diff --git a/samples/react-flighttracker/.eslintrc.js b/samples/react-flighttracker/.eslintrc.js new file mode 100644 index 000000000..6ebb2a10f --- /dev/null +++ b/samples/react-flighttracker/.eslintrc.js @@ -0,0 +1,378 @@ +require('@rushstack/eslint-config/patch/modern-module-resolution'); +module.exports = { + extends: ['@microsoft/eslint-config-spfx/lib/profiles/react'], + parserOptions: { tsconfigRootDir: __dirname }, + overrides: [ + { + files: ['*.ts', '*.tsx'], + parser: '@typescript-eslint/parser', + 'parserOptions': { + 'project': './tsconfig.json', + 'ecmaVersion': 2018, + 'sourceType': 'module' + }, + rules: { + // Prevent usage of the JavaScript null value, while allowing code to access existing APIs that may require null. https://www.npmjs.com/package/@rushstack/eslint-plugin + '@rushstack/no-new-null': 1, + // Require Jest module mocking APIs to be called before any other statements in their code block. https://www.npmjs.com/package/@rushstack/eslint-plugin + '@rushstack/hoist-jest-mock': 1, + // Require regular expressions to be constructed from string constants rather than dynamically building strings at runtime. https://www.npmjs.com/package/@rushstack/eslint-plugin-security + '@rushstack/security/no-unsafe-regexp': 1, + // STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json + '@typescript-eslint/adjacent-overload-signatures': 1, + // STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json + // + // CONFIGURATION: By default, these are banned: String, Boolean, Number, Object, Symbol + '@typescript-eslint/ban-types': [ + 1, + { + 'extendDefaults': false, + 'types': { + 'String': { + 'message': 'Use \'string\' instead', + 'fixWith': 'string' + }, + 'Boolean': { + 'message': 'Use \'boolean\' instead', + 'fixWith': 'boolean' + }, + 'Number': { + 'message': 'Use \'number\' instead', + 'fixWith': 'number' + }, + 'Object': { + 'message': 'Use \'object\' instead, or else define a proper TypeScript type:' + }, + 'Symbol': { + 'message': 'Use \'symbol\' instead', + 'fixWith': 'symbol' + }, + 'Function': { + 'message': 'The \'Function\' type accepts any function-like value.\nIt provides no type safety when calling the function, which can be a common source of bugs.\nIt also accepts things like class declarations, which will throw at runtime as they will not be called with \'new\'.\nIf you are expecting the function to accept certain arguments, you should explicitly define the function shape.' + } + } + } + ], + // RATIONALE: Code is more readable when the type of every variable is immediately obvious. + // Even if the compiler may be able to infer a type, this inference will be unavailable + // to a person who is reviewing a GitHub diff. This rule makes writing code harder, + // but writing code is a much less important activity than reading it. + // + // STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json + '@typescript-eslint/explicit-function-return-type': [ + 1, + { + 'allowExpressions': true, + 'allowTypedFunctionExpressions': true, + 'allowHigherOrderFunctions': false + } + ], + // STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json + // Rationale to disable: although this is a recommended rule, it is up to dev to select coding style. + // Set to 1 (warning) or 2 (error) to enable. + '@typescript-eslint/explicit-member-accessibility': 0, + // STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json + '@typescript-eslint/no-array-constructor': 1, + // STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json + // + // RATIONALE: The "any" keyword disables static type checking, the main benefit of using TypeScript. + // This rule should be suppressed only in very special cases such as JSON.stringify() + // where the type really can be anything. Even if the type is flexible, another type + // may be more appropriate such as "unknown", "{}", or "Record". + '@typescript-eslint/no-explicit-any': 1, + // RATIONALE: The #1 rule of promises is that every promise chain must be terminated by a catch() + // handler. Thus wherever a Promise arises, the code must either append a catch handler, + // or else return the object to a caller (who assumes this responsibility). Unterminated + // promise chains are a serious issue. Besides causing errors to be silently ignored, + // they can also cause a NodeJS process to terminate unexpectedly. + '@typescript-eslint/no-floating-promises': 2, + // RATIONALE: Catches a common coding mistake. + '@typescript-eslint/no-for-in-array': 2, + // STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json + '@typescript-eslint/no-misused-new': 2, + // RATIONALE: The "namespace" keyword is not recommended for organizing code because JavaScript lacks + // a "using" statement to traverse namespaces. Nested namespaces prevent certain bundler + // optimizations. If you are declaring loose functions/variables, it's better to make them + // static members of a class, since classes support property getters and their private + // members are accessible by unit tests. Also, the exercise of choosing a meaningful + // class name tends to produce more discoverable APIs: for example, search+replacing + // the function "reverse()" is likely to return many false matches, whereas if we always + // write "Text.reverse()" is more unique. For large scale organization, it's recommended + // to decompose your code into separate NPM packages, which ensures that component + // dependencies are tracked more conscientiously. + // + // STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json + '@typescript-eslint/no-namespace': [ + 1, + { + 'allowDeclarations': false, + 'allowDefinitionFiles': false + } + ], + // RATIONALE: Parameter properties provide a shorthand such as "constructor(public title: string)" + // that avoids the effort of declaring "title" as a field. This TypeScript feature makes + // code easier to write, but arguably sacrifices readability: In the notes for + // "@typescript-eslint/member-ordering" we pointed out that fields are central to + // a class's design, so we wouldn't want to bury them in a constructor signature + // just to save some typing. + // + // STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json + // Set to 1 (warning) or 2 (error) to enable the rule + '@typescript-eslint/no-parameter-properties': 0, + // RATIONALE: When left in shipping code, unused variables often indicate a mistake. Dead code + // may impact performance. + // + // STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json + '@typescript-eslint/no-unused-vars': [ + 1, + { + 'vars': 'all', + // Unused function arguments often indicate a mistake in JavaScript code. However in TypeScript code, + // the compiler catches most of those mistakes, and unused arguments are fairly common for type signatures + // that are overriding a base class method or implementing an interface. + 'args': 'none' + } + ], + // STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json + '@typescript-eslint/no-use-before-define': [ + 2, + { + 'functions': false, + 'classes': true, + 'variables': true, + 'enums': true, + 'typedefs': true + } + ], + // Disallows require statements except in import statements. + // In other words, the use of forms such as var foo = require("foo") are banned. Instead use ES6 style imports or import foo = require("foo") imports. + '@typescript-eslint/no-var-requires': 'error', + // RATIONALE: The "module" keyword is deprecated except when describing legacy libraries. + // + // STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json + '@typescript-eslint/prefer-namespace-keyword': 1, + // STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json + // Rationale to disable: it's up to developer to decide if he wants to add type annotations + // Set to 1 (warning) or 2 (error) to enable the rule + '@typescript-eslint/no-inferrable-types': 0, + // STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json + // Rationale to disable: declaration of empty interfaces may be helpful for generic types scenarios + '@typescript-eslint/no-empty-interface': 0, + // RATIONALE: This rule warns if setters are defined without getters, which is probably a mistake. + 'accessor-pairs': 1, + // RATIONALE: In TypeScript, if you write x["y"] instead of x.y, it disables type checking. + 'dot-notation': [ + 1, + { + 'allowPattern': '^_' + } + ], + // RATIONALE: Catches code that is likely to be incorrect + 'eqeqeq': 1, + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'for-direction': 1, + // RATIONALE: Catches a common coding mistake. + 'guard-for-in': 2, + // RATIONALE: If you have more than 2,000 lines in a single source file, it's probably time + // to split up your code. + 'max-lines': ['warn', { max: 2000 }], + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-async-promise-executor': 2, + // RATIONALE: Deprecated language feature. + 'no-caller': 2, + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-compare-neg-zero': 2, + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-cond-assign': 2, + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-constant-condition': 1, + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-control-regex': 2, + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-debugger': 1, + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-delete-var': 2, + // RATIONALE: Catches code that is likely to be incorrect + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-duplicate-case': 2, + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-empty': 1, + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-empty-character-class': 2, + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-empty-pattern': 1, + // RATIONALE: Eval is a security concern and a performance concern. + 'no-eval': 1, + // RATIONALE: Catches code that is likely to be incorrect + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-ex-assign': 2, + // RATIONALE: System types are global and should not be tampered with in a scalable code base. + // If two different libraries (or two versions of the same library) both try to modify + // a type, only one of them can win. Polyfills are acceptable because they implement + // a standardized interoperable contract, but polyfills are generally coded in plain + // JavaScript. + 'no-extend-native': 1, + // Disallow unnecessary labels + 'no-extra-label': 1, + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-fallthrough': 2, + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-func-assign': 1, + // RATIONALE: Catches a common coding mistake. + 'no-implied-eval': 2, + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-invalid-regexp': 2, + // RATIONALE: Catches a common coding mistake. + 'no-label-var': 2, + // RATIONALE: Eliminates redundant code. + 'no-lone-blocks': 1, + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-misleading-character-class': 2, + // RATIONALE: Catches a common coding mistake. + 'no-multi-str': 2, + // RATIONALE: It's generally a bad practice to call "new Thing()" without assigning the result to + // a variable. Either it's part of an awkward expression like "(new Thing()).doSomething()", + // or else implies that the constructor is doing nontrivial computations, which is often + // a poor class design. + 'no-new': 1, + // RATIONALE: Obsolete language feature that is deprecated. + 'no-new-func': 2, + // RATIONALE: Obsolete language feature that is deprecated. + 'no-new-object': 2, + // RATIONALE: Obsolete notation. + 'no-new-wrappers': 1, + // RATIONALE: Catches code that is likely to be incorrect + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-octal': 2, + // RATIONALE: Catches code that is likely to be incorrect + 'no-octal-escape': 2, + // RATIONALE: Catches code that is likely to be incorrect + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-regex-spaces': 2, + // RATIONALE: Catches a common coding mistake. + 'no-return-assign': 2, + // RATIONALE: Security risk. + 'no-script-url': 1, + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-self-assign': 2, + // RATIONALE: Catches a common coding mistake. + 'no-self-compare': 2, + // RATIONALE: This avoids statements such as "while (a = next(), a && a.length);" that use + // commas to create compound expressions. In general code is more readable if each + // step is split onto a separate line. This also makes it easier to set breakpoints + // in the debugger. + 'no-sequences': 1, + // RATIONALE: Catches code that is likely to be incorrect + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-shadow-restricted-names': 2, + // RATIONALE: Obsolete language feature that is deprecated. + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-sparse-arrays': 2, + // RATIONALE: Although in theory JavaScript allows any possible data type to be thrown as an exception, + // such flexibility adds pointless complexity, by requiring every catch block to test + // the type of the object that it receives. Whereas if catch blocks can always assume + // that their object implements the "Error" contract, then the code is simpler, and + // we generally get useful additional information like a call stack. + 'no-throw-literal': 2, + // RATIONALE: Catches a common coding mistake. + 'no-unmodified-loop-condition': 1, + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-unsafe-finally': 2, + // RATIONALE: Catches a common coding mistake. + 'no-unused-expressions': 1, + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-unused-labels': 1, + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-useless-catch': 1, + // RATIONALE: Avoids a potential performance problem. + 'no-useless-concat': 1, + // RATIONALE: The "var" keyword is deprecated because of its confusing "hoisting" behavior. + // Always use "let" or "const" instead. + // + // STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json + 'no-var': 2, + // RATIONALE: Generally not needed in modern code. + 'no-void': 1, + // RATIONALE: Obsolete language feature that is deprecated. + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'no-with': 2, + // RATIONALE: Makes logic easier to understand, since constants always have a known value + // @typescript-eslint\eslint-plugin\dist\configs\eslint-recommended.js + 'prefer-const': 1, + // RATIONALE: Catches a common coding mistake where "resolve" and "reject" are confused. + 'promise/param-names': 2, + // RATIONALE: Catches code that is likely to be incorrect + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'require-atomic-updates': 2, + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'require-yield': 1, + // "Use strict" is redundant when using the TypeScript compiler. + 'strict': [ + 2, + 'never' + ], + // RATIONALE: Catches code that is likely to be incorrect + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + 'use-isnan': 2, + // STANDARDIZED BY: eslint\conf\eslint-recommended.js + // Set to 1 (warning) or 2 (error) to enable. + // Rationale to disable: !!{} + 'no-extra-boolean-cast': 0, + // ==================================================================== + // @microsoft/eslint-plugin-spfx + // ==================================================================== + '@microsoft/spfx/import-requires-chunk-name': 1, + '@microsoft/spfx/no-require-ensure': 2, + '@microsoft/spfx/pair-react-dom-render-unmount': 1 + } + }, + { + // For unit tests, we can be a little bit less strict. The settings below revise the + // defaults specified in the extended configurations, as well as above. + files: [ + // Test files + '*.test.ts', + '*.test.tsx', + '*.spec.ts', + '*.spec.tsx', + + // Facebook convention + '**/__mocks__/*.ts', + '**/__mocks__/*.tsx', + '**/__tests__/*.ts', + '**/__tests__/*.tsx', + + // Microsoft convention + '**/test/*.ts', + '**/test/*.tsx' + ], + rules: { + 'no-new': 0, + 'class-name': 0, + 'export-name': 0, + forin: 0, + 'label-position': 0, + 'member-access': 2, + 'no-arg': 0, + 'no-console': 0, + 'no-construct': 0, + 'no-duplicate-variable': 2, + 'no-eval': 0, + 'no-function-expression': 2, + 'no-internal-module': 2, + 'no-shadowed-variable': 2, + 'no-switch-case-fall-through': 2, + 'no-unnecessary-semicolons': 2, + 'no-unused-expression': 2, + 'no-with-statement': 2, + semicolon: 2, + 'trailing-comma': 0, + typedef: 0, + 'typedef-whitespace': 0, + 'use-named-parameter': 2, + 'variable-name': 0, + whitespace: 0 + } + } + ] +}; \ No newline at end of file diff --git a/samples/react-flighttracker/.gitignore b/samples/react-flighttracker/.gitignore new file mode 100644 index 000000000..572f0a3c7 --- /dev/null +++ b/samples/react-flighttracker/.gitignore @@ -0,0 +1,35 @@ +# Logs +logs +*.log +npm-debug.log* + +# Dependency directories +node_modules + +# Build generated files +dist +lib +release +solution +temp +*.sppkg +.heft + +# Coverage directory used by tools like istanbul +coverage + +# OSX +.DS_Store + +# Visual Studio files +.ntvs_analysis.dat +.vs +bin +obj + +# Resx Generated Code +*.resx.ts + +# Styles Generated Code +*.scss.ts +*.scss.d.ts \ No newline at end of file diff --git a/samples/react-flighttracker/.npmignore b/samples/react-flighttracker/.npmignore new file mode 100644 index 000000000..ae0b487c0 --- /dev/null +++ b/samples/react-flighttracker/.npmignore @@ -0,0 +1,16 @@ +!dist +config + +gulpfile.js + +release +src +temp + +tsconfig.json +tslint.json + +*.log + +.yo-rc.json +.vscode diff --git a/samples/react-flighttracker/.yo-rc.json b/samples/react-flighttracker/.yo-rc.json new file mode 100644 index 000000000..6fed6f402 --- /dev/null +++ b/samples/react-flighttracker/.yo-rc.json @@ -0,0 +1,16 @@ +{ + "@microsoft/generator-sharepoint": { + "plusBeta": false, + "isCreatingSolution": false, + "version": "1.15.2", + "libraryName": "react-flighttracker", + "libraryId": "9bc5376d-4151-495b-8249-ebcc27ddf392", + "environment": "spo", + "packageManager": "npm", + "solutionName": "react-flighttracker", + "solutionShortDescription": "react-flighttracker description", + "skipFeatureDeployment": true, + "isDomainIsolated": false, + "componentType": "webpart" + } +} diff --git a/samples/react-flighttracker/README.md b/samples/react-flighttracker/README.md new file mode 100644 index 000000000..1501e5703 --- /dev/null +++ b/samples/react-flighttracker/README.md @@ -0,0 +1,91 @@ + + +## Summary + +This WebPart allows to track all flights from a selected airport, date and information type. +The SPFx use external API (https://aerodatabox.p.rapidapi.com/flights/number/) to get data of flight, please see https://rapidapi.com/aedbx-aedbx/api/aerodatabox/ to get more information. There is some restritions on this API, the number of requests is limited (free version) + +![SharePoint View](assets/FQzNLB4XwAIFMRh.jpg "SharePoint View") +![Teams View](assets/FQzO9YjWUAgFlrU.jpg "Teams View") + +## Compatibility + +![SPFx 1.15](https://img.shields.io/badge/SPFx-1.15-green.svg) +![Node.js v14 | v12](https://img.shields.io/badge/Node.js-v14%20%7C%20v12-green.svg) +![Compatible with SharePoint Online](https://img.shields.io/badge/SharePoint%20Online-Compatible-green.svg) +![Does not work with SharePoint 2019](https://img.shields.io/badge/SharePoint%20Server%202019-Incompatible-red.svg "SharePoint Server 2019 requires SPFx 1.4.1 or lower") +![Does not work with SharePoint 2016 (Feature Pack 2)](https://img.shields.io/badge/SharePoint%20Server%202016%20(Feature%20Pack%202)-Incompatible-red.svg "SharePoint Server 2016 Feature Pack 2 requires SPFx 1.1") +![Local Workbench Unsupported](https://img.shields.io/badge/Local%20Workbench-Unsupported-red.svg "Local workbench is no longer available as of SPFx 1.13 and above") +![Hosted Workbench Compatible](https://img.shields.io/badge/Hosted%20Workbench-Compatible-green.svg) +![Compatible with Remote Containers](https://img.shields.io/badge/Remote%20Containers-Compatible-green.svg) + + +## Applies to + +* [SharePoint Framework](https://learn.microsoft.com/sharepoint/dev/spfx/sharepoint-framework-overview) +* [Microsoft 365 tenant](https://learn.microsoft.com/sharepoint/dev/spfx/set-up-your-development-environment) + +> Get your own free development tenant by subscribing to [Microsoft 365 developer program](http://aka.ms/o365devprogram) + + +## Applies to + +- [SharePoint Framework](https://aka.ms/spfx) +- [Microsoft 365 tenant](https://learn.microsoft.com/sharepoint/dev/spfx/set-up-your-developer-tenant) + +> Get your own free development tenant by subscribing to [Microsoft 365 developer program](http://aka.ms/o365devprogram) + +## Solution + +Solution|Author(s) +--------|--------- +react-fluentui-9 | [Nick Brown](https://github.com/techienickb) ([@techienickb](https://twitter.com/techienickb) / [Jisc](https://jisc.ac.uk)) + +## Version history + +Version|Date|Comments +-------|----|-------- +1.0|April 20, 2022|Initial release + +- Clone this repository (or [download this solution as a .ZIP file](https://pnp.github.io/download-partial/?url=https://github.com/pnp/sp-dev-fx-webparts/tree/main/samples/react-fluentui-9) then unzip it) +- From your command-line, change your current directory to the directory containing this sample (`react-fluentui-9`, located under `samples`) +- in the command-line run: + - `npm install` + - `gulp serve` + +> This sample can also be opened with [VS Code Remote Development](https://code.visualstudio.com/docs/remote/remote-overview). Visit for further instructions. + +## Features + +Very simple demo, the handling of the theme provider is interesting implementing it and handling the custom themes SharePoint can use. + +## References + +- [Getting started with SharePoint Framework](https://learn.microsoft.com/sharepoint/dev/spfx/set-up-your-developer-tenant) +- [Building for Microsoft teams](https://learn.microsoft.com/sharepoint/dev/spfx/build-for-teams-overview) +- [Use Microsoft Graph in your solution](https://learn.microsoft.com/sharepoint/dev/spfx/web-parts/get-started/using-microsoft-graph-apis) +- [Publish SharePoint Framework applications to the Marketplace](https://learn.microsoft.com/sharepoint/dev/spfx/publish-to-marketplace-overview) +- [Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) - Guidance, tooling, samples and open-source controls for your Microsoft 365 development +- [Fluent UI version 9](https://github.com/microsoft/fluentui/tree/master/packages/react-components) - Converged Fluent UI components + +## Help + +We do not support samples, but this community is always willing to help, and we want to improve these samples. We use GitHub to track issues, which makes it easy for community members to volunteer their time and help resolve issues. + +If you're having issues building the solution, please run [spfx doctor](https://pnp.github.io/cli-microsoft365/cmd/spfx/spfx-doctor/) from within the solution folder to diagnose incompatibility issues with your environment. + +You can try looking at [issues related to this sample](https://github.com/pnp/sp-dev-fx-webparts/issues?q=label%3A%22sample%3A%20react-fluentui-9%22) to see if anybody else is having the same issues. + +You can also try looking at [discussions related to this sample](https://github.com/pnp/sp-dev-fx-webparts/discussions?discussions_q=react-fluentui-9) and see what the community is saying. + +If you encounter any issues using this sample, [create a new issue](https://github.com/pnp/sp-dev-fx-webparts/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected%2Csample%3A%20react-fluentui-9&template=bug-report.yml&sample=react-fluentui-9&authors=@techienickb&title=react-fluentui-9%20-%20). + +For questions regarding this sample, [create a new question](https://github.com/pnp/sp-dev-fx-webparts/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Aquestion%2Csample%3A%20react-fluentui-9&template=question.yml&sample=react-fluentui-9&authors=@techienickb&title=react-fluentui-9%20-%20). + +Finally, if you have an idea for improvement, [make a suggestion](https://github.com/pnp/sp-dev-fx-webparts/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Aenhancement%2Csample%3A%20react-fluentui-9&template=suggestion.yml&sample=react-fluentui-9&authors=@techienickb&title=react-fluentui-9%20-%20). + +## Disclaimer + +**THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.** + + diff --git a/samples/react-flighttracker/config/config.json b/samples/react-flighttracker/config/config.json new file mode 100644 index 000000000..042aa14fa --- /dev/null +++ b/samples/react-flighttracker/config/config.json @@ -0,0 +1,19 @@ +{ + "$schema": "https://developer.microsoft.com/json-schemas/spfx-build/config.2.0.schema.json", + "version": "2.0", + "bundles": { + "flight-tracker-web-part": { + "components": [ + { + "entrypoint": "./lib/webparts/flightTracker/FlightTrackerWebPart.js", + "manifest": "./src/webparts/flightTracker/FlightTrackerWebPart.manifest.json" + } + ] + } + }, + "externals": {}, + "localizedResources": { + "FlightTrackerWebPartStrings": "lib/webparts/flightTracker/loc/{locale}.js", + "ControlStrings": "node_modules/@pnp/spfx-controls-react/lib/loc/{locale}.js" + } +} \ No newline at end of file diff --git a/samples/react-flighttracker/config/deploy-azure-storage.json b/samples/react-flighttracker/config/deploy-azure-storage.json new file mode 100644 index 000000000..00f99ab49 --- /dev/null +++ b/samples/react-flighttracker/config/deploy-azure-storage.json @@ -0,0 +1,7 @@ +{ + "$schema": "https://developer.microsoft.com/json-schemas/spfx-build/deploy-azure-storage.schema.json", + "workingDir": "./release/assets/", + "account": "", + "container": "react-flighttracker", + "accessKey": "" +} \ No newline at end of file diff --git a/samples/react-flighttracker/config/package-solution.json b/samples/react-flighttracker/config/package-solution.json new file mode 100644 index 000000000..d275da335 --- /dev/null +++ b/samples/react-flighttracker/config/package-solution.json @@ -0,0 +1,40 @@ +{ + "$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json", + "solution": { + "name": "react-flighttracker-client-side-solution", + "id": "9bc5376d-4151-495b-8249-ebcc27ddf392", + "version": "1.0.0.0", + "includeClientSideAssets": true, + "skipFeatureDeployment": true, + "isDomainIsolated": false, + "developer": { + "name": "", + "websiteUrl": "", + "privacyUrl": "", + "termsOfUseUrl": "", + "mpnId": "Undefined-1.15.2" + }, + "metadata": { + "shortDescription": { + "default": "react-flighttracker description" + }, + "longDescription": { + "default": "react-flighttracker description" + }, + "screenshotPaths": [], + "videoUrl": "", + "categories": [] + }, + "features": [ + { + "title": "react-flighttracker Feature", + "description": "The feature that activates elements of the react-flighttracker solution.", + "id": "22de90a6-9357-425b-921a-92f3b37d4a3b", + "version": "1.0.0.0" + } + ] + }, + "paths": { + "zippedPackage": "solution/react-flighttracker.sppkg" + } +} diff --git a/samples/react-flighttracker/config/serve.json b/samples/react-flighttracker/config/serve.json new file mode 100644 index 000000000..e05918a99 --- /dev/null +++ b/samples/react-flighttracker/config/serve.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://developer.microsoft.com/json-schemas/spfx-build/spfx-serve.schema.json", + "port": 4321, + "https": true, + "initialPage": "https://enter-your-SharePoint-site/_layouts/workbench.aspx" +} diff --git a/samples/react-flighttracker/config/write-manifests.json b/samples/react-flighttracker/config/write-manifests.json new file mode 100644 index 000000000..bad352605 --- /dev/null +++ b/samples/react-flighttracker/config/write-manifests.json @@ -0,0 +1,4 @@ +{ + "$schema": "https://developer.microsoft.com/json-schemas/spfx-build/write-manifests.schema.json", + "cdnBasePath": "" +} \ No newline at end of file diff --git a/samples/react-flighttracker/fast-serve/config.json b/samples/react-flighttracker/fast-serve/config.json new file mode 100644 index 000000000..fbb6384ca --- /dev/null +++ b/samples/react-flighttracker/fast-serve/config.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://raw.githubusercontent.com/s-KaiNet/spfx-fast-serve/master/schema/config.latest.schema.json", + "cli": { + "isLibraryComponent": false + } +} \ No newline at end of file diff --git a/samples/react-flighttracker/fast-serve/webpack.extend.js b/samples/react-flighttracker/fast-serve/webpack.extend.js new file mode 100644 index 000000000..22e737e60 --- /dev/null +++ b/samples/react-flighttracker/fast-serve/webpack.extend.js @@ -0,0 +1,24 @@ +/* +* User webpack settings file. You can add your own settings here. +* Changes from this file will be merged into the base webpack configuration file. +* This file will not be overwritten by the subsequent spfx-fast-serve calls. +*/ + +// you can add your project related webpack configuration here, it will be merged using webpack-merge module +// i.e. plugins: [new webpack.Plugin()] +const webpackConfig = { + +} + +// for even more fine-grained control, you can apply custom webpack settings using below function +const transformConfig = function (initialWebpackConfig) { + // transform the initial webpack config here, i.e. + // initialWebpackConfig.plugins.push(new webpack.Plugin()); etc. + + return initialWebpackConfig; +} + +module.exports = { + webpackConfig, + transformConfig +} diff --git a/samples/react-flighttracker/gulpfile.js b/samples/react-flighttracker/gulpfile.js new file mode 100644 index 000000000..8e3857742 --- /dev/null +++ b/samples/react-flighttracker/gulpfile.js @@ -0,0 +1,22 @@ +'use strict'; + +const build = require('@microsoft/sp-build-web'); + +build.addSuppression(`Warning - [sass] The local CSS class 'ms-Grid' is not camelCase and will not be type-safe.`); + +var getTasks = build.rig.getTasks; +build.rig.getTasks = function () { + var result = getTasks.call(build.rig); + + result.set('serve', result.get('serve-deprecated')); + + return result; +}; + +/* fast-serve */ +const { addFastServe } = require("spfx-fast-serve-helpers"); +addFastServe(build); +/* end of fast-serve */ + +build.initialize(require('gulp')); + diff --git a/samples/react-flighttracker/package-lock.json b/samples/react-flighttracker/package-lock.json new file mode 100644 index 000000000..acc855ec2 --- /dev/null +++ b/samples/react-flighttracker/package-lock.json @@ -0,0 +1,25226 @@ +{ + "name": "react-flighttracker", + "version": "0.0.1", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@ampproject/remapping": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@azure/abort-controller": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-1.1.0.tgz", + "integrity": "sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==", + "dev": true, + "requires": { + "tslib": "^2.2.0" + } + }, + "@azure/core-asynciterator-polyfill": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@azure/core-asynciterator-polyfill/-/core-asynciterator-polyfill-1.0.2.tgz", + "integrity": "sha512-3rkP4LnnlWawl0LZptJOdXNrT/fHp2eQMadoasa6afspXdpGrtPZuAQc2PD0cpgyuoXtUWyC3tv7xfntjGS5Dw==", + "dev": true + }, + "@azure/core-auth": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@azure/core-auth/-/core-auth-1.4.0.tgz", + "integrity": "sha512-HFrcTgmuSuukRf/EdPmqBrc5l6Q5Uu+2TbuhaKbgaCpP2TfAeiNaQPAadxO+CYBRHGUzIDteMAjFspFLDLnKVQ==", + "dev": true, + "requires": { + "@azure/abort-controller": "^1.0.0", + "tslib": "^2.2.0" + } + }, + "@azure/core-http": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@azure/core-http/-/core-http-1.2.6.tgz", + "integrity": "sha512-odtH7UMKtekc5YQ86xg9GlVHNXR6pq2JgJ5FBo7/jbOjNGdBqcrIVrZx2bevXVJz/uUTSx6vUf62gzTXTfqYSQ==", + "dev": true, + "requires": { + "@azure/abort-controller": "^1.0.0", + "@azure/core-asynciterator-polyfill": "^1.0.0", + "@azure/core-auth": "^1.3.0", + "@azure/core-tracing": "1.0.0-preview.11", + "@azure/logger": "^1.0.0", + "@types/node-fetch": "^2.5.0", + "@types/tunnel": "^0.0.1", + "form-data": "^3.0.0", + "node-fetch": "^2.6.0", + "process": "^0.11.10", + "tough-cookie": "^4.0.0", + "tslib": "^2.2.0", + "tunnel": "^0.0.6", + "uuid": "^8.3.0", + "xml2js": "^0.4.19" + }, + "dependencies": { + "@azure/core-tracing": { + "version": "1.0.0-preview.11", + "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.0.0-preview.11.tgz", + "integrity": "sha512-frF0pJc9HTmKncVokhBxCqipjbql02DThQ1ZJ9wLi7SDMLdPAFyDI5xZNzX5guLz+/DtPkY+SGK2li9FIXqshQ==", + "dev": true, + "requires": { + "@opencensus/web-types": "0.0.7", + "@opentelemetry/api": "1.0.0-rc.0", + "tslib": "^2.0.0" + } + }, + "@types/node-fetch": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.2.tgz", + "integrity": "sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==", + "dev": true, + "requires": { + "@types/node": "*", + "form-data": "^3.0.0" + } + }, + "form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "tough-cookie": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz", + "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==", + "dev": true, + "requires": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + } + }, + "universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true + } + } + }, + "@azure/core-lro": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@azure/core-lro/-/core-lro-1.0.5.tgz", + "integrity": "sha512-0EFCFZxARrIoLWMIRt4vuqconRVIO2Iin7nFBfJiYCCbKp5eEmxutNk8uqudPmG0XFl5YqlVh68/al/vbE5OOg==", + "dev": true, + "requires": { + "@azure/abort-controller": "^1.0.0", + "@azure/core-http": "^1.2.0", + "@azure/core-tracing": "1.0.0-preview.11", + "events": "^3.0.0", + "tslib": "^2.0.0" + }, + "dependencies": { + "@azure/core-tracing": { + "version": "1.0.0-preview.11", + "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.0.0-preview.11.tgz", + "integrity": "sha512-frF0pJc9HTmKncVokhBxCqipjbql02DThQ1ZJ9wLi7SDMLdPAFyDI5xZNzX5guLz+/DtPkY+SGK2li9FIXqshQ==", + "dev": true, + "requires": { + "@opencensus/web-types": "0.0.7", + "@opentelemetry/api": "1.0.0-rc.0", + "tslib": "^2.0.0" + } + } + } + }, + "@azure/core-paging": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@azure/core-paging/-/core-paging-1.3.0.tgz", + "integrity": "sha512-H6Tg9eBm0brHqLy0OSAGzxIh1t4UL8eZVrSUMJ60Ra9cwq2pOskFqVpz2pYoHDsBY1jZ4V/P8LRGb5D5pmC6rg==", + "dev": true, + "requires": { + "tslib": "^2.2.0" + } + }, + "@azure/core-tracing": { + "version": "1.0.0-preview.7", + "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.0.0-preview.7.tgz", + "integrity": "sha512-pkFCw6OiJrpR+aH1VQe6DYm3fK2KWCC5Jf3m/Pv1RxF08M1Xm08RCyQ5Qe0YyW5L16yYT2nnV48krVhYZ6SGFA==", + "dev": true, + "requires": { + "@opencensus/web-types": "0.0.7", + "@opentelemetry/types": "^0.2.0", + "tslib": "^1.9.3" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + } + } + }, + "@azure/identity": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@azure/identity/-/identity-1.0.3.tgz", + "integrity": "sha512-yWoOL3WjbD1sAYHdx4buFCGd9mCIHGzlTHgkhhLrmMpBztsfp9ejo5LRPYIV2Za4otfJzPL4kH/vnSLTS/4WYA==", + "dev": true, + "requires": { + "@azure/core-http": "^1.0.0", + "@azure/core-tracing": "1.0.0-preview.7", + "@azure/logger": "^1.0.0", + "@opentelemetry/types": "^0.2.0", + "events": "^3.0.0", + "jws": "^3.2.2", + "msal": "^1.0.2", + "qs": "^6.7.0", + "tslib": "^1.9.3", + "uuid": "^3.3.2" + }, + "dependencies": { + "qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, + "requires": { + "side-channel": "^1.0.4" + } + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + } + } + }, + "@azure/logger": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@azure/logger/-/logger-1.0.3.tgz", + "integrity": "sha512-aK4s3Xxjrx3daZr3VylxejK3vG5ExXck5WOHDJ8in/k9AqlfIyFMMT1uG7u8mNjX+QRILTIn0/Xgschfh/dQ9g==", + "dev": true, + "requires": { + "tslib": "^2.2.0" + } + }, + "@azure/msal-browser": { + "version": "2.22.0", + "resolved": "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.22.0.tgz", + "integrity": "sha512-ZpnbnzjYGRGHjWDPOLjSp47CQvhK927+W9avtLoNNCMudqs2dBfwj76lnJwObDE7TAKmCUueTiieglBiPb1mgQ==", + "requires": { + "@azure/msal-common": "^6.1.0" + } + }, + "@azure/msal-common": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-6.4.0.tgz", + "integrity": "sha512-WZdgq9f9O8cbxGzdRwLLMM5xjmLJ2mdtuzgXeiGxIRkVVlJ9nZ6sWnDFKa2TX8j72UXD1IfL0p/RYNoTXYoGfg==" + }, + "@azure/storage-blob": { + "version": "12.3.0", + "resolved": "https://registry.npmjs.org/@azure/storage-blob/-/storage-blob-12.3.0.tgz", + "integrity": "sha512-nCySzNfm782pEW3sg9GHj1zE4gBeVVMeEBdWb4MefifrCwQQOoz5cXZTNFiUJAJqAO+/72r2UjZcUwHk/QmzkA==", + "dev": true, + "requires": { + "@azure/abort-controller": "^1.0.0", + "@azure/core-http": "^1.2.0", + "@azure/core-lro": "^1.0.2", + "@azure/core-paging": "^1.1.1", + "@azure/core-tracing": "1.0.0-preview.9", + "@azure/logger": "^1.0.0", + "@opentelemetry/api": "^0.10.2", + "events": "^3.0.0", + "tslib": "^2.0.0" + }, + "dependencies": { + "@azure/core-tracing": { + "version": "1.0.0-preview.9", + "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.0.0-preview.9.tgz", + "integrity": "sha512-zczolCLJ5QG42AEPQ+Qg9SRYNUyB+yZ5dzof4YEc+dyWczO9G2sBqbAjLB7IqrsdHN2apkiB2oXeDKCsq48jug==", + "dev": true, + "requires": { + "@opencensus/web-types": "0.0.7", + "@opentelemetry/api": "^0.10.2", + "tslib": "^2.0.0" + } + }, + "@opentelemetry/api": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-0.10.2.tgz", + "integrity": "sha512-GtpMGd6vkzDMYcpu2t9LlhEgMy/SzBwRnz48EejlRArYqZzqSzAsKmegUK7zHgl+EOIaK9mKHhnRaQu3qw20cA==", + "dev": true, + "requires": { + "@opentelemetry/context-base": "^0.10.2" + } + } + } + }, + "@babel/code-frame": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "dev": true, + "requires": { + "@babel/highlight": "^7.18.6" + } + }, + "@babel/compat-data": { + "version": "7.18.13", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.13.tgz", + "integrity": "sha512-5yUzC5LqyTFp2HLmDoxGQelcdYgSpP9xsnMWBphAscOdFrHSAVbLNzWiy32sVNDqJRDiJK6klfDnAgu6PAGSHw==", + "dev": true + }, + "@babel/core": { + "version": "7.18.13", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.13.tgz", + "integrity": "sha512-ZisbOvRRusFktksHSG6pjj1CSvkPkcZq/KHD45LAkVP/oiHJkNBZWfpvlLmX8OtHDG8IuzsFlVRWo08w7Qxn0A==", + "dev": true, + "requires": { + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.18.13", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-module-transforms": "^7.18.9", + "@babel/helpers": "^7.18.9", + "@babel/parser": "^7.18.13", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.18.13", + "@babel/types": "^7.18.13", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.1", + "semver": "^6.3.0" + }, + "dependencies": { + "json5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "dev": true + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.18.13", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.13.tgz", + "integrity": "sha512-CkPg8ySSPuHTYPJYo7IRALdqyjM9HCbt/3uOBEFbzyGVP6Mn8bwFPB0jX6982JVNBlYzM1nnPkfjuXSOPtQeEQ==", + "dev": true, + "requires": { + "@babel/types": "^7.18.13", + "@jridgewell/gen-mapping": "^0.3.2", + "jsesc": "^2.5.1" + }, + "dependencies": { + "@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + } + } + }, + "@babel/helper-compilation-targets": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz", + "integrity": "sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.18.8", + "@babel/helper-validator-option": "^7.18.6", + "browserslist": "^4.20.2", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/helper-environment-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "dev": true + }, + "@babel/helper-function-name": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz", + "integrity": "sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==", + "dev": true, + "requires": { + "@babel/template": "^7.18.6", + "@babel/types": "^7.18.9" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-module-imports": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", + "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-module-transforms": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz", + "integrity": "sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-simple-access": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.18.6", + "@babel/template": "^7.18.6", + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", + "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==", + "dev": true + }, + "@babel/helper-simple-access": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz", + "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-string-parser": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz", + "integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==", + "dev": true + }, + "@babel/helper-validator-identifier": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", + "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==", + "dev": true + }, + "@babel/helper-validator-option": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", + "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", + "dev": true + }, + "@babel/helpers": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.9.tgz", + "integrity": "sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==", + "dev": true, + "requires": { + "@babel/template": "^7.18.6", + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" + } + }, + "@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@babel/parser": { + "version": "7.18.13", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.13.tgz", + "integrity": "sha512-dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg==", + "dev": true + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/runtime": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz", + "integrity": "sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/template": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", + "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.18.10", + "@babel/types": "^7.18.10" + } + }, + "@babel/traverse": { + "version": "7.18.13", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.13.tgz", + "integrity": "sha512-N6kt9X1jRMLPxxxPYWi7tgvJRH/rtoU+dbKAPDM44RFHiMH8igdsaSBgFeskhSl/kLWLDUvIh1RXCrTmg0/zvA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.18.13", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.18.13", + "@babel/types": "^7.18.13", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": { + "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 + } + } + }, + "@babel/types": { + "version": "7.18.13", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.13.tgz", + "integrity": "sha512-ePqfTihzW0W6XAU+aMw2ykilisStJfDnsejDCXRchCcMJ4O0+8DhPXf2YUbZ6wjBlsEmZwLK/sPweWtu8hcJYQ==", + "dev": true, + "requires": { + "@babel/helper-string-parser": "^7.18.10", + "@babel/helper-validator-identifier": "^7.18.6", + "to-fast-properties": "^2.0.0" + } + }, + "@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "@cnakazawa/watch": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", + "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", + "dev": true, + "requires": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + } + }, + "@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "dev": true + }, + "@emotion/hash": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz", + "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" + }, + "@emotion/memoize": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", + "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" + }, + "@emotion/serialize": { + "version": "0.11.16", + "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz", + "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==", + "requires": { + "@emotion/hash": "0.8.0", + "@emotion/memoize": "0.7.4", + "@emotion/unitless": "0.7.5", + "@emotion/utils": "0.11.3", + "csstype": "^2.5.7" + }, + "dependencies": { + "csstype": { + "version": "2.6.21", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.21.tgz", + "integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==" + } + } + }, + "@emotion/unitless": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz", + "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" + }, + "@emotion/utils": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz", + "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" + }, + "@eslint/eslintrc": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.1.tgz", + "integrity": "sha512-OhSY22oQQdw3zgPOOwdoj01l/Dzl1Z+xyUP33tkSN+aqyEhymJCcPHyXt+ylW8FSe0TfRC2VG+ROQOapD0aZSQ==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.4.0", + "globals": "^13.15.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" + } + }, + "@fluentui/accessibility": { + "version": "0.51.7", + "resolved": "https://registry.npmjs.org/@fluentui/accessibility/-/accessibility-0.51.7.tgz", + "integrity": "sha512-EcAlEsc63+UezUpO94bO41/8QY2X/B3MztLE2HTNumaUhfUNfd4veVAZwHxDcXaAP2SGXyEFuUa0pmuB2dR+HA==", + "requires": { + "@babel/runtime": "^7.10.4", + "@fluentui/keyboard-key": "^0.2.7", + "lodash": "^4.17.15" + } + }, + "@fluentui/date-time-utilities": { + "version": "7.9.1", + "resolved": "https://registry.npmjs.org/@fluentui/date-time-utilities/-/date-time-utilities-7.9.1.tgz", + "integrity": "sha512-o8iU1VIY+QsqVRWARKiky29fh4KR1xaKSgMClXIi65qkt8EDDhjmlzL0KVDEoDA2GWukwb/1PpaVCWDg4v3cUQ==", + "requires": { + "@uifabric/set-version": "^7.0.24", + "tslib": "^1.10.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@fluentui/dom-utilities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@fluentui/dom-utilities/-/dom-utilities-1.1.2.tgz", + "integrity": "sha512-XqPS7l3YoMwxdNlaYF6S2Mp0K3FmVIOIy2K3YkMc+eRxu9wFK6emr2Q/3rBhtG5u/On37NExRT7/5CTLnoi9gw==", + "requires": { + "@uifabric/set-version": "^7.0.24", + "tslib": "^1.10.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@fluentui/font-icons-mdl2": { + "version": "8.5.2", + "resolved": "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.5.2.tgz", + "integrity": "sha512-qDbZNiXVPx6X/Z2MpU3Oa2kWNSrk5+mG8ZRdH/thD7iwnV4l6DtBctNyXK/Cjq4EpG3eQQra8LBVxwOyDt0GqA==", + "requires": { + "@fluentui/set-version": "^8.2.2", + "@fluentui/style-utilities": "^8.8.1", + "@fluentui/utilities": "^8.13.2", + "tslib": "^2.1.0" + } + }, + "@fluentui/foundation-legacy": { + "version": "8.2.22", + "resolved": "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.2.22.tgz", + "integrity": "sha512-wyv5KxmgG/Qivd0eUkQ4mpAdy3caPV9WrPd10MMw/0TGyCCrzq7+REZYVilRy1+VWQspQxWxRH7Kex9+LqPlKA==", + "requires": { + "@fluentui/merge-styles": "^8.5.3", + "@fluentui/set-version": "^8.2.2", + "@fluentui/style-utilities": "^8.8.1", + "@fluentui/utilities": "^8.13.2", + "tslib": "^2.1.0" + } + }, + "@fluentui/keyboard-key": { + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/@fluentui/keyboard-key/-/keyboard-key-0.2.17.tgz", + "integrity": "sha512-iT1bU56rKrKEOfODoW6fScY11qj3iaYrZ+z11T6fo5+TDm84UGkkXjLXJTE57ZJzg0/gbccHQWYv+chY7bJN8Q==", + "requires": { + "tslib": "^1.10.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@fluentui/merge-styles": { + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.5.3.tgz", + "integrity": "sha512-bHWftN3zTp1bbBfmAEH8YK9UURWj2mffw7b7VaW2Og1qxwv3GMSza1cyv/d3EVqpMJ8AVwFv3mbi9p1ieMN9mw==", + "requires": { + "@fluentui/set-version": "^8.2.2", + "tslib": "^2.1.0" + } + }, + "@fluentui/react": { + "version": "8.100.0", + "resolved": "https://registry.npmjs.org/@fluentui/react/-/react-8.100.0.tgz", + "integrity": "sha512-zdMTJgZEg0NCDLcchlFOnDP1krm7Qel7uUSjfYm5MGS/rK08o9dgpwzjAwjEukGkIZ/Q3C4DZQablVdV/CpW+A==", + "requires": { + "@fluentui/date-time-utilities": "^8.5.2", + "@fluentui/font-icons-mdl2": "^8.5.2", + "@fluentui/foundation-legacy": "^8.2.22", + "@fluentui/merge-styles": "^8.5.3", + "@fluentui/react-focus": "^8.8.8", + "@fluentui/react-hooks": "^8.6.12", + "@fluentui/react-portal-compat-context": "^9.0.3", + "@fluentui/react-window-provider": "^2.2.3", + "@fluentui/set-version": "^8.2.2", + "@fluentui/style-utilities": "^8.8.1", + "@fluentui/theme": "^2.6.17", + "@fluentui/utilities": "^8.13.2", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" + }, + "dependencies": { + "@fluentui/date-time-utilities": { + "version": "8.5.2", + "resolved": "https://registry.npmjs.org/@fluentui/date-time-utilities/-/date-time-utilities-8.5.2.tgz", + "integrity": "sha512-u540ACUdnC+Jms1DIHkho80eJmoCg/LtAzR4a/1Tum6PicxWv59UYp9Ba7qFbIw+mrjWnwX/2ZmBpqTy9Rgn7w==", + "requires": { + "@fluentui/set-version": "^8.2.2", + "tslib": "^2.1.0" + } + }, + "@fluentui/keyboard-key": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@fluentui/keyboard-key/-/keyboard-key-0.4.2.tgz", + "integrity": "sha512-6WdMrnFpY94uWefUGGRqO4WiS6R+Kso6/FR95SxXMuS6kfnjGJCHzywFGZcN5OU1fX067Zna4aPQ/nDwYMgBPw==", + "requires": { + "tslib": "^2.1.0" + } + }, + "@fluentui/react-focus": { + "version": "8.8.8", + "resolved": "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.8.8.tgz", + "integrity": "sha512-N4JmmduWk50tIGTH6kYTDa1HJfJ9qzGztbmo7HEh+gzHLwHDkL0GOV5+VWfwPuBcUqD1eKP4fz/e/gCBswBShg==", + "requires": { + "@fluentui/keyboard-key": "^0.4.2", + "@fluentui/merge-styles": "^8.5.3", + "@fluentui/set-version": "^8.2.2", + "@fluentui/style-utilities": "^8.8.1", + "@fluentui/utilities": "^8.13.2", + "tslib": "^2.1.0" + } + }, + "@fluentui/react-window-provider": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@fluentui/react-window-provider/-/react-window-provider-2.2.3.tgz", + "integrity": "sha512-uJztbyMu7x/cSYnJ0Rbmult/t22zFnQG20Jtlhmh5/g+M8QiF/T7xz9dkNe4Hon4KmpqnZpd8ds4nmX0fwxODg==", + "requires": { + "@fluentui/set-version": "^8.2.2", + "tslib": "^2.1.0" + } + }, + "@fluentui/theme": { + "version": "2.6.17", + "resolved": "https://registry.npmjs.org/@fluentui/theme/-/theme-2.6.17.tgz", + "integrity": "sha512-9pxMhOugX3bwY86TresiR6UQNszylD4oiVCAj5s5li7zGos+psdOMrmz9LykIEn1mbAofT/XvRCYfiKECtHEpA==", + "requires": { + "@fluentui/merge-styles": "^8.5.3", + "@fluentui/set-version": "^8.2.2", + "@fluentui/utilities": "^8.13.2", + "tslib": "^2.1.0" + } + } + } + }, + "@fluentui/react-bindings": { + "version": "0.51.7", + "resolved": "https://registry.npmjs.org/@fluentui/react-bindings/-/react-bindings-0.51.7.tgz", + "integrity": "sha512-Gp+70GYZHtrQz/480kR+qII9RMHXM+dorKnVj6D7C1/3r6iBoGPVGgRZROuOG1YOmlrM8nbZDb1VX1EqKCdNlQ==", + "requires": { + "@babel/runtime": "^7.10.4", + "@emotion/serialize": "^0.11.16", + "@fluentui/accessibility": "^0.51.7", + "@fluentui/keyboard-key": "^0.2.7", + "@fluentui/react-component-event-listener": "^0.51.7", + "@fluentui/react-component-ref": "^0.51.7", + "@fluentui/react-compose": "^0.12.5", + "@fluentui/react-northstar-fela-renderer": "^0.51.7", + "@fluentui/react-northstar-styles-renderer": "^0.51.7", + "@fluentui/state": "^0.51.7", + "@fluentui/styles": "^0.51.7", + "@quid/stylis-plugin-focus-visible": "^4.0.0", + "@uifabric/utilities": "^7.24.5", + "classnames": "^2.2.6", + "lodash": "^4.17.15", + "prop-types": "^15.7.2", + "react-is": "^16.6.3", + "stylis": "^3.5.4", + "stylis-plugin-rtl": "^1.0.0" + } + }, + "@fluentui/react-component-event-listener": { + "version": "0.51.7", + "resolved": "https://registry.npmjs.org/@fluentui/react-component-event-listener/-/react-component-event-listener-0.51.7.tgz", + "integrity": "sha512-NjVm+crN0T9A7vITL8alZeHnuV8zi2gos0nezU/2YOxaUAB9E4zKiPxt/6k5U50rJs/gj8Nu45iXxnjO41HbZg==", + "requires": { + "@babel/runtime": "^7.10.4" + } + }, + "@fluentui/react-component-nesting-registry": { + "version": "0.51.7", + "resolved": "https://registry.npmjs.org/@fluentui/react-component-nesting-registry/-/react-component-nesting-registry-0.51.7.tgz", + "integrity": "sha512-uuzYi8/SWAhj78z6nirDGWZYRJEmXqmeBZP+KR58m/kmQ1nq5YMZADw06JlrUqW/UMk6SKkUpHRAKYrT4NGJkw==", + "requires": { + "@babel/runtime": "^7.10.4", + "prop-types": "^15.7.2" + } + }, + "@fluentui/react-component-ref": { + "version": "0.51.7", + "resolved": "https://registry.npmjs.org/@fluentui/react-component-ref/-/react-component-ref-0.51.7.tgz", + "integrity": "sha512-CX27jVJYaFoBCWpuWAizQZ2se137ku1dmDyn8sw+ySNJa+kkQf7LnMydiPW5K7cRdUSqUJW3eS4EjKRvVAx8xA==", + "requires": { + "@babel/runtime": "^7.10.4", + "react-is": "^16.6.3" + } + }, + "@fluentui/react-compose": { + "version": "0.12.8", + "resolved": "https://registry.npmjs.org/@fluentui/react-compose/-/react-compose-0.12.8.tgz", + "integrity": "sha512-YutUjnFzDrd5gfpi2ID0GqrGZTKTckWUqdStScIe/P9oG5IaeHN49JMQmOrSq3tFAW/gnt1fFKddhrxdCO3vBA==", + "requires": { + "@types/classnames": "^2.2.9", + "@uifabric/set-version": "^7.0.19", + "@uifabric/utilities": "^7.25.1", + "classnames": "^2.2.6", + "tslib": "^1.10.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@fluentui/react-context-selector": { + "version": "0.51.7", + "resolved": "https://registry.npmjs.org/@fluentui/react-context-selector/-/react-context-selector-0.51.7.tgz", + "integrity": "sha512-WLadFGSg9RHjlKGFK2WCV7eqKwZYOEOr6WHPmCTE8fBjDUbabsHU4U9J4OePPCIq/hSr0/8EfNPIjHqzXwofrg==", + "requires": { + "@babel/runtime": "^7.10.4" + } + }, + "@fluentui/react-focus": { + "version": "7.18.12", + "resolved": "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-7.18.12.tgz", + "integrity": "sha512-nQk73r/SU4cTcDY/pZW0Av7x4LbShXApm5PvVJxDUoqIvuGG18thpg1KPzzyHMGfVWfG1Qu6w+DGjJ/Sf/vc4Q==", + "requires": { + "@fluentui/keyboard-key": "^0.2.12", + "@uifabric/merge-styles": "^7.20.0", + "@uifabric/set-version": "^7.0.24", + "@uifabric/styling": "^7.22.3", + "@uifabric/utilities": "^7.38.0", + "tslib": "^1.10.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@fluentui/react-hooks": { + "version": "8.6.12", + "resolved": "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.6.12.tgz", + "integrity": "sha512-zjxOgBMNgg0RRmlB/lfGvApvVxwLfVqwQF5BtKe9DHWGXV7B1Pz9IrYOZ+vI6Mup3eqBAcnU01AURU8PG5RT/g==", + "requires": { + "@fluentui/react-window-provider": "^2.2.3", + "@fluentui/set-version": "^8.2.2", + "@fluentui/utilities": "^8.13.2", + "tslib": "^2.1.0" + }, + "dependencies": { + "@fluentui/react-window-provider": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@fluentui/react-window-provider/-/react-window-provider-2.2.3.tgz", + "integrity": "sha512-uJztbyMu7x/cSYnJ0Rbmult/t22zFnQG20Jtlhmh5/g+M8QiF/T7xz9dkNe4Hon4KmpqnZpd8ds4nmX0fwxODg==", + "requires": { + "@fluentui/set-version": "^8.2.2", + "tslib": "^2.1.0" + } + } + } + }, + "@fluentui/react-icons-northstar": { + "version": "0.51.7", + "resolved": "https://registry.npmjs.org/@fluentui/react-icons-northstar/-/react-icons-northstar-0.51.7.tgz", + "integrity": "sha512-9p0DQcGng+CA/sTnjxxaGWC8CH/OhwZCIEwp3srMeIkPaeWG7jKIOCTjRh87l5XhaeaYds6b88zET7axAHoXvw==", + "requires": { + "@babel/runtime": "^7.10.4", + "@fluentui/accessibility": "^0.51.7", + "@fluentui/react-bindings": "^0.51.7", + "@fluentui/styles": "^0.51.7", + "classnames": "^2.2.6" + } + }, + "@fluentui/react-northstar": { + "version": "0.51.3", + "resolved": "https://registry.npmjs.org/@fluentui/react-northstar/-/react-northstar-0.51.3.tgz", + "integrity": "sha512-bKomvwj0BjhzMefm0//nJCBpq+4KRqdhA8S/UISZd+CO7u5gV0PDD7bcIvO0Bou6z/IXMf7J1MJ4hQJaZ96GZw==", + "requires": { + "@babel/runtime": "^7.10.4", + "@fluentui/accessibility": "^0.51.3", + "@fluentui/date-time-utilities": "^7.3.0", + "@fluentui/keyboard-key": "^0.2.7", + "@fluentui/react-bindings": "^0.51.3", + "@fluentui/react-component-event-listener": "^0.51.3", + "@fluentui/react-component-nesting-registry": "^0.51.3", + "@fluentui/react-component-ref": "^0.51.3", + "@fluentui/react-compose": "^0.12.5", + "@fluentui/react-context-selector": "^0.51.3", + "@fluentui/react-icons-northstar": "^0.51.3", + "@fluentui/react-northstar-styles-renderer": "^0.51.3", + "@fluentui/react-proptypes": "^0.51.3", + "@fluentui/state": "^0.51.3", + "@fluentui/styles": "^0.51.3", + "@popperjs/core": "^2.4.2", + "classnames": "^2.2.6", + "compute-scroll-into-view": "1.0.11", + "downshift": "5.0.5", + "lodash": "^4.17.15", + "prop-types": "^15.7.2", + "react-is": "^16.6.3", + "react-transition-group": "^4.3.0" + } + }, + "@fluentui/react-northstar-fela-renderer": { + "version": "0.51.7", + "resolved": "https://registry.npmjs.org/@fluentui/react-northstar-fela-renderer/-/react-northstar-fela-renderer-0.51.7.tgz", + "integrity": "sha512-/8nSoZVxhgzcK4DWqp0c+2PV2VZybF4I0DhJYVb352wH+tU4PNaL5eP6gP58MHCsO6192KnBYC2MZEg+0aXHlw==", + "requires": { + "@babel/runtime": "^7.10.4", + "@fluentui/react-northstar-styles-renderer": "^0.51.7", + "@fluentui/styles": "^0.51.7", + "css-in-js-utils": "^3.0.0", + "fela": "^10.6.1", + "fela-plugin-embedded": "^10.6.1", + "fela-plugin-fallback-value": "^10.6.1", + "fela-plugin-placeholder-prefixer": "^10.6.1", + "fela-plugin-rtl": "^10.6.1", + "fela-utils": "^10.6.1", + "inline-style-expand-shorthand": "^1.2.0", + "lodash": "^4.17.15", + "react-fela": "^10.6.1", + "stylis": "^3.5.4" + } + }, + "@fluentui/react-northstar-styles-renderer": { + "version": "0.51.7", + "resolved": "https://registry.npmjs.org/@fluentui/react-northstar-styles-renderer/-/react-northstar-styles-renderer-0.51.7.tgz", + "integrity": "sha512-oah7sOstbrbx8guepPpvOmLD65xmwgx9rN0KjogOxDiMYidN4eaEAVl36mQfWs1wE+Mo5iAPRj2eNtqX4bVUqg==", + "requires": { + "@babel/runtime": "^7.10.4", + "@fluentui/styles": "^0.51.7" + } + }, + "@fluentui/react-portal-compat-context": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/@fluentui/react-portal-compat-context/-/react-portal-compat-context-9.0.3.tgz", + "integrity": "sha512-XZczqvKJflK6jFv6RekFXzZFnxvd1tBbIsRFs6JMX8zNqMO7ZQJ6Yfee5LLs6HnZE5BKowE7jIUMOTH9yOmyJg==", + "requires": { + "tslib": "^2.1.0" + } + }, + "@fluentui/react-proptypes": { + "version": "0.51.7", + "resolved": "https://registry.npmjs.org/@fluentui/react-proptypes/-/react-proptypes-0.51.7.tgz", + "integrity": "sha512-gzfNddyRKmZ8qqZkV+wUl58HEySW7o2DzP5mgE0aAMA3qWkyIPRSo/tvMVx4A1AsgeJ2LhNkAHGek8T0D8PA0Q==", + "requires": { + "@babel/runtime": "^7.10.4", + "lodash": "^4.17.15", + "prop-types": "^15.7.2" + } + }, + "@fluentui/react-stylesheets": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/@fluentui/react-stylesheets/-/react-stylesheets-0.2.5.tgz", + "integrity": "sha512-8yVEgZH+sLhIMuQI6lEtlRjvyMuPDjfEMgXfcU6n6mgp4AOdXMDKf8wbvNO8aOnDeT92EydvmZzvXVHDr5uGkg==", + "requires": { + "@uifabric/set-version": "^7.0.24", + "tslib": "^1.10.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@fluentui/react-theme-provider": { + "version": "0.18.5", + "resolved": "https://registry.npmjs.org/@fluentui/react-theme-provider/-/react-theme-provider-0.18.5.tgz", + "integrity": "sha512-eAbha0U4Fly9EoHVOVMMc+2AA1PlQDu76qGVNAdj0IpJyJEkyerCDY/qYVjV21L9ju5uO8Yw1QYdHUsNaY9xvQ==", + "requires": { + "@fluentui/react-compose": "^0.19.15", + "@fluentui/react-stylesheets": "^0.2.5", + "@fluentui/react-window-provider": "^1.0.2", + "@fluentui/theme": "^1.7.4", + "@uifabric/merge-styles": "^7.19.2", + "@uifabric/react-hooks": "^7.13.12", + "@uifabric/set-version": "^7.0.24", + "@uifabric/utilities": "^7.33.5", + "classnames": "^2.2.6", + "tslib": "^1.10.0" + }, + "dependencies": { + "@fluentui/react-compose": { + "version": "0.19.15", + "resolved": "https://registry.npmjs.org/@fluentui/react-compose/-/react-compose-0.19.15.tgz", + "integrity": "sha512-54a28yt9EDf/ZzKKzLIUziwIK0eucoTqkWmZZh6T559rf85XcpH9Wvu7240C7nhUUZ0Fr+flt2QBl5RAyFKFdg==", + "requires": { + "@types/classnames": "^2.2.9", + "@uifabric/set-version": "^7.0.24", + "@uifabric/utilities": "^7.33.5", + "classnames": "^2.2.6", + "tslib": "^1.10.0" + } + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@fluentui/react-window-provider": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@fluentui/react-window-provider/-/react-window-provider-1.0.4.tgz", + "integrity": "sha512-nBkV3RP7DlCzo4MYeCNLUrmKuGUhgmOt/fraNddBRjPXxpr9+u0VJwUD2Bz+qiG4SibclJIGJ8Mh0Il5Bj0kFA==", + "requires": { + "@uifabric/set-version": "^7.0.24", + "tslib": "^1.10.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@fluentui/scheme-utilities": { + "version": "8.3.18", + "resolved": "https://registry.npmjs.org/@fluentui/scheme-utilities/-/scheme-utilities-8.3.18.tgz", + "integrity": "sha512-QOOu1bEFTen9+j72s4Mp2auw+nUfNLAZi66aoTCoNO6tw7akQpVLe3CbLD/m0YTMaWf/8Qm3j3dDQ3aWTfY3NA==", + "requires": { + "@fluentui/set-version": "^8.2.2", + "@fluentui/theme": "^2.6.17", + "tslib": "^2.1.0" + }, + "dependencies": { + "@fluentui/theme": { + "version": "2.6.17", + "resolved": "https://registry.npmjs.org/@fluentui/theme/-/theme-2.6.17.tgz", + "integrity": "sha512-9pxMhOugX3bwY86TresiR6UQNszylD4oiVCAj5s5li7zGos+psdOMrmz9LykIEn1mbAofT/XvRCYfiKECtHEpA==", + "requires": { + "@fluentui/merge-styles": "^8.5.3", + "@fluentui/set-version": "^8.2.2", + "@fluentui/utilities": "^8.13.2", + "tslib": "^2.1.0" + } + } + } + }, + "@fluentui/set-version": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@fluentui/set-version/-/set-version-8.2.2.tgz", + "integrity": "sha512-Vg20KZ0ufgWjxx6GFbqC5wiVxXZDUWgNT0r0By/Eyj4bUSb1jG6lmf5z1oY1dUX0YS6Cp5e6GnvbNdXg5E7orA==", + "requires": { + "tslib": "^2.1.0" + } + }, + "@fluentui/state": { + "version": "0.51.7", + "resolved": "https://registry.npmjs.org/@fluentui/state/-/state-0.51.7.tgz", + "integrity": "sha512-sTCv3hnEpmWW/hjw+vmloaslNnYmFYeN8J9uJzYBGVi9NKKLvXtMKeoaikAXBVpnmMknl67VCapjauF0NxXDjQ==", + "requires": { + "@babel/runtime": "^7.10.4" + } + }, + "@fluentui/style-utilities": { + "version": "8.8.1", + "resolved": "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.8.1.tgz", + "integrity": "sha512-asOdSI9+9qgnvpriRuAluREM94iyJJOONA+yZvJiYkVttgFRt77xWrabFjuEbX4pPCmqHhmA0d7dz8zPKgV7cA==", + "requires": { + "@fluentui/merge-styles": "^8.5.3", + "@fluentui/set-version": "^8.2.2", + "@fluentui/theme": "^2.6.17", + "@fluentui/utilities": "^8.13.2", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" + }, + "dependencies": { + "@fluentui/theme": { + "version": "2.6.17", + "resolved": "https://registry.npmjs.org/@fluentui/theme/-/theme-2.6.17.tgz", + "integrity": "sha512-9pxMhOugX3bwY86TresiR6UQNszylD4oiVCAj5s5li7zGos+psdOMrmz9LykIEn1mbAofT/XvRCYfiKECtHEpA==", + "requires": { + "@fluentui/merge-styles": "^8.5.3", + "@fluentui/set-version": "^8.2.2", + "@fluentui/utilities": "^8.13.2", + "tslib": "^2.1.0" + } + } + } + }, + "@fluentui/styles": { + "version": "0.51.7", + "resolved": "https://registry.npmjs.org/@fluentui/styles/-/styles-0.51.7.tgz", + "integrity": "sha512-u4l6U47KaMM1mO1q5o9ORJLKj2yMTD/c5hwzLaxbFBf9V50aIeNNI9t/Fqphwiu+cft8T0lBLMFqR9kzxWsBIQ==", + "requires": { + "@babel/runtime": "^7.10.4", + "csstype": "^2.6.7", + "lodash": "^4.17.15" + }, + "dependencies": { + "csstype": { + "version": "2.6.21", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.21.tgz", + "integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==" + } + } + }, + "@fluentui/theme": { + "version": "1.7.11", + "resolved": "https://registry.npmjs.org/@fluentui/theme/-/theme-1.7.11.tgz", + "integrity": "sha512-oyD9xMPsHlpG+yJTY/PY+ibiSr0/bv/AF4+Ru+hvjzA1TtQ/jS9Az12Irfrm01TB5QuAVMnHA5ihlxWs+ocE3A==", + "requires": { + "@uifabric/merge-styles": "^7.20.0", + "@uifabric/set-version": "^7.0.24", + "@uifabric/utilities": "^7.38.0", + "tslib": "^1.10.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@fluentui/utilities": { + "version": "8.13.2", + "resolved": "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.13.2.tgz", + "integrity": "sha512-0AHJBMyYVI7vFChXdPynFf32IYB2y6z4EB5ACzW8UkPFrwkHncbj5pPPE24MCbV7jYR49YrHn9eLY38B+H4iiw==", + "requires": { + "@fluentui/dom-utilities": "^2.2.2", + "@fluentui/merge-styles": "^8.5.3", + "@fluentui/set-version": "^8.2.2", + "tslib": "^2.1.0" + }, + "dependencies": { + "@fluentui/dom-utilities": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/@fluentui/dom-utilities/-/dom-utilities-2.2.2.tgz", + "integrity": "sha512-puklLc6Jvg279OGagqkSfuHML6ckBhw3gJakdvIZHKeJiduh+34U4Finl3K24yBSXzG2WsN+LwLTd1Vcociy+g==", + "requires": { + "@fluentui/set-version": "^8.2.2", + "tslib": "^2.1.0" + } + } + } + }, + "@fluentui/web-components": { + "version": "0.22.1", + "resolved": "https://registry.npmjs.org/@fluentui/web-components/-/web-components-0.22.1.tgz", + "integrity": "sha512-dnMgBRC2vXPa8Br2DpoJG9Fj+WNDlOEtJPzXDiDZss3ddnhsd1djzOEaHoYWayqYumA6ZU2tet5qaqF2i2lqOQ==", + "requires": { + "@microsoft/fast-colors": "^5.1.0", + "@microsoft/fast-element": "^1.0.0", + "@microsoft/fast-foundation": "^1.16.0", + "lodash-es": "^4.17.20", + "tslib": "^1.13.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@gar/promisify": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", + "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", + "dev": true + }, + "@humanwhocodes/config-array": { + "version": "0.9.5", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz", + "integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==", + "dev": true, + "requires": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + } + }, + "@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, + "@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "dependencies": { + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true + } + } + }, + "@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true + }, + "@jest/console": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-25.5.0.tgz", + "integrity": "sha512-T48kZa6MK1Y6k4b89sexwmSF4YLeZS/Udqg3Jj3jG/cHH+N/sLFCEoXEDMOKugJQ9FxPN1osxIknvKkxt6MKyw==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "jest-message-util": "^25.5.0", + "jest-util": "^25.5.0", + "slash": "^3.0.0" + }, + "dependencies": { + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } + } + }, + "@jest/core": { + "version": "25.4.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-25.4.0.tgz", + "integrity": "sha512-h1x9WSVV0+TKVtATGjyQIMJENs8aF6eUjnCoi4jyRemYZmekLr8EJOGQqTWEX8W6SbZ6Skesy9pGXrKeAolUJw==", + "dev": true, + "requires": { + "@jest/console": "^25.4.0", + "@jest/reporters": "^25.4.0", + "@jest/test-result": "^25.4.0", + "@jest/transform": "^25.4.0", + "@jest/types": "^25.4.0", + "ansi-escapes": "^4.2.1", + "chalk": "^3.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.3", + "jest-changed-files": "^25.4.0", + "jest-config": "^25.4.0", + "jest-haste-map": "^25.4.0", + "jest-message-util": "^25.4.0", + "jest-regex-util": "^25.2.6", + "jest-resolve": "^25.4.0", + "jest-resolve-dependencies": "^25.4.0", + "jest-runner": "^25.4.0", + "jest-runtime": "^25.4.0", + "jest-snapshot": "^25.4.0", + "jest-util": "^25.4.0", + "jest-validate": "^25.4.0", + "jest-watcher": "^25.4.0", + "micromatch": "^4.0.2", + "p-each-series": "^2.1.0", + "realpath-native": "^2.0.0", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } + } + }, + "@jest/environment": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-25.5.0.tgz", + "integrity": "sha512-U2VXPEqL07E/V7pSZMSQCvV5Ea4lqOlT+0ZFijl/i316cRMHvZ4qC+jBdryd+lmRetjQo0YIQr6cVPNxxK87mA==", + "dev": true, + "requires": { + "@jest/fake-timers": "^25.5.0", + "@jest/types": "^25.5.0", + "jest-mock": "^25.5.0" + } + }, + "@jest/fake-timers": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-25.5.0.tgz", + "integrity": "sha512-9y2+uGnESw/oyOI3eww9yaxdZyHq7XvprfP/eeoCsjqKYts2yRlsHS/SgjPDV8FyMfn2nbMy8YzUk6nyvdLOpQ==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "jest-message-util": "^25.5.0", + "jest-mock": "^25.5.0", + "jest-util": "^25.5.0", + "lolex": "^5.0.0" + } + }, + "@jest/globals": { + "version": "25.5.2", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-25.5.2.tgz", + "integrity": "sha512-AgAS/Ny7Q2RCIj5kZ+0MuKM1wbF0WMLxbCVl/GOMoCNbODRdJ541IxJ98xnZdVSZXivKpJlNPIWa3QmY0l4CXA==", + "dev": true, + "requires": { + "@jest/environment": "^25.5.0", + "@jest/types": "^25.5.0", + "expect": "^25.5.0" + } + }, + "@jest/reporters": { + "version": "25.4.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-25.4.0.tgz", + "integrity": "sha512-bhx/buYbZgLZm4JWLcRJ/q9Gvmd3oUh7k2V7gA4ZYBx6J28pIuykIouclRdiAC6eGVX1uRZT+GK4CQJLd/PwPg==", + "dev": true, + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^25.4.0", + "@jest/test-result": "^25.4.0", + "@jest/transform": "^25.4.0", + "@jest/types": "^25.4.0", + "chalk": "^3.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^4.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "jest-haste-map": "^25.4.0", + "jest-resolve": "^25.4.0", + "jest-util": "^25.4.0", + "jest-worker": "^25.4.0", + "node-notifier": "^6.0.0", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^3.1.0", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^4.1.3" + }, + "dependencies": { + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "node-notifier": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-6.0.0.tgz", + "integrity": "sha512-SVfQ/wMw+DesunOm5cKqr6yDcvUTDl/yc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw==", + "dev": true, + "optional": true, + "requires": { + "growly": "^1.3.0", + "is-wsl": "^2.1.1", + "semver": "^6.3.0", + "shellwords": "^0.1.1", + "which": "^1.3.1" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "optional": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "optional": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "@jest/source-map": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-25.5.0.tgz", + "integrity": "sha512-eIGx0xN12yVpMcPaVpjXPnn3N30QGJCJQSkEDUt9x1fI1Gdvb07Ml6K5iN2hG7NmMP6FDmtPEssE3z6doOYUwQ==", + "dev": true, + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.4", + "source-map": "^0.6.0" + } + }, + "@jest/test-result": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-25.5.0.tgz", + "integrity": "sha512-oV+hPJgXN7IQf/fHWkcS99y0smKLU2czLBJ9WA0jHITLst58HpQMtzSYxzaBvYc6U5U6jfoMthqsUlUlbRXs0A==", + "dev": true, + "requires": { + "@jest/console": "^25.5.0", + "@jest/types": "^25.5.0", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + } + }, + "@jest/test-sequencer": { + "version": "25.5.4", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-25.5.4.tgz", + "integrity": "sha512-pTJGEkSeg1EkCO2YWq6hbFvKNXk8ejqlxiOg1jBNLnWrgXOkdY6UmqZpwGFXNnRt9B8nO1uWMzLLZ4eCmhkPNA==", + "dev": true, + "requires": { + "@jest/test-result": "^25.5.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^25.5.1", + "jest-runner": "^25.5.4", + "jest-runtime": "^25.5.4" + } + }, + "@jest/transform": { + "version": "25.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-25.5.1.tgz", + "integrity": "sha512-Y8CEoVwXb4QwA6Y/9uDkn0Xfz0finGkieuV0xkdF9UtZGJeLukD5nLkaVrVsODB1ojRWlaoD0AJZpVHCSnJEvg==", + "dev": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^25.5.0", + "babel-plugin-istanbul": "^6.0.0", + "chalk": "^3.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^25.5.1", + "jest-regex-util": "^25.2.6", + "jest-util": "^25.5.0", + "micromatch": "^4.0.2", + "pirates": "^4.0.1", + "realpath-native": "^2.0.0", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "dependencies": { + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } + } + }, + "@jest/types": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz", + "integrity": "sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "dependencies": { + "@types/yargs": { + "version": "15.0.14", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz", + "integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==", + "dev": true, + "requires": { + "@types/yargs-parser": "*" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } + } + }, + "@jridgewell/gen-mapping": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.15", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz", + "integrity": "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "@microsoft/api-extractor": { + "version": "7.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/api-extractor/-/api-extractor-7.15.2.tgz", + "integrity": "sha512-/Y/n+QOc1vM6Vg3OAUByT/wXdZciE7jV3ay33+vxl3aKva5cNsuOauL14T7XQWUiLko3ilPwrcnFcEjzXpLsuA==", + "dev": true, + "requires": { + "@microsoft/api-extractor-model": "7.13.2", + "@microsoft/tsdoc": "0.13.2", + "@microsoft/tsdoc-config": "~0.15.2", + "@rushstack/node-core-library": "3.38.0", + "@rushstack/rig-package": "0.2.12", + "@rushstack/ts-command-line": "4.7.10", + "colors": "~1.2.1", + "lodash": "~4.17.15", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "source-map": "~0.6.1", + "typescript": "~4.2.4" + }, + "dependencies": { + "@rushstack/node-core-library": { + "version": "3.38.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.38.0.tgz", + "integrity": "sha512-cmvl0yQx8sSmbuXwiRYJi8TO+jpTtrLJQ8UmFHhKvgPVJAW8cV8dnpD1Xx/BvTGrJZ2XtRAIkAhBS9okBnap4w==", + "dev": true, + "requires": { + "@types/node": "10.17.13", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~3.18.3" + } + }, + "@types/node": { + "version": "10.17.13", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.13.tgz", + "integrity": "sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==", + "dev": true + }, + "typescript": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.2.4.tgz", + "integrity": "sha512-V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg==", + "dev": true + }, + "validator": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-8.2.0.tgz", + "integrity": "sha512-Yw5wW34fSv5spzTXNkokD6S6/Oq92d8q/t14TqsS3fAiA1RYnxSFSIZ+CY3n6PGGRCq5HhJTSepQvFUS2QUDxA==", + "dev": true + }, + "z-schema": { + "version": "3.18.4", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-3.18.4.tgz", + "integrity": "sha512-DUOKC/IhbkdLKKiV89gw9DUauTV8U/8yJl1sjf6MtDmzevLKOF2duNJ495S3MFVjqZarr+qNGCPbkg4mu4PpLw==", + "dev": true, + "requires": { + "commander": "^2.7.1", + "lodash.get": "^4.0.0", + "lodash.isequal": "^4.0.0", + "validator": "^8.0.0" + } + } + } + }, + "@microsoft/api-extractor-model": { + "version": "7.13.2", + "resolved": "https://registry.npmjs.org/@microsoft/api-extractor-model/-/api-extractor-model-7.13.2.tgz", + "integrity": "sha512-gA9Q8q5TPM2YYk7rLinAv9KqcodrmRC13BVmNzLswjtFxpz13lRh0BmrqD01/sddGpGMIuWFYlfUM4VSWxnggA==", + "dev": true, + "requires": { + "@microsoft/tsdoc": "0.13.2", + "@microsoft/tsdoc-config": "~0.15.2", + "@rushstack/node-core-library": "3.38.0" + }, + "dependencies": { + "@rushstack/node-core-library": { + "version": "3.38.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.38.0.tgz", + "integrity": "sha512-cmvl0yQx8sSmbuXwiRYJi8TO+jpTtrLJQ8UmFHhKvgPVJAW8cV8dnpD1Xx/BvTGrJZ2XtRAIkAhBS9okBnap4w==", + "dev": true, + "requires": { + "@types/node": "10.17.13", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~3.18.3" + } + }, + "@types/node": { + "version": "10.17.13", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.13.tgz", + "integrity": "sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==", + "dev": true + }, + "validator": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-8.2.0.tgz", + "integrity": "sha512-Yw5wW34fSv5spzTXNkokD6S6/Oq92d8q/t14TqsS3fAiA1RYnxSFSIZ+CY3n6PGGRCq5HhJTSepQvFUS2QUDxA==", + "dev": true + }, + "z-schema": { + "version": "3.18.4", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-3.18.4.tgz", + "integrity": "sha512-DUOKC/IhbkdLKKiV89gw9DUauTV8U/8yJl1sjf6MtDmzevLKOF2duNJ495S3MFVjqZarr+qNGCPbkg4mu4PpLw==", + "dev": true, + "requires": { + "commander": "^2.7.1", + "lodash.get": "^4.0.0", + "lodash.isequal": "^4.0.0", + "validator": "^8.0.0" + } + } + } + }, + "@microsoft/eslint-config-spfx": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/eslint-config-spfx/-/eslint-config-spfx-1.15.2.tgz", + "integrity": "sha512-GMF1HMzyxI6QR5ncwLElcQoOe9jLRA97ZoSIV3JbELOqCjUGNYyZw7a+kl3TwP622Vj3CYAVXWQWhLC2Te/NTg==", + "dev": true, + "requires": { + "@typescript-eslint/experimental-utils": "5.20.0" + } + }, + "@microsoft/eslint-plugin-spfx": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/eslint-plugin-spfx/-/eslint-plugin-spfx-1.15.2.tgz", + "integrity": "sha512-4OObWB0H0SUOD7X5sIliAs1LrTeXsRwxXN2kbiR7puORl8b27iPkWA1ljVUAbw15qNlBRJTFF4aQtTSowDxVUA==", + "dev": true, + "requires": { + "@typescript-eslint/experimental-utils": "5.20.0" + } + }, + "@microsoft/fast-colors": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@microsoft/fast-colors/-/fast-colors-5.3.1.tgz", + "integrity": "sha512-72RZXVfCbwQzvo5sXXkuLXLT7rMeYaSf5r/6ewQiv/trBtqpWRm4DEH2EilHw/iWTBKOXs1qZNQndgUMa5n4LA==" + }, + "@microsoft/fast-element": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/@microsoft/fast-element/-/fast-element-1.11.0.tgz", + "integrity": "sha512-VKJYMkS5zgzHHb66sY7AFpYv6IfFhXrjQcAyNgi2ivD65My1XOhtjfKez5ELcLFRJfgZNAxvI8kE69apXERTkw==" + }, + "@microsoft/fast-foundation": { + "version": "1.24.8", + "resolved": "https://registry.npmjs.org/@microsoft/fast-foundation/-/fast-foundation-1.24.8.tgz", + "integrity": "sha512-n4O9jPh8BBliF/Yl9FAVhrSoopsRCnva2L432s/fHwLelY9WUeswjO3DidVBFbzXD5u/gzC4LGWJScNe/ZGU4Q==", + "requires": { + "@microsoft/fast-element": "^1.4.0", + "@microsoft/fast-web-utilities": "^4.8.0", + "@microsoft/tsdoc-config": "^0.13.4", + "tabbable": "^5.2.0", + "tslib": "^1.13.0" + }, + "dependencies": { + "@microsoft/tsdoc": { + "version": "0.12.24", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.12.24.tgz", + "integrity": "sha512-Mfmij13RUTmHEMi9vRUhMXD7rnGR2VvxeNYtaGtaJ4redwwjT4UXYJ+nzmVJF7hhd4pn/Fx5sncDKxMVFJSWPg==" + }, + "@microsoft/tsdoc-config": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc-config/-/tsdoc-config-0.13.9.tgz", + "integrity": "sha512-VqqZn+rT9f6XujFPFR2aN9XKF/fuir/IzKVzoxI0vXIzxysp4ee6S2jCakmlGFHEasibifFTsJr7IYmRPxfzYw==", + "requires": { + "@microsoft/tsdoc": "0.12.24", + "ajv": "~6.12.6", + "jju": "~1.4.0", + "resolve": "~1.19.0" + } + }, + "resolve": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", + "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", + "requires": { + "is-core-module": "^2.1.0", + "path-parse": "^1.0.6" + } + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@microsoft/fast-web-utilities": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/@microsoft/fast-web-utilities/-/fast-web-utilities-4.8.1.tgz", + "integrity": "sha512-P3xeyUwQ9nPkFrgAdmkOzaXxIq8YqMU5K+LXcoHgJddJCBCKfGWW9OZQOTigLddItTyVyfO8qsJpDQb1TskKHA==", + "requires": { + "exenv-es6": "^1.0.0" + } + }, + "@microsoft/gulp-core-build": { + "version": "3.17.19", + "resolved": "https://registry.npmjs.org/@microsoft/gulp-core-build/-/gulp-core-build-3.17.19.tgz", + "integrity": "sha512-izeW3DDC9KC5NYqwHqddY0KElO7YYLtbXvH30JJnYFVlpaXTl23opv5XFZYpWe6LKGuNVGnbTNwYqEuxiGiTVg==", + "dev": true, + "requires": { + "@jest/core": "~25.4.0", + "@jest/reporters": "~25.4.0", + "@rushstack/node-core-library": "~3.44.1", + "@types/chalk": "0.4.31", + "@types/gulp": "4.0.6", + "@types/jest": "25.2.1", + "@types/node": "10.17.13", + "@types/node-notifier": "8.0.2", + "@types/orchestrator": "0.0.30", + "@types/semver": "7.3.5", + "@types/through2": "2.0.32", + "@types/vinyl": "2.0.3", + "@types/yargs": "0.0.34", + "colors": "~1.2.1", + "del": "^2.2.2", + "end-of-stream": "~1.1.0", + "glob": "~7.0.5", + "glob-escape": "~0.0.2", + "globby": "~5.0.0", + "gulp": "~4.0.2", + "gulp-flatten": "~0.2.0", + "gulp-if": "^2.0.1", + "jest": "~25.4.0", + "jest-cli": "~25.4.0", + "jest-environment-jsdom": "~25.4.0", + "jest-nunit-reporter": "~1.3.1", + "jsdom": "~11.11.0", + "lodash.merge": "~4.6.2", + "merge2": "~1.0.2", + "node-notifier": "~10.0.1", + "object-assign": "~4.1.0", + "orchestrator": "~0.3.8", + "pretty-hrtime": "~1.0.2", + "semver": "~7.3.0", + "through2": "~2.0.1", + "vinyl": "~2.2.0", + "xml": "~1.0.1", + "yargs": "~4.6.0", + "z-schema": "~3.18.3" + }, + "dependencies": { + "@rushstack/node-core-library": { + "version": "3.44.3", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.44.3.tgz", + "integrity": "sha512-Bt+R5LAnVr2BImTJqPpton5rvhJ2Wq8x4BaTqaCHQMmfxqtz5lb4nLYT9kneMJTCDuRMBvvLpSuz4MBj50PV3w==", + "dev": true, + "requires": { + "@types/node": "12.20.24", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~5.0.2" + }, + "dependencies": { + "@types/node": { + "version": "12.20.24", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.24.tgz", + "integrity": "sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==", + "dev": true + }, + "z-schema": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.4.tgz", + "integrity": "sha512-gm/lx3hDzJNcLwseIeQVm1UcwhWIKpSB4NqH89pTBtFns4k/HDHudsICtvG05Bvw/Mv3jMyk700y5dadueLHdA==", + "dev": true, + "requires": { + "commander": "^2.20.3", + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.7.0" + } + } + } + }, + "@types/node": { + "version": "10.17.13", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.13.tgz", + "integrity": "sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==", + "dev": true + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, + "requires": { + "array-uniq": "^1.0.1" + } + }, + "glob": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", + "integrity": "sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.2", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "globby": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", + "integrity": "sha512-HJRTIH2EeH44ka+LWig+EqT2ONSYpVlNfx6pyd592/VF1TbfljJ7elwie7oSwcViLGqOdWocSdu2txwBF9bjmQ==", + "dev": true, + "requires": { + "array-union": "^1.0.1", + "arrify": "^1.0.0", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "jest": { + "version": "25.4.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-25.4.0.tgz", + "integrity": "sha512-XWipOheGB4wai5JfCYXd6vwsWNwM/dirjRoZgAa7H2wd8ODWbli2AiKjqG8AYhyx+8+5FBEdpO92VhGlBydzbw==", + "dev": true, + "requires": { + "@jest/core": "^25.4.0", + "import-local": "^3.0.2", + "jest-cli": "^25.4.0" + } + }, + "merge2": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.0.3.tgz", + "integrity": "sha512-KgI4P7MSM31MNBftGJ07WBsLYLx7z9mQsL6+bcHk80AdmUA3cPzX69MK6dSgEgSF9TXLOl040pgo0XP/VTMENA==", + "dev": true + }, + "z-schema": { + "version": "3.18.4", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-3.18.4.tgz", + "integrity": "sha512-DUOKC/IhbkdLKKiV89gw9DUauTV8U/8yJl1sjf6MtDmzevLKOF2duNJ495S3MFVjqZarr+qNGCPbkg4mu4PpLw==", + "dev": true, + "requires": { + "commander": "^2.7.1", + "lodash.get": "^4.0.0", + "lodash.isequal": "^4.0.0", + "validator": "^8.0.0" + }, + "dependencies": { + "validator": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-8.2.0.tgz", + "integrity": "sha512-Yw5wW34fSv5spzTXNkokD6S6/Oq92d8q/t14TqsS3fAiA1RYnxSFSIZ+CY3n6PGGRCq5HhJTSepQvFUS2QUDxA==", + "dev": true + } + } + } + } + }, + "@microsoft/gulp-core-build-sass": { + "version": "4.15.5", + "resolved": "https://registry.npmjs.org/@microsoft/gulp-core-build-sass/-/gulp-core-build-sass-4.15.5.tgz", + "integrity": "sha512-kDxVDAb4SL/otB7pNAy+oRnIYIdf/cxydc85Y13j2dInNEraaId/bvEFXNxfUn3GxIUF4YJOmLtHklfVhCxIGA==", + "dev": true, + "requires": { + "@microsoft/gulp-core-build": "3.17.19", + "@microsoft/load-themed-styles": "~1.10.172", + "@rushstack/node-core-library": "~3.44.1", + "@types/gulp": "4.0.6", + "@types/node": "10.17.13", + "autoprefixer": "~9.8.8", + "clean-css": "4.2.1", + "glob": "~7.0.5", + "postcss": "7.0.38", + "postcss-modules": "~1.5.0", + "sass": "1.44.0" + }, + "dependencies": { + "@rushstack/node-core-library": { + "version": "3.44.3", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.44.3.tgz", + "integrity": "sha512-Bt+R5LAnVr2BImTJqPpton5rvhJ2Wq8x4BaTqaCHQMmfxqtz5lb4nLYT9kneMJTCDuRMBvvLpSuz4MBj50PV3w==", + "dev": true, + "requires": { + "@types/node": "12.20.24", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~5.0.2" + }, + "dependencies": { + "@types/node": { + "version": "12.20.24", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.24.tgz", + "integrity": "sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==", + "dev": true + } + } + }, + "@types/node": { + "version": "10.17.13", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.13.tgz", + "integrity": "sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==", + "dev": true + }, + "glob": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", + "integrity": "sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.2", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "z-schema": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.4.tgz", + "integrity": "sha512-gm/lx3hDzJNcLwseIeQVm1UcwhWIKpSB4NqH89pTBtFns4k/HDHudsICtvG05Bvw/Mv3jMyk700y5dadueLHdA==", + "dev": true, + "requires": { + "commander": "^2.20.3", + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.7.0" + } + } + } + }, + "@microsoft/gulp-core-build-serve": { + "version": "3.9.21", + "resolved": "https://registry.npmjs.org/@microsoft/gulp-core-build-serve/-/gulp-core-build-serve-3.9.21.tgz", + "integrity": "sha512-Q+sCbf+fSbF48jgp6I74aNftXGHvvCtPEuGD4bpH2l06uiu3IH+tEGiMgCH41GTBckbmkz8cXl+Q8681Tq38bA==", + "dev": true, + "requires": { + "@microsoft/gulp-core-build": "3.17.19", + "@rushstack/debug-certificate-manager": "~1.1.19", + "@rushstack/node-core-library": "~3.44.1", + "@types/node": "10.17.13", + "colors": "~1.2.1", + "express": "~4.16.2", + "gulp": "~4.0.2", + "gulp-connect": "~5.5.0", + "gulp-open": "~3.0.1", + "sudo": "~1.0.3" + }, + "dependencies": { + "@rushstack/node-core-library": { + "version": "3.44.3", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.44.3.tgz", + "integrity": "sha512-Bt+R5LAnVr2BImTJqPpton5rvhJ2Wq8x4BaTqaCHQMmfxqtz5lb4nLYT9kneMJTCDuRMBvvLpSuz4MBj50PV3w==", + "dev": true, + "requires": { + "@types/node": "12.20.24", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~5.0.2" + }, + "dependencies": { + "@types/node": { + "version": "12.20.24", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.24.tgz", + "integrity": "sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==", + "dev": true + } + } + }, + "@types/node": { + "version": "10.17.13", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.13.tgz", + "integrity": "sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==", + "dev": true + }, + "z-schema": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.4.tgz", + "integrity": "sha512-gm/lx3hDzJNcLwseIeQVm1UcwhWIKpSB4NqH89pTBtFns4k/HDHudsICtvG05Bvw/Mv3jMyk700y5dadueLHdA==", + "dev": true, + "requires": { + "commander": "^2.20.3", + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.7.0" + } + } + } + }, + "@microsoft/gulp-core-build-typescript": { + "version": "8.5.32", + "resolved": "https://registry.npmjs.org/@microsoft/gulp-core-build-typescript/-/gulp-core-build-typescript-8.5.32.tgz", + "integrity": "sha512-jQKLtvzNzixpRO3R38xnkjOswG3r+t7TlC40IPKTFhpGd4p1hgSahS8txejkcSH6jc4k5Rstdmg8xNjZJqKnoQ==", + "dev": true, + "requires": { + "@microsoft/gulp-core-build": "3.17.19", + "@rushstack/node-core-library": "~3.44.1", + "@types/node": "10.17.13", + "decomment": "~0.9.1", + "glob": "~7.0.5", + "glob-escape": "~0.0.2", + "resolve": "~1.17.0" + }, + "dependencies": { + "@rushstack/node-core-library": { + "version": "3.44.3", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.44.3.tgz", + "integrity": "sha512-Bt+R5LAnVr2BImTJqPpton5rvhJ2Wq8x4BaTqaCHQMmfxqtz5lb4nLYT9kneMJTCDuRMBvvLpSuz4MBj50PV3w==", + "dev": true, + "requires": { + "@types/node": "12.20.24", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~5.0.2" + }, + "dependencies": { + "@types/node": { + "version": "12.20.24", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.24.tgz", + "integrity": "sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==", + "dev": true + } + } + }, + "@types/node": { + "version": "10.17.13", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.13.tgz", + "integrity": "sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==", + "dev": true + }, + "glob": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", + "integrity": "sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.2", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "z-schema": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.4.tgz", + "integrity": "sha512-gm/lx3hDzJNcLwseIeQVm1UcwhWIKpSB4NqH89pTBtFns4k/HDHudsICtvG05Bvw/Mv3jMyk700y5dadueLHdA==", + "dev": true, + "requires": { + "commander": "^2.20.3", + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.7.0" + } + } + } + }, + "@microsoft/gulp-core-build-webpack": { + "version": "5.2.27", + "resolved": "https://registry.npmjs.org/@microsoft/gulp-core-build-webpack/-/gulp-core-build-webpack-5.2.27.tgz", + "integrity": "sha512-6vEKnFqgfXie9um+uVcPZZEg9mZQJXLOdz1KQWMZwpPmfM7gf+ND8eHCmZizg2Exksm+WthEn5xn8zgLpdudig==", + "dev": true, + "requires": { + "@microsoft/gulp-core-build": "3.17.19", + "@types/gulp": "4.0.6", + "@types/node": "10.17.13", + "colors": "~1.2.1", + "gulp": "~4.0.2", + "webpack": "~4.44.2" + }, + "dependencies": { + "@types/node": { + "version": "10.17.13", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.13.tgz", + "integrity": "sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==", + "dev": true + } + } + }, + "@microsoft/load-themed-styles": { + "version": "1.10.293", + "resolved": "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.293.tgz", + "integrity": "sha512-zSsmz4VKMTje73JZ3Rsv2oIqyu1Yh9oPmrAbUbCloMeFlKtvqHVgMfjXrbicqbiImcTeNfJWFjYFbLRkrsstYA==" + }, + "@microsoft/loader-load-themed-styles": { + "version": "1.9.147", + "resolved": "https://registry.npmjs.org/@microsoft/loader-load-themed-styles/-/loader-load-themed-styles-1.9.147.tgz", + "integrity": "sha512-x6RmEo/LMJBv7Zn3exVJhnTwdtKayCyFuiUZ1VCDVT4otV6DLg5msvKWNqN4mm1EyGh4JmYFWYqEIO96nvcq8w==", + "dev": true, + "requires": { + "@microsoft/load-themed-styles": "1.10.266", + "loader-utils": "~1.1.0" + }, + "dependencies": { + "@microsoft/load-themed-styles": { + "version": "1.10.266", + "resolved": "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.266.tgz", + "integrity": "sha512-xburd5lN4LSFgRbvA2M3bgXIZUa/OlKf9F851gdCu4qMNqyHavZlusRfhGl+H3bsmrWTYU1xlanGZz6ie2zLoA==", + "dev": true + } + } + }, + "@microsoft/mgt-components": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-components/-/mgt-components-2.6.1.tgz", + "integrity": "sha512-2Qa7sH/tM2fwHYldp0nCSm1iFI5/rFf4JvSH91WdMk6XRdqH1Kfz9Jv+lmxLa9YuagSB/UDl1u1pJ27UE8LZEg==", + "requires": { + "@fluentui/web-components": "0.22.1", + "@microsoft/mgt-element": "2.6.1", + "@microsoft/microsoft-graph-client": "^2.2.1", + "@microsoft/microsoft-graph-types": "^2.0.0", + "@microsoft/microsoft-graph-types-beta": "^0.16.0-preview", + "office-ui-fabric-core": "11.0.0" + }, + "dependencies": { + "@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "requires": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + }, + "office-ui-fabric-core": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/office-ui-fabric-core/-/office-ui-fabric-core-11.0.0.tgz", + "integrity": "sha512-K6+KGnBXXjfSxxZpp+4oDXVLgUc//7OnXrn8F08VoJnGhEz27WUf4ZuMa32SjGoqirWlb4JlKkXbOpC9cis6dQ==" + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@microsoft/mgt-element": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-element/-/mgt-element-2.6.1.tgz", + "integrity": "sha512-AT8JoJMOCJfNCB+1PnvIkde+ph9e/5E6Vtu5wPW59X4hbFFBUk8pyC0KOyes0JrXBpbf/lpeSBfnmRUq8enJ2w==", + "requires": { + "@microsoft/microsoft-graph-client": "^2.2.1", + "idb": "6.0.0", + "lit-element": "^2.4.0" + }, + "dependencies": { + "@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "requires": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@microsoft/mgt-react": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-react/-/mgt-react-2.6.1.tgz", + "integrity": "sha512-Ta7/aLrFFhs6y5QyE67j2AyiZckPhUyG+Msq9Lx8BkxVwzoyGLlAtT/mYWfTNjygi0ExZFcEHRITzM+O5nWUyw==", + "requires": { + "@microsoft/mgt-components": "2.6.1", + "@microsoft/mgt-element": "2.6.1", + "@microsoft/microsoft-graph-types": "^2.0.0", + "@microsoft/microsoft-graph-types-beta": "^0.16.0-preview", + "wc-react": "^0.5.0" + } + }, + "@microsoft/mgt-sharepoint-provider": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-sharepoint-provider/-/mgt-sharepoint-provider-2.6.1.tgz", + "integrity": "sha512-bgIbVzQQEex+TFyLZyE0QoxxK7IFkAgqXwxz/pSz7GYq8tog6ywjRpVtlTjf08Cmoi4rXWJHi68+nY7ZWoUL7A==", + "requires": { + "@microsoft/mgt-element": "2.6.1" + } + }, + "@microsoft/mgt-spfx": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-spfx/-/mgt-spfx-2.6.1.tgz", + "integrity": "sha512-lTlC2Ms943q9kFG9WgYWR+I2enkSOXEBJ04JWwIP1WEP8/aZWNbqxaFk4C6hdKIqEVNYppL7SDPz3XFiL+vnvw==", + "requires": { + "@microsoft/mgt-components": "2.6.1", + "@microsoft/mgt-element": "2.6.1", + "@microsoft/mgt-sharepoint-provider": "2.6.1", + "@microsoft/sp-core-library": "1.15.0", + "tslib": "2.3.1" + }, + "dependencies": { + "@microsoft/sp-core-library": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-core-library/-/sp-core-library-1.15.0.tgz", + "integrity": "sha512-35gQme8hnXkEEGy/A3UzlyoR/uuOP1b6EZa2mAR6a+EbMJ+kYuiU40eOGkOmvjr3NyvSc0/+c/IRTRZjEmS3pw==", + "requires": { + "@microsoft/sp-lodash-subset": "1.15.0", + "@microsoft/sp-module-interfaces": "1.15.0", + "@microsoft/sp-odata-types": "1.15.0", + "tslib": "2.3.1" + } + }, + "@microsoft/sp-lodash-subset": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-lodash-subset/-/sp-lodash-subset-1.15.0.tgz", + "integrity": "sha512-9j4U2i5oo4vaTinhtRJGaiBNraDxFd0XF/eui1yXjs4tzUqMOmBY8EVynrEngJQcqEfYU7Dd6yxSfa1qwnBoew==", + "requires": { + "@types/lodash": "4.14.117", + "tslib": "2.3.1" + } + }, + "@microsoft/sp-module-interfaces": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-module-interfaces/-/sp-module-interfaces-1.15.0.tgz", + "integrity": "sha512-C69HqPaKjH1/RpgGkHZNKb1ynPVcOYsqmFlelAk23Tfc+o9hw/WxXvsMHoOYzPR1Mdu7h4fcBPEqId1AKTFUrQ==", + "requires": { + "@rushstack/node-core-library": "3.45.5", + "z-schema": "4.2.4" + } + }, + "@microsoft/sp-odata-types": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-odata-types/-/sp-odata-types-1.15.0.tgz", + "integrity": "sha512-U++bxURPHhSTFM6Wtjbtb8IaKO9DHt33/sAx1HSBtwmc2LmxIzI4zUbEzo0M0TUFStumOnGMJvSFJoQP08UrKw==", + "requires": { + "tslib": "2.3.1" + } + } + } + }, + "@microsoft/microsoft-graph-client": { + "version": "1.7.2-spfx", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-1.7.2-spfx.tgz", + "integrity": "sha512-BQN50r3tohWYOaQ0de7LJ5eCRjI6eg4RQqLhGDlgRmZIZhWzH0bhR6QBMmmxtYtwKWifhPhJSxYDW+cP67TJVw==", + "requires": { + "es6-promise": "^4.2.6", + "isomorphic-fetch": "^3.0.0", + "tslib": "^1.9.3" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@microsoft/microsoft-graph-clientV3": { + "version": "npm:@microsoft/microsoft-graph-client@3.0.2", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-3.0.2.tgz", + "integrity": "sha512-eYDiApYmiGsm1s1jfAa/rhB2xQCsX4pWt0vCTd1LZmiApMQfT/c0hXj2hvpuGz5GrcLdugbu05xB79rIV57Pjw==", + "requires": { + "@babel/runtime": "^7.12.5", + "tslib": "^2.2.0" + } + }, + "@microsoft/microsoft-graph-types": { + "version": "2.25.0", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.25.0.tgz", + "integrity": "sha512-H/HK4MsRJ1H+G/HwbU/z225BKwzoMU3fawD8xivGxDgyGIDzdZf07Ruz/wPSM+tSJJin/swz3TwFllxveduG8Q==" + }, + "@microsoft/microsoft-graph-types-beta": { + "version": "0.16.0-preview", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types-beta/-/microsoft-graph-types-beta-0.16.0-preview.tgz", + "integrity": "sha512-73d1b8pv8YnKx+oiQtMZDSey4ohmx/cfM/vFiAa5ZyLSj4nr9y/7wIT5jTIO+tkdniyBsfN/QQeDiRwyutcxAQ==" + }, + "@microsoft/office-ui-fabric-react-bundle": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/office-ui-fabric-react-bundle/-/office-ui-fabric-react-bundle-1.15.2.tgz", + "integrity": "sha512-iYQvIIRkjvwkoD9RHa3LUqbago9wSL0YUiifbQib7sG4fzl38Hmrht+WA0DPRPZbSwOWCsjzv7FXt1YWy9QxFQ==", + "requires": { + "@microsoft/sp-core-library": "1.15.2", + "@uifabric/icons": "7.7.2", + "office-ui-fabric-react": "7.185.7", + "react": "16.13.1", + "react-dom": "16.13.1", + "tslib": "2.3.1" + } + }, + "@microsoft/recognizers-text-data-types-timex-expression": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@microsoft/recognizers-text-data-types-timex-expression/-/recognizers-text-data-types-timex-expression-1.3.0.tgz", + "integrity": "sha512-REHUXmMUI1jL3b9v+aSdzKxLxRdejsfg9McYRxY3LW0Gu4UbwD7Q+K6mtSo40cwg8uh6fiV9GY8hDuKXHH6dVA==" + }, + "@microsoft/rush-lib": { + "version": "5.70.0", + "resolved": "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.70.0.tgz", + "integrity": "sha512-voTwbD33rp3+2KdP8tvgmV63ay5QDeSZyxLIb3gjmzmF2dp6SYi1OPXULFbJBgCEg2c/V09Aa5o7fZ6nHtLuGw==", + "dev": true, + "requires": { + "@pnpm/link-bins": "~5.3.7", + "@rushstack/heft-config-file": "0.8.4", + "@rushstack/node-core-library": "3.45.5", + "@rushstack/package-deps-hash": "3.2.17", + "@rushstack/rig-package": "0.3.11", + "@rushstack/rush-amazon-s3-build-cache-plugin": "5.70.0", + "@rushstack/rush-azure-storage-build-cache-plugin": "5.70.0", + "@rushstack/stream-collator": "4.0.172", + "@rushstack/terminal": "0.3.41", + "@rushstack/ts-command-line": "4.11.0", + "@types/node-fetch": "1.6.9", + "@yarnpkg/lockfile": "~1.0.2", + "builtin-modules": "~3.1.0", + "cli-table": "~0.3.1", + "colors": "~1.2.1", + "git-repo-info": "~2.1.0", + "glob": "~7.0.5", + "glob-escape": "~0.0.2", + "https-proxy-agent": "~5.0.0", + "ignore": "~5.1.6", + "inquirer": "~7.3.3", + "js-yaml": "~3.13.1", + "jszip": "~3.7.1", + "lodash": "~4.17.15", + "node-fetch": "2.6.7", + "npm-package-arg": "~6.1.0", + "npm-packlist": "~2.1.2", + "read-package-tree": "~5.1.5", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "ssri": "~8.0.0", + "strict-uri-encode": "~2.0.0", + "tapable": "2.2.1", + "tar": "~6.1.11", + "true-case-path": "~2.2.1" + }, + "dependencies": { + "@rushstack/rig-package": { + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.3.11.tgz", + "integrity": "sha512-uI1/g5oQPtyrT9nStoyX/xgZSLa2b+srRFaDk3r1eqC7zA5th4/bvTGl2QfV3C9NcP+coSqmk5mFJkUfH6i3Lw==", + "dev": true, + "requires": { + "resolve": "~1.17.0", + "strip-json-comments": "~3.1.1" + } + }, + "@rushstack/ts-command-line": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@rushstack/ts-command-line/-/ts-command-line-4.11.0.tgz", + "integrity": "sha512-ptG9L0mjvJ5QtK11GsAFY+jGfsnqHDS6CY6Yw1xT7a9bhjfNYnf6UPwjV+pF6UgiucfNcMDNW9lkDLxvZKKxMg==", + "dev": true, + "requires": { + "@types/argparse": "1.0.38", + "argparse": "~1.0.9", + "colors": "~1.2.1", + "string-argv": "~0.3.1" + } + }, + "glob": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", + "integrity": "sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.2", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "ignore": { + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.9.tgz", + "integrity": "sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==", + "dev": true + }, + "js-yaml": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", + "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dev": true, + "requires": { + "minipass": "^3.1.1" + } + }, + "tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true + } + } + }, + "@microsoft/rush-stack-compiler-4.5": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@microsoft/rush-stack-compiler-4.5/-/rush-stack-compiler-4.5-0.2.2.tgz", + "integrity": "sha512-nRlomAZwOYUR3qmFxxVcn8A3wmkjQ4eS3hoKzYylOqEU8SYPFxDFSN4I+2Y+hGTYG0gpm3NSL4Wvb0I180pCbg==", + "dev": true, + "requires": { + "@microsoft/api-extractor": "~7.15.2", + "@rushstack/eslint-config": "~2.5.0", + "@rushstack/node-core-library": "~3.44.1", + "@types/node": "10.17.13", + "eslint": "8.7.0", + "import-lazy": "~4.0.0", + "typescript": "~4.5.5" + }, + "dependencies": { + "@rushstack/node-core-library": { + "version": "3.44.3", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.44.3.tgz", + "integrity": "sha512-Bt+R5LAnVr2BImTJqPpton5rvhJ2Wq8x4BaTqaCHQMmfxqtz5lb4nLYT9kneMJTCDuRMBvvLpSuz4MBj50PV3w==", + "dev": true, + "requires": { + "@types/node": "12.20.24", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~5.0.2" + }, + "dependencies": { + "@types/node": { + "version": "12.20.24", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.24.tgz", + "integrity": "sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==", + "dev": true + } + } + }, + "@types/node": { + "version": "10.17.13", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.13.tgz", + "integrity": "sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==", + "dev": true + }, + "z-schema": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.4.tgz", + "integrity": "sha512-gm/lx3hDzJNcLwseIeQVm1UcwhWIKpSB4NqH89pTBtFns4k/HDHudsICtvG05Bvw/Mv3jMyk700y5dadueLHdA==", + "dev": true, + "requires": { + "commander": "^2.20.3", + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.7.0" + } + } + } + }, + "@microsoft/sp-build-core-tasks": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-build-core-tasks/-/sp-build-core-tasks-1.15.2.tgz", + "integrity": "sha512-yVpPKGKlMcsDbO9bjVYEf2PZEcVHC8eAx49qYXi4jGbAIOqZC6hjxJKQYLXT/Gh02wA67GFmwr55C7KOO1wMUg==", + "dev": true, + "requires": { + "@microsoft/gulp-core-build": "3.17.19", + "@microsoft/gulp-core-build-serve": "3.9.21", + "@microsoft/gulp-core-build-webpack": "5.2.27", + "@microsoft/spfx-heft-plugins": "1.15.2", + "@rushstack/node-core-library": "3.45.5", + "@types/glob": "5.0.30", + "@types/lodash": "4.14.117", + "@types/webpack": "4.41.24", + "colors": "~1.2.1", + "glob": "~7.0.5", + "gulp": "4.0.2", + "lodash": "4.17.21", + "webpack": "~4.44.2" + }, + "dependencies": { + "@types/glob": { + "version": "5.0.30", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.30.tgz", + "integrity": "sha512-ZM05wDByI+WA153sfirJyEHoYYoIuZ7lA2dB/Gl8ymmpMTR78fNRtDMqa7Z6SdH4fZdLWZNRE6mZpx3XqBOrHw==", + "dev": true, + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "glob": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", + "integrity": "sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.2", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + } + } + }, + "@microsoft/sp-build-web": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-build-web/-/sp-build-web-1.15.2.tgz", + "integrity": "sha512-lS67sxWuqkbTEjPhJHYurARxMQCNc8j0zw5WdnvKG8bt1DrcHe8NLtpfK9pDcPYe7S5YfgI36AOiEvICxjRkqg==", + "dev": true, + "requires": { + "@microsoft/gulp-core-build": "3.17.19", + "@microsoft/gulp-core-build-sass": "4.15.5", + "@microsoft/gulp-core-build-serve": "3.9.21", + "@microsoft/gulp-core-build-typescript": "8.5.32", + "@microsoft/gulp-core-build-webpack": "5.2.27", + "@microsoft/rush-lib": "5.70.0", + "@microsoft/sp-build-core-tasks": "1.15.2", + "@rushstack/node-core-library": "3.45.5", + "@types/webpack": "4.41.24", + "gulp": "4.0.2", + "semver": "~7.3.2", + "true-case-path": "~2.2.1", + "webpack": "~4.44.2", + "yargs": "~4.6.0" + } + }, + "@microsoft/sp-component-base": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-component-base/-/sp-component-base-1.15.2.tgz", + "integrity": "sha512-Uf7nZ6Ohf68FQ4ABDs+8GVyqAb87rybaTJh/xBYz7DAjUUk/G1urq9wqTih8hSaHGog4P7ovuVeBKNYpmOU3Tg==", + "requires": { + "@microsoft/office-ui-fabric-react-bundle": "1.15.2", + "@microsoft/sp-core-library": "1.15.2", + "@microsoft/sp-diagnostics": "1.15.2", + "@microsoft/sp-dynamic-data": "1.15.2", + "@microsoft/sp-http": "1.15.2", + "@microsoft/sp-lodash-subset": "1.15.2", + "@microsoft/sp-module-interfaces": "1.15.2", + "@microsoft/sp-page-context": "1.15.2", + "tslib": "2.3.1" + } + }, + "@microsoft/sp-core-library": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-core-library/-/sp-core-library-1.15.2.tgz", + "integrity": "sha512-sEotaC8+jUMZa5wc3lvtDYOGpAzzcl1fSZ0FnANIrJGyBC6tTqred0fzpkXptd4R0G/wi3746ivrccAOkzONkQ==", + "requires": { + "@microsoft/sp-lodash-subset": "1.15.2", + "@microsoft/sp-module-interfaces": "1.15.2", + "@microsoft/sp-odata-types": "1.15.2", + "tslib": "2.3.1" + } + }, + "@microsoft/sp-css-loader": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-css-loader/-/sp-css-loader-1.15.2.tgz", + "integrity": "sha512-3SjLphivW4kYg/Jl4exVStrBNuEjl0ol69zdJCjkRLT+wZvAstc5Y4RVljMDAap1BgTh14zJ3jT6nztbExlMGA==", + "dev": true, + "requires": { + "@microsoft/load-themed-styles": "1.10.266", + "@rushstack/node-core-library": "3.45.5", + "autoprefixer": "9.7.1", + "css-loader": "3.4.2", + "cssnano": "~4.1.10", + "loader-utils": "1.2.3", + "postcss": "~8.1.0", + "postcss-modules-extract-imports": "~3.0.0", + "postcss-modules-local-by-default": "~4.0.0", + "postcss-modules-scope": "~3.0.0", + "postcss-modules-values": "~4.0.0", + "webpack": "~4.44.2" + }, + "dependencies": { + "@microsoft/load-themed-styles": { + "version": "1.10.266", + "resolved": "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.266.tgz", + "integrity": "sha512-xburd5lN4LSFgRbvA2M3bgXIZUa/OlKf9F851gdCu4qMNqyHavZlusRfhGl+H3bsmrWTYU1xlanGZz6ie2zLoA==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "autoprefixer": { + "version": "9.7.1", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.7.1.tgz", + "integrity": "sha512-w3b5y1PXWlhYulevrTJ0lizkQ5CyqfeU6BIRDbuhsMupstHQOeb1Ur80tcB1zxSu7AwyY/qCQ7Vvqklh31ZBFw==", + "dev": true, + "requires": { + "browserslist": "^4.7.2", + "caniuse-lite": "^1.0.30001006", + "chalk": "^2.4.2", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^7.0.21", + "postcss-value-parser": "^4.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + } + } + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "css-loader": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.4.2.tgz", + "integrity": "sha512-jYq4zdZT0oS0Iykt+fqnzVLRIeiPWhka+7BqPn+oSIpWJAHak5tmB/WZrJ2a21JhCeFyNnnlroSl8c+MtVndzA==", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^1.2.3", + "normalize-path": "^3.0.0", + "postcss": "^7.0.23", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.2", + "postcss-modules-scope": "^2.1.1", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.0.2", + "schema-utils": "^2.6.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", + "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "dev": true, + "requires": { + "postcss": "^7.0.5" + } + }, + "postcss-modules-local-by-default": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", + "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", + "dev": true, + "requires": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", + "dev": true, + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + } + }, + "postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", + "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", + "dev": true, + "requires": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + } + } + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", + "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^2.0.0", + "json5": "^1.0.1" + } + }, + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "postcss": { + "version": "8.1.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.1.14.tgz", + "integrity": "sha512-KatkyVPBKfENS+c3dpXJoDXnDD5UZs5exAnDksLqaRJPKwYphEPZt4N0m0i049v2/BtWVQibAhxW4ilXXcolpA==", + "dev": true, + "requires": { + "colorette": "^1.2.1", + "nanoid": "^3.1.20", + "source-map": "^0.6.1" + } + }, + "postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true + }, + "postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "dependencies": { + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true + } + } + }, + "postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.4" + } + }, + "postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0" + }, + "dependencies": { + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true + } + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@microsoft/sp-diagnostics": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-diagnostics/-/sp-diagnostics-1.15.2.tgz", + "integrity": "sha512-9OJQwkdy3kqATQISpI4SG+5OUMB90KesupsWIE31aAyPcQiilh0XGhWmaYnCxCgGATAWcaYrFeptlDOTQNpuiA==", + "requires": { + "@microsoft/sp-core-library": "1.15.2", + "@microsoft/sp-lodash-subset": "1.15.2" + } + }, + "@microsoft/sp-dynamic-data": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-dynamic-data/-/sp-dynamic-data-1.15.2.tgz", + "integrity": "sha512-6ks5GUBSatsijQC8NUjaLjYCv4efAbEJcbSVTj8lySpTVCWu8aKsFtKB1b/Vc3I1g9Adq6z2e9sgTaPwm6HTlA==", + "requires": { + "@microsoft/sp-core-library": "1.15.2", + "@microsoft/sp-diagnostics": "1.15.2", + "@microsoft/sp-lodash-subset": "1.15.2", + "@microsoft/sp-module-interfaces": "1.15.2", + "tslib": "2.3.1" + } + }, + "@microsoft/sp-extension-base": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-extension-base/-/sp-extension-base-1.15.2.tgz", + "integrity": "sha512-S/ks3vZF98fx56Rt/WOgmyo5Fsf3O9+ibDLapuO5TIylvb3GuBEOdxPONv5fqVcWauWB9IkrP0ymTNauuBB+Dw==", + "requires": { + "@microsoft/sp-component-base": "1.15.2", + "@microsoft/sp-core-library": "1.15.2", + "@microsoft/sp-diagnostics": "1.15.2", + "@microsoft/sp-loader": "1.15.2", + "@microsoft/sp-module-interfaces": "1.15.2", + "tslib": "2.3.1" + } + }, + "@microsoft/sp-http": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-http/-/sp-http-1.15.2.tgz", + "integrity": "sha512-vP3heQlje3YVTgyaGKZmrHksqmWP+zczuhQP116cCl6z52ZdUiuJIZpDcu+WGZaG1HdznAyrNGkkiZauTytIHw==", + "requires": { + "@azure/msal-browser": "2.22.0", + "@microsoft/microsoft-graph-client": "1.7.2-spfx", + "@microsoft/microsoft-graph-clientV3": "npm:@microsoft/microsoft-graph-client@3.0.2", + "@microsoft/sp-core-library": "1.15.2", + "@microsoft/sp-diagnostics": "1.15.2", + "@microsoft/sp-page-context": "1.15.2", + "@types/adal-angular": "1.0.1", + "adal-angular": "1.0.16", + "msalLegacy": "npm:msal@1.4.12", + "tslib": "2.3.1" + } + }, + "@microsoft/sp-image-helper": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-image-helper/-/sp-image-helper-1.15.2.tgz", + "integrity": "sha512-vNwymXZtGLFdgkNaV0j/Oi5t8Pz2FV9LgS2gnbAKuRzLSXtCSZ9hfP+5eC5LrVBWkSzxHC+8e+gAGaxqbr2asA==", + "requires": { + "@microsoft/office-ui-fabric-react-bundle": "1.15.2", + "@microsoft/sp-core-library": "1.15.2", + "@microsoft/sp-diagnostics": "1.15.2", + "@microsoft/sp-http": "1.15.2", + "@microsoft/sp-loader": "1.15.2", + "@microsoft/sp-lodash-subset": "1.15.2", + "@microsoft/sp-page-context": "1.15.2", + "tslib": "2.3.1" + } + }, + "@microsoft/sp-listview-extensibility": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-listview-extensibility/-/sp-listview-extensibility-1.15.2.tgz", + "integrity": "sha512-78kkdPYYg3HqEAHw5hIafW/5foBXcsBZ2vaeI9zxZ+1qCY4lnS1MpXdQ9ajX1mDNrImMxvAEw2btUCA0QqY1zQ==", + "requires": { + "@microsoft/sp-core-library": "1.15.2", + "@microsoft/sp-extension-base": "1.15.2", + "@microsoft/sp-module-interfaces": "1.15.2", + "@microsoft/sp-page-context": "1.15.2", + "tslib": "2.3.1" + } + }, + "@microsoft/sp-loader": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-loader/-/sp-loader-1.15.2.tgz", + "integrity": "sha512-w1EbIrP7AXH5Oq0cQwKW5OZUK6+c3amiImGUBSAlyHaEyC5/gSKMCDM0XJ0xkrihWs0ICWj/yX2o0aLaaReO3g==", + "requires": { + "@microsoft/office-ui-fabric-react-bundle": "1.15.2", + "@microsoft/sp-core-library": "1.15.2", + "@microsoft/sp-diagnostics": "1.15.2", + "@microsoft/sp-dynamic-data": "1.15.2", + "@microsoft/sp-http": "1.15.2", + "@microsoft/sp-lodash-subset": "1.15.2", + "@microsoft/sp-module-interfaces": "1.15.2", + "@microsoft/sp-odata-types": "1.15.2", + "@microsoft/sp-page-context": "1.15.2", + "@microsoft/sp-polyfills": "1.15.2", + "@rushstack/loader-raw-script": "1.3.228", + "@types/requirejs": "2.1.29", + "office-ui-fabric-react": "7.185.7", + "raw-loader": "~0.5.1", + "react": "16.13.1", + "react-dom": "16.13.1", + "requirejs": "2.3.6", + "tslib": "2.3.1" + } + }, + "@microsoft/sp-lodash-subset": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-lodash-subset/-/sp-lodash-subset-1.15.2.tgz", + "integrity": "sha512-XLqSltvz9W0hft76fylqVFNUIVS1sLjdUF3+lIQyj0g+4R9kDy9VsGhpxX7qLGAdW10yZ6Z40qfmBWgn8NN4MA==", + "requires": { + "@types/lodash": "4.14.117", + "tslib": "2.3.1" + } + }, + "@microsoft/sp-module-interfaces": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-module-interfaces/-/sp-module-interfaces-1.15.2.tgz", + "integrity": "sha512-JGOjK8f5ww+r4ax8TBAPDyZhDhGWVg1Jk4PvKE0cU6qjywM0DzWWkzHJFcyFXdjr8UE/+wzJOKasCCtu1RjWQg==", + "requires": { + "@rushstack/node-core-library": "3.45.5", + "z-schema": "4.2.4" + } + }, + "@microsoft/sp-odata-types": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-odata-types/-/sp-odata-types-1.15.2.tgz", + "integrity": "sha512-Eb5MAWRAOkRAGXSdacg8p/KdSpYDJBNwyqNCZwrsCbgf/66h28oK0KUqQ6o8Hcy+vAZpa16x6bvpJQw5u1u8ZA==", + "requires": { + "tslib": "2.3.1" + } + }, + "@microsoft/sp-office-ui-fabric-core": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-office-ui-fabric-core/-/sp-office-ui-fabric-core-1.15.2.tgz", + "integrity": "sha512-/AO94rEE8NJqyVRiKkTzmdVbwqht8fVULvsikpJUTGd4Cczp8nUs9YsTwGxbdlW9Mu3gQ7CM9Rq7J24pNmEJWA==", + "requires": { + "office-ui-fabric-core": "11.0.1", + "tslib": "2.3.1" + } + }, + "@microsoft/sp-page-context": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-page-context/-/sp-page-context-1.15.2.tgz", + "integrity": "sha512-gq7q2vq5rzAwkOn4/jpdL/VgHCrtDWNZqjcU62W6iIW4TNT3nVykcof9llpghPcYx5dOuTtrRizXfa+vtQ+rzw==", + "requires": { + "@microsoft/sp-core-library": "1.15.2", + "@microsoft/sp-diagnostics": "1.15.2", + "@microsoft/sp-dynamic-data": "1.15.2", + "@microsoft/sp-lodash-subset": "1.15.2", + "@microsoft/sp-odata-types": "1.15.2", + "tslib": "2.3.1" + } + }, + "@microsoft/sp-polyfills": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-polyfills/-/sp-polyfills-1.15.2.tgz", + "integrity": "sha512-XxbM/3p6yW/OIahcmzOVFQArKRxySHuDLSveSEdjIY3ycG8UWNX4QXDEd1tZchWCDz3vfO+j4aUsPPSOVW1Wcw==", + "requires": { + "es6-promise": "4.2.4", + "es6-symbol": "3.1.3", + "tslib": "2.3.1", + "whatwg-fetch": "2.0.3", + "whatwg-url": "4.7.1" + }, + "dependencies": { + "es6-promise": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.4.tgz", + "integrity": "sha512-/NdNZVJg+uZgtm9eS3O6lrOLYmQag2DjdEXuPaHlZ6RuVqgqaVZfgYCepEIKsLqwdQArOPtC3XzRLqGGfT8KQQ==" + }, + "whatwg-fetch": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz", + "integrity": "sha512-SA2KdOXATOroD3EBUYvcdugsusXS5YiQFqwskSbsp5b1gK8HpNi/YP0jcy/BDpdllp305HMnrsVf9K7Be9GiEQ==" + }, + "whatwg-url": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-4.7.1.tgz", + "integrity": "sha512-7rwLuNiZQbujtIu7Ibp7mq9X/Swqq90X0+zOWESoViRYcIOoQWtThlRX9K2YQHZLwGZv4CBOdTc4N3/SzAdb6w==", + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + } + } + }, + "@microsoft/sp-property-pane": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-property-pane/-/sp-property-pane-1.15.2.tgz", + "integrity": "sha512-V78aUGZa4gM/MMmOg14iWYPoknHe9jrormvTXpltjcIvipRm5H5bRr6D4SfuzJ7uu0roJ53zfGddCDdvn05ezA==", + "requires": { + "@microsoft/office-ui-fabric-react-bundle": "1.15.2", + "@microsoft/sp-component-base": "1.15.2", + "@microsoft/sp-core-library": "1.15.2", + "@microsoft/sp-diagnostics": "1.15.2", + "@microsoft/sp-dynamic-data": "1.15.2", + "@microsoft/sp-image-helper": "1.15.2", + "@microsoft/sp-lodash-subset": "1.15.2", + "@microsoft/sp-page-context": "1.15.2", + "office-ui-fabric-react": "7.185.7", + "react": "16.13.1", + "react-dom": "16.13.1", + "tslib": "2.3.1" + } + }, + "@microsoft/sp-webpart-base": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-webpart-base/-/sp-webpart-base-1.15.2.tgz", + "integrity": "sha512-dFQBwmRg81EDyV5RzA7JEhtdKyjk3vjKZBn3pWvaY/4Yo+oGyzKdQ8o/z2A9OO6KwXXlXkFiGJgoau57c/EALQ==", + "requires": { + "@microsoft/sp-component-base": "1.15.2", + "@microsoft/sp-core-library": "1.15.2", + "@microsoft/sp-diagnostics": "1.15.2", + "@microsoft/sp-dynamic-data": "1.15.2", + "@microsoft/sp-http": "1.15.2", + "@microsoft/sp-loader": "1.15.2", + "@microsoft/sp-lodash-subset": "1.15.2", + "@microsoft/sp-module-interfaces": "1.15.2", + "@microsoft/sp-page-context": "1.15.2", + "@microsoft/sp-property-pane": "1.15.2", + "@microsoft/teams-js": "1.12.1", + "@types/office-js": "1.0.36", + "office-ui-fabric-react": "7.185.7", + "react": "16.13.1", + "react-dom": "16.13.1", + "tslib": "2.3.1" + } + }, + "@microsoft/spfx-heft-plugins": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/spfx-heft-plugins/-/spfx-heft-plugins-1.15.2.tgz", + "integrity": "sha512-92MAbCba3luuofv5se1p6SOnvuSTVmHJDozu/FljR6s3OIFrDOYjEZXSD3DgK0rf1oTijJbH3jXI5Pq6VqmimQ==", + "dev": true, + "requires": { + "@azure/storage-blob": "~12.4.1", + "@microsoft/loader-load-themed-styles": "1.9.147", + "@microsoft/rush-lib": "5.70.0", + "@microsoft/sp-css-loader": "1.15.2", + "@microsoft/sp-module-interfaces": "1.15.2", + "@rushstack/heft-config-file": "0.8.4", + "@rushstack/localization-plugin": "0.11.0", + "@rushstack/module-minifier-plugin": "0.9.0", + "@rushstack/node-core-library": "3.45.5", + "@rushstack/rig-package": "0.3.11", + "@rushstack/set-webpack-public-path-plugin": "3.3.37", + "@rushstack/terminal": "0.3.43", + "@types/tapable": "1.0.6", + "autoprefixer": "9.7.1", + "colors": "~1.2.1", + "copy-webpack-plugin": "~6.0.3", + "css-loader": "~3.2.0", + "cssnano": "~4.1.10", + "express": "4.17.1", + "file-loader": "~1.1.11", + "git-repo-info": "~2.1.1", + "glob": "~7.0.5", + "html-loader": "~0.5.1", + "lodash": "4.17.21", + "mime": "2.5.2", + "node-zip": "~1.1.1", + "postcss-loader": "3.0.0", + "resolve": "~1.17.0", + "sass": "1.44.0", + "sass-loader": "8.0.2", + "source-map": "0.6.1", + "source-map-loader": "1.1.3", + "tapable": "1.1.3", + "true-case-path": "~2.2.1", + "uuid": "~3.1.0", + "webpack": "~4.44.2", + "webpack-dev-server": "~3.11.0", + "webpack-sources": "1.4.3", + "xml": "~1.0.1" + }, + "dependencies": { + "@azure/core-tracing": { + "version": "1.0.0-preview.9", + "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.0.0-preview.9.tgz", + "integrity": "sha512-zczolCLJ5QG42AEPQ+Qg9SRYNUyB+yZ5dzof4YEc+dyWczO9G2sBqbAjLB7IqrsdHN2apkiB2oXeDKCsq48jug==", + "dev": true, + "requires": { + "@opencensus/web-types": "0.0.7", + "@opentelemetry/api": "^0.10.2", + "tslib": "^2.0.0" + } + }, + "@azure/storage-blob": { + "version": "12.4.1", + "resolved": "https://registry.npmjs.org/@azure/storage-blob/-/storage-blob-12.4.1.tgz", + "integrity": "sha512-RH6ru8LbnCC+m1rlVLon6mYUXdHsTcyUXFCJAWRQQM7p0XOwVKPS+UiVk2tZXfvMWd3q/qT/meOrEbHEcp/c4g==", + "dev": true, + "requires": { + "@azure/abort-controller": "^1.0.0", + "@azure/core-http": "^1.2.0", + "@azure/core-lro": "^1.0.2", + "@azure/core-paging": "^1.1.1", + "@azure/core-tracing": "1.0.0-preview.9", + "@azure/logger": "^1.0.0", + "@opentelemetry/api": "^0.10.2", + "events": "^3.0.0", + "tslib": "^2.0.0" + } + }, + "@opentelemetry/api": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-0.10.2.tgz", + "integrity": "sha512-GtpMGd6vkzDMYcpu2t9LlhEgMy/SzBwRnz48EejlRArYqZzqSzAsKmegUK7zHgl+EOIaK9mKHhnRaQu3qw20cA==", + "dev": true, + "requires": { + "@opentelemetry/context-base": "^0.10.2" + } + }, + "@rushstack/rig-package": { + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.3.11.tgz", + "integrity": "sha512-uI1/g5oQPtyrT9nStoyX/xgZSLa2b+srRFaDk3r1eqC7zA5th4/bvTGl2QfV3C9NcP+coSqmk5mFJkUfH6i3Lw==", + "dev": true, + "requires": { + "resolve": "~1.17.0", + "strip-json-comments": "~3.1.1" + } + }, + "@rushstack/terminal": { + "version": "0.3.43", + "resolved": "https://registry.npmjs.org/@rushstack/terminal/-/terminal-0.3.43.tgz", + "integrity": "sha512-iJJ+hbPISsFykLvmfUocFfxyzyah1t2PGXU2gSzG1P5ouicPdh0yjM0Tta2ZbaSi9Z2F59+/8iUGHRWk5WE+Tg==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.45.5", + "@types/node": "12.20.24", + "wordwrap": "~1.0.0" + } + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "autoprefixer": { + "version": "9.7.1", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.7.1.tgz", + "integrity": "sha512-w3b5y1PXWlhYulevrTJ0lizkQ5CyqfeU6BIRDbuhsMupstHQOeb1Ur80tcB1zxSu7AwyY/qCQ7Vvqklh31ZBFw==", + "dev": true, + "requires": { + "browserslist": "^4.7.2", + "caniuse-lite": "^1.0.30001006", + "chalk": "^2.4.2", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^7.0.21", + "postcss-value-parser": "^4.0.2" + } + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "dev": true, + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + } + }, + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "dev": true, + "requires": { + "safe-buffer": "5.1.2" + } + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "dev": true, + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + } + }, + "glob": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", + "integrity": "sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.2", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "mime": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", + "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", + "dev": true + }, + "raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "dev": true, + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "dev": true, + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "dev": true + } + } + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "dev": true, + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + } + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==", + "dev": true + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "uuid": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.1.0.tgz", + "integrity": "sha512-DIWtzUkw04M4k3bf1IcpS2tngXEL26YUD2M0tMDUpnUrz2hgzUBlD55a4FjdLGPvfHxS6uluGWvaVEqgBcVa+g==", + "dev": true + } + } + }, + "@microsoft/teams-js": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@microsoft/teams-js/-/teams-js-1.12.1.tgz", + "integrity": "sha512-BRy6vZOseN9F/MG0NWTojYpenuo9XlZ4AfAvwnsG+C36UDPPgW0skWlZ6ub+7RBPhOHcxz8sNg2uHOdGRebWkQ==" + }, + "@microsoft/tsdoc": { + "version": "0.13.2", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.13.2.tgz", + "integrity": "sha512-WrHvO8PDL8wd8T2+zBGKrMwVL5IyzR3ryWUsl0PXgEV0QHup4mTLi0QcATefGI6Gx9Anu7vthPyyyLpY0EpiQg==", + "dev": true + }, + "@microsoft/tsdoc-config": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc-config/-/tsdoc-config-0.15.2.tgz", + "integrity": "sha512-mK19b2wJHSdNf8znXSMYVShAHktVr/ib0Ck2FA3lsVBSEhSI/TfXT7DJQkAYgcztTuwazGcg58ZjYdk0hTCVrA==", + "dev": true, + "requires": { + "@microsoft/tsdoc": "0.13.2", + "ajv": "~6.12.6", + "jju": "~1.4.0", + "resolve": "~1.19.0" + }, + "dependencies": { + "resolve": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", + "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", + "dev": true, + "requires": { + "is-core-module": "^2.1.0", + "path-parse": "^1.0.6" + } + } + } + }, + "@monaco-editor/loader": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@monaco-editor/loader/-/loader-1.3.2.tgz", + "integrity": "sha512-BTDbpHl3e47r3AAtpfVFTlAi7WXv4UQ/xZmz8atKl4q7epQV5e7+JbigFDViWF71VBi4IIBdcWP57Hj+OWuc9g==", + "requires": { + "state-local": "^1.0.6" + } + }, + "@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, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@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 + }, + "@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, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@npmcli/fs": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", + "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", + "dev": true, + "requires": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + } + }, + "@npmcli/move-file": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "dev": true, + "requires": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + } + } + }, + "@opencensus/web-types": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/@opencensus/web-types/-/web-types-0.0.7.tgz", + "integrity": "sha512-xB+w7ZDAu3YBzqH44rCmG9/RlrOmFuDPt/bpf17eJr8eZSrLt7nc7LnWdxM9Mmoj/YKMHpxRg28txu3TcpiL+g==", + "dev": true + }, + "@opentelemetry/api": { + "version": "1.0.0-rc.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.0.0-rc.0.tgz", + "integrity": "sha512-iXKByCMfrlO5S6Oh97BuM56tM2cIBB0XsL/vWF/AtJrJEKx4MC/Xdu0xDsGXMGcNWpqF7ujMsjjnp0+UHBwnDQ==", + "dev": true + }, + "@opentelemetry/context-base": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/@opentelemetry/context-base/-/context-base-0.10.2.tgz", + "integrity": "sha512-hZNKjKOYsckoOEgBziGMnBcX0M7EtstnCmwz5jZUOUYwlZ+/xxX6z3jPu1XVO2Jivk0eLfuP9GP+vFD49CMetw==", + "dev": true + }, + "@opentelemetry/types": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/types/-/types-0.2.0.tgz", + "integrity": "sha512-GtwNB6BNDdsIPAYEdpp3JnOGO/3AJxjPvny53s3HERBdXSJTGQw8IRhiaTEX0b3w9P8+FwFZde4k+qkjn67aVw==", + "dev": true + }, + "@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.7.tgz", + "integrity": "sha512-bcKCAzF0DV2IIROp9ZHkRJa6O4jy7NlnHdWL3GmcUxYWNjLXkK5kfELELwEfSP5hXPfVL/qOGMAROuMQb9GG8Q==", + "dev": true, + "requires": { + "ansi-html-community": "^0.0.8", + "common-path-prefix": "^3.0.0", + "core-js-pure": "^3.8.1", + "error-stack-parser": "^2.0.6", + "find-up": "^5.0.0", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0", + "source-map": "^0.7.3" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "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, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "html-entities": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz", + "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==", + "dev": true + }, + "json5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "dev": true + }, + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "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, + "requires": { + "p-locate": "^5.0.0" + } + }, + "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, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "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, + "requires": { + "p-limit": "^3.0.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true + } + } + }, + "@pnp/common": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@pnp/common/-/common-2.5.0.tgz", + "integrity": "sha512-ea4zTNC3sjLolrHZXP+/2SrJM+yC8PygmPW/yRfgbErdvdwYMUSogT69dW+NUaqhkfYZfkkAoWn42irlLMSpdw==", + "requires": { + "tslib": "2.2.0" + }, + "dependencies": { + "tslib": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", + "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" + } + } + }, + "@pnp/logging": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@pnp/logging/-/logging-2.5.0.tgz", + "integrity": "sha512-SnmMCN6oADjiHKAIR23FfTqXeQZeXPBnWeVfyZAgzJfRn9uEQoUlkyET3jHjl9kkrFOVkiOD1CRI7TWMIxURbA==", + "requires": { + "tslib": "2.2.0" + }, + "dependencies": { + "tslib": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", + "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" + } + } + }, + "@pnp/odata": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@pnp/odata/-/odata-2.5.0.tgz", + "integrity": "sha512-AeP01jDvnkiUVn7V+4FT07chz+G/yzrJDH0Gk+qzujJ393ZO6FwJpJEiOCRh9cxF48gqSj/f7r/IIyDHe0+IpQ==", + "requires": { + "@pnp/common": "2.5.0", + "@pnp/logging": "2.5.0", + "tslib": "2.2.0" + }, + "dependencies": { + "tslib": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", + "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" + } + } + }, + "@pnp/sp": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@pnp/sp/-/sp-2.5.0.tgz", + "integrity": "sha512-4s2p+X5qvkXR72NViKb8DIfC+pvj/a3psZ3Im5PRIan2ErMtu9ch3Lb9nkSaMCF3NTJxWOhkUQ/R6tx8ApaUkg==", + "requires": { + "@pnp/common": "2.5.0", + "@pnp/logging": "2.5.0", + "@pnp/odata": "2.5.0", + "tslib": "2.2.0" + }, + "dependencies": { + "tslib": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", + "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" + } + } + }, + "@pnp/spfx-controls-react": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/@pnp/spfx-controls-react/-/spfx-controls-react-3.11.0.tgz", + "integrity": "sha512-1hTnOHpnlBpOTmeL+R/pYLUTHv6HKhjvvMT575WhQB6hqNGahy6KI98sggMyw6S/70mUIht1P7/utVZiAXQRgw==", + "requires": { + "@fluentui/react-hooks": "^8.2.6", + "@fluentui/react-northstar": "0.51.3", + "@fluentui/react-theme-provider": "^0.18.5", + "@fluentui/scheme-utilities": "^8.2.12", + "@fluentui/theme": "^2.6.6", + "@microsoft/mgt-react": "2.6.1", + "@microsoft/mgt-spfx": "2.6.1", + "@microsoft/sp-core-library": "1.15.2", + "@microsoft/sp-listview-extensibility": "1.15.2", + "@microsoft/sp-loader": "1.15.2", + "@microsoft/sp-lodash-subset": "1.15.2", + "@microsoft/sp-office-ui-fabric-core": "1.15.2", + "@microsoft/sp-property-pane": "1.15.2", + "@microsoft/sp-webpart-base": "1.15.2", + "@monaco-editor/loader": "^1.3.1", + "@pnp/sp": "2.5.0", + "@pnp/telemetry-js": "2.0.0", + "@popperjs/core": "2.5.4", + "@uifabric/icons": "7.3.0", + "adaptive-expressions": "^4.15.0", + "adaptivecards": "^2.10.0", + "adaptivecards-designer": "2.3.0", + "adaptivecards-templating": "^2.2.0", + "animate.css": "^4.1.1", + "chart.js": "2.9.4", + "color": "3.1.2", + "date-fns": "^2.22.1", + "he": "^1.2.0", + "lodash": "4.17.21", + "markdown-it": "^12.3.2", + "moment": "2.29.4", + "monaco-editor": "^0.32.1", + "nano-css": "^5.3.4", + "office-ui-fabric-react": "7.185.7", + "react": "16.13.1", + "react-accessible-accordion": "^3.3.3", + "react-dom": "16.13.1", + "react-mentions": "^4.3.0", + "react-quill": "1.3.5", + "regexify-string": "^1.0.16", + "spfx-uifabric-themes": "^0.9.0" + }, + "dependencies": { + "@fluentui/theme": { + "version": "2.6.17", + "resolved": "https://registry.npmjs.org/@fluentui/theme/-/theme-2.6.17.tgz", + "integrity": "sha512-9pxMhOugX3bwY86TresiR6UQNszylD4oiVCAj5s5li7zGos+psdOMrmz9LykIEn1mbAofT/XvRCYfiKECtHEpA==", + "requires": { + "@fluentui/merge-styles": "^8.5.3", + "@fluentui/set-version": "^8.2.2", + "@fluentui/utilities": "^8.13.2", + "tslib": "^2.1.0" + } + }, + "@uifabric/icons": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/@uifabric/icons/-/icons-7.3.0.tgz", + "integrity": "sha512-wbcR8fJce20sPjsK2bbTC/cAZfAOFuE4dd4LHw194+8H+/dqotsowrQVp5Lu8aaHGQk+fXoiZmUy30WA9cAG4Q==", + "requires": { + "@uifabric/set-version": "^7.0.2", + "@uifabric/styling": "^7.7.1", + "tslib": "^1.7.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "color": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/color/-/color-3.1.2.tgz", + "integrity": "sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg==", + "requires": { + "color-convert": "^1.9.1", + "color-string": "^1.5.2" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + } + } + }, + "@pnp/telemetry-js": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@pnp/telemetry-js/-/telemetry-js-2.0.0.tgz", + "integrity": "sha512-qFNm3mTerTnxgTR6c/4iMMt8EUKrQn5z0XG/IQtpNlp6m7KXRDFR87mQKeBVtSv2LhxGO0VNFndKJIibBw52zQ==", + "requires": { + "whatwg-fetch": "2.0.4" + }, + "dependencies": { + "whatwg-fetch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz", + "integrity": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==" + } + } + }, + "@pnpm/error": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@pnpm/error/-/error-1.4.0.tgz", + "integrity": "sha512-vxkRrkneBPVmP23kyjnYwVOtipwlSl6UfL+h+Xa3TrABJTz5rYBXemlTsU5BzST8U4pD7YDkTb3SQu+MMuIDKA==", + "dev": true + }, + "@pnpm/link-bins": { + "version": "5.3.25", + "resolved": "https://registry.npmjs.org/@pnpm/link-bins/-/link-bins-5.3.25.tgz", + "integrity": "sha512-9Xq8lLNRHFDqvYPXPgaiKkZ4rtdsm7izwM/cUsFDc5IMnG0QYIVBXQbgwhz2UvjUotbJrvfKLJaCfA3NGBnLDg==", + "dev": true, + "requires": { + "@pnpm/error": "1.4.0", + "@pnpm/package-bins": "4.1.0", + "@pnpm/read-modules-dir": "2.0.3", + "@pnpm/read-package-json": "4.0.0", + "@pnpm/read-project-manifest": "1.1.7", + "@pnpm/types": "6.4.0", + "@zkochan/cmd-shim": "^5.0.0", + "is-subdir": "^1.1.1", + "is-windows": "^1.0.2", + "mz": "^2.7.0", + "normalize-path": "^3.0.0", + "p-settle": "^4.1.1", + "ramda": "^0.27.1" + } + }, + "@pnpm/package-bins": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@pnpm/package-bins/-/package-bins-4.1.0.tgz", + "integrity": "sha512-57/ioGYLBbVRR80Ux9/q2i3y8Q+uQADc3c+Yse8jr/60YLOi3jcWz13e2Jy+ANYtZI258Qc5wk2X077rp0Ly/Q==", + "dev": true, + "requires": { + "@pnpm/types": "6.4.0", + "fast-glob": "^3.2.4", + "is-subdir": "^1.1.1" + } + }, + "@pnpm/read-modules-dir": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@pnpm/read-modules-dir/-/read-modules-dir-2.0.3.tgz", + "integrity": "sha512-i9OgRvSlxrTS9a2oXokhDxvQzDtfqtsooJ9jaGoHkznue5aFCTSrNZFQ6M18o8hC03QWfnxaKi0BtOvNkKu2+A==", + "dev": true, + "requires": { + "mz": "^2.7.0" + } + }, + "@pnpm/read-package-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@pnpm/read-package-json/-/read-package-json-4.0.0.tgz", + "integrity": "sha512-1cr2tEwe4YU6SI0Hmg+wnsr6yxBt2iJtqv6wrF84On8pS9hx4A2PLw3CIgbwxaG0b+ur5wzhNogwl4qD5FLFNg==", + "dev": true, + "requires": { + "@pnpm/error": "1.4.0", + "@pnpm/types": "6.4.0", + "load-json-file": "^6.2.0", + "normalize-package-data": "^3.0.2" + }, + "dependencies": { + "hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "load-json-file": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-6.2.0.tgz", + "integrity": "sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.15", + "parse-json": "^5.0.0", + "strip-bom": "^4.0.0", + "type-fest": "^0.6.0" + } + }, + "normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, + "requires": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + } + }, + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true + } + } + }, + "@pnpm/read-project-manifest": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/@pnpm/read-project-manifest/-/read-project-manifest-1.1.7.tgz", + "integrity": "sha512-tj8ExXZeDcMmMUj7D292ETe/RiEirr1X1wpT6Zy85z2MrFYoG9jfCJpps40OdZBNZBhxbuKtGPWKVSgXD0yrVw==", + "dev": true, + "requires": { + "@pnpm/error": "1.4.0", + "@pnpm/types": "6.4.0", + "@pnpm/write-project-manifest": "1.1.7", + "detect-indent": "^6.0.0", + "fast-deep-equal": "^3.1.3", + "graceful-fs": "4.2.4", + "is-windows": "^1.0.2", + "json5": "^2.1.3", + "parse-json": "^5.1.0", + "read-yaml-file": "^2.0.0", + "sort-keys": "^4.1.0", + "strip-bom": "^4.0.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", + "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==", + "dev": true + }, + "json5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "dev": true + } + } + }, + "@pnpm/types": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/@pnpm/types/-/types-6.4.0.tgz", + "integrity": "sha512-nco4+4sZqNHn60Y4VE/fbtlShCBqipyUO+nKRPvDHqLrecMW9pzHWMVRxk4nrMRoeowj3q0rX3GYRBa8lsHTAg==", + "dev": true + }, + "@pnpm/write-project-manifest": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/@pnpm/write-project-manifest/-/write-project-manifest-1.1.7.tgz", + "integrity": "sha512-OLkDZSqkA1mkoPNPvLFXyI6fb0enCuFji6Zfditi/CLAo9kmIhQFmEUDu4krSB8i908EljG8YwL5Xjxzm5wsWA==", + "dev": true, + "requires": { + "@pnpm/types": "6.4.0", + "json5": "^2.1.3", + "mz": "^2.7.0", + "write-file-atomic": "^3.0.3", + "write-yaml-file": "^4.1.3" + }, + "dependencies": { + "json5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "dev": true + } + } + }, + "@popperjs/core": { + "version": "2.5.4", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.5.4.tgz", + "integrity": "sha512-ZpKr+WTb8zsajqgDkvCEWgp6d5eJT6Q63Ng2neTbzBO76Lbe91vX/iVIW9dikq+Fs3yEo+ls4cxeXABD2LtcbQ==" + }, + "@quid/stylis-plugin-focus-visible": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@quid/stylis-plugin-focus-visible/-/stylis-plugin-focus-visible-4.0.0.tgz", + "integrity": "sha512-dS4Vl1D4NHN4gAiWxUQLPAN4k2NMmNpfujuAPU2JF5P/XX8OUD7svhM8f9TudWr8dVdWYjQEAMaRtSUcf4720w==" + }, + "@rushstack/debug-certificate-manager": { + "version": "1.1.72", + "resolved": "https://registry.npmjs.org/@rushstack/debug-certificate-manager/-/debug-certificate-manager-1.1.72.tgz", + "integrity": "sha512-PWa8w24gZS9whf7YP0eME6tHTIFfrcVX9QyXsDWmF20vHeTamqT9IK62xPdKQmf/Vp49yJq43Mty/B5HDJrmMw==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.51.1", + "node-forge": "~1.3.1", + "sudo": "~1.0.3" + }, + "dependencies": { + "@rushstack/node-core-library": { + "version": "3.51.1", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.51.1.tgz", + "integrity": "sha512-xLoUztvGpaT5CphDexDPt2WbBx8D68VS5tYOkwfr98p90y0f/wepgXlTA/q5MUeZGGucASiXKp5ysdD+GPYf9A==", + "dev": true, + "requires": { + "@types/node": "12.20.24", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "z-schema": "~5.0.2" + } + }, + "z-schema": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.4.tgz", + "integrity": "sha512-gm/lx3hDzJNcLwseIeQVm1UcwhWIKpSB4NqH89pTBtFns4k/HDHudsICtvG05Bvw/Mv3jMyk700y5dadueLHdA==", + "dev": true, + "requires": { + "commander": "^2.20.3", + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.7.0" + } + } + } + }, + "@rushstack/eslint-config": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-config/-/eslint-config-2.5.1.tgz", + "integrity": "sha512-pcDQ/fmJEIqe5oZiP84bYZ1N7QoDfd+5G+e7GIobOwM793dX/SdRKqcJvGlzyBB92eo6rG7/qRnP2VVQN2pdbQ==", + "dev": true, + "requires": { + "@rushstack/eslint-patch": "1.1.0", + "@rushstack/eslint-plugin": "0.8.4", + "@rushstack/eslint-plugin-packlets": "0.3.4", + "@rushstack/eslint-plugin-security": "0.2.4", + "@typescript-eslint/eslint-plugin": "~5.6.0", + "@typescript-eslint/experimental-utils": "~5.6.0", + "@typescript-eslint/parser": "~5.6.0", + "@typescript-eslint/typescript-estree": "~5.6.0", + "eslint-plugin-promise": "~6.0.0", + "eslint-plugin-react": "~7.27.1", + "eslint-plugin-tsdoc": "~0.2.14" + }, + "dependencies": { + "@typescript-eslint/experimental-utils": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.6.0.tgz", + "integrity": "sha512-VDoRf3Qj7+W3sS/ZBXZh3LBzp0snDLEgvp6qj0vOAIiAPM07bd5ojQ3CTzF/QFl5AKh7Bh1ycgj6lFBJHUt/DA==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.6.0", + "@typescript-eslint/types": "5.6.0", + "@typescript-eslint/typescript-estree": "5.6.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + } + }, + "@typescript-eslint/scope-manager": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.6.0.tgz", + "integrity": "sha512-1U1G77Hw2jsGWVsO2w6eVCbOg0HZ5WxL/cozVSTfqnL/eB9muhb8THsP0G3w+BB5xAHv9KptwdfYFAUfzcIh4A==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.6.0", + "@typescript-eslint/visitor-keys": "5.6.0" + } + }, + "@typescript-eslint/types": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.6.0.tgz", + "integrity": "sha512-OIZffked7mXv4mXzWU5MgAEbCf9ecNJBKi+Si6/I9PpTaj+cf2x58h2oHW5/P/yTnPkKaayfjhLvx+crnl5ubA==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.6.0.tgz", + "integrity": "sha512-92vK5tQaE81rK7fOmuWMrSQtK1IMonESR+RJR2Tlc7w4o0MeEdjgidY/uO2Gobh7z4Q1hhS94Cr7r021fMVEeA==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.6.0", + "@typescript-eslint/visitor-keys": "5.6.0", + "debug": "^4.3.2", + "globby": "^11.0.4", + "is-glob": "^4.0.3", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.6.0.tgz", + "integrity": "sha512-1p7hDp5cpRFUyE3+lvA74egs+RWSgumrBpzBCDzfTFv0aQ7lIeay80yU0hIxgAhwQ6PcasW35kaOCyDOv6O/Ng==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.6.0", + "eslint-visitor-keys": "^3.0.0" + } + } + } + }, + "@rushstack/eslint-patch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.1.0.tgz", + "integrity": "sha512-JLo+Y592QzIE+q7Dl2pMUtt4q8SKYI5jDrZxrozEQxnGVOyYE+GWK9eLkwTaeN9DDctlaRAQ3TBmzZ1qdLE30A==", + "dev": true + }, + "@rushstack/eslint-plugin": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-plugin/-/eslint-plugin-0.8.4.tgz", + "integrity": "sha512-c8cY9hvak+1EQUGlJxPihElFB/5FeQCGyULTGRLe5u6hSKKtXswRqc23DTo87ZMsGd4TaScPBRNKSGjU5dORkg==", + "dev": true, + "requires": { + "@rushstack/tree-pattern": "0.2.2", + "@typescript-eslint/experimental-utils": "~5.3.0" + }, + "dependencies": { + "@typescript-eslint/experimental-utils": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.3.1.tgz", + "integrity": "sha512-RgFn5asjZ5daUhbK5Sp0peq0SSMytqcrkNfU4pnDma2D8P3ElZ6JbYjY8IMSFfZAJ0f3x3tnO3vXHweYg0g59w==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.3.1", + "@typescript-eslint/types": "5.3.1", + "@typescript-eslint/typescript-estree": "5.3.1", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + } + }, + "@typescript-eslint/scope-manager": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.3.1.tgz", + "integrity": "sha512-XksFVBgAq0Y9H40BDbuPOTUIp7dn4u8oOuhcgGq7EoDP50eqcafkMVGrypyVGvDYHzjhdUCUwuwVUK4JhkMAMg==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.3.1", + "@typescript-eslint/visitor-keys": "5.3.1" + } + }, + "@typescript-eslint/types": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.3.1.tgz", + "integrity": "sha512-bG7HeBLolxKHtdHG54Uac750eXuQQPpdJfCYuw4ZI3bZ7+GgKClMWM8jExBtp7NSP4m8PmLRM8+lhzkYnSmSxQ==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.3.1.tgz", + "integrity": "sha512-PwFbh/PKDVo/Wct6N3w+E4rLZxUDgsoII/GrWM2A62ETOzJd4M6s0Mu7w4CWsZraTbaC5UQI+dLeyOIFF1PquQ==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.3.1", + "@typescript-eslint/visitor-keys": "5.3.1", + "debug": "^4.3.2", + "globby": "^11.0.4", + "is-glob": "^4.0.3", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.3.1.tgz", + "integrity": "sha512-3cHUzUuVTuNHx0Gjjt5pEHa87+lzyqOiHXy/Gz+SJOCW1mpw9xQHIIEwnKn+Thph1mgWyZ90nboOcSuZr/jTTQ==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.3.1", + "eslint-visitor-keys": "^3.0.0" + } + } + } + }, + "@rushstack/eslint-plugin-packlets": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-plugin-packlets/-/eslint-plugin-packlets-0.3.4.tgz", + "integrity": "sha512-OSA58EZCx4Dw15UDdvNYGGHziQmhiozKQiOqDjn8ZkrCM3oyJmI6dduSJi57BGlb/C4SpY7+/88MImId7Y5cxA==", + "dev": true, + "requires": { + "@rushstack/tree-pattern": "0.2.2", + "@typescript-eslint/experimental-utils": "~5.3.0" + }, + "dependencies": { + "@typescript-eslint/experimental-utils": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.3.1.tgz", + "integrity": "sha512-RgFn5asjZ5daUhbK5Sp0peq0SSMytqcrkNfU4pnDma2D8P3ElZ6JbYjY8IMSFfZAJ0f3x3tnO3vXHweYg0g59w==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.3.1", + "@typescript-eslint/types": "5.3.1", + "@typescript-eslint/typescript-estree": "5.3.1", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + } + }, + "@typescript-eslint/scope-manager": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.3.1.tgz", + "integrity": "sha512-XksFVBgAq0Y9H40BDbuPOTUIp7dn4u8oOuhcgGq7EoDP50eqcafkMVGrypyVGvDYHzjhdUCUwuwVUK4JhkMAMg==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.3.1", + "@typescript-eslint/visitor-keys": "5.3.1" + } + }, + "@typescript-eslint/types": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.3.1.tgz", + "integrity": "sha512-bG7HeBLolxKHtdHG54Uac750eXuQQPpdJfCYuw4ZI3bZ7+GgKClMWM8jExBtp7NSP4m8PmLRM8+lhzkYnSmSxQ==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.3.1.tgz", + "integrity": "sha512-PwFbh/PKDVo/Wct6N3w+E4rLZxUDgsoII/GrWM2A62ETOzJd4M6s0Mu7w4CWsZraTbaC5UQI+dLeyOIFF1PquQ==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.3.1", + "@typescript-eslint/visitor-keys": "5.3.1", + "debug": "^4.3.2", + "globby": "^11.0.4", + "is-glob": "^4.0.3", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.3.1.tgz", + "integrity": "sha512-3cHUzUuVTuNHx0Gjjt5pEHa87+lzyqOiHXy/Gz+SJOCW1mpw9xQHIIEwnKn+Thph1mgWyZ90nboOcSuZr/jTTQ==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.3.1", + "eslint-visitor-keys": "^3.0.0" + } + } + } + }, + "@rushstack/eslint-plugin-security": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-plugin-security/-/eslint-plugin-security-0.2.4.tgz", + "integrity": "sha512-MWvM7H4vTNHXIY/SFcFSVgObj5UD0GftBM8UcIE1vXrPwdVYXDgDYXrSXdx7scWS4LYKPLBVoB3v6/Trhm2wug==", + "dev": true, + "requires": { + "@rushstack/tree-pattern": "0.2.2", + "@typescript-eslint/experimental-utils": "~5.3.0" + }, + "dependencies": { + "@typescript-eslint/experimental-utils": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.3.1.tgz", + "integrity": "sha512-RgFn5asjZ5daUhbK5Sp0peq0SSMytqcrkNfU4pnDma2D8P3ElZ6JbYjY8IMSFfZAJ0f3x3tnO3vXHweYg0g59w==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.3.1", + "@typescript-eslint/types": "5.3.1", + "@typescript-eslint/typescript-estree": "5.3.1", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + } + }, + "@typescript-eslint/scope-manager": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.3.1.tgz", + "integrity": "sha512-XksFVBgAq0Y9H40BDbuPOTUIp7dn4u8oOuhcgGq7EoDP50eqcafkMVGrypyVGvDYHzjhdUCUwuwVUK4JhkMAMg==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.3.1", + "@typescript-eslint/visitor-keys": "5.3.1" + } + }, + "@typescript-eslint/types": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.3.1.tgz", + "integrity": "sha512-bG7HeBLolxKHtdHG54Uac750eXuQQPpdJfCYuw4ZI3bZ7+GgKClMWM8jExBtp7NSP4m8PmLRM8+lhzkYnSmSxQ==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.3.1.tgz", + "integrity": "sha512-PwFbh/PKDVo/Wct6N3w+E4rLZxUDgsoII/GrWM2A62ETOzJd4M6s0Mu7w4CWsZraTbaC5UQI+dLeyOIFF1PquQ==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.3.1", + "@typescript-eslint/visitor-keys": "5.3.1", + "debug": "^4.3.2", + "globby": "^11.0.4", + "is-glob": "^4.0.3", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.3.1.tgz", + "integrity": "sha512-3cHUzUuVTuNHx0Gjjt5pEHa87+lzyqOiHXy/Gz+SJOCW1mpw9xQHIIEwnKn+Thph1mgWyZ90nboOcSuZr/jTTQ==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.3.1", + "eslint-visitor-keys": "^3.0.0" + } + } + } + }, + "@rushstack/heft-config-file": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/@rushstack/heft-config-file/-/heft-config-file-0.8.4.tgz", + "integrity": "sha512-OFvezlWYFQlKSXXIIjuGlBwSIKIl7WXYQ48diK/J5WJWpdVaq/SLVzB3coAxNZPA/a7u+dbs1DcLORBa2e133Q==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.45.5", + "@rushstack/rig-package": "0.3.11", + "jsonpath-plus": "~4.0.0" + }, + "dependencies": { + "@rushstack/rig-package": { + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.3.11.tgz", + "integrity": "sha512-uI1/g5oQPtyrT9nStoyX/xgZSLa2b+srRFaDk3r1eqC7zA5th4/bvTGl2QfV3C9NcP+coSqmk5mFJkUfH6i3Lw==", + "dev": true, + "requires": { + "resolve": "~1.17.0", + "strip-json-comments": "~3.1.1" + } + } + } + }, + "@rushstack/loader-raw-script": { + "version": "1.3.228", + "resolved": "https://registry.npmjs.org/@rushstack/loader-raw-script/-/loader-raw-script-1.3.228.tgz", + "integrity": "sha512-yJPiwe4vCEmiZck9qUktYqVgExJV18C5wjO6Vv/l4ZWyI8WgYCei1eIcIJBtz//v3E18b8s6tKnSZDAUw1mhUQ==", + "requires": { + "loader-utils": "~1.1.0" + } + }, + "@rushstack/localization-plugin": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@rushstack/localization-plugin/-/localization-plugin-0.11.0.tgz", + "integrity": "sha512-csb0TpH6Flp70yii/WVYFKmgykx1h9WQpzYWDDZCpMqIlCo+TmwnCpJjNZpdFCpzqqQt1bux1sprelNaUh1Nag==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.45.5", + "@rushstack/typings-generator": "0.6.24", + "@types/node": "12.20.24", + "@types/tapable": "1.0.6", + "decache": "~4.5.1", + "loader-utils": "~1.1.0", + "lodash": "~4.17.15", + "minimatch": "~3.0.3", + "pseudolocale": "~1.1.0", + "xmldoc": "~1.1.2" + }, + "dependencies": { + "minimatch": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", + "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + } + } + }, + "@rushstack/module-minifier": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@rushstack/module-minifier/-/module-minifier-0.1.0.tgz", + "integrity": "sha512-hHrjM9wMfLjtRPHWvIJzCzRD2qTQGc2DseFdBkGB3/oaUwO8hHyVzyf2LSYjQChHlLYlaZNLLvk1f3g8UJ51dg==", + "dev": true, + "requires": { + "@rushstack/worker-pool": "0.1.0", + "@types/node": "12.20.24", + "serialize-javascript": "6.0.0", + "source-map": "~0.7.3", + "terser": "5.9.0" + }, + "dependencies": { + "serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true + }, + "terser": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.9.0.tgz", + "integrity": "sha512-h5hxa23sCdpzcye/7b8YqbE5OwKca/ni0RQz1uRX3tGh8haaGHqcuSqbGRybuAKNdntZ0mDgFNXPJ48xQ2RXKQ==", + "dev": true, + "requires": { + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.20" + } + } + } + }, + "@rushstack/module-minifier-plugin": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/@rushstack/module-minifier-plugin/-/module-minifier-plugin-0.9.0.tgz", + "integrity": "sha512-DsDeQ5crXB7tNZTPSkGQ74yOxiMrpNVYXCIXTAoUHCqk2T0+oSVaCKb12C8cIRIDRz+EjfLjAc529HqX/cT0Kw==", + "dev": true, + "requires": { + "@rushstack/module-minifier": "0.1.0", + "@rushstack/worker-pool": "0.1.0", + "@types/node": "12.20.24", + "@types/tapable": "1.0.6", + "tapable": "1.1.3" + } + }, + "@rushstack/node-core-library": { + "version": "3.45.5", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.45.5.tgz", + "integrity": "sha512-KbN7Hp9vH3bD3YJfv6RnVtzzTAwGYIBl7y2HQLY4WEQqRbvE3LgI78W9l9X+cTAXCX//p0EeoiUYNTFdqJrMZg==", + "requires": { + "@types/node": "12.20.24", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~5.0.2" + }, + "dependencies": { + "z-schema": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.4.tgz", + "integrity": "sha512-gm/lx3hDzJNcLwseIeQVm1UcwhWIKpSB4NqH89pTBtFns4k/HDHudsICtvG05Bvw/Mv3jMyk700y5dadueLHdA==", + "requires": { + "commander": "^2.20.3", + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.7.0" + } + } + } + }, + "@rushstack/package-deps-hash": { + "version": "3.2.17", + "resolved": "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-3.2.17.tgz", + "integrity": "sha512-VglZ9hB2ZgG4ov0dCTA9ceTl4DNSJyl2xX68BMUu/vU54t709yHSorx8iKhzYHD1NiF1QA0XfZhDxZWL/m01Nw==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.45.5" + } + }, + "@rushstack/rig-package": { + "version": "0.2.12", + "resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.2.12.tgz", + "integrity": "sha512-nbePcvF8hQwv0ql9aeQxcaMPK/h1OLAC00W7fWCRWIvD2MchZOE8jumIIr66HGrfG2X1sw++m/ZYI4D+BM5ovQ==", + "dev": true, + "requires": { + "resolve": "~1.17.0", + "strip-json-comments": "~3.1.1" + } + }, + "@rushstack/rush-amazon-s3-build-cache-plugin": { + "version": "5.70.0", + "resolved": "https://registry.npmjs.org/@rushstack/rush-amazon-s3-build-cache-plugin/-/rush-amazon-s3-build-cache-plugin-5.70.0.tgz", + "integrity": "sha512-Ky3qmG1+oH1J4Lm5UbbPzDzh7ThTW8jO+mD4lVYwrsbSG7nWEiLSNXKPYVqak2eKQaMJR8HoQ1J8CjPagxBNhA==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.45.5", + "@rushstack/rush-sdk": "5.70.0", + "https-proxy-agent": "~5.0.0", + "node-fetch": "2.6.7" + } + }, + "@rushstack/rush-azure-storage-build-cache-plugin": { + "version": "5.70.0", + "resolved": "https://registry.npmjs.org/@rushstack/rush-azure-storage-build-cache-plugin/-/rush-azure-storage-build-cache-plugin-5.70.0.tgz", + "integrity": "sha512-u8g73HN8LWRcsuxQro0gC9ORew3Y3I7OgNMIbOIpJqwaU2qstZzCwZwxHD4o6UeIr4vUZp0/x/9pKXFFKUdtfA==", + "dev": true, + "requires": { + "@azure/identity": "~1.0.0", + "@azure/storage-blob": "~12.3.0", + "@rushstack/node-core-library": "3.45.5", + "@rushstack/rush-sdk": "5.70.0", + "@rushstack/terminal": "0.3.41" + } + }, + "@rushstack/rush-sdk": { + "version": "5.70.0", + "resolved": "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.70.0.tgz", + "integrity": "sha512-44yzEnL9koY/BeRVf8FCXVvLXMCcthHbbKOiIsAc+wjwjJ7rO5i+rGxUR5mdHB6plL1Rv3d4/ljeJhkEZjEPWg==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.45.5", + "@types/node-fetch": "1.6.9", + "tapable": "2.2.1" + }, + "dependencies": { + "tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true + } + } + }, + "@rushstack/set-webpack-public-path-plugin": { + "version": "3.3.37", + "resolved": "https://registry.npmjs.org/@rushstack/set-webpack-public-path-plugin/-/set-webpack-public-path-plugin-3.3.37.tgz", + "integrity": "sha512-PGKZDbA68SxdZVfW3weyvqbO6vN9eir2Yqr5QUqwtDZ1t1KTfzTV2aKPLVMiwq4qsxkp+0GfXQtOwXlZ6nJHTA==", + "dev": true, + "requires": { + "@rushstack/webpack-plugin-utilities": "0.1.4" + } + }, + "@rushstack/stream-collator": { + "version": "4.0.172", + "resolved": "https://registry.npmjs.org/@rushstack/stream-collator/-/stream-collator-4.0.172.tgz", + "integrity": "sha512-lYwRDlsEB6dZMPzF4OJ5BsrLXsfF2NCV/XjONYW1q0lPFxFdxlYANJt746VlSU6p3ykD2OXb0Veywxrgf54qIA==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.45.5", + "@rushstack/terminal": "0.3.41" + } + }, + "@rushstack/terminal": { + "version": "0.3.41", + "resolved": "https://registry.npmjs.org/@rushstack/terminal/-/terminal-0.3.41.tgz", + "integrity": "sha512-GfDZO4eYTHVXzNUAUY4poxTQ+MmkTmnhSq56J0zDolg5IZb/wVXEj4oeEnOXwlr/3LVE6sBv5yIkCstIo+u5Nw==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.45.5", + "@types/node": "12.20.24", + "wordwrap": "~1.0.0" + } + }, + "@rushstack/tree-pattern": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@rushstack/tree-pattern/-/tree-pattern-0.2.2.tgz", + "integrity": "sha512-0KdqI7hGtVIlxobOBLWet0WGiD70V/QoYQr5A2ikACeQmIaN4WT6Fn9BcvgwgaSIMcazEcD8ql7Fb9N4dKdQlA==", + "dev": true + }, + "@rushstack/ts-command-line": { + "version": "4.7.10", + "resolved": "https://registry.npmjs.org/@rushstack/ts-command-line/-/ts-command-line-4.7.10.tgz", + "integrity": "sha512-8t042g8eerypNOEcdpxwRA3uCmz0duMo21rG4Z2mdz7JxJeylDmzjlU3wDdef2t3P1Z61JCdZB6fbm1Mh0zi7w==", + "dev": true, + "requires": { + "@types/argparse": "1.0.38", + "argparse": "~1.0.9", + "colors": "~1.2.1", + "string-argv": "~0.3.1" + } + }, + "@rushstack/typings-generator": { + "version": "0.6.24", + "resolved": "https://registry.npmjs.org/@rushstack/typings-generator/-/typings-generator-0.6.24.tgz", + "integrity": "sha512-5u49+43B+TCSQaCwEJRtaqarjhXBfI8ziWINnUpqtoTWZ+LLMC15QdgamjeyfKeFdAvFrFCIY3tlosfEzA5CeQ==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.45.5", + "@types/node": "12.20.24", + "chokidar": "~3.4.0", + "glob": "~7.0.5" + }, + "dependencies": { + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "chokidar": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz", + "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==", + "dev": true, + "requires": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "fsevents": "~2.1.2", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + } + }, + "fsevents": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz", + "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==", + "dev": true, + "optional": true + }, + "glob": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", + "integrity": "sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.2", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "readdirp": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", + "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + } + } + }, + "@rushstack/webpack-plugin-utilities": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@rushstack/webpack-plugin-utilities/-/webpack-plugin-utilities-0.1.4.tgz", + "integrity": "sha512-CXCSJsI8nOH1tMXSjzTgbl6rIVhByizor5phuzRIqYTkWHdidvjb/HzQ97AB5gRD0OlYp4FhePUMArBDppUBhg==", + "dev": true + }, + "@rushstack/worker-pool": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@rushstack/worker-pool/-/worker-pool-0.1.0.tgz", + "integrity": "sha512-68qskCLruYWSLZDIRhYGklAXo8+lVm3drEQ3uQVXNCxb/Ow1byEDvtA0AaJleaZ/ZXZ5PN+Ct8WTzcD+ZxkUrg==", + "dev": true, + "requires": { + "@types/node": "12.20.24" + } + }, + "@sinonjs/commons": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", + "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + }, + "@types/adal-angular": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/adal-angular/-/adal-angular-1.0.1.tgz", + "integrity": "sha512-2sRGxJYrluhvIz8ae98i5k5woe9Fics4dMFHTcNfY2xAkj5QGZor+sfZzlgM58Fpw7Kklau9Gn6OhgJP25dKug==" + }, + "@types/anymatch": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/anymatch/-/anymatch-3.0.0.tgz", + "integrity": "sha512-qLChUo6yhpQ9k905NwL74GU7TxH+9UODwwQ6ICNI+O6EDMExqH/Cv9NsbmcZ7yC/rRXJ/AHCzfgjsFRY5fKjYw==", + "dev": true, + "requires": { + "anymatch": "*" + } + }, + "@types/argparse": { + "version": "1.0.38", + "resolved": "https://registry.npmjs.org/@types/argparse/-/argparse-1.0.38.tgz", + "integrity": "sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==", + "dev": true + }, + "@types/atob-lite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/atob-lite/-/atob-lite-2.0.0.tgz", + "integrity": "sha512-7bjymPR7Ffa1/L3HskkaxMgTQDtwFObbISzHm9g3T12VyD89IiHS3BBVojlQHyZRiIilzdh0WT1gwwgyyBtLGQ==" + }, + "@types/babel__core": { + "version": "7.1.19", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz", + "integrity": "sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dev": true, + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.18.1", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.1.tgz", + "integrity": "sha512-FSdLaZh2UxaMuLp9lixWaHq/golWTRWOnRsAXzDTDSDOQLuZb1nsdCt6pJSPWSEQt2eFZ2YVk3oYhn+1kLMeMA==", + "dev": true, + "requires": { + "@babel/types": "^7.3.0" + } + }, + "@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "dev": true, + "requires": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "@types/btoa-lite": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/btoa-lite/-/btoa-lite-1.0.0.tgz", + "integrity": "sha512-wJsiX1tosQ+J5+bY5LrSahHxr2wT+uME5UDwdN1kg4frt40euqA+wzECkmq4t5QbveHiJepfdThgQrPw6KiSlg==" + }, + "@types/chalk": { + "version": "0.4.31", + "resolved": "https://registry.npmjs.org/@types/chalk/-/chalk-0.4.31.tgz", + "integrity": "sha512-nF0fisEPYMIyfrFgabFimsz9Lnuu9MwkNrrlATm2E4E46afKDyeelT+8bXfw1VSc7sLBxMxRgT7PxTC2JcqN4Q==", + "dev": true + }, + "@types/classnames": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@types/classnames/-/classnames-2.3.1.tgz", + "integrity": "sha512-zeOWb0JGBoVmlQoznvqXbE0tEC/HONsnoUNH19Hc96NFsTAwTXbTqb8FMYkru1F/iqp7a18Ws3nWJvtA1sHD1A==", + "requires": { + "classnames": "*" + } + }, + "@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/connect-history-api-fallback": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz", + "integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==", + "dev": true, + "requires": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "@types/copy-webpack-plugin": { + "version": "6.4.3", + "resolved": "https://registry.npmjs.org/@types/copy-webpack-plugin/-/copy-webpack-plugin-6.4.3.tgz", + "integrity": "sha512-yk7QO2/WrtkDLcsqQXfjU3EIYzggNHVl5y6gnxfMtCPB+bxVUIUzwb1BNxlk+78wENoh9ZgkVSNqn80T9rqO8w==", + "dev": true, + "requires": { + "@types/webpack": "^4" + } + }, + "@types/eslint": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz", + "integrity": "sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==", + "dev": true, + "requires": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "@types/estree": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", + "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==", + "dev": true + }, + "@types/express": { + "version": "4.17.14", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.14.tgz", + "integrity": "sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==", + "dev": true, + "requires": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.18", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "@types/express-serve-static-core": { + "version": "4.17.31", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.31.tgz", + "integrity": "sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "@types/glob": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-8.0.0.tgz", + "integrity": "sha512-l6NQsDDyQUVeoTynNpC9uRvCUint/gSUXQA2euwmTuWGvPY5LSDUu6tkCtJB2SvGQlJQzLaKqcGZP4//7EDveA==", + "dev": true, + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "@types/glob-stream": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@types/glob-stream/-/glob-stream-6.1.1.tgz", + "integrity": "sha512-AGOUTsTdbPkRS0qDeyeS+6KypmfVpbT5j23SN8UPG63qjKXNKjXn6V9wZUr8Fin0m9l8oGYaPK8b2WUMF8xI1A==", + "dev": true, + "requires": { + "@types/glob": "*", + "@types/node": "*" + } + }, + "@types/graceful-fs": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", + "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/gulp": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@types/gulp/-/gulp-4.0.6.tgz", + "integrity": "sha512-0E8/iV/7FKWyQWSmi7jnUvgXXgaw+pfAzEB06Xu+l0iXVJppLbpOye5z7E2klw5akXd+8kPtYuk65YBcZPM4ow==", + "dev": true, + "requires": { + "@types/undertaker": "*", + "@types/vinyl-fs": "*", + "chokidar": "^2.1.2" + } + }, + "@types/http-proxy": { + "version": "1.17.9", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", + "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "@types/jest": { + "version": "25.2.1", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-25.2.1.tgz", + "integrity": "sha512-msra1bCaAeEdkSyA0CZ6gW1ukMIvZ5YoJkdXw/qhQdsuuDlFTcEUrUw8CLCPt2rVRUfXlClVvK2gvPs9IokZaA==", + "dev": true, + "requires": { + "jest-diff": "^25.2.1", + "pretty-format": "^25.2.1" + } + }, + "@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "dev": true + }, + "@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 + }, + "@types/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@types/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-y3UaQ1rIkp2Nzv67Wa/MS7GJM958CDyWkMmnFneTRcWKlaSPreESrwruQ2WhEapQHCV6HJ2Pj62k0BB7mtQNHw==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/webpack": "^4" + } + }, + "@types/lodash": { + "version": "4.14.117", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.117.tgz", + "integrity": "sha512-xyf2m6tRbz8qQKcxYZa7PA4SllYcay+eh25DN3jmNYY6gSTL7Htc/bttVdkqj2wfJGbeWlQiX8pIyJpKU+tubw==" + }, + "@types/lodash.isequal": { + "version": "4.5.6", + "resolved": "https://registry.npmjs.org/@types/lodash.isequal/-/lodash.isequal-4.5.6.tgz", + "integrity": "sha512-Ww4UGSe3DmtvLLJm2F16hDwEQSv7U0Rr8SujLUA2wHI2D2dm8kPu6Et+/y303LfjTIwSBKXB/YTUcAKpem/XEg==", + "requires": { + "@types/lodash": "*" + } + }, + "@types/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@types/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw==" + }, + "@types/mime": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", + "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==", + "dev": true + }, + "@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", + "dev": true + }, + "@types/node": { + "version": "12.20.24", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.24.tgz", + "integrity": "sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==" + }, + "@types/node-fetch": { + "version": "1.6.9", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-1.6.9.tgz", + "integrity": "sha512-n2r6WLoY7+uuPT7pnEtKJCmPUGyJ+cbyBR8Avnu4+m1nzz7DwBVuyIvvlBzCZ/nrpC7rIgb3D6pNavL7rFEa9g==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/node-notifier": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@types/node-notifier/-/node-notifier-8.0.2.tgz", + "integrity": "sha512-5v0PhPv0AManpxT7W25Zipmj/Lxp1WqfkcpZHyqSloB+gGoAHRBuzhrCelFKrPvNF5ki3gAcO4kxaGO2/21u8g==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/normalize-package-data": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", + "dev": true + }, + "@types/office-js": { + "version": "1.0.36", + "resolved": "https://registry.npmjs.org/@types/office-js/-/office-js-1.0.36.tgz", + "integrity": "sha512-v5jOXCPS0nbbuVzZThhDMzttuJrpzzvx1GsPo5Qed8Cs9uzMwEV1vdkKN5zLFnAUlEF4s8Szl9KXnhnSvH89Kw==" + }, + "@types/orchestrator": { + "version": "0.0.30", + "resolved": "https://registry.npmjs.org/@types/orchestrator/-/orchestrator-0.0.30.tgz", + "integrity": "sha512-rT9So631KbmirIGsZ5m6T15FKHqiWhYRULdl03l/WBezzZ8wwhYTS2zyfHjsvAGYFVff1wtmGFd0akRCBDSZrA==", + "dev": true, + "requires": { + "@types/q": "*" + } + }, + "@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "dev": true + }, + "@types/prettier": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-1.19.1.tgz", + "integrity": "sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ==", + "dev": true + }, + "@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==", + "dev": true + }, + "@types/q": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", + "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==", + "dev": true + }, + "@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "dev": true + }, + "@types/quill": { + "version": "1.3.10", + "resolved": "https://registry.npmjs.org/@types/quill/-/quill-1.3.10.tgz", + "integrity": "sha512-IhW3fPW+bkt9MLNlycw8u8fWb7oO7W5URC9MfZYHBlA24rex9rs23D5DETChu1zvgVdc5ka64ICjJOgQMr6Shw==", + "requires": { + "parchment": "^1.1.2" + } + }, + "@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "dev": true + }, + "@types/react": { + "version": "16.9.51", + "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.51.tgz", + "integrity": "sha512-lQa12IyO+DMlnSZ3+AGHRUiUcpK47aakMMoBG8f7HGxJT8Yfe+WE128HIXaHOHVPReAW0oDS3KAI0JI2DDe1PQ==", + "dev": true, + "requires": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "@types/react-dom": { + "version": "16.9.8", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.8.tgz", + "integrity": "sha512-ykkPQ+5nFknnlU6lDd947WbQ6TE3NNzbQAkInC2EKY1qeYdTKp7onFusmYZb+ityzx2YviqT6BXSu+LyWWJwcA==", + "dev": true, + "requires": { + "@types/react": "*" + } + }, + "@types/requirejs": { + "version": "2.1.29", + "resolved": "https://registry.npmjs.org/@types/requirejs/-/requirejs-2.1.29.tgz", + "integrity": "sha512-61MNgoBY6iEsHhFGiElSjEu8HbHOahJLGh9BdGSfzgAN+2qOuFJKuG3f7F+/ggKr+0yEM3Y4fCWAgxU6es0otg==" + }, + "@types/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-iotVxtCCsPLRAvxMFFgxL8HD2l4mAZ2Oin7/VJ2ooWO0VOK4EGOGmZWZn1uCq7RofR3I/1IOSjCHlFT71eVK0Q==", + "dev": true + }, + "@types/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==", + "dev": true, + "requires": { + "@types/mime": "*", + "@types/node": "*" + } + }, + "@types/source-list-map": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==", + "dev": true + }, + "@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", + "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==", + "dev": true + }, + "@types/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-xevGOReSYGM7g/kUBZzPqCrR/KYAo+F0yiPc85WFTJa0MSLtyFTVTU6cJu/aV4mid7IffDIWqo69THF2o4JiEQ==", + "dev": true + }, + "@types/strip-json-comments": { + "version": "0.0.30", + "resolved": "https://registry.npmjs.org/@types/strip-json-comments/-/strip-json-comments-0.0.30.tgz", + "integrity": "sha512-7NQmHra/JILCd1QqpSzl8+mJRc8ZHz3uDm8YV1Ks9IhK0epEiTw8aIErbvH9PI+6XbqhyIQy3462nEsn7UVzjQ==", + "dev": true + }, + "@types/tapable": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.6.tgz", + "integrity": "sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==", + "dev": true + }, + "@types/through2": { + "version": "2.0.32", + "resolved": "https://registry.npmjs.org/@types/through2/-/through2-2.0.32.tgz", + "integrity": "sha512-VYclBauj55V0qPDHs9QMdKBdxdob6zta8mcayjTyOzlRgl+PNERnvNol99W1PBnvQXaYoTTqSce97rr9dz9oXQ==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/tunnel": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/@types/tunnel/-/tunnel-0.0.1.tgz", + "integrity": "sha512-AOqu6bQu5MSWwYvehMXLukFHnupHrpZ8nvgae5Ggie9UwzDR1CCwoXgSSWNZJuyOlCdfdsWMA5F2LlmvyoTv8A==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/uglify-js": { + "version": "3.17.0", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.17.0.tgz", + "integrity": "sha512-3HO6rm0y+/cqvOyA8xcYLweF0TKXlAxmQASjbOi49Co51A1N4nR4bEwBgRoD9kNM+rqFGArjKr654SLp2CoGmQ==", + "dev": true, + "requires": { + "source-map": "^0.6.1" + } + }, + "@types/undertaker": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@types/undertaker/-/undertaker-1.2.8.tgz", + "integrity": "sha512-gW3PRqCHYpo45XFQHJBhch7L6hytPsIe0QeLujlnFsjHPnXLhJcPdN6a9368d7aIQgH2I/dUTPFBlGeSNA3qOg==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/undertaker-registry": "*", + "async-done": "~1.3.2" + } + }, + "@types/undertaker-registry": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/undertaker-registry/-/undertaker-registry-1.0.1.tgz", + "integrity": "sha512-Z4TYuEKn9+RbNVk1Ll2SS4x1JeLHecolIbM/a8gveaHsW0Hr+RQMraZACwTO2VD7JvepgA6UO1A1VrbktQrIbQ==", + "dev": true + }, + "@types/vinyl": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.3.tgz", + "integrity": "sha512-hrT6xg16CWSmndZqOTJ6BGIn2abKyTw0B58bI+7ioUoj3Sma6u8ftZ1DTI2yCaJamOVGLOnQWiPH3a74+EaqTA==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/vinyl-fs": { + "version": "2.4.12", + "resolved": "https://registry.npmjs.org/@types/vinyl-fs/-/vinyl-fs-2.4.12.tgz", + "integrity": "sha512-LgBpYIWuuGsihnlF+OOWWz4ovwCYlT03gd3DuLwex50cYZLmX3yrW+sFF9ndtmh7zcZpS6Ri47PrIu+fV+sbXw==", + "dev": true, + "requires": { + "@types/glob-stream": "*", + "@types/node": "*", + "@types/vinyl": "*" + } + }, + "@types/webpack": { + "version": "4.41.24", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.24.tgz", + "integrity": "sha512-1A0MXPwZiMOD3DPMuOKUKcpkdPo8Lq33UGggZ7xio6wJ/jV1dAu5cXDrOfGDnldUroPIRLsr/DT43/GqOA4RFQ==", + "dev": true, + "requires": { + "@types/anymatch": "*", + "@types/node": "*", + "@types/tapable": "*", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "source-map": "^0.6.0" + } + }, + "@types/webpack-dev-server": { + "version": "3.11.4", + "resolved": "https://registry.npmjs.org/@types/webpack-dev-server/-/webpack-dev-server-3.11.4.tgz", + "integrity": "sha512-DCKORHjqNNVuMIDWFrlljftvc9CL0+09p3l7lBpb8dRqgN5SmvkWCY4MPKxoI6wJgdRqohmoNbptkxqSKAzLRg==", + "dev": true, + "requires": { + "@types/connect-history-api-fallback": "*", + "@types/express": "*", + "@types/serve-static": "*", + "@types/webpack": "^4", + "http-proxy-middleware": "^1.0.0" + }, + "dependencies": { + "http-proxy-middleware": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-1.3.1.tgz", + "integrity": "sha512-13eVVDYS4z79w7f1+NPllJtOQFx/FdUW4btIvVRMaRlUY9VGstAbo5MOhLEuUgZFRHn3x50ufn25zkj/boZnEg==", + "dev": true, + "requires": { + "@types/http-proxy": "^1.17.5", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + } + }, + "is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "dev": true + } + } + }, + "@types/webpack-env": { + "version": "1.15.3", + "resolved": "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.15.3.tgz", + "integrity": "sha512-5oiXqR7kwDGZ6+gmzIO2lTC+QsriNuQXZDWNYRV3l2XRN/zmPgnC21DLSx2D05zvD8vnXW6qUg7JnXZ4I6qLVQ==", + "dev": true + }, + "@types/webpack-sources": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.0.tgz", + "integrity": "sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true + } + } + }, + "@types/xmldom": { + "version": "0.1.31", + "resolved": "https://registry.npmjs.org/@types/xmldom/-/xmldom-0.1.31.tgz", + "integrity": "sha512-bVy7s0nvaR5D1mT1a8ZkByHWNOGb6Vn4yi5TWhEdmyKlAG+08SA7Md6+jH+tYmMLueAwNeWvHHpeKrr6S4c4BA==" + }, + "@types/yargs": { + "version": "0.0.34", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-0.0.34.tgz", + "integrity": "sha512-Rrj9a2bqpcPKGYCIyQGkD24PeCZG3ow58cgaAtI4jwsUMe/9hDaCInMpXZ+PaUK3cVwsFUstpOEkSfMdQpCnYA==", + "dev": true + }, + "@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true + }, + "@typescript-eslint/eslint-plugin": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.6.0.tgz", + "integrity": "sha512-MIbeMy5qfLqtgs1hWd088k1hOuRsN9JrHUPwVVKCD99EOUqScd7SrwoZl4Gso05EAP9w1kvLWUVGJOVpRPkDPA==", + "dev": true, + "requires": { + "@typescript-eslint/experimental-utils": "5.6.0", + "@typescript-eslint/scope-manager": "5.6.0", + "debug": "^4.3.2", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.1.8", + "regexpp": "^3.2.0", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "dependencies": { + "@typescript-eslint/experimental-utils": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.6.0.tgz", + "integrity": "sha512-VDoRf3Qj7+W3sS/ZBXZh3LBzp0snDLEgvp6qj0vOAIiAPM07bd5ojQ3CTzF/QFl5AKh7Bh1ycgj6lFBJHUt/DA==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.6.0", + "@typescript-eslint/types": "5.6.0", + "@typescript-eslint/typescript-estree": "5.6.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + } + }, + "@typescript-eslint/scope-manager": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.6.0.tgz", + "integrity": "sha512-1U1G77Hw2jsGWVsO2w6eVCbOg0HZ5WxL/cozVSTfqnL/eB9muhb8THsP0G3w+BB5xAHv9KptwdfYFAUfzcIh4A==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.6.0", + "@typescript-eslint/visitor-keys": "5.6.0" + } + }, + "@typescript-eslint/types": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.6.0.tgz", + "integrity": "sha512-OIZffked7mXv4mXzWU5MgAEbCf9ecNJBKi+Si6/I9PpTaj+cf2x58h2oHW5/P/yTnPkKaayfjhLvx+crnl5ubA==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.6.0.tgz", + "integrity": "sha512-92vK5tQaE81rK7fOmuWMrSQtK1IMonESR+RJR2Tlc7w4o0MeEdjgidY/uO2Gobh7z4Q1hhS94Cr7r021fMVEeA==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.6.0", + "@typescript-eslint/visitor-keys": "5.6.0", + "debug": "^4.3.2", + "globby": "^11.0.4", + "is-glob": "^4.0.3", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.6.0.tgz", + "integrity": "sha512-1p7hDp5cpRFUyE3+lvA74egs+RWSgumrBpzBCDzfTFv0aQ7lIeay80yU0hIxgAhwQ6PcasW35kaOCyDOv6O/Ng==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.6.0", + "eslint-visitor-keys": "^3.0.0" + } + } + } + }, + "@typescript-eslint/experimental-utils": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.20.0.tgz", + "integrity": "sha512-w5qtx2Wr9x13Dp/3ic9iGOGmVXK5gMwyc8rwVgZU46K9WTjPZSyPvdER9Ycy+B5lNHvoz+z2muWhUvlTpQeu+g==", + "dev": true, + "requires": { + "@typescript-eslint/utils": "5.20.0" + } + }, + "@typescript-eslint/parser": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.6.0.tgz", + "integrity": "sha512-YVK49NgdUPQ8SpCZaOpiq1kLkYRPMv9U5gcMrywzI8brtwZjr/tG3sZpuHyODt76W/A0SufNjYt9ZOgrC4tLIQ==", + "dev": true, + "requires": { + "@typescript-eslint/scope-manager": "5.6.0", + "@typescript-eslint/types": "5.6.0", + "@typescript-eslint/typescript-estree": "5.6.0", + "debug": "^4.3.2" + }, + "dependencies": { + "@typescript-eslint/scope-manager": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.6.0.tgz", + "integrity": "sha512-1U1G77Hw2jsGWVsO2w6eVCbOg0HZ5WxL/cozVSTfqnL/eB9muhb8THsP0G3w+BB5xAHv9KptwdfYFAUfzcIh4A==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.6.0", + "@typescript-eslint/visitor-keys": "5.6.0" + } + }, + "@typescript-eslint/types": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.6.0.tgz", + "integrity": "sha512-OIZffked7mXv4mXzWU5MgAEbCf9ecNJBKi+Si6/I9PpTaj+cf2x58h2oHW5/P/yTnPkKaayfjhLvx+crnl5ubA==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.6.0.tgz", + "integrity": "sha512-92vK5tQaE81rK7fOmuWMrSQtK1IMonESR+RJR2Tlc7w4o0MeEdjgidY/uO2Gobh7z4Q1hhS94Cr7r021fMVEeA==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.6.0", + "@typescript-eslint/visitor-keys": "5.6.0", + "debug": "^4.3.2", + "globby": "^11.0.4", + "is-glob": "^4.0.3", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.6.0.tgz", + "integrity": "sha512-1p7hDp5cpRFUyE3+lvA74egs+RWSgumrBpzBCDzfTFv0aQ7lIeay80yU0hIxgAhwQ6PcasW35kaOCyDOv6O/Ng==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.6.0", + "eslint-visitor-keys": "^3.0.0" + } + } + } + }, + "@typescript-eslint/scope-manager": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.20.0.tgz", + "integrity": "sha512-h9KtuPZ4D/JuX7rpp1iKg3zOH0WNEa+ZIXwpW/KWmEFDxlA/HSfCMhiyF1HS/drTICjIbpA6OqkAhrP/zkCStg==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.20.0", + "@typescript-eslint/visitor-keys": "5.20.0" + } + }, + "@typescript-eslint/types": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.20.0.tgz", + "integrity": "sha512-+d8wprF9GyvPwtoB4CxBAR/s0rpP25XKgnOvMf/gMXYDvlUC3rPFHupdTQ/ow9vn7UDe5rX02ovGYQbv/IUCbg==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.20.0.tgz", + "integrity": "sha512-36xLjP/+bXusLMrT9fMMYy1KJAGgHhlER2TqpUVDYUQg4w0q/NW/sg4UGAgVwAqb8V4zYg43KMUpM8vV2lve6w==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.20.0", + "@typescript-eslint/visitor-keys": "5.20.0", + "debug": "^4.3.2", + "globby": "^11.0.4", + "is-glob": "^4.0.3", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/utils": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.20.0.tgz", + "integrity": "sha512-lHONGJL1LIO12Ujyx8L8xKbwWSkoUKFSO+0wDAqGXiudWB2EO7WEUT+YZLtVbmOmSllAjLb9tpoIPwpRe5Tn6w==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.20.0", + "@typescript-eslint/types": "5.20.0", + "@typescript-eslint/typescript-estree": "5.20.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.20.0.tgz", + "integrity": "sha512-1flRpNF+0CAQkMNlTJ6L/Z5jiODG/e5+7mk6XwtPOUS3UrTz3UOiAg9jG2VtKsWI6rZQfy4C6a232QNRZTRGlg==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.20.0", + "eslint-visitor-keys": "^3.0.0" + } + }, + "@uifabric/foundation": { + "version": "7.10.11", + "resolved": "https://registry.npmjs.org/@uifabric/foundation/-/foundation-7.10.11.tgz", + "integrity": "sha512-0tqJSzSU6leqWadCAd7KykFiePeQWfwb3CKZO14Z1EEmyOHuqzm4mGIt+KlDQgYdsD3VlSRA0Kx4tbPM1CaTkQ==", + "requires": { + "@uifabric/merge-styles": "^7.20.0", + "@uifabric/set-version": "^7.0.24", + "@uifabric/styling": "^7.22.3", + "@uifabric/utilities": "^7.38.0", + "tslib": "^1.10.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@uifabric/icons": { + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/@uifabric/icons/-/icons-7.7.2.tgz", + "integrity": "sha512-3f223BZ5TXTF37J7lG+saGBY7U8vAi5HyMP58ccIoUafOj5551h5sovPFD/hVIYzYFhvT+/VpbUzF3vw+RARHA==", + "requires": { + "@uifabric/set-version": "^7.0.24", + "@uifabric/styling": "^7.20.2", + "@uifabric/utilities": "^7.34.1", + "tslib": "^1.10.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@uifabric/merge-styles": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@uifabric/merge-styles/-/merge-styles-7.20.0.tgz", + "integrity": "sha512-7u1oF1lGmNDzOfE9UhULAO9xcEkZV2DDlKlbeIHuXQUGG480drfDWqNPk5LuGNx4ogvH9qSNPbXeGLLZYBb4wQ==", + "requires": { + "@uifabric/set-version": "^7.0.24", + "tslib": "^1.10.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@uifabric/react-hooks": { + "version": "7.16.2", + "resolved": "https://registry.npmjs.org/@uifabric/react-hooks/-/react-hooks-7.16.2.tgz", + "integrity": "sha512-vlWRO73o0jLua0YaVMOZr9VrjiyQRwILi8yoe3Tm8xT8PoDzdsJt4lHNxnXW865xzAYWiUqrlQuds7NiaZsaOg==", + "requires": { + "@fluentui/react-window-provider": "^1.0.4", + "@uifabric/set-version": "^7.0.24", + "@uifabric/utilities": "^7.38.0", + "tslib": "^1.10.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@uifabric/set-version": { + "version": "7.0.24", + "resolved": "https://registry.npmjs.org/@uifabric/set-version/-/set-version-7.0.24.tgz", + "integrity": "sha512-t0Pt21dRqdC707/ConVJC0WvcQ/KF7tKLU8AZY7YdjgJpMHi1c0C427DB4jfUY19I92f60LOQyhJ4efH+KpFEg==", + "requires": { + "tslib": "^1.10.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@uifabric/styling": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@uifabric/styling/-/styling-7.22.3.tgz", + "integrity": "sha512-CDahF+/LXx+oeqYFPC0Bib2Teb+wFCrAI0rs2BXylgSrgecYv5QvS9SdZbnrXIwxjnbW6fFOEINy3muwpCOitA==", + "requires": { + "@fluentui/theme": "^1.7.11", + "@microsoft/load-themed-styles": "^1.10.26", + "@uifabric/merge-styles": "^7.20.0", + "@uifabric/set-version": "^7.0.24", + "@uifabric/utilities": "^7.38.0", + "tslib": "^1.10.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@uifabric/utilities": { + "version": "7.38.0", + "resolved": "https://registry.npmjs.org/@uifabric/utilities/-/utilities-7.38.0.tgz", + "integrity": "sha512-qiF/PkmAdYzvpmOJDjxgqqy3Z1p4WewKn0PBxaDuaH0nZSJswEUAyn53qN6C+FYJ3WllC9cjfBYwmmeGHkc2ug==", + "requires": { + "@fluentui/dom-utilities": "^1.1.2", + "@uifabric/merge-styles": "^7.20.0", + "@uifabric/set-version": "^7.0.24", + "prop-types": "^15.7.2", + "tslib": "^1.10.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "dev": true, + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==", + "dev": true + }, + "@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==", + "dev": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==", + "dev": true + }, + "@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", + "dev": true, + "requires": { + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==", + "dev": true + }, + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", + "dev": true + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "dev": true, + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "dev": true, + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==", + "dev": true + }, + "@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@webpack-cli/configtest": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.2.0.tgz", + "integrity": "sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==", + "dev": true + }, + "@webpack-cli/info": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.5.0.tgz", + "integrity": "sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==", + "dev": true, + "requires": { + "envinfo": "^7.7.3" + } + }, + "@webpack-cli/serve": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz", + "integrity": "sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==", + "dev": true + }, + "@xmldom/xmldom": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.3.tgz", + "integrity": "sha512-Lv2vySXypg4nfa51LY1nU8yDAGo/5YwF+EY/rUZgIbfvwVARcd67ttCM8SMsTeJy51YhHYavEq+FS6R0hW9PFQ==" + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "@yarnpkg/lockfile": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.0.2.tgz", + "integrity": "sha512-MqJ00WXw89ga0rK6GZkdmmgv3bAsxpJixyTthjcix73O44pBqotyU2BejBkLuIsaOBI6SEu77vAnSyLe5iIHkw==", + "dev": true + }, + "@zkochan/cmd-shim": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@zkochan/cmd-shim/-/cmd-shim-5.3.1.tgz", + "integrity": "sha512-xoSqbd1iuV/dSID+OjTjQc/0wId/vhEqYBXbFu9SzpXGxhuzK6QN6CaF8i8v86q0FXX4n3/qD9ewUT6N5ngFQg==", + "dev": true, + "requires": { + "cmd-extension": "^1.0.2", + "is-windows": "^1.0.2" + } + }, + "abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "dev": true + }, + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "acorn": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", + "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", + "dev": true + }, + "acorn-globals": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz", + "integrity": "sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==", + "dev": true, + "requires": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "dev": true + } + } + }, + "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 + }, + "acorn-walk": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz", + "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==", + "dev": true + }, + "adal-angular": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/adal-angular/-/adal-angular-1.0.16.tgz", + "integrity": "sha512-tJf2bRwolKA8/J+wcy4CFOTAva8gpueHplptfjz3Wt1XOb7Y1jnwdm2VdkFZQUhxCtd/xPvcRSAQP2+ROtAD5g==" + }, + "adaptive-expressions": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/adaptive-expressions/-/adaptive-expressions-4.18.0.tgz", + "integrity": "sha512-zG3HNjDCCthXWAGQgD6CpQbC3tFFSrq7uQl/9d7Afq/1cRJT7t1j8B7Q82jBcAlqC6hmI/JQhnmcEKrm6vgOZQ==", + "requires": { + "@microsoft/recognizers-text-data-types-timex-expression": "1.3.0", + "@types/atob-lite": "^2.0.0", + "@types/btoa-lite": "^1.0.0", + "@types/lodash.isequal": "^4.5.5", + "@types/lru-cache": "^5.1.0", + "@types/xmldom": "^0.1.30", + "@xmldom/xmldom": "^0.8.3", + "antlr4ts": "0.5.0-alpha.3", + "atob-lite": "^2.0.0", + "big-integer": "^1.6.48", + "btoa-lite": "^1.0.0", + "d3-format": "^1.4.4", + "dayjs": "^1.10.3", + "fast-xml-parser": "^3.19.0", + "jspath": "^0.4.0", + "lodash.isequal": "^4.5.0", + "lru-cache": "^5.1.1", + "uuid": "^8.3.2", + "xpath": "^0.0.32" + }, + "dependencies": { + "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==", + "requires": { + "yallist": "^3.0.2" + } + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + } + }, + "adaptivecards": { + "version": "2.11.1", + "resolved": "https://registry.npmjs.org/adaptivecards/-/adaptivecards-2.11.1.tgz", + "integrity": "sha512-dyF23HK+lRMEreexJgHz4y9U5B0ZuGk66N8nhwXRnICyYjq8hE4A6n8rLoV/CNY2QAZ0iRjOIR2J8U7M1CKl8Q==" + }, + "adaptivecards-controls": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/adaptivecards-controls/-/adaptivecards-controls-0.9.0.tgz", + "integrity": "sha512-8qh2DBgflFH8s4FJlcmrGgkMYrfY4BPyviDiBUd4mGGKzcA7bLkNdSxGU3K8JlIkqxXhTSCa2/j5qcfsphIBYQ==" + }, + "adaptivecards-designer": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/adaptivecards-designer/-/adaptivecards-designer-2.3.0.tgz", + "integrity": "sha512-nbM9FHBf72ovlhFP5gmmaGXyKqc4miASAtFfe++73TPbE6a6tJDa0tkHqTYC7atm3+oY4Lm9U0uCZmdWT2iNOw==", + "requires": { + "adaptivecards-controls": "^0.9.0", + "clipboard": "^2.0.1" + } + }, + "adaptivecards-templating": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/adaptivecards-templating/-/adaptivecards-templating-2.3.1.tgz", + "integrity": "sha512-rYN1tCb+4NeWUCbo7xzGhwuOG3XllpGWCtgdl/drSJA32tljAvDrMeBO/eUk7uwXx8/1hSc5WJvzbAZQWMd35Q==" + }, + "agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "requires": { + "debug": "4" + } + }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "dependencies": { + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true + } + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "dev": true + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true + }, + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ==", + "dev": true + }, + "animate.css": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/animate.css/-/animate.css-4.1.1.tgz", + "integrity": "sha512-+mRmCTv6SbCmtYJCN4faJMNFVNN5EuCTTprDTAo7YzIGji2KADmakjVA3+8mVDkZ2Bf09vayB35lSQIex2+QaQ==" + }, + "ansi-colors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", + "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", + "dev": true, + "requires": { + "ansi-wrap": "^0.1.0" + } + }, + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + }, + "dependencies": { + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + } + } + }, + "ansi-gray": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", + "integrity": "sha512-HrgGIZUl8h2EHuZaU9hTR/cU5nhKxpVE1V6kdGsQ8e4zirElJ5fvtfc8N7Q1oq1aatO275i8pUFUCpNWCAnVWw==", + "dev": true, + "requires": { + "ansi-wrap": "0.1.0" + } + }, + "ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true + }, + "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 + }, + "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, + "requires": { + "color-convert": "^2.0.1" + } + }, + "ansi-wrap": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", + "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", + "dev": true + }, + "antlr4ts": { + "version": "0.5.0-alpha.3", + "resolved": "https://registry.npmjs.org/antlr4ts/-/antlr4ts-0.5.0-alpha.3.tgz", + "integrity": "sha512-La89tKkGcHFIVuruv4Bm1esc3zLmES2NOTEwwNS1pudz+zx/0FNqQeUu9p48i9/QHKPVqjN87LB+q3buTg7oDQ==" + }, + "any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "append-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", + "integrity": "sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==", + "dev": true, + "requires": { + "buffer-equal": "^1.0.0" + } + }, + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "dev": true + }, + "archy": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", + "integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==", + "dev": true + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true + }, + "arr-filter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz", + "integrity": "sha512-A2BETWCqhsecSvCkWAeVBFLH6sXEUGASuzkpjL3GR1SlL/PWL6M3J8EAAld2Uubmh39tvkJTqC9LeLHCUKmFXA==", + "dev": true, + "requires": { + "make-iterator": "^1.0.0" + } + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true + }, + "arr-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz", + "integrity": "sha512-tVqVTHt+Q5Xb09qRkbu+DidW1yYzz5izWS2Xm2yFm7qJnmUfz4HPzNxbHkdRJbz2lrqI7S+z17xNYdFcBBO8Hw==", + "dev": true, + "requires": { + "make-iterator": "^1.0.0" + } + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "dev": true + }, + "array-differ": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz", + "integrity": "sha512-LeZY+DZDRnvP7eMuQ6LHfCzUGxAAIViUBliK24P3hWXL6y4SortgR6Nim6xrkfSLlmH0+k+9NYNwVC2s53ZrYQ==", + "dev": true + }, + "array-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", + "integrity": "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==", + "dev": true + }, + "array-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz", + "integrity": "sha512-H3LU5RLiSsGXPhN+Nipar0iR0IofH+8r89G2y1tBKxQ/agagKyAjhkAFDRBfodP2caPrNKHpAWNIM/c9yeL7uA==", + "dev": true + }, + "array-find-index": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==", + "dev": true + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true + }, + "array-includes": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz", + "integrity": "sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5", + "get-intrinsic": "^1.1.1", + "is-string": "^1.0.7" + } + }, + "array-initial": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz", + "integrity": "sha512-BC4Yl89vneCYfpLrs5JU2aAu9/a+xWbeKhvISg9PT7eWFB9UlRvI+rKEtk6mgxWr3dSkk9gQ8hCrdqt06NXPdw==", + "dev": true, + "requires": { + "array-slice": "^1.0.0", + "is-number": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true + } + } + }, + "array-last": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz", + "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==", + "dev": true, + "requires": { + "is-number": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true + } + } + }, + "array-slice": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", + "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", + "dev": true + }, + "array-sort": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz", + "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==", + "dev": true, + "requires": { + "default-compare": "^1.0.0", + "get-value": "^2.0.6", + "kind-of": "^5.0.2" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "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 + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "dev": true + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "dev": true + }, + "array.prototype.flatmap": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz", + "integrity": "sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.2", + "es-shim-unscopables": "^1.0.0" + } + }, + "array.prototype.reduce": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.4.tgz", + "integrity": "sha512-WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.2", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + } + }, + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "dev": true + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "dev": true + }, + "asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "dev": true, + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "dev": true, + "requires": { + "object-assign": "^4.1.1", + "util": "0.10.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==", + "dev": true + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==", + "dev": true, + "requires": { + "inherits": "2.0.1" + } + } + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "dev": true + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "dev": true + }, + "ast-types": { + "version": "0.9.6", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.9.6.tgz", + "integrity": "sha512-qEdtR2UH78yyHX/AUNfXmJTlM48XoFZKBdwi1nzkI1mJL21cmbu0cvjxjpkXJ5NENMq42H+hNs8VLJcqXLerBQ==", + "dev": true + }, + "astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "dev": true + }, + "async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "requires": { + "lodash": "^4.17.14" + } + }, + "async-done": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz", + "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.2", + "process-nextick-args": "^2.0.0", + "stream-exhaust": "^1.0.1" + } + }, + "async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", + "dev": true + }, + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "dev": true + }, + "async-settle": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz", + "integrity": "sha512-VPXfB4Vk49z1LHHodrEQ6Xf7W4gg1w0dAPROHngx7qgDjqmIQ+fXmwgGXTW/ITLai0YLSvWepJOP9EVpMnEAcw==", + "dev": true, + "requires": { + "async-done": "^1.2.2" + } + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true + }, + "atob-lite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/atob-lite/-/atob-lite-2.0.0.tgz", + "integrity": "sha512-LEeSAWeh2Gfa2FtlQE1shxQ8zi5F9GHarrGKz08TMdODD5T4eH6BMsvtnhbWZ+XQn+Gb6om/917ucvRu7l7ukw==" + }, + "autoprefixer": { + "version": "9.8.8", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz", + "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==", + "dev": true, + "requires": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "picocolors": "^0.2.1", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + } + } + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", + "dev": true + }, + "aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", + "dev": true + }, + "axios": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", + "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", + "requires": { + "follow-redirects": "^1.14.9", + "form-data": "^4.0.0" + }, + "dependencies": { + "form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + } + } + }, + "babel-jest": { + "version": "25.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-25.5.1.tgz", + "integrity": "sha512-9dA9+GmMjIzgPnYtkhBg73gOo/RHqPmLruP3BaGL4KEX3Dwz6pI8auSN8G8+iuEG90+GSswyKvslN+JYSaacaQ==", + "dev": true, + "requires": { + "@jest/transform": "^25.5.1", + "@jest/types": "^25.5.0", + "@types/babel__core": "^7.1.7", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^25.5.0", + "chalk": "^3.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + }, + "dependencies": { + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } + } + }, + "babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "dependencies": { + "istanbul-lib-instrument": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz", + "integrity": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==", + "dev": true, + "requires": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "babel-plugin-jest-hoist": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-25.5.0.tgz", + "integrity": "sha512-u+/W+WAjMlvoocYGTwthAiQSxDcJAyHpQ6oWlHdFZaaN+Rlk8Q7iiwDPg2lN/FyJtAYnKjFxbn7xus4HCFkg5g==", + "dev": true, + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-preset-current-node-syntax": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.4.tgz", + "integrity": "sha512-5/INNCYhUGqw7VbVjT/hb3ucjgkVHKXY7lX3ZjlN4gm565VyFmJUrJ/h+h16ECVB38R/9SF6aACydpKMLZ/c9w==", + "dev": true, + "requires": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "babel-preset-jest": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-25.5.0.tgz", + "integrity": "sha512-8ZczygctQkBU+63DtSOKGh7tFL0CeCuz+1ieud9lJ1WPQ9O6A1a/r+LGn6Y705PA6whHQ3T1XuB/PmpfNYf8Fw==", + "dev": true, + "requires": { + "babel-plugin-jest-hoist": "^25.5.0", + "babel-preset-current-node-syntax": "^0.1.2" + } + }, + "bach": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", + "integrity": "sha512-bZOOfCb3gXBXbTFXq3OZtGR88LwGeJvzu6szttaIzymOTS4ZttBNOWSv7aLZja2EMycKtRYV0Oa8SNKH/zkxvg==", + "dev": true, + "requires": { + "arr-filter": "^1.1.1", + "arr-flatten": "^1.0.1", + "arr-map": "^2.0.0", + "array-each": "^1.0.0", + "array-initial": "^1.0.0", + "array-last": "^1.1.1", + "async-done": "^1.2.2", + "async-settle": "^1.0.0", + "now-and-later": "^2.0.0" + } + }, + "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 + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", + "dev": true, + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "beeper": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz", + "integrity": "sha512-3vqtKL1N45I5dV0RdssXZG7X6pCqQrWPNOlBPZPrd+QkE2HEhR57Z04m0KtpbsZH73j+a3F8UD1TQnn+ExTvIA==", + "dev": true + }, + "better-path-resolve": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/better-path-resolve/-/better-path-resolve-1.0.0.tgz", + "integrity": "sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==", + "dev": true, + "requires": { + "is-windows": "^1.0.0" + } + }, + "big-integer": { + "version": "1.6.51", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", + "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==" + }, + "big.js": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz", + "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==" + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true + }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "bn.js": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", + "dev": true + }, + "body-parser": { + "version": "1.18.3", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz", + "integrity": "sha512-YQyoqQG3sO8iCmf8+hyVpgHHOv0/hCEFiS4zTGUwTA1HjAFX66wRcNQrVCeJq9pgESMRvUAOvSil5MJlmccuKQ==", + "dev": true, + "requires": { + "bytes": "3.0.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "~1.6.3", + "iconv-lite": "0.4.23", + "on-finished": "~2.3.0", + "qs": "6.5.2", + "raw-body": "2.3.3", + "type-is": "~1.6.16" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "iconv-lite": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", + "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "dev": true + } + } + }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==", + "dev": true, + "requires": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + }, + "dependencies": { + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + } + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "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, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", + "dev": true + }, + "browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "dev": true + }, + "browser-resolve": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", + "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", + "dev": true, + "requires": { + "resolve": "1.1.7" + }, + "dependencies": { + "resolve": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", + "integrity": "sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==", + "dev": true + } + } + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "dev": true, + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "dev": true, + "requires": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } + } + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dev": true, + "requires": { + "pako": "~1.0.5" + } + }, + "browserslist": { + "version": "4.21.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.3.tgz", + "integrity": "sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001370", + "electron-to-chromium": "^1.4.202", + "node-releases": "^2.0.6", + "update-browserslist-db": "^1.0.5" + } + }, + "bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "requires": { + "node-int64": "^0.4.0" + } + }, + "btoa-lite": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/btoa-lite/-/btoa-lite-1.0.0.tgz", + "integrity": "sha512-gvW7InbIyF8AicrqWoptdW08pUxuhq8BEgowNajy9RhiE86fmGAGl+bLKo6oB8QP0CkqHLowfN0oJdKC/J6LbA==" + }, + "buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "dev": true, + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "buffer-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz", + "integrity": "sha512-tcBWO2Dl4e7Asr9hTGcpVrCe+F7DubpmqWCTbj4FHLmjqO2hIaC383acQubWtRJhdceqs5uBHs6Es+Sk//RKiQ==", + "dev": true + }, + "buffer-equal-constant-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==", + "dev": true + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", + "dev": true + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", + "dev": true + }, + "builtin-modules": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.1.0.tgz", + "integrity": "sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==", + "dev": true + }, + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", + "dev": true + }, + "builtins": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz", + "integrity": "sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==", + "dev": true + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true + }, + "cacache": { + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", + "dev": true, + "requires": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + }, + "dependencies": { + "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, + "requires": { + "yallist": "^3.0.2" + } + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + } + } + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==", + "dev": true, + "requires": { + "callsites": "^2.0.0" + }, + "dependencies": { + "callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==", + "dev": true + } + } + }, + "caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==", + "dev": true, + "requires": { + "caller-callsite": "^2.0.0" + } + }, + "callsite": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", + "integrity": "sha512-0vdNRFXn5q+dtOqjfFtmtlI9N2eVZ7LMyEV2iKC5mEEFvSg/69Ml6b/WU2qF8W1nLRa0wiSrDT3Y5jOHZCwKPQ==", + "dev": true + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "camel-case": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", + "integrity": "sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==", + "dev": true, + "requires": { + "no-case": "^2.2.0", + "upper-case": "^1.1.1" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "camelcase-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", + "integrity": "sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==", + "dev": true, + "requires": { + "camelcase": "^2.0.0", + "map-obj": "^1.0.0" + }, + "dependencies": { + "camelcase": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==", + "dev": true + } + } + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "caniuse-lite": { + "version": "1.0.30001388", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001388.tgz", + "integrity": "sha512-znVbq4OUjqgLxMxoNX2ZeeLR0d7lcDiE5uJ4eUiWdml1J1EkxbnQq6opT9jb9SMfJxB0XA16/ziHwni4u1I3GQ==", + "dev": true + }, + "capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "dev": true, + "requires": { + "rsvp": "^4.8.4" + } + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "chart.js": { + "version": "2.9.4", + "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-2.9.4.tgz", + "integrity": "sha512-B07aAzxcrikjAPyV+01j7BmOpxtQETxTSlQ26BEYJ+3iUkbNKaOJ/nDbT6JjyqYxseM0ON12COHYdU2cTIjC7A==", + "requires": { + "chartjs-color": "^2.1.0", + "moment": "^2.10.2" + } + }, + "chartjs-color": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/chartjs-color/-/chartjs-color-2.4.1.tgz", + "integrity": "sha512-haqOg1+Yebys/Ts/9bLo/BqUcONQOdr/hoEr2LLTRl6C5LXctUdHxsCYfvQVg5JIxITrfCNUDr4ntqmQk9+/0w==", + "requires": { + "chartjs-color-string": "^0.6.0", + "color-convert": "^1.9.3" + }, + "dependencies": { + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + } + } + }, + "chartjs-color-string": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/chartjs-color-string/-/chartjs-color-string-0.6.0.tgz", + "integrity": "sha512-TIB5OKn1hPJvO7JcteW4WY/63v6KwEdt6udfnDE9iCAZgy+V4SrbSxoIbTw/xkUIapjEI4ExGtD0+6D3KyFd7A==", + "requires": { + "color-name": "^1.0.0" + } + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "dev": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "dev": true, + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true + }, + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "classnames": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", + "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" + }, + "clean-css": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz", + "integrity": "sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==", + "dev": true, + "requires": { + "source-map": "~0.6.0" + } + }, + "clean-css-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/clean-css-loader/-/clean-css-loader-3.0.0.tgz", + "integrity": "sha512-r99ZAb/PlHqGGK9CVMbd4q/v8jDU79Jgm9NA39Uoilt52+2wEBPPXmX0cMpV+avwwtUUDtjBBPyxCU2A7lnTbA==", + "dev": true, + "requires": { + "clean-css": "^4.2.3", + "loader-utils": "^2.0.0" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "clean-css": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz", + "integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==", + "dev": true, + "requires": { + "source-map": "~0.6.0" + } + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "json5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "dev": true + }, + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + } + } + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "cli-table": { + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/cli-table/-/cli-table-0.3.11.tgz", + "integrity": "sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==", + "dev": true, + "requires": { + "colors": "1.0.3" + }, + "dependencies": { + "colors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", + "integrity": "sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==", + "dev": true + } + } + }, + "cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true + }, + "clipboard": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.11.tgz", + "integrity": "sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw==", + "requires": { + "good-listener": "^1.2.2", + "select": "^1.1.2", + "tiny-emitter": "^2.0.0" + } + }, + "cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==" + }, + "clone-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", + "integrity": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==", + "dev": true + }, + "clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + } + }, + "clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", + "dev": true + }, + "cloneable-readable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", + "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "process-nextick-args": "^2.0.0", + "readable-stream": "^2.3.5" + } + }, + "cmd-extension": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/cmd-extension/-/cmd-extension-1.0.2.tgz", + "integrity": "sha512-iWDjmP8kvsMdBmLTHxFaqXikO8EdFRDfim7k6vUHglY/2xJ5jLrPsnQGijdfp4U+sr/BeecG0wKm02dSIAeQ1g==", + "dev": true + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true + }, + "coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "dev": true, + "requires": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==", + "dev": true + }, + "collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "dev": true + }, + "collection-map": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", + "integrity": "sha512-5D2XXSpkOnleOI21TG7p3T0bGAsZ/XknZpKBmGYyluO8pw4zA3K8ZlrBIbC4FXg3m6z/RNFiUFfT2sQK01+UHA==", + "dev": true, + "requires": { + "arr-map": "^2.0.2", + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + } + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "dev": true, + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", + "dev": true, + "requires": { + "color-convert": "^1.9.3", + "color-string": "^1.6.0" + }, + "dependencies": { + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + } + } + }, + "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, + "requires": { + "color-name": "~1.1.4" + } + }, + "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==" + }, + "color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true + }, + "colorette": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", + "dev": true + }, + "colors": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.2.5.tgz", + "integrity": "sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg==" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", + "dev": true + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "compute-scroll-into-view": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.11.tgz", + "integrity": "sha512-uUnglJowSe0IPmWOdDtrlHXof5CTIJitfJEyITHBW6zDVOGu9Pjk5puaLM73SLcwak0L4hEjO7Td88/a6P5i7A==" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "connect": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", + "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", + "dev": true, + "requires": { + "debug": "2.6.9", + "finalhandler": "1.1.2", + "parseurl": "~1.3.3", + "utils-merge": "1.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true + } + } + }, + "connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "dev": true + }, + "connect-livereload": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/connect-livereload/-/connect-livereload-0.5.4.tgz", + "integrity": "sha512-3KnRwsWf4VmP01I4hCDQqTc4e2UxOvJIi8i08GiwqX2oymzxNFY7PqjFkwHglYTJ0yzUJkO5yqdPxVaIz3Pbug==", + "dev": true + }, + "console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", + "dev": true + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", + "dev": true + }, + "content-disposition": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", + "integrity": "sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==", + "dev": true + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "dev": true + }, + "convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.1" + } + }, + "cookie": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", + "integrity": "sha512-+IJOX0OqlHCszo2mBUq+SrEbCj6w7Kpffqx60zYbPTFaO4+yYgRjHwcZNpWvaTylDHaV7PPmBHzSecZiMhtPgw==", + "dev": true + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "dev": true, + "requires": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + }, + "dependencies": { + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "dev": true + }, + "copy-props": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz", + "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==", + "dev": true, + "requires": { + "each-props": "^1.3.2", + "is-plain-object": "^5.0.0" + }, + "dependencies": { + "is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true + } + } + }, + "copy-webpack-plugin": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-6.0.4.tgz", + "integrity": "sha512-zCazfdYAh3q/O4VzZFiadWGpDA2zTs6FC6D7YTHD6H1J40pzo0H4z22h1NYMCl4ArQP4CK8y/KWqPrJ4rVkZ5A==", + "dev": true, + "requires": { + "cacache": "^15.0.5", + "fast-glob": "^3.2.4", + "find-cache-dir": "^3.3.1", + "glob-parent": "^5.1.1", + "globby": "^11.0.1", + "loader-utils": "^2.0.0", + "normalize-path": "^3.0.0", + "p-limit": "^3.0.2", + "schema-utils": "^2.7.0", + "serialize-javascript": "^4.0.0", + "webpack-sources": "^1.4.3" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "cacache": { + "version": "15.3.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", + "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", + "dev": true, + "requires": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + } + }, + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "json5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "dev": true + }, + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + }, + "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, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dev": true, + "requires": { + "minipass": "^3.1.1" + } + } + } + }, + "core-js-pure": { + "version": "3.25.1", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.25.1.tgz", + "integrity": "sha512-7Fr74bliUDdeJCBMxkkIuQ4xfxn/SwrVg+HkJUAoNEXVqYLv55l6Af0dJ5Lq2YBUW9yKqSkLXaS5SYPK6MGa/A==", + "dev": true + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", + "dev": true + }, + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "dev": true, + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "dependencies": { + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", + "dev": true, + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + } + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "dev": true + } + } + }, + "create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "create-react-class": { + "version": "15.7.0", + "resolved": "https://registry.npmjs.org/create-react-class/-/create-react-class-15.7.0.tgz", + "integrity": "sha512-QZv4sFWG9S5RUvkTYWbflxeZX+JG7Cz0Tn33rQBJ+WFQTqTfUTjMjiv9tnfXazjsO5r0KhPs+AqCjyrQX6h2ng==", + "requires": { + "loose-envify": "^1.3.1", + "object-assign": "^4.1.1" + } + }, + "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, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + } + }, + "css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q==", + "dev": true + }, + "css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", + "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", + "dev": true, + "requires": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + } + }, + "css-in-js-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/css-in-js-utils/-/css-in-js-utils-3.1.0.tgz", + "integrity": "sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==", + "requires": { + "hyphenate-style-name": "^1.0.3" + } + }, + "css-loader": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.2.1.tgz", + "integrity": "sha512-q40kYdcBNzMvkIImCL2O+wk8dh+RGwPPV9Dfz3n7XtOYPXqe2Z6VgtvoxjkLHz02gmhepG9sOAJOUlx+3hHsBg==", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^1.2.3", + "normalize-path": "^3.0.0", + "postcss": "^7.0.23", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.2", + "postcss-modules-scope": "^2.1.1", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.0.2", + "schema-utils": "^2.6.0" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", + "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "dev": true, + "requires": { + "postcss": "^7.0.5" + } + }, + "postcss-modules-local-by-default": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", + "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", + "dev": true, + "requires": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", + "dev": true, + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + } + }, + "postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", + "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", + "dev": true, + "requires": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "css-modules-loader-core": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/css-modules-loader-core/-/css-modules-loader-core-1.1.0.tgz", + "integrity": "sha512-XWOBwgy5nwBn76aA+6ybUGL/3JBnCtBX9Ay9/OWIpzKYWlVHMazvJ+WtHumfi+xxdPF440cWK7JCYtt8xDifew==", + "dev": true, + "requires": { + "icss-replace-symbols": "1.1.0", + "postcss": "6.0.1", + "postcss-modules-extract-imports": "1.1.0", + "postcss-modules-local-by-default": "1.2.0", + "postcss-modules-scope": "1.1.0", + "postcss-modules-values": "1.3.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "dev": true, + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", + "dev": true + } + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==", + "dev": true + }, + "postcss": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.1.tgz", + "integrity": "sha512-VbGX1LQgQbf9l3cZ3qbUuC3hGqIEOGQFHAEHQ/Diaeo0yLgpgK5Rb8J+OcamIfQ9PbAU/fzBjVtQX3AhJHUvZw==", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A==", + "dev": true, + "requires": { + "has-flag": "^1.0.0" + } + } + } + }, + "css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "dev": true, + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", + "dev": true + }, + "css-selector-tokenizer": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.3.tgz", + "integrity": "sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "fastparse": "^1.1.2" + } + }, + "css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "dev": true, + "requires": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + } + }, + "css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "dev": true + }, + "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 + }, + "cssjanus": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/cssjanus/-/cssjanus-1.3.2.tgz", + "integrity": "sha512-5pM/C1MIfoqhXa7k9PqSnrjj1SSZDakfyB1DZhdYyJoDUH+evGbsUg6/bpQapTJeSnYaj0rdzPUMeM33CvB0vw==" + }, + "cssnano": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.11.tgz", + "integrity": "sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==", + "dev": true, + "requires": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.8", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + } + }, + "cssnano-preset-default": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz", + "integrity": "sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==", + "dev": true, + "requires": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.3", + "postcss-unique-selectors": "^4.0.1" + } + }, + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", + "integrity": "sha512-6RIcwmV3/cBMG8Aj5gucQRsJb4vv4I4rn6YjPbVWd5+Pn/fuG+YseGvXGk00XLkoZkaj31QOD7vMUpNPC4FIuw==", + "dev": true + }, + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", + "integrity": "sha512-JPMZ1TSMRUPVIqEalIBNoBtAYbi8okvcFns4O0YIhcdGebeYZK7dMyHJiQ6GqNBA9kE0Hym4Aqym5rPdsV/4Cw==", + "dev": true + }, + "cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", + "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", + "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==", + "dev": true + }, + "csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dev": true, + "requires": { + "css-tree": "^1.1.2" + }, + "dependencies": { + "css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dev": true, + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + } + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "dev": true + } + } + }, + "cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", + "dev": true + }, + "cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, + "requires": { + "cssom": "~0.3.6" + }, + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + } + } + }, + "csstype": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.0.tgz", + "integrity": "sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==" + }, + "currently-unhandled": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==", + "dev": true, + "requires": { + "array-find-index": "^1.0.1" + } + }, + "cyclist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", + "integrity": "sha512-NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A==", + "dev": true + }, + "d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "requires": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" + } + }, + "d3-format": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-1.4.5.tgz", + "integrity": "sha512-J0piedu6Z8iB6TbIGfZgDzfXxUFN3qQRMofy2oPdXzQibYGqPB/9iMcxr/TGalU+2RsyDO+U4f33id8tbnSRMQ==" + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", + "dev": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "data-urls": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz", + "integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==", + "dev": true, + "requires": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + }, + "dependencies": { + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "dev": true + }, + "whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dev": true, + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + } + } + }, + "date-fns": { + "version": "2.29.2", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.29.2.tgz", + "integrity": "sha512-0VNbwmWJDS/G3ySwFSJA3ayhbURMTJLtwM2DTxf9CWondCnh6DTNlO9JgRSq6ibf4eD0lfMJNBxUdEAHHix+bA==" + }, + "dateformat": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz", + "integrity": "sha512-GODcnWq3YGoTnygPfi02ygEiRxqUxpJwuRHjdhJYuxpcZmDq4rjBiXYmbCCzStxo176ixfLT6i4NPwQooRySnw==", + "dev": true + }, + "dayjs": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.6.tgz", + "integrity": "sha512-zZbY5giJAinCG+7AGaw0wIhNZ6J8AhWuSXKvuc1KAyMiRsvGQWqh4L+MomvhdAYjN+lqvVCMq1I41e3YHvXkyQ==" + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "debuglog": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz", + "integrity": "sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==", + "dev": true + }, + "decache": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/decache/-/decache-4.5.1.tgz", + "integrity": "sha512-5J37nATc6FmOTLbcsr9qx7Nm28qQyg1SK4xyEHqM0IBkNhWFp0Sm+vKoWYHD8wq+OUEb9jLyaKFfzzd1A9hcoA==", + "dev": true, + "requires": { + "callsite": "^1.0.0" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==", + "dev": true + }, + "decomment": { + "version": "0.9.5", + "resolved": "https://registry.npmjs.org/decomment/-/decomment-0.9.5.tgz", + "integrity": "sha512-h0TZ8t6Dp49duwyDHo3iw67mnh9/UpFiSSiOb5gDK1sqoXzrfX/SQxIUQd2R2QEiSnqib0KF2fnKnGfAhAs6lg==", + "dev": true, + "requires": { + "esprima": "4.0.1" + } + }, + "deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + } + }, + "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 + }, + "deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "dev": true + }, + "default-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz", + "integrity": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==", + "dev": true, + "requires": { + "kind-of": "^5.0.2" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "dev": true, + "requires": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + } + }, + "default-resolution": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz", + "integrity": "sha512-2xaP6GiwVwOEbXCGoJ4ufgC76m8cj805jrghScewJC2ZDsb9U0b4BIrba+xt/Uytyd0HvQ6+WymSRTfnYj59GQ==", + "dev": true + }, + "define-properties": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", + "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", + "requires": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "del": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz", + "integrity": "sha512-Z4fzpbIRjOu7lO5jCETSWoqUDVe0IPOlfugBsF6suen2LKDlVb4QZpKEM9P+buNJ4KI1eN7I083w/pbKUpsrWQ==", + "dev": true, + "requires": { + "globby": "^5.0.0", + "is-path-cwd": "^1.0.0", + "is-path-in-cwd": "^1.0.0", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "rimraf": "^2.2.8" + }, + "dependencies": { + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, + "requires": { + "array-uniq": "^1.0.1" + } + }, + "globby": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", + "integrity": "sha512-HJRTIH2EeH44ka+LWig+EqT2ONSYpVlNfx6pyd592/VF1TbfljJ7elwie7oSwcViLGqOdWocSdu2txwBF9bjmQ==", + "dev": true, + "requires": { + "array-union": "^1.0.1", + "arrify": "^1.0.0", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + }, + "delegate": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz", + "integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==" + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true + }, + "des.js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==", + "dev": true + }, + "detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "dev": true + }, + "detect-indent": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", + "dev": true + }, + "detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true + }, + "detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "dezalgo": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.4.tgz", + "integrity": "sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==", + "dev": true, + "requires": { + "asap": "^2.0.0", + "wrappy": "1" + } + }, + "diff-sequences": { + "version": "25.2.6", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-25.2.6.tgz", + "integrity": "sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==", + "dev": true + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "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, + "requires": { + "path-type": "^4.0.0" + } + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", + "dev": true + }, + "dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", + "dev": true, + "requires": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==", + "dev": true, + "requires": { + "buffer-indexof": "^1.0.0" + } + }, + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "requires": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true + } + } + }, + "domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "dev": true + }, + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "dev": true + }, + "domexception": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz", + "integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==", + "dev": true, + "requires": { + "webidl-conversions": "^4.0.2" + }, + "dependencies": { + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "dev": true + } + } + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dev": true, + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "requires": { + "is-obj": "^2.0.0" + } + }, + "downshift": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/downshift/-/downshift-5.0.5.tgz", + "integrity": "sha512-V1idov3Rkvz1YWA1K67aIx51EgokIDvep4x6KmU7HhsayI8DvTEZBeH4O92zeFVGximKujRO7ChBzBAf4PKWFA==", + "requires": { + "@babel/runtime": "^7.4.5", + "compute-scroll-into-view": "^1.0.9", + "prop-types": "^15.7.2", + "react-is": "^16.9.0" + } + }, + "duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true + }, + "duplexer2": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz", + "integrity": "sha512-+AWBwjGadtksxjOQSFDhPNQbed7icNXApT4+2BNpsXzcCBiInq2H9XW0O8sfHFaPmnQRs7cg/P0fAr2IWQSW0g==", + "dev": true, + "requires": { + "readable-stream": "~1.1.9" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "dev": true + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", + "dev": true + } + } + }, + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dev": true, + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "each-props": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz", + "integrity": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.1", + "object.defaults": "^1.1.0" + } + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", + "dev": true, + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "ecdsa-sig-formatter": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", + "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "electron-to-chromium": { + "version": "1.4.241", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.241.tgz", + "integrity": "sha512-e7Wsh4ilaioBZ5bMm6+F4V5c11dh56/5Jwz7Hl5Tu1J7cnB+Pqx5qIF2iC7HPpfyQMqGSvvLP5bBAIDd2gAtGw==", + "dev": true + }, + "elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "dev": true, + "requires": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng==" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true + }, + "end-of-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.1.0.tgz", + "integrity": "sha512-EoulkdKF/1xa92q25PbjuDcgJ9RDHYU2Rs3SCIvs2/dSQ3BpmxneNHmA/M7fe60M3PrV7nNGTTNbkK62l6vXiQ==", + "dev": true, + "requires": { + "once": "~1.3.0" + }, + "dependencies": { + "once": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", + "integrity": "sha512-6vaNInhu+CHxtONf3zw3vq4SP2DOQhjBvIa3rNcG0+P7eKWlYH6Peu7rHizSloRU2EwMz6GraLieis9Ac9+p1w==", + "dev": true, + "requires": { + "wrappy": "1" + } + } + } + }, + "enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "dependencies": { + "memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + } + } + }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "requires": { + "ansi-colors": "^4.1.1" + }, + "dependencies": { + "ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true + } + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true + }, + "envinfo": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", + "dev": true + }, + "errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "requires": { + "prr": "~1.0.1" + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "requires": { + "stackframe": "^1.3.4" + } + }, + "es-abstract": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.2.tgz", + "integrity": "sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.1.2", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.2", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "string.prototype.trimend": "^1.0.5", + "string.prototype.trimstart": "^1.0.5", + "unbox-primitive": "^1.0.2" + } + }, + "es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", + "dev": true + }, + "es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "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, + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "es5-ext": { + "version": "0.10.62", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", + "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", + "requires": { + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.3", + "next-tick": "^1.1.0" + } + }, + "es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", + "requires": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "es6-promise": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", + "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" + }, + "es6-symbol": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "requires": { + "d": "^1.0.1", + "ext": "^1.1.2" + } + }, + "es6-templates": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/es6-templates/-/es6-templates-0.2.3.tgz", + "integrity": "sha512-sziUVwcvQ+lOsrTyUY0Q11ilAPj+dy7AQ1E1MgSaHTaaAFTffaa08QSlGNU61iyVaroyb6nYdBV6oD7nzn6i8w==", + "dev": true, + "requires": { + "recast": "~0.11.12", + "through": "~2.3.6" + } + }, + "es6-weak-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", + "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", + "dev": true, + "requires": { + "d": "1", + "es5-ext": "^0.10.46", + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.1" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, + "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 + }, + "escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dev": true, + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + }, + "dependencies": { + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dev": true, + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + } + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "dev": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2" + } + } + } + }, + "eslint": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.7.0.tgz", + "integrity": "sha512-ifHYzkBGrzS2iDU7KjhCAVMGCvF6M3Xfs8X8b37cgrUlDt6bWRTpRh6T/gtSXv1HJ/BUGgmjvNvOEGu85Iif7w==", + "dev": true, + "requires": { + "@eslint/eslintrc": "^1.0.5", + "@humanwhocodes/config-array": "^0.9.2", + "ajv": "^6.10.0", + "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.1.0", + "eslint-utils": "^3.0.0", + "eslint-visitor-keys": "^3.2.0", + "espree": "^9.3.0", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^6.0.1", + "globals": "^13.6.0", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "regexpp": "^3.2.0", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "eslint-scope": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", + "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + }, + "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, + "requires": { + "is-glob": "^4.0.3" + } + } + } + }, + "eslint-plugin-promise": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.0.1.tgz", + "integrity": "sha512-uM4Tgo5u3UWQiroOyDEsYcVMOo7re3zmno0IZmB5auxoaQNIceAbXEkSt8RNrKtaYehARHG06pYK6K1JhtP0Zw==", + "dev": true + }, + "eslint-plugin-react": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.27.1.tgz", + "integrity": "sha512-meyunDjMMYeWr/4EBLTV1op3iSG3mjT/pz5gti38UzfM4OPpNc2m0t2xvKCOMU5D6FSdd34BIMFOvQbW+i8GAA==", + "dev": true, + "requires": { + "array-includes": "^3.1.4", + "array.prototype.flatmap": "^1.2.5", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.0.4", + "object.entries": "^1.1.5", + "object.fromentries": "^2.0.5", + "object.hasown": "^1.1.0", + "object.values": "^1.1.5", + "prop-types": "^15.7.2", + "resolve": "^2.0.0-next.3", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.6" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + }, + "resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "dev": true, + "requires": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "eslint-plugin-react-hooks": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.3.0.tgz", + "integrity": "sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==", + "dev": true + }, + "eslint-plugin-tsdoc": { + "version": "0.2.16", + "resolved": "https://registry.npmjs.org/eslint-plugin-tsdoc/-/eslint-plugin-tsdoc-0.2.16.tgz", + "integrity": "sha512-F/RWMnyDQuGlg82vQEFHQtGyWi7++XJKdYNn0ulIbyMOFqYIjoJOUdE6olORxgwgLkpJxsCJpJbTHgxJ/ggfXw==", + "dev": true, + "requires": { + "@microsoft/tsdoc": "0.14.1", + "@microsoft/tsdoc-config": "0.16.1" + }, + "dependencies": { + "@microsoft/tsdoc": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.14.1.tgz", + "integrity": "sha512-6Wci+Tp3CgPt/B9B0a3J4s3yMgLNSku6w5TV6mN+61C71UqsRBv2FUibBf3tPGlNxebgPHMEUzKpb1ggE8KCKw==", + "dev": true + }, + "@microsoft/tsdoc-config": { + "version": "0.16.1", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc-config/-/tsdoc-config-0.16.1.tgz", + "integrity": "sha512-2RqkwiD4uN6MLnHFljqBlZIXlt/SaUT6cuogU1w2ARw4nKuuppSmR0+s+NC+7kXBQykd9zzu0P4HtBpZT5zBpQ==", + "dev": true, + "requires": { + "@microsoft/tsdoc": "0.14.1", + "ajv": "~6.12.6", + "jju": "~1.4.0", + "resolve": "~1.19.0" + } + }, + "resolve": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", + "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", + "dev": true, + "requires": { + "is-core-module": "^2.1.0", + "path-parse": "^1.0.6" + } + } + } + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^2.0.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true + } + } + }, + "eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "dev": true + }, + "eslint-webpack-plugin": { + "version": "2.5.4", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-2.5.4.tgz", + "integrity": "sha512-7rYh0m76KyKSDE+B+2PUQrlNS4HJ51t3WKpkJg6vo2jFMbEPTG99cBV0Dm7LXSHucN4WGCG65wQcRiTFrj7iWw==", + "dev": true, + "requires": { + "@types/eslint": "^7.2.6", + "arrify": "^2.0.1", + "jest-worker": "^26.6.2", + "micromatch": "^4.0.2", + "normalize-path": "^3.0.0", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "arrify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", + "dev": true + }, + "jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "dev": true, + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "espree": { + "version": "9.4.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.0.tgz", + "integrity": "sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==", + "dev": true, + "requires": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.3.0" + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } + } + }, + "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, + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true + }, + "event-stream": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.5.tgz", + "integrity": "sha512-vyibDcu5JL20Me1fP734QBH/kenBGLZap2n0+XXM7mvuUPzJ20Ydqj1aKcIeMdri1p+PU+4yAKugjN8KCVst+g==", + "dev": true, + "requires": { + "duplexer": "^0.1.1", + "from": "^0.1.7", + "map-stream": "0.0.7", + "pause-stream": "^0.0.11", + "split": "^1.0.1", + "stream-combiner": "^0.2.2", + "through": "^2.3.8" + } + }, + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true + }, + "eventsource": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-2.0.2.tgz", + "integrity": "sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==", + "dev": true + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "exec-sh": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz", + "integrity": "sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==", + "dev": true + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "exenv-es6": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/exenv-es6/-/exenv-es6-1.1.1.tgz", + "integrity": "sha512-vlVu3N8d6yEMpMsEm+7sUBAI81aqYYuEvfK0jNqmdb/OPXzzH7QWDDnVjMvDSY47JdHEqx/dfC/q8WkfoTmpGQ==" + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "dev": true, + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, + "expect": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-25.5.0.tgz", + "integrity": "sha512-w7KAXo0+6qqZZhovCaBVPSIqQp7/UTcx4M9uKt2m6pd2VB1voyC8JizLRqeEqud3AAVP02g+hbErDu5gu64tlA==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "ansi-styles": "^4.0.0", + "jest-get-type": "^25.2.6", + "jest-matcher-utils": "^25.5.0", + "jest-message-util": "^25.5.0", + "jest-regex-util": "^25.2.6" + } + }, + "express": { + "version": "4.16.4", + "resolved": "https://registry.npmjs.org/express/-/express-4.16.4.tgz", + "integrity": "sha512-j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg==", + "dev": true, + "requires": { + "accepts": "~1.3.5", + "array-flatten": "1.1.1", + "body-parser": "1.18.3", + "content-disposition": "0.5.2", + "content-type": "~1.0.4", + "cookie": "0.3.1", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.1.1", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.2", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.4", + "qs": "6.5.2", + "range-parser": "~1.2.0", + "safe-buffer": "5.1.2", + "send": "0.16.2", + "serve-static": "1.13.2", + "setprototypeof": "1.1.0", + "statuses": "~1.4.0", + "type-is": "~1.6.16", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "dev": true + } + } + }, + "ext": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", + "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", + "requires": { + "type": "^2.7.2" + }, + "dependencies": { + "type": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", + "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==" + } + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", + "dev": true + }, + "fancy-log": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", + "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", + "dev": true, + "requires": { + "ansi-gray": "^0.1.1", + "color-support": "^1.1.3", + "parse-node-version": "^1.0.0", + "time-stamp": "^1.0.0" + } + }, + "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==" + }, + "fast-diff": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.1.2.tgz", + "integrity": "sha512-KaJUt+M9t1qaIteSvjc6P3RbMdXsNhK61GRftR6SNxqmhthcd9MGIi4T+o0jD8LUSpSnSKXE20nLtJ3fOHxQig==" + }, + "fast-glob": { + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "dev": true, + "requires": { + "@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" + } + }, + "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==" + }, + "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 + }, + "fast-loops": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/fast-loops/-/fast-loops-1.1.3.tgz", + "integrity": "sha512-8EZzEP0eKkEEVX+drtd9mtuQ+/QrlfW/5MlwcwK5Nds6EkZ/tRzEexkzUY2mIssnAyVLT+TKHuRXmFNNXYUd6g==" + }, + "fast-xml-parser": { + "version": "3.21.1", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.21.1.tgz", + "integrity": "sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==", + "requires": { + "strnum": "^1.0.4" + } + }, + "fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "dev": true + }, + "fastest-stable-stringify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fastest-stable-stringify/-/fastest-stable-stringify-2.0.2.tgz", + "integrity": "sha512-bijHueCGd0LqqNK9b5oCMHc0MluJAx0cwqASgbWMvkO01lCYgIhacVRLcaDz3QnyYIRNJRDwMb41VuT6pHJ91Q==" + }, + "fastparse": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz", + "integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==", + "dev": true + }, + "fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "faye-websocket": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", + "integrity": "sha512-Xhj93RXbMSq8urNCUq4p9l0P6hnySJ/7YNRhYNug0bLOuii7pKO7xQFb5mx9xZXWCar88pLPb805PvUkwrLZpQ==", + "dev": true, + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", + "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", + "dev": true, + "requires": { + "bser": "2.1.1" + } + }, + "fela": { + "version": "10.8.2", + "resolved": "https://registry.npmjs.org/fela/-/fela-10.8.2.tgz", + "integrity": "sha512-rdF2h6U9gBhLged2WpOE43zqDG3f9rV7PNmcCoTuMIoKZqN0tYsc71nJRS7aNQtk+kRB5VsvMpoK0JGbs4s0qA==", + "requires": { + "css-in-js-utils": "^3.0.0", + "csstype": "^2.5.5", + "fast-loops": "^1.0.0", + "fela-utils": "^10.8.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "csstype": { + "version": "2.6.21", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.21.tgz", + "integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==" + } + } + }, + "fela-bindings": { + "version": "10.8.2", + "resolved": "https://registry.npmjs.org/fela-bindings/-/fela-bindings-10.8.2.tgz", + "integrity": "sha512-NeZaTD8XaR2HmZKdVy0X2eTsTXeN9w/9ys0sd101djI4lD7rjfU6NroUB5YeGtOV/drehs7ufbzI/rStVUYx1g==", + "requires": { + "fast-loops": "^1.0.0", + "fela-dom": "^10.8.2", + "fela-tools": "^10.8.2", + "react-addons-shallow-compare": "^15.6.2", + "shallow-equal": "^1.0.0" + } + }, + "fela-dom": { + "version": "10.8.2", + "resolved": "https://registry.npmjs.org/fela-dom/-/fela-dom-10.8.2.tgz", + "integrity": "sha512-6zv4X180/GT44g+Bss0t4r6zPGdg1VfQrrR4raHZLiviIBOx3QbHO2m/JAs3Hp22GF9X2jKItwyT2hGVw3c2fw==", + "requires": { + "css-in-js-utils": "^3.0.0", + "fast-loops": "^1.0.1", + "fela-utils": "^10.8.2" + } + }, + "fela-plugin-custom-property": { + "version": "10.8.2", + "resolved": "https://registry.npmjs.org/fela-plugin-custom-property/-/fela-plugin-custom-property-10.8.2.tgz", + "integrity": "sha512-SFbuMRQpetEUYwMsG0ngZrdEB7N7ytH+jsXeWt54GKhdz68XcvbAEIoc5vWSPiNVBKH47jV3+dwXjhejd5AdaQ==", + "requires": { + "css-in-js-utils": "^3.0.0", + "isobject": "^3.0.1" + } + }, + "fela-plugin-embedded": { + "version": "10.8.2", + "resolved": "https://registry.npmjs.org/fela-plugin-embedded/-/fela-plugin-embedded-10.8.2.tgz", + "integrity": "sha512-HeLyDJHQgpBEMbWjsCES1Jtptawtaqnp0Ml3zKebPMrryCQj4j0k4VdyzcS+QzE4M0JD1r0FYhKla+mpuMP5Qw==", + "requires": { + "fast-loops": "^1.0.0", + "isobject": "^3.0.1" + } + }, + "fela-plugin-fallback-value": { + "version": "10.8.2", + "resolved": "https://registry.npmjs.org/fela-plugin-fallback-value/-/fela-plugin-fallback-value-10.8.2.tgz", + "integrity": "sha512-pjNQ4TJVJz8rDS8kEB7afRDHelQFzi0kIOhLSR0/LWLLFC7CfaQ3Vop9/w5Ot7iJtH8oR1dAxSQEyk497QcyPw==", + "requires": { + "css-in-js-utils": "^3.0.0", + "isobject": "^3.0.1" + } + }, + "fela-plugin-placeholder-prefixer": { + "version": "10.8.2", + "resolved": "https://registry.npmjs.org/fela-plugin-placeholder-prefixer/-/fela-plugin-placeholder-prefixer-10.8.2.tgz", + "integrity": "sha512-5Uh1ceC03mnfZanlxb4Y4F3MJNoqcReb5lFhme9Yuh74gwFYUAFgsA/vjE2FXfJ8DG4OP69cB/JEGc5cBRtjAg==", + "requires": { + "fast-loops": "^1.0.0", + "fela-plugin-custom-property": "^10.8.2" + } + }, + "fela-plugin-rtl": { + "version": "10.8.2", + "resolved": "https://registry.npmjs.org/fela-plugin-rtl/-/fela-plugin-rtl-10.8.2.tgz", + "integrity": "sha512-Xc3uYTNU0TponAtMwqfJQc/F33gACCCPr7QOMqpJurlYUU9VaYhchgs7YMocqns6kBPRGrYc0mYiQqNCfpKsjw==", + "requires": { + "rtl-css-js": "^1.1.3" + } + }, + "fela-tools": { + "version": "10.8.2", + "resolved": "https://registry.npmjs.org/fela-tools/-/fela-tools-10.8.2.tgz", + "integrity": "sha512-9HVPA7PABxCh8ybiDlhhVKuFlVeFazmhthlf5CybiFcxh6DVKDEacYsFdXSC7NGJW2i4cWACiy7pjUvOyvqhRQ==", + "requires": { + "css-in-js-utils": "^3.0.0", + "fast-loops": "^1.0.0", + "fela": "^10.8.2", + "fela-utils": "^10.8.2" + } + }, + "fela-utils": { + "version": "10.8.2", + "resolved": "https://registry.npmjs.org/fela-utils/-/fela-utils-10.8.2.tgz", + "integrity": "sha512-RmoDOIby14Zb3Xn03noLolyMC2528xcNO5KcNCaznyByd1Acq8DnvQn91Ph9nBLcLqdC1rGme5HwRcrCOHG+kA==", + "requires": { + "css-in-js-utils": "^3.0.0", + "fast-loops": "^1.0.0" + } + }, + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", + "dev": true + }, + "figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + } + } + }, + "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, + "requires": { + "flat-cache": "^3.0.4" + } + }, + "file-loader": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-1.1.11.tgz", + "integrity": "sha512-TGR4HU7HUsGg6GCOPJnFk06RhWgEWFLAGWiT6rcD+GRC2keU3s9RGJ+b3Z6/U73jwwNb2gKLJ7YCrp+jvU4ALg==", + "dev": true, + "requires": { + "loader-utils": "^1.0.2", + "schema-utils": "^0.4.5" + }, + "dependencies": { + "schema-utils": { + "version": "0.4.7", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz", + "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==", + "dev": true, + "requires": { + "ajv": "^6.1.0", + "ajv-keywords": "^3.1.0" + } + } + } + }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, + "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, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz", + "integrity": "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.2", + "statuses": "~1.4.0", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "findup-sync": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", + "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", + "dev": true, + "requires": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "fined": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz", + "integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==", + "dev": true, + "requires": { + "expand-tilde": "^2.0.2", + "is-plain-object": "^2.0.3", + "object.defaults": "^1.1.0", + "object.pick": "^1.2.0", + "parse-filepath": "^1.0.1" + } + }, + "flagged-respawn": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz", + "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==", + "dev": true + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "dev": true + }, + "flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "follow-redirects": { + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz", + "integrity": "sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==" + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "dev": true + }, + "for-own": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", + "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", + "dev": true, + "requires": { + "for-in": "^1.0.1" + } + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", + "dev": true + }, + "fork-stream": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/fork-stream/-/fork-stream-0.0.4.tgz", + "integrity": "sha512-Pqq5NnT78ehvUnAk/We/Jr22vSvanRlFTpAmQ88xBY/M1TlHe+P0ILuEyXS595ysdGfaj22634LBkGMA2GTcpA==", + "dev": true + }, + "fork-ts-checker-webpack-plugin": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.4.0.tgz", + "integrity": "sha512-3I3wFkc4DbzaUDPWEi96wdYGu4EKtxBafhZYm0o4mX51d9bphAY4P3mBl8K5mFXFJqVzHfmdbm9kLGnm7vwwBg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "dependencies": { + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "dev": true, + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + } + }, + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + } + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true + } + } + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "dev": true, + "requires": { + "map-cache": "^0.2.2" + } + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true + }, + "from": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", + "integrity": "sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==", + "dev": true + }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "fs-mkdirp-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", + "integrity": "sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "through2": "^2.0.3" + } + }, + "fs-monkey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", + "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", + "dev": true + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, + "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 + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + } + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", + "dev": true + }, + "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==" + }, + "generic-names": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/generic-names/-/generic-names-2.0.1.tgz", + "integrity": "sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ==", + "dev": true, + "requires": { + "loader-utils": "^1.1.0" + } + }, + "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 + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-intrinsic": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz", + "integrity": "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + } + }, + "get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true + }, + "get-port": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", + "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==", + "dev": true + }, + "get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==", + "dev": true + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "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, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "get-them-args": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/get-them-args/-/get-them-args-1.3.2.tgz", + "integrity": "sha512-LRn8Jlk+DwZE4GTlDbT3Hikd1wSHgLMme/+7ddlqKd7ldwR6LjJgTVWzBnR01wnYGe4KgrXjg287RaI22UHmAw==", + "dev": true + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "dev": true + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", + "dev": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "git-repo-info": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/git-repo-info/-/git-repo-info-2.1.1.tgz", + "integrity": "sha512-8aCohiDo4jwjOwma4FmYFd3i97urZulL8XL24nIPxuE+GZnfsAyy/g2Shqx6OjUiFKUXZM+Yy+KHnOmmA3FVcg==", + "dev": true + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-escape": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/glob-escape/-/glob-escape-0.0.2.tgz", + "integrity": "sha512-L/cXYz8x7qer1HAyUQ+mbjcUsJVdpRxpAf7CwqHoNBs9vTpABlGfNN4tzkDxt+u3Z7ZncVyKlCNPtzb0R/7WbA==", + "dev": true + }, + "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, + "requires": { + "is-glob": "^4.0.1" + } + }, + "glob-stream": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", + "integrity": "sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==", + "dev": true, + "requires": { + "extend": "^3.0.0", + "glob": "^7.1.1", + "glob-parent": "^3.1.0", + "is-negated-glob": "^1.0.0", + "ordered-read-streams": "^1.0.0", + "pumpify": "^1.3.5", + "readable-stream": "^2.1.5", + "remove-trailing-separator": "^1.0.1", + "to-absolute-glob": "^2.0.0", + "unique-stream": "^2.0.2" + }, + "dependencies": { + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "glob-watcher": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz", + "integrity": "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==", + "dev": true, + "requires": { + "anymatch": "^2.0.0", + "async-done": "^1.2.0", + "chokidar": "^2.0.0", + "is-negated-glob": "^1.0.0", + "just-debounce": "^1.0.0", + "normalize-path": "^3.0.0", + "object.defaults": "^1.1.0" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "requires": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + } + }, + "global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "dev": true, + "requires": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "dependencies": { + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "globals": { + "version": "13.17.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", + "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "requires": { + "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" + } + }, + "glogg": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz", + "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==", + "dev": true, + "requires": { + "sparkles": "^1.0.0" + } + }, + "good-listener": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz", + "integrity": "sha512-goW1b+d9q/HIwbVYZzZ6SsTr4IgE+WA44A0GmPIQstuOrgsFcT7VEJ48nmr9GaRtNu0XTKacFLGnBPAM6Afouw==", + "requires": { + "delegate": "^3.1.2" + } + }, + "graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" + }, + "growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==", + "dev": true + }, + "gulp": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz", + "integrity": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==", + "dev": true, + "requires": { + "glob-watcher": "^5.0.3", + "gulp-cli": "^2.2.0", + "undertaker": "^1.2.1", + "vinyl-fs": "^3.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true + }, + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "dev": true + }, + "cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", + "dev": true, + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" + } + }, + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", + "dev": true, + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "get-caller-file": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", + "dev": true + }, + "gulp-cli": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz", + "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==", + "dev": true, + "requires": { + "ansi-colors": "^1.0.1", + "archy": "^1.0.0", + "array-sort": "^1.0.0", + "color-support": "^1.1.3", + "concat-stream": "^1.6.0", + "copy-props": "^2.0.1", + "fancy-log": "^1.3.2", + "gulplog": "^1.0.0", + "interpret": "^1.4.0", + "isobject": "^3.0.1", + "liftoff": "^3.1.0", + "matchdep": "^2.0.0", + "mute-stdout": "^1.0.0", + "pretty-hrtime": "^1.0.0", + "replace-homedir": "^1.0.0", + "semver-greatest-satisfied-range": "^1.1.0", + "v8flags": "^3.2.0", + "yargs": "^7.1.0" + } + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", + "dev": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", + "dev": true, + "requires": { + "pinkie-promise": "^2.0.0" + } + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", + "dev": true, + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", + "dev": true, + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + } + }, + "require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==", + "dev": true + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "which-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", + "integrity": "sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==", + "dev": true + }, + "wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", + "dev": true, + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + } + }, + "y18n": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", + "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", + "dev": true + }, + "yargs": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz", + "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==", + "dev": true, + "requires": { + "camelcase": "^3.0.0", + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "get-caller-file": "^1.0.1", + "os-locale": "^1.4.0", + "read-pkg-up": "^1.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^1.0.2", + "which-module": "^1.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^5.0.1" + } + }, + "yargs-parser": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz", + "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==", + "dev": true, + "requires": { + "camelcase": "^3.0.0", + "object.assign": "^4.1.0" + } + } + } + }, + "gulp-connect": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gulp-connect/-/gulp-connect-5.5.0.tgz", + "integrity": "sha512-oRBLjw/4EVaZb8g8OcxOVdGD8ZXYrRiWKcNxlrGjxb/6Cp0GDdqw7ieX7D8xJrQS7sbXT+G94u63pMJF3MMjQA==", + "dev": true, + "requires": { + "ansi-colors": "^1.0.1", + "connect": "^3.6.5", + "connect-livereload": "^0.5.4", + "event-stream": "^3.3.2", + "fancy-log": "^1.3.2", + "send": "^0.13.2", + "serve-index": "^1.9.1", + "serve-static": "^1.13.1", + "tiny-lr": "^0.2.1" + }, + "dependencies": { + "debug": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "integrity": "sha512-X0rGvJcskG1c3TgSCPqHJ0XJgwlcvOC7elJ5Y0hYuKBZoVqWpAMfLOeIh2UI/DCQ5ruodIjvsugZtjUYUw2pUw==", + "dev": true, + "requires": { + "ms": "0.7.1" + } + }, + "etag": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.7.0.tgz", + "integrity": "sha512-Mbv5pNpLNPrm1b4rzZlZlfTRpdDr31oiD43N362sIyvSWVNu5Du33EcJGzvEV4YdYLuENB1HzND907cQkFmXNw==", + "dev": true + }, + "fresh": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.3.0.tgz", + "integrity": "sha512-akx5WBKAwMSg36qoHTuMMVncHWctlaDGslJASDYAhoLrzDUDCjZlOngNa/iC6lPm9aA0qk8pN5KnpmbJHSIIQQ==", + "dev": true + }, + "http-errors": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.3.1.tgz", + "integrity": "sha512-gMygNskMurDCWfoCdyh1gOeDfSbkAHXqz94QoPj5IHIUjC/BG8/xv7FSEUr7waR5RcAya4j58bft9Wu/wHNeXA==", + "dev": true, + "requires": { + "inherits": "~2.0.1", + "statuses": "1" + } + }, + "mime": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz", + "integrity": "sha512-sAaYXszED5ALBt665F0wMQCUXpGuZsGdopoqcHPdL39ZYdi7uHoZlhrfZfhv8WzivhBzr/oXwaj+yiK5wY8MXQ==", + "dev": true + }, + "ms": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "integrity": "sha512-lRLiIR9fSNpnP6TC4v8+4OU7oStC01esuNowdQ34L+Gk8e5Puoc88IqJ+XAY/B3Mn2ZKis8l8HX90oU8ivzUHg==", + "dev": true + }, + "range-parser": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.0.3.tgz", + "integrity": "sha512-nDsRrtIxVUO5opg/A8T2S3ebULVIfuh8ECbh4w3N4mWxIiT3QILDJDUQayPqm2e8Q8NUa0RSUkGCfe33AfjR3Q==", + "dev": true + }, + "send": { + "version": "0.13.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.13.2.tgz", + "integrity": "sha512-cQ0rmXHrdO2Iof08igV2bG/yXWD106ANwBg6DkGQNT2Vsznbgq6T0oAIQboy1GoFsIuy51jCim26aA9tj3Z3Zg==", + "dev": true, + "requires": { + "debug": "~2.2.0", + "depd": "~1.1.0", + "destroy": "~1.0.4", + "escape-html": "~1.0.3", + "etag": "~1.7.0", + "fresh": "0.3.0", + "http-errors": "~1.3.1", + "mime": "1.3.4", + "ms": "0.7.1", + "on-finished": "~2.3.0", + "range-parser": "~1.0.3", + "statuses": "~1.2.1" + } + }, + "statuses": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.2.1.tgz", + "integrity": "sha512-pVEuxHdSGrt8QmQ3LOZXLhSA6MP/iPqKzZeO6Squ7PNGkA/9MBsSfV0/L+bIxkoDmjF4tZcLpcVq/fkqoHvuKg==", + "dev": true + } + } + }, + "gulp-flatten": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/gulp-flatten/-/gulp-flatten-0.2.0.tgz", + "integrity": "sha512-8kKeBDfHGx0CEWoB6BPh5bsynUG2VGmSz6hUlX531cfDz/+PRYZa9i3e3+KYuaV0GuCsRZNThSRjBfHOyypy8Q==", + "dev": true, + "requires": { + "gulp-util": "^3.0.1", + "through2": "^2.0.0" + } + }, + "gulp-if": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/gulp-if/-/gulp-if-2.0.2.tgz", + "integrity": "sha512-tV0UfXkZodpFq6CYxEqH8tqLQgN6yR9qOhpEEN3O6N5Hfqk3fFLcbAavSex5EqnmoQjyaZ/zvgwclvlTI1KGfw==", + "dev": true, + "requires": { + "gulp-match": "^1.0.3", + "ternary-stream": "^2.0.1", + "through2": "^2.0.1" + } + }, + "gulp-match": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/gulp-match/-/gulp-match-1.1.0.tgz", + "integrity": "sha512-DlyVxa1Gj24DitY2OjEsS+X6tDpretuxD6wTfhXE/Rw2hweqc1f6D/XtsJmoiCwLWfXgR87W9ozEityPCVzGtQ==", + "dev": true, + "requires": { + "minimatch": "^3.0.3" + } + }, + "gulp-open": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/gulp-open/-/gulp-open-3.0.1.tgz", + "integrity": "sha512-dohokw+npnt48AsD0hhvCLEHLnDMqM35F+amvIfJlX1H2nNHYUClR0Oy1rI0TvbL1/pHiHGNLmohhk+kvwIKjA==", + "dev": true, + "requires": { + "colors": "^1.1.2", + "opn": "5.2.0", + "plugin-log": "^0.1.0", + "through2": "^2.0.1" + } + }, + "gulp-util": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz", + "integrity": "sha512-q5oWPc12lwSFS9h/4VIjG+1NuNDlJ48ywV2JKItY4Ycc/n1fXJeYPVQsfu5ZrhQi7FGSDBalwUCLar/GyHXKGw==", + "dev": true, + "requires": { + "array-differ": "^1.0.0", + "array-uniq": "^1.0.2", + "beeper": "^1.0.0", + "chalk": "^1.0.0", + "dateformat": "^2.0.0", + "fancy-log": "^1.1.0", + "gulplog": "^1.0.0", + "has-gulplog": "^0.1.0", + "lodash._reescape": "^3.0.0", + "lodash._reevaluate": "^3.0.0", + "lodash._reinterpolate": "^3.0.0", + "lodash.template": "^3.0.0", + "minimist": "^1.1.0", + "multipipe": "^0.1.2", + "object-assign": "^3.0.0", + "replace-ext": "0.0.1", + "through2": "^2.0.0", + "vinyl": "^0.5.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "dev": true, + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + } + }, + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "dev": true + }, + "clone-stats": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", + "integrity": "sha512-dhUqc57gSMCo6TX85FLfe51eC/s+Im2MLkAgJwfaRRexR2tA4dd3eLEW4L6efzHc2iNorrRRXITifnDLlRrhaA==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "object-assign": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", + "integrity": "sha512-jHP15vXVGeVh1HuaA2wY6lxk+whK/x4KBG88VXeRma7CCun7iGD5qPc4eYykQ9sdQvg8jkwFKsSxHln2ybW3xQ==", + "dev": true + }, + "replace-ext": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", + "integrity": "sha512-AFBWBy9EVRTa/LhEcG8QDP3FvpwZqmvN2QFDuJswFeaVhWnZMp8q3E6Zd90SR04PlIwfGdyVjNyLPyen/ek5CQ==", + "dev": true + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", + "dev": true + }, + "vinyl": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz", + "integrity": "sha512-P5zdf3WB9uzr7IFoVQ2wZTmUwHL8cMZWJGzLBNCHNZ3NB6HTMsYABtt7z8tAGIINLXyAob9B9a1yzVGMFOYKEA==", + "dev": true, + "requires": { + "clone": "^1.0.0", + "clone-stats": "^0.0.1", + "replace-ext": "0.0.1" + } + } + } + }, + "gulplog": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", + "integrity": "sha512-hm6N8nrm3Y08jXie48jsC55eCZz9mnb4OirAStEk2deqeyhXU3C1otDVh+ccttMuc1sBi6RX6ZJ720hs9RCvgw==", + "dev": true, + "requires": { + "glogg": "^1.0.0" + } + }, + "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==" + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", + "dev": true + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "dev": true, + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true + } + } + }, + "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 + }, + "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 + }, + "has-gulplog": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz", + "integrity": "sha512-+F4GzLjwHNNDEAJW2DC1xXfEoPkRDmUdJ7CBYw4MpqtDwOnqdImJl7GWlpqx+Wko6//J8uKTnIe4wZSv7yCqmw==", + "dev": true, + "requires": { + "sparkles": "^1.0.0" + } + }, + "has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "requires": { + "get-intrinsic": "^1.1.1" + } + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "dev": true, + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "dev": true, + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } + } + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, + "hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==", + "dev": true + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "dev": true, + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "requires": { + "parse-passwd": "^1.0.0" + } + }, + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha512-M5ezZw4LzXbBKMruP+BNANf0k+19hDQMgpzBIYnya//Al+fjNct9Wf3b1WedLqdEs2hKBvxq/jh+DsHJLj0F9A==", + "dev": true + }, + "hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA==", + "dev": true + }, + "html-encoding-sniffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz", + "integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==", + "dev": true, + "requires": { + "whatwg-encoding": "^1.0.1" + } + }, + "html-entities": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", + "dev": true + }, + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "html-loader": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/html-loader/-/html-loader-0.5.5.tgz", + "integrity": "sha512-7hIW7YinOYUpo//kSYcPB6dCKoceKLmOwjEMmhIobHuWGDVl0Nwe4l68mdG/Ru0wcUxQjVMEoZpkalZ/SE7zog==", + "dev": true, + "requires": { + "es6-templates": "^0.2.3", + "fastparse": "^1.1.1", + "html-minifier": "^3.5.8", + "loader-utils": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "html-minifier": { + "version": "3.5.21", + "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz", + "integrity": "sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==", + "dev": true, + "requires": { + "camel-case": "3.0.x", + "clean-css": "4.2.x", + "commander": "2.17.x", + "he": "1.2.x", + "param-case": "2.1.x", + "relateurl": "0.2.x", + "uglify-js": "3.4.x" + }, + "dependencies": { + "commander": { + "version": "2.17.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", + "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==", + "dev": true + } + } + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "dev": true + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + } + } + }, + "http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true + }, + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "dev": true, + "requires": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", + "dev": true, + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==", + "dev": true + }, + "https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "requires": { + "agent-base": "6", + "debug": "4" + } + }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "dev": true + }, + "hyphenate-style-name": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz", + "integrity": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "icss-replace-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz", + "integrity": "sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==", + "dev": true + }, + "icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz", + "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", + "dev": true, + "requires": { + "postcss": "^7.0.14" + } + }, + "idb": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/idb/-/idb-6.0.0.tgz", + "integrity": "sha512-+M367poGtpzAylX4pwcrZIa7cFQLfNkAOlMMLN2kw/2jGfJP6h+TB/unQNSVYwNtP8XqkLYrfuiVnxLQNP1tjA==" + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true + }, + "iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==", + "dev": true + }, + "ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "dev": true + }, + "ignore-walk": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.4.tgz", + "integrity": "sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==", + "dev": true, + "requires": { + "minimatch": "^3.0.4" + } + }, + "immediate": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", + "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", + "dev": true + }, + "immutable": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.1.0.tgz", + "integrity": "sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==", + "dev": true + }, + "import-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", + "integrity": "sha512-Ew5AZzJQFqrOV5BTW3EIoHAnoie1LojZLXKcCQ/yTRyVZosBhK1x1ViYjHGf5pAFOq8ZyChZp6m/fSN7pJyZtg==", + "dev": true, + "requires": { + "import-from": "^2.1.0" + } + }, + "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, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "import-from": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", + "integrity": "sha512-0vdnLL2wSGnhlRmzHJAg5JHjt1l2vYhzJ7tNLGbeVg0fse56tpGaH0uzH+r9Slej+BSXXEHvBKDEnVSLLE9/+w==", + "dev": true, + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "dev": true + } + } + }, + "import-lazy": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", + "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==" + }, + "import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "requires": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true + }, + "indent-string": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==", + "dev": true, + "requires": { + "repeating": "^2.0.0" + } + }, + "indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==", + "dev": true + }, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "dev": true + }, + "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, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "inline-style-expand-shorthand": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/inline-style-expand-shorthand/-/inline-style-expand-shorthand-1.4.0.tgz", + "integrity": "sha512-FBxbgh1+ziiPFA09s0JgYtB7gRYfbfVrcO1sTv2JnPwbbz0M35zSYVUR3oyrTfLo/S+sbY4JG1W16hY91Hbh/Q==" + }, + "inline-style-prefixer": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/inline-style-prefixer/-/inline-style-prefixer-6.0.1.tgz", + "integrity": "sha512-AsqazZ8KcRzJ9YPN1wMH2aNM7lkWQ8tSPrW5uDk1ziYwiAPWSZnUsC7lfZq+BDqLqz0B4Pho5wscWcJzVvRzDQ==", + "requires": { + "css-in-js-utils": "^2.0.0" + }, + "dependencies": { + "css-in-js-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/css-in-js-utils/-/css-in-js-utils-2.0.1.tgz", + "integrity": "sha512-PJF0SpJT+WdbVVt0AOYp9C8GnuruRlL/UFW7932nLWmFLQTaWEzTBQEx7/hn4BuV+WON75iAViSUJLiU3PKbpA==", + "requires": { + "hyphenate-style-name": "^1.0.2", + "isobject": "^3.0.1" + } + } + } + }, + "inpath": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/inpath/-/inpath-1.0.2.tgz", + "integrity": "sha512-DTt55ovuYFC62a8oJxRjV2MmTPUdxN43Gd8I2ZgawxbAha6PvJkDQy/RbZGFCJF5IXrpp4PAYtW1w3aV7jXkew==", + "dev": true + }, + "inquirer": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", + "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + } + }, + "internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "dev": true, + "requires": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + } + }, + "internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, + "interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "requires": { + "loose-envify": "^1.0.0" + } + }, + "invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==", + "dev": true + }, + "ip": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", + "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", + "dev": true + }, + "ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==", + "dev": true + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true + }, + "is-absolute": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", + "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", + "dev": true, + "requires": { + "is-relative": "^1.0.0", + "is-windows": "^1.0.1" + } + }, + "is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", + "integrity": "sha512-vOx7VprsKyllwjSkLV79NIhpyLfr3jAp7VaTCMXOJHu4m0Ew1CZ2fcjASwmV1jI3BWuWHB013M48eyeldk9gYg==", + "dev": true + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dev": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "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, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-callable": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", + "dev": true + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dev": true, + "requires": { + "ci-info": "^2.0.0" + } + }, + "is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha512-H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA==", + "dev": true, + "requires": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + } + }, + "is-core-module": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz", + "integrity": "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==", + "requires": { + "has": "^1.0.3" + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "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==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==", + "dev": true + }, + "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 + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true + }, + "is-finite": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", + "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true + }, + "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, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-negated-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", + "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==", + "dev": true + }, + "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 + }, + "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 + }, + "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, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true + }, + "is-path-cwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", + "integrity": "sha512-cnS56eR9SPAscL77ik76ATVqoPARTqPIVkMDVxRaWH06zT+6+CzIroYRJ0VVvm0Z1zfAvxvz9i/D3Ppjaqt5Nw==", + "dev": true + }, + "is-path-in-cwd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", + "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==", + "dev": true, + "requires": { + "is-path-inside": "^1.0.0" + } + }, + "is-path-inside": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", + "integrity": "sha512-qhsCR/Esx4U4hg/9I19OVUAJkGWtjRYHMRgUMZE2TDdj+Ag+kttZanLupfddNyglzz50cUlmWzUaI37GDfNx/g==", + "dev": true, + "requires": { + "path-is-inside": "^1.0.1" + } + }, + "is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "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==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-relative": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", + "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", + "dev": true, + "requires": { + "is-unc-path": "^1.0.0" + } + }, + "is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", + "dev": true + }, + "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, + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-subdir": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-subdir/-/is-subdir-1.2.0.tgz", + "integrity": "sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==", + "dev": true, + "requires": { + "better-path-resolve": "1.0.0" + } + }, + "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, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "dev": true + }, + "is-unc-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", + "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", + "dev": true, + "requires": { + "unc-path-regex": "^0.1.2" + } + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", + "dev": true + }, + "is-valid-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", + "integrity": "sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==", + "dev": true + }, + "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, + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "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, + "requires": { + "is-docker": "^2.0.0" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + }, + "isomorphic-fetch": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz", + "integrity": "sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==", + "requires": { + "node-fetch": "^2.6.1", + "whatwg-fetch": "^3.4.1" + } + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", + "dev": true + }, + "istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", + "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", + "dev": true, + "requires": { + "@babel/core": "^7.7.5", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dev": true, + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + } + }, + "istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + } + }, + "istanbul-reports": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "dev": true, + "requires": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + } + }, + "jest-changed-files": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-25.5.0.tgz", + "integrity": "sha512-EOw9QEqapsDT7mKF162m8HFzRPbmP8qJQny6ldVOdOVBz3ACgPm/1nAn5fPQ/NDaYhX/AHkrGwwkCncpAVSXcw==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "execa": "^3.2.0", + "throat": "^5.0.0" + }, + "dependencies": { + "execa": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-3.4.0.tgz", + "integrity": "sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "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 + }, + "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, + "requires": { + "path-key": "^3.0.0" + } + }, + "p-finally": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-2.0.1.tgz", + "integrity": "sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==", + "dev": true + } + } + }, + "jest-cli": { + "version": "25.4.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-25.4.0.tgz", + "integrity": "sha512-usyrj1lzCJZMRN1r3QEdnn8e6E6yCx/QN7+B1sLoA68V7f3WlsxSSQfy0+BAwRiF4Hz2eHauf11GZG3PIfWTXQ==", + "dev": true, + "requires": { + "@jest/core": "^25.4.0", + "@jest/test-result": "^25.4.0", + "@jest/types": "^25.4.0", + "chalk": "^3.0.0", + "exit": "^0.1.2", + "import-local": "^3.0.2", + "is-ci": "^2.0.0", + "jest-config": "^25.4.0", + "jest-util": "^25.4.0", + "jest-validate": "^25.4.0", + "prompts": "^2.0.1", + "realpath-native": "^2.0.0", + "yargs": "^15.3.1" + }, + "dependencies": { + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "requires": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + } + } + } + }, + "jest-config": { + "version": "25.5.4", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-25.5.4.tgz", + "integrity": "sha512-SZwR91SwcdK6bz7Gco8qL7YY2sx8tFJYzvg216DLihTWf+LKY/DoJXpM9nTzYakSyfblbqeU48p/p7Jzy05Atg==", + "dev": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^25.5.4", + "@jest/types": "^25.5.0", + "babel-jest": "^25.5.1", + "chalk": "^3.0.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.4", + "jest-environment-jsdom": "^25.5.0", + "jest-environment-node": "^25.5.0", + "jest-get-type": "^25.2.6", + "jest-jasmine2": "^25.5.4", + "jest-regex-util": "^25.2.6", + "jest-resolve": "^25.5.1", + "jest-util": "^25.5.0", + "jest-validate": "^25.5.0", + "micromatch": "^4.0.2", + "pretty-format": "^25.5.0", + "realpath-native": "^2.0.0" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "jest-environment-jsdom": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-25.5.0.tgz", + "integrity": "sha512-7Jr02ydaq4jaWMZLY+Skn8wL5nVIYpWvmeatOHL3tOcV3Zw8sjnPpx+ZdeBfc457p8jCR9J6YCc+Lga0oIy62A==", + "dev": true, + "requires": { + "@jest/environment": "^25.5.0", + "@jest/fake-timers": "^25.5.0", + "@jest/types": "^25.5.0", + "jest-mock": "^25.5.0", + "jest-util": "^25.5.0", + "jsdom": "^15.2.1" + } + }, + "jsdom": { + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-15.2.1.tgz", + "integrity": "sha512-fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g==", + "dev": true, + "requires": { + "abab": "^2.0.0", + "acorn": "^7.1.0", + "acorn-globals": "^4.3.2", + "array-equal": "^1.0.0", + "cssom": "^0.4.1", + "cssstyle": "^2.0.0", + "data-urls": "^1.1.0", + "domexception": "^1.0.1", + "escodegen": "^1.11.1", + "html-encoding-sniffer": "^1.0.2", + "nwsapi": "^2.2.0", + "parse5": "5.1.0", + "pn": "^1.1.0", + "request": "^2.88.0", + "request-promise-native": "^1.0.7", + "saxes": "^3.1.9", + "symbol-tree": "^3.2.2", + "tough-cookie": "^3.0.1", + "w3c-hr-time": "^1.0.1", + "w3c-xmlserializer": "^1.1.2", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^7.0.0", + "ws": "^7.0.0", + "xml-name-validator": "^3.0.0" + } + }, + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "dev": true + }, + "whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dev": true, + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + } + } + }, + "jest-diff": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-25.5.0.tgz", + "integrity": "sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==", + "dev": true, + "requires": { + "chalk": "^3.0.0", + "diff-sequences": "^25.2.6", + "jest-get-type": "^25.2.6", + "pretty-format": "^25.5.0" + }, + "dependencies": { + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } + } + }, + "jest-docblock": { + "version": "25.3.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-25.3.0.tgz", + "integrity": "sha512-aktF0kCar8+zxRHxQZwxMy70stc9R1mOmrLsT5VO3pIT0uzGRSDAXxSlz4NqQWpuLjPpuMhPRl7H+5FRsvIQAg==", + "dev": true, + "requires": { + "detect-newline": "^3.0.0" + } + }, + "jest-each": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-25.5.0.tgz", + "integrity": "sha512-QBogUxna3D8vtiItvn54xXde7+vuzqRrEeaw8r1s+1TG9eZLVJE5ZkKoSUlqFwRjnlaA4hyKGiu9OlkFIuKnjA==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "jest-get-type": "^25.2.6", + "jest-util": "^25.5.0", + "pretty-format": "^25.5.0" + }, + "dependencies": { + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } + } + }, + "jest-environment-jsdom": { + "version": "25.4.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-25.4.0.tgz", + "integrity": "sha512-KTitVGMDrn2+pt7aZ8/yUTuS333w3pWt1Mf88vMntw7ZSBNDkRS6/4XLbFpWXYfWfp1FjcjQTOKzbK20oIehWQ==", + "dev": true, + "requires": { + "@jest/environment": "^25.4.0", + "@jest/fake-timers": "^25.4.0", + "@jest/types": "^25.4.0", + "jest-mock": "^25.4.0", + "jest-util": "^25.4.0", + "jsdom": "^15.2.1" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + }, + "jsdom": { + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-15.2.1.tgz", + "integrity": "sha512-fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g==", + "dev": true, + "requires": { + "abab": "^2.0.0", + "acorn": "^7.1.0", + "acorn-globals": "^4.3.2", + "array-equal": "^1.0.0", + "cssom": "^0.4.1", + "cssstyle": "^2.0.0", + "data-urls": "^1.1.0", + "domexception": "^1.0.1", + "escodegen": "^1.11.1", + "html-encoding-sniffer": "^1.0.2", + "nwsapi": "^2.2.0", + "parse5": "5.1.0", + "pn": "^1.1.0", + "request": "^2.88.0", + "request-promise-native": "^1.0.7", + "saxes": "^3.1.9", + "symbol-tree": "^3.2.2", + "tough-cookie": "^3.0.1", + "w3c-hr-time": "^1.0.1", + "w3c-xmlserializer": "^1.1.2", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^7.0.0", + "ws": "^7.0.0", + "xml-name-validator": "^3.0.0" + } + }, + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "dev": true + }, + "whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dev": true, + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + } + } + }, + "jest-environment-node": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-25.5.0.tgz", + "integrity": "sha512-iuxK6rQR2En9EID+2k+IBs5fCFd919gVVK5BeND82fYeLWPqvRcFNPKu9+gxTwfB5XwBGBvZ0HFQa+cHtIoslA==", + "dev": true, + "requires": { + "@jest/environment": "^25.5.0", + "@jest/fake-timers": "^25.5.0", + "@jest/types": "^25.5.0", + "jest-mock": "^25.5.0", + "jest-util": "^25.5.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "jest-get-type": { + "version": "25.2.6", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-25.2.6.tgz", + "integrity": "sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig==", + "dev": true + }, + "jest-haste-map": { + "version": "25.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-25.5.1.tgz", + "integrity": "sha512-dddgh9UZjV7SCDQUrQ+5t9yy8iEgKc1AKqZR9YDww8xsVOtzPQSMVLDChc21+g29oTRexb9/B0bIlZL+sWmvAQ==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "@types/graceful-fs": "^4.1.2", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.1.2", + "graceful-fs": "^4.2.4", + "jest-serializer": "^25.5.0", + "jest-util": "^25.5.0", + "jest-worker": "^25.5.0", + "micromatch": "^4.0.2", + "sane": "^4.0.3", + "walker": "^1.0.7", + "which": "^2.0.2" + } + }, + "jest-jasmine2": { + "version": "25.5.4", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-25.5.4.tgz", + "integrity": "sha512-9acbWEfbmS8UpdcfqnDO+uBUgKa/9hcRh983IHdM+pKmJPL77G0sWAAK0V0kr5LK3a8cSBfkFSoncXwQlRZfkQ==", + "dev": true, + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^25.5.0", + "@jest/source-map": "^25.5.0", + "@jest/test-result": "^25.5.0", + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "co": "^4.6.0", + "expect": "^25.5.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^25.5.0", + "jest-matcher-utils": "^25.5.0", + "jest-message-util": "^25.5.0", + "jest-runtime": "^25.5.4", + "jest-snapshot": "^25.5.1", + "jest-util": "^25.5.0", + "pretty-format": "^25.5.0", + "throat": "^5.0.0" + }, + "dependencies": { + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } + } + }, + "jest-leak-detector": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-25.5.0.tgz", + "integrity": "sha512-rV7JdLsanS8OkdDpZtgBf61L5xZ4NnYLBq72r6ldxahJWWczZjXawRsoHyXzibM5ed7C2QRjpp6ypgwGdKyoVA==", + "dev": true, + "requires": { + "jest-get-type": "^25.2.6", + "pretty-format": "^25.5.0" + } + }, + "jest-matcher-utils": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-25.5.0.tgz", + "integrity": "sha512-VWI269+9JS5cpndnpCwm7dy7JtGQT30UHfrnM3mXl22gHGt/b7NkjBqXfbhZ8V4B7ANUsjK18PlSBmG0YH7gjw==", + "dev": true, + "requires": { + "chalk": "^3.0.0", + "jest-diff": "^25.5.0", + "jest-get-type": "^25.2.6", + "pretty-format": "^25.5.0" + }, + "dependencies": { + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } + } + }, + "jest-message-util": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-25.5.0.tgz", + "integrity": "sha512-ezddz3YCT/LT0SKAmylVyWWIGYoKHOFOFXx3/nA4m794lfVUskMcwhip6vTgdVrOtYdjeQeis2ypzes9mZb4EA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^25.5.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^3.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "slash": "^3.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": { + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } + } + }, + "jest-mock": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-25.5.0.tgz", + "integrity": "sha512-eXWuTV8mKzp/ovHc5+3USJMYsTBhyQ+5A1Mak35dey/RG8GlM4YWVylZuGgVXinaW6tpvk/RSecmF37FKUlpXA==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0" + } + }, + "jest-nunit-reporter": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jest-nunit-reporter/-/jest-nunit-reporter-1.3.1.tgz", + "integrity": "sha512-yeERKTYPZutqdNIe3EHjoSAjhPxd5J5Svd8ULB/eiqDkn0EI2n8W4OVTuyFwY5b23hw5f0RLDuEvBjy5V95Ffw==", + "dev": true, + "requires": { + "mkdirp": "^0.5.1", + "read-pkg": "^3.0.0", + "xml": "^1.0.1" + }, + "dependencies": { + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "requires": { + "pify": "^3.0.0" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true + }, + "read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", + "dev": true, + "requires": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + } + }, + "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 + } + } + }, + "jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", + "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", + "dev": true + }, + "jest-regex-util": { + "version": "25.2.6", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-25.2.6.tgz", + "integrity": "sha512-KQqf7a0NrtCkYmZZzodPftn7fL1cq3GQAFVMn5Hg8uKx/fIenLEobNanUxb7abQ1sjADHBseG/2FGpsv/wr+Qw==", + "dev": true + }, + "jest-resolve": { + "version": "25.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-25.5.1.tgz", + "integrity": "sha512-Hc09hYch5aWdtejsUZhA+vSzcotf7fajSlPA6EZPE1RmPBAD39XtJhvHWFStid58iit4IPDLI/Da4cwdDmAHiQ==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "browser-resolve": "^1.11.3", + "chalk": "^3.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.1", + "read-pkg-up": "^7.0.1", + "realpath-native": "^2.0.0", + "resolve": "^1.17.0", + "slash": "^3.0.0" + }, + "dependencies": { + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } + } + }, + "jest-resolve-dependencies": { + "version": "25.5.4", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-25.5.4.tgz", + "integrity": "sha512-yFmbPd+DAQjJQg88HveObcGBA32nqNZ02fjYmtL16t1xw9bAttSn5UGRRhzMHIQbsep7znWvAvnD4kDqOFM0Uw==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "jest-regex-util": "^25.2.6", + "jest-snapshot": "^25.5.1" + } + }, + "jest-runner": { + "version": "25.5.4", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-25.5.4.tgz", + "integrity": "sha512-V/2R7fKZo6blP8E9BL9vJ8aTU4TH2beuqGNxHbxi6t14XzTb+x90B3FRgdvuHm41GY8ch4xxvf0ATH4hdpjTqg==", + "dev": true, + "requires": { + "@jest/console": "^25.5.0", + "@jest/environment": "^25.5.0", + "@jest/test-result": "^25.5.0", + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-config": "^25.5.4", + "jest-docblock": "^25.3.0", + "jest-haste-map": "^25.5.1", + "jest-jasmine2": "^25.5.4", + "jest-leak-detector": "^25.5.0", + "jest-message-util": "^25.5.0", + "jest-resolve": "^25.5.1", + "jest-runtime": "^25.5.4", + "jest-util": "^25.5.0", + "jest-worker": "^25.5.0", + "source-map-support": "^0.5.6", + "throat": "^5.0.0" + }, + "dependencies": { + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } + } + }, + "jest-runtime": { + "version": "25.5.4", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-25.5.4.tgz", + "integrity": "sha512-RWTt8LeWh3GvjYtASH2eezkc8AehVoWKK20udV6n3/gC87wlTbE1kIA+opCvNWyyPeBs6ptYsc6nyHUb1GlUVQ==", + "dev": true, + "requires": { + "@jest/console": "^25.5.0", + "@jest/environment": "^25.5.0", + "@jest/globals": "^25.5.2", + "@jest/source-map": "^25.5.0", + "@jest/test-result": "^25.5.0", + "@jest/transform": "^25.5.1", + "@jest/types": "^25.5.0", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.4", + "jest-config": "^25.5.4", + "jest-haste-map": "^25.5.1", + "jest-message-util": "^25.5.0", + "jest-mock": "^25.5.0", + "jest-regex-util": "^25.2.6", + "jest-resolve": "^25.5.1", + "jest-snapshot": "^25.5.1", + "jest-util": "^25.5.0", + "jest-validate": "^25.5.0", + "realpath-native": "^2.0.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0", + "yargs": "^15.3.1" + }, + "dependencies": { + "@types/yargs": { + "version": "15.0.14", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz", + "integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==", + "dev": true, + "requires": { + "@types/yargs-parser": "*" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "requires": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + } + } + } + }, + "jest-serializer": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-25.5.0.tgz", + "integrity": "sha512-LxD8fY1lByomEPflwur9o4e2a5twSQ7TaVNLlFUuToIdoJuBt8tzHfCsZ42Ok6LkKXWzFWf3AGmheuLAA7LcCA==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.4" + } + }, + "jest-snapshot": { + "version": "25.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-25.5.1.tgz", + "integrity": "sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ==", + "dev": true, + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^25.5.0", + "@types/prettier": "^1.19.0", + "chalk": "^3.0.0", + "expect": "^25.5.0", + "graceful-fs": "^4.2.4", + "jest-diff": "^25.5.0", + "jest-get-type": "^25.2.6", + "jest-matcher-utils": "^25.5.0", + "jest-message-util": "^25.5.0", + "jest-resolve": "^25.5.1", + "make-dir": "^3.0.0", + "natural-compare": "^1.4.0", + "pretty-format": "^25.5.0", + "semver": "^6.3.0" + }, + "dependencies": { + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "jest-util": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-25.5.0.tgz", + "integrity": "sha512-KVlX+WWg1zUTB9ktvhsg2PXZVdkI1NBevOJSkTKYAyXyH4QSvh+Lay/e/v+bmaFfrkfx43xD8QTfgobzlEXdIA==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "make-dir": "^3.0.0" + }, + "dependencies": { + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } + } + }, + "jest-validate": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-25.5.0.tgz", + "integrity": "sha512-okUFKqhZIpo3jDdtUXUZ2LxGUZJIlfdYBvZb1aczzxrlyMlqdnnws9MOxezoLGhSaFc2XYaHNReNQfj5zPIWyQ==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "camelcase": "^5.3.1", + "chalk": "^3.0.0", + "jest-get-type": "^25.2.6", + "leven": "^3.1.0", + "pretty-format": "^25.5.0" + }, + "dependencies": { + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } + } + }, + "jest-watcher": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-25.5.0.tgz", + "integrity": "sha512-XrSfJnVASEl+5+bb51V0Q7WQx65dTSk7NL4yDdVjPnRNpM0hG+ncFmDYJo9O8jaSRcAitVbuVawyXCRoxGrT5Q==", + "dev": true, + "requires": { + "@jest/test-result": "^25.5.0", + "@jest/types": "^25.5.0", + "ansi-escapes": "^4.2.1", + "chalk": "^3.0.0", + "jest-util": "^25.5.0", + "string-length": "^3.1.0" + }, + "dependencies": { + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } + } + }, + "jest-worker": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-25.5.0.tgz", + "integrity": "sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw==", + "dev": true, + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + } + }, + "jju": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", + "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==" + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "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, + "requires": { + "argparse": "^2.0.1" + }, + "dependencies": { + "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 + } + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", + "dev": true + }, + "jsdom": { + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-11.11.0.tgz", + "integrity": "sha512-ou1VyfjwsSuWkudGxb03FotDajxAto6USAlmMZjE2lc0jCznt7sBWkhfRBRaWwbnmDqdMSTKTLT5d9sBFkkM7A==", + "dev": true, + "requires": { + "abab": "^1.0.4", + "acorn": "^5.3.0", + "acorn-globals": "^4.1.0", + "array-equal": "^1.0.0", + "cssom": ">= 0.3.2 < 0.4.0", + "cssstyle": ">= 0.3.1 < 0.4.0", + "data-urls": "^1.0.0", + "domexception": "^1.0.0", + "escodegen": "^1.9.0", + "html-encoding-sniffer": "^1.0.2", + "left-pad": "^1.2.0", + "nwsapi": "^2.0.0", + "parse5": "4.0.0", + "pn": "^1.1.0", + "request": "^2.83.0", + "request-promise-native": "^1.0.5", + "sax": "^1.2.4", + "symbol-tree": "^3.2.2", + "tough-cookie": "^2.3.3", + "w3c-hr-time": "^1.0.1", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.3", + "whatwg-mimetype": "^2.1.0", + "whatwg-url": "^6.4.1", + "ws": "^4.0.0", + "xml-name-validator": "^3.0.0" + }, + "dependencies": { + "abab": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/abab/-/abab-1.0.4.tgz", + "integrity": "sha512-I+Wi+qiE2kUXyrRhNsWv6XsjUTBJjSoVSctKNBfLG5zG/Xe7Rjbxf13+vqYHNTwHaFU+FtSlVxOCTiMEVtPv0A==", + "dev": true + }, + "acorn": { + "version": "5.7.4", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", + "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==", + "dev": true + }, + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + }, + "cssstyle": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-0.3.1.tgz", + "integrity": "sha512-tNvaxM5blOnxanyxI6panOsnfiyLRj3HV4qjqqS45WPNS1usdYWRUQjqTEEELK73lpeP/1KoIGYUwrBn/VcECA==", + "dev": true, + "requires": { + "cssom": "0.3.x" + } + }, + "parse5": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", + "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==", + "dev": true + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "dev": true + }, + "whatwg-url": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz", + "integrity": "sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==", + "dev": true, + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "ws": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-4.1.0.tgz", + "integrity": "sha512-ZGh/8kF9rrRNffkLFV4AzhvooEclrOH0xaugmqGsIfFgOE/pIz4fMc4Ef+5HSQqTEug2S9JZIWDR47duDSLfaA==", + "dev": true, + "requires": { + "async-limiter": "~1.0.0", + "safe-buffer": "~5.1.0" + } + } + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "dev": true + }, + "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==" + }, + "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 + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "dev": true + }, + "json5": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", + "integrity": "sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==" + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "jsonpath-plus": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonpath-plus/-/jsonpath-plus-4.0.0.tgz", + "integrity": "sha512-e0Jtg4KAzDJKKwzbLaUtinCn0RZseWBVRTRGihSpvFlM3wTR7ExSp+PTdeTsDrLNJUe7L7JYJe8mblHX5SCT6A==", + "dev": true + }, + "jspath": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/jspath/-/jspath-0.4.0.tgz", + "integrity": "sha512-2/R8wkot8NCXrppBT/onp+4mcAUAZqtPxsW6aSJU3hrFAVqKqtFYcat2XJZ7inN4RtATUxfv0UQSYOmvJKiIGA==" + }, + "jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + } + }, + "jsx-ast-utils": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", + "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", + "dev": true, + "requires": { + "array-includes": "^3.1.5", + "object.assign": "^4.1.3" + } + }, + "jszip": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.7.1.tgz", + "integrity": "sha512-ghL0tz1XG9ZEmRMcEN2vt7xabrDdqHHeykgARpmZ0BiIctWxM47Vt63ZO2dnp4QYt/xJVLLy5Zv1l/xRdh2byg==", + "dev": true, + "requires": { + "lie": "~3.3.0", + "pako": "~1.0.2", + "readable-stream": "~2.3.6", + "set-immediate-shim": "~1.0.1" + } + }, + "just-debounce": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz", + "integrity": "sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==", + "dev": true + }, + "jwa": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", + "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", + "dev": true, + "requires": { + "buffer-equal-constant-time": "1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" + } + }, + "jws": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", + "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", + "dev": true, + "requires": { + "jwa": "^1.4.1", + "safe-buffer": "^5.0.1" + } + }, + "kill-port": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/kill-port/-/kill-port-1.6.1.tgz", + "integrity": "sha512-un0Y55cOM7JKGaLnGja28T38tDDop0AQ8N0KlAdyh+B1nmMoX8AnNmqPNZbS3mUMgiST51DCVqmbFT1gNJpVNw==", + "dev": true, + "requires": { + "get-them-args": "1.3.2", + "shell-exec": "1.0.2" + } + }, + "killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", + "dev": true + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + }, + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true + }, + "klona": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/klona/-/klona-1.1.2.tgz", + "integrity": "sha512-xf88rTeHiXk+XE2Vhi6yj8Wm3gMZrygGdKjJqN8HkV+PwF/t50/LdAKHoHpPcxFAlmQszTZ1CugrK25S7qDRLA==", + "dev": true + }, + "last-run": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", + "integrity": "sha512-U/VxvpX4N/rFvPzr3qG5EtLKEnNI0emvIQB3/ecEwv+8GHaUKbIB8vxv1Oai5FAF0d0r7LXHhLLe5K/yChm5GQ==", + "dev": true, + "requires": { + "default-resolution": "^2.0.0", + "es6-weak-map": "^2.0.1" + } + }, + "lazystream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", + "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", + "dev": true, + "requires": { + "readable-stream": "^2.0.5" + } + }, + "lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==", + "dev": true, + "requires": { + "invert-kv": "^1.0.0" + } + }, + "lead": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", + "integrity": "sha512-IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow==", + "dev": true, + "requires": { + "flush-write-stream": "^1.0.2" + } + }, + "left-pad": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz", + "integrity": "sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==", + "dev": true + }, + "levdist": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/levdist/-/levdist-1.0.0.tgz", + "integrity": "sha512-YguwC2spb0pqpJM3a5OsBhih/GG2ZHoaSHnmBqhEI7997a36buhqcRTegEjozHxyxByIwLpZHZTVYMThq+Zd3g==", + "dev": true + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true + }, + "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, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "lie": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", + "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", + "dev": true, + "requires": { + "immediate": "~3.0.5" + } + }, + "liftoff": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz", + "integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==", + "dev": true, + "requires": { + "extend": "^3.0.0", + "findup-sync": "^3.0.0", + "fined": "^1.0.1", + "flagged-respawn": "^1.0.0", + "is-plain-object": "^2.0.4", + "object.map": "^1.0.0", + "rechoir": "^0.6.2", + "resolve": "^1.1.7" + } + }, + "line-diff": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/line-diff/-/line-diff-2.1.1.tgz", + "integrity": "sha512-vswdynAI5AMPJacOo2o+JJ4caDJbnY2NEqms4MhMW0NJbjh3skP/brpVTAgBxrg55NRZ2Vtw88ef18hnagIpYQ==", + "dev": true, + "requires": { + "levdist": "^1.0.0" + } + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "linkify-it": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.3.tgz", + "integrity": "sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==", + "requires": { + "uc.micro": "^1.0.1" + } + }, + "lit-element": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-2.5.1.tgz", + "integrity": "sha512-ogu7PiJTA33bEK0xGu1dmaX5vhcRjBXCFexPja0e7P7jqLhTpNKYRPmE+GmiCaRVAbiQKGkUgkh/i6+bh++dPQ==", + "requires": { + "lit-html": "^1.1.1" + } + }, + "lit-html": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-1.4.1.tgz", + "integrity": "sha512-B9btcSgPYb1q4oSOb/PrOT6Z/H+r6xuNzfH4lFli/AWhYwdtrgQkQWBbIc6mdnf6E2IL3gDXdkkqNktpU0OZQA==" + }, + "livereload-js": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/livereload-js/-/livereload-js-2.4.0.tgz", + "integrity": "sha512-XPQH8Z2GDP/Hwz2PCDrh2mth4yFejwA1OZ/81Ti3LgKyhDcEjsSsqFWZojHG0va/duGd+WyosY7eXLDoOyqcPw==", + "dev": true + }, + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "dependencies": { + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", + "dev": true, + "requires": { + "error-ex": "^1.2.0" + } + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", + "dev": true, + "requires": { + "is-utf8": "^0.2.0" + } + } + } + }, + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "dev": true + }, + "loader-utils": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz", + "integrity": "sha512-gkD9aSEG9UGglyPcDJqY9YBTUtCLKaBK6ihD2VP1d1X60lTfFspNZNulGBBbUZLkPygy4LySYHyxBpq+VhjObQ==", + "requires": { + "big.js": "^3.1.3", + "emojis-list": "^2.0.0", + "json5": "^0.5.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, + "lodash._basecopy": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz", + "integrity": "sha512-rFR6Vpm4HeCK1WPGvjZSJ+7yik8d8PVUdCJx5rT2pogG4Ve/2ZS7kfmO5l5T2o5V2mqlNIfSF5MZlr1+xOoYQQ==", + "dev": true + }, + "lodash._basetostring": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz", + "integrity": "sha512-mTzAr1aNAv/i7W43vOR/uD/aJ4ngbtsRaCubp2BfZhlGU/eORUjg/7F6X0orNMdv33JOrdgGybtvMN/po3EWrA==", + "dev": true + }, + "lodash._basevalues": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz", + "integrity": "sha512-H94wl5P13uEqlCg7OcNNhMQ8KvWSIyqXzOPusRgHC9DK3o54P6P3xtbXlVbRABG4q5gSmp7EDdJ0MSuW9HX6Mg==", + "dev": true + }, + "lodash._getnative": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", + "integrity": "sha512-RrL9VxMEPyDMHOd9uFbvMe8X55X16/cGM5IgOKgRElQZutpX89iS6vwl64duTV1/16w5JY7tuFNXqoekmh1EmA==", + "dev": true + }, + "lodash._isiterateecall": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz", + "integrity": "sha512-De+ZbrMu6eThFti/CSzhRvTKMgQToLxbij58LMfM8JnYDNSOjkjTCIaa8ixglOeGh2nyPlakbt5bJWJ7gvpYlQ==", + "dev": true + }, + "lodash._reescape": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz", + "integrity": "sha512-Sjlavm5y+FUVIF3vF3B75GyXrzsfYV8Dlv3L4mEpuB9leg8N6yf/7rU06iLPx9fY0Mv3khVp9p7Dx0mGV6V5OQ==", + "dev": true + }, + "lodash._reevaluate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz", + "integrity": "sha512-OrPwdDc65iJiBeUe5n/LIjd7Viy99bKwDdk7Z5ljfZg0uFRFlfQaCy9tZ4YMAag9WAZmlVpe1iZrkIMMSMHD3w==", + "dev": true + }, + "lodash._reinterpolate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==", + "dev": true + }, + "lodash._root": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz", + "integrity": "sha512-O0pWuFSK6x4EXhM1dhZ8gchNtG7JMqBtrHdoUFUWXD7dJnNSUze1GuyQr5sOs0aCvgGeI3o/OJW8f4ca7FDxmQ==", + "dev": true + }, + "lodash.assign": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", + "integrity": "sha512-hFuH8TY+Yji7Eja3mGiuAxBqLagejScbG8GbG0j6o9vzn0YL14My+ktnqtZgFTosKymC9/44wP6s7xyuLfnClw==", + "dev": true + }, + "lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "dev": true + }, + "lodash.escape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz", + "integrity": "sha512-n1PZMXgaaDWZDSvuNZ/8XOcYO2hOKDqZel5adtR30VKQAtoWs/5AOeFA0vPV8moiPzlqe7F4cP2tzpFewQyelQ==", + "dev": true, + "requires": { + "lodash._root": "^3.0.0" + } + }, + "lodash.get": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", + "integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==" + }, + "lodash.isarguments": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", + "integrity": "sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==", + "dev": true + }, + "lodash.isarray": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", + "integrity": "sha512-JwObCrNJuT0Nnbuecmqr5DgtuBppuCvGD9lxjFpAzwnVtdGoDQ1zig+5W8k5/6Gcn0gZ3936HDAlGd28i7sOGQ==", + "dev": true + }, + "lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" + }, + "lodash.keys": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", + "integrity": "sha512-CuBsapFjcubOGMn3VD+24HOAPxM79tH+V6ivJL3CHYjtrawauDJHUk//Yew9Hvc6e9rbCrURGk8z6PC+8WJBfQ==", + "dev": true, + "requires": { + "lodash._getnative": "^3.0.0", + "lodash.isarguments": "^3.0.0", + "lodash.isarray": "^3.0.0" + } + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "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 + }, + "lodash.restparam": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz", + "integrity": "sha512-L4/arjjuq4noiUJpt3yS6KIKDtJwNe2fIYgMqyYYKoeIfV1iEqvPwhCx23o+R9dzouGihDAPN1dTIRWa7zk8tw==", + "dev": true + }, + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", + "dev": true + }, + "lodash.template": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz", + "integrity": "sha512-0B4Y53I0OgHUJkt+7RmlDFWKjVAI/YUpWNiL9GQz5ORDr4ttgfQGo+phBWKFLJbBdtOwgMuUkdOHOnPg45jKmQ==", + "dev": true, + "requires": { + "lodash._basecopy": "^3.0.0", + "lodash._basetostring": "^3.0.0", + "lodash._basevalues": "^3.0.0", + "lodash._isiterateecall": "^3.0.0", + "lodash._reinterpolate": "^3.0.0", + "lodash.escape": "^3.0.0", + "lodash.keys": "^3.0.0", + "lodash.restparam": "^3.0.0", + "lodash.templatesettings": "^3.0.0" + } + }, + "lodash.templatesettings": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz", + "integrity": "sha512-TcrlEr31tDYnWkHFWDCV3dHYroKEXpJZ2YJYvJdhN+y4AkWMDZ5I4I8XDtUKqSAyG81N7w+I1mFEJtcED+tGqQ==", + "dev": true, + "requires": { + "lodash._reinterpolate": "^3.0.0", + "lodash.escape": "^3.0.0" + } + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true + }, + "loglevel": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz", + "integrity": "sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==", + "dev": true + }, + "lolex": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/lolex/-/lolex-5.1.2.tgz", + "integrity": "sha512-h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H/3bjwfMJtN+t3CX8672UIkglz28A==", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.7.0" + } + }, + "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==", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "loud-rejection": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", + "integrity": "sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==", + "dev": true, + "requires": { + "currently-unhandled": "^0.4.1", + "signal-exit": "^3.0.0" + } + }, + "lower-case": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", + "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==", + "dev": true + }, + "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==", + "requires": { + "yallist": "^4.0.0" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "make-iterator": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", + "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", + "dev": true, + "requires": { + "kind-of": "^6.0.2" + } + }, + "makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "requires": { + "tmpl": "1.0.5" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "dev": true + }, + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", + "dev": true + }, + "map-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.0.7.tgz", + "integrity": "sha512-C0X0KQmGm3N2ftbTGBhSyuydQ+vV1LC3f3zPvT3RXHXNZrvfPZcoXp/N5DOa8vedX/rTMm2CjTtivFg2STJMRQ==", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "dev": true, + "requires": { + "object-visit": "^1.0.0" + } + }, + "markdown-it": { + "version": "12.3.2", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.2.tgz", + "integrity": "sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==", + "requires": { + "argparse": "^2.0.1", + "entities": "~2.1.0", + "linkify-it": "^3.0.1", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "entities": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", + "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==" + } + } + }, + "matchdep": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz", + "integrity": "sha512-LFgVbaHIHMqCRuCZyfCtUOq9/Lnzhi7Z0KFUE2fhD54+JN2jLh3hC02RLkqauJ3U4soU6H1J3tfj/Byk7GoEjA==", + "dev": true, + "requires": { + "findup-sync": "^2.0.0", + "micromatch": "^3.0.4", + "resolve": "^1.4.0", + "stack-trace": "0.0.10" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "findup-sync": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", + "integrity": "sha512-vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g==", + "dev": true, + "requires": { + "detect-file": "^1.0.0", + "is-glob": "^3.1.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + } + }, + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "requires": { + "is-extglob": "^2.1.0" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", + "dev": true + }, + "mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==" + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true + }, + "memfs": { + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.7.tgz", + "integrity": "sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw==", + "dev": true, + "requires": { + "fs-monkey": "^1.0.3" + } + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "meow": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", + "integrity": "sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==", + "dev": true, + "requires": { + "camelcase-keys": "^2.0.0", + "decamelize": "^1.1.2", + "loud-rejection": "^1.0.0", + "map-obj": "^1.0.1", + "minimist": "^1.1.3", + "normalize-package-data": "^2.3.4", + "object-assign": "^4.0.1", + "read-pkg-up": "^1.0.1", + "redent": "^1.0.0", + "trim-newlines": "^1.0.0" + }, + "dependencies": { + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", + "dev": true, + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", + "dev": true, + "requires": { + "pinkie-promise": "^2.0.0" + } + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", + "dev": true, + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", + "dev": true, + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + } + } + } + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true + }, + "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 + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "mime": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", + "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==", + "dev": true + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "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 + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", + "dev": true + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", + "dev": true + }, + "minipass": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.4.tgz", + "integrity": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + } + }, + "mississippi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "dev": true, + "requires": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + } + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "requires": { + "minimist": "^1.2.6" + } + }, + "moment": { + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" + }, + "monaco-editor": { + "version": "0.32.1", + "resolved": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.32.1.tgz", + "integrity": "sha512-LUt2wsUvQmEi2tfTOK+tjAPvt7eQ+K5C4rZPr6SeuyzjAuAHrIvlUloTcOiGjZW3fn3a/jFQCONrEJbNOaCqbA==" + }, + "move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==", + "dev": true, + "requires": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + }, + "dependencies": { + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "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 + }, + "msal": { + "version": "1.4.17", + "resolved": "https://registry.npmjs.org/msal/-/msal-1.4.17.tgz", + "integrity": "sha512-RjHwP2cCIWQ9iUIk1SziUMb9+jj5mC4OqG2w16E5yig8jySi/TwiFvKlwcjNrPsndph0HtgCtbENnk5julf3yQ==", + "requires": { + "tslib": "^1.9.3" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "msalLegacy": { + "version": "npm:msal@1.4.12", + "resolved": "https://registry.npmjs.org/msal/-/msal-1.4.12.tgz", + "integrity": "sha512-gjupwQ6nvNL6mZkl5NIXyUmZhTiEMRu5giNdgHMh8l5EPOnV2Xj6nukY1NIxFacSTkEYUSDB47Pej9GxDYf+1w==", + "requires": { + "tslib": "^1.9.3" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dev": true, + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + } + }, + "multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==", + "dev": true + }, + "multipipe": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz", + "integrity": "sha512-7ZxrUybYv9NonoXgwoOqtStIu18D1c3eFZj27hqgf5kBrBF8Q+tE8V0MW8dKM5QLkQPh1JhhbKgHLY9kifov4Q==", + "dev": true, + "requires": { + "duplexer2": "0.0.2" + } + }, + "mute-stdout": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz", + "integrity": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==", + "dev": true + }, + "mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, + "mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "requires": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "nan": { + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz", + "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==", + "dev": true, + "optional": true + }, + "nano-css": { + "version": "5.3.5", + "resolved": "https://registry.npmjs.org/nano-css/-/nano-css-5.3.5.tgz", + "integrity": "sha512-vSB9X12bbNu4ALBu7nigJgRViZ6ja3OU7CeuiV1zMIbXOdmkLahgtPmh3GBOlDxbKY0CitqlPdOReGlBLSp+yg==", + "requires": { + "css-tree": "^1.1.2", + "csstype": "^3.0.6", + "fastest-stable-stringify": "^2.0.2", + "inline-style-prefixer": "^6.0.0", + "rtl-css-js": "^1.14.0", + "sourcemap-codec": "^1.4.8", + "stacktrace-js": "^2.0.2", + "stylis": "^4.0.6" + }, + "dependencies": { + "css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + } + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "stylis": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.1.3.tgz", + "integrity": "sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==" + } + } + }, + "nanocolors": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/nanocolors/-/nanocolors-0.2.13.tgz", + "integrity": "sha512-0n3mSAQLPpGLV9ORXT5+C/D4mwew7Ebws69Hx4E2sgz2ZA5+32Q80B9tL8PbL7XHnRDiAxH/pnrUJ9a4fkTNTA==", + "dev": true + }, + "nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "dev": true + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + } + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "next-tick": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "no-case": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", + "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", + "dev": true, + "requires": { + "lower-case": "^1.1.1" + } + }, + "node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "requires": { + "whatwg-url": "^5.0.0" + } + }, + "node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "dev": true + }, + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "dev": true, + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + }, + "dependencies": { + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", + "dev": true + } + } + }, + "node-notifier": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-10.0.1.tgz", + "integrity": "sha512-YX7TSyDukOZ0g+gmzjB6abKu+hTGvO8+8+gIFDsRCU2t8fLV/P2unmt+LGFaIa4y64aX98Qksa97rgz4vMNeLQ==", + "dev": true, + "requires": { + "growly": "^1.3.0", + "is-wsl": "^2.2.0", + "semver": "^7.3.5", + "shellwords": "^0.1.1", + "uuid": "^8.3.2", + "which": "^2.0.2" + }, + "dependencies": { + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true + } + } + }, + "node-releases": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", + "dev": true + }, + "node-zip": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/node-zip/-/node-zip-1.1.1.tgz", + "integrity": "sha512-sXfGL65EcaAJqNSXxuyf//i4D4geUtJgZDYUd7IBo2/CH8XY8vcWh1+CBCxuVVyR+S4vAFc3hr//JkCi2+V5vg==", + "dev": true, + "requires": { + "jszip": "2.5.0" + }, + "dependencies": { + "jszip": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/jszip/-/jszip-2.5.0.tgz", + "integrity": "sha512-IRoyf8JSYY3nx+uyh5xPc0qdy8pUDTp2UkHOWYNF/IO/3D8nx7899UlSAjD8rf8wUgOmm0lACWx/GbW3EaxIXQ==", + "dev": true, + "requires": { + "pako": "~0.2.5" + } + }, + "pako": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", + "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==", + "dev": true + } + } + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "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 + }, + "normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==", + "dev": true + }, + "now-and-later": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", + "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", + "dev": true, + "requires": { + "once": "^1.3.2" + } + }, + "npm-bundled": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz", + "integrity": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==", + "dev": true, + "requires": { + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npm-normalize-package-bin": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", + "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==", + "dev": true + }, + "npm-package-arg": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-6.1.1.tgz", + "integrity": "sha512-qBpssaL3IOZWi5vEKUKW0cO7kzLeT+EQO9W8RsLOZf76KF9E/K9+wH0C7t06HXPpaH8WH5xF1MExLuCwbTqRUg==", + "dev": true, + "requires": { + "hosted-git-info": "^2.7.1", + "osenv": "^0.1.5", + "semver": "^5.6.0", + "validate-npm-package-name": "^3.0.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "npm-packlist": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-2.1.5.tgz", + "integrity": "sha512-KCfK3Vi2F+PH1klYauoQzg81GQ8/GGjQRKYY6tRnpQUPKTs/1gBZSRWtTEd7jGdSn1LZL7gpAmJT+BcS55k2XQ==", + "dev": true, + "requires": { + "glob": "^7.1.6", + "ignore-walk": "^3.0.3", + "npm-bundled": "^1.1.1", + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "requires": { + "path-key": "^2.0.0" + }, + "dependencies": { + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true + } + } + }, + "nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dev": true, + "requires": { + "boolbase": "~1.0.0" + } + }, + "num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==", + "dev": true + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", + "dev": true + }, + "nwsapi": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.2.tgz", + "integrity": "sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==", + "dev": true + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "dev": true + }, + "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==" + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "dev": true, + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-inspect": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", + "dev": true + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "dev": true, + "requires": { + "isobject": "^3.0.0" + } + }, + "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, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + } + }, + "object.defaults": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", + "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", + "dev": true, + "requires": { + "array-each": "^1.0.1", + "array-slice": "^1.0.0", + "for-own": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "object.entries": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", + "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.fromentries": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz", + "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.getownpropertydescriptors": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.4.tgz", + "integrity": "sha512-sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ==", + "dev": true, + "requires": { + "array.prototype.reduce": "^1.0.4", + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.1" + } + }, + "object.hasown": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.1.tgz", + "integrity": "sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==", + "dev": true, + "requires": { + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" + } + }, + "object.map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", + "integrity": "sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==", + "dev": true, + "requires": { + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "object.reduce": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz", + "integrity": "sha512-naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw==", + "dev": true, + "requires": { + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + } + }, + "object.values": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", + "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "office-ui-fabric-core": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/office-ui-fabric-core/-/office-ui-fabric-core-11.0.1.tgz", + "integrity": "sha512-jcfycbVOm2aUoI+AGtHW24HvM7nUVFr44hR5NIE56EobK67bVwbNAQL15CJj3vNz5PBrnitsV9ROOB+KOEWn8g==" + }, + "office-ui-fabric-react": { + "version": "7.185.7", + "resolved": "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.185.7.tgz", + "integrity": "sha512-JiWkrjT/T6OG63ATu6RUlME2PBe4pgxQOwRTOjvbsaq8mlyd9i21ImgwkTEvcNXJpx+4w0bJiuQTcdwSMyf6qA==", + "requires": { + "@fluentui/date-time-utilities": "^7.9.1", + "@fluentui/react-focus": "^7.18.4", + "@fluentui/react-window-provider": "^1.0.3", + "@microsoft/load-themed-styles": "^1.10.26", + "@uifabric/foundation": "^7.10.3", + "@uifabric/icons": "^7.7.2", + "@uifabric/merge-styles": "^7.19.2", + "@uifabric/react-hooks": "^7.14.2", + "@uifabric/set-version": "^7.0.24", + "@uifabric/styling": "^7.20.2", + "@uifabric/utilities": "^7.34.1", + "prop-types": "^15.7.2", + "tslib": "^1.10.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true + }, + "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, + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "opn": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.2.0.tgz", + "integrity": "sha512-Jd/GpzPyHF4P2/aNOVmS3lfMSWV9J7cOhCG1s08XCEAsPkB7lp6ddiU0J7XzyQRDUh8BqJ7PchfINjR8jyofRQ==", + "dev": true, + "requires": { + "is-wsl": "^1.1.0" + }, + "dependencies": { + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "dev": true + } + } + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "requires": { + "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.3" + } + }, + "orchestrator": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/orchestrator/-/orchestrator-0.3.8.tgz", + "integrity": "sha512-DrQ43ngaJ0e36j2CHyoDoIg1K4zbc78GnTQESebK9vu6hj4W5/pvfSFO/kgM620Yd0YnhseSNYsLK3/SszZ5NQ==", + "dev": true, + "requires": { + "end-of-stream": "~0.1.5", + "sequencify": "~0.0.7", + "stream-consume": "~0.1.0" + }, + "dependencies": { + "end-of-stream": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-0.1.5.tgz", + "integrity": "sha512-go5TQkd0YRXYhX+Lc3UrXkoKU5j+m72jEP5lHWr2Nh82L8wfZtH8toKgcg4T10o23ELIMGXQdwCbl+qAXIPDrw==", + "dev": true, + "requires": { + "once": "~1.3.0" + } + }, + "once": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", + "integrity": "sha512-6vaNInhu+CHxtONf3zw3vq4SP2DOQhjBvIa3rNcG0+P7eKWlYH6Peu7rHizSloRU2EwMz6GraLieis9Ac9+p1w==", + "dev": true, + "requires": { + "wrappy": "1" + } + } + } + }, + "ordered-read-streams": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", + "integrity": "sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==", + "dev": true, + "requires": { + "readable-stream": "^2.0.1" + } + }, + "os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", + "dev": true + }, + "os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==", + "dev": true + }, + "os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==", + "dev": true, + "requires": { + "lcid": "^1.0.0" + } + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "dev": true + }, + "osenv": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", + "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "dev": true, + "requires": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, + "p-each-series": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz", + "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==", + "dev": true + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "dev": true + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "p-reflect": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-reflect/-/p-reflect-2.1.0.tgz", + "integrity": "sha512-paHV8NUz8zDHu5lhr/ngGWQiW067DK/+IbJ+RfZ4k+s8y4EKyYCz8pGYWjxCg35eHztpJAt+NUgvN4L+GCbPlg==", + "dev": true + }, + "p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dev": true, + "requires": { + "retry": "^0.12.0" + } + }, + "p-settle": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/p-settle/-/p-settle-4.1.1.tgz", + "integrity": "sha512-6THGh13mt3gypcNMm0ADqVNCcYa3BK6DWsuJWFCuEKP1rpY+OKGp7gaZwVmLspmic01+fsg/fN57MfvDzZ/PuQ==", + "dev": true, + "requires": { + "p-limit": "^2.2.2", + "p-reflect": "^2.1.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "dev": true + }, + "parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "dev": true, + "requires": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + } + }, + "param-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", + "integrity": "sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==", + "dev": true, + "requires": { + "no-case": "^2.2.0" + } + }, + "parchment": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/parchment/-/parchment-1.1.4.tgz", + "integrity": "sha512-J5FBQt/pM2inLzg4hEWmzQx/8h8D0CiDxaG3vyp9rKrQRSDgBlhjdP5jQGgosEajXPSQouXGHOmVdgo7QmJuOg==" + }, + "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, + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "dev": true, + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "parse-filepath": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", + "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", + "dev": true, + "requires": { + "is-absolute": "^1.0.0", + "map-cache": "^0.2.0", + "path-root": "^0.1.1" + } + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "dev": true + }, + "parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "dev": true + }, + "parse5": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.0.tgz", + "integrity": "sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==", + "dev": true + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "dev": true + }, + "path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", + "dev": true + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", + "dev": true + }, + "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 + }, + "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 + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", + "dev": true + }, + "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 + }, + "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==" + }, + "path-root": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", + "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", + "dev": true, + "requires": { + "path-root-regex": "^0.1.0" + } + }, + "path-root-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", + "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", + "dev": true + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true + }, + "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 + }, + "pause-stream": { + "version": "0.0.11", + "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", + "integrity": "sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==", + "dev": true, + "requires": { + "through": "~2.3" + } + }, + "pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "dev": true, + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", + "dev": true + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pidof": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pidof/-/pidof-1.0.2.tgz", + "integrity": "sha512-LLJhTVEUCZnotdAM5rd7KiTdLGgk6i763/hsd5pO+8yuF7mdgg0ob8w/98KrTAcPsj6YzGrkFLPVtBOr1uW2ag==", + "dev": true + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "requires": { + "pinkie": "^2.0.0" + } + }, + "pirates": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", + "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", + "dev": true + }, + "pkg-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-1.1.3.tgz", + "integrity": "sha512-9hHgE5+Xai/ChrnahNP8Ke0VNF/s41IZIB/d24eMHEaRamdPg+wwlRm2lTb5wMvE8eTIKrYZsrxfuOwt3dpsIQ==", + "dev": true, + "requires": { + "find-up": "^1.0.0", + "load-json-file": "^1.1.0", + "object-assign": "^4.0.1", + "symbol": "^0.2.1" + }, + "dependencies": { + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", + "dev": true, + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", + "dev": true, + "requires": { + "pinkie-promise": "^2.0.0" + } + } + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + }, + "plugin-log": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/plugin-log/-/plugin-log-0.1.0.tgz", + "integrity": "sha512-TzmfWRMEFAnrZbI4GfyXv9Gp5E71eby3gmvnP6LEfmYbVC8FPN2RBRhwxg4sjIg+fy8AJ3mczhLXvk0pzHPeMg==", + "dev": true, + "requires": { + "chalk": "^1.1.1", + "dateformat": "^1.0.11" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "dev": true, + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + } + }, + "dateformat": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-1.0.12.tgz", + "integrity": "sha512-5sFRfAAmbHdIts+eKjR9kYJoF0ViCMVX9yqLu5A7S/v+nd077KgCITOMiirmyCBiZpKLDXbBOkYm6tu7rX/TKg==", + "dev": true, + "requires": { + "get-stdin": "^4.0.1", + "meow": "^3.3.0" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", + "dev": true + } + } + }, + "pn": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz", + "integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==", + "dev": true + }, + "portfinder": { + "version": "1.0.32", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", + "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", + "dev": true, + "requires": { + "async": "^2.6.4", + "debug": "^3.2.7", + "mkdirp": "^0.5.6" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "dev": true + }, + "postcss": { + "version": "7.0.38", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.38.tgz", + "integrity": "sha512-wNrSHWjHDQJR/IZL5IKGxRtFgrYNaAA/UrkW2WqbtZO6uxSLMxMN+s2iqUMwnAWm3fMROlDYZB41dr0Mt7vBwQ==", + "dev": true, + "requires": { + "nanocolors": "^0.2.2", + "source-map": "^0.6.1" + } + }, + "postcss-calc": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", + "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", + "dev": true, + "requires": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + } + }, + "postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", + "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", + "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", + "dev": true, + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", + "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", + "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", + "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", + "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-load-config": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz", + "integrity": "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==", + "dev": true, + "requires": { + "cosmiconfig": "^5.0.0", + "import-cwd": "^2.0.0" + } + }, + "postcss-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz", + "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==", + "dev": true, + "requires": { + "loader-utils": "^1.1.0", + "postcss": "^7.0.0", + "postcss-load-config": "^2.0.0", + "schema-utils": "^1.0.0" + } + }, + "postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", + "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", + "dev": true, + "requires": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", + "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dev": true, + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", + "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", + "dev": true, + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", + "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", + "dev": true, + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", + "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", + "dev": true, + "requires": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", + "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", + "dev": true, + "requires": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dev": true, + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-modules": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/postcss-modules/-/postcss-modules-1.5.0.tgz", + "integrity": "sha512-KiAihzcV0TxTTNA5OXreyIXctuHOfR50WIhqBpc8pe0Q5dcs/Uap9EVlifOI9am7zGGdGOJQ6B1MPYKo2UxgOg==", + "dev": true, + "requires": { + "css-modules-loader-core": "^1.1.0", + "generic-names": "^2.0.1", + "lodash.camelcase": "^4.3.0", + "postcss": "^7.0.1", + "string-hash": "^1.1.1" + } + }, + "postcss-modules-extract-imports": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.1.0.tgz", + "integrity": "sha512-zF9+UIEvtpeqMGxhpeT9XaIevQSrBBCz9fi7SwfkmjVacsSj8DY5eFVgn+wY8I9vvdDDwK5xC8Myq4UkoLFIkA==", + "dev": true, + "requires": { + "postcss": "^6.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-modules-local-by-default": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz", + "integrity": "sha512-X4cquUPIaAd86raVrBwO8fwRfkIdbwFu7CTfEOjiZQHVQwlHRSkTgH5NLDmMm5+1hQO8u6dZ+TOOJDbay1hYpA==", + "dev": true, + "requires": { + "css-selector-tokenizer": "^0.7.0", + "postcss": "^6.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-modules-scope": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz", + "integrity": "sha512-LTYwnA4C1He1BKZXIx1CYiHixdSe9LWYVKadq9lK5aCCMkoOkFyZ7aigt+srfjlRplJY3gIol6KUNefdMQJdlw==", + "dev": true, + "requires": { + "css-selector-tokenizer": "^0.7.0", + "postcss": "^6.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-modules-values": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz", + "integrity": "sha512-i7IFaR9hlQ6/0UgFuqM6YWaCfA1Ej8WMg8A5DggnH1UGKJvTV/ugqq/KaULixzzOi3T/tF6ClBXcHGCzdd5unA==", + "dev": true, + "requires": { + "icss-replace-symbols": "^1.1.0", + "postcss": "^6.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", + "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", + "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", + "dev": true, + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", + "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", + "dev": true, + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", + "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", + "dev": true, + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", + "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", + "dev": true, + "requires": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", + "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", + "dev": true, + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", + "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", + "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", + "dev": true, + "requires": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", + "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", + "dev": true, + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", + "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", + "dev": true, + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", + "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + } + }, + "postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", + "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", + "dev": true, + "requires": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-selector-parser": { + "version": "6.0.10", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", + "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-svgo": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.3.tgz", + "integrity": "sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==", + "dev": true, + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", + "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", + "dev": true, + "requires": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + } + }, + "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 + }, + "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 + }, + "pretty-format": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-25.5.0.tgz", + "integrity": "sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==", + "dev": true, + "requires": { + "@jest/types": "^25.5.0", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^16.12.0" + } + }, + "pretty-hrtime": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", + "dev": true + }, + "private": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", + "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==", + "dev": true + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "dev": true + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", + "dev": true + }, + "prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + } + }, + "prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "requires": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + } + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true + }, + "pseudolocale": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pseudolocale/-/pseudolocale-1.1.0.tgz", + "integrity": "sha512-OZ8I/hwYEJ3beN3IEcNnt8EpcqblH0/x23hulKBXjs+WhTTEle+ijCHCkh2bd+cIIeCuCwSCbBe93IthGG6hLw==", + "dev": true, + "requires": { + "commander": "*" + } + }, + "psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + }, + "dependencies": { + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "dev": true + }, + "qs": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", + "dev": true + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", + "dev": true + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", + "dev": true + }, + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "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 + }, + "quill": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/quill/-/quill-1.3.7.tgz", + "integrity": "sha512-hG/DVzh/TiknWtE6QmWAF/pxoZKYxfe3J/d/+ShUWkDvvkZQVTPeVmUJVu1uE6DDooC4fWTiCLh84ul89oNz5g==", + "requires": { + "clone": "^2.1.1", + "deep-equal": "^1.0.1", + "eventemitter3": "^2.0.3", + "extend": "^3.0.2", + "parchment": "^1.1.4", + "quill-delta": "^3.6.2" + }, + "dependencies": { + "eventemitter3": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-2.0.3.tgz", + "integrity": "sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg==" + } + } + }, + "quill-delta": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/quill-delta/-/quill-delta-3.6.3.tgz", + "integrity": "sha512-wdIGBlcX13tCHOXGMVnnTVFtGRLoP0imqxM696fIPwIf5ODIYUHIvHbZcyvGlZFiFhK5XzDC2lpjbxRhnM05Tg==", + "requires": { + "deep-equal": "^1.0.1", + "extend": "^3.0.2", + "fast-diff": "1.1.2" + } + }, + "ramda": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.27.2.tgz", + "integrity": "sha512-SbiLPU40JuJniHexQSAgad32hfwd+DRUdwF2PlVuI5RZD0/vahUco7R8vD86J/tcEKKF9vZrUVwgtmGCqlCKyA==", + "dev": true + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true + }, + "raw-body": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz", + "integrity": "sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==", + "dev": true, + "requires": { + "bytes": "3.0.0", + "http-errors": "1.6.3", + "iconv-lite": "0.4.23", + "unpipe": "1.0.0" + }, + "dependencies": { + "iconv-lite": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", + "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + } + } + }, + "raw-loader": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/raw-loader/-/raw-loader-0.5.1.tgz", + "integrity": "sha512-sf7oGoLuaYAScB4VGr0tzetsYlS8EJH6qnTCfQ/WVEa89hALQ4RQfCKt5xCyPQKPDUbVUAIP1QsxAwfAjlDp7Q==" + }, + "react": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react/-/react-16.13.1.tgz", + "integrity": "sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2" + } + }, + "react-accessible-accordion": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/react-accessible-accordion/-/react-accessible-accordion-3.3.5.tgz", + "integrity": "sha512-yCh3tx+jNuOPs+m58LOBFTGDEaGvM8UfuCNznr855FDAWzwV8V/ZH/TVBvgqH0npP58KrrVrHpj4jcy0EE5hEw==" + }, + "react-addons-shallow-compare": { + "version": "15.6.3", + "resolved": "https://registry.npmjs.org/react-addons-shallow-compare/-/react-addons-shallow-compare-15.6.3.tgz", + "integrity": "sha512-EDJbgKTtGRLhr3wiGDXK/+AEJ59yqGS+tKE6mue0aNXT6ZMR7VJbbzIiT6akotmHg1BLj46ElJSb+NBMp80XBg==", + "requires": { + "object-assign": "^4.1.0" + } + }, + "react-dom": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.13.1.tgz", + "integrity": "sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2", + "scheduler": "^0.19.1" + } + }, + "react-dom-factories": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/react-dom-factories/-/react-dom-factories-1.0.2.tgz", + "integrity": "sha512-Bmic2N3oKji7vw9qjDr2dmwHvOATbFSnKy7EH0uT/qjvzIUsiXp6Yquk72LJ3WfMtRnq3ujXMMo7GsJeLPfFWw==" + }, + "react-fela": { + "version": "10.8.2", + "resolved": "https://registry.npmjs.org/react-fela/-/react-fela-10.8.2.tgz", + "integrity": "sha512-TDIuOzxwtPcMhxlR4be/s1Er5b7zS8D42QOzaZZGMJskfH1ULFSOpdlBsb32ivqacXatbGZzshHDXGV5vKNkhQ==", + "requires": { + "fela-bindings": "^10.8.2", + "fela-dom": "^10.8.2", + "prop-types": "^15.5.8" + } + }, + "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==" + }, + "react-mentions": { + "version": "4.4.7", + "resolved": "https://registry.npmjs.org/react-mentions/-/react-mentions-4.4.7.tgz", + "integrity": "sha512-VNriu2h/uOB+RS0mwZgPG2Vf+UtdDvRh5zbXa2TNc1WqacKuNDgTdhlbo9LEOZRBxRzIeTUYQmYJ7p9M9rDHqQ==", + "requires": { + "@babel/runtime": "7.4.5", + "invariant": "^2.2.4", + "prop-types": "^15.5.8", + "substyle": "^9.1.0" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.4.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.4.5.tgz", + "integrity": "sha512-TuI4qpWZP6lGOGIuGWtp9sPluqYICmbk8T/1vpSysqJxRPkudh/ofFWyqdcMsDf2s7KvDL4/YHgKyvcS3g9CJQ==", + "requires": { + "regenerator-runtime": "^0.13.2" + } + } + } + }, + "react-quill": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/react-quill/-/react-quill-1.3.5.tgz", + "integrity": "sha512-/W/rNCW+6QpGz8yQ9tFK5Ka/h/No1RqrcOOvCIOR092OiKzRFlU2xbPEwiP3Wgy/Dx13pi1YhjReDMX/5uotJg==", + "requires": { + "@types/quill": "1.3.10", + "create-react-class": "^15.6.0", + "lodash": "^4.17.4", + "prop-types": "^15.5.10", + "quill": "^1.3.7", + "react-dom-factories": "^1.0.0" + } + }, + "react-refresh": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", + "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", + "dev": true + }, + "react-refresh-typescript": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/react-refresh-typescript/-/react-refresh-typescript-2.0.6.tgz", + "integrity": "sha512-Aj7/SPmc9vFZTzizM6LVJf1UEQ76kVLb3Cd5J/bD3y25W9n+ZQjcSINoMJtOWXzCezm0apYKSE2jcl6NSa860g==", + "dev": true + }, + "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==", + "requires": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + } + }, + "read": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", + "integrity": "sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==", + "dev": true, + "requires": { + "mute-stream": "~0.0.4" + } + }, + "read-package-json": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-2.1.2.tgz", + "integrity": "sha512-D1KmuLQr6ZSJS0tW8hf3WGpRlwszJOXZ3E8Yd/DNRaM5d+1wVRZdHlpGBLAuovjr28LbWvjpWkBHMxpRGGjzNA==", + "dev": true, + "requires": { + "glob": "^7.1.1", + "json-parse-even-better-errors": "^2.3.0", + "normalize-package-data": "^2.0.0", + "npm-normalize-package-bin": "^1.0.0" + } + }, + "read-package-tree": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/read-package-tree/-/read-package-tree-5.1.6.tgz", + "integrity": "sha512-FCX1aT3GWyY658wzDICef4p+n0dB+ENRct8E/Qyvppj6xVpOYerBHfUu7OP5Rt1/393Tdglguf5ju5DEX4wZNg==", + "dev": true, + "requires": { + "debuglog": "^1.0.1", + "dezalgo": "^1.0.0", + "once": "^1.3.0", + "read-package-json": "^2.0.0", + "readdir-scoped-modules": "^1.0.0" + } + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "dependencies": { + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + } + } + }, + "read-yaml-file": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/read-yaml-file/-/read-yaml-file-2.1.0.tgz", + "integrity": "sha512-UkRNRIwnhG+y7hpqnycCL/xbTk7+ia9VuVTC0S+zVbwd65DI9eUpRMfsWIGrCWxTU/mi+JW8cHQCrv+zfCbEPQ==", + "dev": true, + "requires": { + "js-yaml": "^4.0.0", + "strip-bom": "^4.0.0" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "readdir-scoped-modules": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz", + "integrity": "sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==", + "dev": true, + "requires": { + "debuglog": "^1.0.1", + "dezalgo": "^1.0.0", + "graceful-fs": "^4.1.2", + "once": "^1.3.0" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "realpath-native": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/realpath-native/-/realpath-native-2.0.0.tgz", + "integrity": "sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q==", + "dev": true + }, + "recast": { + "version": "0.11.23", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.11.23.tgz", + "integrity": "sha512-+nixG+3NugceyR8O1bLU45qs84JgI3+8EauyRZafLgC9XbdAOIVgwV1Pe2da0YzGo62KzWoZwUpVEQf6qNAXWA==", + "dev": true, + "requires": { + "ast-types": "0.9.6", + "esprima": "~3.1.0", + "private": "~0.1.5", + "source-map": "~0.5.0" + }, + "dependencies": { + "esprima": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", + "integrity": "sha512-AWwVMNxwhN8+NIPQzAQZCm7RkLC4RbM3B1OobMuyp3i+w73X57KCKaVIxaRZb+DYCojq7rspo+fmuQfAboyhFg==", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true + } + } + }, + "rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", + "dev": true, + "requires": { + "resolve": "^1.1.6" + } + }, + "recoil": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/recoil/-/recoil-0.7.5.tgz", + "integrity": "sha512-GVShsj5+M/2GULWBs5WBJGcsNis/d3YvDiaKjYh3mLKXftjtmk9kfaQ8jwjoIXySCwn8/RhgJ4Sshwgzj2UpFA==", + "requires": { + "hamt_plus": "1.0.2" + } + }, + "redent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", + "integrity": "sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==", + "dev": true, + "requires": { + "indent-string": "^2.1.0", + "strip-indent": "^1.0.1" + } + }, + "regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + } + }, + "regexify-string": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/regexify-string/-/regexify-string-1.0.19.tgz", + "integrity": "sha512-EREOggl31J6v2Hk3ksPuOof0DMq5QhFfVQ7iDaGQ6BeA1QcrV4rhGvwCES5a72ITMmLBDAOb6cOWbn8/Ja82Ig==" + }, + "regexp.prototype.flags": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", + "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "functions-have-names": "^1.2.2" + } + }, + "regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "dev": true + }, + "remove-bom-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", + "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5", + "is-utf8": "^0.2.1" + } + }, + "remove-bom-stream": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", + "integrity": "sha512-wigO8/O08XHb8YPzpDDT+QmRANfW6vLqxfaXm1YXhnFf3AkSLyjfG3GEFg4McZkmgL7KvCj5u2KczkvSP6NfHA==", + "dev": true, + "requires": { + "remove-bom-buffer": "^3.0.0", + "safe-buffer": "^5.1.0", + "through2": "^2.0.3" + } + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", + "dev": true + }, + "repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "dev": true + }, + "repeating": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==", + "dev": true, + "requires": { + "is-finite": "^1.0.0" + } + }, + "replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true + }, + "replace-homedir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz", + "integrity": "sha512-CHPV/GAglbIB1tnQgaiysb8H2yCy8WQ7lcEwQ/eT+kLj0QHV8LnJW0zpqpE7RSkrMSRoa+EBoag86clf7WAgSg==", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1", + "is-absolute": "^1.0.0", + "remove-trailing-separator": "^1.1.0" + } + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "dev": true, + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + } + } + }, + "request-promise-core": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", + "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", + "dev": true, + "requires": { + "lodash": "^4.17.19" + } + }, + "request-promise-native": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", + "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", + "dev": true, + "requires": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "dependencies": { + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + } + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "requirejs": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/requirejs/-/requirejs-2.3.6.tgz", + "integrity": "sha512-ipEzlWQe6RK3jkzikgCupiTbTvm4S0/CAU5GlgptkN5SO6F3u0UD0K18wy6ErDqiCyP4J4YYe1HuAShvsxePLg==" + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, + "resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "requires": { + "path-parse": "^1.0.6" + } + }, + "resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "requires": { + "resolve-from": "^5.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true + } + } + }, + "resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", + "dev": true, + "requires": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + } + }, + "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 + }, + "resolve-options": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", + "integrity": "sha512-NYDgziiroVeDC29xq7bp/CacZERYsA9bXYd1ZmcJlF3BcrZv5pTb4NG7SjdyKDnXZ84aC4vo2u6sNKIA1LCu/A==", + "dev": true, + "requires": { + "value-or-function": "^3.0.0" + } + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "dev": true + }, + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true + }, + "retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "dev": true + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha512-gDK5mkALDFER2YLqH6imYvK6g02gpNGM4ILDZ472EwWfXZnC2ZEpoB2ECXTyOVUKuk/bPJZMzwQPBYICzP+D3w==", + "dev": true + }, + "rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha512-zgn5OjNQXLUTdq8m17KdaicF6w89TZs8ZU8y0AYENIU6wG8GG6LLm0yLSiPY8DmaYmHdgRW8rnApjoT0fQRfMg==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "rsvp": { + "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", + "dev": true + }, + "rtl-css-js": { + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/rtl-css-js/-/rtl-css-js-1.16.0.tgz", + "integrity": "sha512-Oc7PnzwIEU4M0K1J4h/7qUUaljXhQ0kCObRsZjxs2HjkpKsnoTMvSmvJ4sqgJZd0zBoEfAyTdnK/jMIYvrjySQ==", + "requires": { + "@babel/runtime": "^7.1.2" + } + }, + "run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "dev": true + }, + "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, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==", + "dev": true, + "requires": { + "aproba": "^1.1.1" + } + }, + "rxjs": { + "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "dev": true, + "requires": { + "tslib": "^1.9.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + } + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", + "dev": true, + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "sane": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", + "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "dev": true, + "requires": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "sass": { + "version": "1.44.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.44.0.tgz", + "integrity": "sha512-0hLREbHFXGQqls/K8X+koeP+ogFRPF4ZqetVB19b7Cst9Er8cOR0rc6RU7MaI4W1JmUShd1BPgPoeqmmgMMYFw==", + "dev": true, + "requires": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0" + }, + "dependencies": { + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + } + } + }, + "sass-loader": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-8.0.2.tgz", + "integrity": "sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ==", + "dev": true, + "requires": { + "clone-deep": "^4.0.1", + "loader-utils": "^1.2.3", + "neo-async": "^2.6.1", + "schema-utils": "^2.6.1", + "semver": "^6.3.0" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true + }, + "saxes": { + "version": "3.1.11", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-3.1.11.tgz", + "integrity": "sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==", + "dev": true, + "requires": { + "xmlchars": "^2.1.1" + } + }, + "scheduler": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz", + "integrity": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "select": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz", + "integrity": "sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA==" + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "dev": true + }, + "selfsigned": { + "version": "1.10.14", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.14.tgz", + "integrity": "sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==", + "dev": true, + "requires": { + "node-forge": "^0.10.0" + }, + "dependencies": { + "node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "dev": true + } + } + }, + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "semver-greatest-satisfied-range": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz", + "integrity": "sha512-Ny/iyOzSSa8M5ML46IAx3iXc6tfOsYU2R4AXi2UpHk60Zrgyq6eqPj/xiOfS0rRl/iiQ/rdJkVjw/5cdUyCntQ==", + "dev": true, + "requires": { + "sver-compat": "^1.5.0" + } + }, + "send": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", + "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==", + "dev": true, + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.6.2", + "mime": "1.4.1", + "ms": "2.0.0", + "on-finished": "~2.3.0", + "range-parser": "~1.2.0", + "statuses": "~1.4.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "sequencify": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/sequencify/-/sequencify-0.0.7.tgz", + "integrity": "sha512-YL8BPm0tp6SlXef/VqYpA/ijmTsDP2ZEXzsnqjkaWS7NP7Bfvw18NboL0O8WCIjy67sOCG3MYSK1PB4GC9XdtQ==", + "dev": true + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "dev": true, + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "serve-static": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", + "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==", + "dev": true, + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.2", + "send": "0.16.2" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "set-immediate-shim": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", + "integrity": "sha512-Li5AOqrZWCVA2n5kryzEmqai6bKSIvpz5oUJHPVj6+dsbD3X1ixtsY5tEnsaNpH3pFAHmG8eIHUrtEtohrg+UQ==", + "dev": true + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "dev": true + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dev": true, + "requires": { + "kind-of": "^6.0.2" + } + }, + "shallow-equal": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/shallow-equal/-/shallow-equal-1.2.1.tgz", + "integrity": "sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==" + }, + "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, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "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 + }, + "shell-exec": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/shell-exec/-/shell-exec-1.0.2.tgz", + "integrity": "sha512-jyVd+kU2X+mWKMmGhx4fpWbPsjvD53k9ivqetutVW/BQ+WIZoDoP4d8vUMGezV6saZsiNoW2f9GIhg9Dondohg==", + "dev": true + }, + "shellwords": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", + "dev": true + }, + "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, + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "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 + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + } + } + }, + "sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dev": true, + "requires": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + }, + "dependencies": { + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true + } + } + }, + "sockjs-client": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.6.1.tgz", + "integrity": "sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==", + "dev": true, + "requires": { + "debug": "^3.2.7", + "eventsource": "^2.0.2", + "faye-websocket": "^0.11.4", + "inherits": "^2.0.4", + "url-parse": "^1.5.10" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "requires": { + "websocket-driver": ">=0.5.1" + } + } + } + }, + "sort-keys": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-4.2.0.tgz", + "integrity": "sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==", + "dev": true, + "requires": { + "is-plain-obj": "^2.0.0" + } + }, + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "dev": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "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==", + "dev": true + }, + "source-map-loader": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-1.1.3.tgz", + "integrity": "sha512-6YHeF+XzDOrT/ycFJNI53cgEsp/tHTMl37hi7uVyqFAlTXW109JazaQCkbc+jjoL2637qkH1amLi+JzrIpt5lA==", + "dev": true, + "requires": { + "abab": "^2.0.5", + "iconv-lite": "^0.6.2", + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0", + "source-map": "^0.6.1", + "whatwg-mimetype": "^2.3.0" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "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==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + }, + "json5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "dev": true + }, + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dev": true, + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "dev": true + }, + "sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" + }, + "sparkles": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz", + "integrity": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==", + "dev": true + }, + "spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz", + "integrity": "sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==", + "dev": true + }, + "spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + } + }, + "spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "spfx-css-modules-typescript-loader": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/spfx-css-modules-typescript-loader/-/spfx-css-modules-typescript-loader-4.0.5.tgz", + "integrity": "sha512-zjoqyN8Va0+pFQc8EUXF/TcV4Bh/7gWkiTcx/wSv3nXS5BrxcLMaze4KxKJA+xdls9p6jaWPlEzkFSPetzaOZg==", + "dev": true, + "requires": { + "line-diff": "^2.0.1", + "loader-utils": "^1.2.3" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + } + } + }, + "spfx-fast-serve-helpers": { + "version": "1.15.3", + "resolved": "https://registry.npmjs.org/spfx-fast-serve-helpers/-/spfx-fast-serve-helpers-1.15.3.tgz", + "integrity": "sha512-wG4udZgL070MaXU3WgBMuYfdaClRDWp1oh9OvfBeMpnFlKQBb8zmFhfSYGJ+9HznDuPk+/jyUcpyWV7UEMc1wQ==", + "dev": true, + "requires": { + "@microsoft/loader-load-themed-styles": "1.9.128", + "@microsoft/spfx-heft-plugins": "1.15.0", + "@pmmmwh/react-refresh-webpack-plugin": "0.5.7", + "@types/copy-webpack-plugin": "6.4.3", + "@types/loader-utils": "2.0.2", + "@types/webpack-dev-server": "3.11.4", + "clean-css-loader": "3.0.0", + "colors": "1.4.0", + "copy-webpack-plugin": "6.4.0", + "css-loader": "5.2.4", + "del": "6.0.0", + "eslint-webpack-plugin": "2.5.4", + "file-loader": "6.2.0", + "fork-ts-checker-webpack-plugin": "6.4.0", + "get-port": "5.1.1", + "globby": "11.0.3", + "kill-port": "1.6.1", + "loader-utils": "2.0.0", + "node-fetch": "2.6.1", + "react-refresh": "0.14.0", + "react-refresh-typescript": "2.0.6", + "sass": "1.44.0", + "sass-loader": "9.0.3", + "spfx-css-modules-typescript-loader": "4.0.5", + "style-loader": "1.1.3", + "ts-loader": "8.1.0", + "tsconfig": "7.0.0", + "tsconfig-paths-webpack-plugin": "3.5.2", + "webpack": "4.44.2", + "webpack-cli": "4.6.0", + "webpack-dev-server": "3.11.2", + "webpack-merge": "5.7.3", + "yargs": "4.6.0" + }, + "dependencies": { + "@azure/core-tracing": { + "version": "1.0.0-preview.9", + "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.0.0-preview.9.tgz", + "integrity": "sha512-zczolCLJ5QG42AEPQ+Qg9SRYNUyB+yZ5dzof4YEc+dyWczO9G2sBqbAjLB7IqrsdHN2apkiB2oXeDKCsq48jug==", + "dev": true, + "requires": { + "@opencensus/web-types": "0.0.7", + "@opentelemetry/api": "^0.10.2", + "tslib": "^2.0.0" + } + }, + "@azure/storage-blob": { + "version": "12.4.1", + "resolved": "https://registry.npmjs.org/@azure/storage-blob/-/storage-blob-12.4.1.tgz", + "integrity": "sha512-RH6ru8LbnCC+m1rlVLon6mYUXdHsTcyUXFCJAWRQQM7p0XOwVKPS+UiVk2tZXfvMWd3q/qT/meOrEbHEcp/c4g==", + "dev": true, + "requires": { + "@azure/abort-controller": "^1.0.0", + "@azure/core-http": "^1.2.0", + "@azure/core-lro": "^1.0.2", + "@azure/core-paging": "^1.1.1", + "@azure/core-tracing": "1.0.0-preview.9", + "@azure/logger": "^1.0.0", + "@opentelemetry/api": "^0.10.2", + "events": "^3.0.0", + "tslib": "^2.0.0" + } + }, + "@microsoft/load-themed-styles": { + "version": "1.10.247", + "resolved": "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.247.tgz", + "integrity": "sha512-vKbuG3Mcbc4kkNAcIE13aIv5KoI2g+tHFFIZnFhtUilpYHc0VsMd4Fw7Jz81A8AB7L3wWu3OZB2CNiRnr1a3ew==", + "dev": true + }, + "@microsoft/loader-load-themed-styles": { + "version": "1.9.128", + "resolved": "https://registry.npmjs.org/@microsoft/loader-load-themed-styles/-/loader-load-themed-styles-1.9.128.tgz", + "integrity": "sha512-e/z3NUm5ndJPexHIp7SxB5SWleZfkZaZv7h0s+aXvXAAkS79VSbhF3KFGizy5faOjIzJvu3lMKWtIekC2Fy1mQ==", + "dev": true, + "requires": { + "@microsoft/load-themed-styles": "1.10.247", + "loader-utils": "~1.1.0" + }, + "dependencies": { + "loader-utils": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz", + "integrity": "sha512-gkD9aSEG9UGglyPcDJqY9YBTUtCLKaBK6ihD2VP1d1X60lTfFspNZNulGBBbUZLkPygy4LySYHyxBpq+VhjObQ==", + "dev": true, + "requires": { + "big.js": "^3.1.3", + "emojis-list": "^2.0.0", + "json5": "^0.5.0" + } + } + } + }, + "@microsoft/sp-css-loader": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-css-loader/-/sp-css-loader-1.15.0.tgz", + "integrity": "sha512-MDSTtzWtBejC+GL3GZSW55C0MS0i0ttIE4Ot5Fhoy76+Uf+bsFbzSDy8NgpkrvCUL+IU4xPYv0pFrDCRAfepGw==", + "dev": true, + "requires": { + "@microsoft/load-themed-styles": "1.10.266", + "@rushstack/node-core-library": "3.45.5", + "autoprefixer": "9.7.1", + "css-loader": "3.4.2", + "cssnano": "~4.1.10", + "loader-utils": "1.2.3", + "postcss": "~8.1.0", + "postcss-modules-extract-imports": "~3.0.0", + "postcss-modules-local-by-default": "~4.0.0", + "postcss-modules-scope": "~3.0.0", + "postcss-modules-values": "~4.0.0", + "webpack": "~4.44.2" + }, + "dependencies": { + "@microsoft/load-themed-styles": { + "version": "1.10.266", + "resolved": "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.266.tgz", + "integrity": "sha512-xburd5lN4LSFgRbvA2M3bgXIZUa/OlKf9F851gdCu4qMNqyHavZlusRfhGl+H3bsmrWTYU1xlanGZz6ie2zLoA==", + "dev": true + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "css-loader": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.4.2.tgz", + "integrity": "sha512-jYq4zdZT0oS0Iykt+fqnzVLRIeiPWhka+7BqPn+oSIpWJAHak5tmB/WZrJ2a21JhCeFyNnnlroSl8c+MtVndzA==", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^1.2.3", + "normalize-path": "^3.0.0", + "postcss": "^7.0.23", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.2", + "postcss-modules-scope": "^2.1.1", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.0.2", + "schema-utils": "^2.6.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", + "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "dev": true, + "requires": { + "postcss": "^7.0.5" + } + }, + "postcss-modules-local-by-default": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", + "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", + "dev": true, + "requires": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", + "dev": true, + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + } + }, + "postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", + "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", + "dev": true, + "requires": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + } + } + } + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", + "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^2.0.0", + "json5": "^1.0.1" + } + } + } + }, + "@microsoft/sp-module-interfaces": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-module-interfaces/-/sp-module-interfaces-1.15.0.tgz", + "integrity": "sha512-C69HqPaKjH1/RpgGkHZNKb1ynPVcOYsqmFlelAk23Tfc+o9hw/WxXvsMHoOYzPR1Mdu7h4fcBPEqId1AKTFUrQ==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.45.5", + "z-schema": "4.2.4" + } + }, + "@microsoft/spfx-heft-plugins": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/@microsoft/spfx-heft-plugins/-/spfx-heft-plugins-1.15.0.tgz", + "integrity": "sha512-EiYVInJ3KBq2I8cbT9duUa6KZeB/oa1S7704CEqtTLhwL6jkayrtR+HZX50ztjbBzsKNoI7mYUjVHWY90dGqVg==", + "dev": true, + "requires": { + "@azure/storage-blob": "~12.4.1", + "@microsoft/loader-load-themed-styles": "1.9.147", + "@microsoft/rush-lib": "5.70.0", + "@microsoft/sp-css-loader": "1.15.0", + "@microsoft/sp-module-interfaces": "1.15.0", + "@rushstack/heft-config-file": "0.8.4", + "@rushstack/localization-plugin": "0.11.0", + "@rushstack/module-minifier-plugin": "0.9.0", + "@rushstack/node-core-library": "3.45.5", + "@rushstack/rig-package": "0.3.11", + "@rushstack/set-webpack-public-path-plugin": "3.3.37", + "@rushstack/terminal": "0.3.43", + "@types/tapable": "1.0.6", + "autoprefixer": "9.7.1", + "colors": "~1.2.1", + "copy-webpack-plugin": "~6.0.3", + "css-loader": "~3.2.0", + "cssnano": "~4.1.10", + "express": "4.17.1", + "file-loader": "~1.1.11", + "git-repo-info": "~2.1.1", + "glob": "~7.0.5", + "html-loader": "~0.5.1", + "lodash": "4.17.21", + "mime": "2.5.2", + "node-zip": "~1.1.1", + "postcss-loader": "3.0.0", + "resolve": "~1.17.0", + "sass": "1.44.0", + "sass-loader": "8.0.2", + "source-map": "0.6.1", + "source-map-loader": "1.1.3", + "tapable": "1.1.3", + "true-case-path": "~2.2.1", + "uuid": "~3.1.0", + "webpack": "~4.44.2", + "webpack-dev-server": "~3.11.0", + "webpack-sources": "1.4.3", + "xml": "~1.0.1" + }, + "dependencies": { + "@microsoft/load-themed-styles": { + "version": "1.10.266", + "resolved": "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.266.tgz", + "integrity": "sha512-xburd5lN4LSFgRbvA2M3bgXIZUa/OlKf9F851gdCu4qMNqyHavZlusRfhGl+H3bsmrWTYU1xlanGZz6ie2zLoA==", + "dev": true + }, + "@microsoft/loader-load-themed-styles": { + "version": "1.9.147", + "resolved": "https://registry.npmjs.org/@microsoft/loader-load-themed-styles/-/loader-load-themed-styles-1.9.147.tgz", + "integrity": "sha512-x6RmEo/LMJBv7Zn3exVJhnTwdtKayCyFuiUZ1VCDVT4otV6DLg5msvKWNqN4mm1EyGh4JmYFWYqEIO96nvcq8w==", + "dev": true, + "requires": { + "@microsoft/load-themed-styles": "1.10.266", + "loader-utils": "~1.1.0" + } + }, + "colors": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.2.5.tgz", + "integrity": "sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg==", + "dev": true + }, + "copy-webpack-plugin": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-6.0.4.tgz", + "integrity": "sha512-zCazfdYAh3q/O4VzZFiadWGpDA2zTs6FC6D7YTHD6H1J40pzo0H4z22h1NYMCl4ArQP4CK8y/KWqPrJ4rVkZ5A==", + "dev": true, + "requires": { + "cacache": "^15.0.5", + "fast-glob": "^3.2.4", + "find-cache-dir": "^3.3.1", + "glob-parent": "^5.1.1", + "globby": "^11.0.1", + "loader-utils": "^2.0.0", + "normalize-path": "^3.0.0", + "p-limit": "^3.0.2", + "schema-utils": "^2.7.0", + "serialize-javascript": "^4.0.0", + "webpack-sources": "^1.4.3" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "json5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "dev": true + }, + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + } + } + }, + "css-loader": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.2.1.tgz", + "integrity": "sha512-q40kYdcBNzMvkIImCL2O+wk8dh+RGwPPV9Dfz3n7XtOYPXqe2Z6VgtvoxjkLHz02gmhepG9sOAJOUlx+3hHsBg==", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^1.2.3", + "normalize-path": "^3.0.0", + "postcss": "^7.0.23", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.2", + "postcss-modules-scope": "^2.1.1", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.0.2", + "schema-utils": "^2.6.0" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + } + } + }, + "file-loader": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-1.1.11.tgz", + "integrity": "sha512-TGR4HU7HUsGg6GCOPJnFk06RhWgEWFLAGWiT6rcD+GRC2keU3s9RGJ+b3Z6/U73jwwNb2gKLJ7YCrp+jvU4ALg==", + "dev": true, + "requires": { + "loader-utils": "^1.0.2", + "schema-utils": "^0.4.5" + }, + "dependencies": { + "schema-utils": { + "version": "0.4.7", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz", + "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==", + "dev": true, + "requires": { + "ajv": "^6.1.0", + "ajv-keywords": "^3.1.0" + } + } + } + }, + "loader-utils": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz", + "integrity": "sha512-gkD9aSEG9UGglyPcDJqY9YBTUtCLKaBK6ihD2VP1d1X60lTfFspNZNulGBBbUZLkPygy4LySYHyxBpq+VhjObQ==", + "dev": true, + "requires": { + "big.js": "^3.1.3", + "emojis-list": "^2.0.0", + "json5": "^0.5.0" + } + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", + "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "dev": true, + "requires": { + "postcss": "^7.0.5" + } + }, + "postcss-modules-local-by-default": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", + "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", + "dev": true, + "requires": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", + "dev": true, + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + } + }, + "postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", + "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", + "dev": true, + "requires": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + } + }, + "sass-loader": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-8.0.2.tgz", + "integrity": "sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ==", + "dev": true, + "requires": { + "clone-deep": "^4.0.1", + "loader-utils": "^1.2.3", + "neo-async": "^2.6.1", + "schema-utils": "^2.6.1", + "semver": "^6.3.0" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + } + } + } + } + }, + "@opentelemetry/api": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-0.10.2.tgz", + "integrity": "sha512-GtpMGd6vkzDMYcpu2t9LlhEgMy/SzBwRnz48EejlRArYqZzqSzAsKmegUK7zHgl+EOIaK9mKHhnRaQu3qw20cA==", + "dev": true, + "requires": { + "@opentelemetry/context-base": "^0.10.2" + } + }, + "@rushstack/rig-package": { + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.3.11.tgz", + "integrity": "sha512-uI1/g5oQPtyrT9nStoyX/xgZSLa2b+srRFaDk3r1eqC7zA5th4/bvTGl2QfV3C9NcP+coSqmk5mFJkUfH6i3Lw==", + "dev": true, + "requires": { + "resolve": "~1.17.0", + "strip-json-comments": "~3.1.1" + } + }, + "@rushstack/terminal": { + "version": "0.3.43", + "resolved": "https://registry.npmjs.org/@rushstack/terminal/-/terminal-0.3.43.tgz", + "integrity": "sha512-iJJ+hbPISsFykLvmfUocFfxyzyah1t2PGXU2gSzG1P5ouicPdh0yjM0Tta2ZbaSi9Z2F59+/8iUGHRWk5WE+Tg==", + "dev": true, + "requires": { + "@rushstack/node-core-library": "3.45.5", + "@types/node": "12.20.24", + "wordwrap": "~1.0.0" + } + }, + "@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "ansi-html": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", + "integrity": "sha512-JoAxEa1DfP9m2xfB/y2r/aKcwXNlltr4+0QSBC4TrLfcxyvepX2Pv0t/xpgGV5bGsDzCYV8SzjWgyCW0T9yYbA==", + "dev": true + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "autoprefixer": { + "version": "9.7.1", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.7.1.tgz", + "integrity": "sha512-w3b5y1PXWlhYulevrTJ0lizkQ5CyqfeU6BIRDbuhsMupstHQOeb1Ur80tcB1zxSu7AwyY/qCQ7Vvqklh31ZBFw==", + "dev": true, + "requires": { + "browserslist": "^4.7.2", + "caniuse-lite": "^1.0.30001006", + "chalk": "^2.4.2", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^7.0.21", + "postcss-value-parser": "^4.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + } + } + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "dev": true, + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + } + }, + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "dev": true + }, + "cacache": { + "version": "15.3.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", + "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", + "dev": true, + "requires": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "dependencies": { + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", + "dev": true + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "dev": true, + "requires": { + "safe-buffer": "5.1.2" + } + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", + "dev": true + }, + "copy-webpack-plugin": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-6.4.0.tgz", + "integrity": "sha512-p4eIA0ZWk4UI+xewyxOBTDCSDfjK6nCkr3zhDenoi7SFd+NgDNH/D14IZeFaCEFcK/psNDcAUMOB+sAxZ3SsAA==", + "dev": true, + "requires": { + "cacache": "^15.0.5", + "fast-glob": "^3.2.4", + "find-cache-dir": "^3.3.1", + "glob-parent": "^5.1.1", + "globby": "^11.0.1", + "loader-utils": "^2.0.0", + "normalize-path": "^3.0.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "webpack-sources": "^1.4.3" + }, + "dependencies": { + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "serialize-javascript": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", + "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + } + } + }, + "css-loader": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-5.2.4.tgz", + "integrity": "sha512-OFYGyINCKkdQsTrSYxzGSFnGS4gNjcXkKkQgWxK138jgnPt+lepxdjSZNc8sHAl5vP3DhsJUxufWIjOwI8PMMw==", + "dev": true, + "requires": { + "camelcase": "^6.2.0", + "icss-utils": "^5.1.0", + "loader-utils": "^2.0.0", + "postcss": "^8.2.10", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^3.0.0", + "semver": "^7.3.5" + }, + "dependencies": { + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true + }, + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "postcss": { + "version": "8.4.16", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.16.tgz", + "integrity": "sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==", + "dev": true, + "requires": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "del": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/del/-/del-6.0.0.tgz", + "integrity": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==", + "dev": true, + "requires": { + "globby": "^11.0.1", + "graceful-fs": "^4.2.4", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.2", + "p-map": "^4.0.0", + "rimraf": "^3.0.2", + "slash": "^3.0.0" + }, + "dependencies": { + "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 + } + } + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "dev": true, + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + } + }, + "file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + } + }, + "find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "glob": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", + "integrity": "sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.2", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "globby": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz", + "integrity": "sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + } + } + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dev": true, + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "dependencies": { + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + } + } + } + }, + "is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "dev": true + }, + "is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true + }, + "is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dev": true, + "requires": { + "is-path-inside": "^2.1.0" + } + }, + "is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dev": true, + "requires": { + "path-is-inside": "^1.0.2" + } + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "dev": true + }, + "loader-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "json5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "dev": true + } + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "mime": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", + "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==", + "dev": true + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node-fetch": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", + "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==", + "dev": true + }, + "opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dev": true, + "requires": { + "is-wsl": "^1.1.0" + } + }, + "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, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + }, + "dependencies": { + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + } + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true + }, + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "postcss": { + "version": "8.1.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.1.14.tgz", + "integrity": "sha512-KatkyVPBKfENS+c3dpXJoDXnDD5UZs5exAnDksLqaRJPKwYphEPZt4N0m0i049v2/BtWVQibAhxW4ilXXcolpA==", + "dev": true, + "requires": { + "colorette": "^1.2.1", + "nanoid": "^3.1.20", + "source-map": "^0.6.1" + } + }, + "postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true + }, + "postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "dependencies": { + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true + } + } + }, + "postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.4" + } + }, + "postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0" + }, + "dependencies": { + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true + } + } + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", + "dev": true + }, + "raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "dev": true, + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==", + "dev": true, + "requires": { + "resolve-from": "^3.0.0" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "dev": true + }, + "sass-loader": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-9.0.3.tgz", + "integrity": "sha512-fOwsP98ac1VMme+V3+o0HaaMHp8Q/C9P+MUazLFVi3Jl7ORGHQXL1XeRZt3zLSGZQQPC8xE42Y2WptItvGjDQg==", + "dev": true, + "requires": { + "klona": "^1.1.2", + "loader-utils": "^2.0.0", + "neo-async": "^2.6.2", + "schema-utils": "^2.7.0", + "semver": "^7.3.2" + }, + "dependencies": { + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "dev": true, + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "dev": true + } + } + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "dev": true, + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + } + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==", + "dev": true + }, + "ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dev": true, + "requires": { + "minipass": "^3.1.1" + } + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "uuid": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.1.0.tgz", + "integrity": "sha512-DIWtzUkw04M4k3bf1IcpS2tngXEL26YUD2M0tMDUpnUrz2hgzUBlD55a4FjdLGPvfHxS6uluGWvaVEqgBcVa+g==", + "dev": true + }, + "webpack-dev-server": { + "version": "3.11.2", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.2.tgz", + "integrity": "sha512-A80BkuHRQfCiNtGBS1EMf2ChTUs0x+B3wGDFmOeT4rmJOHhHTCH2naNxIHhmkr0/UillP4U3yeIyv1pNp+QDLQ==", + "dev": true, + "requires": { + "ansi-html": "0.0.7", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, + "requires": { + "array-uniq": "^1.0.1" + } + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dev": true, + "requires": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + } + }, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", + "dev": true, + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true + } + } + }, + "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 + }, + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + }, + "dependencies": { + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + } + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + } + } + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "ws": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "dev": true, + "requires": { + "async-limiter": "~1.0.0" + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "spfx-uifabric-themes": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/spfx-uifabric-themes/-/spfx-uifabric-themes-0.9.0.tgz", + "integrity": "sha512-6cTVlyfANxHmDxQGigUNHLGpWaelUOqsZeWVryLQVEJSEwTTXmHcQwb3SOnLEBXzjKDancdgoLTluZQBArFnZg==" + }, + "split": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", + "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", + "dev": true, + "requires": { + "through": "2" + } + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "sshpk": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", + "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", + "dev": true, + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "ssri": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz", + "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", + "dev": true, + "requires": { + "figgy-pudding": "^3.5.1" + } + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "dev": true + }, + "stack-generator": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/stack-generator/-/stack-generator-2.0.10.tgz", + "integrity": "sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==", + "requires": { + "stackframe": "^1.3.4" + } + }, + "stack-trace": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", + "dev": true + }, + "stack-utils": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.5.tgz", + "integrity": "sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==", + "dev": true, + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true + } + } + }, + "stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" + }, + "stacktrace-gps": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/stacktrace-gps/-/stacktrace-gps-3.1.2.tgz", + "integrity": "sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==", + "requires": { + "source-map": "0.5.6", + "stackframe": "^1.3.4" + }, + "dependencies": { + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==" + } + } + }, + "stacktrace-js": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stacktrace-js/-/stacktrace-js-2.0.2.tgz", + "integrity": "sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==", + "requires": { + "error-stack-parser": "^2.0.6", + "stack-generator": "^2.0.5", + "stacktrace-gps": "^3.0.4" + } + }, + "state-local": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/state-local/-/state-local-1.0.7.tgz", + "integrity": "sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==" + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", + "dev": true, + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "statuses": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", + "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==", + "dev": true + }, + "stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "integrity": "sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==", + "dev": true + }, + "stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "dev": true, + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "stream-combiner": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.2.2.tgz", + "integrity": "sha512-6yHMqgLYDzQDcAkL+tjJDC5nSNuNIx0vZtRZeiPh7Saef7VHX9H5Ijn9l2VIol2zaNYlYEX6KyuT/237A58qEQ==", + "dev": true, + "requires": { + "duplexer": "~0.1.1", + "through": "~2.3.4" + } + }, + "stream-consume": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/stream-consume/-/stream-consume-0.1.1.tgz", + "integrity": "sha512-tNa3hzgkjEP7XbCkbRXe1jpg+ievoa0O4SCFlMOYEscGSS4JJsckGL8swUyAa/ApGU3Ae4t6Honor4HhL+tRyg==", + "dev": true + }, + "stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "stream-exhaust": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz", + "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==", + "dev": true + }, + "stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "dev": true, + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "dev": true + }, + "strict-uri-encode": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", + "integrity": "sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==", + "dev": true + }, + "string-argv": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz", + "integrity": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==", + "dev": true + }, + "string-hash": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", + "integrity": "sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==", + "dev": true + }, + "string-length": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-3.1.0.tgz", + "integrity": "sha512-Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k/CXFgrTIteU3jAw3payCnwSTA==", + "dev": true, + "requires": { + "astral-regex": "^1.0.0", + "strip-ansi": "^5.2.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "string.prototype.matchall": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz", + "integrity": "sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.4.1", + "side-channel": "^1.0.4" + } + }, + "string.prototype.trimend": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz", + "integrity": "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" + } + }, + "string.prototype.trimstart": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz", + "integrity": "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "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, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "dev": true + }, + "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 + }, + "strip-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", + "integrity": "sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==", + "dev": true, + "requires": { + "get-stdin": "^4.0.1" + } + }, + "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 + }, + "strnum": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", + "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" + }, + "style-loader": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.1.3.tgz", + "integrity": "sha512-rlkH7X/22yuwFYK357fMN/BxYOorfnfq0eD7+vqlemSK4wEcejFF1dg4zxP0euBW8NrYx2WZzZ8PPFevr7D+Kw==", + "dev": true, + "requires": { + "loader-utils": "^1.2.3", + "schema-utils": "^2.6.4" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "stylehacks": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", + "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dev": true, + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "stylis": { + "version": "3.5.4", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-3.5.4.tgz", + "integrity": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==" + }, + "stylis-plugin-rtl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stylis-plugin-rtl/-/stylis-plugin-rtl-1.1.0.tgz", + "integrity": "sha512-FPoSxP+gbBLJRUXDRDFNBhqy/eToquDLn7ZrjIVBRfXaZ9bunwNnDtDm2qW1EoU0c93krm1Dy+8iVmJpjRGsKw==", + "requires": { + "cssjanus": "^1.3.0" + } + }, + "substyle": { + "version": "9.4.1", + "resolved": "https://registry.npmjs.org/substyle/-/substyle-9.4.1.tgz", + "integrity": "sha512-VOngeq/W1/UkxiGzeqVvDbGDPM8XgUyJVWjrqeh+GgKqspEPiLYndK+XRcsKUHM5Muz/++1ctJ1QCF/OqRiKWA==", + "requires": { + "@babel/runtime": "^7.3.4", + "invariant": "^2.2.4" + } + }, + "sudo": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sudo/-/sudo-1.0.3.tgz", + "integrity": "sha512-3xMsaPg+8Xm+4LQm0b2V+G3lz3YxtDBzlqiU8CXw2AOIIDSvC1kBxIxBjnoCTq8dTTXAy23m58g6mdClUocpmQ==", + "dev": true, + "requires": { + "inpath": "~1.0.2", + "pidof": "~1.0.2", + "read": "~1.0.3" + } + }, + "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, + "requires": { + "has-flag": "^4.0.0" + } + }, + "supports-hyperlinks": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz", + "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==", + "dev": true, + "requires": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + } + }, + "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 + }, + "sver-compat": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz", + "integrity": "sha512-aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg==", + "dev": true, + "requires": { + "es6-iterator": "^2.0.1", + "es6-symbol": "^3.1.1" + } + }, + "svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "symbol": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/symbol/-/symbol-0.2.3.tgz", + "integrity": "sha512-IUW+ek7apEaW5bFhS6WpYoNtVpNTlNoqB/PH7YiMWQTxSPeXCzG4PILVakwXivJt3ZXWeO1fIJnUd/L9A/VeGA==", + "dev": true + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, + "tabbable": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-5.3.3.tgz", + "integrity": "sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA==" + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "dev": true + }, + "tar": { + "version": "6.1.11", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", + "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", + "dev": true, + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "dependencies": { + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + } + } + }, + "terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + } + }, + "ternary-stream": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ternary-stream/-/ternary-stream-2.1.1.tgz", + "integrity": "sha512-j6ei9hxSoyGlqTmoMjOm+QNvUKDOIY6bNl4Uh1lhBvl6yjPW2iLqxDUYyfDPZknQ4KdRziFl+ec99iT4l7g0cw==", + "dev": true, + "requires": { + "duplexify": "^3.5.0", + "fork-stream": "^0.0.4", + "merge-stream": "^1.0.0", + "through2": "^2.0.1" + }, + "dependencies": { + "merge-stream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz", + "integrity": "sha512-e6RM36aegd4f+r8BZCcYXlO2P3H6xbUM6ktL2Xmf45GAOit9bI4z6/3VU7JwllVO1L7u0UDSg/EhzQ5lmMLolA==", + "dev": true, + "requires": { + "readable-stream": "^2.0.1" + } + } + } + }, + "terser": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz", + "integrity": "sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==", + "dev": true, + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + } + }, + "terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "dev": true, + "requires": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "dependencies": { + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "dev": true + } + } + }, + "test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, + "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 + }, + "thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "requires": { + "any-promise": "^1.0.0" + } + }, + "thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "requires": { + "thenify": ">= 3.1.0 < 4" + } + }, + "throat": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", + "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==", + "dev": true + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "through2-filter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz", + "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==", + "dev": true, + "requires": { + "through2": "~2.0.0", + "xtend": "~4.0.0" + } + }, + "thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "time-stamp": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", + "integrity": "sha512-gLCeArryy2yNTRzTGKbZbloctj64jkZ57hj5zdraXue6aFgd6PmvVtEyiUU+hvU0v7q08oVv8r8ev0tRo6bvgw==", + "dev": true + }, + "timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "dev": true, + "requires": { + "setimmediate": "^1.0.4" + } + }, + "timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==" + }, + "tiny-emitter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz", + "integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==" + }, + "tiny-lr": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tiny-lr/-/tiny-lr-0.2.1.tgz", + "integrity": "sha512-cmC4iw/nymXg+dc57AQ8Xv3bHxNQOGyQC3Ht5xLN67hksk6ucshrLk/VKiXuMbnZgToQ2NbnICxYj63xVw+Qbw==", + "dev": true, + "requires": { + "body-parser": "~1.14.0", + "debug": "~2.2.0", + "faye-websocket": "~0.10.0", + "livereload-js": "^2.2.0", + "parseurl": "~1.3.0", + "qs": "~5.1.0" + }, + "dependencies": { + "body-parser": { + "version": "1.14.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.14.2.tgz", + "integrity": "sha512-6D9uiWn7dbnDAhlDikccybuqKCmsoest0es3VSQO8Doz/fzx6Ls7kJNxKBYTjbzu4/RzNsf9zuACnS3UYjVH8Q==", + "dev": true, + "requires": { + "bytes": "2.2.0", + "content-type": "~1.0.1", + "debug": "~2.2.0", + "depd": "~1.1.0", + "http-errors": "~1.3.1", + "iconv-lite": "0.4.13", + "on-finished": "~2.3.0", + "qs": "5.2.0", + "raw-body": "~2.1.5", + "type-is": "~1.6.10" + }, + "dependencies": { + "qs": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-5.2.0.tgz", + "integrity": "sha512-VH4FeG98gs6AkHivaW2O14vsOPBL9E80Sj7fITunoDijiYQ1lsVwJYmm1CSL+oLyO2N5HPdo23GXAG64uKOAZQ==", + "dev": true + } + } + }, + "bytes": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-2.2.0.tgz", + "integrity": "sha512-zGRpnr2l5w/s8PxkrquUJoVeR06KvqPelrYqiSyQV7QEBqCYivpb6UzXYWC6JDBVtNFOT0rzJRFhkfJgxzmILA==", + "dev": true + }, + "debug": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "integrity": "sha512-X0rGvJcskG1c3TgSCPqHJ0XJgwlcvOC7elJ5Y0hYuKBZoVqWpAMfLOeIh2UI/DCQ5ruodIjvsugZtjUYUw2pUw==", + "dev": true, + "requires": { + "ms": "0.7.1" + } + }, + "http-errors": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.3.1.tgz", + "integrity": "sha512-gMygNskMurDCWfoCdyh1gOeDfSbkAHXqz94QoPj5IHIUjC/BG8/xv7FSEUr7waR5RcAya4j58bft9Wu/wHNeXA==", + "dev": true, + "requires": { + "inherits": "~2.0.1", + "statuses": "1" + } + }, + "iconv-lite": { + "version": "0.4.13", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz", + "integrity": "sha512-QwVuTNQv7tXC5mMWFX5N5wGjmybjNBBD8P3BReTkPmipoxTUFgWM2gXNvldHQr6T14DH0Dh6qBVg98iJt7u4mQ==", + "dev": true + }, + "ms": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "integrity": "sha512-lRLiIR9fSNpnP6TC4v8+4OU7oStC01esuNowdQ34L+Gk8e5Puoc88IqJ+XAY/B3Mn2ZKis8l8HX90oU8ivzUHg==", + "dev": true + }, + "qs": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-5.1.0.tgz", + "integrity": "sha512-SGDM48EwFLWnYYpNlOkEIRJb4wil5FKJxpR6NVfQjz6qJmX53ki7Xj1cLNEAkb70vUfJmdVLOwODyABgZyDMZw==", + "dev": true + }, + "raw-body": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.1.7.tgz", + "integrity": "sha512-x4d27vsIG04gZ1imkuDXB9Rd/EkAx5kYzeMijIYw1PAor0Ld3nTlkQQwDjKu42GdRUFCX1AfGnTSQB4O57eWVg==", + "dev": true, + "requires": { + "bytes": "2.4.0", + "iconv-lite": "0.4.13", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-2.4.0.tgz", + "integrity": "sha512-SvUX8+c/Ga454a4fprIdIUzUN9xfd1YTvYh7ub5ZPJ+ZJ/+K2Bp6IpWGmnw8r3caLTsmhvJAKZz3qjIo9+XuCQ==", + "dev": true + } + } + } + } + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "requires": { + "os-tmpdir": "~1.0.2" + } + }, + "tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "to-absolute-glob": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", + "integrity": "sha512-rtwLUQEwT8ZeKQbyFJyomBRYXyE16U5VKuy0ftxLMK/PZb2fkOsg5r9kHdauuVDbsNdIBoC/HCthpidamQFXYA==", + "dev": true, + "requires": { + "is-absolute": "^1.0.0", + "is-negated-glob": "^1.0.0" + } + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==", + "dev": true + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + } + }, + "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, + "requires": { + "is-number": "^7.0.0" + } + }, + "to-through": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", + "integrity": "sha512-+QIz37Ly7acM4EMdw2PRN389OneM5+d844tirkGp4dPKzI5OE72V9OsbFp+CIYJDahZ41ZV05hNtcPAQUAm9/Q==", + "dev": true, + "requires": { + "through2": "^2.0.3" + } + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", + "dev": true + }, + "tough-cookie": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz", + "integrity": "sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==", + "dev": true, + "requires": { + "ip-regex": "^2.1.0", + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "trim-newlines": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", + "integrity": "sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==", + "dev": true + }, + "true-case-path": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-2.2.1.tgz", + "integrity": "sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q==", + "dev": true + }, + "ts-loader": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-8.1.0.tgz", + "integrity": "sha512-YiQipGGAFj2zBfqLhp28yUvPP9jUGqHxRzrGYuc82Z2wM27YIHbElXiaZDc93c3x0mz4zvBmS6q/DgExpdj37A==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "enhanced-resolve": "^4.0.0", + "loader-utils": "^2.0.0", + "micromatch": "^4.0.0", + "semver": "^7.3.4" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "json5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "dev": true + }, + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + } + } + }, + "tsconfig": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/tsconfig/-/tsconfig-7.0.0.tgz", + "integrity": "sha512-vZXmzPrL+EmC4T/4rVlT2jNVMWCi/O4DIiSj3UHg1OE5kCKbk4mfrXc6dZksLgRM/TZlKnousKH9bbTazUWRRw==", + "dev": true, + "requires": { + "@types/strip-bom": "^3.0.0", + "@types/strip-json-comments": "0.0.30", + "strip-bom": "^3.0.0", + "strip-json-comments": "^2.0.0" + }, + "dependencies": { + "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 + }, + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true + } + } + }, + "tsconfig-paths": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", + "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", + "dev": true, + "requires": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "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 + } + } + }, + "tsconfig-paths-webpack-plugin": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths-webpack-plugin/-/tsconfig-paths-webpack-plugin-3.5.2.tgz", + "integrity": "sha512-EhnfjHbzm5IYI9YPNVIxx1moxMI4bpHD2e0zTXeDNQcwjjRaGepP7IhTHJkyDBG0CAOoxRfe7jCG630Ou+C6Pw==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "enhanced-resolve": "^5.7.0", + "tsconfig-paths": "^3.9.0" + }, + "dependencies": { + "enhanced-resolve": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz", + "integrity": "sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + } + }, + "tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true + } + } + }, + "tslib": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + }, + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "requires": { + "tslib": "^1.8.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + } + } + }, + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==", + "dev": true + }, + "tunnel": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", + "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==", + "dev": true + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "dev": true, + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", + "dev": true + }, + "type": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", + "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" + }, + "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, + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true + }, + "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 + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "dev": true + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dev": true, + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "typescript": { + "version": "4.5.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.5.tgz", + "integrity": "sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA==", + "dev": true + }, + "uc.micro": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", + "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==" + }, + "uglify-js": { + "version": "3.4.10", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz", + "integrity": "sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==", + "dev": true, + "requires": { + "commander": "~2.19.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "commander": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", + "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==", + "dev": true + } + } + }, + "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, + "requires": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + } + }, + "unc-path-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", + "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", + "dev": true + }, + "undertaker": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-1.3.0.tgz", + "integrity": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==", + "dev": true, + "requires": { + "arr-flatten": "^1.0.1", + "arr-map": "^2.0.0", + "bach": "^1.0.0", + "collection-map": "^1.0.0", + "es6-weak-map": "^2.0.1", + "fast-levenshtein": "^1.0.0", + "last-run": "^1.1.0", + "object.defaults": "^1.0.0", + "object.reduce": "^1.0.0", + "undertaker-registry": "^1.0.0" + }, + "dependencies": { + "fast-levenshtein": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz", + "integrity": "sha512-Ia0sQNrMPXXkqVFt6w6M1n1oKo3NfKs+mvaV811Jwir7vAk9a6PVV9VPYf6X3BU97QiLEmuW3uXH9u87zDFfdw==", + "dev": true + } + } + }, + "undertaker-registry": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz", + "integrity": "sha512-UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw==", + "dev": true + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + } + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==", + "dev": true + }, + "uniqs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", + "integrity": "sha512-mZdDpf3vBV5Efh29kMw5tXoup/buMgxLzOt/XKFKcVmi+15ManNQWr6HfZ2aiZTYlYixbdNJ0KFmIZIv52tHSQ==", + "dev": true + }, + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dev": true, + "requires": { + "unique-slug": "^2.0.0" + } + }, + "unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4" + } + }, + "unique-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz", + "integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==", + "dev": true, + "requires": { + "json-stable-stringify-without-jsonify": "^1.0.1", + "through2-filter": "^3.0.0" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true + }, + "unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==", + "dev": true + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "dev": true, + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "dev": true, + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "dev": true + } + } + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true + }, + "update-browserslist-db": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.7.tgz", + "integrity": "sha512-iN/XYesmZ2RmmWAiI4Z5rq0YqSiv0brj9Ce9CfhNE4xIW2h+MFxcgkxIzZ+ShkFPUkjU3gQ+3oypadD3RAMtrg==", + "dev": true, + "requires": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + } + }, + "upper-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", + "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==", + "dev": true + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "requires": { + "punycode": "^2.1.0" + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "dev": true + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==", + "dev": true, + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==", + "dev": true + } + } + }, + "url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true + }, + "util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "dev": true, + "requires": { + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + } + } + }, + "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 + }, + "util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + } + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "dev": true + }, + "v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, + "v8-to-istanbul": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-4.1.4.tgz", + "integrity": "sha512-Rw6vJHj1mbdK8edjR7+zuJrpDtKIgNdAvTSAcpYfgMIw+u2dPDntD3dgN4XQFLU2/fvFQdzj+EeSGfd/jnY5fQ==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true + } + } + }, + "v8flags": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz", + "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "validate-npm-package-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz", + "integrity": "sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==", + "dev": true, + "requires": { + "builtins": "^1.0.3" + } + }, + "validator": { + "version": "13.7.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.7.0.tgz", + "integrity": "sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw==" + }, + "value-or-function": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", + "integrity": "sha512-jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg==", + "dev": true + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true + }, + "vendors": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", + "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==", + "dev": true + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", + "dev": true, + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dev": true, + "requires": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + } + }, + "vinyl-fs": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", + "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==", + "dev": true, + "requires": { + "fs-mkdirp-stream": "^1.0.0", + "glob-stream": "^6.1.0", + "graceful-fs": "^4.0.0", + "is-valid-glob": "^1.0.0", + "lazystream": "^1.0.0", + "lead": "^1.0.0", + "object.assign": "^4.0.4", + "pumpify": "^1.3.5", + "readable-stream": "^2.3.3", + "remove-bom-buffer": "^3.0.0", + "remove-bom-stream": "^1.2.0", + "resolve-options": "^1.1.0", + "through2": "^2.0.0", + "to-through": "^2.0.0", + "value-or-function": "^3.0.0", + "vinyl": "^2.0.0", + "vinyl-sourcemap": "^1.1.0" + } + }, + "vinyl-sourcemap": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", + "integrity": "sha512-NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA==", + "dev": true, + "requires": { + "append-buffer": "^1.0.2", + "convert-source-map": "^1.5.0", + "graceful-fs": "^4.1.6", + "normalize-path": "^2.1.1", + "now-and-later": "^2.0.0", + "remove-bom-buffer": "^3.0.0", + "vinyl": "^2.0.0" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", + "dev": true + }, + "w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "dev": true, + "requires": { + "browser-process-hrtime": "^1.0.0" + } + }, + "w3c-xmlserializer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz", + "integrity": "sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg==", + "dev": true, + "requires": { + "domexception": "^1.0.1", + "webidl-conversions": "^4.0.2", + "xml-name-validator": "^3.0.0" + }, + "dependencies": { + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "dev": true + } + } + }, + "walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "requires": { + "makeerror": "1.0.12" + } + }, + "watchpack": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", + "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", + "dev": true, + "requires": { + "chokidar": "^3.4.1", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0", + "watchpack-chokidar2": "^2.0.1" + }, + "dependencies": { + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "optional": true + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "optional": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "optional": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "optional": true, + "requires": { + "picomatch": "^2.2.1" + } + } + } + }, + "watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", + "dev": true, + "optional": true, + "requires": { + "chokidar": "^2.1.8" + } + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "requires": { + "minimalistic-assert": "^1.0.0" + } + }, + "wc-react": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/wc-react/-/wc-react-0.5.1.tgz", + "integrity": "sha512-AI5mFXbyUhAhzjBr12xpPAUDthE+qOWTGuRgOpj7a9qjO7+7q/A/IAS23lz5vmltFaKY+MWIPYopJfAoP5/E+Q==" + }, + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "webpack": { + "version": "4.44.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.44.2.tgz", + "integrity": "sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.3.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "dev": true + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "dev": true, + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "webpack-cli": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.6.0.tgz", + "integrity": "sha512-9YV+qTcGMjQFiY7Nb1kmnupvb1x40lfpj8pwdO/bom+sQiP4OBMKjHq29YQrlDWDPZO9r/qWaRRywKaRDKqBTA==", + "dev": true, + "requires": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^1.0.2", + "@webpack-cli/info": "^1.2.3", + "@webpack-cli/serve": "^1.3.1", + "colorette": "^1.2.1", + "commander": "^7.0.0", + "enquirer": "^2.3.6", + "execa": "^5.0.0", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^2.2.0", + "rechoir": "^0.7.0", + "v8-compile-cache": "^2.2.0", + "webpack-merge": "^5.7.3" + }, + "dependencies": { + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true + }, + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "requires": { + "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" + } + }, + "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 + }, + "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 + }, + "interpret": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", + "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", + "dev": true + }, + "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 + }, + "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, + "requires": { + "path-key": "^3.0.0" + } + }, + "rechoir": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", + "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", + "dev": true, + "requires": { + "resolve": "^1.9.0" + } + } + } + }, + "webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "dev": true, + "requires": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "dependencies": { + "mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "dev": true + } + } + }, + "webpack-dev-server": { + "version": "3.11.3", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.3.tgz", + "integrity": "sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==", + "dev": true, + "requires": { + "ansi-html-community": "0.0.8", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, + "requires": { + "array-uniq": "^1.0.1" + } + }, + "body-parser": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "dev": true, + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + } + } + }, + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "requires": { + "safe-buffer": "5.2.1" + } + }, + "cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true + }, + "del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dev": true, + "requires": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + } + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true + }, + "destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "express": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", + "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", + "dev": true, + "requires": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.0", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.10.3", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + } + } + }, + "finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + } + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", + "dev": true, + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true + } + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, + "requires": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + } + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dev": true, + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + } + }, + "is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "dev": true + }, + "is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true + }, + "is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dev": true, + "requires": { + "is-path-inside": "^2.1.0" + } + }, + "is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dev": true, + "requires": { + "path-is-inside": "^1.0.2" + } + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "dev": true + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } + }, + "opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dev": true, + "requires": { + "is-wsl": "^1.1.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + } + }, + "qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "dev": true, + "requires": { + "side-channel": "^1.0.4" + } + }, + "raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dev": true, + "requires": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==", + "dev": true, + "requires": { + "resolve-from": "^3.0.0" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "dev": true + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, + "requires": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "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 + } + } + }, + "serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dev": true, + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + } + }, + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "ws": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "dev": true, + "requires": { + "async-limiter": "~1.0.0" + } + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "dev": true, + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "dev": true + } + } + }, + "webpack-merge": { + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.7.3.tgz", + "integrity": "sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA==", + "dev": true, + "requires": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + } + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dev": true, + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + } + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dev": true, + "requires": { + "iconv-lite": "0.4.24" + } + }, + "whatwg-fetch": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", + "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "dev": true + }, + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "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, + "requires": { + "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" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==", + "dev": true + }, + "wildcard": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", + "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", + "dev": true + }, + "window-size": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz", + "integrity": "sha512-UD7d8HFA2+PZsbKyaOCEy8gMh1oDtHgJh1LfgjQ4zVXmYjAT/kvz3PueITKuqDiIXQe7yzpPnxX3lNc+AhQMyw==", + "dev": true + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true + }, + "wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "dev": true + }, + "worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "dev": true, + "requires": { + "errno": "~0.1.7" + } + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "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 + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "write-yaml-file": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/write-yaml-file/-/write-yaml-file-4.2.0.tgz", + "integrity": "sha512-LwyucHy0uhWqbrOkh9cBluZBeNVxzHjDaE9mwepZG3n3ZlbM4v3ndrFw51zW/NXYFFqP+QWZ72ihtLWTh05e4Q==", + "dev": true, + "requires": { + "js-yaml": "^4.0.0", + "write-file-atomic": "^3.0.3" + } + }, + "ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "dev": true + }, + "xml": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz", + "integrity": "sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==", + "dev": true + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "dev": true + }, + "xml2js": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz", + "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", + "dev": true, + "requires": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + } + }, + "xmlbuilder": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", + "dev": true + }, + "xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true + }, + "xmldoc": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/xmldoc/-/xmldoc-1.1.4.tgz", + "integrity": "sha512-rQshsBGR5s7pUNENTEncpI2LTCuzicri0DyE4SCV5XmS0q81JS8j1iPijP0Q5c4WLGbKh3W92hlOwY6N9ssW1w==", + "dev": true, + "requires": { + "sax": "^1.2.4" + } + }, + "xpath": { + "version": "0.0.32", + "resolved": "https://registry.npmjs.org/xpath/-/xpath-0.0.32.tgz", + "integrity": "sha512-rxMJhSIoiO8vXcWvSifKqhvV96GjiD5wYb8/QHdoRyQvraTpp4IEv944nhGausZZ3u7dhQXteZuZbaqfpB7uYw==" + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true + }, + "yargs": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-4.6.0.tgz", + "integrity": "sha512-KmjJbWBkYiSRUChcOSa4rtBxDXf0j4ISz+tpeNa4LKIBllgKnkemJ3x4yo4Yydp3wPU4/xJTaKTLLZ8V7zhI7A==", + "dev": true, + "requires": { + "camelcase": "^2.0.1", + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "lodash.assign": "^4.0.3", + "os-locale": "^1.4.0", + "pkg-conf": "^1.1.2", + "read-pkg-up": "^1.0.1", + "require-main-filename": "^1.0.1", + "string-width": "^1.0.1", + "window-size": "^0.2.0", + "y18n": "^3.2.1", + "yargs-parser": "^2.4.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true + }, + "camelcase": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==", + "dev": true + }, + "cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", + "dev": true, + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" + } + }, + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", + "dev": true, + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", + "dev": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", + "dev": true, + "requires": { + "pinkie-promise": "^2.0.0" + } + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", + "dev": true, + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", + "dev": true, + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + } + }, + "require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==", + "dev": true + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", + "dev": true, + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + } + }, + "y18n": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", + "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", + "dev": true + }, + "yargs-parser": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-2.4.1.tgz", + "integrity": "sha512-9pIKIJhnI5tonzG6OnCFlz/yln8xHYcGl+pn3xR0Vzff0vzN1PbNRaelgfgRUwZ3s4i3jvxT9WhmUGL4whnasA==", + "dev": true, + "requires": { + "camelcase": "^3.0.0", + "lodash.assign": "^4.0.6" + }, + "dependencies": { + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "dev": true + } + } + } + } + }, + "yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "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 + }, + "z-schema": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-4.2.4.tgz", + "integrity": "sha512-YvBeW5RGNeNzKOUJs3rTL4+9rpcvHXt5I051FJbOcitV8bl40pEfcG0Q+dWSwS0/BIYrMZ/9HHoqLllMkFhD0w==", + "requires": { + "commander": "^2.7.1", + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.6.0" + } + } + } +} diff --git a/samples/react-flighttracker/package.json b/samples/react-flighttracker/package.json new file mode 100644 index 000000000..23e26b6d3 --- /dev/null +++ b/samples/react-flighttracker/package.json @@ -0,0 +1,44 @@ +{ + "name": "react-flighttracker", + "version": "0.0.1", + "private": true, + "main": "lib/index.js", + "scripts": { + "build": "gulp bundle", + "clean": "gulp clean", + "test": "gulp test", + "serve": "gulp bundle --custom-serve --max_old_space_size=4096 && fast-serve" + }, + "dependencies": { + "@fluentui/react": "^8.100.0", + "@microsoft/sp-core-library": "1.15.2", + "@microsoft/sp-lodash-subset": "1.15.2", + "@microsoft/sp-office-ui-fabric-core": "1.15.2", + "@microsoft/sp-property-pane": "1.15.2", + "@microsoft/sp-webpart-base": "1.15.2", + "@pnp/spfx-controls-react": "^3.11.0", + "axios": "^0.27.2", + "date-fns": "^2.29.2", + "office-ui-fabric-react": "7.185.7", + "react": "16.13.1", + "react-dom": "16.13.1", + "recoil": "^0.7.5", + "tslib": "2.3.1" + }, + "devDependencies": { + "@microsoft/rush-stack-compiler-4.5": "0.2.2", + "@rushstack/eslint-config": "2.5.1", + "@microsoft/eslint-plugin-spfx": "1.15.2", + "@microsoft/eslint-config-spfx": "1.15.2", + "@microsoft/sp-build-web": "1.15.2", + "@types/webpack-env": "~1.15.2", + "ajv": "^6.12.5", + "gulp": "4.0.2", + "typescript": "4.5.5", + "@types/react": "16.9.51", + "@types/react-dom": "16.9.8", + "eslint-plugin-react-hooks": "4.3.0", + "@microsoft/sp-module-interfaces": "1.15.2", + "spfx-fast-serve-helpers": "~1.15.0" + } +} diff --git a/samples/react-flighttracker/src/assets/Departing-bro.png b/samples/react-flighttracker/src/assets/Departing-bro.png new file mode 100644 index 000000000..e051bf168 Binary files /dev/null and b/samples/react-flighttracker/src/assets/Departing-bro.png differ diff --git a/samples/react-flighttracker/src/assets/Departing-bro.svg b/samples/react-flighttracker/src/assets/Departing-bro.svg new file mode 100644 index 000000000..5c6caa31a --- /dev/null +++ b/samples/react-flighttracker/src/assets/Departing-bro.svg @@ -0,0 +1 @@ + diff --git a/samples/react-flighttracker/src/assets/Departing-brob.png b/samples/react-flighttracker/src/assets/Departing-brob.png new file mode 100644 index 000000000..126d61fcb Binary files /dev/null and b/samples/react-flighttracker/src/assets/Departing-brob.png differ diff --git a/samples/react-flighttracker/src/assets/Image 10-11-2022 at 21.03.jpg b/samples/react-flighttracker/src/assets/Image 10-11-2022 at 21.03.jpg new file mode 100644 index 000000000..c5b6feb7e Binary files /dev/null and b/samples/react-flighttracker/src/assets/Image 10-11-2022 at 21.03.jpg differ diff --git a/samples/react-flighttracker/src/assets/Screenshot 2022-11-10 at 20.49.03.png b/samples/react-flighttracker/src/assets/Screenshot 2022-11-10 at 20.49.03.png new file mode 100644 index 000000000..45b180fb1 Binary files /dev/null and b/samples/react-flighttracker/src/assets/Screenshot 2022-11-10 at 20.49.03.png differ diff --git a/samples/react-flighttracker/src/assets/welcome-dark.png b/samples/react-flighttracker/src/assets/welcome-dark.png new file mode 100644 index 000000000..42f0b8d24 Binary files /dev/null and b/samples/react-flighttracker/src/assets/welcome-dark.png differ diff --git a/samples/react-flighttracker/src/assets/welcome-light.png b/samples/react-flighttracker/src/assets/welcome-light.png new file mode 100644 index 000000000..69eb3b48c Binary files /dev/null and b/samples/react-flighttracker/src/assets/welcome-light.png differ diff --git a/samples/react-flighttracker/src/components/FlightAirportOptions/FlightAirportOptions.tsx b/samples/react-flighttracker/src/components/FlightAirportOptions/FlightAirportOptions.tsx new file mode 100644 index 000000000..4186c131b --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightAirportOptions/FlightAirportOptions.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; + +import { SelectAirportPicker } from '../SelectAirport/SelectAirportPicker'; +import { SelectDate } from '../SelectDate/SelectDate'; +import { + SelectInformationType, +} from '../SelectInformationType/SelectInformationType'; +import { + useFlightAeroportOptionsStyles, +} from './useFlightAirportOptionsStyles'; + +export interface IFlightAeroportOptionsProps { } + +export const FlightAirportOptions: React.FunctionComponent = ( + props: React.PropsWithChildren +) => { + const { controlsStyles } = useFlightAeroportOptionsStyles(); + return ( + <> +
+
+ + + + +
+
+ + ); +}; diff --git a/samples/react-flighttracker/src/components/FlightAirportOptions/index.ts b/samples/react-flighttracker/src/components/FlightAirportOptions/index.ts new file mode 100644 index 000000000..f58e801c5 --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightAirportOptions/index.ts @@ -0,0 +1,2 @@ +export * from './FlightAirportOptions'; +export * from './useFlightAirportOptionsStyles'; diff --git a/samples/react-flighttracker/src/components/FlightAirportOptions/useFlightAirportOptionsStyles.ts b/samples/react-flighttracker/src/components/FlightAirportOptions/useFlightAirportOptionsStyles.ts new file mode 100644 index 000000000..9b2e84d19 --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightAirportOptions/useFlightAirportOptionsStyles.ts @@ -0,0 +1,89 @@ +/* eslint-disable @typescript-eslint/explicit-function-return-type */ +import * as react from 'react'; + +import { + IStackStyles, + mergeStyleSets, +} from 'office-ui-fabric-react'; +import { useRecoilState } from 'recoil'; + +import { globalState } from '../../recoil/atoms'; + +export const useFlightAeroportOptionsStyles = () => { + +const [ globalStateApp ] = useRecoilState(globalState); +const { currentTheme } = globalStateApp; + + const stackContainer : IStackStyles = react.useMemo(()=> { + return { + root: { + marginTop: 30, + width: "100%", + paddingTop: 20, + paddingBottom: 20, + paddingLeft: 20, + paddingRight: 20, + backgroundColor: currentTheme?.palette?.neutralLighterAlt, + }, + } + },[currentTheme]); + + const controlsStyles = react.useMemo(() => { + return mergeStyleSets({ + containerGrid: { + + display: "grid", + gridTemplateColumns: "repeat(auto-fit, minmax(min(100%, 300px), 1fr))", + columnGap: "10px", + rowGap: "0.5em", + + }, + container: { + paddingTop: 20, + paddingBottom: 20, + paddingLeft: 20, + paddingRight: 20, + marginTop: 10, + backgroundColor: currentTheme?.palette?.neutralLighterAlt, + + }, + header: { + display: "flex", + flexFlow: "row nowrap", + alignItems: "center", + justifyContent: "space-between", + width: "100%", + height: "50px", + padding: "10px", + boxSizing: "border-box", + }, + title: { + fontSize: "1.5rem", + fontWeight: "bold", + }, + body: { + display: "flex", + flexFlow: "column nowrap", + alignItems: "center", + justifyContent: "center", + width: "100%", + height: "100%", + padding: "10px", + boxSizing: "border-box", + }, + footer: { + display: "flex", + flexFlow: "row nowrap", + alignItems: "center", + justifyContent: "center", + width: "100%", + height: "50px", + padding: "10px", + boxSizing: "border-box", + }, + }); + }, [currentTheme]); + + + return {stackContainer, controlsStyles} +} diff --git a/samples/react-flighttracker/src/components/FlightSelector/FlightSelector.tsx b/samples/react-flighttracker/src/components/FlightSelector/FlightSelector.tsx new file mode 100644 index 000000000..96210be9d --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightSelector/FlightSelector.tsx @@ -0,0 +1,22 @@ +import * as React from 'react'; + +import { Stack } from 'office-ui-fabric-react/lib/Stack'; + +import { + FlightAirportOptions, +} from '../FlightAirportOptions/FlightAirportOptions'; + +export interface IFlightSelectorProps { } + +export const FlightSelector: React.FunctionComponent = ( + props: React.PropsWithChildren +) => { + + return ( + <> + + + + + ); +}; diff --git a/samples/react-flighttracker/src/components/FlightSelector/index.ts b/samples/react-flighttracker/src/components/FlightSelector/index.ts new file mode 100644 index 000000000..6141f203c --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightSelector/index.ts @@ -0,0 +1,2 @@ +export * from './FlightSelector'; +export * from './useFlightSelectorStyles'; diff --git a/samples/react-flighttracker/src/components/FlightSelector/useFlightSelectorStyles.ts b/samples/react-flighttracker/src/components/FlightSelector/useFlightSelectorStyles.ts new file mode 100644 index 000000000..b6201de89 --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightSelector/useFlightSelectorStyles.ts @@ -0,0 +1,16 @@ +/* eslint-disable @typescript-eslint/explicit-function-return-type */ +import * as react from 'react'; + +import { IStackStyles } from 'office-ui-fabric-react/lib/Stack'; + +export const useFlightSelectorStyles = () => { + const stackContainer : IStackStyles = react.useMemo(()=> { + return { + root: { + paddingTop: 10, + }, + } + },[]); + + return {stackContainer} +}; diff --git a/samples/react-flighttracker/src/components/FlightStatus/FlightStatus.tsx b/samples/react-flighttracker/src/components/FlightStatus/FlightStatus.tsx new file mode 100644 index 000000000..a0e5f4e59 --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightStatus/FlightStatus.tsx @@ -0,0 +1,46 @@ +import * as React from 'react'; + +import { Text } from 'office-ui-fabric-react'; +import { Stack } from 'office-ui-fabric-react/lib/Stack'; + +import { EStatus } from '../../constants'; +import { IFlightStatus } from '../../models/IFlightStatus'; +import { useFlightStatusStyles } from './useFlightStatusStyles'; + +export interface IFlightStatusProps { + flightInfo: IFlightStatus; +} + +export const FlightStatus: React.FunctionComponent = ( + props: React.PropsWithChildren +) => { + const { flightInfo } = props; + const { status, date } = flightInfo; + const { getFlightStatusStyles } = useFlightStatusStyles(); + + + const statusDescription = React.useMemo((): string => { + switch (status) { + case EStatus.Unknown: + case EStatus.CanceledUncertain: + return "Not Available"; + break; + default: + return status; + break; + } + }, [status]); + + return ( + <> + + + + {statusDescription} + + {date} + + + + ); +}; diff --git a/samples/react-flighttracker/src/components/FlightStatus/index.ts b/samples/react-flighttracker/src/components/FlightStatus/index.ts new file mode 100644 index 000000000..93fdcb614 --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightStatus/index.ts @@ -0,0 +1,2 @@ +export * from './FlightStatus'; +export * from './useFlightStatusStyles'; diff --git a/samples/react-flighttracker/src/components/FlightStatus/useFlightStatusStyles.ts b/samples/react-flighttracker/src/components/FlightStatus/useFlightStatusStyles.ts new file mode 100644 index 000000000..99f50c58e --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightStatus/useFlightStatusStyles.ts @@ -0,0 +1,35 @@ +/* eslint-disable @typescript-eslint/explicit-function-return-type */ +/* eslint-disable @typescript-eslint/no-unused-vars */ +import * as React from 'react'; + +import { + FontSizes, + FontWeights, +} from 'office-ui-fabric-react'; +import { ITextStyles } from 'office-ui-fabric-react/lib/components/Text'; +import { IImageStyles } from 'office-ui-fabric-react/lib/Image'; +import { useRecoilState } from 'recoil'; + +import { useUtils } from '../../hooks/useUtils'; +import { globalState } from '../../recoil/atoms/globalState'; + +export const useFlightStatusStyles = () => { + const [appState, setGlobalState] = useRecoilState(globalState); + const { currentTheme } = appState; + const { getFlightStatusColor } = useUtils(); + const imageStyles: Partial = { + root: { border: "1px solid ", borderRadius: "50%", padding: 5 }, + }; + + const getFlightStatusStyles = React.useCallback((status:string): ITextStyles => { + return { + root: { + color: getFlightStatusColor(status), + fontWeight: FontWeights.bold, + FontSizes: FontSizes.mediumPlus, + }, + }; + }, [getFlightStatusColor]); + + return { imageStyles,getFlightStatusStyles }; +}; diff --git a/samples/react-flighttracker/src/components/FlightTracker/FlightTracker.module.scss b/samples/react-flighttracker/src/components/FlightTracker/FlightTracker.module.scss new file mode 100644 index 000000000..9b3c4ec90 --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightTracker/FlightTracker.module.scss @@ -0,0 +1,34 @@ +@import '~office-ui-fabric-react/dist/sass/References.scss'; + +.flightTracker { + overflow: hidden; + padding: 1em; + color: "[theme:bodyText, default: #323130]"; + color: var(--bodyText); + &.teams { + font-family: $ms-font-family-fallbacks; + } +} + +.welcome { + text-align: center; +} + +.welcomeImage { + width: 100%; + max-width: 420px; +} + +.links { + a { + text-decoration: none; + color: "[theme:link, default:#03787c]"; + color: var(--link); // note: CSS Custom Properties support is limited to modern browsers only + + &:hover { + text-decoration: underline; + color: "[theme:linkHovered, default: #014446]"; + color: var(--linkHovered); // note: CSS Custom Properties support is limited to modern browsers only + } + } +} \ No newline at end of file diff --git a/samples/react-flighttracker/src/components/FlightTracker/FlightTracker.tsx b/samples/react-flighttracker/src/components/FlightTracker/FlightTracker.tsx new file mode 100644 index 000000000..67ee03af5 --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightTracker/FlightTracker.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; + +import { RecoilRoot } from 'recoil'; + +import { + EnhancedThemeProvider, +} from '@pnp/spfx-controls-react/lib/EnhancedThemeProvider'; + +import { FlightTrackerControl } from './FlightTrackerControl'; +import { IFlightTrackerProps } from './IFlightTrackerProps'; + +export const FlightTracker: React.FunctionComponent = ( + props: React.PropsWithChildren +) => { + const { currentTheme } = props; + return ( + +
+ + + +
+
+ ); +}; diff --git a/samples/react-flighttracker/src/components/FlightTracker/FlightTrackerControl.tsx b/samples/react-flighttracker/src/components/FlightTracker/FlightTrackerControl.tsx new file mode 100644 index 000000000..6216ca3b5 --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightTracker/FlightTrackerControl.tsx @@ -0,0 +1,40 @@ +import * as React from 'react'; + +import { Stack } from 'office-ui-fabric-react'; +import { useRecoilState } from 'recoil'; + +import { WebPartTitle } from '@pnp/spfx-controls-react/lib/WebPartTitle'; + +import { globalState } from '../../recoil/atoms/globalState'; +import { FlightSelector } from '../FlightSelector/FlightSelector'; +import { FlightTrackerList } from '../FlightTrackerList/FlightTrackerList'; +import { IFlightTrackerProps } from './IFlightTrackerProps'; + +export const FlightTrackerControl: React.FunctionComponent = ( + props: React.PropsWithChildren +) => { + const { isDarkTheme, hasTeamsContext, currentTheme, context, title, updateProperty, displayMode,numberItemsPerPage , webpartContainerWidth } = props; + const [appState, setGlobalState] = useRecoilState(globalState); + + React.useEffect(() => { + setGlobalState({ + ...appState, + isDarkTheme: isDarkTheme, + hasTeamsContext: hasTeamsContext, + currentTheme: currentTheme, + context: context, + numberItemsPerPage: numberItemsPerPage, + webpartContainerWidth: webpartContainerWidth, + }); + }, [isDarkTheme, hasTeamsContext, currentTheme, context, setGlobalState, webpartContainerWidth]); + + return ( + <> + + + + + + + ); +}; diff --git a/samples/react-flighttracker/src/components/FlightTracker/IFlightTrackerProps.ts b/samples/react-flighttracker/src/components/FlightTracker/IFlightTrackerProps.ts new file mode 100644 index 000000000..87c4b2750 --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightTracker/IFlightTrackerProps.ts @@ -0,0 +1,15 @@ +import { IReadonlyTheme } from '@microsoft/sp-component-base'; +import { DisplayMode } from '@microsoft/sp-core-library'; +import { WebPartContext } from '@microsoft/sp-webpart-base'; + +export interface IFlightTrackerProps { + title: string; + isDarkTheme: boolean; + hasTeamsContext: boolean; + currentTheme: IReadonlyTheme | undefined; + context: WebPartContext + numberItemsPerPage: number; + displayMode: DisplayMode; + updateProperty: (value: string) => void; + webpartContainerWidth: number; +} diff --git a/samples/react-flighttracker/src/components/FlightTracker/index.ts b/samples/react-flighttracker/src/components/FlightTracker/index.ts new file mode 100644 index 000000000..ecadcfa70 --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightTracker/index.ts @@ -0,0 +1,4 @@ +export * from './FlightTracker.module.scss'; +export * from './FlightTracker'; +export * from './FlightTrackerControl'; +export * from './IFlightTrackerProps'; diff --git a/samples/react-flighttracker/src/components/FlightTrackerList/FlightTrackerList.tsx b/samples/react-flighttracker/src/components/FlightTrackerList/FlightTrackerList.tsx new file mode 100644 index 000000000..d1e453cba --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightTrackerList/FlightTrackerList.tsx @@ -0,0 +1,169 @@ +/* eslint-disable @typescript-eslint/no-floating-promises */ +/* eslint-disable @typescript-eslint/no-unused-vars */ +/* eslint-disable @typescript-eslint/no-var-requires */ +import * as React from 'react'; + +import { + addHours, + getHours, + getMinutes, + set, +} from 'date-fns'; +import { MessageBarType } from 'office-ui-fabric-react'; +import { useRecoilState } from 'recoil'; + +import { isEmpty } from '@microsoft/sp-lodash-subset'; + +import { useAirlines } from '../../hooks/useAirlines'; +import { useFlightSchedule } from '../../hooks/useFlightSchedules'; +import { + useMappingFlightSchedules, +} from '../../hooks/useMappingFlightShedules'; +import { + IFlights, + IFlightTrackerListItem, + IGlobalState, +} from '../../models'; +import { globalState } from '../../recoil/atoms'; +import { airlineState } from '../../recoil/atoms/airlineState'; +import { ShowList } from '../ShowList'; +import { ShowMessage } from '../ShowMessage/ShowMessage'; +import { ShowSpinner } from '../ShowSpinner'; + +const DEFAULT_ITEMS_TO_LOAD = 7; + +export interface IFlightTrackerListProps {} + +export const FlightTrackerList: React.FunctionComponent = () => { + const [appState, setGlobalState] = useRecoilState(globalState); + const [airlineList, setAirlineList] = useRecoilState(airlineState); + const { mapFlightSchedules } = useMappingFlightSchedules(); + const { selectedAirPort, selectedInformationType, selectedDate, numberItemsPerPage, selectedTime } = appState; + const [isLoadingItems, setIsLoadingItems] = React.useState(true); + const [errorMessage, setErrorMessage] = React.useState(""); + const [listItems, setListItems] = React.useState([]); + const [flights, setFlights] = React.useState(undefined); + const [errorFlightSchedules, setErrorFlightSchedules] = React.useState(); + const [isLoadingFlightSchedules, setIsLoadingFlightSchedules] = React.useState(false); + const [isRefreshing, setIsRefreshing] = React.useState(false); + const { getFlightSchedule } = useFlightSchedule(); + const { airlines, errorLoadingAirlines, loadingAirlines } = useAirlines(); + const [hasMore, setHasMore] = React.useState(true); + const pageIndex = React.useRef(0); + const currentInformationType = React.useRef(selectedInformationType); + + const checkTypeInformationToScroll = React.useCallback(() => { + if (selectedInformationType !== currentInformationType.current) { + pageIndex.current = 0; + currentInformationType.current = selectedInformationType; + } + }, [selectedInformationType]); + + React.useEffect(() => { + if (!isEmpty(airlines)) { + setAirlineList(airlines); + } + }, [airlines]); + + React.useEffect(() => { + (async () => { + if (airlineList) { + try { + setIsLoadingFlightSchedules(true); + const searchDate: Date = set(selectedDate, { + hours: getHours(selectedTime), + minutes: getMinutes(selectedTime), + seconds: 0, + milliseconds: 0, + }); + const flightSchedule = await getFlightSchedule({ + fromDate: searchDate.toISOString(), + toDate: addHours(searchDate, 12).toISOString(), // maximuum 12 hours interval is supported by the API + airportCode: selectedAirPort?.gps_code, + }); + setFlights(flightSchedule); + setIsLoadingFlightSchedules(false); + } catch (error) { + setErrorFlightSchedules(error); + setIsLoadingFlightSchedules(false); + } + } + })(); + }, [airlineList, selectedAirPort, selectedDate, selectedTime, selectedInformationType, isRefreshing]); + + const loadItems = React.useCallback( + async (pageIndex: number): Promise => { + const numberItemsToLoad = numberItemsPerPage ? numberItemsPerPage + 1 : DEFAULT_ITEMS_TO_LOAD; + const mappedFlightSchedules = await mapFlightSchedules( + selectedInformationType, + flights, + pageIndex, + numberItemsToLoad + ); + return mappedFlightSchedules; + }, + [flights, numberItemsPerPage, selectedInformationType] + ); + + React.useEffect(() => { + (async () => { + if (flights) { + setIsLoadingItems(true); + + const mappedFlightSchedules = await loadItems(0); + setListItems(mappedFlightSchedules); + setIsLoadingItems(false); + setHasMore((prevHasMore) => (mappedFlightSchedules?.length > 0 ? true : false)); + } + setIsRefreshing((prevState) => (prevState === true ? false : prevState)); + })(); + }, [flights]); + + const onScroll = React.useCallback(async () => { + if (hasMore) { + checkTypeInformationToScroll(); + pageIndex.current = pageIndex.current + 1; + const mappedFlightSchedules = (await loadItems(pageIndex.current)) ?? []; + setListItems((prevListItems) => [...prevListItems, ...mappedFlightSchedules]); + setHasMore((prevHasMore) => (mappedFlightSchedules?.length > 0 ? true : false)); + } + }, [hasMore, loadItems]); + + const showMessage = React.useMemo((): boolean => { + setIsLoadingItems(false); + setErrorMessage(errorFlightSchedules?.message); + return !!errorFlightSchedules; + }, [errorFlightSchedules, setErrorMessage]); + + const showSpinner = React.useMemo((): boolean => { + return (isLoadingFlightSchedules || loadingAirlines || isLoadingItems) && !showMessage; + }, [isLoadingFlightSchedules, loadingAirlines, isLoadingItems, errorFlightSchedules]); + + const onRefresh = React.useCallback(async () => { + pageIndex.current = 0; + const currentDateTime = new Date(); + setGlobalState((prevState) => ({ + ...prevState, + selectedDate: currentDateTime, + selectedTime: currentDateTime, + } as IGlobalState)); + setIsRefreshing(true); + }, [appState]); + + if (!selectedAirPort || !selectedInformationType) { + return null; + } + + return ( + <> + + + + + ); +}; diff --git a/samples/react-flighttracker/src/components/FlightTrackerList/FlightTrackerListItem.tsx b/samples/react-flighttracker/src/components/FlightTrackerList/FlightTrackerListItem.tsx new file mode 100644 index 000000000..36cd3e6cf --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightTrackerList/FlightTrackerListItem.tsx @@ -0,0 +1,110 @@ +/* eslint-disable react/self-closing-comp */ +/* eslint-disable @typescript-eslint/no-unused-vars */ +import * as React from 'react'; + +import * as strings from 'FlightTrackerWebPartStrings'; +import { + IImageProps, + Stack, +} from 'office-ui-fabric-react'; + +import { EInformationType } from '../../constants/EInformationType'; +import { IFlightTrackerListItem } from '../../models/IFlightTrackerListItem'; +import { FlightStatus } from '../FlightStatus/FlightStatus'; +import { + FlightTrackerListItemAttribute, +} from './FlightTrackerListItemAttribute'; +import { RenderAttribute } from './RenderAttribute'; +import { useFlightTrackerStyles } from './useFlightTrackerStyles'; + +export interface IFlightTrackerListItemProps { + flights: IFlightTrackerListItem; + flightInformationType: EInformationType; +} + +export const FlightTrackerListItem: React.FunctionComponent = ( + props: React.PropsWithChildren +) => { + const { flights, flightInformationType } = props; + const { itemContainer, controlStyles } = useFlightTrackerStyles(); + + const imageProps: IImageProps = React.useMemo(() => { + return { src: flights.flightCompanyImage, width: 22, height: 22 }; + }, [flights.flightCompanyImage]); + const divRef = React.useRef(null); + + return ( + <> +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + ), + }} + /> + +
+
+
+ + ); +}; diff --git a/samples/react-flighttracker/src/components/FlightTrackerList/FlightTrackerListItemAttribute.tsx b/samples/react-flighttracker/src/components/FlightTrackerList/FlightTrackerListItemAttribute.tsx new file mode 100644 index 000000000..b129d0de4 --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightTrackerList/FlightTrackerListItemAttribute.tsx @@ -0,0 +1,63 @@ +import * as React from 'react'; + +import { + Icon, + Text, +} from 'office-ui-fabric-react'; +import { Stack } from 'office-ui-fabric-react/lib/Stack'; +import { useRecoilState } from 'recoil'; + +import { IAttribute } from '../../models'; +import { globalState } from '../../recoil/atoms'; +import { useFlightTrackerStyles } from './useFlightTrackerStyles'; + +export interface IFlightTrackerListItemAttributeProps { + attribute: IAttribute; + +} + +export const FlightTrackerListItemAttribute: React.FunctionComponent = ( + props: React.PropsWithChildren +) => { + const { attribute } = props; + const [appState] = useRecoilState(globalState); + const { controlStyles } = useFlightTrackerStyles(); + const { webpartContainerWidth } = appState; + const [renderAttribute, setRenderAttribute] = React.useState(null); + + const renderSeparator = React.useMemo(() => { + + if (webpartContainerWidth && webpartContainerWidth <= 454) { + return
; + } + return null; + }, [controlStyles.separator, webpartContainerWidth]); + + React.useEffect(() => { + setRenderAttribute(null); + + setRenderAttribute( + + {attribute.attributeName} + + {attribute?.iconProps ? : null} + {React.isValidElement(attribute.attributeValue) ? ( + attribute.attributeValue + ) : ( + + {attribute.attributeValue} + + )} + + {renderSeparator} + + ); + + }, [attribute, renderSeparator]); + + if (!attribute) { + return null; + } + + return <>{renderAttribute}; +}; diff --git a/samples/react-flighttracker/src/components/FlightTrackerList/FlightTrackerNoData.tsx b/samples/react-flighttracker/src/components/FlightTrackerList/FlightTrackerNoData.tsx new file mode 100644 index 000000000..be9f08b5c --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightTrackerList/FlightTrackerNoData.tsx @@ -0,0 +1,26 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ +import * as React from 'react'; + +import * as strings from 'FlightTrackerWebPartStrings'; +import { Icon } from 'office-ui-fabric-react'; +import { Stack } from 'office-ui-fabric-react/lib/Stack'; +import { Text } from 'office-ui-fabric-react/lib/Text'; + +import { useFlightTrackerStyles } from './useFlightTrackerStyles'; + +const image = require("../../assets/Departing-bro.png"); +export interface IFlightTrackerNoDataProps {} + +export const FlightTrackerNoData: React.FunctionComponent = ( + props: React.PropsWithChildren +) => { + const { controlStyles } = useFlightTrackerStyles(); + return ( + <> + + {strings.NoDataAvailableForAirport} + + + + ); +}; diff --git a/samples/react-flighttracker/src/components/FlightTrackerList/RenderAttribute.tsx b/samples/react-flighttracker/src/components/FlightTrackerList/RenderAttribute.tsx new file mode 100644 index 000000000..d0dc1cbca --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightTrackerList/RenderAttribute.tsx @@ -0,0 +1,17 @@ +import * as React from "react"; +import { Text } from "office-ui-fabric-react"; +export interface IRenderAttributeProps {} + +export const RenderAttribute: React.FunctionComponent = ( + props: React.PropsWithChildren +) => { + const { children } = props; + const childrens = React.Children.toArray(children); + return ( + <> + {childrens.map((child) => { + return React.isValidElement(child) ? child : {child}; + })} + + ); +}; diff --git a/samples/react-flighttracker/src/components/FlightTrackerList/index.ts b/samples/react-flighttracker/src/components/FlightTrackerList/index.ts new file mode 100644 index 000000000..1f9506d5a --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightTrackerList/index.ts @@ -0,0 +1,7 @@ +export * from './FlightTrackerList'; +export * from './FlightTrackerListItem'; +export * from './FlightTrackerListItemAttribute'; +export * from './FlightTrackerNoData'; +export * from './RenderAttribute'; + +export * from './useFlightTrackerStyles'; diff --git a/samples/react-flighttracker/src/components/FlightTrackerList/useFlightTrackerListColumns.tsx b/samples/react-flighttracker/src/components/FlightTrackerList/useFlightTrackerListColumns.tsx new file mode 100644 index 000000000..99d4948dc --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightTrackerList/useFlightTrackerListColumns.tsx @@ -0,0 +1,125 @@ +/* eslint-disable react/self-closing-comp */ +import * as React from 'react'; + +import { IColumn } from 'office-ui-fabric-react/lib/DetailsList'; + +import { IFlightStatus } from '../../models/IFlightStatus'; +import { IFlightTrackerListItem } from '../../models/IFlightTrackerListItem'; +import { FlightStatus } from '../FlightStatus/FlightStatus'; +import { useFlightTrackerStyles } from './useFlightTrackerStyles'; + +export interface IFlightTrackerListColumns { + getListColumns: () => IColumn[]; +} + +export const useFlightTrackerListColumns = ():IFlightTrackerListColumns => { + const { controlStyles } = useFlightTrackerStyles(); + + const getListColumns = React.useCallback((): IColumn[] => { + return [ + { + key: "column1", + name: " flightCompanyImage", + className: controlStyles.fileIconCell, + iconClassName: controlStyles.fileIconHeaderIcon, + ariaLabel: "company image", + isIconOnly: true, + fieldName: "image", + minWidth: 70, + maxWidth: 70, + onRender: (item: IFlightTrackerListItem) => { + return ( + + ); + } + }, + { + key: "column2", + name: "Air line", + fieldName: "flightCompany", + minWidth: 210, + maxWidth: 210, + isRowHeader: true, + isResizable: true, + data: "string", + isPadded: true, + }, + { + key: "column6", + + name: "Flight", + fieldName: "flightNumber", + minWidth: 70, + maxWidth: 90, + isResizable: true, + isCollapsible: true, + data: "number", + onRender: (item: IFlightTrackerListItem) => { + return {item.flightNumber}; + }, + }, + { + key: "column3", + name: "time", + fieldName: "flightTime", + minWidth: 70, + maxWidth: 90, + isResizable: true, + + data: "number", + onRender: (item: IFlightTrackerListItem) => { + return {item.flightTime}; + }, + isPadded: true, + }, + { + key: "column4", + name: "Terminal", + fieldName: "flightTerminal", + minWidth: 70, + maxWidth: 90, + isResizable: true, + isCollapsible: true, + data: "string", + + onRender: (item: IFlightTrackerListItem) => { + return {item.flightTerminal}; + }, + isPadded: true, + }, + { + key: "column5", + name: "Origem", + fieldName: "flightOrigin", + minWidth: 150, + maxWidth: 150, + isResizable: true, + isCollapsible: true, + data: "number", + onRender: (item: IFlightTrackerListItem) => { + return {item.flightOrigin}; + }, + }, + + { + key: "column6", + name: "Status", + fieldName: "flightTimeStatus", + minWidth: 70, + maxWidth: 90, + isResizable: true, + isCollapsible: true, + data: "number", + onRender: (item: IFlightTrackerListItem) => { + const flightInfo:IFlightStatus = { + date: item.flightRealTime, status: item.flightTimeStatusText, + flightId: item.flightNumber + }; + return ; + }, + }, + ]; + }, []); + + return {getListColumns } +}; diff --git a/samples/react-flighttracker/src/components/FlightTrackerList/useFlightTrackerStyles.ts b/samples/react-flighttracker/src/components/FlightTrackerList/useFlightTrackerStyles.ts new file mode 100644 index 000000000..50b4c8842 --- /dev/null +++ b/samples/react-flighttracker/src/components/FlightTrackerList/useFlightTrackerStyles.ts @@ -0,0 +1,136 @@ +/* eslint-disable @typescript-eslint/explicit-function-return-type */ +import * as React from 'react'; + +import { + FontWeights, + IScrollablePaneStyles, + IStackStyles, + ITextStyles, + mergeStyles, + mergeStyleSets, +} from 'office-ui-fabric-react'; +import { useRecoilState } from 'recoil'; + +import { globalState } from '../../recoil/atoms'; + +export const useFlightTrackerStyles = () => { + const [globalStateApp] = useRecoilState(globalState); + const { currentTheme } = globalStateApp; + + const listHeaderStyles: ITextStyles = React.useMemo(() => { + return { root: { fontWeight: FontWeights.semibold, color: currentTheme?.semanticColors?.bodyText } }; + }, [currentTheme]); + const itemContainer: IStackStyles = React.useMemo(() => { + return { + root: { + maxWidth: "100%", + overflow: "auto", + paddingTop: 10, + paddingBottom: 10, + paddingLeft: 20, + paddingRight: 20, + borderStyle: "solid", + borderWidth: 1, + borderColor: currentTheme?.palette?.neutralQuaternaryAlt, + margin: 3, + backgroundColor: currentTheme?.palette?.white, + // boxShadow: "0 5px 15px rgba(50, 50, 90, .1)", + ":hover": { + borderStyle: "solid", + borderWidth: 1, + borderColor: currentTheme?.palette?.themePrimary, + }, + }, + }; + }, [currentTheme]); + + const attributeContainer: IStackStyles = React.useMemo(() => { + return { + root: { + + backgroundColor: currentTheme?.palette?.themeLighterAlt, + + }, + }; + }, [currentTheme]); + + const scollableContainerStyles: Partial = React.useMemo(() => { + return { + root: { position: "relative", height: 87 * 6 , + }, + contentContainer: { "::-webkit-scrollbar-thumb": { + + backgroundColor: currentTheme?.semanticColors.bodyFrameBackground , }, + "::-webkit-scrollbar": { + height: 10, + width: 7, + + }, + "scrollbar-color": currentTheme?.semanticColors.bodyFrameBackground, + "scrollbar-width": "thin", }, + }; + }, [currentTheme]); + + const stackContainerStyles: IStackStyles= React.useMemo(() => { + return { + root:{padding: 20, backgroundColor: currentTheme?.palette?.neutralLighterAlt} + }; + }, [currentTheme]); + + const noDataContainerStyles: IStackStyles= React.useMemo(() => { + return { + root:{paddingTop: 50, } + }; + }, [currentTheme]); + + const controlStyles = mergeStyleSets({ + fileIconHeaderIcon: ({ + padding: 0, + fontSize: "16px", + }), + fileIconCell: mergeStyles({ + textAlign: "center", + selectors: { + "&:before": { + content: ".", + display: "inline-block", + verticalAlign: "middle", + height: "100%", + width: "0px", + visibility: "hidden", + }, + }, + }), + fileIconImg: mergeStyles({ + verticalAlign: "middle", + maxHeight: "16px", + maxWidth: "16px", + }), + controlWrapper: mergeStyles({ + display: "flex", + flexWrap: "wrap", + }), + + selectionDetails: mergeStyles({ + marginBottom: "20px", + }), + attributeContainerGrid: mergeStyles({ + width: "100%", + display: "grid", + gridTemplateColumns: "repeat(auto-fit, minmax(min(100%, 160px), 1fr))", + columnGap: '10px', + rowGap: 10, + } ), + + noDataFoundStyles: { + width: "300px", height: "300px", + }, + separator: mergeStyles({ + height: "1px", + backgroundColor: currentTheme?.palette?.neutralLight, + opacity: currentTheme.isInverted ? "0.2" : "1", + }), + }); + + return {attributeContainer,noDataContainerStyles, stackContainerStyles, scollableContainerStyles, itemContainer, controlStyles, listHeaderStyles }; +}; diff --git a/samples/react-flighttracker/src/components/SelectAirport/Airport.tsx b/samples/react-flighttracker/src/components/SelectAirport/Airport.tsx new file mode 100644 index 000000000..003292afc --- /dev/null +++ b/samples/react-flighttracker/src/components/SelectAirport/Airport.tsx @@ -0,0 +1,38 @@ +import * as React from 'react'; + +import { + Stack, + Text, +} from 'office-ui-fabric-react'; + +import { IAirport } from '../../models/IAirport'; +import { useSelectAirportStyles } from './useSelectAirportStyles'; + +export interface IAirportProps { + airport: IAirport; + onSelected?: (airport: IAirport) => void; +} + +export const Airport: React.FunctionComponent = (props: React.PropsWithChildren) => { + const { airport, onSelected } = props; + const city = React.useMemo(() => airport?.municipality ? `${airport?.municipality},` : "", [airport]); + const { IATACodeStyle, airportContainerStyles, airportItemStyles, controlStyles, airportNameStyles } = useSelectAirportStyles(); + return ( + <> + { + if (onSelected) {onSelected(airport); } + }} + > + + + {airport.iata_code} + {city} {airport.name} + + +
+ + + ); +}; diff --git a/samples/react-flighttracker/src/components/SelectAirport/SelectAirportPicker.tsx b/samples/react-flighttracker/src/components/SelectAirport/SelectAirportPicker.tsx new file mode 100644 index 000000000..d9c60e6a7 --- /dev/null +++ b/samples/react-flighttracker/src/components/SelectAirport/SelectAirportPicker.tsx @@ -0,0 +1,166 @@ +/* eslint-disable @typescript-eslint/no-use-before-define */ +/* eslint-disable @typescript-eslint/explicit-function-return-type */ +/* eslint-disable @typescript-eslint/no-floating-promises */ +import * as React from 'react'; + +import { + IBasePickerSuggestionsProps, + ICalloutContentStyleProps, + IInputProps, + IPickerItemProps, + ISuggestionItemProps, + ITag, + Label, + TagPicker, +} from 'office-ui-fabric-react'; +import { useRecoilState } from 'recoil'; + +import { useAirports } from '../../hooks/useAirports'; +import { IAirport } from '../../models/IAirport'; +import { globalState } from '../../recoil/atoms'; +import { Airport } from './Airport'; +import { SelectedAirport } from './SelectedAirport'; +import { useSelectAirportStyles } from './useSelectAirportStyles'; + +export interface ITagExtended extends ITag { + airportData: IAirport; +} + +export const SelectAirportPicker: React.FunctionComponent = () => { + const divRef = React.useRef(null); + const [appState, setAppState] = useRecoilState(globalState); + const { searchAirportsByText } = useAirports(); + const [selectedAirport, setSelectedAirports] = React.useState([]); + const { controlStyles, selecteAirportPickerStyles } = useSelectAirportStyles(); + + const inputProps: IInputProps = React.useMemo(() => { + return { + placeholder: "Select an airport", + }; + }, []); + + const pickerSuggestionsProps: IBasePickerSuggestionsProps = React.useMemo(() => { + return { + suggestionsHeaderText: "Suggested AirPorts", + noResultsFoundText: "No AirPort found", + }; + }, []); + + const listContainsTagList = React.useCallback((tag: ITag, tagList?: ITag[]) => { + if (!tagList || !tagList.length || tagList.length === 0) { + return false; + } + return tagList.some((compareTag) => compareTag.key === tag.key); + }, []); + + const loadMenuItems = React.useCallback( + async (text: string) => { + const airports = await searchAirportsByText(text); + const newPickerItems: ITag[] = []; + + for (const airport of airports) { + const city = airport?.municipality ? `${airport?.municipality},` : ""; + const item: ITagExtended = { + key: airport?.iata_code, + name: `${city} ${airport?.name}`, + airportData: airport, + }; + newPickerItems.push(item); + } + return newPickerItems; + }, + [searchAirportsByText] + ); + + const getTextFromItem = React.useCallback((item: ITag) => { + return item.name; + }, []); + + const onItemSelected = React.useCallback((item: ITag): ITag | null => { + setSelectedAirports([item]); + return item; + }, []); + + const filterSuggestedTags = React.useCallback( + async (filterText: string, tagList: ITag[]): Promise => { + if (filterText.length < 2) { + return []; + } + const pickerItems = await loadMenuItems(filterText); + return filterText ? pickerItems.filter((tag) => !listContainsTagList(tag, tagList)) : []; + }, + [loadMenuItems] + ); + + const onRenderSuggestionsItem = React.useCallback( + (props:ITagExtended, itemProps: ISuggestionItemProps) => { + const { airportData } = props; + return ( +
+ +
+ ); + }, + [appState] + ); + const onRenderItem = React.useCallback( + (props: IPickerItemProps) => { + const airport = {} as IAirport; + airport.iata_code = props.item.key as string; + airport.name = props.item.name; + + return ( +
+ { + setSelectedAirports([]); + setAppState({ ...appState, selectedAirPort: undefined }); + }} + /> +
+ ); + }, + [appState] + ); + + const pickerCalloutPropsStyles = (props: ICalloutContentStyleProps) => { + return { root: { width: divRef?.current?.offsetWidth } }; + }; + + const onPickerChange = React.useCallback((items: ITag[]) => { + setAppState({ ...appState, selectedAirPort: (items[0] as ITagExtended)?.airportData }); + }, [appState]); + + return ( +
+ +
+ + +
+ +
+ ); +}; diff --git a/samples/react-flighttracker/src/components/SelectAirport/SelectedAirport.tsx b/samples/react-flighttracker/src/components/SelectAirport/SelectedAirport.tsx new file mode 100644 index 000000000..e6d0f2821 --- /dev/null +++ b/samples/react-flighttracker/src/components/SelectAirport/SelectedAirport.tsx @@ -0,0 +1,51 @@ +import * as React from 'react'; + +import * as strings from 'FlightTrackerWebPartStrings'; +import { + IconButton, + Stack, + Text, +} from 'office-ui-fabric-react'; + +import { IAirport } from '../../models/IAirport'; +import { useSelectAirportStyles } from './useSelectAirportStyles'; + +export interface IAirportProps { + airport: IAirport; + onRemove?: (airport: IAirport) => void; +} + +export const SelectedAirport: React.FunctionComponent = ( + props: React.PropsWithChildren +) => { + const { airport, onRemove } = props; + + const { + selectedAirPortIATACodeStyle, + selectedAirportContainerStyles, + selectedAirportItemStyles, + + airportNameStyles, + } = useSelectAirportStyles(); + return ( + <> + + + + {airport.iata_code} + + {airport.name} + + { + onRemove(airport); + }} + /> + + + + + ); +}; diff --git a/samples/react-flighttracker/src/components/SelectAirport/index.ts b/samples/react-flighttracker/src/components/SelectAirport/index.ts new file mode 100644 index 000000000..9ecbcd885 --- /dev/null +++ b/samples/react-flighttracker/src/components/SelectAirport/index.ts @@ -0,0 +1,3 @@ +export * from './Airport'; +export * from './SelectAirportPicker'; +export * from './useSelectAirportStyles'; diff --git a/samples/react-flighttracker/src/components/SelectAirport/useSelectAirportStyles.ts b/samples/react-flighttracker/src/components/SelectAirport/useSelectAirportStyles.ts new file mode 100644 index 000000000..c9371f0bc --- /dev/null +++ b/samples/react-flighttracker/src/components/SelectAirport/useSelectAirportStyles.ts @@ -0,0 +1,230 @@ +/* eslint-disable @typescript-eslint/explicit-function-return-type */ +import * as react from 'react'; + +import { + IBasePickerStyles, + IContextualMenuStyles, + IStackStyles, + ITextFieldStyles, + ITextStyles, + mergeStyles, + mergeStyleSets, +} from 'office-ui-fabric-react'; +import { useRecoilState } from 'recoil'; + +import { globalState } from '../../recoil/atoms'; + +export const useSelectAirportStyles = () => { + const [appState] = useRecoilState(globalState); + + const { currentTheme, selectedAirPort } = appState; + + const contextMenuStyles: Partial = react.useMemo(() => { + return { + root: { + width: "100%", + }, + }; + }, []); + + const textFieldSelectAirPortStyles: Partial = react.useMemo(() => { + return { + prefix: { + width: selectedAirPort?.iata_code ? 55 : 0, + paddingLeft: selectedAirPort?.iata_code ? 10 : 0, + paddingRight: selectedAirPort?.iata_code ? 10 : 0, + backgroundColor: selectedAirPort?.iata_code + ? currentTheme?.palette?.themePrimary + : currentTheme?.semanticColors.inputBackground, + }, + }; + }, [currentTheme, selectedAirPort]); + + const IATACodePrefixStyle: ITextStyles = react.useMemo(() => { + return { + root: { + padding: 7, + transform: "uppercase", + fontWeight: "bold", + color: currentTheme?.palette?.white, + minWidth: 55, + textAlign: "center", + }, + }; + }, [currentTheme]); + + const IATACodeStyle: ITextStyles = react.useMemo(() => { + return { + root: { + backgroundColor: currentTheme?.palette?.themePrimary, + padding: 7, + transform: "uppercase", + fontWeight: "bold", + color: currentTheme?.palette?.white, + minWidth: 55, + textAlign: "center", + }, + }; + }, [currentTheme]); + + const selectedAirPortIATACodeStyle: ITextStyles = react.useMemo(() => { + return { + root: { + backgroundColor: currentTheme?.palette?.themePrimary, + padding: 2, + transform: "uppercase", + fontWeight: "bold", + color: currentTheme?.palette?.white, + minWidth: 55, + textAlign: "center", + }, + }; + }, [currentTheme]); + + const airportContainerStyles: IStackStyles = react.useMemo(() => { + return { + root: { + paddingTop: 5, + paddingLeft: 10, + paddingRight: 10, + paddingBottom: 10, + }, + }; + }, [currentTheme]); + + const selectedAirportContainerStyles: IStackStyles = react.useMemo(() => { + return { + root: { + paddingLeft: 10, + paddingRight: 10, + }, + }; + }, []); + + const airportNameStyles: IStackStyles = react.useMemo(() => { + return { + root: { + textAlign: "left", + color: currentTheme?.semanticColors?.bodyText, + }, + }; + }, [currentTheme]); + + const airportItemStyles: IStackStyles = react.useMemo(() => { + return { + root: { + cursor: "pointer", + ":hover": { + backgroundColor: currentTheme?.palette?.neutralLighterAlt, + }, + }, + }; + }, [currentTheme]); + + const selectedAirportItemStyles: IStackStyles = react.useMemo(() => { + return { + root: { + backgroundColor: currentTheme?.palette?.white, + }, + }; + }, [currentTheme]); + + const selecteAirportPickerStyles: Partial = react.useMemo(() => { + return { + root: { + width: " 100%", + borderRadius: 0, + marginTop: 0, + }, + + input: { + width: "100%", + color: currentTheme?.semanticColors?.bodyText, + backgroundColor: currentTheme?.palette?.white, + "::placeholder": { + color: currentTheme?.semanticColors?.bodyText, + } + + }, + + text: { + + borderStyle: "solid", + width: "100%", + borderWidth: 1, + backgroundColor: currentTheme?.palette?.white, + borderRadius: 0, + // borderColor: "rgb(225 223 221)" , + borderColor: `${currentTheme?.palette?.neutralQuaternaryAlt} !important`, + ":focus": { + borderStyle: "solid", + borderWidth: 1, + borderColor: `${currentTheme?.palette?.themePrimary} !important`, + }, + ":hover": { + borderStyle: "solid", + borderWidth: 1, + borderColor: `${currentTheme?.palette?.themePrimary} !important`, + }, + ":after": { + borderWidth: 0, + borderRadius: 0, + }, + }, + }; + }, [currentTheme?.palette, currentTheme?.semanticColors]); + + const controlStyles = react.useMemo(() => { + return mergeStyleSets({ + container: { + display: "flex", + flexFlow: "column nowrap", + alignItems: "center", + justifyContent: "center", + width: "100%", + height: "100%", + backgroundColor: "white", + padding: "10px", + boxSizing: "border-box", + }, + separator: mergeStyles({ + marginTop: 2, + marginBottom: 2, + borderBottomWidth: 1, + borderBottomColor: currentTheme?.palette?.neutralLighter, + borderBottomStyle: "solid", + }), + airportItemStyles: mergeStyles({ + cursor: "pointer", + ":hover": { + backgroundColor: currentTheme?.palette?.neutralLighterAlt, + }, + }), + searchContainerStyles: mergeStyles({ + + width: "100%", + }), + pickerItemStyles: mergeStyles({ + width: "100%", + }), + placeHolderStyles: mergeStyles({ + color: currentTheme?.semanticColors?.bodyText, + }), + }); + }, [currentTheme]); + + return { + selectedAirportContainerStyles, + selectedAirportItemStyles, + textFieldSelectAirPortStyles, + IATACodePrefixStyle, + controlStyles, + IATACodeStyle, + airportContainerStyles, + airportItemStyles, + airportNameStyles, + contextMenuStyles, + selectedAirPortIATACodeStyle, + selecteAirportPickerStyles, + }; +}; diff --git a/samples/react-flighttracker/src/components/SelectDate/SelectDate.tsx b/samples/react-flighttracker/src/components/SelectDate/SelectDate.tsx new file mode 100644 index 000000000..77ead6f00 --- /dev/null +++ b/samples/react-flighttracker/src/components/SelectDate/SelectDate.tsx @@ -0,0 +1,61 @@ +import * as React from 'react'; + +import * as strings from 'FlightTrackerWebPartStrings'; +import { + DatePicker, + IDatePicker, + Label, + Stack, +} from 'office-ui-fabric-react'; +import { useRecoilState } from 'recoil'; + +import { DayPickerStrings } from '../../constants'; +import { globalState } from '../../recoil/atoms'; +import { SelectTime } from '../SelectTime/SelectTime'; +import { useSelctedDateStyles } from './useSelectDateStyles'; + +export interface ISelectDateProps {} + +export const SelectDate: React.FunctionComponent = ( + props: React.PropsWithChildren +) => { + const { selectedDateStyle, textFieldStyles, labelDateStyles, labelTimeStyles } = useSelctedDateStyles(); + const [appState, setAppState] = useRecoilState(globalState); + const { selectedDate, selectedTime } = appState; + + const onSelectDate = React.useCallback( + (date: Date | null | undefined) => { + setAppState({ + ...appState, + selectedDate: date, + }); + }, + [appState, setAppState, selectedTime] + ); + + const datePickerRef = React.useRef(null); + return ( + <> + + + + + + + + + + + + + ); +}; diff --git a/samples/react-flighttracker/src/components/SelectDate/index.ts b/samples/react-flighttracker/src/components/SelectDate/index.ts new file mode 100644 index 000000000..343ea70da --- /dev/null +++ b/samples/react-flighttracker/src/components/SelectDate/index.ts @@ -0,0 +1,2 @@ +export * from './SelectDate'; +export * from './useSelectDateStyles'; diff --git a/samples/react-flighttracker/src/components/SelectDate/useSelectDateStyles.ts b/samples/react-flighttracker/src/components/SelectDate/useSelectDateStyles.ts new file mode 100644 index 000000000..c845e5254 --- /dev/null +++ b/samples/react-flighttracker/src/components/SelectDate/useSelectDateStyles.ts @@ -0,0 +1,88 @@ +import * as react from 'react'; + +/* eslint-disable @typescript-eslint/explicit-function-return-type */ +import { + IDatePickerStyles, + ILabelStyles, +} from 'office-ui-fabric-react'; +import { useRecoilState } from 'recoil'; + +import { globalState } from '../../recoil/atoms'; + +export const useSelctedDateStyles= () => { + const [appState] = useRecoilState(globalState); + + const { currentTheme } = appState; + + const labelDateStyles = react.useMemo(() => { + return { + root:{ + width: '75%', + } + } + + }, []); + + const labelTimeStyles:ILabelStyles = react.useMemo(() => { + return { + root:{ + width: '25%', + } + } + + }, []); + + const textFieldStyles = react.useMemo(() => { + return { + field: { + color: currentTheme?.semanticColors?.bodyText, + + }, + }; + }, [currentTheme]); + + const selectedDateStyle: Partial = react.useMemo(() => { + return { + root:{ + width: "100%", + color: currentTheme?.semanticColors?.bodyText, + ".ms-TextField-fieldGroup":{ + borderWidth: `0px !important`, + backgroundColor: currentTheme?.semanticColors.bodyBackground , + + }, + }, + fieldGroup:{ + color: currentTheme?.semanticColors?.bodyText, + + } , + + textField: { + borderStyle: "solid", + width: "100%", + borderWidth: 1, + backgroundColor: currentTheme?.palette?.white , + borderRadius: 0, + color: currentTheme?.semanticColors?.bodyText, + borderColor: `${currentTheme?.palette?.neutralQuaternaryAlt} !important` , + ":focus": { + borderStyle: "solid", + borderWidth: 1, + borderColor: `${currentTheme?.palette?.themePrimary} !important` , + }, + ":hover": { + borderStyle: "solid", + borderWidth: 1, + borderColor: `${currentTheme?.palette?.themePrimary} !important` , + }, + ":after": { + borderWidth: 0, + borderRadius: 0, + }, + }, + }; + }, [currentTheme]); + + + return {textFieldStyles, selectedDateStyle, labelDateStyles, labelTimeStyles}; +} diff --git a/samples/react-flighttracker/src/components/SelectInformationType/SelectInformationType.tsx b/samples/react-flighttracker/src/components/SelectInformationType/SelectInformationType.tsx new file mode 100644 index 000000000..474138383 --- /dev/null +++ b/samples/react-flighttracker/src/components/SelectInformationType/SelectInformationType.tsx @@ -0,0 +1,99 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ +import * as React from 'react'; + +import * as strings from 'FlightTrackerWebPartStrings'; +import { + Dropdown, + DropdownMenuItemType, + IDropdownOption, + IDropdownProps, +} from 'office-ui-fabric-react/lib/Dropdown'; +import { FontIcon } from 'office-ui-fabric-react/lib/Icon'; +import { Stack } from 'office-ui-fabric-react/lib/Stack'; +import { useRecoilState } from 'recoil'; + +import { EInformationType } from '../../constants/EInformationType'; +import { EInformationTypesIcons } from '../../constants/EInformationTypesIcons'; +import { globalState } from '../../recoil/atoms'; +import { useSelectInformationStyles } from './useSelectInformationStyles'; + +export interface ISelectInformationTypeProps {} + +export const SelectInformationType: React.FunctionComponent = ( + props: React.PropsWithChildren +) => { + const [appState, setAppState] = useRecoilState(globalState); + const { dropdownStyles, controlStyles } = useSelectInformationStyles(); + const options: IDropdownOption[] = React.useMemo(() => { + return [ + { key: "Header", text: "Options", itemType: DropdownMenuItemType.Header }, + { key: "Departures", text: "Departures", data: { icon: EInformationTypesIcons.DEPARTURES } }, + { key: "divider_2", text: "-", itemType: DropdownMenuItemType.Divider }, + { key: "Arrivals", text: "Arrivals", data: { icon: EInformationTypesIcons.ARRIVALS } }, + ]; + }, []); + + const getImages = React.useCallback((image: string): string => { + switch (image) { + case EInformationTypesIcons.DEPARTURES: + return "departuresSVG"; + case EInformationTypesIcons.ARRIVALS: + return "arrivalsSVG"; + default: + return ""; + } + }, []); + + const onRenderOption = React.useCallback( + (option: IDropdownOption): JSX.Element => { + return ( + + {option.data && option.data.icon && ( + + )} + {option.text} + + ); + }, + [getImages, controlStyles.iconStyles] + ); + + const onRenderTitle = React.useCallback( + (options: IDropdownOption[]): JSX.Element => { + const option = options[0]; + return ( + + {option.data && option.data.icon && ( )} + {option.text} + + ); + }, + [getImages, controlStyles.iconStyles] + ); + + const onRenderPlaceholder = React.useCallback((props: IDropdownProps): JSX.Element => { + return ( + + {props.placeholder} + + ); + }, []); + + return ( + <> + + setAppState({ ...appState, selectedInformationType: option.key as EInformationType }) + } + selectedKey={appState.selectedInformationType} + /> + + ); +}; diff --git a/samples/react-flighttracker/src/components/SelectInformationType/index.ts b/samples/react-flighttracker/src/components/SelectInformationType/index.ts new file mode 100644 index 000000000..f45a61772 --- /dev/null +++ b/samples/react-flighttracker/src/components/SelectInformationType/index.ts @@ -0,0 +1,2 @@ +export * from './SelectInformationType'; +export * from './useSelectInformationStyles'; diff --git a/samples/react-flighttracker/src/components/SelectInformationType/useSelectInformationStyles.ts b/samples/react-flighttracker/src/components/SelectInformationType/useSelectInformationStyles.ts new file mode 100644 index 000000000..00c6f3672 --- /dev/null +++ b/samples/react-flighttracker/src/components/SelectInformationType/useSelectInformationStyles.ts @@ -0,0 +1,79 @@ +/* eslint-disable @typescript-eslint/explicit-function-return-type */ + +import * as React from 'react'; + +import { + IIconStyles, + mergeStyles, + mergeStyleSets, +} from 'office-ui-fabric-react'; +import { IDropdownStyles } from 'office-ui-fabric-react/lib/Dropdown'; +import { useRecoilState } from 'recoil'; + +import { globalState } from '../../recoil/atoms'; + +/* eslint-disable @typescript-eslint/no-empty-function */ +export const useSelectInformationStyles = () => { + const [appState] = useRecoilState(globalState); + const { currentTheme } = appState; + const iconStyles: IIconStyles = React.useMemo(() => { + return { root: { width: "20px", height: "20px", fill: currentTheme?.semanticColors?.bodyText } }; + }, [currentTheme]); + + const dropdownStyles: Partial = React.useMemo(() => { + return { + caretDownWrapper: { + color: currentTheme?.semanticColors?.bodyText, + ":hover": { color: currentTheme?.semanticColors?.bodyText }, + }, + title: { + borderWidth: 0, + borderStyle: undefined, + backgroundColor: currentTheme?.palette?.white, + color: currentTheme?.semanticColors?.bodyText, + }, + dropdown: { + minWidth: 200, + width: "100%", + borderStyle: "solid", + + borderWidth: 1, + backgroundColor: currentTheme?.palette?.white, + borderRadius: 0, + borderColor: `${currentTheme?.palette?.neutralQuaternaryAlt} !important`, + ":focus": { + borderStyle: "solid", + borderWidth: 1, + borderColor: `${currentTheme?.palette?.themePrimary} !important`, + }, + ":hover": { + borderStyle: "solid", + borderWidth: 1, + borderColor: `${currentTheme?.palette?.themePrimary} !important`, + '.ms-Dropdown-caretDown': { + color: currentTheme?.semanticColors?.bodyText, + } + }, + ":after": { + borderWidth: 0, + borderRadius: 0, + }, + ":focus:after": { + borderWidth: 0, + }, + }, + }; + }, [currentTheme]); + + const controlStyles = React.useMemo(() => { + return mergeStyleSets({ + iconStyles: mergeStyles({ + width: "20px", + height: "20px", + fill: `${currentTheme?.semanticColors?.bodyText} !important`, + }), + }); + }, [currentTheme]); + + return { controlStyles, iconStyles, dropdownStyles }; +}; diff --git a/samples/react-flighttracker/src/components/SelectTime/SelectTime.tsx b/samples/react-flighttracker/src/components/SelectTime/SelectTime.tsx new file mode 100644 index 000000000..7486b2799 --- /dev/null +++ b/samples/react-flighttracker/src/components/SelectTime/SelectTime.tsx @@ -0,0 +1,105 @@ +/* eslint-disable @typescript-eslint/no-unused-vars */ +/* eslint-disable @typescript-eslint/no-var-requires */ +import * as React from 'react'; + +import { format } from 'date-fns'; +import set from 'date-fns/set'; +import * as strings from 'FlightTrackerWebPartStrings'; +import { + Dropdown, + IDropdownOption, +} from 'office-ui-fabric-react/lib/Dropdown'; +import { Stack } from 'office-ui-fabric-react/lib/Stack'; +import { Text } from 'office-ui-fabric-react/lib/Text'; +import { useRecoilState } from 'recoil'; + +import { globalState } from '../../recoil/atoms'; +import { useSelectTimeStyles } from './useSelectTimeStyles'; + +interface IDropdownOptionExtended extends IDropdownOption { + date: Date; +} + +export interface ISelectInformationTypeProps {} + +export const SelectTime: React.FunctionComponent = ( + props: React.PropsWithChildren +) => { + const [appState, setAppState] = useRecoilState(globalState); + const { dropdownStyles } = useSelectTimeStyles(); + const now = new Date(); + const [selectedOption, setSelectedOption] = React.useState(undefined); + + const checkTime = React.useCallback((time: Date): Date => { + const minutesOfTime = format(time, "mm"); + if (+minutesOfTime > 0 && +minutesOfTime < 16) { + return set(time, { minutes: 0 }); + } else if (+minutesOfTime > 15 && +minutesOfTime < 31) { + return set(time, { minutes: 15 }); + } else if (+minutesOfTime > 30 && +minutesOfTime < 46) { + return set(time, { minutes: 30 }); + } else { + return set(time, { minutes: 45 }); + } + }, []); + + const options: IDropdownOptionExtended[] = React.useMemo(() => { + const options: IDropdownOptionExtended[] = []; + for (let i = 0; i < 24; i++) { + const dateHour = set(new Date(now), { hours: i, minutes: 0, seconds: 0, milliseconds: 0 }); + const dateQuarter = set(new Date(now), { hours: i, minutes: 15, seconds: 0, milliseconds: 0 }); + const dateHalf = set(new Date(now), { hours: i, minutes: 30, seconds: 0, milliseconds: 0 }); + const date45= set(new Date(now), { hours: i, minutes: 45, seconds: 0, milliseconds: 0 }); + options.push({ + key: format(dateHour, "H:mm"), + text: format(dateHour, "H:mm"), + date: dateHour, + }); + options.push({ + key: format(dateQuarter, "H:mm"), + text: format(dateQuarter, "H:mm"), + date: dateQuarter, + }); + options.push({ + key: format(dateHalf, "H:mm"), + text: format(dateHalf, "H:mm"), + date: dateHalf, + }); + options.push({ + key: format(date45, "H:mm"), + text: format(date45, "H:mm"), + date: date45, + }); + } + return options; + }, []); + + const onRenderTitle = React.useCallback((options: IDropdownOptionExtended[]): JSX.Element => { + const option = options[0]; + return ( + + {format(option.date, "H:mm")} + + ); + }, []); + return ( + <> + { + const optionExtended = option as IDropdownOptionExtended; + setSelectedOption(optionExtended); + setAppState((prevState) => ({ + ...prevState, + selectedTime: optionExtended?.date, + + })); + }} + selectedKey={selectedOption ? selectedOption.key : format(checkTime(now), "H:mm")} + /> + + ); +}; diff --git a/samples/react-flighttracker/src/components/SelectTime/useSelectTimeStyles.ts b/samples/react-flighttracker/src/components/SelectTime/useSelectTimeStyles.ts new file mode 100644 index 000000000..05f03c3ed --- /dev/null +++ b/samples/react-flighttracker/src/components/SelectTime/useSelectTimeStyles.ts @@ -0,0 +1,76 @@ +/* eslint-disable @typescript-eslint/explicit-function-return-type */ + +import * as React from 'react'; + +import { + mergeStyles, + mergeStyleSets, +} from 'office-ui-fabric-react'; +import { IDropdownStyles } from 'office-ui-fabric-react/lib/Dropdown'; +import { useRecoilState } from 'recoil'; + +import { globalState } from '../../recoil/atoms'; + +/* eslint-disable @typescript-eslint/no-empty-function */ +export const useSelectTimeStyles = () => { + const [appState] = useRecoilState(globalState); + const { currentTheme } = appState; + + + const dropdownStyles: Partial = React.useMemo(() => { + return { + caretDownWrapper: { + color: currentTheme?.semanticColors?.bodyText, + ":hover": { color: currentTheme?.semanticColors?.bodyText }, + }, + title: { + borderWidth: 0, + borderStyle: undefined, + backgroundColor: currentTheme?.palette?.white, + color: currentTheme?.semanticColors?.bodyText, + }, + dropdown: { + minWidth: 95, + width: '100%', + borderStyle: "solid", + + borderWidth: 1, + backgroundColor: currentTheme?.palette?.white, + borderRadius: 0, + borderColor: `${currentTheme?.palette?.neutralQuaternaryAlt} !important`, + ":focus": { + borderStyle: "solid", + borderWidth: 1, + borderColor: `${currentTheme?.palette?.themePrimary} !important`, + }, + ":hover": { + borderStyle: "solid", + borderWidth: 1, + borderColor: `${currentTheme?.palette?.themePrimary} !important`, + '.ms-Dropdown-caretDown': { + color: currentTheme?.semanticColors?.bodyText, + } + }, + ":after": { + borderWidth: 0, + borderRadius: 0, + }, + ":focus:after": { + borderWidth: 0, + }, + }, + }; + }, [currentTheme]); + + const controlStyles = React.useMemo(() => { + return mergeStyleSets({ + iconStyles: mergeStyles({ + width: "20px", + height: "20px", + fill: `${currentTheme?.semanticColors?.bodyText} !important`, + }), + }); + }, [currentTheme]); + + return { controlStyles, dropdownStyles }; +}; diff --git a/samples/react-flighttracker/src/components/ShowList/ShowList.tsx b/samples/react-flighttracker/src/components/ShowList/ShowList.tsx new file mode 100644 index 000000000..57f05934b --- /dev/null +++ b/samples/react-flighttracker/src/components/ShowList/ShowList.tsx @@ -0,0 +1,116 @@ +/* eslint-disable @typescript-eslint/explicit-function-return-type */ +/* eslint-disable @typescript-eslint/no-explicit-any */ +import * as React from 'react'; + +import { + IconButton, + ScrollablePane, + ScrollbarVisibility, + Text, +} from 'office-ui-fabric-react'; +import { Stack } from 'office-ui-fabric-react/lib/Stack'; +import { useRecoilState } from 'recoil'; + +import { IFlightTrackerListItem } from '../../models'; +import { globalState } from '../../recoil/atoms'; +import { + FlightTrackerListItem, +} from '../FlightTrackerList/FlightTrackerListItem'; +import { FlightTrackerNoData } from '../FlightTrackerList/FlightTrackerNoData'; +import { + useFlightTrackerStyles, +} from '../FlightTrackerList/useFlightTrackerStyles'; + +export interface IShowListProps { + listItems: IFlightTrackerListItem[]; + showList: boolean; + onScroll: () => Promise; + onRefresh: () => Promise; +} + +export const ShowList: React.FunctionComponent = (props: React.PropsWithChildren) => { + const { listItems, showList, onScroll, onRefresh } = props; + const { + noDataContainerStyles, + listHeaderStyles, + scollableContainerStyles, + stackContainerStyles, + } = useFlightTrackerStyles(); + + const [appState] = useRecoilState(globalState); + const { selectedAirPort, selectedInformationType, } = appState; + const scrollablePaneRef: any = React.createRef(); + const [isScrolling, setIsScrolling] = React.useState(false); + + const listHeader = React.useMemo(() => { + if (selectedAirPort?.municipality) { + return `${selectedAirPort?.municipality}, ${selectedAirPort?.name} - ${selectedInformationType}`; + } else { + return `${selectedAirPort?.name} - ${selectedInformationType}`; + } + }, [selectedAirPort, selectedInformationType]); + + const getScrollPosition = React.useCallback((divContainerRef: any) => { + const { scrollTop, scrollHeight, clientHeight } = divContainerRef; + const percentNow = (scrollTop / (scrollHeight - clientHeight)) * 100; + return percentNow; + }, []); + + const onScrollList = React.useCallback(async () => { + if (isScrolling) { + return; + } + setIsScrolling(true); + const scrollPosition = getScrollPosition(scrollablePaneRef.current.contentContainer); + if (scrollPosition > 90) { + await onScroll(); + } + setIsScrolling(false); + }, [onScroll, isScrolling, getScrollPosition, scrollablePaneRef]); + + if (!showList) { + return null; + } + + return ( + <> + + + + {listHeader} + + + { + ev.preventDefault(); + await onRefresh(); + }} + /> + + + + + {listItems && listItems.length > 0 ? ( + listItems.map((item, index) => { + return ( + + ); + }) + ) : ( + + + + )} + + + + ); +}; diff --git a/samples/react-flighttracker/src/components/ShowList/index.ts b/samples/react-flighttracker/src/components/ShowList/index.ts new file mode 100644 index 000000000..ce7394157 --- /dev/null +++ b/samples/react-flighttracker/src/components/ShowList/index.ts @@ -0,0 +1 @@ +export * from './ShowList'; diff --git a/samples/react-flighttracker/src/components/ShowMessage/ShowMessage.tsx b/samples/react-flighttracker/src/components/ShowMessage/ShowMessage.tsx new file mode 100644 index 000000000..638594009 --- /dev/null +++ b/samples/react-flighttracker/src/components/ShowMessage/ShowMessage.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +import { Stack } from 'office-ui-fabric-react/lib/components/Stack'; +import { + MessageBar, + MessageBarType, +} from 'office-ui-fabric-react/lib/MessageBar'; + +export interface IShowMessageProps { + message: string; + messageBarType: MessageBarType; + isShow: boolean; +} + +export const ShowMessage: React.FunctionComponent = ( + props: React.PropsWithChildren +) => { + const { message, messageBarType, isShow } = props; + return ( + <> + {isShow ? ( + + {message} + + ) : null} + + ); +}; diff --git a/samples/react-flighttracker/src/components/ShowMessage/index.ts b/samples/react-flighttracker/src/components/ShowMessage/index.ts new file mode 100644 index 000000000..57ceff960 --- /dev/null +++ b/samples/react-flighttracker/src/components/ShowMessage/index.ts @@ -0,0 +1 @@ +export * from './ShowMessage'; diff --git a/samples/react-flighttracker/src/components/ShowSpinner/ShowSpinner.tsx b/samples/react-flighttracker/src/components/ShowSpinner/ShowSpinner.tsx new file mode 100644 index 000000000..e4fc9daad --- /dev/null +++ b/samples/react-flighttracker/src/components/ShowSpinner/ShowSpinner.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; + +import { + Spinner, + SpinnerLabelPosition, + SpinnerSize, +} from 'office-ui-fabric-react/lib/Spinner'; +import { Stack } from 'office-ui-fabric-react/lib/Stack'; + +export interface IShowSpinnerProps { + size?: SpinnerSize; + label?: string; + labelPosition?: SpinnerLabelPosition; + isShow: boolean; +} + +export const ShowSpinner: React.FunctionComponent = (props: React.PropsWithChildren) => { + const { size, label, labelPosition , isShow} = props; + + return ( + <> + {isShow ? ( + + + ) : null} + + ); +}; diff --git a/samples/react-flighttracker/src/components/ShowSpinner/index.ts b/samples/react-flighttracker/src/components/ShowSpinner/index.ts new file mode 100644 index 000000000..bd1df4a51 --- /dev/null +++ b/samples/react-flighttracker/src/components/ShowSpinner/index.ts @@ -0,0 +1 @@ +export * from './ShowSpinner'; diff --git a/samples/react-flighttracker/src/constants/EInformationType.ts b/samples/react-flighttracker/src/constants/EInformationType.ts new file mode 100644 index 000000000..1bd08f3c5 --- /dev/null +++ b/samples/react-flighttracker/src/constants/EInformationType.ts @@ -0,0 +1,4 @@ +export enum EInformationType { + "DEPARTURES" = "Departures", + "ARRIVALS" = "Arrivals", +} diff --git a/samples/react-flighttracker/src/constants/EInformationTypesIcons.ts b/samples/react-flighttracker/src/constants/EInformationTypesIcons.ts new file mode 100644 index 000000000..c9e01a6a6 --- /dev/null +++ b/samples/react-flighttracker/src/constants/EInformationTypesIcons.ts @@ -0,0 +1,4 @@ +export enum EInformationTypesIcons { + "DEPARTURES" = "Departures", + "ARRIVALS" = "Arrivals", +} diff --git a/samples/react-flighttracker/src/constants/EStatus.ts b/samples/react-flighttracker/src/constants/EStatus.ts new file mode 100644 index 000000000..52f248997 --- /dev/null +++ b/samples/react-flighttracker/src/constants/EStatus.ts @@ -0,0 +1,17 @@ +export enum EStatus { + Unknown = "Unknown", + Expected = "Expected", + EnRoute = "EnRoute", + CheckIn = "CheckIn", + Boarding = "Boarding", + GateClosed = "GateClosed", + Departed = "Departed", + Delayed = "Delayed", + Approaching= "Approaching", + Arrived = "Arrived", + Canceled = "Canceled", + Diverted = "Diverted", + CanceledUncertain = "CanceledUncertain", +} + + diff --git a/samples/react-flighttracker/src/constants/constants.ts b/samples/react-flighttracker/src/constants/constants.ts new file mode 100644 index 000000000..5cb6f6dee --- /dev/null +++ b/samples/react-flighttracker/src/constants/constants.ts @@ -0,0 +1,40 @@ +import { IDatePickerStrings } from 'office-ui-fabric-react/lib/DatePicker'; + +export const DayPickerStrings: IDatePickerStrings = { + months: [ + 'January', + 'February', + 'March', + 'April', + 'May', + 'June', + 'July', + 'August', + 'September', + 'October', + 'November', + 'December', + ], + + shortMonths: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], + + days: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], + + shortDays: ['S', 'M', 'T', 'W', 'T', 'F', 'S'], + + goToToday: 'Go to today', + prevMonthAriaLabel: 'Go to previous month', + nextMonthAriaLabel: 'Go to next month', + prevYearAriaLabel: 'Go to previous year', + nextYearAriaLabel: 'Go to next year', + closeButtonAriaLabel: 'Close date picker', + monthPickerHeaderAriaLabel: '{0}, select to change the year', + yearPickerHeaderAriaLabel: '{0}, select to change the month', +}; + +export const RAPID_API_KEY_AERODATABOX = "a96bf6dd14mshaba3c61477da062p1a89f2jsn5190b7082e8e"; +export const RAPID_API_HOST_AERODATABOX = "aerodatabox.p.rapidapi.com"; +export const RAPID_API_KEY_COUNTRY_FLAGS = "a96bf6dd14mshaba3c61477da062p1a89f2jsn5190b7082e8e"; +export const RAPID_API_HOST_COUNTRY_FLAGS = "country-flags.p.rapidapi.com"; +export const RAPID_API_KEY_FLIGHT_RADAR = "a96bf6dd14mshaba3c61477da062p1a89f2jsn5190b7082e8e"; +export const RAPID_API_HOST_FLIGHT_RADAR = "flight-radar1.p.rapidapi.com"; diff --git a/samples/react-flighttracker/src/constants/index.ts b/samples/react-flighttracker/src/constants/index.ts new file mode 100644 index 000000000..bd90d1051 --- /dev/null +++ b/samples/react-flighttracker/src/constants/index.ts @@ -0,0 +1,2 @@ +export * from './EStatus'; +export * from './constants'; diff --git a/samples/react-flighttracker/src/helpers/index.ts b/samples/react-flighttracker/src/helpers/index.ts new file mode 100644 index 000000000..4017b14e3 --- /dev/null +++ b/samples/react-flighttracker/src/helpers/index.ts @@ -0,0 +1 @@ +export * from './registerSVGIcons'; diff --git a/samples/react-flighttracker/src/helpers/registerSVGIcons.tsx b/samples/react-flighttracker/src/helpers/registerSVGIcons.tsx new file mode 100644 index 000000000..aff1c3cd1 --- /dev/null +++ b/samples/react-flighttracker/src/helpers/registerSVGIcons.tsx @@ -0,0 +1,24 @@ +import * as React from 'react'; + +/* eslint-disable @typescript-eslint/explicit-function-return-type */ +import { registerIcons } from '@uifabric/styling'; + +export const registerSVGIcons = () => { + registerIcons({ + icons: { + arrivalsSVG: ( + + + + ), + departuresSVG: ( + + + + ), + noDataFoundSVG: ( + + ) + }, + }); +}; diff --git a/samples/react-flighttracker/src/hooks/useAirlines.ts b/samples/react-flighttracker/src/hooks/useAirlines.ts new file mode 100644 index 000000000..5fc1109fb --- /dev/null +++ b/samples/react-flighttracker/src/hooks/useAirlines.ts @@ -0,0 +1,55 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ +/* eslint-disable no-unused-expressions */ +import { + useCallback, + useEffect, + useState, +} from 'react'; + +import { IAirlines } from '../models/IAirlines'; +import { useLocalStorage } from './useLocalStorage'; + +const airlinesData = require("../mockData/airlines.json"); +/* eslint-disable @typescript-eslint/explicit-function-return-type */ +/* eslint-disable @typescript-eslint/no-floating-promises */ +export const useAirlines = () => { + const [error, setError] = useState(null); + const [loading, setLoading] = useState(false); + const [airlines, setAirlines] = useState({} as IAirlines); + + const [airlinesLocalStorage, setAirLinesLocalStorage] = useLocalStorage("__airlines__", []); + + const fetchAirlines = useCallback(async () => { + try { + + setAirLinesLocalStorage(airlinesData); + + } catch (error) { + if (DEBUG) { + console.log("[useAirLines] error", error); + } + setLoading(false); + setError(error); + } + }, []); + + useEffect(() => { + (async () => { + setLoading(true); + if (!airlinesLocalStorage?.rows?.length ) { + await fetchAirlines(); + setAirlines(airlinesData); + setError(undefined); + } else { + setAirlines(airlinesLocalStorage); + } + + setLoading(false); + })(); + }, []); + return { + airlines, + errorLoadingAirlines: error, + loadingAirlines: loading, + }; +}; diff --git a/samples/react-flighttracker/src/hooks/useAirports.ts b/samples/react-flighttracker/src/hooks/useAirports.ts new file mode 100644 index 000000000..34ca668d9 --- /dev/null +++ b/samples/react-flighttracker/src/hooks/useAirports.ts @@ -0,0 +1,37 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ + +import { useCallback } from 'react'; + +import { includes } from 'lodash'; + +import { IAirport } from '../models/IAirport'; + +const airports = require("../mockData/airports.json").airports; + +interface IUseAirports { + searchAirportsByText: (text: string) => Promise; +} + +export const useAirports = ():IUseAirports => { + + + const searchAirportsByText = useCallback(async (text: string): Promise => { + if (!text) return []; + const airportsFound: IAirport[] = []; + + for (const airport of airports) { + if (!airport.iata_code) continue; + if ( + includes(airport?.municipality?.toLowerCase(), text.toLowerCase()) || + includes(airport?.name?.toLowerCase(), text.toLowerCase()) + ) { + airportsFound.push(airport); + } + } + return airportsFound; + }, []); + + return { + searchAirportsByText, + }; +}; diff --git a/samples/react-flighttracker/src/hooks/useCountryFlags.ts b/samples/react-flighttracker/src/hooks/useCountryFlags.ts new file mode 100644 index 000000000..efbba2229 --- /dev/null +++ b/samples/react-flighttracker/src/hooks/useCountryFlags.ts @@ -0,0 +1,45 @@ +/* eslint-disable @typescript-eslint/no-explicit-any */ +/* eslint-disable @typescript-eslint/explicit-function-return-type */ +/* eslint-disable no-unused-expressions */ +import { useCallback } from 'react'; + +import axios from 'axios'; + +import { + RAPID_API_HOST_COUNTRY_FLAGS, + RAPID_API_KEY_COUNTRY_FLAGS, +} from '../constants'; + +export interface ICountryFlags { + countryFlags: any; + error:Error; +} + +export const useContryFlags = () => { + + const getCountryFlag = useCallback(async (country: string): Promise => { + if (!country) return undefined; + const axiosOptions = { + method: "GET", + url: `https://country-flags.p.rapidapi.com/png/${country}`, + headers: { + "X-RapidAPI-Key": RAPID_API_KEY_COUNTRY_FLAGS, + "X-RapidAPI-Host": RAPID_API_HOST_COUNTRY_FLAGS, + }, + }; + try { + const response = await axios.request(axiosOptions); + + return {countryFlags: response.data, error: null}; + } catch (error) { + if (DEBUG) { + console.log("[useContryFlags-getCountryFlag] error", error); + } + return { countryFlags: undefined, error: error }; + } + }, []); + + return { + getCountryFlag, + }; +}; diff --git a/samples/react-flighttracker/src/hooks/useFlightInfo.ts b/samples/react-flighttracker/src/hooks/useFlightInfo.ts new file mode 100644 index 000000000..00696b804 --- /dev/null +++ b/samples/react-flighttracker/src/hooks/useFlightInfo.ts @@ -0,0 +1,58 @@ +/* eslint-disable @typescript-eslint/explicit-function-return-type */ +/* eslint-disable @typescript-eslint/no-floating-promises */ +import { + useCallback, + useEffect, + useState, +} from 'react'; + +/* eslint-disable @typescript-eslint/no-empty-function */ +import axios from 'axios'; + +import { + RAPID_API_HOST_FLIGHT_RADAR, + RAPID_API_KEY_FLIGHT_RADAR, +} from '../constants'; +import { IFlightInfo } from '../models/IFlightInfo'; + +export const useFlightInfo = (flightNumber?: string) =>{ + const [flightInfo, setFlightInfo] = useState([]); + const [error, setError] = useState(null); + const [loading, setLoading] = useState(false); + + const getFlightInfo = useCallback(async (flightNumber:string) => { + setLoading(true); + const axiosOptions = { + method: 'GET', + url: 'https://flight-radar1.p.rapidapi.com/flights/search', + params: {query: `${flightNumber}`, limit: '1'}, + headers: { + 'X-RapidAPI-Key': RAPID_API_KEY_FLIGHT_RADAR, + 'X-RapidAPI-Host': RAPID_API_HOST_FLIGHT_RADAR + } + }; + try { + const response = await axios.request(axiosOptions); + const flightInfo:IFlightInfo[] = response?.data?.results as IFlightInfo[]; + return flightInfo; + } catch (error) { + if (DEBUG) { + console.log("[useFlightSchedule-getFlightInfo] error", error); + } + setError(error); + }finally { + setLoading(false); + } + }, []); + + + useEffect(() => { + (async ()=> { + setFlightInfo(await getFlightInfo(flightNumber)); + })(); + }, [flightNumber]); + + + return { flightInfo, errorFlightInfo:error, loadingFlightInfo:loading }; + +} diff --git a/samples/react-flighttracker/src/hooks/useFlightSchedules.ts b/samples/react-flighttracker/src/hooks/useFlightSchedules.ts new file mode 100644 index 000000000..bb92c8844 --- /dev/null +++ b/samples/react-flighttracker/src/hooks/useFlightSchedules.ts @@ -0,0 +1,62 @@ +import { useCallback } from 'react'; + +/* eslint-disable @typescript-eslint/explicit-function-return-type */ +/* eslint-disable @typescript-eslint/no-floating-promises */ +import axios from 'axios'; + +import { + RAPID_API_HOST_AERODATABOX, + RAPID_API_KEY_AERODATABOX, +} from '../constants'; +import { IFlights } from '../models'; +import { IFlightSchedulesInputParm } from '../models/IFlightSchedulesParm'; + +const ENDPOINT = "https://aerodatabox.p.rapidapi.com/flights/airports/icao/"; + +export interface IUseFlightSchedules { + + getFlightSchedule: (flightSchedulesParm: IFlightSchedulesInputParm) => Promise; +} + +export const useFlightSchedule = ():IUseFlightSchedules => { + + const getFlightSchedule = useCallback(async (options: IFlightSchedulesInputParm):Promise => { + const { fromDate, toDate, airportCode } = options || ({} as IFlightSchedulesInputParm); + if (!fromDate || !toDate || !airportCode) { + return undefined; + } + const axiosOptions = { + method: "GET", + url: `${ENDPOINT}${airportCode}/${fromDate}/${toDate}`, + params: { + withLeg: "true", + direction: 'Both', + withCancelled: "true", + withCodeshared: "true", + withCargo: "false", + withPrivate: "false", + withLocation: "true", + }, + headers: { + "X-RapidAPI-Key": `${RAPID_API_KEY_AERODATABOX}`, + "X-RapidAPI-Host": `${RAPID_API_HOST_AERODATABOX}`, + }, + }; + + try { + const response = await axios.request(axiosOptions); + return response?.data as IFlights || undefined; + + } catch (error) { + if (DEBUG) { + console.log("[useFlightSchedule] error", error); + throw error; + } + } + }, []); + + + return { + getFlightSchedule, + }; +}; diff --git a/samples/react-flighttracker/src/hooks/useLocalStorage.ts b/samples/react-flighttracker/src/hooks/useLocalStorage.ts new file mode 100644 index 000000000..0d9d65b58 --- /dev/null +++ b/samples/react-flighttracker/src/hooks/useLocalStorage.ts @@ -0,0 +1,36 @@ +/* eslint-disable @typescript-eslint/no-explicit-any */ +/* eslint-disable @typescript-eslint/explicit-function-return-type */ +import * as React from 'react'; + +interface IStorage { + value: unknown; + expires?: Date; +} + +const DEFAULT_EXPIRED_IN_SECONDS = 60 * 60 * 1000; // 1 hour + +const getStorageValue = (key:string, defaultValue:unknown):any => { + const storage:IStorage = JSON.parse(sessionStorage.getItem(key) || '{}'); + // getting stored value + const { value, expires } = storage || {} as IStorage; + if (expires > new Date() ) { + return value || defaultValue; + } + return undefined ; +} + +export const useLocalStorage = (key:string, defaultValue:unknown, expiredIn?: number):any => { + const [value, setStorageValue] = React.useState(() => { + return getStorageValue(key, defaultValue); + }); + + React.useEffect(() => { + // save value + const expiredInValue = expiredIn ? new Date(new Date().getTime() + expiredIn * 1000) : DEFAULT_EXPIRED_IN_SECONDS; + + sessionStorage.setItem(key, JSON.stringify({ value, expires:expiredInValue })); + + }, [key, value, expiredIn]); + + return [value, setStorageValue]; +}; diff --git a/samples/react-flighttracker/src/hooks/useMappingFlightShedules.ts b/samples/react-flighttracker/src/hooks/useMappingFlightShedules.ts new file mode 100644 index 000000000..cf86ccf82 --- /dev/null +++ b/samples/react-flighttracker/src/hooks/useMappingFlightShedules.ts @@ -0,0 +1,115 @@ +import { useCallback } from 'react'; + +import { sortBy } from 'lodash'; + +import { EInformationType } from '../constants/EInformationType'; +import { + Arrivals, + Departures, + IFlights, +} from '../models/IFlights'; +import { IFlightTrackerListItem } from '../models/IFlightTrackerListItem'; +import { useUtils } from './useUtils'; + +const getPageIndex = (page: number, numberItemsPerPage: number): number => { + return page * numberItemsPerPage; +}; +export interface IUseMappingFlightShedules { + + + mapFlightSchedules: ( + flightInformationType: EInformationType, + flightSchedules: IFlights, + page: number, + numberItemsPerPage: number + ) => Promise; +} + +export const useMappingFlightSchedules = (): IUseMappingFlightShedules => { + const { getAirlineLogo, getTimeFromDate } = useUtils(); + + const getMappedFlightScheduleDeparture = useCallback(async (flightSchedule: Departures): Promise< + IFlightTrackerListItem + > => { + const logo = await getAirlineLogo(flightSchedule.airline.name); + const mappedFlightSchedule = { + flightCompanyImage: logo ?? "", + flightNumber: flightSchedule.number, + flightStatus: flightSchedule.status, + flightTime: getTimeFromDate(flightSchedule.departure.scheduledTimeLocal), + flightRealTime: getTimeFromDate(flightSchedule.departure.actualTimeLocal), + flightTimeStatusText: flightSchedule.status, + flightTerminal: flightSchedule.departure.terminal, + FlightGate: flightSchedule.departure.gate, + flightOrigin: flightSchedule.arrival.airport.name, + flightCompany: flightSchedule.airline.name, + }; + return mappedFlightSchedule; + }, [getAirlineLogo]); + + const getMappedFlightScheduleArrival = useCallback(async (flightSchedule: Arrivals): Promise< + IFlightTrackerListItem + > => { + const logo = await getAirlineLogo(flightSchedule.airline.name); + const mappedFlightSchedule = { + flightCompanyImage: logo ?? "", + flightNumber: flightSchedule.number, + flightStatus: flightSchedule.status, + flightTime: getTimeFromDate(flightSchedule.arrival.scheduledTimeLocal), + flightRealTime: getTimeFromDate(flightSchedule.arrival.actualTimeLocal), + flightTimeStatusText: flightSchedule.status, + flightTerminal: flightSchedule?.departure?.terminal ?? "", + FlightGate: flightSchedule?.departure?.gate ?? "", + flightOrigin: flightSchedule?.departure?.airport?.name, + flightCompany: flightSchedule?.airline?.name, + }; + return mappedFlightSchedule; + }, [getAirlineLogo]); + + + const getMappedFlightSchedules = useCallback( + async ( + flightSchedules: IFlights, + page: number, + numberItemsPerPage: number, + flightInformationType: EInformationType + ): Promise => { + if (!flightSchedules) return undefined; + const mappedFlightSchedules: IFlightTrackerListItem[] = []; + const flightsInfoToMap = + flightInformationType === EInformationType.DEPARTURES + ? sortBy((flightSchedules.departures as Departures[]), ["departure.scheduledTimeLocal"]) + : sortBy((flightSchedules.arrivals as Arrivals[]) , ["arrival.scheduledTimeLocal"]); + const pageIndex = getPageIndex(page, numberItemsPerPage); + const items = flightsInfoToMap.slice(pageIndex, pageIndex + numberItemsPerPage); + console.log('items', items); + for (const flightSchedule of items) { + const mappedInfo = + flightInformationType === EInformationType.DEPARTURES + ? await getMappedFlightScheduleDeparture(flightSchedule) + : await getMappedFlightScheduleArrival(flightSchedule); + mappedFlightSchedules.push(mappedInfo); + } + return mappedFlightSchedules; + }, + [getAirlineLogo] + ); + + const mapFlightSchedules = useCallback( + async ( + flightInformationType: EInformationType, + flightSchedules: IFlights, + page: number, + numberItemsPerPage: number + ): Promise => { + let mappedFlights: IFlightTrackerListItem[] = []; + mappedFlights = await getMappedFlightSchedules(flightSchedules, page, numberItemsPerPage, flightInformationType); + return mappedFlights; + }, + [getMappedFlightSchedules] + ); + + return { + mapFlightSchedules, + }; +}; diff --git a/samples/react-flighttracker/src/hooks/useUtils.ts b/samples/react-flighttracker/src/hooks/useUtils.ts new file mode 100644 index 000000000..bb6d14664 --- /dev/null +++ b/samples/react-flighttracker/src/hooks/useUtils.ts @@ -0,0 +1,114 @@ +/* eslint-disable @typescript-eslint/explicit-function-return-type */ +import * as React from 'react'; + +import { + format, + isSameDay, + parseISO, +} from 'date-fns'; +import { useRecoilState } from 'recoil'; + +import { IAirline } from '../models/IAirlines'; +import { airlineState } from '../recoil/atoms/airlineState'; +import { globalState } from '../recoil/atoms/globalState'; + +const PHOTO_AIRLINE_URL = "https://r-xx.bstatic.com/data/airlines_logo/"; + +export const useUtils = () => { + const [appState] = useRecoilState(globalState); + + const [airlinesList] = useRecoilState(airlineState); + const { currentTheme } = appState; + + const statusColors = new Map([ + ["Unknown", currentTheme?.semanticColors?.bodyText], + ["Expected", currentTheme?.semanticColors?.bodyText], + ["EnRoute", currentTheme?.semanticColors?.bodyText], + ["CheckIn", currentTheme?.palette?.themePrimary], + ["Boarding", currentTheme?.palette?.themePrimary], + ["GateClosed", currentTheme?.semanticColors?.bodyText], + ["Departed", currentTheme?.palette?.themePrimary], + ["Delayed", currentTheme?.palette?.yellowDark], + ["Approaching", currentTheme?.semanticColors?.bodyText], + ["Arrived", currentTheme?.palette?.themePrimary], + ["Canceled", currentTheme?.semanticColors?.errorText], + ["Diverted", currentTheme?.semanticColors?.errorText], + ["CanceledUncertain", currentTheme?.semanticColors?.bodyText], + ]); + + const getFlightStatusColor = React.useCallback( + (status: string): string => { + return statusColors.get(status) || currentTheme?.semanticColors?.bodyText; + }, + [currentTheme, statusColors] + ); + + const getTimeFromDate = React.useCallback((date: string): string => { + const { selectedDate } = appState; + try { + if (date) { + if (isSameDay(parseISO(date), selectedDate)) { + return format(parseISO(date), "p"); + } else { + return format(parseISO(date), "dd MMM, p"); + } + } else { + return ""; + } + } catch (error) { + if (DEBUG) { + console.log(["getTimeFromDate"], error); + } + return ""; + } + }, []); + + const getAirlineByName = React.useCallback( + async (name: string): Promise => { + try { + if (name && airlinesList && airlinesList?.rows?.length > 0) { + const airline = airlinesList.rows.find((airline: IAirline) => + airline.Name.toLowerCase().includes(name.toLowerCase()) + ); + let photo = ""; + if (airline?.Code) { + photo = `${PHOTO_AIRLINE_URL}${airline.Code}.png`; + } + return { ...airline, Photo: photo }; + } else { + return null; + } + } catch (error) { + if (DEBUG) { + console.log(["getAirlineByName"], error); + } + return null; + } + }, + [airlinesList] + ); + + const getAirlineLogo = React.useCallback( + async (airlineName: string): Promise => { + try { + if (airlineName) { + const airline = await getAirlineByName(airlineName); + + if (airline) { + return airline.Photo ?? undefined; + } + } else { + return undefined; + } + } catch (error) { + if (DEBUG) { + console.log(["getAirlineLogo"], error); + } + return undefined; + } + }, + [airlinesList] + ); + + return { getFlightStatusColor, getTimeFromDate, getAirlineLogo, getAirlineByName }; +}; diff --git a/samples/react-flighttracker/src/index.ts b/samples/react-flighttracker/src/index.ts new file mode 100644 index 000000000..fb81db1e2 --- /dev/null +++ b/samples/react-flighttracker/src/index.ts @@ -0,0 +1 @@ +// A file is required to be in the root of the /src directory by the TypeScript compiler diff --git a/samples/react-flighttracker/src/mockData/airlines.json b/samples/react-flighttracker/src/mockData/airlines.json new file mode 100644 index 000000000..29b350f64 --- /dev/null +++ b/samples/react-flighttracker/src/mockData/airlines.json @@ -0,0 +1,8995 @@ +{ + "version": 1664803676, + "rows": [ + { + "Name": "21 Air", + "Code": "2I", + "ICAO": "CSB" + }, + { + "Name": "25only Aviation", + "Code": "4Q", + "ICAO": "ONY" + }, + { + "Name": "2Excel Aviation", + "Code": "", + "ICAO": "BRO" + }, + { + "Name": "40-Mile Air", + "Code": "Q5", + "ICAO": "MLA" + }, + { + "Name": "748 Air Services", + "Code": "FE", + "ICAO": "IHO" + }, + { + "Name": "9 Air", + "Code": "AQ", + "ICAO": "JYH" + }, + { + "Name": "Abakan Air", + "Code": "S5", + "ICAO": "NKP" + }, + { + "Name": "ABS Jets", + "Code": "", + "ICAO": "ABP" + }, + { + "Name": "Abu Dhabi Aviation", + "Code": "", + "ICAO": "BAR" + }, + { + "Name": "ABX Air", + "Code": "GB", + "ICAO": "ABX" + }, + { + "Name": "Acass Ireland", + "Code": "", + "ICAO": "SON" + }, + { + "Name": "Advanced Air", + "Code": "AN", + "ICAO": "WSN" + }, + { + "Name": "Aegean Airlines", + "Code": "A3", + "ICAO": "AEE" + }, + { + "Name": "Aer Lingus", + "Code": "EI", + "ICAO": "EIN" + }, + { + "Name": "Aer Lingus UK", + "Code": "EG", + "ICAO": "EUK" + }, + { + "Name": "AerCaribe", + "Code": "JK", + "ICAO": "ACL" + }, + { + "Name": "Aero", + "Code": "TD", + "ICAO": "BLK" + }, + { + "Name": "Aero", + "Code": "N2", + "ICAO": "NIG" + }, + { + "Name": "Aero Asahi Corporation", + "Code": "", + "ICAO": "AKF" + }, + { + "Name": "Aero Charter", + "Code": "", + "ICAO": "GLT" + }, + { + "Name": "Aero Charter and Transport", + "Code": "", + "ICAO": "CTA" + }, + { + "Name": "Aero FlightOps UK", + "Code": "FO", + "ICAO": "UKA" + }, + { + "Name": "Aero Guernsey", + "Code": "", + "ICAO": "AEO" + }, + { + "Name": "Aero K", + "Code": "RF", + "ICAO": "EOK" + }, + { + "Name": "Aero Mongolia", + "Code": "M0", + "ICAO": "MNG" + }, + { + "Name": "Aero Nomad Airlines", + "Code": "KA", + "ICAO": "ANK" + }, + { + "Name": "Aero Sotravia", + "Code": "", + "ICAO": "ASR" + }, + { + "Name": "Aero-Beta Flight Training", + "Code": "", + "ICAO": "ABA" + }, + { + "Name": "Aero-Dienst", + "Code": "", + "ICAO": "ADN" + }, + { + "Name": "Aero-Service", + "Code": "", + "ICAO": "RSR" + }, + { + "Name": "Aeroflot", + "Code": "SU", + "ICAO": "AFL" + }, + { + "Name": "Aeroitalia", + "Code": "XZ", + "ICAO": "AEZ" + }, + { + "Name": "Aerolineas Argentinas", + "Code": "AR", + "ICAO": "ARG" + }, + { + "Name": "Aerolineas Ejecutivas", + "Code": "", + "ICAO": "LET" + }, + { + "Name": "Aerolineas Sosa", + "Code": "P4", + "ICAO": "NSO" + }, + { + "Name": "Aerolink Uganda", + "Code": "A8", + "ICAO": "XAU" + }, + { + "Name": "AeroLogic", + "Code": "3S", + "ICAO": "BOX" + }, + { + "Name": "Aeromar", + "Code": "VW", + "ICAO": "TAO" + }, + { + "Name": "Aeromexico", + "Code": "AM", + "ICAO": "AMX" + }, + { + "Name": "Aeromexico Connect", + "Code": "5D", + "ICAO": "SLI" + }, + { + "Name": "Aeronaves TSM", + "Code": "", + "ICAO": "VTM" + }, + { + "Name": "Aeropartner", + "Code": "", + "ICAO": "DFC" + }, + { + "Name": "Aeroregional", + "Code": "", + "ICAO": "RER" + }, + { + "Name": "Aeroservicios de la Costa", + "Code": "", + "ICAO": "TAA" + }, + { + "Name": "Aerostan", + "Code": "", + "ICAO": "BSC" + }, + { + "Name": "Aerosucre", + "Code": "", + "ICAO": "KRE" + }, + { + "Name": "Aerosul Linhas Aereas", + "Code": "", + "ICAO": "ASO" + }, + { + "Name": "Aerotec", + "Code": "", + "ICAO": "AEP" + }, + { + "Name": "Aerotours", + "Code": "", + "ICAO": "ATU" + }, + { + "Name": "Aerotranscargo", + "Code": "F5", + "ICAO": "ATG" + }, + { + "Name": "AeroUnion", + "Code": "6R", + "ICAO": "TNO" + }, + { + "Name": "Aerovias DAP", + "Code": "V5", + "ICAO": "DAP" + }, + { + "Name": "Aerovis Airlines", + "Code": "", + "ICAO": "VIZ" + }, + { + "Name": "Aerro Direkt", + "Code": "4D", + "ICAO": "DIR" + }, + { + "Name": "AF-Aviation", + "Code": "", + "ICAO": "AFF" + }, + { + "Name": "Afric Aviation", + "Code": "L8", + "ICAO": "EKG" + }, + { + "Name": "Africa Airlines", + "Code": "", + "ICAO": "AAT" + }, + { + "Name": "Africa Charter Airline", + "Code": "", + "ICAO": "FSK" + }, + { + "Name": "Africa World Airlines", + "Code": "AW", + "ICAO": "AFW" + }, + { + "Name": "African Express Airways", + "Code": "XU", + "ICAO": "AXK" + }, + { + "Name": "Afrijet", + "Code": "J7", + "ICAO": "ABS" + }, + { + "Name": "Afriqiyah Airways", + "Code": "8U", + "ICAO": "AAW" + }, + { + "Name": "Air 1st Aviation", + "Code": "", + "ICAO": "RUF" + }, + { + "Name": "Air Albania", + "Code": "ZB", + "ICAO": "ABN" + }, + { + "Name": "Air Algerie", + "Code": "AH", + "ICAO": "DAH" + }, + { + "Name": "Air Alliance", + "Code": "", + "ICAO": "AYY" + }, + { + "Name": "Air Alsie", + "Code": "6I", + "ICAO": "MMD" + }, + { + "Name": "Air Anka", + "Code": "", + "ICAO": "TAH" + }, + { + "Name": "Air Antilles", + "Code": "3S", + "ICAO": "GUY" + }, + { + "Name": "Air Arabia", + "Code": "G9", + "ICAO": "ABY" + }, + { + "Name": "Air Arabia Abu Dhabi", + "Code": "3L", + "ICAO": "ADY" + }, + { + "Name": "Air Arabia Egypt", + "Code": "E5", + "ICAO": "RBG" + }, + { + "Name": "Air Arabia Maroc", + "Code": "3O", + "ICAO": "MAC" + }, + { + "Name": "Air Astana", + "Code": "KC", + "ICAO": "KZR" + }, + { + "Name": "Air Atlanta Europe", + "Code": "CT", + "ICAO": "AAE" + }, + { + "Name": "Air Atlanta Icelandic", + "Code": "CC", + "ICAO": "ABD" + }, + { + "Name": "Air Austral", + "Code": "UU", + "ICAO": "REU" + }, + { + "Name": "Air Bagan", + "Code": "W9", + "ICAO": "JAB" + }, + { + "Name": "Air Baltic", + "Code": "BT", + "ICAO": "BTI" + }, + { + "Name": "Air Belgium", + "Code": "KF", + "ICAO": "ABB" + }, + { + "Name": "Air Bohemia", + "Code": "", + "ICAO": "BOH" + }, + { + "Name": "Air Borealis", + "Code": "", + "ICAO": "LBR" + }, + { + "Name": "Air Botswana", + "Code": "BP", + "ICAO": "BOT" + }, + { + "Name": "Air Bucharest", + "Code": "", + "ICAO": "BUR" + }, + { + "Name": "Air Burkina", + "Code": "2J", + "ICAO": "VBW" + }, + { + "Name": "Air Busan", + "Code": "BX", + "ICAO": "ABL" + }, + { + "Name": "Air Cairo", + "Code": "SM", + "ICAO": "MSC" + }, + { + "Name": "Air Caledonie", + "Code": "TY", + "ICAO": "TPC" + }, + { + "Name": "Air Canada", + "Code": "AC", + "ICAO": "ACA" + }, + { + "Name": "Air Canada Rouge", + "Code": "RV", + "ICAO": "ROU" + }, + { + "Name": "Air Caraibes", + "Code": "TX", + "ICAO": "FWI" + }, + { + "Name": "Air Care Alliance", + "Code": "", + "ICAO": "CMF" + }, + { + "Name": "Air Cargo Carriers", + "Code": "2Q", + "ICAO": "SNC" + }, + { + "Name": "Air Cargo Global", + "Code": "CW", + "ICAO": "CCC" + }, + { + "Name": "Air Century", + "Code": "Y2", + "ICAO": "CEY" + }, + { + "Name": "Air Changan", + "Code": "9H", + "ICAO": "CGN" + }, + { + "Name": "Air Charity Network", + "Code": "", + "ICAO": "NGF" + }, + { + "Name": "Air Charter Scotland", + "Code": "", + "ICAO": "EDC" + }, + { + "Name": "Air Charter Scotland Europe", + "Code": "", + "ICAO": "SCO" + }, + { + "Name": "Air Chathams", + "Code": "3C", + "ICAO": "CVA" + }, + { + "Name": "Air China", + "Code": "CA", + "ICAO": "CCA" + }, + { + "Name": "Air China Cargo", + "Code": "", + "ICAO": "CAO" + }, + { + "Name": "Air China Inner Mongolia", + "Code": "", + "ICAO": "CNM" + }, + { + "Name": "Air Choice One", + "Code": "3E", + "ICAO": "ACO" + }, + { + "Name": "Air CM Global", + "Code": "", + "ICAO": "RJR" + }, + { + "Name": "AirConnect", + "Code": "KS", + "ICAO": "KON" + }, + { + "Name": "Air Corporate", + "Code": "", + "ICAO": "CPV" + }, + { + "Name": "Air Corsica", + "Code": "XK", + "ICAO": "CCM" + }, + { + "Name": "Air Costa Rica", + "Code": "RI", + "ICAO": "RII" + }, + { + "Name": "Air Cote d'Ivoire", + "Code": "HF", + "ICAO": "VRE" + }, + { + "Name": "Air Creebec", + "Code": "YN", + "ICAO": "CRQ" + }, + { + "Name": "Air Deccan", + "Code": "", + "ICAO": "DKN" + }, + { + "Name": "Air Do", + "Code": "HD", + "ICAO": "ADO" + }, + { + "Name": "Air Dolomiti", + "Code": "EN", + "ICAO": "DLA" + }, + { + "Name": "Air Europa", + "Code": "UX", + "ICAO": "AEA" + }, + { + "Name": "Air Europa Express", + "Code": "X5", + "ICAO": "OVA" + }, + { + "Name": "Air Excel", + "Code": "", + "ICAO": "XLL" + }, + { + "Name": "Air Falcon", + "Code": "FS", + "ICAO": "FPK" + }, + { + "Name": "Air Flamenco", + "Code": "F4", + "ICAO": "WAF" + }, + { + "Name": "Air France", + "Code": "AF", + "ICAO": "AFR" + }, + { + "Name": "Air France Hop", + "Code": "A5", + "ICAO": "HOP" + }, + { + "Name": "Air Georgia", + "Code": "DC", + "ICAO": "AGF" + }, + { + "Name": "Air Ghana", + "Code": "", + "ICAO": "GHN" + }, + { + "Name": "Air Greenland", + "Code": "GL", + "ICAO": "GRL" + }, + { + "Name": "Air Guilin", + "Code": "GT", + "ICAO": "CGH" + }, + { + "Name": "Air Hamburg", + "Code": "", + "ICAO": "AHO" + }, + { + "Name": "Air Hong Kong", + "Code": "LD", + "ICAO": "AHK" + }, + { + "Name": "Air Horizont", + "Code": "HT", + "ICAO": "HAT" + }, + { + "Name": "Air Incheon", + "Code": "KJ", + "ICAO": "AIH" + }, + { + "Name": "Air India", + "Code": "AI", + "ICAO": "AIC" + }, + { + "Name": "Air India Express", + "Code": "IX", + "ICAO": "AXB" + }, + { + "Name": "Air Inuit", + "Code": "3H", + "ICAO": "AIE" + }, + { + "Name": "Air Japan", + "Code": "NQ", + "ICAO": "AJX" + }, + { + "Name": "Air KBZ", + "Code": "K7", + "ICAO": "KBZ" + }, + { + "Name": "Air Kiribati", + "Code": "IK", + "ICAO": "AKL" + }, + { + "Name": "Air Koryo", + "Code": "JS", + "ICAO": "KOR" + }, + { + "Name": "Air Leisure", + "Code": "AL", + "ICAO": "ALD" + }, + { + "Name": "Air Liaison", + "Code": "DU", + "ICAO": "LSJ" + }, + { + "Name": "Air Libya", + "Code": "7I", + "ICAO": "TLR" + }, + { + "Name": "Air Loyaute", + "Code": "", + "ICAO": "RLY" + }, + { + "Name": "Air Macau", + "Code": "NX", + "ICAO": "AMU" + }, + { + "Name": "Air Madagascar", + "Code": "MD", + "ICAO": "MDG" + }, + { + "Name": "Air Malta", + "Code": "KM", + "ICAO": "AMC" + }, + { + "Name": "Air Manas", + "Code": "ZM", + "ICAO": "MBB" + }, + { + "Name": "Air Mauritius", + "Code": "MK", + "ICAO": "MAU" + }, + { + "Name": "Air Mediterranean", + "Code": "MV", + "ICAO": "MAR" + }, + { + "Name": "Air Moldova", + "Code": "9U", + "ICAO": "MLD" + }, + { + "Name": "Air Montenegro", + "Code": "", + "ICAO": "MNE" + }, + { + "Name": "Air Mountain", + "Code": "", + "ICAO": "AMT" + }, + { + "Name": "Air New Zealand", + "Code": "NZ", + "ICAO": "ANZ" + }, + { + "Name": "Air Niugini", + "Code": "PX", + "ICAO": "ANG" + }, + { + "Name": "Air North", + "Code": "4N", + "ICAO": "ANT" + }, + { + "Name": "Air Nostrum", + "Code": "YW", + "ICAO": "ANE" + }, + { + "Name": "Air Nunavut", + "Code": "", + "ICAO": "BFF" + }, + { + "Name": "Air Panama", + "Code": "7P", + "ICAO": "PST" + }, + { + "Name": "Air Peace", + "Code": "P4", + "ICAO": "APK" + }, + { + "Name": "Air Premia", + "Code": "YP", + "ICAO": "APZ" + }, + { + "Name": "Air Rarotonga", + "Code": "GZ", + "ICAO": "RAR" + }, + { + "Name": "Air Saint-Pierre", + "Code": "PJ", + "ICAO": "SPM" + }, + { + "Name": "Air Senegal", + "Code": "HC", + "ICAO": "SZN" + }, + { + "Name": "Air Seoul", + "Code": "RS", + "ICAO": "ASV" + }, + { + "Name": "Air Seychelles", + "Code": "HM", + "ICAO": "SEY" + }, + { + "Name": "Air Sinai", + "Code": "4D", + "ICAO": "ASD" + }, + { + "Name": "Air Spray", + "Code": "", + "ICAO": "ASB" + }, + { + "Name": "Air Sunshine", + "Code": "", + "ICAO": "RSI" + }, + { + "Name": "Air Tahiti", + "Code": "VT", + "ICAO": "VTA" + }, + { + "Name": "Air Tahiti Nui", + "Code": "TN", + "ICAO": "THT" + }, + { + "Name": "Air Tanzania", + "Code": "TC", + "ICAO": "ATC" + }, + { + "Name": "Air Taxi & Charter International", + "Code": "", + "ICAO": "IBJ" + }, + { + "Name": "Air Thanlwin", + "Code": "ST", + "ICAO": "RTL" + }, + { + "Name": "Air Tindi", + "Code": "8T", + "ICAO": "TIN" + }, + { + "Name": "Air Transat", + "Code": "TS", + "ICAO": "TSC" + }, + { + "Name": "Air Transport Europe", + "Code": "", + "ICAO": "EAT" + }, + { + "Name": "Air Transport International", + "Code": "8C", + "ICAO": "ATN" + }, + { + "Name": "Air Travel", + "Code": "A6", + "ICAO": "OTC" + }, + { + "Name": "Air Urga", + "Code": "3N", + "ICAO": "URG" + }, + { + "Name": "Air Vanuatu", + "Code": "NF", + "ICAO": "AVN" + }, + { + "Name": "Air Volta", + "Code": "", + "ICAO": "VLB" + }, + { + "Name": "Air Wisconsin", + "Code": "ZW", + "ICAO": "AWI" + }, + { + "Name": "Air X Charter", + "Code": "AX", + "ICAO": "AXY" + }, + { + "Name": "Air Zimbabwe", + "Code": "UM", + "ICAO": "AZW" + }, + { + "Name": "Air-Glaciers", + "Code": "", + "ICAO": "AGV" + }, + { + "Name": "Air-Taxi Europe", + "Code": "", + "ICAO": "TWG" + }, + { + "Name": "AirACT", + "Code": "9T", + "ICAO": "RUN" + }, + { + "Name": "AirAsia", + "Code": "AK", + "ICAO": "AXM" + }, + { + "Name": "AirAsia India", + "Code": "I5", + "ICAO": "IAD" + }, + { + "Name": "AirAsia X", + "Code": "D7", + "ICAO": "XAX" + }, + { + "Name": "Airbahn", + "Code": "UN", + "ICAO": "ARB" + }, + { + "Name": "AirBlue", + "Code": "PA", + "ICAO": "ABQ" + }, + { + "Name": "AirBridgeCargo Airlines", + "Code": "RU", + "ICAO": "ABW" + }, + { + "Name": "Airbus", + "Code": "", + "ICAO": "AIB" + }, + { + "Name": "Airbus Transport International", + "Code": "4Y", + "ICAO": "BGA" + }, + { + "Name": "Aircalin", + "Code": "SB", + "ICAO": "ACI" + }, + { + "Name": "Aircompany Armenia", + "Code": "RM", + "ICAO": "NGT" + }, + { + "Name": "Aircraft Management Group", + "Code": "", + "ICAO": "RVJ" + }, + { + "Name": "Aireon Canada", + "Code": "", + "ICAO": "AEN" + }, + { + "Name": "Airest", + "Code": "", + "ICAO": "AEG" + }, + { + "Name": "AirExplore", + "Code": "ED", + "ICAO": "AXE" + }, + { + "Name": "Airfast Indonesia", + "Code": "", + "ICAO": "AFE" + }, + { + "Name": "AirGO Private Airline", + "Code": "", + "ICAO": "XGO" + }, + { + "Name": "Airhub Airlines", + "Code": "AH", + "ICAO": "GJM" + }, + { + "Name": "Airkenya Express", + "Code": "P2", + "ICAO": "XAK" + }, + { + "Name": "Airlec Air Espace", + "Code": "", + "ICAO": "ARL" + }, + { + "Name": "Airlift", + "Code": "", + "ICAO": "ALI" + }, + { + "Name": "Airlift International", + "Code": "", + "ICAO": "AIR" + }, + { + "Name": "Airlink", + "Code": "", + "ICAO": "JAR" + }, + { + "Name": "Airlink", + "Code": "4Z", + "ICAO": "LNK" + }, + { + "Name": "AirNet", + "Code": "", + "ICAO": "USC" + }, + { + "Name": "Airnorth", + "Code": "TL", + "ICAO": "ANO" + }, + { + "Name": "Airpac Airlines", + "Code": "", + "ICAO": "APC" + }, + { + "Name": "AirPink", + "Code": "", + "ICAO": "PNK" + }, + { + "Name": "AirSERBIA", + "Code": "JU", + "ICAO": "ASL" + }, + { + "Name": "AirSF Flight Services", + "Code": "", + "ICAO": "XSN" + }, + { + "Name": "AirShare", + "Code": "", + "ICAO": "XSR" + }, + { + "Name": "AirSial", + "Code": "PF", + "ICAO": "SIF" + }, + { + "Name": "AirSmart", + "Code": "", + "ICAO": "XSM" + }, + { + "Name": "AirSprint", + "Code": "", + "ICAO": "ASP" + }, + { + "Name": "Airstream", + "Code": "", + "ICAO": "AQS" + }, + { + "Name": "AirSWIFT", + "Code": "T6", + "ICAO": "ATX" + }, + { + "Name": "AirTanker", + "Code": "9L", + "ICAO": "TOW" + }, + { + "Name": "Airtask", + "Code": "", + "ICAO": "DCT" + }, + { + "Name": "AirTraffic", + "Code": "", + "ICAO": "ATY" + }, + { + "Name": "Airwing", + "Code": "", + "ICAO": "NWG" + }, + { + "Name": "Airwork", + "Code": "", + "ICAO": "AWK" + }, + { + "Name": "AIS Airlines", + "Code": "", + "ICAO": "PNX" + }, + { + "Name": "Ajwaa Airlines", + "Code": "", + "ICAO": "AJY" + }, + { + "Name": "Akasa Air", + "Code": "QP", + "ICAO": "AKJ" + }, + { + "Name": "Al-Atheer Aviation", + "Code": "", + "ICAO": "ATE" + }, + { + "Name": "Al-Naser Wings", + "Code": "NG", + "ICAO": "NAD" + }, + { + "Name": "Alante Air Charter", + "Code": "", + "ICAO": "SVL" + }, + { + "Name": "Alaska Airlines", + "Code": "AS", + "ICAO": "ASA" + }, + { + "Name": "Alaska Central Express", + "Code": "KO", + "ICAO": "AER" + }, + { + "Name": "AlbaStar", + "Code": "AP", + "ICAO": "LAV" + }, + { + "Name": "Albatros Airlines", + "Code": "G0", + "ICAO": "GAL" + }, + { + "Name": "Albawings", + "Code": "2B", + "ICAO": "AWT" + }, + { + "Name": "Albinati Aeronautics", + "Code": "", + "ICAO": "LUC" + }, + { + "Name": "Albinati Aeronautics", + "Code": "", + "ICAO": "ULC" + }, + { + "Name": "Alexandria Airlines", + "Code": "DQ", + "ICAO": "KHH" + }, + { + "Name": "Alfa Airlines", + "Code": "5E", + "ICAO": "AJJ" + }, + { + "Name": "Algonquin Airlink", + "Code": "", + "ICAO": "FSY" + }, + { + "Name": "Alidaunia", + "Code": "D4", + "ICAO": "LID" + }, + { + "Name": "AlisCargo Airlines", + "Code": "CP", + "ICAO": "LSI" + }, + { + "Name": "Aliserio", + "Code": "", + "ICAO": "TJD" + }, + { + "Name": "ALK Airlines", + "Code": "", + "ICAO": "VBB" + }, + { + "Name": "Alkan Air", + "Code": "", + "ICAO": "ALN" + }, + { + "Name": "Alkan Air", + "Code": "", + "ICAO": "AKN" + }, + { + "Name": "All Nippon Airways", + "Code": "NH", + "ICAO": "ANA" + }, + { + "Name": "Allegiant Air", + "Code": "G4", + "ICAO": "AAY" + }, + { + "Name": "Alliance Air", + "Code": "9I", + "ICAO": "LLR" + }, + { + "Name": "Alliance Airlines", + "Code": "QQ", + "ICAO": "UTY" + }, + { + "Name": "Allied Air", + "Code": "4W", + "ICAO": "AJK" + }, + { + "Name": "AlMasria Universal Airlines", + "Code": "UJ", + "ICAO": "LMU" + }, + { + "Name": "Aloha Air Cargo", + "Code": "KH", + "ICAO": "AAH" + }, + { + "Name": "Alphaland Aviation", + "Code": "", + "ICAO": "BIC" + }, + { + "Name": "Alpine Air Express", + "Code": "5A", + "ICAO": "AIP" + }, + { + "Name": "Alpine Flightservice", + "Code": "", + "ICAO": "FSE" + }, + { + "Name": "Alrosa", + "Code": "6R", + "ICAO": "DRU" + }, + { + "Name": "ALS", + "Code": "", + "ICAO": "ALW" + }, + { + "Name": "Altagna", + "Code": "", + "ICAO": "AGH" + }, + { + "Name": "Amakusa Airlines", + "Code": "MZ", + "ICAO": "AHX" + }, + { + "Name": "Amapola Flyg", + "Code": "HP", + "ICAO": "APF" + }, + { + "Name": "Amaszonas", + "Code": "Z8", + "ICAO": "AZN" + }, + { + "Name": "AMC Airlines", + "Code": "", + "ICAO": "AMV" + }, + { + "Name": "AMC Aviation", + "Code": "", + "ICAO": "AMQ" + }, + { + "Name": "Amelia", + "Code": "8R", + "ICAO": "AIA" + }, + { + "Name": "Amelia International", + "Code": "NL", + "ICAO": "AEH" + }, + { + "Name": "American Air Charter", + "Code": "", + "ICAO": "GTW" + }, + { + "Name": "American Airlines", + "Code": "AA", + "ICAO": "AAL" + }, + { + "Name": "Ameriflight", + "Code": "A8", + "ICAO": "AMF" + }, + { + "Name": "Amerijet International", + "Code": "M6", + "ICAO": "AJT" + }, + { + "Name": "Ameristar", + "Code": "7Z", + "ICAO": "AJI" + }, + { + "Name": "AMREF Flying Doctors", + "Code": "", + "ICAO": "FDS" + }, + { + "Name": "AMS Airlines", + "Code": "", + "ICAO": "GEO" + }, + { + "Name": "ANA Wings", + "Code": "EH", + "ICAO": "AKX" + }, + { + "Name": "Anap Jets", + "Code": "", + "ICAO": "AJP" + }, + { + "Name": "Anda Air", + "Code": "DM", + "ICAO": "SSV" + }, + { + "Name": "Andes Lineas Aereas", + "Code": "", + "ICAO": "ANS" + }, + { + "Name": "Angara Airlines", + "Code": "2G", + "ICAO": "AGU" + }, + { + "Name": "Anguilla Air Services", + "Code": "Q3", + "ICAO": "AXL" + }, + { + "Name": "Animawings", + "Code": "A2", + "ICAO": "AWG" + }, + { + "Name": "Antonov Airlines", + "Code": "", + "ICAO": "ADB" + }, + { + "Name": "APG Airlines", + "Code": "GP", + "ICAO": "RIV" + }, + { + "Name": "Arajet", + "Code": "DM", + "ICAO": "DWI" + }, + { + "Name": "Arcus Air", + "Code": "", + "ICAO": "AZE" + }, + { + "Name": "Ariana Afghan Airlines", + "Code": "FG", + "ICAO": "AFG" + }, + { + "Name": "Arik Air", + "Code": "W3", + "ICAO": "ARA" + }, + { + "Name": "Arkhangelsk Airlines", + "Code": "", + "ICAO": "OAO" + }, + { + "Name": "Arkia Israeli Airlines", + "Code": "IZ", + "ICAO": "AIZ" + }, + { + "Name": "Armenia Airways", + "Code": "6A", + "ICAO": "AMW" + }, + { + "Name": "Aruba Airlines", + "Code": "AG", + "ICAO": "ARU" + }, + { + "Name": "ASAS Linhas Aereas", + "Code": "", + "ICAO": "CEU" + }, + { + "Name": "ASG Business Aviation", + "Code": "", + "ICAO": "ESW" + }, + { + "Name": "Asia Pacific Airlines", + "Code": "P9", + "ICAO": "MGE" + }, + { + "Name": "Asia Sky Lines", + "Code": "", + "ICAO": "LIC" + }, + { + "Name": "Asian Express General Aviation Wuxi", + "Code": "", + "ICAO": "WUA" + }, + { + "Name": "Asiana Airlines", + "Code": "OZ", + "ICAO": "AAR" + }, + { + "Name": "Asky Airlines", + "Code": "KP", + "ICAO": "SKK" + }, + { + "Name": "ASL Airlines", + "Code": "", + "ICAO": "ABR" + }, + { + "Name": "ASL Airlines Belgium", + "Code": "3V", + "ICAO": "TAY" + }, + { + "Name": "ASL Airlines France", + "Code": "5O", + "ICAO": "FPO" + }, + { + "Name": "ASL Airlines Hungary", + "Code": "", + "ICAO": "FAH" + }, + { + "Name": "ASL Airlines UK", + "Code": "", + "ICAO": "ABV" + }, + { + "Name": "Asta Linhas Aereas", + "Code": "0A", + "ICAO": "SUL" + }, + { + "Name": "Astonjet", + "Code": "", + "ICAO": "ASJ" + }, + { + "Name": "Astral Aviation", + "Code": "8V", + "ICAO": "ACP" + }, + { + "Name": "ATA Airlines", + "Code": "I3", + "ICAO": "TBZ" + }, + { + "Name": "ATI Jet", + "Code": "", + "ICAO": "CYO" + }, + { + "Name": "Atlantic Airways", + "Code": "RC", + "ICAO": "FLI" + }, + { + "Name": "Atlas Air", + "Code": "5Y", + "ICAO": "GTI" + }, + { + "Name": "Atlas Air Service", + "Code": "", + "ICAO": "ATL" + }, + { + "Name": "ATR", + "Code": "", + "ICAO": "EVX" + }, + { + "Name": "Atran", + "Code": "V8", + "ICAO": "VAS" + }, + { + "Name": "Auckland Rescue Helicopter", + "Code": "", + "ICAO": "WPR" + }, + { + "Name": "Aura Airlines", + "Code": "U5", + "ICAO": "GWR" + }, + { + "Name": "Auric Air", + "Code": "UI", + "ICAO": "AUK" + }, + { + "Name": "Aurigny Air Services", + "Code": "GR", + "ICAO": "AUR" + }, + { + "Name": "Aurora", + "Code": "HZ", + "ICAO": "SHU" + }, + { + "Name": "Austrian Airlines", + "Code": "OS", + "ICAO": "AUA" + }, + { + "Name": "Av8Jet", + "Code": "", + "ICAO": "AJO" + }, + { + "Name": "Avanti Air", + "Code": "", + "ICAO": "ATV" + }, + { + "Name": "Avcenter", + "Code": "", + "ICAO": "TTE" + }, + { + "Name": "Avcon Jet", + "Code": "", + "ICAO": "AOJ" + }, + { + "Name": "Avcon Jet Malta", + "Code": "", + "ICAO": "VCJ" + }, + { + "Name": "Avcon Jet San Marino", + "Code": "", + "ICAO": "VAJ" + }, + { + "Name": "Avelo Airlines", + "Code": "XP", + "ICAO": "VXP" + }, + { + "Name": "Avia Traffic", + "Code": "YK", + "ICAO": "AVJ" + }, + { + "Name": "Aviacon Zitotrans", + "Code": "ZR", + "ICAO": "AZS" + }, + { + "Name": "Avianca", + "Code": "AV", + "ICAO": "AVA" + }, + { + "Name": "Avianca Cargo", + "Code": "QT", + "ICAO": "TPA" + }, + { + "Name": "Avianca Central America", + "Code": "TA", + "ICAO": "TAI" + }, + { + "Name": "Avianca Costa Rica", + "Code": "LR", + "ICAO": "LRC" + }, + { + "Name": "Avianca Ecuador", + "Code": "2K", + "ICAO": "GLG" + }, + { + "Name": "Avianca Express", + "Code": "EX", + "ICAO": "AVR" + }, + { + "Name": "Avianca Guatemala", + "Code": "GU", + "ICAO": "GUG" + }, + { + "Name": "Aviastar", + "Code": "", + "ICAO": "VIT" + }, + { + "Name": "Aviastar-TU", + "Code": "4B", + "ICAO": "TUP" + }, + { + "Name": "Aviation Advisor", + "Code": "", + "ICAO": "LKF" + }, + { + "Name": "Aviation Horizons", + "Code": "ZS", + "ICAO": "HZS" + }, + { + "Name": "Avion Express", + "Code": "X9", + "ICAO": "NVD" + }, + { + "Name": "Avion Express Malta", + "Code": "X8", + "ICAO": "MLH" + }, + { + "Name": "Avionord", + "Code": "", + "ICAO": "VND" + }, + { + "Name": "Avior Airlines", + "Code": "9V", + "ICAO": "ROI" + }, + { + "Name": "Aviostart", + "Code": "", + "ICAO": "VSR" + }, + { + "Name": "Azerbaijan Airlines", + "Code": "J2", + "ICAO": "AHY" + }, + { + "Name": "Azimuth", + "Code": "A4", + "ICAO": "AZO" + }, + { + "Name": "Azman Air", + "Code": "ZQ", + "ICAO": "AZM" + }, + { + "Name": "Azores Airlines", + "Code": "S4", + "ICAO": "RZO" + }, + { + "Name": "Aztec Airways", + "Code": "AJ", + "ICAO": "AZY" + }, + { + "Name": "Azul Conecta", + "Code": "2F", + "ICAO": "ACN" + }, + { + "Name": "Azul Linhas Aereas", + "Code": "AD", + "ICAO": "AZU" + }, + { + "Name": "Azur Air", + "Code": "ZF", + "ICAO": "AZV" + }, + { + "Name": "Azur Air Ukraine", + "Code": "QU", + "ICAO": "UTN" + }, + { + "Name": "BA CityFlyer", + "Code": "CJ", + "ICAO": "CFE" + }, + { + "Name": "Babcock MCS Espana", + "Code": "", + "ICAO": "INR" + }, + { + "Name": "Babcock MCS France", + "Code": "", + "ICAO": "PTH" + }, + { + "Name": "Babcock MCS Italia", + "Code": "", + "ICAO": "ELH" + }, + { + "Name": "Babcock MCS Offshore", + "Code": "", + "ICAO": "BND" + }, + { + "Name": "Babcock MCS Onshore", + "Code": "", + "ICAO": "RHD" + }, + { + "Name": "Babcock MCS Portugal", + "Code": "", + "ICAO": "BBO" + }, + { + "Name": "Babcock Scandinavian AirAmbulance", + "Code": "", + "ICAO": "DFL" + }, + { + "Name": "Babcock Scandinavian AirAmbulance", + "Code": "", + "ICAO": "BNO" + }, + { + "Name": "Baden Aircraft Operations", + "Code": "", + "ICAO": "BAO" + }, + { + "Name": "Badr Airlines", + "Code": "J4", + "ICAO": "BDR" + }, + { + "Name": "BAe Systems", + "Code": "", + "ICAO": "BAE" + }, + { + "Name": "BAe Systems Marine", + "Code": "", + "ICAO": "VSB" + }, + { + "Name": "Bahamasair", + "Code": "UP", + "ICAO": "BHS" + }, + { + "Name": "Bairline", + "Code": "", + "ICAO": "BRJ" + }, + { + "Name": "Bakhtar Afghan Airlines", + "Code": "BM", + "ICAO": "BFO" + }, + { + "Name": "Bamboo Airways", + "Code": "QH", + "ICAO": "BAV" + }, + { + "Name": "Bangkok Airways", + "Code": "PG", + "ICAO": "BKP" + }, + { + "Name": "BankAir", + "Code": "", + "ICAO": "BKA" + }, + { + "Name": "Bar XH Air", + "Code": "", + "ICAO": "BXH" + }, + { + "Name": "Baron Aviation Services", + "Code": "", + "ICAO": "BVN" + }, + { + "Name": "Bassaka Air", + "Code": "5B", + "ICAO": "BSX" + }, + { + "Name": "Batik Air", + "Code": "ID", + "ICAO": "BTK" + }, + { + "Name": "Batik Air Malaysia", + "Code": "OD", + "ICAO": "MXD" + }, + { + "Name": "Bearskin Airlines", + "Code": "JV", + "ICAO": "BLS" + }, + { + "Name": "Bees Airline", + "Code": "7B", + "ICAO": "UBE" + }, + { + "Name": "Beijing Airlines", + "Code": "", + "ICAO": "BJN" + }, + { + "Name": "Bel Air Aviation", + "Code": "", + "ICAO": "BBX" + }, + { + "Name": "Belavia", + "Code": "B2", + "ICAO": "BRU" + }, + { + "Name": "Bemidji Airlines", + "Code": "CH", + "ICAO": "BMJ" + }, + { + "Name": "Bering Air", + "Code": "8E", + "ICAO": "BRG" + }, + { + "Name": "Berjaya Air", + "Code": "J8", + "ICAO": "BVT" + }, + { + "Name": "Berniq Airways", + "Code": "NB", + "ICAO": "BNL" + }, + { + "Name": "Berry Aviation", + "Code": "", + "ICAO": "BYA" + }, + { + "Name": "Bestfly Aruba", + "Code": "", + "ICAO": "BFY" + }, + { + "Name": "Bestfly Cabo Verde", + "Code": "3B", + "ICAO": "BCV" + }, + { + "Name": "BH Air", + "Code": "8H", + "ICAO": "BGH" + }, + { + "Name": "Bhutan Airlines", + "Code": "B3", + "ICAO": "BTN" + }, + { + "Name": "Bighorn Airways", + "Code": "", + "ICAO": "BHR" + }, + { + "Name": "Biman Bangladesh Airlines", + "Code": "BG", + "ICAO": "BBC" + }, + { + "Name": "BinAir", + "Code": "", + "ICAO": "BID" + }, + { + "Name": "Binter Canarias", + "Code": "NT", + "ICAO": "IBB" + }, + { + "Name": "Bioflight", + "Code": "", + "ICAO": "BIO" + }, + { + "Name": "Bismillah Airlines", + "Code": "BH", + "ICAO": "BML" + }, + { + "Name": "Blue Air", + "Code": "0B", + "ICAO": "BLA" + }, + { + "Name": "Blue Bird Aviation", + "Code": "", + "ICAO": "BLB" + }, + { + "Name": "Blue Dart Aviation", + "Code": "BZ", + "ICAO": "BDA" + }, + { + "Name": "Blue Islands", + "Code": "SI", + "ICAO": "BCI" + }, + { + "Name": "Blue Square Aviation", + "Code": "", + "ICAO": "BSG" + }, + { + "Name": "Bluebird Airways", + "Code": "BZ", + "ICAO": "BBG" + }, + { + "Name": "Bluebird Aviation", + "Code": "", + "ICAO": "BBZ" + }, + { + "Name": "Bluebird Nordic", + "Code": "BO", + "ICAO": "BBD" + }, + { + "Name": "Boeing", + "Code": "", + "ICAO": "BOE" + }, + { + "Name": "Boliviana de Aviacion", + "Code": "OB", + "ICAO": "BOV" + }, + { + "Name": "Bombardier", + "Code": "", + "ICAO": "BBA" + }, + { + "Name": "Bonza", + "Code": "", + "ICAO": "BNZ" + }, + { + "Name": "Bookajet", + "Code": "", + "ICAO": "BOO" + }, + { + "Name": "Boutique Air", + "Code": "4B", + "ICAO": "BTQ" + }, + { + "Name": "BRA", + "Code": "TF", + "ICAO": "BRX" + }, + { + "Name": "Bravo Airways", + "Code": "", + "ICAO": "BAY" + }, + { + "Name": "Breeze Airways", + "Code": "MX", + "ICAO": "MXY" + }, + { + "Name": "Brilliant Jet", + "Code": "", + "ICAO": "TXJ" + }, + { + "Name": "Bristow Helicopters", + "Code": "", + "ICAO": "BHL" + }, + { + "Name": "Bristow Nigeria", + "Code": "", + "ICAO": "BHN" + }, + { + "Name": "Bristow Norway", + "Code": "", + "ICAO": "NOR" + }, + { + "Name": "Bristow US", + "Code": "", + "ICAO": "BTZ" + }, + { + "Name": "British Airways", + "Code": "BA", + "ICAO": "BAW" + }, + { + "Name": "British Airways Shuttle", + "Code": "", + "ICAO": "SHT" + }, + { + "Name": "British International Helicopters", + "Code": "", + "ICAO": "BRT" + }, + { + "Name": "Bromma Air Maintenance", + "Code": "", + "ICAO": "CFL" + }, + { + "Name": "Brussels Airlines", + "Code": "SN", + "ICAO": "BEL" + }, + { + "Name": "Budapest Aircraft Service", + "Code": "RP", + "ICAO": "BPS" + }, + { + "Name": "Buddha Air", + "Code": "U4", + "ICAO": "BHA" + }, + { + "Name": "Budget Lines", + "Code": "BD", + "ICAO": "BGN" + }, + { + "Name": "Buffalo Airways", + "Code": "", + "ICAO": "BFL" + }, + { + "Name": "Bul Air", + "Code": "LB", + "ICAO": "BVL" + }, + { + "Name": "Bulgaria - Government", + "Code": "", + "ICAO": "BGF" + }, + { + "Name": "Bulgaria Air", + "Code": "FB", + "ICAO": "LZB" + }, + { + "Name": "Buraq Air", + "Code": "UZ", + "ICAO": "BRQ" + }, + { + "Name": "Business Aviation Asia", + "Code": "UN", + "ICAO": "UNA" + }, + { + "Name": "Business Wings", + "Code": "", + "ICAO": "JMP" + }, + { + "Name": "Buzz", + "Code": "RR", + "ICAO": "RYS" + }, + { + "Name": "BySky", + "Code": "", + "ICAO": "BYS" + }, + { + "Name": "C&M Airways", + "Code": "", + "ICAO": "RWG" + }, + { + "Name": "CAA", + "Code": "BU", + "ICAO": "REB" + }, + { + "Name": "Cabo Verde Airlines", + "Code": "VR", + "ICAO": "TCV" + }, + { + "Name": "Caicos Express Airways", + "Code": "9Q", + "ICAO": "CXE" + }, + { + "Name": "Calafia Airlines", + "Code": "A7", + "ICAO": "CFV" + }, + { + "Name": "Calm Air", + "Code": "MO", + "ICAO": "CAV" + }, + { + "Name": "Calstar", + "Code": "", + "ICAO": "CMD" + }, + { + "Name": "Camair-Co", + "Code": "QC", + "ICAO": "CRC" + }, + { + "Name": "Cambodia Airways", + "Code": "KR", + "ICAO": "KME" + }, + { + "Name": "Cambodia Angkor Air", + "Code": "K6", + "ICAO": "KHV" + }, + { + "Name": "Cambodia Bayon Airlines", + "Code": "BD", + "ICAO": "BYC" + }, + { + "Name": "Cameroon Airlines", + "Code": "UY", + "ICAO": "UYC" + }, + { + "Name": "Camex Airlines", + "Code": "Z7", + "ICAO": "CMS" + }, + { + "Name": "Canada - Department of Transport", + "Code": "", + "ICAO": "TGO" + }, + { + "Name": "Canadian Airways Congo", + "Code": "", + "ICAO": "TWC" + }, + { + "Name": "Canadian North", + "Code": "5T", + "ICAO": "AKT" + }, + { + "Name": "Canarias Airlines", + "Code": "", + "ICAO": "RSC" + }, + { + "Name": "CanaryFly", + "Code": "PM", + "ICAO": "CNF" + }, + { + "Name": "Canavia", + "Code": "", + "ICAO": "CNA" + }, + { + "Name": "Canjet Airlines", + "Code": "C6", + "ICAO": "CJA" + }, + { + "Name": "Canlink Aviation", + "Code": "", + "ICAO": "MFC" + }, + { + "Name": "CanWest Air", + "Code": "", + "ICAO": "CWA" + }, + { + "Name": "Cape Air", + "Code": "9K", + "ICAO": "KAP" + }, + { + "Name": "Capital Air Ambulance", + "Code": "", + "ICAO": "EGL" + }, + { + "Name": "Capital Airlines", + "Code": "JD", + "ICAO": "CBJ" + }, + { + "Name": "Capital City Air Carriers", + "Code": "", + "ICAO": "CCQ" + }, + { + "Name": "Cardiff Aviation Malta", + "Code": "", + "ICAO": "SGO" + }, + { + "Name": "Cardig Air", + "Code": "", + "ICAO": "CAD" + }, + { + "Name": "CareFlight", + "Code": "", + "ICAO": "CFH" + }, + { + "Name": "Cargo Air", + "Code": "", + "ICAO": "CGF" + }, + { + "Name": "Cargo Three", + "Code": "C3", + "ICAO": "CTW" + }, + { + "Name": "Cargojet Airways", + "Code": "W8", + "ICAO": "CJT" + }, + { + "Name": "CargoLogic Germany", + "Code": "6L", + "ICAO": "GCL" + }, + { + "Name": "CargoLogicAir", + "Code": "P3", + "ICAO": "CLU" + }, + { + "Name": "Cargolux", + "Code": "CV", + "ICAO": "CLX" + }, + { + "Name": "Cargolux Italia", + "Code": "C8", + "ICAO": "ICV" + }, + { + "Name": "Caribbean Airlines", + "Code": "BW", + "ICAO": "BWA" + }, + { + "Name": "Carpatair", + "Code": "V3", + "ICAO": "KRP" + }, + { + "Name": "Carson Air", + "Code": "", + "ICAO": "CRN" + }, + { + "Name": "Caspian Airlines", + "Code": "RV", + "ICAO": "CPN" + }, + { + "Name": "Castle Aviation", + "Code": "", + "ICAO": "CSJ" + }, + { + "Name": "CAT Aviation", + "Code": "", + "ICAO": "CAZ" + }, + { + "Name": "Cathay Pacific", + "Code": "CX", + "ICAO": "CPA" + }, + { + "Name": "Catreus", + "Code": "", + "ICAO": "VCG" + }, + { + "Name": "Cavok Air", + "Code": "", + "ICAO": "CVK" + }, + { + "Name": "Cayman Airways", + "Code": "KX", + "ICAO": "CAY" + }, + { + "Name": "Cebgo", + "Code": "DG", + "ICAO": "SRQ" + }, + { + "Name": "Cebu Pacific", + "Code": "5J", + "ICAO": "CEB" + }, + { + "Name": "Ceiba Intercontinental", + "Code": "C2", + "ICAO": "CEL" + }, + { + "Name": "CemAir", + "Code": "5Z", + "ICAO": "KEM" + }, + { + "Name": "Central Air Southwest", + "Code": "", + "ICAO": "CTL" + }, + { + "Name": "Central Airlines", + "Code": "I9", + "ICAO": "HLF" + }, + { + "Name": "Central Mountain Air", + "Code": "9M", + "ICAO": "GLR" + }, + { + "Name": "Centreline", + "Code": "", + "ICAO": "CLF" + }, + { + "Name": "Chabahar Airlines", + "Code": "", + "ICAO": "IRU" + }, + { + "Name": "Chair Airlines", + "Code": "GM", + "ICAO": "GSW" + }, + { + "Name": "Chalair Aviation", + "Code": "CE", + "ICAO": "CLG" + }, + { + "Name": "Challenge Airlines", + "Code": "X7", + "ICAO": "CHG" + }, + { + "Name": "Challenge Airlines IL", + "Code": "5C", + "ICAO": "ICL" + }, + { + "Name": "Cham Wings Airlines", + "Code": "6Q", + "ICAO": "SAW" + }, + { + "Name": "Charter Jets", + "Code": "", + "ICAO": "LTC" + }, + { + "Name": "Chartright Air", + "Code": "", + "ICAO": "HRT" + }, + { + "Name": "CHC Helicopter", + "Code": "", + "ICAO": "HMB" + }, + { + "Name": "CHC Helicopters Netherlands", + "Code": "", + "ICAO": "HNL" + }, + { + "Name": "CHC Helicopters Nigeria", + "Code": "", + "ICAO": "ATQ" + }, + { + "Name": "CHC Helikopter Service", + "Code": "", + "ICAO": "HKS" + }, + { + "Name": "CHC International", + "Code": "", + "ICAO": "GCY" + }, + { + "Name": "Chengdu Airlines", + "Code": "EU", + "ICAO": "UEA" + }, + { + "Name": "Chervon Corporation", + "Code": "", + "ICAO": "GLH" + }, + { + "Name": "Chicago Jet Group", + "Code": "", + "ICAO": "WDY" + }, + { + "Name": "China Airlines", + "Code": "CI", + "ICAO": "CAL" + }, + { + "Name": "China Cargo Airlines", + "Code": "CK", + "ICAO": "CKK" + }, + { + "Name": "China Central Longhao Airlines", + "Code": "GI", + "ICAO": "LHA" + }, + { + "Name": "China Eastern Airlines", + "Code": "MU", + "ICAO": "CES" + }, + { + "Name": "China Express Airlines", + "Code": "G5", + "ICAO": "HXA" + }, + { + "Name": "China Postal Airlines", + "Code": "CF", + "ICAO": "CYZ" + }, + { + "Name": "China Southern Airlines", + "Code": "CZ", + "ICAO": "CSN" + }, + { + "Name": "China Southern Cargo", + "Code": "", + "ICAO": "CSG" + }, + { + "Name": "China United Airlines", + "Code": "KN", + "ICAO": "CUA" + }, + { + "Name": "Chongqing Airlines", + "Code": "OQ", + "ICAO": "CQN" + }, + { + "Name": "Chrono Aviation", + "Code": "MB", + "ICAO": "NDL" + }, + { + "Name": "Chrono Jet", + "Code": "MB", + "ICAO": "MBK" + }, + { + "Name": "Cinnamon Air", + "Code": "C7", + "ICAO": "CIN" + }, + { + "Name": "CITIC Offshore Helicopter", + "Code": "", + "ICAO": "CHC" + }, + { + "Name": "Citilink", + "Code": "QG", + "ICAO": "CTV" + }, + { + "Name": "Citrus", + "Code": "XT", + "ICAO": "CTU" + }, + { + "Name": "Cityjet", + "Code": "WX", + "ICAO": "BCY" + }, + { + "Name": "Civil Air Patrol", + "Code": "", + "ICAO": "CAP" + }, + { + "Name": "Class Aviation", + "Code": "", + "ICAO": "DUC" + }, + { + "Name": "Clipper Jet", + "Code": "", + "ICAO": "ORO" + }, + { + "Name": "CM Airlines", + "Code": "CC", + "ICAO": "OMT" + }, + { + "Name": "CMA CGM AirCargo", + "Code": "2C", + "ICAO": "CMA" + }, + { + "Name": "Coastal Aviation", + "Code": "CQ", + "ICAO": "CSV" + }, + { + "Name": "Cobalt Air", + "Code": "CO", + "ICAO": "FCB" + }, + { + "Name": "Cobham Aviation", + "Code": "NC", + "ICAO": "JTE" + }, + { + "Name": "Cobham Aviation Services Australia", + "Code": "", + "ICAO": "NJS" + }, + { + "Name": "Cobham Flight Inspection", + "Code": "", + "ICAO": "CLB" + }, + { + "Name": "Colorful GuiZhou Airlines", + "Code": "GY", + "ICAO": "CGZ" + }, + { + "Name": "Comlux Aruba", + "Code": "CS", + "ICAO": "CXB" + }, + { + "Name": "Comlux Aviation", + "Code": "", + "ICAO": "CLA" + }, + { + "Name": "Comlux Aviation Malta", + "Code": "", + "ICAO": "MLM" + }, + { + "Name": "CommutAir", + "Code": "C5", + "ICAO": "UCA" + }, + { + "Name": "Compagnia Aeronautica Italiana", + "Code": "", + "ICAO": "CPI" + }, + { + "Name": "Compass Cargo Airlines", + "Code": "", + "ICAO": "ADZ" + }, + { + "Name": "Conair", + "Code": "", + "ICAO": "FGD" + }, + { + "Name": "Condor", + "Code": "DE", + "ICAO": "CFG" + }, + { + "Name": "Congo Airways", + "Code": "8Z", + "ICAO": "CGA" + }, + { + "Name": "Connect Airlines", + "Code": "MW", + "ICAO": "WZM" + }, + { + "Name": "Connect Linhas Aereas", + "Code": "6C", + "ICAO": "CNT" + }, + { + "Name": "Conquest Air", + "Code": "C4", + "ICAO": "QAI" + }, + { + "Name": "Constanta Airline", + "Code": "", + "ICAO": "UZA" + }, + { + "Name": "Contour Aviation", + "Code": "LF", + "ICAO": "VTE" + }, + { + "Name": "Conviasa", + "Code": "V0", + "ICAO": "VCV" + }, + { + "Name": "Copa Airlines", + "Code": "CM", + "ICAO": "CMP" + }, + { + "Name": "Copenhagen Airtaxi", + "Code": "", + "ICAO": "CAT" + }, + { + "Name": "Corendon Airlines", + "Code": "XC", + "ICAO": "CAI" + }, + { + "Name": "Corendon Airlines Europe", + "Code": "XR", + "ICAO": "CXI" + }, + { + "Name": "Corendon Dutch Airlines", + "Code": "CD", + "ICAO": "CND" + }, + { + "Name": "Corporate Air", + "Code": "", + "ICAO": "CPT" + }, + { + "Name": "Corporate Air", + "Code": "", + "ICAO": "MLN" + }, + { + "Name": "Corsair", + "Code": "SS", + "ICAO": "CRL" + }, + { + "Name": "Costa Rica Green Airways", + "Code": "GW", + "ICAO": "GRA" + }, + { + "Name": "Coulson Aviation", + "Code": "", + "ICAO": "CUL" + }, + { + "Name": "Cristalux", + "Code": "Z7", + "ICAO": "AUZ" + }, + { + "Name": "Croatia Airlines", + "Code": "OU", + "ICAO": "CTN" + }, + { + "Name": "Cronos Airlines", + "Code": "C8", + "ICAO": "CRA" + }, + { + "Name": "Cronos Airlines Benin", + "Code": "C9", + "ICAO": "CKL" + }, + { + "Name": "CSA Air", + "Code": "", + "ICAO": "IRO" + }, + { + "Name": "CSI Aviation", + "Code": "", + "ICAO": "CSI" + }, + { + "Name": "Cubana", + "Code": "CU", + "ICAO": "CUB" + }, + { + "Name": "Cygnus Air", + "Code": "", + "ICAO": "RGN" + }, + { + "Name": "Cyprus Airways", + "Code": "CY", + "ICAO": "CYP" + }, + { + "Name": "Czech Airlines", + "Code": "OK", + "ICAO": "CSA" + }, + { + "Name": "Daallo Airlines", + "Code": "D3", + "ICAO": "DAO" + }, + { + "Name": "Dalian Airlines", + "Code": "", + "ICAO": "CCD" + }, + { + "Name": "Dan Air", + "Code": "", + "ICAO": "JOC" + }, + { + "Name": "Dana Air", + "Code": "9J", + "ICAO": "DAN" + }, + { + "Name": "Dassault Falcon Service", + "Code": "", + "ICAO": "DSO" + }, + { + "Name": "DAT", + "Code": "DX", + "ICAO": "DTR" + }, + { + "Name": "DAT LT", + "Code": "R6", + "ICAO": "DNU" + }, + { + "Name": "DC Aviation", + "Code": "", + "ICAO": "DCS" + }, + { + "Name": "DEA Aviation", + "Code": "", + "ICAO": "WKT" + }, + { + "Name": "Deer Jet", + "Code": "", + "ICAO": "DER" + }, + { + "Name": "Deer Jet Beijing", + "Code": "", + "ICAO": "BDJ" + }, + { + "Name": "Delta Air Lines", + "Code": "DL", + "ICAO": "DAL" + }, + { + "Name": "Delta Private Jets", + "Code": "", + "ICAO": "DPJ" + }, + { + "Name": "Dena Airways", + "Code": "D9", + "ICAO": "DAI" + }, + { + "Name": "Denim Air", + "Code": "G6", + "ICAO": "DNM" + }, + { + "Name": "Deraya", + "Code": "", + "ICAO": "DRY" + }, + { + "Name": "Desert Jet", + "Code": "", + "ICAO": "DJR" + }, + { + "Name": "Dexter Air Taxi", + "Code": "", + "ICAO": "DXT" + }, + { + "Name": "DHL", + "Code": "D0", + "ICAO": "DHK" + }, + { + "Name": "DHL Aero Expreso", + "Code": "D5", + "ICAO": "DAE" + }, + { + "Name": "DHL Air Austria", + "Code": "Q7", + "ICAO": "DHA" + }, + { + "Name": "DHL Aviation EEMEA", + "Code": "ES", + "ICAO": "DHX" + }, + { + "Name": "Diamond Sky", + "Code": "", + "ICAO": "DMS" + }, + { + "Name": "Divi Divi Air", + "Code": "3R", + "ICAO": "DVR" + }, + { + "Name": "Dniproavia", + "Code": "", + "ICAO": "UDN" + }, + { + "Name": "Donghai Airlines", + "Code": "DZ", + "ICAO": "EPA" + }, + { + "Name": "Dornier Aviation Nigeria Aiep", + "Code": "DO", + "ICAO": "DAV" + }, + { + "Name": "Douniah Airlines", + "Code": "DH", + "ICAO": "DTS" + }, + { + "Name": "DragonFly Executive", + "Code": "", + "ICAO": "CBM" + }, + { + "Name": "Dreamline Aviation", + "Code": "", + "ICAO": "DLX" + }, + { + "Name": "DRF Luftrettung", + "Code": "1I", + "ICAO": "AMB" + }, + { + "Name": "Druk Air", + "Code": "KB", + "ICAO": "DRK" + }, + { + "Name": "Dubai Air Wing", + "Code": "", + "ICAO": "DUB" + }, + { + "Name": "E+S Air", + "Code": "", + "ICAO": "CAH" + }, + { + "Name": "E-Aviation", + "Code": "", + "ICAO": "EFD" + }, + { + "Name": "E-Cargo Airlines", + "Code": "RF", + "ICAO": "ERF" + }, + { + "Name": "EADS CASA", + "Code": "", + "ICAO": "AED" + }, + { + "Name": "Eagle Air", + "Code": "", + "ICAO": "EGU" + }, + { + "Name": "Eagle Air Iceland", + "Code": "", + "ICAO": "FEI" + }, + { + "Name": "Eagle Atlantic Airlines", + "Code": "", + "ICAO": "EAB" + }, + { + "Name": "Eagle Creek Aviation", + "Code": "", + "ICAO": "EGC" + }, + { + "Name": "EagleMed", + "Code": "", + "ICAO": "EMD" + }, + { + "Name": "East Coast Jets", + "Code": "", + "ICAO": "ECJ" + }, + { + "Name": "East-West Express", + "Code": "", + "ICAO": "EWU" + }, + { + "Name": "Eastar Jet", + "Code": "ZE", + "ICAO": "ESR" + }, + { + "Name": "Eastern Airlines", + "Code": "2D", + "ICAO": "EAL" + }, + { + "Name": "Eastern Airways", + "Code": "T3", + "ICAO": "EZE" + }, + { + "Name": "Eastern Australia Airlines", + "Code": "", + "ICAO": "EAQ" + }, + { + "Name": "EasyFly", + "Code": "VE", + "ICAO": "EFY" + }, + { + "Name": "easyJet", + "Code": "U2", + "ICAO": "EZY" + }, + { + "Name": "easyJet Europe", + "Code": "EC", + "ICAO": "EJU" + }, + { + "Name": "easyJet Switzerland", + "Code": "DS", + "ICAO": "EZS" + }, + { + "Name": "EATIS", + "Code": "", + "ICAO": "SRK" + }, + { + "Name": "Eclair Aviation", + "Code": "", + "ICAO": "ECC" + }, + { + "Name": "ECO Airlines", + "Code": "", + "ICAO": "EKO" + }, + { + "Name": "EcoJet", + "Code": "8J", + "ICAO": "ECO" + }, + { + "Name": "Edelweiss Air", + "Code": "WK", + "ICAO": "EDW" + }, + { + "Name": "EGT Jet", + "Code": "", + "ICAO": "EGT" + }, + { + "Name": "EgyptAir", + "Code": "MS", + "ICAO": "MSR" + }, + { + "Name": "EgyptAir Cargo", + "Code": "", + "ICAO": "MSX" + }, + { + "Name": "EJM Europe", + "Code": "", + "ICAO": "JME" + }, + { + "Name": "El Al", + "Code": "LY", + "ICAO": "ELY" + }, + { + "Name": "Electra Airways", + "Code": "", + "ICAO": "EAF" + }, + { + "Name": "Elifriulia", + "Code": "", + "ICAO": "EFG" + }, + { + "Name": "Elilombarda", + "Code": "", + "ICAO": "EOA" + }, + { + "Name": "Eliossola", + "Code": "", + "ICAO": "EOS" + }, + { + "Name": "Elitaliana", + "Code": "", + "ICAO": "ELA" + }, + { + "Name": "Elitavia", + "Code": "", + "ICAO": "EAV" + }, + { + "Name": "Elitavia Malta", + "Code": "MA", + "ICAO": "EAU" + }, + { + "Name": "Elite Air", + "Code": "", + "ICAO": "ELZ" + }, + { + "Name": "Elite Airways", + "Code": "7Q", + "ICAO": "MNU" + }, + { + "Name": "Elitellina", + "Code": "", + "ICAO": "FGS" + }, + { + "Name": "Embraer", + "Code": "", + "ICAO": "EMB" + }, + { + "Name": "Emerald Airlines", + "Code": "EA", + "ICAO": "EAI" + }, + { + "Name": "Emerald Airlines UK", + "Code": "", + "ICAO": "EAG" + }, + { + "Name": "Emetebe.com.ec", + "Code": "", + "ICAO": "EMT" + }, + { + "Name": "Emirates", + "Code": "EK", + "ICAO": "UAE" + }, + { + "Name": "Emirates Flight Training Academy", + "Code": "", + "ICAO": "EFC" + }, + { + "Name": "Emperor Aviation", + "Code": "", + "ICAO": "EMM" + }, + { + "Name": "Empire Airlines", + "Code": "EM", + "ICAO": "CFS" + }, + { + "Name": "Empire Aviation", + "Code": "", + "ICAO": "MJE" + }, + { + "Name": "Empyreal Jet", + "Code": "", + "ICAO": "RLJ" + }, + { + "Name": "ENAC Ecole Aviation Civile", + "Code": "", + "ICAO": "NAK" + }, + { + "Name": "Encore Air Cargo", + "Code": "", + "ICAO": "DKT" + }, + { + "Name": "Endeavor Air", + "Code": "9E", + "ICAO": "EDV" + }, + { + "Name": "Enter Air", + "Code": "E4", + "ICAO": "ENT" + }, + { + "Name": "Envoy Air", + "Code": "MQ", + "ICAO": "ENY" + }, + { + "Name": "Epsilon Aviation", + "Code": "", + "ICAO": "GRV" + }, + { + "Name": "Equair", + "Code": "HN", + "ICAO": "EQX" + }, + { + "Name": "Eritrean Airlines", + "Code": "B8", + "ICAO": "ERT" + }, + { + "Name": "Estafeta", + "Code": "E7", + "ICAO": "ESF" + }, + { + "Name": "Estelar", + "Code": "ES", + "ICAO": "ETR" + }, + { + "Name": "ETF Airways", + "Code": "LI", + "ICAO": "EZZ" + }, + { + "Name": "Ethiopian Airlines", + "Code": "ET", + "ICAO": "ETH" + }, + { + "Name": "Etihad Airways", + "Code": "EY", + "ICAO": "ETD" + }, + { + "Name": "Euro Link", + "Code": "", + "ICAO": "EUL" + }, + { + "Name": "Euro-Asia Air", + "Code": "5B", + "ICAO": "EAK" + }, + { + "Name": "EuroAtlantic Airways", + "Code": "YU", + "ICAO": "MMZ" + }, + { + "Name": "Eurocopter Deutschland", + "Code": "", + "ICAO": "RDF" + }, + { + "Name": "European Air Charter", + "Code": "H6", + "ICAO": "BUC" + }, + { + "Name": "European Air Transport", + "Code": "QY", + "ICAO": "BCS" + }, + { + "Name": "European Cargo", + "Code": "", + "ICAO": "URO" + }, + { + "Name": "European Flight Academy", + "Code": "", + "ICAO": "PTO" + }, + { + "Name": "European Flight Service", + "Code": "", + "ICAO": "EUW" + }, + { + "Name": "European Flyers", + "Code": "", + "ICAO": "FYS" + }, + { + "Name": "European SAO", + "Code": "", + "ICAO": "EKT" + }, + { + "Name": "Eurowings", + "Code": "EW", + "ICAO": "EWG" + }, + { + "Name": "Eurowings Discover", + "Code": "4Y", + "ICAO": "OCN" + }, + { + "Name": "Eurowings Europe", + "Code": "E2", + "ICAO": "EWE" + }, + { + "Name": "EVA Air", + "Code": "BR", + "ICAO": "EVA" + }, + { + "Name": "Everts Air Alaska", + "Code": "5V", + "ICAO": "VTS" + }, + { + "Name": "EWA Air", + "Code": "ZD", + "ICAO": "EWR" + }, + { + "Name": "Excellent Air", + "Code": "", + "ICAO": "ECA" + }, + { + "Name": "Execuflight", + "Code": "", + "ICAO": "EFT" + }, + { + "Name": "Execujet Middle East", + "Code": "", + "ICAO": "EJO" + }, + { + "Name": "Execujet Scandinavia", + "Code": "", + "ICAO": "VMP" + }, + { + "Name": "Executive Jet Charter", + "Code": "", + "ICAO": "EXJ" + }, + { + "Name": "Executive Jet Management", + "Code": "", + "ICAO": "EJM" + }, + { + "Name": "Exploits Valley Air Services", + "Code": "8K", + "ICAO": "EVS" + }, + { + "Name": "Express Air Cargo", + "Code": "7A", + "ICAO": "XRC" + }, + { + "Name": "Express Freighters Australia", + "Code": "QE", + "ICAO": "EFA" + }, + { + "Name": "ExpressJet Airlines", + "Code": "XE", + "ICAO": "BTA" + }, + { + "Name": "Exxaero", + "Code": "", + "ICAO": "XRO" + }, + { + "Name": "EZ Air", + "Code": "7Z", + "ICAO": "EZR" + }, + { + "Name": "Eznis Airways", + "Code": "MG", + "ICAO": "EZA" + }, + { + "Name": "FAI rent-a-jet", + "Code": "", + "ICAO": "IFA" + }, + { + "Name": "Far Eastern Air Transport", + "Code": "FE", + "ICAO": "FEA" + }, + { + "Name": "Fast Air", + "Code": "", + "ICAO": "PBR" + }, + { + "Name": "Fastjet", + "Code": "FN", + "ICAO": "FTZ" + }, + { + "Name": "Fastjet Zimbabwe", + "Code": "FN", + "ICAO": "FJW" + }, + { + "Name": "FedEx", + "Code": "FX", + "ICAO": "FDX" + }, + { + "Name": "Fenix Air Charter", + "Code": "", + "ICAO": "FNX" + }, + { + "Name": "Feuerwehr-Flugdienst Niedersachsen", + "Code": "", + "ICAO": "FFD" + }, + { + "Name": "Fiji Airways", + "Code": "FJ", + "ICAO": "FJI" + }, + { + "Name": "Fiji Link", + "Code": "", + "ICAO": "FJA" + }, + { + "Name": "Finistair", + "Code": "", + "ICAO": "FTR" + }, + { + "Name": "Finnair", + "Code": "AY", + "ICAO": "FIN" + }, + { + "Name": "FinnHEMS", + "Code": "", + "ICAO": "FIH" + }, + { + "Name": "Firefly", + "Code": "FY", + "ICAO": "FFM" + }, + { + "Name": "First Air", + "Code": "7F", + "ICAO": "FAB" + }, + { + "Name": "First Nation Airways", + "Code": "", + "ICAO": "FRN" + }, + { + "Name": "FitsAir", + "Code": "8D", + "ICAO": "EXV" + }, + { + "Name": "Flair Airlines", + "Code": "F8", + "ICAO": "FLE" + }, + { + "Name": "Fleet Air International", + "Code": "", + "ICAO": "FRF" + }, + { + "Name": "Flexflight", + "Code": "W2", + "ICAO": "FXT" + }, + { + "Name": "Flexjet", + "Code": "", + "ICAO": "LXJ" + }, + { + "Name": "Flexjet Europe", + "Code": "", + "ICAO": "FLJ" + }, + { + "Name": "Flexjet Operations Malta", + "Code": "", + "ICAO": "FJO" + }, + { + "Name": "Flight Calibration Services", + "Code": "", + "ICAO": "FCK" + }, + { + "Name": "Flight Calibration Services", + "Code": "", + "ICAO": "VOR" + }, + { + "Name": "Flight options", + "Code": "", + "ICAO": "OPT" + }, + { + "Name": "Flight Training Europe", + "Code": "", + "ICAO": "AYR" + }, + { + "Name": "FlightExec", + "Code": "", + "ICAO": "FEX" + }, + { + "Name": "Flightline", + "Code": "", + "ICAO": "FTL" + }, + { + "Name": "Flightlink", + "Code": "YS", + "ICAO": "FLZ" + }, + { + "Name": "Flightpath Charter Airways", + "Code": "", + "ICAO": "KNT" + }, + { + "Name": "Fltplan", + "Code": "", + "ICAO": "DCM" + }, + { + "Name": "Flugfelag Islands", + "Code": "NY", + "ICAO": "FXI" + }, + { + "Name": "Fly 7", + "Code": "", + "ICAO": "FSF" + }, + { + "Name": "Fly Across", + "Code": "", + "ICAO": "ACW" + }, + { + "Name": "Fly Africa Zimbabwe", + "Code": "ZC", + "ICAO": "FZW" + }, + { + "Name": "Fly Air41", + "Code": "", + "ICAO": "BER" + }, + { + "Name": "Fly AllWays", + "Code": "8W", + "ICAO": "EDR" + }, + { + "Name": "Fly Angola", + "Code": "EQ", + "ICAO": "FLA" + }, + { + "Name": "Fly Armenia Airways", + "Code": "VF", + "ICAO": "FBB" + }, + { + "Name": "Fly Art", + "Code": "T2", + "ICAO": "FLB" + }, + { + "Name": "Fly Baghdad", + "Code": "IF", + "ICAO": "FBA" + }, + { + "Name": "Fly Gangwon", + "Code": "4V", + "ICAO": "FGW" + }, + { + "Name": "Fly Jamaica", + "Code": "OJ", + "ICAO": "FJM" + }, + { + "Name": "Fly Jinnah", + "Code": "", + "ICAO": "FJL" + }, + { + "Name": "Fly Jordan", + "Code": "F0", + "ICAO": "FJR" + }, + { + "Name": "Fly One", + "Code": "5F", + "ICAO": "FIA" + }, + { + "Name": "Fly Oya", + "Code": "YI", + "ICAO": "OYA" + }, + { + "Name": "Fly Pro", + "Code": "FP", + "ICAO": "PVV" + }, + { + "Name": "Fly SAX", + "Code": "", + "ICAO": "EXZ" + }, + { + "Name": "Fly Sky Airlines", + "Code": "", + "ICAO": "FSQ" + }, + { + "Name": "Fly Sky Airlines", + "Code": "", + "ICAO": "FSU" + }, + { + "Name": "Fly Tyrol", + "Code": "", + "ICAO": "FTY" + }, + { + "Name": "Fly2Sky", + "Code": "F6", + "ICAO": "VAW" + }, + { + "Name": "Fly540", + "Code": "5H", + "ICAO": "FFV" + }, + { + "Name": "Flyadeal", + "Code": "F3", + "ICAO": "FAD" + }, + { + "Name": "FlyArna", + "Code": "G6", + "ICAO": "ACY" + }, + { + "Name": "Flybe", + "Code": "BE", + "ICAO": "BEE" + }, + { + "Name": "FlyBig", + "Code": "S9", + "ICAO": "FLG" + }, + { + "Name": "Flybondi", + "Code": "FO", + "ICAO": "FBZ" + }, + { + "Name": "FlyBosnia", + "Code": "6W", + "ICAO": "FBS" + }, + { + "Name": "FlyDamas", + "Code": "4J", + "ICAO": "FDK" + }, + { + "Name": "FlyDubai", + "Code": "FZ", + "ICAO": "FDB" + }, + { + "Name": "FlyEgypt", + "Code": "FT", + "ICAO": "FEG" + }, + { + "Name": "flyExclusive", + "Code": "", + "ICAO": "JRE" + }, + { + "Name": "FlyGTA Airlines", + "Code": "SX", + "ICAO": "TOR" + }, + { + "Name": "Flying Business Aviation", + "Code": "", + "ICAO": "FBX" + }, + { + "Name": "Flying Service", + "Code": "", + "ICAO": "FYG" + }, + { + "Name": "FlyMe", + "Code": "VP", + "ICAO": "VQI" + }, + { + "Name": "FlyMontserrat", + "Code": "5M", + "ICAO": "MNT" + }, + { + "Name": "Flynas", + "Code": "XY", + "ICAO": "KNE" + }, + { + "Name": "FlyOne Armenia", + "Code": "3F", + "ICAO": "FIE" + }, + { + "Name": "FlyPelican", + "Code": "FP", + "ICAO": "FRE" + }, + { + "Name": "Flyr", + "Code": "FS", + "ICAO": "FOX" + }, + { + "Name": "FlySafair", + "Code": "FA", + "ICAO": "SFR" + }, + { + "Name": "FlySchool", + "Code": "", + "ICAO": "FSM" + }, + { + "Name": "FR Aviation", + "Code": "", + "ICAO": "FRA" + }, + { + "Name": "Freebird Airlines", + "Code": "FH", + "ICAO": "FHY" + }, + { + "Name": "Freebird Airlines Europe", + "Code": "MI", + "ICAO": "FHM" + }, + { + "Name": "Freedom Airline Express", + "Code": "4F", + "ICAO": "FDT" + }, + { + "Name": "Freight Runners Express", + "Code": "", + "ICAO": "FRG" + }, + { + "Name": "French Bee", + "Code": "BF", + "ICAO": "FBU" + }, + { + "Name": "Frontier", + "Code": "F9", + "ICAO": "FFT" + }, + { + "Name": "Fuji Dream Airlines", + "Code": "JH", + "ICAO": "FDA" + }, + { + "Name": "Fuzhou Airlines", + "Code": "FU", + "ICAO": "FZA" + }, + { + "Name": "Gama Aviation", + "Code": "", + "ICAO": "GMA" + }, + { + "Name": "Gama Aviation Cayman", + "Code": "", + "ICAO": "GKY" + }, + { + "Name": "Gama Aviation UAE", + "Code": "", + "ICAO": "GSH" + }, + { + "Name": "Garuda Indonesia", + "Code": "GA", + "ICAO": "GIA" + }, + { + "Name": "Gazpromavia", + "Code": "4G", + "ICAO": "GZP" + }, + { + "Name": "General Atomic AeroTech Systems", + "Code": "", + "ICAO": "DOR" + }, + { + "Name": "Genex", + "Code": "", + "ICAO": "GNX" + }, + { + "Name": "Genghis Khan Airlines", + "Code": "9D", + "ICAO": "NMG" + }, + { + "Name": "Geo Sky Airline", + "Code": "", + "ICAO": "GEL" + }, + { + "Name": "Georgian Airlines", + "Code": "GH", + "ICAO": "IGT" + }, + { + "Name": "Georgian Airways", + "Code": "A9", + "ICAO": "TGZ" + }, + { + "Name": "German Airways", + "Code": "ZQ", + "ICAO": "GER" + }, + { + "Name": "Germany - Air Ambulance", + "Code": "", + "ICAO": "CHX" + }, + { + "Name": "Gesellschaft Fur Flugzieldarstellung", + "Code": "", + "ICAO": "GFD" + }, + { + "Name": "Gestair", + "Code": "", + "ICAO": "GES" + }, + { + "Name": "Gestair Aviation Malta", + "Code": "", + "ICAO": "GSM" + }, + { + "Name": "GetJet Airlines", + "Code": "GW", + "ICAO": "GJT" + }, + { + "Name": "Getjet Airlines Latvia", + "Code": "", + "ICAO": "DML" + }, + { + "Name": "Ghadames Air Transport", + "Code": "NJ", + "ICAO": "GMS" + }, + { + "Name": "Global Air Charters", + "Code": "", + "ICAO": "GJE" + }, + { + "Name": "Global Air Transport", + "Code": "5S", + "ICAO": "GAK" + }, + { + "Name": "Global Airways", + "Code": "", + "ICAO": "GBL" + }, + { + "Name": "Global Jet Luxembourg", + "Code": "", + "ICAO": "SVW" + }, + { + "Name": "Global Supply Systems", + "Code": "", + "ICAO": "GSS" + }, + { + "Name": "Global X", + "Code": "G6", + "ICAO": "GXA" + }, + { + "Name": "GlobeAir", + "Code": "", + "ICAO": "GAC" + }, + { + "Name": "Globus", + "Code": "GH", + "ICAO": "GLP" + }, + { + "Name": "Go First", + "Code": "G8", + "ICAO": "GOW" + }, + { + "Name": "GoJet ", + "Code": "G7", + "ICAO": "GJS" + }, + { + "Name": "GOL Linhas Aereas", + "Code": "G3", + "ICAO": "GLO" + }, + { + "Name": "Goldeck Flug", + "Code": "", + "ICAO": "GDK" + }, + { + "Name": "Golden Myanmar Airlines", + "Code": "Y5", + "ICAO": "GMR" + }, + { + "Name": "Gouvernement du Quebec", + "Code": "", + "ICAO": "QUE" + }, + { + "Name": "GP Aviation", + "Code": "IV", + "ICAO": "GPX" + }, + { + "Name": "Grafair", + "Code": "", + "ICAO": "GFM" + }, + { + "Name": "Grand Canyon Airlines", + "Code": "YR", + "ICAO": "CVU" + }, + { + "Name": "Grand China Air", + "Code": "CN", + "ICAO": "GDC" + }, + { + "Name": "Grant Aviation", + "Code": "GV", + "ICAO": "GUN" + }, + { + "Name": "Greater Bay Airlines", + "Code": "HB", + "ICAO": "HGB" + }, + { + "Name": "Green Africa Airways", + "Code": "Q9", + "ICAO": "GWG" + }, + { + "Name": "Greybird Aviation", + "Code": "", + "ICAO": "GAG" + }, + { + "Name": "GTA Air", + "Code": "", + "ICAO": "GTX" + }, + { + "Name": "GTR Infinite Aviation", + "Code": "GH", + "ICAO": "GTR" + }, + { + "Name": "Gulf Air", + "Code": "GF", + "ICAO": "GFA" + }, + { + "Name": "Gulf and Caribbean Cargo", + "Code": "IF", + "ICAO": "TSU" + }, + { + "Name": "Gulf Wings", + "Code": "", + "ICAO": "GWC" + }, + { + "Name": "GullivAir", + "Code": "G2", + "ICAO": "GBG" + }, + { + "Name": "Guna Airlines", + "Code": "", + "ICAO": "GUA" + }, + { + "Name": "GX Airlines", + "Code": "GX", + "ICAO": "CBG" + }, + { + "Name": "Hahn Air", + "Code": "HR", + "ICAO": "HHN" + }, + { + "Name": "Hai Au Aviation", + "Code": "", + "ICAO": "HAI" + }, + { + "Name": "Hainan Airlines", + "Code": "HU", + "ICAO": "CHH" + }, + { + "Name": "Hala Air", + "Code": "HG", + "ICAO": "HTP" + }, + { + "Name": "Hangar 8", + "Code": "", + "ICAO": "HGR" + }, + { + "Name": "Hans Airways", + "Code": "", + "ICAO": "GKS" + }, + { + "Name": "Harmony Jets", + "Code": "", + "ICAO": "HMJ" + }, + { + "Name": "Hawaiian Airlines", + "Code": "HA", + "ICAO": "HAL" + }, + { + "Name": "Hebei Airlines", + "Code": "NS", + "ICAO": "HBH" + }, + { + "Name": "Heli Air Monaco", + "Code": "YO", + "ICAO": "MCM" + }, + { + "Name": "Heli Air Services", + "Code": "", + "ICAO": "HLR" + }, + { + "Name": "Heli Holland", + "Code": "", + "ICAO": "HHE" + }, + { + "Name": "Heli Securite", + "Code": "", + "ICAO": "HLI" + }, + { + "Name": "Heli Service International", + "Code": "", + "ICAO": "HSO" + }, + { + "Name": "Héli-Union", + "Code": "", + "ICAO": "HLU" + }, + { + "Name": "Helicol", + "Code": "", + "ICAO": "HEL" + }, + { + "Name": "Helijet International", + "Code": "", + "ICAO": "JBA" + }, + { + "Name": "Helistar", + "Code": "", + "ICAO": "HTS" + }, + { + "Name": "Helistar", + "Code": "", + "ICAO": "HSR" + }, + { + "Name": "Helitrans", + "Code": "", + "ICAO": "HDR" + }, + { + "Name": "HELITY Copter Airlines", + "Code": "", + "ICAO": "HTY" + }, + { + "Name": "Hello Jets", + "Code": "H3", + "ICAO": "HLJ" + }, + { + "Name": "Helvetic Airways", + "Code": "2L", + "ICAO": "OAW" + }, + { + "Name": "Hera Flight", + "Code": "", + "ICAO": "HER" + }, + { + "Name": "Hermes Airlines", + "Code": "H3", + "ICAO": "HRM" + }, + { + "Name": "Heron Aviation", + "Code": "", + "ICAO": "HRN" + }, + { + "Name": "Heston Airlines", + "Code": "HN", + "ICAO": "HST" + }, + { + "Name": "Hi Air", + "Code": "4H", + "ICAO": "HGG" + }, + { + "Name": "Hi Fly", + "Code": "5K", + "ICAO": "HFY" + }, + { + "Name": "Hi Fly Malta", + "Code": "3L", + "ICAO": "HFM" + }, + { + "Name": "Hibernian Airlines", + "Code": "HG", + "ICAO": "HBN" + }, + { + "Name": "Himalaya Airlines", + "Code": "H9", + "ICAO": "HIM" + }, + { + "Name": "Hinterland Aviation", + "Code": "OI", + "ICAO": "HND" + }, + { + "Name": "HiSky", + "Code": "H7", + "ICAO": "HYM" + }, + { + "Name": "HiSky Europe", + "Code": "H4", + "ICAO": "HYS" + }, + { + "Name": "Hokkaido Air System", + "Code": "", + "ICAO": "NTH" + }, + { + "Name": "Hong Kong Air Cargo", + "Code": "RH", + "ICAO": "HKC" + }, + { + "Name": "Hong Kong Airlines", + "Code": "HX", + "ICAO": "CRK" + }, + { + "Name": "Hong Kong Express", + "Code": "UO", + "ICAO": "HKE" + }, + { + "Name": "Hop-A-Jet", + "Code": "", + "ICAO": "HPJ" + }, + { + "Name": "Horizon Air", + "Code": "QX", + "ICAO": "QXE" + }, + { + "Name": "HTM Helicopter Travel Munich", + "Code": "", + "ICAO": "HTM" + }, + { + "Name": "Hummingbird Aviation", + "Code": "", + "ICAO": "ETI" + }, + { + "Name": "Hunnu Air", + "Code": "MR", + "ICAO": "MML" + }, + { + "Name": "Hydro Quebec", + "Code": "0Q", + "ICAO": "HYD" + }, + { + "Name": "Hyperion Aviation", + "Code": "", + "ICAO": "HYP" + }, + { + "Name": "I-Fly", + "Code": "F7", + "ICAO": "RSY" + }, + { + "Name": "iAero Airways", + "Code": "WQ", + "ICAO": "SWQ" + }, + { + "Name": "IBC Airways", + "Code": "II", + "ICAO": "CSQ" + }, + { + "Name": "Iberia", + "Code": "IB", + "ICAO": "IBE" + }, + { + "Name": "Iberia Express", + "Code": "I2", + "ICAO": "IBS" + }, + { + "Name": "Iberojet", + "Code": "E9", + "ICAO": "EVE" + }, + { + "Name": "Ibex Airlines", + "Code": "FW", + "ICAO": "IBX" + }, + { + "Name": "Ibom Air", + "Code": "QI", + "ICAO": "IAN" + }, + { + "Name": "Icaro", + "Code": "X8", + "ICAO": "ICD" + }, + { + "Name": "Icelandair", + "Code": "FI", + "ICAO": "ICE" + }, + { + "Name": "ICS-Aero", + "Code": "", + "ICAO": "ICF" + }, + { + "Name": "IFL Group", + "Code": "", + "ICAO": "IFL" + }, + { + "Name": "ImperialJet", + "Code": "", + "ICAO": "JTI" + }, + { + "Name": "IndiGo", + "Code": "6E", + "ICAO": "IGO" + }, + { + "Name": "Indonesia AirAsia", + "Code": "QZ", + "ICAO": "AWQ" + }, + { + "Name": "iNTAIRLINE", + "Code": "", + "ICAO": "ITI" + }, + { + "Name": "Intel Air Shuttle", + "Code": "", + "ICAO": "HGT" + }, + { + "Name": "InterCaribbean Airways", + "Code": "JY", + "ICAO": "IWY" + }, + { + "Name": "InterJet West", + "Code": "K8", + "ICAO": "IJW" + }, + { + "Name": "International Committee of the Red Cross", + "Code": "", + "ICAO": "RED" + }, + { + "Name": "International Jet Management", + "Code": "", + "ICAO": "IJM" + }, + { + "Name": "InterSky", + "Code": "3L", + "ICAO": "ISK" + }, + { + "Name": "IrAero", + "Code": "IO", + "ICAO": "IAE" + }, + { + "Name": "Iran Air", + "Code": "IR", + "ICAO": "IRA" + }, + { + "Name": "Iran Airtour", + "Code": "B9", + "ICAO": "IRB" + }, + { + "Name": "Iran Aseman Airlines", + "Code": "EP", + "ICAO": "IRC" + }, + { + "Name": "Iraq Gate Company", + "Code": "", + "ICAO": "IGC" + }, + { + "Name": "Iraqi Airways", + "Code": "IA", + "ICAO": "IAW" + }, + { + "Name": "IRS Airlines", + "Code": "", + "ICAO": "LVB" + }, + { + "Name": "Israir Airlines", + "Code": "6H", + "ICAO": "ISR" + }, + { + "Name": "ITA Airways", + "Code": "AZ", + "ICAO": "ITY" + }, + { + "Name": "Italfly", + "Code": "", + "ICAO": "ITL" + }, + { + "Name": "iXAir", + "Code": "", + "ICAO": "IXR" + }, + { + "Name": "Izair", + "Code": "4I", + "ICAO": "IZM" + }, + { + "Name": "Izhavia", + "Code": "I8", + "ICAO": "IZA" + }, + { + "Name": "JA Air Charter", + "Code": "", + "ICAO": "LTD" + }, + { + "Name": "JAL Express", + "Code": "JC", + "ICAO": "JEX" + }, + { + "Name": "Jambojet", + "Code": "JM", + "ICAO": "JMA" + }, + { + "Name": "Japan Air Commuter", + "Code": "3X", + "ICAO": "JAC" + }, + { + "Name": "Japan Airlines", + "Code": "JL", + "ICAO": "JAL" + }, + { + "Name": "Japan Transocean Air", + "Code": "NU", + "ICAO": "JTA" + }, + { + "Name": "Jasmin Airways", + "Code": "JO", + "ICAO": "JAW" + }, + { + "Name": "Jazeera Airways", + "Code": "J9", + "ICAO": "JZR" + }, + { + "Name": "Jazz Aviation", + "Code": "QK", + "ICAO": "JZA" + }, + { + "Name": "JC Airlines", + "Code": "QD", + "ICAO": "JCC" + }, + { + "Name": "JC Bamford Excavators", + "Code": "", + "ICAO": "JCB" + }, + { + "Name": "Jeju Air", + "Code": "7C", + "ICAO": "JJA" + }, + { + "Name": "Jet Airways", + "Code": "9W", + "ICAO": "JAI" + }, + { + "Name": "Jet Asia Airways", + "Code": "JF", + "ICAO": "JAA" + }, + { + "Name": "Jet Aviation Business Jets", + "Code": "PP", + "ICAO": "PJS" + }, + { + "Name": "Jet Aviation Flight Services", + "Code": "", + "ICAO": "JAS" + }, + { + "Name": "Jet Charter", + "Code": "N2", + "ICAO": "JCT" + }, + { + "Name": "Jet Edge", + "Code": "", + "ICAO": "EDG" + }, + { + "Name": "Jet Executive", + "Code": "", + "ICAO": "JEI" + }, + { + "Name": "Jet Express", + "Code": "", + "ICAO": "RFE" + }, + { + "Name": "Jet Fly Airline", + "Code": "", + "ICAO": "JFL" + }, + { + "Name": "Jet It", + "Code": "", + "ICAO": "JIT" + }, + { + "Name": "Jet Linx Aviation", + "Code": "", + "ICAO": "JTL" + }, + { + "Name": "Jet Logistics", + "Code": "", + "ICAO": "JLG" + }, + { + "Name": "Jet Story", + "Code": "", + "ICAO": "JDI" + }, + { + "Name": "Jet Test International", + "Code": "", + "ICAO": "JTN" + }, + { + "Name": "Jet2", + "Code": "LS", + "ICAO": "EXS" + }, + { + "Name": "Jetair Caribbean", + "Code": "4J", + "ICAO": "JRC" + }, + { + "Name": "Jetalliance East", + "Code": "", + "ICAO": "PLS" + }, + { + "Name": "Jetbee Czech", + "Code": "", + "ICAO": "JBC" + }, + { + "Name": "JetBlue Airways", + "Code": "B6", + "ICAO": "JBU" + }, + { + "Name": "Jetcall", + "Code": "", + "ICAO": "JCL" + }, + { + "Name": "Jetclub", + "Code": "0J", + "ICAO": "JCS" + }, + { + "Name": "Jetconnect", + "Code": "", + "ICAO": "QNZ" + }, + { + "Name": "JetFlite", + "Code": "", + "ICAO": "JEF" + }, + { + "Name": "Jetfly Aviation", + "Code": "", + "ICAO": "JFA" + }, + { + "Name": "Jetkontor", + "Code": "", + "ICAO": "JKH" + }, + { + "Name": "jetlines", + "Code": "AU", + "ICAO": "CJL" + }, + { + "Name": "JetLite", + "Code": "S2", + "ICAO": "JLL" + }, + { + "Name": "JetNetherlands", + "Code": "", + "ICAO": "JNL" + }, + { + "Name": "JetRight", + "Code": "", + "ICAO": "JRT" + }, + { + "Name": "JetSMART", + "Code": "JA", + "ICAO": "JAT" + }, + { + "Name": "JetSMART Argentina", + "Code": "WJ", + "ICAO": "JES" + }, + { + "Name": "JetSMART Peru", + "Code": "JZ", + "ICAO": "JAP" + }, + { + "Name": "Jetstar", + "Code": "JQ", + "ICAO": "JST" + }, + { + "Name": "Jetstar Asia", + "Code": "3K", + "ICAO": "JSA" + }, + { + "Name": "Jetstar Japan", + "Code": "GK", + "ICAO": "JJP" + }, + { + "Name": "JetStream", + "Code": "", + "ICAO": "JSH" + }, + { + "Name": "JetStream Charter", + "Code": "", + "ICAO": "VTB" + }, + { + "Name": "Jetsuite Air", + "Code": "", + "ICAO": "RSP" + }, + { + "Name": "Jettime", + "Code": "", + "ICAO": "JTD" + }, + { + "Name": "Jetways Airlines", + "Code": "WU", + "ICAO": "JWX" + }, + { + "Name": "Jhonlin Air Transport", + "Code": "", + "ICAO": "JLB" + }, + { + "Name": "Jiangsu Jingdong Cargo Airlines", + "Code": "JG", + "ICAO": "JDL" + }, + { + "Name": "Jiangxi Air", + "Code": "RY", + "ICAO": "CJX" + }, + { + "Name": "Jiangxi Express Commuter Aviation", + "Code": "", + "ICAO": "KXA" + }, + { + "Name": "Jin Air", + "Code": "LJ", + "ICAO": "JNA" + }, + { + "Name": "Jinxiang Airlines", + "Code": "", + "ICAO": "JXX" + }, + { + "Name": "Jivair", + "Code": "", + "ICAO": "JIV" + }, + { + "Name": "Jonair", + "Code": "", + "ICAO": "JON" + }, + { + "Name": "Jonika", + "Code": "", + "ICAO": "JNK" + }, + { + "Name": "Jordan Aviation", + "Code": "R5", + "ICAO": "JAV" + }, + { + "Name": "Jordan International Air Cargo", + "Code": "", + "ICAO": "JCI" + }, + { + "Name": "JoyAir", + "Code": "JR", + "ICAO": "JOY" + }, + { + "Name": "JSX", + "Code": "XE", + "ICAO": "JSX" + }, + { + "Name": "Jubba Airways", + "Code": "3J", + "ICAO": "JBW" + }, + { + "Name": "Jump Air", + "Code": "", + "ICAO": "JUP" + }, + { + "Name": "Juneyao Air", + "Code": "HO", + "ICAO": "DKH" + }, + { + "Name": "Jung Sky", + "Code": "", + "ICAO": "JSY" + }, + { + "Name": "K-Mile Air", + "Code": "8K", + "ICAO": "KMI" + }, + { + "Name": "K5-Aviation Germany", + "Code": "", + "ICAO": "KAY" + }, + { + "Name": "KaiserAir", + "Code": "", + "ICAO": "KAI" + }, + { + "Name": "Kalitta Air", + "Code": "K4", + "ICAO": "CKS" + }, + { + "Name": "Kalitta Charters", + "Code": "K9", + "ICAO": "KFS" + }, + { + "Name": "Kalitta Charters II", + "Code": "K5", + "ICAO": "KII" + }, + { + "Name": "Kam Air", + "Code": "RQ", + "ICAO": "KMF" + }, + { + "Name": "Kamaka Air", + "Code": "", + "ICAO": "KMK" + }, + { + "Name": "Kan Air", + "Code": "K8", + "ICAO": "KND" + }, + { + "Name": "KAP.kg", + "Code": "AB", + "ICAO": "KGS" + }, + { + "Name": "Kargo Xpress", + "Code": "WW", + "ICAO": "KXP" + }, + { + "Name": "Kartika Airlines", + "Code": "3Y", + "ICAO": "KAE" + }, + { + "Name": "Karun Airlines", + "Code": "", + "ICAO": "KRU" + }, + { + "Name": "KD Air", + "Code": "", + "ICAO": "KDC" + }, + { + "Name": "Keewatin Air", + "Code": "FK", + "ICAO": "KEW" + }, + { + "Name": "Kelowna Flightcraft Air", + "Code": "FK", + "ICAO": "KFA" + }, + { + "Name": "Kenmore Air", + "Code": "M5", + "ICAO": "KEN" + }, + { + "Name": "Kenn Borek Air", + "Code": "4K", + "ICAO": "KBA" + }, + { + "Name": "Kenya Airways", + "Code": "KQ", + "ICAO": "KQA" + }, + { + "Name": "Key Air", + "Code": "", + "ICAO": "KEY" + }, + { + "Name": "Key Lime Air", + "Code": "KG", + "ICAO": "LYM" + }, + { + "Name": "Keystone Air Service", + "Code": "", + "ICAO": "KEE" + }, + { + "Name": "KhabAvia", + "Code": "", + "ICAO": "KHF" + }, + { + "Name": "Khors Air", + "Code": "", + "ICAO": "KHO" + }, + { + "Name": "Kish Air", + "Code": "", + "ICAO": "KIS" + }, + { + "Name": "KlasJet", + "Code": "", + "ICAO": "KLJ" + }, + { + "Name": "KLM", + "Code": "KL", + "ICAO": "KLM" + }, + { + "Name": "KLM Cityhopper", + "Code": "WA", + "ICAO": "KLC" + }, + { + "Name": "KN Helicopters", + "Code": "", + "ICAO": "SHW" + }, + { + "Name": "Komiaviatrans", + "Code": "KO", + "ICAO": "KMA" + }, + { + "Name": "Korean Air", + "Code": "KE", + "ICAO": "KAL" + }, + { + "Name": "Kosmos Airlines", + "Code": "", + "ICAO": "KSM" + }, + { + "Name": "Krasavia", + "Code": "KI", + "ICAO": "SSJ" + }, + { + "Name": "Kudlik Aviation", + "Code": "", + "ICAO": "KUK" + }, + { + "Name": "Kunming Airlines", + "Code": "KY", + "ICAO": "KNA" + }, + { + "Name": "Kuwait Airways", + "Code": "KU", + "ICAO": "KAC" + }, + { + "Name": "La Compagnie", + "Code": "B0", + "ICAO": "DJT" + }, + { + "Name": "La Costena", + "Code": "", + "ICAO": "NIS" + }, + { + "Name": "Labcorp", + "Code": "", + "ICAO": "SKQ" + }, + { + "Name": "LADE", + "Code": "5U", + "ICAO": "LDE" + }, + { + "Name": "LAM", + "Code": "TM", + "ICAO": "LAM" + }, + { + "Name": "Lanmei Airlines", + "Code": "LQ", + "ICAO": "MKR" + }, + { + "Name": "Lao Airlines", + "Code": "QV", + "ICAO": "LAO" + }, + { + "Name": "Lao Skyway", + "Code": "LK", + "ICAO": "LLL" + }, + { + "Name": "LAS Cargo", + "Code": "4L", + "ICAO": "LAU" + }, + { + "Name": "Laser Airlines", + "Code": "QL", + "ICAO": "LER" + }, + { + "Name": "LATAM Airlines", + "Code": "LA", + "ICAO": "LAN" + }, + { + "Name": "LATAM Brasil", + "Code": "JJ", + "ICAO": "TAM" + }, + { + "Name": "LATAM Cargo", + "Code": "UC", + "ICAO": "LCO" + }, + { + "Name": "LATAM Cargo Brasil", + "Code": "M3", + "ICAO": "LTG" + }, + { + "Name": "LATAM Cargo Colombia", + "Code": "L7", + "ICAO": "LAE" + }, + { + "Name": "LATAM Chile", + "Code": "LU", + "ICAO": "LXP" + }, + { + "Name": "LATAM Colombia", + "Code": "4C", + "ICAO": "ARE" + }, + { + "Name": "LATAM Ecuador", + "Code": "XL", + "ICAO": "LNE" + }, + { + "Name": "LATAM Paraguay", + "Code": "PZ", + "ICAO": "LAP" + }, + { + "Name": "LATAM Peru", + "Code": "LP", + "ICAO": "LPE" + }, + { + "Name": "Lauda Europe", + "Code": "LW", + "ICAO": "LDA" + }, + { + "Name": "LC Peru", + "Code": "W4", + "ICAO": "LCB" + }, + { + "Name": "Leader", + "Code": "", + "ICAO": "LSA" + }, + { + "Name": "Leav Aviation", + "Code": "KK", + "ICAO": "NGN" + }, + { + "Name": "Legacy Airways", + "Code": "", + "ICAO": "LGF" + }, + { + "Name": "Legend Airlines", + "Code": "", + "ICAO": "LAL" + }, + { + "Name": "Legends Airways", + "Code": "", + "ICAO": "DVY" + }, + { + "Name": "LIAT", + "Code": "LI", + "ICAO": "LIA" + }, + { + "Name": "Libyan Airlines", + "Code": "LN", + "ICAO": "LAA" + }, + { + "Name": "Libyan Wings", + "Code": "YL", + "ICAO": "LWA" + }, + { + "Name": "Liebherr Aerospace", + "Code": "", + "ICAO": "LHB" + }, + { + "Name": "Lift", + "Code": "GE", + "ICAO": "GBB" + }, + { + "Name": "Limitless Airways", + "Code": "", + "ICAO": "LIM" + }, + { + "Name": "Línea Turística Aereotuy", + "Code": "", + "ICAO": "TUY" + }, + { + "Name": "Lion Air", + "Code": "JT", + "ICAO": "LNI" + }, + { + "Name": "Lipican Aer", + "Code": "", + "ICAO": "LIP" + }, + { + "Name": "LLC H3Operations", + "Code": "", + "ICAO": "UHO" + }, + { + "Name": "Loganair", + "Code": "LM", + "ICAO": "LOG" + }, + { + "Name": "LongJiang Airlines", + "Code": "LT", + "ICAO": "SNG" + }, + { + "Name": "Longtail Aviation", + "Code": "6T", + "ICAO": "LGT" + }, + { + "Name": "Loong Air", + "Code": "GJ", + "ICAO": "CDC" + }, + { + "Name": "LOT", + "Code": "LO", + "ICAO": "LOT" + }, + { + "Name": "Lucky Air", + "Code": "8L", + "ICAO": "LKE" + }, + { + "Name": "Lufthansa", + "Code": "LH", + "ICAO": "DLH" + }, + { + "Name": "Lufthansa Cargo", + "Code": "", + "ICAO": "GEC" + }, + { + "Name": "Lufthansa CityLine", + "Code": "CL", + "ICAO": "CLH" + }, + { + "Name": "Lufttransport", + "Code": "", + "ICAO": "LTR" + }, + { + "Name": "Lunds Universitet", + "Code": "", + "ICAO": "UNY" + }, + { + "Name": "Luxair", + "Code": "LG", + "ICAO": "LGL" + }, + { + "Name": "Luxaviation", + "Code": "", + "ICAO": "LXA" + }, + { + "Name": "Luxaviation Belgium", + "Code": "", + "ICAO": "AAB" + }, + { + "Name": "Luxaviation E.A", + "Code": "", + "ICAO": "LMJ" + }, + { + "Name": "Luxaviation Germany", + "Code": "", + "ICAO": "LXG" + }, + { + "Name": "Luxaviation UK", + "Code": "", + "ICAO": "LNX" + }, + { + "Name": "Luxembourg Air Ambulance", + "Code": "", + "ICAO": "LRQ" + }, + { + "Name": "Luxwing", + "Code": "BN", + "ICAO": "LWG" + }, + { + "Name": "Lydd Air", + "Code": "", + "ICAO": "LYD" + }, + { + "Name": "Lynden Air Cargo", + "Code": "L2", + "ICAO": "LYC" + }, + { + "Name": "Lynx Air", + "Code": "Y9", + "ICAO": "DAT" + }, + { + "Name": "MAE Aircraft Management", + "Code": "MA", + "ICAO": "MEN" + }, + { + "Name": "Maersk Air Cargo", + "Code": "DJ", + "ICAO": "SRR" + }, + { + "Name": "Magnicharters", + "Code": "UJ", + "ICAO": "GMT" + }, + { + "Name": "Mahan Air", + "Code": "W5", + "ICAO": "IRM" + }, + { + "Name": "Makers Air", + "Code": "", + "ICAO": "WMA" + }, + { + "Name": "Malawian Airlines", + "Code": "3W", + "ICAO": "MWI" + }, + { + "Name": "Malaysia Airlines", + "Code": "MH", + "ICAO": "MAS" + }, + { + "Name": "Maldivian", + "Code": "Q2", + "ICAO": "DQA" + }, + { + "Name": "Maleth-Aero", + "Code": "DB", + "ICAO": "MLT" + }, + { + "Name": "Mali Air", + "Code": "", + "ICAO": "MAE" + }, + { + "Name": "Malta Air", + "Code": "", + "ICAO": "MAY" + }, + { + "Name": "Malta MedAir", + "Code": "MT", + "ICAO": "MMO" + }, + { + "Name": "Manasik Aviation", + "Code": "", + "ICAO": "MNM" + }, + { + "Name": "Mandarin Airlines", + "Code": "AE", + "ICAO": "MDA" + }, + { + "Name": "Mann Yadanarpon Airlines", + "Code": "7Y", + "ICAO": "MYP" + }, + { + "Name": "Manta Air", + "Code": "NR", + "ICAO": "MAV" + }, + { + "Name": "Map Linhas Aereas", + "Code": "7M", + "ICAO": "PAM" + }, + { + "Name": "Marathon Airlines", + "Code": "", + "ICAO": "MTO" + }, + { + "Name": "Martinair Holland", + "Code": "MP", + "ICAO": "MPH" + }, + { + "Name": "Martinaire", + "Code": "", + "ICAO": "MRA" + }, + { + "Name": "MasAir Cargo Airline", + "Code": "M7", + "ICAO": "MAA" + }, + { + "Name": "MASwings", + "Code": "MY", + "ICAO": "MWG" + }, + { + "Name": "Mauritania Airlines International", + "Code": "L6", + "ICAO": "MAI" + }, + { + "Name": "Mavi Gok Aviation", + "Code": "4M", + "ICAO": "MGH" + }, + { + "Name": "Max Air", + "Code": "VM", + "ICAO": "NGL" + }, + { + "Name": "Max Aviation", + "Code": "", + "ICAO": "MAX" + }, + { + "Name": "Maxair", + "Code": "", + "ICAO": "NTW" + }, + { + "Name": "Maximus Airlines", + "Code": "6M", + "ICAO": "MXM" + }, + { + "Name": "Maya Island Air", + "Code": "2M", + "ICAO": "MYD" + }, + { + "Name": "MAYAir", + "Code": "7M", + "ICAO": "MYI" + }, + { + "Name": "McCall Aviation", + "Code": "", + "ICAO": "MKL" + }, + { + "Name": "McNeely Charter Services", + "Code": "", + "ICAO": "MDS" + }, + { + "Name": "MEA", + "Code": "ME", + "ICAO": "MEA" + }, + { + "Name": "Med-View Airline", + "Code": "VL", + "ICAO": "MEV" + }, + { + "Name": "Medavia", + "Code": "", + "ICAO": "MDM" + }, + { + "Name": "Mel Air", + "Code": "5M", + "ICAO": "MDO" + }, + { + "Name": "Meraj Airlines", + "Code": "", + "ICAO": "MRJ" + }, + { + "Name": "Mercury Air Cargo", + "Code": "4X", + "ICAO": "MEC" + }, + { + "Name": "Meridian", + "Code": "", + "ICAO": "MEM" + }, + { + "Name": "Meridian Air Company", + "Code": "", + "ICAO": "MMM" + }, + { + "Name": "Mesa Airlines", + "Code": "YV", + "ICAO": "ASH" + }, + { + "Name": "MHS Aviation", + "Code": "M2", + "ICAO": "MHV" + }, + { + "Name": "Miami Air International", + "Code": "LL", + "ICAO": "BSK" + }, + { + "Name": "Miami Air Lease", + "Code": "", + "ICAO": "MGD" + }, + { + "Name": "MIAT Mongolian Airlines", + "Code": "OM", + "ICAO": "MGL" + }, + { + "Name": "Mid Africa Aviation", + "Code": "", + "ICAO": "MFG" + }, + { + "Name": "Midwest Aviation", + "Code": "", + "ICAO": "DZR" + }, + { + "Name": "Midwest Aviation Division", + "Code": "", + "ICAO": "MWT" + }, + { + "Name": "MJet", + "Code": "", + "ICAO": "MJF" + }, + { + "Name": "MNG Airlines", + "Code": "MB", + "ICAO": "MNB" + }, + { + "Name": "Moçambique Expresso", + "Code": "", + "ICAO": "MXE" + }, + { + "Name": "Modern Logistics", + "Code": "WD", + "ICAO": "MWM" + }, + { + "Name": "Monacair", + "Code": "QM", + "ICAO": "MCR" + }, + { + "Name": "Morningstar Air Express", + "Code": "", + "ICAO": "MAL" + }, + { + "Name": "Motor Sich Airlines", + "Code": "M9", + "ICAO": "MSI" + }, + { + "Name": "Mount Cook Airline", + "Code": "NM", + "ICAO": "NZM" + }, + { + "Name": "Mountain Air Cargo", + "Code": "C2", + "ICAO": "MTN" + }, + { + "Name": "Mountain Aviation", + "Code": "", + "ICAO": "FTH" + }, + { + "Name": "Mountain Flyers", + "Code": "", + "ICAO": "MFB" + }, + { + "Name": "Move", + "Code": "", + "ICAO": "MVE" + }, + { + "Name": "Multiflight", + "Code": "", + "ICAO": "MFT" + }, + { + "Name": "My Indo Airlines", + "Code": "2Y", + "ICAO": "MYU" + }, + { + "Name": "My Jet Saver", + "Code": "", + "ICAO": "MJS" + }, + { + "Name": "MY Jet Xpress Airlines", + "Code": "N7", + "ICAO": "NEP" + }, + { + "Name": "Myanmar Airways International", + "Code": "8M", + "ICAO": "MMA" + }, + { + "Name": "Myanmar National Airlines", + "Code": "UB", + "ICAO": "UBA" + }, + { + "Name": "MyWay Airlines", + "Code": "MJ", + "ICAO": "MYW" + }, + { + "Name": "Naljets Limited", + "Code": "", + "ICAO": "APX" + }, + { + "Name": "Nam Air", + "Code": "IN", + "ICAO": "LKN" + }, + { + "Name": "Nantucket Airlines", + "Code": "", + "ICAO": "ACK" + }, + { + "Name": "National Air Charters", + "Code": "JY", + "ICAO": "JYA" + }, + { + "Name": "National Airlines", + "Code": "N8", + "ICAO": "NCR" + }, + { + "Name": "National Airways", + "Code": "", + "ICAO": "NAE" + }, + { + "Name": "National Airways Corporation", + "Code": "", + "ICAO": "NTN" + }, + { + "Name": "National Jet Systems", + "Code": "", + "ICAO": "QJE" + }, + { + "Name": "Nauru Airlines", + "Code": "ON", + "ICAO": "RON" + }, + { + "Name": "Naysa", + "Code": "ZN", + "ICAO": "NAY" + }, + { + "Name": "Neos", + "Code": "NO", + "ICAO": "NOS" + }, + { + "Name": "Nepal Airlines", + "Code": "RA", + "ICAO": "RNA" + }, + { + "Name": "Nesma Airlines", + "Code": "NE", + "ICAO": "NMA" + }, + { + "Name": "NetJets", + "Code": "1I", + "ICAO": "EJA" + }, + { + "Name": "NetJets Europe", + "Code": "", + "ICAO": "NJE" + }, + { + "Name": "Netjets UK", + "Code": "", + "ICAO": "NJU" + }, + { + "Name": "Network Aviation", + "Code": "", + "ICAO": "NWK" + }, + { + "Name": "New England Airlines", + "Code": "EJ", + "ICAO": "NEA" + }, + { + "Name": "New England Patriots", + "Code": "", + "ICAO": "UDG" + }, + { + "Name": "NHC Northern Helicopter", + "Code": "", + "ICAO": "NHC" + }, + { + "Name": "NHV", + "Code": "", + "ICAO": "NHD" + }, + { + "Name": "NHV Helicopters", + "Code": "", + "ICAO": "NHZ" + }, + { + "Name": "Nicholas Air", + "Code": "", + "ICAO": "JTZ" + }, + { + "Name": "NightExpress", + "Code": "", + "ICAO": "EXT" + }, + { + "Name": "Nile Air", + "Code": "NP", + "ICAO": "NIA" + }, + { + "Name": "Nippon Cargo Airlines", + "Code": "KZ", + "ICAO": "NCA" + }, + { + "Name": "Nok Air", + "Code": "DD", + "ICAO": "NOK" + }, + { + "Name": "Nolinor Aviation", + "Code": "N5", + "ICAO": "NRL" + }, + { + "Name": "Nomad Aviation", + "Code": "", + "ICAO": "NUM" + }, + { + "Name": "Nomadic Aviation", + "Code": "", + "ICAO": "OMD" + }, + { + "Name": "Noordzee Helikopters Vlaanderen", + "Code": "", + "ICAO": "NHX" + }, + { + "Name": "Nordic Unmanned", + "Code": "", + "ICAO": "NOU" + }, + { + "Name": "Nordica", + "Code": "ND", + "ICAO": "NDA" + }, + { + "Name": "NordStar", + "Code": "Y7", + "ICAO": "TYA" + }, + { + "Name": "Nordwind Airlines", + "Code": "N4", + "ICAO": "NWS" + }, + { + "Name": "Norlandair", + "Code": "", + "ICAO": "FNA" + }, + { + "Name": "NORRA", + "Code": "N7", + "ICAO": "FCM" + }, + { + "Name": "Norse Atlantic Airways", + "Code": "N0", + "ICAO": "NBT" + }, + { + "Name": "Norse Atlantic UK", + "Code": "", + "ICAO": "UBT" + }, + { + "Name": "Norsk Luftambulanse", + "Code": "", + "ICAO": "DOC" + }, + { + "Name": "North Cariboo Air", + "Code": "", + "ICAO": "NCB" + }, + { + "Name": "North Central", + "Code": "", + "ICAO": "NCJ" + }, + { + "Name": "North Flying", + "Code": "", + "ICAO": "NFA" + }, + { + "Name": "North Pole Parcel Service", + "Code": "", + "ICAO": "R3D" + }, + { + "Name": "North Star Aviation", + "Code": "", + "ICAO": "MVK" + }, + { + "Name": "North-West Air Company", + "Code": "0E", + "ICAO": "NWC" + }, + { + "Name": "North-Western Cargo International Airlines", + "Code": "CO", + "ICAO": "CNW" + }, + { + "Name": "North-Wright Airways", + "Code": "HW", + "ICAO": "NWL" + }, + { + "Name": "Northeastern Aviation Corporation", + "Code": "", + "ICAO": "NEW" + }, + { + "Name": "Northern Air", + "Code": "", + "ICAO": "NLI" + }, + { + "Name": "Northern Air Cargo", + "Code": "NC", + "ICAO": "NAC" + }, + { + "Name": "Northern Jet Management", + "Code": "", + "ICAO": "NJM" + }, + { + "Name": "Northern Thunderbird Air", + "Code": "", + "ICAO": "NTA" + }, + { + "Name": "Northway Aviation", + "Code": "", + "ICAO": "NAL" + }, + { + "Name": "Northwest Flyers", + "Code": "", + "ICAO": "NWF" + }, + { + "Name": "Northwestern Air", + "Code": "J3", + "ICAO": "PLR" + }, + { + "Name": "Norwegian", + "Code": "", + "ICAO": "NAX" + }, + { + "Name": "Norwegian Air Shuttle AOC", + "Code": "DY", + "ICAO": "NOZ" + }, + { + "Name": "Norwegian Air Sweden AOC", + "Code": "D8", + "ICAO": "NSZ" + }, + { + "Name": "Nouvelair Tunisie", + "Code": "BJ", + "ICAO": "LBT" + }, + { + "Name": "Nova Airways", + "Code": "", + "ICAO": "NOV" + }, + { + "Name": "Novair", + "Code": "NG", + "ICAO": "NAI" + }, + { + "Name": "Novair", + "Code": "N9", + "ICAO": "NVR" + }, + { + "Name": "NovaJet", + "Code": "", + "ICAO": "NOJ" + }, + { + "Name": "Novoair", + "Code": "VQ", + "ICAO": "NVQ" + }, + { + "Name": "Nxt Jet", + "Code": "", + "ICAO": "KPO" + }, + { + "Name": "Nyxair", + "Code": "OJ", + "ICAO": "NYX" + }, + { + "Name": "OK Aviation Group", + "Code": "", + "ICAO": "NTF" + }, + { + "Name": "Okay Airways", + "Code": "BK", + "ICAO": "OKA" + }, + { + "Name": "Olympic Air", + "Code": "OA", + "ICAO": "OAL" + }, + { + "Name": "Olympus Airways", + "Code": "", + "ICAO": "OLY" + }, + { + "Name": "Oman Air", + "Code": "WY", + "ICAO": "OMA" + }, + { + "Name": "Omni Air International", + "Code": "OY", + "ICAO": "OAE" + }, + { + "Name": "Omni Air Transport", + "Code": "", + "ICAO": "DRL" + }, + { + "Name": "Omni Aviation", + "Code": "", + "ICAO": "OAV" + }, + { + "Name": "Omni Taxi Aereo", + "Code": "", + "ICAO": "OMI" + }, + { + "Name": "One Air", + "Code": "", + "ICAO": "HGO" + }, + { + "Name": "One Airways", + "Code": "OX", + "ICAO": "OEW" + }, + { + "Name": "Open Skies", + "Code": "LV", + "ICAO": "BOS" + }, + { + "Name": "Orbest", + "Code": "6O", + "ICAO": "OBS" + }, + { + "Name": "Orenburzhye", + "Code": "O7", + "ICAO": "ORG" + }, + { + "Name": "Oriental Air Bridge", + "Code": "OC", + "ICAO": "ORC" + }, + { + "Name": "Origin Air", + "Code": "OG", + "ICAO": "OGN" + }, + { + "Name": "Ornge Air", + "Code": "", + "ICAO": "PUL" + }, + { + "Name": "Oscar Jet", + "Code": "", + "ICAO": "OSJ" + }, + { + "Name": "OSM Aviation Academy", + "Code": "", + "ICAO": "SCQ" + }, + { + "Name": "OTT Airlines", + "Code": "JF", + "ICAO": "OTT" + }, + { + "Name": "Overland Airways", + "Code": "OF", + "ICAO": "OLA" + }, + { + "Name": "Oxford Aviation Academy", + "Code": "", + "ICAO": "OXF" + }, + { + "Name": "Oyonnair", + "Code": "", + "ICAO": "OYO" + }, + { + "Name": "Paccair", + "Code": "", + "ICAO": "WIS" + }, + { + "Name": "Pacific Airlines", + "Code": "BL", + "ICAO": "PIC" + }, + { + "Name": "Pacific Coast Jet", + "Code": "", + "ICAO": "PXT" + }, + { + "Name": "Pacific Coastal Airlines", + "Code": "8P", + "ICAO": "PCO" + }, + { + "Name": "PADAviation", + "Code": "", + "ICAO": "PVD" + }, + { + "Name": "Pakistan International Airlines", + "Code": "PK", + "ICAO": "PIA" + }, + { + "Name": "PAL Aerospace", + "Code": "", + "ICAO": "SPR" + }, + { + "Name": "PAL Airlines", + "Code": "PB", + "ICAO": "PVL" + }, + { + "Name": "PAL Express", + "Code": "2P", + "ICAO": "GAP" + }, + { + "Name": "Palau Express Airlines", + "Code": "P9", + "ICAO": "PXC" + }, + { + "Name": "Palau National Airlines", + "Code": "4L", + "ICAO": "PNA" + }, + { + "Name": "Pan American Airways", + "Code": "PN", + "ICAO": "PAA" + }, + { + "Name": "Pan Europeenne Air Service", + "Code": "", + "ICAO": "PEA" + }, + { + "Name": "Pan Pacific Airlines", + "Code": "8Y", + "ICAO": "AAV" + }, + { + "Name": "Panaviatic", + "Code": "", + "ICAO": "VPC" + }, + { + "Name": "Panellenic Airlines", + "Code": "", + "ICAO": "RJB" + }, + { + "Name": "Panorama Aviation", + "Code": "", + "ICAO": "PNO" + }, + { + "Name": "Paranair", + "Code": "ZP", + "ICAO": "AZP" + }, + { + "Name": "Pascan Aviation", + "Code": "P6", + "ICAO": "PSC" + }, + { + "Name": "PassionAir", + "Code": "OP", + "ICAO": "DIG" + }, + { + "Name": "Patient Airlift Services", + "Code": "", + "ICAO": "PLZ" + }, + { + "Name": "Patria Pilot Training", + "Code": "", + "ICAO": "PPT" + }, + { + "Name": "PAWA Dominicana", + "Code": "7N", + "ICAO": "PWD" + }, + { + "Name": "Peach", + "Code": "MM", + "ICAO": "APJ" + }, + { + "Name": "Pegas Fly", + "Code": "EO", + "ICAO": "KAR" + }, + { + "Name": "Pegasus Airlines", + "Code": "PC", + "ICAO": "PGT" + }, + { + "Name": "Pegasus Elite Aviation", + "Code": "", + "ICAO": "PEG" + }, + { + "Name": "Pel-Air", + "Code": "", + "ICAO": "PFY" + }, + { + "Name": "Pelita Air", + "Code": "IP", + "ICAO": "PAS" + }, + { + "Name": "People's", + "Code": "PE", + "ICAO": "PEV" + }, + { + "Name": "Perimeter Aviation", + "Code": "YP", + "ICAO": "PAG" + }, + { + "Name": "Petroleum Air Service", + "Code": "UF", + "ICAO": "PER" + }, + { + "Name": "Petropavlovsk-Kamchatsky Air", + "Code": "", + "ICAO": "PTK" + }, + { + "Name": "PHI", + "Code": "", + "ICAO": "PHM" + }, + { + "Name": "Philippine Airlines", + "Code": "PR", + "ICAO": "PAL" + }, + { + "Name": "Philippines AirAsia", + "Code": "Z2", + "ICAO": "APG" + }, + { + "Name": "Phoenix Air", + "Code": "PH", + "ICAO": "GRB" + }, + { + "Name": "Piedmont Airlines", + "Code": "PT", + "ICAO": "PDT" + }, + { + "Name": "Pilatus Flugzeugwerke", + "Code": "", + "ICAO": "PCH" + }, + { + "Name": "Pilot Flight Academy", + "Code": "", + "ICAO": "PIP" + }, + { + "Name": "Pineapple Air", + "Code": "", + "ICAO": "PNP" + }, + { + "Name": "Pink Sparrow", + "Code": "", + "ICAO": "SOW" + }, + { + "Name": "Pionair Australia", + "Code": "", + "ICAO": "SFZ" + }, + { + "Name": "Pivot Airlines", + "Code": "ZX", + "ICAO": "GGN" + }, + { + "Name": "PixAir Survey", + "Code": "", + "ICAO": "PXR" + }, + { + "Name": "Planemaster Services", + "Code": "", + "ICAO": "PMS" + }, + { + "Name": "PlaneSense", + "Code": "", + "ICAO": "CNS" + }, + { + "Name": "Play", + "Code": "OG", + "ICAO": "FPY" + }, + { + "Name": "Plus Ultra", + "Code": "PU", + "ICAO": "PUE" + }, + { + "Name": "PNG Air", + "Code": "CG", + "ICAO": "TOK" + }, + { + "Name": "Pobeda", + "Code": "DP", + "ICAO": "PBD" + }, + { + "Name": "Polar Air Cargo", + "Code": "PO", + "ICAO": "PAC" + }, + { + "Name": "Polar Airlines", + "Code": "PI", + "ICAO": "RKA" + }, + { + "Name": "Polish Medical Air Rescue", + "Code": "", + "ICAO": "LPR" + }, + { + "Name": "Porter Airlines", + "Code": "PD", + "ICAO": "POE" + }, + { + "Name": "Portugalia Airlines", + "Code": "NI", + "ICAO": "PGA" + }, + { + "Name": "Poste Air Cargo", + "Code": "M4", + "ICAO": "MSA" + }, + { + "Name": "Pradhaan Air Express", + "Code": "", + "ICAO": "PRX" + }, + { + "Name": "Pratt and Whitney", + "Code": "", + "ICAO": "PWC" + }, + { + "Name": "Precision Air", + "Code": "PW", + "ICAO": "PRF" + }, + { + "Name": "Premier Private Jets", + "Code": "", + "ICAO": "MVP" + }, + { + "Name": "Presidential Aviation", + "Code": "", + "ICAO": "PRD" + }, + { + "Name": "Priester Aviation", + "Code": "", + "ICAO": "PWA" + }, + { + "Name": "Prime Aviation", + "Code": "", + "ICAO": "PRZ" + }, + { + "Name": "Prince Aviation", + "Code": "", + "ICAO": "PNC" + }, + { + "Name": "Priority Air Charter", + "Code": "", + "ICAO": "PRY" + }, + { + "Name": "Privaira", + "Code": "", + "ICAO": "PVO" + }, + { + "Name": "Private Jets", + "Code": "", + "ICAO": "OKC" + }, + { + "Name": "Private Wings", + "Code": "8W", + "ICAO": "PWF" + }, + { + "Name": "Privilege Style", + "Code": "P6", + "ICAO": "PVG" + }, + { + "Name": "ProAir Aviation", + "Code": "", + "ICAO": "PAV" + }, + { + "Name": "Proflight Zambia", + "Code": "P0", + "ICAO": "PFZ" + }, + { + "Name": "Propair", + "Code": "", + "ICAO": "PRO" + }, + { + "Name": "PSA Airlines", + "Code": "OH", + "ICAO": "JIA" + }, + { + "Name": "QA Aviation", + "Code": "", + "ICAO": "QAV" + }, + { + "Name": "Qanot Sharq", + "Code": "HH", + "ICAO": "QNT" + }, + { + "Name": "Qantas", + "Code": "QF", + "ICAO": "QFA" + }, + { + "Name": "QantasLink", + "Code": "", + "ICAO": "QLK" + }, + { + "Name": "Qatar - Amiri Flight", + "Code": "", + "ICAO": "QAF" + }, + { + "Name": "Qatar Airways", + "Code": "QR", + "ICAO": "QTR" + }, + { + "Name": "Qatar Executive", + "Code": "QE", + "ICAO": "QQE" + }, + { + "Name": "Qazaq Air", + "Code": "IQ", + "ICAO": "QAZ" + }, + { + "Name": "Qeshm Airlines", + "Code": "QB", + "ICAO": "QSM" + }, + { + "Name": "QinetiQ", + "Code": "", + "ICAO": "EIS" + }, + { + "Name": "QinetiQ / Empire Test Pilots School", + "Code": "", + "ICAO": "ETP" + }, + { + "Name": "Qingdao Airlines", + "Code": "QW", + "ICAO": "QDA" + }, + { + "Name": "Qingdao Jiutian International Flight Academy", + "Code": "", + "ICAO": "QJT" + }, + { + "Name": "Quest Diagnostics", + "Code": "", + "ICAO": "LBQ" + }, + { + "Name": "Quick Air Jet Charter", + "Code": "", + "ICAO": "QAJ" + }, + { + "Name": "Quikjet Cargo Airlines", + "Code": "QO", + "ICAO": "FQA" + }, + { + "Name": "RAF-Avia", + "Code": "MT", + "ICAO": "MTL" + }, + { + "Name": "RAM Express", + "Code": "", + "ICAO": "RXP" + }, + { + "Name": "Ravenair", + "Code": "", + "ICAO": "RVR" + }, + { + "Name": "Ravn Alaska", + "Code": "7H", + "ICAO": "RVF" + }, + { + "Name": "Raya Airways", + "Code": "TH", + "ICAO": "RMY" + }, + { + "Name": "Rayani Air", + "Code": "RN", + "ICAO": "RKT" + }, + { + "Name": "Reach Air Medical Services", + "Code": "", + "ICAO": "REH" + }, + { + "Name": "Real Tonga Airline", + "Code": "", + "ICAO": "RLT" + }, + { + "Name": "Rectimo Air Transports", + "Code": "", + "ICAO": "RTO" + }, + { + "Name": "Rectrix Aviation", + "Code": "", + "ICAO": "RIX" + }, + { + "Name": "Red Air", + "Code": "L5", + "ICAO": "REA" + }, + { + "Name": "Red Wing Aviation", + "Code": "", + "ICAO": "LAK" + }, + { + "Name": "Red Wings", + "Code": "WZ", + "ICAO": "RWZ" + }, + { + "Name": "Redding Aero Enterprises", + "Code": "", + "ICAO": "BXR" + }, + { + "Name": "Redstar Aviation", + "Code": "", + "ICAO": "RHH" + }, + { + "Name": "REGA Swiss Air-Ambulance", + "Code": "", + "ICAO": "RGA" + }, + { + "Name": "Regent Airways", + "Code": "RX", + "ICAO": "RGE" + }, + { + "Name": "Regional", + "Code": "YS", + "ICAO": "RAE" + }, + { + "Name": "Regional Air Services", + "Code": "8N", + "ICAO": "REG" + }, + { + "Name": "Rennia Aviation", + "Code": "", + "ICAO": "RNI" + }, + { + "Name": "Republic Airways", + "Code": "YX", + "ICAO": "RPA" + }, + { + "Name": "Rex", + "Code": "ZL", + "ICAO": "RXA" + }, + { + "Name": "Rhoades Aviation", + "Code": "T4", + "ICAO": "RDS" + }, + { + "Name": "Richland Aviation", + "Code": "", + "ICAO": "RCA" + }, + { + "Name": "Rimbun Air", + "Code": "RI", + "ICAO": "OEY" + }, + { + "Name": "Rise Air", + "Code": "4T", + "ICAO": "WEW" + }, + { + "Name": "ROMCargo Airlines", + "Code": "NJ", + "ICAO": "RCR" + }, + { + "Name": "Roraima Airways", + "Code": "", + "ICAO": "ROM" + }, + { + "Name": "Rose Air", + "Code": "", + "ICAO": "REM" + }, + { + "Name": "Rossiya", + "Code": "FV", + "ICAO": "SDM" + }, + { + "Name": "Rossiya - Special Flight Squadron", + "Code": "", + "ICAO": "RSD" + }, + { + "Name": "Rotana Jet", + "Code": "RG", + "ICAO": "RJD" + }, + { + "Name": "Royal Air Freight", + "Code": "", + "ICAO": "RAX" + }, + { + "Name": "Royal Air Maroc", + "Code": "AT", + "ICAO": "RAM" + }, + { + "Name": "Royal Brunei Airlines", + "Code": "BI", + "ICAO": "RBA" + }, + { + "Name": "Royal Falcon", + "Code": "", + "ICAO": "RFJ" + }, + { + "Name": "Royal Jordanian", + "Code": "RJ", + "ICAO": "RJA" + }, + { + "Name": "Royal Wings", + "Code": "JO", + "ICAO": "RYW" + }, + { + "Name": "Royalair Philippines", + "Code": "RW", + "ICAO": "RYL" + }, + { + "Name": "Rubystar", + "Code": "", + "ICAO": "RSB" + }, + { + "Name": "Ruili Airlines", + "Code": "DR", + "ICAO": "RLH" + }, + { + "Name": "Sunlight Air", + "Code": "2R", + "ICAO": "RLB" + }, + { + "Name": "Rusline", + "Code": "7R", + "ICAO": "RLU" + }, + { + "Name": "Russia - Ministry of Emergency Situations (MChS)", + "Code": "", + "ICAO": "SUM" + }, + { + "Name": "Rutaca Airlines", + "Code": "5R", + "ICAO": "RUC" + }, + { + "Name": "RVL Aviation", + "Code": "", + "ICAO": "REV" + }, + { + "Name": "RwandAir", + "Code": "WB", + "ICAO": "RWD" + }, + { + "Name": "RWL German Flight Academy", + "Code": "", + "ICAO": "RWL" + }, + { + "Name": "Ryan Air (USA)", + "Code": "7S", + "ICAO": "RYA" + }, + { + "Name": "Ryanair", + "Code": "FR", + "ICAO": "RYR" + }, + { + "Name": "Ryanair UK", + "Code": "RK", + "ICAO": "RUK" + }, + { + "Name": "Ryukyu Air Commuter", + "Code": "", + "ICAO": "RAC" + }, + { + "Name": "S7 Airlines", + "Code": "S7", + "ICAO": "SBI" + }, + { + "Name": "SA Express", + "Code": "XZ", + "ICAO": "EXY" + }, + { + "Name": "SA Red Cross Air Mercy Service", + "Code": "", + "ICAO": "AMD" + }, + { + "Name": "SAAB Aircraft", + "Code": "", + "ICAO": "SCT" + }, + { + "Name": "SAAB Nyge Aero", + "Code": "", + "ICAO": "TGT" + }, + { + "Name": "SAF Helicopteres", + "Code": "", + "ICAO": "SHP" + }, + { + "Name": "Safarilink Aviation", + "Code": "F2", + "ICAO": "XLK" + }, + { + "Name": "Safi Airways", + "Code": "4Q", + "ICAO": "SFW" + }, + { + "Name": "Saha Airlines", + "Code": "", + "ICAO": "IRZ" + }, + { + "Name": "Sahel Aviation Service", + "Code": "", + "ICAO": "SAO" + }, + { + "Name": "SalamAir", + "Code": "OV", + "ICAO": "OMS" + }, + { + "Name": "Salzburg Jet Aviation", + "Code": "", + "ICAO": "MOZ" + }, + { + "Name": "Samoa Airways", + "Code": "OL", + "ICAO": "PAO" + }, + { + "Name": "San Marino Executive Aviation", + "Code": "", + "ICAO": "SMF" + }, + { + "Name": "Sansa", + "Code": "", + "ICAO": "LRS" + }, + { + "Name": "Sapsan Airline", + "Code": "", + "ICAO": "KGB" + }, + { + "Name": "Sardinian Sky Service", + "Code": "", + "ICAO": "SSR" + }, + { + "Name": "SAS", + "Code": "SK", + "ICAO": "SAS" + }, + { + "Name": "SAS Connect", + "Code": "SL", + "ICAO": "SZS" + }, + { + "Name": "SAS Danmark", + "Code": "", + "ICAO": "DEN" + }, + { + "Name": "SAS Link", + "Code": "", + "ICAO": "SVS" + }, + { + "Name": "SAS Norge", + "Code": "", + "ICAO": "CNO" + }, + { + "Name": "SATA Air Acores", + "Code": "SP", + "ICAO": "SAT" + }, + { + "Name": "Satena", + "Code": "9R", + "ICAO": "NSE" + }, + { + "Name": "Saudia", + "Code": "SV", + "ICAO": "SVA" + }, + { + "Name": "Saurya Airlines", + "Code": "", + "ICAO": "SAU" + }, + { + "Name": "Sawyer Aviation", + "Code": "", + "ICAO": "SJA" + }, + { + "Name": "SaxonAir", + "Code": "", + "ICAO": "SXN" + }, + { + "Name": "SBA Airlines", + "Code": "S3", + "ICAO": "BBR" + }, + { + "Name": "Scanwings", + "Code": "", + "ICAO": "ABF" + }, + { + "Name": "SCAT", + "Code": "DV", + "ICAO": "VSV" + }, + { + "Name": "Scoot", + "Code": "TR", + "ICAO": "TGW" + }, + { + "Name": "Seaborne", + "Code": "BB", + "ICAO": "SBS" + }, + { + "Name": "SEair International", + "Code": "XO", + "ICAO": "SGD" + }, + { + "Name": "SeaPort Airlines", + "Code": "K5", + "ICAO": "SQH" + }, + { + "Name": "Searca", + "Code": "", + "ICAO": "SRC" + }, + { + "Name": "Secure Air Charter", + "Code": "", + "ICAO": "JCM" + }, + { + "Name": "Sepehran Airlines", + "Code": "IS", + "ICAO": "SHI" + }, + { + "Name": "Serene Air", + "Code": "ER", + "ICAO": "SEP" + }, + { + "Name": "Servizi Aerei", + "Code": "", + "ICAO": "SNM" + }, + { + "Name": "Sevenair", + "Code": "", + "ICAO": "RVP" + }, + { + "Name": "Severstal Aircompany", + "Code": "D2", + "ICAO": "SSF" + }, + { + "Name": "SF Airlines", + "Code": "O3", + "ICAO": "CSS" + }, + { + "Name": "Shandong Airlines", + "Code": "SC", + "ICAO": "CDG" + }, + { + "Name": "Shanghai Airlines", + "Code": "FM", + "ICAO": "CSH" + }, + { + "Name": "Shenzhen Airlines", + "Code": "ZH", + "ICAO": "CSZ" + }, + { + "Name": "Shirak Avia", + "Code": "5G", + "ICAO": "SHS" + }, + { + "Name": "Shovkoviy Shlyah", + "Code": "S8", + "ICAO": "SWW" + }, + { + "Name": "Shree Airlines", + "Code": "N9", + "ICAO": "SHA" + }, + { + "Name": "Shuttle America", + "Code": "S5", + "ICAO": "TCF" + }, + { + "Name": "Siam General Aviation", + "Code": "5E", + "ICAO": "SGN" + }, + { + "Name": "Sichuan Airlines", + "Code": "3U", + "ICAO": "CSC" + }, + { + "Name": "Sideral Linhas Aereas", + "Code": "", + "ICAO": "SID" + }, + { + "Name": "Sierra Pacific Airlines", + "Code": "SI", + "ICAO": "SPA" + }, + { + "Name": "Sierra West Airlines", + "Code": "P8", + "ICAO": "PKW" + }, + { + "Name": "Silesia Air", + "Code": "", + "ICAO": "SUA" + }, + { + "Name": "Silk Way Airlines", + "Code": "ZP", + "ICAO": "AZQ" + }, + { + "Name": "Silk Way West Airlines", + "Code": "7L", + "ICAO": "AZG" + }, + { + "Name": "Silver Air", + "Code": "", + "ICAO": "SIS" + }, + { + "Name": "Silver Air", + "Code": "", + "ICAO": "SLD" + }, + { + "Name": "Silver Airways", + "Code": "3M", + "ICAO": "SIL" + }, + { + "Name": "Silver Cloud Air", + "Code": "", + "ICAO": "SCR" + }, + { + "Name": "Silverhawk Aviation", + "Code": "", + "ICAO": "SLH" + }, + { + "Name": "Silverstone Air Services", + "Code": "", + "ICAO": "SLR" + }, + { + "Name": "Simrik Airlines", + "Code": "", + "ICAO": "RMK" + }, + { + "Name": "Singapore Airlines", + "Code": "SQ", + "ICAO": "SIA" + }, + { + "Name": "Singapore Airlines Cargo", + "Code": "", + "ICAO": "SQC" + }, + { + "Name": "Sino Jet", + "Code": "", + "ICAO": "SJM" + }, + { + "Name": "Sino Jet Beijing", + "Code": "", + "ICAO": "JBE" + }, + { + "Name": "Sirio", + "Code": "", + "ICAO": "SIO" + }, + { + "Name": "Sirius Aero", + "Code": "SA", + "ICAO": "CIG" + }, + { + "Name": "SKS Airways", + "Code": "KI", + "ICAO": "SJB" + }, + { + "Name": "Sky Airline", + "Code": "H2", + "ICAO": "SKU" + }, + { + "Name": "Sky Airline Peru", + "Code": "H8", + "ICAO": "SKX" + }, + { + "Name": "Sky Angkor Airlines", + "Code": "ZA", + "ICAO": "SWM" + }, + { + "Name": "Sky Bus", + "Code": "", + "ICAO": "HVY" + }, + { + "Name": "Sky Cana", + "Code": "RD", + "ICAO": "SNA" + }, + { + "Name": "Sky Express", + "Code": "GQ", + "ICAO": "SEH" + }, + { + "Name": "Sky Gates Airlines", + "Code": "U3", + "ICAO": "SAY" + }, + { + "Name": "Sky Helicopteros", + "Code": "", + "ICAO": "HSY" + }, + { + "Name": "Sky High Aviation Services", + "Code": "DO", + "ICAO": "SHH" + }, + { + "Name": "Sky KG Airlines", + "Code": "", + "ICAO": "KGK" + }, + { + "Name": "Sky Lease Cargo", + "Code": "GG", + "ICAO": "KYE" + }, + { + "Name": "Sky Mali", + "Code": "ML", + "ICAO": "FML" + }, + { + "Name": "Sky Prime Aviation", + "Code": "UY", + "ICAO": "SPD" + }, + { + "Name": "Sky Quest", + "Code": "", + "ICAO": "ERY" + }, + { + "Name": "Skyborne Airline Academy", + "Code": "", + "ICAO": "SFY" + }, + { + "Name": "Skybridge", + "Code": "", + "ICAO": "KYB" + }, + { + "Name": "Skybus", + "Code": "", + "ICAO": "IOS" + }, + { + "Name": "Skyfirst", + "Code": "", + "ICAO": "KFE" + }, + { + "Name": "SkyJet Airlines", + "Code": "M8", + "ICAO": "MSJ" + }, + { + "Name": "SkyLink Express", + "Code": "", + "ICAO": "SLQ" + }, + { + "Name": "Skymark Airlines", + "Code": "BC", + "ICAO": "SKY" + }, + { + "Name": "Skyservice Business Aviation", + "Code": "", + "ICAO": "SYB" + }, + { + "Name": "Skyside", + "Code": "", + "ICAO": "SKV" + }, + { + "Name": "Skytaxi", + "Code": "TE", + "ICAO": "IGA" + }, + { + "Name": "Skytrans", + "Code": "QN", + "ICAO": "SKP" + }, + { + "Name": "SkyUp Airlines", + "Code": "PQ", + "ICAO": "SQP" + }, + { + "Name": "Skyvalue Airways", + "Code": "4A", + "ICAO": "DYN" + }, + { + "Name": "Skyward Express", + "Code": "OW", + "ICAO": "SEW" + }, + { + "Name": "Skyway Enterprises", + "Code": "", + "ICAO": "SKZ" + }, + { + "Name": "SkyWest Airlines", + "Code": "OO", + "ICAO": "SKW" + }, + { + "Name": "Slam Lavori Aerei", + "Code": "", + "ICAO": "SLJ" + }, + { + "Name": "Sloane Helicopters", + "Code": "", + "ICAO": "SLN" + }, + { + "Name": "Smart Aviation", + "Code": "", + "ICAO": "SME" + }, + { + "Name": "Smart Jet", + "Code": "", + "ICAO": "SAH" + }, + { + "Name": "Smartavia", + "Code": "5N", + "ICAO": "AUL" + }, + { + "Name": "Smartline", + "Code": "", + "ICAO": "SMG" + }, + { + "Name": "SmartLynx", + "Code": "6Y", + "ICAO": "ART" + }, + { + "Name": "SmartLynx Estonia", + "Code": "", + "ICAO": "MYX" + }, + { + "Name": "SmartLynx Malta", + "Code": "", + "ICAO": "LYX" + }, + { + "Name": "Smartwings", + "Code": "QS", + "ICAO": "TVS" + }, + { + "Name": "Smartwings Hungary", + "Code": "7O", + "ICAO": "TVL" + }, + { + "Name": "Smartwings Poland", + "Code": "3Z", + "ICAO": "TVP" + }, + { + "Name": "Smartwings Slovakia", + "Code": "6D", + "ICAO": "TVQ" + }, + { + "Name": "Solairus Aviation", + "Code": "", + "ICAO": "TWY" + }, + { + "Name": "Solaseed Air", + "Code": "6J", + "ICAO": "SNJ" + }, + { + "Name": "Solenta Aviation", + "Code": "", + "ICAO": "SET" + }, + { + "Name": "Solid Air", + "Code": "", + "ICAO": "SOX" + }, + { + "Name": "Solinair", + "Code": "SP", + "ICAO": "SOP" + }, + { + "Name": "Solomon Airlines", + "Code": "IE", + "ICAO": "SOL" + }, + { + "Name": "Somon Air", + "Code": "SZ", + "ICAO": "SMR" + }, + { + "Name": "Songbird Airways", + "Code": "6K", + "ICAO": "SGB" + }, + { + "Name": "Sounds Air", + "Code": "S8", + "ICAO": "SDA" + }, + { + "Name": "South African Airways", + "Code": "SA", + "ICAO": "SAA" + }, + { + "Name": "Southern Air Charter", + "Code": "PL", + "ICAO": "SOA" + }, + { + "Name": "Southern Airways Express", + "Code": "9X", + "ICAO": "FDY" + }, + { + "Name": "Southern Cross International", + "Code": "", + "ICAO": "SXI" + }, + { + "Name": "Southwest Airlines", + "Code": "WN", + "ICAO": "SWA" + }, + { + "Name": "Southwind Airlines", + "Code": "2S", + "ICAO": "STW" + }, + { + "Name": "Sparfell Luftfahrt", + "Code": "", + "ICAO": "LDX" + }, + { + "Name": "Specialist Aviation Services", + "Code": "", + "ICAO": "PLC" + }, + { + "Name": "Speedwings Executive Jet", + "Code": "", + "ICAO": "SPG" + }, + { + "Name": "SpiceJet", + "Code": "SG", + "ICAO": "SEJ" + }, + { + "Name": "Spirit Airlines", + "Code": "NK", + "ICAO": "NKS" + }, + { + "Name": "SpiritJets", + "Code": "", + "ICAO": "SJJ" + }, + { + "Name": "Spring Airlines", + "Code": "9C", + "ICAO": "CQH" + }, + { + "Name": "Spring Japan", + "Code": "IJ", + "ICAO": "SJO" + }, + { + "Name": "SprintAir", + "Code": "P8", + "ICAO": "SRN" + }, + { + "Name": "SprintAir Cargo", + "Code": "", + "ICAO": "SAR" + }, + { + "Name": "SR Jet", + "Code": "", + "ICAO": "QSR" + }, + { + "Name": "SriLankan Airlines", + "Code": "UL", + "ICAO": "ALK" + }, + { + "Name": "Sriwijaya Air", + "Code": "SJ", + "ICAO": "SJY" + }, + { + "Name": "St Barth Commuter", + "Code": "PV", + "ICAO": "SBU" + }, + { + "Name": "St Barth Executive", + "Code": "", + "ICAO": "STB" + }, + { + "Name": "STAjets", + "Code": "", + "ICAO": "KFB" + }, + { + "Name": "Star Air", + "Code": "S5", + "ICAO": "SDG" + }, + { + "Name": "Star Air Cargo", + "Code": "", + "ICAO": "BRH" + }, + { + "Name": "Star East Airlines", + "Code": "4R", + "ICAO": "SEK" + }, + { + "Name": "Star Peru", + "Code": "2I", + "ICAO": "SRU" + }, + { + "Name": "Star Wings", + "Code": "", + "ICAO": "STQ" + }, + { + "Name": "Star Work Sky", + "Code": "", + "ICAO": "SWP" + }, + { + "Name": "Starflyer", + "Code": "7G", + "ICAO": "SFJ" + }, + { + "Name": "Starlight Airlines", + "Code": "QP", + "ICAO": "SLT" + }, + { + "Name": "Starlink Aviation", + "Code": "Q4", + "ICAO": "TLK" + }, + { + "Name": "Starlite Aviation", + "Code": "", + "ICAO": "TRL" + }, + { + "Name": "Starlux", + "Code": "JX", + "ICAO": "SJX" + }, + { + "Name": "Sterling Aviation", + "Code": "", + "ICAO": "NSH" + }, + { + "Name": "STP Airways", + "Code": "8F", + "ICAO": "STP" + }, + { + "Name": "Suburban Air Freight", + "Code": "", + "ICAO": "SUB" + }, + { + "Name": "Sudan Airways", + "Code": "SD", + "ICAO": "SUD" + }, + { + "Name": "Summit Air", + "Code": "", + "ICAO": "SUT" + }, + { + "Name": "Sun Air", + "Code": "1Y", + "ICAO": "SNR" + }, + { + "Name": "Sun Country Airlines", + "Code": "SY", + "ICAO": "SCX" + }, + { + "Name": "Sun-Air", + "Code": "EZ", + "ICAO": "SUS" + }, + { + "Name": "Sunair Aviation", + "Code": "ZU", + "ICAO": "SAV" + }, + { + "Name": "Sunclass Airlines", + "Code": "DK", + "ICAO": "VKG" + }, + { + "Name": "Suncor Energy", + "Code": "", + "ICAO": "JSN" + }, + { + "Name": "Sundair", + "Code": "SR", + "ICAO": "SDR" + }, + { + "Name": "Sundance Air Venezuela", + "Code": "R8", + "ICAO": "SUV" + }, + { + "Name": "Sundt Air", + "Code": "", + "ICAO": "AKK" + }, + { + "Name": "Sundt Air", + "Code": "", + "ICAO": "MDT" + }, + { + "Name": "SunExpress", + "Code": "XQ", + "ICAO": "SXS" + }, + { + "Name": "Sunkar Air", + "Code": "", + "ICAO": "BBK" + }, + { + "Name": "Sunrise Airways", + "Code": "S6", + "ICAO": "KSZ" + }, + { + "Name": "Sunstate Airlines", + "Code": "", + "ICAO": "SSQ" + }, + { + "Name": "Sunwest Aviation", + "Code": "", + "ICAO": "CNK" + }, + { + "Name": "Sunwing Airlines", + "Code": "WG", + "ICAO": "SWG" + }, + { + "Name": "Suparna Airlines", + "Code": "Y8", + "ICAO": "YZR" + }, + { + "Name": "Super Air Jet", + "Code": "IU", + "ICAO": "SJV" + }, + { + "Name": "Surf Air", + "Code": "", + "ICAO": "URF" + }, + { + "Name": "Surinam Airways", + "Code": "PY", + "ICAO": "SLM" + }, + { + "Name": "Surveillance Australia", + "Code": "", + "ICAO": "BDF" + }, + { + "Name": "Susi Air", + "Code": "", + "ICAO": "SQS" + }, + { + "Name": "Svenskt Ambulansflyg", + "Code": "", + "ICAO": "SWE" + }, + { + "Name": "Svenskt Industriflyg", + "Code": "", + "ICAO": "JET" + }, + { + "Name": "SVG Air", + "Code": "", + "ICAO": "SVD" + }, + { + "Name": "Sweden - Swedish Maritime Administration", + "Code": "", + "ICAO": "HMF" + }, + { + "Name": "Swift Copters", + "Code": "", + "ICAO": "WFC" + }, + { + "Name": "Swiftair", + "Code": "WT", + "ICAO": "SWT" + }, + { + "Name": "Swiftair Hellas", + "Code": "", + "ICAO": "MDF" + }, + { + "Name": "Swiss", + "Code": "LX", + "ICAO": "SWR" + }, + { + "Name": "Swiss Air-Ambulance", + "Code": "", + "ICAO": "SAZ" + }, + { + "Name": "Swiss Flight Services", + "Code": "", + "ICAO": "SFS" + }, + { + "Name": "Swiss Global Air Lines", + "Code": "LZ", + "ICAO": "SWU" + }, + { + "Name": "Swiss Helicopter", + "Code": "", + "ICAO": "HSI" + }, + { + "Name": "Swoop", + "Code": "WO", + "ICAO": "WSW" + }, + { + "Name": "Sylt Air", + "Code": "7E", + "ICAO": "AWU" + }, + { + "Name": "Syncrude Canada", + "Code": "", + "ICAO": "SYN" + }, + { + "Name": "Syphax Airlines", + "Code": "FS", + "ICAO": "SYA" + }, + { + "Name": "Syrian Air", + "Code": "RB", + "ICAO": "SYR" + }, + { + "Name": "T'way Air", + "Code": "TW", + "ICAO": "TWB" + }, + { + "Name": "TAAG Angola Airlines", + "Code": "DT", + "ICAO": "DTA" + }, + { + "Name": "TAB Cargo", + "Code": "2L", + "ICAO": "BOL" + }, + { + "Name": "Taban Airlines", + "Code": "", + "ICAO": "TBN" + }, + { + "Name": "TAG Airlines", + "Code": "5U", + "ICAO": "TGU" + }, + { + "Name": "TAG Aviation", + "Code": "", + "ICAO": "VIP" + }, + { + "Name": "TAG Aviation Asia", + "Code": "", + "ICAO": "TBJ" + }, + { + "Name": "TAG Aviation Cayman", + "Code": "", + "ICAO": "TCJ" + }, + { + "Name": "TAG Aviation Malta", + "Code": "", + "ICAO": "TEU" + }, + { + "Name": "TAG Aviation San Marino", + "Code": "", + "ICAO": "TAG" + }, + { + "Name": "Tailwind Air", + "Code": "TQ", + "ICAO": "PGN" + }, + { + "Name": "Tailwind Airlines", + "Code": "TI", + "ICAO": "TWI" + }, + { + "Name": "Tajik Air", + "Code": "7J", + "ICAO": "TJK" + }, + { + "Name": "Talon Air", + "Code": "", + "ICAO": "TFF" + }, + { + "Name": "Tanana Air Service", + "Code": "Z3", + "ICAO": "TNR" + }, + { + "Name": "Tandem-Aero", + "Code": "TQ", + "ICAO": "TDM" + }, + { + "Name": "TAP Air Portugal", + "Code": "TP", + "ICAO": "TAP" + }, + { + "Name": "Taquan Air", + "Code": "K3", + "ICAO": "TQN" + }, + { + "Name": "TAR Aerolineas", + "Code": "YQ", + "ICAO": "LCT" + }, + { + "Name": "Tarco Aviation", + "Code": "3T", + "ICAO": "TQQ" + }, + { + "Name": "Tarom", + "Code": "RO", + "ICAO": "ROT" + }, + { + "Name": "Tasman Cargo Airlines", + "Code": "HJ", + "ICAO": "TMN" + }, + { + "Name": "Tassili Airlines", + "Code": "SF", + "ICAO": "DTH" + }, + { + "Name": "Tatra JET", + "Code": "", + "ICAO": "TTJ" + }, + { + "Name": "Tbilisi Airways", + "Code": "TD", + "ICAO": "TBC" + }, + { + "Name": "TCA", + "Code": "N6", + "ICAO": "TZS" + }, + { + "Name": "Tchadia Airlines", + "Code": "OT", + "ICAO": "CDO" + }, + { + "Name": "Ten Airways", + "Code": "X5", + "ICAO": "OTJ" + }, + { + "Name": "Terra Avia", + "Code": "T8", + "ICAO": "TVR" + }, + { + "Name": "Texel Air", + "Code": "", + "ICAO": "XLR" + }, + { + "Name": "Tez Jet Airlines", + "Code": "", + "ICAO": "TEZ" + }, + { + "Name": "Thai AirAsia", + "Code": "FD", + "ICAO": "AIQ" + }, + { + "Name": "Thai AirAsia X", + "Code": "XJ", + "ICAO": "TAX" + }, + { + "Name": "Thai Airways", + "Code": "TG", + "ICAO": "THA" + }, + { + "Name": "Thai Eastar Jet", + "Code": "ZT", + "ICAO": "ESS" + }, + { + "Name": "Thai Lion Air", + "Code": "SL", + "ICAO": "TLM" + }, + { + "Name": "Thai Smile", + "Code": "WE", + "ICAO": "THD" + }, + { + "Name": "Thai VietJet Air", + "Code": "VZ", + "ICAO": "TVJ" + }, + { + "Name": "Thalair", + "Code": "", + "ICAO": "TLJ" + }, + { + "Name": "The Little Jet Company", + "Code": "", + "ICAO": "LJC" + }, + { + "Name": "Thomas Cook Airlines", + "Code": "MT", + "ICAO": "TCX" + }, + { + "Name": "Thomas Cook Aviation", + "Code": "H3", + "ICAO": "TCN" + }, + { + "Name": "Thrive", + "Code": "", + "ICAO": "TIV" + }, + { + "Name": "Thunder Airlines", + "Code": "", + "ICAO": "THU" + }, + { + "Name": "Tianjin Air Cargo", + "Code": "HT", + "ICAO": "CTJ" + }, + { + "Name": "Tianjin Airlines", + "Code": "GS", + "ICAO": "GCR" + }, + { + "Name": "Tibet Airlines", + "Code": "TV", + "ICAO": "TBA" + }, + { + "Name": "Tigerair Taiwan", + "Code": "IT", + "ICAO": "TTW" + }, + { + "Name": "Time Air", + "Code": "", + "ICAO": "TIE" + }, + { + "Name": "Titan Airways", + "Code": "ZT", + "ICAO": "AWC" + }, + { + "Name": "Titan Airways Malta", + "Code": "TM", + "ICAO": "TMT" + }, + { + "Name": "Toll Aviation", + "Code": "", + "ICAO": "TFX" + }, + { + "Name": "Total Linhas Aereas", + "Code": "L1", + "ICAO": "TTL" + }, + { + "Name": "Toyo Aviation", + "Code": "", + "ICAO": "TOY" + }, + { + "Name": "Trade Air", + "Code": "C3", + "ICAO": "TDR" + }, + { + "Name": "Tradewind Aviation", + "Code": "TJ", + "ICAO": "GPD" + }, + { + "Name": "Trans Air Congo", + "Code": "Q8", + "ICAO": "TSG" + }, + { + "Name": "Trans Am Aero Express del Ecuador", + "Code": "7T", + "ICAO": "RTM" + }, + { + "Name": "Trans Guyana Airways", + "Code": "", + "ICAO": "TGY" + }, + { + "Name": "Trans Island Airways", + "Code": "", + "ICAO": "GGT" + }, + { + "Name": "Trans Maldivian Airways", + "Code": "", + "ICAO": "TMW" + }, + { + "Name": "Transair", + "Code": "R2", + "ICAO": "GTS" + }, + { + "Name": "Transair", + "Code": "R9", + "ICAO": "MUI" + }, + { + "Name": "Transavia", + "Code": "HV", + "ICAO": "TRA" + }, + { + "Name": "Transavia France", + "Code": "TO", + "ICAO": "TVF" + }, + { + "Name": "Transaviabaltika", + "Code": "", + "ICAO": "KTB" + }, + { + "Name": "Transaviaexport Airlines", + "Code": "", + "ICAO": "TXC" + }, + { + "Name": "TransNusa", + "Code": "8B", + "ICAO": "TNU" + }, + { + "Name": "Travel Management Company", + "Code": "", + "ICAO": "TMC" + }, + { + "Name": "Tri-MG Intra Asia Airlines", + "Code": "GM", + "ICAO": "TMG" + }, + { + "Name": "Tri-State Aero", + "Code": "", + "ICAO": "TSS" + }, + { + "Name": "Trigana Air", + "Code": "IL", + "ICAO": "TGN" + }, + { + "Name": "Tropic Air", + "Code": "9N", + "ICAO": "TOS" + }, + { + "Name": "Tropic Ocean Airways", + "Code": "TI", + "ICAO": "FTO" + }, + { + "Name": "Trujet", + "Code": "2T", + "ICAO": "TRJ" + }, + { + "Name": "Tsaradia", + "Code": "TZ", + "ICAO": "TDS" + }, + { + "Name": "TUI Airlines Belgium", + "Code": "TB", + "ICAO": "JAF" + }, + { + "Name": "TUI Airlines Netherlands", + "Code": "OR", + "ICAO": "TFL" + }, + { + "Name": "TUI Airways", + "Code": "BY", + "ICAO": "TOM" + }, + { + "Name": "TUI fly", + "Code": "X3", + "ICAO": "TUI" + }, + { + "Name": "TUI fly Nordic", + "Code": "6B", + "ICAO": "BLX" + }, + { + "Name": "TUM AeroCarga", + "Code": "", + "ICAO": "MCS" + }, + { + "Name": "Tunisair", + "Code": "TU", + "ICAO": "TAR" + }, + { + "Name": "Tunisair Express", + "Code": "UG", + "ICAO": "TUX" + }, + { + "Name": "Turkish Airlines", + "Code": "TK", + "ICAO": "THY" + }, + { + "Name": "Turkmenistan Airlines", + "Code": "T5", + "ICAO": "TUA" + }, + { + "Name": "Turkuaz Airlines", + "Code": "", + "ICAO": "TRK" + }, + { + "Name": "Turpial Airlines", + "Code": "T9", + "ICAO": "VTU" + }, + { + "Name": "Tus Airways", + "Code": "U8", + "ICAO": "CYF" + }, + { + "Name": "Twin Jet", + "Code": "T7", + "ICAO": "TJT" + }, + { + "Name": "Tyrol Air Ambulance", + "Code": "", + "ICAO": "TYW" + }, + { + "Name": "Tyrolean Jet Service", + "Code": "", + "ICAO": "TJS" + }, + { + "Name": "UG Jet", + "Code": "", + "ICAO": "UGJ" + }, + { + "Name": "Uganda Airlines", + "Code": "UR", + "ICAO": "UGD" + }, + { + "Name": "UK Royal / VIP Flights", + "Code": "", + "ICAO": "KRF" + }, + { + "Name": "Ukraine Air Alliance", + "Code": "", + "ICAO": "UKL" + }, + { + "Name": "Ukraine International Airlines", + "Code": "PS", + "ICAO": "AUI" + }, + { + "Name": "Ukrainian Wings", + "Code": "", + "ICAO": "UWJ" + }, + { + "Name": "ULS Airlines Cargo", + "Code": "GO", + "ICAO": "KZU" + }, + { + "Name": "Ultimate Air Shuttle", + "Code": "UE", + "ICAO": "UJC" + }, + { + "Name": "Ultra Air", + "Code": "U0", + "ICAO": "ULS" + }, + { + "Name": "UNI Air", + "Code": "B7", + "ICAO": "UIA" + }, + { + "Name": "Uni-Fly", + "Code": "", + "ICAO": "UNC" + }, + { + "Name": "Uni-Top Airlines", + "Code": "UW", + "ICAO": "UTP" + }, + { + "Name": "Union Aviation", + "Code": "", + "ICAO": "UAG" + }, + { + "Name": "Unique Air", + "Code": "", + "ICAO": "UQA" + }, + { + "Name": "United Airlines", + "Code": "UA", + "ICAO": "UAL" + }, + { + "Name": "United Kingdom - Air Ambulance", + "Code": "", + "ICAO": "HLE" + }, + { + "Name": "United Nations", + "Code": "", + "ICAO": "UNO" + }, + { + "Name": "United Nigeria Airlines", + "Code": "U5", + "ICAO": "NUA" + }, + { + "Name": "United States - US Forest Service", + "Code": "", + "ICAO": "XCN" + }, + { + "Name": "Uniworld Air Cargo", + "Code": "U7", + "ICAO": "UCG" + }, + { + "Name": "UPS", + "Code": "5X", + "ICAO": "UPS" + }, + { + "Name": "UR Airlines", + "Code": "UD", + "ICAO": "UBD" + }, + { + "Name": "Ural Airlines", + "Code": "U6", + "ICAO": "SVR" + }, + { + "Name": "Urumqi Airlines", + "Code": "UQ", + "ICAO": "CUH" + }, + { + "Name": "US-Bangla Airlines", + "Code": "BS", + "ICAO": "UBG" + }, + { + "Name": "USA Jet Airlines", + "Code": "", + "ICAO": "JUS" + }, + { + "Name": "UTair", + "Code": "UT", + "ICAO": "UTA" + }, + { + "Name": "UVT Aero", + "Code": "RT", + "ICAO": "UVT" + }, + { + "Name": "Uzbekistan Airways", + "Code": "HY", + "ICAO": "UZB" + }, + { + "Name": "V Air", + "Code": "ZV", + "ICAO": "VAX" + }, + { + "Name": "Valair", + "Code": "", + "ICAO": "VVV" + }, + { + "Name": "Valljet", + "Code": "", + "ICAO": "VLJ" + }, + { + "Name": "Van Air Europe", + "Code": "V9", + "ICAO": "VAA" + }, + { + "Name": "Vanilla Air", + "Code": "JW", + "ICAO": "VNL" + }, + { + "Name": "Varesh Airlines", + "Code": "", + "ICAO": "VRH" + }, + { + "Name": "Vasco", + "Code": "0V", + "ICAO": "VFC" + }, + { + "Name": "Venezolana", + "Code": "", + "ICAO": "VNE" + }, + { + "Name": "Veteran Airline", + "Code": "", + "ICAO": "VTF" + }, + { + "Name": "Veteran Airlines", + "Code": "", + "ICAO": "VPB" + }, + { + "Name": "VI Airlink", + "Code": "", + "ICAO": "VIL" + }, + { + "Name": "Via Air", + "Code": "", + "ICAO": "VID" + }, + { + "Name": "ViaAir", + "Code": "VC", + "ICAO": "SRY" + }, + { + "Name": "Victory Air", + "Code": "", + "ICAO": "FTN" + }, + { + "Name": "Vieques Air Link", + "Code": "V4", + "ICAO": "VES" + }, + { + "Name": "VietJet Air", + "Code": "VJ", + "ICAO": "VJC" + }, + { + "Name": "Vietnam Airlines", + "Code": "VN", + "ICAO": "HVN" + }, + { + "Name": "Vietravel Airlines", + "Code": "VU", + "ICAO": "VAG" + }, + { + "Name": "VIM Airlines", + "Code": "NN", + "ICAO": "MOV" + }, + { + "Name": "Virgin America", + "Code": "VX", + "ICAO": "VRD" + }, + { + "Name": "Virgin Atlantic", + "Code": "VS", + "ICAO": "VIR" + }, + { + "Name": "Virgin Atlantic International", + "Code": "", + "ICAO": "VGI" + }, + { + "Name": "Virgin Australia", + "Code": "VA", + "ICAO": "VOZ" + }, + { + "Name": "Virgin Australia Regional", + "Code": "", + "ICAO": "OZW" + }, + { + "Name": "Vision Air International", + "Code": "", + "ICAO": "VIS" + }, + { + "Name": "Vision Airlines", + "Code": "V2", + "ICAO": "RBY" + }, + { + "Name": "VistaJet", + "Code": "", + "ICAO": "VJT" + }, + { + "Name": "Vistara", + "Code": "UK", + "ICAO": "VTI" + }, + { + "Name": "Viva Air", + "Code": "VH", + "ICAO": "VVC" + }, + { + "Name": "Viva Air Peru", + "Code": "VV", + "ICAO": "VPE" + }, + { + "Name": "VivaAerobus", + "Code": "VB", + "ICAO": "VIV" + }, + { + "Name": "VoePass Linhas Aereas", + "Code": "2Z", + "ICAO": "PTB" + }, + { + "Name": "Volare Aviation", + "Code": "", + "ICAO": "VLZ" + }, + { + "Name": "Volaris", + "Code": "Y4", + "ICAO": "VOI" + }, + { + "Name": "Volaris Costa Rica", + "Code": "Q6", + "ICAO": "VOC" + }, + { + "Name": "Volaris El Salvador", + "Code": "N3", + "ICAO": "VOS" + }, + { + "Name": "Volato", + "Code": "", + "ICAO": "TMB" + }, + { + "Name": "Volga-Dnepr Airlines", + "Code": "VI", + "ICAO": "VDA" + }, + { + "Name": "Volotea", + "Code": "V7", + "ICAO": "VOE" + }, + { + "Name": "Voluxis", + "Code": "", + "ICAO": "VXS" + }, + { + "Name": "Voyage Air", + "Code": "", + "ICAO": "VRG" + }, + { + "Name": "Voyageur Airways", + "Code": "VC", + "ICAO": "VAL" + }, + { + "Name": "Vueling", + "Code": "VY", + "ICAO": "VLG" + }, + { + "Name": "VW Air Service", + "Code": "", + "ICAO": "BTX" + }, + { + "Name": "Wamos Air", + "Code": "EB", + "ICAO": "PLM" + }, + { + "Name": "Warbelows Air Ventures", + "Code": "4W", + "ICAO": "WAV" + }, + { + "Name": "Wasaya Airways", + "Code": "", + "ICAO": "WSG" + }, + { + "Name": "Wataniya Airways", + "Code": "", + "ICAO": "WAN" + }, + { + "Name": "West Air", + "Code": "PN", + "ICAO": "CHB" + }, + { + "Name": "West Air", + "Code": "", + "ICAO": "WLX" + }, + { + "Name": "West Air", + "Code": "", + "ICAO": "PCM" + }, + { + "Name": "West Air Sweden", + "Code": "", + "ICAO": "SWN" + }, + { + "Name": "West Atlantic", + "Code": "", + "ICAO": "NPT" + }, + { + "Name": "West Coast Charters", + "Code": "", + "ICAO": "WCC" + }, + { + "Name": "Westair Aviation", + "Code": "WV", + "ICAO": "WAA" + }, + { + "Name": "Western Air", + "Code": "WU", + "ICAO": "WST" + }, + { + "Name": "Western Air Express", + "Code": "", + "ICAO": "WAE" + }, + { + "Name": "Western Aircraft", + "Code": "ST", + "ICAO": "STT" + }, + { + "Name": "Western Global Airlines", + "Code": "KD", + "ICAO": "WGN" + }, + { + "Name": "WestJet", + "Code": "WS", + "ICAO": "WJA" + }, + { + "Name": "WestJet Encore", + "Code": "WR", + "ICAO": "WEN" + }, + { + "Name": "Wheels Up", + "Code": "", + "ICAO": "GAJ" + }, + { + "Name": "White", + "Code": "WI", + "ICAO": "WHT" + }, + { + "Name": "Wideroe", + "Code": "WF", + "ICAO": "WIF" + }, + { + "Name": "Wiggins Airways", + "Code": "", + "ICAO": "WIG" + }, + { + "Name": "Wiking Helikopter Service", + "Code": "", + "ICAO": "WHS" + }, + { + "Name": "Winair", + "Code": "WM", + "ICAO": "WIA" + }, + { + "Name": "Windrose Air Jetcharter", + "Code": "", + "ICAO": "QGA" + }, + { + "Name": "Windrose Airlines", + "Code": "7W", + "ICAO": "WRC" + }, + { + "Name": "Wingo", + "Code": "P5", + "ICAO": "RPB" + }, + { + "Name": "Wingo Panama", + "Code": "", + "ICAO": "WWP" + }, + { + "Name": "Wings Air", + "Code": "IW", + "ICAO": "WON" + }, + { + "Name": "Wings of Lebanon", + "Code": "W7", + "ICAO": "WLB" + }, + { + "Name": "Wizz Air", + "Code": "W6", + "ICAO": "WZZ" + }, + { + "Name": "Wizz Air Abu Dhabi", + "Code": "5W", + "ICAO": "WAZ" + }, + { + "Name": "Wizz Air Malta", + "Code": "", + "ICAO": "WMT" + }, + { + "Name": "Wizz Air UK", + "Code": "W9", + "ICAO": "WUK" + }, + { + "Name": "Woodgate Aviation", + "Code": "", + "ICAO": "CWY" + }, + { + "Name": "World Atlantic Airlines", + "Code": "WL", + "ICAO": "WAL" + }, + { + "Name": "World Cargo Airlines", + "Code": "3G", + "ICAO": "WCM" + }, + { + "Name": "World2Fly", + "Code": "2W", + "ICAO": "WFL" + }, + { + "Name": "World2Fly Portugal", + "Code": "3P", + "ICAO": "WPT" + }, + { + "Name": "Worldwide Jet Charter", + "Code": "", + "ICAO": "WWI" + }, + { + "Name": "Wright Air Service", + "Code": "8V", + "ICAO": "WRF" + }, + { + "Name": "Xfly", + "Code": "EE", + "ICAO": "EST" + }, + { + "Name": "Xiamen Air", + "Code": "MF", + "ICAO": "CXA" + }, + { + "Name": "Xo", + "Code": "", + "ICAO": "XOJ" + }, + { + "Name": "Yakutia Airlines", + "Code": "R3", + "ICAO": "SYL" + }, + { + "Name": "Yamal Airlines", + "Code": "YC", + "ICAO": "LLM" + }, + { + "Name": "YanAir", + "Code": "YE", + "ICAO": "ANR" + }, + { + "Name": "Yemenia", + "Code": "IY", + "ICAO": "IYE" + }, + { + "Name": "Yeti Airlines", + "Code": "YT", + "ICAO": "NYT" + }, + { + "Name": "YTO Cargo Airlines", + "Code": "YG", + "ICAO": "HYT" + }, + { + "Name": "Zagros Airlines", + "Code": "ZO", + "ICAO": "IZG" + }, + { + "Name": "Zambia Airways", + "Code": "ZN", + "ICAO": "AZB" + }, + { + "Name": "Zambian Airways", + "Code": "", + "ICAO": "MBN" + }, + { + "Name": "Zanair", + "Code": "", + "ICAO": "TAN" + }, + { + "Name": "Zenflight", + "Code": "", + "ICAO": "XEN" + }, + { + "Name": "Zenith Aviation", + "Code": "", + "ICAO": "BZE" + }, + { + "Name": "Zetavia", + "Code": "ZK", + "ICAO": "ZAV" + }, + { + "Name": "Zil Air", + "Code": "", + "ICAO": "SYZ" + }, + { + "Name": "Zimex Aviation", + "Code": "XM", + "ICAO": "IMX" + }, + { + "Name": "Zimex Aviation Austria", + "Code": "", + "ICAO": "AZD" + }, + { + "Name": "ZIPAIR", + "Code": "ZG", + "ICAO": "TZP" + }, + { + "Name": "Zorex", + "Code": "", + "ICAO": "ORZ" + } + ] +} diff --git a/samples/react-flighttracker/src/mockData/airports.json b/samples/react-flighttracker/src/mockData/airports.json new file mode 100644 index 000000000..970d9e662 --- /dev/null +++ b/samples/react-flighttracker/src/mockData/airports.json @@ -0,0 +1,1126587 @@ +{ + "airports": [ + { + "id": "6523", + "ident": "00A", + "type": "heliport", + "name": "Total Rf Heliport", + "latitude_deg": "40.07080078125", + "longitude_deg": "-74.93360137939453", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bensalem", + "scheduled_service": "no", + "gps_code": "00A", + "local_code": "00A" + }, + { + "id": "323361", + "ident": "00AA", + "type": "small_airport", + "name": "Aero B Ranch Airport", + "latitude_deg": "38.704022", + "longitude_deg": "-101.473911", + "elevation_ft": "3435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Leoti", + "scheduled_service": "no", + "gps_code": "00AA", + "local_code": "00AA" + }, + { + "id": "6524", + "ident": "00AK", + "type": "small_airport", + "name": "Lowell Field", + "latitude_deg": "59.947733", + "longitude_deg": "-151.692524", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchor Point", + "scheduled_service": "no", + "gps_code": "00AK", + "local_code": "00AK" + }, + { + "id": "6525", + "ident": "00AL", + "type": "small_airport", + "name": "Epps Airpark", + "latitude_deg": "34.86479949951172", + "longitude_deg": "-86.77030181884766", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Harvest", + "scheduled_service": "no", + "gps_code": "00AL", + "local_code": "00AL" + }, + { + "id": "6526", + "ident": "00AR", + "type": "closed", + "name": "Newport Hospital & Clinic Heliport", + "latitude_deg": "35.6087", + "longitude_deg": "-91.254898", + "elevation_ft": "237", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Newport", + "scheduled_service": "no", + "keywords": "00AR" + }, + { + "id": "322127", + "ident": "00AS", + "type": "small_airport", + "name": "Fulton Airport", + "latitude_deg": "34.9428028", + "longitude_deg": "-97.8180194", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Alex", + "scheduled_service": "no", + "gps_code": "00AS", + "local_code": "00AS" + }, + { + "id": "6527", + "ident": "00AZ", + "type": "small_airport", + "name": "Cordes Airport", + "latitude_deg": "34.305599212646484", + "longitude_deg": "-112.16500091552734", + "elevation_ft": "3810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Cordes", + "scheduled_service": "no", + "gps_code": "00AZ", + "local_code": "00AZ" + }, + { + "id": "6528", + "ident": "00CA", + "type": "small_airport", + "name": "Goldstone (GTS) Airport", + "latitude_deg": "35.35474", + "longitude_deg": "-116.885329", + "elevation_ft": "3038", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Barstow", + "scheduled_service": "no", + "gps_code": "00CA", + "local_code": "00CA" + }, + { + "id": "324424", + "ident": "00CL", + "type": "small_airport", + "name": "Williams Ag Airport", + "latitude_deg": "39.427188", + "longitude_deg": "-121.763427", + "elevation_ft": "87", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Biggs", + "scheduled_service": "no", + "gps_code": "00CL", + "local_code": "00CL" + }, + { + "id": "322658", + "ident": "00CN", + "type": "heliport", + "name": "Kitchen Creek Helibase Heliport", + "latitude_deg": "32.7273736", + "longitude_deg": "-116.4597417", + "elevation_ft": "3350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pine Valley", + "scheduled_service": "no", + "gps_code": "00CN", + "local_code": "00CN" + }, + { + "id": "6529", + "ident": "00CO", + "type": "closed", + "name": "Cass Field", + "latitude_deg": "40.622202", + "longitude_deg": "-104.344002", + "elevation_ft": "4830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Briggsdale", + "scheduled_service": "no", + "keywords": "00CO" + }, + { + "id": "6531", + "ident": "00FA", + "type": "small_airport", + "name": "Grass Patch Airport", + "latitude_deg": "28.64550018310547", + "longitude_deg": "-82.21900177001953", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bushnell", + "scheduled_service": "no", + "gps_code": "00FA", + "local_code": "00FA" + }, + { + "id": "6532", + "ident": "00FD", + "type": "closed", + "name": "Ringhaver Heliport", + "latitude_deg": "28.8466", + "longitude_deg": "-82.345398", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Riverview", + "scheduled_service": "no", + "keywords": "00FD" + }, + { + "id": "6533", + "ident": "00FL", + "type": "small_airport", + "name": "River Oak Airport", + "latitude_deg": "27.230899810791016", + "longitude_deg": "-80.96920013427734", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Okeechobee", + "scheduled_service": "no", + "gps_code": "00FL", + "local_code": "00FL" + }, + { + "id": "6534", + "ident": "00GA", + "type": "small_airport", + "name": "Lt World Airport", + "latitude_deg": "33.76750183105469", + "longitude_deg": "-84.06829833984375", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Lithonia", + "scheduled_service": "no", + "gps_code": "00GA", + "local_code": "00GA" + }, + { + "id": "6535", + "ident": "00GE", + "type": "heliport", + "name": "Caffrey Heliport", + "latitude_deg": "33.887982", + "longitude_deg": "-84.736983", + "elevation_ft": "957", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Hiram", + "scheduled_service": "no", + "gps_code": "00GE", + "local_code": "00GE" + }, + { + "id": "6536", + "ident": "00HI", + "type": "heliport", + "name": "Kaupulehu Heliport", + "latitude_deg": "19.832881", + "longitude_deg": "-155.978347", + "elevation_ft": "43", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kailua-Kona", + "scheduled_service": "no", + "gps_code": "00HI", + "local_code": "00HI" + }, + { + "id": "6537", + "ident": "00ID", + "type": "small_airport", + "name": "Delta Shores Airport", + "latitude_deg": "48.145301818847656", + "longitude_deg": "-116.21399688720703", + "elevation_ft": "2064", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Clark Fork", + "scheduled_service": "no", + "gps_code": "00ID", + "local_code": "00ID" + }, + { + "id": "322581", + "ident": "00IG", + "type": "small_airport", + "name": "Goltl Airport", + "latitude_deg": "39.724028", + "longitude_deg": "-101.395994", + "elevation_ft": "3359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "McDonald", + "scheduled_service": "no", + "gps_code": "00IG", + "local_code": "00IG" + }, + { + "id": "6538", + "ident": "00II", + "type": "closed", + "name": "Bailey Generation Station Heliport", + "latitude_deg": "41.644501", + "longitude_deg": "-87.122803", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Chesterton", + "scheduled_service": "no", + "keywords": "00II" + }, + { + "id": "6539", + "ident": "00IL", + "type": "small_airport", + "name": "Hammer Airport", + "latitude_deg": "41.978401", + "longitude_deg": "-89.560402", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Polo", + "scheduled_service": "no", + "gps_code": "00IL", + "local_code": "00IL", + "keywords": "Radio Ranch" + }, + { + "id": "6540", + "ident": "00IN", + "type": "heliport", + "name": "St Mary Medical Center Heliport", + "latitude_deg": "41.51139831542969", + "longitude_deg": "-87.2605972290039", + "elevation_ft": "634", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hobart", + "scheduled_service": "no", + "gps_code": "00IN", + "local_code": "00IN" + }, + { + "id": "6541", + "ident": "00IS", + "type": "small_airport", + "name": "Hayenga's Cant Find Farms Airport", + "latitude_deg": "40.02560043334961", + "longitude_deg": "-89.1229019165039", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Kings", + "scheduled_service": "no", + "gps_code": "00IS", + "local_code": "00IS" + }, + { + "id": "6542", + "ident": "00KS", + "type": "small_airport", + "name": "Hayden Farm Airport", + "latitude_deg": "38.72779846191406", + "longitude_deg": "-94.93049621582031", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Gardner", + "scheduled_service": "no", + "gps_code": "00KS", + "local_code": "00KS" + }, + { + "id": "6543", + "ident": "00KY", + "type": "small_airport", + "name": "Robbins Roost Airport", + "latitude_deg": "37.409400939941406", + "longitude_deg": "-84.61969757080078", + "elevation_ft": "1265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Stanford", + "scheduled_service": "no", + "gps_code": "00KY", + "local_code": "00KY" + }, + { + "id": "45437", + "ident": "00LA", + "type": "heliport", + "name": "Shell Chemical East Site Heliport", + "latitude_deg": "30.191944", + "longitude_deg": "-90.980833", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Gonzales", + "scheduled_service": "no", + "gps_code": "00LA", + "local_code": "00LA" + }, + { + "id": "6544", + "ident": "00LL", + "type": "heliport", + "name": "Ac & R Components Heliport", + "latitude_deg": "39.66529846191406", + "longitude_deg": "-89.70559692382812", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chatham", + "scheduled_service": "no", + "gps_code": "00LL", + "local_code": "00LL" + }, + { + "id": "6545", + "ident": "00LS", + "type": "small_airport", + "name": "Lejeune Airport", + "latitude_deg": "30.136299", + "longitude_deg": "-92.429398", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Crowley", + "scheduled_service": "no", + "gps_code": "00LS", + "local_code": "00LS" + }, + { + "id": "6546", + "ident": "00MD", + "type": "small_airport", + "name": "Slater Field", + "latitude_deg": "38.75709915161133", + "longitude_deg": "-75.75379943847656", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Federalsburg", + "scheduled_service": "no", + "gps_code": "00MD", + "local_code": "00MD" + }, + { + "id": "6547", + "ident": "00MI", + "type": "heliport", + "name": "Dow Chemical Heliport", + "latitude_deg": "43.94940185546875", + "longitude_deg": "-86.41670227050781", + "elevation_ft": "588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ludington", + "scheduled_service": "no", + "gps_code": "00MI", + "local_code": "00MI" + }, + { + "id": "6548", + "ident": "00MN", + "type": "small_airport", + "name": "Battle Lake Municipal Airport", + "latitude_deg": "46.29999923706055", + "longitude_deg": "-95.70030212402344", + "elevation_ft": "1365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Battle Lake", + "scheduled_service": "no", + "gps_code": "00MN", + "local_code": "00MN" + }, + { + "id": "6549", + "ident": "00MO", + "type": "small_airport", + "name": "Cooper Flying Service Airport", + "latitude_deg": "37.202800750732", + "longitude_deg": "-94.412399291992", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Alba", + "scheduled_service": "no", + "gps_code": "00MO", + "local_code": "00MO", + "keywords": "5K8" + }, + { + "id": "324642", + "ident": "00MT", + "type": "heliport", + "name": "Livingston Healthcare Heliport", + "latitude_deg": "45.675", + "longitude_deg": "-110.52515", + "elevation_ft": "4465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Livingston", + "scheduled_service": "no", + "gps_code": "00MT", + "local_code": "00MT" + }, + { + "id": "6551", + "ident": "00N", + "type": "small_airport", + "name": "Bucks Airport", + "latitude_deg": "39.473201751708984", + "longitude_deg": "-75.1852035522461", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bridgeton", + "scheduled_service": "no", + "gps_code": "00N", + "local_code": "00N" + }, + { + "id": "6552", + "ident": "00NC", + "type": "small_airport", + "name": "North Raleigh Airport", + "latitude_deg": "36.085201263427734", + "longitude_deg": "-78.37139892578125", + "elevation_ft": "348", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Louisburg", + "scheduled_service": "no", + "gps_code": "00NC", + "local_code": "00NC" + }, + { + "id": "6553", + "ident": "00NJ", + "type": "heliport", + "name": "Colgate-Piscataway Heliport", + "latitude_deg": "40.52090072631836", + "longitude_deg": "-74.47460174560547", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "New Brunswick", + "scheduled_service": "no", + "gps_code": "00NJ", + "local_code": "00NJ" + }, + { + "id": "321919", + "ident": "00NK", + "type": "seaplane_base", + "name": "Cliche Cove Seaplane Base", + "latitude_deg": "44.8118612", + "longitude_deg": "-73.3698057", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Beekmantown", + "scheduled_service": "no", + "gps_code": "00NK", + "local_code": "00NK" + }, + { + "id": "6554", + "ident": "00NY", + "type": "small_airport", + "name": "Weiss Airfield", + "latitude_deg": "42.90010070800781", + "longitude_deg": "-77.49970245361328", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "West Bloomfield", + "scheduled_service": "no", + "gps_code": "00NY", + "local_code": "00NY" + }, + { + "id": "6555", + "ident": "00OH", + "type": "closed", + "name": "Exit 3 Airport", + "latitude_deg": "41.590476", + "longitude_deg": "-84.141583", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wauseon", + "scheduled_service": "no", + "keywords": "64D, 00OH" + }, + { + "id": "6556", + "ident": "00OI", + "type": "heliport", + "name": "Miami Valley Hospital Heliport", + "latitude_deg": "39.745091", + "longitude_deg": "-84.187278", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dayton", + "scheduled_service": "no", + "gps_code": "00OI", + "local_code": "00OI" + }, + { + "id": "328503", + "ident": "00OK", + "type": "small_airport", + "name": "Gull Bay Landing Airport", + "latitude_deg": "36.198598", + "longitude_deg": "-96.217693", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Sandsprings", + "scheduled_service": "no", + "gps_code": "00OK", + "local_code": "00OK" + }, + { + "id": "6557", + "ident": "00OR", + "type": "heliport", + "name": "Steel Systems Heliport", + "latitude_deg": "44.932899475097656", + "longitude_deg": "-123.12999725341797", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "00OR", + "local_code": "00OR" + }, + { + "id": "6558", + "ident": "00PA", + "type": "heliport", + "name": "R J D Heliport", + "latitude_deg": "39.94889831542969", + "longitude_deg": "-75.74690246582031", + "elevation_ft": "402", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Coatesville", + "scheduled_service": "no", + "gps_code": "00PA", + "local_code": "00PA" + }, + { + "id": "45773", + "ident": "00PN", + "type": "small_airport", + "name": "Ferrell Field", + "latitude_deg": "41.2995", + "longitude_deg": "-80.211111", + "elevation_ft": "1301", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mercer", + "scheduled_service": "no", + "gps_code": "00PN", + "local_code": "00PN" + }, + { + "id": "6559", + "ident": "00PS", + "type": "closed", + "name": "Thomas Field", + "latitude_deg": "40.3778", + "longitude_deg": "-77.365303", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Loysville", + "scheduled_service": "no", + "keywords": "00PS" + }, + { + "id": "6560", + "ident": "00S", + "type": "small_airport", + "name": "McKenzie Bridge State Airport", + "latitude_deg": "44.181466", + "longitude_deg": "-122.086", + "elevation_ft": "1620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Blue River", + "scheduled_service": "no", + "local_code": "00S", + "wikipedia_link": "https://en.wikipedia.org/wiki/McKenzie_Bridge_State_Airport" + }, + { + "id": "6561", + "ident": "00SC", + "type": "small_airport", + "name": "Flying O Airport", + "latitude_deg": "34.0093994140625", + "longitude_deg": "-80.26719665527344", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Sumter", + "scheduled_service": "no", + "gps_code": "00SC", + "local_code": "00SC" + }, + { + "id": "330391", + "ident": "00SD", + "type": "small_airport", + "name": "Homan Field", + "latitude_deg": "44.809158", + "longitude_deg": "-96.498897", + "elevation_ft": "1590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Gary", + "scheduled_service": "no", + "gps_code": "00SD", + "local_code": "00SD" + }, + { + "id": "6562", + "ident": "00TA", + "type": "closed", + "name": "SW Region FAA Heliport", + "latitude_deg": "32.8269", + "longitude_deg": "-97.305801", + "elevation_ft": "598", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "keywords": "00TA" + }, + { + "id": "6563", + "ident": "00TE", + "type": "heliport", + "name": "Tcjc-Northeast Campus Heliport", + "latitude_deg": "32.847599029541016", + "longitude_deg": "-97.18949890136719", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "00TE", + "local_code": "00TE" + }, + { + "id": "6564", + "ident": "00TN", + "type": "small_airport", + "name": "Ragsdale Road Airport", + "latitude_deg": "35.515899658203125", + "longitude_deg": "-85.95359802246094", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Manchester", + "scheduled_service": "no", + "gps_code": "00TN", + "local_code": "00TN" + }, + { + "id": "6565", + "ident": "00TS", + "type": "small_airport", + "name": "Alpine Range Airport", + "latitude_deg": "32.607601165771484", + "longitude_deg": "-97.24199676513672", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Everman", + "scheduled_service": "no", + "gps_code": "00TS", + "local_code": "00TS" + }, + { + "id": "6566", + "ident": "00TX", + "type": "closed", + "name": "San Jacinto Methodist Hospital Heliport", + "latitude_deg": "29.7377", + "longitude_deg": "-94.980201", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Baytown", + "scheduled_service": "no", + "keywords": "00TX" + }, + { + "id": "6567", + "ident": "00UT", + "type": "closed", + "name": "Clear Creek Ranch Airport", + "latitude_deg": "37.247799", + "longitude_deg": "-112.821998", + "elevation_ft": "6138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Kanab", + "scheduled_service": "no", + "keywords": "00UT, U21" + }, + { + "id": "6568", + "ident": "00VA", + "type": "small_airport", + "name": "Vaughan Airport", + "latitude_deg": "36.57600021", + "longitude_deg": "-78.9991684", + "elevation_ft": "551", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Alton", + "scheduled_service": "no", + "gps_code": "00VA", + "local_code": "00VA" + }, + { + "id": "6569", + "ident": "00VI", + "type": "small_airport", + "name": "Groundhog Mountain Airport", + "latitude_deg": "36.663299560546875", + "longitude_deg": "-80.49949645996094", + "elevation_ft": "2680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Hillsville", + "scheduled_service": "no", + "gps_code": "00VI", + "local_code": "00VI" + }, + { + "id": "6570", + "ident": "00W", + "type": "small_airport", + "name": "Lower Granite State Airport", + "latitude_deg": "46.672884", + "longitude_deg": "-117.441933", + "elevation_ft": "719", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Colfax", + "scheduled_service": "no", + "local_code": "00W", + "home_link": "http://www.wsdot.wa.gov/aviation/AllStateAirports/Colfax_LowerGraniteState.htm", + "keywords": "0WA0" + }, + { + "id": "6571", + "ident": "00WA", + "type": "small_airport", + "name": "Howell Airport", + "latitude_deg": "47.17839813232422", + "longitude_deg": "-122.77200317382812", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Longbranch", + "scheduled_service": "no", + "gps_code": "00WA", + "local_code": "00WA" + }, + { + "id": "6572", + "ident": "00WI", + "type": "small_airport", + "name": "Northern Lite Airport", + "latitude_deg": "44.304298400878906", + "longitude_deg": "-89.05010223388672", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Waupaca", + "scheduled_service": "no", + "gps_code": "00WI", + "local_code": "00WI" + }, + { + "id": "6573", + "ident": "00WN", + "type": "small_airport", + "name": "Hawks Run Airport", + "latitude_deg": "46.25", + "longitude_deg": "-117.2490005493164", + "elevation_ft": "2900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Asotin", + "scheduled_service": "no", + "gps_code": "00WN", + "local_code": "00WN" + }, + { + "id": "6574", + "ident": "00WV", + "type": "small_airport", + "name": "Lazy J. Aerodrome", + "latitude_deg": "38.82889938354492", + "longitude_deg": "-79.86609649658203", + "elevation_ft": "2060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Beverly", + "scheduled_service": "no", + "gps_code": "00WV", + "local_code": "00WV" + }, + { + "id": "322300", + "ident": "00WY", + "type": "heliport", + "name": "Mountain View Regional Hospital Heliport", + "latitude_deg": "42.840361", + "longitude_deg": "-106.224443", + "elevation_ft": "5210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Casper", + "scheduled_service": "no", + "gps_code": "00WY", + "local_code": "00WY" + }, + { + "id": "6575", + "ident": "00XS", + "type": "small_airport", + "name": "L P Askew Farms Airport", + "latitude_deg": "33.03340148925781", + "longitude_deg": "-101.93399810791016", + "elevation_ft": "3110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "O'Donnell", + "scheduled_service": "no", + "gps_code": "00XS", + "local_code": "00XS" + }, + { + "id": "6576", + "ident": "01A", + "type": "small_airport", + "name": "Purkeypile Airport", + "latitude_deg": "62.943599700927734", + "longitude_deg": "-152.27000427246094", + "elevation_ft": "1950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Purkeypile", + "scheduled_service": "no", + "gps_code": "01A", + "local_code": "01A" + }, + { + "id": "6577", + "ident": "01AK", + "type": "heliport", + "name": "Providence Seward Medical Center Heliport", + "latitude_deg": "60.105873975399994", + "longitude_deg": "-149.446249008", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Seward", + "scheduled_service": "no", + "gps_code": "01AK", + "local_code": "01AK" + }, + { + "id": "6578", + "ident": "01AL", + "type": "small_airport", + "name": "Ware Island Airport", + "latitude_deg": "32.94599914550781", + "longitude_deg": "-86.51390075683594", + "elevation_ft": "344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Clanton", + "scheduled_service": "no", + "gps_code": "01AL", + "local_code": "01AL" + }, + { + "id": "356168", + "ident": "01AN", + "type": "small_airport", + "name": "McHone Heights Airport", + "latitude_deg": "61.649095", + "longitude_deg": "-149.339025", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "01AN", + "local_code": "01AN" + }, + { + "id": "6579", + "ident": "01AR", + "type": "heliport", + "name": "DeQueen Medical Center Heliport", + "latitude_deg": "34.047456", + "longitude_deg": "-94.354023", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "DeQueen", + "scheduled_service": "no", + "gps_code": "01AR", + "local_code": "01AR", + "keywords": "Community Hospital of DeQueen Heliport" + }, + { + "id": "6580", + "ident": "01AZ", + "type": "heliport", + "name": "Yat Heliport", + "latitude_deg": "34.607406", + "longitude_deg": "-111.8609", + "elevation_ft": "3300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Camp Verde", + "scheduled_service": "no", + "gps_code": "01AZ", + "local_code": "01AZ" + }, + { + "id": "6581", + "ident": "01C", + "type": "closed", + "name": "Grant Airport", + "latitude_deg": "43.341701507568", + "longitude_deg": "-85.775001525879", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Grant", + "scheduled_service": "no", + "gps_code": "01C", + "local_code": "01C", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grant_Airport" + }, + { + "id": "6582", + "ident": "01CA", + "type": "heliport", + "name": "SCE Lugo Substation Heliport", + "latitude_deg": "34.368241", + "longitude_deg": "-117.370059", + "elevation_ft": "3733", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hesperia", + "scheduled_service": "no", + "gps_code": "01CA", + "local_code": "01CA" + }, + { + "id": "6583", + "ident": "01CL", + "type": "small_airport", + "name": "Swansboro Country Airport", + "latitude_deg": "38.79990005493164", + "longitude_deg": "-120.73400115966797", + "elevation_ft": "2594", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Placerville", + "scheduled_service": "no", + "gps_code": "01CL", + "local_code": "01CL" + }, + { + "id": "6584", + "ident": "01CN", + "type": "closed", + "name": "Los Angeles County Sheriff's Department Heliport", + "latitude_deg": "34.0378", + "longitude_deg": "-118.153999", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "keywords": "01CN" + }, + { + "id": "6585", + "ident": "01CO", + "type": "heliport", + "name": "St Vincent General Hospital Heliport", + "latitude_deg": "39.24530029296875", + "longitude_deg": "-106.24600219726562", + "elevation_ft": "10175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Leadville", + "scheduled_service": "no", + "gps_code": "01CO", + "local_code": "01CO" + }, + { + "id": "6586", + "ident": "01CT", + "type": "heliport", + "name": "Berlin Fairgrounds Heliport", + "latitude_deg": "41.62730026245117", + "longitude_deg": "-72.72750091552734", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Berlin", + "scheduled_service": "no", + "gps_code": "01CT", + "local_code": "01CT" + }, + { + "id": "6587", + "ident": "01FA", + "type": "small_airport", + "name": "Rybolt Ranch Airport", + "latitude_deg": "28.589399337768555", + "longitude_deg": "-81.14420318603516", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "01FA", + "local_code": "01FA" + }, + { + "id": "6588", + "ident": "01FD", + "type": "heliport", + "name": "Advent Health Altamonte Springs Heliport", + "latitude_deg": "28.666639", + "longitude_deg": "-81.3697", + "elevation_ft": "86", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Altamonte Springs", + "scheduled_service": "no", + "gps_code": "01FD", + "local_code": "01FD", + "keywords": "Florida Hospital-Altamonte" + }, + { + "id": "6589", + "ident": "01FL", + "type": "small_airport", + "name": "Cedar Knoll Flying Ranch Airport", + "latitude_deg": "28.78190040588379", + "longitude_deg": "-81.1592025756836", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Geneva", + "scheduled_service": "no", + "gps_code": "01FL", + "local_code": "01FL" + }, + { + "id": "6590", + "ident": "01GA", + "type": "heliport", + "name": "Medical Center Heliport", + "latitude_deg": "32.47930145263672", + "longitude_deg": "-84.9791030883789", + "elevation_ft": "319", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "01GA", + "local_code": "01GA" + }, + { + "id": "6591", + "ident": "01GE", + "type": "small_airport", + "name": "The Farm Airport", + "latitude_deg": "32.675106", + "longitude_deg": "-82.771055", + "elevation_ft": "375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Wrightsville", + "scheduled_service": "no", + "gps_code": "01GE", + "local_code": "01GE" + }, + { + "id": "6592", + "ident": "01IA", + "type": "small_airport", + "name": "Stender Airport", + "latitude_deg": "41.66109848022461", + "longitude_deg": "-90.74130249023438", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Maysville", + "scheduled_service": "no", + "gps_code": "01IA", + "local_code": "01IA" + }, + { + "id": "6530", + "ident": "01ID", + "type": "small_airport", + "name": "Lava Hot Springs Airport", + "latitude_deg": "42.6082", + "longitude_deg": "-112.031998", + "elevation_ft": "5268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Lava Hot Springs", + "scheduled_service": "no", + "gps_code": "01ID", + "local_code": "01ID", + "keywords": "Formerly 00E, ID26" + }, + { + "id": "6593", + "ident": "01II", + "type": "small_airport", + "name": "Myers Field", + "latitude_deg": "39.8849983215332", + "longitude_deg": "-86.50669860839844", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lizton", + "scheduled_service": "no", + "gps_code": "01II", + "local_code": "01II" + }, + { + "id": "6594", + "ident": "01IL", + "type": "heliport", + "name": "Hoopeston Community Memorial Hospital Heliport", + "latitude_deg": "40.45859909057617", + "longitude_deg": "-87.65950012207031", + "elevation_ft": "583", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hoopeston", + "scheduled_service": "no", + "gps_code": "01IL", + "local_code": "01IL" + }, + { + "id": "6595", + "ident": "01IN", + "type": "heliport", + "name": "Community Hospital Heliport", + "latitude_deg": "40.13090133666992", + "longitude_deg": "-85.69580078125", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Anderson", + "scheduled_service": "no", + "gps_code": "01IN", + "local_code": "01IN" + }, + { + "id": "6596", + "ident": "01IS", + "type": "small_airport", + "name": "William E. Koenig Airport", + "latitude_deg": "39.01620101928711", + "longitude_deg": "-90.31819915771484", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Dow", + "scheduled_service": "no", + "gps_code": "01IS", + "local_code": "01IS" + }, + { + "id": "6597", + "ident": "01J", + "type": "small_airport", + "name": "Hilliard Airpark", + "latitude_deg": "30.68630027770996", + "longitude_deg": "-81.90570068359375", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Hilliard", + "scheduled_service": "no", + "gps_code": "01J", + "local_code": "01J" + }, + { + "id": "6598", + "ident": "01K", + "type": "small_airport", + "name": "Caldwell Municipal Airport", + "latitude_deg": "37.03609848022461", + "longitude_deg": "-97.5864028930664", + "elevation_ft": "1157", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Caldwell", + "scheduled_service": "no", + "gps_code": "01K", + "local_code": "01K" + }, + { + "id": "6599", + "ident": "01KS", + "type": "small_airport", + "name": "Flying N Ranch Airport", + "latitude_deg": "38.54059982299805", + "longitude_deg": "-97.00330352783203", + "elevation_ft": "1485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Lost Springs", + "scheduled_service": "no", + "gps_code": "01KS", + "local_code": "01KS" + }, + { + "id": "6600", + "ident": "01KY", + "type": "heliport", + "name": "Lourdes Hospital Heliport", + "latitude_deg": "37.051700592041016", + "longitude_deg": "-88.64689636230469", + "elevation_ft": "419", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Paducah", + "scheduled_service": "no", + "gps_code": "01KY", + "local_code": "01KY" + }, + { + "id": "6601", + "ident": "01LA", + "type": "small_airport", + "name": "Barham Airport", + "latitude_deg": "32.638999938964844", + "longitude_deg": "-91.77369689941406", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Oak Ridge", + "scheduled_service": "no", + "gps_code": "01LA", + "local_code": "01LA" + }, + { + "id": "6602", + "ident": "01LL", + "type": "small_airport", + "name": "Schumaier Restricted Landing Area", + "latitude_deg": "38.12580108642578", + "longitude_deg": "-89.46389770507812", + "elevation_ft": "555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pinckneyville", + "scheduled_service": "no", + "gps_code": "01LL", + "local_code": "01LL" + }, + { + "id": "6603", + "ident": "01LS", + "type": "small_airport", + "name": "Country Breeze Airport", + "latitude_deg": "30.722478", + "longitude_deg": "-91.077372", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Slaughter", + "scheduled_service": "no", + "gps_code": "01LS", + "local_code": "01LS" + }, + { + "id": "6604", + "ident": "01MA", + "type": "heliport", + "name": "Compaq Andover Heliport", + "latitude_deg": "42.625099182128906", + "longitude_deg": "-71.18009948730469", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Andover", + "scheduled_service": "no", + "gps_code": "01MA", + "local_code": "01MA" + }, + { + "id": "6605", + "ident": "01MD", + "type": "seaplane_base", + "name": "Annapolis Seaplane Base", + "latitude_deg": "38.999199", + "longitude_deg": "-76.456001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Annapolis", + "scheduled_service": "no", + "gps_code": "01MD", + "local_code": "01MD" + }, + { + "id": "6606", + "ident": "01ME", + "type": "seaplane_base", + "name": "Saint Peter's Seaplane Base", + "latitude_deg": "46.778900146484375", + "longitude_deg": "-68.50029754638672", + "elevation_ft": "608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Portage Lake", + "scheduled_service": "no", + "gps_code": "01ME", + "local_code": "01ME" + }, + { + "id": "6607", + "ident": "01MI", + "type": "heliport", + "name": "Flow Through Terminal Heliport", + "latitude_deg": "43.04949951171875", + "longitude_deg": "-83.67970275878906", + "elevation_ft": "736", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Flint", + "scheduled_service": "no", + "gps_code": "01MI", + "local_code": "01MI" + }, + { + "id": "6608", + "ident": "01MN", + "type": "seaplane_base", + "name": "Barnes Seaplane Base", + "latitude_deg": "47.899600982666016", + "longitude_deg": "-92.55740356445312", + "elevation_ft": "1358", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Cook", + "scheduled_service": "no", + "gps_code": "01MN", + "local_code": "01MN" + }, + { + "id": "6609", + "ident": "01MO", + "type": "heliport", + "name": "Highway Patrol Troop C Headquarters Heliport", + "latitude_deg": "38.641700744628906", + "longitude_deg": "-90.48429870605469", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Town and Country", + "scheduled_service": "no", + "gps_code": "01MO", + "local_code": "01MO" + }, + { + "id": "6610", + "ident": "01MT", + "type": "small_airport", + "name": "Crystal Lakes Resort Airport", + "latitude_deg": "48.789100646972656", + "longitude_deg": "-114.87999725341797", + "elevation_ft": "3141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Fortine", + "scheduled_service": "no", + "gps_code": "01MT", + "local_code": "01MT" + }, + { + "id": "356169", + "ident": "01MU", + "type": "heliport", + "name": "NWMC - Houghton Heliport", + "latitude_deg": "32.196747", + "longitude_deg": "-110.775142", + "elevation_ft": "2873", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no", + "gps_code": "01MU", + "local_code": "01MU" + }, + { + "id": "6611", + "ident": "01NC", + "type": "small_airport", + "name": "Topsail Airpark", + "latitude_deg": "34.47529983520508", + "longitude_deg": "-77.5813980102539", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Holly Ridge", + "scheduled_service": "no", + "gps_code": "01NC", + "local_code": "01NC" + }, + { + "id": "6612", + "ident": "01NE", + "type": "closed", + "name": "Detour Airport", + "latitude_deg": "40.843619", + "longitude_deg": "-100.651503", + "elevation_ft": "3000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Wellfleet", + "scheduled_service": "no", + "keywords": "01NE" + }, + { + "id": "6613", + "ident": "01NH", + "type": "small_airport", + "name": "Moore Airfield", + "latitude_deg": "43.6445", + "longitude_deg": "-72.086998", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Canaan", + "scheduled_service": "no", + "gps_code": "01NH", + "local_code": "01NH", + "keywords": "Enfield" + }, + { + "id": "6614", + "ident": "01NJ", + "type": "heliport", + "name": "Albert Guido Memorial Heliport", + "latitude_deg": "40.739956", + "longitude_deg": "-74.136128", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Newark", + "scheduled_service": "no", + "gps_code": "01NJ", + "local_code": "01NJ" + }, + { + "id": "45537", + "ident": "01NM", + "type": "small_airport", + "name": "Champion Ranch Airport", + "latitude_deg": "33.008611", + "longitude_deg": "-104.540278", + "elevation_ft": "3630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Lake Arthur", + "scheduled_service": "no", + "gps_code": "01NM", + "local_code": "01NM" + }, + { + "id": "6615", + "ident": "01NV", + "type": "small_airport", + "name": "Lantana Ranch Airport", + "latitude_deg": "38.76390075683594", + "longitude_deg": "-119.0270004272461", + "elevation_ft": "4600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Yerington", + "scheduled_service": "no", + "gps_code": "01NV", + "local_code": "01NV" + }, + { + "id": "6616", + "ident": "01NY", + "type": "heliport", + "name": "Vassar Hospital Heliport", + "latitude_deg": "41.692415", + "longitude_deg": "-73.93683", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Poughkeepsie", + "scheduled_service": "no", + "gps_code": "01NY", + "local_code": "01NY" + }, + { + "id": "347920", + "ident": "01OH", + "type": "heliport", + "name": "Atrium Medical Center Heliport", + "latitude_deg": "39.497455", + "longitude_deg": "-84.313851", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Middletown", + "scheduled_service": "no", + "gps_code": "01OH", + "local_code": "01OH" + }, + { + "id": "6617", + "ident": "01OI", + "type": "heliport", + "name": "Avita Health System Galion Hospital Heliport", + "latitude_deg": "40.730267", + "longitude_deg": "-82.802022", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Galion", + "scheduled_service": "no", + "gps_code": "01OI", + "local_code": "01OI", + "keywords": "Galion Community Hospital Heliport" + }, + { + "id": "6618", + "ident": "01OK", + "type": "closed", + "name": "Lawrence Airport", + "latitude_deg": "35.294498", + "longitude_deg": "-98.636496", + "elevation_ft": "1525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Eakly", + "scheduled_service": "no", + "keywords": "01OK" + }, + { + "id": "345166", + "ident": "01OL", + "type": "small_airport", + "name": "Spring Creek Ranch East Airport", + "latitude_deg": "34.391667", + "longitude_deg": "-96.690833", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tishomingo", + "scheduled_service": "no", + "gps_code": "01OL", + "local_code": "01OL" + }, + { + "id": "6619", + "ident": "01OR", + "type": "closed", + "name": "Red & White Flying Service Airport", + "latitude_deg": "43.119301", + "longitude_deg": "-121.044997", + "elevation_ft": "4346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Silver Lake", + "scheduled_service": "no", + "keywords": "01OR" + }, + { + "id": "6620", + "ident": "01PA", + "type": "closed", + "name": "Pine Heliport", + "latitude_deg": "40.655602", + "longitude_deg": "-80.050903", + "elevation_ft": "1215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mars", + "scheduled_service": "no", + "keywords": "01PA" + }, + { + "id": "6621", + "ident": "01PN", + "type": "small_airport", + "name": "Bierly(Personal Use) Airport", + "latitude_deg": "40.930599212646484", + "longitude_deg": "-77.73889923095703", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bellefonte", + "scheduled_service": "no", + "gps_code": "01PN", + "local_code": "01PN" + }, + { + "id": "6622", + "ident": "01PS", + "type": "small_airport", + "name": "Nort's Resort Airport", + "latitude_deg": "41.59590148925781", + "longitude_deg": "-76.02960205078125", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Meshoppen", + "scheduled_service": "no", + "gps_code": "01PS", + "local_code": "01PS" + }, + { + "id": "6623", + "ident": "01SC", + "type": "small_airport", + "name": "York Airport", + "latitude_deg": "35.032100677490234", + "longitude_deg": "-81.25279998779297", + "elevation_ft": "779", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "York", + "scheduled_service": "no", + "gps_code": "01SC", + "local_code": "01SC" + }, + { + "id": "6624", + "ident": "01TA", + "type": "heliport", + "name": "Thirty Thirty Matlock Office Center Heliport", + "latitude_deg": "32.69419860839844", + "longitude_deg": "-97.11579895019531", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "01TA", + "local_code": "01TA" + }, + { + "id": "6625", + "ident": "01TE", + "type": "small_airport", + "name": "Smith Field", + "latitude_deg": "32.73759841918945", + "longitude_deg": "-96.4280014038086", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Forney", + "scheduled_service": "no", + "gps_code": "01TE", + "local_code": "01TE" + }, + { + "id": "6626", + "ident": "01TN", + "type": "small_airport", + "name": "Colonial Air Park", + "latitude_deg": "34.99589920043945", + "longitude_deg": "-89.73059844970703", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Collierville", + "scheduled_service": "no", + "gps_code": "01TN", + "local_code": "01TN" + }, + { + "id": "6627", + "ident": "01TS", + "type": "closed", + "name": "St Joseph Hospital Heliport", + "latitude_deg": "32.7285", + "longitude_deg": "-97.324501", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "keywords": "01TS" + }, + { + "id": "340858", + "ident": "01TT", + "type": "heliport", + "name": "Clute Fire & EMS Station #1 Heliport", + "latitude_deg": "29.012067", + "longitude_deg": "-95.402119", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Clute", + "scheduled_service": "no", + "gps_code": "01TT", + "local_code": "01TT" + }, + { + "id": "6628", + "ident": "01TX", + "type": "closed", + "name": "Mims Farm Ultralightport", + "latitude_deg": "32.388115", + "longitude_deg": "-96.877398", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waxahachie", + "scheduled_service": "no", + "keywords": "01TX" + }, + { + "id": "6629", + "ident": "01U", + "type": "small_airport", + "name": "Duckwater Airport", + "latitude_deg": "38.849785", + "longitude_deg": "-115.634987", + "elevation_ft": "5124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Duckwater", + "scheduled_service": "no", + "gps_code": "K01U", + "local_code": "01U" + }, + { + "id": "6630", + "ident": "01UT", + "type": "small_airport", + "name": "La Sal Junction Airport", + "latitude_deg": "38.30830001831055", + "longitude_deg": "-109.39600372314453", + "elevation_ft": "6000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "La Sal", + "scheduled_service": "no", + "gps_code": "01UT", + "local_code": "01UT" + }, + { + "id": "6631", + "ident": "01VA", + "type": "small_airport", + "name": "Pickles Airport", + "latitude_deg": "39.125", + "longitude_deg": "-77.9250030518", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Berryville", + "scheduled_service": "no", + "gps_code": "01VA", + "local_code": "01VA" + }, + { + "id": "6632", + "ident": "01WA", + "type": "heliport", + "name": "Willapa Harbor Heliport", + "latitude_deg": "46.66320037841797", + "longitude_deg": "-123.81199645996094", + "elevation_ft": "154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "South Bend", + "scheduled_service": "no", + "gps_code": "01WA", + "local_code": "01WA" + }, + { + "id": "6633", + "ident": "01WI", + "type": "small_airport", + "name": "Prehn Cranberry Company Airport", + "latitude_deg": "44.0099983215332", + "longitude_deg": "-90.38919830322266", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Tomah", + "scheduled_service": "no", + "gps_code": "01WI", + "local_code": "01WI" + }, + { + "id": "6634", + "ident": "01WN", + "type": "heliport", + "name": "Whidbey General Hospital Heliport", + "latitude_deg": "48.213401794433594", + "longitude_deg": "-122.68499755859375", + "elevation_ft": "103", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Coupeville", + "scheduled_service": "no", + "gps_code": "01WN", + "local_code": "01WN" + }, + { + "id": "45900", + "ident": "01WT", + "type": "heliport", + "name": "Odyssey Heliport", + "latitude_deg": "47.518178", + "longitude_deg": "-122.210908", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Renton", + "scheduled_service": "no", + "gps_code": "01WT", + "local_code": "01WT" + }, + { + "id": "6635", + "ident": "01WY", + "type": "small_airport", + "name": "Keyhole Airport", + "latitude_deg": "44.348312", + "longitude_deg": "-104.8106", + "elevation_ft": "4250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Pine Haven", + "scheduled_service": "no", + "gps_code": "01WY", + "local_code": "01WY" + }, + { + "id": "46288", + "ident": "01XA", + "type": "heliport", + "name": "Ascension Seton Hays Heliport", + "latitude_deg": "30.007222", + "longitude_deg": "-97.853333", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kyle", + "scheduled_service": "no", + "gps_code": "01XA", + "local_code": "01XA", + "keywords": "Seton Medical Center Hays Heliport" + }, + { + "id": "6636", + "ident": "01XS", + "type": "heliport", + "name": "Meadowood Ranch Heliport", + "latitude_deg": "32.020198822021484", + "longitude_deg": "-95.74549865722656", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Athens", + "scheduled_service": "no", + "gps_code": "01XS", + "local_code": "01XS" + }, + { + "id": "335815", + "ident": "02AA", + "type": "small_airport", + "name": "Barefoot Airport", + "latitude_deg": "61.506147", + "longitude_deg": "-149.912825", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "02AA", + "local_code": "02AA", + "keywords": "H & H Field" + }, + { + "id": "6637", + "ident": "02AK", + "type": "small_airport", + "name": "Rustic Wilderness Airport", + "latitude_deg": "61.876907", + "longitude_deg": "-150.097626", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Willow", + "scheduled_service": "no", + "gps_code": "02AK", + "local_code": "02AK" + }, + { + "id": "6638", + "ident": "02AL", + "type": "small_airport", + "name": "Bass Field", + "latitude_deg": "30.37150001525879", + "longitude_deg": "-87.76439666748047", + "elevation_ft": "61", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Foley", + "scheduled_service": "no", + "gps_code": "02AL", + "local_code": "02AL" + }, + { + "id": "43030", + "ident": "02AR", + "type": "closed", + "name": "Three Rivers Airport", + "latitude_deg": "34.822445", + "longitude_deg": "-92.44442", + "elevation_ft": "264", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Little Rock", + "scheduled_service": "no", + "keywords": "02AR" + }, + { + "id": "6640", + "ident": "02AZ", + "type": "closed", + "name": "Winchester Farm Airstrip", + "latitude_deg": "32.376401", + "longitude_deg": "-109.936996", + "elevation_ft": "4200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Willcox", + "scheduled_service": "no", + "keywords": "02AZ" + }, + { + "id": "6641", + "ident": "02CA", + "type": "heliport", + "name": "Swepi Beta Platform Ellen Heliport", + "latitude_deg": "33.58250045776367", + "longitude_deg": "-118.12899780273438", + "elevation_ft": "122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Huntington Beach", + "scheduled_service": "no", + "gps_code": "02CA", + "local_code": "02CA" + }, + { + "id": "6642", + "ident": "02CD", + "type": "small_airport", + "name": "Shannon Field", + "latitude_deg": "34.129600524902344", + "longitude_deg": "-90.52400207519531", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Clarksdale", + "scheduled_service": "no", + "gps_code": "02CD", + "local_code": "02CD" + }, + { + "id": "6643", + "ident": "02CL", + "type": "small_airport", + "name": "Conover Air Lodge Airport", + "latitude_deg": "34.761101", + "longitude_deg": "-119.058998", + "elevation_ft": "5160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Frazier Park", + "scheduled_service": "no", + "gps_code": "02CL", + "local_code": "02CL", + "keywords": "04L" + }, + { + "id": "6644", + "ident": "02CO", + "type": "small_airport", + "name": "Mc Cullough Airport", + "latitude_deg": "37.64329910279999", + "longitude_deg": "-106.04699707", + "elevation_ft": "7615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Monte Vista", + "scheduled_service": "no", + "gps_code": "02CO", + "local_code": "02CO" + }, + { + "id": "6645", + "ident": "02CT", + "type": "heliport", + "name": "Strangers Point Heliport", + "latitude_deg": "41.91960144042969", + "longitude_deg": "-72.44450378417969", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Ellington", + "scheduled_service": "no", + "gps_code": "02CT", + "local_code": "02CT" + }, + { + "id": "6646", + "ident": "02FA", + "type": "small_airport", + "name": "Osborn Airfield", + "latitude_deg": "28.52669906616211", + "longitude_deg": "-81.87480163574219", + "elevation_ft": "121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Groveland", + "scheduled_service": "no", + "gps_code": "02FA", + "local_code": "02FA" + }, + { + "id": "341544", + "ident": "02FD", + "type": "small_airport", + "name": "Triple R Ranch Airport", + "latitude_deg": "30.950976", + "longitude_deg": "-86.635555", + "elevation_ft": "209", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Baker", + "scheduled_service": "no", + "gps_code": "02FD", + "local_code": "02FD" + }, + { + "id": "45347", + "ident": "02FL", + "type": "closed", + "name": "Cuchens Airport", + "latitude_deg": "30.642527", + "longitude_deg": "-86.118779", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Defuniak Springs", + "scheduled_service": "no", + "keywords": "02FL" + }, + { + "id": "6648", + "ident": "02GA", + "type": "small_airport", + "name": "Doug Bolton Field", + "latitude_deg": "34.202598571777344", + "longitude_deg": "-83.42900085449219", + "elevation_ft": "884", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Commerce", + "scheduled_service": "no", + "gps_code": "02GA", + "local_code": "02GA" + }, + { + "id": "6649", + "ident": "02GE", + "type": "small_airport", + "name": "Etowah Fields Airport", + "latitude_deg": "34.17530059814453", + "longitude_deg": "-84.92440032958984", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Euharlee", + "scheduled_service": "no", + "gps_code": "02GE", + "local_code": "02GE" + }, + { + "id": "6650", + "ident": "02HI", + "type": "heliport", + "name": "K3 Helipad Heliport", + "latitude_deg": "21.35839", + "longitude_deg": "-157.94789", + "elevation_ft": "9", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Honolulu", + "scheduled_service": "no", + "gps_code": "02HI", + "local_code": "02HI" + }, + { + "id": "6651", + "ident": "02IA", + "type": "heliport", + "name": "Boone County Hospital Heliport", + "latitude_deg": "42.05609893798828", + "longitude_deg": "-93.87799835205078", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Boone", + "scheduled_service": "no", + "gps_code": "02IA", + "local_code": "02IA" + }, + { + "id": "6652", + "ident": "02ID", + "type": "small_airport", + "name": "Morgan Ranch Airport", + "latitude_deg": "44.55550003051758", + "longitude_deg": "-115.30500030517578", + "elevation_ft": "5634", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cascade", + "scheduled_service": "no", + "gps_code": "02ID", + "local_code": "02ID" + }, + { + "id": "6653", + "ident": "02II", + "type": "small_airport", + "name": "King Ultralightport", + "latitude_deg": "40.06230163574219", + "longitude_deg": "-86.21050262451172", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Westfield", + "scheduled_service": "no", + "gps_code": "02II", + "local_code": "02II" + }, + { + "id": "6654", + "ident": "02IN", + "type": "small_airport", + "name": "Diamond P. Field", + "latitude_deg": "40.208900451660156", + "longitude_deg": "-85.54080200195312", + "elevation_ft": "904", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Muncie", + "scheduled_service": "no", + "gps_code": "02IN", + "local_code": "02IN" + }, + { + "id": "6655", + "ident": "02IS", + "type": "heliport", + "name": "Condell Medical Center Heliport", + "latitude_deg": "42.274600982666016", + "longitude_deg": "-87.9572982788086", + "elevation_ft": "762", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Libertyville", + "scheduled_service": "no", + "gps_code": "02IS", + "local_code": "02IS" + }, + { + "id": "6656", + "ident": "02KS", + "type": "small_airport", + "name": "Jmj Landing Airport", + "latitude_deg": "39.222198486328125", + "longitude_deg": "-96.0552978515625", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "St Marys", + "scheduled_service": "no", + "gps_code": "02KS", + "local_code": "02KS" + }, + { + "id": "327110", + "ident": "02KT", + "type": "heliport", + "name": "St Claire Healthcare Heliport", + "latitude_deg": "38.181441", + "longitude_deg": "-83.443319", + "elevation_ft": "781", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Morehead", + "scheduled_service": "no", + "gps_code": "02KT", + "local_code": "02KT" + }, + { + "id": "6657", + "ident": "02KY", + "type": "heliport", + "name": "Boone National Guard Heliport", + "latitude_deg": "38.190282", + "longitude_deg": "-84.906442", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Frankfort", + "scheduled_service": "no", + "gps_code": "02KY", + "local_code": "02KY" + }, + { + "id": "6658", + "ident": "02LA", + "type": "heliport", + "name": "La State Police Troop G Heliport", + "latitude_deg": "32.53129959106445", + "longitude_deg": "-93.66020202636719", + "elevation_ft": "168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bossier City", + "scheduled_service": "no", + "gps_code": "02LA", + "local_code": "02LA" + }, + { + "id": "6659", + "ident": "02LS", + "type": "heliport", + "name": "Windy Hill Heliport", + "latitude_deg": "30.148300170898438", + "longitude_deg": "-91.91899871826172", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Broussard", + "scheduled_service": "no", + "gps_code": "02LS", + "local_code": "02LS" + }, + { + "id": "6660", + "ident": "02MA", + "type": "heliport", + "name": "Cuttyhunk Heliport", + "latitude_deg": "41.419601", + "longitude_deg": "-70.927002", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Cuttyhunk", + "scheduled_service": "no", + "gps_code": "02MA", + "local_code": "02MA" + }, + { + "id": "322099", + "ident": "02MD", + "type": "small_airport", + "name": "Garner Field", + "latitude_deg": "38.672544", + "longitude_deg": "-76.709739", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Brandywine", + "scheduled_service": "no", + "gps_code": "02MD", + "local_code": "02MD" + }, + { + "id": "6661", + "ident": "02ME", + "type": "small_airport", + "name": "Nadeau's Airfield", + "latitude_deg": "43.537467", + "longitude_deg": "-70.930685", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Acton", + "scheduled_service": "no", + "gps_code": "02ME", + "local_code": "02ME", + "keywords": "Mellion Airport, Old Acton Airfield" + }, + { + "id": "6662", + "ident": "02MI", + "type": "small_airport", + "name": "Fairplains Airpark", + "latitude_deg": "43.157100677490234", + "longitude_deg": "-85.14849853515625", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "02MI", + "local_code": "02MI" + }, + { + "id": "6663", + "ident": "02MN", + "type": "closed", + "name": "Greenbush Municipal Airport", + "latitude_deg": "48.686527", + "longitude_deg": "-96.191976", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Greenbush", + "scheduled_service": "no", + "keywords": "02MN, 02Y" + }, + { + "id": "6664", + "ident": "02MO", + "type": "small_airport", + "name": "Troy Airpark", + "latitude_deg": "39.04999923706055", + "longitude_deg": "-91.03350067138672", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "02MO", + "local_code": "02MO" + }, + { + "id": "6665", + "ident": "02MS", + "type": "small_airport", + "name": "Watts Field", + "latitude_deg": "34.095701", + "longitude_deg": "-90.846131", + "elevation_ft": "153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Rochdale", + "scheduled_service": "no", + "gps_code": "02MS", + "local_code": "02MS" + }, + { + "id": "6666", + "ident": "02MT", + "type": "closed", + "name": "Barrett Field", + "latitude_deg": "47.2374", + "longitude_deg": "-111.74304", + "elevation_ft": "3350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Cascade", + "scheduled_service": "no", + "keywords": "02MT" + }, + { + "id": "6667", + "ident": "02MU", + "type": "closed", + "name": "Timber Line Airpark", + "latitude_deg": "36.655612", + "longitude_deg": "-93.802387", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Cassville", + "scheduled_service": "no", + "keywords": "02MU" + }, + { + "id": "45686", + "ident": "02NC", + "type": "closed", + "name": "Race City Heliport", + "latitude_deg": "35.540477", + "longitude_deg": "-80.598047", + "elevation_ft": "809", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Landis", + "scheduled_service": "no", + "keywords": "02NC" + }, + { + "id": "6668", + "ident": "02NE", + "type": "small_airport", + "name": "Benes Service Airport", + "latitude_deg": "41.074501037597656", + "longitude_deg": "-96.90450286865234", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Valparaiso", + "scheduled_service": "no", + "gps_code": "02NE", + "local_code": "02NE" + }, + { + "id": "6669", + "ident": "02NH", + "type": "seaplane_base", + "name": "Iroquois Landing Seaplane Base", + "latitude_deg": "44.657100677490234", + "longitude_deg": "-71.21910095214844", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Dummer", + "scheduled_service": "no", + "gps_code": "02NH", + "local_code": "02NH" + }, + { + "id": "6670", + "ident": "02NJ", + "type": "heliport", + "name": "Penske Heliport", + "latitude_deg": "40.55730056762695", + "longitude_deg": "-74.46710205078125", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Piscataway", + "scheduled_service": "no", + "gps_code": "02NJ", + "local_code": "02NJ" + }, + { + "id": "6671", + "ident": "02NV", + "type": "small_airport", + "name": "Paiute Meadows Airport", + "latitude_deg": "41.299551", + "longitude_deg": "-118.926709", + "elevation_ft": "4443", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Winnemucca", + "scheduled_service": "no", + "gps_code": "02NV", + "local_code": "02NV" + }, + { + "id": "6672", + "ident": "02NY", + "type": "heliport", + "name": "Hansen Heliport", + "latitude_deg": "43.132598876953125", + "longitude_deg": "-75.65550231933594", + "elevation_ft": "435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Durhamville", + "scheduled_service": "no", + "gps_code": "02NY", + "local_code": "02NY" + }, + { + "id": "6673", + "ident": "02OH", + "type": "small_airport", + "name": "Zimmerman Airport", + "latitude_deg": "41.376399993896484", + "longitude_deg": "-83.08329772949219", + "elevation_ft": "614", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Fremont", + "scheduled_service": "no", + "gps_code": "02OH", + "local_code": "02OH" + }, + { + "id": "6674", + "ident": "02OI", + "type": "small_airport", + "name": "Murtha Airport", + "latitude_deg": "41.801998138427734", + "longitude_deg": "-80.56539916992188", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Conneaut", + "scheduled_service": "no", + "gps_code": "02OI", + "local_code": "02OI" + }, + { + "id": "6675", + "ident": "02OK", + "type": "closed", + "name": "Canon Heliport", + "latitude_deg": "35.458401", + "longitude_deg": "-97.525297", + "elevation_ft": "1191", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "local_code": "02OK", + "keywords": "02OK" + }, + { + "id": "337183", + "ident": "02OL", + "type": "heliport", + "name": "War Veterans Colony Heliport", + "latitude_deg": "34.811412", + "longitude_deg": "-95.307727", + "elevation_ft": "807", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Wilburton", + "scheduled_service": "no", + "gps_code": "02OL", + "local_code": "02OL" + }, + { + "id": "6676", + "ident": "02OR", + "type": "small_airport", + "name": "Rowena Dell Airport", + "latitude_deg": "45.68149948120117", + "longitude_deg": "-121.31600189208984", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "The Dalles", + "scheduled_service": "no", + "gps_code": "02OR", + "local_code": "02OR" + }, + { + "id": "6677", + "ident": "02P", + "type": "heliport", + "name": "Stottle Memorial Heliport", + "latitude_deg": "40.403596", + "longitude_deg": "-77.556602", + "elevation_ft": "591", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Honey Grove", + "scheduled_service": "no", + "gps_code": "26PA", + "local_code": "26PA", + "keywords": "02P, EWT 4" + }, + { + "id": "6678", + "ident": "02PA", + "type": "heliport", + "name": "Lag Iii Heliport", + "latitude_deg": "40.43830108642578", + "longitude_deg": "-79.7699966430664", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Monroeville", + "scheduled_service": "no", + "gps_code": "02PA", + "local_code": "02PA" + }, + { + "id": "6679", + "ident": "02PN", + "type": "heliport", + "name": "Peco Berwyn Heliport", + "latitude_deg": "40.06959915161133", + "longitude_deg": "-75.4552001953125", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Berwyn", + "scheduled_service": "no", + "gps_code": "02PN", + "local_code": "02PN" + }, + { + "id": "6680", + "ident": "02PR", + "type": "small_airport", + "name": "Cuylers Airport", + "latitude_deg": "18.464924", + "longitude_deg": "-66.363773", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Vega Baja", + "scheduled_service": "no", + "gps_code": "02PR", + "local_code": "02PR" + }, + { + "id": "6681", + "ident": "02PS", + "type": "small_airport", + "name": "Hughes Ultralightport", + "latitude_deg": "41.90060043334961", + "longitude_deg": "-77.23030090332031", + "elevation_ft": "1700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tioga", + "scheduled_service": "no", + "gps_code": "02PS", + "local_code": "02PS" + }, + { + "id": "6682", + "ident": "02SC", + "type": "small_airport", + "name": "Harpers Airport", + "latitude_deg": "32.75849914550781", + "longitude_deg": "-81.22480010986328", + "elevation_ft": "111", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Estill", + "scheduled_service": "no", + "gps_code": "02SC", + "local_code": "02SC" + }, + { + "id": "6683", + "ident": "02T", + "type": "small_airport", + "name": "Wise River Airport", + "latitude_deg": "45.769100189208984", + "longitude_deg": "-112.98200225830078", + "elevation_ft": "5830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Wise River", + "scheduled_service": "no", + "gps_code": "02T", + "local_code": "02T" + }, + { + "id": "6684", + "ident": "02TA", + "type": "heliport", + "name": "Matagorda Shore Facility Heliport", + "latitude_deg": "28.722177", + "longitude_deg": "-95.875813", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Matagorda", + "scheduled_service": "no", + "gps_code": "02TA", + "local_code": "02TA" + }, + { + "id": "6685", + "ident": "02TE", + "type": "heliport", + "name": "Baylor Medical Center Heliport", + "latitude_deg": "32.39540100097656", + "longitude_deg": "-96.86419677734375", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waxahachie", + "scheduled_service": "no", + "gps_code": "02TE", + "local_code": "02TE" + }, + { + "id": "6686", + "ident": "02TN", + "type": "small_airport", + "name": "Ellis Field", + "latitude_deg": "35.780355", + "longitude_deg": "-86.585521", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Rockvale", + "scheduled_service": "no", + "gps_code": "02TN", + "local_code": "02TN" + }, + { + "id": "6687", + "ident": "02TS", + "type": "closed", + "name": "FWOMC Heliport", + "latitude_deg": "32.747601", + "longitude_deg": "-97.370003", + "elevation_ft": "684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "keywords": "02TS" + }, + { + "id": "6688", + "ident": "02TX", + "type": "closed", + "name": "The Palms At Kitty Hawk Airport", + "latitude_deg": "33.370403", + "longitude_deg": "-101.922882", + "elevation_ft": "3235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "New Home", + "scheduled_service": "no", + "keywords": "02TX, OLD02TX" + }, + { + "id": "6689", + "ident": "02UT", + "type": "small_airport", + "name": "Lucin Airport", + "latitude_deg": "41.36629867553711", + "longitude_deg": "-113.84300231933594", + "elevation_ft": "4412", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Lucin", + "scheduled_service": "no", + "gps_code": "02UT", + "local_code": "02UT" + }, + { + "id": "6690", + "ident": "02VA", + "type": "small_airport", + "name": "The Greenhouse Airport", + "latitude_deg": "38.435699462890625", + "longitude_deg": "-77.8572006225586", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Culpeper", + "scheduled_service": "no", + "gps_code": "02VA", + "local_code": "02VA" + }, + { + "id": "6691", + "ident": "02VG", + "type": "heliport", + "name": "Northstar Aviation Heliport", + "latitude_deg": "36.63880157470703", + "longitude_deg": "-82.11669921875", + "elevation_ft": "1850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Bristol", + "scheduled_service": "no", + "gps_code": "02VG", + "local_code": "02VG" + }, + { + "id": "6692", + "ident": "02WA", + "type": "small_airport", + "name": "Cawleys South Prairie Airport", + "latitude_deg": "47.15230178833008", + "longitude_deg": "-122.09400177001953", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "South Prairie", + "scheduled_service": "no", + "gps_code": "02WA", + "local_code": "02WA" + }, + { + "id": "6693", + "ident": "02WI", + "type": "small_airport", + "name": "Beer Airport", + "latitude_deg": "45.031898498535156", + "longitude_deg": "-92.65579986572266", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Hudson", + "scheduled_service": "no", + "gps_code": "02WI", + "local_code": "02WI" + }, + { + "id": "6694", + "ident": "02WN", + "type": "small_airport", + "name": "Fowler Field", + "latitude_deg": "48.74580001831055", + "longitude_deg": "-119.31900024414062", + "elevation_ft": "2150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tonasket", + "scheduled_service": "no", + "gps_code": "02WN", + "local_code": "02WN" + }, + { + "id": "330393", + "ident": "02XA", + "type": "small_airport", + "name": "JLS Farms Airport", + "latitude_deg": "33.591319", + "longitude_deg": "-95.882864", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Honey Grove", + "scheduled_service": "no", + "gps_code": "02XA", + "local_code": "02XA" + }, + { + "id": "6695", + "ident": "02XS", + "type": "closed", + "name": "Seidel Ranch Airport", + "latitude_deg": "30.100941", + "longitude_deg": "-97.672607", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "02XS", + "local_code": "02XS" + }, + { + "id": "325508", + "ident": "03AA", + "type": "heliport", + "name": "Trapper T Heliport", + "latitude_deg": "61.556055", + "longitude_deg": "-149.284527", + "elevation_ft": "159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "03AA", + "local_code": "03AA" + }, + { + "id": "6696", + "ident": "03AK", + "type": "seaplane_base", + "name": "Joe Clouds Seaplane Base", + "latitude_deg": "60.72722244262695", + "longitude_deg": "-151.13278198242188", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kenai", + "scheduled_service": "no", + "gps_code": "03AK", + "local_code": "03AK" + }, + { + "id": "6697", + "ident": "03AL", + "type": "heliport", + "name": "Highland Medical Center Heliport", + "latitude_deg": "34.662604", + "longitude_deg": "-86.046774", + "elevation_ft": "628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Scottsboro", + "scheduled_service": "no", + "gps_code": "03AL", + "local_code": "03AL", + "keywords": "Jackson County Hospital Heliport" + }, + { + "id": "6698", + "ident": "03AR", + "type": "heliport", + "name": "Hscmh Heliport", + "latitude_deg": "34.357601165771484", + "longitude_deg": "-92.78849792480469", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Malvern", + "scheduled_service": "no", + "gps_code": "03AR", + "local_code": "03AR" + }, + { + "id": "6699", + "ident": "03AZ", + "type": "small_airport", + "name": "Thompson International Aviation Airport", + "latitude_deg": "31.430971", + "longitude_deg": "-110.088087", + "elevation_ft": "4275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Hereford", + "scheduled_service": "no", + "gps_code": "03AZ", + "local_code": "03AZ" + }, + { + "id": "6700", + "ident": "03CA", + "type": "heliport", + "name": "Grossmont Hospital Heliport", + "latitude_deg": "32.779484", + "longitude_deg": "-117.006952", + "elevation_ft": "634", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "La Mesa", + "scheduled_service": "no", + "gps_code": "03CA", + "local_code": "03CA" + }, + { + "id": "6701", + "ident": "03CO", + "type": "small_airport", + "name": "Kugel-Strong Airport", + "latitude_deg": "40.211608", + "longitude_deg": "-104.744781", + "elevation_ft": "4950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Platteville", + "scheduled_service": "no", + "gps_code": "03CO", + "local_code": "03CO" + }, + { + "id": "6702", + "ident": "03FA", + "type": "small_airport", + "name": "Lake Persimmon Airstrip", + "latitude_deg": "27.353099822998047", + "longitude_deg": "-81.40809631347656", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Placid", + "scheduled_service": "no", + "gps_code": "03FA", + "local_code": "03FA" + }, + { + "id": "6703", + "ident": "03FD", + "type": "closed", + "name": "Tharpe Airport", + "latitude_deg": "30.8288", + "longitude_deg": "-85.731003", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bonifay", + "scheduled_service": "no", + "keywords": "03FD" + }, + { + "id": "6704", + "ident": "03FL", + "type": "heliport", + "name": "Ranger Heliport", + "latitude_deg": "26.683716", + "longitude_deg": "-80.186561", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "West Palm Beach", + "scheduled_service": "no", + "gps_code": "03FL", + "local_code": "03FL" + }, + { + "id": "322717", + "ident": "03GA", + "type": "small_airport", + "name": "HIA Airport", + "latitude_deg": "32.561626", + "longitude_deg": "-81.85509", + "elevation_ft": "238", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Statesboro", + "scheduled_service": "no", + "gps_code": "03GA", + "local_code": "03GA" + }, + { + "id": "6705", + "ident": "03I", + "type": "closed", + "name": "Clarks Dream Strip", + "latitude_deg": "39.644199", + "longitude_deg": "-83.018204", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Circleville", + "scheduled_service": "no", + "keywords": "03I" + }, + { + "id": "6706", + "ident": "03IA", + "type": "closed", + "name": "East Field", + "latitude_deg": "41.581902", + "longitude_deg": "-92.461304", + "elevation_ft": "954", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Montezuma", + "scheduled_service": "no", + "keywords": "03IA" + }, + { + "id": "6707", + "ident": "03ID", + "type": "small_airport", + "name": "Flying Y Ranch Airport", + "latitude_deg": "44.7943000793457", + "longitude_deg": "-116.53299713134766", + "elevation_ft": "3180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Council", + "scheduled_service": "no", + "gps_code": "03ID", + "local_code": "03ID" + }, + { + "id": "6708", + "ident": "03II", + "type": "small_airport", + "name": "Davis Field Ultralightport", + "latitude_deg": "37.9620018005", + "longitude_deg": "-87.7789001465", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "03II", + "local_code": "03II" + }, + { + "id": "6709", + "ident": "03IL", + "type": "small_airport", + "name": "Wix Airport", + "latitude_deg": "41.40230178833008", + "longitude_deg": "-87.81670379638672", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Monee", + "scheduled_service": "no", + "gps_code": "03IL", + "local_code": "03IL" + }, + { + "id": "6710", + "ident": "03IN", + "type": "small_airport", + "name": "Heinzman Airport", + "latitude_deg": "40.18000030517578", + "longitude_deg": "-86.01249694824219", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Arcadia", + "scheduled_service": "no", + "gps_code": "03IN", + "local_code": "03IN" + }, + { + "id": "6711", + "ident": "03IS", + "type": "heliport", + "name": "OSF St Anthony's Health Center Heliport", + "latitude_deg": "38.904999", + "longitude_deg": "-90.173401", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Alton", + "scheduled_service": "no", + "gps_code": "03IS", + "local_code": "03IS", + "keywords": "St Anthony's Hospital" + }, + { + "id": "6712", + "ident": "03KS", + "type": "heliport", + "name": "Valley Grain Heliport", + "latitude_deg": "39.86470031738281", + "longitude_deg": "-95.26409912109375", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Highland", + "scheduled_service": "no", + "gps_code": "03KS", + "local_code": "03KS" + }, + { + "id": "6713", + "ident": "03KY", + "type": "small_airport", + "name": "Flying H Farms Airport", + "latitude_deg": "37.79169845581055", + "longitude_deg": "-87.54139709472656", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Henderson", + "scheduled_service": "no", + "gps_code": "03KY", + "local_code": "03KY" + }, + { + "id": "6714", + "ident": "03LA", + "type": "heliport", + "name": "Damien Heliport", + "latitude_deg": "30.199600219726562", + "longitude_deg": "-91.12789916992188", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Carville", + "scheduled_service": "no", + "gps_code": "03LA", + "local_code": "03LA" + }, + { + "id": "6715", + "ident": "03LS", + "type": "heliport", + "name": "Fmc Nr 1 Heliport", + "latitude_deg": "32.159000396728516", + "longitude_deg": "-91.70800018310547", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Winnsboro", + "scheduled_service": "no", + "gps_code": "03LS", + "local_code": "03LS" + }, + { + "id": "6716", + "ident": "03M", + "type": "seaplane_base", + "name": "Lakeside Marina Seaplane Base", + "latitude_deg": "44.320899963378906", + "longitude_deg": "-69.8895034790039", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "East Winthrop", + "scheduled_service": "no", + "gps_code": "03M", + "local_code": "03M" + }, + { + "id": "6717", + "ident": "03MA", + "type": "small_airport", + "name": "Hadley Airport", + "latitude_deg": "42.393431", + "longitude_deg": "-72.551553", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Hadley", + "scheduled_service": "no", + "gps_code": "03MA", + "local_code": "03MA" + }, + { + "id": "6718", + "ident": "03MD", + "type": "heliport", + "name": "Upper Chesapeake Medical Center Heliport", + "latitude_deg": "39.518427", + "longitude_deg": "-76.346022", + "elevation_ft": "302", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Bel Air", + "scheduled_service": "no", + "gps_code": "03MD", + "local_code": "03MD" + }, + { + "id": "6719", + "ident": "03ME", + "type": "small_airport", + "name": "Maple Ridge Airport", + "latitude_deg": "44.08420181274414", + "longitude_deg": "-70.6272964477539", + "elevation_ft": "556", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Harrison", + "scheduled_service": "no", + "gps_code": "03ME", + "local_code": "03ME" + }, + { + "id": "6720", + "ident": "03MI", + "type": "heliport", + "name": "Harold Miller Heliport", + "latitude_deg": "43.550899505615234", + "longitude_deg": "-83.86219787597656", + "elevation_ft": "585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Bay City", + "scheduled_service": "no", + "gps_code": "03MI", + "local_code": "03MI" + }, + { + "id": "6721", + "ident": "03MN", + "type": "small_airport", + "name": "Nauerth Land Ranch Airport", + "latitude_deg": "43.62519836425781", + "longitude_deg": "-95.22470092773438", + "elevation_ft": "1435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Lakefield", + "scheduled_service": "no", + "gps_code": "03MN", + "local_code": "03MN" + }, + { + "id": "6722", + "ident": "03MO", + "type": "closed", + "name": "Cahoochie Airport", + "latitude_deg": "37.884499", + "longitude_deg": "-93.131599", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Urbana", + "scheduled_service": "no", + "keywords": "03MO" + }, + { + "id": "6723", + "ident": "03MS", + "type": "heliport", + "name": "Vicksburg Medical Center Heliport", + "latitude_deg": "32.31880187988281", + "longitude_deg": "-90.8832015991211", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Vicksburg", + "scheduled_service": "no", + "gps_code": "03MS", + "local_code": "03MS" + }, + { + "id": "6724", + "ident": "03MT", + "type": "small_airport", + "name": "Cascade Field", + "latitude_deg": "47.267327", + "longitude_deg": "-111.71748", + "elevation_ft": "3580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Cascade", + "scheduled_service": "no", + "gps_code": "3MT7", + "local_code": "3MT7", + "keywords": "03MT" + }, + { + "id": "6725", + "ident": "03MU", + "type": "small_airport", + "name": "McDonnell Airport", + "latitude_deg": "38.4925", + "longitude_deg": "-94.412498", + "elevation_ft": "874", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Archie", + "scheduled_service": "no", + "gps_code": "03MU", + "local_code": "03MU" + }, + { + "id": "4650", + "ident": "03N", + "type": "small_airport", + "name": "Utirik Airport", + "latitude_deg": "11.222", + "longitude_deg": "169.852005", + "elevation_ft": "4", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-UTI", + "municipality": "Utirik Island", + "scheduled_service": "yes", + "gps_code": "K03N", + "iata_code": "UTK", + "local_code": "03N", + "wikipedia_link": "https://en.wikipedia.org/wiki/Utirik_Airport" + }, + { + "id": "6726", + "ident": "03NC", + "type": "small_airport", + "name": "Pilots Ridge Airport", + "latitude_deg": "34.10430145263672", + "longitude_deg": "-77.9041976928711", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Carolina Beach", + "scheduled_service": "no", + "gps_code": "03NC", + "local_code": "03NC" + }, + { + "id": "6727", + "ident": "03ND", + "type": "small_airport", + "name": "Olafson Brothers Airport", + "latitude_deg": "48.626399993896484", + "longitude_deg": "-97.8290023803711", + "elevation_ft": "1045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Edinburg", + "scheduled_service": "no", + "gps_code": "03ND", + "local_code": "03ND" + }, + { + "id": "6728", + "ident": "03NE", + "type": "small_airport", + "name": "Hyde Ranch Airport", + "latitude_deg": "41.5463981628418", + "longitude_deg": "-99.3311996459961", + "elevation_ft": "2430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Comstock", + "scheduled_service": "no", + "gps_code": "03NE", + "local_code": "03NE" + }, + { + "id": "6729", + "ident": "03NH", + "type": "heliport", + "name": "Lorden Heliport", + "latitude_deg": "42.815399169921875", + "longitude_deg": "-71.12439727783203", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "03NH", + "local_code": "03NH" + }, + { + "id": "6730", + "ident": "03NJ", + "type": "closed", + "name": "AT&T Heliport", + "latitude_deg": "40.668713", + "longitude_deg": "-74.410152", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Berkeley Heights", + "scheduled_service": "no", + "keywords": "03NJ" + }, + { + "id": "345364", + "ident": "03NM", + "type": "heliport", + "name": "Miner's Colfax Medical Center Heliport", + "latitude_deg": "36.862377", + "longitude_deg": "-104.442853", + "elevation_ft": "6600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Raton", + "scheduled_service": "no", + "gps_code": "03NM", + "local_code": "03NM" + }, + { + "id": "345707", + "ident": "03NR", + "type": "heliport", + "name": "Johnston Medical Center Heliport", + "latitude_deg": "35.63027", + "longitude_deg": "-78.50392", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Clayton", + "scheduled_service": "no", + "gps_code": "03NR", + "local_code": "03NR" + }, + { + "id": "6731", + "ident": "03NV", + "type": "small_airport", + "name": "Llama Ranch Airport", + "latitude_deg": "40.58440017700195", + "longitude_deg": "-115.2979965209961", + "elevation_ft": "6120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Ruby Valley", + "scheduled_service": "no", + "gps_code": "03NV", + "local_code": "03NV" + }, + { + "id": "6732", + "ident": "03NY", + "type": "small_airport", + "name": "Talmage Field", + "latitude_deg": "40.958308", + "longitude_deg": "-72.717326", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Riverhead", + "scheduled_service": "no", + "gps_code": "03NY", + "local_code": "03NY" + }, + { + "id": "6733", + "ident": "03OH", + "type": "small_airport", + "name": "Gibbs Field", + "latitude_deg": "41.416933", + "longitude_deg": "-83.018339", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Fremont", + "scheduled_service": "no", + "gps_code": "03OH", + "local_code": "03OH" + }, + { + "id": "6734", + "ident": "03OI", + "type": "heliport", + "name": "Cleveland Clinic, Marymount Hospital Heliport", + "latitude_deg": "41.420312", + "longitude_deg": "-81.599552", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Garfield Heights", + "scheduled_service": "no", + "gps_code": "03OI", + "local_code": "03OI" + }, + { + "id": "6735", + "ident": "03OK", + "type": "small_airport", + "name": "Sahoma Lake Airport", + "latitude_deg": "36.041259", + "longitude_deg": "-96.161517", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Sapulpa", + "scheduled_service": "no", + "gps_code": "03OK", + "local_code": "03OK" + }, + { + "id": "348548", + "ident": "03OL", + "type": "small_airport", + "name": "Bluebird Airport", + "latitude_deg": "35.012334", + "longitude_deg": "-97.702735", + "elevation_ft": "1232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Alex", + "scheduled_service": "no", + "gps_code": "03OL", + "local_code": "03OL" + }, + { + "id": "6736", + "ident": "03OR", + "type": "small_airport", + "name": "Powwatka Ridge Airport", + "latitude_deg": "45.85540008544922", + "longitude_deg": "-117.48400115966797", + "elevation_ft": "3340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "03OR", + "local_code": "03OR" + }, + { + "id": "6737", + "ident": "03PA", + "type": "heliport", + "name": "Collegeville Heliport", + "latitude_deg": "40.162899017333984", + "longitude_deg": "-75.4656982421875", + "elevation_ft": "197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Collegeville", + "scheduled_service": "no", + "gps_code": "03PA", + "local_code": "03PA" + }, + { + "id": "6738", + "ident": "03PN", + "type": "heliport", + "name": "M.P. Metals Heliport", + "latitude_deg": "41.066861", + "longitude_deg": "-76.180806", + "elevation_ft": "479", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Berwick", + "scheduled_service": "yes", + "gps_code": "03PN", + "local_code": "03PN" + }, + { + "id": "322892", + "ident": "03PR", + "type": "small_airport", + "name": "Sun View Field Airport", + "latitude_deg": "39.065947", + "longitude_deg": "-94.921703", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Bonner Springs", + "scheduled_service": "no", + "gps_code": "03PR", + "local_code": "03PR" + }, + { + "id": "6739", + "ident": "03PS", + "type": "closed", + "name": "Ziggy's Field", + "latitude_deg": "40.849998", + "longitude_deg": "-77.905602", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bellefonte", + "scheduled_service": "no", + "keywords": "03PS" + }, + { + "id": "6740", + "ident": "03S", + "type": "small_airport", + "name": "Sandy River Airport", + "latitude_deg": "45.401798248291016", + "longitude_deg": "-122.22899627685547", + "elevation_ft": "704", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sandy", + "scheduled_service": "no", + "gps_code": "03S", + "local_code": "03S", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sandy_River_Airport" + }, + { + "id": "6741", + "ident": "03SC", + "type": "heliport", + "name": "Seacoast Medical Center Heliport", + "latitude_deg": "33.8650016784668", + "longitude_deg": "-78.66190338134766", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Little River", + "scheduled_service": "no", + "gps_code": "03SC", + "local_code": "03SC" + }, + { + "id": "6742", + "ident": "03TA", + "type": "closed", + "name": "Gay Hill Farm Airport", + "latitude_deg": "30.262699", + "longitude_deg": "-96.500198", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gay Hill", + "scheduled_service": "no", + "keywords": "03TA" + }, + { + "id": "6743", + "ident": "03TE", + "type": "small_airport", + "name": "Barronena Ranch Airport", + "latitude_deg": "27.490812", + "longitude_deg": "-98.669615", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hebbronville", + "scheduled_service": "no", + "gps_code": "03TE", + "local_code": "03TE" + }, + { + "id": "6744", + "ident": "03TN", + "type": "heliport", + "name": "Eagles Landing Heliport", + "latitude_deg": "35.92250061035156", + "longitude_deg": "-83.57939910888672", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Sevierville", + "scheduled_service": "no", + "gps_code": "03TN", + "local_code": "03TN" + }, + { + "id": "6745", + "ident": "03TS", + "type": "heliport", + "name": "Shannon Medical Center Heliport", + "latitude_deg": "31.4658", + "longitude_deg": "-100.43397", + "elevation_ft": "1825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Angelo", + "scheduled_service": "no", + "gps_code": "03TS", + "local_code": "03TS" + }, + { + "id": "341551", + "ident": "03TT", + "type": "small_airport", + "name": "Brazos Polo Airport", + "latitude_deg": "29.632117", + "longitude_deg": "-95.932481", + "elevation_ft": "117", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Orchard", + "scheduled_service": "no", + "gps_code": "03TT", + "local_code": "03TT" + }, + { + "id": "6746", + "ident": "03TX", + "type": "heliport", + "name": "M D K Field Heliport", + "latitude_deg": "29.580929", + "longitude_deg": "-95.30508", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pearland", + "scheduled_service": "no", + "gps_code": "03TX", + "local_code": "03TX" + }, + { + "id": "6747", + "ident": "03UT", + "type": "small_airport", + "name": "AZ Minerals Corporation Airport", + "latitude_deg": "37.114384", + "longitude_deg": "-109.99014", + "elevation_ft": "5315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Mexican Hat", + "scheduled_service": "no", + "gps_code": "03UT", + "local_code": "03UT", + "keywords": "U23" + }, + { + "id": "6748", + "ident": "03VA", + "type": "closed", + "name": "Whipoorwill Springs Airport", + "latitude_deg": "38.66460037231445", + "longitude_deg": "-77.57969665527344", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Nokesville", + "scheduled_service": "no", + "gps_code": "03VA", + "local_code": "03VA" + }, + { + "id": "6749", + "ident": "03WA", + "type": "small_airport", + "name": "Spangle Field", + "latitude_deg": "47.408199310302734", + "longitude_deg": "-117.37200164794922", + "elevation_ft": "2440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Spangle", + "scheduled_service": "no", + "gps_code": "03WA", + "local_code": "03WA" + }, + { + "id": "6750", + "ident": "03WI", + "type": "small_airport", + "name": "Zink Airport", + "latitude_deg": "44.028873", + "longitude_deg": "-88.883945", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Berlin", + "scheduled_service": "no", + "gps_code": "03WI", + "local_code": "03WI" + }, + { + "id": "6751", + "ident": "03WN", + "type": "small_airport", + "name": "Aerostone Ranch Airport", + "latitude_deg": "45.875", + "longitude_deg": "-120.66999816894531", + "elevation_ft": "2320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Goldendale", + "scheduled_service": "no", + "gps_code": "03WN", + "local_code": "03WN" + }, + { + "id": "348415", + "ident": "03WT", + "type": "heliport", + "name": "Lopez Medical Clinic Heliport", + "latitude_deg": "48.524894", + "longitude_deg": "-122.912394", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Lopez Island", + "scheduled_service": "no", + "gps_code": "03WT", + "local_code": "03WT" + }, + { + "id": "345757", + "ident": "03XA", + "type": "heliport", + "name": "Del Sol Medical Center Heliport", + "latitude_deg": "31.7574", + "longitude_deg": "-106.346895", + "elevation_ft": "3881", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Paso", + "scheduled_service": "no", + "gps_code": "03XA", + "local_code": "03XA" + }, + { + "id": "6752", + "ident": "03XS", + "type": "small_airport", + "name": "Creekside Airport", + "latitude_deg": "31.318099975585938", + "longitude_deg": "-100.75399780273438", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mertzon", + "scheduled_service": "no", + "gps_code": "03XS", + "local_code": "03XS" + }, + { + "id": "325443", + "ident": "04AA", + "type": "small_airport", + "name": "Flying W Ranch Airport", + "latitude_deg": "60.535833", + "longitude_deg": "-150.811387", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Soldotna", + "scheduled_service": "no", + "gps_code": "04AA", + "local_code": "04AA", + "keywords": "Phil's Airport" + }, + { + "id": "6753", + "ident": "04AL", + "type": "heliport", + "name": "Anniston AHP (Anniston Army Depot)", + "latitude_deg": "33.62639999", + "longitude_deg": "-85.96720123", + "elevation_ft": "686", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Anniston", + "scheduled_service": "no", + "gps_code": "04AL", + "local_code": "04AL" + }, + { + "id": "6754", + "ident": "04AR", + "type": "heliport", + "name": "Saline Memorial Hospital Heliport", + "latitude_deg": "34.574319", + "longitude_deg": "-92.586047", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Benton", + "scheduled_service": "no", + "gps_code": "04AR", + "local_code": "04AR" + }, + { + "id": "6755", + "ident": "04AZ", + "type": "closed", + "name": "Chinle Airport", + "latitude_deg": "36.147197", + "longitude_deg": "-109.560771", + "elevation_ft": "5515", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Chinle", + "scheduled_service": "no", + "local_code": "04AZ", + "keywords": "04AZ, Q32" + }, + { + "id": "6756", + "ident": "04CA", + "type": "small_airport", + "name": "Gray Butte Field", + "latitude_deg": "34.5639", + "longitude_deg": "-117.675003", + "elevation_ft": "3020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palmdale", + "scheduled_service": "no", + "gps_code": "KGXA", + "local_code": "04CA" + }, + { + "id": "6757", + "ident": "04CL", + "type": "small_airport", + "name": "Hunt's Sky Ranch Airport", + "latitude_deg": "33.08169937133789", + "longitude_deg": "-116.44100189208984", + "elevation_ft": "2310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Julian", + "scheduled_service": "no", + "gps_code": "04CL", + "local_code": "04CL" + }, + { + "id": "6758", + "ident": "04CT", + "type": "heliport", + "name": "Shingle Mill Heliport", + "latitude_deg": "41.75510025024414", + "longitude_deg": "-73.05239868164062", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Harwinton", + "scheduled_service": "no", + "gps_code": "04CT", + "local_code": "04CT" + }, + { + "id": "6759", + "ident": "04F", + "type": "closed", + "name": "De Leon Municipal Airport", + "latitude_deg": "32.098801", + "longitude_deg": "-98.525325", + "elevation_ft": "1293", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "De Leon", + "scheduled_service": "no", + "keywords": "04F" + }, + { + "id": "6760", + "ident": "04FA", + "type": "small_airport", + "name": "Richards Field", + "latitude_deg": "25.558700561523438", + "longitude_deg": "-80.51509857177734", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Homestead", + "scheduled_service": "no", + "gps_code": "04FA", + "local_code": "04FA" + }, + { + "id": "324859", + "ident": "04FD", + "type": "heliport", + "name": "Tampa General Hospital Brandon Healthplex Heliport", + "latitude_deg": "27.929372", + "longitude_deg": "-82.336981", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Brandon", + "scheduled_service": "no", + "gps_code": "04FD", + "local_code": "04FD" + }, + { + "id": "6761", + "ident": "04FL", + "type": "small_airport", + "name": "Cross Creek Farms Airport", + "latitude_deg": "29.240353", + "longitude_deg": "-81.222525", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ormond Beach", + "scheduled_service": "no", + "gps_code": "04FL", + "local_code": "04FL" + }, + { + "id": "6762", + "ident": "04I", + "type": "small_airport", + "name": "Columbus Southwest Airport", + "latitude_deg": "39.91120147705078", + "longitude_deg": "-83.18879699707031", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "04I", + "local_code": "04I" + }, + { + "id": "6763", + "ident": "04IA", + "type": "small_airport", + "name": "Middlekoop Airport", + "latitude_deg": "41.08829879760742", + "longitude_deg": "-92.05460357666016", + "elevation_ft": "801", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Packwood", + "scheduled_service": "no", + "gps_code": "04IA", + "local_code": "04IA" + }, + { + "id": "6764", + "ident": "04ID", + "type": "small_airport", + "name": "Lanham Field", + "latitude_deg": "43.877015", + "longitude_deg": "-116.538365", + "elevation_ft": "2343", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Emmett", + "scheduled_service": "no", + "gps_code": "04ID", + "local_code": "04ID", + "keywords": "U85" + }, + { + "id": "6765", + "ident": "04II", + "type": "closed", + "name": "Turkey Run Airport", + "latitude_deg": "41.1306", + "longitude_deg": "-84.994102", + "elevation_ft": "765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "New Haven", + "scheduled_service": "no", + "keywords": "04II" + }, + { + "id": "6766", + "ident": "04IL", + "type": "small_airport", + "name": "Schertz Aerial Service - Hudson Airport", + "latitude_deg": "40.6375007629", + "longitude_deg": "-89.0070037842", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hudson", + "scheduled_service": "no", + "gps_code": "04IL", + "local_code": "04IL" + }, + { + "id": "45410", + "ident": "04IN", + "type": "seaplane_base", + "name": "Lake Gage Seaplane Base", + "latitude_deg": "41.701389", + "longitude_deg": "-85.113056", + "elevation_ft": "954", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Angola", + "scheduled_service": "no", + "gps_code": "04IN", + "local_code": "04IN" + }, + { + "id": "6767", + "ident": "04IS", + "type": "small_airport", + "name": "Van Gorder Airport", + "latitude_deg": "40.1786003112793", + "longitude_deg": "-88.56900024414062", + "elevation_ft": "728", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mansfield", + "scheduled_service": "no", + "gps_code": "04IS", + "local_code": "04IS" + }, + { + "id": "6768", + "ident": "04KS", + "type": "heliport", + "name": "Robinson Industries Heliport", + "latitude_deg": "38.97890090942383", + "longitude_deg": "-95.2197036743164", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Lawrence", + "scheduled_service": "no", + "gps_code": "04KS", + "local_code": "04KS" + }, + { + "id": "6769", + "ident": "04KY", + "type": "small_airport", + "name": "Natchez Trace Farm Airport", + "latitude_deg": "37.135101318359375", + "longitude_deg": "-85.78939819335938", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Hiseville", + "scheduled_service": "no", + "gps_code": "04KY", + "local_code": "04KY" + }, + { + "id": "6770", + "ident": "04LA", + "type": "heliport", + "name": "Saint James Parish Hospital Heliport", + "latitude_deg": "30.051001", + "longitude_deg": "-90.703848", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lutcher", + "scheduled_service": "no", + "gps_code": "04LA", + "local_code": "04LA", + "keywords": "Saint James Heliport" + }, + { + "id": "6771", + "ident": "04LL", + "type": "small_airport", + "name": "Brunner Airport", + "latitude_deg": "42.13610076904297", + "longitude_deg": "-88.28759765625", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "West Dundee", + "scheduled_service": "no", + "gps_code": "04LL", + "local_code": "04LL" + }, + { + "id": "6772", + "ident": "04LS", + "type": "heliport", + "name": "La National Guard Heliport", + "latitude_deg": "30.44610023498535", + "longitude_deg": "-91.10530090332031", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no", + "gps_code": "04LS", + "local_code": "04LS" + }, + { + "id": "6773", + "ident": "04MA", + "type": "small_airport", + "name": "Goddard Field", + "latitude_deg": "42.810908", + "longitude_deg": "-71.140959", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Haverhill", + "scheduled_service": "no", + "gps_code": "04MA", + "local_code": "04MA" + }, + { + "id": "6774", + "ident": "04MD", + "type": "heliport", + "name": "Chesapeake City Heliport", + "latitude_deg": "39.51810073852539", + "longitude_deg": "-75.82140350341797", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Chesapeake City", + "scheduled_service": "no", + "gps_code": "04MD", + "local_code": "04MD" + }, + { + "id": "6775", + "ident": "04ME", + "type": "small_airport", + "name": "Beech Hill Airport", + "latitude_deg": "44.66669845581055", + "longitude_deg": "-69.8938980102539", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Mercer", + "scheduled_service": "no", + "gps_code": "04ME", + "local_code": "04ME" + }, + { + "id": "6776", + "ident": "04MI", + "type": "small_airport", + "name": "Rapids Airway Airport", + "latitude_deg": "42.53450012207031", + "longitude_deg": "-84.62830352783203", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Eaton Rapids", + "scheduled_service": "no", + "gps_code": "04MI", + "local_code": "04MI" + }, + { + "id": "6777", + "ident": "04MN", + "type": "small_airport", + "name": "Helblad Airport", + "latitude_deg": "47.985801696777344", + "longitude_deg": "-94.68689727783203", + "elevation_ft": "1195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Kelliher", + "scheduled_service": "no", + "gps_code": "04MN", + "local_code": "04MN" + }, + { + "id": "6778", + "ident": "04MO", + "type": "small_airport", + "name": "Airpark Private Airport", + "latitude_deg": "39.30120086669922", + "longitude_deg": "-91.45149993896484", + "elevation_ft": "767", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Vandalia", + "scheduled_service": "no", + "gps_code": "04MO", + "local_code": "04MO" + }, + { + "id": "6779", + "ident": "04MS", + "type": "small_airport", + "name": "Nick's Flying Service Inc Airport", + "latitude_deg": "32.940537", + "longitude_deg": "-90.836683", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Rolling Fork", + "scheduled_service": "no", + "gps_code": "04MS", + "local_code": "04MS" + }, + { + "id": "6780", + "ident": "04MT", + "type": "small_airport", + "name": "Pluhar Airport", + "latitude_deg": "47.13749777779999", + "longitude_deg": "-106.488095", + "elevation_ft": "2715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Cohagen", + "scheduled_service": "no", + "gps_code": "04MT", + "local_code": "04MT" + }, + { + "id": "6781", + "ident": "04NC", + "type": "heliport", + "name": "Western Wake Medical Center Heliport", + "latitude_deg": "35.739200592", + "longitude_deg": "-78.7822036743", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Cary", + "scheduled_service": "no", + "gps_code": "04NC", + "local_code": "04NC" + }, + { + "id": "6782", + "ident": "04NE", + "type": "small_airport", + "name": "Mc Connell Field Airport", + "latitude_deg": "41.159999847399995", + "longitude_deg": "-101.299003601", + "elevation_ft": "3035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Sarben", + "scheduled_service": "no", + "gps_code": "04NE", + "local_code": "04NE" + }, + { + "id": "6783", + "ident": "04NJ", + "type": "small_airport", + "name": "Emmanuel Airport", + "latitude_deg": "39.596801757799994", + "longitude_deg": "-75.2334976196", + "elevation_ft": "155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Elmer", + "scheduled_service": "no", + "gps_code": "04NJ", + "local_code": "04NJ" + }, + { + "id": "347887", + "ident": "04NR", + "type": "heliport", + "name": "McGee 04 Heliport", + "latitude_deg": "34.775671", + "longitude_deg": "-77.392244", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "04NR", + "local_code": "04NR" + }, + { + "id": "6784", + "ident": "04NV", + "type": "small_airport", + "name": "Kingston Ranch Airport", + "latitude_deg": "35.7555007935", + "longitude_deg": "-115.665000916", + "elevation_ft": "2620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Sandy Valley", + "scheduled_service": "no", + "gps_code": "04NV", + "local_code": "04NV" + }, + { + "id": "6785", + "ident": "04NY", + "type": "small_airport", + "name": "Klaverack Airport", + "latitude_deg": "42.262298584", + "longitude_deg": "-73.6961975098", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hudson", + "scheduled_service": "no", + "gps_code": "04NY", + "local_code": "04NY" + }, + { + "id": "45733", + "ident": "04OG", + "type": "heliport", + "name": "Teufel Heliport", + "latitude_deg": "45.530833", + "longitude_deg": "-123.085556", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Forest Grove", + "scheduled_service": "no", + "gps_code": "04OG", + "local_code": "04OG" + }, + { + "id": "6786", + "ident": "04OH", + "type": "closed", + "name": "Bossow Airport", + "latitude_deg": "41.2477", + "longitude_deg": "-81.100701", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Garrettsville", + "scheduled_service": "no", + "keywords": "04OH" + }, + { + "id": "6787", + "ident": "04OK", + "type": "heliport", + "name": "Stillwater Medical Center Heliport", + "latitude_deg": "36.1152992249", + "longitude_deg": "-97.079498291", + "elevation_ft": "984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Stillwater", + "scheduled_service": "no", + "gps_code": "04OK", + "local_code": "04OK" + }, + { + "id": "6788", + "ident": "04OR", + "type": "small_airport", + "name": "Collins Landing Strip", + "latitude_deg": "44.7499008179", + "longitude_deg": "-120.200996399", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Mitchell", + "scheduled_service": "no", + "gps_code": "04OR", + "local_code": "04OR" + }, + { + "id": "6789", + "ident": "04PA", + "type": "heliport", + "name": "S & C Distribution Center Heliport", + "latitude_deg": "39.87929916379999", + "longitude_deg": "-75.2287979126", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "04PA", + "local_code": "04PA" + }, + { + "id": "6790", + "ident": "04PN", + "type": "heliport", + "name": "Strawbridge & Clothier Exton Heliport", + "latitude_deg": "40.0306619", + "longitude_deg": "-75.63021", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Exton", + "scheduled_service": "no", + "gps_code": "04PN", + "local_code": "04PN" + }, + { + "id": "6791", + "ident": "04SC", + "type": "heliport", + "name": "Emergency Helipad", + "latitude_deg": "34.842188", + "longitude_deg": "-82.60714", + "elevation_ft": "994", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Easley", + "scheduled_service": "no", + "gps_code": "04SC", + "local_code": "04SC", + "keywords": "Easley Baptist Hospital" + }, + { + "id": "325773", + "ident": "04SD", + "type": "heliport", + "name": "Cheyenne River Health Center Heliport", + "latitude_deg": "44.993124", + "longitude_deg": "-101.243011", + "elevation_ft": "2437", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Eagle Butte", + "scheduled_service": "no", + "gps_code": "04SD", + "local_code": "04SD" + }, + { + "id": "6792", + "ident": "04TA", + "type": "closed", + "name": "Capitol National Bank Building Heliport", + "latitude_deg": "30.270262", + "longitude_deg": "-97.745275", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "04TA", + "local_code": "04TA" + }, + { + "id": "6793", + "ident": "04TE", + "type": "heliport", + "name": "Veterans Affairs Medical Center Heliport", + "latitude_deg": "29.699687", + "longitude_deg": "-95.39069", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "04TE", + "local_code": "04TE" + }, + { + "id": "6794", + "ident": "04TN", + "type": "small_airport", + "name": "Hensley Airpark", + "latitude_deg": "36.183300018299995", + "longitude_deg": "-82.67890167239999", + "elevation_ft": "1430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Chuckey", + "scheduled_service": "no", + "gps_code": "04TN", + "local_code": "04TN" + }, + { + "id": "6795", + "ident": "04TS", + "type": "heliport", + "name": "Hummingbird Heliport", + "latitude_deg": "30.553284", + "longitude_deg": "-97.605358", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Round Rock", + "scheduled_service": "no", + "gps_code": "04TS", + "local_code": "04TS" + }, + { + "id": "342438", + "ident": "04TT", + "type": "small_airport", + "name": "4D Ranch Airport", + "latitude_deg": "29.713072", + "longitude_deg": "-99.545642", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Utopia", + "scheduled_service": "no", + "gps_code": "04TT", + "local_code": "04TT" + }, + { + "id": "6796", + "ident": "04TX", + "type": "small_airport", + "name": "Pocock Airport", + "latitude_deg": "31.732779", + "longitude_deg": "-97.369326", + "elevation_ft": "565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "China Spring", + "scheduled_service": "no", + "gps_code": "04TX", + "local_code": "04TX" + }, + { + "id": "6797", + "ident": "04UT", + "type": "small_airport", + "name": "Navajo Mountain Airport", + "latitude_deg": "37.006689", + "longitude_deg": "-110.794701", + "elevation_ft": "6160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Navajo Mountain", + "scheduled_service": "no", + "gps_code": "04UT", + "local_code": "04UT", + "keywords": "Naatsisʼáán" + }, + { + "id": "6798", + "ident": "04V", + "type": "small_airport", + "name": "Saguache Municipal Airport", + "latitude_deg": "38.0990833", + "longitude_deg": "-106.1743889", + "elevation_ft": "7826", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Saguache", + "scheduled_service": "no", + "gps_code": "04V", + "local_code": "04V" + }, + { + "id": "6799", + "ident": "04VA", + "type": "heliport", + "name": "Russell County Medical Center Heliport", + "latitude_deg": "36.898", + "longitude_deg": "-82.078", + "elevation_ft": "2004", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Lebanon", + "scheduled_service": "yes", + "gps_code": "04VA", + "local_code": "04VA" + }, + { + "id": "6800", + "ident": "04VG", + "type": "small_airport", + "name": "Manquin Flight Park Ultralightport", + "latitude_deg": "37.706546", + "longitude_deg": "-77.201621", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Manquin", + "scheduled_service": "no", + "gps_code": "04VG", + "local_code": "04VG" + }, + { + "id": "6801", + "ident": "04VT", + "type": "small_airport", + "name": "Lightning Bolt Field Airport", + "latitude_deg": "44.4011001587", + "longitude_deg": "-72.26360321039999", + "elevation_ft": "2156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Cabot", + "scheduled_service": "no", + "gps_code": "04VT", + "local_code": "04VT" + }, + { + "id": "6802", + "ident": "04W", + "type": "small_airport", + "name": "Field of Dreams Airport", + "latitude_deg": "46.0228", + "longitude_deg": "-92.895401", + "elevation_ft": "1021", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hinckley", + "scheduled_service": "no", + "gps_code": "K04W", + "local_code": "04W" + }, + { + "id": "6803", + "ident": "04WA", + "type": "small_airport", + "name": "Ox Meadows Airport", + "latitude_deg": "47.581795", + "longitude_deg": "-117.437131", + "elevation_ft": "2345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Spokane", + "scheduled_service": "no", + "gps_code": "04WA", + "local_code": "04WA" + }, + { + "id": "6804", + "ident": "04WI", + "type": "small_airport", + "name": "Dutch Gap Airstrip", + "latitude_deg": "42.523399353", + "longitude_deg": "-88.0167007446", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Bristol", + "scheduled_service": "no", + "gps_code": "04WI", + "local_code": "04WI" + }, + { + "id": "45903", + "ident": "04WN", + "type": "small_airport", + "name": "Stillwater Creek Airport", + "latitude_deg": "46.95835", + "longitude_deg": "-119.63864", + "elevation_ft": "1510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Royal City", + "scheduled_service": "no", + "gps_code": "04WN", + "local_code": "04WN" + }, + { + "id": "6805", + "ident": "04WV", + "type": "heliport", + "name": "West Virginia Univ. Hosp. Inc. Gnd. Pad #2 Heliport", + "latitude_deg": "39.6536111111", + "longitude_deg": "-79.9561111111", + "elevation_ft": "1137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Morgantown", + "scheduled_service": "no", + "gps_code": "04WV", + "local_code": "04WV" + }, + { + "id": "334249", + "ident": "04XA", + "type": "small_airport", + "name": "Pecan Field", + "latitude_deg": "33.283933", + "longitude_deg": "-98.402861", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jermyn", + "scheduled_service": "no", + "gps_code": "04XA", + "local_code": "04XA" + }, + { + "id": "6806", + "ident": "04XS", + "type": "closed", + "name": "Schmidts Heliport", + "latitude_deg": "32.5821", + "longitude_deg": "-97.142502", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mansfield", + "scheduled_service": "no", + "keywords": "04XS, Napiers Heliport" + }, + { + "id": "6807", + "ident": "05AK", + "type": "small_airport", + "name": "Wasilla Creek Airpark", + "latitude_deg": "61.66830063", + "longitude_deg": "-149.1880035", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "yes", + "gps_code": "05AK", + "local_code": "05AK" + }, + { + "id": "6808", + "ident": "05AL", + "type": "heliport", + "name": "Allen Stagefield Army Heliport", + "latitude_deg": "31.2311992645", + "longitude_deg": "-85.64969635010002", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker/Wicksburg", + "scheduled_service": "no", + "gps_code": "05AL", + "local_code": "05AL" + }, + { + "id": "45302", + "ident": "05AR", + "type": "small_airport", + "name": "Ozark Skies Airpark", + "latitude_deg": "36.000633", + "longitude_deg": "-93.57025", + "elevation_ft": "1900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Kingston", + "scheduled_service": "no", + "gps_code": "05AR", + "local_code": "05AR" + }, + { + "id": "6809", + "ident": "05AZ", + "type": "heliport", + "name": "Yuma Regional Medical Center Heliport", + "latitude_deg": "32.683452", + "longitude_deg": "-114.634346", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yuma", + "scheduled_service": "no", + "gps_code": "05AZ", + "local_code": "05AZ" + }, + { + "id": "6810", + "ident": "05B", + "type": "seaplane_base", + "name": "Van Buren Seaplane Base", + "latitude_deg": "47.158901", + "longitude_deg": "-67.931999", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Van Buren", + "scheduled_service": "no", + "local_code": "05B" + }, + { + "id": "6811", + "ident": "05CA", + "type": "heliport", + "name": "Lost Hills Sheriff's Station Heliport", + "latitude_deg": "34.136516", + "longitude_deg": "-118.714685", + "elevation_ft": "888", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Calabasas", + "scheduled_service": "no", + "gps_code": "05CA", + "local_code": "05CA" + }, + { + "id": "6812", + "ident": "05CL", + "type": "small_airport", + "name": "Pope Valley Airport", + "latitude_deg": "38.6106987", + "longitude_deg": "-122.39099884", + "elevation_ft": "618", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pope Valley", + "scheduled_service": "no", + "gps_code": "05CL", + "local_code": "05CL" + }, + { + "id": "6813", + "ident": "05CO", + "type": "small_airport", + "name": "Rancho de Aereo Airport", + "latitude_deg": "40.214984", + "longitude_deg": "-104.984423", + "elevation_ft": "4978", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Mead", + "scheduled_service": "no", + "gps_code": "05CO", + "local_code": "05CO" + }, + { + "id": "6814", + "ident": "05CT", + "type": "heliport", + "name": "O And G Heliport", + "latitude_deg": "41.7737007141", + "longitude_deg": "-73.1162033081", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Torrington", + "scheduled_service": "no", + "gps_code": "05CT", + "local_code": "05CT" + }, + { + "id": "6815", + "ident": "05FA", + "type": "small_airport", + "name": "Melanie's Airport", + "latitude_deg": "30.918899536132812", + "longitude_deg": "-86.21829986572266", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Florala", + "scheduled_service": "no", + "gps_code": "05FA", + "local_code": "05FA" + }, + { + "id": "6816", + "ident": "05FD", + "type": "heliport", + "name": "Aventura Heliport", + "latitude_deg": "25.960899353027344", + "longitude_deg": "-80.13919830322266", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "North Miami Beach", + "scheduled_service": "no", + "gps_code": "05FD", + "local_code": "05FD" + }, + { + "id": "6817", + "ident": "05FL", + "type": "small_airport", + "name": "Charlton Strip", + "latitude_deg": "26.52018", + "longitude_deg": "-81.41031", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "La Belle", + "scheduled_service": "no", + "gps_code": "05FL", + "local_code": "05FL" + }, + { + "id": "6818", + "ident": "05GA", + "type": "small_airport", + "name": "Raju Airport", + "latitude_deg": "32.0713996887207", + "longitude_deg": "-84.71440124511719", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Richland", + "scheduled_service": "no", + "gps_code": "05GA", + "local_code": "05GA" + }, + { + "id": "6819", + "ident": "05IA", + "type": "small_airport", + "name": "Spotts Field", + "latitude_deg": "43.13750076293945", + "longitude_deg": "-93.06829833984375", + "elevation_ft": "1155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Nora Springs", + "scheduled_service": "no", + "gps_code": "05IA", + "local_code": "05IA" + }, + { + "id": "6820", + "ident": "05ID", + "type": "small_airport", + "name": "Running Creek Ranch Airport", + "latitude_deg": "45.914101", + "longitude_deg": "-114.835999", + "elevation_ft": "2969", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Elk City", + "scheduled_service": "no", + "gps_code": "05ID", + "local_code": "05ID", + "keywords": "72U" + }, + { + "id": "6821", + "ident": "05II", + "type": "closed", + "name": "Reichhart Airport", + "latitude_deg": "41.028702", + "longitude_deg": "-84.9972", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "New Haven", + "scheduled_service": "no", + "keywords": "05II" + }, + { + "id": "6822", + "ident": "05IL", + "type": "small_airport", + "name": "Classic Landings Airport", + "latitude_deg": "41.156700134277344", + "longitude_deg": "-88.0167007446289", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Bonfield", + "scheduled_service": "no", + "gps_code": "05IL", + "local_code": "05IL" + }, + { + "id": "6823", + "ident": "05IN", + "type": "small_airport", + "name": "Cooper Airport", + "latitude_deg": "39.641998291015625", + "longitude_deg": "-86.50420379638672", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Belleville", + "scheduled_service": "no", + "gps_code": "05IN", + "local_code": "05IN" + }, + { + "id": "6824", + "ident": "05IS", + "type": "small_airport", + "name": "Hardy Airport", + "latitude_deg": "39.72589874267578", + "longitude_deg": "-89.26399993896484", + "elevation_ft": "605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mount Auburn", + "scheduled_service": "no", + "gps_code": "05IS", + "local_code": "05IS" + }, + { + "id": "6825", + "ident": "05KS", + "type": "small_airport", + "name": "Darbro Field", + "latitude_deg": "37.26620101928711", + "longitude_deg": "-95.95919799804688", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Elk City", + "scheduled_service": "no", + "gps_code": "05KS", + "local_code": "05KS" + }, + { + "id": "346026", + "ident": "05KT", + "type": "small_airport", + "name": "High Point Farm Airport", + "latitude_deg": "38.187091", + "longitude_deg": "-84.93011", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Frankfort", + "scheduled_service": "no", + "gps_code": "05KT", + "local_code": "05KT" + }, + { + "id": "6826", + "ident": "05KY", + "type": "small_airport", + "name": "Cartersville Airport", + "latitude_deg": "37.53575", + "longitude_deg": "-84.407303", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Paint Lick", + "scheduled_service": "no", + "gps_code": "05KY", + "local_code": "05KY" + }, + { + "id": "6827", + "ident": "05LA", + "type": "small_airport", + "name": "Greg's Flying Service Airport", + "latitude_deg": "32.265301", + "longitude_deg": "-91.6978", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Winnsboro", + "scheduled_service": "no", + "gps_code": "05LA", + "local_code": "05LA" + }, + { + "id": "6828", + "ident": "05LL", + "type": "heliport", + "name": "Midwest Heliport", + "latitude_deg": "41.749228", + "longitude_deg": "-87.935783", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Willowbrook", + "scheduled_service": "no", + "gps_code": "05LL", + "local_code": "05LL" + }, + { + "id": "6829", + "ident": "05LS", + "type": "small_airport", + "name": "Grass Roots Airport", + "latitude_deg": "31.252148", + "longitude_deg": "-92.47569", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Alexandria", + "scheduled_service": "no", + "gps_code": "05LS", + "local_code": "05LS" + }, + { + "id": "6830", + "ident": "05M", + "type": "heliport", + "name": "Pauls Valley General Hospital Heliport", + "latitude_deg": "34.71979", + "longitude_deg": "-97.214237", + "elevation_ft": "911", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Pauls Valley", + "scheduled_service": "no", + "keywords": "OK28, 05M" + }, + { + "id": "6831", + "ident": "05MA", + "type": "heliport", + "name": "Bentley Heliport", + "latitude_deg": "42.691200256347656", + "longitude_deg": "-70.91230010986328", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Ipswich", + "scheduled_service": "no", + "gps_code": "05MA", + "local_code": "05MA" + }, + { + "id": "6832", + "ident": "05MD", + "type": "small_airport", + "name": "Breezecroft Airport", + "latitude_deg": "39.244232", + "longitude_deg": "-76.198661", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Chestertown", + "scheduled_service": "no", + "gps_code": "05MD", + "local_code": "05MD" + }, + { + "id": "6833", + "ident": "05ME", + "type": "small_airport", + "name": "Drisko Airport", + "latitude_deg": "44.65700149536133", + "longitude_deg": "-67.55919647216797", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Jonesboro", + "scheduled_service": "no", + "gps_code": "05ME", + "local_code": "05ME" + }, + { + "id": "345550", + "ident": "05MI", + "type": "heliport", + "name": "Oakwood Heritage Hospital Heliport", + "latitude_deg": "42.236433", + "longitude_deg": "-83.276421", + "elevation_ft": "621", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Taylor", + "scheduled_service": "no", + "gps_code": "05MI", + "local_code": "05MI" + }, + { + "id": "322876", + "ident": "05MN", + "type": "heliport", + "name": "Northern Pines Medical Center Heliport", + "latitude_deg": "47.5175001", + "longitude_deg": "-92.2302778", + "elevation_ft": "1446", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Aurora", + "scheduled_service": "no", + "gps_code": "05MN", + "local_code": "05MN" + }, + { + "id": "6834", + "ident": "05MO", + "type": "heliport", + "name": "Portageville Community Heliport", + "latitude_deg": "36.4297981262207", + "longitude_deg": "-89.68009948730469", + "elevation_ft": "272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Portageville", + "scheduled_service": "no", + "gps_code": "05MO", + "local_code": "05MO" + }, + { + "id": "6835", + "ident": "05MS", + "type": "heliport", + "name": "VA Medical Center Jackson Heliport", + "latitude_deg": "32.32973", + "longitude_deg": "-90.16273", + "elevation_ft": "359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "05MS", + "local_code": "05MS" + }, + { + "id": "329892", + "ident": "05MT", + "type": "small_airport", + "name": "Jones Landing Airport", + "latitude_deg": "45.815368", + "longitude_deg": "-111.152163", + "elevation_ft": "4364", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Belgrade", + "scheduled_service": "no", + "gps_code": "05MT", + "local_code": "05MT" + }, + { + "id": "6836", + "ident": "05NC", + "type": "closed", + "name": "Brunswick Community Hospital Heliport", + "latitude_deg": "34.008099", + "longitude_deg": "-78.2911", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Supply", + "scheduled_service": "no", + "keywords": "05NC" + }, + { + "id": "6837", + "ident": "05NE", + "type": "small_airport", + "name": "Mc Kay Airport", + "latitude_deg": "41.7221984863", + "longitude_deg": "-98.3089981079", + "elevation_ft": "2010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Spalding", + "scheduled_service": "no", + "gps_code": "05NE", + "local_code": "05NE" + }, + { + "id": "6838", + "ident": "05NH", + "type": "heliport", + "name": "Stumpfield Heliport", + "latitude_deg": "42.92390060424805", + "longitude_deg": "-70.95140075683594", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Kensington", + "scheduled_service": "no", + "gps_code": "05NH", + "local_code": "05NH" + }, + { + "id": "6839", + "ident": "05NJ", + "type": "heliport", + "name": "Paulus Hook Pier Heliport", + "latitude_deg": "40.7140007019043", + "longitude_deg": "-74.03150177001953", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Jersey City", + "scheduled_service": "no", + "gps_code": "05NJ", + "local_code": "05NJ" + }, + { + "id": "324404", + "ident": "05NV", + "type": "small_airport", + "name": "Baker Ranches Airport", + "latitude_deg": "39.0311", + "longitude_deg": "-114.088219", + "elevation_ft": "5180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Baker", + "scheduled_service": "no", + "gps_code": "05NV", + "local_code": "05NV" + }, + { + "id": "6840", + "ident": "05NY", + "type": "heliport", + "name": "Oswego County At Pulaski Heliport", + "latitude_deg": "43.551998138427734", + "longitude_deg": "-76.09020233154297", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Pulaski", + "scheduled_service": "no", + "gps_code": "05NY", + "local_code": "05NY" + }, + { + "id": "347917", + "ident": "05OG", + "type": "heliport", + "name": "Drill Field Pad Heliport", + "latitude_deg": "44.059531", + "longitude_deg": "-123.118951", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Eugene", + "scheduled_service": "no", + "gps_code": "05OG", + "local_code": "05OG" + }, + { + "id": "429744", + "ident": "05OH", + "type": "small_airport", + "name": "Eaglecrest Field", + "latitude_deg": "40.184513", + "longitude_deg": "-81.920564", + "elevation_ft": "968", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Conesville", + "scheduled_service": "no", + "gps_code": "05OH", + "local_code": "05OH" + }, + { + "id": "6841", + "ident": "05OI", + "type": "small_airport", + "name": "Dorlon Airpark", + "latitude_deg": "41.28839874267578", + "longitude_deg": "-81.96260070800781", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbia Station", + "scheduled_service": "no", + "gps_code": "05OI", + "local_code": "05OI" + }, + { + "id": "6842", + "ident": "05OK", + "type": "closed", + "name": "Hawk Haven Airport", + "latitude_deg": "35.8534", + "longitude_deg": "-97.567497", + "elevation_ft": "1075", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Crescent", + "scheduled_service": "no", + "keywords": "05OK" + }, + { + "id": "6843", + "ident": "05OR", + "type": "small_airport", + "name": "Peacock Ranch Airport", + "latitude_deg": "45.44428", + "longitude_deg": "-117.34722", + "elevation_ft": "3500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Enterprise", + "scheduled_service": "no", + "gps_code": "05OR", + "local_code": "05OR" + }, + { + "id": "6844", + "ident": "05PA", + "type": "heliport", + "name": "PECO Mob. Heliport", + "latitude_deg": "39.9548", + "longitude_deg": "-75.178201", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "05PA", + "local_code": "05PA", + "keywords": "Philadelphia Market Street Heliport" + }, + { + "id": "6845", + "ident": "05PN", + "type": "heliport", + "name": "State Police Area Iii Heliport", + "latitude_deg": "40.30009841918945", + "longitude_deg": "-76.85800170898438", + "elevation_ft": "485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Harrisburg", + "scheduled_service": "no", + "gps_code": "05PN", + "local_code": "05PN" + }, + { + "id": "6846", + "ident": "05PS", + "type": "small_airport", + "name": "Mills Brothers Airport", + "latitude_deg": "40.143075", + "longitude_deg": "-77.86221", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Neelyton", + "scheduled_service": "no", + "gps_code": "05PS", + "local_code": "05PS" + }, + { + "id": "6847", + "ident": "05S", + "type": "small_airport", + "name": "Vernonia Airfield", + "latitude_deg": "45.85150146484375", + "longitude_deg": "-123.24199676513672", + "elevation_ft": "647", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Vernonia", + "scheduled_service": "no", + "gps_code": "05S", + "local_code": "05S", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vernonia_Airfield" + }, + { + "id": "6848", + "ident": "05TA", + "type": "small_airport", + "name": "Brandes Air Field", + "latitude_deg": "29.809099197387695", + "longitude_deg": "-96.26509857177734", + "elevation_ft": "276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sealy", + "scheduled_service": "no", + "gps_code": "05TA", + "local_code": "05TA" + }, + { + "id": "6849", + "ident": "05TE", + "type": "small_airport", + "name": "Hilde-Griff Field", + "latitude_deg": "30.72209930419922", + "longitude_deg": "-97.79139709472656", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Georgetown", + "scheduled_service": "no", + "gps_code": "05TE", + "local_code": "05TE" + }, + { + "id": "6850", + "ident": "05TN", + "type": "closed", + "name": "Thurmond Glenn Field", + "latitude_deg": "35.556998", + "longitude_deg": "-89.552903", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Covington", + "scheduled_service": "no", + "keywords": "05TN" + }, + { + "id": "6851", + "ident": "05TS", + "type": "small_airport", + "name": "Dew Drop Airport", + "latitude_deg": "33.12929916381836", + "longitude_deg": "-97.35859680175781", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Justin", + "scheduled_service": "no", + "gps_code": "05TS", + "local_code": "05TS" + }, + { + "id": "6852", + "ident": "05TX", + "type": "small_airport", + "name": "Circle A Ranch Airport", + "latitude_deg": "32.128974", + "longitude_deg": "-97.404582", + "elevation_ft": "608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Blum", + "scheduled_service": "no", + "gps_code": "05TX", + "local_code": "05TX" + }, + { + "id": "6853", + "ident": "05UT", + "type": "closed", + "name": "Oljato Airport", + "latitude_deg": "37.033626", + "longitude_deg": "-110.315778", + "elevation_ft": "4838", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Oljato-Monument Valley", + "scheduled_service": "no", + "gps_code": "05UT", + "local_code": "05UT", + "keywords": "Ooljééʼtó" + }, + { + "id": "6854", + "ident": "05V", + "type": "small_airport", + "name": "Blanca Airport", + "latitude_deg": "37.41109848022461", + "longitude_deg": "-105.552001953125", + "elevation_ft": "7720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Blanca", + "scheduled_service": "no", + "gps_code": "05V", + "local_code": "05V" + }, + { + "id": "6855", + "ident": "05VA", + "type": "small_airport", + "name": "Providence Airport", + "latitude_deg": "37.22420120239258", + "longitude_deg": "-78.4186019897461", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Farmville", + "scheduled_service": "no", + "gps_code": "05VA", + "local_code": "05VA" + }, + { + "id": "6856", + "ident": "05VT", + "type": "heliport", + "name": "Port of Highgate Springs Heliport", + "latitude_deg": "45.013301849365234", + "longitude_deg": "-73.08670043945312", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Highgate Springs", + "scheduled_service": "no", + "gps_code": "05VT", + "local_code": "05VT" + }, + { + "id": "6857", + "ident": "05WA", + "type": "heliport", + "name": "Sacred Heart Medical Center Helistop", + "latitude_deg": "47.64820098876953", + "longitude_deg": "-117.41400146484375", + "elevation_ft": "2220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Spokane", + "scheduled_service": "no", + "gps_code": "05WA", + "local_code": "05WA" + }, + { + "id": "6858", + "ident": "05WI", + "type": "small_airport", + "name": "Ames Private Airport", + "latitude_deg": "42.651100158691406", + "longitude_deg": "-88.74590301513672", + "elevation_ft": "958", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Darien", + "scheduled_service": "no", + "gps_code": "05WI", + "local_code": "05WI" + }, + { + "id": "45907", + "ident": "05WN", + "type": "small_airport", + "name": "Flat Creek Field", + "latitude_deg": "48.702222", + "longitude_deg": "-118.0475", + "elevation_ft": "1570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Kettle Falls", + "scheduled_service": "no", + "gps_code": "05WN", + "local_code": "05WN" + }, + { + "id": "338863", + "ident": "05XA", + "type": "heliport", + "name": "Moore County Hospital District Heliport", + "latitude_deg": "35.863631", + "longitude_deg": "-101.970944", + "elevation_ft": "3664", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dumas", + "scheduled_service": "no", + "gps_code": "05XA", + "local_code": "05XA" + }, + { + "id": "6859", + "ident": "05XS", + "type": "small_airport", + "name": "Johnson Memorial Airport", + "latitude_deg": "33.07929992675781", + "longitude_deg": "-91.54319763183594", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Wilmot", + "scheduled_service": "no", + "gps_code": "05XS", + "local_code": "05XS" + }, + { + "id": "6860", + "ident": "05Y", + "type": "small_airport", + "name": "Henning Municipal Airport", + "latitude_deg": "46.30379867553711", + "longitude_deg": "-95.43949890136719", + "elevation_ft": "1455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Henning", + "scheduled_service": "no", + "gps_code": "05Y", + "local_code": "05Y" + }, + { + "id": "338864", + "ident": "06AA", + "type": "small_airport", + "name": "Twisted Sisters Airport", + "latitude_deg": "60.540256", + "longitude_deg": "-150.813827", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no", + "gps_code": "06AA", + "local_code": "06AA" + }, + { + "id": "45272", + "ident": "06AK", + "type": "small_airport", + "name": "June Lake Airpark", + "latitude_deg": "61.627619", + "longitude_deg": "-149.575331", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "06AK", + "local_code": "06AK" + }, + { + "id": "6861", + "ident": "06AL", + "type": "heliport", + "name": "Brown Stagefield Army Heliport", + "latitude_deg": "31.388399124145508", + "longitude_deg": "-85.97239685058594", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker/New Brockton", + "scheduled_service": "no", + "gps_code": "06AL", + "local_code": "06AL" + }, + { + "id": "6862", + "ident": "06AR", + "type": "small_airport", + "name": "Bondair Airport", + "latitude_deg": "35.544498443603516", + "longitude_deg": "-92.18489837646484", + "elevation_ft": "499", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Higden", + "scheduled_service": "no", + "gps_code": "06AR", + "local_code": "06AR" + }, + { + "id": "6863", + "ident": "06AZ", + "type": "heliport", + "name": "Mercy Gilbert Medical Center Heliport", + "latitude_deg": "33.287759", + "longitude_deg": "-111.751454", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gilbert", + "scheduled_service": "no", + "gps_code": "06AZ", + "local_code": "06AZ" + }, + { + "id": "6864", + "ident": "06B", + "type": "seaplane_base", + "name": "Lucky Landing Marina and Seaplane Base", + "latitude_deg": "44.907001", + "longitude_deg": "-68.805", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Glenburn", + "scheduled_service": "no", + "local_code": "06B" + }, + { + "id": "6865", + "ident": "06CA", + "type": "heliport", + "name": "SCE Solar I Heliport", + "latitude_deg": "34.868942", + "longitude_deg": "-116.832024", + "elevation_ft": "1942", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Daggett", + "scheduled_service": "no", + "gps_code": "06CA", + "local_code": "06CA" + }, + { + "id": "6866", + "ident": "06CL", + "type": "heliport", + "name": "Abc7-Tv Heliport", + "latitude_deg": "35.15719985961914", + "longitude_deg": "-118.28900146484375", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no", + "gps_code": "06CL", + "local_code": "06CL" + }, + { + "id": "6867", + "ident": "06CO", + "type": "small_airport", + "name": "Jecan Airport", + "latitude_deg": "37.38750076293945", + "longitude_deg": "-103.69100189208984", + "elevation_ft": "5100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Branson", + "scheduled_service": "no", + "gps_code": "06CO", + "local_code": "06CO" + }, + { + "id": "6868", + "ident": "06FA", + "type": "small_airport", + "name": "William P Gwinn Airport", + "latitude_deg": "26.90839958190918", + "longitude_deg": "-80.32890319824219", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jupiter", + "scheduled_service": "no", + "gps_code": "06FA", + "local_code": "06FA", + "wikipedia_link": "https://en.wikipedia.org/wiki/North_Palm_Beach_County_General_Aviation_Airport" + }, + { + "id": "6869", + "ident": "06FD", + "type": "small_airport", + "name": "Grass Roots Airpark", + "latitude_deg": "28.641700744628906", + "longitude_deg": "-81.88500213623047", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Mascotte", + "scheduled_service": "no", + "gps_code": "06FD", + "local_code": "06FD" + }, + { + "id": "6870", + "ident": "06FL", + "type": "heliport", + "name": "Morton Plant Hospital Heliport", + "latitude_deg": "27.953527", + "longitude_deg": "-82.806222", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Clearwater", + "scheduled_service": "no", + "gps_code": "06FL", + "local_code": "06FL" + }, + { + "id": "6871", + "ident": "06GA", + "type": "heliport", + "name": "Smith Heliport", + "latitude_deg": "33.75339889526367", + "longitude_deg": "-84.16210174560547", + "elevation_ft": "1065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Redan", + "scheduled_service": "no", + "gps_code": "06GA", + "local_code": "06GA" + }, + { + "id": "6872", + "ident": "06I", + "type": "seaplane_base", + "name": "Patoka Reservoir Landing Area Seaplane Base", + "latitude_deg": "38.43339920043945", + "longitude_deg": "-86.69110107421875", + "elevation_ft": "536", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "French Lick", + "scheduled_service": "no", + "gps_code": "06I", + "local_code": "06I" + }, + { + "id": "6873", + "ident": "06IA", + "type": "small_airport", + "name": "Rich Field", + "latitude_deg": "41.841400146484375", + "longitude_deg": "-91.83429718017578", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Walford", + "scheduled_service": "no", + "gps_code": "06IA", + "local_code": "06IA" + }, + { + "id": "6874", + "ident": "06ID", + "type": "small_airport", + "name": "Larkin Airport", + "latitude_deg": "43.46269989013672", + "longitude_deg": "-116.35900115966797", + "elevation_ft": "2750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Kuna", + "scheduled_service": "no", + "gps_code": "06ID", + "local_code": "06ID" + }, + { + "id": "6875", + "ident": "06IL", + "type": "small_airport", + "name": "Humm Airport", + "latitude_deg": "41.5994987487793", + "longitude_deg": "-88.86990356445312", + "elevation_ft": "708", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Earlville", + "scheduled_service": "no", + "gps_code": "06IL", + "local_code": "06IL" + }, + { + "id": "6876", + "ident": "06IN", + "type": "closed", + "name": "Ellis Fly-In Airport", + "latitude_deg": "39.282799", + "longitude_deg": "-87.303596", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Blackhawk", + "scheduled_service": "no", + "keywords": "06IN" + }, + { + "id": "6877", + "ident": "06IS", + "type": "small_airport", + "name": "Sinele Strip", + "latitude_deg": "40.5463981628418", + "longitude_deg": "-91.27429962158203", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Nauvoo", + "scheduled_service": "no", + "gps_code": "06IS", + "local_code": "06IS" + }, + { + "id": "6878", + "ident": "06KS", + "type": "heliport", + "name": "Riverside Hospital Airlift Heliport", + "latitude_deg": "37.69580078125", + "longitude_deg": "-97.37249755859375", + "elevation_ft": "1332", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wichita", + "scheduled_service": "no", + "gps_code": "06KS", + "local_code": "06KS" + }, + { + "id": "6879", + "ident": "06KY", + "type": "closed", + "name": "Falcon Heliport", + "latitude_deg": "37.525902", + "longitude_deg": "-83.344901", + "elevation_ft": "751", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Jackson", + "scheduled_service": "no", + "keywords": "06KY" + }, + { + "id": "6880", + "ident": "06LA", + "type": "heliport", + "name": "Panther Helicopters Inc Heliport", + "latitude_deg": "29.84606", + "longitude_deg": "-90.03216", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Belle Chasse", + "scheduled_service": "no", + "gps_code": "06LA", + "local_code": "06LA" + }, + { + "id": "6881", + "ident": "06LL", + "type": "closed", + "name": "Hammersmith Heliport", + "latitude_deg": "41.8736", + "longitude_deg": "-88.496901", + "elevation_ft": "812", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Elburn", + "scheduled_service": "no", + "keywords": "06LL" + }, + { + "id": "6882", + "ident": "06LS", + "type": "heliport", + "name": "Tembec Heliport", + "latitude_deg": "30.70789909362793", + "longitude_deg": "-91.32019805908203", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "St Francisville", + "scheduled_service": "no", + "gps_code": "06LS", + "local_code": "06LS" + }, + { + "id": "6883", + "ident": "06MA", + "type": "heliport", + "name": "The Barn Heliport", + "latitude_deg": "42.69060134887695", + "longitude_deg": "-71.60900115966797", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Pepperell", + "scheduled_service": "no", + "gps_code": "06MA", + "local_code": "06MA" + }, + { + "id": "6884", + "ident": "06MD", + "type": "heliport", + "name": "Johns Hopkins Bayview Hospital Heliport", + "latitude_deg": "39.291401", + "longitude_deg": "-76.546303", + "elevation_ft": "132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Baltimore", + "scheduled_service": "no", + "gps_code": "06MD", + "local_code": "06MD" + }, + { + "id": "322276", + "ident": "06ME", + "type": "heliport", + "name": "Barker Heliport", + "latitude_deg": "44.415247", + "longitude_deg": "-70.844275", + "elevation_ft": "649", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Bethel", + "scheduled_service": "no", + "gps_code": "06ME", + "local_code": "06ME" + }, + { + "id": "6885", + "ident": "06MI", + "type": "heliport", + "name": "W A Foote Memorial Hospital Heliport", + "latitude_deg": "42.2510986328125", + "longitude_deg": "-84.39140319824219", + "elevation_ft": "978", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "06MI", + "local_code": "06MI" + }, + { + "id": "6886", + "ident": "06MN", + "type": "closed", + "name": "Pike Field Airport", + "latitude_deg": "47.652185", + "longitude_deg": "-92.416692", + "elevation_ft": "1463", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Virginia", + "scheduled_service": "no", + "keywords": "06MN" + }, + { + "id": "6887", + "ident": "06MO", + "type": "small_airport", + "name": "Noahs Ark Airport", + "latitude_deg": "39.23059844970703", + "longitude_deg": "-94.80439758300781", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Waldron", + "scheduled_service": "no", + "gps_code": "06MO", + "local_code": "06MO" + }, + { + "id": "6888", + "ident": "06MT", + "type": "small_airport", + "name": "Torgerson Airport", + "latitude_deg": "48.558696", + "longitude_deg": "-112.117095", + "elevation_ft": "3541", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Ethridge", + "scheduled_service": "no", + "gps_code": "06MT", + "local_code": "06MT" + }, + { + "id": "6889", + "ident": "06N", + "type": "small_airport", + "name": "Randall Airport", + "latitude_deg": "41.431999", + "longitude_deg": "-74.391602", + "elevation_ft": "523", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Middletown", + "scheduled_service": "no", + "gps_code": "K06N", + "local_code": "06N" + }, + { + "id": "6890", + "ident": "06NC", + "type": "small_airport", + "name": "Tailwinds Airport", + "latitude_deg": "34.82749938964844", + "longitude_deg": "-78.9302978515625", + "elevation_ft": "163", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "St. Pauls", + "scheduled_service": "no", + "gps_code": "06NC", + "local_code": "06NC" + }, + { + "id": "6891", + "ident": "06ND", + "type": "small_airport", + "name": "Fitterer's Strip", + "latitude_deg": "46.7489013671875", + "longitude_deg": "-101.66899871826172", + "elevation_ft": "2180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Glen Ullin", + "scheduled_service": "no", + "gps_code": "06ND", + "local_code": "06ND" + }, + { + "id": "6892", + "ident": "06NE", + "type": "heliport", + "name": "St Marys Hospital Heliport", + "latitude_deg": "40.68000030517578", + "longitude_deg": "-95.86170196533203", + "elevation_ft": "1015", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Nebraska City", + "scheduled_service": "no", + "gps_code": "06NE", + "local_code": "06NE" + }, + { + "id": "6893", + "ident": "06NH", + "type": "small_airport", + "name": "Cole Farm Airport", + "latitude_deg": "42.92839813232422", + "longitude_deg": "-70.97309875488281", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Kensington", + "scheduled_service": "no", + "gps_code": "06NH", + "local_code": "06NH" + }, + { + "id": "6894", + "ident": "06NJ", + "type": "closed", + "name": "Chemical Bank - New Jersey Na Heliport", + "latitude_deg": "39.950102", + "longitude_deg": "-74.999603", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Moorestown", + "scheduled_service": "no", + "keywords": "06NJ" + }, + { + "id": "324414", + "ident": "06NV", + "type": "small_airport", + "name": "Silver Creek Airport", + "latitude_deg": "39.098333", + "longitude_deg": "-114.150277", + "elevation_ft": "5556", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Baker", + "scheduled_service": "no", + "gps_code": "06NV", + "local_code": "06NV" + }, + { + "id": "6895", + "ident": "06NY", + "type": "small_airport", + "name": "Murphy Field", + "latitude_deg": "42.836797", + "longitude_deg": "-76.437614", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "06NY", + "local_code": "06NY" + }, + { + "id": "6896", + "ident": "06O1", + "type": "heliport", + "name": "Saint Elizabeth Medical Center Heliport", + "latitude_deg": "41.11479949951172", + "longitude_deg": "-80.65699768066406", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Youngstown", + "scheduled_service": "no", + "gps_code": "06O1", + "local_code": "06O1" + }, + { + "id": "6897", + "ident": "06OH", + "type": "small_airport", + "name": "Hal Joy Airfield", + "latitude_deg": "41.50979995727539", + "longitude_deg": "-80.59120178222656", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Williamsfield", + "scheduled_service": "no", + "gps_code": "06OH", + "local_code": "06OH" + }, + { + "id": "6898", + "ident": "06OI", + "type": "small_airport", + "name": "Green Acres Airport", + "latitude_deg": "39.734798431396484", + "longitude_deg": "-84.3822021484375", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "New Lebanon", + "scheduled_service": "no", + "gps_code": "06OI", + "local_code": "06OI" + }, + { + "id": "6899", + "ident": "06OK", + "type": "heliport", + "name": "Albert Lodge Heliport", + "latitude_deg": "36.54169845581055", + "longitude_deg": "-94.83360290527344", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Grove", + "scheduled_service": "no", + "gps_code": "06OK", + "local_code": "06OK" + }, + { + "id": "6900", + "ident": "06OR", + "type": "small_airport", + "name": "Hayden Mountain Airport", + "latitude_deg": "45.4650993347168", + "longitude_deg": "-123.08000183105469", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Forest Grove", + "scheduled_service": "no", + "gps_code": "06OR", + "local_code": "06OR" + }, + { + "id": "6901", + "ident": "06PA", + "type": "small_airport", + "name": "Freefall Oz Airport", + "latitude_deg": "41.995792", + "longitude_deg": "-78.288152", + "elevation_ft": "1440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Ceres", + "scheduled_service": "no", + "gps_code": "06PA", + "local_code": "06PA", + "keywords": "04D, Ceres Airport" + }, + { + "id": "45764", + "ident": "06PN", + "type": "heliport", + "name": "Schiavoni Heliport", + "latitude_deg": "40.382733", + "longitude_deg": "-76.772533", + "elevation_ft": "727", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Harrisburg", + "scheduled_service": "no", + "gps_code": "06PN", + "local_code": "06PN" + }, + { + "id": "6902", + "ident": "06PS", + "type": "heliport", + "name": "Cherokee Island Castle Heliport", + "latitude_deg": "40.40230178833008", + "longitude_deg": "-79.92130279541016", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "West Homestead", + "scheduled_service": "no", + "gps_code": "06PS", + "local_code": "06PS" + }, + { + "id": "6903", + "ident": "06R", + "type": "small_airport", + "name": "Grawunder Field", + "latitude_deg": "29.9419002532959", + "longitude_deg": "-96.24610137939453", + "elevation_ft": "289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bellville", + "scheduled_service": "no", + "gps_code": "06R", + "local_code": "06R" + }, + { + "id": "6904", + "ident": "06SN", + "type": "small_airport", + "name": "Beyer Farm Airport", + "latitude_deg": "37.583900451660156", + "longitude_deg": "-97.25309753417969", + "elevation_ft": "1340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Derby", + "scheduled_service": "no", + "gps_code": "06SN", + "local_code": "06SN" + }, + { + "id": "6905", + "ident": "06TA", + "type": "small_airport", + "name": "Glaser Field", + "latitude_deg": "30.90850067138672", + "longitude_deg": "-97.11689758300781", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Buckholts", + "scheduled_service": "no", + "gps_code": "06TA", + "local_code": "06TA" + }, + { + "id": "6906", + "ident": "06TE", + "type": "small_airport", + "name": "Ainsworth Airport", + "latitude_deg": "30.312700271606445", + "longitude_deg": "-95.02690124511719", + "elevation_ft": "129", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "06TE", + "local_code": "06TE" + }, + { + "id": "6907", + "ident": "06TN", + "type": "small_airport", + "name": "Hunter STOLport", + "latitude_deg": "35.69729995727539", + "longitude_deg": "-86.95690155029297", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "06TN", + "local_code": "06TN" + }, + { + "id": "6908", + "ident": "06TS", + "type": "closed", + "name": "Roscoe Mc Connico Airport", + "latitude_deg": "32.120701", + "longitude_deg": "-96.179101", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kerens", + "scheduled_service": "no", + "keywords": "06TS" + }, + { + "id": "340868", + "ident": "06TT", + "type": "small_airport", + "name": "6 Mile Airpark", + "latitude_deg": "30.860024", + "longitude_deg": "-100.201996", + "elevation_ft": "2165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort McKavett", + "scheduled_service": "no", + "gps_code": "06TT", + "local_code": "06TT" + }, + { + "id": "6909", + "ident": "06TX", + "type": "small_airport", + "name": "Diamond N Ranch Airport", + "latitude_deg": "30.057919", + "longitude_deg": "-95.812489", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hockley", + "scheduled_service": "no", + "gps_code": "06TX", + "local_code": "06TX" + }, + { + "id": "6910", + "ident": "06VA", + "type": "small_airport", + "name": "Mount Horeb Field", + "latitude_deg": "38.249000549316406", + "longitude_deg": "-78.85530090332031", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Grottoes", + "scheduled_service": "no", + "gps_code": "06VA", + "local_code": "06VA" + }, + { + "id": "6911", + "ident": "06WA", + "type": "heliport", + "name": "N A Degerstrom Yard Heliport", + "latitude_deg": "47.68629837036133", + "longitude_deg": "-117.197998046875", + "elevation_ft": "2013", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Spokane", + "scheduled_service": "no", + "gps_code": "06WA", + "local_code": "06WA" + }, + { + "id": "6912", + "ident": "06WI", + "type": "closed", + "name": "Young Private Airport", + "latitude_deg": "45.662701", + "longitude_deg": "-92.450203", + "elevation_ft": "1075", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Frederic", + "scheduled_service": "no", + "keywords": "06WI" + }, + { + "id": "15372", + "ident": "06WN", + "type": "small_airport", + "name": "Western Airpark", + "latitude_deg": "46.92499923706055", + "longitude_deg": "-122.5530014038086", + "elevation_ft": "394", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Yelm", + "scheduled_service": "no", + "gps_code": "06WN", + "local_code": "06WN", + "keywords": "Formerly 92W" + }, + { + "id": "350921", + "ident": "06XA", + "type": "small_airport", + "name": "J & W Windy Hill Airport", + "latitude_deg": "33.445914", + "longitude_deg": "-96.57079", + "elevation_ft": "784", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Van Alstyne", + "scheduled_service": "no", + "gps_code": "06XA", + "local_code": "06XA" + }, + { + "id": "6913", + "ident": "06XS", + "type": "small_airport", + "name": "Campbell Field", + "latitude_deg": "33.322933", + "longitude_deg": "-97.045019", + "elevation_ft": "546", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Aubrey", + "scheduled_service": "no", + "gps_code": "06XS", + "local_code": "06XS" + }, + { + "id": "6914", + "ident": "06Y", + "type": "small_airport", + "name": "Herman Municipal Airport", + "latitude_deg": "45.83000183105469", + "longitude_deg": "-96.16059875488281", + "elevation_ft": "1068", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Herman", + "scheduled_service": "no", + "gps_code": "06Y", + "local_code": "06Y" + }, + { + "id": "318194", + "ident": "07AA", + "type": "small_airport", + "name": "Pan Lake Strip Airport", + "latitude_deg": "61.695964", + "longitude_deg": "-149.954903", + "elevation_ft": "357", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Willow", + "scheduled_service": "no", + "gps_code": "07AA", + "local_code": "07AA", + "keywords": "Frying Pan Lake, Rappin Rappe" + }, + { + "id": "6915", + "ident": "07AL", + "type": "heliport", + "name": "Tac X Stagefield Army Heliport", + "latitude_deg": "31.125200271606445", + "longitude_deg": "-85.9791030883789", + "elevation_ft": "132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker/Samson", + "scheduled_service": "no", + "gps_code": "07AL", + "local_code": "07AL" + }, + { + "id": "6916", + "ident": "07AR", + "type": "small_airport", + "name": "Morrilton Airport", + "latitude_deg": "35.194339", + "longitude_deg": "-92.802473", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Morrilton", + "scheduled_service": "no", + "gps_code": "07AR", + "local_code": "07AR" + }, + { + "id": "6917", + "ident": "07AZ", + "type": "closed", + "name": "John C Lincoln Hospital Heliport", + "latitude_deg": "33.5667", + "longitude_deg": "-112.069", + "elevation_ft": "1255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "keywords": "07AZ" + }, + { + "id": "6918", + "ident": "07B", + "type": "small_airport", + "name": "Blue Hill Airport", + "latitude_deg": "44.448001861572266", + "longitude_deg": "-68.5697021484375", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Blue Hill", + "scheduled_service": "no", + "gps_code": "07B", + "local_code": "07B" + }, + { + "id": "6919", + "ident": "07CA", + "type": "closed", + "name": "West Side Hospital Heliport", + "latitude_deg": "35.138949", + "longitude_deg": "-119.451463", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Taft", + "scheduled_service": "no", + "keywords": "07CA" + }, + { + "id": "6920", + "ident": "07CL", + "type": "small_airport", + "name": "Richvale Airport", + "latitude_deg": "39.49769973754883", + "longitude_deg": "-121.77100372314453", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Richvale", + "scheduled_service": "no", + "gps_code": "07CL", + "local_code": "07CL" + }, + { + "id": "6921", + "ident": "07CO", + "type": "small_airport", + "name": "Comanche Creek Airport", + "latitude_deg": "39.26359939575195", + "longitude_deg": "-104.427001953125", + "elevation_ft": "6620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Kiowa", + "scheduled_service": "no", + "gps_code": "07CO", + "local_code": "07CO" + }, + { + "id": "6922", + "ident": "07CT", + "type": "closed", + "name": "TNT Heliport", + "latitude_deg": "41.4529", + "longitude_deg": "-72.249603", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Salem", + "scheduled_service": "no", + "keywords": "07CT" + }, + { + "id": "6923", + "ident": "07D", + "type": "small_airport", + "name": "Tackaberry Airport", + "latitude_deg": "43.06449890136719", + "longitude_deg": "-82.72380065917969", + "elevation_ft": "764", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Avoca", + "scheduled_service": "no", + "gps_code": "07D", + "local_code": "07D" + }, + { + "id": "6924", + "ident": "07FA", + "type": "small_airport", + "name": "Ocean Reef Club Airport", + "latitude_deg": "25.325399398804", + "longitude_deg": "-80.274803161621", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Key Largo", + "scheduled_service": "no", + "gps_code": "07FA", + "iata_code": "OCA", + "local_code": "07FA", + "home_link": "https://www.oceanreef.com/community/private-airport-1345.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ocean_Reef_Club_Airport" + }, + { + "id": "6925", + "ident": "07FD", + "type": "closed", + "name": "Flying G Ranch STOLport", + "latitude_deg": "30.417999", + "longitude_deg": "-83.283796", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lee", + "scheduled_service": "no", + "keywords": "07FD" + }, + { + "id": "6926", + "ident": "07FL", + "type": "closed", + "name": "Southwest Florida Regional Medical Center Heliport", + "latitude_deg": "26.6054", + "longitude_deg": "-81.859497", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Myers", + "scheduled_service": "no" + }, + { + "id": "6927", + "ident": "07GA", + "type": "small_airport", + "name": "Alcovy Airport", + "latitude_deg": "33.674263", + "longitude_deg": "-83.764637", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Covington", + "scheduled_service": "no", + "gps_code": "07GA", + "local_code": "07GA" + }, + { + "id": "6928", + "ident": "07I", + "type": "seaplane_base", + "name": "Lake Monroe Seaplane Base", + "latitude_deg": "39.05870056152344", + "longitude_deg": "-86.44609832763672", + "elevation_ft": "538", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bloomington", + "scheduled_service": "no", + "gps_code": "07I", + "local_code": "07I" + }, + { + "id": "355064", + "ident": "07IA", + "type": "small_airport", + "name": "Hoskins Landing", + "latitude_deg": "40.647888", + "longitude_deg": "-95.02135", + "elevation_ft": "971", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Shambaugh", + "scheduled_service": "no", + "gps_code": "07IA", + "local_code": "07IA" + }, + { + "id": "6929", + "ident": "07ID", + "type": "closed", + "name": "Interstate Airport", + "latitude_deg": "42.274991", + "longitude_deg": "-113.301229", + "elevation_ft": "4580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Malta", + "scheduled_service": "no", + "keywords": "07ID" + }, + { + "id": "6930", + "ident": "07II", + "type": "heliport", + "name": "St Vincent Jennings Hospital Heliport", + "latitude_deg": "39.01060104370117", + "longitude_deg": "-85.64080047607422", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "North Vernon", + "scheduled_service": "no", + "gps_code": "07II", + "local_code": "07II" + }, + { + "id": "6931", + "ident": "07IN", + "type": "small_airport", + "name": "Gray Airport", + "latitude_deg": "39.573699951171875", + "longitude_deg": "-85.91390228271484", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Boggstown", + "scheduled_service": "no", + "gps_code": "07IN", + "local_code": "07IN" + }, + { + "id": "6932", + "ident": "07K", + "type": "small_airport", + "name": "Central City Municipal - Larry Reineke Field", + "latitude_deg": "41.1125984192", + "longitude_deg": "-98.0516967773", + "elevation_ft": "1717", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Central City", + "scheduled_service": "no", + "gps_code": "07K", + "local_code": "07K" + }, + { + "id": "6933", + "ident": "07KS", + "type": "small_airport", + "name": "Heape Field", + "latitude_deg": "37.73419952392578", + "longitude_deg": "-96.93669891357422", + "elevation_ft": "1321", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Augusta", + "scheduled_service": "no", + "gps_code": "07KS", + "local_code": "07KS" + }, + { + "id": "6934", + "ident": "07KY", + "type": "small_airport", + "name": "Blue Lick Airport", + "latitude_deg": "38.08060073852539", + "longitude_deg": "-85.69329833984375", + "elevation_ft": "532", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "07KY", + "local_code": "07KY" + }, + { + "id": "6935", + "ident": "07LA", + "type": "closed", + "name": "Air Oil Inc Nr 1 Heliport", + "latitude_deg": "29.937099", + "longitude_deg": "-90.183701", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Harahan", + "scheduled_service": "no", + "keywords": "07LA" + }, + { + "id": "6936", + "ident": "07LS", + "type": "heliport", + "name": "Louisiana State Police Troop F Heliport", + "latitude_deg": "32.51825", + "longitude_deg": "-91.989093", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "07LS", + "local_code": "07LS" + }, + { + "id": "6937", + "ident": "07MA", + "type": "heliport", + "name": "West Pond Heliport", + "latitude_deg": "41.91699981689453", + "longitude_deg": "-70.70950317382812", + "elevation_ft": "149", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "07MA", + "local_code": "07MA" + }, + { + "id": "6938", + "ident": "07MD", + "type": "small_airport", + "name": "Baugher's Orchard Airport", + "latitude_deg": "39.608299255371094", + "longitude_deg": "-77.0519027709961", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Westminster", + "scheduled_service": "no", + "gps_code": "07MD", + "local_code": "07MD" + }, + { + "id": "6939", + "ident": "07ME", + "type": "heliport", + "name": "Westbrook Heliport", + "latitude_deg": "43.73830032348633", + "longitude_deg": "-70.33920288085938", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Westbrook", + "scheduled_service": "no", + "gps_code": "07ME", + "local_code": "07ME" + }, + { + "id": "6940", + "ident": "07MI", + "type": "small_airport", + "name": "Scott Airstrip", + "latitude_deg": "43.864200592041016", + "longitude_deg": "-85.0239028930664", + "elevation_ft": "1065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lake", + "scheduled_service": "no", + "gps_code": "07MI", + "local_code": "07MI" + }, + { + "id": "6941", + "ident": "07MN", + "type": "small_airport", + "name": "Dairyview Airport", + "latitude_deg": "44.05500030517578", + "longitude_deg": "-95.90950012207031", + "elevation_ft": "1680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hadley", + "scheduled_service": "no", + "gps_code": "07MN", + "local_code": "07MN" + }, + { + "id": "6942", + "ident": "07MO", + "type": "small_airport", + "name": "Lake Sexton Airport", + "latitude_deg": "38.655553", + "longitude_deg": "-93.624458", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Warrensburg", + "scheduled_service": "no", + "gps_code": "07MO", + "local_code": "07MO" + }, + { + "id": "6943", + "ident": "07MT", + "type": "small_airport", + "name": "Glasgow Industrial Airport", + "latitude_deg": "48.42110061645508", + "longitude_deg": "-106.52799987792969", + "elevation_ft": "2762", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Glasgow", + "scheduled_service": "no", + "gps_code": "07MT", + "local_code": "07MT" + }, + { + "id": "6944", + "ident": "07N", + "type": "small_airport", + "name": "Bermudian Valley Airpark", + "latitude_deg": "40.0168", + "longitude_deg": "-77.003899", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Washington Township", + "scheduled_service": "no", + "gps_code": "K07N", + "local_code": "07N" + }, + { + "id": "6945", + "ident": "07NC", + "type": "small_airport", + "name": "Hawks Meadow Airport", + "latitude_deg": "34.83319854736328", + "longitude_deg": "-80.7511978149414", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Waxhaw", + "scheduled_service": "no", + "gps_code": "07NC", + "local_code": "07NC" + }, + { + "id": "6946", + "ident": "07NH", + "type": "seaplane_base", + "name": "Diving Rock Seaplane Base", + "latitude_deg": "43.17559814453125", + "longitude_deg": "-72.06390380859375", + "elevation_ft": "1404", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "07NH", + "local_code": "07NH" + }, + { + "id": "6947", + "ident": "07NJ", + "type": "heliport", + "name": "Hackensack UMC Palisades Heliport", + "latitude_deg": "40.793666", + "longitude_deg": "-73.994863", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "North Bergen", + "scheduled_service": "no", + "gps_code": "07NJ", + "local_code": "07NJ", + "keywords": "Palisades General Hospital Heliport" + }, + { + "id": "324410", + "ident": "07NV", + "type": "small_airport", + "name": "Border Line Farm Airport", + "latitude_deg": "39.102239", + "longitude_deg": "-114.053472", + "elevation_ft": "5120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Baker", + "scheduled_service": "no", + "gps_code": "07NV", + "local_code": "07NV" + }, + { + "id": "6948", + "ident": "07NY", + "type": "heliport", + "name": "Mmc Heliport", + "latitude_deg": "42.66640090942383", + "longitude_deg": "-74.76499938964844", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Monticello", + "scheduled_service": "no", + "gps_code": "07NY", + "local_code": "07NY" + }, + { + "id": "6949", + "ident": "07OH", + "type": "closed", + "name": "Tennessee Gas Heliport", + "latitude_deg": "39.9373", + "longitude_deg": "-81.683503", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Claysville", + "scheduled_service": "no", + "keywords": "07OH" + }, + { + "id": "6950", + "ident": "07OK", + "type": "small_airport", + "name": "Pleasant Valley Airport", + "latitude_deg": "34.633399963378906", + "longitude_deg": "-99.03369903564453", + "elevation_ft": "1322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Snyder", + "scheduled_service": "no", + "gps_code": "07OK", + "local_code": "07OK" + }, + { + "id": "6951", + "ident": "07OR", + "type": "small_airport", + "name": "Bruce's Airport", + "latitude_deg": "45.42179870605469", + "longitude_deg": "-122.62000274658203", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Milwaukie", + "scheduled_service": "no", + "gps_code": "07OR", + "local_code": "07OR" + }, + { + "id": "45747", + "ident": "07PN", + "type": "small_airport", + "name": "Folmar Airport", + "latitude_deg": "40.998889", + "longitude_deg": "-78.125278", + "elevation_ft": "1690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Grassflat", + "scheduled_service": "no", + "gps_code": "07PN", + "local_code": "07PN" + }, + { + "id": "349103", + "ident": "07PR", + "type": "heliport", + "name": "Advanced Public Health of Isabela Heliport", + "latitude_deg": "18.489403", + "longitude_deg": "-67.026333", + "elevation_ft": "289", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Isabela", + "scheduled_service": "no", + "gps_code": "07PR", + "local_code": "07PR" + }, + { + "id": "6952", + "ident": "07SN", + "type": "small_airport", + "name": "Churchill Airport", + "latitude_deg": "39.77280044555664", + "longitude_deg": "-99.36009979248047", + "elevation_ft": "1965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Phillipsburg", + "scheduled_service": "no", + "gps_code": "07SN", + "local_code": "07SN" + }, + { + "id": "6953", + "ident": "07TA", + "type": "small_airport", + "name": "Salaika Aviation Airport", + "latitude_deg": "29.240519", + "longitude_deg": "-95.344658", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Danbury", + "scheduled_service": "no", + "gps_code": "07TA", + "local_code": "07TA", + "keywords": "Salaika Aviation Heliport" + }, + { + "id": "6954", + "ident": "07TE", + "type": "small_airport", + "name": "Cuddihy Field", + "latitude_deg": "27.721099853515625", + "longitude_deg": "-97.51280212402344", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no", + "gps_code": "07TE", + "local_code": "07TE" + }, + { + "id": "6955", + "ident": "07TN", + "type": "small_airport", + "name": "Corntassel Airport", + "latitude_deg": "35.568599700927734", + "longitude_deg": "-84.24109649658203", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Vonore", + "scheduled_service": "no", + "gps_code": "07TN", + "local_code": "07TN" + }, + { + "id": "6956", + "ident": "07TS", + "type": "small_airport", + "name": "Cross-Country Estates Airport", + "latitude_deg": "30.625381", + "longitude_deg": "-97.571425", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Georgetown", + "scheduled_service": "no", + "gps_code": "07TS", + "local_code": "07TS" + }, + { + "id": "6957", + "ident": "07TX", + "type": "heliport", + "name": "Pecks Heliport", + "latitude_deg": "33.183998107910156", + "longitude_deg": "-96.447998046875", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "07TX", + "local_code": "07TX" + }, + { + "id": "310114", + "ident": "07UT", + "type": "small_airport", + "name": "E Northrop Grumman Airport", + "latitude_deg": "41.716667", + "longitude_deg": "-112.447222", + "elevation_ft": "4480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Howell", + "scheduled_service": "no", + "gps_code": "07UT", + "local_code": "07UT", + "keywords": "UT23, Air Force Plant 78 Airfield, ATK/Thiokol Airport" + }, + { + "id": "6958", + "ident": "07VA", + "type": "small_airport", + "name": "Alpha Hotel Airport", + "latitude_deg": "36.81959915161133", + "longitude_deg": "-78.78309631347656", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Clover", + "scheduled_service": "no", + "gps_code": "07VA", + "local_code": "07VA" + }, + { + "id": "6959", + "ident": "07VT", + "type": "small_airport", + "name": "Meadow STOLport", + "latitude_deg": "44.447200775146484", + "longitude_deg": "-72.91470336914062", + "elevation_ft": "801", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Jericho", + "scheduled_service": "no", + "gps_code": "07VT", + "local_code": "07VT" + }, + { + "id": "6960", + "ident": "07WA", + "type": "heliport", + "name": "Multicare Deaconess Hospital Heliport", + "latitude_deg": "47.651637", + "longitude_deg": "-117.424477", + "elevation_ft": "2110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Spokane", + "scheduled_service": "no", + "gps_code": "07WA", + "local_code": "07WA", + "keywords": "Deaconess Medical Center Heliport" + }, + { + "id": "6961", + "ident": "07WI", + "type": "closed", + "name": "Bartell Strip", + "latitude_deg": "42.965302", + "longitude_deg": "-88.391502", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Genessee Depot", + "scheduled_service": "no", + "keywords": "07WI" + }, + { + "id": "346208", + "ident": "07WY", + "type": "small_airport", + "name": "Stallions Airport", + "latitude_deg": "44.960084", + "longitude_deg": "-106.105925", + "elevation_ft": "4074", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Sheridan", + "scheduled_service": "no", + "gps_code": "07WY", + "local_code": "07WY" + }, + { + "id": "341553", + "ident": "07XA", + "type": "heliport", + "name": "Luecke Heliport", + "latitude_deg": "29.906488", + "longitude_deg": "-97.214397", + "elevation_ft": "451", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Smithville", + "scheduled_service": "no", + "gps_code": "07XA", + "local_code": "07XA" + }, + { + "id": "6962", + "ident": "07XS", + "type": "heliport", + "name": "Allen Ponderosa Heliport", + "latitude_deg": "32.542198181152344", + "longitude_deg": "-97.3917007446289", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crowley", + "scheduled_service": "no", + "gps_code": "07XS", + "local_code": "07XS" + }, + { + "id": "6963", + "ident": "07Y", + "type": "small_airport", + "name": "Hill City-Quadna Mountain Airport", + "latitude_deg": "46.955501556396484", + "longitude_deg": "-93.5969009399414", + "elevation_ft": "1289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hill City", + "scheduled_service": "no", + "gps_code": "07Y", + "local_code": "07Y" + }, + { + "id": "45248", + "ident": "08AK", + "type": "small_airport", + "name": "Fisher Airport", + "latitude_deg": "61.568743", + "longitude_deg": "-149.725757", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "08AK", + "local_code": "08AK" + }, + { + "id": "332752", + "ident": "08AL", + "type": "seaplane_base", + "name": "Little Lagoon Seaplane Base", + "latitude_deg": "30.243717", + "longitude_deg": "-87.754678", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Gulf Shores", + "scheduled_service": "no", + "gps_code": "08AL", + "local_code": "08AL" + }, + { + "id": "6964", + "ident": "08AR", + "type": "closed", + "name": "Crittenden Regional Hospital Heliport", + "latitude_deg": "35.142046", + "longitude_deg": "-90.190212", + "elevation_ft": "206", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "West Memphis", + "scheduled_service": "no", + "keywords": "08AR" + }, + { + "id": "6965", + "ident": "08AZ", + "type": "heliport", + "name": "Mesa Police Heliport", + "latitude_deg": "33.417669", + "longitude_deg": "-111.838835", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no", + "gps_code": "08AZ", + "local_code": "08AZ" + }, + { + "id": "6966", + "ident": "08B", + "type": "small_airport", + "name": "Merrymeeting Field", + "latitude_deg": "44", + "longitude_deg": "-69.88710021972656", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Bowdoinham", + "scheduled_service": "no", + "gps_code": "08B", + "local_code": "08B" + }, + { + "id": "6967", + "ident": "08CA", + "type": "heliport", + "name": "Pg & E Co. Placerville Svc Center Heliport", + "latitude_deg": "38.69490051269531", + "longitude_deg": "-120.8270034790039", + "elevation_ft": "1810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Diamond Springs", + "scheduled_service": "no", + "gps_code": "08CA", + "local_code": "08CA" + }, + { + "id": "6968", + "ident": "08CL", + "type": "small_airport", + "name": "Kistler Ranch Airport", + "latitude_deg": "37.85960006713867", + "longitude_deg": "-120.55400085449219", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Jamestown", + "scheduled_service": "no", + "gps_code": "08CL", + "local_code": "08CL" + }, + { + "id": "45316", + "ident": "08CN", + "type": "heliport", + "name": "Tulare Motor Sports #1 Heliport", + "latitude_deg": "36.172031", + "longitude_deg": "-119.306181", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tulare", + "scheduled_service": "no", + "gps_code": "08CN", + "local_code": "08CN" + }, + { + "id": "6969", + "ident": "08CO", + "type": "small_airport", + "name": "Terra Firma Airport", + "latitude_deg": "38.73249816894531", + "longitude_deg": "-104.04100036621094", + "elevation_ft": "5600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Rush", + "scheduled_service": "no", + "gps_code": "08CO", + "local_code": "08CO" + }, + { + "id": "6970", + "ident": "08CT", + "type": "seaplane_base", + "name": "Seavair's Landing Seaplane Base", + "latitude_deg": "41.895999908447266", + "longitude_deg": "-73.09310150146484", + "elevation_ft": "881", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Winsted", + "scheduled_service": "no", + "gps_code": "08CT", + "local_code": "08CT" + }, + { + "id": "6971", + "ident": "08F", + "type": "small_airport", + "name": "City of Coalgate Airport", + "latitude_deg": "34.53179931640625", + "longitude_deg": "-96.23310089111328", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Coalgate", + "scheduled_service": "no", + "gps_code": "08F", + "local_code": "08F" + }, + { + "id": "6972", + "ident": "08FA", + "type": "small_airport", + "name": "Duda Airstrip", + "latitude_deg": "26.57979965209961", + "longitude_deg": "-81.48370361328125", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "La Belle", + "scheduled_service": "no", + "gps_code": "08FA", + "local_code": "08FA" + }, + { + "id": "6973", + "ident": "08FD", + "type": "small_airport", + "name": "Sunniland Ranch Airport", + "latitude_deg": "27.363100051879883", + "longitude_deg": "-80.77279663085938", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Okeechobee", + "scheduled_service": "no", + "gps_code": "08FD", + "local_code": "08FD" + }, + { + "id": "6974", + "ident": "08FL", + "type": "small_airport", + "name": "J. H. Hendrie Farms Airport", + "latitude_deg": "27.08449935913086", + "longitude_deg": "-81.32869720458984", + "elevation_ft": "103", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Placid", + "scheduled_service": "no", + "gps_code": "08FL", + "local_code": "08FL" + }, + { + "id": "6975", + "ident": "08G", + "type": "heliport", + "name": "Salt Fork Lodge Heliport", + "latitude_deg": "40.11090087890625", + "longitude_deg": "-81.52619934082031", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "08G", + "local_code": "08G" + }, + { + "id": "6976", + "ident": "08GA", + "type": "small_airport", + "name": "Sapelo Island Airport", + "latitude_deg": "31.425800323486328", + "longitude_deg": "-81.28589630126953", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Darien", + "scheduled_service": "no", + "gps_code": "08GA", + "local_code": "08GA" + }, + { + "id": "6977", + "ident": "08ID", + "type": "small_airport", + "name": "Symms Airport", + "latitude_deg": "43.56930160522461", + "longitude_deg": "-116.7770004272461", + "elevation_ft": "2680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Marsing", + "scheduled_service": "no", + "gps_code": "08ID", + "local_code": "08ID" + }, + { + "id": "6978", + "ident": "08II", + "type": "heliport", + "name": "Parkview Lagrange Hospital Heliport", + "latitude_deg": "41.645085", + "longitude_deg": "-85.426386", + "elevation_ft": "943", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lagrange", + "scheduled_service": "no", + "gps_code": "08II", + "local_code": "08II", + "keywords": "Lagrange Hospital Heliport" + }, + { + "id": "6979", + "ident": "08IL", + "type": "closed", + "name": "Harms Airstrip", + "latitude_deg": "41.577", + "longitude_deg": "-89.793999", + "elevation_ft": "643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Tampico", + "scheduled_service": "no", + "keywords": "08IL" + }, + { + "id": "45416", + "ident": "08IN", + "type": "seaplane_base", + "name": "Winona Lake Seaplane Base", + "latitude_deg": "41.223056", + "longitude_deg": "-85.830556", + "elevation_ft": "812", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Winona Lake", + "scheduled_service": "no", + "gps_code": "02D", + "local_code": "02D", + "keywords": "08IN" + }, + { + "id": "6980", + "ident": "08IS", + "type": "small_airport", + "name": "Hemmer RLA Restricted Landing Area", + "latitude_deg": "37.977798461899994", + "longitude_deg": "-89.20290374759999", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Du Quoin", + "scheduled_service": "no", + "gps_code": "08IS", + "local_code": "08IS" + }, + { + "id": "6981", + "ident": "08KS", + "type": "small_airport", + "name": "Alderson Airport", + "latitude_deg": "39.034698486328125", + "longitude_deg": "-97.58000183105469", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Bennington", + "scheduled_service": "no", + "gps_code": "08KS", + "local_code": "08KS" + }, + { + "id": "334339", + "ident": "08KT", + "type": "heliport", + "name": "Methodist Health Heliport", + "latitude_deg": "37.628414", + "longitude_deg": "-87.946994", + "elevation_ft": "435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Morganfield", + "scheduled_service": "no", + "gps_code": "08KT", + "local_code": "08KT" + }, + { + "id": "6982", + "ident": "08KY", + "type": "small_airport", + "name": "Boss Airport", + "latitude_deg": "36.972599029541016", + "longitude_deg": "-84.6260986328125", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Burnside", + "scheduled_service": "no", + "gps_code": "08KY", + "local_code": "08KY" + }, + { + "id": "6983", + "ident": "08LA", + "type": "heliport", + "name": "Air Oil Inc Nr 2 Heliport", + "latitude_deg": "29.952999114990234", + "longitude_deg": "-90.18260192871094", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Harahan", + "scheduled_service": "no", + "gps_code": "08LA", + "local_code": "08LA" + }, + { + "id": "6984", + "ident": "08LL", + "type": "small_airport", + "name": "Sauer Airport", + "latitude_deg": "41.07529830932617", + "longitude_deg": "-88.48919677734375", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Dwight", + "scheduled_service": "no", + "gps_code": "08LL", + "local_code": "08LL" + }, + { + "id": "6985", + "ident": "08LS", + "type": "small_airport", + "name": "Aeleron Airport", + "latitude_deg": "30.40829", + "longitude_deg": "-92.033444", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Sunset", + "scheduled_service": "no", + "gps_code": "08LS", + "local_code": "08LS" + }, + { + "id": "6986", + "ident": "08MA", + "type": "small_airport", + "name": "Wormid Airport", + "latitude_deg": "42.29399871826172", + "longitude_deg": "-71.49620056152344", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Southborough", + "scheduled_service": "no", + "gps_code": "08MA", + "local_code": "08MA" + }, + { + "id": "6987", + "ident": "08MD", + "type": "heliport", + "name": "UM Saint Joseph Medical Center Heliport", + "latitude_deg": "39.388411", + "longitude_deg": "-76.610815", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Towson", + "scheduled_service": "no", + "gps_code": "08MD", + "local_code": "08MD", + "keywords": "St Joseph Hospital Heliport" + }, + { + "id": "6988", + "ident": "08ME", + "type": "small_airport", + "name": "Lindbergh Airport", + "latitude_deg": "44.81420135498047", + "longitude_deg": "-70.34529876708984", + "elevation_ft": "554", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Avon", + "scheduled_service": "no", + "gps_code": "08ME", + "local_code": "08ME" + }, + { + "id": "6989", + "ident": "08MI", + "type": "heliport", + "name": "Sparrow Hospital Heliport", + "latitude_deg": "42.734474", + "longitude_deg": "-84.536046", + "elevation_ft": "1019", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lansing", + "scheduled_service": "no", + "gps_code": "08MI", + "local_code": "08MI" + }, + { + "id": "6990", + "ident": "08MN", + "type": "seaplane_base", + "name": "Christenson Point Seaplane Base", + "latitude_deg": "47.66939926147461", + "longitude_deg": "-93.05439758300781", + "elevation_ft": "1372", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Chisholm/Hibbing", + "scheduled_service": "no", + "gps_code": "08MN", + "local_code": "08MN" + }, + { + "id": "6991", + "ident": "08MO", + "type": "small_airport", + "name": "Twin Oaks Airport", + "latitude_deg": "37.395599365234375", + "longitude_deg": "-94.28379821777344", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Jasper", + "scheduled_service": "no", + "gps_code": "08MO", + "local_code": "08MO" + }, + { + "id": "6992", + "ident": "08MS", + "type": "small_airport", + "name": "Williams Field", + "latitude_deg": "34.66220093", + "longitude_deg": "-89.86830139", + "elevation_ft": "345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Coldwater", + "scheduled_service": "no", + "gps_code": "08MS", + "local_code": "08MS" + }, + { + "id": "6993", + "ident": "08MT", + "type": "small_airport", + "name": "Matovich Airport", + "latitude_deg": "47.065679", + "longitude_deg": "-108.809624", + "elevation_ft": "3450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Grass Range", + "scheduled_service": "no", + "gps_code": "08MT", + "local_code": "08MT", + "keywords": "Clark Airport" + }, + { + "id": "6994", + "ident": "08N", + "type": "small_airport", + "name": "Keller Brothers Airport", + "latitude_deg": "40.29180145263672", + "longitude_deg": "-76.32879638671875", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "08N", + "local_code": "08N" + }, + { + "id": "6995", + "ident": "08NC", + "type": "small_airport", + "name": "Whiteheart Farm Airport", + "latitude_deg": "36.06760025024414", + "longitude_deg": "-80.4655990600586", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Lewisville", + "scheduled_service": "no", + "gps_code": "08NC", + "local_code": "08NC" + }, + { + "id": "6996", + "ident": "08ND", + "type": "small_airport", + "name": "Brecht Strip", + "latitude_deg": "47.32310104370117", + "longitude_deg": "-102.0979995727539", + "elevation_ft": "1990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Golden Valley", + "scheduled_service": "no", + "gps_code": "08ND", + "local_code": "08ND" + }, + { + "id": "6997", + "ident": "08NE", + "type": "small_airport", + "name": "Laurel Municipal Airport", + "latitude_deg": "42.43170166015625", + "longitude_deg": "-97.07949829101562", + "elevation_ft": "1467", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Laurel", + "scheduled_service": "no", + "gps_code": "08NE", + "local_code": "08NE" + }, + { + "id": "6998", + "ident": "08NH", + "type": "heliport", + "name": "Memorial Hospital Heliport", + "latitude_deg": "44.0612983704", + "longitude_deg": "-71.1358032227", + "elevation_ft": "574", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "North Conway", + "scheduled_service": "no", + "gps_code": "08NH", + "local_code": "08NH" + }, + { + "id": "6999", + "ident": "08NJ", + "type": "heliport", + "name": "St Barnabas Medical Center Heliport", + "latitude_deg": "40.76259994506836", + "longitude_deg": "-74.30400085449219", + "elevation_ft": "429", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Livingston", + "scheduled_service": "no", + "gps_code": "08NJ", + "local_code": "08NJ" + }, + { + "id": "345570", + "ident": "08NR", + "type": "small_airport", + "name": "Bell Mountain Airport", + "latitude_deg": "35.217541", + "longitude_deg": "-82.426", + "elevation_ft": "2150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Zirconia", + "scheduled_service": "no", + "gps_code": "08NR", + "local_code": "08NR" + }, + { + "id": "7000", + "ident": "08NY", + "type": "small_airport", + "name": "Md1 Airport", + "latitude_deg": "41.368099212646484", + "longitude_deg": "-74.50559997558594", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Middletown", + "scheduled_service": "no", + "gps_code": "08NY", + "local_code": "08NY" + }, + { + "id": "7001", + "ident": "08OH", + "type": "small_airport", + "name": "Kenley Airport", + "latitude_deg": "41.29169845581055", + "longitude_deg": "-80.5636978149414", + "elevation_ft": "1230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Hartford", + "scheduled_service": "no", + "gps_code": "08OH", + "local_code": "08OH" + }, + { + "id": "7002", + "ident": "08OK", + "type": "small_airport", + "name": "Parks Airport", + "latitude_deg": "34.93149948120117", + "longitude_deg": "-95.25830078125", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Wilburton", + "scheduled_service": "no", + "gps_code": "08OK", + "local_code": "08OK" + }, + { + "id": "327859", + "ident": "08OL", + "type": "small_airport", + "name": "Broken B Airport", + "latitude_deg": "35.408087", + "longitude_deg": "-98.605477", + "elevation_ft": "1518", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hydro", + "scheduled_service": "no", + "gps_code": "08OL", + "local_code": "08OL" + }, + { + "id": "7003", + "ident": "08OR", + "type": "small_airport", + "name": "Saxon Sycan Airport", + "latitude_deg": "42.839298248291016", + "longitude_deg": "-121.11699676513672", + "elevation_ft": "4990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Silver Lake", + "scheduled_service": "no", + "gps_code": "08OR", + "local_code": "08OR" + }, + { + "id": "7004", + "ident": "08PA", + "type": "heliport", + "name": "Pocono Raceway Heliport", + "latitude_deg": "41.055358", + "longitude_deg": "-75.512039", + "elevation_ft": "1812", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Long Pond", + "scheduled_service": "no", + "gps_code": "08PA", + "local_code": "08PA" + }, + { + "id": "7005", + "ident": "08PN", + "type": "heliport", + "name": "Thomson Heliport", + "latitude_deg": "40.0458984375", + "longitude_deg": "-76.28079986572266", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "08PN", + "local_code": "08PN" + }, + { + "id": "7006", + "ident": "08R", + "type": "small_airport", + "name": "Richmond Airport", + "latitude_deg": "41.489498", + "longitude_deg": "-71.620598", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "West Kingston", + "scheduled_service": "no", + "local_code": "08R", + "wikipedia_link": "https://en.wikipedia.org/wiki/Richmond_Airport_(Rhode_Island)", + "keywords": "RI04" + }, + { + "id": "345365", + "ident": "08SD", + "type": "heliport", + "name": "Douglas County Memorial Hospital Heliport", + "latitude_deg": "43.325923", + "longitude_deg": "-98.345152", + "elevation_ft": "1523", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Armour", + "scheduled_service": "no", + "gps_code": "08SD", + "local_code": "08SD" + }, + { + "id": "7007", + "ident": "08TA", + "type": "heliport", + "name": "Rancho Del Lago Heliport", + "latitude_deg": "29.97842", + "longitude_deg": "-98.258418", + "elevation_ft": "1208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fischer", + "scheduled_service": "no", + "gps_code": "08TA", + "local_code": "08TA" + }, + { + "id": "7008", + "ident": "08TE", + "type": "closed", + "name": "B J McCombs Sisterdale Airport", + "latitude_deg": "29.975331", + "longitude_deg": "-98.742451", + "elevation_ft": "1447", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comfort", + "scheduled_service": "no", + "keywords": "08TE" + }, + { + "id": "334331", + "ident": "08TN", + "type": "small_airport", + "name": "PTC Airport", + "latitude_deg": "35.298914", + "longitude_deg": "-86.474357", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "08TN", + "local_code": "08TN" + }, + { + "id": "7009", + "ident": "08TS", + "type": "closed", + "name": "Puesta Del Sol Airport", + "latitude_deg": "26.881331", + "longitude_deg": "-98.504885", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "La Gloria", + "scheduled_service": "no", + "keywords": "08TS" + }, + { + "id": "343404", + "ident": "08TT", + "type": "small_airport", + "name": "LZ Tango Charlie Airport", + "latitude_deg": "30.308803", + "longitude_deg": "-99.022228", + "elevation_ft": "2054", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fredericksburg", + "scheduled_service": "no", + "gps_code": "08TT", + "local_code": "08TT" + }, + { + "id": "7010", + "ident": "08TX", + "type": "small_airport", + "name": "Cross Wind Airport", + "latitude_deg": "32.85789", + "longitude_deg": "-97.744303", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no", + "gps_code": "08TX", + "local_code": "08TX" + }, + { + "id": "7011", + "ident": "08U", + "type": "small_airport", + "name": "Stevens-Crosby Airport", + "latitude_deg": "41.515701", + "longitude_deg": "-115.860001", + "elevation_ft": "6397", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Elko", + "scheduled_service": "no", + "gps_code": "K08U", + "local_code": "08U" + }, + { + "id": "7012", + "ident": "08VA", + "type": "small_airport", + "name": "Springwood Airstrip", + "latitude_deg": "37.55400085449219", + "longitude_deg": "-79.74980163574219", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Buchanan", + "scheduled_service": "no", + "gps_code": "08VA", + "local_code": "08VA" + }, + { + "id": "7013", + "ident": "08WA", + "type": "closed", + "name": "Manchester Laboratory Heliport", + "latitude_deg": "47.574299", + "longitude_deg": "-122.547997", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Manchester", + "scheduled_service": "no", + "keywords": "08WA" + }, + { + "id": "7014", + "ident": "08WI", + "type": "closed", + "name": "Pierick Airport", + "latitude_deg": "43.04359817504883", + "longitude_deg": "-90.3551025390625", + "elevation_ft": "1225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Highland", + "scheduled_service": "no", + "gps_code": "08WI", + "local_code": "08WI" + }, + { + "id": "322194", + "ident": "08XA", + "type": "small_airport", + "name": "Knolle Ranch Airport", + "latitude_deg": "30.479253", + "longitude_deg": "-96.504031", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Snook", + "scheduled_service": "no", + "gps_code": "08XA", + "local_code": "08XA" + }, + { + "id": "7015", + "ident": "08XS", + "type": "small_airport", + "name": "Peterson Airport", + "latitude_deg": "29.10810089111328", + "longitude_deg": "-95.77749633789062", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Old Ocean", + "scheduled_service": "no", + "gps_code": "08XS", + "local_code": "08XS" + }, + { + "id": "329058", + "ident": "09AA", + "type": "heliport", + "name": "Sheldon Chalet Heliport", + "latitude_deg": "62.969888", + "longitude_deg": "-150.75375", + "elevation_ft": "5742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Talkeetna", + "scheduled_service": "no", + "gps_code": "09AA", + "local_code": "09AA" + }, + { + "id": "45270", + "ident": "09AK", + "type": "small_airport", + "name": "West Beaver Airport", + "latitude_deg": "61.589361", + "longitude_deg": "-149.847333", + "elevation_ft": "228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "09AK", + "local_code": "09AK" + }, + { + "id": "352228", + "ident": "09AL", + "type": "heliport", + "name": "Greene County Hospital & Nursing Home Heliport", + "latitude_deg": "32.842385", + "longitude_deg": "-87.890523", + "elevation_ft": "218", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Eutaw", + "scheduled_service": "no", + "gps_code": "09AL", + "local_code": "09AL" + }, + { + "id": "7016", + "ident": "09AR", + "type": "heliport", + "name": "Magnolia Hospital Heliport", + "latitude_deg": "33.27320098876953", + "longitude_deg": "-93.23989868164062", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Magnolia", + "scheduled_service": "no", + "gps_code": "09AR", + "local_code": "09AR" + }, + { + "id": "7017", + "ident": "09AZ", + "type": "small_airport", + "name": "Stronghold Airport", + "latitude_deg": "31.924848", + "longitude_deg": "-110.040007", + "elevation_ft": "4970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "St David", + "scheduled_service": "no", + "gps_code": "09AZ", + "local_code": "09AZ" + }, + { + "id": "7018", + "ident": "09CA", + "type": "heliport", + "name": "Mee Memorial Hospital Heliport", + "latitude_deg": "36.205514", + "longitude_deg": "-121.132541", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "King City", + "scheduled_service": "no", + "gps_code": "09CA", + "local_code": "09CA" + }, + { + "id": "7019", + "ident": "09CL", + "type": "small_airport", + "name": "Alta Sierra Airport", + "latitude_deg": "39.113800048828125", + "longitude_deg": "-121.05699920654297", + "elevation_ft": "2275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Grass Valley", + "scheduled_service": "no", + "gps_code": "09CL", + "local_code": "09CL" + }, + { + "id": "45317", + "ident": "09CN", + "type": "heliport", + "name": "Tulare Motor Sports #2 Heliport", + "latitude_deg": "36.182556", + "longitude_deg": "-119.313572", + "elevation_ft": "272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tulare", + "scheduled_service": "no", + "gps_code": "09CN", + "local_code": "09CN" + }, + { + "id": "7020", + "ident": "09CO", + "type": "small_airport", + "name": "Cottonwood Field", + "latitude_deg": "38.055275", + "longitude_deg": "-103.650769", + "elevation_ft": "4180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Rocky Ford", + "scheduled_service": "no", + "gps_code": "09CO", + "local_code": "09CO" + }, + { + "id": "7021", + "ident": "09FA", + "type": "small_airport", + "name": "Placid Lakes Airport", + "latitude_deg": "27.2455997467041", + "longitude_deg": "-81.41310119628906", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Placid", + "scheduled_service": "no", + "gps_code": "09FA", + "local_code": "09FA" + }, + { + "id": "7022", + "ident": "09FD", + "type": "small_airport", + "name": "Cheryl-Lane Landings Airport", + "latitude_deg": "28.671100616455078", + "longitude_deg": "-82.0873031616211", + "elevation_ft": "71", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bushnell", + "scheduled_service": "no", + "gps_code": "09FD", + "local_code": "09FD" + }, + { + "id": "7023", + "ident": "09FL", + "type": "small_airport", + "name": "Sunnybreeze Airport", + "latitude_deg": "27.055599212646484", + "longitude_deg": "-81.97059631347656", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Arcadia", + "scheduled_service": "no", + "gps_code": "09FL", + "local_code": "09FL" + }, + { + "id": "7024", + "ident": "09GA", + "type": "small_airport", + "name": "Sunbelt Strip", + "latitude_deg": "31.120995", + "longitude_deg": "-83.67063", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Moultrie", + "scheduled_service": "no", + "gps_code": "09GA", + "local_code": "09GA" + }, + { + "id": "7025", + "ident": "09I", + "type": "seaplane_base", + "name": "International Falls Seaplane Base", + "latitude_deg": "48.60580062866211", + "longitude_deg": "-93.37079620361328", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "International Falls", + "scheduled_service": "no", + "gps_code": "09I", + "local_code": "09I" + }, + { + "id": "7026", + "ident": "09IA", + "type": "small_airport", + "name": "Skydive Iowa Airport", + "latitude_deg": "41.745441", + "longitude_deg": "-92.411547", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Brooklyn", + "scheduled_service": "no", + "gps_code": "09IA", + "local_code": "09IA", + "keywords": "Val-Air Airport" + }, + { + "id": "7027", + "ident": "09ID", + "type": "small_airport", + "name": "Taylor Ranch Landing Area Airport", + "latitude_deg": "45.10390090942383", + "longitude_deg": "-114.8550033569336", + "elevation_ft": "3835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "09ID", + "local_code": "09ID" + }, + { + "id": "7028", + "ident": "09II", + "type": "small_airport", + "name": "Gibbons Field", + "latitude_deg": "38.44729995727539", + "longitude_deg": "-86.44499969482422", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Valeene", + "scheduled_service": "no", + "gps_code": "09II", + "local_code": "09II" + }, + { + "id": "7029", + "ident": "09IL", + "type": "closed", + "name": "Silver Cross Hospital Heliport", + "latitude_deg": "41.536183", + "longitude_deg": "-88.052279", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Joliet", + "scheduled_service": "no", + "keywords": "09IL" + }, + { + "id": "7030", + "ident": "09IN", + "type": "small_airport", + "name": "Gordon Airport", + "latitude_deg": "41.12089920043945", + "longitude_deg": "-85.42500305175781", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Columbia City", + "scheduled_service": "no", + "gps_code": "09IN", + "local_code": "09IN" + }, + { + "id": "7031", + "ident": "09IS", + "type": "heliport", + "name": "Swedish American Heliport", + "latitude_deg": "42.26499938964844", + "longitude_deg": "-89.07430267333984", + "elevation_ft": "874", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rockford", + "scheduled_service": "no", + "gps_code": "09IS", + "local_code": "09IS" + }, + { + "id": "7032", + "ident": "09KS", + "type": "small_airport", + "name": "Coffman Airport", + "latitude_deg": "38.707000732421875", + "longitude_deg": "-95.13829803466797", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wellsville", + "scheduled_service": "no", + "gps_code": "09KS", + "local_code": "09KS" + }, + { + "id": "7033", + "ident": "09KY", + "type": "heliport", + "name": "Baptist Hospital East Heliport", + "latitude_deg": "38.23899841308594", + "longitude_deg": "-85.63939666748047", + "elevation_ft": "531", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "09KY", + "local_code": "09KY" + }, + { + "id": "7034", + "ident": "09LA", + "type": "heliport", + "name": "Era Helicopters Fourchon Helibase Heliport", + "latitude_deg": "29.126972", + "longitude_deg": "-90.206659", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Golden Meadow", + "scheduled_service": "no", + "gps_code": "09LA", + "local_code": "09LA" + }, + { + "id": "7035", + "ident": "09LL", + "type": "small_airport", + "name": "Pine Hill Airport", + "latitude_deg": "42.468101501464844", + "longitude_deg": "-88.74320220947266", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Capron", + "scheduled_service": "no", + "gps_code": "09LL", + "local_code": "09LL" + }, + { + "id": "7036", + "ident": "09LS", + "type": "heliport", + "name": "West Feliciana Sheriff's Office Heliport", + "latitude_deg": "30.824399948120117", + "longitude_deg": "-91.38459777832031", + "elevation_ft": "181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "St Francisville", + "scheduled_service": "no", + "gps_code": "09LS", + "local_code": "09LS" + }, + { + "id": "7037", + "ident": "09MA", + "type": "small_airport", + "name": "Kallander Field", + "latitude_deg": "42.304298400878906", + "longitude_deg": "-71.50589752197266", + "elevation_ft": "403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Southborough", + "scheduled_service": "no", + "gps_code": "09MA", + "local_code": "09MA" + }, + { + "id": "7038", + "ident": "09ME", + "type": "small_airport", + "name": "Perrotti Skyranch Airfield", + "latitude_deg": "43.34080123901367", + "longitude_deg": "-70.85469818115234", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Berwick", + "scheduled_service": "no", + "gps_code": "09ME", + "local_code": "09ME" + }, + { + "id": "7039", + "ident": "09MI", + "type": "heliport", + "name": "Michigan National Guard Headquarters Heliport", + "latitude_deg": "42.708099365234375", + "longitude_deg": "-84.56079864501953", + "elevation_ft": "842", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lansing", + "scheduled_service": "no", + "gps_code": "09MI", + "local_code": "09MI" + }, + { + "id": "7040", + "ident": "09MN", + "type": "closed", + "name": "W Johnson Field", + "latitude_deg": "44.779999", + "longitude_deg": "-95.663109", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hazel Run", + "scheduled_service": "no", + "keywords": "09MN" + }, + { + "id": "7041", + "ident": "09MO", + "type": "small_airport", + "name": "Hogue Farm Airport", + "latitude_deg": "37.37839889526367", + "longitude_deg": "-93.36329650878906", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Willard", + "scheduled_service": "no", + "gps_code": "09MO", + "local_code": "09MO" + }, + { + "id": "7042", + "ident": "09N", + "type": "small_airport", + "name": "Airhaven Airport", + "latitude_deg": "41.83259963989258", + "longitude_deg": "-73.8759994506836", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Staatsburg", + "scheduled_service": "no", + "gps_code": "09N", + "local_code": "09N" + }, + { + "id": "7043", + "ident": "09NC", + "type": "small_airport", + "name": "William Irving Lewis Airport", + "latitude_deg": "35.32929992675781", + "longitude_deg": "-79.02999877929688", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Broadway", + "scheduled_service": "no", + "gps_code": "09NC", + "local_code": "09NC" + }, + { + "id": "7044", + "ident": "09NE", + "type": "small_airport", + "name": "Summer Hill Farm Airport", + "latitude_deg": "41.33330154418945", + "longitude_deg": "-96.193603515625", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Bennington", + "scheduled_service": "no", + "gps_code": "09NE", + "local_code": "09NE" + }, + { + "id": "7045", + "ident": "09NJ", + "type": "heliport", + "name": "Stonebridge Farm Helistop", + "latitude_deg": "40.65370178222656", + "longitude_deg": "-74.6865005493164", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Somerville", + "scheduled_service": "no", + "gps_code": "09NJ", + "local_code": "09NJ" + }, + { + "id": "324843", + "ident": "09NR", + "type": "small_airport", + "name": "Dakota Air Ranch Airport", + "latitude_deg": "35.650122", + "longitude_deg": "-79.650311", + "elevation_ft": "561", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Ramseur", + "scheduled_service": "no", + "gps_code": "09NR", + "local_code": "09NR" + }, + { + "id": "7046", + "ident": "09NY", + "type": "heliport", + "name": "Spring Lake Fire Department Heliport", + "latitude_deg": "41.92890167236328", + "longitude_deg": "-74.04889678955078", + "elevation_ft": "254", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Kingston", + "scheduled_service": "no", + "gps_code": "09NY", + "local_code": "09NY" + }, + { + "id": "7047", + "ident": "09OK", + "type": "small_airport", + "name": "Ragtime Aerodrome", + "latitude_deg": "36.35449981689453", + "longitude_deg": "-95.86389923095703", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Collinsville", + "scheduled_service": "no", + "gps_code": "09OK", + "local_code": "09OK" + }, + { + "id": "7048", + "ident": "09OR", + "type": "heliport", + "name": "Mid-Columbia Medical Center Heliport", + "latitude_deg": "45.587235", + "longitude_deg": "-121.163827", + "elevation_ft": "487", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "The Dalles", + "scheduled_service": "no", + "gps_code": "09OR", + "local_code": "09OR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mid-Columbia_Medical_Center_Heliport" + }, + { + "id": "7049", + "ident": "09PA", + "type": "small_airport", + "name": "Eagle Field", + "latitude_deg": "40.82699966430664", + "longitude_deg": "-77.98809814453125", + "elevation_ft": "1780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Port Matilda", + "scheduled_service": "no", + "gps_code": "09PA", + "local_code": "09PA" + }, + { + "id": "7050", + "ident": "09PN", + "type": "heliport", + "name": "Hundley Residence Heliport", + "latitude_deg": "40.5620002746582", + "longitude_deg": "-75.1427001953125", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Kintersville", + "scheduled_service": "no", + "gps_code": "09PN", + "local_code": "09PN" + }, + { + "id": "7051", + "ident": "09S", + "type": "small_airport", + "name": "Sullivan Lake State Airport", + "latitude_deg": "48.84090042114258", + "longitude_deg": "-117.28399658203125", + "elevation_ft": "2614", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Metaline Falls", + "scheduled_service": "no", + "gps_code": "09S", + "local_code": "09S" + }, + { + "id": "14580", + "ident": "09TA", + "type": "small_airport", + "name": "Lazy G Bar Ranch Airport", + "latitude_deg": "33.282101", + "longitude_deg": "-97.497002", + "elevation_ft": "923", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Decatur", + "scheduled_service": "no", + "local_code": "09T", + "keywords": "Formerly 82T, 09TA" + }, + { + "id": "7052", + "ident": "09TE", + "type": "small_airport", + "name": "Running M Ranch Airport", + "latitude_deg": "32.262923", + "longitude_deg": "-97.863764", + "elevation_ft": "787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Glen Rose", + "scheduled_service": "no", + "gps_code": "09TE", + "local_code": "09TE" + }, + { + "id": "7053", + "ident": "09TN", + "type": "heliport", + "name": "Univ of Tennessee Medical Center Heliport", + "latitude_deg": "35.94169998168945", + "longitude_deg": "-83.94400024414062", + "elevation_ft": "924", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Knoxville", + "scheduled_service": "no", + "gps_code": "09TN", + "local_code": "09TN" + }, + { + "id": "7054", + "ident": "09TS", + "type": "small_airport", + "name": "Pitcock Rosillos Mountain Ranch Airport", + "latitude_deg": "29.48240089416504", + "longitude_deg": "-103.16500091552734", + "elevation_ft": "3100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no", + "gps_code": "09TS", + "local_code": "09TS" + }, + { + "id": "7055", + "ident": "09TX", + "type": "small_airport", + "name": "Smokey Mountain Ranch Airport", + "latitude_deg": "30.737626", + "longitude_deg": "-102.02332", + "elevation_ft": "2522", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sheffield", + "scheduled_service": "no", + "gps_code": "09TX", + "local_code": "09TX" + }, + { + "id": "7056", + "ident": "09VA", + "type": "small_airport", + "name": "Alum Ridge STOLport", + "latitude_deg": "36.97650146484375", + "longitude_deg": "-80.493896484375", + "elevation_ft": "2375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Floyd", + "scheduled_service": "no", + "gps_code": "09VA", + "local_code": "09VA" + }, + { + "id": "7057", + "ident": "09VG", + "type": "heliport", + "name": "Augusta Medical Center Heliport", + "latitude_deg": "38.09080123901367", + "longitude_deg": "-78.98500061035156", + "elevation_ft": "1390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fishersville", + "scheduled_service": "no", + "gps_code": "09VG", + "local_code": "09VG" + }, + { + "id": "7058", + "ident": "09W", + "type": "heliport", + "name": "South Capitol Street Heliport", + "latitude_deg": "38.868612", + "longitude_deg": "-77.008367", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DC", + "municipality": "Washington", + "scheduled_service": "no", + "local_code": "09W", + "keywords": "DC12" + }, + { + "id": "7059", + "ident": "09WA", + "type": "heliport", + "name": "Holy Family Hospital Heliport", + "latitude_deg": "47.71039962768555", + "longitude_deg": "-117.40699768066406", + "elevation_ft": "2081", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Spokane", + "scheduled_service": "no", + "gps_code": "09WA", + "local_code": "09WA" + }, + { + "id": "7060", + "ident": "09WI", + "type": "small_airport", + "name": "Parkway Farm Strip", + "latitude_deg": "44.00360107421875", + "longitude_deg": "-91.30760192871094", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Holmen", + "scheduled_service": "no", + "gps_code": "09WI", + "local_code": "09WI" + }, + { + "id": "7061", + "ident": "09XS", + "type": "heliport", + "name": "Baptist Medical Center Heliport", + "latitude_deg": "29.433000564575195", + "longitude_deg": "-98.49220275878906", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "09XS", + "local_code": "09XS" + }, + { + "id": "7062", + "ident": "09Y", + "type": "seaplane_base", + "name": "Wipline Seaplane Base", + "latitude_deg": "44.81660079956055", + "longitude_deg": "-93.0155029296875", + "elevation_ft": "687", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Inver Grove Hgts", + "scheduled_service": "no", + "gps_code": "09Y", + "local_code": "09Y" + }, + { + "id": "322435", + "ident": "0AA6", + "type": "heliport", + "name": "Big Salmon Heliport", + "latitude_deg": "59.403055", + "longitude_deg": "-136.013611", + "elevation_ft": "292", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Haines", + "scheduled_service": "no", + "gps_code": "0AA6", + "local_code": "0AA6" + }, + { + "id": "325323", + "ident": "0AA7", + "type": "small_airport", + "name": "Kalifornsky Meadows Airport", + "latitude_deg": "60.491537", + "longitude_deg": "-151.235253", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kenai", + "scheduled_service": "no", + "gps_code": "0AA7", + "local_code": "0AA7", + "keywords": "Kenai Airpark" + }, + { + "id": "7063", + "ident": "0AK", + "type": "small_airport", + "name": "Pilot Station Airport", + "latitude_deg": "61.934601", + "longitude_deg": "-162.899994", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Pilot Station", + "scheduled_service": "yes", + "iata_code": "PQS", + "local_code": "0AK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pilot_Station_Airport" + }, + { + "id": "7064", + "ident": "0AK0", + "type": "small_airport", + "name": "Scotts Airport", + "latitude_deg": "64.39214", + "longitude_deg": "-146.861823", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Salcha", + "scheduled_service": "no", + "gps_code": "0AK0", + "local_code": "0AK0" + }, + { + "id": "7065", + "ident": "0AK1", + "type": "small_airport", + "name": "Anderson Lake Airport", + "latitude_deg": "61.616966", + "longitude_deg": "-149.320893", + "elevation_ft": "463", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "0AK1", + "local_code": "0AK1" + }, + { + "id": "45273", + "ident": "0AK2", + "type": "small_airport", + "name": "Yentna Bend Strip", + "latitude_deg": "61.725556", + "longitude_deg": "-150.678611", + "elevation_ft": "81", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Willow", + "scheduled_service": "no", + "gps_code": "0AK2", + "local_code": "0AK2" + }, + { + "id": "7066", + "ident": "0AK3", + "type": "small_airport", + "name": "Parker Lake Airport", + "latitude_deg": "62.0359001159668", + "longitude_deg": "-150.49400329589844", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Montana Creek", + "scheduled_service": "no", + "gps_code": "0AK3", + "local_code": "0AK3" + }, + { + "id": "7067", + "ident": "0AK5", + "type": "small_airport", + "name": "Young Creek Airport", + "latitude_deg": "61.355352", + "longitude_deg": "-142.731832", + "elevation_ft": "1580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "May Creek", + "scheduled_service": "no", + "gps_code": "0AK5", + "local_code": "0AK5" + }, + { + "id": "7068", + "ident": "0AK6", + "type": "small_airport", + "name": "Victory Airport", + "latitude_deg": "61.80108", + "longitude_deg": "-147.945156", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Victory Bible Camp", + "scheduled_service": "no", + "gps_code": "0AK6", + "local_code": "0AK6" + }, + { + "id": "7069", + "ident": "0AK7", + "type": "small_airport", + "name": "Bradley Lake Hydroelectric Project Airstrip", + "latitude_deg": "59.776005", + "longitude_deg": "-150.963285", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Homer", + "scheduled_service": "no", + "gps_code": "0AK7", + "local_code": "0AK7" + }, + { + "id": "7070", + "ident": "0AK8", + "type": "closed", + "name": "Pollux Heliport", + "latitude_deg": "64.895835", + "longitude_deg": "-147.497501", + "elevation_ft": "515", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "North Pole", + "scheduled_service": "no", + "keywords": "0AK8" + }, + { + "id": "7071", + "ident": "0AK9", + "type": "small_airport", + "name": "Falcon Lake Strip", + "latitude_deg": "61.33259963989258", + "longitude_deg": "-150.0590057373047", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Point Mackenzie", + "scheduled_service": "no", + "gps_code": "0AK9", + "local_code": "0AK9" + }, + { + "id": "7072", + "ident": "0AL0", + "type": "heliport", + "name": "Huntsville Field", + "latitude_deg": "34.68840026855469", + "longitude_deg": "-86.58889770507812", + "elevation_ft": "619", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Huntsville", + "scheduled_service": "no", + "gps_code": "0AL0", + "local_code": "0AL0" + }, + { + "id": "7073", + "ident": "0AL1", + "type": "small_airport", + "name": "Resort Airport", + "latitude_deg": "30.443899154663086", + "longitude_deg": "-87.65689849853516", + "elevation_ft": "97", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Foley", + "scheduled_service": "no", + "gps_code": "0AL1", + "local_code": "0AL1" + }, + { + "id": "7074", + "ident": "0AL2", + "type": "heliport", + "name": "Clay County Hospital Heliport", + "latitude_deg": "33.275001525878906", + "longitude_deg": "-85.83329772949219", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "0AL2", + "local_code": "0AL2" + }, + { + "id": "7075", + "ident": "0AL3", + "type": "heliport", + "name": "Hospital Pad Heliport", + "latitude_deg": "31.430599212646484", + "longitude_deg": "-86.94029998779297", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Evergreen", + "scheduled_service": "no", + "gps_code": "0AL3", + "local_code": "0AL3" + }, + { + "id": "7076", + "ident": "0AL4", + "type": "heliport", + "name": "Dekalb Regional Medical Center Heliport", + "latitude_deg": "34.442141", + "longitude_deg": "-85.755793", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Payne", + "scheduled_service": "no", + "gps_code": "0AL4", + "local_code": "0AL4", + "keywords": "B.M.C. - De Kalb Heliport" + }, + { + "id": "7077", + "ident": "0AL5", + "type": "small_airport", + "name": "Flomaton Airport", + "latitude_deg": "31.03219985961914", + "longitude_deg": "-87.25279998779297", + "elevation_ft": "247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Flomaton", + "scheduled_service": "no", + "gps_code": "0AL5", + "local_code": "0AL5" + }, + { + "id": "7078", + "ident": "0AL6", + "type": "heliport", + "name": "D.W. Mcmillian Memorial Hospital Heliport", + "latitude_deg": "31.127199172973633", + "longitude_deg": "-87.07330322265625", + "elevation_ft": "155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Brewton", + "scheduled_service": "no", + "gps_code": "0AL6", + "local_code": "0AL6" + }, + { + "id": "7079", + "ident": "0AL7", + "type": "heliport", + "name": "Gadsden Regl Medical Center Heliport", + "latitude_deg": "34.00830078125", + "longitude_deg": "-85.96530151367188", + "elevation_ft": "621", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Gadsden", + "scheduled_service": "no", + "gps_code": "0AL7", + "local_code": "0AL7" + }, + { + "id": "7080", + "ident": "0AL8", + "type": "heliport", + "name": "Brookwood Medical Center Heliport", + "latitude_deg": "33.46390151977539", + "longitude_deg": "-86.77310180664062", + "elevation_ft": "763", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Birmingham", + "scheduled_service": "no", + "gps_code": "0AL8", + "local_code": "0AL8" + }, + { + "id": "7081", + "ident": "0AL9", + "type": "small_airport", + "name": "Wilson Creek Airport", + "latitude_deg": "34.849998474121094", + "longitude_deg": "-87.63249969482422", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Florence", + "scheduled_service": "no", + "gps_code": "0AL9", + "local_code": "0AL9" + }, + { + "id": "7082", + "ident": "0AR0", + "type": "heliport", + "name": "Northwest Medical Center Springdale Heliport", + "latitude_deg": "36.181509", + "longitude_deg": "-94.137252", + "elevation_ft": "1352", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Springdale", + "scheduled_service": "no", + "gps_code": "0AR0", + "local_code": "0AR0", + "keywords": "SMH Heliport, Air Evac 4 Heliport" + }, + { + "id": "7083", + "ident": "0AR1", + "type": "closed", + "name": "Hooterville South Airport", + "latitude_deg": "35.0947", + "longitude_deg": "-93.202003", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Centerville", + "scheduled_service": "no", + "keywords": "0AR1" + }, + { + "id": "7084", + "ident": "0AR2", + "type": "small_airport", + "name": "Mission Field-Marotti Memorial Airport", + "latitude_deg": "35.18853", + "longitude_deg": "-90.30359", + "elevation_ft": "217", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Crawfordsville", + "scheduled_service": "no", + "gps_code": "0AR2", + "local_code": "0AR2" + }, + { + "id": "7085", + "ident": "0AR3", + "type": "closed", + "name": "Taylor's Air Strip", + "latitude_deg": "35.898998", + "longitude_deg": "-93.261001", + "elevation_ft": "2160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Deer", + "scheduled_service": "no", + "keywords": "0AR3" + }, + { + "id": "7086", + "ident": "0AR4", + "type": "heliport", + "name": "Ozarks Community Hospital Heliport", + "latitude_deg": "36.40929", + "longitude_deg": "-94.46005", + "elevation_ft": "1251", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Gravette", + "scheduled_service": "no", + "gps_code": "0AR4", + "local_code": "0AR4", + "keywords": "Gravette Medical Center Hospital Heliport" + }, + { + "id": "7087", + "ident": "0AR5", + "type": "heliport", + "name": "Rgnl Medical Center Heliport", + "latitude_deg": "35.83620071411133", + "longitude_deg": "-90.70179748535156", + "elevation_ft": "382", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Jonesboro", + "scheduled_service": "no", + "gps_code": "0AR5", + "local_code": "0AR5" + }, + { + "id": "7088", + "ident": "0AR6", + "type": "heliport", + "name": "Ami National Park Medical Center Heliport", + "latitude_deg": "34.48149871826172", + "longitude_deg": "-93.03099822998047", + "elevation_ft": "547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Hot Springs", + "scheduled_service": "no", + "gps_code": "0AR6", + "local_code": "0AR6" + }, + { + "id": "7089", + "ident": "0AR7", + "type": "closed", + "name": "Yancopin Airport", + "latitude_deg": "33.94899", + "longitude_deg": "-91.175141", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Watson", + "scheduled_service": "no", + "keywords": "0AR7" + }, + { + "id": "7090", + "ident": "0AR8", + "type": "heliport", + "name": "Howard Memorial Hospital Heliport", + "latitude_deg": "33.95009994506836", + "longitude_deg": "-93.85209655761719", + "elevation_ft": "549", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Nashville", + "scheduled_service": "no", + "gps_code": "0AR8", + "local_code": "0AR8" + }, + { + "id": "7091", + "ident": "0AR9", + "type": "heliport", + "name": "Eureka Springs Hospital Heliport", + "latitude_deg": "36.40010070800781", + "longitude_deg": "-93.74349975585938", + "elevation_ft": "1540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Eureka Springs", + "scheduled_service": "no", + "gps_code": "0AR9", + "local_code": "0AR9" + }, + { + "id": "7092", + "ident": "0AZ0", + "type": "heliport", + "name": "Arizona Heart Hospital Heliport", + "latitude_deg": "33.481187", + "longitude_deg": "-112.03976", + "elevation_ft": "1161", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "0AZ0", + "local_code": "0AZ0" + }, + { + "id": "7093", + "ident": "0AZ1", + "type": "closed", + "name": "Taylor Field", + "latitude_deg": "32.302114", + "longitude_deg": "-111.32412", + "elevation_ft": "2130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Marana", + "scheduled_service": "no", + "keywords": "0AZ1" + }, + { + "id": "7094", + "ident": "0AZ2", + "type": "small_airport", + "name": "Western Sky Airport", + "latitude_deg": "33.778166", + "longitude_deg": "-113.640625", + "elevation_ft": "1930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Salome", + "scheduled_service": "no", + "gps_code": "0AZ2", + "local_code": "0AZ2", + "keywords": "salome, western sky" + }, + { + "id": "7095", + "ident": "0AZ4", + "type": "small_airport", + "name": "Flying Bucket Ranch Airport", + "latitude_deg": "32.9823", + "longitude_deg": "-112.287003", + "elevation_ft": "1505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Maricopa", + "scheduled_service": "no", + "gps_code": "0AZ4", + "local_code": "0AZ4" + }, + { + "id": "7096", + "ident": "0AZ5", + "type": "small_airport", + "name": "Castle Well Airport", + "latitude_deg": "33.865944", + "longitude_deg": "-112.603265", + "elevation_ft": "2080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Morristown", + "scheduled_service": "no", + "gps_code": "0AZ5", + "local_code": "0AZ5", + "keywords": "morristown, castle well" + }, + { + "id": "7097", + "ident": "0AZ6", + "type": "heliport", + "name": "St Joseph's Hospital Heliport", + "latitude_deg": "33.482963", + "longitude_deg": "-112.079301", + "elevation_ft": "1213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "0AZ6", + "local_code": "0AZ6" + }, + { + "id": "7098", + "ident": "0AZ7", + "type": "closed", + "name": "Sunstate Heliport", + "latitude_deg": "33.445318", + "longitude_deg": "-111.964567", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "keywords": "0AZ7" + }, + { + "id": "7099", + "ident": "0B2", + "type": "small_airport", + "name": "Brewer Airport", + "latitude_deg": "44.76369857788086", + "longitude_deg": "-68.7677993774414", + "elevation_ft": "124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Brewer", + "scheduled_service": "no", + "gps_code": "0B2", + "local_code": "0B2" + }, + { + "id": "7100", + "ident": "0B7", + "type": "small_airport", + "name": "Warren-Sugarbush Airport", + "latitude_deg": "44.117724", + "longitude_deg": "-72.826867", + "elevation_ft": "1470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Warren", + "scheduled_service": "no", + "gps_code": "K0B7", + "local_code": "0B7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Warren-Sugarbush_Airport" + }, + { + "id": "7101", + "ident": "0C1", + "type": "small_airport", + "name": "Triple R Airport", + "latitude_deg": "39.48780059814453", + "longitude_deg": "-94.78050231933594", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Dearborn", + "scheduled_service": "no", + "gps_code": "0C1", + "local_code": "0C1" + }, + { + "id": "7102", + "ident": "0C2", + "type": "small_airport", + "name": "Hinckley Airport", + "latitude_deg": "41.77090072631836", + "longitude_deg": "-88.70339965820312", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hinckley", + "scheduled_service": "no", + "gps_code": "0C2", + "local_code": "0C2" + }, + { + "id": "7103", + "ident": "0C5", + "type": "small_airport", + "name": "Canadian Lakes Airport", + "latitude_deg": "43.575666", + "longitude_deg": "-85.284182", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Canadian Lakes", + "scheduled_service": "no", + "gps_code": "K0C5", + "local_code": "0C5" + }, + { + "id": "7104", + "ident": "0C7", + "type": "small_airport", + "name": "Grandpas' Farm Mendota Airport", + "latitude_deg": "41.521999", + "longitude_deg": "-89.132599", + "elevation_ft": "727", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mendota", + "scheduled_service": "no", + "gps_code": "IL22", + "local_code": "IL22", + "keywords": "0C7" + }, + { + "id": "7105", + "ident": "0C8", + "type": "small_airport", + "name": "Cushing Field Ltd Airport", + "latitude_deg": "41.519500732421875", + "longitude_deg": "-88.60559844970703", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Newark", + "scheduled_service": "no", + "gps_code": "0C8", + "local_code": "0C8" + }, + { + "id": "7106", + "ident": "0C9", + "type": "heliport", + "name": "Coach & Paddock Heliport", + "latitude_deg": "40.63819885253906", + "longitude_deg": "-74.97570037841797", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "0C9", + "local_code": "0C9" + }, + { + "id": "7107", + "ident": "0CA0", + "type": "closed", + "name": "Drew Medical Center Heliport", + "latitude_deg": "33.923302", + "longitude_deg": "-118.241997", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "keywords": "0CA0" + }, + { + "id": "7108", + "ident": "0CA1", + "type": "closed", + "name": "Northside Airpark", + "latitude_deg": "34.9883003235", + "longitude_deg": "-120.458000183", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Maria", + "scheduled_service": "no", + "keywords": "0CA1" + }, + { + "id": "7109", + "ident": "0CA2", + "type": "heliport", + "name": "VA Greater Los Angeles Health Care Center Heliport", + "latitude_deg": "34.049778", + "longitude_deg": "-118.456257", + "elevation_ft": "294", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "0CA2", + "local_code": "0CA2" + }, + { + "id": "7110", + "ident": "0CA3", + "type": "small_airport", + "name": "Crawford Airport", + "latitude_deg": "34.587501525878906", + "longitude_deg": "-120.01300048828125", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Ynez", + "scheduled_service": "no", + "gps_code": "0CA3", + "local_code": "0CA3" + }, + { + "id": "7111", + "ident": "0CA4", + "type": "small_airport", + "name": "Shepherd Farm Airport", + "latitude_deg": "34.6222", + "longitude_deg": "-120.065002", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Ynez", + "scheduled_service": "no", + "gps_code": "0CA4", + "local_code": "0CA4", + "keywords": "Shepherd Ranch" + }, + { + "id": "7112", + "ident": "0CA5", + "type": "small_airport", + "name": "Hoffman Private Airport", + "latitude_deg": "33.14310073852539", + "longitude_deg": "-116.74500274658203", + "elevation_ft": "3100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Ysabel", + "scheduled_service": "no", + "gps_code": "0CA5", + "local_code": "0CA5" + }, + { + "id": "7113", + "ident": "0CA6", + "type": "small_airport", + "name": "Emory Ranch Airport", + "latitude_deg": "32.7494444", + "longitude_deg": "-116.0161111", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ocotillo", + "scheduled_service": "no", + "gps_code": "0CA6", + "local_code": "0CA6" + }, + { + "id": "7114", + "ident": "0CA7", + "type": "closed", + "name": "Boeing Seal Beach (Rooftop) Heliport", + "latitude_deg": "33.756779", + "longitude_deg": "-118.0854", + "elevation_ft": "158", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Seal Beach", + "scheduled_service": "no", + "gps_code": "0CA7", + "local_code": "0CA7" + }, + { + "id": "7115", + "ident": "0CA8", + "type": "closed", + "name": "Ward Ranch Airport", + "latitude_deg": "33.413347", + "longitude_deg": "-116.843255", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Aguanga", + "scheduled_service": "no", + "keywords": "0CA8" + }, + { + "id": "7116", + "ident": "0CA9", + "type": "small_airport", + "name": "Blech Ranch Airport", + "latitude_deg": "35.592797", + "longitude_deg": "-120.338058", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Shandon", + "scheduled_service": "no", + "gps_code": "0CA9", + "local_code": "0CA9" + }, + { + "id": "7117", + "ident": "0CD0", + "type": "heliport", + "name": "Delta County Memorial Hospital Heliport", + "latitude_deg": "38.745155", + "longitude_deg": "-108.047973", + "elevation_ft": "5000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Delta", + "scheduled_service": "no", + "gps_code": "0CD0", + "local_code": "0CD0" + }, + { + "id": "7118", + "ident": "0CD1", + "type": "heliport", + "name": "Colorado Plains Medical Center Heliport", + "latitude_deg": "40.2610917", + "longitude_deg": "-103.7963389", + "elevation_ft": "4356", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Fort Morgan", + "scheduled_service": "no", + "gps_code": "0CD1", + "local_code": "0CD1" + }, + { + "id": "7119", + "ident": "0CD2", + "type": "small_airport", + "name": "Foxx Valley Airport", + "latitude_deg": "38.652500152600005", + "longitude_deg": "-104.23400116", + "elevation_ft": "5800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Yoder", + "scheduled_service": "no", + "gps_code": "0CD2", + "local_code": "0CD2" + }, + { + "id": "7120", + "ident": "0CD3", + "type": "heliport", + "name": "Branch's Heliport", + "latitude_deg": "40.3479995728", + "longitude_deg": "-104.527999878", + "elevation_ft": "4635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Kersey", + "scheduled_service": "no", + "gps_code": "0CD3", + "local_code": "0CD3" + }, + { + "id": "7121", + "ident": "0CD4", + "type": "heliport", + "name": "Kauffman Heliport", + "latitude_deg": "40.1463012695", + "longitude_deg": "-104.887001038", + "elevation_ft": "5120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "gps_code": "0CD4", + "local_code": "0CD4" + }, + { + "id": "7122", + "ident": "0CD5", + "type": "small_airport", + "name": "Piñon Canyon Airport", + "latitude_deg": "37.490501", + "longitude_deg": "-104.143997", + "elevation_ft": "5686", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Model", + "scheduled_service": "no", + "gps_code": "0CD5", + "local_code": "0CD5", + "keywords": "Piñon Canyon Maneuver Site" + }, + { + "id": "7123", + "ident": "0CD6", + "type": "heliport", + "name": "Exempla Good Samaritan Heliport", + "latitude_deg": "39.971698761", + "longitude_deg": "-105.084999084", + "elevation_ft": "5204", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "0CD6", + "local_code": "0CD6" + }, + { + "id": "7124", + "ident": "0CD7", + "type": "small_airport", + "name": "Fox Hole Airport", + "latitude_deg": "40.003917", + "longitude_deg": "-105.07185", + "elevation_ft": "5135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "0CD7", + "local_code": "0CD7" + }, + { + "id": "7125", + "ident": "0CD8", + "type": "heliport", + "name": "Prowers Medical Center Heliport", + "latitude_deg": "38.0710983276", + "longitude_deg": "-102.60900116", + "elevation_ft": "3575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Lamar", + "scheduled_service": "no", + "gps_code": "0CD8", + "local_code": "0CD8" + }, + { + "id": "7126", + "ident": "0CD9", + "type": "heliport", + "name": "Swedish S.W. Medical Heliport", + "latitude_deg": "39.603099823", + "longitude_deg": "-105.091003418", + "elevation_ft": "5563", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Littleton", + "scheduled_service": "no", + "gps_code": "0CD9", + "local_code": "0CD9" + }, + { + "id": "7127", + "ident": "0CL0", + "type": "small_airport", + "name": "Yosemite Hidden Lake Ranch Airport", + "latitude_deg": "37.11800003049999", + "longitude_deg": "-119.913002014", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Raymond", + "scheduled_service": "no", + "gps_code": "0CL0", + "local_code": "0CL0" + }, + { + "id": "7128", + "ident": "0CL1", + "type": "small_airport", + "name": "Krey Field Airport", + "latitude_deg": "34.5694007874", + "longitude_deg": "-117.555999756", + "elevation_ft": "3042", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Adelanto", + "scheduled_service": "no", + "gps_code": "0CL1", + "local_code": "0CL1" + }, + { + "id": "7129", + "ident": "0CL2", + "type": "heliport", + "name": "Parking Lot Heliport", + "latitude_deg": "32.593898773199996", + "longitude_deg": "-117.084999084", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chula Vista", + "scheduled_service": "no", + "gps_code": "0CL2", + "local_code": "0CL2" + }, + { + "id": "7130", + "ident": "0CL3", + "type": "small_airport", + "name": "John Nichols Field Airport", + "latitude_deg": "32.633457", + "longitude_deg": "-116.890565", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Jamul", + "scheduled_service": "no", + "gps_code": "0CL3", + "local_code": "0CL3" + }, + { + "id": "7131", + "ident": "0CL4", + "type": "heliport", + "name": "Glen Fed Heliport", + "latitude_deg": "34.157179", + "longitude_deg": "-118.254637", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no", + "gps_code": "0CL4", + "local_code": "0CL4" + }, + { + "id": "7132", + "ident": "0CL5", + "type": "heliport", + "name": "The Atrium Heliport", + "latitude_deg": "33.6706008911", + "longitude_deg": "-117.858001709", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Irvine", + "scheduled_service": "no", + "gps_code": "0CL5", + "local_code": "0CL5" + }, + { + "id": "7133", + "ident": "0CL6", + "type": "small_airport", + "name": "Bohunk's Airpark", + "latitude_deg": "34.694584", + "longitude_deg": "-118.277106", + "elevation_ft": "2410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "0CL6", + "local_code": "0CL6" + }, + { + "id": "7134", + "ident": "0CL7", + "type": "heliport", + "name": "Good Samaritan Hospital Heliport", + "latitude_deg": "34.054901", + "longitude_deg": "-118.264967", + "elevation_ft": "473", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "0CL7", + "local_code": "0CL7" + }, + { + "id": "7135", + "ident": "0CL8", + "type": "small_airport", + "name": "Tera Ultralightport", + "latitude_deg": "35.591104", + "longitude_deg": "-117.631323", + "elevation_ft": "2510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ridgecrest", + "scheduled_service": "no", + "gps_code": "0CL8", + "local_code": "0CL8" + }, + { + "id": "7136", + "ident": "0CL9", + "type": "heliport", + "name": "Sce San Jacinto Valley Service Center Heliport", + "latitude_deg": "33.741100311299995", + "longitude_deg": "-117.151000977", + "elevation_ft": "1482", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Romoland", + "scheduled_service": "no", + "gps_code": "0CL9", + "local_code": "0CL9" + }, + { + "id": "322308", + "ident": "0CN1", + "type": "small_airport", + "name": "Fiorini Ranch Airport", + "latitude_deg": "37.452178", + "longitude_deg": "-120.764758", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Delhi", + "scheduled_service": "no", + "gps_code": "0CN1", + "local_code": "0CN1" + }, + { + "id": "324643", + "ident": "0CN2", + "type": "small_airport", + "name": "Sutter Butte Dusters Airport", + "latitude_deg": "39.228622", + "longitude_deg": "-121.688265", + "elevation_ft": "67", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Live Oak", + "scheduled_service": "no", + "gps_code": "0CN2", + "local_code": "0CN2" + }, + { + "id": "7137", + "ident": "0CO0", + "type": "heliport", + "name": "Longmont United Hospital Heliport", + "latitude_deg": "40.181606", + "longitude_deg": "-105.124774", + "elevation_ft": "5047", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Longmont", + "scheduled_service": "no", + "gps_code": "0CO0", + "local_code": "0CO0" + }, + { + "id": "7138", + "ident": "0CO1", + "type": "small_airport", + "name": "Dave's Airport", + "latitude_deg": "40.0332984924", + "longitude_deg": "-105.124000549", + "elevation_ft": "5170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "0CO1", + "local_code": "0CO1" + }, + { + "id": "7139", + "ident": "0CO2", + "type": "small_airport", + "name": "Crested Butte Airpark", + "latitude_deg": "38.851918", + "longitude_deg": "-106.928341", + "elevation_ft": "8980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Crested Butte", + "scheduled_service": "no", + "gps_code": "0CO2", + "iata_code": "CSE", + "local_code": "0CO2", + "keywords": "Buckhorn Ranch" + }, + { + "id": "7140", + "ident": "0CO3", + "type": "closed", + "name": "Greggs Nr 1 Airport", + "latitude_deg": "39.8894", + "longitude_deg": "-104.544997", + "elevation_ft": "5373", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Bennett", + "scheduled_service": "no", + "keywords": "0CO3" + }, + { + "id": "7141", + "ident": "0CO4", + "type": "heliport", + "name": "Geo-Seis Helicopters Heliport", + "latitude_deg": "40.5899009705", + "longitude_deg": "-105.04599762", + "elevation_ft": "4935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Fort Collins", + "scheduled_service": "no", + "gps_code": "0CO4", + "local_code": "0CO4" + }, + { + "id": "7142", + "ident": "0CO5", + "type": "small_airport", + "name": "Chenoweth Airport", + "latitude_deg": "39.830995", + "longitude_deg": "-103.592463", + "elevation_ft": "4697", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Last Chance", + "scheduled_service": "no", + "gps_code": "0CO5", + "local_code": "0CO5" + }, + { + "id": "7143", + "ident": "0CO6", + "type": "small_airport", + "name": "Flying M & M Ranch Airport", + "latitude_deg": "38.2193984985", + "longitude_deg": "-108.212997437", + "elevation_ft": "8000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Norwood", + "scheduled_service": "no", + "gps_code": "0CO6", + "local_code": "0CO6" + }, + { + "id": "7144", + "ident": "0CO7", + "type": "heliport", + "name": "Century Helicopters Heliport", + "latitude_deg": "40.5854988098", + "longitude_deg": "-105.040000916", + "elevation_ft": "4935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Fort Collins", + "scheduled_service": "no", + "gps_code": "0CO7", + "local_code": "0CO7" + }, + { + "id": "7145", + "ident": "0CO8", + "type": "small_airport", + "name": "Cartwheel Airport", + "latitude_deg": "40.2083015442", + "longitude_deg": "-105.013000488", + "elevation_ft": "5010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Mead", + "scheduled_service": "no", + "gps_code": "0CO8", + "local_code": "0CO8" + }, + { + "id": "7146", + "ident": "0CO9", + "type": "small_airport", + "name": "Van Treese Airport", + "latitude_deg": "37.6582984924", + "longitude_deg": "-106.033996582", + "elevation_ft": "7613", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Monte Vista", + "scheduled_service": "no", + "gps_code": "0CO9", + "local_code": "0CO9" + }, + { + "id": "7147", + "ident": "0CT0", + "type": "heliport", + "name": "Sharon Hospital Heliport", + "latitude_deg": "41.881232", + "longitude_deg": "-73.480699", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Sharon", + "scheduled_service": "no", + "gps_code": "0CT0", + "local_code": "0CT0" + }, + { + "id": "7148", + "ident": "0CT1", + "type": "heliport", + "name": "Bristol-Myers Squibb Company Heliport", + "latitude_deg": "41.484798431396484", + "longitude_deg": "-72.7562026977539", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Wallingford", + "scheduled_service": "no", + "gps_code": "0CT1", + "local_code": "0CT1" + }, + { + "id": "7149", + "ident": "0CT2", + "type": "heliport", + "name": "Windham Hospital Heliport", + "latitude_deg": "41.71699905395508", + "longitude_deg": "-72.22589874267578", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Willimantic", + "scheduled_service": "no", + "gps_code": "0CT2", + "local_code": "0CT2" + }, + { + "id": "7150", + "ident": "0CT3", + "type": "heliport", + "name": "N B G H Heliport", + "latitude_deg": "41.661598205566406", + "longitude_deg": "-72.78790283203125", + "elevation_ft": "431", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "New Britain", + "scheduled_service": "no", + "gps_code": "0CT3", + "local_code": "0CT3" + }, + { + "id": "7151", + "ident": "0CT4", + "type": "heliport", + "name": "Burke Heliport", + "latitude_deg": "41.50619888305664", + "longitude_deg": "-72.9397964477539", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Prospect", + "scheduled_service": "no", + "gps_code": "0CT4", + "local_code": "0CT4" + }, + { + "id": "7152", + "ident": "0CT5", + "type": "heliport", + "name": "St Francis Hospital Heliport", + "latitude_deg": "41.77450180053711", + "longitude_deg": "-72.6989974975586", + "elevation_ft": "184", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Hartford", + "scheduled_service": "no", + "gps_code": "0CT5", + "local_code": "0CT5" + }, + { + "id": "7153", + "ident": "0CT6", + "type": "heliport", + "name": "Middletown Heliport", + "latitude_deg": "41.5968017578125", + "longitude_deg": "-72.70449829101562", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Middletown", + "scheduled_service": "no", + "gps_code": "0CT6", + "local_code": "0CT6" + }, + { + "id": "7154", + "ident": "0CT7", + "type": "heliport", + "name": "Bridgeport Hospital Heliport", + "latitude_deg": "41.188408", + "longitude_deg": "-73.1667", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Bridgeport", + "scheduled_service": "no", + "gps_code": "0CT7", + "local_code": "0CT7" + }, + { + "id": "7155", + "ident": "0CT8", + "type": "heliport", + "name": "Danbury Hospital Heliport", + "latitude_deg": "41.405297", + "longitude_deg": "-73.445165", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Danbury", + "scheduled_service": "no", + "gps_code": "0CT8", + "local_code": "0CT8" + }, + { + "id": "7156", + "ident": "0CT9", + "type": "heliport", + "name": "Hartford Hospital Heliport", + "latitude_deg": "41.75450134277344", + "longitude_deg": "-72.67870330810547", + "elevation_ft": "211", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Hartford", + "scheduled_service": "no", + "gps_code": "0CT9", + "local_code": "0CT9" + }, + { + "id": "7157", + "ident": "0D6", + "type": "closed", + "name": "Wilber Municipal Airport", + "latitude_deg": "40.475215", + "longitude_deg": "-96.986275", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Wilber", + "scheduled_service": "no", + "keywords": "0D6" + }, + { + "id": "7158", + "ident": "0D7", + "type": "small_airport", + "name": "Ada Airport", + "latitude_deg": "40.79059982299805", + "longitude_deg": "-83.8291015625", + "elevation_ft": "949", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ada", + "scheduled_service": "no", + "gps_code": "0D7", + "local_code": "0D7" + }, + { + "id": "315634", + "ident": "0D9", + "type": "small_airport", + "name": "Air Park North", + "latitude_deg": "44.958035", + "longitude_deg": "-84.958859", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Elmira", + "scheduled_service": "no", + "gps_code": "MI30", + "local_code": "MI30", + "home_link": "http://airparknorth.net/?page_id=6", + "keywords": "0D9, 24MI" + }, + { + "id": "7159", + "ident": "0.00E+00", + "type": "small_airport", + "name": "Corydon Airport", + "latitude_deg": "40.754734", + "longitude_deg": "-93.242447", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Corydon", + "scheduled_service": "no", + "gps_code": "K0E9", + "local_code": "0.00E+00" + }, + { + "id": "7160", + "ident": "0FA0", + "type": "heliport", + "name": "Doral Resort & Country Club Heliport", + "latitude_deg": "25.81734", + "longitude_deg": "-80.340416", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "0FA0", + "local_code": "0FA0" + }, + { + "id": "7161", + "ident": "0FA1", + "type": "small_airport", + "name": "Ott's Landing Airport", + "latitude_deg": "27.3039", + "longitude_deg": "-81.880403", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Arcadia", + "scheduled_service": "no", + "gps_code": "0FA1", + "local_code": "0FA1", + "keywords": "Frierson Grove Airport" + }, + { + "id": "45349", + "ident": "0FA2", + "type": "heliport", + "name": "Doctors Memorial Hospital #2 Heliport", + "latitude_deg": "30.119753", + "longitude_deg": "-83.592732", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Perry", + "scheduled_service": "no", + "gps_code": "0FA2", + "local_code": "0FA2" + }, + { + "id": "345994", + "ident": "0FA3", + "type": "heliport", + "name": "Brighton Helipad", + "latitude_deg": "27.075744", + "longitude_deg": "-81.071125", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Brighton", + "scheduled_service": "no", + "gps_code": "0FA3", + "local_code": "0FA3" + }, + { + "id": "320961", + "ident": "0FA5", + "type": "seaplane_base", + "name": "Briley Farm Seaplane Base", + "latitude_deg": "28.5727778", + "longitude_deg": "-81.6286111", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Oakland", + "scheduled_service": "no", + "gps_code": "0FA5", + "local_code": "0FA5" + }, + { + "id": "347505", + "ident": "0FA6", + "type": "heliport", + "name": "Immokalee Helipad", + "latitude_deg": "26.39841", + "longitude_deg": "-81.414667", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Immokalee", + "scheduled_service": "no", + "gps_code": "0FA6", + "local_code": "0FA6" + }, + { + "id": "7162", + "ident": "0FD0", + "type": "small_airport", + "name": "The 2A Ranch Airport", + "latitude_deg": "29.26757", + "longitude_deg": "-81.223331", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ormond Beach", + "scheduled_service": "no", + "gps_code": "0FD0", + "local_code": "0FD0", + "keywords": "Big 'G' Airport" + }, + { + "id": "7163", + "ident": "0FD1", + "type": "heliport", + "name": "Panhandle Helicopter LLC Heliport", + "latitude_deg": "30.213844", + "longitude_deg": "-85.871916", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City Beach", + "scheduled_service": "no", + "gps_code": "0FD1", + "local_code": "0FD1" + }, + { + "id": "7164", + "ident": "0FD2", + "type": "heliport", + "name": "Hard Rock Stadium Heliport", + "latitude_deg": "25.960016", + "longitude_deg": "-80.237001", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami Gardens", + "scheduled_service": "no", + "gps_code": "0FD2", + "local_code": "0FD2", + "keywords": "Dolphin Stadium Heliport" + }, + { + "id": "7165", + "ident": "0FD3", + "type": "small_airport", + "name": "Dugger Field", + "latitude_deg": "30.496400833129883", + "longitude_deg": "-86.09380340576172", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Freeport", + "scheduled_service": "no", + "gps_code": "0FD3", + "local_code": "0FD3" + }, + { + "id": "7166", + "ident": "0FD4", + "type": "closed", + "name": "Cloverleaf Farms II Inc Heliport", + "latitude_deg": "29.360774", + "longitude_deg": "-82.204803", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Reddick", + "scheduled_service": "no", + "keywords": "0FD4" + }, + { + "id": "7167", + "ident": "0FD5", + "type": "small_airport", + "name": "Breezy Knoll Airport", + "latitude_deg": "30.820199966430664", + "longitude_deg": "-86.34439849853516", + "elevation_ft": "235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Defuniak Springs", + "scheduled_service": "no", + "gps_code": "0FD5", + "local_code": "0FD5" + }, + { + "id": "7168", + "ident": "0FD6", + "type": "seaplane_base", + "name": "Fulton Seaplane Base", + "latitude_deg": "27.907499313354492", + "longitude_deg": "-80.48639678955078", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sebastian", + "scheduled_service": "no", + "gps_code": "0FD6", + "local_code": "0FD6" + }, + { + "id": "7169", + "ident": "0FD9", + "type": "small_airport", + "name": "Joy Farms Airport", + "latitude_deg": "30.652099609375", + "longitude_deg": "-86.1093978881836", + "elevation_ft": "290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Defuniak Springs", + "scheduled_service": "no", + "gps_code": "0FD9", + "local_code": "0FD9" + }, + { + "id": "7170", + "ident": "0FL0", + "type": "small_airport", + "name": "Harper's Fly-In Ranch Airport", + "latitude_deg": "26.707834", + "longitude_deg": "-81.175549", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Clewiston", + "scheduled_service": "no", + "gps_code": "0FL0", + "local_code": "0FL0" + }, + { + "id": "7171", + "ident": "0FL1", + "type": "closed", + "name": "Thompson Airfield", + "latitude_deg": "29.983299", + "longitude_deg": "-82.835602", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Branford", + "scheduled_service": "no", + "keywords": "0FL1" + }, + { + "id": "7172", + "ident": "0FL2", + "type": "seaplane_base", + "name": "Alligator Drink Seaplane Base", + "latitude_deg": "28.787799835205078", + "longitude_deg": "-81.16419982910156", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Geneva", + "scheduled_service": "no", + "gps_code": "0FL2", + "local_code": "0FL2" + }, + { + "id": "7173", + "ident": "0FL3", + "type": "heliport", + "name": "Old Town Ems Heliport", + "latitude_deg": "29.602800369262695", + "longitude_deg": "-82.98169708251953", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Old Town", + "scheduled_service": "no", + "gps_code": "0FL3", + "local_code": "0FL3" + }, + { + "id": "7174", + "ident": "0FL4", + "type": "heliport", + "name": "Jackson Heliport", + "latitude_deg": "30.704999923706055", + "longitude_deg": "-85.37830352783203", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Alford", + "scheduled_service": "no", + "gps_code": "0FL4", + "local_code": "0FL4" + }, + { + "id": "7175", + "ident": "0FL5", + "type": "seaplane_base", + "name": "Lake Conway South Seaplane Base", + "latitude_deg": "28.458599090576172", + "longitude_deg": "-81.34970092773438", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Belle Isle", + "scheduled_service": "no", + "gps_code": "0FL5", + "local_code": "0FL5" + }, + { + "id": "7176", + "ident": "0FL6", + "type": "small_airport", + "name": "Stanchester Airport", + "latitude_deg": "27.806199", + "longitude_deg": "-82.141365", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lithia", + "scheduled_service": "no", + "gps_code": "27FA", + "local_code": "27FA", + "keywords": "0FL6" + }, + { + "id": "7177", + "ident": "0FL7", + "type": "heliport", + "name": "Wcpx Tv-6 Heliport", + "latitude_deg": "28.610300064086914", + "longitude_deg": "-81.41940307617188", + "elevation_ft": "114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "0FL7", + "local_code": "0FL7" + }, + { + "id": "7178", + "ident": "0FL8", + "type": "seaplane_base", + "name": "Gary Gale Seaplane Base", + "latitude_deg": "30.193899154663086", + "longitude_deg": "-81.68190002441406", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "0FL8", + "local_code": "0FL8" + }, + { + "id": "7179", + "ident": "0FL9", + "type": "small_airport", + "name": "Mc Daniel Ranch Inc. Airport", + "latitude_deg": "26.393051", + "longitude_deg": "-81.02874", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Clewiston", + "scheduled_service": "no", + "gps_code": "0FL9", + "local_code": "0FL9" + }, + { + "id": "7180", + "ident": "0G0", + "type": "small_airport", + "name": "North Buffalo Suburban Airport", + "latitude_deg": "43.103199", + "longitude_deg": "-78.7033", + "elevation_ft": "588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Lockport", + "scheduled_service": "no", + "gps_code": "K0G0", + "local_code": "0G0" + }, + { + "id": "7181", + "ident": "0G5", + "type": "seaplane_base", + "name": "Grand Marais/Cook County Seaplane Base", + "latitude_deg": "47.8263", + "longitude_deg": "-90.3835", + "elevation_ft": "1635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Grand Marais", + "scheduled_service": "no", + "gps_code": "0G5", + "local_code": "0G5", + "home_link": "http://www.boreal.org/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Marais/Cook_County_Seaplane_Base", + "keywords": "Devil Track Resort" + }, + { + "id": "7182", + "ident": "0GA0", + "type": "small_airport", + "name": "Halls Flying Ranch Airport", + "latitude_deg": "33.356201171875", + "longitude_deg": "-84.36710357666016", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Hampton", + "scheduled_service": "no", + "gps_code": "0GA0", + "local_code": "0GA0" + }, + { + "id": "7183", + "ident": "0GA1", + "type": "small_airport", + "name": "Mustang Field", + "latitude_deg": "34.477901458740234", + "longitude_deg": "-82.89710235595703", + "elevation_ft": "693", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Hartwell", + "scheduled_service": "no", + "gps_code": "0GA1", + "local_code": "0GA1" + }, + { + "id": "7184", + "ident": "0GA2", + "type": "small_airport", + "name": "Airnautique, Inc. Airport", + "latitude_deg": "34.377899169921875", + "longitude_deg": "-82.9457015991211", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Hartwell", + "scheduled_service": "no", + "gps_code": "0GA2", + "local_code": "0GA2" + }, + { + "id": "7185", + "ident": "0GA3", + "type": "small_airport", + "name": "Ayresouth Airport", + "latitude_deg": "33.77009963989258", + "longitude_deg": "-85.06079864501953", + "elevation_ft": "1287", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Temple", + "scheduled_service": "no", + "gps_code": "0GA3", + "local_code": "0GA3" + }, + { + "id": "7186", + "ident": "0GA4", + "type": "small_airport", + "name": "Paradise Falls Airport", + "latitude_deg": "33.812901", + "longitude_deg": "-83.505699", + "elevation_ft": "736", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Good Hope", + "scheduled_service": "no", + "keywords": "0GA4, High Shoals" + }, + { + "id": "7187", + "ident": "0GA5", + "type": "heliport", + "name": "Big Canoe Heliport", + "latitude_deg": "34.45479965209961", + "longitude_deg": "-84.28910064697266", + "elevation_ft": "1475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Jasper", + "scheduled_service": "no", + "gps_code": "0GA5", + "local_code": "0GA5" + }, + { + "id": "7188", + "ident": "0GA6", + "type": "small_airport", + "name": "Sunset Strip", + "latitude_deg": "33.7333984375", + "longitude_deg": "-83.81880187988281", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Jersey", + "scheduled_service": "no", + "gps_code": "0GA6", + "local_code": "0GA6" + }, + { + "id": "7189", + "ident": "0GA7", + "type": "closed", + "name": "Hickory Level Airfield", + "latitude_deg": "33.683399", + "longitude_deg": "-84.999901", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Carrollton", + "scheduled_service": "no", + "keywords": "0GA7" + }, + { + "id": "7190", + "ident": "0GA8", + "type": "small_airport", + "name": "Paso Fino Farm Airport", + "latitude_deg": "30.88031", + "longitude_deg": "-83.414443", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Valdosta", + "scheduled_service": "no", + "gps_code": "0GA8", + "local_code": "0GA8" + }, + { + "id": "7191", + "ident": "0GA9", + "type": "small_airport", + "name": "Roberta Industrial Park Airport", + "latitude_deg": "32.71390151977539", + "longitude_deg": "-84.02749633789062", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Roberta", + "scheduled_service": "no", + "gps_code": "0GA9", + "local_code": "0GA9" + }, + { + "id": "7192", + "ident": "0GE0", + "type": "small_airport", + "name": "Pinewood Airport", + "latitude_deg": "33.782100677490234", + "longitude_deg": "-84.80079650878906", + "elevation_ft": "1085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Douglasville", + "scheduled_service": "no", + "gps_code": "0GE0", + "local_code": "0GE0" + }, + { + "id": "7193", + "ident": "0GE1", + "type": "small_airport", + "name": "Crystal Lake Airpark", + "latitude_deg": "31.66550064086914", + "longitude_deg": "-83.44709777832031", + "elevation_ft": "327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Irwinville", + "scheduled_service": "no", + "gps_code": "0GE1", + "local_code": "0GE1" + }, + { + "id": "7194", + "ident": "0GE3", + "type": "small_airport", + "name": "Lookout Mountain Airport", + "latitude_deg": "34.904701232910156", + "longitude_deg": "-85.45970153808594", + "elevation_ft": "563", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Trenton", + "scheduled_service": "no", + "gps_code": "0GE3", + "local_code": "0GE3" + }, + { + "id": "7195", + "ident": "0GE4", + "type": "small_airport", + "name": "Pecan Patch Airstrip", + "latitude_deg": "33.33140182495117", + "longitude_deg": "-84.2667007446289", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Sunnyside", + "scheduled_service": "no", + "gps_code": "0GE4", + "local_code": "0GE4" + }, + { + "id": "7196", + "ident": "0GE5", + "type": "small_airport", + "name": "Mountain Airpark", + "latitude_deg": "34.561798095703125", + "longitude_deg": "-83.7135009765625", + "elevation_ft": "1438", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "0GE5", + "local_code": "0GE5" + }, + { + "id": "7197", + "ident": "0GE7", + "type": "small_airport", + "name": "Carpenter Airport", + "latitude_deg": "33.520301818847656", + "longitude_deg": "-82.37249755859375", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Appling", + "scheduled_service": "no", + "gps_code": "0GE7", + "local_code": "0GE7" + }, + { + "id": "7198", + "ident": "0GE9", + "type": "small_airport", + "name": "Pegasus Ranch Airport", + "latitude_deg": "32.69390106201172", + "longitude_deg": "-81.79859924316406", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Rocky Ford", + "scheduled_service": "no", + "gps_code": "0GE9", + "local_code": "0GE9" + }, + { + "id": "7199", + "ident": "0H7", + "type": "small_airport", + "name": "Kahoka Municipal Airport", + "latitude_deg": "40.4216", + "longitude_deg": "-91.706299", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kahoka", + "scheduled_service": "no", + "local_code": "0H7" + }, + { + "id": "7200", + "ident": "0I2", + "type": "small_airport", + "name": "Brazil Clay County Airport", + "latitude_deg": "39.47669982910156", + "longitude_deg": "-87.09970092773438", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Brazil", + "scheduled_service": "no", + "gps_code": "0I2", + "local_code": "0I2" + }, + { + "id": "7201", + "ident": "0IA0", + "type": "heliport", + "name": "Knoxville Area Community Hospital Heliport", + "latitude_deg": "41.316898345947266", + "longitude_deg": "-93.09600067138672", + "elevation_ft": "927", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Knoxville", + "scheduled_service": "no", + "gps_code": "0IA0", + "local_code": "0IA0" + }, + { + "id": "7202", + "ident": "0IA1", + "type": "heliport", + "name": "St Anthony Regional Hospital Heliport", + "latitude_deg": "42.05830001831055", + "longitude_deg": "-94.86830139160156", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Carroll", + "scheduled_service": "no", + "gps_code": "0IA1", + "local_code": "0IA1" + }, + { + "id": "7203", + "ident": "0IA2", + "type": "heliport", + "name": "Audubon County Memorial Hospital Heliport", + "latitude_deg": "41.71549987792969", + "longitude_deg": "-94.9385986328125", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Audubon", + "scheduled_service": "no", + "gps_code": "0IA2", + "local_code": "0IA2" + }, + { + "id": "7204", + "ident": "0IA3", + "type": "small_airport", + "name": "Hawkeye Airport", + "latitude_deg": "42.43470001220703", + "longitude_deg": "-92.3280029296875", + "elevation_ft": "883", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Waterloo", + "scheduled_service": "no", + "gps_code": "0IA3", + "local_code": "0IA3" + }, + { + "id": "7205", + "ident": "0IA4", + "type": "small_airport", + "name": "Sharar Field", + "latitude_deg": "41.03340148925781", + "longitude_deg": "-91.05010223388672", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Mediapolis", + "scheduled_service": "no", + "gps_code": "0IA4", + "local_code": "0IA4" + }, + { + "id": "7206", + "ident": "0IA5", + "type": "small_airport", + "name": "Moore Private Airport", + "latitude_deg": "40.87220001220703", + "longitude_deg": "-93.26270294189453", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Millerton", + "scheduled_service": "no", + "gps_code": "0IA5", + "local_code": "0IA5" + }, + { + "id": "7207", + "ident": "0IA6", + "type": "closed", + "name": "Rinehart Airport", + "latitude_deg": "41.659698", + "longitude_deg": "-92.289902", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Victor", + "scheduled_service": "no", + "keywords": "0IA6" + }, + { + "id": "7208", + "ident": "0IA7", + "type": "heliport", + "name": "Cromwell Heliport", + "latitude_deg": "41.03889846801758", + "longitude_deg": "-94.46690368652344", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Cromwell", + "scheduled_service": "no", + "gps_code": "0IA7", + "local_code": "0IA7" + }, + { + "id": "7209", + "ident": "0IA8", + "type": "small_airport", + "name": "Hannen Airport", + "latitude_deg": "42.22800064086914", + "longitude_deg": "-91.7509994506836", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Center Point", + "scheduled_service": "no", + "gps_code": "0IA8", + "local_code": "0IA8" + }, + { + "id": "7210", + "ident": "0IA9", + "type": "heliport", + "name": "Army Reserve Heliport", + "latitude_deg": "40.83340072631836", + "longitude_deg": "-91.30010223388672", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Middleton", + "scheduled_service": "no", + "gps_code": "0IA9", + "local_code": "0IA9" + }, + { + "id": "7211", + "ident": "0ID0", + "type": "small_airport", + "name": "South Fork Ranch Airport", + "latitude_deg": "43.60639953613281", + "longitude_deg": "-115.10700225830078", + "elevation_ft": "4861", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Featherville", + "scheduled_service": "no", + "gps_code": "0ID0", + "local_code": "0ID0" + }, + { + "id": "7212", + "ident": "0ID1", + "type": "small_airport", + "name": "Ziggy's Airport", + "latitude_deg": "42.64120101928711", + "longitude_deg": "-114.6050033569336", + "elevation_ft": "3225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Filer", + "scheduled_service": "no", + "gps_code": "0ID1", + "local_code": "0ID1" + }, + { + "id": "7213", + "ident": "0ID2", + "type": "small_airport", + "name": "Flying Joseph Ranch Airport", + "latitude_deg": "44.442901611299995", + "longitude_deg": "-113.773002625", + "elevation_ft": "5600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "May", + "scheduled_service": "no", + "gps_code": "0ID2", + "local_code": "0ID2" + }, + { + "id": "7214", + "ident": "0ID3", + "type": "small_airport", + "name": "Coyote Run Airport", + "latitude_deg": "43.075801849365234", + "longitude_deg": "-115.6729965209961", + "elevation_ft": "3150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Mountain Home", + "scheduled_service": "no", + "gps_code": "0ID3", + "local_code": "0ID3" + }, + { + "id": "7215", + "ident": "0ID4", + "type": "small_airport", + "name": "Black Butte Ranch Airport", + "latitude_deg": "43.047698974609375", + "longitude_deg": "-114.47000122070312", + "elevation_ft": "4020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Shoshone", + "scheduled_service": "no", + "gps_code": "0ID4", + "local_code": "0ID4" + }, + { + "id": "7216", + "ident": "0ID5", + "type": "small_airport", + "name": "Ez Lope Ranch Airport", + "latitude_deg": "43.0531005859375", + "longitude_deg": "-116.46199798583984", + "elevation_ft": "3130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Oreana", + "scheduled_service": "no", + "gps_code": "0ID5", + "local_code": "0ID5" + }, + { + "id": "7217", + "ident": "0ID6", + "type": "heliport", + "name": "Steele Memorial Heliport", + "latitude_deg": "45.173791", + "longitude_deg": "-113.891423", + "elevation_ft": "4004", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Salmon", + "scheduled_service": "no", + "gps_code": "67ID", + "local_code": "67ID", + "keywords": "0ID6" + }, + { + "id": "45394", + "ident": "0ID7", + "type": "small_airport", + "name": "Z X Ranch Airport", + "latitude_deg": "43.230308", + "longitude_deg": "-116.763192", + "elevation_ft": "3820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Murphy", + "scheduled_service": "no", + "gps_code": "0ID7", + "local_code": "0ID7" + }, + { + "id": "45387", + "ident": "0ID8", + "type": "small_airport", + "name": "Pinnacle Airport", + "latitude_deg": "45.775705", + "longitude_deg": "-116.180463", + "elevation_ft": "3800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Grangeville", + "scheduled_service": "no", + "gps_code": "0ID8", + "local_code": "0ID8" + }, + { + "id": "329280", + "ident": "0ID9", + "type": "small_airport", + "name": "Corral Creek Airport", + "latitude_deg": "46.785278", + "longitude_deg": "-116.471131", + "elevation_ft": "2895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Helmer", + "scheduled_service": "no", + "gps_code": "0ID9", + "local_code": "0ID9" + }, + { + "id": "7218", + "ident": "0II0", + "type": "small_airport", + "name": "Chuck's Airport", + "latitude_deg": "40.258381", + "longitude_deg": "-85.253348", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "0II0", + "local_code": "0II0" + }, + { + "id": "7219", + "ident": "0II1", + "type": "small_airport", + "name": "Unsicker Airport", + "latitude_deg": "40.4281005859375", + "longitude_deg": "-86.1532974243164", + "elevation_ft": "816", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bremen", + "scheduled_service": "no", + "gps_code": "0II1", + "local_code": "0II1" + }, + { + "id": "7220", + "ident": "0II2", + "type": "small_airport", + "name": "Creighton Airport", + "latitude_deg": "41.457298278808594", + "longitude_deg": "-86.12439727783203", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bremen", + "scheduled_service": "no", + "gps_code": "0II2", + "local_code": "0II2" + }, + { + "id": "7221", + "ident": "0II3", + "type": "closed", + "name": "Miller Strip", + "latitude_deg": "40.6278", + "longitude_deg": "-86.037804", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bunker Hill", + "scheduled_service": "no", + "keywords": "0II3" + }, + { + "id": "7222", + "ident": "0II5", + "type": "small_airport", + "name": "Marshall Field", + "latitude_deg": "40.65950012207031", + "longitude_deg": "-86.8572006225586", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Chalmers", + "scheduled_service": "no", + "gps_code": "0II5", + "local_code": "0II5" + }, + { + "id": "7223", + "ident": "0II6", + "type": "small_airport", + "name": "Kropf Airport", + "latitude_deg": "41.64310073852539", + "longitude_deg": "-85.82969665527344", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Goshen", + "scheduled_service": "no", + "gps_code": "0II6", + "local_code": "0II6" + }, + { + "id": "7224", + "ident": "0II7", + "type": "small_airport", + "name": "Frost Field", + "latitude_deg": "39.79560089111328", + "longitude_deg": "-85.78610229492188", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Greenfield", + "scheduled_service": "no", + "gps_code": "0II7", + "local_code": "0II7" + }, + { + "id": "7225", + "ident": "0II8", + "type": "small_airport", + "name": "Sutton's Field", + "latitude_deg": "41.324798583984375", + "longitude_deg": "-87.47589874267578", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lowell", + "scheduled_service": "no", + "gps_code": "0II8", + "local_code": "0II8" + }, + { + "id": "7226", + "ident": "0II9", + "type": "small_airport", + "name": "Winters Airport", + "latitude_deg": "39.53419876098633", + "longitude_deg": "-86.57720184326172", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hall", + "scheduled_service": "no", + "gps_code": "0II9", + "local_code": "0II9" + }, + { + "id": "7227", + "ident": "0IL0", + "type": "heliport", + "name": "Hamilton Memorial Hospital Heliport", + "latitude_deg": "38.086700439453125", + "longitude_deg": "-88.53890228271484", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mc Leansboro", + "scheduled_service": "no", + "gps_code": "0IL0", + "local_code": "0IL0" + }, + { + "id": "7228", + "ident": "0IL1", + "type": "heliport", + "name": "Loyola University Medical Center Heliport", + "latitude_deg": "41.86090087890625", + "longitude_deg": "-87.8364028930664", + "elevation_ft": "623", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Broadview", + "scheduled_service": "no", + "gps_code": "0IL1", + "local_code": "0IL1" + }, + { + "id": "45950", + "ident": "0IL2", + "type": "small_airport", + "name": "Griffin Airport", + "latitude_deg": "38.803056", + "longitude_deg": "-88.997778", + "elevation_ft": "541", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Alma", + "scheduled_service": "no", + "gps_code": "0IL2", + "local_code": "0IL2" + }, + { + "id": "7229", + "ident": "0IL3", + "type": "closed", + "name": "Flying B Ranch Airport", + "latitude_deg": "40.157001", + "longitude_deg": "-87.6745", + "elevation_ft": "696", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Danville", + "scheduled_service": "no", + "keywords": "0IL3" + }, + { + "id": "7230", + "ident": "0IL4", + "type": "heliport", + "name": "Advocate Good Samaritan Hospital Heliport", + "latitude_deg": "41.818743", + "longitude_deg": "-88.007677", + "elevation_ft": "772", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Downers Grove", + "scheduled_service": "no", + "gps_code": "0IL4", + "local_code": "0IL4" + }, + { + "id": "323339", + "ident": "0IL5", + "type": "heliport", + "name": "OSF St Luke Medical Center Heliport", + "latitude_deg": "41.221865", + "longitude_deg": "-89.947788", + "elevation_ft": "849", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Kewanee", + "scheduled_service": "no", + "gps_code": "0IL5", + "local_code": "0IL5" + }, + { + "id": "7231", + "ident": "0IL6", + "type": "heliport", + "name": "Kishwaukee Community Hospital Heliport", + "latitude_deg": "41.9631004333", + "longitude_deg": "-88.717300415", + "elevation_ft": "852", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "De Kalb", + "scheduled_service": "no", + "gps_code": "0IL6", + "local_code": "0IL6" + }, + { + "id": "352229", + "ident": "0IL7", + "type": "small_airport", + "name": "Davis Restricted Landing Area", + "latitude_deg": "39.782917", + "longitude_deg": "-88.546708", + "elevation_ft": "682", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hammond", + "scheduled_service": "no", + "gps_code": "0IL7", + "local_code": "0IL7" + }, + { + "id": "7232", + "ident": "0IL8", + "type": "small_airport", + "name": "Walter Airport", + "latitude_deg": "41.872501", + "longitude_deg": "-88.723701", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "DeKalb", + "scheduled_service": "no", + "gps_code": "0IL8", + "local_code": "0IL8" + }, + { + "id": "7233", + "ident": "0IL9", + "type": "small_airport", + "name": "Jack W Watson Airport", + "latitude_deg": "41.853699", + "longitude_deg": "-88.786513", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "DeKalb", + "scheduled_service": "no", + "gps_code": "0IL9", + "local_code": "0IL9" + }, + { + "id": "7234", + "ident": "0IN1", + "type": "small_airport", + "name": "Snider Field", + "latitude_deg": "38.5", + "longitude_deg": "-87.59590148925781", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Decker", + "scheduled_service": "no", + "gps_code": "0IN1", + "local_code": "0IN1" + }, + { + "id": "7235", + "ident": "0IN2", + "type": "small_airport", + "name": "The Lazy K Airport", + "latitude_deg": "40.82780075073242", + "longitude_deg": "-85.08609771728516", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Tocsin", + "scheduled_service": "no", + "gps_code": "0IN2", + "local_code": "0IN2" + }, + { + "id": "7236", + "ident": "0IN3", + "type": "small_airport", + "name": "Graves Landing Strip", + "latitude_deg": "41.11669921875", + "longitude_deg": "-86.66670227050781", + "elevation_ft": "704", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Winamac", + "scheduled_service": "no", + "gps_code": "0IN3", + "local_code": "0IN3" + }, + { + "id": "7237", + "ident": "0IN4", + "type": "small_airport", + "name": "Air Park Field", + "latitude_deg": "41.127405", + "longitude_deg": "-84.953306", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "New Haven", + "scheduled_service": "no", + "gps_code": "0IN4", + "local_code": "0IN4" + }, + { + "id": "7238", + "ident": "0IN5", + "type": "small_airport", + "name": "Byrne Field", + "latitude_deg": "38.329378", + "longitude_deg": "-86.033431", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Byrneville", + "scheduled_service": "no", + "gps_code": "0IN5", + "local_code": "0IN5" + }, + { + "id": "7239", + "ident": "0IN7", + "type": "closed", + "name": "Roto-Whirl/Holiday Heliport", + "latitude_deg": "39.922501", + "longitude_deg": "-86.226097", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "keywords": "0IN7" + }, + { + "id": "7240", + "ident": "0IN8", + "type": "closed", + "name": "Roto-Whirl/Vantage Heliport", + "latitude_deg": "39.837299", + "longitude_deg": "-86.118597", + "elevation_ft": "726", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "keywords": "0IN8" + }, + { + "id": "7241", + "ident": "0IN9", + "type": "small_airport", + "name": "Parrish Airport", + "latitude_deg": "37.993099212646484", + "longitude_deg": "-87.95140075683594", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "0IN9", + "local_code": "0IN9" + }, + { + "id": "7242", + "ident": "0IS0", + "type": "heliport", + "name": "Trinity Medical Center West Heliport", + "latitude_deg": "41.48109817504883", + "longitude_deg": "-90.57140350341797", + "elevation_ft": "664", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rock Island", + "scheduled_service": "no", + "gps_code": "0IS0", + "local_code": "0IS0" + }, + { + "id": "7243", + "ident": "0IS2", + "type": "heliport", + "name": "Evanston/Glenbrook Heliport", + "latitude_deg": "42.093101501464844", + "longitude_deg": "-87.85260009765625", + "elevation_ft": "678", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Glenview", + "scheduled_service": "no", + "gps_code": "0IS2", + "local_code": "0IS2" + }, + { + "id": "7244", + "ident": "0IS3", + "type": "small_airport", + "name": "Cady Aerial RLA Restricted Landing Area", + "latitude_deg": "41.660800933800004", + "longitude_deg": "-89.69360351559999", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Deer Grove", + "scheduled_service": "no", + "gps_code": "0IS3", + "local_code": "0IS3" + }, + { + "id": "7245", + "ident": "0IS4", + "type": "small_airport", + "name": "Dawson Farms Airport", + "latitude_deg": "39.76250076293945", + "longitude_deg": "-88.67150115966797", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lovington", + "scheduled_service": "no", + "gps_code": "0IS4", + "local_code": "0IS4" + }, + { + "id": "7246", + "ident": "0IS6", + "type": "heliport", + "name": "Dongola Heliport", + "latitude_deg": "37.3656005859375", + "longitude_deg": "-89.1635971069336", + "elevation_ft": "383", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Dongola", + "scheduled_service": "no", + "gps_code": "0IS6", + "local_code": "0IS6" + }, + { + "id": "7247", + "ident": "0IS8", + "type": "heliport", + "name": "Blessing Hospital At 11th St Heliport", + "latitude_deg": "39.936012", + "longitude_deg": "-91.398659", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Quincy", + "scheduled_service": "no", + "gps_code": "0IS8", + "local_code": "0IS8", + "keywords": "Air Evac 5 Heliport" + }, + { + "id": "7248", + "ident": "0IS9", + "type": "heliport", + "name": "Bernardin Heliport", + "latitude_deg": "41.70840072631836", + "longitude_deg": "-89.2029037475586", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "West Brooklyn", + "scheduled_service": "no", + "gps_code": "0IS9", + "local_code": "0IS9" + }, + { + "id": "7249", + "ident": "0J0", + "type": "small_airport", + "name": "Abbeville Municipal Airport", + "latitude_deg": "31.600093", + "longitude_deg": "-85.238353", + "elevation_ft": "468", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Abbeville", + "scheduled_service": "no", + "local_code": "0J0" + }, + { + "id": "7250", + "ident": "0J8", + "type": "small_airport", + "name": "Flying Ten Airport", + "latitude_deg": "29.618000030517578", + "longitude_deg": "-82.50869750976562", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Archer", + "scheduled_service": "no", + "gps_code": "0J8", + "local_code": "0J8" + }, + { + "id": "345693", + "ident": "0JY9", + "type": "heliport", + "name": "Fleming County Hospital Heliport", + "latitude_deg": "38.422373", + "longitude_deg": "-83.752604", + "elevation_ft": "943", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Flemingsburg", + "scheduled_service": "no", + "gps_code": "0JY9", + "local_code": "0JY9" + }, + { + "id": "7251", + "ident": "0K6", + "type": "small_airport", + "name": "Dobie's Airport", + "latitude_deg": "36.178496", + "longitude_deg": "-95.580468", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Inola", + "scheduled_service": "no", + "local_code": "0K6" + }, + { + "id": "7252", + "ident": "0KS0", + "type": "small_airport", + "name": "J V Ranch Airport", + "latitude_deg": "38.63330078125", + "longitude_deg": "-95.92530059814453", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Osage City", + "scheduled_service": "no", + "gps_code": "0KS0", + "local_code": "0KS0" + }, + { + "id": "7253", + "ident": "0KS2", + "type": "closed", + "name": "Kellie Mann Airfield", + "latitude_deg": "38.560001", + "longitude_deg": "-95.309097", + "elevation_ft": "1045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Ottawa", + "scheduled_service": "no", + "keywords": "0KS2" + }, + { + "id": "7254", + "ident": "0KS3", + "type": "closed", + "name": "Camp Chippewa Airport", + "latitude_deg": "38.5667", + "longitude_deg": "-95.366898", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Ottawa", + "scheduled_service": "no", + "keywords": "0KS3" + }, + { + "id": "7255", + "ident": "0KS4", + "type": "small_airport", + "name": "Norris Airport", + "latitude_deg": "38.807239", + "longitude_deg": "-95.370056", + "elevation_ft": "1065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Lawrence", + "scheduled_service": "no", + "gps_code": "0KS4", + "local_code": "0KS4" + }, + { + "id": "354111", + "ident": "0KS5", + "type": "small_airport", + "name": "Oasis Aerodrome", + "latitude_deg": "38.450666", + "longitude_deg": "-98.797646", + "elevation_ft": "1914", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Great Bend", + "scheduled_service": "no", + "gps_code": "0KS5", + "local_code": "0KS5" + }, + { + "id": "7256", + "ident": "0KS6", + "type": "small_airport", + "name": "Kendrigan Airport", + "latitude_deg": "37.45220184326172", + "longitude_deg": "-97.31780242919922", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Peck", + "scheduled_service": "no", + "gps_code": "0KS6", + "local_code": "0KS6" + }, + { + "id": "7257", + "ident": "0KS7", + "type": "small_airport", + "name": "Mono Aircraft Airport", + "latitude_deg": "37.69279861450195", + "longitude_deg": "-97.88639831542969", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Cheney", + "scheduled_service": "no", + "gps_code": "0KS7", + "local_code": "0KS7" + }, + { + "id": "7258", + "ident": "0KS8", + "type": "small_airport", + "name": "Pearce Field", + "latitude_deg": "37.38249969482422", + "longitude_deg": "-95.37470245361328", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Parsons", + "scheduled_service": "no", + "gps_code": "0KS8", + "local_code": "0KS8" + }, + { + "id": "7259", + "ident": "0KS9", + "type": "small_airport", + "name": "Lmn 120 Airport", + "latitude_deg": "37.515899658203125", + "longitude_deg": "-96.9197998046875", + "elevation_ft": "1330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Douglas", + "scheduled_service": "no", + "gps_code": "0KS9", + "local_code": "0KS9" + }, + { + "id": "7260", + "ident": "0KY0", + "type": "small_airport", + "name": "Owen Air Park", + "latitude_deg": "38.622798919677734", + "longitude_deg": "-84.77890014648438", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Owenton", + "scheduled_service": "no", + "gps_code": "0KY0", + "local_code": "0KY0" + }, + { + "id": "7261", + "ident": "0KY1", + "type": "small_airport", + "name": "Arnemann Farms Airport", + "latitude_deg": "36.76559829711914", + "longitude_deg": "-86.61830139160156", + "elevation_ft": "504", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "0KY1", + "local_code": "0KY1" + }, + { + "id": "7262", + "ident": "0KY2", + "type": "heliport", + "name": "Mgt Station 2105 Heliport", + "latitude_deg": "37.50559997558594", + "longitude_deg": "-86.8375015258789", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Hartford", + "scheduled_service": "no", + "gps_code": "0KY2", + "local_code": "0KY2" + }, + { + "id": "7263", + "ident": "0KY3", + "type": "closed", + "name": "Tennessee Gas Heliport", + "latitude_deg": "38.561404", + "longitude_deg": "-83.952795", + "elevation_ft": "604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Load", + "scheduled_service": "no", + "keywords": "0KY3" + }, + { + "id": "7264", + "ident": "0KY4", + "type": "small_airport", + "name": "Cambron Field", + "latitude_deg": "37.56439971923828", + "longitude_deg": "-87.08190155029297", + "elevation_ft": "427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Owensboro", + "scheduled_service": "no", + "gps_code": "0KY4", + "local_code": "0KY4" + }, + { + "id": "7265", + "ident": "0KY5", + "type": "small_airport", + "name": "Boyce Wafer Farm Airport", + "latitude_deg": "36.812346", + "longitude_deg": "-86.377427", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Alvaton", + "scheduled_service": "no", + "local_code": "0KY5", + "keywords": "Falin Landing Strip" + }, + { + "id": "7266", + "ident": "0KY6", + "type": "closed", + "name": "Tennessee Gas Heliport", + "latitude_deg": "38.268299", + "longitude_deg": "-82.577499", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Burnaugh", + "scheduled_service": "no", + "keywords": "0KY6" + }, + { + "id": "7267", + "ident": "0KY7", + "type": "small_airport", + "name": "Clinton-Hickman County Airport", + "latitude_deg": "36.63610076904297", + "longitude_deg": "-88.99859619140625", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "0KY7", + "local_code": "0KY7" + }, + { + "id": "7268", + "ident": "0KY8", + "type": "closed", + "name": "Sky Airport", + "latitude_deg": "37.117199", + "longitude_deg": "-83.736099", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Manchester", + "scheduled_service": "no", + "keywords": "0KY8" + }, + { + "id": "7269", + "ident": "0KY9", + "type": "closed", + "name": "Pine Mountain Aero Heliport", + "latitude_deg": "37.113602", + "longitude_deg": "-82.803596", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Whitesburg", + "scheduled_service": "no", + "keywords": "0KY9" + }, + { + "id": "7270", + "ident": "0L4", + "type": "small_airport", + "name": "Lida Junction Airport", + "latitude_deg": "37.485801696777344", + "longitude_deg": "-117.19100189208984", + "elevation_ft": "4684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Goldfield", + "scheduled_service": "no", + "gps_code": "0L4", + "local_code": "0L4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lida_Junction_Airport" + }, + { + "id": "7271", + "ident": "0L5", + "type": "small_airport", + "name": "Goldfield Airport", + "latitude_deg": "37.722751", + "longitude_deg": "-117.236368", + "elevation_ft": "5680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Goldfield", + "scheduled_service": "no", + "gps_code": "NV50", + "local_code": "NV50", + "wikipedia_link": "https://en.wikipedia.org/wiki/Goldfield_Airport", + "keywords": "0L5" + }, + { + "id": "7272", + "ident": "0L6", + "type": "heliport", + "name": "Winn Parish Medical Center Heliport", + "latitude_deg": "31.923824", + "longitude_deg": "-92.646091", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Winnfield", + "scheduled_service": "no", + "gps_code": "K0L6", + "local_code": "0L6" + }, + { + "id": "7273", + "ident": "0LA0", + "type": "heliport", + "name": "West Hackberry Heliport", + "latitude_deg": "30.003515", + "longitude_deg": "-93.401005", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Hackberry", + "scheduled_service": "no", + "gps_code": "0LA0", + "local_code": "0LA0" + }, + { + "id": "7274", + "ident": "0LA1", + "type": "small_airport", + "name": "Double H Ranch Airport", + "latitude_deg": "30.229400634765625", + "longitude_deg": "-90.97339630126953", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Gonzales", + "scheduled_service": "no", + "gps_code": "0LA1", + "local_code": "0LA1" + }, + { + "id": "7275", + "ident": "0LA2", + "type": "closed", + "name": "Don Babin-Private Airport", + "latitude_deg": "30.278", + "longitude_deg": "-90.963203", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Gonzales", + "scheduled_service": "no", + "keywords": "0LA2" + }, + { + "id": "7276", + "ident": "0LA3", + "type": "small_airport", + "name": "Belcher Airpatch Airport", + "latitude_deg": "32.749298095703125", + "longitude_deg": "-93.87349700927734", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Belcher", + "scheduled_service": "no", + "gps_code": "0LA3", + "local_code": "0LA3" + }, + { + "id": "7277", + "ident": "0LA4", + "type": "heliport", + "name": "North Caddo Medical Center Heliport", + "latitude_deg": "32.86410140991211", + "longitude_deg": "-93.98899841308594", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Vivian", + "scheduled_service": "no", + "gps_code": "0LA4", + "local_code": "0LA4" + }, + { + "id": "7278", + "ident": "0LA5", + "type": "heliport", + "name": "Conoco Inc Heliport", + "latitude_deg": "29.258868", + "longitude_deg": "-89.964541", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Grand Isle", + "scheduled_service": "no", + "gps_code": "0LA5", + "local_code": "0LA5" + }, + { + "id": "7279", + "ident": "0LA6", + "type": "closed", + "name": "Freeport Sulphur Heliport", + "latitude_deg": "29.2586", + "longitude_deg": "-89.959198", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Grand Isle", + "scheduled_service": "no", + "keywords": "0LA6" + }, + { + "id": "7280", + "ident": "0LA7", + "type": "heliport", + "name": "Exxon Heliport", + "latitude_deg": "29.254738", + "longitude_deg": "-89.96732", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Grand Isle", + "scheduled_service": "no", + "gps_code": "0LA7", + "local_code": "0LA7" + }, + { + "id": "7281", + "ident": "0LA8", + "type": "heliport", + "name": "Jackson Parish Hospital Heliport", + "latitude_deg": "32.252942", + "longitude_deg": "-92.718795", + "elevation_ft": "183", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Jonesboro", + "scheduled_service": "no", + "gps_code": "0LA8", + "local_code": "0LA8" + }, + { + "id": "7282", + "ident": "0LA9", + "type": "small_airport", + "name": "Rebel Field", + "latitude_deg": "30.586299896240234", + "longitude_deg": "-90.86150360107422", + "elevation_ft": "74", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Watson", + "scheduled_service": "no", + "gps_code": "0LA9", + "local_code": "0LA9" + }, + { + "id": "7283", + "ident": "0LL0", + "type": "small_airport", + "name": "Kaufield Airport", + "latitude_deg": "42.265259", + "longitude_deg": "-88.727754", + "elevation_ft": "783", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Belvidere", + "scheduled_service": "no", + "gps_code": "0LL0", + "local_code": "0LL0" + }, + { + "id": "7284", + "ident": "0LL1", + "type": "small_airport", + "name": "Jerseyville Aviation Inc Airport", + "latitude_deg": "39.094200134277344", + "longitude_deg": "-90.31340026855469", + "elevation_ft": "604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Jerseyville", + "scheduled_service": "no", + "gps_code": "0LL1", + "local_code": "0LL1" + }, + { + "id": "7285", + "ident": "0LL2", + "type": "small_airport", + "name": "Murk's Strip", + "latitude_deg": "40.738899231", + "longitude_deg": "-90.38069915770001", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "St. Augustine", + "scheduled_service": "no", + "gps_code": "0LL2", + "local_code": "0LL2" + }, + { + "id": "7286", + "ident": "0LL3", + "type": "small_airport", + "name": "Koenig Airport", + "latitude_deg": "39.05500030517578", + "longitude_deg": "-90.34210205078125", + "elevation_ft": "614", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Jerseyville", + "scheduled_service": "no", + "gps_code": "0LL3", + "local_code": "0LL3" + }, + { + "id": "7287", + "ident": "0LL4", + "type": "small_airport", + "name": "Flaherty Field", + "latitude_deg": "41.4192008972168", + "longitude_deg": "-89.12310028076172", + "elevation_ft": "664", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "La Salle", + "scheduled_service": "no", + "gps_code": "0LL4", + "local_code": "0LL4" + }, + { + "id": "7288", + "ident": "0LL5", + "type": "small_airport", + "name": "Busboom RLA Restricted Landing Area", + "latitude_deg": "40.1100006104", + "longitude_deg": "-88.07839965820001", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "St Joseph", + "scheduled_service": "no", + "gps_code": "0LL5", + "local_code": "0LL5" + }, + { + "id": "7289", + "ident": "0LL6", + "type": "small_airport", + "name": "Gord Airport", + "latitude_deg": "41.69839859008789", + "longitude_deg": "-88.60759735107422", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sandwich", + "scheduled_service": "no", + "gps_code": "0LL6", + "local_code": "0LL6" + }, + { + "id": "7290", + "ident": "0LL7", + "type": "heliport", + "name": "Northwestern Medicine Valley West Hospital Heliport", + "latitude_deg": "41.657994", + "longitude_deg": "-88.621297", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sandwich", + "scheduled_service": "no", + "gps_code": "0LL7", + "local_code": "0LL7", + "keywords": "Hospital Heliport" + }, + { + "id": "7291", + "ident": "0LL9", + "type": "closed", + "name": "Savanna Army Depot Helipad", + "latitude_deg": "42.183399", + "longitude_deg": "-90.255698", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Savanna", + "scheduled_service": "no", + "keywords": "0LL9" + }, + { + "id": "7292", + "ident": "0LS0", + "type": "small_airport", + "name": "Theriot Field", + "latitude_deg": "29.74970054626465", + "longitude_deg": "-90.73580169677734", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Thibodaux", + "scheduled_service": "no", + "gps_code": "0LS0", + "local_code": "0LS0" + }, + { + "id": "7294", + "ident": "0LS2", + "type": "closed", + "name": "Evergreen Fourchon Heliport", + "latitude_deg": "29.116437", + "longitude_deg": "-90.201273", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Golden Meadow", + "scheduled_service": "no", + "keywords": "0LS2" + }, + { + "id": "7295", + "ident": "0LS3", + "type": "heliport", + "name": "Evergreen Venice Heliport", + "latitude_deg": "29.29669952392578", + "longitude_deg": "-89.37439727783203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no", + "gps_code": "0LS3", + "local_code": "0LS3" + }, + { + "id": "7296", + "ident": "0LS4", + "type": "closed", + "name": "Buller's Airstrip", + "latitude_deg": "30.808701", + "longitude_deg": "-92.188003", + "elevation_ft": "47", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bunkie", + "scheduled_service": "no", + "keywords": "0LS4" + }, + { + "id": "7297", + "ident": "0LS5", + "type": "small_airport", + "name": "Trahan Ultralightport", + "latitude_deg": "30.303775", + "longitude_deg": "-92.130547", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Carencro", + "scheduled_service": "no", + "gps_code": "0LS5", + "local_code": "0LS5" + }, + { + "id": "7298", + "ident": "0LS6", + "type": "small_airport", + "name": "Dufour Airport", + "latitude_deg": "30.787700653076172", + "longitude_deg": "-92.05039978027344", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Morrow", + "scheduled_service": "no", + "gps_code": "0LS6", + "local_code": "0LS6" + }, + { + "id": "7299", + "ident": "0LS7", + "type": "small_airport", + "name": "Morgan Field", + "latitude_deg": "30.61280059814453", + "longitude_deg": "-91.48419952392578", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Roads", + "scheduled_service": "no", + "gps_code": "0LS7", + "local_code": "0LS7" + }, + { + "id": "7300", + "ident": "0LS8", + "type": "small_airport", + "name": "Lonesome Dove Airfield", + "latitude_deg": "30.28580093383789", + "longitude_deg": "-92.94129943847656", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Woodlawn", + "scheduled_service": "no", + "gps_code": "0LS8", + "local_code": "0LS8" + }, + { + "id": "7301", + "ident": "0LS9", + "type": "small_airport", + "name": "Huenefeld Airport", + "latitude_deg": "32.513603", + "longitude_deg": "-91.98657", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "0LS9", + "local_code": "0LS9" + }, + { + "id": "7302", + "ident": "0MA1", + "type": "heliport", + "name": "Massachusetts General Hospital Heliport", + "latitude_deg": "42.363656", + "longitude_deg": "-71.069142", + "elevation_ft": "214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Boston", + "scheduled_service": "no", + "gps_code": "0MA1", + "local_code": "0MA1" + }, + { + "id": "7303", + "ident": "0MA2", + "type": "heliport", + "name": "Healthalliance Hospital-Leominster Heliport", + "latitude_deg": "42.54090118408203", + "longitude_deg": "-71.76280212402344", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Leominster", + "scheduled_service": "no", + "gps_code": "0MA2", + "local_code": "0MA2" + }, + { + "id": "7304", + "ident": "0MA3", + "type": "heliport", + "name": "Reh Heliport", + "latitude_deg": "41.786224", + "longitude_deg": "-71.231437", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Rehoboth", + "scheduled_service": "no", + "gps_code": "0MA3", + "local_code": "0MA3" + }, + { + "id": "7305", + "ident": "0MA4", + "type": "heliport", + "name": "Boston Medical Center Hospital Heliport", + "latitude_deg": "42.333804", + "longitude_deg": "-71.071352", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Boston", + "scheduled_service": "no", + "gps_code": "0MA4", + "local_code": "0MA4" + }, + { + "id": "7306", + "ident": "0MA5", + "type": "heliport", + "name": "Brockton Usar Center Heliport", + "latitude_deg": "42.05590057373047", + "longitude_deg": "-71.05590057373047", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Brockton", + "scheduled_service": "no", + "gps_code": "0MA5", + "local_code": "0MA5" + }, + { + "id": "7307", + "ident": "0MA6", + "type": "heliport", + "name": "Wbz Heliport", + "latitude_deg": "42.3651008605957", + "longitude_deg": "-71.13259887695312", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Boston", + "scheduled_service": "no", + "gps_code": "0MA6", + "local_code": "0MA6" + }, + { + "id": "7308", + "ident": "0MA8", + "type": "closed", + "name": "Textron/Everett Heliport", + "latitude_deg": "42.404496", + "longitude_deg": "-71.070602", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Everett", + "scheduled_service": "no", + "keywords": "0MA8" + }, + { + "id": "7309", + "ident": "0MA9", + "type": "heliport", + "name": "Lleia Kyle O'Meara Heliport", + "latitude_deg": "42.50310134887695", + "longitude_deg": "-71.90840148925781", + "elevation_ft": "1230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Westminster", + "scheduled_service": "no", + "gps_code": "0MA9", + "local_code": "0MA9" + }, + { + "id": "7310", + "ident": "0MD0", + "type": "heliport", + "name": "Baltimore Washington Medical Center Heliport", + "latitude_deg": "39.1375999451", + "longitude_deg": "-76.623298645", + "elevation_ft": "77", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Glen Burnie", + "scheduled_service": "no", + "gps_code": "0MD0", + "local_code": "0MD0" + }, + { + "id": "7311", + "ident": "0MD1", + "type": "small_airport", + "name": "Taylor Field", + "latitude_deg": "39.18730163574219", + "longitude_deg": "-75.7927017211914", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Sudlersville", + "scheduled_service": "no", + "gps_code": "0MD1", + "local_code": "0MD1" + }, + { + "id": "7312", + "ident": "0MD2", + "type": "small_airport", + "name": "Squier Landing Airport", + "latitude_deg": "38.287781", + "longitude_deg": "-76.867575", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Newburg", + "scheduled_service": "no", + "gps_code": "0MD2", + "local_code": "0MD2" + }, + { + "id": "7313", + "ident": "0MD3", + "type": "closed", + "name": "Johns Hopkins Hospital Heliport", + "latitude_deg": "39.297725", + "longitude_deg": "-76.592941", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Baltimore", + "scheduled_service": "no", + "gps_code": "0MD3", + "local_code": "0MD3" + }, + { + "id": "7314", + "ident": "0MD4", + "type": "small_airport", + "name": "Pond View Private Airport", + "latitude_deg": "39.26679992675781", + "longitude_deg": "-76.18720245361328", + "elevation_ft": "47", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Chestertown", + "scheduled_service": "no", + "gps_code": "0MD4", + "local_code": "0MD4" + }, + { + "id": "7315", + "ident": "0MD5", + "type": "heliport", + "name": "UM Laurel Medical Center Heliport", + "latitude_deg": "39.087886", + "longitude_deg": "-76.882281", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Laurel", + "scheduled_service": "no", + "gps_code": "0MD5", + "local_code": "0MD5", + "keywords": "Greater Laurel Beltsville Hospital" + }, + { + "id": "7316", + "ident": "0MD6", + "type": "small_airport", + "name": "Walters Airport", + "latitude_deg": "39.38119888305664", + "longitude_deg": "-77.10579681396484", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Mount Airy", + "scheduled_service": "no", + "gps_code": "0MD6", + "local_code": "0MD6" + }, + { + "id": "7317", + "ident": "0MD7", + "type": "heliport", + "name": "The Aspen Institute Heliport", + "latitude_deg": "38.9093017578125", + "longitude_deg": "-76.11969757080078", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Queenstown", + "scheduled_service": "no", + "gps_code": "0MD7", + "local_code": "0MD7" + }, + { + "id": "7318", + "ident": "0MD8", + "type": "heliport", + "name": "Security Ford Heliport", + "latitude_deg": "39.24589920043945", + "longitude_deg": "-76.67610168457031", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Arbutus", + "scheduled_service": "no", + "gps_code": "0MD8", + "local_code": "0MD8" + }, + { + "id": "7319", + "ident": "0MD9", + "type": "heliport", + "name": "Calvert Memorial Hospital Heliport", + "latitude_deg": "38.560846", + "longitude_deg": "-76.595979", + "elevation_ft": "143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Prince Frederick", + "scheduled_service": "no", + "gps_code": "0MD9", + "local_code": "0MD9" + }, + { + "id": "45455", + "ident": "0ME4", + "type": "small_airport", + "name": "Peasley Field", + "latitude_deg": "44.742469", + "longitude_deg": "-68.474403", + "elevation_ft": "271", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Otis", + "scheduled_service": "no", + "gps_code": "0ME4", + "local_code": "0ME4" + }, + { + "id": "345496", + "ident": "0ME7", + "type": "seaplane_base", + "name": "Sebago Lake Basin Seaplane Base", + "latitude_deg": "43.839716", + "longitude_deg": "-70.462016", + "elevation_ft": "266", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "North Windham", + "scheduled_service": "no", + "gps_code": "0ME7", + "local_code": "0ME7" + }, + { + "id": "7320", + "ident": "0MI0", + "type": "closed", + "name": "Sumner Heliport", + "latitude_deg": "42.970001", + "longitude_deg": "-85.6659", + "elevation_ft": "657", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Grand Rapids", + "scheduled_service": "no", + "keywords": "0MI0" + }, + { + "id": "7321", + "ident": "0MI1", + "type": "small_airport", + "name": "Sugar Springs Airpark", + "latitude_deg": "44.140301", + "longitude_deg": "-84.4375", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Gladwin", + "scheduled_service": "no", + "local_code": "5M6", + "home_link": "http://www.sugarsprings.net/airpark.html", + "keywords": "0MI1" + }, + { + "id": "7322", + "ident": "0MI2", + "type": "closed", + "name": "Stier Airstrip", + "latitude_deg": "44.522202", + "longitude_deg": "-83.683296", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Glennie", + "scheduled_service": "no", + "keywords": "0MI2" + }, + { + "id": "7323", + "ident": "0MI3", + "type": "small_airport", + "name": "Kelleys Airport", + "latitude_deg": "44.633399963378906", + "longitude_deg": "-84.4833984375", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Grayling", + "scheduled_service": "no", + "gps_code": "0MI3", + "local_code": "0MI3" + }, + { + "id": "7324", + "ident": "0MI4", + "type": "small_airport", + "name": "Lesterson-Dempsey Airstrip", + "latitude_deg": "46.270198", + "longitude_deg": "-87.386496", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Gwinn", + "scheduled_service": "no", + "gps_code": "0MI4", + "local_code": "0MI4", + "keywords": "Lesterson Field" + }, + { + "id": "7325", + "ident": "0MI6", + "type": "small_airport", + "name": "Young's Airport", + "latitude_deg": "46.38750076293945", + "longitude_deg": "-85.18399810791016", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Hulbert", + "scheduled_service": "no", + "gps_code": "0MI6", + "local_code": "0MI6" + }, + { + "id": "7326", + "ident": "0MI7", + "type": "heliport", + "name": "Four Star Heliport", + "latitude_deg": "42.042987", + "longitude_deg": "-83.35895", + "elevation_ft": "603", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Carleton", + "scheduled_service": "no", + "gps_code": "0MI7", + "local_code": "0MI7" + }, + { + "id": "7327", + "ident": "0MI8", + "type": "small_airport", + "name": "Twin Lakes Airport", + "latitude_deg": "44.894115", + "longitude_deg": "-84.297818", + "elevation_ft": "1275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lewiston", + "scheduled_service": "no", + "local_code": "MI55", + "keywords": "0MI8" + }, + { + "id": "7328", + "ident": "0MI9", + "type": "heliport", + "name": "Henry Ford Hospital Heliport", + "latitude_deg": "42.36750030517578", + "longitude_deg": "-83.08439636230469", + "elevation_ft": "633", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Detroit", + "scheduled_service": "no", + "gps_code": "0MI9", + "local_code": "0MI9" + }, + { + "id": "7329", + "ident": "0MN0", + "type": "seaplane_base", + "name": "Winner's Landing Seaplane Base", + "latitude_deg": "44.79690170288086", + "longitude_deg": "-92.98410034179688", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "St Paul Park", + "scheduled_service": "no", + "gps_code": "0MN0", + "local_code": "0MN0" + }, + { + "id": "7330", + "ident": "0MN1", + "type": "small_airport", + "name": "Brinkman Airport", + "latitude_deg": "44.2625007629", + "longitude_deg": "-94.06970214840001", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "St. Peter", + "scheduled_service": "no", + "gps_code": "0MN1", + "local_code": "0MN1" + }, + { + "id": "7331", + "ident": "0MN2", + "type": "seaplane_base", + "name": "Grindstone Lake Seaplane Base", + "latitude_deg": "46.13330078125", + "longitude_deg": "-93.00299835205078", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Sandstone", + "scheduled_service": "no", + "gps_code": "0MN2", + "local_code": "0MN2" + }, + { + "id": "7332", + "ident": "0MN3", + "type": "seaplane_base", + "name": "Lower Hay Lake Seaplane Base", + "latitude_deg": "46.677799224853516", + "longitude_deg": "-94.2925033569336", + "elevation_ft": "1230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Jenkins", + "scheduled_service": "no", + "gps_code": "0MN3", + "local_code": "0MN3" + }, + { + "id": "7333", + "ident": "0MN4", + "type": "seaplane_base", + "name": "Paul's Seaplane Base", + "latitude_deg": "46.47719955444336", + "longitude_deg": "-94.3031005859375", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Nisswa", + "scheduled_service": "no", + "gps_code": "0MN4", + "local_code": "0MN4" + }, + { + "id": "7334", + "ident": "0MN5", + "type": "closed", + "name": "Pankratz Airport", + "latitude_deg": "44.307201", + "longitude_deg": "-94.916901", + "elevation_ft": "1033", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Springfield", + "scheduled_service": "no", + "keywords": "0MN5" + }, + { + "id": "7335", + "ident": "0MN6", + "type": "small_airport", + "name": "Matson Field", + "latitude_deg": "43.662200927734375", + "longitude_deg": "-92.404296875", + "elevation_ft": "1365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Spring Valley", + "scheduled_service": "no", + "gps_code": "0MN6", + "local_code": "0MN6" + }, + { + "id": "7336", + "ident": "0MN7", + "type": "heliport", + "name": "Ely Bloomenson Community Hospital Heliport", + "latitude_deg": "47.89910125732422", + "longitude_deg": "-91.87300109863281", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Ely", + "scheduled_service": "no", + "gps_code": "0MN7", + "local_code": "0MN7" + }, + { + "id": "7337", + "ident": "0MN8", + "type": "closed", + "name": "Keller Airport", + "latitude_deg": "45.135799", + "longitude_deg": "-92.859398", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Stillwater", + "scheduled_service": "no", + "keywords": "0MN8" + }, + { + "id": "7338", + "ident": "0MN9", + "type": "heliport", + "name": "Triple H Heliport", + "latitude_deg": "45.31330108642578", + "longitude_deg": "-93.71759796142578", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "0MN9", + "local_code": "0MN9" + }, + { + "id": "7339", + "ident": "0MO0", + "type": "small_airport", + "name": "Ferros Ranch-Aero Airport", + "latitude_deg": "38.410301208496094", + "longitude_deg": "-93.8501968383789", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "0MO0", + "local_code": "0MO0" + }, + { + "id": "7340", + "ident": "0MO1", + "type": "small_airport", + "name": "Flying G Airport", + "latitude_deg": "38.544498443603516", + "longitude_deg": "-94.0947036743164", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Creighton", + "scheduled_service": "no", + "gps_code": "0MO1", + "local_code": "0MO1" + }, + { + "id": "7341", + "ident": "0MO2", + "type": "small_airport", + "name": "Short-N-Ruff Airport", + "latitude_deg": "37.78670120239258", + "longitude_deg": "-90.78009796142578", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Caledonia", + "scheduled_service": "no", + "gps_code": "0MO2", + "local_code": "0MO2" + }, + { + "id": "7342", + "ident": "0MO3", + "type": "closed", + "name": "Arvin Ranch Airport", + "latitude_deg": "38.4403", + "longitude_deg": "-94.5933", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Drexel", + "scheduled_service": "no", + "keywords": "0MO3" + }, + { + "id": "7343", + "ident": "0MO4", + "type": "heliport", + "name": "Bert Walter Berkowitz Heliport", + "latitude_deg": "39.08530044555664", + "longitude_deg": "-94.57379913330078", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kansas City", + "scheduled_service": "no", + "gps_code": "0MO4", + "local_code": "0MO4" + }, + { + "id": "7344", + "ident": "0MO5", + "type": "small_airport", + "name": "Joe D Lewis Airport", + "latitude_deg": "40.133399963378906", + "longitude_deg": "-92.1001968383789", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Edina", + "scheduled_service": "no", + "gps_code": "0MO5", + "local_code": "0MO5" + }, + { + "id": "7345", + "ident": "0MO6", + "type": "closed", + "name": "Hall Airport", + "latitude_deg": "40.116686", + "longitude_deg": "-92.266788", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hurdland", + "scheduled_service": "no", + "keywords": "0MO6, Edina" + }, + { + "id": "7346", + "ident": "0MO7", + "type": "heliport", + "name": "St Joseph Hospital West Heliport", + "latitude_deg": "38.80329895019531", + "longitude_deg": "-90.77629852294922", + "elevation_ft": "531", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lake Saint Louis", + "scheduled_service": "no", + "gps_code": "0MO7", + "local_code": "0MO7" + }, + { + "id": "7347", + "ident": "0MO8", + "type": "small_airport", + "name": "Sloan's Airport", + "latitude_deg": "39.14059829711914", + "longitude_deg": "-90.73680114746094", + "elevation_ft": "437", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Elsberry", + "scheduled_service": "no", + "gps_code": "0MO8", + "local_code": "0MO8" + }, + { + "id": "7348", + "ident": "0MO9", + "type": "heliport", + "name": "Emerson Heliport", + "latitude_deg": "38.72949981689453", + "longitude_deg": "-90.27839660644531", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Ferguson", + "scheduled_service": "no", + "gps_code": "0MO9", + "local_code": "0MO9" + }, + { + "id": "7349", + "ident": "0MS0", + "type": "small_airport", + "name": "Topton Air Estates Airport", + "latitude_deg": "32.474998474121094", + "longitude_deg": "-88.61669921875", + "elevation_ft": "453", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Meridian", + "scheduled_service": "no", + "gps_code": "0MS0", + "local_code": "0MS0" + }, + { + "id": "7350", + "ident": "0MS1", + "type": "small_airport", + "name": "Franklin Field", + "latitude_deg": "31.425199508666992", + "longitude_deg": "-90.90290069580078", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Meadville", + "scheduled_service": "no", + "gps_code": "0MS1", + "local_code": "0MS1" + }, + { + "id": "7351", + "ident": "0MS2", + "type": "small_airport", + "name": "Morgan Field", + "latitude_deg": "31.541799545288086", + "longitude_deg": "-89.3917007446289", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Seminary", + "scheduled_service": "no", + "gps_code": "0MS2", + "local_code": "0MS2" + }, + { + "id": "7352", + "ident": "0MS3", + "type": "heliport", + "name": "Baptist Memorial Hospital-North Ms Heliport", + "latitude_deg": "34.347801208496094", + "longitude_deg": "-89.51899719238281", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Oxford", + "scheduled_service": "no", + "gps_code": "0MS3", + "local_code": "0MS3" + }, + { + "id": "7353", + "ident": "0MS4", + "type": "heliport", + "name": "Sheriff's Courthouse Heliport", + "latitude_deg": "30.375999450683594", + "longitude_deg": "-89.08619689941406", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Gulfport", + "scheduled_service": "no", + "gps_code": "0MS4", + "local_code": "0MS4" + }, + { + "id": "7354", + "ident": "0MS5", + "type": "closed", + "name": "Lewis Air Service Airport", + "latitude_deg": "33.3918", + "longitude_deg": "-90.916801", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Leland", + "scheduled_service": "no", + "keywords": "0MS5" + }, + { + "id": "7355", + "ident": "0MS6", + "type": "heliport", + "name": "Levert Heliport", + "latitude_deg": "30.301300048828125", + "longitude_deg": "-89.2344970703125", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Pass Christian", + "scheduled_service": "no", + "gps_code": "0MS6", + "local_code": "0MS6" + }, + { + "id": "7356", + "ident": "0MS7", + "type": "closed", + "name": "Hale Field", + "latitude_deg": "34.342602", + "longitude_deg": "-89.143097", + "elevation_ft": "346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Pontotoc", + "scheduled_service": "no", + "keywords": "0MS7" + }, + { + "id": "7357", + "ident": "0MS8", + "type": "small_airport", + "name": "Catfish Point Airport", + "latitude_deg": "33.695352", + "longitude_deg": "-91.163484", + "elevation_ft": "154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Benoit", + "scheduled_service": "no", + "gps_code": "0MS8", + "local_code": "0MS8" + }, + { + "id": "7358", + "ident": "0MS9", + "type": "small_airport", + "name": "Shenandoah Valley Farms Airport", + "latitude_deg": "33.80070114135742", + "longitude_deg": "-89.02729797363281", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "0MS9", + "local_code": "0MS9" + }, + { + "id": "7359", + "ident": "0MT1", + "type": "small_airport", + "name": "Williams Field", + "latitude_deg": "47.497501373291016", + "longitude_deg": "-112.39099884033203", + "elevation_ft": "4070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Augusta", + "scheduled_service": "no", + "gps_code": "0MT1", + "local_code": "0MT1" + }, + { + "id": "7360", + "ident": "0MT2", + "type": "heliport", + "name": "Big Sandy Medical Center Heliport", + "latitude_deg": "48.1796989440918", + "longitude_deg": "-110.10900115966797", + "elevation_ft": "2750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Big Sandy", + "scheduled_service": "no", + "gps_code": "0MT2", + "local_code": "0MT2" + }, + { + "id": "7361", + "ident": "0MT3", + "type": "heliport", + "name": "Stock Farm Heliport", + "latitude_deg": "46.25080108642578", + "longitude_deg": "-114.06700134277344", + "elevation_ft": "3920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "0MT3", + "local_code": "0MT3" + }, + { + "id": "7362", + "ident": "0MT4", + "type": "small_airport", + "name": "Kimp Airport", + "latitude_deg": "46.27859878540039", + "longitude_deg": "-114.14099884033203", + "elevation_ft": "3510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "0MT4", + "local_code": "0MT4" + }, + { + "id": "7363", + "ident": "0MT5", + "type": "small_airport", + "name": "Cottonwood Airport", + "latitude_deg": "45.63420104980469", + "longitude_deg": "-108.8489990234375", + "elevation_ft": "3350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Laurel", + "scheduled_service": "no", + "gps_code": "0MT5", + "local_code": "0MT5" + }, + { + "id": "7364", + "ident": "0MT6", + "type": "small_airport", + "name": "Hanson Airport", + "latitude_deg": "48.037607", + "longitude_deg": "-114.674478", + "elevation_ft": "3900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "0MT6", + "local_code": "0MT6" + }, + { + "id": "7365", + "ident": "0MT7", + "type": "small_airport", + "name": "Pinehurst Ranch Airport", + "latitude_deg": "47.66080093383789", + "longitude_deg": "-115.40399932861328", + "elevation_ft": "2460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Thompson Falls", + "scheduled_service": "no", + "gps_code": "0MT7", + "local_code": "0MT7" + }, + { + "id": "7366", + "ident": "0MT8", + "type": "heliport", + "name": "Glacier Heli Tours Heliport", + "latitude_deg": "48.486698150634766", + "longitude_deg": "-113.99800109863281", + "elevation_ft": "3300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "West Glacier", + "scheduled_service": "no", + "gps_code": "0MT8", + "local_code": "0MT8" + }, + { + "id": "7367", + "ident": "0MT9", + "type": "small_airport", + "name": "Lone Hawk Airport", + "latitude_deg": "48.481172", + "longitude_deg": "-114.481659", + "elevation_ft": "3284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "White Fish", + "scheduled_service": "no", + "gps_code": "0MT9", + "local_code": "0MT9" + }, + { + "id": "7368", + "ident": "0MU0", + "type": "small_airport", + "name": "Eagle Field", + "latitude_deg": "37.23469924926758", + "longitude_deg": "-91.09359741210938", + "elevation_ft": "784", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Ellington", + "scheduled_service": "no", + "gps_code": "0MU0", + "local_code": "0MU0" + }, + { + "id": "7369", + "ident": "0MU1", + "type": "small_airport", + "name": "Sunderland Airport", + "latitude_deg": "37.246700286865234", + "longitude_deg": "-94.17389678955078", + "elevation_ft": "1027", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Avilla", + "scheduled_service": "no", + "gps_code": "0MU1", + "local_code": "0MU1" + }, + { + "id": "7370", + "ident": "0MU2", + "type": "heliport", + "name": "Christian Hospital Northeast Heliport", + "latitude_deg": "38.77692", + "longitude_deg": "-90.24151", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Saint Louis", + "scheduled_service": "no", + "gps_code": "0MU2", + "local_code": "0MU2" + }, + { + "id": "7371", + "ident": "0MU3", + "type": "heliport", + "name": "Hannibal Regional Hospital Heliport", + "latitude_deg": "39.7111", + "longitude_deg": "-91.451934", + "elevation_ft": "744", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hannibal", + "scheduled_service": "no", + "gps_code": "0MU3", + "local_code": "0MU3" + }, + { + "id": "7372", + "ident": "0MU4", + "type": "small_airport", + "name": "Slaughter Airport", + "latitude_deg": "39.6161003112793", + "longitude_deg": "-92.86689758300781", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Marceline", + "scheduled_service": "no", + "gps_code": "0MU4", + "local_code": "0MU4" + }, + { + "id": "7373", + "ident": "0MU5", + "type": "heliport", + "name": "Holden Heliport", + "latitude_deg": "38.71969985961914", + "longitude_deg": "-93.99440002441406", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Holden", + "scheduled_service": "no", + "gps_code": "0MU5", + "local_code": "0MU5" + }, + { + "id": "7374", + "ident": "0MU6", + "type": "heliport", + "name": "Bradbury-Rolf Memorial Heliport", + "latitude_deg": "39.073299407958984", + "longitude_deg": "-93.73590087890625", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Higginsville", + "scheduled_service": "no", + "gps_code": "0MU6", + "local_code": "0MU6" + }, + { + "id": "7375", + "ident": "0MU7", + "type": "small_airport", + "name": "Lambs Field", + "latitude_deg": "38.875", + "longitude_deg": "-94.13970184326172", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lone Jack", + "scheduled_service": "no", + "gps_code": "0MU7", + "local_code": "0MU7" + }, + { + "id": "7376", + "ident": "0MU8", + "type": "small_airport", + "name": "Prince STOLport", + "latitude_deg": "37.43870162963867", + "longitude_deg": "-89.75900268554688", + "elevation_ft": "582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Millersville", + "scheduled_service": "no", + "gps_code": "0MU8", + "local_code": "0MU8" + }, + { + "id": "334329", + "ident": "0MU9", + "type": "small_airport", + "name": "RPM Airport", + "latitude_deg": "37.337894", + "longitude_deg": "-93.164084", + "elevation_ft": "1282", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Fair Grove", + "scheduled_service": "no", + "gps_code": "0MU9", + "local_code": "0MU9" + }, + { + "id": "7377", + "ident": "0MY0", + "type": "heliport", + "name": "Kenyon Heliport", + "latitude_deg": "44.333900451660156", + "longitude_deg": "-92.94329833984375", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Kenyon", + "scheduled_service": "no", + "gps_code": "0MY0", + "local_code": "0MY0" + }, + { + "id": "7378", + "ident": "0MY1", + "type": "heliport", + "name": "Bozeman Deaconess Hospital Heliport", + "latitude_deg": "45.66999816894531", + "longitude_deg": "-111.01899719238281", + "elevation_ft": "4925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Bozeman", + "scheduled_service": "no", + "gps_code": "0MY1", + "local_code": "0MY1" + }, + { + "id": "7379", + "ident": "0N0", + "type": "small_airport", + "name": "Roosterville Airport", + "latitude_deg": "39.291099548339844", + "longitude_deg": "-94.44219970703125", + "elevation_ft": "1004", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Liberty", + "scheduled_service": "no", + "gps_code": "0N0", + "local_code": "0N0" + }, + { + "id": "7380", + "ident": "0N4", + "type": "small_airport", + "name": "Chandelle Airport", + "latitude_deg": "39.202301", + "longitude_deg": "-75.485497", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Dover", + "scheduled_service": "no", + "local_code": "0N4", + "keywords": "Chandelle Estates" + }, + { + "id": "7381", + "ident": "0N5", + "type": "heliport", + "name": "Deldot Helistop", + "latitude_deg": "39.148231", + "longitude_deg": "-75.503451", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Dover", + "scheduled_service": "no", + "gps_code": "K0N5", + "local_code": "0N5" + }, + { + "id": "7382", + "ident": "0N6", + "type": "small_airport", + "name": "Albanna Aviation Airport", + "latitude_deg": "39.012602", + "longitude_deg": "-75.533501", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Felton", + "scheduled_service": "no", + "local_code": "0N6", + "wikipedia_link": "https://web.archive.org/web/20170306030610/https://en.wikipedia.org/wiki/Henderson_Aviation_Airport", + "keywords": "Henderson Aviation" + }, + { + "id": "7383", + "ident": "0NA1", + "type": "small_airport", + "name": "Goerger Airport", + "latitude_deg": "46.24549865722656", + "longitude_deg": "-97.03759765625", + "elevation_ft": "1045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Barney", + "scheduled_service": "no", + "gps_code": "0NA1", + "local_code": "0NA1" + }, + { + "id": "7384", + "ident": "0NA5", + "type": "small_airport", + "name": "Sorlie Airport", + "latitude_deg": "48.0010986328125", + "longitude_deg": "-99.56289672851562", + "elevation_ft": "1580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Maddock", + "scheduled_service": "no", + "gps_code": "0NA5", + "local_code": "0NA5" + }, + { + "id": "7385", + "ident": "0NA9", + "type": "small_airport", + "name": "Boyd's Turf Airport", + "latitude_deg": "46.75", + "longitude_deg": "-103.8010025024414", + "elevation_ft": "2750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Golva", + "scheduled_service": "no", + "gps_code": "0NA9", + "local_code": "0NA9" + }, + { + "id": "7386", + "ident": "0NC0", + "type": "heliport", + "name": "Wayne Memorial Hospital Inc. Heliport", + "latitude_deg": "35.398799896240234", + "longitude_deg": "-77.94969940185547", + "elevation_ft": "106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Goldsboro", + "scheduled_service": "no", + "gps_code": "0NC0", + "local_code": "0NC0" + }, + { + "id": "7387", + "ident": "0NC1", + "type": "closed", + "name": "Bearwallow Farm Airport", + "latitude_deg": "35.4571", + "longitude_deg": "-82.375397", + "elevation_ft": "3608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hendersonville", + "scheduled_service": "no", + "keywords": "0NC1" + }, + { + "id": "7388", + "ident": "0NC2", + "type": "heliport", + "name": "Moore Regional Hospital Heliport", + "latitude_deg": "35.204973", + "longitude_deg": "-79.458234", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Pinehurst", + "scheduled_service": "no", + "gps_code": "0NC2", + "local_code": "0NC2" + }, + { + "id": "7389", + "ident": "0NC3", + "type": "heliport", + "name": "Washington County Hospital Heliport", + "latitude_deg": "35.87519836425781", + "longitude_deg": "-76.69969940185547", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "0NC3", + "local_code": "0NC3" + }, + { + "id": "7390", + "ident": "0NC4", + "type": "heliport", + "name": "Wake Medical Center Heliport", + "latitude_deg": "35.786800384521484", + "longitude_deg": "-78.58580017089844", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Raleigh", + "scheduled_service": "no", + "gps_code": "0NC4", + "local_code": "0NC4" + }, + { + "id": "7391", + "ident": "0NC5", + "type": "heliport", + "name": "Nash General Hospital Heliport", + "latitude_deg": "35.91889953613281", + "longitude_deg": "-77.78919982910156", + "elevation_ft": "156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Rocky Mount", + "scheduled_service": "no", + "gps_code": "0NC5", + "local_code": "0NC5" + }, + { + "id": "7392", + "ident": "0NC6", + "type": "heliport", + "name": "Our Community Hospital Heliport", + "latitude_deg": "36.13130187988281", + "longitude_deg": "-77.41889953613281", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Scotland Neck", + "scheduled_service": "no", + "gps_code": "0NC6", + "local_code": "0NC6" + }, + { + "id": "7393", + "ident": "0NC7", + "type": "small_airport", + "name": "Lindsay Airport", + "latitude_deg": "36.36481", + "longitude_deg": "-79.99614", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "0NC7", + "local_code": "0NC7" + }, + { + "id": "7394", + "ident": "0NC8", + "type": "small_airport", + "name": "Flying S Ranch Airport", + "latitude_deg": "35.755699", + "longitude_deg": "-80.735298", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "0NC8", + "local_code": "0NC8", + "keywords": "Double Creek Ranch" + }, + { + "id": "7395", + "ident": "0NC9", + "type": "heliport", + "name": "Maria Parham Health DLP Affiliate Heliport", + "latitude_deg": "36.3307", + "longitude_deg": "-78.449699", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Henderson", + "scheduled_service": "no", + "gps_code": "0NC9", + "local_code": "0NC9", + "keywords": "Maria Parham Hospital" + }, + { + "id": "7396", + "ident": "0ND0", + "type": "small_airport", + "name": "Gilbertson Field", + "latitude_deg": "47.92919921875", + "longitude_deg": "-99.40039825439453", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Flora", + "scheduled_service": "no", + "gps_code": "0ND0", + "local_code": "0ND0" + }, + { + "id": "7397", + "ident": "0ND6", + "type": "small_airport", + "name": "Schumacher Strip", + "latitude_deg": "46.05500030517578", + "longitude_deg": "-99.91709899902344", + "elevation_ft": "2020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Hague", + "scheduled_service": "no", + "gps_code": "0ND6", + "local_code": "0ND6" + }, + { + "id": "7398", + "ident": "0ND7", + "type": "small_airport", + "name": "Saville Private Airport", + "latitude_deg": "46.465301513671875", + "longitude_deg": "-100.1050033569336", + "elevation_ft": "1961", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Hazelton", + "scheduled_service": "no", + "gps_code": "0ND7", + "local_code": "0ND7" + }, + { + "id": "7399", + "ident": "0NE0", + "type": "small_airport", + "name": "Merrihew Airport", + "latitude_deg": "41.849998474121094", + "longitude_deg": "-101.94999694824219", + "elevation_ft": "3815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Ashby", + "scheduled_service": "no", + "gps_code": "0NE0", + "local_code": "0NE0" + }, + { + "id": "7400", + "ident": "0NE1", + "type": "small_airport", + "name": "Runner Landing Area Airport", + "latitude_deg": "42.40719985961914", + "longitude_deg": "-101.93199920654297", + "elevation_ft": "3760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Ashby", + "scheduled_service": "no", + "gps_code": "0NE1", + "local_code": "0NE1" + }, + { + "id": "7401", + "ident": "0NE2", + "type": "closed", + "name": "Merry Airport", + "latitude_deg": "41.8666", + "longitude_deg": "-101.917", + "elevation_ft": "3791", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Ashby", + "scheduled_service": "no", + "keywords": "0NE2" + }, + { + "id": "7402", + "ident": "0NE3", + "type": "heliport", + "name": "Syracuse Hospital Heliport", + "latitude_deg": "40.667198181152344", + "longitude_deg": "-96.1864013671875", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Syracuse", + "scheduled_service": "no", + "gps_code": "0NE3", + "local_code": "0NE3" + }, + { + "id": "7403", + "ident": "0NE4", + "type": "heliport", + "name": "Franklin County Memorial Hospital Heliport", + "latitude_deg": "40.097198486328125", + "longitude_deg": "-98.95040130615234", + "elevation_ft": "1950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "0NE4", + "local_code": "0NE4" + }, + { + "id": "7404", + "ident": "0NE5", + "type": "small_airport", + "name": "Newman Airport", + "latitude_deg": "41.02109909057617", + "longitude_deg": "-102.01799774169922", + "elevation_ft": "3525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Big Springs", + "scheduled_service": "no", + "gps_code": "0NE5", + "local_code": "0NE5" + }, + { + "id": "7405", + "ident": "0NE6", + "type": "small_airport", + "name": "Frager Field", + "latitude_deg": "40.43330001831055", + "longitude_deg": "-98.07060241699219", + "elevation_ft": "1765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "0NE6", + "local_code": "0NE6" + }, + { + "id": "324652", + "ident": "0NH7", + "type": "heliport", + "name": "Leinsing Heliport", + "latitude_deg": "43.151831", + "longitude_deg": "-70.846902", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Dover", + "scheduled_service": "no", + "gps_code": "0NH7", + "local_code": "0NH7", + "keywords": "2ME7" + }, + { + "id": "7406", + "ident": "0NJ0", + "type": "heliport", + "name": "Atlantic City Medical Center Heliport", + "latitude_deg": "39.3589702498", + "longitude_deg": "-74.4346717", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Atlantic City", + "scheduled_service": "no", + "gps_code": "0NJ0", + "local_code": "0NJ0" + }, + { + "id": "7407", + "ident": "0NJ1", + "type": "heliport", + "name": "Berkeley Township Police Heliport", + "latitude_deg": "39.90729904174805", + "longitude_deg": "-74.23490142822266", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bayville", + "scheduled_service": "no", + "gps_code": "0NJ1", + "local_code": "0NJ1" + }, + { + "id": "7408", + "ident": "0NJ2", + "type": "heliport", + "name": "Ballymere Heliport", + "latitude_deg": "40.752899169921875", + "longitude_deg": "-74.43990325927734", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Morristown", + "scheduled_service": "no", + "gps_code": "0NJ2", + "local_code": "0NJ2" + }, + { + "id": "7409", + "ident": "0NJ3", + "type": "heliport", + "name": "Mount Holly Heliport", + "latitude_deg": "39.966800689697266", + "longitude_deg": "-74.79959869384766", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Mount Holly", + "scheduled_service": "no", + "gps_code": "0NJ3", + "local_code": "0NJ3" + }, + { + "id": "7410", + "ident": "0NJ4", + "type": "heliport", + "name": "Weichert Headquarters Heliport", + "latitude_deg": "40.94070053100586", + "longitude_deg": "-74.46150207519531", + "elevation_ft": "103", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Morris Plains", + "scheduled_service": "no", + "gps_code": "0NJ4", + "local_code": "0NJ4" + }, + { + "id": "7411", + "ident": "0NJ5", + "type": "small_airport", + "name": "Fla-Net Airport", + "latitude_deg": "40.88589859008789", + "longitude_deg": "-74.70570373535156", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Netcong", + "scheduled_service": "no", + "gps_code": "0NJ5", + "local_code": "0NJ5" + }, + { + "id": "7412", + "ident": "0NJ6", + "type": "small_airport", + "name": "Dix Field", + "latitude_deg": "39.31679916381836", + "longitude_deg": "-74.63289642333984", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Linwood", + "scheduled_service": "no", + "gps_code": "0NJ6", + "local_code": "0NJ6" + }, + { + "id": "7413", + "ident": "0NJ7", + "type": "heliport", + "name": "Essex Generating Station Heliport", + "latitude_deg": "40.737818", + "longitude_deg": "-74.118655", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Newark", + "scheduled_service": "no", + "gps_code": "0NJ7", + "local_code": "0NJ7" + }, + { + "id": "7414", + "ident": "0NJ8", + "type": "heliport", + "name": "Port Newark Helistop", + "latitude_deg": "40.702301025390625", + "longitude_deg": "-74.15070343017578", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Newark", + "scheduled_service": "no", + "gps_code": "0NJ8", + "local_code": "0NJ8" + }, + { + "id": "7415", + "ident": "0NJ9", + "type": "heliport", + "name": "Jersey Tpke New Brunswick Helistop", + "latitude_deg": "40.477298736572266", + "longitude_deg": "-74.40789794921875", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "New Brunswick", + "scheduled_service": "no", + "gps_code": "0NJ9", + "local_code": "0NJ9" + }, + { + "id": "7416", + "ident": "0NK0", + "type": "small_airport", + "name": "Berdick Field", + "latitude_deg": "42.33399963378906", + "longitude_deg": "-78.79090118408203", + "elevation_ft": "1690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Cattaraugus", + "scheduled_service": "no", + "gps_code": "0NK0", + "local_code": "0NK0" + }, + { + "id": "7417", + "ident": "0NK1", + "type": "small_airport", + "name": "Spring Brook Airport", + "latitude_deg": "43.361698150634766", + "longitude_deg": "-76.22019958496094", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Central Square", + "scheduled_service": "no", + "gps_code": "0NK1", + "local_code": "0NK1" + }, + { + "id": "7418", + "ident": "0NK2", + "type": "small_airport", + "name": "Westwind Farm Airport", + "latitude_deg": "42.9833984375", + "longitude_deg": "-74.01619720458984", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Charlton", + "scheduled_service": "no", + "gps_code": "0NK2", + "local_code": "0NK2" + }, + { + "id": "7419", + "ident": "0NK3", + "type": "small_airport", + "name": "Seven Gullies Airport", + "latitude_deg": "42.695653", + "longitude_deg": "-77.792451", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Groveland", + "scheduled_service": "no", + "gps_code": "0NK3", + "local_code": "0NK3" + }, + { + "id": "7420", + "ident": "0NK4", + "type": "heliport", + "name": "Nassau University Medical Center Heliport", + "latitude_deg": "40.726482", + "longitude_deg": "-73.552773", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hempstead", + "scheduled_service": "no", + "gps_code": "0NK4", + "local_code": "0NK4" + }, + { + "id": "7421", + "ident": "0NK5", + "type": "closed", + "name": "Mid-Hudson Helicopter Service Heliport", + "latitude_deg": "41.606201", + "longitude_deg": "-73.827599", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hopewell Junction", + "scheduled_service": "no", + "keywords": "0NK5" + }, + { + "id": "7422", + "ident": "0NK6", + "type": "small_airport", + "name": "Lapeer Flyer Airport", + "latitude_deg": "42.43840026855469", + "longitude_deg": "-76.08879852294922", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Marathon", + "scheduled_service": "no", + "gps_code": "0NK6", + "local_code": "0NK6" + }, + { + "id": "7423", + "ident": "0NK7", + "type": "heliport", + "name": "King Street Heliport", + "latitude_deg": "41.10279", + "longitude_deg": "-73.725087", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Armonk", + "scheduled_service": "no", + "gps_code": "0NK7", + "local_code": "0NK7", + "keywords": "IBM King Street" + }, + { + "id": "7424", + "ident": "0NK8", + "type": "closed", + "name": "Rocky Reef Farm Airport", + "latitude_deg": "41.920898", + "longitude_deg": "-73.670403", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Attlebury", + "scheduled_service": "no", + "keywords": "0NK8" + }, + { + "id": "7425", + "ident": "0NK9", + "type": "closed", + "name": "Lakeview Airport", + "latitude_deg": "43.009449", + "longitude_deg": "-75.826006", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Chittenango", + "scheduled_service": "no", + "keywords": "0NK9" + }, + { + "id": "7426", + "ident": "0NM0", + "type": "small_airport", + "name": "Columbus Airport", + "latitude_deg": "31.823898", + "longitude_deg": "-107.629924", + "elevation_ft": "4024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "0NM0", + "local_code": "0NM0" + }, + { + "id": "7427", + "ident": "0NM7", + "type": "small_airport", + "name": "Negrito Airstrip", + "latitude_deg": "33.527901", + "longitude_deg": "-108.541001", + "elevation_ft": "8143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Reserve", + "scheduled_service": "no", + "gps_code": "0NM7", + "local_code": "0NM7" + }, + { + "id": "7428", + "ident": "0NV1", + "type": "heliport", + "name": "Summerlin Medical Center Heliport", + "latitude_deg": "36.18192", + "longitude_deg": "-115.31647", + "elevation_ft": "2745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "gps_code": "0NV1", + "local_code": "0NV1" + }, + { + "id": "7429", + "ident": "0NY0", + "type": "small_airport", + "name": "Bennetts Airport", + "latitude_deg": "43.692973", + "longitude_deg": "-73.978013", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "North Creek", + "scheduled_service": "no", + "gps_code": "0NY0", + "local_code": "0NY0" + }, + { + "id": "7430", + "ident": "0NY1", + "type": "small_airport", + "name": "Russell Field", + "latitude_deg": "43.139198303222656", + "longitude_deg": "-73.6531982421875", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Northumberland", + "scheduled_service": "no", + "gps_code": "0NY1", + "local_code": "0NY1" + }, + { + "id": "346774", + "ident": "0NY2", + "type": "heliport", + "name": "Amar Heliport", + "latitude_deg": "41.231009", + "longitude_deg": "-74.047353", + "elevation_ft": "507", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Stony Point", + "scheduled_service": "no", + "gps_code": "0NY2", + "local_code": "0NY2" + }, + { + "id": "7431", + "ident": "0NY3", + "type": "small_airport", + "name": "Kermizian Airport", + "latitude_deg": "43.31399917602539", + "longitude_deg": "-74.93209838867188", + "elevation_ft": "1440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Ohio", + "scheduled_service": "no", + "gps_code": "0NY3", + "local_code": "0NY3" + }, + { + "id": "347051", + "ident": "0NY4", + "type": "heliport", + "name": "Bridgeview Heliport", + "latitude_deg": "41.982698", + "longitude_deg": "-73.963206", + "elevation_ft": "133", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Kingston", + "scheduled_service": "no", + "gps_code": "0NY4", + "local_code": "0NY4" + }, + { + "id": "7432", + "ident": "0NY5", + "type": "closed", + "name": "State Police Troop D Heliport", + "latitude_deg": "43.07657", + "longitude_deg": "-75.64873", + "elevation_ft": "507", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Oneida", + "scheduled_service": "no", + "keywords": "0NY5" + }, + { + "id": "7433", + "ident": "0NY6", + "type": "heliport", + "name": "New York State Police Troop E Zone 2 Auburn Heliport", + "latitude_deg": "42.928843", + "longitude_deg": "-76.615734", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "0NY6", + "local_code": "0NY6" + }, + { + "id": "7434", + "ident": "0NY7", + "type": "small_airport", + "name": "Murphys Landing Strip", + "latitude_deg": "43.026623", + "longitude_deg": "-74.177055", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Amsterdam", + "scheduled_service": "no", + "gps_code": "0NY7", + "local_code": "0NY7" + }, + { + "id": "7435", + "ident": "0NY8", + "type": "small_airport", + "name": "Wenskoski Field", + "latitude_deg": "42.99729919433594", + "longitude_deg": "-74.24539947509766", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Perth", + "scheduled_service": "no", + "gps_code": "0NY8", + "local_code": "0NY8" + }, + { + "id": "7436", + "ident": "0O0", + "type": "seaplane_base", + "name": "San Luis Reservoir Seaplane Base", + "latitude_deg": "37.05830001831055", + "longitude_deg": "-121.1259994506836", + "elevation_ft": "544", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Banos", + "scheduled_service": "no", + "gps_code": "0O0", + "local_code": "0O0" + }, + { + "id": "7437", + "ident": "0O4", + "type": "small_airport", + "name": "Corning Municipal Airport", + "latitude_deg": "39.943599700927734", + "longitude_deg": "-122.1709976196289", + "elevation_ft": "292", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Corning", + "scheduled_service": "no", + "gps_code": "0O4", + "local_code": "0O4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Corning_Municipal_Airport_(California)" + }, + { + "id": "7438", + "ident": "0O9", + "type": "small_airport", + "name": "Ward Field", + "latitude_deg": "41.845699310302734", + "longitude_deg": "-123.98500061035156", + "elevation_ft": "356", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Gasquet", + "scheduled_service": "no", + "gps_code": "0O9", + "local_code": "0O9" + }, + { + "id": "334336", + "ident": "0OA2", + "type": "heliport", + "name": "Cleveland Clinic, Medina Hospital Heliport", + "latitude_deg": "41.137029", + "longitude_deg": "-81.836745", + "elevation_ft": "983", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Medina", + "scheduled_service": "no", + "gps_code": "0OA2", + "local_code": "0OA2" + }, + { + "id": "7439", + "ident": "0OH1", + "type": "heliport", + "name": "Cirino Heliport", + "latitude_deg": "41.44390106201172", + "longitude_deg": "-81.32759857177734", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Chagrin Falls", + "scheduled_service": "no", + "gps_code": "0OH1", + "local_code": "0OH1" + }, + { + "id": "7440", + "ident": "0OH2", + "type": "closed", + "name": "Jenkins Field", + "latitude_deg": "39.970604", + "longitude_deg": "-83.911598", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "North Hampton", + "scheduled_service": "no", + "keywords": "0OH2" + }, + { + "id": "7441", + "ident": "0OH3", + "type": "heliport", + "name": "Hamilton County Sheriff's Patrol Heliport", + "latitude_deg": "39.27920150756836", + "longitude_deg": "-84.564697265625", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Forest Park", + "scheduled_service": "no", + "gps_code": "0OH3", + "local_code": "0OH3" + }, + { + "id": "322182", + "ident": "0OH4", + "type": "heliport", + "name": "Upper Valley Medical Center Heliport", + "latitude_deg": "40.085621", + "longitude_deg": "-84.228562", + "elevation_ft": "867", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "0OH4", + "local_code": "0OH4" + }, + { + "id": "7442", + "ident": "0OH6", + "type": "small_airport", + "name": "Fry Field", + "latitude_deg": "39.60060119628906", + "longitude_deg": "-84.01969909667969", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Spring Valley", + "scheduled_service": "no", + "gps_code": "0OH6", + "local_code": "0OH6" + }, + { + "id": "7443", + "ident": "0OH7", + "type": "small_airport", + "name": "Apple Airport", + "latitude_deg": "40.152721", + "longitude_deg": "-84.173355", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Piqua", + "scheduled_service": "no", + "gps_code": "0OH7", + "local_code": "0OH7" + }, + { + "id": "7444", + "ident": "0OH8", + "type": "small_airport", + "name": "Fry Airport", + "latitude_deg": "40.18840026855469", + "longitude_deg": "-84.256103515625", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Piqua", + "scheduled_service": "no", + "gps_code": "0OH8", + "local_code": "0OH8" + }, + { + "id": "7445", + "ident": "0OH9", + "type": "closed", + "name": "Parknavy Airport", + "latitude_deg": "40.0717", + "longitude_deg": "-83.229897", + "elevation_ft": "943", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Plain City", + "scheduled_service": "no", + "keywords": "0OH9, STOLport" + }, + { + "id": "7446", + "ident": "0OI0", + "type": "heliport", + "name": "Foltz Heliport", + "latitude_deg": "40.73590087890625", + "longitude_deg": "-81.2468032836914", + "elevation_ft": "1012", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "East Canton", + "scheduled_service": "no", + "gps_code": "0OI0", + "local_code": "0OI0" + }, + { + "id": "7447", + "ident": "0OI1", + "type": "closed", + "name": "Autolite Heliport", + "latitude_deg": "41.179199", + "longitude_deg": "-83.415199", + "elevation_ft": "759", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Fostoria", + "scheduled_service": "no", + "keywords": "0OI1" + }, + { + "id": "7448", + "ident": "0OI2", + "type": "small_airport", + "name": "Unger Field", + "latitude_deg": "39.359798431396484", + "longitude_deg": "-83.4177017211914", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Greenfield", + "scheduled_service": "no", + "gps_code": "0OI2", + "local_code": "0OI2" + }, + { + "id": "7449", + "ident": "0OI3", + "type": "small_airport", + "name": "Galloway Airport", + "latitude_deg": "41.38209915161133", + "longitude_deg": "-82.71610260009766", + "elevation_ft": "643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Sandusky", + "scheduled_service": "no", + "gps_code": "0OI3", + "local_code": "0OI3" + }, + { + "id": "7450", + "ident": "0OI4", + "type": "closed", + "name": "Salt Box Airport", + "latitude_deg": "41.324265", + "longitude_deg": "-81.159309", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Hiram", + "scheduled_service": "no", + "keywords": "0OI4" + }, + { + "id": "7451", + "ident": "0OI6", + "type": "small_airport", + "name": "Victor's Landing Airport", + "latitude_deg": "41.83810043334961", + "longitude_deg": "-80.6436996459961", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Kingsville", + "scheduled_service": "no", + "gps_code": "0OI6", + "local_code": "0OI6" + }, + { + "id": "7452", + "ident": "0OI9", + "type": "small_airport", + "name": "Hidden Quarry Airport", + "latitude_deg": "38.894500732421875", + "longitude_deg": "-83.1135025024414", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lucasville", + "scheduled_service": "no", + "gps_code": "0OI9", + "local_code": "0OI9" + }, + { + "id": "7453", + "ident": "0OK0", + "type": "closed", + "name": "Edmond Airport", + "latitude_deg": "35.683399", + "longitude_deg": "-97.433601", + "elevation_ft": "1169", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Edmond", + "scheduled_service": "no", + "keywords": "0OK0" + }, + { + "id": "7454", + "ident": "0OK1", + "type": "small_airport", + "name": "Mckey Airport", + "latitude_deg": "34.65700149536133", + "longitude_deg": "-97.40170288085938", + "elevation_ft": "1056", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Elmore City", + "scheduled_service": "no", + "gps_code": "0OK1", + "local_code": "0OK1" + }, + { + "id": "7455", + "ident": "0OK2", + "type": "closed", + "name": "Parkview Hospital Heliport", + "latitude_deg": "35.5298", + "longitude_deg": "-97.983902", + "elevation_ft": "1349", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "El Reno", + "scheduled_service": "no", + "keywords": "0OK2" + }, + { + "id": "7456", + "ident": "0OK3", + "type": "small_airport", + "name": "McKinley Ranch Airport", + "latitude_deg": "35.614465", + "longitude_deg": "-98.534403", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Geary", + "scheduled_service": "no", + "gps_code": "0OK3", + "local_code": "0OK3", + "keywords": "Groendyke Ranch" + }, + { + "id": "7457", + "ident": "0OK4", + "type": "small_airport", + "name": "Rock Creek Farm Airport", + "latitude_deg": "34.66059875488281", + "longitude_deg": "-96.25360107421875", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Coal Gate", + "scheduled_service": "no", + "gps_code": "0OK4", + "local_code": "0OK4" + }, + { + "id": "7458", + "ident": "0OK5", + "type": "small_airport", + "name": "Chappell Airport", + "latitude_deg": "35.88890075683594", + "longitude_deg": "-97.40029907226562", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Guthrie", + "scheduled_service": "no", + "gps_code": "0OK5", + "local_code": "0OK5" + }, + { + "id": "7459", + "ident": "0OK6", + "type": "small_airport", + "name": "Ellis/Harvey Airport", + "latitude_deg": "35.801700592041016", + "longitude_deg": "-97.38610076904297", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Guthrie", + "scheduled_service": "no", + "gps_code": "0OK6", + "local_code": "0OK6" + }, + { + "id": "7460", + "ident": "0OK7", + "type": "heliport", + "name": "Shattuck Hospital Heliport", + "latitude_deg": "36.25", + "longitude_deg": "-99.87539672851562", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Shattuck", + "scheduled_service": "no", + "gps_code": "0OK7", + "local_code": "0OK7" + }, + { + "id": "7461", + "ident": "0OK8", + "type": "closed", + "name": "Cade's Airport", + "latitude_deg": "36.2925", + "longitude_deg": "-97.593102", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Covington", + "scheduled_service": "no", + "keywords": "0OK8" + }, + { + "id": "7462", + "ident": "0OK9", + "type": "small_airport", + "name": "Crystal Airport", + "latitude_deg": "36.213401794433594", + "longitude_deg": "-96.63700103759766", + "elevation_ft": "1016", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Jennings", + "scheduled_service": "no", + "gps_code": "0OK9", + "local_code": "0OK9" + }, + { + "id": "7463", + "ident": "0OR0", + "type": "heliport", + "name": "Providence Hospital Heliport", + "latitude_deg": "42.3386993408", + "longitude_deg": "-122.861999512", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Medford", + "scheduled_service": "no", + "gps_code": "0OR0", + "local_code": "0OR0", + "wikipedia_link": "https://en.wikipedia.org/wiki/Providence_Hospital_Heliport" + }, + { + "id": "7465", + "ident": "0OR2", + "type": "heliport", + "name": "Hendershots Heliport", + "latitude_deg": "42.133201599121094", + "longitude_deg": "-123.45099639892578", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Merlin", + "scheduled_service": "no", + "gps_code": "0OR2", + "local_code": "0OR2" + }, + { + "id": "7466", + "ident": "0OR3", + "type": "small_airport", + "name": "Long Ranch Airport", + "latitude_deg": "42.01900100708008", + "longitude_deg": "-121.7040023803711", + "elevation_ft": "4090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Merrill", + "scheduled_service": "no", + "gps_code": "0OR3", + "local_code": "0OR3" + }, + { + "id": "7467", + "ident": "0OR4", + "type": "heliport", + "name": "Round Butte Heliport", + "latitude_deg": "44.61650085449219", + "longitude_deg": "-121.26799774169922", + "elevation_ft": "2125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Metolius", + "scheduled_service": "no", + "gps_code": "0OR4", + "local_code": "0OR4" + }, + { + "id": "7468", + "ident": "0OR5", + "type": "closed", + "name": "East Oregon Cattle Company Airport", + "latitude_deg": "42.505557", + "longitude_deg": "-122.863228", + "elevation_ft": "1345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Eagle Point", + "scheduled_service": "no", + "gps_code": "0OR5", + "local_code": "0OR5" + }, + { + "id": "7469", + "ident": "0OR6", + "type": "small_airport", + "name": "Rome Service Airport", + "latitude_deg": "42.834", + "longitude_deg": "-117.628998", + "elevation_ft": "3387", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Jordan Valley", + "scheduled_service": "no", + "gps_code": "0OR6", + "local_code": "0OR6" + }, + { + "id": "7470", + "ident": "0OR7", + "type": "small_airport", + "name": "Marr Field", + "latitude_deg": "44.854000091552734", + "longitude_deg": "-123.26399993896484", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Monmouth", + "scheduled_service": "no", + "gps_code": "0OR7", + "local_code": "0OR7" + }, + { + "id": "7471", + "ident": "0OR8", + "type": "small_airport", + "name": "Sutton on Rogue Airport", + "latitude_deg": "42.484798431396484", + "longitude_deg": "-122.86599731445312", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "White City", + "scheduled_service": "no", + "gps_code": "0OR8", + "local_code": "0OR8" + }, + { + "id": "7472", + "ident": "0OR9", + "type": "small_airport", + "name": "Hanel Field", + "latitude_deg": "45.59260177612305", + "longitude_deg": "-121.54900360107422", + "elevation_ft": "1626", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Mount Hood", + "scheduled_service": "no", + "gps_code": "0OR9", + "local_code": "0OR9" + }, + { + "id": "7473", + "ident": "0P0", + "type": "closed", + "name": "Valley Forge Bicentennial Heliport", + "latitude_deg": "40.121201", + "longitude_deg": "-75.405998", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Norristown", + "scheduled_service": "no", + "keywords": "0P0, PA06" + }, + { + "id": "7474", + "ident": "0P1", + "type": "small_airport", + "name": "Van Pak Airport", + "latitude_deg": "39.83219909667969", + "longitude_deg": "-99.5687026977539", + "elevation_ft": "2213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Prairie View", + "scheduled_service": "no", + "gps_code": "0P1", + "local_code": "0P1" + }, + { + "id": "7475", + "ident": "0P2", + "type": "small_airport", + "name": "Shoestring Aviation Airfield", + "latitude_deg": "39.795243", + "longitude_deg": "-76.647678", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Stewartstown", + "scheduled_service": "no", + "gps_code": "K0P2", + "local_code": "0P2" + }, + { + "id": "7476", + "ident": "0PA0", + "type": "small_airport", + "name": "Philadelphia Gliderport", + "latitude_deg": "40.331227", + "longitude_deg": "-75.248125", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hilltown", + "scheduled_service": "no", + "gps_code": "3PA2", + "local_code": "3PA2", + "home_link": "https://pgcsoaring.org/gliderport.cfm", + "keywords": "0PA0" + }, + { + "id": "7477", + "ident": "0PA1", + "type": "heliport", + "name": "Phoenix Technologies Heliport", + "latitude_deg": "40.11819839477539", + "longitude_deg": "-75.40129852294922", + "elevation_ft": "252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Norristown", + "scheduled_service": "no", + "gps_code": "0PA1", + "local_code": "0PA1" + }, + { + "id": "7478", + "ident": "0PA2", + "type": "small_airport", + "name": "Haunstein Ultralightport", + "latitude_deg": "40.31679916379999", + "longitude_deg": "-77.1247024536", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Shermans Dale", + "scheduled_service": "no", + "gps_code": "0PA2", + "local_code": "0PA2" + }, + { + "id": "7479", + "ident": "0PA3", + "type": "small_airport", + "name": "Robbins Farm Airport", + "latitude_deg": "41.747319", + "longitude_deg": "-76.760624", + "elevation_ft": "1207", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "0PA3", + "local_code": "0PA3" + }, + { + "id": "7480", + "ident": "0PA4", + "type": "small_airport", + "name": "Ecko Field", + "latitude_deg": "40.23759841918945", + "longitude_deg": "-76.72470092773438", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hummelstown", + "scheduled_service": "no", + "gps_code": "0PA4", + "local_code": "0PA4" + }, + { + "id": "7481", + "ident": "0PA5", + "type": "small_airport", + "name": "Fisher Airport", + "latitude_deg": "41.49449920654297", + "longitude_deg": "-79.83090209960938", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "0PA5", + "local_code": "0PA5" + }, + { + "id": "7482", + "ident": "0PA6", + "type": "small_airport", + "name": "Hostetler Airport", + "latitude_deg": "40.63090133666992", + "longitude_deg": "-77.85030364990234", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Huntingdon", + "scheduled_service": "no", + "gps_code": "0PA6", + "local_code": "0PA6" + }, + { + "id": "7483", + "ident": "0PA7", + "type": "closed", + "name": "Linvill Airport", + "latitude_deg": "39.884801", + "longitude_deg": "-75.414902", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Media", + "scheduled_service": "no", + "keywords": "0PA7" + }, + { + "id": "7484", + "ident": "0PA8", + "type": "heliport", + "name": "Geisinger Community Medical Center Heliport", + "latitude_deg": "41.399909", + "longitude_deg": "-75.646682", + "elevation_ft": "508", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Scranton", + "scheduled_service": "no", + "gps_code": "0PA8", + "local_code": "0PA8" + }, + { + "id": "7485", + "ident": "0PA9", + "type": "heliport", + "name": "Carson Heliport", + "latitude_deg": "40.33340072631836", + "longitude_deg": "-75.21630096435547", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Perkasie", + "scheduled_service": "no", + "gps_code": "0PA9", + "local_code": "0PA9" + }, + { + "id": "7486", + "ident": "0PN0", + "type": "small_airport", + "name": "Fletcher Airport", + "latitude_deg": "41.441875", + "longitude_deg": "-80.15537", + "elevation_ft": "1335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hadley", + "scheduled_service": "no", + "gps_code": "0PN0", + "local_code": "0PN0" + }, + { + "id": "7487", + "ident": "0PN1", + "type": "seaplane_base", + "name": "Pete's Water Landing Seaplane Base", + "latitude_deg": "40.69940185546875", + "longitude_deg": "-79.618896484375", + "elevation_ft": "757", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Freeport", + "scheduled_service": "no", + "gps_code": "0PN1", + "local_code": "0PN1" + }, + { + "id": "7488", + "ident": "0PN2", + "type": "small_airport", + "name": "Flying Acres Airport", + "latitude_deg": "41.07310104370117", + "longitude_deg": "-80.07029724121094", + "elevation_ft": "1247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Slippery Rock", + "scheduled_service": "no", + "gps_code": "0PN2", + "local_code": "0PN2" + }, + { + "id": "7489", + "ident": "0PN3", + "type": "heliport", + "name": "Wyeth-Ayerst Nr Heliport", + "latitude_deg": "40.15869903564453", + "longitude_deg": "-75.4634017944336", + "elevation_ft": "186", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Collegeville", + "scheduled_service": "no", + "gps_code": "0PN3", + "local_code": "0PN3" + }, + { + "id": "7490", + "ident": "0PN4", + "type": "small_airport", + "name": "Kitner Airport", + "latitude_deg": "40.4128990173", + "longitude_deg": "-77.24140167239999", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "New Bloomfield", + "scheduled_service": "no", + "gps_code": "0PN4", + "local_code": "0PN4" + }, + { + "id": "7491", + "ident": "0PN5", + "type": "small_airport", + "name": "Nichols Airport", + "latitude_deg": "41.77920150756836", + "longitude_deg": "-79.59839630126953", + "elevation_ft": "1761", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Spartansburg", + "scheduled_service": "no", + "gps_code": "0PN5", + "local_code": "0PN5" + }, + { + "id": "7492", + "ident": "0PN6", + "type": "small_airport", + "name": "Memmi Airport", + "latitude_deg": "40.16899871826172", + "longitude_deg": "-77.99250030517578", + "elevation_ft": "1138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Three Springs", + "scheduled_service": "no", + "gps_code": "0PN6", + "local_code": "0PN6" + }, + { + "id": "7493", + "ident": "0PN7", + "type": "small_airport", + "name": "Drillmore Acres Airport", + "latitude_deg": "40.128299713134766", + "longitude_deg": "-77.63140106201172", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Newburg", + "scheduled_service": "no", + "gps_code": "0PN7", + "local_code": "0PN7" + }, + { + "id": "7494", + "ident": "0PN8", + "type": "small_airport", + "name": "Shriver Airport", + "latitude_deg": "41.61669921875", + "longitude_deg": "-79.68309783935547", + "elevation_ft": "1560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Titusville", + "scheduled_service": "no", + "gps_code": "0PN8", + "local_code": "0PN8" + }, + { + "id": "7495", + "ident": "0PN9", + "type": "small_airport", + "name": "Paul Personal Use Airport", + "latitude_deg": "41.71950149536133", + "longitude_deg": "-79.67780303955078", + "elevation_ft": "1645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Titusville", + "scheduled_service": "no", + "gps_code": "0PN9", + "local_code": "0PN9" + }, + { + "id": "7496", + "ident": "0PS0", + "type": "small_airport", + "name": "Frederick Airpark", + "latitude_deg": "41.37089920043945", + "longitude_deg": "-79.3416976928711", + "elevation_ft": "1560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tylersburg", + "scheduled_service": "no", + "gps_code": "0PS0", + "local_code": "0PS0" + }, + { + "id": "7497", + "ident": "0PS1", + "type": "heliport", + "name": "Mc Crory Stores Heliport", + "latitude_deg": "39.981498718299996", + "longitude_deg": "-76.67140197750001", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "York", + "scheduled_service": "no", + "gps_code": "0PS1", + "local_code": "0PS1" + }, + { + "id": "7498", + "ident": "0PS2", + "type": "heliport", + "name": "Marian Heliport", + "latitude_deg": "40.989498138427734", + "longitude_deg": "-75.75129699707031", + "elevation_ft": "1285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Weatherly", + "scheduled_service": "no", + "gps_code": "0PS2", + "local_code": "0PS2" + }, + { + "id": "7499", + "ident": "0PS3", + "type": "small_airport", + "name": "Carsonville Airport", + "latitude_deg": "40.49039840698242", + "longitude_deg": "-76.7666015625", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Carsonville", + "scheduled_service": "no", + "gps_code": "0PS3", + "local_code": "0PS3" + }, + { + "id": "7500", + "ident": "0PS4", + "type": "small_airport", + "name": "Old Orchard Airport", + "latitude_deg": "41.009746", + "longitude_deg": "-78.561838", + "elevation_ft": "1980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Curwensville", + "scheduled_service": "no", + "gps_code": "0PS4", + "local_code": "0PS4" + }, + { + "id": "7501", + "ident": "0PS5", + "type": "heliport", + "name": "Used Parts Heliport", + "latitude_deg": "40.87929916381836", + "longitude_deg": "-75.19270324707031", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "East Bangor", + "scheduled_service": "no", + "gps_code": "0PS5", + "local_code": "0PS5" + }, + { + "id": "7502", + "ident": "0PS6", + "type": "heliport", + "name": "Herbst Heliport", + "latitude_deg": "39.949501037597656", + "longitude_deg": "-76.55329895019531", + "elevation_ft": "485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "East Prospect", + "scheduled_service": "no", + "gps_code": "0PS6", + "local_code": "0PS6" + }, + { + "id": "7503", + "ident": "0PS7", + "type": "small_airport", + "name": "Harman Airport", + "latitude_deg": "40.522300720214844", + "longitude_deg": "-76.84549713134766", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Elizabethville", + "scheduled_service": "no", + "gps_code": "0PS7", + "local_code": "0PS7" + }, + { + "id": "7504", + "ident": "0PS8", + "type": "heliport", + "name": "Bayfront Garage Heliport", + "latitude_deg": "42.132598876953125", + "longitude_deg": "-80.08619689941406", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Erie", + "scheduled_service": "no", + "gps_code": "0PS8", + "local_code": "0PS8" + }, + { + "id": "7505", + "ident": "0PS9", + "type": "heliport", + "name": "Jefferson Health Bucks County Campus Heliport", + "latitude_deg": "40.182734", + "longitude_deg": "-74.868028", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Fairless Hills", + "scheduled_service": "no", + "gps_code": "0PS9", + "local_code": "0PS9", + "keywords": "Delaware Valley Medical Center" + }, + { + "id": "7506", + "ident": "0Q3", + "type": "small_airport", + "name": "Sonoma Valley Airport", + "latitude_deg": "38.2234992980957", + "longitude_deg": "-122.44999694824219", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Schellville/Sonoma", + "scheduled_service": "no", + "gps_code": "0Q3", + "local_code": "0Q3" + }, + { + "id": "7507", + "ident": "0Q4", + "type": "small_airport", + "name": "Selma Airport", + "latitude_deg": "36.581600189208984", + "longitude_deg": "-119.65799713134766", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Selma", + "scheduled_service": "no", + "gps_code": "0Q4", + "local_code": "0Q4" + }, + { + "id": "7508", + "ident": "0Q6", + "type": "closed", + "name": "Shingletown Airport", + "latitude_deg": "40.521955", + "longitude_deg": "-121.81705", + "elevation_ft": "3880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Shingletown", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shingletown_Airport", + "keywords": "0Q6" + }, + { + "id": "7509", + "ident": "0Q9", + "type": "small_airport", + "name": "Sonoma Skypark Airport", + "latitude_deg": "38.2577018737793", + "longitude_deg": "-122.43399810791016", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sonoma", + "scheduled_service": "no", + "gps_code": "0Q9", + "local_code": "0Q9" + }, + { + "id": "7510", + "ident": "0R2", + "type": "small_airport", + "name": "Lincoln Municipal Airport", + "latitude_deg": "38.403900146484375", + "longitude_deg": "-93.33300018310547", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "0R2", + "local_code": "0R2" + }, + { + "id": "7511", + "ident": "0R7", + "type": "small_airport", + "name": "The Red River Airport", + "latitude_deg": "31.990699768066406", + "longitude_deg": "-93.30740356445312", + "elevation_ft": "177", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Coushatta", + "scheduled_service": "no", + "gps_code": "0R7", + "local_code": "0R7" + }, + { + "id": "7512", + "ident": "0R9", + "type": "small_airport", + "name": "Plainville Airpark", + "latitude_deg": "39.1945", + "longitude_deg": "-99.303398", + "elevation_ft": "2182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Plainville", + "scheduled_service": "no", + "local_code": "0R9", + "keywords": "KS04" + }, + { + "id": "7513", + "ident": "0S1", + "type": "small_airport", + "name": "Meadow Creek USFS Airport", + "latitude_deg": "47.847956", + "longitude_deg": "-113.416758", + "elevation_ft": "3984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Hungry Horse", + "scheduled_service": "no", + "local_code": "0S1" + }, + { + "id": "7514", + "ident": "0S2", + "type": "closed", + "name": "Stockton Municipal Airport", + "latitude_deg": "39.377201", + "longitude_deg": "-99.295097", + "elevation_ft": "1973", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Stockton", + "scheduled_service": "no", + "keywords": "0S2, KS07" + }, + { + "id": "7515", + "ident": "0S5", + "type": "small_airport", + "name": "Nez Perce Municipal Airport", + "latitude_deg": "46.23740005493164", + "longitude_deg": "-116.24299621582031", + "elevation_ft": "3201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Nez Perce", + "scheduled_service": "no", + "gps_code": "0S5", + "local_code": "0S5" + }, + { + "id": "7516", + "ident": "0SD0", + "type": "small_airport", + "name": "Lenling Airport", + "latitude_deg": "45.42499923706055", + "longitude_deg": "-100.89199829101562", + "elevation_ft": "2142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Glencross", + "scheduled_service": "no", + "gps_code": "0SD0", + "local_code": "0SD0" + }, + { + "id": "7517", + "ident": "0SD1", + "type": "small_airport", + "name": "Lodi Airport", + "latitude_deg": "42.972198486328125", + "longitude_deg": "-96.9802017211914", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Wakonda", + "scheduled_service": "no", + "gps_code": "0SD1", + "local_code": "0SD1" + }, + { + "id": "7518", + "ident": "0SD2", + "type": "heliport", + "name": "Prairie Lakes West Heliport", + "latitude_deg": "44.91109848022461", + "longitude_deg": "-97.11949920654297", + "elevation_ft": "1799", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Watertown", + "scheduled_service": "no", + "gps_code": "0SD2", + "local_code": "0SD2" + }, + { + "id": "7519", + "ident": "0SD3", + "type": "small_airport", + "name": "Bledsoe Ranch Airport", + "latitude_deg": "45.26940155029297", + "longitude_deg": "-103.21700286865234", + "elevation_ft": "2872", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Hoover", + "scheduled_service": "no", + "gps_code": "0SD3", + "local_code": "0SD3" + }, + { + "id": "7520", + "ident": "0SD4", + "type": "heliport", + "name": "Brookview Manor Heliport", + "latitude_deg": "44.308101654052734", + "longitude_deg": "-96.76470184326172", + "elevation_ft": "1670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Brookings", + "scheduled_service": "no", + "gps_code": "0SD4", + "local_code": "0SD4" + }, + { + "id": "7521", + "ident": "0SD5", + "type": "heliport", + "name": "The Fort Heliport", + "latitude_deg": "43.806400299072266", + "longitude_deg": "-103.63700103759766", + "elevation_ft": "5800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Custer", + "scheduled_service": "no", + "gps_code": "0SD5", + "local_code": "0SD5" + }, + { + "id": "7522", + "ident": "0SD6", + "type": "small_airport", + "name": "Oasis Ranch Airport", + "latitude_deg": "44.28889846801758", + "longitude_deg": "-101.82599639892578", + "elevation_ft": "2580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Philip", + "scheduled_service": "no", + "gps_code": "0SD6", + "local_code": "0SD6" + }, + { + "id": "7523", + "ident": "0SD7", + "type": "small_airport", + "name": "Porch Ranch Airport", + "latitude_deg": "43.52439880371094", + "longitude_deg": "-101.73400115966797", + "elevation_ft": "2775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Wanblee", + "scheduled_service": "no", + "gps_code": "0SD7", + "local_code": "0SD7" + }, + { + "id": "7524", + "ident": "0SD8", + "type": "small_airport", + "name": "Juhnke Airport", + "latitude_deg": "43.782798767089844", + "longitude_deg": "-100.29299926757812", + "elevation_ft": "1900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Vivian", + "scheduled_service": "no", + "gps_code": "0SD8", + "local_code": "0SD8" + }, + { + "id": "7525", + "ident": "0SD9", + "type": "heliport", + "name": "Crazy Horse Heliport", + "latitude_deg": "43.82500076293945", + "longitude_deg": "-103.63600158691406", + "elevation_ft": "5900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Custer", + "scheduled_service": "no", + "gps_code": "0SD9", + "local_code": "0SD9" + }, + { + "id": "7526", + "ident": "0T3", + "type": "closed", + "name": "Ira Biffle Airfield", + "latitude_deg": "37.313901", + "longitude_deg": "-89.997299", + "elevation_ft": "421", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Marble Hill", + "scheduled_service": "no", + "keywords": "0T3, Twin City Airpark," + }, + { + "id": "7527", + "ident": "0T7", + "type": "closed", + "name": "Kittyhawk Airport", + "latitude_deg": "33.126202", + "longitude_deg": "-96.683601", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Allen", + "scheduled_service": "no", + "keywords": "0T7" + }, + { + "id": "7528", + "ident": "0TA0", + "type": "heliport", + "name": "HCA Houston Healthcare Mainland Heliport", + "latitude_deg": "29.39501", + "longitude_deg": "-94.986355", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Texas City", + "scheduled_service": "no", + "gps_code": "0TA0", + "local_code": "0TA0", + "keywords": "Mainland Regional Health Care System" + }, + { + "id": "7529", + "ident": "0TA1", + "type": "closed", + "name": "Buddy Harmel Airport", + "latitude_deg": "34.219501", + "longitude_deg": "-101.980003", + "elevation_ft": "3552", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Halfway", + "scheduled_service": "no", + "gps_code": "0TA1", + "local_code": "0TA1" + }, + { + "id": "7530", + "ident": "0TA2", + "type": "small_airport", + "name": "Smith Farms Airport", + "latitude_deg": "34.213702", + "longitude_deg": "-101.923342", + "elevation_ft": "3487", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Halfway", + "scheduled_service": "no", + "gps_code": "0TA2", + "local_code": "0TA2" + }, + { + "id": "7531", + "ident": "0TA3", + "type": "small_airport", + "name": "Tate Ranch Airport", + "latitude_deg": "30.30430030822754", + "longitude_deg": "-102.13800048828125", + "elevation_ft": "2650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dryden", + "scheduled_service": "no", + "gps_code": "0TA3", + "local_code": "0TA3" + }, + { + "id": "7532", + "ident": "0TA4", + "type": "small_airport", + "name": "Erco Field", + "latitude_deg": "32.49789810180664", + "longitude_deg": "-96.27050018310547", + "elevation_ft": "395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kaufman", + "scheduled_service": "no", + "gps_code": "0TA4", + "local_code": "0TA4" + }, + { + "id": "7533", + "ident": "0TA5", + "type": "heliport", + "name": "Metro Heli-Pad Heliport", + "latitude_deg": "29.614700317382812", + "longitude_deg": "-95.35489654541016", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "0TA5", + "local_code": "0TA5" + }, + { + "id": "7534", + "ident": "0TA6", + "type": "closed", + "name": "Arco Ingleside Shorebase Heliport", + "latitude_deg": "27.847799", + "longitude_deg": "-97.223", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ingleside", + "scheduled_service": "no", + "keywords": "0TA6" + }, + { + "id": "7535", + "ident": "0TA7", + "type": "small_airport", + "name": "Alta Vista Ranch Airport", + "latitude_deg": "30.153167", + "longitude_deg": "-103.89978", + "elevation_ft": "4702", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marfa", + "scheduled_service": "no", + "gps_code": "0TA7", + "local_code": "0TA7" + }, + { + "id": "7536", + "ident": "0TA8", + "type": "closed", + "name": "Womack Plantation Airport", + "latitude_deg": "33.848701", + "longitude_deg": "-95.407204", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paris", + "scheduled_service": "no", + "keywords": "0TA8" + }, + { + "id": "7537", + "ident": "0TA9", + "type": "heliport", + "name": "Houston Oil & Minerals Port Bolivar Nr 2 Heliport", + "latitude_deg": "29.39109992980957", + "longitude_deg": "-94.76409912109375", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port Bolivar", + "scheduled_service": "no", + "gps_code": "0TA9", + "local_code": "0TA9" + }, + { + "id": "7538", + "ident": "0TE0", + "type": "small_airport", + "name": "Robertson Ranch Airport", + "latitude_deg": "29.69300079345703", + "longitude_deg": "-101.16200256347656", + "elevation_ft": "1663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comstock", + "scheduled_service": "no", + "gps_code": "0TE0", + "local_code": "0TE0" + }, + { + "id": "7539", + "ident": "0TE1", + "type": "heliport", + "name": "Christus Spohn Hospital Memorial Heliport", + "latitude_deg": "27.780069", + "longitude_deg": "-97.414811", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no", + "gps_code": "0TE1", + "local_code": "0TE1" + }, + { + "id": "7540", + "ident": "0TE2", + "type": "heliport", + "name": "Bell Helicopter Hurst Heliport", + "latitude_deg": "32.80009841918945", + "longitude_deg": "-97.16699981689453", + "elevation_ft": "524", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hurst", + "scheduled_service": "no", + "gps_code": "0TE2", + "local_code": "0TE2" + }, + { + "id": "7541", + "ident": "0TE3", + "type": "closed", + "name": "Buzz Field", + "latitude_deg": "33.931752", + "longitude_deg": "-100.845681", + "elevation_ft": "2614", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Roaring Springs", + "scheduled_service": "no", + "keywords": "0TE3" + }, + { + "id": "7542", + "ident": "0TE4", + "type": "small_airport", + "name": "Hilltop Lakes Airport", + "latitude_deg": "31.08099937438965", + "longitude_deg": "-96.21520233154297", + "elevation_ft": "501", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hilltop Lakes", + "scheduled_service": "no", + "gps_code": "0TE4", + "local_code": "0TE4" + }, + { + "id": "7543", + "ident": "0TE5", + "type": "small_airport", + "name": "Santa Maria Ranch Airport", + "latitude_deg": "27.433799743652344", + "longitude_deg": "-99.18589782714844", + "elevation_ft": "516", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laredo", + "scheduled_service": "no", + "gps_code": "0TE5", + "local_code": "0TE5" + }, + { + "id": "7544", + "ident": "0TE6", + "type": "small_airport", + "name": "Gorman Airport", + "latitude_deg": "32.20429992675781", + "longitude_deg": "-98.66560363769531", + "elevation_ft": "1452", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gorman", + "scheduled_service": "no", + "gps_code": "0TE6", + "local_code": "0TE6" + }, + { + "id": "7545", + "ident": "0TE7", + "type": "small_airport", + "name": "LBJ Ranch Airport", + "latitude_deg": "30.251800537100003", + "longitude_deg": "-98.62249755859999", + "elevation_ft": "1515", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Johnson City", + "scheduled_service": "no", + "gps_code": "0TE7", + "iata_code": "JCY", + "local_code": "0TE7" + }, + { + "id": "7546", + "ident": "0TE8", + "type": "closed", + "name": "Texas World Speedway Helistop Number 1", + "latitude_deg": "30.540501", + "longitude_deg": "-96.222504", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "College Station", + "scheduled_service": "no", + "keywords": "0TE8" + }, + { + "id": "7547", + "ident": "0TE9", + "type": "closed", + "name": "Texas World Speedway Helistop Number 2", + "latitude_deg": "30.5396", + "longitude_deg": "-96.226097", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "College Station", + "scheduled_service": "no", + "keywords": "0TE9" + }, + { + "id": "7548", + "ident": "0TN0", + "type": "small_airport", + "name": "R & S Buzzard Airport", + "latitude_deg": "35.676700592041016", + "longitude_deg": "-86.89669799804688", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Spring Hill", + "scheduled_service": "no", + "gps_code": "0TN0", + "local_code": "0TN0" + }, + { + "id": "7549", + "ident": "0TN1", + "type": "seaplane_base", + "name": "Tims Ford Seaplane Base", + "latitude_deg": "35.2223014831543", + "longitude_deg": "-86.22000122070312", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Tullahoma", + "scheduled_service": "no", + "gps_code": "0TN1", + "local_code": "0TN1" + }, + { + "id": "7550", + "ident": "0TN2", + "type": "small_airport", + "name": "Village Airport", + "latitude_deg": "35.65589904785156", + "longitude_deg": "-84.18550109863281", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Greenback", + "scheduled_service": "no", + "gps_code": "0TN2", + "local_code": "0TN2" + }, + { + "id": "7551", + "ident": "0TN3", + "type": "heliport", + "name": "Park West Heliport", + "latitude_deg": "35.917598724365234", + "longitude_deg": "-84.1001968383789", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Knoxville", + "scheduled_service": "no", + "gps_code": "0TN3", + "local_code": "0TN3" + }, + { + "id": "7552", + "ident": "0TN4", + "type": "heliport", + "name": "Physicians Medical Regional Center Heliport", + "latitude_deg": "35.991209", + "longitude_deg": "-83.927278", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Knoxville", + "scheduled_service": "no", + "gps_code": "0TN4", + "local_code": "0TN4", + "keywords": "St Mary's Medical Center Heliport" + }, + { + "id": "7553", + "ident": "0TN5", + "type": "small_airport", + "name": "McDonald Airport", + "latitude_deg": "35.867729", + "longitude_deg": "-86.497907", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Murfreesboro", + "scheduled_service": "no", + "gps_code": "0TN5", + "local_code": "0TN5" + }, + { + "id": "7554", + "ident": "0TN6", + "type": "small_airport", + "name": "Riner Farm Airport", + "latitude_deg": "36.18339920043945", + "longitude_deg": "-84.0990982055664", + "elevation_ft": "1125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Norris", + "scheduled_service": "no", + "gps_code": "0TN6", + "local_code": "0TN6" + }, + { + "id": "7555", + "ident": "0TN7", + "type": "heliport", + "name": "Horne Properties Heliport", + "latitude_deg": "35.92359924316406", + "longitude_deg": "-84.09110260009766", + "elevation_ft": "975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Knoxville", + "scheduled_service": "no", + "gps_code": "0TN7", + "local_code": "0TN7" + }, + { + "id": "7556", + "ident": "0TN8", + "type": "heliport", + "name": "Erlanger Medical Center Heliport", + "latitude_deg": "35.049198150634766", + "longitude_deg": "-85.29049682617188", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Chattanooga", + "scheduled_service": "no", + "gps_code": "0TN8", + "local_code": "0TN8" + }, + { + "id": "7557", + "ident": "0TN9", + "type": "heliport", + "name": "East Tennessee Children's Hospital Heliport", + "latitude_deg": "35.956199645996094", + "longitude_deg": "-83.93820190429688", + "elevation_ft": "1003", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Knoxville", + "scheduled_service": "no", + "gps_code": "0TN9", + "local_code": "0TN9" + }, + { + "id": "7558", + "ident": "0TS0", + "type": "closed", + "name": "Flower Mound Airport", + "latitude_deg": "33.0229", + "longitude_deg": "-97.122498", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Flower Mound", + "scheduled_service": "no", + "keywords": "0TS0" + }, + { + "id": "7559", + "ident": "0TS1", + "type": "small_airport", + "name": "Dooley Airport", + "latitude_deg": "33.098732", + "longitude_deg": "-97.272517", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Justin", + "scheduled_service": "no", + "gps_code": "0TS1", + "local_code": "0TS1" + }, + { + "id": "7560", + "ident": "0TS2", + "type": "closed", + "name": "Ultralight International Ultralightport", + "latitude_deg": "32.9487", + "longitude_deg": "-97.328903", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Haslet", + "scheduled_service": "no", + "gps_code": "0TS2", + "local_code": "0TS2" + }, + { + "id": "7561", + "ident": "0TS3", + "type": "closed", + "name": "Houston Heliport", + "latitude_deg": "29.819259", + "longitude_deg": "-95.663143", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "0TS3", + "local_code": "0TS3" + }, + { + "id": "7562", + "ident": "0TS4", + "type": "small_airport", + "name": "Ullrich Airport", + "latitude_deg": "30.091673", + "longitude_deg": "-96.794078", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ledbetter", + "scheduled_service": "no", + "gps_code": "0TS4", + "local_code": "0TS4" + }, + { + "id": "7563", + "ident": "0TS5", + "type": "small_airport", + "name": "Lake Bay Gall Airport", + "latitude_deg": "30.4419002532959", + "longitude_deg": "-95.1863021850586", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "0TS5", + "local_code": "0TS5" + }, + { + "id": "7564", + "ident": "0TS6", + "type": "heliport", + "name": "Harris County Courthouse Heliport", + "latitude_deg": "29.716100692749023", + "longitude_deg": "-95.47689819335938", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "0TS6", + "local_code": "0TS6" + }, + { + "id": "7565", + "ident": "0TS7", + "type": "small_airport", + "name": "Flying U Airport", + "latitude_deg": "32.834578", + "longitude_deg": "-98.125677", + "elevation_ft": "978", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineral Wells", + "scheduled_service": "no", + "gps_code": "0TS7", + "local_code": "0TS7" + }, + { + "id": "7566", + "ident": "0TS8", + "type": "small_airport", + "name": "Flying 'K' Ranch Ultralightport", + "latitude_deg": "26.150400161743164", + "longitude_deg": "-97.88359832763672", + "elevation_ft": "81", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mercedes", + "scheduled_service": "no", + "gps_code": "0TS8", + "local_code": "0TS8" + }, + { + "id": "7567", + "ident": "0TS9", + "type": "closed", + "name": "Jim Roach Field", + "latitude_deg": "30.015499", + "longitude_deg": "-97.737197", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Niederwald", + "scheduled_service": "no", + "keywords": "0TS9" + }, + { + "id": "4777", + "ident": "0TT8", + "type": "heliport", + "name": "Dynasty Heliport", + "latitude_deg": "14.960012", + "longitude_deg": "145.631075", + "elevation_ft": "150", + "continent": "OC", + "iso_country": "MP", + "iso_region": "MP-U-A", + "municipality": "San Jose, Tinian", + "scheduled_service": "no", + "gps_code": "0TT8", + "local_code": "0TT8" + }, + { + "id": "7568", + "ident": "0TX0", + "type": "small_airport", + "name": "Nassau Bay Airport", + "latitude_deg": "32.41960144042969", + "longitude_deg": "-97.71279907226562", + "elevation_ft": "714", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Granbury", + "scheduled_service": "no", + "gps_code": "0TX0", + "local_code": "0TX0" + }, + { + "id": "7569", + "ident": "0TX1", + "type": "small_airport", + "name": "Pecan Plantation Airport", + "latitude_deg": "32.353325", + "longitude_deg": "-97.676225", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Granbury", + "scheduled_service": "no", + "gps_code": "0TX1", + "local_code": "0TX1" + }, + { + "id": "7570", + "ident": "0TX2", + "type": "heliport", + "name": "Heliport-Facility 5a Heliport", + "latitude_deg": "32.76259994506836", + "longitude_deg": "-97.05860137939453", + "elevation_ft": "546", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Grand Prairie", + "scheduled_service": "no", + "gps_code": "0TX2", + "local_code": "0TX2" + }, + { + "id": "7571", + "ident": "0TX3", + "type": "heliport", + "name": "UT Health East Texas Carthage Hospital Heliport", + "latitude_deg": "32.166429", + "longitude_deg": "-94.346098", + "elevation_ft": "296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Carthage", + "scheduled_service": "no", + "gps_code": "0TX3", + "local_code": "0TX3", + "keywords": "Panola General Hospital" + }, + { + "id": "7572", + "ident": "0TX4", + "type": "heliport", + "name": "Aerospatiale Helicopter Corp Heliport", + "latitude_deg": "32.711700439453125", + "longitude_deg": "-97.0271987915039", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Grand Prairie", + "scheduled_service": "no", + "gps_code": "0TX4", + "local_code": "0TX4" + }, + { + "id": "7573", + "ident": "0TX5", + "type": "heliport", + "name": "Shiloh Heliport", + "latitude_deg": "33.023382", + "longitude_deg": "-97.120589", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Flower Mound", + "scheduled_service": "no", + "gps_code": "0TX5", + "local_code": "0TX5", + "keywords": "shiloh airport, shiloh heliport" + }, + { + "id": "7574", + "ident": "0TX6", + "type": "small_airport", + "name": "Elm Creek Airpark", + "latitude_deg": "29.505199432373047", + "longitude_deg": "-97.99690246582031", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seguin", + "scheduled_service": "no", + "gps_code": "0TX6", + "local_code": "0TX6" + }, + { + "id": "7575", + "ident": "0TX7", + "type": "closed", + "name": "Lazy K Acres Airport", + "latitude_deg": "32.950102", + "longitude_deg": "-97.150297", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Grapevine", + "scheduled_service": "no", + "keywords": "0TX7" + }, + { + "id": "7576", + "ident": "0TX8", + "type": "closed", + "name": "Jacobia Field", + "latitude_deg": "33.180401", + "longitude_deg": "-96.043297", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Greenville", + "scheduled_service": "no" + }, + { + "id": "7577", + "ident": "0TX9", + "type": "small_airport", + "name": "Card Aerodrome", + "latitude_deg": "33.250099182128906", + "longitude_deg": "-96.11689758300781", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "0TX9", + "local_code": "0TX9" + }, + { + "id": "7578", + "ident": "0U0", + "type": "small_airport", + "name": "Landmark US Forest Service Airport", + "latitude_deg": "44.6423988342", + "longitude_deg": "-115.532997131", + "elevation_ft": "6662", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Landmark", + "scheduled_service": "no", + "gps_code": "0U0", + "local_code": "0U0" + }, + { + "id": "7579", + "ident": "0U1", + "type": "small_airport", + "name": "Warm Springs Creek Airport", + "latitude_deg": "44.1421012878418", + "longitude_deg": "-115.31400299072266", + "elevation_ft": "4831", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Lowman", + "scheduled_service": "no", + "gps_code": "0U1", + "local_code": "0U1" + }, + { + "id": "7580", + "ident": "0U2", + "type": "small_airport", + "name": "Copper Basin Airport", + "latitude_deg": "43.80179977416992", + "longitude_deg": "-113.83100128173828", + "elevation_ft": "7920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Mackay", + "scheduled_service": "no", + "gps_code": "0U2", + "local_code": "0U2" + }, + { + "id": "7581", + "ident": "0U3", + "type": "small_airport", + "name": "Mahoney Creek US Forest Service Airport", + "latitude_deg": "44.744598", + "longitude_deg": "-114.920998", + "elevation_ft": "4618", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Challis", + "scheduled_service": "no", + "local_code": "0U3" + }, + { + "id": "7582", + "ident": "0U7", + "type": "small_airport", + "name": "Hollow Top Airport", + "latitude_deg": "43.32490158081055", + "longitude_deg": "-113.58799743652344", + "elevation_ft": "5359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Martin", + "scheduled_service": "no", + "gps_code": "0U7", + "local_code": "0U7" + }, + { + "id": "7583", + "ident": "0U8", + "type": "small_airport", + "name": "May Airport", + "latitude_deg": "44.610198974609375", + "longitude_deg": "-113.89600372314453", + "elevation_ft": "5324", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "May", + "scheduled_service": "no", + "gps_code": "0U8", + "local_code": "0U8" + }, + { + "id": "7584", + "ident": "0U9", + "type": "small_airport", + "name": "Lee Williams Memorial Airport", + "latitude_deg": "44.46160125732422", + "longitude_deg": "-116.75800323486328", + "elevation_ft": "2617", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Midvale", + "scheduled_service": "no", + "gps_code": "0U9", + "local_code": "0U9" + }, + { + "id": "7585", + "ident": "0VA0", + "type": "closed", + "name": "Mostly Harmless Heliport", + "latitude_deg": "37.965401", + "longitude_deg": "-77.777496", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Bumpass", + "scheduled_service": "no", + "keywords": "0VA0" + }, + { + "id": "7586", + "ident": "0VA1", + "type": "small_airport", + "name": "Johnson Fox Field", + "latitude_deg": "37.23350143432617", + "longitude_deg": "-79.58529663085938", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Bedford", + "scheduled_service": "no", + "gps_code": "0VA1", + "local_code": "0VA1" + }, + { + "id": "7587", + "ident": "0VA2", + "type": "small_airport", + "name": "Riverwood Airport", + "latitude_deg": "37.79650115966797", + "longitude_deg": "-79.7667007446289", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Iron Gate", + "scheduled_service": "no", + "gps_code": "0VA2", + "local_code": "0VA2" + }, + { + "id": "7588", + "ident": "0VA3", + "type": "small_airport", + "name": "Hunt Airport", + "latitude_deg": "37.698799", + "longitude_deg": "-77.095299", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "King William", + "scheduled_service": "no", + "gps_code": "0VA3", + "local_code": "0VA3" + }, + { + "id": "7589", + "ident": "0VA4", + "type": "small_airport", + "name": "Worley Field", + "latitude_deg": "36.95009994506836", + "longitude_deg": "-79.87950134277344", + "elevation_ft": "1219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Rocky Mount", + "scheduled_service": "no", + "gps_code": "0VA4", + "local_code": "0VA4" + }, + { + "id": "7590", + "ident": "0VA5", + "type": "closed", + "name": "Coffman Field", + "latitude_deg": "37.694144", + "longitude_deg": "-77.660894", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richmond", + "scheduled_service": "no", + "keywords": "0VA5, Rockville" + }, + { + "id": "7591", + "ident": "0VA6", + "type": "heliport", + "name": "Mc Guire Va Medical Center Pad Heliport", + "latitude_deg": "37.49599838259999", + "longitude_deg": "-77.46219635010002", + "elevation_ft": "178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "0VA6", + "local_code": "0VA6" + }, + { + "id": "7592", + "ident": "0VA7", + "type": "small_airport", + "name": "Flatrock Air Strip", + "latitude_deg": "37.52320098876953", + "longitude_deg": "-77.81939697265625", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "0VA7", + "local_code": "0VA7" + }, + { + "id": "7593", + "ident": "0VA8", + "type": "small_airport", + "name": "Jayarz Airport", + "latitude_deg": "37.285801", + "longitude_deg": "-77.791199", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Amelia Court House", + "scheduled_service": "no", + "gps_code": "0VA8", + "local_code": "0VA8" + }, + { + "id": "7594", + "ident": "0VA9", + "type": "small_airport", + "name": "Handy Strip", + "latitude_deg": "37.4473991394043", + "longitude_deg": "-76.45379638671875", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Gloucester Court House", + "scheduled_service": "no", + "gps_code": "0VA9", + "local_code": "0VA9" + }, + { + "id": "7595", + "ident": "0VI1", + "type": "small_airport", + "name": "Brooklyn Airport", + "latitude_deg": "37.6889", + "longitude_deg": "-77.101402", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "King William", + "scheduled_service": "no", + "gps_code": "0VI1", + "local_code": "0VI1" + }, + { + "id": "7596", + "ident": "0W0", + "type": "seaplane_base", + "name": "Seattle Seaplanes Seaplane Base", + "latitude_deg": "47.627601623535156", + "longitude_deg": "-122.33200073242188", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Seattle", + "scheduled_service": "no", + "gps_code": "0W0", + "local_code": "0W0" + }, + { + "id": "7597", + "ident": "0W7", + "type": "seaplane_base", + "name": "Floathaven Seaplane Base", + "latitude_deg": "48.72819900512695", + "longitude_deg": "-122.33599853515625", + "elevation_ft": "307", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Bellingham", + "scheduled_service": "no", + "gps_code": "0W7", + "local_code": "0W7" + }, + { + "id": "7598", + "ident": "0WA0", + "type": "heliport", + "name": "Streamline Heliport", + "latitude_deg": "47.982898712158", + "longitude_deg": "-122.03800201416", + "elevation_ft": "116", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Machias", + "scheduled_service": "no", + "gps_code": "0WA0", + "local_code": "0WA0" + }, + { + "id": "7599", + "ident": "0WA1", + "type": "small_airport", + "name": "Dwight Field", + "latitude_deg": "46.61709976196289", + "longitude_deg": "-122.82599639892578", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Chehalis", + "scheduled_service": "no", + "gps_code": "0WA1", + "local_code": "0WA1" + }, + { + "id": "7600", + "ident": "0WA2", + "type": "small_airport", + "name": "Curtis Airport", + "latitude_deg": "46.59040069580078", + "longitude_deg": "-123.1050033569336", + "elevation_ft": "254", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Curtis", + "scheduled_service": "no", + "gps_code": "0WA2", + "local_code": "0WA2" + }, + { + "id": "7601", + "ident": "0WA3", + "type": "closed", + "name": "Air Columbia Heliport", + "latitude_deg": "45.682599", + "longitude_deg": "-121.900002", + "elevation_ft": "149", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Stevenson", + "scheduled_service": "no", + "keywords": "0WA3" + }, + { + "id": "7602", + "ident": "0WA4", + "type": "heliport", + "name": "Macon Heliport", + "latitude_deg": "47.436238", + "longitude_deg": "-120.279515", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "East Wenatchee", + "scheduled_service": "no", + "gps_code": "0WA4", + "local_code": "0WA4", + "keywords": "Hansen Heliport" + }, + { + "id": "7603", + "ident": "0WA5", + "type": "heliport", + "name": "Ware Mountain Heliport", + "latitude_deg": "48.37929916381836", + "longitude_deg": "-122.28800201416016", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "0WA5", + "local_code": "0WA5" + }, + { + "id": "7604", + "ident": "0WA6", + "type": "heliport", + "name": "Stevens Memorial Hospital Heliport", + "latitude_deg": "47.8036994934082", + "longitude_deg": "-122.33399963378906", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Edmonds", + "scheduled_service": "no", + "gps_code": "0WA6", + "local_code": "0WA6" + }, + { + "id": "7605", + "ident": "0WA7", + "type": "heliport", + "name": "Shamrock Port Heliport", + "latitude_deg": "47.77690124511719", + "longitude_deg": "-117.08399963378906", + "elevation_ft": "2172", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Newman Lake", + "scheduled_service": "no", + "gps_code": "0WA7", + "local_code": "0WA7" + }, + { + "id": "7606", + "ident": "0WA8", + "type": "heliport", + "name": "Childrens Hospital Emergency Heliport", + "latitude_deg": "47.66400146484375", + "longitude_deg": "-122.28099822998047", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Seattle", + "scheduled_service": "no", + "gps_code": "0WA8", + "local_code": "0WA8" + }, + { + "id": "7607", + "ident": "0WA9", + "type": "heliport", + "name": "Naval Station Everett Heliport", + "latitude_deg": "47.986460601", + "longitude_deg": "-122.224295139", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Everett", + "scheduled_service": "no", + "gps_code": "0WA9", + "local_code": "0WA9" + }, + { + "id": "7608", + "ident": "0WI0", + "type": "heliport", + "name": "Aurora St Luke's Medical Center Heliport", + "latitude_deg": "42.98889923095703", + "longitude_deg": "-87.95149993896484", + "elevation_ft": "761", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Milwaukee", + "scheduled_service": "no", + "gps_code": "0WI0", + "local_code": "0WI0" + }, + { + "id": "7609", + "ident": "0WI1", + "type": "small_airport", + "name": "Mort's Landing Airport", + "latitude_deg": "45.507198333699996", + "longitude_deg": "-92.1418991089", + "elevation_ft": "1255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Comstock", + "scheduled_service": "no", + "gps_code": "0WI1", + "local_code": "0WI1" + }, + { + "id": "7610", + "ident": "0WI2", + "type": "small_airport", + "name": "Doering Farms Airfield", + "latitude_deg": "43.20140075683594", + "longitude_deg": "-88.3333969116211", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Monches", + "scheduled_service": "no", + "gps_code": "0WI2", + "local_code": "0WI2" + }, + { + "id": "7611", + "ident": "0WI3", + "type": "heliport", + "name": "Aurora Lakeland Medical Center Heliport", + "latitude_deg": "42.66170120239258", + "longitude_deg": "-88.4968032836914", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Elkhorn", + "scheduled_service": "no", + "gps_code": "0WI3", + "local_code": "0WI3" + }, + { + "id": "7612", + "ident": "0WI4", + "type": "small_airport", + "name": "Snow Crest Ranch Airport", + "latitude_deg": "43.82939910888672", + "longitude_deg": "-89.35260009765625", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Montello", + "scheduled_service": "no", + "gps_code": "0WI4", + "local_code": "0WI4" + }, + { + "id": "7613", + "ident": "0WI5", + "type": "small_airport", + "name": "Crash In International Airport", + "latitude_deg": "42.793399810791016", + "longitude_deg": "-87.8906021118164", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Husher", + "scheduled_service": "no", + "gps_code": "0WI5", + "local_code": "0WI5" + }, + { + "id": "7614", + "ident": "0WI6", + "type": "small_airport", + "name": "Simandl Field/Private Airport", + "latitude_deg": "42.8736000061", + "longitude_deg": "-88.1578979492", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Muskego", + "scheduled_service": "no", + "gps_code": "0WI6", + "local_code": "0WI6" + }, + { + "id": "7615", + "ident": "0WI7", + "type": "small_airport", + "name": "With Wings And A Halo Airport", + "latitude_deg": "44.1335983276", + "longitude_deg": "-88.4992980957", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Neenah", + "scheduled_service": "no", + "gps_code": "0WI7", + "local_code": "0WI7" + }, + { + "id": "7616", + "ident": "0WI8", + "type": "small_airport", + "name": "Oconomowoc Airport", + "latitude_deg": "43.13890075683594", + "longitude_deg": "-88.47229766845703", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Oconomowoc", + "scheduled_service": "no", + "gps_code": "0WI8", + "local_code": "0WI8" + }, + { + "id": "7617", + "ident": "0WI9", + "type": "small_airport", + "name": "Mc Manus Hoonch-Na-Shee-Kaw Airport", + "latitude_deg": "42.9314002991", + "longitude_deg": "-89.3386993408", + "elevation_ft": "931", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Oregon", + "scheduled_service": "no", + "gps_code": "0WI9", + "local_code": "0WI9" + }, + { + "id": "7618", + "ident": "0WN0", + "type": "small_airport", + "name": "Rucilla's Roost Airport", + "latitude_deg": "48.137298583984375", + "longitude_deg": "-123.11299896240234", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Sequim", + "scheduled_service": "no", + "gps_code": "0WN0", + "local_code": "0WN0" + }, + { + "id": "7619", + "ident": "0WN1", + "type": "small_airport", + "name": "Shangri-La Airport", + "latitude_deg": "46.75189971923828", + "longitude_deg": "-120.60199737548828", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Selah", + "scheduled_service": "no", + "gps_code": "0WN1", + "local_code": "0WN1" + }, + { + "id": "45908", + "ident": "0WN2", + "type": "small_airport", + "name": "Coopers Landing Airport", + "latitude_deg": "46.127573", + "longitude_deg": "-119.014273", + "elevation_ft": "435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Kennewick", + "scheduled_service": "no", + "gps_code": "0WN2", + "local_code": "0WN2" + }, + { + "id": "7621", + "ident": "0WN4", + "type": "heliport", + "name": "Olympia Heliport", + "latitude_deg": "46.9640007019043", + "longitude_deg": "-122.89199829101562", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Olympia", + "scheduled_service": "no", + "gps_code": "0WN4", + "local_code": "0WN4" + }, + { + "id": "7622", + "ident": "0WN5", + "type": "small_airport", + "name": "Potts Field", + "latitude_deg": "42.79970169067383", + "longitude_deg": "-88.04869842529297", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "North Cape", + "scheduled_service": "no", + "gps_code": "0WN5", + "local_code": "0WN5" + }, + { + "id": "7623", + "ident": "0WN6", + "type": "heliport", + "name": "L-Z Blue Thunder Heliport", + "latitude_deg": "48.952522", + "longitude_deg": "-122.818136", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Blaine", + "scheduled_service": "no", + "gps_code": "0WN6", + "local_code": "0WN6" + }, + { + "id": "7624", + "ident": "0WN7", + "type": "heliport", + "name": "St Elizabeth Hospital Heliport", + "latitude_deg": "47.209449", + "longitude_deg": "-121.987726", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Enumclaw", + "scheduled_service": "no", + "gps_code": "0WN7", + "local_code": "0WN7", + "keywords": "Enumclaw Community Hospital Heliport" + }, + { + "id": "7625", + "ident": "0WN8", + "type": "heliport", + "name": "Sheldon Heliport", + "latitude_deg": "47.2510986328125", + "longitude_deg": "-116.85199737548828", + "elevation_ft": "2129", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Coeur D'Alene", + "scheduled_service": "no", + "gps_code": "0WN8", + "local_code": "0WN8" + }, + { + "id": "45906", + "ident": "0WN9", + "type": "small_airport", + "name": "Wings For Christ Airport", + "latitude_deg": "48.430464", + "longitude_deg": "-119.486058", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Omak", + "scheduled_service": "no", + "gps_code": "0WN9", + "local_code": "0WN9" + }, + { + "id": "346234", + "ident": "0WS7", + "type": "small_airport", + "name": "Rockdale Airport", + "latitude_deg": "42.970979", + "longitude_deg": "-89.028482", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Rockdale", + "scheduled_service": "no", + "gps_code": "0WS7", + "local_code": "0WS7" + }, + { + "id": "45936", + "ident": "0WY0", + "type": "small_airport", + "name": "Freedom Air Ranch Airport", + "latitude_deg": "43.039722", + "longitude_deg": "-111.038056", + "elevation_ft": "5698", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Freedom", + "scheduled_service": "no", + "gps_code": "0WY0", + "local_code": "0WY0" + }, + { + "id": "45935", + "ident": "0WY1", + "type": "small_airport", + "name": "Dorsey Creek Ranch Airport", + "latitude_deg": "44.411111", + "longitude_deg": "-108.163333", + "elevation_ft": "4017", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Basin", + "scheduled_service": "no", + "gps_code": "0WY1", + "local_code": "0WY1" + }, + { + "id": "7626", + "ident": "0XA0", + "type": "heliport", + "name": "Parkland Hospital Nr 2 Heliport", + "latitude_deg": "32.811537", + "longitude_deg": "-96.838976", + "elevation_ft": "548", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "keywords": "0XA0" + }, + { + "id": "337658", + "ident": "0XA1", + "type": "heliport", + "name": "Kothmann Ranch Heliport", + "latitude_deg": "30.678963", + "longitude_deg": "-100.130183", + "elevation_ft": "2347", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort McKavett", + "scheduled_service": "no", + "gps_code": "0XA1", + "local_code": "0XA1" + }, + { + "id": "7628", + "ident": "0XA2", + "type": "heliport", + "name": "Fort Duncan Medical Center Heliport", + "latitude_deg": "28.713889", + "longitude_deg": "-100.454728", + "elevation_ft": "884", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eagle Pass", + "scheduled_service": "no", + "gps_code": "0XA2", + "local_code": "0XA2" + }, + { + "id": "7629", + "ident": "0XA3", + "type": "heliport", + "name": "Midstream Freeport Heliport", + "latitude_deg": "28.97170066833496", + "longitude_deg": "-95.28309631347656", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Freeport", + "scheduled_service": "no", + "gps_code": "0XA3", + "local_code": "0XA3" + }, + { + "id": "7630", + "ident": "0XA4", + "type": "small_airport", + "name": "Seven Cs Ranch Airport", + "latitude_deg": "27.996901", + "longitude_deg": "-98.882202", + "elevation_ft": "331", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Encinal", + "scheduled_service": "no", + "gps_code": "0XA4", + "local_code": "0XA4" + }, + { + "id": "7631", + "ident": "0XA5", + "type": "small_airport", + "name": "74 Ranch Airport", + "latitude_deg": "28.684900283813477", + "longitude_deg": "-98.38279724121094", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Campbellton", + "scheduled_service": "no", + "gps_code": "0XA5", + "local_code": "0XA5" + }, + { + "id": "7632", + "ident": "0XA6", + "type": "heliport", + "name": "Jaxon Landing Heliport", + "latitude_deg": "33.45000076293945", + "longitude_deg": "-101.93900299072266", + "elevation_ft": "3270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lubbock", + "scheduled_service": "no", + "gps_code": "0XA6", + "local_code": "0XA6" + }, + { + "id": "7633", + "ident": "0XA7", + "type": "small_airport", + "name": "Bar 3 Ranch Airport", + "latitude_deg": "30.662345", + "longitude_deg": "-97.62276", + "elevation_ft": "744", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Georgetown", + "scheduled_service": "no", + "gps_code": "0XA7", + "local_code": "0XA7" + }, + { + "id": "7634", + "ident": "0XA8", + "type": "closed", + "name": "Ohho Airport", + "latitude_deg": "30.27", + "longitude_deg": "-98.108299", + "elevation_ft": "1340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dripping Springs", + "scheduled_service": "no", + "keywords": "0XA8" + }, + { + "id": "7635", + "ident": "0XA9", + "type": "heliport", + "name": "Methodist Mansfield Medical Center Heliport", + "latitude_deg": "32.567223", + "longitude_deg": "-97.095596", + "elevation_ft": "633", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mansfield", + "scheduled_service": "no", + "gps_code": "0XA9", + "local_code": "0XA9" + }, + { + "id": "7636", + "ident": "0XS0", + "type": "small_airport", + "name": "Diamond H Ranch Airport", + "latitude_deg": "28.400299072265625", + "longitude_deg": "-99.55870056152344", + "elevation_ft": "511", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Catarina", + "scheduled_service": "no", + "gps_code": "0XS0", + "local_code": "0XS0" + }, + { + "id": "7637", + "ident": "0XS1", + "type": "small_airport", + "name": "Rodgers Roost Airport", + "latitude_deg": "29.287799835205078", + "longitude_deg": "-96.34970092773438", + "elevation_ft": "129", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Campo", + "scheduled_service": "no", + "gps_code": "0XS1", + "local_code": "0XS1" + }, + { + "id": "7638", + "ident": "0XS2", + "type": "small_airport", + "name": "John Fields Ranch Airport", + "latitude_deg": "30.555675", + "longitude_deg": "-100.53084", + "elevation_ft": "2342", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no", + "gps_code": "0XS2", + "local_code": "0XS2" + }, + { + "id": "7639", + "ident": "0XS3", + "type": "heliport", + "name": "South Texas Project East Heliport", + "latitude_deg": "28.792291", + "longitude_deg": "-96.041895", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sargent", + "scheduled_service": "no", + "gps_code": "0XS3", + "local_code": "0XS3" + }, + { + "id": "7640", + "ident": "0XS4", + "type": "heliport", + "name": "Eds Heliport", + "latitude_deg": "33.09170150756836", + "longitude_deg": "-96.68609619140625", + "elevation_ft": "602", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Allen", + "scheduled_service": "no", + "gps_code": "0XS4", + "local_code": "0XS4" + }, + { + "id": "7641", + "ident": "0XS5", + "type": "closed", + "name": "Southeastern Helicopters Heliport", + "latitude_deg": "26.145731", + "longitude_deg": "-97.171369", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "South Padre Island", + "scheduled_service": "no", + "gps_code": "0XS5", + "local_code": "0XS5" + }, + { + "id": "7642", + "ident": "0XS6", + "type": "small_airport", + "name": "Lakeside Beach Airport", + "latitude_deg": "30.500841", + "longitude_deg": "-98.147448", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Spicewood", + "scheduled_service": "no", + "gps_code": "0XS6", + "local_code": "0XS6" + }, + { + "id": "7643", + "ident": "0XS7", + "type": "small_airport", + "name": "Anacacho Ranch Airport", + "latitude_deg": "29.193679", + "longitude_deg": "-100.280027", + "elevation_ft": "1067", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no", + "gps_code": "0XS7", + "local_code": "0XS7" + }, + { + "id": "7644", + "ident": "0XS8", + "type": "small_airport", + "name": "Dunbar Ranch Airport", + "latitude_deg": "29.07695", + "longitude_deg": "-100.371609", + "elevation_ft": "958", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no", + "gps_code": "0XS8", + "local_code": "0XS8" + }, + { + "id": "45852", + "ident": "0XS9", + "type": "small_airport", + "name": "French Field", + "latitude_deg": "32.13169", + "longitude_deg": "-95.33959", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bullard", + "scheduled_service": "no", + "gps_code": "0XS9", + "local_code": "0XS9" + }, + { + "id": "7645", + "ident": "0Y4", + "type": "small_airport", + "name": "Lambert Fechter Municipal Airport", + "latitude_deg": "43.16419982910156", + "longitude_deg": "-95.47000122070312", + "elevation_ft": "1452", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Hartley", + "scheduled_service": "no", + "gps_code": "0Y4", + "local_code": "0Y4" + }, + { + "id": "7646", + "ident": "0Y6", + "type": "small_airport", + "name": "Lake Mills Municipal Airport", + "latitude_deg": "43.41659927368164", + "longitude_deg": "-93.50849914550781", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Lake Mills", + "scheduled_service": "no", + "gps_code": "0Y6", + "local_code": "0Y6" + }, + { + "id": "7647", + "ident": "0Z2", + "type": "closed", + "name": "Road Commission Nr 1 Airport", + "latitude_deg": "63.10709", + "longitude_deg": "-147.542347", + "elevation_ft": "2525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Denali", + "scheduled_service": "no", + "keywords": "0Z2" + }, + { + "id": "7648", + "ident": "0Z3", + "type": "seaplane_base", + "name": "Shannons Pond Seaplane Base", + "latitude_deg": "59.049905", + "longitude_deg": "-158.581682", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Dillingham", + "scheduled_service": "no", + "gps_code": "AA15", + "local_code": "AA15", + "keywords": "0Z3" + }, + { + "id": "7649", + "ident": "10AK", + "type": "small_airport", + "name": "Hunt Strip", + "latitude_deg": "61.592052", + "longitude_deg": "-149.677598", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "10AK", + "local_code": "10AK" + }, + { + "id": "7650", + "ident": "10AL", + "type": "heliport", + "name": "North Jackson Hospital Heliport", + "latitude_deg": "34.91400146484375", + "longitude_deg": "-85.7708969116211", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Bridgeport", + "scheduled_service": "no", + "gps_code": "10AL", + "local_code": "10AL" + }, + { + "id": "7651", + "ident": "10AR", + "type": "heliport", + "name": "Huntsville Memorial Hospital Heliport", + "latitude_deg": "36.09400177001953", + "longitude_deg": "-93.74240112304688", + "elevation_ft": "1495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Huntsville", + "scheduled_service": "no", + "gps_code": "10AR", + "local_code": "10AR" + }, + { + "id": "7652", + "ident": "10AZ", + "type": "small_airport", + "name": "Pierce Airport", + "latitude_deg": "33.36640167236328", + "longitude_deg": "-112.61799621582031", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Buckeye", + "scheduled_service": "no", + "gps_code": "10AZ", + "local_code": "10AZ" + }, + { + "id": "7653", + "ident": "10CA", + "type": "heliport", + "name": "William E Poole Heliport", + "latitude_deg": "34.602292", + "longitude_deg": "-117.172462", + "elevation_ft": "3120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Apple Valley", + "scheduled_service": "no", + "keywords": "10CA" + }, + { + "id": "7654", + "ident": "10CL", + "type": "closed", + "name": "Joe Gottlieb Field", + "latitude_deg": "35.368", + "longitude_deg": "-119.195", + "elevation_ft": "347", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bakersfield", + "scheduled_service": "no", + "keywords": "10CL" + }, + { + "id": "322689", + "ident": "10CN", + "type": "heliport", + "name": "Adventist Health St Helena Heliport", + "latitude_deg": "38.543333", + "longitude_deg": "-122.475", + "elevation_ft": "581", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "St Helena", + "scheduled_service": "no", + "gps_code": "10CN", + "local_code": "10CN", + "keywords": "St Helena Hospital" + }, + { + "id": "7655", + "ident": "10CO", + "type": "closed", + "name": "Silkman Farms Inc. Airport", + "latitude_deg": "39.4547", + "longitude_deg": "-102.212997", + "elevation_ft": "4000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Burlington", + "scheduled_service": "no", + "keywords": "10CO" + }, + { + "id": "7656", + "ident": "10D", + "type": "small_airport", + "name": "Winsted Municipal Airport", + "latitude_deg": "44.95000076293945", + "longitude_deg": "-94.06690216064453", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Winsted", + "scheduled_service": "no", + "gps_code": "10D", + "local_code": "10D" + }, + { + "id": "7657", + "ident": "10F", + "type": "small_airport", + "name": "Rosser Ranch Airport", + "latitude_deg": "33.0154", + "longitude_deg": "-98.626", + "elevation_ft": "1112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Graham", + "scheduled_service": "no", + "gps_code": "10TT", + "local_code": "10TT", + "keywords": "10F" + }, + { + "id": "7658", + "ident": "10FA", + "type": "small_airport", + "name": "Flying Baron Estates Airport", + "latitude_deg": "28.797500610351562", + "longitude_deg": "-81.93589782714844", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Leesburg", + "scheduled_service": "no", + "gps_code": "10FA", + "local_code": "10FA" + }, + { + "id": "7659", + "ident": "10FD", + "type": "small_airport", + "name": "Seven Feathers Airport", + "latitude_deg": "29.00659942626953", + "longitude_deg": "-82.40460205078125", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Dunnellon", + "scheduled_service": "no", + "gps_code": "10FD", + "local_code": "10FD" + }, + { + "id": "7660", + "ident": "10FL", + "type": "heliport", + "name": "Fishermen's Hospital Emergency Helistop", + "latitude_deg": "24.710399627685547", + "longitude_deg": "-81.09449768066406", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Marathon", + "scheduled_service": "no", + "gps_code": "10FL", + "local_code": "10FL" + }, + { + "id": "7661", + "ident": "10GA", + "type": "small_airport", + "name": "Beaverbrook Aerodrome", + "latitude_deg": "33.32509994506836", + "longitude_deg": "-84.29830169677734", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Griffin", + "scheduled_service": "no", + "gps_code": "10GA", + "local_code": "10GA" + }, + { + "id": "7662", + "ident": "10IA", + "type": "small_airport", + "name": "Flyers Airport", + "latitude_deg": "42.41669845581055", + "longitude_deg": "-92.25019836425781", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Waterloo", + "scheduled_service": "no", + "gps_code": "10IA", + "local_code": "10IA" + }, + { + "id": "7663", + "ident": "10ID", + "type": "small_airport", + "name": "Flat Top Airstrip", + "latitude_deg": "43.49440002441406", + "longitude_deg": "-113.9219970703125", + "elevation_ft": "5841", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Muldoon", + "scheduled_service": "no", + "gps_code": "10ID", + "local_code": "10ID" + }, + { + "id": "7664", + "ident": "10II", + "type": "heliport", + "name": "Franciscan Health Rensselaer Heliport", + "latitude_deg": "40.934997", + "longitude_deg": "-87.138159", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Rensselaer", + "scheduled_service": "no", + "gps_code": "10II", + "local_code": "10II", + "keywords": "Jasper County Hospital" + }, + { + "id": "7665", + "ident": "10IL", + "type": "heliport", + "name": "Riverside Medical Center Heliport", + "latitude_deg": "41.123600006103516", + "longitude_deg": "-87.88529968261719", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Kankakee", + "scheduled_service": "no", + "gps_code": "10IL", + "local_code": "10IL" + }, + { + "id": "7666", + "ident": "10IN", + "type": "closed", + "name": "Squires Airport", + "latitude_deg": "39.718399", + "longitude_deg": "-85.048897", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Connersville", + "scheduled_service": "no", + "keywords": "10IN" + }, + { + "id": "7667", + "ident": "10KS", + "type": "heliport", + "name": "University of Kansas Hospital Heliport", + "latitude_deg": "39.056277", + "longitude_deg": "-94.608892", + "elevation_ft": "958", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Kansas City", + "scheduled_service": "no", + "gps_code": "10KS", + "local_code": "10KS", + "keywords": "University of Kansas Medical Center Heliport" + }, + { + "id": "7668", + "ident": "10KY", + "type": "heliport", + "name": "Southwest Government Center Heliport", + "latitude_deg": "38.148399353027344", + "longitude_deg": "-85.83689880371094", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "10KY", + "local_code": "10KY" + }, + { + "id": "7669", + "ident": "10LA", + "type": "small_airport", + "name": "Industrial Helicopters Inc. Airport", + "latitude_deg": "30.250725", + "longitude_deg": "-92.095728", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Scott", + "scheduled_service": "no", + "gps_code": "10LA", + "local_code": "10LA" + }, + { + "id": "7670", + "ident": "10LS", + "type": "closed", + "name": "G & J Fly A Way Ultralightport", + "latitude_deg": "30.046301", + "longitude_deg": "-91.994598", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Youngsville", + "scheduled_service": "no", + "keywords": "10LS" + }, + { + "id": "7671", + "ident": "10MA", + "type": "seaplane_base", + "name": "Beaver Lake Seaplane Base", + "latitude_deg": "42.26259994506836", + "longitude_deg": "-72.30699920654297", + "elevation_ft": "384", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Ware", + "scheduled_service": "no", + "gps_code": "10MA", + "local_code": "10MA" + }, + { + "id": "328986", + "ident": "10ME", + "type": "heliport", + "name": "Penobscot Valley Hospital Heliport", + "latitude_deg": "45.348713", + "longitude_deg": "-68.516636", + "elevation_ft": "368", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "10ME", + "local_code": "10ME" + }, + { + "id": "7672", + "ident": "10MI", + "type": "heliport", + "name": "Ascension St Mary's Hospital Heliport", + "latitude_deg": "43.425969", + "longitude_deg": "-83.939356", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Saginaw", + "scheduled_service": "no", + "gps_code": "10MI", + "local_code": "10MI" + }, + { + "id": "7673", + "ident": "10MN", + "type": "seaplane_base", + "name": "Lookout Lake Seaplane Base", + "latitude_deg": "46.4375", + "longitude_deg": "-93.95610046386719", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Ironton", + "scheduled_service": "no", + "gps_code": "10MN", + "local_code": "10MN" + }, + { + "id": "7674", + "ident": "10MO", + "type": "closed", + "name": "Eckerts Airstrip", + "latitude_deg": "38.914501", + "longitude_deg": "-91.704301", + "elevation_ft": "839", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Williamsburg", + "scheduled_service": "no", + "keywords": "10MO" + }, + { + "id": "7675", + "ident": "10MS", + "type": "closed", + "name": "Daniel Emergency Response Team Heliport", + "latitude_deg": "30.530268", + "longitude_deg": "-88.558812", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Moss Point", + "scheduled_service": "no", + "local_code": "10MS", + "keywords": "10MS" + }, + { + "id": "7676", + "ident": "10MT", + "type": "small_airport", + "name": "Hoolie Airport", + "latitude_deg": "47.83330154418945", + "longitude_deg": "-106.48400115966797", + "elevation_ft": "2526", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Haxby", + "scheduled_service": "no", + "gps_code": "10MT", + "local_code": "10MT" + }, + { + "id": "7677", + "ident": "10MU", + "type": "heliport", + "name": "Freeman Neosho Hospital Heliport", + "latitude_deg": "36.865843", + "longitude_deg": "-94.369848", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Neosho", + "scheduled_service": "no", + "gps_code": "10MU", + "local_code": "10MU" + }, + { + "id": "7678", + "ident": "10NC", + "type": "small_airport", + "name": "Johnston Farm Airport", + "latitude_deg": "36.343101501464844", + "longitude_deg": "-77.5093994140625", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "10NC", + "local_code": "10NC" + }, + { + "id": "7679", + "ident": "10ND", + "type": "small_airport", + "name": "Smith Strip", + "latitude_deg": "47.1875", + "longitude_deg": "-102.36199951171875", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Halliday", + "scheduled_service": "no", + "gps_code": "10ND", + "local_code": "10ND" + }, + { + "id": "7680", + "ident": "10NE", + "type": "closed", + "name": "St Joseph Hospital Heliport", + "latitude_deg": "41.265598", + "longitude_deg": "-95.954498", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Omaha", + "scheduled_service": "no", + "keywords": "10NE" + }, + { + "id": "7681", + "ident": "10NH", + "type": "heliport", + "name": "Clark Heliport", + "latitude_deg": "42.87409973144531", + "longitude_deg": "-71.17970275878906", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Hampstead", + "scheduled_service": "no", + "gps_code": "10NH", + "local_code": "10NH" + }, + { + "id": "7682", + "ident": "10NJ", + "type": "closed", + "name": "St Francis Medical Center Helistop", + "latitude_deg": "40.216906", + "longitude_deg": "-74.742576", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Trenton", + "scheduled_service": "no", + "keywords": "10NJ" + }, + { + "id": "346195", + "ident": "10NK", + "type": "heliport", + "name": "Glens Falls Hospital Heliport", + "latitude_deg": "43.307336", + "longitude_deg": "-73.646211", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Glens Falls", + "scheduled_service": "no", + "gps_code": "10NK", + "local_code": "10NK" + }, + { + "id": "330693", + "ident": "10NR", + "type": "heliport", + "name": "Atrium Health Union Heliport", + "latitude_deg": "34.976678", + "longitude_deg": "-80.522055", + "elevation_ft": "581", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "10NR", + "local_code": "10NR", + "keywords": "CHS Union Heliport" + }, + { + "id": "7683", + "ident": "10NY", + "type": "closed", + "name": "Beaver Meadow Heliport", + "latitude_deg": "43.368999", + "longitude_deg": "-75.159599", + "elevation_ft": "1195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Remsen", + "scheduled_service": "no", + "keywords": "10NY" + }, + { + "id": "7684", + "ident": "10OH", + "type": "small_airport", + "name": "Zoellner Airport", + "latitude_deg": "41.402517", + "longitude_deg": "-82.629333", + "elevation_ft": "617", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Huron", + "scheduled_service": "no", + "gps_code": "10OH", + "local_code": "10OH" + }, + { + "id": "7685", + "ident": "10OK", + "type": "small_airport", + "name": "Hickory Hills Airport", + "latitude_deg": "35.16669845581055", + "longitude_deg": "-97.21700286865234", + "elevation_ft": "1175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Norman", + "scheduled_service": "no", + "gps_code": "10OK", + "local_code": "10OK" + }, + { + "id": "7686", + "ident": "10OR", + "type": "closed", + "name": "Stevens Mountain Airport", + "latitude_deg": "45.781241", + "longitude_deg": "-123.221612", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Vernonia", + "scheduled_service": "no", + "keywords": "10OR" + }, + { + "id": "7687", + "ident": "10PA", + "type": "heliport", + "name": "Piac Heliport", + "latitude_deg": "39.86259841918945", + "longitude_deg": "-75.31050109863281", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Essington", + "scheduled_service": "no", + "gps_code": "10PA", + "local_code": "10PA" + }, + { + "id": "7688", + "ident": "10PN", + "type": "heliport", + "name": "One Meridian Plaza Heliport", + "latitude_deg": "39.93069839477539", + "longitude_deg": "-75.24410247802734", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "10PN", + "local_code": "10PN" + }, + { + "id": "351171", + "ident": "10SC", + "type": "heliport", + "name": "Hartness Heliport", + "latitude_deg": "34.840013", + "longitude_deg": "-82.252927", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "10SC", + "local_code": "10SC" + }, + { + "id": "326562", + "ident": "10SD", + "type": "heliport", + "name": "Wanblee Health Center Heliport", + "latitude_deg": "43.563836", + "longitude_deg": "-101.660223", + "elevation_ft": "2654", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Wanblee", + "scheduled_service": "no", + "gps_code": "10SD", + "local_code": "10SD" + }, + { + "id": "7689", + "ident": "10TA", + "type": "heliport", + "name": "Bear Creek Heliport", + "latitude_deg": "29.792200088500977", + "longitude_deg": "-95.63490295410156", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "10TA", + "local_code": "10TA" + }, + { + "id": "7690", + "ident": "10TE", + "type": "small_airport", + "name": "Gottwald Field", + "latitude_deg": "29.666897", + "longitude_deg": "-97.500272", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Harwood", + "scheduled_service": "no", + "gps_code": "10TE", + "local_code": "10TE" + }, + { + "id": "7691", + "ident": "10TN", + "type": "small_airport", + "name": "Flatwood Field", + "latitude_deg": "36.0718994140625", + "longitude_deg": "-86.35440063476562", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "10TN", + "local_code": "10TN" + }, + { + "id": "7692", + "ident": "10TS", + "type": "closed", + "name": "Saint's Strip Ultralightport", + "latitude_deg": "29.5525", + "longitude_deg": "-98.103104", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marion", + "scheduled_service": "no", + "keywords": "10TS" + }, + { + "id": "7693", + "ident": "10TX", + "type": "heliport", + "name": "SMC Aerospace Heliport", + "latitude_deg": "27.8447", + "longitude_deg": "-97.2239", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ingleside", + "scheduled_service": "no", + "gps_code": "10TX", + "local_code": "10TX", + "keywords": "JBH Aerospace" + }, + { + "id": "45863", + "ident": "10UT", + "type": "heliport", + "name": "Gilbert Development Corp Heliport", + "latitude_deg": "37.172778", + "longitude_deg": "-113.434444", + "elevation_ft": "3300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hurricane", + "scheduled_service": "no", + "gps_code": "10UT", + "local_code": "10UT" + }, + { + "id": "7694", + "ident": "10VA", + "type": "small_airport", + "name": "Nashs Airport", + "latitude_deg": "37.38629913330078", + "longitude_deg": "-78.81310272216797", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Appomattox", + "scheduled_service": "no", + "gps_code": "10VA", + "local_code": "10VA" + }, + { + "id": "328506", + "ident": "10VG", + "type": "heliport", + "name": "WAVY TV Heliport", + "latitude_deg": "36.829702", + "longitude_deg": "-76.298344", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Portsmouth", + "scheduled_service": "no", + "gps_code": "10VG", + "local_code": "10VG" + }, + { + "id": "7695", + "ident": "10WA", + "type": "closed", + "name": "Mullan Hill Airport", + "latitude_deg": "47.5546", + "longitude_deg": "-117.413001", + "elevation_ft": "2310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Spokane", + "scheduled_service": "no", + "keywords": "10WA" + }, + { + "id": "7696", + "ident": "10WI", + "type": "small_airport", + "name": "Buds Landing Airport", + "latitude_deg": "45.11579895019531", + "longitude_deg": "-88.18949890136719", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Pound", + "scheduled_service": "no", + "gps_code": "10WI", + "local_code": "10WI" + }, + { + "id": "45941", + "ident": "10WY", + "type": "small_airport", + "name": "Willow Creek Ranch Airport", + "latitude_deg": "43.423333", + "longitude_deg": "-106.823611", + "elevation_ft": "5521", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Kaycee", + "scheduled_service": "no", + "gps_code": "10WY", + "local_code": "10WY" + }, + { + "id": "345772", + "ident": "10XA", + "type": "small_airport", + "name": "Sterling Airport", + "latitude_deg": "28.680794", + "longitude_deg": "-96.661647", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port Lavaca", + "scheduled_service": "no", + "gps_code": "10XA", + "local_code": "10XA" + }, + { + "id": "7697", + "ident": "10XS", + "type": "small_airport", + "name": "Flying S Air Ranch Airport", + "latitude_deg": "31.779499053955078", + "longitude_deg": "-98.9093017578125", + "elevation_ft": "1447", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brownwood", + "scheduled_service": "no", + "gps_code": "10XS", + "local_code": "10XS" + }, + { + "id": "7698", + "ident": "11AK", + "type": "small_airport", + "name": "Rocking T Ranch Airport", + "latitude_deg": "64.001932", + "longitude_deg": "-145.501585", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Delta Junction", + "scheduled_service": "no", + "gps_code": "11AK", + "local_code": "11AK" + }, + { + "id": "7699", + "ident": "11AL", + "type": "heliport", + "name": "Ech Stagefield Army Heliport", + "latitude_deg": "31.393699645996094", + "longitude_deg": "-85.75150299072266", + "elevation_ft": "268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker/Ozark", + "scheduled_service": "no", + "gps_code": "11AL", + "local_code": "11AL" + }, + { + "id": "7700", + "ident": "11AR", + "type": "heliport", + "name": "CHI St. Vincent Hospital Hot Springs Heliport", + "latitude_deg": "34.468846", + "longitude_deg": "-93.065766", + "elevation_ft": "558", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Hot Springs", + "scheduled_service": "no", + "gps_code": "11AR", + "local_code": "11AR", + "keywords": "St. Joseph's Mercy Heliport" + }, + { + "id": "7701", + "ident": "11AZ", + "type": "small_airport", + "name": "Whetstone Airport", + "latitude_deg": "31.683588", + "longitude_deg": "-110.290053", + "elevation_ft": "4250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Huachuca City", + "scheduled_service": "no", + "gps_code": "11AZ", + "local_code": "11AZ", + "keywords": "whetstone, huachuca city" + }, + { + "id": "7702", + "ident": "11CA", + "type": "small_airport", + "name": "Turner Field", + "latitude_deg": "36.673301696777344", + "longitude_deg": "-119.72200012207031", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fowler", + "scheduled_service": "no", + "gps_code": "11CA", + "local_code": "11CA" + }, + { + "id": "7703", + "ident": "11CL", + "type": "small_airport", + "name": "Hansen Airport", + "latitude_deg": "34.630001068115234", + "longitude_deg": "-117.65299987792969", + "elevation_ft": "2885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Adelanto", + "scheduled_service": "no", + "gps_code": "11CL", + "local_code": "11CL" + }, + { + "id": "322667", + "ident": "11CN", + "type": "heliport", + "name": "Shasta Regional Medical Center Heliport", + "latitude_deg": "40.585095", + "longitude_deg": "-122.387899", + "elevation_ft": "622", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Redding", + "scheduled_service": "no", + "gps_code": "11CN", + "local_code": "11CN" + }, + { + "id": "7704", + "ident": "11CO", + "type": "closed", + "name": "Channel 7 Heliport", + "latitude_deg": "39.7253", + "longitude_deg": "-104.984", + "elevation_ft": "5300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "keywords": "11CO" + }, + { + "id": "7705", + "ident": "11FA", + "type": "small_airport", + "name": "B & L Farms Airport", + "latitude_deg": "25.582892", + "longitude_deg": "-80.498993", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Homestead", + "scheduled_service": "no", + "gps_code": "11FA", + "local_code": "11FA" + }, + { + "id": "7706", + "ident": "11FD", + "type": "heliport", + "name": "North Okaloosa Medical Center Heliport", + "latitude_deg": "30.734808", + "longitude_deg": "-86.562293", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Crestview", + "scheduled_service": "no", + "gps_code": "11FD", + "local_code": "11FD" + }, + { + "id": "7707", + "ident": "11FL", + "type": "small_airport", + "name": "Williams Field", + "latitude_deg": "30.043724", + "longitude_deg": "-81.885217", + "elevation_ft": "88", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Middleburg", + "scheduled_service": "no", + "gps_code": "11FL", + "local_code": "11FL" + }, + { + "id": "7708", + "ident": "11G", + "type": "closed", + "name": "Johnson Field", + "latitude_deg": "42.921101", + "longitude_deg": "-82.585501", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Smiths Creek", + "scheduled_service": "no", + "keywords": "11G" + }, + { + "id": "7709", + "ident": "11GA", + "type": "closed", + "name": "De Kalb General Hospital Heliport", + "latitude_deg": "33.7897", + "longitude_deg": "-84.282204", + "elevation_ft": "1012", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Decatur", + "scheduled_service": "no", + "keywords": "11GA" + }, + { + "id": "7710", + "ident": "11GE", + "type": "heliport", + "name": "Apple 1 Heliport", + "latitude_deg": "34.26029968261719", + "longitude_deg": "-84.06639862060547", + "elevation_ft": "1273", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Cumming", + "scheduled_service": "no", + "gps_code": "11GE", + "local_code": "11GE" + }, + { + "id": "345652", + "ident": "11IA", + "type": "small_airport", + "name": "Koch Field", + "latitude_deg": "42.349636", + "longitude_deg": "-92.513316", + "elevation_ft": "988", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Hudson", + "scheduled_service": "no", + "gps_code": "11IA", + "local_code": "11IA" + }, + { + "id": "7711", + "ident": "11ID", + "type": "closed", + "name": "Riddle Airport", + "latitude_deg": "42.185504", + "longitude_deg": "-116.112999", + "elevation_ft": "5356", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Riddle", + "scheduled_service": "no", + "keywords": "11ID" + }, + { + "id": "7712", + "ident": "11II", + "type": "small_airport", + "name": "Atterbury Field (Camp Atterbury)", + "latitude_deg": "39.3417015076", + "longitude_deg": "-86.0305023193", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Nineveh", + "scheduled_service": "no", + "gps_code": "11II", + "local_code": "11II" + }, + { + "id": "7713", + "ident": "11IL", + "type": "heliport", + "name": "Presence St Mary's Hospital - Kankakee Heliport", + "latitude_deg": "41.120718", + "longitude_deg": "-87.873075", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Kankakee", + "scheduled_service": "no", + "gps_code": "11IL", + "local_code": "11IL" + }, + { + "id": "7714", + "ident": "11IN", + "type": "small_airport", + "name": "Jr's Airport", + "latitude_deg": "39.81890106201172", + "longitude_deg": "-86.53810119628906", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "11IN", + "local_code": "11IN" + }, + { + "id": "7715", + "ident": "11IS", + "type": "heliport", + "name": "St Anthony Memorial Hospital Heliport", + "latitude_deg": "39.125", + "longitude_deg": "-88.55059814453125", + "elevation_ft": "593", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Effingham", + "scheduled_service": "no", + "gps_code": "11IS", + "local_code": "11IS" + }, + { + "id": "7716", + "ident": "11KS", + "type": "closed", + "name": "Sheller's Airport", + "latitude_deg": "39.116695", + "longitude_deg": "-95.148904", + "elevation_ft": "1090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Tonganoxie", + "scheduled_service": "no", + "keywords": "11KS" + }, + { + "id": "7717", + "ident": "11KY", + "type": "heliport", + "name": "Southwest Hospital Heliport", + "latitude_deg": "38.11589813232422", + "longitude_deg": "-85.83609771728516", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "11KY", + "local_code": "11KY" + }, + { + "id": "7718", + "ident": "11LA", + "type": "seaplane_base", + "name": "Tiger Pass Seaplane Base", + "latitude_deg": "29.258800506591797", + "longitude_deg": "-89.35299682617188", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no", + "gps_code": "11LA", + "local_code": "11LA" + }, + { + "id": "7719", + "ident": "11LL", + "type": "small_airport", + "name": "Thacker Airport", + "latitude_deg": "40.722514", + "longitude_deg": "-88.769108", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chenoa", + "scheduled_service": "no", + "gps_code": "11LL", + "local_code": "11LL" + }, + { + "id": "7720", + "ident": "11LS", + "type": "small_airport", + "name": "Jasmine Hill Airport", + "latitude_deg": "30.976321", + "longitude_deg": "-92.56888", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Glenmora", + "scheduled_service": "no", + "gps_code": "11LS", + "local_code": "11LS" + }, + { + "id": "7721", + "ident": "11M", + "type": "small_airport", + "name": "Fulton-Itawamba County Airport", + "latitude_deg": "34.35200119018555", + "longitude_deg": "-88.3772964477539", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Fulton", + "scheduled_service": "no", + "gps_code": "11M", + "local_code": "11M" + }, + { + "id": "7722", + "ident": "11MA", + "type": "small_airport", + "name": "Bulljump Airport", + "latitude_deg": "41.80730056762695", + "longitude_deg": "-70.7583999633789", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Wareham", + "scheduled_service": "no", + "gps_code": "11MA", + "local_code": "11MA" + }, + { + "id": "7723", + "ident": "11MD", + "type": "small_airport", + "name": "Tim's Airport", + "latitude_deg": "38.42002", + "longitude_deg": "-75.63168", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Salisbury", + "scheduled_service": "no", + "gps_code": "11MD", + "local_code": "11MD" + }, + { + "id": "7724", + "ident": "11MI", + "type": "heliport", + "name": "Wagner's Landing Heliport", + "latitude_deg": "42.738399505615234", + "longitude_deg": "-83.4374008178711", + "elevation_ft": "975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Clarkston", + "scheduled_service": "no", + "gps_code": "11MI", + "local_code": "11MI" + }, + { + "id": "7725", + "ident": "11MN", + "type": "closed", + "name": "Sixberry's Landing Seaplane Base", + "latitude_deg": "47.6777", + "longitude_deg": "-93.048203", + "elevation_ft": "1372", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Chisholm", + "scheduled_service": "no", + "keywords": "11MN" + }, + { + "id": "7726", + "ident": "11MO", + "type": "small_airport", + "name": "Redgate Ranch Airport", + "latitude_deg": "38.90169906616211", + "longitude_deg": "-91.63520050048828", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Williamsburg", + "scheduled_service": "no", + "gps_code": "11MO", + "local_code": "11MO" + }, + { + "id": "326133", + "ident": "11MT", + "type": "small_airport", + "name": "Lammers Airport", + "latitude_deg": "46.462777", + "longitude_deg": "-109.490555", + "elevation_ft": "4098", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Shawmut", + "scheduled_service": "no", + "gps_code": "11MT", + "local_code": "11MT" + }, + { + "id": "323292", + "ident": "11MU", + "type": "small_airport", + "name": "Rocky Top Airfield", + "latitude_deg": "36.657916", + "longitude_deg": "-92.465578", + "elevation_ft": "1273", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Gainesville", + "scheduled_service": "no", + "gps_code": "11MU", + "local_code": "11MU" + }, + { + "id": "7727", + "ident": "11N", + "type": "small_airport", + "name": "Candlelight Farms Airport", + "latitude_deg": "41.56679916381836", + "longitude_deg": "-73.46620178222656", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "New Milford", + "scheduled_service": "no", + "gps_code": "11N", + "local_code": "11N" + }, + { + "id": "7728", + "ident": "11NC", + "type": "heliport", + "name": "Sprint/Midatlantic Telecom Heliport", + "latitude_deg": "36.02149963378906", + "longitude_deg": "-78.5188980102539", + "elevation_ft": "427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Youngsville", + "scheduled_service": "no", + "gps_code": "11NC", + "local_code": "11NC" + }, + { + "id": "7729", + "ident": "11NE", + "type": "small_airport", + "name": "Kaan Airport", + "latitude_deg": "42.442501068115234", + "longitude_deg": "-103.91600036621094", + "elevation_ft": "4650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Harrison", + "scheduled_service": "no", + "gps_code": "11NE", + "local_code": "11NE" + }, + { + "id": "7730", + "ident": "11NJ", + "type": "heliport", + "name": "Southdown Heliport", + "latitude_deg": "40.64070129394531", + "longitude_deg": "-74.66419982910156", + "elevation_ft": "128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Pluckemin", + "scheduled_service": "no", + "gps_code": "11NJ", + "local_code": "11NJ" + }, + { + "id": "7731", + "ident": "11NK", + "type": "small_airport", + "name": "Hop House Airpark", + "latitude_deg": "42.91389846801758", + "longitude_deg": "-74.61170196533203", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Fort Plain", + "scheduled_service": "no", + "gps_code": "11NK", + "local_code": "11NK" + }, + { + "id": "321977", + "ident": "11NR", + "type": "heliport", + "name": "Dosher Heliport", + "latitude_deg": "33.9280833", + "longitude_deg": "-78.0203889", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Southport", + "scheduled_service": "no", + "gps_code": "11NR", + "local_code": "11NR" + }, + { + "id": "7732", + "ident": "11NY", + "type": "closed", + "name": "Saikkonen Airport", + "latitude_deg": "42.209162", + "longitude_deg": "-76.448979", + "elevation_ft": "969", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Spencer", + "scheduled_service": "no" + }, + { + "id": "7733", + "ident": "11OA", + "type": "small_airport", + "name": "Hide-A-Way Hills Resort Airport", + "latitude_deg": "39.64310073852539", + "longitude_deg": "-82.466796875", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bremen", + "scheduled_service": "no", + "gps_code": "11OA", + "local_code": "11OA" + }, + { + "id": "7734", + "ident": "11OG", + "type": "small_airport", + "name": "Unity Airport", + "latitude_deg": "44.45130157470703", + "longitude_deg": "-118.18699645996094", + "elevation_ft": "3975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Unity", + "scheduled_service": "no", + "gps_code": "11OG", + "local_code": "11OG" + }, + { + "id": "310052", + "ident": "11OH", + "type": "heliport", + "name": "Fayette County Memorial Hospital Heliport", + "latitude_deg": "39.547753", + "longitude_deg": "-83.427914", + "elevation_ft": "977", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Washington Court House", + "scheduled_service": "no", + "gps_code": "11OH", + "local_code": "11OH" + }, + { + "id": "7735", + "ident": "11OK", + "type": "closed", + "name": "Beefor Ranch Airport", + "latitude_deg": "35.06909", + "longitude_deg": "-97.38465", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Purcell", + "scheduled_service": "no", + "keywords": "11OK" + }, + { + "id": "7736", + "ident": "11OR", + "type": "small_airport", + "name": "Holiday Sky Ranch Airport", + "latitude_deg": "43.39350128173828", + "longitude_deg": "-123.28500366210938", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sutherlin", + "scheduled_service": "no", + "gps_code": "11OR", + "local_code": "11OR" + }, + { + "id": "7737", + "ident": "11PA", + "type": "closed", + "name": "Sherrie John Manor Heliport", + "latitude_deg": "40.2626", + "longitude_deg": "-77.045799", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mechanicsburg", + "scheduled_service": "no", + "keywords": "11PA" + }, + { + "id": "45744", + "ident": "11PN", + "type": "small_airport", + "name": "Eakin Airport", + "latitude_deg": "41.3525", + "longitude_deg": "-79.732778", + "elevation_ft": "1489", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Cranberry", + "scheduled_service": "no", + "gps_code": "11PN", + "local_code": "11PN" + }, + { + "id": "7738", + "ident": "11S", + "type": "small_airport", + "name": "Sekiu Airport", + "latitude_deg": "48.2661018371582", + "longitude_deg": "-124.31400299072266", + "elevation_ft": "355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Sekiu", + "scheduled_service": "no", + "gps_code": "11S", + "local_code": "11S" + }, + { + "id": "7739", + "ident": "11TA", + "type": "closed", + "name": "Conoco Heliport", + "latitude_deg": "29.7894", + "longitude_deg": "-95.611099", + "elevation_ft": "91", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "keywords": "11TA" + }, + { + "id": "7740", + "ident": "11TE", + "type": "small_airport", + "name": "Flying M Ranch Airport", + "latitude_deg": "32.30009841918945", + "longitude_deg": "-97.20449829101562", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Grandview", + "scheduled_service": "no", + "gps_code": "11TE", + "local_code": "11TE" + }, + { + "id": "7741", + "ident": "11TN", + "type": "closed", + "name": "Salem Field", + "latitude_deg": "36.474998", + "longitude_deg": "-87.366699", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Clarksville", + "scheduled_service": "no", + "keywords": "11TN" + }, + { + "id": "7742", + "ident": "11TS", + "type": "small_airport", + "name": "PT Enterprise D&W Ranch Airport", + "latitude_deg": "31.6579", + "longitude_deg": "-96.4114", + "elevation_ft": "526", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mexia", + "scheduled_service": "no", + "gps_code": "11TS", + "local_code": "11TS" + }, + { + "id": "7743", + "ident": "11TX", + "type": "small_airport", + "name": "Butler Airport", + "latitude_deg": "33.667813", + "longitude_deg": "-96.691971", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sherman", + "scheduled_service": "no", + "gps_code": "11TX", + "local_code": "11TX" + }, + { + "id": "322468", + "ident": "11UT", + "type": "small_airport", + "name": "Flying R Airport", + "latitude_deg": "41.2538528", + "longitude_deg": "-111.7110611", + "elevation_ft": "5060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Huntsville", + "scheduled_service": "no", + "gps_code": "11UT", + "local_code": "11UT", + "keywords": "KFYN, FYN" + }, + { + "id": "7744", + "ident": "11VA", + "type": "heliport", + "name": "Chesapeake General Hospital Heliport", + "latitude_deg": "36.741798400878906", + "longitude_deg": "-76.24410247802734", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Chesapeake", + "scheduled_service": "no", + "gps_code": "11VA", + "local_code": "11VA" + }, + { + "id": "7745", + "ident": "11VG", + "type": "small_airport", + "name": "Devil's Reach Landing Airport", + "latitude_deg": "38.20940017700195", + "longitude_deg": "-77.00060272216797", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Oak Grove", + "scheduled_service": "no", + "gps_code": "11VG", + "local_code": "11VG" + }, + { + "id": "7746", + "ident": "11WA", + "type": "small_airport", + "name": "Homeport Airport", + "latitude_deg": "47.523693", + "longitude_deg": "-117.469554", + "elevation_ft": "2320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Cheney", + "scheduled_service": "no", + "gps_code": "11WA", + "local_code": "11WA" + }, + { + "id": "7747", + "ident": "11WI", + "type": "closed", + "name": "Victory Memorial Hospital Heliport", + "latitude_deg": "44.963299", + "longitude_deg": "-90.933801", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Stanley", + "scheduled_service": "no", + "keywords": "11WI" + }, + { + "id": "7748", + "ident": "11WN", + "type": "seaplane_base", + "name": "Diedrich Seaplane Base", + "latitude_deg": "43.35419845581055", + "longitude_deg": "-89.57119750976562", + "elevation_ft": "774", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Lodi", + "scheduled_service": "no", + "gps_code": "11WN", + "local_code": "11WN" + }, + { + "id": "329719", + "ident": "11XS", + "type": "heliport", + "name": "Speed Shore Company Headquarters Heliport", + "latitude_deg": "29.597045", + "longitude_deg": "-95.369421", + "elevation_ft": "64", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pearland", + "scheduled_service": "no", + "gps_code": "11XS", + "local_code": "11XS" + }, + { + "id": "45923", + "ident": "11Y", + "type": "small_airport", + "name": "Flying Feathers Airport", + "latitude_deg": "44.061183", + "longitude_deg": "-88.194933", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Chilton", + "scheduled_service": "no", + "gps_code": "11Y", + "local_code": "11Y" + }, + { + "id": "7750", + "ident": "12A", + "type": "small_airport", + "name": "Arkavalley Airport", + "latitude_deg": "35.17839813", + "longitude_deg": "-92.33540344", + "elevation_ft": "329", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Conway", + "scheduled_service": "no", + "gps_code": "12A", + "local_code": "12A", + "keywords": "Formerly 12AR" + }, + { + "id": "7749", + "ident": "12AL", + "type": "heliport", + "name": "Goldberg Stagefield Army Heliport", + "latitude_deg": "31.416064", + "longitude_deg": "-85.463591", + "elevation_ft": "362", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Midland City", + "scheduled_service": "no", + "gps_code": "12AL", + "local_code": "12AL" + }, + { + "id": "45301", + "ident": "12AR", + "type": "small_airport", + "name": "Gibbons Airport", + "latitude_deg": "34.515444", + "longitude_deg": "-90.973722", + "elevation_ft": "178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Marvell", + "scheduled_service": "no", + "gps_code": "12AR", + "local_code": "12AR" + }, + { + "id": "7751", + "ident": "12AZ", + "type": "small_airport", + "name": "Ranta Strip", + "latitude_deg": "33.853901", + "longitude_deg": "-112.653001", + "elevation_ft": "1840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Morristown", + "scheduled_service": "no", + "gps_code": "12AZ", + "local_code": "12AZ", + "keywords": "05E" + }, + { + "id": "7752", + "ident": "12CA", + "type": "small_airport", + "name": "Faber Vineyards Airport", + "latitude_deg": "38.10960006713867", + "longitude_deg": "-121.16899871826172", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lodi", + "scheduled_service": "no", + "gps_code": "12CA", + "local_code": "12CA" + }, + { + "id": "7753", + "ident": "12CL", + "type": "small_airport", + "name": "Newton Field", + "latitude_deg": "36.156898498535156", + "longitude_deg": "-119.8499984741211", + "elevation_ft": "194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stratford", + "scheduled_service": "no", + "gps_code": "12CL", + "local_code": "12CL" + }, + { + "id": "322230", + "ident": "12CN", + "type": "small_airport", + "name": "Richter Airport", + "latitude_deg": "39.268306", + "longitude_deg": "-122.116689", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Maxwell", + "scheduled_service": "no", + "gps_code": "12CN", + "local_code": "12CN" + }, + { + "id": "7754", + "ident": "12CO", + "type": "small_airport", + "name": "Omega 1 STOLport", + "latitude_deg": "38.83549880981445", + "longitude_deg": "-107.81500244140625", + "elevation_ft": "6409", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Hotchkiss", + "scheduled_service": "no", + "gps_code": "12CO", + "local_code": "12CO" + }, + { + "id": "7755", + "ident": "12FA", + "type": "closed", + "name": "Hi-Acres Airport", + "latitude_deg": "28.4786", + "longitude_deg": "-81.7145", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Clermont", + "scheduled_service": "no", + "keywords": "12FA" + }, + { + "id": "7756", + "ident": "12FD", + "type": "heliport", + "name": "Osceola Regional Medical Center Heliport", + "latitude_deg": "28.298854", + "longitude_deg": "-81.409872", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Kissimmee", + "scheduled_service": "no", + "gps_code": "12FD", + "local_code": "12FD", + "keywords": "Osceola Regional Hospital Heliport" + }, + { + "id": "7757", + "ident": "12FL", + "type": "seaplane_base", + "name": "Timberlachen Seaplane Base", + "latitude_deg": "28.59280014038086", + "longitude_deg": "-81.40390014648438", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "12FL", + "local_code": "12FL" + }, + { + "id": "7758", + "ident": "12GA", + "type": "heliport", + "name": "Gwinnett Community Hospital D/B/A Eastside Medical Center Heliport", + "latitude_deg": "33.875", + "longitude_deg": "-84.0205993652", + "elevation_ft": "1065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Snellville", + "scheduled_service": "no", + "gps_code": "12GA", + "local_code": "12GA" + }, + { + "id": "7759", + "ident": "12GE", + "type": "seaplane_base", + "name": "Harvest Lake Seaplane Base", + "latitude_deg": "31.73080062866211", + "longitude_deg": "-81.35970306396484", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Riceboro", + "scheduled_service": "no", + "gps_code": "12GE", + "local_code": "12GE" + }, + { + "id": "7760", + "ident": "12I", + "type": "seaplane_base", + "name": "Brookville Reservoir Seaplane Base", + "latitude_deg": "39.51029968261719", + "longitude_deg": "-85", + "elevation_ft": "748", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Brookville", + "scheduled_service": "no", + "gps_code": "12I", + "local_code": "12I" + }, + { + "id": "7761", + "ident": "12IA", + "type": "small_airport", + "name": "Plueger Airfield", + "latitude_deg": "42.800498962402344", + "longitude_deg": "-96.13780212402344", + "elevation_ft": "1245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Lemars", + "scheduled_service": "no", + "gps_code": "12IA", + "local_code": "12IA" + }, + { + "id": "7762", + "ident": "12ID", + "type": "small_airport", + "name": "Flying B Ranch Landing Strip", + "latitude_deg": "44.96799850463867", + "longitude_deg": "-114.73300170898438", + "elevation_ft": "3647", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Salmon", + "scheduled_service": "no", + "gps_code": "12ID", + "local_code": "12ID" + }, + { + "id": "7763", + "ident": "12II", + "type": "small_airport", + "name": "Pentecost Airport", + "latitude_deg": "39.856272", + "longitude_deg": "-84.973464", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "12II", + "local_code": "12II" + }, + { + "id": "7764", + "ident": "12IL", + "type": "small_airport", + "name": "Hawker Airport", + "latitude_deg": "41.20000076293945", + "longitude_deg": "-88.0167007446289", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Kankakee", + "scheduled_service": "no", + "gps_code": "12IL", + "local_code": "12IL" + }, + { + "id": "7765", + "ident": "12IN", + "type": "small_airport", + "name": "J & S Field", + "latitude_deg": "38.11859893798828", + "longitude_deg": "-87.64749908447266", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Darmstadt", + "scheduled_service": "no", + "gps_code": "12IN", + "local_code": "12IN" + }, + { + "id": "7766", + "ident": "12IS", + "type": "heliport", + "name": "Mercer County Hospital Heliport", + "latitude_deg": "41.206084", + "longitude_deg": "-90.759419", + "elevation_ft": "729", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Aledo", + "scheduled_service": "no", + "gps_code": "12IS", + "local_code": "12IS" + }, + { + "id": "7767", + "ident": "12JY", + "type": "balloonport", + "name": "Clinton Elks Lodge Balloonport", + "latitude_deg": "40.604587", + "longitude_deg": "-74.921538", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Pittstown", + "scheduled_service": "no", + "gps_code": "12JY", + "local_code": "12JY" + }, + { + "id": "7768", + "ident": "12KS", + "type": "small_airport", + "name": "Sooter Airport", + "latitude_deg": "37.935298919677734", + "longitude_deg": "-97.48780059814453", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Sedgwick", + "scheduled_service": "no", + "gps_code": "12KS", + "local_code": "12KS" + }, + { + "id": "7769", + "ident": "12KY", + "type": "small_airport", + "name": "John M. Foree Airport", + "latitude_deg": "38.46030044555664", + "longitude_deg": "-85.1686019897461", + "elevation_ft": "853", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "New Castle", + "scheduled_service": "no", + "gps_code": "12KY", + "local_code": "12KY" + }, + { + "id": "7770", + "ident": "12LA", + "type": "small_airport", + "name": "Kml Airport", + "latitude_deg": "30.27589988708496", + "longitude_deg": "-93.3573989868164", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Sulphur", + "scheduled_service": "no", + "gps_code": "12LA", + "local_code": "12LA" + }, + { + "id": "7771", + "ident": "12LL", + "type": "closed", + "name": "Lambdins Field", + "latitude_deg": "37.540298", + "longitude_deg": "-89.486198", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Wolf Lake", + "scheduled_service": "no", + "keywords": "12LL" + }, + { + "id": "7772", + "ident": "12LS", + "type": "small_airport", + "name": "Hains Airstrip", + "latitude_deg": "30.178600311279297", + "longitude_deg": "-92.28500366210938", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Rayne", + "scheduled_service": "no", + "gps_code": "12LS", + "local_code": "12LS" + }, + { + "id": "7773", + "ident": "12MA", + "type": "heliport", + "name": "Mellen Street Heliport", + "latitude_deg": "42.20709991455078", + "longitude_deg": "-71.44270324707031", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Holliston", + "scheduled_service": "no", + "gps_code": "12MA", + "local_code": "12MA" + }, + { + "id": "7774", + "ident": "12MD", + "type": "heliport", + "name": "Ascension Saint Agnes Hospital Heliport", + "latitude_deg": "39.270546", + "longitude_deg": "-76.673863", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Baltimore", + "scheduled_service": "no", + "gps_code": "12MD", + "local_code": "12MD", + "keywords": "St. Agnes Health Care Heliport" + }, + { + "id": "7775", + "ident": "12ME", + "type": "small_airport", + "name": "Ridgeview Airport", + "latitude_deg": "44.32229995727539", + "longitude_deg": "-69.2072982788086", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Searsmont", + "scheduled_service": "no", + "gps_code": "12ME", + "local_code": "12ME" + }, + { + "id": "7776", + "ident": "12MI", + "type": "small_airport", + "name": "John's Airport", + "latitude_deg": "43.052551", + "longitude_deg": "-83.48977", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Davison", + "scheduled_service": "no", + "gps_code": "12MI", + "local_code": "12MI" + }, + { + "id": "7777", + "ident": "12MN", + "type": "closed", + "name": "Eastman Seaplane Base", + "latitude_deg": "46.480499", + "longitude_deg": "-94.281097", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Lake Hubert", + "scheduled_service": "no", + "keywords": "12MN" + }, + { + "id": "7778", + "ident": "12MO", + "type": "closed", + "name": "Ferguson Farms Airport", + "latitude_deg": "38.580601", + "longitude_deg": "-93.594704", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Windsor", + "scheduled_service": "no", + "gps_code": "12MO", + "local_code": "12MO" + }, + { + "id": "7779", + "ident": "12MS", + "type": "closed", + "name": "Green Acres Airport", + "latitude_deg": "31.088757", + "longitude_deg": "-91.318059", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Woodville", + "scheduled_service": "no", + "keywords": "12MS" + }, + { + "id": "7780", + "ident": "12MT", + "type": "small_airport", + "name": "Lincolns Field", + "latitude_deg": "48.774200439453125", + "longitude_deg": "-110.44200134277344", + "elevation_ft": "2931", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Hingham", + "scheduled_service": "no", + "gps_code": "12MT", + "local_code": "12MT" + }, + { + "id": "7781", + "ident": "12NC", + "type": "small_airport", + "name": "Atlantic Field Marine Corps Outlying Field", + "latitude_deg": "34.892099", + "longitude_deg": "-76.349029", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Atlantic", + "scheduled_service": "no", + "gps_code": "12NC", + "local_code": "12NC" + }, + { + "id": "7782", + "ident": "12ND", + "type": "small_airport", + "name": "Pietschtree Airstrip", + "latitude_deg": "48.2952995300293", + "longitude_deg": "-101.427001953125", + "elevation_ft": "1566", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "12ND", + "local_code": "12ND" + }, + { + "id": "7783", + "ident": "12NE", + "type": "small_airport", + "name": "Reisig Brothers Airport", + "latitude_deg": "41.90660095214844", + "longitude_deg": "-103.69999694824219", + "elevation_ft": "3985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Scottsbluff", + "scheduled_service": "no", + "gps_code": "12NE", + "local_code": "12NE" + }, + { + "id": "45523", + "ident": "12NH", + "type": "small_airport", + "name": "Gile Pond Airport", + "latitude_deg": "43.495278", + "longitude_deg": "-71.654444", + "elevation_ft": "485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Sanbornton", + "scheduled_service": "no", + "gps_code": "12NH", + "local_code": "12NH" + }, + { + "id": "7784", + "ident": "12NJ", + "type": "closed", + "name": "Penske 2 Heliport", + "latitude_deg": "40.883999", + "longitude_deg": "-74.067919", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Lodi", + "scheduled_service": "no", + "keywords": "12NJ" + }, + { + "id": "7785", + "ident": "12NK", + "type": "small_airport", + "name": "Westport Airport", + "latitude_deg": "44.15840148925781", + "longitude_deg": "-73.43289947509766", + "elevation_ft": "276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Westport", + "scheduled_service": "no", + "gps_code": "12NK", + "local_code": "12NK" + }, + { + "id": "7786", + "ident": "12NM", + "type": "closed", + "name": "Columbus Stockyards Airport", + "latitude_deg": "31.80835", + "longitude_deg": "-107.659401", + "elevation_ft": "4017", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Columbus", + "scheduled_service": "no", + "keywords": "12NM" + }, + { + "id": "349876", + "ident": "12NR", + "type": "heliport", + "name": "Brunswick Novant Medical Center Heliport", + "latitude_deg": "34.029945", + "longitude_deg": "-78.260572", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Supply", + "scheduled_service": "no", + "gps_code": "12NR", + "local_code": "12NR" + }, + { + "id": "7787", + "ident": "12NY", + "type": "closed", + "name": "TGP-245 Heliport", + "latitude_deg": "42.873402", + "longitude_deg": "-75.170998", + "elevation_ft": "1440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "West Winfield", + "scheduled_service": "no", + "keywords": "12NY" + }, + { + "id": "45951", + "ident": "12OA", + "type": "heliport", + "name": "ProMedica Defiance Regional Hospital Heliport", + "latitude_deg": "41.298199", + "longitude_deg": "-84.377387", + "elevation_ft": "709", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Defiance", + "scheduled_service": "no", + "gps_code": "12OA", + "local_code": "12OA", + "keywords": "Defiance Regional Medical Center Heliport" + }, + { + "id": "7788", + "ident": "12OH", + "type": "small_airport", + "name": "McGregor Airfield", + "latitude_deg": "39.834773", + "longitude_deg": "-84.333486", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Brookville", + "scheduled_service": "no", + "gps_code": "12OH", + "local_code": "12OH" + }, + { + "id": "7789", + "ident": "12OK", + "type": "closed", + "name": "Expressway Airpark", + "latitude_deg": "35.541302", + "longitude_deg": "-97.453102", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "keywords": "12OK" + }, + { + "id": "7790", + "ident": "12OR", + "type": "small_airport", + "name": "Skinner Ranch Airport", + "latitude_deg": "42.951302", + "longitude_deg": "-117.281998", + "elevation_ft": "4273", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Jordan Valley", + "scheduled_service": "no", + "gps_code": "12OR", + "local_code": "12OR" + }, + { + "id": "7791", + "ident": "12PA", + "type": "heliport", + "name": "Helicopter Applicators Inc Heliport", + "latitude_deg": "39.8495", + "longitude_deg": "-77.184167", + "elevation_ft": "612", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Gettysburg", + "scheduled_service": "yes", + "gps_code": "12PA", + "local_code": "12PA" + }, + { + "id": "7792", + "ident": "12PN", + "type": "heliport", + "name": "WCAU Heliport", + "latitude_deg": "40.007112", + "longitude_deg": "-75.216197", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "12PN", + "local_code": "12PN" + }, + { + "id": "7793", + "ident": "12PR", + "type": "heliport", + "name": "Villamil-304 Ponce De Leon Heliport", + "latitude_deg": "18.42259979248047", + "longitude_deg": "-66.05699920654297", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "San Juan", + "scheduled_service": "no", + "gps_code": "12PR", + "local_code": "12PR" + }, + { + "id": "7794", + "ident": "12PS", + "type": "heliport", + "name": "Siple Heliport", + "latitude_deg": "39.72380065917969", + "longitude_deg": "-75.88140106201172", + "elevation_ft": "419", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lewisville", + "scheduled_service": "no", + "gps_code": "12PS", + "local_code": "12PS" + }, + { + "id": "7795", + "ident": "12S", + "type": "small_airport", + "name": "Monument Municipal Airport", + "latitude_deg": "44.8317985534668", + "longitude_deg": "-119.43000030517578", + "elevation_ft": "2323", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Monument", + "scheduled_service": "no", + "gps_code": "12S", + "local_code": "12S", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monument_Municipal_Airport" + }, + { + "id": "7796", + "ident": "12SC", + "type": "small_airport", + "name": "Over the Hill Airport", + "latitude_deg": "34.14139938354492", + "longitude_deg": "-80.74669647216797", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Elgin", + "scheduled_service": "no", + "gps_code": "12SC", + "local_code": "12SC" + }, + { + "id": "7797", + "ident": "12T", + "type": "heliport", + "name": "Ferris Red Oak Municipal Heliport", + "latitude_deg": "32.529866", + "longitude_deg": "-96.731122", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ferris", + "scheduled_service": "no", + "local_code": "12T" + }, + { + "id": "7798", + "ident": "12TA", + "type": "heliport", + "name": "Channel Two Heliport", + "latitude_deg": "29.690200805664062", + "longitude_deg": "-95.52770233154297", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "12TA", + "local_code": "12TA" + }, + { + "id": "7799", + "ident": "12TE", + "type": "small_airport", + "name": "Curtis Ranch Field", + "latitude_deg": "31.312844", + "longitude_deg": "-99.24048", + "elevation_ft": "1740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rochelle", + "scheduled_service": "no", + "gps_code": "12TE", + "local_code": "12TE" + }, + { + "id": "7800", + "ident": "12TN", + "type": "small_airport", + "name": "Riley Creek Airport", + "latitude_deg": "35.823699951171875", + "longitude_deg": "-84.53880310058594", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Kingston", + "scheduled_service": "no", + "gps_code": "12TN", + "local_code": "12TN" + }, + { + "id": "7801", + "ident": "12TS", + "type": "small_airport", + "name": "Blo Airport", + "latitude_deg": "32.908501", + "longitude_deg": "-97.977303", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineral Wells", + "scheduled_service": "no", + "gps_code": "12TS", + "local_code": "12TS", + "keywords": "Bronco Stagefield Army Heliport" + }, + { + "id": "347056", + "ident": "12TT", + "type": "small_airport", + "name": "D An P Farm Airport", + "latitude_deg": "33.593768", + "longitude_deg": "-97.100816", + "elevation_ft": "771", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gainesville", + "scheduled_service": "no", + "gps_code": "12TT", + "local_code": "12TT" + }, + { + "id": "7802", + "ident": "12TX", + "type": "small_airport", + "name": "Griffin Airport", + "latitude_deg": "30.821253", + "longitude_deg": "-98.081024", + "elevation_ft": "1235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bertram", + "scheduled_service": "no", + "gps_code": "12TX", + "local_code": "12TX" + }, + { + "id": "7803", + "ident": "12VA", + "type": "small_airport", + "name": "Hop-Along Airport", + "latitude_deg": "37.78810119628906", + "longitude_deg": "-79.7677993774414", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Clifton Forge", + "scheduled_service": "no", + "gps_code": "12VA", + "local_code": "12VA" + }, + { + "id": "7804", + "ident": "12WA", + "type": "small_airport", + "name": "Fowlers Northwest 40 Airport", + "latitude_deg": "47.520577", + "longitude_deg": "-117.462827", + "elevation_ft": "2313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Spokane", + "scheduled_service": "no", + "gps_code": "12WA", + "local_code": "12WA" + }, + { + "id": "7805", + "ident": "12WI", + "type": "heliport", + "name": "Memorial Hospital of Taylor County Heliport", + "latitude_deg": "45.13589859008789", + "longitude_deg": "-90.3563003540039", + "elevation_ft": "1435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Medford", + "scheduled_service": "no", + "gps_code": "12WI", + "local_code": "12WI" + }, + { + "id": "45905", + "ident": "12WT", + "type": "closed", + "name": "Walker Airport", + "latitude_deg": "46.911", + "longitude_deg": "-117.218667", + "elevation_ft": "2450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Palouse", + "scheduled_service": "no", + "keywords": "12WT" + }, + { + "id": "321472", + "ident": "12WV", + "type": "small_airport", + "name": "Crazy Horse Airport", + "latitude_deg": "38.343301", + "longitude_deg": "-82.112149", + "elevation_ft": "603", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Hamlin", + "scheduled_service": "no", + "gps_code": "12WV", + "local_code": "12WV" + }, + { + "id": "45934", + "ident": "12WY", + "type": "small_airport", + "name": "Black Diamond Airport", + "latitude_deg": "44.45", + "longitude_deg": "-108.384667", + "elevation_ft": "4400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "12WY", + "local_code": "12WY" + }, + { + "id": "321471", + "ident": "12XA", + "type": "small_airport", + "name": "Wood Farm Airfield", + "latitude_deg": "32.0393333", + "longitude_deg": "-102.3485833", + "elevation_ft": "2950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gardendale", + "scheduled_service": "no", + "gps_code": "12XA", + "local_code": "12XA" + }, + { + "id": "7806", + "ident": "12XS", + "type": "small_airport", + "name": "Mc Croskey Field", + "latitude_deg": "34.954448", + "longitude_deg": "-91.837991", + "elevation_ft": "253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Butlerville", + "scheduled_service": "no", + "gps_code": "12XS", + "local_code": "12XS" + }, + { + "id": "7807", + "ident": "13AK", + "type": "small_airport", + "name": "Satterbergs Airport", + "latitude_deg": "61.654701232910156", + "longitude_deg": "-149.89999389648438", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "13AK", + "local_code": "13AK" + }, + { + "id": "7808", + "ident": "13AL", + "type": "heliport", + "name": "Hatch Stagefield Army Heliport", + "latitude_deg": "31.358999252319336", + "longitude_deg": "-85.62049865722656", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker/Ozark", + "scheduled_service": "no", + "gps_code": "13AL", + "local_code": "13AL" + }, + { + "id": "7809", + "ident": "13AR", + "type": "heliport", + "name": "Jrmc Heliport", + "latitude_deg": "34.187599182128906", + "longitude_deg": "-92.01789855957031", + "elevation_ft": "227", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Pine Bluff", + "scheduled_service": "no", + "gps_code": "13AR", + "local_code": "13AR" + }, + { + "id": "7810", + "ident": "13AZ", + "type": "small_airport", + "name": "Waltenberry Field Ultralightport", + "latitude_deg": "33.535", + "longitude_deg": "-112.853472222", + "elevation_ft": "1213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonopah", + "scheduled_service": "no", + "gps_code": "13AZ", + "local_code": "13AZ" + }, + { + "id": "7811", + "ident": "13CA", + "type": "heliport", + "name": "MH15 Heaps Peak US Forest Service Heliport", + "latitude_deg": "34.235211", + "longitude_deg": "-117.154799", + "elevation_ft": "6266", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lake Arrowhead", + "scheduled_service": "no", + "gps_code": "13CA", + "local_code": "13CA" + }, + { + "id": "7812", + "ident": "13CL", + "type": "small_airport", + "name": "Maine Prairie Airport", + "latitude_deg": "38.38130187988281", + "longitude_deg": "-121.8239974975586", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Dixon", + "scheduled_service": "no", + "gps_code": "13CL", + "local_code": "13CL" + }, + { + "id": "7813", + "ident": "13CO", + "type": "heliport", + "name": "Mann Heliport", + "latitude_deg": "40.555599212646484", + "longitude_deg": "-106.84400177001953", + "elevation_ft": "7500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Steamboat Springs", + "scheduled_service": "no", + "gps_code": "13CO", + "local_code": "13CO" + }, + { + "id": "22103", + "ident": "13D", + "type": "heliport", + "name": "Ponderosa Heliport", + "latitude_deg": "42.629120027899994", + "longitude_deg": "-83.683065176", + "elevation_ft": "1017", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Highland", + "scheduled_service": "no", + "gps_code": "13D", + "local_code": "13D", + "keywords": "Formerly MI96" + }, + { + "id": "7814", + "ident": "13FA", + "type": "small_airport", + "name": "Earle Airpark", + "latitude_deg": "29.68928", + "longitude_deg": "-81.50689", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Hastings", + "scheduled_service": "no", + "gps_code": "13FA", + "local_code": "13FA" + }, + { + "id": "7815", + "ident": "13FD", + "type": "closed", + "name": "Yelvington Heliport", + "latitude_deg": "28.5186", + "longitude_deg": "-81.383102", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "keywords": "13FD" + }, + { + "id": "7816", + "ident": "13FL", + "type": "heliport", + "name": "Gator Lake Heliport", + "latitude_deg": "28.277826", + "longitude_deg": "-82.32045", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Wesley Chapel", + "scheduled_service": "no", + "gps_code": "13FL", + "local_code": "13FL" + }, + { + "id": "7817", + "ident": "13GA", + "type": "small_airport", + "name": "Oak Ridge Plantation Airport", + "latitude_deg": "31.3666", + "longitude_deg": "-83.754898", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Sumner", + "scheduled_service": "no", + "gps_code": "13GA", + "local_code": "13GA" + }, + { + "id": "7818", + "ident": "13GE", + "type": "small_airport", + "name": "Holt Airpark", + "latitude_deg": "32.360801696777344", + "longitude_deg": "-82.31809997558594", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Oak Park", + "scheduled_service": "no", + "gps_code": "13GE", + "local_code": "13GE" + }, + { + "id": "7819", + "ident": "13IA", + "type": "small_airport", + "name": "Hillside Stables Airport", + "latitude_deg": "42.04570007324219", + "longitude_deg": "-90.19110107421875", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Sabula", + "scheduled_service": "no", + "gps_code": "13IA", + "local_code": "13IA" + }, + { + "id": "7820", + "ident": "13ID", + "type": "small_airport", + "name": "Silva Ranch Airport", + "latitude_deg": "44.2666015625", + "longitude_deg": "-115.0009994506836", + "elevation_ft": "6400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Stanley", + "scheduled_service": "no", + "gps_code": "13ID", + "local_code": "13ID" + }, + { + "id": "7821", + "ident": "13II", + "type": "heliport", + "name": "St Joseph Medical Center Heliport", + "latitude_deg": "41.07870101928711", + "longitude_deg": "-85.14969635009766", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Fort Wayne", + "scheduled_service": "no", + "gps_code": "13II", + "local_code": "13II" + }, + { + "id": "350762", + "ident": "13IL", + "type": "heliport", + "name": "Midwest Medical Center Heliport", + "latitude_deg": "42.449757", + "longitude_deg": "-90.456925", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Galena", + "scheduled_service": "no", + "gps_code": "13IL", + "local_code": "13IL" + }, + { + "id": "7822", + "ident": "13IN", + "type": "small_airport", + "name": "Gage Airport", + "latitude_deg": "40.81529998779297", + "longitude_deg": "-84.92769622802734", + "elevation_ft": "814", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Decatur", + "scheduled_service": "no", + "gps_code": "13IN", + "local_code": "13IN" + }, + { + "id": "7823", + "ident": "13JY", + "type": "heliport", + "name": "Hess Port Reading Heliport", + "latitude_deg": "40.64440155029297", + "longitude_deg": "-74.24530029296875", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Port Reading", + "scheduled_service": "no", + "gps_code": "13JY", + "local_code": "13JY" + }, + { + "id": "7824", + "ident": "13KS", + "type": "small_airport", + "name": "Daniel's Landing Airport", + "latitude_deg": "37.69779968261719", + "longitude_deg": "-97.11029815673828", + "elevation_ft": "1325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Andover", + "scheduled_service": "no", + "gps_code": "13KS", + "local_code": "13KS" + }, + { + "id": "7825", + "ident": "13KY", + "type": "small_airport", + "name": "Miles Airport", + "latitude_deg": "37.704812", + "longitude_deg": "-87.158586", + "elevation_ft": "407", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Owensboro", + "scheduled_service": "no", + "gps_code": "13KY", + "local_code": "13KY" + }, + { + "id": "7826", + "ident": "13LA", + "type": "heliport", + "name": "Evergreen Heliport", + "latitude_deg": "29.783599853515625", + "longitude_deg": "-93.20850372314453", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cameron", + "scheduled_service": "no", + "gps_code": "13LA", + "local_code": "13LA" + }, + { + "id": "7827", + "ident": "13LL", + "type": "heliport", + "name": "Henry Valve Company Heliport", + "latitude_deg": "41.908889035799994", + "longitude_deg": "-87.87408247590001", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Melrose Park", + "scheduled_service": "no", + "gps_code": "13LL", + "local_code": "13LL" + }, + { + "id": "7828", + "ident": "13LS", + "type": "small_airport", + "name": "Tee Brad's Airport", + "latitude_deg": "29.993900299072266", + "longitude_deg": "-92.3855972290039", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kaplan", + "scheduled_service": "no", + "gps_code": "13LS", + "local_code": "13LS" + }, + { + "id": "7829", + "ident": "13M", + "type": "balloonport", + "name": "Aeronut Park Balloonport", + "latitude_deg": "42.60419845581055", + "longitude_deg": "-83.85859680175781", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Howell", + "scheduled_service": "no", + "gps_code": "13M", + "local_code": "13M" + }, + { + "id": "7830", + "ident": "13MA", + "type": "closed", + "name": "Metropolitan Airport", + "latitude_deg": "42.223301", + "longitude_deg": "-72.311401", + "elevation_ft": "418", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Palmer", + "scheduled_service": "no", + "iata_code": "PMX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Metropolitan_Airport", + "keywords": "13MA, PMX" + }, + { + "id": "7831", + "ident": "13ME", + "type": "small_airport", + "name": "Socatean Bay Airport", + "latitude_deg": "45.77640151977539", + "longitude_deg": "-69.8093032836914", + "elevation_ft": "1179", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Rockwood", + "scheduled_service": "no", + "gps_code": "13ME", + "local_code": "13ME" + }, + { + "id": "7832", + "ident": "13MI", + "type": "heliport", + "name": "Lee Memorial Hospital Heliport", + "latitude_deg": "41.983699798583984", + "longitude_deg": "-86.11579895019531", + "elevation_ft": "748", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Dowagiac", + "scheduled_service": "no", + "gps_code": "13MI", + "local_code": "13MI" + }, + { + "id": "7833", + "ident": "13MN", + "type": "small_airport", + "name": "Melby Airport", + "latitude_deg": "46.100799560546875", + "longitude_deg": "-95.8313980102539", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Ashby", + "scheduled_service": "no", + "gps_code": "13MN", + "local_code": "13MN" + }, + { + "id": "7834", + "ident": "13MO", + "type": "small_airport", + "name": "Domeyer Airport", + "latitude_deg": "37.67639923095703", + "longitude_deg": "-91.70649719238281", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lenox", + "scheduled_service": "no", + "gps_code": "13MO", + "local_code": "13MO" + }, + { + "id": "7835", + "ident": "13MS", + "type": "small_airport", + "name": "Greener Pastures Airpark", + "latitude_deg": "30.63330078125", + "longitude_deg": "-89.66390228271484", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Carriere", + "scheduled_service": "no", + "gps_code": "13MS", + "local_code": "13MS" + }, + { + "id": "7836", + "ident": "13MT", + "type": "small_airport", + "name": "Sorenson Airport", + "latitude_deg": "48.52080154418945", + "longitude_deg": "-110.11299896240234", + "elevation_ft": "2873", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Kremlin", + "scheduled_service": "no", + "gps_code": "13MT", + "local_code": "13MT" + }, + { + "id": "7837", + "ident": "13N", + "type": "closed", + "name": "Trinca Airport", + "latitude_deg": "40.966801", + "longitude_deg": "-74.780197", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Andover", + "scheduled_service": "no", + "keywords": "13N" + }, + { + "id": "7838", + "ident": "13NC", + "type": "small_airport", + "name": "Oak Grove Marine Corps Outlying Field", + "latitude_deg": "35.025006", + "longitude_deg": "-77.255945", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Pollocksville", + "scheduled_service": "no", + "gps_code": "13NC", + "local_code": "13NC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marine_Corps_Outlying_Field_Oak_Grove" + }, + { + "id": "7839", + "ident": "13NE", + "type": "small_airport", + "name": "Hock Airport", + "latitude_deg": "40.31669998168945", + "longitude_deg": "-100.80899810791016", + "elevation_ft": "2777", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Culbertson", + "scheduled_service": "no", + "gps_code": "13NE", + "local_code": "13NE" + }, + { + "id": "346084", + "ident": "13NH", + "type": "heliport", + "name": "Coffin Brook Landing Heliport", + "latitude_deg": "43.423889", + "longitude_deg": "-71.248722", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Alton", + "scheduled_service": "no", + "gps_code": "13NH", + "local_code": "13NH" + }, + { + "id": "7840", + "ident": "13NJ", + "type": "heliport", + "name": "Wyeth-Ayerst Research Heliport", + "latitude_deg": "40.3651008605957", + "longitude_deg": "-74.58290100097656", + "elevation_ft": "117", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "13NJ", + "local_code": "13NJ" + }, + { + "id": "7841", + "ident": "13NK", + "type": "heliport", + "name": "Quaker Valley Farm Heliport", + "latitude_deg": "41.59749984741211", + "longitude_deg": "-73.53150177001953", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Pawling", + "scheduled_service": "no", + "gps_code": "13NK", + "local_code": "13NK" + }, + { + "id": "7842", + "ident": "13NM", + "type": "small_airport", + "name": "Beaverhead Airstrip", + "latitude_deg": "33.419437", + "longitude_deg": "-108.142216", + "elevation_ft": "7378", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Magdalena", + "scheduled_service": "no", + "gps_code": "13NM", + "local_code": "13NM" + }, + { + "id": "346550", + "ident": "13NR", + "type": "small_airport", + "name": "Dusenbury Field", + "latitude_deg": "36.297634", + "longitude_deg": "-80.16207", + "elevation_ft": "646", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Walnut Cove", + "scheduled_service": "no", + "gps_code": "13NR", + "local_code": "13NR" + }, + { + "id": "7843", + "ident": "13NY", + "type": "heliport", + "name": "Stony Brook University Hospital Heliport", + "latitude_deg": "40.909885", + "longitude_deg": "-73.11465", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Stony Brook", + "scheduled_service": "no", + "gps_code": "13NY", + "local_code": "13NY", + "keywords": "Health Sciences Center University Hospital" + }, + { + "id": "7844", + "ident": "13OH", + "type": "closed", + "name": "Rose Field", + "latitude_deg": "41.330299", + "longitude_deg": "-84.298301", + "elevation_ft": "728", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Jewell", + "scheduled_service": "no", + "keywords": "13OH" + }, + { + "id": "7845", + "ident": "13OI", + "type": "heliport", + "name": "Cleveland Clinic, Union Hospital Heliport", + "latitude_deg": "40.515549", + "longitude_deg": "-81.456901", + "elevation_ft": "926", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dover", + "scheduled_service": "no", + "gps_code": "13OI", + "local_code": "13OI" + }, + { + "id": "7846", + "ident": "13OK", + "type": "heliport", + "name": "McAlester Regional Health Center Heliport", + "latitude_deg": "34.936199", + "longitude_deg": "-95.748901", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "McAlester", + "scheduled_service": "no", + "gps_code": "13OK", + "local_code": "13OK" + }, + { + "id": "7847", + "ident": "13OR", + "type": "small_airport", + "name": "Aubrey Mountain Airstrip", + "latitude_deg": "43.740699768066406", + "longitude_deg": "-122.4260025024414", + "elevation_ft": "1680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Oakridge", + "scheduled_service": "no", + "gps_code": "13OR", + "local_code": "13OR" + }, + { + "id": "7848", + "ident": "13PA", + "type": "small_airport", + "name": "Rigrtona Airport", + "latitude_deg": "41.68259811401367", + "longitude_deg": "-79.4520034790039", + "elevation_ft": "1703", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tidioute", + "scheduled_service": "no", + "gps_code": "13PA", + "local_code": "13PA" + }, + { + "id": "7849", + "ident": "13PN", + "type": "small_airport", + "name": "Richland Acres Ultralightport", + "latitude_deg": "40.45429992675781", + "longitude_deg": "-75.30460357666016", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Quakertown", + "scheduled_service": "no", + "gps_code": "13PN", + "local_code": "13PN" + }, + { + "id": "7850", + "ident": "13PS", + "type": "heliport", + "name": "St. Luke's/Pennstar Flight Center Heliport", + "latitude_deg": "40.739200592041016", + "longitude_deg": "-75.33390045166016", + "elevation_ft": "488", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Nazareth", + "scheduled_service": "no", + "gps_code": "13PS", + "local_code": "13PS" + }, + { + "id": "7851", + "ident": "13Q", + "type": "small_airport", + "name": "Jewett Mesa Airport", + "latitude_deg": "34.004229", + "longitude_deg": "-108.67992", + "elevation_ft": "7681", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Quemado", + "scheduled_service": "no", + "local_code": "13Q" + }, + { + "id": "7852", + "ident": "13S", + "type": "seaplane_base", + "name": "Lake Louise Seaplane Base", + "latitude_deg": "62.282901763916016", + "longitude_deg": "-146.5189971923828", + "elevation_ft": "2362", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Lake Louise", + "scheduled_service": "no", + "gps_code": "13S", + "local_code": "13S" + }, + { + "id": "7853", + "ident": "13SC", + "type": "closed", + "name": "Grassy Pond Heliport", + "latitude_deg": "35.139198", + "longitude_deg": "-81.696404", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Gaffney", + "scheduled_service": "no", + "keywords": "13SC" + }, + { + "id": "7854", + "ident": "13TA", + "type": "closed", + "name": "KBMT-TV Heliport", + "latitude_deg": "30.073298", + "longitude_deg": "-94.133797", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beaumont", + "scheduled_service": "no", + "keywords": "13TA" + }, + { + "id": "7855", + "ident": "13TE", + "type": "small_airport", + "name": "Varisco Airport", + "latitude_deg": "30.6560001373291", + "longitude_deg": "-96.53829956054688", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bryan", + "scheduled_service": "no", + "gps_code": "13TE", + "local_code": "13TE" + }, + { + "id": "7856", + "ident": "13TN", + "type": "heliport", + "name": "Bear Mountain Heliport", + "latitude_deg": "35.59830093383789", + "longitude_deg": "-84.26750183105469", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Vonore", + "scheduled_service": "no", + "gps_code": "13TN", + "local_code": "13TN" + }, + { + "id": "7857", + "ident": "13TS", + "type": "small_airport", + "name": "Van Es Ranch Airport", + "latitude_deg": "27.455299377441406", + "longitude_deg": "-98.92639923095703", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Oilton", + "scheduled_service": "no", + "gps_code": "13TS", + "local_code": "13TS" + }, + { + "id": "7858", + "ident": "13TX", + "type": "closed", + "name": "Allison Ranch Airport", + "latitude_deg": "30.533561", + "longitude_deg": "-100.451882", + "elevation_ft": "2350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no", + "keywords": "13TX" + }, + { + "id": "7859", + "ident": "13VA", + "type": "heliport", + "name": "State Police Area 48 Office Heliport", + "latitude_deg": "38.823853", + "longitude_deg": "-77.283073", + "elevation_ft": "395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fairfax", + "scheduled_service": "no", + "gps_code": "13VA", + "local_code": "13VA", + "keywords": "7th Division State Police" + }, + { + "id": "7860", + "ident": "13VG", + "type": "heliport", + "name": "May Heliport", + "latitude_deg": "37.307899475097656", + "longitude_deg": "-80.10009765625", + "elevation_ft": "1430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "13VG", + "local_code": "13VG" + }, + { + "id": "7861", + "ident": "13W", + "type": "small_airport", + "name": "Camano Island Airfield", + "latitude_deg": "48.25699996948242", + "longitude_deg": "-122.43699645996094", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Stanwood", + "scheduled_service": "no", + "gps_code": "13W", + "local_code": "13W" + }, + { + "id": "7862", + "ident": "13WA", + "type": "closed", + "name": "Fsa - Everett Heliport", + "latitude_deg": "47.9365", + "longitude_deg": "-122.25", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Everett", + "scheduled_service": "no", + "keywords": "13WA" + }, + { + "id": "7863", + "ident": "13WI", + "type": "small_airport", + "name": "Nowatzski Field", + "latitude_deg": "43.6963996887207", + "longitude_deg": "-88.99960327148438", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Markesan", + "scheduled_service": "no", + "gps_code": "13WI", + "local_code": "13WI" + }, + { + "id": "346847", + "ident": "13XA", + "type": "small_airport", + "name": "Flying 5B Ranch Airport", + "latitude_deg": "31.951789", + "longitude_deg": "-97.834888", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Iredell", + "scheduled_service": "no", + "gps_code": "13XA", + "local_code": "13XA" + }, + { + "id": "7864", + "ident": "13XS", + "type": "heliport", + "name": "Presbyterian Hospital Of Rockwall Heliport", + "latitude_deg": "32.884444", + "longitude_deg": "-96.464444", + "elevation_ft": "532", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rockwall", + "scheduled_service": "no", + "gps_code": "13XS", + "local_code": "13XS" + }, + { + "id": "7865", + "ident": "13Y", + "type": "small_airport", + "name": "Littlefork Muni/Hanover Airport", + "latitude_deg": "48.41659927", + "longitude_deg": "-93.58630371", + "elevation_ft": "1145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Littlefork", + "scheduled_service": "no", + "gps_code": "13Y", + "local_code": "13Y" + }, + { + "id": "7866", + "ident": "13Z", + "type": "seaplane_base", + "name": "Loring Seaplane Base", + "latitude_deg": "55.601299", + "longitude_deg": "-131.636993", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Loring", + "scheduled_service": "no", + "gps_code": "P13Z", + "iata_code": "WLR", + "local_code": "13Z", + "keywords": "Naha Bay" + }, + { + "id": "7867", + "ident": "14AK", + "type": "small_airport", + "name": "Four Corners Airport", + "latitude_deg": "61.60150146484375", + "longitude_deg": "-149.2480010986328", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "14AK", + "local_code": "14AK" + }, + { + "id": "7868", + "ident": "14AL", + "type": "heliport", + "name": "Highbluff Stagefield Army Heliport", + "latitude_deg": "31.153499603271484", + "longitude_deg": "-85.73370361328125", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker/Hartford", + "scheduled_service": "no", + "gps_code": "14AL", + "local_code": "14AL" + }, + { + "id": "7869", + "ident": "14AR", + "type": "small_airport", + "name": "Rice-Bell Field Airport", + "latitude_deg": "35.0527992249", + "longitude_deg": "-90.6750030518", + "elevation_ft": "221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Forrest City", + "scheduled_service": "no", + "gps_code": "14AR", + "local_code": "14AR" + }, + { + "id": "7870", + "ident": "14AZ", + "type": "small_airport", + "name": "Ruby Star Airpark", + "latitude_deg": "31.909494", + "longitude_deg": "-111.120293", + "elevation_ft": "4025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sahuarita", + "scheduled_service": "no", + "gps_code": "14AZ", + "local_code": "14AZ", + "keywords": "sahuarita, ruby star" + }, + { + "id": "7871", + "ident": "14CA", + "type": "heliport", + "name": "Hoag Memorial Hospital Heliport", + "latitude_deg": "33.625182", + "longitude_deg": "-117.930799", + "elevation_ft": "94", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Newport Beach", + "scheduled_service": "no", + "gps_code": "14CA", + "local_code": "14CA" + }, + { + "id": "7872", + "ident": "14CL", + "type": "heliport", + "name": "Foothill Presbyterian Hospital Heliport", + "latitude_deg": "34.133487", + "longitude_deg": "-117.870677", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendora", + "scheduled_service": "no", + "gps_code": "14CL", + "local_code": "14CL" + }, + { + "id": "7873", + "ident": "14CO", + "type": "small_airport", + "name": "Good Pasture Airport", + "latitude_deg": "38.097198486328125", + "longitude_deg": "-104.91000366210938", + "elevation_ft": "6000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Beulah", + "scheduled_service": "no", + "gps_code": "14CO", + "local_code": "14CO" + }, + { + "id": "7874", + "ident": "14CT", + "type": "heliport", + "name": "Mashantucket Pequot Tribal Nation Heliport", + "latitude_deg": "41.484699", + "longitude_deg": "-71.9729", + "elevation_ft": "124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Mashantucket", + "scheduled_service": "no", + "gps_code": "14CT", + "local_code": "14CT" + }, + { + "id": "7875", + "ident": "14FA", + "type": "closed", + "name": "Burrs Strip", + "latitude_deg": "25.568621", + "longitude_deg": "-80.398822", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "keywords": "14FA" + }, + { + "id": "7876", + "ident": "14FD", + "type": "closed", + "name": "Sunshine Farms Airport", + "latitude_deg": "29.9491", + "longitude_deg": "-81.490402", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St Augustine", + "scheduled_service": "no", + "keywords": "14FD" + }, + { + "id": "7877", + "ident": "14FL", + "type": "closed", + "name": "Wells Flying Service Airport", + "latitude_deg": "30.873458", + "longitude_deg": "-87.170296", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jay", + "scheduled_service": "no", + "keywords": "14FL" + }, + { + "id": "7878", + "ident": "14GA", + "type": "heliport", + "name": "Latham Creek Heliport", + "latitude_deg": "34.33649826049805", + "longitude_deg": "-83.94349670410156", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Gainesville", + "scheduled_service": "no", + "gps_code": "14GA", + "local_code": "14GA" + }, + { + "id": "7879", + "ident": "14GE", + "type": "heliport", + "name": "Stakely Heliport", + "latitude_deg": "34.785499572753906", + "longitude_deg": "-85.45369720458984", + "elevation_ft": "1940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Trenton", + "scheduled_service": "no", + "gps_code": "14GE", + "local_code": "14GE" + }, + { + "id": "7880", + "ident": "14I", + "type": "small_airport", + "name": "Bloom Airport", + "latitude_deg": "39.633399963378906", + "longitude_deg": "-83.7499008178711", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Jamestown", + "scheduled_service": "no", + "gps_code": "14I", + "local_code": "14I" + }, + { + "id": "430401", + "ident": "14IA", + "type": "small_airport", + "name": "East River Airport", + "latitude_deg": "43.360281", + "longitude_deg": "-94.442364", + "elevation_ft": "1235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Armstrong", + "scheduled_service": "no", + "gps_code": "14IA", + "local_code": "14IA" + }, + { + "id": "7881", + "ident": "14ID", + "type": "small_airport", + "name": "Peaceful Cove Airport", + "latitude_deg": "43.680999755859375", + "longitude_deg": "-116.2030029296875", + "elevation_ft": "2920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Boise", + "scheduled_service": "no", + "gps_code": "14ID", + "local_code": "14ID" + }, + { + "id": "7882", + "ident": "14IL", + "type": "closed", + "name": "Kewanee Hospital Heliport", + "latitude_deg": "41.235298", + "longitude_deg": "-89.9309", + "elevation_ft": "838", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Kewanee", + "scheduled_service": "no", + "home_link": "https://web.archive.org/web/20170521002255/http://www.bcrnews.com/2009/05/14/kewanee-hospital-prepares-to-demolish-the-old-hospi", + "keywords": "0IL5" + }, + { + "id": "7883", + "ident": "14IN", + "type": "closed", + "name": "De Motte Airport", + "latitude_deg": "41.207", + "longitude_deg": "-87.212502", + "elevation_ft": "655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "De Motte", + "scheduled_service": "no", + "keywords": "14IN" + }, + { + "id": "7884", + "ident": "14IS", + "type": "heliport", + "name": "Marshall Browning Hospital Heliport", + "latitude_deg": "38.025239", + "longitude_deg": "-89.237025", + "elevation_ft": "454", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Du Quoin", + "scheduled_service": "no", + "gps_code": "14IS", + "local_code": "14IS" + }, + { + "id": "7885", + "ident": "14KS", + "type": "small_airport", + "name": "G & S Space Port Airport", + "latitude_deg": "38.26919937133789", + "longitude_deg": "-94.90480041503906", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Parker", + "scheduled_service": "no", + "gps_code": "14KS", + "local_code": "14KS" + }, + { + "id": "7886", + "ident": "14KY", + "type": "small_airport", + "name": "Blue Haven Farm Airport", + "latitude_deg": "38.17369842529297", + "longitude_deg": "-84.36830139160156", + "elevation_ft": "985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "14KY", + "local_code": "14KY" + }, + { + "id": "7887", + "ident": "14L", + "type": "heliport", + "name": "Devonshire Area Heliport", + "latitude_deg": "34.256882", + "longitude_deg": "-118.531352", + "elevation_ft": "1012", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "local_code": "14L" + }, + { + "id": "7888", + "ident": "14LA", + "type": "closed", + "name": "Killarny Farm Airport", + "latitude_deg": "30.841", + "longitude_deg": "-91.508202", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "St Francisville", + "scheduled_service": "no", + "keywords": "14LA" + }, + { + "id": "7889", + "ident": "14LL", + "type": "heliport", + "name": "Gottlieb Heliport", + "latitude_deg": "41.91138164349999", + "longitude_deg": "-87.843619287", + "elevation_ft": "688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Melrose Park", + "scheduled_service": "no", + "gps_code": "14LL", + "local_code": "14LL" + }, + { + "id": "7890", + "ident": "14LS", + "type": "heliport", + "name": "Go Gulf Heliport", + "latitude_deg": "30.47330093383789", + "longitude_deg": "-91.04769897460938", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no", + "gps_code": "14LS", + "local_code": "14LS" + }, + { + "id": "7891", + "ident": "14MA", + "type": "closed", + "name": "Vergnani Heliport", + "latitude_deg": "42.049801", + "longitude_deg": "-72.6493", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Agawam", + "scheduled_service": "no", + "keywords": "14MA" + }, + { + "id": "10266", + "ident": "14ME", + "type": "small_airport", + "name": "Ring Hill Airport", + "latitude_deg": "44.79125", + "longitude_deg": "-69.071479", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Carmel", + "scheduled_service": "no", + "gps_code": "14ME", + "local_code": "14ME", + "keywords": "Formerly 38B" + }, + { + "id": "7892", + "ident": "14MI", + "type": "closed", + "name": "East-West Paris Airport", + "latitude_deg": "42.850899", + "longitude_deg": "-85.567001", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Caledonia", + "scheduled_service": "no", + "gps_code": "14MI", + "local_code": "14MI" + }, + { + "id": "7893", + "ident": "14MN", + "type": "heliport", + "name": "Riverwood Healthcare Center Heliport", + "latitude_deg": "46.52920150756836", + "longitude_deg": "-93.69920349121094", + "elevation_ft": "1224", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Aitkin", + "scheduled_service": "no", + "gps_code": "14MN", + "local_code": "14MN" + }, + { + "id": "7894", + "ident": "14MO", + "type": "closed", + "name": "Stevinson Farm Airport", + "latitude_deg": "39.049999", + "longitude_deg": "-94.316902", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Blue Springs", + "scheduled_service": "no", + "keywords": "14MO" + }, + { + "id": "7895", + "ident": "14MS", + "type": "small_airport", + "name": "Rose Field", + "latitude_deg": "32.345298767089844", + "longitude_deg": "-89.0342025756836", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Hickory", + "scheduled_service": "no", + "gps_code": "14MS", + "local_code": "14MS" + }, + { + "id": "7896", + "ident": "14MT", + "type": "small_airport", + "name": "Holland Ranch Airport", + "latitude_deg": "47.05160140991211", + "longitude_deg": "-109.07499694824219", + "elevation_ft": "4050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Lewistown", + "scheduled_service": "no", + "gps_code": "14MT", + "local_code": "14MT" + }, + { + "id": "7897", + "ident": "14N", + "type": "small_airport", + "name": "Beltzville Airport", + "latitude_deg": "40.844755", + "longitude_deg": "-75.634217", + "elevation_ft": "899", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lehighton", + "scheduled_service": "no", + "local_code": "14N" + }, + { + "id": "7898", + "ident": "14NC", + "type": "small_airport", + "name": "Camp Davis Mcolf Airport", + "latitude_deg": "34.516700744628906", + "longitude_deg": "-77.55000305175781", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Holly Ridge", + "scheduled_service": "no", + "gps_code": "14NC", + "local_code": "14NC" + }, + { + "id": "7899", + "ident": "14ND", + "type": "small_airport", + "name": "Hagen Private Airport", + "latitude_deg": "46.207801818847656", + "longitude_deg": "-102.90799713134766", + "elevation_ft": "2810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Reeder", + "scheduled_service": "no", + "gps_code": "14ND", + "local_code": "14ND" + }, + { + "id": "7900", + "ident": "14NE", + "type": "closed", + "name": "Aaron's Field", + "latitude_deg": "40.862499", + "longitude_deg": "-98.064201", + "elevation_ft": "1825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Aurora", + "scheduled_service": "no", + "keywords": "14NE, 81Y" + }, + { + "id": "7901", + "ident": "14NH", + "type": "heliport", + "name": "Cheshire Medical Center Heliport", + "latitude_deg": "42.94889831542969", + "longitude_deg": "-72.28970336914062", + "elevation_ft": "481", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Keene", + "scheduled_service": "no", + "gps_code": "14NH", + "local_code": "14NH" + }, + { + "id": "7902", + "ident": "14NJ", + "type": "heliport", + "name": "Wuerkers New Acres Farm Heliport", + "latitude_deg": "39.0092469445", + "longitude_deg": "-74.8879516125", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Rio Grande", + "scheduled_service": "no", + "gps_code": "14NJ", + "local_code": "14NJ" + }, + { + "id": "7903", + "ident": "14NK", + "type": "small_airport", + "name": "Mountain View Airport", + "latitude_deg": "43.34000015258789", + "longitude_deg": "-73.47899627685547", + "elevation_ft": "243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Kingsbury", + "scheduled_service": "no", + "gps_code": "14NK", + "local_code": "14NK" + }, + { + "id": "7904", + "ident": "14NY", + "type": "heliport", + "name": "Windy's Heliport", + "latitude_deg": "40.7975502014", + "longitude_deg": "-73.4179000854", + "elevation_ft": "222", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Melville", + "scheduled_service": "yes", + "gps_code": "14NY", + "local_code": "14NY" + }, + { + "id": "7905", + "ident": "14OH", + "type": "small_airport", + "name": "Heilman Airport", + "latitude_deg": "40.66889953613281", + "longitude_deg": "-83.44349670410156", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Kenton", + "scheduled_service": "no", + "gps_code": "14OH", + "local_code": "14OH" + }, + { + "id": "7906", + "ident": "14OI", + "type": "small_airport", + "name": "Pleasant Home Gliding Club Gliderport", + "latitude_deg": "40.9192008972168", + "longitude_deg": "-82.11399841308594", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Pleasant Home", + "scheduled_service": "no", + "gps_code": "14OI", + "local_code": "14OI" + }, + { + "id": "7907", + "ident": "14OK", + "type": "closed", + "name": "Reherman Airport", + "latitude_deg": "35.804199", + "longitude_deg": "-97.933701", + "elevation_ft": "1105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Kingfisher", + "scheduled_service": "no", + "keywords": "14OK" + }, + { + "id": "7908", + "ident": "14OR", + "type": "heliport", + "name": "Air Columbia Heliport", + "latitude_deg": "45.71419906616211", + "longitude_deg": "-121.51799774169922", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Hoodriver", + "scheduled_service": "no", + "gps_code": "14OR", + "local_code": "14OR" + }, + { + "id": "7909", + "ident": "14P", + "type": "small_airport", + "name": "Boggs Field", + "latitude_deg": "38.82389831542969", + "longitude_deg": "-81.34940338134766", + "elevation_ft": "927", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Spencer", + "scheduled_service": "no", + "gps_code": "14P", + "local_code": "14P" + }, + { + "id": "7910", + "ident": "14PA", + "type": "small_airport", + "name": "Dimascio Field", + "latitude_deg": "40.29090118408203", + "longitude_deg": "-75.65910339355469", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pottstown", + "scheduled_service": "no", + "gps_code": "14PA", + "local_code": "14PA" + }, + { + "id": "330679", + "ident": "14PR", + "type": "heliport", + "name": "Emp. Coco Beach Golf Club LLC Heliport", + "latitude_deg": "18.407301", + "longitude_deg": "-65.798751", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Rio Grande", + "scheduled_service": "no", + "gps_code": "14PR", + "local_code": "14PR", + "home_link": "http://www.cocopuertorico.com/" + }, + { + "id": "7911", + "ident": "14PS", + "type": "small_airport", + "name": "Hideaway Ultralightport", + "latitude_deg": "39.8843994140625", + "longitude_deg": "-76.11859893798828", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Quarryville", + "scheduled_service": "no", + "gps_code": "14PS", + "local_code": "14PS" + }, + { + "id": "7912", + "ident": "14S", + "type": "small_airport", + "name": "Westport Airport", + "latitude_deg": "46.89690017700195", + "longitude_deg": "-124.10099792480469", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Westport", + "scheduled_service": "no", + "gps_code": "14S", + "local_code": "14S" + }, + { + "id": "7913", + "ident": "14SN", + "type": "heliport", + "name": "Colmery-O'Neil Vamc Heliport", + "latitude_deg": "39.02640151977539", + "longitude_deg": "-95.72250366210938", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Topeka", + "scheduled_service": "no", + "gps_code": "14SN", + "local_code": "14SN" + }, + { + "id": "7914", + "ident": "14TA", + "type": "small_airport", + "name": "Dean Ranch Airport", + "latitude_deg": "29.894161", + "longitude_deg": "-98.403826", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Spring Branch", + "scheduled_service": "no", + "gps_code": "14TA", + "local_code": "14TA" + }, + { + "id": "7915", + "ident": "14TE", + "type": "small_airport", + "name": "Smith I-Ranch Airport", + "latitude_deg": "30.917624", + "longitude_deg": "-99.475771", + "elevation_ft": "1793", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Menard", + "scheduled_service": "no", + "gps_code": "14TE", + "local_code": "14TE" + }, + { + "id": "7916", + "ident": "14TN", + "type": "heliport", + "name": "News Channel 3 Heliport", + "latitude_deg": "35.126399993896484", + "longitude_deg": "-90.07140350341797", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Memphis", + "scheduled_service": "no", + "gps_code": "14TN", + "local_code": "14TN" + }, + { + "id": "7917", + "ident": "14TS", + "type": "small_airport", + "name": "O S Wyatt Airport", + "latitude_deg": "27.42169952392578", + "longitude_deg": "-98.60449981689453", + "elevation_ft": "532", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Realitos", + "scheduled_service": "no", + "gps_code": "14TS", + "local_code": "14TS" + }, + { + "id": "343405", + "ident": "14TT", + "type": "small_airport", + "name": "Mathers Field", + "latitude_deg": "36.047147", + "longitude_deg": "-100.520803", + "elevation_ft": "2688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Canadian", + "scheduled_service": "no", + "gps_code": "14TT", + "local_code": "14TT" + }, + { + "id": "7918", + "ident": "14TX", + "type": "small_airport", + "name": "Keyes Ranch Airport", + "latitude_deg": "30.2894", + "longitude_deg": "-98.173897", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dripping Springs", + "scheduled_service": "no", + "gps_code": "14TX", + "local_code": "14TX" + }, + { + "id": "7919", + "ident": "14VA", + "type": "small_airport", + "name": "Krens Farm Airport", + "latitude_deg": "39.229000091552734", + "longitude_deg": "-77.74669647216797", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "14VA", + "local_code": "14VA" + }, + { + "id": "342540", + "ident": "14VG", + "type": "small_airport", + "name": "Abilene Airport", + "latitude_deg": "37.16913", + "longitude_deg": "-78.52092", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Keysville", + "scheduled_service": "no", + "gps_code": "14VG", + "local_code": "14VG" + }, + { + "id": "7920", + "ident": "14WA", + "type": "small_airport", + "name": "Lz Ranch Airport", + "latitude_deg": "46.970699310302734", + "longitude_deg": "-122.73699951171875", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Olympia", + "scheduled_service": "no", + "gps_code": "14WA", + "local_code": "14WA" + }, + { + "id": "7921", + "ident": "14WI", + "type": "heliport", + "name": "Cylon Heliport", + "latitude_deg": "45.136944", + "longitude_deg": "-92.376667", + "elevation_ft": "1071", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "New Richmond", + "scheduled_service": "no", + "gps_code": "14WI", + "local_code": "14WI" + }, + { + "id": "7922", + "ident": "14WS", + "type": "small_airport", + "name": "Lakewood Lodge Airport", + "latitude_deg": "45.77799987792969", + "longitude_deg": "-91.55850219726562", + "elevation_ft": "1365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Stone Lake", + "scheduled_service": "no", + "gps_code": "14WS", + "local_code": "14WS" + }, + { + "id": "7923", + "ident": "14WV", + "type": "heliport", + "name": "Snowshoe Resort/Topof the World Heliport", + "latitude_deg": "38.4006004333", + "longitude_deg": "-79.99579620360001", + "elevation_ft": "4792", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Linwood", + "scheduled_service": "no", + "gps_code": "14WV", + "local_code": "14WV" + }, + { + "id": "299705", + "ident": "14XA", + "type": "small_airport", + "name": "Frog Pond Airport", + "latitude_deg": "33.657888", + "longitude_deg": "-96.788285", + "elevation_ft": "686", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sherman", + "scheduled_service": "no", + "gps_code": "14XA", + "local_code": "14XA" + }, + { + "id": "7924", + "ident": "14XS", + "type": "small_airport", + "name": "Isbell Ranch Airport", + "latitude_deg": "30.808500289916992", + "longitude_deg": "-97.2739028930664", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Davilla", + "scheduled_service": "no", + "gps_code": "14XS", + "local_code": "14XS" + }, + { + "id": "7925", + "ident": "15A", + "type": "small_airport", + "name": "Mark Reynolds/North Mobile County Airport", + "latitude_deg": "30.91320037841797", + "longitude_deg": "-87.98059844970703", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Creola", + "scheduled_service": "no", + "gps_code": "15A", + "local_code": "15A" + }, + { + "id": "7926", + "ident": "15AK", + "type": "small_airport", + "name": "Golden North Airfield", + "latitude_deg": "63.371995", + "longitude_deg": "-148.846915", + "elevation_ft": "2250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cantwell", + "scheduled_service": "no", + "gps_code": "15AK", + "local_code": "15AK" + }, + { + "id": "7927", + "ident": "15AL", + "type": "heliport", + "name": "Highfalls Stagefield Army Heliport", + "latitude_deg": "31.093599319458008", + "longitude_deg": "-85.78790283203125", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker/Hartford", + "scheduled_service": "no", + "gps_code": "15AL", + "local_code": "15AL" + }, + { + "id": "7928", + "ident": "15AR", + "type": "small_airport", + "name": "Taylor Airport", + "latitude_deg": "34.827378", + "longitude_deg": "-90.545297", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Brickeys", + "scheduled_service": "no", + "gps_code": "15AR", + "local_code": "15AR", + "keywords": "Dawson's Airport" + }, + { + "id": "7929", + "ident": "15AZ", + "type": "closed", + "name": "Quail Mesa Ranch Airport", + "latitude_deg": "33.76168", + "longitude_deg": "-114.4596", + "elevation_ft": "290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Parker", + "scheduled_service": "no", + "gps_code": "15AZ", + "local_code": "15AZ" + }, + { + "id": "7930", + "ident": "15CA", + "type": "heliport", + "name": "Stanford Health Care East Heliport", + "latitude_deg": "37.435195", + "longitude_deg": "-122.174588", + "elevation_ft": "84", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palo Alto", + "scheduled_service": "no", + "gps_code": "15CA", + "local_code": "15CA", + "keywords": "Stanford University Hospital Center" + }, + { + "id": "7931", + "ident": "15CL", + "type": "closed", + "name": "Hunt Farms Airport", + "latitude_deg": "37.342701", + "longitude_deg": "-120.403999", + "elevation_ft": "223", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Merced", + "scheduled_service": "no", + "keywords": "15CL, Rancho Zanjon" + }, + { + "id": "7932", + "ident": "15CO", + "type": "heliport", + "name": "Swedish Medical Center Heliport", + "latitude_deg": "39.654701232910156", + "longitude_deg": "-104.97100067138672", + "elevation_ft": "5374", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Englewood", + "scheduled_service": "no", + "gps_code": "15CO", + "local_code": "15CO" + }, + { + "id": "345592", + "ident": "15FA", + "type": "heliport", + "name": "Amistad Ranch Heliport", + "latitude_deg": "27.215842", + "longitude_deg": "-80.684881", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Okeechobee", + "scheduled_service": "no", + "gps_code": "15FA", + "local_code": "15FA" + }, + { + "id": "7933", + "ident": "15FD", + "type": "closed", + "name": "Orange Hill Airport", + "latitude_deg": "30.658501", + "longitude_deg": "-85.527878", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Wausau", + "scheduled_service": "no", + "keywords": "15FD" + }, + { + "id": "7934", + "ident": "15FL", + "type": "small_airport", + "name": "Cannon Creek Airpark", + "latitude_deg": "30.150584", + "longitude_deg": "-82.66785", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake City", + "scheduled_service": "no", + "gps_code": "15FL", + "local_code": "15FL" + }, + { + "id": "7935", + "ident": "15G", + "type": "small_airport", + "name": "Weltzien Skypark Airport", + "latitude_deg": "41.02840042114258", + "longitude_deg": "-81.79850006103516", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wadsworth", + "scheduled_service": "no", + "gps_code": "15G", + "local_code": "15G" + }, + { + "id": "7936", + "ident": "15GA", + "type": "small_airport", + "name": "Darla's Airport", + "latitude_deg": "32.680199", + "longitude_deg": "-82.478996", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Kite", + "scheduled_service": "no", + "gps_code": "15GA", + "local_code": "15GA" + }, + { + "id": "310040", + "ident": "15IA", + "type": "small_airport", + "name": "Stella Airport", + "latitude_deg": "42.235396", + "longitude_deg": "-90.406767", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Bellevue", + "scheduled_service": "no", + "gps_code": "15IA", + "local_code": "15IA", + "keywords": "Bellevue Flying Circus Airport" + }, + { + "id": "7937", + "ident": "15ID", + "type": "small_airport", + "name": "Scanlon Airport", + "latitude_deg": "47.68560028076172", + "longitude_deg": "-117.03800201416016", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Coeur D Alene", + "scheduled_service": "no", + "gps_code": "15ID", + "local_code": "15ID" + }, + { + "id": "7938", + "ident": "15II", + "type": "heliport", + "name": "Findlay Heliport", + "latitude_deg": "40.33890151977539", + "longitude_deg": "-86.94080352783203", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "15II", + "local_code": "15II" + }, + { + "id": "7939", + "ident": "15IL", + "type": "small_airport", + "name": "Gittleson Farms Airport", + "latitude_deg": "41.797298431396484", + "longitude_deg": "-89.27320098876953", + "elevation_ft": "836", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Franklin Grove", + "scheduled_service": "no", + "gps_code": "15IL", + "local_code": "15IL" + }, + { + "id": "7940", + "ident": "15IN", + "type": "small_airport", + "name": "Bugtown Airport", + "latitude_deg": "38.15060043334961", + "longitude_deg": "-87.84030151367188", + "elevation_ft": "464", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "New Harmony", + "scheduled_service": "no", + "gps_code": "15IN", + "local_code": "15IN" + }, + { + "id": "7941", + "ident": "15KS", + "type": "small_airport", + "name": "Sickler Airstrip", + "latitude_deg": "38.430599212646484", + "longitude_deg": "-96.08830261230469", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Emporia", + "scheduled_service": "no", + "gps_code": "15KS", + "local_code": "15KS" + }, + { + "id": "345342", + "ident": "15KT", + "type": "heliport", + "name": "Air Evac 109 Heliport", + "latitude_deg": "37.133803", + "longitude_deg": "-83.758258", + "elevation_ft": "884", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Manchester", + "scheduled_service": "no", + "gps_code": "15KT", + "local_code": "15KT" + }, + { + "id": "7942", + "ident": "15KY", + "type": "small_airport", + "name": "Brennan Farm Airport", + "latitude_deg": "38.15700149536133", + "longitude_deg": "-84.30159759521484", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "15KY", + "local_code": "15KY" + }, + { + "id": "7943", + "ident": "15LA", + "type": "closed", + "name": "Creole Heliport", + "latitude_deg": "29.790199", + "longitude_deg": "-93.184097", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Oak Grove", + "scheduled_service": "no", + "keywords": "15LA" + }, + { + "id": "7944", + "ident": "15LL", + "type": "small_airport", + "name": "Cloverleaf Ranch Airport", + "latitude_deg": "41.23749923706055", + "longitude_deg": "-89.53669738769531", + "elevation_ft": "807", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Tiskilwa", + "scheduled_service": "no", + "gps_code": "15LL", + "local_code": "15LL" + }, + { + "id": "7945", + "ident": "15LS", + "type": "heliport", + "name": "Port of Iberia Heliport", + "latitude_deg": "29.944700241088867", + "longitude_deg": "-91.83709716796875", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Iberia", + "scheduled_service": "no", + "gps_code": "15LS", + "local_code": "15LS" + }, + { + "id": "7946", + "ident": "15MA", + "type": "small_airport", + "name": "Canapitsit Airport", + "latitude_deg": "41.42251", + "longitude_deg": "-70.909295", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Gosnold", + "scheduled_service": "no", + "gps_code": "15MA", + "local_code": "15MA" + }, + { + "id": "7947", + "ident": "15ME", + "type": "small_airport", + "name": "Eagle Field", + "latitude_deg": "43.81529998779297", + "longitude_deg": "-70.22920227050781", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "North Yarmouth", + "scheduled_service": "no", + "gps_code": "15ME", + "local_code": "15ME" + }, + { + "id": "7948", + "ident": "15MI", + "type": "heliport", + "name": "Grant Pad Heliport", + "latitude_deg": "42.543411", + "longitude_deg": "-82.93342", + "elevation_ft": "638", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Fraser", + "scheduled_service": "no", + "gps_code": "15MI", + "local_code": "15MI" + }, + { + "id": "7949", + "ident": "15MN", + "type": "small_airport", + "name": "Tyler Farms Airport", + "latitude_deg": "45.26219940185547", + "longitude_deg": "-94.51069641113281", + "elevation_ft": "1185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Watkins", + "scheduled_service": "no", + "gps_code": "15MN", + "local_code": "15MN" + }, + { + "id": "7950", + "ident": "15MO", + "type": "small_airport", + "name": "Applegate Airport", + "latitude_deg": "40.391576", + "longitude_deg": "-92.564718", + "elevation_ft": "999", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Queen City", + "scheduled_service": "no", + "local_code": "5MO", + "keywords": "15MO" + }, + { + "id": "7951", + "ident": "15MT", + "type": "small_airport", + "name": "Saubak Airport", + "latitude_deg": "48.50040054321289", + "longitude_deg": "-105.91000366210938", + "elevation_ft": "2701", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Lustre", + "scheduled_service": "no", + "gps_code": "15MT", + "local_code": "15MT" + }, + { + "id": "7952", + "ident": "15N", + "type": "small_airport", + "name": "Jenkins Airport", + "latitude_deg": "39.119598388671875", + "longitude_deg": "-75.58380126953125", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Wyoming", + "scheduled_service": "no", + "gps_code": "15N", + "local_code": "15N" + }, + { + "id": "7953", + "ident": "15NC", + "type": "small_airport", + "name": "Dragonfly Field", + "latitude_deg": "36.23970031738281", + "longitude_deg": "-76.9738998413086", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Ahoskie", + "scheduled_service": "no", + "gps_code": "15NC", + "local_code": "15NC" + }, + { + "id": "7954", + "ident": "15NE", + "type": "small_airport", + "name": "Sindt Airport", + "latitude_deg": "40.291099548339844", + "longitude_deg": "-98.82340240478516", + "elevation_ft": "1990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Upland", + "scheduled_service": "no", + "gps_code": "15NE", + "local_code": "15NE" + }, + { + "id": "7955", + "ident": "15NH", + "type": "heliport", + "name": "Nashua Technology Park Heliport", + "latitude_deg": "42.708333", + "longitude_deg": "-71.458333", + "elevation_ft": "235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Nashua", + "scheduled_service": "no", + "gps_code": "15NH", + "local_code": "15NH", + "keywords": "Hp Spit Brook Heliport" + }, + { + "id": "7956", + "ident": "15NJ", + "type": "heliport", + "name": "Werner Heliport", + "latitude_deg": "40.42509841918945", + "longitude_deg": "-74.09960174560547", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Belford", + "scheduled_service": "no", + "gps_code": "15NJ", + "local_code": "15NJ" + }, + { + "id": "7957", + "ident": "15NK", + "type": "closed", + "name": "Knox Landing Airport", + "latitude_deg": "42.576401", + "longitude_deg": "-78.556702", + "elevation_ft": "1845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Sardinia", + "scheduled_service": "no", + "keywords": "15NK" + }, + { + "id": "324943", + "ident": "15NR", + "type": "heliport", + "name": "Atrium Health Anson Hospital Heliport", + "latitude_deg": "34.977056", + "longitude_deg": "-80.110229", + "elevation_ft": "331", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Wadesboro", + "scheduled_service": "no", + "gps_code": "15NR", + "local_code": "15NR" + }, + { + "id": "7958", + "ident": "15NY", + "type": "heliport", + "name": "Peninsula Hospital Center Heliport", + "latitude_deg": "40.591800689697266", + "longitude_deg": "-73.78009796142578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Far Rockaway", + "scheduled_service": "no", + "gps_code": "15NY", + "local_code": "15NY" + }, + { + "id": "7959", + "ident": "15OH", + "type": "heliport", + "name": "Twin City Hospital Heliport", + "latitude_deg": "40.40230178833008", + "longitude_deg": "-81.33709716796875", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dennison", + "scheduled_service": "no", + "gps_code": "15OH", + "local_code": "15OH" + }, + { + "id": "7960", + "ident": "15OI", + "type": "heliport", + "name": "Firelands Community Hospital Nr 1 Heliport", + "latitude_deg": "41.43619918823242", + "longitude_deg": "-82.71099853515625", + "elevation_ft": "599", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Sandusky", + "scheduled_service": "no", + "gps_code": "15OI", + "local_code": "15OI" + }, + { + "id": "45714", + "ident": "15OK", + "type": "closed", + "name": "Bluebird Airport", + "latitude_deg": "35.703889", + "longitude_deg": "-95.310833", + "elevation_ft": "531", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Muskogee", + "scheduled_service": "no", + "keywords": "15OK" + }, + { + "id": "7961", + "ident": "15OR", + "type": "heliport", + "name": "Camp Rilea Heliport", + "latitude_deg": "46.1159964394", + "longitude_deg": "-123.931392431", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Warrenton", + "scheduled_service": "no", + "gps_code": "15OR", + "local_code": "15OR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_Rilea_Heliport" + }, + { + "id": "7962", + "ident": "15PA", + "type": "small_airport", + "name": "Cavage Personal Use Airport", + "latitude_deg": "41.594951", + "longitude_deg": "-75.35504", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Prompton", + "scheduled_service": "no", + "gps_code": "15PA", + "local_code": "15PA" + }, + { + "id": "7963", + "ident": "15PN", + "type": "heliport", + "name": "Metropolitan Edison Heliport", + "latitude_deg": "40.375099182128906", + "longitude_deg": "-75.9384994506836", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Reading", + "scheduled_service": "no", + "gps_code": "15PN", + "local_code": "15PN" + }, + { + "id": "7964", + "ident": "15PS", + "type": "heliport", + "name": "Jennersville Hospital Heliport", + "latitude_deg": "39.822576", + "longitude_deg": "-75.888127", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "West Grove", + "scheduled_service": "no", + "gps_code": "15PS", + "local_code": "15PS", + "keywords": "Jennersville Regional Hospital" + }, + { + "id": "7965", + "ident": "15S", + "type": "closed", + "name": "Lester State Ultralightport", + "latitude_deg": "47.215099", + "longitude_deg": "-121.461998", + "elevation_ft": "1693", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Lester", + "scheduled_service": "no", + "keywords": "15S" + }, + { + "id": "301243", + "ident": "15SD", + "type": "heliport", + "name": "Watertown / Brownlee Heliport", + "latitude_deg": "44.883264878199995", + "longitude_deg": "-97.1080899239", + "elevation_ft": "1720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "scheduled_service": "no", + "gps_code": "15SD" + }, + { + "id": "7966", + "ident": "15TA", + "type": "small_airport", + "name": "J R Ranch Airport", + "latitude_deg": "30.9367", + "longitude_deg": "-97.89932", + "elevation_ft": "1125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Briggs", + "scheduled_service": "no", + "gps_code": "15TA", + "local_code": "15TA" + }, + { + "id": "7967", + "ident": "15TE", + "type": "heliport", + "name": "Arco High Island Heliport", + "latitude_deg": "29.625454", + "longitude_deg": "-94.198422", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "High Island", + "scheduled_service": "no", + "gps_code": "15TE", + "local_code": "15TE", + "keywords": "Pelicans Nest" + }, + { + "id": "7968", + "ident": "15TN", + "type": "heliport", + "name": "Indian Path Medical Center Heliport", + "latitude_deg": "36.55160140991211", + "longitude_deg": "-82.51519775390625", + "elevation_ft": "1283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Kingsport", + "scheduled_service": "no", + "gps_code": "15TN", + "local_code": "15TN" + }, + { + "id": "7969", + "ident": "15TS", + "type": "heliport", + "name": "Owens Country Sausage Heliport", + "latitude_deg": "32.98680114746094", + "longitude_deg": "-96.69750213623047", + "elevation_ft": "629", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Richardson", + "scheduled_service": "no", + "gps_code": "15TS", + "local_code": "15TS" + }, + { + "id": "7970", + "ident": "15TX", + "type": "closed", + "name": "Ed Shadle Airport", + "latitude_deg": "32.299414", + "longitude_deg": "-98.325601", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Stephenville", + "scheduled_service": "no", + "keywords": "15TX" + }, + { + "id": "7971", + "ident": "15VA", + "type": "small_airport", + "name": "Fox Acres Airport", + "latitude_deg": "38.7223014831543", + "longitude_deg": "-77.89969635009766", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Warrenton", + "scheduled_service": "no", + "gps_code": "15VA", + "local_code": "15VA" + }, + { + "id": "7972", + "ident": "15W", + "type": "small_airport", + "name": "Dennis Farms Airport", + "latitude_deg": "42.894500732421875", + "longitude_deg": "-84.39029693603516", + "elevation_ft": "826", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Laingsburg", + "scheduled_service": "no", + "gps_code": "15W", + "local_code": "15W" + }, + { + "id": "7973", + "ident": "15WA", + "type": "small_airport", + "name": "Sunset Airport", + "latitude_deg": "48.27230072", + "longitude_deg": "-122.3570023", + "elevation_ft": "156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Stanwood", + "scheduled_service": "no", + "gps_code": "15WA", + "local_code": "15WA" + }, + { + "id": "7974", + "ident": "15WI", + "type": "small_airport", + "name": "Peterson Field", + "latitude_deg": "42.9275016784668", + "longitude_deg": "-89.41819763183594", + "elevation_ft": "978", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Oregon", + "scheduled_service": "no", + "gps_code": "15WI", + "local_code": "15WI" + }, + { + "id": "7975", + "ident": "15XS", + "type": "small_airport", + "name": "Toy Airpark", + "latitude_deg": "29.332700729370117", + "longitude_deg": "-95.33409881591797", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Liverpool", + "scheduled_service": "no", + "gps_code": "15XS", + "local_code": "15XS" + }, + { + "id": "7977", + "ident": "16A", + "type": "small_airport", + "name": "Nunapitchuk Airport", + "latitude_deg": "60.905591", + "longitude_deg": "-162.440454", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nunapitchuk", + "scheduled_service": "yes", + "gps_code": "PPIT", + "iata_code": "NUP", + "local_code": "16A", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nunapitchuk_Airport" + }, + { + "id": "7978", + "ident": "16AK", + "type": "small_airport", + "name": "Gattis Strip", + "latitude_deg": "61.596643", + "longitude_deg": "-149.339926", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "16AK", + "local_code": "16AK" + }, + { + "id": "7979", + "ident": "16AL", + "type": "heliport", + "name": "Hooper Stagefield Army Heliport", + "latitude_deg": "31.40839958190918", + "longitude_deg": "-85.68920135498047", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker/Ozark", + "scheduled_service": "no", + "gps_code": "16AL", + "local_code": "16AL" + }, + { + "id": "7980", + "ident": "16AR", + "type": "small_airport", + "name": "Heifer Creek Ranch Airport", + "latitude_deg": "35.30110168457031", + "longitude_deg": "-92.57330322265625", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "16AR", + "local_code": "16AR" + }, + { + "id": "7981", + "ident": "16AZ", + "type": "small_airport", + "name": "Yav'pe Ma'ta Airport", + "latitude_deg": "34.5088996887207", + "longitude_deg": "-112.68000030517578", + "elevation_ft": "4366", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Skull Valley", + "scheduled_service": "no", + "gps_code": "16AZ", + "local_code": "16AZ" + }, + { + "id": "7982", + "ident": "16CA", + "type": "heliport", + "name": "Police Pistol Range Heliport", + "latitude_deg": "37.719398498535156", + "longitude_deg": "-122.4990005493164", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Francisco", + "scheduled_service": "no", + "gps_code": "16CA", + "local_code": "16CA" + }, + { + "id": "7983", + "ident": "16CL", + "type": "heliport", + "name": "Mother Lode Service Center Heliport", + "latitude_deg": "38.08466", + "longitude_deg": "-120.537945", + "elevation_ft": "1560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Angels Camp", + "scheduled_service": "no", + "gps_code": "16CL", + "local_code": "16CL" + }, + { + "id": "45322", + "ident": "16CO", + "type": "small_airport", + "name": "Dry Pen Airport", + "latitude_deg": "39.40227", + "longitude_deg": "-108.07602", + "elevation_ft": "5331", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Parachute", + "scheduled_service": "no", + "gps_code": "16CO", + "local_code": "16CO" + }, + { + "id": "46075", + "ident": "16DE", + "type": "heliport", + "name": "Nemours A I Dupont Children's Hospital Ground Heliport", + "latitude_deg": "39.780906", + "longitude_deg": "-75.555767", + "elevation_ft": "356", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Wilmington", + "scheduled_service": "no", + "gps_code": "16DE", + "local_code": "16DE" + }, + { + "id": "7984", + "ident": "16FA", + "type": "small_airport", + "name": "Little Deer Airport", + "latitude_deg": "26.033956", + "longitude_deg": "-81.042345", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ochopee", + "scheduled_service": "no", + "gps_code": "16FA", + "local_code": "16FA" + }, + { + "id": "7985", + "ident": "16FD", + "type": "small_airport", + "name": "Skinners Wholesale Nursery Airport", + "latitude_deg": "29.405000686645508", + "longitude_deg": "-81.49590301513672", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Crescent City", + "scheduled_service": "no", + "gps_code": "16FD", + "local_code": "16FD" + }, + { + "id": "7986", + "ident": "16FL", + "type": "small_airport", + "name": "J-22 Ranch Airport", + "latitude_deg": "30.725184", + "longitude_deg": "-87.200769", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "16FL", + "local_code": "16FL" + }, + { + "id": "7987", + "ident": "16GA", + "type": "heliport", + "name": "Galleria Heliport", + "latitude_deg": "33.885101318359375", + "longitude_deg": "-84.46269989013672", + "elevation_ft": "998", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Marietta", + "scheduled_service": "no", + "gps_code": "16GA", + "local_code": "16GA" + }, + { + "id": "7988", + "ident": "16IA", + "type": "small_airport", + "name": "Stangl STOLport", + "latitude_deg": "41.88079833984375", + "longitude_deg": "-94.7771987915039", + "elevation_ft": "1230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Coon Rapids", + "scheduled_service": "no", + "gps_code": "16IA", + "local_code": "16IA" + }, + { + "id": "7989", + "ident": "16ID", + "type": "heliport", + "name": "Bear Lake Memorial Hospital Helipad", + "latitude_deg": "42.3163986206", + "longitude_deg": "-111.299003601", + "elevation_ft": "6000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Montpelier", + "scheduled_service": "no", + "gps_code": "16ID", + "local_code": "16ID" + }, + { + "id": "7990", + "ident": "16II", + "type": "small_airport", + "name": "Harrington Field", + "latitude_deg": "41.183101654052734", + "longitude_deg": "-86.93360137939453", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "San Pierre", + "scheduled_service": "no", + "gps_code": "16II", + "local_code": "16II" + }, + { + "id": "7991", + "ident": "16IL", + "type": "small_airport", + "name": "Harold Bunger Airport", + "latitude_deg": "42.067857", + "longitude_deg": "-88.827176", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Kirkland", + "scheduled_service": "no", + "gps_code": "16IL", + "local_code": "16IL" + }, + { + "id": "7992", + "ident": "16IN", + "type": "heliport", + "name": "Deaconess Hospital Heliport", + "latitude_deg": "37.984119", + "longitude_deg": "-87.572095", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Evansville", + "scheduled_service": "no", + "gps_code": "16IN", + "local_code": "16IN", + "keywords": "Air Evac 46 Heliport" + }, + { + "id": "7993", + "ident": "16IS", + "type": "small_airport", + "name": "Kellums Airport", + "latitude_deg": "37.577608", + "longitude_deg": "-89.008583", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Goreville", + "scheduled_service": "no", + "gps_code": "16IS", + "local_code": "16IS" + }, + { + "id": "7994", + "ident": "16K", + "type": "seaplane_base", + "name": "Port Alice Seaplane Base", + "latitude_deg": "55.803", + "longitude_deg": "-133.597", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Port Alice", + "scheduled_service": "no", + "gps_code": "16K", + "iata_code": "PTC", + "local_code": "16K" + }, + { + "id": "7995", + "ident": "16KY", + "type": "closed", + "name": "Praise God Airport", + "latitude_deg": "38.444", + "longitude_deg": "-83.122704", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Carter", + "scheduled_service": "no", + "keywords": "16KY" + }, + { + "id": "7996", + "ident": "16LA", + "type": "heliport", + "name": "Arrow Aviation Company Heliport", + "latitude_deg": "30.084999084472656", + "longitude_deg": "-91.92389678955078", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cade", + "scheduled_service": "no", + "gps_code": "16LA", + "local_code": "16LA" + }, + { + "id": "7997", + "ident": "16LL", + "type": "heliport", + "name": "Oak Landing Heliport", + "latitude_deg": "42.29999923706055", + "longitude_deg": "-88.38059997558594", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Bull Valley", + "scheduled_service": "no", + "gps_code": "16LL", + "local_code": "16LL" + }, + { + "id": "7998", + "ident": "16LS", + "type": "closed", + "name": "Atchafalaya Flying Company Airport", + "latitude_deg": "30.944401", + "longitude_deg": "-91.7939", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Simmsport", + "scheduled_service": "no", + "keywords": "16LS" + }, + { + "id": "7999", + "ident": "16MA", + "type": "heliport", + "name": "Lawrence General Hospital Heliport", + "latitude_deg": "42.709800720214844", + "longitude_deg": "-71.15059661865234", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Lawrence", + "scheduled_service": "no", + "gps_code": "16MA", + "local_code": "16MA" + }, + { + "id": "45462", + "ident": "16MD", + "type": "small_airport", + "name": "High Valley Airport", + "latitude_deg": "39.668611", + "longitude_deg": "-75.960278", + "elevation_ft": "363", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "North East", + "scheduled_service": "no", + "gps_code": "16MD", + "local_code": "16MD" + }, + { + "id": "329353", + "ident": "16ME", + "type": "heliport", + "name": "Presque Isle Heliport", + "latitude_deg": "46.675919", + "longitude_deg": "-67.998981", + "elevation_ft": "631", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Presque Isle", + "scheduled_service": "no", + "gps_code": "16ME", + "local_code": "16ME" + }, + { + "id": "8000", + "ident": "16MI", + "type": "small_airport", + "name": "Barnstormers 5 Airport", + "latitude_deg": "42.889198303222656", + "longitude_deg": "-83.8666000366211", + "elevation_ft": "823", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Gaines", + "scheduled_service": "no", + "gps_code": "16MI", + "local_code": "16MI" + }, + { + "id": "8001", + "ident": "16MN", + "type": "closed", + "name": "Baudette Flying Service Seaplane Base", + "latitude_deg": "48.831902", + "longitude_deg": "-94.704399", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Baudette", + "scheduled_service": "no", + "keywords": "16MN" + }, + { + "id": "8002", + "ident": "16MO", + "type": "small_airport", + "name": "Findley Field", + "latitude_deg": "38.405601501464844", + "longitude_deg": "-91.15740203857422", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Beaufort", + "scheduled_service": "no", + "gps_code": "16MO", + "local_code": "16MO" + }, + { + "id": "8003", + "ident": "16MS", + "type": "heliport", + "name": "Iuka Hospital Heliport", + "latitude_deg": "34.80670166015625", + "longitude_deg": "-88.20999908447266", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Iuka", + "scheduled_service": "no", + "gps_code": "16MS", + "local_code": "16MS" + }, + { + "id": "8004", + "ident": "16MT", + "type": "small_airport", + "name": "Bangart Field", + "latitude_deg": "45.40520095825195", + "longitude_deg": "-109.12999725341797", + "elevation_ft": "4320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Roberts", + "scheduled_service": "no", + "gps_code": "16MT", + "local_code": "16MT" + }, + { + "id": "8005", + "ident": "16NC", + "type": "small_airport", + "name": "Lee's Airport", + "latitude_deg": "36.19609832763672", + "longitude_deg": "-76.66529846191406", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Edenton", + "scheduled_service": "no", + "gps_code": "16NC", + "local_code": "16NC" + }, + { + "id": "349882", + "ident": "16ND", + "type": "small_airport", + "name": "Kalberer Airport", + "latitude_deg": "46.696775", + "longitude_deg": "-100.596789", + "elevation_ft": "1828", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Bismarck", + "scheduled_service": "no", + "gps_code": "16ND", + "local_code": "16ND" + }, + { + "id": "8006", + "ident": "16NE", + "type": "small_airport", + "name": "Korver Airport", + "latitude_deg": "40.560001373291016", + "longitude_deg": "-96.49169921875", + "elevation_ft": "1390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Panama", + "scheduled_service": "no", + "gps_code": "16NE", + "local_code": "16NE" + }, + { + "id": "8007", + "ident": "16NH", + "type": "seaplane_base", + "name": "Bossey's Seaplane Base", + "latitude_deg": "43.60419845581055", + "longitude_deg": "-71.51249694824219", + "elevation_ft": "624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Meredith", + "scheduled_service": "no", + "gps_code": "16NH", + "local_code": "16NH" + }, + { + "id": "8008", + "ident": "16NJ", + "type": "seaplane_base", + "name": "Hummel Seaplane Base", + "latitude_deg": "39.93730163574219", + "longitude_deg": "-74.13569641113281", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Island Heights", + "scheduled_service": "no", + "gps_code": "16NJ", + "local_code": "16NJ" + }, + { + "id": "8009", + "ident": "16NK", + "type": "heliport", + "name": "Delaware Valley Hospital Heliport", + "latitude_deg": "42.16239929199219", + "longitude_deg": "-75.12799835205078", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Walton", + "scheduled_service": "no", + "gps_code": "16NK", + "local_code": "16NK" + }, + { + "id": "8010", + "ident": "16NY", + "type": "closed", + "name": "Station 241 Heliport", + "latitude_deg": "42.939804", + "longitude_deg": "-76.114899", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Syracuse", + "scheduled_service": "no", + "keywords": "16NY" + }, + { + "id": "8011", + "ident": "16OH", + "type": "closed", + "name": "Lutheran Hospital Heliport", + "latitude_deg": "41.354198", + "longitude_deg": "-81.708199", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cleveland", + "scheduled_service": "no", + "keywords": "16OH" + }, + { + "id": "8012", + "ident": "16OI", + "type": "small_airport", + "name": "Trump Airport", + "latitude_deg": "40.125301361083984", + "longitude_deg": "-84.5824966430664", + "elevation_ft": "1038", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "16OI", + "local_code": "16OI" + }, + { + "id": "8013", + "ident": "16OK", + "type": "closed", + "name": "Lower Forty Airport", + "latitude_deg": "35.466702", + "longitude_deg": "-97.200302", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Harrah", + "scheduled_service": "no", + "keywords": "16OK" + }, + { + "id": "8014", + "ident": "16OR", + "type": "closed", + "name": "Papé Bros Inc Heliport", + "latitude_deg": "44.147598", + "longitude_deg": "-123.059998", + "elevation_ft": "388", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Coburg", + "scheduled_service": "no", + "gps_code": "16OR", + "local_code": "16OR" + }, + { + "id": "8015", + "ident": "16PA", + "type": "small_airport", + "name": "Gregg Airport", + "latitude_deg": "40.180599212646484", + "longitude_deg": "-80.12760162353516", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Eighty Four", + "scheduled_service": "no", + "gps_code": "16PA", + "local_code": "16PA" + }, + { + "id": "8016", + "ident": "16PN", + "type": "heliport", + "name": "Oakdale Army Heliport", + "latitude_deg": "40.3966825974", + "longitude_deg": "-80.15811681750002", + "elevation_ft": "1265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Oakdale", + "scheduled_service": "no", + "gps_code": "16PN", + "local_code": "16PN" + }, + { + "id": "8017", + "ident": "16S", + "type": "small_airport", + "name": "Myrtle Creek Municipal Airport", + "latitude_deg": "42.997157", + "longitude_deg": "-123.315412", + "elevation_ft": "619", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Myrtle Creek", + "scheduled_service": "no", + "gps_code": "K16S", + "local_code": "16S", + "home_link": "http://www.cityofmyrtlecreek.com/city_departments/airport.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Myrtle_Creek_Municipal_Airport", + "keywords": "Tri-City" + }, + { + "id": "8018", + "ident": "16SC", + "type": "small_airport", + "name": "Southern Aero Sports Airport", + "latitude_deg": "34.625099182128906", + "longitude_deg": "-81.89839935302734", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Cross Anchor", + "scheduled_service": "no", + "gps_code": "16SC", + "local_code": "16SC" + }, + { + "id": "345756", + "ident": "16SD", + "type": "heliport", + "name": "Madison Community Hospital Heliport", + "latitude_deg": "43.990661", + "longitude_deg": "-97.117349", + "elevation_ft": "1683", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "16SD", + "local_code": "16SD" + }, + { + "id": "8019", + "ident": "16TA", + "type": "small_airport", + "name": "Seven Springs Airport", + "latitude_deg": "30.919701", + "longitude_deg": "-103.782997", + "elevation_ft": "3500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Balmorhea", + "scheduled_service": "no", + "gps_code": "16TA", + "local_code": "16TA" + }, + { + "id": "8020", + "ident": "16TE", + "type": "small_airport", + "name": "Holly Lake Ranch Airport", + "latitude_deg": "32.697601318359375", + "longitude_deg": "-95.20770263671875", + "elevation_ft": "409", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hawkins", + "scheduled_service": "no", + "gps_code": "16TE", + "local_code": "16TE" + }, + { + "id": "8021", + "ident": "16TN", + "type": "heliport", + "name": "Lincoln Medical Center Heliport", + "latitude_deg": "35.150299072265625", + "longitude_deg": "-86.5553970336914", + "elevation_ft": "738", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "16TN", + "local_code": "16TN" + }, + { + "id": "8022", + "ident": "16TS", + "type": "small_airport", + "name": "Pineridge Airport", + "latitude_deg": "32.222698", + "longitude_deg": "-95.318001", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tyler", + "scheduled_service": "no", + "gps_code": "16TS", + "local_code": "16TS" + }, + { + "id": "338868", + "ident": "16TT", + "type": "small_airport", + "name": "16 L Ranch Airport", + "latitude_deg": "31.093611", + "longitude_deg": "-96.04375", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Normangee", + "scheduled_service": "no", + "gps_code": "16TT", + "local_code": "16TT" + }, + { + "id": "8023", + "ident": "16TX", + "type": "closed", + "name": "Ratliff Airport", + "latitude_deg": "32.263002", + "longitude_deg": "-98.110609", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Stephenville", + "scheduled_service": "no", + "keywords": "16TX" + }, + { + "id": "8024", + "ident": "16VA", + "type": "closed", + "name": "Smith Heliport", + "latitude_deg": "39.150101", + "longitude_deg": "-78.2164", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Winchester", + "scheduled_service": "no", + "keywords": "16VA" + }, + { + "id": "8025", + "ident": "16W", + "type": "small_airport", + "name": "Little Goose State Airport", + "latitude_deg": "46.583931", + "longitude_deg": "-118.003972", + "elevation_ft": "681", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "LaCrosse", + "scheduled_service": "no", + "gps_code": "K16W", + "local_code": "16W", + "keywords": "Little Goose Lock and Dam Airport" + }, + { + "id": "8026", + "ident": "16WA", + "type": "small_airport", + "name": "Tightcliff Airport", + "latitude_deg": "47.84469985961914", + "longitude_deg": "-117.69400024414062", + "elevation_ft": "1855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Nine Mile Falls", + "scheduled_service": "no", + "gps_code": "16WA", + "local_code": "16WA" + }, + { + "id": "8027", + "ident": "16WI", + "type": "seaplane_base", + "name": "Lac Vieux Desert Seaplane Base", + "latitude_deg": "46.12160110473633", + "longitude_deg": "-89.12100219726562", + "elevation_ft": "1690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Phelps", + "scheduled_service": "no", + "gps_code": "16WI", + "local_code": "16WI" + }, + { + "id": "8028", + "ident": "16X", + "type": "small_airport", + "name": "Propwash Airport", + "latitude_deg": "33.0806999206543", + "longitude_deg": "-97.35890197753906", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Justin", + "scheduled_service": "no", + "gps_code": "16X", + "local_code": "16X", + "keywords": "Formerly 16XS" + }, + { + "id": "326179", + "ident": "16XA", + "type": "heliport", + "name": "Texoma Medical Center Heliport", + "latitude_deg": "33.709586", + "longitude_deg": "-96.5838", + "elevation_ft": "682", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Denison", + "scheduled_service": "no", + "gps_code": "16XA", + "local_code": "16XA" + }, + { + "id": "45835", + "ident": "16XS", + "type": "small_airport", + "name": "Outlaw Flyers Airport", + "latitude_deg": "30.404367", + "longitude_deg": "-95.35985", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Conroe", + "scheduled_service": "no", + "gps_code": "16XS", + "local_code": "16XS" + }, + { + "id": "8029", + "ident": "16Z", + "type": "seaplane_base", + "name": "Mc Grath Seaplane Base", + "latitude_deg": "62.9580001831", + "longitude_deg": "-155.593002319", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Mcgrath", + "scheduled_service": "no", + "gps_code": "16Z", + "local_code": "16Z" + }, + { + "id": "8030", + "ident": "17AK", + "type": "heliport", + "name": "Ketchikan /Temsco H/ Heliport", + "latitude_deg": "55.382999420166016", + "longitude_deg": "-131.73500061035156", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ketchikan", + "scheduled_service": "no", + "gps_code": "17AK", + "local_code": "17AK" + }, + { + "id": "8031", + "ident": "17AL", + "type": "heliport", + "name": "Hunt Stagefield Army Heliport", + "latitude_deg": "31.380199432373047", + "longitude_deg": "-85.5802993774414", + "elevation_ft": "263", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker/Newton", + "scheduled_service": "no", + "gps_code": "17AL", + "local_code": "17AL" + }, + { + "id": "8032", + "ident": "17AR", + "type": "small_airport", + "name": "Bredlow Farm Airport", + "latitude_deg": "34.5531005859375", + "longitude_deg": "-92.09140014648438", + "elevation_ft": "236", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "England", + "scheduled_service": "no", + "gps_code": "17AR", + "local_code": "17AR" + }, + { + "id": "8033", + "ident": "17AZ", + "type": "heliport", + "name": "East Valley ER & Hospital Helipad", + "latitude_deg": "33.314114", + "longitude_deg": "-111.687419", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gilbert", + "scheduled_service": "no", + "home_link": "https://eastvalleyhospital.com/", + "keywords": "17AZ, Gilbert Emergency Hospital, Desert Grove Family Medical" + }, + { + "id": "8034", + "ident": "17CA", + "type": "closed", + "name": "Doctors Medical Center Heliport", + "latitude_deg": "37.953698", + "longitude_deg": "-122.337275", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Pablo", + "scheduled_service": "no", + "keywords": "17CA, Brookside Hospital" + }, + { + "id": "8035", + "ident": "17CL", + "type": "small_airport", + "name": "Las Trancas Airport", + "latitude_deg": "37.088545", + "longitude_deg": "-122.273691", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Davenport", + "scheduled_service": "no", + "gps_code": "17CL", + "local_code": "17CL", + "keywords": "6Q6" + }, + { + "id": "45331", + "ident": "17CO", + "type": "small_airport", + "name": "Skylane Ranch Airport", + "latitude_deg": "40.272258", + "longitude_deg": "-105.032625", + "elevation_ft": "5000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Berthoud", + "scheduled_service": "no", + "gps_code": "17CO", + "local_code": "17CO" + }, + { + "id": "8036", + "ident": "17FA", + "type": "small_airport", + "name": "Cotton Strip", + "latitude_deg": "26.71339988708496", + "longitude_deg": "-81.535400390625", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "La Belle", + "scheduled_service": "no", + "gps_code": "17FA", + "local_code": "17FA" + }, + { + "id": "8037", + "ident": "17FD", + "type": "closed", + "name": "Sheriffs Helistop", + "latitude_deg": "27.90008", + "longitude_deg": "-81.845167", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bartow", + "scheduled_service": "no", + "keywords": "17FD" + }, + { + "id": "8038", + "ident": "17FL", + "type": "small_airport", + "name": "Jumbolair-Greystone Airport", + "latitude_deg": "29.277416", + "longitude_deg": "-82.120709", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ocala", + "scheduled_service": "no", + "gps_code": "17FL", + "local_code": "17FL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greystone_Airport" + }, + { + "id": "8039", + "ident": "17GA", + "type": "small_airport", + "name": "Panther Creek Airport", + "latitude_deg": "33.46670150756836", + "longitude_deg": "-84.86609649658203", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Newnan", + "scheduled_service": "no", + "gps_code": "17GA", + "local_code": "17GA" + }, + { + "id": "354453", + "ident": "17GE", + "type": "heliport", + "name": "Piedmont Fayette Hospital Heliport", + "latitude_deg": "33.45305", + "longitude_deg": "-84.50677", + "elevation_ft": "884", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "17GE", + "local_code": "17GE" + }, + { + "id": "8040", + "ident": "17ID", + "type": "small_airport", + "name": "Coyote Ridge Airport", + "latitude_deg": "44.41389846801758", + "longitude_deg": "-116.59100341796875", + "elevation_ft": "3365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Midvale", + "scheduled_service": "no", + "gps_code": "17ID", + "local_code": "17ID" + }, + { + "id": "8041", + "ident": "17II", + "type": "small_airport", + "name": "Dreessen Field", + "latitude_deg": "41.45000076293945", + "longitude_deg": "-86.51029968261719", + "elevation_ft": "706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Walkerton", + "scheduled_service": "no", + "gps_code": "17II", + "local_code": "17II" + }, + { + "id": "8042", + "ident": "17IN", + "type": "small_airport", + "name": "Pruss Airport", + "latitude_deg": "38.978401", + "longitude_deg": "-85.109703", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Dillsboro", + "scheduled_service": "no", + "gps_code": "17IN", + "local_code": "17IN" + }, + { + "id": "8043", + "ident": "17KS", + "type": "closed", + "name": "Tevis Airport", + "latitude_deg": "38.5028", + "longitude_deg": "-95.6772", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Melvern", + "scheduled_service": "no", + "gps_code": "17KS", + "local_code": "17KS" + }, + { + "id": "8044", + "ident": "17KY", + "type": "small_airport", + "name": "Lester Airfield", + "latitude_deg": "37.393902", + "longitude_deg": "-87.258904", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Sacramento", + "scheduled_service": "no", + "gps_code": "17KY", + "local_code": "17KY", + "keywords": "Shannon Field" + }, + { + "id": "8045", + "ident": "17LA", + "type": "closed", + "name": "Shell Venice Terminal Heliport", + "latitude_deg": "29.2708", + "longitude_deg": "-89.3545", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no", + "keywords": "17LA" + }, + { + "id": "8046", + "ident": "17LL", + "type": "closed", + "name": "Oink Acres Airport", + "latitude_deg": "40.160599", + "longitude_deg": "-88.410301", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mahomet", + "scheduled_service": "no", + "keywords": "17LL" + }, + { + "id": "8047", + "ident": "17LS", + "type": "small_airport", + "name": "Yankee Field", + "latitude_deg": "30.611979", + "longitude_deg": "-91.985704", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Port Barre", + "scheduled_service": "no", + "gps_code": "17LS", + "local_code": "17LS" + }, + { + "id": "8048", + "ident": "17MA", + "type": "heliport", + "name": "Long Hill Heliport", + "latitude_deg": "42.504798889160156", + "longitude_deg": "-71.77839660644531", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Leominster", + "scheduled_service": "no", + "gps_code": "17MA", + "local_code": "17MA" + }, + { + "id": "345511", + "ident": "17MD", + "type": "heliport", + "name": "Johns Hopkins Hospital Critical Care Tower Heliport", + "latitude_deg": "39.296011", + "longitude_deg": "-76.592109", + "elevation_ft": "293", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Baltimore", + "scheduled_service": "no", + "gps_code": "17MD", + "local_code": "17MD" + }, + { + "id": "45445", + "ident": "17ME", + "type": "small_airport", + "name": "Bresett's Mountainside Airport", + "latitude_deg": "47.201377", + "longitude_deg": "-67.992432", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Van Buren", + "scheduled_service": "no", + "gps_code": "17ME", + "local_code": "17ME" + }, + { + "id": "8049", + "ident": "17MI", + "type": "heliport", + "name": "Grace Hospital Heliport", + "latitude_deg": "42.41780090332031", + "longitude_deg": "-83.18299865722656", + "elevation_ft": "662", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Detroit", + "scheduled_service": "no", + "gps_code": "17MI", + "local_code": "17MI" + }, + { + "id": "8050", + "ident": "17MN", + "type": "seaplane_base", + "name": "Jackson Seaplane Base", + "latitude_deg": "46.7169", + "longitude_deg": "-93.210197", + "elevation_ft": "1224", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Mc Gregor", + "scheduled_service": "no", + "gps_code": "MN61", + "local_code": "MN61", + "keywords": "17MN, Kivi/Mokki Seaplane Base" + }, + { + "id": "8051", + "ident": "17MO", + "type": "small_airport", + "name": "Rgl Field", + "latitude_deg": "38.98500061035156", + "longitude_deg": "-91.53489685058594", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Montgomery City", + "scheduled_service": "no", + "gps_code": "17MO", + "local_code": "17MO" + }, + { + "id": "8052", + "ident": "17MS", + "type": "heliport", + "name": "River Region Medical Center Heliport", + "latitude_deg": "32.373600006103516", + "longitude_deg": "-90.82360076904297", + "elevation_ft": "331", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Vicksburg", + "scheduled_service": "no", + "gps_code": "17MS", + "local_code": "17MS" + }, + { + "id": "8053", + "ident": "17MT", + "type": "small_airport", + "name": "Abel Ranch Airport", + "latitude_deg": "48.10710144042969", + "longitude_deg": "-114.177001953125", + "elevation_ft": "2900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Kalispell", + "scheduled_service": "no", + "gps_code": "17MT", + "local_code": "17MT" + }, + { + "id": "324734", + "ident": "17MU", + "type": "small_airport", + "name": "B-B Airfield", + "latitude_deg": "39.682791", + "longitude_deg": "-94.372097", + "elevation_ft": "1045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Osborn", + "scheduled_service": "no", + "gps_code": "17MU", + "local_code": "17MU" + }, + { + "id": "8054", + "ident": "17NC", + "type": "small_airport", + "name": "Mitchell Field", + "latitude_deg": "34.46630096435547", + "longitude_deg": "-78.32859802246094", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Elizabethtown", + "scheduled_service": "no", + "gps_code": "17NC", + "local_code": "17NC" + }, + { + "id": "8055", + "ident": "17NE", + "type": "heliport", + "name": "Jefferson County Memorial Hospital Heliport", + "latitude_deg": "40.15719986", + "longitude_deg": "-97.17639923", + "elevation_ft": "1433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Fairbury", + "scheduled_service": "no", + "gps_code": "17NE", + "local_code": "17NE" + }, + { + "id": "8056", + "ident": "17NH", + "type": "heliport", + "name": "Pomroy Heliport", + "latitude_deg": "42.82389831542969", + "longitude_deg": "-71.36499786376953", + "elevation_ft": "254", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Londonderry", + "scheduled_service": "no", + "gps_code": "17NH", + "local_code": "17NH" + }, + { + "id": "8057", + "ident": "17NJ", + "type": "heliport", + "name": "CMC Steel New Jersey Heliport", + "latitude_deg": "40.486198", + "longitude_deg": "-74.322098", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Sayreville", + "scheduled_service": "no", + "gps_code": "17NJ", + "local_code": "17NJ", + "keywords": "New Jersey Steel Helistop" + }, + { + "id": "8058", + "ident": "17NK", + "type": "small_airport", + "name": "Re-Dun Field", + "latitude_deg": "42.53950119018555", + "longitude_deg": "-76.94830322265625", + "elevation_ft": "1351", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Reading Center", + "scheduled_service": "no", + "gps_code": "17NK", + "local_code": "17NK" + }, + { + "id": "345384", + "ident": "17NR", + "type": "small_airport", + "name": "Zombie Air Force Airport", + "latitude_deg": "34.78325", + "longitude_deg": "-78.577008", + "elevation_ft": "86", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Ammon", + "scheduled_service": "no", + "gps_code": "17NR", + "local_code": "17NR" + }, + { + "id": "8059", + "ident": "17NY", + "type": "heliport", + "name": "Station 233 Heliport", + "latitude_deg": "42.84870147705078", + "longitude_deg": "-77.92030334472656", + "elevation_ft": "944", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Stafford", + "scheduled_service": "no", + "gps_code": "17NY", + "local_code": "17NY" + }, + { + "id": "346702", + "ident": "17OG", + "type": "heliport", + "name": "Eugene Fire Station #2 Heliport", + "latitude_deg": "44.058406", + "longitude_deg": "-123.119032", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Eugene", + "scheduled_service": "no", + "gps_code": "17OG", + "local_code": "17OG" + }, + { + "id": "8060", + "ident": "17OH", + "type": "small_airport", + "name": "Kosik Private Airport", + "latitude_deg": "41.24259948730469", + "longitude_deg": "-82.27020263671875", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Kipton", + "scheduled_service": "no", + "gps_code": "17OH", + "local_code": "17OH" + }, + { + "id": "8061", + "ident": "17OI", + "type": "small_airport", + "name": "Haas Airport", + "latitude_deg": "39.22669982910156", + "longitude_deg": "-83.31770324707031", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bainbridge", + "scheduled_service": "no", + "gps_code": "17OI", + "local_code": "17OI" + }, + { + "id": "8062", + "ident": "17OK", + "type": "closed", + "name": "J-B Airstrip", + "latitude_deg": "36.525002", + "longitude_deg": "-97.758698", + "elevation_ft": "1142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Kremlin", + "scheduled_service": "no", + "keywords": "17OK" + }, + { + "id": "8063", + "ident": "17OR", + "type": "small_airport", + "name": "Glide Aero Airport", + "latitude_deg": "43.264198303222656", + "longitude_deg": "-123.11000061035156", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Glide", + "scheduled_service": "no", + "gps_code": "17OR", + "local_code": "17OR" + }, + { + "id": "8064", + "ident": "17PA", + "type": "heliport", + "name": "Kelly Heliport", + "latitude_deg": "40.44179916381836", + "longitude_deg": "-75.32460021972656", + "elevation_ft": "526", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Quakertown", + "scheduled_service": "no", + "gps_code": "17PA", + "local_code": "17PA" + }, + { + "id": "8065", + "ident": "17PN", + "type": "heliport", + "name": "Tobyhanna Army Depot Heliport", + "latitude_deg": "41.19834", + "longitude_deg": "-75.43656", + "elevation_ft": "1990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tobyhanna", + "scheduled_service": "no", + "gps_code": "17PN", + "local_code": "17PN" + }, + { + "id": "8066", + "ident": "17PS", + "type": "small_airport", + "name": "Mountain Crest Airport", + "latitude_deg": "41.579200744628906", + "longitude_deg": "-79.44170379638672", + "elevation_ft": "1641", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tidioute", + "scheduled_service": "no", + "gps_code": "17PS", + "local_code": "17PS" + }, + { + "id": "8067", + "ident": "17S", + "type": "small_airport", + "name": "Chehalem Airpark", + "latitude_deg": "45.323699951171875", + "longitude_deg": "-123.05400085449219", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Newberg", + "scheduled_service": "no", + "gps_code": "17S", + "local_code": "17S", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chehalem_Airpark" + }, + { + "id": "8068", + "ident": "17SC", + "type": "small_airport", + "name": "Carolina Cow Country Airport", + "latitude_deg": "34.53260040283203", + "longitude_deg": "-81.88619995117188", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "17SC", + "local_code": "17SC" + }, + { + "id": "328106", + "ident": "17SD", + "type": "small_airport", + "name": "Stone's Conservation Airport", + "latitude_deg": "44.818642", + "longitude_deg": "-96.564016", + "elevation_ft": "1687", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Gary", + "scheduled_service": "no", + "gps_code": "17SD", + "local_code": "17SD" + }, + { + "id": "8069", + "ident": "17TA", + "type": "heliport", + "name": "Heli-Dyne Systems Inc Heliport", + "latitude_deg": "32.80099868774414", + "longitude_deg": "-97.17949676513672", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hurst", + "scheduled_service": "no", + "gps_code": "17TA", + "local_code": "17TA" + }, + { + "id": "8070", + "ident": "17TE", + "type": "small_airport", + "name": "Comfort Airpark", + "latitude_deg": "29.929100036621094", + "longitude_deg": "-98.94029998779297", + "elevation_ft": "1470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comfort", + "scheduled_service": "no", + "gps_code": "17TE", + "local_code": "17TE" + }, + { + "id": "8071", + "ident": "17TN", + "type": "small_airport", + "name": "Murphy Field", + "latitude_deg": "36.299400329589844", + "longitude_deg": "-82.60420227050781", + "elevation_ft": "1720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Jonesborough", + "scheduled_service": "no", + "gps_code": "17TN", + "local_code": "17TN" + }, + { + "id": "8072", + "ident": "17TS", + "type": "heliport", + "name": "Big Bend Regional Medical Center Heliport", + "latitude_deg": "30.384700775146484", + "longitude_deg": "-103.66899871826172", + "elevation_ft": "4435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alpine", + "scheduled_service": "no", + "gps_code": "17TS", + "local_code": "17TS" + }, + { + "id": "338677", + "ident": "17TT", + "type": "heliport", + "name": "Allen Condo/Tower Heliport", + "latitude_deg": "29.760111", + "longitude_deg": "-95.382389", + "elevation_ft": "546", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "17TT", + "local_code": "17TT" + }, + { + "id": "8073", + "ident": "17TX", + "type": "small_airport", + "name": "Kimzey Airport", + "latitude_deg": "32.443395", + "longitude_deg": "-98.255024", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Stephenville", + "scheduled_service": "no", + "gps_code": "17TX", + "local_code": "17TX", + "keywords": "Mize Ranch" + }, + { + "id": "8074", + "ident": "17U", + "type": "small_airport", + "name": "Jake Garn Airport", + "latitude_deg": "40.26369857788086", + "longitude_deg": "-112.02100372314453", + "elevation_ft": "4845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Eagle Mountain", + "scheduled_service": "no", + "gps_code": "17U", + "local_code": "17U" + }, + { + "id": "8075", + "ident": "17VA", + "type": "closed", + "name": "F.B. Fowler Heliport", + "latitude_deg": "37.280899", + "longitude_deg": "-82.102097", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Grundy", + "scheduled_service": "no", + "keywords": "17VA" + }, + { + "id": "8076", + "ident": "17WA", + "type": "heliport", + "name": "Roesler Timber Company Heliport", + "latitude_deg": "47.86819839477539", + "longitude_deg": "-121.75299835205078", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Startup", + "scheduled_service": "no", + "gps_code": "17WA", + "local_code": "17WA" + }, + { + "id": "8077", + "ident": "17WI", + "type": "small_airport", + "name": "Ha-Rail Airport", + "latitude_deg": "43.03609848022461", + "longitude_deg": "-88.89320373535156", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Lake Mills", + "scheduled_service": "no", + "gps_code": "17WI", + "local_code": "17WI" + }, + { + "id": "299706", + "ident": "17XA", + "type": "small_airport", + "name": "Jacksonville / Hunter Field", + "latitude_deg": "32.017778", + "longitude_deg": "-95.7969444445", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "17XA", + "local_code": "17XA" + }, + { + "id": "8078", + "ident": "17XS", + "type": "small_airport", + "name": "Quahadi Ranch Airport", + "latitude_deg": "32.177799224853516", + "longitude_deg": "-98.43499755859375", + "elevation_ft": "1422", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dublin", + "scheduled_service": "no", + "gps_code": "17XS", + "local_code": "17XS" + }, + { + "id": "325112", + "ident": "18AA", + "type": "small_airport", + "name": "18 Meadows Aerodrome", + "latitude_deg": "59.364956", + "longitude_deg": "-135.804791", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Haines", + "scheduled_service": "no", + "gps_code": "18AA", + "local_code": "18AA" + }, + { + "id": "8079", + "ident": "18AK", + "type": "heliport", + "name": "North Douglas Heliport", + "latitude_deg": "58.33219909667969", + "longitude_deg": "-134.4969940185547", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Juneau", + "scheduled_service": "no", + "gps_code": "18AK", + "local_code": "18AK" + }, + { + "id": "8080", + "ident": "18AL", + "type": "heliport", + "name": "Louisville Stagefield Army Heliport", + "latitude_deg": "31.816699981689453", + "longitude_deg": "-85.65180206298828", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker/Louisville", + "scheduled_service": "no", + "gps_code": "18AL", + "local_code": "18AL" + }, + { + "id": "8081", + "ident": "18AR", + "type": "small_airport", + "name": "Buck Mountain Airport", + "latitude_deg": "36.339439", + "longitude_deg": "-93.825036", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Eureka Springs", + "scheduled_service": "no", + "gps_code": "18AR", + "local_code": "18AR" + }, + { + "id": "8082", + "ident": "18AZ", + "type": "small_airport", + "name": "Sky Ranch At Carefree Airport", + "latitude_deg": "33.818536", + "longitude_deg": "-111.898327", + "elevation_ft": "2568", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Carefree", + "scheduled_service": "no", + "gps_code": "18AZ", + "local_code": "18AZ", + "keywords": "carefree, skyranch" + }, + { + "id": "8083", + "ident": "18CA", + "type": "heliport", + "name": "Twin Cities Community Hospital Heliport", + "latitude_deg": "35.55500030517578", + "longitude_deg": "-120.71900177001953", + "elevation_ft": "851", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Templeton", + "scheduled_service": "no", + "gps_code": "18CA", + "local_code": "18CA" + }, + { + "id": "8084", + "ident": "18CL", + "type": "small_airport", + "name": "Bowles Airport", + "latitude_deg": "39.2859992980957", + "longitude_deg": "-121.69400024414062", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Live Oak", + "scheduled_service": "no", + "gps_code": "18CL", + "local_code": "18CL" + }, + { + "id": "8085", + "ident": "18CO", + "type": "heliport", + "name": "Rangely District Hospital Heliport", + "latitude_deg": "40.0807991027832", + "longitude_deg": "-108.80400085449219", + "elevation_ft": "5224", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Rangely", + "scheduled_service": "no", + "gps_code": "18CO", + "local_code": "18CO" + }, + { + "id": "8086", + "ident": "18FA", + "type": "closed", + "name": "Tropical Plantation Airport", + "latitude_deg": "27.099405", + "longitude_deg": "-80.296005", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Palm City", + "scheduled_service": "no", + "keywords": "18FA" + }, + { + "id": "8087", + "ident": "18FD", + "type": "small_airport", + "name": "Skypark Estates Owners Assoc Airport", + "latitude_deg": "30.853394", + "longitude_deg": "-86.667214", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Baker", + "scheduled_service": "no", + "gps_code": "18FD", + "local_code": "18FD", + "keywords": "Sky Ranch Airport" + }, + { + "id": "8088", + "ident": "18FL", + "type": "closed", + "name": "Bahia Beach Heliport", + "latitude_deg": "27.731072", + "longitude_deg": "-82.475878", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ruskin", + "scheduled_service": "no", + "keywords": "18FL" + }, + { + "id": "8089", + "ident": "18GA", + "type": "small_airport", + "name": "Sleepy Hollow Airport", + "latitude_deg": "33.693199157714844", + "longitude_deg": "-83.65769958496094", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Social Circle", + "scheduled_service": "no", + "gps_code": "18GA", + "local_code": "18GA" + }, + { + "id": "345303", + "ident": "18HI", + "type": "small_airport", + "name": "Brandt Field", + "latitude_deg": "21.137026", + "longitude_deg": "-156.734498", + "elevation_ft": "685", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Port Saint Joe", + "scheduled_service": "no", + "gps_code": "18HI", + "local_code": "18HI" + }, + { + "id": "8090", + "ident": "18ID", + "type": "heliport", + "name": "Elmore Medical Center Heliport", + "latitude_deg": "43.13890075683594", + "longitude_deg": "-115.69400024414062", + "elevation_ft": "3156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Mountain Home", + "scheduled_service": "no", + "gps_code": "18ID", + "local_code": "18ID" + }, + { + "id": "8091", + "ident": "18II", + "type": "small_airport", + "name": "Mc Gill Airport", + "latitude_deg": "40.1199989319", + "longitude_deg": "-86.0682983398", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Cicero", + "scheduled_service": "no", + "gps_code": "18II", + "local_code": "18II" + }, + { + "id": "8092", + "ident": "18IL", + "type": "heliport", + "name": "AMITA Health Medical Center La Grange Heliport", + "latitude_deg": "41.79699", + "longitude_deg": "-87.887281", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "La Grange", + "scheduled_service": "no", + "gps_code": "18IL", + "local_code": "18IL", + "keywords": "Adventist La Grange Memorial Hospital" + }, + { + "id": "8093", + "ident": "18IN", + "type": "closed", + "name": "Kester Fly Inn Airport", + "latitude_deg": "39.2784", + "longitude_deg": "-87.413597", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Farmersburg", + "scheduled_service": "no", + "keywords": "18IN" + }, + { + "id": "8094", + "ident": "18IS", + "type": "closed", + "name": "Allstate South Barrington Plaza Heliport", + "latitude_deg": "42.069374", + "longitude_deg": "-88.174813", + "elevation_ft": "858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "South Barrington", + "scheduled_service": "no", + "keywords": "18IS" + }, + { + "id": "8095", + "ident": "18JY", + "type": "small_airport", + "name": "Skamokawa East Valley Airport", + "latitude_deg": "46.284698486328125", + "longitude_deg": "-123.44300079345703", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Skamokawa", + "scheduled_service": "no", + "gps_code": "18JY", + "local_code": "18JY" + }, + { + "id": "8096", + "ident": "18K", + "type": "small_airport", + "name": "Fowler Airport", + "latitude_deg": "37.38420104980469", + "longitude_deg": "-100.18599700927734", + "elevation_ft": "2483", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Fowler", + "scheduled_service": "no", + "gps_code": "18K", + "local_code": "18K" + }, + { + "id": "8097", + "ident": "18KS", + "type": "small_airport", + "name": "Cherokee Strip", + "latitude_deg": "37.372435", + "longitude_deg": "-97.108223", + "elevation_ft": "1270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Udall", + "scheduled_service": "no", + "gps_code": "18KS", + "local_code": "18KS" + }, + { + "id": "8098", + "ident": "18KY", + "type": "heliport", + "name": "Marshall County Hospital Heliport", + "latitude_deg": "36.86259841918945", + "longitude_deg": "-88.35279846191406", + "elevation_ft": "395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Benton", + "scheduled_service": "no", + "gps_code": "18KY", + "local_code": "18KY" + }, + { + "id": "8099", + "ident": "18LA", + "type": "heliport", + "name": "Camp Beauregard Army National Guard Heliport", + "latitude_deg": "31.37507", + "longitude_deg": "-92.391287", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Pineville", + "scheduled_service": "no", + "gps_code": "18LA", + "local_code": "18LA" + }, + { + "id": "8100", + "ident": "18LS", + "type": "heliport", + "name": "Omni Mouton Cove Heliport", + "latitude_deg": "29.89189910888672", + "longitude_deg": "-92.16829681396484", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Abbeville", + "scheduled_service": "no", + "gps_code": "18LS", + "local_code": "18LS" + }, + { + "id": "8101", + "ident": "18MA", + "type": "heliport", + "name": "Holy Family Hospital Heliport", + "latitude_deg": "42.72779846191406", + "longitude_deg": "-71.16829681396484", + "elevation_ft": "202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Methuen", + "scheduled_service": "no", + "gps_code": "18MA", + "local_code": "18MA" + }, + { + "id": "45952", + "ident": "18MD", + "type": "heliport", + "name": "MedStar Montgomery Medical Center Heliport", + "latitude_deg": "39.154705", + "longitude_deg": "-77.055012", + "elevation_ft": "472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Olney", + "scheduled_service": "no", + "gps_code": "18MD", + "local_code": "18MD", + "keywords": "Montgomery General Hospital Heliport" + }, + { + "id": "45451", + "ident": "18ME", + "type": "small_airport", + "name": "Ruby Airport", + "latitude_deg": "43.893597", + "longitude_deg": "-69.495406", + "elevation_ft": "216", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Bristol", + "scheduled_service": "no", + "gps_code": "18ME", + "local_code": "18ME" + }, + { + "id": "8102", + "ident": "18MI", + "type": "heliport", + "name": "Vacottage Heliport", + "latitude_deg": "42.95859909057617", + "longitude_deg": "-84.6405029296875", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Gladwin", + "scheduled_service": "no", + "gps_code": "18MI", + "local_code": "18MI" + }, + { + "id": "8103", + "ident": "18MN", + "type": "small_airport", + "name": "Hines Farm Airport", + "latitude_deg": "46.23720169067383", + "longitude_deg": "-94.59310150146484", + "elevation_ft": "1283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Motley", + "scheduled_service": "no", + "gps_code": "18MN", + "local_code": "18MN" + }, + { + "id": "8104", + "ident": "18MO", + "type": "small_airport", + "name": "Gimlin Airport", + "latitude_deg": "36.96260070800781", + "longitude_deg": "-93.17070007324219", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Ozark", + "scheduled_service": "no", + "gps_code": "18MO", + "local_code": "18MO" + }, + { + "id": "8105", + "ident": "18MT", + "type": "small_airport", + "name": "Fish Ranch Airport", + "latitude_deg": "45.215999603271484", + "longitude_deg": "-113.4990005493164", + "elevation_ft": "7200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "18MT", + "local_code": "18MT" + }, + { + "id": "8106", + "ident": "18NC", + "type": "small_airport", + "name": "Lanni Field", + "latitude_deg": "35.888999938964844", + "longitude_deg": "-81.61370086669922", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Lenoir", + "scheduled_service": "no", + "gps_code": "18NC", + "local_code": "18NC" + }, + { + "id": "350293", + "ident": "18ND", + "type": "small_airport", + "name": "Bearpaw Airport", + "latitude_deg": "46.779094", + "longitude_deg": "-100.514856", + "elevation_ft": "1744", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Menoken", + "scheduled_service": "no", + "gps_code": "18ND", + "local_code": "18ND" + }, + { + "id": "8107", + "ident": "18NE", + "type": "small_airport", + "name": "Doc's Airport", + "latitude_deg": "40.51390075683594", + "longitude_deg": "-97.61060333251953", + "elevation_ft": "1640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Geneva", + "scheduled_service": "no", + "gps_code": "18NE", + "local_code": "18NE" + }, + { + "id": "345590", + "ident": "18NH", + "type": "heliport", + "name": "Catholic Medical Center Heliport", + "latitude_deg": "42.99161", + "longitude_deg": "-71.474234", + "elevation_ft": "252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Manchester", + "scheduled_service": "no", + "gps_code": "18NH", + "local_code": "18NH" + }, + { + "id": "8108", + "ident": "18NJ", + "type": "heliport", + "name": "Manalapan Township-Village Green Heliport", + "latitude_deg": "40.279598236083984", + "longitude_deg": "-74.32929992675781", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Freehold", + "scheduled_service": "no", + "gps_code": "18NJ", + "local_code": "18NJ" + }, + { + "id": "8109", + "ident": "18NY", + "type": "small_airport", + "name": "Strip in the Woods Airport", + "latitude_deg": "42.017362", + "longitude_deg": "-74.047593", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Woodstock", + "scheduled_service": "no", + "gps_code": "18NY", + "local_code": "18NY" + }, + { + "id": "8110", + "ident": "18OH", + "type": "small_airport", + "name": "Jer-Mar Airpark", + "latitude_deg": "41.25619888305664", + "longitude_deg": "-82.143798828125", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lagrange", + "scheduled_service": "no", + "gps_code": "18OH", + "local_code": "18OH" + }, + { + "id": "8111", + "ident": "18OI", + "type": "small_airport", + "name": "Boggy Bottoms Airport", + "latitude_deg": "41.419615", + "longitude_deg": "-82.97133", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Vickery", + "scheduled_service": "no", + "gps_code": "18OI", + "local_code": "18OI" + }, + { + "id": "8112", + "ident": "18OK", + "type": "heliport", + "name": "Comanche County Memorial Hospital Heliport", + "latitude_deg": "34.608303", + "longitude_deg": "-98.442081", + "elevation_ft": "1142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lawton", + "scheduled_service": "no", + "gps_code": "18OK", + "local_code": "18OK" + }, + { + "id": "8113", + "ident": "18OR", + "type": "small_airport", + "name": "Red's Field", + "latitude_deg": "45.0918655396", + "longitude_deg": "-123.182350159", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Amity", + "scheduled_service": "no", + "gps_code": "18OR", + "local_code": "18OR" + }, + { + "id": "8114", + "ident": "18PA", + "type": "small_airport", + "name": "Slack Airport", + "latitude_deg": "40.30009841918945", + "longitude_deg": "-75.08290100097656", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Forest Grove", + "scheduled_service": "no", + "gps_code": "18PA", + "local_code": "18PA" + }, + { + "id": "8115", + "ident": "18PN", + "type": "small_airport", + "name": "Spud View Airport", + "latitude_deg": "40.065399169921875", + "longitude_deg": "-77.69280242919922", + "elevation_ft": "733", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Upper Strasburg", + "scheduled_service": "no", + "gps_code": "18PN", + "local_code": "18PN" + }, + { + "id": "8116", + "ident": "18SC", + "type": "closed", + "name": "Connelly Field", + "latitude_deg": "34.271324", + "longitude_deg": "-81.77285", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Silverstreet", + "scheduled_service": "no", + "keywords": "18SC" + }, + { + "id": "348385", + "ident": "18SD", + "type": "small_airport", + "name": "Lost Creek Airport", + "latitude_deg": "44.702429", + "longitude_deg": "-99.070351", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Miller", + "scheduled_service": "no", + "gps_code": "18SD", + "local_code": "18SD" + }, + { + "id": "8117", + "ident": "18TA", + "type": "small_airport", + "name": "West Kerr Ranch Airport", + "latitude_deg": "30.13629913330078", + "longitude_deg": "-99.74369812011719", + "elevation_ft": "2330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Junction", + "scheduled_service": "no", + "gps_code": "18TA", + "local_code": "18TA" + }, + { + "id": "8118", + "ident": "18TE", + "type": "small_airport", + "name": "Alert Field", + "latitude_deg": "32.585201263427734", + "longitude_deg": "-95.06390380859375", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Big Sandy", + "scheduled_service": "no", + "gps_code": "18TE", + "local_code": "18TE" + }, + { + "id": "45789", + "ident": "18TN", + "type": "heliport", + "name": "North Valley Medical Center Heliport", + "latitude_deg": "35.387956", + "longitude_deg": "-85.380258", + "elevation_ft": "784", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Dunlap", + "scheduled_service": "no", + "gps_code": "18TN", + "local_code": "18TN" + }, + { + "id": "8119", + "ident": "18TS", + "type": "closed", + "name": "Brackenridge Hospital Heliport", + "latitude_deg": "30.27375", + "longitude_deg": "-97.734772", + "elevation_ft": "519", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "18TS", + "local_code": "18TS" + }, + { + "id": "8120", + "ident": "18TX", + "type": "small_airport", + "name": "Flying 'T' Ranch Airport", + "latitude_deg": "32.95249938964844", + "longitude_deg": "-96.22810363769531", + "elevation_ft": "545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Caddo Mills", + "scheduled_service": "no", + "gps_code": "18TX", + "local_code": "18TX" + }, + { + "id": "346916", + "ident": "18UT", + "type": "heliport", + "name": "Airmed Tooele Heliport", + "latitude_deg": "40.552259", + "longitude_deg": "-112.293797", + "elevation_ft": "4800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Tooele City", + "scheduled_service": "no", + "gps_code": "18UT" + }, + { + "id": "8121", + "ident": "18VA", + "type": "heliport", + "name": "English Heliport", + "latitude_deg": "37.10380172729492", + "longitude_deg": "-79.30110168457031", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Hurt", + "scheduled_service": "no", + "gps_code": "18VA", + "local_code": "18VA" + }, + { + "id": "324481", + "ident": "18VT", + "type": "heliport", + "name": "Springfield Hospital Heliport", + "latitude_deg": "43.298465", + "longitude_deg": "-72.494588", + "elevation_ft": "589", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "18VT", + "local_code": "18VT" + }, + { + "id": "8122", + "ident": "18WA", + "type": "heliport", + "name": "Pasco Heliport", + "latitude_deg": "46.375", + "longitude_deg": "-119.20600128173828", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Pasco", + "scheduled_service": "no", + "gps_code": "18WA", + "local_code": "18WA" + }, + { + "id": "8123", + "ident": "18WI", + "type": "heliport", + "name": "Leach Farms Heliport", + "latitude_deg": "44.0880012512207", + "longitude_deg": "-88.92539978027344", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Poy Sippi", + "scheduled_service": "no", + "gps_code": "18WI", + "local_code": "18WI" + }, + { + "id": "45919", + "ident": "18WV", + "type": "small_airport", + "name": "Lynn Airport", + "latitude_deg": "39.41", + "longitude_deg": "-79.856667", + "elevation_ft": "1680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Newburg", + "scheduled_service": "no", + "gps_code": "18WV", + "local_code": "18WV" + }, + { + "id": "310113", + "ident": "18XA", + "type": "small_airport", + "name": "Lantana Ridge Airport", + "latitude_deg": "28.6591", + "longitude_deg": "-97.5987472", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Goliad", + "scheduled_service": "no", + "gps_code": "18XA", + "local_code": "18XA" + }, + { + "id": "8124", + "ident": "18XS", + "type": "small_airport", + "name": "Gardner Farm Airport", + "latitude_deg": "33.797991", + "longitude_deg": "-101.026554", + "elevation_ft": "3000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mc Adoo", + "scheduled_service": "no", + "gps_code": "18XS", + "local_code": "18XS" + }, + { + "id": "8125", + "ident": "18Y", + "type": "small_airport", + "name": "Milaca Municipal Airport", + "latitude_deg": "45.772499084472656", + "longitude_deg": "-93.6322021484375", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Milaca", + "scheduled_service": "no", + "gps_code": "18Y", + "local_code": "18Y" + }, + { + "id": "8126", + "ident": "19AK", + "type": "small_airport", + "name": "Icy Bay Airport", + "latitude_deg": "59.966269", + "longitude_deg": "-141.660118", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Icy Bay", + "scheduled_service": "no", + "gps_code": "19AK", + "iata_code": "ICY", + "local_code": "19AK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Icy_Bay_Airport" + }, + { + "id": "8127", + "ident": "19AL", + "type": "heliport", + "name": "Molinelli Stagefield Army Heliport", + "latitude_deg": "31.48240089416504", + "longitude_deg": "-85.78510284423828", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker/Ozark", + "scheduled_service": "no", + "gps_code": "19AL", + "local_code": "19AL" + }, + { + "id": "8128", + "ident": "19AR", + "type": "small_airport", + "name": "Naylor field", + "latitude_deg": "35.15670013", + "longitude_deg": "-92.22419739", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Naylor", + "scheduled_service": "no", + "gps_code": "19AR", + "local_code": "19AR" + }, + { + "id": "8129", + "ident": "19AZ", + "type": "small_airport", + "name": "Montezuma Airport", + "latitude_deg": "34.604493", + "longitude_deg": "-111.864795", + "elevation_ft": "3370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Camp Verde", + "scheduled_service": "no", + "gps_code": "19AZ", + "local_code": "19AZ" + }, + { + "id": "8131", + "ident": "19CL", + "type": "closed", + "name": "Palisades Ranch Airport", + "latitude_deg": "34.7122", + "longitude_deg": "-117.350999", + "elevation_ft": "2510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Helendale", + "scheduled_service": "no", + "keywords": "19CL" + }, + { + "id": "8132", + "ident": "19CO", + "type": "heliport", + "name": "UCH-MHS Memorial Central Heliport", + "latitude_deg": "38.840375", + "longitude_deg": "-104.799385", + "elevation_ft": "6155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Colorado Springs", + "scheduled_service": "no", + "gps_code": "19CO", + "local_code": "19CO", + "keywords": "Memorial Hospital" + }, + { + "id": "8133", + "ident": "19FD", + "type": "heliport", + "name": "Osceola Sheriff's Office Bronson Highway Heliport", + "latitude_deg": "28.275101", + "longitude_deg": "-81.336502", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Kissimmee", + "scheduled_service": "no", + "gps_code": "19FD", + "local_code": "19FD" + }, + { + "id": "8134", + "ident": "19FL", + "type": "heliport", + "name": "The Villages Heliport", + "latitude_deg": "28.980600357055664", + "longitude_deg": "-81.9906005859375", + "elevation_ft": "103", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Belleview", + "scheduled_service": "no", + "gps_code": "19FL", + "local_code": "19FL" + }, + { + "id": "8135", + "ident": "19GA", + "type": "small_airport", + "name": "Willow Pond Aviation Inc Airport", + "latitude_deg": "33.424039", + "longitude_deg": "-84.498367", + "elevation_ft": "868", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "19GA", + "local_code": "19GA" + }, + { + "id": "8136", + "ident": "19IA", + "type": "small_airport", + "name": "Ancam Antique Airfield", + "latitude_deg": "40.8568000793457", + "longitude_deg": "-91.20379638671875", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "West Burlington", + "scheduled_service": "no", + "gps_code": "19IA", + "local_code": "19IA" + }, + { + "id": "322671", + "ident": "19ID", + "type": "heliport", + "name": "Race Creek Heliport", + "latitude_deg": "45.4412222", + "longitude_deg": "-116.3993778", + "elevation_ft": "3371", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Riggins", + "scheduled_service": "no", + "gps_code": "19ID", + "local_code": "19ID" + }, + { + "id": "8137", + "ident": "19II", + "type": "heliport", + "name": "Henry County Memorial Hospital Heliport", + "latitude_deg": "39.94309997558594", + "longitude_deg": "-85.36470031738281", + "elevation_ft": "1052", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "New Castle", + "scheduled_service": "no", + "gps_code": "19II", + "local_code": "19II" + }, + { + "id": "8138", + "ident": "19IL", + "type": "closed", + "name": "Eagle Pass Airport", + "latitude_deg": "40.549404", + "longitude_deg": "-89.106003", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Bloomington", + "scheduled_service": "no", + "keywords": "19IL" + }, + { + "id": "8139", + "ident": "19IN", + "type": "small_airport", + "name": "Clark Airport", + "latitude_deg": "40.19449996948242", + "longitude_deg": "-86.52310180664062", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Frankfort", + "scheduled_service": "no", + "gps_code": "19IN", + "local_code": "19IN" + }, + { + "id": "8140", + "ident": "19IS", + "type": "small_airport", + "name": "Skillet Fork Farm Airport", + "latitude_deg": "38.2958984375", + "longitude_deg": "-88.55699920654297", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Wayne City", + "scheduled_service": "no", + "gps_code": "19IS", + "local_code": "19IS" + }, + { + "id": "8141", + "ident": "19KS", + "type": "heliport", + "name": "Schultz Field", + "latitude_deg": "37.619998931884766", + "longitude_deg": "-95.45860290527344", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Chanute", + "scheduled_service": "no", + "gps_code": "19KS", + "local_code": "19KS" + }, + { + "id": "8142", + "ident": "19KY", + "type": "small_airport", + "name": "Conrads Airport", + "latitude_deg": "38.70650100708008", + "longitude_deg": "-84.59989929199219", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Dry Ridge", + "scheduled_service": "no", + "gps_code": "19KY", + "local_code": "19KY" + }, + { + "id": "8143", + "ident": "19LA", + "type": "closed", + "name": "Region 1 Headquarters-State Police Heliport", + "latitude_deg": "30.447701", + "longitude_deg": "-91.103104", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no", + "keywords": "19LA" + }, + { + "id": "8144", + "ident": "19LL", + "type": "small_airport", + "name": "Neiner Airport", + "latitude_deg": "41.25699996948242", + "longitude_deg": "-87.91950225830078", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Manteno", + "scheduled_service": "no", + "gps_code": "19LL", + "local_code": "19LL" + }, + { + "id": "45436", + "ident": "19LS", + "type": "heliport", + "name": "Riverside Medical Center Heliport", + "latitude_deg": "30.834444", + "longitude_deg": "-90.153611", + "elevation_ft": "146", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Franklinton", + "scheduled_service": "no", + "gps_code": "19LS", + "local_code": "19LS" + }, + { + "id": "8145", + "ident": "19MA", + "type": "heliport", + "name": "Waine Heliport", + "latitude_deg": "41.285099029541016", + "longitude_deg": "-70.14969635009766", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Nantucket", + "scheduled_service": "no", + "gps_code": "19MA", + "local_code": "19MA" + }, + { + "id": "8146", + "ident": "19MI", + "type": "heliport", + "name": "Mecosta County General Hospital Heliport", + "latitude_deg": "43.69490051269531", + "longitude_deg": "-85.47380065917969", + "elevation_ft": "911", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Big Rapids", + "scheduled_service": "no", + "gps_code": "19MI", + "local_code": "19MI" + }, + { + "id": "331484", + "ident": "19MN", + "type": "seaplane_base", + "name": "Greseth Seaplane Base", + "latitude_deg": "45.174765", + "longitude_deg": "-93.765091", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Buffalo", + "scheduled_service": "no", + "gps_code": "19MN", + "local_code": "19MN" + }, + { + "id": "8147", + "ident": "19MO", + "type": "closed", + "name": "North Patrol Div Station Heliport", + "latitude_deg": "39.245025", + "longitude_deg": "-94.591486", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kansas City", + "scheduled_service": "no", + "keywords": "19MO" + }, + { + "id": "310115", + "ident": "19MT", + "type": "small_airport", + "name": "N Bar Ranch Airport", + "latitude_deg": "46.838111", + "longitude_deg": "-108.936833", + "elevation_ft": "4446", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Grass Range", + "scheduled_service": "no", + "gps_code": "19MT", + "local_code": "19MT" + }, + { + "id": "8148", + "ident": "19NC", + "type": "small_airport", + "name": "Double S Airport", + "latitude_deg": "36.06489944458008", + "longitude_deg": "-77.9229965209961", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Red Oak", + "scheduled_service": "no", + "gps_code": "19NC", + "local_code": "19NC" + }, + { + "id": "8149", + "ident": "19ND", + "type": "small_airport", + "name": "Breckheimer Airport", + "latitude_deg": "47.733299255371094", + "longitude_deg": "-98.48870086669922", + "elevation_ft": "1458", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Tolna", + "scheduled_service": "no", + "gps_code": "19ND", + "local_code": "19ND" + }, + { + "id": "8150", + "ident": "19NE", + "type": "small_airport", + "name": "Hoyt Airport", + "latitude_deg": "40.108299255371094", + "longitude_deg": "-100.80899810791016", + "elevation_ft": "2707", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Mc Cook/Culbertson", + "scheduled_service": "no", + "gps_code": "19NE", + "local_code": "19NE" + }, + { + "id": "8151", + "ident": "19NH", + "type": "heliport", + "name": "Lorden II Heliport", + "latitude_deg": "42.978194", + "longitude_deg": "-71.693806", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "New Boston", + "scheduled_service": "no", + "gps_code": "19NH", + "local_code": "19NH" + }, + { + "id": "8152", + "ident": "19NJ", + "type": "closed", + "name": "American Cyanamid Helistop", + "latitude_deg": "40.292579", + "longitude_deg": "-74.676304", + "elevation_ft": "101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "West Windsor", + "scheduled_service": "no", + "keywords": "19NJ" + }, + { + "id": "8153", + "ident": "19NK", + "type": "small_airport", + "name": "Riveredge Airpark", + "latitude_deg": "43.243900299072266", + "longitude_deg": "-76.15280151367188", + "elevation_ft": "378", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Central Square", + "scheduled_service": "no", + "gps_code": "19NK", + "local_code": "19NK" + }, + { + "id": "8154", + "ident": "19NY", + "type": "small_airport", + "name": "Four Seasons Airport", + "latitude_deg": "42.40620040893555", + "longitude_deg": "-77.96080017089844", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Reading", + "scheduled_service": "no", + "gps_code": "19NY", + "local_code": "19NY" + }, + { + "id": "8155", + "ident": "19OH", + "type": "closed", + "name": "Harris Corn Field", + "latitude_deg": "41.1731", + "longitude_deg": "-82.059303", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Litchfield", + "scheduled_service": "no", + "keywords": "19OH" + }, + { + "id": "8156", + "ident": "19OI", + "type": "heliport", + "name": "Airc Helistop", + "latitude_deg": "40.38079833984375", + "longitude_deg": "-80.70539855957031", + "elevation_ft": "1218", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wintersville", + "scheduled_service": "no", + "gps_code": "19OI", + "local_code": "19OI" + }, + { + "id": "8157", + "ident": "19OK", + "type": "closed", + "name": "Gerhart Airport", + "latitude_deg": "35.728401", + "longitude_deg": "-95.977203", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Okmulgee", + "scheduled_service": "no", + "keywords": "19OK" + }, + { + "id": "8158", + "ident": "19OR", + "type": "small_airport", + "name": "Nelson Ranch Airport", + "latitude_deg": "45.10960006713867", + "longitude_deg": "-121.2239990234375", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Maupin", + "scheduled_service": "no", + "gps_code": "19OR", + "local_code": "19OR" + }, + { + "id": "8159", + "ident": "19P", + "type": "seaplane_base", + "name": "Port Protection Seaplane Base", + "latitude_deg": "56.328800201416", + "longitude_deg": "-133.61000061035", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Port Protection", + "scheduled_service": "yes", + "gps_code": "19P", + "iata_code": "PPV", + "local_code": "19P", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Protection_Seaplane_Base" + }, + { + "id": "8160", + "ident": "19PA", + "type": "small_airport", + "name": "Lake Airport", + "latitude_deg": "41.117000579833984", + "longitude_deg": "-76.52079772949219", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Millville", + "scheduled_service": "no", + "gps_code": "19PA", + "local_code": "19PA" + }, + { + "id": "45765", + "ident": "19PN", + "type": "closed", + "name": "Spooky Nook Heliport", + "latitude_deg": "40.106389", + "longitude_deg": "-76.423333", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Landisville", + "scheduled_service": "no", + "keywords": "19PN" + }, + { + "id": "8161", + "ident": "19SC", + "type": "small_airport", + "name": "Sexton Airport", + "latitude_deg": "34.353833", + "longitude_deg": "-81.802358", + "elevation_ft": "593", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Newberry", + "scheduled_service": "no", + "gps_code": "19SC", + "local_code": "19SC" + }, + { + "id": "8162", + "ident": "19T", + "type": "seaplane_base", + "name": "Tan Tar A Resort Seaplane Base", + "latitude_deg": "38.12596", + "longitude_deg": "-92.71642", + "elevation_ft": "659", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Osage Beach", + "scheduled_service": "no", + "local_code": "19T" + }, + { + "id": "8163", + "ident": "19TA", + "type": "small_airport", + "name": "Lagrone Ranch Airport", + "latitude_deg": "32.82229995727539", + "longitude_deg": "-96.41690063476562", + "elevation_ft": "567", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mc Clendon-Chisholm", + "scheduled_service": "no", + "gps_code": "19TA", + "local_code": "19TA" + }, + { + "id": "8164", + "ident": "19TE", + "type": "closed", + "name": "Cut and Shoot Airport", + "latitude_deg": "30.3169", + "longitude_deg": "-95.333504", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Conroe", + "scheduled_service": "no", + "keywords": "19TE" + }, + { + "id": "8165", + "ident": "19TN", + "type": "small_airport", + "name": "Ferraraccio Field", + "latitude_deg": "36.4994010925293", + "longitude_deg": "-87.19029998779297", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Clarksville", + "scheduled_service": "no", + "gps_code": "19TN", + "local_code": "19TN" + }, + { + "id": "8166", + "ident": "19TS", + "type": "closed", + "name": "KVUE-TV Heliport", + "latitude_deg": "30.36528", + "longitude_deg": "-97.737658", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "keywords": "19TS" + }, + { + "id": "8167", + "ident": "19TX", + "type": "small_airport", + "name": "Woody McClellan Ranch Airport", + "latitude_deg": "31.238199", + "longitude_deg": "-97.514198", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Temple", + "scheduled_service": "no", + "gps_code": "19TX", + "local_code": "19TX" + }, + { + "id": "8168", + "ident": "19VA", + "type": "small_airport", + "name": "Flying W Airport", + "latitude_deg": "36.88970184326172", + "longitude_deg": "-82.29779815673828", + "elevation_ft": "1760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "St. Paul", + "scheduled_service": "no", + "gps_code": "19VA", + "local_code": "19VA" + }, + { + "id": "8169", + "ident": "19WA", + "type": "small_airport", + "name": "Key Way Airport", + "latitude_deg": "45.719600677490234", + "longitude_deg": "-121.88600158691406", + "elevation_ft": "972", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Stevenson", + "scheduled_service": "no", + "gps_code": "19WA", + "local_code": "19WA" + }, + { + "id": "8170", + "ident": "19WI", + "type": "small_airport", + "name": "Erickson Field", + "latitude_deg": "45.1952018737793", + "longitude_deg": "-92.05709838867188", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Prairie Farm", + "scheduled_service": "no", + "gps_code": "19WI", + "local_code": "19WI" + }, + { + "id": "346928", + "ident": "19XA", + "type": "heliport", + "name": "Baylor Scott & White Medical Center Irving Heliport", + "latitude_deg": "32.834352", + "longitude_deg": "-96.96187", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Irving", + "scheduled_service": "no", + "gps_code": "19XA", + "local_code": "19XA" + }, + { + "id": "8171", + "ident": "19XS", + "type": "small_airport", + "name": "Draggintail Acres Airport", + "latitude_deg": "32.29719924926758", + "longitude_deg": "-97.08689880371094", + "elevation_ft": "585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Maypearl", + "scheduled_service": "no", + "gps_code": "19XS", + "local_code": "19XS" + }, + { + "id": "8172", + "ident": "1A1", + "type": "small_airport", + "name": "Green Acres Airport", + "latitude_deg": "42.14870071411133", + "longitude_deg": "-73.7509994506836", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Livingston", + "scheduled_service": "no", + "gps_code": "1A1", + "local_code": "1A1" + }, + { + "id": "8173", + "ident": "1A2", + "type": "small_airport", + "name": "Arthur Airport", + "latitude_deg": "47.11109924316406", + "longitude_deg": "-97.2072982788086", + "elevation_ft": "973", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Arthur", + "scheduled_service": "no", + "gps_code": "1A2", + "local_code": "1A2" + }, + { + "id": "8174", + "ident": "1A8", + "type": "small_airport", + "name": "Empire Airport", + "latitude_deg": "40.580025", + "longitude_deg": "-119.35087", + "elevation_ft": "3990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Empire", + "scheduled_service": "no", + "gps_code": "18NV", + "local_code": "18NV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Empire_Airport_(Nevada)", + "keywords": "1A8" + }, + { + "id": "8175", + "ident": "1AK0", + "type": "heliport", + "name": "Craig Cg Heliport", + "latitude_deg": "55.47520065307617", + "longitude_deg": "-133.14599609375", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Craig", + "scheduled_service": "no", + "gps_code": "1AK0", + "local_code": "1AK0" + }, + { + "id": "8176", + "ident": "1AK1", + "type": "small_airport", + "name": "Crevice Creek Airport", + "latitude_deg": "67.3729019165039", + "longitude_deg": "-152.01600646972656", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Crevice Creek", + "scheduled_service": "no", + "gps_code": "1AK1", + "local_code": "1AK1" + }, + { + "id": "8177", + "ident": "1AK2", + "type": "small_airport", + "name": "Crosswind Lake Airport", + "latitude_deg": "62.400901794433594", + "longitude_deg": "-146.01300048828125", + "elevation_ft": "2125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Crosswind Lake", + "scheduled_service": "no", + "gps_code": "1AK2", + "local_code": "1AK2" + }, + { + "id": "8179", + "ident": "1AK4", + "type": "small_airport", + "name": "Kenai River Airpark", + "latitude_deg": "60.5242", + "longitude_deg": "-150.751999", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Soldotna", + "scheduled_service": "no", + "gps_code": "1AK4", + "local_code": "1AK4", + "keywords": "Rotor Air Airport" + }, + { + "id": "8180", + "ident": "1AK5", + "type": "heliport", + "name": "Offshore Systems-Kenai Heliport", + "latitude_deg": "60.738876", + "longitude_deg": "-151.311613", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nikiski", + "scheduled_service": "no", + "gps_code": "1AK5", + "local_code": "1AK5" + }, + { + "id": "8181", + "ident": "1AK6", + "type": "small_airport", + "name": "Talachulitna River Airport", + "latitude_deg": "61.856262", + "longitude_deg": "-151.397521", + "elevation_ft": "282", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sketna", + "scheduled_service": "no", + "gps_code": "1AK6", + "local_code": "1AK6" + }, + { + "id": "8182", + "ident": "1AK7", + "type": "heliport", + "name": "Valdez Hospital Heliport", + "latitude_deg": "61.136600494384766", + "longitude_deg": "-146.34500122070312", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Valdez", + "scheduled_service": "no", + "gps_code": "1AK7", + "local_code": "1AK7" + }, + { + "id": "8183", + "ident": "1AK8", + "type": "small_airport", + "name": "Talaheim Airport", + "latitude_deg": "61.67689895629883", + "longitude_deg": "-151.38699340820312", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Skwentna", + "scheduled_service": "no", + "gps_code": "1AK8", + "local_code": "1AK8" + }, + { + "id": "8184", + "ident": "1AK9", + "type": "closed", + "name": "Tundra Copter Heliport", + "latitude_deg": "64.815399", + "longitude_deg": "-147.862145", + "elevation_ft": "434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fairbanks", + "scheduled_service": "no", + "keywords": "1AK9" + }, + { + "id": "8185", + "ident": "1AL0", + "type": "heliport", + "name": "Marshall Medical Center South Heliport", + "latitude_deg": "34.220412", + "longitude_deg": "-86.160439", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Boaz", + "scheduled_service": "no", + "gps_code": "1AL0", + "local_code": "1AL0", + "keywords": "Boaz-Albertville Medical Center" + }, + { + "id": "8186", + "ident": "1AL1", + "type": "heliport", + "name": "Decatur General Hospital Heliport", + "latitude_deg": "34.59080123901367", + "longitude_deg": "-86.97219848632812", + "elevation_ft": "588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Decatur", + "scheduled_service": "no", + "gps_code": "1AL1", + "local_code": "1AL1" + }, + { + "id": "8187", + "ident": "1AL2", + "type": "small_airport", + "name": "Tri-L Acres Airport", + "latitude_deg": "33.248600006103516", + "longitude_deg": "-86.59750366210938", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Columbiana", + "scheduled_service": "no", + "gps_code": "1AL2", + "local_code": "1AL2" + }, + { + "id": "8188", + "ident": "1AL3", + "type": "closed", + "name": "Russell Lands Heliport", + "latitude_deg": "32.795833", + "longitude_deg": "-85.974998", + "elevation_ft": "573", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Our Town", + "scheduled_service": "no", + "keywords": "1AL3" + }, + { + "id": "8189", + "ident": "1AL4", + "type": "small_airport", + "name": "Elsanor Airport", + "latitude_deg": "30.544700622558594", + "longitude_deg": "-87.55940246582031", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Robertsdale", + "scheduled_service": "no", + "gps_code": "1AL4", + "local_code": "1AL4" + }, + { + "id": "8190", + "ident": "1AL5", + "type": "small_airport", + "name": "Berry Field", + "latitude_deg": "30.63640022277832", + "longitude_deg": "-87.747802734375", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Loxley", + "scheduled_service": "no", + "gps_code": "1AL5", + "local_code": "1AL5" + }, + { + "id": "8191", + "ident": "1AL6", + "type": "heliport", + "name": "Monroe County Hospital Heliport", + "latitude_deg": "31.497800827026367", + "longitude_deg": "-87.32109832763672", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Monroeville", + "scheduled_service": "no", + "gps_code": "1AL6", + "local_code": "1AL6" + }, + { + "id": "8192", + "ident": "1AL7", + "type": "heliport", + "name": "Business Center of Alabama Heliport", + "latitude_deg": "32.377498626708984", + "longitude_deg": "-86.29830169677734", + "elevation_ft": "403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Montgomery", + "scheduled_service": "no", + "gps_code": "1AL7", + "local_code": "1AL7" + }, + { + "id": "8193", + "ident": "1AL8", + "type": "small_airport", + "name": "Moore Field", + "latitude_deg": "33.61109924316406", + "longitude_deg": "-86.47440338134766", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Moody", + "scheduled_service": "no", + "gps_code": "1AL8", + "local_code": "1AL8" + }, + { + "id": "8194", + "ident": "1AL9", + "type": "closed", + "name": "Lake Tuscaloosa Seaplane Base", + "latitude_deg": "33.347801", + "longitude_deg": "-87.601897", + "elevation_ft": "224", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Northport", + "scheduled_service": "no", + "keywords": "1AL9" + }, + { + "id": "8195", + "ident": "1AR0", + "type": "small_airport", + "name": "Breckenridge Airport", + "latitude_deg": "35.401013", + "longitude_deg": "-91.129231", + "elevation_ft": "221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Beedeville", + "scheduled_service": "no", + "gps_code": "1AR0", + "local_code": "1AR0", + "keywords": "K37" + }, + { + "id": "8196", + "ident": "1AR1", + "type": "small_airport", + "name": "Walls Airport", + "latitude_deg": "34.527793", + "longitude_deg": "-91.872427", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "England", + "scheduled_service": "no", + "gps_code": "1AR1", + "local_code": "1AR1" + }, + { + "id": "8197", + "ident": "1AR2", + "type": "small_airport", + "name": "Taylor Airstrip", + "latitude_deg": "34.98680114746094", + "longitude_deg": "-91.55030059814453", + "elevation_ft": "208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Des Arc", + "scheduled_service": "no", + "gps_code": "1AR2", + "local_code": "1AR2" + }, + { + "id": "8198", + "ident": "1AR3", + "type": "closed", + "name": "Bob Norman Airstrip", + "latitude_deg": "34.973202", + "longitude_deg": "-91.526001", + "elevation_ft": "208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Des Arc", + "scheduled_service": "no", + "keywords": "1AR3" + }, + { + "id": "8199", + "ident": "1AR4", + "type": "closed", + "name": "Foggy River Airport", + "latitude_deg": "36.017899", + "longitude_deg": "-94.018402", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Elkins", + "scheduled_service": "no", + "keywords": "1AR4" + }, + { + "id": "8200", + "ident": "1AR5", + "type": "small_airport", + "name": "Cherokee Strip", + "latitude_deg": "36.299400329589844", + "longitude_deg": "-94.58470153808594", + "elevation_ft": "1194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Gentry", + "scheduled_service": "no", + "gps_code": "1AR5", + "local_code": "1AR5" + }, + { + "id": "8201", + "ident": "1AR6", + "type": "small_airport", + "name": "Diamond Bluff Airport", + "latitude_deg": "35.503299713134766", + "longitude_deg": "-92.19670104980469", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Greers Ferry", + "scheduled_service": "no", + "gps_code": "1AR6", + "local_code": "1AR6" + }, + { + "id": "8202", + "ident": "1AR7", + "type": "heliport", + "name": "Wadley Regional Medical Center at Hope Heliport", + "latitude_deg": "33.648448", + "longitude_deg": "-93.585337", + "elevation_ft": "375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Hope", + "scheduled_service": "no", + "gps_code": "1AR7", + "local_code": "1AR7", + "keywords": "Medical Park Hospital Heliport" + }, + { + "id": "8203", + "ident": "1AR8", + "type": "closed", + "name": "Flying W Air Park Inc Airport", + "latitude_deg": "35.325699", + "longitude_deg": "-94.186798", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Lavaca", + "scheduled_service": "no", + "keywords": "1AR8" + }, + { + "id": "8204", + "ident": "1AR9", + "type": "small_airport", + "name": "Country Air Estates Airport", + "latitude_deg": "34.816149", + "longitude_deg": "-91.995769", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Lonoke", + "scheduled_service": "no", + "gps_code": "1AR9", + "local_code": "1AR9" + }, + { + "id": "8205", + "ident": "1AZ0", + "type": "small_airport", + "name": "Bishop Airfield", + "latitude_deg": "33.1119", + "longitude_deg": "-112.268997", + "elevation_ft": "1261", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mobile", + "scheduled_service": "no", + "gps_code": "1AZ0", + "local_code": "1AZ0", + "keywords": "Mobile Airport" + }, + { + "id": "8206", + "ident": "1AZ1", + "type": "heliport", + "name": "Boulais Heliport", + "latitude_deg": "33.515288", + "longitude_deg": "-112.255694", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tolleson", + "scheduled_service": "no", + "gps_code": "1AZ1", + "local_code": "1AZ1" + }, + { + "id": "8207", + "ident": "1AZ2", + "type": "closed", + "name": "Paradise Air Park", + "latitude_deg": "33.411701", + "longitude_deg": "-112.181999", + "elevation_ft": "1015", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tolleson", + "scheduled_service": "no", + "gps_code": "1AZ2", + "local_code": "1AZ2" + }, + { + "id": "8208", + "ident": "1AZ3", + "type": "heliport", + "name": "Arizona State Prison Safford Heliport", + "latitude_deg": "32.830014", + "longitude_deg": "-109.564335", + "elevation_ft": "3000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Safford", + "scheduled_service": "no", + "gps_code": "1AZ3", + "local_code": "1AZ3" + }, + { + "id": "8209", + "ident": "1AZ4", + "type": "heliport", + "name": "Schuff Aviation Heliport", + "latitude_deg": "33.44258", + "longitude_deg": "-112.099222", + "elevation_ft": "1101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "1AZ4", + "local_code": "1AZ4" + }, + { + "id": "8210", + "ident": "1AZ5", + "type": "closed", + "name": "Redman Residence Heliport", + "latitude_deg": "32.266269", + "longitude_deg": "-110.707791", + "elevation_ft": "2860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no", + "gps_code": "1AZ5", + "local_code": "1AZ5", + "keywords": "tucson, redman residence" + }, + { + "id": "8211", + "ident": "1AZ6", + "type": "heliport", + "name": "Pulice Construction Heliport", + "latitude_deg": "33.574100494384766", + "longitude_deg": "-112.10299682617188", + "elevation_ft": "1235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "1AZ6", + "local_code": "1AZ6" + }, + { + "id": "8212", + "ident": "1AZ7", + "type": "heliport", + "name": "SRP Tolleson Center Heliport", + "latitude_deg": "33.44791", + "longitude_deg": "-112.226603", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tolleson", + "scheduled_service": "no", + "gps_code": "1AZ7", + "local_code": "1AZ7" + }, + { + "id": "8213", + "ident": "1AZ8", + "type": "small_airport", + "name": "Willow Springs Ranch Airport", + "latitude_deg": "35.295799255371094", + "longitude_deg": "-114.37300109863281", + "elevation_ft": "3750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bullhead City", + "scheduled_service": "no", + "gps_code": "1AZ8", + "local_code": "1AZ8" + }, + { + "id": "8214", + "ident": "1B3", + "type": "closed", + "name": "Fair Haven Municipal Airport", + "latitude_deg": "43.615299", + "longitude_deg": "-73.274597", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Fair Haven", + "scheduled_service": "no", + "keywords": "1B3" + }, + { + "id": "8215", + "ident": "1B5", + "type": "small_airport", + "name": "Franconia Airport", + "latitude_deg": "44.195611", + "longitude_deg": "-71.751023", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Franconia", + "scheduled_service": "no", + "local_code": "1B5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Franconia_Airport" + }, + { + "id": "8216", + "ident": "1B8", + "type": "small_airport", + "name": "Chapin Field", + "latitude_deg": "43.05009841918945", + "longitude_deg": "-73.36620330810547", + "elevation_ft": "508", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "1B8", + "local_code": "1B8" + }, + { + "id": "8217", + "ident": "1C3", + "type": "small_airport", + "name": "Argyle Airport", + "latitude_deg": "43.25419998168945", + "longitude_deg": "-73.47090148925781", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Argyle", + "scheduled_service": "no", + "gps_code": "1C3", + "local_code": "1C3" + }, + { + "id": "8218", + "ident": "1C4", + "type": "seaplane_base", + "name": "Raintree Seaplane Base", + "latitude_deg": "39.56919860839844", + "longitude_deg": "-75.8478012084961", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Elkton", + "scheduled_service": "no", + "gps_code": "1C4", + "local_code": "1C4" + }, + { + "id": "8219", + "ident": "1C8", + "type": "small_airport", + "name": "Cottonwood Airport", + "latitude_deg": "42.29169845581055", + "longitude_deg": "-89.13619995117188", + "elevation_ft": "741", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rockford", + "scheduled_service": "no", + "gps_code": "1C8", + "local_code": "1C8" + }, + { + "id": "8220", + "ident": "1C9", + "type": "small_airport", + "name": "Frazier Lake Airpark", + "latitude_deg": "36.95330047607422", + "longitude_deg": "-121.46499633789062", + "elevation_ft": "151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hollister", + "scheduled_service": "no", + "gps_code": "1C9", + "local_code": "1C9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Frazier_Lake_Airpark" + }, + { + "id": "8221", + "ident": "1CA0", + "type": "heliport", + "name": "Boeing Santa Susana Heliport", + "latitude_deg": "34.237577", + "longitude_deg": "-118.696561", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Simi Valley", + "scheduled_service": "no", + "gps_code": "1CA0", + "local_code": "1CA0" + }, + { + "id": "8222", + "ident": "1CA1", + "type": "small_airport", + "name": "Belridge Strip", + "latitude_deg": "35.467905", + "longitude_deg": "-119.72203", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "McKittrick", + "scheduled_service": "no", + "keywords": "1CA1" + }, + { + "id": "8223", + "ident": "1CA2", + "type": "closed", + "name": "Sunrise One Heliport", + "latitude_deg": "38.603298", + "longitude_deg": "-121.263", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rancho Cordova", + "scheduled_service": "no", + "keywords": "1CA2" + }, + { + "id": "8224", + "ident": "1CA3", + "type": "heliport", + "name": "GSA Laguna Niguel G/L Helistop", + "latitude_deg": "33.561392", + "longitude_deg": "-117.715341", + "elevation_ft": "188", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Laguna Niguel", + "scheduled_service": "no", + "gps_code": "1CA3", + "local_code": "1CA3" + }, + { + "id": "8225", + "ident": "1CA4", + "type": "closed", + "name": "Aha Quin Airport", + "latitude_deg": "33.86732", + "longitude_deg": "-114.527152", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Blythe", + "scheduled_service": "no", + "gps_code": "1CA4", + "local_code": "1CA4" + }, + { + "id": "8226", + "ident": "1CA5", + "type": "heliport", + "name": "California Title Building Heliport", + "latitude_deg": "34.1239013671875", + "longitude_deg": "-118.1510009765625", + "elevation_ft": "808", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "South Pasadena", + "scheduled_service": "no", + "gps_code": "1CA5", + "local_code": "1CA5" + }, + { + "id": "8227", + "ident": "1CA6", + "type": "small_airport", + "name": "On the Rocks Airport", + "latitude_deg": "32.765098571777344", + "longitude_deg": "-116.7229995727539", + "elevation_ft": "2650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Alpine", + "scheduled_service": "no", + "gps_code": "1CA6", + "local_code": "1CA6" + }, + { + "id": "8228", + "ident": "1CA7", + "type": "heliport", + "name": "L. A. Times Costa Mesa Heliport", + "latitude_deg": "33.69390106201172", + "longitude_deg": "-117.91699981689453", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Costa Mesa", + "scheduled_service": "no", + "gps_code": "1CA7", + "local_code": "1CA7" + }, + { + "id": "8229", + "ident": "1CA8", + "type": "closed", + "name": "R I Science Center Helistop", + "latitude_deg": "34.196962", + "longitude_deg": "-118.904563", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Thousand Oaks", + "scheduled_service": "no", + "gps_code": "1CA8", + "local_code": "1CA8" + }, + { + "id": "8230", + "ident": "1CA9", + "type": "heliport", + "name": "Los Angeles County Fire Department Heliport", + "latitude_deg": "34.083302", + "longitude_deg": "-118.867996", + "elevation_ft": "1360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Malibu", + "scheduled_service": "no", + "gps_code": "1CA9", + "local_code": "1CA9" + }, + { + "id": "8231", + "ident": "1CD0", + "type": "heliport", + "name": "Murphy Heliport", + "latitude_deg": "40.142799377441406", + "longitude_deg": "-105.00299835205078", + "elevation_ft": "4870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Longmont", + "scheduled_service": "no", + "gps_code": "1CD0", + "local_code": "1CD0" + }, + { + "id": "8232", + "ident": "1CD1", + "type": "small_airport", + "name": "Reed Airport", + "latitude_deg": "40.69029998779297", + "longitude_deg": "-104.86699676513672", + "elevation_ft": "5350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Nunn", + "scheduled_service": "no", + "gps_code": "1CD1", + "local_code": "1CD1" + }, + { + "id": "8233", + "ident": "1CD2", + "type": "small_airport", + "name": "Tonga Airport", + "latitude_deg": "40.167377", + "longitude_deg": "-104.798575", + "elevation_ft": "4925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Platteville", + "scheduled_service": "no", + "gps_code": "1CD2", + "local_code": "1CD2", + "keywords": "Reck" + }, + { + "id": "8234", + "ident": "1CD4", + "type": "small_airport", + "name": "Eagle Soaring Airport", + "latitude_deg": "40.509300231933594", + "longitude_deg": "-106.94300079345703", + "elevation_ft": "6600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Steam Boat Springs", + "scheduled_service": "no", + "gps_code": "1CD4", + "local_code": "1CD4" + }, + { + "id": "8235", + "ident": "1CD5", + "type": "heliport", + "name": "Rio Grande Hospital Heliport", + "latitude_deg": "37.67499923706055", + "longitude_deg": "-106.36299896240234", + "elevation_ft": "7190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Del Norte", + "scheduled_service": "no", + "gps_code": "1CD5", + "local_code": "1CD5" + }, + { + "id": "8236", + "ident": "1CL0", + "type": "heliport", + "name": "William Archibald Heliport", + "latitude_deg": "34.10449981689453", + "longitude_deg": "-117.80000305175781", + "elevation_ft": "984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Dimas", + "scheduled_service": "no", + "gps_code": "1CL0", + "local_code": "1CL0" + }, + { + "id": "8237", + "ident": "1CL1", + "type": "small_airport", + "name": "Little Buttes Antique Airfield", + "latitude_deg": "34.79410171508789", + "longitude_deg": "-118.27799987792969", + "elevation_ft": "2433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "1CL1", + "local_code": "1CL1" + }, + { + "id": "8238", + "ident": "1CL2", + "type": "small_airport", + "name": "Pontious Airport", + "latitude_deg": "34.942501068115234", + "longitude_deg": "-118.16999816894531", + "elevation_ft": "2610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mojave", + "scheduled_service": "no", + "gps_code": "1CL2", + "local_code": "1CL2" + }, + { + "id": "8239", + "ident": "1CL3", + "type": "closed", + "name": "Alameda County Parking Garage Heliport", + "latitude_deg": "37.800743", + "longitude_deg": "-122.265236", + "elevation_ft": "119", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oakland", + "scheduled_service": "no", + "gps_code": "1CL3", + "local_code": "1CL3", + "keywords": "JOK, 1CL3" + }, + { + "id": "8240", + "ident": "1CL4", + "type": "heliport", + "name": "UCI Medical Center Heliport", + "latitude_deg": "33.788562", + "longitude_deg": "-117.890416", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Orange", + "scheduled_service": "no", + "gps_code": "1CL4", + "local_code": "1CL4" + }, + { + "id": "8241", + "ident": "1CL5", + "type": "heliport", + "name": "Pomerado Hospital Heliport", + "latitude_deg": "32.998199462890625", + "longitude_deg": "-117.05699920654297", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Poway", + "scheduled_service": "no", + "gps_code": "1CL5", + "local_code": "1CL5" + }, + { + "id": "8242", + "ident": "1CL6", + "type": "heliport", + "name": "Lake Park Helistop", + "latitude_deg": "38.547698974609375", + "longitude_deg": "-121.37999725341797", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sacramento", + "scheduled_service": "no", + "gps_code": "1CL6", + "local_code": "1CL6" + }, + { + "id": "8243", + "ident": "1CL8", + "type": "heliport", + "name": "Marian Regional Medical Center Heliport", + "latitude_deg": "34.950507", + "longitude_deg": "-120.411583", + "elevation_ft": "256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Maria", + "scheduled_service": "no", + "gps_code": "1CL8", + "local_code": "1CL8" + }, + { + "id": "8244", + "ident": "1CL9", + "type": "heliport", + "name": "SFI Vernon Heliport", + "latitude_deg": "34.001038", + "longitude_deg": "-118.212606", + "elevation_ft": "231", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Vernon", + "scheduled_service": "no", + "gps_code": "1CL9", + "local_code": "1CL9" + }, + { + "id": "344821", + "ident": "1CN6", + "type": "heliport", + "name": "BTNW PPR Heliport", + "latitude_deg": "34.281967", + "longitude_deg": "-117.749786", + "elevation_ft": "2810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Azusa", + "scheduled_service": "no", + "gps_code": "1CN6", + "local_code": "1CN6" + }, + { + "id": "8245", + "ident": "1CO0", + "type": "heliport", + "name": "Aurora Regional Medical Center Heliport", + "latitude_deg": "39.68830108642578", + "longitude_deg": "-104.83200073242188", + "elevation_ft": "5604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Aurora", + "scheduled_service": "no", + "gps_code": "1CO0", + "local_code": "1CO0" + }, + { + "id": "8246", + "ident": "1CO1", + "type": "heliport", + "name": "Mount Morrison Heliport", + "latitude_deg": "39.6692008972168", + "longitude_deg": "-105.22000122070312", + "elevation_ft": "7881", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Morrison", + "scheduled_service": "no", + "gps_code": "1CO1", + "local_code": "1CO1" + }, + { + "id": "8247", + "ident": "1CO2", + "type": "small_airport", + "name": "Williams Ranch Airport", + "latitude_deg": "38.162498", + "longitude_deg": "-108.339996", + "elevation_ft": "6842", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Norwood", + "scheduled_service": "no", + "gps_code": "1CO2", + "local_code": "1CO2" + }, + { + "id": "8248", + "ident": "1CO3", + "type": "small_airport", + "name": "Bellmore Farms Airport", + "latitude_deg": "40.7041015625", + "longitude_deg": "-104.7979965209961", + "elevation_ft": "5225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Nunn", + "scheduled_service": "no", + "gps_code": "1CO3", + "local_code": "1CO3" + }, + { + "id": "8249", + "ident": "1CO4", + "type": "small_airport", + "name": "Clifford Field", + "latitude_deg": "38.57500076293945", + "longitude_deg": "-107.95899963378906", + "elevation_ft": "5560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Olathe", + "scheduled_service": "no", + "gps_code": "1CO4", + "local_code": "1CO4" + }, + { + "id": "8250", + "ident": "1CO5", + "type": "small_airport", + "name": "Melon Field", + "latitude_deg": "38.016229", + "longitude_deg": "-103.69464", + "elevation_ft": "4260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Rocky Ford", + "scheduled_service": "no", + "gps_code": "1CO5", + "local_code": "1CO5" + }, + { + "id": "8251", + "ident": "1CO6", + "type": "heliport", + "name": "Lands End Microwave Heliport", + "latitude_deg": "39.09049987792969", + "longitude_deg": "-108.22100067138672", + "elevation_ft": "9940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Palisade", + "scheduled_service": "no", + "gps_code": "1CO6", + "local_code": "1CO6" + }, + { + "id": "8252", + "ident": "1CO7", + "type": "small_airport", + "name": "Dodsworth Airport", + "latitude_deg": "38.55139923095703", + "longitude_deg": "-105.99199676513672", + "elevation_ft": "7480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Salida", + "scheduled_service": "no", + "gps_code": "1CO7", + "local_code": "1CO7" + }, + { + "id": "8253", + "ident": "1CO8", + "type": "small_airport", + "name": "Everitt Airport", + "latitude_deg": "39.52920150756836", + "longitude_deg": "-104.65799713134766", + "elevation_ft": "6295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Parker", + "scheduled_service": "no", + "gps_code": "1CO8", + "local_code": "1CO8" + }, + { + "id": "8254", + "ident": "1CO9", + "type": "heliport", + "name": "MCHD Heliport", + "latitude_deg": "37.362998962402344", + "longitude_deg": "-108.57499694824219", + "elevation_ft": "6153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Cortez", + "scheduled_service": "no", + "gps_code": "1CO9", + "local_code": "1CO9" + }, + { + "id": "8255", + "ident": "1CT0", + "type": "closed", + "name": "Norden Systems Heliport", + "latitude_deg": "41.112461", + "longitude_deg": "-73.38762", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Norwalk", + "scheduled_service": "no", + "keywords": "1CT0" + }, + { + "id": "8256", + "ident": "1CT2", + "type": "heliport", + "name": "Yale New Haven Hospital Heliport", + "latitude_deg": "41.30379867553711", + "longitude_deg": "-72.93579864501953", + "elevation_ft": "219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "New Haven", + "scheduled_service": "no", + "gps_code": "1CT2", + "local_code": "1CT2" + }, + { + "id": "8257", + "ident": "1CT3", + "type": "heliport", + "name": "St Mary's Heliport", + "latitude_deg": "41.55337", + "longitude_deg": "-73.03763", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Waterbury", + "scheduled_service": "no", + "gps_code": "1CT3", + "local_code": "1CT3" + }, + { + "id": "8258", + "ident": "1D2", + "type": "small_airport", + "name": "Canton-Plymouth-Mettetal Airport", + "latitude_deg": "42.348201751708984", + "longitude_deg": "-83.456298828125", + "elevation_ft": "696", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "1D2", + "local_code": "1D2" + }, + { + "id": "8259", + "ident": "1D4", + "type": "small_airport", + "name": "Mayfield Airport", + "latitude_deg": "40.99259948730469", + "longitude_deg": "-81.43180084228516", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Akron", + "scheduled_service": "no", + "gps_code": "1D4", + "local_code": "1D4" + }, + { + "id": "8260", + "ident": "1D5", + "type": "small_airport", + "name": "Luther Airport", + "latitude_deg": "43.02920150756836", + "longitude_deg": "-75.84549713134766", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Chittenango", + "scheduled_service": "no", + "gps_code": "1D5", + "local_code": "1D5" + }, + { + "id": "8261", + "ident": "1D6", + "type": "small_airport", + "name": "Hector Municipal Airport", + "latitude_deg": "44.73109817504883", + "longitude_deg": "-94.7146987915039", + "elevation_ft": "1077", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hector", + "scheduled_service": "no", + "gps_code": "1D6", + "local_code": "1D6" + }, + { + "id": "345465", + "ident": "1DE4", + "type": "heliport", + "name": "Christina Care Health System Heliport", + "latitude_deg": "39.455692", + "longitude_deg": "-75.683983", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Middletown", + "scheduled_service": "no", + "gps_code": "1DE4", + "local_code": "1DE4" + }, + { + "id": "8262", + "ident": "1DE5", + "type": "small_airport", + "name": "Mckeown Airport", + "latitude_deg": "39.495601654052734", + "longitude_deg": "-75.7332992553711", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Middletown", + "scheduled_service": "no", + "gps_code": "1DE5", + "local_code": "1DE5" + }, + { + "id": "8263", + "ident": "1DS", + "type": "small_airport", + "name": "Dry Swamp Airport", + "latitude_deg": "33.38779830932617", + "longitude_deg": "-80.91110229492188", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Orangeburg", + "scheduled_service": "no", + "gps_code": "1DS", + "local_code": "1DS" + }, + { + "id": "8264", + "ident": "1.00E+02", + "type": "small_airport", + "name": "Terlingua Ranch Airport", + "latitude_deg": "29.451289", + "longitude_deg": "-103.397754", + "elevation_ft": "3769", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alpine", + "scheduled_service": "no", + "gps_code": "K1E2", + "local_code": "1.00E+02" + }, + { + "id": "8265", + "ident": "1.00E+04", + "type": "small_airport", + "name": "Palo Duro Airport", + "latitude_deg": "35.141998291015625", + "longitude_deg": "-101.83799743652344", + "elevation_ft": "3639", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Amarillo", + "scheduled_service": "no", + "gps_code": "1.00E+04", + "local_code": "1.00E+04" + }, + { + "id": "8266", + "ident": "1.00E+06", + "type": "small_airport", + "name": "Elkins Field", + "latitude_deg": "34.4578018188", + "longitude_deg": "-78.6183013916", + "elevation_ft": "93", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Clarkton", + "scheduled_service": "no", + "gps_code": "1.00E+06", + "local_code": "2NR2" + }, + { + "id": "8267", + "ident": "1.00E+07", + "type": "small_airport", + "name": "Buffalo Airport", + "latitude_deg": "35.064998626708984", + "longitude_deg": "-101.87899780273438", + "elevation_ft": "3640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Amarillo", + "scheduled_service": "no", + "gps_code": "1.00E+07", + "local_code": "1.00E+07" + }, + { + "id": "8268", + "ident": "1.00E+08", + "type": "small_airport", + "name": "Moores Airport", + "latitude_deg": "44.38759994506836", + "longitude_deg": "-75.06629943847656", + "elevation_ft": "814", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Degrasse", + "scheduled_service": "no", + "gps_code": "1.00E+08", + "local_code": "1.00E+08" + }, + { + "id": "8269", + "ident": "1.00E+09", + "type": "closed", + "name": "Maples Field", + "latitude_deg": "35.0652", + "longitude_deg": "-101.954477", + "elevation_ft": "3677", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Canyon", + "scheduled_service": "no", + "keywords": "1.00E+09" + }, + { + "id": "8270", + "ident": "1F1", + "type": "closed", + "name": "Lake Murray State Park Airport", + "latitude_deg": "34.075097", + "longitude_deg": "-97.106679", + "elevation_ft": "817", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Overbrook", + "scheduled_service": "no", + "keywords": "1F1" + }, + { + "id": "8271", + "ident": "1F2", + "type": "small_airport", + "name": "Plateau Sky Ranch Airport", + "latitude_deg": "43.225101470947266", + "longitude_deg": "-74.11489868164062", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Edinburg", + "scheduled_service": "no", + "gps_code": "1F2", + "local_code": "1F2" + }, + { + "id": "8272", + "ident": "1F6", + "type": "closed", + "name": "Dolgeville Airport", + "latitude_deg": "43.116695", + "longitude_deg": "-74.749603", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Dolgeville", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dolgeville_Airport", + "keywords": "1F6" + }, + { + "id": "8273", + "ident": "1F7", + "type": "small_airport", + "name": "Airpark East Airport", + "latitude_deg": "32.81399917602539", + "longitude_deg": "-96.35220336914062", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "1F7", + "local_code": "1F7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Airpark_East_Airport" + }, + { + "id": "8274", + "ident": "1FA1", + "type": "small_airport", + "name": "Post Oak Ranch Airport", + "latitude_deg": "28.85580062866211", + "longitude_deg": "-82.55259704589844", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Crystal River", + "scheduled_service": "no", + "gps_code": "1FA1", + "local_code": "1FA1" + }, + { + "id": "8275", + "ident": "1FA3", + "type": "small_airport", + "name": "Pine Island Airport", + "latitude_deg": "26.656200408935547", + "longitude_deg": "-82.12120056152344", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Myers", + "scheduled_service": "no", + "gps_code": "1FA3", + "local_code": "1FA3" + }, + { + "id": "8276", + "ident": "1FA5", + "type": "heliport", + "name": "Palmetto General Hospital Heliport", + "latitude_deg": "25.8865940245", + "longitude_deg": "-80.32660312950001", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Hialeah", + "scheduled_service": "no", + "gps_code": "1FA5", + "local_code": "1FA5" + }, + { + "id": "335353", + "ident": "1FA6", + "type": "heliport", + "name": "Arrowhead Heliport", + "latitude_deg": "28.10499", + "longitude_deg": "-82.4826", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tampa", + "scheduled_service": "no", + "gps_code": "1FA6", + "local_code": "1FA6" + }, + { + "id": "335820", + "ident": "1FA7", + "type": "heliport", + "name": "Bayfront Health Brooksville Heliport", + "latitude_deg": "28.538778", + "longitude_deg": "-82.441753", + "elevation_ft": "93", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Brooksville", + "scheduled_service": "no", + "gps_code": "1FA7", + "local_code": "1FA7" + }, + { + "id": "322113", + "ident": "1FA9", + "type": "small_airport", + "name": "Villa Char Mar Airport", + "latitude_deg": "27.785144", + "longitude_deg": "-81.651354", + "elevation_ft": "134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Meade", + "scheduled_service": "no", + "gps_code": "1FA9", + "local_code": "1FA9" + }, + { + "id": "8277", + "ident": "1FD0", + "type": "closed", + "name": "Lawrence Airport", + "latitude_deg": "30.7155", + "longitude_deg": "-85.024399", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Grand Ridge", + "scheduled_service": "no", + "keywords": "1FD0" + }, + { + "id": "8278", + "ident": "1FD2", + "type": "closed", + "name": "Bass Limited Airport", + "latitude_deg": "30.6194", + "longitude_deg": "-83.304001", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pinetta", + "scheduled_service": "no", + "keywords": "1FD2" + }, + { + "id": "8279", + "ident": "1FD3", + "type": "heliport", + "name": "HCA Florida JFK Hospital Heliport", + "latitude_deg": "26.597891", + "longitude_deg": "-80.09222", + "elevation_ft": "61", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Atlantis", + "scheduled_service": "no", + "gps_code": "1FD3", + "local_code": "1FD3", + "keywords": "JFK Medical Center Heliport" + }, + { + "id": "8280", + "ident": "1FD4", + "type": "small_airport", + "name": "Corkscrew Trace Airpark", + "latitude_deg": "26.44540023803711", + "longitude_deg": "-81.6072998046875", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Estero", + "scheduled_service": "no", + "gps_code": "1FD4", + "local_code": "1FD4" + }, + { + "id": "8281", + "ident": "1FD5", + "type": "closed", + "name": "Miami Herald Heliport", + "latitude_deg": "25.78816", + "longitude_deg": "-80.185769", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "keywords": "1FD5" + }, + { + "id": "8282", + "ident": "1FD6", + "type": "heliport", + "name": "Paines Prairie Heliport", + "latitude_deg": "29.546100616455078", + "longitude_deg": "-82.28730010986328", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Micanopy", + "scheduled_service": "no", + "gps_code": "1FD6", + "local_code": "1FD6" + }, + { + "id": "8283", + "ident": "1FD7", + "type": "heliport", + "name": "Pga National Heliport", + "latitude_deg": "26.832799911499023", + "longitude_deg": "-80.14340209960938", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Palm Beach Gardens", + "scheduled_service": "no", + "gps_code": "1FD7", + "local_code": "1FD7" + }, + { + "id": "8284", + "ident": "1FD8", + "type": "heliport", + "name": "Memorial Hospital-Flagler Helistop", + "latitude_deg": "29.468599319458008", + "longitude_deg": "-81.25309753417969", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bunnell", + "scheduled_service": "no", + "gps_code": "1FD8", + "local_code": "1FD8" + }, + { + "id": "8285", + "ident": "1FL0", + "type": "seaplane_base", + "name": "Londono's Landing Seaplane Base", + "latitude_deg": "28.1036", + "longitude_deg": "-81.805901", + "elevation_ft": "147", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Auburndale", + "scheduled_service": "no", + "gps_code": "1FL0", + "local_code": "1FL0", + "keywords": "Garner Landing" + }, + { + "id": "8286", + "ident": "1FL1", + "type": "heliport", + "name": "Orlando Helicenter", + "latitude_deg": "28.312135", + "longitude_deg": "-81.46594", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Kissimmee", + "scheduled_service": "no", + "gps_code": "1FL1", + "local_code": "1FL1", + "keywords": "america's chopper pilots, leading edge, orlando helicenter, kissimmee" + }, + { + "id": "8287", + "ident": "1FL2", + "type": "heliport", + "name": "Lake City Medical Center Heliport", + "latitude_deg": "30.184455", + "longitude_deg": "-82.688302", + "elevation_ft": "147", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake City", + "scheduled_service": "no", + "gps_code": "1FL2", + "local_code": "1FL2" + }, + { + "id": "8288", + "ident": "1FL3", + "type": "small_airport", + "name": "Z Ranch Airport", + "latitude_deg": "30.034400939941406", + "longitude_deg": "-82.78209686279297", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake City", + "scheduled_service": "no", + "gps_code": "1FL3", + "local_code": "1FL3" + }, + { + "id": "8289", + "ident": "1FL4", + "type": "closed", + "name": "NBC 6 (WTVJ) Heliport", + "latitude_deg": "25.986401", + "longitude_deg": "-80.353895", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miramar", + "scheduled_service": "no", + "keywords": "1FL4" + }, + { + "id": "8290", + "ident": "1FL5", + "type": "seaplane_base", + "name": "West Bay Creek Seaplane Base", + "latitude_deg": "30.302099227905273", + "longitude_deg": "-85.8644027709961", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "West Bay", + "scheduled_service": "no", + "gps_code": "1FL5", + "local_code": "1FL5" + }, + { + "id": "8291", + "ident": "1FL6", + "type": "heliport", + "name": "Sheriff's North Multi District Office Heliport", + "latitude_deg": "29.27389907836914", + "longitude_deg": "-82.15029907226562", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ocala", + "scheduled_service": "no", + "gps_code": "1FL6", + "local_code": "1FL6" + }, + { + "id": "8292", + "ident": "1FL7", + "type": "heliport", + "name": "Barton Regional Medical Center Heliport", + "latitude_deg": "27.91899", + "longitude_deg": "-81.844835", + "elevation_ft": "107", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bartow", + "scheduled_service": "no", + "gps_code": "1FL7", + "local_code": "1FL7", + "keywords": "Bartow Memorial Hospital" + }, + { + "id": "8293", + "ident": "1FL8", + "type": "heliport", + "name": "Cape Canaveral Hospital Heliport", + "latitude_deg": "28.361099243164062", + "longitude_deg": "-80.62220001220703", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Cocoa Beach", + "scheduled_service": "no", + "gps_code": "1FL8", + "local_code": "1FL8" + }, + { + "id": "8294", + "ident": "1FL9", + "type": "heliport", + "name": "Hendry County Fire-Ems Heliport", + "latitude_deg": "26.746400833129883", + "longitude_deg": "-81.42859649658203", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "La Belle", + "scheduled_service": "no", + "gps_code": "1FL9", + "local_code": "1FL9" + }, + { + "id": "8295", + "ident": "1G6", + "type": "small_airport", + "name": "Michael Airfield", + "latitude_deg": "43.18170166015625", + "longitude_deg": "-76.12779998779297", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Cicero", + "scheduled_service": "no", + "gps_code": "1G6", + "local_code": "1G6" + }, + { + "id": "8296", + "ident": "1G8", + "type": "small_airport", + "name": "Eddie Dew Memorial Airpark", + "latitude_deg": "40.47589874267578", + "longitude_deg": "-80.62809753417969", + "elevation_ft": "1084", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Toronto", + "scheduled_service": "no", + "gps_code": "1G8", + "local_code": "1G8" + }, + { + "id": "8297", + "ident": "1GA0", + "type": "small_airport", + "name": "Eagle Neck Airport", + "latitude_deg": "31.639400482177734", + "longitude_deg": "-81.3290023803711", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Shellman Bluff", + "scheduled_service": "no", + "gps_code": "1GA0", + "local_code": "1GA0" + }, + { + "id": "8298", + "ident": "1GA1", + "type": "heliport", + "name": "Pratt and Whitney Aircraft Heliport", + "latitude_deg": "32.5432014465332", + "longitude_deg": "-84.83190155029297", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "1GA1", + "local_code": "1GA1" + }, + { + "id": "8299", + "ident": "1GA2", + "type": "small_airport", + "name": "Flying N Estates Airport", + "latitude_deg": "33.175358", + "longitude_deg": "-84.747756", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Luthersville", + "scheduled_service": "no", + "gps_code": "1GA2", + "local_code": "1GA2" + }, + { + "id": "8300", + "ident": "1GA3", + "type": "heliport", + "name": "Union General Hospital Heliport", + "latitude_deg": "34.886199951171875", + "longitude_deg": "-83.96240234375", + "elevation_ft": "1911", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Blairsville", + "scheduled_service": "no", + "gps_code": "1GA3", + "local_code": "1GA3" + }, + { + "id": "8301", + "ident": "1GA4", + "type": "small_airport", + "name": "Southern Agricultural Aviation Airport", + "latitude_deg": "32.32849884033203", + "longitude_deg": "-81.75540161132812", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Statesboro", + "scheduled_service": "no", + "gps_code": "1GA4", + "local_code": "1GA4" + }, + { + "id": "8302", + "ident": "1GA5", + "type": "small_airport", + "name": "Shilo Farms Airport", + "latitude_deg": "30.930999755859375", + "longitude_deg": "-83.38349914550781", + "elevation_ft": "211", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Hahira", + "scheduled_service": "no", + "gps_code": "1GA5", + "local_code": "1GA5" + }, + { + "id": "8303", + "ident": "1GA6", + "type": "closed", + "name": "De De Airport", + "latitude_deg": "33.008999", + "longitude_deg": "-84.110703", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Barnesville", + "scheduled_service": "no", + "keywords": "1GA6" + }, + { + "id": "8304", + "ident": "1GA7", + "type": "closed", + "name": "Adams Heliport", + "latitude_deg": "34.293201", + "longitude_deg": "-84.109596", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Cumming", + "scheduled_service": "no", + "keywords": "1GA7" + }, + { + "id": "8305", + "ident": "1GA8", + "type": "small_airport", + "name": "South One Ten Airport", + "latitude_deg": "31.178499", + "longitude_deg": "-83.226501", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Nashville", + "scheduled_service": "no", + "gps_code": "1GA8", + "local_code": "1GA8" + }, + { + "id": "8306", + "ident": "1GA9", + "type": "small_airport", + "name": "Aerie Airport", + "latitude_deg": "33.761608", + "longitude_deg": "-83.652704", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "1GA9", + "local_code": "1GA9" + }, + { + "id": "8307", + "ident": "1GE1", + "type": "heliport", + "name": "Georgia Mountain Heliport", + "latitude_deg": "34.82809829711914", + "longitude_deg": "-84.35469818115234", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Blue Ridge", + "scheduled_service": "no", + "gps_code": "1GE1", + "local_code": "1GE1" + }, + { + "id": "8308", + "ident": "1GE2", + "type": "small_airport", + "name": "C & W Air Park", + "latitude_deg": "32.844398498535156", + "longitude_deg": "-84.54389953613281", + "elevation_ft": "1306", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Woodland", + "scheduled_service": "no", + "gps_code": "1GE2", + "local_code": "1GE2" + }, + { + "id": "8309", + "ident": "1GE3", + "type": "small_airport", + "name": "Answered Prayer Airport", + "latitude_deg": "33.254232", + "longitude_deg": "-85.170623", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "1GE3", + "local_code": "1GE3", + "keywords": "Meadow Lark" + }, + { + "id": "8310", + "ident": "1GE4", + "type": "small_airport", + "name": "Beckley Farms Airport", + "latitude_deg": "32.5010986328125", + "longitude_deg": "-83.93329620361328", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fort Valley", + "scheduled_service": "no", + "gps_code": "1GE4", + "local_code": "1GE4" + }, + { + "id": "8311", + "ident": "1GE5", + "type": "small_airport", + "name": "Flying D Airport", + "latitude_deg": "33.101200103759766", + "longitude_deg": "-84.39350128173828", + "elevation_ft": "838", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "1GE5", + "local_code": "1GE5" + }, + { + "id": "8312", + "ident": "1GE6", + "type": "small_airport", + "name": "Daystar Strip Airport", + "latitude_deg": "31.373752", + "longitude_deg": "-82.107524", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Patterson", + "scheduled_service": "no", + "gps_code": "1GE6", + "local_code": "1GE6", + "keywords": "Forestry-Strip" + }, + { + "id": "8313", + "ident": "1GE7", + "type": "small_airport", + "name": "Hay Field", + "latitude_deg": "33.5172004699707", + "longitude_deg": "-83.439697265625", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "1GE7", + "local_code": "1GE7" + }, + { + "id": "8314", + "ident": "1GE8", + "type": "heliport", + "name": "Grady Memorial Hospital Heliport", + "latitude_deg": "33.752201080322266", + "longitude_deg": "-84.3822021484375", + "elevation_ft": "1227", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "1GE8", + "local_code": "1GE8" + }, + { + "id": "8315", + "ident": "1GE9", + "type": "small_airport", + "name": "Waverly Landing Airport", + "latitude_deg": "32.71440124511719", + "longitude_deg": "-84.71810150146484", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Waverly Hall", + "scheduled_service": "no", + "gps_code": "1GE9", + "local_code": "1GE9" + }, + { + "id": "8316", + "ident": "1H1", + "type": "small_airport", + "name": "Airlane Enterprises Airport", + "latitude_deg": "43.205101013183594", + "longitude_deg": "-76.17880249023438", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Clay", + "scheduled_service": "no", + "gps_code": "1H1", + "local_code": "1H1" + }, + { + "id": "8317", + "ident": "1H4", + "type": "small_airport", + "name": "Greenville-Rainbow Airport", + "latitude_deg": "42.419465", + "longitude_deg": "-74.006889", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Greenville", + "scheduled_service": "no", + "local_code": "1H4" + }, + { + "id": "8318", + "ident": "1H6", + "type": "small_airport", + "name": "Harvey Young Airport", + "latitude_deg": "36.138999938964844", + "longitude_deg": "-95.82499694824219", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tulsa", + "scheduled_service": "no", + "gps_code": "1H6", + "local_code": "1H6" + }, + { + "id": "16042", + "ident": "1H9", + "type": "small_airport", + "name": "Nest of Eagles Airport", + "latitude_deg": "45.83549880981445", + "longitude_deg": "-91.80269622802734", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Spooner", + "scheduled_service": "no", + "gps_code": "1H9", + "local_code": "1H9", + "keywords": "Formerly 9WI7" + }, + { + "id": "8319", + "ident": "1I1", + "type": "small_airport", + "name": "Marcy Field", + "latitude_deg": "44.22090148925781", + "longitude_deg": "-73.79129791259766", + "elevation_ft": "985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Keene", + "scheduled_service": "no", + "gps_code": "1I1", + "local_code": "1I1" + }, + { + "id": "8320", + "ident": "1I3", + "type": "small_airport", + "name": "Shawnee Field", + "latitude_deg": "39.044498443603516", + "longitude_deg": "-87.00559997558594", + "elevation_ft": "501", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bloomfield", + "scheduled_service": "no", + "gps_code": "1I3", + "local_code": "1I3" + }, + { + "id": "8321", + "ident": "1I6", + "type": "heliport", + "name": "Holiday Inn Lakeview Heliport", + "latitude_deg": "38.28340148925781", + "longitude_deg": "-85.75579833984375", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Clarksville", + "scheduled_service": "no", + "gps_code": "1I6", + "local_code": "1I6" + }, + { + "id": "8322", + "ident": "1I8", + "type": "small_airport", + "name": "Converse Airport", + "latitude_deg": "40.573217", + "longitude_deg": "-85.899696", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Converse", + "scheduled_service": "no", + "gps_code": "K1I8", + "local_code": "1I8" + }, + { + "id": "8323", + "ident": "1I9", + "type": "small_airport", + "name": "Delphi Municipal Airport", + "latitude_deg": "40.54280090332031", + "longitude_deg": "-86.68170166015625", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Delphi", + "scheduled_service": "no", + "gps_code": "1I9", + "local_code": "1I9" + }, + { + "id": "8324", + "ident": "1IA0", + "type": "closed", + "name": "Brown Truck Sales Airport", + "latitude_deg": "40.897117", + "longitude_deg": "-94.789824", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Corning", + "scheduled_service": "no", + "gps_code": "1IA0", + "local_code": "1IA0" + }, + { + "id": "8325", + "ident": "1IA2", + "type": "heliport", + "name": "Camp Tahigwa Landing Site Heliport", + "latitude_deg": "43.438899993896484", + "longitude_deg": "-91.56739807128906", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Dorchester", + "scheduled_service": "no", + "gps_code": "1IA2", + "local_code": "1IA2" + }, + { + "id": "8326", + "ident": "1IA3", + "type": "heliport", + "name": "Spencer Municipal Hospital Heliport", + "latitude_deg": "43.1505012512207", + "longitude_deg": "-95.14219665527344", + "elevation_ft": "1318", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Spencer", + "scheduled_service": "no", + "gps_code": "1IA3", + "local_code": "1IA3" + }, + { + "id": "8327", + "ident": "1IA4", + "type": "small_airport", + "name": "Wallace Field", + "latitude_deg": "41.05550003051758", + "longitude_deg": "-94.39469909667969", + "elevation_ft": "1290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Creston", + "scheduled_service": "no", + "gps_code": "1IA4", + "local_code": "1IA4" + }, + { + "id": "8328", + "ident": "1IA5", + "type": "heliport", + "name": "Sch Heliport", + "latitude_deg": "42.01750183105469", + "longitude_deg": "-93.4530029296875", + "elevation_ft": "995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Nevada", + "scheduled_service": "no", + "gps_code": "1IA5", + "local_code": "1IA5" + }, + { + "id": "8329", + "ident": "1IA6", + "type": "small_airport", + "name": "Aero-Lane Airport", + "latitude_deg": "40.8849983215332", + "longitude_deg": "-95.48529815673828", + "elevation_ft": "1134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Randolph", + "scheduled_service": "no", + "gps_code": "1IA6", + "local_code": "1IA6" + }, + { + "id": "8330", + "ident": "1IA7", + "type": "heliport", + "name": "University of Iowa Hospitals & Clinic Heliport", + "latitude_deg": "41.65999984741211", + "longitude_deg": "-91.54769897460938", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Iowa City", + "scheduled_service": "no", + "gps_code": "1IA7", + "local_code": "1IA7" + }, + { + "id": "8331", + "ident": "1IA9", + "type": "closed", + "name": "Newbrough Airport", + "latitude_deg": "43.067699", + "longitude_deg": "-93.902199", + "elevation_ft": "1192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Britt", + "scheduled_service": "no", + "keywords": "1IA9" + }, + { + "id": "8332", + "ident": "1ID2", + "type": "heliport", + "name": "Horseshoe Bend Heliport", + "latitude_deg": "43.914398193359375", + "longitude_deg": "-116.1969985961914", + "elevation_ft": "2300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Horseshoe Bend", + "scheduled_service": "no", + "gps_code": "1ID2", + "local_code": "1ID2" + }, + { + "id": "8333", + "ident": "1ID3", + "type": "small_airport", + "name": "Beaux Ranch Field", + "latitude_deg": "48.167999267578125", + "longitude_deg": "-116.72699737548828", + "elevation_ft": "2079", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Sandpoint", + "scheduled_service": "no", + "gps_code": "1ID3", + "local_code": "1ID3" + }, + { + "id": "8334", + "ident": "1ID4", + "type": "small_airport", + "name": "Red Baron Airpark", + "latitude_deg": "43.3105555556", + "longitude_deg": "-115.9025", + "elevation_ft": "3259", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Oasis", + "scheduled_service": "no", + "gps_code": "1ID4", + "local_code": "1ID4" + }, + { + "id": "8335", + "ident": "1ID5", + "type": "heliport", + "name": "St Luke's Wood River Medical Center Heliport", + "latitude_deg": "43.648538", + "longitude_deg": "-114.350085", + "elevation_ft": "5737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Ketchum", + "scheduled_service": "no", + "gps_code": "1ID5", + "local_code": "1ID5" + }, + { + "id": "8336", + "ident": "1ID6", + "type": "heliport", + "name": "Sligars Landing Heliport", + "latitude_deg": "42.58580017089844", + "longitude_deg": "-114.35700225830078", + "elevation_ft": "3800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Kimberly", + "scheduled_service": "no", + "gps_code": "1ID6", + "local_code": "1ID6" + }, + { + "id": "8337", + "ident": "1ID7", + "type": "small_airport", + "name": "Fairbanks Airfield", + "latitude_deg": "42.587909", + "longitude_deg": "-114.33071", + "elevation_ft": "3830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Eden", + "scheduled_service": "no", + "gps_code": "1ID7", + "local_code": "1ID7" + }, + { + "id": "8338", + "ident": "1ID8", + "type": "heliport", + "name": "North Canyon Medical Center, Inc Heliport", + "latitude_deg": "42.933192", + "longitude_deg": "-114.708509", + "elevation_ft": "3600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Gooding", + "scheduled_service": "no", + "gps_code": "1ID8", + "local_code": "1ID8", + "keywords": "Gooding County Memorial Hospital" + }, + { + "id": "8339", + "ident": "1ID9", + "type": "small_airport", + "name": "Skyline STOLport", + "latitude_deg": "42.780601501464844", + "longitude_deg": "-112.1709976196289", + "elevation_ft": "6150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Inkom", + "scheduled_service": "no", + "gps_code": "1ID9", + "local_code": "1ID9" + }, + { + "id": "8340", + "ident": "1II0", + "type": "small_airport", + "name": "Webster Airport", + "latitude_deg": "39.576698303222656", + "longitude_deg": "-85.58779907226562", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Homer", + "scheduled_service": "no", + "gps_code": "1II0", + "local_code": "1II0" + }, + { + "id": "8341", + "ident": "1II2", + "type": "closed", + "name": "Adams Airport", + "latitude_deg": "40.61624", + "longitude_deg": "-84.82551", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Geneva", + "scheduled_service": "no", + "keywords": "1II2" + }, + { + "id": "8342", + "ident": "1II3", + "type": "small_airport", + "name": "Davis Airport", + "latitude_deg": "38.957000732421875", + "longitude_deg": "-87.39420318603516", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Carlisle", + "scheduled_service": "no", + "gps_code": "1II3", + "local_code": "1II3" + }, + { + "id": "8343", + "ident": "1II4", + "type": "small_airport", + "name": "Amy Airport", + "latitude_deg": "38.125099182128906", + "longitude_deg": "-86.16220092773438", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Corydon", + "scheduled_service": "no", + "gps_code": "1II4", + "local_code": "1II4" + }, + { + "id": "8344", + "ident": "1II5", + "type": "small_airport", + "name": "Van De Mark Airport", + "latitude_deg": "41.24729919433594", + "longitude_deg": "-86.50309753417969", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Culver", + "scheduled_service": "no", + "gps_code": "1II5", + "local_code": "1II5" + }, + { + "id": "8345", + "ident": "1II6", + "type": "heliport", + "name": "St Mary's Medical Center Heliport", + "latitude_deg": "37.96500015258789", + "longitude_deg": "-87.50420379638672", + "elevation_ft": "386", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Evansville", + "scheduled_service": "no", + "gps_code": "1II6", + "local_code": "1II6" + }, + { + "id": "8346", + "ident": "1II7", + "type": "heliport", + "name": "Parkview Memorial Hospital Heliport", + "latitude_deg": "41.09640121459961", + "longitude_deg": "-85.11019897460938", + "elevation_ft": "817", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Fort Wayne", + "scheduled_service": "no", + "gps_code": "1II7", + "local_code": "1II7" + }, + { + "id": "8347", + "ident": "1II8", + "type": "small_airport", + "name": "Morris Airport", + "latitude_deg": "39.81420135498047", + "longitude_deg": "-85.81890106201172", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Greenfield", + "scheduled_service": "no", + "gps_code": "1II8", + "local_code": "1II8" + }, + { + "id": "8348", + "ident": "1IL0", + "type": "small_airport", + "name": "Barnstorm Field", + "latitude_deg": "40.775001525878906", + "longitude_deg": "-89.0010986328125", + "elevation_ft": "731", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "El Paso", + "scheduled_service": "no", + "gps_code": "1IL0", + "local_code": "1IL0" + }, + { + "id": "8349", + "ident": "1IL1", + "type": "small_airport", + "name": "Horsefeathers Ranch Airport", + "latitude_deg": "39.241595", + "longitude_deg": "-89.426565", + "elevation_ft": "653", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Irving", + "scheduled_service": "no", + "gps_code": "1IL1", + "local_code": "1IL1", + "keywords": "Hacker RLA" + }, + { + "id": "8350", + "ident": "1IL2", + "type": "closed", + "name": "Hobby Hideaway RLA Airport", + "latitude_deg": "40.347", + "longitude_deg": "-89.470703", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Delavan", + "scheduled_service": "no", + "keywords": "1IL2" + }, + { + "id": "8351", + "ident": "1IL3", + "type": "heliport", + "name": "Alton Memorial Hospital Heliport", + "latitude_deg": "38.902198791503906", + "longitude_deg": "-90.1613998413086", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Alton", + "scheduled_service": "no", + "gps_code": "1IL3", + "local_code": "1IL3" + }, + { + "id": "8352", + "ident": "1IL4", + "type": "small_airport", + "name": "Flight Park Inc Airport", + "latitude_deg": "38.418701", + "longitude_deg": "-90.131203", + "elevation_ft": "631", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Millstadt", + "scheduled_service": "no", + "gps_code": "1IL4", + "local_code": "1IL4", + "home_link": "http://www.1il4.com/", + "keywords": "Heitman Aerdrome, Riebeling Airport" + }, + { + "id": "350768", + "ident": "1IL5", + "type": "heliport", + "name": "Highland Heliport", + "latitude_deg": "38.76032", + "longitude_deg": "-89.674326", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Highland", + "scheduled_service": "no", + "gps_code": "1IL5", + "local_code": "1IL5" + }, + { + "id": "8353", + "ident": "1IL6", + "type": "closed", + "name": "Bally's Strip", + "latitude_deg": "41.868963", + "longitude_deg": "-89.445807", + "elevation_ft": "786", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Dixon", + "scheduled_service": "no", + "keywords": "1IL6" + }, + { + "id": "8354", + "ident": "1IL7", + "type": "heliport", + "name": "Gearhart-Hollow Heliport", + "latitude_deg": "41.86479949951172", + "longitude_deg": "-89.50289916992188", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Dixon", + "scheduled_service": "no", + "gps_code": "1IL7", + "local_code": "1IL7" + }, + { + "id": "8355", + "ident": "1IL8", + "type": "small_airport", + "name": "Loy Airport", + "latitude_deg": "40.93199920654297", + "longitude_deg": "-87.59590148925781", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Donovan", + "scheduled_service": "no", + "gps_code": "1IL8", + "local_code": "1IL8" + }, + { + "id": "8356", + "ident": "1IL9", + "type": "small_airport", + "name": "Holland Field", + "latitude_deg": "40.30059814453125", + "longitude_deg": "-89.12439727783203", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mc Lean", + "scheduled_service": "no", + "gps_code": "1IL9", + "local_code": "1IL9" + }, + { + "id": "8357", + "ident": "1IN0", + "type": "small_airport", + "name": "Belknap-Icarus Acres Airport", + "latitude_deg": "40.133399963378906", + "longitude_deg": "-85.23049926757812", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Parker City", + "scheduled_service": "no", + "gps_code": "1IN0", + "local_code": "1IN0" + }, + { + "id": "8358", + "ident": "1IN1", + "type": "small_airport", + "name": "Shearer STOLport", + "latitude_deg": "39.488399505615234", + "longitude_deg": "-86.6530990600586", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lewisville", + "scheduled_service": "no", + "gps_code": "1IN1", + "local_code": "1IN1" + }, + { + "id": "8359", + "ident": "1IN2", + "type": "heliport", + "name": "Meharry Ag Service Heliport", + "latitude_deg": "40.203899383499994", + "longitude_deg": "-87.0558013916", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Wingate", + "scheduled_service": "no", + "gps_code": "1IN2", + "local_code": "1IN2" + }, + { + "id": "8360", + "ident": "1IN3", + "type": "small_airport", + "name": "Confer's Place Airport", + "latitude_deg": "41.097801208496094", + "longitude_deg": "-85.24250030517578", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Arcola", + "scheduled_service": "no", + "gps_code": "1IN3", + "local_code": "1IN3" + }, + { + "id": "8361", + "ident": "1IN4", + "type": "small_airport", + "name": "Robinson Airpark", + "latitude_deg": "38.143383", + "longitude_deg": "-85.985141", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Elizabeth", + "scheduled_service": "no", + "gps_code": "1IN4", + "local_code": "1IN4" + }, + { + "id": "8362", + "ident": "1IN5", + "type": "small_airport", + "name": "Bottoms Brothers Airport", + "latitude_deg": "38.2848014831543", + "longitude_deg": "-87.38200378417969", + "elevation_ft": "545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Somerville", + "scheduled_service": "no", + "gps_code": "1IN5", + "local_code": "1IN5" + }, + { + "id": "8363", + "ident": "1IN6", + "type": "small_airport", + "name": "Cottingham Airport", + "latitude_deg": "40.40169906616211", + "longitude_deg": "-87.22029876708984", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Pine Village", + "scheduled_service": "no", + "gps_code": "1IN6", + "local_code": "1IN6" + }, + { + "id": "8364", + "ident": "1IN7", + "type": "seaplane_base", + "name": "Lake Wawasee Seaplane Base", + "latitude_deg": "41.4035987854", + "longitude_deg": "-85.706100463867", + "elevation_ft": "859", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Syracuse", + "scheduled_service": "no", + "gps_code": "01D", + "local_code": "01D", + "keywords": "1IN7" + }, + { + "id": "345502", + "ident": "1IN8", + "type": "heliport", + "name": "Adderly's Pad Heliport", + "latitude_deg": "41.107243", + "longitude_deg": "-85.218056", + "elevation_ft": "847", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Fort Wayne", + "scheduled_service": "no", + "gps_code": "1IN8", + "local_code": "1IN8" + }, + { + "id": "349866", + "ident": "1IN9", + "type": "small_airport", + "name": "Lee Farms Airport", + "latitude_deg": "40.594916", + "longitude_deg": "-85.424473", + "elevation_ft": "856", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "1IN9", + "local_code": "1IN9" + }, + { + "id": "8365", + "ident": "1IS0", + "type": "small_airport", + "name": "Harold Emmerich Airport", + "latitude_deg": "38.524200439453125", + "longitude_deg": "-89.93229675292969", + "elevation_ft": "515", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Belleville", + "scheduled_service": "no", + "gps_code": "1IS0", + "local_code": "1IS0" + }, + { + "id": "8366", + "ident": "1IS2", + "type": "small_airport", + "name": "Triple Creek Airport", + "latitude_deg": "39.896400451660156", + "longitude_deg": "-88.52230072021484", + "elevation_ft": "666", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Bement", + "scheduled_service": "no", + "gps_code": "1IS2", + "local_code": "1IS2" + }, + { + "id": "8367", + "ident": "1IS3", + "type": "small_airport", + "name": "Cribbet Airport", + "latitude_deg": "39.72779846191406", + "longitude_deg": "-89.05950164794922", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Blue Mound", + "scheduled_service": "no", + "gps_code": "1IS3", + "local_code": "1IS3" + }, + { + "id": "8368", + "ident": "1IS4", + "type": "small_airport", + "name": "Swan Valley Farm Airport", + "latitude_deg": "42.134498596191406", + "longitude_deg": "-89.82460021972656", + "elevation_ft": "916", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lanark", + "scheduled_service": "no", + "gps_code": "1IS4", + "local_code": "1IS4" + }, + { + "id": "8369", + "ident": "1IS5", + "type": "small_airport", + "name": "Walder's Farm Airport", + "latitude_deg": "41.653099060058594", + "longitude_deg": "-89.00150299072266", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Paw Paw", + "scheduled_service": "no", + "gps_code": "1IS5", + "local_code": "1IS5" + }, + { + "id": "8370", + "ident": "1IS7", + "type": "heliport", + "name": "Ingersoll Heliport", + "latitude_deg": "42.29949951171875", + "longitude_deg": "-89.06929779052734", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rockford", + "scheduled_service": "no", + "gps_code": "1IS7", + "local_code": "1IS7" + }, + { + "id": "8371", + "ident": "1IS8", + "type": "heliport", + "name": "Sword's Heliport", + "latitude_deg": "41.86249923706055", + "longitude_deg": "-89.22119903564453", + "elevation_ft": "799", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Ashton", + "scheduled_service": "no", + "gps_code": "1IS8", + "local_code": "1IS8" + }, + { + "id": "8372", + "ident": "1J9", + "type": "small_airport", + "name": "Fort Walton Beach Airport", + "latitude_deg": "30.406299591064453", + "longitude_deg": "-86.8291015625", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Navarre", + "scheduled_service": "no", + "gps_code": "1J9", + "local_code": "1J9" + }, + { + "id": "8373", + "ident": "1JY1", + "type": "heliport", + "name": "Newark/Jersey Street Heliport", + "latitude_deg": "40.733508", + "longitude_deg": "-74.159124", + "elevation_ft": "1041", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Newark", + "scheduled_service": "no", + "gps_code": "1JY1", + "local_code": "1JY1" + }, + { + "id": "8374", + "ident": "1JY2", + "type": "small_airport", + "name": "Mahogany Mtn. Airport", + "latitude_deg": "43.067100524902344", + "longitude_deg": "-121.0530014038086", + "elevation_ft": "4620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Silver Lake", + "scheduled_service": "no", + "gps_code": "1JY2", + "local_code": "1JY2" + }, + { + "id": "8375", + "ident": "1JY3", + "type": "heliport", + "name": "Mbna Heliport", + "latitude_deg": "40.73640060424805", + "longitude_deg": "-74.17720031738281", + "elevation_ft": "97", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Newark", + "scheduled_service": "no", + "gps_code": "1JY3", + "local_code": "1JY3" + }, + { + "id": "8376", + "ident": "1JY4", + "type": "heliport", + "name": "New Jersey State Police Troop C Headquarters Heliport", + "latitude_deg": "40.201379", + "longitude_deg": "-74.648838", + "elevation_ft": "81", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Hamilton Township", + "scheduled_service": "no", + "gps_code": "1JY4", + "local_code": "1JY4", + "keywords": "Hamilton Headquarter Troop C" + }, + { + "id": "8377", + "ident": "1JY5", + "type": "closed", + "name": "Morey's Heliport", + "latitude_deg": "38.985921", + "longitude_deg": "-74.810307", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Wildwood", + "scheduled_service": "no", + "gps_code": "1JY5", + "local_code": "1JY5" + }, + { + "id": "8378", + "ident": "1K1", + "type": "small_airport", + "name": "Lloyd Stearman Field", + "latitude_deg": "37.77790069580078", + "longitude_deg": "-97.1135025024414", + "elevation_ft": "1364", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Benton", + "scheduled_service": "no", + "gps_code": "1K1", + "local_code": "1K1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lloyd_Stearman_Field" + }, + { + "id": "8379", + "ident": "1K3", + "type": "closed", + "name": "Hamilton Field", + "latitude_deg": "37.5606", + "longitude_deg": "-97.233704", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Derby", + "scheduled_service": "no", + "keywords": "1K3" + }, + { + "id": "8380", + "ident": "1K5", + "type": "small_airport", + "name": "Waynoka Municipal Airport", + "latitude_deg": "36.56669998168945", + "longitude_deg": "-98.85230255126953", + "elevation_ft": "1543", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Waynoka", + "scheduled_service": "no", + "gps_code": "1K5", + "local_code": "1K5" + }, + { + "id": "8381", + "ident": "1K6", + "type": "small_airport", + "name": "Ellinwood Municipal Airport", + "latitude_deg": "38.37329864501953", + "longitude_deg": "-98.59510040283203", + "elevation_ft": "1797", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Ellinwood", + "scheduled_service": "no", + "gps_code": "1K6", + "local_code": "1K6" + }, + { + "id": "8382", + "ident": "1K8", + "type": "small_airport", + "name": "South Grand Lake Regional Airport", + "latitude_deg": "36.541698455799995", + "longitude_deg": "-95.02110290530001", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ketchum", + "scheduled_service": "no", + "gps_code": "1K8", + "local_code": "1K8" + }, + { + "id": "8383", + "ident": "1KC", + "type": "small_airport", + "name": "Kalakaket Creek AS Airport", + "latitude_deg": "64.4166256967", + "longitude_deg": "-156.820392609", + "elevation_ft": "1598", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kalakaket Creek", + "scheduled_service": "no", + "gps_code": "1KC", + "iata_code": "KKK", + "local_code": "1KC" + }, + { + "id": "8384", + "ident": "1KS0", + "type": "small_airport", + "name": "Huey Airport", + "latitude_deg": "38.169498443603516", + "longitude_deg": "-97.97119903564453", + "elevation_ft": "1700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Hutchinson", + "scheduled_service": "no", + "gps_code": "1KS0", + "local_code": "1KS0" + }, + { + "id": "8385", + "ident": "1KS1", + "type": "small_airport", + "name": "Cochran Airport", + "latitude_deg": "38.458899", + "longitude_deg": "-95.226531", + "elevation_ft": "1005", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "1KS1", + "local_code": "1KS1" + }, + { + "id": "8386", + "ident": "1KS2", + "type": "small_airport", + "name": "Risky Airport", + "latitude_deg": "39.31399917602539", + "longitude_deg": "-95.07160186767578", + "elevation_ft": "1133", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Easton", + "scheduled_service": "no", + "gps_code": "1KS2", + "local_code": "1KS2" + }, + { + "id": "8387", + "ident": "1KS3", + "type": "small_airport", + "name": "Leo's Place STOLport", + "latitude_deg": "39.30419921875", + "longitude_deg": "-96.75859832763672", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Riley", + "scheduled_service": "no", + "gps_code": "1KS3", + "local_code": "1KS3" + }, + { + "id": "8388", + "ident": "1KS4", + "type": "small_airport", + "name": "Prichard Airstrip", + "latitude_deg": "38.900001525878906", + "longitude_deg": "-97.11699676513672", + "elevation_ft": "1164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Enterprise", + "scheduled_service": "no", + "gps_code": "1KS4", + "local_code": "1KS4" + }, + { + "id": "8389", + "ident": "1KS5", + "type": "closed", + "name": "Keyser Airport", + "latitude_deg": "39.162498", + "longitude_deg": "-96.096397", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "St Marys", + "scheduled_service": "no", + "keywords": "1KS5" + }, + { + "id": "8390", + "ident": "1KS6", + "type": "small_airport", + "name": "Silers Plane Valley Airport", + "latitude_deg": "38.86669921875", + "longitude_deg": "-97.5363998413086", + "elevation_ft": "1204", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Salina", + "scheduled_service": "no", + "gps_code": "1KS6", + "local_code": "1KS6" + }, + { + "id": "8391", + "ident": "1KS7", + "type": "small_airport", + "name": "Hitch Feeders Ii Inc. Airport", + "latitude_deg": "37.67359924316406", + "longitude_deg": "-101.01699829101562", + "elevation_ft": "3028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Satanta", + "scheduled_service": "no", + "gps_code": "1KS7", + "local_code": "1KS7" + }, + { + "id": "8392", + "ident": "1KS8", + "type": "small_airport", + "name": "Buehler Airport", + "latitude_deg": "38.51530075073242", + "longitude_deg": "-100.99500274658203", + "elevation_ft": "3038", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Scott City", + "scheduled_service": "no", + "gps_code": "1KS8", + "local_code": "1KS8" + }, + { + "id": "8393", + "ident": "1KS9", + "type": "small_airport", + "name": "Belleair Airport", + "latitude_deg": "39.045601", + "longitude_deg": "-94.948996", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Bonner Springs", + "scheduled_service": "no", + "gps_code": "1KS9", + "local_code": "1KS9", + "keywords": "Huff Airport" + }, + { + "id": "324376", + "ident": "1KT9", + "type": "small_airport", + "name": "Holcomb Field", + "latitude_deg": "37.311833", + "longitude_deg": "-83.942633", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Annville", + "scheduled_service": "no", + "gps_code": "1KT9", + "local_code": "1KT9" + }, + { + "id": "8394", + "ident": "1KY0", + "type": "heliport", + "name": "Sof Maintenance Site Heliport", + "latitude_deg": "37.676700592041016", + "longitude_deg": "-84.23300170898438", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "1KY0", + "local_code": "1KY0" + }, + { + "id": "8395", + "ident": "1KY1", + "type": "heliport", + "name": "Hardin Memorial Hospital Heliport", + "latitude_deg": "37.710601806640625", + "longitude_deg": "-85.87689971923828", + "elevation_ft": "838", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Elizabethtown", + "scheduled_service": "no", + "gps_code": "1KY1", + "local_code": "1KY1" + }, + { + "id": "8396", + "ident": "1KY2", + "type": "heliport", + "name": "Community Methodist Hospital Heliport", + "latitude_deg": "37.855899810791016", + "longitude_deg": "-87.58390045166016", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Henderson", + "scheduled_service": "no", + "gps_code": "1KY2", + "local_code": "1KY2" + }, + { + "id": "8397", + "ident": "1KY3", + "type": "heliport", + "name": "Monroe County Medical Center Heliport", + "latitude_deg": "36.69810104370117", + "longitude_deg": "-85.67639923095703", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Tompkinsville", + "scheduled_service": "no", + "gps_code": "1KY3", + "local_code": "1KY3" + }, + { + "id": "8398", + "ident": "1KY4", + "type": "heliport", + "name": "Baptist Health Lexington Heliport", + "latitude_deg": "38.017631", + "longitude_deg": "-84.511948", + "elevation_ft": "1076", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "1KY4", + "local_code": "1KY4", + "keywords": "Central Baptist Hospital" + }, + { + "id": "8399", + "ident": "1KY5", + "type": "heliport", + "name": "Switch Pad Heliport", + "latitude_deg": "38.16669845581055", + "longitude_deg": "-85.70130157470703", + "elevation_ft": "496", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "1KY5", + "local_code": "1KY5" + }, + { + "id": "8400", + "ident": "1KY6", + "type": "heliport", + "name": "Haggin Heliport", + "latitude_deg": "37.75590133666992", + "longitude_deg": "-84.84970092773438", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Harrodsburg", + "scheduled_service": "no", + "gps_code": "1KY6", + "local_code": "1KY6" + }, + { + "id": "8401", + "ident": "1KY7", + "type": "small_airport", + "name": "Jordan Hill Farm Airport", + "latitude_deg": "37.83250045776367", + "longitude_deg": "-84.18080139160156", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "1KY7", + "local_code": "1KY7" + }, + { + "id": "45428", + "ident": "1KY8", + "type": "heliport", + "name": "Norton Audubon Hospital Heliport", + "latitude_deg": "38.214444", + "longitude_deg": "-85.7225", + "elevation_ft": "517", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "1KY8", + "local_code": "1KY8" + }, + { + "id": "8402", + "ident": "1L4", + "type": "small_airport", + "name": "Kidwell Airport", + "latitude_deg": "35.305547", + "longitude_deg": "-114.88236", + "elevation_ft": "2605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Cal Nev Ari", + "scheduled_service": "no", + "gps_code": "K1L4", + "local_code": "1L4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kidwell_Airport" + }, + { + "id": "8404", + "ident": "1LA0", + "type": "small_airport", + "name": "Ken Guidry #2 Airport", + "latitude_deg": "30.012107", + "longitude_deg": "-92.526941", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Gueydan", + "scheduled_service": "no", + "gps_code": "1LA0", + "local_code": "1LA0" + }, + { + "id": "8405", + "ident": "1LA1", + "type": "small_airport", + "name": "Triche Field", + "latitude_deg": "29.98349952697754", + "longitude_deg": "-90.43479919433594", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Hahnville", + "scheduled_service": "no", + "gps_code": "1LA1", + "local_code": "1LA1" + }, + { + "id": "8406", + "ident": "1LA2", + "type": "closed", + "name": "Phi Harahan Heliport", + "latitude_deg": "29.941299", + "longitude_deg": "-90.180603", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Harahan", + "scheduled_service": "no", + "keywords": "1LA2" + }, + { + "id": "8407", + "ident": "1LA3", + "type": "small_airport", + "name": "Goose Island Airport", + "latitude_deg": "30.030799865722656", + "longitude_deg": "-92.83350372314453", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Hayes", + "scheduled_service": "no", + "gps_code": "1LA3", + "local_code": "1LA3" + }, + { + "id": "8408", + "ident": "1LA4", + "type": "closed", + "name": "Bayou Fourchon Seaplane Base", + "latitude_deg": "29.105801", + "longitude_deg": "-90.190903", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Leeville", + "scheduled_service": "no", + "keywords": "1LA4" + }, + { + "id": "8409", + "ident": "1LA5", + "type": "small_airport", + "name": "Morrow Strip", + "latitude_deg": "30.7992000579834", + "longitude_deg": "-92.05970001220703", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Morrow", + "scheduled_service": "no", + "gps_code": "1LA5", + "local_code": "1LA5" + }, + { + "id": "8410", + "ident": "1LA6", + "type": "heliport", + "name": "Christus Highland Heliport", + "latitude_deg": "32.423673", + "longitude_deg": "-93.715941", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Shreveport", + "scheduled_service": "no", + "gps_code": "LA85", + "local_code": "LA85", + "keywords": "1LA6, Highland Hospital" + }, + { + "id": "8411", + "ident": "1LA7", + "type": "heliport", + "name": "Savoy Medical Center Heliport", + "latitude_deg": "30.642499923706055", + "longitude_deg": "-92.41780090332031", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Mamou", + "scheduled_service": "no", + "gps_code": "1LA7", + "local_code": "1LA7" + }, + { + "id": "8412", + "ident": "1LA8", + "type": "heliport", + "name": "S.Fresh Water Bayou Heliport", + "latitude_deg": "29.60110092163086", + "longitude_deg": "-92.26010131835938", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Intracoastal City", + "scheduled_service": "no", + "gps_code": "1LA8", + "local_code": "1LA8" + }, + { + "id": "8413", + "ident": "1LA9", + "type": "heliport", + "name": "Chevron Intracoastal Heliport", + "latitude_deg": "29.786541", + "longitude_deg": "-92.161092", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Intracoastal City", + "scheduled_service": "no", + "gps_code": "1LA9", + "local_code": "1LA9" + }, + { + "id": "8414", + "ident": "1LL0", + "type": "small_airport", + "name": "Boondox Field", + "latitude_deg": "41.329200744628906", + "longitude_deg": "-88.60009765625", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Seneca", + "scheduled_service": "no", + "gps_code": "1LL0", + "local_code": "1LL0" + }, + { + "id": "8415", + "ident": "1LL1", + "type": "heliport", + "name": "Lawrence Co Memorial Hospital Heliport", + "latitude_deg": "38.728099823", + "longitude_deg": "-87.69470214840001", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lawrenceville", + "scheduled_service": "no", + "gps_code": "1LL1", + "local_code": "1LL1" + }, + { + "id": "8416", + "ident": "1LL2", + "type": "small_airport", + "name": "Spring Brook Airport", + "latitude_deg": "41.30059814453125", + "longitude_deg": "-88.6355972290039", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Seneca", + "scheduled_service": "no", + "gps_code": "1LL2", + "local_code": "1LL2" + }, + { + "id": "8417", + "ident": "1LL4", + "type": "small_airport", + "name": "Sies Landing Area Airport", + "latitude_deg": "39.183227", + "longitude_deg": "-89.69726", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Litchfield", + "scheduled_service": "no", + "gps_code": "1LL4", + "local_code": "1LL4" + }, + { + "id": "347011", + "ident": "1LL5", + "type": "small_airport", + "name": "Justison Airport", + "latitude_deg": "39.24277", + "longitude_deg": "-89.55083", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "1LL5", + "local_code": "1LL5" + }, + { + "id": "8418", + "ident": "1LL6", + "type": "small_airport", + "name": "Janssen Airport", + "latitude_deg": "42.22809982299805", + "longitude_deg": "-89.73819732666016", + "elevation_ft": "877", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Shannon", + "scheduled_service": "no", + "gps_code": "1LL6", + "local_code": "1LL6" + }, + { + "id": "8419", + "ident": "1LL7", + "type": "small_airport", + "name": "Edwin G. Bennett Airport", + "latitude_deg": "41.34980010986328", + "longitude_deg": "-89.77320098876953", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sheffield", + "scheduled_service": "no", + "gps_code": "1LL7", + "local_code": "1LL7" + }, + { + "id": "8420", + "ident": "1LL8", + "type": "small_airport", + "name": "Zoomer Field", + "latitude_deg": "40.78889846801758", + "longitude_deg": "-87.55840301513672", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sheldon", + "scheduled_service": "no", + "gps_code": "1LL8", + "local_code": "1LL8" + }, + { + "id": "8421", + "ident": "1LL9", + "type": "heliport", + "name": "Reyhan Heliport", + "latitude_deg": "39.6776008605957", + "longitude_deg": "-89.80509948730469", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Loami", + "scheduled_service": "no", + "gps_code": "1LL9", + "local_code": "1LL9" + }, + { + "id": "8422", + "ident": "1LS0", + "type": "small_airport", + "name": "Cal Mire Field", + "latitude_deg": "30.22410011291504", + "longitude_deg": "-90.88200378417969", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Gonzales", + "scheduled_service": "no", + "gps_code": "1LS0", + "local_code": "1LS0" + }, + { + "id": "8423", + "ident": "1LS1", + "type": "heliport", + "name": "Cosmar Styrene Plant Heliport", + "latitude_deg": "30.22249984741211", + "longitude_deg": "-91.07279968261719", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no", + "gps_code": "1LS1", + "local_code": "1LS1" + }, + { + "id": "8424", + "ident": "1LS2", + "type": "heliport", + "name": "Innis Community Health Center Heliport", + "latitude_deg": "30.876566", + "longitude_deg": "-91.678408", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Innis", + "scheduled_service": "no", + "gps_code": "1LS2", + "local_code": "1LS2" + }, + { + "id": "8425", + "ident": "1LS5", + "type": "small_airport", + "name": "Cameron Airstrip", + "latitude_deg": "29.803300857543945", + "longitude_deg": "-93.33460235595703", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cameron", + "scheduled_service": "no", + "gps_code": "1LS5", + "local_code": "1LS5" + }, + { + "id": "8426", + "ident": "1LS8", + "type": "small_airport", + "name": "Summerell Airport", + "latitude_deg": "31.684198", + "longitude_deg": "-91.501001", + "elevation_ft": "64", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Ferriday", + "scheduled_service": "no", + "gps_code": "1LS8", + "local_code": "1LS8" + }, + { + "id": "8427", + "ident": "1M3", + "type": "small_airport", + "name": "Ardmore Airport", + "latitude_deg": "34.977901458740234", + "longitude_deg": "-86.88469696044922", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Ardmore", + "scheduled_service": "no", + "gps_code": "1M3", + "local_code": "1M3" + }, + { + "id": "8428", + "ident": "1M7", + "type": "small_airport", + "name": "Fulton Airport", + "latitude_deg": "36.525901794433594", + "longitude_deg": "-88.91560363769531", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Fulton", + "scheduled_service": "no", + "gps_code": "1M7", + "local_code": "1M7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fulton_Airport" + }, + { + "id": "8429", + "ident": "1M8", + "type": "small_airport", + "name": "Myricks Airport", + "latitude_deg": "41.8390998840332", + "longitude_deg": "-71.02649688720703", + "elevation_ft": "71", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Berkley", + "scheduled_service": "no", + "gps_code": "1M8", + "local_code": "1M8" + }, + { + "id": "8430", + "ident": "1MA0", + "type": "heliport", + "name": "Beth Israel Deaconess Hospital Plymouth Heliport", + "latitude_deg": "41.940135", + "longitude_deg": "-70.6472", + "elevation_ft": "122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "1MA0", + "local_code": "1MA0", + "keywords": "Jordan Hospital Heliport" + }, + { + "id": "8431", + "ident": "1MA1", + "type": "heliport", + "name": "Deaconess Nashoba Hospital Heliport", + "latitude_deg": "42.576499938964844", + "longitude_deg": "-71.5739974975586", + "elevation_ft": "308", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Ayer", + "scheduled_service": "no", + "gps_code": "1MA1", + "local_code": "1MA1" + }, + { + "id": "8432", + "ident": "1MA2", + "type": "heliport", + "name": "UMASS Memorial Medical Center-Univ Campus Heliport", + "latitude_deg": "42.2750015259", + "longitude_deg": "-71.7600021362", + "elevation_ft": "417", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Worcester", + "scheduled_service": "no", + "gps_code": "1MA2", + "local_code": "1MA2" + }, + { + "id": "8433", + "ident": "1MA4", + "type": "heliport", + "name": "Wang Heliport", + "latitude_deg": "42.60929870605469", + "longitude_deg": "-71.32170104980469", + "elevation_ft": "104", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Lowell", + "scheduled_service": "no", + "gps_code": "1MA4", + "local_code": "1MA4" + }, + { + "id": "8434", + "ident": "1MA5", + "type": "small_airport", + "name": "Unknown Field", + "latitude_deg": "42.27899932861328", + "longitude_deg": "-71.54779815673828", + "elevation_ft": "432", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Southborough", + "scheduled_service": "no", + "gps_code": "1MA5", + "local_code": "1MA5" + }, + { + "id": "8435", + "ident": "1MA6", + "type": "heliport", + "name": "Micron Heliport", + "latitude_deg": "42.067901611328125", + "longitude_deg": "-72.74449920654297", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Southwick", + "scheduled_service": "no", + "gps_code": "1MA6", + "local_code": "1MA6" + }, + { + "id": "8436", + "ident": "1MA7", + "type": "heliport", + "name": "Long Hill Orchard Heliport", + "latitude_deg": "42.4734001159668", + "longitude_deg": "-70.97889709472656", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "West Newbury", + "scheduled_service": "no", + "gps_code": "1MA7", + "local_code": "1MA7" + }, + { + "id": "8437", + "ident": "1MA8", + "type": "heliport", + "name": "Horizon Hill Heliport", + "latitude_deg": "42.419656", + "longitude_deg": "-71.309323", + "elevation_ft": "336", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "1MA8", + "local_code": "1MA8" + }, + { + "id": "8438", + "ident": "1MA9", + "type": "heliport", + "name": "Morton Hospital Heliport", + "latitude_deg": "41.90589904785156", + "longitude_deg": "-71.09420013427734", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Taunton", + "scheduled_service": "no", + "gps_code": "1MA9", + "local_code": "1MA9" + }, + { + "id": "8439", + "ident": "1MD0", + "type": "heliport", + "name": "Clng Cove Point Heliport", + "latitude_deg": "38.39179992675781", + "longitude_deg": "-76.40799713134766", + "elevation_ft": "133", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Lusby", + "scheduled_service": "no", + "gps_code": "1MD0", + "local_code": "1MD0" + }, + { + "id": "8440", + "ident": "1MD1", + "type": "small_airport", + "name": "Big Oak Farm Airport", + "latitude_deg": "38.569126", + "longitude_deg": "-76.286189", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "1MD1", + "local_code": "1MD1" + }, + { + "id": "8441", + "ident": "1MD3", + "type": "closed", + "name": "Krastel Farms Airport", + "latitude_deg": "39.308998", + "longitude_deg": "-75.987701", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Kennedyville", + "scheduled_service": "no", + "keywords": "1MD3" + }, + { + "id": "8442", + "ident": "1MD4", + "type": "heliport", + "name": "Prince George's Hospital Center Heliport", + "latitude_deg": "38.930301666259766", + "longitude_deg": "-76.9207992553711", + "elevation_ft": "297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Cheverly", + "scheduled_service": "no", + "gps_code": "1MD4", + "local_code": "1MD4" + }, + { + "id": "8443", + "ident": "1MD5", + "type": "heliport", + "name": "Federal Support Center Heliport", + "latitude_deg": "39.192100524902344", + "longitude_deg": "-77.10659790039062", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Laytonsville", + "scheduled_service": "no", + "gps_code": "1MD5", + "local_code": "1MD5" + }, + { + "id": "8444", + "ident": "1MD6", + "type": "heliport", + "name": "Metroplex Heliport", + "latitude_deg": "38.94620132446289", + "longitude_deg": "-76.86830139160156", + "elevation_ft": "99", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "New Carrollton", + "scheduled_service": "no", + "gps_code": "1MD6", + "local_code": "1MD6" + }, + { + "id": "8445", + "ident": "1MD7", + "type": "heliport", + "name": "Shady Grove Adventist Hospital Heliport", + "latitude_deg": "39.098367", + "longitude_deg": "-77.197608", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Rockville", + "scheduled_service": "no", + "gps_code": "1MD7", + "local_code": "1MD7" + }, + { + "id": "8446", + "ident": "1MD8", + "type": "small_airport", + "name": "Mayberry Run Airport", + "latitude_deg": "39.682899475097656", + "longitude_deg": "-77.09719848632812", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Westminster/Silver Run", + "scheduled_service": "no", + "gps_code": "1MD8", + "local_code": "1MD8" + }, + { + "id": "8447", + "ident": "1MD9", + "type": "heliport", + "name": "Washington County Hospital Heliport", + "latitude_deg": "39.637298583984375", + "longitude_deg": "-77.7146987915039", + "elevation_ft": "589", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Hagerstown", + "scheduled_service": "no", + "gps_code": "1MD9", + "local_code": "1MD9" + }, + { + "id": "8448", + "ident": "1ME", + "type": "seaplane_base", + "name": "Chesuncook Lake House Seaplane Base", + "latitude_deg": "46.0609016418457", + "longitude_deg": "-69.4094009399414", + "elevation_ft": "942", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Chesuncook", + "scheduled_service": "no", + "gps_code": "1ME", + "local_code": "1ME" + }, + { + "id": "8449", + "ident": "1ME1", + "type": "heliport", + "name": "Victor Heliport", + "latitude_deg": "44.41059875488281", + "longitude_deg": "-69.00920104980469", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Belfast", + "scheduled_service": "no", + "gps_code": "1ME1", + "local_code": "1ME1" + }, + { + "id": "329077", + "ident": "1ME2", + "type": "heliport", + "name": "Maine General Medical Center-Waterville Heliport", + "latitude_deg": "44.566216", + "longitude_deg": "-69.64785", + "elevation_ft": "112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Waterville", + "scheduled_service": "no", + "gps_code": "1ME2", + "local_code": "1ME2" + }, + { + "id": "8450", + "ident": "1MI0", + "type": "seaplane_base", + "name": "Ashman Island Seaplane Base", + "latitude_deg": "46.068599700927734", + "longitude_deg": "-83.72419738769531", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Drummond Island", + "scheduled_service": "no", + "gps_code": "1MI0", + "local_code": "1MI0" + }, + { + "id": "8451", + "ident": "1MI1", + "type": "closed", + "name": "Nikkila Farms Airport", + "latitude_deg": "46.700672", + "longitude_deg": "-88.99716", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Mass", + "scheduled_service": "no", + "keywords": "1MI1" + }, + { + "id": "8452", + "ident": "1MI2", + "type": "heliport", + "name": "Guardian Industries Heliport", + "latitude_deg": "42.699798583984375", + "longitude_deg": "-83.24739837646484", + "elevation_ft": "1021", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Auburn Hills", + "scheduled_service": "no", + "gps_code": "1MI2", + "local_code": "1MI2" + }, + { + "id": "8453", + "ident": "1MI3", + "type": "small_airport", + "name": "Black River Ranch Airport", + "latitude_deg": "45.19580078125", + "longitude_deg": "-84.32170104980469", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Onaway", + "scheduled_service": "no", + "gps_code": "1MI3", + "local_code": "1MI3" + }, + { + "id": "8454", + "ident": "1MI4", + "type": "small_airport", + "name": "Ramsy Farm Airport", + "latitude_deg": "45.83890151977539", + "longitude_deg": "-87.32240295410156", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Perronville", + "scheduled_service": "no", + "gps_code": "1MI4", + "local_code": "1MI4" + }, + { + "id": "8455", + "ident": "1MI5", + "type": "small_airport", + "name": "McKenzie's Landing Airport", + "latitude_deg": "42.6031", + "longitude_deg": "-83.859703", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Howell", + "scheduled_service": "no", + "gps_code": "1MI5", + "local_code": "1MI5" + }, + { + "id": "8456", + "ident": "1MI6", + "type": "small_airport", + "name": "Rosedale Airport", + "latitude_deg": "46.377799987799996", + "longitude_deg": "-84.3110961914", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Sault Ste Marie", + "scheduled_service": "no", + "gps_code": "1MI6", + "local_code": "1MI6" + }, + { + "id": "8457", + "ident": "1MI7", + "type": "closed", + "name": "Thompson Airport", + "latitude_deg": "44.3167", + "longitude_deg": "-84.066704", + "elevation_ft": "857", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Selkirk", + "scheduled_service": "no", + "keywords": "1MI7" + }, + { + "id": "8458", + "ident": "1MI8", + "type": "small_airport", + "name": "Vlachos Acres Airport", + "latitude_deg": "44.84669876098633", + "longitude_deg": "-83.63690185546875", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Hubbard", + "scheduled_service": "no", + "gps_code": "1MI8", + "local_code": "1MI8" + }, + { + "id": "8459", + "ident": "1MI9", + "type": "closed", + "name": "Southfork Airport", + "latitude_deg": "46.475511", + "longitude_deg": "-87.352409", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Marquette", + "scheduled_service": "no", + "gps_code": "1MI9", + "local_code": "1MI9" + }, + { + "id": "8460", + "ident": "1MN0", + "type": "small_airport", + "name": "Wetherbee Farm Airport", + "latitude_deg": "46.04359817504883", + "longitude_deg": "-96.54620361328125", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Tenney", + "scheduled_service": "no", + "gps_code": "1MN0", + "local_code": "1MN0" + }, + { + "id": "8461", + "ident": "1MN1", + "type": "closed", + "name": "Beyer Airport", + "latitude_deg": "45.9733", + "longitude_deg": "-96.564201", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Tenney", + "scheduled_service": "no", + "keywords": "1MN1" + }, + { + "id": "8462", + "ident": "1MN2", + "type": "small_airport", + "name": "Hay Acres Airport", + "latitude_deg": "45.938201904296875", + "longitude_deg": "-94.76069641113281", + "elevation_ft": "1430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Akiey", + "scheduled_service": "no", + "gps_code": "1MN2", + "local_code": "1MN2" + }, + { + "id": "8463", + "ident": "1MN3", + "type": "heliport", + "name": "Northern Itasca Health Care Center Heliport", + "latitude_deg": "47.74720001220703", + "longitude_deg": "-93.64630126953125", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Bigfork", + "scheduled_service": "no", + "gps_code": "1MN3", + "local_code": "1MN3" + }, + { + "id": "8464", + "ident": "1MN4", + "type": "closed", + "name": "Krueger Loon Lake Seaplane Base", + "latitude_deg": "46.622202", + "longitude_deg": "-95.836404", + "elevation_ft": "1370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Vergas", + "scheduled_service": "no", + "keywords": "1MN4" + }, + { + "id": "8465", + "ident": "1MN5", + "type": "small_airport", + "name": "Molnau Airpark", + "latitude_deg": "44.843874", + "longitude_deg": "-93.736076", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Waconia", + "scheduled_service": "no", + "gps_code": "1MN5", + "local_code": "1MN5" + }, + { + "id": "8466", + "ident": "1MN6", + "type": "heliport", + "name": "Cook Hospital Heliport", + "latitude_deg": "47.85300064086914", + "longitude_deg": "-92.6791000366211", + "elevation_ft": "1315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Cook", + "scheduled_service": "no", + "gps_code": "1MN6", + "local_code": "1MN6" + }, + { + "id": "8467", + "ident": "1MN7", + "type": "heliport", + "name": "Cuyuna Regional Medical Center Heliport", + "latitude_deg": "46.482200622558594", + "longitude_deg": "-93.943603515625", + "elevation_ft": "1255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Crosby", + "scheduled_service": "no", + "gps_code": "1MN7", + "local_code": "1MN7" + }, + { + "id": "8468", + "ident": "1MN8", + "type": "small_airport", + "name": "Sky Harbor Residential Airpark", + "latitude_deg": "44.52579879760742", + "longitude_deg": "-93.32689666748047", + "elevation_ft": "1111", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Webster", + "scheduled_service": "no", + "gps_code": "1MN8", + "local_code": "1MN8" + }, + { + "id": "8469", + "ident": "1MN9", + "type": "heliport", + "name": "Sanford Jackson Medical Center Heliport", + "latitude_deg": "43.624831", + "longitude_deg": "-95.003987", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "1MN9", + "local_code": "1MN9" + }, + { + "id": "8470", + "ident": "1MO1", + "type": "heliport", + "name": "St Joseph Hospital Heliport", + "latitude_deg": "38.56809997558594", + "longitude_deg": "-90.43399810791016", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kirkwood", + "scheduled_service": "no", + "gps_code": "1MO1", + "local_code": "1MO1" + }, + { + "id": "8471", + "ident": "1MO2", + "type": "closed", + "name": "Hart Airport", + "latitude_deg": "38.549055", + "longitude_deg": "-94.477487", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Drexel", + "scheduled_service": "no", + "keywords": "1MO2" + }, + { + "id": "8472", + "ident": "1MO3", + "type": "small_airport", + "name": "Lake Viking Airport", + "latitude_deg": "39.93339920043945", + "longitude_deg": "-94.07379913330078", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Gallatin", + "scheduled_service": "no", + "gps_code": "1MO3", + "local_code": "1MO3" + }, + { + "id": "8473", + "ident": "1MO4", + "type": "small_airport", + "name": "Longwood Mfg Corp Airport", + "latitude_deg": "39.891700744628906", + "longitude_deg": "-93.86409759521484", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Gallatin", + "scheduled_service": "no", + "gps_code": "1MO4", + "local_code": "1MO4" + }, + { + "id": "8474", + "ident": "1MO6", + "type": "small_airport", + "name": "Double S Ranch Airport", + "latitude_deg": "36.830141", + "longitude_deg": "-90.720677", + "elevation_ft": "737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Grandin", + "scheduled_service": "no", + "gps_code": "1MO6", + "local_code": "1MO6" + }, + { + "id": "8475", + "ident": "1MO7", + "type": "closed", + "name": "Hines Airport", + "latitude_deg": "40.364183", + "longitude_deg": "-91.973861", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Gorin", + "scheduled_service": "no", + "keywords": "1MO7" + }, + { + "id": "8476", + "ident": "1MO8", + "type": "small_airport", + "name": "Sherlock Field", + "latitude_deg": "38.25279998779297", + "longitude_deg": "-92.8030014038086", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Gravois Mills", + "scheduled_service": "no", + "gps_code": "1MO8", + "local_code": "1MO8" + }, + { + "id": "8477", + "ident": "1MO9", + "type": "small_airport", + "name": "Eagle's Point & Red Barn Village Airpark", + "latitude_deg": "37.47919845581055", + "longitude_deg": "-93.85160064697266", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Greenfield", + "scheduled_service": "no", + "gps_code": "1MO9", + "local_code": "1MO9" + }, + { + "id": "8478", + "ident": "1MS0", + "type": "small_airport", + "name": "Tapley Airport", + "latitude_deg": "33.59980010986328", + "longitude_deg": "-90.78119659423828", + "elevation_ft": "129", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Shaw", + "scheduled_service": "no", + "gps_code": "1MS0", + "local_code": "1MS0" + }, + { + "id": "8479", + "ident": "1MS1", + "type": "heliport", + "name": "Neshoba General Hospital Heliport", + "latitude_deg": "32.757279", + "longitude_deg": "-89.105745", + "elevation_ft": "388", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "1MS1", + "local_code": "1MS1" + }, + { + "id": "8480", + "ident": "1MS2", + "type": "small_airport", + "name": "Peterson Airport", + "latitude_deg": "32.94179916381836", + "longitude_deg": "-89.93060302734375", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Goodman", + "scheduled_service": "no", + "gps_code": "1MS2", + "local_code": "1MS2" + }, + { + "id": "8481", + "ident": "1MS3", + "type": "heliport", + "name": "Baptist Medical Center Attala Heliport", + "latitude_deg": "33.066799", + "longitude_deg": "-89.598501", + "elevation_ft": "455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Kosciusko", + "scheduled_service": "no", + "gps_code": "1MS3", + "local_code": "1MS3", + "keywords": "Montfort Jones Memorial Hospital" + }, + { + "id": "8482", + "ident": "1MS4", + "type": "heliport", + "name": "Methodist Medical Center Heliport", + "latitude_deg": "32.287899017333984", + "longitude_deg": "-90.2562026977539", + "elevation_ft": "366", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "1MS4", + "local_code": "1MS4" + }, + { + "id": "8483", + "ident": "1MS5", + "type": "heliport", + "name": "General Dan C Mills Emergency Heliport", + "latitude_deg": "34.888999938964844", + "longitude_deg": "-89.7029037475586", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Byhalia", + "scheduled_service": "no", + "gps_code": "1MS5", + "local_code": "1MS5" + }, + { + "id": "8484", + "ident": "1MS6", + "type": "small_airport", + "name": "Eagles Ridge Airport", + "latitude_deg": "34.797298", + "longitude_deg": "-89.913101", + "elevation_ft": "262", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Hernando", + "scheduled_service": "no", + "local_code": "MS9", + "keywords": "1MS6" + }, + { + "id": "8485", + "ident": "1MS7", + "type": "heliport", + "name": "Smith County General Hospital Heliport", + "latitude_deg": "31.99959945678711", + "longitude_deg": "-89.51950073242188", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Raleigh", + "scheduled_service": "no", + "gps_code": "1MS7", + "local_code": "1MS7" + }, + { + "id": "8486", + "ident": "1MS8", + "type": "small_airport", + "name": "Columbus Air Force Base Aux Field Airfield", + "latitude_deg": "32.9401016235", + "longitude_deg": "-88.5792007446", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Shuqualak", + "scheduled_service": "no", + "gps_code": "1MS8", + "local_code": "1MS8" + }, + { + "id": "8487", + "ident": "1MS9", + "type": "closed", + "name": "Piker-Too Airport", + "latitude_deg": "31.0118", + "longitude_deg": "-90.968201", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Centreville", + "scheduled_service": "no", + "keywords": "1MS9" + }, + { + "id": "8488", + "ident": "1MT0", + "type": "small_airport", + "name": "Nine Quarter Circle Ranch Airport", + "latitude_deg": "45.06740188598633", + "longitude_deg": "-111.2969970703125", + "elevation_ft": "6974", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Gallatin Gateway", + "scheduled_service": "no", + "gps_code": "1MT0", + "local_code": "1MT0" + }, + { + "id": "8489", + "ident": "1MT1", + "type": "heliport", + "name": "Krinitt Helicopters Heliport", + "latitude_deg": "45.774200439453125", + "longitude_deg": "-111.2030029296875", + "elevation_ft": "4474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Belgrade", + "scheduled_service": "no", + "gps_code": "1MT1", + "local_code": "1MT1" + }, + { + "id": "8490", + "ident": "1MT2", + "type": "small_airport", + "name": "Skyrider Ultralightport", + "latitude_deg": "45.94309997558594", + "longitude_deg": "-108.54900360107422", + "elevation_ft": "3540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Billings", + "scheduled_service": "no", + "gps_code": "1MT2", + "local_code": "1MT2" + }, + { + "id": "8491", + "ident": "1MT3", + "type": "small_airport", + "name": "Wood Strip", + "latitude_deg": "46.557668", + "longitude_deg": "-112.414399", + "elevation_ft": "5100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Elliston", + "scheduled_service": "no", + "gps_code": "1MT3", + "local_code": "1MT3" + }, + { + "id": "8492", + "ident": "1MT4", + "type": "small_airport", + "name": "Davis Airport", + "latitude_deg": "46.688499450683594", + "longitude_deg": "-111.87100219726562", + "elevation_ft": "3780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Helena", + "scheduled_service": "no", + "gps_code": "1MT4", + "local_code": "1MT4" + }, + { + "id": "8493", + "ident": "1MT5", + "type": "heliport", + "name": "Holy Rosary Heliport", + "latitude_deg": "46.39459991455078", + "longitude_deg": "-105.8290023803711", + "elevation_ft": "2372", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Miles City", + "scheduled_service": "no", + "gps_code": "1MT5", + "local_code": "1MT5" + }, + { + "id": "8494", + "ident": "1MT6", + "type": "small_airport", + "name": "Bobcat Field", + "latitude_deg": "46.35689926147461", + "longitude_deg": "-113.51000213623047", + "elevation_ft": "4824", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Philipsburg", + "scheduled_service": "no", + "gps_code": "1MT6", + "local_code": "1MT6" + }, + { + "id": "8495", + "ident": "1MT7", + "type": "small_airport", + "name": "Prill Field", + "latitude_deg": "47.42110061645508", + "longitude_deg": "-111.15899658203125", + "elevation_ft": "3420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Sand Coulee", + "scheduled_service": "no", + "gps_code": "1MT7", + "local_code": "1MT7" + }, + { + "id": "8496", + "ident": "1MT8", + "type": "heliport", + "name": "St James Healthcare Heliport", + "latitude_deg": "46.009027", + "longitude_deg": "-112.544371", + "elevation_ft": "5733", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Butte", + "scheduled_service": "no", + "gps_code": "1MT8", + "local_code": "1MT8" + }, + { + "id": "8497", + "ident": "1MT9", + "type": "small_airport", + "name": "Wilcox Airport", + "latitude_deg": "45.789217", + "longitude_deg": "-108.689266", + "elevation_ft": "3390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Billings", + "scheduled_service": "no", + "gps_code": "1MT9", + "local_code": "1MT9" + }, + { + "id": "8498", + "ident": "1MU0", + "type": "small_airport", + "name": "Medcalf Field", + "latitude_deg": "37.164311", + "longitude_deg": "-93.564878", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Republic", + "scheduled_service": "no", + "gps_code": "1MU0", + "local_code": "1MU0" + }, + { + "id": "8499", + "ident": "1MU1", + "type": "seaplane_base", + "name": "Lake Taney Como Seaplane Base", + "latitude_deg": "36.66669845581055", + "longitude_deg": "-93.154296875", + "elevation_ft": "716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Rockaway Beach", + "scheduled_service": "no", + "gps_code": "1MU1", + "local_code": "1MU1" + }, + { + "id": "8500", + "ident": "1MU2", + "type": "small_airport", + "name": "Smitty's Landing Airport", + "latitude_deg": "39.4473991394043", + "longitude_deg": "-94.66719818115234", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Ridgely", + "scheduled_service": "no", + "gps_code": "1MU2", + "local_code": "1MU2" + }, + { + "id": "8501", + "ident": "1MU3", + "type": "heliport", + "name": "Putnam County Memorial Hospital Heliport", + "latitude_deg": "40.48270034790039", + "longitude_deg": "-93.00589752197266", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Unionville", + "scheduled_service": "no", + "gps_code": "1MU3", + "local_code": "1MU3" + }, + { + "id": "8502", + "ident": "1MU4", + "type": "small_airport", + "name": "Short Air Airport", + "latitude_deg": "38.65169906616211", + "longitude_deg": "-93.77880096435547", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Warrensburg", + "scheduled_service": "no", + "gps_code": "1MU4", + "local_code": "1MU4" + }, + { + "id": "8503", + "ident": "1MU5", + "type": "closed", + "name": "Grace G Shepard Memorial Heliport", + "latitude_deg": "37.5242", + "longitude_deg": "-93.143204", + "elevation_ft": "1152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Buffalo", + "scheduled_service": "no", + "keywords": "1MU5" + }, + { + "id": "8504", + "ident": "1MU6", + "type": "closed", + "name": "Simerly Airport", + "latitude_deg": "40.110802", + "longitude_deg": "-94.968903", + "elevation_ft": "971", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Fillmore", + "scheduled_service": "no", + "keywords": "1MU6" + }, + { + "id": "8505", + "ident": "1MU7", + "type": "small_airport", + "name": "Mooseberry Airport", + "latitude_deg": "37.465301513671875", + "longitude_deg": "-89.61199951171875", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "1MU7", + "local_code": "1MU7" + }, + { + "id": "8506", + "ident": "1MU8", + "type": "small_airport", + "name": "Church's Landing Airport", + "latitude_deg": "39.55419921875", + "longitude_deg": "-94.99859619140625", + "elevation_ft": "826", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Rushville", + "scheduled_service": "no", + "gps_code": "1MU8", + "local_code": "1MU8" + }, + { + "id": "8507", + "ident": "1MU9", + "type": "heliport", + "name": "Nielsens Medical Evac Heliport", + "latitude_deg": "38.935298919677734", + "longitude_deg": "-90.47650146484375", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Saint Charles", + "scheduled_service": "no", + "gps_code": "1MU9", + "local_code": "1MU9" + }, + { + "id": "8508", + "ident": "1MY1", + "type": "small_airport", + "name": "Carlson Agricultural Airport", + "latitude_deg": "45.98529815673828", + "longitude_deg": "-96.19439697265625", + "elevation_ft": "1033", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Wendell", + "scheduled_service": "no", + "gps_code": "1MY1", + "local_code": "1MY1" + }, + { + "id": "8509", + "ident": "1N2", + "type": "small_airport", + "name": "Spadaro Airport", + "latitude_deg": "40.82789993286133", + "longitude_deg": "-72.74870300292969", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "East Moriches", + "scheduled_service": "no", + "gps_code": "1N2", + "local_code": "1N2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Spadaro_Airport" + }, + { + "id": "8510", + "ident": "1N3", + "type": "small_airport", + "name": "Albert Airport", + "latitude_deg": "40.971500396728516", + "longitude_deg": "-78.2428970336914", + "elevation_ft": "1784", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philipsburg", + "scheduled_service": "no", + "gps_code": "1N3", + "local_code": "1N3" + }, + { + "id": "8511", + "ident": "1N5", + "type": "small_airport", + "name": "Bennett Airport", + "latitude_deg": "38.411097", + "longitude_deg": "-75.614691", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Salisbury", + "scheduled_service": "no", + "local_code": "1N5" + }, + { + "id": "8512", + "ident": "1NA0", + "type": "small_airport", + "name": "Bohn Airstrip", + "latitude_deg": "48.732200622558594", + "longitude_deg": "-97.8895034790039", + "elevation_ft": "1142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Mountain", + "scheduled_service": "no", + "gps_code": "1NA0", + "local_code": "1NA0" + }, + { + "id": "8513", + "ident": "1NA5", + "type": "small_airport", + "name": "Gienger/Box Bar Ranch Airport", + "latitude_deg": "46.625", + "longitude_deg": "-99.45040130615234", + "elevation_ft": "1950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Streeter", + "scheduled_service": "no", + "gps_code": "1NA5", + "local_code": "1NA5" + }, + { + "id": "8514", + "ident": "1NA8", + "type": "small_airport", + "name": "Preszler Airstrip", + "latitude_deg": "46.69049835205078", + "longitude_deg": "-100.09500122070312", + "elevation_ft": "1795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Braddock", + "scheduled_service": "no", + "gps_code": "1NA8", + "local_code": "1NA8" + }, + { + "id": "8515", + "ident": "1NA9", + "type": "small_airport", + "name": "Myran Airstrip", + "latitude_deg": "47.03329849243164", + "longitude_deg": "-102.49600219726562", + "elevation_ft": "2120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Taylor", + "scheduled_service": "no", + "gps_code": "1NA9", + "local_code": "1NA9" + }, + { + "id": "8516", + "ident": "1NC0", + "type": "small_airport", + "name": "Delk's Airport", + "latitude_deg": "35.722406", + "longitude_deg": "-79.934889", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Asheboro", + "scheduled_service": "no", + "gps_code": "1NC0", + "local_code": "1NC0" + }, + { + "id": "8517", + "ident": "1NC1", + "type": "small_airport", + "name": "Ron's Ultralight Field", + "latitude_deg": "35.8119010925293", + "longitude_deg": "-79.23860168457031", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Pittsboro", + "scheduled_service": "no", + "gps_code": "1NC1", + "local_code": "1NC1" + }, + { + "id": "8518", + "ident": "1NC2", + "type": "small_airport", + "name": "Atwell Airport", + "latitude_deg": "35.654701232910156", + "longitude_deg": "-80.78939819335938", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Mooresville", + "scheduled_service": "no", + "gps_code": "1NC2", + "local_code": "1NC2" + }, + { + "id": "8519", + "ident": "1NC3", + "type": "small_airport", + "name": "Fletcher's Airport", + "latitude_deg": "36.18069839477539", + "longitude_deg": "-76.14910125732422", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Elizabeth City", + "scheduled_service": "no", + "gps_code": "1NC3", + "local_code": "1NC3" + }, + { + "id": "8520", + "ident": "1NC4", + "type": "small_airport", + "name": "Bell Strip", + "latitude_deg": "34.995399475097656", + "longitude_deg": "-77.25769805908203", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Pollocksville", + "scheduled_service": "no", + "gps_code": "1NC4", + "local_code": "1NC4" + }, + { + "id": "8521", + "ident": "1NC5", + "type": "small_airport", + "name": "Riley Field", + "latitude_deg": "35.93320083618164", + "longitude_deg": "-78.34860229492188", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Bunn", + "scheduled_service": "no", + "gps_code": "1NC5", + "local_code": "1NC5" + }, + { + "id": "8522", + "ident": "1NC6", + "type": "small_airport", + "name": "Arant Airport", + "latitude_deg": "35.055999755859375", + "longitude_deg": "-80.45010375976562", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Wingate", + "scheduled_service": "no", + "gps_code": "1NC6", + "local_code": "1NC6" + }, + { + "id": "8524", + "ident": "1NC8", + "type": "small_airport", + "name": "Lonesome Field", + "latitude_deg": "35.5158", + "longitude_deg": "-80.258102", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Gold Hill", + "scheduled_service": "no", + "gps_code": "1NC8", + "local_code": "1NC8", + "keywords": "Richfield" + }, + { + "id": "8525", + "ident": "1NC9", + "type": "small_airport", + "name": "Northbrook International Ultraport Ultralightport", + "latitude_deg": "35.450497", + "longitude_deg": "-81.426888", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Cherryville", + "scheduled_service": "no", + "gps_code": "1NC9", + "local_code": "1NC9" + }, + { + "id": "8526", + "ident": "1ND3", + "type": "small_airport", + "name": "Andvik Airport", + "latitude_deg": "46.647701263427734", + "longitude_deg": "-97.13059997558594", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Kindred", + "scheduled_service": "no", + "gps_code": "1ND3", + "local_code": "1ND3" + }, + { + "id": "8527", + "ident": "1ND4", + "type": "small_airport", + "name": "Walkinshaw Airport", + "latitude_deg": "47.05830001831055", + "longitude_deg": "-97.01699829101562", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Argusville", + "scheduled_service": "no", + "gps_code": "1ND4", + "local_code": "1ND4" + }, + { + "id": "8528", + "ident": "1ND7", + "type": "small_airport", + "name": "Dittmer Airport", + "latitude_deg": "46.8291015625", + "longitude_deg": "-97.26699829101562", + "elevation_ft": "943", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Lynchburg", + "scheduled_service": "no", + "gps_code": "1ND7", + "local_code": "1ND7" + }, + { + "id": "8529", + "ident": "1NE0", + "type": "small_airport", + "name": "Higgins Bros Airport", + "latitude_deg": "42.31669998168945", + "longitude_deg": "-100.41699981689453", + "elevation_ft": "2860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Brownlee", + "scheduled_service": "no", + "gps_code": "1NE0", + "local_code": "1NE0" + }, + { + "id": "8530", + "ident": "1NE1", + "type": "small_airport", + "name": "Paul Ridder Ranch Airport", + "latitude_deg": "41.28329849", + "longitude_deg": "-100.0500031", + "elevation_ft": "2780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Callaway", + "scheduled_service": "no", + "gps_code": "1NE1", + "local_code": "1NE1" + }, + { + "id": "8531", + "ident": "1NE2", + "type": "small_airport", + "name": "Witthuhn Airport", + "latitude_deg": "41.32500076293945", + "longitude_deg": "-99.91709899902344", + "elevation_ft": "2700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Callaway", + "scheduled_service": "no", + "gps_code": "1NE2", + "local_code": "1NE2" + }, + { + "id": "8532", + "ident": "1NE5", + "type": "small_airport", + "name": "Sibbernsen Airport", + "latitude_deg": "41.40610122680664", + "longitude_deg": "-96.28559875488281", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "1NE5", + "local_code": "1NE5" + }, + { + "id": "8533", + "ident": "1NE6", + "type": "small_airport", + "name": "Miller Airstrip", + "latitude_deg": "41.34080123901367", + "longitude_deg": "-102.77799987792969", + "elevation_ft": "4100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Dalton", + "scheduled_service": "no", + "gps_code": "1NE6", + "local_code": "1NE6" + }, + { + "id": "8534", + "ident": "1NJ0", + "type": "heliport", + "name": "Jersey Turnpike Heliport", + "latitude_deg": "40.47679901123047", + "longitude_deg": "-74.40879821777344", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "New Brunswick", + "scheduled_service": "no", + "gps_code": "1NJ0", + "local_code": "1NJ0" + }, + { + "id": "8535", + "ident": "1NJ1", + "type": "heliport", + "name": "Rutger's Helistop Sec. A & B Heliport", + "latitude_deg": "40.47930145263672", + "longitude_deg": "-74.43460083007812", + "elevation_ft": "116", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "New Brunswick", + "scheduled_service": "no", + "gps_code": "1NJ1", + "local_code": "1NJ1" + }, + { + "id": "8536", + "ident": "1NJ2", + "type": "heliport", + "name": "New Brunswick Gas Distn Heliport", + "latitude_deg": "40.4739990234375", + "longitude_deg": "-74.48400115966797", + "elevation_ft": "114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "New Brunswick", + "scheduled_service": "no", + "gps_code": "1NJ2", + "local_code": "1NJ2" + }, + { + "id": "8537", + "ident": "1NJ3", + "type": "closed", + "name": "Sea Air Atlantic City Seaplane Base", + "latitude_deg": "39.390499", + "longitude_deg": "-74.429001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Atlantic City", + "scheduled_service": "no", + "keywords": "1NJ3" + }, + { + "id": "8538", + "ident": "1NJ4", + "type": "heliport", + "name": "Rutgers Helistop Nr 1 Heliport", + "latitude_deg": "40.51679992675781", + "longitude_deg": "-74.46630096435547", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "New Brunswick", + "scheduled_service": "no", + "gps_code": "1NJ4", + "local_code": "1NJ4" + }, + { + "id": "8539", + "ident": "1NJ5", + "type": "heliport", + "name": "Milana Heliport", + "latitude_deg": "40.95199966430664", + "longitude_deg": "-75.91850280761719", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Blairstown", + "scheduled_service": "no", + "gps_code": "1NJ5", + "local_code": "1NJ5" + }, + { + "id": "8540", + "ident": "1NJ6", + "type": "heliport", + "name": "Idylease Helistop", + "latitude_deg": "41.054483", + "longitude_deg": "-74.431959", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Newfoundland", + "scheduled_service": "no", + "gps_code": "1NJ6", + "local_code": "1NJ6" + }, + { + "id": "8541", + "ident": "1NJ7", + "type": "heliport", + "name": "Skytop Farms Heliport", + "latitude_deg": "40.94729995727539", + "longitude_deg": "-74.35430145263672", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Towaco", + "scheduled_service": "no", + "gps_code": "1NJ7", + "local_code": "1NJ7" + }, + { + "id": "8542", + "ident": "1NJ8", + "type": "heliport", + "name": "Scardo's Heliport", + "latitude_deg": "41.03340148925781", + "longitude_deg": "-74.23290252685547", + "elevation_ft": "344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Oakland", + "scheduled_service": "no", + "gps_code": "1NJ8", + "local_code": "1NJ8" + }, + { + "id": "8543", + "ident": "1NJ9", + "type": "heliport", + "name": "Air Tractor Heliport", + "latitude_deg": "41.29119873046875", + "longitude_deg": "-74.5510025024414", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Sussex", + "scheduled_service": "no", + "gps_code": "1NJ9", + "local_code": "1NJ9" + }, + { + "id": "8544", + "ident": "1NK0", + "type": "small_airport", + "name": "Roxbury Runway Airport", + "latitude_deg": "42.297298431396484", + "longitude_deg": "-74.54820251464844", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Roxbury", + "scheduled_service": "no", + "gps_code": "1NK0", + "local_code": "1NK0" + }, + { + "id": "8545", + "ident": "1NK1", + "type": "heliport", + "name": "Stone Ridge Heliport", + "latitude_deg": "41.89059829711914", + "longitude_deg": "-74.152099609375", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Stone Ridge", + "scheduled_service": "no", + "gps_code": "1NK1", + "local_code": "1NK1" + }, + { + "id": "8546", + "ident": "1NK2", + "type": "closed", + "name": "Oneida City Hospital Heliport", + "latitude_deg": "43.077413", + "longitude_deg": "-75.654994", + "elevation_ft": "523", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Oneida", + "scheduled_service": "no", + "keywords": "1NK2" + }, + { + "id": "8547", + "ident": "1NK3", + "type": "heliport", + "name": "Troy Armory Heliport", + "latitude_deg": "42.69060134887695", + "longitude_deg": "-73.70369720458984", + "elevation_ft": "188", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "1NK3", + "local_code": "1NK3" + }, + { + "id": "8548", + "ident": "1NK4", + "type": "heliport", + "name": "Wagstaff Heliport", + "latitude_deg": "40.686798095703125", + "longitude_deg": "-73.3042984008789", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "West Islip", + "scheduled_service": "no", + "gps_code": "1NK4", + "local_code": "1NK4" + }, + { + "id": "8549", + "ident": "1NK5", + "type": "closed", + "name": "Westtown Airport", + "latitude_deg": "41.3615", + "longitude_deg": "-74.5243", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Westtown", + "scheduled_service": "no", + "keywords": "1NK5" + }, + { + "id": "8550", + "ident": "1NK6", + "type": "small_airport", + "name": "Catalano Airfield", + "latitude_deg": "44.423807", + "longitude_deg": "-73.758777", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Wilmington", + "scheduled_service": "no", + "gps_code": "1NK6", + "local_code": "1NK6" + }, + { + "id": "8551", + "ident": "1NK7", + "type": "small_airport", + "name": "Boonville Inc Airport", + "latitude_deg": "43.46670150756836", + "longitude_deg": "-75.24960327148438", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Boonville", + "scheduled_service": "no", + "gps_code": "1NK7", + "local_code": "1NK7" + }, + { + "id": "8552", + "ident": "1NK8", + "type": "small_airport", + "name": "Chenango Bridge Airport", + "latitude_deg": "42.19169998168945", + "longitude_deg": "-75.84130096435547", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Binghamton", + "scheduled_service": "no", + "gps_code": "1NK8", + "local_code": "1NK8" + }, + { + "id": "8553", + "ident": "1NK9", + "type": "heliport", + "name": "Huntington Emergency Helistop", + "latitude_deg": "40.88399887084961", + "longitude_deg": "-73.42289733886719", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Huntington", + "scheduled_service": "no", + "gps_code": "1NK9", + "local_code": "1NK9" + }, + { + "id": "8554", + "ident": "1NM0", + "type": "small_airport", + "name": "Me-Own Airport", + "latitude_deg": "33.21200180053711", + "longitude_deg": "-108.0260009765625", + "elevation_ft": "7554", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Silver City", + "scheduled_service": "no", + "gps_code": "1NM0", + "local_code": "1NM0" + }, + { + "id": "347060", + "ident": "1NR7", + "type": "small_airport", + "name": "Boyd Field", + "latitude_deg": "36.274059", + "longitude_deg": "-78.46862", + "elevation_ft": "336", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Henderson", + "scheduled_service": "no", + "gps_code": "1NR7", + "local_code": "1NR7" + }, + { + "id": "8555", + "ident": "1NV1", + "type": "small_airport", + "name": "Fallon Southwest Airpark", + "latitude_deg": "39.41529846191406", + "longitude_deg": "-118.83699798583984", + "elevation_ft": "3950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Fallon", + "scheduled_service": "no", + "gps_code": "1NV1", + "local_code": "1NV1" + }, + { + "id": "8556", + "ident": "1NV2", + "type": "heliport", + "name": "Lake Las Vegas Heliport", + "latitude_deg": "36.12480163574219", + "longitude_deg": "-114.90899658203125", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Henderson", + "scheduled_service": "no", + "gps_code": "1NV2", + "local_code": "1NV2" + }, + { + "id": "42769", + "ident": "1NY0", + "type": "heliport", + "name": "Woodlawn Beach State Park Heliport", + "latitude_deg": "42.7881126404", + "longitude_deg": "-78.8494796753", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hamburg", + "scheduled_service": "no", + "gps_code": "1NY0", + "local_code": "1NY0" + }, + { + "id": "325870", + "ident": "1NY1", + "type": "heliport", + "name": "Seatuck Cove Heliport", + "latitude_deg": "40.816772", + "longitude_deg": "-72.730781", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Eastport", + "scheduled_service": "no", + "gps_code": "1NY1", + "local_code": "1NY1" + }, + { + "id": "8557", + "ident": "1NY2", + "type": "closed", + "name": "Kidder Field", + "latitude_deg": "43.6167", + "longitude_deg": "-76.162697", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Pulaski", + "scheduled_service": "no", + "keywords": "1NY2" + }, + { + "id": "8558", + "ident": "1NY3", + "type": "small_airport", + "name": "Richland Airpark", + "latitude_deg": "43.5667", + "longitude_deg": "-76.032997", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Richland", + "scheduled_service": "no", + "gps_code": "1NY3", + "local_code": "1NY3" + }, + { + "id": "8559", + "ident": "1NY4", + "type": "small_airport", + "name": "High Banks Farm Landing Area Airport", + "latitude_deg": "44.61750030517578", + "longitude_deg": "-73.91100311279297", + "elevation_ft": "1520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Saranac", + "scheduled_service": "no", + "gps_code": "1NY4", + "local_code": "1NY4" + }, + { + "id": "8560", + "ident": "1NY5", + "type": "closed", + "name": "Sherman Field", + "latitude_deg": "41.639", + "longitude_deg": "-73.742897", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Poughkeepsie", + "scheduled_service": "no", + "keywords": "1NY5" + }, + { + "id": "8561", + "ident": "1NY6", + "type": "heliport", + "name": "Tgp-249 Heliport", + "latitude_deg": "42.75400161743164", + "longitude_deg": "-74.40070343017578", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Carlisle", + "scheduled_service": "no", + "gps_code": "1NY6", + "local_code": "1NY6" + }, + { + "id": "8562", + "ident": "1NY7", + "type": "closed", + "name": "Minard Farms Airport", + "latitude_deg": "41.708401", + "longitude_deg": "-74.061798", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Clinton Dale", + "scheduled_service": "no", + "keywords": "1NY7" + }, + { + "id": "8563", + "ident": "1NY8", + "type": "small_airport", + "name": "Killian Airfield", + "latitude_deg": "42.80009841918945", + "longitude_deg": "-76.58300018310547", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Scipio", + "scheduled_service": "no", + "gps_code": "1NY8", + "local_code": "1NY8" + }, + { + "id": "8564", + "ident": "1NY9", + "type": "closed", + "name": "Caughdenoy Airport", + "latitude_deg": "43.2659", + "longitude_deg": "-76.188004", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Caughdenoy", + "scheduled_service": "no", + "keywords": "1NY9" + }, + { + "id": "8565", + "ident": "1O0", + "type": "seaplane_base", + "name": "Lake Woahink Seaplane Base", + "latitude_deg": "43.90420150756836", + "longitude_deg": "-124.11499786376953", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Florence", + "scheduled_service": "no", + "gps_code": "1O0", + "local_code": "1O0", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_Woahink_Seaplane_Base" + }, + { + "id": "8566", + "ident": "1O6", + "type": "small_airport", + "name": "Dunsmuir Muni-Mott Airport", + "latitude_deg": "41.263199", + "longitude_deg": "-122.272003", + "elevation_ft": "3258", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Dunsmuir", + "scheduled_service": "no", + "gps_code": "KMHS", + "iata_code": "MHS", + "local_code": "1O6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dunsmuir_Municipal-Mott_Airport" + }, + { + "id": "8567", + "ident": "1OA1", + "type": "small_airport", + "name": "Bashore Airport", + "latitude_deg": "40.0458984375", + "longitude_deg": "-84.33439636230469", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Pleasant Hill", + "scheduled_service": "no", + "gps_code": "1OA1", + "local_code": "1OA1" + }, + { + "id": "8568", + "ident": "1OA2", + "type": "small_airport", + "name": "Mole Airport", + "latitude_deg": "41.261206", + "longitude_deg": "-81.990906", + "elevation_ft": "854", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Grafton", + "scheduled_service": "no", + "gps_code": "1OA2", + "local_code": "1OA2" + }, + { + "id": "8569", + "ident": "1OA3", + "type": "small_airport", + "name": "Barnett Airpark", + "latitude_deg": "39.33340072631836", + "longitude_deg": "-83.85549926757812", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Blanchester", + "scheduled_service": "no", + "gps_code": "1OA3", + "local_code": "1OA3" + }, + { + "id": "8570", + "ident": "1OA4", + "type": "small_airport", + "name": "Kepes Flying Field", + "latitude_deg": "39.92359924316406", + "longitude_deg": "-83.66169738769531", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "1OA4", + "local_code": "1OA4" + }, + { + "id": "8571", + "ident": "1OA5", + "type": "small_airport", + "name": "Double J Airport", + "latitude_deg": "39.21950149536133", + "longitude_deg": "-83.95269775390625", + "elevation_ft": "972", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "1OA5", + "local_code": "1OA5" + }, + { + "id": "8572", + "ident": "1OA6", + "type": "small_airport", + "name": "Frith Airport", + "latitude_deg": "39.33620071411133", + "longitude_deg": "-84.0457992553711", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Morrow", + "scheduled_service": "no", + "gps_code": "1OA6", + "local_code": "1OA6" + }, + { + "id": "8573", + "ident": "1OA7", + "type": "small_airport", + "name": "Yoder Airport", + "latitude_deg": "40.84170150756836", + "longitude_deg": "-81.24150085449219", + "elevation_ft": "1149", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "1OA7", + "local_code": "1OA7" + }, + { + "id": "8574", + "ident": "1OA8", + "type": "closed", + "name": "Erdy Farm Airport", + "latitude_deg": "40.345923", + "longitude_deg": "-82.904935", + "elevation_ft": "981", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Kilbourne", + "scheduled_service": "no", + "keywords": "1OA8" + }, + { + "id": "8575", + "ident": "1OH0", + "type": "heliport", + "name": "Clinton Memorial Hospital Heliport", + "latitude_deg": "39.44419860839844", + "longitude_deg": "-83.84020233154297", + "elevation_ft": "1022", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wilmington", + "scheduled_service": "no", + "gps_code": "1OH0", + "local_code": "1OH0" + }, + { + "id": "8576", + "ident": "1OH1", + "type": "small_airport", + "name": "S and S Field", + "latitude_deg": "40.30139923095703", + "longitude_deg": "-83.9760971069336", + "elevation_ft": "1057", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Quincy", + "scheduled_service": "no", + "gps_code": "1OH1", + "local_code": "1OH1" + }, + { + "id": "8577", + "ident": "1OH2", + "type": "small_airport", + "name": "Dougherty Airport", + "latitude_deg": "41.24399948120117", + "longitude_deg": "-82.86630249023438", + "elevation_ft": "807", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bellevue", + "scheduled_service": "no", + "gps_code": "1OH2", + "local_code": "1OH2" + }, + { + "id": "8578", + "ident": "1OH3", + "type": "small_airport", + "name": "Mather Field", + "latitude_deg": "41.389198303222656", + "longitude_deg": "-82.76270294189453", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Castalia", + "scheduled_service": "no", + "gps_code": "1OH3", + "local_code": "1OH3" + }, + { + "id": "8579", + "ident": "1OH4", + "type": "small_airport", + "name": "Fortman Airport", + "latitude_deg": "40.555301666259766", + "longitude_deg": "-84.3865966796875", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "St Marys", + "scheduled_service": "no", + "gps_code": "1OH4", + "local_code": "1OH4" + }, + { + "id": "8580", + "ident": "1OH5", + "type": "closed", + "name": "Minit-Men Inc Heliport", + "latitude_deg": "39.997299", + "longitude_deg": "-83.085197", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "San Marghareta", + "scheduled_service": "no", + "keywords": "1OH5" + }, + { + "id": "8581", + "ident": "1OH6", + "type": "heliport", + "name": "Odot Heliport", + "latitude_deg": "40.29759979248047", + "longitude_deg": "-84.16339874267578", + "elevation_ft": "1026", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Sidney", + "scheduled_service": "no", + "gps_code": "1OH6", + "local_code": "1OH6" + }, + { + "id": "8582", + "ident": "1OH7", + "type": "closed", + "name": "Derry Landing Strip", + "latitude_deg": "39.993999", + "longitude_deg": "-81.863701", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Sonora", + "scheduled_service": "no", + "keywords": "1OH7" + }, + { + "id": "8583", + "ident": "1OH8", + "type": "small_airport", + "name": "Lisbon Airfield", + "latitude_deg": "39.86669921875", + "longitude_deg": "-83.63330078125", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "South Charleston", + "scheduled_service": "no", + "gps_code": "1OH8", + "local_code": "1OH8" + }, + { + "id": "8584", + "ident": "1OH9", + "type": "small_airport", + "name": "Lewis Airport", + "latitude_deg": "38.93510055541992", + "longitude_deg": "-83.39939880371094", + "elevation_ft": "862", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Peebles", + "scheduled_service": "no", + "gps_code": "1OH9", + "local_code": "1OH9" + }, + { + "id": "8585", + "ident": "1OI0", + "type": "heliport", + "name": "Manairco Heliport", + "latitude_deg": "40.8047981262207", + "longitude_deg": "-82.51129913330078", + "elevation_ft": "1265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mansfield", + "scheduled_service": "no", + "gps_code": "1OI0", + "local_code": "1OI0" + }, + { + "id": "8586", + "ident": "1OI1", + "type": "closed", + "name": "Pauls Airport", + "latitude_deg": "41.428398", + "longitude_deg": "-81.064003", + "elevation_ft": "1191", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Middlefield", + "scheduled_service": "no", + "keywords": "1OI1" + }, + { + "id": "8587", + "ident": "1OI4", + "type": "heliport", + "name": "Som Jackson Heliport", + "latitude_deg": "41.44089889526367", + "longitude_deg": "-81.44319915771484", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Moreland Hills", + "scheduled_service": "no", + "gps_code": "1OI4", + "local_code": "1OI4" + }, + { + "id": "8588", + "ident": "1OI6", + "type": "small_airport", + "name": "Stone Airport", + "latitude_deg": "39.77009963989258", + "longitude_deg": "-84.4166030883789", + "elevation_ft": "978", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "New Lebanon", + "scheduled_service": "no", + "gps_code": "1OI6", + "local_code": "1OI6" + }, + { + "id": "8589", + "ident": "1OI7", + "type": "closed", + "name": "Knight Airport", + "latitude_deg": "41.159077", + "longitude_deg": "-82.569594", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Norwalk", + "scheduled_service": "no", + "keywords": "1OI7" + }, + { + "id": "8590", + "ident": "1OI9", + "type": "small_airport", + "name": "Mc Colloch's Airport", + "latitude_deg": "40.177299499499995", + "longitude_deg": "-84.29440307620001", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Piqua", + "scheduled_service": "no", + "gps_code": "1OI9", + "local_code": "1OI9" + }, + { + "id": "8591", + "ident": "1OK0", + "type": "small_airport", + "name": "Neversweat Airport", + "latitude_deg": "35.894284", + "longitude_deg": "-96.279826", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Bristow", + "scheduled_service": "no", + "gps_code": "1OK0", + "local_code": "1OK0", + "keywords": "Duncan" + }, + { + "id": "8592", + "ident": "1OK1", + "type": "small_airport", + "name": "Dave's Place Airport", + "latitude_deg": "35.82500076293945", + "longitude_deg": "-97.80590057373047", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Kingfisher", + "scheduled_service": "no", + "gps_code": "1OK1", + "local_code": "1OK1" + }, + { + "id": "8593", + "ident": "1OK2", + "type": "closed", + "name": "Wyatt Airport", + "latitude_deg": "35.098701", + "longitude_deg": "-97.469803", + "elevation_ft": "1163", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Goldsby", + "scheduled_service": "no", + "keywords": "1OK2" + }, + { + "id": "8594", + "ident": "1OK3", + "type": "small_airport", + "name": "Wolfe Field Airport", + "latitude_deg": "34.5760993958", + "longitude_deg": "-97.8141021729", + "elevation_ft": "1194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Bray", + "scheduled_service": "no", + "gps_code": "1OK3", + "local_code": "1OK3" + }, + { + "id": "8595", + "ident": "1OK4", + "type": "heliport", + "name": "McCurtain Memorial Hospital Heliport", + "latitude_deg": "33.883319", + "longitude_deg": "-94.810602", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Idabel", + "scheduled_service": "no", + "gps_code": "1OK4", + "local_code": "1OK4" + }, + { + "id": "8596", + "ident": "1OK5", + "type": "small_airport", + "name": "Hohman Airport", + "latitude_deg": "34.982941", + "longitude_deg": "-99.228816", + "elevation_ft": "1563", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lone Wolf", + "scheduled_service": "no", + "gps_code": "1OK5", + "local_code": "1OK5" + }, + { + "id": "8597", + "ident": "1OK6", + "type": "small_airport", + "name": "HSH Airstrip", + "latitude_deg": "35.721944", + "longitude_deg": "-97.204722", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Luther", + "scheduled_service": "no", + "gps_code": "5OK9", + "local_code": "5OK9", + "keywords": "1OK6, Stamper Ranch" + }, + { + "id": "8598", + "ident": "1OK7", + "type": "small_airport", + "name": "Grimes Airport", + "latitude_deg": "34.80009841918945", + "longitude_deg": "-97.4822006225586", + "elevation_ft": "1035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Maysville", + "scheduled_service": "no", + "gps_code": "1OK7", + "local_code": "1OK7" + }, + { + "id": "8599", + "ident": "1OK8", + "type": "small_airport", + "name": "5B Ranch Airport", + "latitude_deg": "35.729801177978516", + "longitude_deg": "-97.54139709472656", + "elevation_ft": "1085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Edmond", + "scheduled_service": "no", + "gps_code": "1OK8", + "local_code": "1OK8" + }, + { + "id": "8600", + "ident": "1OK9", + "type": "small_airport", + "name": "Hankins Airport", + "latitude_deg": "33.975101470947266", + "longitude_deg": "-97.08920288085938", + "elevation_ft": "843", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Marietta", + "scheduled_service": "no", + "gps_code": "1OK9", + "local_code": "1OK9" + }, + { + "id": "8601", + "ident": "1OL2", + "type": "small_airport", + "name": "Steciak Strip", + "latitude_deg": "35.48899841308594", + "longitude_deg": "-97.19200134277344", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Harrah", + "scheduled_service": "no", + "gps_code": "1OL2", + "local_code": "1OL2" + }, + { + "id": "8602", + "ident": "1OR0", + "type": "small_airport", + "name": "Sunnyhill Airport", + "latitude_deg": "43.48320007324219", + "longitude_deg": "-124.2030029296875", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "North Bend", + "scheduled_service": "no", + "gps_code": "1OR0", + "local_code": "1OR0" + }, + { + "id": "8603", + "ident": "1OR1", + "type": "heliport", + "name": "Chehalem Mountain Heliport", + "latitude_deg": "45.35540008544922", + "longitude_deg": "-122.94599914550781", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Newberg", + "scheduled_service": "no", + "gps_code": "1OR1", + "local_code": "1OR1" + }, + { + "id": "8604", + "ident": "1OR2", + "type": "closed", + "name": "Menasha Pad", + "latitude_deg": "43.41008", + "longitude_deg": "-124.220103", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "North Bend", + "scheduled_service": "no", + "keywords": "1OR2" + }, + { + "id": "8605", + "ident": "1OR3", + "type": "small_airport", + "name": "Sunset Air Strip", + "latitude_deg": "45.59149932861328", + "longitude_deg": "-123.01000213623047", + "elevation_ft": "207", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "North Plains", + "scheduled_service": "no", + "gps_code": "1OR3", + "local_code": "1OR3" + }, + { + "id": "8606", + "ident": "1OR4", + "type": "small_airport", + "name": "North Plains Gliderport", + "latitude_deg": "45.604000091552734", + "longitude_deg": "-123.0250015258789", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "North Plains", + "scheduled_service": "no", + "gps_code": "1OR4", + "local_code": "1OR4" + }, + { + "id": "8607", + "ident": "1OR5", + "type": "closed", + "name": "Reed Airport", + "latitude_deg": "45.4874", + "longitude_deg": "-120.225998", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Olex", + "scheduled_service": "no", + "keywords": "1OR5" + }, + { + "id": "8608", + "ident": "1OR6", + "type": "small_airport", + "name": "Clackamas Heights Airport", + "latitude_deg": "45.37139892578125", + "longitude_deg": "-122.55400085449219", + "elevation_ft": "545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Oregon City", + "scheduled_service": "no", + "gps_code": "1OR6", + "local_code": "1OR6" + }, + { + "id": "8609", + "ident": "1OR7", + "type": "small_airport", + "name": "Skyhill Airport", + "latitude_deg": "45.287899017333984", + "longitude_deg": "-122.45600128173828", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Oregon City", + "scheduled_service": "no", + "gps_code": "1OR7", + "local_code": "1OR7" + }, + { + "id": "8610", + "ident": "1OR8", + "type": "heliport", + "name": "Clackamas County Redsoils Heliport", + "latitude_deg": "45.334800720214844", + "longitude_deg": "-122.59700012207031", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Oregon City", + "scheduled_service": "no", + "gps_code": "1OR8", + "local_code": "1OR8" + }, + { + "id": "8611", + "ident": "1OR9", + "type": "heliport", + "name": "Willamette Falls Community Hospital Heliport", + "latitude_deg": "45.357601165771484", + "longitude_deg": "-122.58599853515625", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Oregon City", + "scheduled_service": "no", + "gps_code": "1OR9", + "local_code": "1OR9" + }, + { + "id": "8612", + "ident": "1P1", + "type": "small_airport", + "name": "Plymouth Municipal Airport", + "latitude_deg": "43.77920150756836", + "longitude_deg": "-71.75370025634766", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "1P1", + "local_code": "1P1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Plymouth_Municipal_Airport_(New_Hampshire)" + }, + { + "id": "8613", + "ident": "1PA0", + "type": "small_airport", + "name": "Hinaman Acres Airport", + "latitude_deg": "41.133399963378906", + "longitude_deg": "-77.19969940185547", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Jersey Shore", + "scheduled_service": "no", + "gps_code": "1PA0", + "local_code": "1PA0" + }, + { + "id": "8614", + "ident": "1PA1", + "type": "heliport", + "name": "401 City Avenue Heliport", + "latitude_deg": "40.00960159301758", + "longitude_deg": "-75.21379852294922", + "elevation_ft": "234", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "1PA1", + "local_code": "1PA1" + }, + { + "id": "8615", + "ident": "1PA2", + "type": "heliport", + "name": "St Christopher's Hospital For Children Heliport", + "latitude_deg": "40.006884", + "longitude_deg": "-75.12522", + "elevation_ft": "163", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "1PA2", + "local_code": "1PA2" + }, + { + "id": "8616", + "ident": "1PA3", + "type": "small_airport", + "name": "Ridgeview Airport", + "latitude_deg": "40.45009994506836", + "longitude_deg": "-75.19960021972656", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Kellers Church", + "scheduled_service": "no", + "gps_code": "1PA3", + "local_code": "1PA3" + }, + { + "id": "8617", + "ident": "1PA4", + "type": "small_airport", + "name": "Wagner Airport", + "latitude_deg": "40.5526008605957", + "longitude_deg": "-77.62000274658203", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lewistown", + "scheduled_service": "no", + "gps_code": "1PA4", + "local_code": "1PA4" + }, + { + "id": "8618", + "ident": "1PA5", + "type": "closed", + "name": "Beaver Creek Ultralightport", + "latitude_deg": "40.830244", + "longitude_deg": "-80.413678", + "elevation_ft": "928", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "New Galilee", + "scheduled_service": "no", + "keywords": "1PA5" + }, + { + "id": "8619", + "ident": "1PA6", + "type": "small_airport", + "name": "Whittle Airport", + "latitude_deg": "39.827301025390625", + "longitude_deg": "-75.72350311279297", + "elevation_ft": "345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Kennett Square", + "scheduled_service": "no", + "gps_code": "1PA6", + "local_code": "1PA6" + }, + { + "id": "8620", + "ident": "1PA7", + "type": "heliport", + "name": "Philmont Heliport", + "latitude_deg": "40.124298095703125", + "longitude_deg": "-75.03410339355469", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Huntington Valley", + "scheduled_service": "no", + "gps_code": "1PA7", + "local_code": "1PA7" + }, + { + "id": "8621", + "ident": "1PA8", + "type": "closed", + "name": "Motola's Helicopter Service Inc. Heliport", + "latitude_deg": "40.814201", + "longitude_deg": "-75.765503", + "elevation_ft": "534", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lehighton", + "scheduled_service": "no", + "keywords": "1PA8" + }, + { + "id": "8622", + "ident": "1PA9", + "type": "small_airport", + "name": "Schadels Airport", + "latitude_deg": "40.66680145263672", + "longitude_deg": "-76.68299865722656", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Klingerstown", + "scheduled_service": "no", + "gps_code": "1PA9", + "local_code": "1PA9" + }, + { + "id": "8623", + "ident": "1PN0", + "type": "small_airport", + "name": "Bentley Airport", + "latitude_deg": "40.20140075683594", + "longitude_deg": "-75.71420288085938", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pottstown", + "scheduled_service": "no", + "gps_code": "1PN0", + "local_code": "1PN0" + }, + { + "id": "8624", + "ident": "1PN1", + "type": "small_airport", + "name": "Napodano Airport", + "latitude_deg": "41.33420181274414", + "longitude_deg": "-80.42060089111328", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Transfer", + "scheduled_service": "no", + "gps_code": "1PN1", + "local_code": "1PN1" + }, + { + "id": "8625", + "ident": "1PN2", + "type": "heliport", + "name": "Green Hills Corp Heliport", + "latitude_deg": "40.26390075683594", + "longitude_deg": "-75.92220306396484", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Reading", + "scheduled_service": "no", + "gps_code": "1PN2", + "local_code": "1PN2" + }, + { + "id": "345581", + "ident": "1PN4", + "type": "heliport", + "name": "Fulton County Medical Center Heliport", + "latitude_deg": "39.938221", + "longitude_deg": "-78.006937", + "elevation_ft": "956", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "McConnellsburg", + "scheduled_service": "no", + "gps_code": "1PN4", + "local_code": "1PN4" + }, + { + "id": "8626", + "ident": "1PR3", + "type": "heliport", + "name": "San Patricio Heliport", + "latitude_deg": "18.406099319458008", + "longitude_deg": "-66.10600280761719", + "elevation_ft": "157", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Guaynabo", + "scheduled_service": "no", + "gps_code": "1PR3", + "local_code": "1PR3" + }, + { + "id": "8627", + "ident": "1PS0", + "type": "small_airport", + "name": "Ickes Airport", + "latitude_deg": "40.191898345947266", + "longitude_deg": "-78.564697265625", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Osterburg", + "scheduled_service": "no", + "gps_code": "1PS0", + "local_code": "1PS0" + }, + { + "id": "8628", + "ident": "1PS1", + "type": "heliport", + "name": "Hermitage Central Fire Station Heliport", + "latitude_deg": "41.2401008605957", + "longitude_deg": "-80.46479797363281", + "elevation_ft": "1165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hermitage", + "scheduled_service": "no", + "gps_code": "1PS1", + "local_code": "1PS1" + }, + { + "id": "8629", + "ident": "1PS3", + "type": "heliport", + "name": "P J Valves Heliport", + "latitude_deg": "40.36119842529297", + "longitude_deg": "-76.32469940185547", + "elevation_ft": "495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Myerstown", + "scheduled_service": "no", + "gps_code": "1PS3", + "local_code": "1PS3" + }, + { + "id": "8630", + "ident": "1PS4", + "type": "closed", + "name": "Sankey Airport", + "latitude_deg": "40.860901", + "longitude_deg": "-78.258102", + "elevation_ft": "1620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Osceola Mills", + "scheduled_service": "no", + "keywords": "1PS4" + }, + { + "id": "8631", + "ident": "1PS5", + "type": "heliport", + "name": "Children's Hospital of Philadelphia Heliport", + "latitude_deg": "39.948211", + "longitude_deg": "-75.19389", + "elevation_ft": "167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "1PS5", + "local_code": "1PS5" + }, + { + "id": "8632", + "ident": "1PS6", + "type": "heliport", + "name": "Frankford Hospital-Torresdale Division Heliport", + "latitude_deg": "40.06959915161133", + "longitude_deg": "-74.98210144042969", + "elevation_ft": "99", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "1PS6", + "local_code": "1PS6" + }, + { + "id": "8633", + "ident": "1PS7", + "type": "heliport", + "name": "Hahnemann Hospital Heliport", + "latitude_deg": "39.957616", + "longitude_deg": "-75.163833", + "elevation_ft": "166", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "1PS7", + "local_code": "1PS7" + }, + { + "id": "8634", + "ident": "1PS8", + "type": "heliport", + "name": "Punxsutawney Area Hospital Heliport", + "latitude_deg": "40.96120071411133", + "longitude_deg": "-79.00080108642578", + "elevation_ft": "1517", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Punxsutawney", + "scheduled_service": "no", + "gps_code": "1PS8", + "local_code": "1PS8" + }, + { + "id": "8635", + "ident": "1PS9", + "type": "small_airport", + "name": "Wicker & Wings Aerodrome", + "latitude_deg": "40.4034", + "longitude_deg": "-75.370499", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Quakertown", + "scheduled_service": "no", + "gps_code": "1PS9", + "local_code": "1PS9" + }, + { + "id": "8636", + "ident": "1Q1", + "type": "small_airport", + "name": "Eckert Field", + "latitude_deg": "36.162498474121094", + "longitude_deg": "-119.05000305175781", + "elevation_ft": "426", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Strathmore", + "scheduled_service": "no", + "gps_code": "1Q1", + "local_code": "1Q1" + }, + { + "id": "8637", + "ident": "1Q5", + "type": "small_airport", + "name": "Gravelly Valley Airport", + "latitude_deg": "39.449902", + "longitude_deg": "-122.955002", + "elevation_ft": "1900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Potter Valley", + "scheduled_service": "no", + "local_code": "1Q5" + }, + { + "id": "8638", + "ident": "1RL", + "type": "small_airport", + "name": "Point Roberts Airpark", + "latitude_deg": "48.979698181152344", + "longitude_deg": "-123.0790023803711", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Point Roberts", + "scheduled_service": "no", + "gps_code": "1RL", + "local_code": "1RL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Point_Roberts_Airpark" + }, + { + "id": "8639", + "ident": "1S1", + "type": "small_airport", + "name": "Eckhart International Airport", + "latitude_deg": "48.99580001831055", + "longitude_deg": "-116.5009994506836", + "elevation_ft": "1756", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Porthill", + "scheduled_service": "no", + "gps_code": "1S1", + "local_code": "1S1" + }, + { + "id": "8640", + "ident": "1S2", + "type": "small_airport", + "name": "Darrington Municipal Airport", + "latitude_deg": "48.25859832763672", + "longitude_deg": "-121.61000061035156", + "elevation_ft": "553", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Darrington", + "scheduled_service": "no", + "gps_code": "1S2", + "local_code": "1S2" + }, + { + "id": "8641", + "ident": "1S4", + "type": "small_airport", + "name": "Seiling Airport", + "latitude_deg": "36.154999", + "longitude_deg": "-98.933701", + "elevation_ft": "1746", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Seiling", + "scheduled_service": "no", + "local_code": "1S4", + "keywords": "OK73" + }, + { + "id": "8642", + "ident": "1S6", + "type": "small_airport", + "name": "Priest River Municipal Airport", + "latitude_deg": "48.19020080566406", + "longitude_deg": "-116.90899658203125", + "elevation_ft": "2187", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Priest River", + "scheduled_service": "no", + "gps_code": "1S6", + "local_code": "1S6" + }, + { + "id": "8643", + "ident": "1S7", + "type": "small_airport", + "name": "Slate Creek Airport", + "latitude_deg": "45.671744", + "longitude_deg": "-116.305647", + "elevation_ft": "1660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "White Bird", + "scheduled_service": "no", + "local_code": "1S7" + }, + { + "id": "8644", + "ident": "1S8", + "type": "small_airport", + "name": "Arlington Municipal Airport", + "latitude_deg": "45.722683", + "longitude_deg": "-120.176418", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Arlington", + "scheduled_service": "no", + "local_code": "1S8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arlington_Municipal_Airport_(Oregon)" + }, + { + "id": "354611", + "ident": "1SC1", + "type": "small_airport", + "name": "Lagniappe STOL Field", + "latitude_deg": "34.653745", + "longitude_deg": "-82.55498", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Pelzer", + "scheduled_service": "no", + "gps_code": "1SC1", + "local_code": "1SC1" + }, + { + "id": "8645", + "ident": "1SC2", + "type": "small_airport", + "name": "Gwinn Field", + "latitude_deg": "33.933799743652344", + "longitude_deg": "-80.79609680175781", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Hopkins", + "scheduled_service": "no", + "gps_code": "1SC2", + "local_code": "1SC2" + }, + { + "id": "354615", + "ident": "1SC5", + "type": "heliport", + "name": "Bon Secours St Francis Hospital Heliport", + "latitude_deg": "34.840079", + "longitude_deg": "-82.422395", + "elevation_ft": "1182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "1SC5", + "local_code": "1SC5" + }, + { + "id": "356185", + "ident": "1SC6", + "type": "small_airport", + "name": "Flying W Airport", + "latitude_deg": "34.428922", + "longitude_deg": "-80.069939", + "elevation_ft": "292", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Hartsville", + "scheduled_service": "no", + "gps_code": "1SC6", + "local_code": "1SC6" + }, + { + "id": "8646", + "ident": "1SD0", + "type": "small_airport", + "name": "Dorsey Ranch Airport", + "latitude_deg": "45.323001861572266", + "longitude_deg": "-101.74199676513672", + "elevation_ft": "2350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Glad Valley", + "scheduled_service": "no", + "gps_code": "1SD0", + "local_code": "1SD0" + }, + { + "id": "8647", + "ident": "1SD1", + "type": "small_airport", + "name": "Burke Field", + "latitude_deg": "43.165401458740234", + "longitude_deg": "-97.73090362548828", + "elevation_ft": "1352", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Scotland", + "scheduled_service": "no", + "gps_code": "1SD1", + "local_code": "1SD1" + }, + { + "id": "8648", + "ident": "1SD2", + "type": "closed", + "name": "Camp Rapid Heliport", + "latitude_deg": "44.073601", + "longitude_deg": "-103.271004", + "elevation_ft": "3345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Rapid City", + "scheduled_service": "no", + "keywords": "1SD2" + }, + { + "id": "8649", + "ident": "1SD3", + "type": "small_airport", + "name": "Turkey Ridge Airport", + "latitude_deg": "43.233299255371094", + "longitude_deg": "-97.15029907226562", + "elevation_ft": "1325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Hurley", + "scheduled_service": "no", + "gps_code": "1SD3", + "local_code": "1SD3" + }, + { + "id": "8650", + "ident": "1SD4", + "type": "small_airport", + "name": "Vig Limousin Airport", + "latitude_deg": "44.86669921875", + "longitude_deg": "-102.41699981689453", + "elevation_ft": "2552", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Faith", + "scheduled_service": "no", + "gps_code": "1SD4", + "local_code": "1SD4" + }, + { + "id": "8651", + "ident": "1SD5", + "type": "small_airport", + "name": "Drake Farm Airport", + "latitude_deg": "43.76860046386719", + "longitude_deg": "-98.79869842529297", + "elevation_ft": "1659", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "White Lake", + "scheduled_service": "no", + "gps_code": "1SD5", + "local_code": "1SD5" + }, + { + "id": "8652", + "ident": "1SD6", + "type": "small_airport", + "name": "Bogner Number II Airport", + "latitude_deg": "43.110298", + "longitude_deg": "-103.230003", + "elevation_ft": "3500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Oelrichs", + "scheduled_service": "no", + "gps_code": "1SD6", + "local_code": "1SD6" + }, + { + "id": "8653", + "ident": "1SD7", + "type": "heliport", + "name": "Rosebud Comprehensive Health Care Facility Heliport", + "latitude_deg": "43.25749969482422", + "longitude_deg": "-100.8499984741211", + "elevation_ft": "2715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Rosebud", + "scheduled_service": "no", + "gps_code": "1SD7", + "local_code": "1SD7" + }, + { + "id": "8654", + "ident": "1SD8", + "type": "small_airport", + "name": "Tribitt Airport", + "latitude_deg": "45.047698974609375", + "longitude_deg": "-96.55259704589844", + "elevation_ft": "1175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Albee", + "scheduled_service": "no", + "gps_code": "1SD8", + "local_code": "1SD8" + }, + { + "id": "8655", + "ident": "1SD9", + "type": "heliport", + "name": "Sanford Usd Medical Center Heliport", + "latitude_deg": "43.5354995728", + "longitude_deg": "-96.74420166019999", + "elevation_ft": "1708", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Sioux Falls", + "scheduled_service": "no", + "gps_code": "1SD9", + "local_code": "1SD9" + }, + { + "id": "8656", + "ident": "1T8", + "type": "small_airport", + "name": "Bulverde Airpark", + "latitude_deg": "29.7391", + "longitude_deg": "-98.451103", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bulverde", + "scheduled_service": "no", + "local_code": "1T8" + }, + { + "id": "8657", + "ident": "1T9", + "type": "closed", + "name": "Lesikar Ranch Airport", + "latitude_deg": "29.516899", + "longitude_deg": "-96.844398", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hallettsville", + "scheduled_service": "no", + "keywords": "1TS9, 1T9" + }, + { + "id": "8658", + "ident": "1TA0", + "type": "heliport", + "name": "Fina Bayport Heliport", + "latitude_deg": "29.611099243164062", + "longitude_deg": "-95.010498046875", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seabrook", + "scheduled_service": "no", + "gps_code": "1TA0", + "local_code": "1TA0" + }, + { + "id": "8659", + "ident": "1TA1", + "type": "closed", + "name": "TGP 32 Heliport", + "latitude_deg": "30.9844", + "longitude_deg": "-94.137703", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jasper", + "scheduled_service": "no", + "keywords": "1TA1, Tennessee Gas Pipeline 32 Heliport" + }, + { + "id": "8660", + "ident": "1TA2", + "type": "small_airport", + "name": "Vigo Park Airport", + "latitude_deg": "34.65010070800781", + "longitude_deg": "-101.5", + "elevation_ft": "3383", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tulia", + "scheduled_service": "no", + "gps_code": "1TA2", + "local_code": "1TA2" + }, + { + "id": "8661", + "ident": "1TA3", + "type": "heliport", + "name": "D W C Heliport", + "latitude_deg": "29.45359992980957", + "longitude_deg": "-95.23629760742188", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alvin", + "scheduled_service": "no", + "gps_code": "1TA3", + "local_code": "1TA3" + }, + { + "id": "8662", + "ident": "1TA4", + "type": "small_airport", + "name": "Last Resort Airport", + "latitude_deg": "31.4545", + "longitude_deg": "-95.29652", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crockett", + "scheduled_service": "no", + "gps_code": "1TA4", + "local_code": "1TA4" + }, + { + "id": "8663", + "ident": "1TA5", + "type": "small_airport", + "name": "Two Leggs Airport", + "latitude_deg": "32.94179916381836", + "longitude_deg": "-103", + "elevation_ft": "3625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Denver City", + "scheduled_service": "no", + "gps_code": "1TA5", + "local_code": "1TA5" + }, + { + "id": "8664", + "ident": "1TA6", + "type": "heliport", + "name": "Morningstar Ranch Heliport", + "latitude_deg": "33.70090103149414", + "longitude_deg": "-96.9135971069336", + "elevation_ft": "737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Whitesboro", + "scheduled_service": "no", + "gps_code": "1TA6", + "local_code": "1TA6" + }, + { + "id": "8665", + "ident": "1TA7", + "type": "small_airport", + "name": "Thompson Field", + "latitude_deg": "32.61600112915039", + "longitude_deg": "-95.86830139160156", + "elevation_ft": "515", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Canton", + "scheduled_service": "no", + "gps_code": "1TA7", + "local_code": "1TA7" + }, + { + "id": "337602", + "ident": "1TA8", + "type": "small_airport", + "name": "Rio Pinto Ranch Airport", + "latitude_deg": "29.237167", + "longitude_deg": "-100.684083", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bracketville", + "scheduled_service": "no", + "gps_code": "1TA8", + "local_code": "1TA8" + }, + { + "id": "8666", + "ident": "1TA9", + "type": "heliport", + "name": "Ktrk Tv Station Heliport", + "latitude_deg": "29.725500106811523", + "longitude_deg": "-95.42970275878906", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "1TA9", + "local_code": "1TA9" + }, + { + "id": "8667", + "ident": "1TE0", + "type": "small_airport", + "name": "Locker Brothers Airport", + "latitude_deg": "34.269500732421875", + "longitude_deg": "-102.71700286865234", + "elevation_ft": "3802", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Muleshoe", + "scheduled_service": "no", + "gps_code": "1TE0", + "local_code": "1TE0" + }, + { + "id": "8668", + "ident": "1TE1", + "type": "small_airport", + "name": "Briscoes Catarina Ranch Airport", + "latitude_deg": "28.25029945373535", + "longitude_deg": "-99.81700134277344", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Catarina", + "scheduled_service": "no", + "gps_code": "1TE1", + "local_code": "1TE1" + }, + { + "id": "8669", + "ident": "1TE2", + "type": "closed", + "name": "Flying F Ranch Airport", + "latitude_deg": "29.98647", + "longitude_deg": "-95.016972", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crosby", + "scheduled_service": "no", + "keywords": "1TE2" + }, + { + "id": "8670", + "ident": "1TE3", + "type": "small_airport", + "name": "Bolton Airport", + "latitude_deg": "31.917400360107422", + "longitude_deg": "-95.20719909667969", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "1TE3", + "local_code": "1TE3" + }, + { + "id": "8671", + "ident": "1TE4", + "type": "small_airport", + "name": "Zuehl Airport", + "latitude_deg": "29.495092", + "longitude_deg": "-98.158787", + "elevation_ft": "592", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "1TE4", + "local_code": "1TE4" + }, + { + "id": "8672", + "ident": "1TE5", + "type": "small_airport", + "name": "Corpora Airport", + "latitude_deg": "30.816299438476562", + "longitude_deg": "-96.6010971069336", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hearne", + "scheduled_service": "no", + "gps_code": "1TE5", + "local_code": "1TE5" + }, + { + "id": "8673", + "ident": "1TE6", + "type": "closed", + "name": "Moore Airport", + "latitude_deg": "35.118099", + "longitude_deg": "-102.184998", + "elevation_ft": "3850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wildorado", + "scheduled_service": "no", + "keywords": "1TE6" + }, + { + "id": "8674", + "ident": "1TE7", + "type": "small_airport", + "name": "Ray Farm Airport", + "latitude_deg": "29.116503", + "longitude_deg": "-98.367035", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Floresville", + "scheduled_service": "no", + "gps_code": "1TE7", + "local_code": "1TE7" + }, + { + "id": "8675", + "ident": "1TE8", + "type": "small_airport", + "name": "Kahuna Bay Airport", + "latitude_deg": "33.548876", + "longitude_deg": "-96.55777", + "elevation_ft": "702", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sherman", + "scheduled_service": "no", + "gps_code": "1TE8", + "local_code": "1TE8" + }, + { + "id": "8676", + "ident": "1TE9", + "type": "small_airport", + "name": "Rmr Ranch Airport", + "latitude_deg": "31.271900177001953", + "longitude_deg": "-96.43920135498047", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "1TE9", + "local_code": "1TE9" + }, + { + "id": "8677", + "ident": "1TN0", + "type": "small_airport", + "name": "Cedar Crest Field", + "latitude_deg": "36.246399", + "longitude_deg": "-86.302803", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "1TN0", + "local_code": "1TN0" + }, + { + "id": "8678", + "ident": "1TN1", + "type": "closed", + "name": "Clayton Heliport", + "latitude_deg": "35.864498", + "longitude_deg": "-83.957397", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Louisville", + "scheduled_service": "no", + "keywords": "1TN1" + }, + { + "id": "8679", + "ident": "1TN2", + "type": "small_airport", + "name": "Kay Airport", + "latitude_deg": "36.445899963378906", + "longitude_deg": "-83.11239624023438", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Rogersville", + "scheduled_service": "no", + "gps_code": "1TN2", + "local_code": "1TN2" + }, + { + "id": "8680", + "ident": "1TN3", + "type": "small_airport", + "name": "Wagner Field", + "latitude_deg": "35.13970184326172", + "longitude_deg": "-86.22219848632812", + "elevation_ft": "975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Belvidere", + "scheduled_service": "no", + "gps_code": "1TN3", + "local_code": "1TN3" + }, + { + "id": "8681", + "ident": "1TN4", + "type": "heliport", + "name": "Methodist Healthcare Heliport", + "latitude_deg": "36.049329", + "longitude_deg": "-89.380215", + "elevation_ft": "312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Dyersburg", + "scheduled_service": "no", + "gps_code": "1TN4", + "local_code": "1TN4" + }, + { + "id": "8682", + "ident": "1TN5", + "type": "heliport", + "name": "Maury Regional Hospital Heliport", + "latitude_deg": "35.55619812011719", + "longitude_deg": "-87.05390167236328", + "elevation_ft": "651", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "1TN5", + "local_code": "1TN5" + }, + { + "id": "8683", + "ident": "1TN6", + "type": "closed", + "name": "Higdon Airfield", + "latitude_deg": "35.972599", + "longitude_deg": "-84.156898", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Karns", + "scheduled_service": "no", + "keywords": "1TN6" + }, + { + "id": "8684", + "ident": "1TN7", + "type": "heliport", + "name": "Brendle's Heliport", + "latitude_deg": "36.54790115356445", + "longitude_deg": "-82.52239990234375", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Kingsport", + "scheduled_service": "no", + "gps_code": "1TN7", + "local_code": "1TN7" + }, + { + "id": "8685", + "ident": "1TN8", + "type": "heliport", + "name": "Ramada Helistop", + "latitude_deg": "36.56679916381836", + "longitude_deg": "-82.5165023803711", + "elevation_ft": "1275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Kingsport", + "scheduled_service": "no", + "gps_code": "1TN8", + "local_code": "1TN8" + }, + { + "id": "8686", + "ident": "1TN9", + "type": "heliport", + "name": "Rutledge Falls Heliport", + "latitude_deg": "35.412601470947266", + "longitude_deg": "-86.13749694824219", + "elevation_ft": "1082", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Manchester", + "scheduled_service": "no", + "gps_code": "1TN9", + "local_code": "1TN9" + }, + { + "id": "8687", + "ident": "1TS0", + "type": "small_airport", + "name": "Eagle Air Airport", + "latitude_deg": "29.6705", + "longitude_deg": "-94.670799", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Anahuac", + "scheduled_service": "no", + "gps_code": "1TS0", + "local_code": "1TS0" + }, + { + "id": "8688", + "ident": "1TS1", + "type": "small_airport", + "name": "Laas Farm Airport", + "latitude_deg": "29.912700653076172", + "longitude_deg": "-95.99410247802734", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pattison", + "scheduled_service": "no", + "gps_code": "1TS1", + "local_code": "1TS1" + }, + { + "id": "8689", + "ident": "1TS2", + "type": "small_airport", + "name": "Bar 16 Airport", + "latitude_deg": "31.82430076599121", + "longitude_deg": "-96.77850341796875", + "elevation_ft": "547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hubbard", + "scheduled_service": "no", + "gps_code": "1TS2", + "local_code": "1TS2" + }, + { + "id": "8690", + "ident": "1TS3", + "type": "closed", + "name": "B & S Ultralightport", + "latitude_deg": "29.496099", + "longitude_deg": "-94.9505", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Leon", + "scheduled_service": "no", + "gps_code": "1TS3", + "local_code": "1TS3" + }, + { + "id": "8691", + "ident": "1TS4", + "type": "heliport", + "name": "Legacy Hangar Heliport", + "latitude_deg": "33.068501", + "longitude_deg": "-96.801399", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Plano", + "scheduled_service": "no", + "gps_code": "1TS4", + "local_code": "1TS4" + }, + { + "id": "8692", + "ident": "1TS5", + "type": "heliport", + "name": "Sugar Grove Heliport", + "latitude_deg": "29.643600463867188", + "longitude_deg": "-95.58110046386719", + "elevation_ft": "81", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Stafford", + "scheduled_service": "no", + "gps_code": "1TS5", + "local_code": "1TS5" + }, + { + "id": "8693", + "ident": "1TS6", + "type": "small_airport", + "name": "Dentonio Ranch Airport", + "latitude_deg": "28.269399642944336", + "longitude_deg": "-99.93450164794922", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Carrizo Springs", + "scheduled_service": "no", + "gps_code": "1TS6", + "local_code": "1TS6" + }, + { + "id": "8694", + "ident": "1TS7", + "type": "heliport", + "name": "Cig 804 Heliport", + "latitude_deg": "28.313600540161133", + "longitude_deg": "-97.04550170898438", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Refugio", + "scheduled_service": "no", + "gps_code": "1TS7", + "local_code": "1TS7" + }, + { + "id": "8695", + "ident": "1TS8", + "type": "small_airport", + "name": "Landers Ranch Airport", + "latitude_deg": "32.287982", + "longitude_deg": "-100.717897", + "elevation_ft": "2275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Colorado City", + "scheduled_service": "no", + "gps_code": "1TS8", + "local_code": "1TS8" + }, + { + "id": "45821", + "ident": "1TS9", + "type": "small_airport", + "name": "Four Winds Airport / Cavanaugh Ranch Airport", + "latitude_deg": "33.368384", + "longitude_deg": "-96.754639", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Celina", + "scheduled_service": "no", + "local_code": "9S1", + "keywords": "1TS9" + }, + { + "id": "8696", + "ident": "1TX0", + "type": "closed", + "name": "Lytle Airpark", + "latitude_deg": "29.253334", + "longitude_deg": "-98.861115", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lytle", + "scheduled_service": "no", + "keywords": "1TX0" + }, + { + "id": "8697", + "ident": "1TX1", + "type": "closed", + "name": "Yoakum Airport", + "latitude_deg": "31.8557", + "longitude_deg": "-98.4142", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gustine", + "scheduled_service": "no", + "keywords": "1TX1" + }, + { + "id": "8698", + "ident": "1TX2", + "type": "small_airport", + "name": "J Y Ranch-R B Masterson III Estate Airport", + "latitude_deg": "33.716294", + "longitude_deg": "-100.155195", + "elevation_ft": "1808", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Guthrie", + "scheduled_service": "no", + "gps_code": "1TX2", + "local_code": "1TX2" + }, + { + "id": "8699", + "ident": "1TX3", + "type": "small_airport", + "name": "Beggs Ranch Airport", + "latitude_deg": "33.42509841918945", + "longitude_deg": "-100.54199981689453", + "elevation_ft": "1870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Guthrie", + "scheduled_service": "no", + "gps_code": "1TX3", + "local_code": "1TX3" + }, + { + "id": "8700", + "ident": "1TX4", + "type": "closed", + "name": "Shoreline Ranch Airport", + "latitude_deg": "30.4286", + "longitude_deg": "-97.970497", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lago Vista", + "scheduled_service": "no", + "gps_code": "1TX4", + "local_code": "1TX4" + }, + { + "id": "8701", + "ident": "1TX5", + "type": "small_airport", + "name": "Laney Farm Airport", + "latitude_deg": "34.126017", + "longitude_deg": "-101.908751", + "elevation_ft": "3483", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hale Center", + "scheduled_service": "no", + "gps_code": "1TX5", + "local_code": "1TX5" + }, + { + "id": "8702", + "ident": "1TX6", + "type": "small_airport", + "name": "Muxworthy Airport", + "latitude_deg": "31.69849967956543", + "longitude_deg": "-98.09639739990234", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "1TX6", + "local_code": "1TX6" + }, + { + "id": "8703", + "ident": "1TX7", + "type": "small_airport", + "name": "Killion Ranch Airport", + "latitude_deg": "32.80569839477539", + "longitude_deg": "-100.18399810791016", + "elevation_ft": "1845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hamlin", + "scheduled_service": "no", + "gps_code": "1TX7", + "local_code": "1TX7" + }, + { + "id": "8704", + "ident": "1TX8", + "type": "small_airport", + "name": "Hart Aerial Airport", + "latitude_deg": "34.36949920654297", + "longitude_deg": "-102.08399963378906", + "elevation_ft": "3655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hart", + "scheduled_service": "no", + "gps_code": "1TX8", + "local_code": "1TX8" + }, + { + "id": "8705", + "ident": "1TX9", + "type": "small_airport", + "name": "Hawk Ranch Airport", + "latitude_deg": "32.63759994506836", + "longitude_deg": "-95.16130065917969", + "elevation_ft": "335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hawkins", + "scheduled_service": "no", + "gps_code": "1TX9", + "local_code": "1TX9" + }, + { + "id": "8706", + "ident": "1U0", + "type": "small_airport", + "name": "Bear Trap Airport", + "latitude_deg": "42.97489929199219", + "longitude_deg": "-113.35099792480469", + "elevation_ft": "4716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Minidoka", + "scheduled_service": "no", + "gps_code": "1U0", + "local_code": "1U0" + }, + { + "id": "8707", + "ident": "1U1", + "type": "small_airport", + "name": "Moose Creek US Forest Service Airport", + "latitude_deg": "46.124294", + "longitude_deg": "-114.923515", + "elevation_ft": "2454", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Kooskia", + "scheduled_service": "no", + "gps_code": "K1U1", + "local_code": "1U1" + }, + { + "id": "8708", + "ident": "1U3", + "type": "small_airport", + "name": "Murphy Airport", + "latitude_deg": "43.215999603271484", + "longitude_deg": "-116.54900360107422", + "elevation_ft": "2855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Murphy", + "scheduled_service": "no", + "gps_code": "1U3", + "local_code": "1U3" + }, + { + "id": "8709", + "ident": "1U4", + "type": "small_airport", + "name": "New Meadows Airport", + "latitude_deg": "44.97909927368164", + "longitude_deg": "-116.28399658203125", + "elevation_ft": "3908", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "New Meadows", + "scheduled_service": "no", + "gps_code": "1U4", + "local_code": "1U4" + }, + { + "id": "8710", + "ident": "1U6", + "type": "small_airport", + "name": "Oakley Municipal Airport", + "latitude_deg": "42.234100341796875", + "longitude_deg": "-113.87799835205078", + "elevation_ft": "4650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Oakley", + "scheduled_service": "no", + "gps_code": "1U6", + "local_code": "1U6" + }, + { + "id": "8711", + "ident": "1U9", + "type": "small_airport", + "name": "Pine Airport", + "latitude_deg": "43.462398529052734", + "longitude_deg": "-115.30899810791016", + "elevation_ft": "4232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Pine", + "scheduled_service": "no", + "gps_code": "1U9", + "local_code": "1U9" + }, + { + "id": "8712", + "ident": "1UT9", + "type": "heliport", + "name": "Tri-Arc Heliport", + "latitude_deg": "40.75490188598633", + "longitude_deg": "-111.8949966430664", + "elevation_ft": "4367", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Salt Lake City", + "scheduled_service": "no", + "gps_code": "1UT9", + "local_code": "1UT9" + }, + { + "id": "8713", + "ident": "1VA0", + "type": "small_airport", + "name": "Sabot Airport", + "latitude_deg": "37.629299", + "longitude_deg": "-77.747498", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Manakin-Sabot", + "scheduled_service": "no", + "gps_code": "1VA0", + "local_code": "1VA0" + }, + { + "id": "8714", + "ident": "1VA1", + "type": "small_airport", + "name": "Micro Airport", + "latitude_deg": "36.735198974609375", + "longitude_deg": "-80.44879913330078", + "elevation_ft": "2923", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Stuart", + "scheduled_service": "no", + "gps_code": "1VA1", + "local_code": "1VA1" + }, + { + "id": "8715", + "ident": "1VA2", + "type": "heliport", + "name": "Lewis Gale Clinic Inc. Heliport", + "latitude_deg": "37.263231", + "longitude_deg": "-80.029439", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "1VA2", + "local_code": "1VA2" + }, + { + "id": "8716", + "ident": "1VA3", + "type": "small_airport", + "name": "Tye River Airport", + "latitude_deg": "37.658199310302734", + "longitude_deg": "-78.94560241699219", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Lovingston", + "scheduled_service": "no", + "gps_code": "1VA3", + "local_code": "1VA3" + }, + { + "id": "8717", + "ident": "1VA4", + "type": "heliport", + "name": "Evergreen Heliport", + "latitude_deg": "38.93709945678711", + "longitude_deg": "-77.81919860839844", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Marshall", + "scheduled_service": "no", + "gps_code": "1VA4", + "local_code": "1VA4" + }, + { + "id": "8718", + "ident": "1VA5", + "type": "closed", + "name": "Hoffman's Farm Airport", + "latitude_deg": "37.270401", + "longitude_deg": "-76.3927", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Severn", + "scheduled_service": "no", + "keywords": "1VA5" + }, + { + "id": "8719", + "ident": "1VA7", + "type": "small_airport", + "name": "Aaron Penston Field", + "latitude_deg": "36.664725", + "longitude_deg": "-78.722091", + "elevation_ft": "413", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Virgilina", + "scheduled_service": "no", + "gps_code": "1VA7", + "local_code": "1VA7" + }, + { + "id": "8720", + "ident": "1VA8", + "type": "small_airport", + "name": "Hazelswart Airport", + "latitude_deg": "36.862249", + "longitude_deg": "-78.410025", + "elevation_ft": "485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Chase City", + "scheduled_service": "no", + "gps_code": "1VA8", + "local_code": "1VA8" + }, + { + "id": "8721", + "ident": "1VA9", + "type": "small_airport", + "name": "Flying T Farm Airport", + "latitude_deg": "38.432899", + "longitude_deg": "-77.470497", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fredericksburg", + "scheduled_service": "no", + "gps_code": "1VA9", + "local_code": "1VA9" + }, + { + "id": "8722", + "ident": "1VG2", + "type": "small_airport", + "name": "Whithall Farm Airport", + "latitude_deg": "38.12466", + "longitude_deg": "-76.68858", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Montross", + "scheduled_service": "no", + "gps_code": "1VG2", + "local_code": "1VG2" + }, + { + "id": "345774", + "ident": "1VT8", + "type": "small_airport", + "name": "Mortimer Brown Landing", + "latitude_deg": "43.665221", + "longitude_deg": "-73.166263", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Castleton", + "scheduled_service": "no", + "gps_code": "1VT8", + "local_code": "1VT8" + }, + { + "id": "8723", + "ident": "1W0", + "type": "closed", + "name": "J-Z Airport", + "latitude_deg": "47.722099", + "longitude_deg": "-118.943001", + "elevation_ft": "1950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Almira", + "scheduled_service": "no", + "keywords": "1W0" + }, + { + "id": "8724", + "ident": "1W1", + "type": "small_airport", + "name": "Grove Field", + "latitude_deg": "45.62779998779297", + "longitude_deg": "-122.40399932861328", + "elevation_ft": "429", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Camas", + "scheduled_service": "no", + "gps_code": "1W1", + "local_code": "1W1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grove_Field_Airport" + }, + { + "id": "8725", + "ident": "1W3", + "type": "small_airport", + "name": "Mexico Farms Airport", + "latitude_deg": "39.604801177978516", + "longitude_deg": "-78.7605972290039", + "elevation_ft": "607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Cumberland", + "scheduled_service": "no", + "gps_code": "1W3", + "local_code": "1W3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mexico_Farms_Airport" + }, + { + "id": "45897", + "ident": "1WA0", + "type": "heliport", + "name": "Legacy Salmon Creek Hospital Heliport", + "latitude_deg": "45.720119", + "longitude_deg": "-122.649264", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Vancouver", + "scheduled_service": "no", + "gps_code": "1WA0", + "local_code": "1WA0" + }, + { + "id": "8727", + "ident": "1WA1", + "type": "heliport", + "name": "Weber Point Heliport", + "latitude_deg": "47.64699935913086", + "longitude_deg": "-122.08699798583984", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Redmond", + "scheduled_service": "no", + "gps_code": "1WA1", + "local_code": "1WA1" + }, + { + "id": "8728", + "ident": "1WA2", + "type": "small_airport", + "name": "Pilot's Pastures Airport", + "latitude_deg": "46.51919937133789", + "longitude_deg": "-122.88999938964844", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Winlock", + "scheduled_service": "no", + "gps_code": "1WA2", + "local_code": "1WA2" + }, + { + "id": "8729", + "ident": "1WA3", + "type": "heliport", + "name": "Calkins Equipment Company Heliport", + "latitude_deg": "47.97949981689453", + "longitude_deg": "-122.18599700927734", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Everett", + "scheduled_service": "no", + "gps_code": "1WA3", + "local_code": "1WA3" + }, + { + "id": "8730", + "ident": "1WA4", + "type": "heliport", + "name": "Providence Hospital Heliport", + "latitude_deg": "47.975777", + "longitude_deg": "-122.217264", + "elevation_ft": "319", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Everett", + "scheduled_service": "no", + "local_code": "1WA4", + "keywords": "Providence Regional Medical Center Everett Pacific Campus Heliport" + }, + { + "id": "8731", + "ident": "1WA5", + "type": "heliport", + "name": "General Hospital of Everett Heliport", + "latitude_deg": "47.999568", + "longitude_deg": "-122.205965", + "elevation_ft": "296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Everett", + "scheduled_service": "no", + "gps_code": "1WA5", + "local_code": "1WA5" + }, + { + "id": "8732", + "ident": "1WA6", + "type": "small_airport", + "name": "Fall City Airport", + "latitude_deg": "47.55950164794922", + "longitude_deg": "-121.86399841308594", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Fall City", + "scheduled_service": "no", + "gps_code": "1WA6", + "local_code": "1WA6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fall_City_Airport" + }, + { + "id": "8733", + "ident": "1WA7", + "type": "closed", + "name": "Raincreek Heliport", + "latitude_deg": "46.142502", + "longitude_deg": "-122.224998", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Cougar", + "scheduled_service": "no", + "keywords": "1WA7" + }, + { + "id": "8734", + "ident": "1WA8", + "type": "heliport", + "name": "Madigan Hospital Heliport", + "latitude_deg": "47.10649871826172", + "longitude_deg": "-122.55000305175781", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Fort Lewis", + "scheduled_service": "no", + "gps_code": "1WA8", + "local_code": "1WA8" + }, + { + "id": "8735", + "ident": "1WA9", + "type": "small_airport", + "name": "Friday West Airport", + "latitude_deg": "48.529911", + "longitude_deg": "-123.047357", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Friday Harbor", + "scheduled_service": "no", + "gps_code": "1WA9", + "local_code": "1WA9" + }, + { + "id": "8736", + "ident": "1WF", + "type": "small_airport", + "name": "Waco Field", + "latitude_deg": "40.014801025390625", + "longitude_deg": "-84.1980972290039", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "1WF", + "local_code": "1WF" + }, + { + "id": "8737", + "ident": "1WI0", + "type": "small_airport", + "name": "Spring Valley Farm Airport", + "latitude_deg": "42.64250183105469", + "longitude_deg": "-89.31120300292969", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Orfordville", + "scheduled_service": "no", + "gps_code": "1WI0", + "local_code": "1WI0" + }, + { + "id": "8738", + "ident": "1WI1", + "type": "small_airport", + "name": "Williams Airport", + "latitude_deg": "43.935037", + "longitude_deg": "-88.70433", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Utica", + "scheduled_service": "no", + "gps_code": "1WI1", + "local_code": "1WI1" + }, + { + "id": "8739", + "ident": "1WI2", + "type": "closed", + "name": "Flying S Ranch Airport", + "latitude_deg": "43.365299", + "longitude_deg": "-87.887001", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Port Washington", + "scheduled_service": "no", + "keywords": "1WI2" + }, + { + "id": "8740", + "ident": "1WI3", + "type": "small_airport", + "name": "Bed-Ah-Wick Field", + "latitude_deg": "43.849998474121094", + "longitude_deg": "-89.1167984008789", + "elevation_ft": "787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "1WI3", + "local_code": "1WI3" + }, + { + "id": "8741", + "ident": "1WI4", + "type": "heliport", + "name": "Johnson Wax Heliport", + "latitude_deg": "42.70840072631836", + "longitude_deg": "-87.79170227050781", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Racine", + "scheduled_service": "no", + "gps_code": "1WI4", + "local_code": "1WI4" + }, + { + "id": "8742", + "ident": "1WI5", + "type": "seaplane_base", + "name": "Beaver Dam Lake Seaplane Base", + "latitude_deg": "43.51499938964844", + "longitude_deg": "-88.95259857177734", + "elevation_ft": "871", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Randolph", + "scheduled_service": "no", + "gps_code": "1WI5", + "local_code": "1WI5" + }, + { + "id": "8743", + "ident": "1WI6", + "type": "small_airport", + "name": "Aero Estates Airport", + "latitude_deg": "42.840301513671875", + "longitude_deg": "-88.06400299072266", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Raymond Township", + "scheduled_service": "no", + "gps_code": "1WI6", + "local_code": "1WI6" + }, + { + "id": "8744", + "ident": "1WI7", + "type": "small_airport", + "name": "Buzzards Roost Airport", + "latitude_deg": "44.02220153808594", + "longitude_deg": "-89.09649658203125", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Redgranite", + "scheduled_service": "no", + "gps_code": "1WI7", + "local_code": "1WI7" + }, + { + "id": "8745", + "ident": "1WI8", + "type": "small_airport", + "name": "Jorgensen - Stoller Airport", + "latitude_deg": "44.635799408", + "longitude_deg": "-87.44020080570002", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Algoma", + "scheduled_service": "no", + "gps_code": "1WI8", + "local_code": "1WI8" + }, + { + "id": "8746", + "ident": "1WI9", + "type": "small_airport", + "name": "Blackhawk Island Airport", + "latitude_deg": "42.910672", + "longitude_deg": "-88.8694", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Fort Atkinson", + "scheduled_service": "no", + "gps_code": "1WI9", + "local_code": "1WI9" + }, + { + "id": "45901", + "ident": "1WN0", + "type": "small_airport", + "name": "Schmidt Ranch Airport", + "latitude_deg": "48.933293", + "longitude_deg": "-117.745845", + "elevation_ft": "1335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Northport", + "scheduled_service": "no", + "gps_code": "1WN0", + "local_code": "1WN0" + }, + { + "id": "8747", + "ident": "1WN1", + "type": "small_airport", + "name": "Kettle Moraine Airport", + "latitude_deg": "43.668912", + "longitude_deg": "-88.19428", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Campbellsport", + "scheduled_service": "no", + "gps_code": "1WN1", + "local_code": "1WN1" + }, + { + "id": "8748", + "ident": "1WN2", + "type": "small_airport", + "name": "Covered Bridge Fields Airport", + "latitude_deg": "43.329200744628906", + "longitude_deg": "-87.99729919433594", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Cedarburg", + "scheduled_service": "no", + "gps_code": "1WN2", + "local_code": "1WN2" + }, + { + "id": "8749", + "ident": "1WN3", + "type": "small_airport", + "name": "Danielson Field Airport", + "latitude_deg": "45.211399", + "longitude_deg": "-92.534267", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Star Prairie", + "scheduled_service": "no", + "gps_code": "1WN3", + "local_code": "1WN3" + }, + { + "id": "8750", + "ident": "1WN5", + "type": "small_airport", + "name": "Simons Airfield", + "latitude_deg": "46.154701232910156", + "longitude_deg": "-89.31749725341797", + "elevation_ft": "1735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Land-O-Lakes", + "scheduled_service": "no", + "gps_code": "1WN5", + "local_code": "1WN5" + }, + { + "id": "45953", + "ident": "1WT6", + "type": "heliport", + "name": "Overlake Hospital EMS Heliport", + "latitude_deg": "47.621667", + "longitude_deg": "-122.187778", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Bellevue", + "scheduled_service": "no", + "gps_code": "1WT6", + "local_code": "1WT6" + }, + { + "id": "322118", + "ident": "1WV0", + "type": "heliport", + "name": "Potomac Valley Hospital Heliport", + "latitude_deg": "39.4104", + "longitude_deg": "-79.003233", + "elevation_ft": "878", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Keyser", + "scheduled_service": "no", + "gps_code": "1WV0", + "local_code": "1WV0" + }, + { + "id": "8751", + "ident": "1XA0", + "type": "small_airport", + "name": "Rab Ranch Airport", + "latitude_deg": "30.793699", + "longitude_deg": "-97.901199", + "elevation_ft": "1095", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Florence", + "scheduled_service": "no", + "gps_code": "1XA0", + "local_code": "1XA0" + }, + { + "id": "8752", + "ident": "1XA1", + "type": "small_airport", + "name": "Sky Acres Airport", + "latitude_deg": "33.647701263427734", + "longitude_deg": "-97.8290023803711", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bowie", + "scheduled_service": "no", + "gps_code": "1XA1", + "local_code": "1XA1" + }, + { + "id": "8753", + "ident": "1XA2", + "type": "small_airport", + "name": "Chase Field Industrial Airport", + "latitude_deg": "28.362444", + "longitude_deg": "-97.661917", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beeville", + "scheduled_service": "no", + "iata_code": "NIR", + "local_code": "TX2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chase_Field_Industrial_Complex", + "keywords": "1XA2, Naval Air Station Chase Field, Beeville Municipal Airport" + }, + { + "id": "8754", + "ident": "1XA3", + "type": "heliport", + "name": "Christus Spohn South Heliport", + "latitude_deg": "27.684799194335938", + "longitude_deg": "-97.377197265625", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no", + "gps_code": "1XA3", + "local_code": "1XA3" + }, + { + "id": "8755", + "ident": "1XA4", + "type": "small_airport", + "name": "Mikeska Field", + "latitude_deg": "29.87380027770996", + "longitude_deg": "-96.00440216064453", + "elevation_ft": "161", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brookshire", + "scheduled_service": "no", + "gps_code": "1XA4", + "local_code": "1XA4" + }, + { + "id": "8756", + "ident": "1XA5", + "type": "small_airport", + "name": "Flying Armadillo Field", + "latitude_deg": "30.135069", + "longitude_deg": "-97.148581", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paige", + "scheduled_service": "no", + "gps_code": "1XA5", + "local_code": "1XA5" + }, + { + "id": "8757", + "ident": "1XA6", + "type": "small_airport", + "name": "Tailwheel Acres Airport", + "latitude_deg": "33.47370147705078", + "longitude_deg": "-97.12239837646484", + "elevation_ft": "702", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Valley View", + "scheduled_service": "no", + "gps_code": "1XA6", + "local_code": "1XA6" + }, + { + "id": "8758", + "ident": "1XA7", + "type": "small_airport", + "name": "Gloster Aerodrome", + "latitude_deg": "29.733400344848633", + "longitude_deg": "-96.05919647216797", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sealy", + "scheduled_service": "no", + "gps_code": "1XA7", + "local_code": "1XA7" + }, + { + "id": "8759", + "ident": "1XA8", + "type": "small_airport", + "name": "Hackberry Airport", + "latitude_deg": "32.23249816894531", + "longitude_deg": "-96.39749908447266", + "elevation_ft": "433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Chatfield", + "scheduled_service": "no", + "gps_code": "1XA8", + "local_code": "1XA8" + }, + { + "id": "8760", + "ident": "1XA9", + "type": "heliport", + "name": "Life Flight North Fuel Heliport", + "latitude_deg": "29.943899154663086", + "longitude_deg": "-95.52940368652344", + "elevation_ft": "122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tomball", + "scheduled_service": "no", + "gps_code": "1XA9", + "local_code": "1XA9" + }, + { + "id": "8761", + "ident": "1XS0", + "type": "closed", + "name": "Double U Ranch Airport", + "latitude_deg": "29.921638", + "longitude_deg": "-98.481653", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Spring Branch", + "scheduled_service": "no", + "keywords": "1XS0" + }, + { + "id": "8762", + "ident": "1XS1", + "type": "small_airport", + "name": "Dunham Field", + "latitude_deg": "29.93829917907715", + "longitude_deg": "-95.04660034179688", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crosby", + "scheduled_service": "no", + "gps_code": "1XS1", + "local_code": "1XS1" + }, + { + "id": "8763", + "ident": "1XS2", + "type": "small_airport", + "name": "Skye Dance Airport", + "latitude_deg": "30.384228", + "longitude_deg": "-97.426285", + "elevation_ft": "532", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Elgin", + "scheduled_service": "no", + "gps_code": "1XS2", + "local_code": "1XS2" + }, + { + "id": "8764", + "ident": "1XS3", + "type": "heliport", + "name": "John Peter Smith Health Network Heliport", + "latitude_deg": "32.7275", + "longitude_deg": "-97.326111", + "elevation_ft": "756", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "1XS3", + "local_code": "1XS3" + }, + { + "id": "8765", + "ident": "1XS4", + "type": "closed", + "name": "Barton Field", + "latitude_deg": "30.453501", + "longitude_deg": "-97.255501", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Taylor", + "scheduled_service": "no", + "gps_code": "1XS4", + "local_code": "1XS4" + }, + { + "id": "8766", + "ident": "1XS5", + "type": "heliport", + "name": "St. David's North Austin Medical Center Heliport", + "latitude_deg": "30.412915", + "longitude_deg": "-97.704903", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "1XS5", + "local_code": "1XS5" + }, + { + "id": "8767", + "ident": "1XS6", + "type": "heliport", + "name": "Baylor Scott & White Medical Center Hillcrest Heliport", + "latitude_deg": "31.489318", + "longitude_deg": "-97.158455", + "elevation_ft": "566", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no", + "gps_code": "1XS6", + "local_code": "1XS6", + "keywords": "Hillcrest Baptist Hospital Heliport" + }, + { + "id": "8768", + "ident": "1XS7", + "type": "closed", + "name": "Heath Canyon Airport", + "latitude_deg": "29.450199", + "longitude_deg": "-102.832001", + "elevation_ft": "1857", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Terlingua", + "scheduled_service": "no", + "gps_code": "1XS7", + "local_code": "1XS7" + }, + { + "id": "8769", + "ident": "1XS8", + "type": "small_airport", + "name": "Pinon Ranch Airport", + "latitude_deg": "29.63383", + "longitude_deg": "-100.375729", + "elevation_ft": "1640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no", + "gps_code": "1XS8", + "local_code": "1XS8" + }, + { + "id": "8770", + "ident": "1XS9", + "type": "closed", + "name": "Beefmaster's Best Airport", + "latitude_deg": "28.395599", + "longitude_deg": "-98.220802", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Three Rivers", + "scheduled_service": "no", + "keywords": "1XS9" + }, + { + "id": "8771", + "ident": "1Y3", + "type": "small_airport", + "name": "Judge Lewis Field Mt Ayr Municipal Airport", + "latitude_deg": "40.705501556399994", + "longitude_deg": "-94.2238006592", + "elevation_ft": "1265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Mount Ayr", + "scheduled_service": "no", + "gps_code": "1Y3", + "local_code": "1Y3" + }, + { + "id": "8772", + "ident": "1Y5", + "type": "small_airport", + "name": "New Hampton Municipal Airport", + "latitude_deg": "43.08720016479492", + "longitude_deg": "-92.34320068359375", + "elevation_ft": "1173", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "New Hampton", + "scheduled_service": "no", + "gps_code": "1Y5", + "local_code": "1Y5" + }, + { + "id": "8773", + "ident": "1Y9", + "type": "small_airport", + "name": "Paullina Municipal Airport", + "latitude_deg": "42.98830032348633", + "longitude_deg": "-95.66449737548828", + "elevation_ft": "1385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Paullina", + "scheduled_service": "no", + "gps_code": "1Y9", + "local_code": "1Y9" + }, + { + "id": "8774", + "ident": "1Z1", + "type": "small_airport", + "name": "Grand Canyon Bar Ten Airstrip", + "latitude_deg": "36.258614", + "longitude_deg": "-113.231159", + "elevation_ft": "4100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Littlefield", + "scheduled_service": "no", + "iata_code": "GCT", + "local_code": "1Z1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Canyon_Bar_10_Airport", + "keywords": "Webbs Ranch" + }, + { + "id": "8775", + "ident": "1Z9", + "type": "seaplane_base", + "name": "Ellamar Seaplane Base", + "latitude_deg": "60.893818", + "longitude_deg": "-146.704038", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ellamar", + "scheduled_service": "no", + "iata_code": "ELW", + "local_code": "1Z9" + }, + { + "id": "45274", + "ident": "20AK", + "type": "small_airport", + "name": "Owen Field", + "latitude_deg": "61.504079", + "longitude_deg": "-149.895591", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "20AK", + "local_code": "20AK" + }, + { + "id": "8776", + "ident": "20AL", + "type": "heliport", + "name": "Runkle Stagefield Army Heliport", + "latitude_deg": "31.33880043029785", + "longitude_deg": "-86.0916976928711", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker/Elba", + "scheduled_service": "no", + "gps_code": "20AL", + "local_code": "20AL" + }, + { + "id": "8777", + "ident": "20AR", + "type": "small_airport", + "name": "Rak Airport", + "latitude_deg": "35.30789948", + "longitude_deg": "-92.32019806", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Guy", + "scheduled_service": "no", + "gps_code": "20AR", + "local_code": "20AR" + }, + { + "id": "8778", + "ident": "20AZ", + "type": "closed", + "name": "Ed's Field", + "latitude_deg": "32.684378", + "longitude_deg": "-111.50202", + "elevation_ft": "1644", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Picacho", + "scheduled_service": "no", + "keywords": "E71, 20AZ" + }, + { + "id": "8779", + "ident": "20CA", + "type": "heliport", + "name": "Clayton Heliport", + "latitude_deg": "33.603665", + "longitude_deg": "-114.644587", + "elevation_ft": "261", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Blythe", + "scheduled_service": "no", + "gps_code": "20CA", + "local_code": "20CA", + "keywords": "blythe, clayton" + }, + { + "id": "8780", + "ident": "20CL", + "type": "small_airport", + "name": "Mysterious Valley Airport", + "latitude_deg": "38.749298095703125", + "longitude_deg": "-122.36699676513672", + "elevation_ft": "1410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pope Valley", + "scheduled_service": "no", + "gps_code": "20CL", + "local_code": "20CL" + }, + { + "id": "8781", + "ident": "20CO", + "type": "heliport", + "name": "Lookout Center Field Heliport", + "latitude_deg": "39.73465", + "longitude_deg": "-105.205024", + "elevation_ft": "5918", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Golden", + "scheduled_service": "no", + "gps_code": "20CO", + "local_code": "20CO", + "keywords": "Lookout Center Rooftop Heliport" + }, + { + "id": "8782", + "ident": "20CT", + "type": "closed", + "name": "Global Development Facility Heliport", + "latitude_deg": "41.342318", + "longitude_deg": "-72.093025", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "New London", + "scheduled_service": "no", + "keywords": "20CT" + }, + { + "id": "8783", + "ident": "20E", + "type": "heliport", + "name": "Valleywise Health Medical Center Heliport", + "latitude_deg": "33.456859", + "longitude_deg": "-112.026684", + "elevation_ft": "1117", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "local_code": "20E", + "keywords": "Maricopa Medical Center Heliport" + }, + { + "id": "8784", + "ident": "20FA", + "type": "closed", + "name": "Golden Land Ranch Airport", + "latitude_deg": "27.3962", + "longitude_deg": "-80.920601", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Okeechobee", + "scheduled_service": "no", + "gps_code": "20FA", + "local_code": "20FA" + }, + { + "id": "8785", + "ident": "20FD", + "type": "small_airport", + "name": "Pratt Airport", + "latitude_deg": "30.425500869750977", + "longitude_deg": "-83.57599639892578", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "20FD", + "local_code": "20FD" + }, + { + "id": "8786", + "ident": "20FL", + "type": "small_airport", + "name": "Lake Suzy Estates Airport", + "latitude_deg": "27.042600631713867", + "longitude_deg": "-82.043701171875", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Port Charlotte", + "scheduled_service": "no", + "gps_code": "20FL", + "local_code": "20FL" + }, + { + "id": "8787", + "ident": "20GA", + "type": "small_airport", + "name": "Earl L. Small Jr. Field/Stockmar Airport", + "latitude_deg": "33.756500244099996", + "longitude_deg": "-84.88469696039999", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Villa Rica", + "scheduled_service": "no", + "gps_code": "20GA", + "local_code": "20GA" + }, + { + "id": "347508", + "ident": "20IA", + "type": "small_airport", + "name": "Hobbes Field", + "latitude_deg": "41.521576", + "longitude_deg": "-93.801634", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Cumming", + "scheduled_service": "no", + "gps_code": "20IA", + "local_code": "20IA" + }, + { + "id": "45383", + "ident": "20ID", + "type": "small_airport", + "name": "Harrington Airport", + "latitude_deg": "43.720439", + "longitude_deg": "-116.005667", + "elevation_ft": "4200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Idaho City", + "scheduled_service": "no", + "gps_code": "20ID", + "local_code": "20ID" + }, + { + "id": "8788", + "ident": "20II", + "type": "small_airport", + "name": "Kay Air Airport", + "latitude_deg": "39.58720016479492", + "longitude_deg": "-86.27559661865234", + "elevation_ft": "651", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Mooresville", + "scheduled_service": "no", + "gps_code": "20II", + "local_code": "20II" + }, + { + "id": "8789", + "ident": "20IL", + "type": "heliport", + "name": "Palos Community Hospital Heliport", + "latitude_deg": "41.66913", + "longitude_deg": "-87.812392", + "elevation_ft": "717", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Palos Heights", + "scheduled_service": "no", + "gps_code": "20IL", + "local_code": "20IL" + }, + { + "id": "8790", + "ident": "20IN", + "type": "small_airport", + "name": "Canary's Airport", + "latitude_deg": "39.51390075683594", + "longitude_deg": "-86.05139923095703", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "20IN", + "local_code": "20IN" + }, + { + "id": "8791", + "ident": "20IS", + "type": "small_airport", + "name": "Mitek Airport", + "latitude_deg": "42.49720001220703", + "longitude_deg": "-89.79180145263672", + "elevation_ft": "777", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Winslow", + "scheduled_service": "no", + "gps_code": "20IS", + "local_code": "20IS" + }, + { + "id": "8792", + "ident": "20K", + "type": "small_airport", + "name": "Quail Creek Airport", + "latitude_deg": "65.35399627685547", + "longitude_deg": "-149.76199340820312", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Quail Creek", + "scheduled_service": "no", + "gps_code": "20K", + "local_code": "20K" + }, + { + "id": "8793", + "ident": "20KS", + "type": "small_airport", + "name": "Airpark Estates Airport", + "latitude_deg": "37.67580032348633", + "longitude_deg": "-96.88529968261719", + "elevation_ft": "1340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Augusta", + "scheduled_service": "no", + "gps_code": "20KS", + "local_code": "20KS" + }, + { + "id": "8794", + "ident": "20KY", + "type": "small_airport", + "name": "Madi's Meadows Airport", + "latitude_deg": "38.815704", + "longitude_deg": "-84.674006", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Verona", + "scheduled_service": "no", + "gps_code": "20KY", + "local_code": "20KY" + }, + { + "id": "8795", + "ident": "20LA", + "type": "heliport", + "name": "Leonard J. Chabert Medical Center Heliport", + "latitude_deg": "29.569178", + "longitude_deg": "-90.687503", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Houma", + "scheduled_service": "no", + "gps_code": "20LA", + "local_code": "20LA" + }, + { + "id": "322011", + "ident": "20LL", + "type": "heliport", + "name": "Abraham Lincoln Memorial Hospital Heliport", + "latitude_deg": "40.153042", + "longitude_deg": "-89.390726", + "elevation_ft": "583", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "20LL", + "local_code": "20LL" + }, + { + "id": "8796", + "ident": "20LS", + "type": "small_airport", + "name": "Clark Field", + "latitude_deg": "30.623949", + "longitude_deg": "-91.032427", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Zachary", + "scheduled_service": "no", + "gps_code": "LA15", + "local_code": "LA15", + "keywords": "20LS" + }, + { + "id": "8797", + "ident": "20MA", + "type": "heliport", + "name": "WCVB-TV Heliport", + "latitude_deg": "42.304154", + "longitude_deg": "-71.227058", + "elevation_ft": "157", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Needham", + "scheduled_service": "no", + "gps_code": "20MA", + "local_code": "20MA" + }, + { + "id": "299724", + "ident": "20MD", + "type": "heliport", + "name": "Anne Arundel Medical Center Heliport", + "latitude_deg": "38.99052", + "longitude_deg": "-76.534243", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Annapolis", + "scheduled_service": "no", + "gps_code": "20MD", + "local_code": "20MD", + "keywords": "2MD9" + }, + { + "id": "45447", + "ident": "20ME", + "type": "heliport", + "name": "Jerry Douglass Heliport", + "latitude_deg": "44.058333", + "longitude_deg": "-70.098611", + "elevation_ft": "252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Lisbon", + "scheduled_service": "no", + "gps_code": "20ME", + "local_code": "20ME" + }, + { + "id": "8798", + "ident": "20MI", + "type": "heliport", + "name": "Hawks Landing Heliport", + "latitude_deg": "42.71206", + "longitude_deg": "-82.588502", + "elevation_ft": "613", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Marine City", + "scheduled_service": "no", + "gps_code": "20MI", + "local_code": "20MI" + }, + { + "id": "8799", + "ident": "20MO", + "type": "small_airport", + "name": "Royal Wood Aerodrome", + "latitude_deg": "39.358299255371094", + "longitude_deg": "-94.31690216064453", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kearney", + "scheduled_service": "no", + "gps_code": "20MO", + "local_code": "20MO" + }, + { + "id": "345556", + "ident": "20MS", + "type": "small_airport", + "name": "Dixon Airport", + "latitude_deg": "31.831118", + "longitude_deg": "-90.654598", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Barlow", + "scheduled_service": "no", + "gps_code": "20MS", + "local_code": "20MS" + }, + { + "id": "322237", + "ident": "20MT", + "type": "small_airport", + "name": "Prevost Airport", + "latitude_deg": "47.691667", + "longitude_deg": "-104.588056", + "elevation_ft": "2348", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Lambert", + "scheduled_service": "no", + "gps_code": "20MT", + "local_code": "20MT" + }, + { + "id": "8800", + "ident": "20NC", + "type": "small_airport", + "name": "Mountain View Airport", + "latitude_deg": "35.59239959716797", + "longitude_deg": "-81.05590057373047", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Sherrills Ford", + "scheduled_service": "no", + "gps_code": "20NC", + "local_code": "20NC" + }, + { + "id": "8801", + "ident": "20ND", + "type": "small_airport", + "name": "Crooked Lake Airstrip", + "latitude_deg": "47.653900146484375", + "longitude_deg": "-100.89099884033203", + "elevation_ft": "1900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Turtle Lake", + "scheduled_service": "no", + "gps_code": "20ND", + "local_code": "20ND" + }, + { + "id": "8802", + "ident": "20NE", + "type": "heliport", + "name": "Bryan Memorial Hospital Heliport", + "latitude_deg": "40.79610061645508", + "longitude_deg": "-96.6521987915039", + "elevation_ft": "1186", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "20NE", + "local_code": "20NE" + }, + { + "id": "45534", + "ident": "20NJ", + "type": "heliport", + "name": "Liberty National Golf Club Heliport", + "latitude_deg": "40.698194", + "longitude_deg": "-74.072417", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Jersey City", + "scheduled_service": "no", + "gps_code": "20NJ", + "local_code": "20NJ" + }, + { + "id": "330672", + "ident": "20NR", + "type": "heliport", + "name": "Atrium Health Waxhaw Heliport", + "latitude_deg": "34.963055", + "longitude_deg": "-80.7635", + "elevation_ft": "588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Waxhaw", + "scheduled_service": "no", + "gps_code": "20NR", + "local_code": "20NR", + "keywords": "CHS Waxhaw Heliport" + }, + { + "id": "8804", + "ident": "20NY", + "type": "small_airport", + "name": "Stafford Airport", + "latitude_deg": "43.0088996887207", + "longitude_deg": "-78.04309844970703", + "elevation_ft": "891", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Stafford", + "scheduled_service": "no", + "gps_code": "20NY", + "local_code": "20NY" + }, + { + "id": "8805", + "ident": "20OH", + "type": "closed", + "name": "Kruggel Airport", + "latitude_deg": "41.142984", + "longitude_deg": "-82.02855", + "elevation_ft": "1055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Litchfield", + "scheduled_service": "no", + "keywords": "20OH" + }, + { + "id": "8806", + "ident": "20OI", + "type": "heliport", + "name": "Medcenter Hospital Heliport", + "latitude_deg": "40.569801330566406", + "longitude_deg": "-83.12020111083984", + "elevation_ft": "985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "20OI", + "local_code": "20OI" + }, + { + "id": "8807", + "ident": "20OK", + "type": "closed", + "name": "Will and Wiley's Aerodrome", + "latitude_deg": "36.325699", + "longitude_deg": "-95.646896", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Claremore", + "scheduled_service": "no", + "keywords": "20OK" + }, + { + "id": "8808", + "ident": "20OR", + "type": "small_airport", + "name": "Warner's Airport", + "latitude_deg": "45.29725", + "longitude_deg": "-122.47517", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Redland", + "scheduled_service": "no", + "gps_code": "20OR", + "local_code": "20OR" + }, + { + "id": "8809", + "ident": "20PA", + "type": "closed", + "name": "Reichdrill Heliport", + "latitude_deg": "40.903702", + "longitude_deg": "-78.2295", + "elevation_ft": "1419", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philipsburg", + "scheduled_service": "no", + "keywords": "20PA" + }, + { + "id": "8810", + "ident": "20PN", + "type": "heliport", + "name": "Msd Landing Area Heliport", + "latitude_deg": "40.21369934082031", + "longitude_deg": "-75.30819702148438", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "West Point", + "scheduled_service": "no", + "gps_code": "20PN", + "local_code": "20PN" + }, + { + "id": "8811", + "ident": "20SC", + "type": "closed", + "name": "O Neal Field", + "latitude_deg": "35.0065", + "longitude_deg": "-82.264297", + "elevation_ft": "929", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Greer", + "scheduled_service": "no", + "gps_code": "20SC", + "local_code": "20SC" + }, + { + "id": "327832", + "ident": "20SD", + "type": "small_airport", + "name": "Lutgen Airport", + "latitude_deg": "44.448888", + "longitude_deg": "-96.505786", + "elevation_ft": "1764", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "White", + "scheduled_service": "no", + "gps_code": "20SD", + "local_code": "20SD" + }, + { + "id": "45829", + "ident": "20TA", + "type": "small_airport", + "name": "Mag Drop Airport", + "latitude_deg": "33.559167", + "longitude_deg": "-96.409444", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bells", + "scheduled_service": "no", + "gps_code": "20TA", + "local_code": "20TA" + }, + { + "id": "8812", + "ident": "20TE", + "type": "small_airport", + "name": "Reece Ranch Airport", + "latitude_deg": "32.19599914550781", + "longitude_deg": "-97.08920288085938", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Itasca", + "scheduled_service": "no", + "gps_code": "20TE", + "local_code": "20TE" + }, + { + "id": "8813", + "ident": "20TN", + "type": "heliport", + "name": "Knox County Sheriffs Office Heliport", + "latitude_deg": "36.0886001587", + "longitude_deg": "-83.84420013430001", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Knoxville", + "scheduled_service": "no", + "gps_code": "20TN", + "local_code": "20TN" + }, + { + "id": "8814", + "ident": "20TS", + "type": "small_airport", + "name": "Bains Private Airport", + "latitude_deg": "29.809900283813477", + "longitude_deg": "-99.06809997558594", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bandera", + "scheduled_service": "no", + "gps_code": "20TS", + "local_code": "20TS" + }, + { + "id": "338679", + "ident": "20TT", + "type": "small_airport", + "name": "Gone With the Wind Airport", + "latitude_deg": "30.753859", + "longitude_deg": "-97.961767", + "elevation_ft": "1061", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Liberty Hill", + "scheduled_service": "no", + "gps_code": "20TT", + "local_code": "20TT" + }, + { + "id": "8815", + "ident": "20TX", + "type": "heliport", + "name": "Peterson Regional Medical Center Heliport", + "latitude_deg": "30.043611", + "longitude_deg": "-99.151111", + "elevation_ft": "1639", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kerrville", + "scheduled_service": "no", + "gps_code": "20TX", + "local_code": "20TX" + }, + { + "id": "345768", + "ident": "20UT", + "type": "heliport", + "name": "Mountain West Medical Center Heliport", + "latitude_deg": "40.566001", + "longitude_deg": "-112.296984", + "elevation_ft": "4729", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Tooele", + "scheduled_service": "no", + "gps_code": "20UT", + "local_code": "20UT" + }, + { + "id": "8816", + "ident": "20VA", + "type": "small_airport", + "name": "Woodford Airpark", + "latitude_deg": "38.082401", + "longitude_deg": "-77.488297", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Woodford", + "scheduled_service": "no", + "gps_code": "20VA", + "local_code": "20VA" + }, + { + "id": "8817", + "ident": "20VG", + "type": "small_airport", + "name": "Hawk Ridge Airport", + "latitude_deg": "37.288700103759766", + "longitude_deg": "-79.4468994140625", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Bedford", + "scheduled_service": "no", + "gps_code": "20VG", + "local_code": "20VG" + }, + { + "id": "8818", + "ident": "20WA", + "type": "closed", + "name": "Skatter Creek Airport", + "latitude_deg": "46.824799", + "longitude_deg": "-123.035004", + "elevation_ft": "174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Rochester", + "scheduled_service": "no", + "keywords": "20WA" + }, + { + "id": "8819", + "ident": "20WI", + "type": "small_airport", + "name": "Harju Airport", + "latitude_deg": "44.021400451660156", + "longitude_deg": "-89.07929992675781", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Redgranite", + "scheduled_service": "no", + "gps_code": "20WI", + "local_code": "20WI" + }, + { + "id": "346849", + "ident": "20XA", + "type": "heliport", + "name": "St Luke's Hospital at the Vintage Heliport", + "latitude_deg": "29.990094", + "longitude_deg": "-95.5681", + "elevation_ft": "123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "20XA", + "local_code": "20XA" + }, + { + "id": "8820", + "ident": "20XS", + "type": "small_airport", + "name": "Klutts Field", + "latitude_deg": "32.83539962768555", + "longitude_deg": "-96.37799835205078", + "elevation_ft": "495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Chisholm", + "scheduled_service": "no", + "gps_code": "20XS", + "local_code": "20XS" + }, + { + "id": "8821", + "ident": "21AK", + "type": "small_airport", + "name": "Montana Creek Airport", + "latitude_deg": "62.082611", + "longitude_deg": "-150.066931", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Talkeetna", + "scheduled_service": "no", + "gps_code": "21AK", + "local_code": "21AK" + }, + { + "id": "8822", + "ident": "21AL", + "type": "heliport", + "name": "Skelly Stagefield Army Heliport", + "latitude_deg": "31.287700653076172", + "longitude_deg": "-86.13009643554688", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker/Opp", + "scheduled_service": "no", + "gps_code": "21AL", + "local_code": "21AL" + }, + { + "id": "8823", + "ident": "21AR", + "type": "small_airport", + "name": "Skarda/Tollville Airport", + "latitude_deg": "34.71760177612305", + "longitude_deg": "-91.53900146484375", + "elevation_ft": "218", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Hazen", + "scheduled_service": "no", + "gps_code": "21AR", + "local_code": "21AR" + }, + { + "id": "8824", + "ident": "21AZ", + "type": "small_airport", + "name": "White Mountain Lake Airport", + "latitude_deg": "34.350877", + "longitude_deg": "-109.964046", + "elevation_ft": "6066", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Show Low", + "scheduled_service": "no", + "gps_code": "21AZ", + "local_code": "21AZ" + }, + { + "id": "8825", + "ident": "21CA", + "type": "heliport", + "name": "CRC-Huntington Beach Heliport", + "latitude_deg": "33.683833", + "longitude_deg": "-118.031778", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Huntington Beach", + "scheduled_service": "no", + "gps_code": "21CA", + "local_code": "21CA", + "keywords": "Area Energy LLC" + }, + { + "id": "8826", + "ident": "21CL", + "type": "heliport", + "name": "Sheriff's Heliport", + "latitude_deg": "34.70000076293945", + "longitude_deg": "-118.05899810791016", + "elevation_ft": "2367", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "21CL", + "local_code": "21CL" + }, + { + "id": "345776", + "ident": "21CN", + "type": "heliport", + "name": "Vermont Corridor County Admin Emergency Helicopter Landing Facility", + "latitude_deg": "34.064632", + "longitude_deg": "-118.291104", + "elevation_ft": "544", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "21CN", + "local_code": "21CN" + }, + { + "id": "8827", + "ident": "21CO", + "type": "closed", + "name": "Lookout Center Parking Lot Heliport", + "latitude_deg": "39.734405", + "longitude_deg": "-105.206001", + "elevation_ft": "5898", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Golden", + "scheduled_service": "no", + "keywords": "21CO" + }, + { + "id": "8828", + "ident": "21FA", + "type": "closed", + "name": "Rockledge Airport", + "latitude_deg": "28.299086", + "longitude_deg": "-80.720781", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Rockledge", + "scheduled_service": "no", + "gps_code": "21FA", + "local_code": "21FA" + }, + { + "id": "8829", + "ident": "21FD", + "type": "small_airport", + "name": "Land's Field", + "latitude_deg": "30.694599151611328", + "longitude_deg": "-85.31079864501953", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Marianna", + "scheduled_service": "no", + "gps_code": "21FD", + "local_code": "21FD" + }, + { + "id": "8830", + "ident": "21FL", + "type": "small_airport", + "name": "Kings Field", + "latitude_deg": "28.50860023498535", + "longitude_deg": "-81.80030059814453", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Clermont", + "scheduled_service": "no", + "gps_code": "21FL", + "local_code": "21FL" + }, + { + "id": "8831", + "ident": "21GA", + "type": "heliport", + "name": "Piedmont Hospital-Newnan Heliport", + "latitude_deg": "33.3926010132", + "longitude_deg": "-84.817199707", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Newnan", + "scheduled_service": "no", + "gps_code": "21GA", + "local_code": "21GA" + }, + { + "id": "8832", + "ident": "21GE", + "type": "small_airport", + "name": "Deer Crossing Airport", + "latitude_deg": "34.54970169067383", + "longitude_deg": "-83.82219696044922", + "elevation_ft": "1390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "21GE", + "local_code": "21GE" + }, + { + "id": "8833", + "ident": "21H", + "type": "seaplane_base", + "name": "Skyline Seaplane Base", + "latitude_deg": "48.489077", + "longitude_deg": "-122.676773", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Anacortes", + "scheduled_service": "no", + "local_code": "21H" + }, + { + "id": "301245", + "ident": "21ID", + "type": "heliport", + "name": "Nordman / Phillabaum Heliport", + "latitude_deg": "48.631483378700004", + "longitude_deg": "-116.871174574", + "elevation_ft": "2440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "scheduled_service": "no", + "gps_code": "21ID" + }, + { + "id": "8834", + "ident": "21II", + "type": "heliport", + "name": "The King's Daughters' Heliport", + "latitude_deg": "38.739200592041016", + "longitude_deg": "-85.38159942626953", + "elevation_ft": "531", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "21II", + "local_code": "21II" + }, + { + "id": "8835", + "ident": "21IL", + "type": "heliport", + "name": "Sarah Bush Lincoln Health Center Heliport", + "latitude_deg": "39.48889923095703", + "longitude_deg": "-88.27330017089844", + "elevation_ft": "702", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mattoon", + "scheduled_service": "no", + "gps_code": "21IL", + "local_code": "21IL" + }, + { + "id": "8836", + "ident": "21IN", + "type": "closed", + "name": "Minneman Airport", + "latitude_deg": "40.4184", + "longitude_deg": "-85.355499", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hartford City", + "scheduled_service": "no", + "keywords": "21IN" + }, + { + "id": "8837", + "ident": "21JY", + "type": "seaplane_base", + "name": "Soaring Sun Seaplane Base", + "latitude_deg": "39.70000076293945", + "longitude_deg": "-74.15280151367188", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Harvey Cedars", + "scheduled_service": "no", + "gps_code": "21JY", + "local_code": "21JY" + }, + { + "id": "8838", + "ident": "21KS", + "type": "heliport", + "name": "University of Kansas Health System St Francis Heliport", + "latitude_deg": "39.056592", + "longitude_deg": "-95.695708", + "elevation_ft": "1114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Topeka", + "scheduled_service": "no", + "gps_code": "21KS", + "local_code": "21KS", + "keywords": "St Francis Hospital" + }, + { + "id": "8839", + "ident": "21KY", + "type": "small_airport", + "name": "Lincoln Farm Airport", + "latitude_deg": "37.537601470947266", + "longitude_deg": "-85.73750305175781", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Hodgenville", + "scheduled_service": "no", + "gps_code": "21KY", + "local_code": "21KY" + }, + { + "id": "8840", + "ident": "21LA", + "type": "small_airport", + "name": "Southern Helicopters Airport", + "latitude_deg": "30.296899795532227", + "longitude_deg": "-91.21499633789062", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no", + "gps_code": "21LA", + "local_code": "21LA" + }, + { + "id": "8841", + "ident": "21LS", + "type": "small_airport", + "name": "Solitude Airstrip", + "latitude_deg": "30.870399475097656", + "longitude_deg": "-91.43109893798828", + "elevation_ft": "181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "St Francisville", + "scheduled_service": "no", + "gps_code": "21LS", + "local_code": "21LS" + }, + { + "id": "8842", + "ident": "21M", + "type": "seaplane_base", + "name": "Currier's Seaplane Base", + "latitude_deg": "45.462501525878906", + "longitude_deg": "-69.61949920654297", + "elevation_ft": "1028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Greenville Junction", + "scheduled_service": "no", + "gps_code": "21M", + "local_code": "21M" + }, + { + "id": "8843", + "ident": "21MA", + "type": "heliport", + "name": "Advance Materials Corp Heliport", + "latitude_deg": "42.45539855957031", + "longitude_deg": "-73.20230102539062", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Pittsfield", + "scheduled_service": "no", + "gps_code": "21MA", + "local_code": "21MA" + }, + { + "id": "333397", + "ident": "21MD", + "type": "closed", + "name": "Carroll Airport", + "latitude_deg": "38.99489", + "longitude_deg": "-75.885723", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Ridgely", + "scheduled_service": "no", + "keywords": "21MD" + }, + { + "id": "8844", + "ident": "21MI", + "type": "heliport", + "name": "Adams Heliport", + "latitude_deg": "42.571982", + "longitude_deg": "-83.390558", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Orchard Lake", + "scheduled_service": "no", + "gps_code": "21MI", + "local_code": "21MI" + }, + { + "id": "8845", + "ident": "21MN", + "type": "closed", + "name": "Amundson Seaplane Base", + "latitude_deg": "44.9291", + "longitude_deg": "-93.617502", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Orono/Lake Minnetonka", + "scheduled_service": "no", + "keywords": "21MN" + }, + { + "id": "8846", + "ident": "21MO", + "type": "closed", + "name": "Martins Airport", + "latitude_deg": "39.5014", + "longitude_deg": "-94.177399", + "elevation_ft": "995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lawson", + "scheduled_service": "no", + "keywords": "21MO" + }, + { + "id": "340872", + "ident": "21MS", + "type": "small_airport", + "name": "Blythe Bayou Farms Airport", + "latitude_deg": "34.912015", + "longitude_deg": "-90.213564", + "elevation_ft": "209", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Walls", + "scheduled_service": "no", + "gps_code": "21MS", + "local_code": "21MS" + }, + { + "id": "345687", + "ident": "21MT", + "type": "small_airport", + "name": "Harris Runway Airport", + "latitude_deg": "45.747841", + "longitude_deg": "-111.072664", + "elevation_ft": "4582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Bozeman", + "scheduled_service": "no", + "gps_code": "21MT", + "local_code": "21MT" + }, + { + "id": "8847", + "ident": "21MU", + "type": "small_airport", + "name": "The Peninsula Airport", + "latitude_deg": "36.56489944458008", + "longitude_deg": "-93.50959777832031", + "elevation_ft": "1015", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Shell Knob", + "scheduled_service": "no", + "gps_code": "21MU", + "local_code": "21MU" + }, + { + "id": "8848", + "ident": "21N", + "type": "small_airport", + "name": "Mattituck Airport", + "latitude_deg": "40.98759841918945", + "longitude_deg": "-72.51899719238281", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Mattituck", + "scheduled_service": "no", + "gps_code": "21N", + "local_code": "21N" + }, + { + "id": "8849", + "ident": "21NC", + "type": "heliport", + "name": "Isbell Heliport", + "latitude_deg": "36.18669891357422", + "longitude_deg": "-76.27940368652344", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hertford", + "scheduled_service": "no", + "gps_code": "21NC", + "local_code": "21NC" + }, + { + "id": "8850", + "ident": "21ND", + "type": "small_airport", + "name": "Rosenau Airport", + "latitude_deg": "48.58219909667969", + "longitude_deg": "-100.8550033569336", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Upham", + "scheduled_service": "no", + "gps_code": "21ND", + "local_code": "21ND" + }, + { + "id": "8851", + "ident": "21NE", + "type": "closed", + "name": "Byron Airport", + "latitude_deg": "40.0042", + "longitude_deg": "-97.773102", + "elevation_ft": "1670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Byron", + "scheduled_service": "no", + "keywords": "21NE" + }, + { + "id": "8852", + "ident": "21NH", + "type": "small_airport", + "name": "Propwash Airport", + "latitude_deg": "42.916900634765625", + "longitude_deg": "-70.935302734375", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Kensington", + "scheduled_service": "no", + "gps_code": "21NH", + "local_code": "21NH" + }, + { + "id": "8853", + "ident": "21NJ", + "type": "closed", + "name": "Bergen County Police & Fire Academy Heliport", + "latitude_deg": "41.056801", + "longitude_deg": "-74.182602", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Mahwah", + "scheduled_service": "no", + "keywords": "21NJ" + }, + { + "id": "8854", + "ident": "21NK", + "type": "small_airport", + "name": "Don Kichote-Quixote Airport", + "latitude_deg": "42.552799", + "longitude_deg": "-75.191102", + "elevation_ft": "1750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Morris", + "scheduled_service": "no", + "gps_code": "21NK", + "local_code": "21NK" + }, + { + "id": "8855", + "ident": "21NY", + "type": "heliport", + "name": "Gautieri Heliport", + "latitude_deg": "42.99340057373047", + "longitude_deg": "-78.17839813232422", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Batavia", + "scheduled_service": "no", + "gps_code": "21NY", + "local_code": "21NY" + }, + { + "id": "45722", + "ident": "21OG", + "type": "small_airport", + "name": "Ames Airport", + "latitude_deg": "44.771806", + "longitude_deg": "-122.970743", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Jefferson", + "scheduled_service": "no", + "gps_code": "21OG", + "local_code": "21OG" + }, + { + "id": "8856", + "ident": "21OH", + "type": "heliport", + "name": "Lodi Community Hospital Heliport", + "latitude_deg": "41.0359001159668", + "longitude_deg": "-82.01429748535156", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lodi", + "scheduled_service": "no", + "gps_code": "21OH", + "local_code": "21OH" + }, + { + "id": "8857", + "ident": "21OI", + "type": "small_airport", + "name": "Clearwater Airpark", + "latitude_deg": "39.12810134887695", + "longitude_deg": "-84.09269714355469", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Owensville", + "scheduled_service": "no", + "gps_code": "21OI", + "local_code": "21OI" + }, + { + "id": "8858", + "ident": "21OK", + "type": "heliport", + "name": "Triad Eye Medical Clinic Heliport", + "latitude_deg": "36.07429885864258", + "longitude_deg": "-95.88719940185547", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tulsa", + "scheduled_service": "no", + "gps_code": "21OK", + "local_code": "21OK" + }, + { + "id": "8859", + "ident": "21OR", + "type": "heliport", + "name": "Katu Heliport", + "latitude_deg": "45.527099609375", + "longitude_deg": "-122.64399719238281", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "21OR", + "local_code": "21OR" + }, + { + "id": "8860", + "ident": "21PA", + "type": "closed", + "name": "Ryon Heliport", + "latitude_deg": "40.6651", + "longitude_deg": "-76.186095", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pottsville", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ryon_Heliport", + "keywords": "21PA" + }, + { + "id": "43026", + "ident": "21PN", + "type": "heliport", + "name": "Carlisle Regional Medical Center", + "latitude_deg": "40.183331", + "longitude_deg": "-77.222808", + "elevation_ft": "1115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Carlisle", + "scheduled_service": "no", + "gps_code": "21PN", + "local_code": "21PN" + }, + { + "id": "8862", + "ident": "21SC", + "type": "small_airport", + "name": "Graham Airport", + "latitude_deg": "34.347900390625", + "longitude_deg": "-79.87999725341797", + "elevation_ft": "154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Darlington", + "scheduled_service": "no", + "gps_code": "21SC", + "local_code": "21SC" + }, + { + "id": "8863", + "ident": "21TA", + "type": "heliport", + "name": "Cypress Fairbanks Medical Center Heliport", + "latitude_deg": "29.928028", + "longitude_deg": "-95.588944", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "21TA", + "local_code": "21TA" + }, + { + "id": "8864", + "ident": "21TE", + "type": "small_airport", + "name": "Seaberg Ranch Airport", + "latitude_deg": "30.012699127197266", + "longitude_deg": "-94.92410278320312", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dayton", + "scheduled_service": "no", + "gps_code": "21TE", + "local_code": "21TE" + }, + { + "id": "8865", + "ident": "21TN", + "type": "small_airport", + "name": "Ray's Stall Airport", + "latitude_deg": "35.980911", + "longitude_deg": "-83.53371", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Dandridge", + "scheduled_service": "no", + "gps_code": "21TN", + "local_code": "21TN" + }, + { + "id": "8866", + "ident": "21TS", + "type": "heliport", + "name": "Baycoast Medical Center Heliport", + "latitude_deg": "29.747396", + "longitude_deg": "-94.947011", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Baytown", + "scheduled_service": "no", + "gps_code": "21TS", + "local_code": "21TS" + }, + { + "id": "8867", + "ident": "21TX", + "type": "small_airport", + "name": "Shilling's Airport", + "latitude_deg": "33.49959945678711", + "longitude_deg": "-94.09439849853516", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Texarkana", + "scheduled_service": "no", + "gps_code": "21TX", + "local_code": "21TX" + }, + { + "id": "8868", + "ident": "21VA", + "type": "small_airport", + "name": "Eagles Nest Airport", + "latitude_deg": "37.303382", + "longitude_deg": "-75.93574", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Cape Charles", + "scheduled_service": "no", + "gps_code": "21VA", + "local_code": "21VA" + }, + { + "id": "8869", + "ident": "21W", + "type": "small_airport", + "name": "Ranger Creek State Airport", + "latitude_deg": "47.012901", + "longitude_deg": "-121.533997", + "elevation_ft": "2650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Greenwater", + "scheduled_service": "no", + "local_code": "21W" + }, + { + "id": "8870", + "ident": "21WA", + "type": "heliport", + "name": "St Joseph Community Hospital Heliport", + "latitude_deg": "45.62480163574219", + "longitude_deg": "-122.57599639892578", + "elevation_ft": "313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Vancouver", + "scheduled_service": "no", + "gps_code": "21WA", + "local_code": "21WA" + }, + { + "id": "8871", + "ident": "21WI", + "type": "heliport", + "name": "Hudson Hospital & Clinic Heliport", + "latitude_deg": "44.962399", + "longitude_deg": "-92.717795", + "elevation_ft": "858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Hudson", + "scheduled_service": "no", + "gps_code": "21WI", + "local_code": "21WI" + }, + { + "id": "8872", + "ident": "21XS", + "type": "small_airport", + "name": "Houston Airpark", + "latitude_deg": "29.519727", + "longitude_deg": "-95.27453", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "21XS", + "local_code": "21XS" + }, + { + "id": "8873", + "ident": "22AK", + "type": "closed", + "name": "Helmericks Airport", + "latitude_deg": "70.428338", + "longitude_deg": "-150.402896", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Deadhorse", + "scheduled_service": "no", + "keywords": "22AK" + }, + { + "id": "8874", + "ident": "22AL", + "type": "heliport", + "name": "Stinson Stagefield Army Heliport", + "latitude_deg": "31.36079978942871", + "longitude_deg": "-86.01370239257812", + "elevation_ft": "379", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker/New Brockton", + "scheduled_service": "no", + "gps_code": "22AL", + "local_code": "22AL" + }, + { + "id": "8875", + "ident": "22AR", + "type": "heliport", + "name": "Willow Creek Women's Hospital Heliport", + "latitude_deg": "36.1349983215332", + "longitude_deg": "-94.185302734375", + "elevation_ft": "1194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Johnson", + "scheduled_service": "no", + "gps_code": "22AR", + "local_code": "22AR" + }, + { + "id": "8876", + "ident": "22AZ", + "type": "heliport", + "name": "Western Arizona Regional Medical Center Heliport", + "latitude_deg": "35.111356", + "longitude_deg": "-114.554304", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bullhead City", + "scheduled_service": "no", + "gps_code": "22AZ", + "local_code": "22AZ" + }, + { + "id": "8877", + "ident": "22CA", + "type": "seaplane_base", + "name": "Commodore Center Seaplane Base", + "latitude_deg": "37.878893", + "longitude_deg": "-122.512697", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mill Valley", + "scheduled_service": "no", + "gps_code": "22CA", + "local_code": "22CA" + }, + { + "id": "45328", + "ident": "22CD", + "type": "heliport", + "name": "Platte Valley Medical Center Heliport", + "latitude_deg": "39.96603", + "longitude_deg": "-104.76745", + "elevation_ft": "5115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Brighton", + "scheduled_service": "no", + "gps_code": "22CD", + "local_code": "22CD" + }, + { + "id": "8878", + "ident": "22CL", + "type": "small_airport", + "name": "Double Tree Farm Airport", + "latitude_deg": "39.29990005493164", + "longitude_deg": "-121.35900115966797", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Marysville", + "scheduled_service": "no", + "gps_code": "22CL", + "local_code": "22CL" + }, + { + "id": "8879", + "ident": "22CN", + "type": "heliport", + "name": "ABC-TV Heliport", + "latitude_deg": "34.103466", + "longitude_deg": "-118.279366", + "elevation_ft": "422", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "22CN", + "local_code": "22CN" + }, + { + "id": "8880", + "ident": "22CO", + "type": "small_airport", + "name": "Flying E Airport", + "latitude_deg": "39.958057403599994", + "longitude_deg": "-104.485557556", + "elevation_ft": "5100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Brighton", + "scheduled_service": "no", + "gps_code": "22CO", + "local_code": "22CO" + }, + { + "id": "8881", + "ident": "22D", + "type": "small_airport", + "name": "Bandel Airport", + "latitude_deg": "40.1306", + "longitude_deg": "-80.096199", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Eighty Four", + "scheduled_service": "no", + "local_code": "22D" + }, + { + "id": "8882", + "ident": "22FA", + "type": "small_airport", + "name": "Hidden River Airport", + "latitude_deg": "27.3031005859375", + "longitude_deg": "-82.27259826660156", + "elevation_ft": "47", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sarasota", + "scheduled_service": "no", + "gps_code": "22FA", + "local_code": "22FA" + }, + { + "id": "45348", + "ident": "22FD", + "type": "heliport", + "name": "HCA Florida Northwest Rehabilitation Center Heliport", + "latitude_deg": "30.393889", + "longitude_deg": "-86.471389", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Destin", + "scheduled_service": "no", + "gps_code": "22FD", + "local_code": "22FD", + "keywords": "Destin Emergency Care Center Heliport" + }, + { + "id": "8883", + "ident": "22FL", + "type": "closed", + "name": "Farm Air Service Airport", + "latitude_deg": "30.6019", + "longitude_deg": "-85.1399", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Altha", + "scheduled_service": "no", + "keywords": "22FL" + }, + { + "id": "8884", + "ident": "22GA", + "type": "small_airport", + "name": "Riverside Airport", + "latitude_deg": "34.429298", + "longitude_deg": "-85.054398", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fairmount", + "scheduled_service": "no", + "gps_code": "22GA", + "local_code": "22GA" + }, + { + "id": "45368", + "ident": "22GE", + "type": "heliport", + "name": "Hawks Ridge Heliport", + "latitude_deg": "34.257778", + "longitude_deg": "-84.274444", + "elevation_ft": "1121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Ball Ground", + "scheduled_service": "no", + "gps_code": "22GE", + "local_code": "22GE" + }, + { + "id": "334894", + "ident": "22HI", + "type": "heliport", + "name": "Maui Memorial Medical Heliport", + "latitude_deg": "20.885242", + "longitude_deg": "-156.490352", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Wailuku", + "scheduled_service": "no", + "gps_code": "22HI", + "local_code": "22HI", + "keywords": "22hi, wailuku, maui memorial medical center" + }, + { + "id": "352231", + "ident": "22IA", + "type": "heliport", + "name": "Marengo Memorial Hospital Heliport", + "latitude_deg": "41.802079", + "longitude_deg": "-92.072296", + "elevation_ft": "739", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Marengo", + "scheduled_service": "no", + "gps_code": "22IA", + "local_code": "22IA" + }, + { + "id": "8885", + "ident": "22ID", + "type": "small_airport", + "name": "Treasure Gulch Airport", + "latitude_deg": "43.944698333740234", + "longitude_deg": "-115.94100189208984", + "elevation_ft": "4350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Placerville", + "scheduled_service": "no", + "gps_code": "22ID", + "local_code": "22ID" + }, + { + "id": "8886", + "ident": "22II", + "type": "small_airport", + "name": "Lewis Airport", + "latitude_deg": "37.91699981689453", + "longitude_deg": "-87.76110076904297", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "22II", + "local_code": "22II" + }, + { + "id": "8887", + "ident": "22IL", + "type": "small_airport", + "name": "Heller Airport", + "latitude_deg": "42.412795", + "longitude_deg": "-90.399606", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Galena", + "scheduled_service": "no", + "gps_code": "22IL", + "local_code": "22IL" + }, + { + "id": "8888", + "ident": "22IN", + "type": "closed", + "name": "Mooney Field", + "latitude_deg": "41.3483", + "longitude_deg": "-85.0075", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Auburn", + "scheduled_service": "no", + "keywords": "22IN" + }, + { + "id": "8889", + "ident": "22IS", + "type": "small_airport", + "name": "Johnson Farm Airport", + "latitude_deg": "40.726200103759766", + "longitude_deg": "-91.06990051269531", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Carman", + "scheduled_service": "no", + "gps_code": "22IS", + "local_code": "22IS" + }, + { + "id": "8890", + "ident": "22JY", + "type": "heliport", + "name": "Hess State Street Heliport", + "latitude_deg": "40.54059982299805", + "longitude_deg": "-74.25689697265625", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Perth Amboy", + "scheduled_service": "no", + "gps_code": "22JY", + "local_code": "22JY" + }, + { + "id": "8891", + "ident": "22KS", + "type": "heliport", + "name": "St Francis Regional Medical Center Heliport", + "latitude_deg": "37.70000076293945", + "longitude_deg": "-97.33280181884766", + "elevation_ft": "1382", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wichita", + "scheduled_service": "no", + "gps_code": "22KS", + "local_code": "22KS" + }, + { + "id": "8892", + "ident": "22KY", + "type": "heliport", + "name": "Churchill Downs Heliport", + "latitude_deg": "38.20280075073242", + "longitude_deg": "-85.76969909667969", + "elevation_ft": "455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "22KY", + "local_code": "22KY" + }, + { + "id": "8893", + "ident": "22LA", + "type": "small_airport", + "name": "WD Flyers Airport", + "latitude_deg": "30.997228", + "longitude_deg": "-91.882277", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Simmesport", + "scheduled_service": "no", + "gps_code": "22LA", + "local_code": "22LA" + }, + { + "id": "8894", + "ident": "22LL", + "type": "closed", + "name": "Pike's Airport", + "latitude_deg": "41.3134", + "longitude_deg": "-88.860603", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Ottawa", + "scheduled_service": "no", + "keywords": "22LL" + }, + { + "id": "8895", + "ident": "22LS", + "type": "small_airport", + "name": "Couvillion Airport", + "latitude_deg": "30.39780044555664", + "longitude_deg": "-91.9738998413086", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Arnaudville", + "scheduled_service": "no", + "gps_code": "22LS", + "local_code": "22LS" + }, + { + "id": "8896", + "ident": "22MA", + "type": "heliport", + "name": "Poole's Heliport", + "latitude_deg": "42.636199951171875", + "longitude_deg": "-70.61869812011719", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Rockport", + "scheduled_service": "no", + "gps_code": "22MA", + "local_code": "22MA" + }, + { + "id": "8897", + "ident": "22MD", + "type": "small_airport", + "name": "Laura's Landing Airport", + "latitude_deg": "39.58689880371094", + "longitude_deg": "-77.6449966430664", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Hagerstown", + "scheduled_service": "no", + "gps_code": "22MD", + "local_code": "22MD" + }, + { + "id": "331479", + "ident": "22ME", + "type": "heliport", + "name": "Bar Harbor Heliport", + "latitude_deg": "44.381672", + "longitude_deg": "-68.203942", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Bar Harbor", + "scheduled_service": "no", + "gps_code": "22ME", + "local_code": "22ME" + }, + { + "id": "8898", + "ident": "22MI", + "type": "heliport", + "name": "Munson Medical Center Heliport", + "latitude_deg": "44.76060104370117", + "longitude_deg": "-85.64399719238281", + "elevation_ft": "629", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Traverse City", + "scheduled_service": "no", + "gps_code": "22MI", + "local_code": "22MI" + }, + { + "id": "8899", + "ident": "22MN", + "type": "seaplane_base", + "name": "Eastmans Medicine Lake Seaplane Base", + "latitude_deg": "44.99470138549805", + "longitude_deg": "-93.42610168457031", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "22MN", + "local_code": "22MN" + }, + { + "id": "8900", + "ident": "22MO", + "type": "small_airport", + "name": "Belly Acres Ranch Airport", + "latitude_deg": "37.261199951171875", + "longitude_deg": "-92.3667984008789", + "elevation_ft": "1285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Mountain Grove", + "scheduled_service": "no", + "gps_code": "22MO", + "local_code": "22MO" + }, + { + "id": "45498", + "ident": "22MS", + "type": "small_airport", + "name": "Sky Landings Airport", + "latitude_deg": "30.836486", + "longitude_deg": "-88.57056", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Lucedale", + "scheduled_service": "no", + "gps_code": "22MS", + "local_code": "22MS" + }, + { + "id": "8901", + "ident": "22MT", + "type": "small_airport", + "name": "Wounded Buck Ranch Airport", + "latitude_deg": "48.128342", + "longitude_deg": "-114.16975", + "elevation_ft": "2905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Kalispell", + "scheduled_service": "no", + "gps_code": "22MT", + "local_code": "22MT" + }, + { + "id": "45678", + "ident": "22NA", + "type": "heliport", + "name": "Davis Regional Heliport", + "latitude_deg": "35.818417", + "longitude_deg": "-80.830417", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Statesville", + "scheduled_service": "no", + "gps_code": "22NA", + "local_code": "22NA" + }, + { + "id": "8902", + "ident": "22NC", + "type": "small_airport", + "name": "Flint Ridge Airport", + "latitude_deg": "35.821098", + "longitude_deg": "-79.4683", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Siler City", + "scheduled_service": "no", + "gps_code": "22NC", + "local_code": "22NC", + "keywords": "Flying Dove Field" + }, + { + "id": "8903", + "ident": "22NE", + "type": "closed", + "name": "Grone Airport", + "latitude_deg": "40.297001", + "longitude_deg": "-97.798103", + "elevation_ft": "1643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Davenport", + "scheduled_service": "no", + "keywords": "22NE" + }, + { + "id": "8904", + "ident": "22NJ", + "type": "closed", + "name": "Our Lady's Heliport", + "latitude_deg": "39.982899", + "longitude_deg": "-74.828499", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Mount Holly", + "scheduled_service": "no", + "keywords": "22NJ" + }, + { + "id": "8905", + "ident": "22NK", + "type": "heliport", + "name": "Alstar North Heliport", + "latitude_deg": "42.4827995300293", + "longitude_deg": "-79.3292007446289", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Dunkirk", + "scheduled_service": "no", + "gps_code": "22NK", + "local_code": "22NK" + }, + { + "id": "45693", + "ident": "22NR", + "type": "closed", + "name": "Bully Field", + "latitude_deg": "36.153611", + "longitude_deg": "-79.400556", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Burlington", + "scheduled_service": "no", + "keywords": "22NR" + }, + { + "id": "350109", + "ident": "22NV", + "type": "heliport", + "name": "Humboldt General Hospital EMS Heliport", + "latitude_deg": "40.972073", + "longitude_deg": "-117.728859", + "elevation_ft": "4336", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Winnemucca", + "scheduled_service": "no", + "gps_code": "22NV", + "local_code": "22NV" + }, + { + "id": "8906", + "ident": "22NY", + "type": "heliport", + "name": "New York State Police Troop A Headquarters Heliport", + "latitude_deg": "43.031349", + "longitude_deg": "-78.186543", + "elevation_ft": "903", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Batavia", + "scheduled_service": "no", + "gps_code": "22NY", + "local_code": "22NY" + }, + { + "id": "8907", + "ident": "22OG", + "type": "small_airport", + "name": "Withrotor Airport", + "latitude_deg": "42.27539825439453", + "longitude_deg": "-120.39399719238281", + "elevation_ft": "4920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Lakeview", + "scheduled_service": "no", + "gps_code": "22OG", + "local_code": "22OG" + }, + { + "id": "8908", + "ident": "22OH", + "type": "heliport", + "name": "Galenstein Park Heliport", + "latitude_deg": "39.260101318359375", + "longitude_deg": "-84.3644027709961", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Blue Ash", + "scheduled_service": "no", + "gps_code": "22OH", + "local_code": "22OH" + }, + { + "id": "8909", + "ident": "22OI", + "type": "closed", + "name": "Giovannone Airport", + "latitude_deg": "41.148414", + "longitude_deg": "-80.839362", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lordstown", + "scheduled_service": "no", + "local_code": "22OI", + "keywords": "22OI" + }, + { + "id": "45721", + "ident": "22OK", + "type": "small_airport", + "name": "Smith Field", + "latitude_deg": "34.315161", + "longitude_deg": "-97.177492", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Springer", + "scheduled_service": "no", + "gps_code": "22OK", + "local_code": "22OK" + }, + { + "id": "8910", + "ident": "22OR", + "type": "small_airport", + "name": "Iron Crown Airport", + "latitude_deg": "44.94179916381836", + "longitude_deg": "-122.76300048828125", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Silverton", + "scheduled_service": "no", + "gps_code": "22OR", + "local_code": "22OR" + }, + { + "id": "8911", + "ident": "22PA", + "type": "heliport", + "name": "Uniontown Hospital Heliport", + "latitude_deg": "39.900901794433594", + "longitude_deg": "-79.74479675292969", + "elevation_ft": "1115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Uniontown", + "scheduled_service": "no", + "gps_code": "22PA", + "local_code": "22PA" + }, + { + "id": "8912", + "ident": "22PN", + "type": "heliport", + "name": "St. Joseph Medical Center Heliport", + "latitude_deg": "40.375833", + "longitude_deg": "-75.979722", + "elevation_ft": "326", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Reading", + "scheduled_service": "no", + "gps_code": "22PN", + "local_code": "22PN" + }, + { + "id": "45755", + "ident": "22PS", + "type": "heliport", + "name": "Montrose High School Heliport", + "latitude_deg": "41.843419", + "longitude_deg": "-75.842586", + "elevation_ft": "1740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Montrose", + "scheduled_service": "no", + "gps_code": "22PS", + "local_code": "22PS" + }, + { + "id": "8913", + "ident": "22SC", + "type": "heliport", + "name": "Spartanburg Regional Medical Center Heliport", + "latitude_deg": "34.96780014038086", + "longitude_deg": "-81.94110107421875", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Spartanburg", + "scheduled_service": "no", + "gps_code": "22SC", + "local_code": "22SC" + }, + { + "id": "8914", + "ident": "22TA", + "type": "closed", + "name": "Standard Industries Airport", + "latitude_deg": "29.341299", + "longitude_deg": "-98.659697", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "keywords": "22TA" + }, + { + "id": "8915", + "ident": "22TE", + "type": "small_airport", + "name": "Fenner Ranch Airport", + "latitude_deg": "29.193300247192383", + "longitude_deg": "-96.68910217285156", + "elevation_ft": "126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cordele", + "scheduled_service": "no", + "gps_code": "22TE", + "local_code": "22TE" + }, + { + "id": "8916", + "ident": "22TN", + "type": "heliport", + "name": "Julkev Heliport", + "latitude_deg": "36.38719940185547", + "longitude_deg": "-86.56330108642578", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Gallatin", + "scheduled_service": "no", + "gps_code": "22TN", + "local_code": "22TN" + }, + { + "id": "8917", + "ident": "22TS", + "type": "heliport", + "name": "Gray Steel Heliport", + "latitude_deg": "29.791041", + "longitude_deg": "-95.438761", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "22TS", + "local_code": "22TS" + }, + { + "id": "45845", + "ident": "22TX", + "type": "heliport", + "name": "South Austin Medical Center Heliport", + "latitude_deg": "30.225399", + "longitude_deg": "-97.774276", + "elevation_ft": "687", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "22TX", + "local_code": "22TX" + }, + { + "id": "334900", + "ident": "22UT", + "type": "small_airport", + "name": "Larkspur Airstrip", + "latitude_deg": "37.025837", + "longitude_deg": "-111.629156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Big Water", + "scheduled_service": "no", + "gps_code": "22UT", + "local_code": "22UT", + "keywords": "22ut, big water, larkspur" + }, + { + "id": "8918", + "ident": "22VA", + "type": "heliport", + "name": "Wythe County Community Hospital Heliport", + "latitude_deg": "36.95009994506836", + "longitude_deg": "-81.08309936523438", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Wytheville", + "scheduled_service": "no", + "gps_code": "22VA", + "local_code": "22VA" + }, + { + "id": "8919", + "ident": "22VG", + "type": "closed", + "name": "Alpha Natural Resources LLC Heliport", + "latitude_deg": "36.697139", + "longitude_deg": "-81.995226", + "elevation_ft": "2130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Abingdon", + "scheduled_service": "no", + "keywords": "22VG" + }, + { + "id": "325322", + "ident": "22VT", + "type": "heliport", + "name": "Northeastern Vermont Regional Hospital Heliport", + "latitude_deg": "44.446359", + "longitude_deg": "-72.010503", + "elevation_ft": "766", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Johnsbury", + "scheduled_service": "no", + "gps_code": "22VT", + "local_code": "22VT" + }, + { + "id": "8920", + "ident": "22WA", + "type": "small_airport", + "name": "Gollehon Airport", + "latitude_deg": "47.8202018737793", + "longitude_deg": "-118.68699645996094", + "elevation_ft": "2360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Wilbur", + "scheduled_service": "no", + "gps_code": "22WA", + "local_code": "22WA" + }, + { + "id": "8921", + "ident": "22WI", + "type": "heliport", + "name": "Community Memorial Hospital Heliport", + "latitude_deg": "44.8650016784668", + "longitude_deg": "-88.12840270996094", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Oconto Falls", + "scheduled_service": "no", + "gps_code": "22WI", + "local_code": "22WI" + }, + { + "id": "8922", + "ident": "22WN", + "type": "small_airport", + "name": "Southwind Airport", + "latitude_deg": "43.068599700927734", + "longitude_deg": "-90.21949768066406", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Dodgeville", + "scheduled_service": "no", + "gps_code": "22WN", + "local_code": "22WN" + }, + { + "id": "8923", + "ident": "22WV", + "type": "heliport", + "name": "Grafton City Hospital Heliport", + "latitude_deg": "39.34360122680664", + "longitude_deg": "-80.0291976928711", + "elevation_ft": "1271", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Grafton", + "scheduled_service": "no", + "gps_code": "22WV", + "local_code": "22WV" + }, + { + "id": "45937", + "ident": "22WY", + "type": "small_airport", + "name": "Kissack/Reynolds Airport", + "latitude_deg": "44.338056", + "longitude_deg": "-105.162117", + "elevation_ft": "4380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Rozet", + "scheduled_service": "no", + "gps_code": "22WY", + "local_code": "22WY" + }, + { + "id": "45822", + "ident": "22XA", + "type": "closed", + "name": "General Plumbing Contractors Heliport", + "latitude_deg": "29.897", + "longitude_deg": "-95.395167", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "keywords": "22XA" + }, + { + "id": "8924", + "ident": "22XS", + "type": "small_airport", + "name": "Longhorn Auxiliary Landing Strip", + "latitude_deg": "31.373693", + "longitude_deg": "-97.666654", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Hood", + "scheduled_service": "no", + "gps_code": "22XS", + "local_code": "22XS" + }, + { + "id": "8925", + "ident": "22Y", + "type": "closed", + "name": "Morey's Airport", + "latitude_deg": "46.323601", + "longitude_deg": "-94.638601", + "elevation_ft": "1225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Motley", + "scheduled_service": "no", + "keywords": "22Y" + }, + { + "id": "8926", + "ident": "23A", + "type": "closed", + "name": "Mallard Airport", + "latitude_deg": "32.500293", + "longitude_deg": "-88.269525", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "York", + "scheduled_service": "no", + "keywords": "23A" + }, + { + "id": "8927", + "ident": "23AK", + "type": "small_airport", + "name": "Yuknis Airport", + "latitude_deg": "61.59410095214844", + "longitude_deg": "-149.31100463867188", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "23AK", + "local_code": "23AK" + }, + { + "id": "8928", + "ident": "23AL", + "type": "heliport", + "name": "Tabernacle Stagefield Army Heliport", + "latitude_deg": "31.46500015258789", + "longitude_deg": "-85.84629821777344", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker/Ozark", + "scheduled_service": "no", + "gps_code": "23AL", + "local_code": "23AL" + }, + { + "id": "8929", + "ident": "23AR", + "type": "small_airport", + "name": "Classic Airstrip", + "latitude_deg": "35.82590103149414", + "longitude_deg": "-90.54720306396484", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Jonesboro", + "scheduled_service": "no", + "gps_code": "23AR", + "local_code": "23AR" + }, + { + "id": "8930", + "ident": "23AZ", + "type": "small_airport", + "name": "Moreton Airpark", + "latitude_deg": "34.019500732421875", + "longitude_deg": "-112.82599639892578", + "elevation_ft": "2455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wickenburg", + "scheduled_service": "no", + "gps_code": "23AZ", + "local_code": "23AZ" + }, + { + "id": "8931", + "ident": "23CA", + "type": "closed", + "name": "Lefko Airport", + "latitude_deg": "41.62901", + "longitude_deg": "-122.75876", + "elevation_ft": "2860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fort Jones", + "scheduled_service": "no", + "keywords": "23CA" + }, + { + "id": "45319", + "ident": "23CD", + "type": "small_airport", + "name": "Aviation Acres Airport", + "latitude_deg": "39.297425", + "longitude_deg": "-102.321222", + "elevation_ft": "4210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "23CD", + "local_code": "23CD" + }, + { + "id": "8932", + "ident": "23CL", + "type": "heliport", + "name": "Los Angeles County Men's Detention Center Main Jail Heliport", + "latitude_deg": "34.06144", + "longitude_deg": "-118.228068", + "elevation_ft": "352", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "23CL", + "local_code": "23CL" + }, + { + "id": "8933", + "ident": "23CN", + "type": "small_airport", + "name": "Douthitt Strip", + "latitude_deg": "32.789176", + "longitude_deg": "-115.528535", + "elevation_ft": "-45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "El Centro", + "scheduled_service": "no", + "gps_code": "23CN", + "local_code": "23CN" + }, + { + "id": "8934", + "ident": "23CO", + "type": "small_airport", + "name": "High Mesa Airport", + "latitude_deg": "38.84389877319336", + "longitude_deg": "-103.98999786376953", + "elevation_ft": "6000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Rush", + "scheduled_service": "no", + "gps_code": "23CO", + "local_code": "23CO" + }, + { + "id": "8935", + "ident": "23CT", + "type": "heliport", + "name": "Blanchette Heliport", + "latitude_deg": "41.7859001159668", + "longitude_deg": "-72.9312973022461", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "23CT", + "local_code": "23CT" + }, + { + "id": "8936", + "ident": "23D", + "type": "small_airport", + "name": "Karlstad Municipal Airport", + "latitude_deg": "48.5791015625", + "longitude_deg": "-96.54199981689453", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Karlstad", + "scheduled_service": "no", + "gps_code": "23D", + "local_code": "23D" + }, + { + "id": "45342", + "ident": "23DE", + "type": "small_airport", + "name": "Full Throttle Farm Airport", + "latitude_deg": "39.312567", + "longitude_deg": "-75.728983", + "elevation_ft": "81", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Clayton", + "scheduled_service": "no", + "gps_code": "23DE", + "local_code": "23DE" + }, + { + "id": "8937", + "ident": "23FA", + "type": "heliport", + "name": "Doral Ocean Beach Resort Heliport", + "latitude_deg": "25.825700759887695", + "longitude_deg": "-80.12120056152344", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami Beach", + "scheduled_service": "no", + "gps_code": "23FA", + "local_code": "23FA" + }, + { + "id": "8938", + "ident": "23FD", + "type": "closed", + "name": "Scott 2000 Airport", + "latitude_deg": "27.5473", + "longitude_deg": "-80.662003", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Vero Beach", + "scheduled_service": "no", + "keywords": "23FD" + }, + { + "id": "8939", + "ident": "23FL", + "type": "small_airport", + "name": "Gyro Town Usa STOLport", + "latitude_deg": "27.68440055847168", + "longitude_deg": "-82.24420166015625", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Wimauma", + "scheduled_service": "no", + "gps_code": "23FL", + "local_code": "23FL" + }, + { + "id": "8940", + "ident": "23GA", + "type": "heliport", + "name": "Hartrampf Heliport", + "latitude_deg": "33.989498138427734", + "longitude_deg": "-84.33209991455078", + "elevation_ft": "1038", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Roswell", + "scheduled_service": "no", + "gps_code": "23GA", + "local_code": "23GA" + }, + { + "id": "45371", + "ident": "23GE", + "type": "small_airport", + "name": "Lt Landing Airport", + "latitude_deg": "32.383056", + "longitude_deg": "-83.1", + "elevation_ft": "286", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Dublin", + "scheduled_service": "no", + "gps_code": "23GE", + "local_code": "23GE" + }, + { + "id": "8941", + "ident": "23IA", + "type": "heliport", + "name": "Shenandoah Hospital Heliport", + "latitude_deg": "40.75279998779297", + "longitude_deg": "-95.368896484375", + "elevation_ft": "1039", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Shenandoah", + "scheduled_service": "no", + "gps_code": "23IA", + "local_code": "23IA" + }, + { + "id": "322350", + "ident": "23ID", + "type": "small_airport", + "name": "Southfork Airport", + "latitude_deg": "43.648265", + "longitude_deg": "-114.9046972", + "elevation_ft": "5612", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Feathervlle", + "scheduled_service": "no", + "gps_code": "23ID", + "local_code": "23ID" + }, + { + "id": "8942", + "ident": "23IL", + "type": "heliport", + "name": "Amita Health-Alexian Brothers Medical Center Heliport", + "latitude_deg": "42.004744", + "longitude_deg": "-88.017907", + "elevation_ft": "707", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Elk Grove Village", + "scheduled_service": "no", + "gps_code": "23IL", + "local_code": "23IL" + }, + { + "id": "8943", + "ident": "23IN", + "type": "heliport", + "name": "J W Riley Hospital For Children Heliport", + "latitude_deg": "39.77690124511719", + "longitude_deg": "-86.18060302734375", + "elevation_ft": "787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "23IN", + "local_code": "23IN" + }, + { + "id": "8944", + "ident": "23IS", + "type": "small_airport", + "name": "Clark Airport", + "latitude_deg": "40.32590103149414", + "longitude_deg": "-90.82759857177734", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "23IS", + "local_code": "23IS" + }, + { + "id": "8945", + "ident": "23JY", + "type": "heliport", + "name": "The Plant Place Heliport", + "latitude_deg": "39.657901763916016", + "longitude_deg": "-75.07009887695312", + "elevation_ft": "99", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Clayton", + "scheduled_service": "no", + "gps_code": "23JY", + "local_code": "23JY" + }, + { + "id": "8946", + "ident": "23KS", + "type": "small_airport", + "name": "Ney Ultralight Flightpark", + "latitude_deg": "39.070121", + "longitude_deg": "-94.948987", + "elevation_ft": "963", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Bonner Springs", + "scheduled_service": "no", + "local_code": "5KS9", + "keywords": "23KS, Ney Airport" + }, + { + "id": "8947", + "ident": "23KY", + "type": "small_airport", + "name": "Barnes Farm Airport", + "latitude_deg": "37.23080062866211", + "longitude_deg": "-88.318603515625", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Burna", + "scheduled_service": "no", + "gps_code": "23KY", + "local_code": "23KY" + }, + { + "id": "8948", + "ident": "23LA", + "type": "small_airport", + "name": "Warner-Thunder Hill Airport", + "latitude_deg": "30.630199432373047", + "longitude_deg": "-90.07949829101562", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Covington", + "scheduled_service": "no", + "gps_code": "23LA", + "local_code": "23LA" + }, + { + "id": "8949", + "ident": "23LL", + "type": "heliport", + "name": "Rotor Swing Heliport", + "latitude_deg": "42.16780090332031", + "longitude_deg": "-88.02649688720703", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Palatine", + "scheduled_service": "no", + "gps_code": "23LL", + "local_code": "23LL" + }, + { + "id": "8950", + "ident": "23LS", + "type": "closed", + "name": "Midstream Cameron East Heliport", + "latitude_deg": "29.808599", + "longitude_deg": "-93.343597", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cameron", + "scheduled_service": "no", + "keywords": "23LS" + }, + { + "id": "8951", + "ident": "23MA", + "type": "heliport", + "name": "Westford Regency Heliport", + "latitude_deg": "42.5630989074707", + "longitude_deg": "-71.431396484375", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Westford", + "scheduled_service": "no", + "gps_code": "23MA", + "local_code": "23MA" + }, + { + "id": "8952", + "ident": "23MD", + "type": "seaplane_base", + "name": "Breezecroft Seaplane Base", + "latitude_deg": "39.25559997558594", + "longitude_deg": "-76.20690155029297", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Chestertown", + "scheduled_service": "no", + "gps_code": "23MD", + "local_code": "23MD" + }, + { + "id": "8953", + "ident": "23ME", + "type": "closed", + "name": "Dyer's Field", + "latitude_deg": "44.526402", + "longitude_deg": "-70.663597", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Rumford", + "scheduled_service": "no", + "keywords": "23ME" + }, + { + "id": "8954", + "ident": "23MI", + "type": "closed", + "name": "Betsie River Airstrip", + "latitude_deg": "44.573601", + "longitude_deg": "-85.889", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Thompsonville", + "scheduled_service": "no", + "keywords": "23MI" + }, + { + "id": "8955", + "ident": "23MN", + "type": "small_airport", + "name": "High Grove Airport", + "latitude_deg": "43.6411018371582", + "longitude_deg": "-92.02210235595703", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Preston", + "scheduled_service": "no", + "gps_code": "23MN", + "local_code": "23MN" + }, + { + "id": "8956", + "ident": "23MO", + "type": "small_airport", + "name": "Oerke Enterprises Airport", + "latitude_deg": "38.220001220703125", + "longitude_deg": "-94.49610137939453", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Butler", + "scheduled_service": "no", + "gps_code": "23MO", + "local_code": "23MO" + }, + { + "id": "354618", + "ident": "23MS", + "type": "small_airport", + "name": "Smith Farms Airport", + "latitude_deg": "30.677393", + "longitude_deg": "-88.551247", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Moss Point", + "scheduled_service": "no", + "gps_code": "23MS", + "local_code": "23MS" + }, + { + "id": "8957", + "ident": "23MT", + "type": "small_airport", + "name": "Waterfall Airport", + "latitude_deg": "45.65719985961914", + "longitude_deg": "-111.04000091552734", + "elevation_ft": "4950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Bozeman", + "scheduled_service": "no", + "gps_code": "23MT", + "local_code": "23MT" + }, + { + "id": "8958", + "ident": "23N", + "type": "small_airport", + "name": "Bayport Aerodrome", + "latitude_deg": "40.75804", + "longitude_deg": "-73.052716", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Bayport", + "scheduled_service": "no", + "local_code": "23N" + }, + { + "id": "8959", + "ident": "23NC", + "type": "heliport", + "name": "Duplin General Hospital Heliport", + "latitude_deg": "34.964698791503906", + "longitude_deg": "-77.96170043945312", + "elevation_ft": "126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Kenansville", + "scheduled_service": "no", + "gps_code": "23NC", + "local_code": "23NC" + }, + { + "id": "8960", + "ident": "23ND", + "type": "small_airport", + "name": "Minnkota Private Airport", + "latitude_deg": "47.08219909667969", + "longitude_deg": "-101.26699829101562", + "elevation_ft": "2110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Center", + "scheduled_service": "no", + "gps_code": "23ND", + "local_code": "23ND" + }, + { + "id": "8961", + "ident": "23NE", + "type": "small_airport", + "name": "Stromsburg Municipal Airport", + "latitude_deg": "41.12919998168945", + "longitude_deg": "-97.57759857177734", + "elevation_ft": "1675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Stromsburg", + "scheduled_service": "no", + "gps_code": "23NE", + "local_code": "23NE" + }, + { + "id": "8962", + "ident": "23NH", + "type": "small_airport", + "name": "Windswept Airport", + "latitude_deg": "43.13029861", + "longitude_deg": "-72.01499939", + "elevation_ft": "1289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Windsor", + "scheduled_service": "no", + "gps_code": "23NH", + "local_code": "23NH" + }, + { + "id": "8963", + "ident": "23NJ", + "type": "small_airport", + "name": "Alliance Airport", + "latitude_deg": "39.50469970703125", + "longitude_deg": "-75.09310150146484", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Pittsgrove", + "scheduled_service": "no", + "gps_code": "23NJ", + "local_code": "23NJ" + }, + { + "id": "8964", + "ident": "23NK", + "type": "small_airport", + "name": "Long Acre Farms Airport", + "latitude_deg": "43.11249923706055", + "longitude_deg": "-77.3125", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Macedon", + "scheduled_service": "no", + "gps_code": "23NK", + "local_code": "23NK" + }, + { + "id": "45691", + "ident": "23NR", + "type": "small_airport", + "name": "Whitfield'S East Airport", + "latitude_deg": "35.560556", + "longitude_deg": "-76.234722", + "elevation_ft": "1", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "23NR", + "local_code": "23NR" + }, + { + "id": "8965", + "ident": "23NY", + "type": "small_airport", + "name": "Jolamtra Landing Area Airport", + "latitude_deg": "42.27980041503906", + "longitude_deg": "-77.33999633789062", + "elevation_ft": "1700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Bath", + "scheduled_service": "no", + "gps_code": "23NY", + "local_code": "23NY" + }, + { + "id": "45711", + "ident": "23OA", + "type": "closed", + "name": "Dade Field", + "latitude_deg": "40.050278", + "longitude_deg": "-84.013056", + "elevation_ft": "1138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Christianburg", + "scheduled_service": "no", + "keywords": "23OA" + }, + { + "id": "8966", + "ident": "23OH", + "type": "closed", + "name": "Kettering-Samaritan Health Center Heliport", + "latitude_deg": "40.6445", + "longitude_deg": "-82.228798", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Loudonville", + "scheduled_service": "no", + "keywords": "23OH" + }, + { + "id": "8967", + "ident": "23OI", + "type": "heliport", + "name": "Associated Enterprises Heliport", + "latitude_deg": "41.70669937133789", + "longitude_deg": "-81.2748031616211", + "elevation_ft": "664", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Painesville", + "scheduled_service": "no", + "gps_code": "23OI", + "local_code": "23OI" + }, + { + "id": "8968", + "ident": "23OK", + "type": "heliport", + "name": "Lindsay Municipal Hospital Heliport", + "latitude_deg": "34.838891", + "longitude_deg": "-97.626911", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lindsay", + "scheduled_service": "no", + "gps_code": "23OK", + "local_code": "23OK", + "keywords": "MASH Heliport" + }, + { + "id": "8969", + "ident": "23OR", + "type": "heliport", + "name": "Saxon's Heliport", + "latitude_deg": "44.04679870605469", + "longitude_deg": "-122.9520034790039", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "23OR", + "local_code": "23OR" + }, + { + "id": "8970", + "ident": "23PA", + "type": "small_airport", + "name": "Cedar Acres Private Group Airport", + "latitude_deg": "40.500099182128906", + "longitude_deg": "-75.14679718017578", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Revere", + "scheduled_service": "no", + "gps_code": "23PA", + "local_code": "23PA" + }, + { + "id": "45740", + "ident": "23PN", + "type": "heliport", + "name": "Penn Highlands Clearfield Heliport", + "latitude_deg": "41.034006", + "longitude_deg": "-78.450147", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Clearfield", + "scheduled_service": "no", + "gps_code": "23PN", + "local_code": "23PN", + "keywords": "Clearfield Hospital" + }, + { + "id": "8971", + "ident": "23S", + "type": "small_airport", + "name": "Seeley Lake Airport", + "latitude_deg": "47.179100036621094", + "longitude_deg": "-113.44499969482422", + "elevation_ft": "4235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Seeley Lake", + "scheduled_service": "no", + "gps_code": "23S", + "local_code": "23S" + }, + { + "id": "8972", + "ident": "23TA", + "type": "small_airport", + "name": "Rowland R Airfield", + "latitude_deg": "33.487301", + "longitude_deg": "-96.455803", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Whitewright", + "scheduled_service": "no", + "gps_code": "23TA", + "local_code": "23TA" + }, + { + "id": "8973", + "ident": "23TE", + "type": "heliport", + "name": "Texas Regional Medical Center Heliport", + "latitude_deg": "32.78", + "longitude_deg": "-96.568056", + "elevation_ft": "492", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sunnyvale", + "scheduled_service": "no", + "gps_code": "23TE", + "local_code": "23TE" + }, + { + "id": "8974", + "ident": "23TS", + "type": "small_airport", + "name": "Bertani Ranch Airport", + "latitude_deg": "29.422700881958008", + "longitude_deg": "-100.73899841308594", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no", + "gps_code": "23TS", + "local_code": "23TS" + }, + { + "id": "8975", + "ident": "23TX", + "type": "small_airport", + "name": "The Grove Ranch Airport", + "latitude_deg": "31.245072", + "longitude_deg": "-97.531617", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gatesville", + "scheduled_service": "no", + "gps_code": "23TX", + "local_code": "23TX" + }, + { + "id": "8976", + "ident": "23VA", + "type": "small_airport", + "name": "Wheatland Airport", + "latitude_deg": "37.556894", + "longitude_deg": "-78.620181", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Buckingham", + "scheduled_service": "no", + "gps_code": "23VA", + "local_code": "23VA" + }, + { + "id": "8977", + "ident": "23VG", + "type": "small_airport", + "name": "Murdock's Holly Bu Airport", + "latitude_deg": "36.70970153808594", + "longitude_deg": "-78.4281005859375", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Boydton", + "scheduled_service": "no", + "gps_code": "23VG", + "local_code": "23VG" + }, + { + "id": "8978", + "ident": "23VT", + "type": "small_airport", + "name": "North Windham Airport", + "latitude_deg": "43.221500396728516", + "longitude_deg": "-72.71289825439453", + "elevation_ft": "1750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Londonderry", + "scheduled_service": "no", + "gps_code": "23VT", + "local_code": "23VT" + }, + { + "id": "8979", + "ident": "23WA", + "type": "heliport", + "name": "Bcag - Frederickson Heliport", + "latitude_deg": "47.082599639899996", + "longitude_deg": "-122.347000122", + "elevation_ft": "416", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Puyallup", + "scheduled_service": "no", + "gps_code": "23WA", + "local_code": "23WA" + }, + { + "id": "8980", + "ident": "23WI", + "type": "heliport", + "name": "Black River Memorial Hospital Heliport", + "latitude_deg": "44.30400085449219", + "longitude_deg": "-90.85459899902344", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Black River Falls", + "scheduled_service": "no", + "gps_code": "23WI", + "local_code": "23WI" + }, + { + "id": "8981", + "ident": "23WN", + "type": "small_airport", + "name": "Willie's Airport", + "latitude_deg": "45.91109848022461", + "longitude_deg": "-91.62850189208984", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Springbrook", + "scheduled_service": "no", + "gps_code": "23WN", + "local_code": "23WN" + }, + { + "id": "322013", + "ident": "23WS", + "type": "heliport", + "name": "Columbia St Mary's Heliport", + "latitude_deg": "43.06096", + "longitude_deg": "-87.88053", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Milwaukee", + "scheduled_service": "no", + "gps_code": "23WS", + "local_code": "23WS" + }, + { + "id": "45918", + "ident": "23WV", + "type": "small_airport", + "name": "Bocamanu Airport", + "latitude_deg": "38.025833", + "longitude_deg": "-80.982778", + "elevation_ft": "2501", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "23WV", + "local_code": "23WV" + }, + { + "id": "45939", + "ident": "23WY", + "type": "heliport", + "name": "St John'S Medical Center Heliport", + "latitude_deg": "43.48", + "longitude_deg": "-110.761944", + "elevation_ft": "6200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "23WY", + "local_code": "23WY" + }, + { + "id": "45817", + "ident": "23XA", + "type": "closed", + "name": "East Texas Medical Center Clarksville Heliport", + "latitude_deg": "33.610983", + "longitude_deg": "-95.099125", + "elevation_ft": "413", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Clarksville", + "scheduled_service": "no", + "keywords": "23XA" + }, + { + "id": "8982", + "ident": "23XS", + "type": "small_airport", + "name": "Shorthorn Auxiliary Landing Strip", + "latitude_deg": "31.360727", + "longitude_deg": "-97.672871", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Hood", + "scheduled_service": "no", + "gps_code": "23XS", + "local_code": "23XS" + }, + { + "id": "8983", + "ident": "23Y", + "type": "closed", + "name": "Murdock Municipal Airport", + "latitude_deg": "45.222198", + "longitude_deg": "-95.4011", + "elevation_ft": "1082", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Murdock", + "scheduled_service": "no", + "keywords": "23Y" + }, + { + "id": "8984", + "ident": "24AK", + "type": "small_airport", + "name": "Toad Lake Strip", + "latitude_deg": "61.616313", + "longitude_deg": "-149.706183", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Meadow Lakes", + "scheduled_service": "no", + "gps_code": "24AK", + "local_code": "24AK" + }, + { + "id": "8985", + "ident": "24AL", + "type": "heliport", + "name": "Toth Stagefield Army Heliport", + "latitude_deg": "31.22570037841797", + "longitude_deg": "-85.56159973144531", + "elevation_ft": "318", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker/Dothan", + "scheduled_service": "no", + "gps_code": "24AL", + "local_code": "24AL" + }, + { + "id": "8986", + "ident": "24AR", + "type": "small_airport", + "name": "Griffin Agricultural Airport", + "latitude_deg": "34.201022", + "longitude_deg": "-90.952267", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Lundell", + "scheduled_service": "no", + "gps_code": "24AR", + "local_code": "24AR" + }, + { + "id": "8987", + "ident": "24AZ", + "type": "small_airport", + "name": "Pleasant Valley Airstrip", + "latitude_deg": "34.15810012817383", + "longitude_deg": "-110.93499755859375", + "elevation_ft": "5688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Young", + "scheduled_service": "no", + "gps_code": "24AZ", + "local_code": "24AZ" + }, + { + "id": "8988", + "ident": "24C", + "type": "small_airport", + "name": "Lowell City Airport", + "latitude_deg": "42.95389938354492", + "longitude_deg": "-85.34390258789062", + "elevation_ft": "681", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lowell", + "scheduled_service": "no", + "gps_code": "24C", + "local_code": "24C" + }, + { + "id": "8989", + "ident": "24CA", + "type": "heliport", + "name": "Mesa Heliport", + "latitude_deg": "34.2047", + "longitude_deg": "-118.170998", + "elevation_ft": "1520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "La Cañada Flintridge", + "scheduled_service": "no", + "gps_code": "24CA", + "local_code": "24CA" + }, + { + "id": "45327", + "ident": "24CD", + "type": "heliport", + "name": "Michigan River Ranch Heliport", + "latitude_deg": "40.567914", + "longitude_deg": "-106.060647", + "elevation_ft": "8620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Walden", + "scheduled_service": "no", + "gps_code": "24CD", + "local_code": "24CD" + }, + { + "id": "8990", + "ident": "24CL", + "type": "small_airport", + "name": "Boswell Airport", + "latitude_deg": "36.088444", + "longitude_deg": "-119.541392", + "elevation_ft": "205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Corcoran", + "scheduled_service": "no", + "gps_code": "24CL", + "local_code": "24CL", + "keywords": "Salyer Farms" + }, + { + "id": "8991", + "ident": "24CN", + "type": "closed", + "name": "Rockwell International Anaheim Helistop G/L B/201", + "latitude_deg": "33.85192", + "longitude_deg": "-117.852058", + "elevation_ft": "222", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Anaheim", + "scheduled_service": "no", + "keywords": "24CN" + }, + { + "id": "8992", + "ident": "24CO", + "type": "heliport", + "name": "Ibm Building 910 Heliport", + "latitude_deg": "40.06639862060547", + "longitude_deg": "-105.20600128173828", + "elevation_ft": "5150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Boulder", + "scheduled_service": "no", + "gps_code": "24CO", + "local_code": "24CO" + }, + { + "id": "45341", + "ident": "24CT", + "type": "small_airport", + "name": "Bee Field", + "latitude_deg": "41.582234", + "longitude_deg": "-71.968226", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Jewett City", + "scheduled_service": "no", + "gps_code": "24CT", + "local_code": "24CT" + }, + { + "id": "8993", + "ident": "24FA", + "type": "closed", + "name": "Lake Weir Seaplane Base", + "latitude_deg": "29.034401", + "longitude_deg": "-81.9506", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Oklawaha", + "scheduled_service": "no", + "keywords": "24FA" + }, + { + "id": "8994", + "ident": "24FD", + "type": "closed", + "name": "Budd Darling Heliport", + "latitude_deg": "29.3428", + "longitude_deg": "-81.480902", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Seville", + "scheduled_service": "no", + "keywords": "24FD" + }, + { + "id": "8995", + "ident": "24FL", + "type": "small_airport", + "name": "Garcon Field", + "latitude_deg": "30.495574", + "longitude_deg": "-87.086821", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "24FL", + "local_code": "24FL", + "keywords": "\"Garçon\"" + }, + { + "id": "8996", + "ident": "24GA", + "type": "heliport", + "name": "Caleb Heliport", + "latitude_deg": "33.78120040893555", + "longitude_deg": "-84.01460266113281", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Snellville", + "scheduled_service": "no", + "gps_code": "24GA", + "local_code": "24GA" + }, + { + "id": "8997", + "ident": "24IA", + "type": "small_airport", + "name": "Isley Field", + "latitude_deg": "42.51580047607422", + "longitude_deg": "-92.5197982788086", + "elevation_ft": "982", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Cedar Falls", + "scheduled_service": "no", + "gps_code": "24IA", + "local_code": "24IA" + }, + { + "id": "8998", + "ident": "24II", + "type": "heliport", + "name": "Good Samaritan Hospital Heliport", + "latitude_deg": "38.67250061035156", + "longitude_deg": "-87.54219818115234", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Vincennes", + "scheduled_service": "no", + "gps_code": "24II", + "local_code": "24II" + }, + { + "id": "8999", + "ident": "24IL", + "type": "heliport", + "name": "City of Geneseo Heliport", + "latitude_deg": "41.477500915527344", + "longitude_deg": "-90.15779876708984", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Geneseo", + "scheduled_service": "no", + "gps_code": "24IL", + "local_code": "24IL" + }, + { + "id": "9000", + "ident": "24IN", + "type": "small_airport", + "name": "Kenstin Manor Airport", + "latitude_deg": "39.26250076293945", + "longitude_deg": "-86.2874984741211", + "elevation_ft": "658", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Helmsburg", + "scheduled_service": "no", + "gps_code": "24IN", + "local_code": "24IN" + }, + { + "id": "9001", + "ident": "24IS", + "type": "heliport", + "name": "Stauss Hospital - Galena Heliport", + "latitude_deg": "42.42110061649999", + "longitude_deg": "-90.4383010864", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Galena", + "scheduled_service": "no", + "gps_code": "24IS", + "local_code": "24IS" + }, + { + "id": "9002", + "ident": "24K", + "type": "small_airport", + "name": "Krassel US Forest Service Airport", + "latitude_deg": "44.9743003845", + "longitude_deg": "-115.730003357", + "elevation_ft": "3982", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Mc Call", + "scheduled_service": "no", + "gps_code": "24K", + "local_code": "24K" + }, + { + "id": "9003", + "ident": "24KS", + "type": "closed", + "name": "Blocker Field", + "latitude_deg": "37.858299", + "longitude_deg": "-97.817802", + "elevation_ft": "1523", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Haven", + "scheduled_service": "no", + "keywords": "24KS" + }, + { + "id": "9004", + "ident": "24KY", + "type": "small_airport", + "name": "Williams Farm Airport", + "latitude_deg": "37.21670150756836", + "longitude_deg": "-87.43060302734375", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Mortons Gap", + "scheduled_service": "no", + "gps_code": "24KY", + "local_code": "24KY" + }, + { + "id": "9005", + "ident": "24LA", + "type": "heliport", + "name": "Era Helicopters Cameron Base Heliport", + "latitude_deg": "29.780544", + "longitude_deg": "-93.29268", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cameron", + "scheduled_service": "no", + "gps_code": "24LA", + "local_code": "24LA" + }, + { + "id": "9006", + "ident": "24LL", + "type": "small_airport", + "name": "Lambert Airport", + "latitude_deg": "38.085932", + "longitude_deg": "-89.460326", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pinckneyville", + "scheduled_service": "no", + "gps_code": "24LL", + "local_code": "24LL" + }, + { + "id": "9007", + "ident": "24LS", + "type": "heliport", + "name": "Midstream Cameron West Heliport", + "latitude_deg": "29.799699783325195", + "longitude_deg": "-93.34940338134766", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cameron", + "scheduled_service": "no", + "gps_code": "24LS", + "local_code": "24LS" + }, + { + "id": "9008", + "ident": "24M", + "type": "small_airport", + "name": "Wilderness Airpark", + "latitude_deg": "43.24470138549805", + "longitude_deg": "-85.71170043945312", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Kent City", + "scheduled_service": "no", + "gps_code": "24M", + "local_code": "24M" + }, + { + "id": "9009", + "ident": "24MA", + "type": "heliport", + "name": "Barre-Bassett Heliport", + "latitude_deg": "42.4359016418457", + "longitude_deg": "-72.0967025756836", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Barre", + "scheduled_service": "no", + "gps_code": "24MA", + "local_code": "24MA" + }, + { + "id": "9010", + "ident": "24MD", + "type": "heliport", + "name": "Marriott Parking Garage Rooftop Heliport", + "latitude_deg": "39.283199", + "longitude_deg": "-76.601997", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Baltimore", + "scheduled_service": "no", + "gps_code": "24MD", + "local_code": "24MD" + }, + { + "id": "9011", + "ident": "24ME", + "type": "small_airport", + "name": "Slip Knot Landing Airport", + "latitude_deg": "43.822200775146484", + "longitude_deg": "-70.44280242919922", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Windham", + "scheduled_service": "no", + "gps_code": "24ME", + "local_code": "24ME" + }, + { + "id": "9012", + "ident": "24MI", + "type": "closed", + "name": "Johnson Airport", + "latitude_deg": "42.799999", + "longitude_deg": "-85.370796", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Alto", + "scheduled_service": "no", + "keywords": "24MI" + }, + { + "id": "9013", + "ident": "24MN", + "type": "small_airport", + "name": "Bergemann Airport", + "latitude_deg": "44.00410079956055", + "longitude_deg": "-94.1780014038086", + "elevation_ft": "1001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Garden City", + "scheduled_service": "no", + "gps_code": "24MN", + "local_code": "24MN" + }, + { + "id": "9014", + "ident": "24MO", + "type": "small_airport", + "name": "Mistwood Airport", + "latitude_deg": "38.132717", + "longitude_deg": "-92.830718", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Camdenton", + "scheduled_service": "no", + "gps_code": "24MO", + "local_code": "24MO" + }, + { + "id": "9015", + "ident": "24MT", + "type": "small_airport", + "name": "Haggerty Airport", + "latitude_deg": "45.61940002441406", + "longitude_deg": "-111.09200286865234", + "elevation_ft": "5170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Bozeman", + "scheduled_service": "no", + "gps_code": "24MT", + "local_code": "24MT" + }, + { + "id": "9016", + "ident": "24MU", + "type": "small_airport", + "name": "Steele Airport", + "latitude_deg": "40.36280059814453", + "longitude_deg": "-95.4385986328125", + "elevation_ft": "1077", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Fairfax", + "scheduled_service": "no", + "gps_code": "24MU", + "local_code": "24MU" + }, + { + "id": "9017", + "ident": "24NC", + "type": "small_airport", + "name": "Mc Gee Field", + "latitude_deg": "35.1272010803", + "longitude_deg": "-80.47499847410002", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "24NC", + "local_code": "24NC" + }, + { + "id": "9018", + "ident": "24NE", + "type": "small_airport", + "name": "Orr Airport", + "latitude_deg": "42.3838996887207", + "longitude_deg": "-102.43900299072266", + "elevation_ft": "3827", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Lakeside", + "scheduled_service": "no", + "gps_code": "24NE", + "local_code": "24NE" + }, + { + "id": "42767", + "ident": "24NH", + "type": "heliport", + "name": "Bountiful Farm", + "latitude_deg": "42.943611145", + "longitude_deg": "-72.4844436646", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Westmoreland", + "scheduled_service": "no", + "gps_code": "24NH", + "local_code": "24NH" + }, + { + "id": "9019", + "ident": "24NJ", + "type": "heliport", + "name": "Central Jersey Bank Heliport", + "latitude_deg": "40.244598388671875", + "longitude_deg": "-74.2843017578125", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Freehold", + "scheduled_service": "no", + "gps_code": "24NJ", + "local_code": "24NJ" + }, + { + "id": "9020", + "ident": "24NK", + "type": "heliport", + "name": "Jet-Line Products Heliport", + "latitude_deg": "40.785499572753906", + "longitude_deg": "-73.17539978027344", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Islandia", + "scheduled_service": "no", + "gps_code": "24NK", + "local_code": "24NK" + }, + { + "id": "9021", + "ident": "24NY", + "type": "closed", + "name": "Ely Air Park", + "latitude_deg": "43.0667", + "longitude_deg": "-77.9589", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Bergen", + "scheduled_service": "no", + "keywords": "24NY" + }, + { + "id": "9022", + "ident": "24OH", + "type": "closed", + "name": "Milburn Airport", + "latitude_deg": "40.8806", + "longitude_deg": "-81.291496", + "elevation_ft": "1197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Louisville", + "scheduled_service": "no", + "local_code": "24OH", + "keywords": "24OH" + }, + { + "id": "9023", + "ident": "24OI", + "type": "small_airport", + "name": "Reeds Airport", + "latitude_deg": "40.07780075073242", + "longitude_deg": "-83.89720153808594", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "St Paris", + "scheduled_service": "no", + "gps_code": "24OI", + "local_code": "24OI" + }, + { + "id": "9024", + "ident": "24OK", + "type": "heliport", + "name": "Alliance Health Seminole Heliport", + "latitude_deg": "35.244862", + "longitude_deg": "-96.697758", + "elevation_ft": "964", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Seminole", + "scheduled_service": "no", + "gps_code": "24OK", + "local_code": "24OK", + "keywords": "Columbia Seminole Heliport" + }, + { + "id": "9025", + "ident": "24OR", + "type": "heliport", + "name": "Beaverton Corporate Center Heliport", + "latitude_deg": "45.49509811401367", + "longitude_deg": "-122.8270034790039", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Beaverton", + "scheduled_service": "no", + "gps_code": "24OR", + "local_code": "24OR" + }, + { + "id": "9026", + "ident": "24PA", + "type": "small_airport", + "name": "Kindelberger Landing Strip", + "latitude_deg": "40.69169998168945", + "longitude_deg": "-80.17780303955078", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Freedom", + "scheduled_service": "no", + "gps_code": "24PA", + "local_code": "24PA" + }, + { + "id": "45737", + "ident": "24PN", + "type": "heliport", + "name": "A.H. Butz Downtown Allentown Heliport", + "latitude_deg": "40.601056", + "longitude_deg": "-75.475083", + "elevation_ft": "456", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Allentown", + "scheduled_service": "no", + "gps_code": "24PN", + "local_code": "24PN" + }, + { + "id": "9027", + "ident": "24S", + "type": "small_airport", + "name": "Pinehurst State Airport", + "latitude_deg": "42.110198974609375", + "longitude_deg": "-122.38300323486328", + "elevation_ft": "3638", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Pinehurst", + "scheduled_service": "no", + "gps_code": "24S", + "local_code": "24S", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pinehurst_State_Airport" + }, + { + "id": "9028", + "ident": "24SC", + "type": "small_airport", + "name": "The Farm Airport", + "latitude_deg": "33.93579864501953", + "longitude_deg": "-81.42970275878906", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Summit", + "scheduled_service": "no", + "gps_code": "24SC", + "local_code": "24SC" + }, + { + "id": "9029", + "ident": "24TA", + "type": "small_airport", + "name": "Moore Ranch Airport", + "latitude_deg": "31.213199615478516", + "longitude_deg": "-95.82749938964844", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Centerville", + "scheduled_service": "no", + "gps_code": "24TA", + "local_code": "24TA" + }, + { + "id": "9030", + "ident": "24TE", + "type": "heliport", + "name": "Police Helicopter Patrol Heliport", + "latitude_deg": "29.64859962463379", + "longitude_deg": "-95.27410125732422", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "24TE", + "local_code": "24TE" + }, + { + "id": "9031", + "ident": "24TS", + "type": "heliport", + "name": "Medical Center North Hills Heliport", + "latitude_deg": "32.826401", + "longitude_deg": "-97.212797", + "elevation_ft": "561", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "North Richland Hills", + "scheduled_service": "no", + "gps_code": "24TS", + "local_code": "24TS", + "keywords": "North Hills Hospital Heliport" + }, + { + "id": "9032", + "ident": "24TX", + "type": "small_airport", + "name": "Thurber Lake Airport", + "latitude_deg": "32.502202", + "longitude_deg": "-98.393744", + "elevation_ft": "1092", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mingus", + "scheduled_service": "no", + "gps_code": "24TX", + "local_code": "24TX" + }, + { + "id": "9033", + "ident": "24VA", + "type": "small_airport", + "name": "Cherrystone Airport", + "latitude_deg": "37.287951", + "longitude_deg": "-75.999835", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Cape Charles", + "scheduled_service": "no", + "gps_code": "24VA", + "local_code": "24VA" + }, + { + "id": "9034", + "ident": "24WA", + "type": "heliport", + "name": "Othello Community Hospital Heliport", + "latitude_deg": "46.82609939575195", + "longitude_deg": "-119.16899871826172", + "elevation_ft": "1038", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Othello", + "scheduled_service": "no", + "gps_code": "24WA", + "local_code": "24WA" + }, + { + "id": "9035", + "ident": "24WI", + "type": "small_airport", + "name": "Irlbeck Airport", + "latitude_deg": "45.09550094604492", + "longitude_deg": "-92.67379760742188", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Somerset", + "scheduled_service": "no", + "gps_code": "24WI", + "local_code": "24WI" + }, + { + "id": "9036", + "ident": "24WN", + "type": "small_airport", + "name": "Prairie View Farm Airport", + "latitude_deg": "42.554100036621094", + "longitude_deg": "-88.42749786376953", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Lake Geneva", + "scheduled_service": "no", + "gps_code": "24WN", + "local_code": "24WN" + }, + { + "id": "45812", + "ident": "24XA", + "type": "small_airport", + "name": "Cross-B Airport", + "latitude_deg": "29.320969", + "longitude_deg": "-98.370294", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "24XA", + "local_code": "24XA" + }, + { + "id": "9037", + "ident": "24XS", + "type": "closed", + "name": "Furst Ranch Heliport", + "latitude_deg": "33.075802", + "longitude_deg": "-97.182198", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Argyle", + "scheduled_service": "no", + "keywords": "24XS" + }, + { + "id": "9038", + "ident": "25A", + "type": "closed", + "name": "McMinn Airport", + "latitude_deg": "33.739799", + "longitude_deg": "-85.8255", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Anniston", + "scheduled_service": "no", + "keywords": "25A" + }, + { + "id": "318189", + "ident": "25AA", + "type": "small_airport", + "name": "Skyflight Airport", + "latitude_deg": "64.928467", + "longitude_deg": "-147.879778", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fairbanks", + "scheduled_service": "no", + "gps_code": "25AA", + "local_code": "25AA" + }, + { + "id": "9039", + "ident": "25AK", + "type": "small_airport", + "name": "Honeybee Lake Aero Park Airport", + "latitude_deg": "61.712699", + "longitude_deg": "-150.066005", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Willow", + "scheduled_service": "no", + "gps_code": "25AK", + "local_code": "25AK" + }, + { + "id": "9040", + "ident": "25AL", + "type": "heliport", + "name": "Lucas Army Heliport", + "latitude_deg": "31.269899368286133", + "longitude_deg": "-86.04090118408203", + "elevation_ft": "336", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker/Goodman", + "scheduled_service": "no", + "gps_code": "25AL", + "local_code": "25AL" + }, + { + "id": "9041", + "ident": "25AR", + "type": "closed", + "name": "Reeves Private Airport", + "latitude_deg": "35.930599", + "longitude_deg": "-91.746", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Mount Pleasant", + "scheduled_service": "no", + "keywords": "25AR" + }, + { + "id": "9042", + "ident": "25AZ", + "type": "small_airport", + "name": "Mystery Well Ranch Airport", + "latitude_deg": "31.809897", + "longitude_deg": "-109.058619", + "elevation_ft": "4173", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Portal", + "scheduled_service": "no", + "gps_code": "25AZ", + "local_code": "25AZ" + }, + { + "id": "9043", + "ident": "25CA", + "type": "small_airport", + "name": "Loma Madera Ranch Airport", + "latitude_deg": "33.17919921875", + "longitude_deg": "-116.79299926757812", + "elevation_ft": "3375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Ysabel", + "scheduled_service": "no", + "gps_code": "25CA", + "local_code": "25CA" + }, + { + "id": "45334", + "ident": "25CD", + "type": "small_airport", + "name": "Lux Field", + "latitude_deg": "39.152333", + "longitude_deg": "-105.720167", + "elevation_ft": "9300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Hartsel", + "scheduled_service": "no", + "gps_code": "25CD", + "local_code": "25CD" + }, + { + "id": "9044", + "ident": "25CL", + "type": "small_airport", + "name": "Van Dyke Strip", + "latitude_deg": "38.867218", + "longitude_deg": "-121.489429", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pleasant Grove", + "scheduled_service": "no", + "gps_code": "25CL", + "local_code": "25CL", + "keywords": "66Q" + }, + { + "id": "9045", + "ident": "25CN", + "type": "closed", + "name": "Platform Holly Heliport", + "latitude_deg": "34.389702", + "longitude_deg": "-119.905998", + "elevation_ft": "87", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ellwood", + "scheduled_service": "no", + "keywords": "25CN" + }, + { + "id": "9046", + "ident": "25CO", + "type": "small_airport", + "name": "Crystal Lakes Airport", + "latitude_deg": "40.851600646972656", + "longitude_deg": "-105.63300323486328", + "elevation_ft": "8440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Red Feather Lakes", + "scheduled_service": "no", + "gps_code": "25CO", + "local_code": "25CO" + }, + { + "id": "9047", + "ident": "25FA", + "type": "heliport", + "name": "Jackson Memorial Hospital Heliport", + "latitude_deg": "25.7929", + "longitude_deg": "-80.204803", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "25FA", + "local_code": "25FA", + "keywords": "01X" + }, + { + "id": "9048", + "ident": "25FD", + "type": "closed", + "name": "Sacred Heart Hospital of Pensacola Heliport", + "latitude_deg": "30.384399", + "longitude_deg": "-86.397697", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Destin", + "scheduled_service": "no", + "keywords": "25FD" + }, + { + "id": "9049", + "ident": "25FL", + "type": "small_airport", + "name": "Connell's Wahoo Airport", + "latitude_deg": "28.631900787353516", + "longitude_deg": "-82.15779876708984", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bushnell", + "scheduled_service": "no", + "gps_code": "25FL", + "local_code": "25FL" + }, + { + "id": "9050", + "ident": "25GA", + "type": "small_airport", + "name": "Miller Farm Airport", + "latitude_deg": "33.659797", + "longitude_deg": "-84.663103", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Douglasville", + "scheduled_service": "no", + "gps_code": "25GA", + "local_code": "25GA" + }, + { + "id": "45366", + "ident": "25GE", + "type": "heliport", + "name": "Beaver Creek Lodge Heliport", + "latitude_deg": "33.9975", + "longitude_deg": "-83.038889", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Carlton", + "scheduled_service": "no", + "gps_code": "25GE", + "local_code": "25GE" + }, + { + "id": "352233", + "ident": "25IA", + "type": "small_airport", + "name": "Virl B Deal Airfield", + "latitude_deg": "43.395073", + "longitude_deg": "-92.963744", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "St. Ansgar", + "scheduled_service": "no", + "gps_code": "25IA", + "local_code": "25IA" + }, + { + "id": "9051", + "ident": "25II", + "type": "heliport", + "name": "Gm Heliport", + "latitude_deg": "40.96620178222656", + "longitude_deg": "-85.29080200195312", + "elevation_ft": "837", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Aboite", + "scheduled_service": "no", + "gps_code": "25II", + "local_code": "25II" + }, + { + "id": "9052", + "ident": "25IL", + "type": "small_airport", + "name": "Holzwarth Flying Service Airport", + "latitude_deg": "39.516421", + "longitude_deg": "-89.869581", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Virden", + "scheduled_service": "no", + "gps_code": "25IL", + "local_code": "25IL", + "keywords": "Bob Davis Flying Service Airport, Chuck Holzwarth Flying Service Airport" + }, + { + "id": "9053", + "ident": "25IN", + "type": "small_airport", + "name": "Reid-Eash Airport", + "latitude_deg": "41.70280075073242", + "longitude_deg": "-85.41940307617188", + "elevation_ft": "879", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Howe", + "scheduled_service": "no", + "gps_code": "25IN", + "local_code": "25IN" + }, + { + "id": "9054", + "ident": "25IS", + "type": "heliport", + "name": "Shag Bark Farms Heliport", + "latitude_deg": "39.70370101928711", + "longitude_deg": "-89.7490005493164", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chatham", + "scheduled_service": "no", + "gps_code": "25IS", + "local_code": "25IS" + }, + { + "id": "9055", + "ident": "25JY", + "type": "heliport", + "name": "Heli-Ray Heliport", + "latitude_deg": "39.72019958496094", + "longitude_deg": "-74.84609985351562", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Waterford", + "scheduled_service": "no", + "gps_code": "25JY", + "local_code": "25JY" + }, + { + "id": "9056", + "ident": "25KS", + "type": "small_airport", + "name": "Wyrill Farming Airport", + "latitude_deg": "39.6833000183", + "longitude_deg": "-99.12840271", + "elevation_ft": "1700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Kirwin", + "scheduled_service": "no", + "gps_code": "25KS", + "local_code": "25KS" + }, + { + "id": "9057", + "ident": "25KY", + "type": "heliport", + "name": "Western Baptist Hospital Heliport", + "latitude_deg": "37.07509994506836", + "longitude_deg": "-88.62560272216797", + "elevation_ft": "341", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Paducah", + "scheduled_service": "no", + "gps_code": "25KY", + "local_code": "25KY" + }, + { + "id": "9058", + "ident": "25LA", + "type": "closed", + "name": "Era - Morgan City Heliport", + "latitude_deg": "29.6458", + "longitude_deg": "-91.119301", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Amelia", + "scheduled_service": "no", + "keywords": "25LA" + }, + { + "id": "9059", + "ident": "25LL", + "type": "closed", + "name": "Bradbury Airport", + "latitude_deg": "40.752304", + "longitude_deg": "-88.222802", + "elevation_ft": "694", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Piper City", + "scheduled_service": "no", + "keywords": "25LL" + }, + { + "id": "9060", + "ident": "25LS", + "type": "heliport", + "name": "Rotorcraft Leasing Co Creole Base Heliport", + "latitude_deg": "29.78529930114746", + "longitude_deg": "-93.21440124511719", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Creole", + "scheduled_service": "no", + "gps_code": "25LS", + "local_code": "25LS" + }, + { + "id": "9061", + "ident": "25MA", + "type": "heliport", + "name": "High School Heliport", + "latitude_deg": "42.20560073852539", + "longitude_deg": "-71.44139862060547", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Holliston", + "scheduled_service": "no", + "gps_code": "25MA", + "local_code": "25MA" + }, + { + "id": "9062", + "ident": "25MD", + "type": "small_airport", + "name": "Whalen Field", + "latitude_deg": "39.16749954223633", + "longitude_deg": "-75.84020233154297", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Sudlersville", + "scheduled_service": "no", + "gps_code": "25MD", + "local_code": "25MD" + }, + { + "id": "9063", + "ident": "25MI", + "type": "closed", + "name": "Farver Field", + "latitude_deg": "43.927819", + "longitude_deg": "-83.27453", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Caseville", + "scheduled_service": "no", + "keywords": "25MI" + }, + { + "id": "9064", + "ident": "25MN", + "type": "seaplane_base", + "name": "Shirt Lake Seaplane Base", + "latitude_deg": "46.430599212646484", + "longitude_deg": "-93.83309936523438", + "elevation_ft": "1272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Deerwood", + "scheduled_service": "no", + "gps_code": "25MN", + "local_code": "25MN" + }, + { + "id": "9065", + "ident": "25MO", + "type": "small_airport", + "name": "Cook Airport", + "latitude_deg": "37.18579864501953", + "longitude_deg": "-94.55110168457031", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Carl Junction", + "scheduled_service": "no", + "gps_code": "25MO", + "local_code": "25MO" + }, + { + "id": "9066", + "ident": "25MS", + "type": "heliport", + "name": "Baptist Memorial Hospital-Golden Triangle Heliport", + "latitude_deg": "33.52450180053711", + "longitude_deg": "-88.4281005859375", + "elevation_ft": "179", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "25MS", + "local_code": "25MS" + }, + { + "id": "9067", + "ident": "25MT", + "type": "small_airport", + "name": "Blatter Airport", + "latitude_deg": "48.42219924926758", + "longitude_deg": "-106.25299835205078", + "elevation_ft": "2800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Glasgow", + "scheduled_service": "no", + "gps_code": "25MT", + "local_code": "25MT" + }, + { + "id": "9068", + "ident": "25NC", + "type": "small_airport", + "name": "Smith Air Strip", + "latitude_deg": "35.632717", + "longitude_deg": "-79.711768", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Asheboro", + "scheduled_service": "no", + "gps_code": "25NC", + "local_code": "25NC" + }, + { + "id": "345572", + "ident": "25ND", + "type": "small_airport", + "name": "Landeis Airstrip", + "latitude_deg": "46.866254", + "longitude_deg": "-100.986881", + "elevation_ft": "1853", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Mandan", + "scheduled_service": "no", + "gps_code": "25ND", + "local_code": "25ND" + }, + { + "id": "9069", + "ident": "25NE", + "type": "small_airport", + "name": "Corr Airport", + "latitude_deg": "41.724098205566406", + "longitude_deg": "-103.51100158691406", + "elevation_ft": "4000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Melbeta", + "scheduled_service": "no", + "gps_code": "25NE", + "local_code": "25NE" + }, + { + "id": "45525", + "ident": "25NH", + "type": "heliport", + "name": "Phantom Three Heliport", + "latitude_deg": "43.317111", + "longitude_deg": "-72.389722", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Charlestown", + "scheduled_service": "no", + "gps_code": "25NH", + "local_code": "25NH" + }, + { + "id": "9070", + "ident": "25NJ", + "type": "closed", + "name": "Hercules Heliport", + "latitude_deg": "39.830399", + "longitude_deg": "-75.276299", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Gibbstown", + "scheduled_service": "no", + "keywords": "25NJ" + }, + { + "id": "9071", + "ident": "25NK", + "type": "small_airport", + "name": "Loucks Airport", + "latitude_deg": "42.43619918823242", + "longitude_deg": "-77.1322021484375", + "elevation_ft": "1425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hammondsport", + "scheduled_service": "no", + "gps_code": "25NK", + "local_code": "25NK" + }, + { + "id": "45539", + "ident": "25NM", + "type": "small_airport", + "name": "Dream Catcher Ranch Airport", + "latitude_deg": "34.476944", + "longitude_deg": "-108.031111", + "elevation_ft": "7253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Pie Town", + "scheduled_service": "no", + "gps_code": "25NM", + "local_code": "25NM" + }, + { + "id": "45685", + "ident": "25NR", + "type": "heliport", + "name": "New Hanover County Sheriff'S Office Heliport", + "latitude_deg": "34.326346", + "longitude_deg": "-77.896575", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Castle Hayne", + "scheduled_service": "no", + "gps_code": "25NR", + "local_code": "25NR" + }, + { + "id": "9072", + "ident": "25NY", + "type": "heliport", + "name": "Carter's Heliport", + "latitude_deg": "40.80009841918945", + "longitude_deg": "-72.69950103759766", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Remsenburg", + "scheduled_service": "no", + "gps_code": "25NY", + "local_code": "25NY" + }, + { + "id": "9073", + "ident": "25OH", + "type": "small_airport", + "name": "Hammond Airport", + "latitude_deg": "40.91310119628906", + "longitude_deg": "-81.25980377197266", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "25OH", + "local_code": "25OH" + }, + { + "id": "9074", + "ident": "25OI", + "type": "small_airport", + "name": "Morrison Field", + "latitude_deg": "41.42259979248047", + "longitude_deg": "-80.87789916992188", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bristolville", + "scheduled_service": "no", + "gps_code": "25OI", + "local_code": "25OI" + }, + { + "id": "9075", + "ident": "25OK", + "type": "closed", + "name": "Fin & Feather Resort Heliport", + "latitude_deg": "35.608398", + "longitude_deg": "-95.050201", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Gore", + "scheduled_service": "no", + "keywords": "25OK" + }, + { + "id": "9076", + "ident": "25OR", + "type": "heliport", + "name": "Jack's Heliport", + "latitude_deg": "44.639424", + "longitude_deg": "-122.827746", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Scio", + "scheduled_service": "no", + "gps_code": "25OR", + "local_code": "25OR" + }, + { + "id": "9077", + "ident": "25PA", + "type": "heliport", + "name": "Jeannette Hospital Heliport", + "latitude_deg": "40.3203010559082", + "longitude_deg": "-79.61139678955078", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Jeannette", + "scheduled_service": "no", + "gps_code": "25PA", + "local_code": "25PA" + }, + { + "id": "45756", + "ident": "25PN", + "type": "heliport", + "name": "Nessmuk Heliport", + "latitude_deg": "41.723783", + "longitude_deg": "-77.377636", + "elevation_ft": "3801", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wellsboro", + "scheduled_service": "no", + "gps_code": "25PN", + "local_code": "25PN" + }, + { + "id": "345388", + "ident": "25PS", + "type": "heliport", + "name": "Primrose Heliport", + "latitude_deg": "40.689242", + "longitude_deg": "-76.279621", + "elevation_ft": "953", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Minersville", + "scheduled_service": "no", + "gps_code": "25PS", + "local_code": "25PS" + }, + { + "id": "45780", + "ident": "25SC", + "type": "small_airport", + "name": "Mountain Ridge Airport", + "latitude_deg": "34.960556", + "longitude_deg": "-82.339444", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "25SC", + "local_code": "25SC" + }, + { + "id": "9078", + "ident": "25TA", + "type": "small_airport", + "name": "Ferris Airport", + "latitude_deg": "29.836599349975586", + "longitude_deg": "-94.96739959716797", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Baytown", + "scheduled_service": "no", + "gps_code": "25TA", + "local_code": "25TA" + }, + { + "id": "9079", + "ident": "25TE", + "type": "closed", + "name": "Taylor's Air Park", + "latitude_deg": "32.45014", + "longitude_deg": "-97.4002969", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Joshua", + "scheduled_service": "no", + "keywords": "25TE" + }, + { + "id": "45787", + "ident": "25TN", + "type": "heliport", + "name": "Columbia River Park Hospital Heliport", + "latitude_deg": "35.699108", + "longitude_deg": "-85.742153", + "elevation_ft": "957", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Mc Minnville", + "scheduled_service": "no", + "gps_code": "25TN", + "local_code": "25TN" + }, + { + "id": "9080", + "ident": "25TS", + "type": "small_airport", + "name": "Miller Airfield", + "latitude_deg": "36.094331", + "longitude_deg": "-102.417469", + "elevation_ft": "3961", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dalhart", + "scheduled_service": "no", + "gps_code": "25TS", + "local_code": "25TS" + }, + { + "id": "9081", + "ident": "25TX", + "type": "small_airport", + "name": "Hubbard Airport", + "latitude_deg": "31.31279945373535", + "longitude_deg": "-94.64430236816406", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lufkin", + "scheduled_service": "no", + "gps_code": "25TX", + "local_code": "25TX" + }, + { + "id": "9082", + "ident": "25U", + "type": "small_airport", + "name": "Memaloose Airport", + "latitude_deg": "45.42770004272461", + "longitude_deg": "-116.69400024414062", + "elevation_ft": "6708", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Imnaha", + "scheduled_service": "no", + "gps_code": "25U", + "local_code": "25U", + "wikipedia_link": "https://en.wikipedia.org/wiki/Memaloose_Airport" + }, + { + "id": "9083", + "ident": "25VA", + "type": "small_airport", + "name": "Toddsbury Farm Airport", + "latitude_deg": "37.81760025024414", + "longitude_deg": "-77.10299682617188", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Aylett", + "scheduled_service": "no", + "gps_code": "25VA", + "local_code": "25VA" + }, + { + "id": "9084", + "ident": "25WA", + "type": "small_airport", + "name": "Hart Ranch Airport", + "latitude_deg": "48.576499938964844", + "longitude_deg": "-119.06500244140625", + "elevation_ft": "2608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tonasket", + "scheduled_service": "no", + "gps_code": "25WA", + "local_code": "25WA" + }, + { + "id": "9085", + "ident": "25WI", + "type": "heliport", + "name": "Sacred Heart Hospital Heliport", + "latitude_deg": "44.794315", + "longitude_deg": "-91.509467", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Eau Claire", + "scheduled_service": "no", + "gps_code": "25WI", + "local_code": "25WI" + }, + { + "id": "45924", + "ident": "25WN", + "type": "small_airport", + "name": "Little Plum Creek Airport", + "latitude_deg": "44.528718", + "longitude_deg": "-92.120341", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Pepin", + "scheduled_service": "no", + "gps_code": "25WN", + "local_code": "25WN" + }, + { + "id": "45824", + "ident": "25XA", + "type": "small_airport", + "name": "Headwaters Airport", + "latitude_deg": "30.092863", + "longitude_deg": "-98.701258", + "elevation_ft": "1974", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Stonewall", + "scheduled_service": "no", + "gps_code": "25XA", + "local_code": "25XA" + }, + { + "id": "9086", + "ident": "25XS", + "type": "small_airport", + "name": "Moonbow Field", + "latitude_deg": "32.4865", + "longitude_deg": "-96.846397", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waxahachie", + "scheduled_service": "no", + "gps_code": "25XS", + "local_code": "25XS", + "keywords": "O'Brien Airpark" + }, + { + "id": "9087", + "ident": "25Y", + "type": "small_airport", + "name": "New York Mills Municipal Airport", + "latitude_deg": "46.502201080322266", + "longitude_deg": "-95.3375015258789", + "elevation_ft": "1401", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "New York Mills", + "scheduled_service": "no", + "gps_code": "25Y", + "local_code": "25Y" + }, + { + "id": "9089", + "ident": "26AL", + "type": "small_airport", + "name": "Richardson Field", + "latitude_deg": "30.62420082092285", + "longitude_deg": "-88.27860260009766", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Mobile", + "scheduled_service": "no", + "gps_code": "26AL", + "local_code": "26AL" + }, + { + "id": "9090", + "ident": "26AR", + "type": "small_airport", + "name": "Fly \"N\" K Airport", + "latitude_deg": "35.2154998779", + "longitude_deg": "-91.807800293", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Searcy", + "scheduled_service": "no", + "gps_code": "26AR", + "local_code": "26AR" + }, + { + "id": "9091", + "ident": "26AZ", + "type": "small_airport", + "name": "Flying Dare's Ranch Airport", + "latitude_deg": "34.012001037597656", + "longitude_deg": "-113.2030029296875", + "elevation_ft": "2192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Aguila", + "scheduled_service": "no", + "gps_code": "26AZ", + "local_code": "26AZ" + }, + { + "id": "9092", + "ident": "26CA", + "type": "small_airport", + "name": "Boeckmann Ranch Airport", + "latitude_deg": "38.42689895629883", + "longitude_deg": "-121.1719970703125", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Wilton", + "scheduled_service": "no", + "gps_code": "26CA", + "local_code": "26CA" + }, + { + "id": "9093", + "ident": "26CL", + "type": "closed", + "name": "Northrop Grumman Woodland Hills Heliport", + "latitude_deg": "34.168598", + "longitude_deg": "-118.595001", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "keywords": "26CL, Litton Industries" + }, + { + "id": "9094", + "ident": "26CN", + "type": "heliport", + "name": "SCE Vincent Substation Heliport", + "latitude_deg": "34.486768", + "longitude_deg": "-118.115913", + "elevation_ft": "3244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palmdale", + "scheduled_service": "no", + "gps_code": "26CN", + "local_code": "26CN" + }, + { + "id": "9095", + "ident": "26CO", + "type": "closed", + "name": "Lockheed Martin Cmd & Cntrl Sys Heliport", + "latitude_deg": "38.983898", + "longitude_deg": "-104.801003", + "elevation_ft": "6685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Colorado Springs", + "scheduled_service": "no", + "keywords": "26CO" + }, + { + "id": "9096", + "ident": "26FA", + "type": "heliport", + "name": "Princeton Hospital Heliport", + "latitude_deg": "28.568300247192383", + "longitude_deg": "-81.43399810791016", + "elevation_ft": "91", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "26FA", + "local_code": "26FA" + }, + { + "id": "9097", + "ident": "26FD", + "type": "small_airport", + "name": "Hennessy Airport", + "latitude_deg": "27.05120086669922", + "longitude_deg": "-81.84809875488281", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Arcadia", + "scheduled_service": "no", + "gps_code": "26FD", + "local_code": "26FD" + }, + { + "id": "9098", + "ident": "26FL", + "type": "heliport", + "name": "HCA Florida Raulerson Hospital Heliport", + "latitude_deg": "27.259106", + "longitude_deg": "-80.829104", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Okeechobee", + "scheduled_service": "no", + "gps_code": "26FL", + "local_code": "26FL" + }, + { + "id": "9099", + "ident": "26GA", + "type": "small_airport", + "name": "Murphree Airport", + "latitude_deg": "33.33620071411133", + "longitude_deg": "-84.91380310058594", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Newnan", + "scheduled_service": "no", + "gps_code": "26GA", + "local_code": "26GA" + }, + { + "id": "45389", + "ident": "26ID", + "type": "small_airport", + "name": "Moose Lodge Airport", + "latitude_deg": "48.363889", + "longitude_deg": "-116.403611", + "elevation_ft": "2081", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Sandpoint", + "scheduled_service": "no", + "gps_code": "26ID", + "local_code": "26ID", + "keywords": "Seven Shamrock Airport" + }, + { + "id": "9100", + "ident": "26II", + "type": "heliport", + "name": "Huntington Memorial Hospital Heliport", + "latitude_deg": "40.86869812011719", + "longitude_deg": "-85.49530029296875", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Huntington", + "scheduled_service": "no", + "gps_code": "26II", + "local_code": "26II" + }, + { + "id": "9101", + "ident": "26IL", + "type": "closed", + "name": "Duane E. Davis Airport", + "latitude_deg": "42.119331", + "longitude_deg": "-89.37438", + "elevation_ft": "741", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Leaf River", + "scheduled_service": "no", + "keywords": "26IL" + }, + { + "id": "9102", + "ident": "26IN", + "type": "closed", + "name": "Willcox Airport", + "latitude_deg": "39.823399", + "longitude_deg": "-85.591904", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Knightstown", + "scheduled_service": "no", + "keywords": "26IN" + }, + { + "id": "9103", + "ident": "26IS", + "type": "small_airport", + "name": "Ficklin-Airtech Airport", + "latitude_deg": "40.766700744628906", + "longitude_deg": "-88.50559997558594", + "elevation_ft": "672", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Fairbury", + "scheduled_service": "no", + "gps_code": "26IS", + "local_code": "26IS" + }, + { + "id": "45531", + "ident": "26JY", + "type": "heliport", + "name": "Binder Winslow Heliport", + "latitude_deg": "39.738444", + "longitude_deg": "-74.910556", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Winslow", + "scheduled_service": "no", + "gps_code": "26JY", + "local_code": "26JY" + }, + { + "id": "9104", + "ident": "26KS", + "type": "heliport", + "name": "St Lukes Hospital Heliport", + "latitude_deg": "37.27840042114258", + "longitude_deg": "-97.3936996459961", + "elevation_ft": "1236", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wellington", + "scheduled_service": "no", + "gps_code": "26KS", + "local_code": "26KS" + }, + { + "id": "9105", + "ident": "26KY", + "type": "heliport", + "name": "University Hospital Heliport", + "latitude_deg": "38.24760055541992", + "longitude_deg": "-85.74330139160156", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "26KY", + "local_code": "26KY" + }, + { + "id": "9106", + "ident": "26LA", + "type": "heliport", + "name": "Heli-Air Inc. Heliport", + "latitude_deg": "30.146699905400002", + "longitude_deg": "-91.94419860839999", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Broussard", + "scheduled_service": "no", + "gps_code": "26LA", + "local_code": "26LA" + }, + { + "id": "9107", + "ident": "26LL", + "type": "closed", + "name": "Anderson Airport", + "latitude_deg": "42.009499", + "longitude_deg": "-88.717598", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sycamore", + "scheduled_service": "no", + "keywords": "26LL" + }, + { + "id": "9108", + "ident": "26LS", + "type": "heliport", + "name": "Rotorcraft Leasing Co Intracoastal City Heliport", + "latitude_deg": "29.797199249267578", + "longitude_deg": "-92.14330291748047", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Intracoastal City", + "scheduled_service": "no", + "gps_code": "26LS", + "local_code": "26LS" + }, + { + "id": "9109", + "ident": "26MA", + "type": "small_airport", + "name": "Pepperell Airport", + "latitude_deg": "42.69620132446289", + "longitude_deg": "-71.55010223388672", + "elevation_ft": "176", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Pepperell", + "scheduled_service": "no", + "gps_code": "26MA", + "local_code": "26MA" + }, + { + "id": "345387", + "ident": "26MD", + "type": "heliport", + "name": "CMTI Heliport", + "latitude_deg": "39.259539", + "longitude_deg": "-76.566258", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Baltimore", + "scheduled_service": "no", + "gps_code": "26MD", + "local_code": "26MD" + }, + { + "id": "9110", + "ident": "26MI", + "type": "small_airport", + "name": "Van Strien Airport", + "latitude_deg": "42.923901", + "longitude_deg": "-85.378098", + "elevation_ft": "624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lowell", + "scheduled_service": "no", + "gps_code": "26MI", + "local_code": "26MI", + "keywords": "Van Strien Company" + }, + { + "id": "9111", + "ident": "26MN", + "type": "small_airport", + "name": "Christianson Field", + "latitude_deg": "47.33000183105469", + "longitude_deg": "-96.78369903564453", + "elevation_ft": "874", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Halstad", + "scheduled_service": "no", + "gps_code": "26MN", + "local_code": "26MN" + }, + { + "id": "9112", + "ident": "26MO", + "type": "small_airport", + "name": "Taber Field", + "latitude_deg": "36.613399505615234", + "longitude_deg": "-92.78459930419922", + "elevation_ft": "985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Theodosia", + "scheduled_service": "no", + "gps_code": "26MO", + "local_code": "26MO" + }, + { + "id": "9113", + "ident": "26MT", + "type": "small_airport", + "name": "Hutchinson Airport", + "latitude_deg": "48.835601806640625", + "longitude_deg": "-110.44200134277344", + "elevation_ft": "2900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Hingham", + "scheduled_service": "no", + "gps_code": "26MT", + "local_code": "26MT" + }, + { + "id": "9114", + "ident": "26N", + "type": "small_airport", + "name": "Ocean City Municipal Airport", + "latitude_deg": "39.2635", + "longitude_deg": "-74.607498", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Ocean City", + "scheduled_service": "no", + "gps_code": "K26N", + "local_code": "26N", + "home_link": "https://www.ocnj.us/MunicipalAirport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ocean_City_Municipal_Airport_(New_Jersey)" + }, + { + "id": "9115", + "ident": "26NC", + "type": "small_airport", + "name": "Boonville Airport", + "latitude_deg": "36.222900390625", + "longitude_deg": "-80.7155990600586", + "elevation_ft": "1003", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Boonville", + "scheduled_service": "no", + "gps_code": "26NC", + "local_code": "26NC" + }, + { + "id": "9116", + "ident": "26ND", + "type": "small_airport", + "name": "Chitwood Airstrip", + "latitude_deg": "47.709702", + "longitude_deg": "-103.643997", + "elevation_ft": "2180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Alexander", + "scheduled_service": "no", + "keywords": "26ND" + }, + { + "id": "45526", + "ident": "26NH", + "type": "heliport", + "name": "Phantom Two Heliport", + "latitude_deg": "43.667833", + "longitude_deg": "-72.202722", + "elevation_ft": "1275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "26NH", + "local_code": "26NH" + }, + { + "id": "9117", + "ident": "26NJ", + "type": "heliport", + "name": "Burdette Tomlin Memorial Hospital Heliport", + "latitude_deg": "39.0877608062", + "longitude_deg": "-74.8167014122", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Cape May Court House", + "scheduled_service": "no", + "gps_code": "26NJ", + "local_code": "26NJ" + }, + { + "id": "45662", + "ident": "26NK", + "type": "closed", + "name": "Ridge Heliport", + "latitude_deg": "41.44834", + "longitude_deg": "-74.2552", + "elevation_ft": "517", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Campbell Hall", + "scheduled_service": "no", + "keywords": "26NK" + }, + { + "id": "9118", + "ident": "26NV", + "type": "small_airport", + "name": "Darrow Field", + "latitude_deg": "39.453426222299996", + "longitude_deg": "-118.866330385", + "elevation_ft": "3965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Fallon", + "scheduled_service": "no", + "gps_code": "26NV", + "local_code": "26NV" + }, + { + "id": "9119", + "ident": "26NY", + "type": "heliport", + "name": "Vamc Heliport", + "latitude_deg": "40.92509841918945", + "longitude_deg": "-73.30619812011719", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Northport", + "scheduled_service": "no", + "gps_code": "26NY", + "local_code": "26NY" + }, + { + "id": "45729", + "ident": "26OG", + "type": "small_airport", + "name": "Oakridge Ranch Airport", + "latitude_deg": "42.463021", + "longitude_deg": "-122.734744", + "elevation_ft": "1560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Eagle Point", + "scheduled_service": "no", + "gps_code": "26OG", + "local_code": "26OG" + }, + { + "id": "9120", + "ident": "26OH", + "type": "closed", + "name": "Hitz Airport", + "latitude_deg": "40.875301", + "longitude_deg": "-81.295097", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Louisville", + "scheduled_service": "no", + "keywords": "26OH" + }, + { + "id": "9121", + "ident": "26OK", + "type": "small_airport", + "name": "Duck Creek Airport", + "latitude_deg": "35.882198", + "longitude_deg": "-96.004402", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Mounds", + "scheduled_service": "no", + "gps_code": "OK36", + "local_code": "OK36", + "keywords": "26OK" + }, + { + "id": "9122", + "ident": "26OR", + "type": "closed", + "name": "Cub Port Airport", + "latitude_deg": "45.437901", + "longitude_deg": "-122.527868", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Happy Valley", + "scheduled_service": "no", + "keywords": "26OR" + }, + { + "id": "9123", + "ident": "26PA", + "type": "heliport", + "name": "Pennys Heliport", + "latitude_deg": "40.43980026245117", + "longitude_deg": "-75.83709716796875", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Fleetwood", + "scheduled_service": "no", + "gps_code": "26PA", + "local_code": "26PA" + }, + { + "id": "9124", + "ident": "26PN", + "type": "heliport", + "name": "Leeds & Northrup Co. Heliport", + "latitude_deg": "40.216800689697266", + "longitude_deg": "-75.27880096435547", + "elevation_ft": "346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "North Wales", + "scheduled_service": "no", + "gps_code": "26PN", + "local_code": "26PN" + }, + { + "id": "9125", + "ident": "26SD", + "type": "heliport", + "name": "Shooting Star Ranch Heliport", + "latitude_deg": "44.02750015258789", + "longitude_deg": "-103.28700256347656", + "elevation_ft": "3902", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Radip City", + "scheduled_service": "no", + "gps_code": "26SD", + "local_code": "26SD" + }, + { + "id": "9126", + "ident": "26TA", + "type": "heliport", + "name": "Red Barn Heliport", + "latitude_deg": "29.803300857543945", + "longitude_deg": "-95.00379943847656", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Baytown", + "scheduled_service": "no", + "gps_code": "26TA", + "local_code": "26TA" + }, + { + "id": "9127", + "ident": "26TE", + "type": "heliport", + "name": "Parkview Center Hospital Heliport", + "latitude_deg": "29.86829948425293", + "longitude_deg": "-95.40850067138672", + "elevation_ft": "86", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "26TE", + "local_code": "26TE" + }, + { + "id": "346378", + "ident": "26TN", + "type": "heliport", + "name": "Tennova Newport Medical Center Heliport", + "latitude_deg": "35.965233", + "longitude_deg": "-83.183878", + "elevation_ft": "1138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "26TN", + "local_code": "26TN" + }, + { + "id": "9128", + "ident": "26TS", + "type": "heliport", + "name": "Memorial Hermann The Woodlands Medical Center Heliport", + "latitude_deg": "30.174536", + "longitude_deg": "-95.453192", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Shenandoah", + "scheduled_service": "no", + "gps_code": "26TS", + "local_code": "26TS" + }, + { + "id": "9129", + "ident": "26TX", + "type": "small_airport", + "name": "Lowrance Ranch Airport", + "latitude_deg": "33.764801025390625", + "longitude_deg": "-100.01799774169922", + "elevation_ft": "1692", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Truscott", + "scheduled_service": "no", + "gps_code": "26TX", + "local_code": "26TX" + }, + { + "id": "9130", + "ident": "26VA", + "type": "heliport", + "name": "Fairfax County Police Heliport", + "latitude_deg": "38.85319900512695", + "longitude_deg": "-77.37300109863281", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fairfax", + "scheduled_service": "no", + "gps_code": "26VA", + "local_code": "26VA" + }, + { + "id": "324433", + "ident": "26VT", + "type": "heliport", + "name": "Brattleboro Memorial Hospital Heliport", + "latitude_deg": "42.843897", + "longitude_deg": "-72.567033", + "elevation_ft": "416", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Brattleboro", + "scheduled_service": "no", + "gps_code": "26VT", + "local_code": "26VT" + }, + { + "id": "9131", + "ident": "26W", + "type": "small_airport", + "name": "Wolf Lake Airport", + "latitude_deg": "42.20970153808594", + "longitude_deg": "-84.23169708251953", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Napoleon", + "scheduled_service": "no", + "gps_code": "26W", + "local_code": "26W" + }, + { + "id": "9132", + "ident": "26WA", + "type": "heliport", + "name": "Olympic Memorial Hospital Heliport", + "latitude_deg": "48.115491", + "longitude_deg": "-123.41327", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Port Angeles", + "scheduled_service": "no", + "gps_code": "26WA", + "local_code": "26WA" + }, + { + "id": "9133", + "ident": "26WI", + "type": "small_airport", + "name": "Kitty-Wompus Airport", + "latitude_deg": "45.699100494384766", + "longitude_deg": "-91.30349731445312", + "elevation_ft": "1336", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Exeland", + "scheduled_service": "no", + "gps_code": "26WI", + "local_code": "26WI" + }, + { + "id": "45844", + "ident": "26XA", + "type": "heliport", + "name": "Solana North Heliport", + "latitude_deg": "32.984444", + "longitude_deg": "-97.171667", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Westlake", + "scheduled_service": "no", + "gps_code": "26XA", + "local_code": "26XA" + }, + { + "id": "9134", + "ident": "26XS", + "type": "small_airport", + "name": "Tatum Ranch Airport", + "latitude_deg": "30.114099502563477", + "longitude_deg": "-98.4614028930664", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Blanco", + "scheduled_service": "no", + "gps_code": "26XS", + "local_code": "26XS" + }, + { + "id": "9135", + "ident": "27AK", + "type": "closed", + "name": "Pad-66 Heliport", + "latitude_deg": "70.343002", + "longitude_deg": "-149.589008", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kuparuk", + "scheduled_service": "no", + "keywords": "27AK" + }, + { + "id": "9136", + "ident": "27AL", + "type": "small_airport", + "name": "Little Texas Airport", + "latitude_deg": "32.45349884033203", + "longitude_deg": "-85.55819702148438", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Tuskegee", + "scheduled_service": "no", + "gps_code": "27AL", + "local_code": "27AL" + }, + { + "id": "9137", + "ident": "27AR", + "type": "heliport", + "name": "Nw Medical of Benton Heliport", + "latitude_deg": "36.33890151977539", + "longitude_deg": "-94.19000244140625", + "elevation_ft": "1277", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Bentonville", + "scheduled_service": "no", + "gps_code": "27AR", + "local_code": "27AR" + }, + { + "id": "9138", + "ident": "27AZ", + "type": "small_airport", + "name": "Eagle Roost Airpark", + "latitude_deg": "33.919276", + "longitude_deg": "-113.167795", + "elevation_ft": "2206", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Aguila", + "scheduled_service": "no", + "gps_code": "27AZ", + "local_code": "27AZ", + "keywords": "aguila, eagle roost, valley of the eagles" + }, + { + "id": "9139", + "ident": "27C", + "type": "small_airport", + "name": "Mecosta Morton Airport", + "latitude_deg": "43.63046", + "longitude_deg": "-85.261095", + "elevation_ft": "1022", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Mecosta", + "scheduled_service": "no", + "gps_code": "K27C", + "local_code": "27C" + }, + { + "id": "9140", + "ident": "27CA", + "type": "small_airport", + "name": "Holiday Ranch Airport", + "latitude_deg": "34.561100006103516", + "longitude_deg": "-117.08100128173828", + "elevation_ft": "3260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Apple Valley", + "scheduled_service": "no", + "gps_code": "27CA", + "local_code": "27CA" + }, + { + "id": "9141", + "ident": "27CL", + "type": "small_airport", + "name": "Sopwith Farm Airport", + "latitude_deg": "38.747100830078125", + "longitude_deg": "-121.572998046875", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pleasant Grove", + "scheduled_service": "no", + "gps_code": "27CL", + "local_code": "27CL" + }, + { + "id": "9142", + "ident": "27CN", + "type": "heliport", + "name": "SCE Pardee Substation Helistop", + "latitude_deg": "34.439531", + "longitude_deg": "-118.57928", + "elevation_ft": "1073", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Clarita", + "scheduled_service": "no", + "gps_code": "27CN", + "local_code": "27CN" + }, + { + "id": "9143", + "ident": "27CO", + "type": "small_airport", + "name": "Roubideau Airport", + "latitude_deg": "38.72865", + "longitude_deg": "-108.12503", + "elevation_ft": "4900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Delta", + "scheduled_service": "no", + "gps_code": "27CO", + "local_code": "27CO" + }, + { + "id": "9144", + "ident": "27FA", + "type": "closed", + "name": "Orange County Sheriff's Office Heliport", + "latitude_deg": "28.5075", + "longitude_deg": "-81.413399", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "27FA", + "local_code": "27FA" + }, + { + "id": "9145", + "ident": "27FD", + "type": "heliport", + "name": "Coastal Helicopters Inc Heliport", + "latitude_deg": "30.270423", + "longitude_deg": "-85.524241", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City", + "scheduled_service": "no", + "gps_code": "27FD", + "local_code": "27FD" + }, + { + "id": "9146", + "ident": "27FL", + "type": "heliport", + "name": "AdventHealth Wesley Chapel Heliport", + "latitude_deg": "28.19471", + "longitude_deg": "-82.350453", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Wesley Chapel", + "scheduled_service": "no", + "gps_code": "27FL", + "local_code": "27FL", + "keywords": "Wesley Chapel Medical Center" + }, + { + "id": "9147", + "ident": "27GA", + "type": "small_airport", + "name": "Wilson Airstrip", + "latitude_deg": "33.658193", + "longitude_deg": "-85.010195", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Carrollton", + "scheduled_service": "no", + "gps_code": "27GA", + "local_code": "27GA" + }, + { + "id": "9148", + "ident": "27IA", + "type": "small_airport", + "name": "Oldfield Aero", + "latitude_deg": "40.75130081179999", + "longitude_deg": "-92.0307006836", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Keosauqua", + "scheduled_service": "no", + "gps_code": "27IA", + "local_code": "27IA" + }, + { + "id": "9149", + "ident": "27II", + "type": "heliport", + "name": "Fort Benjamin Harrison Hospital Heliport", + "latitude_deg": "39.8650016784668", + "longitude_deg": "-85.997802734375", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "27II", + "local_code": "27II" + }, + { + "id": "9150", + "ident": "27IL", + "type": "heliport", + "name": "Jersey Community Hospital Heliport", + "latitude_deg": "39.11000061035156", + "longitude_deg": "-90.34369659423828", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Jerseyville", + "scheduled_service": "no", + "gps_code": "27IL", + "local_code": "27IL" + }, + { + "id": "9151", + "ident": "27IN", + "type": "heliport", + "name": "St Vincent Indianapolis Hospital Heliport", + "latitude_deg": "39.90800094604492", + "longitude_deg": "-86.19349670410156", + "elevation_ft": "833", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "27IN", + "local_code": "27IN" + }, + { + "id": "9152", + "ident": "27IS", + "type": "small_airport", + "name": "Gelfius International Airport", + "latitude_deg": "38.14889907836914", + "longitude_deg": "-88.67030334472656", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Dahlgren", + "scheduled_service": "no", + "gps_code": "27IS", + "local_code": "27IS" + }, + { + "id": "45533", + "ident": "27JY", + "type": "heliport", + "name": "Heaton Heliport", + "latitude_deg": "41.126178", + "longitude_deg": "-74.82275", + "elevation_ft": "942", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Newton", + "scheduled_service": "no", + "gps_code": "27JY", + "local_code": "27JY" + }, + { + "id": "9153", + "ident": "27KS", + "type": "small_airport", + "name": "Bellamy Farm Airport", + "latitude_deg": "39.13006", + "longitude_deg": "-101.713829", + "elevation_ft": "3650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Goodland", + "scheduled_service": "no", + "gps_code": "27KS", + "local_code": "27KS" + }, + { + "id": "9154", + "ident": "27KY", + "type": "closed", + "name": "Bogle Farm Heliport", + "latitude_deg": "36.951099", + "longitude_deg": "-86.508102", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Bowling Green", + "scheduled_service": "no", + "keywords": "27KY" + }, + { + "id": "9155", + "ident": "27LA", + "type": "heliport", + "name": "Baton Rouge General Hospital Heliport", + "latitude_deg": "30.44879913330078", + "longitude_deg": "-91.1531982421875", + "elevation_ft": "93", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no", + "gps_code": "27LA", + "local_code": "27LA" + }, + { + "id": "9156", + "ident": "27LL", + "type": "small_airport", + "name": "Ralph Jacobs Airport", + "latitude_deg": "38.375099182128906", + "longitude_deg": "-90.31929779052734", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Valmeyer", + "scheduled_service": "no", + "gps_code": "27LL", + "local_code": "27LL" + }, + { + "id": "9157", + "ident": "27LS", + "type": "heliport", + "name": "La Dotd Headquarters Heliport", + "latitude_deg": "30.459199905395508", + "longitude_deg": "-91.17639923095703", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no", + "gps_code": "27LS", + "local_code": "27LS" + }, + { + "id": "9158", + "ident": "27MA", + "type": "seaplane_base", + "name": "Wamsetto Seaplane Base", + "latitude_deg": "41.82059860229492", + "longitude_deg": "-71.11470031738281", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Berkley", + "scheduled_service": "no", + "gps_code": "27MA", + "local_code": "27MA" + }, + { + "id": "326872", + "ident": "27MD", + "type": "small_airport", + "name": "Myles Landing Airport", + "latitude_deg": "39.098332", + "longitude_deg": "-75.895029", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Church Hill", + "scheduled_service": "no", + "gps_code": "27MD", + "local_code": "27MD" + }, + { + "id": "9159", + "ident": "27MI", + "type": "small_airport", + "name": "Miller Field", + "latitude_deg": "43.372798919677734", + "longitude_deg": "-83.48660278320312", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Vassar", + "scheduled_service": "no", + "gps_code": "27MI", + "local_code": "27MI" + }, + { + "id": "9160", + "ident": "27MN", + "type": "small_airport", + "name": "Lake Bronson Airport", + "latitude_deg": "48.73749923706055", + "longitude_deg": "-96.65450286865234", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Lake Bronson", + "scheduled_service": "no", + "gps_code": "27MN", + "local_code": "27MN" + }, + { + "id": "9161", + "ident": "27MO", + "type": "small_airport", + "name": "Route 66 Airfield", + "latitude_deg": "37.19390106201172", + "longitude_deg": "-94.22419738769531", + "elevation_ft": "1055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Carthage", + "scheduled_service": "no", + "gps_code": "27MO", + "local_code": "27MO" + }, + { + "id": "350181", + "ident": "27MS", + "type": "small_airport", + "name": "Jolly Field", + "latitude_deg": "32.758235", + "longitude_deg": "-89.408718", + "elevation_ft": "386", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Carthage", + "scheduled_service": "no", + "gps_code": "27MS", + "local_code": "27MS" + }, + { + "id": "9162", + "ident": "27MT", + "type": "small_airport", + "name": "Rahn Airport", + "latitude_deg": "48.324413", + "longitude_deg": "-114.326501", + "elevation_ft": "3090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Kalispell", + "scheduled_service": "no", + "gps_code": "27MT", + "local_code": "27MT" + }, + { + "id": "9163", + "ident": "27NC", + "type": "heliport", + "name": "Brunswick Media Center Heliport", + "latitude_deg": "33.95069885253906", + "longitude_deg": "-78.02439880371094", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Southport", + "scheduled_service": "no", + "gps_code": "27NC", + "local_code": "27NC" + }, + { + "id": "9164", + "ident": "27NE", + "type": "small_airport", + "name": "Hendricks Field", + "latitude_deg": "40.722801208496094", + "longitude_deg": "-101.7959976196289", + "elevation_ft": "3450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Grant", + "scheduled_service": "no", + "gps_code": "27NE", + "local_code": "27NE" + }, + { + "id": "45524", + "ident": "27NH", + "type": "heliport", + "name": "Phantom One Heliport", + "latitude_deg": "43.673972", + "longitude_deg": "-72.206472", + "elevation_ft": "1315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Hanover", + "scheduled_service": "no", + "gps_code": "27NH", + "local_code": "27NH" + }, + { + "id": "9165", + "ident": "27NJ", + "type": "heliport", + "name": "Sony Music Heliport", + "latitude_deg": "39.748199462890625", + "longitude_deg": "-75.12799835205078", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Pitman", + "scheduled_service": "no", + "gps_code": "27NJ", + "local_code": "27NJ" + }, + { + "id": "45669", + "ident": "27NK", + "type": "small_airport", + "name": "Mohawk Air Park", + "latitude_deg": "43.113317", + "longitude_deg": "-75.044467", + "elevation_ft": "1079", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Schyler", + "scheduled_service": "no", + "gps_code": "27NK", + "local_code": "27NK" + }, + { + "id": "9166", + "ident": "27NY", + "type": "heliport", + "name": "Don's Heliport", + "latitude_deg": "41.622693", + "longitude_deg": "-74.241485", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Wallkill", + "scheduled_service": "no", + "gps_code": "27NY", + "local_code": "27NY" + }, + { + "id": "9167", + "ident": "27OH", + "type": "small_airport", + "name": "Schaller Airport", + "latitude_deg": "40.94670104980469", + "longitude_deg": "-83.67990112304688", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Findlay", + "scheduled_service": "no", + "gps_code": "27OH", + "local_code": "27OH" + }, + { + "id": "9168", + "ident": "27OI", + "type": "closed", + "name": "Auburn Airport", + "latitude_deg": "41.412872", + "longitude_deg": "-81.283918", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Chagrin Falls", + "scheduled_service": "no", + "keywords": "27OI" + }, + { + "id": "9169", + "ident": "27OK", + "type": "small_airport", + "name": "Thomas Landing Airport", + "latitude_deg": "36.7422981262207", + "longitude_deg": "-96.96389770507812", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ponca City", + "scheduled_service": "no", + "gps_code": "27OK", + "local_code": "27OK" + }, + { + "id": "9170", + "ident": "27OR", + "type": "heliport", + "name": "Time Flies Private Heliport", + "latitude_deg": "44.653123", + "longitude_deg": "-124.058249", + "elevation_ft": "138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Newport", + "scheduled_service": "no", + "keywords": "27OR" + }, + { + "id": "9171", + "ident": "27PA", + "type": "heliport", + "name": "Fort Lee Heliport", + "latitude_deg": "40.65140151977539", + "longitude_deg": "-78.82720184326172", + "elevation_ft": "1995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Nicktown", + "scheduled_service": "no", + "gps_code": "27PA", + "local_code": "27PA" + }, + { + "id": "9172", + "ident": "27PN", + "type": "closed", + "name": "Shelley Private Airport", + "latitude_deg": "40.681198", + "longitude_deg": "-77.161903", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Richfield", + "scheduled_service": "no", + "keywords": "27PN" + }, + { + "id": "9173", + "ident": "27SC", + "type": "heliport", + "name": "Upair Heliport", + "latitude_deg": "34.229400634765625", + "longitude_deg": "-80.68219757080078", + "elevation_ft": "251", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Lugoff", + "scheduled_service": "no", + "gps_code": "27SC", + "local_code": "27SC" + }, + { + "id": "9174", + "ident": "27SD", + "type": "heliport", + "name": "Albrecht Heliport", + "latitude_deg": "44.295501708984375", + "longitude_deg": "-97.55259704589844", + "elevation_ft": "1722", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "De Smet", + "scheduled_service": "no", + "gps_code": "27SD", + "local_code": "27SD" + }, + { + "id": "9175", + "ident": "27TA", + "type": "heliport", + "name": "Headwind Heliport", + "latitude_deg": "32.343101501464844", + "longitude_deg": "-95.19709777832031", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tyler", + "scheduled_service": "no", + "gps_code": "27TA", + "local_code": "27TA" + }, + { + "id": "9176", + "ident": "27TE", + "type": "heliport", + "name": "Hospitals of Providence East Campus Heliport", + "latitude_deg": "31.791186", + "longitude_deg": "-106.263621", + "elevation_ft": "4002", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Paso", + "scheduled_service": "no", + "gps_code": "27TE", + "local_code": "27TE", + "keywords": "Sierra Providence Hospital Heliport" + }, + { + "id": "9177", + "ident": "27TN", + "type": "heliport", + "name": "Memphis Police Department Heliport", + "latitude_deg": "35.2494010925293", + "longitude_deg": "-90.01580047607422", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Memphis", + "scheduled_service": "no", + "gps_code": "27TN", + "local_code": "27TN" + }, + { + "id": "9178", + "ident": "27TS", + "type": "heliport", + "name": "Walden Ranch Heliport", + "latitude_deg": "33.0181999206543", + "longitude_deg": "-96.50689697265625", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wylie", + "scheduled_service": "no", + "gps_code": "27TS", + "local_code": "27TS" + }, + { + "id": "9179", + "ident": "27TX", + "type": "closed", + "name": "Charter Bank Building Heliport", + "latitude_deg": "29.741899", + "longitude_deg": "-95.484703", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "keywords": "27TX" + }, + { + "id": "9180", + "ident": "27VA", + "type": "heliport", + "name": "Prince William Hospital Heliport", + "latitude_deg": "38.76580047607422", + "longitude_deg": "-77.48780059814453", + "elevation_ft": "243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Manassas", + "scheduled_service": "no", + "gps_code": "27VA", + "local_code": "27VA" + }, + { + "id": "9181", + "ident": "27W", + "type": "small_airport", + "name": "Lake Wenatchee State Airport", + "latitude_deg": "47.819400787353516", + "longitude_deg": "-120.72000122070312", + "elevation_ft": "1939", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Leavenworth", + "scheduled_service": "no", + "gps_code": "27W", + "local_code": "27W", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_Wenatchee_State_Airport" + }, + { + "id": "9182", + "ident": "27WA", + "type": "small_airport", + "name": "J C's Airport", + "latitude_deg": "48.32509994506836", + "longitude_deg": "-122.31600189208984", + "elevation_ft": "236", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Conway", + "scheduled_service": "no", + "gps_code": "27WA", + "local_code": "27WA" + }, + { + "id": "9183", + "ident": "27WI", + "type": "small_airport", + "name": "Tegeler Airport", + "latitude_deg": "44.807701110839844", + "longitude_deg": "-92.71379852294922", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Prescott", + "scheduled_service": "no", + "gps_code": "27WI", + "local_code": "27WI" + }, + { + "id": "322663", + "ident": "27WV", + "type": "small_airport", + "name": "Kurt's Field", + "latitude_deg": "38.4788193", + "longitude_deg": "-81.8036944", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Poca", + "scheduled_service": "no", + "gps_code": "27WV", + "local_code": "27WV" + }, + { + "id": "45802", + "ident": "27XA", + "type": "small_airport", + "name": "Arnett Landing Airport", + "latitude_deg": "32.979389", + "longitude_deg": "-97.889917", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Poolville", + "scheduled_service": "no", + "gps_code": "27XA", + "local_code": "27XA" + }, + { + "id": "9184", + "ident": "27XS", + "type": "small_airport", + "name": "Sport Flyers Airport", + "latitude_deg": "29.837999", + "longitude_deg": "-95.94981", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brookshire", + "scheduled_service": "no", + "gps_code": "27XS", + "local_code": "27XS", + "keywords": "1TX" + }, + { + "id": "9185", + "ident": "28A", + "type": "small_airport", + "name": "Goose Creek Airport", + "latitude_deg": "35.12099838256836", + "longitude_deg": "-80.5873031616211", + "elevation_ft": "565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Indian Trail", + "scheduled_service": "no", + "gps_code": "28A", + "local_code": "28A" + }, + { + "id": "9186", + "ident": "28AK", + "type": "small_airport", + "name": "Gates Ranch Airport", + "latitude_deg": "61.808899", + "longitude_deg": "-147.858993", + "elevation_ft": "1875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Glacier View", + "scheduled_service": "no", + "gps_code": "28AK", + "local_code": "28AK", + "keywords": "Farrars Airport, Sutton" + }, + { + "id": "9187", + "ident": "28AL", + "type": "closed", + "name": "Golden Pond Airport", + "latitude_deg": "33.862597", + "longitude_deg": "-86.120696", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Ashville", + "scheduled_service": "no", + "keywords": "28AL" + }, + { + "id": "9188", + "ident": "28AR", + "type": "small_airport", + "name": "Henley Aerodrome", + "latitude_deg": "35.83330154418945", + "longitude_deg": "-91.43329620361328", + "elevation_ft": "377", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Charlotte", + "scheduled_service": "no", + "gps_code": "28AR", + "local_code": "28AR" + }, + { + "id": "9189", + "ident": "28AZ", + "type": "small_airport", + "name": "Sampley's Airport", + "latitude_deg": "33.922798156738", + "longitude_deg": "-113.18099975586", + "elevation_ft": "2208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Aguila", + "scheduled_service": "no", + "gps_code": "28AZ", + "local_code": "28AZ", + "keywords": "E21" + }, + { + "id": "9190", + "ident": "28CA", + "type": "small_airport", + "name": "Dos Palos Airport", + "latitude_deg": "36.964044", + "longitude_deg": "-120.62994", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Dos Palos", + "scheduled_service": "no", + "gps_code": "28CA", + "local_code": "28CA" + }, + { + "id": "9191", + "ident": "28CL", + "type": "closed", + "name": "Borax Heliport", + "latitude_deg": "35.030498", + "longitude_deg": "-117.708", + "elevation_ft": "2400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Boron", + "scheduled_service": "no", + "keywords": "28CL, US Borax Airstrip" + }, + { + "id": "9192", + "ident": "28CN", + "type": "heliport", + "name": "San Joaquin Community Hospital Heliport", + "latitude_deg": "35.38359832763672", + "longitude_deg": "-119.0199966430664", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bakersfield", + "scheduled_service": "no", + "gps_code": "28CN", + "local_code": "28CN" + }, + { + "id": "9193", + "ident": "28CO", + "type": "heliport", + "name": "Blm Fire Center Heliport", + "latitude_deg": "39.117801666259766", + "longitude_deg": "-108.53900146484375", + "elevation_ft": "4820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Grand Junction", + "scheduled_service": "no", + "gps_code": "28CO", + "local_code": "28CO" + }, + { + "id": "9194", + "ident": "28FA", + "type": "heliport", + "name": "North Broward Medical Center Heliport", + "latitude_deg": "26.278245", + "longitude_deg": "-80.122025", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pompano Beach", + "scheduled_service": "no", + "gps_code": "28FA", + "local_code": "28FA" + }, + { + "id": "9195", + "ident": "28FD", + "type": "heliport", + "name": "Jackson County Hospital Heliport", + "latitude_deg": "30.787313", + "longitude_deg": "-85.240914", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Marianna", + "scheduled_service": "no", + "gps_code": "28FD", + "local_code": "28FD" + }, + { + "id": "9196", + "ident": "28FL", + "type": "small_airport", + "name": "Jim Finlay Farm Airport", + "latitude_deg": "29.4419002532959", + "longitude_deg": "-81.58309936523438", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Cresent City", + "scheduled_service": "no", + "gps_code": "28FL", + "local_code": "28FL" + }, + { + "id": "9197", + "ident": "28GA", + "type": "closed", + "name": "Hancock Memorial Hospital Heliport", + "latitude_deg": "33.268551", + "longitude_deg": "-82.972071", + "elevation_ft": "542", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Sparta", + "scheduled_service": "no", + "gps_code": "28GA", + "local_code": "28GA", + "home_link": "https://www.dailymail.co.uk/news/article-3830737/Frozen-time-Eerie-photographs-reveal-inside-Bad-Debt-Hospital-south-Georgia-med" + }, + { + "id": "345301", + "ident": "28IA", + "type": "small_airport", + "name": "Pegtown Airport", + "latitude_deg": "40.985806", + "longitude_deg": "-91.090667", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Mediapolis", + "scheduled_service": "no", + "gps_code": "28IA", + "local_code": "28IA" + }, + { + "id": "9198", + "ident": "28II", + "type": "small_airport", + "name": "Cedar Farm Airport", + "latitude_deg": "37.974700927734375", + "longitude_deg": "-86.05619812011719", + "elevation_ft": "453", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Laconia", + "scheduled_service": "no", + "gps_code": "28II", + "local_code": "28II" + }, + { + "id": "9199", + "ident": "28IL", + "type": "small_airport", + "name": "West Grove Airport", + "latitude_deg": "42.097198", + "longitude_deg": "-89.419296", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Leaf River", + "scheduled_service": "no", + "gps_code": "28IL", + "local_code": "28IL", + "keywords": "Nick Lung Flight Park" + }, + { + "id": "9200", + "ident": "28IN", + "type": "closed", + "name": "Marchino Field", + "latitude_deg": "38.637798", + "longitude_deg": "-87.4347", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Vincennes", + "scheduled_service": "no", + "keywords": "28IN" + }, + { + "id": "9201", + "ident": "28IS", + "type": "small_airport", + "name": "O K Flying Club Inc Airport", + "latitude_deg": "39.194801330566406", + "longitude_deg": "-89.31179809570312", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Fillmore", + "scheduled_service": "no", + "gps_code": "28IS", + "local_code": "28IS" + }, + { + "id": "9202", + "ident": "28KS", + "type": "small_airport", + "name": "Highland Farm Airport", + "latitude_deg": "38.54249954223633", + "longitude_deg": "-95.15609741210938", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Rantoul", + "scheduled_service": "no", + "gps_code": "28KS", + "local_code": "28KS" + }, + { + "id": "9203", + "ident": "28KY", + "type": "small_airport", + "name": "Brandon Airdrome Airport", + "latitude_deg": "36.57590103149414", + "longitude_deg": "-88.31340026855469", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Murray", + "scheduled_service": "no", + "gps_code": "28KY", + "local_code": "28KY" + }, + { + "id": "9204", + "ident": "28LA", + "type": "heliport", + "name": "Washington Parish Fire Dist 7/OEP Heliport", + "latitude_deg": "30.7833003998", + "longitude_deg": "-89.91670227050001", + "elevation_ft": "146", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bogalusa", + "scheduled_service": "no", + "gps_code": "28LA", + "local_code": "28LA" + }, + { + "id": "9205", + "ident": "28LL", + "type": "small_airport", + "name": "Williamson Airport", + "latitude_deg": "39.46030044555664", + "longitude_deg": "-88.86840057373047", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Westervelt", + "scheduled_service": "no", + "gps_code": "28LL", + "local_code": "28LL" + }, + { + "id": "9206", + "ident": "28LS", + "type": "heliport", + "name": "Hargroder Heliport", + "latitude_deg": "30.169200897216797", + "longitude_deg": "-92.0625", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "28LS", + "local_code": "28LS" + }, + { + "id": "9207", + "ident": "28M", + "type": "small_airport", + "name": "Cranland Airport", + "latitude_deg": "42.02510070800781", + "longitude_deg": "-70.83809661865234", + "elevation_ft": "71", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Hanson", + "scheduled_service": "no", + "gps_code": "28M", + "local_code": "28M" + }, + { + "id": "9208", + "ident": "28MA", + "type": "small_airport", + "name": "Cannizzaro Field", + "latitude_deg": "42.078238", + "longitude_deg": "-72.818792", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Southwick", + "scheduled_service": "no", + "gps_code": "28MA", + "local_code": "28MA" + }, + { + "id": "325470", + "ident": "28MD", + "type": "heliport", + "name": "Fedex Field Heliport", + "latitude_deg": "38.908774", + "longitude_deg": "-76.866934", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Landover", + "scheduled_service": "no", + "gps_code": "28MD", + "local_code": "28MD" + }, + { + "id": "9209", + "ident": "28MI", + "type": "small_airport", + "name": "Miller-Herrold Airport", + "latitude_deg": "44.8744010925293", + "longitude_deg": "-85.7926025390625", + "elevation_ft": "624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Cedar", + "scheduled_service": "no", + "gps_code": "28MI", + "local_code": "28MI" + }, + { + "id": "9210", + "ident": "28MN", + "type": "seaplane_base", + "name": "Vasa Park Seaplane Base", + "latitude_deg": "44.963600158691406", + "longitude_deg": "-93.62249755859375", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Spring Park", + "scheduled_service": "no", + "gps_code": "28MN", + "local_code": "28MN" + }, + { + "id": "9211", + "ident": "28MO", + "type": "small_airport", + "name": "Pasley Airport", + "latitude_deg": "37.973899841308594", + "longitude_deg": "-93.81880187988281", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Roscoe", + "scheduled_service": "no", + "gps_code": "28MO", + "local_code": "28MO" + }, + { + "id": "45508", + "ident": "28MT", + "type": "small_airport", + "name": "Cain Ranch Airport", + "latitude_deg": "46.952372", + "longitude_deg": "-112.747078", + "elevation_ft": "4480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "28MT", + "local_code": "28MT" + }, + { + "id": "9212", + "ident": "28N", + "type": "small_airport", + "name": "Vineland-Downtown Airport", + "latitude_deg": "39.537601", + "longitude_deg": "-74.966301", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Vineland", + "scheduled_service": "no", + "local_code": "28N" + }, + { + "id": "9213", + "ident": "28NC", + "type": "balloonport", + "name": "Balloonport of Greensboro Balloonport", + "latitude_deg": "35.9557991027832", + "longitude_deg": "-79.81890106201172", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Greensboro", + "scheduled_service": "no", + "gps_code": "28NC", + "local_code": "28NC" + }, + { + "id": "9214", + "ident": "28NE", + "type": "small_airport", + "name": "Thies Airport", + "latitude_deg": "42.44169998168945", + "longitude_deg": "-97.29669952392578", + "elevation_ft": "1750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Randolph", + "scheduled_service": "no", + "gps_code": "28NE", + "local_code": "28NE" + }, + { + "id": "9215", + "ident": "28NH", + "type": "heliport", + "name": "A and K Heliport", + "latitude_deg": "42.9369010925293", + "longitude_deg": "-71.66950225830078", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "New Boston", + "scheduled_service": "no", + "gps_code": "28NH", + "local_code": "28NH" + }, + { + "id": "45670", + "ident": "28NK", + "type": "small_airport", + "name": "Ritchie Airfield", + "latitude_deg": "44.186944", + "longitude_deg": "-76.076389", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Clayton", + "scheduled_service": "no", + "gps_code": "28NK", + "local_code": "28NK" + }, + { + "id": "322683", + "ident": "28NR", + "type": "small_airport", + "name": "Dry Pond Airport", + "latitude_deg": "35.3475", + "longitude_deg": "-81.995001", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Rutherfordton", + "scheduled_service": "no", + "gps_code": "28NR", + "local_code": "28NR" + }, + { + "id": "45671", + "ident": "28NY", + "type": "small_airport", + "name": "Spaudling Aerodrome", + "latitude_deg": "42.308333", + "longitude_deg": "-79.225", + "elevation_ft": "1607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Cassadaga", + "scheduled_service": "no", + "gps_code": "28NY", + "local_code": "28NY" + }, + { + "id": "9216", + "ident": "28OH", + "type": "small_airport", + "name": "Newbury Airport", + "latitude_deg": "41.703399658203125", + "longitude_deg": "-84.00270080566406", + "elevation_ft": "743", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lyons", + "scheduled_service": "no", + "gps_code": "28OH", + "local_code": "28OH" + }, + { + "id": "9217", + "ident": "28OI", + "type": "heliport", + "name": "Mount Carmel East Hospital Heliport", + "latitude_deg": "39.98059844970703", + "longitude_deg": "-82.84159851074219", + "elevation_ft": "843", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "28OI", + "local_code": "28OI" + }, + { + "id": "9218", + "ident": "28OK", + "type": "small_airport", + "name": "Pellar Farm Airport", + "latitude_deg": "35.511128", + "longitude_deg": "-98.036757", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Union City", + "scheduled_service": "no", + "gps_code": "28OK", + "local_code": "28OK" + }, + { + "id": "9219", + "ident": "28OR", + "type": "small_airport", + "name": "Parrett Mountain Airport", + "latitude_deg": "45.479000091552734", + "longitude_deg": "-122.23400115966797", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Newberg", + "scheduled_service": "no", + "gps_code": "28OR", + "local_code": "28OR" + }, + { + "id": "9220", + "ident": "28PA", + "type": "closed", + "name": "Yarrow Airport", + "latitude_deg": "40.252198", + "longitude_deg": "-75.444317", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Schwenksville", + "scheduled_service": "no", + "keywords": "28PA" + }, + { + "id": "9221", + "ident": "28PN", + "type": "heliport", + "name": "Harsco Heliport", + "latitude_deg": "40.25979995727539", + "longitude_deg": "-76.90969848632812", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wormleysburg", + "scheduled_service": "no", + "gps_code": "28PN", + "local_code": "28PN" + }, + { + "id": "9222", + "ident": "28PR", + "type": "heliport", + "name": "La Concepcion Hospital Heliport", + "latitude_deg": "18.108699798583984", + "longitude_deg": "-67.03939819335938", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "San German", + "scheduled_service": "no", + "gps_code": "28PR", + "local_code": "28PR" + }, + { + "id": "9223", + "ident": "28TA", + "type": "small_airport", + "name": "Duval County Ranch Co Airport", + "latitude_deg": "27.83359909", + "longitude_deg": "-98.71700287", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Freer", + "scheduled_service": "no", + "gps_code": "28TA", + "local_code": "28TA" + }, + { + "id": "9224", + "ident": "28TE", + "type": "small_airport", + "name": "Midlake Airport", + "latitude_deg": "29.268299102783203", + "longitude_deg": "-98.33699798583984", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Elmendorf", + "scheduled_service": "no", + "gps_code": "28TE", + "local_code": "28TE" + }, + { + "id": "9225", + "ident": "28TN", + "type": "heliport", + "name": "Bhm East Helipad Heliport", + "latitude_deg": "35.12670135498047", + "longitude_deg": "-89.86190032958984", + "elevation_ft": "261", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Memphis", + "scheduled_service": "no", + "gps_code": "28TN", + "local_code": "28TN" + }, + { + "id": "9226", + "ident": "28TS", + "type": "closed", + "name": "Boe-Wrinkle Airport", + "latitude_deg": "32.9048", + "longitude_deg": "-97.595001", + "elevation_ft": "802", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Azle", + "scheduled_service": "no", + "gps_code": "28TS", + "local_code": "28TS" + }, + { + "id": "346566", + "ident": "28TT", + "type": "small_airport", + "name": "Left Wing Low Airport", + "latitude_deg": "31.995861", + "longitude_deg": "-97.002169", + "elevation_ft": "596", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bynum", + "scheduled_service": "no", + "gps_code": "28TT", + "local_code": "28TT" + }, + { + "id": "9227", + "ident": "28TX", + "type": "small_airport", + "name": "Lehman Airport", + "latitude_deg": "34.085899353027344", + "longitude_deg": "-99.4551010131836", + "elevation_ft": "1275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Vernon", + "scheduled_service": "no", + "gps_code": "28TX", + "local_code": "28TX" + }, + { + "id": "9228", + "ident": "28U", + "type": "small_airport", + "name": "Owyhee Reservoir State Airport", + "latitude_deg": "43.42462", + "longitude_deg": "-117.345483", + "elevation_ft": "2680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Owyhee", + "scheduled_service": "no", + "gps_code": "K28U", + "local_code": "28U", + "wikipedia_link": "https://en.wikipedia.org/wiki/Owyhee_Reservoir_State_Airport" + }, + { + "id": "9229", + "ident": "28VA", + "type": "heliport", + "name": "Radford Aap Heliport", + "latitude_deg": "37.18479919433594", + "longitude_deg": "-80.52559661865234", + "elevation_ft": "1710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Radford", + "scheduled_service": "no", + "gps_code": "28VA", + "local_code": "28VA" + }, + { + "id": "356187", + "ident": "28VT", + "type": "heliport", + "name": "Mount Ascutney Hospital Heliport", + "latitude_deg": "43.486825", + "longitude_deg": "-72.403014", + "elevation_ft": "532", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Windsor", + "scheduled_service": "no", + "gps_code": "28VT", + "local_code": "28VT" + }, + { + "id": "9230", + "ident": "28WA", + "type": "small_airport", + "name": "Robert L Delanoy Airport", + "latitude_deg": "45.73040008544922", + "longitude_deg": "-122.73500061035156", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Vancouver", + "scheduled_service": "no", + "gps_code": "28WA", + "local_code": "28WA" + }, + { + "id": "9231", + "ident": "28WI", + "type": "small_airport", + "name": "Rutherford Airport", + "latitude_deg": "44.60409927368164", + "longitude_deg": "-92.04660034179688", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Arkansaw", + "scheduled_service": "no", + "gps_code": "28WI", + "local_code": "28WI" + }, + { + "id": "45814", + "ident": "28XA", + "type": "heliport", + "name": "Doctors Hospital of Laredo Heliport", + "latitude_deg": "27.606691", + "longitude_deg": "-99.479345", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laredo", + "scheduled_service": "no", + "gps_code": "28XA", + "local_code": "28XA" + }, + { + "id": "9232", + "ident": "28XS", + "type": "small_airport", + "name": "Flying G Airport", + "latitude_deg": "32.645999908447266", + "longitude_deg": "-96.32530212402344", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kaufman", + "scheduled_service": "no", + "gps_code": "28XS", + "local_code": "28XS" + }, + { + "id": "9233", + "ident": "29A", + "type": "seaplane_base", + "name": "Island Lake Seaplane Base", + "latitude_deg": "61.6288986206", + "longitude_deg": "-149.617996216", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "29A", + "local_code": "29A" + }, + { + "id": "9234", + "ident": "29AK", + "type": "small_airport", + "name": "Remington Field", + "latitude_deg": "64.046814", + "longitude_deg": "-145.432667", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Delta Junction", + "scheduled_service": "no", + "gps_code": "29AK", + "local_code": "29AK" + }, + { + "id": "344829", + "ident": "29AL", + "type": "heliport", + "name": "Regional Medical Center of Central Alabama Heliport", + "latitude_deg": "31.829947", + "longitude_deg": "-86.646403", + "elevation_ft": "432", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "29AL", + "local_code": "29AL" + }, + { + "id": "9235", + "ident": "29AR", + "type": "heliport", + "name": "Unity Health White County Medical Center Heliport", + "latitude_deg": "35.252507", + "longitude_deg": "-91.697333", + "elevation_ft": "273", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Searcy", + "scheduled_service": "no", + "gps_code": "29AR", + "local_code": "29AR" + }, + { + "id": "9236", + "ident": "29AZ", + "type": "small_airport", + "name": "Paloma Ranch Airport", + "latitude_deg": "32.905602", + "longitude_deg": "-112.900002", + "elevation_ft": "737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Paloma", + "scheduled_service": "no", + "gps_code": "29AZ", + "local_code": "29AZ", + "keywords": "Davis Field, Gila River Ranch" + }, + { + "id": "9237", + "ident": "29C", + "type": "small_airport", + "name": "Grindstone Air Harbor Airport", + "latitude_deg": "44.04779815673828", + "longitude_deg": "-82.91419982910156", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Port Austin", + "scheduled_service": "no", + "gps_code": "29C", + "local_code": "29C" + }, + { + "id": "9238", + "ident": "29CA", + "type": "heliport", + "name": "Landells Heliport", + "latitude_deg": "33.25590133666992", + "longitude_deg": "-116.4540023803711", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Desert Hot Springs", + "scheduled_service": "no", + "gps_code": "29CA", + "local_code": "29CA" + }, + { + "id": "9239", + "ident": "29CL", + "type": "heliport", + "name": "Childrens Hospital Los Angeles Heliport", + "latitude_deg": "34.097338", + "longitude_deg": "-118.291039", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "29CL", + "local_code": "29CL" + }, + { + "id": "9240", + "ident": "29CN", + "type": "small_airport", + "name": "Dubey Airport", + "latitude_deg": "38.84989929199219", + "longitude_deg": "-120.83399963378906", + "elevation_ft": "2400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Georgetown", + "scheduled_service": "no", + "gps_code": "29CN", + "local_code": "29CN" + }, + { + "id": "9241", + "ident": "29CO", + "type": "heliport", + "name": "St Mary's Hospital & Medical Center Heliport", + "latitude_deg": "39.089815", + "longitude_deg": "-108.562855", + "elevation_ft": "4650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Grand Junction", + "scheduled_service": "no", + "gps_code": "29CO", + "local_code": "29CO" + }, + { + "id": "9242", + "ident": "29F", + "type": "small_airport", + "name": "Joe Vaughn Spraying Airport", + "latitude_deg": "34.392251", + "longitude_deg": "-101.759918", + "elevation_ft": "3500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kress", + "scheduled_service": "no", + "gps_code": "K29F", + "local_code": "29F" + }, + { + "id": "9243", + "ident": "29FA", + "type": "seaplane_base", + "name": "Caloosa Downtown Seaplane Base", + "latitude_deg": "26.635000228881836", + "longitude_deg": "-81.875", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Myers", + "scheduled_service": "no", + "gps_code": "29FA", + "local_code": "29FA" + }, + { + "id": "9244", + "ident": "29FD", + "type": "heliport", + "name": "Gadsden Memorial Hospital Heliport", + "latitude_deg": "30.568119", + "longitude_deg": "-84.548915", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Quincy", + "scheduled_service": "no", + "gps_code": "29FD", + "local_code": "29FD" + }, + { + "id": "9245", + "ident": "29FL", + "type": "heliport", + "name": "Halifax Hospital Medical Center Heliport", + "latitude_deg": "29.198539", + "longitude_deg": "-81.053165", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Daytona Beach", + "scheduled_service": "no", + "gps_code": "29FL", + "local_code": "29FL" + }, + { + "id": "9246", + "ident": "29GA", + "type": "small_airport", + "name": "Rolling Meadows Airfield", + "latitude_deg": "33.384300231933594", + "longitude_deg": "-84.63189697265625", + "elevation_ft": "808", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Sharpsburg", + "scheduled_service": "no", + "gps_code": "29GA", + "local_code": "29GA" + }, + { + "id": "345999", + "ident": "29IA", + "type": "small_airport", + "name": "Hilltop Airport", + "latitude_deg": "40.75575", + "longitude_deg": "-95.623455", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Sidney", + "scheduled_service": "no", + "gps_code": "29IA", + "local_code": "29IA" + }, + { + "id": "9247", + "ident": "29II", + "type": "small_airport", + "name": "Norm's Airport", + "latitude_deg": "41.6598014831543", + "longitude_deg": "-86.80750274658203", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Michigan City", + "scheduled_service": "no", + "gps_code": "29II", + "local_code": "29II" + }, + { + "id": "9248", + "ident": "29IL", + "type": "closed", + "name": "Brown Heliport", + "latitude_deg": "40.3111", + "longitude_deg": "-88.951103", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Heyworth", + "scheduled_service": "no", + "keywords": "29IL" + }, + { + "id": "9249", + "ident": "29IN", + "type": "small_airport", + "name": "Homestead Airport", + "latitude_deg": "41.07590103149414", + "longitude_deg": "-85.38610076904297", + "elevation_ft": "863", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Columbia City", + "scheduled_service": "no", + "gps_code": "29IN", + "local_code": "29IN" + }, + { + "id": "9250", + "ident": "29IS", + "type": "heliport", + "name": "Norman Rittenhouse Heliport", + "latitude_deg": "40.75749969482422", + "longitude_deg": "-88.51339721679688", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Fairbury", + "scheduled_service": "no", + "gps_code": "29IS", + "local_code": "29IS" + }, + { + "id": "9251", + "ident": "29KS", + "type": "closed", + "name": "Navrat Airport", + "latitude_deg": "38.4828", + "longitude_deg": "-97.011398", + "elevation_ft": "1470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Lincolnville", + "scheduled_service": "no", + "keywords": "29KS" + }, + { + "id": "9252", + "ident": "29KY", + "type": "closed", + "name": "Cramer Aerodrome", + "latitude_deg": "36.893101", + "longitude_deg": "-87.4272", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Hopkinsville", + "scheduled_service": "no", + "gps_code": "29KY", + "local_code": "29KY" + }, + { + "id": "9253", + "ident": "29LA", + "type": "heliport", + "name": "Our Lady of the Lake Regional Medical Center Heliport", + "latitude_deg": "30.404305", + "longitude_deg": "-91.106018", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no", + "gps_code": "29LA", + "local_code": "29LA" + }, + { + "id": "9254", + "ident": "29LL", + "type": "heliport", + "name": "Monroe County Ambulance Service Heliport", + "latitude_deg": "38.33919906616211", + "longitude_deg": "-90.1624984741211", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Waterloo", + "scheduled_service": "no", + "gps_code": "29LL", + "local_code": "29LL" + }, + { + "id": "9255", + "ident": "29LS", + "type": "seaplane_base", + "name": "L Auberge du Lac Hotel Seaplane Base", + "latitude_deg": "30.207801", + "longitude_deg": "-93.265298", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Charles", + "scheduled_service": "no", + "gps_code": "29LS", + "local_code": "29LS" + }, + { + "id": "9256", + "ident": "29MA", + "type": "heliport", + "name": "Laminated Heliport", + "latitude_deg": "42.201499938964844", + "longitude_deg": "-72.59809875488281", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Holyoke", + "scheduled_service": "no", + "gps_code": "29MA", + "local_code": "29MA" + }, + { + "id": "9257", + "ident": "29MD", + "type": "closed", + "name": "Schlosser Airport", + "latitude_deg": "39.362805", + "longitude_deg": "-75.812681", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Galena", + "scheduled_service": "no", + "keywords": "29MD" + }, + { + "id": "45453", + "ident": "29ME", + "type": "seaplane_base", + "name": "Teconnet Seaplane Base", + "latitude_deg": "44.448", + "longitude_deg": "-69.530333", + "elevation_ft": "194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "China", + "scheduled_service": "no", + "gps_code": "29ME", + "local_code": "29ME" + }, + { + "id": "9258", + "ident": "29MI", + "type": "small_airport", + "name": "Sawyer Field", + "latitude_deg": "42.599998474121094", + "longitude_deg": "-84.44999694824219", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Mason", + "scheduled_service": "no", + "gps_code": "29MI", + "local_code": "29MI" + }, + { + "id": "9259", + "ident": "29MN", + "type": "small_airport", + "name": "Wetenkamp Airport", + "latitude_deg": "46.02830123901367", + "longitude_deg": "-96.36280059814453", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Tintah", + "scheduled_service": "no", + "gps_code": "29MN", + "local_code": "29MN" + }, + { + "id": "9260", + "ident": "29MO", + "type": "small_airport", + "name": "Rollert Farm Airport", + "latitude_deg": "39.350799560546875", + "longitude_deg": "-94.51860046386719", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Smithville", + "scheduled_service": "no", + "gps_code": "29MO", + "local_code": "29MO" + }, + { + "id": "9261", + "ident": "29MT", + "type": "small_airport", + "name": "Craik Airport", + "latitude_deg": "47.738112", + "longitude_deg": "-115.504332", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Trout Creek", + "scheduled_service": "no", + "gps_code": "29MT", + "local_code": "29MT" + }, + { + "id": "9262", + "ident": "29N", + "type": "small_airport", + "name": "Kroelinger Airport", + "latitude_deg": "39.52399826049805", + "longitude_deg": "-75.04630279541016", + "elevation_ft": "93", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Vineland", + "scheduled_service": "no", + "gps_code": "29N", + "local_code": "29N" + }, + { + "id": "9263", + "ident": "29NC", + "type": "closed", + "name": "Self Field", + "latitude_deg": "35.311755", + "longitude_deg": "-81.625296", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Shelby", + "scheduled_service": "no", + "keywords": "29NC" + }, + { + "id": "9264", + "ident": "29NE", + "type": "small_airport", + "name": "Bartmess Airport", + "latitude_deg": "40.76110076904297", + "longitude_deg": "-101.18099975585938", + "elevation_ft": "3150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Wallace", + "scheduled_service": "no", + "gps_code": "29NE", + "local_code": "29NE" + }, + { + "id": "9265", + "ident": "29NH", + "type": "heliport", + "name": "Sunny Hill Landing Heliport", + "latitude_deg": "42.88840103149414", + "longitude_deg": "-71.73780059814453", + "elevation_ft": "822", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Lyndeborough", + "scheduled_service": "no", + "gps_code": "29NH", + "local_code": "29NH" + }, + { + "id": "9266", + "ident": "29NJ", + "type": "heliport", + "name": "J L Gentile Heliport", + "latitude_deg": "39.483979848", + "longitude_deg": "-74.8808383942", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Buena", + "scheduled_service": "no", + "gps_code": "29NJ", + "local_code": "29NJ", + "keywords": "H-22" + }, + { + "id": "45550", + "ident": "29NY", + "type": "closed", + "name": "Breezy Meadows Heliport", + "latitude_deg": "44.088", + "longitude_deg": "-76.269167", + "elevation_ft": "296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Cape Vincent", + "scheduled_service": "no", + "keywords": "29NY" + }, + { + "id": "9267", + "ident": "29OH", + "type": "small_airport", + "name": "Fox Airport", + "latitude_deg": "40.6864013671875", + "longitude_deg": "-81.30259704589844", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Magnolia", + "scheduled_service": "no", + "gps_code": "29OH", + "local_code": "29OH" + }, + { + "id": "9268", + "ident": "29OI", + "type": "heliport", + "name": "Jtv Heliport", + "latitude_deg": "41.81700134277344", + "longitude_deg": "-81.06900024414062", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "29OI", + "local_code": "29OI" + }, + { + "id": "9269", + "ident": "29OK", + "type": "closed", + "name": "Ditch Witch Airport", + "latitude_deg": "36.300346", + "longitude_deg": "-97.318526", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Perry", + "scheduled_service": "no", + "keywords": "29OK" + }, + { + "id": "9270", + "ident": "29OR", + "type": "closed", + "name": "Smith Private Airport", + "latitude_deg": "45.031465", + "longitude_deg": "-122.956952", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Brooks", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Smith_Private_Airport", + "keywords": "29OR" + }, + { + "id": "9271", + "ident": "29PA", + "type": "closed", + "name": "Gardner Airport", + "latitude_deg": "40.555847", + "longitude_deg": "-75.645283", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Breinigsville", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gardner_Airport_(Pennsylvania)", + "keywords": "29PA" + }, + { + "id": "9272", + "ident": "29PN", + "type": "heliport", + "name": "St Vincent Health Center Heliport", + "latitude_deg": "42.11169815", + "longitude_deg": "-80.08010101", + "elevation_ft": "731", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Erie", + "scheduled_service": "no", + "gps_code": "29PN", + "local_code": "29PN" + }, + { + "id": "9273", + "ident": "29RI", + "type": "heliport", + "name": "Vaucluse Farm Heliport", + "latitude_deg": "41.542198181152344", + "longitude_deg": "-71.23609924316406", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Portsmouth", + "scheduled_service": "no", + "gps_code": "29RI", + "local_code": "29RI" + }, + { + "id": "9274", + "ident": "29SC", + "type": "small_airport", + "name": "Hannah Rhea Field", + "latitude_deg": "32.90140151977539", + "longitude_deg": "-80.85359954833984", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Walterboro", + "scheduled_service": "no", + "gps_code": "29SC", + "local_code": "29SC" + }, + { + "id": "45809", + "ident": "29TA", + "type": "small_airport", + "name": "Cactus Hill Airport", + "latitude_deg": "33.873053", + "longitude_deg": "-98.645906", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wichita Falls", + "scheduled_service": "no", + "gps_code": "29TA", + "local_code": "29TA" + }, + { + "id": "9275", + "ident": "29TE", + "type": "closed", + "name": "Pearland Heliport", + "latitude_deg": "29.558599", + "longitude_deg": "-95.2808", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pearland", + "scheduled_service": "no", + "local_code": "29TE", + "keywords": "29TE" + }, + { + "id": "45784", + "ident": "29TN", + "type": "heliport", + "name": "Erlanger Bledsoe Hospital Heliport", + "latitude_deg": "35.620112", + "longitude_deg": "-85.190772", + "elevation_ft": "957", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Pikeville", + "scheduled_service": "no", + "gps_code": "29TN", + "local_code": "29TN" + }, + { + "id": "9276", + "ident": "29TS", + "type": "heliport", + "name": "West Houston Medical Center Heliport", + "latitude_deg": "29.728542", + "longitude_deg": "-95.594489", + "elevation_ft": "81", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "29TS", + "local_code": "29TS" + }, + { + "id": "9277", + "ident": "29TX", + "type": "small_airport", + "name": "Lockett Airport", + "latitude_deg": "34.094807", + "longitude_deg": "-99.365108", + "elevation_ft": "1282", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Vernon", + "scheduled_service": "no", + "gps_code": "29TX", + "local_code": "29TX" + }, + { + "id": "9278", + "ident": "29VA", + "type": "small_airport", + "name": "Rhynalds Ranch Airport", + "latitude_deg": "38.529300689697266", + "longitude_deg": "-77.73889923095703", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Remington", + "scheduled_service": "no", + "gps_code": "29VA", + "local_code": "29VA" + }, + { + "id": "45869", + "ident": "29VT", + "type": "seaplane_base", + "name": "Middle Hero Seaplane Base", + "latitude_deg": "44.756389", + "longitude_deg": "-73.266667", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Grand Isle", + "scheduled_service": "no", + "gps_code": "29VT", + "local_code": "29VT" + }, + { + "id": "9279", + "ident": "29WA", + "type": "heliport", + "name": "Crossings Heliport", + "latitude_deg": "47.261713", + "longitude_deg": "-122.432714", + "elevation_ft": "384", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tacoma", + "scheduled_service": "no", + "gps_code": "29WA", + "local_code": "29WA" + }, + { + "id": "9280", + "ident": "29WI", + "type": "small_airport", + "name": "Whittlesey Cranberry Company Airport", + "latitude_deg": "44.325337", + "longitude_deg": "-90.027015", + "elevation_ft": "982", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Babcock", + "scheduled_service": "no", + "gps_code": "29WI", + "local_code": "29WI" + }, + { + "id": "45843", + "ident": "29XA", + "type": "heliport", + "name": "Ascension Seton Edgar B Davis Hospital Helipad", + "latitude_deg": "29.673223", + "longitude_deg": "-97.653818", + "elevation_ft": "395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Luling", + "scheduled_service": "no", + "gps_code": "29XA", + "local_code": "29XA", + "keywords": "luling, ascension seton, edgar davis" + }, + { + "id": "9281", + "ident": "29XS", + "type": "heliport", + "name": "Temple Eastex Heliport", + "latitude_deg": "31.1830997467041", + "longitude_deg": "-94.78060150146484", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Diboll", + "scheduled_service": "no", + "gps_code": "29XS", + "local_code": "29XS" + }, + { + "id": "9283", + "ident": "2A4", + "type": "closed", + "name": "Vor Lake Waterlane Seaplane Base", + "latitude_deg": "66.888454", + "longitude_deg": "-151.494856", + "elevation_ft": "631", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Bettles", + "scheduled_service": "no", + "keywords": "2A4" + }, + { + "id": "9284", + "ident": "2A7", + "type": "heliport", + "name": "Department of Transportation Heliport", + "latitude_deg": "39.959800720214844", + "longitude_deg": "-83.04409790039062", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "2A7", + "local_code": "2A7" + }, + { + "id": "9285", + "ident": "2A8", + "type": "small_airport", + "name": "Addison Municipal Airport", + "latitude_deg": "34.217038", + "longitude_deg": "-87.158353", + "elevation_ft": "786", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Addison", + "scheduled_service": "no", + "local_code": "2A8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Addison_Municipal_Airport" + }, + { + "id": "9287", + "ident": "2AK", + "type": "small_airport", + "name": "Lime Village Airport", + "latitude_deg": "61.3591003418", + "longitude_deg": "-155.440002441", + "elevation_ft": "552", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Lime Village", + "scheduled_service": "no", + "gps_code": "2AK", + "iata_code": "LVD", + "local_code": "2AK", + "keywords": "23AK" + }, + { + "id": "9288", + "ident": "2AK0", + "type": "small_airport", + "name": "MacKenzie Country Airpark", + "latitude_deg": "61.255901", + "longitude_deg": "-149.975006", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Point Mackenzie", + "scheduled_service": "no", + "gps_code": "2AK0", + "local_code": "2AK0" + }, + { + "id": "9289", + "ident": "2AK1", + "type": "small_airport", + "name": "Blair Lake Airport", + "latitude_deg": "64.363443", + "longitude_deg": "-147.364855", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fort Wainwright", + "scheduled_service": "no", + "gps_code": "2AK1", + "local_code": "2AK1" + }, + { + "id": "9290", + "ident": "2AK2", + "type": "small_airport", + "name": "Clear Creek Airport", + "latitude_deg": "64.454293", + "longitude_deg": "-147.56999", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fort Wainwright", + "scheduled_service": "no", + "gps_code": "2AK2", + "local_code": "2AK2" + }, + { + "id": "9291", + "ident": "2AK3", + "type": "heliport", + "name": "Five Finger CG Heliport", + "latitude_deg": "57.269843", + "longitude_deg": "-133.630371", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Five Finger", + "scheduled_service": "no", + "gps_code": "2AK3", + "local_code": "2AK3", + "keywords": "FIV" + }, + { + "id": "9292", + "ident": "2AK4", + "type": "small_airport", + "name": "Bootleggers Cove Airport", + "latitude_deg": "59.470001", + "longitude_deg": "-151.51199", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Homer", + "scheduled_service": "no", + "gps_code": "2AK4", + "local_code": "2AK4", + "keywords": "Oyster Cove" + }, + { + "id": "9293", + "ident": "2AK5", + "type": "small_airport", + "name": "Johnstone Point Airport", + "latitude_deg": "60.4817008972", + "longitude_deg": "-146.583999634", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Hinchinbrook", + "scheduled_service": "no", + "gps_code": "PAJO", + "local_code": "2AK5" + }, + { + "id": "9294", + "ident": "2AK6", + "type": "small_airport", + "name": "Hog River Airport", + "latitude_deg": "66.2161026", + "longitude_deg": "-155.6690063", + "elevation_ft": "534", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Hogatza", + "scheduled_service": "no", + "gps_code": "2AK6", + "iata_code": "HGZ", + "local_code": "2AK6" + }, + { + "id": "9295", + "ident": "2AK7", + "type": "closed", + "name": "Bald Mountain Airport", + "latitude_deg": "62.3074", + "longitude_deg": "-149.751994", + "elevation_ft": "3600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Talkeetna", + "scheduled_service": "no", + "keywords": "2AK7" + }, + { + "id": "9296", + "ident": "2AK8", + "type": "small_airport", + "name": "Icy Cape Air Force Station Airport", + "latitude_deg": "70.293545", + "longitude_deg": "-161.907151", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Icy Cape", + "scheduled_service": "no", + "gps_code": "2AK8", + "local_code": "2AK8" + }, + { + "id": "9297", + "ident": "2AK9", + "type": "small_airport", + "name": "Independence Creek Airport", + "latitude_deg": "65.67350006103516", + "longitude_deg": "-162.46400451660156", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Independence Creek", + "scheduled_service": "no", + "gps_code": "2AK9", + "local_code": "2AK9" + }, + { + "id": "9298", + "ident": "2AL0", + "type": "closed", + "name": "Paulling Place Airstrip", + "latitude_deg": "32.351799", + "longitude_deg": "-87.545602", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Dayton", + "scheduled_service": "no", + "gps_code": "2AL0", + "local_code": "2AL0", + "keywords": "2AL0" + }, + { + "id": "9299", + "ident": "2AL1", + "type": "small_airport", + "name": "Collier Airpark", + "latitude_deg": "30.424100875854492", + "longitude_deg": "-87.77780151367188", + "elevation_ft": "74", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Magnolia Springs", + "scheduled_service": "no", + "gps_code": "2AL1", + "local_code": "2AL1" + }, + { + "id": "9300", + "ident": "2AL2", + "type": "heliport", + "name": "Randolph County Hospital Heliport", + "latitude_deg": "33.15729904174805", + "longitude_deg": "-85.38880157470703", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Roanoke", + "scheduled_service": "no", + "gps_code": "2AL2", + "local_code": "2AL2" + }, + { + "id": "9301", + "ident": "2AL3", + "type": "small_airport", + "name": "Emerald Mountain Airport", + "latitude_deg": "32.45539855957031", + "longitude_deg": "-86.11920166015625", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Wetumpka", + "scheduled_service": "no", + "gps_code": "2AL3", + "local_code": "2AL3" + }, + { + "id": "9302", + "ident": "2AL4", + "type": "heliport", + "name": "Petroleum Helicopters Inc Heliport", + "latitude_deg": "30.431101", + "longitude_deg": "-88.179199", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Theodore", + "scheduled_service": "no", + "gps_code": "AL67", + "local_code": "AL67", + "keywords": "2AL4, Bayou Labatre" + }, + { + "id": "9303", + "ident": "2AL5", + "type": "small_airport", + "name": "Flying J Ranch Airport", + "latitude_deg": "34.392799377441406", + "longitude_deg": "-85.66500091552734", + "elevation_ft": "1430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Payne", + "scheduled_service": "no", + "gps_code": "2AL5", + "local_code": "2AL5" + }, + { + "id": "9304", + "ident": "2AL6", + "type": "small_airport", + "name": "Dale O. Galer Aerodrome", + "latitude_deg": "30.491981", + "longitude_deg": "-88.197307", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Irvington", + "scheduled_service": "no", + "gps_code": "2AL6", + "local_code": "2AL6", + "keywords": "Theodore" + }, + { + "id": "9305", + "ident": "2AL7", + "type": "small_airport", + "name": "Mount Aero Lake Farm Airport", + "latitude_deg": "34.062801361083984", + "longitude_deg": "-86.72309875488281", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Hanceville", + "scheduled_service": "no", + "gps_code": "2AL7", + "local_code": "2AL7" + }, + { + "id": "9306", + "ident": "2AL8", + "type": "small_airport", + "name": "Finkley Farm Airport", + "latitude_deg": "32.42110061645508", + "longitude_deg": "-85.24810028076172", + "elevation_ft": "413", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Phenix City", + "scheduled_service": "no", + "gps_code": "2AL8", + "local_code": "2AL8" + }, + { + "id": "45285", + "ident": "2AN2", + "type": "heliport", + "name": "Ak-Chin Heliport", + "latitude_deg": "33.027294", + "longitude_deg": "-112.085127", + "elevation_ft": "1073", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Maricopa", + "scheduled_service": "no", + "gps_code": "2AN2", + "local_code": "2AN2" + }, + { + "id": "9307", + "ident": "2AR0", + "type": "small_airport", + "name": "Bully Henry Airport", + "latitude_deg": "34.868099212646484", + "longitude_deg": "-91.97429656982422", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Lonoke", + "scheduled_service": "no", + "gps_code": "2AR0", + "local_code": "2AR0" + }, + { + "id": "9308", + "ident": "2AR1", + "type": "closed", + "name": "Seratt Airport", + "latitude_deg": "36.292099", + "longitude_deg": "-94.095299", + "elevation_ft": "1305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Rogers", + "scheduled_service": "no", + "keywords": "2AR1" + }, + { + "id": "9309", + "ident": "2AR2", + "type": "small_airport", + "name": "Davidson Field", + "latitude_deg": "36.015201568603516", + "longitude_deg": "-91.79660034179688", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Sage", + "scheduled_service": "no", + "gps_code": "2AR2", + "local_code": "2AR2" + }, + { + "id": "9310", + "ident": "2AR3", + "type": "heliport", + "name": "Stone County Medical Center Heliport", + "latitude_deg": "35.856201171875", + "longitude_deg": "-92.08290100097656", + "elevation_ft": "765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Mountain View", + "scheduled_service": "no", + "gps_code": "2AR3", + "local_code": "2AR3" + }, + { + "id": "9311", + "ident": "2AR4", + "type": "closed", + "name": "Jaynes Field", + "latitude_deg": "35.6707", + "longitude_deg": "-90.527802", + "elevation_ft": "212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Trumann", + "scheduled_service": "no", + "keywords": "2AR4" + }, + { + "id": "9312", + "ident": "2AR5", + "type": "small_airport", + "name": "Ashmore Field", + "latitude_deg": "36.38309860229492", + "longitude_deg": "-94.29389953613281", + "elevation_ft": "1362", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Centerton", + "scheduled_service": "no", + "gps_code": "2AR5", + "local_code": "2AR5" + }, + { + "id": "9313", + "ident": "2AR6", + "type": "small_airport", + "name": "Glenn Winchester Airport", + "latitude_deg": "33.88180160522461", + "longitude_deg": "-93.92849731445312", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Mineral Springs", + "scheduled_service": "no", + "gps_code": "2AR6", + "local_code": "2AR6" + }, + { + "id": "9314", + "ident": "2AR7", + "type": "small_airport", + "name": "Head Airfield", + "latitude_deg": "33.849098205566406", + "longitude_deg": "-93.4791030883789", + "elevation_ft": "441", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Prescott", + "scheduled_service": "no", + "gps_code": "2AR7", + "local_code": "2AR7" + }, + { + "id": "9315", + "ident": "2AR8", + "type": "closed", + "name": "L C Hickman Airport", + "latitude_deg": "36.352798", + "longitude_deg": "-94.333097", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Centerton", + "scheduled_service": "no", + "keywords": "2AR8" + }, + { + "id": "9316", + "ident": "2AR9", + "type": "heliport", + "name": "Island Health Clinic Heliport", + "latitude_deg": "36.45500183105469", + "longitude_deg": "-93.71939849853516", + "elevation_ft": "1547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Holiday Island", + "scheduled_service": "no", + "gps_code": "2AR9", + "local_code": "2AR9" + }, + { + "id": "9317", + "ident": "2AZ0", + "type": "closed", + "name": "Helicopter Transport Inc / Office Heliport", + "latitude_deg": "33.450001", + "longitude_deg": "-111.980003", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "keywords": "2AZ0" + }, + { + "id": "9318", + "ident": "2AZ1", + "type": "small_airport", + "name": "Indian Hills Airpark", + "latitude_deg": "33.760346", + "longitude_deg": "-113.614748", + "elevation_ft": "1866", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Salome", + "scheduled_service": "no", + "gps_code": "2AZ1", + "local_code": "2AZ1", + "keywords": "salome, indian hills" + }, + { + "id": "9319", + "ident": "2AZ2", + "type": "heliport", + "name": "Sunstate-Glendale Helistop", + "latitude_deg": "33.568678", + "longitude_deg": "-112.228051", + "elevation_ft": "1135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peoria", + "scheduled_service": "no", + "gps_code": "2AZ2", + "local_code": "2AZ2" + }, + { + "id": "9320", + "ident": "2AZ3", + "type": "closed", + "name": "El Mirage-Village Square Airport", + "latitude_deg": "33.612801", + "longitude_deg": "-112.334999", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "El Mirage", + "scheduled_service": "no", + "gps_code": "2AZ3", + "local_code": "2AZ3" + }, + { + "id": "9321", + "ident": "2AZ4", + "type": "small_airport", + "name": "Millar Airport", + "latitude_deg": "33.0536994934082", + "longitude_deg": "-112.14600372314453", + "elevation_ft": "1215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Maricopa", + "scheduled_service": "no", + "gps_code": "2AZ4", + "local_code": "2AZ4" + }, + { + "id": "9322", + "ident": "2AZ5", + "type": "closed", + "name": "Donnelly Residence Airport", + "latitude_deg": "32.886398", + "longitude_deg": "-112.129997", + "elevation_ft": "1518", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Maricopa", + "scheduled_service": "no", + "keywords": "2AZ5" + }, + { + "id": "9323", + "ident": "2AZ6", + "type": "closed", + "name": "Horizon Heliport", + "latitude_deg": "32.410378", + "longitude_deg": "-110.941985", + "elevation_ft": "2573", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Oro Valley", + "scheduled_service": "no", + "gps_code": "2AZ6", + "local_code": "2AZ6", + "keywords": "tucson, horizon" + }, + { + "id": "9324", + "ident": "2AZ7", + "type": "closed", + "name": "McGill Ultralight Field", + "latitude_deg": "33.683283", + "longitude_deg": "-112.165883", + "elevation_ft": "1360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Glendale", + "scheduled_service": "no", + "gps_code": "2AZ7", + "local_code": "2AZ7" + }, + { + "id": "9325", + "ident": "2AZ8", + "type": "closed", + "name": "Tubac Ultralight Flightpark / Flying W Ultralightport", + "latitude_deg": "31.614289", + "longitude_deg": "-111.037257", + "elevation_ft": "3200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tubac", + "scheduled_service": "no", + "keywords": "2AZ8" + }, + { + "id": "9326", + "ident": "2AZ9", + "type": "small_airport", + "name": "Ethnos Air Airport", + "latitude_deg": "31.606119", + "longitude_deg": "-109.654263", + "elevation_ft": "4200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mcneal", + "scheduled_service": "no", + "gps_code": "2AZ9", + "local_code": "2AZ9", + "keywords": "Tribal Air Airport" + }, + { + "id": "9327", + "ident": "2B1", + "type": "small_airport", + "name": "Cape Cod Airport", + "latitude_deg": "41.685298919677734", + "longitude_deg": "-70.40229797363281", + "elevation_ft": "103", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Marston Mills", + "scheduled_service": "no", + "gps_code": "2B1", + "local_code": "2B1" + }, + { + "id": "9328", + "ident": "2B2", + "type": "small_airport", + "name": "Plum Island Airport", + "latitude_deg": "42.7958984375", + "longitude_deg": "-70.84120178222656", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Newburyport", + "scheduled_service": "no", + "gps_code": "2B2", + "local_code": "2B2" + }, + { + "id": "9329", + "ident": "2B6", + "type": "small_airport", + "name": "Hollister Field", + "latitude_deg": "39.437599182128906", + "longitude_deg": "-83.70829772949219", + "elevation_ft": "1090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wilmington", + "scheduled_service": "no", + "gps_code": "2B6", + "local_code": "2B6" + }, + { + "id": "9330", + "ident": "2B9", + "type": "small_airport", + "name": "Post Mills Airport", + "latitude_deg": "43.8842010498", + "longitude_deg": "-72.2537002563", + "elevation_ft": "693", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Post Mills", + "scheduled_service": "no", + "gps_code": "2B9", + "local_code": "2B9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Post_Mills_Airport" + }, + { + "id": "9331", + "ident": "2C4", + "type": "small_airport", + "name": "Flying A Airport", + "latitude_deg": "43.816724", + "longitude_deg": "-92.336869", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Chatfield", + "scheduled_service": "no", + "local_code": "2C4", + "keywords": "MN22" + }, + { + "id": "9332", + "ident": "2C5", + "type": "small_airport", + "name": "Almena Airport", + "latitude_deg": "42.253002", + "longitude_deg": "-85.851789", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Paw Paw", + "scheduled_service": "no", + "local_code": "2C5" + }, + { + "id": "9333", + "ident": "2C6", + "type": "small_airport", + "name": "Tri-County Airport", + "latitude_deg": "40.77399826049805", + "longitude_deg": "-90.07440185546875", + "elevation_ft": "661", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Yates City", + "scheduled_service": "no", + "gps_code": "2C6", + "local_code": "2C6" + }, + { + "id": "9335", + "ident": "2CA0", + "type": "heliport", + "name": "Ash Mountain Heliport", + "latitude_deg": "36.49580001831055", + "longitude_deg": "-118.83399963378906", + "elevation_ft": "1820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Three Rivers", + "scheduled_service": "no", + "gps_code": "2CA0", + "local_code": "2CA0" + }, + { + "id": "9336", + "ident": "2CA1", + "type": "closed", + "name": "Cosmodyne Heliport", + "latitude_deg": "33.84358", + "longitude_deg": "-118.339797", + "elevation_ft": "128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Torrance", + "scheduled_service": "no", + "gps_code": "2CA1", + "local_code": "2CA1" + }, + { + "id": "9337", + "ident": "2CA2", + "type": "small_airport", + "name": "Cones Field", + "latitude_deg": "34.16279983520508", + "longitude_deg": "-116.0479965209961", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Twentynine Palms", + "scheduled_service": "no", + "gps_code": "2CA2", + "local_code": "2CA2" + }, + { + "id": "9338", + "ident": "2CA3", + "type": "small_airport", + "name": "Crosswinds Airport", + "latitude_deg": "34.161001", + "longitude_deg": "-115.995648", + "elevation_ft": "1835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Twentynine Palms", + "scheduled_service": "no", + "gps_code": "2CA3", + "local_code": "2CA3" + }, + { + "id": "9339", + "ident": "2CA4", + "type": "small_airport", + "name": "Blackinton Airport", + "latitude_deg": "33.2588996887207", + "longitude_deg": "-117.09200286865234", + "elevation_ft": "1156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Valley Center", + "scheduled_service": "no", + "gps_code": "2CA4", + "local_code": "2CA4" + }, + { + "id": "9340", + "ident": "2CA5", + "type": "heliport", + "name": "Platform Emmy Heliport", + "latitude_deg": "33.66230010986328", + "longitude_deg": "-118.04499816894531", + "elevation_ft": "87", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Huntington Beach", + "scheduled_service": "no", + "gps_code": "2CA5", + "local_code": "2CA5" + }, + { + "id": "9341", + "ident": "2CA6", + "type": "heliport", + "name": "K & T 660 Figueroa Partners Heliport", + "latitude_deg": "34.049393", + "longitude_deg": "-118.259336", + "elevation_ft": "629", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "2CA6", + "local_code": "2CA6" + }, + { + "id": "9342", + "ident": "2CA7", + "type": "heliport", + "name": "Prudential Helistop", + "latitude_deg": "34.17559814453125", + "longitude_deg": "-118.59500122070312", + "elevation_ft": "847", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodland Hills", + "scheduled_service": "no", + "gps_code": "2CA7", + "local_code": "2CA7" + }, + { + "id": "9343", + "ident": "2CA8", + "type": "small_airport", + "name": "B & E Ranch Airport", + "latitude_deg": "34.42060089111328", + "longitude_deg": "-116.61100006103516", + "elevation_ft": "2793", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Yucca Valley", + "scheduled_service": "no", + "gps_code": "2CA8", + "local_code": "2CA8" + }, + { + "id": "9344", + "ident": "2CA9", + "type": "heliport", + "name": "Castle Dome Army Heliport", + "latitude_deg": "32.979026", + "longitude_deg": "-114.267463", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yuma Proving Ground(Yuma)", + "scheduled_service": "no", + "gps_code": "2CA9", + "local_code": "2CA9" + }, + { + "id": "45326", + "ident": "2CD2", + "type": "heliport", + "name": "UCHealth Medical Center of the Rockies Heliport", + "latitude_deg": "40.416182", + "longitude_deg": "-104.99694", + "elevation_ft": "5010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Loveland", + "scheduled_service": "no", + "gps_code": "2CD2", + "local_code": "2CD2" + }, + { + "id": "45320", + "ident": "2CD3", + "type": "small_airport", + "name": "Bijou Springs Ranch Airport", + "latitude_deg": "39.119472", + "longitude_deg": "-104.431806", + "elevation_ft": "6600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Peyton", + "scheduled_service": "no", + "gps_code": "2CD3", + "local_code": "2CD3" + }, + { + "id": "45333", + "ident": "2CD4", + "type": "small_airport", + "name": "West Divide Airport", + "latitude_deg": "39.430788", + "longitude_deg": "-107.623111", + "elevation_ft": "6352", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Silt", + "scheduled_service": "no", + "gps_code": "2CD4", + "local_code": "2CD4" + }, + { + "id": "45323", + "ident": "2CD5", + "type": "heliport", + "name": "Elk Mountain Resort Heliport", + "latitude_deg": "38.253333", + "longitude_deg": "-107.972222", + "elevation_ft": "8965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Montrose", + "scheduled_service": "no", + "gps_code": "2CD5", + "local_code": "2CD5" + }, + { + "id": "45329", + "ident": "2CD6", + "type": "small_airport", + "name": "Safer Airport", + "latitude_deg": "39.39485", + "longitude_deg": "-104.547033", + "elevation_ft": "6510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Elizabeth", + "scheduled_service": "no", + "gps_code": "2CD6", + "local_code": "2CD6" + }, + { + "id": "45332", + "ident": "2CD7", + "type": "heliport", + "name": "Turnberry Ranch Heliport", + "latitude_deg": "39.469083", + "longitude_deg": "-107.135722", + "elevation_ft": "7100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Carbondale", + "scheduled_service": "no", + "gps_code": "2CD7", + "local_code": "2CD7" + }, + { + "id": "45321", + "ident": "2CD8", + "type": "heliport", + "name": "Children's Hospital Heliport", + "latitude_deg": "39.742381", + "longitude_deg": "-104.835581", + "elevation_ft": "5557", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Aurora", + "scheduled_service": "no", + "gps_code": "2CD8", + "local_code": "2CD8" + }, + { + "id": "45335", + "ident": "2CD9", + "type": "small_airport", + "name": "Kellogg Airstrip", + "latitude_deg": "40.6814", + "longitude_deg": "-105.13855", + "elevation_ft": "5180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Laporte", + "scheduled_service": "no", + "gps_code": "2CD9", + "local_code": "2CD9" + }, + { + "id": "9345", + "ident": "2CL0", + "type": "heliport", + "name": "Commerce Business Park Heliport", + "latitude_deg": "33.987549", + "longitude_deg": "-118.161483", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "City of Commerce", + "scheduled_service": "no", + "gps_code": "2CL0", + "local_code": "2CL0" + }, + { + "id": "9346", + "ident": "2CL1", + "type": "closed", + "name": "Canyon Creek Heliport", + "latitude_deg": "37.108073", + "longitude_deg": "-121.79835", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Morgan Hill", + "scheduled_service": "no", + "keywords": "2CL1" + }, + { + "id": "9347", + "ident": "2CL2", + "type": "closed", + "name": "McCabe Ranch Airport", + "latitude_deg": "39.010948", + "longitude_deg": "-122.097995", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Arbuckle", + "scheduled_service": "no", + "gps_code": "2CL2", + "local_code": "2CL2" + }, + { + "id": "9348", + "ident": "2CL3", + "type": "small_airport", + "name": "Longbell Ranch Airport", + "latitude_deg": "41.642101", + "longitude_deg": "-121.889999", + "elevation_ft": "4607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Macdoel", + "scheduled_service": "no", + "gps_code": "2CL3", + "local_code": "2CL3" + }, + { + "id": "9349", + "ident": "2CL4", + "type": "heliport", + "name": "American Display Heliport", + "latitude_deg": "40.522098541259766", + "longitude_deg": "-122.30400085449219", + "elevation_ft": "503", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Redding", + "scheduled_service": "no", + "gps_code": "2CL4", + "local_code": "2CL4" + }, + { + "id": "9350", + "ident": "2CL5", + "type": "heliport", + "name": "Kovr Heliport", + "latitude_deg": "38.59159851074219", + "longitude_deg": "-121.54499816894531", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "West Sacramento", + "scheduled_service": "no", + "gps_code": "2CL5", + "local_code": "2CL5" + }, + { + "id": "9351", + "ident": "2CL6", + "type": "heliport", + "name": "St John's Regional Medical Center Heliport", + "latitude_deg": "34.216615", + "longitude_deg": "-119.15733", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oxnard", + "scheduled_service": "no", + "gps_code": "2CL6", + "local_code": "2CL6" + }, + { + "id": "9352", + "ident": "2CL7", + "type": "heliport", + "name": "Glendale Plaza Emergency Heliport", + "latitude_deg": "34.155692", + "longitude_deg": "-118.258515", + "elevation_ft": "904", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no", + "gps_code": "2CL7", + "local_code": "2CL7" + }, + { + "id": "9353", + "ident": "2CL8", + "type": "heliport", + "name": "Inland Valley Medical Center Heliport", + "latitude_deg": "33.592553", + "longitude_deg": "-117.237204", + "elevation_ft": "1327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Wildomar", + "scheduled_service": "no", + "gps_code": "2CL8", + "local_code": "2CL8", + "keywords": "Inland Valley Rgnl Med Ctr" + }, + { + "id": "9354", + "ident": "2CL9", + "type": "small_airport", + "name": "Mustang Airport", + "latitude_deg": "38.33440017700195", + "longitude_deg": "-121.30400085449219", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Galt", + "scheduled_service": "no", + "gps_code": "2CL9", + "local_code": "2CL9" + }, + { + "id": "45306", + "ident": "2CN2", + "type": "heliport", + "name": "Department of Water and Power Granada Hills Heliport", + "latitude_deg": "34.292348", + "longitude_deg": "-118.474713", + "elevation_ft": "1124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "2CN2", + "local_code": "2CN2" + }, + { + "id": "45315", + "ident": "2CN3", + "type": "small_airport", + "name": "Tenaja Valley Airport", + "latitude_deg": "33.511111", + "longitude_deg": "-117.328611", + "elevation_ft": "2350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Murrieta", + "scheduled_service": "no", + "gps_code": "2CN3", + "local_code": "2CN3" + }, + { + "id": "14060", + "ident": "2CN4", + "type": "small_airport", + "name": "Wonderful Pistachios & Almonds Airport", + "latitude_deg": "35.664623", + "longitude_deg": "-119.893518", + "elevation_ft": "617", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lost Hills", + "scheduled_service": "no", + "gps_code": "2CN4", + "local_code": "2CN4", + "keywords": "7CA0, Paramount Farms" + }, + { + "id": "46084", + "ident": "2CN5", + "type": "heliport", + "name": "Regional Medical Center Of San Jose H1 Heliport", + "latitude_deg": "37.3625", + "longitude_deg": "-121.850278", + "elevation_ft": "107", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Jose", + "scheduled_service": "no", + "gps_code": "2CN5", + "local_code": "2CN5" + }, + { + "id": "45305", + "ident": "2CN6", + "type": "heliport", + "name": "Department of Water & Power Los Angeles Heliport", + "latitude_deg": "34.058055", + "longitude_deg": "-118.24954", + "elevation_ft": "654", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "2CN6", + "local_code": "2CN6" + }, + { + "id": "45312", + "ident": "2CN7", + "type": "heliport", + "name": "Qualcomm Building N Heliport", + "latitude_deg": "32.896236", + "longitude_deg": "-117.196029", + "elevation_ft": "486", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no", + "gps_code": "2CN7", + "local_code": "2CN7" + }, + { + "id": "45310", + "ident": "2CN8", + "type": "small_airport", + "name": "Lake Arrowhead Airport", + "latitude_deg": "34.304167", + "longitude_deg": "-117.151389", + "elevation_ft": "4610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lake Arrowhead", + "scheduled_service": "no", + "gps_code": "2CN8", + "local_code": "2CN8" + }, + { + "id": "9355", + "ident": "2CO0", + "type": "heliport", + "name": "Heli-One American Support, LLC Heliport", + "latitude_deg": "40.583585", + "longitude_deg": "-106.985331", + "elevation_ft": "4935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Fort Collins", + "scheduled_service": "no", + "gps_code": "2CO0", + "local_code": "2CO0", + "keywords": "Heli-Support II Heliport" + }, + { + "id": "9356", + "ident": "2CO1", + "type": "small_airport", + "name": "Cherokee Trail Ranch Airport", + "latitude_deg": "39.11050033569336", + "longitude_deg": "-104.58399963378906", + "elevation_ft": "7240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Peyton", + "scheduled_service": "no", + "gps_code": "2CO1", + "local_code": "2CO1" + }, + { + "id": "9357", + "ident": "2CO2", + "type": "closed", + "name": "CMRS Airdrome", + "latitude_deg": "38.540298", + "longitude_deg": "-106.105003", + "elevation_ft": "7872", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Poncha Springs", + "scheduled_service": "no", + "keywords": "2CO2" + }, + { + "id": "9358", + "ident": "2CO3", + "type": "small_airport", + "name": "Jackrabbit Strip", + "latitude_deg": "40.375", + "longitude_deg": "-104.87300109863281", + "elevation_ft": "5000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Milliken", + "scheduled_service": "no", + "gps_code": "2CO3", + "local_code": "2CO3" + }, + { + "id": "9359", + "ident": "2CO4", + "type": "heliport", + "name": "Presbyterian/St Luke's Medical Center Heliport", + "latitude_deg": "39.747752", + "longitude_deg": "-104.967866", + "elevation_ft": "5291", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "gps_code": "2CO4", + "local_code": "2CO4" + }, + { + "id": "9360", + "ident": "2CO5", + "type": "small_airport", + "name": "Edenway Airport", + "latitude_deg": "38.347198486328125", + "longitude_deg": "-104.63200378417969", + "elevation_ft": "4970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Pueblo", + "scheduled_service": "no", + "gps_code": "2CO5", + "local_code": "2CO5" + }, + { + "id": "9361", + "ident": "2CO6", + "type": "heliport", + "name": "Manor House Heliport", + "latitude_deg": "39.58689880371094", + "longitude_deg": "-105.16899871826172", + "elevation_ft": "6220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Littleton", + "scheduled_service": "no", + "gps_code": "2CO6", + "local_code": "2CO6" + }, + { + "id": "9362", + "ident": "2CO7", + "type": "heliport", + "name": "St Mary-Corwin Hospital Heliport", + "latitude_deg": "38.23360061645508", + "longitude_deg": "-104.62300109863281", + "elevation_ft": "4817", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Pueblo", + "scheduled_service": "no", + "gps_code": "2CO7", + "local_code": "2CO7" + }, + { + "id": "9363", + "ident": "2CO8", + "type": "heliport", + "name": "East Morgan County Hospital Heliport", + "latitude_deg": "40.25830078125", + "longitude_deg": "-103.64900207519531", + "elevation_ft": "4280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Brush", + "scheduled_service": "no", + "gps_code": "2CO8", + "local_code": "2CO8" + }, + { + "id": "9364", + "ident": "2CO9", + "type": "heliport", + "name": "Lands End Heliport", + "latitude_deg": "39.072167", + "longitude_deg": "-108.511167", + "elevation_ft": "4630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Grand Junction", + "scheduled_service": "no", + "gps_code": "2CO9", + "local_code": "2CO9" + }, + { + "id": "9365", + "ident": "2D1", + "type": "small_airport", + "name": "Barber Airport", + "latitude_deg": "40.97090148925781", + "longitude_deg": "-81.09980010986328", + "elevation_ft": "1062", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Alliance", + "scheduled_service": "no", + "gps_code": "2D1", + "local_code": "2D1" + }, + { + "id": "9366", + "ident": "2D3", + "type": "seaplane_base", + "name": "Gooding Lake Seaplane Base", + "latitude_deg": "61.62770080566406", + "longitude_deg": "-149.23899841308594", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "2D3", + "local_code": "2D3" + }, + { + "id": "9367", + "ident": "2D6", + "type": "heliport", + "name": "Bannock Heliport", + "latitude_deg": "40.106998443603516", + "longitude_deg": "-80.97540283203125", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bannock", + "scheduled_service": "no", + "gps_code": "2D6", + "local_code": "2D6" + }, + { + "id": "9368", + "ident": "2D7", + "type": "small_airport", + "name": "Beach City Airport", + "latitude_deg": "40.64659881591797", + "longitude_deg": "-81.55609893798828", + "elevation_ft": "984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Beach City", + "scheduled_service": "no", + "gps_code": "2D7", + "local_code": "2D7" + }, + { + "id": "9369", + "ident": "2DE2", + "type": "small_airport", + "name": "Willaview Airport", + "latitude_deg": "38.85499954223633", + "longitude_deg": "-75.57219696044922", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Farmington", + "scheduled_service": "no", + "gps_code": "2DE2", + "local_code": "2DE2" + }, + { + "id": "345296", + "ident": "2DE3", + "type": "small_airport", + "name": "Hrupsa Airport", + "latitude_deg": "39.002044", + "longitude_deg": "-75.682175", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Felton", + "scheduled_service": "no", + "gps_code": "2DE3", + "local_code": "2DE3" + }, + { + "id": "322585", + "ident": "2DE8", + "type": "small_airport", + "name": "Murphy's Landing Airport", + "latitude_deg": "38.91357", + "longitude_deg": "-75.345334", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "2DE8", + "local_code": "2DE8" + }, + { + "id": "9370", + "ident": "2.00E+02", + "type": "small_airport", + "name": "Sharpe's Strip", + "latitude_deg": "42.95159912109375", + "longitude_deg": "-82.7759017944336", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Emmett", + "scheduled_service": "no", + "gps_code": "2.00E+02", + "local_code": "2.00E+02" + }, + { + "id": "9372", + "ident": "2.00E+06", + "type": "small_airport", + "name": "Groton Municipal Airport", + "latitude_deg": "45.534401", + "longitude_deg": "-98.0951", + "elevation_ft": "1305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Groton", + "scheduled_service": "no", + "local_code": "2.00E+06", + "keywords": "SD20" + }, + { + "id": "9373", + "ident": "2.00E+08", + "type": "small_airport", + "name": "Cackleberry Airport", + "latitude_deg": "42.42499923706055", + "longitude_deg": "-83.86940002441406", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Dexter", + "scheduled_service": "no", + "gps_code": "2.00E+08", + "local_code": "2.00E+08" + }, + { + "id": "9374", + "ident": "2F2", + "type": "closed", + "name": "Circle U Heliport", + "latitude_deg": "43.491402", + "longitude_deg": "-82.623595", + "elevation_ft": "729", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Carsonville", + "scheduled_service": "no", + "keywords": "2F2" + }, + { + "id": "9375", + "ident": "2F6", + "type": "small_airport", + "name": "Skiatook Municipal Airport", + "latitude_deg": "36.355098724365234", + "longitude_deg": "-96.01100158691406", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Skiatook", + "scheduled_service": "no", + "gps_code": "2F6", + "local_code": "2F6" + }, + { + "id": "9376", + "ident": "2FA0", + "type": "heliport", + "name": "Kendall District Station Heliport", + "latitude_deg": "25.69569969177246", + "longitude_deg": "-80.38140106201172", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "2FA0", + "local_code": "2FA0" + }, + { + "id": "337585", + "ident": "2FA1", + "type": "small_airport", + "name": "Squillacote Airport", + "latitude_deg": "29.251264", + "longitude_deg": "-81.200535", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ormond Beach", + "scheduled_service": "no", + "gps_code": "2FA1", + "local_code": "2FA1", + "keywords": "FD63, Dan Rice" + }, + { + "id": "9377", + "ident": "2FA2", + "type": "small_airport", + "name": "Monroe Airpark", + "latitude_deg": "29.01889991760254", + "longitude_deg": "-82.11370086669922", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Belleview", + "scheduled_service": "no", + "gps_code": "2FA2", + "local_code": "2FA2" + }, + { + "id": "9378", + "ident": "2FA3", + "type": "closed", + "name": "Henderson Heliport", + "latitude_deg": "26.5187", + "longitude_deg": "-82.1518", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bokeelia", + "scheduled_service": "no", + "keywords": "2FA3" + }, + { + "id": "9379", + "ident": "2FA4", + "type": "small_airport", + "name": "Southern Ranch Airport", + "latitude_deg": "26.379499435424805", + "longitude_deg": "-80.94560241699219", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Clewiston", + "scheduled_service": "no", + "gps_code": "2FA4", + "local_code": "2FA4" + }, + { + "id": "9380", + "ident": "2FA5", + "type": "small_airport", + "name": "Thunderbird Air Park", + "latitude_deg": "29.472200393676758", + "longitude_deg": "-81.5719985961914", + "elevation_ft": "67", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Crescent City", + "scheduled_service": "no", + "gps_code": "2FA5", + "local_code": "2FA5" + }, + { + "id": "9381", + "ident": "2FA6", + "type": "small_airport", + "name": "Freeflight International Airport", + "latitude_deg": "28.811100006103516", + "longitude_deg": "-82.06539916992188", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Coleman", + "scheduled_service": "no", + "gps_code": "2FA6", + "local_code": "2FA6" + }, + { + "id": "45346", + "ident": "2FA8", + "type": "heliport", + "name": "Central Florida Regional Hospital Heliport", + "latitude_deg": "28.813459", + "longitude_deg": "-81.283189", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sanford", + "scheduled_service": "no", + "gps_code": "2FA8", + "local_code": "2FA8" + }, + { + "id": "45354", + "ident": "2FA9", + "type": "small_airport", + "name": "Mount Olive Farm Airport", + "latitude_deg": "30.336389", + "longitude_deg": "-83.783611", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lamont", + "scheduled_service": "no", + "gps_code": "2FA9", + "local_code": "2FA9" + }, + { + "id": "9382", + "ident": "2FD0", + "type": "small_airport", + "name": "Lazyboy Airport", + "latitude_deg": "29.9758", + "longitude_deg": "-82.907303", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Branford", + "scheduled_service": "no", + "gps_code": "2FD0", + "local_code": "2FD0", + "keywords": "Flints Flying Ranch Airport" + }, + { + "id": "9383", + "ident": "2FD1", + "type": "small_airport", + "name": "Hobby Hill STOLport", + "latitude_deg": "28.975500106811523", + "longitude_deg": "-81.918701171875", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Weirsdale", + "scheduled_service": "no", + "gps_code": "2FD1", + "local_code": "2FD1" + }, + { + "id": "9384", + "ident": "2FD2", + "type": "small_airport", + "name": "Marjorie Kennan Rawlings Airport", + "latitude_deg": "29.47929955", + "longitude_deg": "-82.05329895", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Island Grove", + "scheduled_service": "no", + "gps_code": "2FD2", + "local_code": "2FD2" + }, + { + "id": "9385", + "ident": "2FD3", + "type": "heliport", + "name": "Bayfront Medical Center Inc Heliport", + "latitude_deg": "27.763349", + "longitude_deg": "-82.642279", + "elevation_ft": "128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St Petersburg", + "scheduled_service": "no", + "gps_code": "2FD3", + "local_code": "2FD3" + }, + { + "id": "9386", + "ident": "2FD4", + "type": "heliport", + "name": "Port Everglades Heliport", + "latitude_deg": "26.096200942993164", + "longitude_deg": "-80.11370086669922", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Lauderdale", + "scheduled_service": "no", + "gps_code": "2FD4", + "local_code": "2FD4" + }, + { + "id": "9387", + "ident": "2FD5", + "type": "heliport", + "name": "Adventure Island Heliport", + "latitude_deg": "24.73430061340332", + "longitude_deg": "-81.0186996459961", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Marathon", + "scheduled_service": "no", + "gps_code": "2FD5", + "local_code": "2FD5" + }, + { + "id": "9388", + "ident": "2FD6", + "type": "small_airport", + "name": "Highlander Airport", + "latitude_deg": "28.88800048828125", + "longitude_deg": "-80.86640167236328", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Oak Hill", + "scheduled_service": "no", + "gps_code": "2FD6", + "local_code": "2FD6" + }, + { + "id": "9389", + "ident": "2FD7", + "type": "heliport", + "name": "Air Orlando Heliport", + "latitude_deg": "28.4356", + "longitude_deg": "-81.473099", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "2FD7", + "local_code": "2FD7", + "keywords": "Air Florida Heliport" + }, + { + "id": "9390", + "ident": "2FD8", + "type": "closed", + "name": "Lib Field", + "latitude_deg": "29.521099", + "longitude_deg": "-81.632301", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Welaka", + "scheduled_service": "no", + "keywords": "2FD8" + }, + { + "id": "9391", + "ident": "2FD9", + "type": "heliport", + "name": "AdventHealth DeLand Heliport", + "latitude_deg": "29.044626", + "longitude_deg": "-81.317844", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "DeLand", + "scheduled_service": "no", + "gps_code": "2FD9", + "local_code": "2FD9", + "keywords": "West Volusia Memorial Hospital Helistop" + }, + { + "id": "9392", + "ident": "2FL0", + "type": "small_airport", + "name": "Crystal Village Airport", + "latitude_deg": "30.456899642944336", + "longitude_deg": "-85.68599700927734", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Wausau", + "scheduled_service": "no", + "gps_code": "2FL0", + "local_code": "2FL0" + }, + { + "id": "9393", + "ident": "2FL1", + "type": "heliport", + "name": "Broward County Civic Arena Heliport", + "latitude_deg": "26.159400939941406", + "longitude_deg": "-80.32559967041016", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sunrise", + "scheduled_service": "no", + "gps_code": "2FL1", + "local_code": "2FL1" + }, + { + "id": "9394", + "ident": "2FL2", + "type": "heliport", + "name": "Pbso-West County Jail Heliport", + "latitude_deg": "26.72439956665039", + "longitude_deg": "-80.66439819335938", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Belle Glade", + "scheduled_service": "no", + "gps_code": "2FL2", + "local_code": "2FL2" + }, + { + "id": "9395", + "ident": "2FL3", + "type": "small_airport", + "name": "Folsom Airport", + "latitude_deg": "30.6726", + "longitude_deg": "-85.083504", + "elevation_ft": "155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Marianna", + "scheduled_service": "no", + "gps_code": "2FL3", + "local_code": "2FL3" + }, + { + "id": "9396", + "ident": "2FL4", + "type": "heliport", + "name": "Brady Heliport", + "latitude_deg": "26.85580062866211", + "longitude_deg": "-80.07469940185547", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Juna Beach", + "scheduled_service": "no", + "gps_code": "2FL4", + "local_code": "2FL4" + }, + { + "id": "9397", + "ident": "2FL5", + "type": "closed", + "name": "Brooksville International Airways, Inc. Heliport", + "latitude_deg": "28.423901", + "longitude_deg": "-81.459702", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "keywords": "2FL5" + }, + { + "id": "350292", + "ident": "2FL6", + "type": "heliport", + "name": "I-10 Helistop", + "latitude_deg": "30.27325", + "longitude_deg": "-82.784392", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Winfield", + "scheduled_service": "no", + "gps_code": "2FL6", + "local_code": "2FL6" + }, + { + "id": "9398", + "ident": "2FL7", + "type": "heliport", + "name": "Porta Target Heliport", + "latitude_deg": "27.9242000579834", + "longitude_deg": "-80.61370086669922", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Palm Bay", + "scheduled_service": "no", + "gps_code": "2FL7", + "local_code": "2FL7" + }, + { + "id": "9399", + "ident": "2FL8", + "type": "small_airport", + "name": "Tiger Lake Airport", + "latitude_deg": "27.88360023498535", + "longitude_deg": "-81.36309814453125", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "River Ranch", + "scheduled_service": "no", + "gps_code": "2FL8", + "local_code": "2FL8" + }, + { + "id": "9400", + "ident": "2FL9", + "type": "heliport", + "name": "AdventHealth Heart of Florida Heliport", + "latitude_deg": "28.18145", + "longitude_deg": "-81.64277", + "elevation_ft": "166", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Davenport", + "scheduled_service": "no", + "gps_code": "2FL9", + "local_code": "2FL9", + "keywords": "Heart of Florida Medical Center Heliport" + }, + { + "id": "9401", + "ident": "2G6", + "type": "seaplane_base", + "name": "Mc Laughlin Seaplane Base", + "latitude_deg": "37.320598602299995", + "longitude_deg": "-77.3458023071", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Chester", + "scheduled_service": "no", + "gps_code": "2G6", + "local_code": "2G6" + }, + { + "id": "9402", + "ident": "2G8", + "type": "small_airport", + "name": "Gorham Airport", + "latitude_deg": "44.39310073852539", + "longitude_deg": "-71.19670104980469", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Gorham", + "scheduled_service": "no", + "gps_code": "2G8", + "local_code": "2G8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gorham_Airport" + }, + { + "id": "9403", + "ident": "2GA0", + "type": "small_airport", + "name": "Kennedy Intranational Airport", + "latitude_deg": "33.5265007019043", + "longitude_deg": "-83.63800048828125", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Newborn", + "scheduled_service": "no", + "gps_code": "2GA0", + "local_code": "2GA0" + }, + { + "id": "9404", + "ident": "2GA1", + "type": "small_airport", + "name": "Poole Farm Airport", + "latitude_deg": "33.68069839477539", + "longitude_deg": "-83.85269927978516", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Oxford", + "scheduled_service": "no", + "gps_code": "2GA1", + "local_code": "2GA1" + }, + { + "id": "9405", + "ident": "2GA2", + "type": "small_airport", + "name": "Swaids Field", + "latitude_deg": "32.39459991455078", + "longitude_deg": "-81.28070068359375", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "2GA2", + "local_code": "2GA2" + }, + { + "id": "9406", + "ident": "2GA3", + "type": "closed", + "name": "Wrights Field", + "latitude_deg": "32.20582", + "longitude_deg": "-83.786824", + "elevation_ft": "383", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Pinehurst", + "scheduled_service": "no", + "keywords": "2GA3" + }, + { + "id": "9407", + "ident": "2GA4", + "type": "closed", + "name": "Mack's Field", + "latitude_deg": "32.17129", + "longitude_deg": "-83.755699", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Pinehurst", + "scheduled_service": "no", + "keywords": "2GA4" + }, + { + "id": "9408", + "ident": "2GA5", + "type": "small_airport", + "name": "Windrift Aerodrome", + "latitude_deg": "33.04180145263672", + "longitude_deg": "-84.43209838867188", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "2GA5", + "local_code": "2GA5" + }, + { + "id": "9409", + "ident": "2GA6", + "type": "closed", + "name": "Catoosa Springs Airport", + "latitude_deg": "34.918479", + "longitude_deg": "-85.052547", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Ringgold", + "scheduled_service": "no", + "keywords": "2GA6" + }, + { + "id": "9410", + "ident": "2GA7", + "type": "closed", + "name": "Morgan Falls Heliport", + "latitude_deg": "33.9659", + "longitude_deg": "-84.362099", + "elevation_ft": "998", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Roswell", + "scheduled_service": "no", + "keywords": "2GA7" + }, + { + "id": "9411", + "ident": "2GA8", + "type": "small_airport", + "name": "Shannon Flight Strip", + "latitude_deg": "34.34980010986328", + "longitude_deg": "-85.07689666748047", + "elevation_ft": "677", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Shannon", + "scheduled_service": "no", + "gps_code": "2GA8", + "local_code": "2GA8" + }, + { + "id": "9412", + "ident": "2GA9", + "type": "small_airport", + "name": "Lenora Airport", + "latitude_deg": "33.80459976196289", + "longitude_deg": "-83.99629974365234", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Snellville", + "scheduled_service": "no", + "gps_code": "2GA9", + "local_code": "2GA9" + }, + { + "id": "9413", + "ident": "2GE1", + "type": "heliport", + "name": "Burke County Hospital Heliport", + "latitude_deg": "33.08440017700195", + "longitude_deg": "-82.01309967041016", + "elevation_ft": "264", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Waynesboro", + "scheduled_service": "no", + "gps_code": "2GE1", + "local_code": "2GE1" + }, + { + "id": "9414", + "ident": "2GE2", + "type": "heliport", + "name": "Atlanta Medical Center Heliport", + "latitude_deg": "33.762669", + "longitude_deg": "-84.373932", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "2GE2", + "local_code": "2GE2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atlanta_Medical_Center", + "keywords": "Georgia Baptist Urgent Care" + }, + { + "id": "9415", + "ident": "2GE3", + "type": "closed", + "name": "Smith Airport", + "latitude_deg": "33.676201", + "longitude_deg": "-83.2593", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Greensboro", + "scheduled_service": "no", + "keywords": "2GE3" + }, + { + "id": "9416", + "ident": "2GE4", + "type": "heliport", + "name": "Georgia Bureau of Investigation Heliport", + "latitude_deg": "33.69110107421875", + "longitude_deg": "-84.27220153808594", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Decatur", + "scheduled_service": "no", + "gps_code": "2GE4", + "local_code": "2GE4" + }, + { + "id": "9417", + "ident": "2GE5", + "type": "small_airport", + "name": "Chukkar Farm Ultralightport", + "latitude_deg": "34.19779968261719", + "longitude_deg": "-84.31939697265625", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Alpharetta", + "scheduled_service": "no", + "gps_code": "2GE5", + "local_code": "2GE5" + }, + { + "id": "9418", + "ident": "2GE6", + "type": "heliport", + "name": "Virgil Heliport", + "latitude_deg": "31.595300674438477", + "longitude_deg": "-84.42279815673828", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "2GE6", + "local_code": "2GE6" + }, + { + "id": "9419", + "ident": "2GE7", + "type": "small_airport", + "name": "Petty Farms Airport", + "latitude_deg": "34.958099365234375", + "longitude_deg": "-84.7791976928711", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Crandall", + "scheduled_service": "no", + "gps_code": "2GE7", + "local_code": "2GE7" + }, + { + "id": "9420", + "ident": "2GE8", + "type": "small_airport", + "name": "Andy Fields Airport", + "latitude_deg": "33.46419906616211", + "longitude_deg": "-84.66329956054688", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Newnan", + "scheduled_service": "no", + "gps_code": "2GE8", + "local_code": "2GE8" + }, + { + "id": "9421", + "ident": "2GE9", + "type": "closed", + "name": "Tract Heliport", + "latitude_deg": "33.897499", + "longitude_deg": "-84.023903", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Snellville", + "scheduled_service": "no", + "keywords": "2GE9" + }, + { + "id": "9422", + "ident": "2H3", + "type": "small_airport", + "name": "Cornell Municipal Airport", + "latitude_deg": "45.165501", + "longitude_deg": "-91.105698", + "elevation_ft": "1154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Cornell", + "scheduled_service": "no", + "gps_code": "4WI9", + "local_code": "4WI9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cornell_Municipal_Airport", + "keywords": "2H3" + }, + { + "id": "9423", + "ident": "2H4", + "type": "small_airport", + "name": "Triple H Airport", + "latitude_deg": "42.365299224853516", + "longitude_deg": "-85.55580139160156", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Parchment", + "scheduled_service": "no", + "gps_code": "2H4", + "local_code": "2H4" + }, + { + "id": "9424", + "ident": "2H5", + "type": "small_airport", + "name": "Happy Landings Airport", + "latitude_deg": "29.498858", + "longitude_deg": "-95.898027", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beasley", + "scheduled_service": "no", + "local_code": "2H5" + }, + { + "id": "9425", + "ident": "2H8", + "type": "closed", + "name": "Paulding Airport Inc Airport", + "latitude_deg": "41.168095", + "longitude_deg": "-84.5569", + "elevation_ft": "721", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Paulding", + "scheduled_service": "no", + "keywords": "2H8, OH28" + }, + { + "id": "9426", + "ident": "2I2", + "type": "closed", + "name": "Olive Hill-Sellers' Field", + "latitude_deg": "38.253700256348", + "longitude_deg": "-83.142997741699", + "elevation_ft": "1016", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Olive Hill", + "scheduled_service": "no", + "gps_code": "2I2", + "local_code": "2I2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Olive_Hill_Airport" + }, + { + "id": "9427", + "ident": "2IA0", + "type": "heliport", + "name": "Genesis Medical Center East Campus Heliport", + "latitude_deg": "41.54169845581055", + "longitude_deg": "-90.55650329589844", + "elevation_ft": "677", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Davenport", + "scheduled_service": "no", + "gps_code": "2IA0", + "local_code": "2IA0" + }, + { + "id": "9428", + "ident": "2IA1", + "type": "heliport", + "name": "Finley Hospital Heliport", + "latitude_deg": "42.49580001831055", + "longitude_deg": "-90.68489837646484", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Dubuque", + "scheduled_service": "no", + "gps_code": "2IA1", + "local_code": "2IA1" + }, + { + "id": "9429", + "ident": "2IA2", + "type": "heliport", + "name": "MercyOne Elkader Medical Center Heliport", + "latitude_deg": "42.860102", + "longitude_deg": "-91.4151417", + "elevation_ft": "774", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Elkader", + "scheduled_service": "no", + "gps_code": "2IA2", + "local_code": "2IA2", + "keywords": "Central Community Hospital" + }, + { + "id": "9430", + "ident": "2IA3", + "type": "heliport", + "name": "Medical Heliport", + "latitude_deg": "40.96200180053711", + "longitude_deg": "-91.55989837646484", + "elevation_ft": "734", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Mount Pleasant", + "scheduled_service": "no", + "gps_code": "2IA3", + "local_code": "2IA3" + }, + { + "id": "9431", + "ident": "2IA4", + "type": "heliport", + "name": "CMC at West Ninth Heliport", + "latitude_deg": "42.461005", + "longitude_deg": "-92.34468", + "elevation_ft": "922", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Waterloo", + "scheduled_service": "no", + "gps_code": "2IA4", + "local_code": "2IA4" + }, + { + "id": "9432", + "ident": "2IA5", + "type": "heliport", + "name": "Grape Community Hospital Heliport", + "latitude_deg": "40.622501373291016", + "longitude_deg": "-95.64969635009766", + "elevation_ft": "961", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Hamburg", + "scheduled_service": "no", + "gps_code": "2IA5", + "local_code": "2IA5" + }, + { + "id": "9433", + "ident": "2IA6", + "type": "heliport", + "name": "Stewart Memorial Hospital Heliport", + "latitude_deg": "42.27000045776367", + "longitude_deg": "-94.73359680175781", + "elevation_ft": "1243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Lake City", + "scheduled_service": "no", + "gps_code": "2IA6", + "local_code": "2IA6" + }, + { + "id": "9434", + "ident": "2IA7", + "type": "closed", + "name": "Downtown Heliport", + "latitude_deg": "41.972801", + "longitude_deg": "-91.669296", + "elevation_ft": "724", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Cedar Rapids", + "scheduled_service": "no", + "keywords": "2IA7" + }, + { + "id": "9435", + "ident": "2IA8", + "type": "heliport", + "name": "Burgess Health Center Heliport", + "latitude_deg": "42.026401519800004", + "longitude_deg": "-96.10639953610001", + "elevation_ft": "1049", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Onawa", + "scheduled_service": "no", + "gps_code": "2IA8", + "local_code": "2IA8" + }, + { + "id": "9436", + "ident": "2IA9", + "type": "small_airport", + "name": "South 80 Field", + "latitude_deg": "43.190799713134766", + "longitude_deg": "-93.77079772949219", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Crystal Lake", + "scheduled_service": "no", + "gps_code": "2IA9", + "local_code": "2IA9" + }, + { + "id": "9437", + "ident": "2ID2", + "type": "small_airport", + "name": "Linda's Roost Airport", + "latitude_deg": "43.95439910888672", + "longitude_deg": "-113.64700317382812", + "elevation_ft": "6250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Mackay", + "scheduled_service": "no", + "gps_code": "2ID2", + "local_code": "2ID2" + }, + { + "id": "45385", + "ident": "2ID3", + "type": "small_airport", + "name": "Josephine Ranch Airport", + "latitude_deg": "42.749198", + "longitude_deg": "-116.674089", + "elevation_ft": "5100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Murphy", + "scheduled_service": "no", + "gps_code": "2ID3", + "local_code": "2ID3" + }, + { + "id": "9438", + "ident": "2ID4", + "type": "closed", + "name": "Silverwood Airport", + "latitude_deg": "47.908199", + "longitude_deg": "-116.709", + "elevation_ft": "2350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Athol", + "scheduled_service": "no", + "keywords": "S62, 2ID4" + }, + { + "id": "45391", + "ident": "2ID5", + "type": "small_airport", + "name": "Splan Airport", + "latitude_deg": "44.807467", + "longitude_deg": "-116.049483", + "elevation_ft": "4987", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "McCall", + "scheduled_service": "no", + "gps_code": "2ID5", + "local_code": "2ID5" + }, + { + "id": "45395", + "ident": "2ID6", + "type": "small_airport", + "name": "Lemons Field", + "latitude_deg": "43.927336", + "longitude_deg": "-116.946475", + "elevation_ft": "2280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Fruitland", + "scheduled_service": "no", + "gps_code": "2ID6", + "local_code": "2ID6" + }, + { + "id": "9439", + "ident": "2ID7", + "type": "small_airport", + "name": "Cayuse Creek /US Forest Service Airport", + "latitude_deg": "46.666599", + "longitude_deg": "-115.072998", + "elevation_ft": "3500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cayuse Creek", + "scheduled_service": "no", + "gps_code": "KC64", + "local_code": "C64", + "keywords": "2ID7, S74" + }, + { + "id": "45400", + "ident": "2ID9", + "type": "heliport", + "name": "St. Benedicts Helipad", + "latitude_deg": "42.73", + "longitude_deg": "-114.518333", + "elevation_ft": "4000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Jerome", + "scheduled_service": "no", + "gps_code": "2ID9", + "local_code": "2ID9" + }, + { + "id": "45409", + "ident": "2IG3", + "type": "closed", + "name": "Horseshoe Casino Heliport", + "latitude_deg": "41.687626", + "longitude_deg": "-87.500755", + "elevation_ft": "586", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Whiting", + "scheduled_service": "no", + "keywords": "2IG3" + }, + { + "id": "20770", + "ident": "2IG4", + "type": "small_airport", + "name": "Ed-Air Airport", + "latitude_deg": "38.851782", + "longitude_deg": "-87.49987", + "elevation_ft": "426", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Oaktown", + "scheduled_service": "no", + "gps_code": "KI20", + "iata_code": "OTN", + "local_code": "I20", + "home_link": "http://www.edairinc.com/index.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ed-Air_Airport", + "keywords": "2IG4, KOTN, OTN, Emison, Green, Vincennes Executive Inn" + }, + { + "id": "9371", + "ident": "2IG5", + "type": "heliport", + "name": "Heli-Bell Museum Heliport", + "latitude_deg": "41.17169952392578", + "longitude_deg": "-86.04280090332031", + "elevation_ft": "822", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Mentone", + "scheduled_service": "no", + "gps_code": "2IG5", + "local_code": "2IG5", + "keywords": "Formerly 2E4" + }, + { + "id": "45405", + "ident": "2IG6", + "type": "heliport", + "name": "Bloomington Hospital Heliport", + "latitude_deg": "39.160556", + "longitude_deg": "-86.541389", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bloomington", + "scheduled_service": "no", + "gps_code": "2IG6", + "local_code": "2IG6" + }, + { + "id": "9440", + "ident": "2II0", + "type": "small_airport", + "name": "Indian Hills Flying Field", + "latitude_deg": "40.41740036010742", + "longitude_deg": "-86.15249633789062", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Kokomo", + "scheduled_service": "no", + "gps_code": "2II0", + "local_code": "2II0" + }, + { + "id": "9441", + "ident": "2II1", + "type": "closed", + "name": "Yoder Airport", + "latitude_deg": "41.609798", + "longitude_deg": "-85.525497", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Emma", + "scheduled_service": "no", + "keywords": "2II1" + }, + { + "id": "9442", + "ident": "2II2", + "type": "closed", + "name": "Indian Creek Airport", + "latitude_deg": "37.987499", + "longitude_deg": "-87.9384", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "keywords": "2II2" + }, + { + "id": "9443", + "ident": "2II3", + "type": "small_airport", + "name": "Stottlemyer Airport", + "latitude_deg": "40.22669982910156", + "longitude_deg": "-85.81639862060547", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Frankton", + "scheduled_service": "no", + "gps_code": "2II3", + "local_code": "2II3" + }, + { + "id": "9444", + "ident": "2II4", + "type": "heliport", + "name": "Psi Heliport", + "latitude_deg": "39.71120071411133", + "longitude_deg": "-86.3855972290039", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Plainfield", + "scheduled_service": "no", + "gps_code": "2II4", + "local_code": "2II4" + }, + { + "id": "9445", + "ident": "2II5", + "type": "heliport", + "name": "Burns International Harbor Heliport", + "latitude_deg": "41.637001037597656", + "longitude_deg": "-87.15229797363281", + "elevation_ft": "596", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Portage", + "scheduled_service": "no", + "gps_code": "2II5", + "local_code": "2II5" + }, + { + "id": "9446", + "ident": "2II6", + "type": "small_airport", + "name": "Baird-Wolford Airport", + "latitude_deg": "40.264801025390625", + "longitude_deg": "-86.10279846191406", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Tipton", + "scheduled_service": "no", + "gps_code": "2II6", + "local_code": "2II6" + }, + { + "id": "9447", + "ident": "2II7", + "type": "heliport", + "name": "K-9 Korner Heliport", + "latitude_deg": "40.89250183105469", + "longitude_deg": "-85.20500183105469", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Ossian", + "scheduled_service": "no", + "gps_code": "2II7", + "local_code": "2II7" + }, + { + "id": "9448", + "ident": "2II8", + "type": "heliport", + "name": "West Central Community Hospital Heliport", + "latitude_deg": "39.652400970458984", + "longitude_deg": "-87.39790344238281", + "elevation_ft": "486", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "2II8", + "local_code": "2II8" + }, + { + "id": "9449", + "ident": "2II9", + "type": "heliport", + "name": "Rice Private Heliport", + "latitude_deg": "40.152801513671875", + "longitude_deg": "-87.30809783935547", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Covington", + "scheduled_service": "no", + "gps_code": "2II9", + "local_code": "2II9" + }, + { + "id": "9450", + "ident": "2IL0", + "type": "small_airport", + "name": "Sneek Airport", + "latitude_deg": "42.181400299072266", + "longitude_deg": "-89.6769027709961", + "elevation_ft": "909", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Shannon", + "scheduled_service": "no", + "gps_code": "2IL0", + "local_code": "2IL0" + }, + { + "id": "9451", + "ident": "2IL1", + "type": "small_airport", + "name": "Mc Cartney Airport", + "latitude_deg": "42.413898468", + "longitude_deg": "-89.32929992679999", + "elevation_ft": "908", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Durand", + "scheduled_service": "no", + "gps_code": "2IL1", + "local_code": "2IL1" + }, + { + "id": "9452", + "ident": "2IL2", + "type": "small_airport", + "name": "Watters Airport", + "latitude_deg": "41.05339813232422", + "longitude_deg": "-88.46119689941406", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Dwight", + "scheduled_service": "no", + "gps_code": "2IL2", + "local_code": "2IL2" + }, + { + "id": "9453", + "ident": "2IL3", + "type": "small_airport", + "name": "McNeal's Field", + "latitude_deg": "41.5159", + "longitude_deg": "-90.379601", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "East Moline", + "scheduled_service": "no", + "gps_code": "2IL3", + "local_code": "2IL3" + }, + { + "id": "9454", + "ident": "2IL4", + "type": "closed", + "name": "Mountain Airport", + "latitude_deg": "39.779202", + "longitude_deg": "-90.748596", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Perry", + "scheduled_service": "no", + "keywords": "2IL4" + }, + { + "id": "9455", + "ident": "2IL5", + "type": "closed", + "name": "Sutton Airport", + "latitude_deg": "37.9342", + "longitude_deg": "-88.231697", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Omaha", + "scheduled_service": "no", + "keywords": "2IL5" + }, + { + "id": "9456", + "ident": "2IL6", + "type": "closed", + "name": "Low and Slow Airport", + "latitude_deg": "39.137501", + "longitude_deg": "-90.629997", + "elevation_ft": "455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hardin", + "scheduled_service": "no", + "keywords": "2IL6" + }, + { + "id": "9457", + "ident": "2IL7", + "type": "small_airport", + "name": "Ben Emge Airport", + "latitude_deg": "38.515301", + "longitude_deg": "-90.027901", + "elevation_ft": "555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Belleville", + "scheduled_service": "no", + "gps_code": "2IL7", + "local_code": "2IL7", + "keywords": "Dutchman" + }, + { + "id": "9458", + "ident": "2IL8", + "type": "heliport", + "name": "Il.Dept Of Transportation Heliport", + "latitude_deg": "42.0199377922", + "longitude_deg": "-88.28125253319999", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Elgin", + "scheduled_service": "no", + "gps_code": "2IL8", + "local_code": "2IL8" + }, + { + "id": "9459", + "ident": "2IL9", + "type": "small_airport", + "name": "Meadow Creek Airport", + "latitude_deg": "41.43280029296875", + "longitude_deg": "-87.78170013427734", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Monee", + "scheduled_service": "no", + "gps_code": "2IL9", + "local_code": "2IL9" + }, + { + "id": "9460", + "ident": "2IN0", + "type": "small_airport", + "name": "Skip's Place Airport", + "latitude_deg": "40.83689880371094", + "longitude_deg": "-85.17109680175781", + "elevation_ft": "858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Ossian", + "scheduled_service": "no", + "gps_code": "2IN0", + "local_code": "2IN0" + }, + { + "id": "9461", + "ident": "2IN2", + "type": "small_airport", + "name": "Gerig's Field", + "latitude_deg": "41.00920104980469", + "longitude_deg": "-85.37139892578125", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Roanoke", + "scheduled_service": "no", + "gps_code": "2IN2", + "local_code": "2IN2" + }, + { + "id": "9462", + "ident": "2IN3", + "type": "small_airport", + "name": "Tatertown Airport", + "latitude_deg": "41.084800720214844", + "longitude_deg": "-86.92420196533203", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Medaryville", + "scheduled_service": "no", + "gps_code": "2IN3", + "local_code": "2IN3" + }, + { + "id": "9463", + "ident": "2IN4", + "type": "small_airport", + "name": "Scott Field", + "latitude_deg": "41.25669860839844", + "longitude_deg": "-86.189697265625", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Argos", + "scheduled_service": "no", + "gps_code": "2IN4", + "local_code": "2IN4" + }, + { + "id": "9464", + "ident": "2IN5", + "type": "small_airport", + "name": "Midkiff Airport", + "latitude_deg": "40.015201568603516", + "longitude_deg": "-85.472900390625", + "elevation_ft": "1038", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Sulphur Springs", + "scheduled_service": "no", + "gps_code": "2IN5", + "local_code": "2IN5" + }, + { + "id": "9465", + "ident": "2IN6", + "type": "small_airport", + "name": "Galloway Airport", + "latitude_deg": "40.041900634765625", + "longitude_deg": "-85.91690063476562", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Noblesville", + "scheduled_service": "no", + "gps_code": "2IN6", + "local_code": "2IN6" + }, + { + "id": "9466", + "ident": "2IN7", + "type": "heliport", + "name": "Columbus Regional Hospital Heliport", + "latitude_deg": "39.217263", + "longitude_deg": "-85.893445", + "elevation_ft": "632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "2IN7", + "local_code": "2IN7" + }, + { + "id": "9467", + "ident": "2IN8", + "type": "heliport", + "name": "Franciscan Health Crown Point Heliport", + "latitude_deg": "41.393527", + "longitude_deg": "-87.365448", + "elevation_ft": "758", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Crown Point", + "scheduled_service": "no", + "gps_code": "2IN8", + "local_code": "2IN8", + "keywords": "St Anthony Heliport" + }, + { + "id": "9468", + "ident": "2IN9", + "type": "small_airport", + "name": "Berry Field", + "latitude_deg": "39.56669998168945", + "longitude_deg": "-86.11810302734375", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "New Whiteland", + "scheduled_service": "no", + "gps_code": "2IN9", + "local_code": "2IN9" + }, + { + "id": "9469", + "ident": "2IS1", + "type": "heliport", + "name": "Proctor Hospital Heliport", + "latitude_deg": "40.75059890749999", + "longitude_deg": "-89.5944976807", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Peoria", + "scheduled_service": "no", + "gps_code": "2IS1", + "local_code": "2IS1" + }, + { + "id": "9470", + "ident": "2IS3", + "type": "small_airport", + "name": "Jackson Field", + "latitude_deg": "41.17169952392578", + "longitude_deg": "-89.80680084228516", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Elmira", + "scheduled_service": "no", + "gps_code": "2IS3", + "local_code": "2IS3" + }, + { + "id": "9471", + "ident": "2IS4", + "type": "small_airport", + "name": "Ritter Field", + "latitude_deg": "41.337831", + "longitude_deg": "-91.013507", + "elevation_ft": "552", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Illinois City", + "scheduled_service": "no", + "gps_code": "2IS4", + "local_code": "2IS4", + "keywords": "Carl Ritter Landing Strip" + }, + { + "id": "9472", + "ident": "2IS5", + "type": "closed", + "name": "Parrish RLA Restricted Landing Area", + "latitude_deg": "40.952301", + "longitude_deg": "-89.407896", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lacon", + "scheduled_service": "no", + "keywords": "2IS5" + }, + { + "id": "9473", + "ident": "2IS6", + "type": "closed", + "name": "Red Shed Field", + "latitude_deg": "42.418098", + "longitude_deg": "-89.822601", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lena", + "scheduled_service": "no", + "keywords": "2IS6" + }, + { + "id": "9474", + "ident": "2IS7", + "type": "closed", + "name": "Somers Blossom Airport", + "latitude_deg": "42.060201", + "longitude_deg": "-89.004851", + "elevation_ft": "789", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lindenwood", + "scheduled_service": "no", + "keywords": "2IS7" + }, + { + "id": "9475", + "ident": "2IS9", + "type": "small_airport", + "name": "Pontiac Flying/Cooksville Airport", + "latitude_deg": "40.578098", + "longitude_deg": "-88.707802", + "elevation_ft": "741", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "2IS9", + "local_code": "2IS9", + "keywords": "Schertz Aerial Service" + }, + { + "id": "9476", + "ident": "2J0", + "type": "small_airport", + "name": "Wakulla County Airport", + "latitude_deg": "29.988973", + "longitude_deg": "-84.395763", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panacea", + "scheduled_service": "no", + "local_code": "2J0", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wakulla_County_Airport" + }, + { + "id": "9477", + "ident": "2J8", + "type": "small_airport", + "name": "Pierson Municipal Airport", + "latitude_deg": "29.25", + "longitude_deg": "-81.45919799804688", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pierson", + "scheduled_service": "no", + "gps_code": "2J8", + "local_code": "2J8" + }, + { + "id": "9478", + "ident": "2J9", + "type": "small_airport", + "name": "Quincy Municipal Airport", + "latitude_deg": "30.597900390625", + "longitude_deg": "-84.55740356445312", + "elevation_ft": "221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Quincy", + "scheduled_service": "no", + "gps_code": "2J9", + "local_code": "2J9" + }, + { + "id": "9479", + "ident": "2JY2", + "type": "heliport", + "name": "Mattix Run Heliport", + "latitude_deg": "39.48500061035156", + "longitude_deg": "-74.46720123291016", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Galloway", + "scheduled_service": "no", + "gps_code": "2JY2", + "local_code": "2JY2" + }, + { + "id": "9480", + "ident": "2JY3", + "type": "heliport", + "name": "Wm. B. Kessler Memorial Hospital Heliport", + "latitude_deg": "39.63140106201172", + "longitude_deg": "-74.77279663085938", + "elevation_ft": "71", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Hammonton", + "scheduled_service": "no", + "gps_code": "2JY3", + "local_code": "2JY3" + }, + { + "id": "45547", + "ident": "2JY4", + "type": "closed", + "name": "Arden Hill Heliport", + "latitude_deg": "41.390002", + "longitude_deg": "-74.322222", + "elevation_ft": "492", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Goshen", + "scheduled_service": "no", + "keywords": "2JY4" + }, + { + "id": "9481", + "ident": "2JY5", + "type": "heliport", + "name": "Jet Line South Heliport", + "latitude_deg": "40.01580047607422", + "longitude_deg": "-74.97579956054688", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Cinnaminson", + "scheduled_service": "no", + "gps_code": "2JY5", + "local_code": "2JY5" + }, + { + "id": "42788", + "ident": "2JY6", + "type": "heliport", + "name": "The Ridge At Backbrook Heliport", + "latitude_deg": "40.44125", + "longitude_deg": "-74.828167", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Ringoes", + "scheduled_service": "no", + "gps_code": "2JY6", + "local_code": "2JY6" + }, + { + "id": "45530", + "ident": "2JY7", + "type": "balloonport", + "name": "Alba Vineyard Balloonport", + "latitude_deg": "40.615689", + "longitude_deg": "-75.164167", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "2JY7", + "local_code": "2JY7" + }, + { + "id": "42784", + "ident": "2JY9", + "type": "heliport", + "name": "Hargrove Heliport", + "latitude_deg": "39.946388244599994", + "longitude_deg": "-75.10388946530001", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Camden", + "scheduled_service": "no", + "gps_code": "2JY9", + "local_code": "2JY9" + }, + { + "id": "9482", + "ident": "2K0", + "type": "closed", + "name": "Piatt County Airport", + "latitude_deg": "40.005299", + "longitude_deg": "-88.558601", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Monticello", + "scheduled_service": "no", + "keywords": "2K0" + }, + { + "id": "9483", + "ident": "2K1", + "type": "small_airport", + "name": "Pond Creek Municipal Airport", + "latitude_deg": "36.662498474121094", + "longitude_deg": "-97.80870056152344", + "elevation_ft": "1061", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Pond Creek", + "scheduled_service": "no", + "gps_code": "2K1", + "local_code": "2K1" + }, + { + "id": "9484", + "ident": "2K2", + "type": "small_airport", + "name": "Air Park South Airport", + "latitude_deg": "37.05950164794922", + "longitude_deg": "-93.23429870605469", + "elevation_ft": "1336", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Ozark", + "scheduled_service": "no", + "gps_code": "2K2", + "local_code": "2K2" + }, + { + "id": "9485", + "ident": "2K5", + "type": "small_airport", + "name": "Telida Airport", + "latitude_deg": "63.393901824951", + "longitude_deg": "-153.26899719238", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Telida", + "scheduled_service": "no", + "gps_code": "2K5", + "iata_code": "TLF", + "local_code": "2K5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Telida_Airport" + }, + { + "id": "9486", + "ident": "2K6", + "type": "small_airport", + "name": "Elk County Airport", + "latitude_deg": "37.38059997558594", + "longitude_deg": "-96.27079772949219", + "elevation_ft": "1063", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Moline", + "scheduled_service": "no", + "gps_code": "2K6", + "local_code": "2K6" + }, + { + "id": "9487", + "ident": "2K8", + "type": "small_airport", + "name": "Argonia Municipal Airport", + "latitude_deg": "37.275297", + "longitude_deg": "-97.758739", + "elevation_ft": "1275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Argonia", + "scheduled_service": "no", + "gps_code": "K2K8", + "local_code": "2K8" + }, + { + "id": "9488", + "ident": "2KL", + "type": "small_airport", + "name": "Sunrise Beach Airport", + "latitude_deg": "30.598801", + "longitude_deg": "-98.4086", + "elevation_ft": "854", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sunrise Beach Village", + "scheduled_service": "no", + "gps_code": "K2KL", + "local_code": "2KL" + }, + { + "id": "9489", + "ident": "2KS0", + "type": "small_airport", + "name": "Rupp Airport", + "latitude_deg": "37.20669937133789", + "longitude_deg": "-96.07689666748047", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Sedan", + "scheduled_service": "no", + "gps_code": "2KS0", + "local_code": "2KS0" + }, + { + "id": "9490", + "ident": "2KS1", + "type": "small_airport", + "name": "Rush Airport", + "latitude_deg": "39.77439880371094", + "longitude_deg": "-95.2510986328125", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Severance", + "scheduled_service": "no", + "gps_code": "2KS1", + "local_code": "2KS1" + }, + { + "id": "9491", + "ident": "2KS2", + "type": "small_airport", + "name": "Stuber Flying Ranch Airport", + "latitude_deg": "37.655601501464844", + "longitude_deg": "-96.29060363769531", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Severy", + "scheduled_service": "no", + "gps_code": "2KS2", + "local_code": "2KS2" + }, + { + "id": "9492", + "ident": "2KS3", + "type": "small_airport", + "name": "Wilson Airport", + "latitude_deg": "38.83810043334961", + "longitude_deg": "-98.48560333251953", + "elevation_ft": "1727", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wilson", + "scheduled_service": "no", + "gps_code": "2KS3", + "local_code": "2KS3" + }, + { + "id": "9493", + "ident": "2KS4", + "type": "closed", + "name": "Dick Airport", + "latitude_deg": "37.4478", + "longitude_deg": "-98.225304", + "elevation_ft": "1549", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Spivey", + "scheduled_service": "no", + "keywords": "2KS4" + }, + { + "id": "9494", + "ident": "2KS5", + "type": "small_airport", + "name": "Plains Municipal Airport", + "latitude_deg": "37.27090072631836", + "longitude_deg": "-100.58799743652344", + "elevation_ft": "2762", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Plains", + "scheduled_service": "no", + "gps_code": "2KS5", + "local_code": "2KS5" + }, + { + "id": "322196", + "ident": "2KS6", + "type": "small_airport", + "name": "Flying H Airport", + "latitude_deg": "39.750379", + "longitude_deg": "-96.026783", + "elevation_ft": "1192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Seneca", + "scheduled_service": "no", + "gps_code": "2KS6", + "local_code": "2KS6" + }, + { + "id": "9495", + "ident": "2KS8", + "type": "small_airport", + "name": "Vonada Airport", + "latitude_deg": "39.11669921875", + "longitude_deg": "-98.40029907226562", + "elevation_ft": "1629", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Sylvan Grove", + "scheduled_service": "no", + "gps_code": "2KS8", + "local_code": "2KS8" + }, + { + "id": "9496", + "ident": "2KS9", + "type": "small_airport", + "name": "Starshire Farm Airport", + "latitude_deg": "38.900001525878906", + "longitude_deg": "-95.58360290527344", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Topeka", + "scheduled_service": "no", + "gps_code": "2KS9", + "local_code": "2KS9" + }, + { + "id": "349875", + "ident": "2KT4", + "type": "small_airport", + "name": "Eubank Field", + "latitude_deg": "36.796953", + "longitude_deg": "-85.966902", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Fountain Run", + "scheduled_service": "no", + "gps_code": "2KT4", + "local_code": "2KT4" + }, + { + "id": "9497", + "ident": "2KY0", + "type": "heliport", + "name": "Jane Todd Crawford Hospital Heliport", + "latitude_deg": "37.24330139160156", + "longitude_deg": "-85.49330139160156", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Greensburg", + "scheduled_service": "no", + "gps_code": "2KY0", + "local_code": "2KY0" + }, + { + "id": "9498", + "ident": "2KY1", + "type": "small_airport", + "name": "Kitty Hawk Farm Ultralightport", + "latitude_deg": "37.61920166015625", + "longitude_deg": "-84.38140106201172", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Paint Lick", + "scheduled_service": "no", + "gps_code": "2KY1", + "local_code": "2KY1" + }, + { + "id": "9499", + "ident": "2KY2", + "type": "heliport", + "name": "Livingston Hospital Heliport", + "latitude_deg": "37.262994", + "longitude_deg": "-88.227639", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "2KY2", + "local_code": "2KY2" + }, + { + "id": "9500", + "ident": "2KY3", + "type": "small_airport", + "name": "Plane-O-Field Airport", + "latitude_deg": "36.83470153808594", + "longitude_deg": "-86.45829772949219", + "elevation_ft": "655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Bowling Green", + "scheduled_service": "no", + "gps_code": "2KY3", + "local_code": "2KY3" + }, + { + "id": "9501", + "ident": "2KY4", + "type": "small_airport", + "name": "Oz Airport", + "latitude_deg": "37.655488", + "longitude_deg": "-85.813441", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Elizabethtown", + "scheduled_service": "no", + "gps_code": "2KY4", + "local_code": "2KY4" + }, + { + "id": "9502", + "ident": "2KY5", + "type": "small_airport", + "name": "Womstead Field", + "latitude_deg": "38.375", + "longitude_deg": "-83.15470123291016", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Olive Hill", + "scheduled_service": "no", + "gps_code": "2KY5", + "local_code": "2KY5" + }, + { + "id": "9503", + "ident": "2KY6", + "type": "heliport", + "name": "The Medical Center At Bowling Green Heliport", + "latitude_deg": "36.994456", + "longitude_deg": "-86.42863", + "elevation_ft": "494", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Bowling Green", + "scheduled_service": "no", + "gps_code": "2KY6", + "local_code": "2KY6" + }, + { + "id": "9504", + "ident": "2KY7", + "type": "heliport", + "name": "Taylor County Hospital Heliport", + "latitude_deg": "37.367612", + "longitude_deg": "-85.336491", + "elevation_ft": "872", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Campbellsville", + "scheduled_service": "no", + "gps_code": "2KY7", + "local_code": "2KY7", + "keywords": "Air Evac 43 Heliport" + }, + { + "id": "9505", + "ident": "2KY8", + "type": "small_airport", + "name": "Seldom Scene Airport", + "latitude_deg": "38.10559844970703", + "longitude_deg": "-84.8499984741211", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Millville", + "scheduled_service": "no", + "gps_code": "2KY8", + "local_code": "2KY8" + }, + { + "id": "9506", + "ident": "2KY9", + "type": "heliport", + "name": "Baptist Health La Grange Heliport", + "latitude_deg": "38.39418", + "longitude_deg": "-85.376865", + "elevation_ft": "792", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "La Grange", + "scheduled_service": "no", + "gps_code": "2KY9", + "local_code": "2KY9", + "keywords": "Tri-County Baptist Hospital Heliport" + }, + { + "id": "9507", + "ident": "2L1", + "type": "small_airport", + "name": "Larimore Municipal Airport", + "latitude_deg": "47.906898498535156", + "longitude_deg": "-97.6406021118164", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Larimore", + "scheduled_service": "no", + "gps_code": "2L1", + "local_code": "2L1" + }, + { + "id": "9508", + "ident": "2LA0", + "type": "small_airport", + "name": "Central Industries Airport", + "latitude_deg": "29.787957", + "longitude_deg": "-92.158728", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Intracoastal City", + "scheduled_service": "no", + "gps_code": "2LA0", + "local_code": "2LA0" + }, + { + "id": "9509", + "ident": "2LA1", + "type": "heliport", + "name": "N.Freshwater Bayou Heliport", + "latitude_deg": "29.68160057067871", + "longitude_deg": "-92.26399993896484", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Intracoastal City", + "scheduled_service": "no", + "gps_code": "2LA1", + "local_code": "2LA1" + }, + { + "id": "9510", + "ident": "2LA2", + "type": "heliport", + "name": "Igh Heliport", + "latitude_deg": "29.99020004272461", + "longitude_deg": "-91.78569793701172", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Iberia", + "scheduled_service": "no", + "gps_code": "2LA2", + "local_code": "2LA2" + }, + { + "id": "9511", + "ident": "2LA3", + "type": "seaplane_base", + "name": "Exxon Intracoastal City Terminal Seaplane Base", + "latitude_deg": "29.824899673461914", + "longitude_deg": "-92.13289642333984", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Intracoastal City", + "scheduled_service": "no", + "gps_code": "2LA3", + "local_code": "2LA3" + }, + { + "id": "9512", + "ident": "2LA4", + "type": "small_airport", + "name": "Bunkie Flying Service Airport", + "latitude_deg": "30.929100036621094", + "longitude_deg": "-92.1792984008789", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bunkie", + "scheduled_service": "no", + "gps_code": "2LA4", + "local_code": "2LA4" + }, + { + "id": "9513", + "ident": "2LA5", + "type": "small_airport", + "name": "Reed Flying Service Inc Airport", + "latitude_deg": "30.343299865722656", + "longitude_deg": "-92.43209838867188", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Iota", + "scheduled_service": "no", + "gps_code": "2LA5", + "local_code": "2LA5" + }, + { + "id": "9514", + "ident": "2LA6", + "type": "small_airport", + "name": "Howell 1 Airport", + "latitude_deg": "30.833499908447266", + "longitude_deg": "-91.16680145263672", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "2LA6", + "local_code": "2LA6" + }, + { + "id": "9515", + "ident": "2LA7", + "type": "small_airport", + "name": "Costello Airport", + "latitude_deg": "32.965396", + "longitude_deg": "-91.425966", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Oak Grove", + "scheduled_service": "no", + "gps_code": "2LA7", + "local_code": "2LA7" + }, + { + "id": "9516", + "ident": "2LA8", + "type": "closed", + "name": "Transco Heliport", + "latitude_deg": "29.983", + "longitude_deg": "-92.281503", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kaplan", + "scheduled_service": "no", + "keywords": "2LA8" + }, + { + "id": "9517", + "ident": "2LA9", + "type": "heliport", + "name": "Cow Island Trunkline Heliport", + "latitude_deg": "29.885499954223633", + "longitude_deg": "-92.27239990234375", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kaplan", + "scheduled_service": "no", + "gps_code": "2LA9", + "local_code": "2LA9" + }, + { + "id": "299725", + "ident": "2LL0", + "type": "heliport", + "name": "Taylorville Memorial Hospital Heliport", + "latitude_deg": "39.554444", + "longitude_deg": "-89.294166", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Taylorville", + "scheduled_service": "no", + "gps_code": "2LL0", + "local_code": "2LL0" + }, + { + "id": "9518", + "ident": "2LL1", + "type": "small_airport", + "name": "Cwian Field", + "latitude_deg": "41.540247", + "longitude_deg": "-88.68802", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sheridan", + "scheduled_service": "no", + "gps_code": "2LL1", + "local_code": "2LL1" + }, + { + "id": "9519", + "ident": "2LL2", + "type": "small_airport", + "name": "Weihler Airport", + "latitude_deg": "41.31480026245117", + "longitude_deg": "-90.5521011352539", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sherrard", + "scheduled_service": "no", + "gps_code": "2LL2", + "local_code": "2LL2" + }, + { + "id": "9520", + "ident": "2LL3", + "type": "closed", + "name": "Roy Burden Restricted Landing Area", + "latitude_deg": "40.388901", + "longitude_deg": "-89.069199", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Shirley", + "scheduled_service": "no", + "keywords": "2LL3" + }, + { + "id": "9521", + "ident": "2LL4", + "type": "closed", + "name": "Snow Airport", + "latitude_deg": "39.749802", + "longitude_deg": "-88.9795", + "elevation_ft": "728", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Macon", + "scheduled_service": "no", + "keywords": "2LL4" + }, + { + "id": "9522", + "ident": "2LL5", + "type": "small_airport", + "name": "Justus Airport", + "latitude_deg": "39.998600006103516", + "longitude_deg": "-88.05999755859375", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sidney", + "scheduled_service": "no", + "gps_code": "2LL5", + "local_code": "2LL5" + }, + { + "id": "9523", + "ident": "2LL6", + "type": "heliport", + "name": "Genesis Medical Center - Illini Campus Heliport", + "latitude_deg": "41.4944992065", + "longitude_deg": "-90.4181976318", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Silvis", + "scheduled_service": "no", + "gps_code": "2LL6", + "local_code": "2LL6" + }, + { + "id": "9524", + "ident": "2LL7", + "type": "small_airport", + "name": "Adams Restricted Landing Area Number 2", + "latitude_deg": "40.934816", + "longitude_deg": "-88.740664", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pontiac", + "scheduled_service": "no", + "gps_code": "2LL7", + "local_code": "2LL7" + }, + { + "id": "9525", + "ident": "2LL8", + "type": "heliport", + "name": "Washington County Hospital Heliport", + "latitude_deg": "38.338726", + "longitude_deg": "-89.392299", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Nashville", + "scheduled_service": "no", + "gps_code": "2LL8", + "local_code": "2LL8" + }, + { + "id": "9526", + "ident": "2LL9", + "type": "small_airport", + "name": "George Airport", + "latitude_deg": "41.704200744628906", + "longitude_deg": "-88.69309997558594", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Somonauk", + "scheduled_service": "no", + "gps_code": "2LL9", + "local_code": "2LL9" + }, + { + "id": "9527", + "ident": "2LS0", + "type": "heliport", + "name": "Air Logistics Galliano Heliport", + "latitude_deg": "29.414441", + "longitude_deg": "-90.29769", + "elevation_ft": "-2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Galliano", + "scheduled_service": "no", + "gps_code": "2LS0", + "local_code": "2LS0" + }, + { + "id": "45440", + "ident": "2LS2", + "type": "small_airport", + "name": "Chitimacha Air Park", + "latitude_deg": "29.872222", + "longitude_deg": "-91.543056", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Charenton", + "scheduled_service": "no", + "gps_code": "2LS2", + "local_code": "2LS2" + }, + { + "id": "45441", + "ident": "2LS3", + "type": "small_airport", + "name": "Majors Airpark", + "latitude_deg": "30.626092", + "longitude_deg": "-91.769385", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Melville", + "scheduled_service": "no", + "gps_code": "2LS3", + "local_code": "2LS3" + }, + { + "id": "9528", + "ident": "2M1", + "type": "small_airport", + "name": "Harry S Truman Regional Airport", + "latitude_deg": "39.01810073852539", + "longitude_deg": "-94.08719635009766", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Bates City", + "scheduled_service": "no", + "gps_code": "2M1", + "local_code": "2M1" + }, + { + "id": "9529", + "ident": "2M5", + "type": "seaplane_base", + "name": "Stockton Lake Seaplane Base", + "latitude_deg": "37.650001525878906", + "longitude_deg": "-93.75849914550781", + "elevation_ft": "867", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Stockton", + "scheduled_service": "no", + "gps_code": "2M5", + "local_code": "2M5" + }, + { + "id": "9530", + "ident": "2M7", + "type": "small_airport", + "name": "Hoffman's Black Mountain Aerodrome", + "latitude_deg": "45.531898498535156", + "longitude_deg": "-84.30809783935547", + "elevation_ft": "677", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Cheboygan", + "scheduled_service": "no", + "gps_code": "2M7", + "local_code": "2M7" + }, + { + "id": "9531", + "ident": "2MA2", + "type": "heliport", + "name": "Digital Heliport", + "latitude_deg": "42.326499938964844", + "longitude_deg": "-71.40950012207031", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Hudson", + "scheduled_service": "no", + "gps_code": "2MA2", + "local_code": "2MA2" + }, + { + "id": "9532", + "ident": "2MA3", + "type": "heliport", + "name": "Rider Heliport", + "latitude_deg": "42.66429901123047", + "longitude_deg": "-70.83979797363281", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Ipswich", + "scheduled_service": "no", + "gps_code": "2MA3", + "local_code": "2MA3" + }, + { + "id": "9533", + "ident": "2MA4", + "type": "heliport", + "name": "Compaq Littleton Heliport", + "latitude_deg": "42.54930114746094", + "longitude_deg": "-71.47260284423828", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Littleton", + "scheduled_service": "no", + "gps_code": "2MA4", + "local_code": "2MA4" + }, + { + "id": "9534", + "ident": "2MA5", + "type": "heliport", + "name": "Compaq Powdermill Road Heliport", + "latitude_deg": "42.42789840698242", + "longitude_deg": "-71.45760345458984", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Maynard", + "scheduled_service": "no", + "gps_code": "2MA5", + "local_code": "2MA5" + }, + { + "id": "9535", + "ident": "2MA6", + "type": "seaplane_base", + "name": "Flynns Noquochoke Seaplane Base", + "latitude_deg": "41.59360122680664", + "longitude_deg": "-71.06529998779297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Westport", + "scheduled_service": "no", + "gps_code": "2MA6", + "local_code": "2MA6" + }, + { + "id": "9536", + "ident": "2MA7", + "type": "seaplane_base", + "name": "Falls Pond Seaplane Base", + "latitude_deg": "41.95840072631836", + "longitude_deg": "-71.32640075683594", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "North Attleborough", + "scheduled_service": "no", + "gps_code": "2MA7", + "local_code": "2MA7" + }, + { + "id": "9537", + "ident": "2MA8", + "type": "heliport", + "name": "Compaq Stow Heliport", + "latitude_deg": "42.43090057373047", + "longitude_deg": "-71.54170227050781", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Stow", + "scheduled_service": "no", + "gps_code": "2MA8", + "local_code": "2MA8" + }, + { + "id": "9538", + "ident": "2MA9", + "type": "heliport", + "name": "Digital Heliport", + "latitude_deg": "42.63930130004883", + "longitude_deg": "-71.22450256347656", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Tewksbury", + "scheduled_service": "no", + "gps_code": "2MA9", + "local_code": "2MA9" + }, + { + "id": "9539", + "ident": "2MD0", + "type": "small_airport", + "name": "Anderson Farm Airport", + "latitude_deg": "38.04897", + "longitude_deg": "-75.704169", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "2MD0", + "local_code": "2MD0" + }, + { + "id": "9540", + "ident": "2MD1", + "type": "small_airport", + "name": "Recompense Farm Airport", + "latitude_deg": "38.30435", + "longitude_deg": "-76.7288", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Clements", + "scheduled_service": "no", + "gps_code": "2MD1", + "local_code": "2MD1" + }, + { + "id": "9541", + "ident": "2MD2", + "type": "heliport", + "name": "Aerospace Tech Center Heliport", + "latitude_deg": "39.23649978637695", + "longitude_deg": "-76.82610321044922", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "2MD2", + "local_code": "2MD2" + }, + { + "id": "45460", + "ident": "2MD3", + "type": "small_airport", + "name": "Fly Away Farm Airport", + "latitude_deg": "39.229", + "longitude_deg": "-77.345333", + "elevation_ft": "501", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Boyds", + "scheduled_service": "no", + "gps_code": "2MD3", + "local_code": "2MD3" + }, + { + "id": "9542", + "ident": "2MD4", + "type": "small_airport", + "name": "Ennis Aerodrome", + "latitude_deg": "38.39459991455078", + "longitude_deg": "-75.55740356445312", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Salisbury", + "scheduled_service": "no", + "gps_code": "2MD4", + "local_code": "2MD4" + }, + { + "id": "9543", + "ident": "2MD5", + "type": "small_airport", + "name": "Hoby Wolf Airport", + "latitude_deg": "39.4079444", + "longitude_deg": "-76.9275556", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Eldersburg", + "scheduled_service": "no", + "gps_code": "2MD5", + "local_code": "2MD5", + "keywords": "1W5" + }, + { + "id": "9544", + "ident": "2MD6", + "type": "small_airport", + "name": "Cherry Field", + "latitude_deg": "38.14400100708008", + "longitude_deg": "-76.47219848632812", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Lexington Park", + "scheduled_service": "no", + "gps_code": "2MD6", + "local_code": "2MD6" + }, + { + "id": "9545", + "ident": "2MD7", + "type": "heliport", + "name": "Maritime Institute Heliport", + "latitude_deg": "39.21120071411133", + "longitude_deg": "-76.6718978881836", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Linthicum Heights", + "scheduled_service": "no", + "gps_code": "2MD7", + "local_code": "2MD7" + }, + { + "id": "9546", + "ident": "2MD8", + "type": "small_airport", + "name": "Greater Gortner Airport", + "latitude_deg": "39.33340072631836", + "longitude_deg": "-79.44139862060547", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Oakland", + "scheduled_service": "no", + "gps_code": "2MD8", + "local_code": "2MD8" + }, + { + "id": "331719", + "ident": "2ME2", + "type": "heliport", + "name": "North Haven Heliport", + "latitude_deg": "44.129372", + "longitude_deg": "-68.874339", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "North Haven", + "scheduled_service": "no", + "gps_code": "2ME2", + "local_code": "2ME2" + }, + { + "id": "301205", + "ident": "2me3", + "type": "small_airport", + "name": "Heartstone Farm Airport", + "latitude_deg": "45.04135", + "longitude_deg": "-68.990021", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Charleston", + "scheduled_service": "no", + "gps_code": "2ME3", + "local_code": "2ME3", + "keywords": "Charleston / Harte Field" + }, + { + "id": "9547", + "ident": "2MI0", + "type": "closed", + "name": "Woodside Airport", + "latitude_deg": "43.214626", + "longitude_deg": "-84.045094", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Chesaning", + "scheduled_service": "no", + "keywords": "2MI0" + }, + { + "id": "9548", + "ident": "2MI1", + "type": "heliport", + "name": "Spectrum Health Blodgett Heliport", + "latitude_deg": "42.953767", + "longitude_deg": "-85.622509", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Grand Rapids", + "scheduled_service": "no", + "gps_code": "2MI1", + "local_code": "2MI1", + "keywords": "Blodgett Memorial Medical Center" + }, + { + "id": "9549", + "ident": "2MI2", + "type": "heliport", + "name": "St. Mary Hospital Heliport", + "latitude_deg": "42.427799224853516", + "longitude_deg": "-83.40409851074219", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Livonia", + "scheduled_service": "no", + "gps_code": "2MI2", + "local_code": "2MI2" + }, + { + "id": "9550", + "ident": "2MI3", + "type": "closed", + "name": "Larry D Boven Airport", + "latitude_deg": "42.3125", + "longitude_deg": "-85.463682", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Kalamazoo", + "scheduled_service": "no", + "keywords": "2MI3" + }, + { + "id": "9551", + "ident": "2MI4", + "type": "closed", + "name": "Mc Jilton Field", + "latitude_deg": "43.405602", + "longitude_deg": "-84.571404", + "elevation_ft": "729", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "St Louis", + "scheduled_service": "no", + "keywords": "2MI4" + }, + { + "id": "9552", + "ident": "2MI5", + "type": "small_airport", + "name": "Somerville Airport", + "latitude_deg": "42.941727", + "longitude_deg": "-85.485112", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ada", + "scheduled_service": "no", + "gps_code": "2MI5", + "local_code": "2MI5" + }, + { + "id": "329976", + "ident": "2MI6", + "type": "small_airport", + "name": "The Farm Airport", + "latitude_deg": "44.28743", + "longitude_deg": "-83.760913", + "elevation_ft": "809", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Whittemore", + "scheduled_service": "no", + "gps_code": "2MI6", + "local_code": "2MI6" + }, + { + "id": "9553", + "ident": "2MI7", + "type": "small_airport", + "name": "Flugplatz Airport", + "latitude_deg": "43.346900939941406", + "longitude_deg": "-82.55220031738281", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "2MI7", + "local_code": "2MI7" + }, + { + "id": "9554", + "ident": "2MI8", + "type": "small_airport", + "name": "Vassar Field", + "latitude_deg": "43.34339904785156", + "longitude_deg": "-83.53520202636719", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Vassar", + "scheduled_service": "no", + "gps_code": "2MI8", + "local_code": "2MI8" + }, + { + "id": "9555", + "ident": "2MI9", + "type": "small_airport", + "name": "Capen Airport", + "latitude_deg": "43.62419891357422", + "longitude_deg": "-85.31780242919922", + "elevation_ft": "1015", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Mecosta", + "scheduled_service": "no", + "gps_code": "2MI9", + "local_code": "2MI9" + }, + { + "id": "9556", + "ident": "2MN0", + "type": "small_airport", + "name": "Pribbs Field", + "latitude_deg": "48.08209991455078", + "longitude_deg": "-97.01629638671875", + "elevation_ft": "818", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "East Grand Forks", + "scheduled_service": "no", + "gps_code": "2MN0", + "local_code": "2MN0" + }, + { + "id": "9557", + "ident": "2MN1", + "type": "small_airport", + "name": "Winter Strip", + "latitude_deg": "45.04610061645508", + "longitude_deg": "-95.4645004272461", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Gluek", + "scheduled_service": "no", + "gps_code": "2MN1", + "local_code": "2MN1" + }, + { + "id": "9558", + "ident": "2MN2", + "type": "small_airport", + "name": "Dreamcatcher Airport", + "latitude_deg": "46.940399169921875", + "longitude_deg": "-93.29789733886719", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Jacobson", + "scheduled_service": "no", + "gps_code": "2MN2", + "local_code": "2MN2" + }, + { + "id": "9559", + "ident": "2MN3", + "type": "heliport", + "name": "CCM Health Heliport", + "latitude_deg": "44.955137", + "longitude_deg": "-95.711496", + "elevation_ft": "1024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Montevideo", + "scheduled_service": "no", + "gps_code": "2MN3", + "local_code": "2MN3", + "keywords": "Chippewa County Hospital" + }, + { + "id": "346693", + "ident": "2MN4", + "type": "small_airport", + "name": "Cornfield Canyon Airport", + "latitude_deg": "43.59845", + "longitude_deg": "-94.2529", + "elevation_ft": "1132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Blue Earth", + "scheduled_service": "no", + "gps_code": "2MN4", + "local_code": "2MN4" + }, + { + "id": "9560", + "ident": "2MN5", + "type": "closed", + "name": "Pelican Lake Seaplane Base", + "latitude_deg": "48.057999", + "longitude_deg": "-92.856003", + "elevation_ft": "1288", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Orr", + "scheduled_service": "no", + "keywords": "2MN5" + }, + { + "id": "9561", + "ident": "2MN6", + "type": "small_airport", + "name": "Van Norman's Airport", + "latitude_deg": "44.04719924926758", + "longitude_deg": "-92.09290313720703", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "St Charles", + "scheduled_service": "no", + "gps_code": "2MN6", + "local_code": "2MN6" + }, + { + "id": "9562", + "ident": "2MN7", + "type": "small_airport", + "name": "Fussy Airport", + "latitude_deg": "45.79159927368164", + "longitude_deg": "-94.3407974243164", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "North Prairie", + "scheduled_service": "no", + "gps_code": "2MN7", + "local_code": "2MN7" + }, + { + "id": "9563", + "ident": "2MN8", + "type": "small_airport", + "name": "Trygstad Airport", + "latitude_deg": "43.99610137939453", + "longitude_deg": "-92.33570098876953", + "elevation_ft": "1227", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Rochester", + "scheduled_service": "no", + "gps_code": "2MN8", + "local_code": "2MN8" + }, + { + "id": "9564", + "ident": "2MN9", + "type": "small_airport", + "name": "F. Dillenburg Airport", + "latitude_deg": "45.82440185546875", + "longitude_deg": "-93.99530029296875", + "elevation_ft": "1295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Foley", + "scheduled_service": "no", + "gps_code": "2MN9", + "local_code": "2MN9" + }, + { + "id": "9565", + "ident": "2MO0", + "type": "small_airport", + "name": "Fletcher Field", + "latitude_deg": "38.786659", + "longitude_deg": "-93.86752", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Centerview", + "scheduled_service": "no", + "gps_code": "2MO0", + "local_code": "2MO0" + }, + { + "id": "9566", + "ident": "2MO1", + "type": "small_airport", + "name": "Bird Field", + "latitude_deg": "37.31999969482422", + "longitude_deg": "-93.4198989868164", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Willard", + "scheduled_service": "no", + "gps_code": "2MO1", + "local_code": "2MO1" + }, + { + "id": "9567", + "ident": "2MO2", + "type": "small_airport", + "name": "Northwood Airport", + "latitude_deg": "39.46419906616211", + "longitude_deg": "-94.30799865722656", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Holt", + "scheduled_service": "no", + "gps_code": "2MO2", + "local_code": "2MO2" + }, + { + "id": "9568", + "ident": "2MO3", + "type": "heliport", + "name": "Independence Regional Health Center Heliport", + "latitude_deg": "39.094398498535156", + "longitude_deg": "-94.4352035522461", + "elevation_ft": "952", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Independence", + "scheduled_service": "no", + "gps_code": "2MO3", + "local_code": "2MO3" + }, + { + "id": "9569", + "ident": "2MO4", + "type": "small_airport", + "name": "Breckenridge Airport", + "latitude_deg": "38.114199", + "longitude_deg": "-94.176049", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Rockville", + "scheduled_service": "no", + "gps_code": "2MO4", + "local_code": "2MO4" + }, + { + "id": "9570", + "ident": "2MO5", + "type": "closed", + "name": "Pegasus Ranch Aerodrome", + "latitude_deg": "37.382", + "longitude_deg": "-92.210701", + "elevation_ft": "1430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Houston", + "scheduled_service": "no", + "keywords": "2MO5" + }, + { + "id": "9571", + "ident": "2MO6", + "type": "closed", + "name": "Hunziker Airport", + "latitude_deg": "40.135064", + "longitude_deg": "-92.297974", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hurdland", + "scheduled_service": "no", + "keywords": "2MO6" + }, + { + "id": "9572", + "ident": "2MO7", + "type": "small_airport", + "name": "Fawn Lake Airport", + "latitude_deg": "38.873926", + "longitude_deg": "-91.089879", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Warrenton", + "scheduled_service": "no", + "gps_code": "2MO7", + "local_code": "2MO7" + }, + { + "id": "9573", + "ident": "2MO8", + "type": "small_airport", + "name": "Frerer Strip", + "latitude_deg": "37.135101318359375", + "longitude_deg": "-94.36409759521484", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Carthage", + "scheduled_service": "no", + "gps_code": "2MO8", + "local_code": "2MO8" + }, + { + "id": "9574", + "ident": "2MO9", + "type": "small_airport", + "name": "Runway Ranch Airport", + "latitude_deg": "38.95000076293945", + "longitude_deg": "-94.45020294189453", + "elevation_ft": "929", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kansas City", + "scheduled_service": "no", + "gps_code": "2MO9", + "local_code": "2MO9" + }, + { + "id": "9575", + "ident": "2MS0", + "type": "heliport", + "name": "Tgp Station 851 Heliport", + "latitude_deg": "34.538299560546875", + "longitude_deg": "-89.01329803466797", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "New Albany", + "scheduled_service": "no", + "gps_code": "2MS0", + "local_code": "2MS0" + }, + { + "id": "9576", + "ident": "2MS1", + "type": "heliport", + "name": "Tgp Station 843 Heliport", + "latitude_deg": "33.235599517822266", + "longitude_deg": "-90.57749938964844", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Isola", + "scheduled_service": "no", + "gps_code": "2MS1", + "local_code": "2MS1" + }, + { + "id": "9577", + "ident": "2MS2", + "type": "closed", + "name": "TGP Station 54 Heliport", + "latitude_deg": "33.357201", + "longitude_deg": "-91.054701", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Greenville", + "scheduled_service": "no", + "keywords": "2MS2" + }, + { + "id": "9578", + "ident": "2MS3", + "type": "closed", + "name": "TGP Station 542 Heliport", + "latitude_deg": "32.638901", + "longitude_deg": "-88.660004", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "De Kalb", + "scheduled_service": "no", + "keywords": "2MS3" + }, + { + "id": "9579", + "ident": "2MS4", + "type": "heliport", + "name": "Tgp Station 546 Heliport", + "latitude_deg": "33.44919967651367", + "longitude_deg": "-88.36170196533203", + "elevation_ft": "219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "2MS4", + "local_code": "2MS4" + }, + { + "id": "9580", + "ident": "2MS5", + "type": "heliport", + "name": "Tgp Station 847 Heliport", + "latitude_deg": "33.906898498535156", + "longitude_deg": "-89.7842025756836", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Coffeeville", + "scheduled_service": "no", + "gps_code": "2MS5", + "local_code": "2MS5" + }, + { + "id": "9581", + "ident": "2MS6", + "type": "heliport", + "name": "Tgp Station 63 Heliport", + "latitude_deg": "34.29610061645508", + "longitude_deg": "-90.07219696044922", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Batesville", + "scheduled_service": "no", + "gps_code": "2MS6", + "local_code": "2MS6" + }, + { + "id": "9582", + "ident": "2MS7", + "type": "small_airport", + "name": "Puff Airpark", + "latitude_deg": "32.05849838256836", + "longitude_deg": "-89.81670379638672", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Puckett", + "scheduled_service": "no", + "gps_code": "2MS7", + "local_code": "2MS7" + }, + { + "id": "9583", + "ident": "2MS8", + "type": "small_airport", + "name": "Spencer Field", + "latitude_deg": "33.78969955444336", + "longitude_deg": "-89.87439727783203", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Grenada", + "scheduled_service": "no", + "gps_code": "2MS8", + "local_code": "2MS8" + }, + { + "id": "9584", + "ident": "2MS9", + "type": "small_airport", + "name": "Kimmel Land & Cattle Airport", + "latitude_deg": "33.83000183105469", + "longitude_deg": "-88.92279815673828", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "2MS9", + "local_code": "2MS9" + }, + { + "id": "9585", + "ident": "2MT0", + "type": "small_airport", + "name": "Bates Airstrip", + "latitude_deg": "48.299972", + "longitude_deg": "-114.414543", + "elevation_ft": "3110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Kalispell", + "scheduled_service": "no", + "gps_code": "2MT0", + "local_code": "2MT0" + }, + { + "id": "9586", + "ident": "2MT1", + "type": "small_airport", + "name": "Ryan Field", + "latitude_deg": "48.483182", + "longitude_deg": "-113.960853", + "elevation_ft": "3660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "West Glacier", + "scheduled_service": "no", + "gps_code": "2MT1", + "local_code": "2MT1" + }, + { + "id": "9587", + "ident": "2MT2", + "type": "small_airport", + "name": "Braidwater Farm Airport", + "latitude_deg": "48.198535", + "longitude_deg": "-114.257834", + "elevation_ft": "2910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Kalispell", + "scheduled_service": "no", + "gps_code": "2MT2", + "local_code": "2MT2" + }, + { + "id": "9588", + "ident": "2MT3", + "type": "heliport", + "name": "Community Medical Center Heliport", + "latitude_deg": "46.86989974975586", + "longitude_deg": "-113.99099731445312", + "elevation_ft": "3160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Missoula", + "scheduled_service": "no", + "gps_code": "2MT3", + "local_code": "2MT3" + }, + { + "id": "9589", + "ident": "2MT4", + "type": "heliport", + "name": "River Bend Ranch Heliport", + "latitude_deg": "48.082801818847656", + "longitude_deg": "-113.99600219726562", + "elevation_ft": "3010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Ferndale", + "scheduled_service": "no", + "gps_code": "2MT4", + "local_code": "2MT4" + }, + { + "id": "9590", + "ident": "2MT5", + "type": "small_airport", + "name": "Briar Creek Airport", + "latitude_deg": "45.59410095214844", + "longitude_deg": "-111.1520004272461", + "elevation_ft": "5175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Bozeman", + "scheduled_service": "no", + "gps_code": "2MT5", + "local_code": "2MT5" + }, + { + "id": "9591", + "ident": "2MT6", + "type": "heliport", + "name": "Sun River Ranch Heliport", + "latitude_deg": "47.599998474121094", + "longitude_deg": "-112.6719970703125", + "elevation_ft": "4450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Augusta", + "scheduled_service": "no", + "gps_code": "2MT6", + "local_code": "2MT6" + }, + { + "id": "45507", + "ident": "2MT7", + "type": "heliport", + "name": "Barnaby Lake Medivac Site Heliport", + "latitude_deg": "48.778194", + "longitude_deg": "-114.968444", + "elevation_ft": "3034", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Fortine", + "scheduled_service": "no", + "gps_code": "2MT7", + "local_code": "2MT7" + }, + { + "id": "45513", + "ident": "2MT8", + "type": "small_airport", + "name": "South Boulder Airport", + "latitude_deg": "45.8151", + "longitude_deg": "-111.9259", + "elevation_ft": "4560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Cardwell", + "scheduled_service": "no", + "gps_code": "2MT8", + "local_code": "2MT8" + }, + { + "id": "45954", + "ident": "2MT9", + "type": "small_airport", + "name": "Gold Creek Airport", + "latitude_deg": "46.523083", + "longitude_deg": "-112.9897", + "elevation_ft": "4956", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Drummond", + "scheduled_service": "no", + "gps_code": "2MT9", + "local_code": "2MT9" + }, + { + "id": "9592", + "ident": "2MU0", + "type": "heliport", + "name": "Sainte Genevieve County Memorial Hospital Heliport", + "latitude_deg": "37.968692", + "longitude_deg": "-90.054243", + "elevation_ft": "424", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Sainte Genevieve", + "scheduled_service": "no", + "gps_code": "2MU0", + "local_code": "2MU0" + }, + { + "id": "9593", + "ident": "2MU1", + "type": "heliport", + "name": "Saint Louis Children's Hospital Heliport", + "latitude_deg": "38.6349983215332", + "longitude_deg": "-90.26110076904297", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Saint Louis", + "scheduled_service": "no", + "gps_code": "2MU1", + "local_code": "2MU1" + }, + { + "id": "9594", + "ident": "2MU9", + "type": "small_airport", + "name": "Monroe Field", + "latitude_deg": "38.965599060058594", + "longitude_deg": "-91.11810302734375", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hawk Point", + "scheduled_service": "no", + "gps_code": "2MU9", + "local_code": "2MU9" + }, + { + "id": "45488", + "ident": "2MY2", + "type": "small_airport", + "name": "Zarn Airport", + "latitude_deg": "43.907417", + "longitude_deg": "-94.274667", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Amboy", + "scheduled_service": "no", + "gps_code": "2MY2", + "local_code": "2MY2" + }, + { + "id": "45483", + "ident": "2MY3", + "type": "heliport", + "name": "Cambridge Medical Center Heliport", + "latitude_deg": "45.56545", + "longitude_deg": "-93.231361", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "2MY3", + "local_code": "2MY3" + }, + { + "id": "45485", + "ident": "2MY4", + "type": "small_airport", + "name": "Miller Airport", + "latitude_deg": "45.434174", + "longitude_deg": "-93.950336", + "elevation_ft": "987", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Clear Lake", + "scheduled_service": "no", + "gps_code": "2MY4", + "local_code": "2MY4" + }, + { + "id": "9595", + "ident": "2N2", + "type": "small_airport", + "name": "Newfound Valley Airport", + "latitude_deg": "43.59199905395508", + "longitude_deg": "-71.75150299072266", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Bristol", + "scheduled_service": "no", + "gps_code": "2N2", + "local_code": "2N2" + }, + { + "id": "9596", + "ident": "2N5", + "type": "small_airport", + "name": "Kampel Airport", + "latitude_deg": "40.04840087890625", + "longitude_deg": "-76.97799682617188", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wellsville", + "scheduled_service": "no", + "gps_code": "2N5", + "local_code": "2N5" + }, + { + "id": "9597", + "ident": "2N6", + "type": "small_airport", + "name": "Redwing Airport", + "latitude_deg": "40.0265007019043", + "longitude_deg": "-74.69270324707031", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Jobstown", + "scheduled_service": "no", + "gps_code": "2N6", + "local_code": "2N6" + }, + { + "id": "9598", + "ident": "2N7", + "type": "seaplane_base", + "name": "Little Ferry Seaplane Base", + "latitude_deg": "40.850101470947266", + "longitude_deg": "-74.03289794921875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Little Ferry", + "scheduled_service": "no", + "gps_code": "2N7", + "local_code": "2N7" + }, + { + "id": "9599", + "ident": "2NA0", + "type": "small_airport", + "name": "Soderquist Airport", + "latitude_deg": "47.25669860839844", + "longitude_deg": "-100.7959976196289", + "elevation_ft": "1880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Wilton", + "scheduled_service": "no", + "gps_code": "2NA0", + "local_code": "2NA0" + }, + { + "id": "9600", + "ident": "2NA7", + "type": "small_airport", + "name": "Slater Farm Airport", + "latitude_deg": "48.02830123901367", + "longitude_deg": "-99.61650085449219", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Esmond", + "scheduled_service": "no", + "gps_code": "2NA7", + "local_code": "2NA7" + }, + { + "id": "9601", + "ident": "2NC0", + "type": "small_airport", + "name": "Mountain Air Airport", + "latitude_deg": "35.86869812011719", + "longitude_deg": "-82.341796875", + "elevation_ft": "4432", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Burnsville", + "scheduled_service": "no", + "gps_code": "2NC0", + "local_code": "2NC0" + }, + { + "id": "9602", + "ident": "2NC1", + "type": "small_airport", + "name": "Hawk's Knoll Airport", + "latitude_deg": "34.997398376464844", + "longitude_deg": "-80.8009033203125", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Waxhaw", + "scheduled_service": "no", + "gps_code": "2NC1", + "local_code": "2NC1" + }, + { + "id": "9603", + "ident": "2NC2", + "type": "heliport", + "name": "Union Memorial Hospital Inc Heliport", + "latitude_deg": "34.96770095825195", + "longitude_deg": "-80.52369689941406", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "2NC2", + "local_code": "2NC2" + }, + { + "id": "9604", + "ident": "2NC3", + "type": "heliport", + "name": "Sky-5 Heliport", + "latitude_deg": "35.779598236083984", + "longitude_deg": "-78.67420196533203", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Raleigh", + "scheduled_service": "no", + "gps_code": "2NC3", + "local_code": "2NC3" + }, + { + "id": "9605", + "ident": "2NC4", + "type": "small_airport", + "name": "Scottbrook Farm Airport", + "latitude_deg": "35.33789825439453", + "longitude_deg": "-78.15470123291016", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Goldsboro", + "scheduled_service": "no", + "gps_code": "2NC4", + "local_code": "2NC4" + }, + { + "id": "9606", + "ident": "2NC5", + "type": "heliport", + "name": "Meridian Corporate Center Heliport", + "latitude_deg": "35.23630142211914", + "longitude_deg": "-80.93309783935547", + "elevation_ft": "773", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Charlotte", + "scheduled_service": "no", + "gps_code": "2NC5", + "local_code": "2NC5" + }, + { + "id": "9607", + "ident": "2NC6", + "type": "small_airport", + "name": "Flying M Airport", + "latitude_deg": "35.799598693847656", + "longitude_deg": "-80.39620208740234", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "2NC6", + "local_code": "2NC6" + }, + { + "id": "9608", + "ident": "2NC7", + "type": "small_airport", + "name": "Scotland Neck East Airport", + "latitude_deg": "36.16790008544922", + "longitude_deg": "-77.3989028930664", + "elevation_ft": "103", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Scotland Neck", + "scheduled_service": "no", + "gps_code": "2NC7", + "local_code": "2NC7" + }, + { + "id": "9609", + "ident": "2NC8", + "type": "small_airport", + "name": "Goodnight's Airport", + "latitude_deg": "35.52539825439453", + "longitude_deg": "-80.63980102539062", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Kannapolis", + "scheduled_service": "no", + "gps_code": "2NC8", + "local_code": "2NC8" + }, + { + "id": "9610", + "ident": "2NC9", + "type": "heliport", + "name": "Scotland Memorial Heliport", + "latitude_deg": "34.75320053100586", + "longitude_deg": "-79.46839904785156", + "elevation_ft": "214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Laurinburg", + "scheduled_service": "no", + "gps_code": "2NC9", + "local_code": "2NC9" + }, + { + "id": "9611", + "ident": "2ND0", + "type": "small_airport", + "name": "Kraft Airport", + "latitude_deg": "46.81439971923828", + "longitude_deg": "-97.04979705810547", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Mapleton", + "scheduled_service": "no", + "gps_code": "2ND0", + "local_code": "2ND0" + }, + { + "id": "9612", + "ident": "2ND1", + "type": "small_airport", + "name": "Westerlind Airport", + "latitude_deg": "47.49250030517578", + "longitude_deg": "-100.69999694824219", + "elevation_ft": "1910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Mercer", + "scheduled_service": "no", + "gps_code": "2ND1", + "local_code": "2ND1" + }, + { + "id": "9613", + "ident": "2ND2", + "type": "small_airport", + "name": "Makeeff Airport", + "latitude_deg": "47.566898345947266", + "longitude_deg": "-100.72100067138672", + "elevation_ft": "1910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Mercer", + "scheduled_service": "no", + "gps_code": "2ND2", + "local_code": "2ND2" + }, + { + "id": "9614", + "ident": "2ND3", + "type": "small_airport", + "name": "Casslindan Airport", + "latitude_deg": "48.000842", + "longitude_deg": "-97.121934", + "elevation_ft": "832", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Grand Forks", + "scheduled_service": "no", + "gps_code": "2ND3", + "local_code": "2ND3" + }, + { + "id": "9615", + "ident": "2ND4", + "type": "heliport", + "name": "Trinity Medical Center Heliport", + "latitude_deg": "48.231998443603516", + "longitude_deg": "-101.29199981689453", + "elevation_ft": "1692", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Minot", + "scheduled_service": "no", + "gps_code": "2ND4", + "local_code": "2ND4" + }, + { + "id": "345577", + "ident": "2ND5", + "type": "small_airport", + "name": "Cloud 9 Airport", + "latitude_deg": "47.641991", + "longitude_deg": "-100.821241", + "elevation_ft": "1904", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Turtle Lake", + "scheduled_service": "no", + "gps_code": "2ND5", + "local_code": "2ND5" + }, + { + "id": "9616", + "ident": "2ND7", + "type": "small_airport", + "name": "Johnson Airport", + "latitude_deg": "48.75170135498047", + "longitude_deg": "-100.81400299072266", + "elevation_ft": "1460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Newburg", + "scheduled_service": "no", + "gps_code": "2ND7", + "local_code": "2ND7" + }, + { + "id": "9617", + "ident": "2ND9", + "type": "small_airport", + "name": "Brekhus Field", + "latitude_deg": "48.81669998168945", + "longitude_deg": "-101.91699981689453", + "elevation_ft": "1850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Norma", + "scheduled_service": "no", + "gps_code": "2ND9", + "local_code": "2ND9" + }, + { + "id": "9618", + "ident": "2NE0", + "type": "small_airport", + "name": "Johnson Lake Airport", + "latitude_deg": "40.69670104980469", + "longitude_deg": "-99.83429718017578", + "elevation_ft": "2625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Elwood", + "scheduled_service": "no", + "gps_code": "2NE0", + "local_code": "2NE0" + }, + { + "id": "9619", + "ident": "2NE4", + "type": "small_airport", + "name": "Spring Lake Airport", + "latitude_deg": "42.45000076293945", + "longitude_deg": "-102.13400268554688", + "elevation_ft": "3815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Gordon", + "scheduled_service": "no", + "gps_code": "2NE4", + "local_code": "2NE4" + }, + { + "id": "9620", + "ident": "2NE5", + "type": "small_airport", + "name": "Fiese Airstrip", + "latitude_deg": "40.900001525878906", + "longitude_deg": "-100.09500122070312", + "elevation_ft": "2535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Gothenburg", + "scheduled_service": "no", + "gps_code": "2NE5", + "local_code": "2NE5" + }, + { + "id": "9621", + "ident": "2NE6", + "type": "small_airport", + "name": "Coppersmith Airport", + "latitude_deg": "40.920799255371094", + "longitude_deg": "-101.2969970703125", + "elevation_ft": "3240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Grainton", + "scheduled_service": "no", + "gps_code": "2NE6", + "local_code": "2NE6" + }, + { + "id": "9622", + "ident": "2NE7", + "type": "small_airport", + "name": "Kumor Airport", + "latitude_deg": "40.85139846801758", + "longitude_deg": "-101.94300079345703", + "elevation_ft": "3520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Grant", + "scheduled_service": "no", + "gps_code": "2NE7", + "local_code": "2NE7" + }, + { + "id": "336200", + "ident": "2NE8", + "type": "small_airport", + "name": "Walvoord Field", + "latitude_deg": "40.628703", + "longitude_deg": "-96.562944", + "elevation_ft": "1370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hickman", + "scheduled_service": "no", + "gps_code": "2NE8", + "local_code": "2NE8" + }, + { + "id": "9623", + "ident": "2NH2", + "type": "heliport", + "name": "Westport Heliport", + "latitude_deg": "42.85490036010742", + "longitude_deg": "-71.47370147705078", + "elevation_ft": "205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Litchfield", + "scheduled_service": "no", + "gps_code": "2NH2", + "local_code": "2NH2" + }, + { + "id": "9624", + "ident": "2NH3", + "type": "heliport", + "name": "Scott Heliport", + "latitude_deg": "43.11429977416992", + "longitude_deg": "-71.49819946289062", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Bow", + "scheduled_service": "no", + "gps_code": "2NH3", + "local_code": "2NH3" + }, + { + "id": "9625", + "ident": "2NH4", + "type": "heliport", + "name": "Spear Memorial Hospital Heliport", + "latitude_deg": "43.75749969482422", + "longitude_deg": "-71.69560241699219", + "elevation_ft": "977", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "2NH4", + "local_code": "2NH4" + }, + { + "id": "9626", + "ident": "2NH5", + "type": "small_airport", + "name": "Pilgrim's Home Airfield", + "latitude_deg": "42.990299224853516", + "longitude_deg": "-72.40170288085938", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Westmoreland", + "scheduled_service": "no", + "gps_code": "2NH5", + "local_code": "2NH5" + }, + { + "id": "45527", + "ident": "2NH6", + "type": "heliport", + "name": "Speedway Northside Heliport", + "latitude_deg": "43.365773", + "longitude_deg": "-71.455665", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Loudon", + "scheduled_service": "no", + "gps_code": "2NH6", + "local_code": "2NH6" + }, + { + "id": "9627", + "ident": "2NH9", + "type": "closed", + "name": "Brookside Heliport", + "latitude_deg": "44.028099", + "longitude_deg": "-72.010803", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Haverhill", + "scheduled_service": "no", + "keywords": "2NH9" + }, + { + "id": "9628", + "ident": "2NJ0", + "type": "closed", + "name": "Alexanders-Paramus Heliport", + "latitude_deg": "40.925098", + "longitude_deg": "-74.078796", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Paramus", + "scheduled_service": "no", + "keywords": "2NJ0" + }, + { + "id": "9629", + "ident": "2NJ1", + "type": "small_airport", + "name": "Jugtown Mountain Airport", + "latitude_deg": "40.633399963378906", + "longitude_deg": "-75.06629943847656", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Pattenburg", + "scheduled_service": "no", + "gps_code": "2NJ1", + "local_code": "2NJ1" + }, + { + "id": "9630", + "ident": "2NJ2", + "type": "heliport", + "name": "Sportland Pier Heliport", + "latitude_deg": "38.989628", + "longitude_deg": "-74.800276", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "North Wildwood", + "scheduled_service": "no", + "gps_code": "2NJ2", + "local_code": "2NJ2" + }, + { + "id": "9631", + "ident": "2NJ3", + "type": "small_airport", + "name": "Weidel/Private/ Airport", + "latitude_deg": "40.3404006958", + "longitude_deg": "-74.8543014526", + "elevation_ft": "301", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Pennington", + "scheduled_service": "no", + "gps_code": "2NJ3", + "local_code": "2NJ3" + }, + { + "id": "9632", + "ident": "2NJ4", + "type": "heliport", + "name": "Six Flags Great Adventure Heliport", + "latitude_deg": "40.14619827270508", + "longitude_deg": "-74.43460083007812", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "2NJ4", + "local_code": "2NJ4" + }, + { + "id": "9633", + "ident": "2NJ5", + "type": "small_airport", + "name": "Sanduff Farms Landing Field", + "latitude_deg": "40.652002", + "longitude_deg": "-75.185997", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Phillipsburg", + "scheduled_service": "no", + "gps_code": "2NJ5", + "local_code": "2NJ5", + "keywords": "Hartung Airport" + }, + { + "id": "9634", + "ident": "2NJ6", + "type": "small_airport", + "name": "Markle Airport", + "latitude_deg": "40.77370071411133", + "longitude_deg": "-75.1593017578125", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Phillipsburg", + "scheduled_service": "no", + "gps_code": "2NJ6", + "local_code": "2NJ6" + }, + { + "id": "9635", + "ident": "2NJ7", + "type": "heliport", + "name": "Foley Machinery Heliport", + "latitude_deg": "40.55009841918945", + "longitude_deg": "-74.48770141601562", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Piscataway", + "scheduled_service": "no", + "gps_code": "2NJ7", + "local_code": "2NJ7" + }, + { + "id": "9636", + "ident": "2NJ8", + "type": "heliport", + "name": "Peddie School Heliport", + "latitude_deg": "40.26179885864258", + "longitude_deg": "-74.51959991455078", + "elevation_ft": "106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Hightstown", + "scheduled_service": "no", + "gps_code": "2NJ8", + "local_code": "2NJ8" + }, + { + "id": "9637", + "ident": "2NJ9", + "type": "heliport", + "name": "Bayonne Golf Club Heliport", + "latitude_deg": "40.66469955444336", + "longitude_deg": "-74.09110260009766", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bayonne", + "scheduled_service": "no", + "gps_code": "2NJ9", + "local_code": "2NJ9" + }, + { + "id": "9638", + "ident": "2NK0", + "type": "closed", + "name": "Northwest Waterbird Seaplane Base", + "latitude_deg": "43.593399", + "longitude_deg": "-73.625099", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Bolten Landing", + "scheduled_service": "no", + "keywords": "2NK0" + }, + { + "id": "9639", + "ident": "2NK1", + "type": "closed", + "name": "Gaskin's Hilltop Airport", + "latitude_deg": "42.2962", + "longitude_deg": "-77.465502", + "elevation_ft": "1730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Canisteo", + "scheduled_service": "no", + "keywords": "2NK1" + }, + { + "id": "9640", + "ident": "2NK2", + "type": "heliport", + "name": "Cove Neck Heliport", + "latitude_deg": "40.88370132446289", + "longitude_deg": "-73.49120330810547", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Cove Neck", + "scheduled_service": "no", + "gps_code": "2NK2", + "local_code": "2NK2" + }, + { + "id": "9641", + "ident": "2NK3", + "type": "small_airport", + "name": "Rose Field", + "latitude_deg": "41.151686", + "longitude_deg": "-72.266564", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Orient", + "scheduled_service": "no", + "gps_code": "2NK3", + "local_code": "2NK3" + }, + { + "id": "9642", + "ident": "2NK4", + "type": "heliport", + "name": "Wheelabrator Westchester Heliport", + "latitude_deg": "41.27748", + "longitude_deg": "-73.940418", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Peekskill", + "scheduled_service": "no", + "gps_code": "2NK4", + "local_code": "2NK4", + "keywords": "Westchester Resco" + }, + { + "id": "9643", + "ident": "2NK5", + "type": "heliport", + "name": "NCH Heliport", + "latitude_deg": "44.301700592041016", + "longitude_deg": "-75.95490264892578", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Alexandria Bay", + "scheduled_service": "no", + "gps_code": "2NK5", + "local_code": "2NK5" + }, + { + "id": "9644", + "ident": "2NK6", + "type": "heliport", + "name": "Bertrand Chaffee Hospital Heliport", + "latitude_deg": "42.508399963378906", + "longitude_deg": "-78.65809631347656", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Springville", + "scheduled_service": "no", + "gps_code": "2NK6", + "local_code": "2NK6" + }, + { + "id": "9645", + "ident": "2NK7", + "type": "small_airport", + "name": "Walton Airport", + "latitude_deg": "42.157901763916016", + "longitude_deg": "-75.14790344238281", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Walton", + "scheduled_service": "no", + "gps_code": "2NK7", + "local_code": "2NK7" + }, + { + "id": "9646", + "ident": "2NK8", + "type": "heliport", + "name": "Landmark Plaza Heliport", + "latitude_deg": "40.78200149536133", + "longitude_deg": "-73.82569885253906", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Whitestone", + "scheduled_service": "no", + "gps_code": "2NK8", + "local_code": "2NK8" + }, + { + "id": "9647", + "ident": "2NK9", + "type": "small_airport", + "name": "Old Orchard Airpark", + "latitude_deg": "41.65719985961914", + "longitude_deg": "-74.07720184326172", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Modena", + "scheduled_service": "no", + "gps_code": "2NK9", + "local_code": "2NK9" + }, + { + "id": "345569", + "ident": "2NM9", + "type": "small_airport", + "name": "High Desert Ranch Airport", + "latitude_deg": "34.198763", + "longitude_deg": "-105.165108", + "elevation_ft": "5575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Corona", + "scheduled_service": "no", + "gps_code": "2NM9", + "local_code": "2NM9" + }, + { + "id": "45677", + "ident": "2NR4", + "type": "heliport", + "name": "Apex Healthplex Heliport", + "latitude_deg": "35.747222", + "longitude_deg": "-78.872222", + "elevation_ft": "432", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Apex", + "scheduled_service": "no", + "gps_code": "2NR4", + "local_code": "2NR4" + }, + { + "id": "9648", + "ident": "2NV2", + "type": "small_airport", + "name": "Gibb Ranch Airport", + "latitude_deg": "39.835629", + "longitude_deg": "-119.675904", + "elevation_ft": "4242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Sparks", + "scheduled_service": "no", + "gps_code": "2NV2", + "local_code": "2NV2" + }, + { + "id": "9649", + "ident": "2NV3", + "type": "heliport", + "name": "Vista Del Monte Lot 55 Heliport", + "latitude_deg": "36.837922", + "longitude_deg": "-114.050432", + "elevation_ft": "1978", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Mesquite", + "scheduled_service": "no", + "gps_code": "2NV3", + "local_code": "2NV3" + }, + { + "id": "9650", + "ident": "2NV8", + "type": "heliport", + "name": "Mercy Air-Pahrump Heliport", + "latitude_deg": "36.191349", + "longitude_deg": "-115.986368", + "elevation_ft": "2650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Pahrump", + "scheduled_service": "no", + "gps_code": "2NV8", + "local_code": "2NV8" + }, + { + "id": "9651", + "ident": "2NY0", + "type": "small_airport", + "name": "Catskill Valley Airpark", + "latitude_deg": "42.280601501464844", + "longitude_deg": "-73.9529037475586", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "South Cairo", + "scheduled_service": "no", + "gps_code": "2NY0", + "local_code": "2NY0" + }, + { + "id": "45555", + "ident": "2NY2", + "type": "heliport", + "name": "High View Too Heliport", + "latitude_deg": "41.349667", + "longitude_deg": "-74.333167", + "elevation_ft": "586", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Chester", + "scheduled_service": "no", + "gps_code": "2NY2", + "local_code": "2NY2" + }, + { + "id": "9652", + "ident": "2NY3", + "type": "heliport", + "name": "Kwp Heliport", + "latitude_deg": "41.99039840698242", + "longitude_deg": "-74.08760070800781", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hurley", + "scheduled_service": "no", + "gps_code": "2NY3", + "local_code": "2NY3" + }, + { + "id": "9653", + "ident": "2NY4", + "type": "small_airport", + "name": "Byron Airpark", + "latitude_deg": "43.073699951200005", + "longitude_deg": "-78.0500030518", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Byron", + "scheduled_service": "no", + "gps_code": "2NY4", + "local_code": "2NY4", + "keywords": "Sackett Farms Airstrip" + }, + { + "id": "9654", + "ident": "2NY5", + "type": "heliport", + "name": "Strong Memorial Hospital Heliport", + "latitude_deg": "43.122299", + "longitude_deg": "-77.622803", + "elevation_ft": "554", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Rochester", + "scheduled_service": "no", + "gps_code": "2NY5", + "local_code": "2NY5", + "home_link": "https://www.urmc.rochester.edu/burn-trauma/visitor/helicopter.aspx" + }, + { + "id": "9655", + "ident": "2NY6", + "type": "heliport", + "name": "Slate Hill Heliport", + "latitude_deg": "41.37200164794922", + "longitude_deg": "-74.50769805908203", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Middletown", + "scheduled_service": "no", + "gps_code": "2NY6", + "local_code": "2NY6" + }, + { + "id": "9656", + "ident": "2NY7", + "type": "small_airport", + "name": "Towner Farm Airport", + "latitude_deg": "42.121498107910156", + "longitude_deg": "-77.2114028930664", + "elevation_ft": "1248", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Addison", + "scheduled_service": "no", + "gps_code": "2NY7", + "local_code": "2NY7" + }, + { + "id": "9657", + "ident": "2NY8", + "type": "heliport", + "name": "Benbyre Farm Heliport", + "latitude_deg": "41.80339813232422", + "longitude_deg": "-74.18289947509766", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Alligerville", + "scheduled_service": "no", + "gps_code": "2NY8", + "local_code": "2NY8" + }, + { + "id": "9658", + "ident": "2NY9", + "type": "small_airport", + "name": "Kayutah Lake/James & Helene D Allen Memorial Airport", + "latitude_deg": "42.367811", + "longitude_deg": "-76.724406", + "elevation_ft": "1385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Alpine", + "scheduled_service": "no", + "gps_code": "2NY9", + "local_code": "2NY9" + }, + { + "id": "9659", + "ident": "2OA1", + "type": "small_airport", + "name": "Bristol Airstrip", + "latitude_deg": "41.41510009765625", + "longitude_deg": "-80.8843002319336", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bristolville", + "scheduled_service": "no", + "gps_code": "2OA1", + "local_code": "2OA1" + }, + { + "id": "9660", + "ident": "2OA2", + "type": "small_airport", + "name": "Mackie's Airport", + "latitude_deg": "39.247897", + "longitude_deg": "-83.916378", + "elevation_ft": "993", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Midland", + "scheduled_service": "no", + "gps_code": "2OA2", + "local_code": "2OA2" + }, + { + "id": "9661", + "ident": "2OA3", + "type": "heliport", + "name": "Sawmill Creek Resort Heliport", + "latitude_deg": "41.409698486328125", + "longitude_deg": "-82.5967025756836", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Huron", + "scheduled_service": "no", + "gps_code": "2OA3", + "local_code": "2OA3" + }, + { + "id": "9662", + "ident": "2OA4", + "type": "small_airport", + "name": "Victory Field", + "latitude_deg": "39.931391", + "longitude_deg": "-83.908863", + "elevation_ft": "1055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bethel Township", + "scheduled_service": "no", + "gps_code": "2OA4", + "local_code": "2OA4" + }, + { + "id": "9663", + "ident": "2OA5", + "type": "small_airport", + "name": "Fl-Airfield", + "latitude_deg": "40.182498931884766", + "longitude_deg": "-83.35089874267578", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Marysville", + "scheduled_service": "no", + "gps_code": "2OA5", + "local_code": "2OA5" + }, + { + "id": "9664", + "ident": "2OA6", + "type": "small_airport", + "name": "Hilltop Airport", + "latitude_deg": "40.08649826049805", + "longitude_deg": "-81.58820343017578", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "2OA6", + "local_code": "2OA6" + }, + { + "id": "9665", + "ident": "2OA7", + "type": "small_airport", + "name": "Utter Field", + "latitude_deg": "38.85139847", + "longitude_deg": "-84.10559845", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Felicity", + "scheduled_service": "no", + "gps_code": "2OA7", + "local_code": "2OA7" + }, + { + "id": "45725", + "ident": "2OG2", + "type": "heliport", + "name": "Erickson Air-Crane Whetstone Heliport", + "latitude_deg": "42.429861", + "longitude_deg": "-122.906671", + "elevation_ft": "1224", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Central Point", + "scheduled_service": "no", + "gps_code": "2OG2", + "local_code": "2OG2" + }, + { + "id": "9666", + "ident": "2OG3", + "type": "seaplane_base", + "name": "Wiley's Seaplane Base", + "latitude_deg": "45.430999755859375", + "longitude_deg": "-122.6500015258789", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Lake Oswego", + "scheduled_service": "no", + "gps_code": "2OG3", + "local_code": "2OG3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wiley's_Seaplane_Port" + }, + { + "id": "45724", + "ident": "2OG4", + "type": "small_airport", + "name": "El Rancho Airport", + "latitude_deg": "42.331487", + "longitude_deg": "-118.650614", + "elevation_ft": "4130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Fields", + "scheduled_service": "no", + "gps_code": "2OG4", + "local_code": "2OG4" + }, + { + "id": "45735", + "ident": "2OG5", + "type": "small_airport", + "name": "Mendenhall Airstrip", + "latitude_deg": "45.117978", + "longitude_deg": "-123.506458", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Willamina", + "scheduled_service": "no", + "gps_code": "2OG5", + "local_code": "2OG5" + }, + { + "id": "9667", + "ident": "2OH0", + "type": "small_airport", + "name": "Bohannan Airport", + "latitude_deg": "40.34432", + "longitude_deg": "-82.937175", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Kilbourne", + "scheduled_service": "no", + "gps_code": "2OH0", + "local_code": "2OH0" + }, + { + "id": "9668", + "ident": "2OH1", + "type": "heliport", + "name": "Magruder Memorial Heliport", + "latitude_deg": "41.50559997558594", + "longitude_deg": "-82.93270111083984", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Port Clinton", + "scheduled_service": "no", + "gps_code": "2OH1", + "local_code": "2OH1" + }, + { + "id": "9669", + "ident": "2OH2", + "type": "small_airport", + "name": "Merritt Airport", + "latitude_deg": "39.47200012207031", + "longitude_deg": "-83.48989868164062", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Staunton", + "scheduled_service": "no", + "gps_code": "2OH2", + "local_code": "2OH2" + }, + { + "id": "329953", + "ident": "2OH3", + "type": "heliport", + "name": "Adams County Regional Medical Center Heliport", + "latitude_deg": "38.933869", + "longitude_deg": "-83.58339", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Seaman", + "scheduled_service": "no", + "gps_code": "2OH3", + "local_code": "2OH3" + }, + { + "id": "9670", + "ident": "2OH4", + "type": "small_airport", + "name": "Cedar Creek Airport", + "latitude_deg": "40.6245002746582", + "longitude_deg": "-82.635498046875", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Shauck", + "scheduled_service": "no", + "gps_code": "2OH4", + "local_code": "2OH4" + }, + { + "id": "9671", + "ident": "2OH5", + "type": "heliport", + "name": "Dayton Children's Hospital Heliport", + "latitude_deg": "39.77336", + "longitude_deg": "-84.16976", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dayton", + "scheduled_service": "no", + "gps_code": "2OH5", + "local_code": "2OH5", + "keywords": "Childrens Medical Center Heliport" + }, + { + "id": "9672", + "ident": "2OH6", + "type": "small_airport", + "name": "Smith Field Airport", + "latitude_deg": "40.012001", + "longitude_deg": "-84.281303", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "2OH6", + "local_code": "2OH6", + "keywords": "Leavelle Airstrip" + }, + { + "id": "9673", + "ident": "2OH7", + "type": "small_airport", + "name": "Jbr Airport", + "latitude_deg": "38.91120147705078", + "longitude_deg": "-84.0260009765625", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Hamersville", + "scheduled_service": "no", + "gps_code": "2OH7", + "local_code": "2OH7" + }, + { + "id": "9674", + "ident": "2OH8", + "type": "small_airport", + "name": "Port-O-John Airport", + "latitude_deg": "39.7952995300293", + "longitude_deg": "-83.22319793701172", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Derby", + "scheduled_service": "no", + "gps_code": "2OH8", + "local_code": "2OH8" + }, + { + "id": "9675", + "ident": "2OH9", + "type": "small_airport", + "name": "Caesar Creek Soaring Club Gliderport", + "latitude_deg": "39.4767", + "longitude_deg": "-84.093803", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Waynesville", + "scheduled_service": "no", + "gps_code": "2OH9", + "local_code": "2OH9" + }, + { + "id": "9676", + "ident": "2OI2", + "type": "small_airport", + "name": "Air Jordan Airport", + "latitude_deg": "39.561100006103516", + "longitude_deg": "-84.0519027709961", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Waynesville", + "scheduled_service": "no", + "gps_code": "2OI2", + "local_code": "2OI2" + }, + { + "id": "9677", + "ident": "2OI3", + "type": "heliport", + "name": "Railway Stop Heliport", + "latitude_deg": "41.56779861450195", + "longitude_deg": "-83.52799987792969", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Walbridge", + "scheduled_service": "no", + "gps_code": "2OI3", + "local_code": "2OI3" + }, + { + "id": "9678", + "ident": "2OI4", + "type": "small_airport", + "name": "Aero Lake Farm Airport", + "latitude_deg": "41.0452995300293", + "longitude_deg": "-81.9365005493164", + "elevation_ft": "1195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Westfield Center", + "scheduled_service": "no", + "gps_code": "2OI4", + "local_code": "2OI4" + }, + { + "id": "9679", + "ident": "2OI5", + "type": "heliport", + "name": "West Chester Hospital Heliport", + "latitude_deg": "39.358282", + "longitude_deg": "-84.369059", + "elevation_ft": "886", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "West Chester", + "scheduled_service": "no", + "gps_code": "OH11", + "local_code": "OH11", + "keywords": "2OI5, University Pointe Medical Office Building, Mason" + }, + { + "id": "9680", + "ident": "2OI6", + "type": "heliport", + "name": "Park Medical Center Heliport", + "latitude_deg": "39.970298767089844", + "longitude_deg": "-82.96240234375", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "2OI6", + "local_code": "2OI6" + }, + { + "id": "9681", + "ident": "2OI7", + "type": "heliport", + "name": "Worthington Industries Heliport", + "latitude_deg": "40.11199951171875", + "longitude_deg": "-82.98159790039062", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "2OI7", + "local_code": "2OI7" + }, + { + "id": "9682", + "ident": "2OI8", + "type": "small_airport", + "name": "K & D Airways Airport", + "latitude_deg": "40.86389923095703", + "longitude_deg": "-82.42060089111328", + "elevation_ft": "1248", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mansfield", + "scheduled_service": "no", + "gps_code": "2OI8", + "local_code": "2OI8" + }, + { + "id": "9683", + "ident": "2OI9", + "type": "heliport", + "name": "Comprix Heliport", + "latitude_deg": "39.839500427246094", + "longitude_deg": "-82.90769958496094", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Groveport", + "scheduled_service": "no", + "gps_code": "2OI9", + "local_code": "2OI9" + }, + { + "id": "9684", + "ident": "2OK", + "type": "heliport", + "name": "Alaska Regional Hospital Heliport", + "latitude_deg": "61.21189880371094", + "longitude_deg": "-149.82699584960938", + "elevation_ft": "137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchorage", + "scheduled_service": "no", + "gps_code": "2OK", + "local_code": "2OK" + }, + { + "id": "9685", + "ident": "2OK0", + "type": "closed", + "name": "Burford Corp. Airport", + "latitude_deg": "34.832002", + "longitude_deg": "-97.410004", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Maysville", + "scheduled_service": "no", + "keywords": "2OK0" + }, + { + "id": "9686", + "ident": "2OK1", + "type": "closed", + "name": "Frost Ranch Airport", + "latitude_deg": "35.590099", + "longitude_deg": "-97.010598", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Meeker", + "scheduled_service": "no", + "keywords": "2OK1" + }, + { + "id": "9687", + "ident": "2OK2", + "type": "small_airport", + "name": "Twin Lakes Airport", + "latitude_deg": "35.329200744628906", + "longitude_deg": "-97.2697982788086", + "elevation_ft": "1199", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Midwest City", + "scheduled_service": "no", + "gps_code": "2OK2", + "local_code": "2OK2" + }, + { + "id": "9688", + "ident": "2OK3", + "type": "closed", + "name": "Moore Airpark", + "latitude_deg": "35.354198", + "longitude_deg": "-97.483902", + "elevation_ft": "1285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Moore", + "scheduled_service": "no", + "keywords": "2OK3" + }, + { + "id": "9689", + "ident": "2OK4", + "type": "small_airport", + "name": "Ragwing Acres Airport", + "latitude_deg": "35.81679916381836", + "longitude_deg": "-96.05860137939453", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Mounds", + "scheduled_service": "no", + "gps_code": "2OK4", + "local_code": "2OK4" + }, + { + "id": "9690", + "ident": "2OK5", + "type": "small_airport", + "name": "Ferrell Ranch Airport", + "latitude_deg": "34.92900085449219", + "longitude_deg": "-98.73979949951172", + "elevation_ft": "1575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Mountain View", + "scheduled_service": "no", + "gps_code": "2OK5", + "local_code": "2OK5" + }, + { + "id": "9691", + "ident": "2OK6", + "type": "closed", + "name": "Flying N Ranch Airport", + "latitude_deg": "35.481998", + "longitude_deg": "-97.020599", + "elevation_ft": "1095", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Meeker", + "scheduled_service": "no", + "keywords": "2OK6" + }, + { + "id": "9692", + "ident": "2OK7", + "type": "small_airport", + "name": "Cole Landing Area Airport", + "latitude_deg": "35.258399963378906", + "longitude_deg": "-97.66280364990234", + "elevation_ft": "1353", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Newcastle", + "scheduled_service": "no", + "gps_code": "2OK7", + "local_code": "2OK7" + }, + { + "id": "9693", + "ident": "2OK8", + "type": "closed", + "name": "D & G Farms Airport", + "latitude_deg": "35.225101", + "longitude_deg": "-97.646103", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Newcastle", + "scheduled_service": "no", + "keywords": "2OK8" + }, + { + "id": "9694", + "ident": "2OK9", + "type": "closed", + "name": "Pata Skyhaven Airport", + "latitude_deg": "35.1959", + "longitude_deg": "-97.308403", + "elevation_ft": "1136", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Norman", + "scheduled_service": "no", + "keywords": "2OK9" + }, + { + "id": "45718", + "ident": "2OL2", + "type": "small_airport", + "name": "Myers Field Ultralight Flightpark", + "latitude_deg": "35.887833", + "longitude_deg": "-95.919639", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Bixby", + "scheduled_service": "no", + "gps_code": "2OL2", + "local_code": "2OL2" + }, + { + "id": "9695", + "ident": "2OR0", + "type": "small_airport", + "name": "Nielsen Airport", + "latitude_deg": "45.34687", + "longitude_deg": "-122.52244", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Oregon City", + "scheduled_service": "no", + "gps_code": "2OR0", + "local_code": "2OR0" + }, + { + "id": "9696", + "ident": "2OR1", + "type": "small_airport", + "name": "Big Muddy Ranch Airport", + "latitude_deg": "44.828499", + "longitude_deg": "-120.495003", + "elevation_ft": "1641", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Fossil", + "scheduled_service": "no", + "gps_code": "2OR1", + "local_code": "2OR1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Big_Muddy_Ranch_Airport", + "keywords": "Rajneeshpuram" + }, + { + "id": "9697", + "ident": "2OR2", + "type": "heliport", + "name": "Pioneer Memorial Hospital Heliport", + "latitude_deg": "44.31230163574219", + "longitude_deg": "-120.83799743652344", + "elevation_ft": "2940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Prineville", + "scheduled_service": "no", + "gps_code": "2OR2", + "local_code": "2OR2" + }, + { + "id": "9698", + "ident": "2OR3", + "type": "small_airport", + "name": "Davidson Field", + "latitude_deg": "44.79460144042969", + "longitude_deg": "-123.0979995727539", + "elevation_ft": "188", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Jefferson", + "scheduled_service": "no", + "gps_code": "2OR3", + "local_code": "2OR3" + }, + { + "id": "9699", + "ident": "2OR4", + "type": "small_airport", + "name": "Heavens Gate Ranch Airport", + "latitude_deg": "43.47480010986328", + "longitude_deg": "-123.34600067138672", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Oakland", + "scheduled_service": "no", + "gps_code": "2OR4", + "local_code": "2OR4" + }, + { + "id": "9700", + "ident": "2OR5", + "type": "heliport", + "name": "Woodland Park Hospital Heliport", + "latitude_deg": "45.533199310302734", + "longitude_deg": "-122.5510025024414", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "2OR5", + "local_code": "2OR5" + }, + { + "id": "9701", + "ident": "2OR6", + "type": "small_airport", + "name": "Lockhart Airport", + "latitude_deg": "44.18130111694336", + "longitude_deg": "-118.21499633789062", + "elevation_ft": "4615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Ironside", + "scheduled_service": "no", + "gps_code": "2OR6", + "local_code": "2OR6" + }, + { + "id": "9702", + "ident": "2OR7", + "type": "closed", + "name": "Sweet Home Airport", + "latitude_deg": "44.399736", + "longitude_deg": "-122.683566", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sweet Home", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sweet_Home_Airport", + "keywords": "2OR7, Langmack Airfield, SH Aircraft Painting" + }, + { + "id": "9703", + "ident": "2OR9", + "type": "heliport", + "name": "World Trade Center Heliport", + "latitude_deg": "45.516277", + "longitude_deg": "-122.674849", + "elevation_ft": "296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "2OR9", + "local_code": "2OR9" + }, + { + "id": "9704", + "ident": "2P2", + "type": "small_airport", + "name": "Washington Island Airport", + "latitude_deg": "45.387917", + "longitude_deg": "-86.92327", + "elevation_ft": "652", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Washington", + "scheduled_service": "no", + "local_code": "2P2", + "keywords": "WI47" + }, + { + "id": "9705", + "ident": "2P4", + "type": "small_airport", + "name": "Baraga Airport", + "latitude_deg": "46.7849006652832", + "longitude_deg": "-88.57779693603516", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Baraga", + "scheduled_service": "no", + "gps_code": "2P4", + "local_code": "2P4" + }, + { + "id": "9706", + "ident": "2P5", + "type": "heliport", + "name": "Holly City Heliport", + "latitude_deg": "39.36899948120117", + "longitude_deg": "-75.07350158691406", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Millville", + "scheduled_service": "no", + "gps_code": "2P5", + "local_code": "2P5" + }, + { + "id": "9707", + "ident": "2P7", + "type": "small_airport", + "name": "Alderman Airport", + "latitude_deg": "40.05690002441406", + "longitude_deg": "-80.96320343017578", + "elevation_ft": "1187", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "St Clairsville", + "scheduled_service": "no", + "gps_code": "2P7", + "local_code": "2P7" + }, + { + "id": "9708", + "ident": "2PA0", + "type": "closed", + "name": "Zettlemoyer Airport", + "latitude_deg": "40.556801", + "longitude_deg": "-75.697998", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Kutztown", + "scheduled_service": "no", + "keywords": "2PA0" + }, + { + "id": "9709", + "ident": "2PA1", + "type": "small_airport", + "name": "Boehm's Field", + "latitude_deg": "41.4431", + "longitude_deg": "-75.007896", + "elevation_ft": "1330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Greeley", + "scheduled_service": "no", + "gps_code": "2PA1", + "local_code": "2PA1" + }, + { + "id": "9711", + "ident": "2PA3", + "type": "small_airport", + "name": "Reed Airport", + "latitude_deg": "41.497394", + "longitude_deg": "-75.40947", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lake Ariel", + "scheduled_service": "no", + "gps_code": "2PA3", + "local_code": "2PA3" + }, + { + "id": "9712", + "ident": "2PA4", + "type": "small_airport", + "name": "Boden Airport", + "latitude_deg": "41.84669876098633", + "longitude_deg": "-75.44629669189453", + "elevation_ft": "2120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lakewood", + "scheduled_service": "no", + "gps_code": "2PA4", + "local_code": "2PA4" + }, + { + "id": "9713", + "ident": "2PA5", + "type": "small_airport", + "name": "Johnson Airport", + "latitude_deg": "41.780601501464844", + "longitude_deg": "-78.26920318603516", + "elevation_ft": "1506", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Port Allegany", + "scheduled_service": "no", + "gps_code": "2PA5", + "local_code": "2PA5" + }, + { + "id": "9714", + "ident": "2PA6", + "type": "small_airport", + "name": "The Old Commonwealth Aerodrome", + "latitude_deg": "40.4911994934082", + "longitude_deg": "-76.09770202636719", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Shartlesville", + "scheduled_service": "no", + "gps_code": "2PA6", + "local_code": "2PA6" + }, + { + "id": "9715", + "ident": "2PA7", + "type": "small_airport", + "name": "Egolf Airport", + "latitude_deg": "40.33340072631836", + "longitude_deg": "-77.29969787597656", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Landisburg", + "scheduled_service": "no", + "gps_code": "2PA7", + "local_code": "2PA7" + }, + { + "id": "9716", + "ident": "2PA8", + "type": "small_airport", + "name": "Shulls Airport", + "latitude_deg": "40.30009841918945", + "longitude_deg": "-77.29969787597656", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Landisburg", + "scheduled_service": "no", + "gps_code": "2PA8", + "local_code": "2PA8" + }, + { + "id": "9717", + "ident": "2PA9", + "type": "heliport", + "name": "Wilson Heliport", + "latitude_deg": "40.20009994506836", + "longitude_deg": "-75.29959869384766", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lansdale", + "scheduled_service": "no", + "gps_code": "2PA9", + "local_code": "2PA9" + }, + { + "id": "9718", + "ident": "2PN0", + "type": "closed", + "name": "Strawberry Acres Airport", + "latitude_deg": "42.015301", + "longitude_deg": "-79.817802", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wattsburg", + "scheduled_service": "no", + "keywords": "2PN0" + }, + { + "id": "9719", + "ident": "2PN1", + "type": "small_airport", + "name": "Malco Airport", + "latitude_deg": "41.9833984375", + "longitude_deg": "-77.52469635009766", + "elevation_ft": "1990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Westfield", + "scheduled_service": "no", + "gps_code": "2PN1", + "local_code": "2PN1" + }, + { + "id": "9720", + "ident": "2PN2", + "type": "heliport", + "name": "Fortman Heliport", + "latitude_deg": "39.787498474121094", + "longitude_deg": "-76.64720153808594", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Shrewsbury", + "scheduled_service": "no", + "gps_code": "2PN2", + "local_code": "2PN2" + }, + { + "id": "9721", + "ident": "2PN3", + "type": "closed", + "name": "Market Garden Airport", + "latitude_deg": "39.960231", + "longitude_deg": "-77.102201", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "York Springs", + "scheduled_service": "no", + "gps_code": "2PN3", + "keywords": "2PN3" + }, + { + "id": "9722", + "ident": "2PN4", + "type": "small_airport", + "name": "Quemahening Flightpark Ultralightport", + "latitude_deg": "40.0817985534668", + "longitude_deg": "-78.94550323486328", + "elevation_ft": "1997", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Stoystown", + "scheduled_service": "no", + "gps_code": "2PN4", + "local_code": "2PN4" + }, + { + "id": "9723", + "ident": "2PN5", + "type": "small_airport", + "name": "Baker-Sell Airport", + "latitude_deg": "40.2484016418457", + "longitude_deg": "-78.36080169677734", + "elevation_ft": "1371", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Woodbury", + "scheduled_service": "no", + "gps_code": "2PN5", + "local_code": "2PN5" + }, + { + "id": "9724", + "ident": "2PN7", + "type": "small_airport", + "name": "Brennan Personal Use Airport", + "latitude_deg": "40.855848", + "longitude_deg": "-80.068772", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Zelienople", + "scheduled_service": "no", + "gps_code": "2PN7", + "local_code": "2PN7" + }, + { + "id": "9725", + "ident": "2PN8", + "type": "heliport", + "name": "Federal Reserve Bank Heliport", + "latitude_deg": "39.936798095703125", + "longitude_deg": "-75.15049743652344", + "elevation_ft": "167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "2PN8", + "local_code": "2PN8" + }, + { + "id": "9726", + "ident": "2PN9", + "type": "heliport", + "name": "Sun Company-Radnor Heliport", + "latitude_deg": "40.04710006713867", + "longitude_deg": "-75.35769653320312", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Radnor", + "scheduled_service": "no", + "gps_code": "2PN9", + "local_code": "2PN9" + }, + { + "id": "46121", + "ident": "2PR2", + "type": "closed", + "name": "Caribbean Constr Main Office Heliport", + "latitude_deg": "18.314792", + "longitude_deg": "-66.093517", + "elevation_ft": "311", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Guaynabo", + "scheduled_service": "no", + "keywords": "2PR2" + }, + { + "id": "9727", + "ident": "2PS0", + "type": "heliport", + "name": "Rotelle Heliport", + "latitude_deg": "40.197898864746094", + "longitude_deg": "-75.29910278320312", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "West Point", + "scheduled_service": "no", + "gps_code": "2PS0", + "local_code": "2PS0" + }, + { + "id": "9728", + "ident": "2PS2", + "type": "heliport", + "name": "UPMC Memorial Hospital Heliport", + "latitude_deg": "39.966744", + "longitude_deg": "-76.692317", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "York", + "scheduled_service": "no", + "gps_code": "2PS2", + "local_code": "2PS2" + }, + { + "id": "9729", + "ident": "2PS3", + "type": "small_airport", + "name": "Mathna Airport", + "latitude_deg": "40.015751", + "longitude_deg": "-77.042398", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Dillsburg", + "scheduled_service": "no", + "gps_code": "2PS3", + "local_code": "2PS3" + }, + { + "id": "9730", + "ident": "2PS4", + "type": "heliport", + "name": "Wgal-Tv Heliport", + "latitude_deg": "40.0369987487793", + "longitude_deg": "-76.33769989013672", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "2PS4", + "local_code": "2PS4" + }, + { + "id": "9731", + "ident": "2PS5", + "type": "heliport", + "name": "Rosini Residence Heliport", + "latitude_deg": "40.786800384521484", + "longitude_deg": "-76.58499908447266", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Shamokin", + "scheduled_service": "no", + "gps_code": "2PS5", + "local_code": "2PS5" + }, + { + "id": "9732", + "ident": "2PS6", + "type": "heliport", + "name": "Brandywine Hospital Heliport", + "latitude_deg": "40.0094985962", + "longitude_deg": "-75.78440093990001", + "elevation_ft": "565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Coatesville", + "scheduled_service": "no", + "gps_code": "2PS6", + "local_code": "2PS6" + }, + { + "id": "9733", + "ident": "2PS7", + "type": "heliport", + "name": "Merck Sharp & Dohme Heliport", + "latitude_deg": "40.216800689697266", + "longitude_deg": "-75.16629791259766", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lansdale", + "scheduled_service": "no", + "gps_code": "2PS7", + "local_code": "2PS7" + }, + { + "id": "9734", + "ident": "2PS8", + "type": "heliport", + "name": "UPMC Susquehanna Sunbury Heliport", + "latitude_deg": "40.861702", + "longitude_deg": "-76.777737", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Sunbury", + "scheduled_service": "no", + "gps_code": "2PS8", + "local_code": "2PS8", + "keywords": "Sunbury Community Hospital" + }, + { + "id": "9735", + "ident": "2PS9", + "type": "heliport", + "name": "Albert Einstein Medical Center Heliport", + "latitude_deg": "40.036800384521484", + "longitude_deg": "-75.14350128173828", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "2PS9", + "local_code": "2PS9" + }, + { + "id": "9736", + "ident": "2Q5", + "type": "small_airport", + "name": "Parker Carson Airport", + "latitude_deg": "39.201583", + "longitude_deg": "-119.683444", + "elevation_ft": "4939", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Carson City", + "scheduled_service": "no", + "local_code": "25NV", + "keywords": "2Q5, Parker Carson STOLport" + }, + { + "id": "9737", + "ident": "2Q9", + "type": "small_airport", + "name": "Dyer Airport", + "latitude_deg": "37.60969924926758", + "longitude_deg": "-118.00599670410156", + "elevation_ft": "4899", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Dyer", + "scheduled_service": "no", + "gps_code": "2Q9", + "local_code": "2Q9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dyer_Airport" + }, + { + "id": "9738", + "ident": "2R3", + "type": "seaplane_base", + "name": "Island Lake Seaplane Base", + "latitude_deg": "60.70439910888672", + "longitude_deg": "-151.31100463867188", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kenai", + "scheduled_service": "no", + "gps_code": "2R3", + "local_code": "2R3" + }, + { + "id": "9739", + "ident": "2RI7", + "type": "heliport", + "name": "Malbone Estate Heliport", + "latitude_deg": "41.504909", + "longitude_deg": "-71.310511", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "2RI7", + "local_code": "2RI7" + }, + { + "id": "9740", + "ident": "2S0", + "type": "small_airport", + "name": "Twisp Municipal Airport", + "latitude_deg": "48.35060119628906", + "longitude_deg": "-120.09400177001953", + "elevation_ft": "1602", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Twisp", + "scheduled_service": "no", + "gps_code": "2S0", + "local_code": "2S0" + }, + { + "id": "9741", + "ident": "2S1", + "type": "small_airport", + "name": "Vashon Municipal Airport", + "latitude_deg": "47.45859909057617", + "longitude_deg": "-122.4739990234375", + "elevation_ft": "316", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Vashon", + "scheduled_service": "no", + "gps_code": "2S1", + "local_code": "2S1" + }, + { + "id": "9742", + "ident": "2S2", + "type": "small_airport", + "name": "Beaver Marsh State Airport", + "latitude_deg": "43.12900161743164", + "longitude_deg": "-121.81800079345703", + "elevation_ft": "4638", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Beaver Marsh", + "scheduled_service": "no", + "gps_code": "2S2", + "local_code": "2S2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beaver_Marsh_Airport" + }, + { + "id": "9743", + "ident": "2S3", + "type": "small_airport", + "name": "Archer Memorial Field", + "latitude_deg": "42.90700149536133", + "longitude_deg": "-84.47219848632812", + "elevation_ft": "794", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "St Johns", + "scheduled_service": "no", + "gps_code": "2S3", + "local_code": "2S3" + }, + { + "id": "9744", + "ident": "2S5", + "type": "small_airport", + "name": "Waterville Airport", + "latitude_deg": "47.65599822998047", + "longitude_deg": "-120.05599975585938", + "elevation_ft": "2645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Waterville", + "scheduled_service": "no", + "gps_code": "2S5", + "local_code": "2S5" + }, + { + "id": "9745", + "ident": "2S6", + "type": "small_airport", + "name": "Sportsman Airpark", + "latitude_deg": "45.29570007", + "longitude_deg": "-122.9550018", + "elevation_ft": "181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Newberg", + "scheduled_service": "no", + "gps_code": "2S6", + "local_code": "2S6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sportsman_Airpark" + }, + { + "id": "9746", + "ident": "2SC2", + "type": "heliport", + "name": "South Carolina Pipeline Heliport", + "latitude_deg": "34.0703010559082", + "longitude_deg": "-80.91110229492188", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "2SC2", + "local_code": "2SC2" + }, + { + "id": "9747", + "ident": "2SC3", + "type": "seaplane_base", + "name": "Melrose Landing Seaplane Base", + "latitude_deg": "32.139198303222656", + "longitude_deg": "-80.86810302734375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Hilton Head", + "scheduled_service": "no", + "gps_code": "2SC3", + "local_code": "2SC3" + }, + { + "id": "9748", + "ident": "2SC4", + "type": "seaplane_base", + "name": "Salty Fare Landng Seaplane Base", + "latitude_deg": "32.2338981628418", + "longitude_deg": "-80.75420379638672", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Hilton Head", + "scheduled_service": "no", + "gps_code": "2SC4", + "local_code": "2SC4" + }, + { + "id": "9749", + "ident": "2SC5", + "type": "small_airport", + "name": "Ridgewood Air Airport", + "latitude_deg": "34.29169845581055", + "longitude_deg": "-82.05390167236328", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Waterloo", + "scheduled_service": "no", + "gps_code": "2SC5", + "local_code": "2SC5" + }, + { + "id": "9750", + "ident": "2SC6", + "type": "heliport", + "name": "Sled Heliport", + "latitude_deg": "34.06610107421875", + "longitude_deg": "-81.1156005859375", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "2SC6", + "local_code": "2SC6" + }, + { + "id": "9751", + "ident": "2SC7", + "type": "small_airport", + "name": "Laurel Hill Farms Airport", + "latitude_deg": "33.051700592041016", + "longitude_deg": "-79.54139709472656", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Mcclellanville", + "scheduled_service": "no", + "gps_code": "2SC7", + "local_code": "2SC7" + }, + { + "id": "9752", + "ident": "2SC8", + "type": "small_airport", + "name": "Gaston Airport", + "latitude_deg": "33.7868003845", + "longitude_deg": "-81.0948028564", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Gaston", + "scheduled_service": "no", + "gps_code": "2SC8", + "local_code": "2SC8" + }, + { + "id": "45779", + "ident": "2SC9", + "type": "closed", + "name": "McIntosh Airport", + "latitude_deg": "33.750278", + "longitude_deg": "-79.957777", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Kingstree", + "scheduled_service": "no", + "keywords": "2SC9" + }, + { + "id": "9753", + "ident": "2SD0", + "type": "small_airport", + "name": "Paradise Valley Airport", + "latitude_deg": "44.16360092163086", + "longitude_deg": "-103.47899627685547", + "elevation_ft": "4500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Nemo", + "scheduled_service": "no", + "gps_code": "2SD0", + "local_code": "2SD0" + }, + { + "id": "9754", + "ident": "2SD1", + "type": "heliport", + "name": "Mc Kennan Hospital Heliport", + "latitude_deg": "43.5340995789", + "longitude_deg": "-96.71499633790002", + "elevation_ft": "1510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Sioux Falls", + "scheduled_service": "no", + "gps_code": "2SD1", + "local_code": "2SD1" + }, + { + "id": "9755", + "ident": "2SD2", + "type": "small_airport", + "name": "Pepper Port Airport", + "latitude_deg": "43.10580062866211", + "longitude_deg": "-98.9303970336914", + "elevation_ft": "1965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Bonesteel", + "scheduled_service": "no", + "gps_code": "2SD2", + "local_code": "2SD2" + }, + { + "id": "9756", + "ident": "2SD3", + "type": "small_airport", + "name": "Bollweg Farm Airport", + "latitude_deg": "44.56330108642578", + "longitude_deg": "-99.72509765625", + "elevation_ft": "1746", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Harrold", + "scheduled_service": "no", + "gps_code": "2SD3", + "local_code": "2SD3" + }, + { + "id": "9757", + "ident": "2SD4", + "type": "small_airport", + "name": "Nicolaisen Airport", + "latitude_deg": "43.68330001831055", + "longitude_deg": "-98.26529693603516", + "elevation_ft": "1440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "2SD4", + "local_code": "2SD4" + }, + { + "id": "9758", + "ident": "2SD5", + "type": "heliport", + "name": "Sturgis Heliport", + "latitude_deg": "44.39780044555664", + "longitude_deg": "-103.50900268554688", + "elevation_ft": "3510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Sturgis", + "scheduled_service": "no", + "gps_code": "2SD5", + "local_code": "2SD5" + }, + { + "id": "9759", + "ident": "2SD6", + "type": "heliport", + "name": "Avera Heart Hospital of South Dakota Heliport", + "latitude_deg": "43.49079895019531", + "longitude_deg": "-96.77970123291016", + "elevation_ft": "1477", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Sioux Falls", + "scheduled_service": "no", + "gps_code": "2SD6", + "local_code": "2SD6" + }, + { + "id": "9760", + "ident": "2SD7", + "type": "small_airport", + "name": "Dangel Airport", + "latitude_deg": "43.33330154418945", + "longitude_deg": "-97.06279754638672", + "elevation_ft": "1284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Hurley", + "scheduled_service": "no", + "gps_code": "2SD7", + "local_code": "2SD7" + }, + { + "id": "9761", + "ident": "2SD8", + "type": "small_airport", + "name": "Bixler Ridge Airport", + "latitude_deg": "43.04560089111328", + "longitude_deg": "-96.93910217285156", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Centerville", + "scheduled_service": "no", + "gps_code": "2SD8", + "local_code": "2SD8" + }, + { + "id": "9762", + "ident": "2SD9", + "type": "small_airport", + "name": "Tc Field", + "latitude_deg": "45.45220184326172", + "longitude_deg": "-99.01010131835938", + "elevation_ft": "1515", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Ipswich", + "scheduled_service": "no", + "gps_code": "2SD9", + "local_code": "2SD9" + }, + { + "id": "9763", + "ident": "2T2", + "type": "small_airport", + "name": "Percival Springs Airport", + "latitude_deg": "39.01390075683594", + "longitude_deg": "-88.53890228271484", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Watson", + "scheduled_service": "no", + "gps_code": "2T2", + "local_code": "2T2" + }, + { + "id": "9764", + "ident": "2T5", + "type": "closed", + "name": "Hahn Sky Ranch Airport", + "latitude_deg": "43.469658", + "longitude_deg": "-88.292174", + "elevation_ft": "1090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "West Bend", + "scheduled_service": "no", + "keywords": "2T5" + }, + { + "id": "9765", + "ident": "2T7", + "type": "heliport", + "name": "Van Camp's Heliport", + "latitude_deg": "42.01919937133789", + "longitude_deg": "-83.84860229492188", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Tecumseh", + "scheduled_service": "no", + "gps_code": "2T7", + "local_code": "2T7" + }, + { + "id": "9766", + "ident": "2TA0", + "type": "closed", + "name": "Darmar Medical Emergency Heliport", + "latitude_deg": "29.789101", + "longitude_deg": "-95.799698", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Katy", + "scheduled_service": "no", + "keywords": "2TA0" + }, + { + "id": "9767", + "ident": "2TA1", + "type": "small_airport", + "name": "Gravco Airport", + "latitude_deg": "31.3902", + "longitude_deg": "-94.691002", + "elevation_ft": "284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lufkin", + "scheduled_service": "no", + "gps_code": "2TA1", + "local_code": "2TA1", + "keywords": "Gravco STOLport" + }, + { + "id": "9768", + "ident": "2TA2", + "type": "heliport", + "name": "The Medical Center of Mesquite Heliport", + "latitude_deg": "32.77939987182617", + "longitude_deg": "-96.6010971069336", + "elevation_ft": "506", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mesquite", + "scheduled_service": "no", + "gps_code": "2TA2", + "local_code": "2TA2" + }, + { + "id": "9769", + "ident": "2TA3", + "type": "small_airport", + "name": "Triangle Ranch Private Airport", + "latitude_deg": "31.718201", + "longitude_deg": "-104.598", + "elevation_ft": "4400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Salt Flat", + "scheduled_service": "no", + "gps_code": "2TA3", + "local_code": "2TA3" + }, + { + "id": "9770", + "ident": "2TA4", + "type": "small_airport", + "name": "Mario's Flying Pizza Airport", + "latitude_deg": "29.747506", + "longitude_deg": "-96.290066", + "elevation_ft": "233", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sealy", + "scheduled_service": "no", + "gps_code": "2TA4", + "local_code": "2TA4" + }, + { + "id": "9771", + "ident": "2TA5", + "type": "closed", + "name": "Port O'Connor Base (EHI) Heliport", + "latitude_deg": "28.4697", + "longitude_deg": "-96.491898", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port O'Connor", + "scheduled_service": "no", + "gps_code": "2TA5", + "local_code": "2TA5" + }, + { + "id": "9772", + "ident": "2TA6", + "type": "small_airport", + "name": "Pyramid Ranch Airport", + "latitude_deg": "31.862699508666992", + "longitude_deg": "-96.19750213623047", + "elevation_ft": "362", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "2TA6", + "local_code": "2TA6" + }, + { + "id": "9773", + "ident": "2TA7", + "type": "closed", + "name": "Era Helicopters Sabine Base Heliport", + "latitude_deg": "29.696301", + "longitude_deg": "-93.956596", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sabine Pass", + "scheduled_service": "no" + }, + { + "id": "9774", + "ident": "2TA8", + "type": "small_airport", + "name": "El Coyote Ranch Airport", + "latitude_deg": "26.85840034", + "longitude_deg": "-98.22200012", + "elevation_ft": "196", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Encino", + "scheduled_service": "no", + "gps_code": "2TA8", + "local_code": "2TA8" + }, + { + "id": "9775", + "ident": "2TA9", + "type": "closed", + "name": "AMIGO For Christ Airport", + "latitude_deg": "32.6604", + "longitude_deg": "-97.842003", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no", + "gps_code": "2TA9", + "local_code": "2TA9" + }, + { + "id": "9776", + "ident": "2TE0", + "type": "small_airport", + "name": "Eagle Air Park", + "latitude_deg": "28.982200622559", + "longitude_deg": "-95.579696655273", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brazoria", + "scheduled_service": "no", + "gps_code": "2TE0", + "iata_code": "BZT", + "local_code": "2TE0", + "keywords": "Hinkles Ferry" + }, + { + "id": "9777", + "ident": "2TE1", + "type": "heliport", + "name": "Republic Helicopters Heliport", + "latitude_deg": "29.32859992980957", + "longitude_deg": "-95.06189727783203", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Santa Fe", + "scheduled_service": "no", + "gps_code": "2TE1", + "local_code": "2TE1" + }, + { + "id": "9778", + "ident": "2TE2", + "type": "small_airport", + "name": "Flying Oaks Airport", + "latitude_deg": "32.829065", + "longitude_deg": "-97.53489", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Azle", + "scheduled_service": "no", + "gps_code": "2TE2", + "local_code": "2TE2" + }, + { + "id": "9779", + "ident": "2TE3", + "type": "small_airport", + "name": "Weems Farm Airport", + "latitude_deg": "33.2942008972168", + "longitude_deg": "-96.9281005859375", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Aubrey", + "scheduled_service": "no", + "gps_code": "2TE3", + "local_code": "2TE3" + }, + { + "id": "9780", + "ident": "2TE4", + "type": "small_airport", + "name": "Frels Airport", + "latitude_deg": "29.17919921875", + "longitude_deg": "-96.32270050048828", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Campo", + "scheduled_service": "no", + "gps_code": "2TE4", + "local_code": "2TE4" + }, + { + "id": "9781", + "ident": "2TE5", + "type": "small_airport", + "name": "Piano Ranch Airport", + "latitude_deg": "29.695100784301758", + "longitude_deg": "-97.16329956054688", + "elevation_ft": "383", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Flatonia", + "scheduled_service": "no", + "gps_code": "2TE5", + "local_code": "2TE5" + }, + { + "id": "9782", + "ident": "2TE6", + "type": "small_airport", + "name": "Burris Ranch Airport", + "latitude_deg": "28.883771", + "longitude_deg": "-98.049221", + "elevation_ft": "448", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Karnes City", + "scheduled_service": "no", + "gps_code": "2TE6", + "local_code": "2TE6" + }, + { + "id": "9783", + "ident": "2TE7", + "type": "small_airport", + "name": "Beach Ranch Airport", + "latitude_deg": "33.227201", + "longitude_deg": "-101.133249", + "elevation_ft": "2303", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Post", + "scheduled_service": "no", + "gps_code": "2TE7", + "local_code": "2TE7" + }, + { + "id": "9784", + "ident": "2TE8", + "type": "closed", + "name": "Wagner-Braxdale Airport", + "latitude_deg": "28.678992", + "longitude_deg": "-99.800234", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crystal City", + "scheduled_service": "no", + "gps_code": "2TE8", + "local_code": "2TE8", + "keywords": "2TE8" + }, + { + "id": "9785", + "ident": "2TE9", + "type": "heliport", + "name": "Cuero Community Hospital Heliport", + "latitude_deg": "29.112904", + "longitude_deg": "-97.284359", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cuero", + "scheduled_service": "no", + "gps_code": "2TE9", + "local_code": "2TE9" + }, + { + "id": "9786", + "ident": "2TN0", + "type": "heliport", + "name": "Hospital Wing Heliport", + "latitude_deg": "35.14179992675781", + "longitude_deg": "-90.02680206298828", + "elevation_ft": "282", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Memphis", + "scheduled_service": "no", + "gps_code": "2TN0", + "local_code": "2TN0" + }, + { + "id": "9787", + "ident": "2TN1", + "type": "heliport", + "name": "Baptist Memorial Hospital Heliport", + "latitude_deg": "35.743099212646484", + "longitude_deg": "-89.53939819335938", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Ripley", + "scheduled_service": "no", + "gps_code": "2TN1", + "local_code": "2TN1" + }, + { + "id": "9788", + "ident": "2TN2", + "type": "small_airport", + "name": "Wings Field", + "latitude_deg": "35.22359848022461", + "longitude_deg": "-89.18890380859375", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Hickory Valley", + "scheduled_service": "no", + "gps_code": "2TN2", + "local_code": "2TN2" + }, + { + "id": "9789", + "ident": "2TN3", + "type": "closed", + "name": "Oak Ridge Heliport", + "latitude_deg": "36.001499", + "longitude_deg": "-84.247398", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Oak Ridge", + "scheduled_service": "no", + "keywords": "2TN3" + }, + { + "id": "9790", + "ident": "2TN4", + "type": "small_airport", + "name": "Shoemaker-Shelby Forest Airport", + "latitude_deg": "35.31809997558594", + "longitude_deg": "-90.0353012084961", + "elevation_ft": "335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Millington", + "scheduled_service": "no", + "gps_code": "2TN4", + "local_code": "2TN4" + }, + { + "id": "9791", + "ident": "2TN5", + "type": "heliport", + "name": "Athens Regional Medical Center Heliport", + "latitude_deg": "35.43560028076172", + "longitude_deg": "-84.59989929199219", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Athens", + "scheduled_service": "no", + "gps_code": "2TN5", + "local_code": "2TN5" + }, + { + "id": "9792", + "ident": "2TN6", + "type": "heliport", + "name": "Saint Thomas Midtown Hospital Heliport", + "latitude_deg": "36.153953", + "longitude_deg": "-86.802022", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Nashville", + "scheduled_service": "no", + "gps_code": "2TN6", + "local_code": "2TN6", + "keywords": "Baptist Hospital" + }, + { + "id": "9793", + "ident": "2TN7", + "type": "small_airport", + "name": "Wolf Creek Airport", + "latitude_deg": "35.80440139770508", + "longitude_deg": "-84.41580200195312", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Kingston", + "scheduled_service": "no", + "gps_code": "2TN7", + "local_code": "2TN7" + }, + { + "id": "9794", + "ident": "2TN8", + "type": "small_airport", + "name": "Soggy Bottom Airport", + "latitude_deg": "36.018001556396484", + "longitude_deg": "-85.93599700927734", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Dowelltown", + "scheduled_service": "no", + "gps_code": "2TN8", + "local_code": "2TN8" + }, + { + "id": "9795", + "ident": "2TN9", + "type": "heliport", + "name": "Baptist Memorial Hospital Heliport", + "latitude_deg": "36.41400146484375", + "longitude_deg": "-89.04669952392578", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Union City", + "scheduled_service": "no", + "gps_code": "2TN9", + "local_code": "2TN9" + }, + { + "id": "9796", + "ident": "2TS0", + "type": "small_airport", + "name": "Myska Field", + "latitude_deg": "33.154709", + "longitude_deg": "-97.138817", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Denton", + "scheduled_service": "no", + "gps_code": "2TS0", + "local_code": "2TS0" + }, + { + "id": "9797", + "ident": "2TS1", + "type": "heliport", + "name": "Titus Regional Medical Center Heliport", + "latitude_deg": "33.175463", + "longitude_deg": "-94.97081", + "elevation_ft": "422", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mount Pleasant", + "scheduled_service": "no", + "gps_code": "2TS1", + "local_code": "2TS1" + }, + { + "id": "9798", + "ident": "2TS2", + "type": "small_airport", + "name": "Shofner Farms Airport", + "latitude_deg": "26.168399810791016", + "longitude_deg": "-97.73359680175781", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Harlingen", + "scheduled_service": "no", + "gps_code": "2TS2", + "local_code": "2TS2" + }, + { + "id": "9799", + "ident": "2TS3", + "type": "small_airport", + "name": "Tigerbird Field", + "latitude_deg": "31.67930030822754", + "longitude_deg": "-97.2406005859375", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no", + "gps_code": "2TS3", + "local_code": "2TS3" + }, + { + "id": "9800", + "ident": "2TS4", + "type": "small_airport", + "name": "Circle R Ranch Airport", + "latitude_deg": "32.13970184326172", + "longitude_deg": "-95.97029876708984", + "elevation_ft": "395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Malakoff", + "scheduled_service": "no", + "gps_code": "2TS4", + "local_code": "2TS4" + }, + { + "id": "9801", + "ident": "2TS5", + "type": "closed", + "name": "Hedley Airport", + "latitude_deg": "34.8937", + "longitude_deg": "-100.610001", + "elevation_ft": "2510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hedley", + "scheduled_service": "no", + "keywords": "2TS5" + }, + { + "id": "9802", + "ident": "2TS6", + "type": "small_airport", + "name": "Eagle's Nest Estates Airport", + "latitude_deg": "32.512602", + "longitude_deg": "-96.926695", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Midlothian", + "scheduled_service": "no", + "local_code": "T56", + "keywords": "2TS6" + }, + { + "id": "9803", + "ident": "2TS7", + "type": "heliport", + "name": "Jamak Fabrication Heliport", + "latitude_deg": "32.78120040893555", + "longitude_deg": "-97.81639862060547", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no", + "gps_code": "2TS7", + "local_code": "2TS7" + }, + { + "id": "9804", + "ident": "2TS8", + "type": "small_airport", + "name": "Bailey Airport", + "latitude_deg": "29.220500946044922", + "longitude_deg": "-97.87169647216797", + "elevation_ft": "452", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Stockdale", + "scheduled_service": "no", + "gps_code": "2TS8", + "local_code": "2TS8" + }, + { + "id": "9805", + "ident": "2TS9", + "type": "closed", + "name": "DPS-Tyler Heliport", + "latitude_deg": "32.313999", + "longitude_deg": "-95.239098", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tyler", + "scheduled_service": "no", + "keywords": "2TS9" + }, + { + "id": "9806", + "ident": "2TX0", + "type": "small_airport", + "name": "Blue Sky Airfield", + "latitude_deg": "35.062604", + "longitude_deg": "-101.850421", + "elevation_ft": "3615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Amarillo", + "scheduled_service": "no", + "gps_code": "2TX0", + "local_code": "2TX0" + }, + { + "id": "9807", + "ident": "2TX1", + "type": "small_airport", + "name": "Russell Paradise Airport", + "latitude_deg": "29.22865", + "longitude_deg": "-98.384046", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Elmendorf", + "scheduled_service": "no", + "gps_code": "2TX1", + "local_code": "2TX1" + }, + { + "id": "9808", + "ident": "2TX2", + "type": "small_airport", + "name": "Ray Smith Farm Airport", + "latitude_deg": "32.0265007019043", + "longitude_deg": "-98.01000213623047", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hico", + "scheduled_service": "no", + "gps_code": "2TX2", + "local_code": "2TX2" + }, + { + "id": "9809", + "ident": "2TX3", + "type": "small_airport", + "name": "La Fonda Ranch Airport", + "latitude_deg": "29.216899871826172", + "longitude_deg": "-100.61699676513672", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no", + "gps_code": "2TX3", + "local_code": "2TX3" + }, + { + "id": "9810", + "ident": "2TX4", + "type": "small_airport", + "name": "Lewis Ranch Airport", + "latitude_deg": "27.983600616455078", + "longitude_deg": "-99.37670135498047", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Encinal", + "scheduled_service": "no", + "gps_code": "2TX4", + "local_code": "2TX4" + }, + { + "id": "9811", + "ident": "2TX5", + "type": "small_airport", + "name": "Berry Airport", + "latitude_deg": "31.453500747680664", + "longitude_deg": "-97.75140380859375", + "elevation_ft": "757", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gatesville", + "scheduled_service": "no", + "gps_code": "2TX5", + "local_code": "2TX5" + }, + { + "id": "9812", + "ident": "2TX6", + "type": "small_airport", + "name": "Everitt Airport", + "latitude_deg": "33.681800842285156", + "longitude_deg": "-101.66799926757812", + "elevation_ft": "3200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Idalou", + "scheduled_service": "no", + "gps_code": "2TX6", + "local_code": "2TX6" + }, + { + "id": "9813", + "ident": "2TX7", + "type": "small_airport", + "name": "JW Airport", + "latitude_deg": "33.093472", + "longitude_deg": "-97.396338", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Justin", + "scheduled_service": "no", + "gps_code": "2TX7", + "local_code": "2TX7" + }, + { + "id": "9814", + "ident": "2TX8", + "type": "small_airport", + "name": "Eagle's Landing Airport", + "latitude_deg": "33.30820083618164", + "longitude_deg": "-97.37969970703125", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Krum", + "scheduled_service": "no", + "gps_code": "2TX8", + "local_code": "2TX8" + }, + { + "id": "9815", + "ident": "2TX9", + "type": "heliport", + "name": "Ethyl Corp Heliport", + "latitude_deg": "29.741100311279297", + "longitude_deg": "-95.1707992553711", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pasadena", + "scheduled_service": "no", + "gps_code": "2TX9", + "local_code": "2TX9" + }, + { + "id": "9816", + "ident": "2U0", + "type": "small_airport", + "name": "Smith Prairie Airport", + "latitude_deg": "43.49850082397461", + "longitude_deg": "-115.5479965209961", + "elevation_ft": "4958", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Prairie", + "scheduled_service": "no", + "gps_code": "2U0", + "local_code": "2U0" + }, + { + "id": "9817", + "ident": "2U4", + "type": "small_airport", + "name": "Rockford Municipal Airport", + "latitude_deg": "43.19020080566406", + "longitude_deg": "-112.53199768066406", + "elevation_ft": "4465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Rockford", + "scheduled_service": "no", + "gps_code": "2U4", + "local_code": "2U4" + }, + { + "id": "9818", + "ident": "2U5", + "type": "small_airport", + "name": "Shearer US Forest Service Airport", + "latitude_deg": "45.9916", + "longitude_deg": "-114.841003", + "elevation_ft": "2634", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Kooskia", + "scheduled_service": "no", + "local_code": "2U5" + }, + { + "id": "9819", + "ident": "2U7", + "type": "small_airport", + "name": "Stanley Airport", + "latitude_deg": "44.2085", + "longitude_deg": "-114.934998", + "elevation_ft": "6403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Stanley", + "scheduled_service": "no", + "local_code": "2U7" + }, + { + "id": "9820", + "ident": "2U8", + "type": "small_airport", + "name": "Thomas Creek Airport", + "latitude_deg": "44.72629928588867", + "longitude_deg": "-115.00299835205078", + "elevation_ft": "4400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Stanley", + "scheduled_service": "no", + "gps_code": "2U8", + "local_code": "2U8" + }, + { + "id": "9821", + "ident": "2UT2", + "type": "small_airport", + "name": "High Meadow Ranch Airport", + "latitude_deg": "37.52080154418945", + "longitude_deg": "-112.64199829101562", + "elevation_ft": "8280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Duck Creek Village", + "scheduled_service": "no", + "gps_code": "2UT2", + "local_code": "2UT2" + }, + { + "id": "9822", + "ident": "2UT3", + "type": "small_airport", + "name": "Fort Ranch Airport", + "latitude_deg": "41.4921989440918", + "longitude_deg": "-112.59100341796875", + "elevation_ft": "4440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Brigham City", + "scheduled_service": "no", + "gps_code": "2UT3", + "local_code": "2UT3" + }, + { + "id": "9823", + "ident": "2UT4", + "type": "heliport", + "name": "Heber Valley Hospital Heliport", + "latitude_deg": "40.49020004272461", + "longitude_deg": "-111.40599822998047", + "elevation_ft": "5681", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Heber City", + "scheduled_service": "no", + "gps_code": "2UT4", + "local_code": "2UT4" + }, + { + "id": "345766", + "ident": "2UT5", + "type": "small_airport", + "name": "Charlevoix Airport", + "latitude_deg": "37.447504", + "longitude_deg": "-113.247102", + "elevation_ft": "5300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "New Harmony", + "scheduled_service": "no", + "gps_code": "2UT5", + "local_code": "2UT5" + }, + { + "id": "9824", + "ident": "2V3", + "type": "closed", + "name": "Hartenbower Hectares Airport", + "latitude_deg": "41.181499", + "longitude_deg": "-89.146698", + "elevation_ft": "733", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lostant", + "scheduled_service": "no", + "keywords": "IS56, 2V3, 48IL" + }, + { + "id": "14130", + "ident": "2VA", + "type": "small_airport", + "name": "Zangger Vintage Airpark", + "latitude_deg": "43.4514007568", + "longitude_deg": "-96.40589904790001", + "elevation_ft": "1476", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Larchwood", + "scheduled_service": "no", + "gps_code": "2VA", + "local_code": "2VA", + "keywords": "Formerly 7IA2" + }, + { + "id": "9825", + "ident": "2VA0", + "type": "small_airport", + "name": "Red Birds Airyard Airport", + "latitude_deg": "37.11307", + "longitude_deg": "-79.609417", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Moneta", + "scheduled_service": "no", + "gps_code": "2VA0", + "local_code": "2VA0" + }, + { + "id": "9826", + "ident": "2VA1", + "type": "small_airport", + "name": "Jett Airpark", + "latitude_deg": "37.895999908447266", + "longitude_deg": "-76.3552017211914", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Edwardsville", + "scheduled_service": "no", + "gps_code": "2VA1", + "local_code": "2VA1" + }, + { + "id": "9827", + "ident": "2VA2", + "type": "small_airport", + "name": "Melville Airstrip", + "latitude_deg": "37.145999908447266", + "longitude_deg": "-76.79000091552734", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Surry", + "scheduled_service": "no", + "gps_code": "2VA2", + "local_code": "2VA2" + }, + { + "id": "9828", + "ident": "2VA3", + "type": "small_airport", + "name": "Merlin Aerodrome", + "latitude_deg": "37.316693", + "longitude_deg": "-77.866373", + "elevation_ft": "235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Amelia Court House", + "scheduled_service": "no", + "gps_code": "2VA3", + "local_code": "2VA3" + }, + { + "id": "9829", + "ident": "2VA4", + "type": "heliport", + "name": "Winchester Medical Center Heliport", + "latitude_deg": "39.195407", + "longitude_deg": "-78.191999", + "elevation_ft": "831", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Winchester", + "scheduled_service": "no", + "gps_code": "2VA4", + "local_code": "2VA4" + }, + { + "id": "9830", + "ident": "2VA5", + "type": "small_airport", + "name": "Rosegill Farm Airstrip", + "latitude_deg": "37.630699157714844", + "longitude_deg": "-76.56500244140625", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Urbanna", + "scheduled_service": "no", + "gps_code": "2VA5", + "local_code": "2VA5" + }, + { + "id": "9831", + "ident": "2VA6", + "type": "small_airport", + "name": "Arrowhead Point Airport", + "latitude_deg": "37.62379837036133", + "longitude_deg": "-76.6010971069336", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Saluda", + "scheduled_service": "no", + "gps_code": "2VA6", + "local_code": "2VA6" + }, + { + "id": "9832", + "ident": "2VA7", + "type": "heliport", + "name": "Virginia Beach General Hospital Heliport", + "latitude_deg": "36.86629867553711", + "longitude_deg": "-76.02580261230469", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Virginia Beach", + "scheduled_service": "no", + "gps_code": "2VA7", + "local_code": "2VA7" + }, + { + "id": "9833", + "ident": "2VA8", + "type": "small_airport", + "name": "Brandywyne Farms Airport", + "latitude_deg": "36.686936", + "longitude_deg": "-76.823369", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Holland", + "scheduled_service": "no", + "gps_code": "2VA8", + "local_code": "2VA8" + }, + { + "id": "9834", + "ident": "2VA9", + "type": "small_airport", + "name": "Airlie Airport", + "latitude_deg": "38.75790023803711", + "longitude_deg": "-77.78720092773438", + "elevation_ft": "522", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Warrenton", + "scheduled_service": "no", + "gps_code": "2VA9", + "local_code": "2VA9" + }, + { + "id": "45520", + "ident": "2VE2", + "type": "heliport", + "name": "Spring Valley Hospital Heliport", + "latitude_deg": "36.091026", + "longitude_deg": "-115.239359", + "elevation_ft": "2375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "gps_code": "2VE2", + "local_code": "2VE2" + }, + { + "id": "9835", + "ident": "2VG2", + "type": "small_airport", + "name": "Upperville Airport", + "latitude_deg": "38.9718017578125", + "longitude_deg": "-77.86969757080078", + "elevation_ft": "551", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Upperville", + "scheduled_service": "no", + "gps_code": "2VG2", + "local_code": "2VG2" + }, + { + "id": "9836", + "ident": "2VG3", + "type": "small_airport", + "name": "Cub Haven Airport", + "latitude_deg": "38.54859924316406", + "longitude_deg": "-78.87110137939453", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Harrisonburg", + "scheduled_service": "no", + "gps_code": "2VG3", + "local_code": "2VG3" + }, + { + "id": "9837", + "ident": "2VG4", + "type": "heliport", + "name": "Deer Run Heliport", + "latitude_deg": "37.887699127197266", + "longitude_deg": "-78.86190032958984", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Nelson County", + "scheduled_service": "no", + "gps_code": "2VG4", + "local_code": "2VG4" + }, + { + "id": "9838", + "ident": "2VG5", + "type": "heliport", + "name": "Breeden Company Heliport", + "latitude_deg": "36.831298828125", + "longitude_deg": "-76.06600189208984", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Virginia Beach", + "scheduled_service": "no", + "gps_code": "2VG5", + "local_code": "2VG5" + }, + { + "id": "9839", + "ident": "2VG6", + "type": "heliport", + "name": "Rychlk Heliport", + "latitude_deg": "38.760799407958984", + "longitude_deg": "-77.62969970703125", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Manassas", + "scheduled_service": "no", + "gps_code": "2VG6", + "local_code": "2VG6" + }, + { + "id": "9840", + "ident": "2VG7", + "type": "small_airport", + "name": "Seven Gables Airport", + "latitude_deg": "38.16389846801758", + "longitude_deg": "-77.8499984741211", + "elevation_ft": "411", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Orange", + "scheduled_service": "no", + "gps_code": "2VG7", + "local_code": "2VG7" + }, + { + "id": "9841", + "ident": "2VG8", + "type": "small_airport", + "name": "Folly Neck Airport", + "latitude_deg": "37.870653", + "longitude_deg": "-76.73235", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Warsaw", + "scheduled_service": "no", + "gps_code": "2VG8", + "local_code": "2VG8" + }, + { + "id": "9842", + "ident": "2VG9", + "type": "heliport", + "name": "Sentara Williamsburg Regional Medical Center Heliport", + "latitude_deg": "37.33539962769999", + "longitude_deg": "-76.74069976810001", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Williamsburg", + "scheduled_service": "no", + "gps_code": "2VG9", + "local_code": "2VG9" + }, + { + "id": "325325", + "ident": "2VI2", + "type": "seaplane_base", + "name": "Redoubt View Seaplane Base", + "latitude_deg": "60.419038", + "longitude_deg": "-152.354894", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kenai", + "scheduled_service": "no", + "gps_code": "2VI2", + "local_code": "2VI2" + }, + { + "id": "9843", + "ident": "2VT2", + "type": "seaplane_base", + "name": "Northern Lights Seaplane Base", + "latitude_deg": "44.872798919677734", + "longitude_deg": "-73.28170013427734", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Alburg", + "scheduled_service": "no", + "gps_code": "2VT2", + "local_code": "2VT2" + }, + { + "id": "9844", + "ident": "2W1", + "type": "small_airport", + "name": "De Vere Field", + "latitude_deg": "47.1776008605957", + "longitude_deg": "-120.85299682617188", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Cle Elum", + "scheduled_service": "no", + "gps_code": "2W1", + "local_code": "2W1" + }, + { + "id": "9845", + "ident": "2W2", + "type": "small_airport", + "name": "Clearview Airpark", + "latitude_deg": "39.46699905395508", + "longitude_deg": "-77.01740264892578", + "elevation_ft": "799", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Westminster", + "scheduled_service": "no", + "gps_code": "2W2", + "local_code": "2W2" + }, + { + "id": "9846", + "ident": "2W3", + "type": "small_airport", + "name": "Swanson Airport", + "latitude_deg": "46.87160110473633", + "longitude_deg": "-122.25700378417969", + "elevation_ft": "843", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Eatonville", + "scheduled_service": "no", + "gps_code": "2W3", + "local_code": "2W3" + }, + { + "id": "9847", + "ident": "2WA0", + "type": "heliport", + "name": "Pcfd Nr 26 Heliport", + "latitude_deg": "47.144798278808594", + "longitude_deg": "-121.63600158691406", + "elevation_ft": "1780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Greenwater", + "scheduled_service": "no", + "gps_code": "2WA0", + "local_code": "2WA0" + }, + { + "id": "9848", + "ident": "2WA1", + "type": "small_airport", + "name": "Diamond Point Airstrip", + "latitude_deg": "48.09260177612305", + "longitude_deg": "-122.92900085449219", + "elevation_ft": "262", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Sequim", + "scheduled_service": "no", + "gps_code": "2WA1", + "local_code": "2WA1" + }, + { + "id": "9849", + "ident": "2WA2", + "type": "closed", + "name": "Quartermaster Harbor Seaplane Base", + "latitude_deg": "47.379398", + "longitude_deg": "-122.445851", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Dockton", + "scheduled_service": "no", + "keywords": "2WA2" + }, + { + "id": "9850", + "ident": "2WA3", + "type": "small_airport", + "name": "Stuart Island West Airport", + "latitude_deg": "48.68450164794922", + "longitude_deg": "-123.20999908447266", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Friday Harbor", + "scheduled_service": "no", + "gps_code": "2WA3", + "local_code": "2WA3" + }, + { + "id": "346238", + "ident": "2WA4", + "type": "heliport", + "name": "Bainbridge Island Fire Department Heliport", + "latitude_deg": "47.643276", + "longitude_deg": "-122.521505", + "elevation_ft": "184", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Bainbridge Island", + "scheduled_service": "no", + "gps_code": "2WA4", + "local_code": "2WA4" + }, + { + "id": "9851", + "ident": "2WA5", + "type": "heliport", + "name": "Coulee Medical Center Heliport", + "latitude_deg": "47.941898", + "longitude_deg": "-119.00713", + "elevation_ft": "1525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Grand Coulee", + "scheduled_service": "no", + "gps_code": "2WA5", + "local_code": "2WA5" + }, + { + "id": "9852", + "ident": "2WA6", + "type": "small_airport", + "name": "Rice Ranch Airport", + "latitude_deg": "47.998199462890625", + "longitude_deg": "-119.08899688720703", + "elevation_ft": "2434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Grand Coulee", + "scheduled_service": "no", + "gps_code": "2WA6", + "local_code": "2WA6" + }, + { + "id": "9853", + "ident": "2WA8", + "type": "small_airport", + "name": "Kramer Ranch Airport", + "latitude_deg": "47.38169860839844", + "longitude_deg": "-118.2969970703125", + "elevation_ft": "2181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Harrington", + "scheduled_service": "no", + "gps_code": "2WA8", + "local_code": "2WA8" + }, + { + "id": "9854", + "ident": "2WA9", + "type": "small_airport", + "name": "Touchet Valley Airport", + "latitude_deg": "46.28919982910156", + "longitude_deg": "-118.10099792480469", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Huntsville", + "scheduled_service": "no", + "gps_code": "2WA9", + "local_code": "2WA9" + }, + { + "id": "9855", + "ident": "2WI0", + "type": "small_airport", + "name": "Bender's Airport", + "latitude_deg": "44.852699279785156", + "longitude_deg": "-89.60009765625", + "elevation_ft": "1197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Rothschild", + "scheduled_service": "no", + "gps_code": "2WI0", + "local_code": "2WI0" + }, + { + "id": "9856", + "ident": "2WI1", + "type": "small_airport", + "name": "Uff-Da Airport", + "latitude_deg": "42.943599700927734", + "longitude_deg": "-89.2865982055664", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Stoughton", + "scheduled_service": "no", + "gps_code": "2WI1", + "local_code": "2WI1" + }, + { + "id": "9857", + "ident": "2WI2", + "type": "small_airport", + "name": "Shullsburg Airport", + "latitude_deg": "42.5569", + "longitude_deg": "-90.2276", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Shullsburg", + "scheduled_service": "no", + "keywords": "2WI2" + }, + { + "id": "9858", + "ident": "2WI3", + "type": "heliport", + "name": "Milwaukee County Medical Complex Heliport", + "latitude_deg": "43.041500091552734", + "longitude_deg": "-88.02310180664062", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wauwatosa", + "scheduled_service": "no", + "gps_code": "2WI3", + "local_code": "2WI3" + }, + { + "id": "9859", + "ident": "2WI4", + "type": "small_airport", + "name": "Plows & Props Airport", + "latitude_deg": "42.642799377441406", + "longitude_deg": "-88.39869689941406", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "2WI4", + "local_code": "2WI4" + }, + { + "id": "9860", + "ident": "2WI5", + "type": "small_airport", + "name": "Blair Lake Airport", + "latitude_deg": "46.0974006652832", + "longitude_deg": "-90.16320037841797", + "elevation_ft": "1625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Mercer", + "scheduled_service": "no", + "gps_code": "2WI5", + "local_code": "2WI5" + }, + { + "id": "9861", + "ident": "2WI6", + "type": "small_airport", + "name": "Matson Airport", + "latitude_deg": "42.91360092163086", + "longitude_deg": "-89.18620300292969", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Stoughton", + "scheduled_service": "no", + "gps_code": "2WI6", + "local_code": "2WI6" + }, + { + "id": "9862", + "ident": "2WI7", + "type": "small_airport", + "name": "Hecklers' Strip", + "latitude_deg": "42.96969985961914", + "longitude_deg": "-89.66539764404297", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "2WI7", + "local_code": "2WI7" + }, + { + "id": "9863", + "ident": "2WI8", + "type": "small_airport", + "name": "Davies Airport", + "latitude_deg": "43.59749984741211", + "longitude_deg": "-87.77899932861328", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Oostburg", + "scheduled_service": "no", + "gps_code": "2WI8", + "local_code": "2WI8" + }, + { + "id": "9864", + "ident": "2WI9", + "type": "small_airport", + "name": "Bulldog Ranch Airport", + "latitude_deg": "43.7599983215332", + "longitude_deg": "-89.63480377197266", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Oxford", + "scheduled_service": "no", + "gps_code": "2WI9", + "local_code": "2WI9" + }, + { + "id": "9865", + "ident": "2WN2", + "type": "closed", + "name": "Gaffney Airport", + "latitude_deg": "43.654202", + "longitude_deg": "-89.630302", + "elevation_ft": "827", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Briggsville", + "scheduled_service": "no", + "keywords": "2WN2" + }, + { + "id": "9866", + "ident": "2WN3", + "type": "small_airport", + "name": "Curns Airport", + "latitude_deg": "44.3578987121582", + "longitude_deg": "-88.76139831542969", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "New London", + "scheduled_service": "no", + "gps_code": "2WN3", + "local_code": "2WN3" + }, + { + "id": "9867", + "ident": "2WN4", + "type": "small_airport", + "name": "Mcfaul Airport", + "latitude_deg": "44.33940124511719", + "longitude_deg": "-88.78119659423828", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "New London", + "scheduled_service": "no", + "gps_code": "2WN4", + "local_code": "2WN4" + }, + { + "id": "9868", + "ident": "2WN5", + "type": "small_airport", + "name": "Murmuring Springs Airport", + "latitude_deg": "44.00640106201172", + "longitude_deg": "-90.01920318603516", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Necedah", + "scheduled_service": "no", + "gps_code": "2WN5", + "local_code": "2WN5" + }, + { + "id": "9869", + "ident": "2WN6", + "type": "small_airport", + "name": "Cunningham Airport", + "latitude_deg": "44.529701232910156", + "longitude_deg": "-90.41929626464844", + "elevation_ft": "1089", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Granton", + "scheduled_service": "no", + "gps_code": "2WN6", + "local_code": "2WN6" + }, + { + "id": "9870", + "ident": "2WN7", + "type": "small_airport", + "name": "Planeacres Airport", + "latitude_deg": "43.948699951171875", + "longitude_deg": "-88.67320251464844", + "elevation_ft": "844", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Fisk", + "scheduled_service": "no", + "gps_code": "2WN7", + "local_code": "2WN7" + }, + { + "id": "45927", + "ident": "2WN8", + "type": "small_airport", + "name": "Oshkosh Sky Ranch Airport", + "latitude_deg": "44.015228", + "longitude_deg": "-88.714269", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Omro", + "scheduled_service": "no", + "gps_code": "2WN8", + "local_code": "2WN8" + }, + { + "id": "9871", + "ident": "2WN9", + "type": "small_airport", + "name": "Hillcrest Airport", + "latitude_deg": "45.84510040283203", + "longitude_deg": "-120.70099639892578", + "elevation_ft": "2405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Goldendale", + "scheduled_service": "no", + "gps_code": "2WN9", + "local_code": "2WN9" + }, + { + "id": "45930", + "ident": "2WS2", + "type": "small_airport", + "name": "Connor's Lake Landing", + "latitude_deg": "45.91275", + "longitude_deg": "-92.293239", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Webster", + "scheduled_service": "no", + "gps_code": "2WS2", + "local_code": "2WS2" + }, + { + "id": "45921", + "ident": "2WS3", + "type": "small_airport", + "name": "C. R. Acres Airport", + "latitude_deg": "44.280792", + "longitude_deg": "-88.093577", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Greenleaf", + "scheduled_service": "no", + "gps_code": "2WS3", + "local_code": "2WS3" + }, + { + "id": "324703", + "ident": "2WS4", + "type": "heliport", + "name": "SSM Health St. Mary's Hospital-Jansville Heliport", + "latitude_deg": "42.6698694", + "longitude_deg": "-88.9763806", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Janesville", + "scheduled_service": "no", + "gps_code": "2WS4", + "local_code": "2WS4" + }, + { + "id": "9872", + "ident": "2WV2", + "type": "heliport", + "name": "Louis A. Johnson Va Medical Center Heliport", + "latitude_deg": "39.10240173339844", + "longitude_deg": "-80.36209869384766", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Clarksburg", + "scheduled_service": "no", + "gps_code": "2WV2", + "local_code": "2WV2" + }, + { + "id": "9873", + "ident": "2WV3", + "type": "small_airport", + "name": "Hales Landing Airport", + "latitude_deg": "39.11631", + "longitude_deg": "-81.392512", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Elizabeth", + "scheduled_service": "no", + "gps_code": "2WV3", + "local_code": "2WV3" + }, + { + "id": "9874", + "ident": "2WV5", + "type": "small_airport", + "name": "Willow Bend Airport", + "latitude_deg": "37.54669952392578", + "longitude_deg": "-80.51830291748047", + "elevation_ft": "2150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Union", + "scheduled_service": "no", + "gps_code": "2WV5", + "local_code": "2WV5" + }, + { + "id": "9875", + "ident": "2WV6", + "type": "heliport", + "name": "West Virginia State Police Heliport", + "latitude_deg": "40.0531005859375", + "longitude_deg": "-80.72470092773438", + "elevation_ft": "682", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Wheeling", + "scheduled_service": "no", + "gps_code": "2WV6", + "local_code": "2WV6" + }, + { + "id": "9876", + "ident": "2WY3", + "type": "small_airport", + "name": "Haas Airport", + "latitude_deg": "43.007198333740234", + "longitude_deg": "-110.31700134277344", + "elevation_ft": "7980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Merna", + "scheduled_service": "no", + "gps_code": "2WY3", + "local_code": "2WY3" + }, + { + "id": "9877", + "ident": "2WY4", + "type": "heliport", + "name": "Raco 1 Heliport", + "latitude_deg": "41.15810012817383", + "longitude_deg": "-104.44599914550781", + "elevation_ft": "5575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Burns", + "scheduled_service": "no", + "gps_code": "2WY4", + "local_code": "2WY4" + }, + { + "id": "9878", + "ident": "2WY8", + "type": "small_airport", + "name": "Bar Flying E Airport", + "latitude_deg": "44.40439987182617", + "longitude_deg": "-109.28199768066406", + "elevation_ft": "5550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Cody", + "scheduled_service": "no", + "gps_code": "2WY8", + "local_code": "2WY8" + }, + { + "id": "9879", + "ident": "2X2", + "type": "seaplane_base", + "name": "Willow Seaplane Base", + "latitude_deg": "61.74399948120117", + "longitude_deg": "-150.0590057373047", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Willow", + "scheduled_service": "no", + "gps_code": "2X2", + "local_code": "2X2" + }, + { + "id": "9880", + "ident": "2XA0", + "type": "small_airport", + "name": "Foard County Airport", + "latitude_deg": "33.9793014526", + "longitude_deg": "-99.7128982544", + "elevation_ft": "1479", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crowell", + "scheduled_service": "no", + "gps_code": "2XA0", + "local_code": "2XA0", + "keywords": "8F4" + }, + { + "id": "9881", + "ident": "2XA1", + "type": "small_airport", + "name": "Great Horizon Ranch Airport", + "latitude_deg": "28.140322", + "longitude_deg": "-98.935994", + "elevation_ft": "317", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cotulla", + "scheduled_service": "no", + "gps_code": "2XA1", + "local_code": "2XA1", + "keywords": "El Caballero Airport" + }, + { + "id": "9882", + "ident": "2XA2", + "type": "small_airport", + "name": "Knape Airport", + "latitude_deg": "29.220399856567383", + "longitude_deg": "-95.31089782714844", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Danbury", + "scheduled_service": "no", + "gps_code": "2XA2", + "local_code": "2XA2" + }, + { + "id": "9883", + "ident": "2XA3", + "type": "heliport", + "name": "North Cypress Medical Center Heliport", + "latitude_deg": "29.927545", + "longitude_deg": "-95.632832", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cypress", + "scheduled_service": "no", + "gps_code": "2XA3", + "local_code": "2XA3" + }, + { + "id": "9884", + "ident": "2XA4", + "type": "small_airport", + "name": "Flying S Ranch Airport", + "latitude_deg": "33.5807991027832", + "longitude_deg": "-96.80030059814453", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Collinsville", + "scheduled_service": "no", + "gps_code": "2XA4", + "local_code": "2XA4" + }, + { + "id": "9885", + "ident": "2XA5", + "type": "small_airport", + "name": "Someday Ranch Airport", + "latitude_deg": "29.803699493408203", + "longitude_deg": "-97.69120025634766", + "elevation_ft": "466", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lockhart", + "scheduled_service": "no", + "gps_code": "2XA5", + "local_code": "2XA5" + }, + { + "id": "9886", + "ident": "2XA6", + "type": "heliport", + "name": "Red Berry Heliport", + "latitude_deg": "29.43470001220703", + "longitude_deg": "-98.41780090332031", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "2XA6", + "local_code": "2XA6" + }, + { + "id": "9887", + "ident": "2XA7", + "type": "small_airport", + "name": "Tailwheel Airport", + "latitude_deg": "32.6150016784668", + "longitude_deg": "-94.7656021118164", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Longview", + "scheduled_service": "no", + "gps_code": "2XA7", + "local_code": "2XA7" + }, + { + "id": "45800", + "ident": "2XA8", + "type": "heliport", + "name": "Air Evac Lifeteam Base 53 Heliport", + "latitude_deg": "31.691578", + "longitude_deg": "-96.168664", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Teague", + "scheduled_service": "no", + "gps_code": "2XA8", + "local_code": "2XA8" + }, + { + "id": "45841", + "ident": "2XA9", + "type": "heliport", + "name": "Rolling Plains Memorial Hospital Heliport", + "latitude_deg": "32.452367", + "longitude_deg": "-100.397167", + "elevation_ft": "2180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sweetwater", + "scheduled_service": "no", + "gps_code": "2XA9", + "local_code": "2XA9" + }, + { + "id": "9888", + "ident": "2XS0", + "type": "heliport", + "name": "Valley Regional Medical Center Helipad", + "latitude_deg": "25.977828", + "longitude_deg": "-97.515956", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brownsville", + "scheduled_service": "no", + "gps_code": "2XS0", + "local_code": "2XS0", + "keywords": "Columbia Valley Regional Heliport" + }, + { + "id": "9889", + "ident": "2XS1", + "type": "small_airport", + "name": "Harris Ranch Airport", + "latitude_deg": "30.21969985961914", + "longitude_deg": "-98.30259704589844", + "elevation_ft": "1188", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Johnson City", + "scheduled_service": "no", + "gps_code": "2XS1", + "local_code": "2XS1" + }, + { + "id": "9890", + "ident": "2XS2", + "type": "small_airport", + "name": "Indio-Faith Airport", + "latitude_deg": "28.262800216699997", + "longitude_deg": "-100.162002563", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Carrizo Springs", + "scheduled_service": "no", + "gps_code": "2XS2", + "local_code": "2XS2" + }, + { + "id": "9891", + "ident": "2XS3", + "type": "small_airport", + "name": "Glad Oaks Airport", + "latitude_deg": "32.019836", + "longitude_deg": "-95.695035", + "elevation_ft": "487", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Palestine", + "scheduled_service": "no", + "gps_code": "2XS3", + "local_code": "2XS3" + }, + { + "id": "9892", + "ident": "2XS4", + "type": "small_airport", + "name": "Skida Patch Airport", + "latitude_deg": "33.661399841308594", + "longitude_deg": "-96.40640258789062", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bells", + "scheduled_service": "no", + "gps_code": "2XS4", + "local_code": "2XS4" + }, + { + "id": "9893", + "ident": "2XS5", + "type": "small_airport", + "name": "Cross Triangle Ranch Airport", + "latitude_deg": "30.0104999542", + "longitude_deg": "-98.4253005981", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Twin Sisters", + "scheduled_service": "no", + "gps_code": "2XS5", + "local_code": "2XS5" + }, + { + "id": "9894", + "ident": "2XS6", + "type": "small_airport", + "name": "Foster Ranch Airport", + "latitude_deg": "29.722533", + "longitude_deg": "-99.574673", + "elevation_ft": "1687", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Utopia", + "scheduled_service": "no", + "gps_code": "2XS6", + "local_code": "2XS6" + }, + { + "id": "9895", + "ident": "2XS7", + "type": "small_airport", + "name": "Annandale Ranch Airport", + "latitude_deg": "29.450199127197266", + "longitude_deg": "-99.68370056152344", + "elevation_ft": "1205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Uvalde", + "scheduled_service": "no", + "gps_code": "2XS7", + "local_code": "2XS7" + }, + { + "id": "9896", + "ident": "2XS8", + "type": "small_airport", + "name": "Benson Airstrip", + "latitude_deg": "29.229400634765625", + "longitude_deg": "-99.82389831542969", + "elevation_ft": "929", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Uvalde", + "scheduled_service": "no", + "gps_code": "2XS8", + "local_code": "2XS8" + }, + { + "id": "9897", + "ident": "2XS9", + "type": "heliport", + "name": "Uvalde County Hospital Authority Heliport", + "latitude_deg": "29.214099884033203", + "longitude_deg": "-99.7677993774414", + "elevation_ft": "917", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Uvalde", + "scheduled_service": "no", + "gps_code": "2XS9", + "local_code": "2XS9" + }, + { + "id": "9898", + "ident": "2Y0", + "type": "closed", + "name": "Primghar Airport", + "latitude_deg": "43.077999", + "longitude_deg": "-95.614304", + "elevation_ft": "1481", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Primghar", + "scheduled_service": "no", + "local_code": "2Y0" + }, + { + "id": "9899", + "ident": "2Y1", + "type": "small_airport", + "name": "Drake Airport", + "latitude_deg": "42.31669998168945", + "longitude_deg": "-93.41690063476562", + "elevation_ft": "1179", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Radcliffe", + "scheduled_service": "no", + "gps_code": "2Y1", + "local_code": "2Y1" + }, + { + "id": "9900", + "ident": "2Y2", + "type": "closed", + "name": "Hawarden Municipal Airport", + "latitude_deg": "43.0369", + "longitude_deg": "-96.493102", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Hawarden", + "scheduled_service": "no", + "keywords": "2Y2" + }, + { + "id": "9901", + "ident": "2Y3", + "type": "seaplane_base", + "name": "Yakutat Seaplane Base", + "latitude_deg": "59.5625", + "longitude_deg": "-139.74099731445312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Yakutat", + "scheduled_service": "no", + "gps_code": "2Y3", + "local_code": "2Y3" + }, + { + "id": "9902", + "ident": "2Z1", + "type": "seaplane_base", + "name": "Entrance Island Seaplane Base", + "latitude_deg": "57.412201", + "longitude_deg": "-133.43848", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Entrance Island", + "scheduled_service": "no", + "iata_code": "HBH", + "keywords": "2Z1" + }, + { + "id": "9903", + "ident": "2Z2", + "type": "small_airport", + "name": "Eureka Creek Airport", + "latitude_deg": "65.1759033203125", + "longitude_deg": "-150.2209930419922", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Eureka Creek", + "scheduled_service": "no", + "gps_code": "2Z2", + "local_code": "2Z2" + }, + { + "id": "9904", + "ident": "2Z3", + "type": "small_airport", + "name": "Eva Creek Airport", + "latitude_deg": "64.04199981689453", + "longitude_deg": "-148.86300659179688", + "elevation_ft": "2817", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Eva Creek", + "scheduled_service": "no", + "gps_code": "2Z3", + "local_code": "2Z3" + }, + { + "id": "9905", + "ident": "2Z5", + "type": "seaplane_base", + "name": "Chena River Seaplane Base", + "latitude_deg": "64.83290100097656", + "longitude_deg": "-147.84800720214844", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fairbanks", + "scheduled_service": "no", + "gps_code": "2Z5", + "local_code": "2Z5" + }, + { + "id": "9906", + "ident": "2Z6", + "type": "seaplane_base", + "name": "False Island Seaplane Base", + "latitude_deg": "57.5321998596", + "longitude_deg": "-135.212997437", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "False Island", + "scheduled_service": "no", + "gps_code": "2Z6", + "iata_code": "FAK", + "local_code": "2Z6" + }, + { + "id": "9907", + "ident": "30AK", + "type": "small_airport", + "name": "Doyle Estates Airport", + "latitude_deg": "60.505807", + "longitude_deg": "-151.260023", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kenai", + "scheduled_service": "no", + "gps_code": "30AK", + "local_code": "30AK" + }, + { + "id": "323163", + "ident": "30AL", + "type": "heliport", + "name": "Med Flight 2 Heliport", + "latitude_deg": "34.373001", + "longitude_deg": "-87.0805", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "30AL", + "local_code": "30AL" + }, + { + "id": "9908", + "ident": "30AR", + "type": "small_airport", + "name": "Phalanx Airport", + "latitude_deg": "35.54436111", + "longitude_deg": "-92.0561676", + "elevation_ft": "584", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Greers Ferry", + "scheduled_service": "no", + "gps_code": "30AR", + "local_code": "30AR" + }, + { + "id": "9909", + "ident": "30AZ", + "type": "closed", + "name": "Gila Compressor Station Airport", + "latitude_deg": "33.25", + "longitude_deg": "-112.813004", + "elevation_ft": "838", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "30AZ", + "local_code": "30AZ" + }, + { + "id": "9910", + "ident": "30CA", + "type": "heliport", + "name": "Indian Valley Hospital Heliport", + "latitude_deg": "40.141201", + "longitude_deg": "-120.937226", + "elevation_ft": "3482", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "30CA", + "local_code": "30CA" + }, + { + "id": "9911", + "ident": "30CL", + "type": "heliport", + "name": "Long Beach Memorial Medical Center Heliport", + "latitude_deg": "33.808741", + "longitude_deg": "-118.186728", + "elevation_ft": "84", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no", + "gps_code": "30CL", + "local_code": "30CL" + }, + { + "id": "9912", + "ident": "30CO", + "type": "small_airport", + "name": "Coyote Creek Ranch Airport", + "latitude_deg": "38.67250061035156", + "longitude_deg": "-105.33599853515625", + "elevation_ft": "8030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Guffey", + "scheduled_service": "no", + "gps_code": "30CO", + "local_code": "30CO" + }, + { + "id": "9913", + "ident": "30F", + "type": "small_airport", + "name": "Lakeview Airport", + "latitude_deg": "33.13209915161133", + "longitude_deg": "-97.01419830322266", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lake Dallas", + "scheduled_service": "no", + "gps_code": "30F", + "local_code": "30F" + }, + { + "id": "9914", + "ident": "30FA", + "type": "heliport", + "name": "Florida Hospital Lake Placid Heliport", + "latitude_deg": "27.320499420166016", + "longitude_deg": "-81.37049865722656", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Placid", + "scheduled_service": "no", + "gps_code": "30FA", + "local_code": "30FA" + }, + { + "id": "9915", + "ident": "30FD", + "type": "heliport", + "name": "City of Fort Lauderdale Heliport", + "latitude_deg": "26.124000549316406", + "longitude_deg": "-80.14420318603516", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Lauderdale", + "scheduled_service": "no", + "gps_code": "30FD", + "local_code": "30FD" + }, + { + "id": "9916", + "ident": "30FL", + "type": "heliport", + "name": "Putnam Community Medical Center Heliport", + "latitude_deg": "29.643512", + "longitude_deg": "-81.692906", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Palatka", + "scheduled_service": "no", + "gps_code": "30FL", + "local_code": "30FL", + "keywords": "Columbia Putnam Community Hospital Heliport" + }, + { + "id": "9917", + "ident": "30GA", + "type": "small_airport", + "name": "Elliott Field", + "latitude_deg": "34.459", + "longitude_deg": "-84.181297", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Dawsonville", + "scheduled_service": "no", + "gps_code": "09GE", + "local_code": "09GE", + "keywords": "5GA, 30GA" + }, + { + "id": "45386", + "ident": "30ID", + "type": "closed", + "name": "Mason Airport", + "latitude_deg": "42.431759", + "longitude_deg": "-114.164775", + "elevation_ft": "4210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Murtaugh", + "scheduled_service": "no", + "keywords": "30ID" + }, + { + "id": "9918", + "ident": "30II", + "type": "closed", + "name": "Reid Hospital Heliport", + "latitude_deg": "39.845473", + "longitude_deg": "-84.885525", + "elevation_ft": "953", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Richmond", + "scheduled_service": "no", + "keywords": "30II" + }, + { + "id": "9919", + "ident": "30IL", + "type": "heliport", + "name": "Clay County Hospital Heliport", + "latitude_deg": "38.67940139770508", + "longitude_deg": "-88.47250366210938", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Flora", + "scheduled_service": "no", + "gps_code": "30IL", + "local_code": "30IL" + }, + { + "id": "9920", + "ident": "30IN", + "type": "small_airport", + "name": "Wigent Airport", + "latitude_deg": "41.20920181274414", + "longitude_deg": "-85.45800018310547", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Columbia City", + "scheduled_service": "no", + "gps_code": "30IN", + "local_code": "30IN" + }, + { + "id": "9921", + "ident": "30IS", + "type": "small_airport", + "name": "Aero Lake Estates Airport", + "latitude_deg": "42.077383", + "longitude_deg": "-88.625372", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Genoa", + "scheduled_service": "no", + "gps_code": "30IS", + "local_code": "30IS" + }, + { + "id": "9922", + "ident": "30KS", + "type": "closed", + "name": "Tyler Airport", + "latitude_deg": "37.132301", + "longitude_deg": "-97.073402", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Arkansas City", + "scheduled_service": "no", + "keywords": "30KS" + }, + { + "id": "9923", + "ident": "30KY", + "type": "heliport", + "name": "Wayne County Hospital Heliport", + "latitude_deg": "36.81949996948242", + "longitude_deg": "-84.86740112304688", + "elevation_ft": "923", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Monticello", + "scheduled_service": "no", + "gps_code": "30KY", + "local_code": "30KY" + }, + { + "id": "9924", + "ident": "30LA", + "type": "seaplane_base", + "name": "Venice Base Heliport & Seaplane Base", + "latitude_deg": "29.271099090576172", + "longitude_deg": "-89.35579681396484", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no", + "gps_code": "30LA", + "local_code": "30LA" + }, + { + "id": "9925", + "ident": "30LL", + "type": "small_airport", + "name": "Williams Airpark", + "latitude_deg": "39.75419998168945", + "longitude_deg": "-90.36540222167969", + "elevation_ft": "614", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chapin", + "scheduled_service": "no", + "gps_code": "30LL", + "local_code": "30LL" + }, + { + "id": "9926", + "ident": "30LS", + "type": "heliport", + "name": "Rotorcraft Heliport", + "latitude_deg": "30.15239906311035", + "longitude_deg": "-91.95069885253906", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Broussard", + "scheduled_service": "no", + "gps_code": "30LS", + "local_code": "30LS" + }, + { + "id": "9927", + "ident": "30M", + "type": "small_airport", + "name": "Ralph M Sharpe Airport", + "latitude_deg": "34.6589", + "longitude_deg": "-90.3763", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Tunica", + "scheduled_service": "no", + "gps_code": "30M", + "local_code": "30M", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ralph_M._Sharpe_Airport" + }, + { + "id": "9928", + "ident": "30MA", + "type": "heliport", + "name": "Clinton Hospital Heliport", + "latitude_deg": "42.42789840698242", + "longitude_deg": "-71.69280242919922", + "elevation_ft": "368", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "30MA", + "local_code": "30MA" + }, + { + "id": "9929", + "ident": "30MI", + "type": "small_airport", + "name": "Wolverton's Field", + "latitude_deg": "41.859142", + "longitude_deg": "-86.327219", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Buchanan", + "scheduled_service": "no", + "gps_code": "30MI", + "local_code": "30MI" + }, + { + "id": "46289", + "ident": "30MN", + "type": "heliport", + "name": "Mayo Clinic Health System - Albert Lea Heliport", + "latitude_deg": "43.652697", + "longitude_deg": "-93.371564", + "elevation_ft": "1253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Albert Lea", + "scheduled_service": "no", + "gps_code": "30MN", + "local_code": "30MN" + }, + { + "id": "9930", + "ident": "30MO", + "type": "small_airport", + "name": "Matzie Airport", + "latitude_deg": "37.64590072631836", + "longitude_deg": "-92.49459838867188", + "elevation_ft": "1129", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "30MO", + "local_code": "30MO" + }, + { + "id": "349880", + "ident": "30MT", + "type": "small_airport", + "name": "Nistler Helena Airport", + "latitude_deg": "46.571072", + "longitude_deg": "-112.237895", + "elevation_ft": "4753", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Helena", + "scheduled_service": "no", + "gps_code": "30MT", + "local_code": "30MT" + }, + { + "id": "9931", + "ident": "30NC", + "type": "small_airport", + "name": "Happy Bottom Airport", + "latitude_deg": "36.04859924316406", + "longitude_deg": "-80.45690155029297", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Advance", + "scheduled_service": "no", + "gps_code": "30NC", + "local_code": "30NC" + }, + { + "id": "9932", + "ident": "30NE", + "type": "small_airport", + "name": "Nebraskaland Aviation Airport", + "latitude_deg": "40.355803", + "longitude_deg": "-98.685817", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Campbell", + "scheduled_service": "no", + "gps_code": "30NE", + "local_code": "30NE", + "keywords": "Rs Ag-Land Airport" + }, + { + "id": "9933", + "ident": "30NJ", + "type": "heliport", + "name": "Hillside Farm Heliport", + "latitude_deg": "40.39229965209961", + "longitude_deg": "-74.77909851074219", + "elevation_ft": "382", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Hopewell", + "scheduled_service": "no", + "gps_code": "30NJ", + "local_code": "30NJ" + }, + { + "id": "45538", + "ident": "30NM", + "type": "heliport", + "name": "Crusader Heliport", + "latitude_deg": "36.116389", + "longitude_deg": "-103.096667", + "elevation_ft": "4536", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Sedan", + "scheduled_service": "no", + "gps_code": "30NM", + "local_code": "30NM" + }, + { + "id": "324805", + "ident": "30NR", + "type": "heliport", + "name": "Bladen Lakes State Forest Tactical Landing Zone Heliport", + "latitude_deg": "34.709583", + "longitude_deg": "-78.571137", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Elizabethtown", + "scheduled_service": "no", + "gps_code": "30NR", + "local_code": "30NR" + }, + { + "id": "9934", + "ident": "30NY", + "type": "small_airport", + "name": "Coye Field", + "latitude_deg": "42.750099182128906", + "longitude_deg": "-77.55809783935547", + "elevation_ft": "1610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Canadice", + "scheduled_service": "no", + "gps_code": "30NY", + "local_code": "30NY" + }, + { + "id": "9935", + "ident": "30OH", + "type": "heliport", + "name": "Bahl Helistop", + "latitude_deg": "40.75699996948242", + "longitude_deg": "-82.55020141601562", + "elevation_ft": "1345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mansfield", + "scheduled_service": "no", + "gps_code": "30OH", + "local_code": "30OH" + }, + { + "id": "9936", + "ident": "30OK", + "type": "closed", + "name": "Lobo Field", + "latitude_deg": "34.916801", + "longitude_deg": "-96.233598", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Calvin", + "scheduled_service": "no", + "keywords": "30OK" + }, + { + "id": "9937", + "ident": "30OR", + "type": "small_airport", + "name": "Bero Field", + "latitude_deg": "45.802601", + "longitude_deg": "-123.279999", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Vernonia", + "scheduled_service": "no", + "gps_code": "30OR", + "local_code": "30OR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bero_Field" + }, + { + "id": "9938", + "ident": "30PA", + "type": "closed", + "name": "Kings Airport", + "latitude_deg": "40.265741", + "longitude_deg": "-75.437837", + "elevation_ft": "290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Schwenksville", + "scheduled_service": "no", + "keywords": "30PA" + }, + { + "id": "45762", + "ident": "30PN", + "type": "heliport", + "name": "Pittsburgh Children'S Hospital Heliport", + "latitude_deg": "40.466389", + "longitude_deg": "-79.953056", + "elevation_ft": "1098", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pittsburgh", + "scheduled_service": "no", + "gps_code": "30PN", + "local_code": "30PN" + }, + { + "id": "338550", + "ident": "30SD", + "type": "small_airport", + "name": "Barber Field", + "latitude_deg": "45.504811", + "longitude_deg": "-98.595539", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Aberdeen", + "scheduled_service": "no", + "gps_code": "30SD", + "local_code": "30SD" + }, + { + "id": "9939", + "ident": "30TA", + "type": "small_airport", + "name": "Tri-Modal Air Park", + "latitude_deg": "30.591899871826172", + "longitude_deg": "-97.72250366210938", + "elevation_ft": "812", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Georgetown", + "scheduled_service": "no", + "gps_code": "30TA", + "local_code": "30TA" + }, + { + "id": "9940", + "ident": "30TE", + "type": "small_airport", + "name": "Cone Airport", + "latitude_deg": "33.811199", + "longitude_deg": "-101.396003", + "elevation_ft": "3144", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lorenzo", + "scheduled_service": "no", + "gps_code": "30TE", + "local_code": "30TE", + "keywords": "3F1" + }, + { + "id": "352629", + "ident": "30TN", + "type": "heliport", + "name": "Tristar Skyline Medical Center Heliport", + "latitude_deg": "36.24625", + "longitude_deg": "-86.749957", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Nashville", + "scheduled_service": "no", + "gps_code": "30TN", + "local_code": "30TN" + }, + { + "id": "9941", + "ident": "30TS", + "type": "closed", + "name": "Hall Airport", + "latitude_deg": "32.829653", + "longitude_deg": "-94.71743", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ore City", + "scheduled_service": "no", + "keywords": "30TS" + }, + { + "id": "9942", + "ident": "30TX", + "type": "small_airport", + "name": "Burg Lake Aero Airport", + "latitude_deg": "30.2323611", + "longitude_deg": "-98.6549722", + "elevation_ft": "1463", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Stonewall", + "scheduled_service": "yes", + "gps_code": "30TX", + "local_code": "30TX", + "home_link": "http://www.burgaero.com/" + }, + { + "id": "9943", + "ident": "30VA", + "type": "heliport", + "name": "Clinch Valley Medical Center Heliport", + "latitude_deg": "37.094600677490234", + "longitude_deg": "-81.82099914550781", + "elevation_ft": "1965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richlands", + "scheduled_service": "no", + "gps_code": "30VA", + "local_code": "30VA" + }, + { + "id": "9944", + "ident": "30W", + "type": "seaplane_base", + "name": "Sweetwater Bay Seaplane Base", + "latitude_deg": "44.951900482177734", + "longitude_deg": "-87.80840301513672", + "elevation_ft": "579", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Oconto", + "scheduled_service": "no", + "gps_code": "30W", + "local_code": "30W" + }, + { + "id": "9945", + "ident": "30WA", + "type": "small_airport", + "name": "Weller Canyon Airport", + "latitude_deg": "46.31489944458008", + "longitude_deg": "-118.1780014038086", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Waitsburg", + "scheduled_service": "no", + "gps_code": "30WA", + "local_code": "30WA" + }, + { + "id": "9946", + "ident": "30WI", + "type": "small_airport", + "name": "Chambers Island Airport", + "latitude_deg": "45.191898345947266", + "longitude_deg": "-87.35929870605469", + "elevation_ft": "588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Chambers Island", + "scheduled_service": "no", + "gps_code": "30WI", + "local_code": "30WI" + }, + { + "id": "46290", + "ident": "30XA", + "type": "heliport", + "name": "Baylor Scott & White Aubrey Medical Center Heliport", + "latitude_deg": "33.220623", + "longitude_deg": "-96.912943", + "elevation_ft": "594", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Aubrey", + "scheduled_service": "no", + "gps_code": "30XA", + "local_code": "30XA", + "keywords": "Emergency Room At Magnolia Heliport" + }, + { + "id": "9947", + "ident": "30XS", + "type": "closed", + "name": "Farwell Spraying Service Inc Airport", + "latitude_deg": "34.382301", + "longitude_deg": "-103.017998", + "elevation_ft": "4115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Farwell", + "scheduled_service": "no", + "keywords": "30X" + }, + { + "id": "9948", + "ident": "31A", + "type": "small_airport", + "name": "Sugar Valley Airport", + "latitude_deg": "35.984352", + "longitude_deg": "-80.511595", + "elevation_ft": "731", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Mocksville", + "scheduled_service": "no", + "gps_code": "5NC2", + "local_code": "5NC2", + "keywords": "31A, K31A" + }, + { + "id": "9949", + "ident": "31AK", + "type": "small_airport", + "name": "Dalrymple's Airport", + "latitude_deg": "64.83453", + "longitude_deg": "-147.437024", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fairbanks", + "scheduled_service": "no", + "gps_code": "31AK", + "local_code": "31AK" + }, + { + "id": "354620", + "ident": "31AL", + "type": "heliport", + "name": "Old Chipley Helo Heliport", + "latitude_deg": "31.078289", + "longitude_deg": "-85.537789", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Slocomb", + "scheduled_service": "no", + "gps_code": "31AL", + "local_code": "31AL" + }, + { + "id": "9950", + "ident": "31AR", + "type": "heliport", + "name": "Van Buren County Memorial Hospital Heliport", + "latitude_deg": "35.57590103149414", + "longitude_deg": "-92.45349884033203", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "31AR", + "local_code": "31AR" + }, + { + "id": "9951", + "ident": "31AZ", + "type": "closed", + "name": "Benson Airport", + "latitude_deg": "31.963699", + "longitude_deg": "-110.260002", + "elevation_ft": "3628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Benson", + "scheduled_service": "no", + "gps_code": "31AZ", + "local_code": "31AZ", + "keywords": "benson, 31az" + }, + { + "id": "9952", + "ident": "31CA", + "type": "heliport", + "name": "Baldwin Base Heliport", + "latitude_deg": "33.69390106201172", + "longitude_deg": "-117.83200073242188", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Irvine", + "scheduled_service": "no", + "gps_code": "31CA", + "local_code": "31CA" + }, + { + "id": "345289", + "ident": "31CD", + "type": "small_airport", + "name": "Diamond Star Ranch Airport", + "latitude_deg": "37.870856", + "longitude_deg": "-104.789057", + "elevation_ft": "6010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Colorado City", + "scheduled_service": "no", + "gps_code": "31CD", + "local_code": "31CD" + }, + { + "id": "9953", + "ident": "31CL", + "type": "heliport", + "name": "Presbyterian Intercommunity Hospital Whittier Heliport", + "latitude_deg": "33.971497", + "longitude_deg": "-118.049622", + "elevation_ft": "196", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Whittier", + "scheduled_service": "no", + "gps_code": "31CL", + "local_code": "31CL" + }, + { + "id": "9954", + "ident": "31CO", + "type": "heliport", + "name": "Montrose Memorial Hospital Heliport", + "latitude_deg": "38.480499267578125", + "longitude_deg": "-107.86900329589844", + "elevation_ft": "5812", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Montrose", + "scheduled_service": "no", + "gps_code": "31CO", + "local_code": "31CO" + }, + { + "id": "45338", + "ident": "31CT", + "type": "heliport", + "name": "Quiet Corner Heliport", + "latitude_deg": "41.854767", + "longitude_deg": "-71.928483", + "elevation_ft": "268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Pomfret", + "scheduled_service": "no", + "gps_code": "31CT", + "local_code": "31CT" + }, + { + "id": "9955", + "ident": "31D", + "type": "small_airport", + "name": "Inter County Airport", + "latitude_deg": "40.331203", + "longitude_deg": "-79.780204", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Irwin", + "scheduled_service": "no", + "gps_code": "K31D", + "local_code": "31D" + }, + { + "id": "9956", + "ident": "31FA", + "type": "small_airport", + "name": "S & S Avion Ranch Airport", + "latitude_deg": "28.959199905395508", + "longitude_deg": "-82.13420104980469", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Oxford", + "scheduled_service": "no", + "gps_code": "31FA", + "local_code": "31FA" + }, + { + "id": "9957", + "ident": "31FD", + "type": "heliport", + "name": "Florida State Hospital Heliport", + "latitude_deg": "30.706300735473633", + "longitude_deg": "-84.84239959716797", + "elevation_ft": "235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Chattahoochee", + "scheduled_service": "no", + "gps_code": "31FD", + "local_code": "31FD" + }, + { + "id": "9958", + "ident": "31FL", + "type": "small_airport", + "name": "Forever Florida Airport", + "latitude_deg": "28.043352", + "longitude_deg": "-81.01923", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St Cloud", + "scheduled_service": "no", + "gps_code": "31FL", + "local_code": "31FL", + "keywords": "Tedford Ranch Airport" + }, + { + "id": "9959", + "ident": "31GA", + "type": "heliport", + "name": "WGCL-TV Heliport", + "latitude_deg": "33.787341", + "longitude_deg": "-84.401055", + "elevation_ft": "939", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "31GA", + "local_code": "31GA" + }, + { + "id": "9960", + "ident": "31II", + "type": "closed", + "name": "Rising Sun Airport", + "latitude_deg": "38.9259", + "longitude_deg": "-84.911903", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Rising Sun", + "scheduled_service": "no", + "keywords": "31II" + }, + { + "id": "9961", + "ident": "31IL", + "type": "heliport", + "name": "Tamms Correctional Center Heliport", + "latitude_deg": "37.25279998779297", + "longitude_deg": "-89.28060150146484", + "elevation_ft": "346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Tamms", + "scheduled_service": "no", + "gps_code": "31IL", + "local_code": "31IL" + }, + { + "id": "9962", + "ident": "31IN", + "type": "small_airport", + "name": "Timber House Airport", + "latitude_deg": "40.28499984741211", + "longitude_deg": "-86.85639953613281", + "elevation_ft": "726", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "31IN", + "local_code": "31IN" + }, + { + "id": "9963", + "ident": "31IS", + "type": "heliport", + "name": "Mason District Hospital Heliport", + "latitude_deg": "40.30780029", + "longitude_deg": "-90.05460358", + "elevation_ft": "479", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Havana", + "scheduled_service": "no", + "gps_code": "31IS", + "local_code": "31IS" + }, + { + "id": "9964", + "ident": "31KS", + "type": "small_airport", + "name": "Mills Field", + "latitude_deg": "37.99580001831055", + "longitude_deg": "-97.92949676513672", + "elevation_ft": "1520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "South Hutchinson", + "scheduled_service": "no", + "gps_code": "31KS", + "local_code": "31KS" + }, + { + "id": "9965", + "ident": "31KY", + "type": "small_airport", + "name": "Wild Blue Airport", + "latitude_deg": "38.110599517822266", + "longitude_deg": "-84.32219696044922", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "31KY", + "local_code": "31KY" + }, + { + "id": "9966", + "ident": "31LA", + "type": "heliport", + "name": "Iota Volunteer Fire Department Heliport", + "latitude_deg": "30.329583", + "longitude_deg": "-92.497022", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Iota", + "scheduled_service": "no", + "gps_code": "31LA", + "local_code": "31LA" + }, + { + "id": "9967", + "ident": "31LL", + "type": "closed", + "name": "Seeman Airport", + "latitude_deg": "40.778599", + "longitude_deg": "-88.666199", + "elevation_ft": "689", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chenoa", + "scheduled_service": "no", + "keywords": "31LL" + }, + { + "id": "9968", + "ident": "31LS", + "type": "heliport", + "name": "Helicopter Management Heliport", + "latitude_deg": "30.03420066833496", + "longitude_deg": "-91.86430358886719", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Iberia", + "scheduled_service": "no", + "gps_code": "31LS", + "local_code": "31LS" + }, + { + "id": "9969", + "ident": "31MA", + "type": "small_airport", + "name": "Norm's Field", + "latitude_deg": "42.26242", + "longitude_deg": "-72.409308", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Belchertown", + "scheduled_service": "no", + "gps_code": "31MA", + "local_code": "31MA" + }, + { + "id": "324421", + "ident": "31MD", + "type": "heliport", + "name": "AGH Heliport", + "latitude_deg": "38.340216", + "longitude_deg": "-75.210544", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Berlin", + "scheduled_service": "no", + "gps_code": "31MD", + "local_code": "31MD" + }, + { + "id": "9970", + "ident": "31MI", + "type": "closed", + "name": "Rentz Ultralight Airport", + "latitude_deg": "41.7798", + "longitude_deg": "-86.1772", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Niles", + "scheduled_service": "no", + "keywords": "31MI, Rentz Ultralightport" + }, + { + "id": "9971", + "ident": "31MN", + "type": "closed", + "name": "Peterson Seaplane Base", + "latitude_deg": "45", + "longitude_deg": "-93.419674", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Minneapolis", + "scheduled_service": "no", + "keywords": "31MN" + }, + { + "id": "9972", + "ident": "31MO", + "type": "small_airport", + "name": "Hannah Airport", + "latitude_deg": "40.105499267578125", + "longitude_deg": "-94.74330139160156", + "elevation_ft": "937", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Bolckow", + "scheduled_service": "no", + "gps_code": "31MO", + "local_code": "31MO" + }, + { + "id": "328147", + "ident": "31MT", + "type": "small_airport", + "name": "Reverse 5 Bar M Airport", + "latitude_deg": "47.236454", + "longitude_deg": "-111.302315", + "elevation_ft": "4260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Great Falls", + "scheduled_service": "no", + "gps_code": "31MT", + "local_code": "31MT" + }, + { + "id": "9973", + "ident": "31NC", + "type": "heliport", + "name": "NH HMC Heliport", + "latitude_deg": "35.406792", + "longitude_deg": "-80.859071", + "elevation_ft": "753", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Huntersville", + "scheduled_service": "no", + "gps_code": "31NC", + "local_code": "31NC", + "keywords": "Presbyterian Hospital Huntersville Heliport" + }, + { + "id": "9974", + "ident": "31NE", + "type": "small_airport", + "name": "Grimm Farm Airport", + "latitude_deg": "42.755001068115234", + "longitude_deg": "-97.7051010131836", + "elevation_ft": "1670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Crofton", + "scheduled_service": "no", + "gps_code": "31NE", + "local_code": "31NE" + }, + { + "id": "324599", + "ident": "31NH", + "type": "heliport", + "name": "Johnson's Heliport", + "latitude_deg": "43.223588", + "longitude_deg": "-71.25072", + "elevation_ft": "562", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Northwood", + "scheduled_service": "no", + "gps_code": "31NH", + "local_code": "31NH" + }, + { + "id": "9975", + "ident": "31NJ", + "type": "closed", + "name": "Atlantic City Medical Center-Mainland Division Heliport", + "latitude_deg": "39.479301", + "longitude_deg": "-74.539299", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Pomona", + "scheduled_service": "no", + "keywords": "31NJ" + }, + { + "id": "9976", + "ident": "31NY", + "type": "closed", + "name": "Troop E Heliport", + "latitude_deg": "42.958401", + "longitude_deg": "-77.337196", + "elevation_ft": "677", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Canandaigua", + "scheduled_service": "no", + "keywords": "31NY" + }, + { + "id": "9977", + "ident": "31OH", + "type": "heliport", + "name": "Au Heliport", + "latitude_deg": "40.773101806640625", + "longitude_deg": "-82.56269836425781", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mansfield", + "scheduled_service": "no", + "gps_code": "31OH", + "local_code": "31OH" + }, + { + "id": "9978", + "ident": "31OK", + "type": "heliport", + "name": "Siegfried Point Heliport", + "latitude_deg": "36.48649978637695", + "longitude_deg": "-94.99079895019531", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Disney", + "scheduled_service": "no", + "gps_code": "31OK", + "local_code": "31OK" + }, + { + "id": "9979", + "ident": "31OR", + "type": "heliport", + "name": "Heli-Jet Heliport", + "latitude_deg": "44.06209945678711", + "longitude_deg": "-123.1449966430664", + "elevation_ft": "397", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Eugene", + "scheduled_service": "no", + "gps_code": "31OR", + "local_code": "31OR" + }, + { + "id": "9980", + "ident": "31PA", + "type": "heliport", + "name": "Foxcatcher Farm Heliport", + "latitude_deg": "39.99789810180664", + "longitude_deg": "-75.41519927978516", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Newtown Square", + "scheduled_service": "no", + "gps_code": "31PA", + "local_code": "31PA" + }, + { + "id": "45742", + "ident": "31PN", + "type": "heliport", + "name": "Control Dynamics Heliport", + "latitude_deg": "40.209167", + "longitude_deg": "-75.081389", + "elevation_ft": "282", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Warminster", + "scheduled_service": "no", + "gps_code": "31PN", + "local_code": "31PN" + }, + { + "id": "9981", + "ident": "31TA", + "type": "closed", + "name": "Vitek Field", + "latitude_deg": "30.726713", + "longitude_deg": "-97.421275", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Granger", + "scheduled_service": "no", + "keywords": "31TA" + }, + { + "id": "9982", + "ident": "31TE", + "type": "heliport", + "name": "Tenneco Lab Helistop", + "latitude_deg": "29.722999572753906", + "longitude_deg": "-95.47109985351562", + "elevation_ft": "58", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "31TE", + "local_code": "31TE" + }, + { + "id": "322232", + "ident": "31TN", + "type": "heliport", + "name": "Crockett Hospital Heliport", + "latitude_deg": "35.222925", + "longitude_deg": "-87.336958", + "elevation_ft": "922", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lawrenceburg", + "scheduled_service": "no", + "gps_code": "31TN", + "local_code": "31TN" + }, + { + "id": "9983", + "ident": "31TS", + "type": "small_airport", + "name": "Flyers Field", + "latitude_deg": "33.190399169921875", + "longitude_deg": "-96.18910217285156", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "31TS", + "local_code": "31TS" + }, + { + "id": "9984", + "ident": "31TX", + "type": "small_airport", + "name": "Scott Airport", + "latitude_deg": "31.596799850463867", + "longitude_deg": "-97.33000183105469", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no", + "gps_code": "31TX", + "local_code": "31TX" + }, + { + "id": "9985", + "ident": "31VA", + "type": "small_airport", + "name": "Aberdeen Field", + "latitude_deg": "37.023799896240234", + "longitude_deg": "-76.5886001586914", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Smithfield", + "scheduled_service": "no", + "gps_code": "31VA", + "local_code": "31VA" + }, + { + "id": "9986", + "ident": "31WA", + "type": "heliport", + "name": "Mary Bridge Heliport", + "latitude_deg": "47.259751", + "longitude_deg": "-122.452149", + "elevation_ft": "409", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tacoma", + "scheduled_service": "no", + "gps_code": "31WA", + "local_code": "31WA" + }, + { + "id": "9987", + "ident": "31WI", + "type": "small_airport", + "name": "Sullivan Airport", + "latitude_deg": "43.007432", + "longitude_deg": "-88.602237", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Sullivan", + "scheduled_service": "no", + "local_code": "W11", + "keywords": "31WI, McDermott Air Park" + }, + { + "id": "9988", + "ident": "31WN", + "type": "small_airport", + "name": "Berlin Field LLC", + "latitude_deg": "43.991368", + "longitude_deg": "-88.961968", + "elevation_ft": "773", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Berlin", + "scheduled_service": "no", + "gps_code": "31WN", + "local_code": "31WN" + }, + { + "id": "9989", + "ident": "31XS", + "type": "small_airport", + "name": "Fly-N-Ski Airport", + "latitude_deg": "33.18370056152344", + "longitude_deg": "-96.27030181884766", + "elevation_ft": "638", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Merit", + "scheduled_service": "no", + "gps_code": "31XS", + "local_code": "31XS" + }, + { + "id": "9990", + "ident": "32AK", + "type": "small_airport", + "name": "Hardrock Field", + "latitude_deg": "64.909078", + "longitude_deg": "-147.908047", + "elevation_ft": "664", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fairbanks", + "scheduled_service": "no", + "gps_code": "32AK", + "local_code": "32AK" + }, + { + "id": "343409", + "ident": "32AL", + "type": "heliport", + "name": "SES North Pad Heliport", + "latitude_deg": "34.664849", + "longitude_deg": "-86.746609", + "elevation_ft": "633", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Huntsville", + "scheduled_service": "no", + "gps_code": "32AL", + "local_code": "32AL" + }, + { + "id": "9991", + "ident": "32AR", + "type": "heliport", + "name": "Stuttgart Memorial Hospital Heliport", + "latitude_deg": "34.517778", + "longitude_deg": "-91.559722", + "elevation_ft": "193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Stuttgart", + "scheduled_service": "no", + "gps_code": "32AR", + "local_code": "32AR" + }, + { + "id": "45295", + "ident": "32AZ", + "type": "heliport", + "name": "Scottsdale Healthcare Thompson Peak Hospital Heliport", + "latitude_deg": "33.67", + "longitude_deg": "-111.922222", + "elevation_ft": "1675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Scottsdale", + "scheduled_service": "no", + "gps_code": "32AZ", + "local_code": "32AZ" + }, + { + "id": "9992", + "ident": "32CA", + "type": "small_airport", + "name": "Stone Airstrip", + "latitude_deg": "36.331538", + "longitude_deg": "-119.825177", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lemoore", + "scheduled_service": "no", + "gps_code": "32CA", + "local_code": "32CA" + }, + { + "id": "9993", + "ident": "32CL", + "type": "small_airport", + "name": "Bob's Flying Service Inc Airport", + "latitude_deg": "38.83319854736328", + "longitude_deg": "-121.71800231933594", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Knights Landing", + "scheduled_service": "no", + "gps_code": "32CL", + "local_code": "32CL" + }, + { + "id": "9994", + "ident": "32CN", + "type": "heliport", + "name": "Pacific Bell-2300 Imperial Hwy Heliport", + "latitude_deg": "33.93048", + "longitude_deg": "-118.38239", + "elevation_ft": "209", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "El Segundo", + "scheduled_service": "no", + "gps_code": "32CN", + "local_code": "32CN" + }, + { + "id": "9995", + "ident": "32CO", + "type": "small_airport", + "name": "Braun Airport", + "latitude_deg": "38.45472", + "longitude_deg": "-105.081899", + "elevation_ft": "5543", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Penrose", + "scheduled_service": "no", + "gps_code": "32CO", + "local_code": "32CO" + }, + { + "id": "9996", + "ident": "32FA", + "type": "small_airport", + "name": "Sunset Strip Airpark", + "latitude_deg": "27.23419952392578", + "longitude_deg": "-80.90370178222656", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Okeechobee", + "scheduled_service": "no", + "gps_code": "32FA", + "local_code": "32FA" + }, + { + "id": "9997", + "ident": "32FD", + "type": "heliport", + "name": "Kearney Construction Heliport", + "latitude_deg": "27.904399871826172", + "longitude_deg": "-82.38330078125", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Riverview", + "scheduled_service": "no", + "gps_code": "32FD", + "local_code": "32FD" + }, + { + "id": "9998", + "ident": "32FL", + "type": "closed", + "name": "Meyer Heliport", + "latitude_deg": "28.5014", + "longitude_deg": "-81.444199", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "keywords": "32FL" + }, + { + "id": "9999", + "ident": "32GA", + "type": "small_airport", + "name": "Sebastian Cove Airport", + "latitude_deg": "33.454201", + "longitude_deg": "-83.277802", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Eatonton", + "scheduled_service": "no", + "gps_code": "32GA", + "local_code": "32GA" + }, + { + "id": "10000", + "ident": "32II", + "type": "small_airport", + "name": "Roberts Airport", + "latitude_deg": "38.81639862060547", + "longitude_deg": "-85.1063003540039", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Vevay", + "scheduled_service": "no", + "gps_code": "32II", + "local_code": "32II" + }, + { + "id": "10001", + "ident": "32IL", + "type": "heliport", + "name": "Village of Tamms Heliport", + "latitude_deg": "37.23889923095703", + "longitude_deg": "-89.26580047607422", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Tamms", + "scheduled_service": "no", + "gps_code": "32IL", + "local_code": "32IL" + }, + { + "id": "10002", + "ident": "32IN", + "type": "closed", + "name": "Roto-Whirl/Ski World Heliport", + "latitude_deg": "39.154999", + "longitude_deg": "-86.297203", + "elevation_ft": "593", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Nashville", + "scheduled_service": "no", + "keywords": "32IN" + }, + { + "id": "10003", + "ident": "32IS", + "type": "small_airport", + "name": "Baker Airport", + "latitude_deg": "40.14061", + "longitude_deg": "-89.99601", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Kilbourne", + "scheduled_service": "no", + "gps_code": "32IS", + "local_code": "32IS" + }, + { + "id": "10004", + "ident": "32KS", + "type": "small_airport", + "name": "Wilkens Airport", + "latitude_deg": "38.593101501464844", + "longitude_deg": "-100.61299896240234", + "elevation_ft": "2856", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Healy", + "scheduled_service": "no", + "gps_code": "32KS", + "local_code": "32KS" + }, + { + "id": "10005", + "ident": "32KY", + "type": "heliport", + "name": "St Elizabeth Medical Center South Heliport", + "latitude_deg": "39.01029968261719", + "longitude_deg": "-84.55690002441406", + "elevation_ft": "873", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Edgewood", + "scheduled_service": "no", + "gps_code": "32KY", + "local_code": "32KY" + }, + { + "id": "10006", + "ident": "32LA", + "type": "heliport", + "name": "John W Stone Oil Distributor LLC Heliport", + "latitude_deg": "29.774388", + "longitude_deg": "-93.35024", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cameron", + "scheduled_service": "no", + "gps_code": "32LA", + "local_code": "32LA", + "keywords": "A B Dock Services" + }, + { + "id": "10007", + "ident": "32LL", + "type": "small_airport", + "name": "The Sandbox Airport", + "latitude_deg": "41.704200744628906", + "longitude_deg": "-90.25980377197266", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Cordova", + "scheduled_service": "no", + "gps_code": "32LL", + "local_code": "32LL" + }, + { + "id": "10008", + "ident": "32LS", + "type": "small_airport", + "name": "Stevens Strip", + "latitude_deg": "30.41959953", + "longitude_deg": "-90.35900116", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Ponchatoula", + "scheduled_service": "no", + "gps_code": "32LS", + "local_code": "32LS" + }, + { + "id": "10009", + "ident": "32MA", + "type": "heliport", + "name": "Berkshire Medical Center Heliport", + "latitude_deg": "42.708035", + "longitude_deg": "-73.110328", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "North Adams", + "scheduled_service": "no", + "gps_code": "32MA", + "local_code": "32MA", + "keywords": "North Adams Regional Hospital" + }, + { + "id": "10010", + "ident": "32MD", + "type": "small_airport", + "name": "Roseland Airport", + "latitude_deg": "39.18939971923828", + "longitude_deg": "-75.87680053710938", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Sudlersville", + "scheduled_service": "no", + "gps_code": "32MD", + "local_code": "32MD" + }, + { + "id": "10011", + "ident": "32MI", + "type": "heliport", + "name": "William Beaumont Hospital Heliport", + "latitude_deg": "42.51503", + "longitude_deg": "-83.194095", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Royal Oak", + "scheduled_service": "no", + "gps_code": "32MI", + "local_code": "32MI" + }, + { + "id": "10012", + "ident": "32MN", + "type": "small_airport", + "name": "Don's Landing Field", + "latitude_deg": "45.36750030517578", + "longitude_deg": "-94.39939880371094", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Watkins", + "scheduled_service": "no", + "gps_code": "32MN", + "local_code": "32MN" + }, + { + "id": "10013", + "ident": "32MO", + "type": "small_airport", + "name": "Phillips Airport", + "latitude_deg": "37.576698303222656", + "longitude_deg": "-90.22599792480469", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Fredericktown", + "scheduled_service": "no", + "gps_code": "32MO", + "local_code": "32MO" + }, + { + "id": "45500", + "ident": "32MS", + "type": "small_airport", + "name": "Browns Landing", + "latitude_deg": "31.194167", + "longitude_deg": "-89.9525", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Foxworth", + "scheduled_service": "no", + "gps_code": "32MS", + "local_code": "32MS" + }, + { + "id": "10014", + "ident": "32NC", + "type": "small_airport", + "name": "Hall Field", + "latitude_deg": "34.896400451660156", + "longitude_deg": "-79.04309844970703", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Parkton", + "scheduled_service": "no", + "gps_code": "32NC", + "local_code": "32NC" + }, + { + "id": "10015", + "ident": "32NE", + "type": "small_airport", + "name": "Mc Ginn Ranch Airport", + "latitude_deg": "41.7210998535", + "longitude_deg": "-100.087997437", + "elevation_ft": "2758", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Dunning", + "scheduled_service": "no", + "gps_code": "32NE", + "local_code": "32NE" + }, + { + "id": "346065", + "ident": "32NH", + "type": "heliport", + "name": "Lumberjack Heliport", + "latitude_deg": "43.838358", + "longitude_deg": "-71.885873", + "elevation_ft": "742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Wentworth", + "scheduled_service": "no", + "gps_code": "32NH", + "local_code": "32NH" + }, + { + "id": "10016", + "ident": "32NJ", + "type": "heliport", + "name": "George Harms Const Heliport", + "latitude_deg": "40.20840072631836", + "longitude_deg": "-74.17459869384766", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Farmingdale", + "scheduled_service": "no", + "gps_code": "32NJ", + "local_code": "32NJ" + }, + { + "id": "10017", + "ident": "32NK", + "type": "closed", + "name": "Schoharie Creek Airport", + "latitude_deg": "42.7533", + "longitude_deg": "-74.311096", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Sloansville", + "scheduled_service": "no", + "keywords": "32NK" + }, + { + "id": "10018", + "ident": "32NY", + "type": "heliport", + "name": "S J M Landing Heliport", + "latitude_deg": "42.4297981262207", + "longitude_deg": "-72.216796875", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Washingtonville", + "scheduled_service": "no", + "gps_code": "32NY", + "local_code": "32NY" + }, + { + "id": "10019", + "ident": "32OH", + "type": "small_airport", + "name": "Rall Field", + "latitude_deg": "40.760057", + "longitude_deg": "-82.41833", + "elevation_ft": "1330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mansfield", + "scheduled_service": "no", + "gps_code": "32OH", + "local_code": "32OH" + }, + { + "id": "10020", + "ident": "32OK", + "type": "closed", + "name": "Flying A Ranch Airport", + "latitude_deg": "34.831797", + "longitude_deg": "-95.517502", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hartshorne", + "scheduled_service": "no", + "keywords": "32OK" + }, + { + "id": "10021", + "ident": "32OR", + "type": "small_airport", + "name": "Pine Hollow Airport", + "latitude_deg": "45.254799", + "longitude_deg": "-121.293999", + "elevation_ft": "1820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Tygh Valley", + "scheduled_service": "no", + "gps_code": "32OR", + "local_code": "32OR" + }, + { + "id": "10022", + "ident": "32PA", + "type": "closed", + "name": "Yost Personal Use Airport", + "latitude_deg": "40.330101", + "longitude_deg": "-77.1772", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Shermans Dale", + "scheduled_service": "no", + "keywords": "32PA" + }, + { + "id": "10023", + "ident": "32PN", + "type": "small_airport", + "name": "Black Rock Airport", + "latitude_deg": "40.73400115966797", + "longitude_deg": "-80.2759017944336", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "New Brighton", + "scheduled_service": "no", + "gps_code": "32PN", + "local_code": "32PN" + }, + { + "id": "10024", + "ident": "32TA", + "type": "small_airport", + "name": "Wilbourn Ranch Airport", + "latitude_deg": "29.68727", + "longitude_deg": "-97.435899", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Harwood", + "scheduled_service": "no", + "gps_code": "32TA", + "local_code": "32TA", + "keywords": "Flying W Ranch" + }, + { + "id": "10025", + "ident": "32TE", + "type": "small_airport", + "name": "Granite Shoals Bob Sylvester Airpark", + "latitude_deg": "30.589399", + "longitude_deg": "-98.3703", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Granite Shoals", + "scheduled_service": "no", + "local_code": "2G5", + "home_link": "http://www.graniteshoals.org/index.aspx?NID=246", + "keywords": "32TE" + }, + { + "id": "45794", + "ident": "32TN", + "type": "heliport", + "name": "Southern Tennessee Medical Center Heliport", + "latitude_deg": "35.174281", + "longitude_deg": "-86.089917", + "elevation_ft": "984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Winchester", + "scheduled_service": "no", + "gps_code": "32TN", + "local_code": "32TN" + }, + { + "id": "10026", + "ident": "32TS", + "type": "heliport", + "name": "Seton Medical Center H-4 Heliport", + "latitude_deg": "30.304567", + "longitude_deg": "-97.746542", + "elevation_ft": "582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "32TS", + "local_code": "32TS" + }, + { + "id": "10027", + "ident": "32TX", + "type": "small_airport", + "name": "Hinson Airport", + "latitude_deg": "30.0580997467041", + "longitude_deg": "-96.35919952392578", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kenney", + "scheduled_service": "no", + "gps_code": "32TX", + "local_code": "32TX" + }, + { + "id": "10028", + "ident": "32VA", + "type": "small_airport", + "name": "Old South Aerodrome", + "latitude_deg": "36.677778", + "longitude_deg": "-81.928722", + "elevation_ft": "1970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Abingdon", + "scheduled_service": "no", + "gps_code": "32VA", + "local_code": "32VA" + }, + { + "id": "10029", + "ident": "32WA", + "type": "closed", + "name": "Whitestone Airport", + "latitude_deg": "48.722778", + "longitude_deg": "-119.467222", + "elevation_ft": "1310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tonasket", + "scheduled_service": "no", + "keywords": "32WA" + }, + { + "id": "10030", + "ident": "32WI", + "type": "small_airport", + "name": "Dalonia Airport", + "latitude_deg": "44.31639862060547", + "longitude_deg": "-88.70089721679688", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Hortonville", + "scheduled_service": "no", + "gps_code": "32WI", + "local_code": "32WI" + }, + { + "id": "45933", + "ident": "32WN", + "type": "small_airport", + "name": "Bowman Airstrip", + "latitude_deg": "45.099606", + "longitude_deg": "-88.419733", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Suring", + "scheduled_service": "no", + "gps_code": "32WN", + "local_code": "32WN" + }, + { + "id": "346803", + "ident": "32WY", + "type": "small_airport", + "name": "Double L Ranch Airport", + "latitude_deg": "43.080301", + "longitude_deg": "-111.031936", + "elevation_ft": "5732", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Etna", + "scheduled_service": "no", + "gps_code": "32WY", + "local_code": "32WY" + }, + { + "id": "45832", + "ident": "32XA", + "type": "heliport", + "name": "Medical Center Hospital Heliport", + "latitude_deg": "31.84618", + "longitude_deg": "-102.374382", + "elevation_ft": "3000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Odessa", + "scheduled_service": "no", + "gps_code": "32XA", + "local_code": "32XA" + }, + { + "id": "10031", + "ident": "32XS", + "type": "heliport", + "name": "Cedar Circle Heliport", + "latitude_deg": "32.46149826049805", + "longitude_deg": "-97.00869750976562", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Midlothian", + "scheduled_service": "no", + "gps_code": "32XS", + "local_code": "32XS" + }, + { + "id": "10032", + "ident": "33A", + "type": "small_airport", + "name": "Fairview Airport", + "latitude_deg": "35.15729904174805", + "longitude_deg": "-82.12229919433594", + "elevation_ft": "1046", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Landrum", + "scheduled_service": "no", + "gps_code": "33A", + "local_code": "33A" + }, + { + "id": "10033", + "ident": "33AK", + "type": "small_airport", + "name": "Nugget Bench Airport", + "latitude_deg": "62.515689", + "longitude_deg": "-150.945804", + "elevation_ft": "2010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nugget Bench", + "scheduled_service": "no", + "gps_code": "33AK", + "local_code": "33AK" + }, + { + "id": "355640", + "ident": "33AL", + "type": "heliport", + "name": "Russell Medical Heliport", + "latitude_deg": "32.930062", + "longitude_deg": "-85.970914", + "elevation_ft": "703", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Alexander City", + "scheduled_service": "no", + "gps_code": "33AL", + "local_code": "33AL" + }, + { + "id": "10034", + "ident": "33AR", + "type": "small_airport", + "name": "Skypoint Estates Airport", + "latitude_deg": "35.602199554399995", + "longitude_deg": "-92.1425018311", + "elevation_ft": "547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Greers Ferry", + "scheduled_service": "no", + "gps_code": "33AR", + "local_code": "33AR" + }, + { + "id": "10035", + "ident": "33AZ", + "type": "small_airport", + "name": "Yolo Ranch Airport", + "latitude_deg": "34.793156", + "longitude_deg": "-112.974472", + "elevation_ft": "5950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Camp Wood", + "scheduled_service": "no", + "gps_code": "33AZ", + "local_code": "33AZ" + }, + { + "id": "10036", + "ident": "33C", + "type": "small_airport", + "name": "Jablonski Airport", + "latitude_deg": "43.08219909667969", + "longitude_deg": "-86.09480285644531", + "elevation_ft": "634", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Nunica", + "scheduled_service": "no", + "gps_code": "33C", + "local_code": "33C" + }, + { + "id": "10037", + "ident": "33CA", + "type": "closed", + "name": "Lloyd's Landing Airport", + "latitude_deg": "34.905499", + "longitude_deg": "-118.302002", + "elevation_ft": "2690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rosamond", + "scheduled_service": "no", + "keywords": "33CA" + }, + { + "id": "10038", + "ident": "33CL", + "type": "small_airport", + "name": "Oak Country Ranch Airport", + "latitude_deg": "35.56829833984375", + "longitude_deg": "-120.7969970703125", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Paso Robles", + "scheduled_service": "no", + "gps_code": "33CL", + "local_code": "33CL" + }, + { + "id": "10039", + "ident": "33CN", + "type": "heliport", + "name": "Platform Hillhouse Heliport", + "latitude_deg": "34.33110046386719", + "longitude_deg": "-119.60399627685547", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Carpinteria", + "scheduled_service": "no", + "gps_code": "33CN", + "local_code": "33CN" + }, + { + "id": "10040", + "ident": "33CO", + "type": "small_airport", + "name": "Melby Ranch Airstrip", + "latitude_deg": "37.064998626708984", + "longitude_deg": "-105.46399688720703", + "elevation_ft": "8820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "San Luis", + "scheduled_service": "no", + "gps_code": "33CO", + "local_code": "33CO" + }, + { + "id": "45337", + "ident": "33CT", + "type": "small_airport", + "name": "Irish Hills Farms Airport", + "latitude_deg": "41.609444", + "longitude_deg": "-73.239722", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Bethlehem", + "scheduled_service": "no", + "gps_code": "33CT", + "local_code": "33CT" + }, + { + "id": "10041", + "ident": "33FA", + "type": "small_airport", + "name": "Recreation Corporation Airport", + "latitude_deg": "27.598100662231445", + "longitude_deg": "-80.84590148925781", + "elevation_ft": "67", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Okeechobee", + "scheduled_service": "no", + "gps_code": "33FA", + "local_code": "33FA" + }, + { + "id": "10042", + "ident": "33FD", + "type": "small_airport", + "name": "R O Ranch STOLport", + "latitude_deg": "29.914400100708008", + "longitude_deg": "-83.2665023803711", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Mayo", + "scheduled_service": "no", + "gps_code": "33FD", + "local_code": "33FD" + }, + { + "id": "10043", + "ident": "33FL", + "type": "small_airport", + "name": "Flying S Ranch Airport", + "latitude_deg": "27.860861", + "longitude_deg": "-80.999862", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Kenansville", + "scheduled_service": "no", + "gps_code": "33FL", + "local_code": "33FL" + }, + { + "id": "10044", + "ident": "33GA", + "type": "small_airport", + "name": "Hudson River Landing Airport", + "latitude_deg": "34.2599983215332", + "longitude_deg": "-83.28669738769531", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Carnesville", + "scheduled_service": "no", + "gps_code": "33GA", + "local_code": "33GA" + }, + { + "id": "10045", + "ident": "33IA", + "type": "heliport", + "name": "Orange City Hospital Heliport", + "latitude_deg": "43.01029968261719", + "longitude_deg": "-96.05809783935547", + "elevation_ft": "1523", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Orange City", + "scheduled_service": "no", + "gps_code": "33IA", + "local_code": "33IA" + }, + { + "id": "322348", + "ident": "33ID", + "type": "small_airport", + "name": "Ozzy's Airport", + "latitude_deg": "43.379362", + "longitude_deg": "-114.769444", + "elevation_ft": "5128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "33ID", + "local_code": "33ID" + }, + { + "id": "10046", + "ident": "33II", + "type": "heliport", + "name": "Lifeline Landing Area Heliport", + "latitude_deg": "39.658561", + "longitude_deg": "-85.143489", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Connersville", + "scheduled_service": "no", + "gps_code": "33II", + "local_code": "33II" + }, + { + "id": "10047", + "ident": "33IL", + "type": "small_airport", + "name": "John Scharff Airport", + "latitude_deg": "40.166099548339844", + "longitude_deg": "-88.89830017089844", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "33IL", + "local_code": "33IL" + }, + { + "id": "10048", + "ident": "33IN", + "type": "heliport", + "name": "Rusby Field", + "latitude_deg": "38.44309997558594", + "longitude_deg": "-86.05780029296875", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Palmyra", + "scheduled_service": "no", + "gps_code": "33IN", + "local_code": "33IN" + }, + { + "id": "10049", + "ident": "33IS", + "type": "small_airport", + "name": "Howell Airport", + "latitude_deg": "39.544498443603516", + "longitude_deg": "-88.75759887695312", + "elevation_ft": "672", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Findlay", + "scheduled_service": "no", + "gps_code": "33IS", + "local_code": "33IS" + }, + { + "id": "10050", + "ident": "33KS", + "type": "small_airport", + "name": "Buena Terra Airport", + "latitude_deg": "39.153099060058594", + "longitude_deg": "-95.6093978881836", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Topeka", + "scheduled_service": "no", + "gps_code": "33KS", + "local_code": "33KS" + }, + { + "id": "10051", + "ident": "33KY", + "type": "small_airport", + "name": "Bigger (Stol) STOLport", + "latitude_deg": "37.612300872802734", + "longitude_deg": "-87.05690002441406", + "elevation_ft": "406", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Utica", + "scheduled_service": "no", + "gps_code": "33KY", + "local_code": "33KY" + }, + { + "id": "10052", + "ident": "33LA", + "type": "small_airport", + "name": "Sky Ranch Airport", + "latitude_deg": "30.069599151611328", + "longitude_deg": "-91.98619842529297", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Youngsville", + "scheduled_service": "no", + "gps_code": "33LA", + "local_code": "33LA" + }, + { + "id": "10053", + "ident": "33LL", + "type": "small_airport", + "name": "Isley Airport", + "latitude_deg": "39.087501525878906", + "longitude_deg": "-88.28890228271484", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Wheeler", + "scheduled_service": "no", + "gps_code": "33LL", + "local_code": "33LL" + }, + { + "id": "45433", + "ident": "33LS", + "type": "heliport", + "name": "Our Lady of Lourdes Heart Hospital Heliport", + "latitude_deg": "30.173383", + "longitude_deg": "-92.026253", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "33LS", + "local_code": "33LS", + "keywords": "Heart Hospital" + }, + { + "id": "10054", + "ident": "33MA", + "type": "heliport", + "name": "Seagate Heliport", + "latitude_deg": "42.55979919433594", + "longitude_deg": "-70.77230072021484", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Manchester", + "scheduled_service": "no", + "gps_code": "33MA", + "local_code": "33MA" + }, + { + "id": "10055", + "ident": "33MI", + "type": "closed", + "name": "Great Lakes Airport", + "latitude_deg": "46.0666", + "longitude_deg": "-88.007599", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Sagola", + "scheduled_service": "no", + "keywords": "33MI" + }, + { + "id": "10056", + "ident": "33MN", + "type": "small_airport", + "name": "Swift Private Airport", + "latitude_deg": "46.09000015258789", + "longitude_deg": "-96.09700012207031", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Wendell", + "scheduled_service": "no", + "gps_code": "33MN", + "local_code": "33MN" + }, + { + "id": "10057", + "ident": "33MO", + "type": "closed", + "name": "Leaming Field", + "latitude_deg": "37.251401", + "longitude_deg": "-94.0569", + "elevation_ft": "1135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Golden City", + "scheduled_service": "no", + "keywords": "33MO" + }, + { + "id": "345390", + "ident": "33MS", + "type": "small_airport", + "name": "Freedom Strip", + "latitude_deg": "31.102297", + "longitude_deg": "-89.418755", + "elevation_ft": "361", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Purvis", + "scheduled_service": "no", + "gps_code": "33MS", + "local_code": "33MS" + }, + { + "id": "10058", + "ident": "33MT", + "type": "heliport", + "name": "Kruger Heliport", + "latitude_deg": "48.48059844970703", + "longitude_deg": "-114.0009994506836", + "elevation_ft": "3300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "West Glacier", + "scheduled_service": "no", + "gps_code": "33MT", + "local_code": "33MT" + }, + { + "id": "10059", + "ident": "33NC", + "type": "closed", + "name": "Pettigrew Moore Aerodrome", + "latitude_deg": "34.428222", + "longitude_deg": "-78.091636", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Wilmington", + "scheduled_service": "no", + "keywords": "33NC" + }, + { + "id": "10060", + "ident": "33NE", + "type": "small_airport", + "name": "Orr Ranch Airport", + "latitude_deg": "42.38610076904297", + "longitude_deg": "-102.57499694824219", + "elevation_ft": "3880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hay Springs", + "scheduled_service": "no", + "gps_code": "33NE", + "local_code": "33NE" + }, + { + "id": "10061", + "ident": "33NJ", + "type": "heliport", + "name": "Centra State Medical Center Heliport", + "latitude_deg": "40.237098693847656", + "longitude_deg": "-74.31099700927734", + "elevation_ft": "169", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Freehold", + "scheduled_service": "no", + "gps_code": "33NJ", + "local_code": "33NJ" + }, + { + "id": "45692", + "ident": "33NR", + "type": "small_airport", + "name": "Skyline Peak Airport", + "latitude_deg": "35.93897", + "longitude_deg": "-82.515467", + "elevation_ft": "4548", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Mars Hill", + "scheduled_service": "no", + "gps_code": "33NR", + "local_code": "33NR", + "keywords": "Wolf Ridge" + }, + { + "id": "10062", + "ident": "33NY", + "type": "small_airport", + "name": "Wayne Delp Airport", + "latitude_deg": "42.393243", + "longitude_deg": "-73.867779", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "West Coxsackie", + "scheduled_service": "no", + "gps_code": "33NY", + "local_code": "33NY" + }, + { + "id": "356189", + "ident": "33OA", + "type": "heliport", + "name": "Liberty EMS Heliport", + "latitude_deg": "39.377323", + "longitude_deg": "-84.368402", + "elevation_ft": "866", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Liberty Township", + "scheduled_service": "no", + "gps_code": "33OA", + "local_code": "33OA" + }, + { + "id": "10063", + "ident": "33OH", + "type": "small_airport", + "name": "Sunset Strip", + "latitude_deg": "40.185298919677734", + "longitude_deg": "-83.17359924316406", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Jerome", + "scheduled_service": "no", + "gps_code": "33OH", + "local_code": "33OH" + }, + { + "id": "10064", + "ident": "33OI", + "type": "small_airport", + "name": "Soaring Horse Airport", + "latitude_deg": "41.082801818847656", + "longitude_deg": "-82.04319763183594", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Chatham Township", + "scheduled_service": "no", + "gps_code": "33OI", + "local_code": "33OI" + }, + { + "id": "10065", + "ident": "33OK", + "type": "small_airport", + "name": "Myrick Airport", + "latitude_deg": "35.7432903732", + "longitude_deg": "-97.4055790901", + "elevation_ft": "1195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Edmond", + "scheduled_service": "no", + "gps_code": "33OK", + "local_code": "33OK" + }, + { + "id": "10066", + "ident": "33OR", + "type": "small_airport", + "name": "Crow-Mag Airport", + "latitude_deg": "44.06370162963867", + "longitude_deg": "-123.39099884033203", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Elmira", + "scheduled_service": "no", + "gps_code": "33OR", + "local_code": "33OR" + }, + { + "id": "10067", + "ident": "33PA", + "type": "closed", + "name": "Sutliff Private Airport", + "latitude_deg": "41.166801", + "longitude_deg": "-76.249702", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Shickshinny", + "scheduled_service": "no", + "keywords": "33PA" + }, + { + "id": "10068", + "ident": "33PN", + "type": "heliport", + "name": "Skepton Heliport", + "latitude_deg": "40.388999938964844", + "longitude_deg": "-75.43800354003906", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pennsburg", + "scheduled_service": "no", + "gps_code": "33PN", + "local_code": "33PN" + }, + { + "id": "10069", + "ident": "33SC", + "type": "heliport", + "name": "Triad Carolinas Hospital Heliport", + "latitude_deg": "34.161399841308594", + "longitude_deg": "-79.75389862060547", + "elevation_ft": "114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Florence", + "scheduled_service": "no", + "gps_code": "33SC", + "local_code": "33SC" + }, + { + "id": "10070", + "ident": "33TA", + "type": "small_airport", + "name": "Lake Bonanza Airport", + "latitude_deg": "30.33300018310547", + "longitude_deg": "-95.61219787597656", + "elevation_ft": "301", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Montgomery", + "scheduled_service": "no", + "gps_code": "33TA", + "local_code": "33TA" + }, + { + "id": "10071", + "ident": "33TE", + "type": "closed", + "name": "SW Police Station Nr 4 Heliport", + "latitude_deg": "29.688365", + "longitude_deg": "-95.452083", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "keywords": "33TE" + }, + { + "id": "45785", + "ident": "33TN", + "type": "heliport", + "name": "Bradley Memorial Hospital Heliport", + "latitude_deg": "35.178211", + "longitude_deg": "-84.869442", + "elevation_ft": "908", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "33TN", + "local_code": "33TN" + }, + { + "id": "10072", + "ident": "33TS", + "type": "heliport", + "name": "CHI Saint Joseph Health Burleson Hospital Heliport", + "latitude_deg": "30.521044", + "longitude_deg": "-96.716567", + "elevation_ft": "386", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Caldwell", + "scheduled_service": "no", + "gps_code": "33TS", + "local_code": "33TS" + }, + { + "id": "10073", + "ident": "33TX", + "type": "heliport", + "name": "Tgp 1 Heliport", + "latitude_deg": "27.74449920654297", + "longitude_deg": "-97.84639739990234", + "elevation_ft": "108", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Agua Dulce", + "scheduled_service": "no", + "gps_code": "33TX", + "local_code": "33TX" + }, + { + "id": "10074", + "ident": "33VA", + "type": "small_airport", + "name": "Fox Fire Airport", + "latitude_deg": "36.7843017578125", + "longitude_deg": "-79.04969787597656", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Halifax", + "scheduled_service": "no", + "gps_code": "33VA", + "local_code": "33VA" + }, + { + "id": "344831", + "ident": "33VT", + "type": "small_airport", + "name": "Sky View Acres Airport", + "latitude_deg": "44.118333", + "longitude_deg": "-72.565833", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Williamstown", + "scheduled_service": "no", + "gps_code": "33VT", + "local_code": "33VT" + }, + { + "id": "10075", + "ident": "33WA", + "type": "small_airport", + "name": "Franz Ranch Airport", + "latitude_deg": "47.04990005493164", + "longitude_deg": "-118.85099792480469", + "elevation_ft": "1478", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Warden", + "scheduled_service": "no", + "gps_code": "33WA", + "local_code": "33WA" + }, + { + "id": "10076", + "ident": "33WI", + "type": "heliport", + "name": "St Mary's Hospital Heliport", + "latitude_deg": "44.53219985961914", + "longitude_deg": "-88.06590270996094", + "elevation_ft": "617", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Green Bay", + "scheduled_service": "no", + "gps_code": "33WI", + "local_code": "33WI" + }, + { + "id": "342442", + "ident": "33WV", + "type": "heliport", + "name": "Healthnet One Base Heliport", + "latitude_deg": "39.632494", + "longitude_deg": "-80.000784", + "elevation_ft": "1106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Westover", + "scheduled_service": "no", + "gps_code": "33WV", + "local_code": "33WV", + "keywords": "https://www.airnav.com/airport/33WV" + }, + { + "id": "10077", + "ident": "33XS", + "type": "heliport", + "name": "Six Mile Volunteer Fire Department Heliport", + "latitude_deg": "31.250292", + "longitude_deg": "-93.778931", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hemphill", + "scheduled_service": "no", + "gps_code": "33XS", + "local_code": "33XS" + }, + { + "id": "10078", + "ident": "34AK", + "type": "small_airport", + "name": "Cardwell Strip", + "latitude_deg": "61.625", + "longitude_deg": "-149.28900146484375", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "34AK", + "local_code": "34AK" + }, + { + "id": "323179", + "ident": "34AL", + "type": "heliport", + "name": "Gaston Steam Plant Heliport", + "latitude_deg": "33.246578", + "longitude_deg": "-86.469113", + "elevation_ft": "461", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Wilsonville", + "scheduled_service": "no", + "gps_code": "34AL", + "local_code": "34AL" + }, + { + "id": "10079", + "ident": "34AR", + "type": "small_airport", + "name": "Woodbridge Field", + "latitude_deg": "35.581454", + "longitude_deg": "-90.384668", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Marked Tree", + "scheduled_service": "no", + "gps_code": "34AR", + "local_code": "34AR" + }, + { + "id": "10080", + "ident": "34AZ", + "type": "closed", + "name": "Gila River Memorial Airport", + "latitude_deg": "33.243401", + "longitude_deg": "-111.913002", + "elevation_ft": "1185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Chandler", + "scheduled_service": "no", + "gps_code": "34AZ", + "local_code": "34AZ" + }, + { + "id": "10081", + "ident": "34CA", + "type": "closed", + "name": "Fiddyment Field", + "latitude_deg": "38.79209899902344", + "longitude_deg": "-121.37300109863281", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Roseville", + "scheduled_service": "no", + "gps_code": "34CA", + "local_code": "34CA" + }, + { + "id": "45964", + "ident": "34CD", + "type": "small_airport", + "name": "Elk Park Ranch Airport", + "latitude_deg": "40.262683", + "longitude_deg": "-105.448011", + "elevation_ft": "7900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Allenspark", + "scheduled_service": "no", + "gps_code": "34CD", + "local_code": "34CD" + }, + { + "id": "10082", + "ident": "34CL", + "type": "heliport", + "name": "Burney Service Center Heliport", + "latitude_deg": "40.893609", + "longitude_deg": "-121.651354", + "elevation_ft": "3116", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Burney", + "scheduled_service": "no", + "gps_code": "34CL", + "local_code": "34CL" + }, + { + "id": "10083", + "ident": "34CN", + "type": "small_airport", + "name": "Bonanza Hills Airport", + "latitude_deg": "37.52349853515625", + "longitude_deg": "-120.39800262451172", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Snelling", + "scheduled_service": "no", + "gps_code": "34CN", + "local_code": "34CN" + }, + { + "id": "10084", + "ident": "34CO", + "type": "small_airport", + "name": "Simons Airport", + "latitude_deg": "39.716400146484375", + "longitude_deg": "-104.73200225830078", + "elevation_ft": "5525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Aurora", + "scheduled_service": "no", + "gps_code": "34CO", + "local_code": "34CO" + }, + { + "id": "10085", + "ident": "34FA", + "type": "seaplane_base", + "name": "Gezik Seaplane Base", + "latitude_deg": "28.25189971923828", + "longitude_deg": "-80.66889953613281", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Rockledge", + "scheduled_service": "no", + "gps_code": "34FA", + "local_code": "34FA" + }, + { + "id": "10086", + "ident": "34FD", + "type": "small_airport", + "name": "Blue Ridge Flightpark Airport", + "latitude_deg": "28.857200622558594", + "longitude_deg": "-80.90699768066406", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Oakhill", + "scheduled_service": "no", + "gps_code": "34FD", + "local_code": "34FD" + }, + { + "id": "10087", + "ident": "34FL", + "type": "closed", + "name": "Ellis Agricultural Field", + "latitude_deg": "30.965853", + "longitude_deg": "-86.302135", + "elevation_ft": "324", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Paxton", + "scheduled_service": "no", + "keywords": "34FL" + }, + { + "id": "10088", + "ident": "34G", + "type": "small_airport", + "name": "Merillat Airport", + "latitude_deg": "41.974998474121094", + "longitude_deg": "-83.92520141601562", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Tecumseh", + "scheduled_service": "no", + "gps_code": "34G", + "local_code": "34G" + }, + { + "id": "10089", + "ident": "34GA", + "type": "heliport", + "name": "Cobb General Hospital Heliport", + "latitude_deg": "33.857208", + "longitude_deg": "-84.606677", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Austell", + "scheduled_service": "no", + "gps_code": "34GA", + "local_code": "34GA" + }, + { + "id": "345653", + "ident": "34IA", + "type": "small_airport", + "name": "Beck Airport", + "latitude_deg": "40.997189", + "longitude_deg": "-93.155608", + "elevation_ft": "1023", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Russell", + "scheduled_service": "no", + "gps_code": "34IA", + "local_code": "34IA" + }, + { + "id": "45382", + "ident": "34ID", + "type": "small_airport", + "name": "Freeman Creek Airport", + "latitude_deg": "46.570333", + "longitude_deg": "-116.343611", + "elevation_ft": "3100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cavendish", + "scheduled_service": "no", + "gps_code": "34ID", + "local_code": "34ID" + }, + { + "id": "10090", + "ident": "34II", + "type": "small_airport", + "name": "Burk Personal Use Airport", + "latitude_deg": "40.050816", + "longitude_deg": "-85.602318", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Anderson", + "scheduled_service": "no", + "gps_code": "34II", + "local_code": "34II" + }, + { + "id": "10091", + "ident": "34IL", + "type": "small_airport", + "name": "G. Bray Airport", + "latitude_deg": "40.361545", + "longitude_deg": "-90.109849", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lewistown", + "scheduled_service": "no", + "gps_code": "34IL", + "local_code": "34IL" + }, + { + "id": "10092", + "ident": "34IN", + "type": "small_airport", + "name": "Windy P Ridge Airport", + "latitude_deg": "40.340301513671875", + "longitude_deg": "-85.01799774169922", + "elevation_ft": "1035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "34IN", + "local_code": "34IN" + }, + { + "id": "10093", + "ident": "34IS", + "type": "small_airport", + "name": "Jim Wehrli Memorial Airport", + "latitude_deg": "41.444801330566406", + "longitude_deg": "-88.7166976928711", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Marseilles", + "scheduled_service": "no", + "gps_code": "34IS", + "local_code": "34IS" + }, + { + "id": "10094", + "ident": "34KS", + "type": "heliport", + "name": "St Joseph Heliport", + "latitude_deg": "37.67169952392578", + "longitude_deg": "-97.29119873046875", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wichita", + "scheduled_service": "no", + "gps_code": "34KS", + "local_code": "34KS" + }, + { + "id": "10095", + "ident": "34KY", + "type": "small_airport", + "name": "Lone Pine Aerodrome", + "latitude_deg": "36.912498474121094", + "longitude_deg": "-86.78279876708984", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "34KY", + "local_code": "34KY" + }, + { + "id": "10096", + "ident": "34LA", + "type": "small_airport", + "name": "Swamp Smith Airport", + "latitude_deg": "30.772236", + "longitude_deg": "-93.271465", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "DeRidder", + "scheduled_service": "no", + "gps_code": "34LA", + "local_code": "34LA" + }, + { + "id": "10097", + "ident": "34LL", + "type": "heliport", + "name": "Il Dept of Corrections/Lawrence County Heliport", + "latitude_deg": "38.7282981873", + "longitude_deg": "-87.90809631350001", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sumner", + "scheduled_service": "no", + "gps_code": "34LL", + "local_code": "34LL" + }, + { + "id": "10098", + "ident": "34LS", + "type": "closed", + "name": "Coastal Ridge Airpark", + "latitude_deg": "30.0289", + "longitude_deg": "-92.014503", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Abbeville", + "scheduled_service": "no", + "keywords": "34LS" + }, + { + "id": "10099", + "ident": "34MA", + "type": "heliport", + "name": "Crowhurst Heliport", + "latitude_deg": "42.57630157470703", + "longitude_deg": "-70.73889923095703", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Manchester-By-The Sea", + "scheduled_service": "no", + "gps_code": "34MA", + "local_code": "34MA" + }, + { + "id": "10100", + "ident": "34MI", + "type": "small_airport", + "name": "De Witt Property Airport", + "latitude_deg": "43.10029983520508", + "longitude_deg": "-86.22339630126953", + "elevation_ft": "605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Spring Lake", + "scheduled_service": "no", + "gps_code": "34MI", + "local_code": "34MI" + }, + { + "id": "10101", + "ident": "34MN", + "type": "seaplane_base", + "name": "Peil/Juliar Seaplane Base", + "latitude_deg": "44.959685", + "longitude_deg": "-93.649399", + "elevation_ft": "627", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Mound", + "scheduled_service": "no", + "keywords": "34MN" + }, + { + "id": "10102", + "ident": "34MO", + "type": "heliport", + "name": "Cyanamid-Hannibal Heliport", + "latitude_deg": "39.83250045776367", + "longitude_deg": "-91.44020080566406", + "elevation_ft": "468", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hannibal", + "scheduled_service": "no", + "gps_code": "34MO", + "local_code": "34MO" + }, + { + "id": "10103", + "ident": "34MS", + "type": "small_airport", + "name": "Colle Field", + "latitude_deg": "30.473800659179688", + "longitude_deg": "-88.69619750976562", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Gautier", + "scheduled_service": "no", + "gps_code": "34MS", + "local_code": "34MS" + }, + { + "id": "10104", + "ident": "34NC", + "type": "heliport", + "name": "Carolinas Medical Center Heliport", + "latitude_deg": "35.204368", + "longitude_deg": "-80.838466", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Charlotte", + "scheduled_service": "no", + "gps_code": "34NC", + "local_code": "34NC" + }, + { + "id": "10105", + "ident": "34ND", + "type": "small_airport", + "name": "Plath Farms Airport", + "latitude_deg": "46.7057991027832", + "longitude_deg": "-97.15650177001953", + "elevation_ft": "928", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Davenport", + "scheduled_service": "no", + "gps_code": "34ND", + "local_code": "34ND" + }, + { + "id": "10106", + "ident": "34NE", + "type": "small_airport", + "name": "Evans Ranch Airport", + "latitude_deg": "41.223899841308594", + "longitude_deg": "-100.93499755859375", + "elevation_ft": "2895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hershey", + "scheduled_service": "no", + "gps_code": "34NE", + "local_code": "34NE" + }, + { + "id": "10107", + "ident": "34NH", + "type": "heliport", + "name": "Stone Song Heliport", + "latitude_deg": "42.814701080322266", + "longitude_deg": "-71.66110229492188", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "34NH", + "local_code": "34NH" + }, + { + "id": "10108", + "ident": "34NJ", + "type": "closed", + "name": "Chilton Memorial Hospital Heliport", + "latitude_deg": "40.957901", + "longitude_deg": "-74.309601", + "elevation_ft": "186", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Pequannock", + "scheduled_service": "no", + "keywords": "34NJ" + }, + { + "id": "10109", + "ident": "34NY", + "type": "closed", + "name": "Hendershot Airport", + "latitude_deg": "43.291173", + "longitude_deg": "-77.827139", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hilton", + "scheduled_service": "no", + "keywords": "34NY" + }, + { + "id": "10110", + "ident": "34OH", + "type": "small_airport", + "name": "Arend Airport", + "latitude_deg": "41.25699996948242", + "longitude_deg": "-84.6416015625", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mark Center", + "scheduled_service": "no", + "gps_code": "34OH", + "local_code": "34OH" + }, + { + "id": "10111", + "ident": "34OI", + "type": "small_airport", + "name": "Snoddy Air Strip", + "latitude_deg": "40.69449996948242", + "longitude_deg": "-82.1178970336914", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Shreve", + "scheduled_service": "no", + "gps_code": "34OI", + "local_code": "34OI" + }, + { + "id": "10112", + "ident": "34OK", + "type": "closed", + "name": "Double Bar S Ranches Airport", + "latitude_deg": "35.900101", + "longitude_deg": "-96.5503", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Shamrock", + "scheduled_service": "no", + "keywords": "34OK" + }, + { + "id": "10113", + "ident": "34OR", + "type": "heliport", + "name": "Providence Medical Center Heliport", + "latitude_deg": "45.52819824", + "longitude_deg": "-122.6119995", + "elevation_ft": "234", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "34OR", + "local_code": "34OR" + }, + { + "id": "10114", + "ident": "34PA", + "type": "small_airport", + "name": "Waltz Airport", + "latitude_deg": "39.76070022583008", + "longitude_deg": "-77.19300079345703", + "elevation_ft": "542", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Gettysburg", + "scheduled_service": "no", + "gps_code": "34PA", + "local_code": "34PA" + }, + { + "id": "45774", + "ident": "34PN", + "type": "small_airport", + "name": "Fox Field", + "latitude_deg": "40.485556", + "longitude_deg": "-77.220556", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "34PN", + "local_code": "34PN" + }, + { + "id": "337190", + "ident": "34SC", + "type": "small_airport", + "name": "Toms Creek Airport", + "latitude_deg": "33.771833", + "longitude_deg": "-79.96625", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Kingstree", + "scheduled_service": "no", + "gps_code": "34SC", + "local_code": "34SC" + }, + { + "id": "10115", + "ident": "34TA", + "type": "small_airport", + "name": "Jsi Airport", + "latitude_deg": "33.16709899902344", + "longitude_deg": "-96.48719787597656", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "34TA", + "local_code": "34TA" + }, + { + "id": "10116", + "ident": "34TE", + "type": "small_airport", + "name": "Bee Creek Airport", + "latitude_deg": "32.23210144042969", + "longitude_deg": "-97.00859832763672", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Maypearl", + "scheduled_service": "no", + "gps_code": "34TE", + "local_code": "34TE" + }, + { + "id": "346187", + "ident": "34TN", + "type": "heliport", + "name": "Livingston Hospital Heliport", + "latitude_deg": "36.383848", + "longitude_deg": "-85.328069", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Livingston", + "scheduled_service": "no", + "gps_code": "34TN", + "local_code": "34TN" + }, + { + "id": "10117", + "ident": "34TS", + "type": "small_airport", + "name": "Canyon Lake Airport", + "latitude_deg": "29.915800094604492", + "longitude_deg": "-98.24749755859375", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Canyon Lake", + "scheduled_service": "no", + "gps_code": "34TS", + "local_code": "34TS" + }, + { + "id": "10118", + "ident": "34TX", + "type": "heliport", + "name": "Buckmaster Heliport", + "latitude_deg": "32.62710189819336", + "longitude_deg": "-97.78359985351562", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no", + "gps_code": "34TX", + "local_code": "34TX" + }, + { + "id": "10119", + "ident": "34U", + "type": "small_airport", + "name": "Yuba Airport", + "latitude_deg": "44.83890151977539", + "longitude_deg": "-85.43119812011719", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Elk Rapids", + "scheduled_service": "no", + "gps_code": "34U", + "local_code": "34U" + }, + { + "id": "10120", + "ident": "34VA", + "type": "heliport", + "name": "Loudoun Hospital Center Heliport", + "latitude_deg": "39.07720184326172", + "longitude_deg": "-77.47640228271484", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Leesburg", + "scheduled_service": "no", + "gps_code": "34VA", + "local_code": "34VA" + }, + { + "id": "10121", + "ident": "34WA", + "type": "heliport", + "name": "Orbit Heliport", + "latitude_deg": "45.567901611328125", + "longitude_deg": "-122.31900024414062", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Washougal", + "scheduled_service": "no", + "gps_code": "34WA", + "local_code": "34WA" + }, + { + "id": "10122", + "ident": "34WI", + "type": "small_airport", + "name": "Thiessen Field", + "latitude_deg": "43.417758", + "longitude_deg": "-89.766201", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Baraboo", + "scheduled_service": "no", + "gps_code": "34WI", + "local_code": "34WI" + }, + { + "id": "349487", + "ident": "34XA", + "type": "heliport", + "name": "Dell Childrens North Hospital Heliport", + "latitude_deg": "30.485456", + "longitude_deg": "-97.800944", + "elevation_ft": "934", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "34XA", + "local_code": "34XA" + }, + { + "id": "10123", + "ident": "34XS", + "type": "small_airport", + "name": "Flying Hare Field Airport", + "latitude_deg": "30.391944", + "longitude_deg": "-95.538611", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Conroe", + "scheduled_service": "no", + "gps_code": "34XS", + "local_code": "34XS" + }, + { + "id": "10124", + "ident": "35AK", + "type": "heliport", + "name": "Seal Island Heliport", + "latitude_deg": "70.49220275878906", + "longitude_deg": "-148.69500732421875", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Deadhorse", + "scheduled_service": "no", + "gps_code": "35AK", + "local_code": "35AK" + }, + { + "id": "301246", + "ident": "35AL", + "type": "heliport", + "name": "Silcox Memorial Heliport", + "latitude_deg": "31.089605", + "longitude_deg": "-88.245089", + "elevation_ft": "339", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Citronelle", + "scheduled_service": "no", + "gps_code": "35AL" + }, + { + "id": "10125", + "ident": "35AR", + "type": "closed", + "name": "Black Horse Landing Ultralightport", + "latitude_deg": "36.3564", + "longitude_deg": "-93.686302", + "elevation_ft": "1207", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Eureka Springs", + "scheduled_service": "no", + "keywords": "35AR" + }, + { + "id": "10126", + "ident": "35AZ", + "type": "small_airport", + "name": "Continental Airport", + "latitude_deg": "31.843700408935547", + "longitude_deg": "-110.97699737548828", + "elevation_ft": "2869", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Continental", + "scheduled_service": "no", + "gps_code": "35AZ", + "local_code": "35AZ" + }, + { + "id": "10127", + "ident": "35C", + "type": "small_airport", + "name": "Wells Airport", + "latitude_deg": "43.12839889526367", + "longitude_deg": "-85.50530242919922", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Rockford", + "scheduled_service": "no", + "gps_code": "35C", + "local_code": "35C" + }, + { + "id": "10128", + "ident": "35CA", + "type": "heliport", + "name": "Los Angeles County/USC Medical Center Heliport", + "latitude_deg": "34.057766", + "longitude_deg": "-118.208096", + "elevation_ft": "454", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "35CA", + "local_code": "35CA" + }, + { + "id": "10129", + "ident": "35CL", + "type": "closed", + "name": "59 Ranch Airport", + "latitude_deg": "37.231899", + "longitude_deg": "-120.478996", + "elevation_ft": "154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Merced", + "scheduled_service": "no", + "keywords": "35CL, Flying M Ranch" + }, + { + "id": "10130", + "ident": "35CN", + "type": "small_airport", + "name": "Farnsworth Ranch Airstrip", + "latitude_deg": "39.09989929199219", + "longitude_deg": "-121.93399810791016", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Grimes", + "scheduled_service": "no", + "gps_code": "35CN", + "local_code": "35CN" + }, + { + "id": "10131", + "ident": "35CO", + "type": "small_airport", + "name": "Lone Tree Ranch Airport", + "latitude_deg": "38.886555", + "longitude_deg": "-103.812561", + "elevation_ft": "5525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Punkin Center", + "scheduled_service": "no", + "gps_code": "35CO", + "local_code": "35CO" + }, + { + "id": "10132", + "ident": "35FA", + "type": "small_airport", + "name": "Rimes Lakecrest Airport", + "latitude_deg": "29.467899322509766", + "longitude_deg": "-82.15879821777344", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Cross Creek", + "scheduled_service": "no", + "gps_code": "35FA", + "local_code": "35FA" + }, + { + "id": "10133", + "ident": "35FD", + "type": "small_airport", + "name": "Rush Airport", + "latitude_deg": "29.69230079650879", + "longitude_deg": "-82.72920227050781", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Trenton", + "scheduled_service": "no", + "gps_code": "35FD", + "local_code": "35FD" + }, + { + "id": "10134", + "ident": "35FL", + "type": "heliport", + "name": "St Vincent's Medical Center Heliport", + "latitude_deg": "30.308245", + "longitude_deg": "-81.690613", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "35FL", + "local_code": "35FL" + }, + { + "id": "10135", + "ident": "35GA", + "type": "heliport", + "name": "Buford Precinct Heliport", + "latitude_deg": "34.097900390625", + "longitude_deg": "-84.01239776611328", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Buford", + "scheduled_service": "no", + "gps_code": "35GA", + "local_code": "35GA" + }, + { + "id": "10136", + "ident": "35II", + "type": "small_airport", + "name": "Brown Airport", + "latitude_deg": "41.542301177978516", + "longitude_deg": "-85.84190368652344", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Goshen", + "scheduled_service": "no", + "gps_code": "35II", + "local_code": "35II" + }, + { + "id": "10137", + "ident": "35IL", + "type": "small_airport", + "name": "Clarion Field", + "latitude_deg": "41.53390121459961", + "longitude_deg": "-89.20279693603516", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "La Moille", + "scheduled_service": "no", + "gps_code": "35IL", + "local_code": "35IL" + }, + { + "id": "10138", + "ident": "35IN", + "type": "small_airport", + "name": "Ellison Airport", + "latitude_deg": "40.294498443603516", + "longitude_deg": "-85.94249725341797", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Tipton", + "scheduled_service": "no", + "gps_code": "35IN", + "local_code": "35IN" + }, + { + "id": "10139", + "ident": "35IS", + "type": "small_airport", + "name": "Enoch Airport", + "latitude_deg": "39.52840042114258", + "longitude_deg": "-88.76399993896484", + "elevation_ft": "676", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Findlay", + "scheduled_service": "no", + "gps_code": "35IS", + "local_code": "35IS" + }, + { + "id": "10140", + "ident": "35JY", + "type": "balloonport", + "name": "Cyber Density Balloon Spot Balloonport", + "latitude_deg": "40.43439865112305", + "longitude_deg": "-74.63469696044922", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Belle Mead", + "scheduled_service": "no", + "gps_code": "35JY", + "local_code": "35JY" + }, + { + "id": "10141", + "ident": "35KS", + "type": "closed", + "name": "Blue Sky Ranch and Aerodrome", + "latitude_deg": "37.5336", + "longitude_deg": "-97.311697", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Derby", + "scheduled_service": "no", + "keywords": "35KS, Selby Farm Airport" + }, + { + "id": "10142", + "ident": "35KY", + "type": "small_airport", + "name": "Welcome Field", + "latitude_deg": "36.71120071411133", + "longitude_deg": "-86.63610076904297", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "35KY", + "local_code": "35KY" + }, + { + "id": "10143", + "ident": "35L", + "type": "small_airport", + "name": "Carriage Lane Airport", + "latitude_deg": "42.464500427246094", + "longitude_deg": "-84.03500366210938", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Gregory", + "scheduled_service": "no", + "gps_code": "35L", + "local_code": "35L" + }, + { + "id": "10144", + "ident": "35LA", + "type": "small_airport", + "name": "Ms Pats Airport", + "latitude_deg": "29.97450065612793", + "longitude_deg": "-92.17610168457031", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Abbeville", + "scheduled_service": "no", + "gps_code": "35LA", + "local_code": "35LA" + }, + { + "id": "10145", + "ident": "35LL", + "type": "heliport", + "name": "Crawford Memorial Hospital Heliport", + "latitude_deg": "39.015899658203125", + "longitude_deg": "-87.75", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Robinson", + "scheduled_service": "no", + "gps_code": "35LL", + "local_code": "35LL" + }, + { + "id": "10146", + "ident": "35LS", + "type": "heliport", + "name": "The Bluffs Heliport", + "latitude_deg": "30.8031005859375", + "longitude_deg": "-91.24490356445312", + "elevation_ft": "116", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "St Francisville", + "scheduled_service": "no", + "gps_code": "35LS", + "local_code": "35LS" + }, + { + "id": "10147", + "ident": "35M", + "type": "heliport", + "name": "Vortex Heliport", + "latitude_deg": "30.388599395751953", + "longitude_deg": "-89.16529846191406", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Long Beach", + "scheduled_service": "no", + "gps_code": "35M", + "local_code": "35M" + }, + { + "id": "10148", + "ident": "35MA", + "type": "heliport", + "name": "Idlewide Heliport", + "latitude_deg": "42.55799865722656", + "longitude_deg": "-70.8125991821289", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Beverly", + "scheduled_service": "no", + "gps_code": "35MA", + "local_code": "35MA" + }, + { + "id": "10149", + "ident": "35ME", + "type": "small_airport", + "name": "Matinicus Island Airport", + "latitude_deg": "43.87110137939453", + "longitude_deg": "-68.89330291748047", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Matinicus Island", + "scheduled_service": "no", + "gps_code": "35ME", + "local_code": "35ME" + }, + { + "id": "10150", + "ident": "35MI", + "type": "small_airport", + "name": "Law Field", + "latitude_deg": "42.6338996887207", + "longitude_deg": "-84.98580169677734", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Vermontville", + "scheduled_service": "no", + "gps_code": "35MI", + "local_code": "35MI" + }, + { + "id": "10151", + "ident": "35MN", + "type": "small_airport", + "name": "Wipline Airport", + "latitude_deg": "44.81549835205078", + "longitude_deg": "-93.01349639892578", + "elevation_ft": "687", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Inver Grove Heights", + "scheduled_service": "no", + "gps_code": "35MN", + "local_code": "35MN" + }, + { + "id": "10152", + "ident": "35MO", + "type": "heliport", + "name": "Camp Clark Army Heliport", + "latitude_deg": "37.81669998168945", + "longitude_deg": "-94.30020141601562", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Nevada", + "scheduled_service": "no", + "gps_code": "35MO", + "local_code": "35MO" + }, + { + "id": "346555", + "ident": "35MT", + "type": "small_airport", + "name": "Haynes Ranch Airport", + "latitude_deg": "45.861717", + "longitude_deg": "-108.646765", + "elevation_ft": "3620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Billings", + "scheduled_service": "no", + "gps_code": "35MT", + "local_code": "35MT" + }, + { + "id": "354622", + "ident": "35MU", + "type": "heliport", + "name": "AE 146 Pike County Heliport", + "latitude_deg": "39.414878", + "longitude_deg": "-91.098633", + "elevation_ft": "521", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Louisiana", + "scheduled_service": "no", + "gps_code": "35MU", + "local_code": "35MU" + }, + { + "id": "10153", + "ident": "35NC", + "type": "small_airport", + "name": "Johnston Airport", + "latitude_deg": "35.538299560546875", + "longitude_deg": "-80.75140380859375", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Mooresville", + "scheduled_service": "no", + "gps_code": "35NC", + "local_code": "35NC" + }, + { + "id": "10154", + "ident": "35NE", + "type": "small_airport", + "name": "Shelburnes Airport", + "latitude_deg": "41.04999923706055", + "longitude_deg": "-101.80500030517578", + "elevation_ft": "3475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Ogallala", + "scheduled_service": "no", + "gps_code": "35NE", + "local_code": "35NE" + }, + { + "id": "45522", + "ident": "35NH", + "type": "seaplane_base", + "name": "Cobbetts Pond Seaplane Base", + "latitude_deg": "42.806914", + "longitude_deg": "-71.275853", + "elevation_ft": "177", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Windham", + "scheduled_service": "no", + "gps_code": "35NH", + "local_code": "35NH" + }, + { + "id": "10155", + "ident": "35NJ", + "type": "heliport", + "name": "Mid-State Heliport", + "latitude_deg": "40.600399017333984", + "longitude_deg": "-75.71939849853516", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Somerville", + "scheduled_service": "no", + "gps_code": "35NJ", + "local_code": "35NJ" + }, + { + "id": "350298", + "ident": "35NK", + "type": "small_airport", + "name": "Tiger Paw Aerodrome", + "latitude_deg": "43.367099", + "longitude_deg": "-78.414026", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Lyndonville", + "scheduled_service": "no", + "gps_code": "35NK", + "local_code": "35NK" + }, + { + "id": "10156", + "ident": "35NY", + "type": "closed", + "name": "Ciszak Airport", + "latitude_deg": "42.512293", + "longitude_deg": "-78.734894", + "elevation_ft": "1397", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Springville", + "scheduled_service": "no", + "keywords": "35NY" + }, + { + "id": "10157", + "ident": "35OH", + "type": "heliport", + "name": "Gainey Heliport", + "latitude_deg": "40.81869888305664", + "longitude_deg": "-81.52369689941406", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Massillon", + "scheduled_service": "no", + "gps_code": "35OH", + "local_code": "35OH" + }, + { + "id": "10158", + "ident": "35OI", + "type": "heliport", + "name": "Fawcett Center For Tomorrow Heliport", + "latitude_deg": "40.01060104370117", + "longitude_deg": "-83.018798828125", + "elevation_ft": "738", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "35OI", + "local_code": "35OI" + }, + { + "id": "10159", + "ident": "35OK", + "type": "closed", + "name": "Schumacher Field", + "latitude_deg": "35.5", + "longitude_deg": "-99.035598", + "elevation_ft": "1595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Clinton", + "scheduled_service": "no", + "keywords": "35OK" + }, + { + "id": "10160", + "ident": "35OL", + "type": "small_airport", + "name": "Henderson Farm Airport", + "latitude_deg": "36.63309860229492", + "longitude_deg": "-99.15119934082031", + "elevation_ft": "1750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Mooreland", + "scheduled_service": "no", + "gps_code": "35OL", + "local_code": "35OL" + }, + { + "id": "10161", + "ident": "35OR", + "type": "closed", + "name": "Freight Wagon Field", + "latitude_deg": "44.1926", + "longitude_deg": "-121.179001", + "elevation_ft": "3195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Redmond", + "scheduled_service": "no", + "keywords": "35OR" + }, + { + "id": "10162", + "ident": "35PA", + "type": "heliport", + "name": "Spring Land Heliport", + "latitude_deg": "40.393699645996094", + "longitude_deg": "-75.16429901123047", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Plumsteadville", + "scheduled_service": "no", + "gps_code": "35PA", + "local_code": "35PA" + }, + { + "id": "10163", + "ident": "35PN", + "type": "heliport", + "name": "Sabinsville-Consolidated Heliport", + "latitude_deg": "41.87260055541992", + "longitude_deg": "-77.52050018310547", + "elevation_ft": "1618", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Westfield", + "scheduled_service": "no", + "gps_code": "35PN", + "local_code": "35PN" + }, + { + "id": "349489", + "ident": "35SC", + "type": "heliport", + "name": "Kershaw Health Medical Center Heliport", + "latitude_deg": "34.253527", + "longitude_deg": "-80.59154", + "elevation_ft": "158", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Camden", + "scheduled_service": "no", + "gps_code": "35SC", + "local_code": "35SC" + }, + { + "id": "10164", + "ident": "35TA", + "type": "heliport", + "name": "Texas Health Presbyterian Hospital Plano Heliport", + "latitude_deg": "33.0434989929", + "longitude_deg": "-96.83719635010002", + "elevation_ft": "669", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Plano", + "scheduled_service": "no", + "gps_code": "35TA", + "local_code": "35TA" + }, + { + "id": "10165", + "ident": "35TE", + "type": "closed", + "name": "NE Police Station Nr 2 Heliport", + "latitude_deg": "29.813299", + "longitude_deg": "-95.336304", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "keywords": "35TE" + }, + { + "id": "347970", + "ident": "35TN", + "type": "heliport", + "name": "DeKalb Community Hospital Heliport", + "latitude_deg": "35.960944", + "longitude_deg": "-85.830211", + "elevation_ft": "1114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Smithville", + "scheduled_service": "no", + "gps_code": "35TN", + "local_code": "35TN", + "home_link": "https://healthcare.ascension.org/locations/tennessee/tnnas/smithville-ascension-saint-thomas-dekalb", + "keywords": "Saint Thomas DeKalb" + }, + { + "id": "10166", + "ident": "35TS", + "type": "closed", + "name": "Hempstead Gliderport", + "latitude_deg": "30.121599", + "longitude_deg": "-96.086601", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hempstead", + "scheduled_service": "no", + "keywords": "35TS" + }, + { + "id": "10167", + "ident": "35TX", + "type": "small_airport", + "name": "Flying B Ranch Airstrip", + "latitude_deg": "32.483972", + "longitude_deg": "-99.825912", + "elevation_ft": "1750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Abilene", + "scheduled_service": "no", + "gps_code": "35TX", + "local_code": "35TX" + }, + { + "id": "10168", + "ident": "35VA", + "type": "heliport", + "name": "Community Memorial Hospital Heliport", + "latitude_deg": "36.751347", + "longitude_deg": "-78.104767", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "South Hill", + "scheduled_service": "no", + "gps_code": "35VA", + "local_code": "35VA", + "keywords": "CMH Medical" + }, + { + "id": "10169", + "ident": "35WA", + "type": "small_airport", + "name": "Fisher Ranch Airport", + "latitude_deg": "46.747883", + "longitude_deg": "-118.419139", + "elevation_ft": "1521", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Washtucna", + "scheduled_service": "no", + "gps_code": "35WA", + "local_code": "35WA" + }, + { + "id": "10170", + "ident": "35WI", + "type": "small_airport", + "name": "Barker Strip", + "latitude_deg": "42.745601654052734", + "longitude_deg": "-88.4375991821289", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "East Troy", + "scheduled_service": "no", + "gps_code": "35WI", + "local_code": "35WI" + }, + { + "id": "353029", + "ident": "35XA", + "type": "small_airport", + "name": "Rcade Ranch Airport", + "latitude_deg": "30.834058", + "longitude_deg": "-94.941683", + "elevation_ft": "267", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Livingston", + "scheduled_service": "no", + "gps_code": "35XA", + "local_code": "35XA" + }, + { + "id": "10171", + "ident": "35XS", + "type": "heliport", + "name": "Nocona General Hospital Heliport", + "latitude_deg": "33.778492", + "longitude_deg": "-97.73256", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Nocona", + "scheduled_service": "no", + "gps_code": "35XS", + "local_code": "35XS" + }, + { + "id": "323175", + "ident": "36AA", + "type": "heliport", + "name": "W. M. Thomas Pad Heliport", + "latitude_deg": "32.716836", + "longitude_deg": "-87.749524", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Sawyerville", + "scheduled_service": "no", + "gps_code": "36AA", + "local_code": "36AA" + }, + { + "id": "10172", + "ident": "36AK", + "type": "small_airport", + "name": "Flyway Farm Airstrip", + "latitude_deg": "61.346437", + "longitude_deg": "-150.069781", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "36AK", + "local_code": "36AK" + }, + { + "id": "325087", + "ident": "36AL", + "type": "small_airport", + "name": "Hidden Springs Airpark", + "latitude_deg": "31.491973", + "longitude_deg": "-85.534407", + "elevation_ft": "346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Ozark", + "scheduled_service": "no", + "gps_code": "36AL", + "local_code": "36AL" + }, + { + "id": "10173", + "ident": "36AR", + "type": "small_airport", + "name": "David Stanley Memorial Airport", + "latitude_deg": "35.20640182495117", + "longitude_deg": "-91.31890106201172", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Gregory", + "scheduled_service": "no", + "gps_code": "36AR", + "local_code": "36AR" + }, + { + "id": "10174", + "ident": "36AZ", + "type": "closed", + "name": "Valley Farms Airport", + "latitude_deg": "32.993698", + "longitude_deg": "-111.450996", + "elevation_ft": "1478", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Coolidge", + "scheduled_service": "no", + "keywords": "36AZ" + }, + { + "id": "10175", + "ident": "36CA", + "type": "small_airport", + "name": "Stone Land County Airport", + "latitude_deg": "36.131900787353516", + "longitude_deg": "-119.98600006103516", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stratford", + "scheduled_service": "no", + "gps_code": "36CA", + "local_code": "36CA" + }, + { + "id": "10176", + "ident": "36CL", + "type": "heliport", + "name": "Tri-City Hospital Heliport", + "latitude_deg": "33.185298919677734", + "longitude_deg": "-117.29100036621094", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceanside", + "scheduled_service": "no", + "gps_code": "36CL", + "local_code": "36CL" + }, + { + "id": "10177", + "ident": "36CN", + "type": "closed", + "name": "Blackwell Land Company Airport", + "latitude_deg": "35.63618", + "longitude_deg": "-120.009035", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lost Hills", + "scheduled_service": "no", + "keywords": "36CN" + }, + { + "id": "10178", + "ident": "36CO", + "type": "small_airport", + "name": "Fat Chance Airport", + "latitude_deg": "39.10609817504883", + "longitude_deg": "-104.54399871826172", + "elevation_ft": "7100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Peyton", + "scheduled_service": "no", + "gps_code": "36CO", + "local_code": "36CO" + }, + { + "id": "10179", + "ident": "36FA", + "type": "heliport", + "name": "International Heli-Tours Heliport", + "latitude_deg": "28.333462", + "longitude_deg": "-81.487988", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Kissimmee", + "scheduled_service": "no", + "gps_code": "36FA", + "local_code": "36FA", + "keywords": "hawkeye heli tours, magic air adventure, international heli tours, kissimmee" + }, + { + "id": "10180", + "ident": "36FD", + "type": "heliport", + "name": "Bay Helicopters Heliport", + "latitude_deg": "30.19379997253418", + "longitude_deg": "-85.66130065917969", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City", + "scheduled_service": "no", + "gps_code": "36FD", + "local_code": "36FD" + }, + { + "id": "10181", + "ident": "36FL", + "type": "heliport", + "name": "Mease Countryside Hospital Heliport", + "latitude_deg": "28.0428", + "longitude_deg": "-82.707377", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Safety Harbor", + "scheduled_service": "no", + "gps_code": "36FL", + "local_code": "36FL", + "keywords": "Mease Hospital Countryside" + }, + { + "id": "10182", + "ident": "36GA", + "type": "small_airport", + "name": "Lola Landing Airport", + "latitude_deg": "33.72423", + "longitude_deg": "-83.97608", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Conyers", + "scheduled_service": "no", + "gps_code": "36GA", + "local_code": "36GA" + }, + { + "id": "10183", + "ident": "36H", + "type": "seaplane_base", + "name": "Squaw Harbor Seaplane Base", + "latitude_deg": "55.2332992554", + "longitude_deg": "-160.552001953", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Squaw Harbor", + "scheduled_service": "no", + "gps_code": "36H", + "local_code": "36H" + }, + { + "id": "45380", + "ident": "36ID", + "type": "heliport", + "name": "Dorothy Roeber Memorial Heliport", + "latitude_deg": "43.8072", + "longitude_deg": "-115.1308", + "elevation_ft": "5200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "36ID", + "local_code": "36ID" + }, + { + "id": "10184", + "ident": "36II", + "type": "small_airport", + "name": "Newby Landing Airport", + "latitude_deg": "39.84120178222656", + "longitude_deg": "-86.34860229492188", + "elevation_ft": "878", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Brownsburg", + "scheduled_service": "no", + "gps_code": "36II", + "local_code": "36II" + }, + { + "id": "10185", + "ident": "36IL", + "type": "heliport", + "name": "Batchtown Heliport", + "latitude_deg": "39.033599853515625", + "longitude_deg": "-90.66609954833984", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Batchtown", + "scheduled_service": "no", + "gps_code": "36IL", + "local_code": "36IL" + }, + { + "id": "10186", + "ident": "36IN", + "type": "small_airport", + "name": "Peterson Ultralightport", + "latitude_deg": "41.53620147705078", + "longitude_deg": "-86.44390106201172", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "North Liberty", + "scheduled_service": "no", + "gps_code": "36IN", + "local_code": "36IN" + }, + { + "id": "10187", + "ident": "36IS", + "type": "small_airport", + "name": "Gillen Airport", + "latitude_deg": "40.92639923095703", + "longitude_deg": "-90.731201171875", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Monmouth", + "scheduled_service": "no", + "gps_code": "36IS", + "local_code": "36IS" + }, + { + "id": "10188", + "ident": "36KS", + "type": "small_airport", + "name": "White Farms Airport", + "latitude_deg": "37.4748", + "longitude_deg": "-95.343597", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Galesburg", + "scheduled_service": "no", + "gps_code": "36KS", + "local_code": "36KS" + }, + { + "id": "10189", + "ident": "36KY", + "type": "small_airport", + "name": "Arnolds Airport", + "latitude_deg": "37.655601501464844", + "longitude_deg": "-85.15380096435547", + "elevation_ft": "843", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "36KY", + "local_code": "36KY" + }, + { + "id": "10190", + "ident": "36LA", + "type": "heliport", + "name": "Lafayette Training Center - Cusa Heliport", + "latitude_deg": "30.165800094599998", + "longitude_deg": "-92.05870056150002", + "elevation_ft": "106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "36LA", + "local_code": "36LA" + }, + { + "id": "10191", + "ident": "36LL", + "type": "heliport", + "name": "Calhoun Medical Center Heliport", + "latitude_deg": "39.15890121459961", + "longitude_deg": "-90.62220001220703", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hardin", + "scheduled_service": "no", + "gps_code": "36LL", + "local_code": "36LL" + }, + { + "id": "10192", + "ident": "36LS", + "type": "heliport", + "name": "Squires Heliport", + "latitude_deg": "29.90250015258789", + "longitude_deg": "-91.70500183105469", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Jeanerette", + "scheduled_service": "no", + "gps_code": "36LS", + "local_code": "36LS" + }, + { + "id": "322293", + "ident": "36MA", + "type": "heliport", + "name": "Beth Israel Deaconess Medical Center Heliport", + "latitude_deg": "42.338161", + "longitude_deg": "-71.109107", + "elevation_ft": "161", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Boston", + "scheduled_service": "no", + "gps_code": "36MA", + "local_code": "36MA" + }, + { + "id": "10193", + "ident": "36MI", + "type": "small_airport", + "name": "Tecumseh Mills Airport", + "latitude_deg": "42.034351", + "longitude_deg": "-83.879328", + "elevation_ft": "797", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Tecumseh", + "scheduled_service": "no", + "local_code": "22T", + "keywords": "36MI" + }, + { + "id": "10194", + "ident": "36MN", + "type": "small_airport", + "name": "Wagner Farm Airport", + "latitude_deg": "46.671600341796875", + "longitude_deg": "-96.57530212402344", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Barnesville", + "scheduled_service": "no", + "gps_code": "36MN", + "local_code": "36MN" + }, + { + "id": "10195", + "ident": "36MO", + "type": "small_airport", + "name": "Harrison Private Airport", + "latitude_deg": "37.85279846191406", + "longitude_deg": "-91.64679718017578", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Rolla", + "scheduled_service": "no", + "gps_code": "36MO", + "local_code": "36MO" + }, + { + "id": "346067", + "ident": "36MT", + "type": "small_airport", + "name": "16 Ranch Airport", + "latitude_deg": "46.800765", + "longitude_deg": "-108.811458", + "elevation_ft": "3960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Grass Range", + "scheduled_service": "no", + "gps_code": "36MT", + "local_code": "36MT" + }, + { + "id": "10196", + "ident": "36NC", + "type": "closed", + "name": "Greensboro North Airport", + "latitude_deg": "36.253601", + "longitude_deg": "-79.908096", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Greensboro", + "scheduled_service": "no", + "keywords": "36NC" + }, + { + "id": "10197", + "ident": "36NE", + "type": "small_airport", + "name": "Frevert Airstrip", + "latitude_deg": "42.514198303222656", + "longitude_deg": "-97.58090209960938", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Wausa", + "scheduled_service": "no", + "gps_code": "36NE", + "local_code": "36NE" + }, + { + "id": "10198", + "ident": "36NH", + "type": "heliport", + "name": "Long Pond Landing Heliport", + "latitude_deg": "42.700801849365234", + "longitude_deg": "-71.37110137939453", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Pelham", + "scheduled_service": "no", + "gps_code": "36NH", + "local_code": "36NH" + }, + { + "id": "10199", + "ident": "36NJ", + "type": "heliport", + "name": "Colliers Mills Heliport", + "latitude_deg": "40.06340026855469", + "longitude_deg": "-74.44129943847656", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Cassville", + "scheduled_service": "no", + "gps_code": "36NJ", + "local_code": "36NJ" + }, + { + "id": "10200", + "ident": "36NY", + "type": "closed", + "name": "Dew Airpark", + "latitude_deg": "42.235901", + "longitude_deg": "-78.2117", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Cuba", + "scheduled_service": "no", + "keywords": "36NY" + }, + { + "id": "10201", + "ident": "36OH", + "type": "small_airport", + "name": "Wright's Field", + "latitude_deg": "40.19029998779297", + "longitude_deg": "-81.9739990234375", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Conesville", + "scheduled_service": "no", + "gps_code": "36OH", + "local_code": "36OH" + }, + { + "id": "10202", + "ident": "36OI", + "type": "small_airport", + "name": "Verhoff Airport", + "latitude_deg": "41.07310104370117", + "longitude_deg": "-84.21269989013672", + "elevation_ft": "728", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Continental", + "scheduled_service": "no", + "gps_code": "36OI", + "local_code": "36OI" + }, + { + "id": "10203", + "ident": "36OK", + "type": "small_airport", + "name": "Jones Air Park", + "latitude_deg": "35.272300720214844", + "longitude_deg": "-96.88169860839844", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tecumseh", + "scheduled_service": "no", + "gps_code": "36OK", + "local_code": "36OK" + }, + { + "id": "10204", + "ident": "36OR", + "type": "small_airport", + "name": "Jasper Ridge Airstrip", + "latitude_deg": "44.003299713134766", + "longitude_deg": "-122.87999725341797", + "elevation_ft": "1125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Springfield/Jasper", + "scheduled_service": "no", + "gps_code": "36OR", + "local_code": "36OR" + }, + { + "id": "10205", + "ident": "36PA", + "type": "heliport", + "name": "Episcopal Hospital Heliport", + "latitude_deg": "39.9901008605957", + "longitude_deg": "-75.13050079345703", + "elevation_ft": "74", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "36PA", + "local_code": "36PA" + }, + { + "id": "10206", + "ident": "36PN", + "type": "heliport", + "name": "Us Army Reserve Center Heliport", + "latitude_deg": "39.966800689697266", + "longitude_deg": "-75.45240020751953", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Edgemont", + "scheduled_service": "no", + "gps_code": "36PN", + "local_code": "36PN" + }, + { + "id": "10207", + "ident": "36TA", + "type": "heliport", + "name": "G W Heliport", + "latitude_deg": "29.553191", + "longitude_deg": "-98.492577", + "elevation_ft": "824", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "36TA", + "local_code": "36TA" + }, + { + "id": "10208", + "ident": "36TE", + "type": "heliport", + "name": "Houston Police Department Northwest Heliport", + "latitude_deg": "29.857422", + "longitude_deg": "-95.539819", + "elevation_ft": "101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "36TE", + "local_code": "36TE", + "keywords": "Northwest Police Station Number 5 Heliport" + }, + { + "id": "10209", + "ident": "36TN", + "type": "small_airport", + "name": "Ruckman Field", + "latitude_deg": "36.47700119018555", + "longitude_deg": "-87.13980102539062", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Clarksville", + "scheduled_service": "no", + "gps_code": "36TN", + "local_code": "36TN" + }, + { + "id": "10210", + "ident": "36TS", + "type": "heliport", + "name": "4BH Heliport", + "latitude_deg": "30.71691", + "longitude_deg": "-97.77673", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Georgetown", + "scheduled_service": "no", + "gps_code": "36TS", + "local_code": "36TS" + }, + { + "id": "10211", + "ident": "36TX", + "type": "small_airport", + "name": "Bevoni-Flying B Airport", + "latitude_deg": "33.72090148925781", + "longitude_deg": "-96.86139678955078", + "elevation_ft": "763", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Whitesboro", + "scheduled_service": "no", + "gps_code": "36TX", + "local_code": "36TX" + }, + { + "id": "345392", + "ident": "36UT", + "type": "heliport", + "name": "Park City Regional Medical Center Heliport", + "latitude_deg": "40.687822", + "longitude_deg": "-111.470627", + "elevation_ft": "6759", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Park City", + "scheduled_service": "no", + "gps_code": "36UT", + "local_code": "36UT" + }, + { + "id": "10212", + "ident": "36VA", + "type": "heliport", + "name": "Carilion Westlake Center Heliport", + "latitude_deg": "37.115861", + "longitude_deg": "-79.718361", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Hardy", + "scheduled_service": "no", + "gps_code": "36VA", + "local_code": "36VA" + }, + { + "id": "45870", + "ident": "36VT", + "type": "seaplane_base", + "name": "North Hero Passage Seaplane Base", + "latitude_deg": "44.854722", + "longitude_deg": "-73.285556", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "North Hero", + "scheduled_service": "no", + "gps_code": "36VT", + "local_code": "36VT" + }, + { + "id": "10213", + "ident": "36WA", + "type": "small_airport", + "name": "Bob's Field", + "latitude_deg": "45.95640182495117", + "longitude_deg": "-121.49800109863281", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Trout Lake", + "scheduled_service": "no", + "gps_code": "36WA", + "local_code": "36WA" + }, + { + "id": "10214", + "ident": "36WI", + "type": "small_airport", + "name": "Holland Air Park", + "latitude_deg": "44.03219985961914", + "longitude_deg": "-91.29959869384766", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Holmen", + "scheduled_service": "no", + "gps_code": "36WI", + "local_code": "36WI" + }, + { + "id": "10215", + "ident": "36XS", + "type": "small_airport", + "name": "Mill Iron Ranch South Airport", + "latitude_deg": "34.897", + "longitude_deg": "-100.11789", + "elevation_ft": "2097", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wellington", + "scheduled_service": "no", + "gps_code": "36XS", + "local_code": "36XS" + }, + { + "id": "323173", + "ident": "37AL", + "type": "heliport", + "name": "Veterans Heliport", + "latitude_deg": "33.603568", + "longitude_deg": "-86.302934", + "elevation_ft": "455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Pell City", + "scheduled_service": "no", + "gps_code": "37AL", + "local_code": "37AL" + }, + { + "id": "10216", + "ident": "37AR", + "type": "closed", + "name": "Beech Creek Airport", + "latitude_deg": "33.182499", + "longitude_deg": "-91.628304", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Hamburg", + "scheduled_service": "no", + "keywords": "37AR" + }, + { + "id": "10217", + "ident": "37AZ", + "type": "small_airport", + "name": "Sarita Airport", + "latitude_deg": "32.93560028076172", + "longitude_deg": "-111.48500061035156", + "elevation_ft": "1464", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Coolidge", + "scheduled_service": "no", + "gps_code": "37AZ", + "local_code": "37AZ" + }, + { + "id": "10218", + "ident": "37CA", + "type": "small_airport", + "name": "Billy Joe Airport", + "latitude_deg": "33.50699996948242", + "longitude_deg": "-117.07099914550781", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Temecula", + "scheduled_service": "no", + "gps_code": "37CA", + "local_code": "37CA" + }, + { + "id": "10219", + "ident": "37CL", + "type": "small_airport", + "name": "Lyall-Roberts Airport", + "latitude_deg": "33.324501", + "longitude_deg": "-116.989998", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pauma Valley", + "scheduled_service": "no", + "gps_code": "37CL", + "local_code": "37CL", + "keywords": "00L" + }, + { + "id": "10220", + "ident": "37CN", + "type": "small_airport", + "name": "Arnold Ranch Airport", + "latitude_deg": "36.914398", + "longitude_deg": "-119.786003", + "elevation_ft": "382", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fresno", + "scheduled_service": "no", + "keywords": "37CN" + }, + { + "id": "10221", + "ident": "37CO", + "type": "heliport", + "name": "Ash Mesa Heliport", + "latitude_deg": "38.56719970703125", + "longitude_deg": "-107.99600219726562", + "elevation_ft": "5681", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Olathe", + "scheduled_service": "no", + "gps_code": "37CO", + "local_code": "37CO" + }, + { + "id": "10222", + "ident": "37FA", + "type": "heliport", + "name": "Advent Health Orlando Heliport", + "latitude_deg": "28.575654", + "longitude_deg": "-81.368268", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "37FA", + "local_code": "37FA", + "keywords": "Florida Hospital Heliport" + }, + { + "id": "10223", + "ident": "37FD", + "type": "closed", + "name": "Ringhaver Heliport", + "latitude_deg": "27.988899", + "longitude_deg": "-80.626999", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Palm Bay", + "scheduled_service": "no", + "keywords": "37FD" + }, + { + "id": "10224", + "ident": "37FL", + "type": "small_airport", + "name": "Flying Harness Farms Airport", + "latitude_deg": "29.718599319458008", + "longitude_deg": "-82.84459686279297", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bell", + "scheduled_service": "no", + "gps_code": "37FL", + "local_code": "37FL" + }, + { + "id": "10225", + "ident": "37GA", + "type": "small_airport", + "name": "Blue Bird Field", + "latitude_deg": "34.90039825439453", + "longitude_deg": "-84.77850341796875", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Crandall", + "scheduled_service": "no", + "gps_code": "37GA", + "local_code": "37GA" + }, + { + "id": "10226", + "ident": "37I", + "type": "small_airport", + "name": "Troy Skypark Airport", + "latitude_deg": "39.990898", + "longitude_deg": "-84.2705", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "OH71", + "local_code": "OH71", + "wikipedia_link": "https://en.wikipedia.org/wiki/Troy_Skypark", + "keywords": "37I" + }, + { + "id": "45384", + "ident": "37ID", + "type": "small_airport", + "name": "Hungry Ridge Ranch Airport", + "latitude_deg": "45.782417", + "longitude_deg": "-115.938", + "elevation_ft": "4599", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Grangeville", + "scheduled_service": "no", + "gps_code": "37ID", + "local_code": "37ID" + }, + { + "id": "10227", + "ident": "37II", + "type": "small_airport", + "name": "Winn Field", + "latitude_deg": "41.17559814453125", + "longitude_deg": "-86.37359619140625", + "elevation_ft": "808", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Culver", + "scheduled_service": "no", + "gps_code": "37II", + "local_code": "37II" + }, + { + "id": "10228", + "ident": "37IL", + "type": "small_airport", + "name": "Minder Airport", + "latitude_deg": "40.133399963378906", + "longitude_deg": "-89.32510375976562", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "37IL", + "local_code": "37IL" + }, + { + "id": "10229", + "ident": "37IN", + "type": "small_airport", + "name": "Felix Airport", + "latitude_deg": "40.29169845581055", + "longitude_deg": "-86.7802963256836", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Stockwell", + "scheduled_service": "no", + "gps_code": "37IN", + "local_code": "37IN" + }, + { + "id": "10230", + "ident": "37IS", + "type": "small_airport", + "name": "Hilbert Airport", + "latitude_deg": "42.33219909667969", + "longitude_deg": "-88.60559844970703", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Marengo", + "scheduled_service": "no", + "gps_code": "37IS", + "local_code": "37IS" + }, + { + "id": "10231", + "ident": "37KS", + "type": "closed", + "name": "Bar P Ranch Airport", + "latitude_deg": "37.481998", + "longitude_deg": "-96.337797", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Howard", + "scheduled_service": "no", + "keywords": "37KS" + }, + { + "id": "10232", + "ident": "37KY", + "type": "heliport", + "name": "University of Kentucky Hospital Heliport", + "latitude_deg": "38.030586", + "longitude_deg": "-84.508214", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "37KY", + "local_code": "37KY" + }, + { + "id": "10233", + "ident": "37LA", + "type": "small_airport", + "name": "Wayne Brown Airport", + "latitude_deg": "31.727699279785156", + "longitude_deg": "-91.58290100097656", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Clayton", + "scheduled_service": "no", + "gps_code": "37LA", + "local_code": "37LA" + }, + { + "id": "10234", + "ident": "37LL", + "type": "small_airport", + "name": "Dale Curten Farm Airport", + "latitude_deg": "38.04779815673828", + "longitude_deg": "-89.99710083007812", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Modoc", + "scheduled_service": "no", + "gps_code": "37LL", + "local_code": "37LL" + }, + { + "id": "10235", + "ident": "37LS", + "type": "heliport", + "name": "Vortex 2 Heliport", + "latitude_deg": "30.03019905090332", + "longitude_deg": "-91.87210083007812", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Iberia", + "scheduled_service": "no", + "gps_code": "37LS", + "local_code": "37LS" + }, + { + "id": "10236", + "ident": "37M", + "type": "small_airport", + "name": "Hornersville Memorial Airport", + "latitude_deg": "36.04169845581055", + "longitude_deg": "-90.15010070800781", + "elevation_ft": "248", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hornersville", + "scheduled_service": "no", + "gps_code": "37M", + "local_code": "37M" + }, + { + "id": "45471", + "ident": "37MA", + "type": "heliport", + "name": "Hanson Heliport", + "latitude_deg": "42.122778", + "longitude_deg": "-72.423611", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Wilbraham", + "scheduled_service": "no", + "gps_code": "37MA", + "local_code": "37MA" + }, + { + "id": "10237", + "ident": "37MI", + "type": "small_airport", + "name": "Handleman Sky Ranch Airport", + "latitude_deg": "42.85279846191406", + "longitude_deg": "-83.22769927978516", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Oxford", + "scheduled_service": "no", + "gps_code": "37MI", + "local_code": "37MI" + }, + { + "id": "10238", + "ident": "37MN", + "type": "closed", + "name": "Nagel and Schultz Airport", + "latitude_deg": "44.582199", + "longitude_deg": "-93.801598", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Belle Plaine", + "scheduled_service": "no", + "keywords": "37MN" + }, + { + "id": "10239", + "ident": "37MO", + "type": "small_airport", + "name": "Mayes Homestead Airport", + "latitude_deg": "39.57500076293945", + "longitude_deg": "-94.18360137939453", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Polo", + "scheduled_service": "no", + "gps_code": "37MO", + "local_code": "37MO" + }, + { + "id": "340925", + "ident": "37MS", + "type": "small_airport", + "name": "P2 Landing Airport", + "latitude_deg": "32.389828", + "longitude_deg": "-90.350779", + "elevation_ft": "246", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "37MS", + "local_code": "37MS" + }, + { + "id": "10240", + "ident": "37N", + "type": "small_airport", + "name": "Garrison Dam Recreational Airpark", + "latitude_deg": "47.48310089111328", + "longitude_deg": "-101.40899658203125", + "elevation_ft": "1723", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Riverdale", + "scheduled_service": "no", + "gps_code": "37N", + "local_code": "37N" + }, + { + "id": "10241", + "ident": "37NC", + "type": "heliport", + "name": "Valdese General Hospital Heliport", + "latitude_deg": "35.74810028076172", + "longitude_deg": "-81.52249908447266", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Valdese", + "scheduled_service": "no", + "gps_code": "37NC", + "local_code": "37NC" + }, + { + "id": "10242", + "ident": "37ND", + "type": "small_airport", + "name": "Sunset Strip", + "latitude_deg": "47.231998443603516", + "longitude_deg": "-102.50900268554688", + "elevation_ft": "2360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Dunn Center", + "scheduled_service": "no", + "gps_code": "37ND", + "local_code": "37ND" + }, + { + "id": "10243", + "ident": "37NE", + "type": "small_airport", + "name": "Watermeier Airport", + "latitude_deg": "40.6077995300293", + "longitude_deg": "-96.30780029296875", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Burr", + "scheduled_service": "no", + "gps_code": "37NE", + "local_code": "37NE" + }, + { + "id": "333479", + "ident": "37NH", + "type": "seaplane_base", + "name": "Hooksett's Seaplane Landing", + "latitude_deg": "43.085833", + "longitude_deg": "-71.466944", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Hooksett", + "scheduled_service": "no", + "gps_code": "37NH", + "local_code": "37NH" + }, + { + "id": "10244", + "ident": "37NJ", + "type": "heliport", + "name": "Deepwater Heliport", + "latitude_deg": "39.697601318359375", + "longitude_deg": "-75.49490356445312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Deepwater", + "scheduled_service": "no", + "gps_code": "37NJ", + "local_code": "37NJ" + }, + { + "id": "10245", + "ident": "37NY", + "type": "heliport", + "name": "Cuba Memorial Hospital Heliport", + "latitude_deg": "42.2209014893", + "longitude_deg": "-78.26640319820001", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Cuba", + "scheduled_service": "no", + "gps_code": "37NY", + "local_code": "37NY" + }, + { + "id": "10246", + "ident": "37OH", + "type": "heliport", + "name": "Southwest General Hospital Heliport", + "latitude_deg": "41.371141", + "longitude_deg": "-81.831367", + "elevation_ft": "792", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Middleburg Heights", + "scheduled_service": "no", + "gps_code": "37OH", + "local_code": "37OH" + }, + { + "id": "10247", + "ident": "37OI", + "type": "closed", + "name": "Cole Airfield", + "latitude_deg": "40.825102", + "longitude_deg": "-82.796799", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Crestline", + "scheduled_service": "no", + "keywords": "37OI" + }, + { + "id": "10248", + "ident": "37OK", + "type": "heliport", + "name": "Mercy Hospital Heliport", + "latitude_deg": "34.777329", + "longitude_deg": "-96.633577", + "elevation_ft": "1072", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ada", + "scheduled_service": "no", + "gps_code": "37OK", + "local_code": "37OK", + "keywords": "Valley View Hospital" + }, + { + "id": "10249", + "ident": "37OR", + "type": "small_airport", + "name": "Vey Sheep Ranch Airport", + "latitude_deg": "45.09320068359375", + "longitude_deg": "-118.39900207519531", + "elevation_ft": "4158", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Starkey", + "scheduled_service": "no", + "gps_code": "37OR", + "local_code": "37OR" + }, + { + "id": "10250", + "ident": "37PA", + "type": "small_airport", + "name": "Roadcap Airport", + "latitude_deg": "40.78839874267578", + "longitude_deg": "-77.1061019897461", + "elevation_ft": "731", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Middleburg", + "scheduled_service": "no", + "gps_code": "37PA", + "local_code": "37PA" + }, + { + "id": "45750", + "ident": "37PN", + "type": "heliport", + "name": "UPMC Hanover Hospital Heliport", + "latitude_deg": "39.808025", + "longitude_deg": "-76.982344", + "elevation_ft": "672", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hanover", + "scheduled_service": "no", + "gps_code": "37PN", + "local_code": "37PN", + "keywords": "Hanover Hospital" + }, + { + "id": "10251", + "ident": "37S", + "type": "small_airport", + "name": "Fort Peck Airport", + "latitude_deg": "48.005001068115234", + "longitude_deg": "-106.48200225830078", + "elevation_ft": "2290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Fort Peck", + "scheduled_service": "no", + "gps_code": "37S", + "local_code": "37S" + }, + { + "id": "10252", + "ident": "37TA", + "type": "heliport", + "name": "Texas Health Presbyterian Hospital Dallas Heliport", + "latitude_deg": "32.880451", + "longitude_deg": "-96.761044", + "elevation_ft": "563", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "37TA", + "local_code": "37TA" + }, + { + "id": "10253", + "ident": "37TE", + "type": "small_airport", + "name": "Johnnie Volk Field", + "latitude_deg": "29.360200881958008", + "longitude_deg": "-95.00990295410156", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hitchcock", + "scheduled_service": "no", + "gps_code": "37TE", + "local_code": "37TE" + }, + { + "id": "10254", + "ident": "37TN", + "type": "heliport", + "name": "University of Tennessee Lifestar Sweetwater Heliport", + "latitude_deg": "35.609402", + "longitude_deg": "-84.455299", + "elevation_ft": "968", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Sweetwater", + "scheduled_service": "no", + "gps_code": "37TN", + "local_code": "37TN" + }, + { + "id": "10255", + "ident": "37TS", + "type": "small_airport", + "name": "J Linn Airport", + "latitude_deg": "32.9907", + "longitude_deg": "-96.040002", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "37TS", + "local_code": "37TS", + "keywords": "Skinner Airport" + }, + { + "id": "10256", + "ident": "37TX", + "type": "small_airport", + "name": "Yates Field", + "latitude_deg": "31.32159996032715", + "longitude_deg": "-98.8656005859375", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Saba", + "scheduled_service": "no", + "gps_code": "37TX", + "local_code": "37TX" + }, + { + "id": "10257", + "ident": "37VA", + "type": "heliport", + "name": "St. Mary's Hospital Heliport", + "latitude_deg": "37.570278", + "longitude_deg": "-77.502778", + "elevation_ft": "263", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "37VA", + "local_code": "37VA" + }, + { + "id": "10258", + "ident": "37VT", + "type": "small_airport", + "name": "Brisson Airport", + "latitude_deg": "43.86859893798828", + "longitude_deg": "-73.31809997558594", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Shoreham", + "scheduled_service": "no", + "gps_code": "37VT", + "local_code": "37VT" + }, + { + "id": "10259", + "ident": "37WA", + "type": "small_airport", + "name": "Baumann Farm Inc. Airport", + "latitude_deg": "46.8317985534668", + "longitude_deg": "-118.46199798583984", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Washtucna", + "scheduled_service": "no", + "gps_code": "37WA", + "local_code": "37WA" + }, + { + "id": "10260", + "ident": "37WI", + "type": "small_airport", + "name": "Docken Field", + "latitude_deg": "42.9911003112793", + "longitude_deg": "-89.75350189208984", + "elevation_ft": "1230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Mount Horeb", + "scheduled_service": "no", + "gps_code": "37WI", + "local_code": "37WI" + }, + { + "id": "10261", + "ident": "37X", + "type": "small_airport", + "name": "Skydive Houston Airport", + "latitude_deg": "29.99340057373047", + "longitude_deg": "-95.9302978515625", + "elevation_ft": "235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waller", + "scheduled_service": "no", + "gps_code": "37X", + "local_code": "37X", + "keywords": "3XS7" + }, + { + "id": "10262", + "ident": "37XS", + "type": "small_airport", + "name": "Lake Whitney Country Club Airport", + "latitude_deg": "31.99155", + "longitude_deg": "-97.33896", + "elevation_ft": "627", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Whitney", + "scheduled_service": "no", + "gps_code": "37XS", + "local_code": "37XS" + }, + { + "id": "10263", + "ident": "38AK", + "type": "small_airport", + "name": "Mels Airport", + "latitude_deg": "61.5625", + "longitude_deg": "-149.66799926757812", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "38AK", + "local_code": "38AK" + }, + { + "id": "10264", + "ident": "38AR", + "type": "small_airport", + "name": "Williams Field", + "latitude_deg": "36.11880111694336", + "longitude_deg": "-94.46820068359375", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Siloam Springs", + "scheduled_service": "no", + "gps_code": "38AR", + "local_code": "38AR" + }, + { + "id": "10265", + "ident": "38AZ", + "type": "closed", + "name": "Peabody Bedard Field", + "latitude_deg": "36.471699", + "longitude_deg": "-110.417999", + "elevation_ft": "6564", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Kayenta", + "scheduled_service": "no", + "keywords": "38AZ" + }, + { + "id": "10267", + "ident": "38C", + "type": "small_airport", + "name": "Cain Field", + "latitude_deg": "43.599998474121094", + "longitude_deg": "-85.49310302734375", + "elevation_ft": "889", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Stanwood", + "scheduled_service": "no", + "gps_code": "38C", + "local_code": "38C" + }, + { + "id": "10268", + "ident": "38CA", + "type": "closed", + "name": "Cashen Airport", + "latitude_deg": "35.691601", + "longitude_deg": "-119.488998", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Wasco", + "scheduled_service": "no", + "gps_code": "38CA", + "local_code": "38CA" + }, + { + "id": "10269", + "ident": "38CL", + "type": "small_airport", + "name": "Riego Flight Strip", + "latitude_deg": "38.75410079956055", + "longitude_deg": "-121.56300354003906", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Verona", + "scheduled_service": "no", + "gps_code": "38CL", + "local_code": "38CL" + }, + { + "id": "10270", + "ident": "38CN", + "type": "small_airport", + "name": "Sanborn Airport", + "latitude_deg": "39.10929870605469", + "longitude_deg": "-121.88400268554688", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Meridian", + "scheduled_service": "no", + "gps_code": "38CN", + "local_code": "38CN" + }, + { + "id": "10271", + "ident": "38CO", + "type": "heliport", + "name": "Basin Clinic Heliport", + "latitude_deg": "38.21860122680664", + "longitude_deg": "-108.2760009765625", + "elevation_ft": "5400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Naturita", + "scheduled_service": "no", + "gps_code": "38CO", + "local_code": "38CO" + }, + { + "id": "10272", + "ident": "38FA", + "type": "small_airport", + "name": "Blue Springs Airport", + "latitude_deg": "30.48349952697754", + "longitude_deg": "-83.2499008178711", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "38FA", + "local_code": "38FA" + }, + { + "id": "10273", + "ident": "38FD", + "type": "heliport", + "name": "Griffin's Main Office Heliport", + "latitude_deg": "27.73699951171875", + "longitude_deg": "-81.53199768066406", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Frostproof", + "scheduled_service": "no", + "gps_code": "38FD", + "local_code": "38FD" + }, + { + "id": "10274", + "ident": "38FL", + "type": "heliport", + "name": "Flagler Hospital Heliport", + "latitude_deg": "29.862199783325195", + "longitude_deg": "-81.31670379638672", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St Augustine", + "scheduled_service": "no", + "gps_code": "38FL", + "local_code": "38FL" + }, + { + "id": "10275", + "ident": "38GA", + "type": "heliport", + "name": "Lanier Park Hospital Heliport", + "latitude_deg": "34.319698333740234", + "longitude_deg": "-83.79669952392578", + "elevation_ft": "1171", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Gainesville", + "scheduled_service": "no", + "gps_code": "38GA", + "local_code": "38GA" + }, + { + "id": "10276", + "ident": "38I", + "type": "small_airport", + "name": "Weller Airport", + "latitude_deg": "40.091202", + "longitude_deg": "-83.6894", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Urbana", + "scheduled_service": "no", + "gps_code": "K38I", + "local_code": "38I" + }, + { + "id": "45949", + "ident": "38ID", + "type": "small_airport", + "name": "Sky Ranch North Airport", + "latitude_deg": "43.5094444444", + "longitude_deg": "-116.667916667", + "elevation_ft": "2750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Nampa", + "scheduled_service": "no", + "gps_code": "38ID", + "local_code": "38ID" + }, + { + "id": "45417", + "ident": "38II", + "type": "small_airport", + "name": "Hampton Field", + "latitude_deg": "39.72861", + "longitude_deg": "-86.822484", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Greencastle", + "scheduled_service": "no", + "gps_code": "38II", + "local_code": "38II" + }, + { + "id": "10277", + "ident": "38IL", + "type": "closed", + "name": "Abraham Lincoln Memorial Hosp Heliport", + "latitude_deg": "40.149799", + "longitude_deg": "-89.371201", + "elevation_ft": "593", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lincoln", + "scheduled_service": "no", + "keywords": "38IL" + }, + { + "id": "10278", + "ident": "38IN", + "type": "small_airport", + "name": "Fuller Field", + "latitude_deg": "39.902000427246094", + "longitude_deg": "-86.36309814453125", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Brownsburg", + "scheduled_service": "no", + "gps_code": "38IN", + "local_code": "38IN" + }, + { + "id": "10279", + "ident": "38IS", + "type": "small_airport", + "name": "Winchester Airport", + "latitude_deg": "40.582000732421875", + "longitude_deg": "-91.3584976196289", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Nauvoo", + "scheduled_service": "no", + "gps_code": "38IS", + "local_code": "38IS" + }, + { + "id": "10280", + "ident": "38K", + "type": "small_airport", + "name": "Lucas Airport", + "latitude_deg": "39.0620002746582", + "longitude_deg": "-98.52529907226562", + "elevation_ft": "1485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Lucas", + "scheduled_service": "no", + "gps_code": "38K", + "local_code": "38K" + }, + { + "id": "10281", + "ident": "38KS", + "type": "closed", + "name": "Savute Airport", + "latitude_deg": "37.777802", + "longitude_deg": "-97.277496", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Kechi", + "scheduled_service": "no", + "keywords": "38KS" + }, + { + "id": "10282", + "ident": "38KY", + "type": "heliport", + "name": "Grant County Hospital Heliport", + "latitude_deg": "38.63589859008789", + "longitude_deg": "-84.568603515625", + "elevation_ft": "956", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Williamstown", + "scheduled_service": "no", + "gps_code": "38KY", + "local_code": "38KY" + }, + { + "id": "10283", + "ident": "38LA", + "type": "small_airport", + "name": "Whiteville Airport", + "latitude_deg": "30.784400939941406", + "longitude_deg": "-92.18229675292969", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Ville Platte", + "scheduled_service": "no", + "gps_code": "38LA", + "local_code": "38LA" + }, + { + "id": "10284", + "ident": "38LL", + "type": "heliport", + "name": "Gateway Regional Medical Center Heliport", + "latitude_deg": "38.70830154418945", + "longitude_deg": "-90.1438980102539", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Granite City", + "scheduled_service": "no", + "gps_code": "38LL", + "local_code": "38LL" + }, + { + "id": "10285", + "ident": "38LS", + "type": "small_airport", + "name": "Ace Flying Airport", + "latitude_deg": "30.2367000579834", + "longitude_deg": "-91.82969665527344", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Parks", + "scheduled_service": "no", + "gps_code": "38LS", + "local_code": "38LS" + }, + { + "id": "10286", + "ident": "38MI", + "type": "small_airport", + "name": "Chicora Field", + "latitude_deg": "42.46689987182617", + "longitude_deg": "-85.97920227050781", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Allegan", + "scheduled_service": "no", + "gps_code": "38MI", + "local_code": "38MI" + }, + { + "id": "10287", + "ident": "38MN", + "type": "small_airport", + "name": "Chandler Personal Use Airport", + "latitude_deg": "47.41109848022461", + "longitude_deg": "-94.77249908447266", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Bemidji", + "scheduled_service": "no", + "gps_code": "38MN", + "local_code": "38MN" + }, + { + "id": "10288", + "ident": "38MO", + "type": "small_airport", + "name": "Barber Airport", + "latitude_deg": "39.25559997558594", + "longitude_deg": "-90.85569763183594", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Annada", + "scheduled_service": "no", + "gps_code": "38MO", + "local_code": "38MO" + }, + { + "id": "334239", + "ident": "38MT", + "type": "heliport", + "name": "AV8-ORR Helicopters Heliport", + "latitude_deg": "46.227961", + "longitude_deg": "-114.157333", + "elevation_ft": "3600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "38MT", + "local_code": "38MT" + }, + { + "id": "10289", + "ident": "38N", + "type": "small_airport", + "name": "Smyrna Airport", + "latitude_deg": "39.3036003112793", + "longitude_deg": "-75.58390045166016", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Smyrna", + "scheduled_service": "no", + "gps_code": "38N", + "local_code": "38N" + }, + { + "id": "10290", + "ident": "38NC", + "type": "closed", + "name": "Annie Penn Hospital Heliport", + "latitude_deg": "36.353901", + "longitude_deg": "-79.666702", + "elevation_ft": "816", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Reidsville", + "scheduled_service": "no", + "keywords": "38NC" + }, + { + "id": "10291", + "ident": "38ND", + "type": "small_airport", + "name": "Schroeder Private Airport", + "latitude_deg": "47.097999572753906", + "longitude_deg": "-97.40119934082031", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Erie", + "scheduled_service": "no", + "gps_code": "38ND", + "local_code": "38ND" + }, + { + "id": "10292", + "ident": "38NE", + "type": "small_airport", + "name": "Boardman Aerial Airport", + "latitude_deg": "40.75360107421875", + "longitude_deg": "-97.85140228271484", + "elevation_ft": "1720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Henderson", + "scheduled_service": "no", + "gps_code": "38NE", + "local_code": "38NE" + }, + { + "id": "10293", + "ident": "38NJ", + "type": "heliport", + "name": "Wjrz Radio Heliport", + "latitude_deg": "39.69929885864258", + "longitude_deg": "-74.23429870605469", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Manahawkin", + "scheduled_service": "no", + "gps_code": "38NJ", + "local_code": "38NJ" + }, + { + "id": "10294", + "ident": "38NY", + "type": "small_airport", + "name": "Greenlawn Farm Airport", + "latitude_deg": "42.54869842529297", + "longitude_deg": "-76.95800018310547", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Dundee", + "scheduled_service": "no", + "gps_code": "38NY", + "local_code": "38NY" + }, + { + "id": "10295", + "ident": "38OH", + "type": "small_airport", + "name": "Industry Air Park", + "latitude_deg": "39.84479904174805", + "longitude_deg": "-82.57959747314453", + "elevation_ft": "877", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Baltimore", + "scheduled_service": "no", + "gps_code": "38OH", + "local_code": "38OH" + }, + { + "id": "10296", + "ident": "38OI", + "type": "small_airport", + "name": "Ronshausen Airport", + "latitude_deg": "39.68510055541992", + "longitude_deg": "-83.0718994140625", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Darbyville", + "scheduled_service": "no", + "gps_code": "38OI", + "local_code": "38OI" + }, + { + "id": "10297", + "ident": "38OK", + "type": "heliport", + "name": "Duncan Regional Hospital Heliport", + "latitude_deg": "34.52135", + "longitude_deg": "-97.976862", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Duncan", + "scheduled_service": "no", + "gps_code": "38OK", + "local_code": "38OK" + }, + { + "id": "10298", + "ident": "38OR", + "type": "heliport", + "name": "Pge Boardman Heliport", + "latitude_deg": "45.69453333", + "longitude_deg": "-119.8087556", + "elevation_ft": "682", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Boardman", + "scheduled_service": "no", + "gps_code": "38OR", + "local_code": "38OR" + }, + { + "id": "10299", + "ident": "38PA", + "type": "small_airport", + "name": "Aerequus Airport", + "latitude_deg": "40.390899658203125", + "longitude_deg": "-75.01409912109375", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Solebury", + "scheduled_service": "no", + "gps_code": "38PA", + "local_code": "38PA" + }, + { + "id": "10300", + "ident": "38PN", + "type": "small_airport", + "name": "Waisley Airport", + "latitude_deg": "42.000099182128906", + "longitude_deg": "-80.16649627685547", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mc Kean", + "scheduled_service": "no", + "gps_code": "38PN", + "local_code": "38PN" + }, + { + "id": "45778", + "ident": "38SC", + "type": "small_airport", + "name": "La Dolce Terra Airport", + "latitude_deg": "35.177778", + "longitude_deg": "-81.747778", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Gaffney", + "scheduled_service": "no", + "gps_code": "38SC", + "local_code": "38SC" + }, + { + "id": "10301", + "ident": "38TA", + "type": "closed", + "name": "Kurio Heliport", + "latitude_deg": "29.801901", + "longitude_deg": "-95.565498", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "keywords": "38TA" + }, + { + "id": "10302", + "ident": "38TE", + "type": "heliport", + "name": "John S Dunn Heliport", + "latitude_deg": "29.714123", + "longitude_deg": "-95.395047", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "38TE", + "local_code": "38TE" + }, + { + "id": "10303", + "ident": "38TN", + "type": "small_airport", + "name": "Sugar Grove Airport", + "latitude_deg": "36.625301361083984", + "longitude_deg": "-86.27330017089844", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Westmoreland", + "scheduled_service": "no", + "gps_code": "38TN", + "local_code": "38TN" + }, + { + "id": "10304", + "ident": "38TS", + "type": "heliport", + "name": "Steeplechase Heliport", + "latitude_deg": "29.92564", + "longitude_deg": "-95.58973", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "38TS", + "local_code": "38TS" + }, + { + "id": "430406", + "ident": "38TT", + "type": "small_airport", + "name": "Olympus Airport", + "latitude_deg": "33.167819", + "longitude_deg": "-95.980372", + "elevation_ft": "613", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Campbell", + "scheduled_service": "no", + "gps_code": "38TT", + "local_code": "38TT" + }, + { + "id": "10305", + "ident": "38TX", + "type": "closed", + "name": "Lyndon B Johnson General Hospital Heliport", + "latitude_deg": "29.8127", + "longitude_deg": "-95.311302", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "345391", + "ident": "38UT", + "type": "small_airport", + "name": "Hoytsville Airport", + "latitude_deg": "40.877415", + "longitude_deg": "-111.375468", + "elevation_ft": "5800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Coalville", + "scheduled_service": "no", + "gps_code": "38UT", + "local_code": "38UT" + }, + { + "id": "10306", + "ident": "38V", + "type": "small_airport", + "name": "Arthur Municipal Airport", + "latitude_deg": "41.562546", + "longitude_deg": "-101.711929", + "elevation_ft": "3646", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Arthur", + "scheduled_service": "no", + "local_code": "NE33", + "keywords": "38V" + }, + { + "id": "10307", + "ident": "38VA", + "type": "heliport", + "name": "State Police Division Three Heliport", + "latitude_deg": "37.36040115356445", + "longitude_deg": "-78.868896484375", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Appomattox", + "scheduled_service": "no", + "gps_code": "38VA", + "local_code": "38VA" + }, + { + "id": "10308", + "ident": "38W", + "type": "small_airport", + "name": "Lynden Airport", + "latitude_deg": "48.95589828491211", + "longitude_deg": "-122.45800018310547", + "elevation_ft": "106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Lynden", + "scheduled_service": "no", + "gps_code": "38W", + "local_code": "38W" + }, + { + "id": "10309", + "ident": "38WA", + "type": "small_airport", + "name": "Blakely Island Airport", + "latitude_deg": "48.578998565700005", + "longitude_deg": "-122.825996399", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Blakely Island", + "scheduled_service": "no", + "gps_code": "38WA", + "iata_code": "BYW", + "local_code": "38WA" + }, + { + "id": "10310", + "ident": "38WI", + "type": "small_airport", + "name": "Northport Airport", + "latitude_deg": "44.38859939575195", + "longitude_deg": "-88.85260009765625", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Royalton", + "scheduled_service": "no", + "gps_code": "38WI", + "local_code": "38WI" + }, + { + "id": "10311", + "ident": "38WV", + "type": "small_airport", + "name": "River's Edge Farm Airport", + "latitude_deg": "39.32529830932617", + "longitude_deg": "-78.42559814453125", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Capon Bridge", + "scheduled_service": "no", + "gps_code": "38WV", + "local_code": "38WV" + }, + { + "id": "351618", + "ident": "38XA", + "type": "small_airport", + "name": "Walk-Air Airport", + "latitude_deg": "32.408055", + "longitude_deg": "-95.389444", + "elevation_ft": "474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tyler", + "scheduled_service": "no", + "gps_code": "38XA", + "local_code": "38XA" + }, + { + "id": "10312", + "ident": "38XS", + "type": "small_airport", + "name": "San Rafael Ranch Airport", + "latitude_deg": "26.815200805664062", + "longitude_deg": "-98.47930145263672", + "elevation_ft": "312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Santa Elena", + "scheduled_service": "no", + "gps_code": "38XS", + "local_code": "38XS" + }, + { + "id": "10313", + "ident": "39AK", + "type": "small_airport", + "name": "Kroenke Strip", + "latitude_deg": "61.586021", + "longitude_deg": "-149.235996", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "39AK", + "local_code": "39AK", + "keywords": "Gilmore Strip" + }, + { + "id": "10314", + "ident": "39AR", + "type": "closed", + "name": "Twin Cities Airport", + "latitude_deg": "35.417198", + "longitude_deg": "-94.326401", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Van Buren", + "scheduled_service": "no", + "keywords": "39AR" + }, + { + "id": "10315", + "ident": "39AZ", + "type": "closed", + "name": "Lukachukai Airport", + "latitude_deg": "36.400595", + "longitude_deg": "-109.258218", + "elevation_ft": "6433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Lukachukai", + "scheduled_service": "no", + "gps_code": "39AZ", + "local_code": "39AZ" + }, + { + "id": "10316", + "ident": "39B", + "type": "seaplane_base", + "name": "Nugent Chamberlain Lake Seaplane Base", + "latitude_deg": "46.21670150756836", + "longitude_deg": "-69.24949645996094", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Chesuncook", + "scheduled_service": "no", + "gps_code": "39B", + "local_code": "39B" + }, + { + "id": "10317", + "ident": "39CA", + "type": "heliport", + "name": "Sce Palm Springs District Heliport", + "latitude_deg": "33.786399841308594", + "longitude_deg": "-117.46600341796875", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Cathedral City", + "scheduled_service": "no", + "gps_code": "39CA", + "local_code": "39CA" + }, + { + "id": "10318", + "ident": "39CL", + "type": "heliport", + "name": "Castle Heliport", + "latitude_deg": "33.787899017333984", + "longitude_deg": "-117.2300033569336", + "elevation_ft": "1459", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Perris", + "scheduled_service": "no", + "gps_code": "39CL", + "local_code": "39CL" + }, + { + "id": "347048", + "ident": "39CN", + "type": "heliport", + "name": "Adventist Health Ukiah Valley Heliport", + "latitude_deg": "39.153027", + "longitude_deg": "-123.202127", + "elevation_ft": "608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ukiah", + "scheduled_service": "no", + "gps_code": "39CN", + "local_code": "39CN" + }, + { + "id": "10319", + "ident": "39CO", + "type": "small_airport", + "name": "Flying M Ranch Airport", + "latitude_deg": "38.50354", + "longitude_deg": "-107.72149", + "elevation_ft": "7200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Montrose", + "scheduled_service": "no", + "gps_code": "39CO", + "local_code": "39CO" + }, + { + "id": "331718", + "ident": "39DE", + "type": "heliport", + "name": "Bayhealth Medical Center Heliport", + "latitude_deg": "38.8867", + "longitude_deg": "-75.390969", + "elevation_ft": "202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "39DE", + "local_code": "39DE" + }, + { + "id": "10320", + "ident": "39FA", + "type": "small_airport", + "name": "Sanders Ranch Airport", + "latitude_deg": "29.6625", + "longitude_deg": "-82.0093", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Hawthorne", + "scheduled_service": "no", + "gps_code": "39FA", + "local_code": "39FA" + }, + { + "id": "10321", + "ident": "39FD", + "type": "small_airport", + "name": "Ancient Oaks Airport", + "latitude_deg": "29.729400634765625", + "longitude_deg": "-83.35350036621094", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Steinhatchee", + "scheduled_service": "no", + "gps_code": "39FD", + "local_code": "39FD" + }, + { + "id": "10322", + "ident": "39FL", + "type": "heliport", + "name": "Palm Beach Sheriff's Range Heliport", + "latitude_deg": "26.716999053955078", + "longitude_deg": "-80.19979858398438", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "West Palm Beach", + "scheduled_service": "no", + "gps_code": "39FL", + "local_code": "39FL" + }, + { + "id": "10323", + "ident": "39G", + "type": "small_airport", + "name": "Avoca Airport", + "latitude_deg": "43.029998779299994", + "longitude_deg": "-82.66940307620001", + "elevation_ft": "726", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Avoca", + "scheduled_service": "no", + "gps_code": "39G", + "local_code": "39G" + }, + { + "id": "10324", + "ident": "39GA", + "type": "heliport", + "name": "Wayne Memorial Hospital Heliport", + "latitude_deg": "31.601375", + "longitude_deg": "-81.898524", + "elevation_ft": "99", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Jessup", + "scheduled_service": "no", + "gps_code": "39GA", + "local_code": "39GA", + "keywords": "Air Evac 96 Heliport" + }, + { + "id": "10325", + "ident": "39IA", + "type": "small_airport", + "name": "Husband Field", + "latitude_deg": "41.67940139770508", + "longitude_deg": "-94.02020263671875", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Dallas Center", + "scheduled_service": "no", + "gps_code": "39IA", + "local_code": "39IA" + }, + { + "id": "10326", + "ident": "39ID", + "type": "closed", + "name": "Albion Municipal Airport", + "latitude_deg": "42.4007", + "longitude_deg": "-113.5603", + "elevation_ft": "4777", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Albion", + "scheduled_service": "no", + "gps_code": "39ID", + "local_code": "39ID", + "keywords": "U40" + }, + { + "id": "10327", + "ident": "39II", + "type": "small_airport", + "name": "Miller Field", + "latitude_deg": "41.514801025390625", + "longitude_deg": "-85.55220031738281", + "elevation_ft": "957", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Topeka", + "scheduled_service": "no", + "gps_code": "39II", + "local_code": "39II" + }, + { + "id": "10328", + "ident": "39IL", + "type": "closed", + "name": "Mason Airport", + "latitude_deg": "40.093899", + "longitude_deg": "-89.3629", + "elevation_ft": "591", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lincoln", + "scheduled_service": "no", + "keywords": "39IL" + }, + { + "id": "10329", + "ident": "39IN", + "type": "small_airport", + "name": "Roberts Field", + "latitude_deg": "40.00230026245117", + "longitude_deg": "-85.42890167236328", + "elevation_ft": "1085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Sulphur Springs", + "scheduled_service": "no", + "gps_code": "39IN", + "local_code": "39IN" + }, + { + "id": "10330", + "ident": "39IS", + "type": "closed", + "name": "Hagi Landing Area Airport", + "latitude_deg": "41.110001", + "longitude_deg": "-88.795601", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Streator", + "scheduled_service": "no", + "keywords": "39IS" + }, + { + "id": "10331", + "ident": "39K", + "type": "small_airport", + "name": "Pomona Lake Airport", + "latitude_deg": "38.692001", + "longitude_deg": "-95.690002", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Lyndon", + "scheduled_service": "no", + "gps_code": "K39K", + "local_code": "39K" + }, + { + "id": "10332", + "ident": "39KS", + "type": "closed", + "name": "Rolling Meadows Airport", + "latitude_deg": "38.786098", + "longitude_deg": "-95.307503", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Worden", + "scheduled_service": "no", + "keywords": "39KS" + }, + { + "id": "10333", + "ident": "39KY", + "type": "heliport", + "name": "Somerset-Pulaski Co EMS Heliport", + "latitude_deg": "37.08539962769999", + "longitude_deg": "-84.6258010864", + "elevation_ft": "993", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Somerset", + "scheduled_service": "no", + "gps_code": "39KY", + "local_code": "39KY" + }, + { + "id": "10334", + "ident": "39LA", + "type": "small_airport", + "name": "Whitaker Ultralightport", + "latitude_deg": "30.58833333", + "longitude_deg": "-92.23055556", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Chataignier", + "scheduled_service": "no", + "gps_code": "39LA", + "local_code": "39LA" + }, + { + "id": "45403", + "ident": "39LL", + "type": "small_airport", + "name": "Sullivan Airport", + "latitude_deg": "40.401389", + "longitude_deg": "-91.303056", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "39LL", + "local_code": "39LL" + }, + { + "id": "350183", + "ident": "39MD", + "type": "small_airport", + "name": "Barton Hall Airfield", + "latitude_deg": "38.274989", + "longitude_deg": "-76.724047", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Leonardtown", + "scheduled_service": "no", + "gps_code": "39MD", + "local_code": "39MD" + }, + { + "id": "328922", + "ident": "39ME", + "type": "heliport", + "name": "Maine Coast Memorial Heliport", + "latitude_deg": "44.5465528", + "longitude_deg": "-68.4173944", + "elevation_ft": "161", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Ellsworth", + "scheduled_service": "no", + "gps_code": "39ME", + "local_code": "39ME" + }, + { + "id": "10335", + "ident": "39MI", + "type": "small_airport", + "name": "Huber Airport", + "latitude_deg": "46.168800354003906", + "longitude_deg": "-88.17240142822266", + "elevation_ft": "1418", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Crystal Falls", + "scheduled_service": "no", + "gps_code": "39MI", + "local_code": "39MI" + }, + { + "id": "10336", + "ident": "39MN", + "type": "small_airport", + "name": "Anthony Private Airport", + "latitude_deg": "47.03689956665039", + "longitude_deg": "-91.71050262451172", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Two Harbors", + "scheduled_service": "no", + "gps_code": "39MN", + "local_code": "39MN" + }, + { + "id": "10337", + "ident": "39MO", + "type": "small_airport", + "name": "Gardner Airport", + "latitude_deg": "37.11869812011719", + "longitude_deg": "-93.20490264892578", + "elevation_ft": "1325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "39MO", + "local_code": "39MO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gardner_Airport_(Missouri)" + }, + { + "id": "10338", + "ident": "39NC", + "type": "heliport", + "name": "Rebel Field", + "latitude_deg": "35.324582", + "longitude_deg": "-81.946798", + "elevation_ft": "1078", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Rutherfordton", + "scheduled_service": "no", + "gps_code": "39NC", + "local_code": "39NC" + }, + { + "id": "10339", + "ident": "39NJ", + "type": "heliport", + "name": "New Jersey State Police Troop B Headquarters Heliport", + "latitude_deg": "40.899034", + "longitude_deg": "-74.229314", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Totowa", + "scheduled_service": "no", + "gps_code": "39NJ", + "local_code": "39NJ" + }, + { + "id": "10340", + "ident": "39NY", + "type": "heliport", + "name": "Print Pad Heliport", + "latitude_deg": "40.65330123901367", + "longitude_deg": "-73.57360076904297", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Freeport", + "scheduled_service": "no", + "gps_code": "39NY", + "local_code": "39NY" + }, + { + "id": "10341", + "ident": "39OH", + "type": "small_airport", + "name": "Crosswind Meadows Airport", + "latitude_deg": "40.81230163574219", + "longitude_deg": "-81.05509948730469", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Minerva", + "scheduled_service": "no", + "gps_code": "39OH", + "local_code": "39OH" + }, + { + "id": "10342", + "ident": "39OK", + "type": "small_airport", + "name": "Paradise Air Haven Airport", + "latitude_deg": "35.11149978637695", + "longitude_deg": "-97.47930145263672", + "elevation_ft": "1205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Goldsby", + "scheduled_service": "no", + "gps_code": "39OK", + "local_code": "39OK" + }, + { + "id": "10343", + "ident": "39OR", + "type": "heliport", + "name": "Croman Heliport", + "latitude_deg": "42.42919921875", + "longitude_deg": "-122.8759994506836", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "White City", + "scheduled_service": "no", + "gps_code": "39OR", + "local_code": "39OR" + }, + { + "id": "10344", + "ident": "39P", + "type": "small_airport", + "name": "Strom Field", + "latitude_deg": "46.5504", + "longitude_deg": "-122.266998", + "elevation_ft": "941", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Morton", + "scheduled_service": "no", + "local_code": "39P", + "keywords": "WA39" + }, + { + "id": "10345", + "ident": "39PA", + "type": "closed", + "name": "Gehris Airport", + "latitude_deg": "40.317299", + "longitude_deg": "-75.290497", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hatfield", + "scheduled_service": "no", + "keywords": "39PA" + }, + { + "id": "10346", + "ident": "39PN", + "type": "small_airport", + "name": "Nelson's Run Airport", + "latitude_deg": "41.21590042114258", + "longitude_deg": "-80.19760131835938", + "elevation_ft": "1305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mercer", + "scheduled_service": "no", + "gps_code": "39PN", + "local_code": "39PN" + }, + { + "id": "327865", + "ident": "39PS", + "type": "heliport", + "name": "Stat Medevac Harborcreek Heliport", + "latitude_deg": "42.172", + "longitude_deg": "-79.942833", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Harborcreek", + "scheduled_service": "no", + "gps_code": "39PS", + "local_code": "39PS" + }, + { + "id": "10347", + "ident": "39R", + "type": "small_airport", + "name": "Flyin' B Airport", + "latitude_deg": "29.537700653076172", + "longitude_deg": "-95.42379760742188", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "39R", + "local_code": "39R" + }, + { + "id": "333411", + "ident": "39SC", + "type": "small_airport", + "name": "Rizzy Ridge Airport", + "latitude_deg": "35.158436", + "longitude_deg": "-81.2256", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Clover", + "scheduled_service": "no", + "gps_code": "39SC", + "local_code": "39SC" + }, + { + "id": "10348", + "ident": "39T", + "type": "small_airport", + "name": "Tripp Creek Airport", + "latitude_deg": "43.06480026245117", + "longitude_deg": "-84.48919677734375", + "elevation_ft": "717", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "St Johns", + "scheduled_service": "no", + "gps_code": "39T", + "local_code": "39T" + }, + { + "id": "10349", + "ident": "39TA", + "type": "small_airport", + "name": "Flying Tigers Airport", + "latitude_deg": "33.6525993347168", + "longitude_deg": "-95.65579986572266", + "elevation_ft": "588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "39TA", + "local_code": "39TA" + }, + { + "id": "10350", + "ident": "39TE", + "type": "small_airport", + "name": "Seminole Spraying Service Airport", + "latitude_deg": "32.718200683599996", + "longitude_deg": "-102.737998962", + "elevation_ft": "3372", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seminole", + "scheduled_service": "no", + "gps_code": "39TE", + "local_code": "39TE" + }, + { + "id": "45796", + "ident": "39TN", + "type": "small_airport", + "name": "Big Sandy Airpark", + "latitude_deg": "36.272649", + "longitude_deg": "-88.040646", + "elevation_ft": "632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Big Sandy", + "scheduled_service": "no", + "gps_code": "39TN", + "local_code": "39TN" + }, + { + "id": "10351", + "ident": "39TS", + "type": "heliport", + "name": "Hearthstone Heliport", + "latitude_deg": "29.87969970703125", + "longitude_deg": "-95.63079833984375", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "39TS", + "local_code": "39TS" + }, + { + "id": "10352", + "ident": "39TX", + "type": "heliport", + "name": "Sony Microelectronics Helistop", + "latitude_deg": "29.444700241088867", + "longitude_deg": "-98.63999938964844", + "elevation_ft": "765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "39TX", + "local_code": "39TX" + }, + { + "id": "10353", + "ident": "39VA", + "type": "closed", + "name": "Kingstowne Heliport", + "latitude_deg": "38.7714", + "longitude_deg": "-77.139397", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Alexandria", + "scheduled_service": "no", + "keywords": "39VA" + }, + { + "id": "10354", + "ident": "39WA", + "type": "small_airport", + "name": "Tailskid Ranch Airport", + "latitude_deg": "47.851898193359375", + "longitude_deg": "-117.78199768066406", + "elevation_ft": "1910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tum Tum", + "scheduled_service": "no", + "gps_code": "39WA", + "local_code": "39WA" + }, + { + "id": "10355", + "ident": "39WI", + "type": "small_airport", + "name": "S & S Ranch Airport", + "latitude_deg": "43.48469924926758", + "longitude_deg": "-90.61990356445312", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Viola", + "scheduled_service": "no", + "gps_code": "39WI", + "local_code": "39WI" + }, + { + "id": "349490", + "ident": "39XA", + "type": "heliport", + "name": "Childrens Medical Center Plano Heliport", + "latitude_deg": "33.077694", + "longitude_deg": "-96.801111", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Plano", + "scheduled_service": "no", + "gps_code": "39XA", + "local_code": "39XA" + }, + { + "id": "10356", + "ident": "39XS", + "type": "heliport", + "name": "Kimble Hospital Heliport", + "latitude_deg": "30.49818", + "longitude_deg": "-99.781076", + "elevation_ft": "1749", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Junction", + "scheduled_service": "no", + "gps_code": "39XS", + "local_code": "39XS" + }, + { + "id": "10357", + "ident": "39Z", + "type": "small_airport", + "name": "Flying-A-Ranch Airport", + "latitude_deg": "43.105001", + "longitude_deg": "-86.123702", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Fruitport", + "scheduled_service": "no", + "local_code": "39Z", + "keywords": "MI87" + }, + { + "id": "10358", + "ident": "3A0", + "type": "closed", + "name": "Grove Hill Municipal Airport", + "latitude_deg": "31.689301", + "longitude_deg": "-87.761398", + "elevation_ft": "478", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Grove Hill", + "scheduled_service": "no", + "local_code": "3A0" + }, + { + "id": "10359", + "ident": "3A3", + "type": "seaplane_base", + "name": "Seymour Lake Seaplane Base", + "latitude_deg": "61.6134986877", + "longitude_deg": "-149.666000366", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "3A3", + "local_code": "3A3" + }, + { + "id": "10360", + "ident": "3A9", + "type": "small_airport", + "name": "Arlington Municipal Airport", + "latitude_deg": "44.39440155029297", + "longitude_deg": "-97.12310028076172", + "elevation_ft": "1818", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "3A9", + "local_code": "3A9" + }, + { + "id": "323193", + "ident": "3AA3", + "type": "heliport", + "name": "CVTC Field Heliport", + "latitude_deg": "61.13", + "longitude_deg": "-146.3705554", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Valdez", + "scheduled_service": "no", + "gps_code": "3AA3", + "local_code": "3AA3" + }, + { + "id": "10361", + "ident": "3AK0", + "type": "closed", + "name": "Little Niklason Lake Seaplane Base", + "latitude_deg": "61.626499", + "longitude_deg": "-149.287994", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "keywords": "3AK0" + }, + { + "id": "10362", + "ident": "3AK1", + "type": "closed", + "name": "Deshka Landing Airport", + "latitude_deg": "61.7188", + "longitude_deg": "-150.195999", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Willow", + "scheduled_service": "no", + "keywords": "3AK1" + }, + { + "id": "10363", + "ident": "3AK2", + "type": "small_airport", + "name": "Niklason Lake Estates Airport", + "latitude_deg": "61.627498626708984", + "longitude_deg": "-149.28700256347656", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "3AK2", + "local_code": "3AK2" + }, + { + "id": "10364", + "ident": "3AK3", + "type": "small_airport", + "name": "Songlo Vista Airport", + "latitude_deg": "62.56380081176758", + "longitude_deg": "-150.2209930419922", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Talkeetna", + "scheduled_service": "no", + "gps_code": "3AK3", + "local_code": "3AK3" + }, + { + "id": "10365", + "ident": "3AK4", + "type": "small_airport", + "name": "Johnson Airport", + "latitude_deg": "60.632522", + "longitude_deg": "-151.337657", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kenai", + "scheduled_service": "no", + "gps_code": "3AK4", + "local_code": "3AK4" + }, + { + "id": "10366", + "ident": "3AK5", + "type": "small_airport", + "name": "Drift River Airport", + "latitude_deg": "60.588901519800004", + "longitude_deg": "-152.162002563", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kenai", + "scheduled_service": "no", + "gps_code": "3AK5", + "iata_code": "DRF", + "local_code": "3AK5" + }, + { + "id": "10367", + "ident": "3AK6", + "type": "small_airport", + "name": "B & B Boys Ranch Airport", + "latitude_deg": "61.592949", + "longitude_deg": "-149.268939", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "3AK6", + "local_code": "3AK6" + }, + { + "id": "10368", + "ident": "3AK7", + "type": "small_airport", + "name": "Laub Airport", + "latitude_deg": "61.76559829711914", + "longitude_deg": "-150.33900451660156", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Willow", + "scheduled_service": "no", + "gps_code": "3AK7", + "local_code": "3AK7" + }, + { + "id": "10369", + "ident": "3AK8", + "type": "small_airport", + "name": "Boisselle's Strip", + "latitude_deg": "61.662498474121094", + "longitude_deg": "-149.39199829101562", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "3AK8", + "local_code": "3AK8" + }, + { + "id": "45261", + "ident": "3AK9", + "type": "closed", + "name": "River John Airport", + "latitude_deg": "61.940525", + "longitude_deg": "-151.036069", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Skwentna", + "scheduled_service": "no", + "keywords": "3AK9" + }, + { + "id": "10370", + "ident": "3AL0", + "type": "heliport", + "name": "Fayette County Hospital Heliport", + "latitude_deg": "33.70920181274414", + "longitude_deg": "-87.82360076904297", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fayette", + "scheduled_service": "no", + "gps_code": "3AL0", + "local_code": "3AL0" + }, + { + "id": "10371", + "ident": "3AL1", + "type": "small_airport", + "name": "Flying H Ranch Airport", + "latitude_deg": "31.050399780273438", + "longitude_deg": "-85.685302734375", + "elevation_ft": "264", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Hartford", + "scheduled_service": "no", + "gps_code": "3AL1", + "local_code": "3AL1" + }, + { + "id": "10372", + "ident": "3AL2", + "type": "heliport", + "name": "East Alabama Medical Center Heliport", + "latitude_deg": "32.639198303222656", + "longitude_deg": "-85.4021987915039", + "elevation_ft": "749", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Opelika", + "scheduled_service": "no", + "gps_code": "3AL2", + "local_code": "3AL2" + }, + { + "id": "10373", + "ident": "3AL3", + "type": "heliport", + "name": "Tuscaloosa Police Department Heliport", + "latitude_deg": "33.17409896850586", + "longitude_deg": "-87.55709838867188", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Tuscaloosa", + "scheduled_service": "no", + "gps_code": "3AL3", + "local_code": "3AL3" + }, + { + "id": "10374", + "ident": "3AL4", + "type": "closed", + "name": "Aldot Complex Heliport", + "latitude_deg": "32.413601", + "longitude_deg": "-86.268097", + "elevation_ft": "221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Montgomery", + "scheduled_service": "no", + "keywords": "3AL4" + }, + { + "id": "10375", + "ident": "3AL5", + "type": "small_airport", + "name": "Edwards Farm Airport", + "latitude_deg": "33.83530044555664", + "longitude_deg": "-85.76390075683594", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "3AL5", + "local_code": "3AL5" + }, + { + "id": "10376", + "ident": "3AL6", + "type": "small_airport", + "name": "Town & Country Airpark", + "latitude_deg": "33.4901008605957", + "longitude_deg": "-86.4124984741211", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Branchville", + "scheduled_service": "no", + "gps_code": "3AL6", + "local_code": "3AL6" + }, + { + "id": "10377", + "ident": "3AL7", + "type": "small_airport", + "name": "Flowers Field", + "latitude_deg": "32.28499984741211", + "longitude_deg": "-87.5199966430664", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Thomaston", + "scheduled_service": "no", + "gps_code": "3AL7", + "local_code": "3AL7" + }, + { + "id": "10378", + "ident": "3AL8", + "type": "small_airport", + "name": "Flint River Ranch Airport", + "latitude_deg": "34.61920166015625", + "longitude_deg": "-86.46690368652344", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Owens Crossroads", + "scheduled_service": "no", + "gps_code": "3AL8", + "local_code": "3AL8" + }, + { + "id": "10379", + "ident": "3AL9", + "type": "heliport", + "name": "Cullman Regional Medical Center Heliport", + "latitude_deg": "34.200599670410156", + "longitude_deg": "-86.80470275878906", + "elevation_ft": "826", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Cullman", + "scheduled_service": "no", + "gps_code": "3AL9", + "local_code": "3AL9" + }, + { + "id": "10380", + "ident": "3AR0", + "type": "small_airport", + "name": "Frost Flying Inc Airport", + "latitude_deg": "34.821512", + "longitude_deg": "-90.846521", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Marianna", + "scheduled_service": "no", + "gps_code": "3AR0", + "local_code": "3AR0" + }, + { + "id": "10381", + "ident": "3AR1", + "type": "heliport", + "name": "Pine Mountain Heliport", + "latitude_deg": "36.41059875488281", + "longitude_deg": "-92.66329956054688", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Yellville", + "scheduled_service": "no", + "gps_code": "3AR1", + "local_code": "3AR1" + }, + { + "id": "10382", + "ident": "3AR2", + "type": "small_airport", + "name": "Ridgeway Field", + "latitude_deg": "36.321487", + "longitude_deg": "-93.202236", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Harrison", + "scheduled_service": "no", + "gps_code": "3AR2", + "local_code": "3AR2" + }, + { + "id": "10383", + "ident": "3AR3", + "type": "small_airport", + "name": "Cypress Creek Airport", + "latitude_deg": "35.059658", + "longitude_deg": "-92.082145", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Cabot", + "scheduled_service": "no", + "gps_code": "3AR3", + "local_code": "3AR3" + }, + { + "id": "10384", + "ident": "3AR4", + "type": "small_airport", + "name": "Four Mile Creek Ranch Airport", + "latitude_deg": "35.005836", + "longitude_deg": "-92.077636", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Cabot", + "scheduled_service": "no", + "gps_code": "3AR4", + "local_code": "3AR4" + }, + { + "id": "10385", + "ident": "3AR5", + "type": "small_airport", + "name": "Tripp Strip", + "latitude_deg": "35.11790084838867", + "longitude_deg": "-91.61190032958984", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Griffithville", + "scheduled_service": "no", + "gps_code": "3AR5", + "local_code": "3AR5" + }, + { + "id": "10386", + "ident": "3AR6", + "type": "small_airport", + "name": "Crystal Ridge Airport", + "latitude_deg": "34.728599548339844", + "longitude_deg": "-92.51640319824219", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Little Rock", + "scheduled_service": "no", + "gps_code": "3AR6", + "local_code": "3AR6" + }, + { + "id": "10387", + "ident": "3AR7", + "type": "small_airport", + "name": "Taylor Field", + "latitude_deg": "36.26461", + "longitude_deg": "-94.16545", + "elevation_ft": "1315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Lowell", + "scheduled_service": "no", + "gps_code": "3AR7", + "local_code": "3AR7" + }, + { + "id": "10388", + "ident": "3AR8", + "type": "small_airport", + "name": "River Acres Airport", + "latitude_deg": "35.472329", + "longitude_deg": "-91.96302", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Heber Springs", + "scheduled_service": "no", + "gps_code": "3AR8", + "local_code": "3AR8" + }, + { + "id": "10389", + "ident": "3AR9", + "type": "small_airport", + "name": "Hog Air Aviation Inc Airport", + "latitude_deg": "36.055213", + "longitude_deg": "-90.366851", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Paragould", + "scheduled_service": "no", + "gps_code": "3AR9", + "local_code": "3AR9", + "keywords": "Quinn Field" + }, + { + "id": "10390", + "ident": "3AZ0", + "type": "heliport", + "name": "Flagstaff Medical Center Heliport", + "latitude_deg": "35.208297", + "longitude_deg": "-111.643164", + "elevation_ft": "7016", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Flagstaff", + "scheduled_service": "no", + "gps_code": "3AZ0", + "local_code": "3AZ0" + }, + { + "id": "10391", + "ident": "3AZ1", + "type": "heliport", + "name": "Pixley-Richards Gilbert Heliport", + "latitude_deg": "33.37229919433594", + "longitude_deg": "-111.83699798583984", + "elevation_ft": "1231", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gilbert", + "scheduled_service": "no", + "gps_code": "3AZ1", + "local_code": "3AZ1" + }, + { + "id": "10392", + "ident": "3AZ2", + "type": "closed", + "name": "University of Arizona Maricopa Agricultural Center Airport", + "latitude_deg": "33.080299", + "longitude_deg": "-111.983002", + "elevation_ft": "1181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Maricopa", + "scheduled_service": "no", + "gps_code": "3AZ2", + "local_code": "3AZ2" + }, + { + "id": "10393", + "ident": "3AZ3", + "type": "heliport", + "name": "Page Hospital Emergency Medical Heliport", + "latitude_deg": "36.917137", + "longitude_deg": "-111.463758", + "elevation_ft": "4300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Page", + "scheduled_service": "no", + "gps_code": "3AZ3", + "local_code": "3AZ3" + }, + { + "id": "10394", + "ident": "3AZ4", + "type": "heliport", + "name": "John C Lincoln Deer Valley Hospital Heliport", + "latitude_deg": "33.665905", + "longitude_deg": "-112.115325", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "3AZ4", + "local_code": "3AZ4", + "keywords": "Phoenix General Satellite Hospital Heliport" + }, + { + "id": "10395", + "ident": "3AZ5", + "type": "small_airport", + "name": "Hualapai Airport", + "latitude_deg": "35.572200775146484", + "longitude_deg": "-113.29199981689453", + "elevation_ft": "5317", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peach Springs", + "scheduled_service": "no", + "gps_code": "3AZ5", + "local_code": "3AZ5" + }, + { + "id": "10396", + "ident": "3AZ6", + "type": "heliport", + "name": "Banner Del E Webb Medical Center Heliport", + "latitude_deg": "33.659335", + "longitude_deg": "-112.373496", + "elevation_ft": "1255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sun City West", + "scheduled_service": "no", + "gps_code": "3AZ6", + "local_code": "3AZ6", + "keywords": "Del E Webb Memorial Hospital Heliport" + }, + { + "id": "10397", + "ident": "3AZ7", + "type": "heliport", + "name": "The Buttes in Tempe Heliport", + "latitude_deg": "33.404643", + "longitude_deg": "-111.970194", + "elevation_ft": "1297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tempe", + "scheduled_service": "no", + "gps_code": "3AZ7", + "local_code": "3AZ7" + }, + { + "id": "10398", + "ident": "3AZ8", + "type": "small_airport", + "name": "High Mesa Airpark", + "latitude_deg": "32.76685", + "longitude_deg": "-109.653254", + "elevation_ft": "3080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Solomon", + "scheduled_service": "no", + "gps_code": "3AZ8", + "local_code": "3AZ8", + "keywords": "solomon, high mesa" + }, + { + "id": "10399", + "ident": "3AZ9", + "type": "closed", + "name": "Ina Road Heliport", + "latitude_deg": "32.335098", + "longitude_deg": "-111.071999", + "elevation_ft": "2192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no", + "gps_code": "3AZ9", + "local_code": "3AZ9", + "keywords": "tucson, ina road" + }, + { + "id": "18674", + "ident": "3B3", + "type": "small_airport", + "name": "Sterling Airport", + "latitude_deg": "42.425899505615234", + "longitude_deg": "-71.79290008544922", + "elevation_ft": "459", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Sterling", + "scheduled_service": "no", + "gps_code": "3B3", + "local_code": "3B3" + }, + { + "id": "10400", + "ident": "3B8", + "type": "small_airport", + "name": "Shady Acres Airport", + "latitude_deg": "47.07040023803711", + "longitude_deg": "-122.37100219726562", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Spanaway", + "scheduled_service": "no", + "gps_code": "3B8", + "local_code": "3B8" + }, + { + "id": "10401", + "ident": "3C1", + "type": "small_airport", + "name": "Mishawaka Pilots Club Airport", + "latitude_deg": "41.65700149536133", + "longitude_deg": "-86.03469848632812", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Elkhart", + "scheduled_service": "no", + "gps_code": "3C1", + "local_code": "3C1" + }, + { + "id": "10402", + "ident": "3C3", + "type": "seaplane_base", + "name": "Campbell Lake Seaplane Base", + "latitude_deg": "61.133099", + "longitude_deg": "-149.942003", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchorage", + "scheduled_service": "no", + "local_code": "A11", + "keywords": "3C3, 33AA" + }, + { + "id": "10404", + "ident": "3CA0", + "type": "closed", + "name": "Burroughs Heliport", + "latitude_deg": "35.704102", + "longitude_deg": "-119.376999", + "elevation_ft": "262", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Wasco", + "scheduled_service": "no", + "gps_code": "3CA0", + "local_code": "3CA0" + }, + { + "id": "10405", + "ident": "3CA1", + "type": "heliport", + "name": "Newport Beach Police Heliport", + "latitude_deg": "33.626399993896484", + "longitude_deg": "-117.87699890136719", + "elevation_ft": "156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Newport Beach", + "scheduled_service": "no", + "gps_code": "3CA1", + "local_code": "3CA1" + }, + { + "id": "10406", + "ident": "3CA2", + "type": "heliport", + "name": "Jamboree Center Helistop", + "latitude_deg": "33.677799224853516", + "longitude_deg": "-117.83699798583984", + "elevation_ft": "77", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Irvine", + "scheduled_service": "no", + "gps_code": "3CA2", + "local_code": "3CA2" + }, + { + "id": "10407", + "ident": "3CA3", + "type": "closed", + "name": "Dixon Airport", + "latitude_deg": "34.922199", + "longitude_deg": "-119.526001", + "elevation_ft": "2440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "New Cuyama", + "scheduled_service": "no", + "keywords": "3CA3" + }, + { + "id": "10408", + "ident": "3CA5", + "type": "closed", + "name": "Haws Airport", + "latitude_deg": "36.9416", + "longitude_deg": "-120.242995", + "elevation_ft": "192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Madera", + "scheduled_service": "no", + "keywords": "3CA5" + }, + { + "id": "10409", + "ident": "3CA6", + "type": "heliport", + "name": "Trizec 5670 Wilshire LLC Heliport", + "latitude_deg": "34.061962", + "longitude_deg": "-118.352146", + "elevation_ft": "559", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "3CA6", + "local_code": "3CA6", + "keywords": "JH Snyder Co III Heliport" + }, + { + "id": "10410", + "ident": "3CA7", + "type": "small_airport", + "name": "Metz Airport", + "latitude_deg": "36.32830047607422", + "longitude_deg": "-121.18699645996094", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Greenfield", + "scheduled_service": "no", + "gps_code": "3CA7", + "local_code": "3CA7" + }, + { + "id": "10411", + "ident": "3CA8", + "type": "heliport", + "name": "Holy Cross Medical Center Heliport", + "latitude_deg": "34.280109", + "longitude_deg": "-118.461186", + "elevation_ft": "1031", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mission Hills", + "scheduled_service": "no", + "gps_code": "3CA8", + "local_code": "3CA8" + }, + { + "id": "10412", + "ident": "3CA9", + "type": "small_airport", + "name": "Clark Ranch Airport", + "latitude_deg": "36.36330032348633", + "longitude_deg": "-121.30999755859375", + "elevation_ft": "276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Soledad", + "scheduled_service": "no", + "gps_code": "3CA9", + "local_code": "3CA9" + }, + { + "id": "10413", + "ident": "3CL0", + "type": "heliport", + "name": "UC Davis Medical Center Tower II Heliport", + "latitude_deg": "38.554831", + "longitude_deg": "-121.455491", + "elevation_ft": "236", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sacramento", + "scheduled_service": "no", + "gps_code": "3CL0", + "local_code": "3CL0" + }, + { + "id": "10414", + "ident": "3CL1", + "type": "heliport", + "name": "Metropolitan Water District Heliport", + "latitude_deg": "34.054704", + "longitude_deg": "-118.23636", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "3CL1", + "local_code": "3CL1" + }, + { + "id": "10415", + "ident": "3CL2", + "type": "closed", + "name": "Meadow Airstrip", + "latitude_deg": "40.156399", + "longitude_deg": "-122.302002", + "elevation_ft": "345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Red Bluff", + "scheduled_service": "no", + "keywords": "3CL2" + }, + { + "id": "10416", + "ident": "3CL3", + "type": "heliport", + "name": "World Trade Center Heliport", + "latitude_deg": "33.777801513671875", + "longitude_deg": "-118.19999694824219", + "elevation_ft": "398", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no", + "gps_code": "3CL3", + "local_code": "3CL3" + }, + { + "id": "10417", + "ident": "3CL4", + "type": "heliport", + "name": "Pasadena Police Benedict Heliport", + "latitude_deg": "34.183561", + "longitude_deg": "-118.171134", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Altadena", + "scheduled_service": "no", + "gps_code": "3CL4", + "local_code": "3CL4", + "keywords": "Super Bowl Heliport" + }, + { + "id": "10418", + "ident": "3CL5", + "type": "heliport", + "name": "Chase Plaza Heliport", + "latitude_deg": "34.037200927734375", + "longitude_deg": "-118.25800323486328", + "elevation_ft": "412", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "3CL5", + "local_code": "3CL5" + }, + { + "id": "10419", + "ident": "3CL6", + "type": "closed", + "name": "Long Point Heliport", + "latitude_deg": "33.736903", + "longitude_deg": "-118.397427", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rancho Palos Verdes", + "scheduled_service": "no", + "gps_code": "3CL6", + "local_code": "3CL6" + }, + { + "id": "10420", + "ident": "3CL7", + "type": "heliport", + "name": "Raleigh Enterprises Heliport", + "latitude_deg": "34.036324", + "longitude_deg": "-118.443555", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "3CL7", + "local_code": "3CL7" + }, + { + "id": "10421", + "ident": "3CL8", + "type": "heliport", + "name": "Toyota Helistop", + "latitude_deg": "33.856513", + "longitude_deg": "-118.31268", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Torrance", + "scheduled_service": "no", + "gps_code": "3CL8", + "local_code": "3CL8" + }, + { + "id": "10422", + "ident": "3CL9", + "type": "heliport", + "name": "SCE Northern Division Heliport", + "latitude_deg": "34.286414", + "longitude_deg": "-119.170676", + "elevation_ft": "273", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ventura", + "scheduled_service": "no", + "gps_code": "3CL9", + "local_code": "3CL9" + }, + { + "id": "299726", + "ident": "3CN2", + "type": "heliport", + "name": "Santa Barbara Cottage Hospital Heliport", + "latitude_deg": "34.43", + "longitude_deg": "-119.724166", + "elevation_ft": "201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Barbara", + "scheduled_service": "no", + "gps_code": "3CN2", + "local_code": "3CN2" + }, + { + "id": "317206", + "ident": "3CN4", + "type": "heliport", + "name": "Kaiser Permanente Anaheim Medical Center Heliport", + "latitude_deg": "33.852", + "longitude_deg": "-117.8453", + "elevation_ft": "341", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Anaheim", + "scheduled_service": "no", + "gps_code": "3CN4", + "local_code": "3CN4" + }, + { + "id": "322235", + "ident": "3CN5", + "type": "heliport", + "name": "Los Angeles County Sheriffs Dept South LA Heliport", + "latitude_deg": "33.92864", + "longitude_deg": "-118.299004", + "elevation_ft": "209", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "3CN5", + "local_code": "3CN5" + }, + { + "id": "346216", + "ident": "3CN7", + "type": "small_airport", + "name": "Alta Mesa Airpark", + "latitude_deg": "38.379143", + "longitude_deg": "-121.221728", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Wilton", + "scheduled_service": "no", + "gps_code": "3CN7", + "local_code": "3CN7" + }, + { + "id": "10423", + "ident": "3CO0", + "type": "small_airport", + "name": "Sky Island Ranch Airport", + "latitude_deg": "38.73749923706055", + "longitude_deg": "-108.00599670410156", + "elevation_ft": "5300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Delta", + "scheduled_service": "no", + "gps_code": "3CO0", + "local_code": "3CO0" + }, + { + "id": "10424", + "ident": "3CO1", + "type": "small_airport", + "name": "Cridler Field", + "latitude_deg": "38.849516", + "longitude_deg": "-107.832739", + "elevation_ft": "6460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Hotchkiss", + "scheduled_service": "no", + "gps_code": "3CO1", + "local_code": "3CO1" + }, + { + "id": "10425", + "ident": "3CO2", + "type": "small_airport", + "name": "Mertens Airport", + "latitude_deg": "40.616391", + "longitude_deg": "-103.332436", + "elevation_ft": "4192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Sterling", + "scheduled_service": "no", + "gps_code": "3CO2", + "local_code": "3CO2" + }, + { + "id": "10426", + "ident": "3CO3", + "type": "heliport", + "name": "Sterling Regional Medical Center Heliport", + "latitude_deg": "40.61249923706055", + "longitude_deg": "-103.22000122070312", + "elevation_ft": "3946", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Sterling", + "scheduled_service": "no", + "gps_code": "3CO3", + "local_code": "3CO3" + }, + { + "id": "10427", + "ident": "3CO4", + "type": "small_airport", + "name": "Tercio Ranch Airstrip", + "latitude_deg": "37.070899963378906", + "longitude_deg": "-105.01899719238281", + "elevation_ft": "7957", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Stonewall", + "scheduled_service": "no", + "gps_code": "3CO4", + "local_code": "3CO4" + }, + { + "id": "10428", + "ident": "3CO5", + "type": "heliport", + "name": "Texas Creek Heliport", + "latitude_deg": "38.409400939941406", + "longitude_deg": "-105.58499908447266", + "elevation_ft": "6250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Texas Creek", + "scheduled_service": "no", + "gps_code": "3CO5", + "local_code": "3CO5" + }, + { + "id": "10429", + "ident": "3CO7", + "type": "small_airport", + "name": "Dietrichs Airport", + "latitude_deg": "39.33250045776367", + "longitude_deg": "-104.56600189208984", + "elevation_ft": "6780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Elizabeth", + "scheduled_service": "no", + "gps_code": "3CO7", + "local_code": "3CO7" + }, + { + "id": "10430", + "ident": "3CO8", + "type": "heliport", + "name": "Estes Park Medical Center Heliport", + "latitude_deg": "40.371371", + "longitude_deg": "-105.515024", + "elevation_ft": "7674", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Estes Park", + "scheduled_service": "no", + "gps_code": "3CO8", + "local_code": "3CO8" + }, + { + "id": "10431", + "ident": "3CO9", + "type": "heliport", + "name": "D B Smith Memorial Heliport", + "latitude_deg": "38.712501525878906", + "longitude_deg": "-105.14199829101562", + "elevation_ft": "9710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Victor", + "scheduled_service": "no", + "gps_code": "3CO9", + "local_code": "3CO9" + }, + { + "id": "10432", + "ident": "3D1", + "type": "small_airport", + "name": "Crivitz Municipal Airport", + "latitude_deg": "45.21419906616211", + "longitude_deg": "-88.07319641113281", + "elevation_ft": "731", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Crivitz", + "scheduled_service": "no", + "gps_code": "3D1", + "local_code": "3D1" + }, + { + "id": "10433", + "ident": "3D2", + "type": "small_airport", + "name": "Ephraim-Gibraltar Airport", + "latitude_deg": "45.135399", + "longitude_deg": "-87.185898", + "elevation_ft": "773", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Fish Creek", + "scheduled_service": "no", + "gps_code": "K3D2", + "local_code": "3D2", + "keywords": "Ephraim-Fish Creek" + }, + { + "id": "10434", + "ident": "3D8", + "type": "closed", + "name": "Bordner Airport", + "latitude_deg": "41.335999", + "longitude_deg": "-83.723198", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bowling Green", + "scheduled_service": "no", + "local_code": "3D8", + "keywords": "3D8" + }, + { + "id": "10435", + "ident": "3DA", + "type": "small_airport", + "name": "Dalton Airport", + "latitude_deg": "43.0525016784668", + "longitude_deg": "-83.80490112304688", + "elevation_ft": "733", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Flushing", + "scheduled_service": "no", + "gps_code": "3DA", + "local_code": "3DA" + }, + { + "id": "10436", + "ident": "3.00E+07", + "type": "small_airport", + "name": "Pronger Bros Ranch Airport", + "latitude_deg": "36.21950149536133", + "longitude_deg": "-102.10399627685547", + "elevation_ft": "3722", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Stratford", + "scheduled_service": "no", + "gps_code": "3.00E+07", + "local_code": "3.00E+07" + }, + { + "id": "10437", + "ident": "3EV", + "type": "small_airport", + "name": "Skylane Airport", + "latitude_deg": "38.01169967651367", + "longitude_deg": "-87.5947036743164", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Evansville", + "scheduled_service": "no", + "gps_code": "3EV", + "local_code": "3EV" + }, + { + "id": "10438", + "ident": "3EX", + "type": "small_airport", + "name": "Excelsior Springs Memorial Airport", + "latitude_deg": "39.33720016479492", + "longitude_deg": "-94.19770050048828", + "elevation_ft": "997", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Excelsior Springs", + "scheduled_service": "no", + "gps_code": "3EX", + "local_code": "3EX" + }, + { + "id": "10439", + "ident": "3F5", + "type": "small_airport", + "name": "Forest Hill Airport", + "latitude_deg": "42.91230010986328", + "longitude_deg": "-84.67549896240234", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Westphalia", + "scheduled_service": "no", + "gps_code": "3F5", + "local_code": "3F5" + }, + { + "id": "45351", + "ident": "3FA2", + "type": "heliport", + "name": "Fly High Heliport", + "latitude_deg": "28.345833", + "longitude_deg": "-81.664444", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Kissimmee", + "scheduled_service": "no", + "gps_code": "3FA2", + "local_code": "3FA2" + }, + { + "id": "45358", + "ident": "3FA3", + "type": "heliport", + "name": "Southfork Heliport", + "latitude_deg": "28.226944", + "longitude_deg": "-81.366528", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Saint Cloud", + "scheduled_service": "no", + "gps_code": "3FA3", + "local_code": "3FA3" + }, + { + "id": "46076", + "ident": "3FA4", + "type": "heliport", + "name": "Gulf Coast Medical Center Heliport", + "latitude_deg": "26.5440555556", + "longitude_deg": "-81.8488055556", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Myers", + "scheduled_service": "no", + "gps_code": "3FA4", + "local_code": "3FA4" + }, + { + "id": "351536", + "ident": "3FA5", + "type": "heliport", + "name": "Richard Kohler Heliport", + "latitude_deg": "28.830778", + "longitude_deg": "-81.115531", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Osteen", + "scheduled_service": "no", + "gps_code": "3FA5", + "local_code": "3FA5" + }, + { + "id": "345598", + "ident": "3FA6", + "type": "heliport", + "name": "Sumter County Sheriff's Heliport", + "latitude_deg": "28.662544", + "longitude_deg": "-82.107508", + "elevation_ft": "77", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bushnell", + "scheduled_service": "no", + "gps_code": "3FA6", + "local_code": "3FA6" + }, + { + "id": "346568", + "ident": "3FA7", + "type": "small_airport", + "name": "Flying 4 Ranch Airport", + "latitude_deg": "29.042662", + "longitude_deg": "-81.05695", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "New Smyrna Beach", + "scheduled_service": "no", + "gps_code": "3FA7", + "local_code": "3FA7" + }, + { + "id": "299722", + "ident": "3FA8", + "type": "seaplane_base", + "name": "Searey Central SPB", + "latitude_deg": "28.766111", + "longitude_deg": "-81.74611", + "elevation_ft": "67", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tavares", + "scheduled_service": "no", + "gps_code": "3FA8", + "local_code": "3FA8" + }, + { + "id": "10440", + "ident": "3FD0", + "type": "small_airport", + "name": "Last Chance Ranch Airport", + "latitude_deg": "27.021699905395508", + "longitude_deg": "-81.45120239257812", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Placid", + "scheduled_service": "no", + "gps_code": "3FD0", + "local_code": "3FD0" + }, + { + "id": "10441", + "ident": "3FD1", + "type": "closed", + "name": "Tampa Bay Executive Airport", + "latitude_deg": "28.1879997253", + "longitude_deg": "-82.6256027222", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "New Port Richey", + "scheduled_service": "no", + "gps_code": "3FD1", + "local_code": "3FD1" + }, + { + "id": "10442", + "ident": "3FD2", + "type": "heliport", + "name": "Leesburg Regional Medical Center Heliport", + "latitude_deg": "28.8083", + "longitude_deg": "-81.866997", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Leesburg", + "scheduled_service": "no", + "gps_code": "3FD2", + "local_code": "3FD2", + "keywords": "L R M C Emergency Helistop" + }, + { + "id": "10443", + "ident": "3FD3", + "type": "heliport", + "name": "Holmes Regional Medical Center Heliport", + "latitude_deg": "28.087799072265625", + "longitude_deg": "-80.61370086669922", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Melbourne", + "scheduled_service": "no", + "gps_code": "3FD3", + "local_code": "3FD3" + }, + { + "id": "10444", + "ident": "3FD4", + "type": "small_airport", + "name": "Florida Flying Gators Airport", + "latitude_deg": "28.6278", + "longitude_deg": "-81.802902", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Minneola", + "scheduled_service": "no", + "gps_code": "3FD4", + "local_code": "3FD4", + "keywords": "Florida Flying Gators UL" + }, + { + "id": "10445", + "ident": "3FD5", + "type": "heliport", + "name": "Arnold Palmer Hospital Heliport", + "latitude_deg": "28.523125", + "longitude_deg": "-81.380196", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "3FD5", + "local_code": "3FD5" + }, + { + "id": "10446", + "ident": "3FD6", + "type": "small_airport", + "name": "Tradewinds Aerodrome", + "latitude_deg": "28.76420021057129", + "longitude_deg": "-80.85389709472656", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Scottsmoor", + "scheduled_service": "no", + "gps_code": "3FD6", + "local_code": "3FD6" + }, + { + "id": "10447", + "ident": "3FD7", + "type": "heliport", + "name": "Indian River Memorial Hospital Heliport", + "latitude_deg": "27.658395", + "longitude_deg": "-80.396137", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Vero Beach", + "scheduled_service": "no", + "gps_code": "3FD7", + "local_code": "3FD7" + }, + { + "id": "10448", + "ident": "3FD8", + "type": "heliport", + "name": "West Boca Medical Center Heliport", + "latitude_deg": "26.356321", + "longitude_deg": "-80.200236", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Boca Raton", + "scheduled_service": "no", + "gps_code": "3FD8", + "local_code": "3FD8" + }, + { + "id": "10449", + "ident": "3FD9", + "type": "seaplane_base", + "name": "Prairie Lake Private Residential Seaplane Base", + "latitude_deg": "28.6567", + "longitude_deg": "-81.353401", + "elevation_ft": "86", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Altamonte Springs", + "scheduled_service": "no", + "gps_code": "3FD9", + "local_code": "3FD9" + }, + { + "id": "10450", + "ident": "3FK", + "type": "small_airport", + "name": "Franklin Flying Field", + "latitude_deg": "39.42639923095703", + "longitude_deg": "-86.05829620361328", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "3FK", + "local_code": "3FK" + }, + { + "id": "10451", + "ident": "3FL0", + "type": "small_airport", + "name": "Mount Royal Airport", + "latitude_deg": "29.436100006103516", + "longitude_deg": "-81.65670013427734", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Welaka", + "scheduled_service": "no", + "gps_code": "3FL0", + "local_code": "3FL0" + }, + { + "id": "10452", + "ident": "3FL1", + "type": "small_airport", + "name": "Two J's Flying Ranch Airport", + "latitude_deg": "28.452499389648438", + "longitude_deg": "-82.20780181884766", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Dade City", + "scheduled_service": "no", + "gps_code": "3FL1", + "local_code": "3FL1" + }, + { + "id": "10453", + "ident": "3FL2", + "type": "heliport", + "name": "AdventHealth Fish Memorial Hospital Heliport", + "latitude_deg": "28.9147", + "longitude_deg": "-81.284698", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orange City", + "scheduled_service": "no", + "gps_code": "3FL2", + "local_code": "3FL2", + "keywords": "Florida Hospital-Fish Memorial Heliport" + }, + { + "id": "10454", + "ident": "3FL3", + "type": "heliport", + "name": "Sheriff's Operation Center Heliport", + "latitude_deg": "29.193300247192383", + "longitude_deg": "-82.17510223388672", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ocala", + "scheduled_service": "no", + "gps_code": "3FL3", + "local_code": "3FL3" + }, + { + "id": "10455", + "ident": "3FL4", + "type": "heliport", + "name": "Knobel Heliport", + "latitude_deg": "28.24850082397461", + "longitude_deg": "-80.66200256347656", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Cocoa", + "scheduled_service": "no", + "gps_code": "3FL4", + "local_code": "3FL4" + }, + { + "id": "10456", + "ident": "3FL5", + "type": "small_airport", + "name": "Mills Ranch South Airport", + "latitude_deg": "27.77829933166504", + "longitude_deg": "-80.9218978881836", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Kenansville", + "scheduled_service": "no", + "gps_code": "3FL5", + "local_code": "3FL5" + }, + { + "id": "10457", + "ident": "3FL6", + "type": "closed", + "name": "Wink TV Heliport", + "latitude_deg": "26.650729", + "longitude_deg": "-81.855472", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Myers", + "scheduled_service": "no", + "keywords": "3FL6" + }, + { + "id": "10458", + "ident": "3FL7", + "type": "heliport", + "name": "Ascension Sacred Heart Hospital Emerald Coast Heliport", + "latitude_deg": "30.379072", + "longitude_deg": "-86.305332", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miramar Beach", + "scheduled_service": "no", + "gps_code": "3FL7", + "local_code": "3FL7", + "keywords": "Destin, Mack Bayor Airheart Heliport, Sacred Heart Hospital on the Emerald Coast Heliport" + }, + { + "id": "10459", + "ident": "3FL8", + "type": "small_airport", + "name": "Hart Airport", + "latitude_deg": "30.946300506591797", + "longitude_deg": "-85.2738037109375", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Malone", + "scheduled_service": "no", + "gps_code": "3FL8", + "local_code": "3FL8" + }, + { + "id": "10460", + "ident": "3FL9", + "type": "closed", + "name": "Sun N Lake Heliport", + "latitude_deg": "27.538601", + "longitude_deg": "-81.509804", + "elevation_ft": "156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sebring", + "scheduled_service": "no", + "keywords": "3FL9" + }, + { + "id": "10461", + "ident": "3G8", + "type": "small_airport", + "name": "Gen-Airpark", + "latitude_deg": "41.43980026245117", + "longitude_deg": "-90.11009979248047", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Geneseo", + "scheduled_service": "no", + "gps_code": "3G8", + "local_code": "3G8" + }, + { + "id": "10462", + "ident": "3G9", + "type": "small_airport", + "name": "Butler Farm Show Airport", + "latitude_deg": "40.85260009765625", + "longitude_deg": "-79.97480010986328", + "elevation_ft": "1333", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Butler", + "scheduled_service": "no", + "gps_code": "3G9", + "local_code": "3G9" + }, + { + "id": "10463", + "ident": "3GA0", + "type": "small_airport", + "name": "Grant Airport", + "latitude_deg": "33.52750015258789", + "longitude_deg": "-84.15689849853516", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Stockbridge", + "scheduled_service": "no", + "gps_code": "3GA0", + "local_code": "3GA0" + }, + { + "id": "10464", + "ident": "3GA1", + "type": "small_airport", + "name": "Prattsburg Airport", + "latitude_deg": "32.728242", + "longitude_deg": "-84.356875", + "elevation_ft": "554", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Talbotton", + "scheduled_service": "no", + "gps_code": "3GA1", + "local_code": "3GA1" + }, + { + "id": "10465", + "ident": "3GA2", + "type": "heliport", + "name": "Tanner Medical Center Heliport", + "latitude_deg": "33.570098876953125", + "longitude_deg": "-85.07489776611328", + "elevation_ft": "1062", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Carrollton", + "scheduled_service": "no", + "gps_code": "3GA2", + "local_code": "3GA2" + }, + { + "id": "10466", + "ident": "3GA3", + "type": "small_airport", + "name": "Warren Field", + "latitude_deg": "34.871111", + "longitude_deg": "-85.4375", + "elevation_ft": "1866", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Lookout Mountain", + "scheduled_service": "no", + "gps_code": "3GA3", + "local_code": "3GA3" + }, + { + "id": "10467", + "ident": "3GA4", + "type": "heliport", + "name": "Stonewall Heliport", + "latitude_deg": "33.60089874267578", + "longitude_deg": "-84.54910278320312", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Union City", + "scheduled_service": "no", + "gps_code": "3GA4", + "local_code": "3GA4" + }, + { + "id": "10468", + "ident": "3GA5", + "type": "small_airport", + "name": "Diamond R Ranch Airport", + "latitude_deg": "33.637831", + "longitude_deg": "-84.940542", + "elevation_ft": "1213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Villa Rica", + "scheduled_service": "no", + "gps_code": "3GA5", + "local_code": "3GA5" + }, + { + "id": "10469", + "ident": "3GA6", + "type": "small_airport", + "name": "Erlen Airport", + "latitude_deg": "33.57059860229492", + "longitude_deg": "-84.89830017089844", + "elevation_ft": "1044", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Whitesburg", + "scheduled_service": "no", + "gps_code": "3GA6", + "local_code": "3GA6" + }, + { + "id": "10470", + "ident": "3GA7", + "type": "closed", + "name": "Rhodes Air Ranch Airport", + "latitude_deg": "33.162631", + "longitude_deg": "-81.768816", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Waynesboro", + "scheduled_service": "no", + "keywords": "3GA7" + }, + { + "id": "10471", + "ident": "3GA8", + "type": "small_airport", + "name": "Cauley's Airstrip", + "latitude_deg": "32.32939910888672", + "longitude_deg": "-82.63500213623047", + "elevation_ft": "251", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Soperton", + "scheduled_service": "no", + "gps_code": "3GA8", + "local_code": "3GA8" + }, + { + "id": "10472", + "ident": "3GA9", + "type": "small_airport", + "name": "Vintage Field", + "latitude_deg": "33.13349914550781", + "longitude_deg": "-84.37740325927734", + "elevation_ft": "873", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Zebulon", + "scheduled_service": "no", + "gps_code": "3GA9", + "local_code": "3GA9" + }, + { + "id": "10473", + "ident": "3GE1", + "type": "heliport", + "name": "Okefenokee Heliport", + "latitude_deg": "30.737499237060547", + "longitude_deg": "-82.12670135498047", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Folkston", + "scheduled_service": "no", + "gps_code": "3GE1", + "local_code": "3GE1" + }, + { + "id": "10474", + "ident": "3GE2", + "type": "heliport", + "name": "Williams Heliport", + "latitude_deg": "33.82080078125", + "longitude_deg": "-84.12809753417969", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Stone Mountain", + "scheduled_service": "no", + "gps_code": "3GE2", + "local_code": "3GE2" + }, + { + "id": "10475", + "ident": "3GE3", + "type": "small_airport", + "name": "Broad River Air Park", + "latitude_deg": "34.41235", + "longitude_deg": "-83.18061", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Lavonia", + "scheduled_service": "no", + "gps_code": "3GE3", + "local_code": "3GE3" + }, + { + "id": "10476", + "ident": "3GE4", + "type": "small_airport", + "name": "Fox Mountain Airport", + "latitude_deg": "34.72999954223633", + "longitude_deg": "-85.54190063476562", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Rising Fawn", + "scheduled_service": "no", + "gps_code": "3GE4", + "local_code": "3GE4" + }, + { + "id": "10477", + "ident": "3GE5", + "type": "heliport", + "name": "Rockdale Hospital Heliport", + "latitude_deg": "33.680058", + "longitude_deg": "-84.002785", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Conyers", + "scheduled_service": "no", + "gps_code": "3GE5", + "local_code": "3GE5" + }, + { + "id": "10478", + "ident": "3GE6", + "type": "heliport", + "name": "Wellstar Douglas Hospital Heliport", + "latitude_deg": "33.73889923095703", + "longitude_deg": "-84.73280334472656", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Douglasville", + "scheduled_service": "no", + "gps_code": "3GE6", + "local_code": "3GE6" + }, + { + "id": "10479", + "ident": "3GE7", + "type": "closed", + "name": "Eden Field", + "latitude_deg": "31.412701", + "longitude_deg": "-81.437302", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Darien", + "scheduled_service": "no", + "keywords": "3GE7" + }, + { + "id": "10480", + "ident": "3GE8", + "type": "small_airport", + "name": "Prater Ranch Airport", + "latitude_deg": "33.843616", + "longitude_deg": "-82.478807", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Lincolnton", + "scheduled_service": "no", + "gps_code": "3GE8", + "local_code": "3GE8" + }, + { + "id": "10481", + "ident": "3GE9", + "type": "closed", + "name": "Holly Farm Airport", + "latitude_deg": "34.139999", + "longitude_deg": "-84.378098", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Woodstock", + "scheduled_service": "no", + "keywords": "3GE9" + }, + { + "id": "10482", + "ident": "3H3", + "type": "seaplane_base", + "name": "Cottonwood Lake Seaplane Base", + "latitude_deg": "61.5975990295", + "longitude_deg": "-149.315994263", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "3H3", + "local_code": "3H3" + }, + { + "id": "10483", + "ident": "3H5", + "type": "small_airport", + "name": "Erie Air Park", + "latitude_deg": "41.67919921875", + "longitude_deg": "-90.07869720458984", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Erie", + "scheduled_service": "no", + "gps_code": "3H5", + "local_code": "3H5" + }, + { + "id": "10484", + "ident": "3I1", + "type": "closed", + "name": "Elwood Airport", + "latitude_deg": "40.2528", + "longitude_deg": "-85.833298", + "elevation_ft": "866", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Elwood", + "scheduled_service": "no", + "keywords": "3I1" + }, + { + "id": "10485", + "ident": "3IA0", + "type": "heliport", + "name": "Washington County Hospital Heliport", + "latitude_deg": "41.28919982910156", + "longitude_deg": "-91.68769836425781", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "3IA0", + "local_code": "3IA0" + }, + { + "id": "10486", + "ident": "3IA1", + "type": "closed", + "name": "Whites Airport", + "latitude_deg": "41.9608", + "longitude_deg": "-93.119904", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Melbourne", + "scheduled_service": "no", + "keywords": "3IA1" + }, + { + "id": "10487", + "ident": "3IA2", + "type": "heliport", + "name": "Greene County Medical Center Heliport", + "latitude_deg": "42.016700744628906", + "longitude_deg": "-94.38770294189453", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Jefferson", + "scheduled_service": "no", + "gps_code": "3IA2", + "local_code": "3IA2" + }, + { + "id": "10488", + "ident": "3IA3", + "type": "heliport", + "name": "Des Moines General Hospital Heliport", + "latitude_deg": "41.594200134277344", + "longitude_deg": "-93.60079956054688", + "elevation_ft": "889", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Des Moines", + "scheduled_service": "no", + "gps_code": "3IA3", + "local_code": "3IA3" + }, + { + "id": "10489", + "ident": "3IA4", + "type": "closed", + "name": "Robinson Airport", + "latitude_deg": "41.531898", + "longitude_deg": "-95.942001", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Missouri Valley", + "scheduled_service": "no", + "keywords": "3IA4" + }, + { + "id": "10490", + "ident": "3IA5", + "type": "small_airport", + "name": "Kerr Airport", + "latitude_deg": "42.877201080322266", + "longitude_deg": "-95.88249969482422", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Marcus", + "scheduled_service": "no", + "gps_code": "3IA5", + "local_code": "3IA5" + }, + { + "id": "10491", + "ident": "3IA6", + "type": "heliport", + "name": "Ottumwa Hospital Heliport", + "latitude_deg": "41.028900146484375", + "longitude_deg": "-92.39070129394531", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Ottumwa", + "scheduled_service": "no", + "gps_code": "3IA6", + "local_code": "3IA6" + }, + { + "id": "10492", + "ident": "3IA7", + "type": "heliport", + "name": "Daec Heliport", + "latitude_deg": "42.101898193359375", + "longitude_deg": "-91.777099609375", + "elevation_ft": "753", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Palo", + "scheduled_service": "no", + "gps_code": "3IA7", + "local_code": "3IA7" + }, + { + "id": "10493", + "ident": "3IA8", + "type": "heliport", + "name": "UnityPoint Keokuk Heliport", + "latitude_deg": "40.40721", + "longitude_deg": "-91.387968", + "elevation_ft": "617", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Keokuk", + "scheduled_service": "no", + "gps_code": "3IA8", + "local_code": "3IA8", + "keywords": "KAH Heliport" + }, + { + "id": "10494", + "ident": "3IA9", + "type": "small_airport", + "name": "Rake Airport", + "latitude_deg": "43.475799560546875", + "longitude_deg": "-93.9072036743164", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Rake", + "scheduled_service": "no", + "gps_code": "3IA9", + "local_code": "3IA9" + }, + { + "id": "45393", + "ident": "3ID2", + "type": "small_airport", + "name": "The Last Resort Airport", + "latitude_deg": "46.350675", + "longitude_deg": "-115.977", + "elevation_ft": "3155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Weippe", + "scheduled_service": "no", + "gps_code": "3ID2", + "local_code": "3ID2" + }, + { + "id": "10495", + "ident": "3ID4", + "type": "heliport", + "name": "Health Center Heliport", + "latitude_deg": "42.9541015625", + "longitude_deg": "-115.30500030517578", + "elevation_ft": "2560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Glenns Ferry", + "scheduled_service": "no", + "gps_code": "3ID4", + "local_code": "3ID4" + }, + { + "id": "10496", + "ident": "3ID7", + "type": "small_airport", + "name": "Indian Creek Ranch Airport", + "latitude_deg": "43.47600173950195", + "longitude_deg": "-116.40399932861328", + "elevation_ft": "2674", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Kuna", + "scheduled_service": "no", + "gps_code": "3ID7", + "local_code": "3ID7" + }, + { + "id": "10497", + "ident": "3IG3", + "type": "small_airport", + "name": "Terry's Airport", + "latitude_deg": "41.17020034790039", + "longitude_deg": "-85.42160034179688", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Columbia City", + "scheduled_service": "no", + "gps_code": "3IG3", + "local_code": "3IG3" + }, + { + "id": "299707", + "ident": "3II0", + "type": "small_airport", + "name": "Fremont (Murphy) Airport", + "latitude_deg": "41.6910848513", + "longitude_deg": "-84.864256382", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Fremont", + "scheduled_service": "no", + "gps_code": "3II0", + "local_code": "3II0" + }, + { + "id": "10498", + "ident": "3II1", + "type": "small_airport", + "name": "Shenandoah Flying Field", + "latitude_deg": "39.41669845581055", + "longitude_deg": "-86.63580322265625", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Gosport", + "scheduled_service": "no", + "gps_code": "3II1", + "local_code": "3II1" + }, + { + "id": "10499", + "ident": "3II2", + "type": "small_airport", + "name": "Fifer Field", + "latitude_deg": "38.212799072265625", + "longitude_deg": "-87.91950225830078", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Griffin", + "scheduled_service": "no", + "gps_code": "3II2", + "local_code": "3II2" + }, + { + "id": "10500", + "ident": "3II3", + "type": "small_airport", + "name": "Basting Airport", + "latitude_deg": "41.090865", + "longitude_deg": "-84.831126", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Woodburn", + "scheduled_service": "no", + "gps_code": "3II3", + "local_code": "3II3" + }, + { + "id": "10501", + "ident": "3II4", + "type": "heliport", + "name": "Lafayette Home Hospital Heliport", + "latitude_deg": "40.4197998046875", + "longitude_deg": "-86.86669921875", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "3II4", + "local_code": "3II4" + }, + { + "id": "10502", + "ident": "3II5", + "type": "small_airport", + "name": "Stout Field", + "latitude_deg": "41.083900451660156", + "longitude_deg": "-86.77330017089844", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Medaryville", + "scheduled_service": "no", + "gps_code": "3II5", + "local_code": "3II5" + }, + { + "id": "10503", + "ident": "3II6", + "type": "heliport", + "name": "Hawthorn Mine Heliport", + "latitude_deg": "38.93199920654297", + "longitude_deg": "-87.2406005859375", + "elevation_ft": "533", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Pleasantville", + "scheduled_service": "no", + "gps_code": "3II6", + "local_code": "3II6" + }, + { + "id": "10504", + "ident": "3II7", + "type": "heliport", + "name": "Army Aviation Support Facility Heliport", + "latitude_deg": "39.579924", + "longitude_deg": "-85.81217", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Shelbyville", + "scheduled_service": "no", + "gps_code": "3II7", + "local_code": "3II7" + }, + { + "id": "10505", + "ident": "3II8", + "type": "small_airport", + "name": "Birkey Private Airport", + "latitude_deg": "41.442298889160156", + "longitude_deg": "-86.26110076904297", + "elevation_ft": "796", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bremen", + "scheduled_service": "no", + "gps_code": "3II8", + "local_code": "3II8" + }, + { + "id": "10506", + "ident": "3II9", + "type": "small_airport", + "name": "Dick's Strip", + "latitude_deg": "41.0973014831543", + "longitude_deg": "-85.24220275878906", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Arcola", + "scheduled_service": "no", + "gps_code": "3II9", + "local_code": "3II9" + }, + { + "id": "10507", + "ident": "3IL0", + "type": "heliport", + "name": "Patten Industries Heliport", + "latitude_deg": "41.9229292062", + "longitude_deg": "-87.96278245750001", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Elmhurst", + "scheduled_service": "no", + "gps_code": "3IL0", + "local_code": "3IL0" + }, + { + "id": "10508", + "ident": "3IL1", + "type": "small_airport", + "name": "Silver Creek Gliderport", + "latitude_deg": "38.9253005981", + "longitude_deg": "-89.66220092770001", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "New Douglas", + "scheduled_service": "no", + "gps_code": "3IL1", + "local_code": "3IL1", + "home_link": "http://www.silvercreekgliderclub.com/" + }, + { + "id": "10509", + "ident": "3IL2", + "type": "small_airport", + "name": "Sweedler Airport", + "latitude_deg": "41.41230010986328", + "longitude_deg": "-88.04869842529297", + "elevation_ft": "669", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Elwood", + "scheduled_service": "no", + "gps_code": "3IL2", + "local_code": "3IL2" + }, + { + "id": "10510", + "ident": "3IL3", + "type": "heliport", + "name": "Stillman Fire Heliport", + "latitude_deg": "42.10559844970703", + "longitude_deg": "-89.18329620361328", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Stillman Valley", + "scheduled_service": "no", + "gps_code": "3IL3", + "local_code": "3IL3" + }, + { + "id": "10511", + "ident": "3IL4", + "type": "heliport", + "name": "Maaks Heliport", + "latitude_deg": "40.13140106201172", + "longitude_deg": "-89.59320068359375", + "elevation_ft": "527", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Middletown", + "scheduled_service": "no", + "gps_code": "3IL4", + "local_code": "3IL4" + }, + { + "id": "10512", + "ident": "3IL5", + "type": "closed", + "name": "Illinois State Fair Heliport", + "latitude_deg": "39.8358", + "longitude_deg": "-89.639702", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Springfield", + "scheduled_service": "no", + "keywords": "3IL5" + }, + { + "id": "10513", + "ident": "3IL6", + "type": "heliport", + "name": "Pinckneyville Correctional Center Heliport", + "latitude_deg": "38.08330154418945", + "longitude_deg": "-89.31999969482422", + "elevation_ft": "463", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pinckneyville", + "scheduled_service": "no", + "gps_code": "3IL6", + "local_code": "3IL6" + }, + { + "id": "10514", + "ident": "3IL7", + "type": "closed", + "name": "Home Free Airport", + "latitude_deg": "41.803398", + "longitude_deg": "-89.021797", + "elevation_ft": "819", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Steward", + "scheduled_service": "no", + "keywords": "3IL7" + }, + { + "id": "10515", + "ident": "3IL8", + "type": "closed", + "name": "Evanston Hospital-Golf Course Site Heliport", + "latitude_deg": "42.064804", + "longitude_deg": "-87.684502", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Evanston", + "scheduled_service": "no", + "keywords": "3IL8" + }, + { + "id": "10516", + "ident": "3IL9", + "type": "small_airport", + "name": "Sugar Creek Farm Airport", + "latitude_deg": "40.26940155029297", + "longitude_deg": "-89.30220031738281", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "3IL9", + "local_code": "3IL9" + }, + { + "id": "345477", + "ident": "3IN0", + "type": "small_airport", + "name": "Flying M Airport", + "latitude_deg": "41.558732", + "longitude_deg": "-87.125933", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Portage", + "scheduled_service": "no", + "gps_code": "3IN0", + "local_code": "3IN0" + }, + { + "id": "10517", + "ident": "3IN2", + "type": "small_airport", + "name": "Dupouy Airport", + "latitude_deg": "40.4192008972168", + "longitude_deg": "-85.8561019897461", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Point Isabel", + "scheduled_service": "no", + "gps_code": "3IN2", + "local_code": "3IN2" + }, + { + "id": "10518", + "ident": "3IN3", + "type": "closed", + "name": "Carlson Farm Airport", + "latitude_deg": "41.523102", + "longitude_deg": "-87.163902", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Portage", + "scheduled_service": "no", + "gps_code": "3IN3", + "local_code": "3IN3" + }, + { + "id": "10519", + "ident": "3IN4", + "type": "small_airport", + "name": "Johnson Airport", + "latitude_deg": "40.775001525878906", + "longitude_deg": "-85.33889770507812", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Markle", + "scheduled_service": "no", + "gps_code": "3IN4", + "local_code": "3IN4" + }, + { + "id": "10520", + "ident": "3IN5", + "type": "small_airport", + "name": "Pippenger Airport", + "latitude_deg": "41.316898345947266", + "longitude_deg": "-85.37139892578125", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Albion", + "scheduled_service": "no", + "gps_code": "3IN5", + "local_code": "3IN5" + }, + { + "id": "10521", + "ident": "3IN6", + "type": "small_airport", + "name": "Holloway Field", + "latitude_deg": "38.588333", + "longitude_deg": "-85.505833", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "New Washington", + "scheduled_service": "no", + "gps_code": "3IN6", + "local_code": "3IN6" + }, + { + "id": "10522", + "ident": "3IN7", + "type": "small_airport", + "name": "Chain-O-Lakes Airport", + "latitude_deg": "41.662498474121094", + "longitude_deg": "-86.35420227050781", + "elevation_ft": "743", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "South Bend", + "scheduled_service": "no", + "gps_code": "3IN7", + "local_code": "3IN7" + }, + { + "id": "10523", + "ident": "3IN8", + "type": "small_airport", + "name": "Ddt Field", + "latitude_deg": "41.2047004699707", + "longitude_deg": "-86.3458023071289", + "elevation_ft": "823", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Culver", + "scheduled_service": "no", + "gps_code": "3IN8", + "local_code": "3IN8" + }, + { + "id": "10524", + "ident": "3IN9", + "type": "small_airport", + "name": "Thomas Airport", + "latitude_deg": "40.15140151977539", + "longitude_deg": "-86.11920166015625", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Cicero", + "scheduled_service": "no", + "gps_code": "3IN9", + "local_code": "3IN9" + }, + { + "id": "10525", + "ident": "3IS1", + "type": "small_airport", + "name": "Mc Coy Airport", + "latitude_deg": "39.7000007629", + "longitude_deg": "-89.2089996338", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Blue Mound", + "scheduled_service": "no", + "gps_code": "3IS1", + "local_code": "3IS1" + }, + { + "id": "10526", + "ident": "3IS2", + "type": "small_airport", + "name": "Earp Airport", + "latitude_deg": "40.7406005859375", + "longitude_deg": "-90.66960144042969", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Roseville", + "scheduled_service": "no", + "gps_code": "3IS2", + "local_code": "3IS2" + }, + { + "id": "10527", + "ident": "3IS3", + "type": "small_airport", + "name": "Noland RLA Restricted Landing Area", + "latitude_deg": "39.7333984375", + "longitude_deg": "-89.150100708", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Blue Mound", + "scheduled_service": "no", + "gps_code": "3IS3", + "local_code": "3IS3" + }, + { + "id": "10528", + "ident": "3IS4", + "type": "small_airport", + "name": "Merkle Airport", + "latitude_deg": "42.288898", + "longitude_deg": "-90.345398", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hanover", + "scheduled_service": "no", + "gps_code": "3IS4", + "local_code": "3IS4", + "keywords": "Orchard Landing" + }, + { + "id": "10529", + "ident": "3IS5", + "type": "small_airport", + "name": "Holmes Southeast Airport", + "latitude_deg": "39.685394", + "longitude_deg": "-89.598722", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pawnee", + "scheduled_service": "no", + "gps_code": "3IS5", + "local_code": "3IS5", + "keywords": "Holmes Airport" + }, + { + "id": "10530", + "ident": "3IS6", + "type": "small_airport", + "name": "Davy Jones /Private/ Airport", + "latitude_deg": "38.2228012085", + "longitude_deg": "-88.8827972412", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Bonnie", + "scheduled_service": "no", + "gps_code": "3IS6", + "local_code": "3IS6" + }, + { + "id": "10531", + "ident": "3IS7", + "type": "small_airport", + "name": "Foote Airport", + "latitude_deg": "41.086700439453125", + "longitude_deg": "-89.09590148925781", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Wenona", + "scheduled_service": "no", + "gps_code": "3IS7", + "local_code": "3IS7" + }, + { + "id": "10532", + "ident": "3IS8", + "type": "small_airport", + "name": "Rinkenberger Restricted Landing Area", + "latitude_deg": "41.230899810800004", + "longitude_deg": "-89.61569976810001", + "elevation_ft": "808", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Bradford", + "scheduled_service": "no", + "gps_code": "3IS8", + "iata_code": "BDF", + "local_code": "3IS8" + }, + { + "id": "10533", + "ident": "3IS9", + "type": "heliport", + "name": "Grand Tower Heliport", + "latitude_deg": "37.6328010559082", + "longitude_deg": "-89.5062026977539", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Grand Tower", + "scheduled_service": "no", + "gps_code": "3IS9", + "local_code": "3IS9" + }, + { + "id": "10534", + "ident": "3J6", + "type": "small_airport", + "name": "Davis Field", + "latitude_deg": "30.797500610351562", + "longitude_deg": "-82.02760314941406", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Folkston", + "scheduled_service": "no", + "gps_code": "3J6", + "local_code": "3J6" + }, + { + "id": "45532", + "ident": "3JY2", + "type": "heliport", + "name": "Cherry Hill Heliport", + "latitude_deg": "40.8705", + "longitude_deg": "-74.44325", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Parsippany-Troy Hills", + "scheduled_service": "no", + "gps_code": "3JY2", + "local_code": "3JY2" + }, + { + "id": "10535", + "ident": "3K0", + "type": "closed", + "name": "Skilak BLM Helistop", + "latitude_deg": "60.480296", + "longitude_deg": "-150.455017", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Skilak Guard Station", + "scheduled_service": "no", + "keywords": "3K0, AK30" + }, + { + "id": "10536", + "ident": "3K4", + "type": "closed", + "name": "Hillsboro Municipal Airport", + "latitude_deg": "39.1445", + "longitude_deg": "-89.457", + "elevation_ft": "637", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hillsboro", + "scheduled_service": "no", + "keywords": "3K4" + }, + { + "id": "10537", + "ident": "3K9", + "type": "seaplane_base", + "name": "Upper Wasilla Lake Seaplane Base", + "latitude_deg": "61.5886993408", + "longitude_deg": "-149.384994507", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "3K9", + "local_code": "3K9" + }, + { + "id": "10538", + "ident": "3KK", + "type": "small_airport", + "name": "Kankakee Airport", + "latitude_deg": "41.096431", + "longitude_deg": "-87.909594", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Kankakee", + "scheduled_service": "no", + "local_code": "3KK" + }, + { + "id": "10539", + "ident": "3KS0", + "type": "heliport", + "name": "Stormont-Vail Hospital Heliport", + "latitude_deg": "39.0525016784668", + "longitude_deg": "-95.69550323486328", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Topeka", + "scheduled_service": "no", + "gps_code": "3KS0", + "local_code": "3KS0" + }, + { + "id": "10540", + "ident": "3KS1", + "type": "closed", + "name": "Mesa Verde Airport", + "latitude_deg": "39.155602", + "longitude_deg": "-95.743301", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Topeka", + "scheduled_service": "no", + "keywords": "3KS1" + }, + { + "id": "345504", + "ident": "3KS2", + "type": "small_airport", + "name": "Munson Field", + "latitude_deg": "37.060567", + "longitude_deg": "-96.998479", + "elevation_ft": "1166", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Arkansas City", + "scheduled_service": "no", + "gps_code": "3KS2", + "local_code": "3KS2" + }, + { + "id": "10541", + "ident": "3KS3", + "type": "small_airport", + "name": "Rogers Airport", + "latitude_deg": "37.40272", + "longitude_deg": "-97.194278", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Udall", + "scheduled_service": "no", + "gps_code": "3KS3", + "local_code": "3KS3" + }, + { + "id": "10542", + "ident": "3KS4", + "type": "small_airport", + "name": "Eveleigh Farms Airport", + "latitude_deg": "37.767848", + "longitude_deg": "-101.434579", + "elevation_ft": "3207", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Ulysses", + "scheduled_service": "no", + "gps_code": "3KS4", + "local_code": "3KS4" + }, + { + "id": "10543", + "ident": "3KS5", + "type": "small_airport", + "name": "High Point Airport", + "latitude_deg": "37.8427155871", + "longitude_deg": "-97.3514413834", + "elevation_ft": "1395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Valley Center", + "scheduled_service": "no", + "gps_code": "3KS5", + "local_code": "3KS5" + }, + { + "id": "10544", + "ident": "3KS6", + "type": "heliport", + "name": "St Mary Hospital Heliport", + "latitude_deg": "39.20180130004883", + "longitude_deg": "-96.60079956054688", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Manhattan", + "scheduled_service": "no", + "gps_code": "3KS6", + "local_code": "3KS6" + }, + { + "id": "10545", + "ident": "3KS7", + "type": "small_airport", + "name": "Berwick Airport", + "latitude_deg": "37.829200744628906", + "longitude_deg": "-97.3488998413086", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Valley Center", + "scheduled_service": "no", + "gps_code": "3KS7", + "local_code": "3KS7" + }, + { + "id": "10546", + "ident": "3KS8", + "type": "small_airport", + "name": "Reed-Wilsonton Airport", + "latitude_deg": "37.256500244140625", + "longitude_deg": "-95.33360290527344", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Altamont", + "scheduled_service": "no", + "gps_code": "3KS8", + "local_code": "3KS8" + }, + { + "id": "332502", + "ident": "3KS9", + "type": "small_airport", + "name": "Tri Rotor Airport", + "latitude_deg": "37.726869", + "longitude_deg": "-101.195288", + "elevation_ft": "3091", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Ulysses", + "scheduled_service": "no", + "gps_code": "3KS9", + "local_code": "3KS9" + }, + { + "id": "10547", + "ident": "3KY0", + "type": "closed", + "name": "Lamar Field", + "latitude_deg": "37.896702", + "longitude_deg": "-86.789397", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Hawesville", + "scheduled_service": "no", + "keywords": "3KY0" + }, + { + "id": "10548", + "ident": "3KY1", + "type": "small_airport", + "name": "Goode Airpark", + "latitude_deg": "37.64139938354492", + "longitude_deg": "-87.13169860839844", + "elevation_ft": "395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Utica", + "scheduled_service": "no", + "gps_code": "3KY1", + "local_code": "3KY1" + }, + { + "id": "10549", + "ident": "3KY2", + "type": "closed", + "name": "Chesnut Knolls Airport", + "latitude_deg": "37.1511", + "longitude_deg": "-84.2575", + "elevation_ft": "1265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "London", + "scheduled_service": "no", + "keywords": "3KY2" + }, + { + "id": "10550", + "ident": "3KY3", + "type": "small_airport", + "name": "Mason Valley Airport", + "latitude_deg": "38.038299560546875", + "longitude_deg": "-85.3593978881836", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Taylorsville", + "scheduled_service": "no", + "gps_code": "3KY3", + "local_code": "3KY3" + }, + { + "id": "10551", + "ident": "3KY4", + "type": "small_airport", + "name": "Craw Daddy Landing Airport", + "latitude_deg": "38.67279815673828", + "longitude_deg": "-85.18280029296875", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Carrollton", + "scheduled_service": "no", + "gps_code": "3KY4", + "local_code": "3KY4" + }, + { + "id": "10552", + "ident": "3KY5", + "type": "heliport", + "name": "Carroll County Hospital Heliport", + "latitude_deg": "38.680497", + "longitude_deg": "-85.168043", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Carrollton", + "scheduled_service": "no", + "gps_code": "3KY5", + "local_code": "3KY5" + }, + { + "id": "10553", + "ident": "3KY6", + "type": "closed", + "name": "Russell Airport", + "latitude_deg": "38.0306", + "longitude_deg": "-86.231697", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Battletown", + "scheduled_service": "no", + "keywords": "3KY6" + }, + { + "id": "10554", + "ident": "3KY7", + "type": "closed", + "name": "Eagle's Nest Airport", + "latitude_deg": "38.103298", + "longitude_deg": "-86.456902", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Battletown", + "scheduled_service": "no", + "local_code": "3KY7", + "keywords": "3KY7" + }, + { + "id": "10555", + "ident": "3KY8", + "type": "heliport", + "name": "Fidelity Heliport", + "latitude_deg": "39.02790069580078", + "longitude_deg": "-84.52439880371094", + "elevation_ft": "756", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Covington", + "scheduled_service": "no", + "gps_code": "3KY8", + "local_code": "3KY8" + }, + { + "id": "10556", + "ident": "3KY9", + "type": "small_airport", + "name": "Miles Field", + "latitude_deg": "38.122265", + "longitude_deg": "-85.126166", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Waddy", + "scheduled_service": "no", + "gps_code": "3KY9", + "local_code": "3KY9" + }, + { + "id": "10557", + "ident": "3L1", + "type": "closed", + "name": "Charlie Hammonds Seaplane Base", + "latitude_deg": "29.589899", + "longitude_deg": "-90.713402", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Houma", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Charlie_Hammonds_Seaplane_Base", + "keywords": "3L1" + }, + { + "id": "10558", + "ident": "3L7", + "type": "small_airport", + "name": "Flying M Ranch Airport", + "latitude_deg": "44.73830032348633", + "longitude_deg": "-83.37969970703125", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "3L7", + "local_code": "3L7" + }, + { + "id": "10559", + "ident": "3LA0", + "type": "small_airport", + "name": "Harrington Flying Service Airport", + "latitude_deg": "29.919700622558594", + "longitude_deg": "-92.24739837646484", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kaplan", + "scheduled_service": "no", + "gps_code": "3LA0", + "local_code": "3LA0" + }, + { + "id": "10560", + "ident": "3LA1", + "type": "small_airport", + "name": "Wilder Airport", + "latitude_deg": "30.558500289916992", + "longitude_deg": "-92.8042984008789", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kinder", + "scheduled_service": "no", + "gps_code": "3LA1", + "local_code": "3LA1" + }, + { + "id": "10561", + "ident": "3LA2", + "type": "seaplane_base", + "name": "Southern Natural Gas Co. Seaplane Base", + "latitude_deg": "30.280799865722656", + "longitude_deg": "-89.9542007446289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lacombe", + "scheduled_service": "no", + "gps_code": "3LA2", + "local_code": "3LA2" + }, + { + "id": "10562", + "ident": "3LA3", + "type": "closed", + "name": "La Coste Construction County Airport", + "latitude_deg": "30.502399", + "longitude_deg": "-91.242897", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Port Allen", + "scheduled_service": "no", + "keywords": "3LA3" + }, + { + "id": "10563", + "ident": "3LA4", + "type": "small_airport", + "name": "Little Pecan Island Airport", + "latitude_deg": "29.799701", + "longitude_deg": "-92.803563", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Grand Chenier", + "scheduled_service": "no", + "gps_code": "3LA4", + "local_code": "3LA4", + "keywords": "Lake Arthur" + }, + { + "id": "10564", + "ident": "3LA5", + "type": "closed", + "name": "Petroleum Helicopters Heliport", + "latitude_deg": "30.2169", + "longitude_deg": "-93.153801", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Charles", + "scheduled_service": "no", + "keywords": "3LA5" + }, + { + "id": "10565", + "ident": "3LA6", + "type": "small_airport", + "name": "Morgan Crop Service Nr 2 Airport", + "latitude_deg": "30.137699127197266", + "longitude_deg": "-93.07929992675781", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Charles", + "scheduled_service": "no", + "gps_code": "3LA6", + "local_code": "3LA6" + }, + { + "id": "10566", + "ident": "3LA7", + "type": "heliport", + "name": "Variable Bore Rams Heliport", + "latitude_deg": "30.076753", + "longitude_deg": "-91.948969", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Broussard", + "scheduled_service": "yes", + "gps_code": "3LA7", + "local_code": "3LA7" + }, + { + "id": "10567", + "ident": "3LA8", + "type": "small_airport", + "name": "Open A-1 Ranch Airport", + "latitude_deg": "30.138500213623047", + "longitude_deg": "-93.22789764404297", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Charles", + "scheduled_service": "no", + "gps_code": "3LA8", + "local_code": "3LA8" + }, + { + "id": "10568", + "ident": "3LA9", + "type": "small_airport", + "name": "Morgan Crop Service Airport", + "latitude_deg": "30.229400634765625", + "longitude_deg": "-93.0885009765625", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Charles", + "scheduled_service": "no", + "gps_code": "3LA9", + "local_code": "3LA9" + }, + { + "id": "10569", + "ident": "3LL0", + "type": "small_airport", + "name": "Miller Airport", + "latitude_deg": "42.49169921875", + "longitude_deg": "-89.09590148925781", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "South Beloit", + "scheduled_service": "no", + "gps_code": "3LL0", + "local_code": "3LL0" + }, + { + "id": "10570", + "ident": "3LL1", + "type": "small_airport", + "name": "Herschel Hunter Airport", + "latitude_deg": "38.223785", + "longitude_deg": "-89.706689", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Marissa", + "scheduled_service": "no", + "gps_code": "3LL1", + "local_code": "3LL1" + }, + { + "id": "10571", + "ident": "3LL2", + "type": "heliport", + "name": "Hammond-Henry Hospital Heliport", + "latitude_deg": "41.46110153198242", + "longitude_deg": "-90.15689849853516", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Geneseo", + "scheduled_service": "no", + "gps_code": "3LL2", + "local_code": "3LL2" + }, + { + "id": "10572", + "ident": "3LL3", + "type": "small_airport", + "name": "Kibler Airport", + "latitude_deg": "39.44609832763672", + "longitude_deg": "-87.64450073242188", + "elevation_ft": "588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Marshall", + "scheduled_service": "no", + "gps_code": "3LL3", + "local_code": "3LL3" + }, + { + "id": "10573", + "ident": "3LL4", + "type": "small_airport", + "name": "Pillow Hill Airport", + "latitude_deg": "42.447200775146484", + "longitude_deg": "-88.20149993896484", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Spring Grove", + "scheduled_service": "no", + "gps_code": "3LL4", + "local_code": "3LL4" + }, + { + "id": "10574", + "ident": "3LL5", + "type": "small_airport", + "name": "Richardson Field", + "latitude_deg": "42.464500427246094", + "longitude_deg": "-88.23429870605469", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Spring Grove", + "scheduled_service": "no", + "gps_code": "3LL5", + "local_code": "3LL5" + }, + { + "id": "45401", + "ident": "3LL6", + "type": "small_airport", + "name": "Bickel Airport", + "latitude_deg": "38.335", + "longitude_deg": "-89.769722", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lenzburg", + "scheduled_service": "no", + "gps_code": "3LL6", + "local_code": "3LL6" + }, + { + "id": "10575", + "ident": "3LL7", + "type": "heliport", + "name": "St Margarets Hospital Heliport", + "latitude_deg": "41.32500076293945", + "longitude_deg": "-89.19730377197266", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Spring Valley", + "scheduled_service": "no", + "gps_code": "3LL7", + "local_code": "3LL7" + }, + { + "id": "10576", + "ident": "3LL8", + "type": "small_airport", + "name": "Mc Leansboro Airport", + "latitude_deg": "38.0741996765", + "longitude_deg": "-88.5375976562", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mc Leansboro", + "scheduled_service": "no", + "gps_code": "3LL8", + "local_code": "3LL8" + }, + { + "id": "10577", + "ident": "3LL9", + "type": "small_airport", + "name": "Compton Airport", + "latitude_deg": "38.80419921875", + "longitude_deg": "-89.60890197753906", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pocahontas", + "scheduled_service": "no", + "gps_code": "3LL9", + "local_code": "3LL9" + }, + { + "id": "10578", + "ident": "3LS7", + "type": "small_airport", + "name": "Bock Farms Airport", + "latitude_deg": "39.98640060424805", + "longitude_deg": "-89.51170349121094", + "elevation_ft": "592", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Williamsville", + "scheduled_service": "no", + "gps_code": "3LS7", + "local_code": "3LS7" + }, + { + "id": "345678", + "ident": "3LS8", + "type": "small_airport", + "name": "The Place Airport", + "latitude_deg": "30.651296", + "longitude_deg": "-90.114369", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Folsom", + "scheduled_service": "no", + "gps_code": "3LS8", + "local_code": "3LS8" + }, + { + "id": "10579", + "ident": "3M0", + "type": "small_airport", + "name": "Gastons Airport", + "latitude_deg": "36.34870147705078", + "longitude_deg": "-92.55709838867188", + "elevation_ft": "479", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Lakeview", + "scheduled_service": "no", + "gps_code": "3M0", + "local_code": "3M0" + }, + { + "id": "10580", + "ident": "3M1", + "type": "heliport", + "name": "Hermitage Lions Heliport", + "latitude_deg": "37.947200775146484", + "longitude_deg": "-93.33360290527344", + "elevation_ft": "902", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hermitage", + "scheduled_service": "no", + "gps_code": "3M1", + "local_code": "3M1" + }, + { + "id": "10581", + "ident": "3M5", + "type": "small_airport", + "name": "Moontown Airport", + "latitude_deg": "34.74729919433594", + "longitude_deg": "-86.4614028930664", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Huntsville", + "scheduled_service": "no", + "gps_code": "3M5", + "local_code": "3M5" + }, + { + "id": "10582", + "ident": "3MA0", + "type": "heliport", + "name": "Compaq Woburn Heliport", + "latitude_deg": "42.50979995727539", + "longitude_deg": "-71.13639831542969", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Woburn", + "scheduled_service": "no", + "gps_code": "3MA0", + "local_code": "3MA0" + }, + { + "id": "10583", + "ident": "3MA1", + "type": "heliport", + "name": "Marlborough Hospital Heliport", + "latitude_deg": "42.356201171875", + "longitude_deg": "-71.55509948730469", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Marlborough", + "scheduled_service": "no", + "gps_code": "3MA1", + "local_code": "3MA1" + }, + { + "id": "10584", + "ident": "3MA2", + "type": "small_airport", + "name": "Baines Airport", + "latitude_deg": "42.316200256347656", + "longitude_deg": "-73.03199768066406", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Middlefield", + "scheduled_service": "no", + "gps_code": "3MA2", + "local_code": "3MA2" + }, + { + "id": "10585", + "ident": "3MA3", + "type": "heliport", + "name": "Seapuit Heliport", + "latitude_deg": "41.61149978637695", + "longitude_deg": "-70.41529846191406", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Barnstable", + "scheduled_service": "no", + "gps_code": "3MA3", + "local_code": "3MA3" + }, + { + "id": "10586", + "ident": "3MA4", + "type": "heliport", + "name": "North Chatham Heliport", + "latitude_deg": "41.71480178833008", + "longitude_deg": "-69.96610260009766", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Chatham", + "scheduled_service": "no", + "gps_code": "3MA4", + "local_code": "3MA4" + }, + { + "id": "10587", + "ident": "3MA5", + "type": "small_airport", + "name": "Westport Airport", + "latitude_deg": "41.543201", + "longitude_deg": "-71.035301", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Westport", + "scheduled_service": "no", + "gps_code": "3MA5", + "local_code": "3MA5" + }, + { + "id": "10588", + "ident": "3MA6", + "type": "heliport", + "name": "Happy Heliport", + "latitude_deg": "41.58369827270508", + "longitude_deg": "-71.04060363769531", + "elevation_ft": "127", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Dartmouth", + "scheduled_service": "no", + "gps_code": "3MA6", + "local_code": "3MA6" + }, + { + "id": "10589", + "ident": "3MA7", + "type": "closed", + "name": "Gear Plant Heliport", + "latitude_deg": "42.452141", + "longitude_deg": "-70.965432", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Lynn", + "scheduled_service": "no", + "gps_code": "3MA7", + "local_code": "3MA7" + }, + { + "id": "10590", + "ident": "3MA8", + "type": "heliport", + "name": "Sadler Hill Heliport", + "latitude_deg": "42.62229919433594", + "longitude_deg": "-70.65229797363281", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Gloucester", + "scheduled_service": "no", + "gps_code": "3MA8", + "local_code": "3MA8" + }, + { + "id": "10591", + "ident": "3MA9", + "type": "heliport", + "name": "Marston Mills Heliport", + "latitude_deg": "41.64039993286133", + "longitude_deg": "-70.40779876708984", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Marston Mills", + "scheduled_service": "no", + "gps_code": "3MA9", + "local_code": "3MA9" + }, + { + "id": "10592", + "ident": "3MD0", + "type": "small_airport", + "name": "Burhans Memorial Airport", + "latitude_deg": "39.348201751708984", + "longitude_deg": "-77.33609771728516", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Frederick", + "scheduled_service": "no", + "gps_code": "3MD0", + "local_code": "3MD0" + }, + { + "id": "10593", + "ident": "3MD1", + "type": "heliport", + "name": "MedStar Southern Maryland Hospital Center Heliport", + "latitude_deg": "38.748009", + "longitude_deg": "-76.876858", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "3MD1", + "local_code": "3MD1" + }, + { + "id": "10594", + "ident": "3MD2", + "type": "heliport", + "name": "Garrett County Memorial Hospital Heliport", + "latitude_deg": "39.41320037841797", + "longitude_deg": "-79.40119934082031", + "elevation_ft": "2457", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Oakland", + "scheduled_service": "no", + "gps_code": "3MD2", + "local_code": "3MD2" + }, + { + "id": "10595", + "ident": "3MD3", + "type": "heliport", + "name": "Hoopers Heliport", + "latitude_deg": "38.311500549316406", + "longitude_deg": "-75.12049865722656", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Ocean City", + "scheduled_service": "no", + "gps_code": "3MD3", + "local_code": "3MD3" + }, + { + "id": "10596", + "ident": "3MD4", + "type": "small_airport", + "name": "Fairview Airport", + "latitude_deg": "38.97760009765625", + "longitude_deg": "-76.63939666748047", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Annapolis", + "scheduled_service": "no", + "gps_code": "3MD4", + "local_code": "3MD4" + }, + { + "id": "10597", + "ident": "3MD5", + "type": "small_airport", + "name": "Hidden Hills Airport", + "latitude_deg": "38.62120056152344", + "longitude_deg": "-75.84130096435547", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Hurlock", + "scheduled_service": "no", + "gps_code": "3MD5", + "local_code": "3MD5" + }, + { + "id": "10598", + "ident": "3MD6", + "type": "small_airport", + "name": "West St Mary's Airport", + "latitude_deg": "38.18899917602539", + "longitude_deg": "-76.4468994140625", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Drayden", + "scheduled_service": "no", + "gps_code": "3MD6", + "local_code": "3MD6" + }, + { + "id": "10599", + "ident": "3MD7", + "type": "heliport", + "name": "Green Terrace Heliport", + "latitude_deg": "39.4025993347168", + "longitude_deg": "-76.50499725341797", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Baltimore", + "scheduled_service": "no", + "gps_code": "3MD7", + "local_code": "3MD7" + }, + { + "id": "10600", + "ident": "3MD8", + "type": "small_airport", + "name": "Pokety Airport", + "latitude_deg": "38.612300872802734", + "longitude_deg": "-76.17109680175781", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "3MD8", + "local_code": "3MD8" + }, + { + "id": "10601", + "ident": "3MD9", + "type": "small_airport", + "name": "Chandler Airport", + "latitude_deg": "38.11819839477539", + "longitude_deg": "-76.39129638671875", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Ridge", + "scheduled_service": "no", + "gps_code": "3MD9", + "local_code": "3MD9" + }, + { + "id": "301251", + "ident": "3ME7", + "type": "seaplane_base", + "name": "Peru / Destiny Cove SPB", + "latitude_deg": "44.460597", + "longitude_deg": "-70.396957", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "scheduled_service": "no", + "gps_code": "3ME7" + }, + { + "id": "10602", + "ident": "3ME8", + "type": "seaplane_base", + "name": "Mast Cove Seaplane Base", + "latitude_deg": "43.994998931884766", + "longitude_deg": "-70.64129638671875", + "elevation_ft": "267", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Naples", + "scheduled_service": "no", + "gps_code": "3ME8", + "local_code": "3ME8" + }, + { + "id": "10603", + "ident": "3MI0", + "type": "small_airport", + "name": "Doss Field", + "latitude_deg": "43.9370002746582", + "longitude_deg": "-85.02200317382812", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lake George", + "scheduled_service": "no", + "gps_code": "3MI0", + "local_code": "3MI0" + }, + { + "id": "10604", + "ident": "3MI1", + "type": "closed", + "name": "Fuller Heliport", + "latitude_deg": "42.5623", + "longitude_deg": "-83.659103", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Milford", + "scheduled_service": "no", + "keywords": "3MI1" + }, + { + "id": "10605", + "ident": "3MI2", + "type": "small_airport", + "name": "South Fox Island Airport", + "latitude_deg": "45.399200439453125", + "longitude_deg": "-85.8301010131836", + "elevation_ft": "616", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Northport", + "scheduled_service": "no", + "gps_code": "3MI2", + "local_code": "3MI2" + }, + { + "id": "45478", + "ident": "3MI3", + "type": "heliport", + "name": "Zayti Field Heliport", + "latitude_deg": "42.440222", + "longitude_deg": "-83.515861", + "elevation_ft": "901", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Novi", + "scheduled_service": "no", + "gps_code": "3MI3", + "local_code": "3MI3" + }, + { + "id": "10606", + "ident": "3MI4", + "type": "heliport", + "name": "Clear Sky Heliport", + "latitude_deg": "42.185001373291016", + "longitude_deg": "-85.7217025756836", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Kalamazoo", + "scheduled_service": "no", + "gps_code": "3MI4", + "local_code": "3MI4" + }, + { + "id": "10607", + "ident": "3MI5", + "type": "closed", + "name": "Innes Acres Airport", + "latitude_deg": "43.450001", + "longitude_deg": "-83.027702", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Decker", + "scheduled_service": "no", + "keywords": "3MI5" + }, + { + "id": "10608", + "ident": "3MI6", + "type": "heliport", + "name": "Highland Heliport", + "latitude_deg": "42.65700149536133", + "longitude_deg": "-83.65019989013672", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Highland", + "scheduled_service": "no", + "gps_code": "3MI6", + "local_code": "3MI6" + }, + { + "id": "10609", + "ident": "3MI7", + "type": "small_airport", + "name": "Willie Run Airport", + "latitude_deg": "42.829200744628906", + "longitude_deg": "-83.36859893798828", + "elevation_ft": "1043", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ortonville", + "scheduled_service": "no", + "gps_code": "3MI7", + "local_code": "3MI7" + }, + { + "id": "10610", + "ident": "3MI8", + "type": "heliport", + "name": "Bendix Heliport", + "latitude_deg": "42.48059844970703", + "longitude_deg": "-83.2477035522461", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Southfield", + "scheduled_service": "no", + "gps_code": "3MI8", + "local_code": "3MI8" + }, + { + "id": "10611", + "ident": "3MI9", + "type": "seaplane_base", + "name": "Ness Landing Seaplane Base", + "latitude_deg": "45.903900146484375", + "longitude_deg": "-86.97029876708984", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Rapid River", + "scheduled_service": "no", + "gps_code": "3MI9", + "local_code": "3MI9" + }, + { + "id": "10612", + "ident": "3MN0", + "type": "seaplane_base", + "name": "Shadduck Seaplane Base", + "latitude_deg": "45.292198181152344", + "longitude_deg": "-94.0947036743164", + "elevation_ft": "991", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Annandale", + "scheduled_service": "no", + "gps_code": "3MN0", + "local_code": "3MN0" + }, + { + "id": "10613", + "ident": "3MN1", + "type": "small_airport", + "name": "Stahlberg-Mohr Airport", + "latitude_deg": "47.44850158691406", + "longitude_deg": "-92.6448974609375", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Iron Junction", + "scheduled_service": "no", + "gps_code": "3MN1", + "local_code": "3MN1" + }, + { + "id": "10614", + "ident": "3MN2", + "type": "heliport", + "name": "Mercy Hospital & Healthcare Center Heliport", + "latitude_deg": "46.44070053100586", + "longitude_deg": "-92.77549743652344", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Moose Lake", + "scheduled_service": "no", + "gps_code": "3MN2", + "local_code": "3MN2" + }, + { + "id": "10615", + "ident": "3MN3", + "type": "closed", + "name": "Honker Flats Airport", + "latitude_deg": "48.538896", + "longitude_deg": "-95.952004", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Middle River", + "scheduled_service": "no", + "keywords": "3MN3" + }, + { + "id": "10616", + "ident": "3MN4", + "type": "closed", + "name": "Agri Helicopter Inc. Heliport", + "latitude_deg": "44.094101", + "longitude_deg": "-93.267997", + "elevation_ft": "1148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Owatonna", + "scheduled_service": "no", + "keywords": "3MN4" + }, + { + "id": "10617", + "ident": "3MN5", + "type": "closed", + "name": "Little Rock/Rock Port Airport", + "latitude_deg": "45.723", + "longitude_deg": "-94.193901", + "elevation_ft": "1055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Rice", + "scheduled_service": "no", + "keywords": "3MN5" + }, + { + "id": "10618", + "ident": "3MN6", + "type": "heliport", + "name": "Mayo Clinic Health System-Mankato Heliport", + "latitude_deg": "44.163951", + "longitude_deg": "-93.983215", + "elevation_ft": "1076", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Mankato", + "scheduled_service": "no", + "gps_code": "3MN6", + "local_code": "3MN6", + "keywords": "Immanuel - St Joseph's Hospital" + }, + { + "id": "10619", + "ident": "3MN7", + "type": "small_airport", + "name": "Blue Sky Airport", + "latitude_deg": "46.800498962402344", + "longitude_deg": "-96.59500122070312", + "elevation_ft": "927", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Sabin", + "scheduled_service": "no", + "gps_code": "3MN7", + "local_code": "3MN7" + }, + { + "id": "10620", + "ident": "3MN8", + "type": "closed", + "name": "Aysta Field", + "latitude_deg": "45.522701", + "longitude_deg": "-94.122803", + "elevation_ft": "1024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Saint Cloud", + "scheduled_service": "no", + "gps_code": "3MN8", + "local_code": "3MN8" + }, + { + "id": "10621", + "ident": "3MN9", + "type": "small_airport", + "name": "Schumacher Airport", + "latitude_deg": "44.9844017029", + "longitude_deg": "-93.9360961914", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Oster", + "scheduled_service": "no", + "gps_code": "3MN9", + "local_code": "3MN9" + }, + { + "id": "10622", + "ident": "3MO", + "type": "small_airport", + "name": "Sean D Sheldon Memorial Airfield", + "latitude_deg": "38.0186", + "longitude_deg": "-93.6931", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Osceola", + "scheduled_service": "no", + "gps_code": "23MU", + "local_code": "23MU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Osceola_Municipal_Airport_(Missouri)", + "keywords": "3MO, Osceola Municipal Airport" + }, + { + "id": "10623", + "ident": "3MO1", + "type": "heliport", + "name": "Police Department Helicopter Maint Facility Heliport", + "latitude_deg": "39.0457992554", + "longitude_deg": "-94.49749755859999", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kansas City", + "scheduled_service": "no", + "gps_code": "3MO1", + "local_code": "3MO1" + }, + { + "id": "10624", + "ident": "3MO2", + "type": "small_airport", + "name": "Ultra Flight Airpark", + "latitude_deg": "38.685021", + "longitude_deg": "-91.338214", + "elevation_ft": "502", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Berger", + "scheduled_service": "no", + "gps_code": "3MO2", + "local_code": "3MO2" + }, + { + "id": "10625", + "ident": "3MO3", + "type": "heliport", + "name": "Research Medical Center Heliport", + "latitude_deg": "39.00809860229492", + "longitude_deg": "-94.55819702148438", + "elevation_ft": "947", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kansas City", + "scheduled_service": "no", + "gps_code": "3MO3", + "local_code": "3MO3" + }, + { + "id": "10626", + "ident": "3MO4", + "type": "small_airport", + "name": "Penman Airport", + "latitude_deg": "36.4506", + "longitude_deg": "-89.628098", + "elevation_ft": "287", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Portageville", + "scheduled_service": "no", + "gps_code": "3MO4", + "local_code": "3MO4" + }, + { + "id": "10627", + "ident": "3MO5", + "type": "small_airport", + "name": "Nimsick Airport", + "latitude_deg": "37.12810134887695", + "longitude_deg": "-94.21610260009766", + "elevation_ft": "1095", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Carthage", + "scheduled_service": "no", + "gps_code": "3MO5", + "local_code": "3MO5" + }, + { + "id": "10628", + "ident": "3MO6", + "type": "small_airport", + "name": "Kitty Hawk Estates Airport", + "latitude_deg": "39.335601806640625", + "longitude_deg": "-94.48359680175781", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kearney", + "scheduled_service": "no", + "gps_code": "3MO6", + "local_code": "3MO6" + }, + { + "id": "10629", + "ident": "3MO7", + "type": "small_airport", + "name": "Fairbanks Airport", + "latitude_deg": "40.08330154418945", + "longitude_deg": "-94.61689758300781", + "elevation_ft": "1083", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "King City", + "scheduled_service": "no", + "gps_code": "3MO7", + "local_code": "3MO7" + }, + { + "id": "10630", + "ident": "3MO8", + "type": "small_airport", + "name": "Fizzle Ridge Airport", + "latitude_deg": "40.031898498535156", + "longitude_deg": "-94.5376968383789", + "elevation_ft": "1096", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "King City", + "scheduled_service": "no", + "gps_code": "3MO8", + "local_code": "3MO8" + }, + { + "id": "10631", + "ident": "3MO9", + "type": "heliport", + "name": "Quad State Helicopter Heliport", + "latitude_deg": "40.03329849243164", + "longitude_deg": "-94.5376968383789", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "King City", + "scheduled_service": "no", + "gps_code": "3MO9", + "local_code": "3MO9" + }, + { + "id": "10632", + "ident": "3MS0", + "type": "heliport", + "name": "Grand Gulf Heliport", + "latitude_deg": "32.013999938964844", + "longitude_deg": "-91.0521011352539", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Port Gibson", + "scheduled_service": "no", + "gps_code": "3MS0", + "local_code": "3MS0" + }, + { + "id": "10633", + "ident": "3MS1", + "type": "small_airport", + "name": "Thomas Field", + "latitude_deg": "34.80580139160156", + "longitude_deg": "-89.46089935302734", + "elevation_ft": "485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Holly Springs", + "scheduled_service": "no", + "gps_code": "3MS1", + "local_code": "3MS1" + }, + { + "id": "10634", + "ident": "3MS2", + "type": "small_airport", + "name": "Thunderfoot Ranch Airport", + "latitude_deg": "31.079099655151367", + "longitude_deg": "-90.02839660644531", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Tylertown", + "scheduled_service": "no", + "gps_code": "3MS2", + "local_code": "3MS2" + }, + { + "id": "10635", + "ident": "3MS3", + "type": "small_airport", + "name": "Root Hog Airport", + "latitude_deg": "32.515899658203125", + "longitude_deg": "-90.3511962890625", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Flora", + "scheduled_service": "no", + "gps_code": "3MS3", + "local_code": "3MS3" + }, + { + "id": "10636", + "ident": "3MS4", + "type": "heliport", + "name": "Pascagoula Naval Station Heliport", + "latitude_deg": "30.33839988708496", + "longitude_deg": "-88.57360076904297", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Pascagoula", + "scheduled_service": "no", + "gps_code": "3MS4", + "local_code": "3MS4" + }, + { + "id": "10637", + "ident": "3MS5", + "type": "small_airport", + "name": "Mitchell's Airport", + "latitude_deg": "33.30179977416992", + "longitude_deg": "-89.81430053710938", + "elevation_ft": "323", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Vaiden", + "scheduled_service": "no", + "gps_code": "3MS5", + "local_code": "3MS5" + }, + { + "id": "10638", + "ident": "3MS6", + "type": "small_airport", + "name": "E E Lane Airport", + "latitude_deg": "32.554298400878906", + "longitude_deg": "-90.30290222167969", + "elevation_ft": "268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Flora", + "scheduled_service": "no", + "gps_code": "3MS6", + "local_code": "3MS6" + }, + { + "id": "10639", + "ident": "3MS8", + "type": "small_airport", + "name": "Fairview Farms Airport", + "latitude_deg": "32.94219970703125", + "longitude_deg": "-88.3635025024414", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Scooba", + "scheduled_service": "no", + "gps_code": "3MS8", + "local_code": "3MS8" + }, + { + "id": "10640", + "ident": "3MS9", + "type": "small_airport", + "name": "Union Municipal Airport", + "latitude_deg": "32.5806999206543", + "longitude_deg": "-89.13619995117188", + "elevation_ft": "512", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Union", + "scheduled_service": "no", + "gps_code": "3MS9", + "local_code": "3MS9" + }, + { + "id": "45515", + "ident": "3MT3", + "type": "small_airport", + "name": "Three Cross Ranch Airport", + "latitude_deg": "46.125556", + "longitude_deg": "-109.365", + "elevation_ft": "3930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Ryegate", + "scheduled_service": "no", + "gps_code": "3MT3", + "local_code": "3MT3" + }, + { + "id": "346507", + "ident": "3MT5", + "type": "heliport", + "name": "Community Hospital of Anaconda EMS Helipad", + "latitude_deg": "46.132137", + "longitude_deg": "-112.957397", + "elevation_ft": "5320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Anaconda", + "scheduled_service": "no", + "gps_code": "3MT5", + "local_code": "3MT5" + }, + { + "id": "324431", + "ident": "3MT6", + "type": "small_airport", + "name": "Nistler Airport", + "latitude_deg": "45.634272", + "longitude_deg": "-111.11433", + "elevation_ft": "5035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Bozeman", + "scheduled_service": "no", + "gps_code": "3MT6", + "local_code": "3MT6" + }, + { + "id": "331527", + "ident": "3MT9", + "type": "small_airport", + "name": "Willow Airport", + "latitude_deg": "46.471562", + "longitude_deg": "-113.492461", + "elevation_ft": "5536", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Philipsburg", + "scheduled_service": "no", + "gps_code": "3MT9", + "local_code": "3MT9" + }, + { + "id": "10641", + "ident": "3N5", + "type": "small_airport", + "name": "Newton Airport", + "latitude_deg": "41.02730178833008", + "longitude_deg": "-74.75849914550781", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Newton", + "scheduled_service": "no", + "gps_code": "3N5", + "local_code": "3N5" + }, + { + "id": "10643", + "ident": "3N8", + "type": "small_airport", + "name": "Mahnomen County Airport", + "latitude_deg": "47.261412", + "longitude_deg": "-95.930057", + "elevation_ft": "1244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Waubun", + "scheduled_service": "no", + "local_code": "3N8" + }, + { + "id": "10644", + "ident": "3N9", + "type": "closed", + "name": "Alamo Navajo Airport", + "latitude_deg": "34.364422", + "longitude_deg": "-107.496862", + "elevation_ft": "6460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Alamo", + "scheduled_service": "no", + "keywords": "3N9" + }, + { + "id": "10645", + "ident": "3NA0", + "type": "small_airport", + "name": "Erickson Airport", + "latitude_deg": "47.41669845581055", + "longitude_deg": "-97.5114974975586", + "elevation_ft": "1095", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Clifford", + "scheduled_service": "no", + "gps_code": "3NA0", + "local_code": "3NA0" + }, + { + "id": "10646", + "ident": "3NA2", + "type": "small_airport", + "name": "Lorentzen Airport", + "latitude_deg": "47.302799224853516", + "longitude_deg": "-101.06700134277344", + "elevation_ft": "1790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Washburn", + "scheduled_service": "no", + "gps_code": "3NA2", + "local_code": "3NA2" + }, + { + "id": "10647", + "ident": "3NA6", + "type": "small_airport", + "name": "Risovi Ranch Strip", + "latitude_deg": "47.770599365234375", + "longitude_deg": "-99.46179962158203", + "elevation_ft": "1560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Hamberg", + "scheduled_service": "no", + "gps_code": "3NA6", + "local_code": "3NA6" + }, + { + "id": "10648", + "ident": "3NA7", + "type": "heliport", + "name": "J. R. Heliport", + "latitude_deg": "47.38610076904297", + "longitude_deg": "-98.71700286865234", + "elevation_ft": "1530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Kensal", + "scheduled_service": "no", + "gps_code": "3NA7", + "local_code": "3NA7" + }, + { + "id": "10649", + "ident": "3NC0", + "type": "small_airport", + "name": "Clyde Valley Airport", + "latitude_deg": "35.690399169921875", + "longitude_deg": "-81.7123031616211", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Morganton", + "scheduled_service": "no", + "gps_code": "3NC0", + "local_code": "3NC0" + }, + { + "id": "10650", + "ident": "3NC1", + "type": "small_airport", + "name": "Welborn Farm Airport", + "latitude_deg": "36.20539855957031", + "longitude_deg": "-80.65840148925781", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Boonville", + "scheduled_service": "no", + "gps_code": "3NC1", + "local_code": "3NC1" + }, + { + "id": "10651", + "ident": "3NC2", + "type": "heliport", + "name": "Garner Road Heliport", + "latitude_deg": "35.732111", + "longitude_deg": "-78.628722", + "elevation_ft": "375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Raleigh", + "scheduled_service": "no", + "gps_code": "3NC2", + "local_code": "3NC2" + }, + { + "id": "10652", + "ident": "3NC3", + "type": "small_airport", + "name": "Tucker Field", + "latitude_deg": "35.24689865112305", + "longitude_deg": "-80.40750122070312", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Locust", + "scheduled_service": "no", + "gps_code": "3NC3", + "local_code": "3NC3" + }, + { + "id": "10653", + "ident": "3NC4", + "type": "small_airport", + "name": "Mc Donald Field", + "latitude_deg": "35.05350113", + "longitude_deg": "-80.40899658", + "elevation_ft": "545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Marshville", + "scheduled_service": "no", + "gps_code": "3NC4", + "local_code": "3NC4" + }, + { + "id": "10654", + "ident": "3NC5", + "type": "small_airport", + "name": "Flying Bj Airport", + "latitude_deg": "35.812198638916016", + "longitude_deg": "-81.06999969482422", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Stony Point", + "scheduled_service": "no", + "gps_code": "3NC5", + "local_code": "3NC5" + }, + { + "id": "10655", + "ident": "3NC6", + "type": "small_airport", + "name": "Mc Cachren Field", + "latitude_deg": "35.3117980957", + "longitude_deg": "-80.644203186", + "elevation_ft": "565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Harrisburg", + "scheduled_service": "no", + "gps_code": "3NC6", + "local_code": "3NC6" + }, + { + "id": "10656", + "ident": "3NC7", + "type": "small_airport", + "name": "Maxwell Airport", + "latitude_deg": "36.5192985534668", + "longitude_deg": "-81.13670349121094", + "elevation_ft": "3050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Sparta", + "scheduled_service": "no", + "gps_code": "3NC7", + "local_code": "3NC7" + }, + { + "id": "10657", + "ident": "3NC8", + "type": "heliport", + "name": "Chinquapin Heliport", + "latitude_deg": "35.157902", + "longitude_deg": "-83.067047", + "elevation_ft": "4200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Cashiers", + "scheduled_service": "no", + "gps_code": "3NC8", + "local_code": "3NC8" + }, + { + "id": "10658", + "ident": "3NC9", + "type": "small_airport", + "name": "Womble Field", + "latitude_deg": "35.875099182128906", + "longitude_deg": "-79.08719635009766", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Chapel Hill", + "scheduled_service": "no", + "gps_code": "3NC9", + "local_code": "3NC9" + }, + { + "id": "10659", + "ident": "3ND5", + "type": "small_airport", + "name": "Gage Flying Farmer Airport", + "latitude_deg": "47.061100006103516", + "longitude_deg": "-97.77120208740234", + "elevation_ft": "1235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Oriska", + "scheduled_service": "no", + "gps_code": "3ND5", + "local_code": "3ND5" + }, + { + "id": "348552", + "ident": "3ND6", + "type": "small_airport", + "name": "DJR Ultralight Flightpark", + "latitude_deg": "47.242069", + "longitude_deg": "-99.897625", + "elevation_ft": "1945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Tuttle", + "scheduled_service": "no", + "gps_code": "3ND6", + "local_code": "3ND6" + }, + { + "id": "10660", + "ident": "3NE2", + "type": "small_airport", + "name": "Phillips Private Airport", + "latitude_deg": "42.326349", + "longitude_deg": "-103.194795", + "elevation_ft": "4370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hemingford", + "scheduled_service": "no", + "gps_code": "3NE2", + "local_code": "3NE2" + }, + { + "id": "10661", + "ident": "3NE3", + "type": "small_airport", + "name": "Wells Airport", + "latitude_deg": "40.5", + "longitude_deg": "-99.31700134277344", + "elevation_ft": "2275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Holdrege", + "scheduled_service": "no", + "gps_code": "3NE3", + "local_code": "3NE3" + }, + { + "id": "349492", + "ident": "3NE5", + "type": "small_airport", + "name": "MT Airfield", + "latitude_deg": "40.947553", + "longitude_deg": "-96.202597", + "elevation_ft": "1165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Murdock", + "scheduled_service": "no", + "gps_code": "3NE5", + "local_code": "3NE5" + }, + { + "id": "10662", + "ident": "3NE6", + "type": "small_airport", + "name": "Burkinshaw Field", + "latitude_deg": "42.96670150756836", + "longitude_deg": "-99.26699829101562", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Jamison", + "scheduled_service": "no", + "gps_code": "3NE6", + "local_code": "3NE6" + }, + { + "id": "10663", + "ident": "3NE7", + "type": "small_airport", + "name": "Pawlet Ranch Airport", + "latitude_deg": "41.8291015625", + "longitude_deg": "-102.34300231933594", + "elevation_ft": "3850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Lakeside", + "scheduled_service": "no", + "gps_code": "3NE7", + "local_code": "3NE7" + }, + { + "id": "10664", + "ident": "3NE9", + "type": "closed", + "name": "Phelps Airport", + "latitude_deg": "41.042009", + "longitude_deg": "-103.068956", + "elevation_ft": "4400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Lorenzo", + "scheduled_service": "no", + "keywords": "3NE9" + }, + { + "id": "321922", + "ident": "3NH2", + "type": "seaplane_base", + "name": "Flying Loon Seaplane Base", + "latitude_deg": "42.9737639", + "longitude_deg": "-72.0847278", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Nelson", + "scheduled_service": "no", + "gps_code": "3NH2", + "local_code": "3NH2" + }, + { + "id": "345716", + "ident": "3NH4", + "type": "heliport", + "name": "Portsmouth Regional Hospital Heliport", + "latitude_deg": "43.06462", + "longitude_deg": "-70.791532", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Portsmouth", + "scheduled_service": "no", + "gps_code": "3NH4", + "local_code": "3NH4" + }, + { + "id": "10665", + "ident": "3NH9", + "type": "heliport", + "name": "Longview Heliport", + "latitude_deg": "43.54759979248047", + "longitude_deg": "-71.22699737548828", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Alton", + "scheduled_service": "no", + "gps_code": "3NH9", + "local_code": "3NH9" + }, + { + "id": "10666", + "ident": "3NJ0", + "type": "heliport", + "name": "Hamilton Farm Golf Club Heliport", + "latitude_deg": "40.707801818847656", + "longitude_deg": "-74.68389892578125", + "elevation_ft": "308", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bedminster", + "scheduled_service": "no", + "gps_code": "3NJ0", + "local_code": "3NJ0" + }, + { + "id": "10642", + "ident": "3NJ1", + "type": "small_airport", + "name": "Pemberton Airport", + "latitude_deg": "39.98210144042969", + "longitude_deg": "-74.69270324707031", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Pemberton", + "scheduled_service": "no", + "gps_code": "3NJ1", + "local_code": "3NJ1", + "keywords": "Formerly 3N7" + }, + { + "id": "10667", + "ident": "3NJ2", + "type": "heliport", + "name": "Educational Testing Heliport", + "latitude_deg": "40.341800689697266", + "longitude_deg": "-74.71630096435547", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "3NJ2", + "local_code": "3NJ2" + }, + { + "id": "10668", + "ident": "3NJ3", + "type": "heliport", + "name": "Dow Jones & Co. Inc. Heliport", + "latitude_deg": "40.370399475097656", + "longitude_deg": "-74.58599853515625", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "3NJ3", + "local_code": "3NJ3" + }, + { + "id": "10669", + "ident": "3NJ4", + "type": "heliport", + "name": "Sarnoff Princeton Heliport", + "latitude_deg": "40.33340072631836", + "longitude_deg": "-74.63289642333984", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "3NJ4", + "local_code": "3NJ4" + }, + { + "id": "10670", + "ident": "3NJ5", + "type": "small_airport", + "name": "Mock Airport", + "latitude_deg": "40.53340148925781", + "longitude_deg": "-74.91629791259766", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Quakertown", + "scheduled_service": "no", + "gps_code": "3NJ5", + "local_code": "3NJ5" + }, + { + "id": "10671", + "ident": "3NJ6", + "type": "small_airport", + "name": "Inductotherm Airport", + "latitude_deg": "40.015098571777344", + "longitude_deg": "-74.84290313720703", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Rancocas", + "scheduled_service": "no", + "gps_code": "3NJ6", + "local_code": "3NJ6" + }, + { + "id": "10672", + "ident": "3NJ7", + "type": "closed", + "name": "Pfister Helistop", + "latitude_deg": "40.850101", + "longitude_deg": "-74.016296", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Ridgefield", + "scheduled_service": "no", + "keywords": "3NJ7" + }, + { + "id": "10673", + "ident": "3NJ8", + "type": "heliport", + "name": "Aventis Pharmaceuticals Heliport", + "latitude_deg": "40.62260055541992", + "longitude_deg": "-74.63269805908203", + "elevation_ft": "189", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bridgewater", + "scheduled_service": "no", + "gps_code": "3NJ8", + "local_code": "3NJ8" + }, + { + "id": "42772", + "ident": "3NJ9", + "type": "small_airport", + "name": "Allen Airstrip", + "latitude_deg": "39.9411125183", + "longitude_deg": "-74.77083587650002", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Vincentown", + "scheduled_service": "no", + "gps_code": "3NJ9", + "local_code": "3NJ9" + }, + { + "id": "10675", + "ident": "3NK0", + "type": "small_airport", + "name": "Mc Kinney Airport", + "latitude_deg": "43.2030982971", + "longitude_deg": "-77.90249633790002", + "elevation_ft": "547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Brockport", + "scheduled_service": "no", + "gps_code": "3NK0", + "local_code": "3NK0" + }, + { + "id": "10676", + "ident": "3NK1", + "type": "heliport", + "name": "Catskills Medical Center Heliport", + "latitude_deg": "41.708723", + "longitude_deg": "-74.736359", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Monticello", + "scheduled_service": "no", + "gps_code": "3NK1", + "local_code": "3NK1", + "keywords": "Community General Hospital Heliport" + }, + { + "id": "10677", + "ident": "3NK2", + "type": "heliport", + "name": "Bassett Heliport", + "latitude_deg": "42.68949890136719", + "longitude_deg": "-74.92150115966797", + "elevation_ft": "1243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Cooperstown", + "scheduled_service": "no", + "gps_code": "3NK2", + "local_code": "3NK2" + }, + { + "id": "10678", + "ident": "3NK3", + "type": "heliport", + "name": "Linuo American Campus Heliport", + "latitude_deg": "41.533948", + "longitude_deg": "-73.833359", + "elevation_ft": "322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hopewell Junction", + "scheduled_service": "no", + "gps_code": "3NK3", + "local_code": "3NK3", + "keywords": "IBM East Fishkill Heliport" + }, + { + "id": "10679", + "ident": "3NK4", + "type": "small_airport", + "name": "Laska Airport", + "latitude_deg": "42.028193", + "longitude_deg": "-79.19765", + "elevation_ft": "1480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Jamestown", + "scheduled_service": "no", + "gps_code": "3NK4", + "local_code": "3NK4" + }, + { + "id": "10680", + "ident": "3NK5", + "type": "small_airport", + "name": "Secret Spot Airport", + "latitude_deg": "44.61669921875", + "longitude_deg": "-73.46530151367188", + "elevation_ft": "155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Plattsburgh", + "scheduled_service": "no", + "gps_code": "3NK5", + "local_code": "3NK5" + }, + { + "id": "10681", + "ident": "3NK6", + "type": "small_airport", + "name": "Tuscarora Plateau Airport", + "latitude_deg": "42.637001037597656", + "longitude_deg": "-77.88390350341797", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Tuscarora", + "scheduled_service": "no", + "gps_code": "3NK6", + "local_code": "3NK6" + }, + { + "id": "10682", + "ident": "3NK7", + "type": "heliport", + "name": "B/G Heliport", + "latitude_deg": "42.424800872802734", + "longitude_deg": "-74.45099639892578", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Gilboa/Grand Gorge", + "scheduled_service": "no", + "gps_code": "3NK7", + "local_code": "3NK7" + }, + { + "id": "10683", + "ident": "3NK8", + "type": "small_airport", + "name": "B Flat Farm Airport", + "latitude_deg": "42.14059829711914", + "longitude_deg": "-73.61190032958984", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Copake", + "scheduled_service": "no", + "gps_code": "3NK8", + "local_code": "3NK8" + }, + { + "id": "10684", + "ident": "3NK9", + "type": "heliport", + "name": "Arnot Ogden Hospital Heliport", + "latitude_deg": "42.100595", + "longitude_deg": "-76.826406", + "elevation_ft": "909", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Elmira", + "scheduled_service": "no", + "gps_code": "3NK9", + "local_code": "3NK9" + }, + { + "id": "10685", + "ident": "3NO", + "type": "small_airport", + "name": "North Omaha Airport", + "latitude_deg": "41.36830139160156", + "longitude_deg": "-96.02249908447266", + "elevation_ft": "1322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Omaha", + "scheduled_service": "no", + "gps_code": "3NO", + "local_code": "3NO" + }, + { + "id": "10686", + "ident": "3NP", + "type": "small_airport", + "name": "Napoleon Airport", + "latitude_deg": "42.1708984375", + "longitude_deg": "-84.25969696044922", + "elevation_ft": "963", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Napoleon", + "scheduled_service": "no", + "gps_code": "3NP", + "local_code": "3NP" + }, + { + "id": "46291", + "ident": "3NR3", + "type": "small_airport", + "name": "Transylvania Community Airport", + "latitude_deg": "35.270277", + "longitude_deg": "-82.644167", + "elevation_ft": "2110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Brevard", + "scheduled_service": "no", + "gps_code": "3NR3", + "local_code": "3NR3", + "home_link": "http://www.transylvaniacommunityairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Transylvania_County_Airport", + "keywords": "22W, Transylvania County Airport" + }, + { + "id": "345417", + "ident": "3NR4", + "type": "small_airport", + "name": "Crabbe Airport", + "latitude_deg": "36.281394", + "longitude_deg": "-76.336688", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Elizabeth City", + "scheduled_service": "no", + "gps_code": "3NR4", + "local_code": "3NR4" + }, + { + "id": "347717", + "ident": "3NR5", + "type": "heliport", + "name": "UNC Hillsborough Helipad", + "latitude_deg": "36.036394", + "longitude_deg": "-79.092245", + "elevation_ft": "682", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hillsborough", + "scheduled_service": "no", + "gps_code": "3NR5", + "local_code": "3NR5" + }, + { + "id": "332767", + "ident": "3NV1", + "type": "heliport", + "name": "Desert Springs Hospital Heliport", + "latitude_deg": "36.112528", + "longitude_deg": "-115.124214", + "elevation_ft": "1967", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "gps_code": "3NV1", + "local_code": "3NV1" + }, + { + "id": "10687", + "ident": "3NV3", + "type": "heliport", + "name": "Remlinger Ranch Heliport", + "latitude_deg": "39.25910186767578", + "longitude_deg": "-119.75499725341797", + "elevation_ft": "5090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "New Washoe City", + "scheduled_service": "no", + "gps_code": "3NV3", + "local_code": "3NV3" + }, + { + "id": "10688", + "ident": "3NY0", + "type": "small_airport", + "name": "The Ranch Airport", + "latitude_deg": "42.827301", + "longitude_deg": "-74.403999", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Sprakers", + "scheduled_service": "no", + "gps_code": "3NY0", + "local_code": "3NY0" + }, + { + "id": "10689", + "ident": "3NY1", + "type": "closed", + "name": "Old Orchard Road Heliport", + "latitude_deg": "41.116438", + "longitude_deg": "-73.715563", + "elevation_ft": "527", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Armonk", + "scheduled_service": "no", + "keywords": "3NY1, IBM North Castle" + }, + { + "id": "10690", + "ident": "3NY2", + "type": "heliport", + "name": "Astoria Heliport", + "latitude_deg": "40.78620147705078", + "longitude_deg": "-73.91210174560547", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Astoria", + "scheduled_service": "no", + "gps_code": "3NY2", + "local_code": "3NY2" + }, + { + "id": "10691", + "ident": "3NY3", + "type": "small_airport", + "name": "De Ronda Airport", + "latitude_deg": "42.859798431396484", + "longitude_deg": "-74.82430267333984", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "3NY3", + "local_code": "3NY3" + }, + { + "id": "10692", + "ident": "3NY4", + "type": "closed", + "name": "Di Stefano Airpark", + "latitude_deg": "42.923811", + "longitude_deg": "-74.626758", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Fort Plain", + "scheduled_service": "no", + "keywords": "3NY4" + }, + { + "id": "10693", + "ident": "3NY5", + "type": "small_airport", + "name": "Luke Airport", + "latitude_deg": "42.02370071411133", + "longitude_deg": "-75.95709991455078", + "elevation_ft": "1558", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Binghamton", + "scheduled_service": "no", + "gps_code": "3NY5", + "local_code": "3NY5" + }, + { + "id": "10694", + "ident": "3NY6", + "type": "small_airport", + "name": "Six Ponds Airport", + "latitude_deg": "42.84120178222656", + "longitude_deg": "-74.17870330810547", + "elevation_ft": "1125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Duanesburg", + "scheduled_service": "no", + "gps_code": "3NY6", + "local_code": "3NY6" + }, + { + "id": "10695", + "ident": "3NY7", + "type": "small_airport", + "name": "Hiserts Airpark Inc Airport", + "latitude_deg": "42.984398", + "longitude_deg": "-74.519083", + "elevation_ft": "813", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Ephratah", + "scheduled_service": "no", + "gps_code": "3NY7", + "local_code": "3NY7", + "keywords": "Eparatha" + }, + { + "id": "10696", + "ident": "3NY8", + "type": "closed", + "name": "SUNY Health Science Center Heliport", + "latitude_deg": "43.042011", + "longitude_deg": "-76.140479", + "elevation_ft": "452", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Syracuse", + "scheduled_service": "no", + "keywords": "3NY8" + }, + { + "id": "10697", + "ident": "3NY9", + "type": "small_airport", + "name": "Hilltop Airport", + "latitude_deg": "42.664398193359375", + "longitude_deg": "-78.67310333251953", + "elevation_ft": "1385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Colden", + "scheduled_service": "no", + "gps_code": "3NY9", + "local_code": "3NY9" + }, + { + "id": "10698", + "ident": "3O5", + "type": "small_airport", + "name": "Walters Municipal Airport", + "latitude_deg": "34.369052", + "longitude_deg": "-98.406315", + "elevation_ft": "1058", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Walters", + "scheduled_service": "no", + "local_code": "3O5", + "keywords": "Walters Turnpike" + }, + { + "id": "10699", + "ident": "3O8", + "type": "small_airport", + "name": "Harris Ranch Airport", + "latitude_deg": "36.247813", + "longitude_deg": "-120.238323", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Coalinga", + "scheduled_service": "no", + "gps_code": "K3O8", + "local_code": "3O8" + }, + { + "id": "348381", + "ident": "3OA3", + "type": "heliport", + "name": "Pelton Heliport", + "latitude_deg": "41.259904", + "longitude_deg": "-82.20475", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Oberlin", + "scheduled_service": "no", + "gps_code": "3OA3", + "local_code": "3OA3" + }, + { + "id": "10700", + "ident": "3OA8", + "type": "closed", + "name": "Valley Vista Airport", + "latitude_deg": "39.237455", + "longitude_deg": "-83.260708", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bainbridge", + "scheduled_service": "no", + "keywords": "9I7, 3OA8" + }, + { + "id": "10701", + "ident": "3OA9", + "type": "heliport", + "name": "Memorial Hospital of Union County Heliport", + "latitude_deg": "40.229400634765625", + "longitude_deg": "-83.3677978515625", + "elevation_ft": "1001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Marysville", + "scheduled_service": "no", + "gps_code": "3OA9", + "local_code": "3OA9" + }, + { + "id": "46292", + "ident": "3OG3", + "type": "small_airport", + "name": "Dillon Field Airport", + "latitude_deg": "42.122222", + "longitude_deg": "-121.791667", + "elevation_ft": "4092", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Klamath Falls", + "scheduled_service": "no", + "gps_code": "3OG3", + "local_code": "3OG3" + }, + { + "id": "10702", + "ident": "3OH0", + "type": "small_airport", + "name": "Andy Barnhart Memorial Airport", + "latitude_deg": "39.930317", + "longitude_deg": "-84.013429", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "New Carlisle", + "scheduled_service": "no", + "gps_code": "3OH0", + "local_code": "3OH0", + "keywords": "Flying Angels" + }, + { + "id": "10703", + "ident": "3OH1", + "type": "small_airport", + "name": "Morningstar North Airport", + "latitude_deg": "39.69729995727539", + "longitude_deg": "-84.5427017211914", + "elevation_ft": "982", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "West Alexandria", + "scheduled_service": "no", + "gps_code": "3OH1", + "local_code": "3OH1" + }, + { + "id": "10704", + "ident": "3OH2", + "type": "closed", + "name": "API Heliport", + "latitude_deg": "40.810299", + "longitude_deg": "-81.629303", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "North Lawrence", + "scheduled_service": "no", + "keywords": "3OH2" + }, + { + "id": "10705", + "ident": "3OH3", + "type": "closed", + "name": "Pelz Field", + "latitude_deg": "39.983898", + "longitude_deg": "-83.613298", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "South Vienna", + "scheduled_service": "no", + "keywords": "3OH3" + }, + { + "id": "10706", + "ident": "3OH4", + "type": "small_airport", + "name": "Riceland Aerodrome", + "latitude_deg": "41.60390090942383", + "longitude_deg": "-80.58979797363281", + "elevation_ft": "1115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Andover", + "scheduled_service": "no", + "gps_code": "3OH4", + "local_code": "3OH4" + }, + { + "id": "10707", + "ident": "3OH5", + "type": "closed", + "name": "Stub's Field", + "latitude_deg": "40.9674", + "longitude_deg": "-81.205801", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Alliance", + "scheduled_service": "no", + "keywords": "3OH5" + }, + { + "id": "10708", + "ident": "3OH6", + "type": "small_airport", + "name": "Youngpeter Airport", + "latitude_deg": "40.78329849243164", + "longitude_deg": "-84.3677978515625", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Delphos", + "scheduled_service": "no", + "gps_code": "3OH6", + "local_code": "3OH6" + }, + { + "id": "10709", + "ident": "3OH7", + "type": "small_airport", + "name": "Creager Airport", + "latitude_deg": "39.030102", + "longitude_deg": "-84.0466", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Williamsburg", + "scheduled_service": "no", + "keywords": "3OH7" + }, + { + "id": "10710", + "ident": "3OH8", + "type": "small_airport", + "name": "Gnadenhutten Airport", + "latitude_deg": "40.360802", + "longitude_deg": "-81.423302", + "elevation_ft": "842", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Gnadenhutten", + "scheduled_service": "no", + "gps_code": "3OH8", + "local_code": "3OH8" + }, + { + "id": "10711", + "ident": "3OH9", + "type": "small_airport", + "name": "Merts Field", + "latitude_deg": "39.55350112915039", + "longitude_deg": "-83.85209655761719", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wilmington", + "scheduled_service": "no", + "gps_code": "3OH9", + "local_code": "3OH9" + }, + { + "id": "10712", + "ident": "3OI4", + "type": "closed", + "name": "Valley View Heliport", + "latitude_deg": "41.249901", + "longitude_deg": "-82.665199", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Norwalk", + "scheduled_service": "no", + "keywords": "3OI4" + }, + { + "id": "10713", + "ident": "3OI5", + "type": "closed", + "name": "Welded Heliport", + "latitude_deg": "41.544818", + "longitude_deg": "-83.644034", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Perrysburg", + "scheduled_service": "no", + "keywords": "3OI5" + }, + { + "id": "10714", + "ident": "3OI6", + "type": "small_airport", + "name": "Vogel Airpark", + "latitude_deg": "40.96120071411133", + "longitude_deg": "-82.37069702148438", + "elevation_ft": "1028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Savannah", + "scheduled_service": "no", + "gps_code": "3OI6", + "local_code": "3OI6" + }, + { + "id": "10715", + "ident": "3OI7", + "type": "heliport", + "name": "Valley Asphalt Heliport", + "latitude_deg": "39.2859001159668", + "longitude_deg": "-84.4301986694336", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Sharonville", + "scheduled_service": "no", + "gps_code": "3OI7", + "local_code": "3OI7" + }, + { + "id": "10716", + "ident": "3OI8", + "type": "heliport", + "name": "McLaren St Luke's Hospital Heliport", + "latitude_deg": "41.5561", + "longitude_deg": "-83.682099", + "elevation_ft": "638", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Maumee", + "scheduled_service": "no", + "gps_code": "3OI8", + "local_code": "3OI8" + }, + { + "id": "10717", + "ident": "3OI9", + "type": "heliport", + "name": "V.J.S. Heliport", + "latitude_deg": "41.47639846801758", + "longitude_deg": "-81.46600341796875", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Pepper Pike", + "scheduled_service": "no", + "gps_code": "3OI9", + "local_code": "3OI9" + }, + { + "id": "10718", + "ident": "3OK0", + "type": "small_airport", + "name": "Valley Airport", + "latitude_deg": "34.70500183105469", + "longitude_deg": "-96.57669830322266", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ada", + "scheduled_service": "no", + "gps_code": "3OK0", + "local_code": "3OK0" + }, + { + "id": "10719", + "ident": "3OK1", + "type": "small_airport", + "name": "Okarche Airport", + "latitude_deg": "35.72999954223633", + "longitude_deg": "-97.96700286865234", + "elevation_ft": "1239", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Okarche", + "scheduled_service": "no", + "gps_code": "3OK1", + "local_code": "3OK1" + }, + { + "id": "10720", + "ident": "3OK2", + "type": "closed", + "name": "Hopcus Farms Airport", + "latitude_deg": "35.591999", + "longitude_deg": "-97.327798", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Jones", + "scheduled_service": "no", + "keywords": "3OK2" + }, + { + "id": "10721", + "ident": "3OK3", + "type": "heliport", + "name": "Cedar Crest Heliport", + "latitude_deg": "36.105098724365234", + "longitude_deg": "-95.23519897460938", + "elevation_ft": "582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Locust Grove", + "scheduled_service": "no", + "gps_code": "3OK3", + "local_code": "3OK3" + }, + { + "id": "10722", + "ident": "3OK4", + "type": "heliport", + "name": "St Anthony Heliport", + "latitude_deg": "35.479000091552734", + "longitude_deg": "-97.5177993774414", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "gps_code": "3OK4", + "local_code": "3OK4" + }, + { + "id": "10723", + "ident": "3OK5", + "type": "small_airport", + "name": "Bearden Private Airport", + "latitude_deg": "34.728599548300004", + "longitude_deg": "-97.605796814", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lindsay", + "scheduled_service": "no", + "gps_code": "3OK5", + "local_code": "3OK5" + }, + { + "id": "10724", + "ident": "3OK6", + "type": "closed", + "name": "Mauney Heliport", + "latitude_deg": "36.0784", + "longitude_deg": "-95.859398", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tulsa", + "scheduled_service": "no", + "keywords": "3OK6" + }, + { + "id": "10725", + "ident": "3OK7", + "type": "small_airport", + "name": "Double W Airport", + "latitude_deg": "36.241798400878906", + "longitude_deg": "-96.13420104980469", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Sand Springs", + "scheduled_service": "no", + "gps_code": "3OK7", + "local_code": "3OK7" + }, + { + "id": "10726", + "ident": "3OK8", + "type": "small_airport", + "name": "Flying G Ranch Airport", + "latitude_deg": "36.11669921875", + "longitude_deg": "-96.23359680175781", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Sand Springs", + "scheduled_service": "no", + "gps_code": "3OK8", + "local_code": "3OK8" + }, + { + "id": "45716", + "ident": "3OK9", + "type": "small_airport", + "name": "Jazz Ranch Airport", + "latitude_deg": "35.321786", + "longitude_deg": "-97.040084", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Shawnee", + "scheduled_service": "no", + "gps_code": "3OK9", + "local_code": "3OK9" + }, + { + "id": "10727", + "ident": "3OL8", + "type": "small_airport", + "name": "Harrison Airport", + "latitude_deg": "36.877899169921875", + "longitude_deg": "-95.14910125732422", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Welch", + "scheduled_service": "no", + "gps_code": "3OL8", + "local_code": "3OL8" + }, + { + "id": "10728", + "ident": "3OR0", + "type": "heliport", + "name": "Pge Service Center Heliport", + "latitude_deg": "45.49599838256836", + "longitude_deg": "-122.64800262451172", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "3OR0", + "local_code": "3OR0" + }, + { + "id": "10729", + "ident": "3OR1", + "type": "closed", + "name": "Cubehole Airport", + "latitude_deg": "44.364601", + "longitude_deg": "-122.958", + "elevation_ft": "355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Brownsville", + "scheduled_service": "no", + "gps_code": "3OR1", + "local_code": "3OR1" + }, + { + "id": "10730", + "ident": "3OR2", + "type": "small_airport", + "name": "Maxwell Private Airport", + "latitude_deg": "45.312400817871094", + "longitude_deg": "-117.95899963378906", + "elevation_ft": "2710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "La Grande", + "scheduled_service": "no", + "gps_code": "3OR2", + "local_code": "3OR2" + }, + { + "id": "10731", + "ident": "3OR3", + "type": "closed", + "name": "Hessel Tractor Heliport", + "latitude_deg": "45.588699", + "longitude_deg": "-122.653999", + "elevation_ft": "284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no", + "keywords": "3OR3" + }, + { + "id": "10732", + "ident": "3OR4", + "type": "heliport", + "name": "Babler Bros Inc Heliport", + "latitude_deg": "45.57979965209961", + "longitude_deg": "-122.65799713134766", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "3OR4", + "local_code": "3OR4" + }, + { + "id": "10733", + "ident": "3OR5", + "type": "heliport", + "name": "Elkins Heliport", + "latitude_deg": "44.86009979248047", + "longitude_deg": "-123.03800201416016", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "3OR5", + "local_code": "3OR5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elkins_Heliport" + }, + { + "id": "10734", + "ident": "3OR6", + "type": "closed", + "name": "Western Division Service Center Heliport", + "latitude_deg": "45.453686", + "longitude_deg": "-123.15534", + "elevation_ft": "234", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Gaston", + "scheduled_service": "no", + "keywords": "3OR6" + }, + { + "id": "10735", + "ident": "3OR7", + "type": "heliport", + "name": "Trojan Heliport", + "latitude_deg": "46.033199310302734", + "longitude_deg": "-123.11799621582031", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Rainier", + "scheduled_service": "no", + "gps_code": "3OR7", + "local_code": "3OR7" + }, + { + "id": "10736", + "ident": "3OR8", + "type": "small_airport", + "name": "Cline Falls Air Park", + "latitude_deg": "44.283199310302734", + "longitude_deg": "-121.26899719238281", + "elevation_ft": "2920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Redmond", + "scheduled_service": "no", + "gps_code": "3OR8", + "local_code": "3OR8" + }, + { + "id": "10737", + "ident": "3OR9", + "type": "small_airport", + "name": "Murphy Ranch Airport", + "latitude_deg": "43.957401275634766", + "longitude_deg": "-118.13200378417969", + "elevation_ft": "3465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Juntura", + "scheduled_service": "no", + "gps_code": "3OR9", + "local_code": "3OR9" + }, + { + "id": "10738", + "ident": "3PA0", + "type": "small_airport", + "name": "Horst Airport", + "latitude_deg": "40.383399963378906", + "longitude_deg": "-76.46640014648438", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "3PA0", + "local_code": "3PA0" + }, + { + "id": "10739", + "ident": "3PA1", + "type": "closed", + "name": "Navarro Airport", + "latitude_deg": "40.371667", + "longitude_deg": "-75.337468", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Sellersville", + "scheduled_service": "no", + "keywords": "3PA1" + }, + { + "id": "10740", + "ident": "3PA2", + "type": "closed", + "name": "Neeb Airport", + "latitude_deg": "40.881585", + "longitude_deg": "-75.642471", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lehighton", + "scheduled_service": "no", + "keywords": "3PA2" + }, + { + "id": "10741", + "ident": "3PA3", + "type": "closed", + "name": "Lehman Airport", + "latitude_deg": "41.322035", + "longitude_deg": "-76.044667", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lehman", + "scheduled_service": "no", + "keywords": "3PA3, 2PA2" + }, + { + "id": "10742", + "ident": "3PA4", + "type": "small_airport", + "name": "Giffin Airport", + "latitude_deg": "41.77790069580078", + "longitude_deg": "-76.13719940185547", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Leraysville", + "scheduled_service": "no", + "gps_code": "3PA4", + "local_code": "3PA4" + }, + { + "id": "10743", + "ident": "3PA5", + "type": "heliport", + "name": "Davis Family Furniture Heliport", + "latitude_deg": "40.310298919677734", + "longitude_deg": "-79.65499877929688", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Adamsburg", + "scheduled_service": "no", + "gps_code": "3PA5", + "local_code": "3PA5" + }, + { + "id": "10744", + "ident": "3PA6", + "type": "small_airport", + "name": "Fox Hollow Airport", + "latitude_deg": "40.992446", + "longitude_deg": "-76.902474", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lewisburg", + "scheduled_service": "no", + "gps_code": "3PA6", + "local_code": "3PA6" + }, + { + "id": "10745", + "ident": "3PA7", + "type": "heliport", + "name": "Nason Medical Center LLC Heliport", + "latitude_deg": "40.339663", + "longitude_deg": "-78.389907", + "elevation_ft": "1336", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Roaring Spring", + "scheduled_service": "no", + "gps_code": "3PA7", + "local_code": "3PA7", + "keywords": "Nason Hospital" + }, + { + "id": "10746", + "ident": "3PA8", + "type": "small_airport", + "name": "Harris Airport", + "latitude_deg": "39.82040023803711", + "longitude_deg": "-75.92579650878906", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lincoln University", + "scheduled_service": "no", + "gps_code": "3PA8", + "local_code": "3PA8" + }, + { + "id": "10747", + "ident": "3PA9", + "type": "small_airport", + "name": "Moyer Airport", + "latitude_deg": "40.29679870605469", + "longitude_deg": "-75.24800109863281", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Line Lexington", + "scheduled_service": "no", + "gps_code": "3PA9", + "local_code": "3PA9" + }, + { + "id": "10748", + "ident": "3PN0", + "type": "small_airport", + "name": "Schulteis Airport", + "latitude_deg": "39.96039962768555", + "longitude_deg": "-77.25910186767578", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Biglerville", + "scheduled_service": "no", + "gps_code": "3PN0", + "local_code": "3PN0" + }, + { + "id": "10749", + "ident": "3PN1", + "type": "small_airport", + "name": "Ashlawn Airport", + "latitude_deg": "41.62200164794922", + "longitude_deg": "-75.59629821777344", + "elevation_ft": "1511", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Clifford", + "scheduled_service": "no", + "gps_code": "3PN1", + "local_code": "3PN1" + }, + { + "id": "10750", + "ident": "3PN2", + "type": "small_airport", + "name": "Karlindo Airport", + "latitude_deg": "39.75899887084961", + "longitude_deg": "-77.34750366210938", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "3PN2", + "local_code": "3PN2" + }, + { + "id": "10751", + "ident": "3PN3", + "type": "small_airport", + "name": "Countryside Airport", + "latitude_deg": "41.28369903564453", + "longitude_deg": "-76.03520202636719", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lehman", + "scheduled_service": "no", + "gps_code": "3PN3", + "local_code": "3PN3" + }, + { + "id": "10752", + "ident": "3PN4", + "type": "heliport", + "name": "UPMC Jameson Heliport", + "latitude_deg": "41.012685", + "longitude_deg": "-80.35172", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "New Castle", + "scheduled_service": "no", + "gps_code": "3PN4", + "local_code": "3PN4", + "keywords": "Jameson Memorial Hospital" + }, + { + "id": "10753", + "ident": "3PN5", + "type": "heliport", + "name": "H.G.F. Heliport", + "latitude_deg": "40.565101623535156", + "longitude_deg": "-75.55799865722656", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Allentown", + "scheduled_service": "no", + "gps_code": "3PN5", + "local_code": "3PN5" + }, + { + "id": "10754", + "ident": "3PN6", + "type": "small_airport", + "name": "Gravel Run Airport", + "latitude_deg": "41.742484", + "longitude_deg": "-80.07484", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Saegertown", + "scheduled_service": "no", + "gps_code": "3PN6", + "local_code": "3PN6" + }, + { + "id": "10755", + "ident": "3PN7", + "type": "small_airport", + "name": "Stahl's Mountain Airport", + "latitude_deg": "41.74789810180664", + "longitude_deg": "-75.49739837646484", + "elevation_ft": "1950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Union Dale", + "scheduled_service": "no", + "gps_code": "3PN7", + "local_code": "3PN7" + }, + { + "id": "10756", + "ident": "3PN8", + "type": "closed", + "name": "Wyeth Pharmaceuticals Heliport", + "latitude_deg": "40.158699", + "longitude_deg": "-75.463402", + "elevation_ft": "186", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Collegeville", + "scheduled_service": "no", + "keywords": "3PN8" + }, + { + "id": "10757", + "ident": "3PN9", + "type": "small_airport", + "name": "Phil Cain Memorial Field Ultralight Flightpark", + "latitude_deg": "40.444399", + "longitude_deg": "-79.558053", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Export", + "scheduled_service": "no", + "gps_code": "3PN9", + "local_code": "3PN9" + }, + { + "id": "10758", + "ident": "3PS0", + "type": "heliport", + "name": "Penn Chester County Hospital Heliport", + "latitude_deg": "39.970765", + "longitude_deg": "-75.603383", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "West Chester", + "scheduled_service": "no", + "gps_code": "3PS0", + "local_code": "3PS0" + }, + { + "id": "10759", + "ident": "3PS1", + "type": "heliport", + "name": "Pitcairn Heliport", + "latitude_deg": "40.12590026855469", + "longitude_deg": "-75.07879638671875", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bryn Athyn", + "scheduled_service": "no", + "gps_code": "3PS1", + "local_code": "3PS1" + }, + { + "id": "10760", + "ident": "3PS2", + "type": "heliport", + "name": "Chestnut Street Garage Heliport", + "latitude_deg": "40.258399963378906", + "longitude_deg": "-76.87969970703125", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Harrisburg", + "scheduled_service": "no", + "gps_code": "3PS2", + "local_code": "3PS2" + }, + { + "id": "10761", + "ident": "3PS3", + "type": "heliport", + "name": "Richard L Miller Heliport", + "latitude_deg": "40.38930130004883", + "longitude_deg": "-76.31079864501953", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Myerstown", + "scheduled_service": "no", + "gps_code": "3PS3", + "local_code": "3PS3" + }, + { + "id": "10762", + "ident": "3PS4", + "type": "small_airport", + "name": "Mountain Hide-Away Airport", + "latitude_deg": "40.72359848022461", + "longitude_deg": "-77.98739624023438", + "elevation_ft": "1604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Millcreek", + "scheduled_service": "no", + "gps_code": "3PS4", + "local_code": "3PS4" + }, + { + "id": "10763", + "ident": "3PS5", + "type": "heliport", + "name": "Shamokin Hospital Heliport", + "latitude_deg": "40.80540084838867", + "longitude_deg": "-76.56999969482422", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Shamokin", + "scheduled_service": "no", + "gps_code": "3PS5", + "local_code": "3PS5" + }, + { + "id": "10764", + "ident": "3PS6", + "type": "closed", + "name": "Divine Providence Hospital Heliport", + "latitude_deg": "41.260101", + "longitude_deg": "-76.983299", + "elevation_ft": "581", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Williamsport", + "scheduled_service": "no", + "keywords": "3PS6" + }, + { + "id": "10765", + "ident": "3PS7", + "type": "heliport", + "name": "Coxton Lake Heliport", + "latitude_deg": "41.85810089111328", + "longitude_deg": "-75.44889831542969", + "elevation_ft": "2110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lakewood", + "scheduled_service": "no", + "gps_code": "3PS7", + "local_code": "3PS7" + }, + { + "id": "10766", + "ident": "3PS8", + "type": "small_airport", + "name": "Yingst Airport", + "latitude_deg": "40.39580154418945", + "longitude_deg": "-76.74579620361328", + "elevation_ft": "701", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Harrisburg", + "scheduled_service": "no", + "gps_code": "3PS8", + "local_code": "3PS8" + }, + { + "id": "10767", + "ident": "3PS9", + "type": "small_airport", + "name": "Risker Field", + "latitude_deg": "40.37839889526367", + "longitude_deg": "-80.34950256347656", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bulger", + "scheduled_service": "no", + "gps_code": "3PS9", + "local_code": "3PS9" + }, + { + "id": "10768", + "ident": "3Q0", + "type": "small_airport", + "name": "Mina Airport", + "latitude_deg": "38.38330078125", + "longitude_deg": "-118.10099792480469", + "elevation_ft": "4552", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Mina", + "scheduled_service": "no", + "gps_code": "3Q0", + "local_code": "3Q0" + }, + { + "id": "10769", + "ident": "3R8", + "type": "small_airport", + "name": "Scottsburg Airport", + "latitude_deg": "38.65729904174805", + "longitude_deg": "-85.79019927978516", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Scottsburg", + "scheduled_service": "no", + "gps_code": "3R8", + "local_code": "3R8" + }, + { + "id": "10770", + "ident": "3RU", + "type": "small_airport", + "name": "Rust Airstrip", + "latitude_deg": "33.3326", + "longitude_deg": "-84.401901", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Woolsey", + "scheduled_service": "no", + "gps_code": "GA82", + "local_code": "GA82", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rust_Airstrip", + "keywords": "3RU" + }, + { + "id": "10771", + "ident": "3S2", + "type": "small_airport", + "name": "Swans Field", + "latitude_deg": "44.51409912109375", + "longitude_deg": "-70.40679931640625", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Dixfield", + "scheduled_service": "no", + "gps_code": "3S2", + "local_code": "3S2" + }, + { + "id": "10772", + "ident": "3S5", + "type": "small_airport", + "name": "Schiffer Acres Airport", + "latitude_deg": "43.035736", + "longitude_deg": "-84.435631", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Saint Johns", + "scheduled_service": "no", + "gps_code": "K3S5", + "local_code": "3S5", + "keywords": "Al's Aerial Spraying" + }, + { + "id": "10773", + "ident": "3S6", + "type": "small_airport", + "name": "Toketee State Airport", + "latitude_deg": "43.2234992980957", + "longitude_deg": "-122.4209976196289", + "elevation_ft": "3361", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Clearwater", + "scheduled_service": "no", + "gps_code": "3S6", + "local_code": "3S6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toketee_State_Airport" + }, + { + "id": "10774", + "ident": "3S7", + "type": "small_airport", + "name": "Nehalem Bay State Airport", + "latitude_deg": "45.69820022583008", + "longitude_deg": "-123.93000030517578", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Manzanita", + "scheduled_service": "no", + "gps_code": "3S7", + "local_code": "3S7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nehalem_Bay_State_Airport" + }, + { + "id": "45782", + "ident": "3SC2", + "type": "closed", + "name": "Spirit Field", + "latitude_deg": "33.603959", + "longitude_deg": "-80.305595", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Summerton", + "scheduled_service": "no", + "gps_code": "3SC2", + "local_code": "3SC2", + "keywords": "Yahu Field" + }, + { + "id": "10775", + "ident": "3SC3", + "type": "heliport", + "name": "Carolina Pines Regional Medical Center Heliport", + "latitude_deg": "34.34939956665039", + "longitude_deg": "-80.10330200195312", + "elevation_ft": "228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Hartsville", + "scheduled_service": "no", + "gps_code": "3SC3", + "local_code": "3SC3" + }, + { + "id": "10776", + "ident": "3SC4", + "type": "small_airport", + "name": "Crooked Fence Farm Airport", + "latitude_deg": "34.771301", + "longitude_deg": "-81.98822", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Woodruff", + "scheduled_service": "no", + "gps_code": "3SC4", + "local_code": "3SC4" + }, + { + "id": "337125", + "ident": "3SC5", + "type": "heliport", + "name": "Hillcrest Memorial Hospital Heliport", + "latitude_deg": "34.721342", + "longitude_deg": "-82.247842", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Simpsonville", + "scheduled_service": "no", + "gps_code": "3SC5", + "local_code": "3SC5" + }, + { + "id": "10777", + "ident": "3SC7", + "type": "small_airport", + "name": "Jordan Airport", + "latitude_deg": "33.540569", + "longitude_deg": "-79.534174", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Andrews", + "scheduled_service": "no", + "gps_code": "SC57", + "local_code": "SC57", + "keywords": "3SC7" + }, + { + "id": "10778", + "ident": "3SD3", + "type": "small_airport", + "name": "Brown Field", + "latitude_deg": "43.811798095703125", + "longitude_deg": "-102.72000122070312", + "elevation_ft": "2780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Scenic", + "scheduled_service": "no", + "gps_code": "3SD3", + "local_code": "3SD3" + }, + { + "id": "10779", + "ident": "3SD4", + "type": "small_airport", + "name": "Chris Hofer Landing Strip", + "latitude_deg": "43.464939", + "longitude_deg": "-96.862633", + "elevation_ft": "1491", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Tea", + "scheduled_service": "no", + "gps_code": "3SD4", + "local_code": "3SD4" + }, + { + "id": "10780", + "ident": "3SD5", + "type": "heliport", + "name": "Dilligaf Heliport", + "latitude_deg": "44.22740173339844", + "longitude_deg": "-103.77899932861328", + "elevation_ft": "6020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Lead", + "scheduled_service": "no", + "gps_code": "3SD5", + "local_code": "3SD5" + }, + { + "id": "10781", + "ident": "3SD6", + "type": "closed", + "name": "Running Colors Airport", + "latitude_deg": "44.202202", + "longitude_deg": "-103.079002", + "elevation_ft": "2920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Rapid City", + "scheduled_service": "no", + "keywords": "3SD6" + }, + { + "id": "10782", + "ident": "3T0", + "type": "small_airport", + "name": "Cedar Mills Airport", + "latitude_deg": "33.839298248291016", + "longitude_deg": "-96.81009674072266", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gordonville", + "scheduled_service": "no", + "gps_code": "3T0", + "local_code": "3T0" + }, + { + "id": "10783", + "ident": "3T2", + "type": "small_airport", + "name": "Wolfe Air Park", + "latitude_deg": "29.48", + "longitude_deg": "-95.327202", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Manvel", + "scheduled_service": "no", + "local_code": "3T2", + "keywords": "3TA1" + }, + { + "id": "10784", + "ident": "3T4", + "type": "small_airport", + "name": "Tetlin Airport", + "latitude_deg": "63.125", + "longitude_deg": "-142.51800537109375", + "elevation_ft": "1663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tetlin", + "scheduled_service": "no", + "gps_code": "3T4", + "local_code": "3T4" + }, + { + "id": "10835", + "ident": "3T6", + "type": "small_airport", + "name": "Clark Airport", + "latitude_deg": "33.13349914550781", + "longitude_deg": "-97.29669952392578", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Justin", + "scheduled_service": "no", + "gps_code": "3T6", + "local_code": "3T6", + "keywords": "Formerly 3TX6" + }, + { + "id": "10785", + "ident": "3T7", + "type": "small_airport", + "name": "Middle Bass Island Airport", + "latitude_deg": "41.68510055541992", + "longitude_deg": "-82.80490112304688", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Middle Bass Island", + "scheduled_service": "no", + "gps_code": "3T7", + "local_code": "3T7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Middle_Bass_Island_Airport" + }, + { + "id": "10786", + "ident": "3T8", + "type": "small_airport", + "name": "Wildcat Canyon Airport", + "latitude_deg": "31.678800582885742", + "longitude_deg": "-97.36280059814453", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "China Spring", + "scheduled_service": "no", + "gps_code": "3T8", + "local_code": "3T8" + }, + { + "id": "10787", + "ident": "3TA", + "type": "small_airport", + "name": "Stafford Municipal Airport", + "latitude_deg": "37.95830154418945", + "longitude_deg": "-98.65039825439453", + "elevation_ft": "1886", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Stafford", + "scheduled_service": "no", + "gps_code": "3TA", + "local_code": "3TA" + }, + { + "id": "10788", + "ident": "3TA0", + "type": "small_airport", + "name": "Four Square Ranch Airport", + "latitude_deg": "30.096900939941406", + "longitude_deg": "-100.40499877929688", + "elevation_ft": "2250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rocksprings", + "scheduled_service": "no", + "gps_code": "3TA0", + "local_code": "3TA0" + }, + { + "id": "10789", + "ident": "3TA1", + "type": "closed", + "name": "Hunt Ranch Airport", + "latitude_deg": "30.036273", + "longitude_deg": "-98.697874", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comfort", + "scheduled_service": "no", + "keywords": "3TA1, Diamond K Ranch" + }, + { + "id": "10790", + "ident": "3TA2", + "type": "small_airport", + "name": "Clark Sky Ranch Airport", + "latitude_deg": "29.736489", + "longitude_deg": "-96.062679", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sealy", + "scheduled_service": "no", + "gps_code": "3TA2", + "local_code": "3TA2" + }, + { + "id": "10791", + "ident": "3TA3", + "type": "heliport", + "name": "Baltzell's Las Brisas Heliport", + "latitude_deg": "29.588300704956055", + "longitude_deg": "-98.94609832763672", + "elevation_ft": "1165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bandera", + "scheduled_service": "no", + "gps_code": "3TA3", + "local_code": "3TA3" + }, + { + "id": "10792", + "ident": "3TA4", + "type": "small_airport", + "name": "Tin Top Ranch Airport", + "latitude_deg": "31.48579978942871", + "longitude_deg": "-98.9760971069336", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brownwood", + "scheduled_service": "no", + "gps_code": "3TA4", + "local_code": "3TA4" + }, + { + "id": "10793", + "ident": "3TA5", + "type": "small_airport", + "name": "Blanco Landing Airport", + "latitude_deg": "30.122467", + "longitude_deg": "-98.374783", + "elevation_ft": "1460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Blanco", + "scheduled_service": "no", + "gps_code": "3TA5", + "local_code": "3TA5" + }, + { + "id": "10794", + "ident": "3TA6", + "type": "small_airport", + "name": "Spring Ranch Airport", + "latitude_deg": "29.541900634765625", + "longitude_deg": "-100.25299835205078", + "elevation_ft": "1440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no", + "gps_code": "3TA6", + "local_code": "3TA6" + }, + { + "id": "10795", + "ident": "3TA7", + "type": "small_airport", + "name": "Jim Sears Airport", + "latitude_deg": "33.140104", + "longitude_deg": "-97.804184", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paradise", + "scheduled_service": "no", + "gps_code": "3TA7", + "local_code": "3TA7" + }, + { + "id": "10796", + "ident": "3TA8", + "type": "small_airport", + "name": "Picosa Ranch Airport", + "latitude_deg": "28.71969985961914", + "longitude_deg": "-100.05500030517578", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crystal City", + "scheduled_service": "no", + "gps_code": "3TA8", + "local_code": "3TA8" + }, + { + "id": "10797", + "ident": "3TA9", + "type": "small_airport", + "name": "Chacon Creek Ranch Airport", + "latitude_deg": "28.708599090576172", + "longitude_deg": "-100.00700378417969", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crystal City", + "scheduled_service": "no", + "gps_code": "3TA9", + "local_code": "3TA9" + }, + { + "id": "10798", + "ident": "3TE", + "type": "small_airport", + "name": "Al Meyers Airport", + "latitude_deg": "42.025101", + "longitude_deg": "-83.939201", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Tecumseh", + "scheduled_service": "no", + "local_code": "3TE", + "keywords": "0MI7, Meyers-Diver's Airport" + }, + { + "id": "10799", + "ident": "3TE0", + "type": "small_airport", + "name": "K Ranch Airport", + "latitude_deg": "30.731599807739258", + "longitude_deg": "-96.131103515625", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Iola", + "scheduled_service": "no", + "gps_code": "3TE0", + "local_code": "3TE0" + }, + { + "id": "10800", + "ident": "3TE1", + "type": "small_airport", + "name": "Gum Island Airport", + "latitude_deg": "29.95159912109375", + "longitude_deg": "-94.90440368652344", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dayton", + "scheduled_service": "no", + "gps_code": "3TE1", + "local_code": "3TE1" + }, + { + "id": "10801", + "ident": "3TE2", + "type": "heliport", + "name": "Texas Commerce Bank Building Heliport", + "latitude_deg": "29.758800506591797", + "longitude_deg": "-95.36380004882812", + "elevation_ft": "458", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "3TE2", + "local_code": "3TE2" + }, + { + "id": "325674", + "ident": "3TE3", + "type": "small_airport", + "name": "Lazy Dog Ranch Airpark", + "latitude_deg": "33.074013", + "longitude_deg": "-96.432", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Nevada", + "scheduled_service": "no", + "gps_code": "3TE3", + "local_code": "3TE3" + }, + { + "id": "10803", + "ident": "3TE4", + "type": "small_airport", + "name": "Hot Springs Airport", + "latitude_deg": "30.008801", + "longitude_deg": "-104.665001", + "elevation_ft": "3071", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Presidio", + "scheduled_service": "no", + "gps_code": "3TE4", + "local_code": "3TE4" + }, + { + "id": "10804", + "ident": "3TE5", + "type": "small_airport", + "name": "Stamps Field", + "latitude_deg": "35.33060073852539", + "longitude_deg": "-101.38500213623047", + "elevation_ft": "3445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Panhandle", + "scheduled_service": "no", + "gps_code": "3TE5", + "local_code": "3TE5" + }, + { + "id": "10805", + "ident": "3TE6", + "type": "small_airport", + "name": "Skellytown Airport", + "latitude_deg": "35.56999969482422", + "longitude_deg": "-101.16899871826172", + "elevation_ft": "3280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Skellytown", + "scheduled_service": "no", + "gps_code": "3TE6", + "local_code": "3TE6" + }, + { + "id": "10806", + "ident": "3TE7", + "type": "closed", + "name": "Mills Ranch Airport", + "latitude_deg": "30.240869", + "longitude_deg": "-101.412577", + "elevation_ft": "1965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pandale", + "scheduled_service": "no", + "gps_code": "3TE7", + "local_code": "3TE7" + }, + { + "id": "10807", + "ident": "3TE8", + "type": "small_airport", + "name": "Terlingua Airport", + "latitude_deg": "29.319401", + "longitude_deg": "-103.584", + "elevation_ft": "2717", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Terlingua", + "scheduled_service": "no", + "gps_code": "3TE8", + "local_code": "3TE8" + }, + { + "id": "10808", + "ident": "3TE9", + "type": "small_airport", + "name": "Pinoak Airport", + "latitude_deg": "30.10580062866211", + "longitude_deg": "-94.95880126953125", + "elevation_ft": "91", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dayton", + "scheduled_service": "no", + "gps_code": "3TE9", + "local_code": "3TE9" + }, + { + "id": "10809", + "ident": "3TN0", + "type": "small_airport", + "name": "Indian Springs Airport", + "latitude_deg": "36.535", + "longitude_deg": "-82.423889", + "elevation_ft": "1580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Kingsport", + "scheduled_service": "no", + "gps_code": "3TN0", + "local_code": "3TN0" + }, + { + "id": "10810", + "ident": "3TN1", + "type": "heliport", + "name": "Methodist Hospital-North Heliport", + "latitude_deg": "35.23400115966797", + "longitude_deg": "-89.89289855957031", + "elevation_ft": "346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Memphis", + "scheduled_service": "no", + "gps_code": "3TN1", + "local_code": "3TN1" + }, + { + "id": "10811", + "ident": "3TN2", + "type": "seaplane_base", + "name": "Merian Seaplane Base", + "latitude_deg": "35.82170104980469", + "longitude_deg": "-84.61100006103516", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Kingston", + "scheduled_service": "no", + "gps_code": "3TN2", + "local_code": "3TN2" + }, + { + "id": "10812", + "ident": "3TN3", + "type": "small_airport", + "name": "Wayne's World Airport", + "latitude_deg": "36.263301849365234", + "longitude_deg": "-88.7572021484375", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Dresden", + "scheduled_service": "no", + "gps_code": "3TN3", + "local_code": "3TN3" + }, + { + "id": "10813", + "ident": "3TN4", + "type": "small_airport", + "name": "Kenner Farm Airport", + "latitude_deg": "35.881036", + "longitude_deg": "-83.726641", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Seymour", + "scheduled_service": "no", + "gps_code": "3TN4", + "local_code": "3TN4" + }, + { + "id": "10814", + "ident": "3TN5", + "type": "heliport", + "name": "Holston Valley Medical Center Heliport", + "latitude_deg": "36.553643", + "longitude_deg": "-82.552815", + "elevation_ft": "1270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Kingsport", + "scheduled_service": "no", + "gps_code": "3TN5", + "local_code": "3TN5", + "keywords": "Wellmont" + }, + { + "id": "10815", + "ident": "3TN6", + "type": "small_airport", + "name": "Wilson Field", + "latitude_deg": "35.0968017578125", + "longitude_deg": "-89.28060150146484", + "elevation_ft": "435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Memphis", + "scheduled_service": "no", + "gps_code": "3TN6", + "local_code": "3TN6" + }, + { + "id": "10816", + "ident": "3TN7", + "type": "heliport", + "name": "Pigeon Forge Heliport", + "latitude_deg": "35.724300384521484", + "longitude_deg": "-83.63929748535156", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Pigeon Forge", + "scheduled_service": "no", + "gps_code": "3TN7", + "local_code": "3TN7" + }, + { + "id": "10817", + "ident": "3TN8", + "type": "small_airport", + "name": "Massingale Airport", + "latitude_deg": "35.763999938964844", + "longitude_deg": "-84.1874008178711", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lenoir City", + "scheduled_service": "no", + "gps_code": "3TN8", + "local_code": "3TN8" + }, + { + "id": "10818", + "ident": "3TN9", + "type": "small_airport", + "name": "Holenthawall Airport", + "latitude_deg": "36.61330032348633", + "longitude_deg": "-86.810302734375", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "3TN9", + "local_code": "3TN9" + }, + { + "id": "10819", + "ident": "3TS0", + "type": "small_airport", + "name": "East Side Airport", + "latitude_deg": "32.50849914550781", + "longitude_deg": "-94.70020294189453", + "elevation_ft": "373", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Longview", + "scheduled_service": "no", + "gps_code": "3TS0", + "local_code": "3TS0" + }, + { + "id": "10820", + "ident": "3TS1", + "type": "small_airport", + "name": "White Wings Airport", + "latitude_deg": "30.01140022277832", + "longitude_deg": "-98.04049682617188", + "elevation_ft": "1083", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wimberley", + "scheduled_service": "no", + "gps_code": "3TS1", + "local_code": "3TS1" + }, + { + "id": "10821", + "ident": "3TS2", + "type": "heliport", + "name": "West Hospital Authority Heliport", + "latitude_deg": "31.816400528", + "longitude_deg": "-97.09279632570001", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "West", + "scheduled_service": "no", + "gps_code": "3TS2", + "local_code": "3TS2" + }, + { + "id": "10822", + "ident": "3TS3", + "type": "small_airport", + "name": "J-D Ranch Airport", + "latitude_deg": "29.37470054626465", + "longitude_deg": "-95.29049682617188", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alvin", + "scheduled_service": "no", + "gps_code": "3TS3", + "local_code": "3TS3" + }, + { + "id": "10823", + "ident": "3TS4", + "type": "heliport", + "name": "Intermedics Heliport", + "latitude_deg": "29.211258", + "longitude_deg": "-95.440072", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Angleton", + "scheduled_service": "no", + "gps_code": "3TS4", + "local_code": "3TS4" + }, + { + "id": "10824", + "ident": "3TS5", + "type": "closed", + "name": "Purdy-Nielsen Memorial Airpark", + "latitude_deg": "29.4711", + "longitude_deg": "-95.886299", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beasley", + "scheduled_service": "no", + "keywords": "3TS5" + }, + { + "id": "10825", + "ident": "3TS6", + "type": "closed", + "name": "Lawrence Administrative Services Inc Heliport", + "latitude_deg": "30.345736", + "longitude_deg": "-95.478339", + "elevation_ft": "252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Conroe", + "scheduled_service": "no", + "keywords": "3TS6" + }, + { + "id": "10826", + "ident": "3TS7", + "type": "closed", + "name": "Pavlat Airport", + "latitude_deg": "30.021099", + "longitude_deg": "-94.945999", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dayton", + "scheduled_service": "no", + "keywords": "3TS7" + }, + { + "id": "10827", + "ident": "3TS8", + "type": "heliport", + "name": "Dailey Inc Heliport", + "latitude_deg": "29.789400100708008", + "longitude_deg": "-95.27739715576172", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "3TS8", + "local_code": "3TS8" + }, + { + "id": "10828", + "ident": "3TS9", + "type": "small_airport", + "name": "Oak Glen Ranch Airport", + "latitude_deg": "33.37929916381836", + "longitude_deg": "-95.60359954833984", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cooper", + "scheduled_service": "no", + "gps_code": "3TS9", + "local_code": "3TS9" + }, + { + "id": "10829", + "ident": "3TX0", + "type": "heliport", + "name": "Texas Department of Public Safety Corpus Christi Heliport", + "latitude_deg": "27.7411", + "longitude_deg": "-97.434998", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no", + "gps_code": "3TX0", + "local_code": "3TX0" + }, + { + "id": "10830", + "ident": "3TX1", + "type": "small_airport", + "name": "Paradise Point Airport", + "latitude_deg": "32.082431", + "longitude_deg": "-95.445039", + "elevation_ft": "345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Frankston", + "scheduled_service": "no", + "gps_code": "3TX1", + "local_code": "3TX1" + }, + { + "id": "10831", + "ident": "3TX2", + "type": "small_airport", + "name": "Flying S Farm Airport", + "latitude_deg": "33.0806999206543", + "longitude_deg": "-97.3488998413086", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Justin", + "scheduled_service": "no", + "gps_code": "3TX2", + "local_code": "3TX2" + }, + { + "id": "10832", + "ident": "3TX3", + "type": "small_airport", + "name": "Sitton Field", + "latitude_deg": "33.119598388671875", + "longitude_deg": "-97.3197021484375", + "elevation_ft": "682", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Justin", + "scheduled_service": "no", + "gps_code": "3TX3", + "local_code": "3TX3" + }, + { + "id": "10833", + "ident": "3TX4", + "type": "closed", + "name": "Willow Run Airport", + "latitude_deg": "33.094717", + "longitude_deg": "-97.381075", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Justin", + "scheduled_service": "no", + "keywords": "3TX4" + }, + { + "id": "10834", + "ident": "3TX5", + "type": "closed", + "name": "Mc Creless Farm Airport", + "latitude_deg": "29.371099", + "longitude_deg": "-98.231697", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Adkins", + "scheduled_service": "no", + "keywords": "3TX5" + }, + { + "id": "45827", + "ident": "3TX6", + "type": "small_airport", + "name": "Lowell Smith Jr Airport", + "latitude_deg": "32.233481", + "longitude_deg": "-97.380849", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rio Vista", + "scheduled_service": "no", + "gps_code": "3TX6", + "local_code": "3TX6" + }, + { + "id": "10836", + "ident": "3TX7", + "type": "small_airport", + "name": "Flying P Airport", + "latitude_deg": "33.14080047607422", + "longitude_deg": "-97.37110137939453", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Justin", + "scheduled_service": "no", + "gps_code": "3TX7", + "local_code": "3TX7" + }, + { + "id": "10837", + "ident": "3TX8", + "type": "closed", + "name": "Drop Field", + "latitude_deg": "33.125099", + "longitude_deg": "-97.346102", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Justin", + "scheduled_service": "no", + "keywords": "3TX8" + }, + { + "id": "10838", + "ident": "3TX9", + "type": "small_airport", + "name": "Rafter J Airport", + "latitude_deg": "32.5275993347168", + "longitude_deg": "-97.28079986572266", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Burleson", + "scheduled_service": "no", + "gps_code": "3TX9", + "local_code": "3TX9" + }, + { + "id": "10839", + "ident": "3U0", + "type": "small_airport", + "name": "Murphy Hot Springs Airport", + "latitude_deg": "42.02069854736328", + "longitude_deg": "-115.33799743652344", + "elevation_ft": "5829", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Three Creek", + "scheduled_service": "no", + "gps_code": "3U0", + "local_code": "3U0" + }, + { + "id": "10840", + "ident": "3U1", + "type": "small_airport", + "name": "Warren /US Forest Service/ Airport", + "latitude_deg": "45.2681999207", + "longitude_deg": "-115.682998657", + "elevation_ft": "5896", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Warren", + "scheduled_service": "no", + "gps_code": "3U1", + "local_code": "3U1" + }, + { + "id": "10841", + "ident": "3U2", + "type": "small_airport", + "name": "Johnson Creek Airport", + "latitude_deg": "44.912215", + "longitude_deg": "-115.485433", + "elevation_ft": "4933", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Yellow Pine", + "scheduled_service": "no", + "gps_code": "3U2", + "local_code": "3U2" + }, + { + "id": "10842", + "ident": "3U5", + "type": "small_airport", + "name": "Augusta Airport", + "latitude_deg": "47.46329879760742", + "longitude_deg": "-112.37999725341797", + "elevation_ft": "4145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Augusta", + "scheduled_service": "no", + "gps_code": "3U5", + "local_code": "3U5" + }, + { + "id": "10843", + "ident": "3U9", + "type": "small_airport", + "name": "Boulder Airport", + "latitude_deg": "46.21160125732422", + "longitude_deg": "-112.10600280761719", + "elevation_ft": "4968", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Boulder", + "scheduled_service": "no", + "gps_code": "3U9", + "local_code": "3U9" + }, + { + "id": "346247", + "ident": "3UT6", + "type": "heliport", + "name": "Riverton Hospital Heliport", + "latitude_deg": "40.520019", + "longitude_deg": "-111.981616", + "elevation_ft": "4638", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Riverton", + "scheduled_service": "no", + "gps_code": "3UT6", + "local_code": "3UT6" + }, + { + "id": "349115", + "ident": "3UT7", + "type": "heliport", + "name": "Losee Villa Heliport", + "latitude_deg": "40.409681", + "longitude_deg": "-111.511273", + "elevation_ft": "5680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Heber City", + "scheduled_service": "no", + "gps_code": "3UT7", + "local_code": "3UT7" + }, + { + "id": "346852", + "ident": "3UT8", + "type": "heliport", + "name": "Little Sahara Medical Helipad #1", + "latitude_deg": "39.72637", + "longitude_deg": "-112.30547", + "elevation_ft": "5228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Little Sahara Recreation Area", + "scheduled_service": "no", + "gps_code": "3UT8", + "local_code": "3UT8" + }, + { + "id": "346850", + "ident": "3UT9", + "type": "heliport", + "name": "Little Sahara Medical Helipad #2", + "latitude_deg": "39.673007", + "longitude_deg": "-112.354742", + "elevation_ft": "4957", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Little Sahara Recreation Area", + "scheduled_service": "no", + "gps_code": "3UT9", + "local_code": "3UT9" + }, + { + "id": "10844", + "ident": "3VA0", + "type": "small_airport", + "name": "Ayres-Aicp Airport", + "latitude_deg": "38.775901794433594", + "longitude_deg": "-77.91059875488281", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Warrenton", + "scheduled_service": "no", + "gps_code": "3VA0", + "local_code": "3VA0" + }, + { + "id": "10845", + "ident": "3VA1", + "type": "small_airport", + "name": "The Meadows Airport", + "latitude_deg": "38.770587", + "longitude_deg": "-77.797278", + "elevation_ft": "584", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Warrenton", + "scheduled_service": "no", + "gps_code": "3VA1", + "local_code": "3VA1" + }, + { + "id": "10846", + "ident": "3VA2", + "type": "small_airport", + "name": "Aviacres Airport", + "latitude_deg": "38.624298095703125", + "longitude_deg": "-77.78610229492188", + "elevation_ft": "435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Warrenton", + "scheduled_service": "no", + "gps_code": "3VA2", + "local_code": "3VA2" + }, + { + "id": "10847", + "ident": "3VA3", + "type": "small_airport", + "name": "Flying Circus Aerodrome", + "latitude_deg": "38.551488", + "longitude_deg": "-77.715411", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Bealeton", + "scheduled_service": "no", + "gps_code": "3VA3", + "local_code": "3VA3" + }, + { + "id": "10848", + "ident": "3VA4", + "type": "small_airport", + "name": "Bill Davenport Memorial Airport", + "latitude_deg": "37.857067", + "longitude_deg": "-76.736097", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Warsaw", + "scheduled_service": "no", + "gps_code": "3VA4", + "local_code": "3VA4", + "keywords": "Shandy Hall Farm" + }, + { + "id": "45878", + "ident": "3VA5", + "type": "small_airport", + "name": "Goose Hunt Farm Airport", + "latitude_deg": "39.028889", + "longitude_deg": "-77.625", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Leesburg", + "scheduled_service": "no", + "gps_code": "3VA5", + "local_code": "3VA5" + }, + { + "id": "10849", + "ident": "3VA6", + "type": "heliport", + "name": "Beaver Lodge Estate Heliport", + "latitude_deg": "38.51959991455078", + "longitude_deg": "-77.57360076904297", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Somerville", + "scheduled_service": "no", + "gps_code": "3VA6", + "local_code": "3VA6" + }, + { + "id": "10850", + "ident": "3VA7", + "type": "small_airport", + "name": "White Post Airport", + "latitude_deg": "39.061816", + "longitude_deg": "-78.092365", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "White Post", + "scheduled_service": "no", + "gps_code": "3VA7", + "local_code": "3VA7" + }, + { + "id": "10851", + "ident": "3VA8", + "type": "small_airport", + "name": "Garner Airport", + "latitude_deg": "36.856300354003906", + "longitude_deg": "-76.68219757080078", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Windsor", + "scheduled_service": "no", + "gps_code": "3VA8", + "local_code": "3VA8" + }, + { + "id": "10852", + "ident": "3VA9", + "type": "heliport", + "name": "Danville Life Saving Crew Heliport", + "latitude_deg": "36.58570098876953", + "longitude_deg": "-79.4092025756836", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "3VA9", + "local_code": "3VA9" + }, + { + "id": "10853", + "ident": "3VG2", + "type": "small_airport", + "name": "Machipongo International Airport", + "latitude_deg": "37.3883018494", + "longitude_deg": "-75.8925018311", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Machipongo", + "scheduled_service": "no", + "gps_code": "3VG2", + "local_code": "3VG2" + }, + { + "id": "10854", + "ident": "3VG3", + "type": "small_airport", + "name": "Serenity Farm Airport", + "latitude_deg": "37.936100006103516", + "longitude_deg": "-76.34860229492188", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Burgess", + "scheduled_service": "no", + "gps_code": "3VG3", + "local_code": "3VG3" + }, + { + "id": "45882", + "ident": "3VG4", + "type": "closed", + "name": "Knight's Landing LLC Airport", + "latitude_deg": "36.558333", + "longitude_deg": "-76.116389", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Virginia Beach", + "scheduled_service": "no", + "keywords": "3VG4" + }, + { + "id": "10855", + "ident": "3VG5", + "type": "heliport", + "name": "Thomas Nelson Comm College Heliport", + "latitude_deg": "37.0630989074707", + "longitude_deg": "-76.41639709472656", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Hampton", + "scheduled_service": "no", + "gps_code": "3VG5", + "local_code": "3VG5" + }, + { + "id": "45879", + "ident": "3VG6", + "type": "closed", + "name": "Muddy Toes Heliport", + "latitude_deg": "37.819283", + "longitude_deg": "-75.995452", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Tangier", + "scheduled_service": "no", + "keywords": "3VG6" + }, + { + "id": "15237", + "ident": "3VG7", + "type": "small_airport", + "name": "Hartwood Airport", + "latitude_deg": "38.4846", + "longitude_deg": "-77.612801", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fredericksburg", + "scheduled_service": "no", + "gps_code": "3VG7", + "local_code": "3VG7", + "keywords": "Formerly 8W8" + }, + { + "id": "45881", + "ident": "3VG8", + "type": "closed", + "name": "Tucker Heliport", + "latitude_deg": "36.589788", + "longitude_deg": "-76.270491", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Chesapeake City", + "scheduled_service": "no", + "keywords": "3VG8" + }, + { + "id": "45873", + "ident": "3VG9", + "type": "small_airport", + "name": "Potts Landing Airport", + "latitude_deg": "36.711385", + "longitude_deg": "-79.136266", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "South Boston", + "scheduled_service": "no", + "gps_code": "3VG9", + "local_code": "3VG9", + "keywords": "Birch Creek Plantation Airport" + }, + { + "id": "10856", + "ident": "3VS", + "type": "small_airport", + "name": "Roy Otten Memorial Airfield", + "latitude_deg": "38.427799224854", + "longitude_deg": "-92.875198364258", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Versailles", + "scheduled_service": "no", + "gps_code": "3VS", + "iata_code": "VRS", + "local_code": "3VS" + }, + { + "id": "10857", + "ident": "3W2", + "type": "small_airport", + "name": "Put In Bay Airport", + "latitude_deg": "41.63669967651367", + "longitude_deg": "-82.82830047607422", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Put In Bay", + "scheduled_service": "no", + "gps_code": "3W2", + "local_code": "3W2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Put-in-Bay_Airport" + }, + { + "id": "10858", + "ident": "3W3", + "type": "small_airport", + "name": "Kentmorr Airpark", + "latitude_deg": "38.9182014465332", + "longitude_deg": "-76.35800170898438", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Stevensville", + "scheduled_service": "no", + "gps_code": "3W3", + "local_code": "3W3" + }, + { + "id": "10859", + "ident": "3W5", + "type": "small_airport", + "name": "Mears Field Airport", + "latitude_deg": "48.5298", + "longitude_deg": "-121.758003", + "elevation_ft": "267", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Concrete", + "scheduled_service": "no", + "gps_code": "K3W5", + "local_code": "3W5", + "home_link": "https://www.townofconcrete.com/airport.php" + }, + { + "id": "10860", + "ident": "3W6", + "type": "small_airport", + "name": "Bladenboro Airport", + "latitude_deg": "34.550201416015625", + "longitude_deg": "-78.78309631347656", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Bladenboro", + "scheduled_service": "no", + "gps_code": "3W6", + "local_code": "3W6" + }, + { + "id": "10861", + "ident": "3W9", + "type": "small_airport", + "name": "Middle Bass-East Point Airport", + "latitude_deg": "41.694400787353516", + "longitude_deg": "-82.79660034179688", + "elevation_ft": "582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Middle Bass Island", + "scheduled_service": "no", + "gps_code": "3W9", + "local_code": "3W9" + }, + { + "id": "10862", + "ident": "3WA0", + "type": "small_airport", + "name": "Taylor Airport", + "latitude_deg": "46.89759826660156", + "longitude_deg": "-122.66999816894531", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Rainier", + "scheduled_service": "no", + "gps_code": "3WA0", + "local_code": "3WA0" + }, + { + "id": "10863", + "ident": "3WA1", + "type": "small_airport", + "name": "Johnson's Landing Ultralightport", + "latitude_deg": "47.603599548339844", + "longitude_deg": "-120.66999816894531", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Leavenworth", + "scheduled_service": "no", + "gps_code": "3WA1", + "local_code": "3WA1" + }, + { + "id": "10864", + "ident": "3WA2", + "type": "small_airport", + "name": "Hanes Airport", + "latitude_deg": "47.49150085449219", + "longitude_deg": "-118.2509994506836", + "elevation_ft": "2209", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Harrington", + "scheduled_service": "no", + "gps_code": "3WA2", + "local_code": "3WA2" + }, + { + "id": "10865", + "ident": "3WA3", + "type": "small_airport", + "name": "Angel Park Airport", + "latitude_deg": "46.64849853515625", + "longitude_deg": "-118.58300018310547", + "elevation_ft": "884", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Kahlotus", + "scheduled_service": "no", + "gps_code": "3WA3", + "local_code": "3WA3" + }, + { + "id": "10866", + "ident": "3WA4", + "type": "small_airport", + "name": "Watson Airport", + "latitude_deg": "46.71649932861328", + "longitude_deg": "-118.61799621582031", + "elevation_ft": "1349", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Kahlotus", + "scheduled_service": "no", + "gps_code": "3WA4", + "local_code": "3WA4" + }, + { + "id": "10867", + "ident": "3WA5", + "type": "heliport", + "name": "Barnes Lonesome Polecat Ranch Heliport", + "latitude_deg": "48.25830078125", + "longitude_deg": "-122.66699981689453", + "elevation_ft": "188", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Oak Harbor", + "scheduled_service": "no", + "gps_code": "3WA5", + "local_code": "3WA5" + }, + { + "id": "10868", + "ident": "3WA6", + "type": "closed", + "name": "Boeing Kent Heliport", + "latitude_deg": "47.418701", + "longitude_deg": "-122.261002", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Kent", + "scheduled_service": "no", + "keywords": "3WA6" + }, + { + "id": "10869", + "ident": "3WA7", + "type": "heliport", + "name": "Kent Benaroya Heliport", + "latitude_deg": "47.41450119018555", + "longitude_deg": "-122.2300033569336", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Kent", + "scheduled_service": "no", + "gps_code": "3WA7", + "local_code": "3WA7" + }, + { + "id": "10870", + "ident": "3WA8", + "type": "heliport", + "name": "Evergreen Hospital Heliport", + "latitude_deg": "47.71611023", + "longitude_deg": "-122.1801682", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Kirkland", + "scheduled_service": "no", + "gps_code": "3WA8", + "local_code": "3WA8" + }, + { + "id": "10871", + "ident": "3WA9", + "type": "small_airport", + "name": "Flying Carpet Airport", + "latitude_deg": "46.96289825439453", + "longitude_deg": "-122.80000305175781", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Lacey", + "scheduled_service": "no", + "gps_code": "3WA9", + "local_code": "3WA9" + }, + { + "id": "10872", + "ident": "3WI0", + "type": "small_airport", + "name": "Carnot Field", + "latitude_deg": "44.6422004699707", + "longitude_deg": "-87.4197998046875", + "elevation_ft": "655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Algoma", + "scheduled_service": "no", + "gps_code": "3WI0", + "local_code": "3WI0" + }, + { + "id": "10873", + "ident": "3WI1", + "type": "small_airport", + "name": "Olson's Airport", + "latitude_deg": "42.65700149536133", + "longitude_deg": "-88.08760070800781", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Union Grove", + "scheduled_service": "no", + "gps_code": "3WI1", + "local_code": "3WI1" + }, + { + "id": "10874", + "ident": "3WI2", + "type": "small_airport", + "name": "Tesmer Airport", + "latitude_deg": "43.152801513671875", + "longitude_deg": "-88.9845962524414", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Waterloo", + "scheduled_service": "no", + "gps_code": "3WI2", + "local_code": "3WI2" + }, + { + "id": "10875", + "ident": "3WI3", + "type": "small_airport", + "name": "Plover River Airfield", + "latitude_deg": "44.765201568603516", + "longitude_deg": "-89.40730285644531", + "elevation_ft": "1185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Bevent", + "scheduled_service": "no", + "gps_code": "3WI3", + "local_code": "3WI3" + }, + { + "id": "10876", + "ident": "3WI4", + "type": "small_airport", + "name": "Flying 'O' Airport", + "latitude_deg": "44.92359924316406", + "longitude_deg": "-89.40229797363281", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wausau", + "scheduled_service": "no", + "gps_code": "3WI4", + "local_code": "3WI4" + }, + { + "id": "10877", + "ident": "3WI5", + "type": "small_airport", + "name": "Clover Valley Airport", + "latitude_deg": "42.8125", + "longitude_deg": "-88.72650146484375", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Whitewater", + "scheduled_service": "no", + "gps_code": "3WI5", + "local_code": "3WI5" + }, + { + "id": "10878", + "ident": "3WI6", + "type": "small_airport", + "name": "Melin Farms Airport", + "latitude_deg": "42.590775", + "longitude_deg": "-88.874613", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "3WI6", + "local_code": "3WI6" + }, + { + "id": "10879", + "ident": "3WI7", + "type": "closed", + "name": "Bark River Airport", + "latitude_deg": "43.033298", + "longitude_deg": "-88.458199", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Dousman", + "scheduled_service": "no", + "keywords": "3WI7" + }, + { + "id": "10880", + "ident": "3WI8", + "type": "small_airport", + "name": "Plantation Pine Airport", + "latitude_deg": "44.05329895019531", + "longitude_deg": "-89.1218032836914", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Redgranite", + "scheduled_service": "no", + "gps_code": "3WI8", + "local_code": "3WI8" + }, + { + "id": "10881", + "ident": "3WI9", + "type": "small_airport", + "name": "Rosenbaum Field", + "latitude_deg": "44.99375915527344", + "longitude_deg": "-91.37775421142578", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Chippewa Falls", + "scheduled_service": "no", + "gps_code": "3WI9", + "local_code": "3WI9" + }, + { + "id": "10882", + "ident": "3WN2", + "type": "small_airport", + "name": "Old Dairy Airport", + "latitude_deg": "46.69160079956055", + "longitude_deg": "-90.87069702148438", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Washburn", + "scheduled_service": "no", + "gps_code": "3WN2", + "local_code": "3WN2" + }, + { + "id": "10883", + "ident": "3WN3", + "type": "heliport", + "name": "Kenosha County Heliport", + "latitude_deg": "42.5702018737793", + "longitude_deg": "-88.04560089111328", + "elevation_ft": "771", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Kenosha", + "scheduled_service": "no", + "gps_code": "3WN3", + "local_code": "3WN3" + }, + { + "id": "10884", + "ident": "3WN4", + "type": "small_airport", + "name": "Mark's Park & Airfield", + "latitude_deg": "44.30690002441406", + "longitude_deg": "-88.77110290527344", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "New London", + "scheduled_service": "no", + "gps_code": "3WN4", + "local_code": "3WN4" + }, + { + "id": "10885", + "ident": "3WN6", + "type": "small_airport", + "name": "Knutson Farms Airport", + "latitude_deg": "45.23899841308594", + "longitude_deg": "-91.71189880371094", + "elevation_ft": "1035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Chetek", + "scheduled_service": "no", + "gps_code": "3WN6", + "local_code": "3WN6" + }, + { + "id": "10886", + "ident": "3WN7", + "type": "small_airport", + "name": "Woodland Airstrip", + "latitude_deg": "44.150732", + "longitude_deg": "-87.618394", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Two Rivers", + "scheduled_service": "no", + "gps_code": "3WN7", + "local_code": "3WN7" + }, + { + "id": "10887", + "ident": "3WN8", + "type": "small_airport", + "name": "Blunt Field", + "latitude_deg": "44.93560028076172", + "longitude_deg": "-91.43070220947266", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Chippewa Falls", + "scheduled_service": "no", + "gps_code": "3WN8", + "local_code": "3WN8" + }, + { + "id": "10888", + "ident": "3WN9", + "type": "small_airport", + "name": "Brion Memorial Airport", + "latitude_deg": "44.55690002441406", + "longitude_deg": "-91.36689758300781", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Strum", + "scheduled_service": "no", + "gps_code": "3WN9", + "local_code": "3WN9" + }, + { + "id": "10889", + "ident": "3WV2", + "type": "heliport", + "name": "Va Medical Center Heliport", + "latitude_deg": "38.37779998779297", + "longitude_deg": "-82.5167007446289", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Huntington", + "scheduled_service": "no", + "gps_code": "3WV2", + "local_code": "3WV2" + }, + { + "id": "326565", + "ident": "3WV6", + "type": "heliport", + "name": "Air Evac 121 Heliport", + "latitude_deg": "37.834155", + "longitude_deg": "-81.196654", + "elevation_ft": "2400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Mount Hope", + "scheduled_service": "no", + "gps_code": "3WV6", + "local_code": "3WV6" + }, + { + "id": "346207", + "ident": "3WV7", + "type": "heliport", + "name": "United Medical Center Heliport", + "latitude_deg": "39.329202", + "longitude_deg": "-80.238642", + "elevation_ft": "1247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Bridgeport", + "scheduled_service": "no", + "gps_code": "3WV7", + "local_code": "3WV7" + }, + { + "id": "10890", + "ident": "3X5", + "type": "small_airport", + "name": "North Bass Island Airport", + "latitude_deg": "41.71799850463867", + "longitude_deg": "-82.82109832763672", + "elevation_ft": "594", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "North Bass Island", + "scheduled_service": "no", + "gps_code": "3X5", + "local_code": "3X5" + }, + { + "id": "45815", + "ident": "3XA0", + "type": "small_airport", + "name": "Drennan Airport", + "latitude_deg": "32.313889", + "longitude_deg": "-97.231111", + "elevation_ft": "726", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Grandview", + "scheduled_service": "no", + "gps_code": "3XA0", + "local_code": "3XA0" + }, + { + "id": "45853", + "ident": "3XA1", + "type": "small_airport", + "name": "Hardy Field", + "latitude_deg": "33.47395", + "longitude_deg": "-97.169267", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Valley View", + "scheduled_service": "no", + "gps_code": "3XA1", + "local_code": "3XA1" + }, + { + "id": "45831", + "ident": "3XA2", + "type": "heliport", + "name": "Matagorda Regional Medical Center Heliport", + "latitude_deg": "28.979889", + "longitude_deg": "-95.992331", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bay City", + "scheduled_service": "no", + "gps_code": "3XA2", + "local_code": "3XA2" + }, + { + "id": "42783", + "ident": "3XA4", + "type": "heliport", + "name": "Palmview Police Department", + "latitude_deg": "26.23945236", + "longitude_deg": "-98.37071991", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Palmview", + "scheduled_service": "no", + "gps_code": "3XA4", + "local_code": "3XA4" + }, + { + "id": "45810", + "ident": "3XA5", + "type": "heliport", + "name": "Houston Methodist Clear Lake Hospital Heliport", + "latitude_deg": "29.550536", + "longitude_deg": "-95.085742", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Nassau Bay", + "scheduled_service": "no", + "gps_code": "3XA5", + "local_code": "3XA5", + "keywords": "Christus St. John, Houston Methodist St John Hospital Heliport" + }, + { + "id": "45813", + "ident": "3XA6", + "type": "heliport", + "name": "Dell Children's Medical Center Heliport", + "latitude_deg": "30.304401", + "longitude_deg": "-97.707757", + "elevation_ft": "644", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "3XA6", + "local_code": "3XA6" + }, + { + "id": "45816", + "ident": "3XA7", + "type": "small_airport", + "name": "Eagle Rock Ranch Airport", + "latitude_deg": "30.890974", + "longitude_deg": "-99.006557", + "elevation_ft": "1540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pontotoc", + "scheduled_service": "no", + "gps_code": "3XA7", + "local_code": "3XA7" + }, + { + "id": "45854", + "ident": "3XA8", + "type": "small_airport", + "name": "Chicken Strip", + "latitude_deg": "32.514162", + "longitude_deg": "-97.594803", + "elevation_ft": "1055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cresson", + "scheduled_service": "no", + "gps_code": "3XA8", + "local_code": "3XA8" + }, + { + "id": "45834", + "ident": "3XA9", + "type": "heliport", + "name": "MFS Sabine Pass Heliport", + "latitude_deg": "29.716024", + "longitude_deg": "-93.864541", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sabine Pass", + "scheduled_service": "no", + "gps_code": "3XA9", + "local_code": "3XA9" + }, + { + "id": "10891", + "ident": "3XS0", + "type": "closed", + "name": "Hartlee Field", + "latitude_deg": "33.268568", + "longitude_deg": "-97.080256", + "elevation_ft": "588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Denton", + "scheduled_service": "no", + "keywords": "3XS0" + }, + { + "id": "10892", + "ident": "3XS1", + "type": "small_airport", + "name": "Kubecka Aviation Airport", + "latitude_deg": "28.767200469970703", + "longitude_deg": "-96.30690002441406", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Palacios", + "scheduled_service": "no", + "gps_code": "3XS1", + "local_code": "3XS1" + }, + { + "id": "10893", + "ident": "3XS2", + "type": "heliport", + "name": "Citizens Medical Center Heliport", + "latitude_deg": "28.812023", + "longitude_deg": "-96.978192", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Victoria", + "scheduled_service": "no", + "gps_code": "3XS2", + "local_code": "3XS2" + }, + { + "id": "10894", + "ident": "3XS3", + "type": "closed", + "name": "Victoria Bank & Trust Motor Garage Heliport", + "latitude_deg": "28.802999", + "longitude_deg": "-97.005798", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Victoria", + "scheduled_service": "no", + "keywords": "3XS3" + }, + { + "id": "10895", + "ident": "3XS4", + "type": "small_airport", + "name": "Jenkins Airport", + "latitude_deg": "30.1343994140625", + "longitude_deg": "-93.93599700927734", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Vidor", + "scheduled_service": "no", + "gps_code": "3XS4", + "local_code": "3XS4" + }, + { + "id": "10896", + "ident": "3XS5", + "type": "small_airport", + "name": "Star Smith Field", + "latitude_deg": "29.29800033569336", + "longitude_deg": "-98.67669677734375", + "elevation_ft": "662", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Von Ormy", + "scheduled_service": "no", + "gps_code": "3XS5", + "local_code": "3XS5" + }, + { + "id": "10897", + "ident": "3XS6", + "type": "heliport", + "name": "Christus Good Shepherd Medical Center Heliport", + "latitude_deg": "32.500151", + "longitude_deg": "-94.731034", + "elevation_ft": "359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Longview", + "scheduled_service": "no", + "gps_code": "3XS6", + "local_code": "3XS6" + }, + { + "id": "45808", + "ident": "3XS7", + "type": "heliport", + "name": "Bell Training Facility Heliport", + "latitude_deg": "33.049167", + "longitude_deg": "-97.2935", + "elevation_ft": "657", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "3XS7", + "local_code": "3XS7" + }, + { + "id": "10899", + "ident": "3XS8", + "type": "small_airport", + "name": "Ken Ada Ranch Airport", + "latitude_deg": "30.137034", + "longitude_deg": "-95.917643", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waller", + "scheduled_service": "no", + "gps_code": "3XS8", + "local_code": "3XS8" + }, + { + "id": "10900", + "ident": "3XS9", + "type": "heliport", + "name": "Comanche Hospital Heliport", + "latitude_deg": "31.896299362182617", + "longitude_deg": "-98.60540008544922", + "elevation_ft": "1422", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comanche", + "scheduled_service": "no", + "gps_code": "3XS9", + "local_code": "3XS9" + }, + { + "id": "10901", + "ident": "3Y0", + "type": "small_airport", + "name": "Wall Lake Municipal Airport", + "latitude_deg": "42.26240158081055", + "longitude_deg": "-95.0906982421875", + "elevation_ft": "1224", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Wall Lake", + "scheduled_service": "no", + "gps_code": "3Y0", + "local_code": "3Y0" + }, + { + "id": "10902", + "ident": "3Y4", + "type": "small_airport", + "name": "Woodbine Municipal Airport", + "latitude_deg": "41.73609924316406", + "longitude_deg": "-95.68360137939453", + "elevation_ft": "1068", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Woodbine", + "scheduled_service": "no", + "gps_code": "3Y4", + "local_code": "3Y4" + }, + { + "id": "10903", + "ident": "3Y7", + "type": "small_airport", + "name": "Isabel Municipal Airport", + "latitude_deg": "45.38949966430664", + "longitude_deg": "-101.43699645996094", + "elevation_ft": "2398", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Isabel", + "scheduled_service": "no", + "gps_code": "3Y7", + "local_code": "3Y7" + }, + { + "id": "10904", + "ident": "3Z1", + "type": "small_airport", + "name": "Feather River Airport", + "latitude_deg": "64.83170318603516", + "longitude_deg": "-166.1320037841797", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Feather River", + "scheduled_service": "no", + "gps_code": "3Z1", + "local_code": "3Z1" + }, + { + "id": "10905", + "ident": "3Z8", + "type": "seaplane_base", + "name": "Golden Horn Lodge Seaplane Base", + "latitude_deg": "59.7470016479", + "longitude_deg": "-158.875", + "elevation_ft": "91", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Golden Horn Lodge", + "scheduled_service": "no", + "gps_code": "3Z8", + "iata_code": "GDH", + "local_code": "3Z8" + }, + { + "id": "10906", + "ident": "3Z9", + "type": "seaplane_base", + "name": "Haines Seaplane Base", + "latitude_deg": "59.23500061035156", + "longitude_deg": "-135.4409942626953", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Haines", + "scheduled_service": "no", + "gps_code": "3Z9", + "local_code": "3Z9" + }, + { + "id": "10907", + "ident": "40AK", + "type": "small_airport", + "name": "Sterling Air Park", + "latitude_deg": "60.557236", + "longitude_deg": "-150.836964", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no", + "gps_code": "40AK", + "local_code": "40AK" + }, + { + "id": "330459", + "ident": "40AL", + "type": "heliport", + "name": "North Alabama Medical Center Heliport", + "latitude_deg": "34.805125", + "longitude_deg": "-87.652819", + "elevation_ft": "526", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Florence", + "scheduled_service": "no", + "gps_code": "40AL", + "local_code": "40AL" + }, + { + "id": "10908", + "ident": "40AR", + "type": "small_airport", + "name": "Lost Bridge Village Airport", + "latitude_deg": "36.392799377441406", + "longitude_deg": "-93.91239929199219", + "elevation_ft": "1440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Garfield", + "scheduled_service": "no", + "gps_code": "40AR", + "local_code": "40AR" + }, + { + "id": "10909", + "ident": "40AZ", + "type": "small_airport", + "name": "Boulais Ranch Airport", + "latitude_deg": "33.07889938354492", + "longitude_deg": "-112.12899780273438", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Maricopa", + "scheduled_service": "no", + "gps_code": "40AZ", + "local_code": "40AZ" + }, + { + "id": "10910", + "ident": "40C", + "type": "small_airport", + "name": "Watervliet Municipal Airport", + "latitude_deg": "42.20000076293945", + "longitude_deg": "-86.25", + "elevation_ft": "656", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Watervliet", + "scheduled_service": "no", + "gps_code": "40C", + "local_code": "40C" + }, + { + "id": "10911", + "ident": "40CA", + "type": "heliport", + "name": "City of Industry Civic Financial Center Heliport", + "latitude_deg": "34.024539", + "longitude_deg": "-117.95929", + "elevation_ft": "322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "City of Industry", + "scheduled_service": "no", + "gps_code": "40CA", + "local_code": "40CA" + }, + { + "id": "338695", + "ident": "40CL", + "type": "heliport", + "name": "Joby Aero, Inc Heliport", + "latitude_deg": "37.024194", + "longitude_deg": "-122.156749", + "elevation_ft": "632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "gps_code": "40CL", + "local_code": "40CL" + }, + { + "id": "317227", + "ident": "40CN", + "type": "heliport", + "name": "Loma Linda University Medical Center-Murrieta Heliport", + "latitude_deg": "33.614716", + "longitude_deg": "-117.169905", + "elevation_ft": "1576", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Murrieta", + "scheduled_service": "no", + "gps_code": "40CN", + "local_code": "40CN" + }, + { + "id": "10912", + "ident": "40D", + "type": "small_airport", + "name": "Three Lakes Municipal Airport", + "latitude_deg": "45.790199279785156", + "longitude_deg": "-89.12100219726562", + "elevation_ft": "1636", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Three Lakes", + "scheduled_service": "no", + "gps_code": "40D", + "local_code": "40D" + }, + { + "id": "10913", + "ident": "40FA", + "type": "closed", + "name": "Sequiam Heliport", + "latitude_deg": "28.447201", + "longitude_deg": "-81.369202", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "keywords": "40FA" + }, + { + "id": "10914", + "ident": "40FD", + "type": "heliport", + "name": "Little's Heliport", + "latitude_deg": "28.01059913635254", + "longitude_deg": "-81.87899780273438", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lakeland", + "scheduled_service": "no", + "gps_code": "40FD", + "local_code": "40FD" + }, + { + "id": "10915", + "ident": "40FL", + "type": "closed", + "name": "Fred Babcock Airport", + "latitude_deg": "26.885099", + "longitude_deg": "-81.751198", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Punta Gorda", + "scheduled_service": "no", + "keywords": "40FL" + }, + { + "id": "10916", + "ident": "40GA", + "type": "heliport", + "name": "Smyrna Hospital Heliport", + "latitude_deg": "33.859798431396484", + "longitude_deg": "-84.51380157470703", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Smyrna", + "scheduled_service": "no", + "gps_code": "40GA", + "local_code": "40GA" + }, + { + "id": "10917", + "ident": "40I", + "type": "small_airport", + "name": "Red Stewart Airfield", + "latitude_deg": "39.50529861450195", + "longitude_deg": "-84.12190246582031", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Waynesville", + "scheduled_service": "no", + "gps_code": "40I", + "local_code": "40I" + }, + { + "id": "350771", + "ident": "40ID", + "type": "small_airport", + "name": "Camas Creek Ranch Airport", + "latitude_deg": "43.314031", + "longitude_deg": "-114.905598", + "elevation_ft": "5075", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "40ID", + "local_code": "40ID" + }, + { + "id": "10918", + "ident": "40II", + "type": "closed", + "name": "Keener Field", + "latitude_deg": "41.351399", + "longitude_deg": "-84.816902", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Butler", + "scheduled_service": "no", + "keywords": "40II" + }, + { + "id": "10919", + "ident": "40IL", + "type": "small_airport", + "name": "Antique Aerodrome", + "latitude_deg": "41.00579833984375", + "longitude_deg": "-88.65809631347656", + "elevation_ft": "683", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Cornell", + "scheduled_service": "no", + "gps_code": "40IL", + "local_code": "40IL" + }, + { + "id": "10920", + "ident": "40IN", + "type": "small_airport", + "name": "Cherry Hill Airport", + "latitude_deg": "39.07419967651367", + "longitude_deg": "-86.1541976928711", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Freetown", + "scheduled_service": "no", + "gps_code": "40IN", + "local_code": "40IN" + }, + { + "id": "10921", + "ident": "40IS", + "type": "heliport", + "name": "Children's Memorial Hospital Heliport", + "latitude_deg": "41.92559814453125", + "longitude_deg": "-87.64640045166016", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "no", + "gps_code": "40IS", + "local_code": "40IS" + }, + { + "id": "10922", + "ident": "40KS", + "type": "small_airport", + "name": "Chanay Airport", + "latitude_deg": "38.540000915527344", + "longitude_deg": "-95.45079803466797", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Williamsburg", + "scheduled_service": "no", + "gps_code": "40KS", + "local_code": "40KS" + }, + { + "id": "10923", + "ident": "40KY", + "type": "small_airport", + "name": "Rooster Field", + "latitude_deg": "38.2934", + "longitude_deg": "-85.205002", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Shelbyville", + "scheduled_service": "no", + "gps_code": "40KY", + "local_code": "40KY" + }, + { + "id": "10924", + "ident": "40LA", + "type": "small_airport", + "name": "Woodsland Plantation Airport", + "latitude_deg": "32.34600067138672", + "longitude_deg": "-91.96959686279297", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "40LA", + "local_code": "40LA" + }, + { + "id": "350743", + "ident": "40LL", + "type": "heliport", + "name": "Kirby Medical Center Heliport", + "latitude_deg": "40.059988", + "longitude_deg": "-88.560035", + "elevation_ft": "673", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Monticello", + "scheduled_service": "no", + "gps_code": "40LL", + "local_code": "40LL" + }, + { + "id": "347511", + "ident": "40MA", + "type": "heliport", + "name": "Lowell General Hospital Heliport", + "latitude_deg": "42.648141", + "longitude_deg": "-71.34294", + "elevation_ft": "143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Lowell", + "scheduled_service": "no", + "gps_code": "40MA", + "local_code": "40MA" + }, + { + "id": "45456", + "ident": "40ME", + "type": "small_airport", + "name": "Tib Field", + "latitude_deg": "44.107519", + "longitude_deg": "-70.956454", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Fryeburg", + "scheduled_service": "no", + "local_code": "40ME" + }, + { + "id": "10925", + "ident": "40MN", + "type": "small_airport", + "name": "Turner Field", + "latitude_deg": "43.866600036621094", + "longitude_deg": "-95.01419830322266", + "elevation_ft": "1410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Bingham Lake", + "scheduled_service": "no", + "gps_code": "40MN", + "local_code": "40MN" + }, + { + "id": "10926", + "ident": "40MO", + "type": "closed", + "name": "Louise's Strip", + "latitude_deg": "39.422798", + "longitude_deg": "-94.8377", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Weston", + "scheduled_service": "no", + "keywords": "40MO" + }, + { + "id": "322249", + "ident": "40MT", + "type": "small_airport", + "name": "Silver Creek Airport", + "latitude_deg": "46.706601", + "longitude_deg": "-112.06909", + "elevation_ft": "3860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Helena", + "scheduled_service": "no", + "gps_code": "40MT", + "local_code": "40MT", + "keywords": "https://web.archive.org/web/20150924110614/http://www.airnav.com/airport/40MT" + }, + { + "id": "10927", + "ident": "40NC", + "type": "heliport", + "name": "Heavenly Flights Heliport", + "latitude_deg": "36.180301666259766", + "longitude_deg": "-81.5239028930664", + "elevation_ft": "2474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Boone", + "scheduled_service": "no", + "gps_code": "40NC", + "local_code": "40NC" + }, + { + "id": "10928", + "ident": "40ND", + "type": "heliport", + "name": "Gorder Farm Heliport", + "latitude_deg": "46.384700775146484", + "longitude_deg": "-96.82260131835938", + "elevation_ft": "951", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Galchutt", + "scheduled_service": "no", + "gps_code": "40ND", + "local_code": "40ND" + }, + { + "id": "10929", + "ident": "40NE", + "type": "small_airport", + "name": "Landgren Ranch Airport", + "latitude_deg": "41.974998474121094", + "longitude_deg": "-98.51589965820312", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Bartlett", + "scheduled_service": "no", + "gps_code": "40NE", + "local_code": "40NE" + }, + { + "id": "10930", + "ident": "40NJ", + "type": "heliport", + "name": "Osterman Heliport", + "latitude_deg": "40.48619842529297", + "longitude_deg": "-74.73570251464844", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Neshanic", + "scheduled_service": "no", + "gps_code": "40NJ", + "local_code": "40NJ" + }, + { + "id": "345603", + "ident": "40NK", + "type": "heliport", + "name": "Central Government Center Heliport", + "latitude_deg": "38.138906", + "longitude_deg": "-85.62941", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "40NK", + "local_code": "40NK" + }, + { + "id": "10931", + "ident": "40NY", + "type": "closed", + "name": "Entenmann's Heliport", + "latitude_deg": "40.765724", + "longitude_deg": "-73.265072", + "elevation_ft": "81", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Bay Shore", + "scheduled_service": "no", + "keywords": "40NY" + }, + { + "id": "10932", + "ident": "40OH", + "type": "small_airport", + "name": "Bucks Airport", + "latitude_deg": "41.450479", + "longitude_deg": "-81.234512", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Newbury Township", + "scheduled_service": "no", + "gps_code": "40OH", + "local_code": "40OH" + }, + { + "id": "10933", + "ident": "40OI", + "type": "small_airport", + "name": "M.C.R. Airport", + "latitude_deg": "41.06169891357422", + "longitude_deg": "-81.98359680175781", + "elevation_ft": "1155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lodi", + "scheduled_service": "no", + "gps_code": "40OI", + "local_code": "40OI" + }, + { + "id": "10934", + "ident": "40OK", + "type": "small_airport", + "name": "Hilltop Airport", + "latitude_deg": "36.1161003112793", + "longitude_deg": "-96.53810119628906", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oilton", + "scheduled_service": "no", + "gps_code": "40OK", + "local_code": "40OK" + }, + { + "id": "10935", + "ident": "40OR", + "type": "heliport", + "name": "St Anthony's Hospital Heliport", + "latitude_deg": "45.67290115356445", + "longitude_deg": "-118.7699966430664", + "elevation_ft": "1145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Pendleton", + "scheduled_service": "no", + "gps_code": "40OR", + "local_code": "40OR" + }, + { + "id": "10936", + "ident": "40PA", + "type": "heliport", + "name": "Specialty Records Heliport", + "latitude_deg": "41.45899963378906", + "longitude_deg": "-75.58100128173828", + "elevation_ft": "913", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Olyphant", + "scheduled_service": "no", + "gps_code": "40PA", + "local_code": "40PA" + }, + { + "id": "45948", + "ident": "40PN", + "type": "small_airport", + "name": "Eagles Mere Field Airport", + "latitude_deg": "41.391438", + "longitude_deg": "-76.611179", + "elevation_ft": "1900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Muncy Valley", + "scheduled_service": "no", + "gps_code": "40PN", + "local_code": "40PN" + }, + { + "id": "10937", + "ident": "40TA", + "type": "small_airport", + "name": "Miles Field", + "latitude_deg": "31.312999725341797", + "longitude_deg": "-96.22049713134766", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jewett", + "scheduled_service": "no", + "gps_code": "40TA", + "local_code": "40TA" + }, + { + "id": "10938", + "ident": "40TE", + "type": "small_airport", + "name": "Sybert Farm Airport", + "latitude_deg": "30.789100646972656", + "longitude_deg": "-97.65499877929688", + "elevation_ft": "841", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jarrell", + "scheduled_service": "no", + "gps_code": "40TE", + "local_code": "40TE" + }, + { + "id": "329972", + "ident": "40TN", + "type": "small_airport", + "name": "Cloud 9 Aerodrome", + "latitude_deg": "36.347471", + "longitude_deg": "-83.267349", + "elevation_ft": "1090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Bean Station", + "scheduled_service": "no", + "gps_code": "40TN", + "local_code": "40TN" + }, + { + "id": "10939", + "ident": "40TS", + "type": "closed", + "name": "Square K Airport", + "latitude_deg": "31.7724", + "longitude_deg": "-97.132201", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "West", + "scheduled_service": "no", + "keywords": "40TS" + }, + { + "id": "10940", + "ident": "40TX", + "type": "heliport", + "name": "Tgp 25 Heliport", + "latitude_deg": "30.3218994140625", + "longitude_deg": "-95.1615982055664", + "elevation_ft": "163", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "40TX", + "local_code": "40TX" + }, + { + "id": "10941", + "ident": "40VA", + "type": "heliport", + "name": "Sovah Health Martinsville Heliport", + "latitude_deg": "36.699846", + "longitude_deg": "-79.866259", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Martinsville", + "scheduled_service": "no", + "gps_code": "40VA", + "local_code": "40VA", + "keywords": "Martinsville/Henry County Memorial Hospital" + }, + { + "id": "10942", + "ident": "40WA", + "type": "heliport", + "name": "Signal Peak Lookout Heliport", + "latitude_deg": "46.23320007324219", + "longitude_deg": "-121.13500213623047", + "elevation_ft": "5111", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "White Swan", + "scheduled_service": "no", + "gps_code": "40WA", + "local_code": "40WA" + }, + { + "id": "10943", + "ident": "40WI", + "type": "small_airport", + "name": "Schubert Airstrip", + "latitude_deg": "44.05830001831055", + "longitude_deg": "-91.43070220947266", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Centerville", + "scheduled_service": "no", + "gps_code": "40WI", + "local_code": "40WI" + }, + { + "id": "325805", + "ident": "40WV", + "type": "heliport", + "name": "Weirton Medical Center Heliport", + "latitude_deg": "40.393778", + "longitude_deg": "-80.527402", + "elevation_ft": "1203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Weirton", + "scheduled_service": "no", + "gps_code": "40WV", + "local_code": "40WV" + }, + { + "id": "46293", + "ident": "40X", + "type": "closed", + "name": "Hound Run Airport", + "latitude_deg": "29.521544", + "longitude_deg": "-96.936925", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hallettsville", + "scheduled_service": "no", + "local_code": "40X", + "keywords": "40X, XA40" + }, + { + "id": "351613", + "ident": "40XA", + "type": "heliport", + "name": "Lone Star Heliport", + "latitude_deg": "29.76583", + "longitude_deg": "-95.398444", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "40XA", + "local_code": "40XA" + }, + { + "id": "10944", + "ident": "40XS", + "type": "small_airport", + "name": "Hank Sasser Airport at Breakaway", + "latitude_deg": "30.51768", + "longitude_deg": "-97.780865", + "elevation_ft": "897", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cedar Park", + "scheduled_service": "no", + "gps_code": "40XS", + "local_code": "40XS" + }, + { + "id": "10945", + "ident": "41AK", + "type": "small_airport", + "name": "Settlers Bay Airstrip", + "latitude_deg": "61.5009002686", + "longitude_deg": "-149.639694214", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "41AK", + "local_code": "41AK" + }, + { + "id": "330460", + "ident": "41AL", + "type": "heliport", + "name": "UAB Hospital/Gardendale Fed Heliport", + "latitude_deg": "33.6484", + "longitude_deg": "-86.8189", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Gardendale", + "scheduled_service": "no", + "gps_code": "41AL", + "local_code": "41AL" + }, + { + "id": "10946", + "ident": "41AR", + "type": "small_airport", + "name": "Ashworth Airport", + "latitude_deg": "34.12329864501953", + "longitude_deg": "-93.34970092773438", + "elevation_ft": "501", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Arkadelphia", + "scheduled_service": "no", + "gps_code": "41AR", + "local_code": "41AR" + }, + { + "id": "10947", + "ident": "41AZ", + "type": "small_airport", + "name": "Ak Chin Community Airfield", + "latitude_deg": "32.991601", + "longitude_deg": "-112.02364", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Maricopa", + "scheduled_service": "no", + "gps_code": "41AZ", + "local_code": "41AZ" + }, + { + "id": "10948", + "ident": "41C", + "type": "small_airport", + "name": "Calkins Field", + "latitude_deg": "42.691605", + "longitude_deg": "-85.647727", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Wayland", + "scheduled_service": "no", + "local_code": "41C" + }, + { + "id": "10949", + "ident": "41CA", + "type": "small_airport", + "name": "Silver Creek Ranch Airport", + "latitude_deg": "40.3176", + "longitude_deg": "-123.253998", + "elevation_ft": "2511", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Silver Flat", + "scheduled_service": "no", + "gps_code": "41CA", + "local_code": "41CA" + }, + { + "id": "10950", + "ident": "41CO", + "type": "small_airport", + "name": "Flying Dog Ranch Airstrip", + "latitude_deg": "39.971111", + "longitude_deg": "-107.611111", + "elevation_ft": "7020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Meeker", + "scheduled_service": "no", + "gps_code": "41CO", + "local_code": "41CO" + }, + { + "id": "10951", + "ident": "41FD", + "type": "heliport", + "name": "Rotunda Heliport", + "latitude_deg": "26.89579963684082", + "longitude_deg": "-82.24169921875", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Placida", + "scheduled_service": "no", + "gps_code": "41FD", + "local_code": "41FD" + }, + { + "id": "10952", + "ident": "41FL", + "type": "heliport", + "name": "Southern Machine & Steel Yard Heliport", + "latitude_deg": "26.634199142456055", + "longitude_deg": "-81.83399963378906", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Myers", + "scheduled_service": "no", + "gps_code": "41FL", + "local_code": "41FL" + }, + { + "id": "10953", + "ident": "41G", + "type": "small_airport", + "name": "University Airpark", + "latitude_deg": "42.840301513671875", + "longitude_deg": "-84.4791030883789", + "elevation_ft": "856", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Bath", + "scheduled_service": "no", + "gps_code": "41G", + "local_code": "41G" + }, + { + "id": "10954", + "ident": "41GA", + "type": "heliport", + "name": "Falcons Nest Heliport", + "latitude_deg": "33.538137", + "longitude_deg": "-84.346403", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Jonesboro", + "scheduled_service": "no", + "gps_code": "41GA", + "local_code": "41GA", + "keywords": "Clayton PD Heliport" + }, + { + "id": "45396", + "ident": "41ID", + "type": "small_airport", + "name": "Black'S Airfield", + "latitude_deg": "43.471383", + "longitude_deg": "-116.326417", + "elevation_ft": "2788", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Kuna", + "scheduled_service": "no", + "gps_code": "41ID", + "local_code": "41ID" + }, + { + "id": "346645", + "ident": "41IG", + "type": "small_airport", + "name": "Parker Field", + "latitude_deg": "39.972549", + "longitude_deg": "-86.997578", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Crawfordsville", + "scheduled_service": "no", + "gps_code": "41IG", + "local_code": "41IG" + }, + { + "id": "10955", + "ident": "41IL", + "type": "closed", + "name": "Alcock Restricted Landing Area", + "latitude_deg": "42.065078", + "longitude_deg": "-89.038869", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lindenwood", + "scheduled_service": "no", + "keywords": "41IL" + }, + { + "id": "10956", + "ident": "41IN", + "type": "heliport", + "name": "Professional Arts Building Heliport", + "latitude_deg": "38.30030059814453", + "longitude_deg": "-85.83580017089844", + "elevation_ft": "512", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "New Albany", + "scheduled_service": "no", + "gps_code": "41IN", + "local_code": "41IN" + }, + { + "id": "10957", + "ident": "41IS", + "type": "small_airport", + "name": "Rees Field", + "latitude_deg": "41.204498291015625", + "longitude_deg": "-88.80339813232422", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Grand Ridge", + "scheduled_service": "no", + "gps_code": "41IS", + "local_code": "41IS" + }, + { + "id": "10958", + "ident": "41KS", + "type": "small_airport", + "name": "Flying Z Ranch Airport", + "latitude_deg": "38.73550033569336", + "longitude_deg": "-94.79730224609375", + "elevation_ft": "1075", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Spring Hill", + "scheduled_service": "no", + "gps_code": "41KS", + "local_code": "41KS" + }, + { + "id": "10959", + "ident": "41KY", + "type": "heliport", + "name": "UofL Health - Jewish Hospital Heliport", + "latitude_deg": "38.250187", + "longitude_deg": "-85.750839", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "41KY", + "local_code": "41KY" + }, + { + "id": "46012", + "ident": "41LA", + "type": "heliport", + "name": "Metro Aviation Heliport", + "latitude_deg": "32.536389", + "longitude_deg": "-93.76", + "elevation_ft": "158", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Shreveport", + "scheduled_service": "no", + "gps_code": "41LA", + "local_code": "41LA", + "keywords": "41LA" + }, + { + "id": "45470", + "ident": "41MA", + "type": "heliport", + "name": "Haney Heliport", + "latitude_deg": "41.590556", + "longitude_deg": "-70.474963", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Mashpee", + "scheduled_service": "no", + "gps_code": "41MA", + "local_code": "41MA" + }, + { + "id": "327284", + "ident": "41MI", + "type": "heliport", + "name": "Sturgis Hospital Heliport", + "latitude_deg": "41.795308", + "longitude_deg": "-85.406566", + "elevation_ft": "921", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Stugis", + "scheduled_service": "no", + "gps_code": "41MI", + "local_code": "41MI" + }, + { + "id": "10961", + "ident": "41MN", + "type": "closed", + "name": "Shannon Field", + "latitude_deg": "45.426899", + "longitude_deg": "-96.5895", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Clinton", + "scheduled_service": "no", + "keywords": "41MN" + }, + { + "id": "10962", + "ident": "41MO", + "type": "small_airport", + "name": "Textor Airport", + "latitude_deg": "37.36090087890625", + "longitude_deg": "-93.49579620361328", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Willard", + "scheduled_service": "no", + "gps_code": "41MO", + "local_code": "41MO" + }, + { + "id": "430412", + "ident": "41MS", + "type": "small_airport", + "name": "Dixie Dusters Airport", + "latitude_deg": "33.523339", + "longitude_deg": "-90.362093", + "elevation_ft": "126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Itta Bena", + "scheduled_service": "no", + "gps_code": "41MS", + "local_code": "41MS" + }, + { + "id": "45516", + "ident": "41MT", + "type": "small_airport", + "name": "R & R Field", + "latitude_deg": "48.08715", + "longitude_deg": "-116.046267", + "elevation_ft": "2274", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Heron", + "scheduled_service": "no", + "gps_code": "41MT", + "local_code": "41MT" + }, + { + "id": "10963", + "ident": "41NC", + "type": "small_airport", + "name": "Sloop Airport", + "latitude_deg": "35.52180099487305", + "longitude_deg": "-80.52200317382812", + "elevation_ft": "794", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Kannapolis", + "scheduled_service": "no", + "gps_code": "41NC", + "local_code": "41NC" + }, + { + "id": "346189", + "ident": "41ND", + "type": "small_airport", + "name": "Hill Airport", + "latitude_deg": "48.140511", + "longitude_deg": "-101.147367", + "elevation_ft": "1533", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Minot", + "scheduled_service": "no", + "gps_code": "41ND", + "local_code": "41ND" + }, + { + "id": "10964", + "ident": "41NE", + "type": "small_airport", + "name": "Vandersnick Airport", + "latitude_deg": "42.155601501464844", + "longitude_deg": "-98.50039672851562", + "elevation_ft": "1990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Ewing", + "scheduled_service": "no", + "gps_code": "41NE", + "local_code": "41NE" + }, + { + "id": "324573", + "ident": "41NH", + "type": "heliport", + "name": "Upper Connecticut Vally Hospital Heliport", + "latitude_deg": "44.903922", + "longitude_deg": "-71.481517", + "elevation_ft": "1101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Colebrook", + "scheduled_service": "no", + "gps_code": "41NH", + "local_code": "41NH" + }, + { + "id": "10965", + "ident": "41NJ", + "type": "heliport", + "name": "Meadowlands Hospital Medical Center Heliport", + "latitude_deg": "40.79180145263672", + "longitude_deg": "-74.07240295410156", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Secaucus", + "scheduled_service": "no", + "gps_code": "41NJ", + "local_code": "41NJ" + }, + { + "id": "299708", + "ident": "41NK", + "type": "small_airport", + "name": "Winchell Mountain Airport", + "latitude_deg": "41.947778", + "longitude_deg": "-73.518055", + "elevation_ft": "1141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Millerton", + "scheduled_service": "no", + "gps_code": "41NK", + "local_code": "41NK" + }, + { + "id": "10966", + "ident": "41NY", + "type": "small_airport", + "name": "Bonebender Airport", + "latitude_deg": "44.312400817871094", + "longitude_deg": "-73.38490295410156", + "elevation_ft": "336", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Essex", + "scheduled_service": "no", + "gps_code": "41NY", + "local_code": "41NY" + }, + { + "id": "10967", + "ident": "41OH", + "type": "closed", + "name": "Sleepy Hollow Airport", + "latitude_deg": "40.783699", + "longitude_deg": "-81.098999", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Minerva", + "scheduled_service": "no", + "keywords": "41OH" + }, + { + "id": "10968", + "ident": "41OI", + "type": "heliport", + "name": "Mansfield General Hospital Heliport", + "latitude_deg": "40.752601623535156", + "longitude_deg": "-82.5281982421875", + "elevation_ft": "1335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mansfield", + "scheduled_service": "no", + "gps_code": "41OI", + "local_code": "41OI" + }, + { + "id": "10969", + "ident": "41OK", + "type": "heliport", + "name": "KOCO TV Heliport", + "latitude_deg": "35.563145", + "longitude_deg": "-97.488636", + "elevation_ft": "1163", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "gps_code": "41OK", + "local_code": "41OK", + "keywords": "5 Alive" + }, + { + "id": "10970", + "ident": "41OR", + "type": "heliport", + "name": "McKenzie-Willamette Medical Center Heliport", + "latitude_deg": "44.053657", + "longitude_deg": "-123.003597", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "41OR", + "local_code": "41OR" + }, + { + "id": "10971", + "ident": "41PA", + "type": "small_airport", + "name": "Deitch Airport", + "latitude_deg": "40.25790023803711", + "longitude_deg": "-77.0813980102539", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "New Kingstown", + "scheduled_service": "no", + "gps_code": "41PA", + "local_code": "41PA" + }, + { + "id": "10972", + "ident": "41PN", + "type": "heliport", + "name": "Decarbo Ambulance Service Heliport", + "latitude_deg": "40.9901008605957", + "longitude_deg": "-80.33869934082031", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "New Castle", + "scheduled_service": "no", + "gps_code": "41PN", + "local_code": "41PN" + }, + { + "id": "10973", + "ident": "41TA", + "type": "small_airport", + "name": "Circle P Ranch Airport", + "latitude_deg": "32.23731", + "longitude_deg": "-97.8707", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bluff Dale", + "scheduled_service": "no", + "gps_code": "41TA", + "local_code": "41TA" + }, + { + "id": "10974", + "ident": "41TE", + "type": "heliport", + "name": "South Texas Veterans Health Care Heliport", + "latitude_deg": "30.018286", + "longitude_deg": "-99.11432", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kerrville", + "scheduled_service": "no", + "gps_code": "41TE", + "local_code": "41TE", + "keywords": "VAMC Heliport" + }, + { + "id": "10975", + "ident": "41TN", + "type": "small_airport", + "name": "Stonewall Airpark", + "latitude_deg": "35.90079879760742", + "longitude_deg": "-86.20719909667969", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "41TN", + "local_code": "41TN" + }, + { + "id": "10976", + "ident": "41TS", + "type": "small_airport", + "name": "Flying T Ranch Airport", + "latitude_deg": "33.37839889526367", + "longitude_deg": "-96.44830322265625", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Westminster", + "scheduled_service": "no", + "gps_code": "41TS", + "local_code": "41TS" + }, + { + "id": "10977", + "ident": "41TX", + "type": "small_airport", + "name": "Henington Airport", + "latitude_deg": "33.37480163574219", + "longitude_deg": "-96.08219909667969", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wolfe City", + "scheduled_service": "no", + "gps_code": "41TX", + "local_code": "41TX" + }, + { + "id": "10978", + "ident": "41VA", + "type": "heliport", + "name": "Brown's Island Heliport", + "latitude_deg": "37.5343017578125", + "longitude_deg": "-77.443603515625", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "41VA", + "local_code": "41VA" + }, + { + "id": "10979", + "ident": "41WA", + "type": "heliport", + "name": "Central Washington Hospital Heliport", + "latitude_deg": "47.407198", + "longitude_deg": "-120.32121", + "elevation_ft": "878", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Wenatchee", + "scheduled_service": "no", + "gps_code": "41WA", + "local_code": "41WA" + }, + { + "id": "10980", + "ident": "41WI", + "type": "small_airport", + "name": "Paddock Field", + "latitude_deg": "42.73860168457031", + "longitude_deg": "-88.57980346679688", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Elkhorn", + "scheduled_service": "no", + "gps_code": "41WI", + "local_code": "41WI" + }, + { + "id": "322191", + "ident": "41XA", + "type": "heliport", + "name": "Saber Heliport", + "latitude_deg": "29.831536", + "longitude_deg": "-98.462468", + "elevation_ft": "1174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Spring Branch", + "scheduled_service": "no", + "gps_code": "41XA", + "local_code": "41XA" + }, + { + "id": "10981", + "ident": "41XS", + "type": "small_airport", + "name": "Macho Grande Airport", + "latitude_deg": "30.534482", + "longitude_deg": "-97.419849", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Taylor", + "scheduled_service": "no", + "gps_code": "41XS", + "local_code": "41XS" + }, + { + "id": "10982", + "ident": "42AK", + "type": "closed", + "name": "Wicker Airport", + "latitude_deg": "61.568505", + "longitude_deg": "-149.484491", + "elevation_ft": "314", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "keywords": "42AK" + }, + { + "id": "323160", + "ident": "42AL", + "type": "heliport", + "name": "Choctaw General Hospital Heliport", + "latitude_deg": "32.093361", + "longitude_deg": "-88.210349", + "elevation_ft": "133", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Butler", + "scheduled_service": "no", + "gps_code": "42AL", + "local_code": "42AL" + }, + { + "id": "10983", + "ident": "42AR", + "type": "heliport", + "name": "Baxter County Sheriffs Heliport", + "latitude_deg": "36.33325", + "longitude_deg": "-92.3874", + "elevation_ft": "773", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Mountain Home", + "scheduled_service": "no", + "gps_code": "42AR", + "local_code": "42AR" + }, + { + "id": "10984", + "ident": "42AZ", + "type": "closed", + "name": "Orme School Airport", + "latitude_deg": "34.429566", + "longitude_deg": "-112.062693", + "elevation_ft": "3934", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mayer", + "scheduled_service": "no", + "gps_code": "42AZ", + "local_code": "42AZ" + }, + { + "id": "10985", + "ident": "42B", + "type": "small_airport", + "name": "Goodspeed Airport", + "latitude_deg": "41.446072", + "longitude_deg": "-72.45698", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "East Haddam", + "scheduled_service": "no", + "local_code": "42B" + }, + { + "id": "10986", + "ident": "42C", + "type": "small_airport", + "name": "White Cloud Airport", + "latitude_deg": "43.55970001220703", + "longitude_deg": "-85.77420043945312", + "elevation_ft": "914", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "White Cloud", + "scheduled_service": "no", + "gps_code": "42C", + "local_code": "42C" + }, + { + "id": "10987", + "ident": "42CA", + "type": "heliport", + "name": "John F Kennedy Memorial Hospital Heliport", + "latitude_deg": "33.705854", + "longitude_deg": "-116.236761", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Indio", + "scheduled_service": "no", + "gps_code": "42CA", + "local_code": "42CA" + }, + { + "id": "10988", + "ident": "42CL", + "type": "heliport", + "name": "Costa Mesa Police Department Heliport", + "latitude_deg": "33.66310119628906", + "longitude_deg": "-117.90399932861328", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Costa Mesa", + "scheduled_service": "no", + "gps_code": "42CL", + "local_code": "42CL" + }, + { + "id": "10989", + "ident": "42CN", + "type": "small_airport", + "name": "Peg Field", + "latitude_deg": "36.70909881591797", + "longitude_deg": "-119.40499877929688", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Reedley", + "scheduled_service": "no", + "gps_code": "42CN", + "local_code": "42CN" + }, + { + "id": "10990", + "ident": "42CO", + "type": "heliport", + "name": "Ptarmigan Heliport", + "latitude_deg": "39.6875", + "longitude_deg": "-105.39600372314453", + "elevation_ft": "8198", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Evergreen", + "scheduled_service": "no", + "gps_code": "42CO", + "local_code": "42CO" + }, + { + "id": "10991", + "ident": "42FD", + "type": "heliport", + "name": "Palm Beach Community College Heliport", + "latitude_deg": "26.610700607299805", + "longitude_deg": "-80.08760070800781", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Worth", + "scheduled_service": "no", + "gps_code": "42FD", + "local_code": "42FD" + }, + { + "id": "10992", + "ident": "42FL", + "type": "seaplane_base", + "name": "Plantation Key Seaplane Base", + "latitude_deg": "24.971200942993164", + "longitude_deg": "-80.59559631347656", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Marathon", + "scheduled_service": "no", + "gps_code": "42FL", + "local_code": "42FL" + }, + { + "id": "10993", + "ident": "42GA", + "type": "heliport", + "name": "Matthews Heliport", + "latitude_deg": "33.980899810791016", + "longitude_deg": "-84.56330108642578", + "elevation_ft": "1167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Marietta", + "scheduled_service": "no", + "gps_code": "42GA", + "local_code": "42GA" + }, + { + "id": "345322", + "ident": "42IA", + "type": "small_airport", + "name": "Lakeport Farms Airport", + "latitude_deg": "42.261494", + "longitude_deg": "-96.289523", + "elevation_ft": "1077", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Salix", + "scheduled_service": "no", + "gps_code": "42IA", + "local_code": "42IA" + }, + { + "id": "10994", + "ident": "42II", + "type": "closed", + "name": "Norm's Airpark", + "latitude_deg": "41.684502", + "longitude_deg": "-86.767799", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "La Porte", + "scheduled_service": "no", + "keywords": "42II" + }, + { + "id": "10995", + "ident": "42IL", + "type": "heliport", + "name": "Lynn Heliport", + "latitude_deg": "42.20330047607422", + "longitude_deg": "-88.49749755859375", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Union", + "scheduled_service": "no", + "gps_code": "42IL", + "local_code": "42IL" + }, + { + "id": "10996", + "ident": "42IN", + "type": "closed", + "name": "Mikelsons Heliport", + "latitude_deg": "39.895", + "longitude_deg": "-86.283602", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "keywords": "42IN" + }, + { + "id": "322486", + "ident": "42KS", + "type": "small_airport", + "name": "Farney Field Airport", + "latitude_deg": "37.01069", + "longitude_deg": "-98.454528", + "elevation_ft": "1345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Kiowa", + "scheduled_service": "no", + "gps_code": "42KS", + "local_code": "42KS" + }, + { + "id": "10997", + "ident": "42KY", + "type": "small_airport", + "name": "Pirates Cove Airport", + "latitude_deg": "36.77640151977539", + "longitude_deg": "-88.22229766845703", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Benton", + "scheduled_service": "no", + "gps_code": "42KY", + "local_code": "42KY" + }, + { + "id": "10998", + "ident": "42L", + "type": "heliport", + "name": "Naa Long Beach Port Helistop", + "latitude_deg": "33.76470184326172", + "longitude_deg": "-118.19999694824219", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no", + "gps_code": "42L", + "local_code": "42L" + }, + { + "id": "10999", + "ident": "42LA", + "type": "heliport", + "name": "Ochsner St Mary Hospital Heliport", + "latitude_deg": "29.708624", + "longitude_deg": "-91.200909", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Morgan City", + "scheduled_service": "no", + "gps_code": "42LA", + "local_code": "42LA", + "keywords": "Lakewood Hospital" + }, + { + "id": "11000", + "ident": "42MA", + "type": "heliport", + "name": "Worcester Medical Center Heliport", + "latitude_deg": "42.25429916381836", + "longitude_deg": "-71.79769897460938", + "elevation_ft": "469", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Worcester", + "scheduled_service": "no", + "gps_code": "42MA", + "local_code": "42MA" + }, + { + "id": "11001", + "ident": "42MD", + "type": "small_airport", + "name": "Herrington Field", + "latitude_deg": "39.46829987", + "longitude_deg": "-79.4253006", + "elevation_ft": "2470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Oakland", + "scheduled_service": "no", + "gps_code": "42MD", + "local_code": "42MD" + }, + { + "id": "11002", + "ident": "42MI", + "type": "closed", + "name": "Midway Airport", + "latitude_deg": "42.215858", + "longitude_deg": "-84.806313", + "elevation_ft": "963", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Albion", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Midway_Airport_(Michigan)", + "keywords": "42MI" + }, + { + "id": "11003", + "ident": "42MN", + "type": "small_airport", + "name": "Kral's Personal Use Landing Field", + "latitude_deg": "45.08409881591797", + "longitude_deg": "-93.56439971923828", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Corcoran", + "scheduled_service": "no", + "gps_code": "42MN", + "local_code": "42MN" + }, + { + "id": "11004", + "ident": "42MO", + "type": "small_airport", + "name": "Aire Parque Airport", + "latitude_deg": "38.12310028076172", + "longitude_deg": "-90.38899993896484", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Festus", + "scheduled_service": "no", + "gps_code": "42MO", + "local_code": "42MO" + }, + { + "id": "45495", + "ident": "42MS", + "type": "heliport", + "name": "Oktibbeha County Hospital Heliport", + "latitude_deg": "33.4752306", + "longitude_deg": "-88.8209694", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Starkville", + "scheduled_service": "no", + "gps_code": "42MS", + "local_code": "42MS" + }, + { + "id": "11005", + "ident": "42N", + "type": "closed", + "name": "Double JJ Resort Ranch Airport", + "latitude_deg": "43.516899", + "longitude_deg": "-86.373299", + "elevation_ft": "689", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Rothbury", + "scheduled_service": "no", + "keywords": "42N" + }, + { + "id": "11006", + "ident": "42NC", + "type": "small_airport", + "name": "Spring Paths Airport", + "latitude_deg": "35.957801818847656", + "longitude_deg": "-78.17060089111328", + "elevation_ft": "290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Spring Hope", + "scheduled_service": "no", + "gps_code": "42NC", + "local_code": "42NC" + }, + { + "id": "11007", + "ident": "42NE", + "type": "closed", + "name": "Packard Ranch Airport", + "latitude_deg": "41.43745", + "longitude_deg": "-101.678681", + "elevation_ft": "3524", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Arthur", + "scheduled_service": "no", + "keywords": "42NE" + }, + { + "id": "310041", + "ident": "42NH", + "type": "heliport", + "name": "Androscoggin Valley Hospital Helipad", + "latitude_deg": "44.48673", + "longitude_deg": "-71.15433", + "elevation_ft": "1183", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Berlin", + "scheduled_service": "no", + "gps_code": "42NH", + "local_code": "42NH" + }, + { + "id": "11008", + "ident": "42NJ", + "type": "heliport", + "name": "Inspira Medical Center, Inc / Elmer Hospital Heliport", + "latitude_deg": "39.589188", + "longitude_deg": "-75.1815278", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Elmer", + "scheduled_service": "no", + "gps_code": "42NJ", + "local_code": "42NJ", + "keywords": "Elmer Community Hospital" + }, + { + "id": "349879", + "ident": "42NR", + "type": "heliport", + "name": "Harnett Health Heliport", + "latitude_deg": "35.425961", + "longitude_deg": "-78.809454", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Lillington", + "scheduled_service": "no", + "gps_code": "42NR", + "local_code": "42NR" + }, + { + "id": "11009", + "ident": "42NY", + "type": "small_airport", + "name": "Walter's Field", + "latitude_deg": "42.66899871826172", + "longitude_deg": "-76.05619812011719", + "elevation_ft": "1560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "East Homer", + "scheduled_service": "no", + "gps_code": "42NY", + "local_code": "42NY" + }, + { + "id": "11010", + "ident": "42OH", + "type": "small_airport", + "name": "Dunn Field", + "latitude_deg": "41.15589904785156", + "longitude_deg": "-81.00399780273438", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Newton Falls", + "scheduled_service": "no", + "gps_code": "42OH", + "local_code": "42OH" + }, + { + "id": "11011", + "ident": "42OI", + "type": "heliport", + "name": "Stoney Creek Farm Heliport", + "latitude_deg": "40.0994987487793", + "longitude_deg": "-82.46540069580078", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Newark", + "scheduled_service": "no", + "gps_code": "42OI", + "local_code": "42OI" + }, + { + "id": "11012", + "ident": "42OK", + "type": "heliport", + "name": "Kwtv Heliport", + "latitude_deg": "35.547298431396484", + "longitude_deg": "-97.49559783935547", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "gps_code": "42OK", + "local_code": "42OK" + }, + { + "id": "11013", + "ident": "42OR", + "type": "small_airport", + "name": "Shotgun Ranch Airstrip", + "latitude_deg": "44.13420104980469", + "longitude_deg": "-120.322998046875", + "elevation_ft": "3430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Post", + "scheduled_service": "no", + "gps_code": "42OR", + "local_code": "42OR" + }, + { + "id": "22658", + "ident": "42PA", + "type": "heliport", + "name": "Ransome Heliport", + "latitude_deg": "40.022598", + "longitude_deg": "-75.585999", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Exton", + "scheduled_service": "no", + "gps_code": "42PA", + "local_code": "42PA", + "keywords": "N02, Keystone Heliport" + }, + { + "id": "11014", + "ident": "42PN", + "type": "heliport", + "name": "Allegheny General Hospital Emergency Heliport", + "latitude_deg": "40.45090103149414", + "longitude_deg": "-80.00060272216797", + "elevation_ft": "811", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pittsburgh", + "scheduled_service": "no", + "gps_code": "42PN", + "local_code": "42PN" + }, + { + "id": "345435", + "ident": "42SC", + "type": "small_airport", + "name": "Chicken Coop Airport", + "latitude_deg": "34.162866", + "longitude_deg": "-79.666066", + "elevation_ft": "74", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Florence", + "scheduled_service": "no", + "gps_code": "42SC", + "local_code": "42SC" + }, + { + "id": "11015", + "ident": "42TA", + "type": "heliport", + "name": "Rental Tools Heliport", + "latitude_deg": "29.7012996673584", + "longitude_deg": "-95.07830047607422", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "La Porte", + "scheduled_service": "no", + "gps_code": "42TA", + "local_code": "42TA" + }, + { + "id": "11016", + "ident": "42TE", + "type": "closed", + "name": "Ball Airport", + "latitude_deg": "28.881208", + "longitude_deg": "-97.020504", + "elevation_ft": "124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Victoria", + "scheduled_service": "no", + "keywords": "42TE" + }, + { + "id": "45790", + "ident": "42TN", + "type": "small_airport", + "name": "Oliver Landing Airport", + "latitude_deg": "36.411944", + "longitude_deg": "-88.265556", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "42TN", + "local_code": "42TN" + }, + { + "id": "11017", + "ident": "42TS", + "type": "heliport", + "name": "Papa Heliport", + "latitude_deg": "29.987699508666992", + "longitude_deg": "-95.35440063476562", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "42TS", + "local_code": "42TS" + }, + { + "id": "348554", + "ident": "42TT", + "type": "small_airport", + "name": "Duke International Airport", + "latitude_deg": "30.45562", + "longitude_deg": "-95.230785", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "42TT", + "local_code": "42TT" + }, + { + "id": "11018", + "ident": "42TX", + "type": "small_airport", + "name": "Magee Airport", + "latitude_deg": "33.31679916381836", + "longitude_deg": "-96.06690216064453", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wolfe City", + "scheduled_service": "no", + "gps_code": "42TX", + "local_code": "42TX" + }, + { + "id": "335866", + "ident": "42UT", + "type": "heliport", + "name": "Pluralsight Headquarters Heliport", + "latitude_deg": "40.486556", + "longitude_deg": "-111.889694", + "elevation_ft": "4738", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Draper", + "scheduled_service": "no", + "gps_code": "42UT", + "local_code": "42UT" + }, + { + "id": "11019", + "ident": "42VA", + "type": "small_airport", + "name": "Virginia Beach Airport", + "latitude_deg": "36.678979", + "longitude_deg": "-76.032677", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Virginia Beach", + "scheduled_service": "no", + "gps_code": "42VA", + "local_code": "42VA" + }, + { + "id": "327263", + "ident": "42VG", + "type": "heliport", + "name": "Sentara Princess Anne Heliport", + "latitude_deg": "36.77635", + "longitude_deg": "-76.099513", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Virginia Beach", + "scheduled_service": "no", + "gps_code": "42VG", + "local_code": "42VG" + }, + { + "id": "11020", + "ident": "42VT", + "type": "small_airport", + "name": "Frogs End Airport", + "latitude_deg": "44.36690139770508", + "longitude_deg": "-73.15019989013672", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Shelburne", + "scheduled_service": "no", + "gps_code": "42VT", + "local_code": "42VT" + }, + { + "id": "11021", + "ident": "42WA", + "type": "small_airport", + "name": "Sheffels Ranch Airport", + "latitude_deg": "47.81719970703125", + "longitude_deg": "-118.8010025024414", + "elevation_ft": "2222", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Wilbur", + "scheduled_service": "no", + "gps_code": "42WA", + "local_code": "42WA" + }, + { + "id": "11022", + "ident": "42WI", + "type": "heliport", + "name": "Rusk County Memorial Heliport", + "latitude_deg": "45.45439910888672", + "longitude_deg": "-91.11009979248047", + "elevation_ft": "1126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Ladysmith", + "scheduled_service": "no", + "gps_code": "42WI", + "local_code": "42WI" + }, + { + "id": "353032", + "ident": "42XA", + "type": "small_airport", + "name": "Skid Row Airpark", + "latitude_deg": "31.362276", + "longitude_deg": "-97.0903", + "elevation_ft": "472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Golinda", + "scheduled_service": "no", + "gps_code": "42XA", + "local_code": "42XA" + }, + { + "id": "45848", + "ident": "42XS", + "type": "small_airport", + "name": "Temple Ranch Airport", + "latitude_deg": "27.957444", + "longitude_deg": "-98.403889", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Freer", + "scheduled_service": "no", + "gps_code": "42XS", + "local_code": "42XS" + }, + { + "id": "11023", + "ident": "43AK", + "type": "small_airport", + "name": "Kalmbach Airport", + "latitude_deg": "61.600799560546875", + "longitude_deg": "-149.57899475097656", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "43AK", + "local_code": "43AK" + }, + { + "id": "323164", + "ident": "43AL", + "type": "heliport", + "name": "Flat Rock Community Club Heliport", + "latitude_deg": "34.769023", + "longitude_deg": "-85.69632", + "elevation_ft": "1289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Flat Rock", + "scheduled_service": "no", + "gps_code": "43AL", + "local_code": "43AL" + }, + { + "id": "11024", + "ident": "43AR", + "type": "small_airport", + "name": "Haigwood Landing Strip", + "latitude_deg": "35.61140060424805", + "longitude_deg": "-91.24140167236328", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "43AR", + "local_code": "43AR" + }, + { + "id": "45293", + "ident": "43AZ", + "type": "heliport", + "name": "MTAS 1 Heliport", + "latitude_deg": "33.400669", + "longitude_deg": "-113.229861", + "elevation_ft": "1184", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonopah", + "scheduled_service": "no", + "gps_code": "43AZ", + "local_code": "43AZ" + }, + { + "id": "11025", + "ident": "43CA", + "type": "closed", + "name": "Dick Taylor Airstrip", + "latitude_deg": "34.881901", + "longitude_deg": "-115.733002", + "elevation_ft": "2611", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Kelso", + "scheduled_service": "no", + "gps_code": "43CA", + "local_code": "43CA" + }, + { + "id": "11026", + "ident": "43CL", + "type": "small_airport", + "name": "Dick Dale Skyranch Airport", + "latitude_deg": "34.20610046386719", + "longitude_deg": "-115.99800109863281", + "elevation_ft": "1793", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Twentynine Palms", + "scheduled_service": "no", + "gps_code": "43CL", + "local_code": "43CL" + }, + { + "id": "11027", + "ident": "43CN", + "type": "closed", + "name": "Mazza Airport", + "latitude_deg": "38.1852", + "longitude_deg": "-122.601997", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Petaluma", + "scheduled_service": "no", + "keywords": "43CN" + }, + { + "id": "11028", + "ident": "43CO", + "type": "closed", + "name": "Kostroski Airport", + "latitude_deg": "39.364978", + "longitude_deg": "-104.677091", + "elevation_ft": "6700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Franktown", + "scheduled_service": "no", + "keywords": "43CO" + }, + { + "id": "353036", + "ident": "43FA", + "type": "heliport", + "name": "Air Eye Med Helistop", + "latitude_deg": "27.931176", + "longitude_deg": "-82.287834", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Brandon", + "scheduled_service": "no", + "gps_code": "43FA", + "local_code": "43FA" + }, + { + "id": "11029", + "ident": "43FD", + "type": "seaplane_base", + "name": "Cole's Seaplane Base", + "latitude_deg": "28.28773", + "longitude_deg": "-81.385705", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Kissimmee", + "scheduled_service": "no", + "gps_code": "43FD", + "local_code": "43FD" + }, + { + "id": "11030", + "ident": "43FL", + "type": "closed", + "name": "Fly'n R Ranch Airport", + "latitude_deg": "28.9842", + "longitude_deg": "-81.817001", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Umatilla", + "scheduled_service": "no", + "keywords": "43FL" + }, + { + "id": "11031", + "ident": "43G", + "type": "small_airport", + "name": "Belleville Airport", + "latitude_deg": "42.176700592", + "longitude_deg": "-83.5457992554", + "elevation_ft": "696", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Belleville", + "scheduled_service": "no", + "gps_code": "43G", + "local_code": "43G" + }, + { + "id": "11032", + "ident": "43GA", + "type": "heliport", + "name": "Piedmont Henry Hospital Heliport", + "latitude_deg": "33.513643", + "longitude_deg": "-84.228162", + "elevation_ft": "809", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Stockbridge", + "scheduled_service": "no", + "gps_code": "43GA", + "local_code": "43GA", + "keywords": "Henry Medical Center Inc" + }, + { + "id": "11033", + "ident": "43I", + "type": "seaplane_base", + "name": "Mississinewa Reservoir Landing Area Seaplane Base", + "latitude_deg": "40.70370101928711", + "longitude_deg": "-85.93250274658203", + "elevation_ft": "737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Peru", + "scheduled_service": "no", + "gps_code": "43I", + "local_code": "43I" + }, + { + "id": "45890", + "ident": "43IG", + "type": "small_airport", + "name": "Grayland Intergalactic Airport", + "latitude_deg": "46.801528", + "longitude_deg": "-124.072944", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Grayland", + "scheduled_service": "no", + "gps_code": "43IG", + "local_code": "43IG" + }, + { + "id": "11034", + "ident": "43II", + "type": "heliport", + "name": "Kirk Heliport", + "latitude_deg": "41.452301025390625", + "longitude_deg": "-87.31890106201172", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Merrillville", + "scheduled_service": "no", + "gps_code": "43II", + "local_code": "43II" + }, + { + "id": "345475", + "ident": "43IL", + "type": "heliport", + "name": "Vertiport Chicago Heliport", + "latitude_deg": "41.862142", + "longitude_deg": "-87.670249", + "elevation_ft": "594", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "no", + "gps_code": "43IL", + "local_code": "43IL" + }, + { + "id": "11035", + "ident": "43IN", + "type": "small_airport", + "name": "Hepler Airport", + "latitude_deg": "38.13750076293945", + "longitude_deg": "-87.67639923095703", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "St Wendel", + "scheduled_service": "no", + "gps_code": "43IN", + "local_code": "43IN" + }, + { + "id": "11036", + "ident": "43IS", + "type": "heliport", + "name": "Igoe Heliport", + "latitude_deg": "40.097801208496094", + "longitude_deg": "-88.42060089111328", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Seymour", + "scheduled_service": "no", + "gps_code": "43IS", + "local_code": "43IS" + }, + { + "id": "11037", + "ident": "43K", + "type": "small_airport", + "name": "Marion Municipal Airport", + "latitude_deg": "38.337501525878906", + "longitude_deg": "-96.99169921875", + "elevation_ft": "1390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "43K", + "local_code": "43K" + }, + { + "id": "11038", + "ident": "43KS", + "type": "small_airport", + "name": "Smith Airport", + "latitude_deg": "39.101898193359375", + "longitude_deg": "-96.41780090332031", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Manhattan", + "scheduled_service": "no", + "gps_code": "43KS", + "local_code": "43KS" + }, + { + "id": "11039", + "ident": "43KY", + "type": "heliport", + "name": "Wlky-Tv Studios Heliport", + "latitude_deg": "38.263099670410156", + "longitude_deg": "-85.71019744873047", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "43KY", + "local_code": "43KY" + }, + { + "id": "11040", + "ident": "43L", + "type": "heliport", + "name": "Van Nuys County Court Heliport", + "latitude_deg": "34.18330001831055", + "longitude_deg": "-118.447998046875", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "43L", + "local_code": "43L" + }, + { + "id": "45439", + "ident": "43LA", + "type": "small_airport", + "name": "Want's Ultralight Flightpark", + "latitude_deg": "32.747904", + "longitude_deg": "-93.872874", + "elevation_ft": "177", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Belcher", + "scheduled_service": "no", + "gps_code": "43LA", + "local_code": "43LA", + "keywords": "Slay's Airstrip" + }, + { + "id": "11042", + "ident": "43MI", + "type": "small_airport", + "name": "W Gladstone Airport", + "latitude_deg": "45.859100341796875", + "longitude_deg": "-87.1167984008789", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Gladstone", + "scheduled_service": "no", + "gps_code": "43MI", + "local_code": "43MI" + }, + { + "id": "344446", + "ident": "43MN", + "type": "small_airport", + "name": "Superior Aero Estates Airport", + "latitude_deg": "46.934031", + "longitude_deg": "-92.412775", + "elevation_ft": "1385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Saginaw", + "scheduled_service": "no", + "gps_code": "43MN", + "local_code": "43MN" + }, + { + "id": "11043", + "ident": "43MO", + "type": "small_airport", + "name": "Riordan Airport", + "latitude_deg": "38.78329849243164", + "longitude_deg": "-94.36830139160156", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Pleasant Hill", + "scheduled_service": "no", + "gps_code": "43MO", + "local_code": "43MO" + }, + { + "id": "11044", + "ident": "43NC", + "type": "small_airport", + "name": "Bahnson Airport", + "latitude_deg": "36.02080154418945", + "longitude_deg": "-80.51640319824219", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Mocksville", + "scheduled_service": "no", + "gps_code": "43NC", + "local_code": "43NC" + }, + { + "id": "11045", + "ident": "43NE", + "type": "small_airport", + "name": "Onion Crest Airpark", + "latitude_deg": "40.775001525878906", + "longitude_deg": "-99.15470123291016", + "elevation_ft": "2205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Riverdale", + "scheduled_service": "no", + "gps_code": "43NE", + "local_code": "43NE" + }, + { + "id": "328496", + "ident": "43NH", + "type": "heliport", + "name": "Trayport Heliport", + "latitude_deg": "43.223044", + "longitude_deg": "-70.831564", + "elevation_ft": "108", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Rollinsford", + "scheduled_service": "no", + "gps_code": "43NH", + "local_code": "43NH" + }, + { + "id": "11046", + "ident": "43NJ", + "type": "heliport", + "name": "Parlin East Heliport", + "latitude_deg": "40.45289993286133", + "longitude_deg": "-74.31289672851562", + "elevation_ft": "161", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Parlin", + "scheduled_service": "no", + "gps_code": "43NJ", + "local_code": "43NJ" + }, + { + "id": "329488", + "ident": "43NV", + "type": "small_airport", + "name": "Topaz Ranch Airport", + "latitude_deg": "38.72871", + "longitude_deg": "-119.466067", + "elevation_ft": "5066", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Wellington", + "scheduled_service": "no", + "gps_code": "43NV", + "local_code": "43NV" + }, + { + "id": "11047", + "ident": "43NY", + "type": "closed", + "name": "Watercolor Airport", + "latitude_deg": "42.784697", + "longitude_deg": "-74.802498", + "elevation_ft": "1993", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Cherry Valley", + "scheduled_service": "no", + "keywords": "43NY" + }, + { + "id": "45712", + "ident": "43OA", + "type": "small_airport", + "name": "Anderson Airfield", + "latitude_deg": "39.581422", + "longitude_deg": "-84.092783", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Waynesville", + "scheduled_service": "no", + "gps_code": "43OA", + "local_code": "43OA", + "keywords": "Bellbrook" + }, + { + "id": "11048", + "ident": "43OI", + "type": "small_airport", + "name": "Windswept Airport", + "latitude_deg": "41.198699951171875", + "longitude_deg": "-83.70079803466797", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "North Baltimore", + "scheduled_service": "no", + "gps_code": "43OI", + "local_code": "43OI" + }, + { + "id": "11049", + "ident": "43OK", + "type": "small_airport", + "name": "Biggs Skypatch Airport", + "latitude_deg": "35.66669845581055", + "longitude_deg": "-96.98359680175781", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Wellston", + "scheduled_service": "no", + "gps_code": "43OK", + "local_code": "43OK" + }, + { + "id": "11050", + "ident": "43OR", + "type": "small_airport", + "name": "Inspiration Airport", + "latitude_deg": "44.622655", + "longitude_deg": "-122.753742", + "elevation_ft": "3400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Bend", + "scheduled_service": "no", + "gps_code": "43OR", + "local_code": "43OR" + }, + { + "id": "11051", + "ident": "43PA", + "type": "small_airport", + "name": "Kolb Airport", + "latitude_deg": "40.160099029541016", + "longitude_deg": "-75.54630279541016", + "elevation_ft": "290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Spring City", + "scheduled_service": "no", + "gps_code": "43PA", + "local_code": "43PA" + }, + { + "id": "11052", + "ident": "43PN", + "type": "closed", + "name": "E L Gruber Heliport", + "latitude_deg": "40.233398", + "longitude_deg": "-75.644096", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pottstown", + "scheduled_service": "no", + "keywords": "43PN" + }, + { + "id": "11053", + "ident": "43TA", + "type": "closed", + "name": "Diamond Seven Ranch Airport", + "latitude_deg": "32.025151", + "longitude_deg": "-97.624411", + "elevation_ft": "797", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Morgan", + "scheduled_service": "no", + "gps_code": "43TA", + "local_code": "43TA" + }, + { + "id": "11054", + "ident": "43TE", + "type": "heliport", + "name": "Police Headquarters Heliport", + "latitude_deg": "29.765467", + "longitude_deg": "-95.371537", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "43TE", + "local_code": "43TE" + }, + { + "id": "45793", + "ident": "43TN", + "type": "small_airport", + "name": "Roseanne Airport", + "latitude_deg": "35.618056", + "longitude_deg": "-86.0025", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Morrison", + "scheduled_service": "no", + "gps_code": "43TN", + "local_code": "43TN" + }, + { + "id": "11055", + "ident": "43TS", + "type": "closed", + "name": "Fraser Farm Airport", + "latitude_deg": "32.5649", + "longitude_deg": "-95.465398", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lindale", + "scheduled_service": "no", + "keywords": "43TS" + }, + { + "id": "354636", + "ident": "43TT", + "type": "heliport", + "name": "Cook Children's North Campus Heliport", + "latitude_deg": "33.221358", + "longitude_deg": "-96.869695", + "elevation_ft": "592", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Prosper", + "scheduled_service": "no", + "gps_code": "43TT", + "local_code": "43TT" + }, + { + "id": "11056", + "ident": "43TX", + "type": "small_airport", + "name": "Mid-Valley Dusters Inc Airport", + "latitude_deg": "26.153099060058594", + "longitude_deg": "-98.13500213623047", + "elevation_ft": "91", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alamo", + "scheduled_service": "no", + "gps_code": "43TX", + "local_code": "43TX" + }, + { + "id": "11057", + "ident": "43VA", + "type": "heliport", + "name": "State Police Division Six Heliport", + "latitude_deg": "37.2775993347168", + "longitude_deg": "-80.12840270996094", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "43VA", + "local_code": "43VA" + }, + { + "id": "11058", + "ident": "43WA", + "type": "heliport", + "name": "Wilson Heliport", + "latitude_deg": "47.762298583984375", + "longitude_deg": "-122.15699768066406", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Woodinville", + "scheduled_service": "no", + "gps_code": "43WA", + "local_code": "43WA" + }, + { + "id": "11059", + "ident": "43WI", + "type": "small_airport", + "name": "Eagle Ridge Ultralightport", + "latitude_deg": "45.031106", + "longitude_deg": "-91.73124", + "elevation_ft": "1067", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Colfax", + "scheduled_service": "no", + "gps_code": "43WI", + "local_code": "43WI" + }, + { + "id": "340926", + "ident": "43XA", + "type": "small_airport", + "name": "Gulf Coast Aviation Airport", + "latitude_deg": "28.825625", + "longitude_deg": "-95.908217", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wadsworth", + "scheduled_service": "no", + "gps_code": "43XA", + "local_code": "43XA" + }, + { + "id": "11060", + "ident": "43XS", + "type": "heliport", + "name": "Tdcj/Southern Regional Medical Facility Heliport", + "latitude_deg": "29.425800323486328", + "longitude_deg": "-94.98100280761719", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Texas City", + "scheduled_service": "no", + "gps_code": "43XS", + "local_code": "43XS" + }, + { + "id": "11061", + "ident": "43Y", + "type": "small_airport", + "name": "Northome Municipal Airport", + "latitude_deg": "47.8916015625", + "longitude_deg": "-94.25019836425781", + "elevation_ft": "1427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Northome", + "scheduled_service": "no", + "gps_code": "43Y", + "local_code": "43Y" + }, + { + "id": "11062", + "ident": "44A", + "type": "small_airport", + "name": "Rolle Airfield", + "latitude_deg": "32.51839828491211", + "longitude_deg": "-114.697998046875", + "elevation_ft": "163", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "San Luis", + "scheduled_service": "no", + "gps_code": "44A", + "local_code": "44A" + }, + { + "id": "11063", + "ident": "44AK", + "type": "small_airport", + "name": "West Papoose Lake Airpark", + "latitude_deg": "61.53340148925781", + "longitude_deg": "-150.1020050048828", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "44AK", + "local_code": "44AK" + }, + { + "id": "11064", + "ident": "44AR", + "type": "heliport", + "name": "Air Evac 30 Heliport", + "latitude_deg": "35.083419", + "longitude_deg": "-92.20033", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Vilonia", + "scheduled_service": "no", + "gps_code": "44AR", + "local_code": "44AR" + }, + { + "id": "11065", + "ident": "44AZ", + "type": "small_airport", + "name": "Sandhill Ranch Airport", + "latitude_deg": "36.93190002441406", + "longitude_deg": "-111.97000122070312", + "elevation_ft": "5868", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Page", + "scheduled_service": "no", + "gps_code": "44AZ", + "local_code": "44AZ" + }, + { + "id": "11066", + "ident": "44B", + "type": "small_airport", + "name": "Charles A. Chase Jr. Memorial Field", + "latitude_deg": "45.177502", + "longitude_deg": "-69.244698", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Dover-Foxcroft", + "scheduled_service": "no", + "local_code": "44B" + }, + { + "id": "11067", + "ident": "44CA", + "type": "closed", + "name": "W R Byron Airport", + "latitude_deg": "33.679199", + "longitude_deg": "-114.643997", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Blythe", + "scheduled_service": "no", + "keywords": "44CA" + }, + { + "id": "11068", + "ident": "44CL", + "type": "closed", + "name": "Cortopassi Airport", + "latitude_deg": "38.013802", + "longitude_deg": "-121.125999", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Linden", + "scheduled_service": "no", + "keywords": "44CL" + }, + { + "id": "11069", + "ident": "44CN", + "type": "heliport", + "name": "UCLA Wilshire Glendon Heliport", + "latitude_deg": "34.059059", + "longitude_deg": "-118.443818", + "elevation_ft": "509", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "44CN", + "local_code": "44CN", + "keywords": "Occidental Petroleum Heliport" + }, + { + "id": "11070", + "ident": "44CO", + "type": "small_airport", + "name": "Redlands Airport", + "latitude_deg": "38.839885", + "longitude_deg": "-107.792802", + "elevation_ft": "6100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Hotchkiss", + "scheduled_service": "no", + "gps_code": "44CO", + "local_code": "44CO" + }, + { + "id": "11071", + "ident": "44FD", + "type": "closed", + "name": "Epcot Center Ultralightport", + "latitude_deg": "28.353099823", + "longitude_deg": "-81.54699707030001", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Buena Vista", + "scheduled_service": "no", + "gps_code": "44FD", + "local_code": "44FD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Epcot_Center_Ultralight_Flightpark" + }, + { + "id": "11072", + "ident": "44FL", + "type": "heliport", + "name": "Martin Memorial Hospital Heliport", + "latitude_deg": "27.200612", + "longitude_deg": "-80.243496", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Stuart", + "scheduled_service": "no", + "gps_code": "44FL", + "local_code": "44FL" + }, + { + "id": "11073", + "ident": "44G", + "type": "small_airport", + "name": "Betz Airport", + "latitude_deg": "41.85559844970703", + "longitude_deg": "-83.87079620361328", + "elevation_ft": "691", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Blissfield", + "scheduled_service": "no", + "gps_code": "44G", + "local_code": "44G" + }, + { + "id": "11074", + "ident": "44GA", + "type": "small_airport", + "name": "S&S Flying Service Airport", + "latitude_deg": "32.10430145263672", + "longitude_deg": "-83.48290252685547", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Pineview", + "scheduled_service": "no", + "gps_code": "44GA", + "local_code": "44GA" + }, + { + "id": "45397", + "ident": "44ID", + "type": "small_airport", + "name": "Boulder Creek Airstrip", + "latitude_deg": "44.736942", + "longitude_deg": "-116.074158", + "elevation_ft": "4950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Donnelly", + "scheduled_service": "no", + "gps_code": "44ID", + "local_code": "44ID" + }, + { + "id": "11075", + "ident": "44II", + "type": "small_airport", + "name": "The Wolf Den Airport", + "latitude_deg": "40.95309829711914", + "longitude_deg": "-85.3865966796875", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Roanoke", + "scheduled_service": "no", + "gps_code": "44II", + "local_code": "44II" + }, + { + "id": "11076", + "ident": "44IL", + "type": "heliport", + "name": "Wilson Heliport", + "latitude_deg": "41.53919982910156", + "longitude_deg": "-88.32489776611328", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Minooka", + "scheduled_service": "no", + "gps_code": "44IL", + "local_code": "44IL" + }, + { + "id": "11077", + "ident": "44IN", + "type": "small_airport", + "name": "Rush STOLport", + "latitude_deg": "40.49980163574219", + "longitude_deg": "-86.95500183105469", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "West Lafayette", + "scheduled_service": "no", + "gps_code": "44IN", + "local_code": "44IN" + }, + { + "id": "11078", + "ident": "44IS", + "type": "small_airport", + "name": "Potter Airport", + "latitude_deg": "39.74480056762695", + "longitude_deg": "-91.07489776611328", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Barry", + "scheduled_service": "no", + "gps_code": "44IS", + "local_code": "44IS" + }, + { + "id": "11079", + "ident": "44KS", + "type": "small_airport", + "name": "Vankirk Airport", + "latitude_deg": "37.61029815673828", + "longitude_deg": "-97.1624984741211", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wichita", + "scheduled_service": "no", + "gps_code": "44KS", + "local_code": "44KS" + }, + { + "id": "11080", + "ident": "44KY", + "type": "small_airport", + "name": "Duff Airport", + "latitude_deg": "37.352215", + "longitude_deg": "-83.342135", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Chavies", + "scheduled_service": "no", + "gps_code": "44KY", + "local_code": "44KY" + }, + { + "id": "11081", + "ident": "44L", + "type": "heliport", + "name": "Wilshire Area Heliport", + "latitude_deg": "34.047191", + "longitude_deg": "-118.342768", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "local_code": "44L" + }, + { + "id": "11082", + "ident": "44LA", + "type": "small_airport", + "name": "B T & K H Ranch Airport", + "latitude_deg": "30.647761", + "longitude_deg": "-93.056785", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Dry Creek", + "scheduled_service": "no", + "gps_code": "44LA", + "local_code": "44LA" + }, + { + "id": "11083", + "ident": "44LL", + "type": "heliport", + "name": "Carlinville Area Hospital Heliport", + "latitude_deg": "39.28120040893555", + "longitude_deg": "-89.86949920654297", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Carlinville", + "scheduled_service": "no", + "gps_code": "44LL", + "local_code": "44LL" + }, + { + "id": "346422", + "ident": "44LS", + "type": "small_airport", + "name": "Sheridan's Strip", + "latitude_deg": "30.472201", + "longitude_deg": "-90.367785", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Ponchatoula", + "scheduled_service": "no", + "gps_code": "44LS", + "local_code": "44LS" + }, + { + "id": "11084", + "ident": "44M", + "type": "small_airport", + "name": "Tenkiller Lake Airpark", + "latitude_deg": "35.705101013183594", + "longitude_deg": "-94.93589782714844", + "elevation_ft": "877", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Cookson", + "scheduled_service": "no", + "gps_code": "44M", + "local_code": "44M" + }, + { + "id": "45466", + "ident": "44MD", + "type": "heliport", + "name": "Union Memorial Hospital Heliport", + "latitude_deg": "39.328778", + "longitude_deg": "-76.614528", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Baltimore", + "scheduled_service": "no", + "gps_code": "44MD", + "local_code": "44MD" + }, + { + "id": "332067", + "ident": "44ME", + "type": "small_airport", + "name": "Heacock Field Ultralight Flightpark", + "latitude_deg": "43.676555", + "longitude_deg": "-70.617203", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Hollis Center", + "scheduled_service": "no", + "gps_code": "44ME", + "local_code": "44ME" + }, + { + "id": "11085", + "ident": "44MI", + "type": "small_airport", + "name": "Airbatco Field", + "latitude_deg": "42.774235", + "longitude_deg": "-84.903217", + "elevation_ft": "852", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Mulliken", + "scheduled_service": "no", + "gps_code": "44MI", + "local_code": "44MI" + }, + { + "id": "11086", + "ident": "44MN", + "type": "closed", + "name": "Freedom Base Heliport", + "latitude_deg": "45.168701", + "longitude_deg": "-93.728698", + "elevation_ft": "1005", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hanover", + "scheduled_service": "no", + "keywords": "44MN" + }, + { + "id": "11087", + "ident": "44MO", + "type": "small_airport", + "name": "Butch's Strip STOLport", + "latitude_deg": "39.70970153808594", + "longitude_deg": "-94.80220031738281", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Joseph", + "scheduled_service": "no", + "gps_code": "44MO", + "local_code": "44MO" + }, + { + "id": "11088", + "ident": "44MU", + "type": "small_airport", + "name": "Lynch Field", + "latitude_deg": "36.90810012817383", + "longitude_deg": "-94.30999755859375", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Granby", + "scheduled_service": "no", + "gps_code": "44MU", + "local_code": "44MU" + }, + { + "id": "11089", + "ident": "44NC", + "type": "small_airport", + "name": "Broadway Airfield", + "latitude_deg": "35.54330062866211", + "longitude_deg": "-80.65190124511719", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Landis", + "scheduled_service": "no", + "gps_code": "44NC", + "local_code": "44NC" + }, + { + "id": "11090", + "ident": "44ND", + "type": "small_airport", + "name": "Fredericks Ranch Airport", + "latitude_deg": "47.527801513671875", + "longitude_deg": "-102.24099731445312", + "elevation_ft": "2225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Halliday", + "scheduled_service": "no", + "gps_code": "44ND", + "local_code": "44ND" + }, + { + "id": "323343", + "ident": "44NH", + "type": "heliport", + "name": "Lakes Region General Hospital Heliport", + "latitude_deg": "43.528004", + "longitude_deg": "-71.463906", + "elevation_ft": "597", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Laconia", + "scheduled_service": "no", + "gps_code": "44NH", + "local_code": "44NH" + }, + { + "id": "11091", + "ident": "44NJ", + "type": "closed", + "name": "Highlands Seaplane Base", + "latitude_deg": "40.366797", + "longitude_deg": "-74.032898", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Rumson", + "scheduled_service": "no", + "keywords": "44NJ" + }, + { + "id": "11092", + "ident": "44NY", + "type": "small_airport", + "name": "Tomcat Airport", + "latitude_deg": "42.93429946899414", + "longitude_deg": "-74.65239715576172", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Fort Plain", + "scheduled_service": "no", + "gps_code": "44NY", + "local_code": "44NY" + }, + { + "id": "11093", + "ident": "44OH", + "type": "heliport", + "name": "Sjs Heliport", + "latitude_deg": "41.16619873046875", + "longitude_deg": "-81.49340057373047", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cuyahoga Falls", + "scheduled_service": "no", + "gps_code": "44OH", + "local_code": "44OH" + }, + { + "id": "11094", + "ident": "44OI", + "type": "heliport", + "name": "Perry Nuclear Power Plant Heliport", + "latitude_deg": "41.7947998046875", + "longitude_deg": "-81.14510345458984", + "elevation_ft": "623", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Painesville", + "scheduled_service": "no", + "gps_code": "44OI", + "local_code": "44OI" + }, + { + "id": "11095", + "ident": "44OK", + "type": "closed", + "name": "Sky High Airport", + "latitude_deg": "35.954201", + "longitude_deg": "-97.549202", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Crescent", + "scheduled_service": "no", + "keywords": "44OK" + }, + { + "id": "11096", + "ident": "44OR", + "type": "small_airport", + "name": "Compton Airport", + "latitude_deg": "45.2223014831543", + "longitude_deg": "-122.72699737548828", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Canby", + "scheduled_service": "no", + "gps_code": "44OR", + "local_code": "44OR" + }, + { + "id": "11097", + "ident": "44PA", + "type": "small_airport", + "name": "Pennfield Farm Airport", + "latitude_deg": "40.850101470947266", + "longitude_deg": "-77.61640167236328", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Spring Mills", + "scheduled_service": "no", + "gps_code": "44PA", + "local_code": "44PA" + }, + { + "id": "45766", + "ident": "44PN", + "type": "heliport", + "name": "Sports Complex Of Honesdale Heliport", + "latitude_deg": "41.560619", + "longitude_deg": "-75.265575", + "elevation_ft": "1361", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Honesdale", + "scheduled_service": "no", + "gps_code": "44PN", + "local_code": "44PN" + }, + { + "id": "349104", + "ident": "44SC", + "type": "small_airport", + "name": "4 Holes Field", + "latitude_deg": "33.481943", + "longitude_deg": "-80.777026", + "elevation_ft": "184", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Orangeburg", + "scheduled_service": "no", + "gps_code": "44SC", + "local_code": "44SC" + }, + { + "id": "11098", + "ident": "44T", + "type": "small_airport", + "name": "Hoskins Field", + "latitude_deg": "46.992438", + "longitude_deg": "-122.828003", + "elevation_ft": "213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Olympia", + "scheduled_service": "no", + "local_code": "44T", + "home_link": "https://wsdot.wa.gov/aviation/AllStateAirports/Olympia_HoskinsField.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hoskins_Field_(Washington)", + "keywords": "WA44" + }, + { + "id": "11099", + "ident": "44TA", + "type": "heliport", + "name": "Aero Crafter Inc Heliport", + "latitude_deg": "33.124968", + "longitude_deg": "-96.52221", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "44TA", + "local_code": "44TA", + "keywords": "CFD International" + }, + { + "id": "11100", + "ident": "44TE", + "type": "small_airport", + "name": "Shirley Williams Airport", + "latitude_deg": "30.683500289916992", + "longitude_deg": "-98.41699981689453", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kingsland", + "scheduled_service": "no", + "gps_code": "44TE", + "local_code": "44TE" + }, + { + "id": "11101", + "ident": "44TN", + "type": "small_airport", + "name": "Stone Field", + "latitude_deg": "35.84090042", + "longitude_deg": "-84.07569885", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "44TN", + "local_code": "44TN" + }, + { + "id": "11102", + "ident": "44TS", + "type": "small_airport", + "name": "Mc David Ranch Airport", + "latitude_deg": "30.5776996613", + "longitude_deg": "-98.8337020874", + "elevation_ft": "1407", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Llano", + "scheduled_service": "no", + "gps_code": "44TS", + "local_code": "44TS" + }, + { + "id": "11103", + "ident": "44TX", + "type": "small_airport", + "name": "White Oak Airport", + "latitude_deg": "30.210500717163086", + "longitude_deg": "-99.09480285644531", + "elevation_ft": "1875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fredericksburg", + "scheduled_service": "no", + "gps_code": "44TX", + "local_code": "44TX" + }, + { + "id": "11104", + "ident": "44VA", + "type": "small_airport", + "name": "Big Hill Airport", + "latitude_deg": "37.731201171875", + "longitude_deg": "-79.81120300292969", + "elevation_ft": "1620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Eagle Rock", + "scheduled_service": "no", + "gps_code": "44VA", + "local_code": "44VA" + }, + { + "id": "11105", + "ident": "44WA", + "type": "heliport", + "name": "Skyline Hospital Ems Heliport", + "latitude_deg": "45.722198486328125", + "longitude_deg": "-121.4729995727539", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "White Salmon", + "scheduled_service": "no", + "gps_code": "44WA", + "local_code": "44WA" + }, + { + "id": "45929", + "ident": "44WI", + "type": "small_airport", + "name": "Stoiber Airport", + "latitude_deg": "44.772217", + "longitude_deg": "-90.385067", + "elevation_ft": "1298", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Spencer", + "scheduled_service": "no", + "gps_code": "44WI", + "local_code": "44WI" + }, + { + "id": "45940", + "ident": "44WY", + "type": "small_airport", + "name": "Underwood Airport", + "latitude_deg": "42.851822", + "longitude_deg": "-105.499378", + "elevation_ft": "4863", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Douglas", + "scheduled_service": "no", + "gps_code": "44WY", + "local_code": "44WY" + }, + { + "id": "344835", + "ident": "44XA", + "type": "small_airport", + "name": "HFS Airport", + "latitude_deg": "27.836944", + "longitude_deg": "-97.771806", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Robstown", + "scheduled_service": "no", + "gps_code": "44XA", + "local_code": "44XA" + }, + { + "id": "11106", + "ident": "44XS", + "type": "closed", + "name": "Prudential Heliport", + "latitude_deg": "29.708599", + "longitude_deg": "-95.461304", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bellaire", + "scheduled_service": "no", + "keywords": "44XS" + }, + { + "id": "318193", + "ident": "45AA", + "type": "small_airport", + "name": "Davidson Strip Airport", + "latitude_deg": "62.1628972", + "longitude_deg": "-150.5396083", + "elevation_ft": "383", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Talkeetna", + "scheduled_service": "no", + "gps_code": "45AA", + "local_code": "45AA" + }, + { + "id": "11107", + "ident": "45AK", + "type": "small_airport", + "name": "Cherokee Airport", + "latitude_deg": "63.954955", + "longitude_deg": "-145.448536", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Delta Junction", + "scheduled_service": "no", + "gps_code": "45AK", + "local_code": "45AK" + }, + { + "id": "43027", + "ident": "45AR", + "type": "small_airport", + "name": "Thunder Ridge Ranch", + "latitude_deg": "36.3671989441", + "longitude_deg": "-92.64019775390001", + "elevation_ft": "789", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Flippin", + "scheduled_service": "no", + "gps_code": "45AR", + "local_code": "45AR" + }, + { + "id": "11109", + "ident": "45AZ", + "type": "closed", + "name": "Pine Springs Airport", + "latitude_deg": "35.403322", + "longitude_deg": "-109.272852", + "elevation_ft": "6930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Pine Springs", + "scheduled_service": "no", + "gps_code": "45AZ", + "local_code": "45AZ", + "keywords": "45az" + }, + { + "id": "11110", + "ident": "45CA", + "type": "closed", + "name": "Chapin Medical Pad Heliport", + "latitude_deg": "33.8936", + "longitude_deg": "-117.598", + "elevation_ft": "578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Corona", + "scheduled_service": "no", + "keywords": "45CA" + }, + { + "id": "11111", + "ident": "45CL", + "type": "small_airport", + "name": "Hell'er High Water Airport", + "latitude_deg": "40.141878", + "longitude_deg": "-123.399124", + "elevation_ft": "2493", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Zenia", + "scheduled_service": "no", + "gps_code": "45CL", + "local_code": "45CL" + }, + { + "id": "11112", + "ident": "45CN", + "type": "small_airport", + "name": "Hermitage Airport", + "latitude_deg": "37.880691", + "longitude_deg": "-120.194936", + "elevation_ft": "2700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Groveland", + "scheduled_service": "no", + "gps_code": "45CN", + "local_code": "45CN" + }, + { + "id": "11113", + "ident": "45CO", + "type": "heliport", + "name": "Ag-Air Inc Heliport", + "latitude_deg": "40.205501556396484", + "longitude_deg": "-104.97599792480469", + "elevation_ft": "5025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Mead", + "scheduled_service": "no", + "gps_code": "45CO", + "local_code": "45CO" + }, + { + "id": "347473", + "ident": "45FA", + "type": "heliport", + "name": "Hendry Medical Heliport", + "latitude_deg": "26.751627", + "longitude_deg": "-80.941086", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Clewiston", + "scheduled_service": "no", + "gps_code": "45FA", + "local_code": "45FA" + }, + { + "id": "11114", + "ident": "45FD", + "type": "heliport", + "name": "Baptist Medical Center Beaches Heliport", + "latitude_deg": "30.272339", + "longitude_deg": "-81.39764", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville Beach", + "scheduled_service": "no", + "gps_code": "45FD", + "local_code": "45FD" + }, + { + "id": "11115", + "ident": "45FL", + "type": "small_airport", + "name": "Moss Meadows Airport", + "latitude_deg": "30.23740005493164", + "longitude_deg": "-82.90650177001953", + "elevation_ft": "155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Live Oak", + "scheduled_service": "no", + "gps_code": "45FL", + "local_code": "45FL" + }, + { + "id": "11116", + "ident": "45GA", + "type": "closed", + "name": "Hyatt Regency Hotel Heliport", + "latitude_deg": "32.081911", + "longitude_deg": "-81.091472", + "elevation_ft": "123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Savannah", + "scheduled_service": "no", + "keywords": "45GA" + }, + { + "id": "11117", + "ident": "45IA", + "type": "heliport", + "name": "Great River Medical Center Heliport", + "latitude_deg": "40.810613", + "longitude_deg": "-91.173903", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "West Burlington", + "scheduled_service": "no", + "gps_code": "45IA", + "local_code": "45IA" + }, + { + "id": "345481", + "ident": "45ID", + "type": "small_airport", + "name": "Fox Creek Airport", + "latitude_deg": "48.330153", + "longitude_deg": "-116.826237", + "elevation_ft": "2434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Priest River", + "scheduled_service": "no", + "gps_code": "45ID", + "local_code": "45ID" + }, + { + "id": "11118", + "ident": "45II", + "type": "small_airport", + "name": "Cummings Field", + "latitude_deg": "41.63370132446289", + "longitude_deg": "-86.58589935302734", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Rolling Prairie", + "scheduled_service": "no", + "gps_code": "45II", + "local_code": "45II" + }, + { + "id": "11119", + "ident": "45IL", + "type": "heliport", + "name": "Lake Forest Hospital Heliport", + "latitude_deg": "42.254150262799996", + "longitude_deg": "-87.8635588288", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lake Forest", + "scheduled_service": "no", + "gps_code": "45IL", + "local_code": "45IL" + }, + { + "id": "11120", + "ident": "45IN", + "type": "small_airport", + "name": "Aerobatic Practice Airport", + "latitude_deg": "38.99639892578125", + "longitude_deg": "-85.74800109863281", + "elevation_ft": "681", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "North Vernon", + "scheduled_service": "no", + "gps_code": "45IN", + "local_code": "45IN" + }, + { + "id": "11121", + "ident": "45IS", + "type": "heliport", + "name": "Adventist Bolingbrook Hospital Heliport", + "latitude_deg": "41.68091", + "longitude_deg": "-88.086345", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Bolingbrook", + "scheduled_service": "no", + "gps_code": "45IS", + "local_code": "45IS" + }, + { + "id": "11122", + "ident": "45KS", + "type": "closed", + "name": "Liebau Ranch Airport", + "latitude_deg": "37.4039", + "longitude_deg": "-96.4533", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Grenola", + "scheduled_service": "no", + "keywords": "45KS" + }, + { + "id": "11123", + "ident": "45KY", + "type": "heliport", + "name": "Medical Center Albany Heliport", + "latitude_deg": "36.697903", + "longitude_deg": "-85.145764", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "45KY", + "local_code": "45KY", + "keywords": "Clinton County Hospital" + }, + { + "id": "11124", + "ident": "45L", + "type": "closed", + "name": "Parker Center Heliport", + "latitude_deg": "34.052162", + "longitude_deg": "-118.241177", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "keywords": "45L" + }, + { + "id": "11125", + "ident": "45LA", + "type": "heliport", + "name": "Air Logistics (Venice) N Heliport", + "latitude_deg": "29.30190086364746", + "longitude_deg": "-89.37449645996094", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no", + "gps_code": "45LA", + "local_code": "45LA" + }, + { + "id": "356192", + "ident": "45ME", + "type": "heliport", + "name": "Miles Hospital Heliport", + "latitude_deg": "44.026651", + "longitude_deg": "-69.53011", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Damariscotta", + "scheduled_service": "no", + "gps_code": "45ME", + "local_code": "45ME" + }, + { + "id": "11126", + "ident": "45MI", + "type": "closed", + "name": "Franklin's Airport", + "latitude_deg": "46.263901", + "longitude_deg": "-84.126404", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Barbeau", + "scheduled_service": "no", + "keywords": "45MI" + }, + { + "id": "11127", + "ident": "45MN", + "type": "small_airport", + "name": "Kaml Airstrip", + "latitude_deg": "47.92610168457031", + "longitude_deg": "-96.61419677734375", + "elevation_ft": "898", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Euclid", + "scheduled_service": "no", + "gps_code": "45MN", + "local_code": "45MN" + }, + { + "id": "11128", + "ident": "45MO", + "type": "small_airport", + "name": "Waldmeister Farm Airport", + "latitude_deg": "38.848967", + "longitude_deg": "-90.639098", + "elevation_ft": "424", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Peters", + "scheduled_service": "no", + "gps_code": "45MO", + "local_code": "45MO" + }, + { + "id": "341570", + "ident": "45MS", + "type": "small_airport", + "name": "Box Field", + "latitude_deg": "33.547164", + "longitude_deg": "-90.567094", + "elevation_ft": "123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Sunflower", + "scheduled_service": "no", + "gps_code": "45MS", + "local_code": "45MS", + "keywords": "Sunflower Flying Services" + }, + { + "id": "45511", + "ident": "45MT", + "type": "small_airport", + "name": "Pester Airport", + "latitude_deg": "48.628333", + "longitude_deg": "-110.469667", + "elevation_ft": "3055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Hingham", + "scheduled_service": "no", + "gps_code": "45MT", + "local_code": "45MT" + }, + { + "id": "11129", + "ident": "45NC", + "type": "small_airport", + "name": "Glover Airport", + "latitude_deg": "36.528381", + "longitude_deg": "-77.455308", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Seaboard", + "scheduled_service": "no", + "gps_code": "45NC", + "local_code": "45NC" + }, + { + "id": "11130", + "ident": "45NH", + "type": "heliport", + "name": "Hayes Heliport", + "latitude_deg": "42.985198974609375", + "longitude_deg": "-71.17829895019531", + "elevation_ft": "152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Raymond", + "scheduled_service": "no", + "gps_code": "45NH", + "local_code": "45NH" + }, + { + "id": "11131", + "ident": "45NJ", + "type": "closed", + "name": "Heliport", + "latitude_deg": "40.690399", + "longitude_deg": "-74.307899", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Union", + "scheduled_service": "no", + "keywords": "45NJ" + }, + { + "id": "324439", + "ident": "45NR", + "type": "heliport", + "name": "NHRMC-Ed North Heliport", + "latitude_deg": "34.316552", + "longitude_deg": "-77.768284", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Wilmington", + "scheduled_service": "yes", + "gps_code": "45NR", + "local_code": "45NR" + }, + { + "id": "45667", + "ident": "45NY", + "type": "heliport", + "name": "Turning Stone Resort & Casino Heliport", + "latitude_deg": "43.110569", + "longitude_deg": "-75.593658", + "elevation_ft": "359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Verona", + "scheduled_service": "no", + "gps_code": "45NY", + "local_code": "45NY" + }, + { + "id": "45732", + "ident": "45OG", + "type": "small_airport", + "name": "Rugg Ranches Airport", + "latitude_deg": "45.476389", + "longitude_deg": "-118.791667", + "elevation_ft": "1890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Pilot Rock", + "scheduled_service": "no", + "gps_code": "45OG", + "local_code": "45OG" + }, + { + "id": "11132", + "ident": "45OH", + "type": "small_airport", + "name": "Boober Airport", + "latitude_deg": "38.975994", + "longitude_deg": "-84.219511", + "elevation_ft": "854", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "New Richmond", + "scheduled_service": "no", + "gps_code": "45OH", + "local_code": "45OH" + }, + { + "id": "11133", + "ident": "45OI", + "type": "small_airport", + "name": "Plane Country Airport", + "latitude_deg": "40.56119918823242", + "longitude_deg": "-81.54570007324219", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Strasburg", + "scheduled_service": "no", + "gps_code": "45OI", + "local_code": "45OI" + }, + { + "id": "11134", + "ident": "45OK", + "type": "small_airport", + "name": "Belleview Landing Airport", + "latitude_deg": "36.912601470947266", + "longitude_deg": "-95.60299682617188", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "South Coffeyville", + "scheduled_service": "no", + "gps_code": "45OK", + "local_code": "45OK" + }, + { + "id": "11135", + "ident": "45OL", + "type": "closed", + "name": "Stilwell Airport", + "latitude_deg": "35.837391", + "longitude_deg": "-94.628364", + "elevation_ft": "1125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Stilwell", + "scheduled_service": "no", + "keywords": "45OL" + }, + { + "id": "11136", + "ident": "45OR", + "type": "small_airport", + "name": "Gederos Airport", + "latitude_deg": "43.1548", + "longitude_deg": "-124.170998", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Coquille", + "scheduled_service": "no", + "gps_code": "45OR", + "local_code": "45OR", + "keywords": "Benham Airport" + }, + { + "id": "11137", + "ident": "45PA", + "type": "heliport", + "name": "Meadville Medical Center Heliport", + "latitude_deg": "41.64120101928711", + "longitude_deg": "-80.1458969116211", + "elevation_ft": "1125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Meadville", + "scheduled_service": "no", + "gps_code": "45PA", + "local_code": "45PA" + }, + { + "id": "11138", + "ident": "45S", + "type": "small_airport", + "name": "Silver Lake F S Strip", + "latitude_deg": "43.111000061035156", + "longitude_deg": "-121.09400177001953", + "elevation_ft": "4492", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Silver Lake", + "scheduled_service": "no", + "gps_code": "45S", + "local_code": "45S", + "wikipedia_link": "https://en.wikipedia.org/wiki/Silver_Lake_Forest_Service_Strip" + }, + { + "id": "11139", + "ident": "45TA", + "type": "heliport", + "name": "Spl Heliport", + "latitude_deg": "29.659099578857422", + "longitude_deg": "-95.42880249023438", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "45TA", + "local_code": "45TA" + }, + { + "id": "11140", + "ident": "45TE", + "type": "small_airport", + "name": "Deussen Field", + "latitude_deg": "33.190664", + "longitude_deg": "-97.323408", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ponder", + "scheduled_service": "no", + "gps_code": "45TE", + "local_code": "45TE" + }, + { + "id": "11141", + "ident": "45TN", + "type": "small_airport", + "name": "Darnell's Landings Airport", + "latitude_deg": "36.50669860839844", + "longitude_deg": "-82.71170043945312", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Church Hill", + "scheduled_service": "no", + "gps_code": "45TN", + "local_code": "45TN" + }, + { + "id": "11142", + "ident": "45TS", + "type": "heliport", + "name": "Bullhead Heliport", + "latitude_deg": "30.583499908447266", + "longitude_deg": "-98.80870056152344", + "elevation_ft": "1430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Llano", + "scheduled_service": "no", + "gps_code": "45TS", + "local_code": "45TS" + }, + { + "id": "11143", + "ident": "45TX", + "type": "closed", + "name": "West Airpark", + "latitude_deg": "31.752399", + "longitude_deg": "-97.098297", + "elevation_ft": "563", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "West", + "scheduled_service": "no", + "keywords": "45TX" + }, + { + "id": "11144", + "ident": "45VA", + "type": "closed", + "name": "Frog Hollow Farm Airport", + "latitude_deg": "37.695099", + "longitude_deg": "-76.995003", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "West Point", + "scheduled_service": "no", + "keywords": "45VA" + }, + { + "id": "11145", + "ident": "45WA", + "type": "heliport", + "name": "Yakima Valley Memorial Hospital Heliport", + "latitude_deg": "46.594038", + "longitude_deg": "-120.546649", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Yakima", + "scheduled_service": "no", + "gps_code": "45WA", + "local_code": "45WA" + }, + { + "id": "11146", + "ident": "45WI", + "type": "small_airport", + "name": "Windsong Farm Airport", + "latitude_deg": "45", + "longitude_deg": "-92.28350067138672", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Woodville", + "scheduled_service": "no", + "gps_code": "45WI", + "local_code": "45WI" + }, + { + "id": "299709", + "ident": "45WY", + "type": "small_airport", + "name": "American Falconry Airport", + "latitude_deg": "42.889733", + "longitude_deg": "-106.674866", + "elevation_ft": "5722", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Casper", + "scheduled_service": "no", + "gps_code": "45WY", + "local_code": "45WY" + }, + { + "id": "342349", + "ident": "45XA", + "type": "small_airport", + "name": "Beulah Airport", + "latitude_deg": "29.4958", + "longitude_deg": "-98.0569", + "elevation_ft": "587", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seguin", + "scheduled_service": "no", + "gps_code": "45XA" + }, + { + "id": "11147", + "ident": "45XS", + "type": "small_airport", + "name": "Ghost Apache Airport", + "latitude_deg": "28.131058", + "longitude_deg": "-98.906091", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cotulla", + "scheduled_service": "no", + "gps_code": "45XS", + "local_code": "45XS" + }, + { + "id": "11148", + "ident": "46AK", + "type": "small_airport", + "name": "Bear Cove Farm Airport", + "latitude_deg": "59.737844", + "longitude_deg": "-151.022186", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Homer", + "scheduled_service": "no", + "gps_code": "46AK", + "local_code": "46AK" + }, + { + "id": "325107", + "ident": "46AL", + "type": "seaplane_base", + "name": "Sly Pig's Base Seaplane Base", + "latitude_deg": "33.198332", + "longitude_deg": "-86.475", + "elevation_ft": "396", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Sylacauga", + "scheduled_service": "no", + "gps_code": "46AL", + "local_code": "46AL" + }, + { + "id": "11149", + "ident": "46AR", + "type": "closed", + "name": "Robert Chris Mc Intosh Airport", + "latitude_deg": "34.846199", + "longitude_deg": "-92.172096", + "elevation_ft": "242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Sherwood", + "scheduled_service": "no", + "local_code": "46AR", + "keywords": "46AR" + }, + { + "id": "11150", + "ident": "46AZ", + "type": "small_airport", + "name": "Piñon Airport", + "latitude_deg": "36.09261", + "longitude_deg": "-110.22954", + "elevation_ft": "6314", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Piñon", + "scheduled_service": "no", + "gps_code": "46AZ", + "local_code": "46AZ", + "keywords": "Beʼekʼid Baa Ahoodzání" + }, + { + "id": "11151", + "ident": "46CA", + "type": "closed", + "name": "Rancho Vallecito Airport", + "latitude_deg": "32.970901", + "longitude_deg": "-116.408997", + "elevation_ft": "1680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Julian", + "scheduled_service": "no", + "keywords": "46CA" + }, + { + "id": "11152", + "ident": "46CL", + "type": "heliport", + "name": "AT&T Center Heliport", + "latitude_deg": "34.039611", + "longitude_deg": "-118.261704", + "elevation_ft": "679", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "46CL", + "local_code": "46CL", + "keywords": "Transamerica Center Heliport" + }, + { + "id": "11153", + "ident": "46CN", + "type": "small_airport", + "name": "Crystal Airport", + "latitude_deg": "34.484781", + "longitude_deg": "-117.825898", + "elevation_ft": "3420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Llano", + "scheduled_service": "no", + "gps_code": "46CN", + "local_code": "46CN" + }, + { + "id": "11154", + "ident": "46CO", + "type": "small_airport", + "name": "Huerfano Agricultural Airport", + "latitude_deg": "38.099998474121094", + "longitude_deg": "-104.4260025024414", + "elevation_ft": "4790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Pueblo", + "scheduled_service": "no", + "gps_code": "46CO", + "local_code": "46CO" + }, + { + "id": "345992", + "ident": "46FA", + "type": "heliport", + "name": "Perdido Key Fire Station Helipad", + "latitude_deg": "30.291918", + "longitude_deg": "-87.469572", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Perdido Key", + "scheduled_service": "no", + "gps_code": "46FA", + "local_code": "46FA", + "keywords": "Escambia" + }, + { + "id": "11155", + "ident": "46FD", + "type": "small_airport", + "name": "Tater Farms Strip", + "latitude_deg": "29.674779", + "longitude_deg": "-81.500649", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Hastings", + "scheduled_service": "no", + "gps_code": "46FD", + "local_code": "46FD" + }, + { + "id": "11156", + "ident": "46FL", + "type": "heliport", + "name": "Parrish Medical Center Heliport", + "latitude_deg": "28.631548", + "longitude_deg": "-80.824538", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Titusville", + "scheduled_service": "no", + "gps_code": "46FL", + "local_code": "46FL" + }, + { + "id": "11157", + "ident": "46GA", + "type": "heliport", + "name": "St Joseph's Hospital Heliport", + "latitude_deg": "31.984899520874023", + "longitude_deg": "-81.15570068359375", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Savannah", + "scheduled_service": "no", + "gps_code": "46GA", + "local_code": "46GA" + }, + { + "id": "11158", + "ident": "46IA", + "type": "small_airport", + "name": "Todd Field", + "latitude_deg": "41.75579833984375", + "longitude_deg": "-93.56659698486328", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Ankeny", + "scheduled_service": "no", + "gps_code": "46IA", + "local_code": "46IA" + }, + { + "id": "11159", + "ident": "46II", + "type": "heliport", + "name": "Porter Regional Hospital Heliport", + "latitude_deg": "41.553648", + "longitude_deg": "-87.047982", + "elevation_ft": "864", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Valparaiso", + "scheduled_service": "no", + "gps_code": "46II", + "local_code": "46II" + }, + { + "id": "11160", + "ident": "46IL", + "type": "heliport", + "name": "Mc Donough County Hospital Heliport", + "latitude_deg": "40.4500007629", + "longitude_deg": "-90.6668014526", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Macomb", + "scheduled_service": "no", + "gps_code": "46IL", + "local_code": "46IL" + }, + { + "id": "11161", + "ident": "46IN", + "type": "small_airport", + "name": "Ames Field", + "latitude_deg": "41.38119888305664", + "longitude_deg": "-86.2228012084961", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "46IN", + "local_code": "46IN" + }, + { + "id": "11162", + "ident": "46KS", + "type": "small_airport", + "name": "Hidden Valley Airport", + "latitude_deg": "37.83169937133789", + "longitude_deg": "-97.36309814453125", + "elevation_ft": "1345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Valley Center", + "scheduled_service": "no", + "gps_code": "46KS", + "local_code": "46KS" + }, + { + "id": "11163", + "ident": "46KY", + "type": "heliport", + "name": "St Luke Hospital Heliport", + "latitude_deg": "39.07780075073242", + "longitude_deg": "-84.4646987915039", + "elevation_ft": "814", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Fort Thomas", + "scheduled_service": "no", + "gps_code": "46KY", + "local_code": "46KY" + }, + { + "id": "11164", + "ident": "46LA", + "type": "closed", + "name": "Davis Plantation Airport", + "latitude_deg": "32.796501", + "longitude_deg": "-91.9468", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bastrop", + "scheduled_service": "no", + "keywords": "46LA" + }, + { + "id": "11165", + "ident": "46LL", + "type": "heliport", + "name": "Lefkowitz Heliport", + "latitude_deg": "42.16109848022461", + "longitude_deg": "-87.98609924316406", + "elevation_ft": "713", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Long Grove", + "scheduled_service": "no", + "gps_code": "46LL", + "local_code": "46LL" + }, + { + "id": "45442", + "ident": "46LS", + "type": "small_airport", + "name": "Venissat Airstrip", + "latitude_deg": "30.086111", + "longitude_deg": "-92.532222", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Gueydan", + "scheduled_service": "no", + "gps_code": "46LS", + "local_code": "46LS" + }, + { + "id": "45450", + "ident": "46ME", + "type": "heliport", + "name": "Redington-Fairview General Hospital Heliport", + "latitude_deg": "44.757728", + "longitude_deg": "-69.714411", + "elevation_ft": "205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Skowhegan", + "scheduled_service": "no", + "gps_code": "ME29", + "local_code": "ME29" + }, + { + "id": "11166", + "ident": "46MI", + "type": "small_airport", + "name": "Cloud Nine West Airport", + "latitude_deg": "42.546101", + "longitude_deg": "-84.1278", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Webberville", + "scheduled_service": "no", + "gps_code": "46MI", + "local_code": "46MI", + "keywords": "Cloud Nine Field, Rotors & Wings Airport" + }, + { + "id": "11167", + "ident": "46MN", + "type": "closed", + "name": "Elmer Airport", + "latitude_deg": "46.005501", + "longitude_deg": "-95.692", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Evansville", + "scheduled_service": "no", + "keywords": "46MN" + }, + { + "id": "11168", + "ident": "46MO", + "type": "closed", + "name": "Sontimer Airport", + "latitude_deg": "38.808673", + "longitude_deg": "-90.613522", + "elevation_ft": "443", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Saint Peters", + "scheduled_service": "no", + "keywords": "46MO, Sontheimer" + }, + { + "id": "11169", + "ident": "46MS", + "type": "small_airport", + "name": "Circle Bar Ranch Airport", + "latitude_deg": "31.295000076293945", + "longitude_deg": "-89.98500061035156", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Foxworth", + "scheduled_service": "no", + "gps_code": "46MS", + "local_code": "46MS" + }, + { + "id": "11170", + "ident": "46N", + "type": "small_airport", + "name": "Sky Park Airport", + "latitude_deg": "41.98460006713867", + "longitude_deg": "-73.83599853515625", + "elevation_ft": "323", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Red Hook", + "scheduled_service": "no", + "gps_code": "46N", + "local_code": "46N" + }, + { + "id": "11171", + "ident": "46NC", + "type": "small_airport", + "name": "Brown Field", + "latitude_deg": "34.892799377441406", + "longitude_deg": "-80.37329864501953", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Marshville", + "scheduled_service": "no", + "gps_code": "46NC", + "local_code": "46NC" + }, + { + "id": "11172", + "ident": "46NE", + "type": "small_airport", + "name": "Jantzen Airport", + "latitude_deg": "40.896400451660156", + "longitude_deg": "-101.50499725341797", + "elevation_ft": "3375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Madrid", + "scheduled_service": "no", + "gps_code": "46NE", + "local_code": "46NE" + }, + { + "id": "346063", + "ident": "46NH", + "type": "heliport", + "name": "Upper Valley Heliport", + "latitude_deg": "43.859999", + "longitude_deg": "-72.095954", + "elevation_ft": "1196", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Orford", + "scheduled_service": "no", + "gps_code": "46NH", + "local_code": "46NH" + }, + { + "id": "11173", + "ident": "46NJ", + "type": "closed", + "name": "Perl Acres Airport", + "latitude_deg": "40.152903", + "longitude_deg": "-74.455202", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Clarksburg", + "scheduled_service": "no", + "keywords": "46NJ" + }, + { + "id": "11174", + "ident": "46NY", + "type": "small_airport", + "name": "Savannah Agri-Air Airport", + "latitude_deg": "43.018798828125", + "longitude_deg": "-76.76100158691406", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Savannah", + "scheduled_service": "no", + "gps_code": "46NY", + "local_code": "46NY" + }, + { + "id": "11175", + "ident": "46OH", + "type": "small_airport", + "name": "Wetzl Airport", + "latitude_deg": "41.10369873046875", + "longitude_deg": "-80.82649993896484", + "elevation_ft": "997", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "North Jackson", + "scheduled_service": "no", + "gps_code": "46OH", + "local_code": "46OH" + }, + { + "id": "11176", + "ident": "46OI", + "type": "small_airport", + "name": "Kellers Strip", + "latitude_deg": "41.68339920043945", + "longitude_deg": "-83.7666015625", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Sylvania", + "scheduled_service": "no", + "gps_code": "46OI", + "local_code": "46OI" + }, + { + "id": "11177", + "ident": "46OK", + "type": "closed", + "name": "Steinert Lakes Airport", + "latitude_deg": "36.220746", + "longitude_deg": "-97.843609", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Bison", + "scheduled_service": "no", + "keywords": "46OK" + }, + { + "id": "11178", + "ident": "46OR", + "type": "heliport", + "name": "Delamarter Heliport", + "latitude_deg": "45.642601013183594", + "longitude_deg": "-118.80899810791016", + "elevation_ft": "1275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Pendleton", + "scheduled_service": "no", + "gps_code": "46OR", + "local_code": "46OR" + }, + { + "id": "11179", + "ident": "46PA", + "type": "heliport", + "name": "St Margaret Memorial Hospital Heliport", + "latitude_deg": "40.489498138427734", + "longitude_deg": "-79.89450073242188", + "elevation_ft": "761", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pittsburgh", + "scheduled_service": "no", + "gps_code": "46PA", + "local_code": "46PA" + }, + { + "id": "45743", + "ident": "46PN", + "type": "heliport", + "name": "D.R. Helicopters Heliport", + "latitude_deg": "40.9", + "longitude_deg": "-75.866667", + "elevation_ft": "361", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Allentown", + "scheduled_service": "no", + "gps_code": "46PN", + "local_code": "46PN" + }, + { + "id": "11180", + "ident": "46SC", + "type": "closed", + "name": "Gaffney Airport", + "latitude_deg": "35.139529", + "longitude_deg": "-81.695055", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Gaffney", + "scheduled_service": "no", + "keywords": "46SC" + }, + { + "id": "11181", + "ident": "46TA", + "type": "small_airport", + "name": "Gould Strip", + "latitude_deg": "28.129929", + "longitude_deg": "-98.859289", + "elevation_ft": "287", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cotulla", + "scheduled_service": "no", + "gps_code": "46TA", + "local_code": "46TA" + }, + { + "id": "11182", + "ident": "46TE", + "type": "closed", + "name": "02 Ranch Airport", + "latitude_deg": "29.873373", + "longitude_deg": "-103.702656", + "elevation_ft": "3799", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alpine", + "scheduled_service": "no", + "keywords": "E46, 46TE" + }, + { + "id": "45792", + "ident": "46TN", + "type": "heliport", + "name": "Pleasantville Pentacostal Church Heliport", + "latitude_deg": "35.674444", + "longitude_deg": "-87.6725", + "elevation_ft": "582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Pleasantville", + "scheduled_service": "no", + "gps_code": "46TN", + "local_code": "46TN" + }, + { + "id": "11183", + "ident": "46TS", + "type": "small_airport", + "name": "Lavon North Airport", + "latitude_deg": "33.128201", + "longitude_deg": "-96.509697", + "elevation_ft": "565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "46TS", + "local_code": "46TS" + }, + { + "id": "11184", + "ident": "46TX", + "type": "small_airport", + "name": "Phillips Corporation Airport", + "latitude_deg": "29.150800704956055", + "longitude_deg": "-95.49520111083984", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Angleton", + "scheduled_service": "no", + "gps_code": "46TX", + "local_code": "46TX" + }, + { + "id": "11185", + "ident": "46VA", + "type": "small_airport", + "name": "Byrd Creek Airport", + "latitude_deg": "37.817467", + "longitude_deg": "-78.048547", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "46VA", + "local_code": "46VA", + "keywords": "Caldonia" + }, + { + "id": "11186", + "ident": "46WA", + "type": "heliport", + "name": "Don Williams Private Heliport", + "latitude_deg": "46.60900115966797", + "longitude_deg": "-120.61399841308594", + "elevation_ft": "1560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Yakima", + "scheduled_service": "no", + "gps_code": "46WA", + "local_code": "46WA" + }, + { + "id": "11187", + "ident": "46WI", + "type": "heliport", + "name": "Holy Family Hospital Heliport", + "latitude_deg": "45.117698669433594", + "longitude_deg": "-92.55619812011719", + "elevation_ft": "996", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "New Richmond", + "scheduled_service": "no", + "gps_code": "46WI", + "local_code": "46WI" + }, + { + "id": "11188", + "ident": "46XS", + "type": "closed", + "name": "Windy Hill Airport", + "latitude_deg": "33.310827", + "longitude_deg": "-97.101741", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Denton", + "scheduled_service": "no", + "keywords": "46XS" + }, + { + "id": "11189", + "ident": "47AK", + "type": "small_airport", + "name": "Highland Airport", + "latitude_deg": "61.29249954223633", + "longitude_deg": "-149.5330047607422", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Eagle River", + "scheduled_service": "no", + "gps_code": "47AK", + "local_code": "47AK" + }, + { + "id": "332761", + "ident": "47AL", + "type": "heliport", + "name": "Southflight Heliport", + "latitude_deg": "30.784811", + "longitude_deg": "-88.280715", + "elevation_ft": "253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Semmes", + "scheduled_service": "no", + "gps_code": "47AL", + "local_code": "47AL" + }, + { + "id": "11190", + "ident": "47AR", + "type": "small_airport", + "name": "Mabry Field Ultralight", + "latitude_deg": "36.043217", + "longitude_deg": "-91.945192", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Melbourne", + "scheduled_service": "no", + "keywords": "47AR" + }, + { + "id": "11191", + "ident": "47AZ", + "type": "closed", + "name": "Ray Schnepf Ranch Airport", + "latitude_deg": "33.224201", + "longitude_deg": "-111.594002", + "elevation_ft": "1458", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Queen Creek", + "scheduled_service": "no", + "gps_code": "47AZ", + "local_code": "47AZ" + }, + { + "id": "11192", + "ident": "47CA", + "type": "heliport", + "name": "Mountains Community Hospital Heliport", + "latitude_deg": "34.265462", + "longitude_deg": "-117.16779", + "elevation_ft": "5318", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lake Arrowhead", + "scheduled_service": "no", + "gps_code": "47CA", + "local_code": "47CA" + }, + { + "id": "45314", + "ident": "47CL", + "type": "heliport", + "name": "Spears Heliport", + "latitude_deg": "34.312935", + "longitude_deg": "-118.474331", + "elevation_ft": "1314", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Fernando", + "scheduled_service": "no", + "gps_code": "47CL", + "local_code": "47CL" + }, + { + "id": "11193", + "ident": "47CN", + "type": "heliport", + "name": "Pg&E Auburn Service Center Heliport", + "latitude_deg": "38.88800048828125", + "longitude_deg": "-121.07499694824219", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "47CN", + "local_code": "47CN" + }, + { + "id": "11194", + "ident": "47CO", + "type": "small_airport", + "name": "Mile Hi Airport", + "latitude_deg": "40.900001525878906", + "longitude_deg": "-104.83399963378906", + "elevation_ft": "5270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "New Raymer", + "scheduled_service": "no", + "gps_code": "47CO", + "local_code": "47CO" + }, + { + "id": "11195", + "ident": "47FD", + "type": "small_airport", + "name": "Strayhorn Ranch Airport", + "latitude_deg": "26.662799835205078", + "longitude_deg": "-81.77059936523438", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Myers", + "scheduled_service": "no", + "gps_code": "47FD", + "local_code": "47FD" + }, + { + "id": "11196", + "ident": "47FL", + "type": "small_airport", + "name": "Flying Exotics Airport", + "latitude_deg": "28.96419906616211", + "longitude_deg": "-81.77899932861328", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Weirsdale", + "scheduled_service": "no", + "gps_code": "47FL", + "local_code": "47FL" + }, + { + "id": "11197", + "ident": "47G", + "type": "small_airport", + "name": "Mayes Airport", + "latitude_deg": "43.24089813232422", + "longitude_deg": "-84.87999725341797", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Carson City", + "scheduled_service": "no", + "gps_code": "47G", + "local_code": "47G" + }, + { + "id": "11198", + "ident": "47GA", + "type": "small_airport", + "name": "Everidge Airport", + "latitude_deg": "32.220674", + "longitude_deg": "-83.855909", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Pinehurst", + "scheduled_service": "no", + "gps_code": "47GA", + "local_code": "47GA", + "keywords": "Everidge Aerial Farming" + }, + { + "id": "11199", + "ident": "47II", + "type": "small_airport", + "name": "Westrick Airport", + "latitude_deg": "41.05619812011719", + "longitude_deg": "-85.69049835205078", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Liberty Mills", + "scheduled_service": "no", + "gps_code": "47II", + "local_code": "47II" + }, + { + "id": "11200", + "ident": "47IL", + "type": "small_airport", + "name": "Godbee RLA Restricted Landing Area", + "latitude_deg": "40.9506988525", + "longitude_deg": "-88.2705993652", + "elevation_ft": "694", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Kempton", + "scheduled_service": "no", + "gps_code": "47IL", + "local_code": "47IL" + }, + { + "id": "11201", + "ident": "47IN", + "type": "small_airport", + "name": "Mann Airport", + "latitude_deg": "38.988399505615234", + "longitude_deg": "-87.51809692382812", + "elevation_ft": "428", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Merom", + "scheduled_service": "no", + "gps_code": "47IN", + "local_code": "47IN" + }, + { + "id": "11202", + "ident": "47IS", + "type": "small_airport", + "name": "Flying Z Ranch Airport", + "latitude_deg": "42.49169921875", + "longitude_deg": "-89.35690307617188", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Durand", + "scheduled_service": "no", + "gps_code": "47IS", + "local_code": "47IS" + }, + { + "id": "11203", + "ident": "47KS", + "type": "small_airport", + "name": "Maxwell Airport", + "latitude_deg": "38.770599365234375", + "longitude_deg": "-95.27439880371094", + "elevation_ft": "1011", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Baldwin City", + "scheduled_service": "no", + "gps_code": "47KS", + "local_code": "47KS" + }, + { + "id": "11204", + "ident": "47KY", + "type": "heliport", + "name": "B. M. H. Heliport", + "latitude_deg": "37.766700744628906", + "longitude_deg": "-86.44110107421875", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Hardinsburg", + "scheduled_service": "no", + "gps_code": "47KY", + "local_code": "47KY" + }, + { + "id": "11205", + "ident": "47LA", + "type": "heliport", + "name": "Christus Ochsner St Patrick Hospital Heliport", + "latitude_deg": "30.215411", + "longitude_deg": "-93.227035", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Charles", + "scheduled_service": "no", + "gps_code": "47LA", + "local_code": "47LA" + }, + { + "id": "11206", + "ident": "47M", + "type": "small_airport", + "name": "Thornton Airport", + "latitude_deg": "35.68539810180664", + "longitude_deg": "-89.20449829101562", + "elevation_ft": "351", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Brownsville", + "scheduled_service": "no", + "gps_code": "47M", + "local_code": "47M" + }, + { + "id": "11207", + "ident": "47MA", + "type": "heliport", + "name": "Devon Glen Heliport", + "latitude_deg": "42.6234016418457", + "longitude_deg": "-70.86620330810547", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "47MA", + "local_code": "47MA" + }, + { + "id": "356195", + "ident": "47ME", + "type": "heliport", + "name": "Sebasticook Valley Hospital Heliport", + "latitude_deg": "44.789602", + "longitude_deg": "-69.370219", + "elevation_ft": "306", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Pittsfield", + "scheduled_service": "no", + "gps_code": "47ME", + "local_code": "47ME" + }, + { + "id": "11208", + "ident": "47MI", + "type": "closed", + "name": "Kenneth Hayward Airport", + "latitude_deg": "43.533401", + "longitude_deg": "-83.854103", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Bay City", + "scheduled_service": "no", + "keywords": "47MI" + }, + { + "id": "11209", + "ident": "47MN", + "type": "small_airport", + "name": "Sons Private-Commercial Airport", + "latitude_deg": "44.7053", + "longitude_deg": "-93.85495", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Norwood Young America", + "scheduled_service": "no", + "gps_code": "47MN", + "local_code": "47MN" + }, + { + "id": "11210", + "ident": "47MO", + "type": "small_airport", + "name": "Cliff Scott Airport", + "latitude_deg": "39.740299224853516", + "longitude_deg": "-93.9905014038086", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "47MO", + "local_code": "47MO" + }, + { + "id": "11211", + "ident": "47NC", + "type": "small_airport", + "name": "Windemere Airport", + "latitude_deg": "35.138099670410156", + "longitude_deg": "-78.82279968261719", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "47NC", + "local_code": "47NC" + }, + { + "id": "11212", + "ident": "47NE", + "type": "heliport", + "name": "Bryan Lincoln General Hospital Heliport", + "latitude_deg": "40.789648", + "longitude_deg": "-96.698291", + "elevation_ft": "1204", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "47NE", + "local_code": "47NE" + }, + { + "id": "11213", + "ident": "47NJ", + "type": "heliport", + "name": "Metropolitan Electric Heliport", + "latitude_deg": "40.887298583984375", + "longitude_deg": "-74.16380310058594", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Clifton", + "scheduled_service": "no", + "gps_code": "47NJ", + "local_code": "47NJ" + }, + { + "id": "11214", + "ident": "47NY", + "type": "small_airport", + "name": "Elk Creek Airport", + "latitude_deg": "42.04499816894531", + "longitude_deg": "-77.3499984741211", + "elevation_ft": "1540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Borden", + "scheduled_service": "no", + "gps_code": "47NY", + "local_code": "47NY" + }, + { + "id": "11215", + "ident": "47OH", + "type": "closed", + "name": "Chapin Airport", + "latitude_deg": "41.201099", + "longitude_deg": "-82.573027", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Norwalk", + "scheduled_service": "no", + "keywords": "47OH" + }, + { + "id": "11216", + "ident": "47OI", + "type": "heliport", + "name": "Wadsworth-Rittman Hospital Heliport", + "latitude_deg": "41.027766", + "longitude_deg": "-81.750595", + "elevation_ft": "1115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wadsworth", + "scheduled_service": "no", + "gps_code": "47OI", + "local_code": "47OI" + }, + { + "id": "11217", + "ident": "47OK", + "type": "small_airport", + "name": "Harman Airport", + "latitude_deg": "35.58369827270508", + "longitude_deg": "-98.04010009765625", + "elevation_ft": "1345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Calumet", + "scheduled_service": "no", + "gps_code": "47OK", + "local_code": "47OK" + }, + { + "id": "11218", + "ident": "47OR", + "type": "small_airport", + "name": "Mc Ranch Airport", + "latitude_deg": "42.1649017334", + "longitude_deg": "-119.904998779", + "elevation_ft": "4555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Adel", + "scheduled_service": "no", + "gps_code": "47OR", + "local_code": "47OR" + }, + { + "id": "11219", + "ident": "47PA", + "type": "small_airport", + "name": "Homan Airport", + "latitude_deg": "40.71670150756836", + "longitude_deg": "-77.98310089111328", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "State College", + "scheduled_service": "no", + "gps_code": "47PA", + "local_code": "47PA" + }, + { + "id": "11220", + "ident": "47PN", + "type": "heliport", + "name": "Bristol Usar Center Heliport", + "latitude_deg": "40.12229919433594", + "longitude_deg": "-74.89679718017578", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bristol", + "scheduled_service": "no", + "gps_code": "47PN", + "local_code": "47PN" + }, + { + "id": "11221", + "ident": "47TA", + "type": "small_airport", + "name": "Pleasure Field", + "latitude_deg": "33.25600051879883", + "longitude_deg": "-96.88529968261719", + "elevation_ft": "604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Prosper", + "scheduled_service": "no", + "gps_code": "47TA", + "local_code": "47TA" + }, + { + "id": "11222", + "ident": "47TE", + "type": "small_airport", + "name": "Whites Airport", + "latitude_deg": "28.851699829101562", + "longitude_deg": "-96.49749755859375", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "La Ward", + "scheduled_service": "no", + "gps_code": "47TE", + "local_code": "47TE" + }, + { + "id": "45786", + "ident": "47TN", + "type": "heliport", + "name": "Cabin Pad Heliport", + "latitude_deg": "36.469722", + "longitude_deg": "-88.092222", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "47TN", + "local_code": "47TN" + }, + { + "id": "11223", + "ident": "47TS", + "type": "small_airport", + "name": "Hensarling Airport", + "latitude_deg": "31.04800033569336", + "longitude_deg": "-95.9177017211914", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Madisonville", + "scheduled_service": "no", + "gps_code": "47TS", + "local_code": "47TS" + }, + { + "id": "11224", + "ident": "47TX", + "type": "small_airport", + "name": "Armstrong Ranch Airport", + "latitude_deg": "26.933900833129883", + "longitude_deg": "-97.76249694824219", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Armstrong", + "scheduled_service": "no", + "gps_code": "47TX", + "local_code": "47TX" + }, + { + "id": "11225", + "ident": "47VA", + "type": "heliport", + "name": "Division Five Heliport", + "latitude_deg": "36.79600143432617", + "longitude_deg": "-76.23799896240234", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Chesapeake", + "scheduled_service": "no", + "gps_code": "47VA", + "local_code": "47VA" + }, + { + "id": "351643", + "ident": "47VG", + "type": "heliport", + "name": "Bath Community Hospital Heliport", + "latitude_deg": "37.993351", + "longitude_deg": "-79.831853", + "elevation_ft": "2365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Hot Springs", + "scheduled_service": "no", + "gps_code": "47VG", + "local_code": "47VG" + }, + { + "id": "330461", + "ident": "47VT", + "type": "small_airport", + "name": "Cub Field", + "latitude_deg": "44.125677", + "longitude_deg": "-73.369616", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Panton", + "scheduled_service": "no", + "gps_code": "47VT", + "local_code": "47VT" + }, + { + "id": "11226", + "ident": "47WA", + "type": "heliport", + "name": "Fitz Pad 1 Heliport", + "latitude_deg": "47.78419876098633", + "longitude_deg": "-122.14199829101562", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Woodinville", + "scheduled_service": "no", + "gps_code": "47WA", + "local_code": "47WA" + }, + { + "id": "11227", + "ident": "47WI", + "type": "small_airport", + "name": "Oakbrook Airport", + "latitude_deg": "42.89073", + "longitude_deg": "-88.808609", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Fort Atkinson", + "scheduled_service": "no", + "gps_code": "47WI", + "local_code": "47WI" + }, + { + "id": "349107", + "ident": "47XA", + "type": "small_airport", + "name": "Luv Field", + "latitude_deg": "30.506519", + "longitude_deg": "-97.41354", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Taylor", + "scheduled_service": "no", + "gps_code": "47XA", + "local_code": "47XA" + }, + { + "id": "11228", + "ident": "47XS", + "type": "small_airport", + "name": "Bartos Farm Airport", + "latitude_deg": "33.47249984741211", + "longitude_deg": "-101.78500366210938", + "elevation_ft": "3153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lubbock", + "scheduled_service": "no", + "gps_code": "47XS", + "local_code": "47XS" + }, + { + "id": "11229", + "ident": "47Y", + "type": "small_airport", + "name": "Pelican Rapids Muni-Lyon's Field", + "latitude_deg": "46.6416015625", + "longitude_deg": "-96.1044998169", + "elevation_ft": "1389", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Pelican Rapids", + "scheduled_service": "no", + "gps_code": "47Y", + "local_code": "47Y" + }, + { + "id": "11230", + "ident": "48AK", + "type": "small_airport", + "name": "Castle Mountain Airstrip", + "latitude_deg": "61.7960412696", + "longitude_deg": "-148.494161367", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sutton/Chickaloon", + "scheduled_service": "no", + "gps_code": "48AK", + "local_code": "48AK" + }, + { + "id": "346214", + "ident": "48AR", + "type": "small_airport", + "name": "Whirlwind Aviation Airport", + "latitude_deg": "35.484715", + "longitude_deg": "-90.841119", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Fisher", + "scheduled_service": "no", + "gps_code": "48AR", + "local_code": "48AR" + }, + { + "id": "11231", + "ident": "48AZ", + "type": "small_airport", + "name": "Rimrock Airport", + "latitude_deg": "34.650668", + "longitude_deg": "-111.788313", + "elevation_ft": "3575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Rimrock", + "scheduled_service": "no", + "gps_code": "48AZ", + "local_code": "48AZ" + }, + { + "id": "11232", + "ident": "48CA", + "type": "heliport", + "name": "Huntington Beach Service Center Heliport", + "latitude_deg": "33.74530029296875", + "longitude_deg": "-118", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Westminster", + "scheduled_service": "no", + "gps_code": "48CA", + "local_code": "48CA" + }, + { + "id": "11233", + "ident": "48CL", + "type": "heliport", + "name": "Grass Valley Service Center Heliport", + "latitude_deg": "39.19990158081055", + "longitude_deg": "-121.05899810791016", + "elevation_ft": "2430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Grass Valley", + "scheduled_service": "no", + "gps_code": "48CL", + "local_code": "48CL" + }, + { + "id": "11234", + "ident": "48CN", + "type": "closed", + "name": "Sallaberry Ranch Strip", + "latitude_deg": "37.057201", + "longitude_deg": "-120.143997", + "elevation_ft": "263", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Madera", + "scheduled_service": "no", + "keywords": "48CN" + }, + { + "id": "11235", + "ident": "48CO", + "type": "small_airport", + "name": "Shaull Farm Airstrip", + "latitude_deg": "40.72159957885742", + "longitude_deg": "-104.77799987792969", + "elevation_ft": "5235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Nunn", + "scheduled_service": "no", + "gps_code": "48CO", + "local_code": "48CO" + }, + { + "id": "11236", + "ident": "48FD", + "type": "heliport", + "name": "Delray Medical Center Emergency Helistop", + "latitude_deg": "26.438016", + "longitude_deg": "-80.127703", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Delray Beach", + "scheduled_service": "no", + "gps_code": "48FD", + "local_code": "48FD", + "keywords": "Delray Community Hosp" + }, + { + "id": "11237", + "ident": "48FL", + "type": "small_airport", + "name": "Mc Kinnon Airpark", + "latitude_deg": "30.8141002655", + "longitude_deg": "-87.47499847410002", + "elevation_ft": "227", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Walnut Hill", + "scheduled_service": "no", + "gps_code": "48FL", + "local_code": "48FL" + }, + { + "id": "11238", + "ident": "48G", + "type": "small_airport", + "name": "Gavagan Field", + "latitude_deg": "43.10340118408203", + "longitude_deg": "-82.89019775390625", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Yale", + "scheduled_service": "no", + "gps_code": "48G", + "local_code": "48G" + }, + { + "id": "11239", + "ident": "48GA", + "type": "heliport", + "name": "Fairview Park Hospital Heliport", + "latitude_deg": "32.532901763916016", + "longitude_deg": "-82.95099639892578", + "elevation_ft": "279", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Dublin", + "scheduled_service": "no", + "gps_code": "48GA", + "local_code": "48GA" + }, + { + "id": "11240", + "ident": "48II", + "type": "closed", + "name": "Cedar Creek Airport", + "latitude_deg": "41.19056", + "longitude_deg": "-85.028794", + "elevation_ft": "792", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Cedarville", + "scheduled_service": "no", + "keywords": "48II" + }, + { + "id": "11241", + "ident": "48IL", + "type": "closed", + "name": "Lake West Wind Airport", + "latitude_deg": "38.970001", + "longitude_deg": "-90.247202", + "elevation_ft": "601", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Godfrey", + "scheduled_service": "no", + "keywords": "48IL" + }, + { + "id": "11242", + "ident": "48IN", + "type": "heliport", + "name": "123 Arcom Heliport", + "latitude_deg": "39.8588981628418", + "longitude_deg": "-85.99829864501953", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "48IN", + "local_code": "48IN" + }, + { + "id": "11243", + "ident": "48IS", + "type": "small_airport", + "name": "P.J. Killian Airport", + "latitude_deg": "40.60219955444336", + "longitude_deg": "-88.8333969116211", + "elevation_ft": "757", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "48IS", + "local_code": "48IS" + }, + { + "id": "11244", + "ident": "48KS", + "type": "small_airport", + "name": "R F Roesner Airport", + "latitude_deg": "38.811100006103516", + "longitude_deg": "-97.431396484375", + "elevation_ft": "1230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Salina", + "scheduled_service": "no", + "gps_code": "48KS", + "local_code": "48KS" + }, + { + "id": "45429", + "ident": "48KY", + "type": "heliport", + "name": "Westlake Regional Hospital Heliport", + "latitude_deg": "37.097194", + "longitude_deg": "-85.29535", + "elevation_ft": "803", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "48KY", + "local_code": "48KY" + }, + { + "id": "11245", + "ident": "48LA", + "type": "heliport", + "name": "Chevron Place Heliport", + "latitude_deg": "29.952999114990234", + "longitude_deg": "-90.0730972290039", + "elevation_ft": "273", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no", + "gps_code": "48LA", + "local_code": "48LA" + }, + { + "id": "11246", + "ident": "48LL", + "type": "small_airport", + "name": "Rock Cut Farms Airport", + "latitude_deg": "42.125575", + "longitude_deg": "-89.460555", + "elevation_ft": "812", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Leaf River", + "scheduled_service": "no", + "gps_code": "48LL", + "local_code": "48LL" + }, + { + "id": "345394", + "ident": "48LS", + "type": "heliport", + "name": "Our Lady of Lourdes Regional Medical Center Heliport", + "latitude_deg": "30.151714", + "longitude_deg": "-92.035722", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "48LS", + "local_code": "48LS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Our_Lady_of_Lourdes_Regional_Medical_Center" + }, + { + "id": "46294", + "ident": "48MD", + "type": "small_airport", + "name": "Le Champ Airport", + "latitude_deg": "38.149062", + "longitude_deg": "-75.662161", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Princess Anne", + "scheduled_service": "no", + "gps_code": "48MD", + "local_code": "48MD" + }, + { + "id": "11247", + "ident": "48MI", + "type": "heliport", + "name": "Manju Heliport", + "latitude_deg": "42.72740173339844", + "longitude_deg": "-85.7155990600586", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Dorr", + "scheduled_service": "no", + "gps_code": "48MI", + "local_code": "48MI" + }, + { + "id": "347163", + "ident": "48MN", + "type": "heliport", + "name": "Northfield Hospital Heliport", + "latitude_deg": "44.474155", + "longitude_deg": "-93.191925", + "elevation_ft": "1035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Northfield", + "scheduled_service": "no", + "gps_code": "48MN", + "local_code": "48MN" + }, + { + "id": "11248", + "ident": "48MO", + "type": "heliport", + "name": "Lions Emergency Evac Heliport", + "latitude_deg": "38.62730026245117", + "longitude_deg": "-92.53990173339844", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "California", + "scheduled_service": "no", + "gps_code": "48MO", + "local_code": "48MO" + }, + { + "id": "45514", + "ident": "48MT", + "type": "heliport", + "name": "The Landing Zone Heliport", + "latitude_deg": "46.446667", + "longitude_deg": "-114.061667", + "elevation_ft": "3680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Stevensville", + "scheduled_service": "no", + "gps_code": "48MT", + "local_code": "48MT" + }, + { + "id": "11249", + "ident": "48NC", + "type": "small_airport", + "name": "Morrison Field", + "latitude_deg": "35.781700134277344", + "longitude_deg": "-80.41690063476562", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "48NC", + "local_code": "48NC" + }, + { + "id": "11250", + "ident": "48ND", + "type": "small_airport", + "name": "Schirmeister Private Airport", + "latitude_deg": "46.51250076293945", + "longitude_deg": "-100.55000305175781", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Hazelton", + "scheduled_service": "no", + "gps_code": "48ND", + "local_code": "48ND" + }, + { + "id": "11251", + "ident": "48NE", + "type": "heliport", + "name": "Valley Fire/Rescue Dist & Emerg Service Heliport", + "latitude_deg": "41.3111000061", + "longitude_deg": "-96.34750366210001", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Valley", + "scheduled_service": "no", + "gps_code": "48NE", + "local_code": "48NE" + }, + { + "id": "11252", + "ident": "48NH", + "type": "seaplane_base", + "name": "Winter Harbor Seaplane Base", + "latitude_deg": "43.59389877319336", + "longitude_deg": "-71.26139831542969", + "elevation_ft": "504", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Wolfeboro", + "scheduled_service": "no", + "gps_code": "48NH", + "local_code": "48NH" + }, + { + "id": "11253", + "ident": "48NJ", + "type": "heliport", + "name": "Southern Training Center Heliport", + "latitude_deg": "39.561500549316406", + "longitude_deg": "-75.4791030883789", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "48NJ", + "local_code": "48NJ" + }, + { + "id": "11254", + "ident": "48NY", + "type": "closed", + "name": "Tennessee Gas Nr 2 Heliport", + "latitude_deg": "42.675097", + "longitude_deg": "-78.830299", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hamburg", + "scheduled_service": "no", + "keywords": "48NY" + }, + { + "id": "11255", + "ident": "48OH", + "type": "closed", + "name": "Dechant Farms Airport", + "latitude_deg": "41.2542", + "longitude_deg": "-82.197098", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Oberlin", + "scheduled_service": "no", + "keywords": "48OH" + }, + { + "id": "11256", + "ident": "48OI", + "type": "heliport", + "name": "Mansfield Cpc Heliport", + "latitude_deg": "40.773399353027344", + "longitude_deg": "-82.60179901123047", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mansfield", + "scheduled_service": "no", + "gps_code": "48OI", + "local_code": "48OI" + }, + { + "id": "11257", + "ident": "48OK", + "type": "closed", + "name": "Rafter R Ranch Airport", + "latitude_deg": "35.42414", + "longitude_deg": "-95.4962", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Checotah", + "scheduled_service": "no", + "keywords": "48OK" + }, + { + "id": "11258", + "ident": "48OR", + "type": "small_airport", + "name": "Lookingglass Airport", + "latitude_deg": "43.1593017578125", + "longitude_deg": "-123.50199890136719", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Roseburg", + "scheduled_service": "no", + "gps_code": "48OR", + "local_code": "48OR" + }, + { + "id": "11259", + "ident": "48P", + "type": "small_airport", + "name": "Rocky Hill Ultralightport", + "latitude_deg": "41.148575", + "longitude_deg": "-75.27518", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Cresco", + "scheduled_service": "no", + "gps_code": "K48P", + "local_code": "48P" + }, + { + "id": "11260", + "ident": "48PA", + "type": "heliport", + "name": "Veterans Heliport", + "latitude_deg": "40.58729934692383", + "longitude_deg": "-76.54329681396484", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tower City", + "scheduled_service": "no", + "gps_code": "48PA", + "local_code": "48PA" + }, + { + "id": "346086", + "ident": "48PN", + "type": "heliport", + "name": "Wilson Heliport", + "latitude_deg": "39.904247", + "longitude_deg": "-76.914248", + "elevation_ft": "577", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Spring Grove", + "scheduled_service": "no", + "gps_code": "48PN", + "local_code": "48PN" + }, + { + "id": "11261", + "ident": "48SN", + "type": "heliport", + "name": "Lifeteam 20 Heliport", + "latitude_deg": "37.743402", + "longitude_deg": "-97.224197", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wichita", + "scheduled_service": "no", + "gps_code": "48SN", + "local_code": "48SN" + }, + { + "id": "11262", + "ident": "48T", + "type": "closed", + "name": "Bamberger Ranch Airport", + "latitude_deg": "30.206639", + "longitude_deg": "-98.41169", + "elevation_ft": "1540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Johnson City", + "scheduled_service": "no", + "keywords": "48T" + }, + { + "id": "11263", + "ident": "48TA", + "type": "heliport", + "name": "Hamlin Memorial Hospital Heliport", + "latitude_deg": "32.88570022583008", + "longitude_deg": "-100.13500213623047", + "elevation_ft": "1750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hamlin", + "scheduled_service": "no", + "gps_code": "48TA", + "local_code": "48TA" + }, + { + "id": "11264", + "ident": "48TE", + "type": "small_airport", + "name": "4M Ranch Airfield", + "latitude_deg": "30.021", + "longitude_deg": "-101.573056", + "elevation_ft": "1824", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Langtry", + "scheduled_service": "no", + "gps_code": "48TE", + "local_code": "48TE" + }, + { + "id": "11265", + "ident": "48TS", + "type": "small_airport", + "name": "Fox Airport", + "latitude_deg": "29.667699813842773", + "longitude_deg": "-98.19889831542969", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "New Braunfels", + "scheduled_service": "no", + "gps_code": "48TS", + "local_code": "48TS" + }, + { + "id": "11266", + "ident": "48TX", + "type": "small_airport", + "name": "Tri-County Aerodrome", + "latitude_deg": "33.451793", + "longitude_deg": "-96.377377", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Trenton", + "scheduled_service": "no", + "gps_code": "48TX", + "local_code": "48TX" + }, + { + "id": "11267", + "ident": "48U", + "type": "small_airport", + "name": "Greater Green River Intergalactic Spaceport", + "latitude_deg": "41.458", + "longitude_deg": "-109.489998", + "elevation_ft": "7182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Green River", + "scheduled_service": "no", + "gps_code": "K48U", + "local_code": "48U" + }, + { + "id": "11268", + "ident": "48VA", + "type": "small_airport", + "name": "Al's Field", + "latitude_deg": "39.29069900512695", + "longitude_deg": "-78.35079956054688", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Gore", + "scheduled_service": "no", + "gps_code": "48VA", + "local_code": "48VA" + }, + { + "id": "45867", + "ident": "48VT", + "type": "seaplane_base", + "name": "Cub Cove Seaplane Base", + "latitude_deg": "44.553547", + "longitude_deg": "-73.231497", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Colchester", + "scheduled_service": "no", + "gps_code": "48VT", + "local_code": "48VT" + }, + { + "id": "11269", + "ident": "48WA", + "type": "small_airport", + "name": "West Valley Airport", + "latitude_deg": "46.562193", + "longitude_deg": "-120.780311", + "elevation_ft": "1900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Yakima", + "scheduled_service": "no", + "gps_code": "48WA", + "local_code": "48WA", + "keywords": "Falcon Ridge Airpark" + }, + { + "id": "11270", + "ident": "48WI", + "type": "small_airport", + "name": "Circle A Ranch Airport", + "latitude_deg": "45.793800354003906", + "longitude_deg": "-89.7301025390625", + "elevation_ft": "1640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Hazelhurst", + "scheduled_service": "no", + "gps_code": "48WI", + "local_code": "48WI" + }, + { + "id": "11271", + "ident": "48X", + "type": "small_airport", + "name": "Airport Manatee Airport", + "latitude_deg": "27.642499923706055", + "longitude_deg": "-82.5208969116211", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Palmetto", + "scheduled_service": "no", + "gps_code": "48X", + "local_code": "48X" + }, + { + "id": "346249", + "ident": "48XA", + "type": "small_airport", + "name": "Spring Ranch Airport", + "latitude_deg": "32.319357", + "longitude_deg": "-98.98797", + "elevation_ft": "1652", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cisco", + "scheduled_service": "no", + "gps_code": "48XA", + "local_code": "48XA" + }, + { + "id": "11272", + "ident": "48XS", + "type": "small_airport", + "name": "Maravillas Gap Ranch Airport", + "latitude_deg": "29.926599502563477", + "longitude_deg": "-103.29499816894531", + "elevation_ft": "3325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no", + "gps_code": "48XS", + "local_code": "48XS" + }, + { + "id": "18795", + "ident": "48Y", + "type": "small_airport", + "name": "Piney Pinecreek Border Airport", + "latitude_deg": "48.99959945678711", + "longitude_deg": "-95.98259735107422", + "elevation_ft": "1078", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Pinecreek", + "scheduled_service": "no", + "gps_code": "48Y", + "local_code": "48Y", + "wikipedia_link": "https://en.wikipedia.org/wiki/Piney_Pinecreek_Border_Airport" + }, + { + "id": "11273", + "ident": "49AK", + "type": "small_airport", + "name": "Secluded Lake Airport", + "latitude_deg": "62.025568", + "longitude_deg": "-149.979058", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Talkeetna", + "scheduled_service": "no", + "gps_code": "49AK", + "local_code": "49AK" + }, + { + "id": "347463", + "ident": "49AR", + "type": "small_airport", + "name": "Sid's Place Airport", + "latitude_deg": "34.214444", + "longitude_deg": "-91.457778", + "elevation_ft": "194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "DeWitt", + "scheduled_service": "no", + "gps_code": "49AR", + "local_code": "49AR" + }, + { + "id": "11274", + "ident": "49AZ", + "type": "small_airport", + "name": "Rock Point Airport", + "latitude_deg": "36.73325", + "longitude_deg": "-109.61716", + "elevation_ft": "4999", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Rock Point", + "scheduled_service": "no", + "gps_code": "49AZ", + "local_code": "49AZ", + "keywords": "Tsé Nitsaa Deezʼáhí" + }, + { + "id": "11275", + "ident": "49C", + "type": "small_airport", + "name": "Camp Lake Airport", + "latitude_deg": "42.53340148925781", + "longitude_deg": "-88.15840148925781", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Camp Lake", + "scheduled_service": "no", + "gps_code": "49C", + "local_code": "49C" + }, + { + "id": "11276", + "ident": "49CA", + "type": "heliport", + "name": "DCOR Platform Habitat Heliport", + "latitude_deg": "34.286619", + "longitude_deg": "-119.589343", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Carpinteria", + "scheduled_service": "no", + "gps_code": "49CA", + "local_code": "49CA", + "keywords": "Texaco Platform Habitat Heliport" + }, + { + "id": "11277", + "ident": "49CL", + "type": "small_airport", + "name": "El Peco Ranch Airport", + "latitude_deg": "36.90549850463867", + "longitude_deg": "-120.177001953125", + "elevation_ft": "213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Madera", + "scheduled_service": "no", + "gps_code": "49CL", + "local_code": "49CL" + }, + { + "id": "11278", + "ident": "49CN", + "type": "small_airport", + "name": "Rancho Tehama Airport", + "latitude_deg": "40.01599884033203", + "longitude_deg": "-122.38999938964844", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Red Bluff", + "scheduled_service": "no", + "gps_code": "49CN", + "local_code": "49CN" + }, + { + "id": "11279", + "ident": "49CO", + "type": "small_airport", + "name": "Air Dusters Inc Airport", + "latitude_deg": "40.093299865722656", + "longitude_deg": "-104.375", + "elevation_ft": "4780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Roggen", + "scheduled_service": "no", + "gps_code": "49CO", + "local_code": "49CO" + }, + { + "id": "11280", + "ident": "49F", + "type": "small_airport", + "name": "Rankin Airport", + "latitude_deg": "31.227399826049805", + "longitude_deg": "-101.9530029296875", + "elevation_ft": "2543", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rankin", + "scheduled_service": "no", + "gps_code": "49F", + "local_code": "49F" + }, + { + "id": "45363", + "ident": "49FD", + "type": "small_airport", + "name": "Watson Farm Airport", + "latitude_deg": "30.611944", + "longitude_deg": "-84.641667", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Quincy", + "scheduled_service": "no", + "gps_code": "49FD", + "local_code": "49FD" + }, + { + "id": "11281", + "ident": "49FL", + "type": "small_airport", + "name": "Mike's Ag Air Airport", + "latitude_deg": "30.977100372299997", + "longitude_deg": "-87.4950027466", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Walnut Hill", + "scheduled_service": "no", + "gps_code": "49FL", + "local_code": "49FL" + }, + { + "id": "11282", + "ident": "49G", + "type": "small_airport", + "name": "Wend Valley Airport", + "latitude_deg": "42.579007", + "longitude_deg": "-84.908947", + "elevation_ft": "859", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Charlotte", + "scheduled_service": "no", + "gps_code": "K49G", + "local_code": "49G" + }, + { + "id": "11283", + "ident": "49GA", + "type": "heliport", + "name": "Southern Regional Medical Center Heliport", + "latitude_deg": "33.5796012878418", + "longitude_deg": "-84.38909912109375", + "elevation_ft": "821", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Riverdale", + "scheduled_service": "no", + "gps_code": "49GA", + "local_code": "49GA" + }, + { + "id": "11284", + "ident": "49II", + "type": "small_airport", + "name": "Reinoehl Field", + "latitude_deg": "39.609798431396484", + "longitude_deg": "-87.01529693603516", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lena", + "scheduled_service": "no", + "gps_code": "49II", + "local_code": "49II" + }, + { + "id": "11285", + "ident": "49IL", + "type": "small_airport", + "name": "Walnut Creek Airport", + "latitude_deg": "41.593299865722656", + "longitude_deg": "-88.69170379638672", + "elevation_ft": "666", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Somonauk", + "scheduled_service": "no", + "gps_code": "49IL", + "local_code": "49IL" + }, + { + "id": "11286", + "ident": "49IN", + "type": "small_airport", + "name": "Drake Airport", + "latitude_deg": "39.131699", + "longitude_deg": "-87.382004", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Sullivan", + "scheduled_service": "no", + "gps_code": "49IN", + "local_code": "49IN" + }, + { + "id": "11287", + "ident": "49IS", + "type": "heliport", + "name": "Katherine Shaw Bethea Hospital Heliport", + "latitude_deg": "41.84450149536133", + "longitude_deg": "-89.47930145263672", + "elevation_ft": "582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Dixon", + "scheduled_service": "no", + "gps_code": "49IS", + "local_code": "49IS" + }, + { + "id": "11288", + "ident": "49K", + "type": "small_airport", + "name": "Norwich Airport", + "latitude_deg": "37.45560073852539", + "longitude_deg": "-97.83370208740234", + "elevation_ft": "1494", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Norwich", + "scheduled_service": "no", + "gps_code": "49K", + "local_code": "49K" + }, + { + "id": "11289", + "ident": "49KS", + "type": "small_airport", + "name": "N & N Airport", + "latitude_deg": "39.2140998840332", + "longitude_deg": "-96.67230224609375", + "elevation_ft": "1230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Manhattan", + "scheduled_service": "no", + "gps_code": "49KS", + "local_code": "49KS" + }, + { + "id": "11290", + "ident": "49KY", + "type": "heliport", + "name": "Morning Star Heliport", + "latitude_deg": "37.96369934082031", + "longitude_deg": "-84.37020111083984", + "elevation_ft": "916", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "49KY", + "local_code": "49KY" + }, + { + "id": "11291", + "ident": "49LA", + "type": "heliport", + "name": "Woman's Hospital Heliport", + "latitude_deg": "30.44659996032715", + "longitude_deg": "-91.09300231933594", + "elevation_ft": "47", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no", + "gps_code": "49LA", + "local_code": "49LA" + }, + { + "id": "11292", + "ident": "49LL", + "type": "heliport", + "name": "Decatur Conference Center and Hotel Heliport", + "latitude_deg": "39.846698761", + "longitude_deg": "-89.02700042720001", + "elevation_ft": "678", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Decatur", + "scheduled_service": "no", + "gps_code": "49LL", + "local_code": "49LL" + }, + { + "id": "332492", + "ident": "49LS", + "type": "heliport", + "name": "Empire Terminal Heliport", + "latitude_deg": "29.373284", + "longitude_deg": "-89.549137", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Buras", + "scheduled_service": "no", + "gps_code": "49LS", + "local_code": "49LS" + }, + { + "id": "356197", + "ident": "49ME", + "type": "heliport", + "name": "Inland Hospital Heliport", + "latitude_deg": "44.542114", + "longitude_deg": "-69.661238", + "elevation_ft": "227", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Waterville", + "scheduled_service": "no", + "gps_code": "49ME", + "local_code": "49ME" + }, + { + "id": "11293", + "ident": "49MI", + "type": "closed", + "name": "Tegethoff Heliport", + "latitude_deg": "42.638302", + "longitude_deg": "-85.584396", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Wayland", + "scheduled_service": "no", + "keywords": "49MI" + }, + { + "id": "11294", + "ident": "49MN", + "type": "small_airport", + "name": "Willow Ridge Airport", + "latitude_deg": "44.671406", + "longitude_deg": "-92.827168", + "elevation_ft": "839", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hastings", + "scheduled_service": "no", + "gps_code": "49MN", + "local_code": "49MN" + }, + { + "id": "11295", + "ident": "49MO", + "type": "heliport", + "name": "Hermann Ii Heliport", + "latitude_deg": "38.621700286865234", + "longitude_deg": "-90.38899993896484", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no", + "gps_code": "49MO", + "local_code": "49MO" + }, + { + "id": "344846", + "ident": "49MT", + "type": "small_airport", + "name": "Firebuster Airport", + "latitude_deg": "45.605715", + "longitude_deg": "-109.121281", + "elevation_ft": "3901", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "49MT", + "local_code": "49MT" + }, + { + "id": "11296", + "ident": "49N", + "type": "small_airport", + "name": "Lufker Airport", + "latitude_deg": "40.824798583984375", + "longitude_deg": "-72.75090026855469", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "East Moriches", + "scheduled_service": "no", + "gps_code": "49N", + "local_code": "49N" + }, + { + "id": "11297", + "ident": "49NC", + "type": "heliport", + "name": "Wilkes Regional Medical Center Heliport", + "latitude_deg": "36.15919876098633", + "longitude_deg": "-81.15779876708984", + "elevation_ft": "985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "North Wilkesboro", + "scheduled_service": "no", + "gps_code": "49NC", + "local_code": "49NC" + }, + { + "id": "11298", + "ident": "49NE", + "type": "small_airport", + "name": "Harden Airstrip", + "latitude_deg": "41.06529998779297", + "longitude_deg": "-100.72799682617188", + "elevation_ft": "3006", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "North Platte", + "scheduled_service": "no", + "gps_code": "49NE", + "local_code": "49NE" + }, + { + "id": "11299", + "ident": "49NJ", + "type": "heliport", + "name": "Bertino Heliport", + "latitude_deg": "39.63570022583008", + "longitude_deg": "-74.7490005493164", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Hammonton", + "scheduled_service": "no", + "gps_code": "49NJ", + "local_code": "49NJ" + }, + { + "id": "350111", + "ident": "49NK", + "type": "small_airport", + "name": "Trump MTN Airport", + "latitude_deg": "42.793259", + "longitude_deg": "-78.292372", + "elevation_ft": "1501", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Attica", + "scheduled_service": "no", + "gps_code": "49NK", + "local_code": "49NK" + }, + { + "id": "429763", + "ident": "49NR", + "type": "small_airport", + "name": "Forty Niner at Middle Tract Airport", + "latitude_deg": "35.898333", + "longitude_deg": "-76.8625", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Windsor", + "scheduled_service": "no", + "gps_code": "49NR", + "local_code": "49NR" + }, + { + "id": "11300", + "ident": "49NY", + "type": "small_airport", + "name": "Westmoreland Airport", + "latitude_deg": "41.055672", + "longitude_deg": "-72.360486", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Shelter Island", + "scheduled_service": "no", + "gps_code": "49NY", + "local_code": "49NY" + }, + { + "id": "11301", + "ident": "49OH", + "type": "closed", + "name": "Gilbert Airport", + "latitude_deg": "41.3667", + "longitude_deg": "-81.966499", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Olmsted Falls", + "scheduled_service": "no", + "keywords": "49OH" + }, + { + "id": "11302", + "ident": "49OI", + "type": "closed", + "name": "Delaware Operations Heliport", + "latitude_deg": "41.670601", + "longitude_deg": "-83.5672", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Toledo", + "scheduled_service": "no", + "keywords": "49OI" + }, + { + "id": "11303", + "ident": "49OK", + "type": "heliport", + "name": "Holdenville General Hospital Heliport", + "latitude_deg": "35.088781", + "longitude_deg": "-96.379341", + "elevation_ft": "864", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Holdenville", + "scheduled_service": "no", + "gps_code": "49OK", + "local_code": "49OK" + }, + { + "id": "11304", + "ident": "49OR", + "type": "small_airport", + "name": "Land's Inn Ranch Airport", + "latitude_deg": "44.593065", + "longitude_deg": "-119.563694", + "elevation_ft": "3880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Dayville", + "scheduled_service": "no", + "gps_code": "49OR", + "local_code": "49OR" + }, + { + "id": "11305", + "ident": "49PA", + "type": "small_airport", + "name": "Gap View Airport", + "latitude_deg": "40.85929870605469", + "longitude_deg": "-75.13379669189453", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Stone Church", + "scheduled_service": "no", + "gps_code": "49PA", + "local_code": "49PA" + }, + { + "id": "11306", + "ident": "49PN", + "type": "heliport", + "name": "Geisinger Heliport", + "latitude_deg": "40.972900390625", + "longitude_deg": "-76.6041030883789", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "49PN", + "local_code": "49PN" + }, + { + "id": "11307", + "ident": "49S", + "type": "small_airport", + "name": "Babb Airport", + "latitude_deg": "48.845001220703125", + "longitude_deg": "-113.427001953125", + "elevation_ft": "4518", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Babb", + "scheduled_service": "no", + "gps_code": "49S", + "local_code": "49S" + }, + { + "id": "11308", + "ident": "49T", + "type": "heliport", + "name": "Dallas Cbd Vertiport Heliport", + "latitude_deg": "32.77330017089844", + "longitude_deg": "-96.80030059814453", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "49T", + "local_code": "49T" + }, + { + "id": "11309", + "ident": "49TA", + "type": "closed", + "name": "Roeder Airport", + "latitude_deg": "29.895727", + "longitude_deg": "-95.021083", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crosby", + "scheduled_service": "no", + "keywords": "49TA" + }, + { + "id": "11310", + "ident": "49TE", + "type": "small_airport", + "name": "K Star Ranch Airport", + "latitude_deg": "30.2835278", + "longitude_deg": "-96.4596111", + "elevation_ft": "397", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brenham", + "scheduled_service": "no", + "gps_code": "49TE", + "local_code": "49TE" + }, + { + "id": "329870", + "ident": "49TN", + "type": "heliport", + "name": "Sweetwater Fire Department Heliport", + "latitude_deg": "35.609276", + "longitude_deg": "-84.454841", + "elevation_ft": "968", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Sweetwater", + "scheduled_service": "no", + "gps_code": "49TN", + "local_code": "49TN" + }, + { + "id": "11311", + "ident": "49TS", + "type": "heliport", + "name": "Campus at Legacy Heliport", + "latitude_deg": "33.0723", + "longitude_deg": "-96.808899", + "elevation_ft": "697", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Plano", + "scheduled_service": "no", + "gps_code": "49TS", + "local_code": "49TS" + }, + { + "id": "11312", + "ident": "49TX", + "type": "heliport", + "name": "Valley Baptist Medical Center Helipad", + "latitude_deg": "26.175135", + "longitude_deg": "-97.669632", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Harlingen", + "scheduled_service": "no", + "gps_code": "49TX", + "local_code": "49TX" + }, + { + "id": "11313", + "ident": "49U", + "type": "small_airport", + "name": "Shoshoni Municipal Airport", + "latitude_deg": "43.251301", + "longitude_deg": "-108.121002", + "elevation_ft": "4817", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Shoshoni", + "scheduled_service": "no", + "gps_code": "KTBX", + "local_code": "49U" + }, + { + "id": "11314", + "ident": "49VA", + "type": "heliport", + "name": "Rappahannock General Hospital Heliport", + "latitude_deg": "37.704898834228516", + "longitude_deg": "-76.38379669189453", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Kilmarnnock", + "scheduled_service": "no", + "gps_code": "49VA", + "local_code": "49VA" + }, + { + "id": "11315", + "ident": "49WA", + "type": "small_airport", + "name": "Cougar Mountain Airfield", + "latitude_deg": "46.84700012207031", + "longitude_deg": "-122.52200317382812", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Yelm", + "scheduled_service": "no", + "gps_code": "49WA", + "local_code": "49WA" + }, + { + "id": "11316", + "ident": "49WI", + "type": "closed", + "name": "Tri-Center Airport", + "latitude_deg": "43.3792", + "longitude_deg": "-90.015404", + "elevation_ft": "1225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Loganville", + "scheduled_service": "no", + "keywords": "49WI" + }, + { + "id": "346913", + "ident": "49XA", + "type": "small_airport", + "name": "Omni Ranch Ultralight Flightpark", + "latitude_deg": "26.444628", + "longitude_deg": "-98.096628", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Edinburg", + "scheduled_service": "no", + "gps_code": "49XA", + "local_code": "49XA" + }, + { + "id": "11317", + "ident": "49XS", + "type": "small_airport", + "name": "McCasland Ranch Airport", + "latitude_deg": "31.448333", + "longitude_deg": "-98.321111", + "elevation_ft": "1370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Star", + "scheduled_service": "no", + "gps_code": "49XS", + "local_code": "49XS" + }, + { + "id": "11318", + "ident": "4A2", + "type": "small_airport", + "name": "Atmautluak Airport", + "latitude_deg": "60.866699", + "longitude_deg": "-162.272996", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Atmautluak", + "scheduled_service": "yes", + "iata_code": "ATT", + "local_code": "4A2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atmautluak_Airport", + "keywords": "08AK" + }, + { + "id": "11319", + "ident": "4A3", + "type": "seaplane_base", + "name": "Lake Lucille Seaplane Base", + "latitude_deg": "61.57460021972656", + "longitude_deg": "-149.47300720214844", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "4A3", + "local_code": "4A3" + }, + { + "id": "46295", + "ident": "4AA4", + "type": "heliport", + "name": "South Peninsula Hospital Heliport", + "latitude_deg": "59.652303", + "longitude_deg": "-151.549902", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Homer", + "scheduled_service": "no", + "gps_code": "4AA4", + "local_code": "4AA4" + }, + { + "id": "11320", + "ident": "4AK", + "type": "small_airport", + "name": "Livengood Camp Airport", + "latitude_deg": "65.467", + "longitude_deg": "-148.6534", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Livengood", + "scheduled_service": "no", + "gps_code": "4AK", + "iata_code": "LIV", + "local_code": "4AK" + }, + { + "id": "11321", + "ident": "4AK0", + "type": "seaplane_base", + "name": "Niklason Lake Seaplane Base", + "latitude_deg": "61.6291999817", + "longitude_deg": "-149.270996094", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "4AK0", + "local_code": "4AK0" + }, + { + "id": "11322", + "ident": "4AK1", + "type": "small_airport", + "name": "Inigok Airport", + "latitude_deg": "70.00379943847656", + "longitude_deg": "-153.0780029296875", + "elevation_ft": "192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Deadhorse", + "scheduled_service": "no", + "gps_code": "4AK1", + "local_code": "4AK1" + }, + { + "id": "11323", + "ident": "4AK2", + "type": "small_airport", + "name": "St John Homestead Airport", + "latitude_deg": "61.55799865722656", + "longitude_deg": "-149.4239959716797", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "4AK2", + "local_code": "4AK2" + }, + { + "id": "11324", + "ident": "4AK3", + "type": "small_airport", + "name": "Long Lake Airport", + "latitude_deg": "61.378011", + "longitude_deg": "-143.32105", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Long Lake", + "scheduled_service": "no", + "gps_code": "4AK3", + "local_code": "4AK3" + }, + { + "id": "11325", + "ident": "4AK5", + "type": "small_airport", + "name": "Mankomen Lake Airport", + "latitude_deg": "62.989898681640625", + "longitude_deg": "-144.47999572753906", + "elevation_ft": "3050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Mankomen Lake", + "scheduled_service": "no", + "gps_code": "4AK5", + "local_code": "4AK5" + }, + { + "id": "11326", + "ident": "4AK6", + "type": "small_airport", + "name": "Wolf Lake Airport", + "latitude_deg": "61.64099884033203", + "longitude_deg": "-149.28900146484375", + "elevation_ft": "572", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "4AK6", + "local_code": "4AK6" + }, + { + "id": "11327", + "ident": "4AK7", + "type": "small_airport", + "name": "Aleknagik Mission Lodge Airport", + "latitude_deg": "59.279999", + "longitude_deg": "-158.5971", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Aleknagik", + "scheduled_service": "no", + "gps_code": "4AK7", + "local_code": "4AK7" + }, + { + "id": "11328", + "ident": "4AK8", + "type": "small_airport", + "name": "Napaimute Pioneer Airfield", + "latitude_deg": "61.53630065917969", + "longitude_deg": "-158.73899841308594", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Napaimute", + "scheduled_service": "no", + "gps_code": "4AK8", + "local_code": "4AK8" + }, + { + "id": "11329", + "ident": "4AK9", + "type": "small_airport", + "name": "Tibbetts Airport", + "latitude_deg": "58.732899", + "longitude_deg": "-157.015975", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Naknek", + "scheduled_service": "no", + "gps_code": "4AK9", + "local_code": "4AK9" + }, + { + "id": "11330", + "ident": "4AL0", + "type": "closed", + "name": "WBRC-Tv Heliport", + "latitude_deg": "33.488602", + "longitude_deg": "-86.799402", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Birmingham", + "scheduled_service": "no", + "keywords": "4AL0" + }, + { + "id": "323178", + "ident": "4AL1", + "type": "heliport", + "name": "Tanner East Alabama Heliport", + "latitude_deg": "33.294637", + "longitude_deg": "-85.480305", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Wedowee", + "scheduled_service": "no", + "gps_code": "4AL1", + "local_code": "4AL1" + }, + { + "id": "11331", + "ident": "4AL2", + "type": "closed", + "name": "Irwin Farms Airport", + "latitude_deg": "30.373199", + "longitude_deg": "-87.725601", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Foley", + "scheduled_service": "no", + "keywords": "4AL2" + }, + { + "id": "11332", + "ident": "4AL3", + "type": "closed", + "name": "Wallace State College Heliport", + "latitude_deg": "34.066898", + "longitude_deg": "-86.790802", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Hanceville", + "scheduled_service": "no", + "keywords": "4AL3" + }, + { + "id": "11333", + "ident": "4AL4", + "type": "heliport", + "name": "Froberg Heliport", + "latitude_deg": "34.42720031738281", + "longitude_deg": "-86.91500091552734", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Hartselle", + "scheduled_service": "no", + "gps_code": "4AL4", + "local_code": "4AL4" + }, + { + "id": "11334", + "ident": "4AL5", + "type": "closed", + "name": "Spinelli Field", + "latitude_deg": "34.729198", + "longitude_deg": "-86.755302", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Madison", + "scheduled_service": "no", + "keywords": "4AL5" + }, + { + "id": "11335", + "ident": "4AL6", + "type": "small_airport", + "name": "Bonner Field", + "latitude_deg": "30.55827", + "longitude_deg": "-87.6527", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Summerdale", + "scheduled_service": "no", + "gps_code": "4AL6", + "local_code": "4AL6" + }, + { + "id": "11336", + "ident": "4AL7", + "type": "small_airport", + "name": "Leon's Landing Airport", + "latitude_deg": "34.74470138549805", + "longitude_deg": "-85.6897964477539", + "elevation_ft": "1430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Flat Rock", + "scheduled_service": "no", + "gps_code": "4AL7", + "local_code": "4AL7" + }, + { + "id": "11337", + "ident": "4AL8", + "type": "small_airport", + "name": "Milton Airport", + "latitude_deg": "34.4906005859375", + "longitude_deg": "-86.67330169677734", + "elevation_ft": "639", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Huntsville", + "scheduled_service": "no", + "gps_code": "4AL8", + "local_code": "4AL8" + }, + { + "id": "11338", + "ident": "4AL9", + "type": "small_airport", + "name": "T W Spear Memorial Airport", + "latitude_deg": "31.974700927699995", + "longitude_deg": "-86.2938995361", + "elevation_ft": "438", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Lapine", + "scheduled_service": "no", + "gps_code": "4AL9", + "local_code": "4AL9" + }, + { + "id": "11339", + "ident": "4AR0", + "type": "heliport", + "name": "St Mary's Regional Medical Center Heliport", + "latitude_deg": "35.2836990356", + "longitude_deg": "-93.1504974365", + "elevation_ft": "393", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Russellville", + "scheduled_service": "no", + "gps_code": "4AR0", + "local_code": "4AR0" + }, + { + "id": "11340", + "ident": "4AR1", + "type": "small_airport", + "name": "Shurley Field Airport", + "latitude_deg": "35.0411", + "longitude_deg": "-92.10008", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Cabot", + "scheduled_service": "no", + "gps_code": "4AR1", + "local_code": "4AR1" + }, + { + "id": "11341", + "ident": "4AR2", + "type": "small_airport", + "name": "Red Oak Airport", + "latitude_deg": "34.910462", + "longitude_deg": "-92.006932", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Cabot", + "scheduled_service": "no", + "gps_code": "4AR2", + "local_code": "4AR2" + }, + { + "id": "11342", + "ident": "4AR3", + "type": "heliport", + "name": "Conway Regional Health System Heliport", + "latitude_deg": "35.0853996277", + "longitude_deg": "-92.457901001", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Conway", + "scheduled_service": "no", + "gps_code": "4AR3", + "local_code": "4AR3" + }, + { + "id": "11343", + "ident": "4AR4", + "type": "closed", + "name": "Reed-Joseph Land Company Airport", + "latitude_deg": "33.347199", + "longitude_deg": "-93.741677", + "elevation_ft": "227", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Garland City", + "scheduled_service": "no", + "keywords": "4AR4" + }, + { + "id": "11344", + "ident": "4AR5", + "type": "small_airport", + "name": "Lawrence Field", + "latitude_deg": "35.37080001831055", + "longitude_deg": "-90.75060272216797", + "elevation_ft": "284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Cherry Valley", + "scheduled_service": "no", + "gps_code": "4AR5", + "local_code": "4AR5" + }, + { + "id": "11345", + "ident": "4AR6", + "type": "closed", + "name": "Williams Ranch Airport", + "latitude_deg": "34.376985", + "longitude_deg": "-93.633599", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Caddo Gap", + "scheduled_service": "no", + "keywords": "4AR6" + }, + { + "id": "11346", + "ident": "4AR7", + "type": "small_airport", + "name": "Worth James Ranch Airport", + "latitude_deg": "35.08340072631836", + "longitude_deg": "-94.11689758300781", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Booneville", + "scheduled_service": "no", + "gps_code": "4AR7", + "local_code": "4AR7" + }, + { + "id": "11347", + "ident": "4AR8", + "type": "heliport", + "name": "Washington Regional Landing Heliport", + "latitude_deg": "36.10810089111328", + "longitude_deg": "-94.15859985351562", + "elevation_ft": "1251", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "4AR8", + "local_code": "4AR8" + }, + { + "id": "11348", + "ident": "4AR9", + "type": "small_airport", + "name": "Scudder Airport", + "latitude_deg": "35.7761993408", + "longitude_deg": "-90.6467971802", + "elevation_ft": "238", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Jonesboro", + "scheduled_service": "no", + "gps_code": "4AR9", + "local_code": "4AR9" + }, + { + "id": "11349", + "ident": "4AZ0", + "type": "closed", + "name": "Palm Valley Tucson Airport", + "latitude_deg": "32.299018", + "longitude_deg": "-111.316733", + "elevation_ft": "2139", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Marana", + "scheduled_service": "no", + "gps_code": "4AZ0", + "local_code": "4AZ0" + }, + { + "id": "11350", + "ident": "4AZ1", + "type": "heliport", + "name": "Moulder Heliport", + "latitude_deg": "33.753299713134766", + "longitude_deg": "-112.41600036621094", + "elevation_ft": "1521", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Surprise", + "scheduled_service": "no", + "gps_code": "4AZ1", + "local_code": "4AZ1" + }, + { + "id": "11351", + "ident": "4AZ2", + "type": "small_airport", + "name": "Block Ranch Airport", + "latitude_deg": "33.702", + "longitude_deg": "-105.384003", + "elevation_ft": "5966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Capitan", + "scheduled_service": "no", + "gps_code": "4AZ2", + "local_code": "4AZ2" + }, + { + "id": "11352", + "ident": "4AZ3", + "type": "heliport", + "name": "Tonto Ranger Station Heliport", + "latitude_deg": "33.670026", + "longitude_deg": "-111.141771", + "elevation_ft": "2165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Roosevelt", + "scheduled_service": "no", + "keywords": "4AZ3" + }, + { + "id": "45289", + "ident": "4AZ4", + "type": "heliport", + "name": "Fort Omotse Heliport", + "latitude_deg": "31.601433", + "longitude_deg": "-110.068883", + "elevation_ft": "4253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tombstone", + "scheduled_service": "no", + "gps_code": "4AZ4", + "local_code": "4AZ4", + "keywords": "tombstone, fort omotse" + }, + { + "id": "11353", + "ident": "4AZ5", + "type": "heliport", + "name": "New Waddell Dam Heliport", + "latitude_deg": "33.845123", + "longitude_deg": "-112.269823", + "elevation_ft": "1582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "4AZ5", + "local_code": "4AZ5" + }, + { + "id": "11354", + "ident": "4AZ6", + "type": "small_airport", + "name": "Parsons Field", + "latitude_deg": "34.99810028076172", + "longitude_deg": "-113.46199798583984", + "elevation_ft": "3760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Kingman", + "scheduled_service": "no", + "gps_code": "4AZ6", + "local_code": "4AZ6" + }, + { + "id": "11355", + "ident": "4AZ7", + "type": "closed", + "name": "San Carlos Airport", + "latitude_deg": "33.37897", + "longitude_deg": "-110.464168", + "elevation_ft": "2896", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "San Carlos", + "scheduled_service": "no", + "keywords": "4AZ7, 24E" + }, + { + "id": "11356", + "ident": "4AZ8", + "type": "small_airport", + "name": "The Ultralight Strip Ultralightport", + "latitude_deg": "32.294225", + "longitude_deg": "-111.344837", + "elevation_ft": "2120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Marana", + "scheduled_service": "no", + "gps_code": "4AZ8", + "local_code": "4AZ8" + }, + { + "id": "11357", + "ident": "4AZ9", + "type": "small_airport", + "name": "Leroy Airport", + "latitude_deg": "32.11309814453125", + "longitude_deg": "-109.76200103759766", + "elevation_ft": "4197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Willcox", + "scheduled_service": "no", + "gps_code": "4AZ9", + "local_code": "4AZ9" + }, + { + "id": "11358", + "ident": "4B0", + "type": "small_airport", + "name": "South Albany Airport", + "latitude_deg": "42.560699462890625", + "longitude_deg": "-73.83390045166016", + "elevation_ft": "196", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "South Bethlehem", + "scheduled_service": "no", + "gps_code": "4B0", + "local_code": "4B0" + }, + { + "id": "11359", + "ident": "4B1", + "type": "small_airport", + "name": "Duanesburg Airport", + "latitude_deg": "42.758399963378906", + "longitude_deg": "-74.13289642333984", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Duanesburg", + "scheduled_service": "no", + "gps_code": "4B1", + "local_code": "4B1" + }, + { + "id": "11360", + "ident": "4B9", + "type": "small_airport", + "name": "Simsbury Airport", + "latitude_deg": "41.915755", + "longitude_deg": "-72.777128", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Simsbury", + "scheduled_service": "no", + "local_code": "4B9" + }, + { + "id": "11361", + "ident": "4C1", + "type": "small_airport", + "name": "Flying U Ranch Airport", + "latitude_deg": "41.453899", + "longitude_deg": "-86.792198", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Union Mills", + "scheduled_service": "no", + "gps_code": "IN41", + "local_code": "IN41", + "keywords": "4C1" + }, + { + "id": "11362", + "ident": "4C2", + "type": "small_airport", + "name": "Walker/Rowe Waterloo Airport", + "latitude_deg": "41.43119812011719", + "longitude_deg": "-84.98159790039062", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Waterloo", + "scheduled_service": "no", + "gps_code": "4C2", + "local_code": "4C2" + }, + { + "id": "11363", + "ident": "4C3", + "type": "heliport", + "name": "Yalesville Heliport", + "latitude_deg": "41.4918888889", + "longitude_deg": "-72.8111666667", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Yalesville", + "scheduled_service": "no", + "gps_code": "4C3", + "local_code": "4C3" + }, + { + "id": "11364", + "ident": "4C4", + "type": "small_airport", + "name": "Gifford Field", + "latitude_deg": "44.883399963378906", + "longitude_deg": "-71.49949645996094", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Colebrook", + "scheduled_service": "no", + "gps_code": "4C4", + "local_code": "4C4" + }, + { + "id": "11365", + "ident": "4C7", + "type": "small_airport", + "name": "Ackley Municipal Airport", + "latitude_deg": "42.547079", + "longitude_deg": "-93.033271", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Ackley", + "scheduled_service": "no", + "local_code": "4C7" + }, + { + "id": "11366", + "ident": "4CA0", + "type": "heliport", + "name": "LAPD Hooper Heliport", + "latitude_deg": "34.044014", + "longitude_deg": "-118.247303", + "elevation_ft": "302", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "4CA0", + "local_code": "4CA0" + }, + { + "id": "11367", + "ident": "4CA1", + "type": "heliport", + "name": "City National Bank Heliport", + "latitude_deg": "34.047704", + "longitude_deg": "-118.254116", + "elevation_ft": "453", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "4CA1", + "local_code": "4CA1" + }, + { + "id": "11368", + "ident": "4CA2", + "type": "small_airport", + "name": "Funny Farm Airport", + "latitude_deg": "37.9468994140625", + "longitude_deg": "-121.64700317382812", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Brentwood", + "scheduled_service": "no", + "gps_code": "4CA2", + "local_code": "4CA2" + }, + { + "id": "11369", + "ident": "4CA3", + "type": "heliport", + "name": "Camp Parks Heliport", + "latitude_deg": "37.70830154418945", + "longitude_deg": "-121.89299774169922", + "elevation_ft": "361", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pleasanton", + "scheduled_service": "no", + "gps_code": "4CA3", + "local_code": "4CA3" + }, + { + "id": "11370", + "ident": "4CA4", + "type": "heliport", + "name": "St Francis Medical Center Helistop", + "latitude_deg": "33.930301666259766", + "longitude_deg": "-118.2030029296875", + "elevation_ft": "154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lynwood", + "scheduled_service": "no", + "gps_code": "4CA4", + "local_code": "4CA4" + }, + { + "id": "11371", + "ident": "4CA5", + "type": "heliport", + "name": "Choc Heliport", + "latitude_deg": "33.78079", + "longitude_deg": "-117.865062", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Orange", + "scheduled_service": "no", + "gps_code": "4CA5", + "local_code": "4CA5" + }, + { + "id": "11372", + "ident": "4CA6", + "type": "heliport", + "name": "Chevron Refinery Heliport", + "latitude_deg": "33.914454", + "longitude_deg": "-118.427215", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "El Segundo", + "scheduled_service": "no", + "gps_code": "4CA6", + "local_code": "4CA6" + }, + { + "id": "11373", + "ident": "4CA7", + "type": "small_airport", + "name": "Johnsen Airport", + "latitude_deg": "39.67070007324219", + "longitude_deg": "-121.88600158691406", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chico", + "scheduled_service": "no", + "gps_code": "4CA7", + "local_code": "4CA7" + }, + { + "id": "11374", + "ident": "4CA8", + "type": "closed", + "name": "Yandell Ranch Airport", + "latitude_deg": "37.640624", + "longitude_deg": "-121.163285", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Modesto", + "scheduled_service": "no", + "keywords": "4CA8" + }, + { + "id": "11375", + "ident": "4CA9", + "type": "heliport", + "name": "Randy Champe-Gary Howe Memorial Heliport", + "latitude_deg": "33.970101", + "longitude_deg": "-118.277622", + "elevation_ft": "184", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "4CA9", + "local_code": "4CA9" + }, + { + "id": "345285", + "ident": "4CD0", + "type": "heliport", + "name": "Parkview Medical Center West Heliport", + "latitude_deg": "38.329142", + "longitude_deg": "-104.702132", + "elevation_ft": "5005", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Pueblo", + "scheduled_service": "no", + "gps_code": "4CD0", + "local_code": "4CD0" + }, + { + "id": "11376", + "ident": "4CL1", + "type": "heliport", + "name": "Lyon Heliport", + "latitude_deg": "33.613399505615234", + "longitude_deg": "-117.59100341796875", + "elevation_ft": "898", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rancho Santa Margarita", + "scheduled_service": "no", + "gps_code": "4CL1", + "local_code": "4CL1" + }, + { + "id": "11377", + "ident": "4CL2", + "type": "heliport", + "name": "Wolfranch Heliport", + "latitude_deg": "33.50279998779297", + "longitude_deg": "-117.30500030517578", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Temecula", + "scheduled_service": "no", + "gps_code": "4CL2", + "local_code": "4CL2" + }, + { + "id": "11378", + "ident": "4CL3", + "type": "small_airport", + "name": "Antelope Valley Ranch Airport", + "latitude_deg": "39.14605", + "longitude_deg": "-122.356716", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Williams", + "scheduled_service": "no", + "gps_code": "4CL3", + "local_code": "4CL3" + }, + { + "id": "11379", + "ident": "4CL4", + "type": "small_airport", + "name": "Rabbit Ranch Airport", + "latitude_deg": "34.456835", + "longitude_deg": "-117.028936", + "elevation_ft": "2942", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lucerne Valley", + "scheduled_service": "no", + "gps_code": "4CL4", + "local_code": "4CL4" + }, + { + "id": "11380", + "ident": "4CL5", + "type": "heliport", + "name": "Mercy San Juan Hospital Heliport", + "latitude_deg": "38.669114", + "longitude_deg": "-121.314348", + "elevation_ft": "169", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Carmichael", + "scheduled_service": "no", + "gps_code": "4CL5", + "local_code": "4CL5" + }, + { + "id": "11381", + "ident": "4CL6", + "type": "heliport", + "name": "Pat Coyle Memorial Heliport", + "latitude_deg": "33.142172", + "longitude_deg": "-117.14553", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Marcos", + "scheduled_service": "no", + "gps_code": "4CL6", + "local_code": "4CL6" + }, + { + "id": "11382", + "ident": "4CL7", + "type": "heliport", + "name": "Inyo County Sheriff Search & Rescue Heliport", + "latitude_deg": "37.36579895019531", + "longitude_deg": "-118.36799621582031", + "elevation_ft": "4120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bishop", + "scheduled_service": "no", + "gps_code": "4CL7", + "local_code": "4CL7" + }, + { + "id": "11383", + "ident": "4CL8", + "type": "heliport", + "name": "Hanford Community Medical Center Helistop", + "latitude_deg": "36.329778", + "longitude_deg": "-119.659564", + "elevation_ft": "251", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hanford", + "scheduled_service": "no", + "gps_code": "4CL8", + "local_code": "4CL8" + }, + { + "id": "11384", + "ident": "4CL9", + "type": "heliport", + "name": "Arrowhead Regional Medical Center Heliport", + "latitude_deg": "34.075377", + "longitude_deg": "-117.349327", + "elevation_ft": "1076", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Colton", + "scheduled_service": "no", + "gps_code": "4CL9", + "local_code": "4CL9" + }, + { + "id": "352631", + "ident": "4CN7", + "type": "heliport", + "name": "Children's Hospital of Los Angeles Heliport II", + "latitude_deg": "34.097289", + "longitude_deg": "-118.288803", + "elevation_ft": "529", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "4CN7", + "local_code": "4CN7" + }, + { + "id": "11385", + "ident": "4CO0", + "type": "small_airport", + "name": "Glen-Aspen Airport", + "latitude_deg": "39.389609", + "longitude_deg": "-107.163722", + "elevation_ft": "6835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Carbondale", + "scheduled_service": "no", + "gps_code": "4CO0", + "local_code": "4CO0" + }, + { + "id": "11386", + "ident": "4CO1", + "type": "heliport", + "name": "Martin Heliport", + "latitude_deg": "39.499698638916016", + "longitude_deg": "-105.10600280761719", + "elevation_ft": "5718", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Waterton", + "scheduled_service": "no", + "gps_code": "4CO1", + "local_code": "4CO1" + }, + { + "id": "11387", + "ident": "4CO2", + "type": "small_airport", + "name": "Owl Canyon Gliderport", + "latitude_deg": "40.8046989440918", + "longitude_deg": "-104.98500061035156", + "elevation_ft": "5545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Wellington", + "scheduled_service": "no", + "gps_code": "4CO2", + "local_code": "4CO2" + }, + { + "id": "11388", + "ident": "4CO3", + "type": "small_airport", + "name": "Griffin Field", + "latitude_deg": "37.391700744628906", + "longitude_deg": "-102.27999877929688", + "elevation_ft": "3964", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Walsh", + "scheduled_service": "no", + "gps_code": "4CO3", + "local_code": "4CO3" + }, + { + "id": "11389", + "ident": "4CO4", + "type": "heliport", + "name": "St Anthony North Heliport", + "latitude_deg": "39.850375", + "longitude_deg": "-105.017211", + "elevation_ft": "5506", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Westminster", + "scheduled_service": "no", + "gps_code": "4CO4", + "local_code": "4CO4" + }, + { + "id": "11390", + "ident": "4CO5", + "type": "heliport", + "name": "Pioneers Heliport", + "latitude_deg": "40.04140090942383", + "longitude_deg": "-107.91100311279297", + "elevation_ft": "6298", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Meeker", + "scheduled_service": "no", + "gps_code": "4CO5", + "local_code": "4CO5" + }, + { + "id": "11391", + "ident": "4CO6", + "type": "heliport", + "name": "Lutheran Medical Center Heliport", + "latitude_deg": "39.76588", + "longitude_deg": "-105.09264", + "elevation_ft": "5500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Wheat Ridge", + "scheduled_service": "no", + "gps_code": "4CO6", + "local_code": "4CO6" + }, + { + "id": "11392", + "ident": "4CO7", + "type": "small_airport", + "name": "Ambrosich Field", + "latitude_deg": "39.220351", + "longitude_deg": "-104.680738", + "elevation_ft": "7028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Elbert", + "scheduled_service": "no", + "gps_code": "4CO7", + "local_code": "4CO7" + }, + { + "id": "11393", + "ident": "4CO8", + "type": "small_airport", + "name": "Kelgun Airport", + "latitude_deg": "39.30690002441406", + "longitude_deg": "-104.81600189208984", + "elevation_ft": "6800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Castle Rock", + "scheduled_service": "no", + "gps_code": "4CO8", + "local_code": "4CO8" + }, + { + "id": "11394", + "ident": "4CO9", + "type": "heliport", + "name": "Beaver Creek Heliport", + "latitude_deg": "39.63123", + "longitude_deg": "-106.52436", + "elevation_ft": "7500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Beaver Creek", + "scheduled_service": "no", + "gps_code": "4CO9", + "local_code": "4CO9" + }, + { + "id": "11395", + "ident": "4D1", + "type": "closed", + "name": "Three Castles Airpark", + "latitude_deg": "43.669734", + "longitude_deg": "-90.23386", + "elevation_ft": "921", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wonewoc", + "scheduled_service": "no", + "keywords": "4D1" + }, + { + "id": "11396", + "ident": "4D5", + "type": "heliport", + "name": "Kirila Heliport", + "latitude_deg": "41.230098724365234", + "longitude_deg": "-80.55729675292969", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Brookfield", + "scheduled_service": "no", + "gps_code": "4D5", + "local_code": "4D5" + }, + { + "id": "11397", + "ident": "4D8", + "type": "small_airport", + "name": "Fuller Airport", + "latitude_deg": "43.33319854736328", + "longitude_deg": "-95.15899658203125", + "elevation_ft": "1439", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "4D8", + "local_code": "4D8" + }, + { + "id": "11398", + "ident": "4D9", + "type": "small_airport", + "name": "Alma Municipal Airport", + "latitude_deg": "40.11389923095703", + "longitude_deg": "-99.34559631347656", + "elevation_ft": "2070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Alma", + "scheduled_service": "no", + "gps_code": "4D9", + "local_code": "4D9" + }, + { + "id": "11399", + "ident": "4.00E+08", + "type": "small_airport", + "name": "Richardton Airport", + "latitude_deg": "46.89580154418945", + "longitude_deg": "-102.3550033569336", + "elevation_ft": "2492", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Richardton", + "scheduled_service": "no", + "gps_code": "4.00E+08", + "local_code": "4.00E+08" + }, + { + "id": "11400", + "ident": "4.00E+09", + "type": "closed", + "name": "Fort Hancock Heliport", + "latitude_deg": "31.29196", + "longitude_deg": "-105.850203", + "elevation_ft": "3517", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Hancock", + "scheduled_service": "no", + "local_code": "4.00E+09" + }, + { + "id": "11401", + "ident": "4F1", + "type": "small_airport", + "name": "Westport Airport / Keystone Airpark", + "latitude_deg": "36.222301", + "longitude_deg": "-96.3461", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Westport", + "scheduled_service": "no", + "local_code": "4F1" + }, + { + "id": "347064", + "ident": "4FA0", + "type": "heliport", + "name": "Orlando Health Lake Mary Heliport", + "latitude_deg": "28.768868", + "longitude_deg": "-81.349924", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Mary", + "scheduled_service": "no", + "gps_code": "4FA0", + "local_code": "4FA0" + }, + { + "id": "11402", + "ident": "4FA3", + "type": "small_airport", + "name": "Tranquility Bay Strip", + "latitude_deg": "26.643400192260742", + "longitude_deg": "-82.1178970336914", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Myers", + "scheduled_service": "no", + "gps_code": "4FA3", + "local_code": "4FA3" + }, + { + "id": "334262", + "ident": "4FA7", + "type": "seaplane_base", + "name": "Lake Panasoffkee Seaplane Base", + "latitude_deg": "28.798722", + "longitude_deg": "-82.11575", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Panasoffkee", + "scheduled_service": "no", + "gps_code": "4FA7", + "local_code": "4FA7" + }, + { + "id": "356199", + "ident": "4FA9", + "type": "heliport", + "name": "North Port Fire Rescue Station 86 Heliport", + "latitude_deg": "27.048778", + "longitude_deg": "-82.337528", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "North Port", + "scheduled_service": "no", + "gps_code": "4FA9", + "local_code": "4FA9" + }, + { + "id": "11403", + "ident": "4FD2", + "type": "small_airport", + "name": "Flying 'F' Farms Airport", + "latitude_deg": "30.053800582885742", + "longitude_deg": "-83.0186996459961", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "O'Brien", + "scheduled_service": "no", + "gps_code": "4FD2", + "local_code": "4FD2" + }, + { + "id": "11404", + "ident": "4FD3", + "type": "small_airport", + "name": "The Wright Place STOLport", + "latitude_deg": "25.515300750732422", + "longitude_deg": "-80.51349639892578", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Homestead", + "scheduled_service": "no", + "gps_code": "4FD3", + "local_code": "4FD3" + }, + { + "id": "11405", + "ident": "4FD4", + "type": "seaplane_base", + "name": "Bay Seaplanes Seaplane Base", + "latitude_deg": "30.184900283813477", + "longitude_deg": "-85.7499008178711", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City", + "scheduled_service": "no", + "gps_code": "4FD4", + "local_code": "4FD4" + }, + { + "id": "11406", + "ident": "4FD5", + "type": "seaplane_base", + "name": "Grand Lagoon Seaplane Base", + "latitude_deg": "30.134899139404297", + "longitude_deg": "-85.73410034179688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City", + "scheduled_service": "no", + "gps_code": "4FD5", + "local_code": "4FD5" + }, + { + "id": "11407", + "ident": "4FD6", + "type": "heliport", + "name": "Pine Island Helistop", + "latitude_deg": "26.606700897216797", + "longitude_deg": "-82.11090087890625", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pine Island Center", + "scheduled_service": "no", + "gps_code": "4FD6", + "local_code": "4FD6" + }, + { + "id": "11408", + "ident": "4FD7", + "type": "small_airport", + "name": "Flanders Field", + "latitude_deg": "28.20639991760254", + "longitude_deg": "-81.8279037475586", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Polk City", + "scheduled_service": "no", + "gps_code": "4FD7", + "local_code": "4FD7" + }, + { + "id": "11409", + "ident": "4FD8", + "type": "heliport", + "name": "Captiva Heliport", + "latitude_deg": "26.54170036315918", + "longitude_deg": "-82.19200134277344", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sanibel", + "scheduled_service": "no", + "gps_code": "4FD8", + "local_code": "4FD8" + }, + { + "id": "11410", + "ident": "4FD9", + "type": "heliport", + "name": "Bowman's Beach Helistop", + "latitude_deg": "26.462600708007812", + "longitude_deg": "-82.15679931640625", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sanibel", + "scheduled_service": "no", + "gps_code": "4FD9", + "local_code": "4FD9" + }, + { + "id": "11411", + "ident": "4FL0", + "type": "small_airport", + "name": "Turkey Scratch Plantation Airport", + "latitude_deg": "30.403600692749023", + "longitude_deg": "-83.80999755859375", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lamont", + "scheduled_service": "no", + "gps_code": "4FL0", + "local_code": "4FL0" + }, + { + "id": "11412", + "ident": "4FL1", + "type": "small_airport", + "name": "Escape Ranch Airport", + "latitude_deg": "27.86280059814453", + "longitude_deg": "-80.95809936523438", + "elevation_ft": "71", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Kenansville", + "scheduled_service": "no", + "gps_code": "4FL1", + "local_code": "4FL1" + }, + { + "id": "11413", + "ident": "4FL2", + "type": "small_airport", + "name": "Ko-Kee Airport", + "latitude_deg": "28.605233", + "longitude_deg": "-82.159567", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Webster", + "scheduled_service": "no", + "gps_code": "4FL2", + "local_code": "4FL2" + }, + { + "id": "11414", + "ident": "4FL3", + "type": "small_airport", + "name": "Fellsmere Airport", + "latitude_deg": "27.740214", + "longitude_deg": "-80.666792", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fellsmere", + "scheduled_service": "no", + "gps_code": "4FL3", + "local_code": "4FL3" + }, + { + "id": "11415", + "ident": "4FL4", + "type": "closed", + "name": "Darrah Air Park", + "latitude_deg": "29.778299", + "longitude_deg": "-82.890405", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bell", + "scheduled_service": "no", + "keywords": "4FL4, Ultralight Flightpark" + }, + { + "id": "11416", + "ident": "4FL5", + "type": "small_airport", + "name": "Ridge Landing Airport", + "latitude_deg": "27.7572002411", + "longitude_deg": "-81.6006011963", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Frostproof", + "scheduled_service": "no", + "gps_code": "4FL5", + "local_code": "4FL5" + }, + { + "id": "11417", + "ident": "4FL6", + "type": "closed", + "name": "Royal Trails Airport", + "latitude_deg": "28.937799", + "longitude_deg": "-81.473701", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Cassia", + "scheduled_service": "no", + "keywords": "4FL6" + }, + { + "id": "45355", + "ident": "4FL7", + "type": "heliport", + "name": "Physicians Regional Medical Center Collier Boulevard Heliport", + "latitude_deg": "26.1066", + "longitude_deg": "-81.68532", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Naples", + "scheduled_service": "no", + "gps_code": "4FL7", + "local_code": "4FL7" + }, + { + "id": "11418", + "ident": "4FL8", + "type": "small_airport", + "name": "Schwartz Farms Inc Airport", + "latitude_deg": "27.343700408935547", + "longitude_deg": "-82.31729888916016", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sarasota", + "scheduled_service": "no", + "gps_code": "4FL8", + "local_code": "4FL8" + }, + { + "id": "11419", + "ident": "4FL9", + "type": "small_airport", + "name": "Gore Airport", + "latitude_deg": "28.143400192260742", + "longitude_deg": "-81.64700317382812", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Haines City", + "scheduled_service": "no", + "gps_code": "4FL9", + "local_code": "4FL9" + }, + { + "id": "11420", + "ident": "4G0", + "type": "small_airport", + "name": "Pittsburgh-Monroeville Airport", + "latitude_deg": "40.452301", + "longitude_deg": "-79.774803", + "elevation_ft": "1187", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Monroeville", + "scheduled_service": "no", + "gps_code": "15PA", + "local_code": "15PA", + "keywords": "4G0" + }, + { + "id": "11421", + "ident": "4G1", + "type": "small_airport", + "name": "Greenville Municipal Airport", + "latitude_deg": "41.446800231933594", + "longitude_deg": "-80.39129638671875", + "elevation_ft": "1202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "4G1", + "local_code": "4G1" + }, + { + "id": "11422", + "ident": "4G2", + "type": "small_airport", + "name": "Hamburg Inc Airport", + "latitude_deg": "42.70090103149414", + "longitude_deg": "-78.91480255126953", + "elevation_ft": "751", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hamburg", + "scheduled_service": "no", + "gps_code": "4G2", + "local_code": "4G2" + }, + { + "id": "11423", + "ident": "4G3", + "type": "small_airport", + "name": "Miller Airport", + "latitude_deg": "40.9818", + "longitude_deg": "-81.042099", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "North Benton", + "scheduled_service": "no", + "local_code": "4G3" + }, + { + "id": "11424", + "ident": "4G7", + "type": "small_airport", + "name": "Fairmont Municipal-Frankman Field", + "latitude_deg": "39.44820022583008", + "longitude_deg": "-80.16699981689453", + "elevation_ft": "1029", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Fairmont", + "scheduled_service": "no", + "gps_code": "4G7", + "local_code": "4G7" + }, + { + "id": "11425", + "ident": "4GA0", + "type": "closed", + "name": "Pegasus Run Airport", + "latitude_deg": "34.280102", + "longitude_deg": "-84.421303", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Ball Ground", + "scheduled_service": "no", + "keywords": "4GA0" + }, + { + "id": "11426", + "ident": "4GA1", + "type": "small_airport", + "name": "Thacker Field", + "latitude_deg": "33.0447998046875", + "longitude_deg": "-84.39830017089844", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "4GA1", + "local_code": "4GA1" + }, + { + "id": "11427", + "ident": "4GA2", + "type": "heliport", + "name": "Medical College of Georgia Heliport", + "latitude_deg": "33.471099853515625", + "longitude_deg": "-81.98829650878906", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Augusta", + "scheduled_service": "no", + "gps_code": "4GA2", + "local_code": "4GA2" + }, + { + "id": "11428", + "ident": "4GA3", + "type": "heliport", + "name": "Memorial Hospital Heliport", + "latitude_deg": "30.903200149536133", + "longitude_deg": "-84.5519027709961", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Bainbridge", + "scheduled_service": "no", + "gps_code": "4GA3", + "local_code": "4GA3" + }, + { + "id": "11429", + "ident": "4GA4", + "type": "small_airport", + "name": "R.M. Harris Airport", + "latitude_deg": "34.84669876098633", + "longitude_deg": "-84.75469970703125", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Eton", + "scheduled_service": "no", + "gps_code": "4GA4", + "local_code": "4GA4" + }, + { + "id": "11430", + "ident": "4GA5", + "type": "closed", + "name": "Southwire Heliport", + "latitude_deg": "33.566562", + "longitude_deg": "-85.070522", + "elevation_ft": "1094", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Carrollton", + "scheduled_service": "no", + "keywords": "4GA5" + }, + { + "id": "11431", + "ident": "4GA6", + "type": "small_airport", + "name": "Chattahoochee Air Park", + "latitude_deg": "33.662328", + "longitude_deg": "-84.680122", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Douglasville", + "scheduled_service": "no", + "gps_code": "4GA6", + "local_code": "4GA6" + }, + { + "id": "11432", + "ident": "4GA7", + "type": "small_airport", + "name": "Kitchens Field", + "latitude_deg": "33.134568", + "longitude_deg": "-84.253287", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Griffin", + "scheduled_service": "no", + "gps_code": "4GA7", + "local_code": "4GA7" + }, + { + "id": "11433", + "ident": "4GA8", + "type": "small_airport", + "name": "Andrews Airport", + "latitude_deg": "31.41550064086914", + "longitude_deg": "-84.71299743652344", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "4GA8", + "local_code": "4GA8" + }, + { + "id": "11434", + "ident": "4GA9", + "type": "small_airport", + "name": "Ebeneezer Airport", + "latitude_deg": "34.2422981262207", + "longitude_deg": "-84.05709838867188", + "elevation_ft": "1230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Cumming", + "scheduled_service": "no", + "gps_code": "4GA9", + "local_code": "4GA9" + }, + { + "id": "11435", + "ident": "4GE0", + "type": "small_airport", + "name": "Millhaven Airport", + "latitude_deg": "32.93600082397461", + "longitude_deg": "-81.66210174560547", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Millhaven", + "scheduled_service": "no", + "gps_code": "4GE0", + "local_code": "4GE0" + }, + { + "id": "11436", + "ident": "4GE1", + "type": "small_airport", + "name": "Viola Farm Airport", + "latitude_deg": "30.72369956970215", + "longitude_deg": "-84.54109954833984", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Attapulgus", + "scheduled_service": "no", + "gps_code": "4GE1", + "local_code": "4GE1" + }, + { + "id": "11437", + "ident": "4GE2", + "type": "small_airport", + "name": "Gorden E Bellah International Airport", + "latitude_deg": "33.55009841918945", + "longitude_deg": "-84.1666030883789", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Stockbridge", + "scheduled_service": "no", + "gps_code": "4GE2", + "local_code": "4GE2" + }, + { + "id": "45377", + "ident": "4GE3", + "type": "small_airport", + "name": "Whitehall Airport", + "latitude_deg": "32.4994", + "longitude_deg": "-83.182917", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Montrose", + "scheduled_service": "no", + "gps_code": "4GE3", + "local_code": "4GE3" + }, + { + "id": "333954", + "ident": "4GE7", + "type": "heliport", + "name": "AE154 Base Heliport", + "latitude_deg": "32.458333", + "longitude_deg": "-83.710278", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Perry", + "scheduled_service": "no", + "gps_code": "4GE7", + "local_code": "4GE7" + }, + { + "id": "11438", + "ident": "4H1", + "type": "heliport", + "name": "Schaumburg Municipal Helistop", + "latitude_deg": "42.0477843871", + "longitude_deg": "-88.052662611", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago/Schaumburg", + "scheduled_service": "no", + "gps_code": "4H1", + "local_code": "4H1" + }, + { + "id": "11439", + "ident": "4IA0", + "type": "heliport", + "name": "Greater Community Hospital Heliport", + "latitude_deg": "41.072200775146484", + "longitude_deg": "-94.39440155029297", + "elevation_ft": "1291", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Creston", + "scheduled_service": "no", + "gps_code": "4IA0", + "local_code": "4IA0" + }, + { + "id": "11440", + "ident": "4IA1", + "type": "heliport", + "name": "Ellsworth Municipal Hospital Heliport", + "latitude_deg": "42.52470016479492", + "longitude_deg": "-93.24240112304688", + "elevation_ft": "1138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Iowa Falls", + "scheduled_service": "no", + "gps_code": "4IA1", + "local_code": "4IA1" + }, + { + "id": "11441", + "ident": "4IA2", + "type": "small_airport", + "name": "Walker Field", + "latitude_deg": "41.58610153198242", + "longitude_deg": "-91.22019958496094", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "West Liberty", + "scheduled_service": "no", + "gps_code": "4IA2", + "local_code": "4IA2" + }, + { + "id": "11442", + "ident": "4IA3", + "type": "heliport", + "name": "Floyd County Memorial Hospital Heliport", + "latitude_deg": "43.05080032348633", + "longitude_deg": "-92.68440246582031", + "elevation_ft": "1146", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Charles City", + "scheduled_service": "no", + "gps_code": "4IA3", + "local_code": "4IA3" + }, + { + "id": "11443", + "ident": "4IA4", + "type": "small_airport", + "name": "Mccoy Airport", + "latitude_deg": "40.818599700927734", + "longitude_deg": "-91.33889770507812", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "4IA4", + "local_code": "4IA4" + }, + { + "id": "11444", + "ident": "4IA5", + "type": "heliport", + "name": "Iowa Speciality Hospital Heliport", + "latitude_deg": "42.721132", + "longitude_deg": "-93.734436", + "elevation_ft": "1162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Clarion", + "scheduled_service": "no", + "gps_code": "4IA5", + "local_code": "4IA5", + "keywords": "Community Memorial Hospital Heliport" + }, + { + "id": "11445", + "ident": "4IA7", + "type": "small_airport", + "name": "Witcombe Field", + "latitude_deg": "42.47190094", + "longitude_deg": "-92.49520111", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Cedar Falls", + "scheduled_service": "no", + "gps_code": "4IA7", + "local_code": "4IA7" + }, + { + "id": "11446", + "ident": "4IA8", + "type": "closed", + "name": "Weiss Airport", + "latitude_deg": "41.647202", + "longitude_deg": "-91.959602", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Williamsburg", + "scheduled_service": "no", + "keywords": "4IA8" + }, + { + "id": "11447", + "ident": "4IA9", + "type": "small_airport", + "name": "Triple J Airport", + "latitude_deg": "42.45830154418945", + "longitude_deg": "-92.72239685058594", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Dike", + "scheduled_service": "no", + "gps_code": "4IA9", + "local_code": "4IA9" + }, + { + "id": "11448", + "ident": "4II0", + "type": "small_airport", + "name": "De Ford Airport", + "latitude_deg": "40.609501", + "longitude_deg": "-86.738297", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Delphi", + "scheduled_service": "no", + "gps_code": "4II0", + "local_code": "4II0" + }, + { + "id": "11449", + "ident": "4II2", + "type": "small_airport", + "name": "Hangar Fly Ultralight Fly Club Ultralightport", + "latitude_deg": "39.85340118408203", + "longitude_deg": "-85.9541015625", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lawrence", + "scheduled_service": "no", + "gps_code": "4II2", + "local_code": "4II2" + }, + { + "id": "11450", + "ident": "4II3", + "type": "small_airport", + "name": "Oleo Airport", + "latitude_deg": "39.73640060424805", + "longitude_deg": "-86.72969818115234", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Fillmore", + "scheduled_service": "no", + "gps_code": "4II3", + "local_code": "4II3" + }, + { + "id": "11451", + "ident": "4II4", + "type": "small_airport", + "name": "Chesak Airport", + "latitude_deg": "41.25559997558594", + "longitude_deg": "-86.78810119628906", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "North Judson", + "scheduled_service": "no", + "gps_code": "4II4", + "local_code": "4II4" + }, + { + "id": "11452", + "ident": "4II5", + "type": "heliport", + "name": "Escc Heliport", + "latitude_deg": "41.594200134277344", + "longitude_deg": "-87.49140167236328", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hammond", + "scheduled_service": "no", + "gps_code": "4II5", + "local_code": "4II5" + }, + { + "id": "11453", + "ident": "4II6", + "type": "small_airport", + "name": "Gettlefinger Field", + "latitude_deg": "38.37919998168945", + "longitude_deg": "-86.08159637451172", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Palmyra", + "scheduled_service": "no", + "gps_code": "4II6", + "local_code": "4II6" + }, + { + "id": "11454", + "ident": "4II7", + "type": "small_airport", + "name": "Sport Aircraft Flight Park Ultralightport", + "latitude_deg": "40.105899810791016", + "longitude_deg": "-86.52189636230469", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Thorntown", + "scheduled_service": "no", + "gps_code": "4II7", + "local_code": "4II7" + }, + { + "id": "11455", + "ident": "4II8", + "type": "small_airport", + "name": "Willis Airport", + "latitude_deg": "39.7223014831543", + "longitude_deg": "-85.71659851074219", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Greenfield", + "scheduled_service": "no", + "gps_code": "4II8", + "local_code": "4II8" + }, + { + "id": "11456", + "ident": "4II9", + "type": "closed", + "name": "Shultz /Private/ Airport", + "latitude_deg": "40.6092", + "longitude_deg": "-86.880798", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Brookston", + "scheduled_service": "no", + "keywords": "4II9" + }, + { + "id": "11457", + "ident": "4IL0", + "type": "heliport", + "name": "Litchfield Fire Department West Side Emergency Services Heliport", + "latitude_deg": "39.160542", + "longitude_deg": "-89.665877", + "elevation_ft": "677", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Litchfield", + "scheduled_service": "no", + "gps_code": "4IL0", + "local_code": "4IL0" + }, + { + "id": "11458", + "ident": "4IL2", + "type": "small_airport", + "name": "Wayne Ziller Jr Airport", + "latitude_deg": "40.809941", + "longitude_deg": "-88.539584", + "elevation_ft": "661", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Fairbury", + "scheduled_service": "no", + "gps_code": "4IL2", + "local_code": "4IL2" + }, + { + "id": "11459", + "ident": "4IL3", + "type": "small_airport", + "name": "Thrifty Acres Airport", + "latitude_deg": "42.142987", + "longitude_deg": "-89.228468", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Stillman Valley", + "scheduled_service": "no", + "gps_code": "4IL3", + "local_code": "4IL3" + }, + { + "id": "11460", + "ident": "4IL4", + "type": "small_airport", + "name": "Kuebler RLA Restricted Landing Area", + "latitude_deg": "39.0564002991", + "longitude_deg": "-88.8161010742", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "St Elmo", + "scheduled_service": "no", + "gps_code": "4IL4", + "local_code": "4IL4" + }, + { + "id": "11461", + "ident": "4IL5", + "type": "small_airport", + "name": "Frank's Flying Service Airport", + "latitude_deg": "41.724998474121094", + "longitude_deg": "-90.00509643554688", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Morrison", + "scheduled_service": "no", + "gps_code": "4IL5", + "local_code": "4IL5" + }, + { + "id": "11462", + "ident": "4IL6", + "type": "closed", + "name": "Keim Heliport", + "latitude_deg": "41.912498", + "longitude_deg": "-88.158997", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "West Chicago", + "scheduled_service": "no", + "keywords": "4IL6" + }, + { + "id": "11463", + "ident": "4IL7", + "type": "heliport", + "name": "Brussels Heliport", + "latitude_deg": "38.94580078125", + "longitude_deg": "-90.58719635009766", + "elevation_ft": "515", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Brussels", + "scheduled_service": "no", + "gps_code": "4IL7", + "local_code": "4IL7" + }, + { + "id": "11464", + "ident": "4IL8", + "type": "small_airport", + "name": "Rendleman Airport", + "latitude_deg": "37.75630187988281", + "longitude_deg": "-89.38330078125", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Murphysboro", + "scheduled_service": "no", + "gps_code": "4IL8", + "local_code": "4IL8" + }, + { + "id": "11465", + "ident": "4IL9", + "type": "small_airport", + "name": "Unzicker Airport", + "latitude_deg": "40.82749938964844", + "longitude_deg": "-89.12079620361328", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Benson", + "scheduled_service": "no", + "gps_code": "4IL9", + "local_code": "4IL9" + }, + { + "id": "11466", + "ident": "4IN1", + "type": "seaplane_base", + "name": "Big Long Lake Seaplane Base", + "latitude_deg": "41.56449890136719", + "longitude_deg": "-85.23359680175781", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Kendallville", + "scheduled_service": "no", + "gps_code": "4IN1", + "local_code": "4IN1" + }, + { + "id": "11467", + "ident": "4IN2", + "type": "seaplane_base", + "name": "Oliver Lake Seaplane Base", + "latitude_deg": "41.5702018737793", + "longitude_deg": "-85.4052963256836", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "La Grange", + "scheduled_service": "no", + "gps_code": "4IN2", + "local_code": "4IN2" + }, + { + "id": "11468", + "ident": "4IN3", + "type": "heliport", + "name": "East Clear Heliport", + "latitude_deg": "41.73500061035156", + "longitude_deg": "-84.82279968261719", + "elevation_ft": "1069", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Clear Lake", + "scheduled_service": "no", + "gps_code": "4IN3", + "local_code": "4IN3" + }, + { + "id": "11469", + "ident": "4IN4", + "type": "small_airport", + "name": "Wilson Airport", + "latitude_deg": "39.97529983520508", + "longitude_deg": "-87.1802978515625", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Wallace", + "scheduled_service": "no", + "gps_code": "4IN4", + "local_code": "4IN4" + }, + { + "id": "11470", + "ident": "4IN5", + "type": "small_airport", + "name": "Ball Field", + "latitude_deg": "41.344200134277344", + "longitude_deg": "-86.14830017089844", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bourbon", + "scheduled_service": "no", + "gps_code": "4IN5", + "local_code": "4IN5" + }, + { + "id": "11471", + "ident": "4IN6", + "type": "heliport", + "name": "Dragons Den Heliport", + "latitude_deg": "39.745601654052734", + "longitude_deg": "-86.64440155029297", + "elevation_ft": "934", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Danvillle", + "scheduled_service": "no", + "gps_code": "4IN6", + "local_code": "4IN6" + }, + { + "id": "11472", + "ident": "4IN7", + "type": "small_airport", + "name": "Riley Field", + "latitude_deg": "40.300899505615234", + "longitude_deg": "-87.22920227050781", + "elevation_ft": "608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Attica", + "scheduled_service": "no", + "gps_code": "4IN7", + "local_code": "4IN7" + }, + { + "id": "11473", + "ident": "4IN8", + "type": "small_airport", + "name": "Culp Farms Airport", + "latitude_deg": "40.86750030517578", + "longitude_deg": "-87.06829833984375", + "elevation_ft": "673", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Rensselaer", + "scheduled_service": "no", + "gps_code": "4IN8", + "local_code": "4IN8" + }, + { + "id": "11474", + "ident": "4IN9", + "type": "small_airport", + "name": "Wawasee Airport", + "latitude_deg": "41.41889953613281", + "longitude_deg": "-85.69170379638672", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Syracuse", + "scheduled_service": "no", + "gps_code": "4IN9", + "local_code": "4IN9" + }, + { + "id": "11475", + "ident": "4IS0", + "type": "heliport", + "name": "Joan Graves Edwards Heliport", + "latitude_deg": "37.46390151977539", + "longitude_deg": "-89.24590301513672", + "elevation_ft": "624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Anna", + "scheduled_service": "no", + "gps_code": "4IS0", + "local_code": "4IS0" + }, + { + "id": "11476", + "ident": "4IS1", + "type": "closed", + "name": "Kamm Airport", + "latitude_deg": "39.773102", + "longitude_deg": "-88.4487", + "elevation_ft": "672", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Atwood", + "scheduled_service": "no", + "keywords": "4IS1" + }, + { + "id": "11477", + "ident": "4IS2", + "type": "heliport", + "name": "Memorial Hospital Heliport", + "latitude_deg": "37.92369842529297", + "longitude_deg": "-88.80619812011719", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chester", + "scheduled_service": "no", + "gps_code": "4IS2", + "local_code": "4IS2" + }, + { + "id": "11478", + "ident": "4IS3", + "type": "heliport", + "name": "University of Chicago Hospitals Heliport", + "latitude_deg": "41.78839874267578", + "longitude_deg": "-87.60420227050781", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "no", + "gps_code": "4IS3", + "local_code": "4IS3" + }, + { + "id": "11479", + "ident": "4IS4", + "type": "heliport", + "name": "Harrisburg Medical Center Heliport", + "latitude_deg": "37.73059844970703", + "longitude_deg": "-88.52369689941406", + "elevation_ft": "397", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Harrisburg", + "scheduled_service": "no", + "gps_code": "4IS4", + "local_code": "4IS4" + }, + { + "id": "11480", + "ident": "4IS5", + "type": "small_airport", + "name": "Smith Restricted Landing Area", + "latitude_deg": "38.258399963378906", + "longitude_deg": "-89.93810272216797", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hecker", + "scheduled_service": "no", + "gps_code": "4IS5", + "local_code": "4IS5" + }, + { + "id": "11481", + "ident": "4IS6", + "type": "small_airport", + "name": "Hattan Farms Airport", + "latitude_deg": "40.930599212646484", + "longitude_deg": "-89.12059783935547", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Minonk", + "scheduled_service": "no", + "gps_code": "4IS6", + "local_code": "4IS6" + }, + { + "id": "11482", + "ident": "4IS7", + "type": "small_airport", + "name": "Litchfield Restricted Landing Area", + "latitude_deg": "40.073101", + "longitude_deg": "-88.399498", + "elevation_ft": "704", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Seymour", + "scheduled_service": "no", + "gps_code": "4IS7", + "local_code": "4IS7" + }, + { + "id": "11483", + "ident": "4IS8", + "type": "small_airport", + "name": "Leigh Farm Airport", + "latitude_deg": "40.02170181274414", + "longitude_deg": "-89.55010223388672", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sparland", + "scheduled_service": "no", + "gps_code": "4IS8", + "local_code": "4IS8" + }, + { + "id": "11484", + "ident": "4IS9", + "type": "small_airport", + "name": "Weidner Airport", + "latitude_deg": "39.085899353027344", + "longitude_deg": "-89.95890045166016", + "elevation_ft": "667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Bunker Hill", + "scheduled_service": "no", + "gps_code": "4IS9", + "local_code": "4IS9" + }, + { + "id": "11485", + "ident": "4K0", + "type": "small_airport", + "name": "Pedro Bay Airport", + "latitude_deg": "59.7896003723", + "longitude_deg": "-154.12399292", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Pedro Bay", + "scheduled_service": "no", + "gps_code": "4K0", + "iata_code": "PDB", + "local_code": "4K0" + }, + { + "id": "11487", + "ident": "4K5", + "type": "small_airport", + "name": "Ouzinkie Airport", + "latitude_deg": "57.942094", + "longitude_deg": "-152.464314", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ouzinkie", + "scheduled_service": "yes", + "iata_code": "KOZ", + "local_code": "4K5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ouzinkie_Airport" + }, + { + "id": "11488", + "ident": "4KA", + "type": "small_airport", + "name": "Tununak Airport", + "latitude_deg": "60.575500488281", + "longitude_deg": "-165.27200317383", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tununak", + "scheduled_service": "no", + "gps_code": "4KA", + "iata_code": "TNK", + "local_code": "4KA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tununak_Airport" + }, + { + "id": "11489", + "ident": "4KS1", + "type": "small_airport", + "name": "Amar Farms Airport", + "latitude_deg": "38.685298919677734", + "longitude_deg": "-95.03299713134766", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wellsville", + "scheduled_service": "no", + "gps_code": "4KS1", + "local_code": "4KS1" + }, + { + "id": "11490", + "ident": "4KS2", + "type": "small_airport", + "name": "Ingels Aerodrome", + "latitude_deg": "39.01860046386719", + "longitude_deg": "-94.95439910888672", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "De Soto", + "scheduled_service": "no", + "gps_code": "4KS2", + "local_code": "4KS2" + }, + { + "id": "11491", + "ident": "4KS4", + "type": "closed", + "name": "Police Heliport", + "latitude_deg": "37.6642", + "longitude_deg": "-97.348701", + "elevation_ft": "1290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wichita", + "scheduled_service": "no", + "keywords": "4KS4" + }, + { + "id": "11492", + "ident": "4KS6", + "type": "small_airport", + "name": "Thomsen Field", + "latitude_deg": "38.24169921875", + "longitude_deg": "-95.90670013427734", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Hartford", + "scheduled_service": "no", + "gps_code": "4KS6", + "local_code": "4KS6" + }, + { + "id": "11493", + "ident": "4KS7", + "type": "small_airport", + "name": "Butler Airpark", + "latitude_deg": "37.55889892578125", + "longitude_deg": "-97.06500244140625", + "elevation_ft": "1310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Rose Hill", + "scheduled_service": "no", + "gps_code": "4KS7", + "local_code": "4KS7" + }, + { + "id": "11494", + "ident": "4KS8", + "type": "small_airport", + "name": "Bursch Private Airport", + "latitude_deg": "39.592874", + "longitude_deg": "-101.5927", + "elevation_ft": "3650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Bird City", + "scheduled_service": "no", + "gps_code": "4KS8", + "local_code": "4KS8" + }, + { + "id": "334350", + "ident": "4KS9", + "type": "small_airport", + "name": "Dinkel Airport", + "latitude_deg": "38.83395", + "longitude_deg": "-99.062875", + "elevation_ft": "1900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Victoria", + "scheduled_service": "no", + "gps_code": "4KS9", + "local_code": "4KS9" + }, + { + "id": "325744", + "ident": "4KT4", + "type": "small_airport", + "name": "Steele's Bottom Airport", + "latitude_deg": "38.828736", + "longitude_deg": "-84.817321", + "elevation_ft": "495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Warsaw", + "scheduled_service": "no", + "gps_code": "4KT4", + "local_code": "4KT4" + }, + { + "id": "11495", + "ident": "4KY0", + "type": "closed", + "name": "J & C Antique Airfield", + "latitude_deg": "36.762352", + "longitude_deg": "-88.376716", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Hardin", + "scheduled_service": "no", + "keywords": "4KY0" + }, + { + "id": "11496", + "ident": "4KY1", + "type": "small_airport", + "name": "Creek Side Landing Airport", + "latitude_deg": "36.89500045776367", + "longitude_deg": "-85.77279663085938", + "elevation_ft": "727", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Glasgow", + "scheduled_service": "no", + "gps_code": "4KY1", + "local_code": "4KY1" + }, + { + "id": "11497", + "ident": "4KY2", + "type": "heliport", + "name": "Manchester Memorial Hospital Heliport", + "latitude_deg": "37.162498474121094", + "longitude_deg": "-83.76190185546875", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Manchester", + "scheduled_service": "no", + "gps_code": "4KY2", + "local_code": "4KY2" + }, + { + "id": "11498", + "ident": "4KY3", + "type": "closed", + "name": "West Heliport", + "latitude_deg": "39.0572", + "longitude_deg": "-84.775297", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Burlington", + "scheduled_service": "no", + "keywords": "4KY3" + }, + { + "id": "11499", + "ident": "4KY4", + "type": "small_airport", + "name": "Moseley Field", + "latitude_deg": "37.592498779296875", + "longitude_deg": "-87.28109741210938", + "elevation_ft": "395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Calhoun", + "scheduled_service": "no", + "gps_code": "4KY4", + "local_code": "4KY4" + }, + { + "id": "11500", + "ident": "4KY5", + "type": "small_airport", + "name": "Weavers Run Airport", + "latitude_deg": "38.02859878540039", + "longitude_deg": "-83.88999938964844", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "West Point", + "scheduled_service": "no", + "gps_code": "4KY5", + "local_code": "4KY5" + }, + { + "id": "11501", + "ident": "4KY6", + "type": "heliport", + "name": "Jennie Stuart Medical Center Heliport", + "latitude_deg": "36.860784", + "longitude_deg": "-87.497675", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Hopkinsville", + "scheduled_service": "no", + "gps_code": "4KY6", + "local_code": "4KY6", + "keywords": "Air Evac 10 Heliport" + }, + { + "id": "11502", + "ident": "4KY7", + "type": "small_airport", + "name": "Mueller Farm Airport", + "latitude_deg": "38.823494", + "longitude_deg": "-84.686273", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Verona", + "scheduled_service": "no", + "gps_code": "4KY7", + "local_code": "4KY7" + }, + { + "id": "11503", + "ident": "4KY8", + "type": "small_airport", + "name": "Shady Acres Airport", + "latitude_deg": "37.94580078125", + "longitude_deg": "-85.6968994140625", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Shepherdsville", + "scheduled_service": "no", + "gps_code": "4KY8", + "local_code": "4KY8" + }, + { + "id": "11504", + "ident": "4KY9", + "type": "heliport", + "name": "King's Daughters Medical Center Heliport", + "latitude_deg": "38.47079849243164", + "longitude_deg": "-82.63500213623047", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "4KY9", + "local_code": "4KY9" + }, + { + "id": "11505", + "ident": "4LA0", + "type": "seaplane_base", + "name": "Port Sulphur Seaplane Base", + "latitude_deg": "29.46269989013672", + "longitude_deg": "-89.70279693603516", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Port Sulphur", + "scheduled_service": "no", + "gps_code": "4LA0", + "local_code": "4LA0" + }, + { + "id": "11506", + "ident": "4LA1", + "type": "heliport", + "name": "Chevron Fourchon Heliport", + "latitude_deg": "29.107475", + "longitude_deg": "-90.194387", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Leeville", + "scheduled_service": "no", + "gps_code": "4LA1", + "local_code": "4LA1" + }, + { + "id": "11507", + "ident": "4LA2", + "type": "closed", + "name": "Green Hill Compressors Heliport", + "latitude_deg": "29.076099", + "longitude_deg": "-90.285103", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Leeville", + "scheduled_service": "no", + "keywords": "4LA2" + }, + { + "id": "11508", + "ident": "4LA3", + "type": "small_airport", + "name": "Feliciana Airpark", + "latitude_deg": "30.8078", + "longitude_deg": "-91.213303", + "elevation_ft": "204", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Jackson", + "scheduled_service": "no", + "local_code": "LA3", + "keywords": "4LA3, Jackson Airport" + }, + { + "id": "11509", + "ident": "4LA4", + "type": "heliport", + "name": "Chevron Usa Inc Heliport", + "latitude_deg": "29.221099853515625", + "longitude_deg": "-90.21790313720703", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Leeville", + "scheduled_service": "no", + "gps_code": "4LA4", + "local_code": "4LA4" + }, + { + "id": "11510", + "ident": "4LA5", + "type": "heliport", + "name": "La Haye Center Heliport", + "latitude_deg": "30.19070053100586", + "longitude_deg": "-92.00900268554688", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "4LA5", + "local_code": "4LA5" + }, + { + "id": "11511", + "ident": "4LA6", + "type": "heliport", + "name": "Little Lake Heliport", + "latitude_deg": "29.49690055847168", + "longitude_deg": "-90.11810302734375", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lafitte", + "scheduled_service": "no", + "gps_code": "4LA6", + "local_code": "4LA6" + }, + { + "id": "11512", + "ident": "4LA7", + "type": "heliport", + "name": "West Jefferson Medical Center Heliport", + "latitude_deg": "29.8929", + "longitude_deg": "-90.094968", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Marrero", + "scheduled_service": "no", + "gps_code": "4LA7", + "local_code": "4LA7" + }, + { + "id": "11513", + "ident": "4LA8", + "type": "small_airport", + "name": "Overton Private Airport", + "latitude_deg": "30.707700729370117", + "longitude_deg": "-90.87429809570312", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "4LA8", + "local_code": "4LA8" + }, + { + "id": "11514", + "ident": "4LA9", + "type": "small_airport", + "name": "Blouin Flightpark Ultralightport", + "latitude_deg": "29.736812", + "longitude_deg": "-90.634518", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Raceland", + "scheduled_service": "no", + "gps_code": "4LA9", + "local_code": "4LA9" + }, + { + "id": "11515", + "ident": "4LL0", + "type": "small_airport", + "name": "Ranken Airport", + "latitude_deg": "41.835899353027344", + "longitude_deg": "-89.09339904785156", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Steward", + "scheduled_service": "no", + "gps_code": "4LL0", + "local_code": "4LL0" + }, + { + "id": "11516", + "ident": "4LL1", + "type": "small_airport", + "name": "Staton Airport", + "latitude_deg": "41.85419845581055", + "longitude_deg": "-89.08760070800781", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Steward", + "scheduled_service": "no", + "gps_code": "4LL1", + "local_code": "4LL1" + }, + { + "id": "11517", + "ident": "4LL2", + "type": "heliport", + "name": "Covenant Medical Center Heliport", + "latitude_deg": "40.11309814453125", + "longitude_deg": "-88.23419952392578", + "elevation_ft": "728", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Champaign", + "scheduled_service": "no", + "gps_code": "4LL2", + "local_code": "4LL2" + }, + { + "id": "11518", + "ident": "4LL3", + "type": "small_airport", + "name": "John L Coppernoll Airport", + "latitude_deg": "42.30830001831055", + "longitude_deg": "-89.9834976196289", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Stockton", + "scheduled_service": "no", + "gps_code": "4LL3", + "local_code": "4LL3" + }, + { + "id": "11519", + "ident": "4LL4", + "type": "small_airport", + "name": "Enjoy Field", + "latitude_deg": "40.976448", + "longitude_deg": "-87.999365", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Clifton", + "scheduled_service": "no", + "gps_code": "4LL4", + "local_code": "4LL4" + }, + { + "id": "11520", + "ident": "4LL7", + "type": "small_airport", + "name": "Willadae Farms Airport", + "latitude_deg": "42.001719", + "longitude_deg": "-88.664927", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sycamore", + "scheduled_service": "no", + "gps_code": "4LL7", + "local_code": "4LL7" + }, + { + "id": "11521", + "ident": "4LL8", + "type": "small_airport", + "name": "Colonial Acres Airport", + "latitude_deg": "41.999315", + "longitude_deg": "-88.648585", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sycamore", + "scheduled_service": "no", + "gps_code": "4LL8", + "local_code": "4LL8" + }, + { + "id": "11522", + "ident": "4LL9", + "type": "small_airport", + "name": "Alan B. Janssen Airport", + "latitude_deg": "39.34370040893555", + "longitude_deg": "-89.42369842529297", + "elevation_ft": "642", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Morrisonville", + "scheduled_service": "no", + "gps_code": "4LL9", + "local_code": "4LL9" + }, + { + "id": "11523", + "ident": "4M0", + "type": "small_airport", + "name": "Lake Ann Airway Estates Airport", + "latitude_deg": "44.696085", + "longitude_deg": "-85.914159", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Interlochen", + "scheduled_service": "no", + "local_code": "4M0" + }, + { + "id": "11524", + "ident": "4M5", + "type": "small_airport", + "name": "Dermott Municipal Airport", + "latitude_deg": "33.487998962402344", + "longitude_deg": "-91.44259643554688", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Dermott", + "scheduled_service": "no", + "gps_code": "4M5", + "local_code": "4M5" + }, + { + "id": "11525", + "ident": "4M8", + "type": "small_airport", + "name": "Clarendon Municipal Airport", + "latitude_deg": "34.64799880981445", + "longitude_deg": "-91.39440155029297", + "elevation_ft": "217", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Clarendon", + "scheduled_service": "no", + "gps_code": "4M8", + "local_code": "4M8" + }, + { + "id": "11526", + "ident": "4MA0", + "type": "heliport", + "name": "Burke Heliport", + "latitude_deg": "42.233011", + "longitude_deg": "-71.358601", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Sherborn", + "scheduled_service": "no", + "gps_code": "4MA0", + "local_code": "4MA0" + }, + { + "id": "11527", + "ident": "4MA1", + "type": "heliport", + "name": "Bangs Heliport", + "latitude_deg": "41.777000427246094", + "longitude_deg": "-70.68810272216797", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Wareham", + "scheduled_service": "no", + "gps_code": "4MA1", + "local_code": "4MA1" + }, + { + "id": "11528", + "ident": "4MA2", + "type": "heliport", + "name": "Dow Jones Heliport", + "latitude_deg": "42.162899017333984", + "longitude_deg": "-72.55039978027344", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Chicopee", + "scheduled_service": "no", + "gps_code": "4MA2", + "local_code": "4MA2" + }, + { + "id": "11529", + "ident": "4MA3", + "type": "heliport", + "name": "Millbury Savings/West Heliport", + "latitude_deg": "42.19179916381836", + "longitude_deg": "-71.76950073242188", + "elevation_ft": "393", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Millbury", + "scheduled_service": "no", + "gps_code": "4MA3", + "local_code": "4MA3" + }, + { + "id": "11530", + "ident": "4MA4", + "type": "heliport", + "name": "J K L Heliport", + "latitude_deg": "41.621485", + "longitude_deg": "-71.014225", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "New Bedford", + "scheduled_service": "no", + "gps_code": "4MA4", + "local_code": "4MA4" + }, + { + "id": "11531", + "ident": "4MA5", + "type": "heliport", + "name": "World Trade Center Heliport", + "latitude_deg": "42.349300384521484", + "longitude_deg": "-71.043701171875", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Boston", + "scheduled_service": "no", + "gps_code": "4MA5", + "local_code": "4MA5" + }, + { + "id": "11532", + "ident": "4MA6", + "type": "heliport", + "name": "Pleasant Beach Heliport", + "latitude_deg": "42.26258", + "longitude_deg": "-70.81278", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Cohasset", + "scheduled_service": "no", + "gps_code": "4MA6", + "local_code": "4MA6" + }, + { + "id": "11533", + "ident": "4MA7", + "type": "heliport", + "name": "Ahearn Heliport", + "latitude_deg": "42.19150161743164", + "longitude_deg": "-72.45010375976562", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Ludlow", + "scheduled_service": "no", + "gps_code": "4MA7", + "local_code": "4MA7" + }, + { + "id": "11534", + "ident": "4MA8", + "type": "heliport", + "name": "Pg Heliport", + "latitude_deg": "42.28089904785156", + "longitude_deg": "-71.03730010986328", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Quincy", + "scheduled_service": "no", + "gps_code": "4MA8", + "local_code": "4MA8" + }, + { + "id": "11535", + "ident": "4MA9", + "type": "heliport", + "name": "Broad Street Heliport", + "latitude_deg": "42.09091567993164", + "longitude_deg": "-72.58370208740234", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "4MA9", + "local_code": "4MA9" + }, + { + "id": "45464", + "ident": "4MD", + "type": "heliport", + "name": "Pier 7 Heliport", + "latitude_deg": "39.271518", + "longitude_deg": "-76.572422", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Baltimore", + "scheduled_service": "no", + "gps_code": "K4MD", + "local_code": "4MD" + }, + { + "id": "11536", + "ident": "4MD0", + "type": "small_airport", + "name": "Mears Creek Airfield", + "latitude_deg": "38.374298095703125", + "longitude_deg": "-76.48300170898438", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Lusby", + "scheduled_service": "no", + "gps_code": "4MD0", + "local_code": "4MD0" + }, + { + "id": "11537", + "ident": "4MD1", + "type": "small_airport", + "name": "Bunting's Field", + "latitude_deg": "38.36819839477539", + "longitude_deg": "-75.23069763183594", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Berlin", + "scheduled_service": "no", + "gps_code": "4MD1", + "local_code": "4MD1" + }, + { + "id": "11538", + "ident": "4MD2", + "type": "small_airport", + "name": "Ward's Airport", + "latitude_deg": "39.4297981262207", + "longitude_deg": "-79.45390319824219", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Oakland", + "scheduled_service": "no", + "gps_code": "4MD2", + "local_code": "4MD2" + }, + { + "id": "11539", + "ident": "4MD3", + "type": "small_airport", + "name": "Carey Field", + "latitude_deg": "38.439917", + "longitude_deg": "-75.159391", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Bishopville", + "scheduled_service": "no", + "gps_code": "4MD3", + "local_code": "4MD3" + }, + { + "id": "11540", + "ident": "4MD4", + "type": "small_airport", + "name": "Clements Airport", + "latitude_deg": "38.340599060058594", + "longitude_deg": "-76.73719787597656", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Clements", + "scheduled_service": "no", + "gps_code": "4MD4", + "local_code": "4MD4" + }, + { + "id": "11541", + "ident": "4MD5", + "type": "heliport", + "name": "Phh Heliport", + "latitude_deg": "39.49420166015625", + "longitude_deg": "-76.65670013427734", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Hunt Valley", + "scheduled_service": "no", + "gps_code": "4MD5", + "local_code": "4MD5" + }, + { + "id": "11542", + "ident": "4MD6", + "type": "small_airport", + "name": "Moxley's Airport", + "latitude_deg": "39.625", + "longitude_deg": "-76.26249694824219", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Dublin", + "scheduled_service": "no", + "gps_code": "4MD6", + "local_code": "4MD6" + }, + { + "id": "45458", + "ident": "4MD7", + "type": "small_airport", + "name": "Catoctin Crosswind Airport", + "latitude_deg": "39.645255", + "longitude_deg": "-77.367826", + "elevation_ft": "451", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Thurmont", + "scheduled_service": "no", + "gps_code": "4MD7", + "local_code": "4MD7" + }, + { + "id": "11543", + "ident": "4MD8", + "type": "small_airport", + "name": "Ijamsville Airport", + "latitude_deg": "39.358299255371094", + "longitude_deg": "-77.3396987915039", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Frederick", + "scheduled_service": "no", + "gps_code": "4MD8", + "local_code": "4MD8" + }, + { + "id": "11544", + "ident": "4MD9", + "type": "small_airport", + "name": "St John Airport", + "latitude_deg": "39.48059844970703", + "longitude_deg": "-76.7605972290039", + "elevation_ft": "461", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Owings Mills", + "scheduled_service": "no", + "gps_code": "4MD9", + "local_code": "4MD9" + }, + { + "id": "11545", + "ident": "4ME4", + "type": "seaplane_base", + "name": "Lovewell Pond Seaplane Base", + "latitude_deg": "44.00680160522461", + "longitude_deg": "-70.93360137939453", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Fryeburg", + "scheduled_service": "no", + "gps_code": "4ME4", + "local_code": "4ME4" + }, + { + "id": "331721", + "ident": "4ME9", + "type": "heliport", + "name": "Norway Heliport", + "latitude_deg": "44.209319", + "longitude_deg": "-70.531705", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Norway", + "scheduled_service": "no", + "gps_code": "4ME9", + "local_code": "4ME9", + "keywords": "Stephens Memorial Hospital" + }, + { + "id": "11546", + "ident": "4MI0", + "type": "closed", + "name": "Kriewall Strip", + "latitude_deg": "42.8381", + "longitude_deg": "-82.968803", + "elevation_ft": "765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Romeo", + "scheduled_service": "no", + "keywords": "4MI0" + }, + { + "id": "11547", + "ident": "4MI1", + "type": "small_airport", + "name": "Air Rahe Airport", + "latitude_deg": "41.83060073852539", + "longitude_deg": "-83.6874008178711", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Petersburg", + "scheduled_service": "no", + "gps_code": "4MI1", + "local_code": "4MI1" + }, + { + "id": "345415", + "ident": "4MI2", + "type": "heliport", + "name": "McLaren Lapeer Region Heliport", + "latitude_deg": "43.063695", + "longitude_deg": "-83.321053", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lapeer", + "scheduled_service": "no", + "gps_code": "4MI2", + "local_code": "4MI2" + }, + { + "id": "11548", + "ident": "4MI3", + "type": "closed", + "name": "Phil's Field", + "latitude_deg": "42.72602", + "longitude_deg": "-86.040673", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Overisel", + "scheduled_service": "no", + "gps_code": "4MI3", + "local_code": "4MI3" + }, + { + "id": "11549", + "ident": "4MI4", + "type": "small_airport", + "name": "Whitcomb Field", + "latitude_deg": "42.1781005859375", + "longitude_deg": "-85.6707992553711", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Schoolcraft", + "scheduled_service": "no", + "gps_code": "4MI4", + "local_code": "4MI4" + }, + { + "id": "11550", + "ident": "4MI5", + "type": "heliport", + "name": "Bps Heliport", + "latitude_deg": "43.00699996948242", + "longitude_deg": "-82.60130310058594", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ruby", + "scheduled_service": "no", + "gps_code": "4MI5", + "local_code": "4MI5" + }, + { + "id": "11551", + "ident": "4MI6", + "type": "small_airport", + "name": "Benedick Airport", + "latitude_deg": "41.8577995300293", + "longitude_deg": "-86.614501953125", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Three Oaks", + "scheduled_service": "no", + "gps_code": "4MI6", + "local_code": "4MI6" + }, + { + "id": "11552", + "ident": "4MI7", + "type": "small_airport", + "name": "Witbeck Aerodrome Airport", + "latitude_deg": "43.812714", + "longitude_deg": "-84.813552", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Farwell", + "scheduled_service": "no", + "gps_code": "4MI7", + "local_code": "4MI7" + }, + { + "id": "11553", + "ident": "4MI9", + "type": "closed", + "name": "ProMedica Bixby Hospital Heliport", + "latitude_deg": "41.91297", + "longitude_deg": "-84.048913", + "elevation_ft": "821", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Adrian", + "scheduled_service": "no", + "gps_code": "4MI9", + "local_code": "4MI9" + }, + { + "id": "11554", + "ident": "4MN0", + "type": "closed", + "name": "Skalicky Airstrip", + "latitude_deg": "45.6619", + "longitude_deg": "-94.5756", + "elevation_ft": "1266", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Albany", + "scheduled_service": "no", + "keywords": "4MN0" + }, + { + "id": "325676", + "ident": "4MN1", + "type": "small_airport", + "name": "Hintzman Private Airport", + "latitude_deg": "46.65098", + "longitude_deg": "-95.354874", + "elevation_ft": "1465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "New York Mills", + "scheduled_service": "no", + "gps_code": "4MN1", + "local_code": "4MN1" + }, + { + "id": "11555", + "ident": "4MN2", + "type": "small_airport", + "name": "Coot Landing Airport", + "latitude_deg": "46.66379928588867", + "longitude_deg": "-96.2417984008789", + "elevation_ft": "1325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Barnsville", + "scheduled_service": "no", + "gps_code": "4MN2", + "local_code": "4MN2" + }, + { + "id": "11556", + "ident": "4MN3", + "type": "heliport", + "name": "Lexington Heliport", + "latitude_deg": "45.311100006103516", + "longitude_deg": "-93.15039825439453", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Ham Lake", + "scheduled_service": "no", + "gps_code": "4MN3", + "local_code": "4MN3" + }, + { + "id": "11557", + "ident": "4MN4", + "type": "small_airport", + "name": "Mulder Field Inc Airport", + "latitude_deg": "44.4557991027832", + "longitude_deg": "-96.23059844970703", + "elevation_ft": "1669", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Ivanhoe", + "scheduled_service": "no", + "gps_code": "4MN4", + "local_code": "4MN4" + }, + { + "id": "11558", + "ident": "4MN5", + "type": "small_airport", + "name": "Kapaun-Wilson Field", + "latitude_deg": "45.550498962402", + "longitude_deg": "-96.451400756836", + "elevation_ft": "1122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Graceville", + "scheduled_service": "no", + "gps_code": "4MN5", + "local_code": "4MN5", + "keywords": "00Y" + }, + { + "id": "322181", + "ident": "4MN6", + "type": "heliport", + "name": "Sanford Westbrook Clinic Heliport", + "latitude_deg": "44.046133", + "longitude_deg": "-95.440041", + "elevation_ft": "1432", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Westbrook", + "scheduled_service": "no", + "gps_code": "4MN6", + "local_code": "4MN6" + }, + { + "id": "11559", + "ident": "4MN7", + "type": "closed", + "name": "Burk Airport", + "latitude_deg": "43.8438", + "longitude_deg": "-94.285797", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Amboy", + "scheduled_service": "no", + "keywords": "4MN7" + }, + { + "id": "11560", + "ident": "4MN8", + "type": "closed", + "name": "Myers Field", + "latitude_deg": "46.627499", + "longitude_deg": "-94.339401", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Pequot Lakes", + "scheduled_service": "no", + "keywords": "4MN8" + }, + { + "id": "11561", + "ident": "4MO", + "type": "small_airport", + "name": "Montgomery-Wehrman Airport", + "latitude_deg": "39.01250076293945", + "longitude_deg": "-91.41929626464844", + "elevation_ft": "778", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Montgomery City", + "scheduled_service": "no", + "gps_code": "4MO", + "local_code": "4MO" + }, + { + "id": "11562", + "ident": "4MO0", + "type": "small_airport", + "name": "Fender J H Airport", + "latitude_deg": "38.699501037597656", + "longitude_deg": "-94.05799865722656", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kingsville", + "scheduled_service": "no", + "gps_code": "4MO0", + "local_code": "4MO0" + }, + { + "id": "11563", + "ident": "4MO2", + "type": "small_airport", + "name": "Newcomb Hereford Ranch Airport", + "latitude_deg": "40.55839920043945", + "longitude_deg": "-92.44190216064453", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "4MO2", + "local_code": "4MO2" + }, + { + "id": "11564", + "ident": "4MO3", + "type": "small_airport", + "name": "Schneider Field", + "latitude_deg": "39.991545", + "longitude_deg": "-92.494212", + "elevation_ft": "939", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "La Plata", + "scheduled_service": "no", + "gps_code": "4MO3", + "local_code": "4MO3" + }, + { + "id": "11565", + "ident": "4MO4", + "type": "small_airport", + "name": "Liberty Landing Airport", + "latitude_deg": "39.21670150756836", + "longitude_deg": "-94.33360290527344", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Liberty", + "scheduled_service": "no", + "gps_code": "4MO4", + "local_code": "4MO4" + }, + { + "id": "11566", + "ident": "4MO5", + "type": "closed", + "name": "Boehne Field", + "latitude_deg": "37.366699", + "longitude_deg": "-93.991897", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lockwood", + "scheduled_service": "no", + "keywords": "4MO5" + }, + { + "id": "11567", + "ident": "4MO6", + "type": "small_airport", + "name": "Mark Twain Air Park", + "latitude_deg": "39.439485", + "longitude_deg": "-91.116199", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Louisiana", + "scheduled_service": "no", + "gps_code": "4MO6", + "local_code": "4MO6" + }, + { + "id": "11568", + "ident": "4MO7", + "type": "small_airport", + "name": "Crop Care Airport", + "latitude_deg": "40.14139938354492", + "longitude_deg": "-95.24079895019531", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Mound City", + "scheduled_service": "no", + "gps_code": "4MO7", + "local_code": "4MO7" + }, + { + "id": "11569", + "ident": "4MO8", + "type": "small_airport", + "name": "Martens Airport", + "latitude_deg": "39.20669937133789", + "longitude_deg": "-94.26969909667969", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Atherton", + "scheduled_service": "no", + "gps_code": "4MO8", + "local_code": "4MO8" + }, + { + "id": "11570", + "ident": "4MO9", + "type": "small_airport", + "name": "Friends Field", + "latitude_deg": "38.89250183105469", + "longitude_deg": "-94.10859680175781", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lone Jack", + "scheduled_service": "no", + "gps_code": "4MO9", + "local_code": "4MO9" + }, + { + "id": "11571", + "ident": "4MS0", + "type": "small_airport", + "name": "Payne Airport", + "latitude_deg": "32.30039978027344", + "longitude_deg": "-89.85900115966797", + "elevation_ft": "359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Pelahatchie", + "scheduled_service": "no", + "gps_code": "4MS0", + "local_code": "4MS0" + }, + { + "id": "45497", + "ident": "4MS1", + "type": "heliport", + "name": "Robinsonville Heliport", + "latitude_deg": "34.816667", + "longitude_deg": "-90.302917", + "elevation_ft": "202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Robinsonville", + "scheduled_service": "no", + "gps_code": "4MS1", + "local_code": "4MS1" + }, + { + "id": "11572", + "ident": "4MS2", + "type": "small_airport", + "name": "Dogwood Acres Airport", + "latitude_deg": "32.212100982666016", + "longitude_deg": "-90.45030212402344", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Raymond", + "scheduled_service": "no", + "gps_code": "4MS2", + "local_code": "4MS2" + }, + { + "id": "11573", + "ident": "4MS3", + "type": "small_airport", + "name": "Jeter Field", + "latitude_deg": "34.95600128173828", + "longitude_deg": "-89.39399719238281", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Sladen", + "scheduled_service": "no", + "gps_code": "4MS3", + "local_code": "4MS3" + }, + { + "id": "11574", + "ident": "4MS4", + "type": "small_airport", + "name": "Spearman Field", + "latitude_deg": "34.15769958496094", + "longitude_deg": "-88.76020050048828", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Shannon", + "scheduled_service": "no", + "gps_code": "4MS4", + "local_code": "4MS4" + }, + { + "id": "11575", + "ident": "4MS5", + "type": "small_airport", + "name": "Bird Nest Airport", + "latitude_deg": "31.001399993896484", + "longitude_deg": "-88.51699829101562", + "elevation_ft": "311", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Lucedale", + "scheduled_service": "no", + "gps_code": "4MS5", + "local_code": "4MS5" + }, + { + "id": "11576", + "ident": "4MS6", + "type": "heliport", + "name": "University of Mississippi Medical Center Heliport", + "latitude_deg": "32.328429", + "longitude_deg": "-90.174025", + "elevation_ft": "344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "4MS6", + "local_code": "4MS6", + "keywords": "University Hospital" + }, + { + "id": "11577", + "ident": "4MS7", + "type": "small_airport", + "name": "Arnold Field", + "latitude_deg": "34.7484016418457", + "longitude_deg": "-90.28079986572266", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Tunica", + "scheduled_service": "no", + "gps_code": "4MS7", + "local_code": "4MS7" + }, + { + "id": "11578", + "ident": "4MS8", + "type": "heliport", + "name": "Casino Center Heliport", + "latitude_deg": "34.8400993347168", + "longitude_deg": "-90.32839965820312", + "elevation_ft": "201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Tunica", + "scheduled_service": "no", + "gps_code": "4MS8", + "local_code": "4MS8" + }, + { + "id": "11579", + "ident": "4MS9", + "type": "small_airport", + "name": "Providence Airpark", + "latitude_deg": "32.666", + "longitude_deg": "-90.067596", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Canton", + "scheduled_service": "no", + "gps_code": "4MS9", + "local_code": "4MS9", + "keywords": "Cochran Airport" + }, + { + "id": "11580", + "ident": "4MT1", + "type": "small_airport", + "name": "Kreikemeier Airport", + "latitude_deg": "45.820701599121094", + "longitude_deg": "-111.1449966430664", + "elevation_ft": "4360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Belgrade", + "scheduled_service": "no", + "gps_code": "4MT1", + "local_code": "4MT1" + }, + { + "id": "336198", + "ident": "4MT5", + "type": "heliport", + "name": "Port Smith Heliport", + "latitude_deg": "46.703368", + "longitude_deg": "-111.827302", + "elevation_ft": "4020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Helena", + "scheduled_service": "no", + "gps_code": "4MT5", + "local_code": "4MT5" + }, + { + "id": "322890", + "ident": "4MT7", + "type": "heliport", + "name": "Big Sky Medical Center Heliport", + "latitude_deg": "45.261111", + "longitude_deg": "-111.3", + "elevation_ft": "6276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Big Sky", + "scheduled_service": "no", + "gps_code": "4MT7", + "local_code": "4MT7" + }, + { + "id": "347876", + "ident": "4MT8", + "type": "small_airport", + "name": "Brier Patch Airport", + "latitude_deg": "46.473889", + "longitude_deg": "-114.054667", + "elevation_ft": "3740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Stevensville", + "scheduled_service": "no", + "gps_code": "4MT8", + "local_code": "4MT8" + }, + { + "id": "323223", + "ident": "4MT9", + "type": "small_airport", + "name": "Boulanger Field Airport", + "latitude_deg": "46.030276", + "longitude_deg": "-114.184994", + "elevation_ft": "3891", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Darby", + "scheduled_service": "no", + "gps_code": "4MT9", + "local_code": "4MT9" + }, + { + "id": "11581", + "ident": "4N0", + "type": "small_airport", + "name": "Newman's Airport", + "latitude_deg": "42.288813", + "longitude_deg": "-85.748949", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Kalamazoo", + "scheduled_service": "no", + "local_code": "4N0", + "wikipedia_link": "https://en.wikipedia.org/wiki/Newman's_Airport" + }, + { + "id": "11582", + "ident": "4N2", + "type": "small_airport", + "name": "Middlesex Valley Airport", + "latitude_deg": "42.713133", + "longitude_deg": "-77.27271", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Middlesex", + "scheduled_service": "no", + "gps_code": "K4N2", + "local_code": "4N2" + }, + { + "id": "11583", + "ident": "4N4", + "type": "small_airport", + "name": "Lidgerwood Municipal Airport", + "latitude_deg": "46.0890998840332", + "longitude_deg": "-97.16649627685547", + "elevation_ft": "1081", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Lidgerwood", + "scheduled_service": "no", + "gps_code": "4N4", + "local_code": "4N4" + }, + { + "id": "11584", + "ident": "4N7", + "type": "small_airport", + "name": "Greene Airport", + "latitude_deg": "42.30419921875", + "longitude_deg": "-75.78710174560547", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Greene", + "scheduled_service": "no", + "gps_code": "4N7", + "local_code": "4N7" + }, + { + "id": "11585", + "ident": "4NA0", + "type": "small_airport", + "name": "Lindvig Airstrip", + "latitude_deg": "48.008399963378906", + "longitude_deg": "-103.59100341796875", + "elevation_ft": "2180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Williston", + "scheduled_service": "no", + "gps_code": "4NA0", + "local_code": "4NA0" + }, + { + "id": "11586", + "ident": "4NA1", + "type": "small_airport", + "name": "Ring Rock Ranch Airport", + "latitude_deg": "48.25469970703125", + "longitude_deg": "-103.6729965209961", + "elevation_ft": "2256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Williston", + "scheduled_service": "no", + "gps_code": "4NA1", + "local_code": "4NA1" + }, + { + "id": "11587", + "ident": "4NA3", + "type": "small_airport", + "name": "Peterson Airstrip", + "latitude_deg": "48.857200622558594", + "longitude_deg": "-101.302001953125", + "elevation_ft": "1545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Antler", + "scheduled_service": "no", + "gps_code": "4NA3", + "local_code": "4NA3" + }, + { + "id": "11588", + "ident": "4NA5", + "type": "small_airport", + "name": "Berg Strip", + "latitude_deg": "48.288299560546875", + "longitude_deg": "-101.8280029296875", + "elevation_ft": "2250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Berthold", + "scheduled_service": "no", + "gps_code": "4NA5", + "local_code": "4NA5" + }, + { + "id": "11589", + "ident": "4NA6", + "type": "small_airport", + "name": "Nicks Landing Airport", + "latitude_deg": "48.45500183105469", + "longitude_deg": "-103.87999725341797", + "elevation_ft": "2440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Grenora", + "scheduled_service": "no", + "gps_code": "4NA6", + "local_code": "4NA6" + }, + { + "id": "11590", + "ident": "4NC0", + "type": "small_airport", + "name": "Boyd's Hawks Creek Airport", + "latitude_deg": "35.89849853515625", + "longitude_deg": "-80.61620330810547", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Mocksville", + "scheduled_service": "no", + "gps_code": "4NC0", + "local_code": "4NC0" + }, + { + "id": "11591", + "ident": "4NC1", + "type": "heliport", + "name": "Futuristics Heliport", + "latitude_deg": "36.529598236083984", + "longitude_deg": "-79.30169677734375", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "4NC1", + "local_code": "4NC1" + }, + { + "id": "11592", + "ident": "4NC2", + "type": "closed", + "name": "Bay Creek Airport", + "latitude_deg": "35.206437", + "longitude_deg": "-76.611511", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Bayboro", + "scheduled_service": "no", + "keywords": "4NC2" + }, + { + "id": "11593", + "ident": "4NC3", + "type": "small_airport", + "name": "Taylorsville Airport", + "latitude_deg": "35.930801", + "longitude_deg": "-81.196702", + "elevation_ft": "1090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Taylorsville", + "scheduled_service": "no", + "local_code": "NC2", + "keywords": "4NC3" + }, + { + "id": "45683", + "ident": "4NC4", + "type": "closed", + "name": "Lowe's Mooresville Heliport", + "latitude_deg": "35.544847", + "longitude_deg": "-80.854269", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Mooresville", + "scheduled_service": "no", + "keywords": "4NC4" + }, + { + "id": "11594", + "ident": "4NC5", + "type": "small_airport", + "name": "Triple M Airport", + "latitude_deg": "34.73040008544922", + "longitude_deg": "-77.05049896240234", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Cape Carteret", + "scheduled_service": "no", + "gps_code": "4NC5", + "local_code": "4NC5" + }, + { + "id": "11595", + "ident": "4NC6", + "type": "small_airport", + "name": "Cane Creek Airport", + "latitude_deg": "35.441363", + "longitude_deg": "-82.482223", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Fletcher", + "scheduled_service": "no", + "gps_code": "4NC6", + "local_code": "4NC6" + }, + { + "id": "11596", + "ident": "4NC7", + "type": "small_airport", + "name": "Peacock STOLport", + "latitude_deg": "35.6963005065918", + "longitude_deg": "-78.5374984741211", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Garner", + "scheduled_service": "no", + "gps_code": "4NC7", + "local_code": "4NC7" + }, + { + "id": "11597", + "ident": "4NC8", + "type": "small_airport", + "name": "Buffalo Creek Airport", + "latitude_deg": "35.422401428222656", + "longitude_deg": "-80.62059783935547", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "4NC8", + "local_code": "4NC8" + }, + { + "id": "11598", + "ident": "4NC9", + "type": "small_airport", + "name": "Lz Carroll STOLport", + "latitude_deg": "35.44850158691406", + "longitude_deg": "-80.34259796142578", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Gold Hill", + "scheduled_service": "no", + "gps_code": "4NC9", + "local_code": "4NC9" + }, + { + "id": "11599", + "ident": "4ND1", + "type": "small_airport", + "name": "Knutson Airport", + "latitude_deg": "47.79280090332031", + "longitude_deg": "-97.15370178222656", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Thompson", + "scheduled_service": "no", + "gps_code": "4ND1", + "local_code": "4ND1" + }, + { + "id": "11600", + "ident": "4ND4", + "type": "small_airport", + "name": "Pfau Private Airport", + "latitude_deg": "48.563899993896484", + "longitude_deg": "-100.87999725341797", + "elevation_ft": "1455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Upham", + "scheduled_service": "no", + "gps_code": "4ND4", + "local_code": "4ND4" + }, + { + "id": "11601", + "ident": "4ND8", + "type": "small_airport", + "name": "Sanden Airport", + "latitude_deg": "46.35409927368164", + "longitude_deg": "-97.11699676513672", + "elevation_ft": "1065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Wyndmere", + "scheduled_service": "no", + "gps_code": "4ND8", + "local_code": "4ND8" + }, + { + "id": "11602", + "ident": "4NE0", + "type": "small_airport", + "name": "Regier Brothers Airport", + "latitude_deg": "40.916099548339844", + "longitude_deg": "-101.55999755859375", + "elevation_ft": "3363", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Madrid", + "scheduled_service": "no", + "gps_code": "4NE0", + "local_code": "4NE0" + }, + { + "id": "11603", + "ident": "4NE1", + "type": "small_airport", + "name": "Mc Millan Ranch Airport", + "latitude_deg": "41.7541999817", + "longitude_deg": "-99.75460052490001", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Milburn", + "scheduled_service": "no", + "gps_code": "4NE1", + "local_code": "4NE1" + }, + { + "id": "11604", + "ident": "4NE3", + "type": "heliport", + "name": "Simon Heliport", + "latitude_deg": "41.10499954223633", + "longitude_deg": "-100.74400329589844", + "elevation_ft": "2789", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "North Platte", + "scheduled_service": "no", + "gps_code": "4NE3", + "local_code": "4NE3" + }, + { + "id": "11605", + "ident": "4NE8", + "type": "small_airport", + "name": "Malone M-Bar Ranch Airport", + "latitude_deg": "40.3828010559082", + "longitude_deg": "-101.1520004272461", + "elevation_ft": "3000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Palisade", + "scheduled_service": "no", + "gps_code": "4NE8", + "local_code": "4NE8" + }, + { + "id": "11606", + "ident": "4NE9", + "type": "small_airport", + "name": "Holzfaster's Airport", + "latitude_deg": "40.99919891357422", + "longitude_deg": "-101.4469985961914", + "elevation_ft": "3305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Paxton", + "scheduled_service": "no", + "gps_code": "4NE9", + "local_code": "4NE9" + }, + { + "id": "11607", + "ident": "4NJ0", + "type": "small_airport", + "name": "Windward Farms Airport", + "latitude_deg": "40.44929885864258", + "longitude_deg": "-75.0177001953125", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Rosemont", + "scheduled_service": "no", + "gps_code": "4NJ0", + "local_code": "4NJ0" + }, + { + "id": "11608", + "ident": "4NJ1", + "type": "heliport", + "name": "RJW University Hospital Somerset Heliport", + "latitude_deg": "40.56892", + "longitude_deg": "-74.59453", + "elevation_ft": "87", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Somerville", + "scheduled_service": "no", + "gps_code": "4NJ1", + "local_code": "4NJ1", + "keywords": "Somerset Medical Center Heliport" + }, + { + "id": "11609", + "ident": "4NJ2", + "type": "seaplane_base", + "name": "Passaic River Seaplane Base", + "latitude_deg": "40.82929992675781", + "longitude_deg": "-74.12039947509766", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Rutherford", + "scheduled_service": "no", + "gps_code": "4NJ2", + "local_code": "4NJ2" + }, + { + "id": "11610", + "ident": "4NJ3", + "type": "heliport", + "name": "Seabrook Heliport", + "latitude_deg": "39.619598388671875", + "longitude_deg": "-75.4384994506836", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "4NJ3", + "local_code": "4NJ3" + }, + { + "id": "11611", + "ident": "4NJ4", + "type": "heliport", + "name": "Pse & G Trenton Distribution Helistop", + "latitude_deg": "40.287601470947266", + "longitude_deg": "-74.67539978027344", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Lawrenceville", + "scheduled_service": "no", + "gps_code": "4NJ4", + "local_code": "4NJ4" + }, + { + "id": "11612", + "ident": "4NJ5", + "type": "heliport", + "name": "Raritan Center Heliport", + "latitude_deg": "40.49259948730469", + "longitude_deg": "-74.52130126953125", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Sayreville", + "scheduled_service": "no", + "gps_code": "4NJ5", + "local_code": "4NJ5" + }, + { + "id": "11613", + "ident": "4NJ6", + "type": "heliport", + "name": "Vineland Veterans Home Heliport", + "latitude_deg": "39.49509811401367", + "longitude_deg": "-75.03070068359375", + "elevation_ft": "109", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Vineland", + "scheduled_service": "no", + "gps_code": "4NJ6", + "local_code": "4NJ6" + }, + { + "id": "11614", + "ident": "4NJ7", + "type": "closed", + "name": "A M Classics Heliport", + "latitude_deg": "39.6465", + "longitude_deg": "-75.304398", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Woodstown", + "scheduled_service": "no", + "keywords": "4NJ7" + }, + { + "id": "11615", + "ident": "4NJ8", + "type": "closed", + "name": "Peters Airport", + "latitude_deg": "40.600101", + "longitude_deg": "-74.732903", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Whitehouse Station", + "scheduled_service": "no", + "gps_code": "4NJ8", + "local_code": "4NJ8" + }, + { + "id": "11616", + "ident": "4NJ9", + "type": "closed", + "name": "Mack Trucks Helistop", + "latitude_deg": "40.577301", + "longitude_deg": "-74.594902", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Somerville", + "scheduled_service": "no", + "keywords": "4NJ9" + }, + { + "id": "11617", + "ident": "4NK0", + "type": "heliport", + "name": "Wca Hospital Heliport", + "latitude_deg": "42.0900993347168", + "longitude_deg": "-79.23059844970703", + "elevation_ft": "1340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Jamestown", + "scheduled_service": "no", + "gps_code": "4NK0", + "local_code": "4NK0" + }, + { + "id": "11618", + "ident": "4NK1", + "type": "small_airport", + "name": "B-Ville Airpark", + "latitude_deg": "43.144798278808594", + "longitude_deg": "-76.3113021850586", + "elevation_ft": "375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Baldwinsville", + "scheduled_service": "no", + "gps_code": "4NK1", + "local_code": "4NK1" + }, + { + "id": "45672", + "ident": "4NK2", + "type": "small_airport", + "name": "Tracy Field", + "latitude_deg": "43.145233", + "longitude_deg": "-73.41965", + "elevation_ft": "455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Greenwich", + "scheduled_service": "no", + "gps_code": "4NK2", + "local_code": "4NK2" + }, + { + "id": "11619", + "ident": "4NK3", + "type": "small_airport", + "name": "Evans Airways Airport", + "latitude_deg": "42.67250061035156", + "longitude_deg": "-78.96700286865234", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Evans", + "scheduled_service": "no", + "gps_code": "4NK3", + "local_code": "4NK3" + }, + { + "id": "11620", + "ident": "4NK4", + "type": "small_airport", + "name": "Woodford Airfield", + "latitude_deg": "42.82720184326172", + "longitude_deg": "-76.02580261230469", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Fabius", + "scheduled_service": "no", + "gps_code": "4NK4", + "local_code": "4NK4" + }, + { + "id": "11621", + "ident": "4NK5", + "type": "small_airport", + "name": "Harvs Airport", + "latitude_deg": "43.101200103759766", + "longitude_deg": "-77.3677978515625", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Macedon", + "scheduled_service": "no", + "gps_code": "4NK5", + "local_code": "4NK5" + }, + { + "id": "11622", + "ident": "4NK6", + "type": "closed", + "name": "Ag-Alley Airport", + "latitude_deg": "43.161098", + "longitude_deg": "-77.177498", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Marion", + "scheduled_service": "no", + "keywords": "4NK6" + }, + { + "id": "11623", + "ident": "4NK7", + "type": "heliport", + "name": "Apollo Fields Heliport", + "latitude_deg": "41.831326", + "longitude_deg": "-73.659353", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Millbrook", + "scheduled_service": "no", + "gps_code": "4NK7", + "local_code": "4NK7", + "keywords": "Lightning Tree Farm Heliport" + }, + { + "id": "11624", + "ident": "4NK8", + "type": "closed", + "name": "Longwell Airport", + "latitude_deg": "43.0009", + "longitude_deg": "-74.187103", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Amsterdam", + "scheduled_service": "no", + "keywords": "4NK8" + }, + { + "id": "11625", + "ident": "4NK9", + "type": "heliport", + "name": "Corporate Park of Staten Island Heliport", + "latitude_deg": "40.6171989440918", + "longitude_deg": "-74.17579650878906", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Staten Island", + "scheduled_service": "no", + "gps_code": "4NK9", + "local_code": "4NK9" + }, + { + "id": "11626", + "ident": "4NY0", + "type": "small_airport", + "name": "Mountain View Airpark", + "latitude_deg": "44.66889953613281", + "longitude_deg": "-73.54620361328125", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Beekmantown", + "scheduled_service": "no", + "gps_code": "4NY0", + "local_code": "4NY0" + }, + { + "id": "11627", + "ident": "4NY1", + "type": "small_airport", + "name": "Orange Poultry Farm Airport", + "latitude_deg": "41.32789993286133", + "longitude_deg": "-74.32460021972656", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Chester", + "scheduled_service": "no", + "gps_code": "4NY1", + "local_code": "4NY1" + }, + { + "id": "11628", + "ident": "4NY2", + "type": "seaplane_base", + "name": "Edo Seaplane Base", + "latitude_deg": "40.78340148925781", + "longitude_deg": "-73.86620330810547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "College Point", + "scheduled_service": "no", + "gps_code": "4NY2", + "local_code": "4NY2" + }, + { + "id": "45553", + "ident": "4NY3", + "type": "heliport", + "name": "Greenville Mountain Heliport", + "latitude_deg": "41.376111", + "longitude_deg": "-79.613056", + "elevation_ft": "1044", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Port Jervis", + "scheduled_service": "no", + "gps_code": "4NY3", + "local_code": "4NY3" + }, + { + "id": "11629", + "ident": "4NY4", + "type": "small_airport", + "name": "Cross' Farm Airport", + "latitude_deg": "42.55950164794922", + "longitude_deg": "-73.77210235595703", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Delmar", + "scheduled_service": "no", + "gps_code": "4NY4", + "local_code": "4NY4" + }, + { + "id": "11630", + "ident": "4NY5", + "type": "heliport", + "name": "Bistrians Heliport", + "latitude_deg": "40.98759841918945", + "longitude_deg": "-72.17340087890625", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "East Hampton", + "scheduled_service": "no", + "gps_code": "4NY5", + "local_code": "4NY5" + }, + { + "id": "11631", + "ident": "4NY6", + "type": "heliport", + "name": "Station 237 Heliport", + "latitude_deg": "42.934799", + "longitude_deg": "-77.183601", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Clifton Springs", + "scheduled_service": "no", + "keywords": "4NY6" + }, + { + "id": "11632", + "ident": "4NY8", + "type": "small_airport", + "name": "Harris Hill Gliderport", + "latitude_deg": "42.12089920043945", + "longitude_deg": "-76.9011001586914", + "elevation_ft": "1709", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Elmira", + "scheduled_service": "no", + "gps_code": "4NY8", + "local_code": "4NY8" + }, + { + "id": "11633", + "ident": "4NY9", + "type": "heliport", + "name": "Belmont Park Heliport", + "latitude_deg": "40.714500427246094", + "longitude_deg": "-73.71040344238281", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Elmont", + "scheduled_service": "no", + "gps_code": "4NY9", + "local_code": "4NY9" + }, + { + "id": "11634", + "ident": "4O1", + "type": "small_airport", + "name": "Snyder Airport", + "latitude_deg": "34.627601623535156", + "longitude_deg": "-99.01399993896484", + "elevation_ft": "1325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Snyder", + "scheduled_service": "no", + "gps_code": "4O1", + "local_code": "4O1" + }, + { + "id": "11635", + "ident": "4O6", + "type": "seaplane_base", + "name": "Cherokee Seaplane Base", + "latitude_deg": "36.58340072631836", + "longitude_deg": "-94.91690063476562", + "elevation_ft": "739", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Afton", + "scheduled_service": "no", + "gps_code": "4O6", + "local_code": "4O6" + }, + { + "id": "11636", + "ident": "4O7", + "type": "small_airport", + "name": "Decker Field", + "latitude_deg": "36.372100830078125", + "longitude_deg": "-98.17839813232422", + "elevation_ft": "1330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Meno", + "scheduled_service": "no", + "gps_code": "4O7", + "local_code": "4O7" + }, + { + "id": "327232", + "ident": "4OA1", + "type": "heliport", + "name": "Fairfield Medical Center Heliport", + "latitude_deg": "39.718141", + "longitude_deg": "-82.577888", + "elevation_ft": "893", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "4OA1", + "local_code": "4OA1" + }, + { + "id": "11637", + "ident": "4OA8", + "type": "small_airport", + "name": "Bowman Airport", + "latitude_deg": "40.108319", + "longitude_deg": "-84.299312", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Piqua", + "scheduled_service": "no", + "gps_code": "4OA8", + "local_code": "4OA8" + }, + { + "id": "11638", + "ident": "4OH0", + "type": "heliport", + "name": "Black Heliport", + "latitude_deg": "39.98889923095703", + "longitude_deg": "-84.1874008178711", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Tipp City", + "scheduled_service": "no", + "gps_code": "4OH0", + "local_code": "4OH0" + }, + { + "id": "11639", + "ident": "4OH1", + "type": "small_airport", + "name": "Sky Haven Airport", + "latitude_deg": "41.71699905395508", + "longitude_deg": "-81.10679626464844", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "4OH1", + "local_code": "4OH1" + }, + { + "id": "11640", + "ident": "4OH2", + "type": "heliport", + "name": "Genesis Health Care Heliport", + "latitude_deg": "39.973815", + "longitude_deg": "-82.015364", + "elevation_ft": "783", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Zanesville", + "scheduled_service": "no", + "gps_code": "4OH2", + "local_code": "4OH2", + "keywords": "Bethesda Hospital Helistop" + }, + { + "id": "11641", + "ident": "4OH3", + "type": "small_airport", + "name": "Bieber Field", + "latitude_deg": "40.98310089111328", + "longitude_deg": "-80.70110321044922", + "elevation_ft": "1035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "North Lima", + "scheduled_service": "no", + "gps_code": "4OH3", + "local_code": "4OH3" + }, + { + "id": "11642", + "ident": "4OH4", + "type": "small_airport", + "name": "Millertime Airport", + "latitude_deg": "39.793402", + "longitude_deg": "-83.116622", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Orient", + "scheduled_service": "no", + "gps_code": "4OH4", + "local_code": "4OH4" + }, + { + "id": "11643", + "ident": "4OH5", + "type": "closed", + "name": "St Thomas Hospital Heliport", + "latitude_deg": "41.096699", + "longitude_deg": "-81.515404", + "elevation_ft": "983", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Akron", + "scheduled_service": "no", + "keywords": "4OH5" + }, + { + "id": "11644", + "ident": "4OH6", + "type": "balloonport", + "name": "Wingfoot Lake Airship Operations Balloonport", + "latitude_deg": "41.009498596191406", + "longitude_deg": "-81.35790252685547", + "elevation_ft": "1164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Akron Suffield", + "scheduled_service": "no", + "gps_code": "4OH6", + "local_code": "4OH6" + }, + { + "id": "11645", + "ident": "4OH7", + "type": "heliport", + "name": "Holzer Heliport", + "latitude_deg": "38.84619903564453", + "longitude_deg": "-82.2385025024414", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Gallipolis", + "scheduled_service": "no", + "gps_code": "4OH7", + "local_code": "4OH7" + }, + { + "id": "11646", + "ident": "4OH8", + "type": "small_airport", + "name": "Huffman Farm Airport", + "latitude_deg": "41.5", + "longitude_deg": "-84.2499008178711", + "elevation_ft": "741", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Archbold", + "scheduled_service": "no", + "gps_code": "4OH8", + "local_code": "4OH8" + }, + { + "id": "11647", + "ident": "4OH9", + "type": "heliport", + "name": "Bellevue Hospital Heliport", + "latitude_deg": "41.29169845581055", + "longitude_deg": "-82.84159851074219", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bellevue", + "scheduled_service": "no", + "gps_code": "4OH9", + "local_code": "4OH9" + }, + { + "id": "11648", + "ident": "4OI0", + "type": "heliport", + "name": "ProMedica Flower Hospital Heliport", + "latitude_deg": "41.708437", + "longitude_deg": "-83.69229", + "elevation_ft": "661", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Sylvania", + "scheduled_service": "no", + "gps_code": "4OI0", + "local_code": "4OI0" + }, + { + "id": "11649", + "ident": "4OI1", + "type": "heliport", + "name": "Petro Heliport", + "latitude_deg": "39.97169876098633", + "longitude_deg": "-81.89510345458984", + "elevation_ft": "808", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Zanesville", + "scheduled_service": "no", + "gps_code": "4OI1", + "local_code": "4OI1" + }, + { + "id": "11650", + "ident": "4OI3", + "type": "heliport", + "name": "Horizons Heliport", + "latitude_deg": "39.12260055541992", + "longitude_deg": "-84.40989685058594", + "elevation_ft": "508", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cincinnati", + "scheduled_service": "no", + "gps_code": "4OI3", + "local_code": "4OI3" + }, + { + "id": "11651", + "ident": "4OI5", + "type": "closed", + "name": "Riverside Hospital Heliport", + "latitude_deg": "41.663101", + "longitude_deg": "-83.515198", + "elevation_ft": "605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Toledo", + "scheduled_service": "no", + "keywords": "4OI5" + }, + { + "id": "11652", + "ident": "4OI7", + "type": "small_airport", + "name": "R & M Aviation Airport", + "latitude_deg": "41.45370101928711", + "longitude_deg": "-81.97010040283203", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Avon", + "scheduled_service": "no", + "gps_code": "4OI7", + "local_code": "4OI7" + }, + { + "id": "11653", + "ident": "4OI8", + "type": "small_airport", + "name": "Brocker Field", + "latitude_deg": "41.057188", + "longitude_deg": "-80.755059", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Canfield", + "scheduled_service": "no", + "gps_code": "4OI8", + "local_code": "4OI8" + }, + { + "id": "11654", + "ident": "4OI9", + "type": "small_airport", + "name": "Baisden Airport", + "latitude_deg": "39.10219955444336", + "longitude_deg": "-82.61070251464844", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Coalton", + "scheduled_service": "no", + "gps_code": "4OI9", + "local_code": "4OI9" + }, + { + "id": "11655", + "ident": "4OK0", + "type": "closed", + "name": "Zevely Climbing ZZ Ranch Airport", + "latitude_deg": "35.225101", + "longitude_deg": "-96.722802", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Seminole", + "scheduled_service": "no", + "keywords": "4OK0" + }, + { + "id": "11656", + "ident": "4OK1", + "type": "closed", + "name": "Hatton Ranch Airport", + "latitude_deg": "34.716801", + "longitude_deg": "-95.175201", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Talihina", + "scheduled_service": "no", + "keywords": "4OK1" + }, + { + "id": "11657", + "ident": "4OK2", + "type": "closed", + "name": "Candy Lake Estate Airport", + "latitude_deg": "36.493099", + "longitude_deg": "-96.054704", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Avant", + "scheduled_service": "no", + "keywords": "4OK2" + }, + { + "id": "11658", + "ident": "4OK3", + "type": "heliport", + "name": "St Francis Hospital Heliport", + "latitude_deg": "36.074892", + "longitude_deg": "-95.918696", + "elevation_ft": "752", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tulsa", + "scheduled_service": "no", + "gps_code": "4OK3", + "local_code": "4OK3" + }, + { + "id": "11659", + "ident": "4OK4", + "type": "small_airport", + "name": "Low Pass Airport", + "latitude_deg": "35.287601470947266", + "longitude_deg": "-97.66419982910156", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tuttle", + "scheduled_service": "no", + "gps_code": "4OK4", + "local_code": "4OK4" + }, + { + "id": "11660", + "ident": "4OK5", + "type": "small_airport", + "name": "Newman Farm Airport", + "latitude_deg": "34.55009841918945", + "longitude_deg": "-97.60030364990234", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Velma", + "scheduled_service": "no", + "gps_code": "4OK5", + "local_code": "4OK5" + }, + { + "id": "11661", + "ident": "4OK6", + "type": "closed", + "name": "Pitts Field", + "latitude_deg": "34.989498", + "longitude_deg": "-97.025297", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Wanette", + "scheduled_service": "no", + "keywords": "4OK6" + }, + { + "id": "11662", + "ident": "4OK7", + "type": "closed", + "name": "Flying A Ranch Airport", + "latitude_deg": "35.091202", + "longitude_deg": "-97.5009", + "elevation_ft": "1165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Washington", + "scheduled_service": "no", + "keywords": "4OK7" + }, + { + "id": "11663", + "ident": "4OK8", + "type": "closed", + "name": "Austin Airport", + "latitude_deg": "34.903198", + "longitude_deg": "-95.358902", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Wilburton", + "scheduled_service": "no", + "keywords": "4OK8" + }, + { + "id": "11664", + "ident": "4OK9", + "type": "heliport", + "name": "Hsi Heliport", + "latitude_deg": "35.92399978637695", + "longitude_deg": "-96.7842025756836", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Cushing", + "scheduled_service": "no", + "gps_code": "4OK9", + "local_code": "4OK9" + }, + { + "id": "11665", + "ident": "4OL3", + "type": "closed", + "name": "Jerry-Wright Airfield", + "latitude_deg": "34.516701", + "longitude_deg": "-98.333702", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lawton", + "scheduled_service": "no", + "keywords": "4OL3" + }, + { + "id": "11666", + "ident": "4OR0", + "type": "small_airport", + "name": "Springbrook Airport", + "latitude_deg": "42.55509948730469", + "longitude_deg": "-123.2040023803711", + "elevation_ft": "1560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Rogue River", + "scheduled_service": "no", + "gps_code": "4OR0", + "local_code": "4OR0" + }, + { + "id": "45946", + "ident": "4OR1", + "type": "heliport", + "name": "McNary ARNG Field Heliport", + "latitude_deg": "44.912", + "longitude_deg": "-123.001502752", + "elevation_ft": "209", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Salem", + "scheduled_service": "yes", + "gps_code": "4OR1", + "local_code": "4OR1", + "wikipedia_link": "https://en.wikipedia.org/wiki/McNary_ARNG_Field_Heliport" + }, + { + "id": "11668", + "ident": "4OR2", + "type": "heliport", + "name": "South Hill Heliport", + "latitude_deg": "44.847599029541016", + "longitude_deg": "-123.02300262451172", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "4OR2", + "local_code": "4OR2" + }, + { + "id": "11669", + "ident": "4OR3", + "type": "small_airport", + "name": "Lambert Field", + "latitude_deg": "44.73040008544922", + "longitude_deg": "-123.07599639892578", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "4OR3", + "local_code": "4OR3" + }, + { + "id": "11670", + "ident": "4OR4", + "type": "small_airport", + "name": "Schrock Airport", + "latitude_deg": "44.443599700927734", + "longitude_deg": "-123.23799896240234", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Corvallis", + "scheduled_service": "no", + "gps_code": "4OR4", + "local_code": "4OR4" + }, + { + "id": "11671", + "ident": "4OR5", + "type": "small_airport", + "name": "Fly 'N' W Airport", + "latitude_deg": "44.967899322509766", + "longitude_deg": "-122.94100189208984", + "elevation_ft": "206", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "4OR5", + "local_code": "4OR5" + }, + { + "id": "11672", + "ident": "4OR6", + "type": "small_airport", + "name": "Auberge Des Fleurs Airport", + "latitude_deg": "45.449798583984375", + "longitude_deg": "-122.25399780273438", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sandy", + "scheduled_service": "no", + "gps_code": "4OR6", + "local_code": "4OR6" + }, + { + "id": "11673", + "ident": "4OR7", + "type": "small_airport", + "name": "Lusardi Field", + "latitude_deg": "44.98540115", + "longitude_deg": "-122.9459991", + "elevation_ft": "205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "4OR7", + "local_code": "4OR7" + }, + { + "id": "11674", + "ident": "4OR8", + "type": "small_airport", + "name": "Wagoner Airport", + "latitude_deg": "44.8484992980957", + "longitude_deg": "-123.04100036621094", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "4OR8", + "local_code": "4OR8" + }, + { + "id": "11675", + "ident": "4OR9", + "type": "closed", + "name": "Peace Harbor Hospital Heliport", + "latitude_deg": "43.973998", + "longitude_deg": "-124.116997", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Florence", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Peace_Harbor_Hospital_Heliport", + "keywords": "4OR9" + }, + { + "id": "11676", + "ident": "4P2", + "type": "closed", + "name": "Old Portage Heliport", + "latitude_deg": "41.137798", + "longitude_deg": "-81.549103", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Akron", + "scheduled_service": "no", + "keywords": "4P2" + }, + { + "id": "11677", + "ident": "4P5", + "type": "seaplane_base", + "name": "Franks Seaplane Base", + "latitude_deg": "45.88330078125", + "longitude_deg": "-90.00019836425781", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Lac Du Flambeau", + "scheduled_service": "no", + "gps_code": "4P5", + "local_code": "4P5" + }, + { + "id": "20622", + "ident": "4PA0", + "type": "closed", + "name": "Millard Airport", + "latitude_deg": "40.3172", + "longitude_deg": "-76.5364", + "elevation_ft": "485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Annville", + "scheduled_service": "no", + "keywords": "Formerly N76, 4PA0" + }, + { + "id": "11678", + "ident": "4PA1", + "type": "small_airport", + "name": "Sauers-Haven Airport", + "latitude_deg": "40.8838996887207", + "longitude_deg": "-76.9800033569336", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "New Berlin", + "scheduled_service": "no", + "gps_code": "4PA1", + "local_code": "4PA1" + }, + { + "id": "11679", + "ident": "4PA2", + "type": "heliport", + "name": "Warner-Lambert Heliport", + "latitude_deg": "40.15230178833008", + "longitude_deg": "-76.30580139160156", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lititz", + "scheduled_service": "no", + "gps_code": "4PA2", + "local_code": "4PA2" + }, + { + "id": "11680", + "ident": "4PA3", + "type": "small_airport", + "name": "Frymoyer Airport", + "latitude_deg": "40.63059997558594", + "longitude_deg": "-77.01029968261719", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Liverpool", + "scheduled_service": "no", + "gps_code": "4PA3", + "local_code": "4PA3" + }, + { + "id": "11681", + "ident": "4PA4", + "type": "heliport", + "name": "UPMC Susquehanna Lock Haven Heliport", + "latitude_deg": "41.132176", + "longitude_deg": "-77.470891", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lock Haven", + "scheduled_service": "no", + "gps_code": "4PA4", + "local_code": "4PA4" + }, + { + "id": "11682", + "ident": "4PA5", + "type": "small_airport", + "name": "Ponderosa Airport", + "latitude_deg": "41.30839920043945", + "longitude_deg": "-77.52469635009766", + "elevation_ft": "1820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lock Haven", + "scheduled_service": "no", + "gps_code": "4PA5", + "local_code": "4PA5" + }, + { + "id": "11683", + "ident": "4PA6", + "type": "small_airport", + "name": "Hiawatha Airport", + "latitude_deg": "41.91510009765625", + "longitude_deg": "-75.3644027709961", + "elevation_ft": "1670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Starlight", + "scheduled_service": "no", + "gps_code": "4PA6", + "local_code": "4PA6" + }, + { + "id": "11684", + "ident": "4PA7", + "type": "closed", + "name": "Sheepshead Airport", + "latitude_deg": "40.564804", + "longitude_deg": "-76.746597", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lykens", + "scheduled_service": "no", + "keywords": "4PA7" + }, + { + "id": "11685", + "ident": "4PA8", + "type": "small_airport", + "name": "Russo Airstrip", + "latitude_deg": "40.432899475097656", + "longitude_deg": "-75.14959716796875", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pipersville", + "scheduled_service": "no", + "gps_code": "4PA8", + "local_code": "4PA8" + }, + { + "id": "11686", + "ident": "4PA9", + "type": "heliport", + "name": "Macungie Mack Heliport", + "latitude_deg": "40.500099182128906", + "longitude_deg": "-75.56629943847656", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Macungie", + "scheduled_service": "no", + "gps_code": "4PA9", + "local_code": "4PA9" + }, + { + "id": "11687", + "ident": "4PN0", + "type": "small_airport", + "name": "Flying M Ranch Airport", + "latitude_deg": "41.216400146484375", + "longitude_deg": "-80.09369659423828", + "elevation_ft": "1348", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Grove City", + "scheduled_service": "no", + "gps_code": "4PN0", + "local_code": "4PN0" + }, + { + "id": "11688", + "ident": "4PN2", + "type": "heliport", + "name": "Mcs-Pad Heliport", + "latitude_deg": "38.29439926147461", + "longitude_deg": "-81.56559753417969", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Charleston", + "scheduled_service": "no", + "gps_code": "4PN2", + "local_code": "4PN2" + }, + { + "id": "11689", + "ident": "4PN3", + "type": "heliport", + "name": "Gallatin Fuel Heliport", + "latitude_deg": "39.86650085449219", + "longitude_deg": "-79.95059967041016", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Masontown", + "scheduled_service": "no", + "gps_code": "4PN3", + "local_code": "4PN3" + }, + { + "id": "11690", + "ident": "4PN4", + "type": "closed", + "name": "Muddy Run Heliport", + "latitude_deg": "39.845402", + "longitude_deg": "-76.285202", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Holtwood", + "scheduled_service": "no", + "keywords": "4PN4" + }, + { + "id": "11691", + "ident": "4PN5", + "type": "closed", + "name": "Brigham Heliport", + "latitude_deg": "40.527199", + "longitude_deg": "-75.077497", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Erwinna", + "scheduled_service": "no", + "keywords": "4PN5" + }, + { + "id": "11692", + "ident": "4PN6", + "type": "heliport", + "name": "Williams Grove Heliport", + "latitude_deg": "40.15010070800781", + "longitude_deg": "-77.03299713134766", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mechanicsburg", + "scheduled_service": "no", + "gps_code": "4PN6", + "local_code": "4PN6" + }, + { + "id": "11693", + "ident": "4PN7", + "type": "small_airport", + "name": "Merritt Field", + "latitude_deg": "41.418098", + "longitude_deg": "-76.534401", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Sonestown", + "scheduled_service": "no", + "gps_code": "4PN7", + "local_code": "4PN7" + }, + { + "id": "11694", + "ident": "4PN8", + "type": "small_airport", + "name": "C.J.K. Airport", + "latitude_deg": "41.53089904785156", + "longitude_deg": "-75.87830352783203", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tunkhannock", + "scheduled_service": "no", + "gps_code": "4PN8", + "local_code": "4PN8" + }, + { + "id": "11695", + "ident": "4PN9", + "type": "heliport", + "name": "Glenn's Helo Heliport", + "latitude_deg": "40.28779983520508", + "longitude_deg": "-75.76589965820312", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Birdsboro", + "scheduled_service": "no", + "gps_code": "4PN9", + "local_code": "4PN9" + }, + { + "id": "11696", + "ident": "4PS2", + "type": "heliport", + "name": "Altoona Regional Health System-Bon Secours Cam Heliport", + "latitude_deg": "40.501399993896484", + "longitude_deg": "-78.40809631347656", + "elevation_ft": "1172", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Altoona", + "scheduled_service": "no", + "gps_code": "4PS2", + "local_code": "4PS2" + }, + { + "id": "45760", + "ident": "4PS3", + "type": "small_airport", + "name": "Paraport Ultralight Flightpark", + "latitude_deg": "41.787953", + "longitude_deg": "-79.517782", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Warren", + "scheduled_service": "no", + "gps_code": "4PS3", + "local_code": "4PS3" + }, + { + "id": "11697", + "ident": "4PS4", + "type": "small_airport", + "name": "Mountain Top Airport", + "latitude_deg": "41.815224", + "longitude_deg": "-75.534243", + "elevation_ft": "2114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Thompson", + "scheduled_service": "no", + "gps_code": "4PS4", + "local_code": "4PS4" + }, + { + "id": "11698", + "ident": "4PS5", + "type": "small_airport", + "name": "Muddy Creek Airport", + "latitude_deg": "39.920502", + "longitude_deg": "-79.948198", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Carmichaels", + "scheduled_service": "no", + "gps_code": "4PS5", + "local_code": "4PS5" + }, + { + "id": "11699", + "ident": "4PS6", + "type": "small_airport", + "name": "Krout Airport", + "latitude_deg": "40.63669967651367", + "longitude_deg": "-77.48359680175781", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lewistown", + "scheduled_service": "no", + "gps_code": "4PS6", + "local_code": "4PS6" + }, + { + "id": "11700", + "ident": "4PS7", + "type": "closed", + "name": "Cohen Airport", + "latitude_deg": "39.734656", + "longitude_deg": "-75.942514", + "elevation_ft": "418", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Oxford", + "scheduled_service": "no", + "keywords": "4PS7" + }, + { + "id": "45741", + "ident": "4PS8", + "type": "heliport", + "name": "Coatesville Heliport", + "latitude_deg": "39.893333", + "longitude_deg": "-75.818333", + "elevation_ft": "564", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Coatesville", + "scheduled_service": "no", + "gps_code": "4PS8", + "local_code": "4PS8" + }, + { + "id": "11701", + "ident": "4PS9", + "type": "heliport", + "name": "Ferrante Heliport", + "latitude_deg": "40.59870147705078", + "longitude_deg": "-79.5811996459961", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Vandergrift", + "scheduled_service": "no", + "gps_code": "4PS9", + "local_code": "4PS9" + }, + { + "id": "11702", + "ident": "4R6", + "type": "small_airport", + "name": "Milnor Municipal Airport", + "latitude_deg": "46.25830078125", + "longitude_deg": "-97.43789672851562", + "elevation_ft": "1091", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Milnor", + "scheduled_service": "no", + "gps_code": "4R6", + "local_code": "4R6" + }, + { + "id": "11703", + "ident": "4S4", + "type": "small_airport", + "name": "Skyport Airport", + "latitude_deg": "45.58259963989258", + "longitude_deg": "-123.0530014038086", + "elevation_ft": "174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Cornelius", + "scheduled_service": "no", + "gps_code": "4S4", + "local_code": "4S4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Skyport_Airport" + }, + { + "id": "11704", + "ident": "4S5", + "type": "small_airport", + "name": "St Thomas Municipal Airport", + "latitude_deg": "48.626399993896484", + "longitude_deg": "-97.43920135498047", + "elevation_ft": "837", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "St Thomas", + "scheduled_service": "no", + "gps_code": "4S5", + "local_code": "4S5" + }, + { + "id": "11705", + "ident": "4S6", + "type": "small_airport", + "name": "Tieton State Airport", + "latitude_deg": "46.63759994506836", + "longitude_deg": "-121.1240005493164", + "elevation_ft": "2964", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Rimrock", + "scheduled_service": "no", + "gps_code": "4S6", + "local_code": "4S6" + }, + { + "id": "11706", + "ident": "4S7", + "type": "small_airport", + "name": "Malin Airport", + "latitude_deg": "42.000999450683594", + "longitude_deg": "-121.39600372314453", + "elevation_ft": "4052", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Malin", + "scheduled_service": "no", + "gps_code": "4S7", + "local_code": "4S7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Malin_Airport" + }, + { + "id": "11707", + "ident": "4SC4", + "type": "small_airport", + "name": "Davis Field", + "latitude_deg": "34.76530075073242", + "longitude_deg": "-82.69110107421875", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Liberty", + "scheduled_service": "no", + "gps_code": "4SC4", + "local_code": "4SC4" + }, + { + "id": "11708", + "ident": "4SC7", + "type": "small_airport", + "name": "Wexford Landing Airport", + "latitude_deg": "33.57830047607422", + "longitude_deg": "-81.51170349121094", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Aiken", + "scheduled_service": "no", + "gps_code": "4SC7", + "local_code": "4SC7" + }, + { + "id": "11709", + "ident": "4SD4", + "type": "small_airport", + "name": "Dan's Airport", + "latitude_deg": "44.04169845581055", + "longitude_deg": "-103.0459976196289", + "elevation_ft": "3166", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Rapid City", + "scheduled_service": "no", + "gps_code": "4SD4", + "local_code": "4SD4" + }, + { + "id": "11710", + "ident": "4T7", + "type": "heliport", + "name": "Little C Ranch Heliport", + "latitude_deg": "32.01380157470703", + "longitude_deg": "-97.98139953613281", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hico", + "scheduled_service": "no", + "gps_code": "4T7", + "local_code": "4T7" + }, + { + "id": "11711", + "ident": "4TA0", + "type": "small_airport", + "name": "Massimiliano Memorial Field", + "latitude_deg": "29.355499267578125", + "longitude_deg": "-95.66380310058594", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Damon", + "scheduled_service": "no", + "gps_code": "4TA0", + "local_code": "4TA0" + }, + { + "id": "11712", + "ident": "4TA1", + "type": "small_airport", + "name": "Warschun Ranch Airport", + "latitude_deg": "33.302395", + "longitude_deg": "-97.113181", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Denton", + "scheduled_service": "no", + "gps_code": "4TA1", + "local_code": "4TA1" + }, + { + "id": "346254", + "ident": "4TA2", + "type": "small_airport", + "name": "V-Bar Airport", + "latitude_deg": "31.74225", + "longitude_deg": "-97.319861", + "elevation_ft": "565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "China Spring", + "scheduled_service": "no", + "gps_code": "4TA2", + "local_code": "4TA2" + }, + { + "id": "11713", + "ident": "4TA3", + "type": "small_airport", + "name": "Costello Island Inc Airport", + "latitude_deg": "32.896562", + "longitude_deg": "-98.461018", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Graford", + "scheduled_service": "no", + "gps_code": "4TA3", + "local_code": "4TA3" + }, + { + "id": "11714", + "ident": "4TA4", + "type": "small_airport", + "name": "Pea Patch Airport", + "latitude_deg": "29.93910026550293", + "longitude_deg": "-96.05970001220703", + "elevation_ft": "174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hempstead", + "scheduled_service": "no", + "gps_code": "4TA4", + "local_code": "4TA4" + }, + { + "id": "11715", + "ident": "4TA5", + "type": "small_airport", + "name": "Lucky G Airport", + "latitude_deg": "33.85283", + "longitude_deg": "-98.64326", + "elevation_ft": "1068", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Holliday", + "scheduled_service": "no", + "gps_code": "4TA5", + "local_code": "4TA5" + }, + { + "id": "11716", + "ident": "4TA6", + "type": "small_airport", + "name": "Comanche Caves Ranch Airport", + "latitude_deg": "30.02239990234375", + "longitude_deg": "-99.38369750976562", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hunt", + "scheduled_service": "no", + "gps_code": "4TA6", + "local_code": "4TA6" + }, + { + "id": "11717", + "ident": "4TA7", + "type": "heliport", + "name": "Oak Ridge Heliport", + "latitude_deg": "27.861099243164062", + "longitude_deg": "-97.19889831542969", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ingleside", + "scheduled_service": "no", + "gps_code": "4TA7", + "local_code": "4TA7" + }, + { + "id": "11718", + "ident": "4TA8", + "type": "small_airport", + "name": "Perry Ranch Airport", + "latitude_deg": "30.630137", + "longitude_deg": "-101.043076", + "elevation_ft": "2250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no", + "gps_code": "4TA8", + "local_code": "4TA8" + }, + { + "id": "11719", + "ident": "4TA9", + "type": "heliport", + "name": "Swinging Door Heliport", + "latitude_deg": "29.627500534057617", + "longitude_deg": "-95.76940155029297", + "elevation_ft": "88", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "4TA9", + "local_code": "4TA9" + }, + { + "id": "11720", + "ident": "4TE0", + "type": "closed", + "name": "Lone Star Steel Company Airport", + "latitude_deg": "32.930962", + "longitude_deg": "-94.744656", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lone Star", + "scheduled_service": "no", + "keywords": "4TE0" + }, + { + "id": "11721", + "ident": "4TE1", + "type": "closed", + "name": "Figure 1 Ranch Airport", + "latitude_deg": "36.266998", + "longitude_deg": "-100.535004", + "elevation_ft": "2631", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Booker", + "scheduled_service": "no", + "keywords": "4TE1" + }, + { + "id": "11722", + "ident": "4TE2", + "type": "small_airport", + "name": "Lewis Private Airport", + "latitude_deg": "29.544099807739258", + "longitude_deg": "-100.6729965209961", + "elevation_ft": "1379", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no", + "gps_code": "4TE2", + "local_code": "4TE2" + }, + { + "id": "11723", + "ident": "4TE3", + "type": "closed", + "name": "Finley Ranch Airport", + "latitude_deg": "35.116698", + "longitude_deg": "-101.442002", + "elevation_ft": "3400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Claude", + "scheduled_service": "no", + "keywords": "4TE3" + }, + { + "id": "11724", + "ident": "4TE4", + "type": "small_airport", + "name": "Taurus Mesa Airport", + "latitude_deg": "29.62316", + "longitude_deg": "-103.684646", + "elevation_ft": "3576", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alpine", + "scheduled_service": "no", + "gps_code": "4TE4", + "local_code": "4TE4" + }, + { + "id": "11725", + "ident": "4TE5", + "type": "heliport", + "name": "Dell City Heliport", + "latitude_deg": "31.933399200439453", + "longitude_deg": "-105.20099639892578", + "elevation_ft": "3700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dell City", + "scheduled_service": "no", + "gps_code": "4TE5", + "local_code": "4TE5" + }, + { + "id": "11726", + "ident": "4TE6", + "type": "small_airport", + "name": "Jamison Airstrip", + "latitude_deg": "30.062700271606445", + "longitude_deg": "-94.94740295410156", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dayton", + "scheduled_service": "no", + "gps_code": "4TE6", + "local_code": "4TE6" + }, + { + "id": "11727", + "ident": "4TE7", + "type": "small_airport", + "name": "Devil's River Ranch Airport", + "latitude_deg": "29.740800857543945", + "longitude_deg": "-100.96499633789062", + "elevation_ft": "1680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no", + "gps_code": "4TE7", + "local_code": "4TE7" + }, + { + "id": "11728", + "ident": "4TE8", + "type": "closed", + "name": "Ben Bruce Memorial Airpark", + "latitude_deg": "30.324581", + "longitude_deg": "-94.075413", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Evadale", + "scheduled_service": "no", + "gps_code": "4TE8", + "iata_code": "EVA", + "local_code": "4TE8" + }, + { + "id": "11729", + "ident": "4TE9", + "type": "small_airport", + "name": "Squirrel Creek Ranch Airport", + "latitude_deg": "29.26409912109375", + "longitude_deg": "-99.35060119628906", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "D'Hanis", + "scheduled_service": "no", + "gps_code": "4TE9", + "local_code": "4TE9" + }, + { + "id": "11730", + "ident": "4TN0", + "type": "small_airport", + "name": "Melton Field", + "latitude_deg": "36.15190124511719", + "longitude_deg": "-83.73280334472656", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Blaine", + "scheduled_service": "no", + "gps_code": "4TN0", + "local_code": "4TN0" + }, + { + "id": "11731", + "ident": "4TN1", + "type": "closed", + "name": "TGP Station 555 Heliport", + "latitude_deg": "35.025101", + "longitude_deg": "-87.757797", + "elevation_ft": "874", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Collinwood", + "scheduled_service": "no", + "keywords": "4TN1" + }, + { + "id": "11732", + "ident": "4TN2", + "type": "small_airport", + "name": "Buck Creek Ranch Airport", + "latitude_deg": "35.883399963378906", + "longitude_deg": "-84.96880340576172", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Crossville", + "scheduled_service": "no", + "gps_code": "4TN2", + "local_code": "4TN2" + }, + { + "id": "11733", + "ident": "4TN3", + "type": "small_airport", + "name": "Hawks Nest Airport", + "latitude_deg": "35.11830139160156", + "longitude_deg": "-89.3677978515625", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "4TN3", + "local_code": "4TN3" + }, + { + "id": "11734", + "ident": "4TN4", + "type": "small_airport", + "name": "Cotton Field", + "latitude_deg": "35.189998626708984", + "longitude_deg": "-89.63860321044922", + "elevation_ft": "345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Eads", + "scheduled_service": "no", + "gps_code": "4TN4", + "local_code": "4TN4" + }, + { + "id": "11735", + "ident": "4TN5", + "type": "closed", + "name": "TGP Station 860 Heliport", + "latitude_deg": "35.847801", + "longitude_deg": "-87.449501", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Fairfield", + "scheduled_service": "no", + "keywords": "4TN5" + }, + { + "id": "11736", + "ident": "4TN6", + "type": "closed", + "name": "Lincoln Regional Hospital Heliport", + "latitude_deg": "35.149799", + "longitude_deg": "-86.580803", + "elevation_ft": "742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Fayetteville", + "scheduled_service": "no", + "keywords": "4TN6" + }, + { + "id": "11737", + "ident": "4TN7", + "type": "heliport", + "name": "Bmh-H Heliport", + "latitude_deg": "36.000099182128906", + "longitude_deg": "-88.4175033569336", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Huntingdon", + "scheduled_service": "no", + "gps_code": "4TN7", + "local_code": "4TN7" + }, + { + "id": "11738", + "ident": "4TN8", + "type": "heliport", + "name": "Rgnl Hospital of Jackson Heliport", + "latitude_deg": "35.68230056762695", + "longitude_deg": "-88.8551025390625", + "elevation_ft": "444", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "4TN8", + "local_code": "4TN8" + }, + { + "id": "11739", + "ident": "4TN9", + "type": "small_airport", + "name": "Southfork Airport", + "latitude_deg": "35.610393", + "longitude_deg": "-88.694782", + "elevation_ft": "387", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "4TN9", + "local_code": "4TN9" + }, + { + "id": "11740", + "ident": "4TS0", + "type": "heliport", + "name": "First City Financial Center Heliport", + "latitude_deg": "29.753799438476562", + "longitude_deg": "-95.3655014038086", + "elevation_ft": "482", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "4TS0", + "local_code": "4TS0" + }, + { + "id": "11741", + "ident": "4TS1", + "type": "closed", + "name": "Pin Oak Stables Heliport", + "latitude_deg": "29.723301", + "longitude_deg": "-95.458", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "keywords": "4TS1" + }, + { + "id": "11742", + "ident": "4TS2", + "type": "heliport", + "name": "Wilshire Place Heliport", + "latitude_deg": "29.857200622558594", + "longitude_deg": "-95.50630187988281", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "4TS2", + "local_code": "4TS2" + }, + { + "id": "45836", + "ident": "4TS3", + "type": "heliport", + "name": "Palestine Regional Medical Center Heliport", + "latitude_deg": "31.732789", + "longitude_deg": "-95.626", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Palestine", + "scheduled_service": "no", + "gps_code": "4TS3", + "local_code": "4TS3" + }, + { + "id": "11743", + "ident": "4TS4", + "type": "heliport", + "name": "Palm Petroleum Corporation Heliport", + "latitude_deg": "29.975200653076172", + "longitude_deg": "-95.3687973022461", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "4TS4", + "local_code": "4TS4" + }, + { + "id": "11744", + "ident": "4TS5", + "type": "small_airport", + "name": "Goebel Field", + "latitude_deg": "30.221900939941406", + "longitude_deg": "-99.49839782714844", + "elevation_ft": "2189", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mountain Home", + "scheduled_service": "no", + "gps_code": "4TS5", + "local_code": "4TS5" + }, + { + "id": "11745", + "ident": "4TS6", + "type": "heliport", + "name": "Texas Department of Public Safety Heliport", + "latitude_deg": "29.90497", + "longitude_deg": "-95.59836", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jersey Village", + "scheduled_service": "no", + "gps_code": "4TS6", + "local_code": "4TS6", + "keywords": "State Police Heliport" + }, + { + "id": "11746", + "ident": "4TS7", + "type": "small_airport", + "name": "Allison Ranch Airport", + "latitude_deg": "30.450199127197266", + "longitude_deg": "-102.927001953125", + "elevation_ft": "4572", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no", + "gps_code": "4TS7", + "local_code": "4TS7" + }, + { + "id": "11747", + "ident": "4TS8", + "type": "small_airport", + "name": "Glasscock Field", + "latitude_deg": "29.375", + "longitude_deg": "-99.34200286865234", + "elevation_ft": "1089", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "D'Hanis", + "scheduled_service": "no", + "gps_code": "4TS8", + "local_code": "4TS8" + }, + { + "id": "11748", + "ident": "4TS9", + "type": "heliport", + "name": "Ossiport Heliport", + "latitude_deg": "30.32323", + "longitude_deg": "-97.867203", + "elevation_ft": "818", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "4TS9", + "local_code": "4TS9" + }, + { + "id": "11749", + "ident": "4TX0", + "type": "small_airport", + "name": "Slack Airport", + "latitude_deg": "29.86359977722168", + "longitude_deg": "-94.83439636230469", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mont Belvieu", + "scheduled_service": "no", + "gps_code": "4TX0", + "local_code": "4TX0" + }, + { + "id": "11750", + "ident": "4TX1", + "type": "heliport", + "name": "Abilene Regional Medical Center Heliport", + "latitude_deg": "32.374255", + "longitude_deg": "-99.743054", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Abilene", + "scheduled_service": "no", + "gps_code": "4TX1", + "local_code": "4TX1" + }, + { + "id": "11751", + "ident": "4TX2", + "type": "small_airport", + "name": "Stage Coach Hills Airport", + "latitude_deg": "32.966691", + "longitude_deg": "-97.232695", + "elevation_ft": "684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Keller", + "scheduled_service": "no", + "gps_code": "4TX2", + "local_code": "4TX2" + }, + { + "id": "11752", + "ident": "4TX3", + "type": "small_airport", + "name": "Forest Hill Airport", + "latitude_deg": "33.66120147705078", + "longitude_deg": "-95.83360290527344", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Petty", + "scheduled_service": "no", + "gps_code": "4TX3", + "local_code": "4TX3" + }, + { + "id": "11753", + "ident": "4TX4", + "type": "small_airport", + "name": "Birk Airport", + "latitude_deg": "32.627899169921875", + "longitude_deg": "-97.19200134277344", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kennedale", + "scheduled_service": "no", + "gps_code": "4TX4", + "local_code": "4TX4" + }, + { + "id": "11754", + "ident": "4TX5", + "type": "small_airport", + "name": "Hancock Airport", + "latitude_deg": "32.22990036010742", + "longitude_deg": "-96.25969696044922", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kerens", + "scheduled_service": "no", + "gps_code": "4TX5", + "local_code": "4TX5" + }, + { + "id": "11755", + "ident": "4TX6", + "type": "small_airport", + "name": "Kilgore Airport", + "latitude_deg": "32.41270065307617", + "longitude_deg": "-94.81829833984375", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kilgore", + "scheduled_service": "no", + "gps_code": "4TX6", + "local_code": "4TX6" + }, + { + "id": "11756", + "ident": "4TX7", + "type": "closed", + "name": "Oliver Airport", + "latitude_deg": "33.422474", + "longitude_deg": "-99.865794", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Knox City", + "scheduled_service": "no", + "keywords": "4TX7" + }, + { + "id": "11757", + "ident": "4TX8", + "type": "small_airport", + "name": "Addington Field", + "latitude_deg": "33.24869918823242", + "longitude_deg": "-97.2238998413086", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Krum", + "scheduled_service": "no", + "gps_code": "4TX8", + "local_code": "4TX8" + }, + { + "id": "11758", + "ident": "4TX9", + "type": "closed", + "name": "Medical Center Hospital Heliport", + "latitude_deg": "29.507999", + "longitude_deg": "-98.579201", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "keywords": "4TX9" + }, + { + "id": "11759", + "ident": "4U4", + "type": "small_airport", + "name": "Maddox Ranch Co Airport", + "latitude_deg": "48.513426", + "longitude_deg": "-109.065333", + "elevation_ft": "2589", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Chinook", + "scheduled_service": "no", + "gps_code": "3MT4", + "local_code": "3MT4", + "keywords": "4U4, Hebbelman Airport" + }, + { + "id": "11760", + "ident": "4U7", + "type": "small_airport", + "name": "West Fork Lodge Airport", + "latitude_deg": "45.860599517822266", + "longitude_deg": "-114.22000122070312", + "elevation_ft": "4247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Conner", + "scheduled_service": "no", + "gps_code": "4U7", + "local_code": "4U7" + }, + { + "id": "11761", + "ident": "4U8", + "type": "small_airport", + "name": "Morrison Flight Park Ultralightport", + "latitude_deg": "39.022201538100006", + "longitude_deg": "-87.1875", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Linton", + "scheduled_service": "no", + "local_code": "0IN6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Morrison_Flight_Park", + "keywords": "4U8" + }, + { + "id": "11762", + "ident": "4V6", + "type": "small_airport", + "name": "Hay Springs Municipal Airport", + "latitude_deg": "42.682201", + "longitude_deg": "-102.700996", + "elevation_ft": "3831", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hay Springs", + "scheduled_service": "no", + "gps_code": "K4V6", + "local_code": "4V6" + }, + { + "id": "11763", + "ident": "4V8", + "type": "small_airport", + "name": "Mount Snow Airport", + "latitude_deg": "42.927101135253906", + "longitude_deg": "-72.8656997680664", + "elevation_ft": "1953", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "West Dover", + "scheduled_service": "no", + "gps_code": "4V8", + "local_code": "4V8" + }, + { + "id": "11764", + "ident": "4VA0", + "type": "small_airport", + "name": "Wood Farm Airport", + "latitude_deg": "37.63650131225586", + "longitude_deg": "-78.7300033569336", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Wingina", + "scheduled_service": "no", + "gps_code": "4VA0", + "local_code": "4VA0" + }, + { + "id": "11765", + "ident": "4VA1", + "type": "small_airport", + "name": "Davis Field", + "latitude_deg": "36.686798095703125", + "longitude_deg": "-79.66609954833984", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Martinsville", + "scheduled_service": "no", + "gps_code": "4VA1", + "local_code": "4VA1" + }, + { + "id": "11766", + "ident": "4VA2", + "type": "closed", + "name": "Potomac Hospital Helistop", + "latitude_deg": "38.6362", + "longitude_deg": "-77.286102", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Woodbridge", + "scheduled_service": "no", + "keywords": "4VA2" + }, + { + "id": "11767", + "ident": "4VA3", + "type": "small_airport", + "name": "Flying W Airport", + "latitude_deg": "37.429901123046875", + "longitude_deg": "-77.39440155029297", + "elevation_ft": "101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "4VA3", + "local_code": "4VA3" + }, + { + "id": "11768", + "ident": "4VA4", + "type": "small_airport", + "name": "Hepner Airport", + "latitude_deg": "38.934944", + "longitude_deg": "-78.540337", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Maurertown", + "scheduled_service": "no", + "gps_code": "4VA4", + "local_code": "4VA4" + }, + { + "id": "11769", + "ident": "4VA5", + "type": "small_airport", + "name": "Starr Airport", + "latitude_deg": "37.65959930419922", + "longitude_deg": "-78.92220306396484", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Arrington", + "scheduled_service": "no", + "gps_code": "4VA5", + "local_code": "4VA5" + }, + { + "id": "11770", + "ident": "4VA6", + "type": "small_airport", + "name": "Taylor Airport", + "latitude_deg": "37.880699157714844", + "longitude_deg": "-75.50599670410156", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Atlantic", + "scheduled_service": "no", + "gps_code": "4VA6", + "local_code": "4VA6" + }, + { + "id": "11771", + "ident": "4VA7", + "type": "heliport", + "name": "United Coal Heliport", + "latitude_deg": "37.29679870605469", + "longitude_deg": "-82.12870025634766", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Grundy", + "scheduled_service": "no", + "gps_code": "4VA7", + "local_code": "4VA7" + }, + { + "id": "11772", + "ident": "4VA8", + "type": "small_airport", + "name": "Christian's Airport", + "latitude_deg": "37.613800048828125", + "longitude_deg": "-77.2957992553711", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "4VA8", + "local_code": "4VA8" + }, + { + "id": "11773", + "ident": "4VA9", + "type": "small_airport", + "name": "Pleasantdale Field", + "latitude_deg": "38.569218", + "longitude_deg": "-77.92001", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Rixeyville", + "scheduled_service": "no", + "gps_code": "4VA9", + "local_code": "4VA9" + }, + { + "id": "45876", + "ident": "4VG2", + "type": "small_airport", + "name": "Cool Water Airport", + "latitude_deg": "37.858104", + "longitude_deg": "-77.545511", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "4VG2", + "local_code": "4VG2" + }, + { + "id": "11774", + "ident": "4W0", + "type": "small_airport", + "name": "Bandera State Airport", + "latitude_deg": "47.39540100097656", + "longitude_deg": "-121.53600311279297", + "elevation_ft": "1636", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Bandera", + "scheduled_service": "no", + "gps_code": "4W0", + "local_code": "4W0", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bandera_State_Airport" + }, + { + "id": "11775", + "ident": "4W4", + "type": "small_airport", + "name": "Whitfield Farms Airport", + "latitude_deg": "36.28350067138672", + "longitude_deg": "-79.07890319824219", + "elevation_ft": "653", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hurdle Mills", + "scheduled_service": "no", + "gps_code": "4W4", + "local_code": "4W4" + }, + { + "id": "11776", + "ident": "4W6", + "type": "closed", + "name": "Blaine Municipal Airport", + "latitude_deg": "48.990101", + "longitude_deg": "-122.732002", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Blaine", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Blaine_Municipal_Airport", + "keywords": "BWS, 4W6" + }, + { + "id": "11777", + "ident": "4W7", + "type": "closed", + "name": "Hurdle Field", + "latitude_deg": "36.072278", + "longitude_deg": "-79.280639", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Mebane", + "scheduled_service": "no", + "keywords": "4W7" + }, + { + "id": "11778", + "ident": "4W8", + "type": "closed", + "name": "Elma Municipal Airport", + "latitude_deg": "46.99054", + "longitude_deg": "-123.429656", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Elma", + "scheduled_service": "no", + "keywords": "WA22, 4W8, 1WA7" + }, + { + "id": "11779", + "ident": "4W9", + "type": "small_airport", + "name": "Pink Hill Airport", + "latitude_deg": "35.05070114135742", + "longitude_deg": "-77.73609924316406", + "elevation_ft": "144", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Pink Hill", + "scheduled_service": "no", + "gps_code": "4W9", + "local_code": "4W9" + }, + { + "id": "11780", + "ident": "4WA0", + "type": "small_airport", + "name": "B & G Farms Airport", + "latitude_deg": "46.928056", + "longitude_deg": "-119.739166", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Royal City", + "scheduled_service": "no", + "gps_code": "4WA0", + "local_code": "4WA0" + }, + { + "id": "11781", + "ident": "4WA1", + "type": "small_airport", + "name": "Brown's Cape Horn Airport", + "latitude_deg": "45.607191", + "longitude_deg": "-122.197815", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Washougal", + "scheduled_service": "no", + "gps_code": "4WA1", + "local_code": "4WA1" + }, + { + "id": "11782", + "ident": "4WA2", + "type": "small_airport", + "name": "Cricket Field", + "latitude_deg": "46.92720031738281", + "longitude_deg": "-122.96800231933594", + "elevation_ft": "184", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Little Rock", + "scheduled_service": "no", + "gps_code": "4WA2", + "local_code": "4WA2" + }, + { + "id": "11783", + "ident": "4WA3", + "type": "heliport", + "name": "PeaceHealth Saint John's Medical Center Heliport", + "latitude_deg": "46.130362", + "longitude_deg": "-122.940205", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Longview", + "scheduled_service": "no", + "gps_code": "4WA3", + "local_code": "4WA3" + }, + { + "id": "11784", + "ident": "4WA4", + "type": "small_airport", + "name": "Windsock Airport", + "latitude_deg": "48.541500091552734", + "longitude_deg": "-122.88700103759766", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Lopez", + "scheduled_service": "no", + "gps_code": "4WA4", + "local_code": "4WA4" + }, + { + "id": "11785", + "ident": "4WA6", + "type": "small_airport", + "name": "Hille-Kimp Airstrip", + "latitude_deg": "46.618499755859375", + "longitude_deg": "-118.59500122070312", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Kahlotus", + "scheduled_service": "no", + "gps_code": "4WA6", + "local_code": "4WA6" + }, + { + "id": "11786", + "ident": "4WA7", + "type": "heliport", + "name": "Mark Reed Hospital Heliport", + "latitude_deg": "47.058998107910156", + "longitude_deg": "-123.26000213623047", + "elevation_ft": "256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Mc Cleary", + "scheduled_service": "no", + "gps_code": "4WA7", + "local_code": "4WA7" + }, + { + "id": "11787", + "ident": "4WA8", + "type": "small_airport", + "name": "Riverside Airport", + "latitude_deg": "48.835924", + "longitude_deg": "-122.265294", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Everson", + "scheduled_service": "no", + "gps_code": "4WA8", + "local_code": "4WA8" + }, + { + "id": "11788", + "ident": "4WA9", + "type": "small_airport", + "name": "Port Orchard Airport", + "latitude_deg": "47.43230056762695", + "longitude_deg": "-122.66799926757812", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Port Orchard", + "scheduled_service": "no", + "gps_code": "4WA9", + "local_code": "4WA9" + }, + { + "id": "11789", + "ident": "4WI0", + "type": "small_airport", + "name": "Wissota Airport", + "latitude_deg": "44.93330001831055", + "longitude_deg": "-91.27239990234375", + "elevation_ft": "936", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Chippewa Falls", + "scheduled_service": "no", + "gps_code": "4WI0", + "local_code": "4WI0" + }, + { + "id": "11790", + "ident": "4WI1", + "type": "small_airport", + "name": "Bancroft East Airport", + "latitude_deg": "43.483299255371094", + "longitude_deg": "-89.18340301513672", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Rio", + "scheduled_service": "no", + "gps_code": "4WI1", + "local_code": "4WI1" + }, + { + "id": "11791", + "ident": "4WI2", + "type": "small_airport", + "name": "Island View Airport", + "latitude_deg": "45.60609817504883", + "longitude_deg": "-89.02149963378906", + "elevation_ft": "1640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Crandon", + "scheduled_service": "no", + "gps_code": "4WI2", + "local_code": "4WI2" + }, + { + "id": "11792", + "ident": "4WI3", + "type": "closed", + "name": "Neveln Field", + "latitude_deg": "45.325199", + "longitude_deg": "-88.137299", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Crivitz", + "scheduled_service": "no", + "keywords": "4WI3" + }, + { + "id": "11793", + "ident": "4WI4", + "type": "small_airport", + "name": "Turner Airport", + "latitude_deg": "45.574100494384766", + "longitude_deg": "-89.74800109863281", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Tomahawk", + "scheduled_service": "no", + "gps_code": "4WI4", + "local_code": "4WI4" + }, + { + "id": "11794", + "ident": "4WI5", + "type": "small_airport", + "name": "Carlson Airport", + "latitude_deg": "44.72359848022461", + "longitude_deg": "-91.45989990234375", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Eau Claire", + "scheduled_service": "no", + "gps_code": "4WI5", + "local_code": "4WI5" + }, + { + "id": "11795", + "ident": "4WI6", + "type": "closed", + "name": "Feldmann Field", + "latitude_deg": "43.803268", + "longitude_deg": "-87.896183", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Sheboygan Falls", + "scheduled_service": "no", + "keywords": "4WI6" + }, + { + "id": "11797", + "ident": "4WI8", + "type": "small_airport", + "name": "Carhart Farms Airport", + "latitude_deg": "44.051300048828125", + "longitude_deg": "-91.37629699707031", + "elevation_ft": "737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Galesville", + "scheduled_service": "no", + "gps_code": "4WI8", + "local_code": "4WI8" + }, + { + "id": "11798", + "ident": "4WI9", + "type": "closed", + "name": "Mar-O-Dae Farm Airport", + "latitude_deg": "45.006901", + "longitude_deg": "-92.191803", + "elevation_ft": "1164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Glenwood City", + "scheduled_service": "no", + "keywords": "4WI9" + }, + { + "id": "11799", + "ident": "4WN2", + "type": "small_airport", + "name": "Swensen Airport", + "latitude_deg": "44.41699981689453", + "longitude_deg": "-89.98639678955078", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Vesper", + "scheduled_service": "no", + "gps_code": "4WN2", + "local_code": "4WN2" + }, + { + "id": "11800", + "ident": "4WN3", + "type": "small_airport", + "name": "Lakewood Airpark", + "latitude_deg": "45.33209991455078", + "longitude_deg": "-88.53600311279297", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Lakewood", + "scheduled_service": "no", + "gps_code": "4WN3", + "local_code": "4WN3" + }, + { + "id": "11801", + "ident": "4WN4", + "type": "closed", + "name": "River Ridge Aero Estates Airport", + "latitude_deg": "45.294102", + "longitude_deg": "-91.232903", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Holcombe", + "scheduled_service": "no", + "keywords": "4WN4" + }, + { + "id": "11802", + "ident": "4WN5", + "type": "small_airport", + "name": "David Randall Airport", + "latitude_deg": "45.457", + "longitude_deg": "-92.378306", + "elevation_ft": "1155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Balsam Lake", + "scheduled_service": "no", + "gps_code": "4WN5", + "local_code": "4WN5", + "keywords": "Romeo Airstrip" + }, + { + "id": "11803", + "ident": "4WN6", + "type": "heliport", + "name": "Bay Area Medical Center Heliport", + "latitude_deg": "45.07279968261719", + "longitude_deg": "-87.61820220947266", + "elevation_ft": "608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Marinette", + "scheduled_service": "no", + "gps_code": "4WN6", + "local_code": "4WN6" + }, + { + "id": "11804", + "ident": "4WN7", + "type": "heliport", + "name": "Aegis Heliport", + "latitude_deg": "44.471432", + "longitude_deg": "-87.994818", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Green Bay", + "scheduled_service": "no", + "gps_code": "4WN7", + "local_code": "4WN7", + "keywords": "County Rescue Services" + }, + { + "id": "45925", + "ident": "4WN8", + "type": "heliport", + "name": "Lynn Louise Heliport", + "latitude_deg": "43.005208", + "longitude_deg": "-88.470747", + "elevation_ft": "616", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Dousman", + "scheduled_service": "no", + "gps_code": "4WN8", + "local_code": "4WN8" + }, + { + "id": "45922", + "ident": "4WN9", + "type": "small_airport", + "name": "Digger Dougs Airport", + "latitude_deg": "42.5975", + "longitude_deg": "-88.146389", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "4WN9", + "local_code": "4WN9" + }, + { + "id": "11805", + "ident": "4WV4", + "type": "small_airport", + "name": "Heaven's Landing Airstrip", + "latitude_deg": "39.176342", + "longitude_deg": "-79.068142", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Medley", + "scheduled_service": "no", + "gps_code": "4WV4", + "local_code": "4WV4" + }, + { + "id": "45855", + "ident": "4XA2", + "type": "small_airport", + "name": "Card Airfield", + "latitude_deg": "28.789167", + "longitude_deg": "-97.763389", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kenedy", + "scheduled_service": "no", + "gps_code": "4XA2", + "local_code": "4XA2" + }, + { + "id": "45856", + "ident": "4XA3", + "type": "small_airport", + "name": "Owen Field", + "latitude_deg": "32.253611", + "longitude_deg": "-99.498611", + "elevation_ft": "1971", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Clyde", + "scheduled_service": "no", + "gps_code": "4XA3", + "local_code": "4XA3" + }, + { + "id": "45801", + "ident": "4XA4", + "type": "small_airport", + "name": "Apache Pass Airport", + "latitude_deg": "30.734958", + "longitude_deg": "-97.143378", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rockdale", + "scheduled_service": "no", + "gps_code": "4XA4", + "local_code": "4XA4" + }, + { + "id": "45799", + "ident": "4XA5", + "type": "small_airport", + "name": "Dave Eby Field", + "latitude_deg": "34.03775", + "longitude_deg": "-98.496", + "elevation_ft": "1004", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Burkburnett", + "scheduled_service": "no", + "gps_code": "4XA5", + "local_code": "4XA5", + "keywords": "4-Shipp Airport" + }, + { + "id": "45833", + "ident": "4XA6", + "type": "heliport", + "name": "Medical Center Of Southeast Texas Heliport", + "latitude_deg": "29.936561", + "longitude_deg": "-93.988878", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port Arthur", + "scheduled_service": "no", + "gps_code": "4XA6", + "local_code": "4XA6" + }, + { + "id": "45804", + "ident": "4XA7", + "type": "heliport", + "name": "Baylor Health Center At Irving Coppell Heliport", + "latitude_deg": "32.912967", + "longitude_deg": "-96.952469", + "elevation_ft": "527", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Irving", + "scheduled_service": "no", + "gps_code": "4XA7", + "local_code": "4XA7" + }, + { + "id": "45851", + "ident": "4XA8", + "type": "heliport", + "name": "Winkler County Memorial Hospital Heliport", + "latitude_deg": "31.849921", + "longitude_deg": "-103.090929", + "elevation_ft": "2858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kermit", + "scheduled_service": "no", + "gps_code": "4XA8", + "local_code": "4XA8" + }, + { + "id": "11806", + "ident": "4XS0", + "type": "small_airport", + "name": "Pfeffer & Son Farms Airport", + "latitude_deg": "29.931357", + "longitude_deg": "-95.95871", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waller", + "scheduled_service": "no", + "gps_code": "4XS0", + "local_code": "4XS0" + }, + { + "id": "11807", + "ident": "4XS1", + "type": "small_airport", + "name": "Coyote Field", + "latitude_deg": "32.1338996887207", + "longitude_deg": "-96.52059936523438", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corsicana", + "scheduled_service": "no", + "gps_code": "4XS1", + "local_code": "4XS1" + }, + { + "id": "11808", + "ident": "4XS2", + "type": "small_airport", + "name": "Teate Field", + "latitude_deg": "33.1696", + "longitude_deg": "-97.731664", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paradise", + "scheduled_service": "no", + "gps_code": "4XS2", + "local_code": "4XS2" + }, + { + "id": "11809", + "ident": "4XS3", + "type": "heliport", + "name": "Columbia Lakes Heliport", + "latitude_deg": "29.167999267578125", + "longitude_deg": "-95.62129974365234", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "West Columbia", + "scheduled_service": "no", + "gps_code": "4XS3", + "local_code": "4XS3" + }, + { + "id": "45805", + "ident": "4XS4", + "type": "heliport", + "name": "Carrollton Regional Medical Center Heliport", + "latitude_deg": "33.02866", + "longitude_deg": "-96.887026", + "elevation_ft": "572", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Carrollton", + "scheduled_service": "no", + "gps_code": "4XS4", + "local_code": "4XS4", + "keywords": "Trinity Medical Center, Baylor Medical Center At Carrollton, Baylor Scott & White Medical Center Carrollton" + }, + { + "id": "11810", + "ident": "4XS5", + "type": "small_airport", + "name": "Scrappin Valley Airport", + "latitude_deg": "31.12190055847168", + "longitude_deg": "-93.8030014038086", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wiergate", + "scheduled_service": "no", + "gps_code": "4XS5", + "local_code": "4XS5" + }, + { + "id": "11811", + "ident": "4XS6", + "type": "small_airport", + "name": "H Young Ranch Airport", + "latitude_deg": "30.397118", + "longitude_deg": "-98.658489", + "elevation_ft": "1670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Willow City", + "scheduled_service": "no", + "gps_code": "4XS6", + "local_code": "4XS6", + "keywords": "Young Landing Strip" + }, + { + "id": "11813", + "ident": "4XS8", + "type": "closed", + "name": "Winn Ranch Airport", + "latitude_deg": "29.971403", + "longitude_deg": "-98.111901", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wimberley", + "scheduled_service": "no", + "keywords": "4XS8" + }, + { + "id": "11814", + "ident": "4XS9", + "type": "small_airport", + "name": "Cajun Hills Ranch Airport", + "latitude_deg": "30.085899", + "longitude_deg": "-98.169642", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wimberley", + "scheduled_service": "no", + "gps_code": "4XS9", + "local_code": "4XS9", + "keywords": "Garnett Ranch Airport" + }, + { + "id": "11815", + "ident": "4Y1", + "type": "small_airport", + "name": "Raether Airport", + "latitude_deg": "42.56529998779297", + "longitude_deg": "-83.85649871826172", + "elevation_ft": "982", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Howell", + "scheduled_service": "no", + "gps_code": "4Y1", + "local_code": "4Y1" + }, + { + "id": "11816", + "ident": "4Y8", + "type": "small_airport", + "name": "Para Field", + "latitude_deg": "43.20220184326172", + "longitude_deg": "-82.75409698486328", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Yale", + "scheduled_service": "no", + "gps_code": "4Y8", + "local_code": "4Y8" + }, + { + "id": "11817", + "ident": "4Y9", + "type": "small_airport", + "name": "Eagles Landing Airport", + "latitude_deg": "44.3083000183", + "longitude_deg": "-85.77230072020001", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Harrietta", + "scheduled_service": "no", + "gps_code": "4Y9", + "local_code": "4Y9", + "keywords": "Bunch's Half Acre Airport" + }, + { + "id": "11818", + "ident": "4Z2", + "type": "small_airport", + "name": "Upper Hannum Creek Airport", + "latitude_deg": "65.90489959716797", + "longitude_deg": "-163.32899475097656", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Hannum Creek", + "scheduled_service": "no", + "gps_code": "4Z2", + "local_code": "4Z2" + }, + { + "id": "11819", + "ident": "4Z5", + "type": "small_airport", + "name": "Horsfeld Airport", + "latitude_deg": "62.007198333740234", + "longitude_deg": "-141.18099975585938", + "elevation_ft": "3300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Horsfeld", + "scheduled_service": "no", + "gps_code": "4Z5", + "local_code": "4Z5" + }, + { + "id": "11820", + "ident": "4Z7", + "type": "seaplane_base", + "name": "Hyder Seaplane Base", + "latitude_deg": "55.903324", + "longitude_deg": "-130.009975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Hyder", + "scheduled_service": "yes", + "iata_code": "WHD", + "local_code": "4Z7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hyder_Seaplane_Base" + }, + { + "id": "11821", + "ident": "4Z9", + "type": "small_airport", + "name": "Jakolof Bay Airport", + "latitude_deg": "59.45199", + "longitude_deg": "-151.521313", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Jakolof Bay", + "scheduled_service": "no", + "local_code": "4Z9" + }, + { + "id": "45275", + "ident": "50AK", + "type": "small_airport", + "name": "Robin's Landing", + "latitude_deg": "61.380461", + "longitude_deg": "-150.116163", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Point Mackenzie", + "scheduled_service": "no", + "gps_code": "50AK", + "local_code": "50AK" + }, + { + "id": "323174", + "ident": "50AL", + "type": "heliport", + "name": "Perdido Beach VFD Heliport", + "latitude_deg": "30.346911", + "longitude_deg": "-87.505752", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Perdido Beach", + "scheduled_service": "no", + "gps_code": "50AL", + "local_code": "50AL" + }, + { + "id": "11822", + "ident": "50AR", + "type": "heliport", + "name": "Yell County Hospital Heliport", + "latitude_deg": "35.054500579833984", + "longitude_deg": "-93.38770294189453", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "50AR", + "local_code": "50AR" + }, + { + "id": "11823", + "ident": "50AZ", + "type": "small_airport", + "name": "Rocky Ridge Airport", + "latitude_deg": "36.05970001220703", + "longitude_deg": "-110.58799743652344", + "elevation_ft": "5946", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Rocky Ridge", + "scheduled_service": "no", + "gps_code": "50AZ", + "local_code": "50AZ" + }, + { + "id": "11824", + "ident": "50CA", + "type": "heliport", + "name": "St Mary Medical Center Heliport", + "latitude_deg": "33.780949", + "longitude_deg": "-118.186094", + "elevation_ft": "174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no", + "gps_code": "50CA", + "local_code": "50CA" + }, + { + "id": "11825", + "ident": "50CL", + "type": "heliport", + "name": "L A Co Sheriff Lakewood Heliport", + "latitude_deg": "33.8507995605", + "longitude_deg": "-118.133003235", + "elevation_ft": "58", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lakewood", + "scheduled_service": "no", + "gps_code": "50CL", + "local_code": "50CL" + }, + { + "id": "345591", + "ident": "50CN", + "type": "heliport", + "name": "Palmdale Medical Center Heliport", + "latitude_deg": "34.582261", + "longitude_deg": "-118.145106", + "elevation_ft": "2743", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palmdale", + "scheduled_service": "no", + "gps_code": "50CN", + "local_code": "50CN" + }, + { + "id": "11826", + "ident": "50CO", + "type": "closed", + "name": "William T Browder Heliport", + "latitude_deg": "40.658298", + "longitude_deg": "-104.950996", + "elevation_ft": "5200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Fort Collins", + "scheduled_service": "no", + "keywords": "50CO" + }, + { + "id": "345326", + "ident": "50FA", + "type": "heliport", + "name": "Lehigh Acres Regional Medical Center Heliport", + "latitude_deg": "26.616596", + "longitude_deg": "-81.659135", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lehigh Acres", + "scheduled_service": "no", + "gps_code": "50FA", + "local_code": "50FA" + }, + { + "id": "11827", + "ident": "50FD", + "type": "small_airport", + "name": "Cattle Creek Ranch Airport", + "latitude_deg": "30.518199920654297", + "longitude_deg": "-85.19879913330078", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Altha", + "scheduled_service": "no", + "gps_code": "50FD", + "local_code": "50FD" + }, + { + "id": "11828", + "ident": "50FL", + "type": "small_airport", + "name": "Odom's Flying Service Airport", + "latitude_deg": "30.853300094604492", + "longitude_deg": "-87.2394027709961", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jay", + "scheduled_service": "no", + "gps_code": "50FL", + "local_code": "50FL" + }, + { + "id": "11829", + "ident": "50G", + "type": "small_airport", + "name": "Howard Nixon Memorial Airport", + "latitude_deg": "43.18339920043945", + "longitude_deg": "-84.13330078125", + "elevation_ft": "644", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Chesaning", + "scheduled_service": "no", + "gps_code": "50G", + "local_code": "50G" + }, + { + "id": "11830", + "ident": "50GA", + "type": "small_airport", + "name": "Mallory Field", + "latitude_deg": "30.9507999420166", + "longitude_deg": "-83.23419952392578", + "elevation_ft": "202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Valdosta", + "scheduled_service": "no", + "gps_code": "50GA", + "local_code": "50GA" + }, + { + "id": "11831", + "ident": "50II", + "type": "small_airport", + "name": "Way West Airport", + "latitude_deg": "39.773432", + "longitude_deg": "-86.754855", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bainbridge", + "scheduled_service": "no", + "gps_code": "50II", + "local_code": "50II" + }, + { + "id": "11832", + "ident": "50IL", + "type": "small_airport", + "name": "Midland Airport", + "latitude_deg": "42.48889923095703", + "longitude_deg": "-88.17430114746094", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Antioch", + "scheduled_service": "no", + "gps_code": "50IL", + "local_code": "50IL" + }, + { + "id": "11833", + "ident": "50IN", + "type": "closed", + "name": "Austin Air Ads Airport", + "latitude_deg": "39.2181", + "longitude_deg": "-87.368102", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Farmersburg", + "scheduled_service": "no", + "keywords": "50IN" + }, + { + "id": "11834", + "ident": "50IS", + "type": "heliport", + "name": "Memorial Heliport", + "latitude_deg": "42.294498443603516", + "longitude_deg": "-89.63790130615234", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Freeport", + "scheduled_service": "no", + "gps_code": "50IS", + "local_code": "50IS" + }, + { + "id": "11835", + "ident": "50K", + "type": "small_airport", + "name": "Pawnee City Municipal Airport", + "latitude_deg": "40.1161003112793", + "longitude_deg": "-96.19450378417969", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Pawnee City", + "scheduled_service": "no", + "gps_code": "50K", + "local_code": "50K" + }, + { + "id": "11836", + "ident": "50KS", + "type": "closed", + "name": "Grandpa's Farm Airport", + "latitude_deg": "37.6656", + "longitude_deg": "-98.619796", + "elevation_ft": "1820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Pratt", + "scheduled_service": "no", + "keywords": "50KS" + }, + { + "id": "347531", + "ident": "50KT", + "type": "heliport", + "name": "Highlands Regional Medical Center Heliport", + "latitude_deg": "37.728061", + "longitude_deg": "-82.770116", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Prestonsburg", + "scheduled_service": "no", + "gps_code": "50KT", + "local_code": "50KT" + }, + { + "id": "11837", + "ident": "50KY", + "type": "small_airport", + "name": "Zanzibar Farm Airport", + "latitude_deg": "38.129798889160156", + "longitude_deg": "-84.3302001953125", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "50KY", + "local_code": "50KY" + }, + { + "id": "11838", + "ident": "50LA", + "type": "heliport", + "name": "LA State Police Troop C Heliport", + "latitude_deg": "29.679007", + "longitude_deg": "-90.781547", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Thibodaux", + "scheduled_service": "no", + "gps_code": "50LA", + "local_code": "50LA" + }, + { + "id": "45434", + "ident": "50LS", + "type": "heliport", + "name": "Livingston Parish Air Support Heliport", + "latitude_deg": "30.481734", + "longitude_deg": "-90.794052", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Livingston", + "scheduled_service": "no", + "gps_code": "50LS", + "local_code": "50LS" + }, + { + "id": "11839", + "ident": "50M", + "type": "small_airport", + "name": "Puckett Gliderport", + "latitude_deg": "35.68939971923828", + "longitude_deg": "-86.61499786376953", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Eagleville", + "scheduled_service": "no", + "gps_code": "50M", + "local_code": "50M" + }, + { + "id": "325920", + "ident": "50MD", + "type": "heliport", + "name": "Queen Anne ER Heliport", + "latitude_deg": "38.967522", + "longitude_deg": "-76.18278", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Grasonville", + "scheduled_service": "no", + "gps_code": "50MD", + "local_code": "50MD" + }, + { + "id": "11840", + "ident": "50MI", + "type": "seaplane_base", + "name": "Burgess Lake Seaplane Base", + "latitude_deg": "43.15729904174805", + "longitude_deg": "-85.29419708251953", + "elevation_ft": "799", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "50MI", + "local_code": "50MI" + }, + { + "id": "11841", + "ident": "50MN", + "type": "small_airport", + "name": "Zimmerman Airport", + "latitude_deg": "45.79359817504883", + "longitude_deg": "-96.30010223388672", + "elevation_ft": "1045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Herman", + "scheduled_service": "no", + "gps_code": "50MN", + "local_code": "50MN" + }, + { + "id": "11842", + "ident": "50MO", + "type": "heliport", + "name": "Ozarks Medical Center Heliport", + "latitude_deg": "36.738399505615234", + "longitude_deg": "-91.8738021850586", + "elevation_ft": "1006", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "West Plains", + "scheduled_service": "no", + "gps_code": "50MO", + "local_code": "50MO" + }, + { + "id": "322448", + "ident": "50MS", + "type": "heliport", + "name": "Merit Health Wesley Heliport", + "latitude_deg": "31.32741", + "longitude_deg": "-89.365555", + "elevation_ft": "222", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Hattiesburg", + "scheduled_service": "no", + "gps_code": "50MS", + "local_code": "50MS" + }, + { + "id": "11843", + "ident": "50NC", + "type": "small_airport", + "name": "Ervin Airfield", + "latitude_deg": "35.54499816894531", + "longitude_deg": "-80.6686019897461", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Kannapolis", + "scheduled_service": "no", + "gps_code": "50NC", + "local_code": "50NC" + }, + { + "id": "11844", + "ident": "50NE", + "type": "small_airport", + "name": "Elge Field", + "latitude_deg": "40.939998626708984", + "longitude_deg": "-98.0781021118164", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Aurora", + "scheduled_service": "no", + "gps_code": "50NE", + "local_code": "50NE" + }, + { + "id": "350967", + "ident": "50NH", + "type": "heliport", + "name": "Smith Point Heliport", + "latitude_deg": "43.555146", + "longitude_deg": "-71.309627", + "elevation_ft": "499", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Alton", + "scheduled_service": "no", + "gps_code": "50NH", + "local_code": "50NH" + }, + { + "id": "11845", + "ident": "50NJ", + "type": "heliport", + "name": "Express Marine Heliport", + "latitude_deg": "39.952301025390625", + "longitude_deg": "-75.08409881591797", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Camden", + "scheduled_service": "no", + "gps_code": "50NJ", + "local_code": "50NJ" + }, + { + "id": "11846", + "ident": "50NM", + "type": "closed", + "name": "Ghost Ranch Strip", + "latitude_deg": "36.302799", + "longitude_deg": "-106.487999", + "elevation_ft": "6440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Abiquiu", + "scheduled_service": "no", + "keywords": "50E, 50NM" + }, + { + "id": "11847", + "ident": "50NY", + "type": "small_airport", + "name": "Old Fort Farm Airport", + "latitude_deg": "42.81449890136719", + "longitude_deg": "-77.57330322265625", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hemlock", + "scheduled_service": "no", + "gps_code": "50NY", + "local_code": "50NY" + }, + { + "id": "45734", + "ident": "50OG", + "type": "heliport", + "name": "Teufel'S Heliport", + "latitude_deg": "45.531417", + "longitude_deg": "-123.084528", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Forest Grove", + "scheduled_service": "no", + "gps_code": "50OG", + "local_code": "50OG" + }, + { + "id": "11848", + "ident": "50OH", + "type": "small_airport", + "name": "Culver Field", + "latitude_deg": "41.66310119628906", + "longitude_deg": "-83.41549682617188", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Oregon", + "scheduled_service": "no", + "gps_code": "50OH", + "local_code": "50OH" + }, + { + "id": "11849", + "ident": "50OI", + "type": "closed", + "name": "Beckman Field", + "latitude_deg": "39.742569", + "longitude_deg": "-83.038201", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ashville", + "scheduled_service": "no", + "keywords": "50OI" + }, + { + "id": "11850", + "ident": "50OK", + "type": "heliport", + "name": "Southwest Medical Center of Oklahoma Heliport", + "latitude_deg": "35.42279815673828", + "longitude_deg": "-97.52110290527344", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "gps_code": "50OK", + "local_code": "50OK" + }, + { + "id": "11851", + "ident": "50OR", + "type": "small_airport", + "name": "Goering Ranches / Chocheta Estates Airport", + "latitude_deg": "44.095813", + "longitude_deg": "-120.946823", + "elevation_ft": "3450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Bend", + "scheduled_service": "no", + "gps_code": "50OR", + "local_code": "50OR" + }, + { + "id": "11852", + "ident": "50PA", + "type": "small_airport", + "name": "Pegasus Air Park", + "latitude_deg": "40.93339920043945", + "longitude_deg": "-75.34960174560547", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Stroudsburg", + "scheduled_service": "no", + "gps_code": "50PA", + "local_code": "50PA" + }, + { + "id": "11853", + "ident": "50PN", + "type": "heliport", + "name": "Delmont Personal Use Heliport", + "latitude_deg": "40.39120101928711", + "longitude_deg": "-79.57119750976562", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Delmont", + "scheduled_service": "no", + "gps_code": "50PN", + "local_code": "50PN" + }, + { + "id": "11854", + "ident": "50S", + "type": "small_airport", + "name": "Parma Airport", + "latitude_deg": "43.77880096435547", + "longitude_deg": "-116.93800354003906", + "elevation_ft": "2228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Parma", + "scheduled_service": "no", + "gps_code": "50S", + "local_code": "50S" + }, + { + "id": "322684", + "ident": "50SC", + "type": "heliport", + "name": "Oconee Nuclear Station Helipad", + "latitude_deg": "34.8001917", + "longitude_deg": "-82.897211", + "elevation_ft": "796", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Seneca", + "scheduled_service": "no", + "gps_code": "50SC", + "local_code": "50SC" + }, + { + "id": "11855", + "ident": "50TA", + "type": "small_airport", + "name": "Moltz Airport", + "latitude_deg": "29.687700271606445", + "longitude_deg": "-97.99610137939453", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Geronimo", + "scheduled_service": "no", + "gps_code": "50TA", + "local_code": "50TA" + }, + { + "id": "11856", + "ident": "50TE", + "type": "closed", + "name": "Keller Ranch Airport", + "latitude_deg": "30.230499", + "longitude_deg": "-98.475304", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Johnson City", + "scheduled_service": "no", + "keywords": "50T, 50TE" + }, + { + "id": "45960", + "ident": "50TN", + "type": "small_airport", + "name": "Paris Landing Airpark", + "latitude_deg": "36.352339", + "longitude_deg": "-88.350492", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "50TN", + "local_code": "50TN" + }, + { + "id": "11857", + "ident": "50TS", + "type": "heliport", + "name": "TJ-CJ Private Heliport", + "latitude_deg": "29.459849", + "longitude_deg": "-98.331971", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "50TS", + "local_code": "50TS" + }, + { + "id": "11858", + "ident": "50TX", + "type": "small_airport", + "name": "Kennedy Ranch Airport", + "latitude_deg": "30.137037", + "longitude_deg": "-98.524017", + "elevation_ft": "1598", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Blanco", + "scheduled_service": "no", + "gps_code": "50TX", + "local_code": "50TX" + }, + { + "id": "11859", + "ident": "50VA", + "type": "heliport", + "name": "L G Hospital Heliport", + "latitude_deg": "37.41740036010742", + "longitude_deg": "-79.17250061035156", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Lynchburg", + "scheduled_service": "no", + "gps_code": "50VA", + "local_code": "50VA" + }, + { + "id": "11860", + "ident": "50WA", + "type": "small_airport", + "name": "Hartley Airport", + "latitude_deg": "46.61980056762695", + "longitude_deg": "-122.96499633789062", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Chehalis", + "scheduled_service": "no", + "gps_code": "50WA", + "local_code": "50WA" + }, + { + "id": "11861", + "ident": "50WI", + "type": "closed", + "name": "Earl's Air Park", + "latitude_deg": "44.113899", + "longitude_deg": "-88.527101", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Neenah", + "scheduled_service": "no", + "keywords": "50WI" + }, + { + "id": "45965", + "ident": "50WY", + "type": "heliport", + "name": "McMurry Heliport", + "latitude_deg": "42.826945", + "longitude_deg": "-106.253893", + "elevation_ft": "5255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Casper", + "scheduled_service": "no", + "gps_code": "50WY", + "local_code": "50WY" + }, + { + "id": "330694", + "ident": "50XA", + "type": "heliport", + "name": "Las Palmas Medical Center Heliport", + "latitude_deg": "31.770648", + "longitude_deg": "-106.498381", + "elevation_ft": "3897", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Paso", + "scheduled_service": "no", + "gps_code": "50XA", + "local_code": "50XA" + }, + { + "id": "11862", + "ident": "50XS", + "type": "small_airport", + "name": "Hughes Ranch Airport", + "latitude_deg": "29.04330062866211", + "longitude_deg": "-100.58499908447266", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Quemado", + "scheduled_service": "no", + "gps_code": "50XS", + "local_code": "50XS" + }, + { + "id": "45276", + "ident": "51AK", + "type": "small_airport", + "name": "Birch Creek Landing", + "latitude_deg": "62.23883", + "longitude_deg": "-150.063849", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Talkeetna", + "scheduled_service": "no", + "gps_code": "51AK", + "local_code": "51AK" + }, + { + "id": "45297", + "ident": "51AZ", + "type": "heliport", + "name": "Yavapai Regional Medical Center East Heliport", + "latitude_deg": "34.59183", + "longitude_deg": "-112.330763", + "elevation_ft": "5100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Prescott Valley", + "scheduled_service": "no", + "gps_code": "51AZ", + "local_code": "51AZ" + }, + { + "id": "11863", + "ident": "51CA", + "type": "small_airport", + "name": "Kelly Airport", + "latitude_deg": "34.42359924316406", + "longitude_deg": "-116.61699676513672", + "elevation_ft": "2806", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lucerne Valley", + "scheduled_service": "no", + "gps_code": "51CA", + "local_code": "51CA" + }, + { + "id": "11864", + "ident": "51CL", + "type": "small_airport", + "name": "Vetters Sky Ranch Airport", + "latitude_deg": "38.230499267578125", + "longitude_deg": "-121.22200012207031", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Galt", + "scheduled_service": "no", + "gps_code": "51CL", + "local_code": "51CL" + }, + { + "id": "11865", + "ident": "51CO", + "type": "small_airport", + "name": "Flying W No.2 Airport", + "latitude_deg": "38.88560104370117", + "longitude_deg": "-107.80400085449219", + "elevation_ft": "7105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Hotchkiss", + "scheduled_service": "no", + "gps_code": "51CO", + "local_code": "51CO" + }, + { + "id": "11866", + "ident": "51FD", + "type": "small_airport", + "name": "Tex Merritt Private Airstrip", + "latitude_deg": "28.667800903320312", + "longitude_deg": "-81.91809844970703", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Leesburg", + "scheduled_service": "no", + "gps_code": "51FD", + "local_code": "51FD" + }, + { + "id": "11867", + "ident": "51FL", + "type": "small_airport", + "name": "Chiefland Sky Ranch Airport", + "latitude_deg": "29.39489937", + "longitude_deg": "-82.86979675", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Chiefland", + "scheduled_service": "no", + "gps_code": "51FL", + "local_code": "51FL" + }, + { + "id": "11868", + "ident": "51G", + "type": "small_airport", + "name": "Alkay Airport", + "latitude_deg": "43.143588", + "longitude_deg": "-83.796938", + "elevation_ft": "722", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Clio", + "scheduled_service": "no", + "local_code": "51G", + "keywords": "Cagney" + }, + { + "id": "11869", + "ident": "51GA", + "type": "small_airport", + "name": "Smith Field", + "latitude_deg": "33.50809860229492", + "longitude_deg": "-84.60050201416016", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Tyrone", + "scheduled_service": "no", + "gps_code": "51GA", + "local_code": "51GA" + }, + { + "id": "11870", + "ident": "51IL", + "type": "small_airport", + "name": "Marvin D Bradd Airport", + "latitude_deg": "40.27170181274414", + "longitude_deg": "-88.49449920654297", + "elevation_ft": "797", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mansfield", + "scheduled_service": "no", + "gps_code": "51IL", + "local_code": "51IL" + }, + { + "id": "11871", + "ident": "51IN", + "type": "small_airport", + "name": "Dahnke Airport", + "latitude_deg": "40.492801666259766", + "longitude_deg": "-86.90560150146484", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "West Lafayette", + "scheduled_service": "no", + "gps_code": "51IN", + "local_code": "51IN" + }, + { + "id": "11872", + "ident": "51IS", + "type": "small_airport", + "name": "Curry Airport", + "latitude_deg": "39.65919876098633", + "longitude_deg": "-90.70010375976562", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Griggsville", + "scheduled_service": "no", + "gps_code": "51IS", + "local_code": "51IS" + }, + { + "id": "11873", + "ident": "51K", + "type": "small_airport", + "name": "Cedar Air Park", + "latitude_deg": "38.931400299072266", + "longitude_deg": "-94.88500213623047", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Olathe", + "scheduled_service": "no", + "gps_code": "51K", + "local_code": "51K" + }, + { + "id": "11874", + "ident": "51KS", + "type": "small_airport", + "name": "Barnard Airport", + "latitude_deg": "38.637001037597656", + "longitude_deg": "-97.2136001586914", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Elmo", + "scheduled_service": "no", + "gps_code": "51KS", + "local_code": "51KS" + }, + { + "id": "11875", + "ident": "51KY", + "type": "heliport", + "name": "Appalachian Regional Hospital Heliport", + "latitude_deg": "37.11320114135742", + "longitude_deg": "-82.8124008178711", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Whitesburg", + "scheduled_service": "no", + "gps_code": "51KY", + "local_code": "51KY" + }, + { + "id": "11876", + "ident": "51LA", + "type": "small_airport", + "name": "R T Leblanc Airport", + "latitude_deg": "30.14349937438965", + "longitude_deg": "-91.1531982421875", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "White Castle", + "scheduled_service": "no", + "gps_code": "51LA", + "local_code": "51LA" + }, + { + "id": "45443", + "ident": "51LS", + "type": "small_airport", + "name": "Red Oak Landing Airport", + "latitude_deg": "30.438053", + "longitude_deg": "-92.116653", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Sunset", + "scheduled_service": "no", + "gps_code": "51LS", + "local_code": "51LS" + }, + { + "id": "11877", + "ident": "51M", + "type": "small_airport", + "name": "Oscoda County Airport", + "latitude_deg": "44.674881", + "longitude_deg": "-84.122314", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Mio", + "scheduled_service": "no", + "gps_code": "K51M", + "local_code": "51M" + }, + { + "id": "345500", + "ident": "51MA", + "type": "heliport", + "name": "BSAS #2 Heliport", + "latitude_deg": "42.672583", + "longitude_deg": "-70.622083", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Rockport", + "scheduled_service": "no", + "gps_code": "51MA", + "local_code": "51MA" + }, + { + "id": "11878", + "ident": "51MI", + "type": "seaplane_base", + "name": "Cass Lake-Cove Island Seaplane Base", + "latitude_deg": "42.6161003112793", + "longitude_deg": "-83.35600280761719", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Pontiac", + "scheduled_service": "no", + "gps_code": "51MI", + "local_code": "51MI" + }, + { + "id": "45482", + "ident": "51MN", + "type": "heliport", + "name": "Barry Heliport", + "latitude_deg": "46.450953", + "longitude_deg": "-95.848272", + "elevation_ft": "1330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Dent", + "scheduled_service": "no", + "gps_code": "51MN", + "local_code": "51MN" + }, + { + "id": "11879", + "ident": "51MO", + "type": "closed", + "name": "Georger Farms Airport", + "latitude_deg": "37.121700286865234", + "longitude_deg": "-89.84760284423828", + "elevation_ft": "335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Advance", + "scheduled_service": "no", + "gps_code": "51MO", + "local_code": "51MO" + }, + { + "id": "11880", + "ident": "51NC", + "type": "small_airport", + "name": "Phillip R Bunn Airport", + "latitude_deg": "35.8619001", + "longitude_deg": "-78.348602", + "elevation_ft": "355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Zebulon", + "scheduled_service": "no", + "gps_code": "51NC", + "local_code": "51NC", + "keywords": "Field of Dreams" + }, + { + "id": "11881", + "ident": "51NE", + "type": "closed", + "name": "Bil Lo Airport", + "latitude_deg": "41.470798", + "longitude_deg": "-96.021103", + "elevation_ft": "997", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Fort Calhoun", + "scheduled_service": "no", + "keywords": "51NE" + }, + { + "id": "346673", + "ident": "51NH", + "type": "small_airport", + "name": "Blue Puffin Farm Heliport", + "latitude_deg": "43.174782", + "longitude_deg": "-71.282843", + "elevation_ft": "863", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Deerfield", + "scheduled_service": "no", + "gps_code": "51NH", + "local_code": "51NH" + }, + { + "id": "11882", + "ident": "51NJ", + "type": "heliport", + "name": "Germania Heliport", + "latitude_deg": "39.5010439498", + "longitude_deg": "-74.60845470430002", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Cologne", + "scheduled_service": "no", + "gps_code": "51NJ", + "local_code": "51NJ" + }, + { + "id": "299727", + "ident": "51NK", + "type": "heliport", + "name": "The Moriches Bay Heliport", + "latitude_deg": "40.7992302243", + "longitude_deg": "-72.7628991008", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "East Moriches", + "scheduled_service": "no", + "gps_code": "51NK", + "local_code": "51NK" + }, + { + "id": "11883", + "ident": "51NY", + "type": "closed", + "name": "Maxon Field", + "latitude_deg": "43.179501", + "longitude_deg": "-78.039704", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Holley", + "scheduled_service": "no", + "keywords": "51NY" + }, + { + "id": "11884", + "ident": "51OH", + "type": "small_airport", + "name": "Agner Airport", + "latitude_deg": "41.0703010559082", + "longitude_deg": "-84.0863037109375", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ottawa", + "scheduled_service": "no", + "gps_code": "51OH", + "local_code": "51OH" + }, + { + "id": "11885", + "ident": "51OI", + "type": "small_airport", + "name": "Clay's Rv Airport", + "latitude_deg": "40.855098724365234", + "longitude_deg": "-81.5989990234375", + "elevation_ft": "1035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Canal Fulton", + "scheduled_service": "no", + "gps_code": "51OI", + "local_code": "51OI" + }, + { + "id": "11886", + "ident": "51OK", + "type": "small_airport", + "name": "Eagle Creek Airport", + "latitude_deg": "35.793611", + "longitude_deg": "-96.029722", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Beggs", + "scheduled_service": "no", + "gps_code": "51OK", + "local_code": "51OK" + }, + { + "id": "11887", + "ident": "51OR", + "type": "heliport", + "name": "Pge Heliport", + "latitude_deg": "44.99959945678711", + "longitude_deg": "-122.97699737548828", + "elevation_ft": "182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "51OR", + "local_code": "51OR" + }, + { + "id": "11888", + "ident": "51PA", + "type": "small_airport", + "name": "Lamberson Airport", + "latitude_deg": "39.883399963378906", + "longitude_deg": "-77.08300018310547", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "New Oxford", + "scheduled_service": "no", + "gps_code": "51PA", + "local_code": "51PA" + }, + { + "id": "11889", + "ident": "51PN", + "type": "heliport", + "name": "Helistop Ridc Industrial Park Heliport", + "latitude_deg": "40.49919891357422", + "longitude_deg": "-79.86530303955078", + "elevation_ft": "986", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Blawnox", + "scheduled_service": "no", + "gps_code": "51PN", + "local_code": "51PN" + }, + { + "id": "11890", + "ident": "51SC", + "type": "small_airport", + "name": "Moccasin Creek Airport", + "latitude_deg": "33.1422004699707", + "longitude_deg": "-80.95559692382812", + "elevation_ft": "142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Ehrhardt", + "scheduled_service": "no", + "gps_code": "51SC", + "local_code": "51SC" + }, + { + "id": "11891", + "ident": "51TA", + "type": "heliport", + "name": "Harris Methodist Southwest Helistop", + "latitude_deg": "32.65686", + "longitude_deg": "-97.421715", + "elevation_ft": "744", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "51TA", + "local_code": "51TA" + }, + { + "id": "11892", + "ident": "51TE", + "type": "small_airport", + "name": "Barstool Ranch Airport", + "latitude_deg": "32.472423", + "longitude_deg": "-96.789894", + "elevation_ft": "555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waxahachie", + "scheduled_service": "no", + "gps_code": "51TE", + "local_code": "51TE" + }, + { + "id": "11893", + "ident": "51TN", + "type": "small_airport", + "name": "Glendale Field", + "latitude_deg": "35.53310012817383", + "longitude_deg": "-86.97689819335938", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "51TN", + "local_code": "51TN" + }, + { + "id": "11894", + "ident": "51TS", + "type": "heliport", + "name": "Wilson N Jones Regional Medical Center Heliport", + "latitude_deg": "33.637178", + "longitude_deg": "-96.624248", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sherman", + "scheduled_service": "no", + "gps_code": "51TS", + "local_code": "51TS", + "keywords": "Wilson N Jones Memorial Hospital" + }, + { + "id": "343412", + "ident": "51TT", + "type": "small_airport", + "name": "Hoes Ranch Airport", + "latitude_deg": "30.149441", + "longitude_deg": "-97.734553", + "elevation_ft": "572", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "51TT", + "local_code": "51TT" + }, + { + "id": "11895", + "ident": "51TX", + "type": "small_airport", + "name": "N D Ranch Airport", + "latitude_deg": "32.53960037231445", + "longitude_deg": "-95.66829681396484", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Van", + "scheduled_service": "no", + "gps_code": "51TX", + "local_code": "51TX" + }, + { + "id": "11896", + "ident": "51VA", + "type": "small_airport", + "name": "Skyview Airport", + "latitude_deg": "38.71620178222656", + "longitude_deg": "-77.63390350341797", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Manassas", + "scheduled_service": "no", + "gps_code": "51VA", + "local_code": "51VA" + }, + { + "id": "11897", + "ident": "51WA", + "type": "small_airport", + "name": "Evergreen Sky Ranch Airport", + "latitude_deg": "47.2681999206543", + "longitude_deg": "-122.06800079345703", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Black Diamond", + "scheduled_service": "no", + "gps_code": "51WA", + "local_code": "51WA" + }, + { + "id": "11898", + "ident": "51WI", + "type": "small_airport", + "name": "Gallinger Airport", + "latitude_deg": "44.064258", + "longitude_deg": "-88.557707", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Oshkosh", + "scheduled_service": "no", + "gps_code": "51WI", + "local_code": "51WI" + }, + { + "id": "45909", + "ident": "51WT", + "type": "small_airport", + "name": "Whiterik Field", + "latitude_deg": "48.010417", + "longitude_deg": "-118.362028", + "elevation_ft": "1895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Fruitland", + "scheduled_service": "no", + "gps_code": "51WT", + "local_code": "51WT" + }, + { + "id": "11899", + "ident": "51XS", + "type": "closed", + "name": "Evergreen Helicopters Heliport", + "latitude_deg": "29.6933", + "longitude_deg": "-93.966797", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sabine Pass", + "scheduled_service": "no", + "keywords": "51XS" + }, + { + "id": "11900", + "ident": "51Z", + "type": "small_airport", + "name": "Minto Al Wright Airport", + "latitude_deg": "65.1437", + "longitude_deg": "-149.369995", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Minto", + "scheduled_service": "no", + "iata_code": "MNT", + "local_code": "51Z", + "wikipedia_link": "https://en.wikipedia.org/wiki/Minto_Airport" + }, + { + "id": "11901", + "ident": "52AK", + "type": "closed", + "name": "Basquo Airport", + "latitude_deg": "60.505512", + "longitude_deg": "-151.248608", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kenai", + "scheduled_service": "no", + "keywords": "52AK" + }, + { + "id": "11902", + "ident": "52AR", + "type": "small_airport", + "name": "Ira's Airstrip", + "latitude_deg": "35.279235", + "longitude_deg": "-92.240943", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Greenbrier", + "scheduled_service": "no", + "gps_code": "52AR", + "local_code": "52AR" + }, + { + "id": "11903", + "ident": "52AZ", + "type": "small_airport", + "name": "X Bar 1 Ranch Upper Headquarters Airport", + "latitude_deg": "35.380774", + "longitude_deg": "-113.301042", + "elevation_ft": "5585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Seligman", + "scheduled_service": "no", + "gps_code": "52AZ", + "local_code": "52AZ" + }, + { + "id": "11904", + "ident": "52B", + "type": "seaplane_base", + "name": "Greenville Seaplane Base", + "latitude_deg": "45.46120071411133", + "longitude_deg": "-69.5978012084961", + "elevation_ft": "1028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "52B", + "local_code": "52B" + }, + { + "id": "11905", + "ident": "52CA", + "type": "closed", + "name": "Lake Mathews Airport", + "latitude_deg": "33.8531", + "longitude_deg": "-117.424004", + "elevation_ft": "1385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Riverside", + "scheduled_service": "no", + "keywords": "52CA" + }, + { + "id": "11906", + "ident": "52CL", + "type": "small_airport", + "name": "Adelanto Airport", + "latitude_deg": "34.537498474121", + "longitude_deg": "-117.46099853516", + "elevation_ft": "3075", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Adelanto", + "scheduled_service": "no", + "gps_code": "52CL", + "local_code": "52CL", + "home_link": "http://www.adelantoairport.com/index.html", + "keywords": "2L9" + }, + { + "id": "11907", + "ident": "52CN", + "type": "small_airport", + "name": "Ponderosa Sky Ranch Airport", + "latitude_deg": "40.343903", + "longitude_deg": "-121.772611", + "elevation_ft": "3454", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Paynes Creek", + "scheduled_service": "no", + "gps_code": "52CN", + "local_code": "52CN" + }, + { + "id": "11908", + "ident": "52CO", + "type": "small_airport", + "name": "Mountain View Ranch Airport", + "latitude_deg": "39.10969924926758", + "longitude_deg": "-104.65399932861328", + "elevation_ft": "7500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Monument", + "scheduled_service": "no", + "gps_code": "52CO", + "local_code": "52CO" + }, + { + "id": "45343", + "ident": "52FA", + "type": "small_airport", + "name": "Bent Willies Airport", + "latitude_deg": "27.939611", + "longitude_deg": "-81.432028", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Wales", + "scheduled_service": "no", + "gps_code": "52FA", + "local_code": "52FA" + }, + { + "id": "11909", + "ident": "52FD", + "type": "heliport", + "name": "Pullum Pad Heliport", + "latitude_deg": "30.40239906311035", + "longitude_deg": "-86.8666000366211", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Navarre", + "scheduled_service": "no", + "gps_code": "52FD", + "local_code": "52FD" + }, + { + "id": "11910", + "ident": "52FL", + "type": "small_airport", + "name": "Lake Clinch Airpark", + "latitude_deg": "27.75029945373535", + "longitude_deg": "-81.55950164794922", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Frostproof", + "scheduled_service": "no", + "gps_code": "52FL", + "local_code": "52FL" + }, + { + "id": "11911", + "ident": "52GA", + "type": "heliport", + "name": "Rabbit Hole Heliport", + "latitude_deg": "33.53810119628906", + "longitude_deg": "-84.47440338134766", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "52GA", + "local_code": "52GA" + }, + { + "id": "11912", + "ident": "52I", + "type": "small_airport", + "name": "Gross Airport", + "latitude_deg": "43.846900939941406", + "longitude_deg": "-84.01139831542969", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Pinconning", + "scheduled_service": "no", + "gps_code": "52I", + "local_code": "52I" + }, + { + "id": "11913", + "ident": "52II", + "type": "heliport", + "name": "Marshall County Heliport", + "latitude_deg": "41.33890151977539", + "longitude_deg": "-86.26329803466797", + "elevation_ft": "824", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "52II", + "local_code": "52II" + }, + { + "id": "11914", + "ident": "52IL", + "type": "small_airport", + "name": "Hasselbring Airport", + "latitude_deg": "40.410301208496094", + "longitude_deg": "-88.06490325927734", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Paxton", + "scheduled_service": "no", + "gps_code": "52IL", + "local_code": "52IL" + }, + { + "id": "11915", + "ident": "52IN", + "type": "small_airport", + "name": "Higginbotham Field", + "latitude_deg": "39.341400146484375", + "longitude_deg": "-87.53140258789062", + "elevation_ft": "452", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Prairieton", + "scheduled_service": "no", + "gps_code": "52IN", + "local_code": "52IN" + }, + { + "id": "11916", + "ident": "52IS", + "type": "heliport", + "name": "Dresden Power Station Heliport", + "latitude_deg": "41.38690185546875", + "longitude_deg": "-88.26580047607422", + "elevation_ft": "509", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Minooka", + "scheduled_service": "no", + "gps_code": "52IS", + "local_code": "52IS" + }, + { + "id": "11917", + "ident": "52K", + "type": "small_airport", + "name": "Charles E Grutzmacher Municipal Airport", + "latitude_deg": "39.4989013671875", + "longitude_deg": "-96.17169952392578", + "elevation_ft": "1183", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Onaga", + "scheduled_service": "no", + "gps_code": "52K", + "local_code": "52K" + }, + { + "id": "11918", + "ident": "52KS", + "type": "small_airport", + "name": "Bland Airport", + "latitude_deg": "38.902801513671875", + "longitude_deg": "-95.1322021484375", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Eudora", + "scheduled_service": "no", + "gps_code": "52KS", + "local_code": "52KS" + }, + { + "id": "11919", + "ident": "52KY", + "type": "small_airport", + "name": "Air Castle Airport", + "latitude_deg": "38.118099212646484", + "longitude_deg": "-84.30239868164062", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "52KY", + "local_code": "52KY" + }, + { + "id": "11920", + "ident": "52LA", + "type": "closed", + "name": "One Shell Square Emergency Heliport", + "latitude_deg": "29.950199", + "longitude_deg": "-90.0709", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no", + "keywords": "52LA" + }, + { + "id": "337203", + "ident": "52MD", + "type": "heliport", + "name": "Upper Chesapeake Health-Aberdeen Heliport", + "latitude_deg": "39.519897", + "longitude_deg": "-76.176611", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Aberdeen", + "scheduled_service": "no", + "gps_code": "52MD", + "local_code": "52MD" + }, + { + "id": "347633", + "ident": "52MI", + "type": "heliport", + "name": "Six C's Heliport", + "latitude_deg": "42.721656", + "longitude_deg": "-83.181586", + "elevation_ft": "1013", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Oakland Township", + "scheduled_service": "no", + "gps_code": "52MI", + "local_code": "52MI" + }, + { + "id": "11921", + "ident": "52MN", + "type": "small_airport", + "name": "Anderson Field", + "latitude_deg": "48.643001556396484", + "longitude_deg": "-96.80729675292969", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Kennedy", + "scheduled_service": "no", + "gps_code": "52MN", + "local_code": "52MN" + }, + { + "id": "11922", + "ident": "52MO", + "type": "small_airport", + "name": "Pleasant View Ultralightport", + "latitude_deg": "37.96229934692383", + "longitude_deg": "-90.14430236816406", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Zell", + "scheduled_service": "no", + "gps_code": "52MO", + "local_code": "52MO" + }, + { + "id": "353830", + "ident": "52MY", + "type": "heliport", + "name": "M Health Fairview Lakes Heliport", + "latitude_deg": "45.320787", + "longitude_deg": "-93.00092", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Wyoming", + "scheduled_service": "no", + "gps_code": "52MY", + "local_code": "52MY" + }, + { + "id": "11923", + "ident": "52NC", + "type": "small_airport", + "name": "Epley Airport", + "latitude_deg": "34.844600677490234", + "longitude_deg": "-77.2667007446289", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "52NC", + "local_code": "52NC" + }, + { + "id": "11924", + "ident": "52ND", + "type": "small_airport", + "name": "Richtsmeier Airport", + "latitude_deg": "47.18939971923828", + "longitude_deg": "-97.28949737548828", + "elevation_ft": "1047", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Hunter", + "scheduled_service": "no", + "gps_code": "52ND", + "local_code": "52ND" + }, + { + "id": "11925", + "ident": "52NE", + "type": "small_airport", + "name": "Svitak Airport", + "latitude_deg": "42.04499816894531", + "longitude_deg": "-103.96600341796875", + "elevation_ft": "4183", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Morrill", + "scheduled_service": "no", + "gps_code": "52NE", + "local_code": "52NE" + }, + { + "id": "11926", + "ident": "52NJ", + "type": "heliport", + "name": "Exxon Research & Engineering Co. Heliport", + "latitude_deg": "40.636833", + "longitude_deg": "-74.869111", + "elevation_ft": "381", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Annandale", + "scheduled_service": "no", + "gps_code": "52NJ", + "local_code": "52NJ" + }, + { + "id": "352244", + "ident": "52NK", + "type": "small_airport", + "name": "Collins Field", + "latitude_deg": "43.224244", + "longitude_deg": "-75.675528", + "elevation_ft": "381", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Sylvan Beach", + "scheduled_service": "yes", + "gps_code": "52NK", + "local_code": "52NK" + }, + { + "id": "11927", + "ident": "52NM", + "type": "small_airport", + "name": "Timberon Airport", + "latitude_deg": "32.6339", + "longitude_deg": "-105.687361", + "elevation_ft": "6940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Alamogordo", + "scheduled_service": "no", + "local_code": "E02", + "home_link": "http://www.timberon.org/community/timberon-airport-52nm/", + "keywords": "52NM, 52E" + }, + { + "id": "11928", + "ident": "52NY", + "type": "small_airport", + "name": "Bedson's Land Base Airport", + "latitude_deg": "42.930599212646484", + "longitude_deg": "-77.64420318603516", + "elevation_ft": "804", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Honeoye Falls", + "scheduled_service": "no", + "gps_code": "52NY", + "local_code": "52NY" + }, + { + "id": "11929", + "ident": "52OH", + "type": "heliport", + "name": "Coshocton Regional Medical Center Heliport", + "latitude_deg": "40.271131", + "longitude_deg": "-81.84852", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Coshocton", + "scheduled_service": "no", + "gps_code": "52OH", + "local_code": "52OH", + "keywords": "Coshocton County Memorial Hospital" + }, + { + "id": "11930", + "ident": "52OI", + "type": "heliport", + "name": "Timken Mercy Medical Center Heliport", + "latitude_deg": "40.812801361083984", + "longitude_deg": "-81.39620208740234", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Canton", + "scheduled_service": "no", + "gps_code": "52OI", + "local_code": "52OI" + }, + { + "id": "11931", + "ident": "52OK", + "type": "heliport", + "name": "Tulsa Security Heliport", + "latitude_deg": "36.14229965209961", + "longitude_deg": "-95.95860290527344", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tulsa", + "scheduled_service": "no", + "gps_code": "52OK", + "local_code": "52OK" + }, + { + "id": "11932", + "ident": "52OR", + "type": "small_airport", + "name": "Chinook Ultralight Airpark", + "latitude_deg": "45.748233", + "longitude_deg": "-122.851304", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Scappoose", + "scheduled_service": "no", + "gps_code": "52OR", + "local_code": "52OR" + }, + { + "id": "11933", + "ident": "52PA", + "type": "small_airport", + "name": "Wildcat Airport", + "latitude_deg": "40.763099670410156", + "longitude_deg": "-76.00469970703125", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tamaqua", + "scheduled_service": "no", + "gps_code": "52PA", + "local_code": "52PA" + }, + { + "id": "11934", + "ident": "52PN", + "type": "heliport", + "name": "Greencastle Usar Center Heliport", + "latitude_deg": "39.750099182128906", + "longitude_deg": "-77.69969940185547", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Greencastle", + "scheduled_service": "no", + "gps_code": "52PN", + "local_code": "52PN" + }, + { + "id": "11935", + "ident": "52S", + "type": "small_airport", + "name": "St Ignatius Airport", + "latitude_deg": "47.325007", + "longitude_deg": "-114.08098", + "elevation_ft": "3006", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "St Ignatius", + "scheduled_service": "no", + "gps_code": "K52S", + "local_code": "52S" + }, + { + "id": "11936", + "ident": "52TA", + "type": "small_airport", + "name": "Red Wing Airport", + "latitude_deg": "33.4640007019043", + "longitude_deg": "-96.35030364990234", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Trenton", + "scheduled_service": "no", + "gps_code": "52TA", + "local_code": "52TA" + }, + { + "id": "11937", + "ident": "52TE", + "type": "small_airport", + "name": "Robinson Ranch Airport", + "latitude_deg": "30.52596", + "longitude_deg": "-99.52033", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Junction", + "scheduled_service": "no", + "gps_code": "52TE", + "local_code": "52TE" + }, + { + "id": "11938", + "ident": "52TS", + "type": "small_airport", + "name": "Fall Creek Air Ranch STOLport", + "latitude_deg": "30.418500900268555", + "longitude_deg": "-98.16280364990234", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Spicewood", + "scheduled_service": "no", + "gps_code": "52TS", + "local_code": "52TS" + }, + { + "id": "11939", + "ident": "52TX", + "type": "heliport", + "name": "Hercules Marine Services Corp Heliport", + "latitude_deg": "28.966400146484375", + "longitude_deg": "-95.29060363769531", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Freeport", + "scheduled_service": "no", + "gps_code": "52TX", + "local_code": "52TX" + }, + { + "id": "11940", + "ident": "52U", + "type": "small_airport", + "name": "Weatherby US Forest Service Airport", + "latitude_deg": "43.8249015808", + "longitude_deg": "-115.332000732", + "elevation_ft": "4494", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "52U", + "local_code": "52U" + }, + { + "id": "11941", + "ident": "52VA", + "type": "heliport", + "name": "Ibm Building 250 Heliport", + "latitude_deg": "38.75979995727539", + "longitude_deg": "-77.50640106201172", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Manassas", + "scheduled_service": "no", + "gps_code": "52VA", + "local_code": "52VA" + }, + { + "id": "11942", + "ident": "52WA", + "type": "small_airport", + "name": "Honn Farm Airport", + "latitude_deg": "46.932098388671875", + "longitude_deg": "-117.97599792480469", + "elevation_ft": "1620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Benge", + "scheduled_service": "no", + "gps_code": "52WA", + "local_code": "52WA" + }, + { + "id": "45931", + "ident": "52WI", + "type": "small_airport", + "name": "John's Field", + "latitude_deg": "45.159644", + "longitude_deg": "-90.057389", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Athens", + "scheduled_service": "no", + "gps_code": "52WI", + "local_code": "52WI" + }, + { + "id": "345770", + "ident": "52WT", + "type": "small_airport", + "name": "Galt's Gulch Airport", + "latitude_deg": "46.022811", + "longitude_deg": "-118.543843", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Touchet", + "scheduled_service": "no", + "gps_code": "52WT", + "local_code": "52WT" + }, + { + "id": "346931", + "ident": "52XA", + "type": "small_airport", + "name": "Klinkerman Airport", + "latitude_deg": "34.048544", + "longitude_deg": "-98.426994", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wichita Falls", + "scheduled_service": "no", + "gps_code": "52XA", + "local_code": "52XA" + }, + { + "id": "11943", + "ident": "52XS", + "type": "heliport", + "name": "Clear Lake Regional Medical Center Heliport", + "latitude_deg": "29.541409", + "longitude_deg": "-95.128648", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Webster", + "scheduled_service": "no", + "gps_code": "52XS", + "local_code": "52XS" + }, + { + "id": "11944", + "ident": "52Y", + "type": "small_airport", + "name": "Remer Municipal Airport", + "latitude_deg": "47.06800079345703", + "longitude_deg": "-93.91410064697266", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Remer", + "scheduled_service": "no", + "gps_code": "52Y", + "local_code": "52Y" + }, + { + "id": "11945", + "ident": "52Z", + "type": "seaplane_base", + "name": "Summit Lake Seaplane Base", + "latitude_deg": "60.6411018371582", + "longitude_deg": "-149.4969940185547", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Moose Pass", + "scheduled_service": "no", + "gps_code": "52Z", + "local_code": "52Z" + }, + { + "id": "11946", + "ident": "53AK", + "type": "small_airport", + "name": "Lakewood Airstrip", + "latitude_deg": "60.533749", + "longitude_deg": "-150.856597", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no", + "gps_code": "53AK", + "local_code": "53AK" + }, + { + "id": "323198", + "ident": "53AR", + "type": "heliport", + "name": "Mercy Hospital Northwest Arkansas Heliport", + "latitude_deg": "36.308447", + "longitude_deg": "-94.184225", + "elevation_ft": "1276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Rogers", + "scheduled_service": "no", + "gps_code": "53AR", + "local_code": "53AR" + }, + { + "id": "11947", + "ident": "53AZ", + "type": "small_airport", + "name": "Shonto Airport", + "latitude_deg": "36.58810043334961", + "longitude_deg": "-110.65499877929688", + "elevation_ft": "6449", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Shonto", + "scheduled_service": "no", + "gps_code": "53AZ", + "local_code": "53AZ" + }, + { + "id": "11948", + "ident": "53CA", + "type": "heliport", + "name": "Hummingbird Nest Heliport", + "latitude_deg": "34.281898498535156", + "longitude_deg": "-118.65499877929688", + "elevation_ft": "1411", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Simi Valley", + "scheduled_service": "no", + "gps_code": "53CA", + "local_code": "53CA" + }, + { + "id": "11949", + "ident": "53CL", + "type": "small_airport", + "name": "Lofty Redwoods Airport", + "latitude_deg": "38.85960006713867", + "longitude_deg": "-123.59100341796875", + "elevation_ft": "1317", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Anchor Bay", + "scheduled_service": "no", + "gps_code": "53CL", + "local_code": "53CL" + }, + { + "id": "11950", + "ident": "53CN", + "type": "small_airport", + "name": "Thayer Aviation Airport", + "latitude_deg": "39.074902", + "longitude_deg": "-121.917999", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Grimes", + "scheduled_service": "no", + "gps_code": "53CN", + "local_code": "53CN", + "keywords": "00Q" + }, + { + "id": "11951", + "ident": "53CO", + "type": "small_airport", + "name": "Rons Field", + "latitude_deg": "37.5531005859375", + "longitude_deg": "-102.39199829101562", + "elevation_ft": "4096", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Two Buttes", + "scheduled_service": "no", + "gps_code": "53CO", + "local_code": "53CO" + }, + { + "id": "338704", + "ident": "53FA", + "type": "heliport", + "name": "Pasco Sheriff's Office Heliport", + "latitude_deg": "28.308027", + "longitude_deg": "-82.48688", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Land o ' Lakes", + "scheduled_service": "no", + "gps_code": "53FA", + "local_code": "53FA" + }, + { + "id": "11952", + "ident": "53FD", + "type": "small_airport", + "name": "Charlotte's Field", + "latitude_deg": "30.477500915527344", + "longitude_deg": "-84.03469848632812", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tallahassee", + "scheduled_service": "no", + "gps_code": "53FD", + "local_code": "53FD" + }, + { + "id": "11953", + "ident": "53FL", + "type": "heliport", + "name": "University of Florida Heliport", + "latitude_deg": "29.644100189208984", + "longitude_deg": "-82.35320281982422", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Gainesville", + "scheduled_service": "no", + "gps_code": "53FL", + "local_code": "53FL" + }, + { + "id": "11954", + "ident": "53GA", + "type": "small_airport", + "name": "Dawson Field", + "latitude_deg": "34.167801", + "longitude_deg": "-85.258598", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Rome", + "scheduled_service": "no", + "gps_code": "53GA", + "local_code": "53GA" + }, + { + "id": "11955", + "ident": "53IA", + "type": "small_airport", + "name": "Tama Airport", + "latitude_deg": "41.95000076293945", + "longitude_deg": "-92.57659912109375", + "elevation_ft": "813", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Tama", + "scheduled_service": "no", + "gps_code": "53IA", + "local_code": "53IA" + }, + { + "id": "11956", + "ident": "53II", + "type": "small_airport", + "name": "Steinman Airport", + "latitude_deg": "41.073101", + "longitude_deg": "-84.840797", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Woodburn", + "scheduled_service": "no", + "gps_code": "53II", + "local_code": "53II" + }, + { + "id": "11957", + "ident": "53IL", + "type": "closed", + "name": "Clapper Airport", + "latitude_deg": "40.152802", + "longitude_deg": "-88.516701", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mansfield", + "scheduled_service": "no", + "keywords": "53IL" + }, + { + "id": "11958", + "ident": "53IN", + "type": "small_airport", + "name": "Hartman Farms Field", + "latitude_deg": "40.521400451660156", + "longitude_deg": "-86.21499633789062", + "elevation_ft": "818", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Kokomo", + "scheduled_service": "no", + "gps_code": "53IN", + "local_code": "53IN" + }, + { + "id": "11959", + "ident": "53IS", + "type": "heliport", + "name": "Franklin Hospital Heliport", + "latitude_deg": "38.0093994140625", + "longitude_deg": "-88.9186019897461", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Benton", + "scheduled_service": "no", + "gps_code": "53IS", + "local_code": "53IS" + }, + { + "id": "11960", + "ident": "53K", + "type": "small_airport", + "name": "Osage City Municipal Airport", + "latitude_deg": "38.633534", + "longitude_deg": "-95.801848", + "elevation_ft": "1105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Osage City", + "scheduled_service": "no", + "gps_code": "K53K", + "local_code": "53K" + }, + { + "id": "11961", + "ident": "53KS", + "type": "small_airport", + "name": "Weaver Ranch Airport", + "latitude_deg": "38.108299255371094", + "longitude_deg": "-97.43280029296875", + "elevation_ft": "1460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Hesston", + "scheduled_service": "no", + "gps_code": "53KS", + "local_code": "53KS" + }, + { + "id": "11962", + "ident": "53KY", + "type": "closed", + "name": "Short Airport", + "latitude_deg": "37.272301", + "longitude_deg": "-84.557198", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Eubank", + "scheduled_service": "no", + "keywords": "53KY" + }, + { + "id": "11963", + "ident": "53LA", + "type": "seaplane_base", + "name": "Shell Central Facilities Seaplane Base", + "latitude_deg": "29.057199478149414", + "longitude_deg": "-89.30280303955078", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no", + "gps_code": "53LA", + "local_code": "53LA" + }, + { + "id": "11964", + "ident": "53M", + "type": "small_airport", + "name": "Silver City Airpark", + "latitude_deg": "45.132301", + "longitude_deg": "-83.447998", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Alpena", + "scheduled_service": "no", + "keywords": "53M, MI55" + }, + { + "id": "11965", + "ident": "53MI", + "type": "heliport", + "name": "Huron Valley Sinai Hospital Heliport", + "latitude_deg": "42.59389877319336", + "longitude_deg": "-83.49919891357422", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Commerce", + "scheduled_service": "no", + "gps_code": "53MI", + "local_code": "53MI" + }, + { + "id": "11966", + "ident": "53MN", + "type": "small_airport", + "name": "Radloff's Cedar View Farms Airport", + "latitude_deg": "43.5458984375", + "longitude_deg": "-93.02660369873047", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Lyle", + "scheduled_service": "no", + "gps_code": "53MN", + "local_code": "53MN" + }, + { + "id": "11967", + "ident": "53MO", + "type": "heliport", + "name": "Help Heliport", + "latitude_deg": "37.152000427246094", + "longitude_deg": "-90.0708999633789", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Zalma", + "scheduled_service": "no", + "gps_code": "53MO", + "local_code": "53MO" + }, + { + "id": "11968", + "ident": "53NC", + "type": "small_airport", + "name": "Mynatt Field", + "latitude_deg": "34.37810134887695", + "longitude_deg": "-79.08059692382812", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Lumberton", + "scheduled_service": "no", + "gps_code": "53NC", + "local_code": "53NC" + }, + { + "id": "11969", + "ident": "53ND", + "type": "small_airport", + "name": "R. Leep Strip", + "latitude_deg": "47.548099517822266", + "longitude_deg": "-99.94709777832031", + "elevation_ft": "1894", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Hurdsfield", + "scheduled_service": "no", + "gps_code": "53ND", + "local_code": "53ND" + }, + { + "id": "11970", + "ident": "53NE", + "type": "small_airport", + "name": "Starns Brothers Airport", + "latitude_deg": "41.08140182495117", + "longitude_deg": "-96.40339660644531", + "elevation_ft": "1090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "53NE", + "local_code": "53NE" + }, + { + "id": "11971", + "ident": "53NJ", + "type": "heliport", + "name": "Germania Heliport", + "latitude_deg": "39.49039840698242", + "longitude_deg": "-74.60679626464844", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Egg Harbor City", + "scheduled_service": "no", + "gps_code": "53NJ", + "local_code": "53NJ" + }, + { + "id": "332479", + "ident": "53NV", + "type": "heliport", + "name": "Battle Mountain EMS Heliport", + "latitude_deg": "40.641031", + "longitude_deg": "-116.940891", + "elevation_ft": "4515", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Battle Mountain", + "scheduled_service": "no", + "gps_code": "53NV", + "local_code": "53NV" + }, + { + "id": "11972", + "ident": "53NY", + "type": "small_airport", + "name": "Smiths Land Base Airport", + "latitude_deg": "42.95840072631836", + "longitude_deg": "-77.61579895019531", + "elevation_ft": "627", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Honeoye Falls", + "scheduled_service": "no", + "gps_code": "53NY", + "local_code": "53NY" + }, + { + "id": "11973", + "ident": "53OH", + "type": "small_airport", + "name": "Charloe Airport", + "latitude_deg": "41.134498596191406", + "longitude_deg": "-84.45079803466797", + "elevation_ft": "721", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Paulding", + "scheduled_service": "no", + "gps_code": "53OH", + "local_code": "53OH" + }, + { + "id": "11974", + "ident": "53OI", + "type": "heliport", + "name": "Metro Health Medical Center Heliport", + "latitude_deg": "41.460899353027344", + "longitude_deg": "-81.69760131835938", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "53OI", + "local_code": "53OI" + }, + { + "id": "11975", + "ident": "53OK", + "type": "small_airport", + "name": "Thompson Private Airport", + "latitude_deg": "35.24284", + "longitude_deg": "-97.76384", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tuttle", + "scheduled_service": "no", + "gps_code": "53OK", + "local_code": "53OK" + }, + { + "id": "11976", + "ident": "53OR", + "type": "heliport", + "name": "Providence Saint Vincent Medical Center Heliport", + "latitude_deg": "45.510905", + "longitude_deg": "-122.774102", + "elevation_ft": "478", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Beaverton", + "scheduled_service": "no", + "gps_code": "53OR", + "local_code": "53OR", + "keywords": "St Vincent Hospital Heliport" + }, + { + "id": "11977", + "ident": "53PA", + "type": "heliport", + "name": "Ritz 2 Heliport", + "latitude_deg": "40.92060089111328", + "longitude_deg": "-76.99140167236328", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mifflinburg", + "scheduled_service": "no", + "gps_code": "53PA", + "local_code": "53PA" + }, + { + "id": "11978", + "ident": "53PN", + "type": "heliport", + "name": "S W Jack Heliport", + "latitude_deg": "40.63010025024414", + "longitude_deg": "-79.11360168457031", + "elevation_ft": "1360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Indiana", + "scheduled_service": "no", + "gps_code": "53PN", + "local_code": "53PN" + }, + { + "id": "11979", + "ident": "53TA", + "type": "closed", + "name": "Shivers Private Airport", + "latitude_deg": "34.154301", + "longitude_deg": "-99.264198", + "elevation_ft": "1215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Vernon", + "scheduled_service": "no", + "keywords": "53TA" + }, + { + "id": "11980", + "ident": "53TE", + "type": "heliport", + "name": "Christus Santa Rosa Westover Hills Heliport", + "latitude_deg": "29.467591", + "longitude_deg": "-98.69533", + "elevation_ft": "906", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "53TE", + "local_code": "53TE" + }, + { + "id": "11981", + "ident": "53TS", + "type": "small_airport", + "name": "Bridges Field", + "latitude_deg": "33.48400115966797", + "longitude_deg": "-96.83920288085938", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tioga", + "scheduled_service": "no", + "gps_code": "53TS", + "local_code": "53TS" + }, + { + "id": "11982", + "ident": "53TX", + "type": "closed", + "name": "Cannon Field", + "latitude_deg": "29.216101", + "longitude_deg": "-98.5495", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Somerset", + "scheduled_service": "no", + "keywords": "53TX" + }, + { + "id": "11983", + "ident": "53U", + "type": "small_airport", + "name": "Ferndale Airfield", + "latitude_deg": "48.061045", + "longitude_deg": "-114.001377", + "elevation_ft": "3060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Bigfork", + "scheduled_service": "no", + "local_code": "53U" + }, + { + "id": "11984", + "ident": "53VA", + "type": "small_airport", + "name": "Horse Feathers Airport", + "latitude_deg": "38.63399887084961", + "longitude_deg": "-77.75749969482422", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Midland", + "scheduled_service": "no", + "gps_code": "53VA", + "local_code": "53VA" + }, + { + "id": "316955", + "ident": "53VG", + "type": "small_airport", + "name": "The Salmon Farm Airport (Pvt)", + "latitude_deg": "37.6138889", + "longitude_deg": "-75.8011111", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Painter", + "scheduled_service": "no", + "gps_code": "53VG", + "local_code": "53VG", + "home_link": "http://thesalmonfarm.org/blog/p/2704" + }, + { + "id": "11985", + "ident": "53W", + "type": "small_airport", + "name": "Woodruff Lake Airport", + "latitude_deg": "43.554500579833984", + "longitude_deg": "-84.97889709472656", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Winn", + "scheduled_service": "no", + "gps_code": "53W", + "local_code": "53W" + }, + { + "id": "11986", + "ident": "53WA", + "type": "small_airport", + "name": "Columbia Agricultural Airport", + "latitude_deg": "46.29240036010742", + "longitude_deg": "-118.98300170898438", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Pasco", + "scheduled_service": "no", + "gps_code": "53WA", + "local_code": "53WA" + }, + { + "id": "11987", + "ident": "53WI", + "type": "closed", + "name": "Kelly Airport", + "latitude_deg": "42.698101", + "longitude_deg": "-89.786796", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Argyle", + "scheduled_service": "no", + "keywords": "53WI" + }, + { + "id": "45970", + "ident": "53WT", + "type": "heliport", + "name": "Forks Community Hospital Heliport", + "latitude_deg": "47.946442", + "longitude_deg": "-124.393664", + "elevation_ft": "290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Forks", + "scheduled_service": "no", + "gps_code": "53WT", + "local_code": "53WT" + }, + { + "id": "11988", + "ident": "53XS", + "type": "small_airport", + "name": "Kornegay Private Airport", + "latitude_deg": "26.148399353027344", + "longitude_deg": "-97.5916976928711", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Benito", + "scheduled_service": "no", + "gps_code": "53XS", + "local_code": "53XS" + }, + { + "id": "11989", + "ident": "54AK", + "type": "seaplane_base", + "name": "Kalmbach Lake Seaplane Base", + "latitude_deg": "61.60710144042969", + "longitude_deg": "-149.57400512695312", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "54AK", + "local_code": "54AK" + }, + { + "id": "347066", + "ident": "54AL", + "type": "small_airport", + "name": "Belforest Field", + "latitude_deg": "30.597517", + "longitude_deg": "-87.821419", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Daphne", + "scheduled_service": "no", + "gps_code": "54AL", + "local_code": "54AL" + }, + { + "id": "45303", + "ident": "54AR", + "type": "small_airport", + "name": "Winfield Airpark", + "latitude_deg": "35.392856", + "longitude_deg": "-93.758706", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Altus", + "scheduled_service": "no", + "gps_code": "54AR", + "local_code": "54AR" + }, + { + "id": "11990", + "ident": "54AZ", + "type": "small_airport", + "name": "Somerton Airport", + "latitude_deg": "32.60247", + "longitude_deg": "-114.667482", + "elevation_ft": "177", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Somerton", + "scheduled_service": "no", + "gps_code": "54AZ", + "local_code": "54AZ" + }, + { + "id": "11991", + "ident": "54CA", + "type": "closed", + "name": "Paradise Valley Hospital Heliport", + "latitude_deg": "32.683899", + "longitude_deg": "-117.082001", + "elevation_ft": "116", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "National City", + "scheduled_service": "no", + "keywords": "54CA" + }, + { + "id": "11992", + "ident": "54CL", + "type": "small_airport", + "name": "Lake Riverside Estates Airport", + "latitude_deg": "33.52090072631836", + "longitude_deg": "-116.7969970703125", + "elevation_ft": "3410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Anza", + "scheduled_service": "no", + "gps_code": "54CL", + "local_code": "54CL" + }, + { + "id": "11993", + "ident": "54CN", + "type": "small_airport", + "name": "Akin Airport", + "latitude_deg": "38.754101", + "longitude_deg": "-120.899002", + "elevation_ft": "1595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Placerville", + "scheduled_service": "no", + "gps_code": "54CN", + "local_code": "54CN", + "keywords": "60Q" + }, + { + "id": "11994", + "ident": "54CO", + "type": "heliport", + "name": "The Memorial Hospital Heliport", + "latitude_deg": "40.519239", + "longitude_deg": "-107.579708", + "elevation_ft": "6316", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Craig", + "scheduled_service": "no", + "gps_code": "54CO", + "local_code": "54CO" + }, + { + "id": "11995", + "ident": "54FD", + "type": "heliport", + "name": "Bayflite One Satellite Base Heliport", + "latitude_deg": "28.188600540161133", + "longitude_deg": "-82.62670135498047", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Odessa", + "scheduled_service": "no", + "gps_code": "54FD", + "local_code": "54FD" + }, + { + "id": "11996", + "ident": "54FL", + "type": "heliport", + "name": "Teco Plaza Heliport", + "latitude_deg": "27.94969940185547", + "longitude_deg": "-82.46009826660156", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tampa", + "scheduled_service": "no", + "gps_code": "54FL", + "local_code": "54FL" + }, + { + "id": "11997", + "ident": "54GA", + "type": "small_airport", + "name": "Deerfield Landing Airport", + "latitude_deg": "33.464298248291016", + "longitude_deg": "-84.26830291748047", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Hampton", + "scheduled_service": "no", + "gps_code": "54GA", + "local_code": "54GA" + }, + { + "id": "11998", + "ident": "54II", + "type": "small_airport", + "name": "Caldwell Field", + "latitude_deg": "40.6245002746582", + "longitude_deg": "-86.1552963256836", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bunker Hill", + "scheduled_service": "no", + "gps_code": "54II", + "local_code": "54II" + }, + { + "id": "11999", + "ident": "54IL", + "type": "small_airport", + "name": "Rothrock Airport", + "latitude_deg": "41.126271", + "longitude_deg": "-88.801848", + "elevation_ft": "653", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Streator", + "scheduled_service": "no", + "gps_code": "54IL", + "local_code": "54IL" + }, + { + "id": "12000", + "ident": "54IN", + "type": "heliport", + "name": "Methodist Hospital Nr 2 Heliport", + "latitude_deg": "39.788700103759766", + "longitude_deg": "-86.16190338134766", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "54IN", + "local_code": "54IN" + }, + { + "id": "12001", + "ident": "54IS", + "type": "small_airport", + "name": "Zea Mays Field", + "latitude_deg": "41.52669906616211", + "longitude_deg": "-89.41809844970703", + "elevation_ft": "766", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Ohio", + "scheduled_service": "no", + "gps_code": "54IS", + "local_code": "54IS" + }, + { + "id": "12002", + "ident": "54KS", + "type": "small_airport", + "name": "Michael Airport", + "latitude_deg": "38.802799224853516", + "longitude_deg": "-95.11270141601562", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wellsville", + "scheduled_service": "no", + "gps_code": "54KS", + "local_code": "54KS" + }, + { + "id": "12003", + "ident": "54KY", + "type": "small_airport", + "name": "Rudenberg Field", + "latitude_deg": "36.731098", + "longitude_deg": "-88.2472", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Murray", + "scheduled_service": "no", + "gps_code": "54KY", + "local_code": "54KY", + "keywords": "Turner Field" + }, + { + "id": "12004", + "ident": "54L", + "type": "closed", + "name": "Terminal Annex Heliport", + "latitude_deg": "34.058102", + "longitude_deg": "-118.236", + "elevation_ft": "355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "local_code": "54L" + }, + { + "id": "12005", + "ident": "54LA", + "type": "closed", + "name": "Triangle J Airport", + "latitude_deg": "30.5627", + "longitude_deg": "-91.038399", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no", + "keywords": "54LA" + }, + { + "id": "12006", + "ident": "54LL", + "type": "heliport", + "name": "Memorial Medical Center - Springfield Heliport", + "latitude_deg": "39.8097991943", + "longitude_deg": "-89.65509796139999", + "elevation_ft": "688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "54LL", + "local_code": "54LL" + }, + { + "id": "12007", + "ident": "54M", + "type": "small_airport", + "name": "Wolf River Airport", + "latitude_deg": "35.05400085449219", + "longitude_deg": "-89.58000183105469", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Rossville", + "scheduled_service": "no", + "gps_code": "54M", + "local_code": "54M" + }, + { + "id": "12008", + "ident": "54ME", + "type": "small_airport", + "name": "Cliff Dow Airport", + "latitude_deg": "43.949444", + "longitude_deg": "-70.320278", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "New Gloucester", + "scheduled_service": "no", + "gps_code": "54ME", + "local_code": "54ME" + }, + { + "id": "12009", + "ident": "54MI", + "type": "small_airport", + "name": "Pingston Aeroworks Airport", + "latitude_deg": "42.810298919677734", + "longitude_deg": "-84.08309936523438", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Bryon", + "scheduled_service": "no", + "gps_code": "54MI", + "local_code": "54MI" + }, + { + "id": "12010", + "ident": "54MN", + "type": "closed", + "name": "Sell's Flying Field", + "latitude_deg": "44.879101", + "longitude_deg": "-93.885498", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Mayer", + "scheduled_service": "no", + "keywords": "54MN" + }, + { + "id": "12011", + "ident": "54MO", + "type": "closed", + "name": "Ozark's Flying Patch Airport", + "latitude_deg": "37.001401", + "longitude_deg": "-92.940497", + "elevation_ft": "1530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Sparta", + "scheduled_service": "no", + "keywords": "54MO" + }, + { + "id": "347896", + "ident": "54MS", + "type": "heliport", + "name": "Tufton Spring Farm Heliport", + "latitude_deg": "34.959842", + "longitude_deg": "-89.245629", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Michigan City", + "scheduled_service": "no", + "gps_code": "54MS", + "local_code": "54MS" + }, + { + "id": "354116", + "ident": "54MU", + "type": "small_airport", + "name": "Brown Field", + "latitude_deg": "40.300433", + "longitude_deg": "-95.112169", + "elevation_ft": "1004", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Skidmore", + "scheduled_service": "no", + "gps_code": "54MU", + "local_code": "54MU" + }, + { + "id": "12012", + "ident": "54NC", + "type": "small_airport", + "name": "Dillard Airport", + "latitude_deg": "36.23939895629883", + "longitude_deg": "-76.41719818115234", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Winfall", + "scheduled_service": "no", + "gps_code": "54NC", + "local_code": "54NC" + }, + { + "id": "12013", + "ident": "54NH", + "type": "heliport", + "name": "Flying Ridge Heliport", + "latitude_deg": "43.691881", + "longitude_deg": "-71.490959", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Center Harbor", + "scheduled_service": "no", + "gps_code": "54NH", + "local_code": "54NH" + }, + { + "id": "12014", + "ident": "54NJ", + "type": "seaplane_base", + "name": "Highlands Seaplane Base", + "latitude_deg": "40.41680145263672", + "longitude_deg": "-73.99960327148438", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Highlands", + "scheduled_service": "no", + "gps_code": "54NJ", + "local_code": "54NJ" + }, + { + "id": "12015", + "ident": "54NY", + "type": "small_airport", + "name": "Erb Acres Airport", + "latitude_deg": "42.355098724365234", + "longitude_deg": "-78.0353012084961", + "elevation_ft": "1940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Angelica", + "scheduled_service": "no", + "gps_code": "54NY", + "local_code": "54NY" + }, + { + "id": "12016", + "ident": "54OH", + "type": "small_airport", + "name": "Buehler Airport", + "latitude_deg": "41.1234016418457", + "longitude_deg": "-84.6176986694336", + "elevation_ft": "728", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Paulding", + "scheduled_service": "no", + "gps_code": "54OH", + "local_code": "54OH" + }, + { + "id": "12017", + "ident": "54OI", + "type": "heliport", + "name": "Community Hospital Heliport", + "latitude_deg": "40.48030090332031", + "longitude_deg": "-83.63849639892578", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Coldwater", + "scheduled_service": "no", + "gps_code": "54OI", + "local_code": "54OI" + }, + { + "id": "12018", + "ident": "54OK", + "type": "small_airport", + "name": "Ambassador Ultralightport", + "latitude_deg": "35.86949920654297", + "longitude_deg": "-96.03500366210938", + "elevation_ft": "687", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Mounds", + "scheduled_service": "no", + "gps_code": "54OK", + "local_code": "54OK" + }, + { + "id": "12019", + "ident": "54OR", + "type": "heliport", + "name": "St Charles Medical Center Heliport", + "latitude_deg": "44.067100524902344", + "longitude_deg": "-121.26899719238281", + "elevation_ft": "3590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Bend", + "scheduled_service": "no", + "gps_code": "54OR", + "local_code": "54OR" + }, + { + "id": "12020", + "ident": "54PA", + "type": "heliport", + "name": "Pine Bottom Heliport", + "latitude_deg": "40.23619842529297", + "longitude_deg": "-78.3052978515625", + "elevation_ft": "1504", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Martinsburg", + "scheduled_service": "no", + "gps_code": "54PA", + "local_code": "54PA" + }, + { + "id": "12021", + "ident": "54PN", + "type": "heliport", + "name": "Forbes Regional Health Center Heliport", + "latitude_deg": "40.42729949951172", + "longitude_deg": "-79.74749755859375", + "elevation_ft": "1199", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Monroeville", + "scheduled_service": "no", + "gps_code": "54PN", + "local_code": "54PN" + }, + { + "id": "12022", + "ident": "54TA", + "type": "small_airport", + "name": "George P Shanks Airport", + "latitude_deg": "32.29970169067383", + "longitude_deg": "-96.87329864501953", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waxahachie", + "scheduled_service": "no", + "gps_code": "54TA", + "local_code": "54TA" + }, + { + "id": "12023", + "ident": "54TE", + "type": "closed", + "name": "Camelot Airport", + "latitude_deg": "30.5152", + "longitude_deg": "-97.266899", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Thrall", + "scheduled_service": "no", + "keywords": "54TE" + }, + { + "id": "12024", + "ident": "54TS", + "type": "small_airport", + "name": "J Bar WC Ranch Airport", + "latitude_deg": "32.811199", + "longitude_deg": "-99.851799", + "elevation_ft": "1235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Anson", + "scheduled_service": "no", + "gps_code": "54TS", + "local_code": "54TS" + }, + { + "id": "12025", + "ident": "54TX", + "type": "small_airport", + "name": "Flying H Ranch Airport", + "latitude_deg": "30.677400588989258", + "longitude_deg": "-98.52529907226562", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kingsland", + "scheduled_service": "no", + "gps_code": "54TX", + "local_code": "54TX" + }, + { + "id": "12026", + "ident": "54U", + "type": "heliport", + "name": "Big Creek Heliport", + "latitude_deg": "45.133201599121094", + "longitude_deg": "-115.31800079345703", + "elevation_ft": "5750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Big Creek", + "scheduled_service": "no", + "gps_code": "54U", + "local_code": "54U" + }, + { + "id": "45866", + "ident": "54UT", + "type": "heliport", + "name": "Ogden Regional Medical Center Heliport", + "latitude_deg": "41.164368", + "longitude_deg": "-111.972178", + "elevation_ft": "4722", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Washington Terrace", + "scheduled_service": "no", + "gps_code": "54UT", + "local_code": "54UT" + }, + { + "id": "12027", + "ident": "54VA", + "type": "heliport", + "name": "Riverside Hospital Heliport", + "latitude_deg": "37.065399169921875", + "longitude_deg": "-76.48380279541016", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Newport News", + "scheduled_service": "no", + "gps_code": "54VA", + "local_code": "54VA" + }, + { + "id": "314846", + "ident": "54W", + "type": "small_airport", + "name": "Albany Airport", + "latitude_deg": "42.717368", + "longitude_deg": "-89.423935", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "K54W", + "local_code": "54W", + "keywords": "WI50" + }, + { + "id": "12028", + "ident": "54WA", + "type": "heliport", + "name": "Tukwila Operations Center Heliport", + "latitude_deg": "47.439300537109375", + "longitude_deg": "-122.24800109863281", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tukwila", + "scheduled_service": "no", + "gps_code": "54WA", + "local_code": "54WA" + }, + { + "id": "12029", + "ident": "54WI", + "type": "small_airport", + "name": "Flyplassen Airport", + "latitude_deg": "44.96382", + "longitude_deg": "-92.29523", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Woodville", + "scheduled_service": "no", + "gps_code": "54WI", + "local_code": "54WI" + }, + { + "id": "45857", + "ident": "54X", + "type": "closed", + "name": "Boyd Field", + "latitude_deg": "31.57458", + "longitude_deg": "-97.30071", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no", + "keywords": "54X, 54XS" + }, + { + "id": "344875", + "ident": "54XA", + "type": "small_airport", + "name": "Flaherty Airport", + "latitude_deg": "33.48931", + "longitude_deg": "-97.20168", + "elevation_ft": "802", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Valley View", + "scheduled_service": "no", + "gps_code": "54XA", + "local_code": "54XA" + }, + { + "id": "345432", + "ident": "54XS", + "type": "small_airport", + "name": "Bar C Ranch Airport", + "latitude_deg": "29.944988", + "longitude_deg": "-100.686307", + "elevation_ft": "1856", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no", + "gps_code": "54XS", + "local_code": "54XS" + }, + { + "id": "12031", + "ident": "55AK", + "type": "small_airport", + "name": "Lawrence Airstrip", + "latitude_deg": "61.49580001831055", + "longitude_deg": "-149.69900512695312", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "55AK", + "local_code": "55AK" + }, + { + "id": "333469", + "ident": "55AL", + "type": "heliport", + "name": "Coosa Valley Landing Zone Heliport", + "latitude_deg": "33.166547", + "longitude_deg": "-86.255355", + "elevation_ft": "562", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Sylacauga", + "scheduled_service": "no", + "gps_code": "55AL", + "local_code": "55AL" + }, + { + "id": "12032", + "ident": "55AZ", + "type": "small_airport", + "name": "Potters Field", + "latitude_deg": "32.874019", + "longitude_deg": "-111.959395", + "elevation_ft": "1309", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Stanfield", + "scheduled_service": "no", + "gps_code": "55AZ", + "local_code": "55AZ", + "keywords": "stanfield, potters" + }, + { + "id": "12033", + "ident": "55CA", + "type": "closed", + "name": "Naval Hospital Heliport", + "latitude_deg": "37.766899", + "longitude_deg": "-122.151001", + "elevation_ft": "374", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oakland", + "scheduled_service": "no", + "keywords": "55CA" + }, + { + "id": "12034", + "ident": "55CL", + "type": "closed", + "name": "Costerisan Farms Airport", + "latitude_deg": "35.263302", + "longitude_deg": "-119.045998", + "elevation_ft": "346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bakersfield", + "scheduled_service": "no", + "local_code": "55CL", + "keywords": "Akers, Pumpkin Center Airpark" + }, + { + "id": "12035", + "ident": "55CN", + "type": "heliport", + "name": "Sunset-Glendale Heliport", + "latitude_deg": "34.07780075073242", + "longitude_deg": "-118.26000213623047", + "elevation_ft": "556", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "55CN", + "local_code": "55CN" + }, + { + "id": "12036", + "ident": "55CO", + "type": "heliport", + "name": "Elizabeth Emergency Heliport", + "latitude_deg": "39.36249923706055", + "longitude_deg": "-104.5999984741211", + "elevation_ft": "6512", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Elizabeth", + "scheduled_service": "no", + "gps_code": "55CO", + "local_code": "55CO" + }, + { + "id": "12037", + "ident": "55FD", + "type": "small_airport", + "name": "Dotson Airport", + "latitude_deg": "30.818500518798828", + "longitude_deg": "-86.68800354003906", + "elevation_ft": "251", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Baker", + "scheduled_service": "no", + "gps_code": "55FD", + "local_code": "55FD" + }, + { + "id": "12038", + "ident": "55FL", + "type": "heliport", + "name": "The Murphy Company Heliport", + "latitude_deg": "26.687299728393555", + "longitude_deg": "-80.05729675292969", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "West Palm Beach", + "scheduled_service": "no", + "gps_code": "55FL", + "local_code": "55FL" + }, + { + "id": "12039", + "ident": "55G", + "type": "small_airport", + "name": "Arnold Field", + "latitude_deg": "43.29779815673828", + "longitude_deg": "-82.60659790039062", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Croswell", + "scheduled_service": "no", + "gps_code": "55G", + "local_code": "55G" + }, + { + "id": "12040", + "ident": "55GA", + "type": "heliport", + "name": "Northside Hospital Gwinnett Heliport", + "latitude_deg": "33.963522", + "longitude_deg": "-84.018293", + "elevation_ft": "1044", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Lawrenceville", + "scheduled_service": "no", + "gps_code": "55GA", + "local_code": "55GA", + "keywords": "Gwinnett Medical Center" + }, + { + "id": "12041", + "ident": "55GE", + "type": "small_airport", + "name": "Rostex Airport", + "latitude_deg": "34.98059844970703", + "longitude_deg": "-84.7416000366211", + "elevation_ft": "887", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Tennga", + "scheduled_service": "no", + "gps_code": "55GE", + "local_code": "55GE" + }, + { + "id": "12042", + "ident": "55H", + "type": "small_airport", + "name": "Atlanta Airport", + "latitude_deg": "43.810418", + "longitude_deg": "-115.134144", + "elevation_ft": "5500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Atlanta", + "scheduled_service": "no", + "local_code": "55H" + }, + { + "id": "347493", + "ident": "55ID", + "type": "small_airport", + "name": "Spear Valley Airport", + "latitude_deg": "48.37956", + "longitude_deg": "-116.484781", + "elevation_ft": "2220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Sandpoint", + "scheduled_service": "no", + "gps_code": "55ID", + "local_code": "55ID" + }, + { + "id": "12043", + "ident": "55II", + "type": "heliport", + "name": "Johnson Memorial Hospital Heliport", + "latitude_deg": "39.47999954223633", + "longitude_deg": "-86.07779693603516", + "elevation_ft": "742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "55II", + "local_code": "55II" + }, + { + "id": "12044", + "ident": "55IL", + "type": "closed", + "name": "Brandt Airport", + "latitude_deg": "41.277802", + "longitude_deg": "-87.822304", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Manteno", + "scheduled_service": "no", + "keywords": "55IL" + }, + { + "id": "12045", + "ident": "55IN", + "type": "closed", + "name": "Brenneke Airport", + "latitude_deg": "41.144699", + "longitude_deg": "-84.862198", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Woodburn", + "scheduled_service": "no", + "keywords": "55IN" + }, + { + "id": "12046", + "ident": "55IS", + "type": "closed", + "name": "Glatthaar Airport", + "latitude_deg": "39.525002", + "longitude_deg": "-87.8059", + "elevation_ft": "765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Grandview", + "scheduled_service": "no", + "keywords": "55IS" + }, + { + "id": "322184", + "ident": "55KS", + "type": "small_airport", + "name": "Ringneck Ranch Airport", + "latitude_deg": "39.300435", + "longitude_deg": "-98.45835", + "elevation_ft": "1586", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Tipton", + "scheduled_service": "no", + "gps_code": "55KS", + "local_code": "55KS" + }, + { + "id": "12047", + "ident": "55KY", + "type": "closed", + "name": "Hutson Heliport", + "latitude_deg": "36.588902", + "longitude_deg": "-88.334503", + "elevation_ft": "548", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Murray", + "scheduled_service": "no", + "keywords": "55KY" + }, + { + "id": "12048", + "ident": "55LA", + "type": "heliport", + "name": "L&L Sandblasting Heliport", + "latitude_deg": "30.491600036621094", + "longitude_deg": "-92.44539642333984", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Eunice", + "scheduled_service": "no", + "gps_code": "55LA", + "local_code": "55LA" + }, + { + "id": "12049", + "ident": "55LL", + "type": "small_airport", + "name": "Sky Soaring Airport", + "latitude_deg": "42.15420150756836", + "longitude_deg": "-88.5114974975586", + "elevation_ft": "884", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Union", + "scheduled_service": "no", + "gps_code": "55LL", + "local_code": "55LL" + }, + { + "id": "12050", + "ident": "55ME", + "type": "small_airport", + "name": "HIghland View Field", + "latitude_deg": "44.318056", + "longitude_deg": "-69.138333", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Searsmont", + "scheduled_service": "no", + "gps_code": "55ME", + "local_code": "55ME" + }, + { + "id": "12051", + "ident": "55MI", + "type": "closed", + "name": "Hinkels Heliport", + "latitude_deg": "44.8008", + "longitude_deg": "-83.985802", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Comins", + "scheduled_service": "no", + "keywords": "55MI" + }, + { + "id": "12052", + "ident": "55MN", + "type": "small_airport", + "name": "Conley Field", + "latitude_deg": "45.835201263427734", + "longitude_deg": "-93.33550262451172", + "elevation_ft": "1004", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Mora", + "scheduled_service": "no", + "gps_code": "55MN", + "local_code": "55MN" + }, + { + "id": "12053", + "ident": "55MO", + "type": "small_airport", + "name": "Tightsqueeze Field", + "latitude_deg": "38.87229919433594", + "longitude_deg": "-91.26020050048828", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Jonesburg", + "scheduled_service": "no", + "gps_code": "55MO", + "local_code": "55MO" + }, + { + "id": "12054", + "ident": "55NC", + "type": "heliport", + "name": "Lenoir Memorial Hospital Heliport", + "latitude_deg": "35.28969955444336", + "longitude_deg": "-77.58419799804688", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Kinston", + "scheduled_service": "no", + "gps_code": "55NC", + "local_code": "55NC" + }, + { + "id": "12055", + "ident": "55ND", + "type": "small_airport", + "name": "Pete's Port Airport", + "latitude_deg": "47.35559844970703", + "longitude_deg": "-102.71099853515625", + "elevation_ft": "2260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Killdeer", + "scheduled_service": "no", + "gps_code": "55ND", + "local_code": "55ND" + }, + { + "id": "12056", + "ident": "55NE", + "type": "heliport", + "name": "Bergan Mercy Hospital Heliport", + "latitude_deg": "41.2406005859375", + "longitude_deg": "-96.02950286865234", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Omaha", + "scheduled_service": "no", + "gps_code": "55NE", + "local_code": "55NE" + }, + { + "id": "349877", + "ident": "55NH", + "type": "heliport", + "name": "Oxbow Heliport", + "latitude_deg": "44.008028", + "longitude_deg": "-72.089611", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Piermont", + "scheduled_service": "no", + "gps_code": "55NH", + "local_code": "55NH" + }, + { + "id": "12057", + "ident": "55NJ", + "type": "closed", + "name": "Garden State Balloonport", + "latitude_deg": "40.633423", + "longitude_deg": "-74.765739", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Whitehouse", + "scheduled_service": "no", + "keywords": "55NJ" + }, + { + "id": "354780", + "ident": "55NK", + "type": "heliport", + "name": "Unity Hospital Helipad", + "latitude_deg": "43.192913", + "longitude_deg": "-77.703152", + "elevation_ft": "456", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Rochester", + "scheduled_service": "no", + "gps_code": "55NK", + "local_code": "55NK" + }, + { + "id": "12058", + "ident": "55NM", + "type": "small_airport", + "name": "Burris Ranch #1 Airport", + "latitude_deg": "34.48735", + "longitude_deg": "-106.619225", + "elevation_ft": "5218", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Belen", + "scheduled_service": "no", + "gps_code": "55NM", + "local_code": "55NM" + }, + { + "id": "430421", + "ident": "55NV", + "type": "heliport", + "name": "Pruitt Aviation Heliport", + "latitude_deg": "40.742084", + "longitude_deg": "-115.494396", + "elevation_ft": "5800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Elko", + "scheduled_service": "no", + "gps_code": "55NV", + "local_code": "55NV" + }, + { + "id": "12059", + "ident": "55NY", + "type": "small_airport", + "name": "Ridgeview Airport", + "latitude_deg": "42.082000732421875", + "longitude_deg": "-79.31230163574219", + "elevation_ft": "1645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Jamestown", + "scheduled_service": "no", + "gps_code": "55NY", + "local_code": "55NY" + }, + { + "id": "12060", + "ident": "55OH", + "type": "heliport", + "name": "Donn Heliport", + "latitude_deg": "41.47589874267578", + "longitude_deg": "-81.95069885253906", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Westlake", + "scheduled_service": "no", + "gps_code": "55OH", + "local_code": "55OH" + }, + { + "id": "12061", + "ident": "55OI", + "type": "small_airport", + "name": "Aero Flight Center Airport", + "latitude_deg": "40.858699798583984", + "longitude_deg": "-80.5353012084961", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "East Palestine", + "scheduled_service": "no", + "gps_code": "55OI", + "local_code": "55OI" + }, + { + "id": "12062", + "ident": "55OK", + "type": "small_airport", + "name": "Gilstrap Field", + "latitude_deg": "36.2239990234", + "longitude_deg": "-95.5783004761", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Inola", + "scheduled_service": "no", + "gps_code": "55OK", + "local_code": "55OK" + }, + { + "id": "331665", + "ident": "55OL", + "type": "small_airport", + "name": "Higley Field", + "latitude_deg": "35.780431", + "longitude_deg": "-97.568392", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Guthrie", + "scheduled_service": "no", + "gps_code": "55OL", + "local_code": "55OL" + }, + { + "id": "12063", + "ident": "55OR", + "type": "small_airport", + "name": "Muddy Creek Airport", + "latitude_deg": "44.43600082397461", + "longitude_deg": "-123.30799865722656", + "elevation_ft": "253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Corvallis", + "scheduled_service": "no", + "gps_code": "55OR", + "local_code": "55OR" + }, + { + "id": "12064", + "ident": "55PA", + "type": "small_airport", + "name": "Sency Airport", + "latitude_deg": "40.895599365234375", + "longitude_deg": "-75.94409942626953", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Treskow", + "scheduled_service": "no", + "gps_code": "55PA", + "local_code": "55PA" + }, + { + "id": "12065", + "ident": "55S", + "type": "small_airport", + "name": "Packwood Airport", + "latitude_deg": "46.60419845581055", + "longitude_deg": "-121.6780014038086", + "elevation_ft": "1057", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Packwood", + "scheduled_service": "no", + "gps_code": "55S", + "local_code": "55S" + }, + { + "id": "12068", + "ident": "55T", + "type": "small_airport", + "name": "Eagles Aerodrome", + "latitude_deg": "35.215301513671875", + "longitude_deg": "-101.40899658203125", + "elevation_ft": "3475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Conway", + "scheduled_service": "no", + "gps_code": "55T", + "local_code": "55T", + "keywords": "Formerly 55TS" + }, + { + "id": "12066", + "ident": "55TA", + "type": "heliport", + "name": "Conroe Regional Medical Center Heliport", + "latitude_deg": "30.285218", + "longitude_deg": "-95.46762", + "elevation_ft": "162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Conroe", + "scheduled_service": "no", + "gps_code": "55TA", + "local_code": "55TA", + "keywords": "Montgomery County Medical Center Hospital Heliport" + }, + { + "id": "45858", + "ident": "55TE", + "type": "closed", + "name": "Valhalla Airport", + "latitude_deg": "29.227604", + "longitude_deg": "-98.349097", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Elmendorf", + "scheduled_service": "no", + "keywords": "55TE, Lebegue LSA Landing" + }, + { + "id": "12067", + "ident": "55TN", + "type": "heliport", + "name": "Ft Loudon Medical Center Heliport", + "latitude_deg": "35.82609939575195", + "longitude_deg": "-84.27079772949219", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lenoir City", + "scheduled_service": "no", + "gps_code": "55TN", + "local_code": "55TN" + }, + { + "id": "12069", + "ident": "55TX", + "type": "small_airport", + "name": "Stonecipher Airport", + "latitude_deg": "30.111462", + "longitude_deg": "-94.258103", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beaumont", + "scheduled_service": "no", + "gps_code": "55TX", + "local_code": "55TX", + "keywords": "beaumont, stonecipher" + }, + { + "id": "12070", + "ident": "55VA", + "type": "heliport", + "name": "Giles Memorial Hospital Heliport", + "latitude_deg": "37.322186", + "longitude_deg": "-80.723133", + "elevation_ft": "1840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Pearisburg", + "scheduled_service": "no", + "gps_code": "55VA", + "local_code": "55VA" + }, + { + "id": "12071", + "ident": "55WA", + "type": "small_airport", + "name": "Wilkinson Ranch Airport", + "latitude_deg": "46.53015", + "longitude_deg": "-120.74685", + "elevation_ft": "1670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Yakima", + "scheduled_service": "no", + "gps_code": "55WA", + "local_code": "55WA" + }, + { + "id": "12072", + "ident": "55WI", + "type": "small_airport", + "name": "Cranmoor Airstrip", + "latitude_deg": "44.31800079345703", + "longitude_deg": "-89.96869659423828", + "elevation_ft": "985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Nekoosa", + "scheduled_service": "no", + "gps_code": "55WI", + "local_code": "55WI" + }, + { + "id": "330695", + "ident": "55XA", + "type": "heliport", + "name": "1101 East Blvd Deer Park Heliport", + "latitude_deg": "29.702772", + "longitude_deg": "-95.101638", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Deer Park", + "scheduled_service": "no", + "gps_code": "55XA", + "local_code": "55XA", + "keywords": "Community First Emergency Room Heliport" + }, + { + "id": "12073", + "ident": "55XS", + "type": "small_airport", + "name": "Frontier Airport", + "latitude_deg": "29.1663", + "longitude_deg": "-100.417999", + "elevation_ft": "1001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no", + "gps_code": "55XS", + "local_code": "55XS" + }, + { + "id": "12074", + "ident": "56AK", + "type": "small_airport", + "name": "Bechtol Field", + "latitude_deg": "61.57500076293945", + "longitude_deg": "-149.6060028076172", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "56AK", + "local_code": "56AK" + }, + { + "id": "323197", + "ident": "56AR", + "type": "heliport", + "name": "Little Rock Police DepartmentHeliport", + "latitude_deg": "34.640861", + "longitude_deg": "-92.304221", + "elevation_ft": "283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Little Rock", + "scheduled_service": "no", + "gps_code": "56AR", + "local_code": "56AR" + }, + { + "id": "12075", + "ident": "56AZ", + "type": "small_airport", + "name": "Mauldin Airstrip", + "latitude_deg": "33.482422", + "longitude_deg": "-113.001729", + "elevation_ft": "1193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonopah", + "scheduled_service": "no", + "gps_code": "56AZ", + "local_code": "56AZ", + "keywords": "tonopah, mauldin" + }, + { + "id": "12076", + "ident": "56CA", + "type": "closed", + "name": "Los Angeles Times Helipad", + "latitude_deg": "34.050598", + "longitude_deg": "-118.246002", + "elevation_ft": "345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "56CA", + "local_code": "56CA" + }, + { + "id": "12077", + "ident": "56CL", + "type": "small_airport", + "name": "Morris Ag Air SW Airport", + "latitude_deg": "33.591726", + "longitude_deg": "-114.605663", + "elevation_ft": "263", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Blythe", + "scheduled_service": "no", + "gps_code": "56CL", + "local_code": "56CL", + "keywords": "cyr aviation, morris ag air" + }, + { + "id": "12078", + "ident": "56CO", + "type": "heliport", + "name": "Animas Air Park", + "latitude_deg": "37.20309829711914", + "longitude_deg": "-107.86799621582031", + "elevation_ft": "6660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Durango", + "scheduled_service": "no", + "gps_code": "56CO", + "local_code": "56CO" + }, + { + "id": "12079", + "ident": "56FD", + "type": "small_airport", + "name": "North American Farms Airport", + "latitude_deg": "30.964599609375", + "longitude_deg": "-85.06939697265625", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Malone", + "scheduled_service": "no", + "gps_code": "56FD", + "local_code": "56FD" + }, + { + "id": "12080", + "ident": "56FL", + "type": "small_airport", + "name": "Buchanan Airport", + "latitude_deg": "30.875999450683594", + "longitude_deg": "-87.2074966430664", + "elevation_ft": "246", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jay", + "scheduled_service": "no", + "gps_code": "56FL", + "local_code": "56FL" + }, + { + "id": "12081", + "ident": "56G", + "type": "small_airport", + "name": "Indian Creek Ranch Airport", + "latitude_deg": "43.577701568603516", + "longitude_deg": "-82.64759826660156", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Deckerville", + "scheduled_service": "no", + "gps_code": "56G", + "local_code": "56G" + }, + { + "id": "12082", + "ident": "56GA", + "type": "heliport", + "name": "Kennestone Heliport", + "latitude_deg": "33.96760177612305", + "longitude_deg": "-84.5510025024414", + "elevation_ft": "1215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Marietta", + "scheduled_service": "no", + "gps_code": "56GA", + "local_code": "56GA" + }, + { + "id": "12083", + "ident": "56II", + "type": "heliport", + "name": "Adams County Memorial Hospital Heliport", + "latitude_deg": "40.81559", + "longitude_deg": "-84.913711", + "elevation_ft": "799", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Decatur", + "scheduled_service": "no", + "gps_code": "56II", + "local_code": "56II" + }, + { + "id": "12084", + "ident": "56IL", + "type": "small_airport", + "name": "Lee Creek Airport", + "latitude_deg": "42.462161", + "longitude_deg": "-88.875082", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Caledonia", + "scheduled_service": "no", + "gps_code": "56IL", + "local_code": "56IL" + }, + { + "id": "12085", + "ident": "56IN", + "type": "small_airport", + "name": "Casad Industrial Park Airport", + "latitude_deg": "41.077799", + "longitude_deg": "-84.940453", + "elevation_ft": "766", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "New Haven", + "scheduled_service": "no", + "gps_code": "56IN", + "local_code": "56IN" + }, + { + "id": "12086", + "ident": "56IS", + "type": "small_airport", + "name": "Liannimal's Landing", + "latitude_deg": "40.243215", + "longitude_deg": "-88.083991", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Thomasboro", + "scheduled_service": "no", + "gps_code": "56IS", + "local_code": "56IS", + "keywords": "Rash, Schmidt, CU Skydiving" + }, + { + "id": "12087", + "ident": "56KS", + "type": "heliport", + "name": "Robinson Heliport", + "latitude_deg": "37.97719955444336", + "longitude_deg": "-100.84500122070312", + "elevation_ft": "3000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Garden City", + "scheduled_service": "no", + "gps_code": "56KS", + "local_code": "56KS" + }, + { + "id": "12088", + "ident": "56KY", + "type": "heliport", + "name": "Twin Lakes Regional Medical Center Heliport", + "latitude_deg": "37.471900939941406", + "longitude_deg": "-86.28780364990234", + "elevation_ft": "657", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Leitchfield", + "scheduled_service": "no", + "gps_code": "56KY", + "local_code": "56KY" + }, + { + "id": "12089", + "ident": "56LA", + "type": "small_airport", + "name": "Old Hickory Ranch Airport", + "latitude_deg": "32.345298767089844", + "longitude_deg": "-93.81829833984375", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Keithville", + "scheduled_service": "no", + "gps_code": "56LA", + "local_code": "56LA" + }, + { + "id": "12090", + "ident": "56LL", + "type": "small_airport", + "name": "Wade Airport", + "latitude_deg": "41.755001068115234", + "longitude_deg": "-88.77120208740234", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Waterman", + "scheduled_service": "no", + "gps_code": "56LL", + "local_code": "56LL" + }, + { + "id": "12091", + "ident": "56MI", + "type": "heliport", + "name": "Beaumont Dearborn Heliport", + "latitude_deg": "42.28992", + "longitude_deg": "-83.215767", + "elevation_ft": "597", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Dearborn", + "scheduled_service": "no", + "gps_code": "56MI", + "local_code": "56MI", + "keywords": "Oakwood Hospital" + }, + { + "id": "12092", + "ident": "56MN", + "type": "small_airport", + "name": "Lothert's Farm Strip", + "latitude_deg": "44.64550018310547", + "longitude_deg": "-94.9614028930664", + "elevation_ft": "1015", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Morton", + "scheduled_service": "no", + "gps_code": "56MN", + "local_code": "56MN" + }, + { + "id": "12093", + "ident": "56MO", + "type": "small_airport", + "name": "Mc Clurg Airport", + "latitude_deg": "36.9709014893", + "longitude_deg": "-93.9241027832", + "elevation_ft": "1376", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Monett", + "scheduled_service": "no", + "gps_code": "56MO", + "local_code": "56MO" + }, + { + "id": "12094", + "ident": "56MU", + "type": "heliport", + "name": "Lester E Cox Medical Center South Heliport", + "latitude_deg": "37.144563", + "longitude_deg": "-93.280381", + "elevation_ft": "1270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "56MU", + "local_code": "56MU" + }, + { + "id": "12095", + "ident": "56NC", + "type": "small_airport", + "name": "Wheat Field", + "latitude_deg": "35.20669937133789", + "longitude_deg": "-82.03189849853516", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Tryon", + "scheduled_service": "no", + "gps_code": "56NC", + "local_code": "56NC" + }, + { + "id": "12096", + "ident": "56NE", + "type": "small_airport", + "name": "Noble Field", + "latitude_deg": "41.032798767089844", + "longitude_deg": "-98.81199645996094", + "elevation_ft": "1967", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Ravenna", + "scheduled_service": "no", + "gps_code": "56NE", + "local_code": "56NE" + }, + { + "id": "345715", + "ident": "56NH", + "type": "small_airport", + "name": "Therriaults Landing Airport", + "latitude_deg": "43.481111", + "longitude_deg": "-71.056861", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Middleton", + "scheduled_service": "no", + "gps_code": "56NH", + "local_code": "56NH" + }, + { + "id": "12097", + "ident": "56NJ", + "type": "heliport", + "name": "Blue Jay Heliport", + "latitude_deg": "40.00680160522461", + "longitude_deg": "-74.8635025024414", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Mount Holly", + "scheduled_service": "no", + "gps_code": "56NJ", + "local_code": "56NJ" + }, + { + "id": "325432", + "ident": "56NK", + "type": "heliport", + "name": "Buffalo General Hospital Heliport", + "latitude_deg": "42.901116", + "longitude_deg": "-78.866489", + "elevation_ft": "1026", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Buffalo", + "scheduled_service": "no", + "gps_code": "56NK", + "local_code": "56NK" + }, + { + "id": "12098", + "ident": "56NY", + "type": "small_airport", + "name": "Maynard's Airport", + "latitude_deg": "43.324857", + "longitude_deg": "-78.051548", + "elevation_ft": "342", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Kendall", + "scheduled_service": "no", + "gps_code": "56NY", + "local_code": "56NY" + }, + { + "id": "345760", + "ident": "56OG", + "type": "small_airport", + "name": "Horn Airport", + "latitude_deg": "44.771858", + "longitude_deg": "-122.727628", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Stayton", + "scheduled_service": "no", + "gps_code": "56OG", + "local_code": "56OG" + }, + { + "id": "12099", + "ident": "56OH", + "type": "small_airport", + "name": "Richey Airport", + "latitude_deg": "40.90729904174805", + "longitude_deg": "-80.55149841308594", + "elevation_ft": "1195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Petersburg", + "scheduled_service": "no", + "gps_code": "56OH", + "local_code": "56OH" + }, + { + "id": "12100", + "ident": "56OI", + "type": "small_airport", + "name": "Double S Farms Airport", + "latitude_deg": "41.20560073852539", + "longitude_deg": "-82.331298828125", + "elevation_ft": "898", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Kipton", + "scheduled_service": "no", + "gps_code": "56OI", + "local_code": "56OI" + }, + { + "id": "12101", + "ident": "56OK", + "type": "small_airport", + "name": "L D Airport", + "latitude_deg": "35.45840072631836", + "longitude_deg": "-97.06700134277344", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Mc Loud", + "scheduled_service": "no", + "gps_code": "56OK", + "local_code": "56OK" + }, + { + "id": "12102", + "ident": "56OR", + "type": "heliport", + "name": "Mount Hood Medical Center Heliport", + "latitude_deg": "45.515936687", + "longitude_deg": "-122.406449318", + "elevation_ft": "338", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Gresham", + "scheduled_service": "no", + "gps_code": "56OR", + "local_code": "56OR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mount_Hood_Medical_Center_Heliport" + }, + { + "id": "12103", + "ident": "56PA", + "type": "small_airport", + "name": "Hoge Farm Airport", + "latitude_deg": "40.46950149536133", + "longitude_deg": "-75.08209991455078", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tinicum", + "scheduled_service": "no", + "gps_code": "56PA", + "local_code": "56PA" + }, + { + "id": "12104", + "ident": "56PN", + "type": "heliport", + "name": "Atlantic Refining & Marketing Corp Heliport", + "latitude_deg": "39.9197998046875", + "longitude_deg": "-75.19660186767578", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "56PN", + "local_code": "56PN" + }, + { + "id": "12105", + "ident": "56S", + "type": "small_airport", + "name": "Seaside Municipal Airport", + "latitude_deg": "46.01649857", + "longitude_deg": "-123.9049988", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Seaside", + "scheduled_service": "no", + "gps_code": "56S", + "local_code": "56S", + "wikipedia_link": "https://en.wikipedia.org/wiki/Seaside_Municipal_Airport" + }, + { + "id": "12106", + "ident": "56TA", + "type": "heliport", + "name": "Dallas/Fort Worth Medical Center Heliport", + "latitude_deg": "32.73210144042969", + "longitude_deg": "-97.04889678955078", + "elevation_ft": "578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Grand Prairie", + "scheduled_service": "no", + "gps_code": "56TA", + "local_code": "56TA" + }, + { + "id": "12107", + "ident": "56TE", + "type": "heliport", + "name": "Air Evac Lifeteam Base 57 Heliport", + "latitude_deg": "28.71335", + "longitude_deg": "-100.453981", + "elevation_ft": "871", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eagle Pass", + "scheduled_service": "no", + "gps_code": "56TE", + "local_code": "56TE" + }, + { + "id": "12108", + "ident": "56TS", + "type": "small_airport", + "name": "Elgin Intracontinental Airport", + "latitude_deg": "30.333807", + "longitude_deg": "-97.350454", + "elevation_ft": "558", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Elgin", + "scheduled_service": "no", + "gps_code": "56TS", + "local_code": "56TS" + }, + { + "id": "12109", + "ident": "56TX", + "type": "small_airport", + "name": "Anchorage Farm Field", + "latitude_deg": "30.0093994140625", + "longitude_deg": "-96.7593994140625", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Warrenton", + "scheduled_service": "no", + "gps_code": "56TX", + "local_code": "56TX" + }, + { + "id": "12110", + "ident": "56VA", + "type": "heliport", + "name": "Virginia Beach Municipal Heliport", + "latitude_deg": "36.750999450683594", + "longitude_deg": "-76.05829620361328", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Virginia Beach", + "scheduled_service": "no", + "gps_code": "56VA", + "local_code": "56VA" + }, + { + "id": "12111", + "ident": "56WA", + "type": "heliport", + "name": "Tri-State Hospital EMS Heliport", + "latitude_deg": "46.402096", + "longitude_deg": "-117.055574", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Clarkston", + "scheduled_service": "no", + "gps_code": "WT89", + "local_code": "WT89", + "keywords": "56WA" + }, + { + "id": "12112", + "ident": "56WI", + "type": "small_airport", + "name": "Jaks Field", + "latitude_deg": "44.773399353027344", + "longitude_deg": "-89.59369659423828", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Mosinee", + "scheduled_service": "no", + "gps_code": "56WI", + "local_code": "56WI" + }, + { + "id": "353853", + "ident": "56XA", + "type": "heliport", + "name": "Texas Health Huguley Hospital Heliport", + "latitude_deg": "32.587619", + "longitude_deg": "-97.318477", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "56XA", + "local_code": "56XA" + }, + { + "id": "12113", + "ident": "56XS", + "type": "heliport", + "name": "G H Hart Nr 2 Heliport", + "latitude_deg": "29.64189910888672", + "longitude_deg": "-95.55359649658203", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Stafford", + "scheduled_service": "no", + "gps_code": "56XS", + "local_code": "56XS" + }, + { + "id": "12114", + "ident": "57A", + "type": "seaplane_base", + "name": "Tokeen Seaplane Base", + "latitude_deg": "55.9370994568", + "longitude_deg": "-133.32699585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tokeen", + "scheduled_service": "no", + "gps_code": "57A", + "iata_code": "TKI", + "local_code": "57A", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tokeen_Seaplane_Base" + }, + { + "id": "12115", + "ident": "57AK", + "type": "closed", + "name": "Lost Lake Seaplane Base", + "latitude_deg": "61.334999", + "longitude_deg": "-149.996994", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "keywords": "57AK" + }, + { + "id": "12116", + "ident": "57AL", + "type": "small_airport", + "name": "Baswell Airport", + "latitude_deg": "30.65320015", + "longitude_deg": "-87.72370148", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Loxley", + "scheduled_service": "no", + "gps_code": "57AL", + "local_code": "57AL" + }, + { + "id": "12117", + "ident": "57AZ", + "type": "small_airport", + "name": "La Cholla Airpark", + "latitude_deg": "32.446633", + "longitude_deg": "-111.002898", + "elevation_ft": "2940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Oro Valley", + "scheduled_service": "no", + "gps_code": "57AZ", + "local_code": "57AZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Cholla_Airpark", + "keywords": "tucson, la cholla" + }, + { + "id": "12118", + "ident": "57B", + "type": "small_airport", + "name": "Islesboro Airport", + "latitude_deg": "44.3025016784668", + "longitude_deg": "-68.91059875488281", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Islesboro", + "scheduled_service": "no", + "gps_code": "57B", + "local_code": "57B" + }, + { + "id": "12119", + "ident": "57CA", + "type": "closed", + "name": "Merle Norman Cosmetics Bldg 3 Heliport", + "latitude_deg": "33.9533", + "longitude_deg": "-118.380997", + "elevation_ft": "126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "keywords": "57CA" + }, + { + "id": "12120", + "ident": "57CL", + "type": "small_airport", + "name": "Boron Airstrip", + "latitude_deg": "35.00360107421875", + "longitude_deg": "-117.60700225830078", + "elevation_ft": "2499", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Boron", + "scheduled_service": "no", + "gps_code": "57CL", + "local_code": "57CL" + }, + { + "id": "12121", + "ident": "57CN", + "type": "small_airport", + "name": "Van Vleck Airport", + "latitude_deg": "38.46910095214844", + "longitude_deg": "-121.07499694824219", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rancho Murieta", + "scheduled_service": "no", + "gps_code": "57CN", + "local_code": "57CN" + }, + { + "id": "12122", + "ident": "57CO", + "type": "closed", + "name": "The Children's Hospital Heliport", + "latitude_deg": "39.733299", + "longitude_deg": "-104.967003", + "elevation_ft": "5436", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "keywords": "57CO" + }, + { + "id": "12123", + "ident": "57D", + "type": "small_airport", + "name": "Ray Community Airport", + "latitude_deg": "42.73749923706055", + "longitude_deg": "-82.89019775390625", + "elevation_ft": "632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ray", + "scheduled_service": "no", + "gps_code": "57D", + "local_code": "57D" + }, + { + "id": "12124", + "ident": "57FA", + "type": "small_airport", + "name": "Lake X Airport", + "latitude_deg": "28.208599090576172", + "longitude_deg": "-81.11920166015625", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St Cloud", + "scheduled_service": "no", + "gps_code": "57FA", + "local_code": "57FA" + }, + { + "id": "12125", + "ident": "57FD", + "type": "closed", + "name": "Sunset Strip Airpark", + "latitude_deg": "28.5397", + "longitude_deg": "-82.228895", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Brooksville", + "scheduled_service": "no", + "keywords": "57FD" + }, + { + "id": "12126", + "ident": "57FL", + "type": "closed", + "name": "Alachua General Hospital Heliport", + "latitude_deg": "29.649099", + "longitude_deg": "-82.334503", + "elevation_ft": "153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Gainesville", + "scheduled_service": "no", + "keywords": "57FL" + }, + { + "id": "12127", + "ident": "57GA", + "type": "small_airport", + "name": "Blue Ridge Skyport Airport", + "latitude_deg": "34.86309814453125", + "longitude_deg": "-84.393798828125", + "elevation_ft": "1946", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Blue Ridge", + "scheduled_service": "no", + "gps_code": "57GA", + "local_code": "57GA" + }, + { + "id": "12128", + "ident": "57II", + "type": "small_airport", + "name": "Reimer Aerodrome", + "latitude_deg": "39.96419906616211", + "longitude_deg": "-86.56749725341797", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Jamestown", + "scheduled_service": "no", + "gps_code": "57II", + "local_code": "57II" + }, + { + "id": "12129", + "ident": "57IL", + "type": "heliport", + "name": "Motorola Csg-Harvard Heliport", + "latitude_deg": "42.4380989074707", + "longitude_deg": "-88.60359954833984", + "elevation_ft": "1065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Harvard", + "scheduled_service": "no", + "gps_code": "57IL", + "local_code": "57IL" + }, + { + "id": "12130", + "ident": "57IN", + "type": "heliport", + "name": "IU Health Bedford Hospital Heliport", + "latitude_deg": "38.858149", + "longitude_deg": "-86.512656", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bedford", + "scheduled_service": "no", + "gps_code": "57IN", + "local_code": "57IN", + "keywords": "Bedford Medical Center" + }, + { + "id": "12131", + "ident": "57IS", + "type": "small_airport", + "name": "Dozier Airport", + "latitude_deg": "38.31669998168945", + "longitude_deg": "-88.27230072021484", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "57IS", + "local_code": "57IS" + }, + { + "id": "12132", + "ident": "57K", + "type": "closed", + "name": "Gilmore Airport", + "latitude_deg": "38.128109", + "longitude_deg": "-94.747639", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Pleasanton", + "scheduled_service": "no", + "keywords": "57K" + }, + { + "id": "345655", + "ident": "57KS", + "type": "small_airport", + "name": "Get Away Runway", + "latitude_deg": "39.315047", + "longitude_deg": "-95.993467", + "elevation_ft": "1135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Emmett", + "scheduled_service": "no", + "gps_code": "57KS", + "local_code": "57KS" + }, + { + "id": "12133", + "ident": "57KY", + "type": "small_airport", + "name": "Belcher Regional Airport", + "latitude_deg": "37.36940002441406", + "longitude_deg": "-82.32420349121094", + "elevation_ft": "1700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Belcher", + "scheduled_service": "no", + "gps_code": "57KY", + "local_code": "57KY" + }, + { + "id": "12134", + "ident": "57LA", + "type": "heliport", + "name": "Acadia Saint Landry Hospital Heliport", + "latitude_deg": "30.395147", + "longitude_deg": "-92.210568", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Church Point", + "scheduled_service": "no", + "gps_code": "57LA", + "local_code": "57LA", + "keywords": "ASLH Helipad" + }, + { + "id": "345546", + "ident": "57LS", + "type": "small_airport", + "name": "Prairie Creek Airport", + "latitude_deg": "31.205025", + "longitude_deg": "-93.277166", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Leesville", + "scheduled_service": "no", + "gps_code": "57LS", + "local_code": "57LS" + }, + { + "id": "332085", + "ident": "57MA", + "type": "heliport", + "name": "Nantucket Cottage Hospital Helipad", + "latitude_deg": "41.275778", + "longitude_deg": "-70.101833", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Nantucket", + "scheduled_service": "no", + "gps_code": "57MA", + "local_code": "57MA" + }, + { + "id": "12135", + "ident": "57ME", + "type": "small_airport", + "name": "Dyer's Landing Airport", + "latitude_deg": "43.91780090332031", + "longitude_deg": "-70.85440063476562", + "elevation_ft": "441", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Fryeburg", + "scheduled_service": "no", + "gps_code": "57ME", + "local_code": "57ME" + }, + { + "id": "12136", + "ident": "57MI", + "type": "closed", + "name": "Eaton Rapids Medical Center Heliport", + "latitude_deg": "42.494749", + "longitude_deg": "-84.658402", + "elevation_ft": "888", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Eaton Rapids", + "scheduled_service": "no", + "keywords": "57MI, Eaton Rapids Community Hospital Hospital" + }, + { + "id": "12137", + "ident": "57MN", + "type": "seaplane_base", + "name": "Namakan Seaplane Base", + "latitude_deg": "48.40679931640625", + "longitude_deg": "-92.66680145263672", + "elevation_ft": "1119", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Ray", + "scheduled_service": "no", + "gps_code": "57MN", + "local_code": "57MN" + }, + { + "id": "12138", + "ident": "57MO", + "type": "closed", + "name": "Fabick Two Heliport", + "latitude_deg": "36.868698", + "longitude_deg": "-89.5784", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Sikeston", + "scheduled_service": "no", + "keywords": "57MO" + }, + { + "id": "344902", + "ident": "57MT", + "type": "small_airport", + "name": "Flying K Field", + "latitude_deg": "46.201911", + "longitude_deg": "-114.083029", + "elevation_ft": "4085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "57MT", + "local_code": "57MT" + }, + { + "id": "12139", + "ident": "57NC", + "type": "small_airport", + "name": "Sossamon Field", + "latitude_deg": "35.426498", + "longitude_deg": "-83.458199", + "elevation_ft": "1940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Bryson City", + "scheduled_service": "no", + "gps_code": "57NC", + "local_code": "57NC" + }, + { + "id": "12140", + "ident": "57ND", + "type": "small_airport", + "name": "Odegaard Airport", + "latitude_deg": "46.608299255371094", + "longitude_deg": "-97.05950164794922", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Kindred", + "scheduled_service": "no", + "gps_code": "57ND", + "local_code": "57ND" + }, + { + "id": "12141", + "ident": "57NE", + "type": "small_airport", + "name": "Cole Memorial Airport", + "latitude_deg": "42.924198150634766", + "longitude_deg": "-101.69400024414062", + "elevation_ft": "3259", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Merriman", + "scheduled_service": "no", + "gps_code": "57NE", + "local_code": "57NE" + }, + { + "id": "12142", + "ident": "57NM", + "type": "small_airport", + "name": "Monte Prieto Ranch Airport", + "latitude_deg": "34.08869934082031", + "longitude_deg": "-106.11900329589844", + "elevation_ft": "6164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Claunch", + "scheduled_service": "no", + "gps_code": "57NM", + "local_code": "57NM" + }, + { + "id": "12143", + "ident": "57NY", + "type": "heliport", + "name": "Athens Emergency Med-Evac Heliport", + "latitude_deg": "42.287326", + "longitude_deg": "-73.844937", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Athens", + "scheduled_service": "no", + "gps_code": "57NY", + "local_code": "57NY" + }, + { + "id": "12144", + "ident": "57OH", + "type": "closed", + "name": "Fillmans Farms Field", + "latitude_deg": "40.335292", + "longitude_deg": "-81.488514", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Port Washington", + "scheduled_service": "no", + "keywords": "57OH" + }, + { + "id": "12145", + "ident": "57OI", + "type": "small_airport", + "name": "Logan's Chance Airport", + "latitude_deg": "39.996700286865234", + "longitude_deg": "-83.85469818115234", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lawrenceville", + "scheduled_service": "no", + "gps_code": "57OI", + "local_code": "57OI" + }, + { + "id": "12146", + "ident": "57OK", + "type": "heliport", + "name": "Atoka Memorial Hospital Heliport", + "latitude_deg": "34.371787", + "longitude_deg": "-96.140778", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Atoka", + "scheduled_service": "no", + "gps_code": "57OK", + "local_code": "57OK" + }, + { + "id": "12147", + "ident": "57OR", + "type": "closed", + "name": "Umpqua River Farm Airport", + "latitude_deg": "43.34", + "longitude_deg": "-123.450996", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sutherlin", + "scheduled_service": "no", + "keywords": "57OR" + }, + { + "id": "12148", + "ident": "57PA", + "type": "small_airport", + "name": "H&H Personal Use Airport", + "latitude_deg": "41.90290069580078", + "longitude_deg": "-77.23030090332031", + "elevation_ft": "1680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tioga", + "scheduled_service": "no", + "gps_code": "57PA", + "local_code": "57PA" + }, + { + "id": "12149", + "ident": "57PN", + "type": "small_airport", + "name": "Ransome STOLport", + "latitude_deg": "40.39759826660156", + "longitude_deg": "-75.01069641113281", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Solebury", + "scheduled_service": "no", + "gps_code": "57PN", + "local_code": "57PN" + }, + { + "id": "12150", + "ident": "57TA", + "type": "closed", + "name": "Trinity Meadows Race Track Heliport", + "latitude_deg": "32.746399", + "longitude_deg": "-97.654999", + "elevation_ft": "837", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Willow Park", + "scheduled_service": "no", + "gps_code": "57TA", + "local_code": "57TA" + }, + { + "id": "12151", + "ident": "57TE", + "type": "small_airport", + "name": "Prade Ranch Airport", + "latitude_deg": "29.938955", + "longitude_deg": "-99.783153", + "elevation_ft": "2296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Leakey", + "scheduled_service": "no", + "gps_code": "57TE", + "local_code": "57TE" + }, + { + "id": "346257", + "ident": "57TN", + "type": "heliport", + "name": "Cumberland County Hospital Heliport", + "latitude_deg": "35.941947", + "longitude_deg": "-85.019536", + "elevation_ft": "1869", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Crossville", + "scheduled_service": "no", + "gps_code": "57TN", + "local_code": "57TN" + }, + { + "id": "12152", + "ident": "57TS", + "type": "heliport", + "name": "Coker Hill Heliport", + "latitude_deg": "32.64459991455078", + "longitude_deg": "-97.19139862060547", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kennedale", + "scheduled_service": "no", + "gps_code": "57TS", + "local_code": "57TS" + }, + { + "id": "12153", + "ident": "57TX", + "type": "small_airport", + "name": "Brown Ranch Airport", + "latitude_deg": "28.4419002532959", + "longitude_deg": "-97.80439758300781", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beeville", + "scheduled_service": "no", + "gps_code": "57TX", + "local_code": "57TX" + }, + { + "id": "12154", + "ident": "57VA", + "type": "closed", + "name": "Toga Airport", + "latitude_deg": "37.450954", + "longitude_deg": "-78.678857", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Dillwyn", + "scheduled_service": "no", + "keywords": "57VA" + }, + { + "id": "356201", + "ident": "57VT", + "type": "heliport", + "name": "Porter Medical Center Heliport", + "latitude_deg": "44.001713", + "longitude_deg": "-73.167958", + "elevation_ft": "388", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Middlebury", + "scheduled_service": "no", + "gps_code": "57VT", + "local_code": "57VT" + }, + { + "id": "12155", + "ident": "57WA", + "type": "closed", + "name": "Kent Farms Airport", + "latitude_deg": "46.873501", + "longitude_deg": "-119.129997", + "elevation_ft": "1155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Othello", + "scheduled_service": "no", + "keywords": "57WA" + }, + { + "id": "12156", + "ident": "57WI", + "type": "heliport", + "name": "Aurora Valley View Medical Center Heliport", + "latitude_deg": "43.74440002441406", + "longitude_deg": "-87.9677963256836", + "elevation_ft": "878", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "57WI", + "local_code": "57WI" + }, + { + "id": "349496", + "ident": "57XA", + "type": "small_airport", + "name": "Ausmus Airport", + "latitude_deg": "29.858333", + "longitude_deg": "-98.114722", + "elevation_ft": "957", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "New Braunfels", + "scheduled_service": "no", + "gps_code": "57XA", + "local_code": "57XA" + }, + { + "id": "12157", + "ident": "57XS", + "type": "closed", + "name": "Hoopes Ranch Airport", + "latitude_deg": "30.696899", + "longitude_deg": "-97.560097", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weir", + "scheduled_service": "no", + "keywords": "57XS" + }, + { + "id": "12158", + "ident": "58A", + "type": "seaplane_base", + "name": "Tolsona Lake Seaplane Base", + "latitude_deg": "62.11339950559999", + "longitude_deg": "-146.041000366", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tolsona Lake", + "scheduled_service": "no", + "gps_code": "58A", + "local_code": "58A" + }, + { + "id": "12159", + "ident": "58AK", + "type": "small_airport", + "name": "Fairview East Airport", + "latitude_deg": "61.5526008605957", + "longitude_deg": "-149.33999633789062", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "58AK", + "local_code": "58AK" + }, + { + "id": "325453", + "ident": "58AR", + "type": "small_airport", + "name": "Sugar Creek Airport", + "latitude_deg": "36.405833", + "longitude_deg": "-94.175277", + "elevation_ft": "1067", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Bentonville", + "scheduled_service": "no", + "gps_code": "58AR", + "local_code": "58AR", + "keywords": "Price Coffee Airfield" + }, + { + "id": "45298", + "ident": "58AZ", + "type": "small_airport", + "name": "Chapman Ranch Airstrip", + "latitude_deg": "34.093611", + "longitude_deg": "-110.932778", + "elevation_ft": "5115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Young", + "scheduled_service": "no", + "gps_code": "58AZ", + "local_code": "58AZ" + }, + { + "id": "12160", + "ident": "58C", + "type": "small_airport", + "name": "Jana Airport", + "latitude_deg": "42.872798919677734", + "longitude_deg": "-89.07569885253906", + "elevation_ft": "842", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Edgerton", + "scheduled_service": "no", + "gps_code": "58C", + "local_code": "58C" + }, + { + "id": "12161", + "ident": "58CA", + "type": "heliport", + "name": "Jay Stephen Hooper Memorial Heliport", + "latitude_deg": "34.054500579833984", + "longitude_deg": "-118.22899627685547", + "elevation_ft": "353", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "58CA", + "local_code": "58CA" + }, + { + "id": "12162", + "ident": "58CL", + "type": "small_airport", + "name": "Borrego Air Ranch Airport", + "latitude_deg": "33.1917", + "longitude_deg": "-116.276001", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Borrego Springs", + "scheduled_service": "no", + "gps_code": "58CL", + "local_code": "58CL" + }, + { + "id": "12163", + "ident": "58CN", + "type": "heliport", + "name": "Jackson Lake Heliport", + "latitude_deg": "39.462398529052734", + "longitude_deg": "-120.56600189208984", + "elevation_ft": "6650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Jackson Lake", + "scheduled_service": "no", + "gps_code": "58CN", + "local_code": "58CN" + }, + { + "id": "12164", + "ident": "58CO", + "type": "heliport", + "name": "Purgatory Nr One Heliport", + "latitude_deg": "37.627201080322266", + "longitude_deg": "-107.80400085449219", + "elevation_ft": "8700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Durango", + "scheduled_service": "no", + "gps_code": "58CO", + "local_code": "58CO" + }, + { + "id": "12165", + "ident": "58F", + "type": "closed", + "name": "Lane Field", + "latitude_deg": "33.365398", + "longitude_deg": "-97.146103", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanger", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lane_Field_Airport", + "keywords": "58F" + }, + { + "id": "346408", + "ident": "58FA", + "type": "heliport", + "name": "Saint Joseph's Hospital South Heliport", + "latitude_deg": "27.786979", + "longitude_deg": "-82.345764", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Riverview", + "scheduled_service": "no", + "gps_code": "58FA", + "local_code": "58FA" + }, + { + "id": "12166", + "ident": "58FD", + "type": "small_airport", + "name": "Southerly Airport", + "latitude_deg": "28.01420021057129", + "longitude_deg": "-81.54060363769531", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Dundee", + "scheduled_service": "no", + "gps_code": "58FD", + "local_code": "58FD" + }, + { + "id": "12167", + "ident": "58FL", + "type": "heliport", + "name": "AIM Heliport", + "latitude_deg": "26.415227", + "longitude_deg": "-80.183416", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Boca Raton", + "scheduled_service": "no", + "gps_code": "58FL", + "local_code": "58FL" + }, + { + "id": "12168", + "ident": "58GA", + "type": "heliport", + "name": "Washington County Regional Medical Center Heliport", + "latitude_deg": "32.997898101800004", + "longitude_deg": "-82.8046035767", + "elevation_ft": "458", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Sandersville", + "scheduled_service": "no", + "gps_code": "58GA", + "local_code": "58GA" + }, + { + "id": "12169", + "ident": "58II", + "type": "small_airport", + "name": "Henneman Airport", + "latitude_deg": "39.52090072631836", + "longitude_deg": "-85.9000015258789", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Boggstown", + "scheduled_service": "no", + "gps_code": "58II", + "local_code": "58II" + }, + { + "id": "12170", + "ident": "58IL", + "type": "small_airport", + "name": "Spangler Airport", + "latitude_deg": "41.240254", + "longitude_deg": "-87.857666", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Manteno", + "scheduled_service": "no", + "gps_code": "58IL", + "local_code": "58IL" + }, + { + "id": "12171", + "ident": "58IN", + "type": "small_airport", + "name": "Hilltop Airport", + "latitude_deg": "41.258399963378906", + "longitude_deg": "-84.86389923095703", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Spencerville", + "scheduled_service": "no", + "gps_code": "58IN", + "local_code": "58IN" + }, + { + "id": "12172", + "ident": "58IS", + "type": "heliport", + "name": "Va Medical Center Heliport", + "latitude_deg": "37.72370147705078", + "longitude_deg": "-88.95700073242188", + "elevation_ft": "464", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "58IS", + "local_code": "58IS" + }, + { + "id": "12173", + "ident": "58J", + "type": "small_airport", + "name": "Huggins Memorial Airport", + "latitude_deg": "34.137699127197266", + "longitude_deg": "-79.92060089111328", + "elevation_ft": "143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Timmonsville", + "scheduled_service": "no", + "gps_code": "58J", + "local_code": "58J" + }, + { + "id": "12174", + "ident": "58KS", + "type": "small_airport", + "name": "Burger's Valley Airport", + "latitude_deg": "38.92219924926758", + "longitude_deg": "-97.70860290527344", + "elevation_ft": "1325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Salina", + "scheduled_service": "no", + "gps_code": "58KS", + "local_code": "58KS" + }, + { + "id": "12175", + "ident": "58KY", + "type": "small_airport", + "name": "Willow Island Airpark", + "latitude_deg": "38.12089920043945", + "longitude_deg": "-85.33190155029297", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Finchville", + "scheduled_service": "no", + "gps_code": "58KY", + "local_code": "58KY" + }, + { + "id": "12176", + "ident": "58LA", + "type": "small_airport", + "name": "Sydal Acres Airport", + "latitude_deg": "30.921885", + "longitude_deg": "-91.169186", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "58LA", + "local_code": "58LA" + }, + { + "id": "12177", + "ident": "58MA", + "type": "heliport", + "name": "Boston Scientific Marlboro Heliport", + "latitude_deg": "42.361698150634766", + "longitude_deg": "-71.50890350341797", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Marlboro", + "scheduled_service": "no", + "gps_code": "58MA", + "local_code": "58MA" + }, + { + "id": "45476", + "ident": "58MI", + "type": "heliport", + "name": "ProMedica Monroe Regional Hospital Heliport", + "latitude_deg": "41.923879", + "longitude_deg": "-83.388818", + "elevation_ft": "603", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "58MI", + "local_code": "58MI", + "keywords": "Mercy Memorial Hospital Heliport" + }, + { + "id": "12178", + "ident": "58MN", + "type": "small_airport", + "name": "Northwest Angle Airport", + "latitude_deg": "49.349954", + "longitude_deg": "-95.077057", + "elevation_ft": "1071", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Warroad", + "scheduled_service": "no", + "keywords": "58MN" + }, + { + "id": "12179", + "ident": "58MO", + "type": "heliport", + "name": "Mercy Hospital Jefferson Heliport", + "latitude_deg": "38.196278", + "longitude_deg": "-90.392397", + "elevation_ft": "435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Festus", + "scheduled_service": "no", + "gps_code": "58MO", + "local_code": "58MO", + "keywords": "Jefferson Memorial Hospital Heliport" + }, + { + "id": "331080", + "ident": "58MT", + "type": "small_airport", + "name": "Galt Ranch Airport", + "latitude_deg": "46.544277", + "longitude_deg": "-111.069988", + "elevation_ft": "5156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "White Sulphur Springs", + "scheduled_service": "no", + "gps_code": "58MT", + "local_code": "58MT" + }, + { + "id": "12180", + "ident": "58N", + "type": "small_airport", + "name": "Reigle Field", + "latitude_deg": "40.287601470947266", + "longitude_deg": "-76.57749938964844", + "elevation_ft": "489", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Palmyra", + "scheduled_service": "no", + "gps_code": "58N", + "local_code": "58N" + }, + { + "id": "12181", + "ident": "58NC", + "type": "small_airport", + "name": "Fox Haven Plantation Airport", + "latitude_deg": "35.348434", + "longitude_deg": "-82.052915", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Rutherfordton", + "scheduled_service": "no", + "gps_code": "58NC", + "local_code": "58NC" + }, + { + "id": "12182", + "ident": "58NE", + "type": "heliport", + "name": "Nebraska Methodist Hospital Heliport", + "latitude_deg": "41.25920104980469", + "longitude_deg": "-96.04080200195312", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Omaha", + "scheduled_service": "no", + "gps_code": "58NE", + "local_code": "58NE" + }, + { + "id": "12183", + "ident": "58NJ", + "type": "seaplane_base", + "name": "Harrah's Landing Seaplane Base", + "latitude_deg": "39.386199951171875", + "longitude_deg": "-74.4260025024414", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Atlantic City", + "scheduled_service": "no", + "gps_code": "58NJ", + "local_code": "58NJ" + }, + { + "id": "346687", + "ident": "58NR", + "type": "small_airport", + "name": "Chase Field", + "latitude_deg": "35.42527", + "longitude_deg": "-77.597401", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hookerton", + "scheduled_service": "no", + "gps_code": "58NR", + "local_code": "58NR" + }, + { + "id": "12184", + "ident": "58NY", + "type": "heliport", + "name": "Freeport Heliport", + "latitude_deg": "40.65060043334961", + "longitude_deg": "-73.56790161132812", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Freeport", + "scheduled_service": "no", + "gps_code": "58NY", + "local_code": "58NY" + }, + { + "id": "12185", + "ident": "58OH", + "type": "small_airport", + "name": "Rattlesnake Island Airport", + "latitude_deg": "41.678511", + "longitude_deg": "-82.848823", + "elevation_ft": "586", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Put In Bay", + "scheduled_service": "no", + "gps_code": "58OH", + "local_code": "58OH" + }, + { + "id": "12186", + "ident": "58OI", + "type": "heliport", + "name": "Harrington Square Heliport", + "latitude_deg": "41.461700439453125", + "longitude_deg": "-81.08540344238281", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Middlefield", + "scheduled_service": "no", + "gps_code": "58OI", + "local_code": "58OI" + }, + { + "id": "12187", + "ident": "58OK", + "type": "heliport", + "name": "Jane Phillips Heliport", + "latitude_deg": "36.7333984375", + "longitude_deg": "-95.91690063476562", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Bartlesville", + "scheduled_service": "no", + "gps_code": "58OK", + "local_code": "58OK" + }, + { + "id": "12188", + "ident": "58OR", + "type": "small_airport", + "name": "Umpqua Airport", + "latitude_deg": "43.30970001220703", + "longitude_deg": "-123.12699890136719", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Roseburg", + "scheduled_service": "no", + "gps_code": "58OR", + "local_code": "58OR" + }, + { + "id": "12189", + "ident": "58PA", + "type": "closed", + "name": "Tallman East Airport", + "latitude_deg": "40.591801", + "longitude_deg": "-76.514395", + "elevation_ft": "842", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tower City", + "scheduled_service": "no", + "keywords": "58PA" + }, + { + "id": "12190", + "ident": "58S", + "type": "small_airport", + "name": "Whitefish Airport", + "latitude_deg": "48.40800094604492", + "longitude_deg": "-114.30000305175781", + "elevation_ft": "3066", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Whitefish", + "scheduled_service": "no", + "gps_code": "58S", + "local_code": "58S" + }, + { + "id": "334465", + "ident": "58TA", + "type": "heliport", + "name": "Barton Creek Resort Heliport", + "latitude_deg": "30.292905", + "longitude_deg": "-97.859076", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "58TA" + }, + { + "id": "12192", + "ident": "58TE", + "type": "closed", + "name": "Mc Nabb Farm Airport", + "latitude_deg": "33.406502", + "longitude_deg": "-102.077003", + "elevation_ft": "3315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ropesville", + "scheduled_service": "no", + "keywords": "58TE" + }, + { + "id": "12193", + "ident": "58TS", + "type": "heliport", + "name": "Bald Eagle Pad Heliport", + "latitude_deg": "31.79789924621582", + "longitude_deg": "-97.37969970703125", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laguna Park", + "scheduled_service": "no", + "gps_code": "58TS", + "local_code": "58TS" + }, + { + "id": "12194", + "ident": "58TX", + "type": "small_airport", + "name": "Tailspin Estates Airport", + "latitude_deg": "32.65119934082031", + "longitude_deg": "-97.93360137939453", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no", + "gps_code": "58TX", + "local_code": "58TX" + }, + { + "id": "12195", + "ident": "58VA", + "type": "small_airport", + "name": "Walnut Hill Airport", + "latitude_deg": "38.59510040283203", + "longitude_deg": "-77.64610290527344", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Calverton", + "scheduled_service": "no", + "gps_code": "58VA", + "local_code": "58VA" + }, + { + "id": "12196", + "ident": "58WA", + "type": "small_airport", + "name": "Dye Seed Ranch Airport", + "latitude_deg": "46.505548", + "longitude_deg": "-117.453338", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Pomeroy", + "scheduled_service": "no", + "gps_code": "58WA", + "local_code": "58WA" + }, + { + "id": "12197", + "ident": "58WI", + "type": "closed", + "name": "Geo Jensen Airport", + "latitude_deg": "45.6451", + "longitude_deg": "-92.366402", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Frederic", + "scheduled_service": "no", + "keywords": "58WI" + }, + { + "id": "351640", + "ident": "58WT", + "type": "heliport", + "name": "Goshen Heliport", + "latitude_deg": "48.852178", + "longitude_deg": "-122.330275", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Bellingham", + "scheduled_service": "no", + "gps_code": "58WT", + "local_code": "58WT" + }, + { + "id": "12198", + "ident": "58XS", + "type": "small_airport", + "name": "Mc Entire's Lazy V Ranch Airport", + "latitude_deg": "31.8306999207", + "longitude_deg": "-101.055999756", + "elevation_ft": "2360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sterling City", + "scheduled_service": "no", + "gps_code": "58XS", + "local_code": "58XS" + }, + { + "id": "12199", + "ident": "59AK", + "type": "small_airport", + "name": "Penderosa Airport", + "latitude_deg": "61.63180161", + "longitude_deg": "-149.3410034", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "59AK", + "local_code": "59AK" + }, + { + "id": "346570", + "ident": "59AR", + "type": "small_airport", + "name": "Hodges Airport", + "latitude_deg": "35.882086", + "longitude_deg": "-90.612505", + "elevation_ft": "271", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Jonesboro", + "scheduled_service": "no", + "gps_code": "59AR", + "local_code": "59AR" + }, + { + "id": "45910", + "ident": "59AS", + "type": "small_airport", + "name": "Becker Field", + "latitude_deg": "45.850669", + "longitude_deg": "-122.544514", + "elevation_ft": "1720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Battle Ground", + "scheduled_service": "no", + "gps_code": "59AS", + "local_code": "59AS" + }, + { + "id": "12200", + "ident": "59AZ", + "type": "small_airport", + "name": "Robin STOLport", + "latitude_deg": "34.74449920654297", + "longitude_deg": "-112.44499969482422", + "elevation_ft": "4772", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Chino Valley", + "scheduled_service": "no", + "gps_code": "59AZ", + "local_code": "59AZ" + }, + { + "id": "12201", + "ident": "59B", + "type": "small_airport", + "name": "Newton Field", + "latitude_deg": "45.6328010559082", + "longitude_deg": "-70.2488021850586", + "elevation_ft": "1178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Jackman", + "scheduled_service": "no", + "gps_code": "59B", + "local_code": "59B" + }, + { + "id": "12202", + "ident": "59CA", + "type": "closed", + "name": "Little Hands Airport", + "latitude_deg": "37.803299", + "longitude_deg": "-122.028999", + "elevation_ft": "1008", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Ramon", + "scheduled_service": "no", + "keywords": "59CA, Little Hands STOLport (2007}" + }, + { + "id": "12203", + "ident": "59CL", + "type": "closed", + "name": "O'Connell Brothers Airport", + "latitude_deg": "32.959635", + "longitude_deg": "-115.544586", + "elevation_ft": "-99", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Brawley", + "scheduled_service": "no", + "gps_code": "59CL", + "local_code": "59CL" + }, + { + "id": "12204", + "ident": "59CN", + "type": "small_airport", + "name": "James Brothers Airport", + "latitude_deg": "38.83489990234375", + "longitude_deg": "-121.52999877929688", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pleasant Grove", + "scheduled_service": "no", + "gps_code": "59CN", + "local_code": "59CN" + }, + { + "id": "12205", + "ident": "59CO", + "type": "closed", + "name": "Comanche Livestock Airport", + "latitude_deg": "39.83486", + "longitude_deg": "-104.325802", + "elevation_ft": "5230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Strasburg", + "scheduled_service": "no", + "gps_code": "59CO", + "local_code": "59CO" + }, + { + "id": "12206", + "ident": "59FD", + "type": "small_airport", + "name": "Big Cypress Airfield", + "latitude_deg": "26.32615", + "longitude_deg": "-80.987919", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Immokalee", + "scheduled_service": "no", + "gps_code": "59FD", + "local_code": "59FD" + }, + { + "id": "12207", + "ident": "59FL", + "type": "heliport", + "name": "Florida Power & Light-Juno Beach Heliport", + "latitude_deg": "26.85953", + "longitude_deg": "-80.058042", + "elevation_ft": "61", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Juno Beach", + "scheduled_service": "no", + "gps_code": "59FL", + "local_code": "59FL" + }, + { + "id": "12208", + "ident": "59GA", + "type": "heliport", + "name": "Barrow Medical Center Heliport", + "latitude_deg": "34.01369857788086", + "longitude_deg": "-83.71160125732422", + "elevation_ft": "948", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Winder", + "scheduled_service": "no", + "gps_code": "59GA", + "local_code": "59GA" + }, + { + "id": "332501", + "ident": "59IA", + "type": "small_airport", + "name": "Bellevue Farms Airport", + "latitude_deg": "41.622344", + "longitude_deg": "-92.062401", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Williamsburg", + "scheduled_service": "no", + "gps_code": "59IA", + "local_code": "59IA" + }, + { + "id": "46296", + "ident": "59ID", + "type": "balloonport", + "name": "Palisades Field", + "latitude_deg": "43.184833", + "longitude_deg": "-111.049361", + "elevation_ft": "5624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Palisades", + "scheduled_service": "no", + "gps_code": "59ID", + "local_code": "59ID" + }, + { + "id": "12209", + "ident": "59II", + "type": "small_airport", + "name": "Posey Patch Ultralightport", + "latitude_deg": "37.9039", + "longitude_deg": "-87.790298", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "local_code": "IN3", + "keywords": "59II" + }, + { + "id": "12210", + "ident": "59IL", + "type": "small_airport", + "name": "Ruder Airport", + "latitude_deg": "41.92580032348633", + "longitude_deg": "-88.64640045166016", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Maple Park", + "scheduled_service": "no", + "gps_code": "59IL", + "local_code": "59IL" + }, + { + "id": "12211", + "ident": "59IN", + "type": "closed", + "name": "Stuntz & Hochstetler Pines Airport", + "latitude_deg": "41.473701", + "longitude_deg": "-86.450798", + "elevation_ft": "739", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Walkerton", + "scheduled_service": "no", + "keywords": "59IN" + }, + { + "id": "12212", + "ident": "59IS", + "type": "heliport", + "name": "HSHS Holy Family Hospital Heliport", + "latitude_deg": "38.903334", + "longitude_deg": "-89.406725", + "elevation_ft": "585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "59IS", + "local_code": "59IS", + "keywords": "Edward A Utlaut Memorial Hospital, Greenville Regional Hospital Heliport" + }, + { + "id": "12213", + "ident": "59KS", + "type": "closed", + "name": "Dunn Field", + "latitude_deg": "38.408401", + "longitude_deg": "-95.019095", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Beagle", + "scheduled_service": "no", + "keywords": "59KS" + }, + { + "id": "12214", + "ident": "59KY", + "type": "small_airport", + "name": "Samuels Springs Airport", + "latitude_deg": "37.89780044555664", + "longitude_deg": "-85.5551986694336", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Deatsville", + "scheduled_service": "no", + "gps_code": "59KY", + "local_code": "59KY" + }, + { + "id": "12215", + "ident": "59L", + "type": "heliport", + "name": "Los Angeles City Hall East Heliport", + "latitude_deg": "34.053095", + "longitude_deg": "-118.241912", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "local_code": "59L" + }, + { + "id": "12216", + "ident": "59LA", + "type": "heliport", + "name": "Transco Delcambre Heliport", + "latitude_deg": "29.950199127197266", + "longitude_deg": "-91.98259735107422", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Delcambre", + "scheduled_service": "no", + "gps_code": "59LA", + "local_code": "59LA" + }, + { + "id": "12217", + "ident": "59M", + "type": "small_airport", + "name": "Torchport Airport", + "latitude_deg": "45.05580139160156", + "longitude_deg": "-85.35590362548828", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Eastport", + "scheduled_service": "no", + "gps_code": "59M", + "local_code": "59M" + }, + { + "id": "12218", + "ident": "59MI", + "type": "heliport", + "name": "Janski Heliport", + "latitude_deg": "42.690411", + "longitude_deg": "-82.561502", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Marine City", + "scheduled_service": "no", + "gps_code": "59MI", + "local_code": "59MI" + }, + { + "id": "12219", + "ident": "59MN", + "type": "small_airport", + "name": "Cox-Coyour Memorial Field", + "latitude_deg": "48.5994", + "longitude_deg": "-95.186897", + "elevation_ft": "1304", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Roosevelt", + "scheduled_service": "no", + "gps_code": "59MN", + "local_code": "59MN" + }, + { + "id": "12220", + "ident": "59MO", + "type": "heliport", + "name": "Hermann Area Hospital Heliport", + "latitude_deg": "38.69279861450195", + "longitude_deg": "-91.45130157470703", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hermann", + "scheduled_service": "no", + "gps_code": "59MO", + "local_code": "59MO" + }, + { + "id": "12221", + "ident": "59NC", + "type": "small_airport", + "name": "Mclean Brothers Airport", + "latitude_deg": "36.0974006652832", + "longitude_deg": "-79.5552978515625", + "elevation_ft": "696", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Gibsonville", + "scheduled_service": "no", + "gps_code": "59NC", + "local_code": "59NC" + }, + { + "id": "12222", + "ident": "59NE", + "type": "closed", + "name": "Nelson Airport", + "latitude_deg": "41.0811", + "longitude_deg": "-98.629501", + "elevation_ft": "1982", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Boelus", + "scheduled_service": "no", + "keywords": "59NE" + }, + { + "id": "12223", + "ident": "59NJ", + "type": "heliport", + "name": "Due Process Stables Heliport", + "latitude_deg": "40.30459976196289", + "longitude_deg": "-74.10790252685547", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Colts Neck", + "scheduled_service": "no", + "gps_code": "59NJ", + "local_code": "59NJ" + }, + { + "id": "12224", + "ident": "59NM", + "type": "closed", + "name": "Lockmiller & Sons Airport", + "latitude_deg": "34.547923", + "longitude_deg": "-103.464346", + "elevation_ft": "4559", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Clovis", + "scheduled_service": "no" + }, + { + "id": "12225", + "ident": "59NY", + "type": "small_airport", + "name": "Bent-Wing Airport", + "latitude_deg": "43.23059844970703", + "longitude_deg": "-78.69000244140625", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Lockport", + "scheduled_service": "no", + "gps_code": "59NY", + "local_code": "59NY" + }, + { + "id": "12226", + "ident": "59OH", + "type": "small_airport", + "name": "Kelch Airport", + "latitude_deg": "38.97529983520508", + "longitude_deg": "-84.0342025756836", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bethel", + "scheduled_service": "no", + "gps_code": "59OH", + "local_code": "59OH" + }, + { + "id": "12227", + "ident": "59OI", + "type": "heliport", + "name": "Airwolf Heliport", + "latitude_deg": "41.450199127197266", + "longitude_deg": "-81.05079650878906", + "elevation_ft": "1155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Middlefield", + "scheduled_service": "no", + "gps_code": "59OI", + "local_code": "59OI" + }, + { + "id": "12228", + "ident": "59OK", + "type": "heliport", + "name": "Camp Gruber Heliport", + "latitude_deg": "35.67495", + "longitude_deg": "-95.201342", + "elevation_ft": "586", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Braggs", + "scheduled_service": "no", + "gps_code": "59OK", + "local_code": "59OK" + }, + { + "id": "12229", + "ident": "59OR", + "type": "heliport", + "name": "Mc Nary Dam Heliport", + "latitude_deg": "45.9319000244", + "longitude_deg": "-119.29699707", + "elevation_ft": "366", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Umatilla", + "scheduled_service": "no", + "gps_code": "59OR", + "local_code": "59OR" + }, + { + "id": "12230", + "ident": "59PA", + "type": "small_airport", + "name": "Erkes Airport", + "latitude_deg": "40.537601470947266", + "longitude_deg": "-75.08709716796875", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Upper Black Eddy", + "scheduled_service": "no", + "gps_code": "59PA", + "local_code": "59PA" + }, + { + "id": "12231", + "ident": "59PN", + "type": "closed", + "name": "Brookside Farms Airport", + "latitude_deg": "40.315899", + "longitude_deg": "-76.685799", + "elevation_ft": "489", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hershey", + "scheduled_service": "no", + "keywords": "59PN" + }, + { + "id": "12232", + "ident": "59TA", + "type": "heliport", + "name": "Kaneb Heliport", + "latitude_deg": "29.61520004272461", + "longitude_deg": "-95.60440063476562", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sugar Land", + "scheduled_service": "no", + "gps_code": "59TA", + "local_code": "59TA" + }, + { + "id": "12233", + "ident": "59TE", + "type": "closed", + "name": "Hoffpauir Airport", + "latitude_deg": "29.80579948", + "longitude_deg": "-95.752998352051", + "elevation_ft": "133", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Katy", + "scheduled_service": "no", + "gps_code": "59TE", + "local_code": "59TE" + }, + { + "id": "12234", + "ident": "59TN", + "type": "heliport", + "name": "Burnett Heliport", + "latitude_deg": "35.39609909057617", + "longitude_deg": "-89.67579650878906", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Atoka", + "scheduled_service": "no", + "gps_code": "59TN", + "local_code": "59TN" + }, + { + "id": "12235", + "ident": "59TS", + "type": "small_airport", + "name": "Rossler Ranch Airport", + "latitude_deg": "28.14310073852539", + "longitude_deg": "-98.1583023071289", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "George West", + "scheduled_service": "no", + "gps_code": "59TS", + "local_code": "59TS" + }, + { + "id": "12236", + "ident": "59TX", + "type": "small_airport", + "name": "Benjamin Franklin Airport", + "latitude_deg": "32.487442", + "longitude_deg": "-97.490208", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Godley", + "scheduled_service": "no", + "gps_code": "59TX", + "local_code": "59TX" + }, + { + "id": "12237", + "ident": "59VA", + "type": "heliport", + "name": "Humphrey's Heliport", + "latitude_deg": "36.94200134277344", + "longitude_deg": "-82.643798828125", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Norton", + "scheduled_service": "no", + "gps_code": "59VA", + "local_code": "59VA" + }, + { + "id": "12238", + "ident": "59WA", + "type": "small_airport", + "name": "Sorrell Airport", + "latitude_deg": "46.85011", + "longitude_deg": "-122.936261", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tenino", + "scheduled_service": "no", + "gps_code": "59WA", + "local_code": "59WA" + }, + { + "id": "12239", + "ident": "59WI", + "type": "small_airport", + "name": "Little Wheel Field", + "latitude_deg": "43.03390121459961", + "longitude_deg": "-89.19259643554688", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Cottage Grove", + "scheduled_service": "no", + "gps_code": "59WI", + "local_code": "59WI" + }, + { + "id": "349105", + "ident": "59XA", + "type": "heliport", + "name": "Texas Farms and Ranches Heliport", + "latitude_deg": "32.568362", + "longitude_deg": "-94.732881", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Longview", + "scheduled_service": "no", + "gps_code": "59XA", + "local_code": "59XA" + }, + { + "id": "12240", + "ident": "59XS", + "type": "heliport", + "name": "Baylor Scott & White Medical Center Temple Heliport", + "latitude_deg": "31.076709", + "longitude_deg": "-97.364813", + "elevation_ft": "734", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Temple", + "scheduled_service": "no", + "gps_code": "59XS", + "local_code": "59XS" + }, + { + "id": "12241", + "ident": "5A2", + "type": "small_airport", + "name": "Warner Robins Air Park", + "latitude_deg": "32.55929946899414", + "longitude_deg": "-83.67489624023438", + "elevation_ft": "409", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Warner Robins", + "scheduled_service": "no", + "gps_code": "5A2", + "local_code": "5A2" + }, + { + "id": "12242", + "ident": "5A5", + "type": "small_airport", + "name": "Silver Wings Field", + "latitude_deg": "36.430084", + "longitude_deg": "-93.69558", + "elevation_ft": "1571", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Eureka Springs", + "scheduled_service": "no", + "local_code": "55AR", + "home_link": "http://www.aviationcadet.com/index.html", + "keywords": "5A5" + }, + { + "id": "12243", + "ident": "5A8", + "type": "medium_airport", + "name": "Aleknagik / New Airport", + "latitude_deg": "59.2826004028", + "longitude_deg": "-158.617996216", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Aleknagik", + "scheduled_service": "yes", + "gps_code": "5A8", + "iata_code": "WKK", + "local_code": "5A8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aleknagik_Airport" + }, + { + "id": "12244", + "ident": "5AK", + "type": "seaplane_base", + "name": "Tazlina /Smokey Lake/ Seaplane Base", + "latitude_deg": "62.0634002686", + "longitude_deg": "-146.449005127", + "elevation_ft": "2407", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tazlina", + "scheduled_service": "no", + "gps_code": "5AK", + "local_code": "5AK" + }, + { + "id": "12245", + "ident": "5AK0", + "type": "small_airport", + "name": "Trading Bay Production Airport", + "latitude_deg": "60.816338", + "longitude_deg": "-151.799901", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Trading Bay", + "scheduled_service": "no", + "gps_code": "5AK0", + "local_code": "5AK0" + }, + { + "id": "12246", + "ident": "5AK1", + "type": "heliport", + "name": "Beluga Heliport", + "latitude_deg": "61.18080139160156", + "longitude_deg": "-151.04100036621094", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tyonek", + "scheduled_service": "no", + "gps_code": "5AK1", + "local_code": "5AK1" + }, + { + "id": "12247", + "ident": "5AK2", + "type": "small_airport", + "name": "Howards Airport", + "latitude_deg": "64.73069763183594", + "longitude_deg": "-147.34800720214844", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "North Pole", + "scheduled_service": "no", + "gps_code": "5AK2", + "local_code": "5AK2" + }, + { + "id": "12248", + "ident": "5AK3", + "type": "small_airport", + "name": "Airway Airport", + "latitude_deg": "64.7732009888", + "longitude_deg": "-147.333999634", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "North Pole", + "scheduled_service": "no", + "gps_code": "5AK3", + "local_code": "5AK3" + }, + { + "id": "12249", + "ident": "5AK4", + "type": "heliport", + "name": "Eagles Nest Heliport", + "latitude_deg": "61.606098", + "longitude_deg": "-149.039006", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "keywords": "5AK4" + }, + { + "id": "12250", + "ident": "5AK5", + "type": "small_airport", + "name": "Todds Strip", + "latitude_deg": "61.657100677490234", + "longitude_deg": "-149.46200561523438", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "5AK5", + "local_code": "5AK5" + }, + { + "id": "12251", + "ident": "5AK6", + "type": "small_airport", + "name": "Colberg Airport", + "latitude_deg": "61.55699920654297", + "longitude_deg": "-149.26800537109375", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "5AK6", + "local_code": "5AK6" + }, + { + "id": "12252", + "ident": "5AK8", + "type": "small_airport", + "name": "Memory Lake Airport", + "latitude_deg": "61.63140106201172", + "longitude_deg": "-149.4320068359375", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "5AK8", + "local_code": "5AK8" + }, + { + "id": "12253", + "ident": "5AK9", + "type": "small_airport", + "name": "Grandview Subdivision Airport", + "latitude_deg": "61.548500061035156", + "longitude_deg": "-149.19000244140625", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "5AK9", + "local_code": "5AK9" + }, + { + "id": "12254", + "ident": "5AL", + "type": "seaplane_base", + "name": "Fish River Seaplane Base", + "latitude_deg": "30.450000762939453", + "longitude_deg": "-87.80780029296875", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fairhope", + "scheduled_service": "no", + "gps_code": "5AL", + "local_code": "5AL" + }, + { + "id": "323167", + "ident": "5AL0", + "type": "heliport", + "name": "Marshall Medical Center North Heliport", + "latitude_deg": "34.365172", + "longitude_deg": "-86.422975", + "elevation_ft": "1024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Guntersville", + "scheduled_service": "no", + "gps_code": "5AL0", + "local_code": "5AL0" + }, + { + "id": "12255", + "ident": "5AL1", + "type": "small_airport", + "name": "Mc Gowin Field", + "latitude_deg": "31.6807003021", + "longitude_deg": "-86.68190002440001", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Chapman", + "scheduled_service": "no", + "gps_code": "5AL1", + "local_code": "5AL1" + }, + { + "id": "12256", + "ident": "5AL2", + "type": "heliport", + "name": "Midstream Fuel Service Seaplane Base Heliport", + "latitude_deg": "30.526599884", + "longitude_deg": "-88.09889984130001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Theodore", + "scheduled_service": "no", + "gps_code": "5AL2", + "local_code": "5AL2" + }, + { + "id": "12257", + "ident": "5AL3", + "type": "small_airport", + "name": "Flying X Ranch Airport", + "latitude_deg": "33.15290069580078", + "longitude_deg": "-86.85140228271484", + "elevation_ft": "466", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Montevallo", + "scheduled_service": "no", + "gps_code": "5AL3", + "local_code": "5AL3" + }, + { + "id": "12258", + "ident": "5AL4", + "type": "closed", + "name": "Blueberry Hill Airport", + "latitude_deg": "31.121599", + "longitude_deg": "-85.365403", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Dothan", + "scheduled_service": "no", + "keywords": "5AL4" + }, + { + "id": "12259", + "ident": "5AL5", + "type": "small_airport", + "name": "Big River Airpark", + "latitude_deg": "34.69110107421875", + "longitude_deg": "-87.65280151367188", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Muscle Shoals", + "scheduled_service": "no", + "gps_code": "5AL5", + "local_code": "5AL5" + }, + { + "id": "45236", + "ident": "5AL6", + "type": "heliport", + "name": "Lake Martin Community Hospital Heliport", + "latitude_deg": "32.818486", + "longitude_deg": "-85.74151", + "elevation_ft": "589", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Dadeville", + "scheduled_service": "no", + "gps_code": "5AL6", + "local_code": "5AL6" + }, + { + "id": "12260", + "ident": "5AL7", + "type": "small_airport", + "name": "John H Hataway Airport", + "latitude_deg": "31.25", + "longitude_deg": "-86.166702", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Kinston", + "scheduled_service": "no", + "gps_code": "5AL7", + "local_code": "5AL7", + "keywords": "Hataway Field" + }, + { + "id": "12261", + "ident": "5AL8", + "type": "small_airport", + "name": "Fairlane Airport", + "latitude_deg": "31.104999542236328", + "longitude_deg": "-85.99310302734375", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Samson", + "scheduled_service": "no", + "gps_code": "5AL8", + "local_code": "5AL8" + }, + { + "id": "323158", + "ident": "5AL9", + "type": "heliport", + "name": "Athens-Limestone Hospital Helipad", + "latitude_deg": "34.802816", + "longitude_deg": "-86.980605", + "elevation_ft": "693", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Athens", + "scheduled_service": "no", + "gps_code": "5AL9", + "local_code": "5AL9" + }, + { + "id": "12262", + "ident": "5AR1", + "type": "small_airport", + "name": "Tillar Airport", + "latitude_deg": "33.711943", + "longitude_deg": "-91.46182", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Tillar", + "scheduled_service": "no", + "gps_code": "5AR1", + "local_code": "5AR1" + }, + { + "id": "12263", + "ident": "5AR2", + "type": "small_airport", + "name": "Turrell Flying Service Airport", + "latitude_deg": "35.375", + "longitude_deg": "-90.2063980102539", + "elevation_ft": "226", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Turrell", + "scheduled_service": "no", + "gps_code": "5AR2", + "local_code": "5AR2" + }, + { + "id": "12264", + "ident": "5AR3", + "type": "closed", + "name": "Wabbaseka Flying Service Airport", + "latitude_deg": "34.350101", + "longitude_deg": "-91.783501", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Wabbaseka", + "scheduled_service": "no", + "keywords": "5AR3" + }, + { + "id": "12265", + "ident": "5AR4", + "type": "heliport", + "name": "Medical Park Hospital Heliport", + "latitude_deg": "33.64820098876953", + "longitude_deg": "-93.58550262451172", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Hope", + "scheduled_service": "no", + "gps_code": "5AR4", + "local_code": "5AR4" + }, + { + "id": "12266", + "ident": "5AR5", + "type": "heliport", + "name": "Baptist Health Extended Care Heliport", + "latitude_deg": "34.744495", + "longitude_deg": "-92.38053", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Little Rock", + "scheduled_service": "no", + "gps_code": "5AR5", + "local_code": "5AR5", + "keywords": "Med Flight Heliport" + }, + { + "id": "12267", + "ident": "5AR6", + "type": "heliport", + "name": "Southwest Hospital Heliport", + "latitude_deg": "34.65679931640625", + "longitude_deg": "-92.40460205078125", + "elevation_ft": "344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Little Rock", + "scheduled_service": "no", + "gps_code": "5AR6", + "local_code": "5AR6" + }, + { + "id": "12268", + "ident": "5AR7", + "type": "small_airport", + "name": "Keller Airfield", + "latitude_deg": "35.68669891357422", + "longitude_deg": "-90.7936019897461", + "elevation_ft": "249", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Weiner", + "scheduled_service": "no", + "gps_code": "5AR7", + "local_code": "5AR7" + }, + { + "id": "12269", + "ident": "5AR8", + "type": "closed", + "name": "Pine Prairie Airport", + "latitude_deg": "33.614549", + "longitude_deg": "-94.132404", + "elevation_ft": "321", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Ashdown", + "scheduled_service": "no", + "keywords": "5AR8" + }, + { + "id": "12270", + "ident": "5AR9", + "type": "heliport", + "name": "Baxter County Regional Hospital Heliport", + "latitude_deg": "36.34173", + "longitude_deg": "-92.39892", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Mountain Home", + "scheduled_service": "no", + "gps_code": "5AR9", + "local_code": "5AR9" + }, + { + "id": "12271", + "ident": "5AZ0", + "type": "heliport", + "name": "Lyon Aviation Rooftop Heliport", + "latitude_deg": "33.625332", + "longitude_deg": "-111.921611", + "elevation_ft": "1508", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Scottsdale", + "scheduled_service": "no", + "gps_code": "5AZ0", + "local_code": "5AZ0", + "keywords": "Westcor Aviation Rooftop Heliport" + }, + { + "id": "12272", + "ident": "5AZ1", + "type": "closed", + "name": "Goldfield Ghost Town Heliport", + "latitude_deg": "33.4562", + "longitude_deg": "-111.491997", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Apache Junction", + "scheduled_service": "no", + "keywords": "5AZ1" + }, + { + "id": "12273", + "ident": "5AZ2", + "type": "heliport", + "name": "Southern Command Police Station Heliport", + "latitude_deg": "33.406898498535156", + "longitude_deg": "-112.0719985961914", + "elevation_ft": "1085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "5AZ2", + "local_code": "5AZ2" + }, + { + "id": "12274", + "ident": "5AZ3", + "type": "small_airport", + "name": "Pegasus Airpark", + "latitude_deg": "33.208666", + "longitude_deg": "-111.617221", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Queen Creek", + "scheduled_service": "no", + "gps_code": "5AZ3", + "local_code": "5AZ3", + "keywords": "Pegasus-Queen Creek-Phoenix Airpark" + }, + { + "id": "12275", + "ident": "5AZ4", + "type": "heliport", + "name": "University Medical Center Hospital Heliport", + "latitude_deg": "32.24193", + "longitude_deg": "-110.946271", + "elevation_ft": "2468", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no", + "local_code": "5AZ4" + }, + { + "id": "12276", + "ident": "5AZ5", + "type": "heliport", + "name": "Saguaro Heliport", + "latitude_deg": "32.174019", + "longitude_deg": "-110.73575", + "elevation_ft": "3102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no", + "gps_code": "5AZ5", + "local_code": "5AZ5", + "keywords": "tucson, saguaro" + }, + { + "id": "45291", + "ident": "5AZ6", + "type": "small_airport", + "name": "Motown Airport", + "latitude_deg": "32.925", + "longitude_deg": "-112.259444", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mobile", + "scheduled_service": "no", + "gps_code": "5AZ6", + "local_code": "5AZ6" + }, + { + "id": "12277", + "ident": "5AZ7", + "type": "small_airport", + "name": "Carranza Farm Airstrip", + "latitude_deg": "32.847181", + "longitude_deg": "-111.950791", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Stanfield", + "scheduled_service": "no", + "gps_code": "5AZ7", + "local_code": "5AZ7", + "keywords": "stanfield, carranza farm" + }, + { + "id": "12278", + "ident": "5AZ8", + "type": "heliport", + "name": "Sedona Medical Campus Heliport", + "latitude_deg": "34.85559844970703", + "longitude_deg": "-111.822998046875", + "elevation_ft": "4456", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sedona", + "scheduled_service": "no", + "gps_code": "5AZ8", + "local_code": "5AZ8" + }, + { + "id": "12279", + "ident": "5AZ9", + "type": "small_airport", + "name": "Regeneration Airport", + "latitude_deg": "33.032898", + "longitude_deg": "-109.986505", + "elevation_ft": "2750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Fort Thomas", + "scheduled_service": "no", + "gps_code": "5AZ9", + "local_code": "5AZ9" + }, + { + "id": "12280", + "ident": "5B1", + "type": "small_airport", + "name": "John H Boylan State (Island Pond) Airport", + "latitude_deg": "44.789694", + "longitude_deg": "-71.826068", + "elevation_ft": "1194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Island Pond", + "scheduled_service": "no", + "local_code": "5B1" + }, + { + "id": "12282", + "ident": "5B4", + "type": "small_airport", + "name": "Bowbells Municipal Airport", + "latitude_deg": "48.80970001220703", + "longitude_deg": "-102.24500274658203", + "elevation_ft": "1955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Bowbells", + "scheduled_service": "no", + "gps_code": "5B4", + "local_code": "5B4" + }, + { + "id": "12283", + "ident": "5B6", + "type": "small_airport", + "name": "Falmouth Airpark", + "latitude_deg": "41.585601806640625", + "longitude_deg": "-70.54039764404297", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Falmouth", + "scheduled_service": "no", + "gps_code": "5B6", + "local_code": "5B6" + }, + { + "id": "12284", + "ident": "5B7", + "type": "small_airport", + "name": "Rensselaer County Airport", + "latitude_deg": "42.69089889526367", + "longitude_deg": "-73.57959747314453", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "5B7", + "local_code": "5B7" + }, + { + "id": "12285", + "ident": "5B9", + "type": "small_airport", + "name": "Dean Memorial Airport", + "latitude_deg": "44.08060074", + "longitude_deg": "-72.00789642", + "elevation_ft": "582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Haverhill", + "scheduled_service": "no", + "gps_code": "5B9", + "local_code": "5B9" + }, + { + "id": "12286", + "ident": "5BK", + "type": "small_airport", + "name": "Black Rapids Airport", + "latitude_deg": "63.535099029541016", + "longitude_deg": "-145.86099243164062", + "elevation_ft": "2125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Black Rapids", + "scheduled_service": "no", + "gps_code": "5BK", + "local_code": "5BK" + }, + { + "id": "12287", + "ident": "5BL", + "type": "seaplane_base", + "name": "Homer-Beluga Lake Seaplane Base", + "latitude_deg": "59.64469909667969", + "longitude_deg": "-151.5019989013672", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Homer", + "scheduled_service": "no", + "gps_code": "5BL", + "local_code": "5BL" + }, + { + "id": "12288", + "ident": "5C5", + "type": "seaplane_base", + "name": "El Capitan Lodge Seaplane Base", + "latitude_deg": "55.95859909057617", + "longitude_deg": "-133.2530059814453", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Craig", + "scheduled_service": "no", + "gps_code": "5C5", + "local_code": "5C5" + }, + { + "id": "12289", + "ident": "5CA0", + "type": "heliport", + "name": "Dreamworks Helistop Glendale Heliport", + "latitude_deg": "34.15829849243164", + "longitude_deg": "-118.28600311279297", + "elevation_ft": "513", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no", + "gps_code": "5CA0", + "local_code": "5CA0" + }, + { + "id": "12290", + "ident": "5CA1", + "type": "heliport", + "name": "Chevron - San Ardo Heliport", + "latitude_deg": "35.956367", + "longitude_deg": "-120.869629", + "elevation_ft": "449", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Ardo", + "scheduled_service": "no", + "gps_code": "5CA1", + "local_code": "5CA1", + "keywords": "Texaco - San Ardo" + }, + { + "id": "12291", + "ident": "5CA2", + "type": "heliport", + "name": "Ord Mountain Heliport", + "latitude_deg": "34.6753762358", + "longitude_deg": "-116.815349758", + "elevation_ft": "6120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Barstow", + "scheduled_service": "no", + "gps_code": "5CA2", + "local_code": "5CA2" + }, + { + "id": "12292", + "ident": "5CA3", + "type": "heliport", + "name": "San Rafel Private Heliport", + "latitude_deg": "37.94660186767578", + "longitude_deg": "-122.48699951171875", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Rafel", + "scheduled_service": "no", + "gps_code": "5CA3", + "local_code": "5CA3" + }, + { + "id": "12293", + "ident": "5CA4", + "type": "small_airport", + "name": "Ludlow Airport", + "latitude_deg": "34.728705", + "longitude_deg": "-116.158705", + "elevation_ft": "1700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Barstow", + "scheduled_service": "no", + "gps_code": "5CA4", + "local_code": "5CA4", + "keywords": "1C0" + }, + { + "id": "12294", + "ident": "5CA5", + "type": "heliport", + "name": "San Joaquin Sprayers Inc Heliport", + "latitude_deg": "35.792999267578125", + "longitude_deg": "-119.18399810791016", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Delano", + "scheduled_service": "no", + "gps_code": "5CA5", + "local_code": "5CA5" + }, + { + "id": "12295", + "ident": "5CA6", + "type": "heliport", + "name": "San Joaquin Helicopters Heliport", + "latitude_deg": "35.791099548339844", + "longitude_deg": "-119.2300033569336", + "elevation_ft": "335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Delano", + "scheduled_service": "no", + "gps_code": "5CA6", + "local_code": "5CA6" + }, + { + "id": "12296", + "ident": "5CA7", + "type": "small_airport", + "name": "Agro-West Airport", + "latitude_deg": "36.334538", + "longitude_deg": "-120.247532", + "elevation_ft": "335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Five Points", + "scheduled_service": "no", + "gps_code": "5CA7", + "local_code": "5CA7", + "keywords": "Harris-Agro West" + }, + { + "id": "12297", + "ident": "5CA8", + "type": "small_airport", + "name": "Howard Private Airport", + "latitude_deg": "38.256536", + "longitude_deg": "-120.931845", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ione", + "scheduled_service": "no", + "gps_code": "5CA8", + "local_code": "5CA8" + }, + { + "id": "12298", + "ident": "5CA9", + "type": "seaplane_base", + "name": "Konocti - Clear Lake Seaplane Base", + "latitude_deg": "38.977699", + "longitude_deg": "-122.718002", + "elevation_ft": "1326", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Kelseyville", + "scheduled_service": "no", + "gps_code": "5CA9", + "local_code": "5CA9" + }, + { + "id": "12299", + "ident": "5CD", + "type": "small_airport", + "name": "Chandalar Shelf Airport", + "latitude_deg": "68.073425", + "longitude_deg": "-149.577686", + "elevation_ft": "3222", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chandalar Camp", + "scheduled_service": "no", + "local_code": "5CD" + }, + { + "id": "12300", + "ident": "5CL0", + "type": "small_airport", + "name": "Grupe Ranch Airport", + "latitude_deg": "37.339615", + "longitude_deg": "-119.857463", + "elevation_ft": "1625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mariposa", + "scheduled_service": "no", + "gps_code": "5CL0", + "local_code": "5CL0" + }, + { + "id": "12301", + "ident": "5CL1", + "type": "small_airport", + "name": "Hart Ranch Airport", + "latitude_deg": "35.40470123", + "longitude_deg": "-120.5250015", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Margarita", + "scheduled_service": "no", + "gps_code": "5CL1", + "local_code": "5CL1" + }, + { + "id": "12302", + "ident": "5CL2", + "type": "heliport", + "name": "St Louise Regional Hospital Heliport", + "latitude_deg": "37.035800933800004", + "longitude_deg": "-121.571998596", + "elevation_ft": "214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Gilroy", + "scheduled_service": "no", + "gps_code": "5CL2", + "local_code": "5CL2" + }, + { + "id": "12303", + "ident": "5CL3", + "type": "small_airport", + "name": "Mapes Ranch Airport", + "latitude_deg": "37.667999267578125", + "longitude_deg": "-121.1989974975586", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Modesto", + "scheduled_service": "no", + "gps_code": "5CL3", + "local_code": "5CL3" + }, + { + "id": "12304", + "ident": "5CL4", + "type": "heliport", + "name": "Natividad Medical Center Heliport", + "latitude_deg": "36.697493", + "longitude_deg": "-121.634556", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Salinas", + "scheduled_service": "no", + "gps_code": "5CL4", + "local_code": "5CL4" + }, + { + "id": "12305", + "ident": "5CL5", + "type": "heliport", + "name": "Kcin Emergency Heliport", + "latitude_deg": "33.685001373291016", + "longitude_deg": "-117.8550033569336", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Irvine", + "scheduled_service": "no", + "gps_code": "5CL5", + "local_code": "5CL5" + }, + { + "id": "12306", + "ident": "5CL6", + "type": "heliport", + "name": "Edward Roybal Federal Bldg Heliport", + "latitude_deg": "34.052882", + "longitude_deg": "-118.23923", + "elevation_ft": "646", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "5CL6", + "local_code": "5CL6" + }, + { + "id": "12307", + "ident": "5CL7", + "type": "small_airport", + "name": "Gene Wash Reservoir Airport", + "latitude_deg": "34.308101654052734", + "longitude_deg": "-114.18699645996094", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Parker Dam", + "scheduled_service": "no", + "gps_code": "5CL7", + "local_code": "5CL7" + }, + { + "id": "12308", + "ident": "5CL8", + "type": "small_airport", + "name": "Creekside Airport", + "latitude_deg": "35.17610168457031", + "longitude_deg": "-118.9229965209961", + "elevation_ft": "335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Arvin", + "scheduled_service": "no", + "gps_code": "5CL8", + "local_code": "5CL8" + }, + { + "id": "12309", + "ident": "5CL9", + "type": "small_airport", + "name": "Table Mountain Field", + "latitude_deg": "37.1413", + "longitude_deg": "-119.508003", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Auberry", + "scheduled_service": "no", + "gps_code": "5CL9", + "local_code": "5CL9", + "keywords": "Johnston Field" + }, + { + "id": "343100", + "ident": "5CN4", + "type": "small_airport", + "name": "Vosburgh Airfield", + "latitude_deg": "34.9225", + "longitude_deg": "-119.57118", + "elevation_ft": "2349", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "New Cuyama", + "scheduled_service": "no", + "gps_code": "5CN4", + "local_code": "5CN4" + }, + { + "id": "325415", + "ident": "5CN5", + "type": "heliport", + "name": "Palmaz Ranch Heliport", + "latitude_deg": "40.036588", + "longitude_deg": "-120.763475", + "elevation_ft": "3760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Taylorsville", + "scheduled_service": "no", + "gps_code": "5CN5", + "local_code": "5CN5" + }, + { + "id": "12310", + "ident": "5CO0", + "type": "small_airport", + "name": "Windy Plains Airport", + "latitude_deg": "38.829496", + "longitude_deg": "-102.30064", + "elevation_ft": "4184", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Cheyenne Wells", + "scheduled_service": "no", + "gps_code": "5CO0", + "local_code": "5CO0", + "keywords": "Cheyenne Wells Municipal Airport, Koch Ag Service Inc" + }, + { + "id": "12311", + "ident": "5CO1", + "type": "small_airport", + "name": "Shipman Ranch Airport", + "latitude_deg": "38.835136", + "longitude_deg": "-107.858394", + "elevation_ft": "6200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Hotchkiss", + "scheduled_service": "no", + "gps_code": "5CO1", + "local_code": "5CO1" + }, + { + "id": "12312", + "ident": "5CO2", + "type": "heliport", + "name": "McKee Medical Center Heliport", + "latitude_deg": "40.41227", + "longitude_deg": "-105.05118", + "elevation_ft": "4872", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Loveland", + "scheduled_service": "no", + "gps_code": "5CO2", + "local_code": "5CO2" + }, + { + "id": "12313", + "ident": "5CO3", + "type": "heliport", + "name": "Jim's Heliport", + "latitude_deg": "38.703611", + "longitude_deg": "-108.063164", + "elevation_ft": "5093", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Delta", + "scheduled_service": "no", + "gps_code": "5CO3", + "local_code": "5CO3" + }, + { + "id": "12314", + "ident": "5CO4", + "type": "small_airport", + "name": "Spickard Farm Airport", + "latitude_deg": "39.699158", + "longitude_deg": "-104.256443", + "elevation_ft": "5320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Byers", + "scheduled_service": "no", + "gps_code": "5CO4", + "local_code": "5CO4" + }, + { + "id": "12315", + "ident": "5CO5", + "type": "heliport", + "name": "Black Hollow Heliport", + "latitude_deg": "40.673099517822266", + "longitude_deg": "-104.91999816894531", + "elevation_ft": "5294", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Carr", + "scheduled_service": "no", + "gps_code": "5CO5", + "local_code": "5CO5" + }, + { + "id": "12316", + "ident": "5CO6", + "type": "closed", + "name": "Meyer Ranch Airport", + "latitude_deg": "39.550805", + "longitude_deg": "-105.281392", + "elevation_ft": "8000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Conifer", + "scheduled_service": "no", + "keywords": "5CO6" + }, + { + "id": "12317", + "ident": "5CO7", + "type": "closed", + "name": "Mesa View Ranch Airport", + "latitude_deg": "40.775002", + "longitude_deg": "-107.533997", + "elevation_ft": "6978", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Craig", + "scheduled_service": "no", + "keywords": "5CO7" + }, + { + "id": "12318", + "ident": "5CO8", + "type": "small_airport", + "name": "Pleasant Valley Airport", + "latitude_deg": "40.341400146484375", + "longitude_deg": "-106.8489990234375", + "elevation_ft": "7120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Oak Creek", + "scheduled_service": "no", + "gps_code": "5CO8", + "local_code": "5CO8" + }, + { + "id": "12319", + "ident": "5CO9", + "type": "heliport", + "name": "Wray Community District Hospital Heliport", + "latitude_deg": "40.076401", + "longitude_deg": "-102.235504", + "elevation_ft": "3640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Wray", + "scheduled_service": "no", + "gps_code": "5CO9", + "local_code": "5CO9" + }, + { + "id": "12320", + "ident": "5CT0", + "type": "small_airport", + "name": "Eastford Airport", + "latitude_deg": "41.910400390625", + "longitude_deg": "-72.06809997558594", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Eastford", + "scheduled_service": "no", + "gps_code": "5CT0", + "local_code": "5CT0" + }, + { + "id": "12321", + "ident": "5CT1", + "type": "heliport", + "name": "Rondo Heliport", + "latitude_deg": "41.508399963378906", + "longitude_deg": "-73.03730010986328", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Nangatuck", + "scheduled_service": "no", + "gps_code": "5CT1", + "local_code": "5CT1" + }, + { + "id": "12322", + "ident": "5CT2", + "type": "heliport", + "name": "Hsi Heliport", + "latitude_deg": "41.252601623535156", + "longitude_deg": "-72.99569702148438", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Orange", + "scheduled_service": "no", + "gps_code": "5CT2", + "local_code": "5CT2" + }, + { + "id": "12323", + "ident": "5CT3", + "type": "heliport", + "name": "South Glastonbury Heliport", + "latitude_deg": "41.644500732421875", + "longitude_deg": "-72.57230377197266", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "South Glastonbury", + "scheduled_service": "no", + "gps_code": "5CT3", + "local_code": "5CT3" + }, + { + "id": "12324", + "ident": "5CT4", + "type": "heliport", + "name": "Norwalk Hospital Heliport", + "latitude_deg": "41.112105", + "longitude_deg": "-73.422541", + "elevation_ft": "156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Norwalk", + "scheduled_service": "no", + "gps_code": "5CT4", + "local_code": "5CT4" + }, + { + "id": "12325", + "ident": "5CT5", + "type": "small_airport", + "name": "Thomson Field", + "latitude_deg": "41.632301330566406", + "longitude_deg": "-73.21620178222656", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Bethlehem", + "scheduled_service": "no", + "gps_code": "5CT5", + "local_code": "5CT5" + }, + { + "id": "12326", + "ident": "5CT6", + "type": "small_airport", + "name": "Buell Farm Ultralightport", + "latitude_deg": "41.919498443603516", + "longitude_deg": "-72.11840057373047", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Eastford", + "scheduled_service": "no", + "gps_code": "5CT6", + "local_code": "5CT6" + }, + { + "id": "12327", + "ident": "5CT7", + "type": "small_airport", + "name": "Mile Creek Airport", + "latitude_deg": "41.30229949951172", + "longitude_deg": "-72.29620361328125", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Old Lyme", + "scheduled_service": "no", + "gps_code": "5CT7", + "local_code": "5CT7" + }, + { + "id": "12328", + "ident": "5CT8", + "type": "closed", + "name": "Canal Street Heliport", + "latitude_deg": "41.042684", + "longitude_deg": "-73.530836", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Stamford", + "scheduled_service": "no", + "gps_code": "5CT8", + "keywords": "5CT8" + }, + { + "id": "12329", + "ident": "5D1", + "type": "heliport", + "name": "Stark County Sheriff Heliport", + "latitude_deg": "40.840166", + "longitude_deg": "-81.308373", + "elevation_ft": "1135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Canton", + "scheduled_service": "no", + "local_code": "5D1" + }, + { + "id": "12330", + "ident": "5D2", + "type": "small_airport", + "name": "Northwood Municipal Airport", + "latitude_deg": "43.448299407958984", + "longitude_deg": "-93.20189666748047", + "elevation_ft": "1224", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Northwood", + "scheduled_service": "no", + "gps_code": "5D2", + "local_code": "5D2" + }, + { + "id": "12331", + "ident": "5D5", + "type": "small_airport", + "name": "Woolsey Memorial Airport", + "latitude_deg": "45.165000915527344", + "longitude_deg": "-85.5718002319336", + "elevation_ft": "628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Northport", + "scheduled_service": "no", + "gps_code": "5D5", + "local_code": "5D5" + }, + { + "id": "12332", + "ident": "5D6", + "type": "small_airport", + "name": "Parsons Airport", + "latitude_deg": "40.648102", + "longitude_deg": "-81.068703", + "elevation_ft": "1290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Carrollton", + "scheduled_service": "no", + "gps_code": "K5D6", + "local_code": "5D6" + }, + { + "id": "12333", + "ident": "5D7", + "type": "heliport", + "name": "Dayton Transportation Center Heliport", + "latitude_deg": "39.758399963378906", + "longitude_deg": "-84.19159698486328", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dayton", + "scheduled_service": "no", + "gps_code": "5D7", + "local_code": "5D7" + }, + { + "id": "12334", + "ident": "5D9", + "type": "small_airport", + "name": "Bandit Field Airdrome Airport", + "latitude_deg": "41.223899841308594", + "longitude_deg": "-82.95770263671875", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Clyde", + "scheduled_service": "no", + "gps_code": "5D9", + "local_code": "5D9" + }, + { + "id": "12335", + "ident": "5.00E+09", + "type": "small_airport", + "name": "Packer Airport", + "latitude_deg": "40.407854", + "longitude_deg": "-83.215183", + "elevation_ft": "918", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Radnor", + "scheduled_service": "no", + "gps_code": "K5E9", + "local_code": "5.00E+09" + }, + { + "id": "12336", + "ident": "5F5", + "type": "small_airport", + "name": "Bluebird Hill Airport", + "latitude_deg": "32.344600677490234", + "longitude_deg": "-93.79989624023438", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Keithville", + "scheduled_service": "no", + "gps_code": "5F5", + "local_code": "5F5" + }, + { + "id": "12337", + "ident": "5F8", + "type": "small_airport", + "name": "Thackers Airport", + "latitude_deg": "32.79180145263672", + "longitude_deg": "-93.95709991455078", + "elevation_ft": "202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Oil City", + "scheduled_service": "no", + "gps_code": "5F8", + "local_code": "5F8" + }, + { + "id": "12338", + "ident": "5FA1", + "type": "small_airport", + "name": "Flying Palomino Ranch Airport", + "latitude_deg": "28.878000259399414", + "longitude_deg": "-81.94090270996094", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fruitland Park", + "scheduled_service": "no", + "gps_code": "5FA1", + "local_code": "5FA1" + }, + { + "id": "353472", + "ident": "5FA2", + "type": "heliport", + "name": "Orlando Health Reunion Heliport", + "latitude_deg": "28.262575", + "longitude_deg": "-81.609728", + "elevation_ft": "124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Davenport", + "scheduled_service": "no", + "gps_code": "5FA2", + "local_code": "5FA2" + }, + { + "id": "12339", + "ident": "5FD0", + "type": "small_airport", + "name": "Manatee Springs Airport", + "latitude_deg": "29.492700576782227", + "longitude_deg": "-82.99120330810547", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Old Town", + "scheduled_service": "no", + "gps_code": "5FD0", + "local_code": "5FD0" + }, + { + "id": "12340", + "ident": "5FD1", + "type": "small_airport", + "name": "Ron Wood Airport", + "latitude_deg": "30.432100296020508", + "longitude_deg": "-85.28880310058594", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Clarksville", + "scheduled_service": "no", + "gps_code": "5FD1", + "local_code": "5FD1" + }, + { + "id": "12341", + "ident": "5FD2", + "type": "heliport", + "name": "Rybovich Heliport", + "latitude_deg": "26.74920082092285", + "longitude_deg": "-80.04920196533203", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "West Palm Beach", + "scheduled_service": "no", + "gps_code": "5FD2", + "local_code": "5FD2" + }, + { + "id": "12342", + "ident": "5FD3", + "type": "closed", + "name": "County Line Airstrip", + "latitude_deg": "30.6085", + "longitude_deg": "-85.091301", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Marianna", + "scheduled_service": "no", + "keywords": "5FD3, McCroan" + }, + { + "id": "45350", + "ident": "5FD4", + "type": "heliport", + "name": "Flagler County Emergency Opns Center Heliport", + "latitude_deg": "29.471139", + "longitude_deg": "-81.244306", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bunnell", + "scheduled_service": "no", + "gps_code": "5FD4", + "local_code": "5FD4" + }, + { + "id": "12343", + "ident": "5FD5", + "type": "closed", + "name": "Able Airpark", + "latitude_deg": "30.595501", + "longitude_deg": "-84.9813", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Blountstown", + "scheduled_service": "no", + "keywords": "5FD5" + }, + { + "id": "12344", + "ident": "5FD6", + "type": "heliport", + "name": "Boca Grande Helistop", + "latitude_deg": "26.742300033569336", + "longitude_deg": "-82.25869750976562", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Boca Grande", + "scheduled_service": "no", + "gps_code": "5FD6", + "local_code": "5FD6" + }, + { + "id": "12345", + "ident": "5FD7", + "type": "small_airport", + "name": "Chinsegut Airport", + "latitude_deg": "28.6117000579834", + "longitude_deg": "-82.3678970336914", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Brooksville", + "scheduled_service": "no", + "gps_code": "5FD7", + "local_code": "5FD7" + }, + { + "id": "12346", + "ident": "5FD8", + "type": "heliport", + "name": "Bokeelia Helistop", + "latitude_deg": "26.670576", + "longitude_deg": "-82.134583", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Cape Coral", + "scheduled_service": "no", + "gps_code": "5FD8", + "local_code": "5FD8" + }, + { + "id": "12347", + "ident": "5FD9", + "type": "heliport", + "name": "St James Helistop", + "latitude_deg": "26.511499404907227", + "longitude_deg": "-82.0884017944336", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Cape Coral", + "scheduled_service": "no", + "gps_code": "5FD9", + "local_code": "5FD9" + }, + { + "id": "12348", + "ident": "5FL0", + "type": "small_airport", + "name": "Dusty Airpatch Airport", + "latitude_deg": "28.41309928894043", + "longitude_deg": "-82.22339630126953", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Dade City", + "scheduled_service": "no", + "gps_code": "5FL0", + "local_code": "5FL0" + }, + { + "id": "12349", + "ident": "5FL1", + "type": "small_airport", + "name": "Ezell Airport", + "latitude_deg": "29.90329933166504", + "longitude_deg": "-83.60790252685547", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Keaton Beach", + "scheduled_service": "no", + "gps_code": "5FL1", + "local_code": "5FL1" + }, + { + "id": "12350", + "ident": "5FL2", + "type": "heliport", + "name": "HCA Florida Blake Hospital Heliport", + "latitude_deg": "27.482162", + "longitude_deg": "-82.622466", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bradenton", + "scheduled_service": "no", + "gps_code": "5FL2", + "local_code": "5FL2", + "keywords": "HCA L.W. Blake Hospital Heliport, Blake Medical Center Heliport" + }, + { + "id": "12351", + "ident": "5FL3", + "type": "heliport", + "name": "HCA Florida Brandon Hospital Heliport", + "latitude_deg": "27.932905", + "longitude_deg": "-82.288778", + "elevation_ft": "64", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Brandon", + "scheduled_service": "no", + "gps_code": "5FL3", + "local_code": "5FL3", + "keywords": "Hospital Brandon Helistop" + }, + { + "id": "12352", + "ident": "5FL4", + "type": "small_airport", + "name": "Byrd Air Field", + "latitude_deg": "29.800800323486328", + "longitude_deg": "-81.50090026855469", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Elkton", + "scheduled_service": "no", + "gps_code": "5FL4", + "local_code": "5FL4" + }, + { + "id": "12353", + "ident": "5FL5", + "type": "heliport", + "name": "Palm Beach County Judicial Center Heliport", + "latitude_deg": "26.715467", + "longitude_deg": "-80.054281", + "elevation_ft": "297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "West Palm Beach", + "scheduled_service": "no", + "gps_code": "5FL5", + "local_code": "5FL5" + }, + { + "id": "12354", + "ident": "5FL6", + "type": "closed", + "name": "Flat Creek Airport", + "latitude_deg": "30.604401", + "longitude_deg": "-84.790703", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Chattahoochee", + "scheduled_service": "no", + "keywords": "5FL6" + }, + { + "id": "12355", + "ident": "5FL7", + "type": "small_airport", + "name": "Twelve Oaks Airport", + "latitude_deg": "28.97800064086914", + "longitude_deg": "-82.36370086669922", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Hernando", + "scheduled_service": "no", + "gps_code": "5FL7", + "local_code": "5FL7" + }, + { + "id": "12356", + "ident": "5FL8", + "type": "small_airport", + "name": "Chipola Airpark", + "latitude_deg": "30.888200759887695", + "longitude_deg": "-85.1677017211914", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Greenwood", + "scheduled_service": "no", + "gps_code": "5FL8", + "local_code": "5FL8" + }, + { + "id": "12357", + "ident": "5FL9", + "type": "closed", + "name": "Cedar Lane Airport", + "latitude_deg": "30.7363", + "longitude_deg": "-86.212997", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Defuniak Springs", + "scheduled_service": "no", + "keywords": "5FL9" + }, + { + "id": "12358", + "ident": "5G0", + "type": "small_airport", + "name": "Le Roy Airport", + "latitude_deg": "42.9813995361", + "longitude_deg": "-77.9375", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Le Roy", + "scheduled_service": "no", + "gps_code": "5G0", + "local_code": "5G0", + "home_link": "http://www.leroyairport.com/" + }, + { + "id": "12359", + "ident": "5G2", + "type": "small_airport", + "name": "Indian Lake Airport", + "latitude_deg": "40.05419921875", + "longitude_deg": "-78.84700012207031", + "elevation_ft": "2442", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Central City", + "scheduled_service": "no", + "gps_code": "5G2", + "local_code": "5G2" + }, + { + "id": "12360", + "ident": "5G3", + "type": "seaplane_base", + "name": "East Dakota Flying Club Seaplane Base", + "latitude_deg": "43.965198516799994", + "longitude_deg": "-97.029800415", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "5G3" + }, + { + "id": "12361", + "ident": "5G4", + "type": "small_airport", + "name": "Eau Claire Lakes Airport", + "latitude_deg": "46.34880065917969", + "longitude_deg": "-91.49819946289062", + "elevation_ft": "1214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Drummond", + "scheduled_service": "no", + "gps_code": "5G4", + "local_code": "5G4" + }, + { + "id": "12362", + "ident": "5G8", + "type": "small_airport", + "name": "Greensburg Jeannette Regional Airport", + "latitude_deg": "40.37649917602539", + "longitude_deg": "-79.6083984375", + "elevation_ft": "1188", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Jeannette", + "scheduled_service": "no", + "gps_code": "5G8", + "local_code": "5G8" + }, + { + "id": "12363", + "ident": "5GA0", + "type": "small_airport", + "name": "Gable Branch Airport", + "latitude_deg": "33.2276", + "longitude_deg": "-84.544403", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Senoia", + "scheduled_service": "no", + "gps_code": "5GA0", + "local_code": "5GA0" + }, + { + "id": "12364", + "ident": "5GA1", + "type": "heliport", + "name": "County Police Heliport", + "latitude_deg": "33.987300872802734", + "longitude_deg": "-83.97380065917969", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Lawrenceville", + "scheduled_service": "no", + "gps_code": "5GA1", + "local_code": "5GA1" + }, + { + "id": "12365", + "ident": "5GA2", + "type": "small_airport", + "name": "Lyons Landing Airport", + "latitude_deg": "33.572922", + "longitude_deg": "-84.910713", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Whitesburg", + "scheduled_service": "no", + "gps_code": "5GA2", + "local_code": "5GA2" + }, + { + "id": "12366", + "ident": "5GA3", + "type": "small_airport", + "name": "Eagles Landing Airport", + "latitude_deg": "33.160099029541016", + "longitude_deg": "-84.36519622802734", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Williamson", + "scheduled_service": "no", + "gps_code": "5GA3", + "local_code": "5GA3" + }, + { + "id": "12367", + "ident": "5GA4", + "type": "small_airport", + "name": "Air Acres Airport", + "latitude_deg": "34.105899810791016", + "longitude_deg": "-84.44850158691406", + "elevation_ft": "918", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Woodstock", + "scheduled_service": "no", + "gps_code": "5GA4", + "local_code": "5GA4" + }, + { + "id": "12368", + "ident": "5GA5", + "type": "small_airport", + "name": "Pinebrook Estates Airport", + "latitude_deg": "33.25979995727539", + "longitude_deg": "-84.34940338134766", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Griffin", + "scheduled_service": "no", + "gps_code": "5GA5", + "local_code": "5GA5" + }, + { + "id": "12369", + "ident": "5GA6", + "type": "small_airport", + "name": "Roney Farms Airport", + "latitude_deg": "32.149898529052734", + "longitude_deg": "-83.86129760742188", + "elevation_ft": "352", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Lilly", + "scheduled_service": "no", + "gps_code": "5GA6", + "local_code": "5GA6" + }, + { + "id": "12370", + "ident": "5GA7", + "type": "small_airport", + "name": "Panacea Airport", + "latitude_deg": "33.201152", + "longitude_deg": "-85.229037", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "5GA7", + "local_code": "5GA7" + }, + { + "id": "12371", + "ident": "5GA8", + "type": "heliport", + "name": "Jimmy Carter Blvd Precinct Heliport", + "latitude_deg": "33.912899017333984", + "longitude_deg": "-84.20939636230469", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Norcross", + "scheduled_service": "no", + "gps_code": "5GA8", + "local_code": "5GA8" + }, + { + "id": "12372", + "ident": "5GA9", + "type": "heliport", + "name": "Skypad Heliport", + "latitude_deg": "33.79930114746094", + "longitude_deg": "-84.38739776611328", + "elevation_ft": "982", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "5GA9", + "local_code": "5GA9" + }, + { + "id": "12373", + "ident": "5GE1", + "type": "small_airport", + "name": "Peachtree Landings Airport", + "latitude_deg": "32.5703010559082", + "longitude_deg": "-83.7219009399414", + "elevation_ft": "447", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fort Valley", + "scheduled_service": "no", + "gps_code": "5GE1", + "local_code": "5GE1" + }, + { + "id": "12374", + "ident": "5H3", + "type": "small_airport", + "name": "Clear Lake Municipal Airport", + "latitude_deg": "44.771400451660156", + "longitude_deg": "-96.68810272216797", + "elevation_ft": "1801", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Clear Lake", + "scheduled_service": "no", + "gps_code": "5H3", + "local_code": "5H3" + }, + { + "id": "12375", + "ident": "5HO", + "type": "small_airport", + "name": "Hope Airport", + "latitude_deg": "60.90409851074219", + "longitude_deg": "-149.62399291992188", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Hope", + "scheduled_service": "no", + "gps_code": "5HO", + "local_code": "5HO" + }, + { + "id": "12376", + "ident": "5I2", + "type": "small_airport", + "name": "Flora Municipal Airport", + "latitude_deg": "40.539798736572266", + "longitude_deg": "-86.54830169677734", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Flora", + "scheduled_service": "no", + "gps_code": "5I2", + "local_code": "5I2" + }, + { + "id": "12377", + "ident": "5I6", + "type": "small_airport", + "name": "Galveston Airport", + "latitude_deg": "40.58420181274414", + "longitude_deg": "-86.25689697265625", + "elevation_ft": "786", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Galveston", + "scheduled_service": "no", + "gps_code": "5I6", + "local_code": "5I6" + }, + { + "id": "12378", + "ident": "5IA0", + "type": "heliport", + "name": "Skiff Medical Center Heliport", + "latitude_deg": "41.704200744628906", + "longitude_deg": "-93.05159759521484", + "elevation_ft": "947", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Newton", + "scheduled_service": "no", + "gps_code": "5IA0", + "local_code": "5IA0" + }, + { + "id": "12379", + "ident": "5IA2", + "type": "heliport", + "name": "Mercy One Medical Center Nr 2 Heliport", + "latitude_deg": "42.497226", + "longitude_deg": "-96.401478", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Sioux City", + "scheduled_service": "no", + "gps_code": "5IA2", + "local_code": "5IA2", + "keywords": "Marian Health Center Nr 2" + }, + { + "id": "12380", + "ident": "5IA3", + "type": "small_airport", + "name": "Watkins Private Airport", + "latitude_deg": "40.84389877319336", + "longitude_deg": "-93.5427017211914", + "elevation_ft": "1095", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Humeston", + "scheduled_service": "no", + "gps_code": "5IA3", + "local_code": "5IA3" + }, + { + "id": "12381", + "ident": "5IA4", + "type": "closed", + "name": "Marian Health Center Nr 3 Heliport", + "latitude_deg": "42.514198", + "longitude_deg": "-96.397499", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Sioux City", + "scheduled_service": "no", + "keywords": "5IA4" + }, + { + "id": "12382", + "ident": "5IA5", + "type": "small_airport", + "name": "Folkerts Airport", + "latitude_deg": "43.143001556396484", + "longitude_deg": "-92.87799835205078", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Rudd", + "scheduled_service": "no", + "gps_code": "5IA5", + "local_code": "5IA5" + }, + { + "id": "12383", + "ident": "5IA6", + "type": "small_airport", + "name": "Flying S Ranch Airport", + "latitude_deg": "42.830501556396484", + "longitude_deg": "-94.0115966796875", + "elevation_ft": "1145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Renwick", + "scheduled_service": "no", + "gps_code": "5IA6", + "local_code": "5IA6" + }, + { + "id": "12384", + "ident": "5IA7", + "type": "closed", + "name": "Murphy Field Private Airport", + "latitude_deg": "41.418853", + "longitude_deg": "-91.830769", + "elevation_ft": "803", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Wellman", + "scheduled_service": "no", + "keywords": "5IA7" + }, + { + "id": "12385", + "ident": "5IA8", + "type": "heliport", + "name": "Sanford Merrill Medical Center Heliport", + "latitude_deg": "43.4239006042", + "longitude_deg": "-96.17199707030001", + "elevation_ft": "1360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Rock Rapids", + "scheduled_service": "no", + "gps_code": "5IA8", + "local_code": "5IA8" + }, + { + "id": "12386", + "ident": "5IA9", + "type": "heliport", + "name": "Community Memorial Health Center Heliport", + "latitude_deg": "43.18360137939453", + "longitude_deg": "-95.48970031738281", + "elevation_ft": "1474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Hartley", + "scheduled_service": "no", + "gps_code": "5IA9", + "local_code": "5IA9" + }, + { + "id": "12387", + "ident": "5II1", + "type": "small_airport", + "name": "Layne Field", + "latitude_deg": "39.782798767089844", + "longitude_deg": "-86.61750030517578", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "New Winchester", + "scheduled_service": "no", + "gps_code": "5II1", + "local_code": "5II1" + }, + { + "id": "12388", + "ident": "5II2", + "type": "small_airport", + "name": "Miles Field", + "latitude_deg": "39.55979919433594", + "longitude_deg": "-86.13500213623047", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "New Whiteland", + "scheduled_service": "no", + "gps_code": "5II2", + "local_code": "5II2" + }, + { + "id": "12389", + "ident": "5II3", + "type": "heliport", + "name": "Engdahl Farm (Moonstraka) Heliport", + "latitude_deg": "39.288700103759766", + "longitude_deg": "-86.34719848632812", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Treviac", + "scheduled_service": "no", + "gps_code": "5II3", + "local_code": "5II3" + }, + { + "id": "12390", + "ident": "5II4", + "type": "heliport", + "name": "Hopkins Heliport", + "latitude_deg": "39.589500427246094", + "longitude_deg": "-86.3905029296875", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Mooresville", + "scheduled_service": "no", + "gps_code": "5II4", + "local_code": "5II4" + }, + { + "id": "12391", + "ident": "5II5", + "type": "closed", + "name": "Mumford Farms Airport", + "latitude_deg": "39.9478", + "longitude_deg": "-86.732803", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "New Ross", + "scheduled_service": "no", + "keywords": "5II5" + }, + { + "id": "12392", + "ident": "5II6", + "type": "heliport", + "name": "Marble Hill Heliport", + "latitude_deg": "38.59479904174805", + "longitude_deg": "-85.44519805908203", + "elevation_ft": "791", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "New Washington", + "scheduled_service": "no", + "gps_code": "5II6", + "local_code": "5II6" + }, + { + "id": "12393", + "ident": "5II7", + "type": "heliport", + "name": "Fort Wayne-District Operations Heliport", + "latitude_deg": "41.06439971923828", + "longitude_deg": "-85.16000366210938", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Fort Wayne", + "scheduled_service": "no", + "gps_code": "5II7", + "local_code": "5II7" + }, + { + "id": "12394", + "ident": "5II8", + "type": "small_airport", + "name": "Jacobi Airport", + "latitude_deg": "38.410099029541016", + "longitude_deg": "-86.12889862060547", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Palmyra", + "scheduled_service": "no", + "gps_code": "5II8", + "local_code": "5II8" + }, + { + "id": "12395", + "ident": "5II9", + "type": "small_airport", + "name": "Aero Plaines Airport", + "latitude_deg": "39.35279846191406", + "longitude_deg": "-87.37339782714844", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Youngstown", + "scheduled_service": "no", + "gps_code": "5II9", + "local_code": "5II9" + }, + { + "id": "12396", + "ident": "5IL0", + "type": "heliport", + "name": "Herrin Hospital Heliport", + "latitude_deg": "37.80189895629883", + "longitude_deg": "-89.0261001586914", + "elevation_ft": "444", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Herrin", + "scheduled_service": "no", + "gps_code": "5IL0", + "local_code": "5IL0" + }, + { + "id": "12397", + "ident": "5IL1", + "type": "heliport", + "name": "Olson Heliport", + "latitude_deg": "42.346099853515625", + "longitude_deg": "-89.2864990234375", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pecatonica", + "scheduled_service": "no", + "gps_code": "5IL1", + "local_code": "5IL1" + }, + { + "id": "12398", + "ident": "5IL2", + "type": "small_airport", + "name": "Panther Field", + "latitude_deg": "38.063286", + "longitude_deg": "-89.387441", + "elevation_ft": "432", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pinckneyville", + "scheduled_service": "no", + "gps_code": "5IL2", + "local_code": "5IL2" + }, + { + "id": "12399", + "ident": "5IL3", + "type": "heliport", + "name": "Galesburg Cottage Hospital Heliport", + "latitude_deg": "40.95560073852539", + "longitude_deg": "-90.38249969482422", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Galesburg", + "scheduled_service": "no", + "gps_code": "5IL3", + "local_code": "5IL3" + }, + { + "id": "12400", + "ident": "5IL4", + "type": "closed", + "name": "Sears Merchandise Group Heliport", + "latitude_deg": "42.076502", + "longitude_deg": "-88.217082", + "elevation_ft": "843", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hoffman Estates", + "scheduled_service": "no", + "keywords": "5IL4" + }, + { + "id": "328307", + "ident": "5IL5", + "type": "small_airport", + "name": "Hope Field", + "latitude_deg": "41.259925", + "longitude_deg": "-88.356535", + "elevation_ft": "558", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mazon", + "scheduled_service": "no", + "gps_code": "5IL5", + "local_code": "5IL5" + }, + { + "id": "12401", + "ident": "5IL6", + "type": "heliport", + "name": "Heartland Regional Medical Center Heliport", + "latitude_deg": "37.742645", + "longitude_deg": "-88.992469", + "elevation_ft": "451", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "5IL6", + "local_code": "5IL6", + "keywords": "Air Evac 35 Heliport" + }, + { + "id": "12402", + "ident": "5IL7", + "type": "heliport", + "name": "Howard Heliport", + "latitude_deg": "41.291900634765625", + "longitude_deg": "-88.58920288085938", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Seneca", + "scheduled_service": "no", + "gps_code": "5IL7", + "local_code": "5IL7" + }, + { + "id": "12403", + "ident": "5IL8", + "type": "closed", + "name": "Tollway Heliport", + "latitude_deg": "41.8051", + "longitude_deg": "-88.052478", + "elevation_ft": "736", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Downers Grove", + "scheduled_service": "no", + "keywords": "5IL8" + }, + { + "id": "12404", + "ident": "5IL9", + "type": "heliport", + "name": "Salem Township Hospital Heliport", + "latitude_deg": "38.642323", + "longitude_deg": "-88.94889", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "5IL9", + "local_code": "5IL9" + }, + { + "id": "12405", + "ident": "5IN1", + "type": "heliport", + "name": "Clarian West Medical Center Heliport", + "latitude_deg": "39.76219940185547", + "longitude_deg": "-86.39559936523438", + "elevation_ft": "832", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Avon", + "scheduled_service": "no", + "gps_code": "5IN1", + "local_code": "5IN1" + }, + { + "id": "12406", + "ident": "5IN2", + "type": "closed", + "name": "AEC Heliport", + "latitude_deg": "39.862202", + "longitude_deg": "-85.984703", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "keywords": "5IN2" + }, + { + "id": "12407", + "ident": "5IN3", + "type": "small_airport", + "name": "Tragesser Airport", + "latitude_deg": "40.30030059814453", + "longitude_deg": "-86.05030059814453", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Tipton", + "scheduled_service": "no", + "gps_code": "5IN3", + "local_code": "5IN3" + }, + { + "id": "12408", + "ident": "5IN4", + "type": "small_airport", + "name": "Wyckoff Airstrip", + "latitude_deg": "41.4833984375", + "longitude_deg": "-86.94999694824219", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Valparaiso", + "scheduled_service": "no", + "gps_code": "5IN4", + "local_code": "5IN4" + }, + { + "id": "12409", + "ident": "5IN5", + "type": "closed", + "name": "Berkey Field", + "latitude_deg": "41.2878", + "longitude_deg": "-85.900597", + "elevation_ft": "858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Warsaw", + "scheduled_service": "no", + "keywords": "5IN5" + }, + { + "id": "12410", + "ident": "5IN6", + "type": "small_airport", + "name": "Orthodontic Strip", + "latitude_deg": "41.587501525878906", + "longitude_deg": "-86.90280151367188", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Westville", + "scheduled_service": "no", + "gps_code": "5IN6", + "local_code": "5IN6" + }, + { + "id": "12411", + "ident": "5IN7", + "type": "seaplane_base", + "name": "Clear Lake Seaplane Base", + "latitude_deg": "41.735599517822", + "longitude_deg": "-84.837196350098", + "elevation_ft": "1037", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Clear Lake", + "scheduled_service": "no", + "gps_code": "57P", + "local_code": "57P", + "keywords": "5IN7" + }, + { + "id": "12412", + "ident": "5IN8", + "type": "seaplane_base", + "name": "Crooked Lake Seaplane Base", + "latitude_deg": "41.672401", + "longitude_deg": "-85.041395", + "elevation_ft": "989", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Angola", + "scheduled_service": "no", + "local_code": "I58", + "keywords": "5IN8, Q58" + }, + { + "id": "12413", + "ident": "5IN9", + "type": "small_airport", + "name": "Stangland Airport", + "latitude_deg": "41.315804", + "longitude_deg": "-85.464878", + "elevation_ft": "924", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Wolflake", + "scheduled_service": "no", + "gps_code": "5IN9", + "local_code": "5IN9" + }, + { + "id": "12414", + "ident": "5IS1", + "type": "heliport", + "name": "Memorial Hosp Of Carbondale Heliport", + "latitude_deg": "37.7270011902", + "longitude_deg": "-89.2211990356", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Carbondale", + "scheduled_service": "no", + "gps_code": "5IS1", + "local_code": "5IS1" + }, + { + "id": "12415", + "ident": "5IS2", + "type": "heliport", + "name": "Boyd Hospital Heliport", + "latitude_deg": "39.298099517822266", + "longitude_deg": "-90.41510009765625", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Carrollton", + "scheduled_service": "no", + "gps_code": "5IS2", + "local_code": "5IS2" + }, + { + "id": "12416", + "ident": "5IS3", + "type": "small_airport", + "name": "Riverveiw Airport", + "latitude_deg": "38.078399658203125", + "longitude_deg": "-89.97959899902344", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Evansville", + "scheduled_service": "no", + "gps_code": "5IS3", + "local_code": "5IS3" + }, + { + "id": "12417", + "ident": "5IS4", + "type": "small_airport", + "name": "Corman Acres Airport", + "latitude_deg": "39.7661018371582", + "longitude_deg": "-88.77950286865234", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lake City", + "scheduled_service": "no", + "gps_code": "5IS4", + "local_code": "5IS4" + }, + { + "id": "12418", + "ident": "5IS6", + "type": "heliport", + "name": "Webster Heliport", + "latitude_deg": "41.10559844970703", + "longitude_deg": "-89.83899688720703", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Toulon", + "scheduled_service": "no", + "gps_code": "5IS6", + "local_code": "5IS6" + }, + { + "id": "12419", + "ident": "5IS7", + "type": "small_airport", + "name": "Cast Airport", + "latitude_deg": "40.03889846801758", + "longitude_deg": "-87.78170013427734", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Fairmount", + "scheduled_service": "no", + "gps_code": "5IS7", + "local_code": "5IS7" + }, + { + "id": "12420", + "ident": "5IS8", + "type": "heliport", + "name": "Northern Illinois Medical Cntr Heliport", + "latitude_deg": "42.319499969499994", + "longitude_deg": "-88.2789993286", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mc Henry", + "scheduled_service": "no", + "gps_code": "5IS8", + "local_code": "5IS8" + }, + { + "id": "12421", + "ident": "5IS9", + "type": "small_airport", + "name": "Mc Pherson Airport", + "latitude_deg": "40.3306007385", + "longitude_deg": "-91.0501022339", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Carthage", + "scheduled_service": "no", + "gps_code": "5IS9", + "local_code": "5IS9" + }, + { + "id": "12422", + "ident": "5J2", + "type": "closed", + "name": "Siltcoos Lake Seaplane Base", + "latitude_deg": "43.866501", + "longitude_deg": "-124.084999", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Florence", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Siltcoos_Lake_Seaplane_Base", + "keywords": "5J2" + }, + { + "id": "12423", + "ident": "5J5", + "type": "small_airport", + "name": "Holly Hill Airport", + "latitude_deg": "33.30099868774414", + "longitude_deg": "-80.39399719238281", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Holly Hill", + "scheduled_service": "no", + "gps_code": "5J5", + "local_code": "5J5" + }, + { + "id": "325314", + "ident": "5JY9", + "type": "heliport", + "name": "Air Evac 116 Heliport", + "latitude_deg": "37.852777", + "longitude_deg": "-82.546111", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Inez", + "scheduled_service": "no", + "gps_code": "5JY9", + "local_code": "5JY9" + }, + { + "id": "12424", + "ident": "5K0", + "type": "small_airport", + "name": "Bressler Field", + "latitude_deg": "39.74250030517578", + "longitude_deg": "-101.55599975585938", + "elevation_ft": "3489", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Bird City", + "scheduled_service": "no", + "gps_code": "5K0", + "local_code": "5K0" + }, + { + "id": "18909", + "ident": "5K2", + "type": "small_airport", + "name": "Tribune Municipal Airport", + "latitude_deg": "38.454200744628906", + "longitude_deg": "-101.74600219726562", + "elevation_ft": "3620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Tribune", + "scheduled_service": "no", + "gps_code": "5K2", + "local_code": "5K2" + }, + { + "id": "12425", + "ident": "5K3", + "type": "heliport", + "name": "H. J. Paul Army Heliport", + "latitude_deg": "41.06669998168945", + "longitude_deg": "-96.33360290527344", + "elevation_ft": "1068", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Camp Ashland(Ashland)", + "scheduled_service": "no", + "gps_code": "5K3", + "local_code": "5K3" + }, + { + "id": "12426", + "ident": "5K4", + "type": "small_airport", + "name": "Schuy-Rush Airport", + "latitude_deg": "40.11750030517578", + "longitude_deg": "-90.59040069580078", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rushville", + "scheduled_service": "no", + "gps_code": "5K4", + "local_code": "5K4" + }, + { + "id": "12427", + "ident": "5K6", + "type": "closed", + "name": "Westosha Airport", + "latitude_deg": "42.514099", + "longitude_deg": "-88.2052", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wilmot", + "scheduled_service": "no", + "keywords": "5K6, WI10" + }, + { + "id": "12428", + "ident": "5K9", + "type": "small_airport", + "name": "Pruetz Municipal Airport", + "latitude_deg": "46.28889846801758", + "longitude_deg": "-98.94210052490234", + "elevation_ft": "1982", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Kulm", + "scheduled_service": "no", + "gps_code": "5K9", + "local_code": "5K9" + }, + { + "id": "12429", + "ident": "5KE", + "type": "seaplane_base", + "name": "Ketchikan Harbor Seaplane Base", + "latitude_deg": "55.349899", + "longitude_deg": "-131.677002", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ketchikan", + "scheduled_service": "yes", + "iata_code": "WFB", + "local_code": "5KE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ketchikan_Harbor_Seaplane_Base" + }, + { + "id": "12430", + "ident": "5KO", + "type": "closed", + "name": "Koggiung Airport", + "latitude_deg": "58.867236", + "longitude_deg": "-157.013217", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Koggiung", + "scheduled_service": "no", + "keywords": "5KO" + }, + { + "id": "12431", + "ident": "5KS", + "type": "small_airport", + "name": "Kasilof Airport", + "latitude_deg": "60.35329818725586", + "longitude_deg": "-151.26300048828125", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kasilof", + "scheduled_service": "no", + "gps_code": "5KS", + "local_code": "5KS" + }, + { + "id": "12432", + "ident": "5KS0", + "type": "balloonport", + "name": "Anthony Balloonport", + "latitude_deg": "37.094501", + "longitude_deg": "-97.961403", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Anthony", + "scheduled_service": "no", + "gps_code": "5KS0", + "local_code": "5KS0" + }, + { + "id": "12433", + "ident": "5KS1", + "type": "small_airport", + "name": "Threshing Bee Airport", + "latitude_deg": "39.19380187988281", + "longitude_deg": "-95.21630096435547", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Mc Louth", + "scheduled_service": "no", + "gps_code": "5KS1", + "local_code": "5KS1" + }, + { + "id": "12434", + "ident": "5KS2", + "type": "closed", + "name": "Fortmeyer Airport", + "latitude_deg": "39.339609", + "longitude_deg": "-101.660614", + "elevation_ft": "3650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Goodland", + "scheduled_service": "no", + "keywords": "5KS2" + }, + { + "id": "12435", + "ident": "5KS3", + "type": "small_airport", + "name": "Deweze Airport", + "latitude_deg": "37.279499", + "longitude_deg": "-98.018097", + "elevation_ft": "1414", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Harper", + "scheduled_service": "no", + "gps_code": "5KS3", + "local_code": "5KS3" + }, + { + "id": "12436", + "ident": "5KS4", + "type": "closed", + "name": "Hall Farms Airport", + "latitude_deg": "39.230001", + "longitude_deg": "-101.983002", + "elevation_ft": "3908", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Kanorado", + "scheduled_service": "no", + "keywords": "5KS4" + }, + { + "id": "12437", + "ident": "5KS6", + "type": "closed", + "name": "Mollenkamp Field", + "latitude_deg": "38.766701", + "longitude_deg": "-101.257004", + "elevation_ft": "3295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Leoti", + "scheduled_service": "no", + "keywords": "5KS6" + }, + { + "id": "12438", + "ident": "5KS7", + "type": "heliport", + "name": "Anthony Hospital Heliport", + "latitude_deg": "37.155601501464844", + "longitude_deg": "-98.01730346679688", + "elevation_ft": "1340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Anthony", + "scheduled_service": "no", + "gps_code": "5KS7", + "local_code": "5KS7" + }, + { + "id": "12439", + "ident": "5KS8", + "type": "small_airport", + "name": "Jack Poore Airport", + "latitude_deg": "39.81809997558594", + "longitude_deg": "-101.3479995727539", + "elevation_ft": "3330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Mc Donald", + "scheduled_service": "no", + "gps_code": "5KS8", + "local_code": "5KS8" + }, + { + "id": "12440", + "ident": "5KS9", + "type": "closed", + "name": "Black Airport", + "latitude_deg": "39.825802", + "longitude_deg": "-101.362999", + "elevation_ft": "3345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "McDonald", + "scheduled_service": "no", + "keywords": "5KS9" + }, + { + "id": "347159", + "ident": "5KY1", + "type": "heliport", + "name": "Flaget Memorial Hospital Heliport", + "latitude_deg": "37.861082", + "longitude_deg": "-85.523157", + "elevation_ft": "722", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Bardstown", + "scheduled_service": "no", + "gps_code": "5KY1", + "local_code": "5KY1" + }, + { + "id": "12441", + "ident": "5KY2", + "type": "closed", + "name": "Larkins Farm Airport", + "latitude_deg": "36.851101", + "longitude_deg": "-88.926903", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Bardwell", + "scheduled_service": "no", + "keywords": "5KY2" + }, + { + "id": "12442", + "ident": "5KY3", + "type": "closed", + "name": "West Kentucky Airpark", + "latitude_deg": "36.967499", + "longitude_deg": "-88.5653", + "elevation_ft": "338", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Paducah", + "scheduled_service": "no", + "keywords": "5KY3, KFIO, FIO, KY29, Farrington Airpark" + }, + { + "id": "18493", + "ident": "5KY4", + "type": "small_airport", + "name": "Standard Field", + "latitude_deg": "36.801828", + "longitude_deg": "-87.176428", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Elkton", + "scheduled_service": "no", + "gps_code": "5KY4", + "local_code": "5KY4", + "home_link": "http://kentuckybill.com/standardfield5ky4.html", + "keywords": "1M6" + }, + { + "id": "12444", + "ident": "5KY5", + "type": "small_airport", + "name": "Lowe Airport", + "latitude_deg": "36.86249923706055", + "longitude_deg": "-87.79029846191406", + "elevation_ft": "498", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Cadiz", + "scheduled_service": "no", + "gps_code": "5KY5", + "local_code": "5KY5" + }, + { + "id": "45430", + "ident": "5KY6", + "type": "small_airport", + "name": "Jake's Field", + "latitude_deg": "38.420556", + "longitude_deg": "-85.257778", + "elevation_ft": "903", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Smithfield", + "scheduled_service": "no", + "gps_code": "5KY6", + "local_code": "5KY6" + }, + { + "id": "18777", + "ident": "5KY7", + "type": "closed", + "name": "Dale Hollow Regional (Petro Field) Airport", + "latitude_deg": "36.637798", + "longitude_deg": "-85.163803", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Albany", + "scheduled_service": "no", + "keywords": "Formerly 44I, 5KY7" + }, + { + "id": "45425", + "ident": "5KY8", + "type": "small_airport", + "name": "Harold Reynolds Airport", + "latitude_deg": "37.889722", + "longitude_deg": "-84.927778", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Harrodsburg", + "scheduled_service": "no", + "gps_code": "5KY8", + "local_code": "5KY8" + }, + { + "id": "12445", + "ident": "5KY9", + "type": "closed", + "name": "Nolin Aero Salvage Airport", + "latitude_deg": "37.3325", + "longitude_deg": "-86.254204", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Bee Spring", + "scheduled_service": "no", + "keywords": "5KY9" + }, + { + "id": "12446", + "ident": "5L6", + "type": "seaplane_base", + "name": "Wasilla Lake Seaplane Base", + "latitude_deg": "61.5863990784", + "longitude_deg": "-149.408004761", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "5L6", + "local_code": "5L6" + }, + { + "id": "12447", + "ident": "5LA0", + "type": "small_airport", + "name": "Juneau Ultralightport Airpark", + "latitude_deg": "32.591801", + "longitude_deg": "-93.828003", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Shreveport", + "scheduled_service": "no", + "gps_code": "5LA0", + "local_code": "5LA0" + }, + { + "id": "12448", + "ident": "5LA1", + "type": "small_airport", + "name": "Kent's Flying Service Airport", + "latitude_deg": "31.028004", + "longitude_deg": "-91.980589", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Moreauville", + "scheduled_service": "no", + "gps_code": "5LA1", + "local_code": "5LA1" + }, + { + "id": "12449", + "ident": "5LA2", + "type": "heliport", + "name": "Mobil Heliport", + "latitude_deg": "29.69056", + "longitude_deg": "-91.20095", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Morgan City", + "scheduled_service": "no", + "gps_code": "5LA2", + "local_code": "5LA2" + }, + { + "id": "12450", + "ident": "5LA3", + "type": "heliport", + "name": "Kerr McGee Heliport", + "latitude_deg": "29.687757", + "longitude_deg": "-91.193933", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Morgan City", + "scheduled_service": "no", + "gps_code": "5LA3", + "local_code": "5LA3" + }, + { + "id": "12451", + "ident": "5LA4", + "type": "closed", + "name": "Shell Morgan City Heliport", + "latitude_deg": "29.685616", + "longitude_deg": "-91.18218", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Morgan City", + "scheduled_service": "no", + "gps_code": "5LA4", + "local_code": "5LA4" + }, + { + "id": "12452", + "ident": "5LA5", + "type": "heliport", + "name": "RTI/Data-Com Heliport", + "latitude_deg": "29.7005", + "longitude_deg": "-91.194298", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Morgan City", + "scheduled_service": "no", + "gps_code": "5LA5", + "local_code": "5LA5" + }, + { + "id": "12453", + "ident": "5LA6", + "type": "seaplane_base", + "name": "E-8 Tank Battery Seaplane Base", + "latitude_deg": "28.950199127197266", + "longitude_deg": "-89.38780212402344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no", + "gps_code": "5LA6", + "local_code": "5LA6" + }, + { + "id": "12454", + "ident": "5LA7", + "type": "heliport", + "name": "Air Logistics Heliport", + "latitude_deg": "30.054285", + "longitude_deg": "-91.883738", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Iberia", + "scheduled_service": "no", + "gps_code": "5LA7", + "local_code": "5LA7" + }, + { + "id": "12455", + "ident": "5LA8", + "type": "heliport", + "name": "LA State Police Troop D Heliport", + "latitude_deg": "30.227151", + "longitude_deg": "-93.162636", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Charles", + "scheduled_service": "no", + "gps_code": "5LA8", + "local_code": "5LA8" + }, + { + "id": "12456", + "ident": "5LA9", + "type": "closed", + "name": "P.H.I. Heliport", + "latitude_deg": "29.943001", + "longitude_deg": "-90.185097", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no", + "keywords": "5LA9" + }, + { + "id": "12457", + "ident": "5LL0", + "type": "small_airport", + "name": "Beckerman Field", + "latitude_deg": "38.40840148925781", + "longitude_deg": "-87.8375015258789", + "elevation_ft": "424", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mount Carmel", + "scheduled_service": "no", + "gps_code": "5LL0", + "local_code": "5LL0" + }, + { + "id": "12458", + "ident": "5LL1", + "type": "small_airport", + "name": "Hilvety Airport", + "latitude_deg": "39.650001525878906", + "longitude_deg": "-88.97509765625", + "elevation_ft": "674", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Moweaqua", + "scheduled_service": "no", + "gps_code": "5LL1", + "local_code": "5LL1" + }, + { + "id": "12459", + "ident": "5LL2", + "type": "small_airport", + "name": "Paul E. Kroenlein Airport", + "latitude_deg": "39.6083984375", + "longitude_deg": "-88.8583984375", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Moweaqua", + "scheduled_service": "no", + "gps_code": "5LL2", + "local_code": "5LL2" + }, + { + "id": "12460", + "ident": "5LL3", + "type": "small_airport", + "name": "Mayhall Airport", + "latitude_deg": "39.769500732421875", + "longitude_deg": "-88.09529876708984", + "elevation_ft": "643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Murdock", + "scheduled_service": "no", + "gps_code": "5LL3", + "local_code": "5LL3" + }, + { + "id": "12461", + "ident": "5LL5", + "type": "small_airport", + "name": "Gordon Brown Airport", + "latitude_deg": "40.70140075683594", + "longitude_deg": "-89.88400268554688", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Trivoli", + "scheduled_service": "no", + "gps_code": "5LL5", + "local_code": "5LL5" + }, + { + "id": "12462", + "ident": "5LL7", + "type": "small_airport", + "name": "Funny Farm Airport", + "latitude_deg": "42.210476", + "longitude_deg": "-88.520056", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Union", + "scheduled_service": "no", + "gps_code": "5LL7", + "local_code": "5LL7", + "keywords": "Hilbert's Funny Farm" + }, + { + "id": "12463", + "ident": "5LL8", + "type": "small_airport", + "name": "Hugh Van Voorst Airport", + "latitude_deg": "41.112300872802734", + "longitude_deg": "-88.14009857177734", + "elevation_ft": "617", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Union Hill", + "scheduled_service": "no", + "gps_code": "5LL8", + "local_code": "5LL8" + }, + { + "id": "12464", + "ident": "5LL9", + "type": "heliport", + "name": "Morrison Community Hospital Heliport", + "latitude_deg": "41.80937", + "longitude_deg": "-89.957368", + "elevation_ft": "634", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Morrison", + "scheduled_service": "no", + "gps_code": "5LL9", + "local_code": "5LL9" + }, + { + "id": "45438", + "ident": "5LS0", + "type": "heliport", + "name": "Shell Chemical West Site Heliport", + "latitude_deg": "30.182222", + "longitude_deg": "-90.996111", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Gonzales", + "scheduled_service": "no", + "gps_code": "5LS0", + "local_code": "5LS0" + }, + { + "id": "12465", + "ident": "5LS6", + "type": "small_airport", + "name": "Arkla Flyers Inc Airport", + "latitude_deg": "32.765098571777344", + "longitude_deg": "-91.79620361328125", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Mer Rouge", + "scheduled_service": "no", + "gps_code": "5LS6", + "local_code": "5LS6" + }, + { + "id": "12466", + "ident": "5LS9", + "type": "small_airport", + "name": "Ammons Airport", + "latitude_deg": "31.531600952148438", + "longitude_deg": "-93.70770263671875", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Zwolle", + "scheduled_service": "no", + "gps_code": "5LS9", + "local_code": "5LS9" + }, + { + "id": "12467", + "ident": "5M1", + "type": "small_airport", + "name": "De Witt Municipal Airport Whitcomb Field", + "latitude_deg": "34.262299", + "longitude_deg": "-91.307503", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "De Witt", + "scheduled_service": "no", + "local_code": "5M1" + }, + { + "id": "12468", + "ident": "5M7", + "type": "small_airport", + "name": "Mountain Lakes Field", + "latitude_deg": "46.63079833984375", + "longitude_deg": "-111.80699920654297", + "elevation_ft": "4250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Helena", + "scheduled_service": "no", + "gps_code": "5M7", + "local_code": "5M7" + }, + { + "id": "12469", + "ident": "5MA0", + "type": "heliport", + "name": "Federal Center Heliport", + "latitude_deg": "42.39649963378906", + "longitude_deg": "-71.21620178222656", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Waltham", + "scheduled_service": "no", + "gps_code": "5MA0", + "local_code": "5MA0" + }, + { + "id": "12470", + "ident": "5MA2", + "type": "heliport", + "name": "Fuller House Heliport", + "latitude_deg": "41.553199768066406", + "longitude_deg": "-70.5509033203125", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "East Falmouth", + "scheduled_service": "no", + "gps_code": "5MA2", + "local_code": "5MA2" + }, + { + "id": "12471", + "ident": "5MA3", + "type": "small_airport", + "name": "Pasport Airport", + "latitude_deg": "42.187599182128906", + "longitude_deg": "-72.14309692382812", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "West Brookfield", + "scheduled_service": "no", + "gps_code": "5MA3", + "local_code": "5MA3" + }, + { + "id": "12472", + "ident": "5MA4", + "type": "heliport", + "name": "Double A Heliport", + "latitude_deg": "41.92449951171875", + "longitude_deg": "-70.76969909667969", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Carver", + "scheduled_service": "no", + "gps_code": "5MA4", + "local_code": "5MA4" + }, + { + "id": "12473", + "ident": "5MA5", + "type": "heliport", + "name": "Southend Farm Heliport", + "latitude_deg": "42.190101623535156", + "longitude_deg": "-71.356201171875", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Millis", + "scheduled_service": "no", + "gps_code": "5MA5", + "local_code": "5MA5" + }, + { + "id": "12474", + "ident": "5MA6", + "type": "heliport", + "name": "St. Luke's Hospital Heliport", + "latitude_deg": "41.626568", + "longitude_deg": "-70.93863", + "elevation_ft": "123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "New Bedford", + "scheduled_service": "no", + "gps_code": "5MA6", + "local_code": "5MA6" + }, + { + "id": "12475", + "ident": "5MA7", + "type": "heliport", + "name": "Cochituate Heliport", + "latitude_deg": "42.30839920043945", + "longitude_deg": "-71.38169860839844", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Natick", + "scheduled_service": "no", + "gps_code": "5MA7", + "local_code": "5MA7" + }, + { + "id": "12476", + "ident": "5MA8", + "type": "seaplane_base", + "name": "South Pond Seaplane Base", + "latitude_deg": "42.00870132446289", + "longitude_deg": "-72.76260375976562", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Southwick", + "scheduled_service": "no", + "gps_code": "5MA8", + "local_code": "5MA8" + }, + { + "id": "12477", + "ident": "5MA9", + "type": "closed", + "name": "Allen's Pond Airport", + "latitude_deg": "41.512964", + "longitude_deg": "-71.029315", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Westport", + "scheduled_service": "no", + "keywords": "5MA9" + }, + { + "id": "12478", + "ident": "5MD0", + "type": "closed", + "name": "Marble Head Farm Airport", + "latitude_deg": "38.989399", + "longitude_deg": "-75.866699", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Ridgely", + "scheduled_service": "no", + "keywords": "5MD0" + }, + { + "id": "12479", + "ident": "5MD1", + "type": "heliport", + "name": "Brooklandville Heliport", + "latitude_deg": "39.41669845581055", + "longitude_deg": "-76.67780303955078", + "elevation_ft": "312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Brooklandville", + "scheduled_service": "no", + "gps_code": "5MD1", + "local_code": "5MD1" + }, + { + "id": "12480", + "ident": "5MD2", + "type": "closed", + "name": "Marsh Field", + "latitude_deg": "39.576698", + "longitude_deg": "-78.9186", + "elevation_ft": "2600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Frostburg", + "scheduled_service": "no", + "keywords": "5MD2" + }, + { + "id": "12481", + "ident": "5MD3", + "type": "closed", + "name": "Sinai Hospital Heliport", + "latitude_deg": "39.3521", + "longitude_deg": "-76.661598", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Baltimore", + "scheduled_service": "no", + "keywords": "5MD3" + }, + { + "id": "12482", + "ident": "5MD4", + "type": "closed", + "name": "AAI Heliport", + "latitude_deg": "39.469601", + "longitude_deg": "-76.640503", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Cockeysville", + "scheduled_service": "no", + "keywords": "5MD4" + }, + { + "id": "12483", + "ident": "5MD5", + "type": "small_airport", + "name": "Arcadia Farms Airport", + "latitude_deg": "38.196476", + "longitude_deg": "-75.709641", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Princess Anne", + "scheduled_service": "no", + "gps_code": "5MD5", + "local_code": "5MD5", + "keywords": "Flying W" + }, + { + "id": "12484", + "ident": "5MD6", + "type": "heliport", + "name": "Franklin Square Hospital Center Heliport", + "latitude_deg": "39.35060119628906", + "longitude_deg": "-76.47640228271484", + "elevation_ft": "155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Baltimore", + "scheduled_service": "no", + "gps_code": "5MD6", + "local_code": "5MD6" + }, + { + "id": "12485", + "ident": "5MD7", + "type": "closed", + "name": "Bluemel Field", + "latitude_deg": "38.133598", + "longitude_deg": "-75.7631", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Princess Anne", + "scheduled_service": "no", + "keywords": "5MD7" + }, + { + "id": "12486", + "ident": "5MD8", + "type": "small_airport", + "name": "Edelen Field", + "latitude_deg": "38.49100112915039", + "longitude_deg": "-77.0115966796875", + "elevation_ft": "151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "La Plata", + "scheduled_service": "no", + "gps_code": "5MD8", + "local_code": "5MD8" + }, + { + "id": "12487", + "ident": "5MD9", + "type": "heliport", + "name": "Suburban Hospital Heliport", + "latitude_deg": "38.997485", + "longitude_deg": "-77.109918", + "elevation_ft": "382", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Bethesda", + "scheduled_service": "no", + "gps_code": "5MD9", + "local_code": "5MD9" + }, + { + "id": "12488", + "ident": "5ME", + "type": "seaplane_base", + "name": "Brandy Pond Seaplane Base", + "latitude_deg": "43.9546012878418", + "longitude_deg": "-70.59110260009766", + "elevation_ft": "267", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Naples", + "scheduled_service": "no", + "gps_code": "5ME", + "local_code": "5ME" + }, + { + "id": "333473", + "ident": "5ME2", + "type": "seaplane_base", + "name": "Frogg Island Seaplane Base", + "latitude_deg": "43.870833", + "longitude_deg": "-70.424722", + "elevation_ft": "290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Gray", + "scheduled_service": "no", + "gps_code": "5ME2", + "local_code": "5ME2" + }, + { + "id": "328794", + "ident": "5ME9", + "type": "heliport", + "name": "Maine General Medical Center-Augusta Heliport", + "latitude_deg": "44.361814", + "longitude_deg": "-69.779844", + "elevation_ft": "268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Augusta", + "scheduled_service": "no", + "gps_code": "5ME9", + "local_code": "5ME9" + }, + { + "id": "12489", + "ident": "5MI0", + "type": "heliport", + "name": "Detroit Medical Center Heliport", + "latitude_deg": "42.356998443603516", + "longitude_deg": "-83.05770111083984", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Detroit", + "scheduled_service": "no", + "gps_code": "5MI0", + "local_code": "5MI0" + }, + { + "id": "12490", + "ident": "5MI1", + "type": "small_airport", + "name": "Wilds Field", + "latitude_deg": "43.251399993896484", + "longitude_deg": "-85.54280090332031", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Cedar Springs", + "scheduled_service": "no", + "gps_code": "5MI1", + "local_code": "5MI1" + }, + { + "id": "12491", + "ident": "5MI2", + "type": "closed", + "name": "McQuestion's Airport", + "latitude_deg": "44.077227", + "longitude_deg": "-85.438356", + "elevation_ft": "1317", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "LeRoy", + "scheduled_service": "no", + "gps_code": "5MI2", + "local_code": "5MI2" + }, + { + "id": "12492", + "ident": "5MI3", + "type": "closed", + "name": "Cridler Airport", + "latitude_deg": "43.051102", + "longitude_deg": "-85.419998", + "elevation_ft": "866", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lowell", + "scheduled_service": "no", + "keywords": "5MI3" + }, + { + "id": "12493", + "ident": "5MI4", + "type": "closed", + "name": "Anderson Airport", + "latitude_deg": "43.428398", + "longitude_deg": "-85.455694", + "elevation_ft": "902", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Howard City", + "scheduled_service": "no", + "local_code": "5MI4", + "keywords": "5MI4" + }, + { + "id": "12494", + "ident": "5MI5", + "type": "heliport", + "name": "Borgess Medical Center Heliport", + "latitude_deg": "42.30730056762695", + "longitude_deg": "-85.55809783935547", + "elevation_ft": "849", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Kalamazoo", + "scheduled_service": "no", + "gps_code": "5MI5", + "local_code": "5MI5" + }, + { + "id": "12495", + "ident": "5MI6", + "type": "heliport", + "name": "Tv2 Heliport", + "latitude_deg": "42.460601806640625", + "longitude_deg": "-83.21720123291016", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Southfield", + "scheduled_service": "no", + "gps_code": "5MI6", + "local_code": "5MI6" + }, + { + "id": "12496", + "ident": "5MI7", + "type": "small_airport", + "name": "Williams Field", + "latitude_deg": "42.36109924316406", + "longitude_deg": "-84.42479705810547", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "5MI7", + "local_code": "5MI7" + }, + { + "id": "12497", + "ident": "5MI8", + "type": "closed", + "name": "Lakeside Airport", + "latitude_deg": "42.6717", + "longitude_deg": "-84.488297", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Holt", + "scheduled_service": "no", + "keywords": "5MI8" + }, + { + "id": "12498", + "ident": "5MI9", + "type": "heliport", + "name": "Mc Phail Corporation Heliport", + "latitude_deg": "42.6603012085", + "longitude_deg": "-83.1555023193", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Rochester", + "scheduled_service": "no", + "gps_code": "5MI9", + "local_code": "5MI9" + }, + { + "id": "12499", + "ident": "5MN0", + "type": "small_airport", + "name": "Scrabeck Airport", + "latitude_deg": "43.866600036621094", + "longitude_deg": "-92.56109619140625", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "High Forest", + "scheduled_service": "no", + "gps_code": "5MN0", + "local_code": "5MN0" + }, + { + "id": "12500", + "ident": "5MN1", + "type": "closed", + "name": "Budde Airport", + "latitude_deg": "44.2005", + "longitude_deg": "-94.113297", + "elevation_ft": "975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Mankato", + "scheduled_service": "no", + "keywords": "5MN1" + }, + { + "id": "12501", + "ident": "5MN2", + "type": "small_airport", + "name": "Hoiland Field", + "latitude_deg": "47.39580154418945", + "longitude_deg": "-95.36750030517578", + "elevation_ft": "1535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Bagley", + "scheduled_service": "no", + "gps_code": "5MN2", + "local_code": "5MN2" + }, + { + "id": "12502", + "ident": "5MN3", + "type": "heliport", + "name": "Mesabi Regional Medical Center Heliport", + "latitude_deg": "47.4099006652832", + "longitude_deg": "-92.92880249023438", + "elevation_ft": "1359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hibbing", + "scheduled_service": "no", + "gps_code": "5MN3", + "local_code": "5MN3" + }, + { + "id": "12503", + "ident": "5MN4", + "type": "closed", + "name": "Seven Hills Airport", + "latitude_deg": "45.412498", + "longitude_deg": "-94.076698", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Clearwater", + "scheduled_service": "no", + "gps_code": "5MN4", + "local_code": "5MN4" + }, + { + "id": "12504", + "ident": "5MN5", + "type": "small_airport", + "name": "Barnes Airport", + "latitude_deg": "45.4364013671875", + "longitude_deg": "-92.83489990234375", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Lindstrom", + "scheduled_service": "no", + "gps_code": "5MN5", + "local_code": "5MN5" + }, + { + "id": "12505", + "ident": "5MN6", + "type": "seaplane_base", + "name": "Northbound Seaplane Base", + "latitude_deg": "47.15639877319336", + "longitude_deg": "-93.5239028930664", + "elevation_ft": "1273", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Grand Papids", + "scheduled_service": "no", + "gps_code": "5MN6", + "local_code": "5MN6" + }, + { + "id": "12506", + "ident": "5MN7", + "type": "small_airport", + "name": "Lindey's Landing Airport", + "latitude_deg": "46.38719940185547", + "longitude_deg": "-93.93190002441406", + "elevation_ft": "1295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Deerwood", + "scheduled_service": "no", + "gps_code": "5MN7", + "local_code": "5MN7" + }, + { + "id": "12507", + "ident": "5MN8", + "type": "closed", + "name": "Rick Mathias Private Airport", + "latitude_deg": "45.719398", + "longitude_deg": "-96.310302", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Dumont", + "scheduled_service": "no", + "keywords": "5MN8" + }, + { + "id": "12508", + "ident": "5MN9", + "type": "small_airport", + "name": "Chanlin Field", + "latitude_deg": "48.42359924316406", + "longitude_deg": "-96.12889862060547", + "elevation_ft": "1147", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Middle River", + "scheduled_service": "no", + "gps_code": "5MN9", + "local_code": "5MN9" + }, + { + "id": "12509", + "ident": "5MO", + "type": "small_airport", + "name": "Plattsburg Airpark", + "latitude_deg": "39.594398498535156", + "longitude_deg": "-94.46269989013672", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Plattsburg", + "scheduled_service": "no", + "gps_code": "5MO", + "local_code": "5MO" + }, + { + "id": "12510", + "ident": "5MO0", + "type": "heliport", + "name": "Cox Medical Center Branson Heliport", + "latitude_deg": "36.6504", + "longitude_deg": "-93.2226", + "elevation_ft": "783", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Branson", + "scheduled_service": "no", + "gps_code": "5MO0", + "local_code": "5MO0", + "keywords": "Skaggs Community Hospital Heliport" + }, + { + "id": "12511", + "ident": "5MO1", + "type": "small_airport", + "name": "Irons Airport", + "latitude_deg": "39.375979", + "longitude_deg": "-92.363949", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Moberly", + "scheduled_service": "no", + "gps_code": "5MO1", + "local_code": "5MO1" + }, + { + "id": "12512", + "ident": "5MO3", + "type": "closed", + "name": "Bil-Mitch Airport", + "latitude_deg": "36.940601", + "longitude_deg": "-93.957397", + "elevation_ft": "1342", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Monett", + "scheduled_service": "no", + "keywords": "5MO3" + }, + { + "id": "12513", + "ident": "5MO4", + "type": "heliport", + "name": "Reynolds County Memorial Hospital Heliport", + "latitude_deg": "37.167301177978516", + "longitude_deg": "-91.83519744873047", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Ellington", + "scheduled_service": "no", + "gps_code": "5MO4", + "local_code": "5MO4" + }, + { + "id": "12514", + "ident": "5MO5", + "type": "heliport", + "name": "St Lukes Hospital Heliport", + "latitude_deg": "39.05080032348633", + "longitude_deg": "-94.58940124511719", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kansas City", + "scheduled_service": "no", + "gps_code": "5MO5", + "local_code": "5MO5" + }, + { + "id": "353856", + "ident": "5MO6", + "type": "small_airport", + "name": "Vansickle-Davis Airport", + "latitude_deg": "40.12795", + "longitude_deg": "-92.291125", + "elevation_ft": "882", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hurdland", + "scheduled_service": "no", + "gps_code": "5MO6", + "local_code": "5MO6" + }, + { + "id": "12515", + "ident": "5MO7", + "type": "closed", + "name": "St. John's Regional Medical Center Heliport", + "latitude_deg": "37.061501", + "longitude_deg": "-94.531303", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Joplin", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mercy_Hospital_Joplin", + "keywords": "5MO7" + }, + { + "id": "12516", + "ident": "5MO8", + "type": "closed", + "name": "Double E Heliport", + "latitude_deg": "39.269501", + "longitude_deg": "-93.654404", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Norborne", + "scheduled_service": "no", + "keywords": "5MO8" + }, + { + "id": "12517", + "ident": "5MO9", + "type": "small_airport", + "name": "Oak Ridge Farms Airport", + "latitude_deg": "39.982498", + "longitude_deg": "-92.864403", + "elevation_ft": "995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "New Boston", + "scheduled_service": "no", + "gps_code": "5MO9", + "local_code": "5MO9" + }, + { + "id": "12518", + "ident": "5MS1", + "type": "small_airport", + "name": "Rollang Field", + "latitude_deg": "32.953543", + "longitude_deg": "-90.845144", + "elevation_ft": "106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Rolling Fork", + "scheduled_service": "no", + "gps_code": "5MS1", + "local_code": "5MS1" + }, + { + "id": "12519", + "ident": "5MS2", + "type": "small_airport", + "name": "Turkey Bayou Airpark", + "latitude_deg": "30.25079917907715", + "longitude_deg": "-89.45099639892578", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Lakeshore", + "scheduled_service": "no", + "gps_code": "5MS2", + "local_code": "5MS2" + }, + { + "id": "12520", + "ident": "5MS3", + "type": "small_airport", + "name": "Porter Airport", + "latitude_deg": "31.174999237060547", + "longitude_deg": "-89.8031005859375", + "elevation_ft": "158", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "5MS3", + "local_code": "5MS3" + }, + { + "id": "12521", + "ident": "5MS4", + "type": "small_airport", + "name": "Walnut Creek Airport", + "latitude_deg": "32.59260177612305", + "longitude_deg": "-89.92520141601562", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Canton", + "scheduled_service": "no", + "gps_code": "5MS4", + "local_code": "5MS4" + }, + { + "id": "12522", + "ident": "5MS5", + "type": "small_airport", + "name": "Mint Julep Airpark", + "latitude_deg": "30.54520034790039", + "longitude_deg": "-89.46279907226562", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Picayune", + "scheduled_service": "no", + "gps_code": "5MS5", + "local_code": "5MS5" + }, + { + "id": "12523", + "ident": "5MS6", + "type": "small_airport", + "name": "Dee's Strip", + "latitude_deg": "32.42300033569336", + "longitude_deg": "-90.00769805908203", + "elevation_ft": "329", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Brandon", + "scheduled_service": "no", + "gps_code": "5MS6", + "local_code": "5MS6" + }, + { + "id": "45493", + "ident": "5MS7", + "type": "heliport", + "name": "Baptist Memorial Hospital Union County Heliport", + "latitude_deg": "34.4975", + "longitude_deg": "-89.026389", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "New Albany", + "scheduled_service": "no", + "gps_code": "5MS7", + "local_code": "5MS7" + }, + { + "id": "45492", + "ident": "5MS8", + "type": "small_airport", + "name": "Ball Airport", + "latitude_deg": "33.875", + "longitude_deg": "-88.723333", + "elevation_ft": "298", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Okolona", + "scheduled_service": "no", + "gps_code": "5MS8", + "local_code": "5MS8" + }, + { + "id": "45496", + "ident": "5MS9", + "type": "heliport", + "name": "Penton Heliport", + "latitude_deg": "30.59905", + "longitude_deg": "-89.541717", + "elevation_ft": "167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Picayune", + "scheduled_service": "no", + "keywords": "5MS9" + }, + { + "id": "330691", + "ident": "5MT5", + "type": "small_airport", + "name": "Unrau Airport", + "latitude_deg": "48.448504", + "longitude_deg": "-105.830899", + "elevation_ft": "2900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Wolf Point", + "scheduled_service": "no", + "gps_code": "5MT5", + "local_code": "5MT5" + }, + { + "id": "342445", + "ident": "5MU5", + "type": "small_airport", + "name": "Gjerde International Airport", + "latitude_deg": "38.508979", + "longitude_deg": "-94.484349", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Drexel", + "scheduled_service": "no", + "gps_code": "5MU5", + "local_code": "5MU5" + }, + { + "id": "12524", + "ident": "5N4", + "type": "small_airport", + "name": "Sky Haven Airport", + "latitude_deg": "46.626272", + "longitude_deg": "-97.620684", + "elevation_ft": "1147", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Enderlin", + "scheduled_service": "no", + "local_code": "5N4" + }, + { + "id": "12525", + "ident": "5N5", + "type": "small_airport", + "name": "Kirkwood Airpark", + "latitude_deg": "42.00040054321289", + "longitude_deg": "-75.76020050048828", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Kirkwood", + "scheduled_service": "no", + "gps_code": "5N5", + "local_code": "5N5" + }, + { + "id": "12526", + "ident": "5N7", + "type": "small_airport", + "name": "Hat Field", + "latitude_deg": "43.097198486328125", + "longitude_deg": "-86.09459686279297", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Nunica", + "scheduled_service": "no", + "gps_code": "5N7", + "local_code": "5N7" + }, + { + "id": "12527", + "ident": "5NA0", + "type": "small_airport", + "name": "Semchenko Airport", + "latitude_deg": "47.77360153198242", + "longitude_deg": "-101.27899932861328", + "elevation_ft": "2065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Max", + "scheduled_service": "no", + "gps_code": "5NA0", + "local_code": "5NA0" + }, + { + "id": "12528", + "ident": "5NA2", + "type": "small_airport", + "name": "Largo Base Airport", + "latitude_deg": "47.5378", + "longitude_deg": "-97.3637", + "elevation_ft": "1002", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "5NA2", + "local_code": "5NA2", + "keywords": "Haugen Farm Airstrip" + }, + { + "id": "12529", + "ident": "5NC0", + "type": "heliport", + "name": "Carolina Kidney Heliport", + "latitude_deg": "35.40169906616211", + "longitude_deg": "-77.9480972290039", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Goldsboro", + "scheduled_service": "no", + "gps_code": "5NC0", + "local_code": "5NC0" + }, + { + "id": "12530", + "ident": "5NC1", + "type": "small_airport", + "name": "Tara Airbase Airport", + "latitude_deg": "35.7932014465332", + "longitude_deg": "-80.51229858398438", + "elevation_ft": "756", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Mocksville", + "scheduled_service": "no", + "gps_code": "5NC1", + "local_code": "5NC1" + }, + { + "id": "12531", + "ident": "5NC2", + "type": "closed", + "name": "Lathan Strip", + "latitude_deg": "34.876301", + "longitude_deg": "-80.619202", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Monroe", + "scheduled_service": "no", + "keywords": "5NC2" + }, + { + "id": "12532", + "ident": "5NC3", + "type": "small_airport", + "name": "Gilliam-McConnell Airfield", + "latitude_deg": "35.341702", + "longitude_deg": "-79.436897", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Carthage", + "scheduled_service": "no", + "gps_code": "KBQ1", + "local_code": "BQ1", + "keywords": "5NC3" + }, + { + "id": "12533", + "ident": "5NC4", + "type": "heliport", + "name": "Murphy Medical Center Heliport", + "latitude_deg": "35.07310104370117", + "longitude_deg": "-83.96690368652344", + "elevation_ft": "1620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Murphy", + "scheduled_service": "no", + "gps_code": "5NC4", + "local_code": "5NC4" + }, + { + "id": "12534", + "ident": "5NC5", + "type": "small_airport", + "name": "The Duchy Airport", + "latitude_deg": "35.98149871826172", + "longitude_deg": "-79.27310180664062", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Chapel Hill", + "scheduled_service": "no", + "gps_code": "5NC5", + "local_code": "5NC5" + }, + { + "id": "12535", + "ident": "5NC6", + "type": "heliport", + "name": "Tarboro-Edgecombe County Heliport", + "latitude_deg": "35.936500549316406", + "longitude_deg": "-77.55000305175781", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Tarboro", + "scheduled_service": "no", + "gps_code": "5NC6", + "local_code": "5NC6" + }, + { + "id": "12536", + "ident": "5NC7", + "type": "heliport", + "name": "Nc Baptist Hospital Heliport", + "latitude_deg": "36.089900970458984", + "longitude_deg": "-80.26699829101562", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Winston-Salem", + "scheduled_service": "no", + "gps_code": "5NC7", + "local_code": "5NC7" + }, + { + "id": "12537", + "ident": "5NC8", + "type": "heliport", + "name": "Unifi Heliport", + "latitude_deg": "36.13650131225586", + "longitude_deg": "-80.64649963378906", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Yadkinville", + "scheduled_service": "no", + "gps_code": "5NC8", + "local_code": "5NC8" + }, + { + "id": "12538", + "ident": "5NC9", + "type": "heliport", + "name": "Sprint/Carolina Telephone Heliport", + "latitude_deg": "35.05270004272461", + "longitude_deg": "-78.89089965820312", + "elevation_ft": "143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "5NC9", + "local_code": "5NC9" + }, + { + "id": "12539", + "ident": "5ND0", + "type": "small_airport", + "name": "Stiehl Airport", + "latitude_deg": "48.07640075683594", + "longitude_deg": "-104.03199768066406", + "elevation_ft": "2277", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Buford", + "scheduled_service": "no", + "gps_code": "5ND0", + "local_code": "5ND0" + }, + { + "id": "12540", + "ident": "5ND3", + "type": "small_airport", + "name": "Craig Private Airport", + "latitude_deg": "48.855499267578125", + "longitude_deg": "-97.3219985961914", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Bathgate", + "scheduled_service": "no", + "gps_code": "5ND3", + "local_code": "5ND3" + }, + { + "id": "12541", + "ident": "5ND4", + "type": "small_airport", + "name": "Tesch Strip", + "latitude_deg": "46.14360046386719", + "longitude_deg": "-97.24310302734375", + "elevation_ft": "1114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Lidgerwood", + "scheduled_service": "no", + "gps_code": "5ND4", + "local_code": "5ND4" + }, + { + "id": "12542", + "ident": "5ND9", + "type": "small_airport", + "name": "Deck Airport", + "latitude_deg": "47.48469924926758", + "longitude_deg": "-97.07479858398438", + "elevation_ft": "916", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "5ND9", + "local_code": "5ND9" + }, + { + "id": "12543", + "ident": "5NE1", + "type": "small_airport", + "name": "Trumbull Ranch Airport", + "latitude_deg": "41.54999923706055", + "longitude_deg": "-100.83399963378906", + "elevation_ft": "3260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Ringgold", + "scheduled_service": "no", + "gps_code": "5NE1", + "local_code": "5NE1" + }, + { + "id": "12544", + "ident": "5NE2", + "type": "small_airport", + "name": "Eickhoff Strip", + "latitude_deg": "40.19580078125", + "longitude_deg": "-95.62940216064453", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Shubert", + "scheduled_service": "no", + "gps_code": "5NE2", + "local_code": "5NE2" + }, + { + "id": "12545", + "ident": "5NE3", + "type": "small_airport", + "name": "Diamond Bar Jones Airport", + "latitude_deg": "41.48749923706055", + "longitude_deg": "-100.48799896240234", + "elevation_ft": "2900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Stapleton", + "scheduled_service": "no", + "gps_code": "5NE3", + "local_code": "5NE3" + }, + { + "id": "12546", + "ident": "5NE4", + "type": "small_airport", + "name": "Snyder Ranch Airport", + "latitude_deg": "41.572200775146484", + "longitude_deg": "-101.1719970703125", + "elevation_ft": "3330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Sutherland", + "scheduled_service": "no", + "gps_code": "5NE4", + "local_code": "5NE4" + }, + { + "id": "12547", + "ident": "5NE5", + "type": "small_airport", + "name": "Trego Airport", + "latitude_deg": "41.20669937133789", + "longitude_deg": "-101.14299774169922", + "elevation_ft": "2957", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Sutherland", + "scheduled_service": "no", + "gps_code": "5NE5", + "local_code": "5NE5" + }, + { + "id": "12548", + "ident": "5NE6", + "type": "small_airport", + "name": "Bakers Acres Airport", + "latitude_deg": "40.25", + "longitude_deg": "-101.0999984741211", + "elevation_ft": "2950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Trenton", + "scheduled_service": "no", + "gps_code": "5NE6", + "local_code": "5NE6" + }, + { + "id": "325673", + "ident": "5NE8", + "type": "heliport", + "name": "Saint Mary's Community Hospital Heliport", + "latitude_deg": "40.656272", + "longitude_deg": "-95.863608", + "elevation_ft": "1081", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Nebraska City", + "scheduled_service": "no", + "gps_code": "5NE8", + "local_code": "5NE8" + }, + { + "id": "12549", + "ident": "5NE9", + "type": "small_airport", + "name": "Dodson Brothers Airport", + "latitude_deg": "40.733299255371094", + "longitude_deg": "-102.05000305175781", + "elevation_ft": "3575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Venango", + "scheduled_service": "no", + "gps_code": "5NE9", + "local_code": "5NE9" + }, + { + "id": "12550", + "ident": "5NJ0", + "type": "heliport", + "name": "Fiddlers Elbow Country Club Heliport", + "latitude_deg": "40.6401", + "longitude_deg": "-74.72196", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bedminster", + "scheduled_service": "no", + "gps_code": "5NJ0", + "local_code": "5NJ0" + }, + { + "id": "12551", + "ident": "5NJ1", + "type": "heliport", + "name": "Oti Heliport", + "latitude_deg": "40.80619812011719", + "longitude_deg": "-74.9905014038086", + "elevation_ft": "495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Oxford", + "scheduled_service": "no", + "gps_code": "5NJ1", + "local_code": "5NJ1" + }, + { + "id": "12552", + "ident": "5NJ2", + "type": "small_airport", + "name": "Herr Mountain Airport", + "latitude_deg": "40.592752", + "longitude_deg": "-74.840405", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Stanton", + "scheduled_service": "no", + "gps_code": "5NJ2", + "local_code": "5NJ2" + }, + { + "id": "12553", + "ident": "5NJ3", + "type": "heliport", + "name": "Great Gorge Country Club Inc Heliport", + "latitude_deg": "41.1912", + "longitude_deg": "-74.532402", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Vernon", + "scheduled_service": "no", + "gps_code": "5NJ3", + "local_code": "5NJ3" + }, + { + "id": "12554", + "ident": "5NJ4", + "type": "heliport", + "name": "Trenton Heliport", + "latitude_deg": "40.215238", + "longitude_deg": "-74.766153", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Trenton", + "scheduled_service": "no", + "gps_code": "5NJ4", + "local_code": "5NJ4" + }, + { + "id": "12555", + "ident": "5NJ5", + "type": "heliport", + "name": "Atsion Helistop", + "latitude_deg": "39.74319839477539", + "longitude_deg": "-74.72540283203125", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Trenton", + "scheduled_service": "no", + "gps_code": "5NJ5", + "local_code": "5NJ5" + }, + { + "id": "12556", + "ident": "5NJ6", + "type": "closed", + "name": "Congoleum Helistop", + "latitude_deg": "40.250099", + "longitude_deg": "-74.706802", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Trenton", + "scheduled_service": "no", + "keywords": "5NJ6" + }, + { + "id": "12557", + "ident": "5NJ7", + "type": "heliport", + "name": "Warren Hospital Heliport", + "latitude_deg": "40.702598571777344", + "longitude_deg": "-75.1780014038086", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Phillipsburg", + "scheduled_service": "no", + "gps_code": "5NJ7", + "local_code": "5NJ7" + }, + { + "id": "12558", + "ident": "5NJ8", + "type": "heliport", + "name": "Oyster Creek Generating Station Heliport", + "latitude_deg": "39.81589889526367", + "longitude_deg": "-74.20390319824219", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Forked River", + "scheduled_service": "no", + "gps_code": "5NJ8", + "local_code": "5NJ8" + }, + { + "id": "12559", + "ident": "5NJ9", + "type": "heliport", + "name": "West Jersey Hospital Heliport", + "latitude_deg": "39.86289978027344", + "longitude_deg": "-74.96019744873047", + "elevation_ft": "124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Glendale/Voorhees", + "scheduled_service": "no", + "gps_code": "5NJ9", + "local_code": "5NJ9" + }, + { + "id": "12560", + "ident": "5NK", + "type": "small_airport", + "name": "Naknek Airport", + "latitude_deg": "58.735633", + "longitude_deg": "-157.02216", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Naknek", + "scheduled_service": "no", + "iata_code": "NNK", + "local_code": "5NK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naknek_Airport" + }, + { + "id": "12561", + "ident": "5NK0", + "type": "small_airport", + "name": "Salubrious Point Airport", + "latitude_deg": "44.0442008972168", + "longitude_deg": "-76.14360046386719", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Chaumont", + "scheduled_service": "no", + "gps_code": "5NK0", + "local_code": "5NK0" + }, + { + "id": "12562", + "ident": "5NK1", + "type": "small_airport", + "name": "Toggenburg Farms Airport", + "latitude_deg": "43.111752", + "longitude_deg": "-77.052231", + "elevation_ft": "435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Newark", + "scheduled_service": "no", + "gps_code": "5NK1", + "local_code": "5NK1" + }, + { + "id": "12563", + "ident": "5NK2", + "type": "heliport", + "name": "Alexander's East Heliport", + "latitude_deg": "40.80139923095703", + "longitude_deg": "-72.6624984741211", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Westhampton Beach", + "scheduled_service": "no", + "gps_code": "5NK2", + "local_code": "5NK2" + }, + { + "id": "12564", + "ident": "5NK3", + "type": "heliport", + "name": "Westhampton Beach Heliport", + "latitude_deg": "40.80229949951172", + "longitude_deg": "-72.66290283203125", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Westhampton Beach", + "scheduled_service": "no", + "gps_code": "5NK3", + "local_code": "5NK3" + }, + { + "id": "12565", + "ident": "5NK4", + "type": "heliport", + "name": "Olean General Heliport", + "latitude_deg": "42.09170150756836", + "longitude_deg": "-78.42780303955078", + "elevation_ft": "1426", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Olean", + "scheduled_service": "no", + "gps_code": "5NK4", + "local_code": "5NK4" + }, + { + "id": "12566", + "ident": "5NK5", + "type": "small_airport", + "name": "Kingdom Field", + "latitude_deg": "43.40869903564453", + "longitude_deg": "-76.44129943847656", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Oswego", + "scheduled_service": "no", + "gps_code": "5NK5", + "local_code": "5NK5" + }, + { + "id": "12567", + "ident": "5NK6", + "type": "heliport", + "name": "Erwin Heliport", + "latitude_deg": "42.152000427246094", + "longitude_deg": "-77.09709930419922", + "elevation_ft": "1022", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Painted Post", + "scheduled_service": "no", + "gps_code": "5NK6", + "local_code": "5NK6" + }, + { + "id": "12568", + "ident": "5NK7", + "type": "heliport", + "name": "Hammersley Hill Heliport", + "latitude_deg": "41.59450149536133", + "longitude_deg": "-73.55599975585938", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Pawling", + "scheduled_service": "no", + "gps_code": "5NK7", + "local_code": "5NK7" + }, + { + "id": "12569", + "ident": "5NK8", + "type": "heliport", + "name": "South Quaker Heliport", + "latitude_deg": "41.52690124511719", + "longitude_deg": "-73.58059692382812", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Pawling", + "scheduled_service": "no", + "gps_code": "5NK8", + "local_code": "5NK8" + }, + { + "id": "12570", + "ident": "5NK9", + "type": "small_airport", + "name": "Treichler Farm Airport", + "latitude_deg": "42.76169967651367", + "longitude_deg": "-78.49610137939453", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Wales", + "scheduled_service": "no", + "gps_code": "5NK9", + "local_code": "5NK9" + }, + { + "id": "12572", + "ident": "5NY1", + "type": "small_airport", + "name": "Tomahawk Hills Airport", + "latitude_deg": "42.39979934692383", + "longitude_deg": "-74.90630340576172", + "elevation_ft": "2380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Meridale", + "scheduled_service": "no", + "gps_code": "5NY1", + "local_code": "5NY1" + }, + { + "id": "12573", + "ident": "5NY2", + "type": "heliport", + "name": "Tennessee Gas Pipeline Heliport", + "latitude_deg": "42.0547981262207", + "longitude_deg": "-79.69450378417969", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Clymer", + "scheduled_service": "no", + "gps_code": "5NY2", + "local_code": "5NY2" + }, + { + "id": "12574", + "ident": "5NY3", + "type": "closed", + "name": "Keech Airport", + "latitude_deg": "42.492902", + "longitude_deg": "-76.386901", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Etna", + "scheduled_service": "no", + "keywords": "5NY3" + }, + { + "id": "12575", + "ident": "5NY4", + "type": "small_airport", + "name": "Stanwix Heights Airport", + "latitude_deg": "43.15760040283203", + "longitude_deg": "-75.43070220947266", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Rome", + "scheduled_service": "no", + "gps_code": "5NY4", + "local_code": "5NY4" + }, + { + "id": "12576", + "ident": "5NY5", + "type": "small_airport", + "name": "Gardiner Airport", + "latitude_deg": "41.66680145263672", + "longitude_deg": "-74.14959716796875", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Gardiner", + "scheduled_service": "no", + "gps_code": "5NY5", + "local_code": "5NY5" + }, + { + "id": "12577", + "ident": "5NY6", + "type": "closed", + "name": "Merrill Glen Cove Heliport", + "latitude_deg": "40.860103", + "longitude_deg": "-73.596199", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Glen Cove", + "scheduled_service": "no", + "keywords": "5NY6" + }, + { + "id": "12578", + "ident": "5NY7", + "type": "small_airport", + "name": "Rolling Hills Airport", + "latitude_deg": "41.32789993286133", + "longitude_deg": "-74.40989685058594", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Goshen", + "scheduled_service": "no", + "gps_code": "5NY7", + "local_code": "5NY7" + }, + { + "id": "12579", + "ident": "5NY8", + "type": "heliport", + "name": "Bowline Point Heliport", + "latitude_deg": "41.205536", + "longitude_deg": "-73.963974", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Haverstraw", + "scheduled_service": "no", + "gps_code": "5NY8", + "local_code": "5NY8" + }, + { + "id": "12580", + "ident": "5NY9", + "type": "closed", + "name": "Alexander's-Roosevelt Heliport", + "latitude_deg": "40.733398", + "longitude_deg": "-75.624603", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hempstead", + "scheduled_service": "no", + "local_code": "5NY9", + "keywords": "5NY9" + }, + { + "id": "12581", + "ident": "5O1", + "type": "small_airport", + "name": "Vici Municipal Airport", + "latitude_deg": "36.141701", + "longitude_deg": "-99.303201", + "elevation_ft": "2268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Vici", + "scheduled_service": "no", + "local_code": "5O1", + "keywords": "OK77" + }, + { + "id": "12582", + "ident": "5OH0", + "type": "closed", + "name": "Alge Airport", + "latitude_deg": "40.9048", + "longitude_deg": "-83.644697", + "elevation_ft": "857", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Arlington", + "scheduled_service": "no", + "keywords": "5OH0" + }, + { + "id": "12583", + "ident": "5OH1", + "type": "heliport", + "name": "Samaritan Hospital Heliport", + "latitude_deg": "40.85639953613281", + "longitude_deg": "-82.31069946289062", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "5OH1", + "local_code": "5OH1" + }, + { + "id": "12584", + "ident": "5OH2", + "type": "heliport", + "name": "Odot District 03 Heliport", + "latitude_deg": "40.87670135498047", + "longitude_deg": "-82.29540252685547", + "elevation_ft": "1012", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "5OH2", + "local_code": "5OH2" + }, + { + "id": "12585", + "ident": "5OH3", + "type": "heliport", + "name": "Mary Rutan Heliport", + "latitude_deg": "40.37730026245117", + "longitude_deg": "-83.75409698486328", + "elevation_ft": "1345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bellefontaine", + "scheduled_service": "no", + "gps_code": "5OH3", + "local_code": "5OH3" + }, + { + "id": "12586", + "ident": "5OH4", + "type": "closed", + "name": "Armington Airport", + "latitude_deg": "41.734336", + "longitude_deg": "-80.875301", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Austinburg", + "scheduled_service": "no", + "keywords": "5OH4" + }, + { + "id": "12587", + "ident": "5OH5", + "type": "heliport", + "name": "Meigs Mine 1 Heliport", + "latitude_deg": "39.055599212646484", + "longitude_deg": "-82.24150085449219", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "5OH5", + "local_code": "5OH5" + }, + { + "id": "12588", + "ident": "5OH6", + "type": "closed", + "name": "Johnsons Field", + "latitude_deg": "41.431998", + "longitude_deg": "-81.974899", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Avon", + "scheduled_service": "no", + "keywords": "5OH6" + }, + { + "id": "12589", + "ident": "5OH7", + "type": "closed", + "name": "Keller Airport", + "latitude_deg": "41.446702", + "longitude_deg": "-82.007103", + "elevation_ft": "692", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Avon", + "scheduled_service": "no", + "keywords": "5OH7" + }, + { + "id": "12590", + "ident": "5OH8", + "type": "heliport", + "name": "Joseph Skilken & Co Heliport", + "latitude_deg": "39.955299377399996", + "longitude_deg": "-82.99710083010001", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "5OH8", + "local_code": "5OH8" + }, + { + "id": "12591", + "ident": "5OH9", + "type": "small_airport", + "name": "Furey Airport", + "latitude_deg": "40.696779", + "longitude_deg": "-81.179094", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Malvern", + "scheduled_service": "no", + "gps_code": "5OH9", + "local_code": "5OH9" + }, + { + "id": "12592", + "ident": "5OI0", + "type": "small_airport", + "name": "Rohrer Airport", + "latitude_deg": "39.28419876098633", + "longitude_deg": "-84.2113037109375", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Loveland", + "scheduled_service": "no", + "gps_code": "5OI0", + "local_code": "5OI0" + }, + { + "id": "12593", + "ident": "5OI3", + "type": "small_airport", + "name": "Sheets Field", + "latitude_deg": "41.413700103759766", + "longitude_deg": "-80.5248031616211", + "elevation_ft": "1225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Kinsman", + "scheduled_service": "no", + "gps_code": "5OI3", + "local_code": "5OI3" + }, + { + "id": "12594", + "ident": "5OI5", + "type": "small_airport", + "name": "Hamrick Airport", + "latitude_deg": "40.69340133666992", + "longitude_deg": "-84.78050231933594", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Willshire", + "scheduled_service": "no", + "gps_code": "5OI5", + "local_code": "5OI5" + }, + { + "id": "12595", + "ident": "5OI7", + "type": "small_airport", + "name": "Gruetter Airport", + "latitude_deg": "41.592498779296875", + "longitude_deg": "-83.37550354003906", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Curtice", + "scheduled_service": "no", + "gps_code": "5OI7", + "local_code": "5OI7" + }, + { + "id": "12596", + "ident": "5OI8", + "type": "small_airport", + "name": "McKnight Airport", + "latitude_deg": "40.19368", + "longitude_deg": "-82.65667", + "elevation_ft": "1172", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Johnstown", + "scheduled_service": "no", + "gps_code": "5OI8", + "local_code": "5OI8" + }, + { + "id": "12597", + "ident": "5OI9", + "type": "closed", + "name": "Rogers Private Airport", + "latitude_deg": "41.327801", + "longitude_deg": "-84.557701", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Sherwood", + "scheduled_service": "no", + "keywords": "5OI9" + }, + { + "id": "328500", + "ident": "5OK0", + "type": "small_airport", + "name": "Kits Airport", + "latitude_deg": "35.54135", + "longitude_deg": "-98.59455", + "elevation_ft": "1492", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hydro", + "scheduled_service": "no", + "gps_code": "5OK0", + "local_code": "5OK0" + }, + { + "id": "12598", + "ident": "5OK1", + "type": "heliport", + "name": "Claremore Regional Hospital Heliport", + "latitude_deg": "36.323322", + "longitude_deg": "-95.605125", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Claremore", + "scheduled_service": "no", + "gps_code": "5OK1", + "local_code": "5OK1" + }, + { + "id": "45715", + "ident": "5OK2", + "type": "small_airport", + "name": "Christopher M. Rippee Memorial Airport", + "latitude_deg": "34.776667", + "longitude_deg": "-96.245278", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Non", + "scheduled_service": "no", + "gps_code": "5OK2", + "local_code": "5OK2" + }, + { + "id": "12599", + "ident": "5OK3", + "type": "small_airport", + "name": "Stearmans Roost Airport", + "latitude_deg": "36.488399505615234", + "longitude_deg": "-95.1438980102539", + "elevation_ft": "702", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Vinita", + "scheduled_service": "no", + "gps_code": "5OK3", + "local_code": "5OK3" + }, + { + "id": "12600", + "ident": "5OK4", + "type": "small_airport", + "name": "Pacer Field", + "latitude_deg": "35.113112", + "longitude_deg": "-97.450647", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "5OK4", + "local_code": "5OK4" + }, + { + "id": "12601", + "ident": "5OK5", + "type": "heliport", + "name": "Integris Clinton Regional Hospital Heliport", + "latitude_deg": "35.5250015259", + "longitude_deg": "-98.99199676510001", + "elevation_ft": "1615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "5OK5", + "local_code": "5OK5" + }, + { + "id": "12602", + "ident": "5OK6", + "type": "closed", + "name": "Woodleaf Aero Estates Airport", + "latitude_deg": "35.712601", + "longitude_deg": "-97.366997", + "elevation_ft": "1201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Edmond", + "scheduled_service": "no", + "keywords": "5OK6" + }, + { + "id": "12603", + "ident": "5OK7", + "type": "heliport", + "name": "Jernigan Drilling Heliport", + "latitude_deg": "35.46670150756836", + "longitude_deg": "-97.71700286865234", + "elevation_ft": "1323", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "gps_code": "5OK7", + "local_code": "5OK7" + }, + { + "id": "12604", + "ident": "5OK8", + "type": "closed", + "name": "Alford A. Bratcher Airport", + "latitude_deg": "34.675098", + "longitude_deg": "-97.855904", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Marlow", + "scheduled_service": "no", + "keywords": "5OK8" + }, + { + "id": "12605", + "ident": "5OK9", + "type": "closed", + "name": "Night Hawk Airpatch Ultralightport", + "latitude_deg": "36.189201", + "longitude_deg": "-95.540298", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Inola", + "scheduled_service": "no", + "keywords": "5OK9" + }, + { + "id": "344220", + "ident": "5OL5", + "type": "small_airport", + "name": "Morning Yodle Airport", + "latitude_deg": "35.001975", + "longitude_deg": "-97.189844", + "elevation_ft": "1128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "5OL5", + "local_code": "5OL5" + }, + { + "id": "12606", + "ident": "5OR0", + "type": "small_airport", + "name": "Backachers Ranch Airport", + "latitude_deg": "42.285099029541016", + "longitude_deg": "-123.53299713134766", + "elevation_ft": "1460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Selma", + "scheduled_service": "no", + "gps_code": "5OR0", + "local_code": "5OR0" + }, + { + "id": "12607", + "ident": "5OR1", + "type": "heliport", + "name": "Helitradewinds Heliport", + "latitude_deg": "45.14120101928711", + "longitude_deg": "-122.62100219726562", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Molalla", + "scheduled_service": "no", + "gps_code": "5OR1", + "local_code": "5OR1" + }, + { + "id": "12608", + "ident": "5OR2", + "type": "closed", + "name": "Bushnell Airport", + "latitude_deg": "45.103197", + "longitude_deg": "-123.425003", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sheridan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bushnell_Airport", + "keywords": "5OR2" + }, + { + "id": "12609", + "ident": "5OR3", + "type": "small_airport", + "name": "Siletz Airport", + "latitude_deg": "44.73040008544922", + "longitude_deg": "-123.91500091552734", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Siletz", + "scheduled_service": "no", + "gps_code": "5OR3", + "local_code": "5OR3" + }, + { + "id": "12610", + "ident": "5OR4", + "type": "small_airport", + "name": "Flying T Ranch Airport", + "latitude_deg": "42.434693", + "longitude_deg": "-121.350861", + "elevation_ft": "4340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sprague River", + "scheduled_service": "no", + "gps_code": "5OR4", + "local_code": "5OR4" + }, + { + "id": "12611", + "ident": "5OR5", + "type": "small_airport", + "name": "Juniper Air Park", + "latitude_deg": "44.03459930419922", + "longitude_deg": "-121.11799621582031", + "elevation_ft": "3490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Bend", + "scheduled_service": "no", + "gps_code": "5OR5", + "local_code": "5OR5" + }, + { + "id": "12612", + "ident": "5OR6", + "type": "heliport", + "name": "Holy Rosary Medical Center Heliport", + "latitude_deg": "44.0256114696", + "longitude_deg": "-116.975815594", + "elevation_ft": "2155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Ontario", + "scheduled_service": "no", + "gps_code": "5OR6", + "local_code": "5OR6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Holy_Rosary_Medical_Center_Heliport" + }, + { + "id": "12613", + "ident": "5OR7", + "type": "heliport", + "name": "Santiam Memorial Hospital Helistop", + "latitude_deg": "44.8047981262207", + "longitude_deg": "-122.78500366210938", + "elevation_ft": "515", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Stayton", + "scheduled_service": "no", + "gps_code": "5OR7", + "local_code": "5OR7" + }, + { + "id": "12614", + "ident": "5OR8", + "type": "small_airport", + "name": "Hatch Airport", + "latitude_deg": "44.77320098876953", + "longitude_deg": "-122.8499984741211", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Stayton", + "scheduled_service": "no", + "gps_code": "5OR8", + "local_code": "5OR8" + }, + { + "id": "12615", + "ident": "5OR9", + "type": "small_airport", + "name": "Lone Oaks Ranch Airport", + "latitude_deg": "44.776798248291016", + "longitude_deg": "-122.76000213623047", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Stayton", + "scheduled_service": "no", + "gps_code": "5OR9", + "local_code": "5OR9" + }, + { + "id": "12616", + "ident": "5P3", + "type": "small_airport", + "name": "Bowdle Municipal Airport", + "latitude_deg": "45.4394", + "longitude_deg": "-99.675102", + "elevation_ft": "1967", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Bowdle", + "scheduled_service": "no", + "gps_code": "5SD3", + "local_code": "5SD3", + "keywords": "5P3, SD08" + }, + { + "id": "12617", + "ident": "5P5", + "type": "small_airport", + "name": "Presho Municipal Airport", + "latitude_deg": "43.90639877319336", + "longitude_deg": "-100.03700256347656", + "elevation_ft": "1760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Presho", + "scheduled_service": "no", + "gps_code": "5P5", + "local_code": "5P5" + }, + { + "id": "43029", + "ident": "5PA0", + "type": "small_airport", + "name": "Blomster Field Farm Airport", + "latitude_deg": "39.872848510699995", + "longitude_deg": "-79.955329895", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Carmichaels", + "scheduled_service": "no", + "gps_code": "5PA0", + "local_code": "5PA0" + }, + { + "id": "12619", + "ident": "5PA1", + "type": "small_airport", + "name": "Broadt Personal Use Airport", + "latitude_deg": "40.99729919433594", + "longitude_deg": "-76.38379669189453", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mainville", + "scheduled_service": "no", + "gps_code": "5PA1", + "local_code": "5PA1" + }, + { + "id": "12620", + "ident": "5PA2", + "type": "small_airport", + "name": "Double D Skyranch Airport", + "latitude_deg": "41.034883", + "longitude_deg": "-76.02185", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Drums", + "scheduled_service": "no", + "gps_code": "5PA2", + "local_code": "5PA2", + "keywords": "Hazleton, Reifenberg" + }, + { + "id": "12621", + "ident": "5PA3", + "type": "closed", + "name": "Metzler Airport", + "latitude_deg": "40.166801", + "longitude_deg": "-76.399696", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Manheim", + "scheduled_service": "no", + "keywords": "5PA3" + }, + { + "id": "12622", + "ident": "5PA4", + "type": "closed", + "name": "Black Swan Farm Heliport", + "latitude_deg": "39.966801", + "longitude_deg": "-75.649695", + "elevation_ft": "273", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "West Chester", + "scheduled_service": "no", + "keywords": "5PA4" + }, + { + "id": "12623", + "ident": "5PA5", + "type": "heliport", + "name": "Monongahela Valley Hospital Heliport", + "latitude_deg": "40.18230056762695", + "longitude_deg": "-79.91000366210938", + "elevation_ft": "1114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Monongahela", + "scheduled_service": "no", + "gps_code": "5PA5", + "local_code": "5PA5" + }, + { + "id": "12624", + "ident": "5PA6", + "type": "small_airport", + "name": "Shield Farm Airport", + "latitude_deg": "41.931528", + "longitude_deg": "-79.130144", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Warren", + "scheduled_service": "no", + "gps_code": "5PA6", + "local_code": "5PA6" + }, + { + "id": "12625", + "ident": "5PA7", + "type": "heliport", + "name": "Indian Sleep Farm Heliport", + "latitude_deg": "39.924800872802734", + "longitude_deg": "-75.69609832763672", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Unionville", + "scheduled_service": "no", + "gps_code": "5PA7", + "local_code": "5PA7" + }, + { + "id": "12626", + "ident": "5PA8", + "type": "small_airport", + "name": "Chambers Airport", + "latitude_deg": "41.554", + "longitude_deg": "-76.054583", + "elevation_ft": "1021", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tunkhannock", + "scheduled_service": "no", + "gps_code": "45PN", + "local_code": "45PN", + "keywords": "5PA8, Mehoopany" + }, + { + "id": "12627", + "ident": "5PA9", + "type": "small_airport", + "name": "Taylor Flight Park Ultralightport", + "latitude_deg": "41.18840026855469", + "longitude_deg": "-79.28230285644531", + "elevation_ft": "1580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Strattanville", + "scheduled_service": "no", + "gps_code": "5PA9", + "local_code": "5PA9" + }, + { + "id": "345725", + "ident": "5PN0", + "type": "heliport", + "name": "Lamtec Corp Heliport", + "latitude_deg": "40.915045", + "longitude_deg": "-75.088806", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mount Bethel", + "scheduled_service": "no", + "gps_code": "5PN0", + "local_code": "5PN0" + }, + { + "id": "12628", + "ident": "5PN2", + "type": "heliport", + "name": "Memorial Hospital Heliport", + "latitude_deg": "41.785301208496094", + "longitude_deg": "-76.44860076904297", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Towanda", + "scheduled_service": "no", + "gps_code": "5PN2", + "local_code": "5PN2" + }, + { + "id": "12629", + "ident": "5PN3", + "type": "heliport", + "name": "Tyrone Hospital Heliport", + "latitude_deg": "40.66809844970703", + "longitude_deg": "-78.25060272216797", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tyrone", + "scheduled_service": "no", + "gps_code": "5PN3", + "local_code": "5PN3" + }, + { + "id": "12630", + "ident": "5PN4", + "type": "heliport", + "name": "Mahon Heliport", + "latitude_deg": "40.15439987182617", + "longitude_deg": "-75.07530212402344", + "elevation_ft": "235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hatboro", + "scheduled_service": "no", + "gps_code": "5PN4", + "local_code": "5PN4" + }, + { + "id": "12631", + "ident": "5PN5", + "type": "closed", + "name": "Bittner-Whitsel Airport", + "latitude_deg": "39.743428", + "longitude_deg": "-77.525866", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Rouzerville", + "scheduled_service": "no", + "keywords": "5PN5" + }, + { + "id": "12632", + "ident": "5PN6", + "type": "heliport", + "name": "Lewistown Hospital Heliport", + "latitude_deg": "40.617801666259766", + "longitude_deg": "-77.56749725341797", + "elevation_ft": "599", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lewistown", + "scheduled_service": "no", + "gps_code": "5PN6", + "local_code": "5PN6" + }, + { + "id": "12633", + "ident": "5PN7", + "type": "small_airport", + "name": "Jarrett Airport", + "latitude_deg": "40.233299255371094", + "longitude_deg": "-75.07499694824219", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Ivyland", + "scheduled_service": "no", + "gps_code": "5PN7", + "local_code": "5PN7" + }, + { + "id": "12634", + "ident": "5PN8", + "type": "small_airport", + "name": "Lincoln Farms Airport", + "latitude_deg": "40.32889938354492", + "longitude_deg": "-78.04499816894531", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Calvin", + "scheduled_service": "no", + "gps_code": "5PN8", + "local_code": "5PN8" + }, + { + "id": "12635", + "ident": "5PN9", + "type": "heliport", + "name": "UPMC Pinnacle Heliport", + "latitude_deg": "40.257701", + "longitude_deg": "-76.881015", + "elevation_ft": "589", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Harrisburg", + "scheduled_service": "no", + "gps_code": "5PN9", + "local_code": "5PN9", + "keywords": "Harrisburg Hospital" + }, + { + "id": "12636", + "ident": "5PS0", + "type": "heliport", + "name": "Beau Street Heliport", + "latitude_deg": "40.17919921875", + "longitude_deg": "-80.21730041503906", + "elevation_ft": "1243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "5PS0", + "local_code": "5PS0" + }, + { + "id": "12637", + "ident": "5PS1", + "type": "heliport", + "name": "Lancaster General Hospital Heliport", + "latitude_deg": "40.047778", + "longitude_deg": "-76.30352", + "elevation_ft": "406", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "5PS1", + "local_code": "5PS1" + }, + { + "id": "12638", + "ident": "5PS2", + "type": "heliport", + "name": "Paoli Memorial Hospital Heliport", + "latitude_deg": "40.04399871826172", + "longitude_deg": "-75.4999008178711", + "elevation_ft": "474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Paoli", + "scheduled_service": "no", + "gps_code": "5PS2", + "local_code": "5PS2" + }, + { + "id": "12639", + "ident": "5PS3", + "type": "heliport", + "name": "St Francis Medical Center Heliport", + "latitude_deg": "40.46649932861328", + "longitude_deg": "-79.95279693603516", + "elevation_ft": "947", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pittsburgh", + "scheduled_service": "no", + "gps_code": "5PS3", + "local_code": "5PS3" + }, + { + "id": "12640", + "ident": "5PS4", + "type": "small_airport", + "name": "Hansen Airport", + "latitude_deg": "40.34260177612305", + "longitude_deg": "-75.57820129394531", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Sassamansville", + "scheduled_service": "no", + "gps_code": "5PS4", + "local_code": "5PS4" + }, + { + "id": "12641", + "ident": "5PS5", + "type": "small_airport", + "name": "Chestnut Hill Airport", + "latitude_deg": "40.39680099487305", + "longitude_deg": "-77.0740966796875", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Duncannon", + "scheduled_service": "no", + "gps_code": "5PS5", + "local_code": "5PS5" + }, + { + "id": "12642", + "ident": "5PS6", + "type": "heliport", + "name": "Ranch Hill Heliport", + "latitude_deg": "40.725799560546875", + "longitude_deg": "-75.57610321044922", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Slatington", + "scheduled_service": "no", + "gps_code": "5PS6", + "local_code": "5PS6" + }, + { + "id": "12643", + "ident": "5PS7", + "type": "heliport", + "name": "Evangelical Community Hospital East Heliport", + "latitude_deg": "40.97930145263672", + "longitude_deg": "-76.88580322265625", + "elevation_ft": "495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lewisburg", + "scheduled_service": "no", + "gps_code": "5PS7", + "local_code": "5PS7" + }, + { + "id": "12644", + "ident": "5PS8", + "type": "heliport", + "name": "Heffernan Heliport", + "latitude_deg": "40.19649887084961", + "longitude_deg": "-75.17680358886719", + "elevation_ft": "292", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Prospectville", + "scheduled_service": "no", + "gps_code": "5PS8", + "local_code": "5PS8" + }, + { + "id": "12645", + "ident": "5PS9", + "type": "closed", + "name": "Tate Airport", + "latitude_deg": "40.385365", + "longitude_deg": "-75.333016", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "West Rockhill", + "scheduled_service": "no", + "keywords": "5PS9" + }, + { + "id": "12646", + "ident": "5Q2", + "type": "heliport", + "name": "US Forest Service Chester Heliport", + "latitude_deg": "40.28850173949999", + "longitude_deg": "-121.242996216", + "elevation_ft": "4526", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chester", + "scheduled_service": "no", + "gps_code": "5Q2", + "local_code": "5Q2" + }, + { + "id": "12647", + "ident": "5QC", + "type": "small_airport", + "name": "Quartz Creek /Kougarok/ Airport", + "latitude_deg": "65.40589904785156", + "longitude_deg": "-164.656005859375", + "elevation_ft": "416", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Quartz Creek", + "scheduled_service": "no", + "gps_code": "5QC", + "local_code": "5QC" + }, + { + "id": "12648", + "ident": "5R7", + "type": "small_airport", + "name": "Roy E. Ray Airport", + "latitude_deg": "30.454599380493164", + "longitude_deg": "-88.21060180664062", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Bayou La Batre", + "scheduled_service": "no", + "gps_code": "5R7", + "local_code": "5R7" + }, + { + "id": "12649", + "ident": "5S1", + "type": "small_airport", + "name": "George Felt Airport", + "latitude_deg": "43.22480010986328", + "longitude_deg": "-123.39700317382812", + "elevation_ft": "428", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Roseburg", + "scheduled_service": "no", + "gps_code": "5S1", + "local_code": "5S1", + "wikipedia_link": "https://en.wikipedia.org/wiki/George_Felt_Airport" + }, + { + "id": "12650", + "ident": "5S4", + "type": "small_airport", + "name": "Toledo State Airport", + "latitude_deg": "44.60100173950195", + "longitude_deg": "-123.94000244140625", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Toledo", + "scheduled_service": "no", + "gps_code": "5S4", + "local_code": "5S4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toledo_State_Airport" + }, + { + "id": "12651", + "ident": "5S5", + "type": "small_airport", + "name": "Lake Billy Chinook State Airport", + "latitude_deg": "44.519805", + "longitude_deg": "-121.3196", + "elevation_ft": "2695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Culver", + "scheduled_service": "no", + "local_code": "5S5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_Billy_Chinook_Airport" + }, + { + "id": "12652", + "ident": "5SC5", + "type": "heliport", + "name": "Loris Community Hospital Heliport", + "latitude_deg": "34.05889892578125", + "longitude_deg": "-78.89830017089844", + "elevation_ft": "91", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Loris", + "scheduled_service": "no", + "gps_code": "5SC5", + "local_code": "5SC5" + }, + { + "id": "12653", + "ident": "5T0", + "type": "closed", + "name": "Ward Airpark", + "latitude_deg": "29.502273", + "longitude_deg": "-95.936372", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beasley", + "scheduled_service": "no", + "keywords": "5T0" + }, + { + "id": "12654", + "ident": "5T4", + "type": "small_airport", + "name": "Herreid Municipal Airport", + "latitude_deg": "45.854198", + "longitude_deg": "-100.074997", + "elevation_ft": "1725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Herreid", + "scheduled_service": "no", + "local_code": "5T4", + "keywords": "SD23" + }, + { + "id": "12655", + "ident": "5TA0", + "type": "small_airport", + "name": "Hamilton Aircraft, Inc Airport", + "latitude_deg": "32.731998443603516", + "longitude_deg": "-102.94400024414062", + "elevation_ft": "3520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seminole", + "scheduled_service": "no", + "gps_code": "5TA0", + "local_code": "5TA0" + }, + { + "id": "12656", + "ident": "5TA1", + "type": "small_airport", + "name": "Charping Airport", + "latitude_deg": "31.193500518798828", + "longitude_deg": "-97.4072036743164", + "elevation_ft": "683", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Temple", + "scheduled_service": "no", + "gps_code": "5TA1", + "local_code": "5TA1" + }, + { + "id": "12657", + "ident": "5TA2", + "type": "small_airport", + "name": "Rabbit Run Airport", + "latitude_deg": "31.454599380493164", + "longitude_deg": "-97.25029754638672", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no", + "gps_code": "5TA2", + "local_code": "5TA2" + }, + { + "id": "12658", + "ident": "5TA3", + "type": "small_airport", + "name": "Pearson Ranch Private Airport", + "latitude_deg": "29.359567", + "longitude_deg": "-97.144353", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Yoakum", + "scheduled_service": "no", + "gps_code": "5TA3", + "local_code": "5TA3" + }, + { + "id": "12659", + "ident": "5TA4", + "type": "small_airport", + "name": "Reed Airport", + "latitude_deg": "34.90010070800781", + "longitude_deg": "-101.31700134277344", + "elevation_ft": "3369", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Claude", + "scheduled_service": "no", + "gps_code": "5TA4", + "local_code": "5TA4" + }, + { + "id": "12660", + "ident": "5TA5", + "type": "small_airport", + "name": "Creasy Airport", + "latitude_deg": "29.33609962463379", + "longitude_deg": "-95.11519622802734", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Santa Fe", + "scheduled_service": "no", + "gps_code": "5TA5", + "local_code": "5TA5" + }, + { + "id": "12661", + "ident": "5TA6", + "type": "closed", + "name": "Knot 2 Shabby Airport", + "latitude_deg": "31.935327", + "longitude_deg": "-99.89558", + "elevation_ft": "1820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Winters", + "scheduled_service": "no", + "keywords": "5TA6" + }, + { + "id": "12662", + "ident": "5TA7", + "type": "closed", + "name": "Kami-Kazi Airport", + "latitude_deg": "29.420799", + "longitude_deg": "-95.159103", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Santa Fe", + "scheduled_service": "no", + "keywords": "5TA7" + }, + { + "id": "12663", + "ident": "5TA8", + "type": "small_airport", + "name": "Deer Meadow Ranch Airport", + "latitude_deg": "32.013301849365234", + "longitude_deg": "-95.92829895019531", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Athens", + "scheduled_service": "no", + "gps_code": "5TA8", + "local_code": "5TA8" + }, + { + "id": "12664", + "ident": "5TA9", + "type": "small_airport", + "name": "Seagoville Airport", + "latitude_deg": "32.609901428222656", + "longitude_deg": "-96.52690124511719", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seagoville", + "scheduled_service": "no", + "gps_code": "5TA9", + "local_code": "5TA9" + }, + { + "id": "12665", + "ident": "5TE0", + "type": "small_airport", + "name": "Comanche Ranch Airport", + "latitude_deg": "28.627301", + "longitude_deg": "-100.161403", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eagle Pass", + "scheduled_service": "no", + "gps_code": "5TE0", + "local_code": "5TE0" + }, + { + "id": "12666", + "ident": "5TE1", + "type": "small_airport", + "name": "Rawls Ranch Airport", + "latitude_deg": "29.65019989013672", + "longitude_deg": "-103.94999694824219", + "elevation_ft": "4520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marfa", + "scheduled_service": "no", + "gps_code": "5TE1", + "local_code": "5TE1" + }, + { + "id": "12667", + "ident": "5TE2", + "type": "small_airport", + "name": "Bleakley Ranch Airport", + "latitude_deg": "30.225200653076172", + "longitude_deg": "-98.14199829101562", + "elevation_ft": "1384", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dripping Springs", + "scheduled_service": "no", + "gps_code": "5TE2", + "local_code": "5TE2" + }, + { + "id": "12668", + "ident": "5TE3", + "type": "small_airport", + "name": "Alexander Ranch Airport", + "latitude_deg": "30.275084", + "longitude_deg": "-98.122689", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dripping Springs", + "scheduled_service": "no", + "gps_code": "5TE3", + "local_code": "5TE3" + }, + { + "id": "12669", + "ident": "5TE4", + "type": "small_airport", + "name": "Perkins Prothro Cimarron Ranch Airport", + "latitude_deg": "36.508399963378906", + "longitude_deg": "-102.39199829101562", + "elevation_ft": "3995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kerrick", + "scheduled_service": "no", + "gps_code": "5TE4", + "local_code": "5TE4" + }, + { + "id": "12670", + "ident": "5TE5", + "type": "small_airport", + "name": "Iron Mountain Ranch Airport", + "latitude_deg": "30.266235", + "longitude_deg": "-103.23349", + "elevation_ft": "4313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no", + "gps_code": "5TE5", + "local_code": "5TE5" + }, + { + "id": "45825", + "ident": "5TE6", + "type": "small_airport", + "name": "Keystone Ranch Airport", + "latitude_deg": "31.269167", + "longitude_deg": "-100.460833", + "elevation_ft": "2023", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Angelo", + "scheduled_service": "no", + "gps_code": "5TE6", + "local_code": "5TE6" + }, + { + "id": "12671", + "ident": "5TE7", + "type": "small_airport", + "name": "Renz Ranch Airport", + "latitude_deg": "29.71940040588379", + "longitude_deg": "-96.30940246582031", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eagle Lake", + "scheduled_service": "no", + "gps_code": "5TE7", + "local_code": "5TE7" + }, + { + "id": "12672", + "ident": "5TE8", + "type": "small_airport", + "name": "Willis N Clark Airport", + "latitude_deg": "35.761199951171875", + "longitude_deg": "-100.75199890136719", + "elevation_ft": "3086", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "5TE8", + "local_code": "5TE8" + }, + { + "id": "12673", + "ident": "5TE9", + "type": "heliport", + "name": "Sierra Blanca Heliport", + "latitude_deg": "31.166498", + "longitude_deg": "-105.358994", + "elevation_ft": "4512", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sierra Blanca", + "scheduled_service": "no", + "gps_code": "5TE9", + "local_code": "5TE9" + }, + { + "id": "12674", + "ident": "5TN0", + "type": "closed", + "name": "TGP Station 79 Heliport", + "latitude_deg": "35.778099", + "longitude_deg": "-87.785302", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lobelville", + "scheduled_service": "no", + "keywords": "5TN0" + }, + { + "id": "12675", + "ident": "5TN1", + "type": "heliport", + "name": "Baptist Memorial Hospital - Carrol County Heliport", + "latitude_deg": "36.137186", + "longitude_deg": "-88.488534", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Mc Kenzie", + "scheduled_service": "no", + "gps_code": "5TN1", + "local_code": "5TN1", + "keywords": "McKenzie Regional Hospital" + }, + { + "id": "12676", + "ident": "5TN2", + "type": "heliport", + "name": "Tgp Station 71 Heliport", + "latitude_deg": "35.03340148925781", + "longitude_deg": "-88.89309692382812", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Middleton", + "scheduled_service": "no", + "gps_code": "5TN2", + "local_code": "5TN2" + }, + { + "id": "12677", + "ident": "5TN3", + "type": "heliport", + "name": "Boondocks Heliport", + "latitude_deg": "35.738399505615234", + "longitude_deg": "-83.60659790039062", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Pigeon Forge", + "scheduled_service": "no", + "gps_code": "5TN3", + "local_code": "5TN3" + }, + { + "id": "12678", + "ident": "5TN4", + "type": "small_airport", + "name": "Mcgraw's Backyard Airport", + "latitude_deg": "35.67060089111328", + "longitude_deg": "-84.11579895019531", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Greenback", + "scheduled_service": "no", + "gps_code": "5TN4", + "local_code": "5TN4" + }, + { + "id": "12679", + "ident": "5TN5", + "type": "heliport", + "name": "Tennessee Gas Heliport", + "latitude_deg": "36.618099212646484", + "longitude_deg": "-86.55919647216797", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "5TN5", + "local_code": "5TN5" + }, + { + "id": "12680", + "ident": "5TN6", + "type": "heliport", + "name": "Hardin Medical Center Heliport", + "latitude_deg": "35.22922", + "longitude_deg": "-88.23069", + "elevation_ft": "433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Savannah", + "scheduled_service": "no", + "gps_code": "5TN6", + "local_code": "5TN6", + "keywords": "Hardin County General Hospital Heliport" + }, + { + "id": "12681", + "ident": "5TN7", + "type": "heliport", + "name": "Tgp Station 856 Heliport", + "latitude_deg": "35.15919876098633", + "longitude_deg": "-88.22239685058594", + "elevation_ft": "484", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Savannah", + "scheduled_service": "no", + "gps_code": "5TN7", + "local_code": "5TN7" + }, + { + "id": "12682", + "ident": "5TN8", + "type": "heliport", + "name": "Perry Memorial Hospital Heliport", + "latitude_deg": "35.59510040283203", + "longitude_deg": "-87.8561019897461", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Linden", + "scheduled_service": "no", + "gps_code": "5TN8", + "local_code": "5TN8" + }, + { + "id": "12683", + "ident": "5TN9", + "type": "small_airport", + "name": "One Grand Field", + "latitude_deg": "36.11389923095703", + "longitude_deg": "-85.59500122070312", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Cookeville", + "scheduled_service": "no", + "gps_code": "5TN9", + "local_code": "5TN9" + }, + { + "id": "12684", + "ident": "5TS0", + "type": "small_airport", + "name": "Diehl Ranch Airport", + "latitude_deg": "29.412500381469727", + "longitude_deg": "-95.12239837646484", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Arcadia", + "scheduled_service": "no", + "gps_code": "5TS0", + "local_code": "5TS0" + }, + { + "id": "12685", + "ident": "5TS1", + "type": "small_airport", + "name": "Uno Mas Ranch Airport", + "latitude_deg": "28.205799102783203", + "longitude_deg": "-99.1344985961914", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cotulla", + "scheduled_service": "no", + "gps_code": "5TS1", + "local_code": "5TS1" + }, + { + "id": "12686", + "ident": "5TS2", + "type": "small_airport", + "name": "Chan-C Airport", + "latitude_deg": "30.478729", + "longitude_deg": "-97.318847", + "elevation_ft": "536", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Coupland", + "scheduled_service": "no", + "gps_code": "5TS2", + "local_code": "5TS2" + }, + { + "id": "12687", + "ident": "5TS3", + "type": "small_airport", + "name": "Knapp Pecan Orchard Airpark", + "latitude_deg": "31.974199295043945", + "longitude_deg": "-96.67829895019531", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dawson", + "scheduled_service": "no", + "gps_code": "5TS3", + "local_code": "5TS3" + }, + { + "id": "12688", + "ident": "5TS4", + "type": "small_airport", + "name": "Mc Entire Airport", + "latitude_deg": "33.1445999146", + "longitude_deg": "-97.6016998291", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Decatur", + "scheduled_service": "no", + "gps_code": "5TS4", + "local_code": "5TS4" + }, + { + "id": "12689", + "ident": "5TS5", + "type": "small_airport", + "name": "Mc Donald Ranch Airport", + "latitude_deg": "28.6511001587", + "longitude_deg": "-99.2886962891", + "elevation_ft": "555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dilley", + "scheduled_service": "no", + "gps_code": "5TS5", + "local_code": "5TS5" + }, + { + "id": "12690", + "ident": "5TS6", + "type": "heliport", + "name": "Air Logistics-Freeport Heliport", + "latitude_deg": "29.075199127197266", + "longitude_deg": "-95.3604965209961", + "elevation_ft": "101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Freeport", + "scheduled_service": "no", + "gps_code": "5TS6", + "local_code": "5TS6" + }, + { + "id": "12691", + "ident": "5TS7", + "type": "closed", + "name": "R D Williams Airport", + "latitude_deg": "31.7766", + "longitude_deg": "-94.485497", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garrison", + "scheduled_service": "no", + "keywords": "5TS7" + }, + { + "id": "12692", + "ident": "5TS8", + "type": "small_airport", + "name": "Bear Creek Ranch Airport", + "latitude_deg": "29.8085994720459", + "longitude_deg": "-98.27249908447266", + "elevation_ft": "1360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "New Braunfels", + "scheduled_service": "no", + "gps_code": "5TS8", + "local_code": "5TS8" + }, + { + "id": "12693", + "ident": "5TS9", + "type": "small_airport", + "name": "Big Duke's Place Airport", + "latitude_deg": "28.53030014038086", + "longitude_deg": "-96.52749633789062", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Indianola", + "scheduled_service": "no", + "gps_code": "5TS9", + "local_code": "5TS9" + }, + { + "id": "12694", + "ident": "5TX0", + "type": "small_airport", + "name": "Hidden Valley Airpark", + "latitude_deg": "33.173500061035156", + "longitude_deg": "-97.05139923095703", + "elevation_ft": "611", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lake Dallas", + "scheduled_service": "no", + "gps_code": "5TX0", + "local_code": "5TX0" + }, + { + "id": "12695", + "ident": "5TX1", + "type": "closed", + "name": "Harley White Field", + "latitude_deg": "31.8613", + "longitude_deg": "-98.259499", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lamkin", + "scheduled_service": "no", + "keywords": "5TX1" + }, + { + "id": "12696", + "ident": "5TX2", + "type": "small_airport", + "name": "Grove Hill Airport", + "latitude_deg": "33.422298431396484", + "longitude_deg": "-96.21690368652344", + "elevation_ft": "721", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Leonard", + "scheduled_service": "no", + "gps_code": "5TX2", + "local_code": "5TX2" + }, + { + "id": "12697", + "ident": "5TX3", + "type": "heliport", + "name": "Centerpoint Energy South Houston Heliport", + "latitude_deg": "29.642247", + "longitude_deg": "-95.211649", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "South Houston", + "scheduled_service": "no", + "gps_code": "5TX3", + "local_code": "5TX3", + "keywords": "Hl&P South Houston Helistop" + }, + { + "id": "12698", + "ident": "5TX4", + "type": "closed", + "name": "Black Mark Strip", + "latitude_deg": "33.033501", + "longitude_deg": "-97.067001", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lewisville", + "scheduled_service": "no", + "keywords": "5TX4" + }, + { + "id": "12699", + "ident": "5TX5", + "type": "closed", + "name": "PSF Heliport", + "latitude_deg": "32.868999", + "longitude_deg": "-96.271599", + "elevation_ft": "515", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Terrell", + "scheduled_service": "no", + "keywords": "5TX5" + }, + { + "id": "12700", + "ident": "5TX6", + "type": "closed", + "name": "Hilliard Landing Area Airport", + "latitude_deg": "33.006292", + "longitude_deg": "-97.068814", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lewisville", + "scheduled_service": "no", + "gps_code": "5TX6", + "local_code": "5TX6" + }, + { + "id": "12701", + "ident": "5TX7", + "type": "heliport", + "name": "UT Health East Texas Tyler Regional Hospital Heliport", + "latitude_deg": "32.337792", + "longitude_deg": "-95.290453", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tyler", + "scheduled_service": "no", + "gps_code": "5TX7", + "local_code": "5TX7", + "keywords": "Medical Center Hospital" + }, + { + "id": "12702", + "ident": "5TX8", + "type": "closed", + "name": "Boon/Lovelace Airport", + "latitude_deg": "33.032101", + "longitude_deg": "-94.379402", + "elevation_ft": "429", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Linden", + "scheduled_service": "no", + "keywords": "5TX8, Linden Airfield" + }, + { + "id": "12703", + "ident": "5TX9", + "type": "closed", + "name": "Utopia on the River Airport", + "latitude_deg": "29.583599", + "longitude_deg": "-99.526199", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Utopia", + "scheduled_service": "no", + "keywords": "5TX9" + }, + { + "id": "12704", + "ident": "5U0", + "type": "small_airport", + "name": "Denton Airport", + "latitude_deg": "47.32080078125", + "longitude_deg": "-109.94200134277344", + "elevation_ft": "3592", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Denton", + "scheduled_service": "no", + "gps_code": "5U0", + "local_code": "5U0" + }, + { + "id": "12705", + "ident": "5U6", + "type": "small_airport", + "name": "Fairview Airport", + "latitude_deg": "47.86109924316406", + "longitude_deg": "-104.072998046875", + "elevation_ft": "2152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Fairview", + "scheduled_service": "no", + "gps_code": "5U6", + "local_code": "5U6" + }, + { + "id": "12706", + "ident": "5U8", + "type": "small_airport", + "name": "Geraldine Airport", + "latitude_deg": "47.596484", + "longitude_deg": "-110.266195", + "elevation_ft": "3173", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Geraldine", + "scheduled_service": "no", + "gps_code": "K5U8", + "local_code": "5U8" + }, + { + "id": "12707", + "ident": "5V4", + "type": "small_airport", + "name": "Calhan Airport", + "latitude_deg": "39.04779815673828", + "longitude_deg": "-104.29199981689453", + "elevation_ft": "6450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Calhan", + "scheduled_service": "no", + "gps_code": "5V4", + "local_code": "5V4" + }, + { + "id": "12708", + "ident": "5V6", + "type": "closed", + "name": "Gebauer Airport", + "latitude_deg": "40.244401", + "longitude_deg": "-103.094002", + "elevation_ft": "4509", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Akron", + "scheduled_service": "no", + "keywords": "5V6" + }, + { + "id": "12709", + "ident": "5V8", + "type": "small_airport", + "name": "Kadoka Municipal Airport", + "latitude_deg": "43.83330154418945", + "longitude_deg": "-101.49700164794922", + "elevation_ft": "2460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Kadoka", + "scheduled_service": "no", + "gps_code": "5V8", + "local_code": "5V8" + }, + { + "id": "12710", + "ident": "5VA0", + "type": "heliport", + "name": "South Boston Medical Heliport", + "latitude_deg": "36.71849822998047", + "longitude_deg": "-78.90859985351562", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "South Boston", + "scheduled_service": "no", + "gps_code": "5VA0", + "local_code": "5VA0" + }, + { + "id": "12711", + "ident": "5VA1", + "type": "heliport", + "name": "Alleghany Regional Hospital Heliport", + "latitude_deg": "37.79180145263672", + "longitude_deg": "-79.88259887695312", + "elevation_ft": "1136", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Low Moor", + "scheduled_service": "no", + "gps_code": "5VA1", + "local_code": "5VA1" + }, + { + "id": "12712", + "ident": "5VA2", + "type": "heliport", + "name": "Sullins Heliport", + "latitude_deg": "36.61199951171875", + "longitude_deg": "-82.1886978149414", + "elevation_ft": "1730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Bristol", + "scheduled_service": "no", + "gps_code": "5VA2", + "local_code": "5VA2" + }, + { + "id": "12713", + "ident": "5VA3", + "type": "heliport", + "name": "Stevens Helicopters Heliport", + "latitude_deg": "37.75680160522461", + "longitude_deg": "-78.8958969116211", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Lovingston", + "scheduled_service": "no", + "gps_code": "5VA3", + "local_code": "5VA3" + }, + { + "id": "12714", + "ident": "5VA4", + "type": "closed", + "name": "Reston Hospital Center Heliport", + "latitude_deg": "38.962601", + "longitude_deg": "-77.362503", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Herndon", + "scheduled_service": "no", + "keywords": "5VA4" + }, + { + "id": "12715", + "ident": "5VA5", + "type": "small_airport", + "name": "Chimney View Airport", + "latitude_deg": "38.403499603271484", + "longitude_deg": "-77.31580352783203", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fredericksburg", + "scheduled_service": "no", + "gps_code": "5VA5", + "local_code": "5VA5" + }, + { + "id": "12716", + "ident": "5VA6", + "type": "heliport", + "name": "Rockingham Heliport", + "latitude_deg": "38.48429870605469", + "longitude_deg": "-78.8677978515625", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Harrisonburg", + "scheduled_service": "no", + "gps_code": "5VA6", + "local_code": "5VA6" + }, + { + "id": "12717", + "ident": "5VA7", + "type": "heliport", + "name": "Coeburn Heliport", + "latitude_deg": "36.959800720214844", + "longitude_deg": "-82.47019958496094", + "elevation_ft": "2010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Coeburn", + "scheduled_service": "no", + "gps_code": "5VA7", + "local_code": "5VA7" + }, + { + "id": "12718", + "ident": "5VA8", + "type": "heliport", + "name": "Dda Heliport", + "latitude_deg": "36.71120071411133", + "longitude_deg": "-82.80069732666016", + "elevation_ft": "1340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Duffield", + "scheduled_service": "no", + "gps_code": "5VA8", + "local_code": "5VA8" + }, + { + "id": "12719", + "ident": "5VA9", + "type": "closed", + "name": "Kilmarnock/Tolbert Field", + "latitude_deg": "37.692896", + "longitude_deg": "-76.317939", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Kilmarnock", + "scheduled_service": "no", + "keywords": "5VA9" + }, + { + "id": "325661", + "ident": "5VG2", + "type": "small_airport", + "name": "Foster Field", + "latitude_deg": "37.454436", + "longitude_deg": "-76.372191", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Mathews", + "scheduled_service": "no", + "gps_code": "5VG2", + "local_code": "5VG2" + }, + { + "id": "12720", + "ident": "5WA0", + "type": "small_airport", + "name": "Sourdough Airport", + "latitude_deg": "48.59560012817383", + "longitude_deg": "-119.10099792480469", + "elevation_ft": "2640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tonasket", + "scheduled_service": "no", + "gps_code": "5WA0", + "local_code": "5WA0" + }, + { + "id": "12721", + "ident": "5WA1", + "type": "small_airport", + "name": "Dorman Field", + "latitude_deg": "46.521422", + "longitude_deg": "-119.177189", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Mesa", + "scheduled_service": "no", + "gps_code": "5WA1", + "local_code": "5WA1" + }, + { + "id": "12722", + "ident": "5WA2", + "type": "closed", + "name": "B & M Ranch Airport", + "latitude_deg": "47.866501", + "longitude_deg": "-121.901001", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Monroe", + "scheduled_service": "no", + "keywords": "5WA2" + }, + { + "id": "12723", + "ident": "5WA3", + "type": "heliport", + "name": "St Mary Medical Center Heliport", + "latitude_deg": "46.062198638916016", + "longitude_deg": "-118.34300231933594", + "elevation_ft": "939", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Walla Walla", + "scheduled_service": "no", + "gps_code": "5WA3", + "local_code": "5WA3" + }, + { + "id": "12724", + "ident": "5WA4", + "type": "closed", + "name": "Boundary Substation Heliport", + "latitude_deg": "48.981822", + "longitude_deg": "-117.359605", + "elevation_ft": "2511", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Metaline Falls", + "scheduled_service": "no", + "keywords": "5WA4" + }, + { + "id": "12725", + "ident": "5WA5", + "type": "closed", + "name": "Ross Private Strip", + "latitude_deg": "47.763199", + "longitude_deg": "-120.152", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Orondo", + "scheduled_service": "no", + "keywords": "5WA5" + }, + { + "id": "12726", + "ident": "5WA6", + "type": "heliport", + "name": "Foster Heliport", + "latitude_deg": "46.549800872802734", + "longitude_deg": "-122.85099792480469", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Napavine", + "scheduled_service": "no", + "gps_code": "5WA6", + "local_code": "5WA6" + }, + { + "id": "12727", + "ident": "5WA7", + "type": "small_airport", + "name": "Wild Hair Airport", + "latitude_deg": "45.71842", + "longitude_deg": "-120.985246", + "elevation_ft": "1620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Centerville", + "scheduled_service": "no", + "gps_code": "5WA7", + "local_code": "5WA7", + "keywords": "Warwick Airport" + }, + { + "id": "12728", + "ident": "5WA8", + "type": "small_airport", + "name": "Hogan's Corner Airport", + "latitude_deg": "47.04166", + "longitude_deg": "-124.145744", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Hoquiam", + "scheduled_service": "no", + "gps_code": "5WA8", + "local_code": "5WA8" + }, + { + "id": "12729", + "ident": "5WA9", + "type": "small_airport", + "name": "Brush Prairie Aerodrome", + "latitude_deg": "45.723899841308594", + "longitude_deg": "-122.54399871826172", + "elevation_ft": "290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Brush Prairie", + "scheduled_service": "no", + "gps_code": "5WA9", + "local_code": "5WA9" + }, + { + "id": "12730", + "ident": "5WI0", + "type": "closed", + "name": "Grandpa's Farm Airport", + "latitude_deg": "44.7027", + "longitude_deg": "-91.133797", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Augusta", + "scheduled_service": "no", + "keywords": "5WI0" + }, + { + "id": "12731", + "ident": "5WI1", + "type": "small_airport", + "name": "Springbrook Airport", + "latitude_deg": "45.902228", + "longitude_deg": "-91.677159", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Springbrook", + "scheduled_service": "no", + "gps_code": "5WI1", + "local_code": "5WI1" + }, + { + "id": "12732", + "ident": "5WI2", + "type": "small_airport", + "name": "Plainfield International Airport", + "latitude_deg": "44.22249984741211", + "longitude_deg": "-89.49539947509766", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Plainfield", + "scheduled_service": "no", + "gps_code": "5WI2", + "local_code": "5WI2" + }, + { + "id": "12733", + "ident": "5WI3", + "type": "small_airport", + "name": "Der Schwarzwald Airport", + "latitude_deg": "43.207801818847656", + "longitude_deg": "-89.01709747314453", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Waterloo", + "scheduled_service": "no", + "gps_code": "5WI3", + "local_code": "5WI3" + }, + { + "id": "12734", + "ident": "5WI4", + "type": "small_airport", + "name": "Larson Airport", + "latitude_deg": "45.08140182495117", + "longitude_deg": "-87.6792984008789", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Marinette", + "scheduled_service": "no", + "gps_code": "5WI4", + "local_code": "5WI4" + }, + { + "id": "12735", + "ident": "5WI5", + "type": "small_airport", + "name": "Haymeadow Airport", + "latitude_deg": "45.275001525878906", + "longitude_deg": "-89.4917984008789", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Merrill", + "scheduled_service": "no", + "gps_code": "5WI5", + "local_code": "5WI5" + }, + { + "id": "12736", + "ident": "5WI6", + "type": "small_airport", + "name": "Independence Airport", + "latitude_deg": "44.36690139770508", + "longitude_deg": "-91.39579772949219", + "elevation_ft": "804", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Independence", + "scheduled_service": "no", + "gps_code": "5WI6", + "local_code": "5WI6" + }, + { + "id": "12737", + "ident": "5WI7", + "type": "heliport", + "name": "Thedacare Medical Center Waupaca Heliport", + "latitude_deg": "44.345463", + "longitude_deg": "-89.076157", + "elevation_ft": "804", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Waupaca", + "scheduled_service": "no", + "gps_code": "5WI7", + "local_code": "5WI7", + "keywords": "Riverside Hospital Heliport" + }, + { + "id": "12738", + "ident": "5WI8", + "type": "small_airport", + "name": "Ermis-Ridgeview Airport", + "latitude_deg": "45.07609939575195", + "longitude_deg": "-88.00430297851562", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Coleman", + "scheduled_service": "no", + "gps_code": "5WI8", + "local_code": "5WI8" + }, + { + "id": "12739", + "ident": "5WI9", + "type": "closed", + "name": "Patz Airport", + "latitude_deg": "45.1297", + "longitude_deg": "-88.164802", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Pound", + "scheduled_service": "no", + "keywords": "5WI9" + }, + { + "id": "12740", + "ident": "5WN2", + "type": "small_airport", + "name": "Eberle Ranch Airport", + "latitude_deg": "43.2682991027832", + "longitude_deg": "-89.4843978881836", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Dane", + "scheduled_service": "no", + "gps_code": "5WN2", + "local_code": "5WN2" + }, + { + "id": "12741", + "ident": "5WN8", + "type": "small_airport", + "name": "Knight Sky Airport", + "latitude_deg": "45.0323982239", + "longitude_deg": "-89.401802063", + "elevation_ft": "1475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wausau", + "scheduled_service": "no", + "gps_code": "5WN8", + "local_code": "5WN8" + }, + { + "id": "12742", + "ident": "5WN9", + "type": "small_airport", + "name": "Ottman Landing Airport", + "latitude_deg": "44.594398498535156", + "longitude_deg": "-92.25849914550781", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Maiden Rock", + "scheduled_service": "no", + "gps_code": "5WN9", + "local_code": "5WN9" + }, + { + "id": "12743", + "ident": "5WV5", + "type": "heliport", + "name": "St Joseph's Hospital Heliport", + "latitude_deg": "39.280119", + "longitude_deg": "-81.552082", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Parkersburg", + "scheduled_service": "no", + "gps_code": "5WV5", + "local_code": "5WV5" + }, + { + "id": "348401", + "ident": "5XA0", + "type": "small_airport", + "name": "Hunter's Creek Airport", + "latitude_deg": "31.255762", + "longitude_deg": "-100.647603", + "elevation_ft": "2050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kinckerboker", + "scheduled_service": "no", + "gps_code": "5XA0", + "local_code": "5XA0" + }, + { + "id": "330462", + "ident": "5XA1", + "type": "small_airport", + "name": "LZ Juliet Bravo Airport", + "latitude_deg": "31.630786", + "longitude_deg": "-97.707572", + "elevation_ft": "1078", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Valley Mills", + "scheduled_service": "no", + "gps_code": "5XA1", + "local_code": "5XA1" + }, + { + "id": "346869", + "ident": "5XA2", + "type": "heliport", + "name": "Flap-Air Helicopter Services Heliport", + "latitude_deg": "35.929149", + "longitude_deg": "-100.313705", + "elevation_ft": "2330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Canadian", + "scheduled_service": "no", + "gps_code": "5XA2", + "local_code": "5XA2" + }, + { + "id": "346904", + "ident": "5XA9", + "type": "small_airport", + "name": "Venable Airpark", + "latitude_deg": "33.338784", + "longitude_deg": "-96.997046", + "elevation_ft": "638", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Aubrey", + "scheduled_service": "no", + "gps_code": "5XA9", + "local_code": "5XA9" + }, + { + "id": "12744", + "ident": "5XS0", + "type": "small_airport", + "name": "Tnt Ultralightport", + "latitude_deg": "33.496700286865234", + "longitude_deg": "-96.26470184326172", + "elevation_ft": "708", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Randolph", + "scheduled_service": "no", + "gps_code": "5XS0", + "local_code": "5XS0" + }, + { + "id": "12745", + "ident": "5XS1", + "type": "heliport", + "name": "Christus Southeast Texas Saint Mary Hospital Heliport", + "latitude_deg": "29.90896", + "longitude_deg": "-93.923545", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port Arthur", + "scheduled_service": "no", + "gps_code": "5XS1", + "local_code": "5XS1", + "keywords": "Saint Mary Hospital of Port Arthur Heliport" + }, + { + "id": "12746", + "ident": "5XS2", + "type": "small_airport", + "name": "Kimball Farm Service Inc Airport", + "latitude_deg": "35.03340148925781", + "longitude_deg": "-102.19999694824219", + "elevation_ft": "3700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hereford", + "scheduled_service": "no", + "gps_code": "5XS2", + "local_code": "5XS2" + }, + { + "id": "12747", + "ident": "5XS3", + "type": "small_airport", + "name": "Wilber Farms Airport", + "latitude_deg": "29.769699096679688", + "longitude_deg": "-94.26129913330078", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Winnie", + "scheduled_service": "no", + "gps_code": "5XS3", + "local_code": "5XS3" + }, + { + "id": "12748", + "ident": "5XS4", + "type": "small_airport", + "name": "Gary's Airport", + "latitude_deg": "29.586299896240234", + "longitude_deg": "-98.11969757080078", + "elevation_ft": "655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "5XS4", + "local_code": "5XS4" + }, + { + "id": "12749", + "ident": "5XS5", + "type": "small_airport", + "name": "Wits End Ranch Airport", + "latitude_deg": "32.542581", + "longitude_deg": "-95.70861", + "elevation_ft": "545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Grand Saline", + "scheduled_service": "no", + "gps_code": "5XS5", + "local_code": "5XS5", + "keywords": "Brady Field" + }, + { + "id": "12750", + "ident": "5XS6", + "type": "small_airport", + "name": "Old Reb Airport", + "latitude_deg": "26.1754", + "longitude_deg": "-97.875298", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mercedes", + "scheduled_service": "no", + "gps_code": "5XS6", + "local_code": "5XS6", + "keywords": "Rebel Field" + }, + { + "id": "12751", + "ident": "5XS7", + "type": "small_airport", + "name": "Outback Airport", + "latitude_deg": "34.229698181152344", + "longitude_deg": "-101.46399688720703", + "elevation_ft": "3286", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lockney", + "scheduled_service": "no", + "gps_code": "5XS7", + "local_code": "5XS7" + }, + { + "id": "12752", + "ident": "5XS8", + "type": "small_airport", + "name": "L Davis Ranch Airport", + "latitude_deg": "29.50394", + "longitude_deg": "-100.295906", + "elevation_ft": "1390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no", + "gps_code": "5XS8", + "local_code": "5XS8" + }, + { + "id": "12753", + "ident": "5XS9", + "type": "small_airport", + "name": "Byrt Airport", + "latitude_deg": "31.92180061340332", + "longitude_deg": "-96.26499938964844", + "elevation_ft": "414", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Streetman", + "scheduled_service": "no", + "gps_code": "5XS9", + "local_code": "5XS9" + }, + { + "id": "12754", + "ident": "5Y0", + "type": "small_airport", + "name": "Harrisville Airport", + "latitude_deg": "44.670799255371094", + "longitude_deg": "-83.3041000366211", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Harrisville", + "scheduled_service": "no", + "gps_code": "5Y0", + "local_code": "5Y0" + }, + { + "id": "12755", + "ident": "5Y2", + "type": "small_airport", + "name": "Houghton Lake State Airport", + "latitude_deg": "44.329200744628906", + "longitude_deg": "-84.79170227050781", + "elevation_ft": "1165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Houghton Lake Heights", + "scheduled_service": "no", + "gps_code": "5Y2", + "local_code": "5Y2" + }, + { + "id": "12756", + "ident": "5Y3", + "type": "small_airport", + "name": "Gutzmer's Twin Oaks Airport", + "latitude_deg": "42.853599548339844", + "longitude_deg": "-88.75980377197266", + "elevation_ft": "821", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Whitewater", + "scheduled_service": "no", + "gps_code": "5Y3", + "local_code": "5Y3" + }, + { + "id": "12757", + "ident": "5Y4", + "type": "small_airport", + "name": "Lost Creek Airport", + "latitude_deg": "44.65999984741211", + "longitude_deg": "-84.23750305175781", + "elevation_ft": "1051", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Luzerne", + "scheduled_service": "no", + "gps_code": "5Y4", + "local_code": "5Y4" + }, + { + "id": "12758", + "ident": "5Y5", + "type": "small_airport", + "name": "David's Landing Airport", + "latitude_deg": "42.797668", + "longitude_deg": "-82.536435", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "St Clair", + "scheduled_service": "no", + "local_code": "5Y5" + }, + { + "id": "12759", + "ident": "5Y7", + "type": "small_airport", + "name": "Hanley Field", + "latitude_deg": "46.35409927368164", + "longitude_deg": "-86.62100219726562", + "elevation_ft": "984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Munising", + "scheduled_service": "no", + "gps_code": "5Y7", + "local_code": "5Y7" + }, + { + "id": "12760", + "ident": "5Z1", + "type": "seaplane_base", + "name": "Juneau Harbor Seaplane Base", + "latitude_deg": "58.29890060424805", + "longitude_deg": "-134.4080047607422", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Juneau", + "scheduled_service": "no", + "gps_code": "5Z1", + "local_code": "5Z1" + }, + { + "id": "12761", + "ident": "5Z4", + "type": "heliport", + "name": "Ans Hospital Heliport", + "latitude_deg": "59.001800537109375", + "longitude_deg": "-158.53199768066406", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kanakanak", + "scheduled_service": "no", + "gps_code": "5Z4", + "local_code": "5Z4" + }, + { + "id": "12762", + "ident": "5Z5", + "type": "small_airport", + "name": "Kantishna Airport", + "latitude_deg": "63.54169845581055", + "longitude_deg": "-150.99400329589844", + "elevation_ft": "1575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kantishna", + "scheduled_service": "no", + "gps_code": "5Z5", + "local_code": "5Z5" + }, + { + "id": "12763", + "ident": "5Z7", + "type": "closed", + "name": "Kasitsna Airport", + "latitude_deg": "59.469501", + "longitude_deg": "-151.572876", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kasitsna Bay", + "scheduled_service": "no", + "local_code": "5Z7" + }, + { + "id": "12764", + "ident": "5Z9", + "type": "seaplane_base", + "name": "Lake Brooks Seaplane Base", + "latitude_deg": "58.554798126221", + "longitude_deg": "-155.77699279785", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Katmai National Park", + "scheduled_service": "no", + "gps_code": "5Z9", + "iata_code": "BKF", + "local_code": "5Z9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_Brooks_Seaplane_Base" + }, + { + "id": "12765", + "ident": "60A", + "type": "small_airport", + "name": "Brundidge Municipal Airport", + "latitude_deg": "31.7328056", + "longitude_deg": "-85.8041944", + "elevation_ft": "476", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Brundidge", + "scheduled_service": "no", + "gps_code": "60A", + "local_code": "60A" + }, + { + "id": "45245", + "ident": "60AK", + "type": "heliport", + "name": "Carol's Heliport", + "latitude_deg": "61.607662", + "longitude_deg": "-149.279062", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "60AK", + "local_code": "60AK" + }, + { + "id": "354640", + "ident": "60AR", + "type": "small_airport", + "name": "Southern View Aviation Airport", + "latitude_deg": "36.403505", + "longitude_deg": "-92.039284", + "elevation_ft": "927", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Viola", + "scheduled_service": "no", + "gps_code": "60AR", + "local_code": "60AR" + }, + { + "id": "12766", + "ident": "60AZ", + "type": "small_airport", + "name": "Wood's Airstrip", + "latitude_deg": "33.83810043334961", + "longitude_deg": "-113.4540023803711", + "elevation_ft": "1962", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wenden", + "scheduled_service": "no", + "gps_code": "60AZ", + "local_code": "60AZ" + }, + { + "id": "12767", + "ident": "60B", + "type": "seaplane_base", + "name": "Moose River Seaplane Base", + "latitude_deg": "45.633399963378906", + "longitude_deg": "-70.26619720458984", + "elevation_ft": "1157", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Jackman", + "scheduled_service": "no", + "gps_code": "60B", + "local_code": "60B" + }, + { + "id": "12768", + "ident": "60CA", + "type": "heliport", + "name": "Q Area Heliport", + "latitude_deg": "38.044898986816406", + "longitude_deg": "-122.00700378417969", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "60CA", + "local_code": "60CA" + }, + { + "id": "12769", + "ident": "60CL", + "type": "small_airport", + "name": "California Highway Patrol Academy Airport", + "latitude_deg": "38.594499", + "longitude_deg": "-121.568188", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "West Sacramento", + "scheduled_service": "no", + "gps_code": "60CL", + "local_code": "60CL" + }, + { + "id": "46297", + "ident": "60CN", + "type": "heliport", + "name": "San Gorgonio Memorial Hospital Heliport", + "latitude_deg": "33.930759", + "longitude_deg": "-116.942874", + "elevation_ft": "2596", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Banning", + "scheduled_service": "no", + "gps_code": "60CN", + "local_code": "60CN" + }, + { + "id": "12770", + "ident": "60CO", + "type": "closed", + "name": "Stevens Airport", + "latitude_deg": "39.9676", + "longitude_deg": "-104.651873", + "elevation_ft": "5180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Brighton", + "scheduled_service": "no", + "keywords": "60CO" + }, + { + "id": "12771", + "ident": "60FD", + "type": "heliport", + "name": "Winter Haven Hospital Heliport", + "latitude_deg": "28.028803", + "longitude_deg": "-81.725026", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Winter Haven", + "scheduled_service": "no", + "gps_code": "60FD", + "local_code": "60FD" + }, + { + "id": "12772", + "ident": "60FL", + "type": "heliport", + "name": "Jupiter Medical Center Heliport", + "latitude_deg": "26.922671", + "longitude_deg": "-80.097511", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jupiter", + "scheduled_service": "no", + "gps_code": "60FL", + "local_code": "60FL" + }, + { + "id": "12773", + "ident": "60G", + "type": "small_airport", + "name": "Skyway Estates Airport", + "latitude_deg": "42.58359909057617", + "longitude_deg": "-84.65139770507812", + "elevation_ft": "931", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Eaton Rapids", + "scheduled_service": "no", + "gps_code": "60G", + "local_code": "60G" + }, + { + "id": "12774", + "ident": "60GA", + "type": "heliport", + "name": "Egleston Hospital Heliport", + "latitude_deg": "33.79439926147461", + "longitude_deg": "-84.32029724121094", + "elevation_ft": "1024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "60GA", + "local_code": "60GA" + }, + { + "id": "430424", + "ident": "60IA", + "type": "small_airport", + "name": "Village Oaks Airport", + "latitude_deg": "41.469664", + "longitude_deg": "-90.781292", + "elevation_ft": "732", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Blue Grass", + "scheduled_service": "no", + "gps_code": "60IA", + "local_code": "60IA" + }, + { + "id": "12775", + "ident": "60II", + "type": "heliport", + "name": "Union Hospital Heliport", + "latitude_deg": "39.48609924316406", + "longitude_deg": "-87.4103012084961", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Terre Haute", + "scheduled_service": "no", + "gps_code": "60II", + "local_code": "60II" + }, + { + "id": "345320", + "ident": "60IL", + "type": "small_airport", + "name": "Beulah Land Farm Airport", + "latitude_deg": "40.840373", + "longitude_deg": "-90.805306", + "elevation_ft": "723", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Biggsville", + "scheduled_service": "no", + "gps_code": "60IL", + "local_code": "60IL" + }, + { + "id": "12776", + "ident": "60IN", + "type": "small_airport", + "name": "Fisher Farm Airport", + "latitude_deg": "40.945899963378906", + "longitude_deg": "-85.37000274658203", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Roanoke", + "scheduled_service": "no", + "gps_code": "60IN", + "local_code": "60IN" + }, + { + "id": "12777", + "ident": "60IS", + "type": "small_airport", + "name": "Nelson Private Airport", + "latitude_deg": "38.40060043334961", + "longitude_deg": "-87.98860168457031", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Browns", + "scheduled_service": "no", + "gps_code": "60IS", + "local_code": "60IS" + }, + { + "id": "12778", + "ident": "60KS", + "type": "small_airport", + "name": "Alley Field", + "latitude_deg": "37.51390075683594", + "longitude_deg": "-97.00029754638672", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Douglass", + "scheduled_service": "no", + "gps_code": "60KS", + "local_code": "60KS" + }, + { + "id": "12779", + "ident": "60KY", + "type": "heliport", + "name": "Rmc Heliport", + "latitude_deg": "37.34280014038086", + "longitude_deg": "-87.48750305175781", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Madisonville", + "scheduled_service": "no", + "gps_code": "60KY", + "local_code": "60KY" + }, + { + "id": "12780", + "ident": "60L", + "type": "heliport", + "name": "Los Angeles Fire Department Station 108 Heliport", + "latitude_deg": "34.126769", + "longitude_deg": "-118.406496", + "elevation_ft": "1127", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Beverly Hills", + "scheduled_service": "no", + "local_code": "60L" + }, + { + "id": "12781", + "ident": "60LA", + "type": "heliport", + "name": "Union Oil Co of California Heliport", + "latitude_deg": "29.7917003632", + "longitude_deg": "-92.1494979858", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Intracoastal City", + "scheduled_service": "no", + "gps_code": "60LA", + "local_code": "60LA" + }, + { + "id": "12782", + "ident": "60LL", + "type": "heliport", + "name": "Memorial Hospital Heliport", + "latitude_deg": "38.550899505615234", + "longitude_deg": "-90.02179718017578", + "elevation_ft": "584", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Belleville", + "scheduled_service": "no", + "gps_code": "60LL", + "local_code": "60LL" + }, + { + "id": "12783", + "ident": "60M", + "type": "small_airport", + "name": "Spencer Airport", + "latitude_deg": "42.29050064086914", + "longitude_deg": "-71.9646987915039", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Spencer", + "scheduled_service": "no", + "gps_code": "60M", + "local_code": "60M" + }, + { + "id": "12784", + "ident": "60MA", + "type": "heliport", + "name": "Grandview Farm Heliport", + "latitude_deg": "42.73429870605469", + "longitude_deg": "-70.86740112304688", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Rowley", + "scheduled_service": "no", + "gps_code": "60MA", + "local_code": "60MA" + }, + { + "id": "12785", + "ident": "60MI", + "type": "small_airport", + "name": "Maybee Airport", + "latitude_deg": "42.04140090942383", + "longitude_deg": "-83.56690216064453", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Maybee", + "scheduled_service": "no", + "gps_code": "60MI", + "local_code": "60MI" + }, + { + "id": "12786", + "ident": "60MN", + "type": "small_airport", + "name": "Fuhr Flying Svc Airport", + "latitude_deg": "44.46799850463867", + "longitude_deg": "-95.28359985351562", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Seaforth", + "scheduled_service": "no", + "gps_code": "60MN", + "local_code": "60MN" + }, + { + "id": "12787", + "ident": "60MO", + "type": "heliport", + "name": "Parkland Health Center Heliport", + "latitude_deg": "37.78118", + "longitude_deg": "-90.437166", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Farmington", + "scheduled_service": "no", + "gps_code": "60MO", + "local_code": "60MO" + }, + { + "id": "351254", + "ident": "60MU", + "type": "small_airport", + "name": "Lucky Weasel Airport", + "latitude_deg": "37.259167", + "longitude_deg": "-94.414265", + "elevation_ft": "904", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Alba", + "scheduled_service": "no", + "gps_code": "60MU", + "local_code": "60MU" + }, + { + "id": "12788", + "ident": "60NC", + "type": "small_airport", + "name": "Star Hill Golf Club Airport", + "latitude_deg": "34.7052001953125", + "longitude_deg": "-77.05110168457031", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Cape Carteret", + "scheduled_service": "no", + "gps_code": "60NC", + "local_code": "60NC" + }, + { + "id": "12789", + "ident": "60NE", + "type": "heliport", + "name": "Chadron Community Hospital Heliport", + "latitude_deg": "42.82339859008789", + "longitude_deg": "-103.00499725341797", + "elevation_ft": "3500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Chadron", + "scheduled_service": "no", + "gps_code": "60NE", + "local_code": "60NE" + }, + { + "id": "345616", + "ident": "60NH", + "type": "heliport", + "name": "Sherwood Forest Inc Heliport", + "latitude_deg": "43.809013", + "longitude_deg": "-71.091413", + "elevation_ft": "433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Freedom", + "scheduled_service": "no", + "gps_code": "60NH", + "local_code": "60NH" + }, + { + "id": "12790", + "ident": "60NJ", + "type": "small_airport", + "name": "O'Dwyer Airport", + "latitude_deg": "40.466800689697266", + "longitude_deg": "-74.83290100097656", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Flemington", + "scheduled_service": "no", + "gps_code": "60NJ", + "local_code": "60NJ" + }, + { + "id": "12791", + "ident": "60NY", + "type": "heliport", + "name": "Samaritan Medical Center Heliport", + "latitude_deg": "43.972198486328125", + "longitude_deg": "-75.9083023071289", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Watertown", + "scheduled_service": "no", + "gps_code": "60NY", + "local_code": "60NY" + }, + { + "id": "347722", + "ident": "60OA", + "type": "small_airport", + "name": "Flemming Field", + "latitude_deg": "41.400831", + "longitude_deg": "-80.578585", + "elevation_ft": "962", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Kinsman", + "scheduled_service": "no", + "gps_code": "60OA", + "local_code": "60OA" + }, + { + "id": "12792", + "ident": "60OH", + "type": "closed", + "name": "Ohio DOT Dist 4 Office Heliport", + "latitude_deg": "41.166401", + "longitude_deg": "-81.2584", + "elevation_ft": "1087", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ravenna", + "scheduled_service": "no", + "keywords": "60OH" + }, + { + "id": "12793", + "ident": "60OI", + "type": "small_airport", + "name": "Zorn Acres Airport", + "latitude_deg": "41.3567008972168", + "longitude_deg": "-82.6249008178711", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Milan", + "scheduled_service": "no", + "gps_code": "60OI", + "local_code": "60OI" + }, + { + "id": "12794", + "ident": "60OK", + "type": "closed", + "name": "Carlin Lawrence Airport", + "latitude_deg": "35.121278", + "longitude_deg": "-98.529897", + "elevation_ft": "1340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Carnegie", + "scheduled_service": "no", + "keywords": "60OK" + }, + { + "id": "12795", + "ident": "60OR", + "type": "small_airport", + "name": "Whitaker Airport", + "latitude_deg": "43.42649841308594", + "longitude_deg": "-123.27999877929688", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Oakland", + "scheduled_service": "no", + "gps_code": "60OR", + "local_code": "60OR" + }, + { + "id": "12796", + "ident": "60PA", + "type": "heliport", + "name": "Pottstown Hospital Heliport", + "latitude_deg": "40.243514", + "longitude_deg": "-75.611233", + "elevation_ft": "168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pottstown", + "scheduled_service": "no", + "gps_code": "60PA", + "local_code": "60PA", + "keywords": "PMMC Heliport" + }, + { + "id": "12797", + "ident": "60PN", + "type": "heliport", + "name": "Jefferson Hospital Heliport", + "latitude_deg": "40.318187007700004", + "longitude_deg": "-79.934034586", + "elevation_ft": "1156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Large", + "scheduled_service": "no", + "gps_code": "60PN", + "local_code": "60PN" + }, + { + "id": "12798", + "ident": "60TA", + "type": "closed", + "name": "Air Ranch Estates Airport", + "latitude_deg": "32.3251", + "longitude_deg": "-96.947502", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waxahachie", + "scheduled_service": "no", + "keywords": "60TA" + }, + { + "id": "12799", + "ident": "60TE", + "type": "small_airport", + "name": "Tierra Linda Ranch Airport", + "latitude_deg": "30.141323", + "longitude_deg": "-99.15042", + "elevation_ft": "1990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kerrville", + "scheduled_service": "no", + "gps_code": "60TE", + "local_code": "60TE", + "keywords": "65T" + }, + { + "id": "345764", + "ident": "60TN", + "type": "heliport", + "name": "Whitehurst Field", + "latitude_deg": "35.268104", + "longitude_deg": "-88.999144", + "elevation_ft": "427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Bolivar", + "scheduled_service": "no", + "gps_code": "60TN", + "local_code": "60TN" + }, + { + "id": "12800", + "ident": "60TS", + "type": "heliport", + "name": "Hunt Regional Community Heliport", + "latitude_deg": "33.229938", + "longitude_deg": "-95.895913", + "elevation_ft": "517", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Commerce", + "scheduled_service": "no", + "gps_code": "60TS", + "local_code": "60TS", + "keywords": "Presbyterian Hospital of Commerce Heliport" + }, + { + "id": "12801", + "ident": "60TX", + "type": "small_airport", + "name": "P-K Ranch Airport", + "latitude_deg": "30.033599853515625", + "longitude_deg": "-96.26360321044922", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bellville", + "scheduled_service": "no", + "gps_code": "60TX", + "local_code": "60TX" + }, + { + "id": "12802", + "ident": "60VA", + "type": "heliport", + "name": "H D H Heliport", + "latitude_deg": "37.60490036010742", + "longitude_deg": "-77.54139709472656", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "60VA", + "local_code": "60VA" + }, + { + "id": "12803", + "ident": "60WA", + "type": "heliport", + "name": "J. J. H. Heliport", + "latitude_deg": "47.31399917602539", + "longitude_deg": "-122.25800323486328", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "60WA", + "local_code": "60WA" + }, + { + "id": "12804", + "ident": "60WI", + "type": "heliport", + "name": "Howard Young Medical Center Heliport", + "latitude_deg": "45.8932991027832", + "longitude_deg": "-89.70179748535156", + "elevation_ft": "1598", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Woodruff", + "scheduled_service": "no", + "gps_code": "60WI", + "local_code": "60WI" + }, + { + "id": "347070", + "ident": "60XA", + "type": "small_airport", + "name": "Skyline Ranch Airport", + "latitude_deg": "30.660139", + "longitude_deg": "-97.763611", + "elevation_ft": "954", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Georgetown", + "scheduled_service": "no", + "gps_code": "60XA", + "local_code": "60XA" + }, + { + "id": "12805", + "ident": "60XS", + "type": "closed", + "name": "Young Brothers Heliport", + "latitude_deg": "31.552401", + "longitude_deg": "-97.0914", + "elevation_ft": "412", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no", + "keywords": "60XS" + }, + { + "id": "12806", + "ident": "61AK", + "type": "heliport", + "name": "Era Chulitna River Heliport", + "latitude_deg": "62.56760025024414", + "longitude_deg": "-150.23599243164062", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Trapper Creek/Talkeetna", + "scheduled_service": "no", + "gps_code": "61AK", + "local_code": "61AK" + }, + { + "id": "12807", + "ident": "61AR", + "type": "small_airport", + "name": "The Valley Airport", + "latitude_deg": "36.3083992", + "longitude_deg": "-92.53070068", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Cotter", + "scheduled_service": "no", + "gps_code": "61AR", + "local_code": "61AR" + }, + { + "id": "12808", + "ident": "61AZ", + "type": "small_airport", + "name": "White Mountain Ultralightport", + "latitude_deg": "34.36970138549805", + "longitude_deg": "-109.6969985961914", + "elevation_ft": "6546", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Show Low", + "scheduled_service": "no", + "gps_code": "61AZ", + "local_code": "61AZ" + }, + { + "id": "12809", + "ident": "61CA", + "type": "small_airport", + "name": "Bauer Airport", + "latitude_deg": "34.17470169067383", + "longitude_deg": "-116.06700134277344", + "elevation_ft": "1950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Twentynine Palms", + "scheduled_service": "no", + "gps_code": "61CA", + "local_code": "61CA" + }, + { + "id": "12810", + "ident": "61CL", + "type": "small_airport", + "name": "Johnson Brothers Airport", + "latitude_deg": "32.672743", + "longitude_deg": "-115.561896", + "elevation_ft": "-1", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Calexico", + "scheduled_service": "no", + "gps_code": "61CL", + "local_code": "61CL" + }, + { + "id": "346379", + "ident": "61CN", + "type": "heliport", + "name": "California Highway Patrol Headquarters Helipad", + "latitude_deg": "38.598106", + "longitude_deg": "-121.488231", + "elevation_ft": "198", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sacramento", + "scheduled_service": "no", + "gps_code": "61CN", + "local_code": "61CN" + }, + { + "id": "12811", + "ident": "61CO", + "type": "heliport", + "name": "Monument Helibase Heliport", + "latitude_deg": "39.08580017089844", + "longitude_deg": "-104.90299987792969", + "elevation_ft": "7120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Monument", + "scheduled_service": "no", + "gps_code": "61CO", + "local_code": "61CO" + }, + { + "id": "12812", + "ident": "61D", + "type": "small_airport", + "name": "Plainwell Municipal Airport", + "latitude_deg": "42.46780014038086", + "longitude_deg": "-85.64800262451172", + "elevation_ft": "722", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Plainwell", + "scheduled_service": "no", + "gps_code": "61D", + "local_code": "61D" + }, + { + "id": "12813", + "ident": "61FD", + "type": "heliport", + "name": "AdventHealth Palm Coast Heliport", + "latitude_deg": "29.479293", + "longitude_deg": "-81.190502", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Palm Coast", + "scheduled_service": "no", + "gps_code": "61FD", + "local_code": "61FD", + "keywords": "Florida Hospital-Flagler Heliport" + }, + { + "id": "12814", + "ident": "61FL", + "type": "heliport", + "name": "Tampa General Hospital Heliport", + "latitude_deg": "27.938100814819336", + "longitude_deg": "-82.45929718017578", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tampa", + "scheduled_service": "no", + "gps_code": "61FL", + "local_code": "61FL" + }, + { + "id": "12815", + "ident": "61G", + "type": "small_airport", + "name": "Randolph's Landing Area Airport", + "latitude_deg": "43.113187", + "longitude_deg": "-84.520526", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "St Johns", + "scheduled_service": "no", + "gps_code": "82MI", + "local_code": "82MI", + "keywords": "61G" + }, + { + "id": "12816", + "ident": "61GA", + "type": "small_airport", + "name": "Pea Patch Aerodrome", + "latitude_deg": "33.30179977416992", + "longitude_deg": "-82.17230224609375", + "elevation_ft": "434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Blythe", + "scheduled_service": "no", + "gps_code": "61GA", + "local_code": "61GA" + }, + { + "id": "12817", + "ident": "61II", + "type": "small_airport", + "name": "Kay Field", + "latitude_deg": "41.36249923706055", + "longitude_deg": "-85.47779846191406", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Wolflake", + "scheduled_service": "no", + "gps_code": "61II", + "local_code": "61II" + }, + { + "id": "12818", + "ident": "61IN", + "type": "small_airport", + "name": "Wilkerson's Airport", + "latitude_deg": "38.713698", + "longitude_deg": "-85.6036", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Scottsburg", + "scheduled_service": "no", + "gps_code": "61IN", + "local_code": "61IN" + }, + { + "id": "12819", + "ident": "61IS", + "type": "small_airport", + "name": "Jim & Peg Airport", + "latitude_deg": "41.054798", + "longitude_deg": "-88.387299", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Dwight", + "scheduled_service": "no", + "gps_code": "61IS", + "local_code": "61IS", + "keywords": "Jim & Peg RLA" + }, + { + "id": "12820", + "ident": "61J", + "type": "heliport", + "name": "Portland Downtown Heliport", + "latitude_deg": "45.52502", + "longitude_deg": "-122.670704", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no", + "local_code": "61J", + "wikipedia_link": "https://en.wikipedia.org/wiki/Portland_Downtown_Heliport" + }, + { + "id": "12821", + "ident": "61K", + "type": "small_airport", + "name": "Sedan City Airport", + "latitude_deg": "37.148399353027344", + "longitude_deg": "-96.185302734375", + "elevation_ft": "1005", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Sedan", + "scheduled_service": "no", + "gps_code": "61K", + "local_code": "61K" + }, + { + "id": "12822", + "ident": "61KS", + "type": "small_airport", + "name": "Masters Field", + "latitude_deg": "39.7588996887207", + "longitude_deg": "-95.0958023071289", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "61KS", + "local_code": "61KS" + }, + { + "id": "12823", + "ident": "61KY", + "type": "small_airport", + "name": "Schroder Airport", + "latitude_deg": "38.55009841918945", + "longitude_deg": "-84.76329803466797", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Owenton", + "scheduled_service": "no", + "gps_code": "61KY", + "local_code": "61KY" + }, + { + "id": "12824", + "ident": "61L", + "type": "heliport", + "name": "Los Angeles Fire Department Station Number 109 Heliport", + "latitude_deg": "34.130764", + "longitude_deg": "-118.490504", + "elevation_ft": "1375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "local_code": "61L" + }, + { + "id": "12825", + "ident": "61LA", + "type": "heliport", + "name": "Sandefer's Heliport", + "latitude_deg": "30.565422", + "longitude_deg": "-90.940761", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Denham Springs", + "scheduled_service": "no", + "gps_code": "61LA", + "local_code": "61LA" + }, + { + "id": "12826", + "ident": "61LL", + "type": "small_airport", + "name": "Smith Restricted Landing Area", + "latitude_deg": "38.773101806640625", + "longitude_deg": "-89.59359741210938", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Peirron", + "scheduled_service": "no", + "gps_code": "61LL", + "local_code": "61LL" + }, + { + "id": "12827", + "ident": "61MA", + "type": "closed", + "name": "Shirley Airport", + "latitude_deg": "42.527", + "longitude_deg": "-71.664497", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Shirley", + "scheduled_service": "no", + "keywords": "61MA" + }, + { + "id": "12828", + "ident": "61MI", + "type": "heliport", + "name": "Bayview Heliport", + "latitude_deg": "42.679643", + "longitude_deg": "-82.750381", + "elevation_ft": "908", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "New Baltimore", + "scheduled_service": "no", + "gps_code": "61MI", + "local_code": "61MI" + }, + { + "id": "12829", + "ident": "61MN", + "type": "closed", + "name": "Traverse Air Airport", + "latitude_deg": "45.9536", + "longitude_deg": "-96.400902", + "elevation_ft": "1002", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Wheaton", + "scheduled_service": "no", + "keywords": "61MN" + }, + { + "id": "12830", + "ident": "61MO", + "type": "small_airport", + "name": "Carl Ensor Airport", + "latitude_deg": "39.54859924316406", + "longitude_deg": "-92.09880065917969", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Grainville", + "scheduled_service": "no", + "gps_code": "61MO", + "local_code": "61MO" + }, + { + "id": "12831", + "ident": "61MU", + "type": "small_airport", + "name": "Farris Strip", + "latitude_deg": "39.588199615478516", + "longitude_deg": "-94.78379821777344", + "elevation_ft": "1054", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Faucett", + "scheduled_service": "no", + "gps_code": "61MU", + "local_code": "61MU" + }, + { + "id": "12832", + "ident": "61NC", + "type": "small_airport", + "name": "Southern Comforts Aerodrome", + "latitude_deg": "34.8713", + "longitude_deg": "-78.965599", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Parkton", + "scheduled_service": "no", + "gps_code": "61NC", + "local_code": "61NC", + "keywords": "Southern Comfort Air Ranch" + }, + { + "id": "12833", + "ident": "61ND", + "type": "small_airport", + "name": "Bakke Airport", + "latitude_deg": "47.9474983215332", + "longitude_deg": "-97.66200256347656", + "elevation_ft": "1125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Larimore", + "scheduled_service": "no", + "gps_code": "61ND", + "local_code": "61ND" + }, + { + "id": "12834", + "ident": "61NE", + "type": "heliport", + "name": "Univ. of Ne Medical Center Heliport", + "latitude_deg": "41.255001068115234", + "longitude_deg": "-95.97859954833984", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Omaha", + "scheduled_service": "no", + "gps_code": "61NE", + "local_code": "61NE" + }, + { + "id": "12835", + "ident": "61NH", + "type": "heliport", + "name": "Hooksett Safety Center Heliport", + "latitude_deg": "43.055999755859375", + "longitude_deg": "-71.44670104980469", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Hooksett", + "scheduled_service": "no", + "gps_code": "61NH", + "local_code": "61NH" + }, + { + "id": "12836", + "ident": "61NJ", + "type": "small_airport", + "name": "Thomas Browne Airpark", + "latitude_deg": "39.69150161743164", + "longitude_deg": "-75.14320373535156", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Glassboro", + "scheduled_service": "no", + "gps_code": "61NJ", + "local_code": "61NJ" + }, + { + "id": "299712", + "ident": "61NK", + "type": "closed", + "name": "Sunset Airport", + "latitude_deg": "44.329856", + "longitude_deg": "-73.361793", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Willsboro", + "scheduled_service": "no", + "keywords": "61NK" + }, + { + "id": "12837", + "ident": "61NY", + "type": "small_airport", + "name": "Bassett Field", + "latitude_deg": "43.168701171875", + "longitude_deg": "-78.78230285644531", + "elevation_ft": "629", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Lockport", + "scheduled_service": "no", + "gps_code": "61NY", + "local_code": "61NY" + }, + { + "id": "12838", + "ident": "61OH", + "type": "small_airport", + "name": "Jetway Airport", + "latitude_deg": "41.19810104370117", + "longitude_deg": "-81.20950317382812", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ravenna", + "scheduled_service": "no", + "gps_code": "61OH", + "local_code": "61OH" + }, + { + "id": "12839", + "ident": "61OI", + "type": "heliport", + "name": "Mc Cullough Hyde Hospital Heliport", + "latitude_deg": "39.512298584", + "longitude_deg": "-84.7413024902", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Oxford", + "scheduled_service": "no", + "gps_code": "61OI", + "local_code": "61OI" + }, + { + "id": "12840", + "ident": "61OK", + "type": "closed", + "name": "The Highlands Airport", + "latitude_deg": "35.799999", + "longitude_deg": "-97.608704", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Cashion", + "scheduled_service": "no", + "keywords": "61OK" + }, + { + "id": "12841", + "ident": "61OR", + "type": "small_airport", + "name": "The Citadel Airport", + "latitude_deg": "44.33497", + "longitude_deg": "-121.37197", + "elevation_ft": "3077", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sisters", + "scheduled_service": "no", + "local_code": "61OR" + }, + { + "id": "12842", + "ident": "61PA", + "type": "small_airport", + "name": "Hi Line Lodge Airport", + "latitude_deg": "41.69449996948242", + "longitude_deg": "-77.16500091552734", + "elevation_ft": "2202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wellsboro", + "scheduled_service": "no", + "gps_code": "61PA", + "local_code": "61PA" + }, + { + "id": "12843", + "ident": "61PN", + "type": "small_airport", + "name": "A G A Farms Airport", + "latitude_deg": "40.42570114135742", + "longitude_deg": "-75.2323989868164", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Perkasie", + "scheduled_service": "no", + "gps_code": "61PN", + "local_code": "61PN" + }, + { + "id": "12844", + "ident": "61TA", + "type": "small_airport", + "name": "Eagle Landing Airport", + "latitude_deg": "32.88399887084961", + "longitude_deg": "-94.60769653320312", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Avinger", + "scheduled_service": "no", + "gps_code": "61TA", + "local_code": "61TA" + }, + { + "id": "12845", + "ident": "61TE", + "type": "small_airport", + "name": "Kezer Air Ranch Airport", + "latitude_deg": "32.98680114746094", + "longitude_deg": "-97.61969757080078", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Springtown", + "scheduled_service": "no", + "gps_code": "61TE", + "local_code": "61TE" + }, + { + "id": "321966", + "ident": "61TN", + "type": "heliport", + "name": "Parthenon Heliport", + "latitude_deg": "36.1529444", + "longitude_deg": "-86.8268611", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Nashville", + "scheduled_service": "no", + "gps_code": "61TN", + "local_code": "61TN" + }, + { + "id": "12846", + "ident": "61TS", + "type": "heliport", + "name": "La Porte Plant Heliport", + "latitude_deg": "29.72894", + "longitude_deg": "-95.08945", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Deer Park", + "scheduled_service": "no", + "gps_code": "61TS", + "local_code": "61TS" + }, + { + "id": "12847", + "ident": "61TX", + "type": "small_airport", + "name": "Traylor Tick Farm Airport", + "latitude_deg": "29.972400665283203", + "longitude_deg": "-96.30719757080078", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bellville", + "scheduled_service": "no", + "gps_code": "61TX", + "local_code": "61TX" + }, + { + "id": "12848", + "ident": "61VA", + "type": "small_airport", + "name": "High View Farm Airport", + "latitude_deg": "39.23540115356445", + "longitude_deg": "-78.01190185546875", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Berryville", + "scheduled_service": "no", + "gps_code": "61VA", + "local_code": "61VA" + }, + { + "id": "12849", + "ident": "61WA", + "type": "small_airport", + "name": "Burden Field-(Rabbit Run) Airport", + "latitude_deg": "48.47200012207031", + "longitude_deg": "-123.01799774169922", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Friday Harbor", + "scheduled_service": "no", + "gps_code": "61WA", + "local_code": "61WA" + }, + { + "id": "12850", + "ident": "61WI", + "type": "small_airport", + "name": "Dinnerbell Airport", + "latitude_deg": "43.70830154418945", + "longitude_deg": "-88.28569793701172", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Eden", + "scheduled_service": "no", + "gps_code": "61WI", + "local_code": "61WI" + }, + { + "id": "12851", + "ident": "61XS", + "type": "closed", + "name": "Shanks Agricultural Strip", + "latitude_deg": "29.326216", + "longitude_deg": "-96.021194", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wharton", + "scheduled_service": "no", + "keywords": "61XS" + }, + { + "id": "12852", + "ident": "61Y", + "type": "closed", + "name": "Ralph E. Koch Airport", + "latitude_deg": "38.205409", + "longitude_deg": "-87.776256", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Poseyville", + "scheduled_service": "no", + "keywords": "61Y, IN95" + }, + { + "id": "12853", + "ident": "62AK", + "type": "seaplane_base", + "name": "Wallis Lake Seaplane Base", + "latitude_deg": "61.572898864746094", + "longitude_deg": "-149.5749969482422", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "62AK", + "local_code": "62AK" + }, + { + "id": "24371", + "ident": "62AL", + "type": "small_airport", + "name": "Skywest Airpark", + "latitude_deg": "30.6835", + "longitude_deg": "-88.372002", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Mobile", + "scheduled_service": "no", + "gps_code": "62AL", + "local_code": "62AL", + "keywords": "formerly S26, 2AL6" + }, + { + "id": "325448", + "ident": "62AR", + "type": "small_airport", + "name": "Banks Ranch Airport", + "latitude_deg": "36.457222", + "longitude_deg": "-93.859866", + "elevation_ft": "1061", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Busch", + "scheduled_service": "no", + "gps_code": "62AR", + "local_code": "62AR" + }, + { + "id": "12854", + "ident": "62AZ", + "type": "closed", + "name": "Mesa Lutheran Hospital Heliport", + "latitude_deg": "33.4342", + "longitude_deg": "-111.842002", + "elevation_ft": "1248", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no", + "keywords": "62AZ" + }, + { + "id": "12855", + "ident": "62C", + "type": "small_airport", + "name": "Cindy Guntly Memorial Airport", + "latitude_deg": "42.810478", + "longitude_deg": "-88.094702", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Franksville", + "scheduled_service": "no", + "local_code": "62C" + }, + { + "id": "12856", + "ident": "62CA", + "type": "heliport", + "name": "Bank of America Data Center Heliport", + "latitude_deg": "34.053668", + "longitude_deg": "-118.253183", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "62CA", + "local_code": "62CA" + }, + { + "id": "12857", + "ident": "62CL", + "type": "small_airport", + "name": "Flying S Ranch Airport", + "latitude_deg": "35.40719985961914", + "longitude_deg": "-118.5", + "elevation_ft": "3485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Caliente", + "scheduled_service": "no", + "gps_code": "62CL", + "local_code": "62CL" + }, + { + "id": "12858", + "ident": "62CN", + "type": "heliport", + "name": "Trw Manhattan Beach Heliport", + "latitude_deg": "33.89699935913086", + "longitude_deg": "-118.38300323486328", + "elevation_ft": "94", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Manhattan Beach", + "scheduled_service": "no", + "gps_code": "62CN", + "local_code": "62CN" + }, + { + "id": "12859", + "ident": "62CO", + "type": "small_airport", + "name": "The Farm Airport", + "latitude_deg": "40.09830093383789", + "longitude_deg": "-104.42500305175781", + "elevation_ft": "4820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Keenesburg", + "scheduled_service": "no", + "gps_code": "62CO", + "local_code": "62CO" + }, + { + "id": "12860", + "ident": "62FD", + "type": "seaplane_base", + "name": "Doctors Lake Seaplane Base", + "latitude_deg": "30.12529945373535", + "longitude_deg": "-81.74420166015625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orange Park", + "scheduled_service": "no", + "gps_code": "62FD", + "local_code": "62FD" + }, + { + "id": "12861", + "ident": "62FL", + "type": "small_airport", + "name": "David Wine's Airstrip", + "latitude_deg": "27.8444004059", + "longitude_deg": "-81.4396972656", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Wales", + "scheduled_service": "no", + "gps_code": "62FL", + "local_code": "62FL" + }, + { + "id": "12862", + "ident": "62GA", + "type": "small_airport", + "name": "Seven Lakes Airport", + "latitude_deg": "33.32460021972656", + "longitude_deg": "-83.91629791259766", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "62GA", + "local_code": "62GA" + }, + { + "id": "12863", + "ident": "62IA", + "type": "small_airport", + "name": "Lerchs Airport", + "latitude_deg": "42.06669998168945", + "longitude_deg": "-91.3667984008789", + "elevation_ft": "941", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Martelle", + "scheduled_service": "no", + "gps_code": "62IA", + "local_code": "62IA" + }, + { + "id": "12864", + "ident": "62II", + "type": "heliport", + "name": "Wabash County Hospital Emergency Heliport", + "latitude_deg": "40.80619812011719", + "longitude_deg": "-85.81580352783203", + "elevation_ft": "779", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Wabash", + "scheduled_service": "no", + "gps_code": "62II", + "local_code": "62II" + }, + { + "id": "12865", + "ident": "62IL", + "type": "small_airport", + "name": "Ferris Field", + "latitude_deg": "42.186005", + "longitude_deg": "-88.604037", + "elevation_ft": "841", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Marengo", + "scheduled_service": "no", + "gps_code": "62IL", + "local_code": "62IL", + "keywords": "Kessler" + }, + { + "id": "12866", + "ident": "62IN", + "type": "small_airport", + "name": "Fowler Field /Private/ Airport", + "latitude_deg": "40.4309005737", + "longitude_deg": "-85.978302002", + "elevation_ft": "854", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Greentown", + "scheduled_service": "no", + "gps_code": "62IN", + "local_code": "62IN" + }, + { + "id": "12867", + "ident": "62IS", + "type": "small_airport", + "name": "Wilson Airport", + "latitude_deg": "40.087501525878906", + "longitude_deg": "-87.90750122070312", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Fithian", + "scheduled_service": "no", + "gps_code": "62IS", + "local_code": "62IS" + }, + { + "id": "12868", + "ident": "62K", + "type": "small_airport", + "name": "Seneca Municipal Airport", + "latitude_deg": "39.847198486328125", + "longitude_deg": "-96.11280059814453", + "elevation_ft": "1270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Seneca", + "scheduled_service": "no", + "gps_code": "62K", + "local_code": "62K" + }, + { + "id": "333964", + "ident": "62KS", + "type": "small_airport", + "name": "Dexter Field", + "latitude_deg": "38.358632", + "longitude_deg": "-96.490988", + "elevation_ft": "1173", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Cottonwood Falls", + "scheduled_service": "no", + "gps_code": "62KS", + "local_code": "62KS" + }, + { + "id": "12869", + "ident": "62KY", + "type": "heliport", + "name": "Pikeville Methodist Hospital Heliport", + "latitude_deg": "37.46969985961914", + "longitude_deg": "-82.52169799804688", + "elevation_ft": "819", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Pikeville", + "scheduled_service": "no", + "gps_code": "62KY", + "local_code": "62KY" + }, + { + "id": "12870", + "ident": "62LA", + "type": "small_airport", + "name": "Ken Guidry #4 Airport", + "latitude_deg": "30.074877", + "longitude_deg": "-92.214406", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kaplan", + "scheduled_service": "no", + "gps_code": "62LA", + "local_code": "62LA" + }, + { + "id": "310043", + "ident": "62LL", + "type": "heliport", + "name": "Rush Copley Emergency Center Heliport", + "latitude_deg": "41.65944", + "longitude_deg": "-88.46956", + "elevation_ft": "637", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Yorkville", + "scheduled_service": "no", + "gps_code": "62LL", + "local_code": "62LL" + }, + { + "id": "45422", + "ident": "62LS", + "type": "heliport", + "name": "Casey County Hospital Heliport", + "latitude_deg": "37.318028", + "longitude_deg": "-84.932111", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Liberty", + "scheduled_service": "no", + "gps_code": "62LS", + "local_code": "62LS" + }, + { + "id": "45465", + "ident": "62MD", + "type": "small_airport", + "name": "Sandy Point Airport", + "latitude_deg": "38.488806", + "longitude_deg": "-76.643633", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Prince Frederick", + "scheduled_service": "no", + "gps_code": "62MD", + "local_code": "62MD" + }, + { + "id": "12871", + "ident": "62MI", + "type": "closed", + "name": "Combs Airport", + "latitude_deg": "41.830601", + "longitude_deg": "-83.5653", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Samaria", + "scheduled_service": "no", + "keywords": "62MI" + }, + { + "id": "12872", + "ident": "62MN", + "type": "small_airport", + "name": "Taylors Falls Airport", + "latitude_deg": "45.38140106201172", + "longitude_deg": "-92.68240356445312", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Taylors Falls", + "scheduled_service": "no", + "gps_code": "62MN", + "local_code": "62MN" + }, + { + "id": "12873", + "ident": "62MO", + "type": "small_airport", + "name": "Washburn Farm Airport", + "latitude_deg": "39.06060028076172", + "longitude_deg": "-94.20330047607422", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Grain Valley", + "scheduled_service": "no", + "gps_code": "62MO", + "local_code": "62MO" + }, + { + "id": "12874", + "ident": "62NC", + "type": "small_airport", + "name": "Hickory Hill Airport", + "latitude_deg": "34.936798095703125", + "longitude_deg": "-76.9447021484375", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Havelock", + "scheduled_service": "no", + "gps_code": "62NC", + "local_code": "62NC" + }, + { + "id": "12875", + "ident": "62ND", + "type": "small_airport", + "name": "Morten Airport", + "latitude_deg": "47.77920150756836", + "longitude_deg": "-97.7594985961914", + "elevation_ft": "1340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Larimore", + "scheduled_service": "no", + "gps_code": "62ND", + "local_code": "62ND" + }, + { + "id": "12876", + "ident": "62NE", + "type": "closed", + "name": "Beebe Airport", + "latitude_deg": "40.447498", + "longitude_deg": "-100.792999", + "elevation_ft": "2860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hayes Center", + "scheduled_service": "no", + "keywords": "62NE" + }, + { + "id": "45521", + "ident": "62NH", + "type": "heliport", + "name": "Carleton Heliport", + "latitude_deg": "44.063611", + "longitude_deg": "-71.152778", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Hales Location", + "scheduled_service": "no", + "gps_code": "62NH", + "local_code": "62NH" + }, + { + "id": "45536", + "ident": "62NJ", + "type": "small_airport", + "name": "Scheller Airport", + "latitude_deg": "40.808333", + "longitude_deg": "-74.808333", + "elevation_ft": "1051", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Schooleys Mountain", + "scheduled_service": "no", + "gps_code": "62NJ", + "local_code": "62NJ" + }, + { + "id": "12877", + "ident": "62NM", + "type": "small_airport", + "name": "Seven Rivers Airport", + "latitude_deg": "32.597746", + "longitude_deg": "-104.426766", + "elevation_ft": "3360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Carlsbad", + "scheduled_service": "no", + "gps_code": "62NM", + "local_code": "62NM" + }, + { + "id": "45546", + "ident": "62NY", + "type": "heliport", + "name": "Adirondack Helicopters Heliport", + "latitude_deg": "44.43515", + "longitude_deg": "-75.472217", + "elevation_ft": "449", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Gouverneur", + "scheduled_service": "no", + "gps_code": "62NY", + "local_code": "62NY" + }, + { + "id": "12878", + "ident": "62OH", + "type": "small_airport", + "name": "Willard Field", + "latitude_deg": "39.694503", + "longitude_deg": "-82.467542", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "62OH", + "local_code": "62OH" + }, + { + "id": "12879", + "ident": "62OI", + "type": "heliport", + "name": "Parma Community Hospital Heliport", + "latitude_deg": "41.38119888305664", + "longitude_deg": "-81.73179626464844", + "elevation_ft": "931", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Parma", + "scheduled_service": "no", + "gps_code": "62OI", + "local_code": "62OI" + }, + { + "id": "12880", + "ident": "62OK", + "type": "small_airport", + "name": "Lewis North Airport", + "latitude_deg": "36.33919906616211", + "longitude_deg": "-94.92040252685547", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Jay", + "scheduled_service": "no", + "gps_code": "62OK", + "local_code": "62OK" + }, + { + "id": "12881", + "ident": "62OR", + "type": "heliport", + "name": "Cinder Butte Heliport", + "latitude_deg": "44.32170104980469", + "longitude_deg": "-121.19300079345703", + "elevation_ft": "2950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Redmond", + "scheduled_service": "no", + "gps_code": "62OR", + "local_code": "62OR" + }, + { + "id": "12882", + "ident": "62PA", + "type": "small_airport", + "name": "Shreveport North Airport", + "latitude_deg": "40.03620147705078", + "longitude_deg": "-76.99549865722656", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wellsville", + "scheduled_service": "no", + "gps_code": "62PA", + "local_code": "62PA" + }, + { + "id": "12883", + "ident": "62TA", + "type": "small_airport", + "name": "Hawken Air One Airport", + "latitude_deg": "30.32317", + "longitude_deg": "-97.3121", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Elgin", + "scheduled_service": "no", + "gps_code": "62TA", + "local_code": "62TA" + }, + { + "id": "12884", + "ident": "62TE", + "type": "heliport", + "name": "Otto Kaiser Hospital Heliport", + "latitude_deg": "28.849017", + "longitude_deg": "-97.877665", + "elevation_ft": "395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kenedy", + "scheduled_service": "no", + "gps_code": "62TE", + "local_code": "62TE" + }, + { + "id": "322178", + "ident": "62TN", + "type": "small_airport", + "name": "Meadow Lark Aerodrome Ultralight Flightpark", + "latitude_deg": "35.734722", + "longitude_deg": "-86.166389", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Woodbury", + "scheduled_service": "no", + "gps_code": "62TN", + "local_code": "62TN" + }, + { + "id": "12885", + "ident": "62TS", + "type": "closed", + "name": "Gateway Helistop", + "latitude_deg": "29.933599", + "longitude_deg": "-95.333504", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "keywords": "62TS" + }, + { + "id": "12886", + "ident": "62TX", + "type": "closed", + "name": "Barge Ranch Airport", + "latitude_deg": "31.091801", + "longitude_deg": "-97.460297", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Belton", + "scheduled_service": "no", + "keywords": "62TX" + }, + { + "id": "12887", + "ident": "62VA", + "type": "small_airport", + "name": "Grasso Salvage Airport", + "latitude_deg": "36.669898986816406", + "longitude_deg": "-76.72859954833984", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Holland", + "scheduled_service": "no", + "gps_code": "62VA", + "local_code": "62VA" + }, + { + "id": "12888", + "ident": "62WA", + "type": "heliport", + "name": "Lakewood Heliport", + "latitude_deg": "48.153326", + "longitude_deg": "-122.234003", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "62WA", + "local_code": "62WA" + }, + { + "id": "46298", + "ident": "62WI", + "type": "heliport", + "name": "Lakeview Medical Center Heliport", + "latitude_deg": "45.514592", + "longitude_deg": "-91.735386", + "elevation_ft": "1145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Rice Lake", + "scheduled_service": "no", + "gps_code": "62WI", + "local_code": "62WI" + }, + { + "id": "12889", + "ident": "62XS", + "type": "small_airport", + "name": "J F Ranch Airport", + "latitude_deg": "32.0224", + "longitude_deg": "-98.133698", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Clairette", + "scheduled_service": "no", + "gps_code": "62XS", + "local_code": "62XS" + }, + { + "id": "12890", + "ident": "63A", + "type": "seaplane_base", + "name": "Lloyd R. Roundtree Seaplane Facility Seaplane Base", + "latitude_deg": "56.81129837036133", + "longitude_deg": "-132.9600067138672", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Petersburg", + "scheduled_service": "no", + "gps_code": "63A", + "local_code": "63A" + }, + { + "id": "12891", + "ident": "63AK", + "type": "small_airport", + "name": "Kucera Residence Airport", + "latitude_deg": "61.58430099487305", + "longitude_deg": "-149.93800354003906", + "elevation_ft": "189", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "63AK", + "local_code": "63AK" + }, + { + "id": "12892", + "ident": "63AR", + "type": "small_airport", + "name": "Stokes Airport", + "latitude_deg": "35.246592", + "longitude_deg": "-90.461518", + "elevation_ft": "212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Earle", + "scheduled_service": "no", + "gps_code": "63AR", + "local_code": "63AR", + "keywords": "McNeely, McNeeley, Mc Neely, Mc Neeley" + }, + { + "id": "12893", + "ident": "63AZ", + "type": "heliport", + "name": "AT&T - Apache Junction Heliport", + "latitude_deg": "33.495937", + "longitude_deg": "-111.639826", + "elevation_ft": "2527", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no", + "gps_code": "63AZ", + "local_code": "63AZ" + }, + { + "id": "12894", + "ident": "63CA", + "type": "small_airport", + "name": "Desert Air Sky Ranch Airport", + "latitude_deg": "33.48109817504883", + "longitude_deg": "-115.8740005493164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "North Shore", + "scheduled_service": "no", + "gps_code": "63CA", + "local_code": "63CA" + }, + { + "id": "12895", + "ident": "63CL", + "type": "small_airport", + "name": "G3 Ranch Airport", + "latitude_deg": "38.71659851074219", + "longitude_deg": "-122.13899993896484", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Capay", + "scheduled_service": "no", + "gps_code": "63CL", + "local_code": "63CL" + }, + { + "id": "12896", + "ident": "63CN", + "type": "small_airport", + "name": "Meadowlark Field", + "latitude_deg": "37.66130065917969", + "longitude_deg": "-121.69400024414062", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Livermore", + "scheduled_service": "no", + "gps_code": "63CN", + "local_code": "63CN" + }, + { + "id": "12897", + "ident": "63CO", + "type": "small_airport", + "name": "Hendricks Field At West Creek Ranch Airport", + "latitude_deg": "38.705501556396484", + "longitude_deg": "-108.93699645996094", + "elevation_ft": "4820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Gateway", + "scheduled_service": "no", + "gps_code": "63CO", + "local_code": "63CO" + }, + { + "id": "338582", + "ident": "63FA", + "type": "small_airport", + "name": "Sullivan Field", + "latitude_deg": "29.734167", + "longitude_deg": "-82.565278", + "elevation_ft": "88", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Alachua", + "scheduled_service": "no", + "gps_code": "63FA", + "local_code": "63FA" + }, + { + "id": "12898", + "ident": "63FD", + "type": "small_airport", + "name": "Link Field", + "latitude_deg": "29.69809913635254", + "longitude_deg": "-82.49140167236328", + "elevation_ft": "108", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Alachua", + "scheduled_service": "no", + "gps_code": "63FD", + "local_code": "63FD" + }, + { + "id": "12899", + "ident": "63FL", + "type": "heliport", + "name": "Shands Cair Heliport", + "latitude_deg": "29.635499954223633", + "longitude_deg": "-82.35040283203125", + "elevation_ft": "94", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Gainesville", + "scheduled_service": "no", + "gps_code": "63FL", + "local_code": "63FL" + }, + { + "id": "12900", + "ident": "63GA", + "type": "closed", + "name": "Zips Airport", + "latitude_deg": "33.4529", + "longitude_deg": "-84.0952", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Mc Donough", + "scheduled_service": "no", + "keywords": "63GA" + }, + { + "id": "347495", + "ident": "63GE", + "type": "small_airport", + "name": "Westbrook Airport", + "latitude_deg": "32.047358", + "longitude_deg": "-84.740064", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Lumpkin", + "scheduled_service": "no", + "gps_code": "63GE", + "local_code": "63GE" + }, + { + "id": "12901", + "ident": "63IA", + "type": "heliport", + "name": "Davis County Hospital Heliport", + "latitude_deg": "40.759300231933594", + "longitude_deg": "-92.41549682617188", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Bloomfield", + "scheduled_service": "no", + "gps_code": "63IA", + "local_code": "63IA" + }, + { + "id": "345596", + "ident": "63ID", + "type": "small_airport", + "name": "Hoskins Field", + "latitude_deg": "43.636751", + "longitude_deg": "-116.765758", + "elevation_ft": "2525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Caldwell", + "scheduled_service": "no", + "gps_code": "63ID", + "local_code": "63ID" + }, + { + "id": "12902", + "ident": "63II", + "type": "small_airport", + "name": "Woods Field", + "latitude_deg": "39.50510025024414", + "longitude_deg": "-86.0302963256836", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "63II", + "local_code": "63II" + }, + { + "id": "12903", + "ident": "63IL", + "type": "small_airport", + "name": "Emerick Airport", + "latitude_deg": "42.18339920043945", + "longitude_deg": "-88.59449768066406", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Marengo", + "scheduled_service": "no", + "gps_code": "63IL", + "local_code": "63IL" + }, + { + "id": "12904", + "ident": "63IN", + "type": "closed", + "name": "Ropkey Field", + "latitude_deg": "39.899502", + "longitude_deg": "-86.271698", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "keywords": "63IN" + }, + { + "id": "12905", + "ident": "63IS", + "type": "small_airport", + "name": "Corn Alley Airport", + "latitude_deg": "40.7692985534668", + "longitude_deg": "-88.98310089111328", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "El Paso", + "scheduled_service": "no", + "gps_code": "63IS", + "local_code": "63IS" + }, + { + "id": "12906", + "ident": "63K", + "type": "small_airport", + "name": "Hillside Airport", + "latitude_deg": "38.82109832763672", + "longitude_deg": "-94.60970306396484", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Stilwell", + "scheduled_service": "no", + "gps_code": "63K", + "local_code": "63K", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hillside_Airport" + }, + { + "id": "12907", + "ident": "63KS", + "type": "closed", + "name": "5-D Ranch Airport", + "latitude_deg": "39.3283", + "longitude_deg": "-97.060898", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Clay Center", + "scheduled_service": "no", + "keywords": "63KS" + }, + { + "id": "45426", + "ident": "63KY", + "type": "heliport", + "name": "Harrison Memorial Hospital Heliport", + "latitude_deg": "38.3825", + "longitude_deg": "-84.278056", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Cynthiana", + "scheduled_service": "no", + "gps_code": "63KY", + "local_code": "63KY" + }, + { + "id": "12908", + "ident": "63LA", + "type": "small_airport", + "name": "Leonards Airfield & Indust Park Airport", + "latitude_deg": "29.964099884033203", + "longitude_deg": "-91.91210174560547", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Delcambre", + "scheduled_service": "no", + "gps_code": "63LA", + "local_code": "63LA" + }, + { + "id": "45477", + "ident": "63MI", + "type": "heliport", + "name": "Providence Hospital Heliport", + "latitude_deg": "42.489167", + "longitude_deg": "-83.521944", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Novi", + "scheduled_service": "no", + "gps_code": "63MI", + "local_code": "63MI" + }, + { + "id": "12909", + "ident": "63MN", + "type": "small_airport", + "name": "Weideman International Airport", + "latitude_deg": "47.094398498535156", + "longitude_deg": "-91.6001968383789", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Two Harbors", + "scheduled_service": "no", + "gps_code": "63MN", + "local_code": "63MN" + }, + { + "id": "12910", + "ident": "63MO", + "type": "heliport", + "name": "Heartland Hospital West Heliport", + "latitude_deg": "39.76940155029297", + "longitude_deg": "-94.8501968383789", + "elevation_ft": "966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Joseph", + "scheduled_service": "no", + "gps_code": "63MO", + "local_code": "63MO" + }, + { + "id": "430423", + "ident": "63MS", + "type": "small_airport", + "name": "Inmon Field", + "latitude_deg": "34.338933", + "longitude_deg": "-89.002406", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Ecru", + "scheduled_service": "no", + "gps_code": "63MS", + "local_code": "63MS" + }, + { + "id": "346669", + "ident": "63MT", + "type": "small_airport", + "name": "Billings Flying Service Airport", + "latitude_deg": "45.715083", + "longitude_deg": "-108.575392", + "elevation_ft": "3200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Billings", + "scheduled_service": "no", + "gps_code": "63MT", + "local_code": "63MT" + }, + { + "id": "12911", + "ident": "63NC", + "type": "closed", + "name": "Wood Airport", + "latitude_deg": "35.834898", + "longitude_deg": "-77.996385", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Wilson", + "scheduled_service": "no", + "keywords": "63NC" + }, + { + "id": "12912", + "ident": "63ND", + "type": "small_airport", + "name": "Moellenkamp Airport", + "latitude_deg": "46.36520004272461", + "longitude_deg": "-97.72820281982422", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Lisbon", + "scheduled_service": "no", + "gps_code": "63ND", + "local_code": "63ND" + }, + { + "id": "345566", + "ident": "63NH", + "type": "heliport", + "name": "Jackson Fire Heliport", + "latitude_deg": "44.141722", + "longitude_deg": "-71.181111", + "elevation_ft": "822", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "63NH", + "local_code": "63NH" + }, + { + "id": "12913", + "ident": "63NJ", + "type": "heliport", + "name": "Howell Township Police Heliport", + "latitude_deg": "40.17179870605469", + "longitude_deg": "-74.17849731445312", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Farmingdale", + "scheduled_service": "no", + "gps_code": "63NJ", + "local_code": "63NJ" + }, + { + "id": "12914", + "ident": "63NY", + "type": "small_airport", + "name": "Shear Airport", + "latitude_deg": "43.2593", + "longitude_deg": "-78.9656", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Youngstown", + "scheduled_service": "no", + "gps_code": "63NY", + "local_code": "63NY", + "keywords": "Ransomville" + }, + { + "id": "12915", + "ident": "63OH", + "type": "small_airport", + "name": "White's Airport", + "latitude_deg": "39.70280075073242", + "longitude_deg": "-83.09390258789062", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Darbyville", + "scheduled_service": "no", + "gps_code": "63OH", + "local_code": "63OH" + }, + { + "id": "12916", + "ident": "63OI", + "type": "small_airport", + "name": "Bowman Field", + "latitude_deg": "40.33509826660156", + "longitude_deg": "-83.13600158691406", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Delaware", + "scheduled_service": "no", + "gps_code": "63OI", + "local_code": "63OI" + }, + { + "id": "12917", + "ident": "63OK", + "type": "heliport", + "name": "Chandler Armory Heliport", + "latitude_deg": "35.717143", + "longitude_deg": "-96.890115", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Chandler", + "scheduled_service": "no", + "gps_code": "63OK", + "local_code": "63OK" + }, + { + "id": "12918", + "ident": "63OR", + "type": "small_airport", + "name": "Mountaindale Airport", + "latitude_deg": "45.61650085449219", + "longitude_deg": "-123.0459976196289", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Mountaindale", + "scheduled_service": "no", + "gps_code": "63OR", + "local_code": "63OR" + }, + { + "id": "12919", + "ident": "63PA", + "type": "small_airport", + "name": "Boyer Airport", + "latitude_deg": "40.322173", + "longitude_deg": "-76.100664", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wernersville", + "scheduled_service": "no", + "gps_code": "28PA", + "local_code": "28PA", + "keywords": "63PA" + }, + { + "id": "12920", + "ident": "63PN", + "type": "heliport", + "name": "Helicopter Services Heliport", + "latitude_deg": "40.508399963378906", + "longitude_deg": "-75.39409637451172", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Coopersburg", + "scheduled_service": "no", + "gps_code": "63PN", + "local_code": "63PN" + }, + { + "id": "12921", + "ident": "63S", + "type": "small_airport", + "name": "Colville Municipal Airport", + "latitude_deg": "48.54389953613281", + "longitude_deg": "-117.88400268554688", + "elevation_ft": "1882", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Colville", + "scheduled_service": "no", + "gps_code": "63S", + "local_code": "63S" + }, + { + "id": "12922", + "ident": "63TA", + "type": "closed", + "name": "Barnett Airport", + "latitude_deg": "34.269501", + "longitude_deg": "-99.514297", + "elevation_ft": "1385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Chillicothe", + "scheduled_service": "no", + "gps_code": "63TA", + "local_code": "63TA" + }, + { + "id": "12923", + "ident": "63TE", + "type": "small_airport", + "name": "Flying S Ranch Airport", + "latitude_deg": "31.353500366210938", + "longitude_deg": "-95.20580291748047", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kennard", + "scheduled_service": "no", + "gps_code": "63TE", + "local_code": "63TE" + }, + { + "id": "12924", + "ident": "63TS", + "type": "heliport", + "name": "The America Tower Heliport", + "latitude_deg": "29.760799407958984", + "longitude_deg": "-95.39769744873047", + "elevation_ft": "637", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "63TS", + "local_code": "63TS" + }, + { + "id": "12925", + "ident": "63TX", + "type": "closed", + "name": "Grosser Airport", + "latitude_deg": "29.7752", + "longitude_deg": "-98.578102", + "elevation_ft": "1354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bulverde", + "scheduled_service": "no", + "keywords": "63TX" + }, + { + "id": "12926", + "ident": "63VA", + "type": "heliport", + "name": "Mannboro Medical Center Heliport", + "latitude_deg": "37.250999450683594", + "longitude_deg": "-77.82140350341797", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Mannboro", + "scheduled_service": "no", + "gps_code": "63VA", + "local_code": "63VA" + }, + { + "id": "12927", + "ident": "63WA", + "type": "small_airport", + "name": "Boyle R & D Airport", + "latitude_deg": "47.83330154418945", + "longitude_deg": "-117.27400207519531", + "elevation_ft": "2350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Colbert", + "scheduled_service": "no", + "gps_code": "63WA", + "local_code": "63WA" + }, + { + "id": "12928", + "ident": "63WI", + "type": "small_airport", + "name": "Flying H Airport", + "latitude_deg": "42.66579818725586", + "longitude_deg": "-89.73760223388672", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "63WI", + "local_code": "63WI" + }, + { + "id": "346253", + "ident": "63XA", + "type": "small_airport", + "name": "JCJ Farm Airport", + "latitude_deg": "31.215591", + "longitude_deg": "-97.003661", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lott", + "scheduled_service": "no", + "gps_code": "63XA", + "local_code": "63XA" + }, + { + "id": "12929", + "ident": "63XS", + "type": "small_airport", + "name": "Byram Ranch Airport", + "latitude_deg": "30.22410011291504", + "longitude_deg": "-98.2885971069336", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Henly", + "scheduled_service": "no", + "gps_code": "63XS", + "local_code": "63XS" + }, + { + "id": "12930", + "ident": "63Y", + "type": "small_airport", + "name": "Tyler Municipal Airport", + "latitude_deg": "44.29159927368164", + "longitude_deg": "-96.15029907226562", + "elevation_ft": "1742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Tyler", + "scheduled_service": "no", + "gps_code": "63Y", + "local_code": "63Y" + }, + { + "id": "12931", + "ident": "64AK", + "type": "small_airport", + "name": "Carpentiers Strip", + "latitude_deg": "61.440132", + "longitude_deg": "-150.026829", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Point Mackenzie", + "scheduled_service": "no", + "gps_code": "64AK", + "local_code": "64AK" + }, + { + "id": "12932", + "ident": "64AR", + "type": "closed", + "name": "Lowrance Airport", + "latitude_deg": "35.613255", + "longitude_deg": "-90.018497", + "elevation_ft": "232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Osceola", + "scheduled_service": "no", + "keywords": "64AR" + }, + { + "id": "12933", + "ident": "64AZ", + "type": "heliport", + "name": "KSAZ-TV Heliport", + "latitude_deg": "33.448863", + "longitude_deg": "-112.081039", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "64AZ", + "local_code": "64AZ", + "keywords": "KTSP Heliport" + }, + { + "id": "12934", + "ident": "64C", + "type": "closed", + "name": "Vincent Airport", + "latitude_deg": "42.51835", + "longitude_deg": "-88.299258", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Genoa City", + "scheduled_service": "no", + "keywords": "64C, 4WI7" + }, + { + "id": "12935", + "ident": "64CA", + "type": "heliport", + "name": "Tahoe Forest Hospital Heliport", + "latitude_deg": "39.324124", + "longitude_deg": "-120.200281", + "elevation_ft": "5200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Truckee", + "scheduled_service": "no", + "gps_code": "64CA", + "local_code": "64CA" + }, + { + "id": "12936", + "ident": "64CL", + "type": "balloonport", + "name": "Goodyear Blimp Base Airport", + "latitude_deg": "33.855333", + "longitude_deg": "-118.276234", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Gardena", + "scheduled_service": "no", + "gps_code": "64CL", + "local_code": "64CL" + }, + { + "id": "12937", + "ident": "64CN", + "type": "closed", + "name": "Sunrise Dusters Airport", + "latitude_deg": "38.818745", + "longitude_deg": "-121.714171", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Knights Landing", + "scheduled_service": "no", + "keywords": "64CN" + }, + { + "id": "12938", + "ident": "64CO", + "type": "closed", + "name": "Cholla Airport", + "latitude_deg": "37.755556", + "longitude_deg": "-104.756389", + "elevation_ft": "5950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Walsenburg", + "scheduled_service": "no", + "gps_code": "64CO", + "local_code": "64CO", + "keywords": "64CO" + }, + { + "id": "12939", + "ident": "64CT", + "type": "small_airport", + "name": "Woodstock Airport", + "latitude_deg": "41.920956", + "longitude_deg": "-71.953117", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Woodstock", + "scheduled_service": "no", + "gps_code": "64CT", + "local_code": "64CT" + }, + { + "id": "310097", + "ident": "64DE", + "type": "heliport", + "name": "Bayhealth Medical Center Heliport", + "latitude_deg": "39.151375", + "longitude_deg": "-75.524167", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Dover", + "scheduled_service": "no", + "gps_code": "64DE", + "local_code": "64DE" + }, + { + "id": "12940", + "ident": "64F", + "type": "small_airport", + "name": "Alvie Cole Ranch Airport", + "latitude_deg": "31.643801", + "longitude_deg": "-100.970001", + "elevation_ft": "2444", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sterling City", + "scheduled_service": "no", + "gps_code": "TS95", + "local_code": "TS95", + "keywords": "64F, TE42" + }, + { + "id": "12941", + "ident": "64FA", + "type": "small_airport", + "name": "Naked Lady Ranch Airport", + "latitude_deg": "27.142799377441406", + "longitude_deg": "-80.33779907226562", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Stuart", + "scheduled_service": "no", + "gps_code": "64FA", + "local_code": "64FA" + }, + { + "id": "12942", + "ident": "64FD", + "type": "heliport", + "name": "Palm Beach Children's Hospital Heliport", + "latitude_deg": "26.756429", + "longitude_deg": "-80.061293", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "West Palm Beach", + "scheduled_service": "no", + "gps_code": "64FD", + "local_code": "64FD", + "keywords": "St Marys Hospital Heliport." + }, + { + "id": "12943", + "ident": "64FL", + "type": "heliport", + "name": "District Vi Heliport", + "latitude_deg": "25.7818835202", + "longitude_deg": "-80.37752352650001", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "64FL", + "local_code": "64FL" + }, + { + "id": "12944", + "ident": "64G", + "type": "small_airport", + "name": "Page Regional Airport", + "latitude_deg": "47.169701", + "longitude_deg": "-97.4804", + "elevation_ft": "1215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Page", + "scheduled_service": "no", + "local_code": "64G", + "keywords": "9NA3" + }, + { + "id": "12945", + "ident": "64GA", + "type": "small_airport", + "name": "Big T Airport", + "latitude_deg": "33.283501", + "longitude_deg": "-84.538803", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Senoia", + "scheduled_service": "no", + "gps_code": "64GA", + "local_code": "64GA" + }, + { + "id": "12946", + "ident": "64I", + "type": "small_airport", + "name": "Lee Bottom Airport", + "latitude_deg": "38.631198883057", + "longitude_deg": "-85.443603515625", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hanover", + "scheduled_service": "no", + "gps_code": "64I", + "local_code": "64I", + "home_link": "http://www.leebottom.com/index.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lee_Bottom_Airport", + "keywords": "II93" + }, + { + "id": "345476", + "ident": "64IG", + "type": "heliport", + "name": "Indiana University Health Paoli Inc Heliport", + "latitude_deg": "38.567923", + "longitude_deg": "-86.475985", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Paoli", + "scheduled_service": "no", + "gps_code": "64IG", + "local_code": "64IG", + "keywords": "Air Evac 17 Heliport" + }, + { + "id": "12947", + "ident": "64II", + "type": "heliport", + "name": "The Lutheran Hospital of Indiana Heliport", + "latitude_deg": "41.040000915527344", + "longitude_deg": "-85.24800109863281", + "elevation_ft": "811", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Fort Wayne", + "scheduled_service": "no", + "gps_code": "64II", + "local_code": "64II" + }, + { + "id": "12948", + "ident": "64IL", + "type": "small_airport", + "name": "Walpole Airport", + "latitude_deg": "42.237985", + "longitude_deg": "-88.662288", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Marengo", + "scheduled_service": "no", + "gps_code": "64IL", + "local_code": "64IL" + }, + { + "id": "12949", + "ident": "64IN", + "type": "small_airport", + "name": "Peacock Farms Airport", + "latitude_deg": "40.43479919433594", + "longitude_deg": "-85.62550354003906", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Fairmount", + "scheduled_service": "no", + "gps_code": "64IN", + "local_code": "64IN" + }, + { + "id": "12950", + "ident": "64IS", + "type": "heliport", + "name": "Precision Chrome Heliport", + "latitude_deg": "42.38970184326172", + "longitude_deg": "-88.18150329589844", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Fox Lake", + "scheduled_service": "no", + "gps_code": "64IS", + "local_code": "64IS" + }, + { + "id": "345353", + "ident": "64KS", + "type": "small_airport", + "name": "Minnow Creek Airport", + "latitude_deg": "38.976543", + "longitude_deg": "-98.47143", + "elevation_ft": "1493", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Sylvan Grove", + "scheduled_service": "no", + "gps_code": "64KS", + "local_code": "64KS" + }, + { + "id": "12951", + "ident": "64KY", + "type": "closed", + "name": "Hemp Ridge Airport", + "latitude_deg": "38.153099", + "longitude_deg": "-85.118797", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Shelbyville", + "scheduled_service": "no", + "keywords": "64KY" + }, + { + "id": "12952", + "ident": "64LA", + "type": "closed", + "name": "Med-South Heliport", + "latitude_deg": "30.472401", + "longitude_deg": "-92.080101", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Opelousas", + "scheduled_service": "no", + "keywords": "64LA" + }, + { + "id": "12953", + "ident": "64LL", + "type": "heliport", + "name": "Rose Nr 3 Heliport", + "latitude_deg": "41.8125", + "longitude_deg": "-87.66310119628906", + "elevation_ft": "646", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "no", + "gps_code": "64LL", + "local_code": "64LL" + }, + { + "id": "345238", + "ident": "64MD", + "type": "heliport", + "name": "Dominion Cove Point Business Center Heliport", + "latitude_deg": "38.383041", + "longitude_deg": "-76.434406", + "elevation_ft": "119", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Lusby", + "scheduled_service": "no", + "gps_code": "64MD", + "local_code": "64MD" + }, + { + "id": "12954", + "ident": "64ME", + "type": "heliport", + "name": "Dave Libby Heliport", + "latitude_deg": "43.739200592041016", + "longitude_deg": "-70.31289672851562", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Falmouth", + "scheduled_service": "no", + "gps_code": "64ME", + "local_code": "64ME" + }, + { + "id": "12955", + "ident": "64MI", + "type": "heliport", + "name": "Ti Heliport", + "latitude_deg": "42.66469955444336", + "longitude_deg": "-83.01219940185547", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Utica", + "scheduled_service": "no", + "gps_code": "64MI", + "local_code": "64MI" + }, + { + "id": "12956", + "ident": "64MN", + "type": "heliport", + "name": "Svard Heliport", + "latitude_deg": "45.04280090332031", + "longitude_deg": "-93.43270111083984", + "elevation_ft": "902", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "64MN", + "local_code": "64MN" + }, + { + "id": "12957", + "ident": "64MO", + "type": "small_airport", + "name": "Booze Island Airport", + "latitude_deg": "39.66529846191406", + "longitude_deg": "-95.01329803466797", + "elevation_ft": "794", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Joseph", + "scheduled_service": "no", + "gps_code": "64MO", + "local_code": "64MO" + }, + { + "id": "12958", + "ident": "64NC", + "type": "small_airport", + "name": "Fields Airport", + "latitude_deg": "35.90190124511719", + "longitude_deg": "-79.77249908447266", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Pleasant Garden", + "scheduled_service": "no", + "gps_code": "64NC", + "local_code": "64NC" + }, + { + "id": "12959", + "ident": "64ND", + "type": "small_airport", + "name": "Z. P. Field", + "latitude_deg": "46.850799560546875", + "longitude_deg": "-101.07499694824219", + "elevation_ft": "1840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Mandan", + "scheduled_service": "no", + "gps_code": "64ND", + "local_code": "64ND" + }, + { + "id": "12960", + "ident": "64NE", + "type": "heliport", + "name": "Seward Memorial Hospital Heliport", + "latitude_deg": "40.909698486328125", + "longitude_deg": "-97.0905990600586", + "elevation_ft": "1467", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Seward", + "scheduled_service": "no", + "gps_code": "64NE", + "local_code": "64NE" + }, + { + "id": "12961", + "ident": "64NJ", + "type": "heliport", + "name": "Verizon - CDC II Heliport", + "latitude_deg": "40.23816", + "longitude_deg": "-74.318539", + "elevation_ft": "176", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Freehold Township", + "scheduled_service": "no", + "gps_code": "64NJ", + "local_code": "64NJ", + "keywords": "New Jersey Bell CDC 11 Heliport" + }, + { + "id": "346511", + "ident": "64NR", + "type": "heliport", + "name": "Engelhard Medical Center Heliport", + "latitude_deg": "35.508361", + "longitude_deg": "-76.023358", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Engelhard", + "scheduled_service": "no", + "gps_code": "64NR", + "local_code": "64NR" + }, + { + "id": "333478", + "ident": "64NV", + "type": "heliport", + "name": "St Rose Dominican San Martin Campus Heliport", + "latitude_deg": "36.058242", + "longitude_deg": "-115.273114", + "elevation_ft": "2622", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "gps_code": "64NV", + "local_code": "64NV" + }, + { + "id": "12962", + "ident": "64NY", + "type": "closed", + "name": "Hemlock Run Airport", + "latitude_deg": "42.367298", + "longitude_deg": "-76.931097", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Watkins Glen", + "scheduled_service": "no", + "keywords": "64NY" + }, + { + "id": "45723", + "ident": "64OG", + "type": "small_airport", + "name": "Antone Ranch Airport", + "latitude_deg": "44.493436", + "longitude_deg": "-119.843686", + "elevation_ft": "3908", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Mitchell", + "scheduled_service": "no", + "gps_code": "64OG", + "local_code": "64OG" + }, + { + "id": "12963", + "ident": "64OH", + "type": "closed", + "name": "O K Dies Airport", + "latitude_deg": "40.898701", + "longitude_deg": "-80.929298", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Salem", + "scheduled_service": "no", + "keywords": "64OH" + }, + { + "id": "12964", + "ident": "64OI", + "type": "heliport", + "name": "Ponderosa Heliport", + "latitude_deg": "40.9822998046875", + "longitude_deg": "-80.95790100097656", + "elevation_ft": "1105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "64OI", + "local_code": "64OI" + }, + { + "id": "12965", + "ident": "64OK", + "type": "heliport", + "name": "Cordell Memorial Hospital Heliport", + "latitude_deg": "35.30226", + "longitude_deg": "-98.98859", + "elevation_ft": "1564", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Cordell", + "scheduled_service": "no", + "gps_code": "64OK", + "local_code": "64OK" + }, + { + "id": "12966", + "ident": "64OR", + "type": "small_airport", + "name": "Plum Valley Airport", + "latitude_deg": "45.03369903564453", + "longitude_deg": "-123.1719970703125", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Amity", + "scheduled_service": "no", + "gps_code": "64OR", + "local_code": "64OR" + }, + { + "id": "12967", + "ident": "64PA", + "type": "heliport", + "name": "J C Blair Memorial Hospital Heliport", + "latitude_deg": "40.49369812011719", + "longitude_deg": "-78.0093994140625", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Huntingdon", + "scheduled_service": "no", + "gps_code": "64PA", + "local_code": "64PA" + }, + { + "id": "12968", + "ident": "64PN", + "type": "heliport", + "name": "Hershey Medical Center Heliport", + "latitude_deg": "40.26470184326172", + "longitude_deg": "-76.67500305175781", + "elevation_ft": "438", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hershey", + "scheduled_service": "no", + "gps_code": "64PN", + "local_code": "64PN" + }, + { + "id": "12969", + "ident": "64TA", + "type": "closed", + "name": "Galvestonian Heliport", + "latitude_deg": "29.31824", + "longitude_deg": "-94.7521", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Galveston", + "scheduled_service": "no", + "gps_code": "64TA", + "local_code": "64TA" + }, + { + "id": "12970", + "ident": "64TE", + "type": "small_airport", + "name": "Apache Springs Airport", + "latitude_deg": "30.159034", + "longitude_deg": "-99.337209", + "elevation_ft": "2016", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mountain Home", + "scheduled_service": "no", + "gps_code": "64TE", + "local_code": "64TE", + "keywords": "64T, Brinkman Ranch / Mountain Home Airport, Cedar Lake Landing Strip" + }, + { + "id": "12971", + "ident": "64TS", + "type": "heliport", + "name": "CHI Baylor St Luke's Medical Center Heliport", + "latitude_deg": "29.707673", + "longitude_deg": "-95.39943", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "64TS", + "local_code": "64TS", + "keywords": "St Luke's Episcopal Hospital" + }, + { + "id": "12972", + "ident": "64TX", + "type": "heliport", + "name": "North Central Baptist Hospital Heliport", + "latitude_deg": "29.61967", + "longitude_deg": "-98.49136", + "elevation_ft": "1054", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "64TX", + "local_code": "64TX" + }, + { + "id": "12973", + "ident": "64V", + "type": "small_airport", + "name": "Wallace Municipal Airport", + "latitude_deg": "40.83219909667969", + "longitude_deg": "-101.16400146484375", + "elevation_ft": "3101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Wallace", + "scheduled_service": "no", + "gps_code": "64V", + "local_code": "64V" + }, + { + "id": "12974", + "ident": "64VA", + "type": "heliport", + "name": "Creeds Heliport", + "latitude_deg": "36.60490036010742", + "longitude_deg": "-76.00440216064453", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Virginia Beach", + "scheduled_service": "no", + "gps_code": "64VA", + "local_code": "64VA" + }, + { + "id": "12975", + "ident": "64WA", + "type": "heliport", + "name": "Everett I Heliport", + "latitude_deg": "47.5833015442", + "longitude_deg": "-122.167999268", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Bellevue", + "scheduled_service": "no", + "gps_code": "64WA", + "local_code": "64WA" + }, + { + "id": "12976", + "ident": "64WI", + "type": "closed", + "name": "Sky Diving Airport", + "latitude_deg": "44.040782", + "longitude_deg": "-88.69885", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Omro", + "scheduled_service": "no", + "home_link": "http://www.skydiveadventure.com/", + "keywords": "64WI" + }, + { + "id": "351173", + "ident": "64XA", + "type": "small_airport", + "name": "Bird Dog Landing", + "latitude_deg": "33.581456", + "longitude_deg": "-97.549265", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Forestburg", + "scheduled_service": "no", + "gps_code": "64XA", + "local_code": "64XA" + }, + { + "id": "12977", + "ident": "64XS", + "type": "heliport", + "name": "Wadley Regional Medical Center Heliport", + "latitude_deg": "32.429298400878906", + "longitude_deg": "-94.03910064697266", + "elevation_ft": "347", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Texarkana", + "scheduled_service": "no", + "gps_code": "64XS", + "local_code": "64XS" + }, + { + "id": "12978", + "ident": "65AK", + "type": "small_airport", + "name": "McDonald Ridge Airport", + "latitude_deg": "61.560379", + "longitude_deg": "-149.367349", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "65AK", + "local_code": "65AK" + }, + { + "id": "347725", + "ident": "65AL", + "type": "heliport", + "name": "Sheriff's Training Center Heliport", + "latitude_deg": "33.601944", + "longitude_deg": "-86.863611", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fultondale", + "scheduled_service": "no", + "gps_code": "65AL", + "local_code": "65AL" + }, + { + "id": "12979", + "ident": "65AR", + "type": "small_airport", + "name": "Bernard Manor Airport", + "latitude_deg": "35.225534", + "longitude_deg": "-90.465343", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Earle", + "scheduled_service": "no", + "gps_code": "65AR", + "local_code": "65AR" + }, + { + "id": "12980", + "ident": "65AZ", + "type": "heliport", + "name": "Carondelet St Mary's Hospital Helistop", + "latitude_deg": "32.22829", + "longitude_deg": "-110.999385", + "elevation_ft": "2345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no", + "gps_code": "65AZ", + "local_code": "65AZ", + "keywords": "tucson, carondelet, st marys" + }, + { + "id": "12981", + "ident": "65B", + "type": "small_airport", + "name": "Lubec Municipal Airport", + "latitude_deg": "44.83660125732422", + "longitude_deg": "-67.0270004272461", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Lubec", + "scheduled_service": "no", + "gps_code": "65B", + "local_code": "65B" + }, + { + "id": "12982", + "ident": "65CA", + "type": "heliport", + "name": "SCE San Joaquin Heliport", + "latitude_deg": "36.18299", + "longitude_deg": "-119.333578", + "elevation_ft": "279", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tulare", + "scheduled_service": "no", + "gps_code": "65CA", + "local_code": "65CA" + }, + { + "id": "12983", + "ident": "65CL", + "type": "small_airport", + "name": "Al Divine Airport", + "latitude_deg": "36.514400482177734", + "longitude_deg": "-119.76399993896484", + "elevation_ft": "252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Caruthers", + "scheduled_service": "no", + "gps_code": "65CL", + "local_code": "65CL" + }, + { + "id": "12984", + "ident": "65CN", + "type": "small_airport", + "name": "Bottimore Ranch Airport", + "latitude_deg": "38.3041", + "longitude_deg": "-121.250999", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Herald", + "scheduled_service": "no", + "gps_code": "65CN", + "local_code": "65CN", + "keywords": "03Q" + }, + { + "id": "12985", + "ident": "65CO", + "type": "small_airport", + "name": "Wkr Airport", + "latitude_deg": "40.52080154418945", + "longitude_deg": "-104.96700286865234", + "elevation_ft": "4840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Fort Collins", + "scheduled_service": "no", + "gps_code": "65CO", + "local_code": "65CO" + }, + { + "id": "322640", + "ident": "65FA", + "type": "heliport", + "name": "Physicians Regional Medical Center Heliport", + "latitude_deg": "26.2143889", + "longitude_deg": "-81.7316556", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Naples", + "scheduled_service": "no", + "gps_code": "65FA", + "local_code": "65FA" + }, + { + "id": "12986", + "ident": "65FD", + "type": "heliport", + "name": "Yellow Whirley Bird Heliport", + "latitude_deg": "30.198345", + "longitude_deg": "-85.828555", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City Beach", + "scheduled_service": "no", + "gps_code": "65FD", + "local_code": "65FD" + }, + { + "id": "12987", + "ident": "65FL", + "type": "heliport", + "name": "Floridian National Golf Club, LLC Heliport", + "latitude_deg": "27.208599", + "longitude_deg": "-80.291398", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Stuart", + "scheduled_service": "no", + "gps_code": "65FL", + "local_code": "65FL", + "keywords": "Harbor Links Yacht & Country Club Heliport" + }, + { + "id": "12988", + "ident": "65G", + "type": "small_airport", + "name": "Maple Grove Airport", + "latitude_deg": "42.71730041503906", + "longitude_deg": "-84.0625", + "elevation_ft": "908", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Fowlerville", + "scheduled_service": "no", + "gps_code": "65G", + "local_code": "65G" + }, + { + "id": "12989", + "ident": "65GA", + "type": "closed", + "name": "Morris Army Airfield", + "latitude_deg": "33.615002", + "longitude_deg": "-84.346389", + "elevation_ft": "966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fort Gillem", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Morris_Army_Airfield", + "keywords": "FOP, 65GA" + }, + { + "id": "12990", + "ident": "65IL", + "type": "closed", + "name": "Far Field", + "latitude_deg": "42.200904", + "longitude_deg": "-88.622299", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Marengo", + "scheduled_service": "no", + "keywords": "65IL" + }, + { + "id": "12991", + "ident": "65IN", + "type": "heliport", + "name": "Wells County Sheriff's Department Heliport", + "latitude_deg": "40.7338981628418", + "longitude_deg": "-85.19609832763672", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bluffton", + "scheduled_service": "no", + "gps_code": "65IN", + "local_code": "65IN" + }, + { + "id": "12992", + "ident": "65IS", + "type": "small_airport", + "name": "Frings Airport", + "latitude_deg": "41.02389907836914", + "longitude_deg": "-88.98370361328125", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Leeds", + "scheduled_service": "no", + "gps_code": "65IS", + "local_code": "65IS" + }, + { + "id": "12993", + "ident": "65KS", + "type": "small_airport", + "name": "Griffith Field", + "latitude_deg": "39.507833", + "longitude_deg": "-98.586167", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Downs", + "scheduled_service": "no", + "gps_code": "65KS", + "local_code": "65KS" + }, + { + "id": "12994", + "ident": "65KY", + "type": "heliport", + "name": "Middlesboro ARH Hospital Heliport", + "latitude_deg": "36.605721", + "longitude_deg": "-83.739415", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Middlesboro", + "scheduled_service": "no", + "gps_code": "65KY", + "local_code": "65KY" + }, + { + "id": "12995", + "ident": "65LA", + "type": "small_airport", + "name": "Southern Seaplane Airport", + "latitude_deg": "29.866078", + "longitude_deg": "-90.021608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Belle Chasse", + "scheduled_service": "no", + "gps_code": "65LA", + "iata_code": "BCS", + "local_code": "65LA", + "home_link": "http://southernseaplane.com/cms/?page_id=460", + "wikipedia_link": "https://en.wikipedia.org/wiki/Southern_Seaplane_Airport" + }, + { + "id": "45474", + "ident": "65MI", + "type": "heliport", + "name": "Jet Pad Heliport", + "latitude_deg": "42.680351", + "longitude_deg": "-84.527092", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lansing", + "scheduled_service": "no", + "gps_code": "65MI", + "local_code": "65MI" + }, + { + "id": "12996", + "ident": "65MN", + "type": "small_airport", + "name": "Ricks Field", + "latitude_deg": "45.9640998840332", + "longitude_deg": "-96.1498031616211", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Wendell", + "scheduled_service": "no", + "gps_code": "65MN", + "local_code": "65MN" + }, + { + "id": "12997", + "ident": "65MO", + "type": "heliport", + "name": "Deaconess Hospital Heliport", + "latitude_deg": "38.629798889160156", + "longitude_deg": "-90.28820037841797", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no", + "gps_code": "65MO", + "local_code": "65MO" + }, + { + "id": "350185", + "ident": "65MS", + "type": "small_airport", + "name": "Maverick Hill Airport", + "latitude_deg": "34.564694", + "longitude_deg": "-89.884056", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Senatobia", + "scheduled_service": "no", + "gps_code": "65MS", + "local_code": "65MS" + }, + { + "id": "12998", + "ident": "65NC", + "type": "heliport", + "name": "Scenic Overlook B & B Heliport", + "latitude_deg": "36.34830093383789", + "longitude_deg": "-80.4542007446289", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Pilot Mountain", + "scheduled_service": "no", + "gps_code": "65NC", + "local_code": "65NC" + }, + { + "id": "325845", + "ident": "65NH", + "type": "heliport", + "name": "Tucker Farm Heliport", + "latitude_deg": "43.208861", + "longitude_deg": "-71.916305", + "elevation_ft": "1623", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Bradford", + "scheduled_service": "no", + "gps_code": "65NH", + "local_code": "65NH" + }, + { + "id": "12999", + "ident": "65NJ", + "type": "closed", + "name": "Triangle Heliport", + "latitude_deg": "40.4682", + "longitude_deg": "-74.4668", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "New Brunswick", + "scheduled_service": "no", + "keywords": "65NJ" + }, + { + "id": "13000", + "ident": "65NM", + "type": "small_airport", + "name": "Curtis and Curtis Airport", + "latitude_deg": "34.728528", + "longitude_deg": "-103.604679", + "elevation_ft": "4691", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Forrest", + "scheduled_service": "no", + "gps_code": "65NM", + "local_code": "65NM" + }, + { + "id": "13001", + "ident": "65NY", + "type": "small_airport", + "name": "Chautauqua Lake Airpark", + "latitude_deg": "42.28390121459961", + "longitude_deg": "-79.44390106201172", + "elevation_ft": "1655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Mayville", + "scheduled_service": "no", + "gps_code": "65NY", + "local_code": "65NY" + }, + { + "id": "13002", + "ident": "65OH", + "type": "small_airport", + "name": "Wiita Farms Airport", + "latitude_deg": "41.07170104980469", + "longitude_deg": "-81.7511978149414", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Sharon Center", + "scheduled_service": "no", + "gps_code": "65OH", + "local_code": "65OH" + }, + { + "id": "13003", + "ident": "65OI", + "type": "heliport", + "name": "Bass Heliport", + "latitude_deg": "41.54669952392578", + "longitude_deg": "-81.22589874267578", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Chardon", + "scheduled_service": "no", + "gps_code": "65OI", + "local_code": "65OI" + }, + { + "id": "13004", + "ident": "65OK", + "type": "heliport", + "name": "Lakemont Shores Heliport", + "latitude_deg": "36.46670150756836", + "longitude_deg": "-94.90019989013672", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Disney", + "scheduled_service": "no", + "gps_code": "65OK", + "local_code": "65OK" + }, + { + "id": "13005", + "ident": "65OR", + "type": "heliport", + "name": "Timberland Shop Heliport", + "latitude_deg": "42.20539855957031", + "longitude_deg": "-122.63400268554688", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "65OR", + "local_code": "65OR" + }, + { + "id": "13006", + "ident": "65PA", + "type": "small_airport", + "name": "Cherry Valley Airport", + "latitude_deg": "40.89590072631836", + "longitude_deg": "-75.29630279541016", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Saylorsburg", + "scheduled_service": "no", + "gps_code": "65PA", + "local_code": "65PA" + }, + { + "id": "13007", + "ident": "65TA", + "type": "closed", + "name": "Flying C Ranch Airport", + "latitude_deg": "30.3433", + "longitude_deg": "-96.307198", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Independence", + "scheduled_service": "no", + "keywords": "65TA" + }, + { + "id": "13008", + "ident": "65TE", + "type": "small_airport", + "name": "Windwood Farm Airport", + "latitude_deg": "33.568167", + "longitude_deg": "-96.397167", + "elevation_ft": "778", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bells", + "scheduled_service": "no", + "gps_code": "65TE", + "local_code": "65TE" + }, + { + "id": "13009", + "ident": "65TN", + "type": "small_airport", + "name": "Roach Farm Airport", + "latitude_deg": "36.33420181274414", + "longitude_deg": "-82.66169738769531", + "elevation_ft": "1750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Fall Branch", + "scheduled_service": "no", + "gps_code": "65TN", + "local_code": "65TN" + }, + { + "id": "13010", + "ident": "65TS", + "type": "closed", + "name": "Becker Airport", + "latitude_deg": "33.402301", + "longitude_deg": "-97.670898", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alvord", + "scheduled_service": "no", + "keywords": "65TS" + }, + { + "id": "344949", + "ident": "65TT", + "type": "heliport", + "name": "Air Evac 65 Heliport", + "latitude_deg": "33.709334", + "longitude_deg": "-96.583793", + "elevation_ft": "678", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Denison", + "scheduled_service": "no", + "gps_code": "65TT", + "local_code": "65TT" + }, + { + "id": "45818", + "ident": "65TX", + "type": "small_airport", + "name": "Flying Eagle Ranch Airport", + "latitude_deg": "31.775133", + "longitude_deg": "-105.431317", + "elevation_ft": "4300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Salt Flat", + "scheduled_service": "no", + "gps_code": "65TX", + "local_code": "65TX" + }, + { + "id": "13011", + "ident": "65VA", + "type": "closed", + "name": "National Hospital for Orthopaedics and Rehabilitation Heliport", + "latitude_deg": "38.848148", + "longitude_deg": "-77.077272", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Arlington", + "scheduled_service": "no", + "keywords": "65VA" + }, + { + "id": "13012", + "ident": "65WA", + "type": "small_airport", + "name": "Wissler's Airport", + "latitude_deg": "46.84040069580078", + "longitude_deg": "-122.91600036621094", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tenino", + "scheduled_service": "no", + "gps_code": "65WA", + "local_code": "65WA" + }, + { + "id": "13013", + "ident": "65WI", + "type": "closed", + "name": "Dulmes Field", + "latitude_deg": "43.619202", + "longitude_deg": "-87.821999", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Oostburg", + "scheduled_service": "no", + "keywords": "65WI" + }, + { + "id": "13014", + "ident": "65WN", + "type": "small_airport", + "name": "Whoopy Hollow Aerodrome", + "latitude_deg": "42.67639923095703", + "longitude_deg": "-89.93800354003906", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wiota", + "scheduled_service": "no", + "gps_code": "65WN", + "local_code": "65WN" + }, + { + "id": "353857", + "ident": "65XA", + "type": "small_airport", + "name": "Barnes Air Field", + "latitude_deg": "30.903575", + "longitude_deg": "-94.695836", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Barnes", + "scheduled_service": "no", + "gps_code": "65XA", + "local_code": "65XA" + }, + { + "id": "13015", + "ident": "65XS", + "type": "small_airport", + "name": "Birdnest Airport", + "latitude_deg": "32.223201751708984", + "longitude_deg": "-97.28170013427734", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Parker", + "scheduled_service": "no", + "gps_code": "65XS", + "local_code": "65XS" + }, + { + "id": "45253", + "ident": "66AK", + "type": "seaplane_base", + "name": "June Lake Seaplane Base", + "latitude_deg": "61.63", + "longitude_deg": "-149.569167", + "elevation_ft": "406", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "66AK", + "local_code": "66AK" + }, + { + "id": "13016", + "ident": "66AZ", + "type": "heliport", + "name": "Banner Desert Medical Center Heliport", + "latitude_deg": "33.3922996521", + "longitude_deg": "-111.876998901", + "elevation_ft": "1199", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no", + "gps_code": "66AZ", + "local_code": "66AZ" + }, + { + "id": "13017", + "ident": "66B", + "type": "small_airport", + "name": "Gillespie Field", + "latitude_deg": "45.029622", + "longitude_deg": "-67.365967", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Meddybemps", + "scheduled_service": "no", + "local_code": "66B" + }, + { + "id": "13018", + "ident": "66CA", + "type": "small_airport", + "name": "Rancho San Simeon Airport", + "latitude_deg": "35.60770034790039", + "longitude_deg": "-121.11000061035156", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Cambria", + "scheduled_service": "no", + "gps_code": "66CA", + "local_code": "66CA" + }, + { + "id": "13019", + "ident": "66CL", + "type": "closed", + "name": "Triangle T Ranch Airport", + "latitude_deg": "36.9986", + "longitude_deg": "-120.464996", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chowchilla", + "scheduled_service": "no", + "keywords": "66CL" + }, + { + "id": "13020", + "ident": "66CN", + "type": "heliport", + "name": "Northrop Palos Verdes Heliport", + "latitude_deg": "33.76060104370117", + "longitude_deg": "-118.38800048828125", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palos Verdes", + "scheduled_service": "no", + "gps_code": "66CN", + "local_code": "66CN" + }, + { + "id": "13021", + "ident": "66CO", + "type": "heliport", + "name": "Rotor Leasing Heliport", + "latitude_deg": "39.09080123901367", + "longitude_deg": "-104.54399871826172", + "elevation_ft": "7260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Elbert", + "scheduled_service": "no", + "gps_code": "66CO", + "local_code": "66CO" + }, + { + "id": "13022", + "ident": "66FD", + "type": "small_airport", + "name": "JR's STOLport", + "latitude_deg": "29.004012", + "longitude_deg": "-82.554531", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Dunnellon", + "scheduled_service": "no", + "gps_code": "66FD", + "local_code": "66FD" + }, + { + "id": "13023", + "ident": "66FL", + "type": "heliport", + "name": "Va Outpatient Clinic Heliport", + "latitude_deg": "28.25469970703125", + "longitude_deg": "-80.743896484375", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Melbourne", + "scheduled_service": "no", + "gps_code": "66FL", + "local_code": "66FL" + }, + { + "id": "13024", + "ident": "66G", + "type": "small_airport", + "name": "WM Tiny Zehnder Field", + "latitude_deg": "43.314364", + "longitude_deg": "-83.710055", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Frankenmuth", + "scheduled_service": "no", + "local_code": "66G" + }, + { + "id": "46000", + "ident": "66GA", + "type": "small_airport", + "name": "Sawyer Farm Airport", + "latitude_deg": "31.474722", + "longitude_deg": "-85.002778", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Blakely", + "scheduled_service": "no", + "gps_code": "66GA", + "local_code": "66GA", + "keywords": "66GA" + }, + { + "id": "13026", + "ident": "66II", + "type": "small_airport", + "name": "Pat Robinson Airport", + "latitude_deg": "40.042198181152344", + "longitude_deg": "-85.86530303955078", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lapel", + "scheduled_service": "no", + "gps_code": "66II", + "local_code": "66II" + }, + { + "id": "13027", + "ident": "66IL", + "type": "small_airport", + "name": "Aerogrange Airport", + "latitude_deg": "42.26919937133789", + "longitude_deg": "-88.57119750976562", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Marengo", + "scheduled_service": "no", + "gps_code": "66IL", + "local_code": "66IL" + }, + { + "id": "13028", + "ident": "66IN", + "type": "small_airport", + "name": "Oakes Field", + "latitude_deg": "39.787498474121094", + "longitude_deg": "-85.63690185546875", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Charlottesville", + "scheduled_service": "no", + "gps_code": "66IN", + "local_code": "66IN" + }, + { + "id": "13029", + "ident": "66IS", + "type": "closed", + "name": "Corporetum Office Campus Heliport", + "latitude_deg": "41.8106", + "longitude_deg": "-88.075104", + "elevation_ft": "714", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lisle", + "scheduled_service": "no", + "keywords": "66IS" + }, + { + "id": "13030", + "ident": "66KS", + "type": "small_airport", + "name": "Patterson Farms Airport", + "latitude_deg": "37.16389846801758", + "longitude_deg": "-95.87220001220703", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Independence", + "scheduled_service": "no", + "gps_code": "66KS", + "local_code": "66KS" + }, + { + "id": "13031", + "ident": "66KY", + "type": "small_airport", + "name": "Mc Grew Airport", + "latitude_deg": "37.507598877", + "longitude_deg": "-86.2054977417", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Clarkson", + "scheduled_service": "no", + "gps_code": "66KY", + "local_code": "66KY" + }, + { + "id": "13032", + "ident": "66LA", + "type": "small_airport", + "name": "Schexnayder Airport", + "latitude_deg": "30.510499954223633", + "longitude_deg": "-91.39230346679688", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Erwinville", + "scheduled_service": "no", + "gps_code": "66LA", + "local_code": "66LA" + }, + { + "id": "13033", + "ident": "66MI", + "type": "small_airport", + "name": "East Lake Airport", + "latitude_deg": "42.22840118408203", + "longitude_deg": "-85.4843978881836", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Kalamazoo", + "scheduled_service": "no", + "gps_code": "66MI", + "local_code": "66MI" + }, + { + "id": "13034", + "ident": "66MN", + "type": "small_airport", + "name": "Howard's Airport", + "latitude_deg": "44.97719955444336", + "longitude_deg": "-95.42279815673828", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Clara City", + "scheduled_service": "no", + "gps_code": "66MN", + "local_code": "66MN" + }, + { + "id": "13035", + "ident": "66MO", + "type": "small_airport", + "name": "Ahlers Acres Airport", + "latitude_deg": "38.832000732421875", + "longitude_deg": "-90.95120239257812", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Foristell", + "scheduled_service": "no", + "gps_code": "66MO", + "local_code": "66MO" + }, + { + "id": "13036", + "ident": "66NC", + "type": "small_airport", + "name": "Hood Field", + "latitude_deg": "35.174400329589844", + "longitude_deg": "-77.48359680175781", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Dover", + "scheduled_service": "no", + "gps_code": "66NC", + "local_code": "66NC" + }, + { + "id": "322234", + "ident": "66NE", + "type": "small_airport", + "name": "Cornelius Farm Airport", + "latitude_deg": "40.92915", + "longitude_deg": "-101.603794", + "elevation_ft": "3415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Madrid", + "scheduled_service": "no", + "gps_code": "66NE", + "local_code": "66NE" + }, + { + "id": "13037", + "ident": "66NJ", + "type": "heliport", + "name": "Forked River Heliport", + "latitude_deg": "39.83980178833008", + "longitude_deg": "-74.17759704589844", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Forked River", + "scheduled_service": "no", + "gps_code": "66NJ", + "local_code": "66NJ" + }, + { + "id": "13038", + "ident": "66NY", + "type": "small_airport", + "name": "Maple Ridge Airport", + "latitude_deg": "43.20280075073242", + "longitude_deg": "-78.35389709472656", + "elevation_ft": "646", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Medina", + "scheduled_service": "no", + "gps_code": "66NY", + "local_code": "66NY" + }, + { + "id": "13039", + "ident": "66OH", + "type": "closed", + "name": "Medical Center South Heliport", + "latitude_deg": "41.314499", + "longitude_deg": "-81.670998", + "elevation_ft": "1205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Broadview Heights", + "scheduled_service": "no", + "keywords": "66OH" + }, + { + "id": "13040", + "ident": "66OI", + "type": "small_airport", + "name": "Gorman-Freeman Airport", + "latitude_deg": "40.7813987732", + "longitude_deg": "-82.0557022095", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wooster", + "scheduled_service": "no", + "gps_code": "66OI", + "local_code": "66OI" + }, + { + "id": "13041", + "ident": "66OK", + "type": "small_airport", + "name": "Mc Laughlin Farm Airport", + "latitude_deg": "34.0890007019", + "longitude_deg": "-96.4216995239", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Durant", + "scheduled_service": "no", + "gps_code": "66OK", + "local_code": "66OK" + }, + { + "id": "13042", + "ident": "66OR", + "type": "closed", + "name": "Winston-Dillard Fire District Station Nr 2 Heliport", + "latitude_deg": "43.0984", + "longitude_deg": "-123.428001", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Dillard", + "scheduled_service": "no", + "gps_code": "66OR", + "local_code": "66OR" + }, + { + "id": "13043", + "ident": "66PA", + "type": "heliport", + "name": "Williamsport Hospital & Medical Center Heliport", + "latitude_deg": "41.24729919433594", + "longitude_deg": "-77.01580047607422", + "elevation_ft": "594", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Williamsport", + "scheduled_service": "no", + "gps_code": "66PA", + "local_code": "66PA" + }, + { + "id": "13044", + "ident": "66S", + "type": "small_airport", + "name": "Cavanaugh Bay Airport", + "latitude_deg": "48.518168", + "longitude_deg": "-116.822047", + "elevation_ft": "2484", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Coolin", + "scheduled_service": "no", + "local_code": "66S" + }, + { + "id": "336197", + "ident": "66SC", + "type": "small_airport", + "name": "The Flying Few Airport", + "latitude_deg": "35.034057", + "longitude_deg": "-82.298508", + "elevation_ft": "1001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Greer", + "scheduled_service": "no", + "gps_code": "66SC", + "local_code": "66SC" + }, + { + "id": "13045", + "ident": "66TA", + "type": "heliport", + "name": "Bradair Heliport", + "latitude_deg": "29.590499877929688", + "longitude_deg": "-95.28299713134766", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pearland", + "scheduled_service": "no", + "gps_code": "66TA", + "local_code": "66TA" + }, + { + "id": "13046", + "ident": "66TE", + "type": "small_airport", + "name": "The Landings Airport", + "latitude_deg": "32.365267", + "longitude_deg": "-97.644989", + "elevation_ft": "684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Granbury", + "scheduled_service": "no", + "gps_code": "66TE", + "local_code": "66TE" + }, + { + "id": "332781", + "ident": "66TN", + "type": "small_airport", + "name": "Basham Field", + "latitude_deg": "35.523383", + "longitude_deg": "-85.846472", + "elevation_ft": "1099", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Morrison", + "scheduled_service": "no", + "gps_code": "66TN", + "local_code": "66TN" + }, + { + "id": "13047", + "ident": "66TS", + "type": "heliport", + "name": "Khou-Tv Heliport", + "latitude_deg": "29.760499954223633", + "longitude_deg": "-95.38739776611328", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "66TS", + "local_code": "66TS" + }, + { + "id": "13048", + "ident": "66TX", + "type": "small_airport", + "name": "Loma de Cometa Airport", + "latitude_deg": "28.674972", + "longitude_deg": "-100.023234", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crystal City", + "scheduled_service": "no", + "gps_code": "66TX", + "local_code": "66TX", + "keywords": "Rockin Ranch" + }, + { + "id": "13049", + "ident": "66VA", + "type": "heliport", + "name": "Ibm Building 110 Heliport", + "latitude_deg": "38.753700256347656", + "longitude_deg": "-77.49749755859375", + "elevation_ft": "241", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Manassas", + "scheduled_service": "no", + "gps_code": "66VA", + "local_code": "66VA" + }, + { + "id": "322652", + "ident": "66VG", + "type": "heliport", + "name": "Bon Secours Mercy Health Petersburg LLC Heliport", + "latitude_deg": "37.182166", + "longitude_deg": "-77.360722", + "elevation_ft": "162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Petersburg", + "scheduled_service": "no", + "gps_code": "66VG", + "local_code": "66VG", + "keywords": "Southside Regional Medical Center" + }, + { + "id": "324492", + "ident": "66VT", + "type": "small_airport", + "name": "Symon Airport", + "latitude_deg": "43.882785", + "longitude_deg": "-73.2862", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Shoreham", + "scheduled_service": "no", + "gps_code": "66VT", + "local_code": "66VT" + }, + { + "id": "13050", + "ident": "66WA", + "type": "small_airport", + "name": "Trout Lake Airport", + "latitude_deg": "46.00230026245117", + "longitude_deg": "-121.52300262451172", + "elevation_ft": "1914", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Trout Lake", + "scheduled_service": "no", + "gps_code": "66WA", + "local_code": "66WA" + }, + { + "id": "13051", + "ident": "66WI", + "type": "small_airport", + "name": "J-3 Cub Field", + "latitude_deg": "43.07749938964844", + "longitude_deg": "-88.66290283203125", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Watertown", + "scheduled_service": "no", + "gps_code": "66WI", + "local_code": "66WI" + }, + { + "id": "13052", + "ident": "66XS", + "type": "small_airport", + "name": "Baylie Airport", + "latitude_deg": "33.39649963378906", + "longitude_deg": "-96.48860168457031", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Westminster", + "scheduled_service": "no", + "gps_code": "66XS", + "local_code": "66XS" + }, + { + "id": "13053", + "ident": "67AK", + "type": "small_airport", + "name": "South Hollywood Airport", + "latitude_deg": "61.53459930419922", + "longitude_deg": "-149.6699981689453", + "elevation_ft": "375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "67AK", + "local_code": "67AK" + }, + { + "id": "13054", + "ident": "67AR", + "type": "small_airport", + "name": "Wedington Woods Airport", + "latitude_deg": "36.0978012085", + "longitude_deg": "-94.3075027466", + "elevation_ft": "1090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "67AR", + "local_code": "67AR" + }, + { + "id": "13055", + "ident": "67AZ", + "type": "closed", + "name": "Good Samaritan Hospital Heliport", + "latitude_deg": "33.465", + "longitude_deg": "-112.059998", + "elevation_ft": "1139", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "67AZ", + "local_code": "67AZ" + }, + { + "id": "13056", + "ident": "67CA", + "type": "small_airport", + "name": "Chapman Farms Airport", + "latitude_deg": "37.072491", + "longitude_deg": "-120.376215", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chowchilla", + "scheduled_service": "no", + "gps_code": "67CA", + "local_code": "67CA" + }, + { + "id": "13057", + "ident": "67CL", + "type": "small_airport", + "name": "Davis Airport", + "latitude_deg": "39.20100021362305", + "longitude_deg": "-122.04900360107422", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Colusa", + "scheduled_service": "no", + "gps_code": "67CL", + "local_code": "67CL" + }, + { + "id": "13058", + "ident": "67CN", + "type": "heliport", + "name": "Pacific Gas & Electric Co Camp 5 Heliport", + "latitude_deg": "38.76850128173828", + "longitude_deg": "-120.54900360107422", + "elevation_ft": "3800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Placerville", + "scheduled_service": "no", + "gps_code": "67CN", + "local_code": "67CN" + }, + { + "id": "13059", + "ident": "67CO", + "type": "small_airport", + "name": "Highline Farm Airstrip", + "latitude_deg": "40.46998", + "longitude_deg": "-104.813792", + "elevation_ft": "4745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Bracewell", + "scheduled_service": "no", + "gps_code": "67CO", + "local_code": "67CO" + }, + { + "id": "13060", + "ident": "67D", + "type": "small_airport", + "name": "Reader-Botsford Airport", + "latitude_deg": "41.162601470947266", + "longitude_deg": "-82.20269775390625", + "elevation_ft": "864", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wellington", + "scheduled_service": "no", + "gps_code": "67D", + "local_code": "67D" + }, + { + "id": "13061", + "ident": "67FD", + "type": "heliport", + "name": "Gulf Coast Hospital Heliport", + "latitude_deg": "26.544166666699997", + "longitude_deg": "-81.85", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Myers", + "scheduled_service": "no", + "gps_code": "67FD", + "local_code": "67FD" + }, + { + "id": "13062", + "ident": "67FL", + "type": "small_airport", + "name": "Myakka Head Airport", + "latitude_deg": "27.45560073852539", + "longitude_deg": "-82.1050033569336", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Zolfo Springs", + "scheduled_service": "no", + "gps_code": "67FL", + "local_code": "67FL" + }, + { + "id": "13063", + "ident": "67GA", + "type": "small_airport", + "name": "Apalachee Bluff Airpark", + "latitude_deg": "33.8592987061", + "longitude_deg": "-83.58769989010001", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "67GA", + "local_code": "67GA" + }, + { + "id": "13064", + "ident": "67II", + "type": "small_airport", + "name": "Schoettmer Farm Airport", + "latitude_deg": "39.37139892578125", + "longitude_deg": "-85.59220123291016", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Greensburg", + "scheduled_service": "no", + "gps_code": "67II", + "local_code": "67II" + }, + { + "id": "13065", + "ident": "67IL", + "type": "small_airport", + "name": "Mitchell RLA Restricted Landing Area", + "latitude_deg": "41.3666992188", + "longitude_deg": "-88.650100708", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Marseilles", + "scheduled_service": "no", + "gps_code": "67IL", + "local_code": "67IL" + }, + { + "id": "13066", + "ident": "67IN", + "type": "closed", + "name": "Smitty's Soaring Airport", + "latitude_deg": "41.236401", + "longitude_deg": "-86.5942", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Knox", + "scheduled_service": "no", + "keywords": "67IN" + }, + { + "id": "13067", + "ident": "67IS", + "type": "heliport", + "name": "Wabash General Hospital Heliport", + "latitude_deg": "38.4213981628418", + "longitude_deg": "-87.76950073242188", + "elevation_ft": "469", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mount Carmel", + "scheduled_service": "no", + "gps_code": "67IS", + "local_code": "67IS" + }, + { + "id": "13068", + "ident": "67KS", + "type": "small_airport", + "name": "Montezuma Coop Airport", + "latitude_deg": "37.587501525878906", + "longitude_deg": "-100.43499755859375", + "elevation_ft": "2780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Montezuma", + "scheduled_service": "no", + "gps_code": "67KS", + "local_code": "67KS" + }, + { + "id": "13069", + "ident": "67KY", + "type": "small_airport", + "name": "Estes Airport", + "latitude_deg": "38.9833984375", + "longitude_deg": "-84.66609954833984", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Florence", + "scheduled_service": "no", + "gps_code": "67KY", + "local_code": "67KY" + }, + { + "id": "13070", + "ident": "67LA", + "type": "closed", + "name": "Transcontinental Gas Pipeline Corp Heliport", + "latitude_deg": "30.462999", + "longitude_deg": "-91.113998", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no", + "keywords": "67LA, 07424.25*H" + }, + { + "id": "13071", + "ident": "67LL", + "type": "closed", + "name": "County Poor Farm Airport", + "latitude_deg": "41.990299", + "longitude_deg": "-89.331497", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Oregon", + "scheduled_service": "no", + "keywords": "67LL" + }, + { + "id": "45452", + "ident": "67ME", + "type": "heliport", + "name": "Station-Kel Heliport", + "latitude_deg": "43.722825", + "longitude_deg": "-70.346667", + "elevation_ft": "246", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Westbrook", + "scheduled_service": "no", + "gps_code": "67ME", + "local_code": "67ME" + }, + { + "id": "334273", + "ident": "67MI", + "type": "small_airport", + "name": "Pinelli Airport", + "latitude_deg": "41.997875", + "longitude_deg": "-85.853483", + "elevation_ft": "921", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Marcellus", + "scheduled_service": "no", + "gps_code": "67MI", + "local_code": "67MI", + "keywords": "Keenum Aerodrome" + }, + { + "id": "13072", + "ident": "67MN", + "type": "small_airport", + "name": "Pagel's Field", + "latitude_deg": "45.201900482177734", + "longitude_deg": "-94.80110168457031", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Atwater", + "scheduled_service": "no", + "gps_code": "67MN", + "local_code": "67MN" + }, + { + "id": "13073", + "ident": "67MO", + "type": "small_airport", + "name": "Ski Harbor Airport", + "latitude_deg": "37.8109016418457", + "longitude_deg": "-93.36990356445312", + "elevation_ft": "906", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Pittsburg", + "scheduled_service": "no", + "gps_code": "67MO", + "local_code": "67MO" + }, + { + "id": "352252", + "ident": "67MU", + "type": "small_airport", + "name": "Air Cover Airport", + "latitude_deg": "39.45416", + "longitude_deg": "-91.395919", + "elevation_ft": "744", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Frankford", + "scheduled_service": "no", + "gps_code": "67MU", + "local_code": "67MU" + }, + { + "id": "335785", + "ident": "67NC", + "type": "heliport", + "name": "Carolinas ContinueCARE Hospital at Pineville Heliport", + "latitude_deg": "35.093333", + "longitude_deg": "-80.872944", + "elevation_ft": "628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Charlotte", + "scheduled_service": "no", + "gps_code": "67NC", + "local_code": "67NC", + "keywords": "Atrium Health Pineville Heliport, CHS-Pineville Heliport" + }, + { + "id": "13075", + "ident": "67ND", + "type": "small_airport", + "name": "Waldie Farms Airport", + "latitude_deg": "46.54330062866211", + "longitude_deg": "-98.3823013305664", + "elevation_ft": "1456", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "67ND", + "local_code": "67ND" + }, + { + "id": "13076", + "ident": "67NE", + "type": "small_airport", + "name": "L J Bose Airstrip", + "latitude_deg": "40.137001037597656", + "longitude_deg": "-99.49839782714844", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Orleans", + "scheduled_service": "no", + "gps_code": "67NE", + "local_code": "67NE" + }, + { + "id": "13077", + "ident": "67NJ", + "type": "small_airport", + "name": "Mount Pleasant Landing Strip", + "latitude_deg": "40.969799", + "longitude_deg": "-75.066803", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "67NJ", + "local_code": "67NJ" + }, + { + "id": "13078", + "ident": "67NY", + "type": "closed", + "name": "Ultralight Port Ultralightport", + "latitude_deg": "42.293098", + "longitude_deg": "-78.790001", + "elevation_ft": "1860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Little Valley", + "scheduled_service": "no", + "keywords": "67NY" + }, + { + "id": "45727", + "ident": "67OG", + "type": "small_airport", + "name": "George Airport", + "latitude_deg": "45.031389", + "longitude_deg": "-123.406111", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sheridan", + "scheduled_service": "no", + "gps_code": "67OG", + "local_code": "67OG" + }, + { + "id": "13079", + "ident": "67OH", + "type": "small_airport", + "name": "Harper Ridge Airport", + "latitude_deg": "41.413508", + "longitude_deg": "-81.452607", + "elevation_ft": "1235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Solon", + "scheduled_service": "no", + "gps_code": "67OH", + "local_code": "67OH" + }, + { + "id": "13080", + "ident": "67OI", + "type": "heliport", + "name": "Northside & Tod Children's Hospital Heliport", + "latitude_deg": "41.09920120239258", + "longitude_deg": "-80.65039825439453", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Youngstown", + "scheduled_service": "no", + "gps_code": "67OI", + "local_code": "67OI" + }, + { + "id": "13081", + "ident": "67OK", + "type": "small_airport", + "name": "Flying J Ranch Airport", + "latitude_deg": "36.03310012817383", + "longitude_deg": "-95.0780029296875", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Peggs", + "scheduled_service": "no", + "gps_code": "67OK", + "local_code": "67OK" + }, + { + "id": "13082", + "ident": "67OR", + "type": "small_airport", + "name": "Mc Gee Airport", + "latitude_deg": "45.2336997986", + "longitude_deg": "-122.856002808", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Donald", + "scheduled_service": "no", + "gps_code": "67OR", + "local_code": "67OR" + }, + { + "id": "13083", + "ident": "67PA", + "type": "heliport", + "name": "West Company Heliport", + "latitude_deg": "41.16669845581055", + "longitude_deg": "-76.91639709472656", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Williamsport", + "scheduled_service": "no", + "gps_code": "67PA", + "local_code": "67PA" + }, + { + "id": "13084", + "ident": "67PN", + "type": "small_airport", + "name": "Masser Field", + "latitude_deg": "40.633399963378906", + "longitude_deg": "-76.5969009399414", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Sacramento", + "scheduled_service": "no", + "gps_code": "67PN", + "local_code": "67PN" + }, + { + "id": "13085", + "ident": "67S", + "type": "small_airport", + "name": "Priest Lake Usfs Airport", + "latitude_deg": "48.57490158081055", + "longitude_deg": "-116.96399688720703", + "elevation_ft": "2611", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Nordman", + "scheduled_service": "no", + "gps_code": "67S", + "local_code": "67S" + }, + { + "id": "330157", + "ident": "67SC", + "type": "small_airport", + "name": "Lanes Landing", + "latitude_deg": "32.948217", + "longitude_deg": "-80.7663", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Ruffin", + "scheduled_service": "no", + "gps_code": "67SC", + "local_code": "67SC" + }, + { + "id": "13086", + "ident": "67TA", + "type": "closed", + "name": "Tips Jewels Heliport", + "latitude_deg": "29.656099", + "longitude_deg": "-98.455299", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bulverde", + "scheduled_service": "no", + "keywords": "67TA" + }, + { + "id": "13087", + "ident": "67TE", + "type": "small_airport", + "name": "Fisher Ranch Airport", + "latitude_deg": "30.9496", + "longitude_deg": "-97.7967", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Killeen", + "scheduled_service": "no", + "gps_code": "67TE", + "local_code": "67TE" + }, + { + "id": "13088", + "ident": "67TS", + "type": "heliport", + "name": "Aldine Heliport", + "latitude_deg": "29.92823", + "longitude_deg": "-95.35495", + "elevation_ft": "88", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "67TS", + "local_code": "67TS" + }, + { + "id": "13089", + "ident": "67TX", + "type": "small_airport", + "name": "Old Hoppe Place Airport", + "latitude_deg": "27.800300598145", + "longitude_deg": "-97.851196289062", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Agua Dulce", + "scheduled_service": "no", + "gps_code": "67T", + "local_code": "67T", + "keywords": "67TX" + }, + { + "id": "13090", + "ident": "67VA", + "type": "closed", + "name": "Karmy's Airport", + "latitude_deg": "38.837601", + "longitude_deg": "-78.5195", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Woodstock", + "scheduled_service": "no", + "keywords": "67VA" + }, + { + "id": "329830", + "ident": "67VT", + "type": "heliport", + "name": "Fletcher Allen Health Care Heliport", + "latitude_deg": "44.4733367", + "longitude_deg": "-73.1888", + "elevation_ft": "336", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "67VT", + "local_code": "67VT" + }, + { + "id": "13091", + "ident": "67WA", + "type": "small_airport", + "name": "Page Airport", + "latitude_deg": "46.016842", + "longitude_deg": "-118.368383", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Walla Walla", + "scheduled_service": "no", + "gps_code": "WA10", + "local_code": "WA10", + "keywords": "67WA, 9W2" + }, + { + "id": "13092", + "ident": "67WI", + "type": "small_airport", + "name": "Accurate Airport", + "latitude_deg": "43.971099853515625", + "longitude_deg": "-89.99710083007812", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Necedah", + "scheduled_service": "no", + "gps_code": "67WI", + "local_code": "67WI" + }, + { + "id": "45826", + "ident": "67XS", + "type": "heliport", + "name": "Knapp Medical Center Heliport", + "latitude_deg": "26.152597", + "longitude_deg": "-97.980001", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weslaco", + "scheduled_service": "no", + "gps_code": "67XS", + "local_code": "67XS" + }, + { + "id": "13093", + "ident": "68A", + "type": "seaplane_base", + "name": "Wrangell Seaplane Base", + "latitude_deg": "56.46630096435547", + "longitude_deg": "-132.3800048828125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wrangell", + "scheduled_service": "no", + "gps_code": "68A", + "local_code": "68A" + }, + { + "id": "13094", + "ident": "68AK", + "type": "heliport", + "name": "Cowell's Heliport", + "latitude_deg": "61.5166015625", + "longitude_deg": "-149.93099975585938", + "elevation_ft": "142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "68AK", + "local_code": "68AK" + }, + { + "id": "318196", + "ident": "68AL", + "type": "small_airport", + "name": "Heart of Dixie Aero Estates Airport", + "latitude_deg": "31.80866", + "longitude_deg": "-86.524716", + "elevation_ft": "382", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "68AL", + "local_code": "68AL" + }, + { + "id": "328984", + "ident": "68AR", + "type": "small_airport", + "name": "Luginbuel Hee Haw Airport", + "latitude_deg": "35.933573", + "longitude_deg": "-94.415925", + "elevation_ft": "1425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Luginbuel Hee Haw Airport", + "scheduled_service": "no", + "gps_code": "68AR", + "local_code": "68AR" + }, + { + "id": "13095", + "ident": "68AZ", + "type": "small_airport", + "name": "Music Mountain Air Ranch Airport", + "latitude_deg": "35.475101470947266", + "longitude_deg": "-113.76899719238281", + "elevation_ft": "3450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Hackberry", + "scheduled_service": "no", + "gps_code": "68AZ", + "local_code": "68AZ" + }, + { + "id": "13096", + "ident": "68C", + "type": "small_airport", + "name": "Central County Airport", + "latitude_deg": "44.50550079345703", + "longitude_deg": "-89.02510070800781", + "elevation_ft": "876", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Iola", + "scheduled_service": "no", + "gps_code": "68C", + "local_code": "68C" + }, + { + "id": "13097", + "ident": "68CA", + "type": "small_airport", + "name": "Lake California Air Park", + "latitude_deg": "40.36109924316406", + "longitude_deg": "-122.21600341796875", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Cottonwood", + "scheduled_service": "no", + "gps_code": "68CA", + "local_code": "68CA" + }, + { + "id": "13098", + "ident": "68CL", + "type": "closed", + "name": "El Rico Airport", + "latitude_deg": "36.042542", + "longitude_deg": "-119.64622", + "elevation_ft": "181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Corcoran", + "scheduled_service": "no", + "keywords": "68CL" + }, + { + "id": "13099", + "ident": "68CN", + "type": "small_airport", + "name": "Porter Ranch Airport", + "latitude_deg": "36.02321", + "longitude_deg": "-118.096418", + "elevation_ft": "6800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Inyokern", + "scheduled_service": "no", + "gps_code": "68CN", + "local_code": "68CN" + }, + { + "id": "13100", + "ident": "68CO", + "type": "small_airport", + "name": "Singleton Ranch Airport", + "latitude_deg": "39.870245", + "longitude_deg": "-104.141246", + "elevation_ft": "4940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Byers", + "scheduled_service": "no", + "gps_code": "68CO", + "local_code": "68CO" + }, + { + "id": "343443", + "ident": "68FA", + "type": "heliport", + "name": "UCF Lake Nona Hospital Heliport", + "latitude_deg": "28.366711", + "longitude_deg": "-81.286742", + "elevation_ft": "87", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "68FA", + "local_code": "68FA" + }, + { + "id": "13101", + "ident": "68FD", + "type": "small_airport", + "name": "Maran Airport", + "latitude_deg": "30.522199630737305", + "longitude_deg": "-85.37670135498047", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fountain", + "scheduled_service": "no", + "gps_code": "68FD", + "local_code": "68FD" + }, + { + "id": "13102", + "ident": "68FL", + "type": "closed", + "name": "EMS Heliport", + "latitude_deg": "28.003098", + "longitude_deg": "-82.429001", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tampa", + "scheduled_service": "no", + "keywords": "68FL" + }, + { + "id": "13103", + "ident": "68G", + "type": "closed", + "name": "Duford Field", + "latitude_deg": "43.125", + "longitude_deg": "-83.626297", + "elevation_ft": "773", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Genesee", + "scheduled_service": "no", + "keywords": "68G" + }, + { + "id": "13104", + "ident": "68GA", + "type": "heliport", + "name": "Calhoun Heliport", + "latitude_deg": "34.004444", + "longitude_deg": "-84.447778", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Marietta", + "scheduled_service": "no", + "gps_code": "68GA", + "local_code": "68GA" + }, + { + "id": "45388", + "ident": "68ID", + "type": "small_airport", + "name": "Rapoport Ranch Airport", + "latitude_deg": "48.25", + "longitude_deg": "-116.466667", + "elevation_ft": "2170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Sandpoint", + "scheduled_service": "no", + "gps_code": "68ID", + "local_code": "68ID" + }, + { + "id": "13105", + "ident": "68II", + "type": "heliport", + "name": "Clinton County Fairgrounds Heliport", + "latitude_deg": "40.26860046386719", + "longitude_deg": "-86.50969696044922", + "elevation_ft": "868", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Frankfort", + "scheduled_service": "no", + "gps_code": "68II", + "local_code": "68II" + }, + { + "id": "13106", + "ident": "68IL", + "type": "closed", + "name": "Prairie Lake Hunt Club Airport", + "latitude_deg": "41.395", + "longitude_deg": "-88.682898", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Marseilles", + "scheduled_service": "no", + "keywords": "68IL" + }, + { + "id": "13107", + "ident": "68IN", + "type": "small_airport", + "name": "Alley Oop Airport", + "latitude_deg": "41.12139892578125", + "longitude_deg": "-86.99749755859375", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Wheatfield", + "scheduled_service": "no", + "gps_code": "68IN", + "local_code": "68IN" + }, + { + "id": "13108", + "ident": "68IS", + "type": "small_airport", + "name": "Casa De Aero Park Airport", + "latitude_deg": "42.148605", + "longitude_deg": "-88.561965", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hampshire", + "scheduled_service": "no", + "gps_code": "68IS", + "local_code": "68IS" + }, + { + "id": "13109", + "ident": "68JY", + "type": "seaplane_base", + "name": "Hancock Pond Seaplane Base", + "latitude_deg": "43.93170166015625", + "longitude_deg": "-70.75669860839844", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Denmark", + "scheduled_service": "no", + "gps_code": "68JY", + "local_code": "68JY" + }, + { + "id": "13110", + "ident": "68KS", + "type": "closed", + "name": "Cloud 9 Airport", + "latitude_deg": "38.5672", + "longitude_deg": "-94.782501", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Paola", + "scheduled_service": "no", + "keywords": "68KS" + }, + { + "id": "13111", + "ident": "68KY", + "type": "small_airport", + "name": "Lee's Airpark", + "latitude_deg": "37.02330017089844", + "longitude_deg": "-84.72969818115234", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Somerset", + "scheduled_service": "no", + "gps_code": "68KY", + "local_code": "68KY" + }, + { + "id": "13112", + "ident": "68LA", + "type": "small_airport", + "name": "Pilkinton Airstrip", + "latitude_deg": "32.329938", + "longitude_deg": "-93.518169", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bossier City", + "scheduled_service": "no", + "gps_code": "68LA", + "local_code": "68LA" + }, + { + "id": "346023", + "ident": "68LS", + "type": "small_airport", + "name": "Myrtle Grove Airport", + "latitude_deg": "31.814581", + "longitude_deg": "-91.370314", + "elevation_ft": "71", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Waterproof", + "scheduled_service": "no", + "gps_code": "68LS", + "local_code": "68LS" + }, + { + "id": "329352", + "ident": "68ME", + "type": "heliport", + "name": "Maine Medical Center Heliport", + "latitude_deg": "43.653964", + "longitude_deg": "-70.27695", + "elevation_ft": "182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "68ME", + "local_code": "68ME" + }, + { + "id": "13113", + "ident": "68MI", + "type": "small_airport", + "name": "Saline Airport", + "latitude_deg": "42.146400451660156", + "longitude_deg": "-83.79190063476562", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Saline", + "scheduled_service": "no", + "gps_code": "68MI", + "local_code": "68MI" + }, + { + "id": "13114", + "ident": "68MN", + "type": "closed", + "name": "Mathew Private Field", + "latitude_deg": "46.671299", + "longitude_deg": "-96.450897", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Barnesville", + "scheduled_service": "no", + "keywords": "68MN" + }, + { + "id": "13115", + "ident": "68MO", + "type": "heliport", + "name": "Southeast Health Center of Stoddard County Heliport", + "latitude_deg": "36.80738", + "longitude_deg": "-89.967405", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Dexter", + "scheduled_service": "no", + "gps_code": "68MO", + "local_code": "68MO", + "keywords": "Dexter Memorial Hospital Heliport" + }, + { + "id": "13116", + "ident": "68NC", + "type": "small_airport", + "name": "Winstead '76' Airport", + "latitude_deg": "36.399600982666016", + "longitude_deg": "-79.12809753417969", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Leasburg", + "scheduled_service": "no", + "gps_code": "68NC", + "local_code": "68NC" + }, + { + "id": "13117", + "ident": "68NE", + "type": "small_airport", + "name": "Hall-Feld Airport", + "latitude_deg": "40.99140167236328", + "longitude_deg": "-96.61969757080078", + "elevation_ft": "1355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Davey", + "scheduled_service": "no", + "gps_code": "68NE", + "local_code": "68NE" + }, + { + "id": "430425", + "ident": "68NH", + "type": "heliport", + "name": "Not Too Dusty Heliport", + "latitude_deg": "42.827717", + "longitude_deg": "-71.678447", + "elevation_ft": "293", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "68NH", + "local_code": "68NH" + }, + { + "id": "13118", + "ident": "68NJ", + "type": "heliport", + "name": "NUI Heliport", + "latitude_deg": "40.581798", + "longitude_deg": "-74.602224", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bridgewater Township", + "scheduled_service": "no", + "gps_code": "68NJ", + "local_code": "68NJ" + }, + { + "id": "13119", + "ident": "68NM", + "type": "small_airport", + "name": "Flying H Ranch Airport", + "latitude_deg": "33.028964", + "longitude_deg": "-105.126393", + "elevation_ft": "5162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Mayhill", + "scheduled_service": "no", + "gps_code": "68NM", + "local_code": "68NM" + }, + { + "id": "13120", + "ident": "68NY", + "type": "small_airport", + "name": "Merrimac Farms Airport", + "latitude_deg": "42.750099182128906", + "longitude_deg": "-77.78389739990234", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Mount Morris", + "scheduled_service": "no", + "gps_code": "68NY", + "local_code": "68NY" + }, + { + "id": "13121", + "ident": "68OI", + "type": "heliport", + "name": "Abbey Etna Heliport", + "latitude_deg": "41.56480026245117", + "longitude_deg": "-83.60990142822266", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Perrysburg", + "scheduled_service": "no", + "gps_code": "68OI", + "local_code": "68OI" + }, + { + "id": "13122", + "ident": "68OK", + "type": "heliport", + "name": "Fairfax Heliport", + "latitude_deg": "36.56669998168945", + "longitude_deg": "-96.71700286865234", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Fairfax", + "scheduled_service": "no", + "gps_code": "68OK", + "local_code": "68OK" + }, + { + "id": "13123", + "ident": "68OR", + "type": "closed", + "name": "Lyda Ranch Airstrip", + "latitude_deg": "45.3911", + "longitude_deg": "-121.276001", + "elevation_ft": "2450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Dufur", + "scheduled_service": "no", + "keywords": "68OR" + }, + { + "id": "13124", + "ident": "68PA", + "type": "small_airport", + "name": "Don's Place Airpark", + "latitude_deg": "40.5181999206543", + "longitude_deg": "-75.91629791259766", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hamburg", + "scheduled_service": "no", + "gps_code": "68PA", + "local_code": "68PA" + }, + { + "id": "349501", + "ident": "68PS", + "type": "heliport", + "name": "Lakehill Heliport", + "latitude_deg": "40.705441", + "longitude_deg": "-80.030841", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mars", + "scheduled_service": "no", + "gps_code": "68PS", + "local_code": "68PS" + }, + { + "id": "13125", + "ident": "68R", + "type": "small_airport", + "name": "Hamp Airport", + "latitude_deg": "43.39950180053711", + "longitude_deg": "-84.80079650878906", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Elwell", + "scheduled_service": "no", + "gps_code": "68R", + "local_code": "68R" + }, + { + "id": "13126", + "ident": "68TA", + "type": "heliport", + "name": "Avsi-Sugar Land Heliport", + "latitude_deg": "29.64299964904785", + "longitude_deg": "-95.6072006225586", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sugar Land", + "scheduled_service": "no", + "gps_code": "68TA", + "local_code": "68TA" + }, + { + "id": "13127", + "ident": "68TE", + "type": "small_airport", + "name": "Norris Raun Ranch Airport", + "latitude_deg": "29.19610023498535", + "longitude_deg": "-96.49189758300781", + "elevation_ft": "108", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Campo", + "scheduled_service": "no", + "gps_code": "68TE", + "local_code": "68TE" + }, + { + "id": "13128", + "ident": "68TS", + "type": "small_airport", + "name": "Bishop Field", + "latitude_deg": "32.874485", + "longitude_deg": "-96.285015", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Royse City", + "scheduled_service": "no", + "gps_code": "68TS", + "local_code": "68TS" + }, + { + "id": "13129", + "ident": "68TX", + "type": "closed", + "name": "San Patricio International Airport", + "latitude_deg": "27.980801", + "longitude_deg": "-97.786903", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Patricio", + "scheduled_service": "no", + "keywords": "68TX" + }, + { + "id": "13130", + "ident": "68VA", + "type": "heliport", + "name": "Carilion New River Valley Medical Center Heliport", + "latitude_deg": "37.09109878540039", + "longitude_deg": "-80.51000213623047", + "elevation_ft": "3130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Radford", + "scheduled_service": "no", + "gps_code": "68VA", + "local_code": "68VA" + }, + { + "id": "13131", + "ident": "68WA", + "type": "small_airport", + "name": "Mc Mahon Field", + "latitude_deg": "46.393699646", + "longitude_deg": "-120.222000122", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Zillah", + "scheduled_service": "no", + "gps_code": "68WA", + "local_code": "68WA" + }, + { + "id": "13132", + "ident": "68WI", + "type": "heliport", + "name": "Mayo Clinic Health System-Franciscan Healthcare Heliport", + "latitude_deg": "43.804088", + "longitude_deg": "-91.239807", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "La Crosse", + "scheduled_service": "no", + "gps_code": "68WI", + "local_code": "68WI", + "keywords": "St Francis Medical Center" + }, + { + "id": "13133", + "ident": "68XS", + "type": "small_airport", + "name": "Margaritaville Airport", + "latitude_deg": "33.72129821777344", + "longitude_deg": "-96.86979675292969", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Whitesboro", + "scheduled_service": "no", + "gps_code": "68XS", + "local_code": "68XS" + }, + { + "id": "13134", + "ident": "68Y", + "type": "small_airport", + "name": "Wells Municipal Airport", + "latitude_deg": "43.733299255371094", + "longitude_deg": "-93.78359985351562", + "elevation_ft": "1119", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Wells", + "scheduled_service": "no", + "gps_code": "68Y", + "local_code": "68Y" + }, + { + "id": "42775", + "ident": "69AK", + "type": "seaplane_base", + "name": "Memory Lake Seaplane Base", + "latitude_deg": "61.62888717651367", + "longitude_deg": "-149.42361450195312", + "elevation_ft": "463", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "69AK", + "local_code": "69AK" + }, + { + "id": "13135", + "ident": "69AZ", + "type": "heliport", + "name": "Maricopa County Sheriff's Office Heliport", + "latitude_deg": "33.381085", + "longitude_deg": "-111.828917", + "elevation_ft": "1257", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no", + "gps_code": "69AZ", + "local_code": "69AZ" + }, + { + "id": "13136", + "ident": "69CA", + "type": "heliport", + "name": "Victor Valley Global Medical Center Heliport", + "latitude_deg": "34.52776", + "longitude_deg": "-117.292743", + "elevation_ft": "2896", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Victorville", + "scheduled_service": "no", + "gps_code": "69CA", + "local_code": "69CA", + "keywords": "Victor Valley Community Hospital Heliport" + }, + { + "id": "13137", + "ident": "69CL", + "type": "small_airport", + "name": "Medlock Field", + "latitude_deg": "38.615501403808594", + "longitude_deg": "-121.74700164794922", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Davis", + "scheduled_service": "no", + "gps_code": "69CL", + "local_code": "69CL" + }, + { + "id": "13138", + "ident": "69CO", + "type": "heliport", + "name": "Porter Memorial Hospital Heliport", + "latitude_deg": "39.670799255371094", + "longitude_deg": "-104.97599792480469", + "elevation_ft": "5349", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "gps_code": "69CO", + "local_code": "69CO" + }, + { + "id": "45339", + "ident": "69CT", + "type": "heliport", + "name": "The Shore Heliport", + "latitude_deg": "41.319917", + "longitude_deg": "-71.993167", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Mystic", + "scheduled_service": "no", + "gps_code": "69CT", + "local_code": "69CT" + }, + { + "id": "325787", + "ident": "69FA", + "type": "heliport", + "name": "LZ Shadow Heliport", + "latitude_deg": "28.555261", + "longitude_deg": "-82.33465", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Brooksville", + "scheduled_service": "no", + "gps_code": "69FA", + "local_code": "69FA" + }, + { + "id": "13139", + "ident": "69FD", + "type": "small_airport", + "name": "Unicorn Place Airport", + "latitude_deg": "30.84469985961914", + "longitude_deg": "-86.28140258789062", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Defuniak Springs", + "scheduled_service": "no", + "gps_code": "69FD", + "local_code": "69FD" + }, + { + "id": "13140", + "ident": "69FL", + "type": "closed", + "name": "Eagle's Landing Airport", + "latitude_deg": "26.677299", + "longitude_deg": "-82.136497", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Myers", + "scheduled_service": "no", + "keywords": "69FL" + }, + { + "id": "13141", + "ident": "69G", + "type": "small_airport", + "name": "Richmond Field", + "latitude_deg": "42.44169998168945", + "longitude_deg": "-84.06659698486328", + "elevation_ft": "921", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Gregory", + "scheduled_service": "no", + "gps_code": "69G", + "local_code": "69G" + }, + { + "id": "13142", + "ident": "69GA", + "type": "heliport", + "name": "Liberty Memorial Hospital Heliport", + "latitude_deg": "31.845800399780273", + "longitude_deg": "-81.59149932861328", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Hinesville", + "scheduled_service": "no", + "gps_code": "69GA", + "local_code": "69GA" + }, + { + "id": "13143", + "ident": "69GE", + "type": "closed", + "name": "Great Oaks Airport", + "latitude_deg": "33.926339", + "longitude_deg": "-82.654438", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Tignall", + "scheduled_service": "no", + "keywords": "69GE" + }, + { + "id": "13144", + "ident": "69II", + "type": "small_airport", + "name": "Greuter Field", + "latitude_deg": "41.36940002441406", + "longitude_deg": "-84.87889862060547", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Butler", + "scheduled_service": "no", + "gps_code": "69II", + "local_code": "69II" + }, + { + "id": "13145", + "ident": "69IL", + "type": "small_airport", + "name": "David Gillespie Airport", + "latitude_deg": "41.365299224853516", + "longitude_deg": "-88.67919921875", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Marseilles", + "scheduled_service": "no", + "gps_code": "69IL", + "local_code": "69IL" + }, + { + "id": "13146", + "ident": "69IN", + "type": "closed", + "name": "Solar Nr 1 Heliport", + "latitude_deg": "38.225899", + "longitude_deg": "-87.269699", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lynnville", + "scheduled_service": "no", + "keywords": "69IN" + }, + { + "id": "13147", + "ident": "69IS", + "type": "small_airport", + "name": "Sinele's Sunset Strip", + "latitude_deg": "40.579498291015625", + "longitude_deg": "-91.29180145263672", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Niota", + "scheduled_service": "no", + "gps_code": "69IS", + "local_code": "69IS" + }, + { + "id": "13148", + "ident": "69KS", + "type": "small_airport", + "name": "Chiles Airpark", + "latitude_deg": "38.669700622558594", + "longitude_deg": "-94.74250030517578", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Chiles", + "scheduled_service": "no", + "gps_code": "69KS", + "local_code": "69KS" + }, + { + "id": "13149", + "ident": "69KY", + "type": "closed", + "name": "Lyndon Fire Protection District Heliport", + "latitude_deg": "38.2612", + "longitude_deg": "-85.602502", + "elevation_ft": "579", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Lyndon", + "scheduled_service": "no", + "keywords": "69KY" + }, + { + "id": "13150", + "ident": "69LA", + "type": "closed", + "name": "Our Lady of Lourdes Hospital Heliport", + "latitude_deg": "30.213534", + "longitude_deg": "-92.028454", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lafayette", + "scheduled_service": "no", + "keywords": "69LA" + }, + { + "id": "13151", + "ident": "69LL", + "type": "small_airport", + "name": "Maas Airstrip", + "latitude_deg": "41.288707", + "longitude_deg": "-91.050385", + "elevation_ft": "534", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "New Boston", + "scheduled_service": "no", + "gps_code": "69LL", + "local_code": "69LL" + }, + { + "id": "45480", + "ident": "69MI", + "type": "closed", + "name": "Perry Aero Park", + "latitude_deg": "42.821389", + "longitude_deg": "-84.278888", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Perry", + "scheduled_service": "no", + "keywords": "69MI" + }, + { + "id": "13152", + "ident": "69MN", + "type": "small_airport", + "name": "Yaggie Private Airport", + "latitude_deg": "46.2776985168457", + "longitude_deg": "-96.42949676513672", + "elevation_ft": "982", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Breckenridge", + "scheduled_service": "no", + "gps_code": "69MN", + "local_code": "69MN" + }, + { + "id": "13153", + "ident": "69MO", + "type": "small_airport", + "name": "Hess-McKeown Airport", + "latitude_deg": "39.308399", + "longitude_deg": "-92.454102", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Higbee", + "scheduled_service": "no", + "gps_code": "69MO", + "local_code": "69MO" + }, + { + "id": "324648", + "ident": "69MT", + "type": "small_airport", + "name": "Flying H Airport", + "latitude_deg": "47.780733", + "longitude_deg": "-104.527115", + "elevation_ft": "2465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Lambert", + "scheduled_service": "no", + "gps_code": "69MT", + "local_code": "69MT" + }, + { + "id": "352254", + "ident": "69MU", + "type": "small_airport", + "name": "Blazer Airport", + "latitude_deg": "39.764236", + "longitude_deg": "-94.627361", + "elevation_ft": "939", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Easton", + "scheduled_service": "no", + "gps_code": "69MU", + "local_code": "69MU" + }, + { + "id": "13154", + "ident": "69MY", + "type": "small_airport", + "name": "Hall Airport", + "latitude_deg": "44.66109848022461", + "longitude_deg": "-93.1001968383789", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Farmington", + "scheduled_service": "no", + "gps_code": "69MY", + "local_code": "69MY" + }, + { + "id": "13155", + "ident": "69N", + "type": "small_airport", + "name": "Slatington Airport", + "latitude_deg": "40.763599", + "longitude_deg": "-75.604897", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Slatington", + "scheduled_service": "no", + "local_code": "69N" + }, + { + "id": "13156", + "ident": "69NC", + "type": "small_airport", + "name": "Clute's Hilltop Airport", + "latitude_deg": "35.433401", + "longitude_deg": "-81.846012", + "elevation_ft": "1078", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Forest City", + "scheduled_service": "no", + "gps_code": "69NC", + "local_code": "69NC" + }, + { + "id": "13157", + "ident": "69ND", + "type": "small_airport", + "name": "Tengesdal Airport", + "latitude_deg": "48.743099212646484", + "longitude_deg": "-101.04199981689453", + "elevation_ft": "1495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Maxbass", + "scheduled_service": "no", + "gps_code": "69ND", + "local_code": "69ND" + }, + { + "id": "13158", + "ident": "69NJ", + "type": "heliport", + "name": "Lockheed Electronics Company, Inc. Heliport", + "latitude_deg": "40.64229965209961", + "longitude_deg": "-74.42130279541016", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Watchung", + "scheduled_service": "no", + "gps_code": "69NJ", + "local_code": "69NJ" + }, + { + "id": "13159", + "ident": "69NY", + "type": "heliport", + "name": "UVMHN-Elizabethtown Community Hospital Heliport", + "latitude_deg": "43.849329", + "longitude_deg": "-73.436408", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Ticonderoga", + "scheduled_service": "no", + "gps_code": "69NY", + "local_code": "69NY", + "keywords": "Moses Ludington Hospital" + }, + { + "id": "13160", + "ident": "69OH", + "type": "closed", + "name": "Dwight Field", + "latitude_deg": "40.2631", + "longitude_deg": "-82.514397", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Homer", + "scheduled_service": "no", + "keywords": "69OH" + }, + { + "id": "13161", + "ident": "69OI", + "type": "small_airport", + "name": "Schulze's Airport", + "latitude_deg": "40.95009994506836", + "longitude_deg": "-82.92489624023438", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Chatfield", + "scheduled_service": "no", + "gps_code": "69OI", + "local_code": "69OI" + }, + { + "id": "13162", + "ident": "69OK", + "type": "small_airport", + "name": "Green Country Airpark", + "latitude_deg": "36.71578", + "longitude_deg": "-94.85152", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Fairland", + "scheduled_service": "no", + "gps_code": "69OK", + "local_code": "69OK" + }, + { + "id": "13163", + "ident": "69OR", + "type": "small_airport", + "name": "Dick Fisher Airport", + "latitude_deg": "45.413679", + "longitude_deg": "-123.136386", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Gaston", + "scheduled_service": "no", + "gps_code": "69OR", + "local_code": "69OR" + }, + { + "id": "13164", + "ident": "69PA", + "type": "small_airport", + "name": "Hurst Airport", + "latitude_deg": "40.343404", + "longitude_deg": "-76.208382", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Newmanstown", + "scheduled_service": "no", + "gps_code": "69PA", + "local_code": "69PA", + "keywords": "65N, Hurst STOLport" + }, + { + "id": "608", + "ident": "69S", + "type": "small_airport", + "name": "Avey Field State/Laurier Airport", + "latitude_deg": "48.998264", + "longitude_deg": "-118.222605", + "elevation_ft": "1655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Laurier", + "scheduled_service": "no", + "local_code": "69S", + "wikipedia_link": "https://en.wikipedia.org/wiki/Avey_Field_State_Airport", + "keywords": "Avey Field State Airport" + }, + { + "id": "13165", + "ident": "69TA", + "type": "small_airport", + "name": "Dean Airport", + "latitude_deg": "27.655000686645508", + "longitude_deg": "-97.52529907226562", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no", + "gps_code": "69TA", + "local_code": "69TA" + }, + { + "id": "13166", + "ident": "69TE", + "type": "small_airport", + "name": "Deer Pasture Airport", + "latitude_deg": "30.926300048828125", + "longitude_deg": "-98.23639678955078", + "elevation_ft": "1422", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lampasas", + "scheduled_service": "no", + "gps_code": "69TE", + "local_code": "69TE" + }, + { + "id": "13167", + "ident": "69TS", + "type": "small_airport", + "name": "White Airport", + "latitude_deg": "30.99880027770996", + "longitude_deg": "-97.75589752197266", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Killeen", + "scheduled_service": "no", + "gps_code": "69TS", + "local_code": "69TS" + }, + { + "id": "13168", + "ident": "69TX", + "type": "small_airport", + "name": "Green Lake Ranch Airport", + "latitude_deg": "28.583599090576172", + "longitude_deg": "-96.85440063476562", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bloomington", + "scheduled_service": "no", + "gps_code": "69TX", + "local_code": "69TX" + }, + { + "id": "13169", + "ident": "69VA", + "type": "small_airport", + "name": "Meadow Farm Airport", + "latitude_deg": "37.85710144042969", + "longitude_deg": "-77.42050170898438", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "69VA", + "local_code": "69VA" + }, + { + "id": "13170", + "ident": "69WA", + "type": "heliport", + "name": "O & M Facilities Heliport", + "latitude_deg": "46.422298431396484", + "longitude_deg": "-117.03900146484375", + "elevation_ft": "744", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Clarkston", + "scheduled_service": "no", + "gps_code": "69WA", + "local_code": "69WA" + }, + { + "id": "13171", + "ident": "69WI", + "type": "closed", + "name": "Kroy-Osceola Heliport", + "latitude_deg": "45.32", + "longitude_deg": "-92.687698", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Osceola", + "scheduled_service": "no", + "gps_code": "69WI", + "local_code": "69WI" + }, + { + "id": "344962", + "ident": "69WT", + "type": "seaplane_base", + "name": "Quartermaster Harbor Seaplane Base", + "latitude_deg": "47.3929", + "longitude_deg": "-122.46048", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Vashon", + "scheduled_service": "no", + "gps_code": "69WT", + "local_code": "69WT" + }, + { + "id": "45859", + "ident": "69XA", + "type": "small_airport", + "name": "Richey Airfield", + "latitude_deg": "33.349769", + "longitude_deg": "-97.776797", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Chico", + "scheduled_service": "no", + "gps_code": "69XA", + "local_code": "69XA" + }, + { + "id": "13172", + "ident": "69XS", + "type": "small_airport", + "name": "Brushy Creek Airport", + "latitude_deg": "33.75339889526367", + "longitude_deg": "-96.8302001953125", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Whitesboro", + "scheduled_service": "no", + "gps_code": "69XS", + "local_code": "69XS" + }, + { + "id": "13173", + "ident": "6A5", + "type": "small_airport", + "name": "Warf Airport", + "latitude_deg": "36.323474", + "longitude_deg": "-79.709272", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Reidsville", + "scheduled_service": "no", + "local_code": "6A5" + }, + { + "id": "13174", + "ident": "6A6", + "type": "small_airport", + "name": "Kimball Municipal Airport", + "latitude_deg": "43.756356", + "longitude_deg": "-98.979821", + "elevation_ft": "1755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Kimball", + "scheduled_service": "no", + "local_code": "6A6", + "keywords": "SD27" + }, + { + "id": "13175", + "ident": "6A7", + "type": "seaplane_base", + "name": "Brocker Lake Seaplane Base", + "latitude_deg": "61.4818000793", + "longitude_deg": "-149.772994995", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "6A7", + "local_code": "6A7" + }, + { + "id": "13177", + "ident": "6AK", + "type": "small_airport", + "name": "Rainy Pass Lodge Airport", + "latitude_deg": "62.08409881591797", + "longitude_deg": "-152.71800231933594", + "elevation_ft": "1900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Rainy Pass", + "scheduled_service": "no", + "gps_code": "6AK", + "local_code": "6AK" + }, + { + "id": "13178", + "ident": "6AK1", + "type": "small_airport", + "name": "Platinum Mine Airport", + "latitude_deg": "58.91170120239258", + "longitude_deg": "-161.71400451660156", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Platinum", + "scheduled_service": "no", + "gps_code": "6AK1", + "local_code": "6AK1" + }, + { + "id": "13179", + "ident": "6AK2", + "type": "small_airport", + "name": "Sleepers Strip Airport", + "latitude_deg": "61.251579", + "longitude_deg": "-149.966125", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Point Mackenzie", + "scheduled_service": "no", + "gps_code": "6AK2", + "local_code": "6AK2" + }, + { + "id": "13180", + "ident": "6AK3", + "type": "small_airport", + "name": "Butler Aviation Airport", + "latitude_deg": "60.727784", + "longitude_deg": "-151.27779", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nikiski", + "scheduled_service": "no", + "gps_code": "6AK3", + "local_code": "6AK3" + }, + { + "id": "13181", + "ident": "6AK5", + "type": "small_airport", + "name": "Fire Island Airport", + "latitude_deg": "61.168742", + "longitude_deg": "-150.160532", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchorage", + "scheduled_service": "no", + "gps_code": "6AK5", + "local_code": "6AK5" + }, + { + "id": "13182", + "ident": "6AK7", + "type": "small_airport", + "name": "Rainbow Heights Estates Airstrip", + "latitude_deg": "61.57385", + "longitude_deg": "-149.641492", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "6AK7", + "local_code": "6AK7" + }, + { + "id": "13183", + "ident": "6AK8", + "type": "small_airport", + "name": "Tulakes Airport", + "latitude_deg": "61.618099212646484", + "longitude_deg": "-149.66900634765625", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "6AK8", + "local_code": "6AK8" + }, + { + "id": "13184", + "ident": "6AK9", + "type": "small_airport", + "name": "Cizek North Airport", + "latitude_deg": "61.63349914550781", + "longitude_deg": "-149.6820068359375", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "6AK9", + "local_code": "6AK9" + }, + { + "id": "45239", + "ident": "6AL3", + "type": "closed", + "name": "Sweet Home Airport", + "latitude_deg": "34.582047", + "longitude_deg": "-85.755572", + "elevation_ft": "1340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Henagar", + "scheduled_service": "no", + "keywords": "6AL3" + }, + { + "id": "327277", + "ident": "6AL4", + "type": "heliport", + "name": "Air Evac 16 Heliport", + "latitude_deg": "34.671713", + "longitude_deg": "-87.632813", + "elevation_ft": "512", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Tuscumbia", + "scheduled_service": "no", + "gps_code": "6AL4", + "local_code": "6AL4" + }, + { + "id": "13185", + "ident": "6AL6", + "type": "small_airport", + "name": "Hawthorn Pines Airport", + "latitude_deg": "31.387348", + "longitude_deg": "-88.094473", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Wagarville", + "scheduled_service": "no", + "gps_code": "6AL6", + "local_code": "6AL6" + }, + { + "id": "325530", + "ident": "6AL8", + "type": "heliport", + "name": "Malbis Med Park-Infirmary Health Heliport", + "latitude_deg": "30.654636", + "longitude_deg": "-87.854252", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Daphne", + "scheduled_service": "no", + "gps_code": "6AL8", + "local_code": "6AL8" + }, + { + "id": "323159", + "ident": "6AL9", + "type": "heliport", + "name": "Mega Site Helipad", + "latitude_deg": "30.948611", + "longitude_deg": "-87.745555", + "elevation_ft": "284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Bay Minette", + "scheduled_service": "no", + "gps_code": "6AL9", + "local_code": "6AL9" + }, + { + "id": "13186", + "ident": "6AR0", + "type": "small_airport", + "name": "Cypress Creek Airpark", + "latitude_deg": "35.060511", + "longitude_deg": "-92.116113", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Vilonia", + "scheduled_service": "no", + "gps_code": "6AR0", + "local_code": "6AR0", + "keywords": "Edwards Sailplane Ranch, Gliderport" + }, + { + "id": "13187", + "ident": "6AR1", + "type": "small_airport", + "name": "Elder Airstrip", + "latitude_deg": "36.2779006958", + "longitude_deg": "-94.19660186770001", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Cave Springs", + "scheduled_service": "no", + "gps_code": "6AR1", + "local_code": "6AR1" + }, + { + "id": "13188", + "ident": "6AR2", + "type": "closed", + "name": "A J's Airport", + "latitude_deg": "35.020401", + "longitude_deg": "-93.064903", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Casa", + "scheduled_service": "no", + "keywords": "6AR2" + }, + { + "id": "13189", + "ident": "6AR3", + "type": "heliport", + "name": "UAMS Alpha Heliport", + "latitude_deg": "34.748107", + "longitude_deg": "-92.320215", + "elevation_ft": "561", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Little Rock", + "scheduled_service": "no", + "gps_code": "6AR3", + "local_code": "6AR3", + "keywords": "University Hospital Heliport" + }, + { + "id": "45299", + "ident": "6AR4", + "type": "heliport", + "name": "Baptist Health Medical Center-Heber Spring Heliport", + "latitude_deg": "35.504889", + "longitude_deg": "-91.997694", + "elevation_ft": "538", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Heber Springs", + "scheduled_service": "no", + "gps_code": "6AR4", + "local_code": "6AR4" + }, + { + "id": "13190", + "ident": "6AR5", + "type": "closed", + "name": "Mc Donald's Airstrip", + "latitude_deg": "36.034698", + "longitude_deg": "-91.370796", + "elevation_ft": "375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Calamine", + "scheduled_service": "no", + "keywords": "6AR5" + }, + { + "id": "13191", + "ident": "6AR6", + "type": "closed", + "name": "Two Rivers Airport", + "latitude_deg": "34.840599", + "longitude_deg": "-92.441704", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Little Rock", + "scheduled_service": "no", + "keywords": "6AR6" + }, + { + "id": "13192", + "ident": "6AR7", + "type": "heliport", + "name": "Arkansas Heart Hospital Heliport", + "latitude_deg": "34.739540100097656", + "longitude_deg": "-92.39276123046875", + "elevation_ft": "511", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Little Rock", + "scheduled_service": "no", + "gps_code": "6AR7", + "local_code": "6AR7" + }, + { + "id": "13193", + "ident": "6AR8", + "type": "small_airport", + "name": "Flying W Airpark II Airport", + "latitude_deg": "35.3300018311", + "longitude_deg": "-94.0419006348", + "elevation_ft": "474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Charleston", + "scheduled_service": "no", + "gps_code": "6AR8", + "local_code": "6AR8" + }, + { + "id": "13194", + "ident": "6AR9", + "type": "small_airport", + "name": "Pine Mountain Airpark", + "latitude_deg": "36.4152984619", + "longitude_deg": "-92.6943969727", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Flippin", + "scheduled_service": "no", + "gps_code": "6AR9", + "local_code": "6AR9" + }, + { + "id": "45296", + "ident": "6AZ0", + "type": "heliport", + "name": "Lyon Aviation South Ramp Heliport", + "latitude_deg": "33.6245", + "longitude_deg": "-111.921334", + "elevation_ft": "1455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Scottsdale", + "scheduled_service": "no", + "gps_code": "6AZ0", + "local_code": "6AZ0" + }, + { + "id": "13195", + "ident": "6AZ2", + "type": "small_airport", + "name": "Wisky Ranch/Chevlon Airport", + "latitude_deg": "34.616798400878906", + "longitude_deg": "-110.62799835205078", + "elevation_ft": "6172", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Heber", + "scheduled_service": "no", + "gps_code": "6AZ2", + "local_code": "6AZ2" + }, + { + "id": "45286", + "ident": "6AZ5", + "type": "small_airport", + "name": "Ash Creek Airport", + "latitude_deg": "31.857967", + "longitude_deg": "-109.535515", + "elevation_ft": "4680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Pearce", + "scheduled_service": "no", + "gps_code": "6AZ5", + "local_code": "6AZ5" + }, + { + "id": "13196", + "ident": "6AZ6", + "type": "heliport", + "name": "Copper Queen Hospital Heliport", + "latitude_deg": "31.41790008544922", + "longitude_deg": "-109.88300323486328", + "elevation_ft": "5001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bisbee", + "scheduled_service": "no", + "gps_code": "6AZ6", + "local_code": "6AZ6" + }, + { + "id": "13197", + "ident": "6AZ7", + "type": "heliport", + "name": "Toon Tail Heliport", + "latitude_deg": "33.50279998779297", + "longitude_deg": "-112.78600311279297", + "elevation_ft": "1115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonopah", + "scheduled_service": "no", + "gps_code": "6AZ7", + "local_code": "6AZ7" + }, + { + "id": "13198", + "ident": "6AZ8", + "type": "small_airport", + "name": "Flying Diamond Airport", + "latitude_deg": "31.937751", + "longitude_deg": "-111.118952", + "elevation_ft": "3800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sahuarita", + "scheduled_service": "no", + "gps_code": "6AZ8", + "local_code": "6AZ8", + "keywords": "sahuarita, flying diamond" + }, + { + "id": "13199", + "ident": "6B0", + "type": "small_airport", + "name": "Middlebury State Airport", + "latitude_deg": "43.9847984314", + "longitude_deg": "-73.09590148929999", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Middlebury", + "scheduled_service": "no", + "gps_code": "6B0", + "local_code": "6B0", + "wikipedia_link": "https://en.wikipedia.org/wiki/Middlebury_State_Airport" + }, + { + "id": "13200", + "ident": "6B3", + "type": "closed", + "name": "Bean Blossom Airport", + "latitude_deg": "43.0405", + "longitude_deg": "-84.0051", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "New Lothrop", + "scheduled_service": "no", + "gps_code": "6B3", + "local_code": "6B3" + }, + { + "id": "13201", + "ident": "6B4", + "type": "small_airport", + "name": "Frankfort-Highland Airport", + "latitude_deg": "43.02090072631836", + "longitude_deg": "-75.17040252685547", + "elevation_ft": "1325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Utica/Frankfort", + "scheduled_service": "no", + "gps_code": "6B4", + "local_code": "6B4" + }, + { + "id": "13202", + "ident": "6B6", + "type": "small_airport", + "name": "Minute Man Air Field", + "latitude_deg": "42.46049880981445", + "longitude_deg": "-71.51789855957031", + "elevation_ft": "268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Stow", + "scheduled_service": "no", + "gps_code": "6B6", + "local_code": "6B6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Minute_Man_Air_Field" + }, + { + "id": "13203", + "ident": "6C0", + "type": "small_airport", + "name": "Eldora Airport", + "latitude_deg": "42.330183", + "longitude_deg": "-93.114286", + "elevation_ft": "979", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Eldora", + "scheduled_service": "no", + "local_code": "27P", + "home_link": "https://www.iowadot.gov/aviation/data_driven/publications/System_plan_reports/SPR6C0.pdf", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eldora_Municipal_Airport", + "keywords": "6C0, Eldora Municipal" + }, + { + "id": "13204", + "ident": "6C2", + "type": "small_airport", + "name": "Ohio Dusting Co Inc Airport", + "latitude_deg": "40.952869", + "longitude_deg": "-83.982243", + "elevation_ft": "765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Pandora", + "scheduled_service": "no", + "local_code": "6C2", + "keywords": "OH27" + }, + { + "id": "13205", + "ident": "6CA0", + "type": "heliport", + "name": "DoubleTree by Hilton Hotel Los Angeles Downtown Heliport", + "latitude_deg": "34.050686", + "longitude_deg": "-118.242663", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "6CA0", + "local_code": "6CA0" + }, + { + "id": "13206", + "ident": "6CA1", + "type": "small_airport", + "name": "Triple R Ranch Airport", + "latitude_deg": "41.742698669433594", + "longitude_deg": "-121.87799835205078", + "elevation_ft": "4380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Macdoel", + "scheduled_service": "no", + "gps_code": "6CA1", + "local_code": "6CA1" + }, + { + "id": "13207", + "ident": "6CA2", + "type": "heliport", + "name": "SCE Rosemead Heliport", + "latitude_deg": "34.050056", + "longitude_deg": "-118.081087", + "elevation_ft": "229", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rosemead", + "scheduled_service": "no", + "gps_code": "6CA2", + "local_code": "6CA2" + }, + { + "id": "13208", + "ident": "6CA3", + "type": "heliport", + "name": "Catalina Air-Sea Terminal Heliport", + "latitude_deg": "33.7491989136", + "longitude_deg": "-118.275001526", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Pedro", + "scheduled_service": "no", + "gps_code": "6CA3", + "iata_code": "SPQ", + "local_code": "6CA3" + }, + { + "id": "13209", + "ident": "6CA4", + "type": "heliport", + "name": "East Valley Sheriff's Station Heliport", + "latitude_deg": "34.24694", + "longitude_deg": "-118.835612", + "elevation_ft": "917", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Thousand Oaks", + "scheduled_service": "no", + "gps_code": "6CA4", + "local_code": "6CA4" + }, + { + "id": "13210", + "ident": "6CA5", + "type": "small_airport", + "name": "Valley Vista Airport", + "latitude_deg": "34.33720016479492", + "longitude_deg": "-116.58000183105469", + "elevation_ft": "3370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Yucca Valley", + "scheduled_service": "no", + "gps_code": "6CA5", + "local_code": "6CA5" + }, + { + "id": "13211", + "ident": "6CA6", + "type": "small_airport", + "name": "Eagle Ridge Ranch Airport", + "latitude_deg": "38.327701568603516", + "longitude_deg": "-120.47699737548828", + "elevation_ft": "2870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Railroad Flat", + "scheduled_service": "no", + "gps_code": "6CA6", + "local_code": "6CA6" + }, + { + "id": "13212", + "ident": "6CA7", + "type": "closed", + "name": "J & J Crop Dusters Inc Airport", + "latitude_deg": "35.180093", + "longitude_deg": "-118.855967", + "elevation_ft": "388", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Arvin", + "scheduled_service": "no", + "keywords": "6CA7" + }, + { + "id": "13213", + "ident": "6CA8", + "type": "small_airport", + "name": "Depue Airport", + "latitude_deg": "34.85639953613281", + "longitude_deg": "-117.13700103759766", + "elevation_ft": "2313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lenwood", + "scheduled_service": "no", + "gps_code": "6CA8", + "local_code": "6CA8" + }, + { + "id": "13214", + "ident": "6CA9", + "type": "heliport", + "name": "UCLA Emergency Medicine Department Heliport", + "latitude_deg": "34.064998626699996", + "longitude_deg": "-118.443000793", + "elevation_ft": "424", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "6CA9", + "local_code": "6CA9" + }, + { + "id": "13215", + "ident": "6CL0", + "type": "closed", + "name": "Majors Airport", + "latitude_deg": "35.5261", + "longitude_deg": "-119.101997", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bakersfield", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Majors_Airport_(California)", + "keywords": "6CL0" + }, + { + "id": "13216", + "ident": "6CL2", + "type": "heliport", + "name": "White Pine Heliport", + "latitude_deg": "41.330501556396484", + "longitude_deg": "-120.09700012207031", + "elevation_ft": "4550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Eagleville", + "scheduled_service": "no", + "gps_code": "6CL2", + "local_code": "6CL2" + }, + { + "id": "13217", + "ident": "6CL3", + "type": "heliport", + "name": "William Shells County Heliport", + "latitude_deg": "34.38029861450195", + "longitude_deg": "-118.86900329589844", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fillmore", + "scheduled_service": "no", + "gps_code": "6CL3", + "local_code": "6CL3" + }, + { + "id": "13218", + "ident": "6CL4", + "type": "small_airport", + "name": "Manzanita Airport", + "latitude_deg": "37.457828", + "longitude_deg": "-119.741921", + "elevation_ft": "3020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mariposa", + "scheduled_service": "no", + "gps_code": "6CL4", + "local_code": "6CL4" + }, + { + "id": "13219", + "ident": "6CL5", + "type": "heliport", + "name": "Majlar Heliport", + "latitude_deg": "34.156700134277344", + "longitude_deg": "-119.16799926757812", + "elevation_ft": "2420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ojai", + "scheduled_service": "no", + "gps_code": "6CL5", + "local_code": "6CL5" + }, + { + "id": "13220", + "ident": "6CL6", + "type": "closed", + "name": "Mark Franz Private Strip", + "latitude_deg": "37.1749", + "longitude_deg": "-119.609001", + "elevation_ft": "2560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "O'Neals", + "scheduled_service": "no", + "gps_code": "6CL6", + "local_code": "6CL6", + "keywords": "6CL6" + }, + { + "id": "13221", + "ident": "6CL7", + "type": "heliport", + "name": "Orange Co Sheriffs Forensics Lab Helistop", + "latitude_deg": "33.7475013733", + "longitude_deg": "-117.876998901", + "elevation_ft": "223", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Ana", + "scheduled_service": "no", + "gps_code": "6CL7", + "local_code": "6CL7" + }, + { + "id": "13222", + "ident": "6CL8", + "type": "small_airport", + "name": "Harley Airport", + "latitude_deg": "37.950801849365234", + "longitude_deg": "-121.24299621582031", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stockton", + "scheduled_service": "no", + "gps_code": "6CL8", + "local_code": "6CL8" + }, + { + "id": "13223", + "ident": "6CL9", + "type": "closed", + "name": "Peoria Airport", + "latitude_deg": "37.9217", + "longitude_deg": "-120.514999", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Jamestown", + "scheduled_service": "no", + "keywords": "6CL9" + }, + { + "id": "348250", + "ident": "6CN5", + "type": "heliport", + "name": "Los Altos Heliport", + "latitude_deg": "34.055566", + "longitude_deg": "-117.992526", + "elevation_ft": "343", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "City of Industry", + "scheduled_service": "no", + "gps_code": "6CN5", + "local_code": "6CN5" + }, + { + "id": "317224", + "ident": "6CN6", + "type": "heliport", + "name": "Kaiser Permanente South Sacramento Heliport", + "latitude_deg": "38.469856", + "longitude_deg": "-121.420743", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sacramento", + "scheduled_service": "no", + "gps_code": "6CN6", + "local_code": "6CN6" + }, + { + "id": "13224", + "ident": "6CO0", + "type": "small_airport", + "name": "Doctors Mesa Airport", + "latitude_deg": "38.852236", + "longitude_deg": "-108.017833", + "elevation_ft": "5680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Eckert", + "scheduled_service": "no", + "gps_code": "6CO0", + "local_code": "6CO0" + }, + { + "id": "13225", + "ident": "6CO1", + "type": "small_airport", + "name": "Burnham Field", + "latitude_deg": "40.78139877319336", + "longitude_deg": "-104.91699981689453", + "elevation_ft": "5615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Wellington", + "scheduled_service": "no", + "gps_code": "6CO1", + "local_code": "6CO1" + }, + { + "id": "13226", + "ident": "6CO2", + "type": "small_airport", + "name": "Mesawood Airpark", + "latitude_deg": "38.960694", + "longitude_deg": "-107.958418", + "elevation_ft": "7200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Cedaredge", + "scheduled_service": "no", + "gps_code": "6CO2", + "local_code": "6CO2" + }, + { + "id": "13227", + "ident": "6CO3", + "type": "closed", + "name": "Wine Glass International Airport", + "latitude_deg": "37.631287", + "longitude_deg": "-103.657367", + "elevation_ft": "4708", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "La Junta", + "scheduled_service": "no", + "gps_code": "6CO3", + "local_code": "6CO3" + }, + { + "id": "13228", + "ident": "6CO4", + "type": "small_airport", + "name": "Hat-Field STOLport", + "latitude_deg": "40.51029968261719", + "longitude_deg": "-105.0009994506836", + "elevation_ft": "4885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Fort Collins", + "scheduled_service": "no", + "gps_code": "6CO4", + "local_code": "6CO4" + }, + { + "id": "13229", + "ident": "6CO5", + "type": "heliport", + "name": "Montrose Blm Heliport", + "latitude_deg": "38.45830154418945", + "longitude_deg": "-107.86799621582031", + "elevation_ft": "5859", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Montrose", + "scheduled_service": "no", + "gps_code": "6CO5", + "local_code": "6CO5" + }, + { + "id": "13230", + "ident": "6CO6", + "type": "small_airport", + "name": "Skywagon Ranch Airport", + "latitude_deg": "40.311886", + "longitude_deg": "-105.145833", + "elevation_ft": "5187", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Berthoud", + "scheduled_service": "no", + "gps_code": "6CO6", + "local_code": "6CO6" + }, + { + "id": "13231", + "ident": "6CO7", + "type": "heliport", + "name": "Monument Heliport", + "latitude_deg": "39.096900939941406", + "longitude_deg": "-108.5999984741211", + "elevation_ft": "4575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Grand Junction", + "scheduled_service": "no", + "gps_code": "6CO7", + "local_code": "6CO7" + }, + { + "id": "13232", + "ident": "6CO8", + "type": "heliport", + "name": "West Area Pwr Admin Ops Center Heliport", + "latitude_deg": "38.4660987854", + "longitude_deg": "-107.873001099", + "elevation_ft": "5825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Montrose", + "scheduled_service": "no", + "gps_code": "6CO8", + "local_code": "6CO8" + }, + { + "id": "13233", + "ident": "6CO9", + "type": "heliport", + "name": "Salida Hospital Heliport", + "latitude_deg": "38.532798767089844", + "longitude_deg": "-105.98999786376953", + "elevation_ft": "7050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Salida", + "scheduled_service": "no", + "gps_code": "6CO9", + "local_code": "6CO9" + }, + { + "id": "13234", + "ident": "6D3", + "type": "small_airport", + "name": "Maddock Municipal Airport", + "latitude_deg": "47.97779846191406", + "longitude_deg": "-99.527099609375", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Maddock", + "scheduled_service": "no", + "gps_code": "6D3", + "local_code": "6D3" + }, + { + "id": "13235", + "ident": "6D5", + "type": "closed", + "name": "Schmeltzer Heliport", + "latitude_deg": "41.147277", + "longitude_deg": "-81.6604", + "elevation_ft": "992", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Akron", + "scheduled_service": "no", + "keywords": "6D5" + }, + { + "id": "13236", + "ident": "6D7", + "type": "small_airport", + "name": "Deshler Municipal Landing Strip", + "latitude_deg": "41.21590042114258", + "longitude_deg": "-83.87439727783203", + "elevation_ft": "706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Deshler", + "scheduled_service": "no", + "gps_code": "6D7", + "local_code": "6D7" + }, + { + "id": "18984", + "ident": "6F1", + "type": "small_airport", + "name": "Talihina Municipal Airport", + "latitude_deg": "34.707801818847656", + "longitude_deg": "-95.07379913330078", + "elevation_ft": "687", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Talihina", + "scheduled_service": "no", + "gps_code": "6F1", + "local_code": "6F1" + }, + { + "id": "13237", + "ident": "6F7", + "type": "small_airport", + "name": "Manning Field", + "latitude_deg": "32.826499938964844", + "longitude_deg": "-94.35440063476562", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jefferson", + "scheduled_service": "no", + "gps_code": "6F7", + "local_code": "6F7" + }, + { + "id": "355643", + "ident": "6FA3", + "type": "heliport", + "name": "Med-Trans Base Heliport", + "latitude_deg": "30.300408", + "longitude_deg": "-85.65907", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City", + "scheduled_service": "no", + "gps_code": "6FA3", + "local_code": "6FA3" + }, + { + "id": "338923", + "ident": "6FA4", + "type": "heliport", + "name": "Mosquito Control Heliport", + "latitude_deg": "29.457582", + "longitude_deg": "-81.20833", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Palm Coast", + "scheduled_service": "no", + "gps_code": "6FA4", + "local_code": "6FA4" + }, + { + "id": "342461", + "ident": "6FA5", + "type": "heliport", + "name": "Nemours Childrens Hospital Heliport", + "latitude_deg": "28.376817", + "longitude_deg": "-81.274871", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "6FA5", + "local_code": "6FA5" + }, + { + "id": "13238", + "ident": "6FA8", + "type": "closed", + "name": "Orlando Sun Resort Heliport", + "latitude_deg": "28.333225", + "longitude_deg": "-81.536381", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Kissimmee", + "scheduled_service": "no", + "gps_code": "6FA8", + "local_code": "6FA8", + "keywords": "orlando hyatt house, orlando sun report, ramada orlando celebration resort" + }, + { + "id": "13239", + "ident": "6FD0", + "type": "small_airport", + "name": "Windy Acres Airport", + "latitude_deg": "29.565799713134766", + "longitude_deg": "-82.86869812011719", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Chiefland", + "scheduled_service": "no", + "gps_code": "6FD0", + "local_code": "6FD0" + }, + { + "id": "13240", + "ident": "6FD1", + "type": "heliport", + "name": "Crystal River Power Plant Heliport", + "latitude_deg": "28.959439", + "longitude_deg": "-82.692903", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Crystal River", + "scheduled_service": "no", + "gps_code": "6FD1", + "local_code": "6FD1" + }, + { + "id": "13241", + "ident": "6FD2", + "type": "small_airport", + "name": "Big Oaks Ranch Airport", + "latitude_deg": "28.666900634765625", + "longitude_deg": "-81.08450317382812", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Chuluota", + "scheduled_service": "no", + "gps_code": "6FD2", + "local_code": "6FD2" + }, + { + "id": "13242", + "ident": "6FD4", + "type": "heliport", + "name": "Dunedin Heliport", + "latitude_deg": "28.019699096679688", + "longitude_deg": "-82.78980255126953", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Dunedin", + "scheduled_service": "no", + "gps_code": "6FD4", + "local_code": "6FD4" + }, + { + "id": "13243", + "ident": "6FD5", + "type": "small_airport", + "name": "Blanket Bay Airport", + "latitude_deg": "27.778600692749023", + "longitude_deg": "-81.09980010986328", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Yeehaw Junction", + "scheduled_service": "no", + "gps_code": "6FD5", + "local_code": "6FD5" + }, + { + "id": "13244", + "ident": "6FD6", + "type": "small_airport", + "name": "Britt Brown & Porter Ranch Airport", + "latitude_deg": "28.905000686645508", + "longitude_deg": "-81.43309783935547", + "elevation_ft": "167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Eustis", + "scheduled_service": "no", + "gps_code": "6FD6", + "local_code": "6FD6" + }, + { + "id": "13245", + "ident": "6FD7", + "type": "small_airport", + "name": "Thomson Airfield", + "latitude_deg": "27.544200897216797", + "longitude_deg": "-82.53009796142578", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ellenton", + "scheduled_service": "no", + "gps_code": "6FD7", + "local_code": "6FD7" + }, + { + "id": "13246", + "ident": "6FD8", + "type": "heliport", + "name": "Broward Health Medical Center Heliport", + "latitude_deg": "26.103359", + "longitude_deg": "-80.140462", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Lauderdale", + "scheduled_service": "no", + "gps_code": "6FD8", + "local_code": "6FD8", + "keywords": "Broward General Medical Center" + }, + { + "id": "13247", + "ident": "6FD9", + "type": "closed", + "name": "Thunderbird Heliport", + "latitude_deg": "26.13846", + "longitude_deg": "-80.19226", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Lauderdale", + "scheduled_service": "no", + "keywords": "6FD9" + }, + { + "id": "13248", + "ident": "6FL0", + "type": "small_airport", + "name": "Seminole Lake Gliderport", + "latitude_deg": "28.405799865722656", + "longitude_deg": "-81.83789825439453", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Groveland", + "scheduled_service": "no", + "gps_code": "6FL0", + "local_code": "6FL0" + }, + { + "id": "13249", + "ident": "6FL1", + "type": "heliport", + "name": "Mayo Clinic Heliport", + "latitude_deg": "30.264936", + "longitude_deg": "-81.441263", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "6FL1", + "local_code": "6FL1" + }, + { + "id": "13250", + "ident": "6FL2", + "type": "closed", + "name": "Kilpatrick Farm Airport", + "latitude_deg": "30.7274", + "longitude_deg": "-84.917702", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sneads", + "scheduled_service": "no", + "keywords": "6FL2" + }, + { + "id": "13251", + "ident": "6FL3", + "type": "small_airport", + "name": "Payson Ranch Airport", + "latitude_deg": "26.937299728393555", + "longitude_deg": "-81.56700134277344", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Punta Gorda", + "scheduled_service": "no", + "gps_code": "6FL3", + "local_code": "6FL3" + }, + { + "id": "13252", + "ident": "6FL4", + "type": "small_airport", + "name": "Sylvanmir Farms Airport", + "latitude_deg": "29.82110023498535", + "longitude_deg": "-83.57319641113281", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Keaton Beach", + "scheduled_service": "no", + "gps_code": "6FL4", + "local_code": "6FL4" + }, + { + "id": "13253", + "ident": "6FL5", + "type": "heliport", + "name": "HCA Florida Twin Cities Hospital Heliport", + "latitude_deg": "30.534214", + "longitude_deg": "-86.496778", + "elevation_ft": "84", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Niceville", + "scheduled_service": "no", + "gps_code": "6FL5", + "local_code": "6FL5", + "keywords": "Twin Cities Hospital Heliport" + }, + { + "id": "13254", + "ident": "6FL6", + "type": "heliport", + "name": "Sarasota Dept Of Fire-Rescue East Side Heliport", + "latitude_deg": "27.338899612400002", + "longitude_deg": "-82.4964981079", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sarasota", + "scheduled_service": "no", + "gps_code": "6FL6", + "local_code": "6FL6" + }, + { + "id": "45360", + "ident": "6FL7", + "type": "heliport", + "name": "Timmer Heliport", + "latitude_deg": "27.834669", + "longitude_deg": "-81.437533", + "elevation_ft": "104", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Wales", + "scheduled_service": "no", + "gps_code": "6FL7", + "local_code": "6FL7" + }, + { + "id": "14978", + "ident": "6FL8", + "type": "small_airport", + "name": "Ames Field", + "latitude_deg": "29.587499618530273", + "longitude_deg": "-82.87120056152344", + "elevation_ft": "64", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Trenton", + "scheduled_service": "no", + "gps_code": "6FL8", + "local_code": "6FL8", + "keywords": "Formerly 8J2" + }, + { + "id": "13255", + "ident": "6FL9", + "type": "small_airport", + "name": "Saw Whet Farms Airport", + "latitude_deg": "29.690000534057617", + "longitude_deg": "-82.87120056152344", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bell", + "scheduled_service": "no", + "gps_code": "6FL9", + "local_code": "6FL9" + }, + { + "id": "13256", + "ident": "6G6", + "type": "small_airport", + "name": "Cove Valley Airport", + "latitude_deg": "40.454498291015625", + "longitude_deg": "-78.23809814453125", + "elevation_ft": "1156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Williamsburg", + "scheduled_service": "no", + "gps_code": "6G6", + "local_code": "6G6" + }, + { + "id": "13257", + "ident": "6G8", + "type": "small_airport", + "name": "Shamrock Field", + "latitude_deg": "42.095001220703125", + "longitude_deg": "-84.24079895019531", + "elevation_ft": "995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Brooklyn", + "scheduled_service": "no", + "gps_code": "6G8", + "local_code": "6G8" + }, + { + "id": "13258", + "ident": "6GA0", + "type": "small_airport", + "name": "Stoney Point Field", + "latitude_deg": "34.132598876953125", + "longitude_deg": "-84.19940185546875", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Cumming", + "scheduled_service": "no", + "gps_code": "6GA0", + "local_code": "6GA0" + }, + { + "id": "13259", + "ident": "6GA1", + "type": "small_airport", + "name": "Fagundes Field", + "latitude_deg": "33.19998", + "longitude_deg": "-84.581747", + "elevation_ft": "864", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Haralson", + "scheduled_service": "no", + "gps_code": "6GA1", + "local_code": "6GA1" + }, + { + "id": "13260", + "ident": "6GA2", + "type": "heliport", + "name": "Becker Heliport", + "latitude_deg": "33.766389", + "longitude_deg": "-83.763056", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "6GA2", + "local_code": "6GA2" + }, + { + "id": "13261", + "ident": "6GA3", + "type": "heliport", + "name": "Hca Parkway Medical Center Heliport", + "latitude_deg": "33.778099060058594", + "longitude_deg": "-84.61139678955078", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Lithia Springs", + "scheduled_service": "no", + "gps_code": "6GA3", + "local_code": "6GA3" + }, + { + "id": "13262", + "ident": "6GA4", + "type": "small_airport", + "name": "Spring Valley Farm Airport", + "latitude_deg": "33.79710006713867", + "longitude_deg": "-83.85130310058594", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Loganville", + "scheduled_service": "no", + "gps_code": "6GA4", + "local_code": "6GA4" + }, + { + "id": "13263", + "ident": "6GA5", + "type": "small_airport", + "name": "Kolibri Airport", + "latitude_deg": "33.579378", + "longitude_deg": "-84.902771", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Whitesburg", + "scheduled_service": "no", + "gps_code": "6GA5", + "local_code": "6GA5" + }, + { + "id": "13264", + "ident": "6GA6", + "type": "heliport", + "name": "Central State Hospital Heliport", + "latitude_deg": "33.02320098876953", + "longitude_deg": "-83.20099639892578", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Milledgeville", + "scheduled_service": "no", + "gps_code": "6GA6", + "local_code": "6GA6" + }, + { + "id": "13265", + "ident": "6GA7", + "type": "heliport", + "name": "Mac Heliport", + "latitude_deg": "34.20610046386719", + "longitude_deg": "-84.29530334472656", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Cumming", + "scheduled_service": "no", + "gps_code": "6GA7", + "local_code": "6GA7" + }, + { + "id": "13266", + "ident": "6GA8", + "type": "small_airport", + "name": "Flying W Farms Airport", + "latitude_deg": "33.5078010559082", + "longitude_deg": "-85.18560028076172", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Carrollton", + "scheduled_service": "no", + "gps_code": "6GA8", + "local_code": "6GA8" + }, + { + "id": "13267", + "ident": "6GA9", + "type": "closed", + "name": "Palmyra Park Heliport", + "latitude_deg": "31.6068", + "longitude_deg": "-84.170197", + "elevation_ft": "194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Albany", + "scheduled_service": "no", + "keywords": "6GA9" + }, + { + "id": "13268", + "ident": "6GE2", + "type": "small_airport", + "name": "Rainbow Field", + "latitude_deg": "32.832801818847656", + "longitude_deg": "-84.53780364990234", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Woodland", + "scheduled_service": "no", + "gps_code": "6GE2", + "local_code": "6GE2" + }, + { + "id": "345466", + "ident": "6GE4", + "type": "small_airport", + "name": "M K Field", + "latitude_deg": "33.168711", + "longitude_deg": "-84.830021", + "elevation_ft": "866", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Hogansville", + "scheduled_service": "no", + "gps_code": "6GE4", + "local_code": "6GE4" + }, + { + "id": "13269", + "ident": "6H4", + "type": "small_airport", + "name": "Van Wagnen Airport", + "latitude_deg": "42.1563987732", + "longitude_deg": "-84.33439636230001", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Napoleon", + "scheduled_service": "no", + "gps_code": "6H4", + "local_code": "6H4" + }, + { + "id": "13270", + "ident": "6H8", + "type": "small_airport", + "name": "Hazelton Municipal Airport", + "latitude_deg": "46.48189926147461", + "longitude_deg": "-100.2699966430664", + "elevation_ft": "2003", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Hazelton", + "scheduled_service": "no", + "gps_code": "6H8", + "local_code": "6H8" + }, + { + "id": "13271", + "ident": "6IA0", + "type": "heliport", + "name": "Decatur County Hospital Heliport", + "latitude_deg": "40.7505989074707", + "longitude_deg": "-93.73580169677734", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Leon", + "scheduled_service": "no", + "gps_code": "6IA0", + "local_code": "6IA0" + }, + { + "id": "13272", + "ident": "6IA1", + "type": "heliport", + "name": "Loring Hospital Heliport", + "latitude_deg": "42.41939926147461", + "longitude_deg": "-94.97920227050781", + "elevation_ft": "1219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Sac City", + "scheduled_service": "no", + "gps_code": "6IA1", + "local_code": "6IA1" + }, + { + "id": "13273", + "ident": "6IA2", + "type": "heliport", + "name": "Jennie Edmundson Hospital Heliport", + "latitude_deg": "41.26919937133789", + "longitude_deg": "-95.83529663085938", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Council Bluffs", + "scheduled_service": "no", + "gps_code": "6IA2", + "local_code": "6IA2" + }, + { + "id": "13274", + "ident": "6IA3", + "type": "heliport", + "name": "Saint Luke's Medical Center Heliport", + "latitude_deg": "42.51969909667969", + "longitude_deg": "-96.40609741210938", + "elevation_ft": "1286", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Sioux City", + "scheduled_service": "no", + "gps_code": "6IA3", + "local_code": "6IA3" + }, + { + "id": "13275", + "ident": "6IA4", + "type": "heliport", + "name": "Polk County Hospital Heliport", + "latitude_deg": "41.61669921875", + "longitude_deg": "-93.6406021118164", + "elevation_ft": "877", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Des Moines", + "scheduled_service": "no", + "gps_code": "6IA4", + "local_code": "6IA4" + }, + { + "id": "13276", + "ident": "6IA5", + "type": "small_airport", + "name": "Davis Field", + "latitude_deg": "42.61669921875", + "longitude_deg": "-92.21690368652344", + "elevation_ft": "1005", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Dunkerton", + "scheduled_service": "no", + "gps_code": "6IA5", + "local_code": "6IA5" + }, + { + "id": "13277", + "ident": "6IA6", + "type": "closed", + "name": "Leise Airport", + "latitude_deg": "42.150002", + "longitude_deg": "-92.975197", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Albion", + "scheduled_service": "no", + "keywords": "6IA6" + }, + { + "id": "13278", + "ident": "6IA7", + "type": "small_airport", + "name": "R S Auto Airport", + "latitude_deg": "40.99039840698242", + "longitude_deg": "-91.74420166015625", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Lockridge", + "scheduled_service": "no", + "gps_code": "6IA7", + "local_code": "6IA7" + }, + { + "id": "13279", + "ident": "6IA8", + "type": "heliport", + "name": "Mmsc Heliport", + "latitude_deg": "42.04859924316406", + "longitude_deg": "-92.9072036743164", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Marshalltown", + "scheduled_service": "no", + "gps_code": "6IA8", + "local_code": "6IA8" + }, + { + "id": "13280", + "ident": "6IA9", + "type": "heliport", + "name": "Clarke County Hospital Heliport", + "latitude_deg": "41.026100158691406", + "longitude_deg": "-93.76799774169922", + "elevation_ft": "1134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Osceola", + "scheduled_service": "no", + "gps_code": "6IA9", + "local_code": "6IA9" + }, + { + "id": "13281", + "ident": "6ID1", + "type": "small_airport", + "name": "Regan Ranch Airport", + "latitude_deg": "47.6436004639", + "longitude_deg": "-116.698997498", + "elevation_ft": "2720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Coeur D Alene", + "scheduled_service": "no", + "gps_code": "6ID1", + "local_code": "6ID1" + }, + { + "id": "13282", + "ident": "6II0", + "type": "small_airport", + "name": "Turnpaugh Field", + "latitude_deg": "40.645301818847656", + "longitude_deg": "-86.29280090332031", + "elevation_ft": "757", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Walton", + "scheduled_service": "no", + "gps_code": "6II0", + "local_code": "6II0" + }, + { + "id": "13283", + "ident": "6II1", + "type": "closed", + "name": "Executive Inn Heliport", + "latitude_deg": "37.971699", + "longitude_deg": "-87.565598", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Evansville", + "scheduled_service": "no", + "keywords": "6II1" + }, + { + "id": "13284", + "ident": "6II2", + "type": "small_airport", + "name": "Willis Airport Site No. 2 Airport", + "latitude_deg": "39.7333984375", + "longitude_deg": "-85.72329711914062", + "elevation_ft": "881", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Greenfield", + "scheduled_service": "no", + "gps_code": "6II2", + "local_code": "6II2" + }, + { + "id": "13285", + "ident": "6II3", + "type": "heliport", + "name": "Terre Haute Pepsi Cola Heliport", + "latitude_deg": "39.48860168457031", + "longitude_deg": "-87.35919952392578", + "elevation_ft": "502", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Terre Haute", + "scheduled_service": "no", + "gps_code": "6II3", + "local_code": "6II3" + }, + { + "id": "13286", + "ident": "6II4", + "type": "closed", + "name": "Cornell Airport", + "latitude_deg": "37.982201", + "longitude_deg": "-87.298897", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Boonville", + "scheduled_service": "no", + "keywords": "6II4" + }, + { + "id": "13287", + "ident": "6II5", + "type": "heliport", + "name": "Southport Heliport", + "latitude_deg": "39.66809844970703", + "longitude_deg": "-86.09500122070312", + "elevation_ft": "801", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "6II5", + "local_code": "6II5" + }, + { + "id": "13288", + "ident": "6II6", + "type": "small_airport", + "name": "David Beiswanger Ultralightport", + "latitude_deg": "41.56060028076172", + "longitude_deg": "-85.2739028930664", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "South Milford", + "scheduled_service": "no", + "gps_code": "6II6", + "local_code": "6II6" + }, + { + "id": "13289", + "ident": "6II7", + "type": "small_airport", + "name": "Bergs Airport", + "latitude_deg": "39.886199951171875", + "longitude_deg": "-86.5813980102539", + "elevation_ft": "975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lizton", + "scheduled_service": "no", + "gps_code": "6II7", + "local_code": "6II7" + }, + { + "id": "13290", + "ident": "6II8", + "type": "small_airport", + "name": "Godahavit Airport", + "latitude_deg": "38.65449905395508", + "longitude_deg": "-87.28279876708984", + "elevation_ft": "495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Wheatland", + "scheduled_service": "no", + "gps_code": "6II8", + "local_code": "6II8" + }, + { + "id": "13291", + "ident": "6IL0", + "type": "small_airport", + "name": "Idlas Restricted Landing Area", + "latitude_deg": "42.131503", + "longitude_deg": "-88.700358", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Genoa", + "scheduled_service": "no", + "gps_code": "IL60", + "local_code": "IL60", + "keywords": "6IL0, Ramme Airport" + }, + { + "id": "13292", + "ident": "6IL1", + "type": "heliport", + "name": "The American Coal Company Heliport", + "latitude_deg": "37.8384017944", + "longitude_deg": "-88.5828018188", + "elevation_ft": "439", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Galatia", + "scheduled_service": "no", + "gps_code": "6IL1", + "local_code": "6IL1" + }, + { + "id": "13293", + "ident": "6IL2", + "type": "small_airport", + "name": "Phyllis Field", + "latitude_deg": "42.221099853515625", + "longitude_deg": "-88.41790008544922", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Huntley", + "scheduled_service": "no", + "gps_code": "6IL2", + "local_code": "6IL2" + }, + { + "id": "13294", + "ident": "6IL3", + "type": "closed", + "name": "Rummel Restricted Landing Area", + "latitude_deg": "42.166698", + "longitude_deg": "-89.500099", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "German Valley", + "scheduled_service": "no", + "keywords": "6IL3" + }, + { + "id": "13295", + "ident": "6IL4", + "type": "small_airport", + "name": "Foxfield Aerodrome", + "latitude_deg": "42.160301208496094", + "longitude_deg": "-89.88619995117188", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lanark", + "scheduled_service": "no", + "gps_code": "6IL4", + "local_code": "6IL4" + }, + { + "id": "13296", + "ident": "6IL5", + "type": "small_airport", + "name": "Keil Airport", + "latitude_deg": "37.38639831542969", + "longitude_deg": "-89.160400390625", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Dongola", + "scheduled_service": "no", + "gps_code": "6IL5", + "local_code": "6IL5" + }, + { + "id": "13297", + "ident": "6IL6", + "type": "closed", + "name": "Reid Restricted Landing Area", + "latitude_deg": "42.118401", + "longitude_deg": "-88.407898", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Gilberts", + "scheduled_service": "no", + "keywords": "6IL6" + }, + { + "id": "13298", + "ident": "6IL7", + "type": "closed", + "name": "Ameritech Center Heliport", + "latitude_deg": "42.077801", + "longitude_deg": "-88.123595", + "elevation_ft": "842", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hoffman Estates", + "scheduled_service": "no", + "keywords": "6IL7" + }, + { + "id": "13299", + "ident": "6IL8", + "type": "heliport", + "name": "Centralia Correctional Center Heliport", + "latitude_deg": "38.55440139770508", + "longitude_deg": "-89.19640350341797", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Centralia", + "scheduled_service": "no", + "gps_code": "6IL8", + "local_code": "6IL8" + }, + { + "id": "45415", + "ident": "6IN0", + "type": "closed", + "name": "Volmedics Heliport", + "latitude_deg": "39.474508", + "longitude_deg": "-87.063642", + "elevation_ft": "702", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Brazil", + "scheduled_service": "no", + "keywords": "6IN0" + }, + { + "id": "13300", + "ident": "6IN2", + "type": "small_airport", + "name": "Whelen Airport", + "latitude_deg": "39.49359893798828", + "longitude_deg": "-85.64859771728516", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Waldron", + "scheduled_service": "no", + "gps_code": "6IN2", + "local_code": "6IN2" + }, + { + "id": "13301", + "ident": "6IN3", + "type": "small_airport", + "name": "Wyandotte Airport", + "latitude_deg": "40.34920120239258", + "longitude_deg": "-86.76390075683594", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "6IN3", + "local_code": "6IN3" + }, + { + "id": "13302", + "ident": "6IN4", + "type": "small_airport", + "name": "Fischer Field", + "latitude_deg": "39.466009", + "longitude_deg": "-85.699303", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Waldron", + "scheduled_service": "no", + "gps_code": "6IN4", + "local_code": "6IN4" + }, + { + "id": "13303", + "ident": "6IN5", + "type": "small_airport", + "name": "Foghorn Farms Airport", + "latitude_deg": "40.032798767089844", + "longitude_deg": "-85.78359985351562", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Pendleton", + "scheduled_service": "no", + "gps_code": "6IN5", + "local_code": "6IN5" + }, + { + "id": "13304", + "ident": "6IN6", + "type": "small_airport", + "name": "Mershon Airport", + "latitude_deg": "39.54890060424805", + "longitude_deg": "-86.47669982910156", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Monrovia", + "scheduled_service": "no", + "gps_code": "6IN6", + "local_code": "6IN6" + }, + { + "id": "13305", + "ident": "6IN7", + "type": "seaplane_base", + "name": "Lake Pleasant Seaplane Base", + "latitude_deg": "41.756999969482", + "longitude_deg": "-85.091903686523", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Angola", + "scheduled_service": "no", + "gps_code": "C67", + "local_code": "C67", + "keywords": "6IN7" + }, + { + "id": "13306", + "ident": "6IN8", + "type": "small_airport", + "name": "Mcminn Airport", + "latitude_deg": "39.52859878540039", + "longitude_deg": "-85.31670379638672", + "elevation_ft": "1065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Rushville", + "scheduled_service": "no", + "gps_code": "6IN8", + "local_code": "6IN8" + }, + { + "id": "13307", + "ident": "6IN9", + "type": "seaplane_base", + "name": "Lake James Seaplane Base", + "latitude_deg": "41.700000762939", + "longitude_deg": "-85.03929901123", + "elevation_ft": "964", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Angola", + "scheduled_service": "no", + "gps_code": "01E", + "local_code": "01E", + "keywords": "6IN9" + }, + { + "id": "13308", + "ident": "6IS0", + "type": "small_airport", + "name": "Day Aero-Place Airport", + "latitude_deg": "40.095001220703125", + "longitude_deg": "-88.12870025634766", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Urbana", + "scheduled_service": "no", + "gps_code": "6IS0", + "local_code": "6IS0" + }, + { + "id": "13309", + "ident": "6IS1", + "type": "heliport", + "name": "Cary Fire Dept Heliport", + "latitude_deg": "42.2125015259", + "longitude_deg": "-88.2522964478", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Cary", + "scheduled_service": "no", + "gps_code": "6IS1", + "local_code": "6IS1" + }, + { + "id": "13310", + "ident": "6IS2", + "type": "heliport", + "name": "Lemont Fire Department Heliport", + "latitude_deg": "41.672156", + "longitude_deg": "-88.006368", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lemont", + "scheduled_service": "no", + "gps_code": "6IS2", + "local_code": "6IS2" + }, + { + "id": "13311", + "ident": "6IS4", + "type": "heliport", + "name": "Good Samaritan Regional Health Care Center Heliport", + "latitude_deg": "38.32229995727539", + "longitude_deg": "-88.91059875488281", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "6IS4", + "local_code": "6IS4" + }, + { + "id": "13312", + "ident": "6IS5", + "type": "heliport", + "name": "Presence Holy Family Medical Center Heliport", + "latitude_deg": "42.054945", + "longitude_deg": "-87.891348", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Des Plaines", + "scheduled_service": "no", + "gps_code": "6IS5", + "local_code": "6IS5", + "keywords": "Holy Family Hospital" + }, + { + "id": "13314", + "ident": "6IS7", + "type": "heliport", + "name": "Presence Sts Mary and Elizabeth Medical Center Heliport", + "latitude_deg": "41.902802", + "longitude_deg": "-87.6828", + "elevation_ft": "597", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "no", + "gps_code": "6IS7", + "local_code": "6IS7", + "keywords": "St Mary of Nazareth Hospital Center Heliport" + }, + { + "id": "13315", + "ident": "6IS8", + "type": "small_airport", + "name": "Trisler Airport", + "latitude_deg": "39.989498138427734", + "longitude_deg": "-87.9052963256836", + "elevation_ft": "672", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Homer", + "scheduled_service": "no", + "gps_code": "6IS8", + "local_code": "6IS8" + }, + { + "id": "13316", + "ident": "6IS9", + "type": "heliport", + "name": "St Joseph Medical Center - Joliet Heliport", + "latitude_deg": "41.529122", + "longitude_deg": "-88.137063", + "elevation_ft": "641", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Joliet", + "scheduled_service": "no", + "gps_code": "6IS9", + "local_code": "6IS9" + }, + { + "id": "13317", + "ident": "6J6", + "type": "small_airport", + "name": "Edgefield County Airport", + "latitude_deg": "33.73680114746094", + "longitude_deg": "-81.8196029663086", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Trenton", + "scheduled_service": "no", + "gps_code": "6J6", + "local_code": "6J6" + }, + { + "id": "13318", + "ident": "6J8", + "type": "small_airport", + "name": "Oak Tree Landing", + "latitude_deg": "29.7196756944", + "longitude_deg": "-82.66608430560001", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "High Springs", + "scheduled_service": "no", + "gps_code": "6J8", + "local_code": "6J8" + }, + { + "id": "13319", + "ident": "6JY8", + "type": "heliport", + "name": "Cablevision Bethpage Heliport", + "latitude_deg": "40.7593994140625", + "longitude_deg": "-73.49690246582031", + "elevation_ft": "142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Bethpage", + "scheduled_service": "no", + "gps_code": "6JY8", + "local_code": "6JY8" + }, + { + "id": "13320", + "ident": "6K2", + "type": "small_airport", + "name": "Shelby County Airport", + "latitude_deg": "39.812599182128906", + "longitude_deg": "-92.05020141601562", + "elevation_ft": "766", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Shelbyville", + "scheduled_service": "no", + "gps_code": "6K2", + "local_code": "6K2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shelby_County_Airport_(Missouri)" + }, + { + "id": "13321", + "ident": "6K7", + "type": "small_airport", + "name": "Grundy Center Municipal Airport", + "latitude_deg": "42.350799560546875", + "longitude_deg": "-92.84349822998047", + "elevation_ft": "1075", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Grundy Center", + "scheduled_service": "no", + "gps_code": "6K7", + "local_code": "6K7" + }, + { + "id": "13323", + "ident": "6K9", + "type": "small_airport", + "name": "Keosauqua Municipal Airport", + "latitude_deg": "40.733406", + "longitude_deg": "-91.949531", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Keosauqua", + "scheduled_service": "no", + "gps_code": "K6K9", + "local_code": "6K9" + }, + { + "id": "13324", + "ident": "6KS0", + "type": "heliport", + "name": "Republic County Hospital Heliport", + "latitude_deg": "39.81779861450195", + "longitude_deg": "-97.63729858398438", + "elevation_ft": "1470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Belleville", + "scheduled_service": "no", + "gps_code": "6KS0", + "local_code": "6KS0" + }, + { + "id": "13325", + "ident": "6KS1", + "type": "closed", + "name": "Quinter Air Strip", + "latitude_deg": "39.063851", + "longitude_deg": "-100.243721", + "elevation_ft": "2681", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Quinter", + "scheduled_service": "no", + "keywords": "6KS1" + }, + { + "id": "13326", + "ident": "6KS2", + "type": "small_airport", + "name": "Stevenson Private Airport", + "latitude_deg": "39.44169998168945", + "longitude_deg": "-100.62999725341797", + "elevation_ft": "2940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Selden", + "scheduled_service": "no", + "gps_code": "6KS2", + "local_code": "6KS2" + }, + { + "id": "13327", + "ident": "6KS3", + "type": "closed", + "name": "Walker Strip", + "latitude_deg": "38.8456", + "longitude_deg": "-101.748001", + "elevation_ft": "3670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Sharon Springs", + "scheduled_service": "no", + "keywords": "6KS3" + }, + { + "id": "13328", + "ident": "6KS4", + "type": "small_airport", + "name": "Bussen Airport", + "latitude_deg": "38.90530014038086", + "longitude_deg": "-101.78399658203125", + "elevation_ft": "3475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Sharon Springs", + "scheduled_service": "no", + "gps_code": "6KS4", + "local_code": "6KS4" + }, + { + "id": "13329", + "ident": "6KS5", + "type": "closed", + "name": "Yeamans Fox Nest Airport", + "latitude_deg": "38.22628", + "longitude_deg": "-94.663353", + "elevation_ft": "782", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Pleasanton", + "scheduled_service": "no", + "keywords": "6KS5" + }, + { + "id": "13330", + "ident": "6KS6", + "type": "closed", + "name": "Kiowa Airport", + "latitude_deg": "37.015301", + "longitude_deg": "-98.495903", + "elevation_ft": "1333", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Kiowa", + "scheduled_service": "no", + "keywords": "6KS6" + }, + { + "id": "13331", + "ident": "6KS7", + "type": "small_airport", + "name": "Shute Airport", + "latitude_deg": "39.984500885009766", + "longitude_deg": "-98.51029968261719", + "elevation_ft": "1960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "6KS7", + "local_code": "6KS7" + }, + { + "id": "13332", + "ident": "6KS8", + "type": "closed", + "name": "Mary's Place Airport", + "latitude_deg": "38.383598", + "longitude_deg": "-96.146103", + "elevation_ft": "1138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Emporia", + "scheduled_service": "no", + "keywords": "6KS8" + }, + { + "id": "13333", + "ident": "6KS9", + "type": "heliport", + "name": "Providence Medical Center Heliport", + "latitude_deg": "39.1268997192", + "longitude_deg": "-94.7876968384", + "elevation_ft": "986", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Kansas City", + "scheduled_service": "no", + "gps_code": "6KS9", + "local_code": "6KS9" + }, + { + "id": "345419", + "ident": "6KY0", + "type": "heliport", + "name": "Harlan ARH Hospital Heliport", + "latitude_deg": "36.809044", + "longitude_deg": "-83.315034", + "elevation_ft": "1407", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Harlan", + "scheduled_service": "no", + "gps_code": "6KY0", + "local_code": "6KY0", + "keywords": "Air Evac 88 Heliport" + }, + { + "id": "45424", + "ident": "6KY3", + "type": "small_airport", + "name": "Flying C Farms Airport", + "latitude_deg": "38.328611", + "longitude_deg": "-85.214167", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Shelbyville", + "scheduled_service": "no", + "gps_code": "6KY3", + "local_code": "6KY3" + }, + { + "id": "45421", + "ident": "6KY4", + "type": "small_airport", + "name": "Adair Airport", + "latitude_deg": "36.753333", + "longitude_deg": "-85.953889", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Fountain Run", + "scheduled_service": "no", + "gps_code": "6KY4", + "local_code": "6KY4" + }, + { + "id": "13334", + "ident": "6KY6", + "type": "small_airport", + "name": "Jeffries Farm Airport", + "latitude_deg": "38.3606", + "longitude_deg": "-85.363098", + "elevation_ft": "803", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Crestwood", + "scheduled_service": "no", + "gps_code": "6KY6", + "local_code": "6KY6" + }, + { + "id": "299713", + "ident": "6KY7", + "type": "closed", + "name": "Alexander Field", + "latitude_deg": "36.523", + "longitude_deg": "-89.051693", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Hickman", + "scheduled_service": "no", + "gps_code": "6KY7", + "keywords": "6KY7" + }, + { + "id": "346058", + "ident": "6KY8", + "type": "heliport", + "name": "Gateway Industrial Park Heliport", + "latitude_deg": "37.159756", + "longitude_deg": "-82.664003", + "elevation_ft": "1770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Jenkins", + "scheduled_service": "no", + "gps_code": "6KY8", + "local_code": "6KY8" + }, + { + "id": "13335", + "ident": "6LA0", + "type": "heliport", + "name": "Jackson Barracks Heliport", + "latitude_deg": "29.953501", + "longitude_deg": "-90.009499", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no", + "gps_code": "6LA0", + "local_code": "6LA0" + }, + { + "id": "13336", + "ident": "6LA1", + "type": "small_airport", + "name": "Cottonwood Airport", + "latitude_deg": "32.98400115966797", + "longitude_deg": "-91.20590209960938", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Providence", + "scheduled_service": "no", + "gps_code": "6LA1", + "local_code": "6LA1" + }, + { + "id": "13337", + "ident": "6LA2", + "type": "closed", + "name": "Division 'B' Office Heliport", + "latitude_deg": "29.587146", + "longitude_deg": "-90.738619", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Houma", + "scheduled_service": "no", + "keywords": "6LA2" + }, + { + "id": "13338", + "ident": "6LA3", + "type": "heliport", + "name": "New Orleans East Hospital Heliport", + "latitude_deg": "30.028439", + "longitude_deg": "-89.975604", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no", + "gps_code": "6LA3", + "local_code": "6LA3", + "keywords": "Pendleton Memorial Methodist Hospital Heliport" + }, + { + "id": "13339", + "ident": "6LA4", + "type": "closed", + "name": "Dyer Airport", + "latitude_deg": "30.81204", + "longitude_deg": "-92.581186", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Oakdale", + "scheduled_service": "no", + "gps_code": "6LA4", + "local_code": "6LA4" + }, + { + "id": "13340", + "ident": "6LA5", + "type": "small_airport", + "name": "Church Point Flyers Airport", + "latitude_deg": "30.459717", + "longitude_deg": "-92.240512", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Church Point", + "scheduled_service": "no", + "gps_code": "6LA5", + "local_code": "6LA5" + }, + { + "id": "13341", + "ident": "6LA6", + "type": "small_airport", + "name": "Williams Flying Service Airport", + "latitude_deg": "32.224604", + "longitude_deg": "-91.856413", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Mangham", + "scheduled_service": "no", + "gps_code": "6LA6", + "local_code": "6LA6" + }, + { + "id": "13342", + "ident": "6LA7", + "type": "heliport", + "name": "Cagc Freshwater Terminal Heliport", + "latitude_deg": "29.537700653076172", + "longitude_deg": "-92.30290222167969", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Pecan Island", + "scheduled_service": "no", + "gps_code": "6LA7", + "local_code": "6LA7" + }, + { + "id": "13343", + "ident": "6LA8", + "type": "heliport", + "name": "Mud Hole Heliport", + "latitude_deg": "29.556900024414062", + "longitude_deg": "-92.44180297851562", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kaplan", + "scheduled_service": "no", + "gps_code": "6LA8", + "local_code": "6LA8" + }, + { + "id": "13344", + "ident": "6LA9", + "type": "closed", + "name": "Energy Heliport", + "latitude_deg": "29.57543", + "longitude_deg": "-90.702866", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Houma", + "scheduled_service": "no", + "keywords": "6LA9" + }, + { + "id": "13345", + "ident": "6LL0", + "type": "small_airport", + "name": "Williamson Airport", + "latitude_deg": "39.31890106201172", + "longitude_deg": "-88.42500305175781", + "elevation_ft": "664", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Neoga", + "scheduled_service": "no", + "gps_code": "6LL0", + "local_code": "6LL0" + }, + { + "id": "13346", + "ident": "6LL1", + "type": "closed", + "name": "Cumberland Air Park RLA", + "latitude_deg": "39.3139", + "longitude_deg": "-88.344498", + "elevation_ft": "631", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Neoga", + "scheduled_service": "no", + "keywords": "6LL1" + }, + { + "id": "13347", + "ident": "6LL2", + "type": "small_airport", + "name": "Young Airport", + "latitude_deg": "41.16450119018555", + "longitude_deg": "-90.55740356445312", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Viola", + "scheduled_service": "no", + "gps_code": "6LL2", + "local_code": "6LL2" + }, + { + "id": "13348", + "ident": "6LL4", + "type": "small_airport", + "name": "Wildy Field", + "latitude_deg": "38.26750183105469", + "longitude_deg": "-89.89179992675781", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "New Athens", + "scheduled_service": "no", + "gps_code": "6LL4", + "local_code": "6LL4" + }, + { + "id": "13349", + "ident": "6LL5", + "type": "small_airport", + "name": "Smith Restricted Landing Area", + "latitude_deg": "39.78950119018555", + "longitude_deg": "-89.99120330810547", + "elevation_ft": "632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "New Berlin", + "scheduled_service": "no", + "gps_code": "6LL5", + "local_code": "6LL5" + }, + { + "id": "13350", + "ident": "6LL6", + "type": "small_airport", + "name": "Fischer's RLA Restricted Landing Area", + "latitude_deg": "38.4916992188", + "longitude_deg": "-89.6633987427", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "New Memphis", + "scheduled_service": "no", + "gps_code": "6LL6", + "local_code": "6LL6" + }, + { + "id": "13351", + "ident": "6LL7", + "type": "heliport", + "name": "Jasper County Safety Council Heliport", + "latitude_deg": "38.989498138427734", + "longitude_deg": "-88.17639923095703", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Newton", + "scheduled_service": "no", + "gps_code": "6LL7", + "local_code": "6LL7" + }, + { + "id": "13352", + "ident": "6LL8", + "type": "closed", + "name": "Songwood Inn Airport", + "latitude_deg": "40.792301", + "longitude_deg": "-87.725304", + "elevation_ft": "629", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Watseka", + "scheduled_service": "no", + "keywords": "6LL8" + }, + { + "id": "13353", + "ident": "6LL9", + "type": "heliport", + "name": "Hurst Aviation Heliport", + "latitude_deg": "38.192298889160156", + "longitude_deg": "-89.59539794921875", + "elevation_ft": "529", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Coulterville", + "scheduled_service": "no", + "gps_code": "6LL9", + "local_code": "6LL9" + }, + { + "id": "13354", + "ident": "6M8", + "type": "small_airport", + "name": "Marked Tree Municipal Airport", + "latitude_deg": "35.532941", + "longitude_deg": "-90.400137", + "elevation_ft": "219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Marked Tree", + "scheduled_service": "no", + "gps_code": "K6M8", + "local_code": "6M8" + }, + { + "id": "13355", + "ident": "6MA0", + "type": "seaplane_base", + "name": "Lake Gardner Seaplane Base", + "latitude_deg": "42.86149978637695", + "longitude_deg": "-70.94339752197266", + "elevation_ft": "87", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Amesbury", + "scheduled_service": "no", + "gps_code": "6MA0", + "local_code": "6MA0", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_Gardner_Seaplane_Base" + }, + { + "id": "13356", + "ident": "6MA1", + "type": "heliport", + "name": "Nason Hill Heliport", + "latitude_deg": "42.205992", + "longitude_deg": "-71.378855", + "elevation_ft": "182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Sherborn", + "scheduled_service": "no", + "gps_code": "6MA1", + "local_code": "6MA1" + }, + { + "id": "13357", + "ident": "6MA2", + "type": "small_airport", + "name": "Meadowbrook Airport", + "latitude_deg": "42.86009979248047", + "longitude_deg": "-70.99659729003906", + "elevation_ft": "117", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Amesbury", + "scheduled_service": "no", + "gps_code": "6MA2", + "local_code": "6MA2" + }, + { + "id": "13358", + "ident": "6MA3", + "type": "heliport", + "name": "Scibelli Heliport", + "latitude_deg": "42.06290054321289", + "longitude_deg": "-72.72450256347656", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Southwick", + "scheduled_service": "no", + "gps_code": "6MA3", + "local_code": "6MA3" + }, + { + "id": "13359", + "ident": "6MA4", + "type": "heliport", + "name": "Ferncroft Village Heliport", + "latitude_deg": "42.5973014831543", + "longitude_deg": "-70.97029876708984", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Middleton", + "scheduled_service": "no", + "gps_code": "6MA4", + "local_code": "6MA4" + }, + { + "id": "13360", + "ident": "6MA5", + "type": "heliport", + "name": "Baystate Medical Ctr Heliport", + "latitude_deg": "42.1220016479", + "longitude_deg": "-72.6008987427", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "6MA5", + "local_code": "6MA5" + }, + { + "id": "13361", + "ident": "6MA6", + "type": "heliport", + "name": "Cotuit Heliport", + "latitude_deg": "41.617045", + "longitude_deg": "-70.44327", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Cotuit", + "scheduled_service": "no", + "gps_code": "6MA6", + "local_code": "6MA6" + }, + { + "id": "13362", + "ident": "6MA7", + "type": "heliport", + "name": "Quantum (Shrewsbury) Heliport", + "latitude_deg": "42.27289962768555", + "longitude_deg": "-71.69259643554688", + "elevation_ft": "545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Shrewsbury", + "scheduled_service": "no", + "gps_code": "6MA7", + "local_code": "6MA7" + }, + { + "id": "13363", + "ident": "6MA8", + "type": "seaplane_base", + "name": "Acushnet River Seaplane Base", + "latitude_deg": "41.647300720214844", + "longitude_deg": "-70.9175033569336", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "New Bedford", + "scheduled_service": "no", + "gps_code": "6MA8", + "local_code": "6MA8" + }, + { + "id": "13364", + "ident": "6MA9", + "type": "seaplane_base", + "name": "Cuttyhunk Harbor Seaplane Base", + "latitude_deg": "41.423199", + "longitude_deg": "-70.927298", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Cuttyhunk", + "scheduled_service": "no", + "gps_code": "6MA9", + "local_code": "6MA9" + }, + { + "id": "13365", + "ident": "6MD1", + "type": "small_airport", + "name": "Dileo Field", + "latitude_deg": "38.842446", + "longitude_deg": "-75.915742", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Denton", + "scheduled_service": "no", + "gps_code": "6MD1", + "local_code": "6MD1" + }, + { + "id": "13366", + "ident": "6MD2", + "type": "closed", + "name": "Spring Landing Airport", + "latitude_deg": "39.2458", + "longitude_deg": "-75.884399", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Crumpton", + "scheduled_service": "no", + "keywords": "6MD2" + }, + { + "id": "13367", + "ident": "6MD3", + "type": "small_airport", + "name": "Harp Airport", + "latitude_deg": "39.596900939941406", + "longitude_deg": "-77.54669952392578", + "elevation_ft": "1360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Wolfsville", + "scheduled_service": "no", + "gps_code": "6MD3", + "local_code": "6MD3" + }, + { + "id": "13368", + "ident": "6MD4", + "type": "small_airport", + "name": "Pembroke Farm Airport", + "latitude_deg": "39.719398498535156", + "longitude_deg": "-76.2083969116211", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Conowingo", + "scheduled_service": "no", + "gps_code": "6MD4", + "local_code": "6MD4" + }, + { + "id": "45459", + "ident": "6MD6", + "type": "heliport", + "name": "UM Charles Regional Medical Center Heliport", + "latitude_deg": "38.528516", + "longitude_deg": "-76.970992", + "elevation_ft": "168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "La Plata", + "scheduled_service": "no", + "gps_code": "6MD6", + "local_code": "6MD6", + "keywords": "Civista Medical Center Heliport" + }, + { + "id": "13369", + "ident": "6MD7", + "type": "small_airport", + "name": "D'Angelo Airport", + "latitude_deg": "39.33919906616211", + "longitude_deg": "-75.7667007446289", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Golts", + "scheduled_service": "no", + "gps_code": "6MD7", + "local_code": "6MD7" + }, + { + "id": "13370", + "ident": "6MD8", + "type": "small_airport", + "name": "White's Airstrip", + "latitude_deg": "38.442298889160156", + "longitude_deg": "-75.4032974243164", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Pittsville", + "scheduled_service": "no", + "gps_code": "6MD8", + "local_code": "6MD8" + }, + { + "id": "13371", + "ident": "6MD9", + "type": "heliport", + "name": "Washington Adventist Hospital Heliport", + "latitude_deg": "38.985733", + "longitude_deg": "-77.001624", + "elevation_ft": "242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Takoma Park", + "scheduled_service": "no", + "gps_code": "6MD9", + "local_code": "6MD9" + }, + { + "id": "326878", + "ident": "6ME6", + "type": "small_airport", + "name": "Abbots Airport", + "latitude_deg": "44.353332", + "longitude_deg": "-70.395", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "East Sumner", + "scheduled_service": "no", + "gps_code": "6ME6", + "local_code": "6ME6" + }, + { + "id": "13372", + "ident": "6MI0", + "type": "small_airport", + "name": "King Trout Airport", + "latitude_deg": "44.616057", + "longitude_deg": "-84.950881", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Grayling", + "scheduled_service": "no", + "gps_code": "6MI0", + "local_code": "6MI0" + }, + { + "id": "13373", + "ident": "6MI1", + "type": "small_airport", + "name": "Jensen Field", + "latitude_deg": "43.263099670410156", + "longitude_deg": "-83.56379699707031", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Millington", + "scheduled_service": "no", + "gps_code": "6MI1", + "local_code": "6MI1" + }, + { + "id": "13374", + "ident": "6MI2", + "type": "closed", + "name": "Deyoung Airport", + "latitude_deg": "42.9678", + "longitude_deg": "-85.9617", + "elevation_ft": "656", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Allendale", + "scheduled_service": "no", + "gps_code": "6MI2", + "local_code": "6MI2" + }, + { + "id": "13375", + "ident": "6MI3", + "type": "small_airport", + "name": "Curt's Place Airport", + "latitude_deg": "42.763099670410156", + "longitude_deg": "-85.98280334472656", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Zeeland", + "scheduled_service": "no", + "gps_code": "6MI3", + "local_code": "6MI3" + }, + { + "id": "13376", + "ident": "6MI4", + "type": "heliport", + "name": "Guardian Industries Heliport", + "latitude_deg": "42.45000076293945", + "longitude_deg": "-83.46990203857422", + "elevation_ft": "832", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Novi", + "scheduled_service": "no", + "gps_code": "6MI4", + "local_code": "6MI4" + }, + { + "id": "13377", + "ident": "6MI5", + "type": "heliport", + "name": "Survival Flight Heliport", + "latitude_deg": "42.28390121459961", + "longitude_deg": "-83.72799682617188", + "elevation_ft": "892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ann Arbor", + "scheduled_service": "no", + "gps_code": "6MI5", + "local_code": "6MI5" + }, + { + "id": "13378", + "ident": "6MI6", + "type": "small_airport", + "name": "Hancock Airport", + "latitude_deg": "41.85279846191406", + "longitude_deg": "-86.43609619140625", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Buchanan", + "scheduled_service": "no", + "gps_code": "6MI6", + "local_code": "6MI6" + }, + { + "id": "13379", + "ident": "6MI7", + "type": "small_airport", + "name": "J P's Field", + "latitude_deg": "42.80609893798828", + "longitude_deg": "-85.93419647216797", + "elevation_ft": "708", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Zeeland", + "scheduled_service": "no", + "gps_code": "6MI7", + "local_code": "6MI7" + }, + { + "id": "13380", + "ident": "6MI8", + "type": "heliport", + "name": "Omans Heliport", + "latitude_deg": "42.91889953613281", + "longitude_deg": "-83.06189727783203", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Almont", + "scheduled_service": "no", + "gps_code": "6MI8", + "local_code": "6MI8" + }, + { + "id": "13381", + "ident": "6MI9", + "type": "heliport", + "name": "Jr North Heliport", + "latitude_deg": "44.41529846191406", + "longitude_deg": "-83.92919921875", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Long Lake", + "scheduled_service": "no", + "gps_code": "6MI9", + "local_code": "6MI9" + }, + { + "id": "13382", + "ident": "6MN0", + "type": "small_airport", + "name": "Sky Blue Airfield", + "latitude_deg": "47.055599", + "longitude_deg": "-95.423103", + "elevation_ft": "1620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Ponsford", + "scheduled_service": "no", + "gps_code": "6MN0", + "local_code": "6MN0", + "keywords": "Rooney Airfield" + }, + { + "id": "13383", + "ident": "6MN1", + "type": "closed", + "name": "Chuck West Memorial Heliport", + "latitude_deg": "46.010201", + "longitude_deg": "-95.681198", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Evansville", + "scheduled_service": "no", + "keywords": "6MN1" + }, + { + "id": "13384", + "ident": "6MN2", + "type": "closed", + "name": "Brown's Private Airport", + "latitude_deg": "45.545502", + "longitude_deg": "-95.779502", + "elevation_ft": "1175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hancock", + "scheduled_service": "no", + "keywords": "6MN2" + }, + { + "id": "13385", + "ident": "6MN3", + "type": "closed", + "name": "Hopkins Police Heliport", + "latitude_deg": "44.916599", + "longitude_deg": "-93.416901", + "elevation_ft": "918", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hopkins", + "scheduled_service": "no", + "keywords": "6MN3" + }, + { + "id": "13386", + "ident": "6MN4", + "type": "seaplane_base", + "name": "North Center Lake Seaplane Base", + "latitude_deg": "45.39720153808594", + "longitude_deg": "-92.83159637451172", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Lindstrom", + "scheduled_service": "no", + "gps_code": "6MN4", + "local_code": "6MN4" + }, + { + "id": "13387", + "ident": "6MN5", + "type": "seaplane_base", + "name": "Gale's Seaplane Base", + "latitude_deg": "45.207698822021484", + "longitude_deg": "-94.1624984741211", + "elevation_ft": "1011", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "French Lake", + "scheduled_service": "no", + "gps_code": "6MN5", + "local_code": "6MN5" + }, + { + "id": "13388", + "ident": "6MN6", + "type": "seaplane_base", + "name": "Goose Lake Seaplane Base", + "latitude_deg": "44.88750076293945", + "longitude_deg": "-93.84210205078125", + "elevation_ft": "967", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Waconia", + "scheduled_service": "no", + "gps_code": "6MN6", + "local_code": "6MN6" + }, + { + "id": "13389", + "ident": "6MN7", + "type": "closed", + "name": "Mankato Farmstrip Airport", + "latitude_deg": "44.099998", + "longitude_deg": "-93.916901", + "elevation_ft": "1002", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Mankato", + "scheduled_service": "no", + "keywords": "6MN7" + }, + { + "id": "13390", + "ident": "6MN8", + "type": "small_airport", + "name": "Underland Airstrip", + "latitude_deg": "44.1526985168457", + "longitude_deg": "-93.27239990234375", + "elevation_ft": "1145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Medford", + "scheduled_service": "no", + "gps_code": "6MN8", + "local_code": "6MN8" + }, + { + "id": "13391", + "ident": "6MN9", + "type": "small_airport", + "name": "Benson Airport", + "latitude_deg": "45.116600036621094", + "longitude_deg": "-92.99600219726562", + "elevation_ft": "942", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "White Bear Township", + "scheduled_service": "no", + "gps_code": "6MN9", + "local_code": "6MN9" + }, + { + "id": "13392", + "ident": "6MO0", + "type": "small_airport", + "name": "Blackhawk Airport", + "latitude_deg": "38.95560073852539", + "longitude_deg": "-90.8147964477539", + "elevation_ft": "584", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Old Monroe", + "scheduled_service": "no", + "gps_code": "6MO0", + "local_code": "6MO0" + }, + { + "id": "13393", + "ident": "6MO1", + "type": "small_airport", + "name": "Markt Air Strip", + "latitude_deg": "39.96670150756836", + "longitude_deg": "-95.06690216064453", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Oregon", + "scheduled_service": "no", + "gps_code": "6MO1", + "local_code": "6MO1" + }, + { + "id": "13394", + "ident": "6MO2", + "type": "small_airport", + "name": "Sainte Genevieve Flying Club Airport", + "latitude_deg": "37.98577", + "longitude_deg": "-90.04118", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Sainte Genevieve", + "scheduled_service": "no", + "gps_code": "6MO2", + "local_code": "6MO2" + }, + { + "id": "13395", + "ident": "6MO3", + "type": "small_airport", + "name": "Flying 'E' Airport", + "latitude_deg": "37.34920120239258", + "longitude_deg": "-92.12830352783203", + "elevation_ft": "1510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "6MO3", + "local_code": "6MO3" + }, + { + "id": "13396", + "ident": "6MO4", + "type": "small_airport", + "name": "Wixted Airport", + "latitude_deg": "38.040369", + "longitude_deg": "-93.765679", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Osceola", + "scheduled_service": "no", + "gps_code": "6MO4", + "local_code": "6MO4" + }, + { + "id": "13397", + "ident": "6MO5", + "type": "heliport", + "name": "Perry County Memorial Hospital Heliport", + "latitude_deg": "37.732219", + "longitude_deg": "-89.866024", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Perryville", + "scheduled_service": "no", + "gps_code": "6MO5", + "local_code": "6MO5" + }, + { + "id": "13398", + "ident": "6MO6", + "type": "small_airport", + "name": "Winter Field", + "latitude_deg": "38.33340072631836", + "longitude_deg": "-91.51679992675781", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Owensville", + "scheduled_service": "no", + "gps_code": "6MO6", + "local_code": "6MO6" + }, + { + "id": "13399", + "ident": "6MO7", + "type": "small_airport", + "name": "Riverside Landings Airport", + "latitude_deg": "37.02920150756836", + "longitude_deg": "-93.16680145263672", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Ozark", + "scheduled_service": "no", + "gps_code": "6MO7", + "local_code": "6MO7" + }, + { + "id": "13400", + "ident": "6MO8", + "type": "small_airport", + "name": "Brazeale Farm Airport", + "latitude_deg": "39.4833984375", + "longitude_deg": "-92.06680297851562", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "6MO8", + "local_code": "6MO8" + }, + { + "id": "13401", + "ident": "6MO9", + "type": "closed", + "name": "West Aero Ranch Airport", + "latitude_deg": "38.698875", + "longitude_deg": "-94.473442", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Peculiar", + "scheduled_service": "no", + "keywords": "6MO9" + }, + { + "id": "13402", + "ident": "6MS1", + "type": "small_airport", + "name": "Woodbridge Airport", + "latitude_deg": "32.4557991027832", + "longitude_deg": "-89.9697036743164", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Brandon", + "scheduled_service": "no", + "gps_code": "6MS1", + "local_code": "6MS1" + }, + { + "id": "45499", + "ident": "6MS2", + "type": "small_airport", + "name": "Wells Farm Airport", + "latitude_deg": "31.983861", + "longitude_deg": "-90.335361", + "elevation_ft": "455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Crystal Springs", + "scheduled_service": "no", + "gps_code": "6MS2", + "local_code": "6MS2" + }, + { + "id": "325978", + "ident": "6MS4", + "type": "heliport", + "name": "South Central Regional Medical Center Heliport", + "latitude_deg": "31.684899", + "longitude_deg": "-89.141401", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Laurel", + "scheduled_service": "no", + "gps_code": "6MS4", + "local_code": "6MS4" + }, + { + "id": "324432", + "ident": "6MS6", + "type": "small_airport", + "name": "Kaehr Airport", + "latitude_deg": "32.401461", + "longitude_deg": "-89.896952", + "elevation_ft": "345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Brandon", + "scheduled_service": "no", + "gps_code": "6MS6", + "local_code": "6MS6" + }, + { + "id": "351146", + "ident": "6MT4", + "type": "seaplane_base", + "name": "Brown Cabin Seaplane Base", + "latitude_deg": "48.038069", + "longitude_deg": "-115.091325", + "elevation_ft": "3340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Libby", + "scheduled_service": "no", + "gps_code": "6MT4", + "local_code": "6MT4" + }, + { + "id": "13403", + "ident": "6MU4", + "type": "small_airport", + "name": "Flying Shamrock Airport", + "latitude_deg": "39.03779983520508", + "longitude_deg": "-91.72540283203125", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Mexico", + "scheduled_service": "no", + "gps_code": "6MU4", + "local_code": "6MU4" + }, + { + "id": "355079", + "ident": "6MU5", + "type": "small_airport", + "name": "Carp Farms Airport", + "latitude_deg": "39.364317", + "longitude_deg": "-93.778268", + "elevation_ft": "803", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Norborne", + "scheduled_service": "no", + "gps_code": "6MU5", + "local_code": "6MU5" + }, + { + "id": "350187", + "ident": "6MU6", + "type": "heliport", + "name": "St Anthony's Medical Center Heliport", + "latitude_deg": "38.507678", + "longitude_deg": "-90.382008", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "6MU6", + "local_code": "6MU6" + }, + { + "id": "347726", + "ident": "6MU8", + "type": "heliport", + "name": "Mercy St Francis Hospital Heliport", + "latitude_deg": "37.002861", + "longitude_deg": "-91.70265", + "elevation_ft": "1199", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Mountain View", + "scheduled_service": "no", + "gps_code": "6MU8", + "local_code": "6MU8" + }, + { + "id": "13404", + "ident": "6MU9", + "type": "small_airport", + "name": "Craddock Field", + "latitude_deg": "37.5348014831543", + "longitude_deg": "-91.96520233154297", + "elevation_ft": "1199", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Licking", + "scheduled_service": "no", + "gps_code": "6MU9", + "local_code": "6MU9" + }, + { + "id": "13405", + "ident": "6N5", + "type": "heliport", + "name": "East 34th Street Heliport", + "latitude_deg": "40.74259948730469", + "longitude_deg": "-73.97209930419922", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "New York", + "scheduled_service": "yes", + "gps_code": "6N5", + "iata_code": "TSS", + "local_code": "6N5" + }, + { + "id": "13406", + "ident": "6N6", + "type": "seaplane_base", + "name": "Evers Seaplane Base", + "latitude_deg": "40.84590148925781", + "longitude_deg": "-73.81620025634766", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "New York", + "scheduled_service": "no", + "gps_code": "6N6", + "local_code": "6N6" + }, + { + "id": "13407", + "ident": "6N7", + "type": "seaplane_base", + "name": "New York Skyports Inc Seaplane Base", + "latitude_deg": "40.735061", + "longitude_deg": "-73.972814", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "New York", + "scheduled_service": "yes", + "iata_code": "QNY", + "local_code": "6N7", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_York_Skyports_Inc._Seaplane_Base" + }, + { + "id": "13408", + "ident": "6N9", + "type": "small_airport", + "name": "Eagles Nest Airport", + "latitude_deg": "34.98210144042969", + "longitude_deg": "-77.69830322265625", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Potters Hill", + "scheduled_service": "no", + "gps_code": "6N9", + "local_code": "6N9" + }, + { + "id": "13409", + "ident": "6NA0", + "type": "small_airport", + "name": "Strom Private Airport", + "latitude_deg": "48.993099212646484", + "longitude_deg": "-102.73799896240234", + "elevation_ft": "1930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "6NA0", + "local_code": "6NA0" + }, + { + "id": "13410", + "ident": "6NA2", + "type": "small_airport", + "name": "South Hector Airstrip", + "latitude_deg": "46.79249954223633", + "longitude_deg": "-96.80370330810547", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Fargo", + "scheduled_service": "no", + "gps_code": "6NA2", + "local_code": "6NA2" + }, + { + "id": "13411", + "ident": "6NA5", + "type": "small_airport", + "name": "Chase Airstrip", + "latitude_deg": "46.91279983520508", + "longitude_deg": "-102.00900268554688", + "elevation_ft": "2140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Hebron", + "scheduled_service": "no", + "gps_code": "6NA5", + "local_code": "6NA5" + }, + { + "id": "13412", + "ident": "6NA6", + "type": "small_airport", + "name": "Marsh Brothers Airstrip", + "latitude_deg": "48.61920166015625", + "longitude_deg": "-100.97799682617188", + "elevation_ft": "1481", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Newburg", + "scheduled_service": "no", + "gps_code": "6NA6", + "local_code": "6NA6" + }, + { + "id": "13413", + "ident": "6NA7", + "type": "small_airport", + "name": "Kersten Brothers Airport", + "latitude_deg": "48.73030090332031", + "longitude_deg": "-100.9219970703125", + "elevation_ft": "1473", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Newburg", + "scheduled_service": "no", + "gps_code": "6NA7", + "local_code": "6NA7" + }, + { + "id": "13414", + "ident": "6NC0", + "type": "small_airport", + "name": "Cox-Grantham Airfield", + "latitude_deg": "35.289100646972656", + "longitude_deg": "-78.18000030517578", + "elevation_ft": "157", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Grantham", + "scheduled_service": "no", + "gps_code": "6NC0", + "local_code": "6NC0" + }, + { + "id": "13415", + "ident": "6NC1", + "type": "small_airport", + "name": "Little Mountain Airport", + "latitude_deg": "35.591767", + "longitude_deg": "-81.080421", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Denver", + "scheduled_service": "no", + "gps_code": "6NC1", + "local_code": "6NC1", + "keywords": "66A" + }, + { + "id": "13416", + "ident": "6NC2", + "type": "small_airport", + "name": "Wilhelm Airport", + "latitude_deg": "35.511199951171875", + "longitude_deg": "-80.55809783935547", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Kannapolis", + "scheduled_service": "no", + "gps_code": "6NC2", + "local_code": "6NC2" + }, + { + "id": "13417", + "ident": "6NC3", + "type": "small_airport", + "name": "Eastover Air Ranch Airport", + "latitude_deg": "35.08639907836914", + "longitude_deg": "-78.77220153808594", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "6NC3", + "local_code": "6NC3" + }, + { + "id": "13418", + "ident": "6NC4", + "type": "small_airport", + "name": "Brown Airport", + "latitude_deg": "35.905701", + "longitude_deg": "-81.139503", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Taylorsville", + "scheduled_service": "no", + "gps_code": "6NC4", + "local_code": "6NC4", + "keywords": "Brown STOLport" + }, + { + "id": "13419", + "ident": "6NC5", + "type": "small_airport", + "name": "Thompson Farms Airport", + "latitude_deg": "36.01789855957031", + "longitude_deg": "-77.66190338134766", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Whitakers", + "scheduled_service": "no", + "gps_code": "6NC5", + "local_code": "6NC5" + }, + { + "id": "13420", + "ident": "6NC6", + "type": "heliport", + "name": "North Carolina Helicopters Heliport", + "latitude_deg": "35.28518", + "longitude_deg": "-81.24341", + "elevation_ft": "814", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Gastonia", + "scheduled_service": "no", + "gps_code": "6NC6", + "local_code": "6NC6" + }, + { + "id": "13421", + "ident": "6NC7", + "type": "small_airport", + "name": "Circle P Farm Airport", + "latitude_deg": "34.751399993896484", + "longitude_deg": "-76.90609741210938", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "6NC7", + "local_code": "6NC7" + }, + { + "id": "13422", + "ident": "6NC8", + "type": "small_airport", + "name": "Marchmont Plantation Airpark", + "latitude_deg": "35.938201904296875", + "longitude_deg": "-80.3844985961914", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Advance", + "scheduled_service": "no", + "gps_code": "6NC8", + "local_code": "6NC8" + }, + { + "id": "13423", + "ident": "6NC9", + "type": "small_airport", + "name": "Moss Hill Airport", + "latitude_deg": "35.20209884643555", + "longitude_deg": "-77.75050354003906", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Kinston", + "scheduled_service": "no", + "gps_code": "6NC9", + "local_code": "6NC9" + }, + { + "id": "13424", + "ident": "6ND2", + "type": "small_airport", + "name": "Larson Airport", + "latitude_deg": "46.2588996887207", + "longitude_deg": "-98.38790130615234", + "elevation_ft": "1442", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Fullerton", + "scheduled_service": "no", + "gps_code": "6ND2", + "local_code": "6ND2" + }, + { + "id": "13425", + "ident": "6ND3", + "type": "small_airport", + "name": "Lisburg Airport", + "latitude_deg": "47.069698333740234", + "longitude_deg": "-96.94059753417969", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Argusville", + "scheduled_service": "no", + "gps_code": "6ND3", + "local_code": "6ND3" + }, + { + "id": "13426", + "ident": "6ND6", + "type": "small_airport", + "name": "Fugleberg Farm Airport", + "latitude_deg": "47.516700744628906", + "longitude_deg": "-97.55039978027344", + "elevation_ft": "1090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "6ND6", + "local_code": "6ND6" + }, + { + "id": "13427", + "ident": "6ND9", + "type": "small_airport", + "name": "Skinningsrud Airport", + "latitude_deg": "48.392799377441406", + "longitude_deg": "-101.76399993896484", + "elevation_ft": "2010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Berthold", + "scheduled_service": "no", + "gps_code": "6ND9", + "local_code": "6ND9" + }, + { + "id": "13428", + "ident": "6NE0", + "type": "small_airport", + "name": "Van Boening Airport", + "latitude_deg": "40.78689956665039", + "longitude_deg": "-101.16600036621094", + "elevation_ft": "3102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Wallace", + "scheduled_service": "no", + "gps_code": "6NE0", + "local_code": "6NE0" + }, + { + "id": "344982", + "ident": "6NE3", + "type": "small_airport", + "name": "Beaver Landing", + "latitude_deg": "41.844913", + "longitude_deg": "-96.122099", + "elevation_ft": "1029", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Tekamah", + "scheduled_service": "no", + "gps_code": "6NE3", + "local_code": "6NE3" + }, + { + "id": "13429", + "ident": "6NE5", + "type": "heliport", + "name": "Jan Pad Heliport", + "latitude_deg": "40.83330154418945", + "longitude_deg": "-96.56829833984375", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "6NE5", + "local_code": "6NE5" + }, + { + "id": "13430", + "ident": "6NE7", + "type": "small_airport", + "name": "Lee Field", + "latitude_deg": "40.24440002441406", + "longitude_deg": "-100.33799743652344", + "elevation_ft": "2450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Bartley", + "scheduled_service": "no", + "gps_code": "6NE7", + "local_code": "6NE7" + }, + { + "id": "13431", + "ident": "6NE8", + "type": "small_airport", + "name": "Hoppy's Airport", + "latitude_deg": "40.08689880371094", + "longitude_deg": "-101.56900024414062", + "elevation_ft": "3227", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Benkelman", + "scheduled_service": "no", + "gps_code": "6NE8", + "local_code": "6NE8" + }, + { + "id": "13432", + "ident": "6NE9", + "type": "small_airport", + "name": "Hoesel Airport", + "latitude_deg": "41.26810073852539", + "longitude_deg": "-99.88790130615234", + "elevation_ft": "2600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Callaway", + "scheduled_service": "no", + "gps_code": "6NE9", + "local_code": "6NE9" + }, + { + "id": "13433", + "ident": "6NJ0", + "type": "closed", + "name": "Lentine South Airport", + "latitude_deg": "39.787102", + "longitude_deg": "-74.377403", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Warren Grove", + "scheduled_service": "no", + "keywords": "6NJ0" + }, + { + "id": "13434", + "ident": "6NJ1", + "type": "small_airport", + "name": "Vliet Airport", + "latitude_deg": "40.74039840698242", + "longitude_deg": "-74.95680236816406", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "6NJ1", + "local_code": "6NJ1" + }, + { + "id": "13435", + "ident": "6NJ2", + "type": "heliport", + "name": "Tamarack Flyers Heliport", + "latitude_deg": "41.154300689697266", + "longitude_deg": "-74.71320343017578", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Branchville", + "scheduled_service": "no", + "gps_code": "6NJ2", + "local_code": "6NJ2" + }, + { + "id": "13436", + "ident": "6NJ3", + "type": "heliport", + "name": "Wayne Office Helistop", + "latitude_deg": "40.97930145263672", + "longitude_deg": "-74.2509994506836", + "elevation_ft": "406", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Wayne", + "scheduled_service": "no", + "gps_code": "6NJ3", + "local_code": "6NJ3" + }, + { + "id": "13437", + "ident": "6NJ4", + "type": "closed", + "name": "Griffin Associates Heliport", + "latitude_deg": "39.972099", + "longitude_deg": "-74.919601", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Moorestown", + "scheduled_service": "no", + "keywords": "6NJ4" + }, + { + "id": "13438", + "ident": "6NJ5", + "type": "heliport", + "name": "Lincoln Tunnel Heliport", + "latitude_deg": "40.764627", + "longitude_deg": "-74.022613", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Weehawken", + "scheduled_service": "no", + "gps_code": "6NJ5", + "local_code": "6NJ5" + }, + { + "id": "13439", + "ident": "6NJ6", + "type": "heliport", + "name": "185 Monmouth Parkway Associates Helistop", + "latitude_deg": "40.30009841918945", + "longitude_deg": "-74.02539825439453", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "West Long Branch", + "scheduled_service": "no", + "gps_code": "6NJ6", + "local_code": "6NJ6" + }, + { + "id": "13440", + "ident": "6NJ7", + "type": "seaplane_base", + "name": "Greenwood Lake Seaplane Base", + "latitude_deg": "41.18009948730469", + "longitude_deg": "-74.33429718017578", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "West Milford", + "scheduled_service": "no", + "gps_code": "6NJ7", + "local_code": "6NJ7" + }, + { + "id": "13441", + "ident": "6NJ8", + "type": "closed", + "name": "Lance Airport", + "latitude_deg": "40.591801", + "longitude_deg": "-74.791298", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Whitehouse Station", + "scheduled_service": "no", + "local_code": "6NJ8", + "keywords": "6NJ8" + }, + { + "id": "13442", + "ident": "6NJ9", + "type": "small_airport", + "name": "Bridgeport-Cahill Field", + "latitude_deg": "39.79180145263672", + "longitude_deg": "-75.37460327148438", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bridgeport", + "scheduled_service": "no", + "gps_code": "6NJ9", + "local_code": "6NJ9" + }, + { + "id": "13443", + "ident": "6NK", + "type": "small_airport", + "name": "Syracuse Suburban Airport", + "latitude_deg": "43.26499938964844", + "longitude_deg": "-76.1781005859375", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Syracuse", + "scheduled_service": "no", + "gps_code": "6NK", + "local_code": "6NK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Syracuse_Suburban_Airport" + }, + { + "id": "13444", + "ident": "6NK0", + "type": "small_airport", + "name": "Knapp Airport", + "latitude_deg": "42.595618", + "longitude_deg": "-74.820607", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Schenevus", + "scheduled_service": "no", + "gps_code": "6NK0", + "local_code": "6NK0" + }, + { + "id": "13445", + "ident": "6NK1", + "type": "closed", + "name": "Casey's Airport", + "latitude_deg": "42.756401", + "longitude_deg": "-78.175598", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Warsaw", + "scheduled_service": "no", + "keywords": "6NK1" + }, + { + "id": "13446", + "ident": "6NK2", + "type": "small_airport", + "name": "Meerwarth Airport", + "latitude_deg": "42.950599670410156", + "longitude_deg": "-73.33470153808594", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "White Creek", + "scheduled_service": "no", + "gps_code": "6NK2", + "local_code": "6NK2" + }, + { + "id": "13447", + "ident": "6NK3", + "type": "heliport", + "name": "North Shore University Hospital Nr 2 Heliport", + "latitude_deg": "40.76940155029297", + "longitude_deg": "-73.7052993774414", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Manhasset", + "scheduled_service": "no", + "gps_code": "6NK3", + "local_code": "6NK3" + }, + { + "id": "13448", + "ident": "6NK4", + "type": "small_airport", + "name": "Ttt Air Airport", + "latitude_deg": "42.597801208496094", + "longitude_deg": "-78.96890258789062", + "elevation_ft": "891", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "North Collins", + "scheduled_service": "no", + "gps_code": "6NK4", + "local_code": "6NK4" + }, + { + "id": "13449", + "ident": "6NK5", + "type": "heliport", + "name": "Erie County Medical Center Heliport", + "latitude_deg": "42.926700592041016", + "longitude_deg": "-78.83280181884766", + "elevation_ft": "728", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Buffalo", + "scheduled_service": "no", + "gps_code": "6NK5", + "local_code": "6NK5" + }, + { + "id": "13450", + "ident": "6NK6", + "type": "heliport", + "name": "New York State D.E.C. Indian Lake Heliport", + "latitude_deg": "43.76810073852539", + "longitude_deg": "-74.26329803466797", + "elevation_ft": "1705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Indian Lake", + "scheduled_service": "no", + "gps_code": "6NK6", + "local_code": "6NK6" + }, + { + "id": "13451", + "ident": "6NK7", + "type": "heliport", + "name": "Computer Associates Heliport", + "latitude_deg": "40.81219864", + "longitude_deg": "-73.17579651", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Islandia", + "scheduled_service": "no", + "gps_code": "6NK7", + "local_code": "6NK7" + }, + { + "id": "13452", + "ident": "6NK8", + "type": "small_airport", + "name": "Flying K Airport", + "latitude_deg": "43.00979995727539", + "longitude_deg": "-76.6405029296875", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Oneida", + "scheduled_service": "no", + "gps_code": "6NK8", + "local_code": "6NK8" + }, + { + "id": "13453", + "ident": "6NK9", + "type": "heliport", + "name": "Cec Heliport", + "latitude_deg": "43.17720031738281", + "longitude_deg": "-75.22779846191406", + "elevation_ft": "1072", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Marcy", + "scheduled_service": "no", + "gps_code": "6NK9", + "local_code": "6NK9" + }, + { + "id": "346191", + "ident": "6NR6", + "type": "small_airport", + "name": "Patton Valley Airport", + "latitude_deg": "35.662518", + "longitude_deg": "-81.873239", + "elevation_ft": "1270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Nebo", + "scheduled_service": "no", + "gps_code": "6NR6", + "local_code": "6NR6" + }, + { + "id": "350782", + "ident": "6NY0", + "type": "heliport", + "name": "Orange Regional Medical Center Heliport", + "latitude_deg": "41.442151", + "longitude_deg": "-74.366707", + "elevation_ft": "437", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Middletown", + "scheduled_service": "no", + "gps_code": "6NY0", + "local_code": "6NY0" + }, + { + "id": "13454", + "ident": "6NY1", + "type": "small_airport", + "name": "Old Port Royal Airport", + "latitude_deg": "42.11289978027344", + "longitude_deg": "-77.08940124511719", + "elevation_ft": "1700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Corning", + "scheduled_service": "no", + "gps_code": "6NY1", + "local_code": "6NY1" + }, + { + "id": "13455", + "ident": "6NY2", + "type": "small_airport", + "name": "Omni Airpark", + "latitude_deg": "42.231998443603516", + "longitude_deg": "-76.8469009399414", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Horseheads", + "scheduled_service": "no", + "gps_code": "6NY2", + "local_code": "6NY2" + }, + { + "id": "13456", + "ident": "6NY3", + "type": "small_airport", + "name": "Airy-Acres Airport", + "latitude_deg": "42.64400100708008", + "longitude_deg": "-76.72969818115234", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Interlaken", + "scheduled_service": "no", + "gps_code": "6NY3", + "local_code": "6NY3" + }, + { + "id": "13457", + "ident": "6NY4", + "type": "small_airport", + "name": "West Township Airport", + "latitude_deg": "42.700401", + "longitude_deg": "-74.155098", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Delanson", + "scheduled_service": "no", + "gps_code": "6NY4", + "local_code": "6NY4" + }, + { + "id": "13458", + "ident": "6NY5", + "type": "heliport", + "name": "Mary Immaculate Hospital Heliport", + "latitude_deg": "40.70539855957031", + "longitude_deg": "-73.80460357666016", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Jamaica Queens", + "scheduled_service": "no", + "gps_code": "6NY5", + "local_code": "6NY5" + }, + { + "id": "13459", + "ident": "6NY6", + "type": "seaplane_base", + "name": "Firemans White Lake Seaplane Base", + "latitude_deg": "41.68429946899414", + "longitude_deg": "-74.83159637451172", + "elevation_ft": "1323", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Kauneonga Lake", + "scheduled_service": "no", + "gps_code": "6NY6", + "local_code": "6NY6" + }, + { + "id": "13460", + "ident": "6NY7", + "type": "small_airport", + "name": "Piolis Brookside Airport", + "latitude_deg": "41.86539840698242", + "longitude_deg": "-74.33290100097656", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Kerhonkson", + "scheduled_service": "no", + "gps_code": "6NY7", + "local_code": "6NY7" + }, + { + "id": "13461", + "ident": "6NY8", + "type": "heliport", + "name": "Tech City Commerce Park Heliport", + "latitude_deg": "41.97347", + "longitude_deg": "-73.997017", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Kingston", + "scheduled_service": "no", + "gps_code": "6NY8", + "local_code": "6NY8", + "keywords": "IBM Kingston Plant Heliport" + }, + { + "id": "13462", + "ident": "6NY9", + "type": "heliport", + "name": "Health Alliance Mary's Avenue Heliport", + "latitude_deg": "41.920898", + "longitude_deg": "-73.999603", + "elevation_ft": "262", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Kingston", + "scheduled_service": "no", + "gps_code": "6NY9", + "local_code": "6NY9", + "keywords": "Benedictine Hospital" + }, + { + "id": "46299", + "ident": "6OG3", + "type": "small_airport", + "name": "Sky Wagon Ranch Airport", + "latitude_deg": "42.130283", + "longitude_deg": "-121.531633", + "elevation_ft": "4150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Klamath Falls", + "scheduled_service": "no", + "gps_code": "6OG3", + "local_code": "6OG3" + }, + { + "id": "13463", + "ident": "6OH0", + "type": "heliport", + "name": "Mercy Medical Center Heliport", + "latitude_deg": "39.95840072631836", + "longitude_deg": "-83.7916030883789", + "elevation_ft": "1021", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "6OH0", + "local_code": "6OH0" + }, + { + "id": "13464", + "ident": "6OH1", + "type": "small_airport", + "name": "Missler-Bellevue Airport", + "latitude_deg": "41.28620147705078", + "longitude_deg": "-82.8666000366211", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bellevue", + "scheduled_service": "no", + "gps_code": "6OH1", + "local_code": "6OH1" + }, + { + "id": "13465", + "ident": "6OH2", + "type": "heliport", + "name": "Craighead Heliport", + "latitude_deg": "41.44729995727539", + "longitude_deg": "-81.27570343017578", + "elevation_ft": "1125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Novelty", + "scheduled_service": "no", + "gps_code": "6OH2", + "local_code": "6OH2" + }, + { + "id": "13466", + "ident": "6OH3", + "type": "closed", + "name": "R C Ford Field", + "latitude_deg": "41.705101", + "longitude_deg": "-83.828796", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Berkey", + "scheduled_service": "no", + "keywords": "6OH3" + }, + { + "id": "13467", + "ident": "6OH4", + "type": "small_airport", + "name": "Aring Field", + "latitude_deg": "41.3583984375", + "longitude_deg": "-83.55829620361328", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bowling Green", + "scheduled_service": "no", + "gps_code": "6OH4", + "local_code": "6OH4" + }, + { + "id": "13468", + "ident": "6OH5", + "type": "heliport", + "name": "Connor Heliport", + "latitude_deg": "40.162498474121094", + "longitude_deg": "-83.05419921875", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Powell", + "scheduled_service": "no", + "gps_code": "6OH5", + "local_code": "6OH5" + }, + { + "id": "13469", + "ident": "6OH6", + "type": "small_airport", + "name": "Shelton Airport", + "latitude_deg": "41.364498138427734", + "longitude_deg": "-83.54740142822266", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bowling Green", + "scheduled_service": "no", + "gps_code": "6OH6", + "local_code": "6OH6" + }, + { + "id": "13470", + "ident": "6OH7", + "type": "small_airport", + "name": "Nietz Airport", + "latitude_deg": "41.407008", + "longitude_deg": "-83.679939", + "elevation_ft": "676", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bowling Green", + "scheduled_service": "no", + "gps_code": "6OH7", + "local_code": "6OH7" + }, + { + "id": "13471", + "ident": "6OH8", + "type": "heliport", + "name": "Rmz Heliport", + "latitude_deg": "41.50170135498047", + "longitude_deg": "-81.2593002319336", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Newberry", + "scheduled_service": "no", + "gps_code": "6OH8", + "local_code": "6OH8" + }, + { + "id": "13472", + "ident": "6OH9", + "type": "small_airport", + "name": "Kemps Field of Dreams Airport", + "latitude_deg": "40.105899810791016", + "longitude_deg": "-84.39990234375", + "elevation_ft": "974", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Covington", + "scheduled_service": "no", + "gps_code": "6OH9", + "local_code": "6OH9" + }, + { + "id": "13473", + "ident": "6OI0", + "type": "closed", + "name": "Derecsky Airport", + "latitude_deg": "41.3759", + "longitude_deg": "-81.257301", + "elevation_ft": "1185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Auburn Center", + "scheduled_service": "no", + "keywords": "6OI0" + }, + { + "id": "13474", + "ident": "6OI4", + "type": "heliport", + "name": "Marion General Hospital Heliport", + "latitude_deg": "40.57120132446289", + "longitude_deg": "-83.12909698486328", + "elevation_ft": "998", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "6OI4", + "local_code": "6OI4" + }, + { + "id": "13475", + "ident": "6OI5", + "type": "small_airport", + "name": "Mitchell Airport", + "latitude_deg": "40.137298583984375", + "longitude_deg": "-83.21800231933594", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Plain City", + "scheduled_service": "no", + "gps_code": "6OI5", + "local_code": "6OI5" + }, + { + "id": "13476", + "ident": "6OI6", + "type": "heliport", + "name": "ProMedica Toledo Hospital Heliport", + "latitude_deg": "41.673261", + "longitude_deg": "-83.594624", + "elevation_ft": "648", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Toledo", + "scheduled_service": "no", + "gps_code": "6OI6", + "local_code": "6OI6" + }, + { + "id": "13477", + "ident": "6OI8", + "type": "heliport", + "name": "Cleveland Clinic Foundation Heliport", + "latitude_deg": "41.5018056", + "longitude_deg": "-81.6386833", + "elevation_ft": "743", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "6OI8", + "local_code": "6OI8" + }, + { + "id": "13478", + "ident": "6OI9", + "type": "heliport", + "name": "Red Roof Inns Heliport", + "latitude_deg": "40.05009841918945", + "longitude_deg": "-83.1270980834961", + "elevation_ft": "873", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "6OI9", + "local_code": "6OI9" + }, + { + "id": "13479", + "ident": "6OK0", + "type": "small_airport", + "name": "White Airport", + "latitude_deg": "35.89139938354492", + "longitude_deg": "-97.95890045166016", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Kingfisher", + "scheduled_service": "no", + "gps_code": "6OK0", + "local_code": "6OK0" + }, + { + "id": "13480", + "ident": "6OK1", + "type": "small_airport", + "name": "John Reid Airport", + "latitude_deg": "36.00149917602539", + "longitude_deg": "-95.00299835205078", + "elevation_ft": "831", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tahlequah", + "scheduled_service": "no", + "gps_code": "6OK1", + "local_code": "6OK1" + }, + { + "id": "13481", + "ident": "6OK2", + "type": "small_airport", + "name": "Redhills Airport", + "latitude_deg": "35.062801361083984", + "longitude_deg": "-97.89530181884766", + "elevation_ft": "1175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Chickasha", + "scheduled_service": "no", + "gps_code": "6OK2", + "local_code": "6OK2" + }, + { + "id": "13482", + "ident": "6OK3", + "type": "closed", + "name": "Pinson's Cottonpatch Airport", + "latitude_deg": "34.4748", + "longitude_deg": "-99.1315", + "elevation_ft": "1297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tipton", + "scheduled_service": "no", + "keywords": "6OK3" + }, + { + "id": "13483", + "ident": "6OK4", + "type": "heliport", + "name": "Hillcrest Medical Center Heliport", + "latitude_deg": "36.14590072631836", + "longitude_deg": "-95.96690368652344", + "elevation_ft": "787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tulsa", + "scheduled_service": "no", + "gps_code": "6OK4", + "local_code": "6OK4" + }, + { + "id": "13484", + "ident": "6OK5", + "type": "closed", + "name": "Cary Ranch Airport", + "latitude_deg": "35.628601", + "longitude_deg": "-99.929397", + "elevation_ft": "2455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Reydon", + "scheduled_service": "no", + "keywords": "6OK5" + }, + { + "id": "13485", + "ident": "6OK6", + "type": "small_airport", + "name": "Earl Henry Airport", + "latitude_deg": "36.7958984375", + "longitude_deg": "-97.3170013428", + "elevation_ft": "1054", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Blackwell", + "scheduled_service": "no", + "gps_code": "6OK6", + "iata_code": "BWL", + "local_code": "6OK6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Earl_Henry_Airport" + }, + { + "id": "13486", + "ident": "6OK7", + "type": "small_airport", + "name": "Cochran Ranch Airport", + "latitude_deg": "34.59590148925781", + "longitude_deg": "-95.86299896240234", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Atoka", + "scheduled_service": "no", + "gps_code": "6OK7", + "local_code": "6OK7" + }, + { + "id": "13487", + "ident": "6OK8", + "type": "small_airport", + "name": "Lasley Private Airport", + "latitude_deg": "35.359500885009766", + "longitude_deg": "-98.57119750976562", + "elevation_ft": "1630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Eakly", + "scheduled_service": "no", + "gps_code": "6OK8", + "local_code": "6OK8" + }, + { + "id": "13488", + "ident": "6OK9", + "type": "small_airport", + "name": "Mulberry Hill Airport", + "latitude_deg": "36.14170074", + "longitude_deg": "-96.94229889", + "elevation_ft": "1026", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Stillwater", + "scheduled_service": "no", + "gps_code": "6OK9", + "local_code": "6OK9" + }, + { + "id": "13489", + "ident": "6OR0", + "type": "closed", + "name": "Grells Airport", + "latitude_deg": "44.529701", + "longitude_deg": "-123.091003", + "elevation_ft": "253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Tangent", + "scheduled_service": "no", + "keywords": "6OR0" + }, + { + "id": "13490", + "ident": "6OR1", + "type": "small_airport", + "name": "Pointers Airport", + "latitude_deg": "45.584082", + "longitude_deg": "-121.268215", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "The Dalles", + "scheduled_service": "no", + "gps_code": "6OR1", + "local_code": "6OR1" + }, + { + "id": "13491", + "ident": "6OR2", + "type": "small_airport", + "name": "Chenoweth Airpark", + "latitude_deg": "45.610661", + "longitude_deg": "-121.279282", + "elevation_ft": "609", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "The Dalles", + "scheduled_service": "no", + "gps_code": "6OR2", + "local_code": "6OR2" + }, + { + "id": "13492", + "ident": "6OR3", + "type": "heliport", + "name": "Adventist Health Tillamook Heliport", + "latitude_deg": "45.457296", + "longitude_deg": "-123.85501", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Tillamook", + "scheduled_service": "no", + "gps_code": "6OR3", + "local_code": "6OR3", + "keywords": "Tillamook County General Hospital Heliport, Tillamook County Regional Medical Center Heliport" + }, + { + "id": "45945", + "ident": "6OR4", + "type": "small_airport", + "name": "Tailwheel Airport", + "latitude_deg": "44.2731825", + "longitude_deg": "-120.794741944", + "elevation_ft": "3130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Prineville", + "scheduled_service": "no", + "gps_code": "6OR4", + "local_code": "6OR4" + }, + { + "id": "13493", + "ident": "6OR5", + "type": "heliport", + "name": "Meridian Park Hospital Heliport", + "latitude_deg": "45.3780192213", + "longitude_deg": "-122.739767432", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Tualatin", + "scheduled_service": "no", + "gps_code": "6OR5", + "local_code": "6OR5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Meridian_Park_Hospital_Heliport" + }, + { + "id": "13494", + "ident": "6OR6", + "type": "small_airport", + "name": "Wonder Airport", + "latitude_deg": "42.39149856567383", + "longitude_deg": "-123.53500366210938", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Wonder", + "scheduled_service": "no", + "gps_code": "6OR6", + "local_code": "6OR6" + }, + { + "id": "13495", + "ident": "6OR7", + "type": "small_airport", + "name": "Schmidt Airport", + "latitude_deg": "45.452931", + "longitude_deg": "-122.31821", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Boring", + "scheduled_service": "no", + "gps_code": "6OR7", + "local_code": "6OR7" + }, + { + "id": "13496", + "ident": "6OR8", + "type": "small_airport", + "name": "Holce & Oblack Airport", + "latitude_deg": "45.971500396728516", + "longitude_deg": "-123.3499984741211", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Birkenfield", + "scheduled_service": "no", + "gps_code": "6OR8", + "local_code": "6OR8" + }, + { + "id": "13497", + "ident": "6OR9", + "type": "small_airport", + "name": "Reds Wallowa Horse Ranch Airport", + "latitude_deg": "45.344952", + "longitude_deg": "-117.627096", + "elevation_ft": "3600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Enterprise", + "scheduled_service": "no", + "local_code": "68D", + "wikipedia_link": "https://en.wikipedia.org/wiki/Reds_Wallowa_Horse_Ranch_Airport", + "keywords": "6OR9" + }, + { + "id": "13498", + "ident": "6P3", + "type": "small_airport", + "name": "Waunakee Airport", + "latitude_deg": "43.178699", + "longitude_deg": "-89.451302", + "elevation_ft": "954", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Waunakee", + "scheduled_service": "no", + "gps_code": "K6P3", + "local_code": "6P3" + }, + { + "id": "13499", + "ident": "6PA0", + "type": "small_airport", + "name": "Myer Airport", + "latitude_deg": "41.350101470947266", + "longitude_deg": "-74.93289947509766", + "elevation_ft": "1345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "6PA0", + "local_code": "6PA0" + }, + { + "id": "13500", + "ident": "6PA1", + "type": "small_airport", + "name": "Tower Airfield", + "latitude_deg": "40.51029968261719", + "longitude_deg": "-79.57980346679688", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "North Washington", + "scheduled_service": "no", + "gps_code": "6PA1", + "local_code": "6PA1" + }, + { + "id": "13501", + "ident": "6PA2", + "type": "heliport", + "name": "UPMC Heliport", + "latitude_deg": "40.007049", + "longitude_deg": "-79.077367", + "elevation_ft": "2272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Somerset", + "scheduled_service": "no", + "gps_code": "6PA2", + "local_code": "6PA2", + "keywords": "Somerset Hospital" + }, + { + "id": "13502", + "ident": "6PA3", + "type": "small_airport", + "name": "Hackenburg-Penny Hill Airport", + "latitude_deg": "41.15010070800781", + "longitude_deg": "-76.89969635009766", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Montoursville", + "scheduled_service": "no", + "gps_code": "6PA3", + "local_code": "6PA3" + }, + { + "id": "13503", + "ident": "6PA4", + "type": "small_airport", + "name": "Scandia Air Park", + "latitude_deg": "41.930599212646484", + "longitude_deg": "-79.0342025756836", + "elevation_ft": "2050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Russell", + "scheduled_service": "no", + "gps_code": "6PA4", + "local_code": "6PA4" + }, + { + "id": "13504", + "ident": "6PA5", + "type": "small_airport", + "name": "Botsford Aerodrome", + "latitude_deg": "40.113399505615234", + "longitude_deg": "-77.4542007446289", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Shippensburg", + "scheduled_service": "no", + "gps_code": "6PA5", + "local_code": "6PA5" + }, + { + "id": "13505", + "ident": "6PA6", + "type": "small_airport", + "name": "Air Haven Airport", + "latitude_deg": "41.350101470947266", + "longitude_deg": "-75.48300170898438", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "6PA6", + "local_code": "6PA6" + }, + { + "id": "13506", + "ident": "6PA7", + "type": "closed", + "name": "Berwick Airport", + "latitude_deg": "41.0695", + "longitude_deg": "-76.216301", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Berwick", + "scheduled_service": "no", + "keywords": "6PA7" + }, + { + "id": "13507", + "ident": "6PA8", + "type": "small_airport", + "name": "Tall Pines Airfield", + "latitude_deg": "41.20140075683594", + "longitude_deg": "-77.44080352783203", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lock Haven", + "scheduled_service": "no", + "gps_code": "6PA8", + "local_code": "6PA8" + }, + { + "id": "13508", + "ident": "6PA9", + "type": "closed", + "name": "Shangri La Airport", + "latitude_deg": "40.6856", + "longitude_deg": "-77.474701", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Burnham", + "scheduled_service": "no", + "keywords": "6PA9" + }, + { + "id": "13509", + "ident": "6PN2", + "type": "heliport", + "name": "Lgh-Women and Babies Hospital Heliport", + "latitude_deg": "40.064998626708984", + "longitude_deg": "-76.35060119628906", + "elevation_ft": "332", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "6PN2", + "local_code": "6PN2" + }, + { + "id": "13510", + "ident": "6PN3", + "type": "heliport", + "name": "Port Meadville Heliport", + "latitude_deg": "41.5973014831543", + "longitude_deg": "-80.1709976196289", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Meadville", + "scheduled_service": "no", + "gps_code": "6PN3", + "local_code": "6PN3" + }, + { + "id": "13511", + "ident": "6PN4", + "type": "heliport", + "name": "Pocono Mountain Heliport", + "latitude_deg": "41.08919906616211", + "longitude_deg": "-75.31559753417969", + "elevation_ft": "1203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mount Pocono", + "scheduled_service": "no", + "gps_code": "6PN4", + "local_code": "6PN4" + }, + { + "id": "13512", + "ident": "6PN5", + "type": "small_airport", + "name": "Sam's Field", + "latitude_deg": "41.907501220703125", + "longitude_deg": "-78.62889862060547", + "elevation_ft": "1540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bradford", + "scheduled_service": "no", + "gps_code": "6PN5", + "local_code": "6PN5" + }, + { + "id": "13513", + "ident": "6PN6", + "type": "heliport", + "name": "Henke Heliport", + "latitude_deg": "40.38330078125", + "longitude_deg": "-80.30000305175781", + "elevation_ft": "1255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pittsburgh", + "scheduled_service": "no", + "gps_code": "6PN6", + "local_code": "6PN6" + }, + { + "id": "13514", + "ident": "6PN7", + "type": "heliport", + "name": "Moyer Heliport", + "latitude_deg": "41.10029983520508", + "longitude_deg": "-75.58080291748047", + "elevation_ft": "1675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pocono Lake", + "scheduled_service": "no", + "gps_code": "6PN7", + "local_code": "6PN7" + }, + { + "id": "13515", + "ident": "6PN8", + "type": "heliport", + "name": "Posh Heliport", + "latitude_deg": "40.64590072631836", + "longitude_deg": "-75.33300018310547", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bethlehem", + "scheduled_service": "no", + "gps_code": "6PN8", + "local_code": "6PN8" + }, + { + "id": "13516", + "ident": "6PN9", + "type": "small_airport", + "name": "Mc Donald's Airport", + "latitude_deg": "40.886199951200005", + "longitude_deg": "-76.153503418", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Brandonville", + "scheduled_service": "no", + "gps_code": "6PN9", + "local_code": "6PN9" + }, + { + "id": "13517", + "ident": "6PS0", + "type": "heliport", + "name": "Ellwood City Hospital Heliport", + "latitude_deg": "40.8672981262207", + "longitude_deg": "-80.27619934082031", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Ellwood City", + "scheduled_service": "no", + "gps_code": "6PS0", + "local_code": "6PS0" + }, + { + "id": "13518", + "ident": "6PS2", + "type": "heliport", + "name": "Stouffers Heliport", + "latitude_deg": "40.089298248291016", + "longitude_deg": "-75.40799713134766", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "King of Prussia", + "scheduled_service": "no", + "gps_code": "6PS2", + "local_code": "6PS2" + }, + { + "id": "13519", + "ident": "6PS3", + "type": "small_airport", + "name": "Champ Field", + "latitude_deg": "41.95899963378906", + "longitude_deg": "-77.42610168457031", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Knoxville", + "scheduled_service": "no", + "gps_code": "6PS3", + "local_code": "6PS3" + }, + { + "id": "13520", + "ident": "6PS4", + "type": "heliport", + "name": "Riddle Memorial Hospital Heliport", + "latitude_deg": "39.912899017333984", + "longitude_deg": "-75.43160247802734", + "elevation_ft": "317", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Media", + "scheduled_service": "no", + "gps_code": "6PS4", + "local_code": "6PS4" + }, + { + "id": "13521", + "ident": "6PS5", + "type": "heliport", + "name": "Pir Heliport", + "latitude_deg": "40.72679901123047", + "longitude_deg": "-75.31990051269531", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Nazareth", + "scheduled_service": "no", + "gps_code": "6PS5", + "local_code": "6PS5" + }, + { + "id": "45758", + "ident": "6PS6", + "type": "heliport", + "name": "North Middlesex Heliport", + "latitude_deg": "40.257333", + "longitude_deg": "-77.136469", + "elevation_ft": "489", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Carlisle", + "scheduled_service": "no", + "gps_code": "6PS6", + "local_code": "6PS6" + }, + { + "id": "45769", + "ident": "6PS8", + "type": "small_airport", + "name": "Tyler Airport", + "latitude_deg": "41.820464", + "longitude_deg": "-75.69859", + "elevation_ft": "1401", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "New Milford", + "scheduled_service": "no", + "gps_code": "6PS8", + "local_code": "6PS8" + }, + { + "id": "13522", + "ident": "6PS9", + "type": "heliport", + "name": "Allied Signal Heliport", + "latitude_deg": "40.6786994934082", + "longitude_deg": "-76.23490142822266", + "elevation_ft": "709", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pottsville", + "scheduled_service": "no", + "gps_code": "6PS9", + "local_code": "6PS9" + }, + { + "id": "13523", + "ident": "6Q0", + "type": "heliport", + "name": "Columbia Heliport", + "latitude_deg": "38.03459930419922", + "longitude_deg": "-120.41200256347656", + "elevation_ft": "2122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "6Q0", + "local_code": "6Q0" + }, + { + "id": "13524", + "ident": "6R1", + "type": "small_airport", + "name": "Welsh Airport", + "latitude_deg": "30.241899490356445", + "longitude_deg": "-92.82929992675781", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Welsh", + "scheduled_service": "no", + "gps_code": "6R1", + "local_code": "6R1" + }, + { + "id": "13526", + "ident": "6R5", + "type": "small_airport", + "name": "Alvin Airpark", + "latitude_deg": "29.41550064086914", + "longitude_deg": "-95.28910064697266", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alvin", + "scheduled_service": "no", + "gps_code": "6R5", + "local_code": "6R5" + }, + { + "id": "13528", + "ident": "6S4", + "type": "small_airport", + "name": "Davis Airport", + "latitude_deg": "44.74570083618164", + "longitude_deg": "-122.4209976196289", + "elevation_ft": "1026", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Gates", + "scheduled_service": "no", + "gps_code": "6S4", + "local_code": "6S4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Davis_Airport_(Oregon)" + }, + { + "id": "13529", + "ident": "6S6", + "type": "small_airport", + "name": "Powers Airport", + "latitude_deg": "42.869598388671875", + "longitude_deg": "-124.05899810791016", + "elevation_ft": "326", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Powers", + "scheduled_service": "no", + "gps_code": "6S6", + "local_code": "6S6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Powers_Airport" + }, + { + "id": "13530", + "ident": "6S9", + "type": "small_airport", + "name": "Stehekin State Airport", + "latitude_deg": "48.345699310302734", + "longitude_deg": "-120.72100067138672", + "elevation_ft": "1230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Stehekin", + "scheduled_service": "no", + "gps_code": "6S9", + "local_code": "6S9" + }, + { + "id": "13531", + "ident": "6SC1", + "type": "small_airport", + "name": "Lesesne Airport", + "latitude_deg": "33.36920166015625", + "longitude_deg": "-80.22329711914062", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Cross", + "scheduled_service": "no", + "gps_code": "6SC1", + "local_code": "6SC1" + }, + { + "id": "13532", + "ident": "6T2", + "type": "heliport", + "name": "Seagate Helistop", + "latitude_deg": "41.654641", + "longitude_deg": "-83.531127", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Toledo", + "scheduled_service": "no", + "local_code": "6T2" + }, + { + "id": "13533", + "ident": "6TA0", + "type": "small_airport", + "name": "Rocking R Ranch Airport", + "latitude_deg": "30.79898", + "longitude_deg": "-100.33455", + "elevation_ft": "2250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eldorado", + "scheduled_service": "no", + "gps_code": "6TA0", + "local_code": "6TA0" + }, + { + "id": "13534", + "ident": "6TA1", + "type": "heliport", + "name": "Sky Ranch Heliport", + "latitude_deg": "32.36109924316406", + "longitude_deg": "-95.87560272216797", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eustace", + "scheduled_service": "no", + "gps_code": "6TA1", + "local_code": "6TA1" + }, + { + "id": "13535", + "ident": "6TA2", + "type": "small_airport", + "name": "Rockys Place Airport", + "latitude_deg": "33.37220001220703", + "longitude_deg": "-96.36219787597656", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Leonard", + "scheduled_service": "no", + "gps_code": "6TA2", + "local_code": "6TA2" + }, + { + "id": "13536", + "ident": "6TA3", + "type": "small_airport", + "name": "Culp Airport", + "latitude_deg": "32.72140121459961", + "longitude_deg": "-96.7238998413086", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lawrence", + "scheduled_service": "no", + "gps_code": "6TA3", + "local_code": "6TA3" + }, + { + "id": "13537", + "ident": "6TA4", + "type": "closed", + "name": "Winn Exploration Co Inc Airport", + "latitude_deg": "28.718904", + "longitude_deg": "-100.409544", + "elevation_ft": "881", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eagle Pass", + "scheduled_service": "no", + "keywords": "6TA4" + }, + { + "id": "13538", + "ident": "6TA5", + "type": "closed", + "name": "HHI Hitchcock Heliport", + "latitude_deg": "29.333599", + "longitude_deg": "-95.026603", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hitchcock", + "scheduled_service": "no", + "keywords": "6TA5" + }, + { + "id": "13539", + "ident": "6TA6", + "type": "heliport", + "name": "B & S Warehouse Heliport", + "latitude_deg": "29.721900939941406", + "longitude_deg": "-95.52220153808594", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "6TA6", + "local_code": "6TA6" + }, + { + "id": "13540", + "ident": "6TA7", + "type": "small_airport", + "name": "Flying K Airport", + "latitude_deg": "32.82849884033203", + "longitude_deg": "-97.77950286865234", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no", + "gps_code": "6TA7", + "local_code": "6TA7" + }, + { + "id": "13541", + "ident": "6TA8", + "type": "heliport", + "name": "Bell Helicopters Auxiliary Heliport", + "latitude_deg": "32.79899978637695", + "longitude_deg": "-97.15059661865234", + "elevation_ft": "472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hurst", + "scheduled_service": "no", + "gps_code": "6TA8", + "local_code": "6TA8" + }, + { + "id": "13542", + "ident": "6TA9", + "type": "small_airport", + "name": "Los Ebanos Ranch Airport", + "latitude_deg": "28.117000579833984", + "longitude_deg": "-98.0447006225586", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mathis", + "scheduled_service": "no", + "gps_code": "6TA9", + "local_code": "6TA9" + }, + { + "id": "13543", + "ident": "6TE0", + "type": "small_airport", + "name": "Skalitsky Airport", + "latitude_deg": "26.290300369262695", + "longitude_deg": "-97.94940185546875", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Edcouch", + "scheduled_service": "no", + "gps_code": "6TE0", + "local_code": "6TE0" + }, + { + "id": "13544", + "ident": "6TE1", + "type": "small_airport", + "name": "Norman & White Airport", + "latitude_deg": "26.361499786376953", + "longitude_deg": "-98.15249633789062", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Edinburg", + "scheduled_service": "no", + "gps_code": "6TE1", + "local_code": "6TE1" + }, + { + "id": "13545", + "ident": "6TE2", + "type": "closed", + "name": "Zimmerle Airport", + "latitude_deg": "32.270401", + "longitude_deg": "-99.5979", + "elevation_ft": "2057", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Abilene", + "scheduled_service": "no", + "keywords": "6F2, 6TE2" + }, + { + "id": "13546", + "ident": "6TE3", + "type": "small_airport", + "name": "Hahns Airport", + "latitude_deg": "28.94890022277832", + "longitude_deg": "-96.54969787597656", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Edna", + "scheduled_service": "no", + "gps_code": "6TE3", + "local_code": "6TE3" + }, + { + "id": "13547", + "ident": "6TE4", + "type": "closed", + "name": "Coldwater Ranch Airport", + "latitude_deg": "36.233398", + "longitude_deg": "-101.734", + "elevation_ft": "3446", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sunray", + "scheduled_service": "no", + "keywords": "6TE4" + }, + { + "id": "13548", + "ident": "6TE5", + "type": "small_airport", + "name": "Kubecka Flying Service Inc. Airport", + "latitude_deg": "28.98080062866211", + "longitude_deg": "-96.62190246582031", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Edna", + "scheduled_service": "no", + "gps_code": "6TE5", + "local_code": "6TE5" + }, + { + "id": "13549", + "ident": "6TE6", + "type": "small_airport", + "name": "6666 Ranch Airport", + "latitude_deg": "33.6412010193", + "longitude_deg": "-100.347999573", + "elevation_ft": "1775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Guthrie", + "scheduled_service": "no", + "gps_code": "6TE6", + "local_code": "6TE6" + }, + { + "id": "13550", + "ident": "6TE7", + "type": "small_airport", + "name": "Mc Neill Ranch Airport", + "latitude_deg": "34.837600708", + "longitude_deg": "-101.57900238", + "elevation_ft": "3413", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wayside", + "scheduled_service": "no", + "gps_code": "6TE7", + "local_code": "6TE7" + }, + { + "id": "13551", + "ident": "6TE8", + "type": "small_airport", + "name": "Douglas Flying Service Private Airport", + "latitude_deg": "33.17042", + "longitude_deg": "-100.217092", + "elevation_ft": "1743", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Aspermont", + "scheduled_service": "no", + "gps_code": "6TE8", + "local_code": "6TE8" + }, + { + "id": "13552", + "ident": "6TE9", + "type": "small_airport", + "name": "Mc Kenzie Field", + "latitude_deg": "32.816799163800006", + "longitude_deg": "-94.616897583", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Avinger", + "scheduled_service": "no", + "gps_code": "6TE9", + "local_code": "6TE9" + }, + { + "id": "13553", + "ident": "6TN0", + "type": "heliport", + "name": "Waldens Creek Heliport", + "latitude_deg": "35.790401458740234", + "longitude_deg": "-83.60679626464844", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Pigeon Forge", + "scheduled_service": "no", + "gps_code": "6TN0", + "local_code": "6TN0" + }, + { + "id": "13554", + "ident": "6TN1", + "type": "small_airport", + "name": "Weakleys Field", + "latitude_deg": "36.40620041", + "longitude_deg": "-87.0821991", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Pleasantview", + "scheduled_service": "no", + "gps_code": "6TN1", + "local_code": "6TN1" + }, + { + "id": "13555", + "ident": "6TN2", + "type": "heliport", + "name": "Hawkins County Memorial Hospital Heliport", + "latitude_deg": "36.40039825439453", + "longitude_deg": "-83.018798828125", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Rogersville", + "scheduled_service": "no", + "gps_code": "6TN2", + "local_code": "6TN2" + }, + { + "id": "13556", + "ident": "6TN3", + "type": "heliport", + "name": "Sixty Six Heliport", + "latitude_deg": "35.89590072631836", + "longitude_deg": "-83.5781021118164", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Sevierville", + "scheduled_service": "no", + "gps_code": "6TN3", + "local_code": "6TN3" + }, + { + "id": "13557", + "ident": "6TN4", + "type": "small_airport", + "name": "The Aviation Valley Airport", + "latitude_deg": "35.42190170288086", + "longitude_deg": "-86.29029846191406", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Tullahoma", + "scheduled_service": "no", + "gps_code": "6TN4", + "local_code": "6TN4" + }, + { + "id": "13558", + "ident": "6TN5", + "type": "closed", + "name": "Decatur County Hospital Heliport", + "latitude_deg": "35.63631", + "longitude_deg": "-88.122036", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Parsons", + "scheduled_service": "no", + "keywords": "6TN5" + }, + { + "id": "13559", + "ident": "6TN6", + "type": "heliport", + "name": "Milan General Hospital Heliport", + "latitude_deg": "35.91279983520508", + "longitude_deg": "-88.75360107421875", + "elevation_ft": "424", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Milan", + "scheduled_service": "no", + "gps_code": "6TN6", + "local_code": "6TN6" + }, + { + "id": "13560", + "ident": "6TN7", + "type": "small_airport", + "name": "St. Somewhere Airport", + "latitude_deg": "35.02389907836914", + "longitude_deg": "-89.20500183105469", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Grand Junction", + "scheduled_service": "no", + "gps_code": "6TN7", + "local_code": "6TN7" + }, + { + "id": "13561", + "ident": "6TN8", + "type": "heliport", + "name": "Valley Regional Heliport", + "latitude_deg": "36.0547981262207", + "longitude_deg": "-88.10669708251953", + "elevation_ft": "438", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Camden", + "scheduled_service": "no", + "gps_code": "6TN8", + "local_code": "6TN8" + }, + { + "id": "13562", + "ident": "6TN9", + "type": "small_airport", + "name": "Dripping Springs Farm Airport", + "latitude_deg": "36.0614013671875", + "longitude_deg": "-87.24720001220703", + "elevation_ft": "728", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Burns", + "scheduled_service": "no", + "gps_code": "6TN9", + "local_code": "6TN9" + }, + { + "id": "13563", + "ident": "6TS0", + "type": "small_airport", + "name": "True Airport", + "latitude_deg": "34.089612", + "longitude_deg": "-101.740115", + "elevation_ft": "3385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hale Center", + "scheduled_service": "no", + "gps_code": "6TS0", + "local_code": "6TS0" + }, + { + "id": "13564", + "ident": "6TS1", + "type": "small_airport", + "name": "Worrell Airport", + "latitude_deg": "31.177900314331055", + "longitude_deg": "-98.0730972290039", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kempner", + "scheduled_service": "no", + "gps_code": "6TS1", + "local_code": "6TS1" + }, + { + "id": "13565", + "ident": "6TS2", + "type": "closed", + "name": "Longs Farm Airport", + "latitude_deg": "29.099062", + "longitude_deg": "-98.465587", + "elevation_ft": "456", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Leming", + "scheduled_service": "no", + "keywords": "6TS2" + }, + { + "id": "13566", + "ident": "6TS3", + "type": "closed", + "name": "Dale Acres Airport", + "latitude_deg": "32.159902", + "longitude_deg": "-96.941902", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Milford", + "scheduled_service": "no", + "keywords": "6TS3" + }, + { + "id": "13567", + "ident": "6TS4", + "type": "small_airport", + "name": "Stampede Valley Airport", + "latitude_deg": "31.18630027770996", + "longitude_deg": "-97.3906021118164", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Moffat", + "scheduled_service": "no", + "gps_code": "6TS4", + "local_code": "6TS4" + }, + { + "id": "13568", + "ident": "6TS5", + "type": "heliport", + "name": "Microfocus Heliport", + "latitude_deg": "33.073688", + "longitude_deg": "-96.814195", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Plano", + "scheduled_service": "no", + "gps_code": "6TS5", + "local_code": "6TS5" + }, + { + "id": "13569", + "ident": "6TS6", + "type": "small_airport", + "name": "Wood Crest Ranch Airport", + "latitude_deg": "31.04159927368164", + "longitude_deg": "-96.20159912109375", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Normangee", + "scheduled_service": "no", + "gps_code": "6TS6", + "local_code": "6TS6" + }, + { + "id": "13570", + "ident": "6TS7", + "type": "closed", + "name": "Johnny Voudouris Heliport", + "latitude_deg": "30.232574", + "longitude_deg": "-97.915295", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Oak Hill", + "scheduled_service": "no", + "gps_code": "6TS7", + "local_code": "6TS7" + }, + { + "id": "45840", + "ident": "6TS8", + "type": "small_airport", + "name": "Rabb And Nobra Airport", + "latitude_deg": "30.003333", + "longitude_deg": "-96.581111", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Industry", + "scheduled_service": "no", + "gps_code": "6TS8", + "local_code": "6TS8" + }, + { + "id": "13571", + "ident": "6TS9", + "type": "heliport", + "name": "Medical City Plano Heliport", + "latitude_deg": "33.022833", + "longitude_deg": "-96.766564", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Plano", + "scheduled_service": "no", + "gps_code": "6TS9", + "local_code": "6TS9" + }, + { + "id": "13572", + "ident": "6TX0", + "type": "closed", + "name": "Department of Public Safety Heliport", + "latitude_deg": "33.591688", + "longitude_deg": "-101.847576", + "elevation_ft": "3211", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lubbock", + "scheduled_service": "no", + "gps_code": "6TX0", + "local_code": "6TX0" + }, + { + "id": "13573", + "ident": "6TX1", + "type": "closed", + "name": "Action 5 Heliport", + "latitude_deg": "32.750099", + "longitude_deg": "-97.266998", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "keywords": "6TX1" + }, + { + "id": "13574", + "ident": "6TX2", + "type": "closed", + "name": "Circle M Ranch Airport", + "latitude_deg": "29.834999", + "longitude_deg": "-96.514397", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Frelsburg", + "scheduled_service": "no", + "keywords": "6TX2" + }, + { + "id": "13575", + "ident": "6TX3", + "type": "closed", + "name": "Drewery Airport", + "latitude_deg": "33.233501", + "longitude_deg": "-96.7836", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "McKinney", + "scheduled_service": "no", + "keywords": "6TX3" + }, + { + "id": "13576", + "ident": "6TX4", + "type": "small_airport", + "name": "Whitfield Airport", + "latitude_deg": "34.342711", + "longitude_deg": "-101.542228", + "elevation_ft": "3330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kress", + "scheduled_service": "no", + "gps_code": "6TX4", + "local_code": "6TX4" + }, + { + "id": "13577", + "ident": "6TX5", + "type": "heliport", + "name": "Baptist St Anthony's Hospital Heliport", + "latitude_deg": "35.195138", + "longitude_deg": "-101.920187", + "elevation_ft": "3688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Amarillo", + "scheduled_service": "no", + "gps_code": "6TX5", + "local_code": "6TX5" + }, + { + "id": "13578", + "ident": "6TX6", + "type": "small_airport", + "name": "JTJ Ranch Airport", + "latitude_deg": "32.0826", + "longitude_deg": "-96.356697", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corsicana", + "scheduled_service": "no", + "gps_code": "6TX6", + "local_code": "6TX6" + }, + { + "id": "13579", + "ident": "6TX7", + "type": "small_airport", + "name": "Flying L Airpark", + "latitude_deg": "32.537601470947266", + "longitude_deg": "-97.13079833984375", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mansfield", + "scheduled_service": "no", + "gps_code": "6TX7", + "local_code": "6TX7" + }, + { + "id": "13580", + "ident": "6TX8", + "type": "small_airport", + "name": "Hess Airport", + "latitude_deg": "32.555999755859375", + "longitude_deg": "-97.2063980102539", + "elevation_ft": "673", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mansfield", + "scheduled_service": "no", + "gps_code": "6TX8", + "local_code": "6TX8" + }, + { + "id": "13581", + "ident": "6TX9", + "type": "small_airport", + "name": "Stovall Ranch Number 4 Airport", + "latitude_deg": "29.859104", + "longitude_deg": "-102.790603", + "elevation_ft": "3010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no", + "gps_code": "6TX9", + "local_code": "6TX9" + }, + { + "id": "13582", + "ident": "6U5", + "type": "small_airport", + "name": "Hinsdale Airport", + "latitude_deg": "48.38750076293945", + "longitude_deg": "-107.06900024414062", + "elevation_ft": "2220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Hinsdale", + "scheduled_service": "no", + "gps_code": "6U5", + "local_code": "6U5" + }, + { + "id": "13583", + "ident": "6U6", + "type": "small_airport", + "name": "Hogeland Airport", + "latitude_deg": "48.858996", + "longitude_deg": "-108.659543", + "elevation_ft": "3138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Hogeland", + "scheduled_service": "no", + "gps_code": "K6U6", + "local_code": "6U6" + }, + { + "id": "13584", + "ident": "6VA0", + "type": "small_airport", + "name": "Remo Private Airport", + "latitude_deg": "37.81869888305664", + "longitude_deg": "-76.31770324707031", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Reidville", + "scheduled_service": "no", + "gps_code": "6VA0", + "local_code": "6VA0" + }, + { + "id": "13585", + "ident": "6VA1", + "type": "heliport", + "name": "Atlantic Research Corp Heliport", + "latitude_deg": "38.309898376464844", + "longitude_deg": "-77.931396484375", + "elevation_ft": "434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Orange", + "scheduled_service": "no", + "gps_code": "6VA1", + "local_code": "6VA1" + }, + { + "id": "13586", + "ident": "6VA2", + "type": "small_airport", + "name": "Loury Lester Airpark", + "latitude_deg": "36.741798400878906", + "longitude_deg": "-79.8478012084961", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Martinsville", + "scheduled_service": "no", + "gps_code": "6VA2", + "local_code": "6VA2" + }, + { + "id": "13587", + "ident": "6VA3", + "type": "heliport", + "name": "Chippenham Hospital Heliport", + "latitude_deg": "37.51461", + "longitude_deg": "-77.525963", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "6VA3", + "local_code": "6VA3" + }, + { + "id": "13588", + "ident": "6VA4", + "type": "small_airport", + "name": "Summit Airport", + "latitude_deg": "37.284355", + "longitude_deg": "-80.068882", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "6VA4", + "local_code": "6VA4", + "keywords": "Trussmark Airport" + }, + { + "id": "13589", + "ident": "6VA5", + "type": "heliport", + "name": "Heronwood Heliport", + "latitude_deg": "38.9723014831543", + "longitude_deg": "-77.85800170898438", + "elevation_ft": "495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Upperville", + "scheduled_service": "no", + "gps_code": "6VA5", + "local_code": "6VA5" + }, + { + "id": "13590", + "ident": "6VA6", + "type": "heliport", + "name": "Roseland Rescue Squad Heliport", + "latitude_deg": "37.76319885253906", + "longitude_deg": "-78.97889709472656", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Roseland", + "scheduled_service": "no", + "gps_code": "6VA6", + "local_code": "6VA6" + }, + { + "id": "13591", + "ident": "6VA7", + "type": "closed", + "name": "Northampton Accomack Memorial Hospital Heliport", + "latitude_deg": "37.47565", + "longitude_deg": "-75.863149", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Nassawadox", + "scheduled_service": "no", + "keywords": "6VA7" + }, + { + "id": "13592", + "ident": "6VA8", + "type": "heliport", + "name": "Mirador Heliport", + "latitude_deg": "38.04069900512695", + "longitude_deg": "-78.756103515625", + "elevation_ft": "722", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Crozet", + "scheduled_service": "no", + "gps_code": "6VA8", + "local_code": "6VA8" + }, + { + "id": "13593", + "ident": "6VA9", + "type": "small_airport", + "name": "Bush Airport", + "latitude_deg": "36.84260177612305", + "longitude_deg": "-80.2384033203125", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Woolwine", + "scheduled_service": "no", + "gps_code": "6VA9", + "local_code": "6VA9" + }, + { + "id": "324379", + "ident": "6VG4", + "type": "heliport", + "name": "Stonesprings Heliport", + "latitude_deg": "38.940346", + "longitude_deg": "-77.541151", + "elevation_ft": "322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Arcola", + "scheduled_service": "no", + "gps_code": "6VG4", + "local_code": "6VG4" + }, + { + "id": "322507", + "ident": "6VG8", + "type": "heliport", + "name": "Longview Heliport", + "latitude_deg": "39.170278", + "longitude_deg": "-77.519167", + "elevation_ft": "279", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Leesburg", + "scheduled_service": "no", + "gps_code": "6VG8", + "local_code": "6VG8" + }, + { + "id": "13594", + "ident": "6W0", + "type": "small_airport", + "name": "Wade F Maley Field", + "latitude_deg": "39.40700149536133", + "longitude_deg": "-80.27670288085938", + "elevation_ft": "962", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Shinnston", + "scheduled_service": "no", + "gps_code": "6W0", + "local_code": "6W0" + }, + { + "id": "13595", + "ident": "6W4", + "type": "small_airport", + "name": "Caswell Airport", + "latitude_deg": "36.39970016479492", + "longitude_deg": "-79.3927993774414", + "elevation_ft": "648", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Yanceyville", + "scheduled_service": "no", + "gps_code": "6W4", + "local_code": "6W4" + }, + { + "id": "13596", + "ident": "6W6", + "type": "closed", + "name": "Hanover Airport", + "latitude_deg": "39.792599", + "longitude_deg": "-77.024696", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hanover", + "scheduled_service": "no", + "gps_code": "K6W6", + "local_code": "6W6" + }, + { + "id": "13597", + "ident": "6WA0", + "type": "heliport", + "name": "St Joseph's Hospital Heliport", + "latitude_deg": "48.29159927368164", + "longitude_deg": "-117.70899963378906", + "elevation_ft": "1670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Chewelah", + "scheduled_service": "no", + "gps_code": "6WA0", + "local_code": "6WA0" + }, + { + "id": "13598", + "ident": "6WA1", + "type": "heliport", + "name": "Sampson Heliport", + "latitude_deg": "45.64979934692383", + "longitude_deg": "-122.20099639892578", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Camas", + "scheduled_service": "no", + "gps_code": "6WA1", + "local_code": "6WA1" + }, + { + "id": "13599", + "ident": "6WA2", + "type": "small_airport", + "name": "Gower Field", + "latitude_deg": "47.11149978637695", + "longitude_deg": "-122.82099914550781", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Olympia", + "scheduled_service": "no", + "gps_code": "6WA2", + "local_code": "6WA2" + }, + { + "id": "13600", + "ident": "6WA3", + "type": "small_airport", + "name": "Green Acres Airport", + "latitude_deg": "46.608482", + "longitude_deg": "-119.290471", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Basin City", + "scheduled_service": "no", + "gps_code": "6WA3", + "local_code": "6WA3" + }, + { + "id": "13601", + "ident": "6WA4", + "type": "small_airport", + "name": "Ochoa Field", + "latitude_deg": "46.862659", + "longitude_deg": "-119.142937", + "elevation_ft": "1149", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Othello", + "scheduled_service": "no", + "gps_code": "6WA4", + "local_code": "6WA4" + }, + { + "id": "13602", + "ident": "6WA5", + "type": "small_airport", + "name": "Wilding Farm Airport", + "latitude_deg": "48.575354", + "longitude_deg": "-122.943568", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Shaw Island", + "scheduled_service": "no", + "gps_code": "6WA5", + "local_code": "6WA5" + }, + { + "id": "13603", + "ident": "6WA6", + "type": "small_airport", + "name": "Carr Airport", + "latitude_deg": "46.278181", + "longitude_deg": "-118.958417", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Pasco", + "scheduled_service": "no", + "gps_code": "6WA6", + "local_code": "6WA6" + }, + { + "id": "13604", + "ident": "6WA7", + "type": "heliport", + "name": "Metaline Radio Heliport", + "latitude_deg": "48.91849899291992", + "longitude_deg": "-117.41600036621094", + "elevation_ft": "5130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Metaline Falls", + "scheduled_service": "no", + "gps_code": "6WA7", + "local_code": "6WA7" + }, + { + "id": "13605", + "ident": "6WA8", + "type": "heliport", + "name": "East Gig Harbor Heliport", + "latitude_deg": "47.33689880371094", + "longitude_deg": "-122.5790023803711", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Gig Harbor", + "scheduled_service": "no", + "gps_code": "6WA8", + "local_code": "6WA8" + }, + { + "id": "13606", + "ident": "6WA9", + "type": "heliport", + "name": "Skagit Regional Health Arlington Specialty Clinic Heliport", + "latitude_deg": "48.188315", + "longitude_deg": "-122.116964", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "6WA9", + "local_code": "6WA9", + "keywords": "Cascade Valley Hospital Heliport" + }, + { + "id": "13607", + "ident": "6WI0", + "type": "small_airport", + "name": "Cub Acres Airport", + "latitude_deg": "45.18050003051758", + "longitude_deg": "-91.98770141601562", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Prairie Farm", + "scheduled_service": "no", + "gps_code": "6WI0", + "local_code": "6WI0" + }, + { + "id": "13608", + "ident": "6WI1", + "type": "small_airport", + "name": "Winch Airfield", + "latitude_deg": "44.495201110839844", + "longitude_deg": "-89.91259765625", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wisconsin Rapids", + "scheduled_service": "no", + "gps_code": "6WI1", + "local_code": "6WI1" + }, + { + "id": "13609", + "ident": "6WI2", + "type": "small_airport", + "name": "St Croix Riviera Airport", + "latitude_deg": "44.84389877319336", + "longitude_deg": "-92.75579833984375", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "River Falls", + "scheduled_service": "no", + "gps_code": "6WI2", + "local_code": "6WI2" + }, + { + "id": "13610", + "ident": "6WI3", + "type": "closed", + "name": "Will-Be-Gone Airport", + "latitude_deg": "45.6772", + "longitude_deg": "-91.5625", + "elevation_ft": "1290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Birchwood", + "scheduled_service": "no", + "keywords": "6WI3" + }, + { + "id": "13611", + "ident": "6WI4", + "type": "small_airport", + "name": "Saxon Airport", + "latitude_deg": "46.514579", + "longitude_deg": "-90.448965", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Saxon", + "scheduled_service": "no", + "gps_code": "6WI4", + "local_code": "6WI4" + }, + { + "id": "13612", + "ident": "6WI5", + "type": "small_airport", + "name": "Dolata Airport", + "latitude_deg": "44.889198303222656", + "longitude_deg": "-88.0208969116211", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Stiles", + "scheduled_service": "no", + "gps_code": "6WI5", + "local_code": "6WI5" + }, + { + "id": "13613", + "ident": "6WI6", + "type": "closed", + "name": "Mick Shier Field", + "latitude_deg": "44.683998", + "longitude_deg": "-87.627997", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Rosiere", + "scheduled_service": "no", + "keywords": "6WI6" + }, + { + "id": "13614", + "ident": "6WI7", + "type": "small_airport", + "name": "Walnut Wash Airport", + "latitude_deg": "42.61040115356445", + "longitude_deg": "-89.2761001586914", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Orfordville", + "scheduled_service": "no", + "gps_code": "6WI7", + "local_code": "6WI7" + }, + { + "id": "13615", + "ident": "6WI8", + "type": "heliport", + "name": "Waukesha Memorial Hospital Heliport", + "latitude_deg": "43.01100158691406", + "longitude_deg": "-88.2427978515625", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Waukesha", + "scheduled_service": "no", + "gps_code": "6WI8", + "local_code": "6WI8" + }, + { + "id": "13616", + "ident": "6WI9", + "type": "small_airport", + "name": "Rex Ranch Airport", + "latitude_deg": "43.796600341796875", + "longitude_deg": "-89.26789855957031", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Montello", + "scheduled_service": "no", + "gps_code": "6WI9", + "local_code": "6WI9" + }, + { + "id": "13617", + "ident": "6WN5", + "type": "small_airport", + "name": "Airwolfe Airport", + "latitude_deg": "44.49980163574219", + "longitude_deg": "-92.19879913330078", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Stockholm", + "scheduled_service": "no", + "gps_code": "6WN5", + "local_code": "6WN5" + }, + { + "id": "13618", + "ident": "6WN6", + "type": "small_airport", + "name": "Fountain Prairie Airport", + "latitude_deg": "43.380001", + "longitude_deg": "-89.010696", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "6WN6", + "local_code": "6WN6" + }, + { + "id": "13619", + "ident": "6X0", + "type": "small_airport", + "name": "Tarrant Field", + "latitude_deg": "32.097401", + "longitude_deg": "-95.294701", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bullard", + "scheduled_service": "no", + "local_code": "6X0" + }, + { + "id": "351177", + "ident": "6XA0", + "type": "small_airport", + "name": "Circle Ranch Airport", + "latitude_deg": "30.351164", + "longitude_deg": "-99.173056", + "elevation_ft": "2124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fredericksburg", + "scheduled_service": "no", + "gps_code": "6XA0", + "local_code": "6XA0" + }, + { + "id": "46317", + "ident": "6XA4", + "type": "small_airport", + "name": "Zadow Airstrip", + "latitude_deg": "29.991739", + "longitude_deg": "-95.954354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waller", + "scheduled_service": "no", + "gps_code": "6XA4" + }, + { + "id": "322229", + "ident": "6XA7", + "type": "heliport", + "name": "Baylor Scott & White Medical Center - McKinney Heliport", + "latitude_deg": "33.220344", + "longitude_deg": "-96.683478", + "elevation_ft": "631", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "McKinney", + "scheduled_service": "no", + "gps_code": "6XA7", + "local_code": "6XA7" + }, + { + "id": "13620", + "ident": "6XS0", + "type": "heliport", + "name": "Rwave Heliport", + "latitude_deg": "29.83370018005371", + "longitude_deg": "-95.81880187988281", + "elevation_ft": "155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Katy", + "scheduled_service": "no", + "gps_code": "6XS0", + "local_code": "6XS0" + }, + { + "id": "13621", + "ident": "6XS1", + "type": "heliport", + "name": "Northeast Medical Center Hospital Heliport", + "latitude_deg": "29.994706", + "longitude_deg": "-95.276936", + "elevation_ft": "168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Humble", + "scheduled_service": "no", + "gps_code": "6XS1", + "local_code": "6XS1" + }, + { + "id": "13622", + "ident": "6XS2", + "type": "small_airport", + "name": "Luscombe Acres Airport", + "latitude_deg": "32.34600067138672", + "longitude_deg": "-97.19920349121094", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alvarado", + "scheduled_service": "no", + "gps_code": "6XS2", + "local_code": "6XS2" + }, + { + "id": "13623", + "ident": "6XS3", + "type": "small_airport", + "name": "Mullins Landing Airport", + "latitude_deg": "33.13850021362305", + "longitude_deg": "-96.385498046875", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Farmersville", + "scheduled_service": "no", + "gps_code": "6XS3", + "local_code": "6XS3" + }, + { + "id": "13624", + "ident": "6XS4", + "type": "closed", + "name": "Noelke Ranch Airport", + "latitude_deg": "31.167058", + "longitude_deg": "-101.005855", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mertzon", + "scheduled_service": "no", + "local_code": "6XS4" + }, + { + "id": "13625", + "ident": "6XS5", + "type": "closed", + "name": "Cannon Aviation Airport", + "latitude_deg": "26.299498", + "longitude_deg": "-97.955115", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Edcouch", + "scheduled_service": "no", + "gps_code": "6XS5", + "local_code": "6XS5" + }, + { + "id": "13626", + "ident": "6XS6", + "type": "closed", + "name": "US Coast Guard Port Safety Station Heliport", + "latitude_deg": "29.7286", + "longitude_deg": "-95.256897", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "keywords": "6XS6" + }, + { + "id": "13627", + "ident": "6XS7", + "type": "small_airport", + "name": "Eugene's Dream Airport", + "latitude_deg": "33.0452995300293", + "longitude_deg": "-97.67479705810547", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Springtown", + "scheduled_service": "no", + "gps_code": "6XS7", + "local_code": "6XS7" + }, + { + "id": "13628", + "ident": "6XS8", + "type": "small_airport", + "name": "Vultures Row Airport", + "latitude_deg": "33.34", + "longitude_deg": "-97.103104", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanger", + "scheduled_service": "no", + "local_code": "6X8", + "keywords": "6XS8" + }, + { + "id": "13629", + "ident": "6XS9", + "type": "small_airport", + "name": "Harmony Field", + "latitude_deg": "29.296100616455078", + "longitude_deg": "-98.37950134277344", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Elmendorf", + "scheduled_service": "no", + "gps_code": "6XS9", + "local_code": "6XS9" + }, + { + "id": "13630", + "ident": "6Y0", + "type": "small_airport", + "name": "Moorestown Airpark", + "latitude_deg": "44.463833", + "longitude_deg": "-84.994204", + "elevation_ft": "1213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Moorestown", + "scheduled_service": "no", + "local_code": "6Y0" + }, + { + "id": "13631", + "ident": "6Y2", + "type": "heliport", + "name": "Candlelight Heliport", + "latitude_deg": "41.567901611328125", + "longitude_deg": "-73.46070098876953", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "New Milford", + "scheduled_service": "no", + "gps_code": "6Y2", + "local_code": "6Y2" + }, + { + "id": "13633", + "ident": "6Y6", + "type": "small_airport", + "name": "St Helen Airport", + "latitude_deg": "44.36669921875", + "longitude_deg": "-84.4000015258789", + "elevation_ft": "1198", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "St Helen", + "scheduled_service": "no", + "gps_code": "6Y6", + "local_code": "6Y6" + }, + { + "id": "13634", + "ident": "6Y8", + "type": "small_airport", + "name": "Welke Airport", + "latitude_deg": "45.72119903564453", + "longitude_deg": "-85.52030181884766", + "elevation_ft": "664", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Beaver Island", + "scheduled_service": "no", + "gps_code": "6Y8", + "local_code": "6Y8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Welke_Airport" + }, + { + "id": "13635", + "ident": "6Y9", + "type": "small_airport", + "name": "Prickett-Grooms Field", + "latitude_deg": "46.5087530742", + "longitude_deg": "-88.7074542046", + "elevation_ft": "1372", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Sidnaw", + "scheduled_service": "no", + "gps_code": "6Y9", + "local_code": "6Y9" + }, + { + "id": "13636", + "ident": "6Z1", + "type": "small_airport", + "name": "Arness Lake Airport", + "latitude_deg": "60.645473", + "longitude_deg": "-151.304376", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kenai", + "scheduled_service": "no", + "keywords": "6Z1" + }, + { + "id": "45277", + "ident": "70AK", + "type": "small_airport", + "name": "Bangerter Field", + "latitude_deg": "60.518313", + "longitude_deg": "-150.952878", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Soldotna", + "scheduled_service": "no", + "gps_code": "70AK", + "local_code": "70AK" + }, + { + "id": "13637", + "ident": "70AR", + "type": "small_airport", + "name": "Randal Field", + "latitude_deg": "35.994342", + "longitude_deg": "-89.997014", + "elevation_ft": "242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Blytheville", + "scheduled_service": "no", + "gps_code": "70AR", + "local_code": "70AR" + }, + { + "id": "13638", + "ident": "70AZ", + "type": "heliport", + "name": "Regional Public Safety Training Academy Heliport", + "latitude_deg": "32.065593", + "longitude_deg": "-110.854411", + "elevation_ft": "2580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no", + "gps_code": "70AZ", + "local_code": "70AZ" + }, + { + "id": "13639", + "ident": "70B", + "type": "seaplane_base", + "name": "Millinocket Seaplane Base", + "latitude_deg": "45.7283811", + "longitude_deg": "-68.8444856", + "elevation_ft": "492", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Millinocket", + "scheduled_service": "no", + "gps_code": "70B", + "local_code": "70B" + }, + { + "id": "13640", + "ident": "70CA", + "type": "heliport", + "name": "The Wilshire Thayer Heliport", + "latitude_deg": "34.062597", + "longitude_deg": "-118.432328", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "70CA", + "local_code": "70CA" + }, + { + "id": "13641", + "ident": "70CL", + "type": "small_airport", + "name": "Amargosa Airport", + "latitude_deg": "36.295799255371094", + "longitude_deg": "-116.4260025024414", + "elevation_ft": "2037", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Death Valley Junction", + "scheduled_service": "no", + "gps_code": "70CL", + "local_code": "70CL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amargosa_Airport" + }, + { + "id": "13642", + "ident": "70CO", + "type": "heliport", + "name": "Greystone Heliport", + "latitude_deg": "39.64080047607422", + "longitude_deg": "-105.39600372314453", + "elevation_ft": "7540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Evergreen", + "scheduled_service": "no", + "gps_code": "70CO", + "local_code": "70CO" + }, + { + "id": "13643", + "ident": "70D", + "type": "small_airport", + "name": "Titus Field", + "latitude_deg": "39.49869918823242", + "longitude_deg": "-79.85260009765625", + "elevation_ft": "1860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Arthurdale", + "scheduled_service": "no", + "gps_code": "70D", + "local_code": "70D" + }, + { + "id": "322800", + "ident": "70FA", + "type": "small_airport", + "name": "Wee Bee Sky Ranch Airport", + "latitude_deg": "27.562175", + "longitude_deg": "-80.5993694", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Vero Beach", + "scheduled_service": "no", + "gps_code": "70FA", + "local_code": "70FA" + }, + { + "id": "13644", + "ident": "70FD", + "type": "heliport", + "name": "Gulf Coast Helicopters Heliport", + "latitude_deg": "30.23889923095703", + "longitude_deg": "-85.55780029296875", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City", + "scheduled_service": "no", + "gps_code": "70FD", + "local_code": "70FD" + }, + { + "id": "13645", + "ident": "70FL", + "type": "closed", + "name": "James A Haley Veterans Hospital Heliport", + "latitude_deg": "28.063101", + "longitude_deg": "-82.429298", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tampa", + "scheduled_service": "no", + "keywords": "70FL" + }, + { + "id": "13646", + "ident": "70GA", + "type": "heliport", + "name": "GDPS - Police Heliport", + "latitude_deg": "33.9794998169", + "longitude_deg": "-83.97049713130001", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Lawrenceville", + "scheduled_service": "no", + "gps_code": "70GA", + "local_code": "70GA" + }, + { + "id": "13647", + "ident": "70II", + "type": "small_airport", + "name": "Nasby Airport", + "latitude_deg": "39.522238", + "longitude_deg": "-85.686053", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Shelbyville", + "scheduled_service": "no", + "gps_code": "70II", + "local_code": "70II" + }, + { + "id": "13648", + "ident": "70IL", + "type": "small_airport", + "name": "Murphy Farms Airport", + "latitude_deg": "39.423464", + "longitude_deg": "-89.565696", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Farmersville", + "scheduled_service": "no", + "gps_code": "70IL", + "local_code": "70IL" + }, + { + "id": "13649", + "ident": "70IN", + "type": "small_airport", + "name": "Lewis Airfield", + "latitude_deg": "39.18170166015625", + "longitude_deg": "-85.15129852294922", + "elevation_ft": "989", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Milan", + "scheduled_service": "no", + "gps_code": "70IN", + "local_code": "70IN" + }, + { + "id": "13650", + "ident": "70IS", + "type": "heliport", + "name": "Waste Management Inc Heliport", + "latitude_deg": "41.841400146484375", + "longitude_deg": "-87.9927978515625", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Oak Brook", + "scheduled_service": "no", + "gps_code": "70IS", + "local_code": "70IS" + }, + { + "id": "13651", + "ident": "70K", + "type": "small_airport", + "name": "Maize Airport", + "latitude_deg": "37.76559829711914", + "longitude_deg": "-97.43589782714844", + "elevation_ft": "1336", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wichita/Maize/", + "scheduled_service": "no", + "gps_code": "70K", + "local_code": "70K" + }, + { + "id": "332507", + "ident": "70KS", + "type": "small_airport", + "name": "Bannon Field", + "latitude_deg": "37.581772", + "longitude_deg": "-96.94602", + "elevation_ft": "1218", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Douglass", + "scheduled_service": "no", + "gps_code": "70KS", + "local_code": "70KS" + }, + { + "id": "13652", + "ident": "70KY", + "type": "small_airport", + "name": "Vine Grove Airport", + "latitude_deg": "37.81589889526367", + "longitude_deg": "-85.9646987915039", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Vine Grove", + "scheduled_service": "no", + "gps_code": "70KY", + "local_code": "70KY" + }, + { + "id": "13653", + "ident": "70LA", + "type": "small_airport", + "name": "Roland Airport", + "latitude_deg": "31.169099807739258", + "longitude_deg": "-92.75630187988281", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Hineston", + "scheduled_service": "no", + "gps_code": "70LA", + "local_code": "70LA" + }, + { + "id": "13654", + "ident": "70LL", + "type": "small_airport", + "name": "Adams Restricted Landing Area Number 1", + "latitude_deg": "40.936926", + "longitude_deg": "-88.753739", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pontiac", + "scheduled_service": "no", + "gps_code": "70LL", + "local_code": "70LL" + }, + { + "id": "13655", + "ident": "70MA", + "type": "heliport", + "name": "Tobey Hospital Heliport", + "latitude_deg": "41.755001068115234", + "longitude_deg": "-70.71389770507812", + "elevation_ft": "86", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Wareham", + "scheduled_service": "no", + "gps_code": "70MA", + "local_code": "70MA" + }, + { + "id": "45468", + "ident": "70MD", + "type": "closed", + "name": "Washington Field", + "latitude_deg": "38.458734", + "longitude_deg": "-77.23498", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Nanjemoy", + "scheduled_service": "no", + "keywords": "70MD" + }, + { + "id": "345609", + "ident": "70ME", + "type": "seaplane_base", + "name": "SWN Pond Splash in Go Seaplane Base", + "latitude_deg": "43.520544", + "longitude_deg": "-70.648686", + "elevation_ft": "318", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Lyman", + "scheduled_service": "no", + "gps_code": "70ME", + "local_code": "70ME", + "keywords": "Swan Pond" + }, + { + "id": "299729", + "ident": "70MI", + "type": "heliport", + "name": "Charlevoix Area Hospital Heliport", + "latitude_deg": "45.314068458", + "longitude_deg": "-85.2750259638", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Charlevoix", + "scheduled_service": "no", + "gps_code": "70MI", + "local_code": "70MI" + }, + { + "id": "13656", + "ident": "70MN", + "type": "closed", + "name": "Harry-Walt Airport", + "latitude_deg": "45.351898", + "longitude_deg": "-93.246101", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Cedar", + "scheduled_service": "no", + "keywords": "70MN" + }, + { + "id": "13657", + "ident": "70MO", + "type": "closed", + "name": "Andrews Airport", + "latitude_deg": "37.2178", + "longitude_deg": "-94.146301", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Carthage", + "scheduled_service": "no", + "keywords": "70MO" + }, + { + "id": "13658", + "ident": "70MY", + "type": "seaplane_base", + "name": "Loon Lane Seaplane Base", + "latitude_deg": "44.60329818725586", + "longitude_deg": "-93.52220153808594", + "elevation_ft": "944", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "New Prague", + "scheduled_service": "no", + "gps_code": "70MY", + "local_code": "70MY" + }, + { + "id": "13659", + "ident": "70N", + "type": "small_airport", + "name": "Spring Hill Airport", + "latitude_deg": "41.3474006652832", + "longitude_deg": "-75.41590118408203", + "elevation_ft": "1729", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Sterling", + "scheduled_service": "no", + "gps_code": "70N", + "local_code": "70N" + }, + { + "id": "13660", + "ident": "70NC", + "type": "small_airport", + "name": "Martindale Executive Airpark", + "latitude_deg": "36.54460144042969", + "longitude_deg": "-78.14800262451172", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Paschall", + "scheduled_service": "no", + "gps_code": "70NC", + "local_code": "70NC" + }, + { + "id": "326136", + "ident": "70ND", + "type": "small_airport", + "name": "Oak Creek Airport", + "latitude_deg": "47.933135", + "longitude_deg": "-101.148175", + "elevation_ft": "2041", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Sawyer", + "scheduled_service": "no", + "gps_code": "70ND", + "local_code": "70ND", + "keywords": "http://www.airnav.com/airport/70ND" + }, + { + "id": "324578", + "ident": "70NH", + "type": "small_airport", + "name": "Surette Heliport", + "latitude_deg": "43.264916", + "longitude_deg": "-71.548417", + "elevation_ft": "412", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "70NH", + "local_code": "70NH" + }, + { + "id": "13661", + "ident": "70NJ", + "type": "small_airport", + "name": "Parker Airport", + "latitude_deg": "40.67756", + "longitude_deg": "-75.024629", + "elevation_ft": "307", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Asbury", + "scheduled_service": "no", + "gps_code": "70NJ", + "local_code": "70NJ" + }, + { + "id": "346193", + "ident": "70NR", + "type": "small_airport", + "name": "Ruby's Landing", + "latitude_deg": "35.218562", + "longitude_deg": "-78.366777", + "elevation_ft": "144", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Newton Grove", + "scheduled_service": "no", + "gps_code": "70NR", + "local_code": "70NR" + }, + { + "id": "45556", + "ident": "70NY", + "type": "heliport", + "name": "Lakeside Heliport", + "latitude_deg": "41.422053", + "longitude_deg": "-74.571475", + "elevation_ft": "876", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Middletown", + "scheduled_service": "no", + "gps_code": "70NY", + "local_code": "70NY" + }, + { + "id": "13662", + "ident": "70OH", + "type": "closed", + "name": "Shenandoah Airpark", + "latitude_deg": "40.92013", + "longitude_deg": "-82.4878", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Shenandoah", + "scheduled_service": "no", + "keywords": "70OH" + }, + { + "id": "13663", + "ident": "70OI", + "type": "heliport", + "name": "Crestline Hospital Heliport", + "latitude_deg": "40.792301177978516", + "longitude_deg": "-82.7396011352539", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Crestline", + "scheduled_service": "no", + "gps_code": "70OI", + "local_code": "70OI" + }, + { + "id": "13664", + "ident": "70OK", + "type": "small_airport", + "name": "Old 66 Strip", + "latitude_deg": "36.83369827270508", + "longitude_deg": "-94.90409851074219", + "elevation_ft": "853", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "70OK", + "local_code": "70OK" + }, + { + "id": "13665", + "ident": "70OR", + "type": "small_airport", + "name": "Goodin Creek Airport", + "latitude_deg": "45.410056", + "longitude_deg": "-123.148773", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Gaston", + "scheduled_service": "no", + "gps_code": "70OR", + "local_code": "70OR" + }, + { + "id": "13666", + "ident": "70PA", + "type": "closed", + "name": "Phico Heliport", + "latitude_deg": "40.245601", + "longitude_deg": "-77.026901", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mechanicsburg", + "scheduled_service": "no", + "keywords": "70PA" + }, + { + "id": "13667", + "ident": "70PN", + "type": "small_airport", + "name": "Sanders Personal Use Airport", + "latitude_deg": "41.989200592041016", + "longitude_deg": "-79.30110168457031", + "elevation_ft": "1455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Sugar Grove", + "scheduled_service": "no", + "gps_code": "70PN", + "local_code": "70PN" + }, + { + "id": "346082", + "ident": "70PR", + "type": "heliport", + "name": "PR Police-Ponce Area Heliport", + "latitude_deg": "18.004055", + "longitude_deg": "-66.584213", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Ponce", + "scheduled_service": "no", + "gps_code": "70PR", + "local_code": "70PR" + }, + { + "id": "13668", + "ident": "70S", + "type": "small_airport", + "name": "Mead Flying Service Airport", + "latitude_deg": "47.787200927734375", + "longitude_deg": "-117.35800170898438", + "elevation_ft": "1905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Mead", + "scheduled_service": "no", + "gps_code": "70S", + "local_code": "70S" + }, + { + "id": "322447", + "ident": "70SC", + "type": "heliport", + "name": "Robinson Nuclear Power Plant Heliport", + "latitude_deg": "34.4007167", + "longitude_deg": "-80.1549694", + "elevation_ft": "236", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Hartsville", + "scheduled_service": "no", + "gps_code": "70SC", + "local_code": "70SC" + }, + { + "id": "13669", + "ident": "70TA", + "type": "closed", + "name": "BTA Heliport", + "latitude_deg": "31.996799", + "longitude_deg": "-102.081001", + "elevation_ft": "2815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Midland", + "scheduled_service": "no", + "keywords": "70TA" + }, + { + "id": "13670", + "ident": "70TE", + "type": "closed", + "name": "Flying Heart Ranch Airport", + "latitude_deg": "31.5021", + "longitude_deg": "-97.080803", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no", + "keywords": "70TE" + }, + { + "id": "13671", + "ident": "70TS", + "type": "heliport", + "name": "Memorial Hermann Katy Hospital Heliport", + "latitude_deg": "29.786674", + "longitude_deg": "-95.78408", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Katy", + "scheduled_service": "no", + "gps_code": "70TS", + "local_code": "70TS" + }, + { + "id": "13672", + "ident": "70TX", + "type": "heliport", + "name": "Tgp 17 Heliport", + "latitude_deg": "29.532499313354492", + "longitude_deg": "-96.14579772949219", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "East Bernard", + "scheduled_service": "no", + "gps_code": "70TX", + "local_code": "70TX" + }, + { + "id": "13673", + "ident": "70VA", + "type": "small_airport", + "name": "Burnt Chimney Airport", + "latitude_deg": "37.075027", + "longitude_deg": "-79.827193", + "elevation_ft": "1034", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Wirtz", + "scheduled_service": "no", + "gps_code": "70VA", + "local_code": "70VA" + }, + { + "id": "13674", + "ident": "70WA", + "type": "heliport", + "name": "Whitman Community Hospital Heliport", + "latitude_deg": "46.869483", + "longitude_deg": "-117.375969", + "elevation_ft": "2250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Colfax", + "scheduled_service": "no", + "gps_code": "70WA", + "local_code": "70WA" + }, + { + "id": "13675", + "ident": "70WI", + "type": "closed", + "name": "Kanten Field", + "latitude_deg": "45.032203", + "longitude_deg": "-92.354401", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Baldwin", + "scheduled_service": "no", + "keywords": "70WI" + }, + { + "id": "334341", + "ident": "70XA", + "type": "small_airport", + "name": "Looney Airstrip", + "latitude_deg": "33.392714", + "longitude_deg": "-94.441422", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "New Boston", + "scheduled_service": "no", + "gps_code": "70XA", + "local_code": "70XA" + }, + { + "id": "13676", + "ident": "70XS", + "type": "small_airport", + "name": "Restoration Ranch Airport", + "latitude_deg": "29.992146", + "longitude_deg": "-98.044863", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wimberley", + "scheduled_service": "no", + "gps_code": "70XS", + "local_code": "70XS" + }, + { + "id": "13677", + "ident": "71AK", + "type": "small_airport", + "name": "Bluff Park Farm Airport", + "latitude_deg": "61.527752", + "longitude_deg": "-149.496474", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "71AK", + "local_code": "71AK" + }, + { + "id": "45238", + "ident": "71AL", + "type": "small_airport", + "name": "Sells Airport", + "latitude_deg": "31.808649", + "longitude_deg": "-86.52411", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "71AL", + "local_code": "71AL" + }, + { + "id": "353865", + "ident": "71AR", + "type": "small_airport", + "name": "Diamond C Airport", + "latitude_deg": "36.282576", + "longitude_deg": "-94.473764", + "elevation_ft": "1270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Gentry", + "scheduled_service": "no", + "gps_code": "71AR", + "local_code": "71AR" + }, + { + "id": "13678", + "ident": "71AZ", + "type": "heliport", + "name": "Spawr Heliport", + "latitude_deg": "34.5099983215332", + "longitude_deg": "-114.34400177001953", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Lake Havasu City", + "scheduled_service": "no", + "gps_code": "71AZ", + "local_code": "71AZ" + }, + { + "id": "13679", + "ident": "71CA", + "type": "heliport", + "name": "Fresh Pond Heliport", + "latitude_deg": "38.76020050048828", + "longitude_deg": "-120.53600311279297", + "elevation_ft": "3740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pollock Pines", + "scheduled_service": "no", + "gps_code": "71CA", + "local_code": "71CA" + }, + { + "id": "13680", + "ident": "71CL", + "type": "small_airport", + "name": "Gunnersfield Ranch Airport", + "latitude_deg": "39.352699279785156", + "longitude_deg": "-122.09400177001953", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Delevan", + "scheduled_service": "no", + "gps_code": "71CL", + "local_code": "71CL" + }, + { + "id": "13681", + "ident": "71CO", + "type": "heliport", + "name": "Houston Heliport", + "latitude_deg": "39.550899505615234", + "longitude_deg": "-104.50599670410156", + "elevation_ft": "6039", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Elizabeth", + "scheduled_service": "no", + "gps_code": "71CO", + "local_code": "71CO" + }, + { + "id": "324704", + "ident": "71FA", + "type": "heliport", + "name": "FPL Jupiter West Office Complex Heliport", + "latitude_deg": "26.907", + "longitude_deg": "-80.3003471", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jupiter", + "scheduled_service": "no", + "gps_code": "71FA", + "local_code": "71FA" + }, + { + "id": "13682", + "ident": "71FD", + "type": "heliport", + "name": "Blackcreek International Heliport", + "latitude_deg": "30.07390022277832", + "longitude_deg": "-81.81580352783203", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Middleburg", + "scheduled_service": "no", + "gps_code": "71FD", + "local_code": "71FD" + }, + { + "id": "13683", + "ident": "71FL", + "type": "heliport", + "name": "Miami Federal Reserve Bank Heliport", + "latitude_deg": "25.807396283800003", + "longitude_deg": "-80.341912508", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "71FL", + "local_code": "71FL" + }, + { + "id": "13684", + "ident": "71GA", + "type": "heliport", + "name": "Piedmont Newton Hospital Heliport", + "latitude_deg": "33.601809", + "longitude_deg": "-83.848699", + "elevation_ft": "772", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Covington", + "scheduled_service": "no", + "gps_code": "71GA", + "local_code": "71GA", + "keywords": "Newton Medical Center" + }, + { + "id": "13685", + "ident": "71IL", + "type": "heliport", + "name": "Lutheran General Hospital Heliport", + "latitude_deg": "42.0382136985", + "longitude_deg": "-87.8476452827", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Park Ridge", + "scheduled_service": "no", + "gps_code": "71IL", + "local_code": "71IL" + }, + { + "id": "13686", + "ident": "71IN", + "type": "small_airport", + "name": "Morgan Airfield", + "latitude_deg": "38.66590118408203", + "longitude_deg": "-86.00579833984375", + "elevation_ft": "922", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "71IN", + "local_code": "71IN" + }, + { + "id": "13687", + "ident": "71IS", + "type": "small_airport", + "name": "Ted's Place Airport", + "latitude_deg": "40.42559814453125", + "longitude_deg": "-88.00060272216797", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Paxton", + "scheduled_service": "no", + "gps_code": "71IS", + "local_code": "71IS" + }, + { + "id": "13688", + "ident": "71K", + "type": "small_airport", + "name": "Westport Airport", + "latitude_deg": "37.647499084472656", + "longitude_deg": "-97.3844985961914", + "elevation_ft": "1290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wichita", + "scheduled_service": "no", + "gps_code": "71K", + "local_code": "71K" + }, + { + "id": "13689", + "ident": "71KS", + "type": "small_airport", + "name": "Stonehenge Airport", + "latitude_deg": "39.10419845581055", + "longitude_deg": "-95.29609680175781", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Williamstown", + "scheduled_service": "no", + "gps_code": "71KS", + "local_code": "71KS" + }, + { + "id": "13690", + "ident": "71KY", + "type": "small_airport", + "name": "Sunrise Acres Airport", + "latitude_deg": "39.0348014832", + "longitude_deg": "-84.8727035522", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Petersburg", + "scheduled_service": "no", + "gps_code": "71KY", + "local_code": "71KY" + }, + { + "id": "13691", + "ident": "71LA", + "type": "closed", + "name": "Gustafson Airport", + "latitude_deg": "32.433101", + "longitude_deg": "-91.315201", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Tallulah", + "scheduled_service": "no", + "keywords": "71LA" + }, + { + "id": "13692", + "ident": "71LL", + "type": "small_airport", + "name": "Riverode Farms Airport", + "latitude_deg": "40.843992", + "longitude_deg": "-88.56082", + "elevation_ft": "651", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pontiac", + "scheduled_service": "no", + "gps_code": "71LL", + "local_code": "71LL" + }, + { + "id": "13693", + "ident": "71ME", + "type": "small_airport", + "name": "Twin Eagles Airport", + "latitude_deg": "43.9668998718", + "longitude_deg": "-70.6010971069", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Naples", + "scheduled_service": "no", + "gps_code": "71ME", + "local_code": "71ME" + }, + { + "id": "299704", + "ident": "71MI", + "type": "small_airport", + "name": "Johnston Airport", + "latitude_deg": "42.084385", + "longitude_deg": "-83.517015", + "elevation_ft": "643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Belleville", + "scheduled_service": "no", + "gps_code": "71MI", + "local_code": "71MI" + }, + { + "id": "13694", + "ident": "71MN", + "type": "seaplane_base", + "name": "Mattison's Seaplane Base", + "latitude_deg": "45.28179931640625", + "longitude_deg": "-92.96659851074219", + "elevation_ft": "902", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Forest Lake", + "scheduled_service": "no", + "gps_code": "71MN", + "local_code": "71MN" + }, + { + "id": "13695", + "ident": "71MO", + "type": "small_airport", + "name": "Famuliner Farms Airport", + "latitude_deg": "39.29199981689453", + "longitude_deg": "-93.38410186767578", + "elevation_ft": "655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Wakenda", + "scheduled_service": "no", + "gps_code": "71MO", + "local_code": "71MO" + }, + { + "id": "13696", + "ident": "71NC", + "type": "small_airport", + "name": "K & D Airport", + "latitude_deg": "36.263961", + "longitude_deg": "-79.450216", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Elon", + "scheduled_service": "no", + "gps_code": "71NC", + "local_code": "71NC" + }, + { + "id": "13697", + "ident": "71NE", + "type": "small_airport", + "name": "Neben Airport", + "latitude_deg": "41.03559875488281", + "longitude_deg": "-99.82980346679688", + "elevation_ft": "2615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Oconto", + "scheduled_service": "no", + "gps_code": "71NE", + "local_code": "71NE" + }, + { + "id": "324708", + "ident": "71NH", + "type": "heliport", + "name": "Brady-Laconia Heliport", + "latitude_deg": "43.600928", + "longitude_deg": "-71.466115", + "elevation_ft": "516", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Laconia", + "scheduled_service": "no", + "gps_code": "71NH", + "local_code": "71NH" + }, + { + "id": "13698", + "ident": "71NJ", + "type": "closed", + "name": "RBH Heliport", + "latitude_deg": "40.540697", + "longitude_deg": "-74.506501", + "elevation_ft": "58", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bound Brook", + "scheduled_service": "no", + "keywords": "71NJ" + }, + { + "id": "13700", + "ident": "71NY", + "type": "heliport", + "name": "St. Elizabeth Hospital Heliport", + "latitude_deg": "43.08219909667969", + "longitude_deg": "-75.26570129394531", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Utica", + "scheduled_service": "no", + "gps_code": "71NY", + "local_code": "71NY" + }, + { + "id": "13701", + "ident": "71OH", + "type": "closed", + "name": "Sattler Landing Strip", + "latitude_deg": "41.641701", + "longitude_deg": "-83.874901", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Swanton", + "scheduled_service": "no", + "keywords": "71OH" + }, + { + "id": "13702", + "ident": "71OK", + "type": "small_airport", + "name": "Neuwirth Airstrip", + "latitude_deg": "34.57619857788086", + "longitude_deg": "-98.48300170898438", + "elevation_ft": "1185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lawton", + "scheduled_service": "no", + "gps_code": "71OK", + "local_code": "71OK" + }, + { + "id": "13703", + "ident": "71OR", + "type": "small_airport", + "name": "Cerny Airport", + "latitude_deg": "44.2445", + "longitude_deg": "-119.126242", + "elevation_ft": "4765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Seneca", + "scheduled_service": "no", + "gps_code": "71OR", + "local_code": "71OR" + }, + { + "id": "13704", + "ident": "71PA", + "type": "heliport", + "name": "Ybp Heliport", + "latitude_deg": "39.966800689697266", + "longitude_deg": "-76.79969787597656", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "York", + "scheduled_service": "no", + "gps_code": "71PA", + "local_code": "71PA" + }, + { + "id": "45775", + "ident": "71PN", + "type": "small_airport", + "name": "Schulteis Field", + "latitude_deg": "39.91815", + "longitude_deg": "-77.045533", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "New Oxford", + "scheduled_service": "no", + "gps_code": "71PN", + "local_code": "71PN" + }, + { + "id": "13705", + "ident": "71TA", + "type": "small_airport", + "name": "Bates Field", + "latitude_deg": "31.8319", + "longitude_deg": "-102.2478", + "elevation_ft": "2820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Odessa", + "scheduled_service": "no", + "gps_code": "71TA", + "local_code": "71TA" + }, + { + "id": "13706", + "ident": "71TE", + "type": "small_airport", + "name": "Moursund Ranch Airport", + "latitude_deg": "30.378065", + "longitude_deg": "-98.376414", + "elevation_ft": "1471", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Round Mountain", + "scheduled_service": "no", + "gps_code": "71TE", + "local_code": "71TE", + "keywords": "A W Ranch Landing Strip" + }, + { + "id": "13707", + "ident": "71TS", + "type": "closed", + "name": "Circle C Ranch Airport", + "latitude_deg": "32.879668", + "longitude_deg": "-97.334169", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Saginaw", + "scheduled_service": "no", + "keywords": "71TS" + }, + { + "id": "13708", + "ident": "71TX", + "type": "small_airport", + "name": "Grier Airport", + "latitude_deg": "29.872699737548828", + "longitude_deg": "-98.7322006225586", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Boerne", + "scheduled_service": "no", + "gps_code": "71TX", + "local_code": "71TX" + }, + { + "id": "13709", + "ident": "71VA", + "type": "heliport", + "name": "Sentara Hampton General Hospital Heliport", + "latitude_deg": "37.01100158691406", + "longitude_deg": "-76.36859893798828", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Hampton", + "scheduled_service": "no", + "gps_code": "71VA", + "local_code": "71VA" + }, + { + "id": "13710", + "ident": "71WA", + "type": "heliport", + "name": "I-90/Bellevue Busi Pk Boeing Comp Svcs Hdq Heliport", + "latitude_deg": "47.584564209", + "longitude_deg": "-122.129577637", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Bellevue", + "scheduled_service": "no", + "gps_code": "71WA", + "local_code": "71WA" + }, + { + "id": "13711", + "ident": "71WI", + "type": "heliport", + "name": "Hoffman Prop Inc Heliport", + "latitude_deg": "43.26639938354492", + "longitude_deg": "-87.96589660644531", + "elevation_ft": "602", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Theinsville", + "scheduled_service": "no", + "gps_code": "71WI", + "local_code": "71WI" + }, + { + "id": "346867", + "ident": "71XA", + "type": "small_airport", + "name": "Red Star Airport", + "latitude_deg": "32.352929", + "longitude_deg": "-95.716227", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Murchison", + "scheduled_service": "no", + "gps_code": "71XA", + "local_code": "71XA" + }, + { + "id": "13712", + "ident": "71XS", + "type": "closed", + "name": "Flying V Airport", + "latitude_deg": "33.3465", + "longitude_deg": "-97.205803", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanger", + "scheduled_service": "no", + "keywords": "71XS, 24726.011*A" + }, + { + "id": "13713", + "ident": "72AK", + "type": "heliport", + "name": "Trophy Lodge Heliport", + "latitude_deg": "64.027099609375", + "longitude_deg": "-145.67999267578125", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Delta Junction", + "scheduled_service": "no", + "gps_code": "72AK", + "local_code": "72AK" + }, + { + "id": "13714", + "ident": "72AZ", + "type": "heliport", + "name": "Adams Place Heliport", + "latitude_deg": "34.70819854736328", + "longitude_deg": "-112.33399963378906", + "elevation_ft": "5000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Prescott Valley", + "scheduled_service": "no", + "gps_code": "72AZ", + "local_code": "72AZ" + }, + { + "id": "13715", + "ident": "72CA", + "type": "heliport", + "name": "Quincy Helitack Base Heliport", + "latitude_deg": "39.98320007324219", + "longitude_deg": "-120.95099639892578", + "elevation_ft": "3500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Quincy", + "scheduled_service": "no", + "gps_code": "72CA", + "local_code": "72CA" + }, + { + "id": "13716", + "ident": "72CL", + "type": "small_airport", + "name": "Iron Mountain Pumping Plant Airport", + "latitude_deg": "34.13420104980469", + "longitude_deg": "-115.11900329589844", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Desert Center", + "scheduled_service": "no", + "gps_code": "72CL", + "local_code": "72CL" + }, + { + "id": "13717", + "ident": "72CO", + "type": "small_airport", + "name": "Idler Bro's Airport", + "latitude_deg": "39.67940139770508", + "longitude_deg": "-102.59100341796875", + "elevation_ft": "4200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Kirk", + "scheduled_service": "no", + "gps_code": "72CO", + "local_code": "72CO" + }, + { + "id": "330487", + "ident": "72FA", + "type": "heliport", + "name": "Northside Hospital Heliport", + "latitude_deg": "27.825031", + "longitude_deg": "-82.703203", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Saint Petersburg", + "scheduled_service": "no", + "gps_code": "72FA", + "local_code": "72FA", + "keywords": "https://www.airnav.com/airport/72FA" + }, + { + "id": "13718", + "ident": "72FD", + "type": "heliport", + "name": "Lazy B I Ranch Heliport", + "latitude_deg": "28.029699325561523", + "longitude_deg": "-81.65450286865234", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Winter Haven", + "scheduled_service": "no", + "gps_code": "72FD", + "local_code": "72FD" + }, + { + "id": "13719", + "ident": "72FL", + "type": "small_airport", + "name": "Gator Airpark", + "latitude_deg": "28.157516479492188", + "longitude_deg": "-81.23479461669922", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St Cloud", + "scheduled_service": "no", + "gps_code": "72FL", + "local_code": "72FL" + }, + { + "id": "13720", + "ident": "72GA", + "type": "small_airport", + "name": "Barbour Island Airport", + "latitude_deg": "31.583599090576172", + "longitude_deg": "-81.23320007324219", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Shellman Bluff", + "scheduled_service": "no", + "gps_code": "72GA", + "local_code": "72GA" + }, + { + "id": "45412", + "ident": "72II", + "type": "heliport", + "name": "Franciscan Health Dyer Heliport", + "latitude_deg": "41.493333", + "longitude_deg": "-87.523611", + "elevation_ft": "727", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Dyer", + "scheduled_service": "no", + "gps_code": "72II", + "local_code": "72II", + "keywords": "St Margaret Mercy Hospital" + }, + { + "id": "13721", + "ident": "72IL", + "type": "heliport", + "name": "Cornerstone Heliport", + "latitude_deg": "41.810298919677734", + "longitude_deg": "-88.16829681396484", + "elevation_ft": "773", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Warrenville", + "scheduled_service": "no", + "gps_code": "72IL", + "local_code": "72IL" + }, + { + "id": "13722", + "ident": "72IN", + "type": "small_airport", + "name": "Gutwein Airport", + "latitude_deg": "40.9119987487793", + "longitude_deg": "-86.8739013671875", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Monon", + "scheduled_service": "no", + "gps_code": "72IN", + "local_code": "72IN" + }, + { + "id": "13723", + "ident": "72IS", + "type": "closed", + "name": "Wiley Updike Airport", + "latitude_deg": "41.625301", + "longitude_deg": "-88.574501", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Plano", + "scheduled_service": "no", + "keywords": "72IS" + }, + { + "id": "13724", + "ident": "72K", + "type": "small_airport", + "name": "Westport Auxiliary Airport", + "latitude_deg": "37.60419845581055", + "longitude_deg": "-97.35890197753906", + "elevation_ft": "1270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wichita", + "scheduled_service": "no", + "gps_code": "72K", + "local_code": "72K" + }, + { + "id": "13725", + "ident": "72KS", + "type": "closed", + "name": "Mount Muncie Airport", + "latitude_deg": "39.2733", + "longitude_deg": "-94.880203", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Lansing", + "scheduled_service": "no", + "keywords": "72KS" + }, + { + "id": "13726", + "ident": "72KY", + "type": "small_airport", + "name": "Carr Airport", + "latitude_deg": "36.765292", + "longitude_deg": "-84.199305", + "elevation_ft": "1105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Williamsburg", + "scheduled_service": "no", + "gps_code": "72KY", + "local_code": "72KY" + }, + { + "id": "13727", + "ident": "72LA", + "type": "heliport", + "name": "Sulphur Mines Heliport", + "latitude_deg": "30.246000289916992", + "longitude_deg": "-93.40850067138672", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Sulphur", + "scheduled_service": "no", + "gps_code": "72LA", + "local_code": "72LA" + }, + { + "id": "13728", + "ident": "72LL", + "type": "small_airport", + "name": "Foley Airport", + "latitude_deg": "41.373600006103516", + "longitude_deg": "-89.34449768066406", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "72LL", + "local_code": "72LL" + }, + { + "id": "45449", + "ident": "72ME", + "type": "small_airport", + "name": "Philbrick Mountain Airport", + "latitude_deg": "44.635278", + "longitude_deg": "-68.6325", + "elevation_ft": "667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Ellsworth", + "scheduled_service": "no", + "gps_code": "72ME", + "local_code": "72ME" + }, + { + "id": "13729", + "ident": "72MI", + "type": "small_airport", + "name": "Northwoods Airport", + "latitude_deg": "46.2859001159668", + "longitude_deg": "-89.27749633789062", + "elevation_ft": "1642", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Watersmeet", + "scheduled_service": "no", + "gps_code": "72MI", + "local_code": "72MI" + }, + { + "id": "13730", + "ident": "72MN", + "type": "closed", + "name": "Bardwell Airstrip", + "latitude_deg": "47.752699", + "longitude_deg": "-95.334967", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Clearbrook", + "scheduled_service": "no", + "local_code": "72MN", + "keywords": "72MN" + }, + { + "id": "322511", + "ident": "72MO", + "type": "small_airport", + "name": "Sunnys Field Airport", + "latitude_deg": "38.425983", + "longitude_deg": "-91.245396", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Leslie", + "scheduled_service": "no", + "gps_code": "72MO", + "local_code": "72MO" + }, + { + "id": "13731", + "ident": "72MU", + "type": "heliport", + "name": "Executive Hills Polo Club Heliport", + "latitude_deg": "39.280601501464844", + "longitude_deg": "-94.67130279541016", + "elevation_ft": "1042", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kansas City", + "scheduled_service": "no", + "gps_code": "72MU", + "local_code": "72MU" + }, + { + "id": "13732", + "ident": "72NC", + "type": "heliport", + "name": "Bethany South Heliport", + "latitude_deg": "36.51100158691406", + "longitude_deg": "-77.8915023803711", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Littleton", + "scheduled_service": "no", + "gps_code": "72NC", + "local_code": "72NC" + }, + { + "id": "13733", + "ident": "72ND", + "type": "small_airport", + "name": "Berg Field", + "latitude_deg": "47.66109848022461", + "longitude_deg": "-97.59200286865234", + "elevation_ft": "1111", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Northwood", + "scheduled_service": "no", + "gps_code": "72ND", + "local_code": "72ND" + }, + { + "id": "13734", + "ident": "72NE", + "type": "small_airport", + "name": "J&J Airport", + "latitude_deg": "41.079200744628906", + "longitude_deg": "-96.1530990600586", + "elevation_ft": "1135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "72NE", + "local_code": "72NE" + }, + { + "id": "13735", + "ident": "72NJ", + "type": "closed", + "name": "Elmport Heliport", + "latitude_deg": "40.317299", + "longitude_deg": "-74.159599", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Colts Neck", + "scheduled_service": "no", + "keywords": "72NJ" + }, + { + "id": "13736", + "ident": "72NM", + "type": "small_airport", + "name": "Otero Mill Airport", + "latitude_deg": "32.95840072631836", + "longitude_deg": "-105.96299743652344", + "elevation_ft": "4603", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "La Luz", + "scheduled_service": "no", + "gps_code": "72NM", + "local_code": "72NM" + }, + { + "id": "13737", + "ident": "72NY", + "type": "closed", + "name": "St Marys Heliport", + "latitude_deg": "43.153892", + "longitude_deg": "-79.030216", + "elevation_ft": "607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Niagara Falls", + "scheduled_service": "no", + "keywords": "72NY" + }, + { + "id": "13738", + "ident": "72OH", + "type": "small_airport", + "name": "Zeigler Landing Strip", + "latitude_deg": "41.604533", + "longitude_deg": "-83.867281", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Swanton", + "scheduled_service": "no", + "gps_code": "72OH", + "local_code": "72OH" + }, + { + "id": "13739", + "ident": "72OI", + "type": "closed", + "name": "Tathams' Airport", + "latitude_deg": "41.070843", + "longitude_deg": "-83.683591", + "elevation_ft": "817", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Findlay", + "scheduled_service": "no", + "local_code": "72OI", + "keywords": "72OI" + }, + { + "id": "13740", + "ident": "72OK", + "type": "heliport", + "name": "Jay Heliport", + "latitude_deg": "36.43339920043945", + "longitude_deg": "-94.80020141601562", + "elevation_ft": "1032", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Jay", + "scheduled_service": "no", + "gps_code": "72OK", + "local_code": "72OK" + }, + { + "id": "13741", + "ident": "72OR", + "type": "small_airport", + "name": "Ochs Private Airport", + "latitude_deg": "44.7843017578125", + "longitude_deg": "-120.95500183105469", + "elevation_ft": "1790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Madras", + "scheduled_service": "no", + "gps_code": "72OR", + "local_code": "72OR" + }, + { + "id": "13742", + "ident": "72PA", + "type": "heliport", + "name": "York Electro-Panel Psnl Use Heliport", + "latitude_deg": "40.03340148925781", + "longitude_deg": "-76.66639709472656", + "elevation_ft": "482", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "York", + "scheduled_service": "no", + "gps_code": "72PA", + "local_code": "72PA" + }, + { + "id": "13743", + "ident": "72PN", + "type": "heliport", + "name": "Ibm Distribution Center Heliport", + "latitude_deg": "40.227901458740234", + "longitude_deg": "-77.0886001586914", + "elevation_ft": "454", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "New Kingston", + "scheduled_service": "no", + "gps_code": "72PN", + "local_code": "72PN" + }, + { + "id": "13744", + "ident": "72S", + "type": "small_airport", + "name": "Rosalia Municipal Airport", + "latitude_deg": "47.236602", + "longitude_deg": "-117.421424", + "elevation_ft": "2169", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Rosalia", + "scheduled_service": "no", + "gps_code": "K72S", + "local_code": "72S" + }, + { + "id": "13745", + "ident": "72TA", + "type": "small_airport", + "name": "Pierce Field", + "latitude_deg": "28.458599090576172", + "longitude_deg": "-96.29190063476562", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port O'Connor", + "scheduled_service": "no", + "gps_code": "72TA", + "local_code": "72TA" + }, + { + "id": "13746", + "ident": "72TE", + "type": "small_airport", + "name": "Chaparrosa Ranch Airport", + "latitude_deg": "28.8794002532959", + "longitude_deg": "-99.9906005859375", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "La Pryor", + "scheduled_service": "no", + "gps_code": "72TE", + "local_code": "72TE" + }, + { + "id": "13747", + "ident": "72TN", + "type": "heliport", + "name": "Lakeway Regional Hospital Heliport", + "latitude_deg": "36.215999603271484", + "longitude_deg": "-83.30079650878906", + "elevation_ft": "1422", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Morristown", + "scheduled_service": "no", + "gps_code": "72TN", + "local_code": "72TN" + }, + { + "id": "13748", + "ident": "72TS", + "type": "small_airport", + "name": "Galaxy Ranch Airport", + "latitude_deg": "29.36079978942871", + "longitude_deg": "-96.62249755859375", + "elevation_ft": "178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sheridan", + "scheduled_service": "no", + "gps_code": "72TS", + "local_code": "72TS" + }, + { + "id": "13749", + "ident": "72TX", + "type": "heliport", + "name": "Johnson Space Center Heliport", + "latitude_deg": "29.562397", + "longitude_deg": "-95.091146", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "72TX", + "local_code": "72TX" + }, + { + "id": "13750", + "ident": "72VA", + "type": "heliport", + "name": "Inova Fairfax Hospital Heliport", + "latitude_deg": "38.857133", + "longitude_deg": "-77.227806", + "elevation_ft": "388", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Falls Church", + "scheduled_service": "no", + "gps_code": "72VA", + "local_code": "72VA" + }, + { + "id": "13751", + "ident": "72WA", + "type": "heliport", + "name": "Hiline Heliport", + "latitude_deg": "48.26430130004883", + "longitude_deg": "-121.59200286865234", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Darrington", + "scheduled_service": "no", + "gps_code": "72WA", + "local_code": "72WA" + }, + { + "id": "13752", + "ident": "72WI", + "type": "small_airport", + "name": "Windhaven Airport", + "latitude_deg": "44.04610061645508", + "longitude_deg": "-87.9928970336914", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Collins", + "scheduled_service": "no", + "gps_code": "72WI", + "local_code": "72WI" + }, + { + "id": "349504", + "ident": "72XA", + "type": "small_airport", + "name": "Stiffs Airpark", + "latitude_deg": "29.486632", + "longitude_deg": "-96.041286", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beasley", + "scheduled_service": "no", + "gps_code": "72XA", + "local_code": "72XA" + }, + { + "id": "13753", + "ident": "72XS", + "type": "closed", + "name": "El Paisano Airport", + "latitude_deg": "30.0336", + "longitude_deg": "-96.6847", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Round Top", + "scheduled_service": "no", + "keywords": "72R, 72XS" + }, + { + "id": "13754", + "ident": "73AK", + "type": "heliport", + "name": "Yankee Cove Heliport", + "latitude_deg": "58.59170150756836", + "longitude_deg": "-134.89999389648438", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Juneau", + "scheduled_service": "no", + "gps_code": "73AK", + "local_code": "73AK" + }, + { + "id": "13755", + "ident": "73AR", + "type": "small_airport", + "name": "Dogwood Airport", + "latitude_deg": "35.052948", + "longitude_deg": "-92.053904", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "73AR", + "local_code": "73AR" + }, + { + "id": "13756", + "ident": "73AZ", + "type": "small_airport", + "name": "Dunton Ranch Airport", + "latitude_deg": "35.201657", + "longitude_deg": "-113.361804", + "elevation_ft": "5115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Kingman", + "scheduled_service": "no", + "gps_code": "73AZ", + "local_code": "73AZ", + "keywords": "transwestern pipeline airfield 1" + }, + { + "id": "13757", + "ident": "73CA", + "type": "small_airport", + "name": "Bear Valley Airport", + "latitude_deg": "38.457706", + "longitude_deg": "-120.041991", + "elevation_ft": "7073", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bear Valley", + "scheduled_service": "no", + "gps_code": "73CA", + "local_code": "73CA", + "keywords": "Bear Valley STOLport" + }, + { + "id": "13758", + "ident": "73CL", + "type": "small_airport", + "name": "Julian Hinds Pump Plant Airstrip", + "latitude_deg": "33.698066", + "longitude_deg": "-115.638185", + "elevation_ft": "1335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hayfield", + "scheduled_service": "no", + "gps_code": "73CL", + "local_code": "73CL" + }, + { + "id": "13759", + "ident": "73CO", + "type": "closed", + "name": "Woods STOLport", + "latitude_deg": "38.388901", + "longitude_deg": "-107.822998", + "elevation_ft": "6120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Montrose", + "scheduled_service": "no", + "keywords": "73CO" + }, + { + "id": "13760", + "ident": "73F", + "type": "small_airport", + "name": "Wings For Christ International Flight Academy Airport", + "latitude_deg": "31.6238", + "longitude_deg": "-97.022499", + "elevation_ft": "455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no", + "gps_code": "K73F", + "local_code": "73F" + }, + { + "id": "429764", + "ident": "73FA", + "type": "heliport", + "name": "HCA Florida South Shore Hospital Heliport", + "latitude_deg": "27.714415", + "longitude_deg": "-82.366086", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sun City Center", + "scheduled_service": "no", + "gps_code": "73FA", + "local_code": "73FA", + "keywords": "South Shore Hospital Heliport" + }, + { + "id": "13761", + "ident": "73FD", + "type": "small_airport", + "name": "Brookins Air Strip", + "latitude_deg": "29.510799407958984", + "longitude_deg": "-82.86009979248047", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Chiefland", + "scheduled_service": "no", + "gps_code": "73FD", + "local_code": "73FD" + }, + { + "id": "13762", + "ident": "73FL", + "type": "heliport", + "name": "Williston Memorial Hospital Heliport", + "latitude_deg": "29.382999420166016", + "longitude_deg": "-82.45480346679688", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Williston", + "scheduled_service": "no", + "gps_code": "73FL", + "local_code": "73FL" + }, + { + "id": "13763", + "ident": "73GA", + "type": "heliport", + "name": "Ruffwood Heliport", + "latitude_deg": "33.88249969482422", + "longitude_deg": "-84.43579864501953", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "73GA", + "local_code": "73GA" + }, + { + "id": "13764", + "ident": "73IA", + "type": "small_airport", + "name": "Harris Field", + "latitude_deg": "43.23559952", + "longitude_deg": "-93.20829773", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Mason City", + "scheduled_service": "no", + "gps_code": "73IA", + "local_code": "73IA" + }, + { + "id": "13765", + "ident": "73II", + "type": "small_airport", + "name": "Nulltown Wingnuts Ultralightport", + "latitude_deg": "39.57170104980469", + "longitude_deg": "-85.15859985351562", + "elevation_ft": "765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Connersville", + "scheduled_service": "no", + "gps_code": "73II", + "local_code": "73II" + }, + { + "id": "13766", + "ident": "73IL", + "type": "heliport", + "name": "St Francis Hospital - Litchfield Heliport", + "latitude_deg": "39.181366", + "longitude_deg": "-89.640291", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Litchfield", + "scheduled_service": "no", + "gps_code": "73IL", + "local_code": "73IL" + }, + { + "id": "13767", + "ident": "73IN", + "type": "small_airport", + "name": "Benham Airport", + "latitude_deg": "38.97669982910156", + "longitude_deg": "-87.02249908447266", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lyons", + "scheduled_service": "no", + "gps_code": "73IN", + "local_code": "73IN" + }, + { + "id": "13768", + "ident": "73KS", + "type": "small_airport", + "name": "Philip Ranch Airport", + "latitude_deg": "38.780601501464844", + "longitude_deg": "-99.22119903564453", + "elevation_ft": "1923", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Hays", + "scheduled_service": "no", + "gps_code": "73KS", + "local_code": "73KS" + }, + { + "id": "13769", + "ident": "73KY", + "type": "small_airport", + "name": "Brooks Field", + "latitude_deg": "38.03329849243164", + "longitude_deg": "-85.80079650878906", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Brooks", + "scheduled_service": "no", + "gps_code": "73KY", + "local_code": "73KY" + }, + { + "id": "13770", + "ident": "73LA", + "type": "heliport", + "name": "Moss Regional Hospital Heliport", + "latitude_deg": "30.181400299072266", + "longitude_deg": "-93.20829772949219", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Charles", + "scheduled_service": "no", + "gps_code": "73LA", + "local_code": "73LA" + }, + { + "id": "353039", + "ident": "73MD", + "type": "small_airport", + "name": "Swan Creek Airport", + "latitude_deg": "39.175278", + "longitude_deg": "-76.2425", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Rock Hall", + "scheduled_service": "no", + "gps_code": "73MD", + "local_code": "73MD" + }, + { + "id": "13771", + "ident": "73MI", + "type": "heliport", + "name": "Port Huron Hospital Heliport", + "latitude_deg": "42.98680114746094", + "longitude_deg": "-82.42919921875", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Port Huron", + "scheduled_service": "no", + "gps_code": "73MI", + "local_code": "73MI" + }, + { + "id": "13772", + "ident": "73MN", + "type": "closed", + "name": "Paynes Airport", + "latitude_deg": "45.135399", + "longitude_deg": "-95.516701", + "elevation_ft": "1035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "DeGraff", + "scheduled_service": "no", + "keywords": "73MN" + }, + { + "id": "13773", + "ident": "73MO", + "type": "heliport", + "name": "SSM Health St Mary's Hospital-St Louis Heliport", + "latitude_deg": "38.633293", + "longitude_deg": "-90.311523", + "elevation_ft": "688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no", + "gps_code": "73MO", + "local_code": "73MO", + "keywords": "St Mary's Heliport" + }, + { + "id": "13774", + "ident": "73MU", + "type": "small_airport", + "name": "Sky-Go Farms Airport", + "latitude_deg": "38.884566", + "longitude_deg": "-91.970003", + "elevation_ft": "878", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Fulton", + "scheduled_service": "no", + "gps_code": "73MU", + "local_code": "73MU" + }, + { + "id": "13775", + "ident": "73NC", + "type": "heliport", + "name": "Beard Heliport", + "latitude_deg": "35.06769943237305", + "longitude_deg": "-78.93419647216797", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "73NC", + "local_code": "73NC" + }, + { + "id": "13776", + "ident": "73ND", + "type": "small_airport", + "name": "M Heart Ranch Airport", + "latitude_deg": "46.57160186767578", + "longitude_deg": "-98.68840026855469", + "elevation_ft": "1535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Nortonville", + "scheduled_service": "no", + "gps_code": "73ND", + "local_code": "73ND" + }, + { + "id": "13777", + "ident": "73NE", + "type": "small_airport", + "name": "Bornmann Field", + "latitude_deg": "41.02669906616211", + "longitude_deg": "-96.53060150146484", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Waverly", + "scheduled_service": "no", + "gps_code": "73NE", + "local_code": "73NE" + }, + { + "id": "13778", + "ident": "73NJ", + "type": "heliport", + "name": "Montegue Heliport", + "latitude_deg": "41.3116666667", + "longitude_deg": "-74.764", + "elevation_ft": "644", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Montegue", + "scheduled_service": "no", + "gps_code": "73NJ", + "local_code": "73NJ" + }, + { + "id": "45673", + "ident": "73NY", + "type": "small_airport", + "name": "Olmstead Landing Strip", + "latitude_deg": "42.265767", + "longitude_deg": "-75.310033", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Masonville", + "scheduled_service": "no", + "gps_code": "73NY", + "local_code": "73NY" + }, + { + "id": "13779", + "ident": "73OH", + "type": "small_airport", + "name": "Thompson Drag Raceway Airport", + "latitude_deg": "41.64699935913086", + "longitude_deg": "-81.00869750976562", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Thompson", + "scheduled_service": "no", + "gps_code": "73OH", + "local_code": "73OH" + }, + { + "id": "13780", + "ident": "73OI", + "type": "small_airport", + "name": "Rick's Airport", + "latitude_deg": "41.574501037597656", + "longitude_deg": "-81.07569885253906", + "elevation_ft": "1265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Montville", + "scheduled_service": "no", + "gps_code": "73OI", + "local_code": "73OI" + }, + { + "id": "13781", + "ident": "73OK", + "type": "closed", + "name": "Haxton Airport", + "latitude_deg": "35.845601", + "longitude_deg": "-99.337304", + "elevation_ft": "2050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Leedey", + "scheduled_service": "no", + "keywords": "73OK" + }, + { + "id": "13782", + "ident": "73OR", + "type": "small_airport", + "name": "Ribbon Ridge Airport", + "latitude_deg": "45.370283", + "longitude_deg": "-123.0659", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Newberg", + "scheduled_service": "no", + "gps_code": "73OR", + "local_code": "73OR" + }, + { + "id": "13783", + "ident": "73PA", + "type": "small_airport", + "name": "Gilbert Airport", + "latitude_deg": "39.929500579833984", + "longitude_deg": "-76.77079772949219", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "York", + "scheduled_service": "no", + "gps_code": "73PA", + "local_code": "73PA" + }, + { + "id": "13784", + "ident": "73PN", + "type": "small_airport", + "name": "Finkhaven Airport", + "latitude_deg": "41.36840057373047", + "longitude_deg": "-77.07109832763672", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Trout Run", + "scheduled_service": "no", + "gps_code": "73PN", + "local_code": "73PN" + }, + { + "id": "13785", + "ident": "73S", + "type": "small_airport", + "name": "Willard Field", + "latitude_deg": "47.23550033569336", + "longitude_deg": "-117.04399871826172", + "elevation_ft": "2520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tekoa", + "scheduled_service": "no", + "gps_code": "73S", + "local_code": "73S" + }, + { + "id": "13786", + "ident": "73TA", + "type": "small_airport", + "name": "Salado Airport", + "latitude_deg": "30.920684", + "longitude_deg": "-97.540455", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Salado", + "scheduled_service": "no", + "local_code": "2TX", + "keywords": "73TA" + }, + { + "id": "13787", + "ident": "73TE", + "type": "small_airport", + "name": "Moore Private Airport", + "latitude_deg": "32.92658", + "longitude_deg": "-97.55957", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Azle", + "scheduled_service": "no", + "gps_code": "73TE", + "local_code": "73TE" + }, + { + "id": "336236", + "ident": "73TN", + "type": "heliport", + "name": "Humboldt Medical Center Heliport", + "latitude_deg": "35.815308", + "longitude_deg": "-88.894997", + "elevation_ft": "405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Humboldt", + "scheduled_service": "no", + "gps_code": "73TN", + "local_code": "73TN" + }, + { + "id": "13788", + "ident": "73TS", + "type": "heliport", + "name": "Fire Department Training Center Heliport", + "latitude_deg": "32.78730010986328", + "longitude_deg": "-96.73470306396484", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "73TS", + "local_code": "73TS" + }, + { + "id": "13789", + "ident": "73TX", + "type": "closed", + "name": "Frerich Ranch Airport", + "latitude_deg": "29.1719", + "longitude_deg": "-100.641998", + "elevation_ft": "995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no", + "keywords": "73TX" + }, + { + "id": "13790", + "ident": "73U", + "type": "closed", + "name": "Golden Age Mine Heliport", + "latitude_deg": "44.002701", + "longitude_deg": "-115.811996", + "elevation_ft": "5794", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Idaho City", + "scheduled_service": "no", + "keywords": "73U" + }, + { + "id": "13791", + "ident": "73VA", + "type": "heliport", + "name": "Southern Virginia Regional Medical Center Heliport", + "latitude_deg": "36.7020988464", + "longitude_deg": "-77.5400009155", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Emporia", + "scheduled_service": "no", + "gps_code": "73VA", + "local_code": "73VA" + }, + { + "id": "13792", + "ident": "73WA", + "type": "small_airport", + "name": "Seven Bays Airport", + "latitude_deg": "47.849029", + "longitude_deg": "-118.333442", + "elevation_ft": "1580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Seven Bays", + "scheduled_service": "no", + "gps_code": "73WA", + "local_code": "73WA" + }, + { + "id": "13793", + "ident": "73WI", + "type": "small_airport", + "name": "Vetterkind Strip", + "latitude_deg": "45.239715", + "longitude_deg": "-91.507296", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "New Auburn", + "scheduled_service": "no", + "gps_code": "73WI", + "local_code": "73WI" + }, + { + "id": "45898", + "ident": "73WT", + "type": "small_airport", + "name": "McGregor Airport", + "latitude_deg": "46.717011", + "longitude_deg": "-118.097509", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Port Orchard", + "scheduled_service": "no", + "gps_code": "73WT", + "local_code": "73WT" + }, + { + "id": "13794", + "ident": "73XS", + "type": "closed", + "name": "Dearing Ranch Airport", + "latitude_deg": "32.445999", + "longitude_deg": "-98.371201", + "elevation_ft": "1055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gordon", + "scheduled_service": "no", + "keywords": "73XS" + }, + { + "id": "13795", + "ident": "74AK", + "type": "closed", + "name": "Puviaq Airport", + "latitude_deg": "70.715599", + "longitude_deg": "-154.407037", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Barrow", + "scheduled_service": "no", + "local_code": "14", + "keywords": "74AK" + }, + { + "id": "45294", + "ident": "74AZ", + "type": "small_airport", + "name": "Rancho San Marcos Airport", + "latitude_deg": "31.619611", + "longitude_deg": "-110.047361", + "elevation_ft": "4353", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tombstone", + "scheduled_service": "no", + "gps_code": "74AZ", + "local_code": "74AZ" + }, + { + "id": "13796", + "ident": "74CA", + "type": "closed", + "name": "R.I. San Bernardino G/L Helistop", + "latitude_deg": "34.074501", + "longitude_deg": "-117.268997", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Bernardino", + "scheduled_service": "no", + "keywords": "74CA" + }, + { + "id": "13797", + "ident": "74CL", + "type": "closed", + "name": "Di Giorgio Ranch Airport", + "latitude_deg": "35.256901", + "longitude_deg": "-118.833", + "elevation_ft": "517", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Arvin", + "scheduled_service": "no", + "home_link": "https://digitalassets.lib.berkeley.edu/roho/ucb/text/digiorgio_family__w.pdf#page70", + "keywords": "74CL" + }, + { + "id": "13798", + "ident": "74CO", + "type": "small_airport", + "name": "Westberg-Rosling Farms Airport", + "latitude_deg": "40.04719924926758", + "longitude_deg": "-104.20899963378906", + "elevation_ft": "4857", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Roggen", + "scheduled_service": "no", + "gps_code": "74CO", + "local_code": "74CO" + }, + { + "id": "13799", + "ident": "74FD", + "type": "small_airport", + "name": "Clarksville Airport", + "latitude_deg": "30.464099884033203", + "longitude_deg": "-85.1771011352539", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Clarksville", + "scheduled_service": "no", + "gps_code": "74FD", + "local_code": "74FD" + }, + { + "id": "13800", + "ident": "74FL", + "type": "small_airport", + "name": "Jefferson Landings Airport", + "latitude_deg": "30.5846004486084", + "longitude_deg": "-83.70790100097656", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Monticello", + "scheduled_service": "no", + "gps_code": "74FL", + "local_code": "74FL" + }, + { + "id": "13801", + "ident": "74GA", + "type": "closed", + "name": "Bowens Mill Christian Center Airport", + "latitude_deg": "31.833506", + "longitude_deg": "-83.219354", + "elevation_ft": "362", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fitzgerald", + "scheduled_service": "no", + "keywords": "74GA" + }, + { + "id": "13802", + "ident": "74II", + "type": "heliport", + "name": "Hendricks Community Hospital Heliport", + "latitude_deg": "39.76279830932617", + "longitude_deg": "-86.50170135498047", + "elevation_ft": "893", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "74II", + "local_code": "74II" + }, + { + "id": "13803", + "ident": "74IL", + "type": "heliport", + "name": "Mendota Community Hospital Heliport", + "latitude_deg": "41.551998138399995", + "longitude_deg": "-89.13150024410001", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mendota", + "scheduled_service": "no", + "local_code": "14IL" + }, + { + "id": "13804", + "ident": "74IN", + "type": "small_airport", + "name": "Tucker Farms Airport", + "latitude_deg": "40.56840133666992", + "longitude_deg": "-85.34439849853516", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Montpelier", + "scheduled_service": "no", + "gps_code": "74IN", + "local_code": "74IN" + }, + { + "id": "13805", + "ident": "74IS", + "type": "heliport", + "name": "Quad City Medical Force Heliport", + "latitude_deg": "41.49420166015625", + "longitude_deg": "-90.31279754638672", + "elevation_ft": "654", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Colona", + "scheduled_service": "no", + "gps_code": "74IS", + "local_code": "74IS" + }, + { + "id": "13806", + "ident": "74KS", + "type": "small_airport", + "name": "Ensminger Airport", + "latitude_deg": "37.93339920043945", + "longitude_deg": "-95.21720123291016", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Moran", + "scheduled_service": "no", + "gps_code": "74KS", + "local_code": "74KS" + }, + { + "id": "13807", + "ident": "74KY", + "type": "small_airport", + "name": "Terry Field", + "latitude_deg": "36.89870071411133", + "longitude_deg": "-88.8467025756836", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Cunningham", + "scheduled_service": "no", + "gps_code": "74KY", + "local_code": "74KY" + }, + { + "id": "13808", + "ident": "74L", + "type": "heliport", + "name": "Malibu Administrative Center Heliport", + "latitude_deg": "34.037484", + "longitude_deg": "-118.689364", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Malibu", + "scheduled_service": "no", + "local_code": "74L" + }, + { + "id": "13809", + "ident": "74LA", + "type": "heliport", + "name": "Era Heliport", + "latitude_deg": "29.822399139404297", + "longitude_deg": "-92.13819885253906", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Intracoastal City", + "scheduled_service": "no", + "gps_code": "74LA", + "local_code": "74LA" + }, + { + "id": "13810", + "ident": "74LL", + "type": "heliport", + "name": "Illinois Dept of Transportation Nr 6 Heliport", + "latitude_deg": "39.7789001465", + "longitude_deg": "-89.77839660640001", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "74LL", + "local_code": "74LL" + }, + { + "id": "45448", + "ident": "74ME", + "type": "seaplane_base", + "name": "Labrador Landing Seaplane Base", + "latitude_deg": "44.065175", + "longitude_deg": "-69.533522", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "New Castle", + "scheduled_service": "no", + "gps_code": "74ME", + "local_code": "74ME" + }, + { + "id": "13811", + "ident": "74MN", + "type": "closed", + "name": "Frisch Personal Airport", + "latitude_deg": "45.697201", + "longitude_deg": "-96.431395", + "elevation_ft": "1046", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Dumont", + "scheduled_service": "no", + "keywords": "74MN" + }, + { + "id": "13812", + "ident": "74MO", + "type": "heliport", + "name": "Ozarkcom Army Heliport", + "latitude_deg": "38.69369888305664", + "longitude_deg": "-90.26959991455078", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no", + "gps_code": "74MO", + "local_code": "74MO" + }, + { + "id": "13813", + "ident": "74MU", + "type": "small_airport", + "name": "Koala-T-Field Airport", + "latitude_deg": "39.0400009155", + "longitude_deg": "-91.13040161130002", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hawk Point", + "scheduled_service": "no", + "gps_code": "74MU", + "local_code": "74MU" + }, + { + "id": "13814", + "ident": "74N", + "type": "small_airport", + "name": "Bendigo Airport", + "latitude_deg": "40.55849838256836", + "longitude_deg": "-76.55960083007812", + "elevation_ft": "791", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tower City", + "scheduled_service": "no", + "gps_code": "74N", + "local_code": "74N", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bendigo_Airport_(Pennsylvania)" + }, + { + "id": "13815", + "ident": "74NC", + "type": "small_airport", + "name": "Benton Farm Airport", + "latitude_deg": "35.09640121459961", + "longitude_deg": "-76.62969970703125", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Whartonville", + "scheduled_service": "no", + "gps_code": "74NC", + "local_code": "74NC" + }, + { + "id": "13816", + "ident": "74NJ", + "type": "heliport", + "name": "Cruz Farm Heliport", + "latitude_deg": "40.186798095703125", + "longitude_deg": "-74.15070343017578", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Farmingdale", + "scheduled_service": "no", + "gps_code": "74NJ", + "local_code": "74NJ" + }, + { + "id": "13817", + "ident": "74NY", + "type": "small_airport", + "name": "New Salem Aerodrome", + "latitude_deg": "43.00559997558594", + "longitude_deg": "-77.29139709472656", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Farmington", + "scheduled_service": "no", + "gps_code": "74NY", + "local_code": "74NY" + }, + { + "id": "13818", + "ident": "74OH", + "type": "heliport", + "name": "University of Toledo Medical Center Heliport", + "latitude_deg": "41.619947", + "longitude_deg": "-83.618097", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Toledo", + "scheduled_service": "no", + "gps_code": "74OH", + "local_code": "74OH", + "keywords": "Medical College of Ohio Hospital Heliport" + }, + { + "id": "13819", + "ident": "74OI", + "type": "heliport", + "name": "Licking Memorial Hospital Heliport", + "latitude_deg": "40.0609016418457", + "longitude_deg": "-82.44319915771484", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Newark", + "scheduled_service": "no", + "gps_code": "74OI", + "local_code": "74OI" + }, + { + "id": "13820", + "ident": "74OK", + "type": "closed", + "name": "W.G. Anderson Memorial Airport", + "latitude_deg": "33.950102", + "longitude_deg": "-97.150297", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Marietta", + "scheduled_service": "no", + "keywords": "74OK" + }, + { + "id": "13821", + "ident": "74OR", + "type": "small_airport", + "name": "Stan Jost Airport", + "latitude_deg": "45.323699951171875", + "longitude_deg": "-123.01899719238281", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Newberg", + "scheduled_service": "no", + "gps_code": "74OR", + "local_code": "74OR" + }, + { + "id": "13822", + "ident": "74PA", + "type": "small_airport", + "name": "Shontz Airport", + "latitude_deg": "40.29180145263672", + "longitude_deg": "-75.46630096435547", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Zieglerville", + "scheduled_service": "no", + "gps_code": "74PA", + "local_code": "74PA" + }, + { + "id": "13823", + "ident": "74PN", + "type": "heliport", + "name": "Altoona Regional Hospital Heliport", + "latitude_deg": "40.522300720214844", + "longitude_deg": "-78.39700317382812", + "elevation_ft": "1256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Altoona", + "scheduled_service": "no", + "gps_code": "74PN", + "local_code": "74PN" + }, + { + "id": "13824", + "ident": "74R", + "type": "small_airport", + "name": "Horizon Airport", + "latitude_deg": "29.283599853515625", + "longitude_deg": "-98.50029754638672", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "74R", + "local_code": "74R" + }, + { + "id": "13825", + "ident": "74TA", + "type": "closed", + "name": "Glass Ranch Airport", + "latitude_deg": "28.445138", + "longitude_deg": "-100.156431", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Carrizo Springs", + "scheduled_service": "no", + "keywords": "74TA" + }, + { + "id": "13826", + "ident": "74TE", + "type": "small_airport", + "name": "Flat Top Ranch Airport", + "latitude_deg": "32.05989838", + "longitude_deg": "-97.79470062", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Walnut Springs", + "scheduled_service": "no", + "gps_code": "74TE", + "local_code": "74TE" + }, + { + "id": "13827", + "ident": "74TS", + "type": "heliport", + "name": "St Mary of the Plains Hospital Heliport", + "latitude_deg": "33.573871", + "longitude_deg": "-101.899118", + "elevation_ft": "3280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lubbock", + "scheduled_service": "no", + "gps_code": "74TS", + "local_code": "74TS" + }, + { + "id": "13828", + "ident": "74TX", + "type": "small_airport", + "name": "Fort Clark Springs Airport", + "latitude_deg": "29.28660011291504", + "longitude_deg": "-100.43399810791016", + "elevation_ft": "1106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no", + "gps_code": "74TX", + "local_code": "74TX" + }, + { + "id": "13829", + "ident": "74VA", + "type": "heliport", + "name": "Inova Fair Oaks Hospital Heliport", + "latitude_deg": "38.8843002319", + "longitude_deg": "-77.37920379639999", + "elevation_ft": "466", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fairfax", + "scheduled_service": "no", + "gps_code": "74VA", + "local_code": "74VA" + }, + { + "id": "13830", + "ident": "74WA", + "type": "small_airport", + "name": "Mattawa Air Strip", + "latitude_deg": "46.733168", + "longitude_deg": "-119.711163", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Mattawa", + "scheduled_service": "no", + "gps_code": "74WA", + "local_code": "74WA" + }, + { + "id": "13831", + "ident": "74WI", + "type": "heliport", + "name": "Witi Tv Studio Building Heliport", + "latitude_deg": "43.18109893798828", + "longitude_deg": "-87.9634017944336", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Brown Deer", + "scheduled_service": "no", + "gps_code": "74WI", + "local_code": "74WI" + }, + { + "id": "45888", + "ident": "74WT", + "type": "small_airport", + "name": "Blowout Bench Airport", + "latitude_deg": "47.111011", + "longitude_deg": "-120.710742", + "elevation_ft": "2065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ellensburg", + "scheduled_service": "no", + "gps_code": "74WT", + "local_code": "74WT" + }, + { + "id": "301206", + "ident": "74xa", + "type": "small_airport", + "name": "Gun Barrel City Airpark", + "latitude_deg": "32.35515", + "longitude_deg": "-96.145665", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "scheduled_service": "no", + "gps_code": "74XA", + "keywords": "Harbor Point Airport" + }, + { + "id": "13832", + "ident": "74XS", + "type": "closed", + "name": "Charles J Hughes Ranch Airport", + "latitude_deg": "31.4188", + "longitude_deg": "-101.482002", + "elevation_ft": "2520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Big Lake", + "scheduled_service": "no", + "keywords": "74XS" + }, + { + "id": "45250", + "ident": "75AK", + "type": "small_airport", + "name": "Henley Airport", + "latitude_deg": "60.593067", + "longitude_deg": "-151.327956", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kenai", + "scheduled_service": "no", + "gps_code": "75AK", + "local_code": "75AK" + }, + { + "id": "13833", + "ident": "75AR", + "type": "small_airport", + "name": "The Bluffs Airport", + "latitude_deg": "36.296199798583984", + "longitude_deg": "-92.21600341796875", + "elevation_ft": "782", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Henderson", + "scheduled_service": "no", + "gps_code": "75AR", + "local_code": "75AR" + }, + { + "id": "45288", + "ident": "75AZ", + "type": "heliport", + "name": "Emergency Medical Evacuation Heliport", + "latitude_deg": "34.754428", + "longitude_deg": "-112.119614", + "elevation_ft": "5212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Jerome", + "scheduled_service": "no", + "gps_code": "75AZ", + "local_code": "75AZ" + }, + { + "id": "13834", + "ident": "75B", + "type": "seaplane_base", + "name": "Seven G S Seaplane Base", + "latitude_deg": "44.49169921875", + "longitude_deg": "-69.99120330810547", + "elevation_ft": "329", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "75B", + "local_code": "75B" + }, + { + "id": "13835", + "ident": "75C", + "type": "small_airport", + "name": "Orogrande Airport", + "latitude_deg": "45.730201721191406", + "longitude_deg": "-115.52799987792969", + "elevation_ft": "4405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Orogrande", + "scheduled_service": "no", + "gps_code": "75C", + "local_code": "75C" + }, + { + "id": "13836", + "ident": "75CA", + "type": "heliport", + "name": "Civic Center Heliport", + "latitude_deg": "33.677799224853516", + "longitude_deg": "-118", + "elevation_ft": "157", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Huntington Beach", + "scheduled_service": "no", + "gps_code": "75CA", + "local_code": "75CA" + }, + { + "id": "13837", + "ident": "75CL", + "type": "closed", + "name": "Willis Ranch Airport", + "latitude_deg": "37.065497", + "longitude_deg": "-120.567", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Dos Palos", + "scheduled_service": "no", + "keywords": "3O2, 75CL" + }, + { + "id": "13838", + "ident": "75CO", + "type": "heliport", + "name": "Miner's Mesa Heliport", + "latitude_deg": "39.79389953613281", + "longitude_deg": "-105.49400329589844", + "elevation_ft": "8668", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Black Hawk", + "scheduled_service": "no", + "gps_code": "75CO", + "local_code": "75CO" + }, + { + "id": "13839", + "ident": "75D", + "type": "small_airport", + "name": "P W Johnson Memorial Airport", + "latitude_deg": "39.683998107910156", + "longitude_deg": "-80.86229705810547", + "elevation_ft": "632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "New Martinsville", + "scheduled_service": "no", + "gps_code": "75D", + "local_code": "75D" + }, + { + "id": "13840", + "ident": "75DC", + "type": "small_airport", + "name": "Oakesdale Airport", + "latitude_deg": "47.1416015625", + "longitude_deg": "-117.23600006103516", + "elevation_ft": "2680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Oakesdale", + "scheduled_service": "no", + "gps_code": "75DC", + "local_code": "75DC" + }, + { + "id": "13841", + "ident": "75FD", + "type": "heliport", + "name": "Florida Power & Light St. Lucie Nuclear Power Plant Heliport", + "latitude_deg": "27.35063", + "longitude_deg": "-80.244784", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Pierce", + "scheduled_service": "no", + "gps_code": "75FD", + "local_code": "75FD" + }, + { + "id": "13842", + "ident": "75FL", + "type": "small_airport", + "name": "Sandy Creek Airpark", + "latitude_deg": "30.102663", + "longitude_deg": "-85.479555", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City", + "scheduled_service": "no", + "gps_code": "75FL", + "local_code": "75FL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sandy_Creek_Airpark" + }, + { + "id": "13843", + "ident": "75G", + "type": "small_airport", + "name": "Rossettie Airport", + "latitude_deg": "42.19499969482422", + "longitude_deg": "-84.03079986572266", + "elevation_ft": "1005", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Manchester", + "scheduled_service": "no", + "gps_code": "75G", + "local_code": "75G" + }, + { + "id": "13844", + "ident": "75GA", + "type": "heliport", + "name": "Effingham County Hospital Heliport", + "latitude_deg": "32.3484992980957", + "longitude_deg": "-81.3198013305664", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "75GA", + "local_code": "75GA" + }, + { + "id": "13845", + "ident": "75IA", + "type": "heliport", + "name": "Adair County Memorial Hospital Heliport", + "latitude_deg": "41.30400085449219", + "longitude_deg": "-94.45099639892578", + "elevation_ft": "1310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Greenfield", + "scheduled_service": "no", + "gps_code": "75IA", + "local_code": "75IA" + }, + { + "id": "13846", + "ident": "75II", + "type": "closed", + "name": "Lowells Landing Airport", + "latitude_deg": "38.4467", + "longitude_deg": "-86.260803", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hardinsburg", + "scheduled_service": "no", + "keywords": "75II" + }, + { + "id": "13847", + "ident": "75IL", + "type": "heliport", + "name": "Crossroads Community Hospital Heliport", + "latitude_deg": "38.312198638916016", + "longitude_deg": "-88.93609619140625", + "elevation_ft": "545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "75IL", + "local_code": "75IL" + }, + { + "id": "13848", + "ident": "75IN", + "type": "heliport", + "name": "Howard County Jail Heliport", + "latitude_deg": "40.480899810791016", + "longitude_deg": "-86.15809631347656", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Kokomo", + "scheduled_service": "no", + "gps_code": "75IN", + "local_code": "75IN" + }, + { + "id": "13849", + "ident": "75IS", + "type": "small_airport", + "name": "Reinke Airport", + "latitude_deg": "41.899200439453125", + "longitude_deg": "-89.17040252685547", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rochelle", + "scheduled_service": "no", + "gps_code": "75IS", + "local_code": "75IS" + }, + { + "id": "13850", + "ident": "75K", + "type": "small_airport", + "name": "Bethany Memorial Airport", + "latitude_deg": "40.27690124511719", + "longitude_deg": "-94.00769805908203", + "elevation_ft": "1035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Bethany", + "scheduled_service": "no", + "gps_code": "75K", + "local_code": "75K" + }, + { + "id": "13851", + "ident": "75KS", + "type": "small_airport", + "name": "Esplund Farm Airport", + "latitude_deg": "37.38669967651367", + "longitude_deg": "-99.86530303955078", + "elevation_ft": "2555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Minneola", + "scheduled_service": "no", + "gps_code": "75KS", + "local_code": "75KS" + }, + { + "id": "13852", + "ident": "75KY", + "type": "small_airport", + "name": "Hisle Field", + "latitude_deg": "37.94419860839844", + "longitude_deg": "-83.997802734375", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Winchester", + "scheduled_service": "no", + "gps_code": "75KY", + "local_code": "75KY" + }, + { + "id": "13853", + "ident": "75LA", + "type": "heliport", + "name": "Station 44 Heliport", + "latitude_deg": "29.75886", + "longitude_deg": "-93.64891", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cameron", + "scheduled_service": "no", + "gps_code": "75LA", + "local_code": "75LA" + }, + { + "id": "13854", + "ident": "75LL", + "type": "small_airport", + "name": "Hausmann Airport", + "latitude_deg": "41.084106", + "longitude_deg": "-89.756627", + "elevation_ft": "748", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Wyoming", + "scheduled_service": "no", + "keywords": "75LL" + }, + { + "id": "13855", + "ident": "75MI", + "type": "small_airport", + "name": "Norton Field", + "latitude_deg": "42.97140121459961", + "longitude_deg": "-82.8478012084961", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Riley", + "scheduled_service": "no", + "gps_code": "75MI", + "local_code": "75MI" + }, + { + "id": "13856", + "ident": "75MN", + "type": "small_airport", + "name": "Galler's Airport", + "latitude_deg": "44.18659973144531", + "longitude_deg": "-93.71410369873047", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Elysian", + "scheduled_service": "no", + "gps_code": "75MN", + "local_code": "75MN" + }, + { + "id": "13857", + "ident": "75MO", + "type": "heliport", + "name": "Childrens Mercy Hospital Heliport", + "latitude_deg": "39.08250045776367", + "longitude_deg": "-94.57689666748047", + "elevation_ft": "922", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kansas City", + "scheduled_service": "no", + "gps_code": "75MO", + "local_code": "75MO" + }, + { + "id": "13858", + "ident": "75MU", + "type": "heliport", + "name": "Pershing Regional Health Center -Marceline Heliport", + "latitude_deg": "39.72919845581055", + "longitude_deg": "-92.94439697265625", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Marceline", + "scheduled_service": "no", + "gps_code": "75MU", + "local_code": "75MU" + }, + { + "id": "13859", + "ident": "75NC", + "type": "closed", + "name": "JW Stone Airport", + "latitude_deg": "35.846156", + "longitude_deg": "-78.179049", + "elevation_ft": "246", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Middlesex", + "scheduled_service": "no", + "keywords": "75NC" + }, + { + "id": "13860", + "ident": "75ND", + "type": "small_airport", + "name": "Jurgens Airstrip", + "latitude_deg": "46.907501220703125", + "longitude_deg": "-102.49099731445312", + "elevation_ft": "2370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Taylor", + "scheduled_service": "no", + "gps_code": "75ND", + "local_code": "75ND" + }, + { + "id": "13861", + "ident": "75NE", + "type": "small_airport", + "name": "Heaton Airport", + "latitude_deg": "41.44580078125", + "longitude_deg": "-95.95670318603516", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Fort Calhoun", + "scheduled_service": "no", + "gps_code": "75NE", + "local_code": "75NE" + }, + { + "id": "13862", + "ident": "75NJ", + "type": "heliport", + "name": "Garfield Heliport", + "latitude_deg": "41.000099182128906", + "longitude_deg": "-74.08290100097656", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Garfield", + "scheduled_service": "no", + "gps_code": "75NJ", + "local_code": "75NJ" + }, + { + "id": "346785", + "ident": "75NK", + "type": "heliport", + "name": "Upstate Medical University Hospital Helipad", + "latitude_deg": "43.042265", + "longitude_deg": "-76.139374", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Syracuse", + "scheduled_service": "no", + "gps_code": "75NK", + "local_code": "75NK" + }, + { + "id": "345561", + "ident": "75NR", + "type": "small_airport", + "name": "Hamptonville Airport", + "latitude_deg": "36.092013", + "longitude_deg": "-80.788975", + "elevation_ft": "1028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hamptonville", + "scheduled_service": "no", + "gps_code": "75NR", + "local_code": "75NR" + }, + { + "id": "13863", + "ident": "75NY", + "type": "small_airport", + "name": "Reiss Game Farm Airport", + "latitude_deg": "42.11669921875", + "longitude_deg": "-78.31559753417969", + "elevation_ft": "1698", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Olean", + "scheduled_service": "no", + "gps_code": "75NY", + "local_code": "75NY" + }, + { + "id": "13864", + "ident": "75OH", + "type": "closed", + "name": "Howensting Airport", + "latitude_deg": "41.2592", + "longitude_deg": "-84.793601", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Hicksville", + "scheduled_service": "no", + "keywords": "75OH" + }, + { + "id": "13865", + "ident": "75OI", + "type": "small_airport", + "name": "Soltis Field", + "latitude_deg": "40.503700256347656", + "longitude_deg": "-83.09020233154297", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "75OI", + "local_code": "75OI" + }, + { + "id": "13866", + "ident": "75OK", + "type": "closed", + "name": "Longhorn Field", + "latitude_deg": "36.3172", + "longitude_deg": "-97.816101", + "elevation_ft": "1105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Enid", + "scheduled_service": "no", + "keywords": "75OK" + }, + { + "id": "13867", + "ident": "75OR", + "type": "heliport", + "name": "Malheur Memorial Hospital Heliport", + "latitude_deg": "43.8801994324", + "longitude_deg": "-117.008003235", + "elevation_ft": "2185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Nyssa", + "scheduled_service": "no", + "gps_code": "75OR", + "local_code": "75OR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Malheur_Memorial_Hospital_Heliport" + }, + { + "id": "13868", + "ident": "75PA", + "type": "small_airport", + "name": "Marther Field", + "latitude_deg": "41.87310028076172", + "longitude_deg": "-80.45899963378906", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Albion", + "scheduled_service": "no", + "gps_code": "75PA", + "local_code": "75PA" + }, + { + "id": "13869", + "ident": "75PN", + "type": "seaplane_base", + "name": "Beaver Seaplane Base", + "latitude_deg": "40.68560028076172", + "longitude_deg": "-80.31009674072266", + "elevation_ft": "682", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Beaver", + "scheduled_service": "no", + "gps_code": "75PN", + "local_code": "75PN" + }, + { + "id": "13870", + "ident": "75RI", + "type": "heliport", + "name": "Hopedene, LLC Heliport", + "latitude_deg": "41.480371", + "longitude_deg": "-71.297117", + "elevation_ft": "64", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "75RI", + "local_code": "75RI" + }, + { + "id": "336196", + "ident": "75SC", + "type": "heliport", + "name": "Greer Memorial Hospital Heliport", + "latitude_deg": "34.919165", + "longitude_deg": "-82.24502", + "elevation_ft": "956", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Greer", + "scheduled_service": "no", + "gps_code": "75SC", + "local_code": "75SC" + }, + { + "id": "13871", + "ident": "75TA", + "type": "small_airport", + "name": "Coleman Cattle Company Nr 1 Airport", + "latitude_deg": "32.5343017578125", + "longitude_deg": "-101.7249984741211", + "elevation_ft": "2820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ackerly", + "scheduled_service": "no", + "gps_code": "75TA", + "local_code": "75TA" + }, + { + "id": "13872", + "ident": "75TE", + "type": "small_airport", + "name": "Womack Farm Airport", + "latitude_deg": "31.747400283813477", + "longitude_deg": "-97.24610137939453", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no", + "gps_code": "75TE", + "local_code": "75TE" + }, + { + "id": "45795", + "ident": "75TN", + "type": "small_airport", + "name": "Srigley Field Airstrip", + "latitude_deg": "36.281502", + "longitude_deg": "-82.861497", + "elevation_ft": "1145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Tusculum", + "scheduled_service": "no", + "gps_code": "75TN", + "local_code": "75TN" + }, + { + "id": "13873", + "ident": "75TS", + "type": "small_airport", + "name": "Venus Airport", + "latitude_deg": "32.41640090942383", + "longitude_deg": "-97.09190368652344", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Venus", + "scheduled_service": "no", + "gps_code": "75TS", + "local_code": "75TS" + }, + { + "id": "13874", + "ident": "75TX", + "type": "small_airport", + "name": "Leona Ranch Airport", + "latitude_deg": "29.509683", + "longitude_deg": "-100.37324", + "elevation_ft": "1720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no", + "gps_code": "75TX", + "local_code": "75TX" + }, + { + "id": "13875", + "ident": "75U", + "type": "seaplane_base", + "name": "Harry S Truman Dam & Reservoir Seaplane Base", + "latitude_deg": "38.21670150756836", + "longitude_deg": "-93.41690063476562", + "elevation_ft": "706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Warsaw", + "scheduled_service": "no", + "gps_code": "75U", + "local_code": "75U" + }, + { + "id": "13876", + "ident": "75VA", + "type": "heliport", + "name": "Norton Community Hospital Heliport", + "latitude_deg": "36.93510055541992", + "longitude_deg": "-82.6448974609375", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Norton", + "scheduled_service": "no", + "gps_code": "75VA", + "local_code": "75VA" + }, + { + "id": "13877", + "ident": "75WA", + "type": "small_airport", + "name": "Port Elsner Airport", + "latitude_deg": "45.802101135253906", + "longitude_deg": "-121.4800033569336", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "White Salmon", + "scheduled_service": "no", + "gps_code": "75WA", + "local_code": "75WA" + }, + { + "id": "13878", + "ident": "75WI", + "type": "small_airport", + "name": "Smies Airport", + "latitude_deg": "43.58890151977539", + "longitude_deg": "-87.7843017578125", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Cedar Grove", + "scheduled_service": "no", + "gps_code": "75WI", + "local_code": "75WI" + }, + { + "id": "45911", + "ident": "75WT", + "type": "small_airport", + "name": "Dickson Field", + "latitude_deg": "48.984167", + "longitude_deg": "-119.298333", + "elevation_ft": "3214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Oroville", + "scheduled_service": "no", + "gps_code": "75WT", + "local_code": "75WT" + }, + { + "id": "45920", + "ident": "75WV", + "type": "small_airport", + "name": "Nicholson Airport", + "latitude_deg": "39.1659", + "longitude_deg": "-80.650806", + "elevation_ft": "1008", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "West Union", + "scheduled_service": "no", + "gps_code": "75WV", + "local_code": "75WV" + }, + { + "id": "349509", + "ident": "75XA", + "type": "small_airport", + "name": "Rocking B Cattle Airport", + "latitude_deg": "30.535835", + "longitude_deg": "-95.083707", + "elevation_ft": "287", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Coldspring", + "scheduled_service": "no", + "gps_code": "75XA", + "local_code": "75XA" + }, + { + "id": "13879", + "ident": "75XS", + "type": "closed", + "name": "Triple R Airport", + "latitude_deg": "29.248497", + "longitude_deg": "-98.475807", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "keywords": "75XS" + }, + { + "id": "13880", + "ident": "76AK", + "type": "small_airport", + "name": "Pogo Mine Airstrip", + "latitude_deg": "64.46749877929688", + "longitude_deg": "-144.92100524902344", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Delta Junction", + "scheduled_service": "no", + "gps_code": "76AK", + "local_code": "76AK" + }, + { + "id": "13881", + "ident": "76AZ", + "type": "heliport", + "name": "West Valley Medical Center Heliport", + "latitude_deg": "33.46080017089844", + "longitude_deg": "-112.35199737548828", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Goodyear", + "scheduled_service": "no", + "gps_code": "76AZ", + "local_code": "76AZ" + }, + { + "id": "13882", + "ident": "76B", + "type": "seaplane_base", + "name": "Long Lake Seaplane Base", + "latitude_deg": "43.986944", + "longitude_deg": "-70.618611", + "elevation_ft": "268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Naples", + "scheduled_service": "no", + "local_code": "76B" + }, + { + "id": "13883", + "ident": "76CA", + "type": "heliport", + "name": "Bald Mountain Heliport", + "latitude_deg": "38.139856", + "longitude_deg": "-120.094662", + "elevation_ft": "5760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Barn", + "scheduled_service": "no", + "gps_code": "76CA", + "local_code": "76CA" + }, + { + "id": "13884", + "ident": "76CL", + "type": "closed", + "name": "Emmett Field", + "latitude_deg": "37.083646", + "longitude_deg": "-120.500951", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Dos Palos", + "scheduled_service": "no", + "keywords": "76CL" + }, + { + "id": "13885", + "ident": "76CN", + "type": "heliport", + "name": "El Centro Regional Medical Center Heliport", + "latitude_deg": "32.779887", + "longitude_deg": "-115.568652", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "El Centro", + "scheduled_service": "no", + "gps_code": "76CN", + "local_code": "76CN" + }, + { + "id": "13886", + "ident": "76CO", + "type": "small_airport", + "name": "Hoy Airstrip", + "latitude_deg": "39.83580017089844", + "longitude_deg": "-104.4219970703125", + "elevation_ft": "5310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Bennett", + "scheduled_service": "no", + "gps_code": "76CO", + "local_code": "76CO" + }, + { + "id": "347727", + "ident": "76FA", + "type": "heliport", + "name": "Davie Medical Center Helipad", + "latitude_deg": "26.077222", + "longitude_deg": "-80.250833", + "elevation_ft": "67", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Davie", + "scheduled_service": "no", + "gps_code": "76FA", + "local_code": "76FA" + }, + { + "id": "13887", + "ident": "76FD", + "type": "small_airport", + "name": "Peavy Farms Airport", + "latitude_deg": "30.670499801635742", + "longitude_deg": "-84.41410064697266", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Havana", + "scheduled_service": "no", + "gps_code": "76FD", + "local_code": "76FD" + }, + { + "id": "13888", + "ident": "76FL", + "type": "heliport", + "name": "Health Central Heliport", + "latitude_deg": "28.550512", + "longitude_deg": "-81.52729", + "elevation_ft": "128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ocoee", + "scheduled_service": "no", + "gps_code": "76FL", + "local_code": "76FL" + }, + { + "id": "13889", + "ident": "76GA", + "type": "small_airport", + "name": "Landings East Sylvania Airport", + "latitude_deg": "32.74470138549805", + "longitude_deg": "-81.61309814453125", + "elevation_ft": "155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Sylvania", + "scheduled_service": "no", + "gps_code": "76GA", + "local_code": "76GA" + }, + { + "id": "13890", + "ident": "76II", + "type": "small_airport", + "name": "Ries Airport", + "latitude_deg": "41.27640151977539", + "longitude_deg": "-85.27110290527344", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Laotto", + "scheduled_service": "no", + "gps_code": "76II", + "local_code": "76II" + }, + { + "id": "13891", + "ident": "76IL", + "type": "heliport", + "name": "Delnor Community Hospital Heliport", + "latitude_deg": "41.88750076293945", + "longitude_deg": "-88.34359741210938", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Geneva", + "scheduled_service": "no", + "gps_code": "76IL", + "local_code": "76IL" + }, + { + "id": "13892", + "ident": "76IN", + "type": "closed", + "name": "Krebs Airport", + "latitude_deg": "40.5392", + "longitude_deg": "-87.469498", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Boswell", + "scheduled_service": "no", + "keywords": "76IN" + }, + { + "id": "13893", + "ident": "76IS", + "type": "heliport", + "name": "Steel Supply Heliport", + "latitude_deg": "42.0584947372", + "longitude_deg": "-88.01926240319999", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rolling Meadows", + "scheduled_service": "no", + "gps_code": "76IS", + "local_code": "76IS" + }, + { + "id": "13894", + "ident": "76KS", + "type": "closed", + "name": "Prima Airport", + "latitude_deg": "38.2584", + "longitude_deg": "-100.879997", + "elevation_ft": "2915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Scott City", + "scheduled_service": "no", + "keywords": "76KS" + }, + { + "id": "13895", + "ident": "76KY", + "type": "small_airport", + "name": "Buzzard's Roost Airport", + "latitude_deg": "38.014801025390625", + "longitude_deg": "-84.84159851074219", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Lawrenceburg", + "scheduled_service": "no", + "gps_code": "76KY", + "local_code": "76KY" + }, + { + "id": "13896", + "ident": "76LA", + "type": "heliport", + "name": "Ochsner Lafayette General Medical Center Heliport", + "latitude_deg": "30.202297", + "longitude_deg": "-92.019866", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "76LA", + "local_code": "76LA", + "keywords": "Lafayette General Hospital Heliport" + }, + { + "id": "13897", + "ident": "76LL", + "type": "heliport", + "name": "Rose Number 2 Heliport", + "latitude_deg": "42.069141059399996", + "longitude_deg": "-88.1424321234", + "elevation_ft": "827", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Barrington", + "scheduled_service": "no", + "gps_code": "76LL", + "local_code": "76LL" + }, + { + "id": "342447", + "ident": "76MD", + "type": "heliport", + "name": "Singerly Fire Engine Company #13 Heliport", + "latitude_deg": "39.621304", + "longitude_deg": "-75.837468", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Elkton", + "scheduled_service": "no", + "gps_code": "76MD", + "local_code": "76MD" + }, + { + "id": "13898", + "ident": "76MI", + "type": "closed", + "name": "Kozal Airfield", + "latitude_deg": "43.133302", + "longitude_deg": "-85.724998", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Sparta", + "scheduled_service": "no", + "keywords": "76MI" + }, + { + "id": "13899", + "ident": "76MN", + "type": "small_airport", + "name": "Hemmingsen Private Airport", + "latitude_deg": "47.59640121459961", + "longitude_deg": "-96.02169799804688", + "elevation_ft": "1246", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Erskine", + "scheduled_service": "no", + "gps_code": "76MN", + "local_code": "76MN" + }, + { + "id": "13900", + "ident": "76MO", + "type": "small_airport", + "name": "Walnut Creek Airport", + "latitude_deg": "39.969398498535156", + "longitude_deg": "-92.6968994140625", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Elmer", + "scheduled_service": "no", + "gps_code": "76MO", + "local_code": "76MO" + }, + { + "id": "13901", + "ident": "76MU", + "type": "closed", + "name": "Flobec Heliport", + "latitude_deg": "39.430599", + "longitude_deg": "-92.433502", + "elevation_ft": "866", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Moberly", + "scheduled_service": "no", + "keywords": "76MU" + }, + { + "id": "13902", + "ident": "76N", + "type": "small_airport", + "name": "Skyhaven Airport", + "latitude_deg": "41.52920150756836", + "longitude_deg": "-75.9468994140625", + "elevation_ft": "639", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tunkhannock", + "scheduled_service": "no", + "gps_code": "76N", + "local_code": "76N" + }, + { + "id": "13903", + "ident": "76NC", + "type": "small_airport", + "name": "Dunroamin Farms Airport", + "latitude_deg": "36.1599006652832", + "longitude_deg": "-77.62470245361328", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Enfield", + "scheduled_service": "no", + "gps_code": "76NC", + "local_code": "76NC" + }, + { + "id": "13904", + "ident": "76NE", + "type": "heliport", + "name": "Good Samaritan Heliport", + "latitude_deg": "40.70750045776367", + "longitude_deg": "-99.08149719238281", + "elevation_ft": "2146", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Kearney", + "scheduled_service": "no", + "gps_code": "76NE", + "local_code": "76NE" + }, + { + "id": "13905", + "ident": "76NH", + "type": "heliport", + "name": "Harris Homestead Heliport", + "latitude_deg": "43.3583984375", + "longitude_deg": "-71.44120025634766", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Loudon", + "scheduled_service": "no", + "gps_code": "76NH", + "local_code": "76NH" + }, + { + "id": "13906", + "ident": "76NJ", + "type": "closed", + "name": "Scher Heliport", + "latitude_deg": "41.652302", + "longitude_deg": "-74.6968", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bedminster", + "scheduled_service": "no", + "keywords": "76NJ" + }, + { + "id": "346524", + "ident": "76NY", + "type": "heliport", + "name": "Independent Heliport", + "latitude_deg": "41.492778", + "longitude_deg": "-74.104361", + "elevation_ft": "512", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "New Windsor", + "scheduled_service": "no", + "gps_code": "76NY", + "local_code": "76NY" + }, + { + "id": "13907", + "ident": "76OH", + "type": "heliport", + "name": "Wyandot Memorial Hospital Heliport", + "latitude_deg": "40.85530090332031", + "longitude_deg": "-83.28019714355469", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Upper Sandusky", + "scheduled_service": "no", + "gps_code": "76OH", + "local_code": "76OH" + }, + { + "id": "13908", + "ident": "76OI", + "type": "closed", + "name": "Hull Airport", + "latitude_deg": "41.257302", + "longitude_deg": "-83.206001", + "elevation_ft": "687", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bettsville", + "scheduled_service": "no", + "keywords": "76OI" + }, + { + "id": "13909", + "ident": "76OK", + "type": "small_airport", + "name": "Odom's Roost Airport", + "latitude_deg": "35.282739", + "longitude_deg": "-97.61982", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Newcastle", + "scheduled_service": "no", + "gps_code": "76OK", + "local_code": "76OK" + }, + { + "id": "13910", + "ident": "76OR", + "type": "heliport", + "name": "Camp Withycombe Heliport", + "latitude_deg": "45.4139764", + "longitude_deg": "-122.5584286", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Clackamas", + "scheduled_service": "no", + "gps_code": "76OR", + "local_code": "76OR" + }, + { + "id": "13911", + "ident": "76PA", + "type": "closed", + "name": "Aliquippa Hospital Heliport", + "latitude_deg": "40.608101", + "longitude_deg": "-80.290297", + "elevation_ft": "946", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Aliquippa", + "scheduled_service": "no", + "keywords": "76PA" + }, + { + "id": "13912", + "ident": "76PN", + "type": "heliport", + "name": "Heritage Valley Beaver Heliport", + "latitude_deg": "40.711355", + "longitude_deg": "-80.321908", + "elevation_ft": "1132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Beaver", + "scheduled_service": "no", + "gps_code": "76PN", + "local_code": "76PN", + "keywords": "MCBC Heliport" + }, + { + "id": "13913", + "ident": "76T", + "type": "small_airport", + "name": "Bishop Airport", + "latitude_deg": "33.268952", + "longitude_deg": "-97.451849", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Decatur", + "scheduled_service": "no", + "local_code": "76T" + }, + { + "id": "13914", + "ident": "76TA", + "type": "small_airport", + "name": "Canadian River Ranch Airport", + "latitude_deg": "35.402675", + "longitude_deg": "-102.807605", + "elevation_ft": "3839", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Adrian", + "scheduled_service": "no", + "gps_code": "46XS", + "local_code": "46XS", + "keywords": "76TA, Coleman Cattle Company Nr 2" + }, + { + "id": "13915", + "ident": "76TE", + "type": "small_airport", + "name": "Big Tank Ranch Airport", + "latitude_deg": "31.500099182128906", + "longitude_deg": "-105.08399963378906", + "elevation_ft": "4800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Salt Flat", + "scheduled_service": "no", + "gps_code": "76TE", + "local_code": "76TE" + }, + { + "id": "346835", + "ident": "76TN", + "type": "heliport", + "name": "Donald Gammons Memorial Heliport", + "latitude_deg": "35.925865", + "longitude_deg": "-87.285095", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lyles", + "scheduled_service": "no", + "gps_code": "76TN", + "local_code": "76TN" + }, + { + "id": "13916", + "ident": "76TS", + "type": "heliport", + "name": "Golden Pegasus Ranch Heliport", + "latitude_deg": "29.385000228881836", + "longitude_deg": "-95.16130065917969", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Algoa", + "scheduled_service": "no", + "gps_code": "76TS", + "local_code": "76TS" + }, + { + "id": "13917", + "ident": "76TX", + "type": "small_airport", + "name": "Spanish Oaks Airport", + "latitude_deg": "33.147300720214844", + "longitude_deg": "-96.97579956054688", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Little Elm", + "scheduled_service": "no", + "gps_code": "76TX", + "local_code": "76TX" + }, + { + "id": "13918", + "ident": "76V", + "type": "small_airport", + "name": "Thomas Memorial Airport", + "latitude_deg": "42.519727", + "longitude_deg": "-105.020068", + "elevation_ft": "4665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Glendo", + "scheduled_service": "no", + "gps_code": "K76V", + "local_code": "76V" + }, + { + "id": "13919", + "ident": "76VA", + "type": "closed", + "name": "Roubin & Janeiro Inc Heliport", + "latitude_deg": "38.873908", + "longitude_deg": "-77.240989", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Vienna", + "scheduled_service": "no", + "gps_code": "76VA", + "local_code": "76VA" + }, + { + "id": "13920", + "ident": "76WA", + "type": "small_airport", + "name": "Heineck Farm Airport", + "latitude_deg": "48.00510025024414", + "longitude_deg": "-122.13400268554688", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Everett", + "scheduled_service": "no", + "gps_code": "76WA", + "local_code": "76WA" + }, + { + "id": "13921", + "ident": "76WI", + "type": "heliport", + "name": "Viking Gas Transmission County Heliport", + "latitude_deg": "45.3125", + "longitude_deg": "-92.58910369873047", + "elevation_ft": "1115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Dresser", + "scheduled_service": "no", + "gps_code": "76WI", + "local_code": "76WI" + }, + { + "id": "13922", + "ident": "76XS", + "type": "closed", + "name": "Houston County Hospital/King's Inn Heliport", + "latitude_deg": "31.322399", + "longitude_deg": "-95.439101", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crockett", + "scheduled_service": "no", + "keywords": "76XS" + }, + { + "id": "13923", + "ident": "76Z", + "type": "small_airport", + "name": "Nakeen Airport", + "latitude_deg": "58.931892", + "longitude_deg": "-157.044775", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nakeen", + "scheduled_service": "no", + "local_code": "76Z" + }, + { + "id": "13924", + "ident": "77AK", + "type": "small_airport", + "name": "Tidewater Bluffs Airport", + "latitude_deg": "61.502267", + "longitude_deg": "-149.594135", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "77AK", + "local_code": "77AK" + }, + { + "id": "322467", + "ident": "77AR", + "type": "small_airport", + "name": "Benoit Airfield", + "latitude_deg": "34.5975", + "longitude_deg": "-92.9369444", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Hot Springs", + "scheduled_service": "no", + "gps_code": "77AR", + "local_code": "77AR" + }, + { + "id": "45287", + "ident": "77AZ", + "type": "heliport", + "name": "Banner Thunderbird Medical Center Heliport", + "latitude_deg": "33.608333", + "longitude_deg": "-112.179597", + "elevation_ft": "1328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Glendale", + "scheduled_service": "no", + "gps_code": "77AZ", + "local_code": "77AZ" + }, + { + "id": "13925", + "ident": "77CA", + "type": "small_airport", + "name": "Daulton Airport", + "latitude_deg": "37.12080001831055", + "longitude_deg": "-119.98799896240234", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Madera", + "scheduled_service": "no", + "gps_code": "77CA", + "local_code": "77CA" + }, + { + "id": "13926", + "ident": "77CL", + "type": "small_airport", + "name": "Baker & Hall Airport", + "latitude_deg": "36.71770095825195", + "longitude_deg": "-119.13700103759766", + "elevation_ft": "2150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Dunlap", + "scheduled_service": "no", + "gps_code": "77CL", + "local_code": "77CL" + }, + { + "id": "13927", + "ident": "77CO", + "type": "heliport", + "name": "UCH-MHS Memorial North Helipad", + "latitude_deg": "38.966362", + "longitude_deg": "-104.755997", + "elevation_ft": "6901", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Colorado Springs", + "scheduled_service": "no", + "gps_code": "77CO", + "local_code": "77CO" + }, + { + "id": "13928", + "ident": "77FD", + "type": "heliport", + "name": "Memorial Regional Hospital Heliport", + "latitude_deg": "26.0187106514", + "longitude_deg": "-80.1813152432", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Hollywood", + "scheduled_service": "no", + "gps_code": "77FD", + "local_code": "77FD" + }, + { + "id": "45345", + "ident": "77FL", + "type": "heliport", + "name": "AdventHealth Celebration Heliport", + "latitude_deg": "28.329336", + "longitude_deg": "-81.54285", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Celebration", + "scheduled_service": "no", + "gps_code": "77FL", + "local_code": "77FL", + "keywords": "Celebration Health Hospital, celebration, adventhealth" + }, + { + "id": "13929", + "ident": "77GA", + "type": "small_airport", + "name": "Toland Airport", + "latitude_deg": "33.163124", + "longitude_deg": "-84.210258", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Milner", + "scheduled_service": "no", + "gps_code": "77GA", + "local_code": "77GA" + }, + { + "id": "323365", + "ident": "77GE", + "type": "heliport", + "name": "Medical Center, Navicent Health Heliport", + "latitude_deg": "32.83455", + "longitude_deg": "-83.63606", + "elevation_ft": "533", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Macon", + "scheduled_service": "no", + "gps_code": "77GE", + "local_code": "77GE" + }, + { + "id": "345594", + "ident": "77ID", + "type": "small_airport", + "name": "Ashley Airport", + "latitude_deg": "43.524278", + "longitude_deg": "-116.406997", + "elevation_ft": "2713", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Meridian", + "scheduled_service": "no", + "gps_code": "77ID", + "local_code": "77ID" + }, + { + "id": "13930", + "ident": "77IL", + "type": "heliport", + "name": "Arch - Effingham Heliport", + "latitude_deg": "39.0800018311", + "longitude_deg": "-88.5441970825", + "elevation_ft": "585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Effingham", + "scheduled_service": "no", + "gps_code": "77IL", + "local_code": "77IL" + }, + { + "id": "13931", + "ident": "77IN", + "type": "heliport", + "name": "Memorial Hospital At Jasper Heliport", + "latitude_deg": "38.39390182495117", + "longitude_deg": "-86.94080352783203", + "elevation_ft": "531", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Jasper", + "scheduled_service": "no", + "gps_code": "77IN", + "local_code": "77IN" + }, + { + "id": "13932", + "ident": "77IS", + "type": "heliport", + "name": "Mc Donald's Plaza Heliport", + "latitude_deg": "41.8480987549", + "longitude_deg": "-87.9443969727", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Oak Brook", + "scheduled_service": "no", + "gps_code": "77IS", + "local_code": "77IS" + }, + { + "id": "13933", + "ident": "77KS", + "type": "closed", + "name": "Abel Ranch Airport", + "latitude_deg": "37.3675", + "longitude_deg": "-96.878402", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wilmont", + "scheduled_service": "no", + "keywords": "77KS" + }, + { + "id": "13934", + "ident": "77KY", + "type": "small_airport", + "name": "One Oak Airport", + "latitude_deg": "38.11119842529297", + "longitude_deg": "-83.87349700927734", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Mount Sterling/Owingsville", + "scheduled_service": "no", + "gps_code": "77KY", + "local_code": "77KY" + }, + { + "id": "13935", + "ident": "77LA", + "type": "heliport", + "name": "Ochsner LSU Health Shreveport Saint Mary Medical Center Heliport", + "latitude_deg": "32.495433", + "longitude_deg": "-93.75078", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Shreveport", + "scheduled_service": "no", + "gps_code": "77LA", + "local_code": "77LA", + "keywords": "Christus Schumpert Medical Center Heliport" + }, + { + "id": "13936", + "ident": "77LL", + "type": "closed", + "name": "Briggs Brothers Airfield", + "latitude_deg": "42.423599", + "longitude_deg": "-90.504303", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Galena", + "scheduled_service": "no", + "keywords": "77LL" + }, + { + "id": "325540", + "ident": "77MD", + "type": "heliport", + "name": "National Harbor Heliport", + "latitude_deg": "38.793703", + "longitude_deg": "-77.012143", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Oxon Hill", + "scheduled_service": "no", + "gps_code": "77MD", + "local_code": "77MD" + }, + { + "id": "13937", + "ident": "77ME", + "type": "seaplane_base", + "name": "Long Pond Seaplane Base", + "latitude_deg": "44.43339920043945", + "longitude_deg": "-70.21620178222656", + "elevation_ft": "474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "North Livermore", + "scheduled_service": "no", + "gps_code": "77ME", + "local_code": "77ME" + }, + { + "id": "15659", + "ident": "77MI", + "type": "closed", + "name": "David's Airport", + "latitude_deg": "42.0653", + "longitude_deg": "-85.241602", + "elevation_ft": "887", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Athens", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/David%27s_Airport", + "keywords": "9C2" + }, + { + "id": "13938", + "ident": "77MN", + "type": "small_airport", + "name": "Klamar Field", + "latitude_deg": "48.37139892578125", + "longitude_deg": "-95.78810119628906", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Gatzke", + "scheduled_service": "no", + "gps_code": "77MN", + "local_code": "77MN" + }, + { + "id": "13939", + "ident": "77MO", + "type": "small_airport", + "name": "Springhill Airport", + "latitude_deg": "37.090301513671875", + "longitude_deg": "-93.76940155029297", + "elevation_ft": "1305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "77MO", + "local_code": "77MO" + }, + { + "id": "13940", + "ident": "77NC", + "type": "small_airport", + "name": "Winnabow Airport", + "latitude_deg": "34.152099609375", + "longitude_deg": "-78.10549926757812", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Winnabow", + "scheduled_service": "no", + "gps_code": "77NC", + "local_code": "77NC" + }, + { + "id": "13941", + "ident": "77NE", + "type": "heliport", + "name": "Nemaha County Hospital Heliport", + "latitude_deg": "40.39139938354492", + "longitude_deg": "-95.85279846191406", + "elevation_ft": "1085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "77NE", + "local_code": "77NE" + }, + { + "id": "13942", + "ident": "77NJ", + "type": "heliport", + "name": "Liberty State Park Heliport", + "latitude_deg": "40.693199157714844", + "longitude_deg": "-74.05370330810547", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Jersey City", + "scheduled_service": "no", + "gps_code": "77NJ", + "local_code": "77NJ" + }, + { + "id": "348209", + "ident": "77NV", + "type": "small_airport", + "name": "Flying Eagle Airport", + "latitude_deg": "39.84355", + "longitude_deg": "-119.6865", + "elevation_ft": "4222", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Reno", + "scheduled_service": "no", + "gps_code": "77NV", + "local_code": "77NV" + }, + { + "id": "13944", + "ident": "77OH", + "type": "small_airport", + "name": "Collins-Flege Airpark", + "latitude_deg": "39.36280059814453", + "longitude_deg": "-84.34130096435547", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mason", + "scheduled_service": "no", + "gps_code": "77OH", + "local_code": "77OH" + }, + { + "id": "13945", + "ident": "77OI", + "type": "heliport", + "name": "University Hospitals of Cleveland Heliport", + "latitude_deg": "41.50590133666992", + "longitude_deg": "-81.60489654541016", + "elevation_ft": "761", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "77OI", + "local_code": "77OI" + }, + { + "id": "13946", + "ident": "77OK", + "type": "heliport", + "name": "Oklahoma National Guard Heliport", + "latitude_deg": "35.503044", + "longitude_deg": "-97.468178", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "gps_code": "77OK", + "local_code": "77OK" + }, + { + "id": "13947", + "ident": "77OR", + "type": "heliport", + "name": "BLM Heliport", + "latitude_deg": "44.2790217965", + "longitude_deg": "-120.902110934", + "elevation_ft": "3250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Prineville", + "scheduled_service": "no", + "gps_code": "77OR", + "local_code": "77OR", + "wikipedia_link": "https://en.wikipedia.org/wiki/BLM_Heliport" + }, + { + "id": "13948", + "ident": "77PA", + "type": "small_airport", + "name": "Nardo Airport", + "latitude_deg": "40.58340072631836", + "longitude_deg": "-79.8998031616211", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Allison Park", + "scheduled_service": "no", + "gps_code": "77PA", + "local_code": "77PA" + }, + { + "id": "13949", + "ident": "77PN", + "type": "small_airport", + "name": "Gilfert Airport", + "latitude_deg": "40.784000396728516", + "longitude_deg": "-77.20659637451172", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Benfer", + "scheduled_service": "no", + "gps_code": "77PN", + "local_code": "77PN" + }, + { + "id": "13950", + "ident": "77T", + "type": "closed", + "name": "Kittie Hill Airport", + "latitude_deg": "30.602100372299997", + "longitude_deg": "-97.818901062", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Leander", + "scheduled_service": "no", + "gps_code": "77T", + "local_code": "77T" + }, + { + "id": "13951", + "ident": "77TA", + "type": "closed", + "name": "Blue Skies Airport", + "latitude_deg": "32.874001", + "longitude_deg": "-97.6614", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Azle", + "scheduled_service": "no", + "keywords": "77TA" + }, + { + "id": "13952", + "ident": "77TE", + "type": "closed", + "name": "Rowco, Inc Heliport", + "latitude_deg": "29.5466", + "longitude_deg": "-98.410598", + "elevation_ft": "706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "keywords": "77TE" + }, + { + "id": "13953", + "ident": "77TN", + "type": "small_airport", + "name": "Darnell's Field", + "latitude_deg": "36.50920104980469", + "longitude_deg": "-82.68170166015625", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Church Hill", + "scheduled_service": "no", + "gps_code": "77TN", + "local_code": "77TN" + }, + { + "id": "13954", + "ident": "77TS", + "type": "small_airport", + "name": "Flying R Ranch Airport", + "latitude_deg": "29.799400329589844", + "longitude_deg": "-98.08499908447266", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "New Braunfels", + "scheduled_service": "no", + "gps_code": "77TS", + "local_code": "77TS" + }, + { + "id": "13955", + "ident": "77TX", + "type": "closed", + "name": "Woods Airport", + "latitude_deg": "29.781601", + "longitude_deg": "-95.914703", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brookshire", + "scheduled_service": "no", + "keywords": "77TX" + }, + { + "id": "13956", + "ident": "77VA", + "type": "small_airport", + "name": "Camp Friendship Airfield", + "latitude_deg": "37.88819885253906", + "longitude_deg": "-78.28579711914062", + "elevation_ft": "345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Palmyra", + "scheduled_service": "no", + "gps_code": "77VA", + "local_code": "77VA" + }, + { + "id": "13957", + "ident": "77WA", + "type": "heliport", + "name": "Mount Carmel Hospital Ems Heliport", + "latitude_deg": "48.54079819", + "longitude_deg": "-117.8889999", + "elevation_ft": "1775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Colville", + "scheduled_service": "no", + "gps_code": "77WA", + "local_code": "77WA" + }, + { + "id": "13958", + "ident": "77WI", + "type": "closed", + "name": "Foxewood Airport", + "latitude_deg": "42.571701", + "longitude_deg": "-88.203102", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "New Munster", + "scheduled_service": "no", + "keywords": "77WI" + }, + { + "id": "346185", + "ident": "77XA", + "type": "small_airport", + "name": "XL Ranch Airport", + "latitude_deg": "29.826004", + "longitude_deg": "-94.511068", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Winnie", + "scheduled_service": "no", + "gps_code": "77XA", + "local_code": "77XA" + }, + { + "id": "13959", + "ident": "77XS", + "type": "small_airport", + "name": "Garrett Ranch Airport", + "latitude_deg": "29.287200927734375", + "longitude_deg": "-95.35970306396484", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Danbury", + "scheduled_service": "no", + "gps_code": "77XS", + "local_code": "77XS" + }, + { + "id": "13960", + "ident": "78A", + "type": "small_airport", + "name": "Swan Creek Airport", + "latitude_deg": "36.20240020751953", + "longitude_deg": "-80.86810302734375", + "elevation_ft": "1135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Jonesville", + "scheduled_service": "no", + "gps_code": "78A", + "local_code": "78A" + }, + { + "id": "318191", + "ident": "78AA", + "type": "small_airport", + "name": "Lakewood Airport", + "latitude_deg": "64.7717611", + "longitude_deg": "-147.2466917", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "North Pole", + "scheduled_service": "no", + "gps_code": "78AA", + "local_code": "78AA" + }, + { + "id": "13961", + "ident": "78AK", + "type": "small_airport", + "name": "C.T.S. Airport", + "latitude_deg": "61.73310089111328", + "longitude_deg": "-150.5260009765625", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Willow", + "scheduled_service": "no", + "gps_code": "78AK", + "local_code": "78AK" + }, + { + "id": "13962", + "ident": "78AR", + "type": "closed", + "name": "Tucker Field", + "latitude_deg": "34.937599", + "longitude_deg": "-90.470901", + "elevation_ft": "205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Hughes", + "scheduled_service": "no", + "keywords": "78AR" + }, + { + "id": "13963", + "ident": "78B", + "type": "seaplane_base", + "name": "Buckhorn Camps Seaplane Base", + "latitude_deg": "45.65420150756836", + "longitude_deg": "-68.94950103759766", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Norcross/Millinocket/", + "scheduled_service": "no", + "gps_code": "78B", + "local_code": "78B" + }, + { + "id": "13964", + "ident": "78CA", + "type": "heliport", + "name": "Broadcom Corporation Heliport", + "latitude_deg": "33.6598014831543", + "longitude_deg": "-117.76699829101562", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Irvine", + "scheduled_service": "no", + "gps_code": "78CA", + "local_code": "78CA" + }, + { + "id": "13965", + "ident": "78CO", + "type": "heliport", + "name": "Pfister Ranch Heliport", + "latitude_deg": "39.17720031738281", + "longitude_deg": "-106.85600280761719", + "elevation_ft": "8000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Aspen", + "scheduled_service": "no", + "gps_code": "78CO", + "local_code": "78CO" + }, + { + "id": "13966", + "ident": "78FD", + "type": "small_airport", + "name": "Mac's Field", + "latitude_deg": "25.546499252319336", + "longitude_deg": "-80.4655990600586", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Homestead", + "scheduled_service": "no", + "gps_code": "78FD", + "local_code": "78FD" + }, + { + "id": "13967", + "ident": "78FL", + "type": "small_airport", + "name": "Pomona Landing Airport", + "latitude_deg": "29.502199172973633", + "longitude_deg": "-81.57839965820312", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pomona Park", + "scheduled_service": "no", + "gps_code": "78FL", + "local_code": "78FL" + }, + { + "id": "13968", + "ident": "78GA", + "type": "small_airport", + "name": "C&R Farm Airport", + "latitude_deg": "33.50429916381836", + "longitude_deg": "-85.01719665527344", + "elevation_ft": "1013", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Carrollton", + "scheduled_service": "no", + "gps_code": "78GA", + "local_code": "78GA" + }, + { + "id": "13969", + "ident": "78I", + "type": "small_airport", + "name": "Pam's Place Airport", + "latitude_deg": "39.500801", + "longitude_deg": "-86.691902", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Cloverdale", + "scheduled_service": "no", + "gps_code": "K78I", + "local_code": "78I", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pam's_Place_Airport", + "keywords": "5II0" + }, + { + "id": "13970", + "ident": "78II", + "type": "small_airport", + "name": "Fox Station Airport", + "latitude_deg": "40.636199951171875", + "longitude_deg": "-85.68800354003906", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "La Fontaine", + "scheduled_service": "no", + "gps_code": "78II", + "local_code": "78II" + }, + { + "id": "13971", + "ident": "78IL", + "type": "heliport", + "name": "Dixon Correctional Center Heliport", + "latitude_deg": "41.872501373291016", + "longitude_deg": "-89.48390197753906", + "elevation_ft": "794", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Dixon", + "scheduled_service": "no", + "gps_code": "78IL", + "local_code": "78IL" + }, + { + "id": "13972", + "ident": "78IN", + "type": "heliport", + "name": "Harrier Heliport", + "latitude_deg": "40.751399993896484", + "longitude_deg": "-86.9811019897461", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Wolcott", + "scheduled_service": "no", + "gps_code": "78IN", + "local_code": "78IN" + }, + { + "id": "13973", + "ident": "78IS", + "type": "heliport", + "name": "Red Bud Regional Hospital Heliport", + "latitude_deg": "38.20970153808594", + "longitude_deg": "-89.99669647216797", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Red Bud", + "scheduled_service": "no", + "gps_code": "78IS", + "local_code": "78IS" + }, + { + "id": "13974", + "ident": "78K", + "type": "seaplane_base", + "name": "Yes Bay Lodge Seaplane Base", + "latitude_deg": "55.9163017273", + "longitude_deg": "-131.800994873", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Yes Bay", + "scheduled_service": "no", + "gps_code": "78K", + "iata_code": "WYB", + "local_code": "78K" + }, + { + "id": "13975", + "ident": "78KS", + "type": "closed", + "name": "Walter A Swalley Airpark", + "latitude_deg": "37.020432", + "longitude_deg": "-94.799832", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Baxter Springs", + "scheduled_service": "no", + "gps_code": "78KS", + "local_code": "78KS" + }, + { + "id": "13976", + "ident": "78KY", + "type": "closed", + "name": "Owen County Memorial Hospital Heliport", + "latitude_deg": "38.542665", + "longitude_deg": "-84.841949", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Owenton", + "scheduled_service": "no", + "keywords": "78KY, New Horizons Health System" + }, + { + "id": "13977", + "ident": "78LA", + "type": "closed", + "name": "Heinsohn's Airfield", + "latitude_deg": "32.267501", + "longitude_deg": "-93.726818", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Shreveport", + "scheduled_service": "no", + "keywords": "78LA" + }, + { + "id": "45967", + "ident": "78ME", + "type": "small_airport", + "name": "Eric's Field Airport", + "latitude_deg": "43.753056", + "longitude_deg": "-70.259167", + "elevation_ft": "97", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Falmouth", + "scheduled_service": "no", + "gps_code": "78ME", + "local_code": "78ME" + }, + { + "id": "13978", + "ident": "78MI", + "type": "small_airport", + "name": "Carls Airport", + "latitude_deg": "42.04059982299805", + "longitude_deg": "-83.30349731445312", + "elevation_ft": "598", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "South Rockwood", + "scheduled_service": "no", + "gps_code": "78MI", + "local_code": "78MI" + }, + { + "id": "13979", + "ident": "78MN", + "type": "small_airport", + "name": "Hagens Private Airport", + "latitude_deg": "48.37889862060547", + "longitude_deg": "-95.81169891357422", + "elevation_ft": "1155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Gatzke", + "scheduled_service": "no", + "gps_code": "78MN", + "local_code": "78MN" + }, + { + "id": "13980", + "ident": "78MO", + "type": "small_airport", + "name": "Staggs Airport", + "latitude_deg": "39.99530029296875", + "longitude_deg": "-91.68900299072266", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Ewing", + "scheduled_service": "no", + "gps_code": "78MO", + "local_code": "78MO" + }, + { + "id": "13981", + "ident": "78MU", + "type": "small_airport", + "name": "Stony Branch Airport", + "latitude_deg": "37.2963981628418", + "longitude_deg": "-94.19519805908203", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Jasper", + "scheduled_service": "no", + "gps_code": "78MU", + "local_code": "78MU" + }, + { + "id": "13982", + "ident": "78NC", + "type": "small_airport", + "name": "Fuquay/Angier Field", + "latitude_deg": "35.5443000793457", + "longitude_deg": "-78.74749755859375", + "elevation_ft": "349", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Fuquay/Varina", + "scheduled_service": "no", + "gps_code": "78NC", + "local_code": "78NC" + }, + { + "id": "13983", + "ident": "78ND", + "type": "small_airport", + "name": "Folske Ranch Airport", + "latitude_deg": "46.29499816894531", + "longitude_deg": "-103.43199920654297", + "elevation_ft": "2900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Bowman", + "scheduled_service": "no", + "gps_code": "78ND", + "local_code": "78ND" + }, + { + "id": "13984", + "ident": "78NE", + "type": "small_airport", + "name": "Stava Airport", + "latitude_deg": "41.166099548339844", + "longitude_deg": "-97.03140258789062", + "elevation_ft": "1655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Brainard", + "scheduled_service": "no", + "gps_code": "78NE", + "local_code": "78NE" + }, + { + "id": "13985", + "ident": "78NJ", + "type": "heliport", + "name": "Hazlet Township Police Heliport", + "latitude_deg": "40.42649841308594", + "longitude_deg": "-74.1404037475586", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Keansburg", + "scheduled_service": "no", + "gps_code": "78NJ", + "local_code": "78NJ" + }, + { + "id": "13943", + "ident": "78NY", + "type": "small_airport", + "name": "Flying F Airport", + "latitude_deg": "43.081362", + "longitude_deg": "-78.779447", + "elevation_ft": "582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Pendleton", + "scheduled_service": "no", + "local_code": "78NY", + "keywords": "77NY, Pendleton Airpark" + }, + { + "id": "13987", + "ident": "78OH", + "type": "small_airport", + "name": "Valley City Flying Club Airport", + "latitude_deg": "41.258037", + "longitude_deg": "-81.969729", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Valley City", + "scheduled_service": "no", + "gps_code": "78OH", + "local_code": "78OH" + }, + { + "id": "13988", + "ident": "78OI", + "type": "heliport", + "name": "C-P-C Parma Heliport", + "latitude_deg": "41.41256", + "longitude_deg": "-81.772839", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Parma", + "scheduled_service": "no", + "keywords": "78OI" + }, + { + "id": "13989", + "ident": "78OK", + "type": "heliport", + "name": "Pawhuska Heliport", + "latitude_deg": "36.673853", + "longitude_deg": "-96.325276", + "elevation_ft": "879", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Pawhuska", + "scheduled_service": "no", + "gps_code": "78OK", + "local_code": "78OK" + }, + { + "id": "13990", + "ident": "78OR", + "type": "small_airport", + "name": "Crowley Ranch Airstrip", + "latitude_deg": "43.307899475097656", + "longitude_deg": "-117.89399719238281", + "elevation_ft": "4128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Crowley", + "scheduled_service": "no", + "gps_code": "78OR", + "local_code": "78OR" + }, + { + "id": "46300", + "ident": "78PA", + "type": "heliport", + "name": "SAP America Heliport", + "latitude_deg": "39.987028", + "longitude_deg": "-75.415944", + "elevation_ft": "417", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Newtown Square", + "scheduled_service": "no", + "gps_code": "78PA", + "local_code": "78PA" + }, + { + "id": "45746", + "ident": "78PN", + "type": "heliport", + "name": "Farmington Township Airpark Heliport", + "latitude_deg": "41.373611", + "longitude_deg": "-79.306944", + "elevation_ft": "1620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Leeper", + "scheduled_service": "no", + "gps_code": "78PN", + "local_code": "78PN" + }, + { + "id": "13992", + "ident": "78TA", + "type": "small_airport", + "name": "Ranch-Aero Airport", + "latitude_deg": "29.061399459838867", + "longitude_deg": "-98.80030059814453", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bigfoot", + "scheduled_service": "no", + "gps_code": "78TA", + "local_code": "78TA" + }, + { + "id": "13993", + "ident": "78TE", + "type": "small_airport", + "name": "Rocking A Airport", + "latitude_deg": "32.02040100097656", + "longitude_deg": "-97.33110046386719", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Whitney", + "scheduled_service": "no", + "gps_code": "78TE", + "local_code": "78TE" + }, + { + "id": "13994", + "ident": "78TS", + "type": "heliport", + "name": "South Texas Emergency Care Foundation Inc Heliport", + "latitude_deg": "26.168515", + "longitude_deg": "-97.666526", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Harlingen", + "scheduled_service": "no", + "gps_code": "78TS", + "local_code": "78TS", + "keywords": "Valley International Heliport" + }, + { + "id": "42768", + "ident": "78TX", + "type": "heliport", + "name": "Baylor University Medical Center Grapevine Helipad", + "latitude_deg": "32.934123", + "longitude_deg": "-97.095366", + "elevation_ft": "714", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Grapevine", + "scheduled_service": "no", + "gps_code": "78TX", + "local_code": "78TX" + }, + { + "id": "13995", + "ident": "78U", + "type": "seaplane_base", + "name": "Snake River Seaplane Base", + "latitude_deg": "46.364638", + "longitude_deg": "-117.062009", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Lewiston", + "scheduled_service": "no", + "local_code": "78U" + }, + { + "id": "13996", + "ident": "78VA", + "type": "small_airport", + "name": "Hilldale Airport", + "latitude_deg": "38.24639892578125", + "longitude_deg": "-78.47530364990234", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Stanardsville", + "scheduled_service": "no", + "gps_code": "78VA", + "local_code": "78VA" + }, + { + "id": "13997", + "ident": "78WA", + "type": "small_airport", + "name": "Center Island Airport", + "latitude_deg": "48.4901008606", + "longitude_deg": "-122.832000732", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Center Island", + "scheduled_service": "no", + "gps_code": "78WA", + "iata_code": "CWS", + "local_code": "78WA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Center_Island_Airport" + }, + { + "id": "46301", + "ident": "78WI", + "type": "heliport", + "name": "Mayo Clinic Health System-Oakridge Heliport", + "latitude_deg": "44.577514", + "longitude_deg": "-91.211612", + "elevation_ft": "989", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Osseo", + "scheduled_service": "no", + "gps_code": "78WI", + "local_code": "78WI", + "keywords": "Osseo Medical Center Heliport" + }, + { + "id": "349511", + "ident": "78XA", + "type": "small_airport", + "name": "Wayport Airport", + "latitude_deg": "32.739206", + "longitude_deg": "-97.917739", + "elevation_ft": "1079", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Millsap", + "scheduled_service": "no", + "gps_code": "78XA", + "local_code": "78XA" + }, + { + "id": "13998", + "ident": "78XS", + "type": "small_airport", + "name": "Smith Aviation Inc Airport", + "latitude_deg": "29.052999", + "longitude_deg": "-96.262199", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Campo", + "scheduled_service": "no", + "gps_code": "78XS", + "local_code": "78XS" + }, + { + "id": "13999", + "ident": "78Z", + "type": "seaplane_base", + "name": "Nancy Lake Seaplane Base", + "latitude_deg": "61.685001373291016", + "longitude_deg": "-149.97999572753906", + "elevation_ft": "218", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nancy Lake", + "scheduled_service": "no", + "gps_code": "78Z", + "local_code": "78Z" + }, + { + "id": "45278", + "ident": "79AK", + "type": "small_airport", + "name": "Huttunen Strip", + "latitude_deg": "61.481839", + "longitude_deg": "-149.744019", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "79AK", + "local_code": "79AK" + }, + { + "id": "14000", + "ident": "79AR", + "type": "small_airport", + "name": "Franke Field", + "latitude_deg": "34.852901", + "longitude_deg": "-92.048203", + "elevation_ft": "263", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "79AR", + "local_code": "79AR", + "keywords": "Perrys Airport" + }, + { + "id": "14001", + "ident": "79C", + "type": "small_airport", + "name": "Brennand Airport", + "latitude_deg": "44.159078", + "longitude_deg": "-88.561858", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Neenah", + "scheduled_service": "no", + "gps_code": "K79C", + "local_code": "79C" + }, + { + "id": "14002", + "ident": "79CA", + "type": "heliport", + "name": "Providence St Mary Medical Center Heliport", + "latitude_deg": "34.543209", + "longitude_deg": "-117.264528", + "elevation_ft": "2840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Apple Valley", + "scheduled_service": "no", + "gps_code": "79CA", + "local_code": "79CA", + "keywords": "St Mary Desert Valley Hospital Heliport" + }, + { + "id": "14003", + "ident": "79CL", + "type": "small_airport", + "name": "Milhous Ranch Airport", + "latitude_deg": "39.32490158081055", + "longitude_deg": "-121.07599639892578", + "elevation_ft": "2625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "North San Juan", + "scheduled_service": "no", + "gps_code": "79CL", + "local_code": "79CL" + }, + { + "id": "14004", + "ident": "79CO", + "type": "heliport", + "name": "Boulder Community Hospital Heliport", + "latitude_deg": "40.027801513671875", + "longitude_deg": "-105.28399658203125", + "elevation_ft": "5373", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Boulder", + "scheduled_service": "no", + "gps_code": "79CO", + "local_code": "79CO" + }, + { + "id": "14005", + "ident": "79F", + "type": "closed", + "name": "Teramiranda Airport", + "latitude_deg": "36.608398", + "longitude_deg": "-94.872498", + "elevation_ft": "793", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Afton", + "scheduled_service": "no", + "keywords": "79F" + }, + { + "id": "14006", + "ident": "79FD", + "type": "small_airport", + "name": "Midway Lake Airport", + "latitude_deg": "28.04199981689453", + "longitude_deg": "-82.09230041503906", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Plant City", + "scheduled_service": "no", + "gps_code": "79FD", + "local_code": "79FD" + }, + { + "id": "14007", + "ident": "79FL", + "type": "small_airport", + "name": "Neal Field", + "latitude_deg": "29.55270004272461", + "longitude_deg": "-82.86869812011719", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Chiefland", + "scheduled_service": "no", + "gps_code": "79FL", + "local_code": "79FL" + }, + { + "id": "14008", + "ident": "79GA", + "type": "small_airport", + "name": "Coates Airport", + "latitude_deg": "31.491300582885742", + "longitude_deg": "-85.0166015625", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fort Gaines", + "scheduled_service": "no", + "gps_code": "79GA", + "local_code": "79GA" + }, + { + "id": "301235", + "ident": "79ID", + "type": "small_airport", + "name": "Kooskia (Clear Creek Int) Airport", + "latitude_deg": "46.0488642914", + "longitude_deg": "-115.869691372", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "scheduled_service": "no", + "gps_code": "79ID" + }, + { + "id": "14009", + "ident": "79II", + "type": "small_airport", + "name": "Sauer-Harter Airport", + "latitude_deg": "39.883399963378906", + "longitude_deg": "-85.70249938964844", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Greenfield", + "scheduled_service": "no", + "gps_code": "79II", + "local_code": "79II" + }, + { + "id": "14010", + "ident": "79IL", + "type": "small_airport", + "name": "Miller Airport", + "latitude_deg": "41.79669952392578", + "longitude_deg": "-89.23030090332031", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Ashton", + "scheduled_service": "no", + "gps_code": "79IL", + "local_code": "79IL" + }, + { + "id": "14011", + "ident": "79IN", + "type": "heliport", + "name": "Memorial Hospital At South Bend Heliport", + "latitude_deg": "41.684200286865234", + "longitude_deg": "-86.25309753417969", + "elevation_ft": "752", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "South Bend", + "scheduled_service": "no", + "gps_code": "79IN", + "local_code": "79IN" + }, + { + "id": "14012", + "ident": "79IS", + "type": "small_airport", + "name": "Hartwell Ranch RLA Restricted Landing Area", + "latitude_deg": "39.4448013306", + "longitude_deg": "-90.5621032715", + "elevation_ft": "427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hillview", + "scheduled_service": "no", + "gps_code": "79IS", + "local_code": "79IS" + }, + { + "id": "341059", + "ident": "79KS", + "type": "heliport", + "name": "Greenwood County Hospital Heliport", + "latitude_deg": "37.836203", + "longitude_deg": "-96.295261", + "elevation_ft": "1137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Eureka", + "scheduled_service": "no", + "gps_code": "79KS", + "local_code": "79KS" + }, + { + "id": "14013", + "ident": "79KY", + "type": "small_airport", + "name": "Lucas Field", + "latitude_deg": "37.871299743652344", + "longitude_deg": "-84.6104965209961", + "elevation_ft": "906", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Nicholasville", + "scheduled_service": "no", + "gps_code": "79KY", + "local_code": "79KY" + }, + { + "id": "14014", + "ident": "79LA", + "type": "heliport", + "name": "Lakeview Regional Medical Center Heliport", + "latitude_deg": "30.412200927734375", + "longitude_deg": "-90.0792007446289", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Covington", + "scheduled_service": "no", + "gps_code": "79LA", + "local_code": "79LA" + }, + { + "id": "328974", + "ident": "79ME", + "type": "heliport", + "name": "Houlton Regional Hospital Heliport", + "latitude_deg": "46.134466", + "longitude_deg": "-67.843133", + "elevation_ft": "393", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Houlton", + "scheduled_service": "no", + "gps_code": "79ME", + "local_code": "79ME" + }, + { + "id": "45481", + "ident": "79MI", + "type": "small_airport", + "name": "Pike River Landing", + "latitude_deg": "46.980073", + "longitude_deg": "-88.549571", + "elevation_ft": "902", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Chassell", + "scheduled_service": "no", + "keywords": "79MI" + }, + { + "id": "14015", + "ident": "79MN", + "type": "small_airport", + "name": "Paul Field", + "latitude_deg": "48.37770080566406", + "longitude_deg": "-95.75440216064453", + "elevation_ft": "1165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Gatzke", + "scheduled_service": "no", + "gps_code": "79MN", + "local_code": "79MN" + }, + { + "id": "14016", + "ident": "79MO", + "type": "small_airport", + "name": "Faries Field", + "latitude_deg": "36.986698", + "longitude_deg": "-90.543297", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Williamsville", + "scheduled_service": "no", + "gps_code": "79MO", + "local_code": "79MO" + }, + { + "id": "14017", + "ident": "79MU", + "type": "small_airport", + "name": "Dunham Private Airport", + "latitude_deg": "39.330299377441406", + "longitude_deg": "-94.55660247802734", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Smithville", + "scheduled_service": "no", + "gps_code": "79MU", + "local_code": "79MU" + }, + { + "id": "14018", + "ident": "79N", + "type": "small_airport", + "name": "Ridge Soaring Gliderport", + "latitude_deg": "40.8838996887207", + "longitude_deg": "-77.9072036743164", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Unionville", + "scheduled_service": "no", + "gps_code": "79N", + "local_code": "79N", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ridge_Soaring_Gliderport" + }, + { + "id": "14019", + "ident": "79NC", + "type": "small_airport", + "name": "Ball Airport", + "latitude_deg": "36.134300231933594", + "longitude_deg": "-78.28189849853516", + "elevation_ft": "366", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Louisburg", + "scheduled_service": "no", + "gps_code": "79NC", + "local_code": "79NC" + }, + { + "id": "14020", + "ident": "79ND", + "type": "closed", + "name": "Reimers Airport", + "latitude_deg": "47.323298", + "longitude_deg": "-99.001198", + "elevation_ft": "1590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Carrington", + "scheduled_service": "no", + "keywords": "79ND" + }, + { + "id": "14021", + "ident": "79NE", + "type": "heliport", + "name": "Cambridge Memorial Hospital Heliport", + "latitude_deg": "40.280799865722656", + "longitude_deg": "-100.17900085449219", + "elevation_ft": "2268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "79NE", + "local_code": "79NE" + }, + { + "id": "14022", + "ident": "79NJ", + "type": "heliport", + "name": "Philips Lighting County Heliport", + "latitude_deg": "40.53810119628906", + "longitude_deg": "-74.52690124511719", + "elevation_ft": "61", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Franklin Township", + "scheduled_service": "no", + "gps_code": "79NJ", + "local_code": "79NJ" + }, + { + "id": "14023", + "ident": "79NY", + "type": "small_airport", + "name": "Smith Airport", + "latitude_deg": "43.087002", + "longitude_deg": "-78.811401", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Pendleton", + "scheduled_service": "no", + "gps_code": "79NY", + "local_code": "79NY" + }, + { + "id": "14024", + "ident": "79OH", + "type": "small_airport", + "name": "Smith-Stewart Field", + "latitude_deg": "41.209800720214844", + "longitude_deg": "-80.68309783935547", + "elevation_ft": "1092", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Vienna", + "scheduled_service": "no", + "gps_code": "79OH", + "local_code": "79OH" + }, + { + "id": "14025", + "ident": "79OI", + "type": "closed", + "name": "Flying J Airport", + "latitude_deg": "39.817299", + "longitude_deg": "-83.755798", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Pitchin", + "scheduled_service": "no", + "keywords": "79OI" + }, + { + "id": "14026", + "ident": "79OK", + "type": "small_airport", + "name": "Little River Ranch Airport", + "latitude_deg": "35.38479995727539", + "longitude_deg": "-95.17639923095703", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Pickens", + "scheduled_service": "no", + "gps_code": "79OK", + "local_code": "79OK" + }, + { + "id": "14027", + "ident": "79OR", + "type": "heliport", + "name": "Cruse Memorial Heliport", + "latitude_deg": "43.694801330566406", + "longitude_deg": "-124.13800048828125", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Reedsport", + "scheduled_service": "no", + "gps_code": "79OR", + "local_code": "79OR" + }, + { + "id": "14028", + "ident": "79PA", + "type": "small_airport", + "name": "Little Britain Airport", + "latitude_deg": "39.79119873046875", + "longitude_deg": "-76.1416015625", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Quarryville", + "scheduled_service": "no", + "gps_code": "79PA", + "local_code": "79PA" + }, + { + "id": "14029", + "ident": "79PN", + "type": "heliport", + "name": "Geisinger Rooftop Heliport", + "latitude_deg": "40.972900390625", + "longitude_deg": "-76.6041030883789", + "elevation_ft": "661", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "79PN", + "local_code": "79PN" + }, + { + "id": "14030", + "ident": "79TA", + "type": "small_airport", + "name": "Morris Ranch Airport", + "latitude_deg": "28.169700622558594", + "longitude_deg": "-98.88999938964844", + "elevation_ft": "346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cotulla", + "scheduled_service": "no", + "gps_code": "79TA", + "local_code": "79TA" + }, + { + "id": "14031", + "ident": "79TE", + "type": "small_airport", + "name": "Arrowhead Airport", + "latitude_deg": "28.1156005859375", + "longitude_deg": "-97.93080139160156", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lagarto", + "scheduled_service": "no", + "gps_code": "79TE", + "local_code": "79TE" + }, + { + "id": "14032", + "ident": "79TS", + "type": "small_airport", + "name": "Tallows Field", + "latitude_deg": "33.31051", + "longitude_deg": "-96.73808", + "elevation_ft": "729", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Celina", + "scheduled_service": "no", + "gps_code": "79TS", + "local_code": "79TS" + }, + { + "id": "14033", + "ident": "79TX", + "type": "closed", + "name": "Ag-Air Inc. Airport", + "latitude_deg": "26.073099", + "longitude_deg": "-97.537498", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brownsville", + "scheduled_service": "no", + "local_code": "OLD79TX", + "keywords": "79TX" + }, + { + "id": "45861", + "ident": "79UT", + "type": "heliport", + "name": "Bear River Valley Hospital Heliport", + "latitude_deg": "40.708044", + "longitude_deg": "-112.183056", + "elevation_ft": "4290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Tremonton", + "scheduled_service": "no", + "gps_code": "79UT", + "local_code": "79UT" + }, + { + "id": "14034", + "ident": "79VA", + "type": "heliport", + "name": "Windsor Heliport", + "latitude_deg": "36.806800842285156", + "longitude_deg": "-76.73799896240234", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Windsor", + "scheduled_service": "no", + "gps_code": "79VA", + "local_code": "79VA" + }, + { + "id": "351635", + "ident": "79VG", + "type": "small_airport", + "name": "Perkey Airport", + "latitude_deg": "37.663873", + "longitude_deg": "-79.810749", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Eagle Rock", + "scheduled_service": "no", + "gps_code": "79VG", + "local_code": "79VG" + }, + { + "id": "14035", + "ident": "79WA", + "type": "closed", + "name": "Grigg Farm Airport", + "latitude_deg": "47.173504", + "longitude_deg": "-119.747002", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Quincy", + "scheduled_service": "no", + "keywords": "79WA" + }, + { + "id": "46302", + "ident": "79WI", + "type": "heliport", + "name": "Whitehall Fire Department Heliport", + "latitude_deg": "44.367614", + "longitude_deg": "-91.332728", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Whitehall", + "scheduled_service": "no", + "gps_code": "79WI", + "local_code": "79WI" + }, + { + "id": "301236", + "ident": "79WT", + "type": "small_airport", + "name": "Ellensburg (Rotor Ranch) Airport", + "latitude_deg": "47.091426059499994", + "longitude_deg": "-120.589778423", + "elevation_ft": "1962", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "scheduled_service": "no", + "gps_code": "79WT" + }, + { + "id": "430429", + "ident": "79XA", + "type": "small_airport", + "name": "Hacienda Rio Lindo Ranch Airport", + "latitude_deg": "30.235", + "longitude_deg": "-101.663472", + "elevation_ft": "1677", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no", + "gps_code": "79XA", + "local_code": "79XA" + }, + { + "id": "14036", + "ident": "79XS", + "type": "small_airport", + "name": "Silverton Municipal Airport", + "latitude_deg": "34.467908", + "longitude_deg": "-101.295706", + "elevation_ft": "3267", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Silverton", + "scheduled_service": "no", + "gps_code": "79XS", + "local_code": "79XS" + }, + { + "id": "14037", + "ident": "7A7", + "type": "heliport", + "name": "Mosby Army Heliport", + "latitude_deg": "34.626399993896484", + "longitude_deg": "-84.10639953613281", + "elevation_ft": "1748", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Dahlonega", + "scheduled_service": "no", + "gps_code": "7A7", + "local_code": "7A7" + }, + { + "id": "14038", + "ident": "7A9", + "type": "small_airport", + "name": "Peterson Field", + "latitude_deg": "32.088698", + "longitude_deg": "-84.372498", + "elevation_ft": "526", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Plains", + "scheduled_service": "no", + "gps_code": "4GA5", + "local_code": "4GA5", + "keywords": "7A9" + }, + { + "id": "14039", + "ident": "7AK0", + "type": "small_airport", + "name": "Art Z Airport", + "latitude_deg": "64.64739990234375", + "longitude_deg": "-151.80999755859375", + "elevation_ft": "193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tanana", + "scheduled_service": "no", + "gps_code": "7AK0", + "local_code": "7AK0" + }, + { + "id": "14040", + "ident": "7AK2", + "type": "small_airport", + "name": "Snettisham Airport", + "latitude_deg": "58.134516", + "longitude_deg": "-133.729105", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Snettisham", + "scheduled_service": "no", + "gps_code": "7AK2", + "local_code": "7AK2" + }, + { + "id": "14041", + "ident": "7AK3", + "type": "small_airport", + "name": "Gaede Airport", + "latitude_deg": "60.476933", + "longitude_deg": "-151.17136", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Soldotna", + "scheduled_service": "no", + "gps_code": "7AK3", + "local_code": "7AK3" + }, + { + "id": "14042", + "ident": "7AK4", + "type": "small_airport", + "name": "Jack Fish Landing Airport", + "latitude_deg": "61.541579", + "longitude_deg": "-149.459102", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "7AK4", + "local_code": "7AK4" + }, + { + "id": "14043", + "ident": "7AK5", + "type": "small_airport", + "name": "Dahler Homestead Airport", + "latitude_deg": "60.50360107421875", + "longitude_deg": "-150.93600463867188", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Soldotna", + "scheduled_service": "no", + "gps_code": "7AK5", + "local_code": "7AK5" + }, + { + "id": "14044", + "ident": "7AK6", + "type": "small_airport", + "name": "Dan France Airport", + "latitude_deg": "60.475686", + "longitude_deg": "-150.929875", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Soldotna", + "scheduled_service": "no", + "gps_code": "7AK6", + "local_code": "7AK6" + }, + { + "id": "14045", + "ident": "7AK7", + "type": "heliport", + "name": "Era Denali Heliport", + "latitude_deg": "63.738399505615234", + "longitude_deg": "-148.8820037841797", + "elevation_ft": "1580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Healy", + "scheduled_service": "no", + "gps_code": "7AK7", + "local_code": "7AK7" + }, + { + "id": "14046", + "ident": "7AK8", + "type": "small_airport", + "name": "Hess Airport", + "latitude_deg": "61.621299743652344", + "longitude_deg": "-149.61500549316406", + "elevation_ft": "355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "7AK8", + "local_code": "7AK8" + }, + { + "id": "14047", + "ident": "7AK9", + "type": "small_airport", + "name": "Vinduska Airport", + "latitude_deg": "61.64680099487305", + "longitude_deg": "-149.0489959716797", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "7AK9", + "local_code": "7AK9" + }, + { + "id": "325539", + "ident": "7AL0", + "type": "heliport", + "name": "Logan Martin Dam Heliport", + "latitude_deg": "33.427258", + "longitude_deg": "-86.340837", + "elevation_ft": "485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Vincent", + "scheduled_service": "no", + "gps_code": "7AL0", + "local_code": "7AL0" + }, + { + "id": "321982", + "ident": "7AL1", + "type": "heliport", + "name": "Explorer Heliport", + "latitude_deg": "34.99375", + "longitude_deg": "-87.3419444", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "7AL1", + "local_code": "7AL1" + }, + { + "id": "325100", + "ident": "7AL2", + "type": "small_airport", + "name": "Peterson Field", + "latitude_deg": "33.86482", + "longitude_deg": "-86.310835", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Steele", + "scheduled_service": "no", + "gps_code": "7AL2", + "local_code": "7AL2" + }, + { + "id": "321979", + "ident": "7AL3", + "type": "heliport", + "name": "Oxford Police Heliport", + "latitude_deg": "33.600448", + "longitude_deg": "-85.864283", + "elevation_ft": "633", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Oxford", + "scheduled_service": "no", + "gps_code": "7AL3", + "local_code": "7AL3" + }, + { + "id": "323172", + "ident": "7AL4", + "type": "heliport", + "name": "Caribe (East) Helipad", + "latitude_deg": "30.277882", + "longitude_deg": "-87.54342", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Orange Beach", + "scheduled_service": "no", + "gps_code": "AL28", + "local_code": "AL28", + "keywords": "7AL4" + }, + { + "id": "318200", + "ident": "7AL5", + "type": "small_airport", + "name": "Liberty Field Airport", + "latitude_deg": "31.2899028", + "longitude_deg": "-85.5404778", + "elevation_ft": "363", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Pinckard", + "scheduled_service": "no", + "gps_code": "7AL5", + "local_code": "7AL5", + "wikipedia_link": "http://www.airnav.com/airport/7AL5" + }, + { + "id": "318197", + "ident": "7AL7", + "type": "small_airport", + "name": "Pratt Landing Airport", + "latitude_deg": "31.064693", + "longitude_deg": "-85.438981", + "elevation_ft": "184", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Madrid", + "scheduled_service": "no", + "gps_code": "7AL7", + "local_code": "7AL7" + }, + { + "id": "323165", + "ident": "7AL8", + "type": "heliport", + "name": "Forlala Hospital Helipad", + "latitude_deg": "31.000911", + "longitude_deg": "-86.313655", + "elevation_ft": "324", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Florala", + "scheduled_service": "no", + "gps_code": "7AL8", + "local_code": "7AL8" + }, + { + "id": "14048", + "ident": "7AL9", + "type": "small_airport", + "name": "Horak Airport", + "latitude_deg": "30.466899871826172", + "longitude_deg": "-87.5416030883789", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Elberta", + "scheduled_service": "no", + "gps_code": "7AL9", + "local_code": "7AL9" + }, + { + "id": "14049", + "ident": "7AR0", + "type": "small_airport", + "name": "Hammer Field Airport", + "latitude_deg": "36.4245", + "longitude_deg": "-93.6936", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Eureka Springs", + "scheduled_service": "no", + "gps_code": "7AR0", + "local_code": "7AR0" + }, + { + "id": "14050", + "ident": "7AR1", + "type": "small_airport", + "name": "Ward's Airport", + "latitude_deg": "33.049999237099996", + "longitude_deg": "-91.34159851070001", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Eudora", + "scheduled_service": "no", + "gps_code": "7AR1", + "local_code": "7AR1" + }, + { + "id": "14051", + "ident": "7AR2", + "type": "small_airport", + "name": "Verser's Landing Airport", + "latitude_deg": "35.5572013855", + "longitude_deg": "-92.1321029663", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Greers Ferry", + "scheduled_service": "no", + "gps_code": "7AR2", + "local_code": "7AR2" + }, + { + "id": "14052", + "ident": "7AR3", + "type": "small_airport", + "name": "Runsick Flying Service Airport", + "latitude_deg": "35.151100158691406", + "longitude_deg": "-90.81559753417969", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Colt", + "scheduled_service": "no", + "gps_code": "7AR3", + "local_code": "7AR3" + }, + { + "id": "45300", + "ident": "7AR4", + "type": "small_airport", + "name": "Brown'S Airport", + "latitude_deg": "35.292222", + "longitude_deg": "-91.89", + "elevation_ft": "367", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Searcy", + "scheduled_service": "no", + "gps_code": "7AR4", + "local_code": "7AR4" + }, + { + "id": "14053", + "ident": "7AR5", + "type": "heliport", + "name": "Dallas County Medical Center Heliport", + "latitude_deg": "33.8111991882", + "longitude_deg": "-92.4256973267", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Fordyce", + "scheduled_service": "no", + "gps_code": "7AR5", + "local_code": "7AR5" + }, + { + "id": "330191", + "ident": "7AR6", + "type": "small_airport", + "name": "RBC Airport", + "latitude_deg": "35.795794", + "longitude_deg": "-90.802375", + "elevation_ft": "261", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Jonesboro", + "scheduled_service": "no", + "gps_code": "7AR6", + "local_code": "7AR6" + }, + { + "id": "329254", + "ident": "7AR7", + "type": "small_airport", + "name": "Riddell Field", + "latitude_deg": "34.317812", + "longitude_deg": "-90.857025", + "elevation_ft": "169", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Elaine", + "scheduled_service": "no", + "gps_code": "7AR7", + "local_code": "7AR7" + }, + { + "id": "353043", + "ident": "7AR8", + "type": "small_airport", + "name": "Shiloh Airport", + "latitude_deg": "34.665085", + "longitude_deg": "-91.17665", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Holly Grove", + "scheduled_service": "no", + "gps_code": "7AR8", + "local_code": "7AR8" + }, + { + "id": "334253", + "ident": "7AR9", + "type": "small_airport", + "name": "Cullen Airport", + "latitude_deg": "35.956471", + "longitude_deg": "-90.812978", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Jonesboro", + "scheduled_service": "no", + "gps_code": "7AR9", + "local_code": "7AR9" + }, + { + "id": "45944", + "ident": "7AZ0", + "type": "heliport", + "name": "Aviation Ramp Area Heliport", + "latitude_deg": "33.625006", + "longitude_deg": "-111.921967", + "elevation_ft": "1455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Scottsdale", + "scheduled_service": "no", + "gps_code": "7AZ0", + "local_code": "7AZ0", + "keywords": "Westcor Aviation Ramp Area Heliport" + }, + { + "id": "347461", + "ident": "7AZ4", + "type": "small_airport", + "name": "Rancho Relaxo Airport", + "latitude_deg": "31.938611", + "longitude_deg": "-109.588333", + "elevation_ft": "4475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Pearce", + "scheduled_service": "no", + "gps_code": "7AZ4", + "local_code": "7AZ4" + }, + { + "id": "14054", + "ident": "7B1", + "type": "heliport", + "name": "Rainbow Heliport", + "latitude_deg": "40.775299072265625", + "longitude_deg": "-89.6759033203125", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Peoria", + "scheduled_service": "no", + "gps_code": "7B1", + "local_code": "7B1" + }, + { + "id": "14055", + "ident": "7B3", + "type": "small_airport", + "name": "Hampton Airfield", + "latitude_deg": "42.96260070800781", + "longitude_deg": "-70.82869720458984", + "elevation_ft": "93", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Hampton", + "scheduled_service": "no", + "gps_code": "7B3", + "local_code": "7B3" + }, + { + "id": "14056", + "ident": "7B4", + "type": "small_airport", + "name": "Miller Farm Landing Strip", + "latitude_deg": "39.884498596191406", + "longitude_deg": "-82.58910369873047", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Baltimore", + "scheduled_service": "no", + "gps_code": "7B4", + "local_code": "7B4" + }, + { + "id": "14057", + "ident": "7B9", + "type": "small_airport", + "name": "Ellington Airport", + "latitude_deg": "41.925302", + "longitude_deg": "-72.457066", + "elevation_ft": "253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Ellington", + "scheduled_service": "no", + "gps_code": "K7B9", + "local_code": "7B9" + }, + { + "id": "14058", + "ident": "7C3", + "type": "small_airport", + "name": "Monona Municipal Airport", + "latitude_deg": "43.032903", + "longitude_deg": "-91.346586", + "elevation_ft": "1147", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Monona", + "scheduled_service": "no", + "gps_code": "K7C3", + "local_code": "7C3" + }, + { + "id": "14059", + "ident": "7C5", + "type": "small_airport", + "name": "Sig Field", + "latitude_deg": "41.548301696777344", + "longitude_deg": "-92.53459930419922", + "elevation_ft": "929", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Montezuma", + "scheduled_service": "no", + "gps_code": "7C5", + "local_code": "7C5" + }, + { + "id": "14061", + "ident": "7CA1", + "type": "small_airport", + "name": "Abraham Ranch Airport", + "latitude_deg": "34.41469955444336", + "longitude_deg": "-116.62300109863281", + "elevation_ft": "2850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lucerne Valley", + "scheduled_service": "no", + "gps_code": "7CA1", + "local_code": "7CA1" + }, + { + "id": "14062", + "ident": "7CA2", + "type": "small_airport", + "name": "Paradise Lakes Airport", + "latitude_deg": "35.176700592041016", + "longitude_deg": "-118.927001953125", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bakersfield", + "scheduled_service": "no", + "gps_code": "7CA2", + "local_code": "7CA2" + }, + { + "id": "14063", + "ident": "7CA3", + "type": "heliport", + "name": "Mercy Medical Center Heliport", + "latitude_deg": "40.572242", + "longitude_deg": "-122.396637", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Redding", + "scheduled_service": "no", + "gps_code": "7CA3", + "local_code": "7CA3" + }, + { + "id": "45307", + "ident": "7CA4", + "type": "heliport", + "name": "Desert Regional Medical Center Heliport", + "latitude_deg": "33.838461", + "longitude_deg": "-116.543899", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palm Springs", + "scheduled_service": "no", + "gps_code": "7CA4", + "local_code": "7CA4" + }, + { + "id": "14064", + "ident": "7CA5", + "type": "heliport", + "name": "Balch Camp Heliport", + "latitude_deg": "36.90629959106445", + "longitude_deg": "-119.12899780273438", + "elevation_ft": "1603", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Balch Camp", + "scheduled_service": "no", + "gps_code": "7CA5", + "local_code": "7CA5" + }, + { + "id": "14065", + "ident": "7CA6", + "type": "closed", + "name": "West Side Field Station Airport", + "latitude_deg": "36.338799", + "longitude_deg": "-120.110001", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Five Points", + "scheduled_service": "no", + "keywords": "7CA6" + }, + { + "id": "14066", + "ident": "7CA7", + "type": "heliport", + "name": "Brian Chuchua Jeep Heliport", + "latitude_deg": "33.86109924316406", + "longitude_deg": "-117.88200378417969", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Placentia", + "scheduled_service": "no", + "gps_code": "7CA7", + "local_code": "7CA7" + }, + { + "id": "14067", + "ident": "7CA8", + "type": "heliport", + "name": "Eisenhower Medical Center Heliport", + "latitude_deg": "33.7641", + "longitude_deg": "-116.4049", + "elevation_ft": "234", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rancho Mirage", + "scheduled_service": "no", + "gps_code": "7CA8", + "local_code": "7CA8" + }, + { + "id": "14068", + "ident": "7CA9", + "type": "heliport", + "name": "River Meadow Farm Heliport", + "latitude_deg": "38.46189880371094", + "longitude_deg": "-122.41500091552734", + "elevation_ft": "146", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rutherford", + "scheduled_service": "no", + "gps_code": "7CA9", + "local_code": "7CA9" + }, + { + "id": "14069", + "ident": "7CL0", + "type": "closed", + "name": "Du Bois Ranch Airport", + "latitude_deg": "36.703602", + "longitude_deg": "-120.135002", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Kerman", + "scheduled_service": "no", + "keywords": "7CL0" + }, + { + "id": "14070", + "ident": "7CL1", + "type": "heliport", + "name": "Children's Hospital Oakland Heliport", + "latitude_deg": "37.836169", + "longitude_deg": "-122.266741", + "elevation_ft": "134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oakland", + "scheduled_service": "no", + "gps_code": "7CL1", + "local_code": "7CL1" + }, + { + "id": "14071", + "ident": "7CL2", + "type": "heliport", + "name": "Rogers Helicopters Inc Heliport", + "latitude_deg": "36.82379913330078", + "longitude_deg": "-119.66799926757812", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Clovis", + "scheduled_service": "no", + "gps_code": "7CL2", + "local_code": "7CL2" + }, + { + "id": "14072", + "ident": "7CL3", + "type": "closed", + "name": "Boeing Canoga Park Heliport", + "latitude_deg": "34.188301", + "longitude_deg": "-118.600998", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Canoga Park", + "scheduled_service": "no", + "keywords": "7CL3" + }, + { + "id": "14073", + "ident": "7CL4", + "type": "heliport", + "name": "Marine Corps Mountain War Training Center Heliport", + "latitude_deg": "38.354765", + "longitude_deg": "-119.520972", + "elevation_ft": "6762", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bridgeport", + "scheduled_service": "no", + "gps_code": "7CL4", + "local_code": "7CL4" + }, + { + "id": "14074", + "ident": "7CL5", + "type": "closed", + "name": "Playa Vista 1 Heliport", + "latitude_deg": "33.980801", + "longitude_deg": "-118.404999", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Culver City", + "scheduled_service": "no", + "gps_code": "7CL5", + "local_code": "7CL5" + }, + { + "id": "14075", + "ident": "7CL6", + "type": "closed", + "name": "Playa Vista 2 Heliport", + "latitude_deg": "33.980111", + "longitude_deg": "-118.407721", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Culver City", + "scheduled_service": "no", + "keywords": "7CL6" + }, + { + "id": "14076", + "ident": "7CL7", + "type": "closed", + "name": "Playa Vista 3 Heliport", + "latitude_deg": "33.974998", + "longitude_deg": "-118.416", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Culver City", + "scheduled_service": "no", + "gps_code": "7CL7", + "local_code": "7CL7" + }, + { + "id": "14077", + "ident": "7CL8", + "type": "small_airport", + "name": "Geyser Ranch Airport", + "latitude_deg": "38.664101", + "longitude_deg": "-114.632004", + "elevation_ft": "5977", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Pioche", + "scheduled_service": "no", + "gps_code": "7NV8", + "local_code": "7NV8", + "keywords": "7CL8" + }, + { + "id": "14078", + "ident": "7CL9", + "type": "small_airport", + "name": "Perryman Airport", + "latitude_deg": "38.696463", + "longitude_deg": "-120.732858", + "elevation_ft": "2600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Placerville", + "scheduled_service": "no", + "gps_code": "7CL9", + "local_code": "7CL9", + "keywords": "64Q" + }, + { + "id": "14079", + "ident": "7CO0", + "type": "small_airport", + "name": "Parkland Airport", + "latitude_deg": "40.07170104980469", + "longitude_deg": "-105.03399658203125", + "elevation_ft": "5050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Erie", + "scheduled_service": "no", + "gps_code": "7CO0", + "local_code": "7CO0" + }, + { + "id": "14080", + "ident": "7CO1", + "type": "closed", + "name": "Dave Nash Ranch Airport", + "latitude_deg": "38.75505", + "longitude_deg": "-105.383311", + "elevation_ft": "8527", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Guffey", + "scheduled_service": "no", + "keywords": "7CO1" + }, + { + "id": "14081", + "ident": "7CO2", + "type": "closed", + "name": "Hawkins Ranch Airport", + "latitude_deg": "38.841538", + "longitude_deg": "-107.877213", + "elevation_ft": "6200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Hotchkiss", + "scheduled_service": "no", + "keywords": "7CO2" + }, + { + "id": "14082", + "ident": "7CO3", + "type": "closed", + "name": "Lindys Airpark", + "latitude_deg": "40.038898", + "longitude_deg": "-104.624001", + "elevation_ft": "5040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Hudson", + "scheduled_service": "no", + "keywords": "7CO3" + }, + { + "id": "14083", + "ident": "7CO4", + "type": "closed", + "name": "Williams Ranch Airport", + "latitude_deg": "40.604198", + "longitude_deg": "-103.939003", + "elevation_ft": "4860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "New Raymer", + "scheduled_service": "no", + "keywords": "7CO4" + }, + { + "id": "14084", + "ident": "7CO5", + "type": "closed", + "name": "Yocam Ranch Airport", + "latitude_deg": "40.299999", + "longitude_deg": "-104.230003", + "elevation_ft": "4461", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Orchard", + "scheduled_service": "no", + "keywords": "7CO5" + }, + { + "id": "14085", + "ident": "7CO6", + "type": "small_airport", + "name": "Vantage View Airport", + "latitude_deg": "38.760278", + "longitude_deg": "-104.101389", + "elevation_ft": "5780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Rush", + "scheduled_service": "no", + "gps_code": "7CO6", + "local_code": "7CO6" + }, + { + "id": "14086", + "ident": "7CO7", + "type": "heliport", + "name": "Frontier Helicopters Heliport", + "latitude_deg": "40.34080123901367", + "longitude_deg": "-104.822998046875", + "elevation_ft": "4900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Johnstown", + "scheduled_service": "no", + "gps_code": "7CO7", + "local_code": "7CO7" + }, + { + "id": "14087", + "ident": "7CO8", + "type": "small_airport", + "name": "West Pueblo Airport", + "latitude_deg": "38.36330032348633", + "longitude_deg": "-104.73799896240234", + "elevation_ft": "5135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Pueblo West", + "scheduled_service": "no", + "gps_code": "7CO8", + "local_code": "7CO8" + }, + { + "id": "14088", + "ident": "7CO9", + "type": "heliport", + "name": "K2 Heliport Nr 1a Heliport", + "latitude_deg": "37.85279846191406", + "longitude_deg": "-107.57499694824219", + "elevation_ft": "9500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Silverton", + "scheduled_service": "no", + "gps_code": "7CO9", + "local_code": "7CO9" + }, + { + "id": "14089", + "ident": "7D5", + "type": "closed", + "name": "Priebe Airport", + "latitude_deg": "41.113899", + "longitude_deg": "-83.684402", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Findlay", + "scheduled_service": "no", + "keywords": "7D5" + }, + { + "id": "14090", + "ident": "7D6", + "type": "closed", + "name": "Liberty Airpark", + "latitude_deg": "41.233898", + "longitude_deg": "-81.170403", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Freedom", + "scheduled_service": "no", + "keywords": "7D6, liberty airpark, freedom airfield" + }, + { + "id": "14091", + "ident": "7D8", + "type": "small_airport", + "name": "Gates Airport", + "latitude_deg": "41.351200103759766", + "longitude_deg": "-81.09950256347656", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Garrettsville", + "scheduled_service": "no", + "gps_code": "7D8", + "local_code": "7D8" + }, + { + "id": "14092", + "ident": "7.00E+03", + "type": "small_airport", + "name": "Mills Airport", + "latitude_deg": "41.2384", + "longitude_deg": "-81.253799", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ravenna", + "scheduled_service": "no", + "local_code": "7.00E+03" + }, + { + "id": "14093", + "ident": "7F2", + "type": "closed", + "name": "Dupree Municipal Airport", + "latitude_deg": "45.045739", + "longitude_deg": "-101.605696", + "elevation_ft": "2341", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Dupree", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dupree_Municipal_Airport", + "keywords": "7F2" + }, + { + "id": "14094", + "ident": "7FA0", + "type": "heliport", + "name": "Lower Keys Medical Center Heliport", + "latitude_deg": "24.58151", + "longitude_deg": "-81.742117", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Key West", + "scheduled_service": "no", + "gps_code": "7FA0", + "local_code": "7FA0" + }, + { + "id": "14095", + "ident": "7FA1", + "type": "small_airport", + "name": "Sugar Loaf Shores Airport", + "latitude_deg": "24.648938", + "longitude_deg": "-81.578357", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Key West", + "scheduled_service": "no", + "gps_code": "7FA1", + "local_code": "7FA1" + }, + { + "id": "338724", + "ident": "7FA2", + "type": "small_airport", + "name": "Lykes Moore Haven Airport", + "latitude_deg": "26.878429", + "longitude_deg": "-81.140042", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Moore Haven", + "scheduled_service": "no", + "gps_code": "7FA2", + "local_code": "7FA2" + }, + { + "id": "338727", + "ident": "7FA3", + "type": "small_airport", + "name": "Flying L Airport", + "latitude_deg": "26.797887", + "longitude_deg": "-81.525448", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Denaud", + "scheduled_service": "no", + "gps_code": "7FA3", + "local_code": "7FA3" + }, + { + "id": "322215", + "ident": "7FA5", + "type": "heliport", + "name": "Premium Heliport", + "latitude_deg": "28.389166", + "longitude_deg": "-81.488496", + "elevation_ft": "128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "7FA5", + "local_code": "7FA5" + }, + { + "id": "14096", + "ident": "7FA8", + "type": "small_airport", + "name": "Berry Grove Airport", + "latitude_deg": "26.695600509643555", + "longitude_deg": "-81.4906005859375", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "La Belle", + "scheduled_service": "no", + "gps_code": "7FA8", + "local_code": "7FA8" + }, + { + "id": "355666", + "ident": "7FD0", + "type": "heliport", + "name": "Baptist Emergency Center Clay Heliport", + "latitude_deg": "30.078508", + "longitude_deg": "-81.710386", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orange Park", + "scheduled_service": "no", + "gps_code": "7FD0", + "local_code": "7FD0" + }, + { + "id": "14097", + "ident": "7FD1", + "type": "closed", + "name": "Pine Ridge Helistop", + "latitude_deg": "26.49023", + "longitude_deg": "-81.933352", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Myers", + "scheduled_service": "no", + "keywords": "7FD1" + }, + { + "id": "14098", + "ident": "7FD2", + "type": "small_airport", + "name": "Drake Ranch Airport", + "latitude_deg": "28.990299224853516", + "longitude_deg": "-82.33039855957031", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Hernando", + "scheduled_service": "no", + "gps_code": "7FD2", + "local_code": "7FD2" + }, + { + "id": "14099", + "ident": "7FD3", + "type": "closed", + "name": "Central District Police Station Heliport", + "latitude_deg": "25.853201", + "longitude_deg": "-80.247002", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Hialeah", + "scheduled_service": "no", + "keywords": "7FD3" + }, + { + "id": "14100", + "ident": "7FD4", + "type": "heliport", + "name": "Baptist Jacksonville Medical Center Heliport", + "latitude_deg": "30.316221", + "longitude_deg": "-81.664562", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "7FD4", + "local_code": "7FD4" + }, + { + "id": "6647", + "ident": "7FD5", + "type": "heliport", + "name": "Doctors Memorial Hospital Heliport", + "latitude_deg": "30.76128", + "longitude_deg": "-85.682373", + "elevation_ft": "133", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bonifay", + "scheduled_service": "no", + "gps_code": "7FD5", + "local_code": "7FD5", + "keywords": "Formerly 02FD" + }, + { + "id": "14101", + "ident": "7FD6", + "type": "small_airport", + "name": "Loxahatchee Airport", + "latitude_deg": "26.622600555419922", + "longitude_deg": "-80.3052978515625", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Worth", + "scheduled_service": "no", + "gps_code": "7FD6", + "local_code": "7FD6" + }, + { + "id": "14102", + "ident": "7FD7", + "type": "heliport", + "name": "Lakeland Regional Medical Center Heliport", + "latitude_deg": "28.062226", + "longitude_deg": "-81.954315", + "elevation_ft": "243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lakeland", + "scheduled_service": "no", + "gps_code": "7FD7", + "local_code": "7FD7" + }, + { + "id": "14103", + "ident": "7FD9", + "type": "small_airport", + "name": "Estherbrook Aerodrome", + "latitude_deg": "30.622994", + "longitude_deg": "-83.285651", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pinetta", + "scheduled_service": "no", + "gps_code": "7FD9", + "local_code": "7FD9", + "keywords": "A&H Farm" + }, + { + "id": "14104", + "ident": "7FL0", + "type": "heliport", + "name": "Jordan Heliport", + "latitude_deg": "29.01409912109375", + "longitude_deg": "-81.9844970703125", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Belleview", + "scheduled_service": "no", + "gps_code": "7FL0", + "local_code": "7FL0" + }, + { + "id": "14105", + "ident": "7FL1", + "type": "heliport", + "name": "Adams Executive Heliport", + "latitude_deg": "28.01689910888672", + "longitude_deg": "-81.67500305175781", + "elevation_ft": "137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Winter Haven", + "scheduled_service": "no", + "gps_code": "7FL1", + "local_code": "7FL1" + }, + { + "id": "14106", + "ident": "7FL2", + "type": "closed", + "name": "Wellborn Airport", + "latitude_deg": "30.245501", + "longitude_deg": "-82.778503", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Wellborn", + "scheduled_service": "no", + "keywords": "7FL2, Wellborn STOLport" + }, + { + "id": "14107", + "ident": "7FL3", + "type": "closed", + "name": "Adams Ranch Airport", + "latitude_deg": "27.441653", + "longitude_deg": "-80.584953", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Pierce", + "scheduled_service": "no", + "keywords": "7FL3" + }, + { + "id": "14108", + "ident": "7FL4", + "type": "small_airport", + "name": "Haller Airpark", + "latitude_deg": "29.904057", + "longitude_deg": "-81.68515", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Green Cove Springs", + "scheduled_service": "no", + "gps_code": "7FL4", + "local_code": "7FL4" + }, + { + "id": "14109", + "ident": "7FL5", + "type": "heliport", + "name": "West Palm Beach Police Station Heliport", + "latitude_deg": "26.714275", + "longitude_deg": "-80.058292", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "West Palm Beach", + "scheduled_service": "no", + "gps_code": "7FL5", + "local_code": "7FL5" + }, + { + "id": "14110", + "ident": "7FL6", + "type": "small_airport", + "name": "Spruce Creek Airport", + "latitude_deg": "29.0802001953125", + "longitude_deg": "-81.04669952392578", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Daytona Beach", + "scheduled_service": "no", + "gps_code": "7FL6", + "local_code": "7FL6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Spruce_Creek_Fly-In" + }, + { + "id": "14111", + "ident": "7FL7", + "type": "small_airport", + "name": "Lazy S Farm Airport", + "latitude_deg": "29.868600845336914", + "longitude_deg": "-82.63459777832031", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "High Springs", + "scheduled_service": "no", + "gps_code": "7FL7", + "local_code": "7FL7" + }, + { + "id": "14112", + "ident": "7FL8", + "type": "small_airport", + "name": "Dragonfly Airport", + "latitude_deg": "27.443899154663086", + "longitude_deg": "-80.56510162353516", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Pierce", + "scheduled_service": "no", + "gps_code": "7FL8", + "local_code": "7FL8" + }, + { + "id": "45352", + "ident": "7FL9", + "type": "heliport", + "name": "Lakewood Ranch Medical Center Helistop", + "latitude_deg": "27.390033", + "longitude_deg": "-82.435448", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bradenton", + "scheduled_service": "no", + "gps_code": "7FL9", + "local_code": "7FL9" + }, + { + "id": "14113", + "ident": "7G1", + "type": "small_airport", + "name": "Herron Airport", + "latitude_deg": "40.53340148925781", + "longitude_deg": "-80.54010009765625", + "elevation_ft": "1226", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "New Cumberland", + "scheduled_service": "no", + "gps_code": "7G1", + "local_code": "7G1" + }, + { + "id": "14114", + "ident": "7G2", + "type": "small_airport", + "name": "Mc Clusky Municipal Airport", + "latitude_deg": "47.462200164799995", + "longitude_deg": "-100.486999512", + "elevation_ft": "1900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Mc Clusky", + "scheduled_service": "no", + "gps_code": "7G2", + "local_code": "7G2" + }, + { + "id": "14115", + "ident": "7G4", + "type": "small_airport", + "name": "Blue Knob Valley Airport", + "latitude_deg": "40.39590072631836", + "longitude_deg": "-78.45390319824219", + "elevation_ft": "1270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Newry", + "scheduled_service": "no", + "gps_code": "7G4", + "local_code": "7G4" + }, + { + "id": "14116", + "ident": "7GA0", + "type": "heliport", + "name": "St Marys Health Care Systems Heliport", + "latitude_deg": "33.948469", + "longitude_deg": "-83.407077", + "elevation_ft": "736", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Athens", + "scheduled_service": "no", + "gps_code": "7GA0", + "local_code": "7GA0" + }, + { + "id": "14117", + "ident": "7GA1", + "type": "heliport", + "name": "Wsb-Tv Heliport", + "latitude_deg": "33.79930114746094", + "longitude_deg": "-84.3855972290039", + "elevation_ft": "903", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "7GA1", + "local_code": "7GA1" + }, + { + "id": "14118", + "ident": "7GA2", + "type": "small_airport", + "name": "McClellan Airport", + "latitude_deg": "30.777552", + "longitude_deg": "-83.205729", + "elevation_ft": "229", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Valdosta", + "scheduled_service": "no", + "gps_code": "7GA2", + "local_code": "7GA2" + }, + { + "id": "14119", + "ident": "7GA3", + "type": "small_airport", + "name": "Hacienda De Gay Airstrip", + "latitude_deg": "32.663299560546875", + "longitude_deg": "-82.07530212402344", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Garfield", + "scheduled_service": "no", + "gps_code": "7GA3", + "local_code": "7GA3" + }, + { + "id": "14120", + "ident": "7GA4", + "type": "small_airport", + "name": "Danville Airpark", + "latitude_deg": "32.58100128173828", + "longitude_deg": "-83.2677001953125", + "elevation_ft": "459", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "7GA4", + "local_code": "7GA4" + }, + { + "id": "14121", + "ident": "7GA5", + "type": "small_airport", + "name": "Mount Cove STOLport", + "latitude_deg": "34.632301330566406", + "longitude_deg": "-85.44719696044922", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Kensington", + "scheduled_service": "no", + "gps_code": "7GA5", + "local_code": "7GA5" + }, + { + "id": "43031", + "ident": "7GA6", + "type": "heliport", + "name": "Hilton Garden Inn Downtown Heliport", + "latitude_deg": "33.76194381713867", + "longitude_deg": "-84.39555358886719", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "7GA6", + "local_code": "7GA6" + }, + { + "id": "14123", + "ident": "7GA7", + "type": "heliport", + "name": "Tanner Medical Center Heliport", + "latitude_deg": "33.74359893798828", + "longitude_deg": "-84.87640380859375", + "elevation_ft": "1145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Villa Rica", + "scheduled_service": "no", + "gps_code": "7GA7", + "local_code": "7GA7" + }, + { + "id": "14124", + "ident": "7GA8", + "type": "heliport", + "name": "Emory University Hospital Heliport", + "latitude_deg": "33.792301177978516", + "longitude_deg": "-84.32550048828125", + "elevation_ft": "1051", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "7GA8", + "local_code": "7GA8" + }, + { + "id": "14125", + "ident": "7GA9", + "type": "small_airport", + "name": "Smisson Field", + "latitude_deg": "33.57059860229492", + "longitude_deg": "-84.89779663085938", + "elevation_ft": "1044", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Whitesburg", + "scheduled_service": "no", + "gps_code": "7GA9", + "local_code": "7GA9" + }, + { + "id": "14126", + "ident": "7GE1", + "type": "closed", + "name": "Davison Ranch Airport", + "latitude_deg": "43.658199", + "longitude_deg": "-116.750999", + "elevation_ft": "2370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Caldwell", + "scheduled_service": "no", + "keywords": "7GE1" + }, + { + "id": "14127", + "ident": "7GE5", + "type": "small_airport", + "name": "Sunset Strip", + "latitude_deg": "33.35919952392578", + "longitude_deg": "-85.11750030517578", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Centralhatchee", + "scheduled_service": "no", + "gps_code": "7GE5", + "local_code": "7GE5" + }, + { + "id": "341062", + "ident": "7GE7", + "type": "small_airport", + "name": "Brandt Field", + "latitude_deg": "33.046389", + "longitude_deg": "-84.661111", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "7GE7", + "local_code": "7GE7" + }, + { + "id": "14128", + "ident": "7I2", + "type": "small_airport", + "name": "Reese Airport", + "latitude_deg": "40.155392", + "longitude_deg": "-85.318923", + "elevation_ft": "991", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Muncie", + "scheduled_service": "no", + "gps_code": "K7I2", + "local_code": "7I2" + }, + { + "id": "14129", + "ident": "7IA1", + "type": "small_airport", + "name": "White Pigeon Airport", + "latitude_deg": "41.493499755859375", + "longitude_deg": "-92.14820098876953", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "North English", + "scheduled_service": "no", + "gps_code": "7IA1", + "local_code": "7IA1" + }, + { + "id": "14131", + "ident": "7IA3", + "type": "small_airport", + "name": "Mc Bride Field", + "latitude_deg": "42.0638999939", + "longitude_deg": "-91.6343002319", + "elevation_ft": "881", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "7IA3", + "local_code": "7IA3" + }, + { + "id": "14132", + "ident": "7IA5", + "type": "heliport", + "name": "Mercy Medical Center - Clinton Heliport", + "latitude_deg": "41.860886", + "longitude_deg": "-90.190349", + "elevation_ft": "708", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "7IA5", + "local_code": "7IA5", + "keywords": "Samaritan Hospital North Heliport" + }, + { + "id": "14133", + "ident": "7IA6", + "type": "heliport", + "name": "Jefferson County Hospital Heliport", + "latitude_deg": "41.00310134887695", + "longitude_deg": "-91.95210266113281", + "elevation_ft": "768", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "7IA6", + "local_code": "7IA6" + }, + { + "id": "14134", + "ident": "7IA7", + "type": "small_airport", + "name": "Mitchell Field", + "latitude_deg": "43.08359909057617", + "longitude_deg": "-92.30999755859375", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "New Hampton", + "scheduled_service": "no", + "gps_code": "7IA7", + "local_code": "7IA7" + }, + { + "id": "14135", + "ident": "7IA9", + "type": "heliport", + "name": "Pella Community Hospital Heliport", + "latitude_deg": "41.412498474121094", + "longitude_deg": "-92.90989685058594", + "elevation_ft": "836", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Pella", + "scheduled_service": "no", + "gps_code": "7IA9", + "local_code": "7IA9" + }, + { + "id": "43043", + "ident": "7ID7", + "type": "heliport", + "name": "Gritman Medical Center Heliport", + "latitude_deg": "46.728057861328125", + "longitude_deg": "-117.0009994506836", + "elevation_ft": "2035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "7ID7", + "local_code": "7ID7" + }, + { + "id": "14136", + "ident": "7II0", + "type": "small_airport", + "name": "Porter Field", + "latitude_deg": "39.5620002746582", + "longitude_deg": "-86.11250305175781", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "New Whiteland", + "scheduled_service": "no", + "gps_code": "7II0", + "local_code": "7II0" + }, + { + "id": "14137", + "ident": "7II1", + "type": "heliport", + "name": "Rider Private Heliport", + "latitude_deg": "39.911999", + "longitude_deg": "-86.046095", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Castleton", + "scheduled_service": "no", + "keywords": "7II1" + }, + { + "id": "14138", + "ident": "7II2", + "type": "heliport", + "name": "Franciscan Alliance Inc. Heliport", + "latitude_deg": "40.065822", + "longitude_deg": "-86.904552", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Crawfordsville", + "scheduled_service": "no", + "gps_code": "7II2", + "local_code": "7II2", + "keywords": "St Clare Medical Center" + }, + { + "id": "14139", + "ident": "7II3", + "type": "small_airport", + "name": "Schroeder Private Airport", + "latitude_deg": "38.00339889526367", + "longitude_deg": "-87.75640106201172", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "7II3", + "local_code": "7II3" + }, + { + "id": "14140", + "ident": "7II4", + "type": "closed", + "name": "WNDU Heliport", + "latitude_deg": "41.701698", + "longitude_deg": "-86.249496", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "South Bend", + "scheduled_service": "no", + "keywords": "7II4" + }, + { + "id": "14141", + "ident": "7II5", + "type": "closed", + "name": "Squaw Creek Heliport", + "latitude_deg": "38.0931", + "longitude_deg": "-87.349503", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Chandler", + "scheduled_service": "no", + "local_code": "7II5", + "keywords": "7II5" + }, + { + "id": "14142", + "ident": "7II7", + "type": "closed", + "name": "Rex's Ultralightport", + "latitude_deg": "41.297298", + "longitude_deg": "-85.483299", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Wolflake", + "scheduled_service": "no", + "keywords": "7II7" + }, + { + "id": "14143", + "ident": "7II9", + "type": "small_airport", + "name": "Thorn Field", + "latitude_deg": "39.582801818847656", + "longitude_deg": "-86.17970275878906", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bargersville", + "scheduled_service": "no", + "gps_code": "7II9", + "local_code": "7II9" + }, + { + "id": "14144", + "ident": "7IL0", + "type": "small_airport", + "name": "Mussman Airport", + "latitude_deg": "41.27090072631836", + "longitude_deg": "-87.57779693603516", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Grant Park", + "scheduled_service": "no", + "gps_code": "7IL0", + "local_code": "7IL0" + }, + { + "id": "355668", + "ident": "7IL1", + "type": "heliport", + "name": "Heading Heli Heliport", + "latitude_deg": "41.605111", + "longitude_deg": "-89.740611", + "elevation_ft": "637", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "New Bedford", + "scheduled_service": "no", + "gps_code": "7IL1", + "local_code": "7IL1" + }, + { + "id": "14145", + "ident": "7IL2", + "type": "closed", + "name": "O John Clark Restricted Landing Area", + "latitude_deg": "42.368401", + "longitude_deg": "-87.991699", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Grays Lake", + "scheduled_service": "no", + "keywords": "7IL2" + }, + { + "id": "14146", + "ident": "7IL3", + "type": "small_airport", + "name": "Lutz Restricted Landing Area", + "latitude_deg": "40.428398", + "longitude_deg": "-89.602097", + "elevation_ft": "545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Green Valley", + "scheduled_service": "no", + "gps_code": "7IL3", + "local_code": "7IL3" + }, + { + "id": "14147", + "ident": "7IL4", + "type": "heliport", + "name": "Northwest Community Hospital Heliport", + "latitude_deg": "42.067723", + "longitude_deg": "-87.993396", + "elevation_ft": "758", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Arlington Heights", + "scheduled_service": "no", + "gps_code": "7IL4", + "local_code": "7IL4" + }, + { + "id": "14148", + "ident": "7IL5", + "type": "closed", + "name": "Amboy Fire Protection District Heliport", + "latitude_deg": "41.715801", + "longitude_deg": "-89.334198", + "elevation_ft": "744", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Amboy", + "scheduled_service": "no", + "keywords": "7IL5" + }, + { + "id": "14149", + "ident": "7IL6", + "type": "closed", + "name": "Dr Joseph W Esser Airport", + "latitude_deg": "42.1306", + "longitude_deg": "-88.502899", + "elevation_ft": "979", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hampshire", + "scheduled_service": "no", + "keywords": "7IL6" + }, + { + "id": "14150", + "ident": "7IL7", + "type": "small_airport", + "name": "Edward Getzelman Airport", + "latitude_deg": "42.127336", + "longitude_deg": "-88.529991", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hampshire", + "scheduled_service": "no", + "gps_code": "7IL7", + "local_code": "7IL7" + }, + { + "id": "14151", + "ident": "7IL8", + "type": "small_airport", + "name": "Cody Port RLA Restricted Landing Area", + "latitude_deg": "41.518901825", + "longitude_deg": "-88.837600708", + "elevation_ft": "668", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Harding", + "scheduled_service": "no", + "gps_code": "7IL8", + "local_code": "7IL8" + }, + { + "id": "14152", + "ident": "7IL9", + "type": "closed", + "name": "Ambler - Cady Airport", + "latitude_deg": "41.5439", + "longitude_deg": "-88.9934", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Earlville", + "scheduled_service": "no", + "keywords": "7IL9" + }, + { + "id": "14153", + "ident": "7IN2", + "type": "small_airport", + "name": "Flying Crown Airport", + "latitude_deg": "41.501399993896484", + "longitude_deg": "-84.87830352783203", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "7IN2", + "local_code": "7IN2" + }, + { + "id": "14154", + "ident": "7IN3", + "type": "small_airport", + "name": "Garrett Field", + "latitude_deg": "38.24359893798828", + "longitude_deg": "-87.79000091552734", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Poseyville", + "scheduled_service": "no", + "gps_code": "7IN3", + "local_code": "7IN3" + }, + { + "id": "14155", + "ident": "7IN4", + "type": "heliport", + "name": "Franciscan Health Hammond Heliport", + "latitude_deg": "41.614205", + "longitude_deg": "-87.524093", + "elevation_ft": "624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hammond", + "scheduled_service": "no", + "gps_code": "7IN4", + "local_code": "7IN4", + "keywords": "St Margaret Mercy" + }, + { + "id": "14156", + "ident": "7IN5", + "type": "heliport", + "name": "La Porte Hospital Heliport", + "latitude_deg": "41.610488", + "longitude_deg": "-86.72563", + "elevation_ft": "838", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "La Porte", + "scheduled_service": "no", + "gps_code": "7IN5", + "local_code": "7IN5" + }, + { + "id": "14157", + "ident": "7IN6", + "type": "small_airport", + "name": "Myers Farm Airport", + "latitude_deg": "38.58190155029297", + "longitude_deg": "-86.25360107421875", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Livonia", + "scheduled_service": "no", + "gps_code": "7IN6", + "local_code": "7IN6" + }, + { + "id": "14158", + "ident": "7IN7", + "type": "small_airport", + "name": "Gary Johnson Field", + "latitude_deg": "40.235801696777344", + "longitude_deg": "-87.35079956054688", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "West Lebanon", + "scheduled_service": "no", + "gps_code": "7IN7", + "local_code": "7IN7" + }, + { + "id": "14159", + "ident": "7IN8", + "type": "seaplane_base", + "name": "Dewart Lake Seaplane Base", + "latitude_deg": "41.371946", + "longitude_deg": "-85.772778", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Warsaw", + "scheduled_service": "no", + "local_code": "99D", + "keywords": "7IN8" + }, + { + "id": "14160", + "ident": "7IN9", + "type": "small_airport", + "name": "The Last Resort Airport", + "latitude_deg": "40.037498474121094", + "longitude_deg": "-85.41059875488281", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Springport", + "scheduled_service": "no", + "gps_code": "7IN9", + "local_code": "7IN9" + }, + { + "id": "14161", + "ident": "7IS1", + "type": "closed", + "name": "Sills-Anderson Heliport", + "latitude_deg": "42.298599", + "longitude_deg": "-89.2425", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Winnebago", + "scheduled_service": "no", + "keywords": "7IS1" + }, + { + "id": "14162", + "ident": "7IS2", + "type": "small_airport", + "name": "Aero Estates Airport", + "latitude_deg": "38.52450180053711", + "longitude_deg": "-90.05690002441406", + "elevation_ft": "565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Belleville", + "scheduled_service": "no", + "gps_code": "7IS2", + "local_code": "7IS2" + }, + { + "id": "14163", + "ident": "7IS3", + "type": "small_airport", + "name": "Hooterville Airport", + "latitude_deg": "40.14339828491211", + "longitude_deg": "-89.091796875", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "7IS3", + "local_code": "7IS3" + }, + { + "id": "14164", + "ident": "7IS4", + "type": "heliport", + "name": "Danville Correctional Center Heliport", + "latitude_deg": "40.13169860839844", + "longitude_deg": "-87.53610229492188", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "7IS4", + "local_code": "7IS4" + }, + { + "id": "14165", + "ident": "7IS5", + "type": "small_airport", + "name": "Koppie Airport", + "latitude_deg": "42.12139892578125", + "longitude_deg": "-88.37809753417969", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Gilberts", + "scheduled_service": "no", + "gps_code": "7IS5", + "local_code": "7IS5" + }, + { + "id": "14166", + "ident": "7IS6", + "type": "heliport", + "name": "Elmhurst Memorial Hospital Heliport", + "latitude_deg": "41.912604208299996", + "longitude_deg": "-87.9378452897", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Elmhurst", + "scheduled_service": "no", + "gps_code": "7IS6", + "local_code": "7IS6" + }, + { + "id": "14167", + "ident": "7IS7", + "type": "small_airport", + "name": "Hammock Field", + "latitude_deg": "38.914077", + "longitude_deg": "-89.669809", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Leef Township", + "scheduled_service": "no", + "gps_code": "7IS7", + "local_code": "7IS7" + }, + { + "id": "14168", + "ident": "7IS8", + "type": "heliport", + "name": "Rush-Copley Medical Center Heliport", + "latitude_deg": "41.728482", + "longitude_deg": "-88.27193", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Aurora", + "scheduled_service": "no", + "gps_code": "7IS8", + "local_code": "7IS8" + }, + { + "id": "14169", + "ident": "7IS9", + "type": "small_airport", + "name": "King Airport", + "latitude_deg": "38.47639846801758", + "longitude_deg": "-90.23619842529297", + "elevation_ft": "407", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "7IS9", + "local_code": "7IS9" + }, + { + "id": "321978", + "ident": "7JY7", + "type": "heliport", + "name": "Russell Springs County Hospital Heliport", + "latitude_deg": "37.057006", + "longitude_deg": "-85.06754", + "elevation_ft": "1111", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Russell Springs", + "scheduled_service": "no", + "gps_code": "7JY7", + "local_code": "7JY7" + }, + { + "id": "14170", + "ident": "7K2", + "type": "seaplane_base", + "name": "Skagway Seaplane Base", + "latitude_deg": "59.4468994140625", + "longitude_deg": "-135.322998046875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Skagway", + "scheduled_service": "no", + "gps_code": "7K2", + "local_code": "7K2" + }, + { + "id": "14171", + "ident": "7K6", + "type": "closed", + "name": "Wilcox Field", + "latitude_deg": "37.083401", + "longitude_deg": "-97.964203", + "elevation_ft": "1263", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Anthony", + "scheduled_service": "no", + "keywords": "7K6" + }, + { + "id": "14172", + "ident": "7K7", + "type": "small_airport", + "name": "Graham Field", + "latitude_deg": "42.54029846191406", + "longitude_deg": "-96.48500061035156", + "elevation_ft": "1106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "North Sioux City", + "scheduled_service": "no", + "gps_code": "7K7", + "local_code": "7K7" + }, + { + "id": "14173", + "ident": "7KA", + "type": "small_airport", + "name": "Tatitlek Airport", + "latitude_deg": "60.871449", + "longitude_deg": "-146.690297", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tatitlek", + "scheduled_service": "yes", + "gps_code": "PAKA", + "iata_code": "TEK", + "local_code": "7KA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tatitlek_Airport" + }, + { + "id": "14174", + "ident": "7KS0", + "type": "small_airport", + "name": "Flying T Airport", + "latitude_deg": "39.271400451660156", + "longitude_deg": "-95.31690216064453", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Oskaloosa", + "scheduled_service": "no", + "gps_code": "7KS0", + "local_code": "7KS0" + }, + { + "id": "353045", + "ident": "7KS1", + "type": "heliport", + "name": "Rooks County Health Center Heliport", + "latitude_deg": "39.247744", + "longitude_deg": "-99.297533", + "elevation_ft": "2156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Plainville", + "scheduled_service": "no", + "gps_code": "7KS1", + "local_code": "7KS1" + }, + { + "id": "14175", + "ident": "7KS2", + "type": "small_airport", + "name": "Cloud Airport", + "latitude_deg": "38.85082", + "longitude_deg": "-95.467906", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Overbrook", + "scheduled_service": "no", + "gps_code": "7KS2", + "local_code": "7KS2" + }, + { + "id": "14176", + "ident": "7KS3", + "type": "small_airport", + "name": "Youvan Airport", + "latitude_deg": "37.52920150756836", + "longitude_deg": "-94.69609832763672", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Arma", + "scheduled_service": "no", + "gps_code": "7KS3", + "local_code": "7KS3" + }, + { + "id": "14177", + "ident": "7KS4", + "type": "small_airport", + "name": "Bent Nail Ranch Airport", + "latitude_deg": "39.6333007812", + "longitude_deg": "-95.439201355", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Horton", + "scheduled_service": "no", + "gps_code": "7KS4", + "local_code": "7KS4" + }, + { + "id": "14178", + "ident": "7KS5", + "type": "closed", + "name": "Croisant Airport", + "latitude_deg": "37.7962", + "longitude_deg": "-95.341904", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Humboldt", + "scheduled_service": "no", + "keywords": "7KS5" + }, + { + "id": "14179", + "ident": "7KS6", + "type": "small_airport", + "name": "Linders Cow-Chip Airport", + "latitude_deg": "38.626399993896484", + "longitude_deg": "-94.76940155029297", + "elevation_ft": "985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Louisburg", + "scheduled_service": "no", + "gps_code": "7KS6", + "local_code": "7KS6" + }, + { + "id": "14180", + "ident": "7KS7", + "type": "closed", + "name": "Evans Airport", + "latitude_deg": "38.958302", + "longitude_deg": "-100.800003", + "elevation_ft": "2950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Oakley", + "scheduled_service": "no", + "keywords": "7KS7" + }, + { + "id": "14181", + "ident": "7KS8", + "type": "small_airport", + "name": "Shaw Aerial Spraying Airport", + "latitude_deg": "39.8306007385", + "longitude_deg": "-100.581001282", + "elevation_ft": "2700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Oberlin", + "scheduled_service": "no", + "gps_code": "7KS8", + "local_code": "7KS8" + }, + { + "id": "14182", + "ident": "7KS9", + "type": "small_airport", + "name": "Eagle Field", + "latitude_deg": "37.848899841308594", + "longitude_deg": "-97.51000213623047", + "elevation_ft": "1379", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Bentley", + "scheduled_service": "no", + "gps_code": "7KS9", + "local_code": "7KS9" + }, + { + "id": "345682", + "ident": "7KY1", + "type": "heliport", + "name": "Nicholas County Hospital Heliport", + "latitude_deg": "38.316108", + "longitude_deg": "-84.060109", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Carlisle", + "scheduled_service": "no", + "gps_code": "7KY1", + "local_code": "7KY1" + }, + { + "id": "14183", + "ident": "7KY2", + "type": "small_airport", + "name": "Ryan Field", + "latitude_deg": "38.802661", + "longitude_deg": "-84.661861", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Verona", + "scheduled_service": "no", + "gps_code": "7KY2", + "local_code": "7KY2" + }, + { + "id": "14184", + "ident": "7KY3", + "type": "small_airport", + "name": "Little Mount International Airport", + "latitude_deg": "38.07609939575195", + "longitude_deg": "-85.23670196533203", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Tarylorsville", + "scheduled_service": "no", + "gps_code": "7KY3", + "local_code": "7KY3" + }, + { + "id": "347533", + "ident": "7KY6", + "type": "heliport", + "name": "Grider Hilldock - Dillon Helipad", + "latitude_deg": "36.828549", + "longitude_deg": "-85.122988", + "elevation_ft": "731", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "7KY6", + "local_code": "7KY6" + }, + { + "id": "346549", + "ident": "7KY8", + "type": "heliport", + "name": "TJ Samson Hospital Heliport", + "latitude_deg": "37.011784", + "longitude_deg": "-85.904846", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Glasgow", + "scheduled_service": "no", + "gps_code": "7KY8", + "local_code": "7KY8" + }, + { + "id": "14185", + "ident": "7L1", + "type": "heliport", + "name": "Carson Sheriff Station Heliport", + "latitude_deg": "33.83420181274414", + "longitude_deg": "-118.26200103759766", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Carson", + "scheduled_service": "no", + "gps_code": "7L1", + "local_code": "7L1" + }, + { + "id": "14186", + "ident": "7L5", + "type": "heliport", + "name": "L A County Sheriff's Department Heliport", + "latitude_deg": "34.00419998168945", + "longitude_deg": "-117.93699645996094", + "elevation_ft": "327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "City of Industry", + "scheduled_service": "no", + "gps_code": "7L5", + "local_code": "7L5" + }, + { + "id": "14187", + "ident": "7L9", + "type": "heliport", + "name": "Pete Antie Municipal Heliport", + "latitude_deg": "30.694299697875977", + "longitude_deg": "-91.74639892578125", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Melville", + "scheduled_service": "no", + "gps_code": "7L9", + "local_code": "7L9" + }, + { + "id": "14188", + "ident": "7LA0", + "type": "small_airport", + "name": "Valverda Strip", + "latitude_deg": "30.522159", + "longitude_deg": "-91.530855", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Maringouin", + "scheduled_service": "no", + "gps_code": "7LA0", + "local_code": "7LA0" + }, + { + "id": "14189", + "ident": "7LA1", + "type": "small_airport", + "name": "Birdwin Airport", + "latitude_deg": "29.45829963684082", + "longitude_deg": "-89.6759033203125", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Port Sulphur", + "scheduled_service": "no", + "gps_code": "7LA1", + "local_code": "7LA1" + }, + { + "id": "14190", + "ident": "7LA2", + "type": "heliport", + "name": "Ochsner St Anne General Hospital Heliport", + "latitude_deg": "29.703216", + "longitude_deg": "-90.564659", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Raceland", + "scheduled_service": "no", + "gps_code": "7LA2", + "local_code": "7LA2" + }, + { + "id": "14191", + "ident": "7LA3", + "type": "small_airport", + "name": "Habetz Airport", + "latitude_deg": "30.482999801635742", + "longitude_deg": "-93.22879791259766", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Ragley", + "scheduled_service": "no", + "gps_code": "7LA3", + "local_code": "7LA3" + }, + { + "id": "14192", + "ident": "7LA4", + "type": "small_airport", + "name": "Gladney Airport", + "latitude_deg": "30.125200271606445", + "longitude_deg": "-92.21959686279297", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Rayne", + "scheduled_service": "no", + "gps_code": "7LA4", + "local_code": "7LA4" + }, + { + "id": "14193", + "ident": "7LA5", + "type": "heliport", + "name": "Petroleum Helicopters Cameron Heliport", + "latitude_deg": "29.777995", + "longitude_deg": "-93.299847", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cameron", + "scheduled_service": "no", + "gps_code": "7LA5", + "local_code": "7LA5" + }, + { + "id": "14194", + "ident": "7LA6", + "type": "heliport", + "name": "Southern Natural Gas County Heliport", + "latitude_deg": "29.865126", + "longitude_deg": "-89.829304", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "St Bernard", + "scheduled_service": "no", + "gps_code": "7LA6", + "local_code": "7LA6" + }, + { + "id": "14195", + "ident": "7LA7", + "type": "seaplane_base", + "name": "Romere Pass Seaplane Base", + "latitude_deg": "29.27630043029785", + "longitude_deg": "-89.24199676513672", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no", + "gps_code": "7LA7", + "local_code": "7LA7" + }, + { + "id": "14196", + "ident": "7LA8", + "type": "heliport", + "name": "Natchitoches Regional Medical Center Heliport", + "latitude_deg": "31.752241", + "longitude_deg": "-93.077885", + "elevation_ft": "116", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Natchitoches", + "scheduled_service": "no", + "gps_code": "7LA8", + "local_code": "7LA8", + "keywords": "Natchitoches Parish Hospital Heliport" + }, + { + "id": "351178", + "ident": "7LA9", + "type": "small_airport", + "name": "Chute N Gators Airport", + "latitude_deg": "29.999507", + "longitude_deg": "-93.138592", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bell City", + "scheduled_service": "no", + "gps_code": "7LA9", + "local_code": "7LA9" + }, + { + "id": "14198", + "ident": "7LL1", + "type": "heliport", + "name": "Vista Medical Center West Heliport", + "latitude_deg": "42.35779953", + "longitude_deg": "-87.8656005859", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Waukegan", + "scheduled_service": "no", + "gps_code": "7LL1", + "local_code": "7LL1" + }, + { + "id": "14199", + "ident": "7LL2", + "type": "heliport", + "name": "Vista Medical Center-East Heliport", + "latitude_deg": "42.37860107421875", + "longitude_deg": "-87.83260345458984", + "elevation_ft": "624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Waukegan", + "scheduled_service": "no", + "gps_code": "7LL2", + "local_code": "7LL2" + }, + { + "id": "14200", + "ident": "7LL3", + "type": "small_airport", + "name": "Jasper County Flying Club Airport", + "latitude_deg": "38.93170166015625", + "longitude_deg": "-88.15699768066406", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Newton", + "scheduled_service": "no", + "gps_code": "7LL3", + "local_code": "7LL3" + }, + { + "id": "14201", + "ident": "7LL4", + "type": "small_airport", + "name": "Bakers Strip", + "latitude_deg": "40.1172981262207", + "longitude_deg": "-88.75900268554688", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Weldon", + "scheduled_service": "no", + "gps_code": "7LL4", + "local_code": "7LL4" + }, + { + "id": "14202", + "ident": "7LL6", + "type": "small_airport", + "name": "Gehant Airport", + "latitude_deg": "41.6974983215332", + "longitude_deg": "-89.14430236816406", + "elevation_ft": "952", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "West Brooklyn", + "scheduled_service": "no", + "gps_code": "7LL6", + "local_code": "7LL6" + }, + { + "id": "14203", + "ident": "7LL7", + "type": "small_airport", + "name": "Delhotal Airport", + "latitude_deg": "41.73682", + "longitude_deg": "-89.175941", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "West Brooklyn", + "scheduled_service": "no", + "gps_code": "7LL7", + "local_code": "7LL7" + }, + { + "id": "14204", + "ident": "7LL8", + "type": "closed", + "name": "Dahler Airport", + "latitude_deg": "39.352501", + "longitude_deg": "-89.300903", + "elevation_ft": "659", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Nokomis", + "scheduled_service": "no", + "keywords": "7LL8`" + }, + { + "id": "14205", + "ident": "7LL9", + "type": "small_airport", + "name": "Brammeier Airport", + "latitude_deg": "38.26169967651367", + "longitude_deg": "-89.47090148925781", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Oakdale", + "scheduled_service": "no", + "gps_code": "7LL9", + "local_code": "7LL9" + }, + { + "id": "14206", + "ident": "7LS1", + "type": "closed", + "name": "Phi Venice Heliport", + "latitude_deg": "29.266899", + "longitude_deg": "-89.341698", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no", + "keywords": "7LS1" + }, + { + "id": "14207", + "ident": "7LS3", + "type": "heliport", + "name": "Lake Palourde Base Heliport", + "latitude_deg": "29.694289", + "longitude_deg": "-91.099798", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Amelia", + "scheduled_service": "no", + "gps_code": "7LS3", + "local_code": "7LS3" + }, + { + "id": "14208", + "ident": "7LS4", + "type": "heliport", + "name": "Petroleum Helicopters-Intracoastal City Heliport", + "latitude_deg": "29.794064", + "longitude_deg": "-92.146121", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Intracoastal City", + "scheduled_service": "no", + "gps_code": "7LS4", + "local_code": "7LS4" + }, + { + "id": "14209", + "ident": "7LS6", + "type": "heliport", + "name": "Avondale Heliport", + "latitude_deg": "29.924400329589844", + "longitude_deg": "-90.18920135498047", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no", + "gps_code": "7LS6", + "local_code": "7LS6" + }, + { + "id": "14210", + "ident": "7M0", + "type": "small_airport", + "name": "Mc Crory/Morton Airport", + "latitude_deg": "35.227901", + "longitude_deg": "-91.093201", + "elevation_ft": "222", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Mc Crory", + "scheduled_service": "no", + "gps_code": "2AR4", + "local_code": "2AR4", + "keywords": "7M0" + }, + { + "id": "14211", + "ident": "7M6", + "type": "small_airport", + "name": "Paris Municipal Airport", + "latitude_deg": "35.299", + "longitude_deg": "-93.681702", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Paris", + "scheduled_service": "no", + "local_code": "7M6" + }, + { + "id": "14212", + "ident": "7M7", + "type": "small_airport", + "name": "Piggott Municipal Airport", + "latitude_deg": "36.37820053100586", + "longitude_deg": "-90.16619873046875", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Piggott", + "scheduled_service": "no", + "gps_code": "7M7", + "local_code": "7M7" + }, + { + "id": "14213", + "ident": "7MA0", + "type": "heliport", + "name": "Digital (Boxboro) Heliport", + "latitude_deg": "42.49869918823242", + "longitude_deg": "-71.47760009765625", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Boxborough", + "scheduled_service": "no", + "gps_code": "7MA0", + "local_code": "7MA0" + }, + { + "id": "14214", + "ident": "7MA1", + "type": "heliport", + "name": "Digital (Box 2) Heliport", + "latitude_deg": "42.49340057373047", + "longitude_deg": "-71.543701171875", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Boxborough", + "scheduled_service": "no", + "gps_code": "7MA1", + "local_code": "7MA1" + }, + { + "id": "45469", + "ident": "7MA2", + "type": "seaplane_base", + "name": "Craig Cove Seaplane Base", + "latitude_deg": "41.780556", + "longitude_deg": "-70.947222", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "East Freetown", + "scheduled_service": "no", + "gps_code": "7MA2", + "local_code": "7MA2" + }, + { + "id": "14215", + "ident": "7MD0", + "type": "small_airport", + "name": "Our Domain Airport", + "latitude_deg": "39.06669998168945", + "longitude_deg": "-75.7332992553711", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Marydel", + "scheduled_service": "no", + "gps_code": "7MD0", + "local_code": "7MD0" + }, + { + "id": "14216", + "ident": "7MD1", + "type": "small_airport", + "name": "Magennis Farm Airport", + "latitude_deg": "38.703399658203125", + "longitude_deg": "-75.85099792480469", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Federalsburg", + "scheduled_service": "no", + "gps_code": "7MD1", + "local_code": "7MD1" + }, + { + "id": "14217", + "ident": "7MD2", + "type": "heliport", + "name": "Nat'l Emergency Training Ctr Heliport", + "latitude_deg": "39.6850013733", + "longitude_deg": "-77.3182983398", + "elevation_ft": "416", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Emmitsburg", + "scheduled_service": "no", + "gps_code": "7MD2", + "local_code": "7MD2" + }, + { + "id": "14218", + "ident": "7MD3", + "type": "heliport", + "name": "Frederick Memorial Hospital Heliport", + "latitude_deg": "39.42169952392578", + "longitude_deg": "-77.41419982910156", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Frederick", + "scheduled_service": "no", + "gps_code": "7MD3", + "local_code": "7MD3" + }, + { + "id": "14219", + "ident": "7MD4", + "type": "heliport", + "name": "Allegheny Power-Hagerstown Corp Ctr Heliport", + "latitude_deg": "39.5992012024", + "longitude_deg": "-77.7639007568", + "elevation_ft": "578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Hagerstown", + "scheduled_service": "no", + "gps_code": "7MD4", + "local_code": "7MD4" + }, + { + "id": "14220", + "ident": "7MD5", + "type": "heliport", + "name": "St. Mary's Hospital Heliport", + "latitude_deg": "38.30009841918945", + "longitude_deg": "-76.63719940185547", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Leonardtown", + "scheduled_service": "no", + "gps_code": "7MD5", + "local_code": "7MD5" + }, + { + "id": "14221", + "ident": "7MD6", + "type": "heliport", + "name": "65th Street Heliport", + "latitude_deg": "38.38930130004883", + "longitude_deg": "-75.07209777832031", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Ocean City", + "scheduled_service": "no", + "gps_code": "7MD6", + "local_code": "7MD6" + }, + { + "id": "14222", + "ident": "7MD7", + "type": "small_airport", + "name": "Boomers Field", + "latitude_deg": "38.00040054321289", + "longitude_deg": "-75.58300018310547", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Pocomoke", + "scheduled_service": "no", + "gps_code": "7MD7", + "local_code": "7MD7" + }, + { + "id": "14223", + "ident": "7MD8", + "type": "small_airport", + "name": "Kent Fort Manor Airport", + "latitude_deg": "38.85649871826172", + "longitude_deg": "-76.36160278320312", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Stevensville", + "scheduled_service": "no", + "gps_code": "7MD8", + "local_code": "7MD8" + }, + { + "id": "14224", + "ident": "7MD9", + "type": "small_airport", + "name": "Tilghman Whipp Airport", + "latitude_deg": "38.73609924316406", + "longitude_deg": "-76.31670379638672", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Tilghman", + "scheduled_service": "no", + "gps_code": "7MD9", + "local_code": "7MD9" + }, + { + "id": "14225", + "ident": "7MI0", + "type": "heliport", + "name": "Kamikaze Run Heliport", + "latitude_deg": "42.51390075683594", + "longitude_deg": "-83.4894027709961", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Novi", + "scheduled_service": "no", + "gps_code": "7MI0", + "local_code": "7MI0" + }, + { + "id": "14226", + "ident": "7MI1", + "type": "heliport", + "name": "Mc Phail Heliport", + "latitude_deg": "42.572175", + "longitude_deg": "-83.395066", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Orchard Lake", + "scheduled_service": "no", + "gps_code": "7MI1", + "local_code": "7MI1" + }, + { + "id": "14227", + "ident": "7MI2", + "type": "closed", + "name": "Beckman Airport", + "latitude_deg": "42.277802", + "longitude_deg": "-85.890297", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Paw Paw", + "scheduled_service": "no", + "keywords": "7MI2" + }, + { + "id": "14228", + "ident": "7MI3", + "type": "small_airport", + "name": "Thrall Lake Airport", + "latitude_deg": "42.118428", + "longitude_deg": "-85.510166", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Vicksburg", + "scheduled_service": "no", + "gps_code": "7MI3", + "local_code": "7MI3" + }, + { + "id": "14229", + "ident": "7MI4", + "type": "closed", + "name": "Ludington Airport", + "latitude_deg": "43.922199", + "longitude_deg": "-82.748595", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Port Hope", + "scheduled_service": "no", + "keywords": "7MI4" + }, + { + "id": "14230", + "ident": "7MI5", + "type": "small_airport", + "name": "Lada Airport", + "latitude_deg": "41.89038", + "longitude_deg": "-83.673023", + "elevation_ft": "678", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Petersburg", + "scheduled_service": "no", + "gps_code": "7MI5", + "local_code": "7MI5" + }, + { + "id": "14231", + "ident": "7MI6", + "type": "small_airport", + "name": "Wightman Airport", + "latitude_deg": "43.11029815673828", + "longitude_deg": "-84.12640380859375", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Oakley", + "scheduled_service": "no", + "gps_code": "7MI6", + "local_code": "7MI6" + }, + { + "id": "14232", + "ident": "7MI7", + "type": "small_airport", + "name": "Walker Airport", + "latitude_deg": "42.38059997558594", + "longitude_deg": "-85.57749938964844", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Cooper", + "scheduled_service": "no", + "gps_code": "7MI7", + "local_code": "7MI7" + }, + { + "id": "14233", + "ident": "7MI8", + "type": "small_airport", + "name": "Letts Field", + "latitude_deg": "43.33919906616211", + "longitude_deg": "-83.4760971069336", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Vassar", + "scheduled_service": "no", + "gps_code": "7MI8", + "local_code": "7MI8" + }, + { + "id": "14234", + "ident": "7MI9", + "type": "closed", + "name": "A T I Heliport", + "latitude_deg": "42.220901", + "longitude_deg": "-83.476601", + "elevation_ft": "716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Belleville", + "scheduled_service": "no", + "keywords": "7MI9" + }, + { + "id": "14235", + "ident": "7MN0", + "type": "small_airport", + "name": "Johnson Private Airport", + "latitude_deg": "44.79999923706055", + "longitude_deg": "-95.39530181884766", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Sacred Heart", + "scheduled_service": "no", + "gps_code": "7MN0", + "local_code": "7MN0" + }, + { + "id": "14236", + "ident": "7MN1", + "type": "heliport", + "name": "Regions Hospital Heliport", + "latitude_deg": "44.954778", + "longitude_deg": "-93.093953", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "St Paul", + "scheduled_service": "no", + "gps_code": "7MN1", + "local_code": "7MN1" + }, + { + "id": "14237", + "ident": "7MN2", + "type": "seaplane_base", + "name": "Eagles Nest Seaplane Base", + "latitude_deg": "47.82849884033203", + "longitude_deg": "-92.09970092773438", + "elevation_ft": "1490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Tower", + "scheduled_service": "no", + "gps_code": "7MN2", + "local_code": "7MN2" + }, + { + "id": "14238", + "ident": "7MN3", + "type": "small_airport", + "name": "Caldbeck Field", + "latitude_deg": "43.7052001953125", + "longitude_deg": "-92.46070098876953", + "elevation_ft": "1340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Spring Valley", + "scheduled_service": "no", + "gps_code": "7MN3", + "local_code": "7MN3" + }, + { + "id": "14239", + "ident": "7MN4", + "type": "small_airport", + "name": "Mille Lacs Lake Resort Airport", + "latitude_deg": "46.319400787353516", + "longitude_deg": "-93.83080291748047", + "elevation_ft": "1261", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Garrison", + "scheduled_service": "no", + "gps_code": "7MN4", + "local_code": "7MN4" + }, + { + "id": "14240", + "ident": "7MN5", + "type": "closed", + "name": "White Bear Lake Seaplane Base", + "latitude_deg": "45.091599", + "longitude_deg": "-92.9991", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "White Bear Lake", + "scheduled_service": "no", + "local_code": "7MN5", + "keywords": "7MN5" + }, + { + "id": "14241", + "ident": "7MN6", + "type": "small_airport", + "name": "Johnson Airport", + "latitude_deg": "48.34280014038086", + "longitude_deg": "-96.88089752197266", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Argyle", + "scheduled_service": "no", + "gps_code": "7MN6", + "local_code": "7MN6" + }, + { + "id": "14242", + "ident": "7MN7", + "type": "heliport", + "name": "Bridges Medical Center Hospital Heliport", + "latitude_deg": "47.298301696777344", + "longitude_deg": "-96.5302963256836", + "elevation_ft": "878", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Ada", + "scheduled_service": "no", + "gps_code": "7MN7", + "local_code": "7MN7" + }, + { + "id": "14243", + "ident": "7MN8", + "type": "small_airport", + "name": "Willis Airport", + "latitude_deg": "48.06999969482422", + "longitude_deg": "-96.27890014648438", + "elevation_ft": "1135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Thief River Falls", + "scheduled_service": "no", + "gps_code": "7MN8", + "local_code": "7MN8" + }, + { + "id": "14244", + "ident": "7MN9", + "type": "closed", + "name": "Mandarin Yen So Heliport", + "latitude_deg": "44.856899", + "longitude_deg": "-93.309899", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Bloomington", + "scheduled_service": "no", + "keywords": "7MN9" + }, + { + "id": "14245", + "ident": "7MO", + "type": "small_airport", + "name": "Princeton-Kauffman Memorial Airport", + "latitude_deg": "40.420799255371094", + "longitude_deg": "-93.59880065917969", + "elevation_ft": "858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "7MO", + "local_code": "7MO" + }, + { + "id": "14246", + "ident": "7MO0", + "type": "heliport", + "name": "Truman Medical Center East Heliport", + "latitude_deg": "38.974998474121094", + "longitude_deg": "-94.39469909667969", + "elevation_ft": "983", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kansas City", + "scheduled_service": "no", + "gps_code": "7MO0", + "local_code": "7MO0" + }, + { + "id": "14247", + "ident": "7MO1", + "type": "small_airport", + "name": "Wood Acres Airport", + "latitude_deg": "39.473129", + "longitude_deg": "-91.709034", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Perry", + "scheduled_service": "no", + "gps_code": "7MO1", + "local_code": "7MO1" + }, + { + "id": "14248", + "ident": "7MO2", + "type": "small_airport", + "name": "Bevill Airport", + "latitude_deg": "39.849998474121094", + "longitude_deg": "-91.7334976196289", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "7MO2", + "local_code": "7MO2" + }, + { + "id": "14249", + "ident": "7MO3", + "type": "small_airport", + "name": "B S Ranch Airport", + "latitude_deg": "36.599405", + "longitude_deg": "-94.366297", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Pineville", + "scheduled_service": "no", + "gps_code": "7MO3", + "local_code": "7MO3" + }, + { + "id": "14250", + "ident": "7MO4", + "type": "small_airport", + "name": "Flintlock Field", + "latitude_deg": "39.43190002441406", + "longitude_deg": "-94.8030014038086", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Platte City", + "scheduled_service": "no", + "gps_code": "7MO4", + "local_code": "7MO4" + }, + { + "id": "14251", + "ident": "7MO5", + "type": "small_airport", + "name": "Elton Field", + "latitude_deg": "39.33470153808594", + "longitude_deg": "-94.81269836425781", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Platte City", + "scheduled_service": "no", + "gps_code": "7MO5", + "local_code": "7MO5" + }, + { + "id": "14252", + "ident": "7MO6", + "type": "closed", + "name": "Mac's Field", + "latitude_deg": "39.483299", + "longitude_deg": "-94.466904", + "elevation_ft": "1015", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Plattsburg", + "scheduled_service": "no", + "keywords": "7MO6" + }, + { + "id": "14253", + "ident": "7MO7", + "type": "closed", + "name": "Kimray Airport", + "latitude_deg": "39.5667", + "longitude_deg": "-94.414703", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Plattsburg", + "scheduled_service": "no", + "keywords": "7MO7" + }, + { + "id": "14254", + "ident": "7MO8", + "type": "closed", + "name": "Clark Airport", + "latitude_deg": "39.529202", + "longitude_deg": "-94.450203", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Plattsburg", + "scheduled_service": "no", + "keywords": "7MO8" + }, + { + "id": "14255", + "ident": "7MS1", + "type": "small_airport", + "name": "Eagle Crest Estates Airport", + "latitude_deg": "32.60689926147461", + "longitude_deg": "-89.9832992553711", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Canton", + "scheduled_service": "no", + "gps_code": "7MS1", + "local_code": "7MS1" + }, + { + "id": "324880", + "ident": "7MS3", + "type": "small_airport", + "name": "Maidment Field", + "latitude_deg": "34.710888", + "longitude_deg": "-89.719194", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Byhalia", + "scheduled_service": "no", + "gps_code": "7MS3", + "local_code": "7MS3" + }, + { + "id": "346028", + "ident": "7MS4", + "type": "small_airport", + "name": "Cloud 9 Airport", + "latitude_deg": "32.602777", + "longitude_deg": "-90.192781", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Canton", + "scheduled_service": "no", + "gps_code": "7MS4", + "local_code": "7MS4" + }, + { + "id": "345691", + "ident": "7MS7", + "type": "small_airport", + "name": "Freebird Airport", + "latitude_deg": "32.37409", + "longitude_deg": "-90.437061", + "elevation_ft": "242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Bolton", + "scheduled_service": "no", + "gps_code": "7MS7", + "local_code": "7MS7" + }, + { + "id": "347886", + "ident": "7MT5", + "type": "heliport", + "name": "Kyle Heliport", + "latitude_deg": "46.080271", + "longitude_deg": "-114.178644", + "elevation_ft": "3860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Darby", + "scheduled_service": "no", + "gps_code": "7MT5", + "local_code": "7MT5" + }, + { + "id": "45966", + "ident": "7MY9", + "type": "small_airport", + "name": "Petes Airport", + "latitude_deg": "43.746717", + "longitude_deg": "-92.7245", + "elevation_ft": "1337", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Dexter", + "scheduled_service": "no", + "gps_code": "7MY9", + "local_code": "7MY9" + }, + { + "id": "14256", + "ident": "7N0", + "type": "heliport", + "name": "New Orleans Downtown Heliport", + "latitude_deg": "29.952649", + "longitude_deg": "-90.08256", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no", + "gps_code": "K7N0", + "local_code": "7N0", + "keywords": "Superdome" + }, + { + "id": "14257", + "ident": "7N2", + "type": "closed", + "name": "Peekskill Seaplane Base", + "latitude_deg": "41.245899", + "longitude_deg": "-73.962097", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Peekskill", + "scheduled_service": "no", + "keywords": "7N2" + }, + { + "id": "14258", + "ident": "7N3", + "type": "seaplane_base", + "name": "Sands Point Seaplane Base", + "latitude_deg": "40.83760070800781", + "longitude_deg": "-73.71620178222656", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Port Washington", + "scheduled_service": "no", + "gps_code": "7N3", + "local_code": "7N3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sands_Point_Seaplane_Base" + }, + { + "id": "14259", + "ident": "7N4", + "type": "small_airport", + "name": "Honey Acres Airport", + "latitude_deg": "42.07780075073242", + "longitude_deg": "-83.98609924316406", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "7N4", + "local_code": "7N4" + }, + { + "id": "14260", + "ident": "7N6", + "type": "small_airport", + "name": "Grenora Centennial Airport", + "latitude_deg": "48.6255989074707", + "longitude_deg": "-103.93000030517578", + "elevation_ft": "2145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Grenora", + "scheduled_service": "no", + "gps_code": "7N6", + "local_code": "7N6" + }, + { + "id": "14261", + "ident": "7N7", + "type": "small_airport", + "name": "Spitfire Aerodrome", + "latitude_deg": "39.735599517822266", + "longitude_deg": "-75.39769744873047", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Pedricktown", + "scheduled_service": "no", + "gps_code": "7N7", + "local_code": "7N7" + }, + { + "id": "14262", + "ident": "7N8", + "type": "small_airport", + "name": "Butter Valley Golf Port Airport", + "latitude_deg": "40.39820098876953", + "longitude_deg": "-75.56430053710938", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bally", + "scheduled_service": "no", + "gps_code": "7N8", + "local_code": "7N8" + }, + { + "id": "14263", + "ident": "7NA0", + "type": "small_airport", + "name": "Downs Farm Private Airport", + "latitude_deg": "47.35749816894531", + "longitude_deg": "-97.0280990600586", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "7NA0", + "local_code": "7NA0" + }, + { + "id": "14264", + "ident": "7NA2", + "type": "small_airport", + "name": "Undlin Airstrip", + "latitude_deg": "48.687801361083984", + "longitude_deg": "-101.3499984741211", + "elevation_ft": "1575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Lansford", + "scheduled_service": "no", + "gps_code": "7NA2", + "local_code": "7NA2" + }, + { + "id": "14265", + "ident": "7NA3", + "type": "closed", + "name": "Hiam Private Airport", + "latitude_deg": "46.349998", + "longitude_deg": "-97.694298", + "elevation_ft": "1251", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Lisbon", + "scheduled_service": "no", + "keywords": "7NA3" + }, + { + "id": "14266", + "ident": "7NA4", + "type": "small_airport", + "name": "Ingebretson Airspray Airport", + "latitude_deg": "47.5172004699707", + "longitude_deg": "-97.33370208740234", + "elevation_ft": "982", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Mayville", + "scheduled_service": "no", + "gps_code": "7NA4", + "local_code": "7NA4" + }, + { + "id": "14267", + "ident": "7NA9", + "type": "small_airport", + "name": "Sjule Private Airstrip", + "latitude_deg": "48.92829895019531", + "longitude_deg": "-100.5780029296875", + "elevation_ft": "1680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Souris", + "scheduled_service": "no", + "gps_code": "7NA9", + "local_code": "7NA9" + }, + { + "id": "14268", + "ident": "7NC0", + "type": "closed", + "name": "Pamlico Airport", + "latitude_deg": "35.158501", + "longitude_deg": "-76.762703", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Bayboro", + "scheduled_service": "no", + "keywords": "7NC0" + }, + { + "id": "14269", + "ident": "7NC1", + "type": "small_airport", + "name": "Stag Air Park", + "latitude_deg": "34.52790069580078", + "longitude_deg": "-77.85030364990234", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Burgaw", + "scheduled_service": "no", + "gps_code": "7NC1", + "local_code": "7NC1" + }, + { + "id": "14270", + "ident": "7NC2", + "type": "small_airport", + "name": "Pine Island Airport", + "latitude_deg": "36.2535018921", + "longitude_deg": "-75.7884979248", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Corolla", + "scheduled_service": "no", + "gps_code": "7NC2", + "iata_code": "DUF", + "local_code": "7NC2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pine_Island_Airport" + }, + { + "id": "45681", + "ident": "7NC3", + "type": "small_airport", + "name": "Kenly Airport", + "latitude_deg": "35.596389", + "longitude_deg": "-78.098611", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Kenly", + "scheduled_service": "no", + "gps_code": "7NC3", + "local_code": "7NC3" + }, + { + "id": "14271", + "ident": "7NC4", + "type": "heliport", + "name": "Catawba Valley Medical Center Heliport", + "latitude_deg": "35.7130279541", + "longitude_deg": "-81.266746521", + "elevation_ft": "1002", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hickory", + "scheduled_service": "no", + "gps_code": "7NC4", + "local_code": "7NC4" + }, + { + "id": "14272", + "ident": "7NC5", + "type": "small_airport", + "name": "Crooked Creek Airport", + "latitude_deg": "35.933799743652344", + "longitude_deg": "-78.24669647216797", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Bunn", + "scheduled_service": "no", + "gps_code": "7NC5", + "local_code": "7NC5" + }, + { + "id": "14273", + "ident": "7NC6", + "type": "small_airport", + "name": "Kimrey Airport", + "latitude_deg": "36.05540084838867", + "longitude_deg": "-79.32669830322266", + "elevation_ft": "624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Mebane", + "scheduled_service": "no", + "gps_code": "7NC6", + "local_code": "7NC6" + }, + { + "id": "14274", + "ident": "7NC7", + "type": "small_airport", + "name": "Lewis Airstrip", + "latitude_deg": "36.37983", + "longitude_deg": "-80.17412", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Walnut Cove", + "scheduled_service": "no", + "gps_code": "7NC7", + "local_code": "7NC7" + }, + { + "id": "14275", + "ident": "7NC8", + "type": "small_airport", + "name": "Fish Airpark", + "latitude_deg": "35.5349006652832", + "longitude_deg": "-78.69640350341797", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Angier", + "scheduled_service": "no", + "gps_code": "7NC8", + "local_code": "7NC8" + }, + { + "id": "14276", + "ident": "7NC9", + "type": "small_airport", + "name": "Spencer Field", + "latitude_deg": "35.72740173339844", + "longitude_deg": "-79.91110229492188", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Asheboro", + "scheduled_service": "no", + "gps_code": "7NC9", + "local_code": "7NC9" + }, + { + "id": "14277", + "ident": "7ND1", + "type": "small_airport", + "name": "Wolberg's Private Airport", + "latitude_deg": "47.03609848022461", + "longitude_deg": "-102.77799987792969", + "elevation_ft": "2540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Dickinson", + "scheduled_service": "no", + "gps_code": "7ND1", + "local_code": "7ND1" + }, + { + "id": "14278", + "ident": "7ND2", + "type": "closed", + "name": "Kelly's Field", + "latitude_deg": "48.372796", + "longitude_deg": "-97.320099", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Grafton", + "scheduled_service": "no", + "keywords": "7ND2" + }, + { + "id": "14279", + "ident": "7ND5", + "type": "small_airport", + "name": "Buchmiller Airport", + "latitude_deg": "47.35969924926758", + "longitude_deg": "-99.62259674072266", + "elevation_ft": "1850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Bowdon", + "scheduled_service": "no", + "gps_code": "7ND5", + "local_code": "7ND5" + }, + { + "id": "14280", + "ident": "7ND7", + "type": "closed", + "name": "Haugen's Airport", + "latitude_deg": "47.682499", + "longitude_deg": "-103.727997", + "elevation_ft": "2330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Alexander", + "scheduled_service": "no", + "keywords": "7ND7" + }, + { + "id": "14281", + "ident": "7ND8", + "type": "small_airport", + "name": "Forest Airport", + "latitude_deg": "48.85219955444336", + "longitude_deg": "-98.74819946289062", + "elevation_ft": "1570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Langdon", + "scheduled_service": "no", + "gps_code": "7ND8", + "local_code": "7ND8" + }, + { + "id": "14282", + "ident": "7NE2", + "type": "closed", + "name": "Plainsview Ranch Airport", + "latitude_deg": "42.27472", + "longitude_deg": "-103.53177", + "elevation_ft": "4650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hemingford", + "scheduled_service": "no", + "keywords": "7NE2" + }, + { + "id": "14283", + "ident": "7NE5", + "type": "small_airport", + "name": "Lierley Farms Airport", + "latitude_deg": "41.06669998168945", + "longitude_deg": "-101.36799621582031", + "elevation_ft": "3220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Paxton", + "scheduled_service": "no", + "gps_code": "7NE5", + "local_code": "7NE5" + }, + { + "id": "14284", + "ident": "7NE6", + "type": "small_airport", + "name": "Merchant Homestead Airport", + "latitude_deg": "41.01110076904297", + "longitude_deg": "-97.8114013671875", + "elevation_ft": "1700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Polk", + "scheduled_service": "no", + "gps_code": "7NE6", + "local_code": "7NE6" + }, + { + "id": "345006", + "ident": "7NE8", + "type": "small_airport", + "name": "NE Hitchcock Airport", + "latitude_deg": "40.327906", + "longitude_deg": "-100.790951", + "elevation_ft": "2805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Culbertson", + "scheduled_service": "no", + "gps_code": "7NE8", + "local_code": "7NE8" + }, + { + "id": "14285", + "ident": "7NJ0", + "type": "heliport", + "name": "Indian Mills Heliport", + "latitude_deg": "39.80149841308594", + "longitude_deg": "-74.75959777832031", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Medford", + "scheduled_service": "no", + "gps_code": "7NJ0", + "local_code": "7NJ0" + }, + { + "id": "14286", + "ident": "7NJ1", + "type": "heliport", + "name": "New Freedom Switching Station Heliport", + "latitude_deg": "39.73899841308594", + "longitude_deg": "-74.966796875", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Winslow Township", + "scheduled_service": "no", + "gps_code": "7NJ1", + "local_code": "7NJ1" + }, + { + "id": "14287", + "ident": "7NJ2", + "type": "small_airport", + "name": "Stoe Creek Farm Airport", + "latitude_deg": "39.481300354003906", + "longitude_deg": "-75.4052963256836", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Canton", + "scheduled_service": "no", + "gps_code": "7NJ2", + "local_code": "7NJ2" + }, + { + "id": "14288", + "ident": "7NJ3", + "type": "heliport", + "name": "Newton Memorial Hospital Heliport", + "latitude_deg": "41.057212", + "longitude_deg": "-74.770181", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Newton", + "scheduled_service": "no", + "gps_code": "7NJ3", + "local_code": "7NJ3" + }, + { + "id": "14289", + "ident": "7NJ4", + "type": "heliport", + "name": "Society Hill At North Brunswick Heliport", + "latitude_deg": "40.4422988892", + "longitude_deg": "-74.50460052490001", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "North Brunswick", + "scheduled_service": "no", + "gps_code": "7NJ4", + "local_code": "7NJ4" + }, + { + "id": "14290", + "ident": "7NJ5", + "type": "heliport", + "name": "Morristown Medical Center Heliport", + "latitude_deg": "40.789369", + "longitude_deg": "-74.465786", + "elevation_ft": "422", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Morristown", + "scheduled_service": "no", + "gps_code": "7NJ5", + "local_code": "7NJ5", + "keywords": "Morristown Memorial Hospital" + }, + { + "id": "14291", + "ident": "7NJ6", + "type": "heliport", + "name": "Lebanon Twnshp Mun Building Heliport", + "latitude_deg": "40.71760177612305", + "longitude_deg": "-74.89209747314453", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Woodglen", + "scheduled_service": "no", + "gps_code": "7NJ6", + "local_code": "7NJ6" + }, + { + "id": "14292", + "ident": "7NJ7", + "type": "small_airport", + "name": "Coombs Airport", + "latitude_deg": "39.571458", + "longitude_deg": "-75.214891", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Elmer", + "scheduled_service": "no", + "gps_code": "7NJ7", + "local_code": "7NJ7" + }, + { + "id": "14293", + "ident": "7NJ8", + "type": "heliport", + "name": "Merck & County Heliport", + "latitude_deg": "40.60940170288086", + "longitude_deg": "-74.26000213623047", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Rahway", + "scheduled_service": "no", + "gps_code": "7NJ8", + "local_code": "7NJ8" + }, + { + "id": "14294", + "ident": "7NJ9", + "type": "small_airport", + "name": "Dave's Aerodrome", + "latitude_deg": "39.318199157714844", + "longitude_deg": "-75.206298828125", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Cedarville", + "scheduled_service": "no", + "gps_code": "7NJ9", + "local_code": "7NJ9" + }, + { + "id": "14295", + "ident": "7NK0", + "type": "small_airport", + "name": "Valley View Airport", + "latitude_deg": "42.64528", + "longitude_deg": "-74.390514", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Middleburgh", + "scheduled_service": "no", + "gps_code": "7NK0", + "local_code": "7NK0" + }, + { + "id": "14296", + "ident": "7NK1", + "type": "small_airport", + "name": "Deer Run Air Field", + "latitude_deg": "42.94309997558594", + "longitude_deg": "-75.75360107421875", + "elevation_ft": "1725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Nelson", + "scheduled_service": "no", + "gps_code": "7NK1", + "local_code": "7NK1" + }, + { + "id": "14297", + "ident": "7NK2", + "type": "heliport", + "name": "Saratoga Hospital Heliport", + "latitude_deg": "43.08610153198242", + "longitude_deg": "-73.802001953125", + "elevation_ft": "379", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Saratoga Springs", + "scheduled_service": "no", + "gps_code": "7NK2", + "local_code": "7NK2" + }, + { + "id": "14298", + "ident": "7NK4", + "type": "small_airport", + "name": "Ridge Road West Airport", + "latitude_deg": "43.222599029541016", + "longitude_deg": "-77.81060028076172", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Spenceport", + "scheduled_service": "no", + "gps_code": "7NK4", + "local_code": "7NK4" + }, + { + "id": "14299", + "ident": "7NK5", + "type": "closed", + "name": "Cantagree Farm Heliport", + "latitude_deg": "41.864702", + "longitude_deg": "-73.679515", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Stanfordville", + "scheduled_service": "no", + "keywords": "7NK5" + }, + { + "id": "14300", + "ident": "7NK6", + "type": "small_airport", + "name": "Blueberry Field", + "latitude_deg": "42.29169845581055", + "longitude_deg": "-75.06670379638672", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Treadwell", + "scheduled_service": "no", + "gps_code": "7NK6", + "local_code": "7NK6" + }, + { + "id": "14301", + "ident": "7NK7", + "type": "small_airport", + "name": "Morin Airport", + "latitude_deg": "42.71329879760742", + "longitude_deg": "-75.88999938964844", + "elevation_ft": "1068", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Sherburne", + "scheduled_service": "no", + "gps_code": "7NK7", + "local_code": "7NK7" + }, + { + "id": "14302", + "ident": "7NK8", + "type": "heliport", + "name": "Westchester Medical Center Heliport", + "latitude_deg": "41.084891", + "longitude_deg": "-73.805332", + "elevation_ft": "409", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Valhalla", + "scheduled_service": "no", + "gps_code": "7NK8", + "local_code": "7NK8" + }, + { + "id": "45668", + "ident": "7NK9", + "type": "closed", + "name": "Women And Children'S Hospital Heliport", + "latitude_deg": "42.909234", + "longitude_deg": "-78.874361", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Buffalo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Women_%26_Children%27s_Hospital_of_Buffalo", + "keywords": "7NK9, CHOB Heliport" + }, + { + "id": "45956", + "ident": "7NM1", + "type": "small_airport", + "name": "Mesa Verde Ranch Strip Airport", + "latitude_deg": "32.935278", + "longitude_deg": "-106.045278", + "elevation_ft": "4237", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Alamogordo", + "scheduled_service": "no", + "gps_code": "7NM1", + "local_code": "7NM1" + }, + { + "id": "337127", + "ident": "7NR2", + "type": "heliport", + "name": "Granville Medical Center Heliport", + "latitude_deg": "36.326445", + "longitude_deg": "-78.591701", + "elevation_ft": "478", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Oxford", + "scheduled_service": "no", + "gps_code": "7NR2", + "local_code": "7NR2" + }, + { + "id": "14303", + "ident": "7NY0", + "type": "small_airport", + "name": "Campis Airport", + "latitude_deg": "41.68339920043945", + "longitude_deg": "-75.01629638671875", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Lake Huntington", + "scheduled_service": "no", + "gps_code": "7NY0", + "local_code": "7NY0" + }, + { + "id": "14304", + "ident": "7NY1", + "type": "small_airport", + "name": "Gar Field", + "latitude_deg": "42.76340103149414", + "longitude_deg": "-74.27850341796875", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Esperance", + "scheduled_service": "no", + "gps_code": "7NY1", + "local_code": "7NY1" + }, + { + "id": "14305", + "ident": "7NY2", + "type": "closed", + "name": "Butterville Airport", + "latitude_deg": "43.843399", + "longitude_deg": "-76.094704", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Adams", + "scheduled_service": "no", + "keywords": "7NY2" + }, + { + "id": "14306", + "ident": "7NY3", + "type": "heliport", + "name": "North Shore University Hospital Heliport", + "latitude_deg": "40.77790069580078", + "longitude_deg": "-73.7051010131836", + "elevation_ft": "93", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Manhasset", + "scheduled_service": "no", + "gps_code": "7NY3", + "local_code": "7NY3" + }, + { + "id": "14307", + "ident": "7NY4", + "type": "small_airport", + "name": "Culver Airfield", + "latitude_deg": "42.42509841918945", + "longitude_deg": "-76.71499633789062", + "elevation_ft": "1455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Mecklenburg", + "scheduled_service": "no", + "gps_code": "7NY4", + "local_code": "7NY4" + }, + { + "id": "14308", + "ident": "7NY5", + "type": "heliport", + "name": "State Police Troop K Heliport", + "latitude_deg": "41.782816", + "longitude_deg": "-73.752704", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Millbrook", + "scheduled_service": "no", + "gps_code": "7NY5", + "local_code": "7NY5" + }, + { + "id": "14309", + "ident": "7NY6", + "type": "small_airport", + "name": "Sherwood Farm Airport", + "latitude_deg": "42.893699645996094", + "longitude_deg": "-73.50789642333984", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Johnsonville", + "scheduled_service": "no", + "gps_code": "7NY6", + "local_code": "7NY6" + }, + { + "id": "14310", + "ident": "7NY7", + "type": "heliport", + "name": "HNA Palisades Premier Conference Center Heliport", + "latitude_deg": "41.01911", + "longitude_deg": "-73.91819", + "elevation_ft": "173", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Palisades", + "scheduled_service": "no", + "gps_code": "7NY7", + "local_code": "7NY7", + "keywords": "IBM Customer Executive Education Center Heliport" + }, + { + "id": "14311", + "ident": "7NY8", + "type": "closed", + "name": "Shaw Field", + "latitude_deg": "43.198007", + "longitude_deg": "-73.632524", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Gansevoort", + "scheduled_service": "no", + "keywords": "7NY8" + }, + { + "id": "14312", + "ident": "7OA7", + "type": "small_airport", + "name": "Skydive Greene County Inc Airport", + "latitude_deg": "39.67919921875", + "longitude_deg": "-83.87079620361328", + "elevation_ft": "1055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Xenia", + "scheduled_service": "no", + "gps_code": "7OA7", + "local_code": "7OA7" + }, + { + "id": "45702", + "ident": "7OH0", + "type": "heliport", + "name": "East Liverpool City Hospital Heliport", + "latitude_deg": "40.62205", + "longitude_deg": "-80.58566", + "elevation_ft": "791", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "East Liverpool", + "scheduled_service": "no", + "gps_code": "7OH0", + "local_code": "7OH0" + }, + { + "id": "14313", + "ident": "7OH1", + "type": "small_airport", + "name": "Rauhaus Field", + "latitude_deg": "41.211246", + "longitude_deg": "-81.97312", + "elevation_ft": "912", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Medina", + "scheduled_service": "no", + "gps_code": "7OH1", + "local_code": "7OH1", + "keywords": "Hobby Hangar" + }, + { + "id": "14314", + "ident": "7OH2", + "type": "small_airport", + "name": "Canal Fulton Airport", + "latitude_deg": "40.900299", + "longitude_deg": "-81.533699", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Canal Fulton", + "scheduled_service": "no", + "gps_code": "7OH2", + "local_code": "7OH2" + }, + { + "id": "14315", + "ident": "7OH3", + "type": "small_airport", + "name": "Obi One Airport", + "latitude_deg": "40.35279846191406", + "longitude_deg": "-83.0510025024414", + "elevation_ft": "952", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Delaware", + "scheduled_service": "no", + "gps_code": "7OH3", + "local_code": "7OH3" + }, + { + "id": "14316", + "ident": "7OH4", + "type": "heliport", + "name": "Meigs Mine 2 Heliport", + "latitude_deg": "39.125099182128906", + "longitude_deg": "-82.283203125", + "elevation_ft": "716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "7OH4", + "local_code": "7OH4" + }, + { + "id": "14317", + "ident": "7OH5", + "type": "small_airport", + "name": "Mahoning County Joint Vocational School Airport", + "latitude_deg": "41.03419876098633", + "longitude_deg": "-80.78170013427734", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Canfield", + "scheduled_service": "no", + "gps_code": "7OH5", + "local_code": "7OH5" + }, + { + "id": "14318", + "ident": "7OH6", + "type": "heliport", + "name": "Karam Heliport", + "latitude_deg": "41.14580154418945", + "longitude_deg": "-81.51860046386719", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cuyahoga Falls", + "scheduled_service": "no", + "gps_code": "7OH6", + "local_code": "7OH6" + }, + { + "id": "14319", + "ident": "7OH7", + "type": "closed", + "name": "Hydebrook Airport", + "latitude_deg": "39.780102", + "longitude_deg": "-83.899902", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Yellow Springs", + "scheduled_service": "no", + "keywords": "7OH7" + }, + { + "id": "14320", + "ident": "7OH8", + "type": "small_airport", + "name": "Curtis Airport", + "latitude_deg": "41.63779830932617", + "longitude_deg": "-81.10140228271484", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Chardon", + "scheduled_service": "no", + "gps_code": "7OH8", + "local_code": "7OH8" + }, + { + "id": "14321", + "ident": "7OH9", + "type": "heliport", + "name": "Cleveland Police Department 6th District Heliport", + "latitude_deg": "41.54999923706055", + "longitude_deg": "-81.56649780273438", + "elevation_ft": "655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "7OH9", + "local_code": "7OH9" + }, + { + "id": "14322", + "ident": "7OI0", + "type": "closed", + "name": "Christy's Airport", + "latitude_deg": "41.334202", + "longitude_deg": "-84.163597", + "elevation_ft": "683", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Napoleon", + "scheduled_service": "no", + "gps_code": "7OI0", + "local_code": "7OI0" + }, + { + "id": "14323", + "ident": "7OI1", + "type": "small_airport", + "name": "Blevins Airport", + "latitude_deg": "41.207298278808594", + "longitude_deg": "-84.26969909667969", + "elevation_ft": "722", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ayersville", + "scheduled_service": "no", + "gps_code": "7OI1", + "local_code": "7OI1" + }, + { + "id": "14324", + "ident": "7OI4", + "type": "heliport", + "name": "The Farm Heliport", + "latitude_deg": "39.86259841918945", + "longitude_deg": "-84.0416030883789", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Fairborn", + "scheduled_service": "no", + "gps_code": "7OI4", + "local_code": "7OI4" + }, + { + "id": "14325", + "ident": "7OI5", + "type": "small_airport", + "name": "Bea-D Airport", + "latitude_deg": "41.520599365234375", + "longitude_deg": "-83.27519989013672", + "elevation_ft": "605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Graytown", + "scheduled_service": "no", + "gps_code": "7OI5", + "local_code": "7OI5" + }, + { + "id": "14326", + "ident": "7OI7", + "type": "closed", + "name": "Southcreek Airport", + "latitude_deg": "41.2995", + "longitude_deg": "-83.011299", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Clyde", + "scheduled_service": "no", + "keywords": "7OI7" + }, + { + "id": "14327", + "ident": "7OI9", + "type": "small_airport", + "name": "Massengill Airport", + "latitude_deg": "40.069000244140625", + "longitude_deg": "-82.13600158691406", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Nashport", + "scheduled_service": "no", + "gps_code": "7OI9", + "local_code": "7OI9" + }, + { + "id": "14328", + "ident": "7OK0", + "type": "small_airport", + "name": "Dennis Ranch Airport", + "latitude_deg": "34.03179931640625", + "longitude_deg": "-97.67780303955078", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Grady", + "scheduled_service": "no", + "gps_code": "7OK0", + "local_code": "7OK0" + }, + { + "id": "14329", + "ident": "7OK1", + "type": "closed", + "name": "Meadowlark Field", + "latitude_deg": "35.620398", + "longitude_deg": "-95.744202", + "elevation_ft": "746", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Boynton", + "scheduled_service": "no", + "keywords": "7OK1" + }, + { + "id": "14330", + "ident": "7OK2", + "type": "small_airport", + "name": "Scott Airport", + "latitude_deg": "34.976866", + "longitude_deg": "-99.501261", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Mangum", + "scheduled_service": "no", + "gps_code": "7OK2", + "local_code": "7OK2" + }, + { + "id": "14331", + "ident": "7OK3", + "type": "heliport", + "name": "Hillcrest Hospital Pryor Heliport", + "latitude_deg": "36.308794", + "longitude_deg": "-95.304025", + "elevation_ft": "621", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Pryor", + "scheduled_service": "no", + "gps_code": "7OK3", + "local_code": "7OK3", + "keywords": "Grand Valley Hospital, Integris Mayes County Medical Center, Alliance Health Pryor" + }, + { + "id": "14332", + "ident": "7OK4", + "type": "closed", + "name": "Martin Farms Airport", + "latitude_deg": "35.150101", + "longitude_deg": "-97.866997", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Amber", + "scheduled_service": "no", + "keywords": "7OK4" + }, + { + "id": "14333", + "ident": "7OK5", + "type": "closed", + "name": "Atrium Heliport", + "latitude_deg": "35.533401", + "longitude_deg": "-97.579201", + "elevation_ft": "1270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "keywords": "7OK5" + }, + { + "id": "14334", + "ident": "7OK6", + "type": "heliport", + "name": "Norman Regional Hospital Heliport", + "latitude_deg": "35.22919845581055", + "longitude_deg": "-97.439697265625", + "elevation_ft": "1182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Norman", + "scheduled_service": "no", + "gps_code": "7OK6", + "local_code": "7OK6" + }, + { + "id": "14335", + "ident": "7OK7", + "type": "closed", + "name": "City of Faith Heliport", + "latitude_deg": "36.042243", + "longitude_deg": "-95.954862", + "elevation_ft": "624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tulsa", + "scheduled_service": "no", + "keywords": "7OK7" + }, + { + "id": "14336", + "ident": "7OK8", + "type": "closed", + "name": "Myers Airport", + "latitude_deg": "35.989201", + "longitude_deg": "-97.573095", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Crescent", + "scheduled_service": "no", + "keywords": "7OK8" + }, + { + "id": "14337", + "ident": "7OK9", + "type": "heliport", + "name": "St John Heliport", + "latitude_deg": "36.134300231933594", + "longitude_deg": "-95.96640014648438", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tulsa", + "scheduled_service": "no", + "gps_code": "7OK9", + "local_code": "7OK9" + }, + { + "id": "14338", + "ident": "7OR0", + "type": "small_airport", + "name": "Minam Lodge Airport", + "latitude_deg": "45.35820007324219", + "longitude_deg": "-117.63400268554688", + "elevation_ft": "3589", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Cove", + "scheduled_service": "no", + "gps_code": "7OR0", + "local_code": "7OR0" + }, + { + "id": "14339", + "ident": "7OR1", + "type": "small_airport", + "name": "Arnold Airstrip", + "latitude_deg": "43.4193000793457", + "longitude_deg": "-118.57599639892578", + "elevation_ft": "4140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Crane", + "scheduled_service": "no", + "gps_code": "7OR1", + "local_code": "7OR1" + }, + { + "id": "14340", + "ident": "7OR2", + "type": "closed", + "name": "Basl Hill Farms Airport", + "latitude_deg": "44.82292", + "longitude_deg": "-122.680507", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Stayton", + "scheduled_service": "no", + "gps_code": "7OR2", + "local_code": "7OR2" + }, + { + "id": "14341", + "ident": "7OR3", + "type": "closed", + "name": "Honald Ranch Airport", + "latitude_deg": "45.586077", + "longitude_deg": "-121.22211", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "The Dalles", + "scheduled_service": "no", + "gps_code": "7OR3", + "local_code": "7OR3" + }, + { + "id": "14342", + "ident": "7OR4", + "type": "small_airport", + "name": "Pineridge Ranch Airport", + "latitude_deg": "44.311211", + "longitude_deg": "-121.456958", + "elevation_ft": "3070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sisters", + "scheduled_service": "no", + "gps_code": "7OR4", + "local_code": "7OR4" + }, + { + "id": "14343", + "ident": "7OR5", + "type": "heliport", + "name": "Emanuel Hospital Heliport", + "latitude_deg": "45.5430206012", + "longitude_deg": "-122.670512795", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "7OR5", + "local_code": "7OR5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Emanuel_Hospital_Heliport" + }, + { + "id": "14344", + "ident": "7OR6", + "type": "small_airport", + "name": "Green Acres Air Park", + "latitude_deg": "45.63679885864258", + "longitude_deg": "-121.59100341796875", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Hood River", + "scheduled_service": "no", + "gps_code": "7OR6", + "local_code": "7OR6" + }, + { + "id": "14345", + "ident": "7OR7", + "type": "small_airport", + "name": "Hollin Airport", + "latitude_deg": "45.05400085449219", + "longitude_deg": "-122.90699768066406", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Brooks", + "scheduled_service": "no", + "gps_code": "7OR7", + "local_code": "7OR7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hollin_Airport" + }, + { + "id": "14346", + "ident": "7OR8", + "type": "small_airport", + "name": "Inshallah International Airport", + "latitude_deg": "44.09040069580078", + "longitude_deg": "-119.29000091552734", + "elevation_ft": "4560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Seneca", + "scheduled_service": "no", + "gps_code": "7OR8", + "local_code": "7OR8" + }, + { + "id": "14347", + "ident": "7OR9", + "type": "small_airport", + "name": "Parson Landing Airport", + "latitude_deg": "45.324298858599995", + "longitude_deg": "-122.472000122", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Oregon City", + "scheduled_service": "no", + "gps_code": "7OR9", + "local_code": "7OR9" + }, + { + "id": "14348", + "ident": "7P5", + "type": "small_airport", + "name": "Piso Airport", + "latitude_deg": "45.06529998779297", + "longitude_deg": "-88.42649841308594", + "elevation_ft": "891", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Suring", + "scheduled_service": "no", + "gps_code": "7P5", + "local_code": "7P5" + }, + { + "id": "14349", + "ident": "7PA0", + "type": "closed", + "name": "Manor Knoll Personal Use Airport", + "latitude_deg": "40.020901", + "longitude_deg": "-76.423897", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mountville", + "scheduled_service": "no", + "keywords": "7PA0" + }, + { + "id": "14350", + "ident": "7PA1", + "type": "small_airport", + "name": "Warren Airpark", + "latitude_deg": "41.865838", + "longitude_deg": "-79.206684", + "elevation_ft": "1790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Warren", + "scheduled_service": "no", + "gps_code": "7PA1", + "local_code": "7PA1" + }, + { + "id": "14351", + "ident": "7PA2", + "type": "heliport", + "name": "State Park Heliport", + "latitude_deg": "40.80390167236328", + "longitude_deg": "-75.2969970703125", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wind Gap", + "scheduled_service": "no", + "gps_code": "7PA2", + "local_code": "7PA2" + }, + { + "id": "14352", + "ident": "7PA3", + "type": "small_airport", + "name": "Charles G. Kalko Airport", + "latitude_deg": "41.708053", + "longitude_deg": "-75.287872", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Honesdale", + "scheduled_service": "no", + "gps_code": "7PA3", + "local_code": "7PA3" + }, + { + "id": "14353", + "ident": "7PA4", + "type": "small_airport", + "name": "Orson Field", + "latitude_deg": "41.84230041503906", + "longitude_deg": "-75.4363021850586", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Orson", + "scheduled_service": "no", + "gps_code": "7PA4", + "local_code": "7PA4" + }, + { + "id": "14354", + "ident": "7PA5", + "type": "small_airport", + "name": "Fauser Ultralightport", + "latitude_deg": "41.102901458740234", + "longitude_deg": "-76.80549621582031", + "elevation_ft": "565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Turbotville", + "scheduled_service": "no", + "gps_code": "7PA5", + "local_code": "7PA5" + }, + { + "id": "14355", + "ident": "7PA6", + "type": "closed", + "name": "Stott Private Airport", + "latitude_deg": "40.245398", + "longitude_deg": "-74.9913", + "elevation_ft": "143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Newtown", + "scheduled_service": "no", + "keywords": "7PA6" + }, + { + "id": "14356", + "ident": "7PA7", + "type": "closed", + "name": "One Montgomery Plaza Heliport", + "latitude_deg": "40.115687", + "longitude_deg": "-75.34437", + "elevation_ft": "269", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Norristown", + "scheduled_service": "no", + "keywords": "7PA7" + }, + { + "id": "14357", + "ident": "7PA8", + "type": "heliport", + "name": "UPMC Shadyside Heliport", + "latitude_deg": "40.454389", + "longitude_deg": "-79.939688", + "elevation_ft": "1037", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pittsburgh", + "scheduled_service": "no", + "local_code": "PA16", + "keywords": "7PA8, Shadyside Health Edu & Research Corp. Heliport" + }, + { + "id": "14358", + "ident": "7PA9", + "type": "heliport", + "name": "Caterpillar Pbp Heliport", + "latitude_deg": "39.982601165771484", + "longitude_deg": "-76.67330169677734", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "York", + "scheduled_service": "no", + "gps_code": "7PA9", + "local_code": "7PA9" + }, + { + "id": "14359", + "ident": "7PN0", + "type": "small_airport", + "name": "Tidmore Airport", + "latitude_deg": "40.70500183105469", + "longitude_deg": "-76.23639678955078", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Minersville", + "scheduled_service": "no", + "gps_code": "7PN0", + "local_code": "7PN0" + }, + { + "id": "14360", + "ident": "7PN2", + "type": "heliport", + "name": "Pq-Lafayette Hill Heliport", + "latitude_deg": "40.07509994506836", + "longitude_deg": "-75.28299713134766", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lafayette Hill", + "scheduled_service": "no", + "gps_code": "7PN2", + "local_code": "7PN2" + }, + { + "id": "14361", + "ident": "7PN3", + "type": "heliport", + "name": "Suburban General Hospital Heliport", + "latitude_deg": "40.15010070800781", + "longitude_deg": "-75.34960174560547", + "elevation_ft": "316", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Norristown", + "scheduled_service": "no", + "gps_code": "7PN3", + "local_code": "7PN3" + }, + { + "id": "14362", + "ident": "7PN4", + "type": "heliport", + "name": "Knorr Farm Heliport", + "latitude_deg": "40.395999908447266", + "longitude_deg": "-75.83450317382812", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Reading", + "scheduled_service": "no", + "gps_code": "7PN4", + "local_code": "7PN4" + }, + { + "id": "14363", + "ident": "7PN5", + "type": "heliport", + "name": "Letterkenny Army Depot Helipad Heliport", + "latitude_deg": "40.0072222222", + "longitude_deg": "-77.6452777778", + "elevation_ft": "774", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Chambersburg", + "scheduled_service": "no", + "gps_code": "7PN5", + "local_code": "7PN5" + }, + { + "id": "14364", + "ident": "7PN6", + "type": "heliport", + "name": "Hagan Heliport", + "latitude_deg": "39.82469940185547", + "longitude_deg": "-76.62999725341797", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Winterstown", + "scheduled_service": "no", + "gps_code": "7PN6", + "local_code": "7PN6" + }, + { + "id": "14365", + "ident": "7PN7", + "type": "heliport", + "name": "Wellspan York Hospital Alternate Heliport", + "latitude_deg": "39.943902", + "longitude_deg": "-76.742302", + "elevation_ft": "408", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "York", + "scheduled_service": "no", + "gps_code": "7PN7", + "local_code": "7PN7" + }, + { + "id": "46086", + "ident": "7PN8", + "type": "heliport", + "name": "Perry Health Center Heliport", + "latitude_deg": "40.366664", + "longitude_deg": "-77.341667", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Loysville", + "scheduled_service": "no", + "gps_code": "7PN8", + "local_code": "7PN8" + }, + { + "id": "45745", + "ident": "7PN9", + "type": "heliport", + "name": "East Forest Junior/Senior High School Heliport", + "latitude_deg": "41.475008", + "longitude_deg": "-79.126108", + "elevation_ft": "1901", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Marienville", + "scheduled_service": "no", + "gps_code": "7PN9", + "local_code": "7PN9" + }, + { + "id": "14366", + "ident": "7PS0", + "type": "heliport", + "name": "B S Corporation Steelton Plant Heliport", + "latitude_deg": "40.23059844970703", + "longitude_deg": "-76.83660125732422", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Steelton", + "scheduled_service": "no", + "gps_code": "7PS0", + "local_code": "7PS0" + }, + { + "id": "14367", + "ident": "7PS1", + "type": "heliport", + "name": "St. Vincent Outpatient Center Heliport", + "latitude_deg": "41.90620040893555", + "longitude_deg": "-79.8467025756836", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Union City", + "scheduled_service": "no", + "gps_code": "7PS1", + "local_code": "7PS1" + }, + { + "id": "14368", + "ident": "7PS2", + "type": "heliport", + "name": "Braehead Heliport", + "latitude_deg": "39.98789978027344", + "longitude_deg": "-75.49099731445312", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Willistown", + "scheduled_service": "no", + "gps_code": "7PS2", + "local_code": "7PS2" + }, + { + "id": "45767", + "ident": "7PS3", + "type": "heliport", + "name": "Susquehanna High School Heliport", + "latitude_deg": "41.949786", + "longitude_deg": "-75.588953", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Susquehanna", + "scheduled_service": "no", + "gps_code": "7PS3", + "local_code": "7PS3" + }, + { + "id": "14369", + "ident": "7PS4", + "type": "closed", + "name": "Sky Classics Field", + "latitude_deg": "40.3979", + "longitude_deg": "-76.5989", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Grantville", + "scheduled_service": "no", + "keywords": "7PS4" + }, + { + "id": "14370", + "ident": "7PS5", + "type": "heliport", + "name": "Muncy Valley Hospital Heliport", + "latitude_deg": "41.210601806640625", + "longitude_deg": "-76.77330017089844", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Muncy", + "scheduled_service": "no", + "gps_code": "7PS5", + "local_code": "7PS5" + }, + { + "id": "14371", + "ident": "7PS6", + "type": "heliport", + "name": "Allegheny Valley Hospital Heliport", + "latitude_deg": "40.61899948120117", + "longitude_deg": "-79.73780059814453", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Natrona Heights", + "scheduled_service": "no", + "gps_code": "7PS6", + "local_code": "7PS6" + }, + { + "id": "14372", + "ident": "7PS7", + "type": "small_airport", + "name": "Lenzner Farm Airport", + "latitude_deg": "40.538700103759766", + "longitude_deg": "-80.11730194091797", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Sewickley", + "scheduled_service": "no", + "gps_code": "7PS7", + "local_code": "7PS7" + }, + { + "id": "14373", + "ident": "7PS8", + "type": "heliport", + "name": "Bucktail Medical Center Heliport", + "latitude_deg": "41.32780075073242", + "longitude_deg": "-77.73580169677734", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "South Renovo", + "scheduled_service": "no", + "gps_code": "7PS8", + "local_code": "7PS8" + }, + { + "id": "14374", + "ident": "7PS9", + "type": "heliport", + "name": "Elk Regional Medical Center Heliport", + "latitude_deg": "41.42620086669922", + "longitude_deg": "-78.57859802246094", + "elevation_ft": "1735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "St Mary's", + "scheduled_service": "no", + "gps_code": "7PS9", + "local_code": "7PS9" + }, + { + "id": "14375", + "ident": "7Q7", + "type": "small_airport", + "name": "White River Municipal Airport", + "latitude_deg": "43.56169891357422", + "longitude_deg": "-100.74199676513672", + "elevation_ft": "2151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "White River", + "scheduled_service": "no", + "gps_code": "7Q7", + "local_code": "7Q7" + }, + { + "id": "14376", + "ident": "7R9", + "type": "small_airport", + "name": "Bailes Airport", + "latitude_deg": "29.163743", + "longitude_deg": "-95.401454", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Angleton", + "scheduled_service": "no", + "local_code": "7R9" + }, + { + "id": "14377", + "ident": "7S3", + "type": "small_airport", + "name": "Stark's Twin Oaks Airpark", + "latitude_deg": "45.42850112915039", + "longitude_deg": "-122.94200134277344", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "7S3", + "local_code": "7S3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stark's_Twin_Oaks_Airpark" + }, + { + "id": "14378", + "ident": "7S4", + "type": "small_airport", + "name": "Wisdom Airport", + "latitude_deg": "45.587416", + "longitude_deg": "-113.45767", + "elevation_ft": "6133", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Wisdom", + "scheduled_service": "no", + "local_code": "7S4" + }, + { + "id": "14379", + "ident": "7S8", + "type": "small_airport", + "name": "Ross International Airport", + "latitude_deg": "48.998600006103516", + "longitude_deg": "-111.97799682617188", + "elevation_ft": "3552", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Sweetgrass", + "scheduled_service": "no", + "gps_code": "7S8", + "local_code": "7S8" + }, + { + "id": "14380", + "ident": "7T0", + "type": "small_airport", + "name": "Freedom Field", + "latitude_deg": "33.59339904785156", + "longitude_deg": "-97.21929931640625", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lindsay", + "scheduled_service": "no", + "gps_code": "7T0", + "local_code": "7T0" + }, + { + "id": "14381", + "ident": "7T3", + "type": "small_airport", + "name": "Naval Outlying Landing Field Goliad", + "latitude_deg": "28.615516", + "longitude_deg": "-97.616302", + "elevation_ft": "324", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Goliad", + "scheduled_service": "no", + "gps_code": "KNGT", + "local_code": "NGT", + "keywords": "7T3, Goliad County Industrial Airpark, NALF Berclair" + }, + { + "id": "14382", + "ident": "7TA0", + "type": "small_airport", + "name": "Field's Field", + "latitude_deg": "30.09289", + "longitude_deg": "-95.651487", + "elevation_ft": "198", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tomball", + "scheduled_service": "no", + "gps_code": "7TA0", + "local_code": "7TA0" + }, + { + "id": "14383", + "ident": "7TA1", + "type": "heliport", + "name": "Navasota Regional Hospital Heliport", + "latitude_deg": "30.39240074157715", + "longitude_deg": "-96.07749938964844", + "elevation_ft": "248", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Navasota", + "scheduled_service": "no", + "gps_code": "7TA1", + "local_code": "7TA1" + }, + { + "id": "14384", + "ident": "7TA2", + "type": "heliport", + "name": "Club House Nr 1 Heliport", + "latitude_deg": "29.56329917907715", + "longitude_deg": "-95.24970245361328", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pearland", + "scheduled_service": "no", + "gps_code": "7TA2", + "local_code": "7TA2" + }, + { + "id": "14385", + "ident": "7TA3", + "type": "small_airport", + "name": "Quarterway Airport", + "latitude_deg": "34.18090057373047", + "longitude_deg": "-101.83699798583984", + "elevation_ft": "3470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Plainview", + "scheduled_service": "no", + "gps_code": "7TA3", + "local_code": "7TA3" + }, + { + "id": "14386", + "ident": "7TA4", + "type": "heliport", + "name": "Christus Mother Frances Hospital Tyler Heliport", + "latitude_deg": "32.34179", + "longitude_deg": "-95.291918", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tyler", + "scheduled_service": "no", + "gps_code": "7TA4", + "local_code": "7TA4" + }, + { + "id": "14387", + "ident": "7TA5", + "type": "small_airport", + "name": "Weber Ranch Airport", + "latitude_deg": "30.587099075317383", + "longitude_deg": "-96.63410186767578", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Caldwell", + "scheduled_service": "no", + "gps_code": "7TA5", + "local_code": "7TA5" + }, + { + "id": "14388", + "ident": "7TA6", + "type": "closed", + "name": "PHI Heliport", + "latitude_deg": "28.439699", + "longitude_deg": "-96.434998", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port O'Connor", + "scheduled_service": "no", + "keywords": "7TA6" + }, + { + "id": "14389", + "ident": "7TA7", + "type": "small_airport", + "name": "Flying M Ranch Airport", + "latitude_deg": "31.83989906311035", + "longitude_deg": "-94.9613037109375", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Reklaw", + "scheduled_service": "no", + "gps_code": "7TA7", + "local_code": "7TA7" + }, + { + "id": "14390", + "ident": "7TA8", + "type": "closed", + "name": "John Henry Key Airport", + "latitude_deg": "29.859699", + "longitude_deg": "-98.741402", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Boerne", + "scheduled_service": "no", + "keywords": "7TA8" + }, + { + "id": "14391", + "ident": "7TA9", + "type": "heliport", + "name": "San Angelo Community Medical Center Heliport", + "latitude_deg": "31.418884", + "longitude_deg": "-100.470575", + "elevation_ft": "1900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Angelo", + "scheduled_service": "no", + "gps_code": "7TA9", + "local_code": "7TA9", + "keywords": "Angelo Community Hospital Heliport" + }, + { + "id": "14392", + "ident": "7TE0", + "type": "small_airport", + "name": "Kelley Crop Service Airport", + "latitude_deg": "29.913799285888672", + "longitude_deg": "-94.20819854736328", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fannett", + "scheduled_service": "no", + "gps_code": "7TE0", + "local_code": "7TE0" + }, + { + "id": "14393", + "ident": "7TE1", + "type": "closed", + "name": "Zachry Ranch Airport", + "latitude_deg": "27.072788", + "longitude_deg": "-98.935425", + "elevation_ft": "592", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Escobas", + "scheduled_service": "no", + "keywords": "7TE1" + }, + { + "id": "14394", + "ident": "7TE2", + "type": "small_airport", + "name": "Cage Ranch Airport", + "latitude_deg": "27.105899810791016", + "longitude_deg": "-98.20580291748047", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Falfurrias", + "scheduled_service": "no", + "gps_code": "7TE2", + "local_code": "7TE2" + }, + { + "id": "14395", + "ident": "7TE3", + "type": "small_airport", + "name": "Lometa Air Strip", + "latitude_deg": "31.22624", + "longitude_deg": "-98.4612", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lometa", + "scheduled_service": "no", + "gps_code": "7TE3", + "local_code": "7TE3" + }, + { + "id": "14396", + "ident": "7TE4", + "type": "small_airport", + "name": "Flying J Ranch Airport", + "latitude_deg": "29.599505", + "longitude_deg": "-99.846325", + "elevation_ft": "1620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Leakey", + "scheduled_service": "no", + "gps_code": "7TE4", + "local_code": "7TE4", + "keywords": "74T" + }, + { + "id": "14397", + "ident": "7TE5", + "type": "small_airport", + "name": "Carlisle Airport", + "latitude_deg": "31.67919921875", + "longitude_deg": "-98.6635971069336", + "elevation_ft": "1790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mullin", + "scheduled_service": "no", + "gps_code": "7TE5", + "local_code": "7TE5" + }, + { + "id": "14398", + "ident": "7TE6", + "type": "small_airport", + "name": "Stovall Ranch Nr 1 Airport", + "latitude_deg": "29.200300216674805", + "longitude_deg": "-96.55439758300781", + "elevation_ft": "108", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Campo", + "scheduled_service": "no", + "gps_code": "7TE6", + "local_code": "7TE6" + }, + { + "id": "14399", + "ident": "7TE7", + "type": "small_airport", + "name": "Moore Field", + "latitude_deg": "26.383699", + "longitude_deg": "-98.333603", + "elevation_ft": "219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Edinburg", + "scheduled_service": "no", + "gps_code": "7TE7", + "local_code": "7TE7" + }, + { + "id": "14400", + "ident": "7TE8", + "type": "closed", + "name": "Trulock Ranch Field", + "latitude_deg": "32.421001", + "longitude_deg": "-100.810997", + "elevation_ft": "2168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Colorado City", + "scheduled_service": "no", + "keywords": "7TE8" + }, + { + "id": "14401", + "ident": "7TE9", + "type": "small_airport", + "name": "Boening Brothers Airport", + "latitude_deg": "29.02720069885254", + "longitude_deg": "-98.28669738769531", + "elevation_ft": "407", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Floresville", + "scheduled_service": "no", + "gps_code": "7TE9", + "local_code": "7TE9" + }, + { + "id": "14402", + "ident": "7TN0", + "type": "small_airport", + "name": "Blue Bird Field", + "latitude_deg": "36.43560028076172", + "longitude_deg": "-87.09140014648438", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Pleasantview", + "scheduled_service": "no", + "gps_code": "7TN0", + "local_code": "7TN0" + }, + { + "id": "14403", + "ident": "7TN1", + "type": "small_airport", + "name": "Krashinsky Airfield", + "latitude_deg": "35.320599", + "longitude_deg": "-85.8536", + "elevation_ft": "995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Pelham", + "scheduled_service": "no", + "gps_code": "7TN1", + "local_code": "7TN1", + "keywords": "Elk River Airfield" + }, + { + "id": "14404", + "ident": "7TN2", + "type": "heliport", + "name": "Centennial Medical Center Heliport", + "latitude_deg": "36.15359878540039", + "longitude_deg": "-86.80889892578125", + "elevation_ft": "617", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Nashville", + "scheduled_service": "no", + "gps_code": "7TN2", + "local_code": "7TN2" + }, + { + "id": "14405", + "ident": "7TN3", + "type": "small_airport", + "name": "Stones River Airport", + "latitude_deg": "35.970798", + "longitude_deg": "-86.393097", + "elevation_ft": "537", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Murfreesboro", + "scheduled_service": "no", + "gps_code": "7TN3", + "local_code": "7TN3", + "keywords": "Classic Aircraft & Auto Inc." + }, + { + "id": "14406", + "ident": "7TN4", + "type": "small_airport", + "name": "Pegasus Field", + "latitude_deg": "35.17279815673828", + "longitude_deg": "-89.5625", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Oakland", + "scheduled_service": "no", + "gps_code": "7TN4", + "local_code": "7TN4" + }, + { + "id": "45974", + "ident": "7TN5", + "type": "small_airport", + "name": "Flying D Airport", + "latitude_deg": "35.133806", + "longitude_deg": "-89.186806", + "elevation_ft": "477", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Hickory Valley", + "scheduled_service": "no", + "gps_code": "7TN5", + "local_code": "7TN5" + }, + { + "id": "14408", + "ident": "7TN6", + "type": "heliport", + "name": "Goodlark Medical Center Heliport", + "latitude_deg": "36.07500076293945", + "longitude_deg": "-87.375", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Dickson", + "scheduled_service": "no", + "gps_code": "7TN6", + "local_code": "7TN6" + }, + { + "id": "14409", + "ident": "7TN7", + "type": "heliport", + "name": "Pca Heliport", + "latitude_deg": "35.04499816894531", + "longitude_deg": "-88.26439666748047", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Counce", + "scheduled_service": "no", + "gps_code": "7TN7", + "local_code": "7TN7" + }, + { + "id": "14410", + "ident": "7TN8", + "type": "heliport", + "name": "Van Stratum Heliport", + "latitude_deg": "35.977500915527344", + "longitude_deg": "-83.22640228271484", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "7TN8", + "local_code": "7TN8" + }, + { + "id": "14411", + "ident": "7TN9", + "type": "heliport", + "name": "Jacques Heliport", + "latitude_deg": "35.957801818847656", + "longitude_deg": "-83.29609680175781", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "7TN9", + "local_code": "7TN9" + }, + { + "id": "14412", + "ident": "7TS0", + "type": "small_airport", + "name": "Fairview Airport", + "latitude_deg": "33.094436", + "longitude_deg": "-97.427305", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rhome", + "scheduled_service": "no", + "local_code": "70T", + "keywords": "7TS0" + }, + { + "id": "14413", + "ident": "7TS1", + "type": "heliport", + "name": "Cowden Heliport", + "latitude_deg": "32.863061", + "longitude_deg": "-97.397822", + "elevation_ft": "783", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Saginaw", + "scheduled_service": "no", + "gps_code": "7TS1", + "local_code": "7TS1" + }, + { + "id": "14414", + "ident": "7TS2", + "type": "small_airport", + "name": "Alison Air Park", + "latitude_deg": "29.831300735473633", + "longitude_deg": "-97.88919830322266", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Marcos", + "scheduled_service": "no", + "gps_code": "7TS2", + "local_code": "7TS2" + }, + { + "id": "14415", + "ident": "7TS3", + "type": "closed", + "name": "Wyatt Airport", + "latitude_deg": "29.9599", + "longitude_deg": "-97.985298", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Marcos", + "scheduled_service": "no", + "keywords": "7TS3" + }, + { + "id": "14416", + "ident": "7TS4", + "type": "small_airport", + "name": "Hicks Airport", + "latitude_deg": "33.183201", + "longitude_deg": "-97.2545", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ponder", + "scheduled_service": "no", + "local_code": "74T", + "keywords": "7TS4, Roma Airport" + }, + { + "id": "14417", + "ident": "7TS5", + "type": "heliport", + "name": "CIG 806 Heliport", + "latitude_deg": "28.625657", + "longitude_deg": "-96.682745", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port Lavaca", + "scheduled_service": "no", + "gps_code": "7TS5", + "local_code": "7TS5" + }, + { + "id": "14418", + "ident": "7TS6", + "type": "heliport", + "name": "Strack Farms Heliport", + "latitude_deg": "30.033000946044922", + "longitude_deg": "-95.50129699707031", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Spring", + "scheduled_service": "no", + "gps_code": "7TS6", + "local_code": "7TS6" + }, + { + "id": "14419", + "ident": "7TS7", + "type": "closed", + "name": "Broussard Farm Airport", + "latitude_deg": "29.9111", + "longitude_deg": "-94.339103", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hamshire", + "scheduled_service": "no", + "keywords": "7TS7" + }, + { + "id": "14420", + "ident": "7TS8", + "type": "small_airport", + "name": "Ott Farms Airport", + "latitude_deg": "34.40380096435547", + "longitude_deg": "-102.4540023803711", + "elevation_ft": "3817", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dimmitt", + "scheduled_service": "no", + "gps_code": "7TS8", + "local_code": "7TS8" + }, + { + "id": "14421", + "ident": "7TS9", + "type": "closed", + "name": "Ag Aviation Airport", + "latitude_deg": "29.0541", + "longitude_deg": "-95.962502", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bay City", + "scheduled_service": "no", + "keywords": "7TS9" + }, + { + "id": "14422", + "ident": "7TX0", + "type": "small_airport", + "name": "Tom Danaher Airport", + "latitude_deg": "33.82820129394531", + "longitude_deg": "-98.57270050048828", + "elevation_ft": "986", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wichita Falls", + "scheduled_service": "no", + "gps_code": "7TX0", + "local_code": "7TX0" + }, + { + "id": "14423", + "ident": "7TX1", + "type": "heliport", + "name": "Ascension Providence Health Center Heliport", + "latitude_deg": "31.514099", + "longitude_deg": "-97.200302", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no", + "gps_code": "7TX1", + "local_code": "7TX1" + }, + { + "id": "14424", + "ident": "7TX2", + "type": "heliport", + "name": "Falcon's Nest Heliport", + "latitude_deg": "30.411221", + "longitude_deg": "-97.877669", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "7TX2", + "local_code": "7TX2" + }, + { + "id": "14425", + "ident": "7TX3", + "type": "heliport", + "name": "Big Town Heliport", + "latitude_deg": "32.79180145263672", + "longitude_deg": "-96.5635986328125", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mesquite", + "scheduled_service": "no", + "gps_code": "7TX3", + "local_code": "7TX3" + }, + { + "id": "14426", + "ident": "7TX4", + "type": "small_airport", + "name": "Hillcrest Airport", + "latitude_deg": "32.966800689697266", + "longitude_deg": "-97.27529907226562", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Keller", + "scheduled_service": "no", + "gps_code": "7TX4", + "local_code": "7TX4" + }, + { + "id": "14427", + "ident": "7TX5", + "type": "small_airport", + "name": "Mabee Ranch Airport", + "latitude_deg": "32.217098236083984", + "longitude_deg": "-102.16000366210938", + "elevation_ft": "2862", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Midland", + "scheduled_service": "no", + "gps_code": "7TX5", + "local_code": "7TX5" + }, + { + "id": "14428", + "ident": "7TX6", + "type": "heliport", + "name": "Kemah Waterfront Heliport", + "latitude_deg": "29.546899795532227", + "longitude_deg": "-95.01689910888672", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "7TX6", + "local_code": "7TX6" + }, + { + "id": "14429", + "ident": "7TX7", + "type": "small_airport", + "name": "Ryan Aerodrome", + "latitude_deg": "32.06891", + "longitude_deg": "-102.02557", + "elevation_ft": "2740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Midland", + "scheduled_service": "no", + "gps_code": "7TX7", + "local_code": "7TX7" + }, + { + "id": "14430", + "ident": "7TX8", + "type": "small_airport", + "name": "Flying K Airport", + "latitude_deg": "35.107601165771484", + "longitude_deg": "-102.03800201416016", + "elevation_ft": "3560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Amarillo", + "scheduled_service": "no", + "gps_code": "7TX8", + "local_code": "7TX8" + }, + { + "id": "14431", + "ident": "7TX9", + "type": "small_airport", + "name": "Ashford Field", + "latitude_deg": "33.358699798583984", + "longitude_deg": "-94.43769836425781", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Old Boston", + "scheduled_service": "no", + "gps_code": "7TX9", + "local_code": "7TX9" + }, + { + "id": "14432", + "ident": "7U4", + "type": "small_airport", + "name": "Morgan Airport", + "latitude_deg": "49", + "longitude_deg": "-107.825996399", + "elevation_ft": "2813", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Morgan/Loring/", + "scheduled_service": "no", + "gps_code": "7U4", + "local_code": "7U4" + }, + { + "id": "14433", + "ident": "7U8", + "type": "small_airport", + "name": "Richey Airport", + "latitude_deg": "47.62670135498047", + "longitude_deg": "-105.07599639892578", + "elevation_ft": "2493", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Richey", + "scheduled_service": "no", + "gps_code": "7U8", + "local_code": "7U8" + }, + { + "id": "14434", + "ident": "7VA0", + "type": "heliport", + "name": "Airduce Heliport", + "latitude_deg": "37.273611", + "longitude_deg": "-75.971944", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Cheriton", + "scheduled_service": "no", + "gps_code": "7VA0", + "local_code": "7VA0" + }, + { + "id": "14435", + "ident": "7VA1", + "type": "heliport", + "name": "Bristol Regional Medical Center Heliport", + "latitude_deg": "36.602298736572266", + "longitude_deg": "-82.21510314941406", + "elevation_ft": "1820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Bristol", + "scheduled_service": "no", + "gps_code": "7VA1", + "local_code": "7VA1" + }, + { + "id": "14436", + "ident": "7VA2", + "type": "heliport", + "name": "Technical Center Heliport", + "latitude_deg": "37.30569839477539", + "longitude_deg": "-77.39440155029297", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Colonial Heights", + "scheduled_service": "no", + "gps_code": "7VA2", + "local_code": "7VA2" + }, + { + "id": "14437", + "ident": "7VA3", + "type": "heliport", + "name": "Hopewell Heliport", + "latitude_deg": "37.28739929199219", + "longitude_deg": "-77.27110290527344", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Hopewell", + "scheduled_service": "no", + "gps_code": "7VA3", + "local_code": "7VA3" + }, + { + "id": "14438", + "ident": "7VA4", + "type": "heliport", + "name": "Bermuda Hundred Heliport", + "latitude_deg": "37.29570007324219", + "longitude_deg": "-77.27110290527344", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Hopewell", + "scheduled_service": "no", + "gps_code": "7VA4", + "local_code": "7VA4" + }, + { + "id": "14439", + "ident": "7VA5", + "type": "small_airport", + "name": "Redhouse Airfield", + "latitude_deg": "37.18899917602539", + "longitude_deg": "-78.82969665527344", + "elevation_ft": "742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Redhouse", + "scheduled_service": "no", + "gps_code": "7VA5", + "local_code": "7VA5" + }, + { + "id": "14440", + "ident": "7VA6", + "type": "closed", + "name": "Clover Project Landing Zone Heliport", + "latitude_deg": "36.871799", + "longitude_deg": "-78.713303", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Clover", + "scheduled_service": "no", + "keywords": "7VA6" + }, + { + "id": "14441", + "ident": "7VA7", + "type": "seaplane_base", + "name": "Brammer Seaplane Base", + "latitude_deg": "37.033501", + "longitude_deg": "-79.699799", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Union Hall", + "scheduled_service": "no", + "gps_code": "9VA7", + "local_code": "9VA7" + }, + { + "id": "14442", + "ident": "7VA8", + "type": "heliport", + "name": "Tri-Cities Heliport", + "latitude_deg": "36.64590072631836", + "longitude_deg": "-82.11070251464844", + "elevation_ft": "1880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Bristol", + "scheduled_service": "no", + "gps_code": "7VA8", + "local_code": "7VA8" + }, + { + "id": "14443", + "ident": "7VA9", + "type": "small_airport", + "name": "Hannah Field", + "latitude_deg": "38.398333", + "longitude_deg": "-79.600278", + "elevation_ft": "3049", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Monterey", + "scheduled_service": "no", + "gps_code": "7VA9", + "local_code": "7VA9" + }, + { + "id": "14444", + "ident": "7VG0", + "type": "small_airport", + "name": "Warrenton Air Park", + "latitude_deg": "38.65570068359375", + "longitude_deg": "-77.78720092773438", + "elevation_ft": "442", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Warrenton", + "scheduled_service": "no", + "gps_code": "7VG0", + "local_code": "7VG0" + }, + { + "id": "14445", + "ident": "7W1", + "type": "small_airport", + "name": "Port of Ilwaco Airport", + "latitude_deg": "46.31489944458008", + "longitude_deg": "-124.00399780273438", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ilwaco", + "scheduled_service": "no", + "gps_code": "7W1", + "local_code": "7W1" + }, + { + "id": "14446", + "ident": "7W4", + "type": "small_airport", + "name": "Lake Anna Airport", + "latitude_deg": "37.9656982421875", + "longitude_deg": "-77.74579620361328", + "elevation_ft": "355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Bumpass", + "scheduled_service": "no", + "gps_code": "7W4", + "local_code": "7W4" + }, + { + "id": "14447", + "ident": "7W7", + "type": "small_airport", + "name": "Boyer Flight Park Ultralightport", + "latitude_deg": "40.720001220703125", + "longitude_deg": "-86.61609649658203", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Burnettsville", + "scheduled_service": "no", + "gps_code": "7W7", + "local_code": "7W7" + }, + { + "id": "14448", + "ident": "7WA0", + "type": "small_airport", + "name": "Big Andy Airport", + "latitude_deg": "48.0984001159668", + "longitude_deg": "-123.64299774169922", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Port Angeles", + "scheduled_service": "no", + "gps_code": "7WA0", + "local_code": "7WA0" + }, + { + "id": "14449", + "ident": "7WA1", + "type": "heliport", + "name": "Eclipse Heliport", + "latitude_deg": "48.0968017578125", + "longitude_deg": "-123.48300170898438", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Port Angeles", + "scheduled_service": "no", + "gps_code": "7WA1", + "local_code": "7WA1" + }, + { + "id": "14450", + "ident": "7WA2", + "type": "heliport", + "name": "Jefferson General Hospital Heliport", + "latitude_deg": "48.109798431396484", + "longitude_deg": "-122.79299926757812", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Port Townsend", + "scheduled_service": "no", + "gps_code": "7WA2", + "local_code": "7WA2" + }, + { + "id": "14451", + "ident": "7WA3", + "type": "small_airport", + "name": "West Wind Airport", + "latitude_deg": "48.88610076904297", + "longitude_deg": "-122.3290023803711", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Everson", + "scheduled_service": "no", + "gps_code": "7WA3", + "local_code": "7WA3" + }, + { + "id": "14452", + "ident": "7WA4", + "type": "small_airport", + "name": "Humbert Airport", + "latitude_deg": "47.85749816894531", + "longitude_deg": "-117.77999877929688", + "elevation_ft": "1890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ford", + "scheduled_service": "no", + "gps_code": "7WA4", + "local_code": "7WA4" + }, + { + "id": "14453", + "ident": "7WA5", + "type": "small_airport", + "name": "Stuart Island Airpark", + "latitude_deg": "48.673379", + "longitude_deg": "-123.175439", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Friday Harbor", + "scheduled_service": "no", + "gps_code": "7WA5", + "iata_code": "SSW", + "local_code": "7WA5" + }, + { + "id": "14454", + "ident": "7WA6", + "type": "closed", + "name": "Prosser Hospital Heliport", + "latitude_deg": "46.208199", + "longitude_deg": "-119.764", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Prosser", + "scheduled_service": "no", + "keywords": "7WA6" + }, + { + "id": "14455", + "ident": "7WA7", + "type": "small_airport", + "name": "Mc Whorter Ranch Airport", + "latitude_deg": "46.313653", + "longitude_deg": "-119.615042", + "elevation_ft": "1356", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Prosser", + "scheduled_service": "no", + "keywords": "7WA7" + }, + { + "id": "14456", + "ident": "7WA8", + "type": "heliport", + "name": "Good Samaritan Hospital Heliport", + "latitude_deg": "47.17900085449219", + "longitude_deg": "-122.28900146484375", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Puyallup", + "scheduled_service": "no", + "gps_code": "7WA8", + "local_code": "7WA8" + }, + { + "id": "14457", + "ident": "7WA9", + "type": "heliport", + "name": "Ocean Beach Hospital Heliport", + "latitude_deg": "46.3026008605957", + "longitude_deg": "-124.04299926757812", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ilwaco", + "scheduled_service": "no", + "gps_code": "7WA9", + "local_code": "7WA9" + }, + { + "id": "14458", + "ident": "7WI0", + "type": "small_airport", + "name": "Turkey Bluff Airport", + "latitude_deg": "43.37300109863281", + "longitude_deg": "-91.10990142822266", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Ferryville", + "scheduled_service": "no", + "gps_code": "7WI0", + "local_code": "7WI0" + }, + { + "id": "14459", + "ident": "7WI1", + "type": "seaplane_base", + "name": "Little Clam Lake Seaplane Base", + "latitude_deg": "46.158599853515625", + "longitude_deg": "-90.8843002319336", + "elevation_ft": "1456", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Clam Lake", + "scheduled_service": "no", + "gps_code": "7WI1", + "local_code": "7WI1" + }, + { + "id": "14460", + "ident": "7WI2", + "type": "small_airport", + "name": "Higgins Airport", + "latitude_deg": "43.44300079345703", + "longitude_deg": "-89.1781997680664", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Rio", + "scheduled_service": "no", + "gps_code": "7WI2", + "local_code": "7WI2" + }, + { + "id": "14461", + "ident": "7WI3", + "type": "heliport", + "name": "St Vincent Hospital Heliport", + "latitude_deg": "44.501399993896484", + "longitude_deg": "-88.0114974975586", + "elevation_ft": "659", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Green Bay", + "scheduled_service": "no", + "gps_code": "7WI3", + "local_code": "7WI3" + }, + { + "id": "14462", + "ident": "7WI4", + "type": "small_airport", + "name": "Lewis Airport", + "latitude_deg": "44.300498962402344", + "longitude_deg": "-90.98789978027344", + "elevation_ft": "1041", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Black River Falls", + "scheduled_service": "no", + "gps_code": "7WI4", + "local_code": "7WI4" + }, + { + "id": "14463", + "ident": "7WI5", + "type": "small_airport", + "name": "Syvrud Airport", + "latitude_deg": "42.88249969482422", + "longitude_deg": "-89.40070343017578", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Brooklyn", + "scheduled_service": "no", + "gps_code": "7WI5", + "local_code": "7WI5" + }, + { + "id": "14464", + "ident": "7WI6", + "type": "small_airport", + "name": "Weatherbee Field", + "latitude_deg": "43.47050094604492", + "longitude_deg": "-89.35900115966797", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wyocena", + "scheduled_service": "no", + "gps_code": "7WI6", + "local_code": "7WI6" + }, + { + "id": "14465", + "ident": "7WI7", + "type": "closed", + "name": "Charlies Airport", + "latitude_deg": "45.158901", + "longitude_deg": "-90.1493", + "elevation_ft": "1490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Medford", + "scheduled_service": "no", + "keywords": "7WI7" + }, + { + "id": "14466", + "ident": "7WI8", + "type": "small_airport", + "name": "Crispy Cedars Airport", + "latitude_deg": "44.780722", + "longitude_deg": "-87.602737", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Brussels", + "scheduled_service": "no", + "gps_code": "7WI8", + "local_code": "7WI8" + }, + { + "id": "14467", + "ident": "7WI9", + "type": "small_airport", + "name": "Nett Construction Airport", + "latitude_deg": "43.829683", + "longitude_deg": "-88.326617", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Fond Du Lac", + "scheduled_service": "no", + "gps_code": "7WI9", + "local_code": "7WI9" + }, + { + "id": "326181", + "ident": "7WV2", + "type": "heliport", + "name": "Greenbrier Valley Medical Center Heliport", + "latitude_deg": "37.772052", + "longitude_deg": "-80.470338", + "elevation_ft": "2202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Ronceverte", + "scheduled_service": "no", + "gps_code": "7WV2", + "local_code": "7WV2" + }, + { + "id": "346259", + "ident": "7XA0", + "type": "heliport", + "name": "West Texas VA Health Care System Heliport", + "latitude_deg": "32.231997", + "longitude_deg": "-101.471531", + "elevation_ft": "2560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Big Spring", + "scheduled_service": "no", + "gps_code": "7XA0", + "local_code": "7XA0" + }, + { + "id": "345426", + "ident": "7XA2", + "type": "small_airport", + "name": "Sagebrush Airport", + "latitude_deg": "33.148726", + "longitude_deg": "-97.373993", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Justin", + "scheduled_service": "no", + "gps_code": "7XA2", + "local_code": "7XA2" + }, + { + "id": "346924", + "ident": "7XA4", + "type": "small_airport", + "name": "Buckshot Ranch Airport", + "latitude_deg": "31.161201", + "longitude_deg": "-97.302523", + "elevation_ft": "721", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "7XA4", + "local_code": "7XA4" + }, + { + "id": "329589", + "ident": "7XA7", + "type": "heliport", + "name": "The Post Oak Heliport", + "latitude_deg": "29.752034", + "longitude_deg": "-95.457204", + "elevation_ft": "534", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "7XA7", + "local_code": "7XA7" + }, + { + "id": "14468", + "ident": "7XS0", + "type": "small_airport", + "name": "Polly Ranch Airport", + "latitude_deg": "29.50469970703125", + "longitude_deg": "-95.17549896240234", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Friendswood", + "scheduled_service": "no", + "gps_code": "7XS0", + "local_code": "7XS0" + }, + { + "id": "14469", + "ident": "7XS1", + "type": "closed", + "name": "Flying E Ranch Airport", + "latitude_deg": "32.993301", + "longitude_deg": "-97.676903", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Springtown", + "scheduled_service": "no", + "keywords": "7XS1" + }, + { + "id": "14470", + "ident": "7XS2", + "type": "closed", + "name": "Kenley's Mustang Prairie Ranch Airport", + "latitude_deg": "31.242399", + "longitude_deg": "-95.604103", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crockett", + "scheduled_service": "no", + "keywords": "7XS2" + }, + { + "id": "14471", + "ident": "7XS3", + "type": "small_airport", + "name": "W C Ranch Airport", + "latitude_deg": "31.475385", + "longitude_deg": "-95.634072", + "elevation_ft": "337", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Grapeland", + "scheduled_service": "no", + "gps_code": "7XS3", + "local_code": "7XS3" + }, + { + "id": "14472", + "ident": "7XS4", + "type": "heliport", + "name": "Durwood Greene Construction Company Heliport", + "latitude_deg": "29.62809944152832", + "longitude_deg": "-95.55670166015625", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Stafford", + "scheduled_service": "no", + "gps_code": "7XS4", + "local_code": "7XS4" + }, + { + "id": "14473", + "ident": "7XS5", + "type": "closed", + "name": "Christian Ranch Airport", + "latitude_deg": "30.8603", + "longitude_deg": "-100.567", + "elevation_ft": "2425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eldorado", + "scheduled_service": "no", + "keywords": "7XS5" + }, + { + "id": "14474", + "ident": "7XS6", + "type": "small_airport", + "name": "Moore Hx Ranch Airport", + "latitude_deg": "31.79439926147461", + "longitude_deg": "-96.20800018310547", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "7XS6", + "local_code": "7XS6" + }, + { + "id": "14475", + "ident": "7XS7", + "type": "small_airport", + "name": "Indian Springs Ranch Airport", + "latitude_deg": "30.114700317382812", + "longitude_deg": "-98.93109893798828", + "elevation_ft": "2030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fredericksburg", + "scheduled_service": "no", + "gps_code": "7XS7", + "local_code": "7XS7" + }, + { + "id": "14476", + "ident": "7XS8", + "type": "heliport", + "name": "Lift Crane Heliport", + "latitude_deg": "29.638095", + "longitude_deg": "-95.456963", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "7XS8", + "local_code": "7XS8", + "keywords": "Houston Police Department Southwest Heliport" + }, + { + "id": "14477", + "ident": "7XS9", + "type": "heliport", + "name": "Pearce Industries Heliport", + "latitude_deg": "29.65019989013672", + "longitude_deg": "-95.46050262451172", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "7XS9", + "local_code": "7XS9" + }, + { + "id": "14478", + "ident": "7Y2", + "type": "small_airport", + "name": "Thompsonville Airport", + "latitude_deg": "44.518846", + "longitude_deg": "-85.968704", + "elevation_ft": "793", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Thompsonville", + "scheduled_service": "no", + "local_code": "7Y2" + }, + { + "id": "14479", + "ident": "7Y3", + "type": "small_airport", + "name": "Backus Municipal Airport", + "latitude_deg": "46.826900482177734", + "longitude_deg": "-94.5072021484375", + "elevation_ft": "1355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Backus", + "scheduled_service": "no", + "gps_code": "7Y3", + "local_code": "7Y3" + }, + { + "id": "14480", + "ident": "7Y7", + "type": "closed", + "name": "A.R.S. Sport Strip", + "latitude_deg": "44.666598", + "longitude_deg": "-93.783602", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Belle Plaine", + "scheduled_service": "no", + "keywords": "7Y7" + }, + { + "id": "14481", + "ident": "7Y9", + "type": "small_airport", + "name": "Big Falls Municipal Airport", + "latitude_deg": "48.19580078125", + "longitude_deg": "-93.76679992675781", + "elevation_ft": "1232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Big Falls", + "scheduled_service": "no", + "gps_code": "7Y9", + "local_code": "7Y9" + }, + { + "id": "11486", + "ident": "80AK", + "type": "seaplane_base", + "name": "Morvro Lake Seaplane Base", + "latitude_deg": "61.60200119018555", + "longitude_deg": "-149.78399658203125", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "80AK", + "local_code": "80AK", + "keywords": "Formerly 4K2" + }, + { + "id": "14482", + "ident": "80AR", + "type": "small_airport", + "name": "Price Field", + "latitude_deg": "35.500099182128906", + "longitude_deg": "-90.2583999633789", + "elevation_ft": "236", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Joiner", + "scheduled_service": "no", + "gps_code": "80AR", + "local_code": "80AR" + }, + { + "id": "14483", + "ident": "80C", + "type": "small_airport", + "name": "Lone Hickory Airport", + "latitude_deg": "36.060444", + "longitude_deg": "-80.69016", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Yadkinville", + "scheduled_service": "no", + "local_code": "80C", + "keywords": "NC74" + }, + { + "id": "14484", + "ident": "80CA", + "type": "small_airport", + "name": "Bacchi Valley Industries Airport", + "latitude_deg": "38.817133", + "longitude_deg": "-120.922541", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lotus", + "scheduled_service": "no", + "gps_code": "80CA", + "local_code": "80CA" + }, + { + "id": "14485", + "ident": "80CL", + "type": "heliport", + "name": "Blythe Service Center Heliport", + "latitude_deg": "33.604879", + "longitude_deg": "-114.602305", + "elevation_ft": "297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Blythe", + "scheduled_service": "no", + "gps_code": "80CL", + "local_code": "80CL", + "keywords": "blythe, blythe service center" + }, + { + "id": "322213", + "ident": "80CN", + "type": "heliport", + "name": "US Border Patrol Campo Heliport", + "latitude_deg": "32.716072", + "longitude_deg": "-116.450054", + "elevation_ft": "3275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pine Valley", + "scheduled_service": "no", + "gps_code": "80CN", + "local_code": "80CN" + }, + { + "id": "14486", + "ident": "80CO", + "type": "small_airport", + "name": "Simonson Field", + "latitude_deg": "38.15169906616211", + "longitude_deg": "-104.70600128173828", + "elevation_ft": "5130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Pueblo", + "scheduled_service": "no", + "gps_code": "80CO", + "local_code": "80CO" + }, + { + "id": "14487", + "ident": "80E", + "type": "closed", + "name": "Oscura Army Air Field Auxilary Airport", + "latitude_deg": "33.490732", + "longitude_deg": "-106.18372", + "elevation_ft": "4500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Oscuro", + "scheduled_service": "no", + "local_code": "80E" + }, + { + "id": "321920", + "ident": "80FA", + "type": "seaplane_base", + "name": "Lake Marian Seaplane Base", + "latitude_deg": "27.8863889", + "longitude_deg": "-81.0838888", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Kenansville", + "scheduled_service": "no", + "gps_code": "80FA", + "local_code": "80FA" + }, + { + "id": "14488", + "ident": "80FD", + "type": "small_airport", + "name": "Brady Ranch Airport", + "latitude_deg": "27.113399505615234", + "longitude_deg": "-80.6333999633789", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Indiantown", + "scheduled_service": "no", + "gps_code": "80FD", + "local_code": "80FD" + }, + { + "id": "14489", + "ident": "80FL", + "type": "heliport", + "name": "Northwest Florida Community Hospital Heliport", + "latitude_deg": "30.765957", + "longitude_deg": "-85.543769", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Chipley", + "scheduled_service": "no", + "gps_code": "80FL", + "local_code": "80FL" + }, + { + "id": "14490", + "ident": "80G", + "type": "small_airport", + "name": "Tri-City Airport", + "latitude_deg": "40.247798919677734", + "longitude_deg": "-81.73600006103516", + "elevation_ft": "844", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "West Lafayette", + "scheduled_service": "no", + "gps_code": "80G", + "local_code": "80G" + }, + { + "id": "14491", + "ident": "80GA", + "type": "small_airport", + "name": "Murphy's Landing Airport", + "latitude_deg": "33.259103", + "longitude_deg": "-84.844937", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Grantville", + "scheduled_service": "no", + "gps_code": "80GA", + "local_code": "80GA" + }, + { + "id": "345297", + "ident": "80ID", + "type": "heliport", + "name": "St Luke's Magic Valley Heliport", + "latitude_deg": "42.591282", + "longitude_deg": "-114.496567", + "elevation_ft": "3686", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Twin Falls", + "scheduled_service": "no", + "gps_code": "80ID", + "local_code": "80ID" + }, + { + "id": "14492", + "ident": "80IN", + "type": "small_airport", + "name": "Gustin's /Private/ Airport", + "latitude_deg": "41.204200744599994", + "longitude_deg": "-84.8051986694", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Harlan", + "scheduled_service": "no", + "gps_code": "80IN", + "local_code": "80IN" + }, + { + "id": "14493", + "ident": "80IS", + "type": "closed", + "name": "Martin Airport", + "latitude_deg": "39.417155", + "longitude_deg": "-90.591443", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hillview", + "scheduled_service": "no", + "gps_code": "80IS", + "local_code": "80IS" + }, + { + "id": "35131", + "ident": "80KS", + "type": "small_airport", + "name": "Gilley's Airport", + "latitude_deg": "38.157798767100005", + "longitude_deg": "-97.19309997559999", + "elevation_ft": "1427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Peabody", + "scheduled_service": "no", + "local_code": "80KS", + "keywords": "9KS8" + }, + { + "id": "14494", + "ident": "80KY", + "type": "small_airport", + "name": "David Lowe Airport", + "latitude_deg": "37.39619827270508", + "longitude_deg": "-87.2354965209961", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Sacramento", + "scheduled_service": "no", + "gps_code": "80KY", + "local_code": "80KY" + }, + { + "id": "14495", + "ident": "80L", + "type": "heliport", + "name": "Los Angeles County Fire Station 123 Heliport", + "latitude_deg": "34.38486", + "longitude_deg": "-118.41451", + "elevation_ft": "1805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Clarita", + "scheduled_service": "no", + "gps_code": "K80L", + "local_code": "80L" + }, + { + "id": "14496", + "ident": "80LA", + "type": "closed", + "name": "Luscombe Lane 1 Airport", + "latitude_deg": "30.4263", + "longitude_deg": "-92.318199", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Eunice", + "scheduled_service": "no", + "keywords": "80LA" + }, + { + "id": "45473", + "ident": "80MA", + "type": "heliport", + "name": "Tew Mac Heliport", + "latitude_deg": "42.5975", + "longitude_deg": "-71.205", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Tewksbury", + "scheduled_service": "no", + "gps_code": "80MA", + "local_code": "80MA" + }, + { + "id": "346430", + "ident": "80MI", + "type": "heliport", + "name": "Fox Hollow Heliport", + "latitude_deg": "42.944423", + "longitude_deg": "-85.513029", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ada", + "scheduled_service": "no", + "gps_code": "80MI", + "local_code": "80MI" + }, + { + "id": "336194", + "ident": "80MN", + "type": "heliport", + "name": "North Shore Health Heliport", + "latitude_deg": "47.757012", + "longitude_deg": "-90.341161", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Grand Marais", + "scheduled_service": "no", + "gps_code": "80MN", + "local_code": "80MN" + }, + { + "id": "45504", + "ident": "80MO", + "type": "small_airport", + "name": "Seiferd Field", + "latitude_deg": "37.276536", + "longitude_deg": "-94.351897", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Carthage", + "scheduled_service": "no", + "gps_code": "80MO", + "local_code": "80MO" + }, + { + "id": "14497", + "ident": "80MU", + "type": "closed", + "name": "Springfield Community Hospital Heliport", + "latitude_deg": "37.152", + "longitude_deg": "-93.279404", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Springfield", + "scheduled_service": "no", + "keywords": "80MU" + }, + { + "id": "14498", + "ident": "80NC", + "type": "small_airport", + "name": "May Airport", + "latitude_deg": "35.999000549316406", + "longitude_deg": "-79.68930053710938", + "elevation_ft": "777", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Greensboro", + "scheduled_service": "no", + "gps_code": "80NC", + "local_code": "80NC" + }, + { + "id": "14499", + "ident": "80ND", + "type": "small_airport", + "name": "Troy Field", + "latitude_deg": "48.87860107421875", + "longitude_deg": "-103.37000274658203", + "elevation_ft": "2080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Crosby", + "scheduled_service": "no", + "gps_code": "80ND", + "local_code": "80ND" + }, + { + "id": "14500", + "ident": "80NE", + "type": "small_airport", + "name": "R & R Farms Airport", + "latitude_deg": "40.281700134277344", + "longitude_deg": "-97.85420227050781", + "elevation_ft": "1620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Davenport", + "scheduled_service": "no", + "gps_code": "80NE", + "local_code": "80NE" + }, + { + "id": "14501", + "ident": "80NJ", + "type": "heliport", + "name": "Middletown Township Police Heliport", + "latitude_deg": "40.38710021972656", + "longitude_deg": "-74.08789825439453", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Red Bank", + "scheduled_service": "no", + "gps_code": "80NJ", + "local_code": "80NJ" + }, + { + "id": "325017", + "ident": "80NR", + "type": "heliport", + "name": "Wakemed North Hospital Heliport", + "latitude_deg": "35.909444", + "longitude_deg": "-78.5975", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Raleigh", + "scheduled_service": "no", + "gps_code": "80NR", + "local_code": "80NR" + }, + { + "id": "14502", + "ident": "80OH", + "type": "small_airport", + "name": "Griffin-Sloas Airport", + "latitude_deg": "41.269031", + "longitude_deg": "-80.753508", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Warren", + "scheduled_service": "no", + "gps_code": "80OH", + "local_code": "80OH" + }, + { + "id": "14503", + "ident": "80OI", + "type": "heliport", + "name": "Cleveland Clinic South Pointe Heliport", + "latitude_deg": "41.446742", + "longitude_deg": "-81.538206", + "elevation_ft": "1014", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Warrensville Heights", + "scheduled_service": "no", + "gps_code": "80OI", + "local_code": "80OI", + "keywords": "Northfield, Brentwood Ambulatory Care Center" + }, + { + "id": "14504", + "ident": "80OK", + "type": "closed", + "name": "Flying S Ranch Airport", + "latitude_deg": "35.576698", + "longitude_deg": "-99.8862", + "elevation_ft": "2440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Reydon", + "scheduled_service": "no", + "keywords": "80OK" + }, + { + "id": "14505", + "ident": "80OR", + "type": "small_airport", + "name": "Wilderness Airport", + "latitude_deg": "42.36429977416992", + "longitude_deg": "-120.96600341796875", + "elevation_ft": "4540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Bly", + "scheduled_service": "no", + "gps_code": "80OR", + "local_code": "80OR" + }, + { + "id": "14506", + "ident": "80PA", + "type": "heliport", + "name": "Pamco Pa Heliport", + "latitude_deg": "41.36899948120117", + "longitude_deg": "-75.67739868164062", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Moosic", + "scheduled_service": "no", + "gps_code": "80PA", + "local_code": "80PA" + }, + { + "id": "14507", + "ident": "80PN", + "type": "small_airport", + "name": "Hanny Beaver Airpark Inc Airport", + "latitude_deg": "40.54169845581055", + "longitude_deg": "-80.45259857177734", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hookstown", + "scheduled_service": "no", + "gps_code": "80PN", + "local_code": "80PN" + }, + { + "id": "14508", + "ident": "80S", + "type": "small_airport", + "name": "Lavina Airport", + "latitude_deg": "46.30720138549805", + "longitude_deg": "-108.95600128173828", + "elevation_ft": "3490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Lavina", + "scheduled_service": "no", + "gps_code": "80S", + "local_code": "80S" + }, + { + "id": "338552", + "ident": "80SD", + "type": "small_airport", + "name": "Comstock Field", + "latitude_deg": "45.772675", + "longitude_deg": "-98.352894", + "elevation_ft": "1332", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "80SD", + "local_code": "80SD" + }, + { + "id": "14509", + "ident": "80TA", + "type": "heliport", + "name": "Porta-Kamp 12th Street Heliport", + "latitude_deg": "29.791304", + "longitude_deg": "-95.444345", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "80TA", + "local_code": "80TA" + }, + { + "id": "14510", + "ident": "80TE", + "type": "heliport", + "name": "Opela Heliport", + "latitude_deg": "32.9557991027832", + "longitude_deg": "-96.91310119628906", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Carrollton", + "scheduled_service": "no", + "gps_code": "80TE", + "local_code": "80TE" + }, + { + "id": "14511", + "ident": "80TN", + "type": "small_airport", + "name": "Big T Airport", + "latitude_deg": "35.826698303222656", + "longitude_deg": "-84.33000183105469", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lenoir City", + "scheduled_service": "no", + "gps_code": "80TN", + "local_code": "80TN" + }, + { + "id": "14512", + "ident": "80TS", + "type": "small_airport", + "name": "M Y Ranch Airport", + "latitude_deg": "31.327699661254883", + "longitude_deg": "-95.572998046875", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crockett", + "scheduled_service": "no", + "gps_code": "80TS", + "local_code": "80TS" + }, + { + "id": "14513", + "ident": "80TX", + "type": "closed", + "name": "Resaca Airstrip", + "latitude_deg": "25.927082", + "longitude_deg": "-97.409048", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brownsville", + "scheduled_service": "no", + "local_code": "80TX", + "keywords": "80TX" + }, + { + "id": "14514", + "ident": "80V", + "type": "small_airport", + "name": "Medicine Bow Airport", + "latitude_deg": "41.88363", + "longitude_deg": "-106.18239", + "elevation_ft": "6646", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Medicine Bow", + "scheduled_service": "no", + "gps_code": "K80V", + "local_code": "80V" + }, + { + "id": "14515", + "ident": "80VA", + "type": "small_airport", + "name": "Holly Springs Airport", + "latitude_deg": "37.79130172729492", + "longitude_deg": "-77.82469940185547", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "80VA", + "local_code": "80VA" + }, + { + "id": "14516", + "ident": "80WA", + "type": "small_airport", + "name": "SFS Airpark", + "latitude_deg": "48.034584", + "longitude_deg": "-122.774881", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Hadlock", + "scheduled_service": "no", + "gps_code": "80WA", + "local_code": "80WA" + }, + { + "id": "14517", + "ident": "80WI", + "type": "small_airport", + "name": "Spring Creek Airport", + "latitude_deg": "44.02299880981445", + "longitude_deg": "-89.13849639892578", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Spring Lake", + "scheduled_service": "no", + "gps_code": "80WI", + "local_code": "80WI" + }, + { + "id": "349515", + "ident": "80XA", + "type": "small_airport", + "name": "Knight Trow Ranch Airport", + "latitude_deg": "32.487519", + "longitude_deg": "-95.954513", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Canton", + "scheduled_service": "no", + "gps_code": "80XA", + "local_code": "80XA" + }, + { + "id": "14518", + "ident": "80XS", + "type": "small_airport", + "name": "Three Acres Airport", + "latitude_deg": "33.6432991027832", + "longitude_deg": "-97.002197265625", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Woodbine", + "scheduled_service": "no", + "gps_code": "80XS", + "local_code": "80XS" + }, + { + "id": "14519", + "ident": "81AK", + "type": "small_airport", + "name": "McKinley Country Airport", + "latitude_deg": "62.577634", + "longitude_deg": "-150.23666", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Trapper Creek", + "scheduled_service": "no", + "gps_code": "81AK", + "local_code": "81AK" + }, + { + "id": "355099", + "ident": "81AL", + "type": "heliport", + "name": "Bibb Medical Center Heliport", + "latitude_deg": "32.95177", + "longitude_deg": "-87.14819", + "elevation_ft": "254", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Centreville", + "scheduled_service": "no", + "gps_code": "81AL", + "local_code": "81AL" + }, + { + "id": "14520", + "ident": "81AR", + "type": "closed", + "name": "Smith's Strip", + "latitude_deg": "34.750099", + "longitude_deg": "-91.848701", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Lonoke", + "scheduled_service": "no", + "keywords": "81AR" + }, + { + "id": "322197", + "ident": "81AZ", + "type": "heliport", + "name": "Hangar 5 Heliport", + "latitude_deg": "33.632496", + "longitude_deg": "-111.906604", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Scottsdale", + "scheduled_service": "no", + "gps_code": "81AZ", + "local_code": "81AZ" + }, + { + "id": "14521", + "ident": "81CA", + "type": "closed", + "name": "7-M Ranch Airport", + "latitude_deg": "38.731602", + "longitude_deg": "-122.563004", + "elevation_ft": "1153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Middletown", + "scheduled_service": "no", + "keywords": "81CA" + }, + { + "id": "14522", + "ident": "81CL", + "type": "heliport", + "name": "Sandhill Heliport", + "latitude_deg": "37.92129898071289", + "longitude_deg": "-122.19599914550781", + "elevation_ft": "956", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Orinda", + "scheduled_service": "no", + "gps_code": "81CL", + "local_code": "81CL" + }, + { + "id": "14523", + "ident": "81CO", + "type": "small_airport", + "name": "Mesa 1 Airport", + "latitude_deg": "40.40610122680664", + "longitude_deg": "-106.82099914550781", + "elevation_ft": "7000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Steamboat Springs", + "scheduled_service": "no", + "gps_code": "81CO", + "local_code": "81CO" + }, + { + "id": "14524", + "ident": "81D", + "type": "small_airport", + "name": "Flyin Tiger Airport", + "latitude_deg": "29.264999389648438", + "longitude_deg": "-95.41190338134766", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Angleton", + "scheduled_service": "no", + "gps_code": "81D", + "local_code": "81D" + }, + { + "id": "322246", + "ident": "81FA", + "type": "heliport", + "name": "Johnson Ranch Heliport", + "latitude_deg": "27.033889", + "longitude_deg": "-80.166389", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Hobe Sound", + "scheduled_service": "no", + "gps_code": "81FA", + "local_code": "81FA" + }, + { + "id": "14525", + "ident": "81FD", + "type": "closed", + "name": "Flying H Heliport", + "latitude_deg": "26.917299", + "longitude_deg": "-80.199799", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jupiter", + "scheduled_service": "no", + "keywords": "81FD" + }, + { + "id": "14526", + "ident": "81FL", + "type": "closed", + "name": "Cox's Hammock Airport", + "latitude_deg": "27.071699", + "longitude_deg": "-80.520102", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Indiantown", + "scheduled_service": "no", + "keywords": "81FL" + }, + { + "id": "14527", + "ident": "81GA", + "type": "small_airport", + "name": "Lucky Lairds Landing Airport", + "latitude_deg": "33.6409", + "longitude_deg": "-84.9049", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Villa Rica", + "scheduled_service": "no", + "gps_code": "81GA", + "local_code": "81GA" + }, + { + "id": "14528", + "ident": "81II", + "type": "heliport", + "name": "Methodist Hospital of In. Inc. Heliport", + "latitude_deg": "39.78889846801758", + "longitude_deg": "-86.16230010986328", + "elevation_ft": "854", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "81II", + "local_code": "81II" + }, + { + "id": "14529", + "ident": "81IL", + "type": "small_airport", + "name": "Illinois Valley Parachute Club Airport", + "latitude_deg": "40.433943", + "longitude_deg": "-89.356585", + "elevation_ft": "646", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Minier", + "scheduled_service": "no", + "gps_code": "81IL", + "local_code": "81IL" + }, + { + "id": "45404", + "ident": "81IN", + "type": "seaplane_base", + "name": "Bass Lake Seaplane Base", + "latitude_deg": "41.228889", + "longitude_deg": "-86.581667", + "elevation_ft": "713", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Winona", + "scheduled_service": "no", + "gps_code": "01L", + "local_code": "01L", + "keywords": "81IN" + }, + { + "id": "14530", + "ident": "81KS", + "type": "small_airport", + "name": "Blackhawk Airport", + "latitude_deg": "39.15620040893555", + "longitude_deg": "-95.57749938964844", + "elevation_ft": "1015", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Meriden", + "scheduled_service": "no", + "gps_code": "81KS", + "local_code": "81KS" + }, + { + "id": "14531", + "ident": "81KY", + "type": "closed", + "name": "Hi Rise Farm Airport", + "latitude_deg": "38.5783", + "longitude_deg": "-85.017502", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "New Liberty", + "scheduled_service": "no", + "keywords": "81KY" + }, + { + "id": "14532", + "ident": "81L", + "type": "heliport", + "name": "Sheriff's Wayside Heliport", + "latitude_deg": "34.463548", + "longitude_deg": "-118.609623", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Valencia", + "scheduled_service": "no", + "local_code": "81L", + "keywords": "Los Angeles County Sheriff's Department Castaic" + }, + { + "id": "14533", + "ident": "81LA", + "type": "closed", + "name": "Mobil Cameron Heliport", + "latitude_deg": "29.7852", + "longitude_deg": "-93.325104", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cameron", + "scheduled_service": "no", + "keywords": "81LA" + }, + { + "id": "14534", + "ident": "81LL", + "type": "small_airport", + "name": "Otterbach Farm Airport", + "latitude_deg": "41.56919860839844", + "longitude_deg": "-89.17369842529297", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mendota", + "scheduled_service": "no", + "gps_code": "81LL", + "local_code": "81LL" + }, + { + "id": "45435", + "ident": "81LS", + "type": "heliport", + "name": "Richardson Medical Center Heliport", + "latitude_deg": "32.463538", + "longitude_deg": "-91.750022", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Rayville", + "scheduled_service": "no", + "gps_code": "81LS", + "local_code": "81LS", + "keywords": "Air Evac 100 Heliport" + }, + { + "id": "353871", + "ident": "81ME", + "type": "small_airport", + "name": "French Field", + "latitude_deg": "44.619892", + "longitude_deg": "-68.594611", + "elevation_ft": "338", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Ellsworth", + "scheduled_service": "no", + "gps_code": "81ME", + "local_code": "81ME" + }, + { + "id": "327278", + "ident": "81MI", + "type": "heliport", + "name": "Three Rivers Health Heliport", + "latitude_deg": "41.935475", + "longitude_deg": "-85.648708", + "elevation_ft": "818", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Three Rivers", + "scheduled_service": "no", + "gps_code": "81MI", + "local_code": "81MI" + }, + { + "id": "14535", + "ident": "81MN", + "type": "small_airport", + "name": "Ewen Landing Field", + "latitude_deg": "44.03049850463867", + "longitude_deg": "-95.19550323486328", + "elevation_ft": "1483", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Jeffers", + "scheduled_service": "no", + "gps_code": "81MN", + "local_code": "81MN" + }, + { + "id": "14536", + "ident": "81MO", + "type": "heliport", + "name": "Bates County Hospital Heliport", + "latitude_deg": "38.24829864501953", + "longitude_deg": "-94.34220123291016", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Butler", + "scheduled_service": "no", + "gps_code": "81MO", + "local_code": "81MO" + }, + { + "id": "14537", + "ident": "81MU", + "type": "heliport", + "name": "Mercy Hospital Springfield Heliport", + "latitude_deg": "37.179464", + "longitude_deg": "-93.27601", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "81MU", + "local_code": "81MU", + "keywords": "St John's Regional Health Center Heliport" + }, + { + "id": "14538", + "ident": "81NC", + "type": "small_airport", + "name": "Cox Field", + "latitude_deg": "34.0408325195", + "longitude_deg": "-78.7399978638", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Tabor City", + "scheduled_service": "no", + "gps_code": "81NC", + "local_code": "81NC" + }, + { + "id": "14539", + "ident": "81ND", + "type": "small_airport", + "name": "Millers Airstrip", + "latitude_deg": "48.38859939575195", + "longitude_deg": "-101.04499816894531", + "elevation_ft": "1545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Deering", + "scheduled_service": "no", + "gps_code": "81ND", + "local_code": "81ND" + }, + { + "id": "14540", + "ident": "81NE", + "type": "small_airport", + "name": "Bunger Field", + "latitude_deg": "40.27360153198242", + "longitude_deg": "-99.00789642333984", + "elevation_ft": "2170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hildreth", + "scheduled_service": "no", + "gps_code": "81NE", + "local_code": "81NE" + }, + { + "id": "14541", + "ident": "81NJ", + "type": "heliport", + "name": "Hall's No 1 Heliport", + "latitude_deg": "40.57509994506836", + "longitude_deg": "-74.56539916992188", + "elevation_ft": "94", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Somerville", + "scheduled_service": "no", + "gps_code": "81NJ", + "local_code": "81NJ" + }, + { + "id": "14542", + "ident": "81NM", + "type": "small_airport", + "name": "Diamond A Ranch Airport", + "latitude_deg": "33.345453", + "longitude_deg": "-105.173096", + "elevation_ft": "5056", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Picacho", + "scheduled_service": "no", + "gps_code": "81NM", + "local_code": "81NM" + }, + { + "id": "14543", + "ident": "81OH", + "type": "closed", + "name": "Elbel Airport", + "latitude_deg": "38.891701", + "longitude_deg": "-83.983002", + "elevation_ft": "975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Hamersville", + "scheduled_service": "no", + "keywords": "81OH" + }, + { + "id": "14544", + "ident": "81OI", + "type": "heliport", + "name": "Brown Heliport", + "latitude_deg": "39.08060073852539", + "longitude_deg": "-84.60189819335938", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cincinnati", + "scheduled_service": "no", + "gps_code": "81OI", + "local_code": "81OI" + }, + { + "id": "14545", + "ident": "81OK", + "type": "small_airport", + "name": "Twin Lakes Ranch Airport", + "latitude_deg": "35.02640151977539", + "longitude_deg": "-99.33940124511719", + "elevation_ft": "1630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Granite", + "scheduled_service": "no", + "gps_code": "81OK", + "local_code": "81OK" + }, + { + "id": "14546", + "ident": "81OR", + "type": "small_airport", + "name": "Wagontire Airport", + "latitude_deg": "43.249900817871094", + "longitude_deg": "-119.875", + "elevation_ft": "4725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Burns", + "scheduled_service": "no", + "gps_code": "81OR", + "local_code": "81OR" + }, + { + "id": "14547", + "ident": "81PA", + "type": "heliport", + "name": "Derf Haus Heliport", + "latitude_deg": "41.863399505615234", + "longitude_deg": "-75.54070281982422", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Thompson", + "scheduled_service": "no", + "gps_code": "81PA", + "local_code": "81PA" + }, + { + "id": "14548", + "ident": "81PN", + "type": "heliport", + "name": "Armstrong County Memorial Hospital Heliport", + "latitude_deg": "40.81119918823242", + "longitude_deg": "-79.54810333251953", + "elevation_ft": "1157", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Kittanning", + "scheduled_service": "no", + "gps_code": "81PN", + "local_code": "81PN" + }, + { + "id": "14549", + "ident": "81TA", + "type": "heliport", + "name": "Masterson Heliport", + "latitude_deg": "29.55660057067871", + "longitude_deg": "-98.92949676513672", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mico", + "scheduled_service": "no", + "gps_code": "81TA", + "local_code": "81TA" + }, + { + "id": "14550", + "ident": "81TE", + "type": "small_airport", + "name": "Horn Ranch Airport", + "latitude_deg": "29.541900634765625", + "longitude_deg": "-100.61699676513672", + "elevation_ft": "1290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no", + "gps_code": "81TE", + "local_code": "81TE" + }, + { + "id": "14551", + "ident": "81TS", + "type": "closed", + "name": "Dibrell Airport", + "latitude_deg": "31.443304", + "longitude_deg": "-95.276191", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crockett", + "scheduled_service": "no", + "keywords": "81TS" + }, + { + "id": "14552", + "ident": "81TX", + "type": "closed", + "name": "La Leona Airport", + "latitude_deg": "29.3433", + "longitude_deg": "-103.565001", + "elevation_ft": "2590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Terlingua", + "scheduled_service": "no", + "keywords": "81TX" + }, + { + "id": "14553", + "ident": "81VA", + "type": "small_airport", + "name": "Ferguson Airport", + "latitude_deg": "37.117221", + "longitude_deg": "-79.787048", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Wirtz", + "scheduled_service": "no", + "gps_code": "81VA", + "local_code": "81VA" + }, + { + "id": "14554", + "ident": "81WA", + "type": "heliport", + "name": "Jobe Skis Plant 1 Heliport", + "latitude_deg": "47.68539810180664", + "longitude_deg": "-122.13600158691406", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Redmond", + "scheduled_service": "no", + "gps_code": "81WA", + "local_code": "81WA" + }, + { + "id": "14555", + "ident": "81WI", + "type": "closed", + "name": "Gunner Field", + "latitude_deg": "45.0786041", + "longitude_deg": "-90.176498", + "elevation_ft": "1465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Athens", + "scheduled_service": "no", + "keywords": "81WI" + }, + { + "id": "14556", + "ident": "81XS", + "type": "heliport", + "name": "Post Oak Central Heliport", + "latitude_deg": "29.72909927368164", + "longitude_deg": "-95.4646987915039", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "81XS", + "local_code": "81XS" + }, + { + "id": "14557", + "ident": "82AK", + "type": "closed", + "name": "Jim's Landing Airport", + "latitude_deg": "61.615518", + "longitude_deg": "-149.189315", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "keywords": "82AK" + }, + { + "id": "14558", + "ident": "82CA", + "type": "heliport", + "name": "SCE Moorpark Substation Heliport", + "latitude_deg": "34.281799", + "longitude_deg": "-118.904542", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Moorpark", + "scheduled_service": "no", + "gps_code": "82CA", + "local_code": "82CA" + }, + { + "id": "45423", + "ident": "82CD", + "type": "heliport", + "name": "Creech Heliport", + "latitude_deg": "38.081583", + "longitude_deg": "-84.31825", + "elevation_ft": "1001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "82CD", + "local_code": "82CD" + }, + { + "id": "14559", + "ident": "82CL", + "type": "small_airport", + "name": "Fort Bragg Airport", + "latitude_deg": "39.4743003845", + "longitude_deg": "-123.79599762", + "elevation_ft": "71", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fort Bragg", + "scheduled_service": "no", + "gps_code": "82CL", + "iata_code": "FOB", + "local_code": "82CL" + }, + { + "id": "14560", + "ident": "82CO", + "type": "heliport", + "name": "Mountain Bell Heliport", + "latitude_deg": "39.09749984741211", + "longitude_deg": "-108.58399963378906", + "elevation_ft": "4580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Grand Junction", + "scheduled_service": "no", + "gps_code": "82CO", + "local_code": "82CO" + }, + { + "id": "14561", + "ident": "82D", + "type": "closed", + "name": "Weiker Airport", + "latitude_deg": "41.229198", + "longitude_deg": "-83.029099", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Green Springs", + "scheduled_service": "no", + "keywords": "82D" + }, + { + "id": "335876", + "ident": "82FA", + "type": "heliport", + "name": "Airrep Heliport", + "latitude_deg": "30.488626", + "longitude_deg": "-86.19166", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Freeport", + "scheduled_service": "no", + "gps_code": "82FA", + "local_code": "82FA" + }, + { + "id": "14562", + "ident": "82FD", + "type": "heliport", + "name": "Atc Heliport", + "latitude_deg": "26.98870086669922", + "longitude_deg": "-80.0927963256836", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jupiter", + "scheduled_service": "no", + "gps_code": "82FD", + "local_code": "82FD" + }, + { + "id": "14563", + "ident": "82FL", + "type": "closed", + "name": "BR Ranch Airport", + "latitude_deg": "26.9142", + "longitude_deg": "-80.205299", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jupiter", + "scheduled_service": "no", + "keywords": "82FL" + }, + { + "id": "14564", + "ident": "82GA", + "type": "small_airport", + "name": "Paces South Farms Airport", + "latitude_deg": "32.808799743652344", + "longitude_deg": "-82.38529968261719", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Wadley", + "scheduled_service": "no", + "gps_code": "82GA", + "local_code": "82GA" + }, + { + "id": "330515", + "ident": "82IL", + "type": "heliport", + "name": "Mercyhealth System-Riverside Heliport", + "latitude_deg": "42.315222", + "longitude_deg": "-88.960166", + "elevation_ft": "908", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rockford", + "scheduled_service": "no", + "gps_code": "82IL", + "local_code": "82IL", + "keywords": "Javon Beal Hospital" + }, + { + "id": "14565", + "ident": "82IN", + "type": "small_airport", + "name": "Hunter Airport", + "latitude_deg": "40.981201171875", + "longitude_deg": "-85.92919921875", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "North Manchester", + "scheduled_service": "no", + "gps_code": "82IN", + "local_code": "82IN" + }, + { + "id": "14566", + "ident": "82IS", + "type": "small_airport", + "name": "Landings Condominium Airport", + "latitude_deg": "42.14310073852539", + "longitude_deg": "-88.40290069580078", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Huntley", + "scheduled_service": "no", + "gps_code": "82IS", + "local_code": "82IS" + }, + { + "id": "345611", + "ident": "82KS", + "type": "small_airport", + "name": "Greg Post Farms Airport", + "latitude_deg": "38.012073", + "longitude_deg": "-94.857872", + "elevation_ft": "884", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Mapleton", + "scheduled_service": "no", + "gps_code": "82KS", + "local_code": "82KS" + }, + { + "id": "14567", + "ident": "82KY", + "type": "small_airport", + "name": "Woodledge Farm Airport", + "latitude_deg": "38.28340148925781", + "longitude_deg": "-85.48190307617188", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Crestwood", + "scheduled_service": "no", + "gps_code": "82KY", + "local_code": "82KY" + }, + { + "id": "14568", + "ident": "82LA", + "type": "small_airport", + "name": "Fisher's Field", + "latitude_deg": "29.93239974975586", + "longitude_deg": "-89.93280029296875", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Chalmette", + "scheduled_service": "no", + "gps_code": "82LA", + "local_code": "82LA" + }, + { + "id": "14569", + "ident": "82LL", + "type": "closed", + "name": "Cheechako Airport", + "latitude_deg": "42.129501", + "longitude_deg": "-88.992302", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Monroe Center", + "scheduled_service": "no", + "keywords": "82LL" + }, + { + "id": "345497", + "ident": "82LS", + "type": "small_airport", + "name": "Lookout Point Airport", + "latitude_deg": "32.691119", + "longitude_deg": "-91.11008", + "elevation_ft": "86", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Transylvania", + "scheduled_service": "no", + "gps_code": "82LS", + "local_code": "82LS" + }, + { + "id": "14570", + "ident": "82MO", + "type": "heliport", + "name": "Cameron Community Hospital Heliport", + "latitude_deg": "39.7304556", + "longitude_deg": "-94.2189417", + "elevation_ft": "1016", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Cameron", + "scheduled_service": "no", + "gps_code": "82MO", + "local_code": "82MO" + }, + { + "id": "14571", + "ident": "82MU", + "type": "heliport", + "name": "Ktts Heliport", + "latitude_deg": "37.1963996887207", + "longitude_deg": "-93.32319641113281", + "elevation_ft": "1248", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "82MU", + "local_code": "82MU" + }, + { + "id": "14572", + "ident": "82NC", + "type": "small_airport", + "name": "Pineview Air Airport", + "latitude_deg": "35.308101654052734", + "longitude_deg": "-79.07330322265625", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Sanford", + "scheduled_service": "no", + "gps_code": "82NC", + "local_code": "82NC" + }, + { + "id": "353873", + "ident": "82NE", + "type": "small_airport", + "name": "DRC Airport", + "latitude_deg": "41.925195", + "longitude_deg": "-101.185257", + "elevation_ft": "3343", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Mullen", + "scheduled_service": "no", + "gps_code": "82NE", + "local_code": "82NE" + }, + { + "id": "45528", + "ident": "82NH", + "type": "heliport", + "name": "Summit Meadow Heliport", + "latitude_deg": "42.896841", + "longitude_deg": "-71.912779", + "elevation_ft": "1018", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Peterborough", + "scheduled_service": "no", + "gps_code": "82NH", + "local_code": "82NH" + }, + { + "id": "14573", + "ident": "82NJ", + "type": "closed", + "name": "Graphic Scanning Corporation Heliport", + "latitude_deg": "40.886204", + "longitude_deg": "-73.990704", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "West Englewood", + "scheduled_service": "no", + "keywords": "82NJ" + }, + { + "id": "14574", + "ident": "82NM", + "type": "small_airport", + "name": "Skeen Ranch Airport", + "latitude_deg": "33.16879", + "longitude_deg": "-105.133201", + "elevation_ft": "5524", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Hondo", + "scheduled_service": "no", + "gps_code": "82NM", + "local_code": "82NM" + }, + { + "id": "299714", + "ident": "82NY", + "type": "small_airport", + "name": "Silvernails Field", + "latitude_deg": "42.001389", + "longitude_deg": "-73.67111", + "elevation_ft": "571", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Gallatin", + "scheduled_service": "no", + "gps_code": "82NY", + "local_code": "82NY" + }, + { + "id": "14575", + "ident": "82OH", + "type": "small_airport", + "name": "Rocky Ridge Airpark", + "latitude_deg": "41.5078010559082", + "longitude_deg": "-83.77130126953125", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Waterville", + "scheduled_service": "no", + "gps_code": "82OH", + "local_code": "82OH" + }, + { + "id": "14576", + "ident": "82OI", + "type": "small_airport", + "name": "J-Em Farm Airport", + "latitude_deg": "40.15420150756836", + "longitude_deg": "-83.27490234375", + "elevation_ft": "1005", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "82OI", + "local_code": "82OI" + }, + { + "id": "14577", + "ident": "82OK", + "type": "heliport", + "name": "Ascension Saint John Sapulpa Heliport", + "latitude_deg": "35.993146", + "longitude_deg": "-96.099575", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Sapulpa", + "scheduled_service": "no", + "gps_code": "82OK", + "local_code": "82OK" + }, + { + "id": "14578", + "ident": "82OR", + "type": "small_airport", + "name": "Lost Creek Airport", + "latitude_deg": "43.89929962158203", + "longitude_deg": "-122.81700134277344", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Dexter", + "scheduled_service": "no", + "gps_code": "82OR", + "local_code": "82OR" + }, + { + "id": "14579", + "ident": "82PA", + "type": "small_airport", + "name": "Frame Field", + "latitude_deg": "40.39670181274414", + "longitude_deg": "-80.3052978515625", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Candor", + "scheduled_service": "no", + "gps_code": "82PA", + "local_code": "82PA" + }, + { + "id": "14581", + "ident": "82TA", + "type": "heliport", + "name": "Gellhorn Pad Heliport", + "latitude_deg": "29.780799865722656", + "longitude_deg": "-95.26850128173828", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "82TA", + "local_code": "82TA" + }, + { + "id": "14582", + "ident": "82TE", + "type": "closed", + "name": "Tarry Bank Airport", + "latitude_deg": "29.691602", + "longitude_deg": "-98.707498", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Leon Springs", + "scheduled_service": "no", + "keywords": "82TE" + }, + { + "id": "14583", + "ident": "82TS", + "type": "small_airport", + "name": "Elmdale Airpark", + "latitude_deg": "32.450872", + "longitude_deg": "-99.648785", + "elevation_ft": "1775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Abilene", + "scheduled_service": "no", + "gps_code": "82TS", + "local_code": "82TS", + "keywords": "6F4" + }, + { + "id": "14584", + "ident": "82TX", + "type": "heliport", + "name": "St Joseph Hospital Heliport", + "latitude_deg": "30.657100677490234", + "longitude_deg": "-96.34750366210938", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bryan", + "scheduled_service": "no", + "gps_code": "82TX", + "local_code": "82TX" + }, + { + "id": "14585", + "ident": "82VA", + "type": "small_airport", + "name": "Root Field", + "latitude_deg": "38.17319869995117", + "longitude_deg": "-78.96920013427734", + "elevation_ft": "1290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Verona", + "scheduled_service": "no", + "gps_code": "82VA", + "local_code": "82VA" + }, + { + "id": "14586", + "ident": "82WA", + "type": "heliport", + "name": "Kittitas Valley Healthcare Heliport", + "latitude_deg": "46.9876555", + "longitude_deg": "-120.5378194", + "elevation_ft": "1597", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ellensburg", + "scheduled_service": "no", + "gps_code": "82WA", + "local_code": "82WA" + }, + { + "id": "14587", + "ident": "82WI", + "type": "small_airport", + "name": "Triple S Ranch Airport", + "latitude_deg": "44.149200439453125", + "longitude_deg": "-87.81439971923828", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Whitelaw", + "scheduled_service": "no", + "gps_code": "82WI", + "local_code": "82WI" + }, + { + "id": "346844", + "ident": "82WN", + "type": "small_airport", + "name": "Magee Creek Aerodrome", + "latitude_deg": "48.361371", + "longitude_deg": "-118.140814", + "elevation_ft": "1945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Rice", + "scheduled_service": "no", + "gps_code": "82WN", + "local_code": "82WN" + }, + { + "id": "14588", + "ident": "82XS", + "type": "small_airport", + "name": "Circle P Ranch Airport", + "latitude_deg": "29.102699279785156", + "longitude_deg": "-98.2166976928711", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Floresville", + "scheduled_service": "no", + "gps_code": "82XS", + "local_code": "82XS" + }, + { + "id": "14589", + "ident": "83AK", + "type": "small_airport", + "name": "Tolovana Hot Springs Airport", + "latitude_deg": "65.25650024414062", + "longitude_deg": "-148.8300018310547", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fairbanks", + "scheduled_service": "no", + "gps_code": "83AK", + "local_code": "83AK" + }, + { + "id": "14590", + "ident": "83B", + "type": "seaplane_base", + "name": "Presque Isle Seaplane Base", + "latitude_deg": "46.7075", + "longitude_deg": "-68.061096", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Presque Isle", + "scheduled_service": "no", + "local_code": "83B", + "keywords": "Northern Maine Regional Seaplane Base" + }, + { + "id": "14591", + "ident": "83CA", + "type": "heliport", + "name": "The Met Heliport", + "latitude_deg": "33.688469", + "longitude_deg": "-117.877966", + "elevation_ft": "204", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Costa Mesa", + "scheduled_service": "no", + "gps_code": "83CA", + "local_code": "83CA", + "keywords": "South Coast Metro Center Heliport" + }, + { + "id": "14592", + "ident": "83CO", + "type": "heliport", + "name": "Snake River Health Services Inc Heliport", + "latitude_deg": "39.60419845581055", + "longitude_deg": "-105.95899963378906", + "elevation_ft": "9300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Keystone", + "scheduled_service": "no", + "gps_code": "83CO", + "local_code": "83CO" + }, + { + "id": "14593", + "ident": "83FD", + "type": "small_airport", + "name": "Lake Montaza Airport", + "latitude_deg": "27.580299377441406", + "longitude_deg": "-80.81529998779297", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Okeechobee", + "scheduled_service": "no", + "gps_code": "83FD", + "local_code": "83FD" + }, + { + "id": "14594", + "ident": "83FL", + "type": "small_airport", + "name": "Nassau Airport", + "latitude_deg": "30.618799209594727", + "longitude_deg": "-81.53369903564453", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Yulee", + "scheduled_service": "no", + "gps_code": "83FL", + "local_code": "83FL" + }, + { + "id": "14595", + "ident": "83GA", + "type": "small_airport", + "name": "Brock Airpark", + "latitude_deg": "30.99970054626465", + "longitude_deg": "-84.506103515625", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Bainbridge", + "scheduled_service": "no", + "gps_code": "83GA", + "local_code": "83GA" + }, + { + "id": "14596", + "ident": "83IA", + "type": "heliport", + "name": "Keokuk County Health Center Heliport", + "latitude_deg": "41.3224983215332", + "longitude_deg": "-92.20549774169922", + "elevation_ft": "753", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Sigourney", + "scheduled_service": "no", + "gps_code": "83IA", + "local_code": "83IA" + }, + { + "id": "14597", + "ident": "83IL", + "type": "small_airport", + "name": "Oltman-Shuck Airport", + "latitude_deg": "40.892799377441406", + "longitude_deg": "-89.10399627685547", + "elevation_ft": "736", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Minonk", + "scheduled_service": "no", + "gps_code": "83IL", + "local_code": "83IL" + }, + { + "id": "14598", + "ident": "83IN", + "type": "small_airport", + "name": "Goodenough Airport", + "latitude_deg": "40.73979949951172", + "longitude_deg": "-86.00050354003906", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Peru", + "scheduled_service": "no", + "gps_code": "83IN", + "local_code": "83IN" + }, + { + "id": "14599", + "ident": "83IS", + "type": "small_airport", + "name": "Prairie Airport", + "latitude_deg": "38.42639923095703", + "longitude_deg": "-89.1312026977539", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Irvington", + "scheduled_service": "no", + "gps_code": "83IS", + "local_code": "83IS" + }, + { + "id": "14600", + "ident": "83J", + "type": "closed", + "name": "Coastal Airport", + "latitude_deg": "30.5319", + "longitude_deg": "-87.3853", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pensacola", + "scheduled_service": "no", + "keywords": "83J" + }, + { + "id": "14601", + "ident": "83KS", + "type": "small_airport", + "name": "Miller Aeroplane Field", + "latitude_deg": "39.23529815673828", + "longitude_deg": "-96.29969787597656", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wamego", + "scheduled_service": "no", + "gps_code": "83KS", + "local_code": "83KS" + }, + { + "id": "14602", + "ident": "83KY", + "type": "heliport", + "name": "Works Heliport", + "latitude_deg": "38.98109817504883", + "longitude_deg": "-84.5447006225586", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Erlanger", + "scheduled_service": "no", + "gps_code": "83KY", + "local_code": "83KY" + }, + { + "id": "14603", + "ident": "83L", + "type": "heliport", + "name": "Southeast Superior Court Heliport", + "latitude_deg": "33.91360092163086", + "longitude_deg": "-118.072998046875", + "elevation_ft": "235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Norwalk", + "scheduled_service": "no", + "gps_code": "83L", + "local_code": "83L" + }, + { + "id": "14604", + "ident": "83LA", + "type": "closed", + "name": "Ledet Airfield", + "latitude_deg": "29.5555", + "longitude_deg": "-90.329498", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cut Off", + "scheduled_service": "no", + "keywords": "83LA" + }, + { + "id": "14605", + "ident": "83LL", + "type": "small_airport", + "name": "Lindauer Airport", + "latitude_deg": "38.3036003112793", + "longitude_deg": "-89.8551025390625", + "elevation_ft": "437", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "New Athens", + "scheduled_service": "no", + "gps_code": "83LL", + "local_code": "83LL" + }, + { + "id": "322210", + "ident": "83MI", + "type": "heliport", + "name": "St. Joseph Mercy Oakland-Bassett Street Helipad", + "latitude_deg": "42.612111", + "longitude_deg": "-83.27586", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Pontiac", + "scheduled_service": "no", + "gps_code": "83MI", + "local_code": "83MI" + }, + { + "id": "14606", + "ident": "83MN", + "type": "seaplane_base", + "name": "Ponderosa Seaplane Base", + "latitude_deg": "46.863098", + "longitude_deg": "-93.989403", + "elevation_ft": "1316", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Outing", + "scheduled_service": "no", + "keywords": "83MN" + }, + { + "id": "14607", + "ident": "83MO", + "type": "heliport", + "name": "North Kansas City Hospital Heliport", + "latitude_deg": "39.14939880371094", + "longitude_deg": "-94.55130004882812", + "elevation_ft": "411", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "North Kansas City", + "scheduled_service": "no", + "gps_code": "83MO", + "local_code": "83MO" + }, + { + "id": "14608", + "ident": "83MU", + "type": "closed", + "name": "Dalbom Ultralightport", + "latitude_deg": "36.769001", + "longitude_deg": "-94.212402", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Stella", + "scheduled_service": "no", + "keywords": "83MU" + }, + { + "id": "14609", + "ident": "83NC", + "type": "heliport", + "name": "Holly Green Heliport", + "latitude_deg": "35.922298431396484", + "longitude_deg": "-78.98809814453125", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Durham", + "scheduled_service": "no", + "gps_code": "83NC", + "local_code": "83NC" + }, + { + "id": "14610", + "ident": "83NE", + "type": "closed", + "name": "Abbott Airport", + "latitude_deg": "42.322943", + "longitude_deg": "-99.755845", + "elevation_ft": "2560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Long Pine", + "scheduled_service": "no", + "keywords": "83NE" + }, + { + "id": "14611", + "ident": "83NJ", + "type": "heliport", + "name": "Mac Millan Restricted Helistop", + "latitude_deg": "40.020401001", + "longitude_deg": "-74.96070098879999", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Delran", + "scheduled_service": "no", + "gps_code": "83NJ", + "local_code": "83NJ" + }, + { + "id": "14612", + "ident": "83NM", + "type": "small_airport", + "name": "King Ranch Airport", + "latitude_deg": "34.648101806640625", + "longitude_deg": "-108.00599670410156", + "elevation_ft": "7143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Pie Town", + "scheduled_service": "no", + "gps_code": "83NM", + "local_code": "83NM" + }, + { + "id": "14613", + "ident": "83NY", + "type": "heliport", + "name": "Norcross Helipad Heliport", + "latitude_deg": "43.12369918823242", + "longitude_deg": "-77.64969635009766", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Rochester", + "scheduled_service": "no", + "gps_code": "83NY", + "local_code": "83NY" + }, + { + "id": "346771", + "ident": "83OA", + "type": "small_airport", + "name": "Hufford Field", + "latitude_deg": "40.158611", + "longitude_deg": "-84.594167", + "elevation_ft": "1035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "83OA", + "local_code": "83OA" + }, + { + "id": "14614", + "ident": "83OH", + "type": "small_airport", + "name": "Adams Strip", + "latitude_deg": "40.062302", + "longitude_deg": "-84.379402", + "elevation_ft": "973", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Pleasant Hill", + "scheduled_service": "no", + "gps_code": "83OH", + "local_code": "83OH" + }, + { + "id": "14615", + "ident": "83OI", + "type": "heliport", + "name": "M P W Heliport", + "latitude_deg": "39.954498291015625", + "longitude_deg": "-82.52739715576172", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Hebron", + "scheduled_service": "no", + "gps_code": "83OI", + "local_code": "83OI" + }, + { + "id": "14616", + "ident": "83OK", + "type": "small_airport", + "name": "Sweetbriar Airport", + "latitude_deg": "35.25680160522461", + "longitude_deg": "-94.5780029296875", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Murry Spur", + "scheduled_service": "no", + "gps_code": "83OK", + "local_code": "83OK" + }, + { + "id": "14617", + "ident": "83OR", + "type": "small_airport", + "name": "Tamarack Springs Ranch Airport", + "latitude_deg": "45.50130081176758", + "longitude_deg": "-117.47200012207031", + "elevation_ft": "3445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Lostine", + "scheduled_service": "no", + "gps_code": "83OR", + "local_code": "83OR" + }, + { + "id": "14618", + "ident": "83PA", + "type": "heliport", + "name": "Mmc Heliport", + "latitude_deg": "40.31119918823242", + "longitude_deg": "-79.61029815673828", + "elevation_ft": "1348", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Jeannette", + "scheduled_service": "no", + "gps_code": "83PA", + "local_code": "83PA" + }, + { + "id": "14619", + "ident": "83PN", + "type": "heliport", + "name": "Wpxi-Tv Television Hill Heliport", + "latitude_deg": "40.4632987976", + "longitude_deg": "-80.00460052490001", + "elevation_ft": "1182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pittsburgh", + "scheduled_service": "no", + "gps_code": "83PN", + "local_code": "83PN" + }, + { + "id": "14620", + "ident": "83Q", + "type": "seaplane_base", + "name": "Port of Poulsbo Marina Moorage Seaplane Base", + "latitude_deg": "47.734001159668", + "longitude_deg": "-122.64700317383", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Poulsbo", + "scheduled_service": "no", + "gps_code": "83Q", + "iata_code": "PUL", + "local_code": "83Q", + "home_link": "http://www.portofpoulsbo.com/seaplane-base/" + }, + { + "id": "14621", + "ident": "83R", + "type": "closed", + "name": "Glen Beicker Ranch Airport", + "latitude_deg": "29.529399871826", + "longitude_deg": "-97.788299560547", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seguin", + "scheduled_service": "no", + "gps_code": "83R", + "local_code": "83R" + }, + { + "id": "14622", + "ident": "83TA", + "type": "small_airport", + "name": "Rainbow Field", + "latitude_deg": "31.900299072265625", + "longitude_deg": "-96.60030364990234", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Purdon", + "scheduled_service": "no", + "gps_code": "83TA", + "local_code": "83TA" + }, + { + "id": "14623", + "ident": "83TE", + "type": "small_airport", + "name": "K Bar Ranch Airport", + "latitude_deg": "29.49690055847168", + "longitude_deg": "-99.493896484375", + "elevation_ft": "1208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sabinal", + "scheduled_service": "no", + "gps_code": "83TE", + "local_code": "83TE" + }, + { + "id": "14624", + "ident": "83TS", + "type": "small_airport", + "name": "Moore Ranch Airport", + "latitude_deg": "32.426896", + "longitude_deg": "-98.418374", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gordon", + "scheduled_service": "no", + "gps_code": "83TS", + "local_code": "83TS" + }, + { + "id": "14625", + "ident": "83TX", + "type": "small_airport", + "name": "Texas A And M Flight Test Station Airport", + "latitude_deg": "30.6334991455", + "longitude_deg": "-96.48359680179999", + "elevation_ft": "264", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bryan", + "scheduled_service": "no", + "gps_code": "83TX", + "local_code": "83TX" + }, + { + "id": "14626", + "ident": "83V", + "type": "small_airport", + "name": "Upton Municipal Airport", + "latitude_deg": "44.09049987792969", + "longitude_deg": "-104.64099884033203", + "elevation_ft": "4290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Upton", + "scheduled_service": "no", + "gps_code": "83V", + "local_code": "83V" + }, + { + "id": "14627", + "ident": "83VA", + "type": "heliport", + "name": "Medical Heliport", + "latitude_deg": "37.280399322509766", + "longitude_deg": "-76.72250366210938", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Williamsburg", + "scheduled_service": "no", + "gps_code": "83VA", + "local_code": "83VA" + }, + { + "id": "14628", + "ident": "83WA", + "type": "small_airport", + "name": "Darcy's Air Strip", + "latitude_deg": "46.0275993347168", + "longitude_deg": "-118.16799926757812", + "elevation_ft": "2430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Walla Walla", + "scheduled_service": "no", + "gps_code": "83WA", + "local_code": "83WA" + }, + { + "id": "14629", + "ident": "83WI", + "type": "small_airport", + "name": "Jones Airport", + "latitude_deg": "44.97050094604492", + "longitude_deg": "-90.34619903564453", + "elevation_ft": "1410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Dorchester", + "scheduled_service": "no", + "gps_code": "83WI", + "local_code": "83WI" + }, + { + "id": "14630", + "ident": "83XS", + "type": "heliport", + "name": "Ball Park Heliport", + "latitude_deg": "29.674699783325195", + "longitude_deg": "-95.61830139160156", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "83XS", + "local_code": "83XS" + }, + { + "id": "323194", + "ident": "84AK", + "type": "heliport", + "name": "T-Time Heliport", + "latitude_deg": "61.587245", + "longitude_deg": "-149.33453", + "elevation_ft": "375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "84AK", + "local_code": "84AK" + }, + { + "id": "45240", + "ident": "84AL", + "type": "small_airport", + "name": "Blessings Landing Air Ranch", + "latitude_deg": "31.3031", + "longitude_deg": "-85.52705", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Pinckard", + "scheduled_service": "no", + "gps_code": "84AL", + "local_code": "84AL" + }, + { + "id": "14631", + "ident": "84C", + "type": "small_airport", + "name": "Valhalla Airport", + "latitude_deg": "42.762501", + "longitude_deg": "-88.042603", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "North Cape", + "scheduled_service": "no", + "gps_code": "WI72", + "local_code": "WI72", + "keywords": "84C" + }, + { + "id": "14632", + "ident": "84CA", + "type": "heliport", + "name": "Beverly Center Heliport", + "latitude_deg": "34.07389831542969", + "longitude_deg": "-118.37699890136719", + "elevation_ft": "278", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "84CA", + "local_code": "84CA" + }, + { + "id": "14633", + "ident": "84CL", + "type": "heliport", + "name": "Century City Heliport", + "latitude_deg": "34.060798645", + "longitude_deg": "-118.417999268", + "elevation_ft": "473", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "84CL", + "iata_code": "CCD", + "local_code": "84CL" + }, + { + "id": "14634", + "ident": "84CO", + "type": "heliport", + "name": "Rampart Heliport", + "latitude_deg": "39.344239", + "longitude_deg": "-104.841906", + "elevation_ft": "6480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Castle Rock", + "scheduled_service": "yes", + "gps_code": "84CO", + "local_code": "84CO" + }, + { + "id": "14635", + "ident": "84FD", + "type": "heliport", + "name": "North Port Ems Heliport", + "latitude_deg": "27.046100616455078", + "longitude_deg": "-82.23629760742188", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "North Port", + "scheduled_service": "no", + "gps_code": "84FD", + "local_code": "84FD" + }, + { + "id": "14636", + "ident": "84FL", + "type": "heliport", + "name": "Capeletti Heliport", + "latitude_deg": "25.925399780273438", + "longitude_deg": "-80.29979705810547", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Hialeah", + "scheduled_service": "no", + "gps_code": "84FL", + "local_code": "84FL" + }, + { + "id": "14637", + "ident": "84G", + "type": "heliport", + "name": "Cobo Hall Heliport", + "latitude_deg": "42.32590103149414", + "longitude_deg": "-83.0479965209961", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Detroit", + "scheduled_service": "no", + "gps_code": "84G", + "local_code": "84G" + }, + { + "id": "14638", + "ident": "84GA", + "type": "heliport", + "name": "Screven Ems Heliport", + "latitude_deg": "32.750999450683594", + "longitude_deg": "-81.6720962524414", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Sylvania", + "scheduled_service": "no", + "gps_code": "84GA", + "local_code": "84GA" + }, + { + "id": "45390", + "ident": "84ID", + "type": "heliport", + "name": "Shetler's Heliport", + "latitude_deg": "42.543319", + "longitude_deg": "-114.545791", + "elevation_ft": "3848", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Twin Falls", + "scheduled_service": "no", + "gps_code": "84ID", + "local_code": "84ID" + }, + { + "id": "14639", + "ident": "84IL", + "type": "small_airport", + "name": "Rossi's Farm Airport", + "latitude_deg": "41.50699996948242", + "longitude_deg": "-88.27780151367188", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Minooka", + "scheduled_service": "no", + "gps_code": "84IL", + "local_code": "84IL" + }, + { + "id": "14640", + "ident": "84IN", + "type": "heliport", + "name": "Kosciusko Community Hospital Heliport", + "latitude_deg": "41.247798919677734", + "longitude_deg": "-85.82890319824219", + "elevation_ft": "839", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Warsaw", + "scheduled_service": "no", + "gps_code": "84IN", + "local_code": "84IN" + }, + { + "id": "14641", + "ident": "84IS", + "type": "heliport", + "name": "Passavant Area Hospital Heliport", + "latitude_deg": "39.747743", + "longitude_deg": "-90.260396", + "elevation_ft": "604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "84IS", + "local_code": "84IS", + "keywords": "Air Evac 27 Heliport" + }, + { + "id": "14642", + "ident": "84K", + "type": "seaplane_base", + "name": "Meyers Chuck Seaplane Base", + "latitude_deg": "55.7396011353", + "longitude_deg": "-132.255004883", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Meyers Chuck", + "scheduled_service": "no", + "gps_code": "84K", + "iata_code": "WMK", + "local_code": "84K" + }, + { + "id": "14643", + "ident": "84KY", + "type": "closed", + "name": "Greene County Parachute Center Airport", + "latitude_deg": "37.8153", + "longitude_deg": "-85.540002", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Bardstown", + "scheduled_service": "no", + "keywords": "84KY" + }, + { + "id": "14644", + "ident": "84L", + "type": "heliport", + "name": "Norwalk Sheriff Station Heliport", + "latitude_deg": "33.915104", + "longitude_deg": "-118.069804", + "elevation_ft": "101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Norwalk", + "scheduled_service": "no", + "local_code": "84L" + }, + { + "id": "14645", + "ident": "84LA", + "type": "small_airport", + "name": "Touchstone Ridge Ultralightport", + "latitude_deg": "32.553851", + "longitude_deg": "-93.593882", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Haughton", + "scheduled_service": "no", + "gps_code": "84LA", + "local_code": "84LA" + }, + { + "id": "332216", + "ident": "84ME", + "type": "small_airport", + "name": "Cowboys Air Ranch Airport", + "latitude_deg": "45.551929", + "longitude_deg": "-67.746085", + "elevation_ft": "504", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Brookton", + "scheduled_service": "no", + "gps_code": "84ME", + "local_code": "84ME" + }, + { + "id": "14646", + "ident": "84MI", + "type": "closed", + "name": "Timbers Sky Camp Airport", + "latitude_deg": "44.469501", + "longitude_deg": "-83.881897", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "South Branch", + "scheduled_service": "no", + "keywords": "84MI" + }, + { + "id": "14647", + "ident": "84MN", + "type": "small_airport", + "name": "Nielsville Airport", + "latitude_deg": "47.53329849243164", + "longitude_deg": "-96.83090209960938", + "elevation_ft": "869", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Nielsville", + "scheduled_service": "no", + "gps_code": "84MN", + "local_code": "84MN" + }, + { + "id": "14648", + "ident": "84MO", + "type": "heliport", + "name": "Holiday Inn Westport Heliport", + "latitude_deg": "38.69390106201172", + "longitude_deg": "-90.44869995117188", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no", + "gps_code": "84MO", + "local_code": "84MO" + }, + { + "id": "45512", + "ident": "84MT", + "type": "closed", + "name": "Shimmon Airport", + "latitude_deg": "46.280813", + "longitude_deg": "-114.050214", + "elevation_ft": "3920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Corvallis", + "scheduled_service": "no", + "keywords": "84MT" + }, + { + "id": "45694", + "ident": "84NC", + "type": "small_airport", + "name": "Rooster Field", + "latitude_deg": "35.272724", + "longitude_deg": "-79.248548", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Cameron", + "scheduled_service": "no", + "gps_code": "84NC", + "local_code": "84NC" + }, + { + "id": "14649", + "ident": "84ND", + "type": "small_airport", + "name": "Kyllo Airport", + "latitude_deg": "48.00080108642578", + "longitude_deg": "-97.75700378417969", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Mc Canna", + "scheduled_service": "no", + "gps_code": "84ND", + "local_code": "84ND" + }, + { + "id": "14651", + "ident": "84NJ", + "type": "heliport", + "name": "Edison Square Heliport", + "latitude_deg": "40.52320098876953", + "longitude_deg": "-74.39179992675781", + "elevation_ft": "107", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Edison", + "scheduled_service": "no", + "gps_code": "84NJ", + "local_code": "84NJ" + }, + { + "id": "45972", + "ident": "84NK", + "type": "heliport", + "name": "St. Luke's Cornwall Hospital Heliport", + "latitude_deg": "41.434583", + "longitude_deg": "-74.041111", + "elevation_ft": "264", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Cornwall", + "scheduled_service": "no", + "gps_code": "84NK", + "local_code": "84NK" + }, + { + "id": "14652", + "ident": "84NM", + "type": "small_airport", + "name": "Nalda Ranch Airport", + "latitude_deg": "34.35340118408203", + "longitude_deg": "-108.16200256347656", + "elevation_ft": "7531", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Pie Town", + "scheduled_service": "no", + "gps_code": "84NM", + "local_code": "84NM" + }, + { + "id": "325911", + "ident": "84NR", + "type": "heliport", + "name": "Dupree Willow Heliport", + "latitude_deg": "35.582577", + "longitude_deg": "-78.719495", + "elevation_ft": "368", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Fuquay-Varina", + "scheduled_service": "no", + "gps_code": "84NR", + "local_code": "84NR" + }, + { + "id": "14653", + "ident": "84NY", + "type": "small_airport", + "name": "Skyview Airport", + "latitude_deg": "42.98619842529297", + "longitude_deg": "-77.61250305175781", + "elevation_ft": "642", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Rush", + "scheduled_service": "no", + "gps_code": "84NY", + "local_code": "84NY" + }, + { + "id": "14654", + "ident": "84OH", + "type": "closed", + "name": "Hanshell Flying Apple Airport", + "latitude_deg": "39.5812", + "longitude_deg": "-83.651001", + "elevation_ft": "1055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Octa", + "scheduled_service": "no", + "keywords": "84OH" + }, + { + "id": "14655", + "ident": "84OI", + "type": "heliport", + "name": "Grant Lifeflight 2 Heliport", + "latitude_deg": "39.125099182128906", + "longitude_deg": "-82.53820037841797", + "elevation_ft": "716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wellston", + "scheduled_service": "no", + "gps_code": "84OI", + "local_code": "84OI" + }, + { + "id": "14656", + "ident": "84OK", + "type": "closed", + "name": "Collier Farms Airport", + "latitude_deg": "35.938901", + "longitude_deg": "-99.053201", + "elevation_ft": "1740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Taloga", + "scheduled_service": "no", + "keywords": "84OK" + }, + { + "id": "14657", + "ident": "84OL", + "type": "small_airport", + "name": "Cotton Field", + "latitude_deg": "36.11040115356445", + "longitude_deg": "-95.7655029296875", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Broken Arrow", + "scheduled_service": "no", + "gps_code": "84OL", + "local_code": "84OL" + }, + { + "id": "14658", + "ident": "84OR", + "type": "small_airport", + "name": "B Bar Ranch Airport", + "latitude_deg": "42.24760055541992", + "longitude_deg": "-123.56999969482422", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Selma", + "scheduled_service": "no", + "gps_code": "84OR", + "local_code": "84OR" + }, + { + "id": "14659", + "ident": "84PA", + "type": "heliport", + "name": "Ged Heliport", + "latitude_deg": "40.30929946899414", + "longitude_deg": "-75.82630157470703", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Birdsboro", + "scheduled_service": "no", + "gps_code": "84PA", + "local_code": "84PA" + }, + { + "id": "14660", + "ident": "84PN", + "type": "small_airport", + "name": "Draco STOLport", + "latitude_deg": "39.752601623535156", + "longitude_deg": "-76.5354995727539", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Stewartstown", + "scheduled_service": "no", + "gps_code": "84PN", + "local_code": "84PN" + }, + { + "id": "14661", + "ident": "84TA", + "type": "closed", + "name": "Allied Northborough Heliport", + "latitude_deg": "29.957399", + "longitude_deg": "-95.419403", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "keywords": "84TA" + }, + { + "id": "14662", + "ident": "84TE", + "type": "small_airport", + "name": "W4 Ranch Airport", + "latitude_deg": "31.988067", + "longitude_deg": "-97.543181", + "elevation_ft": "833", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Morgan", + "scheduled_service": "no", + "gps_code": "84TE", + "local_code": "84TE" + }, + { + "id": "14663", + "ident": "84TS", + "type": "heliport", + "name": "Tourist Ride Services Heliport", + "latitude_deg": "29.2460994720459", + "longitude_deg": "-94.8646011352539", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Galveston", + "scheduled_service": "no", + "gps_code": "84TS", + "local_code": "84TS" + }, + { + "id": "14664", + "ident": "84TX", + "type": "closed", + "name": "Camp Longhorn Airport", + "latitude_deg": "30.741373", + "longitude_deg": "-98.37873", + "elevation_ft": "934", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Buchanan Dam", + "scheduled_service": "no", + "gps_code": "84TX", + "local_code": "84TX" + }, + { + "id": "14665", + "ident": "84U", + "type": "closed", + "name": "Butte Aero Heliport", + "latitude_deg": "45.9533", + "longitude_deg": "-112.497002", + "elevation_ft": "5553", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Butte", + "scheduled_service": "no", + "keywords": "84U" + }, + { + "id": "14666", + "ident": "84VA", + "type": "heliport", + "name": "Cia Headquarters Heliport", + "latitude_deg": "38.95289993286133", + "longitude_deg": "-77.15249633789062", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Langley", + "scheduled_service": "no", + "gps_code": "84VA", + "local_code": "84VA" + }, + { + "id": "14667", + "ident": "84WA", + "type": "small_airport", + "name": "D and B Airpark", + "latitude_deg": "46.969535", + "longitude_deg": "-123.386024", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Elma", + "scheduled_service": "no", + "gps_code": "84WA", + "local_code": "84WA" + }, + { + "id": "14668", + "ident": "84WI", + "type": "heliport", + "name": "Lutheran Hospital - La Crosse Heliport", + "latitude_deg": "43.792999267599996", + "longitude_deg": "-91.2473983765", + "elevation_ft": "656", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "La Crosse", + "scheduled_service": "no", + "gps_code": "84WI", + "local_code": "84WI" + }, + { + "id": "323228", + "ident": "84WY", + "type": "small_airport", + "name": "Moore Ranch Airport", + "latitude_deg": "43.446111", + "longitude_deg": "-105.743055", + "elevation_ft": "5027", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Douglas", + "scheduled_service": "no", + "gps_code": "84WY", + "local_code": "84WY" + }, + { + "id": "14669", + "ident": "84XS", + "type": "small_airport", + "name": "Lang Ranch Airport", + "latitude_deg": "30.255", + "longitude_deg": "-99.398889", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mountain Home", + "scheduled_service": "no", + "gps_code": "84XS", + "local_code": "84XS" + }, + { + "id": "14670", + "ident": "84Y", + "type": "small_airport", + "name": "Bloomfield Municipal Airport", + "latitude_deg": "42.5797004699707", + "longitude_deg": "-97.67369842529297", + "elevation_ft": "1673", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Bloomfield", + "scheduled_service": "no", + "gps_code": "84Y", + "local_code": "84Y" + }, + { + "id": "45256", + "ident": "85AK", + "type": "seaplane_base", + "name": "Marion Seaplane Base", + "latitude_deg": "61.509167", + "longitude_deg": "-149.908611", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "85AK", + "local_code": "85AK" + }, + { + "id": "14671", + "ident": "85B", + "type": "seaplane_base", + "name": "Shin Pond Seaplane Base", + "latitude_deg": "46.10419845581055", + "longitude_deg": "-68.56199645996094", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Patten", + "scheduled_service": "no", + "gps_code": "85B", + "local_code": "85B" + }, + { + "id": "14672", + "ident": "85CA", + "type": "heliport", + "name": "Redwood Coast Medical Services Heliport", + "latitude_deg": "38.770806", + "longitude_deg": "-123.529453", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Gualala", + "scheduled_service": "no", + "gps_code": "85CA", + "local_code": "85CA" + }, + { + "id": "14673", + "ident": "85CO", + "type": "heliport", + "name": "Anderson Heliport", + "latitude_deg": "40.11249923706055", + "longitude_deg": "-105.16200256347656", + "elevation_ft": "5160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Niwot", + "scheduled_service": "no", + "gps_code": "85CO", + "local_code": "85CO" + }, + { + "id": "14674", + "ident": "85FA", + "type": "small_airport", + "name": "North Exuma Airport", + "latitude_deg": "29.093122", + "longitude_deg": "-81.277635", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "DeLand", + "scheduled_service": "no", + "gps_code": "85FA", + "local_code": "85FA" + }, + { + "id": "14675", + "ident": "85FD", + "type": "heliport", + "name": "AdventHealth Kissimmee Heliport", + "latitude_deg": "28.315393", + "longitude_deg": "-81.405979", + "elevation_ft": "81", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Kissimmee", + "scheduled_service": "no", + "gps_code": "85FD", + "local_code": "85FD", + "keywords": "Florida Hospital Kissimmee" + }, + { + "id": "14676", + "ident": "85FL", + "type": "small_airport", + "name": "Thomas Farms Airport", + "latitude_deg": "30.96929931640625", + "longitude_deg": "-87.05159759521484", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jay", + "scheduled_service": "no", + "gps_code": "85FL", + "local_code": "85FL" + }, + { + "id": "14677", + "ident": "85GA", + "type": "small_airport", + "name": "Aiken Field", + "latitude_deg": "34.172298431396484", + "longitude_deg": "-83.73100280761719", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Talmo", + "scheduled_service": "no", + "gps_code": "85GA", + "local_code": "85GA" + }, + { + "id": "14678", + "ident": "85IA", + "type": "small_airport", + "name": "Henry Airport", + "latitude_deg": "43.1786003112793", + "longitude_deg": "-92.69740295410156", + "elevation_ft": "1125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Floyd", + "scheduled_service": "no", + "gps_code": "85IA", + "local_code": "85IA" + }, + { + "id": "14679", + "ident": "85IL", + "type": "small_airport", + "name": "Durbin Airport", + "latitude_deg": "39.637298583984375", + "longitude_deg": "-88.63590240478516", + "elevation_ft": "664", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sullivan", + "scheduled_service": "no", + "gps_code": "85IL", + "local_code": "85IL" + }, + { + "id": "14680", + "ident": "85IN", + "type": "small_airport", + "name": "Leak Airport", + "latitude_deg": "40.43389892578125", + "longitude_deg": "-87.50499725341797", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Tab", + "scheduled_service": "no", + "gps_code": "85IN", + "local_code": "85IN" + }, + { + "id": "14681", + "ident": "85KS", + "type": "small_airport", + "name": "Sanders Airport", + "latitude_deg": "39.30099868774414", + "longitude_deg": "-95.2145004272461", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Winchester", + "scheduled_service": "no", + "gps_code": "85KS", + "local_code": "85KS" + }, + { + "id": "14682", + "ident": "85KY", + "type": "small_airport", + "name": "Deer Run Airpark", + "latitude_deg": "38.470298767089844", + "longitude_deg": "-85.13860321044922", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "New Castle", + "scheduled_service": "no", + "gps_code": "85KY", + "local_code": "85KY" + }, + { + "id": "14683", + "ident": "85LA", + "type": "closed", + "name": "Transco Kaplan Heliport", + "latitude_deg": "29.9813", + "longitude_deg": "-92.282303", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kaplan", + "scheduled_service": "no", + "keywords": "85LA" + }, + { + "id": "14684", + "ident": "85LL", + "type": "small_airport", + "name": "Wormley Airport", + "latitude_deg": "41.68389892578125", + "longitude_deg": "-88.26229858398438", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Oswego", + "scheduled_service": "no", + "gps_code": "85LL", + "local_code": "85LL" + }, + { + "id": "45472", + "ident": "85MA", + "type": "heliport", + "name": "Lahey Clinic Heliport", + "latitude_deg": "42.484764", + "longitude_deg": "-71.201625", + "elevation_ft": "241", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "85MA", + "local_code": "85MA" + }, + { + "id": "14685", + "ident": "85MI", + "type": "small_airport", + "name": "Dewind Field", + "latitude_deg": "42.93230056762695", + "longitude_deg": "-86.01380157470703", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Zeeland", + "scheduled_service": "no", + "gps_code": "85MI", + "local_code": "85MI" + }, + { + "id": "14686", + "ident": "85MN", + "type": "small_airport", + "name": "Christison Airport", + "latitude_deg": "44.158599853515625", + "longitude_deg": "-92.20210266113281", + "elevation_ft": "1175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Plainview", + "scheduled_service": "no", + "gps_code": "85MN", + "local_code": "85MN" + }, + { + "id": "14687", + "ident": "85MO", + "type": "closed", + "name": "Willhite Airport", + "latitude_deg": "37.875", + "longitude_deg": "-92.322403", + "elevation_ft": "1022", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Swedeborg", + "scheduled_service": "no", + "keywords": "85MO" + }, + { + "id": "14688", + "ident": "85N", + "type": "small_airport", + "name": "Hollands International Field", + "latitude_deg": "43.266700744628906", + "longitude_deg": "-78.7677993774414", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Newfane", + "scheduled_service": "no", + "gps_code": "85N", + "local_code": "85N" + }, + { + "id": "14689", + "ident": "85NC", + "type": "small_airport", + "name": "Reagans Roost Ultralightport", + "latitude_deg": "35.42919921875", + "longitude_deg": "-83.16680145263672", + "elevation_ft": "2080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Whittier", + "scheduled_service": "no", + "gps_code": "85NC", + "local_code": "85NC" + }, + { + "id": "14690", + "ident": "85NE", + "type": "small_airport", + "name": "Meyers Freedom Flight Hardy Airport", + "latitude_deg": "40.02080154418945", + "longitude_deg": "-97.94200134277344", + "elevation_ft": "1624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hardy", + "scheduled_service": "no", + "gps_code": "85NE", + "local_code": "85NE" + }, + { + "id": "14691", + "ident": "85NJ", + "type": "heliport", + "name": "Webcraft Heliport", + "latitude_deg": "40.446800231933594", + "longitude_deg": "-74.4937973022461", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "North Brunswick", + "scheduled_service": "no", + "gps_code": "85NJ", + "local_code": "85NJ" + }, + { + "id": "14692", + "ident": "85NM", + "type": "heliport", + "name": "Playas Medical Building Heliport", + "latitude_deg": "31.914499282836914", + "longitude_deg": "-108.53399658203125", + "elevation_ft": "4506", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Playas", + "scheduled_service": "no", + "gps_code": "85NM", + "local_code": "85NM" + }, + { + "id": "14693", + "ident": "85NY", + "type": "small_airport", + "name": "High Acres Airport", + "latitude_deg": "42.578399658203125", + "longitude_deg": "-78.5199966430664", + "elevation_ft": "1540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Sardinia", + "scheduled_service": "no", + "gps_code": "85NY", + "local_code": "85NY" + }, + { + "id": "14694", + "ident": "85OH", + "type": "closed", + "name": "Tounshendeaux Airport", + "latitude_deg": "41.412609", + "longitude_deg": "-80.949245", + "elevation_ft": "838", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "West Farmington", + "scheduled_service": "no", + "keywords": "85OH" + }, + { + "id": "14695", + "ident": "85OI", + "type": "heliport", + "name": "Akron Children's Hospital Heliport", + "latitude_deg": "41.079093", + "longitude_deg": "-81.526859", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Akron", + "scheduled_service": "no", + "gps_code": "85OI", + "local_code": "85OI" + }, + { + "id": "14696", + "ident": "85OK", + "type": "heliport", + "name": "Red Stevenson Property Heliport", + "latitude_deg": "36.4833984375", + "longitude_deg": "-95.00019836425781", + "elevation_ft": "765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tijuana", + "scheduled_service": "no", + "gps_code": "85OK", + "local_code": "85OK" + }, + { + "id": "14697", + "ident": "85OL", + "type": "closed", + "name": "Huscher Field", + "latitude_deg": "34.619499", + "longitude_deg": "-98.595596", + "elevation_ft": "1242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Cache", + "scheduled_service": "no", + "keywords": "85OL" + }, + { + "id": "14698", + "ident": "85OR", + "type": "small_airport", + "name": "Allen's Airstrip", + "latitude_deg": "42.404598236083984", + "longitude_deg": "-121.04900360107422", + "elevation_ft": "4410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Bly", + "scheduled_service": "no", + "gps_code": "85OR", + "local_code": "85OR" + }, + { + "id": "14699", + "ident": "85PA", + "type": "small_airport", + "name": "Krumenacker Airport", + "latitude_deg": "40.59510040283203", + "longitude_deg": "-78.77839660644531", + "elevation_ft": "2040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Carrolltown", + "scheduled_service": "no", + "gps_code": "85PA", + "local_code": "85PA" + }, + { + "id": "14700", + "ident": "85PN", + "type": "small_airport", + "name": "Kiski Airport", + "latitude_deg": "40.579200744628906", + "longitude_deg": "-79.60530090332031", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Vandergrift", + "scheduled_service": "no", + "gps_code": "85PN", + "local_code": "85PN" + }, + { + "id": "14701", + "ident": "85TA", + "type": "closed", + "name": "J-Bar Ranch Airport", + "latitude_deg": "33.579899", + "longitude_deg": "-96.812401", + "elevation_ft": "718", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Collinsville", + "scheduled_service": "no", + "keywords": "85TA" + }, + { + "id": "14702", + "ident": "85TE", + "type": "small_airport", + "name": "Old Kingsbury Aerodrome", + "latitude_deg": "29.634199142456055", + "longitude_deg": "-97.81169891357422", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kingsbury", + "scheduled_service": "no", + "gps_code": "85TE", + "local_code": "85TE" + }, + { + "id": "14703", + "ident": "85TS", + "type": "heliport", + "name": "Airbus Helicopter Heliport", + "latitude_deg": "32.702139", + "longitude_deg": "-97.047864", + "elevation_ft": "588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Grand Prairie", + "scheduled_service": "no", + "gps_code": "85TS", + "local_code": "85TS", + "keywords": "American Eurocopter, Aerospatiale Helicopter Corp" + }, + { + "id": "14704", + "ident": "85TX", + "type": "small_airport", + "name": "Rutherford Ranch Airport", + "latitude_deg": "30.077699661254883", + "longitude_deg": "-97.9655990600586", + "elevation_ft": "983", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Buda", + "scheduled_service": "no", + "gps_code": "85TX", + "local_code": "85TX" + }, + { + "id": "14705", + "ident": "85U", + "type": "small_airport", + "name": "Soldier Bar US Forest Service Airport", + "latitude_deg": "45.104486", + "longitude_deg": "-114.799404", + "elevation_ft": "4190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Soldier Bar", + "scheduled_service": "no", + "local_code": "85U" + }, + { + "id": "14706", + "ident": "85V", + "type": "small_airport", + "name": "Ganado Airport", + "latitude_deg": "35.700941", + "longitude_deg": "-109.517384", + "elevation_ft": "6662", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Ganado", + "scheduled_service": "no", + "gps_code": "K85V", + "local_code": "85V" + }, + { + "id": "14707", + "ident": "85VA", + "type": "seaplane_base", + "name": "Land's End Seaplane Base", + "latitude_deg": "37.853599548339844", + "longitude_deg": "-76.24669647216797", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Reedville", + "scheduled_service": "no", + "gps_code": "85VA", + "local_code": "85VA" + }, + { + "id": "14708", + "ident": "85WA", + "type": "closed", + "name": "Scott Seed Farm Airport", + "latitude_deg": "46.527221", + "longitude_deg": "-117.764672", + "elevation_ft": "1866", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Pomeroy", + "scheduled_service": "no", + "keywords": "85WA" + }, + { + "id": "14709", + "ident": "85WI", + "type": "small_airport", + "name": "Cub Bear Airport", + "latitude_deg": "45.04439926147461", + "longitude_deg": "-92.29280090332031", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Emerald", + "scheduled_service": "no", + "gps_code": "85WI", + "local_code": "85WI" + }, + { + "id": "14710", + "ident": "85XS", + "type": "closed", + "name": "Marine Consultants Inc Heliport", + "latitude_deg": "29.7061", + "longitude_deg": "-95.274101", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "keywords": "85XS" + }, + { + "id": "45251", + "ident": "86AK", + "type": "seaplane_base", + "name": "Hoppe'S Seaplane Base", + "latitude_deg": "61.551431", + "longitude_deg": "-149.94575", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "86AK", + "local_code": "86AK" + }, + { + "id": "354119", + "ident": "86AL", + "type": "heliport", + "name": "Eagle Aviation Heliport", + "latitude_deg": "31.292514", + "longitude_deg": "-85.539308", + "elevation_ft": "369", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Midland City", + "scheduled_service": "no", + "gps_code": "86AL", + "local_code": "86AL" + }, + { + "id": "14711", + "ident": "86AR", + "type": "closed", + "name": "Goacher Airport", + "latitude_deg": "34.8293", + "longitude_deg": "-91.9543", + "elevation_ft": "235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Lonoke", + "scheduled_service": "no", + "keywords": "86AR" + }, + { + "id": "14712", + "ident": "86CA", + "type": "heliport", + "name": "Valley Medical Center Heliport", + "latitude_deg": "36.73720169067383", + "longitude_deg": "-119.75399780273438", + "elevation_ft": "307", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fresno", + "scheduled_service": "no", + "gps_code": "86CA", + "local_code": "86CA" + }, + { + "id": "14713", + "ident": "86CL", + "type": "small_airport", + "name": "Ernst Field", + "latitude_deg": "33.597198486328125", + "longitude_deg": "-116.88300323486328", + "elevation_ft": "2860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hemet", + "scheduled_service": "no", + "gps_code": "86CL", + "local_code": "86CL" + }, + { + "id": "45311", + "ident": "86CN", + "type": "heliport", + "name": "Mercy Medical Center Merced Heliport", + "latitude_deg": "37.340819", + "longitude_deg": "-120.466636", + "elevation_ft": "194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Merced", + "scheduled_service": "no", + "gps_code": "86CN", + "local_code": "86CN" + }, + { + "id": "14714", + "ident": "86CO", + "type": "small_airport", + "name": "Lazy W Airport", + "latitude_deg": "40.3135986328125", + "longitude_deg": "-105.1449966430664", + "elevation_ft": "5200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Berthoud", + "scheduled_service": "no", + "gps_code": "86CO", + "local_code": "86CO" + }, + { + "id": "14716", + "ident": "86FD", + "type": "small_airport", + "name": "Country Landings Airport", + "latitude_deg": "29.764699935913086", + "longitude_deg": "-82.89640045166016", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bell", + "scheduled_service": "no", + "gps_code": "86FD", + "local_code": "86FD" + }, + { + "id": "14717", + "ident": "86FL", + "type": "heliport", + "name": "Lake Shore Hospital Heliport", + "latitude_deg": "30.193300247192383", + "longitude_deg": "-82.63009643554688", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake City", + "scheduled_service": "no", + "gps_code": "86FL", + "local_code": "86FL" + }, + { + "id": "14718", + "ident": "86GA", + "type": "small_airport", + "name": "Flying G Ranch Airport", + "latitude_deg": "34.86790084838867", + "longitude_deg": "-85.06109619140625", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Tunnel Hill", + "scheduled_service": "no", + "gps_code": "86GA", + "local_code": "86GA" + }, + { + "id": "14719", + "ident": "86IL", + "type": "small_airport", + "name": "Sharp Airport", + "latitude_deg": "39.681667", + "longitude_deg": "-88.764444", + "elevation_ft": "674", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Bethany", + "scheduled_service": "no", + "gps_code": "86IL", + "local_code": "86IL" + }, + { + "id": "14720", + "ident": "86IN", + "type": "heliport", + "name": "Washington County Hospital Heliport", + "latitude_deg": "38.61330032348633", + "longitude_deg": "-86.10690307617188", + "elevation_ft": "776", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "86IN", + "local_code": "86IN" + }, + { + "id": "14721", + "ident": "86IS", + "type": "small_airport", + "name": "Michael Pfister Airport", + "latitude_deg": "40.77939987182617", + "longitude_deg": "-89.25779724121094", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Roanoke", + "scheduled_service": "no", + "gps_code": "86IS", + "local_code": "86IS" + }, + { + "id": "14722", + "ident": "86KS", + "type": "closed", + "name": "Weiss Airport", + "latitude_deg": "38.705799", + "longitude_deg": "-94.824699", + "elevation_ft": "1031", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Spring Hill", + "scheduled_service": "no", + "keywords": "86KS" + }, + { + "id": "14723", + "ident": "86KY", + "type": "closed", + "name": "Hornback Airport", + "latitude_deg": "37.622277", + "longitude_deg": "-85.791374", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Hodgenville", + "scheduled_service": "no", + "keywords": "86KY" + }, + { + "id": "14724", + "ident": "86LA", + "type": "small_airport", + "name": "Spring Airport", + "latitude_deg": "30.973800659179688", + "longitude_deg": "-90.66570281982422", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kentwood", + "scheduled_service": "no", + "gps_code": "86LA", + "local_code": "86LA" + }, + { + "id": "14725", + "ident": "86MI", + "type": "small_airport", + "name": "Downwind Acres Airport", + "latitude_deg": "42.152801513671875", + "longitude_deg": "-83.56739807128906", + "elevation_ft": "683", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Willis", + "scheduled_service": "no", + "gps_code": "86MI", + "local_code": "86MI" + }, + { + "id": "14726", + "ident": "86MN", + "type": "closed", + "name": "Minn D O T Heliport", + "latitude_deg": "44.072201", + "longitude_deg": "-92.505698", + "elevation_ft": "1024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Rochester", + "scheduled_service": "no", + "keywords": "86MN" + }, + { + "id": "14727", + "ident": "86MO", + "type": "heliport", + "name": "Bothwell Regional Health Center Heliport", + "latitude_deg": "38.699694", + "longitude_deg": "-93.222378", + "elevation_ft": "898", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Sedalia", + "scheduled_service": "no", + "gps_code": "86MO", + "local_code": "86MO" + }, + { + "id": "14728", + "ident": "86NC", + "type": "small_airport", + "name": "Craig Craft Airport", + "latitude_deg": "36.26359939575195", + "longitude_deg": "-76.49330139160156", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hertford", + "scheduled_service": "no", + "gps_code": "86NC", + "local_code": "86NC" + }, + { + "id": "14729", + "ident": "86NE", + "type": "small_airport", + "name": "Orum Aerodrome", + "latitude_deg": "41.54169845581055", + "longitude_deg": "-96.2739028930664", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Blair", + "scheduled_service": "no", + "gps_code": "86NE", + "local_code": "86NE" + }, + { + "id": "14730", + "ident": "86NJ", + "type": "heliport", + "name": "Hercules Inc. Heliport", + "latitude_deg": "40.4519996643", + "longitude_deg": "-74.3339996338", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Sayerville", + "scheduled_service": "no", + "gps_code": "86NJ", + "local_code": "86NJ" + }, + { + "id": "45552", + "ident": "86NY", + "type": "heliport", + "name": "East Farm Heliport", + "latitude_deg": "40.913264", + "longitude_deg": "-73.155689", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Head Of The Harbor", + "scheduled_service": "no", + "gps_code": "86NY", + "local_code": "86NY" + }, + { + "id": "14731", + "ident": "86OH", + "type": "small_airport", + "name": "Westfield Airport", + "latitude_deg": "41.01279830932617", + "longitude_deg": "-81.92009735107422", + "elevation_ft": "1044", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Westfield Center", + "scheduled_service": "no", + "gps_code": "86OH", + "local_code": "86OH" + }, + { + "id": "14732", + "ident": "86OI", + "type": "heliport", + "name": "Belcan Heliport", + "latitude_deg": "39.2578010559082", + "longitude_deg": "-84.38829803466797", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Blue Ash", + "scheduled_service": "no", + "gps_code": "86OI", + "local_code": "86OI" + }, + { + "id": "14733", + "ident": "86OK", + "type": "heliport", + "name": "St Francis Hospital Vinita Heliport", + "latitude_deg": "36.653438", + "longitude_deg": "-95.156666", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Vinita", + "scheduled_service": "no", + "gps_code": "86OK", + "local_code": "86OK", + "keywords": "Craig Heliport, Craig General Hospital" + }, + { + "id": "14734", + "ident": "86OR", + "type": "heliport", + "name": "Amber Glen Business Center Hp Heliport", + "latitude_deg": "45.530399322509766", + "longitude_deg": "-122.88300323486328", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Beaverton", + "scheduled_service": "no", + "gps_code": "86OR", + "local_code": "86OR" + }, + { + "id": "14735", + "ident": "86PA", + "type": "heliport", + "name": "7D Farms Heliport", + "latitude_deg": "40.644500732421875", + "longitude_deg": "-78.30059814453125", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tipton", + "scheduled_service": "no", + "gps_code": "86PA", + "local_code": "86PA" + }, + { + "id": "14736", + "ident": "86PN", + "type": "small_airport", + "name": "Seesholtz Airport", + "latitude_deg": "41.044498443603516", + "longitude_deg": "-76.3552017211914", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bloomsburg", + "scheduled_service": "no", + "gps_code": "86PN", + "local_code": "86PN" + }, + { + "id": "14737", + "ident": "86TA", + "type": "closed", + "name": "Slaughter Ranch Airport", + "latitude_deg": "30.622043", + "longitude_deg": "-98.281735", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marble Falls", + "scheduled_service": "no", + "gps_code": "86TA", + "local_code": "86TA" + }, + { + "id": "14738", + "ident": "86TE", + "type": "small_airport", + "name": "Matthews Ranch Airport", + "latitude_deg": "32.649898529052734", + "longitude_deg": "-98.14730072021484", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Santo", + "scheduled_service": "no", + "gps_code": "86TE", + "local_code": "86TE" + }, + { + "id": "345448", + "ident": "86TN", + "type": "small_airport", + "name": "Dumplin Field", + "latitude_deg": "36.015483", + "longitude_deg": "-83.545661", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Dandridge", + "scheduled_service": "no", + "gps_code": "86TN", + "local_code": "86TN" + }, + { + "id": "14739", + "ident": "86TS", + "type": "small_airport", + "name": "Fairway Farm Airport", + "latitude_deg": "31.484015", + "longitude_deg": "-94.027074", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Augustine", + "scheduled_service": "no", + "gps_code": "86TS", + "local_code": "86TS" + }, + { + "id": "14740", + "ident": "86TX", + "type": "small_airport", + "name": "Flying J Airport", + "latitude_deg": "29.737199783325195", + "longitude_deg": "-98.37889862060547", + "elevation_ft": "1055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bulverde", + "scheduled_service": "no", + "gps_code": "86TX", + "local_code": "86TX" + }, + { + "id": "14741", + "ident": "86VA", + "type": "heliport", + "name": "Newport News General Hospital Heliport", + "latitude_deg": "36.999900817871094", + "longitude_deg": "-76.42469787597656", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Newport News", + "scheduled_service": "no", + "gps_code": "86VA", + "local_code": "86VA" + }, + { + "id": "14742", + "ident": "86WA", + "type": "small_airport", + "name": "Kapowsin Field", + "latitude_deg": "47.003758", + "longitude_deg": "-122.234845", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Graham", + "scheduled_service": "no", + "gps_code": "86WA", + "local_code": "86WA" + }, + { + "id": "14743", + "ident": "86WI", + "type": "closed", + "name": "Bakers Field", + "latitude_deg": "42.825298", + "longitude_deg": "-89.870102", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Blanchardville", + "scheduled_service": "no", + "keywords": "86WI" + }, + { + "id": "14744", + "ident": "86XS", + "type": "small_airport", + "name": "Gesin Ranches Airport", + "latitude_deg": "32.40010070800781", + "longitude_deg": "-100.36699676513672", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sweetwater", + "scheduled_service": "no", + "gps_code": "86XS", + "local_code": "86XS" + }, + { + "id": "14745", + "ident": "87AK", + "type": "small_airport", + "name": "Soloy Strip", + "latitude_deg": "61.6515007019043", + "longitude_deg": "-149.28799438476562", + "elevation_ft": "545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "87AK", + "local_code": "87AK" + }, + { + "id": "14746", + "ident": "87B", + "type": "seaplane_base", + "name": "Portage Lake Municipal Seaplane Base", + "latitude_deg": "46.76029968261719", + "longitude_deg": "-68.48079681396484", + "elevation_ft": "608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Portage Lake", + "scheduled_service": "no", + "gps_code": "87B", + "local_code": "87B" + }, + { + "id": "14747", + "ident": "87CA", + "type": "closed", + "name": "Swanson Ranch Nr 1 Airport", + "latitude_deg": "36.399899", + "longitude_deg": "-119.617995", + "elevation_ft": "248", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hanford", + "scheduled_service": "no", + "keywords": "87CA" + }, + { + "id": "345650", + "ident": "87CD", + "type": "small_airport", + "name": "The Flying Z Airport", + "latitude_deg": "37.98994", + "longitude_deg": "-104.760845", + "elevation_ft": "5440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Pueblo", + "scheduled_service": "no", + "gps_code": "87CD", + "local_code": "87CD" + }, + { + "id": "14748", + "ident": "87CL", + "type": "heliport", + "name": "City National Plaza Heliport", + "latitude_deg": "34.051544", + "longitude_deg": "-118.256949", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "87CL", + "local_code": "87CL" + }, + { + "id": "14749", + "ident": "87CN", + "type": "heliport", + "name": "Honda of Santa Ana Heliport", + "latitude_deg": "33.72710037231445", + "longitude_deg": "-117.83599853515625", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Ana", + "scheduled_service": "no", + "gps_code": "87CN", + "local_code": "87CN" + }, + { + "id": "14750", + "ident": "87CO", + "type": "small_airport", + "name": "Young's Strip", + "latitude_deg": "39.69110107421875", + "longitude_deg": "-104.41600036621094", + "elevation_ft": "5650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Bennett", + "scheduled_service": "no", + "gps_code": "87CO", + "local_code": "87CO" + }, + { + "id": "14751", + "ident": "87FD", + "type": "heliport", + "name": "Palm Beach Gardens Medical Center Heliport", + "latitude_deg": "26.828694", + "longitude_deg": "-80.085369", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Palm Beach Gardens", + "scheduled_service": "no", + "gps_code": "87FD", + "local_code": "87FD" + }, + { + "id": "14752", + "ident": "87FL", + "type": "heliport", + "name": "King Heliport", + "latitude_deg": "28.25271", + "longitude_deg": "-82.743718", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "New Port Richey", + "scheduled_service": "no", + "gps_code": "87FL", + "local_code": "87FL" + }, + { + "id": "14753", + "ident": "87GA", + "type": "heliport", + "name": "Tanner Medical Center/Villa Rica Heliport", + "latitude_deg": "33.73619842529297", + "longitude_deg": "-85.92410278320312", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Villa Rica", + "scheduled_service": "no", + "gps_code": "87GA", + "local_code": "87GA" + }, + { + "id": "14754", + "ident": "87IL", + "type": "small_airport", + "name": "Bushby RLA Restricted Landing Area", + "latitude_deg": "41.516700744599994", + "longitude_deg": "-88.2667007446", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Minooka", + "scheduled_service": "no", + "gps_code": "87IL", + "local_code": "87IL" + }, + { + "id": "14755", + "ident": "87IN", + "type": "small_airport", + "name": "May's Strip", + "latitude_deg": "41.452999114990234", + "longitude_deg": "-86.4697036743164", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Walkerton", + "scheduled_service": "no", + "gps_code": "87IN", + "local_code": "87IN" + }, + { + "id": "14756", + "ident": "87IS", + "type": "closed", + "name": "Seigfried Halfpap Airport", + "latitude_deg": "39.8862", + "longitude_deg": "-91.320702", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Quincy", + "scheduled_service": "no", + "keywords": "87IS" + }, + { + "id": "14757", + "ident": "87KS", + "type": "closed", + "name": "Holyrood Municipal Airport", + "latitude_deg": "38.587502", + "longitude_deg": "-98.4048", + "elevation_ft": "1805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Holyrood", + "scheduled_service": "no", + "keywords": "87KS" + }, + { + "id": "14758", + "ident": "87KY", + "type": "heliport", + "name": "Midwest Communication Heliport", + "latitude_deg": "39.04560089111328", + "longitude_deg": "-84.46379852294922", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Highland Heights", + "scheduled_service": "no", + "gps_code": "87KY", + "local_code": "87KY" + }, + { + "id": "14759", + "ident": "87LA", + "type": "closed", + "name": "Lafayette Hilton Heliport", + "latitude_deg": "30.196", + "longitude_deg": "-92.0153", + "elevation_ft": "169", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lafayette", + "scheduled_service": "no", + "keywords": "87LA" + }, + { + "id": "334284", + "ident": "87ME", + "type": "heliport", + "name": "High Note Heliport", + "latitude_deg": "44.151331", + "longitude_deg": "-70.793986", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Sweden", + "scheduled_service": "no", + "gps_code": "87ME", + "local_code": "87ME" + }, + { + "id": "327249", + "ident": "87MI", + "type": "heliport", + "name": "Ascension Borgess Pipp Hospital Heliport", + "latitude_deg": "42.447261", + "longitude_deg": "-85.654975", + "elevation_ft": "726", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Plainwell", + "scheduled_service": "no", + "gps_code": "87MI", + "local_code": "87MI" + }, + { + "id": "14760", + "ident": "87MN", + "type": "small_airport", + "name": "Erickson Airport", + "latitude_deg": "48.810298919677734", + "longitude_deg": "-95.20159912109375", + "elevation_ft": "1155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Roosevelt", + "scheduled_service": "no", + "gps_code": "87MN", + "local_code": "87MN" + }, + { + "id": "14761", + "ident": "87MO", + "type": "small_airport", + "name": "Richters Airport", + "latitude_deg": "38.69609832763672", + "longitude_deg": "-94.25800323486328", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "East Lynne", + "scheduled_service": "no", + "gps_code": "87MO", + "local_code": "87MO" + }, + { + "id": "14762", + "ident": "87N", + "type": "heliport", + "name": "Southampton Heliport", + "latitude_deg": "40.846217", + "longitude_deg": "-72.466379", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Southampton", + "scheduled_service": "no", + "local_code": "87N" + }, + { + "id": "14763", + "ident": "87NC", + "type": "small_airport", + "name": "C A G Farms Airport", + "latitude_deg": "35.468762", + "longitude_deg": "-78.652003", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Angier", + "scheduled_service": "no", + "local_code": "27NR", + "keywords": "87NC" + }, + { + "id": "14764", + "ident": "87NE", + "type": "small_airport", + "name": "Knox Landing Airport", + "latitude_deg": "40.809200286865234", + "longitude_deg": "-97.58779907226562", + "elevation_ft": "1638", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "York", + "scheduled_service": "no", + "gps_code": "87NE", + "local_code": "87NE" + }, + { + "id": "14765", + "ident": "87NJ", + "type": "heliport", + "name": "Shore Memorial Hospital Heliport", + "latitude_deg": "39.31399917602539", + "longitude_deg": "-74.59400177001953", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Somers Point", + "scheduled_service": "no", + "gps_code": "87NJ", + "local_code": "87NJ" + }, + { + "id": "346698", + "ident": "87NY", + "type": "heliport", + "name": "Clearview Heliport", + "latitude_deg": "40.826444", + "longitude_deg": "-72.745944", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "East Moriches", + "scheduled_service": "no", + "gps_code": "87NY", + "local_code": "87NY" + }, + { + "id": "14766", + "ident": "87OH", + "type": "closed", + "name": "Mundron Field", + "latitude_deg": "41.705601", + "longitude_deg": "-84.373596", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Fayette", + "scheduled_service": "no", + "keywords": "87OH" + }, + { + "id": "14767", + "ident": "87OI", + "type": "small_airport", + "name": "Lake Air Ranch Airport", + "latitude_deg": "41.272300720214844", + "longitude_deg": "-82.62300109863281", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Norwalk", + "scheduled_service": "no", + "gps_code": "87OI", + "local_code": "87OI" + }, + { + "id": "14768", + "ident": "87OK", + "type": "heliport", + "name": "Wagoner Community Hospital Heliport", + "latitude_deg": "35.95009994506836", + "longitude_deg": "-95.05020141601562", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Wagoner", + "scheduled_service": "no", + "gps_code": "87OK", + "local_code": "87OK" + }, + { + "id": "14769", + "ident": "87OR", + "type": "small_airport", + "name": "Moondance Ranch Airport", + "latitude_deg": "42.651798248291016", + "longitude_deg": "-121.3290023803711", + "elevation_ft": "4980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Beatty", + "scheduled_service": "no", + "gps_code": "87OR", + "local_code": "87OR" + }, + { + "id": "14770", + "ident": "87PA", + "type": "small_airport", + "name": "Waltman Airport", + "latitude_deg": "40.92649841308594", + "longitude_deg": "-79.73870086669922", + "elevation_ft": "1360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Chicora", + "scheduled_service": "no", + "gps_code": "87PA", + "local_code": "87PA" + }, + { + "id": "14771", + "ident": "87TA", + "type": "small_airport", + "name": "Cielo Grande Ranch Airport", + "latitude_deg": "30.18910026550293", + "longitude_deg": "-99.2697982788086", + "elevation_ft": "2180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mountain Home", + "scheduled_service": "no", + "gps_code": "87TA", + "local_code": "87TA" + }, + { + "id": "14772", + "ident": "87TE", + "type": "small_airport", + "name": "Rose Field Airport", + "latitude_deg": "29.4519004822", + "longitude_deg": "-95.8655014038", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Needville", + "scheduled_service": "no", + "gps_code": "87TE", + "local_code": "87TE" + }, + { + "id": "14773", + "ident": "87TS", + "type": "heliport", + "name": "Star Houston Heliport", + "latitude_deg": "29.783606", + "longitude_deg": "-95.442603", + "elevation_ft": "123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "87TS", + "local_code": "87TS" + }, + { + "id": "14774", + "ident": "87TX", + "type": "small_airport", + "name": "Porter Ranch Airport", + "latitude_deg": "28.690000534057617", + "longitude_deg": "-97.76029968261719", + "elevation_ft": "418", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Burnell", + "scheduled_service": "no", + "gps_code": "87TX", + "local_code": "87TX" + }, + { + "id": "14775", + "ident": "87VA", + "type": "small_airport", + "name": "Cottonwood Farm Airport", + "latitude_deg": "38.08110046386719", + "longitude_deg": "-78.69560241699219", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Crozet", + "scheduled_service": "no", + "gps_code": "87VA", + "local_code": "87VA" + }, + { + "id": "14776", + "ident": "87WA", + "type": "heliport", + "name": "Trios Women & Childrens Hospital Heliport", + "latitude_deg": "46.199343", + "longitude_deg": "-119.120221", + "elevation_ft": "395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Kennewick", + "scheduled_service": "no", + "gps_code": "87WA", + "local_code": "87WA", + "keywords": "Kennewick General Hospital Heliport" + }, + { + "id": "14777", + "ident": "87WI", + "type": "small_airport", + "name": "Quale Airport", + "latitude_deg": "43.01940155029297", + "longitude_deg": "-89.1854019165039", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Cottage Grove", + "scheduled_service": "no", + "gps_code": "87WI", + "local_code": "87WI" + }, + { + "id": "353471", + "ident": "87WS", + "type": "small_airport", + "name": "Valhalla Airport", + "latitude_deg": "44.840956", + "longitude_deg": "-89.760461", + "elevation_ft": "1328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Mosinee", + "scheduled_service": "no", + "gps_code": "87WS", + "local_code": "87WS" + }, + { + "id": "344258", + "ident": "87XA", + "type": "heliport", + "name": "Methodist Midlothian Medical Center Heliport", + "latitude_deg": "32.469717", + "longitude_deg": "-96.980824", + "elevation_ft": "761", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Midlothian", + "scheduled_service": "no", + "gps_code": "87XA", + "local_code": "87XA" + }, + { + "id": "14778", + "ident": "87XS", + "type": "small_airport", + "name": "Cinco B Ranch Airport", + "latitude_deg": "29.791121", + "longitude_deg": "-99.263964", + "elevation_ft": "1457", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Medina", + "scheduled_service": "no", + "gps_code": "87XS", + "local_code": "87XS" + }, + { + "id": "14779", + "ident": "88AK", + "type": "small_airport", + "name": "Dutch Landing Strip", + "latitude_deg": "60.539839", + "longitude_deg": "-150.869129", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no", + "gps_code": "88AK", + "local_code": "88AK" + }, + { + "id": "337129", + "ident": "88AL", + "type": "heliport", + "name": "W&T Offshore Yellowhammer Heliport", + "latitude_deg": "30.404402", + "longitude_deg": "-88.12586", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Coden", + "scheduled_service": "no", + "gps_code": "88AL", + "local_code": "88AL" + }, + { + "id": "322681", + "ident": "88AZ", + "type": "small_airport", + "name": "Grapevine Airstrip", + "latitude_deg": "33.6409083", + "longitude_deg": "-111.0569167", + "elevation_ft": "2329", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Roosevelt", + "scheduled_service": "no", + "gps_code": "88AZ", + "local_code": "88AZ", + "home_link": "https://web.archive.org/web/20160812205441/http://theraf.org/airport/grapevin", + "keywords": "E75" + }, + { + "id": "14780", + "ident": "88C", + "type": "small_airport", + "name": "Palmyra Municipal Airport", + "latitude_deg": "42.88359832763672", + "longitude_deg": "-88.59739685058594", + "elevation_ft": "851", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Palmyra", + "scheduled_service": "no", + "gps_code": "88C", + "local_code": "88C" + }, + { + "id": "14781", + "ident": "88CA", + "type": "heliport", + "name": "Regional Medical Center San Jose H2 Heliport", + "latitude_deg": "37.361464", + "longitude_deg": "-121.848503", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Jose", + "scheduled_service": "no", + "gps_code": "88CA", + "local_code": "88CA" + }, + { + "id": "14782", + "ident": "88CL", + "type": "heliport", + "name": "Park Place Heliport", + "latitude_deg": "33.673845", + "longitude_deg": "-117.843255", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Irvine", + "scheduled_service": "no", + "keywords": "88CL" + }, + { + "id": "14783", + "ident": "88CO", + "type": "small_airport", + "name": "Tranquila Airport", + "latitude_deg": "38.88610076904297", + "longitude_deg": "-104.2490005493164", + "elevation_ft": "6320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Yoder", + "scheduled_service": "no", + "gps_code": "88CO", + "local_code": "88CO" + }, + { + "id": "14784", + "ident": "88D", + "type": "small_airport", + "name": "Hinde Airport", + "latitude_deg": "41.40370178222656", + "longitude_deg": "-82.60130310058594", + "elevation_ft": "609", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Huron", + "scheduled_service": "no", + "gps_code": "88D", + "local_code": "88D" + }, + { + "id": "322720", + "ident": "88FA", + "type": "heliport", + "name": "Tampa Hard Rock Helipad", + "latitude_deg": "27.9955167", + "longitude_deg": "-82.370144", + "elevation_ft": "87", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tampa", + "scheduled_service": "no", + "gps_code": "88FA", + "local_code": "88FA" + }, + { + "id": "14785", + "ident": "88FD", + "type": "heliport", + "name": "Baptist Health Bethesda Hospital East Heliport", + "latitude_deg": "26.505224", + "longitude_deg": "-80.070478", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Boynton Beach", + "scheduled_service": "no", + "gps_code": "88FD", + "local_code": "88FD", + "keywords": "Bethesda Memorial Hospital Heliport" + }, + { + "id": "14786", + "ident": "88FL", + "type": "heliport", + "name": "Sailfish Point Heliport", + "latitude_deg": "27.177813", + "longitude_deg": "-80.157706", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sewall's Point", + "scheduled_service": "no", + "gps_code": "88FL", + "local_code": "88FL" + }, + { + "id": "14787", + "ident": "88G", + "type": "small_airport", + "name": "Gradolph Field", + "latitude_deg": "41.9197998046875", + "longitude_deg": "-83.73490142822266", + "elevation_ft": "673", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Petersburg", + "scheduled_service": "no", + "gps_code": "88G", + "local_code": "88G" + }, + { + "id": "14788", + "ident": "88GA", + "type": "closed", + "name": "Beaver Creek Airport", + "latitude_deg": "33.111558", + "longitude_deg": "-84.444155", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Concord", + "scheduled_service": "no", + "keywords": "88GA" + }, + { + "id": "14789", + "ident": "88IL", + "type": "closed", + "name": "Mary's Landing Airport", + "latitude_deg": "42.413102", + "longitude_deg": "-88.733299", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Capron", + "scheduled_service": "no", + "keywords": "88IL" + }, + { + "id": "14790", + "ident": "88IN", + "type": "closed", + "name": "Gardner Airport", + "latitude_deg": "39.5798", + "longitude_deg": "-85.932198", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Boggstown", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gardner_Airport_(Indiana)", + "keywords": "88IN" + }, + { + "id": "14791", + "ident": "88IS", + "type": "small_airport", + "name": "Blickhan Lndg Area Airport", + "latitude_deg": "40.008399963399995", + "longitude_deg": "-91.3821029663", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Quincy", + "scheduled_service": "no", + "gps_code": "88IS", + "local_code": "88IS" + }, + { + "id": "14792", + "ident": "88KY", + "type": "heliport", + "name": "Saint Joseph Hospital Heliport", + "latitude_deg": "38.032901763916016", + "longitude_deg": "-84.52519989013672", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "88KY", + "local_code": "88KY" + }, + { + "id": "14793", + "ident": "88LA", + "type": "small_airport", + "name": "Freebird Field", + "latitude_deg": "30.1294", + "longitude_deg": "-92.135101", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "88LA", + "local_code": "88LA" + }, + { + "id": "14794", + "ident": "88LL", + "type": "small_airport", + "name": "Block Airport", + "latitude_deg": "42.19169998168945", + "longitude_deg": "-89.83820343017578", + "elevation_ft": "917", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pearl City", + "scheduled_service": "no", + "gps_code": "88LL", + "local_code": "88LL" + }, + { + "id": "354644", + "ident": "88MD", + "type": "small_airport", + "name": "Beaven Field", + "latitude_deg": "38.804372", + "longitude_deg": "-75.953413", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Easton", + "scheduled_service": "no", + "gps_code": "88MD", + "local_code": "88MD" + }, + { + "id": "14795", + "ident": "88MN", + "type": "small_airport", + "name": "Fox Field", + "latitude_deg": "44.801700592041016", + "longitude_deg": "-93.95030212402344", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Young America", + "scheduled_service": "no", + "gps_code": "88MN", + "local_code": "88MN" + }, + { + "id": "14796", + "ident": "88MO", + "type": "small_airport", + "name": "Howell Valley Airport", + "latitude_deg": "36.705837", + "longitude_deg": "-91.803441", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "West Plains", + "scheduled_service": "no", + "gps_code": "88MO", + "local_code": "88MO" + }, + { + "id": "350189", + "ident": "88MS", + "type": "small_airport", + "name": "Strayhorn Hay Field Airport", + "latitude_deg": "34.628469", + "longitude_deg": "-90.129139", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Senatobia", + "scheduled_service": "no", + "gps_code": "88MS", + "local_code": "88MS" + }, + { + "id": "14797", + "ident": "88NC", + "type": "small_airport", + "name": "Corriher Field", + "latitude_deg": "35.6325", + "longitude_deg": "-80.685303", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Mount Ulla", + "scheduled_service": "no", + "gps_code": "88NC", + "local_code": "88NC" + }, + { + "id": "14798", + "ident": "88ND", + "type": "small_airport", + "name": "Goodman Strip", + "latitude_deg": "48.709166", + "longitude_deg": "-97.995577", + "elevation_ft": "1560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "88ND", + "local_code": "88ND" + }, + { + "id": "14799", + "ident": "88NE", + "type": "small_airport", + "name": "Ensor Field", + "latitude_deg": "40.403900146484375", + "longitude_deg": "-96.01719665527344", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Johnson", + "scheduled_service": "no", + "gps_code": "88NE", + "local_code": "88NE" + }, + { + "id": "45518", + "ident": "88NV", + "type": "small_airport", + "name": "Black Rock City Airport", + "latitude_deg": "40.757303", + "longitude_deg": "-119.212861", + "elevation_ft": "3912", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Gerlach", + "scheduled_service": "no", + "gps_code": "88NV", + "local_code": "88NV", + "keywords": "BRC" + }, + { + "id": "14800", + "ident": "88NY", + "type": "small_airport", + "name": "Zelazny Airport", + "latitude_deg": "43.157798767089844", + "longitude_deg": "-78.3583984375", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Shelby", + "scheduled_service": "no", + "gps_code": "88NY", + "local_code": "88NY" + }, + { + "id": "14801", + "ident": "88OH", + "type": "small_airport", + "name": "Chippewa Field", + "latitude_deg": "41.599998474121094", + "longitude_deg": "-83.31659698486328", + "elevation_ft": "596", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Williston", + "scheduled_service": "no", + "gps_code": "88OH", + "local_code": "88OH" + }, + { + "id": "14802", + "ident": "88OI", + "type": "heliport", + "name": "Akron City Hospital Heliport", + "latitude_deg": "41.080736", + "longitude_deg": "-81.500164", + "elevation_ft": "1368", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Akron", + "scheduled_service": "no", + "gps_code": "88OI", + "local_code": "88OI" + }, + { + "id": "14803", + "ident": "88OK", + "type": "small_airport", + "name": "Hilltop Airport", + "latitude_deg": "36.19340133666992", + "longitude_deg": "-97.0906982421875", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Stillwater", + "scheduled_service": "no", + "gps_code": "88OK", + "local_code": "88OK" + }, + { + "id": "14804", + "ident": "88OL", + "type": "closed", + "name": "Pace Field", + "latitude_deg": "34.9645", + "longitude_deg": "-96.271103", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Calvin", + "scheduled_service": "no", + "keywords": "88OL" + }, + { + "id": "14805", + "ident": "88OR", + "type": "small_airport", + "name": "Tallman Airport", + "latitude_deg": "44.56829833984375", + "longitude_deg": "-122.97100067138672", + "elevation_ft": "303", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "88OR", + "local_code": "88OR" + }, + { + "id": "14806", + "ident": "88PA", + "type": "small_airport", + "name": "Mc Coy Airport", + "latitude_deg": "40.539199829100006", + "longitude_deg": "-80.4131011963", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "88PA", + "local_code": "88PA" + }, + { + "id": "14807", + "ident": "88TA", + "type": "small_airport", + "name": "Figure 2 Ranch Airport", + "latitude_deg": "31.45599937438965", + "longitude_deg": "-104.84400177001953", + "elevation_ft": "3700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Van Horn", + "scheduled_service": "no", + "gps_code": "88TA", + "local_code": "88TA" + }, + { + "id": "14808", + "ident": "88TE", + "type": "small_airport", + "name": "Thunderbird Southwest Airport", + "latitude_deg": "29.9016", + "longitude_deg": "-96.793263", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "La Grange", + "scheduled_service": "no", + "keywords": "88TE, thunderbird southwest, la grange" + }, + { + "id": "45791", + "ident": "88TN", + "type": "small_airport", + "name": "Piney Creek Airport", + "latitude_deg": "35.4245", + "longitude_deg": "-85.779333", + "elevation_ft": "1960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Altamont", + "scheduled_service": "no", + "gps_code": "88TN", + "local_code": "88TN" + }, + { + "id": "14809", + "ident": "88TS", + "type": "heliport", + "name": "Fort Wolters Helicopters Heliport", + "latitude_deg": "32.83855", + "longitude_deg": "-98.062463", + "elevation_ft": "887", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineral Wells", + "scheduled_service": "no", + "gps_code": "88TS", + "local_code": "88TS" + }, + { + "id": "430436", + "ident": "88TT", + "type": "small_airport", + "name": "Shady Lane Ranch Airport", + "latitude_deg": "33.351246", + "longitude_deg": "-97.001188", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pilot Point", + "scheduled_service": "no", + "gps_code": "88TT", + "local_code": "88TT" + }, + { + "id": "14810", + "ident": "88TX", + "type": "heliport", + "name": "Christus Mother Frances Hospital Sulphur Springs Heliport", + "latitude_deg": "33.158041", + "longitude_deg": "-95.599235", + "elevation_ft": "476", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sulphur Springs", + "scheduled_service": "no", + "gps_code": "88TX", + "local_code": "88TX", + "keywords": "Hopkins County Memorial Hospital Helipad" + }, + { + "id": "14811", + "ident": "88VA", + "type": "small_airport", + "name": "Belmont Farm Airport", + "latitude_deg": "38.37419891357422", + "longitude_deg": "-77.99189758300781", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Culpeper", + "scheduled_service": "no", + "gps_code": "88VA", + "local_code": "88VA" + }, + { + "id": "14812", + "ident": "88VT", + "type": "small_airport", + "name": "Hawk's Nest Airport", + "latitude_deg": "44.878299713134766", + "longitude_deg": "-73.35030364990234", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Isle Lamotte", + "scheduled_service": "no", + "gps_code": "88VT", + "local_code": "88VT" + }, + { + "id": "14813", + "ident": "88WA", + "type": "heliport", + "name": "Personal 500 Sales Co. Heliport", + "latitude_deg": "47.20370101928711", + "longitude_deg": "-122.2239990234375", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Sumner", + "scheduled_service": "no", + "gps_code": "88WA", + "local_code": "88WA" + }, + { + "id": "14814", + "ident": "88WI", + "type": "small_airport", + "name": "Nicolet Airport", + "latitude_deg": "44.508301", + "longitude_deg": "-87.860703", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Green Bay", + "scheduled_service": "no", + "gps_code": "88WI", + "local_code": "88WI" + }, + { + "id": "346574", + "ident": "88WS", + "type": "small_airport", + "name": "Ottos Airport", + "latitude_deg": "42.930978", + "longitude_deg": "-89.624749", + "elevation_ft": "917", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Verona", + "scheduled_service": "no", + "gps_code": "88WS", + "local_code": "88WS" + }, + { + "id": "348391", + "ident": "88XA", + "type": "small_airport", + "name": "Tejas Stone Ranch Airport", + "latitude_deg": "33.337444", + "longitude_deg": "-96.480222", + "elevation_ft": "577", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Anna", + "scheduled_service": "no", + "gps_code": "88XA", + "local_code": "88XA" + }, + { + "id": "14815", + "ident": "88XS", + "type": "closed", + "name": "Bogan & Fontenot Airport", + "latitude_deg": "30.0191", + "longitude_deg": "-94.387703", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Nome", + "scheduled_service": "no", + "keywords": "88XS" + }, + { + "id": "14816", + "ident": "89AK", + "type": "small_airport", + "name": "Lincoln Village Airpark", + "latitude_deg": "61.55939865112305", + "longitude_deg": "-149.7050018310547", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "89AK", + "local_code": "89AK" + }, + { + "id": "14817", + "ident": "89CA", + "type": "closed", + "name": "Swanson Ranch Number 2 Airport", + "latitude_deg": "36.467298", + "longitude_deg": "-119.880655", + "elevation_ft": "237", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Riverdale", + "scheduled_service": "no", + "keywords": "89CA" + }, + { + "id": "14818", + "ident": "89CL", + "type": "closed", + "name": "Elwood Onshore Facility Heliport", + "latitude_deg": "34.430302", + "longitude_deg": "-119.912003", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Goleta", + "scheduled_service": "no", + "keywords": "89CL" + }, + { + "id": "14819", + "ident": "89CO", + "type": "closed", + "name": "Vallery Airport", + "latitude_deg": "40.238899", + "longitude_deg": "-103.991997", + "elevation_ft": "4480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Wiggins", + "scheduled_service": "no", + "gps_code": "89CO", + "local_code": "89CO" + }, + { + "id": "14820", + "ident": "89D", + "type": "small_airport", + "name": "Kelleys Island Land Field", + "latitude_deg": "41.60279846191406", + "longitude_deg": "-82.68460083007812", + "elevation_ft": "598", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Kelleys Island", + "scheduled_service": "no", + "gps_code": "89D", + "local_code": "89D" + }, + { + "id": "14821", + "ident": "89FD", + "type": "heliport", + "name": "Tranquility Pad Heliport", + "latitude_deg": "28.401399612426758", + "longitude_deg": "-82.24259948730469", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Dade City", + "scheduled_service": "no", + "gps_code": "89FD", + "local_code": "89FD" + }, + { + "id": "14822", + "ident": "89FL", + "type": "seaplane_base", + "name": "Lake Hiawassee Seaplane Base", + "latitude_deg": "28.529199600219727", + "longitude_deg": "-81.48090362548828", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "89FL", + "local_code": "89FL" + }, + { + "id": "14853", + "ident": "89GE", + "type": "small_airport", + "name": "South Fulton Airport", + "latitude_deg": "33.537601470947266", + "longitude_deg": "-84.63880157470703", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Palmetto", + "scheduled_service": "no", + "gps_code": "89GE", + "local_code": "89GE", + "keywords": "Formerly 8A9" + }, + { + "id": "14823", + "ident": "89IA", + "type": "small_airport", + "name": "Chain Lakes Airpark", + "latitude_deg": "42.05139923095703", + "longitude_deg": "-91.716796875", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Cedar Rapids", + "scheduled_service": "no", + "gps_code": "89IA", + "local_code": "89IA" + }, + { + "id": "14824", + "ident": "89IL", + "type": "closed", + "name": "UMC Trauma Center Heliport", + "latitude_deg": "41.5028", + "longitude_deg": "-90.526496", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Moline", + "scheduled_service": "no", + "keywords": "89IL" + }, + { + "id": "14825", + "ident": "89IN", + "type": "small_airport", + "name": "Milhon Airport", + "latitude_deg": "39.511172", + "longitude_deg": "-86.384724", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Martinsville", + "scheduled_service": "no", + "gps_code": "89IN", + "local_code": "89IN" + }, + { + "id": "14826", + "ident": "89IS", + "type": "small_airport", + "name": "Voges Airstrip", + "latitude_deg": "38.21670150756836", + "longitude_deg": "-89.97509765625", + "elevation_ft": "424", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Red Bud", + "scheduled_service": "no", + "gps_code": "89IS", + "local_code": "89IS" + }, + { + "id": "14827", + "ident": "89KS", + "type": "heliport", + "name": "Neosho Memorial Regional Hospital Heliport", + "latitude_deg": "37.675021", + "longitude_deg": "-95.473876", + "elevation_ft": "988", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Chanute", + "scheduled_service": "no", + "gps_code": "89KS", + "local_code": "89KS" + }, + { + "id": "14828", + "ident": "89KY", + "type": "heliport", + "name": "Clark Regional Medical Center Heliport", + "latitude_deg": "38.00032", + "longitude_deg": "-84.19656", + "elevation_ft": "988", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Winchester", + "scheduled_service": "no", + "gps_code": "89KY", + "local_code": "89KY" + }, + { + "id": "14829", + "ident": "89LA", + "type": "heliport", + "name": "Acadiana One Office Bldg Heliport", + "latitude_deg": "30.174900054900004", + "longitude_deg": "-92.07929992679999", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "89LA", + "local_code": "89LA" + }, + { + "id": "14830", + "ident": "89LL", + "type": "small_airport", + "name": "Norman Airport", + "latitude_deg": "41.3583984375", + "longitude_deg": "-87.7249984741211", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Peotone", + "scheduled_service": "no", + "gps_code": "89LL", + "local_code": "89LL" + }, + { + "id": "334314", + "ident": "89ME", + "type": "small_airport", + "name": "Fox Field", + "latitude_deg": "44.404764", + "longitude_deg": "-69.676436", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Vassalboro", + "scheduled_service": "no", + "gps_code": "89ME", + "local_code": "89ME" + }, + { + "id": "349867", + "ident": "89MI", + "type": "heliport", + "name": "Peach Lake Heliport", + "latitude_deg": "44.289453", + "longitude_deg": "-84.171856", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "West Branch", + "scheduled_service": "no", + "gps_code": "89MI", + "local_code": "89MI" + }, + { + "id": "14831", + "ident": "89MN", + "type": "closed", + "name": "Beskar Airport", + "latitude_deg": "45.386425", + "longitude_deg": "-92.699053", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Taylors Falls", + "scheduled_service": "no", + "keywords": "89MN" + }, + { + "id": "14832", + "ident": "89MO", + "type": "small_airport", + "name": "Bishop's Landing Airport", + "latitude_deg": "38.58330154418945", + "longitude_deg": "-94.57969665527344", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Westline", + "scheduled_service": "no", + "gps_code": "89MO", + "local_code": "89MO" + }, + { + "id": "354646", + "ident": "89MU", + "type": "heliport", + "name": "Cox Health Monett Replacement Hospital Heliport", + "latitude_deg": "36.914401", + "longitude_deg": "-93.892909", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Monett", + "scheduled_service": "no", + "gps_code": "89MU", + "local_code": "89MU" + }, + { + "id": "14833", + "ident": "89NC", + "type": "small_airport", + "name": "Strickland Field", + "latitude_deg": "34.26639938354492", + "longitude_deg": "-79.02359771728516", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Fair Bluff", + "scheduled_service": "no", + "gps_code": "89NC", + "local_code": "89NC" + }, + { + "id": "14834", + "ident": "89ND", + "type": "small_airport", + "name": "Poleschook Airport", + "latitude_deg": "47.911399841308594", + "longitude_deg": "-101.2490005493164", + "elevation_ft": "2245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Minot", + "scheduled_service": "no", + "gps_code": "89ND", + "local_code": "89ND" + }, + { + "id": "14835", + "ident": "89NE", + "type": "small_airport", + "name": "George Airport", + "latitude_deg": "41.1702995300293", + "longitude_deg": "-101.0009994506836", + "elevation_ft": "2850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hershey", + "scheduled_service": "no", + "gps_code": "89NE", + "local_code": "89NE" + }, + { + "id": "14836", + "ident": "89NJ", + "type": "small_airport", + "name": "Strawberry Fields Airport", + "latitude_deg": "39.489200592041016", + "longitude_deg": "-74.72360229492188", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Mays Landing", + "scheduled_service": "no", + "gps_code": "89NJ", + "local_code": "89NJ" + }, + { + "id": "19113", + "ident": "89NY", + "type": "small_airport", + "name": "Maxson Airfield", + "latitude_deg": "44.312002", + "longitude_deg": "-75.90034", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Alexandria Bay", + "scheduled_service": "no", + "gps_code": "89NY", + "iata_code": "AXB", + "local_code": "89NY", + "home_link": "https://web.archive.org/web/20161108041600/http://www.maxsonairfield.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maxson_Airfield", + "keywords": "86N" + }, + { + "id": "14837", + "ident": "89OH", + "type": "heliport", + "name": "Blanchard Valey Regional Health Center Heliport", + "latitude_deg": "41.017799377441406", + "longitude_deg": "-83.65139770507812", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Findlay", + "scheduled_service": "no", + "gps_code": "89OH", + "local_code": "89OH" + }, + { + "id": "14838", + "ident": "89OI", + "type": "small_airport", + "name": "Circle C Airport", + "latitude_deg": "41.03889846801758", + "longitude_deg": "-80.98400115966797", + "elevation_ft": "1042", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Berlin Center", + "scheduled_service": "no", + "gps_code": "89OI", + "local_code": "89OI" + }, + { + "id": "14839", + "ident": "89OK", + "type": "small_airport", + "name": "Neversweat Too Airport", + "latitude_deg": "35.44309997558594", + "longitude_deg": "-94.89749908447266", + "elevation_ft": "565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Sallisaw", + "scheduled_service": "no", + "gps_code": "89OK", + "local_code": "89OK" + }, + { + "id": "14840", + "ident": "89OR", + "type": "small_airport", + "name": "Mucky Flat Airport", + "latitude_deg": "42.597900390625", + "longitude_deg": "-122.71299743652344", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Eagle Point", + "scheduled_service": "no", + "gps_code": "89OR", + "local_code": "89OR" + }, + { + "id": "14841", + "ident": "89PA", + "type": "heliport", + "name": "Kirschstein Heliport", + "latitude_deg": "40.46620178222656", + "longitude_deg": "-79.62809753417969", + "elevation_ft": "1195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Murrysville", + "scheduled_service": "no", + "gps_code": "89PA", + "local_code": "89PA" + }, + { + "id": "14842", + "ident": "89TA", + "type": "small_airport", + "name": "Soaring Club of Houston Gliderport", + "latitude_deg": "30.192699432373047", + "longitude_deg": "-95.96330261230469", + "elevation_ft": "308", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waller", + "scheduled_service": "no", + "gps_code": "89TA", + "local_code": "89TA" + }, + { + "id": "14843", + "ident": "89TE", + "type": "small_airport", + "name": "Lajitas International Airport", + "latitude_deg": "29.278", + "longitude_deg": "-103.686997", + "elevation_ft": "2630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lajitas", + "scheduled_service": "no", + "local_code": "T89", + "home_link": "https://www.lajitasgolfresort.com/default.aspx?pg=airport", + "keywords": "89TE" + }, + { + "id": "45788", + "ident": "89TN", + "type": "heliport", + "name": "Edwards Heliport", + "latitude_deg": "36.4325", + "longitude_deg": "-82.293611", + "elevation_ft": "1580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Johnson City", + "scheduled_service": "no", + "gps_code": "89TN", + "local_code": "89TN" + }, + { + "id": "14844", + "ident": "89TS", + "type": "small_airport", + "name": "Carter Ranch Airport", + "latitude_deg": "31.56679916381836", + "longitude_deg": "-95.7666015625", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Oakwood", + "scheduled_service": "no", + "gps_code": "89TS", + "local_code": "89TS" + }, + { + "id": "14845", + "ident": "89TX", + "type": "closed", + "name": "Aero-Bee Ranch Airstrip", + "latitude_deg": "30.870309", + "longitude_deg": "-98.418322", + "elevation_ft": "1242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Burnet", + "scheduled_service": "no", + "keywords": "89TX" + }, + { + "id": "14846", + "ident": "89VA", + "type": "small_airport", + "name": "Hidden River Airport", + "latitude_deg": "38.522300720214844", + "longitude_deg": "-78.52420043945312", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Edinburg", + "scheduled_service": "no", + "gps_code": "89VA", + "local_code": "89VA" + }, + { + "id": "14847", + "ident": "89WA", + "type": "small_airport", + "name": "Williams Airpatch Airport", + "latitude_deg": "48.27069854736328", + "longitude_deg": "-122.01899719238281", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "89WA", + "local_code": "89WA" + }, + { + "id": "14848", + "ident": "89WI", + "type": "small_airport", + "name": "Tuschen Airport", + "latitude_deg": "42.906898498535156", + "longitude_deg": "-90.03209686279297", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Jonesdale", + "scheduled_service": "no", + "gps_code": "89WI", + "local_code": "89WI" + }, + { + "id": "14849", + "ident": "89XS", + "type": "heliport", + "name": "Joe Rye Heliport", + "latitude_deg": "29.5851993560791", + "longitude_deg": "-95.30359649658203", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pearland", + "scheduled_service": "no", + "gps_code": "89XS", + "local_code": "89XS" + }, + { + "id": "14850", + "ident": "89Y", + "type": "small_airport", + "name": "Maidens Airport", + "latitude_deg": "42.7333984375", + "longitude_deg": "-84.32360076904297", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Williamston", + "scheduled_service": "no", + "gps_code": "89Y", + "local_code": "89Y" + }, + { + "id": "14851", + "ident": "8A4", + "type": "heliport", + "name": "Indianapolis Downtown Heliport", + "latitude_deg": "39.765899658203", + "longitude_deg": "-86.148902893066", + "elevation_ft": "732", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "8A4", + "local_code": "8A4", + "home_link": "http://www.indianapolisairport.com/information_news/airport_indianapolisHeliport.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Indianapolis_Downtown_Heliport", + "keywords": "IN03" + }, + { + "id": "14852", + "ident": "8A7", + "type": "small_airport", + "name": "Twin Lakes Airport", + "latitude_deg": "35.914902", + "longitude_deg": "-80.456802", + "elevation_ft": "818", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Advance", + "scheduled_service": "no", + "local_code": "8A7" + }, + { + "id": "14854", + "ident": "8AK0", + "type": "closed", + "name": "Diamond NN Cannery Airport", + "latitude_deg": "58.710513", + "longitude_deg": "-156.997741", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "South Naknek", + "scheduled_service": "no", + "keywords": "8AK0" + }, + { + "id": "14855", + "ident": "8AK1", + "type": "small_airport", + "name": "Jacobus Field", + "latitude_deg": "62.28030014038086", + "longitude_deg": "-145.36300659179688", + "elevation_ft": "1670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Gulkana", + "scheduled_service": "no", + "gps_code": "8AK1", + "local_code": "8AK1" + }, + { + "id": "14856", + "ident": "8AK2", + "type": "small_airport", + "name": "Carty's Airstrip", + "latitude_deg": "60.699779", + "longitude_deg": "-151.294699", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nikiski", + "scheduled_service": "no", + "gps_code": "8AK2", + "local_code": "8AK2" + }, + { + "id": "14857", + "ident": "8AK3", + "type": "small_airport", + "name": "Roland Norton Memorial Airstrip", + "latitude_deg": "66.76599884033203", + "longitude_deg": "-160.1529998779297", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Selawik", + "scheduled_service": "no", + "gps_code": "8AK3", + "local_code": "8AK3" + }, + { + "id": "14858", + "ident": "8AK4", + "type": "closed", + "name": "Scout Lake Seaplane Base", + "latitude_deg": "60.534066", + "longitude_deg": "-150.847692", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no", + "keywords": "8AK4" + }, + { + "id": "324468", + "ident": "8AK5", + "type": "small_airport", + "name": "Fort Crosby Airport", + "latitude_deg": "62.513888", + "longitude_deg": "-150.265277", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Trapper Creek", + "scheduled_service": "no", + "gps_code": "8AK5", + "local_code": "8AK5" + }, + { + "id": "14859", + "ident": "8AK6", + "type": "small_airport", + "name": "Little Susitna Airport", + "latitude_deg": "61.37189865112305", + "longitude_deg": "-150.26199340820312", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Susitna Station", + "scheduled_service": "no", + "gps_code": "8AK6", + "local_code": "8AK6" + }, + { + "id": "14861", + "ident": "8AK8", + "type": "small_airport", + "name": "North Cubs Strip Airport", + "latitude_deg": "61.6300010681", + "longitude_deg": "-149.682998657", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "8AK8", + "local_code": "8AK8" + }, + { + "id": "14862", + "ident": "8AK9", + "type": "small_airport", + "name": "Tok 2 Airport", + "latitude_deg": "63.308904791", + "longitude_deg": "-143.016929626", + "elevation_ft": "1630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tok", + "scheduled_service": "no", + "gps_code": "8AK9", + "local_code": "8AK9" + }, + { + "id": "324903", + "ident": "8AL0", + "type": "heliport", + "name": "Mitchell Dam Heliport", + "latitude_deg": "32.800559", + "longitude_deg": "-86.446674", + "elevation_ft": "442", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Clanton", + "scheduled_service": "no", + "gps_code": "8AL0", + "local_code": "8AL0" + }, + { + "id": "322466", + "ident": "8AL1", + "type": "heliport", + "name": "Med West-Hoover Heliport", + "latitude_deg": "33.354794", + "longitude_deg": "-86.85609", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Hoover", + "scheduled_service": "no", + "gps_code": "8AL1", + "local_code": "8AL1" + }, + { + "id": "329057", + "ident": "8AL2", + "type": "small_airport", + "name": "Charles C Killough Field", + "latitude_deg": "33.355426", + "longitude_deg": "-86.262135", + "elevation_ft": "443", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Talladega", + "scheduled_service": "no", + "gps_code": "8AL2", + "local_code": "8AL2" + }, + { + "id": "318195", + "ident": "8AL3", + "type": "small_airport", + "name": "Fricks Field Airport", + "latitude_deg": "34.1417667", + "longitude_deg": "-86.0885667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Boaz", + "scheduled_service": "no", + "gps_code": "8AL3", + "local_code": "8AL3" + }, + { + "id": "325538", + "ident": "8AL4", + "type": "heliport", + "name": "Lay Dam Heliport", + "latitude_deg": "32.959231", + "longitude_deg": "-86.519564", + "elevation_ft": "331", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Jemison", + "scheduled_service": "no", + "gps_code": "8AL4", + "local_code": "8AL4" + }, + { + "id": "325105", + "ident": "8AL5", + "type": "heliport", + "name": "Plant Gorgas Heliport", + "latitude_deg": "33.642452", + "longitude_deg": "-87.197209", + "elevation_ft": "256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Parrish", + "scheduled_service": "no", + "gps_code": "8AL5", + "local_code": "8AL5" + }, + { + "id": "324966", + "ident": "8AL6", + "type": "heliport", + "name": "Air Evac 32 Heliport", + "latitude_deg": "34.660352", + "longitude_deg": "-86.049279", + "elevation_ft": "612", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Scottsboro", + "scheduled_service": "no", + "gps_code": "8AL6", + "local_code": "8AL6" + }, + { + "id": "323180", + "ident": "8AL8", + "type": "heliport", + "name": "Woodland Clinic Heliport", + "latitude_deg": "33.373278", + "longitude_deg": "-85.396754", + "elevation_ft": "1119", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Woodland", + "scheduled_service": "no", + "gps_code": "8AL8", + "local_code": "8AL8" + }, + { + "id": "14863", + "ident": "8AL9", + "type": "heliport", + "name": "Wiregrass Hospital Heliport", + "latitude_deg": "31.04960060119629", + "longitude_deg": "-85.8916015625", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Geneva", + "scheduled_service": "no", + "gps_code": "8AL9", + "local_code": "8AL9" + }, + { + "id": "14864", + "ident": "8AN6", + "type": "small_airport", + "name": "Isaacson Airport", + "latitude_deg": "47.65919876098633", + "longitude_deg": "-117.68199920654297", + "elevation_ft": "2410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Medical Lake", + "scheduled_service": "no", + "gps_code": "8AN6", + "local_code": "8AN6" + }, + { + "id": "14865", + "ident": "8AR0", + "type": "small_airport", + "name": "Hargrove Airport", + "latitude_deg": "34.51259994506836", + "longitude_deg": "-91.56400299072266", + "elevation_ft": "211", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Stuttgart", + "scheduled_service": "no", + "gps_code": "8AR0", + "local_code": "8AR0" + }, + { + "id": "14866", + "ident": "8AR1", + "type": "small_airport", + "name": "Totty Field Airport", + "latitude_deg": "36.4893989563", + "longitude_deg": "-92.6421966553", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Oakland", + "scheduled_service": "no", + "gps_code": "8AR1", + "local_code": "8AR1" + }, + { + "id": "45290", + "ident": "8AZ5", + "type": "small_airport", + "name": "Lizzy Lizard Airport", + "latitude_deg": "31.892427", + "longitude_deg": "-109.05407", + "elevation_ft": "4200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Portal", + "scheduled_service": "no", + "gps_code": "8AZ5", + "local_code": "8AZ5" + }, + { + "id": "14867", + "ident": "8B2", + "type": "small_airport", + "name": "Twin Mountain Airport", + "latitude_deg": "44.263999938964844", + "longitude_deg": "-71.54759979248047", + "elevation_ft": "1459", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Twin Mountain", + "scheduled_service": "no", + "gps_code": "8B2", + "local_code": "8B2" + }, + { + "id": "14868", + "ident": "8C2", + "type": "small_airport", + "name": "Sully Municipal Airport", + "latitude_deg": "41.574100494384766", + "longitude_deg": "-92.84660339355469", + "elevation_ft": "922", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Sully", + "scheduled_service": "no", + "gps_code": "8C2", + "local_code": "8C2" + }, + { + "id": "14869", + "ident": "8C5", + "type": "small_airport", + "name": "Toledo Municipal Airport", + "latitude_deg": "41.98820114135742", + "longitude_deg": "-92.5479965209961", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Toledo", + "scheduled_service": "no", + "gps_code": "8C5", + "local_code": "8C5" + }, + { + "id": "14870", + "ident": "8C6", + "type": "small_airport", + "name": "Traer Municipal Airport", + "latitude_deg": "42.19919967651367", + "longitude_deg": "-92.45800018310547", + "elevation_ft": "892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Traer", + "scheduled_service": "no", + "gps_code": "8C6", + "local_code": "8C6" + }, + { + "id": "14871", + "ident": "8CA0", + "type": "small_airport", + "name": "Osborne Airport", + "latitude_deg": "34.583793", + "longitude_deg": "-117.266693", + "elevation_ft": "2900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Victorville", + "scheduled_service": "no", + "gps_code": "8CA0", + "local_code": "8CA0" + }, + { + "id": "14872", + "ident": "8CA1", + "type": "heliport", + "name": "Merle Norman Cosmetics (Sylmar) Heliport", + "latitude_deg": "34.30500030517578", + "longitude_deg": "-118.46499633789062", + "elevation_ft": "1215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sylmar", + "scheduled_service": "no", + "gps_code": "8CA1", + "local_code": "8CA1" + }, + { + "id": "14873", + "ident": "8CA2", + "type": "heliport", + "name": "Cal Fire Auburn Heliport", + "latitude_deg": "38.934085", + "longitude_deg": "-121.053779", + "elevation_ft": "1635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "8CA2", + "local_code": "8CA2" + }, + { + "id": "14874", + "ident": "8CA3", + "type": "heliport", + "name": "High Hill Ranch Heliport", + "latitude_deg": "38.74209976196289", + "longitude_deg": "-120.71800231933594", + "elevation_ft": "2885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Camino", + "scheduled_service": "no", + "gps_code": "8CA3", + "local_code": "8CA3" + }, + { + "id": "14875", + "ident": "8CA4", + "type": "heliport", + "name": "SCE Eastern Division Heliport", + "latitude_deg": "34.104739", + "longitude_deg": "-117.351691", + "elevation_ft": "1205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rialto", + "scheduled_service": "no", + "gps_code": "8CA4", + "local_code": "8CA4" + }, + { + "id": "14876", + "ident": "8CA5", + "type": "closed", + "name": "Pines Airpark", + "latitude_deg": "33.645599", + "longitude_deg": "-117.109333", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Winchester", + "scheduled_service": "no", + "keywords": "8CA5" + }, + { + "id": "14877", + "ident": "8CA6", + "type": "heliport", + "name": "Yucca Valley Service Center Heliport", + "latitude_deg": "34.124906", + "longitude_deg": "-116.413607", + "elevation_ft": "3238", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Yucca Valley", + "scheduled_service": "no", + "gps_code": "8CA6", + "local_code": "8CA6" + }, + { + "id": "14878", + "ident": "8CA7", + "type": "heliport", + "name": "Platform Henry Heliport", + "latitude_deg": "34.333099365234375", + "longitude_deg": "-119.56099700927734", + "elevation_ft": "111", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Carpinteria", + "scheduled_service": "no", + "gps_code": "8CA7", + "local_code": "8CA7" + }, + { + "id": "14879", + "ident": "8CA8", + "type": "small_airport", + "name": "Wallom Field", + "latitude_deg": "38.06740188598633", + "longitude_deg": "-121.20800018310547", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lodi", + "scheduled_service": "no", + "gps_code": "8CA8", + "local_code": "8CA8" + }, + { + "id": "14880", + "ident": "8CA9", + "type": "heliport", + "name": "KGTV-10 Parking Lot Heliport", + "latitude_deg": "32.720207", + "longitude_deg": "-117.097355", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no", + "gps_code": "8CA9", + "local_code": "8CA9" + }, + { + "id": "14881", + "ident": "8CL0", + "type": "small_airport", + "name": "Nichols Farms Airport", + "latitude_deg": "34.58890151977539", + "longitude_deg": "-117.82599639892578", + "elevation_ft": "2700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palmdale", + "scheduled_service": "no", + "gps_code": "8CL0", + "local_code": "8CL0" + }, + { + "id": "14882", + "ident": "8CL1", + "type": "small_airport", + "name": "Lake Wohlford Resort Airport", + "latitude_deg": "33.175891", + "longitude_deg": "-117.001868", + "elevation_ft": "1643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Escondido", + "scheduled_service": "no", + "gps_code": "8CL1", + "local_code": "8CL1" + }, + { + "id": "14883", + "ident": "8CL2", + "type": "small_airport", + "name": "Lucchetti Ranch Airport", + "latitude_deg": "38.423500061035156", + "longitude_deg": "-121.22699737548828", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Elk Grove", + "scheduled_service": "no", + "gps_code": "8CL2", + "local_code": "8CL2" + }, + { + "id": "14884", + "ident": "8CL3", + "type": "heliport", + "name": "NBC-TV Heliport", + "latitude_deg": "34.15359878540039", + "longitude_deg": "-118.33100128173828", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Burbank", + "scheduled_service": "no", + "gps_code": "8CL3", + "local_code": "8CL3" + }, + { + "id": "14885", + "ident": "8CL4", + "type": "heliport", + "name": "A G Spanos Companies Hq Heliport", + "latitude_deg": "38.047638", + "longitude_deg": "-121.370251", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stockton", + "scheduled_service": "no", + "gps_code": "8CL4", + "local_code": "8CL4" + }, + { + "id": "14886", + "ident": "8CL5", + "type": "heliport", + "name": "R I Ai Canoga Park B/2 Helistop", + "latitude_deg": "34.23360061645508", + "longitude_deg": "-118.58699798583984", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "8CL5", + "local_code": "8CL5" + }, + { + "id": "14887", + "ident": "8CL6", + "type": "small_airport", + "name": "Moller Airport", + "latitude_deg": "39.28850173950195", + "longitude_deg": "-122.18900299072266", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Maxwell", + "scheduled_service": "no", + "gps_code": "8CL6", + "local_code": "8CL6" + }, + { + "id": "14888", + "ident": "8CL7", + "type": "heliport", + "name": "Lodi Memorial Hospital Heliport", + "latitude_deg": "38.122463", + "longitude_deg": "-121.286746", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lodi", + "scheduled_service": "no", + "gps_code": "8CL7", + "local_code": "8CL7" + }, + { + "id": "14889", + "ident": "8CL8", + "type": "closed", + "name": "United Ca Bank Data Processing Ops Heliport", + "latitude_deg": "34.069698", + "longitude_deg": "-118.292", + "elevation_ft": "367", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "8CL8", + "local_code": "8CL8" + }, + { + "id": "14890", + "ident": "8CL9", + "type": "closed", + "name": "Bland Field", + "latitude_deg": "36.710905", + "longitude_deg": "-120.031828", + "elevation_ft": "222", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Kerman", + "scheduled_service": "no", + "keywords": "8CL9" + }, + { + "id": "14891", + "ident": "8CO0", + "type": "small_airport", + "name": "Kent Airport", + "latitude_deg": "40.249152", + "longitude_deg": "-103.994473", + "elevation_ft": "4480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Wiggins", + "scheduled_service": "no", + "gps_code": "8CO0", + "local_code": "8CO0" + }, + { + "id": "14892", + "ident": "8CO1", + "type": "heliport", + "name": "Prospect Peak Heliport", + "latitude_deg": "38.47779846191406", + "longitude_deg": "-105.52100372314453", + "elevation_ft": "8660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Texas Creek", + "scheduled_service": "no", + "gps_code": "8CO1", + "local_code": "8CO1" + }, + { + "id": "14893", + "ident": "8CO2", + "type": "small_airport", + "name": "William Leon Schawo Airport", + "latitude_deg": "40.670799255371094", + "longitude_deg": "-104.20800018310547", + "elevation_ft": "4950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Briggsdale", + "scheduled_service": "no", + "gps_code": "8CO2", + "local_code": "8CO2" + }, + { + "id": "14894", + "ident": "8CO3", + "type": "heliport", + "name": "Fremont Peak Heliport", + "latitude_deg": "38.45389938354492", + "longitude_deg": "-105.28600311279297", + "elevation_ft": "7100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Canon City", + "scheduled_service": "no", + "gps_code": "8CO3", + "local_code": "8CO3" + }, + { + "id": "14895", + "ident": "8CO4", + "type": "small_airport", + "name": "East Moore Field", + "latitude_deg": "39.670501708984375", + "longitude_deg": "-104.13600158691406", + "elevation_ft": "5250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Byers", + "scheduled_service": "no", + "gps_code": "8CO4", + "local_code": "8CO4" + }, + { + "id": "14896", + "ident": "8CO5", + "type": "small_airport", + "name": "Widner Airport", + "latitude_deg": "38.833618", + "longitude_deg": "-107.892838", + "elevation_ft": "6020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Hotchkiss", + "scheduled_service": "no", + "gps_code": "8CO5", + "local_code": "8CO5" + }, + { + "id": "14897", + "ident": "8CO6", + "type": "heliport", + "name": "Arkansas Valley Regional Medical Center Heliport", + "latitude_deg": "37.96139907836914", + "longitude_deg": "-103.55000305175781", + "elevation_ft": "4124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "La Junta", + "scheduled_service": "no", + "gps_code": "8CO6", + "local_code": "8CO6" + }, + { + "id": "14898", + "ident": "8CO7", + "type": "small_airport", + "name": "Colorado Antique Field", + "latitude_deg": "40.122501373291016", + "longitude_deg": "-105.1719970703125", + "elevation_ft": "5069", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Niwot", + "scheduled_service": "no", + "gps_code": "8CO7", + "local_code": "8CO7" + }, + { + "id": "14899", + "ident": "8CO8", + "type": "small_airport", + "name": "Koenig Airport", + "latitude_deg": "40.108299255371094", + "longitude_deg": "-102.72799682617188", + "elevation_ft": "4150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Yuma", + "scheduled_service": "no", + "gps_code": "8CO8", + "local_code": "8CO8" + }, + { + "id": "14900", + "ident": "8CO9", + "type": "small_airport", + "name": "Pine View Airport", + "latitude_deg": "39.344398498535", + "longitude_deg": "-104.58100128174", + "elevation_ft": "6572", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Elizabeth", + "scheduled_service": "no", + "gps_code": "8CO9", + "local_code": "8CO9", + "keywords": "02V" + }, + { + "id": "14901", + "ident": "8D4", + "type": "small_airport", + "name": "Paul C. Miller-Sparta Airport", + "latitude_deg": "43.12739944458008", + "longitude_deg": "-85.67919921875", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Sparta", + "scheduled_service": "no", + "gps_code": "8D4", + "local_code": "8D4" + }, + { + "id": "14902", + "ident": "8D6", + "type": "small_airport", + "name": "Mc Intosh Municipal Airport", + "latitude_deg": "45.9082984924", + "longitude_deg": "-101.346000671", + "elevation_ft": "2251", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Mc Intosh", + "scheduled_service": "no", + "gps_code": "8D6", + "local_code": "8D6" + }, + { + "id": "14903", + "ident": "8D8", + "type": "small_airport", + "name": "Lake Andes Municipal Airport", + "latitude_deg": "43.14799880981445", + "longitude_deg": "-98.54039764404297", + "elevation_ft": "1475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Lake Andes", + "scheduled_service": "no", + "gps_code": "8D8", + "local_code": "8D8" + }, + { + "id": "14904", + "ident": "8D9", + "type": "small_airport", + "name": "Howard Municipal Airport", + "latitude_deg": "44.02909851074219", + "longitude_deg": "-97.53780364990234", + "elevation_ft": "1582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Howard", + "scheduled_service": "no", + "gps_code": "8D9", + "local_code": "8D9" + }, + { + "id": "14905", + "ident": "8FA0", + "type": "seaplane_base", + "name": "Lake Gibson Seaplane Base", + "latitude_deg": "28.108600616455078", + "longitude_deg": "-81.95870208740234", + "elevation_ft": "142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lakeland", + "scheduled_service": "no", + "gps_code": "8FA0", + "local_code": "8FA0" + }, + { + "id": "346576", + "ident": "8FA1", + "type": "small_airport", + "name": "Clark Field", + "latitude_deg": "30.052951", + "longitude_deg": "-82.241775", + "elevation_ft": "123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Raiford", + "scheduled_service": "no", + "gps_code": "8FA1", + "local_code": "8FA1" + }, + { + "id": "301238", + "ident": "8FA4", + "type": "small_airport", + "name": "Samsula / Coe Field", + "latitude_deg": "29.009948", + "longitude_deg": "-81.133869", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "scheduled_service": "no", + "gps_code": "8FA4" + }, + { + "id": "356204", + "ident": "8FA9", + "type": "seaplane_base", + "name": "Seashell Seaplane Base", + "latitude_deg": "30.057717", + "longitude_deg": "-84.293694", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Crawfordville", + "scheduled_service": "no", + "gps_code": "8FA9", + "local_code": "8FA9" + }, + { + "id": "14906", + "ident": "8FD1", + "type": "small_airport", + "name": "Buckner Airport", + "latitude_deg": "30.098800659179688", + "longitude_deg": "-82.92759704589844", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Mc Alpin", + "scheduled_service": "no", + "gps_code": "8FD1", + "local_code": "8FD1" + }, + { + "id": "14907", + "ident": "8FD2", + "type": "small_airport", + "name": "The Flying Horseman Airport", + "latitude_deg": "29.715153", + "longitude_deg": "-82.097139", + "elevation_ft": "192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Melrose", + "scheduled_service": "no", + "gps_code": "81FL", + "local_code": "81FL", + "keywords": "8FD2" + }, + { + "id": "14908", + "ident": "8FD3", + "type": "small_airport", + "name": "Blackwater Airfield", + "latitude_deg": "30.877700805664062", + "longitude_deg": "-86.85440063476562", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Munson", + "scheduled_service": "no", + "gps_code": "8FD3", + "local_code": "8FD3" + }, + { + "id": "14909", + "ident": "8FD4", + "type": "heliport", + "name": "Rockledge Regional Medical Center Heliport", + "latitude_deg": "28.334695", + "longitude_deg": "-80.723363", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Rockledge", + "scheduled_service": "no", + "gps_code": "8FD4", + "local_code": "8FD4", + "keywords": "Wuesthoff Hospital Emergency Heliport" + }, + { + "id": "14910", + "ident": "8FD5", + "type": "small_airport", + "name": "Lykes Brighton Airport", + "latitude_deg": "27.188899993896484", + "longitude_deg": "-81.08699798583984", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Okeechobee", + "scheduled_service": "no", + "gps_code": "8FD5", + "local_code": "8FD5" + }, + { + "id": "14911", + "ident": "8FD7", + "type": "closed", + "name": "Lucerne Medical Center Heliport", + "latitude_deg": "28.5308", + "longitude_deg": "-81.3787", + "elevation_ft": "117", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "keywords": "8FD7" + }, + { + "id": "14912", + "ident": "8FD8", + "type": "closed", + "name": "Bayflite One Heliport", + "latitude_deg": "28.193899", + "longitude_deg": "-82.620598", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Odessa", + "scheduled_service": "no", + "keywords": "8FD8" + }, + { + "id": "14913", + "ident": "8FD9", + "type": "heliport", + "name": "Colony Heliport", + "latitude_deg": "26.75309944152832", + "longitude_deg": "-81.38510131835938", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "La Belle", + "scheduled_service": "no", + "gps_code": "8FD9", + "local_code": "8FD9" + }, + { + "id": "14914", + "ident": "8FL0", + "type": "small_airport", + "name": "Hutson Airfield", + "latitude_deg": "29.72800064086914", + "longitude_deg": "-81.4397964477539", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Hastings", + "scheduled_service": "no", + "gps_code": "8FL0", + "local_code": "8FL0" + }, + { + "id": "14915", + "ident": "8FL1", + "type": "small_airport", + "name": "Mc Donald's Field", + "latitude_deg": "27.197000503499996", + "longitude_deg": "-81.9156036377", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Arcadia", + "scheduled_service": "no", + "gps_code": "8FL1", + "local_code": "8FL1" + }, + { + "id": "14916", + "ident": "8FL2", + "type": "small_airport", + "name": "Kiever Airport", + "latitude_deg": "29.001101", + "longitude_deg": "-82.100601", + "elevation_ft": "67", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Belleview", + "scheduled_service": "no", + "gps_code": "8FL2", + "local_code": "8FL2", + "keywords": "Norton Airport" + }, + { + "id": "14917", + "ident": "8FL3", + "type": "small_airport", + "name": "Back Achers Airport", + "latitude_deg": "29.072999954223633", + "longitude_deg": "-81.99949645996094", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Belleview", + "scheduled_service": "no", + "gps_code": "8FL3", + "local_code": "8FL3" + }, + { + "id": "14918", + "ident": "8FL4", + "type": "heliport", + "name": "Bay Medical Center Heliport", + "latitude_deg": "30.157800674438477", + "longitude_deg": "-85.64939880371094", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City", + "scheduled_service": "no", + "gps_code": "8FL4", + "local_code": "8FL4" + }, + { + "id": "14919", + "ident": "8FL5", + "type": "closed", + "name": "Dancing Oaks Heliport", + "latitude_deg": "27.9484", + "longitude_deg": "-81.863503", + "elevation_ft": "107", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bartow", + "scheduled_service": "no", + "keywords": "8FL5" + }, + { + "id": "14920", + "ident": "8FL6", + "type": "small_airport", + "name": "George T Mc Cutchan Airport", + "latitude_deg": "30.673500061035156", + "longitude_deg": "-86.85189819335938", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Harold", + "scheduled_service": "no", + "gps_code": "8FL6", + "local_code": "8FL6" + }, + { + "id": "14921", + "ident": "8FL7", + "type": "heliport", + "name": "Capra Farms Heliport", + "latitude_deg": "29.68549919128418", + "longitude_deg": "-82.47589874267578", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Gainesville", + "scheduled_service": "no", + "gps_code": "8FL7", + "local_code": "8FL7" + }, + { + "id": "14922", + "ident": "8FL8", + "type": "heliport", + "name": "Jacksonville Police Heliport", + "latitude_deg": "30.325192", + "longitude_deg": "-81.651297", + "elevation_ft": "77", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "8FL8", + "local_code": "8FL8" + }, + { + "id": "14923", + "ident": "8FL9", + "type": "closed", + "name": "Burnt Store Road Heliport", + "latitude_deg": "26.846631", + "longitude_deg": "-82.022228", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Punta Gorda", + "scheduled_service": "no", + "keywords": "8FL9" + }, + { + "id": "14924", + "ident": "8G3", + "type": "small_airport", + "name": "Giermek Executive Airport", + "latitude_deg": "42.06869888305664", + "longitude_deg": "-78.40450286865234", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Olean", + "scheduled_service": "no", + "gps_code": "8G3", + "local_code": "8G3" + }, + { + "id": "14925", + "ident": "8G8", + "type": "small_airport", + "name": "Koons Airport", + "latitude_deg": "40.882676", + "longitude_deg": "-80.880849", + "elevation_ft": "1327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "K8G8", + "local_code": "8G8" + }, + { + "id": "14926", + "ident": "8GA0", + "type": "heliport", + "name": "Pinetree Heliport", + "latitude_deg": "34.145833", + "longitude_deg": "-84.229722", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Cumming", + "scheduled_service": "no", + "gps_code": "8GA0", + "local_code": "8GA0" + }, + { + "id": "14927", + "ident": "8GA1", + "type": "small_airport", + "name": "Gum Creek Airport", + "latitude_deg": "33.4212", + "longitude_deg": "-85.161903", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Roopville", + "scheduled_service": "no", + "gps_code": "8GA1", + "local_code": "8GA1" + }, + { + "id": "14928", + "ident": "8GA2", + "type": "heliport", + "name": "Dwight David Eisenhower Army Medical Ctr Heliport", + "latitude_deg": "33.4300994873", + "longitude_deg": "-82.12120056150002", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Augusta", + "scheduled_service": "no", + "gps_code": "8GA2", + "local_code": "8GA2" + }, + { + "id": "14929", + "ident": "8GA3", + "type": "small_airport", + "name": "Leesburg Spraying Airport", + "latitude_deg": "31.77519989013672", + "longitude_deg": "-84.1249008178711", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Leesburg", + "scheduled_service": "no", + "gps_code": "8GA3", + "local_code": "8GA3" + }, + { + "id": "14930", + "ident": "8GA4", + "type": "closed", + "name": "Doctors Hospital Heliport", + "latitude_deg": "33.481701", + "longitude_deg": "-82.091698", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Augusta", + "scheduled_service": "no", + "keywords": "8GA4" + }, + { + "id": "14931", + "ident": "8GA5", + "type": "heliport", + "name": "Marion Hospital Heliport", + "latitude_deg": "32.328800201416016", + "longitude_deg": "-84.52629852294922", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Buena Vista", + "scheduled_service": "no", + "gps_code": "8GA5", + "local_code": "8GA5" + }, + { + "id": "14932", + "ident": "8GA6", + "type": "small_airport", + "name": "S & S Landing Strip", + "latitude_deg": "33.161388", + "longitude_deg": "-84.320517", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Griffin", + "scheduled_service": "no", + "gps_code": "8GA6", + "local_code": "8GA6" + }, + { + "id": "14933", + "ident": "8GA7", + "type": "small_airport", + "name": "Etowah Bend Gliderport", + "latitude_deg": "34.20199966430664", + "longitude_deg": "-84.97720336914062", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Kingston", + "scheduled_service": "no", + "gps_code": "8GA7", + "local_code": "8GA7" + }, + { + "id": "14934", + "ident": "8GA8", + "type": "small_airport", + "name": "Falcons Aerie Airport", + "latitude_deg": "33.577301025390625", + "longitude_deg": "-85.00299835205078", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Carrollton", + "scheduled_service": "no", + "gps_code": "8GA8", + "local_code": "8GA8" + }, + { + "id": "14935", + "ident": "8GA9", + "type": "small_airport", + "name": "Brook Bridge Aerodrome", + "latitude_deg": "33.276798248291016", + "longitude_deg": "-84.41079711914062", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Vaughn", + "scheduled_service": "no", + "gps_code": "8GA9", + "local_code": "8GA9" + }, + { + "id": "14936", + "ident": "8GE8", + "type": "heliport", + "name": "Northside Hospital-Cherokee Heliport", + "latitude_deg": "34.246700286865234", + "longitude_deg": "-84.49919891357422", + "elevation_ft": "975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Canton", + "scheduled_service": "no", + "gps_code": "8GE8", + "local_code": "8GE8" + }, + { + "id": "14937", + "ident": "8I1", + "type": "small_airport", + "name": "Robinson Airport", + "latitude_deg": "38.69449996948242", + "longitude_deg": "-85.19830322265625", + "elevation_ft": "484", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Vevay", + "scheduled_service": "no", + "gps_code": "8I1", + "local_code": "8I1" + }, + { + "id": "14938", + "ident": "8I3", + "type": "small_airport", + "name": "Glenndale Airport", + "latitude_deg": "40.43339920043945", + "longitude_deg": "-86.20330047607422", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Kokomo", + "scheduled_service": "no", + "gps_code": "8I3", + "local_code": "8I3" + }, + { + "id": "14939", + "ident": "8IA0", + "type": "heliport", + "name": "Unity Healthcare Heliport", + "latitude_deg": "41.4336013794", + "longitude_deg": "-91.05419921880001", + "elevation_ft": "633", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Muscatine", + "scheduled_service": "no", + "gps_code": "8IA0", + "local_code": "8IA0" + }, + { + "id": "14940", + "ident": "8IA1", + "type": "heliport", + "name": "Hegg Memorial Hospital Heliport", + "latitude_deg": "43.201215", + "longitude_deg": "-96.283547", + "elevation_ft": "1256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Rock Valley", + "scheduled_service": "no", + "gps_code": "8IA1", + "local_code": "8IA1" + }, + { + "id": "14941", + "ident": "8IA2", + "type": "small_airport", + "name": "Port Paradise Farms Airport", + "latitude_deg": "41.17390060424805", + "longitude_deg": "-91.36180114746094", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Winfield", + "scheduled_service": "no", + "gps_code": "8IA2", + "local_code": "8IA2" + }, + { + "id": "345299", + "ident": "8IA8", + "type": "small_airport", + "name": "Pfeifer Field", + "latitude_deg": "41.455074", + "longitude_deg": "-91.617259", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Riverside", + "scheduled_service": "no", + "gps_code": "8IA8", + "local_code": "8IA8" + }, + { + "id": "14942", + "ident": "8IA9", + "type": "closed", + "name": "Shields Airport", + "latitude_deg": "41.156101", + "longitude_deg": "-95.244202", + "elevation_ft": "1245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Red Oak", + "scheduled_service": "no", + "keywords": "8IA9" + }, + { + "id": "45398", + "ident": "8ID8", + "type": "small_airport", + "name": "Lewis and Clark Airstrip", + "latitude_deg": "45.354071", + "longitude_deg": "-113.864472", + "elevation_ft": "4530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Salmon", + "scheduled_service": "no", + "gps_code": "8ID8", + "local_code": "8ID8" + }, + { + "id": "14943", + "ident": "8II0", + "type": "small_airport", + "name": "Allen and Gloss Airport", + "latitude_deg": "38.856998443603516", + "longitude_deg": "-85.10130310058594", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bennington", + "scheduled_service": "no", + "gps_code": "8II0", + "local_code": "8II0" + }, + { + "id": "14944", + "ident": "8II1", + "type": "small_airport", + "name": "Careferre Acres Airport", + "latitude_deg": "39.183101654052734", + "longitude_deg": "-87.1260986328125", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Jasonville", + "scheduled_service": "no", + "gps_code": "8II1", + "local_code": "8II1" + }, + { + "id": "14945", + "ident": "8II2", + "type": "small_airport", + "name": "Norris Field", + "latitude_deg": "39.652607", + "longitude_deg": "-84.866417", + "elevation_ft": "1085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Liberty", + "scheduled_service": "no", + "gps_code": "8II2", + "local_code": "8II2" + }, + { + "id": "14946", + "ident": "8II3", + "type": "small_airport", + "name": "Thrust Industries Airport", + "latitude_deg": "38.212501525878906", + "longitude_deg": "-87.57949829101562", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Haubstadt", + "scheduled_service": "no", + "gps_code": "8II3", + "local_code": "8II3" + }, + { + "id": "14947", + "ident": "8II4", + "type": "closed", + "name": "Helton Heliport", + "latitude_deg": "39.614498", + "longitude_deg": "-86.520798", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hazelwood", + "scheduled_service": "no", + "keywords": "8II4" + }, + { + "id": "14948", + "ident": "8II5", + "type": "small_airport", + "name": "Holt Field", + "latitude_deg": "40.899436", + "longitude_deg": "-85.000491", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hoagland", + "scheduled_service": "no", + "gps_code": "8II5", + "local_code": "8II5" + }, + { + "id": "14949", + "ident": "8II6", + "type": "heliport", + "name": "Rolls Royce Plant 5 Heliport", + "latitude_deg": "39.733377", + "longitude_deg": "-86.20471", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "8II6", + "local_code": "8II6", + "keywords": "Allison Plant 5" + }, + { + "id": "14950", + "ident": "8II7", + "type": "heliport", + "name": "Allison Plant 8 Heliport", + "latitude_deg": "39.7411994934082", + "longitude_deg": "-86.20970153808594", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "8II7", + "local_code": "8II7" + }, + { + "id": "14951", + "ident": "8II8", + "type": "heliport", + "name": "Allison Plant 3 Heliport", + "latitude_deg": "39.77920150756836", + "longitude_deg": "-86.24579620361328", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "8II8", + "local_code": "8II8" + }, + { + "id": "14952", + "ident": "8II9", + "type": "heliport", + "name": "Summe Farm Heliport", + "latitude_deg": "39.95750045776367", + "longitude_deg": "-86.24800109863281", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Zionsville", + "scheduled_service": "no", + "gps_code": "8II9", + "local_code": "8II9" + }, + { + "id": "14953", + "ident": "8IL0", + "type": "small_airport", + "name": "Adkins Restricted Landing Area", + "latitude_deg": "42.352864", + "longitude_deg": "-88.637442", + "elevation_ft": "853", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Harvard", + "scheduled_service": "no", + "gps_code": "8IL0", + "local_code": "8IL0" + }, + { + "id": "14954", + "ident": "8IL1", + "type": "small_airport", + "name": "Twin Gardens Airport", + "latitude_deg": "42.410964", + "longitude_deg": "-88.652263", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Harvard", + "scheduled_service": "no", + "gps_code": "8IL1", + "local_code": "8IL1" + }, + { + "id": "14955", + "ident": "8IL2", + "type": "small_airport", + "name": "Kirkpatrick Airport", + "latitude_deg": "42.48469924926758", + "longitude_deg": "-88.60009765625", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Harvard", + "scheduled_service": "no", + "gps_code": "8IL2", + "local_code": "8IL2" + }, + { + "id": "14956", + "ident": "8IL3", + "type": "small_airport", + "name": "Butler Hill Restricted Landing Area", + "latitude_deg": "41.738098", + "longitude_deg": "-89.162498", + "elevation_ft": "765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "West Brooklyn", + "scheduled_service": "no", + "gps_code": "8IL3", + "local_code": "8IL3" + }, + { + "id": "14957", + "ident": "8IL4", + "type": "heliport", + "name": "Mercy Harvard Hospital Heliport", + "latitude_deg": "42.42639923095703", + "longitude_deg": "-88.60790252685547", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Harvard", + "scheduled_service": "no", + "gps_code": "8IL4", + "local_code": "8IL4" + }, + { + "id": "14958", + "ident": "8IL5", + "type": "small_airport", + "name": "O'Connor Field", + "latitude_deg": "42.368327", + "longitude_deg": "-89.354301", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pecatonica", + "scheduled_service": "no", + "gps_code": "8IL5", + "local_code": "8IL5" + }, + { + "id": "14959", + "ident": "8IL6", + "type": "closed", + "name": "Robertson's Roost Airport", + "latitude_deg": "38.859402", + "longitude_deg": "-88.6586", + "elevation_ft": "542", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Edgewood", + "scheduled_service": "no", + "keywords": "8IL6" + }, + { + "id": "14960", + "ident": "8IL7", + "type": "seaplane_base", + "name": "Dutch Creek Seaplane Base", + "latitude_deg": "42.37110137939453", + "longitude_deg": "-88.24700164794922", + "elevation_ft": "737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mc Henry", + "scheduled_service": "no", + "gps_code": "8IL7", + "local_code": "8IL7" + }, + { + "id": "14961", + "ident": "8IL8", + "type": "heliport", + "name": "Advocate South Suburban Hospital Heliport", + "latitude_deg": "41.567695", + "longitude_deg": "-87.697161", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hazel Crest", + "scheduled_service": "no", + "gps_code": "8IL8", + "local_code": "8IL8" + }, + { + "id": "14962", + "ident": "8IL9", + "type": "seaplane_base", + "name": "Little Sister Seaplane Base", + "latitude_deg": "41.20000076293945", + "longitude_deg": "-89.35009765625", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hennepin", + "scheduled_service": "no", + "gps_code": "8IL9", + "local_code": "8IL9" + }, + { + "id": "45407", + "ident": "8IN1", + "type": "heliport", + "name": "Clarian Arnett Heliport", + "latitude_deg": "40.400833", + "longitude_deg": "-86.808056", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "8IN1", + "local_code": "8IN1" + }, + { + "id": "14963", + "ident": "8IN2", + "type": "small_airport", + "name": "Robinson Field", + "latitude_deg": "39.62329864501953", + "longitude_deg": "-86.03140258789062", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Greenwood", + "scheduled_service": "no", + "gps_code": "8IN2", + "local_code": "8IN2" + }, + { + "id": "14964", + "ident": "8IN4", + "type": "heliport", + "name": "Hancock Memorial Hospital Heliport", + "latitude_deg": "39.814701080322266", + "longitude_deg": "-85.7822036743164", + "elevation_ft": "902", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Greenfield", + "scheduled_service": "no", + "gps_code": "8IN4", + "local_code": "8IN4" + }, + { + "id": "14965", + "ident": "8IN5", + "type": "heliport", + "name": "Portage Community Hospital Heliport", + "latitude_deg": "41.54669952392578", + "longitude_deg": "-87.18440246582031", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Portage", + "scheduled_service": "no", + "gps_code": "8IN5", + "local_code": "8IN5" + }, + { + "id": "14966", + "ident": "8IN6", + "type": "heliport", + "name": "Parkview Noble Hospital Heliport", + "latitude_deg": "41.447200775146484", + "longitude_deg": "-85.2957992553711", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Kendallville", + "scheduled_service": "no", + "gps_code": "8IN6", + "local_code": "8IN6" + }, + { + "id": "14967", + "ident": "8IN7", + "type": "small_airport", + "name": "Brush Creek Airport", + "latitude_deg": "39.0452995300293", + "longitude_deg": "-85.51529693603516", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Butlerville", + "scheduled_service": "no", + "gps_code": "8IN7", + "local_code": "8IN7" + }, + { + "id": "45406", + "ident": "8IN8", + "type": "heliport", + "name": "Bremen Community Hospital Heliport", + "latitude_deg": "41.456864", + "longitude_deg": "-86.158379", + "elevation_ft": "812", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bremen", + "scheduled_service": "no", + "gps_code": "8IN8", + "local_code": "8IN8" + }, + { + "id": "14968", + "ident": "8IN9", + "type": "small_airport", + "name": "Marcidale Airport", + "latitude_deg": "39.68560028", + "longitude_deg": "-86.60220337", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Amo", + "scheduled_service": "no", + "gps_code": "8IN9", + "local_code": "8IN9" + }, + { + "id": "14969", + "ident": "8IS0", + "type": "heliport", + "name": "St Joseph's Hospital - Breese Heliport", + "latitude_deg": "38.6263999939", + "longitude_deg": "-89.5236968994", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Breese", + "scheduled_service": "no", + "gps_code": "8IS0", + "local_code": "8IS0" + }, + { + "id": "14970", + "ident": "8IS1", + "type": "small_airport", + "name": "Nelson Airport", + "latitude_deg": "39.308265", + "longitude_deg": "-89.99289", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Carlinville", + "scheduled_service": "no", + "gps_code": "8IS1", + "local_code": "8IS1" + }, + { + "id": "14971", + "ident": "8IS2", + "type": "small_airport", + "name": "Kilsoquah Farm Airport", + "latitude_deg": "40.997798919677734", + "longitude_deg": "-85.38890075683594", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Roanoke", + "scheduled_service": "no", + "gps_code": "8IS2", + "local_code": "8IS2" + }, + { + "id": "14972", + "ident": "8IS3", + "type": "heliport", + "name": "Dept of Corrections Heliport", + "latitude_deg": "38.973400116", + "longitude_deg": "-90.4611968994", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Grafton", + "scheduled_service": "no", + "gps_code": "8IS3", + "local_code": "8IS3" + }, + { + "id": "14973", + "ident": "8IS4", + "type": "heliport", + "name": "Hillsboro Area Hospital Heliport", + "latitude_deg": "39.15169906616211", + "longitude_deg": "-89.48139953613281", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "8IS4", + "local_code": "8IS4" + }, + { + "id": "14974", + "ident": "8IS5", + "type": "small_airport", + "name": "Raymond Classen Memorial Airport", + "latitude_deg": "40.81669998168945", + "longitude_deg": "-87.99169921875", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Danforth", + "scheduled_service": "no", + "gps_code": "8IS5", + "local_code": "8IS5" + }, + { + "id": "14975", + "ident": "8IS6", + "type": "heliport", + "name": "Decatur Memorial Hospital Heliport", + "latitude_deg": "39.8671989440918", + "longitude_deg": "-88.9614028930664", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Decatur", + "scheduled_service": "no", + "gps_code": "8IS6", + "local_code": "8IS6" + }, + { + "id": "14976", + "ident": "8IS8", + "type": "heliport", + "name": "Vista Surgery Center Heliport", + "latitude_deg": "42.413048041799996", + "longitude_deg": "-88.0567127466", + "elevation_ft": "809", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lindenhurst", + "scheduled_service": "no", + "gps_code": "8IS8", + "local_code": "8IS8" + }, + { + "id": "14977", + "ident": "8IS9", + "type": "heliport", + "name": "Anderson Hospital Heliport", + "latitude_deg": "38.73699951171875", + "longitude_deg": "-89.9468002319336", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Maryville", + "scheduled_service": "no", + "gps_code": "8IS9", + "local_code": "8IS9" + }, + { + "id": "14979", + "ident": "8K0", + "type": "small_airport", + "name": "Bucklin Airport", + "latitude_deg": "37.5458984375", + "longitude_deg": "-99.64179992675781", + "elevation_ft": "2418", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Bucklin", + "scheduled_service": "no", + "gps_code": "8K0", + "local_code": "8K0" + }, + { + "id": "14980", + "ident": "8K4", + "type": "closed", + "name": "St Mary's Airpark", + "latitude_deg": "39.272499", + "longitude_deg": "-96.061402", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "St. Mary's", + "scheduled_service": "no", + "keywords": "8K4" + }, + { + "id": "14981", + "ident": "8K5", + "type": "small_airport", + "name": "Yates Center Airport", + "latitude_deg": "37.85300064086914", + "longitude_deg": "-95.74729919433594", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Yates Center", + "scheduled_service": "no", + "gps_code": "8K5", + "local_code": "8K5" + }, + { + "id": "14982", + "ident": "8K7", + "type": "small_airport", + "name": "Paul Windle Municipal Airport", + "latitude_deg": "37.599998474121094", + "longitude_deg": "-99.27510070800781", + "elevation_ft": "2230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Greensburg", + "scheduled_service": "no", + "gps_code": "8K7", + "local_code": "8K7" + }, + { + "id": "14983", + "ident": "8K8", + "type": "small_airport", + "name": "Cimarron Municipal Airport", + "latitude_deg": "37.83060073852539", + "longitude_deg": "-100.3499984741211", + "elevation_ft": "2752", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Cimarron", + "scheduled_service": "no", + "gps_code": "8K8", + "local_code": "8K8" + }, + { + "id": "14984", + "ident": "8K9", + "type": "seaplane_base", + "name": "Murphys Pullout Seaplane Base", + "latitude_deg": "55.38959884643555", + "longitude_deg": "-131.73800659179688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ketchikan", + "scheduled_service": "no", + "gps_code": "8K9", + "local_code": "8K9" + }, + { + "id": "14985", + "ident": "8KA", + "type": "small_airport", + "name": "Tatitna Airport", + "latitude_deg": "62.29330062866211", + "longitude_deg": "-153.36199951171875", + "elevation_ft": "1490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tatitna", + "scheduled_service": "no", + "gps_code": "8KA", + "local_code": "8KA" + }, + { + "id": "14986", + "ident": "8KS0", + "type": "small_airport", + "name": "Morgan Farms Airport", + "latitude_deg": "37.813242", + "longitude_deg": "-101.465043", + "elevation_ft": "3190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Ulysses", + "scheduled_service": "no", + "gps_code": "8KS0", + "local_code": "8KS0" + }, + { + "id": "14987", + "ident": "8KS1", + "type": "small_airport", + "name": "Neu Field", + "latitude_deg": "39.17190170288086", + "longitude_deg": "-94.98079681396484", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Basehor", + "scheduled_service": "no", + "gps_code": "8KS1", + "local_code": "8KS1" + }, + { + "id": "14988", + "ident": "8KS2", + "type": "small_airport", + "name": "King Ranch Airport", + "latitude_deg": "37.938899993896484", + "longitude_deg": "-96.23079681396484", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "8KS2", + "local_code": "8KS2" + }, + { + "id": "14989", + "ident": "8KS3", + "type": "small_airport", + "name": "Davis Airfield", + "latitude_deg": "39.85279846191406", + "longitude_deg": "-95.48049926757812", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Hiawatha", + "scheduled_service": "no", + "gps_code": "8KS3", + "local_code": "8KS3" + }, + { + "id": "14990", + "ident": "8KS4", + "type": "small_airport", + "name": "Rans Airport", + "latitude_deg": "38.904998779296875", + "longitude_deg": "-99.35089874267578", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Hays", + "scheduled_service": "no", + "gps_code": "8KS4", + "local_code": "8KS4" + }, + { + "id": "14991", + "ident": "8KS5", + "type": "small_airport", + "name": "Blue Sky Airport", + "latitude_deg": "37.316148", + "longitude_deg": "-95.280089", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Parsons", + "scheduled_service": "no", + "gps_code": "8KS5", + "local_code": "8KS5" + }, + { + "id": "14992", + "ident": "8KS6", + "type": "heliport", + "name": "Wesley Medical Center Heliport", + "latitude_deg": "37.69559860229492", + "longitude_deg": "-97.29840087890625", + "elevation_ft": "1440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wichita", + "scheduled_service": "no", + "gps_code": "8KS6", + "local_code": "8KS6" + }, + { + "id": "14993", + "ident": "8KS7", + "type": "small_airport", + "name": "Pine Sod Ranch Airport", + "latitude_deg": "38.73310089111328", + "longitude_deg": "-94.64520263671875", + "elevation_ft": "1072", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Stilwell", + "scheduled_service": "no", + "gps_code": "8KS7", + "local_code": "8KS7" + }, + { + "id": "14994", + "ident": "8KS8", + "type": "small_airport", + "name": "Prairie Cottage Airport", + "latitude_deg": "38.91780090332031", + "longitude_deg": "-97.00779724121094", + "elevation_ft": "1222", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Chapman", + "scheduled_service": "no", + "gps_code": "8KS8", + "local_code": "8KS8" + }, + { + "id": "14995", + "ident": "8KS9", + "type": "small_airport", + "name": "The Wilderness Airport", + "latitude_deg": "38.44449996948242", + "longitude_deg": "-95.42530059814453", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Williamsburg", + "scheduled_service": "no", + "gps_code": "8KS9", + "local_code": "8KS9" + }, + { + "id": "325472", + "ident": "8KT1", + "type": "heliport", + "name": "Papa John's Headquarters Heliport", + "latitude_deg": "38.213611", + "longitude_deg": "-85.531776", + "elevation_ft": "868", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "8KT1", + "local_code": "8KT1" + }, + { + "id": "322661", + "ident": "8KT8", + "type": "small_airport", + "name": "Cherry Hill Airport", + "latitude_deg": "38.3319167", + "longitude_deg": "-85.077972", + "elevation_ft": "879", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Pleasureville", + "scheduled_service": "no", + "gps_code": "8KT8", + "local_code": "8KT8" + }, + { + "id": "14996", + "ident": "8KY0", + "type": "small_airport", + "name": "Alberta Ultralightport", + "latitude_deg": "38.39670181274414", + "longitude_deg": "-84.4636001586914", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Alberta", + "scheduled_service": "no", + "gps_code": "8KY0", + "local_code": "8KY0" + }, + { + "id": "345544", + "ident": "8KY1", + "type": "heliport", + "name": "Greenview Hospital Heliport", + "latitude_deg": "36.963789", + "longitude_deg": "-86.437554", + "elevation_ft": "537", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Bowling Green", + "scheduled_service": "no", + "gps_code": "8KY1", + "local_code": "8KY1" + }, + { + "id": "345340", + "ident": "8KY2", + "type": "heliport", + "name": "LRFO Heliport", + "latitude_deg": "37.964014", + "longitude_deg": "-84.371856", + "elevation_ft": "938", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "8KY2", + "local_code": "8KY2" + }, + { + "id": "45431", + "ident": "8KY3", + "type": "closed", + "name": "Battle Field", + "latitude_deg": "37.661111", + "longitude_deg": "-84.992627", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Perryville", + "scheduled_service": "no", + "keywords": "8KY3" + }, + { + "id": "346644", + "ident": "8KY4", + "type": "heliport", + "name": "Cumberland County Hospital Heliport", + "latitude_deg": "36.795505", + "longitude_deg": "-85.37312", + "elevation_ft": "636", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Burkesville", + "scheduled_service": "no", + "gps_code": "8KY4", + "local_code": "8KY4" + }, + { + "id": "347883", + "ident": "8KY5", + "type": "heliport", + "name": "Kentucky River Medical Center Heliport", + "latitude_deg": "37.564986", + "longitude_deg": "-83.370003", + "elevation_ft": "738", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "8KY5", + "local_code": "8KY5" + }, + { + "id": "45963", + "ident": "8KY6", + "type": "small_airport", + "name": "Caintuckee Airport", + "latitude_deg": "38.935528", + "longitude_deg": "-84.568278", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Independence", + "scheduled_service": "no", + "gps_code": "8KY6", + "local_code": "8KY6" + }, + { + "id": "345680", + "ident": "8KY7", + "type": "heliport", + "name": "Fort Logan Hospital Heliport", + "latitude_deg": "37.541966", + "longitude_deg": "-84.653161", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Stanford", + "scheduled_service": "no", + "gps_code": "8KY7", + "local_code": "8KY7" + }, + { + "id": "345657", + "ident": "8KY9", + "type": "heliport", + "name": "Meadowview Regional Medical Center Heliport", + "latitude_deg": "38.641487", + "longitude_deg": "-83.808239", + "elevation_ft": "912", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Maysville", + "scheduled_service": "no", + "gps_code": "8KY9", + "local_code": "8KY9" + }, + { + "id": "14997", + "ident": "8LA0", + "type": "heliport", + "name": "Transco Schriever Heliport", + "latitude_deg": "29.74673", + "longitude_deg": "-90.824706", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Thibodaux", + "scheduled_service": "no", + "gps_code": "8LA0", + "local_code": "8LA0" + }, + { + "id": "14998", + "ident": "8LA1", + "type": "heliport", + "name": "Chevron USA Inc. Heliport", + "latitude_deg": "29.26395", + "longitude_deg": "-89.356192", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no", + "gps_code": "8LA1", + "local_code": "8LA1", + "keywords": "Chevron USA Inc SPB" + }, + { + "id": "14999", + "ident": "8LA2", + "type": "closed", + "name": "Louisiana State Police Headquarters Heliport", + "latitude_deg": "30.4491", + "longitude_deg": "-91.137001", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no", + "keywords": "8LA2" + }, + { + "id": "15000", + "ident": "8LA3", + "type": "heliport", + "name": "Shell Central Facilities E Bay Block 24 Heliport", + "latitude_deg": "29.055371", + "longitude_deg": "-89.307302", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no", + "gps_code": "8LA3", + "local_code": "8LA3" + }, + { + "id": "15001", + "ident": "8LA4", + "type": "heliport", + "name": "Conoco Inc. Venice Heliport", + "latitude_deg": "29.2593994140625", + "longitude_deg": "-89.3551025390625", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no", + "gps_code": "8LA4", + "local_code": "8LA4" + }, + { + "id": "15002", + "ident": "8LA5", + "type": "heliport", + "name": "Chevron Southpass Tank Battery W-2 Heliport", + "latitude_deg": "29.04015", + "longitude_deg": "-89.32848", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no", + "gps_code": "8LA5", + "local_code": "8LA5" + }, + { + "id": "15003", + "ident": "8LA6", + "type": "heliport", + "name": "DGS Heliport", + "latitude_deg": "29.229096", + "longitude_deg": "-89.38881", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no", + "gps_code": "8LA6", + "local_code": "8LA6" + }, + { + "id": "15004", + "ident": "8LA7", + "type": "heliport", + "name": "Southern Natural Gas Company Heliport", + "latitude_deg": "29.864099502563477", + "longitude_deg": "-89.8333969116211", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Verret", + "scheduled_service": "no", + "gps_code": "8LA7", + "local_code": "8LA7" + }, + { + "id": "15005", + "ident": "8LA8", + "type": "heliport", + "name": "Galvez-Lake Vfd Heliport", + "latitude_deg": "30.301000595092773", + "longitude_deg": "-90.90149688720703", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Gonzales", + "scheduled_service": "no", + "gps_code": "8LA8", + "local_code": "8LA8" + }, + { + "id": "15006", + "ident": "8LA9", + "type": "closed", + "name": "Koll Airport", + "latitude_deg": "30.338516", + "longitude_deg": "-92.736905", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Welsh", + "scheduled_service": "no", + "keywords": "8LA9" + }, + { + "id": "15007", + "ident": "8LL0", + "type": "closed", + "name": "Nance Airport", + "latitude_deg": "38.887242", + "longitude_deg": "-89.557328", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pocahontas", + "scheduled_service": "no", + "gps_code": "8LL0", + "local_code": "8LL0" + }, + { + "id": "15008", + "ident": "8LL1", + "type": "small_airport", + "name": "Hunter Airport", + "latitude_deg": "42.356701", + "longitude_deg": "-88.506203", + "elevation_ft": "914", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Woodstock", + "scheduled_service": "no", + "gps_code": "8LL1", + "local_code": "8LL1" + }, + { + "id": "15009", + "ident": "8LL2", + "type": "small_airport", + "name": "Eckberg Airport", + "latitude_deg": "41.36949920654297", + "longitude_deg": "-89.55979919433594", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Wyanet", + "scheduled_service": "no", + "gps_code": "8LL2", + "local_code": "8LL2" + }, + { + "id": "299717", + "ident": "8LL3", + "type": "small_airport", + "name": "Hundley Airport", + "latitude_deg": "39.7092005795", + "longitude_deg": "-89.4898438454", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rochester", + "scheduled_service": "no", + "gps_code": "8LL3", + "local_code": "8LL3" + }, + { + "id": "15010", + "ident": "8LL4", + "type": "heliport", + "name": "Richland Memorial Hospital Heliport", + "latitude_deg": "38.7374992371", + "longitude_deg": "-88.07730102539999", + "elevation_ft": "485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Olney", + "scheduled_service": "no", + "gps_code": "8LL4", + "local_code": "8LL4" + }, + { + "id": "15011", + "ident": "8LL5", + "type": "heliport", + "name": "Horizon Health Heliport", + "latitude_deg": "39.607106", + "longitude_deg": "-87.675941", + "elevation_ft": "734", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "8LL5", + "local_code": "8LL5", + "keywords": "Paris Community Hospital" + }, + { + "id": "15012", + "ident": "8LL6", + "type": "heliport", + "name": "State Highway Paris Heliport", + "latitude_deg": "39.60340118408203", + "longitude_deg": "-87.71219635009766", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "8LL6", + "local_code": "8LL6" + }, + { + "id": "15013", + "ident": "8LL7", + "type": "small_airport", + "name": "Donald A. Hamilton Airport", + "latitude_deg": "39.59450149536133", + "longitude_deg": "-89.59449768066406", + "elevation_ft": "605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pawnee", + "scheduled_service": "no", + "gps_code": "8LL7", + "local_code": "8LL7" + }, + { + "id": "15014", + "ident": "8LL8", + "type": "heliport", + "name": "Miners Memorial Health Center Heliport", + "latitude_deg": "37.8993988", + "longitude_deg": "-88.9539032", + "elevation_ft": "402", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "West Frankfort", + "scheduled_service": "no", + "gps_code": "8LL8", + "local_code": "8LL8" + }, + { + "id": "15015", + "ident": "8M2", + "type": "small_airport", + "name": "Sally Wofford Airport", + "latitude_deg": "35.590301513671875", + "longitude_deg": "-90.9136962890625", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Weiner", + "scheduled_service": "no", + "gps_code": "8M2", + "local_code": "8M2" + }, + { + "id": "15016", + "ident": "8M6", + "type": "small_airport", + "name": "Mc Ville Municipal Airport", + "latitude_deg": "47.7831001282", + "longitude_deg": "-98.1865005493", + "elevation_ft": "1473", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Mc Ville", + "scheduled_service": "no", + "gps_code": "8M6", + "local_code": "8M6" + }, + { + "id": "15017", + "ident": "8M7", + "type": "small_airport", + "name": "Tradewater Airport", + "latitude_deg": "37.188899993896484", + "longitude_deg": "-87.67500305175781", + "elevation_ft": "405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Dawson Springs", + "scheduled_service": "no", + "gps_code": "8M7", + "local_code": "8M7" + }, + { + "id": "316954", + "ident": "8MA4", + "type": "small_airport", + "name": "Crow Island Airport (Pvt)", + "latitude_deg": "42.4172222", + "longitude_deg": "-71.4944444", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Stow", + "scheduled_service": "no", + "gps_code": "8MA4", + "local_code": "8MA4", + "home_link": "http://www.crowislandairpark.com/" + }, + { + "id": "15018", + "ident": "8MD0", + "type": "small_airport", + "name": "Suzie Field", + "latitude_deg": "39.376996", + "longitude_deg": "-77.017164", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Woodbine", + "scheduled_service": "no", + "gps_code": "8MD0", + "local_code": "8MD0" + }, + { + "id": "15019", + "ident": "8MD1", + "type": "heliport", + "name": "Rite Aid Distribution Center Heliport", + "latitude_deg": "39.454036", + "longitude_deg": "-76.209286", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Aberdeen", + "scheduled_service": "no", + "gps_code": "8MD1", + "local_code": "8MD1" + }, + { + "id": "15020", + "ident": "8MD2", + "type": "heliport", + "name": "Montebello Filtration Plant Heliport", + "latitude_deg": "39.33610153198242", + "longitude_deg": "-76.58670043945312", + "elevation_ft": "223", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Baltimore", + "scheduled_service": "no", + "gps_code": "8MD2", + "local_code": "8MD2" + }, + { + "id": "15021", + "ident": "8MD3", + "type": "heliport", + "name": "Sinai Ii Heliport", + "latitude_deg": "39.3577995300293", + "longitude_deg": "-76.6624984741211", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Baltimore", + "scheduled_service": "no", + "gps_code": "8MD3", + "local_code": "8MD3" + }, + { + "id": "15022", + "ident": "8MD4", + "type": "small_airport", + "name": "Spiering Airport", + "latitude_deg": "38.98059844970703", + "longitude_deg": "-75.77780151367188", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Greensboro", + "scheduled_service": "no", + "gps_code": "8MD4", + "local_code": "8MD4" + }, + { + "id": "15023", + "ident": "8MD5", + "type": "small_airport", + "name": "Harrison Farm Airport", + "latitude_deg": "39.49829864501953", + "longitude_deg": "-77.2217025756836", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Libertytown", + "scheduled_service": "no", + "gps_code": "8MD5", + "local_code": "8MD5" + }, + { + "id": "15024", + "ident": "8MD6", + "type": "small_airport", + "name": "Burgess Field", + "latitude_deg": "38.397098541259766", + "longitude_deg": "-77.14689636230469", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Riverside", + "scheduled_service": "no", + "gps_code": "8MD6", + "local_code": "8MD6" + }, + { + "id": "15025", + "ident": "8MD7", + "type": "small_airport", + "name": "Deerfield Airport", + "latitude_deg": "38.23860168457031", + "longitude_deg": "-76.65969848632812", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Leonardtown", + "scheduled_service": "no", + "gps_code": "8MD7", + "local_code": "8MD7" + }, + { + "id": "15026", + "ident": "8MI0", + "type": "closed", + "name": "Trowbridge Farms Airport", + "latitude_deg": "42.411999", + "longitude_deg": "-86.170898", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "South Haven", + "scheduled_service": "no", + "keywords": "8MI0" + }, + { + "id": "15027", + "ident": "8MI1", + "type": "closed", + "name": "B & G Heliport", + "latitude_deg": "42.889198", + "longitude_deg": "-85.567802", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Grand Rapids", + "scheduled_service": "no", + "keywords": "8MI1" + }, + { + "id": "15028", + "ident": "8MI2", + "type": "closed", + "name": "Acme Heliport", + "latitude_deg": "42.471274", + "longitude_deg": "-83.00997", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Centerline", + "scheduled_service": "no", + "keywords": "8MI2" + }, + { + "id": "15029", + "ident": "8MI3", + "type": "small_airport", + "name": "Mattawan Airpark", + "latitude_deg": "42.195899963378906", + "longitude_deg": "-85.80560302734375", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Mattawan", + "scheduled_service": "no", + "gps_code": "8MI3", + "local_code": "8MI3" + }, + { + "id": "15030", + "ident": "8MI4", + "type": "small_airport", + "name": "Howe Airport", + "latitude_deg": "43.49589920043945", + "longitude_deg": "-85.57369995117188", + "elevation_ft": "871", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Morley", + "scheduled_service": "no", + "gps_code": "8MI4", + "local_code": "8MI4" + }, + { + "id": "15031", + "ident": "8MI5", + "type": "closed", + "name": "Consumers Power Company Heliport", + "latitude_deg": "42.327301", + "longitude_deg": "-86.304703", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "South Haven", + "scheduled_service": "no", + "keywords": "8MI5" + }, + { + "id": "15032", + "ident": "8MI6", + "type": "heliport", + "name": "Muskegon General Hospital Heliport", + "latitude_deg": "43.238806", + "longitude_deg": "-86.203597", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Muskegon", + "scheduled_service": "no", + "gps_code": "8MI6", + "local_code": "8MI6" + }, + { + "id": "15033", + "ident": "8MI7", + "type": "small_airport", + "name": "Bass Lake Airport", + "latitude_deg": "46.16189956665039", + "longitude_deg": "-86.48429870605469", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Steuben", + "scheduled_service": "no", + "gps_code": "8MI7", + "local_code": "8MI7" + }, + { + "id": "15034", + "ident": "8MI8", + "type": "closed", + "name": "Cupp/SJVS Landing Strip", + "latitude_deg": "42.994701", + "longitude_deg": "-85.454201", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Mendon", + "scheduled_service": "no", + "gps_code": "8MI8", + "local_code": "8MI8" + }, + { + "id": "15035", + "ident": "8MI9", + "type": "small_airport", + "name": "Winters Field", + "latitude_deg": "42.303072", + "longitude_deg": "-84.10728", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Grass Lake", + "scheduled_service": "no", + "gps_code": "8MI9", + "local_code": "8MI9" + }, + { + "id": "15036", + "ident": "8MN0", + "type": "seaplane_base", + "name": "Lake Zumbro Seaplane Base", + "latitude_deg": "44.20159912109375", + "longitude_deg": "-92.4834976196289", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Oronoco", + "scheduled_service": "no", + "gps_code": "8MN0", + "local_code": "8MN0" + }, + { + "id": "15037", + "ident": "8MN1", + "type": "closed", + "name": "Stewart Farms Airport", + "latitude_deg": "44.531399", + "longitude_deg": "-92.805199", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Cannon Falls", + "scheduled_service": "no", + "keywords": "8MN1" + }, + { + "id": "331667", + "ident": "8MN2", + "type": "small_airport", + "name": "Aslesen Airport", + "latitude_deg": "47.335586", + "longitude_deg": "-96.748933", + "elevation_ft": "879", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Halstad", + "scheduled_service": "no", + "gps_code": "8MN2", + "local_code": "8MN2" + }, + { + "id": "15038", + "ident": "8MN3", + "type": "small_airport", + "name": "Breezy Point Airport", + "latitude_deg": "46.59579849243164", + "longitude_deg": "-94.22000122070312", + "elevation_ft": "1255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Pequot Lakes", + "scheduled_service": "no", + "gps_code": "8MN3", + "local_code": "8MN3" + }, + { + "id": "15039", + "ident": "8MN4", + "type": "closed", + "name": "Sethney Personal Airport", + "latitude_deg": "46.3797", + "longitude_deg": "-93.813599", + "elevation_ft": "1289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Deerwood", + "scheduled_service": "no", + "keywords": "8MN4, Sethney Personal STOLport" + }, + { + "id": "15040", + "ident": "8MN5", + "type": "closed", + "name": "Vieira Airport", + "latitude_deg": "45.208302", + "longitude_deg": "-93.133598", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Lino Lakes", + "scheduled_service": "no", + "keywords": "8MN5" + }, + { + "id": "326253", + "ident": "8MN6", + "type": "small_airport", + "name": "Minske Field", + "latitude_deg": "45.583604", + "longitude_deg": "-93.741275", + "elevation_ft": "1006", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "8MN6", + "local_code": "8MN6" + }, + { + "id": "15041", + "ident": "8MN7", + "type": "heliport", + "name": "Gundersen St Elizabeth Hospital Heliport", + "latitude_deg": "44.388308", + "longitude_deg": "-92.048583", + "elevation_ft": "708", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Wabasha", + "scheduled_service": "no", + "gps_code": "8MN7", + "local_code": "8MN7" + }, + { + "id": "15042", + "ident": "8MN8", + "type": "small_airport", + "name": "Porter Airport", + "latitude_deg": "47.012699127197266", + "longitude_deg": "-93.393798828125", + "elevation_ft": "1125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Jacobson", + "scheduled_service": "no", + "gps_code": "8MN8", + "local_code": "8MN8" + }, + { + "id": "15043", + "ident": "8MN9", + "type": "closed", + "name": "Mavencamp Airport", + "latitude_deg": "45.256901", + "longitude_deg": "-94.039101", + "elevation_ft": "1027", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Maple Lake", + "scheduled_service": "no", + "keywords": "8MN9" + }, + { + "id": "15044", + "ident": "8MO0", + "type": "heliport", + "name": "Barnes St Peters Hospital Heliport", + "latitude_deg": "38.793399810791016", + "longitude_deg": "-90.57869720458984", + "elevation_ft": "513", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Peters", + "scheduled_service": "no", + "gps_code": "8MO0", + "local_code": "8MO0" + }, + { + "id": "15045", + "ident": "8MO2", + "type": "heliport", + "name": "Liberty Hospital Heliport", + "latitude_deg": "39.266700744628906", + "longitude_deg": "-94.43360137939453", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Liberty", + "scheduled_service": "no", + "gps_code": "8MO2", + "local_code": "8MO2" + }, + { + "id": "15046", + "ident": "8MO3", + "type": "small_airport", + "name": "Curtis Field", + "latitude_deg": "39.32469940185547", + "longitude_deg": "-93.94159698486328", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "8MO3", + "local_code": "8MO3" + }, + { + "id": "15047", + "ident": "8MO4", + "type": "small_airport", + "name": "Joan Lake Airport", + "latitude_deg": "38.20840072631836", + "longitude_deg": "-90.8667984008789", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Richwoods", + "scheduled_service": "no", + "gps_code": "8MO4", + "local_code": "8MO4" + }, + { + "id": "15048", + "ident": "8MO5", + "type": "small_airport", + "name": "Cayton Pony Express Airport", + "latitude_deg": "39.82279968261719", + "longitude_deg": "-94.38410186767578", + "elevation_ft": "1043", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Maysville", + "scheduled_service": "no", + "gps_code": "8MO5", + "local_code": "8MO5" + }, + { + "id": "15049", + "ident": "8MO6", + "type": "heliport", + "name": "Pike County Memorial Hospital Heliport", + "latitude_deg": "39.440719", + "longitude_deg": "-91.065612", + "elevation_ft": "508", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Louisiana", + "scheduled_service": "no", + "gps_code": "8MO6", + "local_code": "8MO6" + }, + { + "id": "15050", + "ident": "8MO7", + "type": "small_airport", + "name": "Bean Lake Airport", + "latitude_deg": "39.49169921875", + "longitude_deg": "-95.00659942626953", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Rushville", + "scheduled_service": "no", + "gps_code": "8MO7", + "local_code": "8MO7" + }, + { + "id": "15051", + "ident": "8MO8", + "type": "closed", + "name": "Frazier Airport", + "latitude_deg": "36.911201", + "longitude_deg": "-93.866898", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Monett", + "scheduled_service": "no", + "keywords": "8MO8" + }, + { + "id": "15052", + "ident": "8MO9", + "type": "heliport", + "name": "Mercy Hospital St Louis Heliport", + "latitude_deg": "38.643667", + "longitude_deg": "-90.448336", + "elevation_ft": "633", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no", + "gps_code": "8MO9", + "local_code": "8MO9", + "keywords": "St John's Mercy Medical Center" + }, + { + "id": "323297", + "ident": "8MS1", + "type": "small_airport", + "name": "Henderson Airport", + "latitude_deg": "33.585044", + "longitude_deg": "-90.097736", + "elevation_ft": "162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Greenwood", + "scheduled_service": "no", + "gps_code": "8MS1", + "local_code": "8MS1" + }, + { + "id": "325044", + "ident": "8MS2", + "type": "small_airport", + "name": "Godspeed Airpark", + "latitude_deg": "34.234296", + "longitude_deg": "-88.507179", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Fulton", + "scheduled_service": "no", + "gps_code": "8MS2", + "local_code": "8MS2" + }, + { + "id": "324480", + "ident": "8MS8", + "type": "heliport", + "name": "Betty Ann Cooper Memorial Helipad", + "latitude_deg": "33.623263", + "longitude_deg": "-90.6227778", + "elevation_ft": "136", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Steiner", + "scheduled_service": "no", + "gps_code": "8MS8", + "local_code": "8MS8" + }, + { + "id": "342453", + "ident": "8MU0", + "type": "heliport", + "name": "Freedom Heliport", + "latitude_deg": "37.118875", + "longitude_deg": "-93.266056", + "elevation_ft": "1276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "8MU0", + "local_code": "8MU0" + }, + { + "id": "15053", + "ident": "8N0", + "type": "heliport", + "name": "Rockingham County Heliport", + "latitude_deg": "36.49399948120117", + "longitude_deg": "-79.73979949951172", + "elevation_ft": "605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Eden", + "scheduled_service": "no", + "gps_code": "8N0", + "local_code": "8N0" + }, + { + "id": "15054", + "ident": "8N1", + "type": "small_airport", + "name": "Grimes Airport", + "latitude_deg": "40.484798431396484", + "longitude_deg": "-76.26360321044922", + "elevation_ft": "582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bethel", + "scheduled_service": "no", + "gps_code": "8N1", + "local_code": "8N1" + }, + { + "id": "15055", + "ident": "8N4", + "type": "small_airport", + "name": "Flying Dollar Airport", + "latitude_deg": "41.214536", + "longitude_deg": "-75.247162", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Canadensis", + "scheduled_service": "no", + "gps_code": "K8N4", + "local_code": "8N4" + }, + { + "id": "15056", + "ident": "8N7", + "type": "small_airport", + "name": "Mc Ginness Airport", + "latitude_deg": "40.025100708", + "longitude_deg": "-76.487197876", + "elevation_ft": "334", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "8N7", + "local_code": "8N7" + }, + { + "id": "15057", + "ident": "8NA0", + "type": "small_airport", + "name": "Tappen Airstrip", + "latitude_deg": "46.881099700927734", + "longitude_deg": "-99.63089752197266", + "elevation_ft": "1780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Tappen", + "scheduled_service": "no", + "gps_code": "8NA0", + "local_code": "8NA0" + }, + { + "id": "15058", + "ident": "8NA1", + "type": "seaplane_base", + "name": "Deep River Seaplane Base", + "latitude_deg": "48.622798919677734", + "longitude_deg": "-100.78299713134766", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Upham", + "scheduled_service": "no", + "gps_code": "8NA1", + "local_code": "8NA1" + }, + { + "id": "15059", + "ident": "8NA5", + "type": "small_airport", + "name": "Liechty Farm Airport", + "latitude_deg": "46.66299819946289", + "longitude_deg": "-98.63040161132812", + "elevation_ft": "1505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Montpelier", + "scheduled_service": "no", + "gps_code": "8NA5", + "local_code": "8NA5" + }, + { + "id": "15060", + "ident": "8NA7", + "type": "heliport", + "name": "Camp Grafton Heliport", + "latitude_deg": "48.0625", + "longitude_deg": "-98.9292984008789", + "elevation_ft": "1469", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Devils Lake", + "scheduled_service": "no", + "gps_code": "8NA7", + "local_code": "8NA7" + }, + { + "id": "15061", + "ident": "8NA9", + "type": "small_airport", + "name": "Hashbarger Farm Airstrip", + "latitude_deg": "47.327999114990234", + "longitude_deg": "-97.67900085449219", + "elevation_ft": "1195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Hope", + "scheduled_service": "no", + "gps_code": "8NA9", + "local_code": "8NA9" + }, + { + "id": "15062", + "ident": "8NC0", + "type": "heliport", + "name": "Vidant Bertie Hospital Heliport", + "latitude_deg": "35.988669", + "longitude_deg": "-76.92924", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Windsor", + "scheduled_service": "no", + "gps_code": "8NC0", + "local_code": "8NC0", + "keywords": "Bertie Memorial Hospital" + }, + { + "id": "15063", + "ident": "8NC1", + "type": "small_airport", + "name": "Dean Field", + "latitude_deg": "35.377311", + "longitude_deg": "-79.239535", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Cameron", + "scheduled_service": "no", + "gps_code": "8NC1", + "local_code": "8NC1", + "keywords": "Dean Wings Past Airport" + }, + { + "id": "15064", + "ident": "8NC2", + "type": "small_airport", + "name": "Summey Airpark", + "latitude_deg": "35.28929901123047", + "longitude_deg": "-81.78510284423828", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Caroleen", + "scheduled_service": "no", + "gps_code": "8NC2", + "local_code": "8NC2" + }, + { + "id": "15065", + "ident": "8NC3", + "type": "small_airport", + "name": "Winding Creek Airport", + "latitude_deg": "34.56610107421875", + "longitude_deg": "-77.44059753417969", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Sneads Ferry", + "scheduled_service": "no", + "gps_code": "8NC3", + "local_code": "8NC3" + }, + { + "id": "15066", + "ident": "8NC4", + "type": "small_airport", + "name": "Dead Dog Airport", + "latitude_deg": "35.72990036010742", + "longitude_deg": "-79.31279754638672", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Pittsboro", + "scheduled_service": "no", + "gps_code": "8NC4", + "local_code": "8NC4" + }, + { + "id": "15067", + "ident": "8NC5", + "type": "small_airport", + "name": "Adams Airport", + "latitude_deg": "34.576023", + "longitude_deg": "-79.248828", + "elevation_ft": "143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Rowland", + "scheduled_service": "no", + "local_code": "8NC", + "keywords": "8NC5" + }, + { + "id": "15068", + "ident": "8NC6", + "type": "small_airport", + "name": "Brooks Field", + "latitude_deg": "35.693638", + "longitude_deg": "-79.411624", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Siler City", + "scheduled_service": "no", + "gps_code": "8NC6", + "local_code": "8NC6" + }, + { + "id": "15069", + "ident": "8NC7", + "type": "small_airport", + "name": "Parker Field", + "latitude_deg": "34.9364013671875", + "longitude_deg": "-77.27670288085938", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Maysville", + "scheduled_service": "no", + "gps_code": "8NC7", + "local_code": "8NC7" + }, + { + "id": "15070", + "ident": "8NC8", + "type": "small_airport", + "name": "Lake Ridge Aero Park Airport", + "latitude_deg": "36.06010055541992", + "longitude_deg": "-78.7833023071289", + "elevation_ft": "309", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Durham", + "scheduled_service": "no", + "gps_code": "8NC8", + "local_code": "8NC8" + }, + { + "id": "15071", + "ident": "8NC9", + "type": "small_airport", + "name": "Western North Carolina Air Museum Airport", + "latitude_deg": "35.307855", + "longitude_deg": "-82.434263", + "elevation_ft": "2083", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hendersonville", + "scheduled_service": "no", + "gps_code": "8NC9", + "local_code": "8NC9" + }, + { + "id": "15072", + "ident": "8ND0", + "type": "small_airport", + "name": "Amble-Tiger North Farms Airport", + "latitude_deg": "48.90140151977539", + "longitude_deg": "-99.01679992675781", + "elevation_ft": "1590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Sarles", + "scheduled_service": "no", + "gps_code": "8ND0", + "local_code": "8ND0" + }, + { + "id": "15073", + "ident": "8ND4", + "type": "small_airport", + "name": "Heyde Airport", + "latitude_deg": "48.07360076904297", + "longitude_deg": "-97.18620300292969", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Manvel", + "scheduled_service": "no", + "gps_code": "8ND4", + "local_code": "8ND4" + }, + { + "id": "15074", + "ident": "8ND5", + "type": "small_airport", + "name": "Ausk Strip", + "latitude_deg": "46.76390075683594", + "longitude_deg": "-97.40540313720703", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Chaffee", + "scheduled_service": "no", + "gps_code": "8ND5", + "local_code": "8ND5" + }, + { + "id": "15075", + "ident": "8ND6", + "type": "small_airport", + "name": "J Vining Airport", + "latitude_deg": "46.71269989013672", + "longitude_deg": "-97.39089965820312", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Chaffee", + "scheduled_service": "no", + "gps_code": "8ND6", + "local_code": "8ND6" + }, + { + "id": "347907", + "ident": "8ND7", + "type": "small_airport", + "name": "Sprague Airport", + "latitude_deg": "47.120664", + "longitude_deg": "-98.657833", + "elevation_ft": "1555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Courtenay", + "scheduled_service": "no", + "gps_code": "8ND7", + "local_code": "8ND7" + }, + { + "id": "15076", + "ident": "8NE2", + "type": "small_airport", + "name": "P & R Airport", + "latitude_deg": "41.04169845581055", + "longitude_deg": "-96.03359985351562", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Cedar Creek", + "scheduled_service": "no", + "gps_code": "8NE2", + "local_code": "8NE2" + }, + { + "id": "15077", + "ident": "8NE3", + "type": "small_airport", + "name": "Smith Field", + "latitude_deg": "40.48189926147461", + "longitude_deg": "-101.81300354003906", + "elevation_ft": "3380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Champion", + "scheduled_service": "no", + "gps_code": "8NE3", + "local_code": "8NE3" + }, + { + "id": "15078", + "ident": "8NE4", + "type": "small_airport", + "name": "Bornemeier Airstrip", + "latitude_deg": "40.87080001831055", + "longitude_deg": "-96.29199981689453", + "elevation_ft": "1292", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Elmwood", + "scheduled_service": "no", + "gps_code": "8NE4", + "local_code": "8NE4" + }, + { + "id": "15079", + "ident": "8NE5", + "type": "small_airport", + "name": "X1 Ranch Airport", + "latitude_deg": "41.79059982299805", + "longitude_deg": "-98.72979736328125", + "elevation_ft": "2070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Ericson", + "scheduled_service": "no", + "gps_code": "8NE5", + "local_code": "8NE5" + }, + { + "id": "15080", + "ident": "8NE6", + "type": "small_airport", + "name": "Franklin's Plainview Airport", + "latitude_deg": "40.12080001831055", + "longitude_deg": "-98.92539978027344", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "8NE6", + "local_code": "8NE6" + }, + { + "id": "15081", + "ident": "8NE7", + "type": "small_airport", + "name": "Smith Airport", + "latitude_deg": "40.099998474121094", + "longitude_deg": "-99.00039672851562", + "elevation_ft": "1948", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "8NE7", + "local_code": "8NE7" + }, + { + "id": "15082", + "ident": "8NE9", + "type": "small_airport", + "name": "C A M P Airport", + "latitude_deg": "41.39030075073242", + "longitude_deg": "-97.9645004272461", + "elevation_ft": "1675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Fullerton", + "scheduled_service": "no", + "gps_code": "8NE9", + "local_code": "8NE9" + }, + { + "id": "15083", + "ident": "8NJ0", + "type": "small_airport", + "name": "Winchelsea Airport", + "latitude_deg": "39.51789855957031", + "longitude_deg": "-74.50900268554688", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Port Republic", + "scheduled_service": "no", + "gps_code": "8NJ0", + "local_code": "8NJ0" + }, + { + "id": "15084", + "ident": "8NJ1", + "type": "heliport", + "name": "Merck Whitehouse Station Heliport", + "latitude_deg": "40.639802", + "longitude_deg": "-74.76553", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Whitehouse Station", + "scheduled_service": "no", + "gps_code": "8NJ1", + "local_code": "8NJ1" + }, + { + "id": "15085", + "ident": "8NJ2", + "type": "heliport", + "name": "Carnegie Center Heliport", + "latitude_deg": "40.32210159301758", + "longitude_deg": "-74.64790344238281", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "8NJ2", + "local_code": "8NJ2" + }, + { + "id": "15086", + "ident": "8NJ3", + "type": "heliport", + "name": "Lembo Heliport", + "latitude_deg": "40.90290069580078", + "longitude_deg": "-74.13289642333984", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Paterson", + "scheduled_service": "no", + "gps_code": "8NJ3", + "local_code": "8NJ3" + }, + { + "id": "15087", + "ident": "8NJ4", + "type": "heliport", + "name": "Inspira Health Center-Bridgeton Heliport", + "latitude_deg": "39.436558", + "longitude_deg": "-75.221162", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bridgeton", + "scheduled_service": "no", + "gps_code": "8NJ4", + "local_code": "8NJ4", + "keywords": "South Jersey Hospital System" + }, + { + "id": "15088", + "ident": "8NJ5", + "type": "heliport", + "name": "Kennedy Stadium Heliport", + "latitude_deg": "40.74729919433594", + "longitude_deg": "-74.15760040283203", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Harrison", + "scheduled_service": "no", + "gps_code": "8NJ5", + "local_code": "8NJ5" + }, + { + "id": "15089", + "ident": "8NJ6", + "type": "heliport", + "name": "Lamington House Heliport", + "latitude_deg": "40.653506", + "longitude_deg": "-74.696668", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bedminster", + "scheduled_service": "no", + "gps_code": "8NJ6", + "local_code": "8NJ6" + }, + { + "id": "15090", + "ident": "8NJ7", + "type": "heliport", + "name": "Pio Costa Heliport", + "latitude_deg": "40.94309997558594", + "longitude_deg": "-74.29070281982422", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Pequannock", + "scheduled_service": "no", + "gps_code": "8NJ7", + "local_code": "8NJ7" + }, + { + "id": "15091", + "ident": "8NJ8", + "type": "heliport", + "name": "Kraemer Heliport", + "latitude_deg": "39.744300842285156", + "longitude_deg": "-75.15879821777344", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Richwood", + "scheduled_service": "no", + "gps_code": "8NJ8", + "local_code": "8NJ8" + }, + { + "id": "15092", + "ident": "8NJ9", + "type": "heliport", + "name": "Ronson 287 Heliport", + "latitude_deg": "40.57619857788086", + "longitude_deg": "-74.57129669189453", + "elevation_ft": "142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Somerville", + "scheduled_service": "no", + "gps_code": "8NJ9", + "local_code": "8NJ9" + }, + { + "id": "45558", + "ident": "8NK2", + "type": "closed", + "name": "Marine Helicopter Squadron 361 Heliport", + "latitude_deg": "40.956944", + "longitude_deg": "-72.569445", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Jamesport", + "scheduled_service": "no", + "keywords": "8NK2" + }, + { + "id": "45554", + "ident": "8NK3", + "type": "small_airport", + "name": "Harris Airport", + "latitude_deg": "43.409669", + "longitude_deg": "-73.532732", + "elevation_ft": "261", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Fort Ann", + "scheduled_service": "no", + "local_code": "83K", + "home_link": "http://www.harrisairport.com/", + "keywords": "8NK3" + }, + { + "id": "15093", + "ident": "8NK4", + "type": "small_airport", + "name": "Bethany Airpark", + "latitude_deg": "42.94329833984375", + "longitude_deg": "-78.13829803466797", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Bethany Center", + "scheduled_service": "no", + "gps_code": "8NK4", + "local_code": "8NK4" + }, + { + "id": "45664", + "ident": "8NK5", + "type": "heliport", + "name": "Montefiore Saint Luke's Cornwall Hospital Heliport", + "latitude_deg": "41.50271", + "longitude_deg": "-74.01556", + "elevation_ft": "193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Newburgh", + "scheduled_service": "no", + "gps_code": "8NK5", + "local_code": "8NK5" + }, + { + "id": "45665", + "ident": "8NK6", + "type": "small_airport", + "name": "Suntime Airport", + "latitude_deg": "42.713056", + "longitude_deg": "-75.168333", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "West Burlington", + "scheduled_service": "no", + "gps_code": "8NK6", + "local_code": "8NK6" + }, + { + "id": "321923", + "ident": "8NK8", + "type": "seaplane_base", + "name": "Mister Dog Seaplane Base", + "latitude_deg": "43.565", + "longitude_deg": "-73.6086112", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Bolton Landing", + "scheduled_service": "no", + "gps_code": "8NK8", + "local_code": "8NK8" + }, + { + "id": "337149", + "ident": "8NR6", + "type": "heliport", + "name": "Person Memorial Hospital Heliport", + "latitude_deg": "36.409186", + "longitude_deg": "-78.985595", + "elevation_ft": "729", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Roxboro", + "scheduled_service": "no", + "gps_code": "8NR6", + "local_code": "8NR6" + }, + { + "id": "15094", + "ident": "8NY0", + "type": "heliport", + "name": "Sullivan Correctional Facility Heliport", + "latitude_deg": "41.72060012817383", + "longitude_deg": "-74.58159637451172", + "elevation_ft": "1436", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Woodbourne", + "scheduled_service": "no", + "gps_code": "8NY0", + "local_code": "8NY0" + }, + { + "id": "15095", + "ident": "8NY1", + "type": "heliport", + "name": "James Carl Memorial Heliport", + "latitude_deg": "41.98754", + "longitude_deg": "-74.9331", + "elevation_ft": "1863", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Roscoe", + "scheduled_service": "no", + "gps_code": "8NY1", + "local_code": "8NY1" + }, + { + "id": "15096", + "ident": "8NY2", + "type": "heliport", + "name": "Mountain Fresh Farm Heliport", + "latitude_deg": "41.68479919433594", + "longitude_deg": "-73.99349975585938", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "8NY2", + "local_code": "8NY2" + }, + { + "id": "15097", + "ident": "8NY3", + "type": "small_airport", + "name": "North Fork Airport", + "latitude_deg": "42.268699645996094", + "longitude_deg": "-75.55970001220703", + "elevation_ft": "1455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Afton", + "scheduled_service": "no", + "gps_code": "8NY3", + "local_code": "8NY3" + }, + { + "id": "347964", + "ident": "8NY4", + "type": "heliport", + "name": "Guthrie Corning Hospital Heliport", + "latitude_deg": "42.134986", + "longitude_deg": "-76.970875", + "elevation_ft": "901", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Corning", + "scheduled_service": "no", + "gps_code": "8NY4", + "local_code": "8NY4" + }, + { + "id": "15098", + "ident": "8NY5", + "type": "small_airport", + "name": "Mariaville Aerodrome", + "latitude_deg": "42.819052", + "longitude_deg": "-74.14644", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Duanesburg", + "scheduled_service": "no", + "gps_code": "8NY5", + "local_code": "8NY5" + }, + { + "id": "346071", + "ident": "8NY6", + "type": "heliport", + "name": "Mercy Hospital of Buffalo Helipad", + "latitude_deg": "42.84724", + "longitude_deg": "-78.811621", + "elevation_ft": "631", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Buffalo", + "scheduled_service": "no", + "gps_code": "8NY6", + "local_code": "8NY6" + }, + { + "id": "15099", + "ident": "8NY7", + "type": "closed", + "name": "Sha-Wan-Ga Valley Airport", + "latitude_deg": "41.571517", + "longitude_deg": "-74.401095", + "elevation_ft": "437", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Bloomingburg", + "scheduled_service": "no", + "keywords": "8NY7" + }, + { + "id": "345439", + "ident": "8NY8", + "type": "small_airport", + "name": "Hawks Field", + "latitude_deg": "43.048694", + "longitude_deg": "-75.292311", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Utica", + "scheduled_service": "no", + "gps_code": "8NY8", + "local_code": "8NY8" + }, + { + "id": "15100", + "ident": "8NY9", + "type": "heliport", + "name": "Nassau County Police Heliport", + "latitude_deg": "40.74589920043945", + "longitude_deg": "-73.49120330810547", + "elevation_ft": "132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Bethpage", + "scheduled_service": "no", + "gps_code": "8NY9", + "local_code": "8NY9" + }, + { + "id": "15101", + "ident": "8OA3", + "type": "heliport", + "name": "The Jewish Hospital Heliport", + "latitude_deg": "39.20610046386719", + "longitude_deg": "-84.37999725341797", + "elevation_ft": "817", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cincinnati", + "scheduled_service": "no", + "gps_code": "8OA3", + "local_code": "8OA3" + }, + { + "id": "15102", + "ident": "8OA5", + "type": "small_airport", + "name": "Camp Crook Municipal Airport", + "latitude_deg": "45.56669998168945", + "longitude_deg": "-103.98400115966797", + "elevation_ft": "3140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Camp Crook", + "scheduled_service": "no", + "gps_code": "8OA5", + "local_code": "8OA5" + }, + { + "id": "15103", + "ident": "8OA6", + "type": "small_airport", + "name": "Warner Airstrip", + "latitude_deg": "41.385793", + "longitude_deg": "-82.897103", + "elevation_ft": "611", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Vickery", + "scheduled_service": "no", + "gps_code": "8OA6", + "local_code": "8OA6" + }, + { + "id": "15104", + "ident": "8OA7", + "type": "small_airport", + "name": "Bald Eagle Field", + "latitude_deg": "39.55649948120117", + "longitude_deg": "-81.78099822998047", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Stockport", + "scheduled_service": "no", + "gps_code": "8OA7", + "local_code": "8OA7" + }, + { + "id": "15105", + "ident": "8OA9", + "type": "small_airport", + "name": "Margos Sky Ranch Airport", + "latitude_deg": "41.044498443603516", + "longitude_deg": "-81.8156967163086", + "elevation_ft": "1045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Seville", + "scheduled_service": "no", + "gps_code": "8OA9", + "local_code": "8OA9" + }, + { + "id": "15106", + "ident": "8OH0", + "type": "heliport", + "name": "Ashtabula County Medical Center Heliport", + "latitude_deg": "41.880145", + "longitude_deg": "-80.793777", + "elevation_ft": "639", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ashtabula", + "scheduled_service": "no", + "gps_code": "8OH0", + "local_code": "8OH0" + }, + { + "id": "15107", + "ident": "8OH1", + "type": "heliport", + "name": "Dunlap Memorial Hospital Heliport", + "latitude_deg": "40.83259963989258", + "longitude_deg": "-81.76210021972656", + "elevation_ft": "1124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Orrville", + "scheduled_service": "no", + "gps_code": "8OH1", + "local_code": "8OH1" + }, + { + "id": "15108", + "ident": "8OH2", + "type": "heliport", + "name": "Honda Heliport", + "latitude_deg": "40.28089904785156", + "longitude_deg": "-83.50409698486328", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Marysville", + "scheduled_service": "no", + "gps_code": "8OH2", + "local_code": "8OH2" + }, + { + "id": "15109", + "ident": "8OH3", + "type": "small_airport", + "name": "J and B Sky Ranch Airport", + "latitude_deg": "41.10789", + "longitude_deg": "-80.5246", + "elevation_ft": "1125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Coitsville", + "scheduled_service": "no", + "gps_code": "8OH3", + "local_code": "8OH3" + }, + { + "id": "15110", + "ident": "8OH4", + "type": "small_airport", + "name": "York Aerodrome", + "latitude_deg": "40.84407", + "longitude_deg": "-80.703195", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Leetonia", + "scheduled_service": "no", + "gps_code": "8OH4", + "local_code": "8OH4", + "keywords": "Bartholow" + }, + { + "id": "15111", + "ident": "8OH5", + "type": "small_airport", + "name": "Urban Airport", + "latitude_deg": "41.38199996948242", + "longitude_deg": "-80.7123031616211", + "elevation_ft": "1045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cortland", + "scheduled_service": "no", + "gps_code": "8OH5", + "local_code": "8OH5" + }, + { + "id": "15112", + "ident": "8OH6", + "type": "closed", + "name": "ODOT District 4 Summit County Heliport", + "latitude_deg": "41.1423", + "longitude_deg": "-81.466797", + "elevation_ft": "1029", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cuyahoga Falls", + "scheduled_service": "no", + "keywords": "8OH6" + }, + { + "id": "15113", + "ident": "8OH7", + "type": "closed", + "name": "Morris Field", + "latitude_deg": "40.882301330566", + "longitude_deg": "-80.600303649902", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "East Palestine", + "scheduled_service": "no", + "gps_code": "8OH7", + "local_code": "8OH7" + }, + { + "id": "15114", + "ident": "8OH8", + "type": "small_airport", + "name": "Allen Airport", + "latitude_deg": "41.66809844970703", + "longitude_deg": "-80.68560028076172", + "elevation_ft": "985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dorset", + "scheduled_service": "no", + "gps_code": "8OH8", + "local_code": "8OH8" + }, + { + "id": "15115", + "ident": "8OH9", + "type": "heliport", + "name": "University Hospital/Sicu Heliport", + "latitude_deg": "39.137298583984375", + "longitude_deg": "-84.50270080566406", + "elevation_ft": "937", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cincinnati", + "scheduled_service": "no", + "gps_code": "8OH9", + "local_code": "8OH9" + }, + { + "id": "15116", + "ident": "8OI0", + "type": "closed", + "name": "Brannon Field", + "latitude_deg": "41.44605", + "longitude_deg": "-81.252855", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Newbury Township", + "scheduled_service": "no", + "keywords": "8OI0" + }, + { + "id": "15117", + "ident": "8OI3", + "type": "small_airport", + "name": "Allen Airport", + "latitude_deg": "41.3734016418457", + "longitude_deg": "-80.66899871826172", + "elevation_ft": "1105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cortland", + "scheduled_service": "no", + "gps_code": "8OI3", + "local_code": "8OI3" + }, + { + "id": "15118", + "ident": "8OI4", + "type": "heliport", + "name": "Trinity Medical Center West Heliport", + "latitude_deg": "40.367000579833984", + "longitude_deg": "-80.65840148925781", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Steubenville", + "scheduled_service": "no", + "gps_code": "8OI4", + "local_code": "8OI4" + }, + { + "id": "15119", + "ident": "8OI5", + "type": "small_airport", + "name": "Clum Airport", + "latitude_deg": "39.88169860839844", + "longitude_deg": "-82.41459655761719", + "elevation_ft": "1115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Thornville", + "scheduled_service": "no", + "gps_code": "8OI5", + "local_code": "8OI5" + }, + { + "id": "15120", + "ident": "8OI6", + "type": "heliport", + "name": "St Vincent Charity Medical Center Heliport", + "latitude_deg": "41.49594", + "longitude_deg": "-81.67478", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "8OI6", + "local_code": "8OI6" + }, + { + "id": "15121", + "ident": "8OI8", + "type": "heliport", + "name": "Meridia Huron Hospital Heliport", + "latitude_deg": "41.52529907", + "longitude_deg": "-81.58370209", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "East Cleveland", + "scheduled_service": "no", + "gps_code": "8OI8", + "local_code": "8OI8" + }, + { + "id": "15122", + "ident": "8OI9", + "type": "small_airport", + "name": "Morkassel Field", + "latitude_deg": "39.09920120239258", + "longitude_deg": "-83.1166000366211", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Idaho", + "scheduled_service": "no", + "gps_code": "8OI9", + "local_code": "8OI9" + }, + { + "id": "15123", + "ident": "8OK0", + "type": "small_airport", + "name": "Lamle Airport", + "latitude_deg": "36.06829833984375", + "longitude_deg": "-98.28919982910156", + "elevation_ft": "1212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Okeene", + "scheduled_service": "no", + "gps_code": "8OK0", + "local_code": "8OK0" + }, + { + "id": "15124", + "ident": "8OK1", + "type": "small_airport", + "name": "Warbonnet Airport", + "latitude_deg": "35.16830062866211", + "longitude_deg": "-97.71080017089844", + "elevation_ft": "1335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Blanchard", + "scheduled_service": "no", + "gps_code": "8OK1", + "local_code": "8OK1" + }, + { + "id": "15125", + "ident": "8OK2", + "type": "small_airport", + "name": "Baker Airstrip", + "latitude_deg": "35.475101470947266", + "longitude_deg": "-97.92890167236328", + "elevation_ft": "1370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "El Reno", + "scheduled_service": "no", + "gps_code": "8OK2", + "local_code": "8OK2" + }, + { + "id": "15126", + "ident": "8OK3", + "type": "heliport", + "name": "Cleveland Area Hospital Heliport", + "latitude_deg": "36.31669998168945", + "longitude_deg": "-96.50029754638672", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "8OK3", + "local_code": "8OK3" + }, + { + "id": "15127", + "ident": "8OK4", + "type": "closed", + "name": "Brandley Airport", + "latitude_deg": "35.5042", + "longitude_deg": "-98.040604", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "El Reno", + "scheduled_service": "no", + "keywords": "8OK4" + }, + { + "id": "15128", + "ident": "8OK5", + "type": "heliport", + "name": "Grove General Hospital Heliport", + "latitude_deg": "36.581092", + "longitude_deg": "-94.759776", + "elevation_ft": "833", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Grove", + "scheduled_service": "no", + "gps_code": "8OK5", + "local_code": "8OK5" + }, + { + "id": "15129", + "ident": "8OK6", + "type": "closed", + "name": "Barry Dotson Ranch Airport", + "latitude_deg": "35.566799", + "longitude_deg": "-94.750198", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Marble City", + "scheduled_service": "no", + "keywords": "8OK6" + }, + { + "id": "15130", + "ident": "8OK7", + "type": "closed", + "name": "CC & M Airport", + "latitude_deg": "36.797298", + "longitude_deg": "-97.718399", + "elevation_ft": "1085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Medford", + "scheduled_service": "no", + "keywords": "8OK7" + }, + { + "id": "15131", + "ident": "8OK8", + "type": "heliport", + "name": "Baptist Regional Health Center Heliport", + "latitude_deg": "36.87198", + "longitude_deg": "-94.88113", + "elevation_ft": "806", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "8OK8", + "local_code": "8OK8" + }, + { + "id": "15132", + "ident": "8OK9", + "type": "heliport", + "name": "Nu-Tech Energy County Heliport", + "latitude_deg": "35.450599670410156", + "longitude_deg": "-97.53500366210938", + "elevation_ft": "1225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "gps_code": "8OK9", + "local_code": "8OK9" + }, + { + "id": "15133", + "ident": "8OL1", + "type": "small_airport", + "name": "Petes Airpark", + "latitude_deg": "35.227901458740234", + "longitude_deg": "-96.22949981689453", + "elevation_ft": "771", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Wetumka", + "scheduled_service": "no", + "gps_code": "8OL1", + "local_code": "8OL1" + }, + { + "id": "15134", + "ident": "8OR0", + "type": "heliport", + "name": "Danielson Heliport", + "latitude_deg": "45.53340148925781", + "longitude_deg": "-122.95500183105469", + "elevation_ft": "204", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "8OR0", + "local_code": "8OR0" + }, + { + "id": "15135", + "ident": "8OR1", + "type": "heliport", + "name": "Lebanon Hospital Heliport", + "latitude_deg": "44.5515336263", + "longitude_deg": "-122.907743454", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "8OR1", + "local_code": "8OR1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lebanon_Hospital_Heliport" + }, + { + "id": "15136", + "ident": "8OR2", + "type": "small_airport", + "name": "Kingston Airpark", + "latitude_deg": "44.778499603271484", + "longitude_deg": "-122.7300033569336", + "elevation_ft": "871", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Stayton", + "scheduled_service": "no", + "gps_code": "8OR2", + "local_code": "8OR2" + }, + { + "id": "15137", + "ident": "8OR3", + "type": "small_airport", + "name": "Riverview Ranch Airport", + "latitude_deg": "42.93370056152344", + "longitude_deg": "-123.12100219726562", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Days Creek", + "scheduled_service": "no", + "gps_code": "8OR3", + "local_code": "8OR3" + }, + { + "id": "15138", + "ident": "8OR4", + "type": "closed", + "name": "Southern Oregon General Hospital Heliport", + "latitude_deg": "42.447101", + "longitude_deg": "-123.3323569", + "elevation_ft": "1024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Grants Pass", + "scheduled_service": "no", + "home_link": "https://web.archive.org/web/20151031215053/http://abnf.co/OR-josephine_memorial_hospital,_oregon.htm", + "keywords": "8OR4, Josephine Memorial Hospital" + }, + { + "id": "15139", + "ident": "8OR5", + "type": "small_airport", + "name": "Pilot Butte Airport", + "latitude_deg": "44.047298431396484", + "longitude_deg": "-121.2760009765625", + "elevation_ft": "3675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Bend", + "scheduled_service": "no", + "gps_code": "8OR5", + "local_code": "8OR5" + }, + { + "id": "15140", + "ident": "8OR6", + "type": "small_airport", + "name": "Grabhorn's Airport", + "latitude_deg": "45.78229904174805", + "longitude_deg": "-122.89399719238281", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Scappoose", + "scheduled_service": "no", + "gps_code": "8OR6", + "local_code": "8OR6" + }, + { + "id": "15141", + "ident": "8OR7", + "type": "small_airport", + "name": "Gates Airport", + "latitude_deg": "44.6271019", + "longitude_deg": "-123.2249985", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Corvallis", + "scheduled_service": "no", + "gps_code": "8OR7", + "local_code": "8OR7" + }, + { + "id": "15142", + "ident": "8OR8", + "type": "heliport", + "name": "Light Valley Tree Farm Heliport", + "latitude_deg": "42.35929870605469", + "longitude_deg": "-122.51100158691406", + "elevation_ft": "2380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Eagle Point", + "scheduled_service": "no", + "gps_code": "8OR8", + "local_code": "8OR8" + }, + { + "id": "15143", + "ident": "8OR9", + "type": "heliport", + "name": "Samaritan Pacific Communities Hospital Heliport", + "latitude_deg": "44.627876", + "longitude_deg": "-124.059329", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "8OR9", + "local_code": "8OR9" + }, + { + "id": "15144", + "ident": "8PA0", + "type": "small_airport", + "name": "Numidia Airport", + "latitude_deg": "40.8661994934082", + "longitude_deg": "-76.39739990234375", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Numidia", + "scheduled_service": "no", + "gps_code": "8PA0", + "local_code": "8PA0" + }, + { + "id": "15145", + "ident": "8PA1", + "type": "small_airport", + "name": "Dee Jay Airport", + "latitude_deg": "40.40840148925781", + "longitude_deg": "-76.50389862060547", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Ono", + "scheduled_service": "no", + "gps_code": "8PA1", + "local_code": "8PA1" + }, + { + "id": "15146", + "ident": "8PA2", + "type": "heliport", + "name": "Ronca Heliport", + "latitude_deg": "40.68429946899414", + "longitude_deg": "-75.33409881591797", + "elevation_ft": "375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bethlehem", + "scheduled_service": "no", + "gps_code": "8PA2", + "local_code": "8PA2" + }, + { + "id": "15147", + "ident": "8PA3", + "type": "small_airport", + "name": "Deer Meadows Airstrip", + "latitude_deg": "40.99589920043945", + "longitude_deg": "-75.7405014038086", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Weatherly", + "scheduled_service": "no", + "gps_code": "8PA3", + "local_code": "8PA3" + }, + { + "id": "15148", + "ident": "8PA4", + "type": "small_airport", + "name": "J F T Airport", + "latitude_deg": "40.94449996948242", + "longitude_deg": "-77.0457992553711", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mifflinburg", + "scheduled_service": "no", + "gps_code": "8PA4", + "local_code": "8PA4" + }, + { + "id": "15149", + "ident": "8PA5", + "type": "heliport", + "name": "Echo 8 Communications Facility Heliport", + "latitude_deg": "40.81449890136719", + "longitude_deg": "-79.5062026977539", + "elevation_ft": "1304", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Kittanning", + "scheduled_service": "no", + "gps_code": "8PA5", + "local_code": "8PA5" + }, + { + "id": "45768", + "ident": "8PA6", + "type": "small_airport", + "name": "Turtle Rock Airstrip", + "latitude_deg": "40.329306", + "longitude_deg": "-77.167639", + "elevation_ft": "626", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Shermansdale", + "scheduled_service": "no", + "gps_code": "8PA6", + "local_code": "8PA6" + }, + { + "id": "325669", + "ident": "8PA7", + "type": "heliport", + "name": "Lazzarini Heliport", + "latitude_deg": "40.796388", + "longitude_deg": "-75.3575", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Nazareth", + "scheduled_service": "no", + "gps_code": "8PA7", + "local_code": "8PA7" + }, + { + "id": "15151", + "ident": "8PA8", + "type": "small_airport", + "name": "Sunny Rest Airport", + "latitude_deg": "40.81679916381836", + "longitude_deg": "-75.66629791259766", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Palmerton", + "scheduled_service": "no", + "gps_code": "8PA8", + "local_code": "8PA8" + }, + { + "id": "15152", + "ident": "8PA9", + "type": "heliport", + "name": "Sons Ii Heliport", + "latitude_deg": "40.32569885253906", + "longitude_deg": "-74.99130249023438", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lahaska", + "scheduled_service": "no", + "gps_code": "8PA9", + "local_code": "8PA9" + }, + { + "id": "15153", + "ident": "8PN0", + "type": "small_airport", + "name": "Lost Acres Airport", + "latitude_deg": "39.93830108642578", + "longitude_deg": "-77.61640167236328", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Chambersburg", + "scheduled_service": "no", + "gps_code": "8PN0", + "local_code": "8PN0" + }, + { + "id": "15154", + "ident": "8PN2", + "type": "small_airport", + "name": "Hallett's Airport", + "latitude_deg": "40.910499572753906", + "longitude_deg": "-75.16510009765625", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bangor", + "scheduled_service": "no", + "gps_code": "8PN2", + "local_code": "8PN2" + }, + { + "id": "45754", + "ident": "8PN3", + "type": "small_airport", + "name": "McCauley's Airport", + "latitude_deg": "41.383297", + "longitude_deg": "-79.498701", + "elevation_ft": "1571", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Venus", + "scheduled_service": "no", + "gps_code": "8PN3", + "local_code": "8PN3" + }, + { + "id": "45761", + "ident": "8PN4", + "type": "closed", + "name": "Philipsburg Area Hospital Heliport", + "latitude_deg": "40.906281", + "longitude_deg": "-78.206731", + "elevation_ft": "1491", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philipsburg", + "scheduled_service": "no", + "home_link": "https://web.archive.org/web/20180608040542/https://www.centredaily.com/news/local/community/philipsburg/article42873168.html", + "keywords": "8PN4" + }, + { + "id": "15155", + "ident": "8PN5", + "type": "heliport", + "name": "Helfrick Heliport", + "latitude_deg": "40.83340072631836", + "longitude_deg": "-76.54969787597656", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Elysburg", + "scheduled_service": "no", + "gps_code": "8PN5", + "local_code": "8PN5" + }, + { + "id": "45753", + "ident": "8PN6", + "type": "heliport", + "name": "Lansdale Hospital Heliport", + "latitude_deg": "40.252389", + "longitude_deg": "-75.270333", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lansdale", + "scheduled_service": "no", + "gps_code": "8PN6", + "local_code": "8PN6", + "keywords": "Central Montgomery, CMMC" + }, + { + "id": "45738", + "ident": "8PN7", + "type": "heliport", + "name": "Cameron County Junior/Senior High School Heliport", + "latitude_deg": "41.5135", + "longitude_deg": "-78.248431", + "elevation_ft": "2581", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Emporium", + "scheduled_service": "no", + "gps_code": "8PN7", + "local_code": "8PN7" + }, + { + "id": "15156", + "ident": "8PN8", + "type": "heliport", + "name": "Rorer Group Heliport", + "latitude_deg": "40.14179992675781", + "longitude_deg": "-75.1884994506836", + "elevation_ft": "182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Fort Washington", + "scheduled_service": "no", + "gps_code": "8PN8", + "local_code": "8PN8" + }, + { + "id": "15157", + "ident": "8PN9", + "type": "small_airport", + "name": "Marsh Creek Airport", + "latitude_deg": "39.821998596191406", + "longitude_deg": "-77.29190063476562", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Gettysburg", + "scheduled_service": "no", + "gps_code": "8PN9", + "local_code": "8PN9" + }, + { + "id": "15158", + "ident": "8PS0", + "type": "small_airport", + "name": "Middlebury Airport", + "latitude_deg": "41.847900390625", + "longitude_deg": "-77.28140258789062", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Middlebury Center", + "scheduled_service": "no", + "gps_code": "8PS0", + "local_code": "8PS0" + }, + { + "id": "15159", + "ident": "8PS1", + "type": "heliport", + "name": "Bethlehem Steel Plant Heliport", + "latitude_deg": "40.61259841918945", + "longitude_deg": "-75.3468017578125", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bethlehem", + "scheduled_service": "no", + "gps_code": "8PS1", + "local_code": "8PS1" + }, + { + "id": "15160", + "ident": "8PS2", + "type": "small_airport", + "name": "Still Meadow Farm Airport", + "latitude_deg": "41.31060028076172", + "longitude_deg": "-80.16280364990234", + "elevation_ft": "1370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Jackson Center", + "scheduled_service": "no", + "gps_code": "8PS2", + "local_code": "8PS2" + }, + { + "id": "15161", + "ident": "8PS3", + "type": "heliport", + "name": "Empire Heliport", + "latitude_deg": "41.394500732421875", + "longitude_deg": "-75.73490142822266", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Taylor", + "scheduled_service": "no", + "gps_code": "8PS3", + "local_code": "8PS3" + }, + { + "id": "15162", + "ident": "8PS5", + "type": "heliport", + "name": "HMC Hanger Heliport", + "latitude_deg": "40.261942", + "longitude_deg": "-76.684731", + "elevation_ft": "421", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hershey", + "scheduled_service": "no", + "gps_code": "8PS5", + "local_code": "8PS5" + }, + { + "id": "15163", + "ident": "8PS7", + "type": "heliport", + "name": "Nay Aug Park Heliport", + "latitude_deg": "41.399074", + "longitude_deg": "-75.643126", + "elevation_ft": "1055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Scranton", + "scheduled_service": "no", + "gps_code": "8PS7", + "local_code": "8PS7" + }, + { + "id": "15164", + "ident": "8PS9", + "type": "heliport", + "name": "Commonwealth Health Tunkhannock Heliport", + "latitude_deg": "41.578334", + "longitude_deg": "-75.970037", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tunkhannock", + "scheduled_service": "no", + "gps_code": "8PS9", + "local_code": "8PS9", + "keywords": "Tyler Memorial Hospital Heliport" + }, + { + "id": "15165", + "ident": "8Q0", + "type": "closed", + "name": "Travis Air Force Base Aero Club", + "latitude_deg": "38.269688", + "longitude_deg": "-121.972081", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fairfield", + "scheduled_service": "no", + "keywords": "8Q0" + }, + { + "id": "15166", + "ident": "8S2", + "type": "small_airport", + "name": "Cashmere-Dryden Airport", + "latitude_deg": "47.51470184326172", + "longitude_deg": "-120.48500061035156", + "elevation_ft": "858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Cashmere", + "scheduled_service": "no", + "gps_code": "8S2", + "local_code": "8S2" + }, + { + "id": "15167", + "ident": "8S3", + "type": "small_airport", + "name": "Santiam Junction State Airport", + "latitude_deg": "44.434347", + "longitude_deg": "-121.942406", + "elevation_ft": "3780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sisters", + "scheduled_service": "no", + "local_code": "8S3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santiam_Junction_State_Airport" + }, + { + "id": "15168", + "ident": "8S4", + "type": "small_airport", + "name": "Enterprise Municipal Airport", + "latitude_deg": "45.42490005493164", + "longitude_deg": "-117.26499938964844", + "elevation_ft": "3957", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Enterprise", + "scheduled_service": "no", + "gps_code": "8S4", + "local_code": "8S4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Enterprise_Municipal_Airport_(Oregon)" + }, + { + "id": "15169", + "ident": "8TA0", + "type": "small_airport", + "name": "John B Connally Ranch Airport", + "latitude_deg": "29.135799407958984", + "longitude_deg": "-98.27639770507812", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Floresville", + "scheduled_service": "no", + "gps_code": "8TA0", + "local_code": "8TA0" + }, + { + "id": "15170", + "ident": "8TA1", + "type": "small_airport", + "name": "Whatley Flying Service Airport", + "latitude_deg": "28.477877", + "longitude_deg": "-96.760184", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seadrift", + "scheduled_service": "no", + "gps_code": "8TA1", + "local_code": "8TA1" + }, + { + "id": "15171", + "ident": "8TA2", + "type": "heliport", + "name": "Department of Public Safety Heliport", + "latitude_deg": "33.649361", + "longitude_deg": "-96.61017", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sherman", + "scheduled_service": "no", + "gps_code": "8TA2", + "local_code": "8TA2" + }, + { + "id": "15172", + "ident": "8TA3", + "type": "small_airport", + "name": "Flying X River Ranch Airport", + "latitude_deg": "30.51689910888672", + "longitude_deg": "-98.17420196533203", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Spicewood", + "scheduled_service": "no", + "gps_code": "8TA3", + "local_code": "8TA3" + }, + { + "id": "15173", + "ident": "8TA4", + "type": "closed", + "name": "Laseair Airport", + "latitude_deg": "29.445499", + "longitude_deg": "-95.007697", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Texas City", + "scheduled_service": "no", + "keywords": "8TA4" + }, + { + "id": "15174", + "ident": "8TA5", + "type": "small_airport", + "name": "Short Stop Airport", + "latitude_deg": "33.16320037841797", + "longitude_deg": "-96.32219696044922", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Farmersville", + "scheduled_service": "no", + "gps_code": "8TA5", + "local_code": "8TA5" + }, + { + "id": "15175", + "ident": "8TA6", + "type": "heliport", + "name": "Hyco Heliport Nr 3 Heliport", + "latitude_deg": "30.146900177001953", + "longitude_deg": "-94.1780014038086", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beaumont", + "scheduled_service": "no", + "gps_code": "8TA6", + "local_code": "8TA6" + }, + { + "id": "15176", + "ident": "8TA7", + "type": "small_airport", + "name": "Stark Field", + "latitude_deg": "32.56959915161133", + "longitude_deg": "-97.75309753417969", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Granbury", + "scheduled_service": "no", + "gps_code": "8TA7", + "local_code": "8TA7" + }, + { + "id": "15177", + "ident": "8TA8", + "type": "small_airport", + "name": "Bufords Field", + "latitude_deg": "31.169099807739258", + "longitude_deg": "-94.53240203857422", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Huntington", + "scheduled_service": "no", + "gps_code": "8TA8", + "local_code": "8TA8" + }, + { + "id": "15178", + "ident": "8TA9", + "type": "small_airport", + "name": "Star Dusters Airport", + "latitude_deg": "30.64368", + "longitude_deg": "-92.0583", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "8TA9", + "local_code": "8TA9" + }, + { + "id": "15179", + "ident": "8TE0", + "type": "closed", + "name": "Gillingham Airport", + "latitude_deg": "29.139099", + "longitude_deg": "-98.113297", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Floresville", + "scheduled_service": "no", + "keywords": "8TE0" + }, + { + "id": "15180", + "ident": "8TE1", + "type": "small_airport", + "name": "Wall Flying Service Airport", + "latitude_deg": "29.01799964904785", + "longitude_deg": "-98.20670318603516", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Floresville", + "scheduled_service": "no", + "gps_code": "8TE1", + "local_code": "8TE1" + }, + { + "id": "15181", + "ident": "8TE2", + "type": "small_airport", + "name": "J-Bar Ranch Airport", + "latitude_deg": "31.52790069580078", + "longitude_deg": "-102.52799987792969", + "elevation_ft": "2667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crane", + "scheduled_service": "no", + "gps_code": "8TE2", + "local_code": "8TE2" + }, + { + "id": "15182", + "ident": "8TE3", + "type": "small_airport", + "name": "Lopez Ranch Airport", + "latitude_deg": "30.718249", + "longitude_deg": "-100.082557", + "elevation_ft": "2318", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort McKavett", + "scheduled_service": "no", + "gps_code": "8TE3", + "local_code": "8TE3" + }, + { + "id": "15183", + "ident": "8TE4", + "type": "small_airport", + "name": "H & F Properties Airport", + "latitude_deg": "28.815606", + "longitude_deg": "-99.761317", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crystal City", + "scheduled_service": "no", + "gps_code": "8TE4", + "local_code": "8TE4" + }, + { + "id": "15184", + "ident": "8TE5", + "type": "heliport", + "name": "Mount Vernon Medical Center Heliport", + "latitude_deg": "33.176086", + "longitude_deg": "-95.235412", + "elevation_ft": "482", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "8TE5", + "local_code": "8TE5" + }, + { + "id": "15185", + "ident": "8TE6", + "type": "closed", + "name": "Faith Cattle Company Longfellow Ranch Airport", + "latitude_deg": "30.305316", + "longitude_deg": "-102.723629", + "elevation_ft": "3900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no", + "keywords": "8TE6" + }, + { + "id": "15186", + "ident": "8TE7", + "type": "small_airport", + "name": "Carter Ranch Airport", + "latitude_deg": "30.31935", + "longitude_deg": "-98.914391", + "elevation_ft": "1840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fredericksburg", + "scheduled_service": "no", + "gps_code": "8TE7", + "local_code": "8TE7" + }, + { + "id": "15187", + "ident": "8TE8", + "type": "small_airport", + "name": "Tradewind Agricultural Airport", + "latitude_deg": "29.162613", + "longitude_deg": "-96.226655", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Campo", + "scheduled_service": "no", + "gps_code": "8TE8", + "local_code": "8TE8", + "keywords": "6T6, Thompson Flyers" + }, + { + "id": "15188", + "ident": "8TE9", + "type": "heliport", + "name": "Mc Gill Ranch Heliport", + "latitude_deg": "29.8911991119", + "longitude_deg": "-95.7326965332", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Harris", + "scheduled_service": "no", + "gps_code": "8TE9", + "local_code": "8TE9" + }, + { + "id": "15189", + "ident": "8TN0", + "type": "heliport", + "name": "Le Bonheur Medical Center Heliport", + "latitude_deg": "35.000099182128906", + "longitude_deg": "-90.03369903564453", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Memphis", + "scheduled_service": "no", + "gps_code": "8TN0", + "local_code": "8TN0" + }, + { + "id": "15190", + "ident": "8TN1", + "type": "small_airport", + "name": "Parker Airport", + "latitude_deg": "35.1963996887207", + "longitude_deg": "-89.62689971923828", + "elevation_ft": "375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Eads", + "scheduled_service": "no", + "gps_code": "8TN1", + "local_code": "8TN1" + }, + { + "id": "15191", + "ident": "8TN2", + "type": "small_airport", + "name": "Pleasant Grove Airpark", + "latitude_deg": "35.399098", + "longitude_deg": "-86.554843", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Shelbyville", + "scheduled_service": "no", + "gps_code": "8TN2", + "local_code": "8TN2" + }, + { + "id": "15192", + "ident": "8TN3", + "type": "small_airport", + "name": "Raby Airpark", + "latitude_deg": "35.84170150756836", + "longitude_deg": "-84.18109893798828", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Farragut", + "scheduled_service": "no", + "gps_code": "8TN3", + "local_code": "8TN3" + }, + { + "id": "15193", + "ident": "8TN4", + "type": "small_airport", + "name": "Flaglor Airport", + "latitude_deg": "36.24470138549805", + "longitude_deg": "-82.96890258789062", + "elevation_ft": "1135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Mosheim", + "scheduled_service": "no", + "gps_code": "8TN4", + "local_code": "8TN4" + }, + { + "id": "15194", + "ident": "8TN5", + "type": "small_airport", + "name": "Nobuzzn Airport", + "latitude_deg": "36.48640060424805", + "longitude_deg": "-86.91110229492188", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "8TN5", + "local_code": "8TN5" + }, + { + "id": "15195", + "ident": "8TN6", + "type": "small_airport", + "name": "Rachel's Landing Airport", + "latitude_deg": "35.921579", + "longitude_deg": "-86.345034", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Murfreesboro", + "scheduled_service": "no", + "gps_code": "8TN6", + "local_code": "8TN6", + "keywords": "Baker Field" + }, + { + "id": "15196", + "ident": "8TN7", + "type": "small_airport", + "name": "Short Creek Airport", + "latitude_deg": "36.401967", + "longitude_deg": "-87.992018", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Dover", + "scheduled_service": "no", + "gps_code": "8TN7", + "local_code": "8TN7" + }, + { + "id": "15197", + "ident": "8TN8", + "type": "small_airport", + "name": "Field of Dreams Ultralightport", + "latitude_deg": "35.54169845581055", + "longitude_deg": "-89.87139892578125", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Burlison", + "scheduled_service": "no", + "gps_code": "8TN8", + "local_code": "8TN8" + }, + { + "id": "15198", + "ident": "8TN9", + "type": "small_airport", + "name": "Bull Run Airport", + "latitude_deg": "35.51559829711914", + "longitude_deg": "-89.67780303955078", + "elevation_ft": "376", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Covington", + "scheduled_service": "no", + "gps_code": "8TN9", + "local_code": "8TN9" + }, + { + "id": "15199", + "ident": "8TS0", + "type": "small_airport", + "name": "Hamilton Ranch Airport", + "latitude_deg": "27.553545", + "longitude_deg": "-98.734606", + "elevation_ft": "698", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Freer", + "scheduled_service": "no", + "gps_code": "8TS0", + "local_code": "8TS0" + }, + { + "id": "15200", + "ident": "8TS1", + "type": "small_airport", + "name": "Retta Airport", + "latitude_deg": "32.54180145263672", + "longitude_deg": "-97.24199676513672", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Burleson", + "scheduled_service": "no", + "gps_code": "8TS1", + "local_code": "8TS1" + }, + { + "id": "15201", + "ident": "8TS2", + "type": "small_airport", + "name": "Henrietta Airport", + "latitude_deg": "33.78340148925781", + "longitude_deg": "-98.21700286865234", + "elevation_ft": "932", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Henrietta", + "scheduled_service": "no", + "gps_code": "8TS2", + "local_code": "8TS2" + }, + { + "id": "15202", + "ident": "8TS3", + "type": "small_airport", + "name": "Bruner Airport", + "latitude_deg": "31.390199661254883", + "longitude_deg": "-95.47329711914062", + "elevation_ft": "387", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Latexo", + "scheduled_service": "no", + "gps_code": "8TS3", + "local_code": "8TS3" + }, + { + "id": "15203", + "ident": "8TS4", + "type": "heliport", + "name": "Memorial City General Hospital Heliport", + "latitude_deg": "29.780707", + "longitude_deg": "-95.545169", + "elevation_ft": "88", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "8TS4", + "local_code": "8TS4" + }, + { + "id": "15204", + "ident": "8TS5", + "type": "small_airport", + "name": "Stol Field", + "latitude_deg": "32.467899322509766", + "longitude_deg": "-97.36830139160156", + "elevation_ft": "908", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Joshua", + "scheduled_service": "no", + "gps_code": "8TS5", + "local_code": "8TS5" + }, + { + "id": "15205", + "ident": "8TS6", + "type": "small_airport", + "name": "Moore Airport", + "latitude_deg": "32.533199310302734", + "longitude_deg": "-96.32250213623047", + "elevation_ft": "418", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kaufman", + "scheduled_service": "no", + "gps_code": "8TS6", + "local_code": "8TS6" + }, + { + "id": "15206", + "ident": "8TS7", + "type": "small_airport", + "name": "Wyatt 3-Rivers Airport", + "latitude_deg": "32.2449", + "longitude_deg": "-97.726097", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Glen Rose", + "scheduled_service": "no", + "gps_code": "8TS7", + "local_code": "8TS7" + }, + { + "id": "15207", + "ident": "8TS8", + "type": "small_airport", + "name": "RNK Ranch Airport", + "latitude_deg": "29.9174", + "longitude_deg": "-100.913002", + "elevation_ft": "1945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no", + "gps_code": "8TS8", + "local_code": "8TS8" + }, + { + "id": "15208", + "ident": "8TS9", + "type": "small_airport", + "name": "Strait Ranch Airport", + "latitude_deg": "28.140694", + "longitude_deg": "-99.566584", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Encinal", + "scheduled_service": "no", + "gps_code": "8TS9", + "local_code": "8TS9" + }, + { + "id": "15209", + "ident": "8TX0", + "type": "small_airport", + "name": "Hub Field", + "latitude_deg": "31.427809", + "longitude_deg": "-96.134892", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jewett", + "scheduled_service": "no", + "gps_code": "8TX0", + "local_code": "8TX0" + }, + { + "id": "15210", + "ident": "8TX1", + "type": "heliport", + "name": "Medical Emergency Gbc Heliport", + "latitude_deg": "32.33489990234375", + "longitude_deg": "-96.11329650878906", + "elevation_ft": "395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gun Barrel City", + "scheduled_service": "no", + "gps_code": "8TX1", + "local_code": "8TX1" + }, + { + "id": "15211", + "ident": "8TX2", + "type": "small_airport", + "name": "Freeman Ranch Airport", + "latitude_deg": "29.978500366210938", + "longitude_deg": "-100.2020034790039", + "elevation_ft": "2380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rocksprings", + "scheduled_service": "no", + "gps_code": "8TX2", + "local_code": "8TX2" + }, + { + "id": "15212", + "ident": "8TX3", + "type": "closed", + "name": "Edwards Airport", + "latitude_deg": "31.344642", + "longitude_deg": "-98.615272", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Goldthwaite", + "scheduled_service": "no", + "gps_code": "8TX3", + "local_code": "8TX3" + }, + { + "id": "15213", + "ident": "8TX4", + "type": "heliport", + "name": "Sartor Heliport", + "latitude_deg": "30.37579917907715", + "longitude_deg": "-95.55740356445312", + "elevation_ft": "203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Willis", + "scheduled_service": "no", + "gps_code": "8TX4", + "local_code": "8TX4" + }, + { + "id": "15214", + "ident": "8TX5", + "type": "heliport", + "name": "Texaco Chemical Company-East Heliport", + "latitude_deg": "29.962400436401367", + "longitude_deg": "-93.93209838867188", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port Neches", + "scheduled_service": "no", + "gps_code": "8TX5", + "local_code": "8TX5" + }, + { + "id": "15215", + "ident": "8TX6", + "type": "closed", + "name": "Harper Airport", + "latitude_deg": "32.427499", + "longitude_deg": "-96.717131", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Palmer", + "scheduled_service": "no", + "keywords": "8TX6" + }, + { + "id": "15216", + "ident": "8TX7", + "type": "closed", + "name": "Skyhaven Airport", + "latitude_deg": "29.833599", + "longitude_deg": "-95.148499", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "keywords": "8TX7" + }, + { + "id": "15217", + "ident": "8TX8", + "type": "small_airport", + "name": "Weeks Airport", + "latitude_deg": "27.360745", + "longitude_deg": "-98.179622", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Premont", + "scheduled_service": "no", + "gps_code": "8TX8", + "local_code": "8TX8" + }, + { + "id": "15218", + "ident": "8TX9", + "type": "heliport", + "name": "North Texas Medical Center Heliport", + "latitude_deg": "33.645475", + "longitude_deg": "-97.163525", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gainesville", + "scheduled_service": "no", + "gps_code": "8TX9", + "local_code": "8TX9" + }, + { + "id": "15219", + "ident": "8U0", + "type": "small_airport", + "name": "Ryegate Airport", + "latitude_deg": "46.290501", + "longitude_deg": "-109.248001", + "elevation_ft": "3689", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Ryegate", + "scheduled_service": "no", + "local_code": "8U0" + }, + { + "id": "15220", + "ident": "8U1", + "type": "small_airport", + "name": "Sand Springs Strip", + "latitude_deg": "47.10419845581055", + "longitude_deg": "-107.50299835205078", + "elevation_ft": "3180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Sand Springs", + "scheduled_service": "no", + "gps_code": "8U1", + "local_code": "8U1" + }, + { + "id": "15221", + "ident": "8U3", + "type": "small_airport", + "name": "Scobey Border Station /East Poplar International/ Airport", + "latitude_deg": "48.99949264526367", + "longitude_deg": "-105.39899444580078", + "elevation_ft": "2501", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Scobey", + "scheduled_service": "no", + "gps_code": "8U3", + "local_code": "8U3" + }, + { + "id": "15222", + "ident": "8U4", + "type": "small_airport", + "name": "Spotted Bear USFS Airport", + "latitude_deg": "47.961995", + "longitude_deg": "-113.559322", + "elevation_ft": "3670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Hungry Horse", + "scheduled_service": "no", + "local_code": "8U4" + }, + { + "id": "15223", + "ident": "8U5", + "type": "closed", + "name": "Sunburst Airport", + "latitude_deg": "48.886701", + "longitude_deg": "-111.921996", + "elevation_ft": "3406", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Sunburst", + "scheduled_service": "no", + "keywords": "8U5" + }, + { + "id": "15224", + "ident": "8U9", + "type": "small_airport", + "name": "Canyon Ferry Airport", + "latitude_deg": "46.418800354003906", + "longitude_deg": "-111.5770034790039", + "elevation_ft": "3840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Townsend", + "scheduled_service": "no", + "gps_code": "8U9", + "local_code": "8U9" + }, + { + "id": "15225", + "ident": "8V6", + "type": "small_airport", + "name": "Dove Creek Airport", + "latitude_deg": "37.76390075683594", + "longitude_deg": "-108.88899993896484", + "elevation_ft": "6975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Dove Creek", + "scheduled_service": "no", + "gps_code": "8V6", + "local_code": "8V6" + }, + { + "id": "15226", + "ident": "8VA0", + "type": "heliport", + "name": "VCU Health System-I Lot Heliport", + "latitude_deg": "37.547937", + "longitude_deg": "-77.43038", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "8VA0", + "local_code": "8VA0", + "keywords": "MCV Heliport" + }, + { + "id": "15227", + "ident": "8VA1", + "type": "closed", + "name": "Grand Pre Farm Airport", + "latitude_deg": "38.454303", + "longitude_deg": "-78.186402", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Brightwood", + "scheduled_service": "no", + "keywords": "8VA1" + }, + { + "id": "15228", + "ident": "8VA2", + "type": "small_airport", + "name": "Shivok Airport", + "latitude_deg": "38.00899887084961", + "longitude_deg": "-76.56300354003906", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Callao", + "scheduled_service": "no", + "gps_code": "8VA2", + "local_code": "8VA2" + }, + { + "id": "15229", + "ident": "8VA3", + "type": "heliport", + "name": "Fauquier Hospital Emergency Transport Heliport", + "latitude_deg": "38.71149826049805", + "longitude_deg": "-77.80940246582031", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Warrenton", + "scheduled_service": "no", + "gps_code": "8VA3", + "local_code": "8VA3" + }, + { + "id": "15230", + "ident": "8VA4", + "type": "small_airport", + "name": "Lotus International Airport", + "latitude_deg": "37.67290115356445", + "longitude_deg": "-78.70330047607422", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Buckinham", + "scheduled_service": "no", + "gps_code": "8VA4", + "local_code": "8VA4" + }, + { + "id": "15231", + "ident": "8VA5", + "type": "heliport", + "name": "University of Virginia Hospital Heliport", + "latitude_deg": "38.032798767089844", + "longitude_deg": "-78.49970245361328", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Charlottesville", + "scheduled_service": "no", + "gps_code": "8VA5", + "local_code": "8VA5" + }, + { + "id": "15232", + "ident": "8VA6", + "type": "small_airport", + "name": "Flatwoods Airport", + "latitude_deg": "37.73820114135742", + "longitude_deg": "-78.96219635009766", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Lovingston", + "scheduled_service": "no", + "gps_code": "8VA6", + "local_code": "8VA6" + }, + { + "id": "15233", + "ident": "8VA7", + "type": "heliport", + "name": "Carilion Stonewall Jackson Hospital Heliport", + "latitude_deg": "37.779356", + "longitude_deg": "-79.441172", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "8VA7", + "local_code": "8VA7" + }, + { + "id": "15234", + "ident": "8VA8", + "type": "heliport", + "name": "Mary Immaculate Hospital Heliport", + "latitude_deg": "37.1431999206543", + "longitude_deg": "-76.51219940185547", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Newport News", + "scheduled_service": "no", + "gps_code": "8VA8", + "local_code": "8VA8" + }, + { + "id": "15235", + "ident": "8VA9", + "type": "heliport", + "name": "St Mary's Hospital Heliport", + "latitude_deg": "36.94369888305664", + "longitude_deg": "-82.62539672851562", + "elevation_ft": "2243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Norton", + "scheduled_service": "no", + "gps_code": "8VA9", + "local_code": "8VA9" + }, + { + "id": "326853", + "ident": "8VG4", + "type": "small_airport", + "name": "Buffalo Ridge Airport", + "latitude_deg": "37.605522", + "longitude_deg": "-79.016903", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Amherst", + "scheduled_service": "no", + "gps_code": "8VG4", + "local_code": "8VG4" + }, + { + "id": "15236", + "ident": "8W3", + "type": "small_airport", + "name": "Mansfield Airport", + "latitude_deg": "47.809244", + "longitude_deg": "-119.637191", + "elevation_ft": "2272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Mansfield", + "scheduled_service": "no", + "gps_code": "K8W3", + "local_code": "8W3" + }, + { + "id": "15238", + "ident": "8W9", + "type": "small_airport", + "name": "R & K Skyranch Airport", + "latitude_deg": "46.832698822021484", + "longitude_deg": "-123.09100341796875", + "elevation_ft": "149", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Rochester", + "scheduled_service": "no", + "gps_code": "8W9", + "local_code": "8W9" + }, + { + "id": "15239", + "ident": "8WA0", + "type": "small_airport", + "name": "Flying B Airport", + "latitude_deg": "46.877601623535156", + "longitude_deg": "-122.60099792480469", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Rainier", + "scheduled_service": "no", + "gps_code": "8WA0", + "local_code": "8WA0" + }, + { + "id": "15240", + "ident": "8WA1", + "type": "heliport", + "name": "Lone Star Pad 1 Heliport", + "latitude_deg": "47.05985", + "longitude_deg": "-122.293689", + "elevation_ft": "298", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Graham", + "scheduled_service": "no", + "gps_code": "8WA1", + "local_code": "8WA1", + "keywords": "Fitz Pad 2" + }, + { + "id": "15241", + "ident": "8WA2", + "type": "heliport", + "name": "Boeing Renton Ramp Site Nr 2 Heliport", + "latitude_deg": "47.49589920043945", + "longitude_deg": "-122.20099639892578", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Renton", + "scheduled_service": "no", + "gps_code": "8WA2", + "local_code": "8WA2" + }, + { + "id": "15242", + "ident": "8WA3", + "type": "heliport", + "name": "Valley Medical Center Heliport", + "latitude_deg": "47.44150161743164", + "longitude_deg": "-122.21399688720703", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Renton", + "scheduled_service": "no", + "gps_code": "8WA3", + "local_code": "8WA3" + }, + { + "id": "351348", + "ident": "8WA4", + "type": "heliport", + "name": "Providence St Peters Hospital Helipad", + "latitude_deg": "47.052073", + "longitude_deg": "-122.847313", + "elevation_ft": "252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Olympia", + "scheduled_service": "no", + "gps_code": "8WA4", + "local_code": "8WA4" + }, + { + "id": "15243", + "ident": "8WA5", + "type": "small_airport", + "name": "Tree Heart Ranch Airport", + "latitude_deg": "47.135609", + "longitude_deg": "-118.778822", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ritzville", + "scheduled_service": "no", + "gps_code": "8WA5", + "local_code": "8WA5" + }, + { + "id": "15244", + "ident": "8WA6", + "type": "small_airport", + "name": "Christensen Field", + "latitude_deg": "46.92070007324219", + "longitude_deg": "-119.58999633789062", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Royal City", + "scheduled_service": "no", + "gps_code": "8WA6", + "local_code": "8WA6" + }, + { + "id": "15245", + "ident": "8WA7", + "type": "small_airport", + "name": "Gossard Field", + "latitude_deg": "47.11520004272461", + "longitude_deg": "-117.5739974975586", + "elevation_ft": "1973", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "St John", + "scheduled_service": "no", + "gps_code": "8WA7", + "local_code": "8WA7" + }, + { + "id": "15246", + "ident": "8WA8", + "type": "heliport", + "name": "Snoqualmie Valley Hospital Emergency Room Heliport", + "latitude_deg": "47.51470184326172", + "longitude_deg": "-121.8280029296875", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "King County", + "scheduled_service": "no", + "gps_code": "8WA8", + "local_code": "8WA8" + }, + { + "id": "15247", + "ident": "8WA9", + "type": "heliport", + "name": "Broadcast House Helistop", + "latitude_deg": "47.617721", + "longitude_deg": "-122.350493", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Seattle", + "scheduled_service": "no", + "gps_code": "8WA9", + "local_code": "8WA9" + }, + { + "id": "15248", + "ident": "8WI0", + "type": "small_airport", + "name": "Wood Airport", + "latitude_deg": "43.743900299072266", + "longitude_deg": "-89.81430053710938", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wisconsin Dells", + "scheduled_service": "no", + "gps_code": "8WI0", + "local_code": "8WI0" + }, + { + "id": "15249", + "ident": "8WI1", + "type": "small_airport", + "name": "Dillenburg's Airport", + "latitude_deg": "44.75360107421875", + "longitude_deg": "-88.72820281982422", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Shawano", + "scheduled_service": "no", + "gps_code": "8WI1", + "local_code": "8WI1" + }, + { + "id": "15250", + "ident": "8WI2", + "type": "small_airport", + "name": "Runway Leasing Inc Nr 1 Airport", + "latitude_deg": "44.224700927734375", + "longitude_deg": "-89.53099822998047", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Plainfield", + "scheduled_service": "no", + "gps_code": "8WI2", + "local_code": "8WI2" + }, + { + "id": "15251", + "ident": "8WI3", + "type": "small_airport", + "name": "Rwnway Leasing Inc Nr 2 Airport", + "latitude_deg": "44.420799255371094", + "longitude_deg": "-89.5553970336914", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Plover", + "scheduled_service": "no", + "gps_code": "8WI3", + "local_code": "8WI3" + }, + { + "id": "15252", + "ident": "8WI4", + "type": "heliport", + "name": "St Mary's Hospital Ozaukee Heliport", + "latitude_deg": "43.396400451660156", + "longitude_deg": "-87.87650299072266", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Port Washington", + "scheduled_service": "no", + "gps_code": "8WI4", + "local_code": "8WI4" + }, + { + "id": "15253", + "ident": "8WI5", + "type": "small_airport", + "name": "Wolf River Landing Strip", + "latitude_deg": "44.515496", + "longitude_deg": "-88.54164", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Black Creek", + "scheduled_service": "no", + "gps_code": "8WI5", + "local_code": "8WI5" + }, + { + "id": "15254", + "ident": "8WI6", + "type": "small_airport", + "name": "Funk Aerodrome", + "latitude_deg": "44.610752", + "longitude_deg": "-87.653567", + "elevation_ft": "831", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Luxemburg", + "scheduled_service": "no", + "gps_code": "8WI6", + "local_code": "8WI6" + }, + { + "id": "15255", + "ident": "8WI7", + "type": "closed", + "name": "Dunbar Airport", + "latitude_deg": "45.651102", + "longitude_deg": "-88.182098", + "elevation_ft": "1196", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Dunbar", + "scheduled_service": "no", + "keywords": "8WI7" + }, + { + "id": "15256", + "ident": "8WI8", + "type": "small_airport", + "name": "Stupek Farms Airport", + "latitude_deg": "42.97669982910156", + "longitude_deg": "-90.64820098876953", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Fennimore", + "scheduled_service": "no", + "gps_code": "8WI8", + "local_code": "8WI8" + }, + { + "id": "15257", + "ident": "8WI9", + "type": "heliport", + "name": "River Falls Area Hospital Heliport", + "latitude_deg": "44.865299224853516", + "longitude_deg": "-92.60279846191406", + "elevation_ft": "947", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "River Falls", + "scheduled_service": "no", + "gps_code": "8WI9", + "local_code": "8WI9" + }, + { + "id": "45895", + "ident": "8WN4", + "type": "heliport", + "name": "Johnson Heliport", + "latitude_deg": "47.972222", + "longitude_deg": "-122.696667", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Port Ludlow", + "scheduled_service": "no", + "gps_code": "8WN4", + "local_code": "8WN4" + }, + { + "id": "15258", + "ident": "8WN8", + "type": "small_airport", + "name": "Mave's Lakeview Road Airport", + "latitude_deg": "45.23509979248047", + "longitude_deg": "-87.06749725341797", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Ellison Bay", + "scheduled_service": "no", + "gps_code": "8WN8", + "local_code": "8WN8" + }, + { + "id": "46303", + "ident": "8WT0", + "type": "heliport", + "name": "Eastern State Hospital EMS Heliport", + "latitude_deg": "47.573333", + "longitude_deg": "-117.704167", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Medical Lake", + "scheduled_service": "no", + "gps_code": "8WT0", + "local_code": "8WT0" + }, + { + "id": "343454", + "ident": "8WY6", + "type": "small_airport", + "name": "Lazy T Ranch Airport", + "latitude_deg": "43.925417", + "longitude_deg": "-107.294583", + "elevation_ft": "4857", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Ten Sleep", + "scheduled_service": "no", + "gps_code": "8WY6", + "local_code": "8WY6" + }, + { + "id": "15259", + "ident": "8XS0", + "type": "closed", + "name": "Tivydale Ranch Airport", + "latitude_deg": "30.2544", + "longitude_deg": "-99.099701", + "elevation_ft": "1910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fredericksburg", + "scheduled_service": "no", + "keywords": "8XS0" + }, + { + "id": "15260", + "ident": "8XS1", + "type": "closed", + "name": "Harold Freeman Farm Airport", + "latitude_deg": "29.8827", + "longitude_deg": "-95.811897", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Katy", + "scheduled_service": "no", + "keywords": "8XS1" + }, + { + "id": "15261", + "ident": "8XS2", + "type": "closed", + "name": "Rachal Airport", + "latitude_deg": "27.929701", + "longitude_deg": "-99.851196", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laredo", + "scheduled_service": "no", + "keywords": "8XS2" + }, + { + "id": "15262", + "ident": "8XS3", + "type": "closed", + "name": "Pegasus Place Airstrip", + "latitude_deg": "30.5669", + "longitude_deg": "-97.829498", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Leander", + "scheduled_service": "no", + "keywords": "8XS3" + }, + { + "id": "15263", + "ident": "8XS4", + "type": "heliport", + "name": "Patco Heliport", + "latitude_deg": "29.91904", + "longitude_deg": "-93.88634", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port Arthur", + "scheduled_service": "no", + "gps_code": "8XS4", + "local_code": "8XS4" + }, + { + "id": "15264", + "ident": "8XS5", + "type": "heliport", + "name": "San Luis Resort Heliport", + "latitude_deg": "29.271559", + "longitude_deg": "-94.818656", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Galveston", + "scheduled_service": "no", + "gps_code": "8XS5", + "local_code": "8XS5" + }, + { + "id": "15265", + "ident": "8XS6", + "type": "small_airport", + "name": "Mc Manus Field", + "latitude_deg": "33.4522018433", + "longitude_deg": "-96.8328018188", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tioga", + "scheduled_service": "no", + "gps_code": "8XS6", + "local_code": "8XS6" + }, + { + "id": "15266", + "ident": "8XS7", + "type": "heliport", + "name": "H B Zachry Heliport", + "latitude_deg": "29.35110092163086", + "longitude_deg": "-98.52359771728516", + "elevation_ft": "638", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "8XS7", + "local_code": "8XS7" + }, + { + "id": "15267", + "ident": "8XS8", + "type": "small_airport", + "name": "Reese Airpark", + "latitude_deg": "33.590301513672", + "longitude_deg": "-102.03700256348", + "elevation_ft": "3338", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lubbock", + "scheduled_service": "no", + "gps_code": "8XS8", + "iata_code": "REE", + "local_code": "8XS8", + "home_link": "http://reesetechnologycenter.com/index.php/facilities/airfield-pad-site-development", + "wikipedia_link": "https://en.wikipedia.org/wiki/Reese_Air_Force_Base" + }, + { + "id": "15268", + "ident": "8XS9", + "type": "small_airport", + "name": "Rust Field", + "latitude_deg": "29.957731", + "longitude_deg": "-98.790569", + "elevation_ft": "1331", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waring", + "scheduled_service": "no", + "gps_code": "8XS9", + "local_code": "8XS9" + }, + { + "id": "15269", + "ident": "8Y4", + "type": "seaplane_base", + "name": "Surfside Seaplane Base", + "latitude_deg": "45.150001525878906", + "longitude_deg": "-93.11689758300781", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Lino Lakes", + "scheduled_service": "no", + "gps_code": "8Y4", + "local_code": "8Y4" + }, + { + "id": "15270", + "ident": "8Y5", + "type": "small_airport", + "name": "Clarissa Municipal Airport", + "latitude_deg": "46.112998962402344", + "longitude_deg": "-94.90670013427734", + "elevation_ft": "1308", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Clarissa", + "scheduled_service": "no", + "gps_code": "8Y5", + "local_code": "8Y5" + }, + { + "id": "15271", + "ident": "90AK", + "type": "heliport", + "name": "Northstar Heliport", + "latitude_deg": "70.49210357666016", + "longitude_deg": "-148.70399475097656", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Prudhoe Bay/Deadhorse", + "scheduled_service": "no", + "gps_code": "90AK", + "local_code": "90AK" + }, + { + "id": "345783", + "ident": "90AL", + "type": "heliport", + "name": "South Baldwin Coastal FED Heliport", + "latitude_deg": "30.292525", + "longitude_deg": "-87.682489", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Gulf Shores", + "scheduled_service": "no", + "gps_code": "90AL", + "local_code": "90AL" + }, + { + "id": "15272", + "ident": "90AR", + "type": "closed", + "name": "Reedville Airport", + "latitude_deg": "33.925098", + "longitude_deg": "-91.5112", + "elevation_ft": "162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Dumas", + "scheduled_service": "no", + "keywords": "90AR" + }, + { + "id": "15273", + "ident": "90CA", + "type": "small_airport", + "name": "Fowler's Airport", + "latitude_deg": "38.003501892089844", + "longitude_deg": "-121.11900329589844", + "elevation_ft": "77", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Linden", + "scheduled_service": "no", + "gps_code": "90CA", + "local_code": "90CA" + }, + { + "id": "15274", + "ident": "90CL", + "type": "small_airport", + "name": "Diamond M Ranch Airport", + "latitude_deg": "39.571225", + "longitude_deg": "-122.607513", + "elevation_ft": "1296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Elk Creek", + "scheduled_service": "no", + "gps_code": "90CL", + "local_code": "90CL" + }, + { + "id": "15275", + "ident": "90CO", + "type": "closed", + "name": "Tri-County Heliport", + "latitude_deg": "40.010799", + "longitude_deg": "-105.052002", + "elevation_ft": "5050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Erie", + "scheduled_service": "no", + "keywords": "90CO" + }, + { + "id": "15276", + "ident": "90FD", + "type": "closed", + "name": "Blue Head Ranch Airport", + "latitude_deg": "27.1625", + "longitude_deg": "-81.542901", + "elevation_ft": "77", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Placid", + "scheduled_service": "no", + "keywords": "90FD" + }, + { + "id": "15277", + "ident": "90FL", + "type": "small_airport", + "name": "Paxton Airport", + "latitude_deg": "27.3612003326416", + "longitude_deg": "-80.76090240478516", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Okeechobee", + "scheduled_service": "no", + "gps_code": "90FL", + "local_code": "90FL" + }, + { + "id": "15278", + "ident": "90GA", + "type": "heliport", + "name": "Georgia Public Safety Training Center Heliport", + "latitude_deg": "33.06010055541992", + "longitude_deg": "-83.96379852294922", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Forsyth", + "scheduled_service": "no", + "gps_code": "90GA", + "local_code": "90GA" + }, + { + "id": "15279", + "ident": "90IA", + "type": "small_airport", + "name": "Missouri Valley Airport", + "latitude_deg": "41.54029846191406", + "longitude_deg": "-95.88780212402344", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Missouri Valley", + "scheduled_service": "no", + "gps_code": "90IA", + "local_code": "90IA" + }, + { + "id": "45392", + "ident": "90ID", + "type": "heliport", + "name": "St Luke'S Meridian Medical Center Heliport", + "latitude_deg": "43.598111", + "longitude_deg": "-116.351389", + "elevation_ft": "2680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Meridian", + "scheduled_service": "no", + "gps_code": "90ID", + "local_code": "90ID" + }, + { + "id": "15280", + "ident": "90IL", + "type": "small_airport", + "name": "Johnson Airport", + "latitude_deg": "41.19810104370117", + "longitude_deg": "-87.55889892578125", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Momence", + "scheduled_service": "no", + "gps_code": "90IL", + "local_code": "90IL" + }, + { + "id": "15281", + "ident": "90IN", + "type": "small_airport", + "name": "Mc Daniel's Field", + "latitude_deg": "39.40890121459999", + "longitude_deg": "-86.44419860839999", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Martinsville", + "scheduled_service": "no", + "gps_code": "90IN", + "local_code": "90IN" + }, + { + "id": "15282", + "ident": "90KS", + "type": "small_airport", + "name": "Sunset Strip Airpark", + "latitude_deg": "38.982238", + "longitude_deg": "-95.593667", + "elevation_ft": "1075", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Topeka", + "scheduled_service": "no", + "gps_code": "90KS", + "local_code": "90KS" + }, + { + "id": "15283", + "ident": "90KY", + "type": "small_airport", + "name": "Williams Airport", + "latitude_deg": "37.58259963989258", + "longitude_deg": "-85.7332992553711", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Hodgenville", + "scheduled_service": "no", + "gps_code": "90KY", + "local_code": "90KY" + }, + { + "id": "15284", + "ident": "90LA", + "type": "small_airport", + "name": "Sharp Field", + "latitude_deg": "32.61389923095703", + "longitude_deg": "-93.32360076904297", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Minden", + "scheduled_service": "no", + "gps_code": "90LA", + "local_code": "90LA" + }, + { + "id": "355670", + "ident": "90MD", + "type": "heliport", + "name": "Medstar Franklin Helipad", + "latitude_deg": "39.351602", + "longitude_deg": "-76.478888", + "elevation_ft": "248", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Baltimore", + "scheduled_service": "no", + "gps_code": "90MD", + "local_code": "90MD" + }, + { + "id": "45454", + "ident": "90ME", + "type": "small_airport", + "name": "Zinck Airport", + "latitude_deg": "44.523056", + "longitude_deg": "-70.545556", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Rumford", + "scheduled_service": "no", + "gps_code": "90ME", + "local_code": "90ME" + }, + { + "id": "15285", + "ident": "90MN", + "type": "closed", + "name": "Schmidt Private Airport", + "latitude_deg": "44.5033", + "longitude_deg": "-95.453903", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Vesta", + "scheduled_service": "no", + "keywords": "90MN" + }, + { + "id": "15286", + "ident": "90MO", + "type": "heliport", + "name": "Golden Valley Memorial Hospital Heliport", + "latitude_deg": "38.389456", + "longitude_deg": "-93.766847", + "elevation_ft": "797", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "90MO", + "local_code": "90MO" + }, + { + "id": "45506", + "ident": "90MT", + "type": "heliport", + "name": "Aero Heliport", + "latitude_deg": "46.955611", + "longitude_deg": "-114.127083", + "elevation_ft": "3300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Missoula", + "scheduled_service": "no", + "gps_code": "90MT", + "local_code": "90MT" + }, + { + "id": "15287", + "ident": "90NC", + "type": "heliport", + "name": "Pardee Memorial Hospital Heliport", + "latitude_deg": "35.31999969482422", + "longitude_deg": "-82.46690368652344", + "elevation_ft": "2219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hendersonville", + "scheduled_service": "no", + "gps_code": "90NC", + "local_code": "90NC" + }, + { + "id": "322315", + "ident": "90NH", + "type": "heliport", + "name": "Daisy's Landing Heliport", + "latitude_deg": "43.637244", + "longitude_deg": "-71.153133", + "elevation_ft": "601", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Wolfeboro", + "scheduled_service": "no", + "gps_code": "90NH", + "local_code": "90NH" + }, + { + "id": "15288", + "ident": "90NJ", + "type": "heliport", + "name": "Bridgewater Crossing Heliport", + "latitude_deg": "40.58212", + "longitude_deg": "-74.610911", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bridgewater Township", + "scheduled_service": "no", + "gps_code": "90NJ", + "local_code": "90NJ" + }, + { + "id": "324427", + "ident": "90NR", + "type": "heliport", + "name": "Caledonia Tactical Landing Zones Heliport", + "latitude_deg": "36.311308", + "longitude_deg": "-77.483032", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Boones Crossroads", + "scheduled_service": "no", + "gps_code": "90NR", + "local_code": "90NR" + }, + { + "id": "350107", + "ident": "90NV", + "type": "heliport", + "name": "KPVM Television Heliport", + "latitude_deg": "36.206451", + "longitude_deg": "-115.96006", + "elevation_ft": "2695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Pahrump", + "scheduled_service": "no", + "gps_code": "90NV", + "local_code": "90NV" + }, + { + "id": "46305", + "ident": "90NY", + "type": "small_airport", + "name": "Hopewell Airpark", + "latitude_deg": "42.919508", + "longitude_deg": "-77.242778", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Canandaigua", + "scheduled_service": "no", + "gps_code": "90NY", + "local_code": "90NY" + }, + { + "id": "15289", + "ident": "90OH", + "type": "heliport", + "name": "Woodsfield Heliport", + "latitude_deg": "39.76539993286133", + "longitude_deg": "-81.13510131835938", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Woodsfield", + "scheduled_service": "no", + "gps_code": "90OH", + "local_code": "90OH" + }, + { + "id": "15290", + "ident": "90OI", + "type": "small_airport", + "name": "Joe Cimprich Airport", + "latitude_deg": "39.60419845581055", + "longitude_deg": "-84.63500213623047", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Camden", + "scheduled_service": "no", + "gps_code": "90OI", + "local_code": "90OI" + }, + { + "id": "15291", + "ident": "90OK", + "type": "closed", + "name": "Stewart Farms Airport", + "latitude_deg": "36.500599", + "longitude_deg": "-98.501999", + "elevation_ft": "1460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Aline", + "scheduled_service": "no", + "keywords": "90OK" + }, + { + "id": "15292", + "ident": "90OR", + "type": "heliport", + "name": "Lake District Hospital Heliport", + "latitude_deg": "42.1811152999", + "longitude_deg": "-120.351123512", + "elevation_ft": "4750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Lakeview", + "scheduled_service": "no", + "gps_code": "90OR", + "local_code": "90OR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_District_Hospital_Heliport" + }, + { + "id": "15293", + "ident": "90PA", + "type": "small_airport", + "name": "Adams Airport", + "latitude_deg": "41.8805", + "longitude_deg": "-78.114295", + "elevation_ft": "1780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Shinglehouse", + "scheduled_service": "no", + "gps_code": "90PA", + "local_code": "90PA" + }, + { + "id": "15294", + "ident": "90PN", + "type": "closed", + "name": "Baney's Airport", + "latitude_deg": "40.0173", + "longitude_deg": "-76.819702", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Dover", + "scheduled_service": "no", + "keywords": "90PN" + }, + { + "id": "15295", + "ident": "90TA", + "type": "heliport", + "name": "Faulkner Point Heliport", + "latitude_deg": "32.866798400878906", + "longitude_deg": "-96.54049682617188", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garland", + "scheduled_service": "no", + "gps_code": "90TA", + "local_code": "90TA" + }, + { + "id": "15296", + "ident": "90TE", + "type": "small_airport", + "name": "The Homestead Airport", + "latitude_deg": "32.195701599121094", + "longitude_deg": "-96.4385986328125", + "elevation_ft": "398", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corsicana", + "scheduled_service": "no", + "gps_code": "90TE", + "local_code": "90TE" + }, + { + "id": "346233", + "ident": "90TN", + "type": "heliport", + "name": "Methodist Medical Center of Oak Ridge Hospital Heliport", + "latitude_deg": "36.024967", + "longitude_deg": "-84.245648", + "elevation_ft": "938", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Oak Ridge", + "scheduled_service": "no", + "gps_code": "90TN", + "local_code": "90TN" + }, + { + "id": "15297", + "ident": "90TS", + "type": "closed", + "name": "Jordan Ranch Airport", + "latitude_deg": "30.7792", + "longitude_deg": "-95.797203", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bedias", + "scheduled_service": "no", + "keywords": "90TS" + }, + { + "id": "430438", + "ident": "90TT", + "type": "small_airport", + "name": "WT Airpark", + "latitude_deg": "29.682675", + "longitude_deg": "-97.252677", + "elevation_ft": "369", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waelder", + "scheduled_service": "no", + "gps_code": "90TT", + "local_code": "90TT" + }, + { + "id": "15298", + "ident": "90TX", + "type": "small_airport", + "name": "Callaghan Ranch Airport", + "latitude_deg": "27.8794002532959", + "longitude_deg": "-99.39669799804688", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Callaghan", + "scheduled_service": "no", + "gps_code": "90TX", + "local_code": "90TX" + }, + { + "id": "15299", + "ident": "90VA", + "type": "small_airport", + "name": "Hen & Bacon Airport", + "latitude_deg": "38.218101501464844", + "longitude_deg": "-78.21189880371094", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Orange", + "scheduled_service": "no", + "gps_code": "90VA", + "local_code": "90VA" + }, + { + "id": "15300", + "ident": "90WA", + "type": "small_airport", + "name": "Waldron Airstrip", + "latitude_deg": "48.7118", + "longitude_deg": "-123.017998", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Eastsound", + "scheduled_service": "no", + "gps_code": "90WA", + "iata_code": "WDN", + "local_code": "90WA", + "keywords": "Waldronaire" + }, + { + "id": "15301", + "ident": "90WI", + "type": "small_airport", + "name": "Heritage Acres Airport", + "latitude_deg": "45.57500076293945", + "longitude_deg": "-88.7083969116211", + "elevation_ft": "1608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Laona", + "scheduled_service": "no", + "gps_code": "90WI", + "local_code": "90WI" + }, + { + "id": "15302", + "ident": "90XS", + "type": "heliport", + "name": "Houston Oil & Minerals Port Bolivar Heliport", + "latitude_deg": "29.38330078125", + "longitude_deg": "-94.77349853515625", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port Bolivar", + "scheduled_service": "no", + "gps_code": "90XS", + "local_code": "90XS" + }, + { + "id": "45255", + "ident": "91AK", + "type": "seaplane_base", + "name": "Kucera Seaplane Base", + "latitude_deg": "61.576389", + "longitude_deg": "-149.943333", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "91AK", + "local_code": "91AK" + }, + { + "id": "323162", + "ident": "91AL", + "type": "heliport", + "name": "Shelby County Sheriff's Office Heliport", + "latitude_deg": "33.186619", + "longitude_deg": "-86.626801", + "elevation_ft": "593", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Columbiana", + "scheduled_service": "no", + "gps_code": "91AL", + "local_code": "91AL" + }, + { + "id": "15303", + "ident": "91C", + "type": "small_airport", + "name": "Sauk-Prairie Airport", + "latitude_deg": "43.297901", + "longitude_deg": "-89.755798", + "elevation_ft": "832", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Prairie Du Sac", + "scheduled_service": "no", + "gps_code": "K91C", + "local_code": "91C" + }, + { + "id": "15304", + "ident": "91CA", + "type": "heliport", + "name": "Devers Substation Heliport", + "latitude_deg": "33.939936", + "longitude_deg": "-116.574172", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Desert Hot Springs", + "scheduled_service": "no", + "gps_code": "91CA", + "local_code": "91CA" + }, + { + "id": "15305", + "ident": "91CL", + "type": "closed", + "name": "Sacatar Meadows Airport", + "latitude_deg": "35.989899", + "longitude_deg": "-118.080002", + "elevation_ft": "6427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Inyokern", + "scheduled_service": "no", + "keywords": "91CL" + }, + { + "id": "15306", + "ident": "91CO", + "type": "heliport", + "name": "Summit Medical Center Heliport", + "latitude_deg": "39.58140182495117", + "longitude_deg": "-106.09200286865234", + "elevation_ft": "9042", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Frisco", + "scheduled_service": "no", + "gps_code": "91CO", + "local_code": "91CO" + }, + { + "id": "338924", + "ident": "91FA", + "type": "heliport", + "name": "Williams Road Helistop", + "latitude_deg": "26.417734", + "longitude_deg": "-81.824487", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Estero", + "scheduled_service": "no", + "gps_code": "91FA", + "local_code": "91FA" + }, + { + "id": "15307", + "ident": "91FD", + "type": "heliport", + "name": "Freedom Wpec Inc Heliport", + "latitude_deg": "26.761499404907227", + "longitude_deg": "-80.07060241699219", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Mangonia Park", + "scheduled_service": "no", + "gps_code": "91FD", + "local_code": "91FD" + }, + { + "id": "15308", + "ident": "91FL", + "type": "seaplane_base", + "name": "Lake Conway North Seaplane Base", + "latitude_deg": "28.47920036315918", + "longitude_deg": "-81.36759948730469", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "91FL", + "local_code": "91FL" + }, + { + "id": "15309", + "ident": "91GA", + "type": "small_airport", + "name": "Flying Frog Field Airport", + "latitude_deg": "33.273602", + "longitude_deg": "-84.793297", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Moreland", + "scheduled_service": "no", + "gps_code": "91GA", + "local_code": "91GA", + "keywords": "Dbaks" + }, + { + "id": "15310", + "ident": "91I", + "type": "heliport", + "name": "Fort Benjamin Harrison Helipad Heliport", + "latitude_deg": "39.883399963378906", + "longitude_deg": "-86.0166015625", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Fort Benjamin Harrison", + "scheduled_service": "no", + "gps_code": "91I", + "local_code": "91I" + }, + { + "id": "45381", + "ident": "91ID", + "type": "heliport", + "name": "Double Dreidel Heliport", + "latitude_deg": "44.230833", + "longitude_deg": "-116.1775", + "elevation_ft": "4883", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Smith'S Ferry", + "scheduled_service": "no", + "gps_code": "91ID", + "local_code": "91ID" + }, + { + "id": "15311", + "ident": "91IN", + "type": "small_airport", + "name": "Strietelmeier Flying Field", + "latitude_deg": "39.208099365234375", + "longitude_deg": "-85.97470092773438", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "91IN", + "local_code": "91IN" + }, + { + "id": "15312", + "ident": "91IS", + "type": "small_airport", + "name": "Stanton Airport", + "latitude_deg": "39.823699951171875", + "longitude_deg": "-89.50399780273438", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Riverton", + "scheduled_service": "no", + "gps_code": "91IS", + "local_code": "91IS" + }, + { + "id": "45420", + "ident": "91KS", + "type": "small_airport", + "name": "St. Joseph'S Landing", + "latitude_deg": "39.243803", + "longitude_deg": "-96.033039", + "elevation_ft": "1136", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "St. Mary'S", + "scheduled_service": "no", + "gps_code": "91KS", + "local_code": "91KS" + }, + { + "id": "15313", + "ident": "91KY", + "type": "heliport", + "name": "Big 'G' Heliport", + "latitude_deg": "38.210601806640625", + "longitude_deg": "-82.60600280761719", + "elevation_ft": "568", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Louisa", + "scheduled_service": "no", + "gps_code": "91KY", + "local_code": "91KY" + }, + { + "id": "15314", + "ident": "91LA", + "type": "small_airport", + "name": "Koch Airport", + "latitude_deg": "30.53459930419922", + "longitude_deg": "-92.36740112304688", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Eunice", + "scheduled_service": "no", + "gps_code": "91LA", + "local_code": "91LA" + }, + { + "id": "15315", + "ident": "91LL", + "type": "closed", + "name": "Downen Heliport", + "latitude_deg": "37.841702", + "longitude_deg": "-88.172501", + "elevation_ft": "375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Ridgway", + "scheduled_service": "no", + "keywords": "91LL" + }, + { + "id": "15316", + "ident": "91LS", + "type": "small_airport", + "name": "Duclos RLA Restricted Landing Area", + "latitude_deg": "38.208900451699996", + "longitude_deg": "-90.03720092770001", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Red Bud", + "scheduled_service": "no", + "gps_code": "91LS", + "local_code": "91LS" + }, + { + "id": "346582", + "ident": "91MD", + "type": "heliport", + "name": "Prince George Regional Medical Center Heliport", + "latitude_deg": "38.902285", + "longitude_deg": "-76.844607", + "elevation_ft": "379", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Largo", + "scheduled_service": "no", + "gps_code": "91MD", + "local_code": "91MD" + }, + { + "id": "15317", + "ident": "91MN", + "type": "heliport", + "name": "Sanford Canby Medical Center Heliport", + "latitude_deg": "44.70740127559999", + "longitude_deg": "-96.2789993286", + "elevation_ft": "1244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Canby", + "scheduled_service": "no", + "gps_code": "91MN", + "local_code": "91MN" + }, + { + "id": "15318", + "ident": "91MO", + "type": "heliport", + "name": "Boone Hospital Center Heliport", + "latitude_deg": "38.948902", + "longitude_deg": "-92.315343", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "91MO", + "local_code": "91MO" + }, + { + "id": "15319", + "ident": "91N", + "type": "small_airport", + "name": "Turtle Lake Municipal Airport", + "latitude_deg": "47.5093994140625", + "longitude_deg": "-100.91600036621094", + "elevation_ft": "1910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Turtle Lake", + "scheduled_service": "no", + "gps_code": "91N", + "local_code": "91N" + }, + { + "id": "15320", + "ident": "91NC", + "type": "heliport", + "name": "Alamance Regnl Medical Center Heliport", + "latitude_deg": "36.06230163574219", + "longitude_deg": "-79.50469970703125", + "elevation_ft": "688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "91NC", + "local_code": "91NC" + }, + { + "id": "15321", + "ident": "91NJ", + "type": "heliport", + "name": "Newport Helistop", + "latitude_deg": "40.7244987487793", + "longitude_deg": "-74.02960205078125", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Jersey City", + "scheduled_service": "no", + "gps_code": "91NJ", + "local_code": "91NJ" + }, + { + "id": "15322", + "ident": "91NY", + "type": "small_airport", + "name": "Manitou Field", + "latitude_deg": "43.19559860229492", + "longitude_deg": "-77.74810028076172", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Spencerport", + "scheduled_service": "no", + "gps_code": "91NY", + "local_code": "91NY" + }, + { + "id": "15323", + "ident": "91OH", + "type": "small_airport", + "name": "Stine Field", + "latitude_deg": "40.7333984375", + "longitude_deg": "-81.89289855957031", + "elevation_ft": "1172", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wooster", + "scheduled_service": "no", + "gps_code": "91OH", + "local_code": "91OH" + }, + { + "id": "15324", + "ident": "91OI", + "type": "closed", + "name": "Cross Airport", + "latitude_deg": "40.777301", + "longitude_deg": "-81.458702", + "elevation_ft": "1125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Canton", + "scheduled_service": "no", + "keywords": "91OI" + }, + { + "id": "15325", + "ident": "91OK", + "type": "small_airport", + "name": "The Flying Cowboy Airport", + "latitude_deg": "34.641998", + "longitude_deg": "-99.371201", + "elevation_ft": "1365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Altus", + "scheduled_service": "no", + "gps_code": "91OK", + "local_code": "91OK", + "keywords": "Stewart Airport" + }, + { + "id": "15326", + "ident": "91OR", + "type": "closed", + "name": "Abba's Airport", + "latitude_deg": "45.1026", + "longitude_deg": "-123.418999", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sheridan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abba%27s_Airport", + "keywords": "91OR" + }, + { + "id": "347924", + "ident": "91PA", + "type": "heliport", + "name": "Clarion Hospital Heliport", + "latitude_deg": "41.19257", + "longitude_deg": "-79.398413", + "elevation_ft": "1489", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Clarion", + "scheduled_service": "no", + "gps_code": "91PA", + "local_code": "91PA" + }, + { + "id": "15327", + "ident": "91PN", + "type": "heliport", + "name": "Hospital of Pottsville Heliport", + "latitude_deg": "40.69039917", + "longitude_deg": "-76.19219971", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pottsville", + "scheduled_service": "no", + "gps_code": "91PN", + "local_code": "91PN" + }, + { + "id": "15328", + "ident": "91TA", + "type": "small_airport", + "name": "Rhines Roost Airport", + "latitude_deg": "32.44599914550781", + "longitude_deg": "-95.91889953613281", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Canton", + "scheduled_service": "no", + "gps_code": "91TA", + "local_code": "91TA" + }, + { + "id": "15329", + "ident": "91TE", + "type": "small_airport", + "name": "Britts Crosswind Airport", + "latitude_deg": "30.724700927734375", + "longitude_deg": "-97.86199951171875", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Liberty Hill", + "scheduled_service": "no", + "gps_code": "91TE", + "local_code": "91TE" + }, + { + "id": "15330", + "ident": "91TS", + "type": "small_airport", + "name": "Songbird Ranch Airport", + "latitude_deg": "29.368600845336914", + "longitude_deg": "-95.33989715576172", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rosharon", + "scheduled_service": "no", + "gps_code": "91TS", + "local_code": "91TS" + }, + { + "id": "15331", + "ident": "91TX", + "type": "small_airport", + "name": "Paisano Ranch Airport", + "latitude_deg": "28.396900177001953", + "longitude_deg": "-98.36280059814453", + "elevation_ft": "235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Calliham", + "scheduled_service": "no", + "gps_code": "91TX", + "local_code": "91TX" + }, + { + "id": "15332", + "ident": "91VA", + "type": "small_airport", + "name": "Miller Airport", + "latitude_deg": "37.327598571777344", + "longitude_deg": "-79.40480041503906", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Bedford", + "scheduled_service": "no", + "gps_code": "91VA", + "local_code": "91VA" + }, + { + "id": "15333", + "ident": "91WA", + "type": "small_airport", + "name": "Christensen Bros Wahluke Strip", + "latitude_deg": "46.70819854736328", + "longitude_deg": "-119.8010025024414", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Mattawa", + "scheduled_service": "no", + "gps_code": "91WA", + "local_code": "91WA" + }, + { + "id": "15334", + "ident": "91WI", + "type": "small_airport", + "name": "Gottschalk Field", + "latitude_deg": "44.29389953613281", + "longitude_deg": "-90.03209686279297", + "elevation_ft": "976", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Nekoosa", + "scheduled_service": "no", + "gps_code": "91WI", + "local_code": "91WI" + }, + { + "id": "345436", + "ident": "91XA", + "type": "small_airport", + "name": "Crosscut Field", + "latitude_deg": "32.623816", + "longitude_deg": "-95.113937", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Big Sandy", + "scheduled_service": "no", + "gps_code": "91XA", + "local_code": "91XA" + }, + { + "id": "15335", + "ident": "91XS", + "type": "closed", + "name": "HHI-Port O'Connor Heliport", + "latitude_deg": "28.442499", + "longitude_deg": "-96.4253", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port O'Connor", + "scheduled_service": "no", + "keywords": "91XS" + }, + { + "id": "15336", + "ident": "92A", + "type": "small_airport", + "name": "Chilhowee Gliderport", + "latitude_deg": "35.22650146484375", + "longitude_deg": "-84.58489990234375", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Benton", + "scheduled_service": "no", + "gps_code": "92A", + "local_code": "92A" + }, + { + "id": "15337", + "ident": "92AK", + "type": "heliport", + "name": "Mat-Su Regional Medical Center Heliport", + "latitude_deg": "61.56290054321289", + "longitude_deg": "-149.25900268554688", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "92AK", + "local_code": "92AK" + }, + { + "id": "15338", + "ident": "92B", + "type": "seaplane_base", + "name": "Long Lake Seaplane Base", + "latitude_deg": "47.19309997558594", + "longitude_deg": "-68.23139953613281", + "elevation_ft": "581", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Sinclair", + "scheduled_service": "no", + "gps_code": "92B", + "local_code": "92B" + }, + { + "id": "15339", + "ident": "92C", + "type": "small_airport", + "name": "Carter Airport", + "latitude_deg": "44.64120101928711", + "longitude_deg": "-88.21520233154297", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Pulaski", + "scheduled_service": "no", + "gps_code": "92C", + "local_code": "92C" + }, + { + "id": "15340", + "ident": "92CA", + "type": "small_airport", + "name": "Westlake Farms Airport", + "latitude_deg": "36.12080001831055", + "longitude_deg": "-119.88800048828125", + "elevation_ft": "192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stratford", + "scheduled_service": "no", + "gps_code": "92CA", + "local_code": "92CA" + }, + { + "id": "15341", + "ident": "92CL", + "type": "small_airport", + "name": "Moronis Airport", + "latitude_deg": "39.10319900512695", + "longitude_deg": "-121.8499984741211", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Meridian", + "scheduled_service": "no", + "gps_code": "92CL", + "local_code": "92CL" + }, + { + "id": "346972", + "ident": "92CN", + "type": "heliport", + "name": "Riverside County Sheriff, Palm Desert Station Heliport", + "latitude_deg": "33.78555", + "longitude_deg": "-116.37905", + "elevation_ft": "314", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palm Desert", + "scheduled_service": "no", + "gps_code": "92CN", + "local_code": "92CN" + }, + { + "id": "15342", + "ident": "92CO", + "type": "small_airport", + "name": "Lake Creek Ranch Airport", + "latitude_deg": "38.29169845581055", + "longitude_deg": "-105.61100006103516", + "elevation_ft": "7200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Hillside", + "scheduled_service": "no", + "gps_code": "92CO", + "local_code": "92CO" + }, + { + "id": "15343", + "ident": "92D", + "type": "closed", + "name": "Lagrange Airport", + "latitude_deg": "41.202801", + "longitude_deg": "-82.115196", + "elevation_ft": "843", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lagrange", + "scheduled_service": "no", + "keywords": "92D" + }, + { + "id": "332754", + "ident": "92FA", + "type": "heliport", + "name": "Amcdlz Heliport", + "latitude_deg": "29.901396", + "longitude_deg": "-81.413555", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St. Augustine", + "scheduled_service": "no", + "gps_code": "92FA", + "local_code": "92FA" + }, + { + "id": "15344", + "ident": "92FD", + "type": "heliport", + "name": "Nierenberg Estate Heliport", + "latitude_deg": "28.218299865722656", + "longitude_deg": "-80.68419647216797", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Melbourne", + "scheduled_service": "no", + "gps_code": "92FD", + "local_code": "92FD" + }, + { + "id": "15345", + "ident": "92FL", + "type": "closed", + "name": "Carlstrom Field", + "latitude_deg": "27.1206", + "longitude_deg": "-81.8498", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Arcadia", + "scheduled_service": "no", + "keywords": "92FL" + }, + { + "id": "15346", + "ident": "92G", + "type": "small_airport", + "name": "Midlakes Airport", + "latitude_deg": "42.812599182128906", + "longitude_deg": "-77.20390319824219", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Gorham", + "scheduled_service": "no", + "gps_code": "92G", + "local_code": "92G" + }, + { + "id": "15347", + "ident": "92GA", + "type": "heliport", + "name": "Stone Mountain Park Skylift Heliport", + "latitude_deg": "33.8130989074707", + "longitude_deg": "-84.14080047607422", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Stone Mountain", + "scheduled_service": "no", + "gps_code": "92GA", + "local_code": "92GA" + }, + { + "id": "15348", + "ident": "92GE", + "type": "small_airport", + "name": "Midville International Airport", + "latitude_deg": "32.845298767089844", + "longitude_deg": "-82.27079772949219", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Midville", + "scheduled_service": "no", + "gps_code": "92GE", + "local_code": "92GE" + }, + { + "id": "15349", + "ident": "92IL", + "type": "small_airport", + "name": "Hunter Raffety Elevators Inc Airport", + "latitude_deg": "37.04037", + "longitude_deg": "-89.32399", + "elevation_ft": "323", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Cairo", + "scheduled_service": "no", + "gps_code": "92IL", + "local_code": "92IL" + }, + { + "id": "15350", + "ident": "92IN", + "type": "small_airport", + "name": "H R Weisser Airport", + "latitude_deg": "41.42340087890625", + "longitude_deg": "-85.84750366210938", + "elevation_ft": "832", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "92IN", + "local_code": "92IN" + }, + { + "id": "15351", + "ident": "92IS", + "type": "small_airport", + "name": "Taft Airport", + "latitude_deg": "39.742000579833984", + "longitude_deg": "-89.47840118408203", + "elevation_ft": "586", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rochester", + "scheduled_service": "no", + "gps_code": "92IS", + "local_code": "92IS" + }, + { + "id": "345800", + "ident": "92KS", + "type": "heliport", + "name": "Cloud County Hospital Heliport", + "latitude_deg": "39.554583", + "longitude_deg": "-97.6605", + "elevation_ft": "1442", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Concordia", + "scheduled_service": "no", + "gps_code": "92KS", + "local_code": "92KS" + }, + { + "id": "15352", + "ident": "92KY", + "type": "closed", + "name": "Timmons Field", + "latitude_deg": "38.284199", + "longitude_deg": "-85.472603", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Pewee Valley", + "scheduled_service": "no", + "keywords": "92KY" + }, + { + "id": "15353", + "ident": "92LA", + "type": "heliport", + "name": "Terrebonne General Medical Center Heliport", + "latitude_deg": "29.59678", + "longitude_deg": "-90.71384", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Houma", + "scheduled_service": "no", + "gps_code": "92LA", + "local_code": "92LA" + }, + { + "id": "15354", + "ident": "92MA", + "type": "heliport", + "name": "Ames Heliport", + "latitude_deg": "42.63150024", + "longitude_deg": "-70.86509705", + "elevation_ft": "64", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "92MA", + "local_code": "92MA" + }, + { + "id": "344096", + "ident": "92ME", + "type": "small_airport", + "name": "Buzzport Airport", + "latitude_deg": "45.22039", + "longitude_deg": "-68.63428", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Passadumkeag", + "scheduled_service": "no", + "gps_code": "92ME", + "local_code": "92ME" + }, + { + "id": "45479", + "ident": "92MI", + "type": "small_airport", + "name": "Zischke Airport", + "latitude_deg": "42.861667", + "longitude_deg": "-84.619167", + "elevation_ft": "863", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Dewitt", + "scheduled_service": "no", + "gps_code": "92MI", + "local_code": "92MI" + }, + { + "id": "15355", + "ident": "92MN", + "type": "small_airport", + "name": "Brutlag Farms Airport", + "latitude_deg": "46.014400482177734", + "longitude_deg": "-96.10169982910156", + "elevation_ft": "1127", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Wendell", + "scheduled_service": "no", + "gps_code": "92MN", + "local_code": "92MN" + }, + { + "id": "15356", + "ident": "92MO", + "type": "heliport", + "name": "Fox Run Heliport", + "latitude_deg": "38.44390106201172", + "longitude_deg": "-90.60710144042969", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Eureka", + "scheduled_service": "no", + "gps_code": "92MO", + "local_code": "92MO" + }, + { + "id": "332755", + "ident": "92MU", + "type": "small_airport", + "name": "Parks Field", + "latitude_deg": "39.409119", + "longitude_deg": "-94.606228", + "elevation_ft": "847", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Smithville", + "scheduled_service": "no", + "gps_code": "92MU", + "local_code": "92MU" + }, + { + "id": "15358", + "ident": "92NC", + "type": "heliport", + "name": "Grace Hospital Heliport", + "latitude_deg": "35.72740173339844", + "longitude_deg": "-81.65370178222656", + "elevation_ft": "1178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Morganton", + "scheduled_service": "no", + "gps_code": "92NC", + "local_code": "92NC" + }, + { + "id": "15359", + "ident": "92NH", + "type": "heliport", + "name": "Morrison Heliport", + "latitude_deg": "43.67851", + "longitude_deg": "-71.51719", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Center Harbor", + "scheduled_service": "no", + "gps_code": "92NH", + "local_code": "92NH" + }, + { + "id": "15360", + "ident": "92NJ", + "type": "small_airport", + "name": "Flying B Farm Landing Strip", + "latitude_deg": "40.468399", + "longitude_deg": "-75.002403", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Kingwood Township", + "scheduled_service": "no", + "gps_code": "92NJ", + "local_code": "92NJ", + "keywords": "Fly-N-D" + }, + { + "id": "347878", + "ident": "92NR", + "type": "heliport", + "name": "Firsthealth Richmond Memorial Hospital Heliport", + "latitude_deg": "34.929263", + "longitude_deg": "-79.748967", + "elevation_ft": "107", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Rockingham", + "scheduled_service": "no", + "gps_code": "92NR", + "local_code": "92NR" + }, + { + "id": "15361", + "ident": "92NY", + "type": "small_airport", + "name": "Bloecher Farm Airport", + "latitude_deg": "42.75199890136719", + "longitude_deg": "-78.4614028930664", + "elevation_ft": "1430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Strykersville", + "scheduled_service": "no", + "gps_code": "92NY", + "local_code": "92NY" + }, + { + "id": "15362", + "ident": "92OI", + "type": "heliport", + "name": "Good Samaritan Hospital Heliport", + "latitude_deg": "39.139198303222656", + "longitude_deg": "-84.52079772949219", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cincinnati", + "scheduled_service": "no", + "gps_code": "92OI", + "local_code": "92OI" + }, + { + "id": "15363", + "ident": "92OK", + "type": "closed", + "name": "Flying W Ranch Airport", + "latitude_deg": "34.385142", + "longitude_deg": "-96.289729", + "elevation_ft": "618", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Atoka", + "scheduled_service": "no", + "keywords": "92OK" + }, + { + "id": "15364", + "ident": "92OR", + "type": "heliport", + "name": "Falcon Point Heliport", + "latitude_deg": "45.336498260499994", + "longitude_deg": "-122.665000916", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "West Linn", + "scheduled_service": "no", + "gps_code": "92OR", + "local_code": "92OR" + }, + { + "id": "15365", + "ident": "92PA", + "type": "closed", + "name": "Hawkins Field", + "latitude_deg": "40.704201", + "longitude_deg": "-79.952003", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Cooperstown", + "scheduled_service": "no", + "keywords": "92PA" + }, + { + "id": "347971", + "ident": "92PN", + "type": "small_airport", + "name": "Bartsch Airport", + "latitude_deg": "41.067761", + "longitude_deg": "-80.294727", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "New Wilmington", + "scheduled_service": "no", + "gps_code": "92PN", + "local_code": "92PN" + }, + { + "id": "15366", + "ident": "92R", + "type": "closed", + "name": "Vac Heliport", + "latitude_deg": "31.082399", + "longitude_deg": "-97.350304", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Temple", + "scheduled_service": "no", + "keywords": "92R" + }, + { + "id": "329592", + "ident": "92SC", + "type": "small_airport", + "name": "Mack's Patch-Derrick Field", + "latitude_deg": "33.52135", + "longitude_deg": "-81.578361", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Aiken", + "scheduled_service": "no", + "gps_code": "92SC", + "local_code": "92SC" + }, + { + "id": "15367", + "ident": "92TA", + "type": "small_airport", + "name": "Drennan Farm Airport", + "latitude_deg": "26.121200561523438", + "longitude_deg": "-97.4280014038086", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Los Fresnos", + "scheduled_service": "no", + "gps_code": "92TA", + "local_code": "92TA" + }, + { + "id": "15368", + "ident": "92TE", + "type": "small_airport", + "name": "Chaney San Francisco Ranch Airport", + "latitude_deg": "29.967377", + "longitude_deg": "-102.942183", + "elevation_ft": "3250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no", + "gps_code": "92TE", + "local_code": "92TE" + }, + { + "id": "15369", + "ident": "92TS", + "type": "heliport", + "name": "AdventHealth Central Texas Heliport", + "latitude_deg": "31.113265", + "longitude_deg": "-97.802541", + "elevation_ft": "991", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Killeen", + "scheduled_service": "no", + "gps_code": "92TS", + "local_code": "92TS", + "keywords": "Metroplex Hospital" + }, + { + "id": "15370", + "ident": "92TX", + "type": "closed", + "name": "TGP 409 Heliport", + "latitude_deg": "26.41659", + "longitude_deg": "-98.135629", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Edinburg", + "scheduled_service": "no", + "gps_code": "92TX", + "local_code": "92TX" + }, + { + "id": "15371", + "ident": "92VA", + "type": "small_airport", + "name": "New Quarter Farm Airport", + "latitude_deg": "37.34469985961914", + "longitude_deg": "-76.56439971923828", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Gloucester", + "scheduled_service": "no", + "gps_code": "92VA", + "local_code": "92VA" + }, + { + "id": "15373", + "ident": "92WA", + "type": "heliport", + "name": "Conner Heliport", + "latitude_deg": "47.56010055541992", + "longitude_deg": "-122.08000183105469", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Issaquah", + "scheduled_service": "no", + "gps_code": "92WA", + "local_code": "92WA" + }, + { + "id": "15374", + "ident": "92WI", + "type": "small_airport", + "name": "Knight Aire Airport", + "latitude_deg": "45.29610061645508", + "longitude_deg": "-89.64109802246094", + "elevation_ft": "1605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Merrill", + "scheduled_service": "no", + "gps_code": "92WI", + "local_code": "92WI" + }, + { + "id": "15375", + "ident": "92XS", + "type": "small_airport", + "name": "T R Funk Inc Airport", + "latitude_deg": "26.479176", + "longitude_deg": "-97.686734", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Raymondville", + "scheduled_service": "no", + "gps_code": "92XS", + "local_code": "92XS" + }, + { + "id": "15376", + "ident": "93AK", + "type": "small_airport", + "name": "The Queens Airport", + "latitude_deg": "58.87200164794922", + "longitude_deg": "-158.4720001220703", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Queens", + "scheduled_service": "no", + "gps_code": "93AK", + "local_code": "93AK" + }, + { + "id": "15377", + "ident": "93AR", + "type": "closed", + "name": "Ohlendorf Airport", + "latitude_deg": "35.620899", + "longitude_deg": "-89.986198", + "elevation_ft": "232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Osceola", + "scheduled_service": "no", + "keywords": "93AR" + }, + { + "id": "334841", + "ident": "93AZ", + "type": "small_airport", + "name": "Inde Motorsports Ranch Airport", + "latitude_deg": "32.224683", + "longitude_deg": "-110.007391", + "elevation_ft": "4463", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Willcox", + "scheduled_service": "no", + "gps_code": "93AZ", + "local_code": "93AZ", + "home_link": "https://indemotorsports.com/the-ranch/private-air-charter/", + "keywords": "willcox, inde motorsports" + }, + { + "id": "15378", + "ident": "93B", + "type": "small_airport", + "name": "Stonington Municipal Airport", + "latitude_deg": "44.17319869995117", + "longitude_deg": "-68.6802978515625", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Stonington", + "scheduled_service": "no", + "gps_code": "93B", + "local_code": "93B", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stonington_Municipal_Airport" + }, + { + "id": "15379", + "ident": "93CA", + "type": "heliport", + "name": "Fountain Valley Regional Hospital Heliport", + "latitude_deg": "33.71500015258789", + "longitude_deg": "-117.93599700927734", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fountain Valley", + "scheduled_service": "no", + "gps_code": "93CA", + "local_code": "93CA" + }, + { + "id": "15380", + "ident": "93CL", + "type": "heliport", + "name": "Mc Carthy Ranch Heliport", + "latitude_deg": "36.8476982117", + "longitude_deg": "-119.824996948", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pinedale", + "scheduled_service": "no", + "gps_code": "93CL", + "local_code": "93CL" + }, + { + "id": "322009", + "ident": "93CN", + "type": "heliport", + "name": "UCSD Jacobs Medical Center Rooftop Heliport", + "latitude_deg": "32.877679", + "longitude_deg": "-117.226762", + "elevation_ft": "538", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "La Jolla, San Diego", + "scheduled_service": "no", + "gps_code": "93CN", + "local_code": "93CN" + }, + { + "id": "15381", + "ident": "93CO", + "type": "small_airport", + "name": "Antelope Airpark", + "latitude_deg": "39.025294", + "longitude_deg": "-105.609763", + "elevation_ft": "8700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Lake George", + "scheduled_service": "no", + "gps_code": "93CO", + "local_code": "93CO" + }, + { + "id": "15382", + "ident": "93FD", + "type": "small_airport", + "name": "Chumuckla 20-20 Airport", + "latitude_deg": "30.754600524902344", + "longitude_deg": "-87.17749786376953", + "elevation_ft": "205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "93FD", + "local_code": "93FD" + }, + { + "id": "15383", + "ident": "93FL", + "type": "closed", + "name": "Pine Lakes Farm Airport", + "latitude_deg": "28.9447", + "longitude_deg": "-81.408096", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Deland", + "scheduled_service": "no", + "keywords": "93FL" + }, + { + "id": "15384", + "ident": "93GA", + "type": "heliport", + "name": "Emanuel County Hospital Heliport", + "latitude_deg": "32.592899322509766", + "longitude_deg": "-82.34739685058594", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Swainsboro", + "scheduled_service": "no", + "gps_code": "93GA", + "local_code": "93GA" + }, + { + "id": "15385", + "ident": "93IA", + "type": "small_airport", + "name": "Lund Airport", + "latitude_deg": "42.26029968261719", + "longitude_deg": "-93.64969635009766", + "elevation_ft": "1063", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Jewell", + "scheduled_service": "no", + "gps_code": "93IA", + "local_code": "93IA" + }, + { + "id": "346220", + "ident": "93ID", + "type": "heliport", + "name": "Salmon River Helicopters Heliport", + "latitude_deg": "45.420105", + "longitude_deg": "-116.174728", + "elevation_ft": "1827", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Riggins", + "scheduled_service": "no", + "gps_code": "93ID", + "local_code": "93ID" + }, + { + "id": "15386", + "ident": "93IL", + "type": "closed", + "name": "Bauer Airport", + "latitude_deg": "42.068474", + "longitude_deg": "-88.987971", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lindenwood", + "scheduled_service": "no", + "keywords": "93IL" + }, + { + "id": "15387", + "ident": "93IN", + "type": "small_airport", + "name": "Foltz Farm Airport", + "latitude_deg": "39.5886", + "longitude_deg": "-85.736099", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Shelbyville", + "scheduled_service": "no", + "gps_code": "93IN", + "local_code": "93IN" + }, + { + "id": "15388", + "ident": "93IS", + "type": "heliport", + "name": "OSF Healthcare Sacred Heart Medical Center Heliport", + "latitude_deg": "40.138908", + "longitude_deg": "-87.645336", + "elevation_ft": "612", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "93IS", + "local_code": "93IS", + "keywords": "United Samaritans Medical Center, Presence United Samaritans Medical Center" + }, + { + "id": "345802", + "ident": "93KS", + "type": "small_airport", + "name": "Ronnebaum Airfield", + "latitude_deg": "39.78", + "longitude_deg": "-96.084722", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Seneca", + "scheduled_service": "no", + "gps_code": "93KS", + "local_code": "93KS" + }, + { + "id": "15389", + "ident": "93KY", + "type": "small_airport", + "name": "Baggett Farms Airport", + "latitude_deg": "37.47079849243164", + "longitude_deg": "-87.25330352783203", + "elevation_ft": "405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Sacramento", + "scheduled_service": "no", + "gps_code": "93KY", + "local_code": "93KY" + }, + { + "id": "15390", + "ident": "93LA", + "type": "heliport", + "name": "Ochsner Abrom Kaplan Memorial Hospital Heliport", + "latitude_deg": "30.008219", + "longitude_deg": "-92.297977", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kaplan", + "scheduled_service": "no", + "gps_code": "93LA", + "local_code": "93LA" + }, + { + "id": "15391", + "ident": "93LL", + "type": "small_airport", + "name": "Hemmingsen Airport", + "latitude_deg": "41.59450149536133", + "longitude_deg": "-88.60559844970703", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sandwich", + "scheduled_service": "no", + "gps_code": "93LL", + "local_code": "93LL" + }, + { + "id": "45463", + "ident": "93MD", + "type": "small_airport", + "name": "Knollwood Farm Airport", + "latitude_deg": "39.561833", + "longitude_deg": "-75.834833", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Elkton", + "scheduled_service": "no", + "gps_code": "93MD", + "local_code": "93MD" + }, + { + "id": "15392", + "ident": "93MN", + "type": "small_airport", + "name": "Hoppe Sky Ranch Airport", + "latitude_deg": "44.032100677490234", + "longitude_deg": "-93.94840240478516", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Mankato", + "scheduled_service": "no", + "gps_code": "93MN", + "local_code": "93MN" + }, + { + "id": "15393", + "ident": "93MO", + "type": "closed", + "name": "Kathy's Patch Airport", + "latitude_deg": "37.108898", + "longitude_deg": "-94.405502", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Prosperity", + "scheduled_service": "no", + "keywords": "93MO" + }, + { + "id": "15394", + "ident": "93MS", + "type": "small_airport", + "name": "Shelby Air Service Airport", + "latitude_deg": "33.9715995789", + "longitude_deg": "-90.76820373540001", + "elevation_ft": "154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Shelby", + "scheduled_service": "no", + "gps_code": "93MS", + "local_code": "93MS" + }, + { + "id": "45517", + "ident": "93MT", + "type": "small_airport", + "name": "Masonry Field", + "latitude_deg": "48.10104", + "longitude_deg": "-114.089316", + "elevation_ft": "3049", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Bigfork", + "scheduled_service": "no", + "gps_code": "93MT", + "local_code": "93MT" + }, + { + "id": "45676", + "ident": "93NC", + "type": "heliport", + "name": "Angel Medical Center Heliport", + "latitude_deg": "35.184547", + "longitude_deg": "-83.380036", + "elevation_ft": "2086", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "93NC", + "local_code": "93NC" + }, + { + "id": "15395", + "ident": "93NH", + "type": "heliport", + "name": "Sharkey Heliport", + "latitude_deg": "43.525001525878906", + "longitude_deg": "-72.3582992553711", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Plainfield", + "scheduled_service": "no", + "gps_code": "93NH", + "local_code": "93NH" + }, + { + "id": "15396", + "ident": "93NJ", + "type": "heliport", + "name": "Ingersoll-Rand Company Heliport", + "latitude_deg": "40.69649887084961", + "longitude_deg": "-75.1677017211914", + "elevation_ft": "369", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Phillipsburg", + "scheduled_service": "no", + "gps_code": "93NJ", + "local_code": "93NJ" + }, + { + "id": "346069", + "ident": "93NY", + "type": "heliport", + "name": "Taylor Field Heliport at Fort Hamilton", + "latitude_deg": "40.605355", + "longitude_deg": "-74.022285", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Brooklyn", + "scheduled_service": "no", + "gps_code": "93NY", + "local_code": "93NY" + }, + { + "id": "45731", + "ident": "93OG", + "type": "heliport", + "name": "Robeck Landing Heliport", + "latitude_deg": "44.3125", + "longitude_deg": "-121.006944", + "elevation_ft": "3060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Powell Butte", + "scheduled_service": "no", + "gps_code": "93OG", + "local_code": "93OG" + }, + { + "id": "15397", + "ident": "93OH", + "type": "closed", + "name": "Gay Airport", + "latitude_deg": "41.044498", + "longitude_deg": "-81.185898", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Atwater", + "scheduled_service": "no", + "keywords": "93OH" + }, + { + "id": "15398", + "ident": "93OI", + "type": "heliport", + "name": "Stouffer's Dublin Heliport", + "latitude_deg": "40.096500396728516", + "longitude_deg": "-83.13520050048828", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dublin", + "scheduled_service": "no", + "gps_code": "93OI", + "local_code": "93OI" + }, + { + "id": "15399", + "ident": "93OK", + "type": "small_airport", + "name": "Jantzen Airport", + "latitude_deg": "35.93450164794922", + "longitude_deg": "-95.59140014648438", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Coweta", + "scheduled_service": "no", + "gps_code": "93OK", + "local_code": "93OK" + }, + { + "id": "15400", + "ident": "93OR", + "type": "heliport", + "name": "St Elizabeth Hospital Heliport", + "latitude_deg": "44.7943000793457", + "longitude_deg": "-117.84600067138672", + "elevation_ft": "3410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Baker", + "scheduled_service": "no", + "gps_code": "93OR", + "local_code": "93OR" + }, + { + "id": "15401", + "ident": "93PA", + "type": "closed", + "name": "Maple Cave Park Airport", + "latitude_deg": "41.50321", + "longitude_deg": "-79.881816", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Cooperstown", + "scheduled_service": "no", + "keywords": "93PA" + }, + { + "id": "15402", + "ident": "93TA", + "type": "heliport", + "name": "Mac Kay Heliport", + "latitude_deg": "33.0601005554", + "longitude_deg": "-95.157699585", + "elevation_ft": "351", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "93TA", + "local_code": "93TA" + }, + { + "id": "15403", + "ident": "93TE", + "type": "small_airport", + "name": "Mayhew Ranch Number 1 Airport", + "latitude_deg": "29.809601", + "longitude_deg": "-102.907997", + "elevation_ft": "2783", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no", + "gps_code": "93TE", + "local_code": "93TE" + }, + { + "id": "348411", + "ident": "93TN", + "type": "small_airport", + "name": "Center Field", + "latitude_deg": "36.360809", + "longitude_deg": "-82.45044", + "elevation_ft": "1700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Gray", + "scheduled_service": "no", + "gps_code": "93TN", + "local_code": "93TN" + }, + { + "id": "15404", + "ident": "93TS", + "type": "closed", + "name": "Longbird Airport", + "latitude_deg": "29.748301", + "longitude_deg": "-96.1147", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sealy", + "scheduled_service": "no", + "keywords": "93TS" + }, + { + "id": "42789", + "ident": "93TX", + "type": "heliport", + "name": "John Peter Smith EMS Building Heliport", + "latitude_deg": "32.726978302", + "longitude_deg": "-97.3265914917", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "93TX", + "local_code": "93TX" + }, + { + "id": "15406", + "ident": "93VA", + "type": "small_airport", + "name": "Timberdoodle Airport", + "latitude_deg": "37.53630065917969", + "longitude_deg": "-79.02339935302734", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Amherst", + "scheduled_service": "no", + "gps_code": "93VA", + "local_code": "93VA" + }, + { + "id": "15407", + "ident": "93WA", + "type": "closed", + "name": "Harris Airport", + "latitude_deg": "47.447899", + "longitude_deg": "-117.806", + "elevation_ft": "2375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tyler", + "scheduled_service": "no", + "keywords": "93WA" + }, + { + "id": "15408", + "ident": "93WI", + "type": "closed", + "name": "Arrowhead Springs Airport", + "latitude_deg": "43.253601", + "longitude_deg": "-88.209503", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Richfield", + "scheduled_service": "no", + "keywords": "93WI" + }, + { + "id": "345008", + "ident": "93XA", + "type": "small_airport", + "name": "Scott Ranch Airport", + "latitude_deg": "33.509594", + "longitude_deg": "-98.120211", + "elevation_ft": "1069", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bellevue", + "scheduled_service": "no", + "gps_code": "93XA", + "local_code": "93XA" + }, + { + "id": "15409", + "ident": "93XS", + "type": "closed", + "name": "Joseph Ross Scherdin Airport", + "latitude_deg": "29.0811", + "longitude_deg": "-95.382697", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Richwood", + "scheduled_service": "no", + "keywords": "93XS" + }, + { + "id": "346383", + "ident": "94AR", + "type": "small_airport", + "name": "Galloway Farms Airport", + "latitude_deg": "35.156381", + "longitude_deg": "-91.331883", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Gregory", + "scheduled_service": "no", + "gps_code": "94AR", + "local_code": "94AR" + }, + { + "id": "15410", + "ident": "94C", + "type": "small_airport", + "name": "Gilbert Field", + "latitude_deg": "43.45000076293945", + "longitude_deg": "-89.2500991821289", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Rio", + "scheduled_service": "no", + "gps_code": "94C", + "local_code": "94C" + }, + { + "id": "15411", + "ident": "94CA", + "type": "heliport", + "name": "Kaiser Permanente Fontana Medical Center Heliport", + "latitude_deg": "34.072585", + "longitude_deg": "-117.432514", + "elevation_ft": "1214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fontana", + "scheduled_service": "no", + "gps_code": "94CA", + "local_code": "94CA", + "keywords": "fontana, kaiser permanente" + }, + { + "id": "15412", + "ident": "94CL", + "type": "heliport", + "name": "Loma Linda University Medical Center Heliport", + "latitude_deg": "34.050241", + "longitude_deg": "-117.264141", + "elevation_ft": "1223", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Loma Linda", + "scheduled_service": "no", + "gps_code": "94CL", + "local_code": "94CL" + }, + { + "id": "15413", + "ident": "94CO", + "type": "heliport", + "name": "Ponderosa Heliport", + "latitude_deg": "38.08470153808594", + "longitude_deg": "-107.70099639892578", + "elevation_ft": "7250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Ouray", + "scheduled_service": "no", + "gps_code": "94CO", + "local_code": "94CO" + }, + { + "id": "15414", + "ident": "94D", + "type": "seaplane_base", + "name": "Wells Seaplane Base", + "latitude_deg": "42.84980010986328", + "longitude_deg": "-73.90480041503906", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Schenectady", + "scheduled_service": "no", + "gps_code": "94D", + "local_code": "94D" + }, + { + "id": "15415", + "ident": "94FD", + "type": "heliport", + "name": "Santa Rosa Medical Center Heliport", + "latitude_deg": "30.633689", + "longitude_deg": "-87.066178", + "elevation_ft": "156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "94FD", + "local_code": "94FD" + }, + { + "id": "15416", + "ident": "94FL", + "type": "small_airport", + "name": "Pine Shadows Airpark", + "latitude_deg": "26.732799530029297", + "longitude_deg": "-81.89730072021484", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Myers", + "scheduled_service": "no", + "gps_code": "94FL", + "local_code": "94FL" + }, + { + "id": "15417", + "ident": "94GA", + "type": "small_airport", + "name": "Snow Hill Airstrip", + "latitude_deg": "32.262901306152344", + "longitude_deg": "-83.78710174560547", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Unadilla", + "scheduled_service": "no", + "gps_code": "94GA", + "local_code": "94GA" + }, + { + "id": "15418", + "ident": "94IL", + "type": "closed", + "name": "Lutz Airport", + "latitude_deg": "38.917301", + "longitude_deg": "-89.225601", + "elevation_ft": "526", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mulberry Grove", + "scheduled_service": "no", + "keywords": "94IL" + }, + { + "id": "15419", + "ident": "94IN", + "type": "closed", + "name": "White's Heliport", + "latitude_deg": "39.2806", + "longitude_deg": "-85.712502", + "elevation_ft": "771", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hartsville", + "scheduled_service": "no", + "keywords": "94IN" + }, + { + "id": "15420", + "ident": "94IS", + "type": "small_airport", + "name": "Adams Private Airport", + "latitude_deg": "37.901542", + "longitude_deg": "-89.140892", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Royalton", + "scheduled_service": "no", + "gps_code": "94IS", + "local_code": "94IS", + "keywords": "9H2" + }, + { + "id": "15421", + "ident": "94KS", + "type": "small_airport", + "name": "Smith Field", + "latitude_deg": "37.974998474121094", + "longitude_deg": "-98.9656982421875", + "elevation_ft": "2023", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Macksville", + "scheduled_service": "no", + "gps_code": "94KS", + "local_code": "94KS" + }, + { + "id": "15422", + "ident": "94KY", + "type": "small_airport", + "name": "Woosley Airport", + "latitude_deg": "37.5005989074707", + "longitude_deg": "-87.32939910888672", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Rumsey", + "scheduled_service": "no", + "gps_code": "94KY", + "local_code": "94KY" + }, + { + "id": "15423", + "ident": "94LA", + "type": "heliport", + "name": "Prevost Memorial Hospital Heliport", + "latitude_deg": "30.087808", + "longitude_deg": "-91.002397", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Donaldsonville", + "scheduled_service": "no", + "gps_code": "94LA", + "local_code": "94LA" + }, + { + "id": "337210", + "ident": "94MI", + "type": "small_airport", + "name": "Red Aero Field Ultralight Flightpark", + "latitude_deg": "42.38726", + "longitude_deg": "-85.736039", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Otsego", + "scheduled_service": "no", + "gps_code": "94MI", + "local_code": "94MI" + }, + { + "id": "15424", + "ident": "94MN", + "type": "small_airport", + "name": "Ag Spray Inc Airport", + "latitude_deg": "46.57659912109375", + "longitude_deg": "-96.51200103759766", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Barnesville", + "scheduled_service": "no", + "gps_code": "94MN", + "local_code": "94MN" + }, + { + "id": "15425", + "ident": "94MO", + "type": "small_airport", + "name": "Ray's Roost Airport", + "latitude_deg": "36.805848", + "longitude_deg": "-91.883114", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "West Plains", + "scheduled_service": "no", + "gps_code": "94MO", + "local_code": "94MO" + }, + { + "id": "15426", + "ident": "94NC", + "type": "small_airport", + "name": "Viking Airport", + "latitude_deg": "35.008988", + "longitude_deg": "-79.261766", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Raeford", + "scheduled_service": "no", + "gps_code": "94NC", + "local_code": "94NC" + }, + { + "id": "15427", + "ident": "94ND", + "type": "small_airport", + "name": "Michael Zurcher Farm Strip", + "latitude_deg": "48.66590118408203", + "longitude_deg": "-100.91799926757812", + "elevation_ft": "1470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Newburg", + "scheduled_service": "no", + "gps_code": "94ND", + "local_code": "94ND" + }, + { + "id": "310037", + "ident": "94NH", + "type": "small_airport", + "name": "Tucker Farm Airport", + "latitude_deg": "43.47645", + "longitude_deg": "-71.7474", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Andover", + "scheduled_service": "no", + "gps_code": "94NH", + "local_code": "94NH" + }, + { + "id": "15428", + "ident": "94NJ", + "type": "heliport", + "name": "Pio Costa Sand & Gravel Heliport", + "latitude_deg": "40.86399841308594", + "longitude_deg": "-74.91909790039062", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Hackettstown/Great Meadows", + "scheduled_service": "no", + "gps_code": "94NJ", + "local_code": "94NJ" + }, + { + "id": "15429", + "ident": "94NY", + "type": "small_airport", + "name": "St Bernard Field", + "latitude_deg": "42.82509994506836", + "longitude_deg": "-76.69129943847656", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Union Springs", + "scheduled_service": "no", + "gps_code": "94NY", + "local_code": "94NY" + }, + { + "id": "15430", + "ident": "94OH", + "type": "heliport", + "name": "St Rita's Medical Center Heliport", + "latitude_deg": "40.739498138427734", + "longitude_deg": "-84.12159729003906", + "elevation_ft": "862", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lima", + "scheduled_service": "no", + "gps_code": "94OH", + "local_code": "94OH" + }, + { + "id": "15431", + "ident": "94OI", + "type": "heliport", + "name": "Blades Landing Heliport", + "latitude_deg": "41.242804", + "longitude_deg": "-81.414902", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Hudson", + "scheduled_service": "no", + "gps_code": "94OI", + "local_code": "94OI" + }, + { + "id": "15432", + "ident": "94OK", + "type": "heliport", + "name": "Saint Francis Hospital Muskogee Heliport", + "latitude_deg": "35.75183", + "longitude_deg": "-95.406365", + "elevation_ft": "604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Muskogee", + "scheduled_service": "no", + "gps_code": "94OK", + "local_code": "94OK", + "keywords": "Muskogee Regional Medical Center Heliport" + }, + { + "id": "15433", + "ident": "94OR", + "type": "small_airport", + "name": "Umpqua RV Park Fly In Airport", + "latitude_deg": "43.530701", + "longitude_deg": "-123.549004", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Elkton", + "scheduled_service": "no", + "gps_code": "94OR", + "local_code": "94OR", + "keywords": "Umpqua RV Park Fly In Airport, Farm Yard Field, 94OR" + }, + { + "id": "15434", + "ident": "94PA", + "type": "heliport", + "name": "Mountain Springs Heliport", + "latitude_deg": "41.77009963989258", + "longitude_deg": "-78.01080322265625", + "elevation_ft": "1810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Coudersport", + "scheduled_service": "no", + "gps_code": "94PA", + "local_code": "94PA" + }, + { + "id": "15435", + "ident": "94PN", + "type": "heliport", + "name": "Wellspan York Hospital Heliport", + "latitude_deg": "39.944781", + "longitude_deg": "-76.718903", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "York", + "scheduled_service": "no", + "gps_code": "94PN", + "local_code": "94PN" + }, + { + "id": "15436", + "ident": "94TA", + "type": "small_airport", + "name": "Reece Field", + "latitude_deg": "31.305700302124023", + "longitude_deg": "-100.45899963378906", + "elevation_ft": "1960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Angelo", + "scheduled_service": "no", + "gps_code": "94TA", + "local_code": "94TA" + }, + { + "id": "45803", + "ident": "94TE", + "type": "heliport", + "name": "Barbaro North Heliport", + "latitude_deg": "33.098056", + "longitude_deg": "-97.146944", + "elevation_ft": "632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Argyle", + "scheduled_service": "no", + "gps_code": "94TE", + "local_code": "94TE" + }, + { + "id": "15437", + "ident": "94TS", + "type": "heliport", + "name": "Mc David Honda Heliport", + "latitude_deg": "32.8375015259", + "longitude_deg": "-96.9708023071", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Irving", + "scheduled_service": "no", + "gps_code": "94TS", + "local_code": "94TS" + }, + { + "id": "15438", + "ident": "94TX", + "type": "small_airport", + "name": "River Bend Ranch Airport", + "latitude_deg": "31.437700271606445", + "longitude_deg": "-99.31559753417969", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brady", + "scheduled_service": "no", + "gps_code": "94TX", + "local_code": "94TX" + }, + { + "id": "15439", + "ident": "94VA", + "type": "small_airport", + "name": "Highview Farms Airport", + "latitude_deg": "37.263099670410156", + "longitude_deg": "-78.84940338134766", + "elevation_ft": "765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Appomattox", + "scheduled_service": "no", + "gps_code": "94VA", + "local_code": "94VA" + }, + { + "id": "15440", + "ident": "94WA", + "type": "small_airport", + "name": "Wishkah River Ranch Airport", + "latitude_deg": "47.084282", + "longitude_deg": "-123.773067", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Aberdeen", + "scheduled_service": "no", + "gps_code": "94WA", + "local_code": "94WA" + }, + { + "id": "15441", + "ident": "94WI", + "type": "closed", + "name": "Koller Heliport", + "latitude_deg": "42.987715", + "longitude_deg": "-88.416759", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wales", + "scheduled_service": "no", + "keywords": "94WI" + }, + { + "id": "430443", + "ident": "94XA", + "type": "heliport", + "name": "GHMC Micro Hospital Heliport", + "latitude_deg": "30.109925", + "longitude_deg": "-93.815514", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Orange", + "scheduled_service": "no", + "gps_code": "94XA", + "local_code": "94XA" + }, + { + "id": "15442", + "ident": "94XS", + "type": "closed", + "name": "Heritage Ranch Airport", + "latitude_deg": "29.6544", + "longitude_deg": "-95.829399", + "elevation_ft": "103", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Richmond", + "scheduled_service": "no", + "keywords": "94XS" + }, + { + "id": "15443", + "ident": "94Z", + "type": "small_airport", + "name": "Nome City Field", + "latitude_deg": "64.51309967041016", + "longitude_deg": "-165.39599609375", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nome", + "scheduled_service": "no", + "gps_code": "94Z", + "local_code": "94Z" + }, + { + "id": "15444", + "ident": "95AK", + "type": "closed", + "name": "Medivac - Wasilla Heliport", + "latitude_deg": "61.585602", + "longitude_deg": "-149.425004", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "keywords": "95AK" + }, + { + "id": "15445", + "ident": "95CA", + "type": "small_airport", + "name": "Bonel Airport", + "latitude_deg": "35.669256", + "longitude_deg": "-120.547936", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Paso Robles", + "scheduled_service": "no", + "gps_code": "95CA", + "local_code": "95CA" + }, + { + "id": "15446", + "ident": "95CL", + "type": "heliport", + "name": "Verdugo Hills Hospital Heliport", + "latitude_deg": "34.204136", + "longitude_deg": "-118.217289", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no", + "gps_code": "95CL", + "local_code": "95CL" + }, + { + "id": "317212", + "ident": "95CN", + "type": "heliport", + "name": "Desert Valley Hospital Helipad", + "latitude_deg": "34.471609", + "longitude_deg": "-117.296843", + "elevation_ft": "3045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Victorville", + "scheduled_service": "no", + "gps_code": "95CN", + "local_code": "95CN" + }, + { + "id": "15447", + "ident": "95CO", + "type": "small_airport", + "name": "Mann Ranch Airport", + "latitude_deg": "37.868499755859375", + "longitude_deg": "-104.83599853515625", + "elevation_ft": "6000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Rye", + "scheduled_service": "no", + "gps_code": "95CO", + "local_code": "95CO" + }, + { + "id": "345804", + "ident": "95FA", + "type": "small_airport", + "name": "Spirit of Suwannee Airport", + "latitude_deg": "30.401111", + "longitude_deg": "-82.956389", + "elevation_ft": "93", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Suwannee", + "scheduled_service": "no", + "gps_code": "95FA", + "local_code": "95FA" + }, + { + "id": "15448", + "ident": "95FD", + "type": "small_airport", + "name": "South Point Airport", + "latitude_deg": "26.768299102783203", + "longitude_deg": "-81.53890228271484", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "La Belle", + "scheduled_service": "no", + "gps_code": "95FD", + "local_code": "95FD" + }, + { + "id": "15449", + "ident": "95FL", + "type": "heliport", + "name": "Pinellas County Mosquito Control Heliport", + "latitude_deg": "27.875600814819336", + "longitude_deg": "-82.68930053710938", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pinellas Park", + "scheduled_service": "no", + "gps_code": "95FL", + "local_code": "95FL" + }, + { + "id": "15450", + "ident": "95GA", + "type": "small_airport", + "name": "Mcintosh Field", + "latitude_deg": "33.45589828491211", + "longitude_deg": "-84.94300079345703", + "elevation_ft": "771", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Whitesburg", + "scheduled_service": "no", + "gps_code": "95GA", + "local_code": "95GA" + }, + { + "id": "322512", + "ident": "95ID", + "type": "small_airport", + "name": "Deer Creek Airport", + "latitude_deg": "46.000458", + "longitude_deg": "-116.691186", + "elevation_ft": "1169", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cottonwood", + "scheduled_service": "no", + "gps_code": "95ID", + "local_code": "95ID" + }, + { + "id": "15451", + "ident": "95IL", + "type": "small_airport", + "name": "Henderson Airport", + "latitude_deg": "37.48619842529297", + "longitude_deg": "-88.4000015258789", + "elevation_ft": "485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rosiclare", + "scheduled_service": "no", + "gps_code": "95IL", + "local_code": "95IL" + }, + { + "id": "15452", + "ident": "95IN", + "type": "small_airport", + "name": "Stewart Field", + "latitude_deg": "38.887501", + "longitude_deg": "-85.826401", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Seymour", + "scheduled_service": "no", + "gps_code": "95IN", + "local_code": "95IN" + }, + { + "id": "15453", + "ident": "95IS", + "type": "small_airport", + "name": "Jan Knipe Airport", + "latitude_deg": "40.36941", + "longitude_deg": "-91.38863", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Warsaw", + "scheduled_service": "no", + "gps_code": "95IS", + "local_code": "95IS" + }, + { + "id": "329732", + "ident": "95KS", + "type": "small_airport", + "name": "Fuller Airfield", + "latitude_deg": "39.026161", + "longitude_deg": "-96.015042", + "elevation_ft": "1058", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Maple Hill", + "scheduled_service": "no", + "gps_code": "95KS", + "local_code": "95KS" + }, + { + "id": "15454", + "ident": "95KY", + "type": "small_airport", + "name": "Crawford Ultralightport", + "latitude_deg": "37.4202995300293", + "longitude_deg": "-84.36920166015625", + "elevation_ft": "1227", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Brodhead", + "scheduled_service": "no", + "gps_code": "95KY", + "local_code": "95KY" + }, + { + "id": "15455", + "ident": "95LA", + "type": "heliport", + "name": "Louisiana State Police Troop E Heliport", + "latitude_deg": "31.31667", + "longitude_deg": "-92.468365", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Alexandria", + "scheduled_service": "no", + "gps_code": "95LA", + "local_code": "95LA" + }, + { + "id": "15456", + "ident": "95LL", + "type": "closed", + "name": "Warren Airport", + "latitude_deg": "41.6478", + "longitude_deg": "-88.694397", + "elevation_ft": "694", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Somonauk", + "scheduled_service": "no", + "keywords": "95LL" + }, + { + "id": "15457", + "ident": "95MI", + "type": "small_airport", + "name": "Evad Enterprises LLC Airport", + "latitude_deg": "44.087026", + "longitude_deg": "-85.7307415", + "elevation_ft": "981", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Luther", + "scheduled_service": "no", + "gps_code": "95MI", + "local_code": "95MI", + "keywords": "Guy Vander Jagt Airfield" + }, + { + "id": "15458", + "ident": "95MN", + "type": "closed", + "name": "Whaletail Lake Seaplane Base", + "latitude_deg": "44.9389", + "longitude_deg": "-93.722702", + "elevation_ft": "948", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Minnetrista", + "scheduled_service": "no", + "keywords": "95MN" + }, + { + "id": "15459", + "ident": "95MO", + "type": "small_airport", + "name": "Schlemmer Airport", + "latitude_deg": "39.259498596191406", + "longitude_deg": "-91.65019989013672", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Laddonia", + "scheduled_service": "no", + "gps_code": "95MO", + "local_code": "95MO" + }, + { + "id": "329931", + "ident": "95NC", + "type": "heliport", + "name": "Onslow Memorial Hospital Heliport", + "latitude_deg": "34.764243", + "longitude_deg": "-77.385846", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "95NC", + "local_code": "95NC" + }, + { + "id": "15460", + "ident": "95NE", + "type": "small_airport", + "name": "W Meeks Ranch Airport", + "latitude_deg": "41.992801666259766", + "longitude_deg": "-99.45539855957031", + "elevation_ft": "2335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Taylor", + "scheduled_service": "no", + "gps_code": "95NE", + "local_code": "95NE" + }, + { + "id": "15461", + "ident": "95NJ", + "type": "heliport", + "name": "Middle Sedge Island Heliport", + "latitude_deg": "40.000099182128906", + "longitude_deg": "-74.0801010131836", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Toms River", + "scheduled_service": "no", + "gps_code": "95NJ", + "local_code": "95NJ" + }, + { + "id": "15462", + "ident": "95NY", + "type": "small_airport", + "name": "Cummings Airfield", + "latitude_deg": "42.7892", + "longitude_deg": "-78.476402", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Wales Center/Cowlesville/", + "scheduled_service": "no", + "gps_code": "95NY", + "local_code": "95NY", + "keywords": "Fisher Airport" + }, + { + "id": "15463", + "ident": "95OH", + "type": "small_airport", + "name": "Tong Farm Airport", + "latitude_deg": "40.97090148925781", + "longitude_deg": "-83.45829772949219", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Carey", + "scheduled_service": "no", + "gps_code": "95OH", + "local_code": "95OH" + }, + { + "id": "15464", + "ident": "95OI", + "type": "heliport", + "name": "C C A Heliport", + "latitude_deg": "39.202598571777344", + "longitude_deg": "-84.30740356445312", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Indian Hill", + "scheduled_service": "no", + "gps_code": "95OI", + "local_code": "95OI" + }, + { + "id": "15465", + "ident": "95OK", + "type": "small_airport", + "name": "Barcus Field", + "latitude_deg": "36.267601013183594", + "longitude_deg": "-95.63069915771484", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Claremore", + "scheduled_service": "no", + "gps_code": "95OK", + "local_code": "95OK" + }, + { + "id": "15466", + "ident": "95OR", + "type": "small_airport", + "name": "Flournoy Valley Airport", + "latitude_deg": "43.20759963989258", + "longitude_deg": "-123.53299713134766", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Roseburg", + "scheduled_service": "no", + "gps_code": "95OR", + "local_code": "95OR" + }, + { + "id": "15467", + "ident": "95PA", + "type": "closed", + "name": "Snyder Ranch Heliport", + "latitude_deg": "40.894798", + "longitude_deg": "-79.589996", + "elevation_ft": "1430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Cowansville", + "scheduled_service": "no", + "keywords": "95PA" + }, + { + "id": "15468", + "ident": "95PN", + "type": "heliport", + "name": "North Penn Hospital Heliport", + "latitude_deg": "40.250099182128906", + "longitude_deg": "-75.24960327148438", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lansdale", + "scheduled_service": "no", + "gps_code": "95PN", + "local_code": "95PN" + }, + { + "id": "15469", + "ident": "95TA", + "type": "small_airport", + "name": "Thunder Creek Airport", + "latitude_deg": "29.634899139404297", + "longitude_deg": "-99.4822998046875", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Utopia", + "scheduled_service": "no", + "gps_code": "95TA", + "local_code": "95TA" + }, + { + "id": "15470", + "ident": "95TE", + "type": "heliport", + "name": "Star Heliport", + "latitude_deg": "33.21780014038086", + "longitude_deg": "-96.9832992553711", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cross Roads", + "scheduled_service": "no", + "gps_code": "95TE", + "local_code": "95TE" + }, + { + "id": "322304", + "ident": "95TN", + "type": "small_airport", + "name": "Blue Ridge Field", + "latitude_deg": "36.526583", + "longitude_deg": "-87.172806", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Clarksville", + "scheduled_service": "no", + "gps_code": "95TN", + "local_code": "95TN" + }, + { + "id": "15471", + "ident": "95TS", + "type": "small_airport", + "name": "Rob Airport", + "latitude_deg": "33.23080062866211", + "longitude_deg": "-98.48970031738281", + "elevation_ft": "1310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Loving", + "scheduled_service": "no", + "gps_code": "95TS", + "local_code": "95TS" + }, + { + "id": "15472", + "ident": "95TX", + "type": "small_airport", + "name": "Chupadera Ranch Airport", + "latitude_deg": "28.1924991607666", + "longitude_deg": "-100.0719985961914", + "elevation_ft": "651", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Carrizo Springs", + "scheduled_service": "no", + "gps_code": "95TX", + "local_code": "95TX" + }, + { + "id": "15473", + "ident": "95VA", + "type": "small_airport", + "name": "Buck Hollar Airport", + "latitude_deg": "36.623199462890625", + "longitude_deg": "-79.35590362548828", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "95VA", + "local_code": "95VA" + }, + { + "id": "15474", + "ident": "95WA", + "type": "small_airport", + "name": "Black Diamond Airport", + "latitude_deg": "47.31570053100586", + "longitude_deg": "-122.01000213623047", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Black Diamond", + "scheduled_service": "no", + "gps_code": "95WA", + "local_code": "95WA" + }, + { + "id": "15475", + "ident": "95WI", + "type": "small_airport", + "name": "Wisersky Airport", + "latitude_deg": "42.936100006103516", + "longitude_deg": "-89.12969970703125", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Stoughton", + "scheduled_service": "no", + "gps_code": "95WI", + "local_code": "95WI" + }, + { + "id": "341063", + "ident": "95XA", + "type": "closed", + "name": "Hog Heaven Airport", + "latitude_deg": "30.15529", + "longitude_deg": "-98.095871", + "elevation_ft": "1165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dripping Springs", + "scheduled_service": "no", + "keywords": "95XA" + }, + { + "id": "15476", + "ident": "95XS", + "type": "closed", + "name": "Air Logistics Sabine Heliport", + "latitude_deg": "29.713849", + "longitude_deg": "-93.913329", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sabine Pass", + "scheduled_service": "no", + "gps_code": "95XS", + "local_code": "95XS", + "keywords": "95XS" + }, + { + "id": "15477", + "ident": "95Z", + "type": "small_airport", + "name": "Bradley Sky-Ranch Airport", + "latitude_deg": "64.758904", + "longitude_deg": "-147.392235", + "elevation_ft": "483", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "North Pole", + "scheduled_service": "no", + "gps_code": "K95Z", + "local_code": "95Z" + }, + { + "id": "15478", + "ident": "96AK", + "type": "seaplane_base", + "name": "Hackney Landing Seaplane Base", + "latitude_deg": "60.28779983520508", + "longitude_deg": "-151.3459930419922", + "elevation_ft": "208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Clam Gulch", + "scheduled_service": "no", + "gps_code": "96AK", + "local_code": "96AK" + }, + { + "id": "15479", + "ident": "96C", + "type": "small_airport", + "name": "Fox River Airport", + "latitude_deg": "42.75", + "longitude_deg": "-88.25090026855469", + "elevation_ft": "822", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Rochester", + "scheduled_service": "no", + "gps_code": "96C", + "local_code": "96C" + }, + { + "id": "15480", + "ident": "96CA", + "type": "heliport", + "name": "Warner Center Plaza I Helipad", + "latitude_deg": "34.178276", + "longitude_deg": "-118.60032", + "elevation_ft": "1133", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodland Hills", + "scheduled_service": "no", + "gps_code": "96CA", + "local_code": "96CA", + "keywords": "JWC" + }, + { + "id": "15481", + "ident": "96CL", + "type": "heliport", + "name": "Ranch Heliport", + "latitude_deg": "34.157704", + "longitude_deg": "-118.917802", + "elevation_ft": "1162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Newbury Park", + "scheduled_service": "no", + "gps_code": "96CL", + "local_code": "96CL", + "keywords": "TWI II Heliport" + }, + { + "id": "15482", + "ident": "96CO", + "type": "small_airport", + "name": "Logan Airport", + "latitude_deg": "39.85639953613281", + "longitude_deg": "-104.39600372314453", + "elevation_ft": "5300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Bennet", + "scheduled_service": "no", + "gps_code": "96CO", + "local_code": "96CO" + }, + { + "id": "15483", + "ident": "96FD", + "type": "small_airport", + "name": "Citrus Hedging Ranch Airport", + "latitude_deg": "27.33340072631836", + "longitude_deg": "-80.73619842529297", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Okeechobee", + "scheduled_service": "no", + "gps_code": "96FD", + "local_code": "96FD" + }, + { + "id": "15484", + "ident": "96FL", + "type": "small_airport", + "name": "Wings Field", + "latitude_deg": "29.24250030517578", + "longitude_deg": "-82.54540252685547", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Williston", + "scheduled_service": "no", + "gps_code": "96FL", + "local_code": "96FL" + }, + { + "id": "15485", + "ident": "96G", + "type": "small_airport", + "name": "Cowley Field", + "latitude_deg": "43.376399993896484", + "longitude_deg": "-82.8145980834961", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Sandusky", + "scheduled_service": "no", + "gps_code": "96G", + "local_code": "96G" + }, + { + "id": "15486", + "ident": "96GA", + "type": "small_airport", + "name": "3-M's Airport", + "latitude_deg": "33.18579864501953", + "longitude_deg": "-84.36810302734375", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Williamson", + "scheduled_service": "no", + "gps_code": "96GA", + "local_code": "96GA" + }, + { + "id": "15487", + "ident": "96ID", + "type": "small_airport", + "name": "Flying H Ranch Airport", + "latitude_deg": "48.235599517822266", + "longitude_deg": "-116.875", + "elevation_ft": "2230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Priest River", + "scheduled_service": "no", + "gps_code": "96ID", + "local_code": "96ID" + }, + { + "id": "15488", + "ident": "96IL", + "type": "small_airport", + "name": "Gerbick Airport", + "latitude_deg": "42.37571", + "longitude_deg": "-89.850848", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lena", + "scheduled_service": "no", + "gps_code": "96IL", + "local_code": "96IL", + "keywords": "Kramer Airport" + }, + { + "id": "15489", + "ident": "96IN", + "type": "closed", + "name": "Medical Center Heliport", + "latitude_deg": "39.779202", + "longitude_deg": "-86.185501", + "elevation_ft": "706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "keywords": "96IN" + }, + { + "id": "15490", + "ident": "96IS", + "type": "small_airport", + "name": "Hildreth Air Park", + "latitude_deg": "39.875", + "longitude_deg": "-87.84500122070312", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sidell", + "scheduled_service": "no", + "gps_code": "96IS", + "local_code": "96IS" + }, + { + "id": "345601", + "ident": "96KS", + "type": "small_airport", + "name": "Palmer Field", + "latitude_deg": "39.368598", + "longitude_deg": "-97.788116", + "elevation_ft": "1404", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Glasco", + "scheduled_service": "no", + "gps_code": "96KS", + "local_code": "96KS" + }, + { + "id": "15491", + "ident": "96KY", + "type": "small_airport", + "name": "Woosley Field Airport", + "latitude_deg": "37.552652", + "longitude_deg": "-87.272544", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Calhoun", + "scheduled_service": "no", + "gps_code": "96KY", + "local_code": "96KY", + "keywords": "KY96, A&L, A and L" + }, + { + "id": "15492", + "ident": "96LA", + "type": "heliport", + "name": "La State Police Troop A Heliport", + "latitude_deg": "30.346799850463867", + "longitude_deg": "-91.03130340576172", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no", + "gps_code": "96LA", + "local_code": "96LA" + }, + { + "id": "15493", + "ident": "96LL", + "type": "small_airport", + "name": "Wichman Airport", + "latitude_deg": "40.6161003112793", + "longitude_deg": "-87.61419677734375", + "elevation_ft": "681", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Stockland", + "scheduled_service": "no", + "gps_code": "96LL", + "local_code": "96LL" + }, + { + "id": "15494", + "ident": "96M", + "type": "seaplane_base", + "name": "Moberg Air Base", + "latitude_deg": "47.499698638916016", + "longitude_deg": "-94.94529724121094", + "elevation_ft": "1370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Bemidji", + "scheduled_service": "no", + "gps_code": "96M", + "local_code": "96M" + }, + { + "id": "324841", + "ident": "96MI", + "type": "heliport", + "name": "Dick Huvaere's Heliport", + "latitude_deg": "45.395581", + "longitude_deg": "-84.874333", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Petoskey", + "scheduled_service": "no", + "gps_code": "96MI", + "local_code": "96MI" + }, + { + "id": "15495", + "ident": "96MN", + "type": "closed", + "name": "Air-Ag Airport", + "latitude_deg": "43.568001", + "longitude_deg": "-93.254402", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Glenville", + "scheduled_service": "no", + "keywords": "96MN" + }, + { + "id": "15496", + "ident": "96MO", + "type": "heliport", + "name": "Riverlands Area Heliport", + "latitude_deg": "38.86309814453125", + "longitude_deg": "-90.15709686279297", + "elevation_ft": "434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "West Alton", + "scheduled_service": "no", + "gps_code": "96MO", + "local_code": "96MO" + }, + { + "id": "347732", + "ident": "96MT", + "type": "small_airport", + "name": "Powers Propair Service Airport", + "latitude_deg": "45.6655", + "longitude_deg": "-108.717333", + "elevation_ft": "3265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Laurel", + "scheduled_service": "no", + "gps_code": "96MT", + "local_code": "96MT" + }, + { + "id": "15497", + "ident": "96MU", + "type": "small_airport", + "name": "Green Airfield", + "latitude_deg": "37.94340133666992", + "longitude_deg": "-91.60209655761719", + "elevation_ft": "1068", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St. James", + "scheduled_service": "no", + "gps_code": "96MU", + "local_code": "96MU" + }, + { + "id": "346547", + "ident": "96NC", + "type": "heliport", + "name": "Raleigh Heliport", + "latitude_deg": "35.812824", + "longitude_deg": "-78.610359", + "elevation_ft": "207", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Raleigh", + "scheduled_service": "no", + "gps_code": "96NC", + "local_code": "96NC" + }, + { + "id": "346072", + "ident": "96NE", + "type": "small_airport", + "name": "Riverbend Airport", + "latitude_deg": "41.400586", + "longitude_deg": "-99.097527", + "elevation_ft": "2144", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Arcadia", + "scheduled_service": "no", + "gps_code": "96NE", + "local_code": "96NE" + }, + { + "id": "15498", + "ident": "96NJ", + "type": "heliport", + "name": "Lourdes Medical Center Of Burlington Cty Heliport", + "latitude_deg": "40.046798706100006", + "longitude_deg": "-74.8824005127", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Willingboro", + "scheduled_service": "no", + "gps_code": "96NJ", + "local_code": "96NJ" + }, + { + "id": "45559", + "ident": "96NY", + "type": "heliport", + "name": "Massaro Heliport", + "latitude_deg": "41.049444", + "longitude_deg": "-73.738333", + "elevation_ft": "681", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Carmel", + "scheduled_service": "no", + "gps_code": "96NY", + "local_code": "96NY" + }, + { + "id": "15499", + "ident": "96OH", + "type": "closed", + "name": "Ohio Department of Transportation Dist 6 Heliport", + "latitude_deg": "40.295797", + "longitude_deg": "-83.052002", + "elevation_ft": "927", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Delaware", + "scheduled_service": "no", + "keywords": "96OH" + }, + { + "id": "15500", + "ident": "96OI", + "type": "heliport", + "name": "Kettering Hospital Heliport", + "latitude_deg": "39.76279830932617", + "longitude_deg": "-84.19129943847656", + "elevation_ft": "836", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Kettering", + "scheduled_service": "no", + "gps_code": "96OI", + "local_code": "96OI" + }, + { + "id": "15501", + "ident": "96OK", + "type": "small_airport", + "name": "Mike's Place Airport", + "latitude_deg": "36.848899841308594", + "longitude_deg": "-99.45670318603516", + "elevation_ft": "1787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Buffalo", + "scheduled_service": "no", + "gps_code": "96OK", + "local_code": "96OK" + }, + { + "id": "15502", + "ident": "96OR", + "type": "small_airport", + "name": "Cable Creek Ranch Airport", + "latitude_deg": "45.10060119628906", + "longitude_deg": "-118.81700134277344", + "elevation_ft": "4060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Ukiah", + "scheduled_service": "no", + "gps_code": "96OR", + "local_code": "96OR" + }, + { + "id": "15503", + "ident": "96PA", + "type": "closed", + "name": "Franklin Center Airport", + "latitude_deg": "41.920898", + "longitude_deg": "-80.249803", + "elevation_ft": "1225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Cranesville", + "scheduled_service": "no", + "keywords": "96PA" + }, + { + "id": "15504", + "ident": "96PN", + "type": "heliport", + "name": "Reading Hospital & Medical Center Heliport", + "latitude_deg": "40.3317985534668", + "longitude_deg": "-75.95659637451172", + "elevation_ft": "224", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Reading", + "scheduled_service": "no", + "gps_code": "96PN", + "local_code": "96PN" + }, + { + "id": "15505", + "ident": "96TA", + "type": "heliport", + "name": "Roy H Laird Memorial Hospital Heliport", + "latitude_deg": "32.373199462890625", + "longitude_deg": "-94.86830139160156", + "elevation_ft": "343", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kilgore", + "scheduled_service": "no", + "gps_code": "96TA", + "local_code": "96TA" + }, + { + "id": "15506", + "ident": "96TE", + "type": "small_airport", + "name": "Bodine Airport", + "latitude_deg": "31.9030278", + "longitude_deg": "-100.8716111", + "elevation_ft": "2623", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sterling City", + "scheduled_service": "no", + "gps_code": "96TE", + "local_code": "96TE" + }, + { + "id": "322140", + "ident": "96TN", + "type": "small_airport", + "name": "Mount Bakewell Airfield", + "latitude_deg": "35.367073", + "longitude_deg": "-85.161678", + "elevation_ft": "1640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Bakewell", + "scheduled_service": "no", + "gps_code": "96TN", + "local_code": "96TN" + }, + { + "id": "15507", + "ident": "96TS", + "type": "small_airport", + "name": "Southwest Lubbock Airport", + "latitude_deg": "33.395581", + "longitude_deg": "-102.009458", + "elevation_ft": "3265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wolfforth", + "scheduled_service": "no", + "local_code": "T96", + "keywords": "96TS" + }, + { + "id": "15508", + "ident": "96TX", + "type": "small_airport", + "name": "Brown Field", + "latitude_deg": "31.1653995513916", + "longitude_deg": "-100.47599792480469", + "elevation_ft": "2125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Christoval", + "scheduled_service": "no", + "gps_code": "96TX", + "local_code": "96TX" + }, + { + "id": "15509", + "ident": "96VA", + "type": "heliport", + "name": "White Ox Heliport", + "latitude_deg": "39.03730010986328", + "longitude_deg": "-78.36920166015625", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Strasburg", + "scheduled_service": "no", + "gps_code": "96VA", + "local_code": "96VA" + }, + { + "id": "45885", + "ident": "96VE", + "type": "small_airport", + "name": "Beiter Airport", + "latitude_deg": "46.906667", + "longitude_deg": "-120.433611", + "elevation_ft": "1910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ellensburg", + "scheduled_service": "no", + "gps_code": "96VE", + "local_code": "96VE" + }, + { + "id": "15510", + "ident": "96WA", + "type": "small_airport", + "name": "Jim & Julie's Airport", + "latitude_deg": "47.898101806640625", + "longitude_deg": "-122.15599822998047", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Everett", + "scheduled_service": "no", + "gps_code": "96WA", + "local_code": "96WA" + }, + { + "id": "15511", + "ident": "96WI", + "type": "seaplane_base", + "name": "Vette/Blust Seaplane Base", + "latitude_deg": "43.94110107421875", + "longitude_deg": "-88.49369812011719", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Oshkosh", + "scheduled_service": "no", + "gps_code": "96WI", + "local_code": "96WI" + }, + { + "id": "15512", + "ident": "96WY", + "type": "small_airport", + "name": "Cedar Creek Ranch Airport", + "latitude_deg": "41.408939", + "longitude_deg": "-106.593488", + "elevation_ft": "7760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Saratoga", + "scheduled_service": "no", + "gps_code": "96WY", + "local_code": "96WY" + }, + { + "id": "322214", + "ident": "96XA", + "type": "small_airport", + "name": "Gnaws Farm Airport", + "latitude_deg": "31.284444", + "longitude_deg": "-103.643889", + "elevation_ft": "2717", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pecos", + "scheduled_service": "no", + "gps_code": "96XA", + "local_code": "96XA" + }, + { + "id": "15513", + "ident": "96XS", + "type": "heliport", + "name": "Houston Oil & Minerals Smith Point Heliport", + "latitude_deg": "29.528799057006836", + "longitude_deg": "-94.76599884033203", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Smith Point", + "scheduled_service": "no", + "gps_code": "96XS", + "local_code": "96XS" + }, + { + "id": "15514", + "ident": "96Z", + "type": "seaplane_base", + "name": "Whale Pass Seaplane Float Harbor Facility", + "latitude_deg": "56.116299", + "longitude_deg": "-133.121994", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Whale Pass", + "scheduled_service": "no", + "iata_code": "WWP", + "local_code": "96Z", + "keywords": "North Whale SPB, North Whale Pass" + }, + { + "id": "15515", + "ident": "97AK", + "type": "small_airport", + "name": "High Ridge Association Airport", + "latitude_deg": "61.66400146484375", + "longitude_deg": "-149.25399780273438", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "97AK", + "local_code": "97AK" + }, + { + "id": "333457", + "ident": "97AL", + "type": "heliport", + "name": "Thomasville Regional Medical Center Heliport", + "latitude_deg": "31.875828", + "longitude_deg": "-87.743069", + "elevation_ft": "351", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Thomasville", + "scheduled_service": "no", + "gps_code": "97AL", + "local_code": "97AL" + }, + { + "id": "15516", + "ident": "97CA", + "type": "closed", + "name": "Tejon Agricultural Airport", + "latitude_deg": "34.989101", + "longitude_deg": "-118.915001", + "elevation_ft": "1065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lebec", + "scheduled_service": "no", + "keywords": "97CA" + }, + { + "id": "15517", + "ident": "97CL", + "type": "small_airport", + "name": "Siller Bros Inc Airport", + "latitude_deg": "39.460201263427734", + "longitude_deg": "-121.58100128173828", + "elevation_ft": "235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oroville", + "scheduled_service": "no", + "gps_code": "97CL", + "local_code": "97CL" + }, + { + "id": "15518", + "ident": "97CO", + "type": "small_airport", + "name": "Peakview Airport", + "latitude_deg": "38.92499923706055", + "longitude_deg": "-104.15899658203125", + "elevation_ft": "6370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Yoder", + "scheduled_service": "no", + "gps_code": "97CO", + "local_code": "97CO" + }, + { + "id": "15519", + "ident": "97F", + "type": "small_airport", + "name": "Crazy Horse Municipal Airport", + "latitude_deg": "34.54650115966797", + "longitude_deg": "-97.1083984375", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Davis", + "scheduled_service": "no", + "gps_code": "97F", + "local_code": "97F" + }, + { + "id": "15520", + "ident": "97FD", + "type": "closed", + "name": "Helicopters International Heliport", + "latitude_deg": "28.464399", + "longitude_deg": "-81.459999", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "keywords": "97FD" + }, + { + "id": "15521", + "ident": "97FL", + "type": "small_airport", + "name": "Love Field", + "latitude_deg": "28.96190071105957", + "longitude_deg": "-81.8915023803711", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Weirsdale", + "scheduled_service": "no", + "gps_code": "97FL", + "local_code": "97FL" + }, + { + "id": "15522", + "ident": "97G", + "type": "small_airport", + "name": "Glowacki Airport", + "latitude_deg": "43.000329", + "longitude_deg": "-84.595002", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "St Johns", + "scheduled_service": "no", + "gps_code": "K97G", + "local_code": "97G" + }, + { + "id": "15523", + "ident": "97GA", + "type": "small_airport", + "name": "B Tree Farms Airport", + "latitude_deg": "34.2681999206543", + "longitude_deg": "-83.6720962524414", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Gillsville", + "scheduled_service": "no", + "gps_code": "97GA", + "local_code": "97GA" + }, + { + "id": "15524", + "ident": "97IA", + "type": "small_airport", + "name": "Volkens Field", + "latitude_deg": "41.25579833984375", + "longitude_deg": "-95.47669982910156", + "elevation_ft": "1275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Carson", + "scheduled_service": "no", + "gps_code": "97IA", + "local_code": "97IA" + }, + { + "id": "15525", + "ident": "97IL", + "type": "heliport", + "name": "Graham Hospital Heliport", + "latitude_deg": "40.55220032", + "longitude_deg": "-90.03669739", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Canton", + "scheduled_service": "no", + "gps_code": "97IL", + "local_code": "97IL" + }, + { + "id": "15526", + "ident": "97IN", + "type": "heliport", + "name": "Solar Heliport", + "latitude_deg": "38.49589920043945", + "longitude_deg": "-87.28250122070312", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Petersburg", + "scheduled_service": "no", + "gps_code": "97IN", + "local_code": "97IN" + }, + { + "id": "15527", + "ident": "97IS", + "type": "heliport", + "name": "St Johns Hospital Heliport", + "latitude_deg": "39.80670166015625", + "longitude_deg": "-89.64440155029297", + "elevation_ft": "632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "97IS", + "local_code": "97IS" + }, + { + "id": "15528", + "ident": "97KS", + "type": "small_airport", + "name": "Clear View Farm Airport", + "latitude_deg": "38.81010055541992", + "longitude_deg": "-94.75569915771484", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Olathe", + "scheduled_service": "no", + "gps_code": "97KS", + "local_code": "97KS" + }, + { + "id": "15529", + "ident": "97KY", + "type": "heliport", + "name": "Greener Horizons Heliport", + "latitude_deg": "38.243900299072266", + "longitude_deg": "-85.48889923095703", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "97KY", + "local_code": "97KY" + }, + { + "id": "15530", + "ident": "97LA", + "type": "small_airport", + "name": "Greene Air Park", + "latitude_deg": "30.03380012512207", + "longitude_deg": "-92.0551986694336", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "97LA", + "local_code": "97LA" + }, + { + "id": "326863", + "ident": "97MI", + "type": "heliport", + "name": "Hawk Hollow Heliport", + "latitude_deg": "42.5613", + "longitude_deg": "-83.7355", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Brighton", + "scheduled_service": "no", + "gps_code": "97MI", + "local_code": "97MI" + }, + { + "id": "15531", + "ident": "97MN", + "type": "heliport", + "name": "Mayo Clinic Health System-Red Wing Heliport", + "latitude_deg": "44.559342", + "longitude_deg": "-92.572757", + "elevation_ft": "862", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Red Wing", + "scheduled_service": "no", + "gps_code": "97MN", + "local_code": "97MN", + "keywords": "Fairview Red Wing Medical Center" + }, + { + "id": "15532", + "ident": "97MO", + "type": "small_airport", + "name": "Gary's Airport", + "latitude_deg": "37.75669860839844", + "longitude_deg": "-93.01629638671875", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Buffalo", + "scheduled_service": "no", + "gps_code": "97MO", + "local_code": "97MO" + }, + { + "id": "15533", + "ident": "97MT", + "type": "small_airport", + "name": "Cabin Creek Landing Airport", + "latitude_deg": "48.074036", + "longitude_deg": "-114.677782", + "elevation_ft": "3999", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "97MT", + "local_code": "97MT" + }, + { + "id": "15534", + "ident": "97NC", + "type": "heliport", + "name": "Transylvania Community Hospital Heliport", + "latitude_deg": "35.25579833984375", + "longitude_deg": "-82.14240264892578", + "elevation_ft": "2120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Brevard", + "scheduled_service": "no", + "gps_code": "97NC", + "local_code": "97NC" + }, + { + "id": "15535", + "ident": "97ND", + "type": "small_airport", + "name": "Walser Strip", + "latitude_deg": "48.43080139160156", + "longitude_deg": "-97.70809936523438", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Park River", + "scheduled_service": "no", + "gps_code": "97ND", + "local_code": "97ND" + }, + { + "id": "15536", + "ident": "97NY", + "type": "closed", + "name": "Hunter Mountain Airport", + "latitude_deg": "42.235317", + "longitude_deg": "-74.237752", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hunter", + "scheduled_service": "no", + "keywords": "97NY" + }, + { + "id": "45736", + "ident": "97OG", + "type": "small_airport", + "name": "Bybee Field", + "latitude_deg": "43.897828", + "longitude_deg": "-116.989964", + "elevation_ft": "2150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Nyssa", + "scheduled_service": "no", + "gps_code": "97OG", + "local_code": "97OG" + }, + { + "id": "15537", + "ident": "97OH", + "type": "closed", + "name": "Jackson Heliport", + "latitude_deg": "39.041502", + "longitude_deg": "-82.627899", + "elevation_ft": "706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Jackson", + "scheduled_service": "no", + "keywords": "97OH" + }, + { + "id": "15538", + "ident": "97OI", + "type": "heliport", + "name": "Salem Regional Medical Center Heliport", + "latitude_deg": "40.900551", + "longitude_deg": "-80.833427", + "elevation_ft": "1305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "97OI", + "local_code": "97OI", + "keywords": "Salem Community Hospital" + }, + { + "id": "15539", + "ident": "97OK", + "type": "heliport", + "name": "Presbyterian Hospital Heliport", + "latitude_deg": "35.48118", + "longitude_deg": "-97.502609", + "elevation_ft": "1262", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "gps_code": "97OK", + "local_code": "97OK" + }, + { + "id": "15540", + "ident": "97OR", + "type": "small_airport", + "name": "Hi Country No 2 Airport", + "latitude_deg": "44.43519973754883", + "longitude_deg": "-118.66200256347656", + "elevation_ft": "3840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Prairie City", + "scheduled_service": "no", + "gps_code": "97OR", + "local_code": "97OR" + }, + { + "id": "15541", + "ident": "97PA", + "type": "closed", + "name": "Willows Airport", + "latitude_deg": "41.908401", + "longitude_deg": "-80.258102", + "elevation_ft": "1225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Cranesville", + "scheduled_service": "no", + "keywords": "97PA" + }, + { + "id": "15542", + "ident": "97PN", + "type": "closed", + "name": "Gold Mine Field", + "latitude_deg": "40.35251", + "longitude_deg": "-75.35517", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Sellersville", + "scheduled_service": "no", + "keywords": "97PN" + }, + { + "id": "15543", + "ident": "97TA", + "type": "heliport", + "name": "Hickory Hollow Heliport", + "latitude_deg": "29.92609977722168", + "longitude_deg": "-95.52359771728516", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "97TA", + "local_code": "97TA" + }, + { + "id": "15544", + "ident": "97TE", + "type": "heliport", + "name": "Go Helitrans Heliport", + "latitude_deg": "28.94969940185547", + "longitude_deg": "-95.3572006225586", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Freeport", + "scheduled_service": "no", + "gps_code": "97TE", + "local_code": "97TE" + }, + { + "id": "45797", + "ident": "97TN", + "type": "small_airport", + "name": "Kite Field", + "latitude_deg": "36.2785568902", + "longitude_deg": "-82.5857627392", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Jonesborough", + "scheduled_service": "no", + "gps_code": "97TN", + "local_code": "97TN" + }, + { + "id": "15545", + "ident": "97TS", + "type": "small_airport", + "name": "Gdap Air Ranch Airport", + "latitude_deg": "30.480199813842773", + "longitude_deg": "-95.53990173339844", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Willis", + "scheduled_service": "no", + "gps_code": "97TS", + "local_code": "97TS" + }, + { + "id": "15546", + "ident": "97TX", + "type": "small_airport", + "name": "San Pedro Ranch Airport", + "latitude_deg": "28.283599853515625", + "longitude_deg": "-100.06700134277344", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Carrizo Springs", + "scheduled_service": "no", + "gps_code": "97TX", + "local_code": "97TX" + }, + { + "id": "15547", + "ident": "97VA", + "type": "small_airport", + "name": "Singleton Airport", + "latitude_deg": "38.21070098876953", + "longitude_deg": "-79.7134017944336", + "elevation_ft": "2060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Warm Springs", + "scheduled_service": "no", + "gps_code": "97VA", + "local_code": "97VA" + }, + { + "id": "15548", + "ident": "97WA", + "type": "small_airport", + "name": "Basin City Airfield", + "latitude_deg": "46.585335", + "longitude_deg": "-119.153711", + "elevation_ft": "722", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Mesa", + "scheduled_service": "no", + "gps_code": "97WA", + "local_code": "97WA" + }, + { + "id": "15549", + "ident": "97WI", + "type": "small_airport", + "name": "North Fork Airport", + "latitude_deg": "44.96329879760742", + "longitude_deg": "-90.86029815673828", + "elevation_ft": "1145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Thorp", + "scheduled_service": "no", + "gps_code": "97WI", + "local_code": "97WI" + }, + { + "id": "15550", + "ident": "97WY", + "type": "heliport", + "name": "Snake River Canyon Heliport", + "latitude_deg": "43.29930114746094", + "longitude_deg": "-110.7770004272461", + "elevation_ft": "5886", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "97WY", + "local_code": "97WY" + }, + { + "id": "345806", + "ident": "97XA", + "type": "heliport", + "name": "Helibarn Landing", + "latitude_deg": "32.699019", + "longitude_deg": "-97.512352", + "elevation_ft": "886", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "97XA", + "local_code": "97XA" + }, + { + "id": "15551", + "ident": "97XS", + "type": "small_airport", + "name": "Tilghman Airport", + "latitude_deg": "33.432833", + "longitude_deg": "-96.479467", + "elevation_ft": "741", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Van Alstyne", + "scheduled_service": "no", + "gps_code": "97XS", + "local_code": "97XS" + }, + { + "id": "15552", + "ident": "97Y", + "type": "small_airport", + "name": "Genoa Municipal Airport", + "latitude_deg": "41.40420150756836", + "longitude_deg": "-97.70870208740234", + "elevation_ft": "1570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Genoa", + "scheduled_service": "no", + "gps_code": "97Y", + "local_code": "97Y" + }, + { + "id": "15553", + "ident": "98AK", + "type": "small_airport", + "name": "Eastland Airport", + "latitude_deg": "59.77621", + "longitude_deg": "-151.187882", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Homer", + "scheduled_service": "no", + "gps_code": "98AK", + "local_code": "98AK" + }, + { + "id": "328507", + "ident": "98AL", + "type": "heliport", + "name": "Lakeland Community Hospital Heliport", + "latitude_deg": "34.242369", + "longitude_deg": "-87.592292", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Haleyville", + "scheduled_service": "no", + "gps_code": "98AL", + "local_code": "98AL" + }, + { + "id": "15554", + "ident": "98CA", + "type": "heliport", + "name": "Westwood Gateway II Heliport", + "latitude_deg": "34.046872", + "longitude_deg": "-118.445127", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "98CA", + "local_code": "98CA", + "keywords": "Everest and Jennings Helistop" + }, + { + "id": "15555", + "ident": "98CL", + "type": "closed", + "name": "Noltas Airport", + "latitude_deg": "39.578999", + "longitude_deg": "-122.200996", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Willows", + "scheduled_service": "no", + "keywords": "98CL" + }, + { + "id": "15556", + "ident": "98CO", + "type": "heliport", + "name": "Ncmc Heliport", + "latitude_deg": "40.415000915527344", + "longitude_deg": "-104.70800018310547", + "elevation_ft": "4882", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Greeley", + "scheduled_service": "no", + "gps_code": "98CO", + "local_code": "98CO" + }, + { + "id": "15557", + "ident": "98FD", + "type": "seaplane_base", + "name": "Lake Jessup Seaplane Base", + "latitude_deg": "28.716899871826172", + "longitude_deg": "-81.23310089111328", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Oviedo", + "scheduled_service": "no", + "gps_code": "98FD", + "local_code": "98FD" + }, + { + "id": "15558", + "ident": "98FL", + "type": "seaplane_base", + "name": "Sand Lake Seaplane Base", + "latitude_deg": "28.4335994720459", + "longitude_deg": "-81.49150085449219", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando/Buena Vista", + "scheduled_service": "no", + "gps_code": "98FL", + "local_code": "98FL" + }, + { + "id": "15559", + "ident": "98G", + "type": "small_airport", + "name": "Sebewaing Township Airport", + "latitude_deg": "43.729863", + "longitude_deg": "-83.463875", + "elevation_ft": "584", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Sebewaing", + "scheduled_service": "no", + "local_code": "98G" + }, + { + "id": "15560", + "ident": "98GA", + "type": "small_airport", + "name": "Circle T Airport", + "latitude_deg": "33.2056999206543", + "longitude_deg": "-83.91239929199219", + "elevation_ft": "545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Indian Springs", + "scheduled_service": "no", + "gps_code": "98GA", + "local_code": "98GA" + }, + { + "id": "15561", + "ident": "98IA", + "type": "heliport", + "name": "Hawarden Heliport", + "latitude_deg": "42.998468", + "longitude_deg": "-96.481038", + "elevation_ft": "1174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Hawarden", + "scheduled_service": "no", + "keywords": "98IA" + }, + { + "id": "15562", + "ident": "98ID", + "type": "heliport", + "name": "Walter Knox Memorial Hospital Heliport", + "latitude_deg": "43.8805999756", + "longitude_deg": "-116.48500061", + "elevation_ft": "238", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Emmett", + "scheduled_service": "no", + "gps_code": "98ID", + "local_code": "98ID" + }, + { + "id": "15563", + "ident": "98IL", + "type": "heliport", + "name": "St Mary's Hospital - Centralia Heliport", + "latitude_deg": "38.5317001343", + "longitude_deg": "-89.11940002440001", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Centralia", + "scheduled_service": "no", + "gps_code": "98IL", + "local_code": "98IL" + }, + { + "id": "15564", + "ident": "98IN", + "type": "small_airport", + "name": "B & V Flying Ranch Airport", + "latitude_deg": "41.36389923095703", + "longitude_deg": "-85.38860321044922", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Albion", + "scheduled_service": "no", + "gps_code": "98IN", + "local_code": "98IN" + }, + { + "id": "15565", + "ident": "98IS", + "type": "heliport", + "name": "Ill Dept of Trans Heliport", + "latitude_deg": "39.7778015137", + "longitude_deg": "-89.60510253910002", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "98IS", + "local_code": "98IS" + }, + { + "id": "15566", + "ident": "98KS", + "type": "small_airport", + "name": "Rexford Airport", + "latitude_deg": "37.445899963378906", + "longitude_deg": "-100.49199676513672", + "elevation_ft": "2775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Montezuma", + "scheduled_service": "no", + "gps_code": "98KS", + "local_code": "98KS" + }, + { + "id": "15567", + "ident": "98KY", + "type": "closed", + "name": "TGP Heliport", + "latitude_deg": "37.412498", + "longitude_deg": "-85.394402", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Campbellsville", + "scheduled_service": "no", + "keywords": "98KY" + }, + { + "id": "15568", + "ident": "98L", + "type": "heliport", + "name": "Pomona Police Department Heliport", + "latitude_deg": "34.051886", + "longitude_deg": "-117.791988", + "elevation_ft": "1001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pomona", + "scheduled_service": "no", + "gps_code": "K98L", + "local_code": "98L" + }, + { + "id": "15569", + "ident": "98LA", + "type": "heliport", + "name": "LA State Police Troop L Heliport", + "latitude_deg": "30.403200149499998", + "longitude_deg": "-90.0886993408", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Covington", + "scheduled_service": "no", + "gps_code": "98LA", + "local_code": "98LA" + }, + { + "id": "15570", + "ident": "98LL", + "type": "small_airport", + "name": "Braden Farms Airport", + "latitude_deg": "40.799198150634766", + "longitude_deg": "-87.78359985351562", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Watseka", + "scheduled_service": "no", + "gps_code": "98LL", + "local_code": "98LL" + }, + { + "id": "346425", + "ident": "98LS", + "type": "small_airport", + "name": "Tietjes Airport", + "latitude_deg": "30.434651", + "longitude_deg": "-92.721745", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Elton", + "scheduled_service": "no", + "gps_code": "98LS", + "local_code": "98LS" + }, + { + "id": "45457", + "ident": "98ME", + "type": "small_airport", + "name": "Greaton Airfield", + "latitude_deg": "43.572013", + "longitude_deg": "-70.525362", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Saco", + "scheduled_service": "no", + "local_code": "98M", + "keywords": "98ME" + }, + { + "id": "45475", + "ident": "98MI", + "type": "heliport", + "name": "L & L Heliport", + "latitude_deg": "42.163333", + "longitude_deg": "-83.345278", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Huron Township", + "scheduled_service": "no", + "gps_code": "98MI", + "local_code": "98MI" + }, + { + "id": "15571", + "ident": "98MN", + "type": "small_airport", + "name": "Up Yonder Airport", + "latitude_deg": "47.29349899", + "longitude_deg": "-94.87490082", + "elevation_ft": "1446", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Bemidji", + "scheduled_service": "no", + "gps_code": "98MN", + "local_code": "98MN" + }, + { + "id": "15572", + "ident": "98MO", + "type": "small_airport", + "name": "Woodliff Airpark", + "latitude_deg": "38.78620147705078", + "longitude_deg": "-90.94239807128906", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Foristell", + "scheduled_service": "no", + "gps_code": "98MO", + "local_code": "98MO" + }, + { + "id": "15573", + "ident": "98MT", + "type": "small_airport", + "name": "Rosemont Airport", + "latitude_deg": "46.44279861450195", + "longitude_deg": "-114.00299835205078", + "elevation_ft": "4172", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Stevensville", + "scheduled_service": "no", + "gps_code": "98MT", + "local_code": "98MT" + }, + { + "id": "15574", + "ident": "98NC", + "type": "heliport", + "name": "Linville Ridge Heliport", + "latitude_deg": "36.118099", + "longitude_deg": "-81.860603", + "elevation_ft": "4826", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Linville", + "scheduled_service": "no", + "gps_code": "98NC", + "local_code": "98NC" + }, + { + "id": "15575", + "ident": "98ND", + "type": "small_airport", + "name": "Sobolik Airport", + "latitude_deg": "48.263301849365234", + "longitude_deg": "-97.62229919433594", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Pisek", + "scheduled_service": "no", + "gps_code": "98ND", + "local_code": "98ND" + }, + { + "id": "15576", + "ident": "98NE", + "type": "small_airport", + "name": "Munsterman Airport", + "latitude_deg": "40.454200744628906", + "longitude_deg": "-98.30449676513672", + "elevation_ft": "1860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Glenvil", + "scheduled_service": "no", + "gps_code": "98NE", + "local_code": "98NE" + }, + { + "id": "15577", + "ident": "98NH", + "type": "heliport", + "name": "Skybast Heliport", + "latitude_deg": "43.21120071411133", + "longitude_deg": "-71.24009704589844", + "elevation_ft": "565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Northwood", + "scheduled_service": "no", + "gps_code": "98NH", + "local_code": "98NH" + }, + { + "id": "15578", + "ident": "98NJ", + "type": "heliport", + "name": "Creamer Heliport", + "latitude_deg": "40.87540054321289", + "longitude_deg": "-74.03510284423828", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Hackensack", + "scheduled_service": "no", + "gps_code": "98NJ", + "local_code": "98NJ" + }, + { + "id": "15579", + "ident": "98NM", + "type": "small_airport", + "name": "S & S Ranch Airport", + "latitude_deg": "36.076698303222656", + "longitude_deg": "-104.71800231933594", + "elevation_ft": "6310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Wagon Mound", + "scheduled_service": "no", + "gps_code": "98NM", + "local_code": "98NM" + }, + { + "id": "15580", + "ident": "98NY", + "type": "small_airport", + "name": "Krenzers Airport", + "latitude_deg": "42.883399963378906", + "longitude_deg": "-77.53309631347656", + "elevation_ft": "1035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "West Bloomfield", + "scheduled_service": "no", + "gps_code": "98NY", + "local_code": "98NY" + }, + { + "id": "15581", + "ident": "98OH", + "type": "small_airport", + "name": "Paine's Airport", + "latitude_deg": "41.82276", + "longitude_deg": "-80.8968", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Geneva", + "scheduled_service": "no", + "gps_code": "98OH", + "local_code": "98OH" + }, + { + "id": "15582", + "ident": "98OI", + "type": "heliport", + "name": "Adams County Hospital Heliport", + "latitude_deg": "38.794266", + "longitude_deg": "-83.534682", + "elevation_ft": "956", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "West Union", + "scheduled_service": "no", + "gps_code": "98OI", + "local_code": "98OI" + }, + { + "id": "15583", + "ident": "98OK", + "type": "small_airport", + "name": "Candy Lake Estate Airport", + "latitude_deg": "36.489200592041016", + "longitude_deg": "-96.05280303955078", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Avant", + "scheduled_service": "no", + "gps_code": "98OK", + "local_code": "98OK" + }, + { + "id": "15584", + "ident": "98OL", + "type": "closed", + "name": "Copland Airport", + "latitude_deg": "34.510764", + "longitude_deg": "-97.993084", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Duncan", + "scheduled_service": "no", + "keywords": "98OL" + }, + { + "id": "15585", + "ident": "98OR", + "type": "small_airport", + "name": "Mach-O Acres Airport", + "latitude_deg": "45.19900131225586", + "longitude_deg": "-123.37000274658203", + "elevation_ft": "435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sheridan", + "scheduled_service": "no", + "gps_code": "98OR", + "local_code": "98OR" + }, + { + "id": "15586", + "ident": "98PA", + "type": "closed", + "name": "Pleasant Hill Airport", + "latitude_deg": "40.88166", + "longitude_deg": "-80.18599", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Portersville", + "scheduled_service": "no", + "gps_code": "98PA", + "local_code": "98PA" + }, + { + "id": "15587", + "ident": "98PN", + "type": "heliport", + "name": "Lehigh Valley Hospital Cedar Crest Heliport", + "latitude_deg": "40.56561", + "longitude_deg": "-75.523356", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Allentown", + "scheduled_service": "no", + "gps_code": "98PN", + "local_code": "98PN", + "keywords": "Trauma Center" + }, + { + "id": "15588", + "ident": "98TA", + "type": "heliport", + "name": "Medical City Weatherford Heliport", + "latitude_deg": "32.747722", + "longitude_deg": "-97.786487", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no", + "gps_code": "98TA", + "local_code": "98TA", + "keywords": "Weatherford Regional Medical Center Heliport" + }, + { + "id": "15589", + "ident": "98TE", + "type": "small_airport", + "name": "Hilltop Airport", + "latitude_deg": "43.32210159301758", + "longitude_deg": "-123.177001953125", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Glide", + "scheduled_service": "no", + "gps_code": "98TE", + "local_code": "98TE" + }, + { + "id": "45798", + "ident": "98TN", + "type": "small_airport", + "name": "Landing At River'S Edge", + "latitude_deg": "36.1425", + "longitude_deg": "-83.604167", + "elevation_ft": "1019", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Blaine", + "scheduled_service": "no", + "gps_code": "98TN", + "local_code": "98TN" + }, + { + "id": "345109", + "ident": "98TS", + "type": "small_airport", + "name": "Cabrito Airport", + "latitude_deg": "31.55888", + "longitude_deg": "-98.42263", + "elevation_ft": "1676", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Goldthwaite", + "scheduled_service": "no", + "local_code": "98TS", + "keywords": "Smith Ranch" + }, + { + "id": "15591", + "ident": "98TX", + "type": "heliport", + "name": "Cig 402 Heliport", + "latitude_deg": "27.25670051574707", + "longitude_deg": "-98.09420013427734", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Falfurrias", + "scheduled_service": "no", + "gps_code": "98TX", + "local_code": "98TX" + }, + { + "id": "15592", + "ident": "98VA", + "type": "closed", + "name": "Glascock Airport", + "latitude_deg": "38.942298", + "longitude_deg": "-77.542198", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Arcola", + "scheduled_service": "no", + "keywords": "98VA" + }, + { + "id": "15593", + "ident": "98WA", + "type": "heliport", + "name": "Zirkle Fruit Company Heliport", + "latitude_deg": "46.67559814453125", + "longitude_deg": "-120.50599670410156", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Selah", + "scheduled_service": "no", + "gps_code": "98WA", + "local_code": "98WA" + }, + { + "id": "15594", + "ident": "98WI", + "type": "heliport", + "name": "Shawano Medical Center Heliport", + "latitude_deg": "44.784698486328125", + "longitude_deg": "-88.6176986694336", + "elevation_ft": "812", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Shawano", + "scheduled_service": "no", + "gps_code": "98WI", + "local_code": "98WI" + }, + { + "id": "343456", + "ident": "98WT", + "type": "heliport", + "name": "St Michael Medical Center Helipad", + "latitude_deg": "47.656796", + "longitude_deg": "-122.674955", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Silverdale", + "scheduled_service": "no", + "gps_code": "98WT", + "local_code": "98WT" + }, + { + "id": "15595", + "ident": "98WY", + "type": "heliport", + "name": "Hmhs Heliport", + "latitude_deg": "43.30149841308594", + "longitude_deg": "-110.7760009765625", + "elevation_ft": "5886", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "98WY", + "local_code": "98WY" + }, + { + "id": "354647", + "ident": "98XA", + "type": "small_airport", + "name": "Three Ninety-Eighth Airport", + "latitude_deg": "31.629249", + "longitude_deg": "-97.162442", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no", + "gps_code": "98XA", + "local_code": "98XA" + }, + { + "id": "45828", + "ident": "98XS", + "type": "heliport", + "name": "LZ Phantom Heliport", + "latitude_deg": "30.455929", + "longitude_deg": "-97.934318", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jamestown", + "scheduled_service": "no", + "gps_code": "98XS", + "local_code": "98XS" + }, + { + "id": "15596", + "ident": "99A", + "type": "small_airport", + "name": "Smith's International Airport", + "latitude_deg": "34.40620040893555", + "longitude_deg": "-91.95870208740234", + "elevation_ft": "218", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Sherrill", + "scheduled_service": "no", + "gps_code": "99A", + "local_code": "99A" + }, + { + "id": "321976", + "ident": "99AA", + "type": "heliport", + "name": "Aviator Hotel Anchorage Heliport", + "latitude_deg": "61.218906", + "longitude_deg": "-149.886482", + "elevation_ft": "123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchorage", + "scheduled_service": "no", + "gps_code": "99AA", + "local_code": "99AA", + "keywords": "Anchorage Lofts Hotel" + }, + { + "id": "15597", + "ident": "99AK", + "type": "small_airport", + "name": "Moore Creek Airport", + "latitude_deg": "62.5989990234375", + "longitude_deg": "-157.15199279785156", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Moore Creek", + "scheduled_service": "no", + "gps_code": "99AK", + "local_code": "99AK" + }, + { + "id": "322811", + "ident": "99AL", + "type": "heliport", + "name": "Morrison Crossroads Volunteer Fire Department Heliport", + "latitude_deg": "33.427111", + "longitude_deg": "-85.493436", + "elevation_ft": "1113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Woodland", + "scheduled_service": "no", + "gps_code": "99AL", + "local_code": "99AL" + }, + { + "id": "15598", + "ident": "99AZ", + "type": "small_airport", + "name": "Eagletail Ranch Airport", + "latitude_deg": "33.395646", + "longitude_deg": "-113.222888", + "elevation_ft": "1203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonopah", + "scheduled_service": "no", + "gps_code": "99AZ", + "local_code": "99AZ", + "keywords": "tonopah, eagletail ranch" + }, + { + "id": "15599", + "ident": "99C", + "type": "seaplane_base", + "name": "Quams Marina Seaplane Base", + "latitude_deg": "42.95109939575195", + "longitude_deg": "-89.27100372314453", + "elevation_ft": "843", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Stoughton", + "scheduled_service": "no", + "gps_code": "99C", + "local_code": "99C" + }, + { + "id": "46304", + "ident": "99CA", + "type": "heliport", + "name": "San Antonio Regional Hospital Heliport", + "latitude_deg": "34.102747", + "longitude_deg": "-117.636211", + "elevation_ft": "1274", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Upland", + "scheduled_service": "no", + "gps_code": "99CA", + "local_code": "99CA", + "keywords": "San Antonio Community Hospital" + }, + { + "id": "15600", + "ident": "99CL", + "type": "small_airport", + "name": "El Mirage Field Adelanto Airport", + "latitude_deg": "34.62438", + "longitude_deg": "-117.600702", + "elevation_ft": "2865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "El Mirage", + "scheduled_service": "no", + "gps_code": "99CL", + "local_code": "99CL" + }, + { + "id": "15601", + "ident": "99CN", + "type": "heliport", + "name": "Banner Lassen Medical Center Heliport", + "latitude_deg": "40.437491", + "longitude_deg": "-120.628728", + "elevation_ft": "4419", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Susanville", + "scheduled_service": "no", + "gps_code": "99CN", + "local_code": "99CN", + "keywords": "Lassen Community Hospital Heliport" + }, + { + "id": "15602", + "ident": "99CO", + "type": "small_airport", + "name": "Rock Creek Airport", + "latitude_deg": "38.13639831542969", + "longitude_deg": "-104.81500244140625", + "elevation_ft": "5660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Pueblo", + "scheduled_service": "no", + "gps_code": "99CO", + "local_code": "99CO" + }, + { + "id": "15603", + "ident": "99F", + "type": "small_airport", + "name": "El Reno Airport", + "latitude_deg": "35.518499", + "longitude_deg": "-97.97689", + "elevation_ft": "1395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "El Reno", + "scheduled_service": "no", + "gps_code": "K99F", + "local_code": "99F" + }, + { + "id": "324949", + "ident": "99FA", + "type": "heliport", + "name": "Halifax Hospital Emergency Helostop", + "latitude_deg": "28.958386", + "longitude_deg": "-81.255586", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Deltona", + "scheduled_service": "no", + "gps_code": "99FA", + "local_code": "99FA" + }, + { + "id": "15604", + "ident": "99FD", + "type": "heliport", + "name": "Heli-Tech Inc Heliport", + "latitude_deg": "30.2113", + "longitude_deg": "-85.691597", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City", + "scheduled_service": "no", + "gps_code": "99FD", + "local_code": "99FD" + }, + { + "id": "15605", + "ident": "99FL", + "type": "small_airport", + "name": "Madison County Airport", + "latitude_deg": "30.442756", + "longitude_deg": "-83.311965", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lee", + "scheduled_service": "no", + "gps_code": "99FL", + "local_code": "99FL" + }, + { + "id": "15606", + "ident": "99GA", + "type": "heliport", + "name": "Curtis Parkway North Heliport", + "latitude_deg": "34.45119857788086", + "longitude_deg": "-84.93440246582031", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Calhoun", + "scheduled_service": "no", + "gps_code": "99GA", + "local_code": "99GA" + }, + { + "id": "15607", + "ident": "99HI", + "type": "heliport", + "name": "Kawela Farm Heliport", + "latitude_deg": "21.079367", + "longitude_deg": "-156.97007", + "elevation_ft": "450", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kaunakakai", + "scheduled_service": "no", + "gps_code": "99HI", + "local_code": "99HI" + }, + { + "id": "15608", + "ident": "99IA", + "type": "small_airport", + "name": "Courtney's Landing Airport", + "latitude_deg": "41.21659851074219", + "longitude_deg": "-92.77799987792969", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Eddyville", + "scheduled_service": "no", + "gps_code": "99IA", + "local_code": "99IA" + }, + { + "id": "15609", + "ident": "99ID", + "type": "heliport", + "name": "CAHC Emergency Heliport", + "latitude_deg": "44.511516", + "longitude_deg": "-114.224542", + "elevation_ft": "5149", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Challis", + "scheduled_service": "no", + "gps_code": "99ID", + "local_code": "99ID" + }, + { + "id": "299719", + "ident": "99II", + "type": "small_airport", + "name": "Cooper Field", + "latitude_deg": "39.5835", + "longitude_deg": "-86.952527", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Reelsville", + "scheduled_service": "no", + "gps_code": "99II", + "local_code": "99II" + }, + { + "id": "15610", + "ident": "99IL", + "type": "small_airport", + "name": "Providence Place Field", + "latitude_deg": "42.28670120239258", + "longitude_deg": "-89.9574966430664", + "elevation_ft": "959", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Stockton", + "scheduled_service": "no", + "gps_code": "99IL", + "local_code": "99IL" + }, + { + "id": "15611", + "ident": "99IN", + "type": "closed", + "name": "Bee-Acre Farm Strip", + "latitude_deg": "40.206104", + "longitude_deg": "-86.100501", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Atlanta", + "scheduled_service": "no", + "keywords": "99IN" + }, + { + "id": "15612", + "ident": "99KS", + "type": "small_airport", + "name": "Elm Creek Farms Airport", + "latitude_deg": "37.410995", + "longitude_deg": "-98.649306", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Medicine Lodge", + "scheduled_service": "no", + "gps_code": "99KS", + "local_code": "99KS" + }, + { + "id": "15613", + "ident": "99KY", + "type": "small_airport", + "name": "Gravity Zero Airport", + "latitude_deg": "37.655601501464844", + "longitude_deg": "-84.69029998779297", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "99KY", + "local_code": "99KY" + }, + { + "id": "15614", + "ident": "99L", + "type": "closed", + "name": "Pomona Superior Court Heliport", + "latitude_deg": "34.052498626709", + "longitude_deg": "-117.74900054932", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pomona", + "scheduled_service": "no", + "gps_code": "99L", + "local_code": "99L" + }, + { + "id": "15615", + "ident": "99LA", + "type": "small_airport", + "name": "Lawson Field", + "latitude_deg": "30.289400100708008", + "longitude_deg": "-92.38899993896484", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Crowley", + "scheduled_service": "no", + "gps_code": "99LA", + "local_code": "99LA" + }, + { + "id": "331674", + "ident": "99ME", + "type": "heliport", + "name": "Isle Au Haut Heliport", + "latitude_deg": "44.075318", + "longitude_deg": "-68.632418", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Isle Au Haut", + "scheduled_service": "no", + "gps_code": "99ME", + "local_code": "99ME" + }, + { + "id": "324561", + "ident": "99MI", + "type": "small_airport", + "name": "Denton Farms Airport", + "latitude_deg": "43.755141", + "longitude_deg": "-84.808286", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Clare", + "scheduled_service": "no", + "local_code": "MI1", + "keywords": "99MI" + }, + { + "id": "15616", + "ident": "99MN", + "type": "heliport", + "name": "St Mary's Hospital Heliport", + "latitude_deg": "44.019798278808594", + "longitude_deg": "-92.48310089111328", + "elevation_ft": "1166", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Rochester", + "scheduled_service": "no", + "gps_code": "99MN", + "local_code": "99MN" + }, + { + "id": "15617", + "ident": "99MO", + "type": "heliport", + "name": "Parkland Bonne Terre Primary Care Center Heliport", + "latitude_deg": "37.90840148925781", + "longitude_deg": "-90.53350067138672", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Bonne Terre", + "scheduled_service": "no", + "gps_code": "99MO", + "local_code": "99MO" + }, + { + "id": "333141", + "ident": "99MS", + "type": "small_airport", + "name": "Paradise Airport", + "latitude_deg": "32.712408", + "longitude_deg": "-90.294872", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Yazoo City", + "scheduled_service": "no", + "gps_code": "99MS", + "local_code": "99MS" + }, + { + "id": "15618", + "ident": "99MT", + "type": "small_airport", + "name": "Fox Field", + "latitude_deg": "46.09749984741211", + "longitude_deg": "-114.1780014038086", + "elevation_ft": "3750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "99MT", + "local_code": "99MT" + }, + { + "id": "45679", + "ident": "99NA", + "type": "heliport", + "name": "Fly I Heliport", + "latitude_deg": "35.060633", + "longitude_deg": "-80.845989", + "elevation_ft": "593", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Charlotte", + "scheduled_service": "no", + "gps_code": "99NA", + "local_code": "99NA" + }, + { + "id": "15619", + "ident": "99NC", + "type": "heliport", + "name": "Streets Ferry Heliport", + "latitude_deg": "35.21440124511719", + "longitude_deg": "-77.11810302734375", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "New Bern", + "scheduled_service": "no", + "gps_code": "99NC", + "local_code": "99NC" + }, + { + "id": "15620", + "ident": "99NJ", + "type": "heliport", + "name": "Atlantic County Helistop", + "latitude_deg": "39.375701904296875", + "longitude_deg": "-74.53569793701172", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Northfield", + "scheduled_service": "no", + "gps_code": "99NJ", + "local_code": "99NJ" + }, + { + "id": "322008", + "ident": "99NR", + "type": "heliport", + "name": "Tsali Emergency Heliport", + "latitude_deg": "35.391129", + "longitude_deg": "-83.584592", + "elevation_ft": "2102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Bryson City", + "scheduled_service": "no", + "gps_code": "99NR", + "local_code": "99NR" + }, + { + "id": "333420", + "ident": "99NV", + "type": "heliport", + "name": "Mesa View Regional Hospital Heliport", + "latitude_deg": "36.810119", + "longitude_deg": "-114.116905", + "elevation_ft": "1656", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Mesquite", + "scheduled_service": "no", + "gps_code": "99NV", + "local_code": "99NV" + }, + { + "id": "15621", + "ident": "99NY", + "type": "small_airport", + "name": "Hibbard's Airport", + "latitude_deg": "43.2333984375", + "longitude_deg": "-78.78730010986328", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Wilson", + "scheduled_service": "no", + "gps_code": "99NY", + "local_code": "99NY" + }, + { + "id": "15622", + "ident": "99OH", + "type": "heliport", + "name": "Mercy Health Urbana Hospital Heliport", + "latitude_deg": "40.10833", + "longitude_deg": "-83.729174", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Urbana", + "scheduled_service": "no", + "gps_code": "99OH", + "local_code": "99OH", + "keywords": "Mercy Memorial Hospital Heliport" + }, + { + "id": "15623", + "ident": "99OI", + "type": "heliport", + "name": "Fostoria Community Hospital Heliport", + "latitude_deg": "41.16279983520508", + "longitude_deg": "-83.42379760742188", + "elevation_ft": "768", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Fostoria", + "scheduled_service": "no", + "gps_code": "99OI", + "local_code": "99OI" + }, + { + "id": "15624", + "ident": "99OK", + "type": "heliport", + "name": "Warren Cat Heliport", + "latitude_deg": "35.4648017883", + "longitude_deg": "-97.60420227050001", + "elevation_ft": "1297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "gps_code": "99OK", + "local_code": "99OK" + }, + { + "id": "15625", + "ident": "99OR", + "type": "small_airport", + "name": "Lazy F Ranch Airport", + "latitude_deg": "45.6506996155", + "longitude_deg": "-117.669998169", + "elevation_ft": "3710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Wallowa", + "scheduled_service": "no", + "gps_code": "99OR", + "local_code": "99OR" + }, + { + "id": "45757", + "ident": "99PA", + "type": "closed", + "name": "Nielsen Airport", + "latitude_deg": "41.919796", + "longitude_deg": "-77.140524", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tioga", + "scheduled_service": "no", + "keywords": "99PA" + }, + { + "id": "45781", + "ident": "99SC", + "type": "small_airport", + "name": "St. Mathews Airport", + "latitude_deg": "33.689167", + "longitude_deg": "-80.688611", + "elevation_ft": "278", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "St. Mathews", + "scheduled_service": "no", + "gps_code": "99SC", + "local_code": "99SC" + }, + { + "id": "15626", + "ident": "99TA", + "type": "heliport", + "name": "Peacock Willow Creek Heliport", + "latitude_deg": "32.49399948120117", + "longitude_deg": "-97.36969757080078", + "elevation_ft": "786", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Burleson", + "scheduled_service": "no", + "gps_code": "99TA", + "local_code": "99TA" + }, + { + "id": "15627", + "ident": "99TE", + "type": "small_airport", + "name": "Pritchard Airport", + "latitude_deg": "33.60580062866211", + "longitude_deg": "-96.41560363769531", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bells", + "scheduled_service": "no", + "gps_code": "99TE", + "local_code": "99TE" + }, + { + "id": "15628", + "ident": "99TN", + "type": "heliport", + "name": "Haywood County Ems Heliport", + "latitude_deg": "35.60279846191406", + "longitude_deg": "-89.23750305175781", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Brownsville", + "scheduled_service": "no", + "gps_code": "99TN", + "local_code": "99TN" + }, + { + "id": "15629", + "ident": "99TS", + "type": "heliport", + "name": "David Granberry Memorial Hospital Heliport", + "latitude_deg": "33.19820022583008", + "longitude_deg": "-94.6812973022461", + "elevation_ft": "421", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Naples", + "scheduled_service": "no", + "gps_code": "99TS", + "local_code": "99TS" + }, + { + "id": "15630", + "ident": "99TX", + "type": "small_airport", + "name": "Briggs Ranch Airport", + "latitude_deg": "28.30030059814453", + "longitude_deg": "-99.56700134277344", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Catarina", + "scheduled_service": "no", + "gps_code": "99TX", + "local_code": "99TX" + }, + { + "id": "15631", + "ident": "99UT", + "type": "small_airport", + "name": "Sundog Airport", + "latitude_deg": "40.35060119628906", + "longitude_deg": "-109.4010009765625", + "elevation_ft": "4900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Jensen", + "scheduled_service": "no", + "gps_code": "99UT", + "local_code": "99UT" + }, + { + "id": "15632", + "ident": "99VA", + "type": "closed", + "name": "Anderson Airport", + "latitude_deg": "37.815412", + "longitude_deg": "-78.470106", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Scottsville", + "scheduled_service": "no", + "keywords": "99VA" + }, + { + "id": "15633", + "ident": "99WA", + "type": "heliport", + "name": "Providence Medical Plaza Heliport", + "latitude_deg": "46.596206", + "longitude_deg": "-120.52223", + "elevation_ft": "1134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Yakima", + "scheduled_service": "no", + "gps_code": "99WA", + "local_code": "99WA" + }, + { + "id": "325747", + "ident": "99WI", + "type": "small_airport", + "name": "Goins Airport", + "latitude_deg": "44.179166", + "longitude_deg": "-87.631388", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Two Rivers", + "scheduled_service": "no", + "gps_code": "99WI", + "local_code": "99WI" + }, + { + "id": "15635", + "ident": "99WY", + "type": "small_airport", + "name": "Xingu Airstrip", + "latitude_deg": "44.84579849243164", + "longitude_deg": "-107.2770004272461", + "elevation_ft": "4340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Dayton", + "scheduled_service": "no", + "gps_code": "99WY", + "local_code": "99WY" + }, + { + "id": "301239", + "ident": "99XA", + "type": "small_airport", + "name": "Skotz Airfield", + "latitude_deg": "30.863976", + "longitude_deg": "-98.003712", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Briggs", + "scheduled_service": "no", + "gps_code": "99XA" + }, + { + "id": "15636", + "ident": "99XS", + "type": "closed", + "name": "Sam Little International Airport", + "latitude_deg": "32.683498", + "longitude_deg": "-97.805602", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no", + "keywords": "99XS" + }, + { + "id": "15637", + "ident": "99Y", + "type": "small_airport", + "name": "Greeley Municipal Airport", + "latitude_deg": "41.557432", + "longitude_deg": "-98.546151", + "elevation_ft": "2035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Greeley", + "scheduled_service": "no", + "gps_code": "NE46", + "local_code": "NE46", + "keywords": "99Y" + }, + { + "id": "15638", + "ident": "99Z", + "type": "seaplane_base", + "name": "Finger Lake Seaplane Base", + "latitude_deg": "61.60649871826172", + "longitude_deg": "-149.2779998779297", + "elevation_ft": "337", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "99Z", + "local_code": "99Z" + }, + { + "id": "15639", + "ident": "9A2", + "type": "small_airport", + "name": "Powell STOLport", + "latitude_deg": "36.044498443603516", + "longitude_deg": "-84.00440216064453", + "elevation_ft": "992", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Knoxville", + "scheduled_service": "no", + "gps_code": "9A2", + "local_code": "9A2" + }, + { + "id": "15640", + "ident": "9A3", + "type": "small_airport", + "name": "Chuathbaluk Airport", + "latitude_deg": "61.579102", + "longitude_deg": "-159.216003", + "elevation_ft": "244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chuathbaluk", + "scheduled_service": "yes", + "gps_code": "PACH", + "iata_code": "CHU", + "local_code": "9A3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chuathbaluk_Airport" + }, + { + "id": "15641", + "ident": "9A8", + "type": "small_airport", + "name": "Ugashik Airport", + "latitude_deg": "57.523476", + "longitude_deg": "-157.396344", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ugashik", + "scheduled_service": "no", + "iata_code": "UGS", + "local_code": "9A8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ugashik_Airport" + }, + { + "id": "15642", + "ident": "9A9", + "type": "small_airport", + "name": "Shiflet Field", + "latitude_deg": "35.720699310302734", + "longitude_deg": "-82.00980377197266", + "elevation_ft": "1212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "9A9", + "local_code": "9A9" + }, + { + "id": "325120", + "ident": "9AA1", + "type": "small_airport", + "name": "Elk Ranch Airport", + "latitude_deg": "61.68203", + "longitude_deg": "-149.29073", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "9AA1", + "local_code": "9AA1" + }, + { + "id": "325049", + "ident": "9AA9", + "type": "small_airport", + "name": "Airkat Airpark", + "latitude_deg": "59.403598", + "longitude_deg": "-136.008511", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Haines", + "scheduled_service": "no", + "gps_code": "9AA9", + "local_code": "9AA9" + }, + { + "id": "15643", + "ident": "9AK", + "type": "small_airport", + "name": "Totatlanika River Airport", + "latitude_deg": "64.02570343017578", + "longitude_deg": "-148.52200317382812", + "elevation_ft": "2717", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Totatlanika River", + "scheduled_service": "no", + "gps_code": "9AK", + "local_code": "9AK" + }, + { + "id": "15644", + "ident": "9AK0", + "type": "small_airport", + "name": "Sports Mans Paradise Airport", + "latitude_deg": "62.51210021972656", + "longitude_deg": "-143.23500061035156", + "elevation_ft": "3120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tok", + "scheduled_service": "no", + "gps_code": "9AK0", + "local_code": "9AK0" + }, + { + "id": "15645", + "ident": "9AK1", + "type": "seaplane_base", + "name": "Stormy Hill Seaplane Base", + "latitude_deg": "61.63090133666992", + "longitude_deg": "-149.23199462890625", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "9AK1", + "local_code": "9AK1" + }, + { + "id": "15646", + "ident": "9AK2", + "type": "small_airport", + "name": "Kako Airport", + "latitude_deg": "61.89889908", + "longitude_deg": "-161.4380035", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Russian Mission", + "scheduled_service": "no", + "gps_code": "9AK2", + "local_code": "9AK2" + }, + { + "id": "15647", + "ident": "9AK3", + "type": "small_airport", + "name": "Nikolai Creek Airport", + "latitude_deg": "61.01390075683594", + "longitude_deg": "-151.44900512695312", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tyonek", + "scheduled_service": "no", + "gps_code": "9AK3", + "local_code": "9AK3" + }, + { + "id": "15648", + "ident": "9AK4", + "type": "small_airport", + "name": "Arctic Angel Airport", + "latitude_deg": "64.137685", + "longitude_deg": "-145.830889", + "elevation_ft": "1009", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Delta Junction", + "scheduled_service": "no", + "gps_code": "9AK4", + "local_code": "9AK4" + }, + { + "id": "15649", + "ident": "9AK5", + "type": "small_airport", + "name": "Sky Harbor Airport", + "latitude_deg": "61.11650085449219", + "longitude_deg": "-149.81900024414062", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchorage", + "scheduled_service": "no", + "gps_code": "9AK5", + "local_code": "9AK5" + }, + { + "id": "15650", + "ident": "9AK6", + "type": "small_airport", + "name": "Leisurewood Airstrip Owners Assoc Airport", + "latitude_deg": "61.62409973144531", + "longitude_deg": "-149.6479949951172", + "elevation_ft": "366", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "9AK6", + "local_code": "9AK6" + }, + { + "id": "15651", + "ident": "9AK7", + "type": "small_airport", + "name": "Cubdivision Airport", + "latitude_deg": "61.58980178833008", + "longitude_deg": "-149.81700134277344", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "9AK7", + "local_code": "9AK7" + }, + { + "id": "15652", + "ident": "9AK8", + "type": "small_airport", + "name": "Wolf Track Airport", + "latitude_deg": "61.624698638916016", + "longitude_deg": "-149.6820068359375", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "9AK8", + "local_code": "9AK8" + }, + { + "id": "322891", + "ident": "9AL0", + "type": "heliport", + "name": "Grandview Medical Center Heliport", + "latitude_deg": "33.432844", + "longitude_deg": "-86.716059", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Birmingham", + "scheduled_service": "no", + "gps_code": "AL45", + "local_code": "AL45", + "keywords": "9AL0, Trinity Medical Center" + }, + { + "id": "323169", + "ident": "9AL1", + "type": "heliport", + "name": "Brookwood Fed Helipad Heliport", + "latitude_deg": "33.420277", + "longitude_deg": "-86.669444", + "elevation_ft": "606", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Hoover", + "scheduled_service": "no", + "gps_code": "9AL1", + "local_code": "9AL1" + }, + { + "id": "325093", + "ident": "9AL2", + "type": "heliport", + "name": "Holt Dam Heliport", + "latitude_deg": "33.256711", + "longitude_deg": "-87.450491", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Tuscaloosa", + "scheduled_service": "no", + "gps_code": "9AL2", + "local_code": "9AL2" + }, + { + "id": "325110", + "ident": "9AL3", + "type": "heliport", + "name": "Weiss Dam Heliport", + "latitude_deg": "34.132261", + "longitude_deg": "-85.795408", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Leesburg", + "scheduled_service": "no", + "gps_code": "9AL3", + "local_code": "9AL3" + }, + { + "id": "325086", + "ident": "9AL4", + "type": "heliport", + "name": "Henry Dam Heliport", + "latitude_deg": "33.784866", + "longitude_deg": "-86.050671", + "elevation_ft": "509", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Ohatchee", + "scheduled_service": "no", + "gps_code": "9AL4", + "local_code": "9AL4" + }, + { + "id": "325035", + "ident": "9AL5", + "type": "heliport", + "name": "Greene County Steam Plant Heliport", + "latitude_deg": "32.601313", + "longitude_deg": "-87.7835056", + "elevation_ft": "107", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Forkland", + "scheduled_service": "no", + "gps_code": "9AL5", + "local_code": "9AL5" + }, + { + "id": "15653", + "ident": "9AL6", + "type": "closed", + "name": "Lillian Community Heliport", + "latitude_deg": "30.4072", + "longitude_deg": "-87.441803", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Lillian", + "scheduled_service": "no", + "keywords": "9AL6" + }, + { + "id": "323176", + "ident": "9AL7", + "type": "heliport", + "name": "JK Farms LLC Heliport", + "latitude_deg": "32.365276", + "longitude_deg": "-85.811944", + "elevation_ft": "287", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Shorter", + "scheduled_service": "no", + "gps_code": "9AL7", + "local_code": "9AL7", + "keywords": "Mossland Wildflife Farms" + }, + { + "id": "323168", + "ident": "9AL8", + "type": "heliport", + "name": "North Mississippi Medical Center-Hamilton Heliport", + "latitude_deg": "34.127194", + "longitude_deg": "-87.9908334", + "elevation_ft": "441", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "9AL8", + "local_code": "9AL8" + }, + { + "id": "15654", + "ident": "9AL9", + "type": "heliport", + "name": "Liberty Park Heliport", + "latitude_deg": "33.47869873046875", + "longitude_deg": "-86.7020034790039", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Birmingham", + "scheduled_service": "no", + "gps_code": "9AL9", + "local_code": "9AL9" + }, + { + "id": "15655", + "ident": "9AR0", + "type": "small_airport", + "name": "Robertson Airport", + "latitude_deg": "35.18899917602539", + "longitude_deg": "-91.20649719238281", + "elevation_ft": "207", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Mc Crory", + "scheduled_service": "no", + "gps_code": "9AR0", + "local_code": "9AR0" + }, + { + "id": "334232", + "ident": "9AR1", + "type": "small_airport", + "name": "Catlett Farms Airport", + "latitude_deg": "34.933266", + "longitude_deg": "-93.517234", + "elevation_ft": "466", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Briggsville", + "scheduled_service": "no", + "gps_code": "9AR1", + "local_code": "9AR1" + }, + { + "id": "322176", + "ident": "9AR4", + "type": "small_airport", + "name": "Tango 7 Airport", + "latitude_deg": "34.5230917", + "longitude_deg": "-92.167655", + "elevation_ft": "233", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Woodson", + "scheduled_service": "no", + "gps_code": "9AR4", + "local_code": "9AR4" + }, + { + "id": "45304", + "ident": "9AR9", + "type": "small_airport", + "name": "Henry Field", + "latitude_deg": "34.887389", + "longitude_deg": "-91.989486", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Cabot", + "scheduled_service": "no", + "keywords": "9AR9" + }, + { + "id": "15656", + "ident": "9B1", + "type": "closed", + "name": "Marlboro Airport", + "latitude_deg": "42.343201", + "longitude_deg": "-71.509002", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Marlboro", + "scheduled_service": "no", + "iata_code": "MXG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marlboro_Airport", + "keywords": "9B1, MXG" + }, + { + "id": "15657", + "ident": "9B8", + "type": "small_airport", + "name": "Salmon River Airfield", + "latitude_deg": "41.589262", + "longitude_deg": "-72.44246", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Marlborough", + "scheduled_service": "no", + "local_code": "9B8" + }, + { + "id": "15658", + "ident": "9C0", + "type": "seaplane_base", + "name": "Peninsula Point Pullout Seaplane Base", + "latitude_deg": "55.384700775146484", + "longitude_deg": "-131.73800659179688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ketchikan", + "scheduled_service": "no", + "gps_code": "9C0", + "local_code": "9C0" + }, + { + "id": "15660", + "ident": "9CA0", + "type": "small_airport", + "name": "Psk Ranch Airport", + "latitude_deg": "35.11389923095703", + "longitude_deg": "-118.5979995727539", + "elevation_ft": "3840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tehachapi", + "scheduled_service": "no", + "gps_code": "9CA0", + "local_code": "9CA0" + }, + { + "id": "15661", + "ident": "9CA1", + "type": "heliport", + "name": "Barstow Service Center Heliport", + "latitude_deg": "34.875160278", + "longitude_deg": "-116.995977759", + "elevation_ft": "2240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Barstow", + "scheduled_service": "no", + "gps_code": "9CA1", + "local_code": "9CA1" + }, + { + "id": "15662", + "ident": "9CA2", + "type": "heliport", + "name": "Pioneers Memorial Hospital Heliport", + "latitude_deg": "32.958457", + "longitude_deg": "-115.553106", + "elevation_ft": "-99", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Brawley", + "scheduled_service": "no", + "gps_code": "9CA2", + "local_code": "9CA2" + }, + { + "id": "15663", + "ident": "9CA3", + "type": "heliport", + "name": "Recreation and Conference Center Heliport", + "latitude_deg": "34.020472", + "longitude_deg": "-117.927396", + "elevation_ft": "701", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "City of Industry", + "scheduled_service": "no", + "gps_code": "9CA3", + "local_code": "9CA3" + }, + { + "id": "15664", + "ident": "9CA4", + "type": "heliport", + "name": "Hi-Desert Medical Center Heliport", + "latitude_deg": "34.131312", + "longitude_deg": "-116.275822", + "elevation_ft": "2652", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Joshua Tree", + "scheduled_service": "no", + "gps_code": "9CA4", + "local_code": "9CA4", + "keywords": "Hi-Desert Memorial Hospital Heliport" + }, + { + "id": "15665", + "ident": "9CA5", + "type": "heliport", + "name": "California Mart Heliport", + "latitude_deg": "34.04029846191406", + "longitude_deg": "-118.25599670410156", + "elevation_ft": "434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "9CA5", + "local_code": "9CA5" + }, + { + "id": "15666", + "ident": "9CA6", + "type": "small_airport", + "name": "North Valley Airport", + "latitude_deg": "37.869099", + "longitude_deg": "-118.095001", + "elevation_ft": "4960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Dyer", + "scheduled_service": "no", + "gps_code": "9CA6", + "local_code": "9CA6" + }, + { + "id": "15667", + "ident": "9CA7", + "type": "small_airport", + "name": "Harris River Ranch Airport", + "latitude_deg": "36.7672004699707", + "longitude_deg": "-119.43599700927734", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sanger", + "scheduled_service": "no", + "gps_code": "9CA7", + "local_code": "9CA7" + }, + { + "id": "15668", + "ident": "9CA8", + "type": "heliport", + "name": "Boeing Huntington Beach Heliport", + "latitude_deg": "33.74720001220703", + "longitude_deg": "-118.03399658203125", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Huntington Beach", + "scheduled_service": "no", + "gps_code": "9CA8", + "local_code": "9CA8" + }, + { + "id": "15669", + "ident": "9CA9", + "type": "heliport", + "name": "Santa Fe International Corp Heliport", + "latitude_deg": "34.081494", + "longitude_deg": "-118.149842", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Alhambra", + "scheduled_service": "no", + "gps_code": "9CA9", + "local_code": "9CA9" + }, + { + "id": "15670", + "ident": "9CL0", + "type": "small_airport", + "name": "Turlock Airpark", + "latitude_deg": "37.47079849243164", + "longitude_deg": "-120.84400177001953", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Turlock", + "scheduled_service": "no", + "gps_code": "9CL0", + "local_code": "9CL0" + }, + { + "id": "15671", + "ident": "9CL1", + "type": "closed", + "name": "Johnson Ranch Airport", + "latitude_deg": "37.191101", + "longitude_deg": "-120.276001", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Le Grand", + "scheduled_service": "no", + "keywords": "9CL1" + }, + { + "id": "15672", + "ident": "9CL2", + "type": "small_airport", + "name": "Christensen Ranch Airport", + "latitude_deg": "36.87160110473633", + "longitude_deg": "-121.33699798583984", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hollister", + "scheduled_service": "no", + "gps_code": "9CL2", + "local_code": "9CL2" + }, + { + "id": "15673", + "ident": "9CL3", + "type": "small_airport", + "name": "Likely Airport", + "latitude_deg": "41.239489", + "longitude_deg": "-120.526121", + "elevation_ft": "4420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Likely", + "scheduled_service": "no", + "gps_code": "9CL3", + "local_code": "9CL3" + }, + { + "id": "15674", + "ident": "9CL4", + "type": "small_airport", + "name": "Hart Mine Airport", + "latitude_deg": "35.287181", + "longitude_deg": "-115.19439", + "elevation_ft": "4620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ivanpah", + "scheduled_service": "no", + "gps_code": "9CL4", + "local_code": "9CL4" + }, + { + "id": "15675", + "ident": "9CL5", + "type": "closed", + "name": "Blair Strip", + "latitude_deg": "36.27619", + "longitude_deg": "-119.641789", + "elevation_ft": "231", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hanford", + "scheduled_service": "no", + "keywords": "9CL5" + }, + { + "id": "15676", + "ident": "9CL6", + "type": "heliport", + "name": "Children's Hospital Central California Heliport", + "latitude_deg": "36.88325", + "longitude_deg": "-119.801557", + "elevation_ft": "354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Madera", + "scheduled_service": "no", + "gps_code": "9CL6", + "local_code": "9CL6", + "keywords": "Air George Heliport" + }, + { + "id": "15677", + "ident": "9CL7", + "type": "small_airport", + "name": "Old Aerodrome", + "latitude_deg": "39.32490158081055", + "longitude_deg": "-121.35900115966797", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Marysville", + "scheduled_service": "no", + "gps_code": "9CL7", + "local_code": "9CL7" + }, + { + "id": "15678", + "ident": "9CL8", + "type": "heliport", + "name": "Union Eva Heliport", + "latitude_deg": "33.66170120239258", + "longitude_deg": "-118.06199645996094", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Huntington Beach", + "scheduled_service": "no", + "gps_code": "9CL8", + "local_code": "9CL8" + }, + { + "id": "15679", + "ident": "9CL9", + "type": "small_airport", + "name": "Spezia Airport", + "latitude_deg": "38.21659851074219", + "longitude_deg": "-121.53399658203125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Walnut Grove", + "scheduled_service": "no", + "gps_code": "9CL9", + "local_code": "9CL9" + }, + { + "id": "317202", + "ident": "9CN1", + "type": "heliport", + "name": "Hazel Hawkins Memorial Hospital Heliport", + "latitude_deg": "36.834811", + "longitude_deg": "-121.386479", + "elevation_ft": "397", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hollister", + "scheduled_service": "no", + "gps_code": "9CN1", + "local_code": "9CN1" + }, + { + "id": "15680", + "ident": "9CO0", + "type": "heliport", + "name": "Denver Police Headquarters Heliport", + "latitude_deg": "39.737098", + "longitude_deg": "-104.992333", + "elevation_ft": "5350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "gps_code": "9CO0", + "local_code": "9CO0" + }, + { + "id": "15681", + "ident": "9CO1", + "type": "heliport", + "name": "Deer Creek Building Heliport", + "latitude_deg": "39.55609893798828", + "longitude_deg": "-105.16200256347656", + "elevation_ft": "6228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Littleton", + "scheduled_service": "no", + "gps_code": "9CO1", + "local_code": "9CO1" + }, + { + "id": "15682", + "ident": "9CO2", + "type": "small_airport", + "name": "Van Slyke Field", + "latitude_deg": "39.69609833", + "longitude_deg": "-104.4759979", + "elevation_ft": "5400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Watkins", + "scheduled_service": "no", + "gps_code": "9CO2", + "local_code": "9CO2" + }, + { + "id": "15683", + "ident": "9CO3", + "type": "small_airport", + "name": "Hubbard Airport", + "latitude_deg": "38.68330001831055", + "longitude_deg": "-108.98400115966797", + "elevation_ft": "4670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Gateway", + "scheduled_service": "no", + "gps_code": "9CO3", + "local_code": "9CO3" + }, + { + "id": "15684", + "ident": "9CO4", + "type": "heliport", + "name": "Indian Hills/Fire Department Heliport", + "latitude_deg": "39.63669967651367", + "longitude_deg": "-105.26699829101562", + "elevation_ft": "7310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Indian Hills", + "scheduled_service": "no", + "gps_code": "9CO4", + "local_code": "9CO4" + }, + { + "id": "15685", + "ident": "9CO5", + "type": "small_airport", + "name": "Scherler Private Airstrip", + "latitude_deg": "38.576698303222656", + "longitude_deg": "-102.43699645996094", + "elevation_ft": "4126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Brandon", + "scheduled_service": "no", + "gps_code": "9CO5", + "local_code": "9CO5" + }, + { + "id": "15686", + "ident": "9CO6", + "type": "small_airport", + "name": "D Bar D Airport", + "latitude_deg": "39.28129959106445", + "longitude_deg": "-104.572998046875", + "elevation_ft": "6752", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Elizabeth", + "scheduled_service": "no", + "gps_code": "9CO6", + "local_code": "9CO6" + }, + { + "id": "15687", + "ident": "9CO7", + "type": "small_airport", + "name": "Beaugh Airport", + "latitude_deg": "40.340599060058594", + "longitude_deg": "-104.572998046875", + "elevation_ft": "4770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Kersey", + "scheduled_service": "no", + "gps_code": "9CO7", + "local_code": "9CO7" + }, + { + "id": "45325", + "ident": "9CO8", + "type": "small_airport", + "name": "Bijou Bottom Strip", + "latitude_deg": "39.276683", + "longitude_deg": "-104.342093", + "elevation_ft": "6000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Kiowa", + "scheduled_service": "no", + "gps_code": "9CO8", + "local_code": "9CO8", + "keywords": "Herrick Airport" + }, + { + "id": "15688", + "ident": "9CO9", + "type": "small_airport", + "name": "Phylcon Ranch Airport", + "latitude_deg": "39.127886", + "longitude_deg": "-108.143302", + "elevation_ft": "6585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Mesa", + "scheduled_service": "no", + "gps_code": "9CO9", + "local_code": "9CO9" + }, + { + "id": "15689", + "ident": "9F1", + "type": "small_airport", + "name": "Valley Mills Municipal Airport", + "latitude_deg": "31.621000289916992", + "longitude_deg": "-97.42949676513672", + "elevation_ft": "751", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Valley Mills", + "scheduled_service": "no", + "gps_code": "9F1", + "local_code": "9F1" + }, + { + "id": "15690", + "ident": "9F5", + "type": "heliport", + "name": "Tcjc-South Campus Heliport", + "latitude_deg": "32.663700103759766", + "longitude_deg": "-97.2863998413086", + "elevation_ft": "663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "9F5", + "local_code": "9F5" + }, + { + "id": "322012", + "ident": "9FA2", + "type": "heliport", + "name": "Lakeside Medical Center Heliport", + "latitude_deg": "26.723725", + "longitude_deg": "-80.6719694", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Belle Glade", + "scheduled_service": "no", + "gps_code": "9FA2", + "local_code": "9FA2" + }, + { + "id": "355674", + "ident": "9FA3", + "type": "heliport", + "name": "HCA Florida Trinity Hospital Heliport", + "latitude_deg": "28.202422", + "longitude_deg": "-82.66015", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Trinity", + "scheduled_service": "no", + "gps_code": "9FA3", + "local_code": "9FA3" + }, + { + "id": "355676", + "ident": "9FA5", + "type": "small_airport", + "name": "Marshall Swamp Airport", + "latitude_deg": "29.190833", + "longitude_deg": "-82.032713", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ocala", + "scheduled_service": "no", + "gps_code": "9FA5", + "local_code": "9FA5" + }, + { + "id": "15691", + "ident": "9FA8", + "type": "heliport", + "name": "Baptist Hospital Heliport", + "latitude_deg": "25.66699981689453", + "longitude_deg": "-80.33309936523438", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "9FA8", + "local_code": "9FA8" + }, + { + "id": "15692", + "ident": "9FD0", + "type": "seaplane_base", + "name": "Sage Seadrome Seaplane Base", + "latitude_deg": "27.945600509643555", + "longitude_deg": "-81.40339660644531", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Wales", + "scheduled_service": "no", + "gps_code": "9FD0", + "local_code": "9FD0" + }, + { + "id": "15693", + "ident": "9FD1", + "type": "heliport", + "name": "Sacred Heart Hospital Heliport", + "latitude_deg": "30.474932", + "longitude_deg": "-87.211831", + "elevation_ft": "134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pensacola", + "scheduled_service": "no", + "gps_code": "9FD1", + "local_code": "9FD1" + }, + { + "id": "15694", + "ident": "9FD2", + "type": "small_airport", + "name": "Blackwater Creek Ultralightport", + "latitude_deg": "28.136999130249023", + "longitude_deg": "-82.14649963378906", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Plant City", + "scheduled_service": "no", + "gps_code": "9FD2", + "local_code": "9FD2" + }, + { + "id": "15695", + "ident": "9FD3", + "type": "heliport", + "name": "HCA Florida Highlands Hospital Heliport", + "latitude_deg": "27.465446", + "longitude_deg": "-81.431882", + "elevation_ft": "106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sebring", + "scheduled_service": "no", + "gps_code": "9FD3", + "local_code": "9FD3", + "keywords": "Highlands Regional Medical Center Heliport" + }, + { + "id": "15696", + "ident": "9FD5", + "type": "small_airport", + "name": "Thompson's Goinbroke Aero Ranch Airport", + "latitude_deg": "29.386600494384766", + "longitude_deg": "-82.14289855957031", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Citra", + "scheduled_service": "no", + "gps_code": "9FD5", + "local_code": "9FD5" + }, + { + "id": "15697", + "ident": "9FD6", + "type": "heliport", + "name": "Academy Heliport", + "latitude_deg": "27.94657", + "longitude_deg": "-82.420251", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tampa", + "scheduled_service": "no", + "gps_code": "9FD6", + "local_code": "9FD6" + }, + { + "id": "45364", + "ident": "9FD7", + "type": "small_airport", + "name": "Fort Atkinson Plantation Airpark", + "latitude_deg": "30.196482", + "longitude_deg": "-83.311646", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Day", + "scheduled_service": "no", + "gps_code": "9FD7", + "local_code": "9FD7" + }, + { + "id": "15698", + "ident": "9FD8", + "type": "heliport", + "name": "Wesh-Tv Channel 2 Heliport", + "latitude_deg": "28.612499237060547", + "longitude_deg": "-81.3855972290039", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Eatonville", + "scheduled_service": "no", + "gps_code": "9FD8", + "local_code": "9FD8" + }, + { + "id": "15699", + "ident": "9FD9", + "type": "small_airport", + "name": "Buddys Ag Service Airport", + "latitude_deg": "30.1224002838", + "longitude_deg": "-82.9679031372", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Mc Alpin", + "scheduled_service": "no", + "gps_code": "9FD9", + "local_code": "9FD9" + }, + { + "id": "15700", + "ident": "9FL0", + "type": "small_airport", + "name": "Suwannee Belle Airport", + "latitude_deg": "30.09239959716797", + "longitude_deg": "-83.08540344238281", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Live Oak", + "scheduled_service": "no", + "gps_code": "9FL0", + "local_code": "9FL0" + }, + { + "id": "15701", + "ident": "9FL1", + "type": "small_airport", + "name": "Flying W Airranch Airport", + "latitude_deg": "28.6835994720459", + "longitude_deg": "-82.15760040283203", + "elevation_ft": "58", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bushnell", + "scheduled_service": "no", + "gps_code": "9FL1", + "local_code": "9FL1" + }, + { + "id": "15702", + "ident": "9FL2", + "type": "small_airport", + "name": "Saranac Farm Airport", + "latitude_deg": "30.65250015258789", + "longitude_deg": "-84.47470092773438", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Havana", + "scheduled_service": "no", + "gps_code": "9FL2", + "local_code": "9FL2" + }, + { + "id": "15703", + "ident": "9FL3", + "type": "seaplane_base", + "name": "Lake Josephine Seaplane Base", + "latitude_deg": "27.396900177001953", + "longitude_deg": "-81.42669677734375", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sebring", + "scheduled_service": "no", + "gps_code": "9FL3", + "local_code": "9FL3" + }, + { + "id": "15704", + "ident": "9FL4", + "type": "heliport", + "name": "Pasco County Mosquito Heliport", + "latitude_deg": "28.193424", + "longitude_deg": "-82.620376", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Odessa", + "scheduled_service": "no", + "gps_code": "9FL4", + "local_code": "9FL4" + }, + { + "id": "15705", + "ident": "9FL5", + "type": "small_airport", + "name": "Shady Bend Airport", + "latitude_deg": "29.81410026550293", + "longitude_deg": "-82.92569732666016", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bell", + "scheduled_service": "no", + "gps_code": "9FL5", + "local_code": "9FL5" + }, + { + "id": "15706", + "ident": "9FL6", + "type": "heliport", + "name": "Land South Heliport", + "latitude_deg": "27.86639976501465", + "longitude_deg": "-81.96939849853516", + "elevation_ft": "136", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Mulberry", + "scheduled_service": "no", + "gps_code": "9FL6", + "local_code": "9FL6" + }, + { + "id": "15707", + "ident": "9FL7", + "type": "small_airport", + "name": "Oasis Ranger Station - US Government Airport", + "latitude_deg": "25.860072", + "longitude_deg": "-81.034727", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Everglades City", + "scheduled_service": "no", + "gps_code": "9FL7", + "local_code": "9FL7" + }, + { + "id": "15708", + "ident": "9FL8", + "type": "small_airport", + "name": "Finlayson Farm Airport", + "latitude_deg": "30.616600036621094", + "longitude_deg": "-83.65239715576172", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "9FL8", + "local_code": "9FL8" + }, + { + "id": "15709", + "ident": "9FL9", + "type": "heliport", + "name": "Suwannee Hospital Emergency Heliport", + "latitude_deg": "30.29129981994629", + "longitude_deg": "-83.00399780273438", + "elevation_ft": "94", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Live Oak", + "scheduled_service": "no", + "gps_code": "9FL9", + "local_code": "9FL9" + }, + { + "id": "15710", + "ident": "9G0", + "type": "small_airport", + "name": "Buffalo Airfield", + "latitude_deg": "42.86199951171875", + "longitude_deg": "-78.71659851074219", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Buffalo", + "scheduled_service": "no", + "gps_code": "9G0", + "local_code": "9G0" + }, + { + "id": "15711", + "ident": "9G1", + "type": "small_airport", + "name": "Pittsburgh NorthEast Airport", + "latitude_deg": "40.603287", + "longitude_deg": "-79.826038", + "elevation_ft": "1063", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tarentum", + "scheduled_service": "no", + "local_code": "9G1", + "home_link": "https://www.penndot.gov/TravelInPA/airports-pa/Pages/Pittsburgh-Northeast-Airport.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pittsburgh_Northeast_Airport", + "keywords": "Rock Airport" + }, + { + "id": "15712", + "ident": "9G5", + "type": "small_airport", + "name": "Royalton Airport", + "latitude_deg": "43.18199920654297", + "longitude_deg": "-78.55780029296875", + "elevation_ft": "628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Gasport", + "scheduled_service": "no", + "gps_code": "9G5", + "local_code": "9G5" + }, + { + "id": "15713", + "ident": "9G6", + "type": "small_airport", + "name": "Pine Hill Airport", + "latitude_deg": "43.173500061035156", + "longitude_deg": "-78.27459716796875", + "elevation_ft": "669", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Albion", + "scheduled_service": "no", + "gps_code": "9G6", + "local_code": "9G6" + }, + { + "id": "15714", + "ident": "9G9", + "type": "small_airport", + "name": "Gackle Municipal Airport", + "latitude_deg": "46.616600036621094", + "longitude_deg": "-99.16709899902344", + "elevation_ft": "1904", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Gackle", + "scheduled_service": "no", + "gps_code": "9G9", + "local_code": "9G9" + }, + { + "id": "15715", + "ident": "9GA0", + "type": "small_airport", + "name": "Brown Field", + "latitude_deg": "33.057098388671875", + "longitude_deg": "-84.34239959716797", + "elevation_ft": "864", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Zebulon", + "scheduled_service": "no", + "gps_code": "9GA0", + "local_code": "9GA0" + }, + { + "id": "15716", + "ident": "9GA1", + "type": "small_airport", + "name": "Briar Patch Airport", + "latitude_deg": "32.449315", + "longitude_deg": "-81.337781", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Clyo", + "scheduled_service": "no", + "gps_code": "9GA1", + "local_code": "9GA1" + }, + { + "id": "15717", + "ident": "9GA2", + "type": "small_airport", + "name": "Berg Park Aerodrome", + "latitude_deg": "31.8025", + "longitude_deg": "-81.3975", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Midway", + "scheduled_service": "no", + "gps_code": "9GA2", + "local_code": "9GA2" + }, + { + "id": "15718", + "ident": "9GA3", + "type": "small_airport", + "name": "Young Field", + "latitude_deg": "31.839759", + "longitude_deg": "-84.481602", + "elevation_ft": "401", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Dawson", + "scheduled_service": "no", + "gps_code": "9GA3", + "local_code": "9GA3", + "keywords": "Hayes" + }, + { + "id": "15719", + "ident": "9GA4", + "type": "heliport", + "name": "Trico Heliport", + "latitude_deg": "33.66429901123047", + "longitude_deg": "-84.33910369873047", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Conley", + "scheduled_service": "no", + "gps_code": "9GA4", + "local_code": "9GA4" + }, + { + "id": "15720", + "ident": "9GA5", + "type": "small_airport", + "name": "Lowell Field", + "latitude_deg": "32.05820083618164", + "longitude_deg": "-84.29019927978516", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Americus", + "scheduled_service": "no", + "gps_code": "9GA5", + "local_code": "9GA5" + }, + { + "id": "15721", + "ident": "9GA6", + "type": "small_airport", + "name": "Brookline - Meadowmere Airport", + "latitude_deg": "33.099829", + "longitude_deg": "-83.404784", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Milledgeville", + "scheduled_service": "no", + "gps_code": "9GA6", + "local_code": "9GA6" + }, + { + "id": "15722", + "ident": "9GA7", + "type": "heliport", + "name": "Dorminy Medical Center Heliport", + "latitude_deg": "31.696807", + "longitude_deg": "-83.260167", + "elevation_ft": "363", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fitzgerald", + "scheduled_service": "no", + "gps_code": "9GA7", + "local_code": "9GA7", + "keywords": "Fitzgerald Jr Woman's Hospital" + }, + { + "id": "15723", + "ident": "9GA8", + "type": "small_airport", + "name": "Chinaberry Ranch Airport", + "latitude_deg": "32.693599700927734", + "longitude_deg": "-82.8989028930664", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "East Dublin", + "scheduled_service": "no", + "gps_code": "9GA8", + "local_code": "9GA8" + }, + { + "id": "15724", + "ident": "9GA9", + "type": "small_airport", + "name": "Deerfield Landing Airport", + "latitude_deg": "33.218101501464844", + "longitude_deg": "-83.31719970703125", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Eatonton", + "scheduled_service": "no", + "gps_code": "9GA9", + "local_code": "9GA9" + }, + { + "id": "45370", + "ident": "9GE6", + "type": "heliport", + "name": "Linscott Heliport", + "latitude_deg": "33.646167", + "longitude_deg": "-82.65445", + "elevation_ft": "532", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "9GE6", + "local_code": "9GE6" + }, + { + "id": "45373", + "ident": "9GE7", + "type": "small_airport", + "name": "Neely Farms Airport", + "latitude_deg": "33.531389", + "longitude_deg": "-83.791944", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Covington", + "scheduled_service": "no", + "gps_code": "9GE7", + "local_code": "9GE7" + }, + { + "id": "45369", + "ident": "9GE8", + "type": "heliport", + "name": "Legacy Medical Center Heliport", + "latitude_deg": "33.740278", + "longitude_deg": "-84.511389", + "elevation_ft": "857", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "9GE8", + "local_code": "9GE8" + }, + { + "id": "15725", + "ident": "9GE9", + "type": "closed", + "name": "National EMS Headquarters Heliport", + "latitude_deg": "33.649839", + "longitude_deg": "-84.022172", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Conyers", + "scheduled_service": "no", + "gps_code": "9GE9", + "local_code": "9GE9" + }, + { + "id": "15726", + "ident": "9I0", + "type": "small_airport", + "name": "Havana Regional Airport", + "latitude_deg": "40.222725", + "longitude_deg": "-90.022781", + "elevation_ft": "499", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Havana", + "scheduled_service": "no", + "gps_code": "K9I0", + "local_code": "9I0" + }, + { + "id": "15727", + "ident": "9I3", + "type": "small_airport", + "name": "West Liberty Airport", + "latitude_deg": "37.91450119018555", + "longitude_deg": "-83.2520980834961", + "elevation_ft": "934", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "West Liberty", + "scheduled_service": "no", + "gps_code": "9I3", + "local_code": "9I3" + }, + { + "id": "347006", + "ident": "9ID0", + "type": "small_airport", + "name": "Jenkins Creek Ranch Airport", + "latitude_deg": "44.300333", + "longitude_deg": "-116.985722", + "elevation_ft": "2315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Weiser", + "scheduled_service": "no", + "gps_code": "9ID0", + "local_code": "9ID0" + }, + { + "id": "346415", + "ident": "9ID6", + "type": "small_airport", + "name": "Mallard Creek Ranch Airport", + "latitude_deg": "45.613302", + "longitude_deg": "-115.324779", + "elevation_ft": "5200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Elk City", + "scheduled_service": "no", + "gps_code": "9ID6", + "local_code": "9ID6" + }, + { + "id": "15728", + "ident": "9II0", + "type": "closed", + "name": "Shaffer Airport", + "latitude_deg": "41.282501", + "longitude_deg": "-85.438599", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Merriam", + "scheduled_service": "no", + "keywords": "9II0" + }, + { + "id": "15729", + "ident": "9II1", + "type": "small_airport", + "name": "Short Stop Airport", + "latitude_deg": "37.89970016479492", + "longitude_deg": "-87.2177963256836", + "elevation_ft": "395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hatfield", + "scheduled_service": "no", + "gps_code": "9II1", + "local_code": "9II1" + }, + { + "id": "15730", + "ident": "9II2", + "type": "small_airport", + "name": "Nelund Field", + "latitude_deg": "41.6875", + "longitude_deg": "-86.15499877929688", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Mishawaka", + "scheduled_service": "no", + "gps_code": "9II2", + "local_code": "9II2" + }, + { + "id": "15731", + "ident": "9II3", + "type": "small_airport", + "name": "Dillon Airport", + "latitude_deg": "41.5625", + "longitude_deg": "-86.47219848632812", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "North Liberty", + "scheduled_service": "no", + "gps_code": "9II3", + "local_code": "9II3" + }, + { + "id": "15732", + "ident": "9II4", + "type": "small_airport", + "name": "Cruzan Field", + "latitude_deg": "40.17250061035156", + "longitude_deg": "-85.9447021484375", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Arcadia", + "scheduled_service": "no", + "gps_code": "9II4", + "local_code": "9II4" + }, + { + "id": "15733", + "ident": "9II5", + "type": "heliport", + "name": "Rush Memorial Hospital Heliport", + "latitude_deg": "39.622512", + "longitude_deg": "-85.443218", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Rushville", + "scheduled_service": "no", + "gps_code": "9II5", + "local_code": "9II5", + "keywords": "Air Evac 76 Heliport" + }, + { + "id": "15734", + "ident": "9II6", + "type": "closed", + "name": "Williams Heliport", + "latitude_deg": "39.564701", + "longitude_deg": "-85.916702", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Boggstown", + "scheduled_service": "no", + "keywords": "9II6" + }, + { + "id": "15735", + "ident": "9II7", + "type": "heliport", + "name": "Parkview Dekalb Hospital Heliport", + "latitude_deg": "41.369694", + "longitude_deg": "-85.035186", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "9II7", + "local_code": "9II7", + "keywords": "Dekalb Memorial" + }, + { + "id": "15736", + "ident": "9II8", + "type": "small_airport", + "name": "Francis Airport", + "latitude_deg": "39.08610153198242", + "longitude_deg": "-85.37110137939453", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Holton", + "scheduled_service": "no", + "gps_code": "9II8", + "local_code": "9II8" + }, + { + "id": "15737", + "ident": "9IL0", + "type": "small_airport", + "name": "Villiger Restricted Landing Area", + "latitude_deg": "41.09450149536133", + "longitude_deg": "-89.38619995117188", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Henry", + "scheduled_service": "no", + "gps_code": "9IL0", + "local_code": "9IL0" + }, + { + "id": "15738", + "ident": "9IL1", + "type": "heliport", + "name": "Durand Ambulance Service Heliport", + "latitude_deg": "42.430599212646484", + "longitude_deg": "-89.32859802246094", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Durand", + "scheduled_service": "no", + "gps_code": "9IL1", + "local_code": "9IL1" + }, + { + "id": "15739", + "ident": "9IL2", + "type": "small_airport", + "name": "Routh Airport", + "latitude_deg": "40.064998626708984", + "longitude_deg": "-88.02639770507812", + "elevation_ft": "668", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "St Joseph", + "scheduled_service": "no", + "gps_code": "9IL2", + "local_code": "9IL2" + }, + { + "id": "15740", + "ident": "9IL3", + "type": "closed", + "name": "Wm Quinton Restricted Landing Area", + "latitude_deg": "40.282001", + "longitude_deg": "-89.029297", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Heyworth", + "scheduled_service": "no", + "keywords": "9IL3" + }, + { + "id": "15741", + "ident": "9IL4", + "type": "small_airport", + "name": "Thompson Airport", + "latitude_deg": "41.80720138549805", + "longitude_deg": "-89.04810333251953", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Steward", + "scheduled_service": "no", + "gps_code": "9IL4", + "local_code": "9IL4" + }, + { + "id": "15742", + "ident": "9IL5", + "type": "heliport", + "name": "City of Highland Park Heliport", + "latitude_deg": "42.1983135338", + "longitude_deg": "-87.827027142", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Highland Park", + "scheduled_service": "no", + "gps_code": "9IL5", + "local_code": "9IL5" + }, + { + "id": "15743", + "ident": "9IL6", + "type": "small_airport", + "name": "Weishaupt Airport", + "latitude_deg": "40.513099670410156", + "longitude_deg": "-89.36730194091797", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mackinaw", + "scheduled_service": "no", + "gps_code": "9IL6", + "local_code": "9IL6" + }, + { + "id": "15744", + "ident": "9IL7", + "type": "small_airport", + "name": "Black Airport", + "latitude_deg": "41.50979995727539", + "longitude_deg": "-90.18209838867188", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hillsdale", + "scheduled_service": "no", + "gps_code": "9IL7", + "local_code": "9IL7" + }, + { + "id": "15745", + "ident": "9IL8", + "type": "heliport", + "name": "Fairfield Memorial Hospital Heliport", + "latitude_deg": "38.380465", + "longitude_deg": "-88.375233", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "9IL8", + "local_code": "9IL8" + }, + { + "id": "347009", + "ident": "9IL9", + "type": "heliport", + "name": "Silver Cross Hospital Heliport", + "latitude_deg": "41.545597", + "longitude_deg": "-87.981986", + "elevation_ft": "717", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "New Lenox", + "scheduled_service": "no", + "gps_code": "9IL9", + "local_code": "9IL9" + }, + { + "id": "345345", + "ident": "9IN0", + "type": "small_airport", + "name": "Smith Field", + "latitude_deg": "40.453438", + "longitude_deg": "-85.288754", + "elevation_ft": "902", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hartford City", + "scheduled_service": "no", + "gps_code": "9IN0", + "local_code": "9IN0" + }, + { + "id": "15746", + "ident": "9IN1", + "type": "heliport", + "name": "Franciscan Health Indianapolis Heliport", + "latitude_deg": "39.647393", + "longitude_deg": "-86.080041", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "9IN1", + "local_code": "9IN1", + "keywords": "St Francis Hospital-Southcampus" + }, + { + "id": "15747", + "ident": "9IN2", + "type": "small_airport", + "name": "New Liberty Field", + "latitude_deg": "38.55830001831055", + "longitude_deg": "-85.86530303955078", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "New Liberty", + "scheduled_service": "no", + "gps_code": "9IN2", + "local_code": "9IN2" + }, + { + "id": "15748", + "ident": "9IN3", + "type": "closed", + "name": "Johnsons Strawberry Farm Airport", + "latitude_deg": "41.5569", + "longitude_deg": "-87.226402", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hobart", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Johnsons_Strawberry_Farm_Airport", + "keywords": "9IN3" + }, + { + "id": "15749", + "ident": "9IN4", + "type": "small_airport", + "name": "Bandmill Field", + "latitude_deg": "38.53419876098633", + "longitude_deg": "-87.59190368652344", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Decker", + "scheduled_service": "no", + "gps_code": "9IN4", + "local_code": "9IN4" + }, + { + "id": "15750", + "ident": "9IN5", + "type": "heliport", + "name": "Dupont Hospital Heliport", + "latitude_deg": "41.174400329589844", + "longitude_deg": "-85.10780334472656", + "elevation_ft": "828", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Fort Wayne", + "scheduled_service": "no", + "gps_code": "9IN5", + "local_code": "9IN5" + }, + { + "id": "15751", + "ident": "9IN6", + "type": "small_airport", + "name": "Garrard Airport", + "latitude_deg": "39.84080123901367", + "longitude_deg": "-87.33940124511719", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Montezuma", + "scheduled_service": "no", + "gps_code": "9IN6", + "local_code": "9IN6" + }, + { + "id": "15752", + "ident": "9IN7", + "type": "small_airport", + "name": "Zupancic Field", + "latitude_deg": "39.354771", + "longitude_deg": "-86.307371", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Morgantown", + "scheduled_service": "no", + "gps_code": "9IN7", + "local_code": "9IN7" + }, + { + "id": "15753", + "ident": "9IN8", + "type": "small_airport", + "name": "Green Field", + "latitude_deg": "41.22919845581055", + "longitude_deg": "-85.35810089111328", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Churubusco", + "scheduled_service": "no", + "gps_code": "9IN8", + "local_code": "9IN8" + }, + { + "id": "15754", + "ident": "9IN9", + "type": "small_airport", + "name": "Gessie Airport", + "latitude_deg": "40.07780075073242", + "longitude_deg": "-87.51529693603516", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Gessie", + "scheduled_service": "no", + "gps_code": "9IN9", + "local_code": "9IN9" + }, + { + "id": "15755", + "ident": "9IS0", + "type": "small_airport", + "name": "Cedar Ridge Airport", + "latitude_deg": "40.54309844970703", + "longitude_deg": "-91.33070373535156", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Nauvoo", + "scheduled_service": "no", + "gps_code": "9IS0", + "local_code": "9IS0" + }, + { + "id": "15756", + "ident": "9IS2", + "type": "small_airport", + "name": "Schertz Field", + "latitude_deg": "40.482878", + "longitude_deg": "-88.267529", + "elevation_ft": "758", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Gibson City", + "scheduled_service": "no", + "gps_code": "9IS2", + "local_code": "9IS2", + "keywords": "Gibson City Muni" + }, + { + "id": "15757", + "ident": "9IS3", + "type": "heliport", + "name": "St Mary's Hospital - Decatur Heliport", + "latitude_deg": "39.8273010254", + "longitude_deg": "-88.93090057370001", + "elevation_ft": "658", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Decatur", + "scheduled_service": "no", + "gps_code": "9IS3", + "local_code": "9IS3" + }, + { + "id": "15758", + "ident": "9IS4", + "type": "closed", + "name": "St James Hospital and Health Centers Heliport", + "latitude_deg": "41.504617", + "longitude_deg": "-87.639971", + "elevation_ft": "694", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago Heights", + "scheduled_service": "no", + "keywords": "9IS4" + }, + { + "id": "15759", + "ident": "9IS5", + "type": "small_airport", + "name": "J & Y Ultralightport", + "latitude_deg": "41.85810089111328", + "longitude_deg": "-89.40730285644531", + "elevation_ft": "786", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Dixon", + "scheduled_service": "no", + "gps_code": "9IS5", + "local_code": "9IS5" + }, + { + "id": "15760", + "ident": "9IS6", + "type": "closed", + "name": "Evanston Water Plant Heliport", + "latitude_deg": "42.061699", + "longitude_deg": "-87.674004", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Evanston", + "scheduled_service": "no", + "keywords": "9IS6" + }, + { + "id": "15761", + "ident": "9IS7", + "type": "heliport", + "name": "Black Hawk Heliport", + "latitude_deg": "41.45560073852539", + "longitude_deg": "-90.16819763183594", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Geneseo", + "scheduled_service": "no", + "gps_code": "9IS7", + "local_code": "9IS7" + }, + { + "id": "15762", + "ident": "9IS8", + "type": "heliport", + "name": "Gibson Community Hospital Heliport", + "latitude_deg": "40.479655", + "longitude_deg": "-88.369475", + "elevation_ft": "782", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Gibson City", + "scheduled_service": "no", + "gps_code": "9IS8", + "local_code": "9IS8" + }, + { + "id": "15763", + "ident": "9IS9", + "type": "small_airport", + "name": "Johnston Airport", + "latitude_deg": "40.3344993591", + "longitude_deg": "-88.9553985596", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Heyworth", + "scheduled_service": "no", + "gps_code": "9IS9", + "local_code": "9IS9", + "keywords": "Lytleville Orchard Airport" + }, + { + "id": "321968", + "ident": "9JY9", + "type": "heliport", + "name": "Hazard ARH Regional Medical Center Helipad", + "latitude_deg": "37.278465", + "longitude_deg": "-83.229097", + "elevation_ft": "1232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Hazard", + "scheduled_service": "no", + "gps_code": "9JY9", + "local_code": "9JY9", + "home_link": "http://www.arh.org/locations/hazard.aspx" + }, + { + "id": "15764", + "ident": "9K0", + "type": "small_airport", + "name": "Chase County Airport", + "latitude_deg": "38.35860061645508", + "longitude_deg": "-96.55449676513672", + "elevation_ft": "1273", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Cottonwood Falls", + "scheduled_service": "no", + "gps_code": "9K0", + "local_code": "9K0" + }, + { + "id": "15765", + "ident": "9K1", + "type": "small_airport", + "name": "Wilroads Gardens Airport", + "latitude_deg": "37.722801208496094", + "longitude_deg": "-99.92620086669922", + "elevation_ft": "2440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Dodge City", + "scheduled_service": "no", + "gps_code": "9K1", + "local_code": "9K1" + }, + { + "id": "15767", + "ident": "9K5", + "type": "small_airport", + "name": "Slater Memorial Airport", + "latitude_deg": "39.22919845581055", + "longitude_deg": "-93.07240295410156", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Slater", + "scheduled_service": "no", + "gps_code": "9K5", + "local_code": "9K5" + }, + { + "id": "15768", + "ident": "9K6", + "type": "small_airport", + "name": "Patty Field", + "latitude_deg": "37.80039978027344", + "longitude_deg": "-96.79900360107422", + "elevation_ft": "1385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "El Dorado", + "scheduled_service": "no", + "gps_code": "9K6", + "local_code": "9K6" + }, + { + "id": "15769", + "ident": "9KS0", + "type": "heliport", + "name": "Coffeyville Regional Medical Center Heliport", + "latitude_deg": "37.04169845581055", + "longitude_deg": "-95.63909912109375", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Coffeyville", + "scheduled_service": "no", + "gps_code": "9KS0", + "local_code": "9KS0" + }, + { + "id": "15770", + "ident": "9KS1", + "type": "small_airport", + "name": "Hartland Airport", + "latitude_deg": "38.6594444", + "longitude_deg": "-95.0922222", + "elevation_ft": "993", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wellsville", + "scheduled_service": "no", + "gps_code": "9KS1", + "local_code": "9KS1" + }, + { + "id": "15771", + "ident": "9KS2", + "type": "heliport", + "name": "Shawnee Mission Medical Center Heliport", + "latitude_deg": "38.99580001831055", + "longitude_deg": "-94.69110107421875", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Merriam", + "scheduled_service": "no", + "gps_code": "9KS2", + "local_code": "9KS2" + }, + { + "id": "15772", + "ident": "9KS3", + "type": "heliport", + "name": "Kake Helistop", + "latitude_deg": "37.71030044555664", + "longitude_deg": "-97.38839721679688", + "elevation_ft": "1330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wichita", + "scheduled_service": "no", + "gps_code": "9KS3", + "local_code": "9KS3" + }, + { + "id": "15773", + "ident": "9KS4", + "type": "small_airport", + "name": "Rose Port Inc Airport", + "latitude_deg": "39.636395", + "longitude_deg": "-98.359802", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Ionia", + "scheduled_service": "no", + "gps_code": "9KS4", + "local_code": "9KS4", + "keywords": "Rose Pork Inc Airport" + }, + { + "id": "15774", + "ident": "9KS5", + "type": "closed", + "name": "Rush Field", + "latitude_deg": "38.577801", + "longitude_deg": "-98.100304", + "elevation_ft": "1675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Geneseo", + "scheduled_service": "no", + "keywords": "9KS5" + }, + { + "id": "15775", + "ident": "9KS6", + "type": "small_airport", + "name": "Lundgren Hereford Ranch Airport", + "latitude_deg": "38.808549", + "longitude_deg": "-100.570478", + "elevation_ft": "2600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Gove", + "scheduled_service": "no", + "gps_code": "9KS6", + "local_code": "9KS6" + }, + { + "id": "15776", + "ident": "9KS7", + "type": "small_airport", + "name": "Miller Airport", + "latitude_deg": "38.277801513671875", + "longitude_deg": "-95.44329833984375", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Harris", + "scheduled_service": "no", + "gps_code": "9KS7", + "local_code": "9KS7" + }, + { + "id": "15777", + "ident": "9KS9", + "type": "small_airport", + "name": "Dmh Airport", + "latitude_deg": "38.79079818725586", + "longitude_deg": "-97.61830139160156", + "elevation_ft": "1272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Salina", + "scheduled_service": "no", + "gps_code": "9KS9", + "local_code": "9KS9" + }, + { + "id": "325461", + "ident": "9KT0", + "type": "heliport", + "name": "Norton Children's Hospital Heliport", + "latitude_deg": "38.248972", + "longitude_deg": "-85.749472", + "elevation_ft": "546", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "9KT0", + "local_code": "9KT0" + }, + { + "id": "299730", + "ident": "9KY0", + "type": "heliport", + "name": "Clay City Vol. Fire Department Heliport", + "latitude_deg": "38.853083", + "longitude_deg": "-83.917416", + "elevation_ft": "667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Clay City", + "scheduled_service": "no", + "gps_code": "9KY0", + "local_code": "9KY0" + }, + { + "id": "345614", + "ident": "9KY1", + "type": "heliport", + "name": "Mary Breckenridge ARH Heliport", + "latitude_deg": "37.167238", + "longitude_deg": "-83.400425", + "elevation_ft": "482", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Hyden", + "scheduled_service": "no", + "gps_code": "9KY1", + "local_code": "9KY1" + }, + { + "id": "346057", + "ident": "9KY2", + "type": "heliport", + "name": "Air Evac 92 Heliport", + "latitude_deg": "37.761979", + "longitude_deg": "-86.452553", + "elevation_ft": "691", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Hardinsburg", + "scheduled_service": "no", + "gps_code": "9KY2", + "local_code": "9KY2" + }, + { + "id": "345658", + "ident": "9KY3", + "type": "heliport", + "name": "Montgomery County Fire Heliport", + "latitude_deg": "38.063139", + "longitude_deg": "-83.957319", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Mount Sterling", + "scheduled_service": "no", + "gps_code": "9KY3", + "local_code": "9KY3" + }, + { + "id": "346222", + "ident": "9KY4", + "type": "small_airport", + "name": "TEC Field", + "latitude_deg": "37.023019", + "longitude_deg": "-84.12225", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "London", + "scheduled_service": "no", + "gps_code": "9KY4", + "local_code": "9KY4" + }, + { + "id": "345656", + "ident": "9KY5", + "type": "heliport", + "name": "Norton Brownsboro Hospital Heliport", + "latitude_deg": "38.316176", + "longitude_deg": "-85.576217", + "elevation_ft": "679", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "9KY5", + "local_code": "9KY5" + }, + { + "id": "347160", + "ident": "9KY7", + "type": "heliport", + "name": "Milton Fire Rescue Heliport", + "latitude_deg": "38.65708", + "longitude_deg": "-85.317442", + "elevation_ft": "928", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Bedford", + "scheduled_service": "no", + "gps_code": "9KY7", + "local_code": "9KY7" + }, + { + "id": "346429", + "ident": "9KY8", + "type": "heliport", + "name": "Trigg County Hospital Heliport", + "latitude_deg": "36.86636", + "longitude_deg": "-87.821129", + "elevation_ft": "502", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Cadiz", + "scheduled_service": "no", + "gps_code": "9KY8", + "local_code": "9KY8" + }, + { + "id": "15778", + "ident": "9KY9", + "type": "small_airport", + "name": "Paintsville-Prestonsburg-Combs Field", + "latitude_deg": "37.7458992004", + "longitude_deg": "-82.77909851070001", + "elevation_ft": "624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Paintsville", + "scheduled_service": "no", + "gps_code": "9KY9", + "local_code": "9KY9" + }, + { + "id": "15779", + "ident": "9LA0", + "type": "closed", + "name": "Air Logistics (Belle Chasse) Heliport", + "latitude_deg": "29.841", + "longitude_deg": "-90.043999", + "elevation_ft": "1", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Belle Chasse", + "scheduled_service": "no", + "keywords": "9LA0" + }, + { + "id": "15780", + "ident": "9LA1", + "type": "closed", + "name": "Turkey Creek Lake Airport", + "latitude_deg": "31.906799", + "longitude_deg": "-91.7593", + "elevation_ft": "67", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Wisner", + "scheduled_service": "no", + "keywords": "9LA1" + }, + { + "id": "15781", + "ident": "9LA2", + "type": "small_airport", + "name": "Norris Airstrip", + "latitude_deg": "32.1404", + "longitude_deg": "-91.411201", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Newellton", + "scheduled_service": "no", + "keywords": "9LA2" + }, + { + "id": "15782", + "ident": "9LA3", + "type": "heliport", + "name": "Air Logistics (Fourchon) Heliport", + "latitude_deg": "29.116981", + "longitude_deg": "-90.200082", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Golden Meadow", + "scheduled_service": "no", + "gps_code": "9LA3", + "local_code": "9LA3" + }, + { + "id": "15783", + "ident": "9LA4", + "type": "heliport", + "name": "Texaco Heliport", + "latitude_deg": "29.686899185180664", + "longitude_deg": "-91.17179870605469", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Morgan City", + "scheduled_service": "no", + "gps_code": "9LA4", + "local_code": "9LA4" + }, + { + "id": "15784", + "ident": "9LA5", + "type": "heliport", + "name": "Huey P Long Regional Medical Center Heliport", + "latitude_deg": "31.32085", + "longitude_deg": "-92.4407", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Pineville", + "scheduled_service": "no", + "gps_code": "9LA5", + "local_code": "9LA5" + }, + { + "id": "15785", + "ident": "9LA6", + "type": "small_airport", + "name": "Chandler Airport", + "latitude_deg": "31.306801", + "longitude_deg": "-92.611504", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Alexandria", + "scheduled_service": "no", + "gps_code": "9LA6", + "local_code": "9LA6", + "keywords": "99R" + }, + { + "id": "15786", + "ident": "9LA7", + "type": "closed", + "name": "Air Logistics Amelia Base Heliport", + "latitude_deg": "29.668301", + "longitude_deg": "-91.096802", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Morgan City", + "scheduled_service": "no", + "keywords": "9LA7" + }, + { + "id": "15787", + "ident": "9LA8", + "type": "heliport", + "name": "Cornerstone Chemical Company Helistop", + "latitude_deg": "29.958504", + "longitude_deg": "-90.274551", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "South Kenner", + "scheduled_service": "no", + "gps_code": "9LA8", + "local_code": "9LA8", + "keywords": "American Cyanamid Company Helistop" + }, + { + "id": "15788", + "ident": "9LA9", + "type": "small_airport", + "name": "Skyline Airpark", + "latitude_deg": "30.73479", + "longitude_deg": "-90.44458", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Amite", + "scheduled_service": "no", + "gps_code": "9LA9", + "local_code": "9LA9" + }, + { + "id": "15789", + "ident": "9LL0", + "type": "small_airport", + "name": "Krutmeier Airport", + "latitude_deg": "39.81999969482422", + "longitude_deg": "-91.22100067138672", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Payson", + "scheduled_service": "no", + "gps_code": "9LL0", + "local_code": "9LL0" + }, + { + "id": "15790", + "ident": "9LL2", + "type": "small_airport", + "name": "Hepp Airport", + "latitude_deg": "38.03369903564453", + "longitude_deg": "-89.57929992675781", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Cutler", + "scheduled_service": "no", + "gps_code": "9LL2", + "local_code": "9LL2" + }, + { + "id": "15791", + "ident": "9LL3", + "type": "closed", + "name": "John R Reed Airport", + "latitude_deg": "39.549196", + "longitude_deg": "-88.032303", + "elevation_ft": "699", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Ashmore", + "scheduled_service": "no", + "keywords": "9LL3" + }, + { + "id": "15792", + "ident": "9LL5", + "type": "small_airport", + "name": "Tommy's Airpark", + "latitude_deg": "39.651100158691406", + "longitude_deg": "-89.45860290527344", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Edinburg", + "scheduled_service": "no", + "gps_code": "9LL5", + "local_code": "9LL5" + }, + { + "id": "15793", + "ident": "9LL7", + "type": "heliport", + "name": "Brandt Heliport", + "latitude_deg": "39.87730026245117", + "longitude_deg": "-89.92459869384766", + "elevation_ft": "629", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pleasant Plains", + "scheduled_service": "no", + "gps_code": "9LL7", + "local_code": "9LL7" + }, + { + "id": "15794", + "ident": "9LL8", + "type": "heliport", + "name": "Refreshment Services Inc Heliport", + "latitude_deg": "39.86669921875", + "longitude_deg": "-88.88529968261719", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Decatur", + "scheduled_service": "no", + "gps_code": "9LL8", + "local_code": "9LL8" + }, + { + "id": "15795", + "ident": "9LL9", + "type": "closed", + "name": "Townley Farms Airport", + "latitude_deg": "39.491454", + "longitude_deg": "-88.468842", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mattoon", + "scheduled_service": "no", + "keywords": "9LL9" + }, + { + "id": "15796", + "ident": "9LS1", + "type": "small_airport", + "name": "Bayou Meadows Airport", + "latitude_deg": "32.70009994506836", + "longitude_deg": "-91.3833999633789", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Darnell", + "scheduled_service": "no", + "gps_code": "9LS1", + "local_code": "9LS1" + }, + { + "id": "15797", + "ident": "9LS5", + "type": "small_airport", + "name": "Red Beard Dusting Service Airport", + "latitude_deg": "32.28350067138672", + "longitude_deg": "-91.12789916992188", + "elevation_ft": "86", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Tallulah", + "scheduled_service": "no", + "gps_code": "9LS5", + "local_code": "9LS5" + }, + { + "id": "15798", + "ident": "9LS9", + "type": "small_airport", + "name": "4B Ranch Airport", + "latitude_deg": "32.4099006652832", + "longitude_deg": "-91.34870147705078", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Tendal", + "scheduled_service": "no", + "gps_code": "9LS9", + "local_code": "9LS9" + }, + { + "id": "15799", + "ident": "9M0", + "type": "closed", + "name": "North Country Seaplane Base", + "latitude_deg": "47.0149", + "longitude_deg": "-92.168198", + "elevation_ft": "1370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Duluth", + "scheduled_service": "no", + "keywords": "9M0" + }, + { + "id": "15801", + "ident": "9MA8", + "type": "heliport", + "name": "Wayne West Heliport", + "latitude_deg": "41.8468017578125", + "longitude_deg": "-70.76090240478516", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Carver", + "scheduled_service": "no", + "gps_code": "9MA8", + "local_code": "9MA8" + }, + { + "id": "15802", + "ident": "9MD9", + "type": "small_airport", + "name": "G W Farm Airport", + "latitude_deg": "38.85200119018555", + "longitude_deg": "-75.68930053710938", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Denton", + "scheduled_service": "no", + "gps_code": "9MD9", + "local_code": "9MD9" + }, + { + "id": "15803", + "ident": "9MI0", + "type": "heliport", + "name": "St Joseph Mercy Ann Arbor Hospital Heliport", + "latitude_deg": "42.264027", + "longitude_deg": "-83.653692", + "elevation_ft": "837", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ypsilanti", + "scheduled_service": "no", + "gps_code": "9MI0", + "local_code": "9MI0", + "keywords": "CMHS Heliport" + }, + { + "id": "15804", + "ident": "9MI1", + "type": "heliport", + "name": "Custer Main Heliport", + "latitude_deg": "42.33169937133789", + "longitude_deg": "-85.29669952392578", + "elevation_ft": "883", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Battle Creek", + "scheduled_service": "no", + "gps_code": "9MI1", + "local_code": "9MI1" + }, + { + "id": "15805", + "ident": "9MI2", + "type": "small_airport", + "name": "Newport Woods Airport", + "latitude_deg": "41.98789978027344", + "longitude_deg": "-83.30760192871094", + "elevation_ft": "593", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "9MI2", + "local_code": "9MI2" + }, + { + "id": "15806", + "ident": "9MI3", + "type": "heliport", + "name": "Amway Downtown Heliport", + "latitude_deg": "42.965737", + "longitude_deg": "-85.674313", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Grand Rapids", + "scheduled_service": "no", + "gps_code": "9MI3", + "local_code": "9MI3" + }, + { + "id": "15807", + "ident": "9MI4", + "type": "heliport", + "name": "Thorn Health Center Heliport", + "latitude_deg": "41.862300872802734", + "longitude_deg": "-84.35990142822266", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Hudson", + "scheduled_service": "no", + "gps_code": "9MI4", + "local_code": "9MI4" + }, + { + "id": "15808", + "ident": "9MI5", + "type": "small_airport", + "name": "Grass Roots STOLport", + "latitude_deg": "43.23780059814453", + "longitude_deg": "-83.52439880371094", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Millington", + "scheduled_service": "no", + "gps_code": "9MI5", + "local_code": "9MI5" + }, + { + "id": "15809", + "ident": "9MI6", + "type": "closed", + "name": "Trollman's Field", + "latitude_deg": "42.739201", + "longitude_deg": "-83.754997", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Fenton", + "scheduled_service": "no", + "keywords": "9MI6" + }, + { + "id": "15810", + "ident": "9MI7", + "type": "heliport", + "name": "Glen Oaks Heliport", + "latitude_deg": "42.4900016784668", + "longitude_deg": "-83.46520233154297", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Novi", + "scheduled_service": "no", + "gps_code": "9MI7", + "local_code": "9MI7" + }, + { + "id": "15811", + "ident": "9MI8", + "type": "heliport", + "name": "Jott Heliport", + "latitude_deg": "42.6609001159668", + "longitude_deg": "-82.99629974365234", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Utica", + "scheduled_service": "no", + "gps_code": "9MI8", + "local_code": "9MI8" + }, + { + "id": "15812", + "ident": "9MI9", + "type": "heliport", + "name": "Bronson Methodist Hospital Heliport", + "latitude_deg": "42.2869987487793", + "longitude_deg": "-85.5813980102539", + "elevation_ft": "786", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Kalamazoo", + "scheduled_service": "no", + "gps_code": "9MI9", + "local_code": "9MI9" + }, + { + "id": "15813", + "ident": "9MN0", + "type": "seaplane_base", + "name": "Carey Lake Seaplane Base", + "latitude_deg": "47.41830062866211", + "longitude_deg": "-92.82769775390625", + "elevation_ft": "1351", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hibbing", + "scheduled_service": "no", + "gps_code": "9MN0", + "local_code": "9MN0" + }, + { + "id": "15814", + "ident": "9MN1", + "type": "small_airport", + "name": "Troll Farm Airport", + "latitude_deg": "45.61159896850586", + "longitude_deg": "-93.19740295410156", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "9MN1", + "local_code": "9MN1" + }, + { + "id": "15815", + "ident": "9MN2", + "type": "seaplane_base", + "name": "Wabana Seaplane Base", + "latitude_deg": "47.41859817504883", + "longitude_deg": "-93.518798828125", + "elevation_ft": "1319", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Grand Rapids", + "scheduled_service": "no", + "gps_code": "9MN2", + "local_code": "9MN2" + }, + { + "id": "15816", + "ident": "9MN3", + "type": "small_airport", + "name": "Barnesville Municipal Airport", + "latitude_deg": "46.665199279785156", + "longitude_deg": "-96.44120025634766", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Barnesville", + "scheduled_service": "no", + "gps_code": "9MN3", + "local_code": "9MN3" + }, + { + "id": "15817", + "ident": "9MN4", + "type": "heliport", + "name": "Fairview Riverside Medical Center Heliport", + "latitude_deg": "44.967184", + "longitude_deg": "-93.23745", + "elevation_ft": "987", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Minneapolis", + "scheduled_service": "no", + "gps_code": "9MN4", + "local_code": "9MN4" + }, + { + "id": "15818", + "ident": "9MN5", + "type": "small_airport", + "name": "Janssen Airport", + "latitude_deg": "46.71189880371094", + "longitude_deg": "-96.35150146484375", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Barnesville", + "scheduled_service": "no", + "gps_code": "9MN5", + "local_code": "9MN5" + }, + { + "id": "15819", + "ident": "9MN6", + "type": "small_airport", + "name": "Merill L Harris Field", + "latitude_deg": "44.64339828491211", + "longitude_deg": "-93.69969940185547", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Jordan", + "scheduled_service": "no", + "gps_code": "9MN6", + "local_code": "9MN6" + }, + { + "id": "15820", + "ident": "9MN7", + "type": "heliport", + "name": "Watonwan Memorial Hospital Heliport", + "latitude_deg": "43.97999954223633", + "longitude_deg": "-94.61689758300781", + "elevation_ft": "1078", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "St James", + "scheduled_service": "no", + "gps_code": "9MN7", + "local_code": "9MN7" + }, + { + "id": "15821", + "ident": "9MN8", + "type": "closed", + "name": "Whiskey Lake Seaplane Base", + "latitude_deg": "45.973098", + "longitude_deg": "-95.576104", + "elevation_ft": "1354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Brandon", + "scheduled_service": "no", + "keywords": "9MN8" + }, + { + "id": "15822", + "ident": "9MN9", + "type": "closed", + "name": "Tofte Airport", + "latitude_deg": "47.588003", + "longitude_deg": "-90.8235", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Tofte", + "scheduled_service": "no", + "keywords": "9MN9" + }, + { + "id": "15823", + "ident": "9MO0", + "type": "heliport", + "name": "Anheuser/Busch Inc Heliport", + "latitude_deg": "38.59170150756836", + "longitude_deg": "-90.2083969116211", + "elevation_ft": "548", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no", + "gps_code": "9MO0", + "local_code": "9MO0" + }, + { + "id": "15824", + "ident": "9MO1", + "type": "heliport", + "name": "Missouri Baptist Hospital Heliport", + "latitude_deg": "38.63529968261719", + "longitude_deg": "-90.44599914550781", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no", + "gps_code": "9MO1", + "local_code": "9MO1" + }, + { + "id": "15825", + "ident": "9MO2", + "type": "heliport", + "name": "Fitzgibbon Hospital Heliport", + "latitude_deg": "39.11249923706055", + "longitude_deg": "-93.18910217285156", + "elevation_ft": "744", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Marshall", + "scheduled_service": "no", + "gps_code": "9MO2", + "local_code": "9MO2" + }, + { + "id": "15826", + "ident": "9MO3", + "type": "small_airport", + "name": "Lawlor-Justus Airport", + "latitude_deg": "39.641700744628906", + "longitude_deg": "-94.8135986328125", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Faucett", + "scheduled_service": "no", + "gps_code": "9MO3", + "local_code": "9MO3" + }, + { + "id": "15827", + "ident": "9MO4", + "type": "small_airport", + "name": "Worth Airport", + "latitude_deg": "39.97919845581055", + "longitude_deg": "-94.8739013671875", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Savannah", + "scheduled_service": "no", + "gps_code": "9MO4", + "local_code": "9MO4" + }, + { + "id": "15828", + "ident": "9MO5", + "type": "small_airport", + "name": "Wakefield Wings Airport", + "latitude_deg": "37.061199", + "longitude_deg": "-93.099297", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Sparta", + "scheduled_service": "no", + "gps_code": "9MO5", + "local_code": "9MO5", + "keywords": "Hindman" + }, + { + "id": "15829", + "ident": "9MO6", + "type": "small_airport", + "name": "Ivy Bend Airport", + "latitude_deg": "38.19309997558594", + "longitude_deg": "-92.99240112304688", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Stover", + "scheduled_service": "no", + "gps_code": "9MO6", + "local_code": "9MO6" + }, + { + "id": "15830", + "ident": "9MO7", + "type": "closed", + "name": "Urbana Area Medical Heliport", + "latitude_deg": "37.841669", + "longitude_deg": "-93.169615", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Urbana", + "scheduled_service": "no", + "keywords": "9MO7" + }, + { + "id": "15831", + "ident": "9MO8", + "type": "heliport", + "name": "Owensville Ambulance District Heliport", + "latitude_deg": "38.35559844970703", + "longitude_deg": "-91.50240325927734", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Owensville", + "scheduled_service": "no", + "gps_code": "9MO8", + "local_code": "9MO8" + }, + { + "id": "15832", + "ident": "9MO9", + "type": "small_airport", + "name": "Eagle Lodge Airport", + "latitude_deg": "39.54999923706055", + "longitude_deg": "-93.25019836425781", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Sumner", + "scheduled_service": "no", + "gps_code": "9MO9", + "local_code": "9MO9" + }, + { + "id": "321975", + "ident": "9MS7", + "type": "heliport", + "name": "Martin Heliport Area", + "latitude_deg": "30.356515", + "longitude_deg": "-88.507352", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Pascagoula", + "scheduled_service": "no", + "gps_code": "9MS7", + "local_code": "9MS7" + }, + { + "id": "323095", + "ident": "9MS9", + "type": "small_airport", + "name": "Beets Airport", + "latitude_deg": "31.202544", + "longitude_deg": "-89.749755", + "elevation_ft": "238", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "9MS9", + "local_code": "9MS9" + }, + { + "id": "329897", + "ident": "9MT0", + "type": "small_airport", + "name": "Pale Morning Dun Ranch Airport", + "latitude_deg": "45.402953", + "longitude_deg": "-107.774616", + "elevation_ft": "3220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Fort Smith", + "scheduled_service": "no", + "gps_code": "9MT0", + "local_code": "9MT0" + }, + { + "id": "15833", + "ident": "9MT8", + "type": "closed", + "name": "Monger Airport", + "latitude_deg": "45.758099", + "longitude_deg": "-111.083", + "elevation_ft": "4550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Bozeman", + "scheduled_service": "no", + "gps_code": "9MT8", + "local_code": "9MT8" + }, + { + "id": "15834", + "ident": "9MT9", + "type": "small_airport", + "name": "Pierces Airport", + "latitude_deg": "45.79041", + "longitude_deg": "-111.124735", + "elevation_ft": "4450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Belgrade", + "scheduled_service": "no", + "gps_code": "9MT9", + "local_code": "9MT9", + "keywords": "McKenna" + }, + { + "id": "342454", + "ident": "9MU4", + "type": "heliport", + "name": "Homestead Heliport", + "latitude_deg": "39.041357", + "longitude_deg": "-94.199513", + "elevation_ft": "838", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Grain Valley", + "scheduled_service": "no", + "gps_code": "9MU4", + "local_code": "9MU4" + }, + { + "id": "15835", + "ident": "9N1", + "type": "small_airport", + "name": "Van Sant Airport", + "latitude_deg": "40.483559", + "longitude_deg": "-75.10088", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Erwinna", + "scheduled_service": "no", + "local_code": "9N1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Van_Sant_Airport", + "keywords": "Vansant" + }, + { + "id": "15836", + "ident": "9N2", + "type": "seaplane_base", + "name": "Philadelphia Seaplane Base", + "latitude_deg": "39.859001159668", + "longitude_deg": "-75.299598693848", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Essington", + "scheduled_service": "no", + "gps_code": "9N2", + "iata_code": "PSQ", + "local_code": "9N2", + "home_link": "http://www.phillyseaplanebase.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Philadelphia_Seaplane_Base", + "keywords": "Chandler Field" + }, + { + "id": "15837", + "ident": "9N3", + "type": "small_airport", + "name": "Seamans Field", + "latitude_deg": "41.58940124511719", + "longitude_deg": "-75.756103515625", + "elevation_ft": "1209", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Factoryville", + "scheduled_service": "no", + "gps_code": "9N3", + "local_code": "9N3" + }, + { + "id": "15838", + "ident": "9N7", + "type": "small_airport", + "name": "Farmers Pride Airport", + "latitude_deg": "40.442901611328125", + "longitude_deg": "-76.44159698486328", + "elevation_ft": "495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Fredericksburg", + "scheduled_service": "no", + "gps_code": "9N7", + "local_code": "9N7" + }, + { + "id": "15839", + "ident": "9NA2", + "type": "heliport", + "name": "Dakota Clinic Heliport", + "latitude_deg": "46.89360046386719", + "longitude_deg": "-99.29229736328125", + "elevation_ft": "1795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Medina", + "scheduled_service": "no", + "gps_code": "9NA2", + "local_code": "9NA2" + }, + { + "id": "15840", + "ident": "9NA4", + "type": "small_airport", + "name": "Bodmer Airport", + "latitude_deg": "48.666099548339844", + "longitude_deg": "-101.89099884033203", + "elevation_ft": "1885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Kenmare", + "scheduled_service": "no", + "gps_code": "9NA4", + "local_code": "9NA4" + }, + { + "id": "15841", + "ident": "9NC0", + "type": "small_airport", + "name": "Raleigh East Airport", + "latitude_deg": "35.797698974609375", + "longitude_deg": "-78.43699645996094", + "elevation_ft": "313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Knightdale", + "scheduled_service": "no", + "gps_code": "9NC0", + "local_code": "9NC0" + }, + { + "id": "15842", + "ident": "9NC1", + "type": "heliport", + "name": "Atrium Health Stanly Heliport", + "latitude_deg": "35.364665", + "longitude_deg": "-80.193071", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Albemarle", + "scheduled_service": "no", + "gps_code": "9NC1", + "local_code": "9NC1" + }, + { + "id": "15843", + "ident": "9NC2", + "type": "small_airport", + "name": "Flyers Airpark", + "latitude_deg": "35.21820068359375", + "longitude_deg": "-78.79640197753906", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Linden", + "scheduled_service": "no", + "gps_code": "9NC2", + "local_code": "9NC2" + }, + { + "id": "15844", + "ident": "9NC3", + "type": "small_airport", + "name": "Edwards Airport", + "latitude_deg": "35.07080078125", + "longitude_deg": "-80.56639862060547", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "9NC3", + "local_code": "9NC3" + }, + { + "id": "15845", + "ident": "9NC4", + "type": "closed", + "name": "Jiles Field", + "latitude_deg": "36.508843", + "longitude_deg": "-76.665387", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Gates", + "scheduled_service": "no", + "gps_code": "9NC4", + "local_code": "9NC4" + }, + { + "id": "15846", + "ident": "9NC5", + "type": "heliport", + "name": "Saint Luke's Hospital Heliport", + "latitude_deg": "35.2400016784668", + "longitude_deg": "-82.21109771728516", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "9NC5", + "local_code": "9NC5" + }, + { + "id": "15847", + "ident": "9NC6", + "type": "small_airport", + "name": "Sandy Run Acres Airport", + "latitude_deg": "34.274898529052734", + "longitude_deg": "-78.16079711914062", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Maco", + "scheduled_service": "no", + "gps_code": "9NC6", + "local_code": "9NC6" + }, + { + "id": "15848", + "ident": "9NC7", + "type": "small_airport", + "name": "Willow Creek Airport", + "latitude_deg": "35.36970138549805", + "longitude_deg": "-80.44000244140625", + "elevation_ft": "572", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Mt Pleasant", + "scheduled_service": "no", + "gps_code": "9NC7", + "local_code": "9NC7" + }, + { + "id": "15849", + "ident": "9NC8", + "type": "small_airport", + "name": "Eagles Landing Airport", + "latitude_deg": "35.6869010925293", + "longitude_deg": "-79.21880340576172", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Pittsboro", + "scheduled_service": "no", + "gps_code": "9NC8", + "local_code": "9NC8" + }, + { + "id": "15850", + "ident": "9NC9", + "type": "small_airport", + "name": "Meylor Field", + "latitude_deg": "36.209085", + "longitude_deg": "-79.894182", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Greensboro", + "scheduled_service": "no", + "gps_code": "9NC9", + "local_code": "9NC9" + }, + { + "id": "15851", + "ident": "9ND1", + "type": "small_airport", + "name": "Elliott Farms Airport", + "latitude_deg": "48.64799880981445", + "longitude_deg": "-97.26840209960938", + "elevation_ft": "808", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Drayton", + "scheduled_service": "no", + "gps_code": "9ND1", + "local_code": "9ND1" + }, + { + "id": "15852", + "ident": "9ND8", + "type": "small_airport", + "name": "Hinkle Airport", + "latitude_deg": "48.785499572753906", + "longitude_deg": "-97.67230224609375", + "elevation_ft": "908", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Cavalier", + "scheduled_service": "no", + "gps_code": "9ND8", + "local_code": "9ND8" + }, + { + "id": "15853", + "ident": "9NE1", + "type": "small_airport", + "name": "El-Co Airport", + "latitude_deg": "41.14440155029297", + "longitude_deg": "-101.927001953125", + "elevation_ft": "3650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Brule", + "scheduled_service": "no", + "gps_code": "9NE1", + "local_code": "9NE1" + }, + { + "id": "15854", + "ident": "9NE2", + "type": "small_airport", + "name": "Folkerts Airport", + "latitude_deg": "40.29169845581055", + "longitude_deg": "-97.72250366210938", + "elevation_ft": "1610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Carleton", + "scheduled_service": "no", + "gps_code": "9NE2", + "local_code": "9NE2" + }, + { + "id": "15855", + "ident": "9NE3", + "type": "small_airport", + "name": "Davis Ranch Airport", + "latitude_deg": "42.1875", + "longitude_deg": "-101.78900146484375", + "elevation_ft": "3768", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hyannis", + "scheduled_service": "no", + "gps_code": "9NE3", + "local_code": "9NE3" + }, + { + "id": "15856", + "ident": "9NE4", + "type": "small_airport", + "name": "Johnston Field", + "latitude_deg": "41.70330047607422", + "longitude_deg": "-97.74449920654297", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Lindsay", + "scheduled_service": "no", + "gps_code": "9NE4", + "local_code": "9NE4" + }, + { + "id": "15857", + "ident": "9NE6", + "type": "closed", + "name": "Bates Airpark", + "latitude_deg": "41.338299", + "longitude_deg": "-96.088529", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Omaha", + "scheduled_service": "no", + "keywords": "9NE6" + }, + { + "id": "15858", + "ident": "9NE7", + "type": "small_airport", + "name": "Bay Field", + "latitude_deg": "41.43330001831055", + "longitude_deg": "-100.48400115966797", + "elevation_ft": "3000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Stapleton", + "scheduled_service": "no", + "gps_code": "9NE7", + "local_code": "9NE7" + }, + { + "id": "15859", + "ident": "9NE8", + "type": "small_airport", + "name": "Brosius Field", + "latitude_deg": "41.40169906616211", + "longitude_deg": "-100.47899627685547", + "elevation_ft": "3010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Stapleton", + "scheduled_service": "no", + "gps_code": "9NE8", + "local_code": "9NE8" + }, + { + "id": "15860", + "ident": "9NE9", + "type": "small_airport", + "name": "Dog Leg Airport", + "latitude_deg": "40.194400787353516", + "longitude_deg": "-97.56700134277344", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hebron", + "scheduled_service": "no", + "gps_code": "9NE9", + "local_code": "9NE9" + }, + { + "id": "15861", + "ident": "9NJ0", + "type": "closed", + "name": "Lag's Landing Heliport", + "latitude_deg": "40.955399", + "longitude_deg": "-74.070999", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Paramus", + "scheduled_service": "no", + "keywords": "9NJ0" + }, + { + "id": "15862", + "ident": "9NJ1", + "type": "heliport", + "name": "Bound Brook Nr 1 Heliport", + "latitude_deg": "40.56449890136719", + "longitude_deg": "-74.55490112304688", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bound Brook", + "scheduled_service": "no", + "gps_code": "9NJ1", + "local_code": "9NJ1" + }, + { + "id": "15863", + "ident": "9NJ2", + "type": "heliport", + "name": "Bound Brook Nr 2 Heliport", + "latitude_deg": "40.55649948120117", + "longitude_deg": "-74.5624008178711", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bound Brook", + "scheduled_service": "no", + "gps_code": "9NJ2", + "local_code": "9NJ2" + }, + { + "id": "15864", + "ident": "9NJ3", + "type": "heliport", + "name": "At&T Helistop", + "latitude_deg": "40.716800689697266", + "longitude_deg": "-74.54959869384766", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Basking Ridge", + "scheduled_service": "no", + "gps_code": "9NJ3", + "local_code": "9NJ3" + }, + { + "id": "15865", + "ident": "9NJ4", + "type": "heliport", + "name": "Robert Wood Johnson Hospital Heliport", + "latitude_deg": "40.495601654052734", + "longitude_deg": "-74.45169830322266", + "elevation_ft": "199", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "New Brunswick", + "scheduled_service": "no", + "gps_code": "9NJ4", + "local_code": "9NJ4" + }, + { + "id": "15866", + "ident": "9NJ5", + "type": "closed", + "name": "Stallone Airport", + "latitude_deg": "39.680099", + "longitude_deg": "-75.252403", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Harrisonville", + "scheduled_service": "no", + "gps_code": "9NJ5", + "local_code": "9NJ5" + }, + { + "id": "15867", + "ident": "9NJ6", + "type": "small_airport", + "name": "Halka Nurseries Airport", + "latitude_deg": "39.36640167236328", + "longitude_deg": "-75.26830291748047", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Fairton", + "scheduled_service": "no", + "gps_code": "9NJ6", + "local_code": "9NJ6" + }, + { + "id": "15868", + "ident": "9NJ7", + "type": "closed", + "name": "RCA Sommerville Heliport", + "latitude_deg": "40.573711", + "longitude_deg": "-74.667115", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bridgewater", + "scheduled_service": "no", + "keywords": "9NJ7" + }, + { + "id": "15869", + "ident": "9NJ8", + "type": "small_airport", + "name": "High Meadow Farms Airport", + "latitude_deg": "40.89565", + "longitude_deg": "-75.00359", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Blairstown", + "scheduled_service": "no", + "gps_code": "9NJ8", + "local_code": "9NJ8" + }, + { + "id": "15870", + "ident": "9NJ9", + "type": "closed", + "name": "Ash Personal Heliport", + "latitude_deg": "39.715403", + "longitude_deg": "-74.131203", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Loveladies", + "scheduled_service": "no", + "keywords": "9NJ9" + }, + { + "id": "350790", + "ident": "9NK2", + "type": "heliport", + "name": "UHS Chenango Memorial Hospital Heliport", + "latitude_deg": "42.542188", + "longitude_deg": "-75.526859", + "elevation_ft": "1090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Norwich", + "scheduled_service": "no", + "gps_code": "9NK2", + "local_code": "9NK2" + }, + { + "id": "322205", + "ident": "9NK4", + "type": "small_airport", + "name": "Greig Farm Airport", + "latitude_deg": "42.024318", + "longitude_deg": "-73.856292", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Red Hook", + "scheduled_service": "no", + "gps_code": "9NK4", + "local_code": "9NK4" + }, + { + "id": "344640", + "ident": "9NR0", + "type": "small_airport", + "name": "Smoke and Wings Airport", + "latitude_deg": "36.218055", + "longitude_deg": "-79.177222", + "elevation_ft": "741", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hillsborough", + "scheduled_service": "no", + "gps_code": "9NR0", + "local_code": "9NR0" + }, + { + "id": "346695", + "ident": "9NR4", + "type": "small_airport", + "name": "Wolf Pit Airport", + "latitude_deg": "35.355102", + "longitude_deg": "-80.431461", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Mount Pleasant", + "scheduled_service": "no", + "gps_code": "9NR4", + "local_code": "9NR4" + }, + { + "id": "45695", + "ident": "9NR7", + "type": "small_airport", + "name": "Triple F Airpark", + "latitude_deg": "35.018333", + "longitude_deg": "-78.565833", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Salemburg", + "scheduled_service": "no", + "gps_code": "9NR7", + "local_code": "9NR7" + }, + { + "id": "45696", + "ident": "9NR8", + "type": "small_airport", + "name": "Buie Field", + "latitude_deg": "34.793333", + "longitude_deg": "-79.193611", + "elevation_ft": "203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Red Springs", + "scheduled_service": "no", + "gps_code": "9NR8", + "local_code": "9NR8" + }, + { + "id": "45675", + "ident": "9NR9", + "type": "heliport", + "name": "210 Investors Heliport", + "latitude_deg": "34.358889", + "longitude_deg": "-77.860556", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Castle Hayne", + "scheduled_service": "no", + "gps_code": "9NR9", + "local_code": "9NR9" + }, + { + "id": "345719", + "ident": "9NY0", + "type": "heliport", + "name": "Bumblebee Heliport", + "latitude_deg": "41.391841", + "longitude_deg": "-74.472107", + "elevation_ft": "494", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Slate Hill", + "scheduled_service": "no", + "gps_code": "9NY0", + "local_code": "9NY0" + }, + { + "id": "15871", + "ident": "9NY1", + "type": "heliport", + "name": "Wilson Memorial Regional Medical Center Heliport", + "latitude_deg": "42.113927", + "longitude_deg": "-75.957742", + "elevation_ft": "911", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Johnson City", + "scheduled_service": "no", + "gps_code": "9NY1", + "local_code": "9NY1" + }, + { + "id": "15872", + "ident": "9NY2", + "type": "heliport", + "name": "Westfield Memorial Hospital Heliport", + "latitude_deg": "42.329498291015625", + "longitude_deg": "-79.57060241699219", + "elevation_ft": "756", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Westfield", + "scheduled_service": "no", + "gps_code": "9NY2", + "local_code": "9NY2" + }, + { + "id": "15873", + "ident": "9NY3", + "type": "heliport", + "name": "Susquehanna Heliport", + "latitude_deg": "42.098944", + "longitude_deg": "-76.22401", + "elevation_ft": "884", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Owego", + "scheduled_service": "no", + "gps_code": "9NY3", + "local_code": "9NY3" + }, + { + "id": "15874", + "ident": "9NY4", + "type": "small_airport", + "name": "Kennedy Airfield", + "latitude_deg": "42.100799560546875", + "longitude_deg": "-79.08180236816406", + "elevation_ft": "1760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Kennedy", + "scheduled_service": "no", + "gps_code": "9NY4", + "local_code": "9NY4" + }, + { + "id": "15875", + "ident": "9NY5", + "type": "closed", + "name": "Norman Kurrass Contractor Heliport", + "latitude_deg": "40.800567", + "longitude_deg": "-72.918055", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Yaphank", + "scheduled_service": "no", + "keywords": "9NY5" + }, + { + "id": "15876", + "ident": "9NY6", + "type": "small_airport", + "name": "Mason Airway Airport", + "latitude_deg": "42.324798583984375", + "longitude_deg": "-74.98629760742188", + "elevation_ft": "2170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Treadwell", + "scheduled_service": "no", + "gps_code": "9NY6", + "local_code": "9NY6" + }, + { + "id": "15877", + "ident": "9NY7", + "type": "small_airport", + "name": "Hart Airport", + "latitude_deg": "43.032452", + "longitude_deg": "-74.151013", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Broadalbin", + "scheduled_service": "no", + "gps_code": "9NY7", + "local_code": "9NY7" + }, + { + "id": "15878", + "ident": "9NY8", + "type": "heliport", + "name": "Thomson Industries Inc Heliport", + "latitude_deg": "40.84230041503906", + "longitude_deg": "-73.70120239257812", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Port Washington", + "scheduled_service": "no", + "gps_code": "9NY8", + "local_code": "9NY8" + }, + { + "id": "15879", + "ident": "9NY9", + "type": "heliport", + "name": "Poughkeepsie Main Plant Heliport", + "latitude_deg": "41.6572827552", + "longitude_deg": "-73.935649395", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Poughkeepsie", + "scheduled_service": "no", + "gps_code": "9NY9", + "local_code": "9NY9" + }, + { + "id": "15880", + "ident": "9OA2", + "type": "heliport", + "name": "Hueston Woods Lodge Heliport", + "latitude_deg": "39.582801818847656", + "longitude_deg": "-84.76270294189453", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Oxford", + "scheduled_service": "no", + "gps_code": "9OA2", + "local_code": "9OA2" + }, + { + "id": "15881", + "ident": "9OA3", + "type": "small_airport", + "name": "Bellville Dam Landing Strip", + "latitude_deg": "39.08340072631836", + "longitude_deg": "-81.77760314941406", + "elevation_ft": "591", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Long Bottom", + "scheduled_service": "no", + "gps_code": "9OA3", + "local_code": "9OA3" + }, + { + "id": "15882", + "ident": "9OA4", + "type": "small_airport", + "name": "Gilmer Airport", + "latitude_deg": "39.830299377441406", + "longitude_deg": "-84.50969696044922", + "elevation_ft": "1045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lewisburg", + "scheduled_service": "no", + "gps_code": "9OA4", + "local_code": "9OA4" + }, + { + "id": "15883", + "ident": "9OA5", + "type": "small_airport", + "name": "Buckeye Executive Airport", + "latitude_deg": "39.962318420410156", + "longitude_deg": "-82.54998016357422", + "elevation_ft": "914", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Hebron", + "scheduled_service": "no", + "gps_code": "9OA5", + "local_code": "9OA5" + }, + { + "id": "15884", + "ident": "9OA6", + "type": "heliport", + "name": "Burr Oak Lodge Heliport", + "latitude_deg": "39.53030014038086", + "longitude_deg": "-82.0333023071289", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Glouster", + "scheduled_service": "no", + "gps_code": "9OA6", + "local_code": "9OA6" + }, + { + "id": "15885", + "ident": "9OA7", + "type": "small_airport", + "name": "Jenkins Airport", + "latitude_deg": "41.30979919433594", + "longitude_deg": "-83.11599731445312", + "elevation_ft": "655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Fremont", + "scheduled_service": "no", + "gps_code": "9OA7", + "local_code": "9OA7" + }, + { + "id": "15886", + "ident": "9OA8", + "type": "small_airport", + "name": "Crocker Airport", + "latitude_deg": "41.28229904174805", + "longitude_deg": "-81.9489974975586", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbia Station", + "scheduled_service": "no", + "gps_code": "9OA8", + "local_code": "9OA8" + }, + { + "id": "15887", + "ident": "9OA9", + "type": "small_airport", + "name": "Bender Airport", + "latitude_deg": "40.62139892578125", + "longitude_deg": "-82.53379821777344", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bellville", + "scheduled_service": "no", + "gps_code": "9OA9", + "local_code": "9OA9" + }, + { + "id": "328149", + "ident": "9OG1", + "type": "heliport", + "name": "Barrigada Readiness Center Heliport", + "latitude_deg": "13.475158", + "longitude_deg": "144.815983", + "elevation_ft": "311", + "continent": "OC", + "iso_country": "GU", + "iso_region": "GU-U-A", + "municipality": "Barrigada", + "scheduled_service": "no", + "gps_code": "9OG1", + "local_code": "9OG1" + }, + { + "id": "15888", + "ident": "9OH1", + "type": "small_airport", + "name": "Haar Airport", + "latitude_deg": "41.455174", + "longitude_deg": "-83.264798", + "elevation_ft": "617", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Elmore", + "scheduled_service": "no", + "gps_code": "9OH1", + "local_code": "9OH1" + }, + { + "id": "15889", + "ident": "9OH2", + "type": "small_airport", + "name": "Toussaint Airpark", + "latitude_deg": "41.51559829711914", + "longitude_deg": "-83.30580139160156", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Elmore", + "scheduled_service": "no", + "gps_code": "9OH2", + "local_code": "9OH2" + }, + { + "id": "15890", + "ident": "9OH3", + "type": "heliport", + "name": "C.C.A. Heliport", + "latitude_deg": "39.28340148925781", + "longitude_deg": "-84.29769897460938", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Loveland", + "scheduled_service": "no", + "gps_code": "9OH3", + "local_code": "9OH3" + }, + { + "id": "15891", + "ident": "9OH4", + "type": "closed", + "name": "Richards Airport", + "latitude_deg": "41.4039", + "longitude_deg": "-82.106499", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Elyria", + "scheduled_service": "no", + "keywords": "9OH4" + }, + { + "id": "15892", + "ident": "9OH5", + "type": "closed", + "name": "Miami Valley Heliport", + "latitude_deg": "40.0481", + "longitude_deg": "-83.227097", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Troy", + "scheduled_service": "no", + "keywords": "9OH5" + }, + { + "id": "15893", + "ident": "9OH6", + "type": "closed", + "name": "Weaver Airport", + "latitude_deg": "41.035301", + "longitude_deg": "-83.569001", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Findlay", + "scheduled_service": "no", + "keywords": "9OH6" + }, + { + "id": "15894", + "ident": "9OH7", + "type": "small_airport", + "name": "Lutz Airport", + "latitude_deg": "40.961700439453125", + "longitude_deg": "-83.59519958496094", + "elevation_ft": "808", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Findlay", + "scheduled_service": "no", + "gps_code": "9OH7", + "local_code": "9OH7" + }, + { + "id": "15895", + "ident": "9OH8", + "type": "small_airport", + "name": "Ferrell Airport", + "latitude_deg": "40.97639846801758", + "longitude_deg": "-83.6416015625", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Findlay", + "scheduled_service": "no", + "gps_code": "9OH8", + "local_code": "9OH8" + }, + { + "id": "15896", + "ident": "9OH9", + "type": "closed", + "name": "Forest Field", + "latitude_deg": "40.828701", + "longitude_deg": "-83.513802", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Forest", + "scheduled_service": "no", + "keywords": "9OH9" + }, + { + "id": "15897", + "ident": "9OI1", + "type": "heliport", + "name": "Dice's Personal Heliport", + "latitude_deg": "41.60060119628906", + "longitude_deg": "-83.689697265625", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Maumee", + "scheduled_service": "no", + "gps_code": "9OI1", + "local_code": "9OI1" + }, + { + "id": "15898", + "ident": "9OI3", + "type": "small_airport", + "name": "Johns Landing Airport", + "latitude_deg": "39.89860153198242", + "longitude_deg": "-82.11029815673828", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Zanesville", + "scheduled_service": "no", + "gps_code": "9OI3", + "local_code": "9OI3" + }, + { + "id": "15899", + "ident": "9OI4", + "type": "heliport", + "name": "Quail Lakes Heliport", + "latitude_deg": "39.45479965209961", + "longitude_deg": "-83.78130340576172", + "elevation_ft": "1057", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wilmington", + "scheduled_service": "no", + "gps_code": "9OI4", + "local_code": "9OI4" + }, + { + "id": "15900", + "ident": "9OI5", + "type": "small_airport", + "name": "Transportation Research Center of Ohio Airport", + "latitude_deg": "40.308101654052734", + "longitude_deg": "-83.54170227050781", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "East Liberty", + "scheduled_service": "no", + "gps_code": "9OI5", + "local_code": "9OI5" + }, + { + "id": "15901", + "ident": "9OI6", + "type": "small_airport", + "name": "Nesta Airport", + "latitude_deg": "40.6328010559082", + "longitude_deg": "-82.17680358886719", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Loudenville", + "scheduled_service": "no", + "gps_code": "9OI6", + "local_code": "9OI6" + }, + { + "id": "15902", + "ident": "9OI7", + "type": "small_airport", + "name": "Bayes Airport", + "latitude_deg": "40.3400993347168", + "longitude_deg": "-83.28410339355469", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Magnetic Springs", + "scheduled_service": "no", + "gps_code": "9OI7", + "local_code": "9OI7" + }, + { + "id": "15903", + "ident": "9OI8", + "type": "small_airport", + "name": "Brothers Aviation Airport", + "latitude_deg": "40.031558", + "longitude_deg": "-81.465425", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "9OI8", + "local_code": "9OI8" + }, + { + "id": "15904", + "ident": "9OI9", + "type": "heliport", + "name": "Riverside Methodist Hospital Heliport", + "latitude_deg": "40.03120040893555", + "longitude_deg": "-83.03489685058594", + "elevation_ft": "746", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "9OI9", + "local_code": "9OI9" + }, + { + "id": "15905", + "ident": "9OK0", + "type": "heliport", + "name": "Governor's Mansion Heliport", + "latitude_deg": "35.49449920654297", + "longitude_deg": "-97.52110290527344", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "gps_code": "9OK0", + "local_code": "9OK0" + }, + { + "id": "15906", + "ident": "9OK1", + "type": "heliport", + "name": "OMH Heliport", + "latitude_deg": "35.481196", + "longitude_deg": "-97.502711", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "gps_code": "9OK1", + "local_code": "9OK1" + }, + { + "id": "15907", + "ident": "9OK2", + "type": "heliport", + "name": "Pawnee Municipal Hospital Heliport", + "latitude_deg": "36.33340072631836", + "longitude_deg": "-96.80030059814453", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Pawnee", + "scheduled_service": "no", + "gps_code": "9OK2", + "local_code": "9OK2" + }, + { + "id": "15908", + "ident": "9OK3", + "type": "small_airport", + "name": "Flying Eagle Estates Airport", + "latitude_deg": "36.70370101928711", + "longitude_deg": "-95.84049987792969", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Bartlesville", + "scheduled_service": "no", + "gps_code": "9OK3", + "local_code": "9OK3" + }, + { + "id": "15909", + "ident": "9OK4", + "type": "closed", + "name": "Vo-Tech Heliport", + "latitude_deg": "36.091801", + "longitude_deg": "-95.216904", + "elevation_ft": "676", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tulsa", + "scheduled_service": "no", + "keywords": "9OK4" + }, + { + "id": "15910", + "ident": "9OK5", + "type": "small_airport", + "name": "Diamond C Ranch Airport", + "latitude_deg": "34.77830123901367", + "longitude_deg": "-96.92749786376953", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Stratford", + "scheduled_service": "no", + "gps_code": "9OK5", + "local_code": "9OK5" + }, + { + "id": "15911", + "ident": "9OK6", + "type": "heliport", + "name": "Community Hospital Lakeview Heliport", + "latitude_deg": "35.3109016418457", + "longitude_deg": "-95.5907974243164", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Eufaula", + "scheduled_service": "no", + "gps_code": "9OK6", + "local_code": "9OK6" + }, + { + "id": "15912", + "ident": "9OK7", + "type": "small_airport", + "name": "Cimarron Strip", + "latitude_deg": "36.18479919433594", + "longitude_deg": "-96.55030059814453", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Jennings", + "scheduled_service": "no", + "gps_code": "9OK7", + "local_code": "9OK7" + }, + { + "id": "15913", + "ident": "9OK8", + "type": "closed", + "name": "Central Park Helistop", + "latitude_deg": "35.533383", + "longitude_deg": "-97.500604", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "keywords": "9OK8" + }, + { + "id": "15914", + "ident": "9OK9", + "type": "closed", + "name": "Strang Airpark", + "latitude_deg": "35.544498", + "longitude_deg": "-94.486297", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Short", + "scheduled_service": "no", + "keywords": "9OK9" + }, + { + "id": "15915", + "ident": "9OR0", + "type": "small_airport", + "name": "Lafferty Field", + "latitude_deg": "44.315101623535156", + "longitude_deg": "-123.0250015258789", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Brownsville", + "scheduled_service": "no", + "gps_code": "9OR0", + "local_code": "9OR0" + }, + { + "id": "15916", + "ident": "9OR1", + "type": "small_airport", + "name": "Shaniko Ranch Airport", + "latitude_deg": "45.002899169921875", + "longitude_deg": "-120.73999786376953", + "elevation_ft": "3300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Shaniko", + "scheduled_service": "no", + "gps_code": "9OR1", + "local_code": "9OR1" + }, + { + "id": "15917", + "ident": "9OR2", + "type": "heliport", + "name": "Reforestation Services Heliport", + "latitude_deg": "44.86819839477539", + "longitude_deg": "-123.02300262451172", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "9OR2", + "local_code": "9OR2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Reforestation_Services_Heliport" + }, + { + "id": "15918", + "ident": "9OR3", + "type": "heliport", + "name": "Sky Lakes Medical Center Heliport", + "latitude_deg": "42.25400161739999", + "longitude_deg": "-121.783996582", + "elevation_ft": "4420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Klamath Falls", + "scheduled_service": "no", + "gps_code": "9OR3", + "local_code": "9OR3" + }, + { + "id": "15919", + "ident": "9OR4", + "type": "small_airport", + "name": "King's Airport", + "latitude_deg": "45.93370056152344", + "longitude_deg": "-118.447998046875", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Milton/Freewater", + "scheduled_service": "no", + "gps_code": "9OR4", + "local_code": "9OR4" + }, + { + "id": "15920", + "ident": "9OR5", + "type": "heliport", + "name": "Portland Adventist Medical Center Heliport", + "latitude_deg": "45.51399994", + "longitude_deg": "-122.5579987", + "elevation_ft": "322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "9OR5", + "local_code": "9OR5" + }, + { + "id": "15921", + "ident": "9OR6", + "type": "heliport", + "name": "Oregon Health Sciences University Emerg Heliport", + "latitude_deg": "45.4991281091", + "longitude_deg": "-122.685334682", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "9OR6", + "local_code": "9OR6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oregon_Health_%26_Science_University_Emergency_Heliport" + }, + { + "id": "45726", + "ident": "9OR7", + "type": "heliport", + "name": "Fishback Heliport", + "latitude_deg": "45.603889", + "longitude_deg": "-123.078611", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Banks", + "scheduled_service": "no", + "gps_code": "9OR7", + "local_code": "9OR7" + }, + { + "id": "15922", + "ident": "9OR8", + "type": "small_airport", + "name": "Wooldridge Agstrip Airport", + "latitude_deg": "44.732601165771484", + "longitude_deg": "-123.05599975585938", + "elevation_ft": "205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "9OR8", + "local_code": "9OR8" + }, + { + "id": "15923", + "ident": "9OR9", + "type": "heliport", + "name": "Wallace Heliport", + "latitude_deg": "45.55820083618164", + "longitude_deg": "-122.53500366210938", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "9OR9", + "local_code": "9OR9" + }, + { + "id": "15924", + "ident": "9PA0", + "type": "small_airport", + "name": "Lance Airport", + "latitude_deg": "40.18730163574219", + "longitude_deg": "-75.59020233154297", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Parker Ford", + "scheduled_service": "no", + "gps_code": "9PA0", + "local_code": "9PA0" + }, + { + "id": "15925", + "ident": "9PA1", + "type": "closed", + "name": "Carbondale-Clifford Airport", + "latitude_deg": "41.652223", + "longitude_deg": "-75.581446", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Carbondale", + "scheduled_service": "no", + "keywords": "9PA1, 8N6" + }, + { + "id": "15926", + "ident": "9PA2", + "type": "small_airport", + "name": "Old Plains Airport", + "latitude_deg": "40.388566", + "longitude_deg": "-75.441811", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pennsburg", + "scheduled_service": "no", + "gps_code": "9PA2", + "local_code": "9PA2" + }, + { + "id": "15927", + "ident": "9PA3", + "type": "closed", + "name": "Meadow Strip Ultralightport", + "latitude_deg": "40.475142", + "longitude_deg": "-75.309981", + "elevation_ft": "499", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Richlandtown", + "scheduled_service": "no", + "keywords": "9PA3" + }, + { + "id": "15928", + "ident": "9PA4", + "type": "closed", + "name": "Strawbridge & Clothier 8th & Market Helistop", + "latitude_deg": "39.951415", + "longitude_deg": "-75.154037", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "9PA4", + "local_code": "9PA4" + }, + { + "id": "15929", + "ident": "9PA5", + "type": "small_airport", + "name": "Solt Field", + "latitude_deg": "40.78010177612305", + "longitude_deg": "-75.71630096435547", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Leighton", + "scheduled_service": "no", + "gps_code": "9PA5", + "local_code": "9PA5" + }, + { + "id": "15930", + "ident": "9PA6", + "type": "heliport", + "name": "State Police Area Six Heliport", + "latitude_deg": "40.03340148925781", + "longitude_deg": "-75.24960327148438", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "9PA6", + "local_code": "9PA6" + }, + { + "id": "15931", + "ident": "9PA7", + "type": "small_airport", + "name": "Keystone Airport", + "latitude_deg": "39.77280044555664", + "longitude_deg": "-79.21109771728516", + "elevation_ft": "2531", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Fort Hill", + "scheduled_service": "no", + "gps_code": "9PA7", + "local_code": "9PA7" + }, + { + "id": "15932", + "ident": "9PA8", + "type": "heliport", + "name": "Thomas Jefferson University Hospital Heliport", + "latitude_deg": "39.94896", + "longitude_deg": "-75.158688", + "elevation_ft": "253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "9PA8", + "local_code": "9PA8" + }, + { + "id": "15933", + "ident": "9PA9", + "type": "heliport", + "name": "Lankenau Hospital Heliport", + "latitude_deg": "39.98789978027344", + "longitude_deg": "-75.26069641113281", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "9PA9", + "local_code": "9PA9" + }, + { + "id": "15934", + "ident": "9PN1", + "type": "small_airport", + "name": "Seitz Field", + "latitude_deg": "40.03900146484375", + "longitude_deg": "-79.79000091552734", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Perryopolis", + "scheduled_service": "no", + "gps_code": "9PN1", + "local_code": "9PN1" + }, + { + "id": "45739", + "ident": "9PN2", + "type": "heliport", + "name": "Childrens Hospital Of Philadelphia Heliport", + "latitude_deg": "39.947927", + "longitude_deg": "-75.193981", + "elevation_ft": "203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "9PN2", + "local_code": "9PN2" + }, + { + "id": "15935", + "ident": "9PN5", + "type": "heliport", + "name": "Franklin Heliport", + "latitude_deg": "41.21979904174805", + "longitude_deg": "-75.88099670410156", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wilkes Barre", + "scheduled_service": "no", + "gps_code": "9PN5", + "local_code": "9PN5" + }, + { + "id": "15936", + "ident": "9PN6", + "type": "heliport", + "name": "Baratta Heliport", + "latitude_deg": "41.125099182128906", + "longitude_deg": "-75.99330139160156", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wilkes-Barre", + "scheduled_service": "no", + "gps_code": "9PN6", + "local_code": "9PN6" + }, + { + "id": "15937", + "ident": "9PN7", + "type": "small_airport", + "name": "Veit Airport", + "latitude_deg": "41.81809997558594", + "longitude_deg": "-76.4126968383789", + "elevation_ft": "1360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wysox", + "scheduled_service": "no", + "gps_code": "9PN7", + "local_code": "9PN7" + }, + { + "id": "15938", + "ident": "9PN8", + "type": "small_airport", + "name": "Malinchak Private Airport", + "latitude_deg": "41.625099182099994", + "longitude_deg": "-75.53299713130001", + "elevation_ft": "1700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Carbondale", + "scheduled_service": "no", + "gps_code": "9PN8", + "local_code": "9PN8" + }, + { + "id": "15939", + "ident": "9PN9", + "type": "heliport", + "name": "Perin Heliport", + "latitude_deg": "40.84700012207031", + "longitude_deg": "-75.2437973022461", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pen Argyl", + "scheduled_service": "no", + "gps_code": "9PN9", + "local_code": "9PN9" + }, + { + "id": "353053", + "ident": "9PR1", + "type": "heliport", + "name": "Cesar Castillo LLC Heliport", + "latitude_deg": "18.330966", + "longitude_deg": "-66.098315", + "elevation_ft": "236", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Guaynabo", + "scheduled_service": "no", + "gps_code": "9PR1", + "local_code": "9PR1" + }, + { + "id": "15940", + "ident": "9PS0", + "type": "heliport", + "name": "Zokaites Heliport", + "latitude_deg": "40.60900115966797", + "longitude_deg": "-80.03299713134766", + "elevation_ft": "1268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wexford", + "scheduled_service": "no", + "gps_code": "9PS0", + "local_code": "9PS0" + }, + { + "id": "15941", + "ident": "9PS1", + "type": "heliport", + "name": "Eagle Lodge-Lafayette Hill Heliport", + "latitude_deg": "40.076499938964844", + "longitude_deg": "-75.25520324707031", + "elevation_ft": "352", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Whitemarsh Township", + "scheduled_service": "no", + "gps_code": "9PS1", + "local_code": "9PS1" + }, + { + "id": "15942", + "ident": "9PS2", + "type": "small_airport", + "name": "J T Willie Airport", + "latitude_deg": "40.80870056152344", + "longitude_deg": "-79.6697998046875", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Worthington", + "scheduled_service": "no", + "gps_code": "9PS2", + "local_code": "9PS2" + }, + { + "id": "15943", + "ident": "9PS3", + "type": "heliport", + "name": "Doylestown Heliport", + "latitude_deg": "40.307098388671875", + "longitude_deg": "-75.14659881591797", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Doylestown", + "scheduled_service": "no", + "gps_code": "9PS3", + "local_code": "9PS3" + }, + { + "id": "15944", + "ident": "9PS4", + "type": "heliport", + "name": "Pheasant Run Heliport", + "latitude_deg": "40.7495002746582", + "longitude_deg": "-75.21019744873047", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Easton-Forks Township", + "scheduled_service": "no", + "gps_code": "9PS4", + "local_code": "9PS4" + }, + { + "id": "15945", + "ident": "9PS5", + "type": "heliport", + "name": "Reading Hospital Heliport", + "latitude_deg": "40.33060073852539", + "longitude_deg": "-75.95020294189453", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "West Reading", + "scheduled_service": "no", + "gps_code": "9PS5", + "local_code": "9PS5" + }, + { + "id": "15946", + "ident": "9PS6", + "type": "heliport", + "name": "Siepsers Eye Port Heliport", + "latitude_deg": "39.97090148925781", + "longitude_deg": "-75.65599822998047", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Downingtown", + "scheduled_service": "no", + "gps_code": "9PS6", + "local_code": "9PS6" + }, + { + "id": "15947", + "ident": "9PS7", + "type": "heliport", + "name": "W S Lee & Sons Inc Heliport", + "latitude_deg": "40.447200775146484", + "longitude_deg": "-78.42890167236328", + "elevation_ft": "1104", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Duncansville", + "scheduled_service": "no", + "gps_code": "9PS7", + "local_code": "9PS7" + }, + { + "id": "15948", + "ident": "9PS8", + "type": "small_airport", + "name": "Manor Landing Airport", + "latitude_deg": "39.81268", + "longitude_deg": "-77.30273", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Gettysburg", + "scheduled_service": "no", + "gps_code": "9PS8", + "local_code": "9PS8" + }, + { + "id": "15949", + "ident": "9PS9", + "type": "heliport", + "name": "St Mary Medical Center Heliport", + "latitude_deg": "40.20220184326172", + "longitude_deg": "-74.92289733886719", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Langhorne", + "scheduled_service": "no", + "gps_code": "9PS9", + "local_code": "9PS9" + }, + { + "id": "15950", + "ident": "9R5", + "type": "small_airport", + "name": "Hunt Airport", + "latitude_deg": "27.887800216674805", + "longitude_deg": "-97.35440063476562", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "9R5", + "local_code": "9R5" + }, + { + "id": "15951", + "ident": "9R7", + "type": "heliport", + "name": "Camp Bullis Heliport", + "latitude_deg": "29.641405", + "longitude_deg": "-98.577672", + "elevation_ft": "1066", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "local_code": "9R7" + }, + { + "id": "15952", + "ident": "9S3", + "type": "small_airport", + "name": "Lakeside State Airport", + "latitude_deg": "43.58319854736328", + "longitude_deg": "-124.18000030517578", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Lakeside", + "scheduled_service": "no", + "gps_code": "9S3", + "local_code": "9S3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lakeside_State_Airport" + }, + { + "id": "15953", + "ident": "9S7", + "type": "small_airport", + "name": "Winifred Airport", + "latitude_deg": "47.555395", + "longitude_deg": "-109.38602", + "elevation_ft": "3311", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Winifred", + "scheduled_service": "no", + "gps_code": "K9S7", + "local_code": "9S7" + }, + { + "id": "15954", + "ident": "9SD7", + "type": "small_airport", + "name": "Beaman Airport", + "latitude_deg": "45.474998474121094", + "longitude_deg": "-100.03500366210938", + "elevation_ft": "1960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Selby", + "scheduled_service": "no", + "gps_code": "9SD7", + "local_code": "9SD7" + }, + { + "id": "15955", + "ident": "9SD8", + "type": "small_airport", + "name": "Oakleaf Airport", + "latitude_deg": "43.582434", + "longitude_deg": "-96.94502", + "elevation_ft": "1625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Hartford", + "scheduled_service": "no", + "gps_code": "9SD8", + "local_code": "9SD8" + }, + { + "id": "15956", + "ident": "9SD9", + "type": "small_airport", + "name": "Weelborg Airport", + "latitude_deg": "43.80659866333008", + "longitude_deg": "-96.70890045166016", + "elevation_ft": "1553", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Dell Rapids", + "scheduled_service": "no", + "gps_code": "9SD9", + "local_code": "9SD9" + }, + { + "id": "15957", + "ident": "9TA0", + "type": "closed", + "name": "Aero Heliport", + "latitude_deg": "30.4501", + "longitude_deg": "-97.663902", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pflugerville", + "scheduled_service": "no", + "gps_code": "9TA0", + "local_code": "9TA0" + }, + { + "id": "15958", + "ident": "9TA1", + "type": "small_airport", + "name": "Hilltop Ranch Airport", + "latitude_deg": "29.658599853515625", + "longitude_deg": "-98.13780212402344", + "elevation_ft": "762", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "New Braunfels", + "scheduled_service": "no", + "gps_code": "9TA1", + "local_code": "9TA1" + }, + { + "id": "15959", + "ident": "9TA2", + "type": "closed", + "name": "Urschel Ranch Airport", + "latitude_deg": "35.927661", + "longitude_deg": "-100.307597", + "elevation_ft": "2340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Canadian", + "scheduled_service": "no", + "keywords": "9TA2" + }, + { + "id": "15960", + "ident": "9TA3", + "type": "small_airport", + "name": "Rogers Airport", + "latitude_deg": "29.87299919128418", + "longitude_deg": "-94.9896011352539", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crosby", + "scheduled_service": "no", + "gps_code": "9TA3", + "local_code": "9TA3" + }, + { + "id": "15961", + "ident": "9TA4", + "type": "heliport", + "name": "Placid Heliport", + "latitude_deg": "32.78179931640625", + "longitude_deg": "-96.79810333251953", + "elevation_ft": "1090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "9TA4", + "local_code": "9TA4" + }, + { + "id": "15962", + "ident": "9TA5", + "type": "heliport", + "name": "Charlton-Careflite Heliport", + "latitude_deg": "32.643699645996094", + "longitude_deg": "-96.87750244140625", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "9TA5", + "local_code": "9TA5" + }, + { + "id": "15963", + "ident": "9TA6", + "type": "heliport", + "name": "Buccaneer Shore Facility Heliport", + "latitude_deg": "28.976900100708008", + "longitude_deg": "-95.31739807128906", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Freeport", + "scheduled_service": "no", + "gps_code": "9TA6", + "local_code": "9TA6" + }, + { + "id": "15964", + "ident": "9TA7", + "type": "heliport", + "name": "U of Texas Medical Branch Emergency Room Heliport", + "latitude_deg": "29.312433", + "longitude_deg": "-94.779149", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Galveston", + "scheduled_service": "no", + "gps_code": "9TA7", + "local_code": "9TA7" + }, + { + "id": "15965", + "ident": "9TA8", + "type": "small_airport", + "name": "Taylor Ranch Airport", + "latitude_deg": "31.684099197387695", + "longitude_deg": "-94.97720336914062", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alto", + "scheduled_service": "no", + "gps_code": "9TA8", + "local_code": "9TA8" + }, + { + "id": "15966", + "ident": "9TA9", + "type": "heliport", + "name": "Delta Mechanical Inc Heliport", + "latitude_deg": "29.85219955444336", + "longitude_deg": "-95.40850067138672", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "9TA9", + "local_code": "9TA9" + }, + { + "id": "15967", + "ident": "9TE0", + "type": "small_airport", + "name": "Twin Acres Airport", + "latitude_deg": "32.392338", + "longitude_deg": "-96.404329", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Scurry", + "scheduled_service": "no", + "gps_code": "9TE0", + "local_code": "9TE0" + }, + { + "id": "15968", + "ident": "9TE1", + "type": "closed", + "name": "M-I Drilling Fluids Company Heliport", + "latitude_deg": "28.923901", + "longitude_deg": "-95.341904", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Freeport", + "scheduled_service": "no", + "keywords": "9TE1" + }, + { + "id": "15969", + "ident": "9TE2", + "type": "small_airport", + "name": "JL Bar Ranch", + "latitude_deg": "30.568731", + "longitude_deg": "-100.444462", + "elevation_ft": "2344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no", + "gps_code": "9TE2", + "local_code": "9TE2", + "home_link": "http://jlbar.com/airport/" + }, + { + "id": "15970", + "ident": "9TE3", + "type": "closed", + "name": "Thorp Airport", + "latitude_deg": "32.587611", + "longitude_deg": "-101.939176", + "elevation_ft": "2900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lamesa", + "scheduled_service": "no", + "gps_code": "9TE3", + "local_code": "9TE3" + }, + { + "id": "15971", + "ident": "9TE4", + "type": "small_airport", + "name": "Tanner's Airport", + "latitude_deg": "28.569700241088867", + "longitude_deg": "-96.62969970703125", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port Lavaca", + "scheduled_service": "no", + "gps_code": "9TE4", + "local_code": "9TE4" + }, + { + "id": "15972", + "ident": "9TE5", + "type": "small_airport", + "name": "Kalt Ranch Airport", + "latitude_deg": "28.154499053955078", + "longitude_deg": "-96.97689819335938", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fulton", + "scheduled_service": "no", + "gps_code": "9TE5", + "local_code": "9TE5" + }, + { + "id": "15973", + "ident": "9TE6", + "type": "small_airport", + "name": "Rocky Creek Ranch Airport", + "latitude_deg": "29.921611", + "longitude_deg": "-96.800966", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "La Grange", + "scheduled_service": "no", + "gps_code": "9TE6", + "local_code": "9TE6" + }, + { + "id": "45819", + "ident": "9TE7", + "type": "small_airport", + "name": "Flying G H Ranch Airport", + "latitude_deg": "30.245278", + "longitude_deg": "-97.082778", + "elevation_ft": "455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paige", + "scheduled_service": "no", + "gps_code": "9TE7", + "local_code": "9TE7" + }, + { + "id": "15974", + "ident": "9TE8", + "type": "closed", + "name": "Shell Pelican Island Heliport", + "latitude_deg": "29.322701", + "longitude_deg": "-94.786903", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Galveston", + "scheduled_service": "no", + "keywords": "9TE8" + }, + { + "id": "15975", + "ident": "9TE9", + "type": "closed", + "name": "Dresser Industries/Magcobar/ Heliport", + "latitude_deg": "29.323298", + "longitude_deg": "-94.782997", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Galveston", + "scheduled_service": "no", + "keywords": "9TE9" + }, + { + "id": "15976", + "ident": "9TN0", + "type": "heliport", + "name": "Summit Medical Center Heliport", + "latitude_deg": "36.177799224853516", + "longitude_deg": "-86.6082992553711", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Nashville", + "scheduled_service": "no", + "gps_code": "9TN0", + "local_code": "9TN0" + }, + { + "id": "15977", + "ident": "9TN1", + "type": "small_airport", + "name": "Versailles Aerodrome", + "latitude_deg": "35.72999954223633", + "longitude_deg": "-86.53780364990234", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Eagleville", + "scheduled_service": "no", + "gps_code": "9TN1", + "local_code": "9TN1" + }, + { + "id": "15978", + "ident": "9TN2", + "type": "small_airport", + "name": "Meadowlark Airport", + "latitude_deg": "36.16389846801758", + "longitude_deg": "-88.2052993774414", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Camden", + "scheduled_service": "no", + "gps_code": "9TN2", + "local_code": "9TN2" + }, + { + "id": "15979", + "ident": "9TN3", + "type": "closed", + "name": "Mehrhoff Field", + "latitude_deg": "35.114924", + "longitude_deg": "-89.524423", + "elevation_ft": "426", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Rossville", + "scheduled_service": "no", + "keywords": "9TN3" + }, + { + "id": "15980", + "ident": "9TN4", + "type": "small_airport", + "name": "Foreman Field", + "latitude_deg": "36.457698822021484", + "longitude_deg": "-86.94599914550781", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "9TN4", + "local_code": "9TN4" + }, + { + "id": "15981", + "ident": "9TN5", + "type": "small_airport", + "name": "Askey Field", + "latitude_deg": "35.45830154418945", + "longitude_deg": "-86.95690155029297", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Culleoka", + "scheduled_service": "no", + "gps_code": "9TN5", + "local_code": "9TN5" + }, + { + "id": "15982", + "ident": "9TN6", + "type": "heliport", + "name": "Performance Helicopters Heliport", + "latitude_deg": "35.28860092163086", + "longitude_deg": "-89.67420196533203", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "9TN6", + "local_code": "9TN6" + }, + { + "id": "15983", + "ident": "9TN7", + "type": "small_airport", + "name": "Baskin Airport", + "latitude_deg": "35.534400939941406", + "longitude_deg": "-89.73500061035156", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Covington", + "scheduled_service": "no", + "gps_code": "9TN7", + "local_code": "9TN7" + }, + { + "id": "15984", + "ident": "9TN8", + "type": "heliport", + "name": "Dollar General Heliport", + "latitude_deg": "36.31330108642578", + "longitude_deg": "-86.69860076904297", + "elevation_ft": "736", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Goodlettsville", + "scheduled_service": "no", + "gps_code": "9TN8", + "local_code": "9TN8" + }, + { + "id": "15985", + "ident": "9TN9", + "type": "small_airport", + "name": "Toy Box Airport", + "latitude_deg": "36.01940155029297", + "longitude_deg": "-86.28810119628906", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "9TN9", + "local_code": "9TN9" + }, + { + "id": "15986", + "ident": "9TS0", + "type": "heliport", + "name": "Diamond E Ranch Heliport", + "latitude_deg": "29.786100387573242", + "longitude_deg": "-96.04329681396484", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sealy", + "scheduled_service": "no", + "gps_code": "9TS0", + "local_code": "9TS0" + }, + { + "id": "15987", + "ident": "9TS1", + "type": "heliport", + "name": "One O'Connor Plaza-Tower Heliport", + "latitude_deg": "28.80109977722168", + "longitude_deg": "-97.00579833984375", + "elevation_ft": "277", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Victoria", + "scheduled_service": "no", + "gps_code": "9TS1", + "local_code": "9TS1" + }, + { + "id": "15988", + "ident": "9TS2", + "type": "heliport", + "name": "Cig 816 Heliport", + "latitude_deg": "29.861299514770508", + "longitude_deg": "-94.70099639892578", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wallisville", + "scheduled_service": "no", + "gps_code": "9TS2", + "local_code": "9TS2" + }, + { + "id": "15989", + "ident": "9TS3", + "type": "closed", + "name": "Simaron Ranch Airport", + "latitude_deg": "30.1483", + "longitude_deg": "-95.966904", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waller", + "scheduled_service": "no", + "keywords": "9TS3" + }, + { + "id": "15990", + "ident": "9TS4", + "type": "heliport", + "name": "Ladue Ranch Heliport", + "latitude_deg": "33.007287", + "longitude_deg": "-96.506438", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wylie", + "scheduled_service": "no", + "gps_code": "9TS4", + "local_code": "9TS4" + }, + { + "id": "15991", + "ident": "9TS5", + "type": "closed", + "name": "Wilford Hall Medical Center Heliport", + "latitude_deg": "29.397377", + "longitude_deg": "-98.624175", + "elevation_ft": "762", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "keywords": "9TS5" + }, + { + "id": "15992", + "ident": "9TS6", + "type": "small_airport", + "name": "Goodlett Field", + "latitude_deg": "32.37889862060547", + "longitude_deg": "-97.17829895019531", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alvarado", + "scheduled_service": "no", + "gps_code": "9TS6", + "local_code": "9TS6" + }, + { + "id": "15993", + "ident": "9TS7", + "type": "heliport", + "name": "U of Texas Medical Branch Ewing Hall Heliport", + "latitude_deg": "29.313251", + "longitude_deg": "-94.778385", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Galveston", + "scheduled_service": "no", + "gps_code": "9TS7", + "local_code": "9TS7" + }, + { + "id": "15994", + "ident": "9TS8", + "type": "heliport", + "name": "Dallas Rehabilitation Institute Heliport", + "latitude_deg": "32.84870147705078", + "longitude_deg": "-96.87889862060547", + "elevation_ft": "428", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "9TS8", + "local_code": "9TS8" + }, + { + "id": "15995", + "ident": "9TS9", + "type": "heliport", + "name": "Toyota of Dallas Inc Heliport", + "latitude_deg": "32.907901763916016", + "longitude_deg": "-96.8906021118164", + "elevation_ft": "487", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "9TS9", + "local_code": "9TS9" + }, + { + "id": "15996", + "ident": "9TX0", + "type": "heliport", + "name": "Houston Police Department Southeast Heliport", + "latitude_deg": "29.657868", + "longitude_deg": "-95.319099", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "9TX0", + "local_code": "9TX0", + "keywords": "Houston Police Command Station Heliport" + }, + { + "id": "15997", + "ident": "9TX1", + "type": "small_airport", + "name": "Bar S Ranch Airport", + "latitude_deg": "30.143299102783203", + "longitude_deg": "-96.8561019897461", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Giddings", + "scheduled_service": "no", + "gps_code": "9TX1", + "local_code": "9TX1" + }, + { + "id": "15998", + "ident": "9TX2", + "type": "small_airport", + "name": "Bennetts Airport", + "latitude_deg": "32.63710021972656", + "longitude_deg": "-96.4083023071289", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crandall", + "scheduled_service": "no", + "gps_code": "9TX2", + "local_code": "9TX2" + }, + { + "id": "15999", + "ident": "9TX3", + "type": "small_airport", + "name": "Horan Airport", + "latitude_deg": "34.175167", + "longitude_deg": "-101.638126", + "elevation_ft": "3339", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Plainview", + "scheduled_service": "no", + "gps_code": "9TX3", + "local_code": "9TX3" + }, + { + "id": "16000", + "ident": "9TX4", + "type": "small_airport", + "name": "Flying H Ranch Airport", + "latitude_deg": "30.65959930419922", + "longitude_deg": "-97.91110229492188", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Liberty Hill", + "scheduled_service": "no", + "gps_code": "9TX4", + "local_code": "9TX4" + }, + { + "id": "16001", + "ident": "9TX5", + "type": "small_airport", + "name": "Camp Bullis ALS Airport", + "latitude_deg": "29.744699", + "longitude_deg": "-98.537201", + "elevation_ft": "1158", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "9TX5", + "local_code": "9TX5", + "keywords": "Camp Bullis Auxiliary Landing Strip" + }, + { + "id": "16002", + "ident": "9TX6", + "type": "small_airport", + "name": "Beggs Ranch Airport", + "latitude_deg": "33.17509841918945", + "longitude_deg": "-101.02400207519531", + "elevation_ft": "2355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Post", + "scheduled_service": "no", + "gps_code": "9TX6", + "local_code": "9TX6" + }, + { + "id": "16003", + "ident": "9TX7", + "type": "small_airport", + "name": "Hitex Private Airport", + "latitude_deg": "33.839975", + "longitude_deg": "-96.670544", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pottsboro", + "scheduled_service": "no", + "gps_code": "9TX7", + "local_code": "9TX7" + }, + { + "id": "16004", + "ident": "9TX8", + "type": "closed", + "name": "Infomart Heliport", + "latitude_deg": "32.802907", + "longitude_deg": "-96.821112", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "keywords": "9TX8" + }, + { + "id": "16005", + "ident": "9TX9", + "type": "small_airport", + "name": "Canon Ranch Airport", + "latitude_deg": "30.748199462890625", + "longitude_deg": "-101.96499633789062", + "elevation_ft": "2380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sheffield", + "scheduled_service": "no", + "gps_code": "9TX9", + "local_code": "9TX9" + }, + { + "id": "16006", + "ident": "9U1", + "type": "small_airport", + "name": "Wilsall Airport", + "latitude_deg": "46.04970169067383", + "longitude_deg": "-110.68499755859375", + "elevation_ft": "5134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Wilsall", + "scheduled_service": "no", + "gps_code": "9U1", + "local_code": "9U1" + }, + { + "id": "16007", + "ident": "9V1", + "type": "small_airport", + "name": "Springview Municipal Airport", + "latitude_deg": "42.829200744628906", + "longitude_deg": "-99.73979949951172", + "elevation_ft": "2446", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Springview", + "scheduled_service": "no", + "gps_code": "9V1", + "local_code": "9V1" + }, + { + "id": "16008", + "ident": "9V2", + "type": "small_airport", + "name": "Trenton Municipal Airport", + "latitude_deg": "40.1875", + "longitude_deg": "-101.0250015258789", + "elevation_ft": "2796", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Trenton", + "scheduled_service": "no", + "gps_code": "9V2", + "local_code": "9V2" + }, + { + "id": "16009", + "ident": "9V3", + "type": "small_airport", + "name": "Harrison Skyranch Airport", + "latitude_deg": "42.69580078125", + "longitude_deg": "-103.875", + "elevation_ft": "4863", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Harrison", + "scheduled_service": "no", + "gps_code": "9V3", + "local_code": "9V3" + }, + { + "id": "16010", + "ident": "9VA0", + "type": "small_airport", + "name": "Bath Alum Airport", + "latitude_deg": "38.0526008605957", + "longitude_deg": "-79.72889709472656", + "elevation_ft": "1779", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Warm Springs", + "scheduled_service": "no", + "gps_code": "9VA0", + "local_code": "9VA0" + }, + { + "id": "16011", + "ident": "9VA1", + "type": "small_airport", + "name": "Holly Point Airport", + "latitude_deg": "37.405399322509766", + "longitude_deg": "-76.38829803466797", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Mathews", + "scheduled_service": "no", + "gps_code": "9VA1", + "local_code": "9VA1" + }, + { + "id": "16012", + "ident": "9VA2", + "type": "heliport", + "name": "Inova Alexandria Hospital Heliport", + "latitude_deg": "38.822362", + "longitude_deg": "-77.104278", + "elevation_ft": "254", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Alexandria", + "scheduled_service": "no", + "gps_code": "9VA2", + "local_code": "9VA2" + }, + { + "id": "16013", + "ident": "9VA3", + "type": "closed", + "name": "Crippen Creek Farm Airport", + "latitude_deg": "37.752958", + "longitude_deg": "-75.577548", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Parksley", + "scheduled_service": "no", + "keywords": "9VA3" + }, + { + "id": "16014", + "ident": "9VA4", + "type": "small_airport", + "name": "Franwood Farms Inc. Airport", + "latitude_deg": "38.69089889526367", + "longitude_deg": "-78.62950134277344", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "New Market", + "scheduled_service": "no", + "gps_code": "9VA4", + "local_code": "9VA4" + }, + { + "id": "16015", + "ident": "9VA5", + "type": "heliport", + "name": "Bluegrass Heliport", + "latitude_deg": "39.06329", + "longitude_deg": "-77.890025", + "elevation_ft": "1720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Bluemont", + "scheduled_service": "no", + "gps_code": "9VA5", + "local_code": "9VA5" + }, + { + "id": "16016", + "ident": "9VA6", + "type": "closed", + "name": "Old Louise Obici Memorial Hospital Heliport", + "latitude_deg": "36.756056", + "longitude_deg": "-76.585028", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Suffolk", + "scheduled_service": "no", + "home_link": "https://www.suffolknewsherald.com/2013/05/15/council-rezones-old-obici-site/", + "keywords": "9VA6" + }, + { + "id": "16017", + "ident": "9VA7", + "type": "closed", + "name": "Fire Station No. 14 Heliport", + "latitude_deg": "37.3549", + "longitude_deg": "-77.415497", + "elevation_ft": "169", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Chester", + "scheduled_service": "no", + "keywords": "9VA7" + }, + { + "id": "16018", + "ident": "9VA8", + "type": "heliport", + "name": "Innsbrook Pavilion Heliport", + "latitude_deg": "37.648799896240234", + "longitude_deg": "-77.58499908447266", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "9VA8", + "local_code": "9VA8" + }, + { + "id": "16019", + "ident": "9VA9", + "type": "heliport", + "name": "Southampton Memorial Hospital Heliport", + "latitude_deg": "36.69929885864258", + "longitude_deg": "-76.93830108642578", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "9VA9", + "local_code": "9VA9" + }, + { + "id": "16020", + "ident": "9VG", + "type": "small_airport", + "name": "Campbell Field", + "latitude_deg": "37.458845", + "longitude_deg": "-75.877209", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Weirwood", + "scheduled_service": "no", + "local_code": "9VG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Campbell_Field_Airport", + "keywords": "Kellum Field, W08, VG26" + }, + { + "id": "16021", + "ident": "9VG9", + "type": "small_airport", + "name": "Jucapa Farms Airport", + "latitude_deg": "39.371381", + "longitude_deg": "-78.306277", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Winchester", + "scheduled_service": "no", + "gps_code": "9VG9", + "local_code": "9VG9" + }, + { + "id": "16022", + "ident": "9W3", + "type": "small_airport", + "name": "Simpson Airport", + "latitude_deg": "39.09339904785156", + "longitude_deg": "-80.0259017944336", + "elevation_ft": "1960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Philippi", + "scheduled_service": "no", + "gps_code": "9W3", + "local_code": "9W3" + }, + { + "id": "16023", + "ident": "9W8", + "type": "small_airport", + "name": "Baublitz Commercial Airport", + "latitude_deg": "39.85272", + "longitude_deg": "-76.485114", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Brogue", + "scheduled_service": "no", + "gps_code": "K9W8", + "local_code": "9W8" + }, + { + "id": "16024", + "ident": "9W9", + "type": "small_airport", + "name": "Clio Crop Care Airport", + "latitude_deg": "34.5614013671875", + "longitude_deg": "-79.53810119628906", + "elevation_ft": "192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Clio", + "scheduled_service": "no", + "gps_code": "9W9", + "local_code": "9W9" + }, + { + "id": "16025", + "ident": "9WA0", + "type": "heliport", + "name": "Boeing Plant 2 Heliport", + "latitude_deg": "47.536747", + "longitude_deg": "-122.313441", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Seattle", + "scheduled_service": "no", + "gps_code": "9WA0", + "local_code": "9WA0" + }, + { + "id": "16026", + "ident": "9WA1", + "type": "heliport", + "name": "Quincy Valley Hospital Ems Heliport", + "latitude_deg": "47.230501", + "longitude_deg": "-119.867674", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Quincy", + "scheduled_service": "no", + "gps_code": "9WA1", + "local_code": "9WA1" + }, + { + "id": "16027", + "ident": "9WA2", + "type": "heliport", + "name": "Odessa Memorial Hospital Heliport", + "latitude_deg": "47.331446", + "longitude_deg": "-118.682299", + "elevation_ft": "1700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Odessa", + "scheduled_service": "no", + "gps_code": "9WA2", + "local_code": "9WA2" + }, + { + "id": "16028", + "ident": "9WA3", + "type": "small_airport", + "name": "River Bend Airport", + "latitude_deg": "48.469600677490234", + "longitude_deg": "-117.29000091552734", + "elevation_ft": "2040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "River Bend Lodge", + "scheduled_service": "no", + "gps_code": "9WA3", + "local_code": "9WA3" + }, + { + "id": "16029", + "ident": "9WA4", + "type": "small_airport", + "name": "Piper Canyon Airport", + "latitude_deg": "45.810391", + "longitude_deg": "-120.952851", + "elevation_ft": "1610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Goldendale", + "scheduled_service": "no", + "gps_code": "9WA4", + "local_code": "9WA4" + }, + { + "id": "16030", + "ident": "9WA5", + "type": "heliport", + "name": "Mid-Valley Hospital EMS Heliport", + "latitude_deg": "48.397229", + "longitude_deg": "-119.547837", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Omak", + "scheduled_service": "no", + "gps_code": "9WA5", + "local_code": "9WA5" + }, + { + "id": "16031", + "ident": "9WA6", + "type": "heliport", + "name": "Puget Sound Plaza Heliport", + "latitude_deg": "47.60847", + "longitude_deg": "-122.33573", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Seattle", + "scheduled_service": "no", + "gps_code": "9WA6", + "local_code": "9WA6" + }, + { + "id": "16032", + "ident": "9WA7", + "type": "small_airport", + "name": "Albritton Airport", + "latitude_deg": "47.217382", + "longitude_deg": "-122.133036", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Buckley", + "scheduled_service": "no", + "gps_code": "9WA7", + "local_code": "9WA7" + }, + { + "id": "16033", + "ident": "9WA8", + "type": "heliport", + "name": "Mason General Hospital Heliport", + "latitude_deg": "47.226578", + "longitude_deg": "-123.114027", + "elevation_ft": "278", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Shelton", + "scheduled_service": "no", + "gps_code": "9WA8", + "local_code": "9WA8" + }, + { + "id": "16034", + "ident": "9WA9", + "type": "heliport", + "name": "Naval Submarine Base Bangor Heliport", + "latitude_deg": "47.7036031255", + "longitude_deg": "-122.714806795", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Silverdale", + "scheduled_service": "no", + "gps_code": "9WA9", + "local_code": "9WA9" + }, + { + "id": "16035", + "ident": "9WI0", + "type": "closed", + "name": "All-State Equipment Co. Heliport", + "latitude_deg": "42.962502", + "longitude_deg": "-87.975098", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Greenfield", + "scheduled_service": "no", + "keywords": "9WI0" + }, + { + "id": "16036", + "ident": "9WI1", + "type": "small_airport", + "name": "Black Otter Airport", + "latitude_deg": "44.32939910888672", + "longitude_deg": "-88.62359619140625", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Hortonville", + "scheduled_service": "no", + "gps_code": "9WI1", + "local_code": "9WI1" + }, + { + "id": "16037", + "ident": "9WI2", + "type": "small_airport", + "name": "Flying Dollar Ranch Airport", + "latitude_deg": "44.287498474121094", + "longitude_deg": "-87.7958984375", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Maribel", + "scheduled_service": "no", + "gps_code": "9WI2", + "local_code": "9WI2" + }, + { + "id": "16038", + "ident": "9WI3", + "type": "small_airport", + "name": "Buchholz Farm Airport", + "latitude_deg": "44.285499572753906", + "longitude_deg": "-87.98680114746094", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Morrison", + "scheduled_service": "no", + "gps_code": "9WI3", + "local_code": "9WI3" + }, + { + "id": "16039", + "ident": "9WI4", + "type": "small_airport", + "name": "Faken Airport", + "latitude_deg": "42.978599548339844", + "longitude_deg": "-88.13480377197266", + "elevation_ft": "904", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "New Berlin", + "scheduled_service": "no", + "gps_code": "9WI4", + "local_code": "9WI4" + }, + { + "id": "16040", + "ident": "9WI5", + "type": "small_airport", + "name": "Tamarack Airport", + "latitude_deg": "42.82830047607422", + "longitude_deg": "-88.57450103759766", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Palmyra", + "scheduled_service": "no", + "gps_code": "9WI5", + "local_code": "9WI5" + }, + { + "id": "16041", + "ident": "9WI6", + "type": "small_airport", + "name": "Kitty Hawk Estates Airport", + "latitude_deg": "45.10409927368164", + "longitude_deg": "-89.01679992675781", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Polar", + "scheduled_service": "no", + "gps_code": "9WI6", + "local_code": "9WI6" + }, + { + "id": "16043", + "ident": "9WI8", + "type": "small_airport", + "name": "Fletcher Airport", + "latitude_deg": "42.69390106201172", + "longitude_deg": "-88.37930297851562", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Spring Prairie", + "scheduled_service": "no", + "gps_code": "9WI8", + "local_code": "9WI8" + }, + { + "id": "16044", + "ident": "9WI9", + "type": "small_airport", + "name": "Carlson Airport", + "latitude_deg": "46.62080001831055", + "longitude_deg": "-92.08190155029297", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Superior", + "scheduled_service": "no", + "gps_code": "9WI9", + "local_code": "9WI9" + }, + { + "id": "16045", + "ident": "9WN1", + "type": "small_airport", + "name": "Courtney Plummer Airport", + "latitude_deg": "44.10689926147461", + "longitude_deg": "-88.68399810791016", + "elevation_ft": "758", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Winneconne", + "scheduled_service": "no", + "gps_code": "9WN1", + "local_code": "9WN1" + }, + { + "id": "16046", + "ident": "9WN2", + "type": "small_airport", + "name": "Voyager Village Airstrip", + "latitude_deg": "45.96659851074219", + "longitude_deg": "-92.14600372314453", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Webster", + "scheduled_service": "no", + "gps_code": "9WN2", + "local_code": "9WN2" + }, + { + "id": "16047", + "ident": "9WN3", + "type": "small_airport", + "name": "Ozaukee Airport", + "latitude_deg": "43.4213981628418", + "longitude_deg": "-87.88899993896484", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Port Washington", + "scheduled_service": "no", + "gps_code": "9WN3", + "local_code": "9WN3" + }, + { + "id": "16048", + "ident": "9WN4", + "type": "closed", + "name": "Rag Wing Airport", + "latitude_deg": "45.084", + "longitude_deg": "-89.0298", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Antigo", + "scheduled_service": "no", + "keywords": "9WN4" + }, + { + "id": "16049", + "ident": "9WN5", + "type": "small_airport", + "name": "Lodi Lakeland Airport", + "latitude_deg": "43.326674", + "longitude_deg": "-89.522733", + "elevation_ft": "844", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Lodi", + "scheduled_service": "no", + "gps_code": "9WN5", + "local_code": "9WN5" + }, + { + "id": "16050", + "ident": "9WN6", + "type": "closed", + "name": "Medos Lake Delton Seaplane Base", + "latitude_deg": "43.606899", + "longitude_deg": "-89.777603", + "elevation_ft": "832", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wisconsin Dells", + "scheduled_service": "no", + "keywords": "9WN6" + }, + { + "id": "16051", + "ident": "9WN9", + "type": "small_airport", + "name": "Coloma Municipal Airport", + "latitude_deg": "44.058383", + "longitude_deg": "-89.563256", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Coloma", + "scheduled_service": "no", + "keywords": "9WN9" + }, + { + "id": "45969", + "ident": "9WS2", + "type": "small_airport", + "name": "Antique Aerodrome", + "latitude_deg": "44.367639", + "longitude_deg": "-88.158678", + "elevation_ft": "655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "De Pere", + "scheduled_service": "no", + "gps_code": "9WS2", + "local_code": "9WS2" + }, + { + "id": "45938", + "ident": "9WY0", + "type": "heliport", + "name": "Sheridan Memorial Hospital Heliport", + "latitude_deg": "44.807664", + "longitude_deg": "-106.975449", + "elevation_ft": "3880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Sheridan", + "scheduled_service": "no", + "gps_code": "9WY0", + "local_code": "9WY0" + }, + { + "id": "16052", + "ident": "9X9", + "type": "closed", + "name": "Sack-O-Grande Acroport", + "latitude_deg": "29.912701", + "longitude_deg": "-95.826599", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Katy", + "scheduled_service": "no", + "keywords": "Harbican Airport, 9X9, 9XS9" + }, + { + "id": "329598", + "ident": "9XA1", + "type": "heliport", + "name": "ESD 100 Training Field Heliport", + "latitude_deg": "29.700792", + "longitude_deg": "-95.669669", + "elevation_ft": "91", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "9XA1", + "local_code": "9XA1" + }, + { + "id": "325808", + "ident": "9XA4", + "type": "small_airport", + "name": "Chimera Aerodrome", + "latitude_deg": "32.355752", + "longitude_deg": "-97.039822", + "elevation_ft": "649", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Venus", + "scheduled_service": "no", + "gps_code": "9XA4", + "local_code": "9XA4", + "keywords": "Leger Airport" + }, + { + "id": "16053", + "ident": "9XS0", + "type": "closed", + "name": "Dobbs Ranch Airport", + "latitude_deg": "29.098", + "longitude_deg": "-96.955299", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Yoakum", + "scheduled_service": "no", + "keywords": "9XS0" + }, + { + "id": "16054", + "ident": "9XS1", + "type": "small_airport", + "name": "The Landing Airport", + "latitude_deg": "31.835599899291992", + "longitude_deg": "-96.95279693603516", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hill", + "scheduled_service": "no", + "gps_code": "9XS1", + "local_code": "9XS1" + }, + { + "id": "16055", + "ident": "9XS2", + "type": "small_airport", + "name": "Beaver Creek Airport", + "latitude_deg": "33.6542626352", + "longitude_deg": "-96.77635967730002", + "elevation_ft": "708", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sherman", + "scheduled_service": "no", + "gps_code": "9XS2", + "local_code": "9XS2" + }, + { + "id": "16056", + "ident": "9XS3", + "type": "closed", + "name": "Macy Ranch Airport", + "latitude_deg": "33.103401", + "longitude_deg": "-101.464996", + "elevation_ft": "2870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Post", + "scheduled_service": "no", + "gps_code": "9XS3", + "local_code": "9XS3" + }, + { + "id": "16057", + "ident": "9XS4", + "type": "small_airport", + "name": "Mc Keon Aviation Airport", + "latitude_deg": "33.7342987061", + "longitude_deg": "-96.626701355", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Denison", + "scheduled_service": "no", + "gps_code": "9XS4", + "local_code": "9XS4" + }, + { + "id": "16058", + "ident": "9XS5", + "type": "small_airport", + "name": "Kitten Farm Private Airport", + "latitude_deg": "33.350101470947266", + "longitude_deg": "-101.64199829101562", + "elevation_ft": "3050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Slaton", + "scheduled_service": "no", + "gps_code": "9XS5", + "local_code": "9XS5" + }, + { + "id": "16059", + "ident": "9XS6", + "type": "small_airport", + "name": "Sudan Airport", + "latitude_deg": "34.0531005859375", + "longitude_deg": "-102.52200317382812", + "elevation_ft": "3769", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sudan", + "scheduled_service": "no", + "gps_code": "9XS6", + "local_code": "9XS6" + }, + { + "id": "16060", + "ident": "9XS7", + "type": "small_airport", + "name": "Reeder Airport", + "latitude_deg": "32.94710159301758", + "longitude_deg": "-95.95860290527344", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lone Oak", + "scheduled_service": "no", + "gps_code": "9XS7", + "local_code": "9XS7" + }, + { + "id": "16061", + "ident": "9XS8", + "type": "heliport", + "name": "Goodson Honda Heliport", + "latitude_deg": "30", + "longitude_deg": "-95.42579650878906", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "9XS8", + "local_code": "9XS8" + }, + { + "id": "16062", + "ident": "9XS9", + "type": "small_airport", + "name": "Rancho Verde Airport", + "latitude_deg": "30.27307", + "longitude_deg": "-96.44071", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brenham", + "scheduled_service": "no", + "gps_code": "9XS9", + "local_code": "9XS9" + }, + { + "id": "16063", + "ident": "9Y0", + "type": "small_airport", + "name": "Bowstring Airport", + "latitude_deg": "47.54990005493164", + "longitude_deg": "-93.86689758300781", + "elevation_ft": "1372", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Bowstring", + "scheduled_service": "no", + "gps_code": "9Y0", + "local_code": "9Y0" + }, + { + "id": "16064", + "ident": "9Y2", + "type": "small_airport", + "name": "East Gull Lake Airport", + "latitude_deg": "46.385669", + "longitude_deg": "-94.375461", + "elevation_ft": "1236", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "East Gull Lake", + "scheduled_service": "no", + "local_code": "9Y2" + }, + { + "id": "16065", + "ident": "9Y5", + "type": "seaplane_base", + "name": "Sky Harbor Seaplane Base", + "latitude_deg": "47.459598541259766", + "longitude_deg": "-92.47660064697266", + "elevation_ft": "1376", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Eveleth", + "scheduled_service": "no", + "gps_code": "9Y5", + "local_code": "9Y5" + }, + { + "id": "16066", + "ident": "9Y7", + "type": "small_airport", + "name": "Barron Municipal Airport", + "latitude_deg": "45.407501220703125", + "longitude_deg": "-91.83429718017578", + "elevation_ft": "1113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Barron", + "scheduled_service": "no", + "gps_code": "9Y7", + "local_code": "9Y7" + }, + { + "id": "16067", + "ident": "9Z3", + "type": "seaplane_base", + "name": "Kodiak /Lilly Lake/ Seaplane Base", + "latitude_deg": "57.8026008605957", + "longitude_deg": "-152.38299560546875", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kodiak", + "scheduled_service": "no", + "gps_code": "9Z3", + "local_code": "9Z3" + }, + { + "id": "16068", + "ident": "9Z7", + "type": "closed", + "name": "Kvichak Diamond J Airport", + "latitude_deg": "58.965078", + "longitude_deg": "-156.932359", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kvichak", + "scheduled_service": "no", + "keywords": "9Z7" + }, + { + "id": "16069", + "ident": "9Z8", + "type": "small_airport", + "name": "Levelock Airport", + "latitude_deg": "59.12606", + "longitude_deg": "-156.860906", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Levelock", + "scheduled_service": "yes", + "iata_code": "KLL", + "local_code": "9Z8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Levelock_Airport" + }, + { + "id": "16070", + "ident": "9Z9", + "type": "small_airport", + "name": "Lawing Airport", + "latitude_deg": "60.41109848022461", + "longitude_deg": "-149.3699951171875", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Lawing", + "scheduled_service": "no", + "gps_code": "9Z9", + "local_code": "9Z9" + }, + { + "id": "16071", + "ident": "A05", + "type": "small_airport", + "name": "Dixie US Forest Service Airport", + "latitude_deg": "45.520699", + "longitude_deg": "-115.517997", + "elevation_ft": "5148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Dixie", + "scheduled_service": "no", + "local_code": "A05", + "keywords": "ID05" + }, + { + "id": "16072", + "ident": "A13", + "type": "small_airport", + "name": "Bold Airport", + "latitude_deg": "61.34130096435547", + "longitude_deg": "-148.99899291992188", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchorage", + "scheduled_service": "no", + "gps_code": "A13", + "local_code": "A13" + }, + { + "id": "16074", + "ident": "A23", + "type": "seaplane_base", + "name": "Saginaw Seaplane Base", + "latitude_deg": "56.8862991333", + "longitude_deg": "-134.158004761", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Saginaw Bay", + "scheduled_service": "no", + "gps_code": "A23", + "iata_code": "SGW", + "local_code": "A23", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saginaw_Seaplane_Base" + }, + { + "id": "16075", + "ident": "A26", + "type": "small_airport", + "name": "Adin Airport", + "latitude_deg": "41.18600082397461", + "longitude_deg": "-120.9520034790039", + "elevation_ft": "4229", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Adin", + "scheduled_service": "no", + "gps_code": "A26", + "local_code": "A26", + "wikipedia_link": "https://en.wikipedia.org/wiki/Adin_Airport" + }, + { + "id": "16076", + "ident": "A27", + "type": "seaplane_base", + "name": "Seldovia Seaplane Base", + "latitude_deg": "59.439335", + "longitude_deg": "-151.720805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Seldovia", + "scheduled_service": "no", + "local_code": "A27" + }, + { + "id": "16077", + "ident": "A28", + "type": "small_airport", + "name": "Fort Bidwell Airport", + "latitude_deg": "41.87630081176758", + "longitude_deg": "-120.14700317382812", + "elevation_ft": "4602", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fort Bidwell", + "scheduled_service": "no", + "gps_code": "A28", + "local_code": "A28" + }, + { + "id": "16078", + "ident": "A29", + "type": "seaplane_base", + "name": "Sitka Seaplane Base", + "latitude_deg": "57.052101135253906", + "longitude_deg": "-135.3459930419922", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sitka", + "scheduled_service": "no", + "gps_code": "A29", + "local_code": "A29" + }, + { + "id": "16079", + "ident": "A43", + "type": "seaplane_base", + "name": "Taku Harbor Seaplane Base", + "latitude_deg": "58.0690994263", + "longitude_deg": "-134.01499939", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Taku Harbor", + "scheduled_service": "no", + "gps_code": "A43", + "local_code": "A43" + }, + { + "id": "16080", + "ident": "A51", + "type": "small_airport", + "name": "Costin Airport", + "latitude_deg": "29.758499145508", + "longitude_deg": "-85.289100646973", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Port St Joe", + "scheduled_service": "no", + "gps_code": "A51", + "local_code": "A51", + "keywords": "FD51" + }, + { + "id": "16081", + "ident": "A57", + "type": "small_airport", + "name": "Alsek River Airport", + "latitude_deg": "59.1991802403", + "longitude_deg": "-138.447293043", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Yakutat", + "scheduled_service": "no", + "gps_code": "A57", + "local_code": "A57", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alsek_River_Airport" + }, + { + "id": "16082", + "ident": "A61", + "type": "small_airport", + "name": "Tuntutuliak Airport", + "latitude_deg": "60.3353004456", + "longitude_deg": "-162.667007446", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tuntutuliak", + "scheduled_service": "no", + "gps_code": "A61", + "iata_code": "WTL", + "local_code": "A61", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tuntutuliak_Airport" + }, + { + "id": "16083", + "ident": "A63", + "type": "small_airport", + "name": "Twin Hills Airport", + "latitude_deg": "59.07559967041", + "longitude_deg": "-160.27299499512", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Twin Hills", + "scheduled_service": "no", + "gps_code": "A63", + "iata_code": "TWA", + "local_code": "A63", + "wikipedia_link": "https://en.wikipedia.org/wiki/Twin_Hills_Airport", + "keywords": "AK63" + }, + { + "id": "16084", + "ident": "A67", + "type": "small_airport", + "name": "Harlequin Lake Airport", + "latitude_deg": "59.414431", + "longitude_deg": "-139.033012", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Yakutat", + "scheduled_service": "no", + "local_code": "A67" + }, + { + "id": "16085", + "ident": "A68", + "type": "small_airport", + "name": "Situk Airport", + "latitude_deg": "59.55160140991211", + "longitude_deg": "-139.50900268554688", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Yakutat", + "scheduled_service": "no", + "gps_code": "A68", + "local_code": "A68" + }, + { + "id": "16086", + "ident": "A69", + "type": "small_airport", + "name": "Tanis Mesa Airport", + "latitude_deg": "59.249712", + "longitude_deg": "-138.504853", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Yakutat", + "scheduled_service": "no", + "local_code": "A69" + }, + { + "id": "16087", + "ident": "A70", + "type": "closed", + "name": "Dangerous River Airport", + "latitude_deg": "59.404301", + "longitude_deg": "-139.234028", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Yakutat", + "scheduled_service": "no", + "keywords": "A70" + }, + { + "id": "16088", + "ident": "A77", + "type": "small_airport", + "name": "Yankee Creek 2 Airport", + "latitude_deg": "63.0018997192", + "longitude_deg": "-156.367004395", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Yankee Creek", + "scheduled_service": "no", + "gps_code": "A77", + "local_code": "A77", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yankee_Creek_Airport" + }, + { + "id": "16089", + "ident": "A79", + "type": "small_airport", + "name": "Chignik Lake Airport", + "latitude_deg": "56.2550010681", + "longitude_deg": "-158.774993896", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chignik Lake", + "scheduled_service": "yes", + "gps_code": "A79", + "iata_code": "KCQ", + "local_code": "A79", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chignik_Lake_Airport" + }, + { + "id": "16090", + "ident": "A88", + "type": "closed", + "name": "Gunsight Mountain Airport", + "latitude_deg": "61.9006", + "longitude_deg": "-147.316632", + "elevation_ft": "2950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Gunsight Mountain Lodge", + "scheduled_service": "no", + "keywords": "A88" + }, + { + "id": "45263", + "ident": "AA00", + "type": "small_airport", + "name": "Shump Airport", + "latitude_deg": "62.51015", + "longitude_deg": "-149.926717", + "elevation_ft": "1670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Talkeetna", + "scheduled_service": "no", + "gps_code": "AA00", + "local_code": "AA00" + }, + { + "id": "45271", + "ident": "AA01", + "type": "seaplane_base", + "name": "West Beaver Seaplane Base", + "latitude_deg": "61.584961", + "longitude_deg": "-149.846531", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "AA01", + "local_code": "AA01" + }, + { + "id": "45252", + "ident": "AA02", + "type": "seaplane_base", + "name": "Horseshoe Lake Seaplane Base", + "latitude_deg": "61.571481", + "longitude_deg": "-149.924111", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "AA02", + "local_code": "AA02" + }, + { + "id": "45260", + "ident": "AA03", + "type": "heliport", + "name": "Central Pad Heliport", + "latitude_deg": "70.171228", + "longitude_deg": "-146.258517", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Deadhorse", + "scheduled_service": "no", + "gps_code": "AA03", + "local_code": "AA03" + }, + { + "id": "45268", + "ident": "AA04", + "type": "heliport", + "name": "Viking Heliport", + "latitude_deg": "61.224775", + "longitude_deg": "-149.839094", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchorage", + "scheduled_service": "no", + "gps_code": "AA04", + "local_code": "AA04" + }, + { + "id": "45279", + "ident": "AA05", + "type": "small_airport", + "name": "Shelby Strip", + "latitude_deg": "61.507867", + "longitude_deg": "-149.078925", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchorage", + "scheduled_service": "no", + "gps_code": "AA25", + "local_code": "AA25", + "keywords": "AA05" + }, + { + "id": "45264", + "ident": "AA06", + "type": "small_airport", + "name": "Sixmile Lake Airport", + "latitude_deg": "61.28867", + "longitude_deg": "-149.808884", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchorage", + "scheduled_service": "no", + "gps_code": "AA06", + "local_code": "AA06" + }, + { + "id": "45262", + "ident": "AA07", + "type": "heliport", + "name": "Saddleback Island Heliport", + "latitude_deg": "61.521791", + "longitude_deg": "-149.926633", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "AA07", + "local_code": "AA07" + }, + { + "id": "318192", + "ident": "AA08", + "type": "heliport", + "name": "Alaska Heliworx Heliport", + "latitude_deg": "61.594722", + "longitude_deg": "-149.153889", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "AA08", + "local_code": "AA08" + }, + { + "id": "325115", + "ident": "AA09", + "type": "small_airport", + "name": "Busch Creek Airport", + "latitude_deg": "62.477547", + "longitude_deg": "-147.775972", + "elevation_ft": "3984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Talkeetna", + "scheduled_service": "no", + "gps_code": "AA09", + "local_code": "AA09" + }, + { + "id": "347460", + "ident": "AA10", + "type": "small_airport", + "name": "Eagles Roost Airport", + "latitude_deg": "61.532891", + "longitude_deg": "-149.698768", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "AA10", + "local_code": "AA10" + }, + { + "id": "45257", + "ident": "AA11", + "type": "seaplane_base", + "name": "Misty Lake Seaplane Base", + "latitude_deg": "61.550739", + "longitude_deg": "-149.676131", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "AA11", + "local_code": "AA11" + }, + { + "id": "313161", + "ident": "AA12", + "type": "seaplane_base", + "name": "Dove Island Lodge Seaplane Base", + "latitude_deg": "57.0408333", + "longitude_deg": "-135.2955556", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sitka", + "scheduled_service": "no", + "gps_code": "AA12", + "local_code": "AA12" + }, + { + "id": "356208", + "ident": "AA13", + "type": "heliport", + "name": "Northwest Hospital/Sahuarita Heliport", + "latitude_deg": "31.95624", + "longitude_deg": "-110.985491", + "elevation_ft": "2831", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sahuarita", + "scheduled_service": "no", + "gps_code": "AA13", + "local_code": "AA13" + }, + { + "id": "325450", + "ident": "AA14", + "type": "heliport", + "name": "Toolik Heliport", + "latitude_deg": "68.628168", + "longitude_deg": "-149.589", + "elevation_ft": "2405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Toolik Field Station", + "scheduled_service": "no", + "gps_code": "AA14", + "local_code": "AA14" + }, + { + "id": "329251", + "ident": "AA16", + "type": "small_airport", + "name": "Treasure Chest Airport", + "latitude_deg": "60.627657", + "longitude_deg": "-151.294679", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kenai", + "scheduled_service": "no", + "gps_code": "AA16", + "local_code": "AA16" + }, + { + "id": "45247", + "ident": "AA22", + "type": "small_airport", + "name": "Delta Daves Airport", + "latitude_deg": "64.130758", + "longitude_deg": "-145.805054", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Delta Junction", + "scheduled_service": "no", + "gps_code": "AA22", + "local_code": "AA22" + }, + { + "id": "45259", + "ident": "AA27", + "type": "heliport", + "name": "Otp Heliport", + "latitude_deg": "70.414028", + "longitude_deg": "-150.018563", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nuiqsut", + "scheduled_service": "no", + "gps_code": "PPNU", + "local_code": "AA27", + "keywords": "Pioneer Heliport" + }, + { + "id": "45267", + "ident": "AA30", + "type": "small_airport", + "name": "Trio Estates Airport", + "latitude_deg": "61.648189", + "longitude_deg": "-149.870831", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "AA30", + "local_code": "AA30" + }, + { + "id": "45280", + "ident": "AA33", + "type": "small_airport", + "name": "Gus Landing", + "latitude_deg": "61.60415", + "longitude_deg": "-149.770119", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "AA33", + "local_code": "AA33" + }, + { + "id": "313164", + "ident": "AA35", + "type": "heliport", + "name": "35 Mile Lodge Heliport", + "latitude_deg": "59.4375556", + "longitude_deg": "-136.2293611", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Haines", + "scheduled_service": "no", + "gps_code": "AA35", + "local_code": "AA35" + }, + { + "id": "313165", + "ident": "AA38", + "type": "heliport", + "name": "Nikaitchuq Operations Center Heliport", + "latitude_deg": "70.4824806", + "longitude_deg": "-149.8532333", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kuparuk", + "scheduled_service": "no", + "gps_code": "AA38", + "local_code": "AA38" + }, + { + "id": "45242", + "ident": "AA44", + "type": "heliport", + "name": "Barlett Regional Hospital Heliport", + "latitude_deg": "58.328608", + "longitude_deg": "-134.46565", + "elevation_ft": "296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Juneau", + "scheduled_service": "no", + "gps_code": "AA44", + "local_code": "AA44" + }, + { + "id": "45281", + "ident": "AA50", + "type": "small_airport", + "name": "Point Thomson Sea Ice Airstrip", + "latitude_deg": "70.181144", + "longitude_deg": "-146.35035", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Deadhorse", + "scheduled_service": "no", + "gps_code": "AA50", + "local_code": "AA50" + }, + { + "id": "313166", + "ident": "AA51", + "type": "heliport", + "name": "Spy Island Drill-Site Heliport", + "latitude_deg": "70.55625", + "longitude_deg": "-149.9105278", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kuparuk", + "scheduled_service": "no", + "gps_code": "AA51", + "local_code": "AA51" + }, + { + "id": "45266", + "ident": "AA76", + "type": "small_airport", + "name": "Timber Trails Airport", + "latitude_deg": "64.78001", + "longitude_deg": "-147.32769", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "North Pole", + "scheduled_service": "no", + "gps_code": "AA76", + "local_code": "AA76" + }, + { + "id": "45269", + "ident": "AA85", + "type": "seaplane_base", + "name": "Walby Lake Seaplane Base", + "latitude_deg": "61.616419", + "longitude_deg": "-149.221031", + "elevation_ft": "114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "AA85", + "local_code": "AA85" + }, + { + "id": "324756", + "ident": "AAD", + "type": "small_airport", + "name": "Adado Airport", + "latitude_deg": "6.095802", + "longitude_deg": "46.6375", + "elevation_ft": "1001", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-GA", + "municipality": "Adado", + "scheduled_service": "no", + "iata_code": "AAD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Adado_Airport", + "keywords": "Cadaado Airport" + }, + { + "id": "30609", + "ident": "AAXX", + "type": "small_airport", + "name": "Rothera Point Airport", + "latitude_deg": "-67.5669411575", + "longitude_deg": "-68.1269931793", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Rothera Point", + "scheduled_service": "no", + "gps_code": "AAXX" + }, + { + "id": "307979", + "ident": "ABE", + "type": "closed", + "name": "RAF Calveley", + "latitude_deg": "53.113333", + "longitude_deg": "-2.603889", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Cheshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Calveley" + }, + { + "id": "302247", + "ident": "ABL", + "type": "closed", + "name": "RNAS/RAF Calshot", + "latitude_deg": "50.8199131549", + "longitude_deg": "-1.30677223206", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hampshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Calshot" + }, + { + "id": "301645", + "ident": "ABP", + "type": "small_airport", + "name": "Atkamba Airport", + "latitude_deg": "-6.06462", + "longitude_deg": "141.095173", + "elevation_ft": "150", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Atkamba Mission", + "scheduled_service": "no", + "iata_code": "ABP", + "local_code": "AKA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atkamba_Airport" + }, + { + "id": "321987", + "ident": "ABW", + "type": "closed", + "name": "Abau Airport", + "latitude_deg": "-10.1956", + "longitude_deg": "148.7389", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Abau", + "scheduled_service": "no", + "iata_code": "ABW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abau_Airport" + }, + { + "id": "41025", + "ident": "ACM", + "type": "small_airport", + "name": "Arica Airport", + "latitude_deg": "-2.144851", + "longitude_deg": "-71.758389", + "elevation_ft": "316", + "continent": "NA", + "iso_country": "CO", + "iso_region": "CO-AMA", + "municipality": "Arica", + "scheduled_service": "no", + "iata_code": "ACM" + }, + { + "id": "318235", + "ident": "AD-0001", + "type": "heliport", + "name": "Terra Guindaldes Heliport", + "latitude_deg": "42.546257", + "longitude_deg": "1.51916", + "continent": "EU", + "iso_country": "AD", + "iso_region": "AD-04", + "municipality": "La Massana", + "scheduled_service": "no" + }, + { + "id": "338490", + "ident": "AD-0002", + "type": "closed", + "name": "Arinsal (Coll de la Botella) Heliport", + "latitude_deg": "42.544983", + "longitude_deg": "1.452258", + "continent": "EU", + "iso_country": "AD", + "iso_region": "AD-04", + "municipality": "La Massana", + "scheduled_service": "no" + }, + { + "id": "41841", + "ident": "AD-ALV", + "type": "heliport", + "name": "Andorra la Vella (Our Lady of Meritxell Hospital) Heliport", + "latitude_deg": "42.511228", + "longitude_deg": "1.533651", + "elevation_ft": "3450", + "continent": "EU", + "iso_country": "AD", + "iso_region": "AD-08", + "municipality": "Escaldes-Engordany", + "scheduled_service": "no", + "iata_code": "ALV", + "wikipedia_link": "http://pl.wikipedia.org/wiki/Heliport_Andorra_la_Vella" + }, + { + "id": "301695", + "ident": "ADC", + "type": "small_airport", + "name": "Andakombe Airport", + "latitude_deg": "-7.13722222222", + "longitude_deg": "145.744722222", + "elevation_ft": "3600", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Andekombe", + "scheduled_service": "no", + "gps_code": "AYAN", + "iata_code": "ADC", + "local_code": "ADK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Andakombe_Airport" + }, + { + "id": "300604", + "ident": "ADJ", + "type": "closed", + "name": "RAF Castletown", + "latitude_deg": "58.5847198881", + "longitude_deg": "-3.3481693267800003", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Caithness", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Castletown" + }, + { + "id": "309426", + "ident": "ADV", + "type": "small_airport", + "name": "El Daein Airport", + "latitude_deg": "11.4023", + "longitude_deg": "26.1186", + "elevation_ft": "1560", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-DE", + "municipality": "El Daein", + "scheduled_service": "no", + "iata_code": "ADV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ed_Daein_Airport" + }, + { + "id": "42257", + "ident": "AE-0001", + "type": "small_airport", + "name": "Batha Airport", + "latitude_deg": "24.214693", + "longitude_deg": "51.44989", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Batha", + "scheduled_service": "yes", + "gps_code": "OEBT", + "keywords": "Ras Sumeira UAE," + }, + { + "id": "44426", + "ident": "AE-0002", + "type": "heliport", + "name": "Burj al Arab Resort Helipad", + "latitude_deg": "25.141327", + "longitude_deg": "55.185496", + "elevation_ft": "689", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "municipality": "Dubai", + "scheduled_service": "no", + "home_link": "http://www.jumeirah.com/en/Hotels-and-Resorts/Destinations/Dubai/Burj-Al-Arab/" + }, + { + "id": "300977", + "ident": "AE-0003", + "type": "small_airport", + "name": "Skydive Dubai Airport", + "latitude_deg": "25.090037", + "longitude_deg": "55.132345", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "municipality": "Dubai", + "scheduled_service": "no", + "home_link": "http://www.skydivedubai.ae/facilities/index.htm", + "keywords": "OMDU" + }, + { + "id": "307257", + "ident": "AE-0004", + "type": "heliport", + "name": "Sheikh Sultan Bin Khalifa bin Zayed Al Nahyan Palace Heliport", + "latitude_deg": "25.122566", + "longitude_deg": "55.174681", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "municipality": "Dubai", + "scheduled_service": "no" + }, + { + "id": "307258", + "ident": "AE-0005", + "type": "heliport", + "name": "Kempinski Emirates Palace Twin Heliport", + "latitude_deg": "24.462095", + "longitude_deg": "54.320529", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-UQ", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Emirates_Palace" + }, + { + "id": "313546", + "ident": "AE-0006", + "type": "seaplane_base", + "name": "Jebel Ali Seaplane Base", + "latitude_deg": "24.988967", + "longitude_deg": "55.023796", + "elevation_ft": "0", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "municipality": "Jebel Ali", + "scheduled_service": "no", + "iata_code": "DJH" + }, + { + "id": "313547", + "ident": "AE-0007", + "type": "heliport", + "name": "Al Ghuwaifat Border Post Helipad", + "latitude_deg": "24.120353", + "longitude_deg": "51.600516", + "elevation_ft": "157", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Ghuwaifat", + "scheduled_service": "no" + }, + { + "id": "313548", + "ident": "AE-0008", + "type": "closed", + "name": "Al Ghuwaifat Customs Post Helipad", + "latitude_deg": "24.128339", + "longitude_deg": "51.616767", + "elevation_ft": "161", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Ghuwaifat", + "scheduled_service": "no" + }, + { + "id": "315508", + "ident": "AE-0009", + "type": "heliport", + "name": "Delma Hospital Helipad", + "latitude_deg": "24.4756", + "longitude_deg": "52.3101", + "elevation_ft": "17", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Delma Island", + "scheduled_service": "no" + }, + { + "id": "319172", + "ident": "AE-0010", + "type": "heliport", + "name": "Schumacher Heliport", + "latitude_deg": "25.221807", + "longitude_deg": "55.138836", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "municipality": "Dubai", + "scheduled_service": "no" + }, + { + "id": "319174", + "ident": "AE-0011", + "type": "heliport", + "name": "Palm Jumeirah Heliport", + "latitude_deg": "25.127297", + "longitude_deg": "55.114092", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "scheduled_service": "no" + }, + { + "id": "319175", + "ident": "AE-0012", + "type": "heliport", + "name": "Waldorf Astoria Dubai Palm Jumeirah Helipad", + "latitude_deg": "25.133372", + "longitude_deg": "55.150379", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "scheduled_service": "no" + }, + { + "id": "319176", + "ident": "AE-0013", + "type": "heliport", + "name": "Oceana Palm Jumeirah Helipad", + "latitude_deg": "25.110083", + "longitude_deg": "55.135169", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "municipality": "Palm Jumeirah", + "scheduled_service": "no" + }, + { + "id": "319177", + "ident": "AE-0014", + "type": "heliport", + "name": "Ghantoot Racing & Polo Club Helipad", + "latitude_deg": "24.86824", + "longitude_deg": "54.905556", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "scheduled_service": "no", + "home_link": "http://www.grpc.ae/helipad.html" + }, + { + "id": "319178", + "ident": "AE-0015", + "type": "heliport", + "name": "Golden Tulip Al Jazira Helipad", + "latitude_deg": "24.858628", + "longitude_deg": "54.894996", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "scheduled_service": "no" + }, + { + "id": "319179", + "ident": "AE-0016", + "type": "heliport", + "name": "Ghantoot Hotel 1 Helipad", + "latitude_deg": "24.866038", + "longitude_deg": "54.88826", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "scheduled_service": "no" + }, + { + "id": "319180", + "ident": "AE-0017", + "type": "heliport", + "name": "Ghantoot Hotel 2 Helipad", + "latitude_deg": "24.865417", + "longitude_deg": "54.882283", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "scheduled_service": "no" + }, + { + "id": "319181", + "ident": "AE-0018", + "type": "heliport", + "name": "Ghantoot Hotel 3 Helipad", + "latitude_deg": "24.894949", + "longitude_deg": "54.860294", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "scheduled_service": "no" + }, + { + "id": "319183", + "ident": "AE-0019", + "type": "heliport", + "name": "Dubai Festival City Helipad", + "latitude_deg": "25.220765", + "longitude_deg": "55.349227", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "municipality": "Dubai", + "scheduled_service": "no" + }, + { + "id": "319184", + "ident": "AE-0020", + "type": "heliport", + "name": "Yas Marina Heliport", + "latitude_deg": "24.468368", + "longitude_deg": "54.609561", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "319185", + "ident": "AE-0021", + "type": "heliport", + "name": "Yas Marina Circuit Heliport", + "latitude_deg": "24.469136", + "longitude_deg": "54.603443", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "319187", + "ident": "AE-0022", + "type": "heliport", + "name": "Al Mushrif Palace Helipad", + "latitude_deg": "24.452066", + "longitude_deg": "54.377368", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "319188", + "ident": "AE-0023", + "type": "heliport", + "name": "Al Forsan Heliport", + "latitude_deg": "24.408318", + "longitude_deg": "54.543228", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "319192", + "ident": "AE-0024", + "type": "small_airport", + "name": "Upper Yasat Island Airport", + "latitude_deg": "24.221075", + "longitude_deg": "52.006719", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al-Yasat", + "scheduled_service": "no" + }, + { + "id": "319193", + "ident": "AE-0025", + "type": "heliport", + "name": "Al Sila Former Hospital Heliport", + "latitude_deg": "24.068301", + "longitude_deg": "51.762519", + "elevation_ft": "135", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Baya Al Sila", + "scheduled_service": "no" + }, + { + "id": "340192", + "ident": "AE-0026", + "type": "small_airport", + "name": "Al Qaffay Airport", + "latitude_deg": "24.59017", + "longitude_deg": "51.72703", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Qaffay", + "scheduled_service": "no" + }, + { + "id": "341676", + "ident": "AE-0027", + "type": "closed", + "name": "Abu Dhabi Airfield", + "latitude_deg": "24.45639", + "longitude_deg": "54.38989", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abu_Dhabi_Airfield" + }, + { + "id": "341677", + "ident": "AE-0028", + "type": "heliport", + "name": "Crown Prince Court Helipad 1", + "latitude_deg": "24.45362", + "longitude_deg": "54.34601", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "341678", + "ident": "AE-0029", + "type": "heliport", + "name": "Crown Prince Court Helipad 2", + "latitude_deg": "24.45439", + "longitude_deg": "54.34625", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "341679", + "ident": "AE-0030", + "type": "heliport", + "name": "Federal National Council Helipad", + "latitude_deg": "24.46258", + "longitude_deg": "54.33235", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "341680", + "ident": "AE-0031", + "type": "heliport", + "name": "Nation Tower Helipad", + "latitude_deg": "24.463993", + "longitude_deg": "54.327638", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "341681", + "ident": "AE-0032", + "type": "heliport", + "name": "Sheikh Khalifa Medical City Heliport", + "latitude_deg": "24.47075", + "longitude_deg": "54.3633", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "341682", + "ident": "AE-0033", + "type": "heliport", + "name": "Paragon Bay Helipad", + "latitude_deg": "24.4898", + "longitude_deg": "54.39109", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "341683", + "ident": "AE-0034", + "type": "heliport", + "name": "Paragon Bay North Helipad", + "latitude_deg": "24.49421", + "longitude_deg": "54.39376", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "341684", + "ident": "AE-0035", + "type": "heliport", + "name": "Sea Palace Helipad", + "latitude_deg": "24.46919", + "longitude_deg": "54.41083", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "341685", + "ident": "AE-0036", + "type": "heliport", + "name": "Qasr al Bahr Heliport", + "latitude_deg": "24.46465", + "longitude_deg": "54.40819", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "341686", + "ident": "AE-0037", + "type": "heliport", + "name": "Rixos Helipad", + "latitude_deg": "25.11907", + "longitude_deg": "55.15236", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "municipality": "Palm Jumeirah", + "scheduled_service": "no" + }, + { + "id": "341687", + "ident": "AE-0038", + "type": "heliport", + "name": "Waldorf Astoria Dubai Palm Jumeirah Helipad", + "latitude_deg": "25.13335", + "longitude_deg": "55.15038", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "municipality": "Palm Jumeirah", + "scheduled_service": "no" + }, + { + "id": "341860", + "ident": "AE-0039", + "type": "heliport", + "name": "Ajman Heliport", + "latitude_deg": "25.400838", + "longitude_deg": "55.440029", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AJ", + "municipality": "Ajman", + "scheduled_service": "no" + }, + { + "id": "341861", + "ident": "AE-0040", + "type": "heliport", + "name": "Safiya Beach Palace Heliport", + "latitude_deg": "25.424981", + "longitude_deg": "55.471788", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AJ", + "municipality": "Ajman", + "scheduled_service": "no" + }, + { + "id": "341862", + "ident": "AE-0041", + "type": "heliport", + "name": "Umm al-Quwain Government Heliport", + "latitude_deg": "25.513418", + "longitude_deg": "55.592879", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-UQ", + "municipality": "Umm al-Quwain", + "scheduled_service": "no" + }, + { + "id": "341863", + "ident": "AE-0042", + "type": "heliport", + "name": "Sheikh Khalifa Hall Heliport", + "latitude_deg": "25.506541", + "longitude_deg": "55.597667", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-UQ", + "municipality": "Al Salamah", + "scheduled_service": "no" + }, + { + "id": "341864", + "ident": "AE-0043", + "type": "heliport", + "name": "Sharjah Government Helipad", + "latitude_deg": "25.35626", + "longitude_deg": "55.425642", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "no" + }, + { + "id": "341865", + "ident": "AE-0044", + "type": "heliport", + "name": "Al Dana Tower Helipad", + "latitude_deg": "25.3344", + "longitude_deg": "55.388949", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "no" + }, + { + "id": "341866", + "ident": "AE-0045", + "type": "heliport", + "name": "Al Batha Tower Helipad", + "latitude_deg": "25.334192", + "longitude_deg": "55.389197", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "no" + }, + { + "id": "341867", + "ident": "AE-0046", + "type": "heliport", + "name": "Gulf Building Helipad", + "latitude_deg": "25.335051", + "longitude_deg": "55.38877", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "no" + }, + { + "id": "341868", + "ident": "AE-0047", + "type": "heliport", + "name": "United Arab Bank Tower Helipad", + "latitude_deg": "25.335952", + "longitude_deg": "55.38784", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "no" + }, + { + "id": "341869", + "ident": "AE-0048", + "type": "heliport", + "name": "Sultaco Building Helipad", + "latitude_deg": "25.337221", + "longitude_deg": "55.388855", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "no" + }, + { + "id": "341870", + "ident": "AE-0049", + "type": "heliport", + "name": "Sharjah Police Heliport", + "latitude_deg": "25.325378", + "longitude_deg": "55.462331", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "no" + }, + { + "id": "341871", + "ident": "AE-0050", + "type": "heliport", + "name": "Ajman Palace Heliport", + "latitude_deg": "25.394986", + "longitude_deg": "55.441451", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AJ", + "municipality": "Ajman", + "scheduled_service": "no" + }, + { + "id": "341872", + "ident": "AE-0051", + "type": "heliport", + "name": "Sharjah Heliport", + "latitude_deg": "25.343769", + "longitude_deg": "55.374724", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "no" + }, + { + "id": "341873", + "ident": "AE-0052", + "type": "heliport", + "name": "Al Saud Building Helipad", + "latitude_deg": "25.363744", + "longitude_deg": "55.391514", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "no" + }, + { + "id": "341874", + "ident": "AE-0053", + "type": "heliport", + "name": "Al Majarrah Building Helipad", + "latitude_deg": "25.363914", + "longitude_deg": "55.391653", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "no" + }, + { + "id": "341875", + "ident": "AE-0054", + "type": "heliport", + "name": "Al Falasi Building Helipad", + "latitude_deg": "25.363779", + "longitude_deg": "55.392614", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "no" + }, + { + "id": "341876", + "ident": "AE-0055", + "type": "heliport", + "name": "Bel Rasheed Building Helipad", + "latitude_deg": "25.342979", + "longitude_deg": "55.385882", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "no" + }, + { + "id": "341877", + "ident": "AE-0056", + "type": "heliport", + "name": "Al Ferasa Tower Helipad", + "latitude_deg": "25.342531", + "longitude_deg": "55.386467", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "no" + }, + { + "id": "341878", + "ident": "AE-0057", + "type": "heliport", + "name": "Golden Tower Helipad", + "latitude_deg": "25.341498", + "longitude_deg": "55.385799", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "no" + }, + { + "id": "341879", + "ident": "AE-0058", + "type": "heliport", + "name": "Latifa Tower Helipad", + "latitude_deg": "25.338862", + "longitude_deg": "55.386517", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "no" + }, + { + "id": "341880", + "ident": "AE-0059", + "type": "heliport", + "name": "Ali Al Qubaisi Building Helipad", + "latitude_deg": "25.338382", + "longitude_deg": "55.387252", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "no" + }, + { + "id": "341881", + "ident": "AE-0060", + "type": "heliport", + "name": "Saleh bin Lahej Tower Helipad", + "latitude_deg": "25.337328", + "longitude_deg": "55.38774", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "no" + }, + { + "id": "341882", + "ident": "AE-0061", + "type": "heliport", + "name": "Crystal Tower Helipad", + "latitude_deg": "25.337354", + "longitude_deg": "55.387194", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "no" + }, + { + "id": "341883", + "ident": "AE-0062", + "type": "heliport", + "name": "Buheira Building Helipad", + "latitude_deg": "25.33234", + "longitude_deg": "55.390495", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "no" + }, + { + "id": "341884", + "ident": "AE-0063", + "type": "heliport", + "name": "Business Tower Sharjah Helipad", + "latitude_deg": "25.32954", + "longitude_deg": "55.391399", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "no" + }, + { + "id": "341885", + "ident": "AE-0064", + "type": "heliport", + "name": "Al Majaz Pearl Tower Helipad", + "latitude_deg": "25.329317", + "longitude_deg": "55.391708", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "no" + }, + { + "id": "341923", + "ident": "AE-0065", + "type": "small_airport", + "name": "Camp Falaj Hazzaa Airfield", + "latitude_deg": "24.189055", + "longitude_deg": "55.715891", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Ain", + "scheduled_service": "no" + }, + { + "id": "341924", + "ident": "AE-0066", + "type": "heliport", + "name": "Technology College Helipad", + "latitude_deg": "24.173952", + "longitude_deg": "55.720791", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Ain", + "scheduled_service": "no" + }, + { + "id": "341925", + "ident": "AE-0067", + "type": "heliport", + "name": "Al Sarouj Helipad", + "latitude_deg": "24.204892", + "longitude_deg": "55.78561", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Sarouj", + "scheduled_service": "no" + }, + { + "id": "341926", + "ident": "AE-0068", + "type": "heliport", + "name": "Sheikh Khalifa Palace Heliport", + "latitude_deg": "24.22204", + "longitude_deg": "55.756117", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Ain", + "scheduled_service": "no" + }, + { + "id": "341927", + "ident": "AE-0069", + "type": "heliport", + "name": "Al Ain Police Heliport", + "latitude_deg": "24.233273", + "longitude_deg": "55.741654", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Ain", + "scheduled_service": "no" + }, + { + "id": "341928", + "ident": "AE-0070", + "type": "heliport", + "name": "Sheikh Khalifa Mosque Heliport", + "latitude_deg": "24.226351", + "longitude_deg": "55.745309", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Mu'tarid", + "scheduled_service": "no" + }, + { + "id": "341929", + "ident": "AE-0071", + "type": "heliport", + "name": "Al Jimi Civic Center Heliport", + "latitude_deg": "24.240232", + "longitude_deg": "55.737016", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Ain", + "scheduled_service": "no" + }, + { + "id": "341930", + "ident": "AE-0072", + "type": "heliport", + "name": "Qasr al Sarab Desert Resort Heliport", + "latitude_deg": "22.898675", + "longitude_deg": "54.339185", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Mirayar", + "scheduled_service": "no" + }, + { + "id": "341932", + "ident": "AE-0073", + "type": "heliport", + "name": "Qasr al Sarab Royal Pavilion Heliport", + "latitude_deg": "22.894094", + "longitude_deg": "54.334232", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Mirayar", + "scheduled_service": "no" + }, + { + "id": "341933", + "ident": "AE-0074", + "type": "heliport", + "name": "Bateen Liwa Heliport", + "latitude_deg": "22.971717", + "longitude_deg": "53.971761", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Bateen Liwa", + "scheduled_service": "no" + }, + { + "id": "341934", + "ident": "AE-0075", + "type": "heliport", + "name": "Asab Heliport", + "latitude_deg": "23.299648", + "longitude_deg": "54.223716", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Asab", + "scheduled_service": "no" + }, + { + "id": "341935", + "ident": "AE-0076", + "type": "heliport", + "name": "Asab Clinic Heliport", + "latitude_deg": "23.296093", + "longitude_deg": "54.227364", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Asab", + "scheduled_service": "no" + }, + { + "id": "341936", + "ident": "AE-0077", + "type": "heliport", + "name": "Al Ain Tawam Hospital North Heliport", + "latitude_deg": "24.197767", + "longitude_deg": "55.647577", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Ain", + "scheduled_service": "no" + }, + { + "id": "341937", + "ident": "AE-0078", + "type": "heliport", + "name": "Al Ain Tawam Hospital South Heliport", + "latitude_deg": "24.193627", + "longitude_deg": "55.649822", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Ain", + "scheduled_service": "no" + }, + { + "id": "341938", + "ident": "AE-0079", + "type": "heliport", + "name": "Al Maqam Heliport", + "latitude_deg": "24.172039", + "longitude_deg": "55.64404", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Maqam", + "scheduled_service": "no" + }, + { + "id": "341939", + "ident": "AE-0080", + "type": "heliport", + "name": "Al Ain Feed Mill Heliport", + "latitude_deg": "24.339833", + "longitude_deg": "55.751537", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Ain", + "scheduled_service": "no" + }, + { + "id": "341940", + "ident": "AE-0081", + "type": "heliport", + "name": "Mezyad Police Heliport", + "latitude_deg": "24.028763", + "longitude_deg": "55.846326", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Ain", + "scheduled_service": "no" + }, + { + "id": "341942", + "ident": "AE-0082", + "type": "heliport", + "name": "Al Husayn Border Crossing Helipad", + "latitude_deg": "24.877845", + "longitude_deg": "56.277941", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-RK", + "municipality": "Al Husayn", + "scheduled_service": "no" + }, + { + "id": "341943", + "ident": "AE-0083", + "type": "heliport", + "name": "Khatmat Malaha Bording Crossing Helipad", + "latitude_deg": "24.983315", + "longitude_deg": "56.36033", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Kalba", + "scheduled_service": "no" + }, + { + "id": "341947", + "ident": "AE-0084", + "type": "heliport", + "name": "Fujairah Naval Heliport", + "latitude_deg": "25.254273", + "longitude_deg": "56.36275", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-FU", + "municipality": "Fujairah", + "scheduled_service": "no" + }, + { + "id": "341949", + "ident": "AE-0085", + "type": "heliport", + "name": "Masafi Heliport", + "latitude_deg": "25.297628", + "longitude_deg": "56.168715", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-RK", + "municipality": "Masafi", + "scheduled_service": "no" + }, + { + "id": "343800", + "ident": "AE-0086", + "type": "small_airport", + "name": "Abu Al Abyad Airfield", + "latitude_deg": "24.182347", + "longitude_deg": "53.867532", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Al Abyad", + "scheduled_service": "no" + }, + { + "id": "343801", + "ident": "AE-0087", + "type": "heliport", + "name": "Khardal Heliport", + "latitude_deg": "24.435946", + "longitude_deg": "51.543313", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Khardal", + "scheduled_service": "no" + }, + { + "id": "348676", + "ident": "AE-0088", + "type": "small_airport", + "name": "Nad Al Sheba Airport", + "latitude_deg": "25.11475", + "longitude_deg": "55.29435", + "elevation_ft": "38", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "municipality": "Dubai", + "scheduled_service": "no" + }, + { + "id": "348677", + "ident": "AE-0089", + "type": "small_airport", + "name": "Ghantoot Naval Airfield", + "latitude_deg": "24.88443", + "longitude_deg": "54.84281", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Ghadeer Al Tayr", + "scheduled_service": "no" + }, + { + "id": "348684", + "ident": "AE-0090", + "type": "small_airport", + "name": "Marawah Airport", + "latitude_deg": "24.27215", + "longitude_deg": "53.32545", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Marawah", + "scheduled_service": "no" + }, + { + "id": "348685", + "ident": "AE-0091", + "type": "small_airport", + "name": "Lower Yasat Island Airport", + "latitude_deg": "24.18884", + "longitude_deg": "51.99655", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al-Yasat", + "scheduled_service": "no" + }, + { + "id": "348686", + "ident": "AE-0092", + "type": "small_airport", + "name": "Ras Ghumais Air Base", + "latitude_deg": "24.34092", + "longitude_deg": "51.60276", + "elevation_ft": "125", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Ras Ghumais", + "scheduled_service": "no" + }, + { + "id": "351596", + "ident": "AE-0093", + "type": "heliport", + "name": "Dr. Sultan Al Qasimi Centre Heliport", + "latitude_deg": "25.281026", + "longitude_deg": "55.468881", + "elevation_ft": "56", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "University City", + "scheduled_service": "no" + }, + { + "id": "351597", + "ident": "AE-0094", + "type": "heliport", + "name": "Higher Colleges of Technology Heliport", + "latitude_deg": "25.2925", + "longitude_deg": "55.47717", + "elevation_ft": "59", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "University City", + "scheduled_service": "no" + }, + { + "id": "351598", + "ident": "AE-0095", + "type": "heliport", + "name": "Dubai Safari Park Heliport", + "latitude_deg": "25.17426", + "longitude_deg": "55.45979", + "elevation_ft": "144", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "municipality": "Wadi Al Amardi", + "scheduled_service": "no" + }, + { + "id": "351604", + "ident": "AE-0096", + "type": "heliport", + "name": "Al Sila Hospital Heliport", + "latitude_deg": "24.0433", + "longitude_deg": "51.75707", + "elevation_ft": "138", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Baya al Sila", + "scheduled_service": "no" + }, + { + "id": "351605", + "ident": "AE-0097", + "type": "heliport", + "name": "Barakah Nuclear Power Plant Heliport", + "latitude_deg": "23.96345", + "longitude_deg": "52.24415", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Barakah", + "scheduled_service": "no" + }, + { + "id": "351606", + "ident": "AE-0098", + "type": "heliport", + "name": "Barakah ENEC Heliport", + "latitude_deg": "23.97948", + "longitude_deg": "52.26672", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Barakah", + "scheduled_service": "no" + }, + { + "id": "351607", + "ident": "AE-0099", + "type": "heliport", + "name": "Barakah East Heliport", + "latitude_deg": "23.98029", + "longitude_deg": "52.27436", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Barakah", + "scheduled_service": "no" + }, + { + "id": "351625", + "ident": "AE-0100", + "type": "heliport", + "name": "Bu Tinah Heliport", + "latitude_deg": "24.628764", + "longitude_deg": "53.048079", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Bu Tinah Island", + "scheduled_service": "no" + }, + { + "id": "351626", + "ident": "AE-0101", + "type": "heliport", + "name": "Mubarraz Island Heliport", + "latitude_deg": "24.45684", + "longitude_deg": "53.37373", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Mubarraz Island", + "scheduled_service": "no" + }, + { + "id": "351627", + "ident": "AE-0102", + "type": "heliport", + "name": "Salahah Heliport", + "latitude_deg": "24.2008", + "longitude_deg": "53.53772", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Salahah Island", + "scheduled_service": "no" + }, + { + "id": "351628", + "ident": "AE-0103", + "type": "heliport", + "name": "Ras Bu Kushayshah Heliport", + "latitude_deg": "24.30378", + "longitude_deg": "54.18142", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Aryam Island", + "scheduled_service": "no" + }, + { + "id": "351629", + "ident": "AE-0104", + "type": "heliport", + "name": "Qassar Bu Sheyarrah Heliport", + "latitude_deg": "24.37842", + "longitude_deg": "54.34751", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Futaisi", + "scheduled_service": "no" + }, + { + "id": "351630", + "ident": "AE-0105", + "type": "heliport", + "name": "Ghayathi New Community Hospital Heliport", + "latitude_deg": "23.89833", + "longitude_deg": "52.80321", + "elevation_ft": "210", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Ghayathi", + "scheduled_service": "no" + }, + { + "id": "351631", + "ident": "AE-0106", + "type": "heliport", + "name": "Al Marfa Hospital Heliport", + "latitude_deg": "24.08413", + "longitude_deg": "53.50017", + "elevation_ft": "98", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Marfa", + "scheduled_service": "no" + }, + { + "id": "351647", + "ident": "AE-0107", + "type": "small_airport", + "name": "Diynah Airport", + "latitude_deg": "24.95", + "longitude_deg": "52.399", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Diynah island", + "scheduled_service": "no", + "keywords": "Diyna, Dayyinah, Daiyina, جزيرة دينا" + }, + { + "id": "351747", + "ident": "AE-0108", + "type": "heliport", + "name": "Private Island Heliport", + "latitude_deg": "25.19858", + "longitude_deg": "55.22908", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "municipality": "Private Island", + "scheduled_service": "no" + }, + { + "id": "351748", + "ident": "AE-0109", + "type": "heliport", + "name": "Sheikh Khalifa Specialty Hospital Heliport", + "latitude_deg": "25.62272", + "longitude_deg": "55.84052", + "elevation_ft": "90", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-RK", + "municipality": "Ras al-Khaimah", + "scheduled_service": "no" + }, + { + "id": "351749", + "ident": "AE-0110", + "type": "heliport", + "name": "Al Dhaid Heliport", + "latitude_deg": "25.31346", + "longitude_deg": "55.86396", + "elevation_ft": "348", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Al Dhaid", + "scheduled_service": "no" + }, + { + "id": "351760", + "ident": "AE-0111", + "type": "heliport", + "name": "Al Dhaid Palace Central Heliport", + "latitude_deg": "25.315298", + "longitude_deg": "55.870014", + "elevation_ft": "354", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Al Dhaid", + "scheduled_service": "no" + }, + { + "id": "351761", + "ident": "AE-0112", + "type": "heliport", + "name": "Al Dhaid Palace East Heliport", + "latitude_deg": "25.31472", + "longitude_deg": "55.87334", + "elevation_ft": "436", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Al Dhaid", + "scheduled_service": "no" + }, + { + "id": "351762", + "ident": "AE-0113", + "type": "heliport", + "name": "Falaj Al Mualla Fort Heliport", + "latitude_deg": "25.35175", + "longitude_deg": "55.84985", + "elevation_ft": "318", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-UQ", + "municipality": "Falaj Al Mualla", + "scheduled_service": "no" + }, + { + "id": "351763", + "ident": "AE-0114", + "type": "heliport", + "name": "Al Dhaid Hospital Heliport", + "latitude_deg": "25.27907", + "longitude_deg": "55.89288", + "elevation_ft": "400", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Al Dhaid", + "scheduled_service": "no" + }, + { + "id": "351765", + "ident": "AE-0115", + "type": "small_airport", + "name": "Aeroprakt Private Airport", + "latitude_deg": "25.26895", + "longitude_deg": "55.92562", + "elevation_ft": "456", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Al Dhaid", + "scheduled_service": "no" + }, + { + "id": "351766", + "ident": "AE-0116", + "type": "heliport", + "name": "Sheikh Khalifa General Hospital Heliport", + "latitude_deg": "25.50068", + "longitude_deg": "55.59768", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-UQ", + "municipality": "Umm al-Quwain", + "scheduled_service": "no" + }, + { + "id": "351767", + "ident": "AE-0117", + "type": "heliport", + "name": "Umm al-Quwain Marine Old Town Heliport", + "latitude_deg": "25.60024", + "longitude_deg": "55.57988", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-UQ", + "municipality": "Umm al-Quwain", + "scheduled_service": "no" + }, + { + "id": "351769", + "ident": "AE-0118", + "type": "heliport", + "name": "Umm al-Quwain Dewan Heliport", + "latitude_deg": "25.5715", + "longitude_deg": "55.56704", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-UQ", + "municipality": "Umm al-Quwain", + "scheduled_service": "no" + }, + { + "id": "351770", + "ident": "AE-0119", + "type": "heliport", + "name": "54 Sheik Ahmed Bin Rashid Al Moalla Street Heliport", + "latitude_deg": "25.55533", + "longitude_deg": "55.56211", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-UQ", + "municipality": "Umm al-Quwain", + "scheduled_service": "no" + }, + { + "id": "351772", + "ident": "AE-0120", + "type": "heliport", + "name": "Sheikh Rashid bin Ahmed Al Mualla Palace Heliport", + "latitude_deg": "25.52502", + "longitude_deg": "55.56231", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-UQ", + "municipality": "Umm al-Quwain", + "scheduled_service": "no" + }, + { + "id": "351774", + "ident": "AE-0121", + "type": "heliport", + "name": "Leatain 2 Heliport", + "latitude_deg": "25.51989", + "longitude_deg": "55.5679", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-UQ", + "municipality": "Umm al-Quwain", + "scheduled_service": "no" + }, + { + "id": "351834", + "ident": "AE-0122", + "type": "heliport", + "name": "SEHA Sharjah Heliport", + "latitude_deg": "25.31817", + "longitude_deg": "55.59855", + "elevation_ft": "151", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Al Rahmaniya", + "scheduled_service": "no" + }, + { + "id": "351835", + "ident": "AE-0123", + "type": "heliport", + "name": "Sharjah Police Headquarters Heliport", + "latitude_deg": "25.32108", + "longitude_deg": "55.59935", + "elevation_ft": "151", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Al Rahmaniya", + "scheduled_service": "no" + }, + { + "id": "351836", + "ident": "AE-0124", + "type": "heliport", + "name": "Al Qassimi Hospital Heliport", + "latitude_deg": "25.34018", + "longitude_deg": "55.43171", + "elevation_ft": "43", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Al Khezamia", + "scheduled_service": "no" + }, + { + "id": "351837", + "ident": "AE-0125", + "type": "heliport", + "name": "ADNOC Onshore Qusahwira Heliport", + "latitude_deg": "22.71057", + "longitude_deg": "54.78659", + "elevation_ft": "610", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Umm Al Zumoul", + "scheduled_service": "no" + }, + { + "id": "351838", + "ident": "AE-0126", + "type": "heliport", + "name": "Qusahwira Palace Heliport", + "latitude_deg": "22.82259", + "longitude_deg": "54.8218", + "elevation_ft": "325", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "municipality": "Umm Al Zumoul", + "scheduled_service": "no" + }, + { + "id": "351839", + "ident": "AE-0127", + "type": "small_airport", + "name": "Qusahwira Air Base", + "latitude_deg": "22.776021", + "longitude_deg": "55.063199", + "elevation_ft": "297", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "municipality": "Umm Al Zumoul", + "scheduled_service": "no" + }, + { + "id": "351840", + "ident": "AE-0128", + "type": "small_airport", + "name": "Liwa Air Base", + "latitude_deg": "23.65128", + "longitude_deg": "53.82444", + "elevation_ft": "422", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Zayed City", + "scheduled_service": "no" + }, + { + "id": "351841", + "ident": "AE-0129", + "type": "small_airport", + "name": "Liwa Auxiliary Airfield", + "latitude_deg": "23.68789", + "longitude_deg": "53.86956", + "elevation_ft": "388", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Zayed City", + "scheduled_service": "no" + }, + { + "id": "351842", + "ident": "AE-0130", + "type": "heliport", + "name": "Al Dhafrah New Hospital Heliport", + "latitude_deg": "23.657949", + "longitude_deg": "53.678773", + "elevation_ft": "394", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Zayed City", + "scheduled_service": "no" + }, + { + "id": "351843", + "ident": "AE-0131", + "type": "heliport", + "name": "Al Dhafrah Old Hospital Heliport", + "latitude_deg": "23.65085", + "longitude_deg": "53.67729", + "elevation_ft": "377", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Zayed City", + "scheduled_service": "no" + }, + { + "id": "351844", + "ident": "AE-0132", + "type": "heliport", + "name": "ADNOC Buhasa Heliport", + "latitude_deg": "23.54884", + "longitude_deg": "53.29251", + "elevation_ft": "492", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Buhasa", + "scheduled_service": "no" + }, + { + "id": "351845", + "ident": "AE-0133", + "type": "heliport", + "name": "ADNOC OPD Clinic Habshan Heliport", + "latitude_deg": "23.85862", + "longitude_deg": "53.63014", + "elevation_ft": "230", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Habshan", + "scheduled_service": "no" + }, + { + "id": "351846", + "ident": "AE-0134", + "type": "heliport", + "name": "Al Marfa Power and Desalinization Plant Heliport", + "latitude_deg": "24.1134", + "longitude_deg": "53.44088", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Marfa", + "scheduled_service": "no" + }, + { + "id": "351847", + "ident": "AE-0135", + "type": "heliport", + "name": "Etihad Rail Depot Heliport", + "latitude_deg": "24.05161", + "longitude_deg": "53.33346", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Hadwaniyyah", + "scheduled_service": "no" + }, + { + "id": "351848", + "ident": "AE-0136", + "type": "heliport", + "name": "Khasbat al Reem Heliport", + "latitude_deg": "24.12818", + "longitude_deg": "53.27715", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Khasbat al Reem", + "scheduled_service": "no" + }, + { + "id": "351850", + "ident": "AE-0137", + "type": "heliport", + "name": "Qareen al Aish Heliport", + "latitude_deg": "24.16568", + "longitude_deg": "53.14781", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Qareen al Aish", + "scheduled_service": "no" + }, + { + "id": "351851", + "ident": "AE-0138", + "type": "heliport", + "name": "Al Ruwais Hospital Heliport", + "latitude_deg": "24.101287", + "longitude_deg": "52.738266", + "elevation_ft": "72", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Ruwais", + "scheduled_service": "no" + }, + { + "id": "351852", + "ident": "AE-0139", + "type": "heliport", + "name": "Al Dhafra Beach Hotel Heliport", + "latitude_deg": "24.16273", + "longitude_deg": "52.64576", + "elevation_ft": "19", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Jebel Dhanna", + "scheduled_service": "no" + }, + { + "id": "351860", + "ident": "AE-0140", + "type": "heliport", + "name": "Masafi Hospital Heliport", + "latitude_deg": "25.29812", + "longitude_deg": "56.16429", + "elevation_ft": "1463", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-RK", + "municipality": "Masafi", + "scheduled_service": "no" + }, + { + "id": "351861", + "ident": "AE-0141", + "type": "heliport", + "name": "Kalba Hospital Heliport", + "latitude_deg": "25.03436", + "longitude_deg": "56.3433", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Kalba", + "scheduled_service": "no" + }, + { + "id": "351862", + "ident": "AE-0142", + "type": "heliport", + "name": "Sheikh Khalifa Hospital Masfout Heliport", + "latitude_deg": "24.8199", + "longitude_deg": "56.0742", + "elevation_ft": "1199", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AJ", + "municipality": "Masfout", + "scheduled_service": "no" + }, + { + "id": "351863", + "ident": "AE-0143", + "type": "heliport", + "name": "Dibba Hospital Heliport", + "latitude_deg": "25.58825", + "longitude_deg": "56.26447", + "elevation_ft": "56", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-FU", + "municipality": "Dibba al Fujairah", + "scheduled_service": "no" + }, + { + "id": "352063", + "ident": "AE-0144", + "type": "heliport", + "name": "ADNOC Upper Zakum West Island Heliport", + "latitude_deg": "24.83324", + "longitude_deg": "53.49706", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "ADNOC Upper Zakum West Island", + "scheduled_service": "no" + }, + { + "id": "352064", + "ident": "AE-0145", + "type": "heliport", + "name": "ADNOC Offshore Central Island Heliport", + "latitude_deg": "24.84651", + "longitude_deg": "53.64946", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "ADNOC Offshore Central Island", + "scheduled_service": "no" + }, + { + "id": "352065", + "ident": "AE-0146", + "type": "heliport", + "name": "ADNOC Offshore South Island Heliport", + "latitude_deg": "24.798385", + "longitude_deg": "53.726775", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "ADNOC Offshore South Island", + "scheduled_service": "no" + }, + { + "id": "352066", + "ident": "AE-0147", + "type": "heliport", + "name": "ADNOC Offshore North Island Heliport", + "latitude_deg": "24.903729", + "longitude_deg": "53.720923", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "ADNOC Offshore North Island", + "scheduled_service": "no" + }, + { + "id": "352067", + "ident": "AE-0148", + "type": "heliport", + "name": "SARB North Island Heliport", + "latitude_deg": "24.79665", + "longitude_deg": "53.210654", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "SARB North Island", + "scheduled_service": "no" + }, + { + "id": "352068", + "ident": "AE-0149", + "type": "heliport", + "name": "SARB South Island Heliport", + "latitude_deg": "24.737717", + "longitude_deg": "53.197539", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "SARB South Island", + "scheduled_service": "no" + }, + { + "id": "352073", + "ident": "AE-0150", + "type": "heliport", + "name": "Camp Al Hamra Heliport", + "latitude_deg": "24.05377", + "longitude_deg": "52.44858", + "elevation_ft": "62", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Hamra", + "scheduled_service": "no" + }, + { + "id": "352074", + "ident": "AE-0151", + "type": "heliport", + "name": "Shuweihat Power Complex Heliport", + "latitude_deg": "24.15646", + "longitude_deg": "52.56739", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Jebel Dhanna", + "scheduled_service": "no" + }, + { + "id": "352075", + "ident": "AE-0152", + "type": "heliport", + "name": "Erth Abu Dhabi Heliport", + "latitude_deg": "24.4038", + "longitude_deg": "54.4718", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352076", + "ident": "AE-0153", + "type": "heliport", + "name": "Sheikh Hazza bin Zayed Palace Heliport", + "latitude_deg": "24.39592", + "longitude_deg": "54.48453", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352077", + "ident": "AE-0154", + "type": "heliport", + "name": "First Abu Dhabi Bank Heliport", + "latitude_deg": "24.41278", + "longitude_deg": "54.46506", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352078", + "ident": "AE-0155", + "type": "heliport", + "name": "Zayed Military Hospital Heliport", + "latitude_deg": "24.42143", + "longitude_deg": "54.42859", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352079", + "ident": "AE-0156", + "type": "heliport", + "name": "Al Qurm Resort Heliport", + "latitude_deg": "24.41836", + "longitude_deg": "54.40504", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352080", + "ident": "AE-0157", + "type": "heliport", + "name": "Ministry of Foreign Affairs and International Cooperation Heliport", + "latitude_deg": "24.45416", + "longitude_deg": "54.3307", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352081", + "ident": "AE-0158", + "type": "heliport", + "name": "Shati as Sayyidat Heliport", + "latitude_deg": "24.46149", + "longitude_deg": "54.30173", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352082", + "ident": "AE-0159", + "type": "heliport", + "name": "Qasr al Watan Heliport", + "latitude_deg": "24.45634", + "longitude_deg": "54.30382", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352083", + "ident": "AE-0160", + "type": "heliport", + "name": "Supreme Council for National Security Heliport", + "latitude_deg": "24.45488", + "longitude_deg": "54.30535", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352084", + "ident": "AE-0161", + "type": "heliport", + "name": "Qasr al Watan Lawn Heliport", + "latitude_deg": "24.46027", + "longitude_deg": "54.31096", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352085", + "ident": "AE-0162", + "type": "heliport", + "name": "Sheikh Sultan bin Zayed I Mosque Heliport", + "latitude_deg": "24.45068", + "longitude_deg": "54.34783", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352086", + "ident": "AE-0163", + "type": "heliport", + "name": "ADNOC HQ Building Helipad", + "latitude_deg": "24.46201", + "longitude_deg": "54.32404", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352087", + "ident": "AE-0164", + "type": "heliport", + "name": "Founders Memorial Heliport", + "latitude_deg": "24.46249", + "longitude_deg": "54.3214", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352088", + "ident": "AE-0165", + "type": "heliport", + "name": "Abu Dhabi Helicopter Tour Heliport", + "latitude_deg": "24.47796", + "longitude_deg": "54.32805", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352089", + "ident": "AE-0166", + "type": "heliport", + "name": "InterContinental Abu Dhabi Helipad", + "latitude_deg": "24.4576", + "longitude_deg": "54.32894", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352090", + "ident": "AE-0167", + "type": "heliport", + "name": "InterContinental Abu Dhabi Marina Heliport", + "latitude_deg": "24.45734", + "longitude_deg": "54.32725", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352091", + "ident": "AE-0168", + "type": "heliport", + "name": "Al Manhal Palace Heliport", + "latitude_deg": "24.47829", + "longitude_deg": "54.36139", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352092", + "ident": "AE-0169", + "type": "heliport", + "name": "Burjeel Medical City Heliport", + "latitude_deg": "24.35473", + "longitude_deg": "54.53849", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352093", + "ident": "AE-0170", + "type": "heliport", + "name": "Yas Island Civil Defence Heliport", + "latitude_deg": "24.49544", + "longitude_deg": "54.60364", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352094", + "ident": "AE-0171", + "type": "heliport", + "name": "Sheikh Ahmed al-Nuaimi Palace Heliport", + "latitude_deg": "25.39841", + "longitude_deg": "55.5302", + "elevation_ft": "79", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AJ", + "municipality": "Al Hamidiya", + "scheduled_service": "no" + }, + { + "id": "352095", + "ident": "AE-0172", + "type": "heliport", + "name": "Fairmont Ajman South Jetty Heliport", + "latitude_deg": "25.41837", + "longitude_deg": "55.4368", + "elevation_ft": "5", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AJ", + "municipality": "Ajman", + "scheduled_service": "no" + }, + { + "id": "352096", + "ident": "AE-0173", + "type": "heliport", + "name": "Fairmont Ajman North Jetty Heliport", + "latitude_deg": "25.41974", + "longitude_deg": "55.43774", + "elevation_ft": "5", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AJ", + "municipality": "Ajman", + "scheduled_service": "no" + }, + { + "id": "352097", + "ident": "AE-0174", + "type": "heliport", + "name": "Ruler's Divan Heliport", + "latitude_deg": "25.41877", + "longitude_deg": "55.44188", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AJ", + "municipality": "Ajman", + "scheduled_service": "no" + }, + { + "id": "352098", + "ident": "AE-0175", + "type": "heliport", + "name": "Ajman Hotel Heliport", + "latitude_deg": "25.42565", + "longitude_deg": "55.44226", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AJ", + "municipality": "Ajman", + "scheduled_service": "no" + }, + { + "id": "352099", + "ident": "AE-0176", + "type": "heliport", + "name": "Sheikh Rashid bin Humaid al-Nuaimi Mosque Heliport", + "latitude_deg": "25.40138", + "longitude_deg": "55.43938", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AJ", + "municipality": "Ajman", + "scheduled_service": "no" + }, + { + "id": "352100", + "ident": "AE-0177", + "type": "heliport", + "name": "Sheikh Khalifa Central Hospital Heliport", + "latitude_deg": "25.14824", + "longitude_deg": "56.35365", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-FU", + "municipality": "Fujairah", + "scheduled_service": "no" + }, + { + "id": "352101", + "ident": "AE-0178", + "type": "heliport", + "name": "Al Hail Corniche Tower Heliport", + "latitude_deg": "25.12752", + "longitude_deg": "56.35495", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-FU", + "municipality": "Fujairah", + "scheduled_service": "no" + }, + { + "id": "352102", + "ident": "AE-0179", + "type": "heliport", + "name": "City Center Building Heliport", + "latitude_deg": "25.12345", + "longitude_deg": "56.32272", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-FU", + "municipality": "Fujairah", + "scheduled_service": "no" + }, + { + "id": "352103", + "ident": "AE-0180", + "type": "heliport", + "name": "Nama Tower Helipad", + "latitude_deg": "25.12277", + "longitude_deg": "56.32215", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-FU", + "municipality": "Fujairah", + "scheduled_service": "no" + }, + { + "id": "352104", + "ident": "AE-0181", + "type": "heliport", + "name": "Farouj al Wadi Building Helipad", + "latitude_deg": "25.12273", + "longitude_deg": "56.32392", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-FU", + "municipality": "Fujairah", + "scheduled_service": "no" + }, + { + "id": "352105", + "ident": "AE-0182", + "type": "heliport", + "name": "Creative Tower Helipad", + "latitude_deg": "25.12267", + "longitude_deg": "56.32483", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-FU", + "municipality": "Fujairah", + "scheduled_service": "no" + }, + { + "id": "352106", + "ident": "AE-0183", + "type": "heliport", + "name": "Chocolate Palace Helipad", + "latitude_deg": "25.12273", + "longitude_deg": "56.32079", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-FU", + "municipality": "Fujairah", + "scheduled_service": "no" + }, + { + "id": "352107", + "ident": "AE-0184", + "type": "heliport", + "name": "Festival Square Heliport", + "latitude_deg": "25.13139", + "longitude_deg": "56.31949", + "elevation_ft": "82", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-FU", + "municipality": "Fujairah", + "scheduled_service": "no" + }, + { + "id": "352108", + "ident": "AE-0185", + "type": "heliport", + "name": "Fujairah Palace Heliport", + "latitude_deg": "25.13477", + "longitude_deg": "56.32165", + "elevation_ft": "66", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-FU", + "municipality": "Fujairah", + "scheduled_service": "no" + }, + { + "id": "352109", + "ident": "AE-0186", + "type": "heliport", + "name": "Ibrahim bin Hamad Obaidullah Hospital Heliport", + "latitude_deg": "25.79653", + "longitude_deg": "55.98167", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-RK", + "municipality": "Ras al-Khaimah", + "scheduled_service": "no" + }, + { + "id": "352110", + "ident": "AE-0187", + "type": "heliport", + "name": "Wadi Bih Military Camp Heliport", + "latitude_deg": "25.83497", + "longitude_deg": "56.1238", + "elevation_ft": "610", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-RK", + "municipality": "Ras al-Khaimah", + "scheduled_service": "no" + }, + { + "id": "352286", + "ident": "AE-0188", + "type": "heliport", + "name": "Al Muzoon West Helipad", + "latitude_deg": "24.41685", + "longitude_deg": "54.42005", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352287", + "ident": "AE-0189", + "type": "heliport", + "name": "Al Muzoon Central Helipad", + "latitude_deg": "24.41212", + "longitude_deg": "54.43895", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352288", + "ident": "AE-0190", + "type": "heliport", + "name": "Al Muzoon East Helipad", + "latitude_deg": "24.40972", + "longitude_deg": "54.44253", + "elevation_ft": "17", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352289", + "ident": "AE-0191", + "type": "heliport", + "name": "Al Fahim Palace Heliport", + "latitude_deg": "24.4479", + "longitude_deg": "54.34828", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352290", + "ident": "AE-0192", + "type": "heliport", + "name": "Al Bateen Palace West Helipad", + "latitude_deg": "24.44025", + "longitude_deg": "54.35467", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352291", + "ident": "AE-0193", + "type": "heliport", + "name": "Al Bateen Palace West Inner Helipad", + "latitude_deg": "24.44205", + "longitude_deg": "54.35689", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352292", + "ident": "AE-0194", + "type": "heliport", + "name": "Al Bateen PGC Heliport", + "latitude_deg": "24.448", + "longitude_deg": "54.35629", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "352987", + "ident": "AE-0195", + "type": "heliport", + "name": "Khorfakkan Hospital Heliport", + "latitude_deg": "25.33549", + "longitude_deg": "56.34148", + "elevation_ft": "78", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Yarmouk", + "scheduled_service": "no" + }, + { + "id": "353393", + "ident": "AE-0196", + "type": "heliport", + "name": "Ministry of Interior Heliport", + "latitude_deg": "24.42173", + "longitude_deg": "54.42416", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "353394", + "ident": "AE-0197", + "type": "heliport", + "name": "Anantara Sir Bani Yas Island Al Sahel Villa Resort Heliport", + "latitude_deg": "24.32627", + "longitude_deg": "52.56608", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Sir Bani Yas", + "scheduled_service": "no" + }, + { + "id": "353421", + "ident": "AE-0198", + "type": "heliport", + "name": "Anantara Sir Bani Yas Island Al Yamm Villa Resort Heliport", + "latitude_deg": "24.34086", + "longitude_deg": "52.64339", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Sir Bani Yas", + "scheduled_service": "no" + }, + { + "id": "353422", + "ident": "AE-0199", + "type": "heliport", + "name": "Sir Bani Yas Heliport", + "latitude_deg": "24.27183", + "longitude_deg": "52.60181", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Sir Bani Yas", + "scheduled_service": "no" + }, + { + "id": "353556", + "ident": "AE-0200", + "type": "heliport", + "name": "Al Rahba Hospital Heliport", + "latitude_deg": "24.5745", + "longitude_deg": "54.69509", + "elevation_ft": "43", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Rahba", + "scheduled_service": "no" + }, + { + "id": "353557", + "ident": "AE-0201", + "type": "heliport", + "name": "Rashid bin Saeed Al-Maktoum Naval College Heliport", + "latitude_deg": "24.69684", + "longitude_deg": "54.66605", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Sadr", + "scheduled_service": "no" + }, + { + "id": "353558", + "ident": "AE-0202", + "type": "heliport", + "name": "Al Sadr Port North Helipad", + "latitude_deg": "24.70562", + "longitude_deg": "54.6599", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Sadr", + "scheduled_service": "no" + }, + { + "id": "353559", + "ident": "AE-0203", + "type": "heliport", + "name": "Al Fattan Marine Services Heliport", + "latitude_deg": "24.70173", + "longitude_deg": "54.66023", + "elevation_ft": "5", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Sadr", + "scheduled_service": "no" + }, + { + "id": "353560", + "ident": "AE-0204", + "type": "heliport", + "name": "Dolphin Taweelah Receiving Facility Heliport", + "latitude_deg": "24.75333", + "longitude_deg": "54.67817", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Taweelah", + "scheduled_service": "no" + }, + { + "id": "353561", + "ident": "AE-0205", + "type": "heliport", + "name": "Jebel Ali Naval Base Heliport", + "latitude_deg": "24.99932", + "longitude_deg": "55.04522", + "elevation_ft": "11", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "municipality": "Jebel Ali North", + "scheduled_service": "no" + }, + { + "id": "353569", + "ident": "AE-0206", + "type": "heliport", + "name": "Jazirat al-Qamar (Crescent Moon Island) Heliport", + "latitude_deg": "25.31078", + "longitude_deg": "54.66332", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "municipality": "Jazirat al-Qamar", + "scheduled_service": "no" + }, + { + "id": "353576", + "ident": "AE-0207", + "type": "heliport", + "name": "Al Dara Border Crossing Heliport", + "latitude_deg": "26.0496", + "longitude_deg": "56.08661", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-RK", + "municipality": "Al Jeer", + "scheduled_service": "no" + }, + { + "id": "355386", + "ident": "AE-0208", + "type": "heliport", + "name": "ADNOC Helipad South", + "latitude_deg": "24.84254", + "longitude_deg": "53.649421", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "scheduled_service": "no" + }, + { + "id": "355387", + "ident": "AE-0209", + "type": "heliport", + "name": "Zakum West Super Complex", + "latitude_deg": "24.860175", + "longitude_deg": "53.610931", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "scheduled_service": "no" + }, + { + "id": "355388", + "ident": "AE-0210", + "type": "heliport", + "name": "Upper Zakum production facility", + "latitude_deg": "24.835355", + "longitude_deg": "53.613794", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "scheduled_service": "no" + }, + { + "id": "355390", + "ident": "AE-0211", + "type": "heliport", + "name": "Helipads (3x)", + "latitude_deg": "24.383142", + "longitude_deg": "53.389907", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "scheduled_service": "no" + }, + { + "id": "355391", + "ident": "AE-0212", + "type": "heliport", + "name": "Helipads", + "latitude_deg": "24.392927", + "longitude_deg": "53.418419", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "scheduled_service": "no" + }, + { + "id": "355392", + "ident": "AE-0213", + "type": "heliport", + "name": "Offshore Helipad", + "latitude_deg": "24.805235", + "longitude_deg": "53.726433", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "scheduled_service": "no" + }, + { + "id": "355393", + "ident": "AE-0214", + "type": "heliport", + "name": "Offshore Helipad", + "latitude_deg": "24.780052", + "longitude_deg": "53.673363", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "scheduled_service": "no" + }, + { + "id": "355394", + "ident": "AE-0215", + "type": "heliport", + "name": "Offshore Helipad", + "latitude_deg": "24.897336", + "longitude_deg": "53.722265", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "scheduled_service": "no" + }, + { + "id": "355395", + "ident": "AE-0216", + "type": "heliport", + "name": "Zakum Central Supercomplex", + "latitude_deg": "24.859981", + "longitude_deg": "53.697631", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "scheduled_service": "no" + }, + { + "id": "355396", + "ident": "AE-0217", + "type": "heliport", + "name": "Offshore Helipad", + "latitude_deg": "24.902908", + "longitude_deg": "53.718284", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "scheduled_service": "no" + }, + { + "id": "355423", + "ident": "AE-0218", + "type": "heliport", + "name": "Police Helipad", + "latitude_deg": "24.097556", + "longitude_deg": "52.652299", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "scheduled_service": "no" + }, + { + "id": "355424", + "ident": "AE-0219", + "type": "heliport", + "name": "Helipad", + "latitude_deg": "24.101299", + "longitude_deg": "52.649735", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "scheduled_service": "no" + }, + { + "id": "300307", + "ident": "AEE", + "type": "small_airport", + "name": "Adareil Airport", + "latitude_deg": "10.053611", + "longitude_deg": "32.959444", + "elevation_ft": "1301", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-23", + "municipality": "Adar", + "scheduled_service": "no", + "gps_code": "HJAR", + "iata_code": "AEE" + }, + { + "id": "300646", + "ident": "AEI", + "type": "heliport", + "name": "Algeciras Heliport", + "latitude_deg": "36.12882", + "longitude_deg": "-5.441079", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CA", + "municipality": "Algeciras", + "scheduled_service": "yes", + "gps_code": "LEAG", + "home_link": "https://www.aena.es/en/algeciras.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Algeciras_Heliport" + }, + { + "id": "299319", + "ident": "AEK", + "type": "small_airport", + "name": "Aseki Airport", + "latitude_deg": "-7.35080485552", + "longitude_deg": "146.19386673", + "elevation_ft": "4106", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Aseki", + "scheduled_service": "no", + "gps_code": "AYAX", + "iata_code": "AEK", + "local_code": "ASE" + }, + { + "id": "330359", + "ident": "AEQ", + "type": "small_airport", + "name": "Ar Horqin Airport", + "latitude_deg": "43.87042", + "longitude_deg": "120.15958", + "elevation_ft": "1335", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Chifeng", + "scheduled_service": "no", + "iata_code": "AEQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ar_Horqin_Airport" + }, + { + "id": "35352", + "ident": "AF-0001", + "type": "small_airport", + "name": "Ajrestan Airport", + "latitude_deg": "33.485298", + "longitude_deg": "67.144096", + "elevation_ft": "8324", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-ORU", + "municipality": "Ajrestan", + "scheduled_service": "no" + }, + { + "id": "35353", + "ident": "AF-0002", + "type": "small_airport", + "name": "Dehdadi Airport", + "latitude_deg": "36.646099", + "longitude_deg": "67.032303", + "elevation_ft": "1378", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-BAL", + "municipality": "Dehdadi", + "scheduled_service": "no", + "keywords": "Camp Shaheen" + }, + { + "id": "35354", + "ident": "AF-0003", + "type": "small_airport", + "name": "Charikar Airport", + "latitude_deg": "35.142523", + "longitude_deg": "69.304742", + "elevation_ft": "5569", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-KAP", + "municipality": "Golbahar", + "scheduled_service": "no" + }, + { + "id": "35355", + "ident": "AF-0004", + "type": "closed", + "name": "Dostmohammadkhan Kalay Airport", + "latitude_deg": "31.043942", + "longitude_deg": "64.153919", + "elevation_ft": "2333", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-HEL", + "municipality": "Dostmohammadkhan Kalay", + "scheduled_service": "no" + }, + { + "id": "332240", + "ident": "AF-0005", + "type": "medium_airport", + "name": "Khost International Airport", + "latitude_deg": "33.284605", + "longitude_deg": "69.80734", + "elevation_ft": "4204", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-KHO", + "municipality": "Khost", + "scheduled_service": "no", + "gps_code": "OAKS", + "iata_code": "KHT" + }, + { + "id": "341243", + "ident": "AF-0006", + "type": "small_airport", + "name": "Mohammad Agha Wuluswali Airport", + "latitude_deg": "34.171971", + "longitude_deg": "69.035309", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-LOW", + "municipality": "Mohammad Agha", + "scheduled_service": "no" + }, + { + "id": "341247", + "ident": "AF-0007", + "type": "heliport", + "name": "Forward Operating Base Bostick Heliport", + "latitude_deg": "35.208583", + "longitude_deg": "71.523219", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-KNR", + "municipality": "Naray", + "scheduled_service": "no" + }, + { + "id": "341248", + "ident": "AF-0008", + "type": "heliport", + "name": "Camp Qargha North Heliport", + "latitude_deg": "34.548535", + "longitude_deg": "69.06869", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-KAB", + "municipality": "Kabul", + "scheduled_service": "no", + "keywords": "Camp Phoenix" + }, + { + "id": "341249", + "ident": "AF-0009", + "type": "heliport", + "name": "Camp Qargha South Heliport", + "latitude_deg": "34.539752", + "longitude_deg": "69.071963", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-KAB", + "municipality": "Kabul", + "scheduled_service": "no", + "keywords": "Camp Phoenix" + }, + { + "id": "341250", + "ident": "AF-0010", + "type": "heliport", + "name": "Camp Warehouse Heliport", + "latitude_deg": "34.54016", + "longitude_deg": "69.30969", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-KAB", + "municipality": "Kabul", + "scheduled_service": "no" + }, + { + "id": "341251", + "ident": "AF-0011", + "type": "small_airport", + "name": "Forward Operating Base Arian Airfield", + "latitude_deg": "33.50443", + "longitude_deg": "68.414262", + "elevation_ft": "7106", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-GHA", + "municipality": "Ghazni", + "scheduled_service": "no" + }, + { + "id": "341252", + "ident": "AF-0012", + "type": "heliport", + "name": "UNOCA Heliport", + "latitude_deg": "34.54526", + "longitude_deg": "69.27494", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-KAB", + "municipality": "Kabul", + "scheduled_service": "no" + }, + { + "id": "341254", + "ident": "AF-0013", + "type": "small_airport", + "name": "Samangan Airstrip", + "latitude_deg": "36.282828", + "longitude_deg": "68.020254", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-SAM", + "municipality": "Samangan", + "scheduled_service": "no" + }, + { + "id": "349343", + "ident": "AF-0014", + "type": "small_airport", + "name": "Salerno North Field", + "latitude_deg": "33.375169", + "longitude_deg": "69.96954", + "elevation_ft": "3757", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-KHO", + "municipality": "Khost", + "scheduled_service": "no" + }, + { + "id": "349344", + "ident": "AF-0015", + "type": "small_airport", + "name": "Qarghayi Airport", + "latitude_deg": "34.49927", + "longitude_deg": "70.11921", + "elevation_ft": "2316", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-LAG", + "municipality": "Qarghayi", + "scheduled_service": "no" + }, + { + "id": "35359", + "ident": "AF04", + "type": "small_airport", + "name": "Helmand Airport", + "latitude_deg": "30.303216", + "longitude_deg": "61.868904", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-NIM", + "municipality": "Tofangca", + "scheduled_service": "no", + "local_code": "AF04" + }, + { + "id": "35360", + "ident": "AF06", + "type": "small_airport", + "name": "Khwaja Ghar North Airport", + "latitude_deg": "37.071098", + "longitude_deg": "69.495003", + "elevation_ft": "1645", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-TAK", + "municipality": "Khwaja Ghar", + "scheduled_service": "no", + "keywords": "Khvej Ghar North" + }, + { + "id": "35361", + "ident": "AF07", + "type": "small_airport", + "name": "Khwaja Ghar South Airport", + "latitude_deg": "37.061623", + "longitude_deg": "69.487765", + "elevation_ft": "1645", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-TAK", + "municipality": "Khwaja Ghar", + "scheduled_service": "no", + "keywords": "Khvej Ghar South" + }, + { + "id": "35362", + "ident": "AF08", + "type": "small_airport", + "name": "Kutub Khel Airport", + "latitude_deg": "34.192902", + "longitude_deg": "69.135696", + "elevation_ft": "6273", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-LOW", + "municipality": "Kutub Khel", + "scheduled_service": "no", + "keywords": "Kotubkhel" + }, + { + "id": "35363", + "ident": "AF09", + "type": "small_airport", + "name": "Nayak Airport", + "latitude_deg": "34.687099", + "longitude_deg": "66.893204", + "elevation_ft": "8650", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-BAM", + "municipality": "Yakawlang", + "scheduled_service": "no" + }, + { + "id": "35364", + "ident": "AF10", + "type": "small_airport", + "name": "Orūzgān Airport", + "latitude_deg": "32.9029998779", + "longitude_deg": "66.630897522", + "elevation_ft": "6725", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-ORU", + "municipality": "Orūzgān", + "scheduled_service": "no", + "gps_code": "OARG", + "iata_code": "URZ", + "keywords": "Uruzgan, Urozgan" + }, + { + "id": "35365", + "ident": "AF11", + "type": "small_airport", + "name": "Salerno Airport", + "latitude_deg": "33.3638", + "longitude_deg": "69.9561", + "elevation_ft": "3780", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-KHO", + "municipality": "Khost", + "scheduled_service": "no", + "gps_code": "OASL", + "iata_code": "OLR", + "wikipedia_link": "https://en.wikipedia.org/wiki/FOB_Salerno", + "keywords": "AF11, Forward Operating Base Serlano, Salerno Landing Zone" + }, + { + "id": "35366", + "ident": "AF12", + "type": "closed", + "name": "Sarhawdza Landing Zone Airport", + "latitude_deg": "33.159585", + "longitude_deg": "68.821332", + "elevation_ft": "7060", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-PKA", + "municipality": "Sharana", + "scheduled_service": "no" + }, + { + "id": "35367", + "ident": "AF13", + "type": "small_airport", + "name": "Shebartu Landing Zone Airport", + "latitude_deg": "34.778601", + "longitude_deg": "67.489557", + "elevation_ft": "10490", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-BAM", + "municipality": "Bum-e Shebar", + "scheduled_service": "no", + "keywords": "Sheber Too" + }, + { + "id": "35368", + "ident": "AF14", + "type": "small_airport", + "name": "Tapa Airport", + "latitude_deg": "32.745098", + "longitude_deg": "62.598701", + "elevation_ft": "2622", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-FRA", + "municipality": "Farah Rud", + "scheduled_service": "no" + }, + { + "id": "35369", + "ident": "AF15", + "type": "heliport", + "name": "Qara Tepa Heliport", + "latitude_deg": "37.423302", + "longitude_deg": "69.430298", + "elevation_ft": "1437", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-TAK", + "municipality": "Qara Tepa", + "scheduled_service": "yes" + }, + { + "id": "309041", + "ident": "AFK", + "type": "seaplane_base", + "name": "Kondavattavana Tank Seaplane Base", + "latitude_deg": "7.284", + "longitude_deg": "81.644", + "elevation_ft": "95", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-5", + "municipality": "Ampara", + "scheduled_service": "no", + "iata_code": "AFK" + }, + { + "id": "301665", + "ident": "AFR", + "type": "small_airport", + "name": "Afore Airstrip", + "latitude_deg": "-9.142222222220001", + "longitude_deg": "148.390833333", + "elevation_ft": "2500", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "scheduled_service": "no", + "gps_code": "AYAF", + "iata_code": "AFR", + "local_code": "AFE" + }, + { + "id": "336537", + "ident": "AG-0001", + "type": "closed", + "name": "New Barbuda Airport (under construction)", + "latitude_deg": "17.621194", + "longitude_deg": "-61.798347", + "continent": "NA", + "iso_country": "AG", + "iso_region": "AG-10", + "municipality": "Codrington", + "scheduled_service": "no" + }, + { + "id": "301649", + "ident": "AGAF", + "type": "small_airport", + "name": "Afutara Aerodrome", + "latitude_deg": "-9.19138888889", + "longitude_deg": "160.948611111", + "elevation_ft": "23", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-ML", + "municipality": "Bila", + "scheduled_service": "yes", + "gps_code": "AGAF", + "iata_code": "AFT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Afutara_Airport" + }, + { + "id": "302290", + "ident": "AGAR", + "type": "small_airport", + "name": "Ulawa Airport", + "latitude_deg": "-9.86054358262", + "longitude_deg": "161.979546547", + "elevation_ft": "40", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-MK", + "municipality": "Arona", + "scheduled_service": "no", + "gps_code": "AGAR", + "iata_code": "RNA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ulawa_Airport" + }, + { + "id": "35172", + "ident": "AGAT", + "type": "small_airport", + "name": "Uru Harbour Airport", + "latitude_deg": "-8.87333", + "longitude_deg": "161.011002", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-ML", + "municipality": "Atoifi", + "scheduled_service": "yes", + "gps_code": "AGAT", + "iata_code": "ATD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Uru_Harbour_Airport" + }, + { + "id": "32570", + "ident": "AGBA", + "type": "small_airport", + "name": "Barakoma Airport", + "latitude_deg": "-7.912779808044434", + "longitude_deg": "156.70599365234375", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-WE", + "municipality": "Barakoma", + "scheduled_service": "no", + "gps_code": "AGBA", + "iata_code": "VEV" + }, + { + "id": "31524", + "ident": "AGEV", + "type": "small_airport", + "name": "Geva Airport", + "latitude_deg": "-7.575829982757568", + "longitude_deg": "156.5970001220703", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-WE", + "municipality": "Liangia", + "scheduled_service": "no", + "gps_code": "AGEV", + "iata_code": "GEF" + }, + { + "id": "301650", + "ident": "AGG", + "type": "small_airport", + "name": "Angoram Airport", + "latitude_deg": "-4.05583333333", + "longitude_deg": "144.073888889", + "elevation_ft": "75", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Angoram", + "scheduled_service": "no", + "iata_code": "AGG", + "local_code": "ANG" + }, + { + "id": "30634", + "ident": "AGGA", + "type": "small_airport", + "name": "Gwaunaru'u Airport", + "latitude_deg": "-8.70257", + "longitude_deg": "160.682007", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-ML", + "municipality": "Auki", + "scheduled_service": "yes", + "gps_code": "AGGA", + "iata_code": "AKS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Auki_Airport" + }, + { + "id": "302047", + "ident": "AGGB", + "type": "small_airport", + "name": "Bellona/Anua Airport", + "latitude_deg": "-11.302222222200001", + "longitude_deg": "159.798333333", + "elevation_ft": "60", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-RB", + "municipality": "Anua", + "scheduled_service": "yes", + "gps_code": "AGGB", + "iata_code": "BNY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bellona/Anua_Airport" + }, + { + "id": "302291", + "ident": "AGGC", + "type": "small_airport", + "name": "Choiseul Bay Airport", + "latitude_deg": "-6.711944", + "longitude_deg": "156.396111", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-CH", + "scheduled_service": "yes", + "gps_code": "AGGC", + "iata_code": "CHY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Choiseul_Bay_Airport" + }, + { + "id": "30678", + "ident": "AGGE", + "type": "small_airport", + "name": "Ballalae Airport", + "latitude_deg": "-6.990745", + "longitude_deg": "155.886656", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-WE", + "municipality": "Ballalae", + "scheduled_service": "yes", + "gps_code": "AGGE", + "iata_code": "BAS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Balalae_Airport" + }, + { + "id": "35167", + "ident": "AGGF", + "type": "small_airport", + "name": "Fera/Maringe Airport", + "latitude_deg": "-8.1075", + "longitude_deg": "159.576996", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-IS", + "municipality": "Fera Island", + "scheduled_service": "yes", + "gps_code": "AGGF", + "iata_code": "FRE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fera_Airport", + "keywords": "Santa Isabel Islands" + }, + { + "id": "3", + "ident": "AGGH", + "type": "large_airport", + "name": "Honiara International Airport", + "latitude_deg": "-9.428", + "longitude_deg": "160.054993", + "elevation_ft": "28", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-GU", + "municipality": "Honiara", + "scheduled_service": "yes", + "gps_code": "AGGH", + "iata_code": "HIR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Honiara_International_Airport", + "keywords": "Henderson Field" + }, + { + "id": "31885", + "ident": "AGGI", + "type": "small_airport", + "name": "Babanakira Airport", + "latitude_deg": "-9.7475004196167", + "longitude_deg": "159.83900451660156", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-GU", + "municipality": "Mbambanakira", + "scheduled_service": "yes", + "gps_code": "AGGI", + "iata_code": "MBU", + "keywords": "Mbambanakira Airport" + }, + { + "id": "301837", + "ident": "AGGJ", + "type": "small_airport", + "name": "Avu Avu Airport", + "latitude_deg": "-9.86833333333", + "longitude_deg": "160.410555556", + "elevation_ft": "25", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-GU", + "scheduled_service": "no", + "gps_code": "AGGJ", + "iata_code": "AVU" + }, + { + "id": "31686", + "ident": "AGGK", + "type": "small_airport", + "name": "Ngorangora Airport", + "latitude_deg": "-10.449700355500001", + "longitude_deg": "161.897994995", + "elevation_ft": "54", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-MK", + "municipality": "Kirakira", + "scheduled_service": "yes", + "gps_code": "AGGK", + "iata_code": "IRA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kirakira_Airport" + }, + { + "id": "32275", + "ident": "AGGL", + "type": "small_airport", + "name": "Santa Cruz/Graciosa Bay/Luova Airport", + "latitude_deg": "-10.72029972076416", + "longitude_deg": "165.7949981689453", + "elevation_ft": "18", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-TE", + "municipality": "Santa Cruz/Graciosa Bay/Luova", + "scheduled_service": "yes", + "gps_code": "AGGL", + "iata_code": "SCZ" + }, + { + "id": "4", + "ident": "AGGM", + "type": "medium_airport", + "name": "Munda Airport", + "latitude_deg": "-8.32797", + "longitude_deg": "157.263", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-WE", + "municipality": "Munda", + "scheduled_service": "yes", + "gps_code": "AGGM", + "iata_code": "MUA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Munda_Airport" + }, + { + "id": "31563", + "ident": "AGGN", + "type": "small_airport", + "name": "Nusatupe Airport", + "latitude_deg": "-8.09778022766", + "longitude_deg": "156.863998413", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-WE", + "municipality": "Gizo", + "scheduled_service": "yes", + "gps_code": "AGGN", + "iata_code": "GZO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nusatupe_Airport" + }, + { + "id": "31932", + "ident": "AGGO", + "type": "small_airport", + "name": "Mono Airport", + "latitude_deg": "-7.416940212249756", + "longitude_deg": "155.56500244140625", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-WE", + "municipality": "Stirling Island", + "scheduled_service": "yes", + "gps_code": "AGGO", + "iata_code": "MNY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mono_Airport" + }, + { + "id": "32174", + "ident": "AGGP", + "type": "small_airport", + "name": "Parasi Airport", + "latitude_deg": "-9.641670227050781", + "longitude_deg": "161.4250030517578", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-ML", + "municipality": "Parasi", + "scheduled_service": "no", + "gps_code": "AGGP", + "iata_code": "PRS" + }, + { + "id": "299315", + "ident": "AGGQ", + "type": "closed", + "name": "Ontong Java Atoll Airstrip", + "latitude_deg": "-5.515", + "longitude_deg": "159.527778", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-ML", + "municipality": "Ontong Java Atoll", + "scheduled_service": "no", + "gps_code": "AGGQ", + "iata_code": "OTV", + "keywords": "Luangiua, Lord Howe Atoll" + }, + { + "id": "35171", + "ident": "AGGR", + "type": "small_airport", + "name": "Rennell/Tingoa Airport", + "latitude_deg": "-11.533900260925293", + "longitude_deg": "160.06300354003906", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-RB", + "municipality": "Rennell Island", + "scheduled_service": "yes", + "gps_code": "AGGR", + "iata_code": "RNL" + }, + { + "id": "30989", + "ident": "AGGS", + "type": "small_airport", + "name": "Sege Airport", + "latitude_deg": "-8.578889846801758", + "longitude_deg": "157.87600708007812", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-WE", + "municipality": "Sege", + "scheduled_service": "no", + "gps_code": "AGGS", + "iata_code": "EGM" + }, + { + "id": "308425", + "ident": "AGGT", + "type": "small_airport", + "name": "Santa Ana Airport", + "latitude_deg": "-10.847994", + "longitude_deg": "162.454108", + "elevation_ft": "3", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-MK", + "municipality": "Santa Ana Island", + "scheduled_service": "yes", + "gps_code": "AGGT", + "iata_code": "NNB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Ana_Airport_(Solomon_Islands)" + }, + { + "id": "32238", + "ident": "AGGU", + "type": "small_airport", + "name": "Marau Airport", + "latitude_deg": "-9.861669540409999", + "longitude_deg": "160.824996948", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-GU", + "municipality": "Marau", + "scheduled_service": "yes", + "gps_code": "AGGU", + "iata_code": "RUS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marau_Airport" + }, + { + "id": "32564", + "ident": "AGGV", + "type": "small_airport", + "name": "Suavanao Airport", + "latitude_deg": "-7.585559844970703", + "longitude_deg": "158.7310028076172", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-IS", + "municipality": "Suavanao", + "scheduled_service": "yes", + "gps_code": "AGGV", + "iata_code": "VAO" + }, + { + "id": "302292", + "ident": "AGGY", + "type": "small_airport", + "name": "Yandina Airport", + "latitude_deg": "-9.092816", + "longitude_deg": "159.21841", + "elevation_ft": "60", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-CE", + "municipality": "Yandina", + "scheduled_service": "yes", + "gps_code": "AGGY", + "iata_code": "XYA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yandina_Airport" + }, + { + "id": "40810", + "ident": "AGI", + "type": "small_airport", + "name": "El Paraíso Airport", + "latitude_deg": "8.128611", + "longitude_deg": "-73.584722", + "elevation_ft": "303", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Aguachica", + "scheduled_service": "no", + "local_code": "AGI" + }, + { + "id": "301651", + "ident": "AGK", + "type": "small_airport", + "name": "Kagua Airport", + "latitude_deg": "-6.396388888890001", + "longitude_deg": "143.853611111", + "elevation_ft": "5350", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Kagua", + "scheduled_service": "no", + "iata_code": "AGK" + }, + { + "id": "35169", + "ident": "AGKG", + "type": "small_airport", + "name": "Kaghau Airport", + "latitude_deg": "-7.3305", + "longitude_deg": "157.585", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-CH", + "municipality": "Kagau Island", + "scheduled_service": "yes", + "gps_code": "AGKG", + "iata_code": "KGE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kaghau_Airport", + "keywords": "Kagau Island" + }, + { + "id": "310179", + "ident": "AGKU", + "type": "small_airport", + "name": "Kukudu Airport", + "latitude_deg": "-8.0262", + "longitude_deg": "156.94783", + "elevation_ft": "32", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-WE", + "municipality": "Kolombangara Island", + "scheduled_service": "no", + "gps_code": "AGKU", + "iata_code": "KUE", + "keywords": "Kukundu" + }, + { + "id": "308424", + "ident": "AGKW", + "type": "small_airport", + "name": "Kwailabesi Airport", + "latitude_deg": "-8.360508", + "longitude_deg": "160.775127", + "elevation_ft": "52", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-ML", + "municipality": "Kwailabesi", + "scheduled_service": "no", + "gps_code": "AGKW", + "iata_code": "KWS" + }, + { + "id": "301652", + "ident": "AGL", + "type": "small_airport", + "name": "Wanigela Airport", + "latitude_deg": "-9.3375", + "longitude_deg": "149.155555556", + "elevation_ft": "53", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "scheduled_service": "no", + "gps_code": "AYWG", + "iata_code": "AGL", + "local_code": "WGL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wanigela_Airport" + }, + { + "id": "310002", + "ident": "AGNA", + "type": "small_airport", + "name": "Nana Airport", + "latitude_deg": "-10.6758", + "longitude_deg": "162.2049", + "elevation_ft": "60", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-MK", + "municipality": "Star Harbor", + "scheduled_service": "no", + "gps_code": "AGNA", + "iata_code": "NAZ" + }, + { + "id": "35168", + "ident": "AGOK", + "type": "small_airport", + "name": "Gatokae Aerodrome", + "latitude_deg": "-8.738358", + "longitude_deg": "158.202836", + "elevation_ft": "70", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-WE", + "municipality": "Gatokae", + "scheduled_service": "yes", + "gps_code": "AGOK", + "iata_code": "GTA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gatokae_Aerodrome" + }, + { + "id": "32211", + "ident": "AGRC", + "type": "small_airport", + "name": "Ringi Cove Airport", + "latitude_deg": "-8.12639045715332", + "longitude_deg": "157.14300537109375", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-WE", + "municipality": "Ringi Cove", + "scheduled_service": "no", + "gps_code": "AGRC", + "iata_code": "RIN" + }, + { + "id": "35170", + "ident": "AGRM", + "type": "small_airport", + "name": "Ramata Airport", + "latitude_deg": "-8.168060302734375", + "longitude_deg": "157.64300537109375", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-WE", + "municipality": "Ramata", + "scheduled_service": "yes", + "gps_code": "AGRM", + "iata_code": "RBV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ramata_Airport" + }, + { + "id": "306999", + "ident": "AGTI", + "type": "heliport", + "name": "Tulaghi Heliport", + "latitude_deg": "-9.108", + "longitude_deg": "160.149166667", + "elevation_ft": "3", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-CE", + "municipality": "Tulaghi Island", + "scheduled_service": "no", + "gps_code": "AGTI", + "iata_code": "TLG", + "keywords": "Tulagi" + }, + { + "id": "314491", + "ident": "AGY", + "type": "small_airport", + "name": "Argyle Downs Airport", + "latitude_deg": "-16.508604", + "longitude_deg": "128.922485", + "elevation_ft": "407", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Argyle Downs", + "scheduled_service": "no", + "iata_code": "AGY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Argyle_Downs_Airport", + "keywords": "AGY" + }, + { + "id": "312371", + "ident": "AHJ", + "type": "medium_airport", + "name": "Hongyuan Airport", + "latitude_deg": "32.53154", + "longitude_deg": "102.35224", + "elevation_ft": "11600", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Ngawa (Hongyuan)", + "scheduled_service": "no", + "gps_code": "ZUHY", + "iata_code": "AHJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hongyuan_Airport", + "keywords": "Aba" + }, + { + "id": "299321", + "ident": "AHT", + "type": "closed", + "name": "Amchitka Air Force Base", + "latitude_deg": "51.381504", + "longitude_deg": "179.275997", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Amchitka Island", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amchitka_Army_Airfield", + "keywords": "AHT, PAHT, Constantine Harbor, Amchitka Army Airfield" + }, + { + "id": "299324", + "ident": "AHY", + "type": "small_airport", + "name": "Ambatolhy Airport", + "latitude_deg": "-20.015833333299998", + "longitude_deg": "45.535", + "elevation_ft": "340", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Ambatolahy", + "scheduled_service": "no", + "iata_code": "AHY" + }, + { + "id": "335970", + "ident": "AI-0001", + "type": "closed", + "name": "Scrub Island Airfield", + "latitude_deg": "18.28812", + "longitude_deg": "-62.945352", + "continent": "NA", + "iso_country": "AI", + "iso_region": "AI-U-A", + "municipality": "Scrub Island", + "scheduled_service": "no" + }, + { + "id": "46170", + "ident": "AIE", + "type": "small_airport", + "name": "Aiome Airport", + "latitude_deg": "-5.145699978", + "longitude_deg": "144.7307003", + "elevation_ft": "350", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Aiome", + "scheduled_service": "no", + "gps_code": "AYAO", + "iata_code": "AIE", + "local_code": "AIO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aiome_Airport" + }, + { + "id": "301654", + "ident": "AIH", + "type": "small_airport", + "name": "Aiambak Airport", + "latitude_deg": "-7.342777777779999", + "longitude_deg": "141.2675", + "elevation_ft": "90", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Aiambak", + "scheduled_service": "no", + "gps_code": "AYAK", + "iata_code": "AIH", + "local_code": "AMB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aiambak_Airport" + }, + { + "id": "299328", + "ident": "AIP", + "type": "small_airport", + "name": "Ailinglaplap Airok Airport", + "latitude_deg": "7.279422", + "longitude_deg": "168.8257", + "elevation_ft": "16", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-ALL", + "municipality": "Bigatyelang Island", + "scheduled_service": "yes", + "iata_code": "AIC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ailinglaplap_Airok_Airport" + }, + { + "id": "16096", + "ident": "AK0", + "type": "small_airport", + "name": "Jakes Bar Airport", + "latitude_deg": "61.21870040893555", + "longitude_deg": "-142.88999938964844", + "elevation_ft": "1052", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Mccarthy", + "scheduled_service": "no", + "gps_code": "AK0", + "local_code": "AK0" + }, + { + "id": "16097", + "ident": "AK00", + "type": "small_airport", + "name": "Anchor River Airpark", + "latitude_deg": "59.783144", + "longitude_deg": "-151.853156", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchor Point", + "scheduled_service": "no", + "gps_code": "AK00", + "local_code": "AK00" + }, + { + "id": "45282", + "ident": "AK01", + "type": "small_airport", + "name": "Alaska Airpark", + "latitude_deg": "60.528983", + "longitude_deg": "-150.625133", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no", + "gps_code": "AK01", + "local_code": "AK01" + }, + { + "id": "16098", + "ident": "AK02", + "type": "small_airport", + "name": "Bear Creek 1 Airport", + "latitude_deg": "65.53990173339844", + "longitude_deg": "-161.06199645996094", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Bear Creek", + "scheduled_service": "no", + "gps_code": "AK02", + "local_code": "AK02" + }, + { + "id": "16100", + "ident": "AK04", + "type": "small_airport", + "name": "Skelton Airport", + "latitude_deg": "61.937", + "longitude_deg": "-147.169006", + "elevation_ft": "3289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Eureka", + "scheduled_service": "no", + "gps_code": "3AK1", + "local_code": "3AK1", + "keywords": "PAZK, AZK, AK04, Z37" + }, + { + "id": "45244", + "ident": "AK05", + "type": "small_airport", + "name": "Breeden Airport", + "latitude_deg": "60.54234", + "longitude_deg": "-150.598612", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no", + "gps_code": "AK05", + "local_code": "AK05" + }, + { + "id": "16101", + "ident": "AK06", + "type": "small_airport", + "name": "Denali Airport", + "latitude_deg": "63.640088", + "longitude_deg": "-148.791618", + "elevation_ft": "2050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Denali Park", + "scheduled_service": "no", + "gps_code": "AK06", + "local_code": "AK06" + }, + { + "id": "16102", + "ident": "AK07", + "type": "small_airport", + "name": "Dog Fish Bay Airport", + "latitude_deg": "59.246222", + "longitude_deg": "-151.875", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nanwalek", + "scheduled_service": "no", + "gps_code": "AK07", + "local_code": "AK07", + "keywords": "Koyuktolik Bay" + }, + { + "id": "16103", + "ident": "AK08", + "type": "small_airport", + "name": "Thomas Strip", + "latitude_deg": "61.78990173339844", + "longitude_deg": "-150.1060028076172", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Willow", + "scheduled_service": "no", + "gps_code": "AK08", + "local_code": "AK08" + }, + { + "id": "16104", + "ident": "AK09", + "type": "small_airport", + "name": "Wingsong Estates Airport", + "latitude_deg": "64.04959869384766", + "longitude_deg": "-145.5019989013672", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Delta Junction", + "scheduled_service": "no", + "gps_code": "AK09", + "local_code": "AK09" + }, + { + "id": "16105", + "ident": "AK1", + "type": "small_airport", + "name": "Butte Municipal Airport", + "latitude_deg": "61.53030014038086", + "longitude_deg": "-149.01800537109375", + "elevation_ft": "64", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "AK1", + "local_code": "AK1" + }, + { + "id": "16164", + "ident": "AK10", + "type": "small_airport", + "name": "AK-10 Airstrip", + "latitude_deg": "61.71721", + "longitude_deg": "-150.108992", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Willow", + "scheduled_service": "no", + "gps_code": "AK10", + "local_code": "AK10", + "keywords": "Ernies Airstrip" + }, + { + "id": "16106", + "ident": "AK11", + "type": "small_airport", + "name": "Point Mcintyre Airport", + "latitude_deg": "70.401389", + "longitude_deg": "-148.682562", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Point Mcintyre", + "scheduled_service": "no", + "keywords": "AK11" + }, + { + "id": "16107", + "ident": "AK12", + "type": "small_airport", + "name": "Flying Crown Airport", + "latitude_deg": "61.10660171508789", + "longitude_deg": "-149.86399841308594", + "elevation_ft": "47", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchorage", + "scheduled_service": "no", + "gps_code": "AK12", + "local_code": "AK12" + }, + { + "id": "16108", + "ident": "AK13", + "type": "small_airport", + "name": "Chena Hot Springs Airport", + "latitude_deg": "65.0518035889", + "longitude_deg": "-146.04699707", + "elevation_ft": "1195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chena Hot Springs", + "scheduled_service": "no", + "gps_code": "AK13", + "iata_code": "CEX", + "local_code": "AK13" + }, + { + "id": "16109", + "ident": "AK14", + "type": "small_airport", + "name": "Turinsky Airstrip", + "latitude_deg": "61.3512992859", + "longitude_deg": "-150.089004517", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Point Mackenzie", + "scheduled_service": "no", + "gps_code": "AK14", + "local_code": "AK14" + }, + { + "id": "16111", + "ident": "AK16", + "type": "small_airport", + "name": "Sunset Strip", + "latitude_deg": "61.52339935", + "longitude_deg": "-149.7149963", + "elevation_ft": "303", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "AK16", + "local_code": "AK16" + }, + { + "id": "16112", + "ident": "AK17", + "type": "small_airport", + "name": "Glacierview Strip", + "latitude_deg": "59.76359939575195", + "longitude_deg": "-151.22300720214844", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Homer", + "scheduled_service": "no", + "gps_code": "AK17", + "local_code": "AK17" + }, + { + "id": "16113", + "ident": "AK18", + "type": "small_airport", + "name": "Camp Point Airport", + "latitude_deg": "59.82849884033203", + "longitude_deg": "-153.08099365234375", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Homer", + "scheduled_service": "no", + "gps_code": "AK18", + "local_code": "AK18" + }, + { + "id": "16114", + "ident": "AK19", + "type": "small_airport", + "name": "Carl's Landing Airport", + "latitude_deg": "62.17390060424805", + "longitude_deg": "-150.06399536132812", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Talkeetna", + "scheduled_service": "no", + "gps_code": "AK19", + "local_code": "AK19" + }, + { + "id": "45283", + "ident": "AK20", + "type": "small_airport", + "name": "CD-3 Airstrip", + "latitude_deg": "70.420622", + "longitude_deg": "-150.886667", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nuiqsut", + "scheduled_service": "no", + "gps_code": "AK20", + "local_code": "AK20" + }, + { + "id": "16115", + "ident": "AK21", + "type": "small_airport", + "name": "Nushagak Airport", + "latitude_deg": "59.132598876953125", + "longitude_deg": "-157.77699279785156", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Dillingham", + "scheduled_service": "no", + "gps_code": "AK21", + "local_code": "AK21" + }, + { + "id": "16116", + "ident": "AK22", + "type": "small_airport", + "name": "Lakloey Air Park", + "latitude_deg": "64.821984", + "longitude_deg": "-147.522891", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fairbanks", + "scheduled_service": "no", + "gps_code": "AK22", + "local_code": "AK22" + }, + { + "id": "16118", + "ident": "AK24", + "type": "small_airport", + "name": "Hilltop Airport", + "latitude_deg": "61.41820145", + "longitude_deg": "-149.4389954", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chugiak", + "scheduled_service": "no", + "gps_code": "AK24", + "local_code": "AK24" + }, + { + "id": "16119", + "ident": "AK25", + "type": "small_airport", + "name": "Piper Landing Airport", + "latitude_deg": "61.61750030517578", + "longitude_deg": "-149.61500549316406", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "AK25", + "local_code": "AK25" + }, + { + "id": "16120", + "ident": "AK26", + "type": "small_airport", + "name": "Solomon State Field", + "latitude_deg": "64.5605", + "longitude_deg": "-164.4457", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Solomon", + "scheduled_service": "no", + "gps_code": "AK26", + "iata_code": "SOL", + "local_code": "AK26" + }, + { + "id": "16121", + "ident": "AK27", + "type": "small_airport", + "name": "Valley Flying Crown Airport", + "latitude_deg": "61.642601013183594", + "longitude_deg": "-149.62399291992188", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "AK27", + "local_code": "AK27" + }, + { + "id": "16122", + "ident": "AK28", + "type": "small_airport", + "name": "Chena Marina Airport", + "latitude_deg": "64.81400299072266", + "longitude_deg": "-147.91900634765625", + "elevation_ft": "427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fairbanks", + "scheduled_service": "no", + "gps_code": "AK28", + "local_code": "AK28" + }, + { + "id": "16123", + "ident": "AK29", + "type": "small_airport", + "name": "Reids Landing Airport", + "latitude_deg": "61.61259841918945", + "longitude_deg": "-149.8520050048828", + "elevation_ft": "246", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "AK29", + "local_code": "AK29" + }, + { + "id": "45265", + "ident": "AK30", + "type": "small_airport", + "name": "Strawberry Point Airport", + "latitude_deg": "60.391153", + "longitude_deg": "-146.097464", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cordova", + "scheduled_service": "no", + "gps_code": "AK30", + "local_code": "AK30" + }, + { + "id": "16124", + "ident": "AK31", + "type": "small_airport", + "name": "Swift Creek Airport", + "latitude_deg": "61.41120147705078", + "longitude_deg": "-143.00100708007812", + "elevation_ft": "1225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Mccarthy", + "scheduled_service": "no", + "gps_code": "AK31", + "local_code": "AK31" + }, + { + "id": "45258", + "ident": "AK32", + "type": "heliport", + "name": "Oooguruk Island Heliport", + "latitude_deg": "70.495422", + "longitude_deg": "-150.253467", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nuiqsut", + "scheduled_service": "no", + "gps_code": "PFNU", + "local_code": "AK32" + }, + { + "id": "16125", + "ident": "AK33", + "type": "small_airport", + "name": "Herendeen Bay Airport", + "latitude_deg": "55.801399231", + "longitude_deg": "-160.899002075", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Herendeen Bay", + "scheduled_service": "no", + "gps_code": "AK33", + "iata_code": "HED", + "local_code": "AK33" + }, + { + "id": "16126", + "ident": "AK34", + "type": "seaplane_base", + "name": "Kashwitna Lake Seaplane Base", + "latitude_deg": "61.8353004456", + "longitude_deg": "-150.080001831", + "elevation_ft": "186", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Willow", + "scheduled_service": "no", + "gps_code": "AK34", + "local_code": "AK34" + }, + { + "id": "16127", + "ident": "AK35", + "type": "heliport", + "name": "Buffalo Row Heliport", + "latitude_deg": "64.0389022827", + "longitude_deg": "-145.738998413", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Delta Junction", + "scheduled_service": "no", + "gps_code": "AK35", + "local_code": "AK35" + }, + { + "id": "16128", + "ident": "AK36", + "type": "small_airport", + "name": "Point Mac Airport", + "latitude_deg": "61.43600082397461", + "longitude_deg": "-150.1219940185547", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Point Mackenzie", + "scheduled_service": "no", + "gps_code": "AK36", + "local_code": "AK36" + }, + { + "id": "16129", + "ident": "AK37", + "type": "heliport", + "name": "Point Mackenzie Heliport", + "latitude_deg": "61.247469", + "longitude_deg": "-150.032178", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Point Mackenzie", + "scheduled_service": "no", + "gps_code": "AK37", + "local_code": "AK37" + }, + { + "id": "16130", + "ident": "AK38", + "type": "heliport", + "name": "Providence Hospital Heliport", + "latitude_deg": "61.189125", + "longitude_deg": "-149.821855", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchorage", + "scheduled_service": "no", + "gps_code": "AK38", + "local_code": "AK38", + "keywords": "4K9" + }, + { + "id": "16131", + "ident": "AK39", + "type": "small_airport", + "name": "South Gasline Airport", + "latitude_deg": "60.699567", + "longitude_deg": "-150.176239", + "elevation_ft": "381", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no", + "gps_code": "AK39", + "local_code": "AK39" + }, + { + "id": "16132", + "ident": "AK40", + "type": "small_airport", + "name": "Nixon Fork Mine Airport", + "latitude_deg": "63.229198455799995", + "longitude_deg": "-154.759994507", + "elevation_ft": "1510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "McGrath", + "scheduled_service": "no", + "gps_code": "AK40", + "local_code": "AK40" + }, + { + "id": "16133", + "ident": "AK41", + "type": "small_airport", + "name": "Greg'n Sage Airport", + "latitude_deg": "64.544038", + "longitude_deg": "-146.845551", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "North Pole", + "scheduled_service": "no", + "gps_code": "AK41", + "local_code": "AK41" + }, + { + "id": "16134", + "ident": "AK42", + "type": "closed", + "name": "Valley Hospital - Palmer Heliport", + "latitude_deg": "61.600899", + "longitude_deg": "-149.106009", + "elevation_ft": "248", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "keywords": "AK42" + }, + { + "id": "16135", + "ident": "AK43", + "type": "seaplane_base", + "name": "Jacobsen Lake Seaplane Base", + "latitude_deg": "61.5791015625", + "longitude_deg": "-149.539001465", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "AK43", + "local_code": "AK43" + }, + { + "id": "16136", + "ident": "AK44", + "type": "small_airport", + "name": "Talkeetna Village Strip", + "latitude_deg": "62.319441", + "longitude_deg": "-150.113475", + "elevation_ft": "346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Talkeetna", + "scheduled_service": "no", + "gps_code": "AK44", + "local_code": "AK44" + }, + { + "id": "16137", + "ident": "AK45", + "type": "closed", + "name": "Lost River 2 Airport", + "latitude_deg": "65.4562", + "longitude_deg": "-167.1755", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Lost River", + "scheduled_service": "no", + "keywords": "AK45" + }, + { + "id": "16138", + "ident": "AK46", + "type": "small_airport", + "name": "Abi Airport", + "latitude_deg": "61.62879943847656", + "longitude_deg": "-149.04299926757812", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "AK46", + "local_code": "AK46" + }, + { + "id": "16139", + "ident": "AK47", + "type": "small_airport", + "name": "Shawn Field", + "latitude_deg": "61.58570098876953", + "longitude_deg": "-149.56300354003906", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "AK47", + "local_code": "AK47" + }, + { + "id": "16140", + "ident": "AK48", + "type": "closed", + "name": "Valley Hospital, Wasilla Heliport", + "latitude_deg": "61.585202", + "longitude_deg": "-149.425004", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "keywords": "AK48" + }, + { + "id": "16141", + "ident": "AK49", + "type": "small_airport", + "name": "Taylor Airport", + "latitude_deg": "65.6792984009", + "longitude_deg": "-164.798995972", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Taylor", + "scheduled_service": "no", + "gps_code": "AK49", + "iata_code": "TWE", + "local_code": "AK49" + }, + { + "id": "16142", + "ident": "AK5", + "type": "seaplane_base", + "name": "Encelewski Lake Seaplane Base", + "latitude_deg": "60.25559997558594", + "longitude_deg": "-151.30299377441406", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kasilof", + "scheduled_service": "no", + "gps_code": "AK5", + "local_code": "AK5" + }, + { + "id": "16143", + "ident": "AK50", + "type": "small_airport", + "name": "Sky Ranch At Pioneer Peak Airport", + "latitude_deg": "61.55459976196289", + "longitude_deg": "-149.1439971923828", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "AK50", + "local_code": "AK50" + }, + { + "id": "16144", + "ident": "AK51", + "type": "small_airport", + "name": "Wilder/Natwick LLC Airport", + "latitude_deg": "60.198567", + "longitude_deg": "-154.322789", + "elevation_ft": "288", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Port Alsworth", + "scheduled_service": "no", + "gps_code": "PAKX", + "local_code": "05K", + "keywords": "AK51" + }, + { + "id": "16145", + "ident": "AK52", + "type": "small_airport", + "name": "Moen's Ranch Airport", + "latitude_deg": "64.88890075683594", + "longitude_deg": "-147.53599548339844", + "elevation_ft": "582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fairbanks", + "scheduled_service": "no", + "gps_code": "AK52", + "local_code": "AK52" + }, + { + "id": "16146", + "ident": "AK53", + "type": "small_airport", + "name": "Maud Road Strip Airport", + "latitude_deg": "61.582298", + "longitude_deg": "-148.996994", + "elevation_ft": "222", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "74AK", + "local_code": "74AK", + "keywords": "AK53, Downwind Landing" + }, + { + "id": "16147", + "ident": "AK54", + "type": "small_airport", + "name": "Stro's Airport", + "latitude_deg": "61.657100677490234", + "longitude_deg": "-149.3260040283203", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "AK54", + "local_code": "AK54" + }, + { + "id": "16148", + "ident": "AK55", + "type": "small_airport", + "name": "Moose Run Airstrip", + "latitude_deg": "60.489429", + "longitude_deg": "-150.801473", + "elevation_ft": "290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Soldotna", + "scheduled_service": "no", + "gps_code": "AK55", + "local_code": "AK55" + }, + { + "id": "16149", + "ident": "AK56", + "type": "seaplane_base", + "name": "Tikchik Lodge Seaplane Base", + "latitude_deg": "59.9631996155", + "longitude_deg": "-158.477005005", + "elevation_ft": "304", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tikchik", + "scheduled_service": "no", + "gps_code": "AK56", + "iata_code": "KTH", + "local_code": "AK56" + }, + { + "id": "16150", + "ident": "AK57", + "type": "seaplane_base", + "name": "Long Lake Seaplane Base", + "latitude_deg": "61.7257003784", + "longitude_deg": "-150.091003418", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Willow", + "scheduled_service": "no", + "gps_code": "AK57", + "local_code": "AK57" + }, + { + "id": "16151", + "ident": "AK58", + "type": "small_airport", + "name": "Fairview West Airport", + "latitude_deg": "61.540000915527344", + "longitude_deg": "-149.5489959716797", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "AK58", + "local_code": "AK58" + }, + { + "id": "16152", + "ident": "AK59", + "type": "small_airport", + "name": "King Ranch Airport", + "latitude_deg": "61.790695", + "longitude_deg": "-148.352981", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sutton", + "scheduled_service": "no", + "gps_code": "AK59", + "local_code": "AK59", + "home_link": "https://www.kingdomaircorps.org/" + }, + { + "id": "16153", + "ident": "AK60", + "type": "small_airport", + "name": "Fort Jensen Airport", + "latitude_deg": "57.884684", + "longitude_deg": "-157.095036", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Jensens", + "scheduled_service": "no", + "gps_code": "AK60", + "local_code": "AK60" + }, + { + "id": "16154", + "ident": "AK61", + "type": "small_airport", + "name": "Stephan Lake Lodge Airport", + "latitude_deg": "62.69960021972656", + "longitude_deg": "-148.90699768066406", + "elevation_ft": "1900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Talkeetna", + "scheduled_service": "no", + "gps_code": "AK61", + "local_code": "AK61" + }, + { + "id": "16155", + "ident": "AK62", + "type": "seaplane_base", + "name": "Naukati Bay Seaplane Base", + "latitude_deg": "55.849602", + "longitude_deg": "-133.227994", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tuxekan Island", + "scheduled_service": "no", + "gps_code": "AK62", + "iata_code": "NKI", + "local_code": "AK62", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naukati_Bay_Seaplane_Base", + "keywords": "62A, Nichin Cove Seaplane Base, WNC" + }, + { + "id": "16156", + "ident": "AK63", + "type": "small_airport", + "name": "Pat-Mar Strip", + "latitude_deg": "61.588600158691406", + "longitude_deg": "-149.14300537109375", + "elevation_ft": "246", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "AK63", + "local_code": "AK63" + }, + { + "id": "16157", + "ident": "AK64", + "type": "small_airport", + "name": "Taylor Mountain Airport", + "latitude_deg": "60.867802", + "longitude_deg": "-157.391998", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Taylor Mountain Mine", + "scheduled_service": "no", + "gps_code": "PATM", + "local_code": "ATM", + "keywords": "AK64" + }, + { + "id": "16158", + "ident": "AK65", + "type": "small_airport", + "name": "Green's Strip", + "latitude_deg": "61.597900390625", + "longitude_deg": "-149.3509979248047", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "AK65", + "local_code": "AK65" + }, + { + "id": "16159", + "ident": "AK66", + "type": "small_airport", + "name": "Hunter Creek Airport", + "latitude_deg": "61.458296", + "longitude_deg": "-148.798227", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "AK66", + "local_code": "AK66" + }, + { + "id": "16160", + "ident": "AK67", + "type": "small_airport", + "name": "Skid Marks Airport", + "latitude_deg": "61.73860168457031", + "longitude_deg": "-150.072998046875", + "elevation_ft": "64", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Willow", + "scheduled_service": "no", + "gps_code": "AK67", + "local_code": "AK67" + }, + { + "id": "16161", + "ident": "AK68", + "type": "small_airport", + "name": "Minuteman Strip", + "latitude_deg": "61.720298767089844", + "longitude_deg": "-150.0540008544922", + "elevation_ft": "290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Willow", + "scheduled_service": "no", + "gps_code": "AK68", + "local_code": "AK68" + }, + { + "id": "16162", + "ident": "AK69", + "type": "small_airport", + "name": "Long Lake Airport", + "latitude_deg": "61.72930145263672", + "longitude_deg": "-150.09800720214844", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Willow", + "scheduled_service": "no", + "gps_code": "AK69", + "local_code": "AK69" + }, + { + "id": "16165", + "ident": "AK71", + "type": "small_airport", + "name": "Point Lonely Short Range Radar Site Airfield", + "latitude_deg": "70.911118", + "longitude_deg": "-153.237766", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Point Lonely", + "scheduled_service": "no", + "gps_code": "PALN", + "iata_code": "LNI", + "local_code": "AK71", + "wikipedia_link": "https://en.wikipedia.org/wiki/Point_Lonely_Short_Range_Radar_Site", + "keywords": "Lonely Air Station" + }, + { + "id": "16166", + "ident": "AK72", + "type": "small_airport", + "name": "Jewell Airport", + "latitude_deg": "61.7047004699707", + "longitude_deg": "-150.6009979248047", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Willow", + "scheduled_service": "no", + "gps_code": "AK72", + "local_code": "AK72" + }, + { + "id": "16167", + "ident": "AK73", + "type": "small_airport", + "name": "McGahan Industrial Airpark", + "latitude_deg": "60.723125", + "longitude_deg": "-151.306458", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nikiski", + "scheduled_service": "no", + "gps_code": "AK73", + "local_code": "AK73" + }, + { + "id": "16168", + "ident": "AK74", + "type": "heliport", + "name": "Kodiak Emergency/Spruce Cape Heliport", + "latitude_deg": "57.807899475097656", + "longitude_deg": "-152.35400390625", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kodiak", + "scheduled_service": "no", + "gps_code": "AK74", + "local_code": "AK74" + }, + { + "id": "16169", + "ident": "AK75", + "type": "small_airport", + "name": "Candle 2 Airport", + "latitude_deg": "65.907699585", + "longitude_deg": "-161.925994873", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Candle", + "scheduled_service": "no", + "gps_code": "AK75", + "iata_code": "CDL", + "local_code": "AK75" + }, + { + "id": "16170", + "ident": "AK76", + "type": "small_airport", + "name": "East Alsek River Airport", + "latitude_deg": "59.126338", + "longitude_deg": "-138.409216", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Yakutat", + "scheduled_service": "no", + "gps_code": "AK76", + "local_code": "AK76" + }, + { + "id": "16171", + "ident": "AK77", + "type": "small_airport", + "name": "All West Airport", + "latitude_deg": "63.946809", + "longitude_deg": "-145.424109", + "elevation_ft": "1275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Delta Junction", + "scheduled_service": "no", + "gps_code": "AK77", + "local_code": "AK77" + }, + { + "id": "45284", + "ident": "AK79", + "type": "closed", + "name": "Jolly Field", + "latitude_deg": "61.593688", + "longitude_deg": "-149.566519", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "AK79", + "local_code": "AK79" + }, + { + "id": "45246", + "ident": "AK8", + "type": "seaplane_base", + "name": "Christiansen Lake Seaplane Base", + "latitude_deg": "62.313414", + "longitude_deg": "-150.06935", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Talkeetna", + "scheduled_service": "no", + "gps_code": "AK8", + "local_code": "AK8" + }, + { + "id": "16173", + "ident": "AK80", + "type": "small_airport", + "name": "American Creek Airport", + "latitude_deg": "65.1046", + "longitude_deg": "-151.176", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "American Creek", + "scheduled_service": "no", + "local_code": "80A", + "keywords": "AK80" + }, + { + "id": "16174", + "ident": "AK81", + "type": "seaplane_base", + "name": "Amook Bay Seaplane Base", + "latitude_deg": "57.4715003967", + "longitude_deg": "-153.815002441", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Amook Bay", + "scheduled_service": "yes", + "gps_code": "AK81", + "iata_code": "AOS", + "local_code": "AK81", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amook_Bay_Seaplane_Base" + }, + { + "id": "16175", + "ident": "AK82", + "type": "heliport", + "name": "Campbell BLM Heliport", + "latitude_deg": "61.1561012268", + "longitude_deg": "-149.792007446", + "elevation_ft": "235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchorage", + "scheduled_service": "no", + "gps_code": "AK82", + "local_code": "AK82" + }, + { + "id": "16176", + "ident": "AK83", + "type": "small_airport", + "name": "Gannon's Landing Airport", + "latitude_deg": "61.62730026245117", + "longitude_deg": "-149.60899353027344", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "AK83", + "local_code": "AK83" + }, + { + "id": "16177", + "ident": "AK84", + "type": "small_airport", + "name": "Scooter's Landing Strip", + "latitude_deg": "60.52939987182617", + "longitude_deg": "-150.83099365234375", + "elevation_ft": "259", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no", + "gps_code": "AK84", + "local_code": "AK84" + }, + { + "id": "45243", + "ident": "AK85", + "type": "small_airport", + "name": "Birchwater Airport", + "latitude_deg": "61.482333", + "longitude_deg": "-149.763986", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "AK85", + "local_code": "AK85" + }, + { + "id": "45254", + "ident": "AK86", + "type": "small_airport", + "name": "Kramer Airport", + "latitude_deg": "61.573539", + "longitude_deg": "-149.91135", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "AK86", + "local_code": "AK86" + }, + { + "id": "16178", + "ident": "AK87", + "type": "heliport", + "name": "Team Levine Heliport", + "latitude_deg": "61.5149002075", + "longitude_deg": "-149.929000854", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "AK87", + "local_code": "AK87" + }, + { + "id": "16179", + "ident": "AK88", + "type": "small_airport", + "name": "Eagle Nest Airport", + "latitude_deg": "61.604698181152344", + "longitude_deg": "-149.0399932861328", + "elevation_ft": "416", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "AK88", + "local_code": "AK88" + }, + { + "id": "16180", + "ident": "AK89", + "type": "small_airport", + "name": "Black Spruce Airport", + "latitude_deg": "61.652322", + "longitude_deg": "-149.875059", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "AK89", + "local_code": "AK89" + }, + { + "id": "16181", + "ident": "AK90", + "type": "small_airport", + "name": "Shirley Lake Airport", + "latitude_deg": "61.74470138549805", + "longitude_deg": "-150.11500549316406", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Willow", + "scheduled_service": "no", + "gps_code": "AK90", + "local_code": "AK90" + }, + { + "id": "16182", + "ident": "AK91", + "type": "heliport", + "name": "Elmendorf Hospital Heliport", + "latitude_deg": "61.235372", + "longitude_deg": "-149.749282", + "elevation_ft": "228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchorage", + "scheduled_service": "no", + "gps_code": "AK91", + "local_code": "AK91" + }, + { + "id": "16183", + "ident": "AK92", + "type": "small_airport", + "name": "Martin Airport", + "latitude_deg": "61.63800049", + "longitude_deg": "-149.029007", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "AK92", + "local_code": "AK92" + }, + { + "id": "16184", + "ident": "AK93", + "type": "small_airport", + "name": "Grouse Ridge Airport", + "latitude_deg": "61.65520095825195", + "longitude_deg": "-149.2729949951172", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "AK93", + "local_code": "AK93" + }, + { + "id": "16185", + "ident": "AK94", + "type": "heliport", + "name": "Alascom/Coastal Lena Point Heliport", + "latitude_deg": "58.390800476100004", + "longitude_deg": "-134.776992798", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Juneau", + "scheduled_service": "no", + "gps_code": "AK94", + "local_code": "AK94" + }, + { + "id": "16186", + "ident": "AK95", + "type": "small_airport", + "name": "Twin Lake Airport", + "latitude_deg": "61.569968", + "longitude_deg": "-149.778671", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "AK95", + "local_code": "AK95" + }, + { + "id": "16187", + "ident": "AK96", + "type": "small_airport", + "name": "Bartletts Airport", + "latitude_deg": "58.235664", + "longitude_deg": "-157.366397", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Egegik", + "scheduled_service": "no", + "local_code": "BSZ" + }, + { + "id": "16188", + "ident": "AK97", + "type": "small_airport", + "name": "Boswell Bay Airport", + "latitude_deg": "60.4230995178", + "longitude_deg": "-146.145996094", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Boswell Bay", + "scheduled_service": "no", + "gps_code": "AK97", + "iata_code": "BSW", + "local_code": "AK97", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boswell_Bay_Airport" + }, + { + "id": "16189", + "ident": "AK98", + "type": "small_airport", + "name": "Buck Creek Airport", + "latitude_deg": "65.63870239257812", + "longitude_deg": "-167.48599243164062", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Buck Creek", + "scheduled_service": "no", + "gps_code": "AK98", + "local_code": "AK98" + }, + { + "id": "45249", + "ident": "AK99", + "type": "small_airport", + "name": "Grand Home Airport", + "latitude_deg": "61.446667", + "longitude_deg": "-149.761111", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "AK99", + "local_code": "AK99" + }, + { + "id": "301754", + "ident": "AKM", + "type": "small_airport", + "name": "Zakuoma Airport", + "latitude_deg": "10.8902777778", + "longitude_deg": "19.8172222222", + "elevation_ft": "1370", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-SA", + "municipality": "ZaKouma", + "scheduled_service": "no", + "iata_code": "AKM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zakouma_Airport" + }, + { + "id": "35356", + "ident": "AL-0001", + "type": "heliport", + "name": "Lapraka Heliport", + "latitude_deg": "41.330782", + "longitude_deg": "19.795152", + "elevation_ft": "297", + "continent": "EU", + "iso_country": "AL", + "iso_region": "AL-11", + "municipality": "Tirana", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lapraka_Airfield", + "keywords": "Lapraka Airfield, Tirana Aerodrome, OOH, ZOOH" + }, + { + "id": "325353", + "ident": "AL-0002", + "type": "closed", + "name": "Lower Koretica Airport", + "latitude_deg": "42.605192", + "longitude_deg": "20.909699", + "continent": "EU", + "iso_country": "XK", + "iso_region": "XK-01", + "municipality": "Lower Koretica", + "scheduled_service": "no", + "keywords": "Korroticës së Ulët" + }, + { + "id": "325354", + "ident": "AL-0003", + "type": "closed", + "name": "Mifoit Airport", + "latitude_deg": "40.601737", + "longitude_deg": "19.432712", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "AL", + "iso_region": "AL-12", + "municipality": "Akerni", + "scheduled_service": "no" + }, + { + "id": "340588", + "ident": "AL-0004", + "type": "heliport", + "name": "Mother Teresa Hospital Heliport", + "latitude_deg": "41.339303", + "longitude_deg": "19.830489", + "elevation_ft": "420", + "continent": "EU", + "iso_country": "AL", + "iso_region": "AL-11", + "municipality": "Tirana", + "scheduled_service": "no" + }, + { + "id": "340589", + "ident": "AL-0005", + "type": "heliport", + "name": "University Trauma Hospital Heliport", + "latitude_deg": "41.342857", + "longitude_deg": "19.793764", + "elevation_ft": "295", + "continent": "EU", + "iso_country": "AL", + "iso_region": "AL-11", + "municipality": "Tirana", + "scheduled_service": "no" + }, + { + "id": "349286", + "ident": "AL-0006", + "type": "heliport", + "name": "Pogradec Heliport", + "latitude_deg": "40.90539", + "longitude_deg": "20.65453", + "elevation_ft": "2277", + "continent": "EU", + "iso_country": "AL", + "iso_region": "AL-06", + "municipality": "Pogradec", + "scheduled_service": "no" + }, + { + "id": "349287", + "ident": "AL-0007", + "type": "heliport", + "name": "Viva Air Heliport", + "latitude_deg": "41.23048", + "longitude_deg": "19.80107", + "elevation_ft": "436", + "continent": "EU", + "iso_country": "AL", + "iso_region": "AL-11", + "municipality": "Tirana", + "scheduled_service": "no" + }, + { + "id": "349288", + "ident": "AL-0008", + "type": "heliport", + "name": "Farkë Helicopter Base", + "latitude_deg": "41.31554", + "longitude_deg": "19.88554", + "elevation_ft": "801", + "continent": "EU", + "iso_country": "AL", + "iso_region": "AL-11", + "municipality": "Farkë", + "scheduled_service": "no" + }, + { + "id": "349289", + "ident": "AL-0009", + "type": "heliport", + "name": "Puka Heliport", + "latitude_deg": "42.0417", + "longitude_deg": "19.86158", + "elevation_ft": "2484", + "continent": "EU", + "iso_country": "AL", + "iso_region": "AL-10", + "municipality": "Puka", + "scheduled_service": "no" + }, + { + "id": "5", + "ident": "AL-LA10", + "type": "small_airport", + "name": "Gjirokastër Airfield", + "latitude_deg": "40.085383", + "longitude_deg": "20.15389", + "elevation_ft": "666", + "continent": "EU", + "iso_country": "AL", + "iso_region": "AL-05", + "municipality": "Gjirokastër", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gjirokastër_Airfield" + }, + { + "id": "16193", + "ident": "AL00", + "type": "closed", + "name": "Charlie Wilkes Airport", + "latitude_deg": "33.7444", + "longitude_deg": "-87.7864", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fayette", + "scheduled_service": "no", + "keywords": "AL00" + }, + { + "id": "16194", + "ident": "AL01", + "type": "closed", + "name": "Bedsole Farm Airport", + "latitude_deg": "31.569466", + "longitude_deg": "-87.562588", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Claiborne", + "scheduled_service": "no", + "keywords": "AL01" + }, + { + "id": "16195", + "ident": "AL02", + "type": "closed", + "name": "Rainey Field", + "latitude_deg": "33.150101", + "longitude_deg": "-87.441704", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Cottondale", + "scheduled_service": "no", + "keywords": "AL02" + }, + { + "id": "45241", + "ident": "AL03", + "type": "small_airport", + "name": "Strickland/Smalley Field", + "latitude_deg": "35.853889", + "longitude_deg": "-87.723889", + "elevation_ft": "369", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Akron", + "scheduled_service": "no", + "gps_code": "AL03", + "local_code": "AL03" + }, + { + "id": "16196", + "ident": "AL04", + "type": "closed", + "name": "Pleasant View Farm Airport", + "latitude_deg": "30.4627", + "longitude_deg": "-87.525002", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Elberta", + "scheduled_service": "no", + "keywords": "AL04" + }, + { + "id": "16197", + "ident": "AL05", + "type": "small_airport", + "name": "Sehoy Airport", + "latitude_deg": "32.22010040283203", + "longitude_deg": "-85.46800231933594", + "elevation_ft": "331", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Hurtsboro", + "scheduled_service": "no", + "gps_code": "AL05", + "local_code": "AL05" + }, + { + "id": "16198", + "ident": "AL06", + "type": "closed", + "name": "Drummond Heliport", + "latitude_deg": "33.5159", + "longitude_deg": "-87.256699", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Jasper", + "scheduled_service": "no", + "keywords": "AL06" + }, + { + "id": "16199", + "ident": "AL07", + "type": "heliport", + "name": "EAMC-Lanier Heliport", + "latitude_deg": "32.829531", + "longitude_deg": "-85.168711", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Valley", + "scheduled_service": "no", + "gps_code": "AL07", + "local_code": "AL07", + "keywords": "Geo H Lanier Memorial Hosp" + }, + { + "id": "16200", + "ident": "AL08", + "type": "small_airport", + "name": "Perdido Winds Airpark", + "latitude_deg": "30.424400329589844", + "longitude_deg": "-87.5353012084961", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Elberta", + "scheduled_service": "no", + "gps_code": "AL08", + "local_code": "AL08" + }, + { + "id": "16201", + "ident": "AL09", + "type": "small_airport", + "name": "Cloudmont Airpark", + "latitude_deg": "34.53340148925781", + "longitude_deg": "-85.59020233154297", + "elevation_ft": "1692", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Mentone", + "scheduled_service": "no", + "gps_code": "AL09", + "local_code": "AL09" + }, + { + "id": "16202", + "ident": "AL10", + "type": "small_airport", + "name": "Frerichs Airport", + "latitude_deg": "34.65119934082031", + "longitude_deg": "-86.41690063476562", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Gurley", + "scheduled_service": "no", + "gps_code": "AL10", + "local_code": "AL10" + }, + { + "id": "16203", + "ident": "AL11", + "type": "heliport", + "name": "Baptist Medical Center Heliport", + "latitude_deg": "32.32749938964844", + "longitude_deg": "-86.27660369873047", + "elevation_ft": "252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Montgomery", + "scheduled_service": "no", + "gps_code": "AL11", + "local_code": "AL11" + }, + { + "id": "16204", + "ident": "AL12", + "type": "small_airport", + "name": "Kershaw Airport", + "latitude_deg": "32.35850143432617", + "longitude_deg": "-86.125", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Montgomery", + "scheduled_service": "no", + "gps_code": "AL12", + "local_code": "AL12" + }, + { + "id": "16205", + "ident": "AL13", + "type": "heliport", + "name": "Westrock - Mahrt Mill Heliport", + "latitude_deg": "32.172375", + "longitude_deg": "-85.028819", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Cottonton", + "scheduled_service": "no", + "gps_code": "AL13", + "local_code": "AL13", + "keywords": "MeadWestvaco" + }, + { + "id": "16206", + "ident": "AL14", + "type": "heliport", + "name": "Whitfield Regional Hospital Heliport", + "latitude_deg": "32.505696", + "longitude_deg": "-87.83635", + "elevation_ft": "156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Demopolis", + "scheduled_service": "no", + "gps_code": "AL14", + "local_code": "AL14", + "keywords": "Bryan W Whitfield Memorial Hospital, Air Evac 106" + }, + { + "id": "16207", + "ident": "AL15", + "type": "closed", + "name": "Styron Airport", + "latitude_deg": "30.403", + "longitude_deg": "-87.724197", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Foley", + "scheduled_service": "no", + "gps_code": "AL15", + "local_code": "AL15" + }, + { + "id": "16208", + "ident": "AL16", + "type": "small_airport", + "name": "Turkey Creek Airport", + "latitude_deg": "33.72679901123047", + "longitude_deg": "-86.72360229492188", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Pinson", + "scheduled_service": "no", + "gps_code": "AL16", + "local_code": "AL16" + }, + { + "id": "16209", + "ident": "AL17", + "type": "small_airport", + "name": "Lazy Eight Airpark Llc Airport", + "latitude_deg": "33.2340011597", + "longitude_deg": "-86.51300048830001", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Wilsonville", + "scheduled_service": "no", + "gps_code": "AL17", + "local_code": "AL17" + }, + { + "id": "16210", + "ident": "AL18", + "type": "small_airport", + "name": "Parker Field", + "latitude_deg": "33.67620086669922", + "longitude_deg": "-86.86750030517578", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Gardendale", + "scheduled_service": "no", + "gps_code": "AL18", + "local_code": "AL18" + }, + { + "id": "16211", + "ident": "AL19", + "type": "heliport", + "name": "Medical West Heliport", + "latitude_deg": "33.37155", + "longitude_deg": "-86.991", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Bessemer", + "scheduled_service": "no", + "gps_code": "AL19", + "local_code": "AL19", + "keywords": "Bessemer Carraway Heliport" + }, + { + "id": "16212", + "ident": "AL20", + "type": "heliport", + "name": "Southeast Alabama Medical Center Heliport", + "latitude_deg": "31.21809959411621", + "longitude_deg": "-85.36720275878906", + "elevation_ft": "314", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Dothan", + "scheduled_service": "no", + "gps_code": "AL20", + "local_code": "AL20" + }, + { + "id": "16213", + "ident": "AL21", + "type": "heliport", + "name": "Lakeside Heliport", + "latitude_deg": "33.51210021972656", + "longitude_deg": "-86.67749786376953", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Birmingham", + "scheduled_service": "no", + "gps_code": "AL21", + "local_code": "AL21" + }, + { + "id": "16214", + "ident": "AL22", + "type": "closed", + "name": "Eliza Coffee Memorial Hospital Heliport", + "latitude_deg": "34.793783", + "longitude_deg": "-87.683199", + "elevation_ft": "581", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Florence", + "scheduled_service": "no", + "keywords": "AL22" + }, + { + "id": "16215", + "ident": "AL23", + "type": "heliport", + "name": "Drummond Coal Company Heliport", + "latitude_deg": "33.55229949951172", + "longitude_deg": "-86.75080108642578", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Birmingham", + "scheduled_service": "no", + "gps_code": "AL23", + "local_code": "AL23" + }, + { + "id": "16216", + "ident": "AL24", + "type": "heliport", + "name": "Rotor Wing Inc Heliport", + "latitude_deg": "33.6776", + "longitude_deg": "-86.8703", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Mount Olive", + "scheduled_service": "no", + "gps_code": "AL24", + "local_code": "AL24" + }, + { + "id": "16217", + "ident": "AL25", + "type": "small_airport", + "name": "Spratling Field", + "latitude_deg": "32.242401123046875", + "longitude_deg": "-85.6010971069336", + "elevation_ft": "368", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Roba", + "scheduled_service": "no", + "gps_code": "AL25", + "local_code": "AL25" + }, + { + "id": "16218", + "ident": "AL26", + "type": "heliport", + "name": "Bryant Culberson Heliport", + "latitude_deg": "33.20600128173828", + "longitude_deg": "-87.52780151367188", + "elevation_ft": "283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Tuscaloosa", + "scheduled_service": "no", + "gps_code": "AL26", + "local_code": "AL26" + }, + { + "id": "16219", + "ident": "AL27", + "type": "small_airport", + "name": "Headquarters Airport", + "latitude_deg": "34.1057014465332", + "longitude_deg": "-85.56580352783203", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Centre", + "scheduled_service": "no", + "gps_code": "AL27", + "local_code": "AL27" + }, + { + "id": "16220", + "ident": "AL28", + "type": "closed", + "name": "Huntsville Hospital Heliport", + "latitude_deg": "34.737301", + "longitude_deg": "-86.574203", + "elevation_ft": "644", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Huntsville", + "scheduled_service": "no", + "keywords": "AL28" + }, + { + "id": "16221", + "ident": "AL29", + "type": "small_airport", + "name": "New Horizon Airport", + "latitude_deg": "34.12929916381836", + "longitude_deg": "-86.63330078125", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Blountsville", + "scheduled_service": "no", + "gps_code": "AL29", + "local_code": "AL29" + }, + { + "id": "16222", + "ident": "AL30", + "type": "closed", + "name": "Mizell Memorial Hospital Heliport", + "latitude_deg": "31.2932", + "longitude_deg": "-86.254097", + "elevation_ft": "298", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Opp", + "scheduled_service": "no", + "keywords": "AL30" + }, + { + "id": "16223", + "ident": "AL31", + "type": "closed", + "name": "Vaughan Hospital Heliport", + "latitude_deg": "32.406799", + "longitude_deg": "-87.054199", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Selma", + "scheduled_service": "no", + "keywords": "AL31" + }, + { + "id": "16224", + "ident": "AL32", + "type": "small_airport", + "name": "Flying BK Ranch Airport", + "latitude_deg": "34.322601", + "longitude_deg": "-85.6437", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Cedar Bluff", + "scheduled_service": "no", + "gps_code": "AL32", + "local_code": "AL32", + "keywords": "Flying M Ranch" + }, + { + "id": "16225", + "ident": "AL33", + "type": "small_airport", + "name": "Sturdy Oak Farm Airport", + "latitude_deg": "31.02519989013672", + "longitude_deg": "-87.58580017089844", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Perdido", + "scheduled_service": "no", + "gps_code": "AL33", + "local_code": "AL33" + }, + { + "id": "16226", + "ident": "AL34", + "type": "small_airport", + "name": "Elam's Landing Airport", + "latitude_deg": "34.446999", + "longitude_deg": "-87.386101", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Moulton", + "scheduled_service": "no", + "gps_code": "AL34", + "local_code": "AL34", + "keywords": "Henson Field" + }, + { + "id": "16227", + "ident": "AL35", + "type": "small_airport", + "name": "Mc Ginnis Airport", + "latitude_deg": "30.619600296", + "longitude_deg": "-87.7043991089", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Loxley", + "scheduled_service": "no", + "gps_code": "AL35", + "local_code": "AL35" + }, + { + "id": "16228", + "ident": "AL36", + "type": "heliport", + "name": "The Huntsville Hospital Heliport", + "latitude_deg": "34.72090148925781", + "longitude_deg": "-86.58059692382812", + "elevation_ft": "728", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Huntsville", + "scheduled_service": "no", + "gps_code": "AL36", + "local_code": "AL36" + }, + { + "id": "16229", + "ident": "AL37", + "type": "small_airport", + "name": "Benedick Airport", + "latitude_deg": "31.555028", + "longitude_deg": "-85.977278", + "elevation_ft": "335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Jack", + "scheduled_service": "no", + "gps_code": "AL37", + "local_code": "AL37" + }, + { + "id": "16230", + "ident": "AL38", + "type": "heliport", + "name": "University of Alabama Hospital Heliport", + "latitude_deg": "33.50590133666992", + "longitude_deg": "-86.80280303955078", + "elevation_ft": "787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Birmingham", + "scheduled_service": "no", + "gps_code": "AL38", + "local_code": "AL38" + }, + { + "id": "16231", + "ident": "AL39", + "type": "heliport", + "name": "Shelby Medical Center Heliport", + "latitude_deg": "33.252201080322266", + "longitude_deg": "-86.81220245361328", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Alabaster", + "scheduled_service": "no", + "gps_code": "AL39", + "local_code": "AL39" + }, + { + "id": "16232", + "ident": "AL40", + "type": "small_airport", + "name": "Bonham Airport", + "latitude_deg": "33.5432014465332", + "longitude_deg": "-86.98580169677734", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Birmingham", + "scheduled_service": "no", + "gps_code": "AL40", + "local_code": "AL40" + }, + { + "id": "16233", + "ident": "AL41", + "type": "small_airport", + "name": "Freedom Field", + "latitude_deg": "31.115999221801758", + "longitude_deg": "-85.62550354003906", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Slocomb", + "scheduled_service": "no", + "gps_code": "AL41", + "local_code": "AL41" + }, + { + "id": "16234", + "ident": "AL42", + "type": "heliport", + "name": "Regional Medical Center Anniston Heliport", + "latitude_deg": "33.656068", + "longitude_deg": "-85.8244", + "elevation_ft": "844", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Anniston", + "scheduled_service": "no", + "gps_code": "AL42", + "local_code": "AL42", + "keywords": "The Health Care Authority of the City of Anniston" + }, + { + "id": "16235", + "ident": "AL43", + "type": "small_airport", + "name": "Henley Ranch Airport", + "latitude_deg": "32.90850067138672", + "longitude_deg": "-88.3333969116211", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Geiger", + "scheduled_service": "no", + "gps_code": "AL43", + "local_code": "AL43" + }, + { + "id": "16236", + "ident": "AL44", + "type": "heliport", + "name": "Cullman Medical Center Heliport", + "latitude_deg": "34.172298431396484", + "longitude_deg": "-86.84359741210938", + "elevation_ft": "789", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Cullman", + "scheduled_service": "no", + "gps_code": "AL44", + "local_code": "AL44" + }, + { + "id": "16237", + "ident": "AL45", + "type": "closed", + "name": "Trinty Medical Center Heliport", + "latitude_deg": "33.517502", + "longitude_deg": "-86.749702", + "elevation_ft": "966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Birmingham", + "scheduled_service": "no", + "keywords": "AL45" + }, + { + "id": "16238", + "ident": "AL46", + "type": "seaplane_base", + "name": "Shoals Creek Seaplane Base", + "latitude_deg": "34.9025993347168", + "longitude_deg": "-87.58719635009766", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Florence", + "scheduled_service": "no", + "gps_code": "AL46", + "local_code": "AL46" + }, + { + "id": "16239", + "ident": "AL47", + "type": "heliport", + "name": "Lemoyne Heliport", + "latitude_deg": "30.971799850463867", + "longitude_deg": "-88.02639770507812", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Axis", + "scheduled_service": "no", + "gps_code": "AL47", + "local_code": "AL47" + }, + { + "id": "16240", + "ident": "AL48", + "type": "heliport", + "name": "Southwest Alabama Medical Center Heliport", + "latitude_deg": "31.9307003021", + "longitude_deg": "-87.7375030518", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Thomasville", + "scheduled_service": "no", + "gps_code": "AL48", + "local_code": "AL48" + }, + { + "id": "16241", + "ident": "AL49", + "type": "heliport", + "name": "Carraway Medical Center Heliport", + "latitude_deg": "33.5359001159668", + "longitude_deg": "-86.8114013671875", + "elevation_ft": "672", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Birmingham", + "scheduled_service": "no", + "gps_code": "AL49", + "local_code": "AL49" + }, + { + "id": "16242", + "ident": "AL50", + "type": "heliport", + "name": "Baptist Medical Center-Princeton Heliport", + "latitude_deg": "33.49760055541992", + "longitude_deg": "-86.84639739990234", + "elevation_ft": "557", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Birmingham", + "scheduled_service": "no", + "gps_code": "AL50", + "local_code": "AL50" + }, + { + "id": "16243", + "ident": "AL51", + "type": "small_airport", + "name": "Flying C's Plantation Airport", + "latitude_deg": "32.416099548339844", + "longitude_deg": "-85.29920196533203", + "elevation_ft": "395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Crawford", + "scheduled_service": "no", + "gps_code": "AL51", + "local_code": "AL51" + }, + { + "id": "16244", + "ident": "AL52", + "type": "heliport", + "name": "USA Health University Hospital Heliport", + "latitude_deg": "30.707988", + "longitude_deg": "-88.098475", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Mobile", + "scheduled_service": "no", + "gps_code": "AL52", + "local_code": "AL52", + "keywords": "USA Medical Center" + }, + { + "id": "16245", + "ident": "AL53", + "type": "heliport", + "name": "Humana Hospital Shoals Heliport", + "latitude_deg": "34.74620056152344", + "longitude_deg": "-87.67639923095703", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Muscle Shoals", + "scheduled_service": "no", + "gps_code": "AL53", + "local_code": "AL53" + }, + { + "id": "16246", + "ident": "AL54", + "type": "small_airport", + "name": "Bird Nest Airport", + "latitude_deg": "33.86330032348633", + "longitude_deg": "-87.84529876708984", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Winfield", + "scheduled_service": "no", + "gps_code": "AL54", + "local_code": "AL54" + }, + { + "id": "16247", + "ident": "AL55", + "type": "small_airport", + "name": "Shields Airport", + "latitude_deg": "30.433936", + "longitude_deg": "-87.457211", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Elberta", + "scheduled_service": "no", + "gps_code": "AL55", + "local_code": "AL55" + }, + { + "id": "16248", + "ident": "AL56", + "type": "closed", + "name": "Jones Light Aviation Airport", + "latitude_deg": "32.500099", + "longitude_deg": "-85.083298", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Smiths", + "scheduled_service": "no", + "keywords": "AL56" + }, + { + "id": "45237", + "ident": "AL58", + "type": "seaplane_base", + "name": "Lower Delta Seaplane Base", + "latitude_deg": "30.675476", + "longitude_deg": "-87.959871", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Spanish Fort", + "scheduled_service": "no", + "gps_code": "AL58", + "local_code": "AL58" + }, + { + "id": "16249", + "ident": "AL59", + "type": "heliport", + "name": "Flowers Hospital Heliport", + "latitude_deg": "31.237699508666992", + "longitude_deg": "-85.456298828125", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Dothan", + "scheduled_service": "no", + "gps_code": "AL59", + "local_code": "AL59" + }, + { + "id": "16250", + "ident": "AL60", + "type": "small_airport", + "name": "Dugger's Field", + "latitude_deg": "33.83869934082031", + "longitude_deg": "-86.2114028930664", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Ashville", + "scheduled_service": "no", + "gps_code": "AL60", + "local_code": "AL60" + }, + { + "id": "16251", + "ident": "AL61", + "type": "closed", + "name": "Belforest Airport", + "latitude_deg": "30.616899", + "longitude_deg": "-87.858299", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Daphne", + "scheduled_service": "no", + "keywords": "AL61" + }, + { + "id": "16252", + "ident": "AL62", + "type": "small_airport", + "name": "Striplin Airfield", + "latitude_deg": "31.08300018310547", + "longitude_deg": "-85.68350219726562", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Hartford", + "scheduled_service": "no", + "gps_code": "AL62", + "local_code": "AL62" + }, + { + "id": "16253", + "ident": "AL63", + "type": "heliport", + "name": "Walker Regional Medical Center Heliport", + "latitude_deg": "33.84339904785156", + "longitude_deg": "-87.23390197753906", + "elevation_ft": "418", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Jasper", + "scheduled_service": "no", + "gps_code": "AL63", + "local_code": "AL63" + }, + { + "id": "16254", + "ident": "AL65", + "type": "heliport", + "name": "St Vincents East Heliport", + "latitude_deg": "33.596972", + "longitude_deg": "-86.667808", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Birmingham", + "scheduled_service": "no", + "gps_code": "AL65", + "local_code": "AL65", + "keywords": "Medical Center East" + }, + { + "id": "16255", + "ident": "AL66", + "type": "heliport", + "name": "Alabama Power Headquarters Heliport", + "latitude_deg": "33.51959991455078", + "longitude_deg": "-86.8135986328125", + "elevation_ft": "676", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Birmingham", + "scheduled_service": "no", + "gps_code": "AL66", + "local_code": "AL66" + }, + { + "id": "16256", + "ident": "AL67", + "type": "closed", + "name": "Exxon Heliport", + "latitude_deg": "30.528558", + "longitude_deg": "-88.10945", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Theodore", + "scheduled_service": "no", + "keywords": "AL67" + }, + { + "id": "16257", + "ident": "AL68", + "type": "closed", + "name": "Willis Airport", + "latitude_deg": "33.8512", + "longitude_deg": "-85.663", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Piedmont", + "scheduled_service": "no", + "keywords": "AL68" + }, + { + "id": "16258", + "ident": "AL69", + "type": "small_airport", + "name": "Vaughn Private Airport", + "latitude_deg": "30.511838", + "longitude_deg": "-87.496708", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Summerdale", + "scheduled_service": "no", + "gps_code": "AL69", + "local_code": "AL69" + }, + { + "id": "16259", + "ident": "AL70", + "type": "heliport", + "name": "ABC 33/40 Heliport", + "latitude_deg": "33.352729", + "longitude_deg": "-86.787855", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Hoover", + "scheduled_service": "no", + "gps_code": "AL70", + "local_code": "AL70" + }, + { + "id": "16260", + "ident": "AL71", + "type": "small_airport", + "name": "Willow Point Airport", + "latitude_deg": "32.8036994934082", + "longitude_deg": "-85.98049926757812", + "elevation_ft": "551", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Our Town", + "scheduled_service": "no", + "gps_code": "AL71", + "local_code": "AL71" + }, + { + "id": "16261", + "ident": "AL72", + "type": "closed", + "name": "Palmer Field", + "latitude_deg": "34.6954", + "longitude_deg": "-86.786102", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Madison", + "scheduled_service": "no", + "keywords": "AL72" + }, + { + "id": "16262", + "ident": "AL73", + "type": "closed", + "name": "Sharpe Field", + "latitude_deg": "32.491901", + "longitude_deg": "-85.775597", + "elevation_ft": "253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Tuskegee", + "scheduled_service": "no", + "iata_code": "TGE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sharpe_Field", + "keywords": "AL73, TGE, Tuskegee AAF" + }, + { + "id": "16263", + "ident": "AL74", + "type": "small_airport", + "name": "Grimes Field", + "latitude_deg": "30.764400482177734", + "longitude_deg": "-88.30580139160156", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Semmes", + "scheduled_service": "no", + "gps_code": "AL74", + "local_code": "AL74" + }, + { + "id": "16264", + "ident": "AL75", + "type": "seaplane_base", + "name": "Gulf State Park Seaplane Base", + "latitude_deg": "30.2632999420166", + "longitude_deg": "-87.63690185546875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Gulf Shores", + "scheduled_service": "no", + "gps_code": "AL75", + "local_code": "AL75" + }, + { + "id": "16265", + "ident": "AL76", + "type": "small_airport", + "name": "Mayfield (Private) Airport", + "latitude_deg": "32.84870147705078", + "longitude_deg": "-86.87000274658203", + "elevation_ft": "495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Maplesville", + "scheduled_service": "no", + "gps_code": "AL76", + "local_code": "AL76" + }, + { + "id": "16266", + "ident": "AL77", + "type": "small_airport", + "name": "Smart Road Airport", + "latitude_deg": "31.7406005859375", + "longitude_deg": "-86.00700378417969", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "AL77", + "local_code": "AL77" + }, + { + "id": "16267", + "ident": "AL78", + "type": "small_airport", + "name": "Klumpp Airport", + "latitude_deg": "30.526899337768555", + "longitude_deg": "-87.85420227050781", + "elevation_ft": "111", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fairhope", + "scheduled_service": "no", + "gps_code": "AL78", + "local_code": "AL78" + }, + { + "id": "16268", + "ident": "AL79", + "type": "small_airport", + "name": "Bartlett Ranch Airport", + "latitude_deg": "32.26959991455078", + "longitude_deg": "-86.09880065917969", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Pike Road", + "scheduled_service": "no", + "gps_code": "AL79", + "local_code": "AL79" + }, + { + "id": "16269", + "ident": "AL80", + "type": "heliport", + "name": "Bellefonte Nuclear Plant Heliport", + "latitude_deg": "34.711997", + "longitude_deg": "-85.923797", + "elevation_ft": "623", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Scottsboro", + "scheduled_service": "no", + "gps_code": "AL80", + "local_code": "AL80" + }, + { + "id": "16270", + "ident": "AL81", + "type": "closed", + "name": "Wallace Field", + "latitude_deg": "30.5551", + "longitude_deg": "-87.64414", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Robertsdale", + "scheduled_service": "no", + "keywords": "9J0, AL81" + }, + { + "id": "16271", + "ident": "AL82", + "type": "heliport", + "name": "Providence Hospital Heliport", + "latitude_deg": "30.679399490356445", + "longitude_deg": "-88.19999694824219", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Mobile", + "scheduled_service": "no", + "gps_code": "AL82", + "local_code": "AL82" + }, + { + "id": "16272", + "ident": "AL83", + "type": "heliport", + "name": "Community Hospital Heliport", + "latitude_deg": "32.534000396728516", + "longitude_deg": "-85.91130065917969", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Tallassee", + "scheduled_service": "no", + "gps_code": "AL83", + "local_code": "AL83" + }, + { + "id": "16273", + "ident": "AL84", + "type": "small_airport", + "name": "Pecan Ponds Farm Airport", + "latitude_deg": "30.540622", + "longitude_deg": "-87.568846", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Robertsdale", + "scheduled_service": "no", + "gps_code": "AL84", + "local_code": "AL84" + }, + { + "id": "16274", + "ident": "AL85", + "type": "closed", + "name": "Towers Heliport", + "latitude_deg": "33.4743", + "longitude_deg": "-86.324997", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Birmingham", + "scheduled_service": "no", + "keywords": "AL85" + }, + { + "id": "16275", + "ident": "AL86", + "type": "heliport", + "name": "Lawrence County Hospital Heliport", + "latitude_deg": "34.484081", + "longitude_deg": "-87.284882", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Moulton", + "scheduled_service": "no", + "gps_code": "AL86", + "local_code": "AL86" + }, + { + "id": "16276", + "ident": "AL87", + "type": "heliport", + "name": "Dale Medical Center Heliport", + "latitude_deg": "31.45159912109375", + "longitude_deg": "-85.63189697265625", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Ozark", + "scheduled_service": "no", + "gps_code": "AL87", + "local_code": "AL87" + }, + { + "id": "16277", + "ident": "AL88", + "type": "small_airport", + "name": "Ban Farm Airport", + "latitude_deg": "30.427002", + "longitude_deg": "-87.471407", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Lillian", + "scheduled_service": "no", + "gps_code": "AL88", + "local_code": "AL88" + }, + { + "id": "16278", + "ident": "AL89", + "type": "small_airport", + "name": "Sommerset Strip", + "latitude_deg": "32.71870040893555", + "longitude_deg": "-85.36689758300781", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Opelika", + "scheduled_service": "no", + "gps_code": "AL89", + "local_code": "AL89" + }, + { + "id": "16279", + "ident": "AL90", + "type": "heliport", + "name": "Selma Medical Center Heliport", + "latitude_deg": "32.42900085449219", + "longitude_deg": "-87.05670166015625", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Selma", + "scheduled_service": "no", + "gps_code": "AL90", + "local_code": "AL90" + }, + { + "id": "16280", + "ident": "AL91", + "type": "heliport", + "name": "The Children's Hospital Heliport", + "latitude_deg": "33.50429916381836", + "longitude_deg": "-86.8052978515625", + "elevation_ft": "698", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Birmingham", + "scheduled_service": "no", + "gps_code": "AL91", + "local_code": "AL91" + }, + { + "id": "16281", + "ident": "AL92", + "type": "small_airport", + "name": "Hawk Field", + "latitude_deg": "33.30730056762695", + "longitude_deg": "-86.40360260009766", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Harpersville", + "scheduled_service": "no", + "gps_code": "AL92", + "local_code": "AL92" + }, + { + "id": "16282", + "ident": "AL93", + "type": "small_airport", + "name": "Big Sky Airport", + "latitude_deg": "34.88560104370117", + "longitude_deg": "-86.70999908447266", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Huntsville", + "scheduled_service": "no", + "gps_code": "AL93", + "local_code": "AL93" + }, + { + "id": "16283", + "ident": "AL94", + "type": "small_airport", + "name": "Evans Field", + "latitude_deg": "30.812700271606445", + "longitude_deg": "-88.377197265625", + "elevation_ft": "212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Wilmer", + "scheduled_service": "no", + "gps_code": "AL94", + "local_code": "AL94" + }, + { + "id": "16284", + "ident": "AL95", + "type": "heliport", + "name": "McIntosh Community Heliport", + "latitude_deg": "31.273182", + "longitude_deg": "-88.012408", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "McIntosh", + "scheduled_service": "no", + "gps_code": "AL95", + "local_code": "AL95" + }, + { + "id": "16285", + "ident": "AL96", + "type": "seaplane_base", + "name": "Bon Secour Seaplane Base", + "latitude_deg": "30.29829978942871", + "longitude_deg": "-87.74079895019531", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Gulf Shores", + "scheduled_service": "no", + "gps_code": "AL96", + "local_code": "AL96" + }, + { + "id": "16286", + "ident": "AL97", + "type": "small_airport", + "name": "Williamson Farm Airport", + "latitude_deg": "30.644699096679688", + "longitude_deg": "-87.66940307617188", + "elevation_ft": "162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Loxley", + "scheduled_service": "no", + "gps_code": "AL97", + "local_code": "AL97" + }, + { + "id": "16287", + "ident": "AL98", + "type": "heliport", + "name": "DCH Regional Medical Center Heliport", + "latitude_deg": "33.2061", + "longitude_deg": "-87.526398", + "elevation_ft": "284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Tuscaloosa", + "scheduled_service": "no", + "keywords": "AL98" + }, + { + "id": "16288", + "ident": "AL99", + "type": "closed", + "name": "Blast Off Heliport", + "latitude_deg": "30.839701", + "longitude_deg": "-87.772797", + "elevation_ft": "241", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Bay Minette", + "scheduled_service": "no", + "keywords": "AL99" + }, + { + "id": "16289", + "ident": "ALZ", + "type": "seaplane_base", + "name": "Alitak Seaplane Base", + "latitude_deg": "56.8995018005", + "longitude_deg": "-154.248001099", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Lazy Bay", + "scheduled_service": "no", + "iata_code": "ALZ", + "local_code": "ALZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alitak_Seaplane_Base" + }, + { + "id": "44682", + "ident": "AM-0001", + "type": "small_airport", + "name": "Syunik Airport", + "latitude_deg": "39.202272", + "longitude_deg": "46.455204", + "continent": "AS", + "iso_country": "AM", + "iso_region": "AM-SU", + "municipality": "Kapan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Syunik_Airport" + }, + { + "id": "44847", + "ident": "AM-0002", + "type": "small_airport", + "name": "Goris Airport", + "latitude_deg": "39.450989", + "longitude_deg": "46.34724", + "continent": "AS", + "iso_country": "AM", + "iso_region": "AM-SU", + "municipality": "Shinuhayr", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Goris_Airport", + "keywords": "Goris, Shinuhayr, Shinuyar" + }, + { + "id": "44931", + "ident": "AM-0003", + "type": "small_airport", + "name": "Hoktember Highway Strip", + "latitude_deg": "40.0809774791", + "longitude_deg": "43.8822698593", + "continent": "AS", + "iso_country": "AM", + "iso_region": "AM-AV", + "municipality": "Hoktember", + "scheduled_service": "no", + "keywords": "Oktember, Հոկտեմբեր, Sardarapat" + }, + { + "id": "44944", + "ident": "AM-0004", + "type": "small_airport", + "name": "Berd Airport", + "latitude_deg": "40.925405606300004", + "longitude_deg": "45.4614043236", + "continent": "AS", + "iso_country": "AM", + "iso_region": "AM-TV", + "municipality": "Berd", + "scheduled_service": "no", + "keywords": "Բերդ, Berrdagyugh, Berrdgyugh, T’avuzghala, T’auzk’end, T’ovuz, T’ous, Taua Kale, T’auzkala, Taya-Kala, Tovuzkala, Bert, T’ous Gale, Volorut, Shlorut, Ghalak’yand, T’uzukala" + }, + { + "id": "44963", + "ident": "AM-0005", + "type": "closed", + "name": "Gavar Airport", + "latitude_deg": "40.371201153899996", + "longitude_deg": "45.0973320007", + "continent": "AS", + "iso_country": "AM", + "iso_region": "AM-GR", + "municipality": "Gavar", + "scheduled_service": "no", + "keywords": "Գավառ, Kyavar, Nor Bayezid, Novyi Bayaset, Novo Bayazet, Nor Bayazet, and Nor-Bajaset, Kamo" + }, + { + "id": "44964", + "ident": "AM-0006", + "type": "closed", + "name": "Vardenis Airstrip", + "latitude_deg": "40.199855", + "longitude_deg": "45.777111", + "continent": "AS", + "iso_country": "AM", + "iso_region": "AM-GR", + "municipality": "Mets Mazrik", + "scheduled_service": "no", + "keywords": "Mets Mazrik" + }, + { + "id": "308048", + "ident": "AM-0007", + "type": "closed", + "name": "Meghri Airport", + "latitude_deg": "38.9115725716", + "longitude_deg": "46.198925972", + "elevation_ft": "3900", + "continent": "AS", + "iso_country": "AM", + "iso_region": "AM-SU", + "municipality": "Meghri", + "scheduled_service": "no" + }, + { + "id": "341270", + "ident": "AM-0008", + "type": "small_airport", + "name": "Sisian Airstrip", + "latitude_deg": "39.54694", + "longitude_deg": "46.05694", + "continent": "AS", + "iso_country": "AM", + "iso_region": "AM-SU", + "municipality": "Sisian", + "scheduled_service": "no" + }, + { + "id": "341271", + "ident": "AM-0009", + "type": "small_airport", + "name": "Sky Club Airstrip", + "latitude_deg": "40.07953", + "longitude_deg": "44.60577", + "continent": "AS", + "iso_country": "AM", + "iso_region": "AM-AR", + "municipality": "Bardzrashen", + "scheduled_service": "no" + }, + { + "id": "341272", + "ident": "AM-0010", + "type": "heliport", + "name": "Victory Park Helipad", + "latitude_deg": "40.19627", + "longitude_deg": "44.52476", + "continent": "AS", + "iso_country": "AM", + "iso_region": "AM-ER", + "municipality": "Yerevan", + "scheduled_service": "no" + }, + { + "id": "45229", + "ident": "AMC", + "type": "small_airport", + "name": "Mar de Cortés International Airport", + "latitude_deg": "31.351987", + "longitude_deg": "-113.305177", + "elevation_ft": "71", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Puerto Peñasco", + "scheduled_service": "yes", + "gps_code": "MMPE", + "iata_code": "PPE", + "local_code": "83550", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mar_de_Cort%C3%A9s_International_Airport" + }, + { + "id": "301755", + "ident": "AME", + "type": "small_airport", + "name": "Alto Molocue Airport", + "latitude_deg": "-15.6102777778", + "longitude_deg": "37.6813888889", + "elevation_ft": "1950", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-Q", + "municipality": "Alto Molocue", + "scheduled_service": "no", + "iata_code": "AME" + }, + { + "id": "301676", + "ident": "AMF", + "type": "small_airport", + "name": "Ama Airport", + "latitude_deg": "-4.10111111111", + "longitude_deg": "141.67", + "elevation_ft": "145", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "scheduled_service": "no", + "gps_code": "AYAA", + "iata_code": "AMF", + "local_code": "AMA" + }, + { + "id": "343858", + "ident": "AMG", + "type": "closed", + "name": "Amboin Airstrip", + "latitude_deg": "-4.605642", + "longitude_deg": "143.485308", + "elevation_ft": "87", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Amboin", + "scheduled_service": "no", + "iata_code": "AMG" + }, + { + "id": "301689", + "ident": "AMU", + "type": "small_airport", + "name": "Amanab Airport", + "latitude_deg": "-3.586", + "longitude_deg": "141.214333333", + "elevation_ft": "1307", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Amanab", + "scheduled_service": "no", + "gps_code": "AYAM", + "iata_code": "AMU", + "local_code": "ANA" + }, + { + "id": "301758", + "ident": "AMY", + "type": "small_airport", + "name": "Ambatomainty Airport", + "latitude_deg": "-17.6866666667", + "longitude_deg": "45.623888888900005", + "elevation_ft": "1025", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "scheduled_service": "no", + "iata_code": "AMY" + }, + { + "id": "16290", + "ident": "AN01", + "type": "small_airport", + "name": "Av Ranch Airport", + "latitude_deg": "32.81669998168945", + "longitude_deg": "-110.31700134277344", + "elevation_ft": "3500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Klondyke", + "scheduled_service": "no", + "gps_code": "AN01", + "local_code": "AN01" + }, + { + "id": "336249", + "ident": "AN37", + "type": "small_airport", + "name": "Frog Pond Airport", + "latitude_deg": "35.782262", + "longitude_deg": "-90.651955", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Jonesboro", + "scheduled_service": "no", + "gps_code": "AN37", + "local_code": "AN37" + }, + { + "id": "5504", + "ident": "ANG", + "type": "small_airport", + "name": "Angaur", + "latitude_deg": "6.906829", + "longitude_deg": "134.145386", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "PW", + "iso_region": "PW-010", + "municipality": "Angaur Island", + "scheduled_service": "no", + "local_code": "ANG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Angaur_Airstrip" + }, + { + "id": "301759", + "ident": "ANH", + "type": "closed", + "name": "Anuha Island Resort Airport", + "latitude_deg": "-9.001389", + "longitude_deg": "160.225", + "elevation_ft": "22", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-CE", + "municipality": "Anhua Island", + "scheduled_service": "no", + "keywords": "ANH" + }, + { + "id": "8", + "ident": "ANYN", + "type": "medium_airport", + "name": "Nauru International Airport", + "latitude_deg": "-0.547458", + "longitude_deg": "166.919006", + "elevation_ft": "22", + "continent": "OC", + "iso_country": "NR", + "iso_region": "NR-14", + "municipality": "Yaren District", + "scheduled_service": "yes", + "gps_code": "ANYN", + "iata_code": "INU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nauru_International_Airport", + "keywords": "ANAU" + }, + { + "id": "312361", + "ident": "ANZ", + "type": "small_airport", + "name": "Angus Downs Airport", + "latitude_deg": "-25.0325", + "longitude_deg": "132.2748", + "elevation_ft": "1724", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Angus Downs Station", + "scheduled_service": "no", + "gps_code": "YADN", + "iata_code": "ANZ" + }, + { + "id": "35325", + "ident": "AO-0001", + "type": "small_airport", + "name": "Catoca Airport", + "latitude_deg": "-9.430985", + "longitude_deg": "20.311478", + "elevation_ft": "3498", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-LSU", + "municipality": "Saurimo", + "scheduled_service": "no", + "iata_code": "CTV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Catoca_Airport", + "keywords": "Saurimo North" + }, + { + "id": "43968", + "ident": "AO-0002", + "type": "small_airport", + "name": "Nancova Airport", + "latitude_deg": "-16.39637", + "longitude_deg": "18.978764", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CCU", + "municipality": "Nancova", + "scheduled_service": "no", + "keywords": "Vila Nova da Armada" + }, + { + "id": "43969", + "ident": "AO-0003", + "type": "small_airport", + "name": "Rito Airport", + "latitude_deg": "-16.689392", + "longitude_deg": "19.083767", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CCU", + "municipality": "Rito", + "scheduled_service": "no" + }, + { + "id": "43970", + "ident": "AO-0004", + "type": "small_airport", + "name": "Coemba Airport", + "latitude_deg": "-12.143704", + "longitude_deg": "18.085363", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-BIE", + "municipality": "Coemba", + "scheduled_service": "no" + }, + { + "id": "43971", + "ident": "AO-0005", + "type": "small_airport", + "name": "Andulo Airport", + "latitude_deg": "-11.4723", + "longitude_deg": "16.710899", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-BIE", + "municipality": "Andulo", + "scheduled_service": "no", + "iata_code": "ANL" + }, + { + "id": "312663", + "ident": "AO-0006", + "type": "small_airport", + "name": "Caluquembe Airport", + "latitude_deg": "-13.775546", + "longitude_deg": "14.694916", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-HUI", + "municipality": "Calequembe", + "scheduled_service": "no" + }, + { + "id": "318389", + "ident": "AO-0007", + "type": "small_airport", + "name": "Cuvelai Airport", + "latitude_deg": "-15.668575", + "longitude_deg": "15.805654", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CNN", + "municipality": "Cuvelai", + "scheduled_service": "no" + }, + { + "id": "318398", + "ident": "AO-0008", + "type": "small_airport", + "name": "Cuangar Airport", + "latitude_deg": "-17.597122", + "longitude_deg": "18.63437", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CCU", + "municipality": "Cuangar", + "scheduled_service": "no" + }, + { + "id": "318399", + "ident": "AO-0009", + "type": "closed", + "name": "Cuangar Old Airport", + "latitude_deg": "-17.599985", + "longitude_deg": "18.623552", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CCU", + "municipality": "Cuangar", + "scheduled_service": "no" + }, + { + "id": "318400", + "ident": "AO-0010", + "type": "closed", + "name": "Savate Airport", + "latitude_deg": "-16.88068", + "longitude_deg": "18.001893", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CCU", + "municipality": "Savate", + "scheduled_service": "no" + }, + { + "id": "318403", + "ident": "AO-0011", + "type": "small_airport", + "name": "Mucusso Airport", + "latitude_deg": "-18.020826", + "longitude_deg": "21.437053", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CCU", + "municipality": "Mucusso", + "scheduled_service": "no" + }, + { + "id": "318476", + "ident": "AO-0012", + "type": "small_airport", + "name": "Jamba Airport", + "latitude_deg": "-17.454765", + "longitude_deg": "22.607245", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CCU", + "municipality": "Jamba", + "scheduled_service": "no" + }, + { + "id": "318477", + "ident": "AO-0013", + "type": "closed", + "name": "Luiana Airport", + "latitude_deg": "-17.380791", + "longitude_deg": "23.002339", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CCU", + "municipality": "Luiana", + "scheduled_service": "no" + }, + { + "id": "318478", + "ident": "AO-0014", + "type": "closed", + "name": "Coutada Airport", + "latitude_deg": "-17.017654", + "longitude_deg": "21.301774", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CCU", + "municipality": "Coutada", + "scheduled_service": "no" + }, + { + "id": "318479", + "ident": "AO-0015", + "type": "closed", + "name": "Rivungo Airport", + "latitude_deg": "-15.793551", + "longitude_deg": "21.380704", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CCU", + "municipality": "Rivungo", + "scheduled_service": "no" + }, + { + "id": "318480", + "ident": "AO-0016", + "type": "small_airport", + "name": "Mavinga Airport", + "latitude_deg": "-15.789222", + "longitude_deg": "20.368971", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CCU", + "municipality": "Mavinga", + "scheduled_service": "no" + }, + { + "id": "318481", + "ident": "AO-0017", + "type": "small_airport", + "name": "Ninda Airport", + "latitude_deg": "-14.80893", + "longitude_deg": "21.376961", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-MOX", + "municipality": "Ninda", + "scheduled_service": "no" + }, + { + "id": "318483", + "ident": "AO-0018", + "type": "closed", + "name": "Luena Airport", + "latitude_deg": "-12.740271", + "longitude_deg": "20.736829", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-MOX", + "municipality": "Luena", + "scheduled_service": "no" + }, + { + "id": "318484", + "ident": "AO-0019", + "type": "small_airport", + "name": "Lucusse Airport", + "latitude_deg": "-12.521974", + "longitude_deg": "20.805726", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-MOX", + "municipality": "Lucusse", + "scheduled_service": "no" + }, + { + "id": "318485", + "ident": "AO-0020", + "type": "small_airport", + "name": "Cassamba Airport", + "latitude_deg": "-13.139351", + "longitude_deg": "20.300824", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-MOX", + "municipality": "Cassamba", + "scheduled_service": "no" + }, + { + "id": "318486", + "ident": "AO-0021", + "type": "small_airport", + "name": "Calunda Airport", + "latitude_deg": "-12.126335", + "longitude_deg": "23.478615", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-MOX", + "municipality": "Calunda", + "scheduled_service": "no" + }, + { + "id": "318487", + "ident": "AO-0022", + "type": "small_airport", + "name": "Lóvua Airport", + "latitude_deg": "-11.556065", + "longitude_deg": "23.553667", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-MOX", + "municipality": "Lóvua", + "scheduled_service": "no" + }, + { + "id": "318488", + "ident": "AO-0023", + "type": "small_airport", + "name": "Luacano Airport", + "latitude_deg": "-11.209962", + "longitude_deg": "21.648705", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-MOX", + "municipality": "Luacano", + "scheduled_service": "no" + }, + { + "id": "318489", + "ident": "AO-0024", + "type": "small_airport", + "name": "Lumeje Airport", + "latitude_deg": "-11.564598", + "longitude_deg": "20.785903", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-MOX", + "municipality": "Lumeje", + "scheduled_service": "no" + }, + { + "id": "318490", + "ident": "AO-0025", + "type": "small_airport", + "name": "Chipato Airport", + "latitude_deg": "-10.701382", + "longitude_deg": "22.160291", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-MOX", + "municipality": "Luao", + "scheduled_service": "no" + }, + { + "id": "318491", + "ident": "AO-0026", + "type": "closed", + "name": "Nova Chaves Airport", + "latitude_deg": "-10.598408", + "longitude_deg": "21.315093", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-LSU", + "municipality": "Nova Chaves", + "scheduled_service": "no" + }, + { + "id": "318522", + "ident": "AO-0027", + "type": "small_airport", + "name": "Camacupa Airport", + "latitude_deg": "-12.021878", + "longitude_deg": "17.453693", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-BIE", + "municipality": "Camacupa", + "scheduled_service": "no" + }, + { + "id": "318523", + "ident": "AO-0028", + "type": "small_airport", + "name": "Luando Airport", + "latitude_deg": "-11.62444", + "longitude_deg": "18.46969", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-BIE", + "municipality": "Luando", + "scheduled_service": "no" + }, + { + "id": "318524", + "ident": "AO-0029", + "type": "small_airport", + "name": "Quirima Airport", + "latitude_deg": "-10.902645", + "longitude_deg": "18.060368", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-MAL", + "municipality": "Quirima", + "scheduled_service": "no" + }, + { + "id": "318525", + "ident": "AO-0030", + "type": "small_airport", + "name": "Dala Airport", + "latitude_deg": "-11.040653", + "longitude_deg": "20.208268", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-LSU", + "municipality": "Dala", + "scheduled_service": "no" + }, + { + "id": "318526", + "ident": "AO-0031", + "type": "closed", + "name": "Cazaje Airport", + "latitude_deg": "-11.063437", + "longitude_deg": "20.695914", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-LSU", + "municipality": "Cazaje", + "scheduled_service": "no" + }, + { + "id": "318527", + "ident": "AO-0032", + "type": "small_airport", + "name": "Longa Airport", + "latitude_deg": "-14.610741", + "longitude_deg": "18.487945", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CCU", + "municipality": "Longa", + "scheduled_service": "no" + }, + { + "id": "318528", + "ident": "AO-0033", + "type": "small_airport", + "name": "Cuchi Airport", + "latitude_deg": "-14.64987", + "longitude_deg": "16.885391", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CCU", + "municipality": "Cuchi", + "scheduled_service": "no" + }, + { + "id": "318529", + "ident": "AO-0034", + "type": "small_airport", + "name": "Mutumbo Airport", + "latitude_deg": "-13.179982", + "longitude_deg": "17.394938", + "elevation_ft": "4773", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-BIE", + "municipality": "Mutumbo", + "scheduled_service": "no" + }, + { + "id": "318530", + "ident": "AO-0035", + "type": "small_airport", + "name": "Miguel Airport", + "latitude_deg": "-15.704318", + "longitude_deg": "17.452439", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CCU", + "municipality": "Miguel", + "scheduled_service": "no" + }, + { + "id": "318531", + "ident": "AO-0036", + "type": "closed", + "name": "Namacunde Airport", + "latitude_deg": "-17.302638", + "longitude_deg": "15.850786", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CNN", + "municipality": "Namacunde", + "scheduled_service": "no" + }, + { + "id": "318533", + "ident": "AO-0037", + "type": "small_airport", + "name": "Calai Airport", + "latitude_deg": "-17.878868", + "longitude_deg": "19.782762", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CCU", + "municipality": "Calai", + "scheduled_service": "no" + }, + { + "id": "318536", + "ident": "AO-0038", + "type": "small_airport", + "name": "Chitado Airport", + "latitude_deg": "-17.320733", + "longitude_deg": "13.923845", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CNN", + "municipality": "Chitado", + "scheduled_service": "no" + }, + { + "id": "318863", + "ident": "AO-0039", + "type": "small_airport", + "name": "Alto Dondo Airport", + "latitude_deg": "-9.675516", + "longitude_deg": "14.464999", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CNO", + "municipality": "Dondo", + "scheduled_service": "no" + }, + { + "id": "318864", + "ident": "AO-0040", + "type": "small_airport", + "name": "Mussende Airport", + "latitude_deg": "-10.520306", + "longitude_deg": "15.99677", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CUS", + "municipality": "Mussende", + "scheduled_service": "no" + }, + { + "id": "318865", + "ident": "AO-0041", + "type": "small_airport", + "name": "Capenda Camulemba Airport", + "latitude_deg": "-9.415833", + "longitude_deg": "18.434794", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-LNO", + "municipality": "Capenda Camulemba", + "scheduled_service": "no" + }, + { + "id": "318866", + "ident": "AO-0042", + "type": "small_airport", + "name": "Xassengue Airport", + "latitude_deg": "-10.461305", + "longitude_deg": "18.535527", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-LSU", + "municipality": "Xassengue", + "scheduled_service": "no" + }, + { + "id": "318867", + "ident": "AO-0043", + "type": "small_airport", + "name": "Balombo Airport", + "latitude_deg": "-12.357134", + "longitude_deg": "14.77923", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-BGU", + "municipality": "Balombo", + "scheduled_service": "no" + }, + { + "id": "318868", + "ident": "AO-0044", + "type": "small_airport", + "name": "Cuima Airport", + "latitude_deg": "-13.458467", + "longitude_deg": "15.833762", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-HUA", + "municipality": "Cuima", + "scheduled_service": "no" + }, + { + "id": "319259", + "ident": "AO-0045", + "type": "small_airport", + "name": "Cubati Airport", + "latitude_deg": "-15.333917", + "longitude_deg": "16.851872", + "elevation_ft": "4121", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CNN", + "municipality": "Cubati", + "scheduled_service": "no" + }, + { + "id": "319260", + "ident": "AO-0046", + "type": "small_airport", + "name": "Capelongo Airport", + "latitude_deg": "-14.457297", + "longitude_deg": "16.296202", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-HUI", + "municipality": "Capelongo", + "scheduled_service": "no" + }, + { + "id": "319262", + "ident": "AO-0047", + "type": "small_airport", + "name": "Chitembo Airport", + "latitude_deg": "-13.509385", + "longitude_deg": "16.74928", + "elevation_ft": "5393", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-BIE", + "municipality": "Chitembo", + "scheduled_service": "no" + }, + { + "id": "319263", + "ident": "AO-0048", + "type": "small_airport", + "name": "Cuito Cuanavale South Airport", + "latitude_deg": "-15.711983", + "longitude_deg": "18.651003", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CCU", + "municipality": "Baixo Longa", + "scheduled_service": "no" + }, + { + "id": "324541", + "ident": "AO-0049", + "type": "small_airport", + "name": "Mussuma Airport", + "latitude_deg": "-14.204202", + "longitude_deg": "21.909971", + "elevation_ft": "3477", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-MOX", + "municipality": "Mussuma", + "scheduled_service": "no" + }, + { + "id": "325464", + "ident": "AO-0050", + "type": "small_airport", + "name": "Mumbué Airport", + "latitude_deg": "-13.900039", + "longitude_deg": "17.300036", + "elevation_ft": "4995", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-BIE", + "municipality": "Mumbué", + "scheduled_service": "no" + }, + { + "id": "325465", + "ident": "AO-0051", + "type": "small_airport", + "name": "Cubango River Airport", + "latitude_deg": "-13.333366", + "longitude_deg": "16.414531", + "elevation_ft": "5073", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-HUA", + "municipality": "Hungulo", + "scheduled_service": "no" + }, + { + "id": "325466", + "ident": "AO-0052", + "type": "small_airport", + "name": "Chinhama Airport", + "latitude_deg": "-13.105437", + "longitude_deg": "16.42432", + "elevation_ft": "5565", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-HUA", + "municipality": "Chinhama", + "scheduled_service": "no" + }, + { + "id": "340283", + "ident": "AO-0053", + "type": "small_airport", + "name": "Baía dos Tigres Airstrip", + "latitude_deg": "-16.6023", + "longitude_deg": "11.7222", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-NAM", + "municipality": "Vila Baía dos Tigres", + "scheduled_service": "no" + }, + { + "id": "340284", + "ident": "AO-0054", + "type": "small_airport", + "name": "Tômbua Airport", + "latitude_deg": "-15.8004", + "longitude_deg": "11.8857", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-NAM", + "municipality": "Tômbua", + "scheduled_service": "no" + }, + { + "id": "340285", + "ident": "AO-0055", + "type": "small_airport", + "name": "Bentiaba Airfield", + "latitude_deg": "-14.25396", + "longitude_deg": "12.39103", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-NAM", + "municipality": "Bentiaba", + "scheduled_service": "no" + }, + { + "id": "340286", + "ident": "AO-0056", + "type": "small_airport", + "name": "Lunuango Airstrip", + "latitude_deg": "-6.4594", + "longitude_deg": "12.5697", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-ZAI", + "municipality": "Lunuango", + "scheduled_service": "no" + }, + { + "id": "340287", + "ident": "AO-0057", + "type": "small_airport", + "name": "Kwanda Airport", + "latitude_deg": "-6.1244", + "longitude_deg": "12.328", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-ZAI", + "municipality": "Soyo", + "scheduled_service": "no" + }, + { + "id": "341286", + "ident": "AO-0058", + "type": "heliport", + "name": "Sinfo Heliport", + "latitude_deg": "-8.91811", + "longitude_deg": "13.25935", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-LUA", + "municipality": "Luanda", + "scheduled_service": "no" + }, + { + "id": "344675", + "ident": "AO-0059", + "type": "small_airport", + "name": "Emilio de Carvalho Airport", + "latitude_deg": "-5.93365", + "longitude_deg": "12.96583", + "elevation_ft": "36", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-ZAI", + "municipality": "Emilio de Carvalho", + "scheduled_service": "no" + }, + { + "id": "351687", + "ident": "AO-0060", + "type": "small_airport", + "name": "Nhamuana Airport", + "latitude_deg": "-12.99457", + "longitude_deg": "22.7275", + "elevation_ft": "3530", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-MOX", + "municipality": "Nhamuana", + "scheduled_service": "no" + }, + { + "id": "351716", + "ident": "AO-0061", + "type": "closed", + "name": "Aldeia Airport", + "latitude_deg": "-16.21254", + "longitude_deg": "17.67218", + "elevation_ft": "3812", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CCU", + "municipality": "Aldeia", + "scheduled_service": "no" + }, + { + "id": "351717", + "ident": "AO-0062", + "type": "small_airport", + "name": "Bicunga Airport", + "latitude_deg": "-13.78708", + "longitude_deg": "16.44915", + "elevation_ft": "5270", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-HUI", + "municipality": "Bicunga", + "scheduled_service": "no" + }, + { + "id": "351718", + "ident": "AO-0063", + "type": "small_airport", + "name": "Tchindjenje Airport", + "latitude_deg": "-12.82279", + "longitude_deg": "14.93308", + "elevation_ft": "4501", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-HUA", + "municipality": "Tchindjenje", + "scheduled_service": "no", + "keywords": "Chinjenje" + }, + { + "id": "351720", + "ident": "AO-0064", + "type": "small_airport", + "name": "Ganda Airport", + "latitude_deg": "-12.99473", + "longitude_deg": "14.64698", + "elevation_ft": "4170", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-BGU", + "municipality": "Ganda", + "scheduled_service": "no" + }, + { + "id": "351722", + "ident": "AO-0065", + "type": "small_airport", + "name": "Caimbambo Airport", + "latitude_deg": "-13.04186", + "longitude_deg": "13.99673", + "elevation_ft": "2667", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-BGU", + "municipality": "Caimbambo", + "scheduled_service": "no" + }, + { + "id": "351948", + "ident": "AO-0066", + "type": "heliport", + "name": "Heli Malongo Heliport", + "latitude_deg": "-5.395639", + "longitude_deg": "12.212859", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CAB", + "scheduled_service": "no" + }, + { + "id": "43325", + "ident": "AO-0067", + "type": "small_airport", + "name": "Lumbala Airstrip", + "latitude_deg": "-12.639877", + "longitude_deg": "22.586821", + "elevation_ft": "3510", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-MOX", + "municipality": "Lumbala", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lumbala_Airport" + }, + { + "id": "30840", + "ident": "AO-CNZ", + "type": "small_airport", + "name": "Cangamba Airport", + "latitude_deg": "-13.7106", + "longitude_deg": "19.861099", + "elevation_ft": "3894", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-MOX", + "municipality": "Cangamba", + "scheduled_service": "no", + "iata_code": "CNZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cangamba_Airport" + }, + { + "id": "43323", + "ident": "AO-DRC", + "type": "small_airport", + "name": "Dirico Airport", + "latitude_deg": "-17.981924057006836", + "longitude_deg": "20.7680606842041", + "elevation_ft": "3504", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CCU", + "municipality": "Dirico", + "scheduled_service": "no", + "iata_code": "DRC" + }, + { + "id": "43322", + "ident": "AO-KNP", + "type": "small_airport", + "name": "Capanda Airport", + "latitude_deg": "-9.76937007904", + "longitude_deg": "15.4553194046", + "elevation_ft": "3366", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-MAL", + "municipality": "Capanda", + "scheduled_service": "no", + "gps_code": "FNCP", + "iata_code": "KNP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kapanda_Airport", + "keywords": "Kapanda" + }, + { + "id": "43326", + "ident": "AO-NDF", + "type": "small_airport", + "name": "N'dalatando Airport", + "latitude_deg": "-9.280378", + "longitude_deg": "14.982432", + "elevation_ft": "2684", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CNO", + "municipality": "N'dalatando", + "scheduled_service": "no", + "iata_code": "NDF" + }, + { + "id": "313771", + "ident": "AOA", + "type": "closed", + "name": "Aroa Airport", + "latitude_deg": "-9.0254", + "longitude_deg": "146.8", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Agevairu", + "scheduled_service": "no", + "iata_code": "AOA" + }, + { + "id": "301705", + "ident": "AOB", + "type": "small_airport", + "name": "Annanberg Airport", + "latitude_deg": "-4.90416666667", + "longitude_deg": "144.635833333", + "elevation_ft": "130", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "scheduled_service": "no", + "iata_code": "AOB", + "local_code": "ANB" + }, + { + "id": "312362", + "ident": "AOD", + "type": "small_airport", + "name": "Abou-Deïa Airport", + "latitude_deg": "11.4773", + "longitude_deg": "19.2874", + "elevation_ft": "1592", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-SA", + "municipality": "Abou-Deïa", + "scheduled_service": "no", + "iata_code": "AOD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abou-De%C3%AFa_Airport" + }, + { + "id": "301727", + "ident": "APP", + "type": "small_airport", + "name": "Asapa Airport", + "latitude_deg": "-8.97916666667", + "longitude_deg": "148.103611111", + "elevation_ft": "1930", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "scheduled_service": "no", + "iata_code": "APP", + "local_code": "APA" + }, + { + "id": "301706", + "ident": "APR", + "type": "small_airport", + "name": "April River Airport", + "latitude_deg": "-4.67666666667", + "longitude_deg": "142.540138889", + "elevation_ft": "220", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "April River", + "scheduled_service": "no", + "gps_code": "AYPE", + "iata_code": "APR", + "local_code": "APR" + }, + { + "id": "39579", + "ident": "AQ-0001", + "type": "small_airport", + "name": "Novolazarevskaya Station", + "latitude_deg": "-70.8461", + "longitude_deg": "11.8472", + "elevation_ft": "390", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Queen Maud Land", + "scheduled_service": "no", + "gps_code": "AT17", + "wikipedia_link": "https://en.wikipedia.org/wiki/Novolazarevskaya_Station" + }, + { + "id": "42221", + "ident": "AQ-0002", + "type": "small_airport", + "name": "Troll Airfield", + "latitude_deg": "-71.95714", + "longitude_deg": "2.45257", + "elevation_ft": "4167", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Troll Station", + "scheduled_service": "no", + "gps_code": "AT27", + "iata_code": "QET", + "wikipedia_link": "https://en.wikipedia.org/wiki/Troll_airfield" + }, + { + "id": "308225", + "ident": "AQ-0003", + "type": "closed", + "name": "González Videla Antarctic Base", + "latitude_deg": "-64.824", + "longitude_deg": "-62.857", + "elevation_ft": "1", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Waterboat Point", + "scheduled_service": "no", + "gps_code": "SCGB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gonz%C3%A1lez_Videla_Antarctic_Base" + }, + { + "id": "324981", + "ident": "AQ-0004", + "type": "closed", + "name": "Ellsworth Station", + "latitude_deg": "-77.650008", + "longitude_deg": "-41.0333", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Ellsworth Station", + "scheduled_service": "no", + "local_code": "BCE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ellsworth_Station", + "keywords": "Ellsworth Station" + }, + { + "id": "341257", + "ident": "AQ-0006", + "type": "heliport", + "name": "Palmer Station Heliport", + "latitude_deg": "-64.774501", + "longitude_deg": "-64.051079", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Palmer Station", + "scheduled_service": "no" + }, + { + "id": "341264", + "ident": "AQ-0007", + "type": "small_airport", + "name": "Enigma Lake Skiway", + "latitude_deg": "-74.71637", + "longitude_deg": "164.03408", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Zucchelli Station", + "scheduled_service": "no", + "gps_code": "AT04" + }, + { + "id": "342727", + "ident": "AQ-0008", + "type": "heliport", + "name": "Machu Picchu Base Helipad", + "latitude_deg": "-62.09122", + "longitude_deg": "-58.47103", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Machu Picchu Base", + "scheduled_service": "no" + }, + { + "id": "342728", + "ident": "AQ-0009", + "type": "heliport", + "name": "Comandante Ferraz Antarctic Station Helipad", + "latitude_deg": "-62.0857", + "longitude_deg": "-58.3915", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Comandante Ferraz Antarctic Station", + "scheduled_service": "no" + }, + { + "id": "342729", + "ident": "AQ-0010", + "type": "heliport", + "name": "Arctowsky Station Heliport", + "latitude_deg": "-62.15941", + "longitude_deg": "-58.47293", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Arctowsky Station", + "scheduled_service": "no" + }, + { + "id": "345862", + "ident": "AQ-0011", + "type": "small_airport", + "name": "Wolfs Fang", + "latitude_deg": "-71.527201", + "longitude_deg": "8.8333", + "elevation_ft": "3707", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "scheduled_service": "no", + "home_link": "https://white-desert.com/our-story/wolfsfang-runway-logistics/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wolfs_Fang_Runway" + }, + { + "id": "336951", + "ident": "AQBC", + "type": "medium_airport", + "name": "Boulder Clay Runway", + "latitude_deg": "-74.739373", + "longitude_deg": "164.03539", + "elevation_ft": "672", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Zucchelli Station", + "scheduled_service": "no", + "gps_code": "AQBC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zucchelli_Station" + }, + { + "id": "16294", + "ident": "AQY", + "type": "small_airport", + "name": "Girdwood-Alyeska Airport", + "latitude_deg": "60.968774", + "longitude_deg": "-149.119792", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Girdwood", + "scheduled_service": "no", + "iata_code": "AQY", + "local_code": "AQY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Girdwood_Airport" + }, + { + "id": "35333", + "ident": "AR-0001", + "type": "small_airport", + "name": "Cullen Airport", + "latitude_deg": "-52.88574", + "longitude_deg": "-68.414956", + "elevation_ft": "132", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Cullen", + "scheduled_service": "no" + }, + { + "id": "35334", + "ident": "AR-0002", + "type": "small_airport", + "name": "Estancia Los Cerros Airport", + "latitude_deg": "-54.343", + "longitude_deg": "-67.837532", + "elevation_ft": "1914", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Estancia Los Cerros", + "scheduled_service": "no" + }, + { + "id": "35335", + "ident": "AR-0003", + "type": "small_airport", + "name": "Rio Bellavista Airport", + "latitude_deg": "-53.98270034790039", + "longitude_deg": "-68.52359771728516", + "elevation_ft": "201", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Rio Bellavista", + "scheduled_service": "no" + }, + { + "id": "35398", + "ident": "AR-0004", + "type": "small_airport", + "name": "Merlo Airport", + "latitude_deg": "-32.35820007324219", + "longitude_deg": "-65.01740264892578", + "elevation_ft": "796", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-D", + "municipality": "Merlo", + "scheduled_service": "yes", + "local_code": "RLO" + }, + { + "id": "35399", + "ident": "AR-0005", + "type": "small_airport", + "name": "Bragado Airport", + "latitude_deg": "-35.145811", + "longitude_deg": "-60.480294", + "elevation_ft": "196", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Bragado", + "scheduled_service": "no", + "gps_code": "SA2X", + "iata_code": "QRF", + "local_code": "BRA" + }, + { + "id": "333805", + "ident": "AR-0006", + "type": "small_airport", + "name": "Los Rulos Airport", + "latitude_deg": "-28.933839", + "longitude_deg": "-62.792315", + "elevation_ft": "305", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "Casares", + "scheduled_service": "no", + "local_code": "CCR" + }, + { + "id": "35401", + "ident": "AR-0007", + "type": "small_airport", + "name": "Caleta Olivia Airport", + "latitude_deg": "-46.37428", + "longitude_deg": "-67.59409", + "elevation_ft": "37", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Caleta Olivia", + "scheduled_service": "no", + "iata_code": "CVI", + "local_code": "CAO" + }, + { + "id": "42798", + "ident": "AR-0008", + "type": "small_airport", + "name": "Aeroclub Chaco Airport", + "latitude_deg": "-27.6311", + "longitude_deg": "-59.1797", + "elevation_ft": "164", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-H", + "municipality": "Resistencia", + "scheduled_service": "no", + "local_code": "RES" + }, + { + "id": "35403", + "ident": "AR-0009", + "type": "small_airport", + "name": "Charata Airport", + "latitude_deg": "-27.2164", + "longitude_deg": "-61.2103", + "elevation_ft": "318", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-H", + "municipality": "Charata", + "scheduled_service": "no", + "iata_code": "CNT", + "local_code": "CHA" + }, + { + "id": "35404", + "ident": "AR-0010", + "type": "small_airport", + "name": "General Villegas Airport", + "latitude_deg": "-34.995728", + "longitude_deg": "-62.999725", + "elevation_ft": "383", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "General Villegas", + "scheduled_service": "no", + "iata_code": "VGS", + "local_code": "GAS", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Villegas_Airport" + }, + { + "id": "35405", + "ident": "AR-0011", + "type": "small_airport", + "name": "Los Menucos Airport", + "latitude_deg": "-40.817699", + "longitude_deg": "-68.074699", + "elevation_ft": "2571", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Los Menucos", + "scheduled_service": "no", + "iata_code": "LMD", + "local_code": "MCO" + }, + { + "id": "42799", + "ident": "AR-0012", + "type": "small_airport", + "name": "Aerofumigaciones Don Alejandro Airport", + "latitude_deg": "-33.306157", + "longitude_deg": "-60.656387", + "elevation_ft": "170", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Coronel Bogado", + "scheduled_service": "no", + "local_code": "OGB" + }, + { + "id": "42800", + "ident": "AR-0013", + "type": "small_airport", + "name": "Agro Servicio Yoris Airport", + "latitude_deg": "-26.583055", + "longitude_deg": "-64.529724", + "elevation_ft": "1043", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-T", + "municipality": "Gobernador Garmendia", + "scheduled_service": "no", + "local_code": "GYT", + "home_link": "http://www.asysrl.com.ar/" + }, + { + "id": "42801", + "ident": "AR-0014", + "type": "small_airport", + "name": "Agroaire Airport", + "latitude_deg": "-27.4978", + "longitude_deg": "-61.6586", + "elevation_ft": "377", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-H", + "municipality": "Gancedo", + "scheduled_service": "no", + "local_code": "GAI" + }, + { + "id": "35409", + "ident": "AR-0015", + "type": "closed", + "name": "Saenz Peña Airport", + "latitude_deg": "-26.815799713134766", + "longitude_deg": "-60.448299407958984", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-H", + "municipality": "Presidencia Roque Sáenz Peña", + "scheduled_service": "no", + "iata_code": "SZQ" + }, + { + "id": "35410", + "ident": "AR-0016", + "type": "closed", + "name": "(Old) Antoine De Saint Exupery Airport", + "latitude_deg": "-40.7401008606", + "longitude_deg": "-64.9804992676", + "elevation_ft": "85", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "San Antonio Oeste", + "scheduled_service": "no", + "local_code": "OES" + }, + { + "id": "35412", + "ident": "AR-0017", + "type": "small_airport", + "name": "Valcheta Airport", + "latitude_deg": "-40.7000007629", + "longitude_deg": "-66.1500015259", + "elevation_ft": "629", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Valcheta", + "scheduled_service": "no", + "iata_code": "VCF", + "local_code": "VAL" + }, + { + "id": "35413", + "ident": "AR-0018", + "type": "small_airport", + "name": "Villa Mercedes Airport", + "latitude_deg": "-33.640858", + "longitude_deg": "-65.420074", + "elevation_ft": "1689", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-D", + "municipality": "Villa Mercedes", + "scheduled_service": "no", + "local_code": "CED" + }, + { + "id": "38694", + "ident": "AR-0019", + "type": "small_airport", + "name": "13 De Diciembre Airport", + "latitude_deg": "-45.90417", + "longitude_deg": "-67.559295", + "elevation_ft": "170", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Comodoro Rivadavia", + "scheduled_service": "no", + "local_code": "ICO" + }, + { + "id": "38695", + "ident": "AR-0020", + "type": "heliport", + "name": "Abel Monteverde Heliport", + "latitude_deg": "-32.9208", + "longitude_deg": "-62.4663", + "elevation_ft": "2646", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Monte Buey", + "scheduled_service": "no", + "local_code": "HMB" + }, + { + "id": "38696", + "ident": "AR-0021", + "type": "small_airport", + "name": "Acindar Airport", + "latitude_deg": "-33.2647", + "longitude_deg": "-60.2842", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Villa Constitución", + "scheduled_service": "no", + "local_code": "ION" + }, + { + "id": "38697", + "ident": "AR-0022", + "type": "small_airport", + "name": "Aeroboero Airport", + "latitude_deg": "-30.7286", + "longitude_deg": "-62.0078", + "elevation_ft": "314", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Morteros", + "scheduled_service": "no", + "local_code": "BOE" + }, + { + "id": "38698", + "ident": "AR-0023", + "type": "small_airport", + "name": "Bahia Blanca Aeroclub Airport", + "latitude_deg": "-38.672059", + "longitude_deg": "-62.352846", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Bahia Blanca", + "scheduled_service": "no", + "gps_code": "SA92", + "local_code": "BHB" + }, + { + "id": "38699", + "ident": "AR-0024", + "type": "small_airport", + "name": "Balcarce Aeroclub Airport", + "latitude_deg": "-37.9156", + "longitude_deg": "-58.3442", + "elevation_ft": "393", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Balcarce", + "scheduled_service": "no", + "gps_code": "SA20", + "local_code": "BAL" + }, + { + "id": "38700", + "ident": "AR-0025", + "type": "small_airport", + "name": "Cipoletti Aeroclub Airport", + "latitude_deg": "-38.8931007385", + "longitude_deg": "-67.9886016846", + "elevation_ft": "885", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Cipoletti", + "scheduled_service": "no", + "gps_code": "SAHI", + "local_code": "CIP" + }, + { + "id": "38701", + "ident": "AR-0026", + "type": "small_airport", + "name": "Olavarria Aeroclub Airport", + "latitude_deg": "-36.9644012451", + "longitude_deg": "-60.2757987976", + "elevation_ft": "606", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Olavarria", + "scheduled_service": "no", + "local_code": "OLC" + }, + { + "id": "38702", + "ident": "AR-0027", + "type": "small_airport", + "name": "Rauch Airport", + "latitude_deg": "-36.7717", + "longitude_deg": "-59.0575", + "elevation_ft": "308", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Rauch", + "scheduled_service": "no", + "local_code": "RAU" + }, + { + "id": "38703", + "ident": "AR-0028", + "type": "small_airport", + "name": "Tandil Aeroclub Airport", + "latitude_deg": "-37.265598", + "longitude_deg": "-59.0933", + "elevation_ft": "583", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Tandil", + "scheduled_service": "no", + "gps_code": "SA1B" + }, + { + "id": "38704", + "ident": "AR-0029", + "type": "small_airport", + "name": "Aerotec Airport", + "latitude_deg": "-33.206943512", + "longitude_deg": "-68.492225647", + "elevation_ft": "2181", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "Rivadavia", + "scheduled_service": "no", + "local_code": "RAE" + }, + { + "id": "38705", + "ident": "AR-0030", + "type": "small_airport", + "name": "Alagro Fumigaciones Airport", + "latitude_deg": "-32.8878", + "longitude_deg": "-60.8436", + "elevation_ft": "114", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Funes", + "scheduled_service": "no", + "local_code": "UNE" + }, + { + "id": "38706", + "ident": "AR-0031", + "type": "small_airport", + "name": "San Andrés de Giles Airport", + "latitude_deg": "-34.470347", + "longitude_deg": "-59.42461", + "elevation_ft": "167", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "San Andrés de Giles", + "scheduled_service": "yes", + "local_code": "GIL" + }, + { + "id": "38707", + "ident": "AR-0032", + "type": "small_airport", + "name": "Alejandro Roca Airport", + "latitude_deg": "-33.3488998413", + "longitude_deg": "-63.7299995422", + "elevation_ft": "688", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Alejandro Roca", + "scheduled_service": "no", + "local_code": "ALR" + }, + { + "id": "38708", + "ident": "AR-0033", + "type": "small_airport", + "name": "Alfredo Sanchez Airport", + "latitude_deg": "-34.8011", + "longitude_deg": "-61.865", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "General Pinto", + "scheduled_service": "no", + "local_code": "SEZ" + }, + { + "id": "38709", + "ident": "AR-0034", + "type": "small_airport", + "name": "Algarrobo/La Reforma Airport", + "latitude_deg": "-38.7306", + "longitude_deg": "-63.2869", + "elevation_ft": "219", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Bahia Blanca", + "scheduled_service": "no", + "local_code": "BRF" + }, + { + "id": "38710", + "ident": "AR-0035", + "type": "small_airport", + "name": "Allen Airport", + "latitude_deg": "-38.958099365200006", + "longitude_deg": "-67.8035964966", + "elevation_ft": "951", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Allen", + "scheduled_service": "no", + "local_code": "ALL" + }, + { + "id": "38711", + "ident": "AR-0036", + "type": "small_airport", + "name": "Alta Gracia Airport", + "latitude_deg": "-31.651399612400002", + "longitude_deg": "-64.39389801029999", + "elevation_ft": "1748", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Alta Gracia", + "scheduled_service": "no", + "local_code": "AGR" + }, + { + "id": "38712", + "ident": "AR-0037", + "type": "small_airport", + "name": "Alumine Airport", + "latitude_deg": "-38.9502983093", + "longitude_deg": "-71.0492019653", + "elevation_ft": "3819", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Alumine", + "scheduled_service": "no", + "local_code": "ALU" + }, + { + "id": "38713", + "ident": "AR-0038", + "type": "small_airport", + "name": "Alvear Aeroparque Airport", + "latitude_deg": "-33.0467", + "longitude_deg": "-60.5969", + "elevation_ft": "85", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Alvear", + "scheduled_service": "no", + "local_code": "AVA", + "home_link": "http://www.aeroclubrosario.com/", + "keywords": "Aeroparque Rosario" + }, + { + "id": "38714", + "ident": "AR-0039", + "type": "small_airport", + "name": "Alvear Airport", + "latitude_deg": "-29.064722", + "longitude_deg": "-56.541111", + "elevation_ft": "226", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Corrientes", + "scheduled_service": "no", + "local_code": "AVR" + }, + { + "id": "38715", + "ident": "AR-0040", + "type": "small_airport", + "name": "Ameghino Airport", + "latitude_deg": "-34.845619", + "longitude_deg": "-62.482648", + "elevation_ft": "360", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Ameghino", + "scheduled_service": "no", + "gps_code": "SA49", + "local_code": "AMG" + }, + { + "id": "38716", + "ident": "AR-0041", + "type": "small_airport", + "name": "América Airport", + "latitude_deg": "-35.5017", + "longitude_deg": "-62.99", + "elevation_ft": "347", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Rivadavia", + "scheduled_service": "no", + "gps_code": "SA52", + "local_code": "RVA", + "keywords": "Rivadavia Gliding Club" + }, + { + "id": "38717", + "ident": "AR-0042", + "type": "small_airport", + "name": "Añatuya Airport", + "latitude_deg": "-28.4797000885", + "longitude_deg": "-62.8457984924", + "elevation_ft": "354", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "Añatuya", + "scheduled_service": "no", + "local_code": "UYA" + }, + { + "id": "38718", + "ident": "AR-0043", + "type": "small_airport", + "name": "Andacollo Airport", + "latitude_deg": "-37.20333480834961", + "longitude_deg": "-70.69666290283203", + "elevation_ft": "3524", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Andacollo", + "scheduled_service": "no" + }, + { + "id": "38719", + "ident": "AR-0044", + "type": "small_airport", + "name": "Anibal Brizi Airport", + "latitude_deg": "-31.4042", + "longitude_deg": "-60.8992", + "elevation_ft": "127", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Esperanza", + "scheduled_service": "no", + "local_code": "EBF" + }, + { + "id": "38720", + "ident": "AR-0045", + "type": "heliport", + "name": "Arelauquen Heliport", + "latitude_deg": "-41.1612", + "longitude_deg": "-71.3659", + "elevation_ft": "3099", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "San Carlos De Bariloche", + "scheduled_service": "no", + "local_code": "HBA" + }, + { + "id": "38721", + "ident": "AR-0046", + "type": "heliport", + "name": "Aries Heliport", + "latitude_deg": "-52.6831", + "longitude_deg": "-68.0419", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "local_code": "HES" + }, + { + "id": "38722", + "ident": "AR-0047", + "type": "small_airport", + "name": "Arrecifes Aeroclub Airport", + "latitude_deg": "-34.079724", + "longitude_deg": "-60.046412", + "elevation_ft": "141", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Arrecifes", + "scheduled_service": "no", + "local_code": "CIF" + }, + { + "id": "38723", + "ident": "AR-0048", + "type": "small_airport", + "name": "Arribeños Airport", + "latitude_deg": "-34.2228", + "longitude_deg": "-61.3858", + "elevation_ft": "268", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Arribeños", + "scheduled_service": "no", + "gps_code": "SA55", + "local_code": "ARB" + }, + { + "id": "38724", + "ident": "AR-0049", + "type": "small_airport", + "name": "Arroyito/Arcor Airport", + "latitude_deg": "-31.4221992493", + "longitude_deg": "-63.0041999817", + "elevation_ft": "485", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Arroyito/Arcor", + "scheduled_service": "no", + "local_code": "ARY" + }, + { + "id": "38725", + "ident": "AR-0050", + "type": "heliport", + "name": "Austral Heliport", + "latitude_deg": "-52.8936", + "longitude_deg": "-68.3553", + "elevation_ft": "127", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Rio Cullen", + "scheduled_service": "no", + "local_code": "ULL" + }, + { + "id": "38726", + "ident": "AR-0051", + "type": "heliport", + "name": "Autodromo Ciudad De Bs. As. Heliport", + "latitude_deg": "-34.6939", + "longitude_deg": "-58.46", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-C", + "municipality": "Buenos Aires", + "scheduled_service": "no", + "local_code": "HAU" + }, + { + "id": "38727", + "ident": "AR-0052", + "type": "small_airport", + "name": "Presidente Avellaneda Airport", + "latitude_deg": "-29.1061", + "longitude_deg": "-59.6569", + "elevation_ft": "147", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Avellaneda", + "scheduled_service": "no", + "local_code": "AVL" + }, + { + "id": "38728", + "ident": "AR-0053", + "type": "small_airport", + "name": "Ayacucho Airport", + "latitude_deg": "-37.1639", + "longitude_deg": "-58.4719", + "elevation_ft": "221", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Ayacucho", + "scheduled_service": "no", + "gps_code": "SA58", + "local_code": "AYA" + }, + { + "id": "38729", + "ident": "AR-0054", + "type": "heliport", + "name": "Ayres De Pilar Heliport", + "latitude_deg": "-34.4375", + "longitude_deg": "-58.7983", + "elevation_ft": "45", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Pilar", + "scheduled_service": "no", + "local_code": "HAP" + }, + { + "id": "38730", + "ident": "AR-0055", + "type": "heliport", + "name": "Azcarate Irastorza Heliport", + "latitude_deg": "-35.1994", + "longitude_deg": "-63.6008", + "elevation_ft": "416", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Intendente Alvear", + "scheduled_service": "no" + }, + { + "id": "38731", + "ident": "AR-0056", + "type": "small_airport", + "name": "B&B Servicios Agropecuarios Airport", + "latitude_deg": "-32.1147", + "longitude_deg": "-61.6328", + "elevation_ft": "239", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Cañada Rosquin", + "scheduled_service": "no", + "local_code": "CBB" + }, + { + "id": "38732", + "ident": "AR-0057", + "type": "heliport", + "name": "B. Churruca Heliport", + "latitude_deg": "-34.6407", + "longitude_deg": "-58.4094", + "elevation_ft": "19", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-C", + "municipality": "Buenos Aires", + "scheduled_service": "no", + "local_code": "HBC" + }, + { + "id": "38733", + "ident": "AR-0058", + "type": "small_airport", + "name": "Baradero Airport", + "latitude_deg": "-33.821693", + "longitude_deg": "-59.492806", + "elevation_ft": "95", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Baradero", + "scheduled_service": "no", + "gps_code": "SA2R", + "local_code": "BDO" + }, + { + "id": "38734", + "ident": "AR-0059", + "type": "small_airport", + "name": "Barrancas Airport", + "latitude_deg": "-36.7756004333", + "longitude_deg": "-69.8593978882", + "elevation_ft": "3481", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "Barrancas", + "scheduled_service": "no" + }, + { + "id": "38735", + "ident": "AR-0060", + "type": "small_airport", + "name": "Basavilbaso Airport", + "latitude_deg": "-32.3611", + "longitude_deg": "-58.8808", + "elevation_ft": "196", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Basavilbaso", + "scheduled_service": "no", + "local_code": "BAS" + }, + { + "id": "38736", + "ident": "AR-0061", + "type": "small_airport", + "name": "Batan Airport", + "latitude_deg": "-38.0117", + "longitude_deg": "-57.6775", + "elevation_ft": "203", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Mar Del Plata", + "scheduled_service": "no", + "gps_code": "SA4H", + "local_code": "MDB" + }, + { + "id": "38737", + "ident": "AR-0062", + "type": "small_airport", + "name": "Escobar Aeroclub", + "latitude_deg": "-34.2986", + "longitude_deg": "-58.7989", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Belén de Escobar", + "scheduled_service": "no", + "local_code": "LEN" + }, + { + "id": "38738", + "ident": "AR-0063", + "type": "small_airport", + "name": "Bellamar Airport", + "latitude_deg": "-38.3858", + "longitude_deg": "-58.1336", + "elevation_ft": "42", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Miramar", + "scheduled_service": "no", + "local_code": "MBL" + }, + { + "id": "38739", + "ident": "AR-0064", + "type": "closed", + "name": "Benavidez Airport", + "latitude_deg": "-34.388054", + "longitude_deg": "-58.663887", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Benavidez", + "scheduled_service": "no", + "local_code": "DEZ" + }, + { + "id": "38740", + "ident": "AR-0065", + "type": "small_airport", + "name": "Blondi Airport", + "latitude_deg": "-34.61333465576172", + "longitude_deg": "-61.02305603027344", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Junin", + "scheduled_service": "no" + }, + { + "id": "38741", + "ident": "AR-0066", + "type": "small_airport", + "name": "Gran Ancona Airport", + "latitude_deg": "-33.4383", + "longitude_deg": "-61.3017", + "elevation_ft": "318", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Bombal", + "scheduled_service": "no", + "local_code": "BOM" + }, + { + "id": "38742", + "ident": "AR-0067", + "type": "small_airport", + "name": "Bonetti Airport", + "latitude_deg": "-27.604166030900004", + "longitude_deg": "-55.863887786899994", + "elevation_ft": "462", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-N", + "municipality": "Posadas", + "scheduled_service": "no", + "local_code": "PBO" + }, + { + "id": "38743", + "ident": "AR-0068", + "type": "small_airport", + "name": "Pablo Sierra Aeroaplicaciones Airport", + "latitude_deg": "-30.9294", + "longitude_deg": "-62.0506", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Brinkman", + "scheduled_service": "no", + "local_code": "BPS" + }, + { + "id": "38744", + "ident": "AR-0069", + "type": "heliport", + "name": "Cabaña San Isidro Labrador Heliport", + "latitude_deg": "-34.3783", + "longitude_deg": "-58.7883", + "elevation_ft": "39", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Belén De Escobar", + "scheduled_service": "no", + "local_code": "HCI" + }, + { + "id": "38745", + "ident": "AR-0070", + "type": "closed", + "name": "Cabañas Airport", + "latitude_deg": "-32.978152", + "longitude_deg": "-58.522496", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Gualeguaychu", + "scheduled_service": "no", + "local_code": "GLM" + }, + { + "id": "38746", + "ident": "AR-0071", + "type": "small_airport", + "name": "Cabildo Airport", + "latitude_deg": "-38.4986000061", + "longitude_deg": "-61.8843994141", + "elevation_ft": "521", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Cabildo", + "scheduled_service": "no", + "local_code": "CBD" + }, + { + "id": "44745", + "ident": "AR-0072", + "type": "heliport", + "name": "Ituzaingo / Transener S.A. Heliport", + "latitude_deg": "-27.5601", + "longitude_deg": "-56.6568", + "elevation_ft": "233", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Ituzaingo", + "scheduled_service": "no", + "local_code": "HIT" + }, + { + "id": "38748", + "ident": "AR-0073", + "type": "heliport", + "name": "Cabo Vírgenes Heliport", + "latitude_deg": "-52.3278", + "longitude_deg": "-68.4092", + "elevation_ft": "180", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Cabo Vírgenes", + "scheduled_service": "no", + "local_code": "HCV" + }, + { + "id": "38749", + "ident": "AR-0074", + "type": "small_airport", + "name": "Caleufu Airport", + "latitude_deg": "-40.39390182495117", + "longitude_deg": "-70.96330261230469", + "elevation_ft": "2323", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Caleufu", + "scheduled_service": "no" + }, + { + "id": "38750", + "ident": "AR-0075", + "type": "heliport", + "name": "Campo De Vuelo Heliport", + "latitude_deg": "-31.3689", + "longitude_deg": "-64.2636", + "elevation_ft": "1515", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Cordoba", + "scheduled_service": "no", + "local_code": "HMO" + }, + { + "id": "38751", + "ident": "AR-0076", + "type": "small_airport", + "name": "Canals Airport", + "latitude_deg": "-33.5622", + "longitude_deg": "-62.8692", + "elevation_ft": "387", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Canals", + "scheduled_service": "no", + "local_code": "CNS" + }, + { + "id": "38752", + "ident": "AR-0077", + "type": "small_airport", + "name": "Cañada de Gomez Airport", + "latitude_deg": "-32.808687", + "longitude_deg": "-61.36574", + "elevation_ft": "268", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Cañada de Gomez", + "scheduled_service": "no", + "local_code": "GOM" + }, + { + "id": "38753", + "ident": "AR-0078", + "type": "small_airport", + "name": "Cañada Rosquin Airport", + "latitude_deg": "-32.0994", + "longitude_deg": "-61.5839", + "elevation_ft": "219", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Cañada Rosquin", + "scheduled_service": "no", + "local_code": "SQI" + }, + { + "id": "38754", + "ident": "AR-0079", + "type": "small_airport", + "name": "Cañuelas Airport", + "latitude_deg": "-35.1119", + "longitude_deg": "-58.7261", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Cañuelas", + "scheduled_service": "no", + "local_code": "CNA" + }, + { + "id": "38755", + "ident": "AR-0080", + "type": "small_airport", + "name": "Aeroclub Capitan Sarmiento", + "latitude_deg": "-34.1639", + "longitude_deg": "-59.7311", + "elevation_ft": "160", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Capitan Sarmiento", + "scheduled_service": "no", + "local_code": "CTS", + "keywords": "CTS" + }, + { + "id": "38756", + "ident": "AR-0081", + "type": "small_airport", + "name": "Vedia Aeroclub", + "latitude_deg": "-34.4817", + "longitude_deg": "-61.4903", + "elevation_ft": "291", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Vedia", + "scheduled_service": "no", + "local_code": "VDA" + }, + { + "id": "38757", + "ident": "AR-0082", + "type": "small_airport", + "name": "Carhue Airport", + "latitude_deg": "-37.1942", + "longitude_deg": "-62.7814", + "elevation_ft": "360", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Carhue", + "scheduled_service": "no", + "local_code": "HUE" + }, + { + "id": "38758", + "ident": "AR-0083", + "type": "small_airport", + "name": "Carlos Casares Airport", + "latitude_deg": "-35.6328", + "longitude_deg": "-61.3842", + "elevation_ft": "275", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Carlos Casares", + "scheduled_service": "no", + "local_code": "CSR" + }, + { + "id": "38759", + "ident": "AR-0084", + "type": "small_airport", + "name": "Las Ensenadas Airport", + "latitude_deg": "-31.4552993774", + "longitude_deg": "-64.5263977051", + "elevation_ft": "2394", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Carlos Paz", + "scheduled_service": "no", + "local_code": "CPZ" + }, + { + "id": "38760", + "ident": "AR-0085", + "type": "small_airport", + "name": "Carlos Tejedor Airport", + "latitude_deg": "-35.4256", + "longitude_deg": "-62.4697", + "elevation_ft": "308", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Carlos Tejedor", + "scheduled_service": "no", + "local_code": "TEJ" + }, + { + "id": "38761", + "ident": "AR-0086", + "type": "small_airport", + "name": "Carmen de Areco Airport", + "latitude_deg": "-34.4175", + "longitude_deg": "-59.8719", + "elevation_ft": "160", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Carmen de Areco", + "scheduled_service": "no", + "local_code": "CNO" + }, + { + "id": "38762", + "ident": "AR-0087", + "type": "heliport", + "name": "Casa De Gobierno Heliport", + "latitude_deg": "-31.4306", + "longitude_deg": "-64.1842", + "elevation_ft": "1420", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Cordoba", + "scheduled_service": "no", + "local_code": "HGC" + }, + { + "id": "38763", + "ident": "AR-0088", + "type": "small_airport", + "name": "Casilda Airport", + "latitude_deg": "-33.0617", + "longitude_deg": "-61.21", + "elevation_ft": "252", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Casilda", + "scheduled_service": "no", + "local_code": "ILD" + }, + { + "id": "38764", + "ident": "AR-0089", + "type": "small_airport", + "name": "Castelli Airport", + "latitude_deg": "-36.11000061035156", + "longitude_deg": "-57.86194610595703", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Castelli", + "scheduled_service": "no" + }, + { + "id": "38765", + "ident": "AR-0090", + "type": "small_airport", + "name": "Castelli Airport", + "latitude_deg": "-25.93083381652832", + "longitude_deg": "-60.628055572509766", + "elevation_ft": "364", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-H", + "municipality": "Chaco", + "scheduled_service": "no" + }, + { + "id": "38766", + "ident": "AR-0091", + "type": "heliport", + "name": "Centinela Heliport", + "latitude_deg": "-34.5822", + "longitude_deg": "-58.3744", + "elevation_ft": "42", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-C", + "municipality": "Buenos Aires", + "scheduled_service": "no" + }, + { + "id": "38767", + "ident": "AR-0092", + "type": "heliport", + "name": "Central Nuclear Heliport", + "latitude_deg": "-32.2294", + "longitude_deg": "-64.44", + "elevation_ft": "1738", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Embalse Rio Tercero", + "scheduled_service": "no", + "local_code": "HCN" + }, + { + "id": "38768", + "ident": "AR-0093", + "type": "heliport", + "name": "Centro Cívico Grand Bourg Heliport", + "latitude_deg": "-24.7806", + "longitude_deg": "-65.4514", + "elevation_ft": "4132", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Salta", + "scheduled_service": "no", + "local_code": "HGB" + }, + { + "id": "38769", + "ident": "AR-0094", + "type": "small_airport", + "name": "Cereales Anahi Ruca Airport", + "latitude_deg": "-35.6736106873", + "longitude_deg": "-63.7180557251", + "elevation_ft": "455", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "General Pico", + "scheduled_service": "no", + "local_code": "GPF" + }, + { + "id": "38770", + "ident": "AR-0095", + "type": "heliport", + "name": "Cerro Chapelco Heliport", + "latitude_deg": "-40.1981", + "longitude_deg": "-71.3211", + "elevation_ft": "4281", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "San Martín De Los Andes", + "scheduled_service": "no" + }, + { + "id": "38771", + "ident": "AR-0096", + "type": "small_airport", + "name": "Chacabuco Airport", + "latitude_deg": "-34.6069", + "longitude_deg": "-60.4097", + "elevation_ft": "226", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Chacabuco", + "scheduled_service": "no", + "local_code": "UCO" + }, + { + "id": "38772", + "ident": "AR-0097", + "type": "small_airport", + "name": "Chacharramendi Airport", + "latitude_deg": "-37.3405990601", + "longitude_deg": "-65.646697998", + "elevation_ft": "951", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Chacharramendi", + "scheduled_service": "no", + "local_code": "CHR" + }, + { + "id": "38773", + "ident": "AR-0098", + "type": "small_airport", + "name": "Chajari Airport", + "latitude_deg": "-30.7542", + "longitude_deg": "-58", + "elevation_ft": "173", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Chajari", + "scheduled_service": "no", + "local_code": "CHJ" + }, + { + "id": "38774", + "ident": "AR-0099", + "type": "small_airport", + "name": "Chañar Ladeado Airport", + "latitude_deg": "-33.3333", + "longitude_deg": "-62.0333", + "elevation_ft": "367", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Chañar Ladeado", + "scheduled_service": "no", + "local_code": "CLD" + }, + { + "id": "38775", + "ident": "AR-0100", + "type": "small_airport", + "name": "Chascomús Airport", + "latitude_deg": "-35.542621", + "longitude_deg": "-58.052137", + "elevation_ft": "32", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Chascomús", + "scheduled_service": "no", + "local_code": "MUS" + }, + { + "id": "38776", + "ident": "AR-0101", + "type": "small_airport", + "name": "Chivilcoy Airport", + "latitude_deg": "-34.9639", + "longitude_deg": "-60.0333", + "elevation_ft": "173", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Chivilcoy", + "scheduled_service": "no", + "gps_code": "SA4B", + "local_code": "CHY" + }, + { + "id": "38777", + "ident": "AR-0102", + "type": "small_airport", + "name": "Cholila Airport", + "latitude_deg": "-42.484722", + "longitude_deg": "-71.460556", + "elevation_ft": "1883", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Cholila", + "scheduled_service": "no", + "local_code": "CHO" + }, + { + "id": "38778", + "ident": "AR-0103", + "type": "small_airport", + "name": "Cinco Saltos Airport", + "latitude_deg": "-38.801666", + "longitude_deg": "-68.037224", + "elevation_ft": "1171", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Cinco Saltos", + "scheduled_service": "no" + }, + { + "id": "38779", + "ident": "AR-0104", + "type": "heliport", + "name": "Citefa Heliport", + "latitude_deg": "-34.5575", + "longitude_deg": "-58.5056", + "elevation_ft": "55", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Villa Martelli", + "scheduled_service": "no", + "local_code": "HVM" + }, + { + "id": "38780", + "ident": "AR-0105", + "type": "heliport", + "name": "Ciudad Universitaria Heliport", + "latitude_deg": "-31.4406", + "longitude_deg": "-64.1894", + "elevation_ft": "1443", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Cordoba", + "scheduled_service": "no", + "local_code": "HCU" + }, + { + "id": "38781", + "ident": "AR-0106", + "type": "heliport", + "name": "Club Nautico San Isidro Heliport", + "latitude_deg": "-34.4614", + "longitude_deg": "-58.5003", + "elevation_ft": "6", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "San Isidro", + "scheduled_service": "no" + }, + { + "id": "38782", + "ident": "AR-0107", + "type": "small_airport", + "name": "Colón Airport", + "latitude_deg": "-33.9231", + "longitude_deg": "-61.0461", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Colón", + "scheduled_service": "no", + "local_code": "CON", + "keywords": "Aeroclub Colón" + }, + { + "id": "38783", + "ident": "AR-0108", + "type": "small_airport", + "name": "Colon Airport", + "latitude_deg": "-32.2614", + "longitude_deg": "-58.1556", + "elevation_ft": "65", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Colon", + "scheduled_service": "no", + "local_code": "CLN" + }, + { + "id": "38784", + "ident": "AR-0109", + "type": "heliport", + "name": "Complejo Llao Llao Heliport", + "latitude_deg": "-41.0544", + "longitude_deg": "-71.5339", + "elevation_ft": "2542", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "San Carlos De Bariloche", + "scheduled_service": "no", + "local_code": "HLL" + }, + { + "id": "38785", + "ident": "AR-0110", + "type": "small_airport", + "name": "Concepcion Del Uruguay Airport", + "latitude_deg": "-32.4519", + "longitude_deg": "-58.3058", + "elevation_ft": "121", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Concepcion Del Uruguay", + "scheduled_service": "no", + "local_code": "CDU" + }, + { + "id": "38786", + "ident": "AR-0111", + "type": "small_airport", + "name": "Concordia Aeroclub Airport", + "latitude_deg": "-31.3042", + "longitude_deg": "-58.0153", + "elevation_ft": "131", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Concordia", + "scheduled_service": "no", + "local_code": "CRD" + }, + { + "id": "38787", + "ident": "AR-0112", + "type": "small_airport", + "name": "Confluencia Airport", + "latitude_deg": "-36.771400451699996", + "longitude_deg": "-69.5385971069", + "elevation_ft": "4964", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "Confluencia", + "scheduled_service": "no" + }, + { + "id": "38788", + "ident": "AR-0113", + "type": "small_airport", + "name": "Coronel Dorrego Airport", + "latitude_deg": "-38.7411", + "longitude_deg": "-61.2561", + "elevation_ft": "393", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Coronel Dorrego", + "scheduled_service": "no", + "local_code": "DOR" + }, + { + "id": "38789", + "ident": "AR-0114", + "type": "small_airport", + "name": "Coronel Pringles Airport", + "latitude_deg": "-38.0066680908", + "longitude_deg": "-61.331943512", + "elevation_ft": "810", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Coronel Pringles", + "scheduled_service": "no", + "gps_code": "SABP", + "local_code": "PRI" + }, + { + "id": "38790", + "ident": "AR-0115", + "type": "small_airport", + "name": "Coronel Vidal Airport", + "latitude_deg": "-37.4689", + "longitude_deg": "-57.7669", + "elevation_ft": "85", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Coronel Vidal", + "scheduled_service": "no", + "local_code": "VDL" + }, + { + "id": "38791", + "ident": "AR-0116", + "type": "small_airport", + "name": "Corral De Bustos Airport", + "latitude_deg": "-33.2811", + "longitude_deg": "-62.1514", + "elevation_ft": "393", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Corral de Bustos", + "scheduled_service": "no", + "local_code": "BTS" + }, + { + "id": "38792", + "ident": "AR-0117", + "type": "small_airport", + "name": "Santa María Airport", + "latitude_deg": "-31.286100387599998", + "longitude_deg": "-64.4552993774", + "elevation_ft": "2296", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Cosquin", + "scheduled_service": "no", + "local_code": "CQN" + }, + { + "id": "38793", + "ident": "AR-0118", + "type": "small_airport", + "name": "Cruz Alta Airport", + "latitude_deg": "-33.0078", + "longitude_deg": "-61.8369", + "elevation_ft": "318", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Cruz Alta", + "scheduled_service": "no", + "local_code": "ALT" + }, + { + "id": "38794", + "ident": "AR-0119", + "type": "small_airport", + "name": "Curuzu Cuatia Aeroclub Airport", + "latitude_deg": "-29.7789", + "longitude_deg": "-58.0958", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Curuzu Cuatia", + "scheduled_service": "no", + "local_code": "CZU" + }, + { + "id": "38795", + "ident": "AR-0120", + "type": "heliport", + "name": "D.P.A.O. Heliport", + "latitude_deg": "-34.9597", + "longitude_deg": "-57.8928", + "elevation_ft": "62", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "La Plata", + "scheduled_service": "no", + "local_code": "HLP" + }, + { + "id": "38796", + "ident": "AR-0121", + "type": "small_airport", + "name": "Fumigaciones Rodriguez Airport", + "latitude_deg": "-36.590491", + "longitude_deg": "-61.774888", + "elevation_ft": "371", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Daireaux", + "scheduled_service": "no", + "gps_code": "SAE3", + "local_code": "DFR" + }, + { + "id": "38797", + "ident": "AR-0122", + "type": "small_airport", + "name": "Darregueira Airport", + "latitude_deg": "-37.7127990723", + "longitude_deg": "-63.161899566699994", + "elevation_ft": "649", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Darregueira", + "scheduled_service": "no", + "local_code": "DAR" + }, + { + "id": "38798", + "ident": "AR-0123", + "type": "heliport", + "name": "Darsena Sur Heliport", + "latitude_deg": "-34.6278", + "longitude_deg": "-58.3515", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-C", + "municipality": "Buenos Aires", + "scheduled_service": "no", + "local_code": "HDA" + }, + { + "id": "38799", + "ident": "AR-0124", + "type": "small_airport", + "name": "Dean Funes Airport", + "latitude_deg": "-30.379199981699998", + "longitude_deg": "-64.379699707", + "elevation_ft": "2259", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Dean Funes", + "scheduled_service": "no", + "local_code": "FUN" + }, + { + "id": "38800", + "ident": "AR-0125", + "type": "small_airport", + "name": "Diamante Airport", + "latitude_deg": "-32.0161", + "longitude_deg": "-60.5825", + "elevation_ft": "246", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Diamante", + "scheduled_service": "no", + "local_code": "DTE" + }, + { + "id": "38801", + "ident": "AR-0126", + "type": "heliport", + "name": "Dines ( Dr. E. Escudero) Heliport", + "latitude_deg": "-34.5726", + "longitude_deg": "-58.4005", + "elevation_ft": "19", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-C", + "municipality": "Buenos Aires", + "scheduled_service": "no", + "local_code": "HDI" + }, + { + "id": "42802", + "ident": "AR-0127", + "type": "small_airport", + "name": "Agrocelta Servicios Aereos Airport", + "latitude_deg": "-33.8867", + "longitude_deg": "-60.8628", + "elevation_ft": "269", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Mariano H. Alfonzo", + "scheduled_service": "no", + "local_code": "AGC" + }, + { + "id": "38803", + "ident": "AR-0128", + "type": "small_airport", + "name": "Saavedra Airport", + "latitude_deg": "-37.750242", + "longitude_deg": "-62.33425", + "elevation_ft": "1040", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Saavedra", + "scheduled_service": "no", + "local_code": "DRA" + }, + { + "id": "38804", + "ident": "AR-0129", + "type": "heliport", + "name": "Ecodyma S.C.A. Heliport", + "latitude_deg": "-34.9408", + "longitude_deg": "-57.9919", + "elevation_ft": "45", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "La Plata", + "scheduled_service": "no", + "local_code": "HEC" + }, + { + "id": "38805", + "ident": "AR-0130", + "type": "small_airport", + "name": "Eduardo Castex Airport", + "latitude_deg": "-35.8805541992", + "longitude_deg": "-64.2738876343", + "elevation_ft": "600", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Eduardo Castex", + "scheduled_service": "no", + "local_code": "ECX" + }, + { + "id": "38806", + "ident": "AR-0131", + "type": "small_airport", + "name": "El Alamito Airport", + "latitude_deg": "-37.27361297607422", + "longitude_deg": "-70.38972473144531", + "elevation_ft": "3576", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "El Alamito", + "scheduled_service": "no" + }, + { + "id": "38807", + "ident": "AR-0132", + "type": "small_airport", + "name": "Establecimiento El Araza Airport", + "latitude_deg": "-36.7756", + "longitude_deg": "-57.6414", + "elevation_ft": "305", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Maipu", + "scheduled_service": "no", + "local_code": "HZA" + }, + { + "id": "38808", + "ident": "AR-0133", + "type": "heliport", + "name": "El Capricho Heliport", + "latitude_deg": "-34.2325", + "longitude_deg": "-59.3158", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Chenaut", + "scheduled_service": "no", + "local_code": "HCO" + }, + { + "id": "38809", + "ident": "AR-0134", + "type": "small_airport", + "name": "El Corcovado Airport", + "latitude_deg": "-43.533599853515625", + "longitude_deg": "-71.48470306396484", + "elevation_ft": "1968", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "El Corcovado - Esquel", + "scheduled_service": "no" + }, + { + "id": "38810", + "ident": "AR-0135", + "type": "small_airport", + "name": "El Gaucho Airport", + "latitude_deg": "-32.6294", + "longitude_deg": "-61.5444", + "elevation_ft": "344", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Las Parejas", + "scheduled_service": "no", + "local_code": "EGO" + }, + { + "id": "38811", + "ident": "AR-0136", + "type": "balloonport", + "name": "El Manantial Airport", + "latitude_deg": "-35.1943", + "longitude_deg": "-58.3594", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Coronel Brandsen", + "scheduled_service": "no", + "local_code": "EML" + }, + { + "id": "38812", + "ident": "AR-0137", + "type": "small_airport", + "name": "El Pajaro Airport", + "latitude_deg": "-34.823537", + "longitude_deg": "-58.316307", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Florencio Varela", + "scheduled_service": "no", + "local_code": "FVA", + "home_link": "https://www.facebook.com/pages/Aerodromo-El-Pajaro/487105338046291" + }, + { + "id": "38813", + "ident": "AR-0138", + "type": "small_airport", + "name": "El Pampero Airport", + "latitude_deg": "-36.5928001404", + "longitude_deg": "-64.1866989136", + "elevation_ft": "583", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Santa Rosa", + "scheduled_service": "no", + "local_code": "ELP" + }, + { + "id": "38814", + "ident": "AR-0139", + "type": "small_airport", + "name": "El Trebol Airport", + "latitude_deg": "-32.2153", + "longitude_deg": "-61.7161", + "elevation_ft": "301", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "El Trebol", + "scheduled_service": "no", + "gps_code": "SAFT", + "local_code": "ETB" + }, + { + "id": "38815", + "ident": "AR-0140", + "type": "closed", + "name": "Elizalde Airport", + "latitude_deg": "-34.975122", + "longitude_deg": "-57.963396", + "elevation_ft": "22", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "La Plata", + "scheduled_service": "no", + "local_code": "ELZ" + }, + { + "id": "38816", + "ident": "AR-0141", + "type": "small_airport", + "name": "Esperanza Airport", + "latitude_deg": "-31.4736", + "longitude_deg": "-60.8447", + "elevation_ft": "124", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Esperanza", + "scheduled_service": "no", + "local_code": "EPZ" + }, + { + "id": "38817", + "ident": "AR-0142", + "type": "small_airport", + "name": "Esquina Airport", + "latitude_deg": "-30.0489", + "longitude_deg": "-59.5353", + "elevation_ft": "127", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Esquina", + "scheduled_service": "no", + "local_code": "ESN" + }, + { + "id": "38818", + "ident": "AR-0143", + "type": "small_airport", + "name": "Estancia Don Roberto Airport", + "latitude_deg": "-34.0013999939", + "longitude_deg": "-65.366897583", + "elevation_ft": "1430", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-D", + "municipality": "Villa Mercedes", + "scheduled_service": "no", + "local_code": "ERT" + }, + { + "id": "38819", + "ident": "AR-0144", + "type": "heliport", + "name": "Estancia Haychol Heliport", + "latitude_deg": "-38.6481", + "longitude_deg": "-70.6775", + "elevation_ft": "3447", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Las Lajas", + "scheduled_service": "no", + "local_code": "HHL" + }, + { + "id": "38820", + "ident": "AR-0145", + "type": "heliport", + "name": "Estancia La Candelaria Heliport", + "latitude_deg": "-40.0442", + "longitude_deg": "-71.3664", + "elevation_ft": "2997", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "San Martin De Los Andes", + "scheduled_service": "no", + "local_code": "HCD" + }, + { + "id": "38821", + "ident": "AR-0146", + "type": "heliport", + "name": "Estancia La Chacota Heliport", + "latitude_deg": "-35.9133", + "longitude_deg": "-62.6417", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Trenque Lauquen", + "scheduled_service": "no", + "local_code": "HTL" + }, + { + "id": "38822", + "ident": "AR-0147", + "type": "small_airport", + "name": "Estancia La Choza Airport", + "latitude_deg": "-30.5389", + "longitude_deg": "-58.2928", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Chajari", + "scheduled_service": "no", + "local_code": "CHC" + }, + { + "id": "38823", + "ident": "AR-0148", + "type": "small_airport", + "name": "Estancia La Laurita Airport", + "latitude_deg": "-44.7761116027832", + "longitude_deg": "-70.1963882446289", + "elevation_ft": "1834", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Alto Rio Senguerr", + "scheduled_service": "no" + }, + { + "id": "38824", + "ident": "AR-0149", + "type": "small_airport", + "name": "Estancia Llamuco Airport", + "latitude_deg": "-38.79944610595703", + "longitude_deg": "-70.43472290039062", + "elevation_ft": "3924", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Llamuco", + "scheduled_service": "no" + }, + { + "id": "38825", + "ident": "AR-0150", + "type": "small_airport", + "name": "Estancia Los Cardos Airport", + "latitude_deg": "-37.7356", + "longitude_deg": "-58.0342", + "elevation_ft": "393", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Balcarce", + "scheduled_service": "no", + "gps_code": "SA2Q", + "local_code": "BLC" + }, + { + "id": "38826", + "ident": "AR-0151", + "type": "small_airport", + "name": "Estancia Nueva Lubecka Airport", + "latitude_deg": "-44.44194412231445", + "longitude_deg": "-70.44222259521484", + "elevation_ft": "2021", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Jose de San Martin", + "scheduled_service": "no" + }, + { + "id": "38827", + "ident": "AR-0152", + "type": "heliport", + "name": "Estancia Palitue Heliport", + "latitude_deg": "-39.8528", + "longitude_deg": "-71.0464", + "elevation_ft": "2817", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Junin De Los Andes", + "scheduled_service": "no", + "local_code": "HJN" + }, + { + "id": "38828", + "ident": "AR-0153", + "type": "small_airport", + "name": "Estancia San Juan Airport", + "latitude_deg": "-29.6028", + "longitude_deg": "-58.0281", + "elevation_ft": "268", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Curuzu Cuatia", + "scheduled_service": "no", + "local_code": "HSJ" + }, + { + "id": "38829", + "ident": "AR-0154", + "type": "small_airport", + "name": "Estancia San Ramón Airport", + "latitude_deg": "-50.303495", + "longitude_deg": "-69.926057", + "elevation_ft": "1226", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "local_code": "HSR" + }, + { + "id": "38830", + "ident": "AR-0155", + "type": "small_airport", + "name": "Estancia Santa Ana Airport", + "latitude_deg": "-51.680841", + "longitude_deg": "-71.9652", + "elevation_ft": "665", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "El Turbio", + "scheduled_service": "no", + "local_code": "HTS" + }, + { + "id": "38831", + "ident": "AR-0156", + "type": "heliport", + "name": "Estancia Santa Isabel Heliport", + "latitude_deg": "-39.8847", + "longitude_deg": "-70.5136", + "elevation_ft": "3116", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Catan Lil", + "scheduled_service": "no", + "local_code": "HCL" + }, + { + "id": "38832", + "ident": "AR-0157", + "type": "small_airport", + "name": "Estindher Airport", + "latitude_deg": "-33.0931015015", + "longitude_deg": "-64.42919921880001", + "elevation_ft": "1531", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Rio Cuarto", + "scheduled_service": "no", + "local_code": "RIE" + }, + { + "id": "38833", + "ident": "AR-0158", + "type": "small_airport", + "name": "Ezpeleta Airport", + "latitude_deg": "-34.7464", + "longitude_deg": "-58.2033", + "elevation_ft": "9", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Ezpeleta", + "scheduled_service": "no", + "gps_code": "SA15", + "local_code": "EZP", + "keywords": "Aeroclub Rio de la Plata" + }, + { + "id": "38834", + "ident": "AR-0159", + "type": "heliport", + "name": "Finca Las Costas Heliport", + "latitude_deg": "-24.7703", + "longitude_deg": "-65.4956", + "elevation_ft": "4300", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Salta", + "scheduled_service": "no", + "local_code": "HFC" + }, + { + "id": "38835", + "ident": "AR-0160", + "type": "small_airport", + "name": "Firmat Aeroclub Airport", + "latitude_deg": "-33.4289", + "longitude_deg": "-61.5108", + "elevation_ft": "344", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Firmat", + "scheduled_service": "no", + "local_code": "FAE" + }, + { + "id": "38836", + "ident": "AR-0161", + "type": "small_airport", + "name": "Formosa Aeroclub Airport", + "latitude_deg": "-26.3014", + "longitude_deg": "-58.2983", + "elevation_ft": "229", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-P", + "municipality": "Formosa", + "scheduled_service": "no", + "local_code": "FOR" + }, + { + "id": "38837", + "ident": "AR-0162", + "type": "small_airport", + "name": "Fortín De Gainza Airport", + "latitude_deg": "-34.5494", + "longitude_deg": "-63.1225", + "elevation_ft": "426", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Santa Regina", + "scheduled_service": "no", + "local_code": "SRE" + }, + { + "id": "38838", + "ident": "AR-0163", + "type": "heliport", + "name": "Fuerza Aérea(Edificio Cóndor) Heliport", + "latitude_deg": "-34.5858", + "longitude_deg": "-58.3681", + "elevation_ft": "19", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-C", + "municipality": "Buenos Aires", + "scheduled_service": "no", + "local_code": "HFA" + }, + { + "id": "38839", + "ident": "AR-0164", + "type": "small_airport", + "name": "Fumigaciones Stadler Airport", + "latitude_deg": "-32.5786", + "longitude_deg": "-60.9119", + "elevation_ft": "121", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Serodino", + "scheduled_service": "no", + "local_code": "SER" + }, + { + "id": "38840", + "ident": "AR-0165", + "type": "small_airport", + "name": "Galvez Airport", + "latitude_deg": "-32.0322", + "longitude_deg": "-61.1758", + "elevation_ft": "173", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Galvez", + "scheduled_service": "no", + "local_code": "VEZ" + }, + { + "id": "38841", + "ident": "AR-0166", + "type": "small_airport", + "name": "General Alvear Aeroclub Airport", + "latitude_deg": "-34.9730987549", + "longitude_deg": "-67.7236022949", + "elevation_ft": "1528", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "General Alvear", + "scheduled_service": "no", + "local_code": "GVA" + }, + { + "id": "38842", + "ident": "AR-0167", + "type": "small_airport", + "name": "General Belgrano Airport", + "latitude_deg": "-35.7519", + "longitude_deg": "-58.4633", + "elevation_ft": "39", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "General Belgrano", + "scheduled_service": "no", + "local_code": "GBE" + }, + { + "id": "38843", + "ident": "AR-0168", + "type": "small_airport", + "name": "General Deheza Airport", + "latitude_deg": "-32.745300293", + "longitude_deg": "-63.7957992554", + "elevation_ft": "898", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "General Deheza", + "scheduled_service": "no", + "local_code": "GDH" + }, + { + "id": "38844", + "ident": "AR-0169", + "type": "small_airport", + "name": "General La Madrid Airport", + "latitude_deg": "-37.226261", + "longitude_deg": "-61.279101", + "elevation_ft": "560", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "General La Madrid", + "scheduled_service": "no", + "gps_code": "SA6B", + "local_code": "LAM" + }, + { + "id": "38845", + "ident": "AR-0170", + "type": "small_airport", + "name": "General Las Heras Aeroclub", + "latitude_deg": "-34.9206", + "longitude_deg": "-58.9164", + "elevation_ft": "114", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "General Las Heras", + "scheduled_service": "no", + "local_code": "GLH" + }, + { + "id": "38846", + "ident": "AR-0171", + "type": "small_airport", + "name": "General Levalle Airport", + "latitude_deg": "-34.0038871765", + "longitude_deg": "-63.9308319092", + "elevation_ft": "614", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "General Levalle", + "scheduled_service": "no", + "local_code": "LEV" + }, + { + "id": "38847", + "ident": "AR-0172", + "type": "small_airport", + "name": "General Madariaga Airport", + "latitude_deg": "-37.0392", + "longitude_deg": "-57.1372", + "elevation_ft": "22", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "General Madariaga", + "scheduled_service": "no", + "local_code": "MAD" + }, + { + "id": "38848", + "ident": "AR-0173", + "type": "small_airport", + "name": "General Pìnedo Airport", + "latitude_deg": "-27.3394", + "longitude_deg": "-61.2744", + "elevation_ft": "298", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-H", + "municipality": "General Pìnedo", + "scheduled_service": "no", + "local_code": "GPO" + }, + { + "id": "38849", + "ident": "AR-0174", + "type": "small_airport", + "name": "General Pinto Airport", + "latitude_deg": "-34.7861", + "longitude_deg": "-61.9142", + "elevation_ft": "318", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "General Pinto", + "scheduled_service": "no", + "local_code": "PNT" + }, + { + "id": "38850", + "ident": "AR-0175", + "type": "closed", + "name": "General Rodriguez Airport", + "latitude_deg": "-34.497234", + "longitude_deg": "-59.037457", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "General Rodriguez", + "scheduled_service": "no", + "local_code": "GRZ" + }, + { + "id": "38851", + "ident": "AR-0176", + "type": "small_airport", + "name": "Los Toldos Airport", + "latitude_deg": "-34.97726", + "longitude_deg": "-61.020942", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "General Viamonte", + "scheduled_service": "no", + "local_code": "GNV" + }, + { + "id": "38852", + "ident": "AR-0177", + "type": "small_airport", + "name": "Gobernador Crespo Aeroclub Airport", + "latitude_deg": "-30.3878", + "longitude_deg": "-60.3656", + "elevation_ft": "170", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Gobernador Crespo", + "scheduled_service": "no", + "local_code": "GCR" + }, + { + "id": "38853", + "ident": "AR-0178", + "type": "small_airport", + "name": "Gobernador Santillán Airport", + "latitude_deg": "-27.901399612426758", + "longitude_deg": "-64.24970245361328", + "elevation_ft": "689", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "Santiago Del Estero", + "scheduled_service": "no" + }, + { + "id": "38854", + "ident": "AR-0179", + "type": "small_airport", + "name": "Gomez Airport", + "latitude_deg": "-35.0956", + "longitude_deg": "-58.0853", + "elevation_ft": "62", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Gomez", + "scheduled_service": "no", + "local_code": "GOZ" + }, + { + "id": "38855", + "ident": "AR-0180", + "type": "small_airport", + "name": "Gonzalez Chaves Airport", + "latitude_deg": "-38.02949", + "longitude_deg": "-60.135654", + "elevation_ft": "636", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Gonzalez Chaves", + "scheduled_service": "no", + "gps_code": "SA6R", + "local_code": "GVZ" + }, + { + "id": "38856", + "ident": "AR-0181", + "type": "small_airport", + "name": "Goya Aeroclub", + "latitude_deg": "-29.1678", + "longitude_deg": "-59.2464", + "elevation_ft": "124", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Goya", + "scheduled_service": "no", + "local_code": "GYA" + }, + { + "id": "38857", + "ident": "AR-0182", + "type": "small_airport", + "name": "Guadalupe Airport", + "latitude_deg": "-31.584", + "longitude_deg": "-60.668", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Santa Fe", + "scheduled_service": "no" + }, + { + "id": "38858", + "ident": "AR-0183", + "type": "small_airport", + "name": "Gualeguay Airport", + "latitude_deg": "-33.1036109924", + "longitude_deg": "-59.3747215271", + "elevation_ft": "39", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Gualeguay", + "scheduled_service": "no", + "local_code": "UAY" + }, + { + "id": "38859", + "ident": "AR-0184", + "type": "small_airport", + "name": "Agro Aereo Gualeguay Airport", + "latitude_deg": "-33.0386", + "longitude_deg": "-59.4383", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Gualeguay", + "scheduled_service": "no", + "local_code": "GAA" + }, + { + "id": "38860", + "ident": "AR-0185", + "type": "heliport", + "name": "Helicenter Heliport", + "latitude_deg": "-34.497565", + "longitude_deg": "-58.606905", + "elevation_ft": "113", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Don Torcuato", + "scheduled_service": "no", + "local_code": "HLI" + }, + { + "id": "38861", + "ident": "AR-0186", + "type": "heliport", + "name": "Heliplataforma Am I Heliport", + "latitude_deg": "-52.5192", + "longitude_deg": "-68.3858", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "local_code": "HAB" + }, + { + "id": "38862", + "ident": "AR-0187", + "type": "heliport", + "name": "Heliplataforma Carina/Total Fina ELF", + "latitude_deg": "-52.7572", + "longitude_deg": "-67.2194", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "local_code": "HRI" + }, + { + "id": "38863", + "ident": "AR-0188", + "type": "heliport", + "name": "Heliplataforma/Am-2 Heliport", + "latitude_deg": "-52.5489", + "longitude_deg": "-68.3125", + "elevation_ft": "134", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "local_code": "HAD" + }, + { + "id": "38864", + "ident": "AR-0189", + "type": "heliport", + "name": "Heliplataforma/Am3 Heliport", + "latitude_deg": "-52.5228", + "longitude_deg": "-68.2808", + "elevation_ft": "134", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "local_code": "HAM" + }, + { + "id": "38865", + "ident": "AR-0190", + "type": "heliport", + "name": "Heliplataforma/Am5 Heliport", + "latitude_deg": "-52.5706", + "longitude_deg": "-68.2533", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "local_code": "HMQ" + }, + { + "id": "38866", + "ident": "AR-0191", + "type": "heliport", + "name": "Heliplataforma/Rio Cullen-Hidra Norte Heliport", + "latitude_deg": "-52.8206", + "longitude_deg": "-68.2192", + "elevation_ft": "65", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "local_code": "HNO" + }, + { + "id": "38867", + "ident": "AR-0192", + "type": "heliport", + "name": "Heliwest Heliport", + "latitude_deg": "-34.6336", + "longitude_deg": "-58.7511", + "elevation_ft": "71", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Moreno", + "scheduled_service": "no", + "local_code": "HHW" + }, + { + "id": "38868", + "ident": "AR-0193", + "type": "small_airport", + "name": "Henderson Airport", + "latitude_deg": "-36.3147010803", + "longitude_deg": "-61.747798919699996", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Henderson", + "scheduled_service": "no", + "local_code": "HDS" + }, + { + "id": "38869", + "ident": "AR-0194", + "type": "heliport", + "name": "Hospital De Milagro Heliport", + "latitude_deg": "-24.7731", + "longitude_deg": "-65.4156", + "elevation_ft": "4068", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Salta", + "scheduled_service": "no", + "local_code": "HHM" + }, + { + "id": "38870", + "ident": "AR-0195", + "type": "heliport", + "name": "Hospital Materno Infantil San Roque Heliport", + "latitude_deg": "-31.73", + "longitude_deg": "-60.5217", + "elevation_ft": "265", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Paraná", + "scheduled_service": "no", + "local_code": "HPE" + }, + { + "id": "38871", + "ident": "AR-0196", + "type": "heliport", + "name": "Hospital Municipal Heliport", + "latitude_deg": "-34.4489", + "longitude_deg": "-59.4494", + "elevation_ft": "154", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "San Andres De Giles", + "scheduled_service": "no", + "local_code": "HSH" + }, + { + "id": "38872", + "ident": "AR-0197", + "type": "heliport", + "name": "Hospital Nacional de Pediatría J. Garraham Helipad", + "latitude_deg": "-34.630939", + "longitude_deg": "-58.393825", + "elevation_ft": "127", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-C", + "municipality": "Buenos Aires", + "scheduled_service": "no", + "local_code": "HNP" + }, + { + "id": "38873", + "ident": "AR-0198", + "type": "small_airport", + "name": "Huanguelen Airport", + "latitude_deg": "-37.0330543518", + "longitude_deg": "-61.934165954600005", + "elevation_ft": "518", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Huanguelen", + "scheduled_service": "no", + "local_code": "HUG" + }, + { + "id": "38874", + "ident": "AR-0199", + "type": "small_airport", + "name": "Huinca Renanco Airport", + "latitude_deg": "-34.8203010559", + "longitude_deg": "-64.3731002808", + "elevation_ft": "590", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Huinca Renanco", + "scheduled_service": "no", + "local_code": "HUI" + }, + { + "id": "38875", + "ident": "AR-0200", + "type": "small_airport", + "name": "Ingeniero Luiggi Airport", + "latitude_deg": "-35.3549995422", + "longitude_deg": "-64.4758300781", + "elevation_ft": "633", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Ingeniero Luiggi", + "scheduled_service": "no", + "local_code": "IGL" + }, + { + "id": "42803", + "ident": "AR-0201", + "type": "small_airport", + "name": "Agroservicio Doña Teresa Airport", + "latitude_deg": "-28.8494", + "longitude_deg": "-62.2625", + "elevation_ft": "246", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "Bandera", + "scheduled_service": "no", + "local_code": "ADT" + }, + { + "id": "38877", + "ident": "AR-0202", + "type": "small_airport", + "name": "Establecimiento La Susana", + "latitude_deg": "-34.909168", + "longitude_deg": "-59.348888", + "elevation_ft": "121", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Ingeniero Williams", + "scheduled_service": "no" + }, + { + "id": "38878", + "ident": "AR-0203", + "type": "small_airport", + "name": "Intendente Alvear Airport", + "latitude_deg": "-35.2592", + "longitude_deg": "-63.5328", + "elevation_ft": "416", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Intendente Alvear", + "scheduled_service": "no", + "local_code": "IAL" + }, + { + "id": "38879", + "ident": "AR-0204", + "type": "small_airport", + "name": "Intendente Alvear", + "latitude_deg": "-35.2494", + "longitude_deg": "-63.5342", + "elevation_ft": "416", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Intendente Alvear", + "scheduled_service": "no" + }, + { + "id": "45160", + "ident": "AR-0205", + "type": "small_airport", + "name": "Fumigaciones Herbinsec Airport", + "latitude_deg": "-35.138611", + "longitude_deg": "-62.705278", + "elevation_ft": "366", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Roberts", + "scheduled_service": "no", + "local_code": "ROH" + }, + { + "id": "38881", + "ident": "AR-0206", + "type": "heliport", + "name": "Isla Santa Mónica Heliport", + "latitude_deg": "-34.4147", + "longitude_deg": "-58.5072", + "elevation_ft": "14", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Tigre", + "scheduled_service": "no", + "local_code": "HSM" + }, + { + "id": "38882", + "ident": "AR-0207", + "type": "small_airport", + "name": "Don Hector Biondi Airport", + "latitude_deg": "-33.2464", + "longitude_deg": "-62.4167", + "elevation_ft": "387", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Isla Verde", + "scheduled_service": "no", + "local_code": "IVB" + }, + { + "id": "38883", + "ident": "AR-0208", + "type": "small_airport", + "name": "Italaviation Airport", + "latitude_deg": "-29.1608", + "longitude_deg": "-59.1814", + "elevation_ft": "209", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Goya", + "scheduled_service": "no", + "local_code": "GIT" + }, + { + "id": "38884", + "ident": "AR-0209", + "type": "small_airport", + "name": "Jacinto Arauz Airport", + "latitude_deg": "-38.066101074200006", + "longitude_deg": "-63.4282989502", + "elevation_ft": "524", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Jacinto Arauz", + "scheduled_service": "no", + "local_code": "JAR" + }, + { + "id": "38885", + "ident": "AR-0210", + "type": "small_airport", + "name": "Jardin De América Airport", + "latitude_deg": "-27.0324993134", + "longitude_deg": "-55.1980552673", + "elevation_ft": "672", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-N", + "municipality": "Jardin de América", + "scheduled_service": "no", + "local_code": "JDA" + }, + { + "id": "38886", + "ident": "AR-0211", + "type": "small_airport", + "name": "Jesús Maria Airport", + "latitude_deg": "-30.988100051900002", + "longitude_deg": "-64.0768966675", + "elevation_ft": "1738", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Jesús Maria", + "scheduled_service": "no", + "local_code": "JES" + }, + { + "id": "38887", + "ident": "AR-0212", + "type": "small_airport", + "name": "Agropecuaria Rio Juramento Airport", + "latitude_deg": "-25.1867008209", + "longitude_deg": "-64.0828018188", + "elevation_ft": "1184", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Joaquin V. Gonzalez", + "scheduled_service": "no", + "local_code": "JGA" + }, + { + "id": "38888", + "ident": "AR-0213", + "type": "small_airport", + "name": "Tres Lomas Airport", + "latitude_deg": "-36.4439", + "longitude_deg": "-62.8792", + "elevation_ft": "380", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Jose Maria Blanco", + "scheduled_service": "no", + "local_code": "JMB" + }, + { + "id": "38889", + "ident": "AR-0214", + "type": "small_airport", + "name": "Juan Carlos Bagur Airport", + "latitude_deg": "-32.4186", + "longitude_deg": "-59.8158", + "elevation_ft": "190", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Nogoya", + "scheduled_service": "no", + "local_code": "NJB" + }, + { + "id": "38890", + "ident": "AR-0215", + "type": "heliport", + "name": "Juan Y Luci Heliport", + "latitude_deg": "-32.6922", + "longitude_deg": "-64.7206", + "elevation_ft": "2404", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Alpa Corral", + "scheduled_service": "no", + "local_code": "HAC" + }, + { + "id": "38891", + "ident": "AR-0216", + "type": "small_airport", + "name": "Juarez Celman Airport", + "latitude_deg": "-31.2113895416", + "longitude_deg": "-64.1613922119", + "elevation_ft": "1680", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Juarez Celman", + "scheduled_service": "no", + "local_code": "JCM" + }, + { + "id": "38892", + "ident": "AR-0217", + "type": "small_airport", + "name": "La Angelita Airport", + "latitude_deg": "-30.8522", + "longitude_deg": "-58.7067", + "elevation_ft": "229", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Federal", + "scheduled_service": "no", + "local_code": "FAG" + }, + { + "id": "38893", + "ident": "AR-0218", + "type": "small_airport", + "name": "Trenque Lauquen Airport", + "latitude_deg": "-36.0158", + "longitude_deg": "-62.6939", + "elevation_ft": "324", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Trenque Lauquen", + "scheduled_service": "no", + "gps_code": "SA28", + "local_code": "LAU" + }, + { + "id": "38894", + "ident": "AR-0219", + "type": "small_airport", + "name": "La Caida Airport", + "latitude_deg": "-34.859281", + "longitude_deg": "-58.342426", + "elevation_ft": "91", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Longchamps", + "scheduled_service": "no", + "local_code": "LLC" + }, + { + "id": "38895", + "ident": "AR-0220", + "type": "heliport", + "name": "La Caldera Heliport", + "latitude_deg": "-36.6669", + "longitude_deg": "-56.6789", + "elevation_ft": "32", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Costa Azul", + "scheduled_service": "no", + "local_code": "HCA" + }, + { + "id": "38896", + "ident": "AR-0221", + "type": "heliport", + "name": "La Carolina Heliport", + "latitude_deg": "-31.3525", + "longitude_deg": "-64.2828", + "elevation_ft": "1485", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "La Carolina", + "scheduled_service": "no", + "local_code": "HLC" + }, + { + "id": "38897", + "ident": "AR-0222", + "type": "small_airport", + "name": "La Consulta Airport", + "latitude_deg": "-33.7308349609375", + "longitude_deg": "-69.17388916015625", + "elevation_ft": "3520", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "La Consulta", + "scheduled_service": "no" + }, + { + "id": "38898", + "ident": "AR-0223", + "type": "closed", + "name": "La Fantasia", + "latitude_deg": "-34.7286", + "longitude_deg": "-59.109402", + "elevation_ft": "111", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Lujan", + "scheduled_service": "no" + }, + { + "id": "38899", + "ident": "AR-0224", + "type": "small_airport", + "name": "La Laja Airport", + "latitude_deg": "-31.3513889313", + "longitude_deg": "-68.47305297850001", + "elevation_ft": "2132", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-J", + "municipality": "La Laja", + "scheduled_service": "no", + "local_code": "AJA" + }, + { + "id": "38900", + "ident": "AR-0225", + "type": "small_airport", + "name": "Quebracho Herrado Airport", + "latitude_deg": "-34.1553", + "longitude_deg": "-59.8739", + "elevation_ft": "170", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Capitán Sarmiento", + "scheduled_service": "no", + "local_code": "CSQ" + }, + { + "id": "38901", + "ident": "AR-0226", + "type": "heliport", + "name": "La Madrugada Heliport", + "latitude_deg": "-34.2382", + "longitude_deg": "-59.1915", + "elevation_ft": "85", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Capilla Del Señor", + "scheduled_service": "no", + "local_code": "HLM" + }, + { + "id": "38902", + "ident": "AR-0227", + "type": "small_airport", + "name": "La Mezquita Airport", + "latitude_deg": "-31.400800705", + "longitude_deg": "-64.3003005981", + "elevation_ft": "1672", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Cordoba/La Mezquita", + "scheduled_service": "no", + "local_code": "MEZ" + }, + { + "id": "38903", + "ident": "AR-0228", + "type": "heliport", + "name": "La Milagrosa Heliport", + "latitude_deg": "-32.4828", + "longitude_deg": "-58.2506", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Concepcion Del Uruguay", + "scheduled_service": "no", + "local_code": "HMI" + }, + { + "id": "38904", + "ident": "AR-0229", + "type": "small_airport", + "name": "La Nueva Airport", + "latitude_deg": "-34.9464", + "longitude_deg": "-61.3042", + "elevation_ft": "246", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Lincoln", + "scheduled_service": "no", + "local_code": "LNV" + }, + { + "id": "38905", + "ident": "AR-0230", + "type": "small_airport", + "name": "La Paz Aeroclub Airport", + "latitude_deg": "-30.7442", + "longitude_deg": "-59.5683", + "elevation_ft": "200", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "La Paz", + "scheduled_service": "no", + "local_code": "LAZ" + }, + { + "id": "38906", + "ident": "AR-0231", + "type": "small_airport", + "name": "La Pelada Airport", + "latitude_deg": "-30.9556", + "longitude_deg": "-60.8858", + "elevation_ft": "144", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "La Pelada", + "scheduled_service": "no", + "local_code": "PEL" + }, + { + "id": "38907", + "ident": "AR-0232", + "type": "small_airport", + "name": "La Siesta Airport", + "latitude_deg": "-33.6939", + "longitude_deg": "-62.0625", + "elevation_ft": "367", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Venado Tuerto", + "scheduled_service": "no", + "local_code": "VTO" + }, + { + "id": "38908", + "ident": "AR-0233", + "type": "heliport", + "name": "La Superba Heliport", + "latitude_deg": "-34.5008", + "longitude_deg": "-59.015", + "elevation_ft": "32", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Open Door", + "scheduled_service": "no", + "local_code": "HLS" + }, + { + "id": "38909", + "ident": "AR-0234", + "type": "small_airport", + "name": "Laborde Airport", + "latitude_deg": "-33.1567", + "longitude_deg": "-62.8906", + "elevation_ft": "400", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Laborde", + "scheduled_service": "no", + "local_code": "LAB" + }, + { + "id": "38910", + "ident": "AR-0235", + "type": "small_airport", + "name": "Lago Buenos Aires Airport", + "latitude_deg": "-46.5764007568", + "longitude_deg": "-70.948600769", + "elevation_ft": "1312", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Lago Buenos Aires", + "scheduled_service": "no", + "local_code": "BAI" + }, + { + "id": "38911", + "ident": "AR-0236", + "type": "heliport", + "name": "Lago Escondido Heliport", + "latitude_deg": "-41.7033", + "longitude_deg": "-71.6075", + "elevation_ft": "2722", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Lago Escondido", + "scheduled_service": "no", + "local_code": "HLE" + }, + { + "id": "38912", + "ident": "AR-0237", + "type": "small_airport", + "name": "Lago La Esperanza Airport", + "latitude_deg": "-42.217499", + "longitude_deg": "-71.805003", + "elevation_ft": "1836", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Esquel", + "scheduled_service": "no", + "local_code": "LZA", + "keywords": "SA8A" + }, + { + "id": "38913", + "ident": "AR-0238", + "type": "small_airport", + "name": "Lago Nahuel Huapi Airport", + "latitude_deg": "-41.096709", + "longitude_deg": "-71.178021", + "elevation_ft": "2558", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Nahuel Huapi", + "scheduled_service": "no", + "local_code": "LNH" + }, + { + "id": "38914", + "ident": "AR-0239", + "type": "small_airport", + "name": "Laguna Aeroclub Airport", + "latitude_deg": "-34.40888977050781", + "longitude_deg": "-59.45833206176758", + "elevation_ft": "148", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "San Andres de Giles", + "scheduled_service": "no" + }, + { + "id": "38915", + "ident": "AR-0240", + "type": "small_airport", + "name": "Laguna De Gomez Airport", + "latitude_deg": "-34.6539", + "longitude_deg": "-61.01", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Laguna de Gomez", + "scheduled_service": "no", + "local_code": "LDG" + }, + { + "id": "38916", + "ident": "AR-0241", + "type": "small_airport", + "name": "Laprida Airport", + "latitude_deg": "-37.520913", + "longitude_deg": "-60.778141", + "elevation_ft": "705", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Laprida", + "scheduled_service": "no", + "gps_code": "SAEK", + "local_code": "LPR", + "keywords": "SA8D" + }, + { + "id": "38917", + "ident": "AR-0242", + "type": "heliport", + "name": "Las Araucarias Heliport", + "latitude_deg": "-34.3067", + "longitude_deg": "-59.1703", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Capilla Del Señor", + "scheduled_service": "no", + "local_code": "HCS" + }, + { + "id": "38918", + "ident": "AR-0243", + "type": "heliport", + "name": "Las Chacritas Heliport", + "latitude_deg": "-34.405", + "longitude_deg": "-58.8631", + "elevation_ft": "64", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Villa Rosa", + "scheduled_service": "no", + "local_code": "HLT" + }, + { + "id": "38919", + "ident": "AR-0244", + "type": "small_airport", + "name": "Las Cortaderas Airport", + "latitude_deg": "-38.3547", + "longitude_deg": "-58.1089", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Miramar", + "scheduled_service": "no", + "local_code": "BLL" + }, + { + "id": "38920", + "ident": "AR-0245", + "type": "small_airport", + "name": "Las Marias Airport", + "latitude_deg": "-28.1", + "longitude_deg": "-56.05", + "elevation_ft": "410", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Gdor. Valentin Virasoro", + "scheduled_service": "no", + "local_code": "VSO" + }, + { + "id": "38921", + "ident": "AR-0246", + "type": "small_airport", + "name": "Las Ovejas Airport", + "latitude_deg": "-36.999699", + "longitude_deg": "-70.741897", + "elevation_ft": "3936", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Las Ovejas", + "scheduled_service": "no", + "local_code": "OVJ" + }, + { + "id": "38922", + "ident": "AR-0247", + "type": "small_airport", + "name": "Las Rosas Airport", + "latitude_deg": "-32.4922", + "longitude_deg": "-61.5806", + "elevation_ft": "334", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Las Rosas", + "scheduled_service": "no", + "local_code": "LRS" + }, + { + "id": "38923", + "ident": "AR-0248", + "type": "small_airport", + "name": "Las Varillas Airport", + "latitude_deg": "-31.8914", + "longitude_deg": "-62.7047", + "elevation_ft": "442", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Las Varillas", + "scheduled_service": "no", + "local_code": "LVL" + }, + { + "id": "38924", + "ident": "AR-0249", + "type": "small_airport", + "name": "Lanzillota Airport", + "latitude_deg": "-32.7214012146", + "longitude_deg": "-68.6342010498", + "elevation_ft": "1869", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "Ciudad de Lavalle", + "scheduled_service": "no", + "local_code": "LLZ" + }, + { + "id": "38925", + "ident": "AR-0250", + "type": "heliport", + "name": "Legat S.A. Heliport", + "latitude_deg": "-34.3168", + "longitude_deg": "-58.8166", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Belén De Escobar", + "scheduled_service": "no", + "local_code": "HBE" + }, + { + "id": "38926", + "ident": "AR-0251", + "type": "small_airport", + "name": "Leones Airport", + "latitude_deg": "-32.6368", + "longitude_deg": "-62.3148", + "elevation_ft": "373", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Leones", + "scheduled_service": "no", + "local_code": "LEO" + }, + { + "id": "38927", + "ident": "AR-0252", + "type": "small_airport", + "name": "Luján Airport", + "latitude_deg": "-34.5514", + "longitude_deg": "-59.0783", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Lujan", + "scheduled_service": "no", + "gps_code": "SA8Y", + "local_code": "LJN" + }, + { + "id": "38928", + "ident": "AR-0253", + "type": "small_airport", + "name": "Lincoln Airport", + "latitude_deg": "-34.8911", + "longitude_deg": "-61.5306", + "elevation_ft": "285", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Lincoln", + "scheduled_service": "no", + "local_code": "LIN" + }, + { + "id": "38929", + "ident": "AR-0254", + "type": "small_airport", + "name": "El Mirador", + "latitude_deg": "-34.538887", + "longitude_deg": "-59.585278", + "elevation_ft": "167", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "San Andres de Giles", + "scheduled_service": "no", + "local_code": "LAD2230" + }, + { + "id": "38930", + "ident": "AR-0255", + "type": "small_airport", + "name": "Loberia Airport", + "latitude_deg": "-38.1906", + "longitude_deg": "-58.7864", + "elevation_ft": "265", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Loberia", + "scheduled_service": "no", + "local_code": "LBI" + }, + { + "id": "38931", + "ident": "AR-0256", + "type": "small_airport", + "name": "Nika Airport", + "latitude_deg": "-38.143874", + "longitude_deg": "-58.7479", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Lobería", + "scheduled_service": "no", + "local_code": "NIK" + }, + { + "id": "38932", + "ident": "AR-0257", + "type": "small_airport", + "name": "Lobos Airport", + "latitude_deg": "-35.210784", + "longitude_deg": "-59.137149", + "elevation_ft": "95", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Lobos", + "scheduled_service": "no", + "gps_code": "SA8S", + "local_code": "BOS" + }, + { + "id": "38933", + "ident": "AR-0258", + "type": "small_airport", + "name": "Los Cardos Airport", + "latitude_deg": "-32.2719", + "longitude_deg": "-61.6622", + "elevation_ft": "341", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Los Cardos", + "scheduled_service": "no", + "local_code": "LCD" + }, + { + "id": "38934", + "ident": "AR-0259", + "type": "heliport", + "name": "Los Fresnos Heliport", + "latitude_deg": "-34.2806", + "longitude_deg": "-59.12", + "elevation_ft": "111", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Capilla Del Señor", + "scheduled_service": "no", + "local_code": "HLF" + }, + { + "id": "38935", + "ident": "AR-0260", + "type": "small_airport", + "name": "Los Perales Airport", + "latitude_deg": "-46.1907997131", + "longitude_deg": "-69.28029632570001", + "elevation_ft": "1397", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Las Heras", + "scheduled_service": "no", + "local_code": "LHP" + }, + { + "id": "38936", + "ident": "AR-0261", + "type": "small_airport", + "name": "Los Tucanes Airport", + "latitude_deg": "-27.0358333588", + "longitude_deg": "-65.1566696167", + "elevation_ft": "1194", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-T", + "municipality": "Tucuman", + "scheduled_service": "no", + "local_code": "TUT" + }, + { + "id": "38937", + "ident": "AR-0262", + "type": "small_airport", + "name": "Macachin Airport", + "latitude_deg": "-37.111099243199995", + "longitude_deg": "-63.5499992371", + "elevation_ft": "459", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Macachin", + "scheduled_service": "no", + "local_code": "MAC" + }, + { + "id": "38938", + "ident": "AR-0263", + "type": "heliport", + "name": "Madero Heliport", + "latitude_deg": "-34.6217", + "longitude_deg": "-58.3447", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-C", + "municipality": "Buenos Aires", + "scheduled_service": "no", + "local_code": "HBM" + }, + { + "id": "38939", + "ident": "AR-0264", + "type": "small_airport", + "name": "Maipu Airport", + "latitude_deg": "-36.8903", + "longitude_deg": "-57.8503", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Maipu", + "scheduled_service": "no", + "local_code": "MPU" + }, + { + "id": "38940", + "ident": "AR-0265", + "type": "heliport", + "name": "Manuel Afonso Heliport", + "latitude_deg": "-34.815", + "longitude_deg": "-58.1953", + "elevation_ft": "36", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Hudson", + "scheduled_service": "no", + "local_code": "HMA" + }, + { + "id": "38941", + "ident": "AR-0266", + "type": "small_airport", + "name": "Marcos Paz Airfield", + "latitude_deg": "-34.7975", + "longitude_deg": "-58.8969", + "elevation_ft": "91", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Marcos Paz", + "scheduled_service": "no", + "gps_code": "SA9K", + "local_code": "MSP" + }, + { + "id": "38942", + "ident": "AR-0267", + "type": "small_airport", + "name": "Martín Fierro Airport", + "latitude_deg": "-33.940299987799996", + "longitude_deg": "-64.3696975708", + "elevation_ft": "754", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Vicuña Mackena", + "scheduled_service": "no", + "local_code": "VMK" + }, + { + "id": "38943", + "ident": "AR-0268", + "type": "heliport", + "name": "Match Point Heliport", + "latitude_deg": "-34.5161", + "longitude_deg": "-59.1339", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Lujan", + "scheduled_service": "no", + "local_code": "HMP" + }, + { + "id": "38944", + "ident": "AR-0269", + "type": "small_airport", + "name": "Meliquina Airport", + "latitude_deg": "-40.33530044555664", + "longitude_deg": "-71.33920288085938", + "elevation_ft": "3061", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Meliquina", + "scheduled_service": "no" + }, + { + "id": "38945", + "ident": "AR-0270", + "type": "heliport", + "name": "Memorial Heliport", + "latitude_deg": "-34.4433", + "longitude_deg": "-58.8381", + "elevation_ft": "62", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Pilar", + "scheduled_service": "no", + "local_code": "HME" + }, + { + "id": "38946", + "ident": "AR-0271", + "type": "small_airport", + "name": "Mercedes Airport", + "latitude_deg": "-34.638136", + "longitude_deg": "-59.455395", + "elevation_ft": "137", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Mercedes", + "scheduled_service": "no", + "gps_code": "SA9M", + "local_code": "MRD" + }, + { + "id": "42804", + "ident": "AR-0272", + "type": "small_airport", + "name": "Azcarate Irastorza Airport", + "latitude_deg": "-35.1994", + "longitude_deg": "-63.6008", + "elevation_ft": "416", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Intendente Alvear", + "scheduled_service": "no", + "local_code": "IAA" + }, + { + "id": "38948", + "ident": "AR-0273", + "type": "small_airport", + "name": "Metán Airport", + "latitude_deg": "-25.5144004822", + "longitude_deg": "-64.9655990601", + "elevation_ft": "2765", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Metan", + "scheduled_service": "no", + "gps_code": "SASM", + "local_code": "MTN" + }, + { + "id": "38949", + "ident": "AR-0274", + "type": "small_airport", + "name": "Mina Clavero Airport", + "latitude_deg": "-31.7331008911", + "longitude_deg": "-64.98560333249999", + "elevation_ft": "3181", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Mina Clavero", + "scheduled_service": "no", + "local_code": "MCL" + }, + { + "id": "38950", + "ident": "AR-0275", + "type": "heliport", + "name": "Miraflores Country Club Heliport", + "latitude_deg": "-34.4461", + "longitude_deg": "-58.7342", + "elevation_ft": "68", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Garin", + "scheduled_service": "no", + "local_code": "HMC" + }, + { + "id": "38951", + "ident": "AR-0276", + "type": "small_airport", + "name": "Monte Maiz Airport", + "latitude_deg": "-33.2103", + "longitude_deg": "-62.6297", + "elevation_ft": "370", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Monte Maiz", + "scheduled_service": "no", + "local_code": "MAI" + }, + { + "id": "38952", + "ident": "AR-0277", + "type": "closed", + "name": "Montecarlo Airport", + "latitude_deg": "-26.5439", + "longitude_deg": "-54.7239", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-N", + "municipality": "Montecarlo", + "scheduled_service": "no", + "local_code": "MTL" + }, + { + "id": "38953", + "ident": "AR-0278", + "type": "small_airport", + "name": "Moromar Airport", + "latitude_deg": "-38.425775", + "longitude_deg": "-58.371331", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Quequen", + "scheduled_service": "no", + "local_code": "UEN" + }, + { + "id": "38954", + "ident": "AR-0279", + "type": "heliport", + "name": "Morrison Heliport", + "latitude_deg": "-32", + "longitude_deg": "-62", + "elevation_ft": "465", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Morrison", + "scheduled_service": "no", + "local_code": "HRR" + }, + { + "id": "38955", + "ident": "AR-0280", + "type": "small_airport", + "name": "Morteros Airport", + "latitude_deg": "-30.6778", + "longitude_deg": "-62.0267", + "elevation_ft": "308", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Morteros", + "scheduled_service": "no", + "local_code": "MTR" + }, + { + "id": "38956", + "ident": "AR-0281", + "type": "small_airport", + "name": "Navarro Airport", + "latitude_deg": "-35.0236", + "longitude_deg": "-59.2858", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Navarro", + "scheduled_service": "no", + "gps_code": "SA9Z", + "local_code": "NVR" + }, + { + "id": "38957", + "ident": "AR-0282", + "type": "small_airport", + "name": "Nogoya Airport", + "latitude_deg": "-32.4025", + "longitude_deg": "-59.7461", + "elevation_ft": "137", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Nogoya", + "scheduled_service": "no", + "local_code": "NOG" + }, + { + "id": "38958", + "ident": "AR-0283", + "type": "heliport", + "name": "Norberto Cordeiro Heliport", + "latitude_deg": "-31.4142", + "longitude_deg": "-64.4969", + "elevation_ft": "2036", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Villa Carlos Paz", + "scheduled_service": "no", + "local_code": "HAI" + }, + { + "id": "38959", + "ident": "AR-0284", + "type": "heliport", + "name": "Oficial Subinspector Gustavo Soarez De Souza Heliport", + "latitude_deg": "-34.7236", + "longitude_deg": "-58.515", + "elevation_ft": "141", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "La Matanza", + "scheduled_service": "no", + "local_code": "HMF" + }, + { + "id": "38960", + "ident": "AR-0285", + "type": "small_airport", + "name": "Oliva Airport", + "latitude_deg": "-32.060798645", + "longitude_deg": "-63.5469017029", + "elevation_ft": "879", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Oliva", + "scheduled_service": "no", + "local_code": "OLV" + }, + { + "id": "38961", + "ident": "AR-0286", + "type": "heliport", + "name": "Oreste Berta Heliport", + "latitude_deg": "-31.6269", + "longitude_deg": "-64.3922", + "elevation_ft": "1869", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Alta Gracia", + "scheduled_service": "no", + "local_code": "HOB" + }, + { + "id": "38962", + "ident": "AR-0287", + "type": "heliport", + "name": "P.N.A. Of. Ppal. Ballestra Heliport", + "latitude_deg": "-34.5772", + "longitude_deg": "-58.3838", + "elevation_ft": "19", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-C", + "municipality": "Buenos Aires", + "scheduled_service": "no", + "local_code": "HPN" + }, + { + "id": "339851", + "ident": "AR-0288", + "type": "small_airport", + "name": "Haydee Airport", + "latitude_deg": "-35.669894", + "longitude_deg": "-61.405525", + "elevation_ft": "269", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Carlos Caceres", + "scheduled_service": "no", + "local_code": "CCH" + }, + { + "id": "38964", + "ident": "AR-0289", + "type": "small_airport", + "name": "Parana Aeroclub Airport", + "latitude_deg": "-31.7578", + "longitude_deg": "-60.3733", + "elevation_ft": "196", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Parana", + "scheduled_service": "no", + "local_code": "ANA" + }, + { + "id": "38965", + "ident": "AR-0290", + "type": "small_airport", + "name": "Parana Club De Planeadores Airport", + "latitude_deg": "-31.7314", + "longitude_deg": "-60.22", + "elevation_ft": "151", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Parana", + "scheduled_service": "no", + "local_code": "PNA" + }, + { + "id": "38966", + "ident": "AR-0291", + "type": "small_airport", + "name": "Parque Hermoso Airport", + "latitude_deg": "-38.0287", + "longitude_deg": "-57.6393", + "elevation_ft": "196", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Mar Del Plata", + "scheduled_service": "no", + "local_code": "MPH" + }, + { + "id": "38967", + "ident": "AR-0292", + "type": "small_airport", + "name": "Pedro Luro Airport", + "latitude_deg": "-39.4561", + "longitude_deg": "-62.6747", + "elevation_ft": "88", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Pedro Luro", + "scheduled_service": "no", + "local_code": "URO" + }, + { + "id": "38968", + "ident": "AR-0293", + "type": "small_airport", + "name": "Pellegrini Airport", + "latitude_deg": "-36.2828", + "longitude_deg": "-63.1342", + "elevation_ft": "370", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Pellegrini", + "scheduled_service": "no", + "local_code": "PLG" + }, + { + "id": "38969", + "ident": "AR-0294", + "type": "small_airport", + "name": "LAD 2198 Juan Jose Angelini", + "latitude_deg": "-34.426945", + "longitude_deg": "-59.480278", + "elevation_ft": "164", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "San Andres de Giles", + "scheduled_service": "no", + "local_code": "LAD2198" + }, + { + "id": "38970", + "ident": "AR-0295", + "type": "small_airport", + "name": "Pilcaniyeu Airport", + "latitude_deg": "-41.12666702270508", + "longitude_deg": "-70.7138900756836", + "elevation_ft": "3192", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Pilcaniyeu", + "scheduled_service": "no" + }, + { + "id": "38971", + "ident": "AR-0296", + "type": "small_airport", + "name": "Pinamar Airport", + "latitude_deg": "-37.0911", + "longitude_deg": "-56.9783", + "elevation_ft": "9", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Pinamar", + "scheduled_service": "no", + "gps_code": "SAB4", + "local_code": "PNR" + }, + { + "id": "38972", + "ident": "AR-0297", + "type": "heliport", + "name": "Planta Cruz Del Sur Heliport", + "latitude_deg": "-53.3228", + "longitude_deg": "-68.2658", + "elevation_ft": "173", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Bahía San Sebastián", + "scheduled_service": "no", + "local_code": "HEN" + }, + { + "id": "38973", + "ident": "AR-0298", + "type": "small_airport", + "name": "Poblet Airport", + "latitude_deg": "-35.0881", + "longitude_deg": "-57.9492", + "elevation_ft": "65", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Poblet", + "scheduled_service": "no", + "local_code": "PBE" + }, + { + "id": "38974", + "ident": "AR-0299", + "type": "heliport", + "name": "Policía Provincia De Córdoba Heliport", + "latitude_deg": "-31.3994", + "longitude_deg": "-64.1833", + "elevation_ft": "1293", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Cordoba", + "scheduled_service": "no", + "local_code": "HPC" + }, + { + "id": "38975", + "ident": "AR-0300", + "type": "heliport", + "name": "Policlinico San Martin Heliport", + "latitude_deg": "-34.9167", + "longitude_deg": "-57.9167", + "elevation_ft": "68", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "La Plata", + "scheduled_service": "no", + "local_code": "HPM" + }, + { + "id": "38976", + "ident": "AR-0301", + "type": "heliport", + "name": "Polisur S.A. Heliport", + "latitude_deg": "-38.7742", + "longitude_deg": "-62.2939", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Bahía Blanca", + "scheduled_service": "no", + "local_code": "HBP" + }, + { + "id": "38977", + "ident": "AR-0302", + "type": "closed", + "name": "Posadas Aeroclub Airport", + "latitude_deg": "-27.4175", + "longitude_deg": "-55.939724", + "elevation_ft": "443", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-N", + "municipality": "Posadas", + "scheduled_service": "no" + }, + { + "id": "38978", + "ident": "AR-0303", + "type": "heliport", + "name": "Presidencia De La Nación Heliport", + "latitude_deg": "-34.6064", + "longitude_deg": "-58.3683", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-C", + "municipality": "Buenos Aires", + "scheduled_service": "no" + }, + { + "id": "38979", + "ident": "AR-0304", + "type": "small_airport", + "name": "Puán Airport", + "latitude_deg": "-37.5393981934", + "longitude_deg": "-62.734199523899996", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Puán", + "scheduled_service": "no", + "local_code": "PUA" + }, + { + "id": "38980", + "ident": "AR-0305", + "type": "small_airport", + "name": "Pueblo Esther Airport", + "latitude_deg": "-33.0817", + "longitude_deg": "-60.5647", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Rosario", + "scheduled_service": "no", + "local_code": "ROP" + }, + { + "id": "38981", + "ident": "AR-0306", + "type": "small_airport", + "name": "Terminal 6 Airport", + "latitude_deg": "-32.6417", + "longitude_deg": "-60.7539", + "elevation_ft": "85", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Puerto San Martín", + "scheduled_service": "no", + "local_code": "PST" + }, + { + "id": "38982", + "ident": "AR-0307", + "type": "small_airport", + "name": "Pulmari Airport", + "latitude_deg": "-39.100555419921875", + "longitude_deg": "-70.99888610839844", + "elevation_ft": "3245", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Pulmari", + "scheduled_service": "no" + }, + { + "id": "38983", + "ident": "AR-0308", + "type": "small_airport", + "name": "Punta Alta Airport", + "latitude_deg": "-38.8342", + "longitude_deg": "-62.0869", + "elevation_ft": "9", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Punta Alta", + "scheduled_service": "no", + "local_code": "PLT" + }, + { + "id": "38984", + "ident": "AR-0309", + "type": "heliport", + "name": "Raies Heliport", + "latitude_deg": "-31.3461", + "longitude_deg": "-64.2081", + "elevation_ft": "1459", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Cordoba", + "scheduled_service": "no", + "local_code": "HRA" + }, + { + "id": "38985", + "ident": "AR-0310", + "type": "heliport", + "name": "Rancho De Montaña Heliport", + "latitude_deg": "-40.1525", + "longitude_deg": "-71.2856", + "elevation_ft": "3297", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "San Martín De Los Andes", + "scheduled_service": "no", + "local_code": "HRM" + }, + { + "id": "38986", + "ident": "AR-0311", + "type": "small_airport", + "name": "La Igualdad Airport", + "latitude_deg": "-35.5133", + "longitude_deg": "-58.3531", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Ranchos", + "scheduled_service": "no", + "local_code": "RAI" + }, + { + "id": "38987", + "ident": "AR-0312", + "type": "small_airport", + "name": "Rawson Airport", + "latitude_deg": "-43.2944", + "longitude_deg": "-65.0644", + "elevation_ft": "36", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Rawson", + "scheduled_service": "no", + "local_code": "RAW" + }, + { + "id": "38988", + "ident": "AR-0313", + "type": "small_airport", + "name": "Realicó Airport", + "latitude_deg": "-35.0592002869", + "longitude_deg": "-64.2110977173", + "elevation_ft": "541", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Realicó", + "scheduled_service": "no", + "local_code": "RLC" + }, + { + "id": "38989", + "ident": "AR-0314", + "type": "small_airport", + "name": "Nueva Valencia Airport", + "latitude_deg": "-27.5864", + "longitude_deg": "-58.8203", + "elevation_ft": "186", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Riachuelo", + "scheduled_service": "no", + "local_code": "ENV" + }, + { + "id": "38990", + "ident": "AR-0315", + "type": "small_airport", + "name": "Don Jose Airport", + "latitude_deg": "-32.8275", + "longitude_deg": "-60.7817", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Ricardone", + "scheduled_service": "no", + "local_code": "RDJ" + }, + { + "id": "38991", + "ident": "AR-0316", + "type": "small_airport", + "name": "Rio Chico Airport", + "latitude_deg": "-51.668997", + "longitude_deg": "-69.266365", + "elevation_ft": "68", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Rio Gallegos", + "scheduled_service": "no", + "local_code": "RGR" + }, + { + "id": "38992", + "ident": "AR-0317", + "type": "heliport", + "name": "Estancia Rio Ewan Heliport", + "latitude_deg": "-54.233548", + "longitude_deg": "-67.213246", + "elevation_ft": "112", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Río Grande", + "scheduled_service": "no", + "local_code": "HRW" + }, + { + "id": "38993", + "ident": "AR-0318", + "type": "small_airport", + "name": "Rivadavia Airport", + "latitude_deg": "-33.227222442599995", + "longitude_deg": "-68.4741668701", + "elevation_ft": "2162", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "Rivadavia", + "scheduled_service": "no", + "local_code": "RVD" + }, + { + "id": "38994", + "ident": "AR-0319", + "type": "small_airport", + "name": "Rojas Airport", + "latitude_deg": "-34.215", + "longitude_deg": "-60.6725", + "elevation_ft": "19", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Rojas", + "scheduled_service": "no", + "local_code": "RJA" + }, + { + "id": "38995", + "ident": "AR-0320", + "type": "small_airport", + "name": "Rosario De La Frontera Airport", + "latitude_deg": "-25.828056335399996", + "longitude_deg": "-64.9680557251", + "elevation_ft": "2746", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Rosario de La Frontera", + "scheduled_service": "no", + "local_code": "FRO" + }, + { + "id": "38996", + "ident": "AR-0321", + "type": "small_airport", + "name": "Rosario Del Tala Airport", + "latitude_deg": "-32.3289", + "longitude_deg": "-59.1906", + "elevation_ft": "177", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Rosario Del Tala", + "scheduled_service": "no", + "local_code": "ROT" + }, + { + "id": "38997", + "ident": "AR-0322", + "type": "small_airport", + "name": "Rufino Airport", + "latitude_deg": "-34.2831", + "longitude_deg": "-62.6719", + "elevation_ft": "387", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Rufino", + "scheduled_service": "no", + "local_code": "RUF" + }, + { + "id": "38998", + "ident": "AR-0323", + "type": "small_airport", + "name": "Salliqueló Airport", + "latitude_deg": "-36.756401062", + "longitude_deg": "-62.9444007874", + "elevation_ft": "475", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Salliqueló", + "scheduled_service": "no", + "local_code": "SLO" + }, + { + "id": "38999", + "ident": "AR-0324", + "type": "small_airport", + "name": "Salto Airport", + "latitude_deg": "-34.306864", + "longitude_deg": "-60.286489", + "elevation_ft": "193", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Salto", + "scheduled_service": "no", + "gps_code": "SA75", + "local_code": "SLT" + }, + { + "id": "39000", + "ident": "AR-0325", + "type": "small_airport", + "name": "San Benito Airport", + "latitude_deg": "-31.8086", + "longitude_deg": "-60.4517", + "elevation_ft": "193", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "San Benito", + "scheduled_service": "no", + "local_code": "SBE" + }, + { + "id": "39001", + "ident": "AR-0326", + "type": "small_airport", + "name": "San Cayetano Heliport", + "latitude_deg": "-38.33388900756836", + "longitude_deg": "-59.630279541015625", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "San Cayetano", + "scheduled_service": "no" + }, + { + "id": "39002", + "ident": "AR-0327", + "type": "small_airport", + "name": "San Cristobal Airport", + "latitude_deg": "-30.2642", + "longitude_deg": "-61.2203", + "elevation_ft": "242", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "San Cristobal", + "scheduled_service": "no", + "local_code": "SCT" + }, + { + "id": "39003", + "ident": "AR-0328", + "type": "small_airport", + "name": "San Francisco Airport", + "latitude_deg": "-31.4142", + "longitude_deg": "-62.1336", + "elevation_ft": "374", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "San Francisco", + "scheduled_service": "no", + "local_code": "FRA" + }, + { + "id": "39004", + "ident": "AR-0329", + "type": "heliport", + "name": "San Isidro Labrador Heliport", + "latitude_deg": "-35.0814", + "longitude_deg": "-63.0822", + "elevation_ft": "377", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "General Villegas", + "scheduled_service": "no", + "local_code": "HIL" + }, + { + "id": "39005", + "ident": "AR-0330", + "type": "heliport", + "name": "San Joaquín Heliport", + "latitude_deg": "-34.338502", + "longitude_deg": "-59.721508", + "elevation_ft": "137", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Carmen de Areco", + "scheduled_service": "no", + "local_code": "HRC" + }, + { + "id": "39006", + "ident": "AR-0331", + "type": "small_airport", + "name": "San Jorge Airport", + "latitude_deg": "-31.8836", + "longitude_deg": "-61.8442", + "elevation_ft": "347", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "San Jorge", + "scheduled_service": "no", + "local_code": "JOR" + }, + { + "id": "39007", + "ident": "AR-0332", + "type": "small_airport", + "name": "San Justo Airport", + "latitude_deg": "-30.7642", + "longitude_deg": "-60.5653", + "elevation_ft": "180", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "San Justo", + "scheduled_service": "no", + "local_code": "SJT" + }, + { + "id": "39008", + "ident": "AR-0333", + "type": "small_airport", + "name": "Aeroclub San Martín", + "latitude_deg": "-33.061883", + "longitude_deg": "-68.508644", + "elevation_ft": "2154", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "San Martin", + "scheduled_service": "no", + "gps_code": "SAMI", + "local_code": "STI", + "home_link": "https://www.facebook.com/Aero-Club-San-Martin-1620167351592200/" + }, + { + "id": "39009", + "ident": "AR-0334", + "type": "small_airport", + "name": "San Miguel del Monte Airport", + "latitude_deg": "-35.4594", + "longitude_deg": "-58.7636", + "elevation_ft": "78", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "San Miguel del Monte", + "scheduled_service": "no", + "local_code": "SMM", + "keywords": "Bahia Agradable" + }, + { + "id": "42805", + "ident": "AR-0335", + "type": "small_airport", + "name": "Bahía Dorada Airport", + "latitude_deg": "-41.8428", + "longitude_deg": "-65.0822", + "elevation_ft": "118", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Sierra Grande", + "scheduled_service": "no", + "local_code": "BDR" + }, + { + "id": "39011", + "ident": "AR-0336", + "type": "small_airport", + "name": "San Vicente Airport", + "latitude_deg": "-26.9533004761", + "longitude_deg": "-54.4878005981", + "elevation_ft": "1804", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-N", + "municipality": "Fabiano", + "scheduled_service": "no", + "local_code": "VTE" + }, + { + "id": "39012", + "ident": "AR-0337", + "type": "heliport", + "name": "Sanatorio Guemes Heliport", + "latitude_deg": "-34.597", + "longitude_deg": "-58.4219", + "elevation_ft": "268", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-C", + "municipality": "Buenos Aires", + "scheduled_service": "no", + "local_code": "HSG" + }, + { + "id": "39013", + "ident": "AR-0338", + "type": "small_airport", + "name": "Santo Tome Airport", + "latitude_deg": "-28.5272216796875", + "longitude_deg": "-56.10944366455078", + "elevation_ft": "223", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Santo Tome", + "scheduled_service": "no" + }, + { + "id": "39014", + "ident": "AR-0339", + "type": "heliport", + "name": "Sarthou S.A. Heliport", + "latitude_deg": "-34.3642", + "longitude_deg": "-58.5497", + "elevation_ft": "15", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "San Fernando", + "scheduled_service": "no", + "local_code": "HFS" + }, + { + "id": "39015", + "ident": "AR-0340", + "type": "heliport", + "name": "Saturnino Unzue Heliport", + "latitude_deg": "-35.4244", + "longitude_deg": "-60.1561", + "elevation_ft": "164", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Mar del Plata", + "scheduled_service": "no", + "local_code": "HUU" + }, + { + "id": "39016", + "ident": "AR-0341", + "type": "small_airport", + "name": "Scaro Airport", + "latitude_deg": "-24.4480552673", + "longitude_deg": "-65.1758346558", + "elevation_ft": "3228", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Y", + "municipality": "Monterrico", + "scheduled_service": "no", + "local_code": "MTS" + }, + { + "id": "46643", + "ident": "AR-0342", + "type": "small_airport", + "name": "Villa de María de Río Seco Airport", + "latitude_deg": "-29.9", + "longitude_deg": "-63.683", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Villa de María de Río Seco", + "scheduled_service": "no", + "gps_code": "SACV", + "local_code": "MRS" + }, + { + "id": "39018", + "ident": "AR-0343", + "type": "heliport", + "name": "Sol De Agosto Heliport", + "latitude_deg": "-34.5331", + "longitude_deg": "-58.9714", + "elevation_ft": "32", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Lujan", + "scheduled_service": "no", + "local_code": "HAG" + }, + { + "id": "39019", + "ident": "AR-0344", + "type": "small_airport", + "name": "Stroeder Airport", + "latitude_deg": "-40.207635", + "longitude_deg": "-62.61858", + "elevation_ft": "91", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Stroeder", + "scheduled_service": "no", + "local_code": "STD" + }, + { + "id": "39020", + "ident": "AR-0345", + "type": "small_airport", + "name": "Suboficial Auxiliar Miguel A. Cardone Airport", + "latitude_deg": "-33.9617", + "longitude_deg": "-61.6325", + "elevation_ft": "337", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Villa Cañas", + "scheduled_service": "no", + "local_code": "VCC" + }, + { + "id": "39021", + "ident": "AR-0346", + "type": "small_airport", + "name": "Sunchales Aeroclub Airport", + "latitude_deg": "-30.9575", + "longitude_deg": "-61.5283", + "elevation_ft": "299", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Sunchales", + "scheduled_service": "no", + "gps_code": "SAFS", + "iata_code": "NCJ", + "local_code": "SCA" + }, + { + "id": "39022", + "ident": "AR-0347", + "type": "heliport", + "name": "Swiss Medical Heliport", + "latitude_deg": "-34.5808", + "longitude_deg": "-58.4294", + "elevation_ft": "193", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-C", + "municipality": "Buenos Aires", + "scheduled_service": "no", + "local_code": "HMD" + }, + { + "id": "39023", + "ident": "AR-0348", + "type": "heliport", + "name": "Talitas Heliport", + "latitude_deg": "-32.5481", + "longitude_deg": "-58.2406", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Concepcion Del Uruguay", + "scheduled_service": "no", + "local_code": "HTA" + }, + { + "id": "39024", + "ident": "AR-0349", + "type": "small_airport", + "name": "Estancia Tecka Airport", + "latitude_deg": "-43.6122207642", + "longitude_deg": "-71.0219421387", + "elevation_ft": "2361", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Chubut", + "scheduled_service": "no", + "local_code": "TEC" + }, + { + "id": "39025", + "ident": "AR-0350", + "type": "heliport", + "name": "Tecnocopter S.A. Heliport", + "latitude_deg": "-34.4922", + "longitude_deg": "-58.6061", + "elevation_ft": "65", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Don Torcuato", + "scheduled_service": "no", + "local_code": "HHT" + }, + { + "id": "39026", + "ident": "AR-0351", + "type": "heliport", + "name": "Terminal Y.P.F. Heliport", + "latitude_deg": "-34.731923", + "longitude_deg": "-58.557735", + "elevation_ft": "32", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "La Matanza", + "scheduled_service": "no", + "local_code": "HMY" + }, + { + "id": "39027", + "ident": "AR-0352", + "type": "small_airport", + "name": "Tilisarao Airport", + "latitude_deg": "-32.75", + "longitude_deg": "-65.28220367429999", + "elevation_ft": "2463", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-D", + "municipality": "Tilisarao", + "scheduled_service": "no", + "local_code": "TLS" + }, + { + "id": "39028", + "ident": "AR-0353", + "type": "heliport", + "name": "Timen S.A. Heliport", + "latitude_deg": "-34.4964", + "longitude_deg": "-58.6078", + "elevation_ft": "19", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Don Torcuato", + "scheduled_service": "no", + "local_code": "HDT" + }, + { + "id": "39029", + "ident": "AR-0354", + "type": "small_airport", + "name": "Tolosa Airport", + "latitude_deg": "-34.8747", + "longitude_deg": "-57.9608", + "elevation_ft": "18", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "La Plata", + "scheduled_service": "no", + "local_code": "PTL", + "keywords": "Aeroclub La Plata" + }, + { + "id": "39030", + "ident": "AR-0355", + "type": "small_airport", + "name": "Tornquist Airport", + "latitude_deg": "-38.0956001282", + "longitude_deg": "-62.2503013611", + "elevation_ft": "934", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Tornquist", + "scheduled_service": "no", + "local_code": "TOR" + }, + { + "id": "39031", + "ident": "AR-0356", + "type": "small_airport", + "name": "Tostado Airport", + "latitude_deg": "-29.2358", + "longitude_deg": "-61.7886", + "elevation_ft": "226", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Tostado", + "scheduled_service": "no", + "local_code": "TOS" + }, + { + "id": "39032", + "ident": "AR-0357", + "type": "heliport", + "name": "Transener S.A. Heliport", + "latitude_deg": "-34.175", + "longitude_deg": "-58.9983", + "elevation_ft": "32", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Campana", + "scheduled_service": "no", + "local_code": "HCT" + }, + { + "id": "39033", + "ident": "AR-0358", + "type": "heliport", + "name": "Transener S.A. Heliport", + "latitude_deg": "-34.9136", + "longitude_deg": "-58.7222", + "elevation_ft": "65", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Ezeiza", + "scheduled_service": "no", + "local_code": "HCG" + }, + { + "id": "39034", + "ident": "AR-0359", + "type": "heliport", + "name": "Transener S.A. Heliport", + "latitude_deg": "-32.3694", + "longitude_deg": "-66.0631", + "elevation_ft": "1968", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-D", + "municipality": "Lujan", + "scheduled_service": "no", + "local_code": "HLU" + }, + { + "id": "39035", + "ident": "AR-0360", + "type": "heliport", + "name": "Recreo / Transener S.A. Heliport", + "latitude_deg": "-29.2628", + "longitude_deg": "-65.0582", + "elevation_ft": "810", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-K", + "municipality": "Recreo", + "scheduled_service": "no", + "local_code": "HRE" + }, + { + "id": "39036", + "ident": "AR-0361", + "type": "heliport", + "name": "Transener S.A. Heliport", + "latitude_deg": "-38.1472", + "longitude_deg": "-65.8228", + "elevation_ft": "751", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Puelches", + "scheduled_service": "no", + "local_code": "HPU" + }, + { + "id": "39037", + "ident": "AR-0362", + "type": "heliport", + "name": "Transener S.A. Heliport", + "latitude_deg": "-33.0989", + "longitude_deg": "-68.5819", + "elevation_ft": "2220", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "Barreales", + "scheduled_service": "no", + "local_code": "HCR" + }, + { + "id": "39038", + "ident": "AR-0363", + "type": "heliport", + "name": "Transener S.A. Heliport", + "latitude_deg": "-40.1622", + "longitude_deg": "-70.3917", + "elevation_ft": "2302", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Piedra Del Aguila", + "scheduled_service": "no", + "local_code": "HPG" + }, + { + "id": "39039", + "ident": "AR-0364", + "type": "heliport", + "name": "Transener S.A. Heliport", + "latitude_deg": "-39.5675", + "longitude_deg": "-65.6886", + "elevation_ft": "426", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Choele Choel", + "scheduled_service": "no", + "local_code": "HCC" + }, + { + "id": "39040", + "ident": "AR-0365", + "type": "heliport", + "name": "Transener S.A. Heliport", + "latitude_deg": "-29.4606", + "longitude_deg": "-59.7636", + "elevation_ft": "190", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Romang", + "scheduled_service": "no", + "local_code": "HRT" + }, + { + "id": "39041", + "ident": "AR-0366", + "type": "heliport", + "name": "Transener S.A. Heliport", + "latitude_deg": "-26.9936", + "longitude_deg": "-65.1636", + "elevation_ft": "1239", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-T", + "municipality": "El Bracho", + "scheduled_service": "no", + "local_code": "HBO" + }, + { + "id": "39042", + "ident": "AR-0367", + "type": "heliport", + "name": "Almafuerte / Transener S.A. Heliport", + "latitude_deg": "-32.203", + "longitude_deg": "-64.315", + "elevation_ft": "1640", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Almafuerte", + "scheduled_service": "no", + "local_code": "HAT" + }, + { + "id": "39043", + "ident": "AR-0368", + "type": "heliport", + "name": "Montecristo / Transener S.A. Heliport", + "latitude_deg": "-31.3392", + "longitude_deg": "-63.9138", + "elevation_ft": "1082", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Monte Cristo", + "scheduled_service": "no", + "local_code": "HMT" + }, + { + "id": "39044", + "ident": "AR-0369", + "type": "small_airport", + "name": "Chevron Texaco Airport", + "latitude_deg": "-37.365002", + "longitude_deg": "-69.300278", + "elevation_ft": "2896", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "El Trapial", + "scheduled_service": "no", + "local_code": "TXO" + }, + { + "id": "39045", + "ident": "AR-0370", + "type": "small_airport", + "name": "Horco Molle Aeroclub Airport", + "latitude_deg": "-26.7961006165", + "longitude_deg": "-65.3091964722", + "elevation_ft": "1902", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-T", + "municipality": "Tucumán", + "scheduled_service": "no", + "local_code": "TCM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mauricio_Gilli_Aerodrome", + "keywords": "Mauricio Gilli Aerodrome" + }, + { + "id": "39046", + "ident": "AR-0371", + "type": "heliport", + "name": "Unidad Penitenciaria N° 30 Heliport", + "latitude_deg": "-36.0444", + "longitude_deg": "-60.0167", + "elevation_ft": "180", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "General Alvear", + "scheduled_service": "no", + "local_code": "HUP" + }, + { + "id": "39047", + "ident": "AR-0372", + "type": "small_airport", + "name": "Urdinarrain Airport", + "latitude_deg": "-32.6964", + "longitude_deg": "-58.8992", + "elevation_ft": "216", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Urdinarrain", + "scheduled_service": "no", + "local_code": "URD" + }, + { + "id": "39048", + "ident": "AR-0373", + "type": "small_airport", + "name": "Veinticinco De Mayo Airport", + "latitude_deg": "-35.4464", + "longitude_deg": "-60.0886", + "elevation_ft": "164", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Veinticinco De Mayo", + "scheduled_service": "no", + "local_code": "MAY" + }, + { + "id": "39049", + "ident": "AR-0374", + "type": "small_airport", + "name": "Vera Airport", + "latitude_deg": "-29.4681", + "longitude_deg": "-60.2261", + "elevation_ft": "190", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Vera", + "scheduled_service": "no", + "local_code": "VER" + }, + { + "id": "39050", + "ident": "AR-0375", + "type": "small_airport", + "name": "Veronica Airport", + "latitude_deg": "-35.4", + "longitude_deg": "-57.3667", + "elevation_ft": "55", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Veronica", + "scheduled_service": "no", + "local_code": "VNA" + }, + { + "id": "39051", + "ident": "AR-0376", + "type": "small_airport", + "name": "Victoria Airport", + "latitude_deg": "-32.5844", + "longitude_deg": "-60.1847", + "elevation_ft": "75", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Victoria", + "scheduled_service": "no", + "local_code": "VIC" + }, + { + "id": "39052", + "ident": "AR-0377", + "type": "small_airport", + "name": "Victorica Airport", + "latitude_deg": "-36.237499237099996", + "longitude_deg": "-65.450553894", + "elevation_ft": "1020", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Victorica", + "scheduled_service": "no", + "gps_code": "SAHV", + "local_code": "VCA" + }, + { + "id": "39053", + "ident": "AR-0378", + "type": "small_airport", + "name": "Villa Del Rosario Airport", + "latitude_deg": "-31.579313", + "longitude_deg": "-63.539184", + "elevation_ft": "830", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Villa Del Rosario", + "scheduled_service": "no", + "local_code": "VDR" + }, + { + "id": "39054", + "ident": "AR-0379", + "type": "small_airport", + "name": "Villa General Belgrano Airport", + "latitude_deg": "-31.9652996063", + "longitude_deg": "-64.5643997192", + "elevation_ft": "2755", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Villa General Belgrano", + "scheduled_service": "no", + "local_code": "VGB" + }, + { + "id": "39055", + "ident": "AR-0380", + "type": "small_airport", + "name": "Villa Ocampo Airport", + "latitude_deg": "-28.4969", + "longitude_deg": "-59.3256", + "elevation_ft": "160", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Villa Ocampo", + "scheduled_service": "no", + "local_code": "VPO" + }, + { + "id": "39056", + "ident": "AR-0381", + "type": "small_airport", + "name": "Villa Regina Airport", + "latitude_deg": "-39.073600769", + "longitude_deg": "-67.08000183109999", + "elevation_ft": "934", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Villa Regina", + "scheduled_service": "no", + "local_code": "VRG" + }, + { + "id": "39057", + "ident": "AR-0382", + "type": "small_airport", + "name": "Villa Rumipal Airport", + "latitude_deg": "-32.1850013733", + "longitude_deg": "-64.4882965088", + "elevation_ft": "2184", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Villa Rumipal", + "scheduled_service": "no", + "local_code": "VRU" + }, + { + "id": "39058", + "ident": "AR-0383", + "type": "small_airport", + "name": "Zarate Airport", + "latitude_deg": "-34.119912", + "longitude_deg": "-59.083198", + "elevation_ft": "85", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Zarate", + "scheduled_service": "no", + "gps_code": "SA2L", + "local_code": "ATE" + }, + { + "id": "42806", + "ident": "AR-0384", + "type": "small_airport", + "name": "Belingueres Aviación Airport", + "latitude_deg": "-34.2778", + "longitude_deg": "-60.5044", + "elevation_ft": "209", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Ines Indart", + "scheduled_service": "no", + "local_code": "IBA" + }, + { + "id": "42807", + "ident": "AR-0385", + "type": "small_airport", + "name": "Bocca Airport", + "latitude_deg": "-31.8711", + "longitude_deg": "-61.9511", + "elevation_ft": "344", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "San Jorge", + "scheduled_service": "no", + "local_code": "SJB" + }, + { + "id": "42808", + "ident": "AR-0386", + "type": "small_airport", + "name": "Buena Esperanza Airport", + "latitude_deg": "-30.5306", + "longitude_deg": "-58.3972", + "elevation_ft": "246", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Los Conquistadores", + "scheduled_service": "no", + "local_code": "EZA" + }, + { + "id": "42809", + "ident": "AR-0387", + "type": "small_airport", + "name": "Buenos Aires Airport", + "latitude_deg": "-33.859722", + "longitude_deg": "-59.468887", + "elevation_ft": "85", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Pueblo Alsina, Baradero", + "scheduled_service": "no", + "local_code": "BEX" + }, + { + "id": "42810", + "ident": "AR-0388", + "type": "small_airport", + "name": "Burdisso Airport", + "latitude_deg": "-32.2406", + "longitude_deg": "-61.7583", + "elevation_ft": "364", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "El Trebol", + "scheduled_service": "no", + "local_code": "TBL" + }, + { + "id": "42811", + "ident": "AR-0389", + "type": "closed", + "name": "Carlos Saqui Airport", + "latitude_deg": "-31.635000228881836", + "longitude_deg": "-63.86109924316406", + "elevation_ft": "1066", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Rio Segundo", + "scheduled_service": "no", + "local_code": "RSA" + }, + { + "id": "42812", + "ident": "AR-0390", + "type": "small_airport", + "name": "Carmen de Patagones Airport", + "latitude_deg": "-40.7781", + "longitude_deg": "-62.9803", + "elevation_ft": "131", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Carmen de Patagones", + "scheduled_service": "no", + "gps_code": "SA3R", + "iata_code": "CPG", + "local_code": "PAT" + }, + { + "id": "42813", + "ident": "AR-0391", + "type": "small_airport", + "name": "Mar del Plata Gliding Club", + "latitude_deg": "-38.0153", + "longitude_deg": "-57.6536", + "elevation_ft": "147", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Mar del Plata", + "scheduled_service": "no", + "local_code": "MPP" + }, + { + "id": "42814", + "ident": "AR-0392", + "type": "small_airport", + "name": "Colonia Tirolesa Airport", + "latitude_deg": "-31.244722", + "longitude_deg": "-64.035278", + "elevation_ft": "1335", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Colonia Tirolesa", + "scheduled_service": "no", + "local_code": "TIR" + }, + { + "id": "42815", + "ident": "AR-0393", + "type": "small_airport", + "name": "Comandante Eduardo A. Olivero Airport", + "latitude_deg": "-37.347686", + "longitude_deg": "-58.9853", + "elevation_ft": "633", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Tandil", + "scheduled_service": "no", + "gps_code": "SA1A" + }, + { + "id": "42816", + "ident": "AR-0394", + "type": "small_airport", + "name": "Concepción Airport", + "latitude_deg": "-27.345434", + "longitude_deg": "-65.617973", + "elevation_ft": "1200", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-T", + "municipality": "Concepción", + "scheduled_service": "no", + "local_code": "CCP" + }, + { + "id": "42817", + "ident": "AR-0395", + "type": "small_airport", + "name": "Brandsen Airport", + "latitude_deg": "-35.1828", + "longitude_deg": "-58.2839", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Brandsen", + "scheduled_service": "no", + "local_code": "SEN", + "keywords": "Coronel Brandsen" + }, + { + "id": "42818", + "ident": "AR-0396", + "type": "small_airport", + "name": "Coronel Moldes Airport", + "latitude_deg": "-33.616669", + "longitude_deg": "-64.612503", + "elevation_ft": "1170", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Coronel Moldes", + "scheduled_service": "no", + "local_code": "MLD" + }, + { + "id": "42819", + "ident": "AR-0397", + "type": "small_airport", + "name": "Di Giuseppe Airport", + "latitude_deg": "-32.8908", + "longitude_deg": "-61.1239", + "elevation_ft": "291", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Carcarañá", + "scheduled_service": "no", + "local_code": "CDI" + }, + { + "id": "42820", + "ident": "AR-0398", + "type": "small_airport", + "name": "Dinaluca S.A. Airport", + "latitude_deg": "-27.3828", + "longitude_deg": "-57.6442", + "elevation_ft": "219", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Berón de Astrada", + "scheduled_service": "no", + "local_code": "BAD" + }, + { + "id": "42821", + "ident": "AR-0399", + "type": "small_airport", + "name": "General Rodriguez Ildefonso Durana Airport", + "latitude_deg": "-34.6803", + "longitude_deg": "-59.0358", + "elevation_ft": "91", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "General Rodriguez", + "scheduled_service": "no", + "local_code": "GEZ", + "keywords": "EAA Argentina, Experimentales Aeronaves Asociación Argentina, GEZ" + }, + { + "id": "42822", + "ident": "AR-0400", + "type": "small_airport", + "name": "El Girasol Airport", + "latitude_deg": "-33.6661", + "longitude_deg": "-59.8339", + "elevation_ft": "91", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Gobernador Castro", + "scheduled_service": "no", + "local_code": "GOC" + }, + { + "id": "42823", + "ident": "AR-0401", + "type": "small_airport", + "name": "El Gringo Airport", + "latitude_deg": "-27.3086", + "longitude_deg": "-61.2114", + "elevation_ft": "301", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-H", + "municipality": "Charata", + "scheduled_service": "no", + "local_code": "CHT" + }, + { + "id": "42824", + "ident": "AR-0402", + "type": "small_airport", + "name": "El Jagüel Airport", + "latitude_deg": "-31.7994", + "longitude_deg": "-59.0339", + "elevation_ft": "200", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Villaguay", + "scheduled_service": "no", + "local_code": "UEL" + }, + { + "id": "42825", + "ident": "AR-0403", + "type": "small_airport", + "name": "El Malagueño Airport", + "latitude_deg": "-31.6994", + "longitude_deg": "-59.4006", + "elevation_ft": "180", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Villaguay", + "scheduled_service": "no", + "local_code": "VLL" + }, + { + "id": "42826", + "ident": "AR-0404", + "type": "small_airport", + "name": "El Pilincho Airport", + "latitude_deg": "-30.3872", + "longitude_deg": "-57.9683", + "elevation_ft": "228", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Monte Caseros", + "scheduled_service": "no", + "local_code": "MCP" + }, + { + "id": "42827", + "ident": "AR-0405", + "type": "small_airport", + "name": "El Toto Airport", + "latitude_deg": "-31.650278", + "longitude_deg": "-64.368889", + "elevation_ft": "540", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Alta Gracia", + "scheduled_service": "no", + "local_code": "TOT" + }, + { + "id": "42828", + "ident": "AR-0406", + "type": "small_airport", + "name": "Establecimiento La Adelita Airport", + "latitude_deg": "-31.3925", + "longitude_deg": "-61.1431", + "elevation_ft": "164", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Humboldt", + "scheduled_service": "no", + "local_code": "HUM" + }, + { + "id": "42829", + "ident": "AR-0407", + "type": "small_airport", + "name": "Establecimiento La Florencia Airport", + "latitude_deg": "-33.0769", + "longitude_deg": "-61.3178", + "elevation_ft": "246", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Los Molinos", + "scheduled_service": "no", + "local_code": "LMF" + }, + { + "id": "42830", + "ident": "AR-0408", + "type": "small_airport", + "name": "Estancia Caridad Airport", + "latitude_deg": "-43.72139", + "longitude_deg": "-71.24556", + "elevation_ft": "2427", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "El Corcovado", + "scheduled_service": "no", + "local_code": "VEC" + }, + { + "id": "42831", + "ident": "AR-0409", + "type": "closed", + "name": "Estancia El Chañar Airport", + "latitude_deg": "-31.2887", + "longitude_deg": "-62.4189", + "elevation_ft": "331", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Colonia Marina", + "scheduled_service": "no", + "local_code": "CLM" + }, + { + "id": "42832", + "ident": "AR-0410", + "type": "small_airport", + "name": "Estancia La Leonor Airport", + "latitude_deg": "-26.1494", + "longitude_deg": "-59.6672", + "elevation_ft": "285", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-H", + "municipality": "Presidencia Roca", + "scheduled_service": "no", + "local_code": "PRA" + }, + { + "id": "42833", + "ident": "AR-0411", + "type": "small_airport", + "name": "Estancia La Providencia Airport", + "latitude_deg": "-32.9411", + "longitude_deg": "-58.565", + "elevation_ft": "65", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Gualeguaychú", + "scheduled_service": "no", + "local_code": "GLP" + }, + { + "id": "42834", + "ident": "AR-0412", + "type": "small_airport", + "name": "Estancia La Salvación Airport", + "latitude_deg": "-25.2767", + "longitude_deg": "-58.9375", + "elevation_ft": "321", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-P", + "municipality": "Pirane", + "scheduled_service": "no", + "local_code": "PLS" + }, + { + "id": "42835", + "ident": "AR-0413", + "type": "small_airport", + "name": "Estancia Lucila Airport", + "latitude_deg": "-38.3086", + "longitude_deg": "-58.105", + "elevation_ft": "72", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Mar del Sur", + "scheduled_service": "no", + "local_code": "ELL" + }, + { + "id": "42836", + "ident": "AR-0414", + "type": "small_airport", + "name": "Estancia San Vicente Airport", + "latitude_deg": "-32.9989", + "longitude_deg": "-61.7781", + "elevation_ft": "229", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Tortugas", + "scheduled_service": "no", + "local_code": "TSV" + }, + { + "id": "42837", + "ident": "AR-0415", + "type": "small_airport", + "name": "Estancia Santa Romana Airport", + "latitude_deg": "-33.753334", + "longitude_deg": "-65.246391", + "elevation_ft": "1548", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-D", + "municipality": "Mercedes", + "scheduled_service": "no", + "local_code": "MSR" + }, + { + "id": "42838", + "ident": "AR-0416", + "type": "small_airport", + "name": "Estancia Villa Corina Airport", + "latitude_deg": "-28.035", + "longitude_deg": "-56.0678", + "elevation_ft": "403", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Gobernador Valentin Virasoro", + "scheduled_service": "no", + "local_code": "EVC" + }, + { + "id": "42839", + "ident": "AR-0417", + "type": "small_airport", + "name": "Estancia Villa María", + "latitude_deg": "-34.6433", + "longitude_deg": "-59.1272", + "elevation_ft": "104", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Luján", + "scheduled_service": "no", + "local_code": "LVM" + }, + { + "id": "42840", + "ident": "AR-0418", + "type": "small_airport", + "name": "F.A.T. Airport", + "latitude_deg": "-34.1767", + "longitude_deg": "-61.5069", + "elevation_ft": "285", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Teodelina", + "scheduled_service": "no", + "local_code": "TEO" + }, + { + "id": "42841", + "ident": "AR-0419", + "type": "small_airport", + "name": "Finca La Frontera Airport", + "latitude_deg": "-22.12351", + "longitude_deg": "-63.29055", + "elevation_ft": "160", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Aguaray, San Martín", + "scheduled_service": "no", + "local_code": "SMF" + }, + { + "id": "42842", + "ident": "AR-0420", + "type": "small_airport", + "name": "Firmat Airport", + "latitude_deg": "-33.4661", + "longitude_deg": "-61.4842", + "elevation_ft": "344", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Firmat", + "scheduled_service": "no", + "local_code": "FIM" + }, + { + "id": "42843", + "ident": "AR-0421", + "type": "small_airport", + "name": "Fumigaciones Campagnucci Airport", + "latitude_deg": "-33.3239", + "longitude_deg": "-60.6658", + "elevation_ft": "157", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Coronel Bogado", + "scheduled_service": "no", + "local_code": "BOG" + }, + { + "id": "42844", + "ident": "AR-0422", + "type": "small_airport", + "name": "Fumigaciones Fredy Airport", + "latitude_deg": "-34.2361", + "longitude_deg": "-60.5819", + "elevation_ft": "176", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Hunter", + "scheduled_service": "no", + "local_code": "PRC" + }, + { + "id": "42845", + "ident": "AR-0423", + "type": "small_airport", + "name": "Fumigaciones González Airport", + "latitude_deg": "-32.3589", + "longitude_deg": "-60.9797", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Monje", + "scheduled_service": "no", + "local_code": "MON" + }, + { + "id": "42846", + "ident": "AR-0424", + "type": "small_airport", + "name": "General Belgrano Airport", + "latitude_deg": "-24.745834", + "longitude_deg": "-65.418892", + "elevation_ft": "4136", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "General Belgrano - Salta", + "scheduled_service": "no", + "local_code": "GBL", + "home_link": "http://www.aeroclubsalta.com/", + "keywords": "SA74" + }, + { + "id": "42847", + "ident": "AR-0425", + "type": "small_airport", + "name": "General San Martin (La Pampa) Airport", + "latitude_deg": "-37.94972", + "longitude_deg": "-63.6175", + "elevation_ft": "528", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "General San Martin", + "scheduled_service": "no", + "local_code": "SMT" + }, + { + "id": "42848", + "ident": "AR-0426", + "type": "small_airport", + "name": "Ginevro Airport", + "latitude_deg": "-31.864445", + "longitude_deg": "-62.844166", + "elevation_ft": "475", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Las Varillas", + "scheduled_service": "no", + "local_code": "LVR" + }, + { + "id": "42849", + "ident": "AR-0427", + "type": "small_airport", + "name": "Gualeguay Aeroclub Airport", + "latitude_deg": "-33.0994", + "longitude_deg": "-59.4172", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Gualeguay", + "scheduled_service": "no", + "local_code": "UAE" + }, + { + "id": "42850", + "ident": "AR-0428", + "type": "closed", + "name": "Guatraché Airport", + "latitude_deg": "-37.682800293", + "longitude_deg": "-63.5508003235", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Guatraché", + "scheduled_service": "no", + "local_code": "GTE" + }, + { + "id": "42851", + "ident": "AR-0429", + "type": "small_airport", + "name": "Haras La Pomme Airport", + "latitude_deg": "-34.2078", + "longitude_deg": "-59.3856", + "elevation_ft": "91", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "San Antonio de Areco", + "scheduled_service": "no", + "local_code": "SHP" + }, + { + "id": "42852", + "ident": "AR-0430", + "type": "closed", + "name": "Haras Trelliris Airport", + "latitude_deg": "-35.33138", + "longitude_deg": "-60.57916", + "elevation_ft": "196", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Comodoro Py", + "scheduled_service": "no", + "local_code": "BHT" + }, + { + "id": "42853", + "ident": "AR-0431", + "type": "small_airport", + "name": "Hosteria San Huberto Airport", + "latitude_deg": "-39.7038879395", + "longitude_deg": "-71.16999816890001", + "elevation_ft": "2810", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Junin de Los Andes", + "scheduled_service": "no", + "local_code": "JAH" + }, + { + "id": "42854", + "ident": "AR-0432", + "type": "small_airport", + "name": "Iriberri Airport", + "latitude_deg": "-38.478789", + "longitude_deg": "-58.804836", + "elevation_ft": "108", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Necochea", + "scheduled_service": "no", + "local_code": "NEI" + }, + { + "id": "42855", + "ident": "AR-0433", + "type": "small_airport", + "name": "Islas Del Ibicuy Airport", + "latitude_deg": "-33.75", + "longitude_deg": "-58.7", + "elevation_ft": "19", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Islas del Ibicuy", + "scheduled_service": "no", + "local_code": "IBY" + }, + { + "id": "42856", + "ident": "AR-0434", + "type": "small_airport", + "name": "La Carlota Airport", + "latitude_deg": "-33.450000762900004", + "longitude_deg": "-63.3499984741", + "elevation_ft": "505", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "La Carlota", + "scheduled_service": "no", + "local_code": "LCT" + }, + { + "id": "42857", + "ident": "AR-0435", + "type": "small_airport", + "name": "La Chacra Airport", + "latitude_deg": "-34.81255", + "longitude_deg": "-62.522467", + "elevation_ft": "357", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Ameghino", + "scheduled_service": "no", + "gps_code": "SA50", + "local_code": "ALC" + }, + { + "id": "42858", + "ident": "AR-0436", + "type": "small_airport", + "name": "La Esmeralda Airport", + "latitude_deg": "-29.9939", + "longitude_deg": "-57.8378", + "elevation_ft": "265", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Libertad", + "scheduled_service": "no", + "local_code": "LLE" + }, + { + "id": "42859", + "ident": "AR-0437", + "type": "small_airport", + "name": "La Lucía Airport", + "latitude_deg": "-33.0119", + "longitude_deg": "-61.0608", + "elevation_ft": "239", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Pujato", + "scheduled_service": "no", + "local_code": "PLL" + }, + { + "id": "42860", + "ident": "AR-0438", + "type": "small_airport", + "name": "La Madrugada Airport", + "latitude_deg": "-38.0036", + "longitude_deg": "-59.3489", + "elevation_ft": "449", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Juan N. Fernández", + "scheduled_service": "no", + "local_code": "LMD" + }, + { + "id": "42861", + "ident": "AR-0439", + "type": "small_airport", + "name": "La Mariela Airport", + "latitude_deg": "-35.7828", + "longitude_deg": "-61.9342", + "elevation_ft": "282", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Pehuajó", + "scheduled_service": "no", + "local_code": "PJO" + }, + { + "id": "42862", + "ident": "AR-0440", + "type": "small_airport", + "name": "La Zulema Airport", + "latitude_deg": "-32.4897", + "longitude_deg": "-62.6714", + "elevation_ft": "423", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Bell Ville", + "scheduled_service": "no", + "local_code": "ZLM" + }, + { + "id": "42863", + "ident": "AR-0441", + "type": "small_airport", + "name": "Las Lilas Airport", + "latitude_deg": "-35.1328", + "longitude_deg": "-62.2175", + "elevation_ft": "350", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Pasteur", + "scheduled_service": "no", + "local_code": "PAS" + }, + { + "id": "42864", + "ident": "AR-0442", + "type": "small_airport", + "name": "Malabrigo Airport", + "latitude_deg": "-29.35", + "longitude_deg": "-59.9667", + "elevation_ft": "177", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Malabrigo", + "scheduled_service": "no", + "local_code": "MLA" + }, + { + "id": "42865", + "ident": "AR-0443", + "type": "closed", + "name": "Match Point Airport", + "latitude_deg": "-34.5161", + "longitude_deg": "-59.1339", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Luján", + "scheduled_service": "no", + "local_code": "LMP" + }, + { + "id": "42866", + "ident": "AR-0444", + "type": "small_airport", + "name": "Montes De Oca Airport", + "latitude_deg": "-32.5811", + "longitude_deg": "-61.8408", + "elevation_ft": "62", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Montes de Oca", + "scheduled_service": "no", + "local_code": "OCA" + }, + { + "id": "42867", + "ident": "AR-0445", + "type": "small_airport", + "name": "Ñancu Airport", + "latitude_deg": "-35.6161", + "longitude_deg": "-63.7508", + "elevation_ft": "446", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "General Pico", + "scheduled_service": "no", + "local_code": "GPU" + }, + { + "id": "42868", + "ident": "AR-0446", + "type": "small_airport", + "name": "Pedro Ferrari Airport", + "latitude_deg": "-32.9278", + "longitude_deg": "-62.4336", + "elevation_ft": "354", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Monte Buey", + "scheduled_service": "no", + "local_code": "MBF" + }, + { + "id": "42869", + "ident": "AR-0447", + "type": "small_airport", + "name": "Petrazzini Airport", + "latitude_deg": "-38.3478", + "longitude_deg": "-60.2761", + "elevation_ft": "350", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Tres Arroyos", + "scheduled_service": "no", + "local_code": "YOP" + }, + { + "id": "42870", + "ident": "AR-0448", + "type": "small_airport", + "name": "Petruk Airport", + "latitude_deg": "-27.0878", + "longitude_deg": "-58.6694", + "elevation_ft": "177", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-H", + "municipality": "Las Palmas", + "scheduled_service": "no", + "local_code": "LPP" + }, + { + "id": "42871", + "ident": "AR-0449", + "type": "small_airport", + "name": "Pettilep Airport", + "latitude_deg": "-33.005", + "longitude_deg": "-61.0194", + "elevation_ft": "200", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Pujato", + "scheduled_service": "no", + "local_code": "PUP" + }, + { + "id": "42872", + "ident": "AR-0450", + "type": "small_airport", + "name": "Pettilep II Airport", + "latitude_deg": "-32.8039", + "longitude_deg": "-60.7989", + "elevation_ft": "180", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Ricardone", + "scheduled_service": "no", + "local_code": "PEP" + }, + { + "id": "42873", + "ident": "AR-0451", + "type": "small_airport", + "name": "Puerta De Avalos Airport", + "latitude_deg": "-24.314679", + "longitude_deg": "-65.247198", + "elevation_ft": "3904", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Y", + "municipality": "Jujuy", + "scheduled_service": "no", + "local_code": "PDA" + }, + { + "id": "42874", + "ident": "AR-0452", + "type": "small_airport", + "name": "Pulverizaciones M.H. Airport", + "latitude_deg": "-27.4831", + "longitude_deg": "-61.6486", + "elevation_ft": "318", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-H", + "municipality": "Gancedo", + "scheduled_service": "no", + "local_code": "GDO" + }, + { + "id": "42875", + "ident": "AR-0453", + "type": "small_airport", + "name": "Saldungaray Airport", + "latitude_deg": "-38.216388702399996", + "longitude_deg": "-61.750831604", + "elevation_ft": "747", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Saldungaray", + "scheduled_service": "no", + "local_code": "SLG" + }, + { + "id": "42876", + "ident": "AR-0454", + "type": "small_airport", + "name": "San Cayetano Airport", + "latitude_deg": "-38.3339", + "longitude_deg": "-59.6303", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "San Cayetano", + "scheduled_service": "no", + "local_code": "CAY" + }, + { + "id": "42877", + "ident": "AR-0455", + "type": "small_airport", + "name": "San Gregorio Airport", + "latitude_deg": "-34.3169", + "longitude_deg": "-62.0192", + "elevation_ft": "347", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "San Gregorio", + "scheduled_service": "no", + "local_code": "SGE" + }, + { + "id": "42878", + "ident": "AR-0456", + "type": "small_airport", + "name": "San Ignacio Airport", + "latitude_deg": "-39.847499847399995", + "longitude_deg": "-70.8638916016", + "elevation_ft": "2267", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Junin de Los Andes", + "scheduled_service": "no", + "local_code": "JLA" + }, + { + "id": "42879", + "ident": "AR-0457", + "type": "small_airport", + "name": "San José De La Dormida Airport", + "latitude_deg": "-30.2775001526", + "longitude_deg": "-63.8574981689", + "elevation_ft": "1387", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "San José de La Dormida", + "scheduled_service": "no", + "local_code": "SJD" + }, + { + "id": "42880", + "ident": "AR-0458", + "type": "small_airport", + "name": "Santo Tomás de La Sierra Airport", + "latitude_deg": "-38.241804", + "longitude_deg": "-61.827675", + "elevation_ft": "895", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Saldungaray", + "scheduled_service": "no", + "local_code": "SLY" + }, + { + "id": "42881", + "ident": "AR-0459", + "type": "small_airport", + "name": "Savesa Airport", + "latitude_deg": "-33.7792", + "longitude_deg": "-61.9775", + "elevation_ft": "360", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Venado Tuerto", + "scheduled_service": "no", + "local_code": "VTS" + }, + { + "id": "42882", + "ident": "AR-0460", + "type": "small_airport", + "name": "Sigfrido Rohr Aviagro S.R.L. Airport", + "latitude_deg": "-34.8306", + "longitude_deg": "-62.4678", + "elevation_ft": "360", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Ameghino", + "scheduled_service": "no", + "gps_code": "SA51", + "local_code": "AME" + }, + { + "id": "42883", + "ident": "AR-0461", + "type": "small_airport", + "name": "Skare Airport", + "latitude_deg": "-34.3571833134", + "longitude_deg": "-60.1559829712", + "elevation_ft": "196", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Salto", + "scheduled_service": "no", + "local_code": "SSK" + }, + { + "id": "42884", + "ident": "AR-0462", + "type": "small_airport", + "name": "Termal Airport", + "latitude_deg": "-26.753611", + "longitude_deg": "-60.492222", + "elevation_ft": "308", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-H", + "municipality": "Presidencia Roque Sáenz Peña", + "scheduled_service": "no", + "gps_code": "SARS", + "iata_code": "PRQ", + "local_code": "PSP" + }, + { + "id": "42885", + "ident": "AR-0463", + "type": "small_airport", + "name": "Timboy Airport", + "latitude_deg": "-30.2236", + "longitude_deg": "-57.8444", + "elevation_ft": "213", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Monte Caseros", + "scheduled_service": "no", + "local_code": "MCT" + }, + { + "id": "42886", + "ident": "AR-0464", + "type": "small_airport", + "name": "Trevelin Airport", + "latitude_deg": "-43.08797", + "longitude_deg": "-71.47868", + "elevation_ft": "1245", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Trevelin", + "scheduled_service": "no", + "local_code": "TVN" + }, + { + "id": "45161", + "ident": "AR-0465", + "type": "small_airport", + "name": "Casilda Fumigaciones Airport", + "latitude_deg": "-33.176429", + "longitude_deg": "-61.20299", + "elevation_ft": "259", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Sanford", + "scheduled_service": "no", + "local_code": "SCF" + }, + { + "id": "42888", + "ident": "AR-0466", + "type": "small_airport", + "name": "Yapeyú Airport", + "latitude_deg": "-29.44393", + "longitude_deg": "-56.823915", + "elevation_ft": "214", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Yapeyú", + "scheduled_service": "no", + "local_code": "YPY" + }, + { + "id": "42889", + "ident": "AR-0467", + "type": "heliport", + "name": "Berrini Heliport", + "latitude_deg": "-31.4397", + "longitude_deg": "-64.3433", + "elevation_ft": "1811", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Córdoba", + "scheduled_service": "no", + "local_code": "HBR" + }, + { + "id": "42890", + "ident": "AR-0468", + "type": "heliport", + "name": "Campanopolis Heliport", + "latitude_deg": "-34.791746", + "longitude_deg": "-58.601936", + "elevation_ft": "19", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "La Matanza", + "scheduled_service": "no", + "local_code": "HIS" + }, + { + "id": "42891", + "ident": "AR-0469", + "type": "heliport", + "name": "Casa De Lata Heliport", + "latitude_deg": "-39.8153", + "longitude_deg": "-71.1681", + "elevation_ft": "3221", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Junín de Los andes", + "scheduled_service": "no", + "local_code": "HDL" + }, + { + "id": "42892", + "ident": "AR-0470", + "type": "heliport", + "name": "Country Club San Diego Heliport", + "latitude_deg": "-34.600503", + "longitude_deg": "-58.840933", + "elevation_ft": "71", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Moreno", + "scheduled_service": "no", + "local_code": "HSD" + }, + { + "id": "42893", + "ident": "AR-0471", + "type": "heliport", + "name": "Dayry Partners Americas Manufacturing Argentina Sa Heliport", + "latitude_deg": "-32.44", + "longitude_deg": "-63.2289", + "elevation_ft": "639", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Villa Nueva", + "scheduled_service": "no", + "local_code": "HNE" + }, + { + "id": "42894", + "ident": "AR-0472", + "type": "heliport", + "name": "Dr. Mariano Moreno Heliport", + "latitude_deg": "-34.5631", + "longitude_deg": "-58.7903", + "elevation_ft": "104", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "José C. Paz", + "scheduled_service": "no", + "local_code": "HMM" + }, + { + "id": "42895", + "ident": "AR-0473", + "type": "heliport", + "name": "Estancia La Pascuala Heliport", + "latitude_deg": "-37.3936", + "longitude_deg": "-58.9661", + "elevation_ft": "721", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Tandil", + "scheduled_service": "no", + "local_code": "HTD" + }, + { + "id": "42896", + "ident": "AR-0474", + "type": "heliport", + "name": "Heliplataforma Barcaza Yagana Heliport", + "latitude_deg": "-52.5225", + "longitude_deg": "-68.2806", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Barcaza Yagana", + "scheduled_service": "no", + "local_code": "HBY" + }, + { + "id": "42897", + "ident": "AR-0475", + "type": "heliport", + "name": "Heliplataforma Buque Skandi Patagonia Heliport", + "latitude_deg": "-52", + "longitude_deg": "-67", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Buque Skandi", + "scheduled_service": "no", + "local_code": "HSP" + }, + { + "id": "42898", + "ident": "AR-0476", + "type": "heliport", + "name": "Heliplataforma Equipo Modular M-10 Heliport", + "latitude_deg": "-52.5489", + "longitude_deg": "-68.3119", + "elevation_ft": "108", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "scheduled_service": "no", + "local_code": "HEM" + }, + { + "id": "42899", + "ident": "AR-0477", + "type": "heliport", + "name": "Metalúrgico / Miguel Colombise Heliport", + "latitude_deg": "-33.358949", + "longitude_deg": "-60.249377", + "elevation_ft": "88", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "San Nicolás de Los Arroyos", + "scheduled_service": "no", + "local_code": "HSN" + }, + { + "id": "42900", + "ident": "AR-0478", + "type": "heliport", + "name": "Pachón Minera Heliport", + "latitude_deg": "-31.7597", + "longitude_deg": "-70.4128", + "elevation_ft": "11810", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-J", + "municipality": "Pachón, Calingasta", + "scheduled_service": "no", + "local_code": "HPS" + }, + { + "id": "42901", + "ident": "AR-0479", + "type": "heliport", + "name": "Pernigotti Heliport", + "latitude_deg": "-27.7708", + "longitude_deg": "-64.2278", + "elevation_ft": "475", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "La Banda", + "scheduled_service": "no", + "local_code": "HBD" + }, + { + "id": "42902", + "ident": "AR-0480", + "type": "heliport", + "name": "Policia De La Provincia De Mendoza Heliport", + "latitude_deg": "-32.8783", + "longitude_deg": "-68.8681", + "elevation_ft": "2646", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "Mendoza", + "scheduled_service": "no", + "local_code": "HPD" + }, + { + "id": "42903", + "ident": "AR-0481", + "type": "heliport", + "name": "Roca Heliport", + "latitude_deg": "-32.06", + "longitude_deg": "-64.7794", + "elevation_ft": "3444", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Yacanto de Calamuchita", + "scheduled_service": "no", + "local_code": "HYC" + }, + { + "id": "42904", + "ident": "AR-0482", + "type": "heliport", + "name": "S.A.N.A. Heliport", + "latitude_deg": "-27.5494", + "longitude_deg": "-55.3336", + "elevation_ft": "905", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-N", + "municipality": "Leandro N. Alem", + "scheduled_service": "no", + "local_code": "HLA" + }, + { + "id": "42905", + "ident": "AR-0483", + "type": "heliport", + "name": "Austral S.A. Heliport", + "latitude_deg": "-52.7386", + "longitude_deg": "-68.5725", + "elevation_ft": "290", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Yacimiento Cañadón Alfa", + "scheduled_service": "no", + "local_code": "HCP" + }, + { + "id": "42906", + "ident": "AR-0484", + "type": "closed", + "name": "General Alvear Airport", + "latitude_deg": "-35.9783", + "longitude_deg": "-59.9061", + "elevation_ft": "164", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "General Alvear", + "scheduled_service": "no", + "local_code": "GAR" + }, + { + "id": "42907", + "ident": "AR-0485", + "type": "small_airport", + "name": "San Patricio Airport", + "latitude_deg": "-34.0403", + "longitude_deg": "-59.6944", + "elevation_ft": "147", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Capitán Sarmiento", + "scheduled_service": "no", + "local_code": "CSP" + }, + { + "id": "42908", + "ident": "AR-0486", + "type": "small_airport", + "name": "La Cura Malal Airport", + "latitude_deg": "-34.074938", + "longitude_deg": "-60.140829", + "elevation_ft": "121", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Arrecifes", + "scheduled_service": "no", + "local_code": "ACM" + }, + { + "id": "45153", + "ident": "AR-0487", + "type": "heliport", + "name": "Cañuelas Gas SA Heliport", + "latitude_deg": "-35.0583", + "longitude_deg": "-58.7883", + "elevation_ft": "95", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Cañuelas", + "scheduled_service": "no", + "local_code": "HGA" + }, + { + "id": "45154", + "ident": "AR-0488", + "type": "heliport", + "name": "Colonia La Capilla Heliport", + "latitude_deg": "-34.9167", + "longitude_deg": "-58.2508", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Florencio Varela", + "scheduled_service": "no", + "local_code": "HFV" + }, + { + "id": "45155", + "ident": "AR-0489", + "type": "heliport", + "name": "Miguel Colombise Heliport", + "latitude_deg": "-33.3617", + "longitude_deg": "-60.2511", + "elevation_ft": "88", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "San Nicolás", + "scheduled_service": "no", + "local_code": "HSN" + }, + { + "id": "45156", + "ident": "AR-0490", + "type": "heliport", + "name": "Piero Vara Heliport", + "latitude_deg": "-34.433151", + "longitude_deg": "-58.972485", + "elevation_ft": "39", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Pilar", + "scheduled_service": "no", + "local_code": "HPI" + }, + { + "id": "45157", + "ident": "AR-0491", + "type": "heliport", + "name": "Rio Cullen II Heliplatform", + "latitude_deg": "-52.8364", + "longitude_deg": "-68.1789", + "elevation_ft": "127", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "local_code": "HCE" + }, + { + "id": "45162", + "ident": "AR-0492", + "type": "small_airport", + "name": "La Argentina Airport", + "latitude_deg": "-35.996667", + "longitude_deg": "-62.705278", + "elevation_ft": "311", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Trenque Lauquen", + "scheduled_service": "no", + "local_code": "ATN" + }, + { + "id": "46644", + "ident": "AR-0493", + "type": "small_airport", + "name": "La Paz Airport", + "latitude_deg": "-33.467", + "longitude_deg": "-67.55", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "La Paz", + "scheduled_service": "no", + "gps_code": "SAMP", + "local_code": "PAZ" + }, + { + "id": "46645", + "ident": "AR-0494", + "type": "small_airport", + "name": "Colonia Sarmiento Airport", + "latitude_deg": "-45.582371", + "longitude_deg": "-68.999841", + "elevation_ft": "877", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Sarmiento", + "scheduled_service": "no", + "iata_code": "OLN", + "local_code": "STO" + }, + { + "id": "298878", + "ident": "AR-0495", + "type": "small_airport", + "name": "Agroaire Airport", + "latitude_deg": "-27.476346", + "longitude_deg": "-61.624434", + "elevation_ft": "330", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-H", + "municipality": "Gancedo", + "scheduled_service": "no", + "home_link": "http://guialocal.com.ar/agroaire.html" + }, + { + "id": "313007", + "ident": "AR-0496", + "type": "small_airport", + "name": "Aeroclub de El Chaltén Alf. G.N.A. Walter Omar D Anna", + "latitude_deg": "-49.53531", + "longitude_deg": "-72.51997", + "elevation_ft": "1279", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "El Chaltén", + "scheduled_service": "no", + "local_code": "ELX" + }, + { + "id": "313008", + "ident": "AR-0497", + "type": "small_airport", + "name": "Hipólito Yrigoyen Lago Posadas Airport", + "latitude_deg": "-47.565833", + "longitude_deg": "-71.74", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "scheduled_service": "no" + }, + { + "id": "313014", + "ident": "AR-0498", + "type": "small_airport", + "name": "Estancia La Adela Airport", + "latitude_deg": "-42.526064", + "longitude_deg": "-64.278661", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Puerto Piramides", + "scheduled_service": "no" + }, + { + "id": "313015", + "ident": "AR-0499", + "type": "small_airport", + "name": "Punta Delgada Airport", + "latitude_deg": "-42.766485", + "longitude_deg": "-63.645458", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Punta Delgada", + "scheduled_service": "no" + }, + { + "id": "313021", + "ident": "AR-0500", + "type": "small_airport", + "name": "Camarones Field", + "latitude_deg": "-44.779007", + "longitude_deg": "-65.719672", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Camarones", + "scheduled_service": "no" + }, + { + "id": "313022", + "ident": "AR-0501", + "type": "small_airport", + "name": "Caleta Valdés Field", + "latitude_deg": "-42.454874", + "longitude_deg": "-63.61908", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Valdés", + "scheduled_service": "no" + }, + { + "id": "313090", + "ident": "AR-0502", + "type": "small_airport", + "name": "Telsen", + "latitude_deg": "-42.383333", + "longitude_deg": "-66.95", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "scheduled_service": "no" + }, + { + "id": "313091", + "ident": "AR-0503", + "type": "small_airport", + "name": "Gan Gan Field", + "latitude_deg": "-42.521363", + "longitude_deg": "-68.287861", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "scheduled_service": "yes" + }, + { + "id": "313092", + "ident": "AR-0504", + "type": "small_airport", + "name": "Gastre Field", + "latitude_deg": "-42.276165", + "longitude_deg": "-69.221892", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "scheduled_service": "no" + }, + { + "id": "313093", + "ident": "AR-0505", + "type": "small_airport", + "name": "Cushamen Field", + "latitude_deg": "-42.17195981", + "longitude_deg": "-70.666176", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "scheduled_service": "no" + }, + { + "id": "313094", + "ident": "AR-0506", + "type": "small_airport", + "name": "Las Plumas Filed", + "latitude_deg": "-43.729305", + "longitude_deg": "-67.284822", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "scheduled_service": "no" + }, + { + "id": "314776", + "ident": "AR-0507", + "type": "small_airport", + "name": "Estancia Cullen South Airport", + "latitude_deg": "-52.9435", + "longitude_deg": "-68.4021", + "elevation_ft": "120", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Estancia Cullen", + "scheduled_service": "no" + }, + { + "id": "314777", + "ident": "AR-0508", + "type": "small_airport", + "name": "Estancia Sara Airport", + "latitude_deg": "-53.432", + "longitude_deg": "-68.167", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Estancia Sara", + "scheduled_service": "no" + }, + { + "id": "314778", + "ident": "AR-0509", + "type": "small_airport", + "name": "Rio Chico Highway Strip", + "latitude_deg": "-53.642", + "longitude_deg": "-67.9486", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "scheduled_service": "no" + }, + { + "id": "314780", + "ident": "AR-0510", + "type": "small_airport", + "name": "Los Robles Airport", + "latitude_deg": "-54.069", + "longitude_deg": "-67.6536", + "elevation_ft": "102", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Estancia El Roble", + "scheduled_service": "no" + }, + { + "id": "318230", + "ident": "AR-0511", + "type": "small_airport", + "name": "Agroalvear S.R.L. Airport", + "latitude_deg": "-33.06833", + "longitude_deg": "-60.66694", + "elevation_ft": "104", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Alvear", + "scheduled_service": "no", + "local_code": "ALV" + }, + { + "id": "318231", + "ident": "AR-0512", + "type": "small_airport", + "name": "Arias Airport", + "latitude_deg": "-33.664", + "longitude_deg": "-62.3751", + "elevation_ft": "415", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Arias", + "scheduled_service": "no", + "local_code": "COA" + }, + { + "id": "318238", + "ident": "AR-0513", + "type": "small_airport", + "name": "Estancia La Alborada", + "latitude_deg": "-37.462706", + "longitude_deg": "-58.188557", + "elevation_ft": "209", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Balcarce", + "scheduled_service": "no", + "local_code": "BLA" + }, + { + "id": "318241", + "ident": "AR-0514", + "type": "small_airport", + "name": "Finca Cuchuy Airport", + "latitude_deg": "-23.04", + "longitude_deg": "-63.7211", + "elevation_ft": "928", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Ballivian", + "scheduled_service": "no", + "local_code": "FCU" + }, + { + "id": "318243", + "ident": "AR-0515", + "type": "small_airport", + "name": "Calchaqui Airport", + "latitude_deg": "-29.85167", + "longitude_deg": "-60.29194", + "elevation_ft": "184", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Calchaqui", + "scheduled_service": "no", + "local_code": "CCI" + }, + { + "id": "318244", + "ident": "AR-0516", + "type": "small_airport", + "name": "Stiefel Airport", + "latitude_deg": "-31.99472", + "longitude_deg": "-61.60278", + "elevation_ft": "232", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Cañada Rosquin", + "scheduled_service": "no", + "local_code": "RST" + }, + { + "id": "318245", + "ident": "AR-0517", + "type": "small_airport", + "name": "Fumagro Airport", + "latitude_deg": "-37.214729", + "longitude_deg": "-62.780581", + "elevation_ft": "364", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Carhue", + "scheduled_service": "no", + "local_code": "CFU" + }, + { + "id": "318246", + "ident": "AR-0518", + "type": "small_airport", + "name": "Establecimiento La Maria Pilar Airport", + "latitude_deg": "-36.488606", + "longitude_deg": "-63.432958", + "elevation_ft": "410", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Catrilo", + "scheduled_service": "no", + "local_code": "CTP" + }, + { + "id": "318247", + "ident": "AR-0519", + "type": "small_airport", + "name": "Agroservicios Airport", + "latitude_deg": "-33.2723", + "longitude_deg": "-60.5707", + "elevation_ft": "144", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Coronel Bogado", + "scheduled_service": "no", + "local_code": "ACB" + }, + { + "id": "318248", + "ident": "AR-0520", + "type": "small_airport", + "name": "Alfomso Mengo Airport", + "latitude_deg": "-32.02444", + "longitude_deg": "-64.27944", + "elevation_ft": "1781", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Corralito", + "scheduled_service": "no", + "local_code": "CAM" + }, + { + "id": "318249", + "ident": "AR-0521", + "type": "small_airport", + "name": "Lomas del Espinillo Airport", + "latitude_deg": "-32.08806", + "longitude_deg": "-64.16972", + "elevation_ft": "1441", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Corralito", + "scheduled_service": "no", + "local_code": "CLE" + }, + { + "id": "318250", + "ident": "AR-0522", + "type": "small_airport", + "name": "Ita Ibate Airport", + "latitude_deg": "-27.44833", + "longitude_deg": "-57.422241", + "elevation_ft": "223", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Corrientes", + "scheduled_service": "no", + "local_code": "CII" + }, + { + "id": "318251", + "ident": "AR-0523", + "type": "small_airport", + "name": "Estancia San Rafael Airport", + "latitude_deg": "-25.04347", + "longitude_deg": "-58.5915", + "elevation_ft": "288", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-P", + "municipality": "El Espinillo", + "scheduled_service": "no", + "local_code": "ESR" + }, + { + "id": "318252", + "ident": "AR-0524", + "type": "small_airport", + "name": "Bernardo's Airport", + "latitude_deg": "-32.2506", + "longitude_deg": "-61.6519", + "elevation_ft": "290", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "El Trébol", + "scheduled_service": "no", + "local_code": "TDB" + }, + { + "id": "318253", + "ident": "AR-0525", + "type": "small_airport", + "name": "Salvita Airport", + "latitude_deg": "-23.2128", + "longitude_deg": "-64.0339", + "elevation_ft": "928", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Embarcación", + "scheduled_service": "no", + "local_code": "SLV" + }, + { + "id": "318254", + "ident": "AR-0526", + "type": "small_airport", + "name": "El Desafio", + "latitude_deg": "-23.2426", + "longitude_deg": "-63.323", + "elevation_ft": "800", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Fortin Dragones", + "scheduled_service": "no", + "local_code": "FDD" + }, + { + "id": "318255", + "ident": "AR-0527", + "type": "small_airport", + "name": "Finca La Hercilia Airport", + "latitude_deg": "-22.6147", + "longitude_deg": "-63.662759", + "elevation_ft": "1227", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "General Mosconi", + "scheduled_service": "no", + "local_code": "FLH" + }, + { + "id": "318256", + "ident": "AR-0528", + "type": "small_airport", + "name": "Kalbermatter Airport", + "latitude_deg": "-27.26028", + "longitude_deg": "-61.47444", + "elevation_ft": "331", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-H", + "municipality": "General Pinedo", + "scheduled_service": "no", + "local_code": "GPK" + }, + { + "id": "318257", + "ident": "AR-0529", + "type": "small_airport", + "name": "Estancia El Potrero Airport", + "latitude_deg": "-32.97472", + "longitude_deg": "-58.25389", + "elevation_ft": "88", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Gualeguaychu", + "scheduled_service": "no", + "local_code": "GEP" + }, + { + "id": "318259", + "ident": "AR-0530", + "type": "small_airport", + "name": "Plus Agroservicios Aereos S.R.L. Airport", + "latitude_deg": "-33.8136", + "longitude_deg": "-61.3357", + "elevation_ft": "325", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Hughes", + "scheduled_service": "no", + "local_code": "HGS" + }, + { + "id": "318260", + "ident": "AR-0531", + "type": "small_airport", + "name": "Biondi Airport]", + "latitude_deg": "-33.2232", + "longitude_deg": "-62.4046", + "elevation_ft": "400", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Isla Verde", + "scheduled_service": "no", + "local_code": "IVL" + }, + { + "id": "318263", + "ident": "AR-0532", + "type": "small_airport", + "name": "Casajus", + "latitude_deg": "-33.3882", + "longitude_deg": "-63.3055", + "elevation_ft": "475", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "La Carlota", + "scheduled_service": "no", + "local_code": "LCC" + }, + { + "id": "318264", + "ident": "AR-0533", + "type": "small_airport", + "name": "Don Emilio Airport", + "latitude_deg": "-26.73247", + "longitude_deg": "-64.88455", + "elevation_ft": "1525", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-T", + "municipality": "La Ramada De Abajo", + "scheduled_service": "no", + "local_code": "LRE" + }, + { + "id": "318265", + "ident": "AR-0534", + "type": "small_airport", + "name": "AeroSoluciones Airport", + "latitude_deg": "-24.74889", + "longitude_deg": "-64.235", + "elevation_ft": "1614", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Las Lajitas", + "scheduled_service": "no", + "local_code": "LLA" + }, + { + "id": "318266", + "ident": "AR-0535", + "type": "small_airport", + "name": "Don Alberto Airport", + "latitude_deg": "-35.8696", + "longitude_deg": "-57.8768", + "elevation_ft": "35", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-K", + "municipality": "Lezama", + "scheduled_service": "no", + "local_code": "LDA" + }, + { + "id": "318268", + "ident": "AR-0536", + "type": "small_airport", + "name": "Fumigaciones Ortega Airport", + "latitude_deg": "-35.275617", + "longitude_deg": "-61.55652", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Martinez de Hoz", + "scheduled_service": "no", + "local_code": "DOF" + }, + { + "id": "318269", + "ident": "AR-0537", + "type": "small_airport", + "name": "Campo San Jose Airport", + "latitude_deg": "-30.77778", + "longitude_deg": "-62.01472", + "elevation_ft": "331", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Morteros", + "scheduled_service": "no", + "local_code": "CSJ" + }, + { + "id": "318270", + "ident": "AR-0538", + "type": "small_airport", + "name": "Pulverizaciones Aerosur Airport", + "latitude_deg": "-38.576401", + "longitude_deg": "-58.796429", + "elevation_ft": "55", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Necochea", + "scheduled_service": "no", + "local_code": "NPA" + }, + { + "id": "318271", + "ident": "AR-0539", + "type": "small_airport", + "name": "Finca Toloche Airport", + "latitude_deg": "-25.4346", + "longitude_deg": "-63.8578", + "elevation_ft": "1040", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Nuestra Señora De Talavera", + "scheduled_service": "no", + "local_code": "NST" + }, + { + "id": "318273", + "ident": "AR-0540", + "type": "small_airport", + "name": "La Noria Agricultural Airport", + "latitude_deg": "-33.85696", + "longitude_deg": "-60.70038", + "elevation_ft": "255", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Pergamino", + "scheduled_service": "no", + "local_code": "PEN", + "keywords": "Agro Aerea La Noria" + }, + { + "id": "318274", + "ident": "AR-0541", + "type": "small_airport", + "name": "Servicios Aeronauticos", + "latitude_deg": "-37.523004", + "longitude_deg": "-62.452319", + "elevation_ft": "865", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Pigüé", + "scheduled_service": "no", + "local_code": "PSA" + }, + { + "id": "318275", + "ident": "AR-0542", + "type": "small_airport", + "name": "Estancia La Carolina Airport", + "latitude_deg": "-33.07558", + "longitude_deg": "-60.715", + "elevation_ft": "110", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Piñero", + "scheduled_service": "no", + "local_code": "PLC" + }, + { + "id": "318276", + "ident": "AR-0543", + "type": "small_airport", + "name": "SAS Aeroaplicaciones Airport", + "latitude_deg": "-24.80667", + "longitude_deg": "-64.18111", + "elevation_ft": "1498", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Piquete Cabado", + "scheduled_service": "no", + "local_code": "PCA" + }, + { + "id": "318278", + "ident": "AR-0544", + "type": "small_airport", + "name": "Vale Airport", + "latitude_deg": "-37.06556", + "longitude_deg": "-69.39556", + "elevation_ft": "3051", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "Río Colorado", + "scheduled_service": "no", + "local_code": "RCV" + }, + { + "id": "318279", + "ident": "AR-0545", + "type": "small_airport", + "name": "Aeroagereo", + "latitude_deg": "-35.13588", + "longitude_deg": "-61.99717", + "elevation_ft": "327", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Roberts", + "scheduled_service": "no", + "local_code": "ROB" + }, + { + "id": "318281", + "ident": "AR-0546", + "type": "small_airport", + "name": "La Amalia", + "latitude_deg": "-35.10042", + "longitude_deg": "-62.01656", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Roberts", + "scheduled_service": "no", + "local_code": "AMA" + }, + { + "id": "318282", + "ident": "AR-0547", + "type": "small_airport", + "name": "BSG Airport", + "latitude_deg": "-34.24968", + "longitude_deg": "-62.67416", + "elevation_ft": "393", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Rufino", + "scheduled_service": "no", + "local_code": "RBS" + }, + { + "id": "318283", + "ident": "AR-0548", + "type": "small_airport", + "name": "Abelenda Airport", + "latitude_deg": "-35.738533", + "longitude_deg": "-59.76201", + "elevation_ft": "127", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Saladillo", + "scheduled_service": "no", + "local_code": "SAB" + }, + { + "id": "318290", + "ident": "AR-0549", + "type": "small_airport", + "name": "Vergnano Airport", + "latitude_deg": "-30.32012", + "longitude_deg": "-61.90165", + "elevation_ft": "314", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "San Guillermo", + "scheduled_service": "no", + "local_code": "SGV" + }, + { + "id": "318297", + "ident": "AR-0550", + "type": "small_airport", + "name": "Aeroclub San Javier", + "latitude_deg": "-30.5559", + "longitude_deg": "-59.9907", + "elevation_ft": "90", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "San Javier", + "scheduled_service": "no", + "local_code": "SJR" + }, + { + "id": "318298", + "ident": "AR-0551", + "type": "small_airport", + "name": "Chialva S. H. Airport", + "latitude_deg": "-32.736945", + "longitude_deg": "-62.531378", + "elevation_ft": "390", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "San Marcos", + "scheduled_service": "no", + "local_code": "SMS" + }, + { + "id": "318300", + "ident": "AR-0552", + "type": "small_airport", + "name": "Santa Clara de Saguier Airport", + "latitude_deg": "-31.35549", + "longitude_deg": "-61.82983", + "elevation_ft": "356", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Santa Clara de Saguier", + "scheduled_service": "no", + "local_code": "SCL" + }, + { + "id": "318301", + "ident": "AR-0553", + "type": "small_airport", + "name": "San Alberto Airport", + "latitude_deg": "-36.592071", + "longitude_deg": "-64.220437", + "elevation_ft": "620", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Santa Rosa", + "scheduled_service": "no", + "local_code": "SLP" + }, + { + "id": "318302", + "ident": "AR-0554", + "type": "small_airport", + "name": "Cóndor del Aire Airport", + "latitude_deg": "-33.46587", + "longitude_deg": "-60.62854", + "elevation_ft": "199", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Sargento Cabral", + "scheduled_service": "no", + "local_code": "CDA" + }, + { + "id": "318303", + "ident": "AR-0555", + "type": "small_airport", + "name": "Fumigaciones Nando Airport", + "latitude_deg": "-29.77963", + "longitude_deg": "-62.03181", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "Selva Nueva", + "scheduled_service": "no", + "local_code": "SFN" + }, + { + "id": "318305", + "ident": "AR-0556", + "type": "small_airport", + "name": "Establecimiento El 21 Airport", + "latitude_deg": "-26.8952", + "longitude_deg": "-62.30962", + "elevation_ft": "545", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "Tintina", + "scheduled_service": "no", + "local_code": "TEV" + }, + { + "id": "318306", + "ident": "AR-0557", + "type": "small_airport", + "name": "Tío Pujio Airport", + "latitude_deg": "-32.29307", + "longitude_deg": "-63.40197", + "elevation_ft": "777", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Tío Pujio", + "scheduled_service": "no", + "local_code": "TIO" + }, + { + "id": "318307", + "ident": "AR-0558", + "type": "small_airport", + "name": "Santagiulian Airport", + "latitude_deg": "-38.40573", + "longitude_deg": "-60.29968", + "elevation_ft": "350", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Tres Arroyos", + "scheduled_service": "no", + "local_code": "SGI" + }, + { + "id": "318308", + "ident": "AR-0559", + "type": "small_airport", + "name": "Estancia Los Lobles Airport", + "latitude_deg": "-36.552913", + "longitude_deg": "-63.766652", + "elevation_ft": "459", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Uriburu", + "scheduled_service": "no", + "local_code": "URL" + }, + { + "id": "318309", + "ident": "AR-0560", + "type": "small_airport", + "name": "Estancia La Criolla Airport", + "latitude_deg": "-35.537034", + "longitude_deg": "-60.129512", + "elevation_ft": "160", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Vienticinco de Mayo", + "scheduled_service": "no", + "local_code": "ELC" + }, + { + "id": "318310", + "ident": "AR-0561", + "type": "small_airport", + "name": "Servicios Agroaereos Airport", + "latitude_deg": "-35.449205", + "longitude_deg": "-60.160708", + "elevation_ft": "165", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Vienticinco de Mayo", + "scheduled_service": "no", + "local_code": "MSA" + }, + { + "id": "318311", + "ident": "AR-0562", + "type": "small_airport", + "name": "Don Angel Airport", + "latitude_deg": "-33.93823", + "longitude_deg": "-64.40774", + "elevation_ft": "800", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Vicuña Mackenna", + "scheduled_service": "no", + "local_code": "VMA" + }, + { + "id": "318313", + "ident": "AR-0563", + "type": "small_airport", + "name": "Beneficios S.R.L. Airport", + "latitude_deg": "-33.93759", + "longitude_deg": "-64.415095", + "elevation_ft": "800", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Vicuña Mackenna", + "scheduled_service": "no", + "local_code": "VMB" + }, + { + "id": "318314", + "ident": "AR-0564", + "type": "small_airport", + "name": "Comequechen Airport", + "latitude_deg": "-33.93402", + "longitude_deg": "-64.415946", + "elevation_ft": "805", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Vicuña Mackenna", + "scheduled_service": "no", + "local_code": "VMC" + }, + { + "id": "318492", + "ident": "AR-0565", + "type": "small_airport", + "name": "Santa Isabel Airport", + "latitude_deg": "-36.23682", + "longitude_deg": "-66.94624", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Santa Isabel", + "scheduled_service": "no" + }, + { + "id": "318493", + "ident": "AR-0566", + "type": "small_airport", + "name": "Limay Mahuida Airport", + "latitude_deg": "-37.1201", + "longitude_deg": "-66.704", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Limay Mahuida", + "scheduled_service": "no" + }, + { + "id": "318495", + "ident": "AR-0567", + "type": "small_airport", + "name": "Nueva Galia Airport", + "latitude_deg": "-35.089382", + "longitude_deg": "-65.197724", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-D", + "municipality": "Nueva Galia", + "scheduled_service": "no" + }, + { + "id": "318506", + "ident": "AR-0568", + "type": "small_airport", + "name": "RAIG S.A. Airport", + "latitude_deg": "-32.4382", + "longitude_deg": "-63.2893", + "elevation_ft": "685", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Villa Nueva", + "scheduled_service": "no", + "local_code": "VNR" + }, + { + "id": "318507", + "ident": "AR-0569", + "type": "small_airport", + "name": "Suarez Aviación Airport", + "latitude_deg": "-32.4272", + "longitude_deg": "-63.3024", + "elevation_ft": "700", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Villa Nueva", + "scheduled_service": "no", + "local_code": "VNS" + }, + { + "id": "318508", + "ident": "AR-0570", + "type": "small_airport", + "name": "Villa Valeria Airport", + "latitude_deg": "-34.35653", + "longitude_deg": "-64.90136", + "elevation_ft": "955", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Villa Valeria", + "scheduled_service": "no", + "local_code": "CVV" + }, + { + "id": "318509", + "ident": "AR-0571", + "type": "heliport", + "name": "D.P. El Vapor Heliport", + "latitude_deg": "-34.83467", + "longitude_deg": "-58.38498", + "elevation_ft": "91", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Almirante Brown", + "scheduled_service": "no", + "local_code": "HEV" + }, + { + "id": "318510", + "ident": "AR-0572", + "type": "heliport", + "name": "Centro Cívico Bicentenario Heliport", + "latitude_deg": "-31.42037", + "longitude_deg": "-64.173235", + "elevation_ft": "1306", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Córdoba", + "scheduled_service": "no", + "local_code": "HBI" + }, + { + "id": "318511", + "ident": "AR-0573", + "type": "heliport", + "name": "Superficie Heliport", + "latitude_deg": "-34.90046", + "longitude_deg": "-57.929486", + "elevation_ft": "22", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "La Plata", + "scheduled_service": "no", + "local_code": "HBT" + }, + { + "id": "318513", + "ident": "AR-0574", + "type": "heliport", + "name": "C.A.P.E. Provincial Police Heliport", + "latitude_deg": "-29.4356", + "longitude_deg": "-66.8632", + "elevation_ft": "1760", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-F", + "municipality": "La Rioja", + "scheduled_service": "no", + "local_code": "HPL" + }, + { + "id": "318514", + "ident": "AR-0575", + "type": "heliport", + "name": "La Reserva Heliport", + "latitude_deg": "-34.27045", + "longitude_deg": "-58.90043", + "elevation_ft": "19", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Los Cardales", + "scheduled_service": "no", + "local_code": "HLR" + }, + { + "id": "318515", + "ident": "AR-0576", + "type": "heliport", + "name": "Cooperativa de Trabajos Portuarios Limitada Heliport", + "latitude_deg": "-32.71915", + "longitude_deg": "-60.72636", + "elevation_ft": "29", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "San Martín", + "scheduled_service": "no", + "local_code": "HPT" + }, + { + "id": "318516", + "ident": "AR-0577", + "type": "heliport", + "name": "Edificio Tribunales Helipad", + "latitude_deg": "-27.7813", + "longitude_deg": "-64.265", + "elevation_ft": "738", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "Santiago del Estero", + "scheduled_service": "no", + "local_code": "HET" + }, + { + "id": "318517", + "ident": "AR-0578", + "type": "heliport", + "name": "Villa La Ñata Heliport", + "latitude_deg": "-34.37527", + "longitude_deg": "-58.65576", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Tigre", + "scheduled_service": "no", + "local_code": "HVA" + }, + { + "id": "318945", + "ident": "AR-0579", + "type": "small_airport", + "name": "Coy Aike Airport", + "latitude_deg": "-51.162246", + "longitude_deg": "-69.487675", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Coy Aike", + "scheduled_service": "no" + }, + { + "id": "318946", + "ident": "AR-0580", + "type": "small_airport", + "name": "Estancia Elena Airport", + "latitude_deg": "-49.727768", + "longitude_deg": "-68.756606", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Rio Chico", + "scheduled_service": "no" + }, + { + "id": "321675", + "ident": "AR-0581", + "type": "small_airport", + "name": "Fortin Cabo Lugones Airport", + "latitude_deg": "-24.300451", + "longitude_deg": "-59.830954", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-P", + "municipality": "Fortin Cabo Lugones", + "scheduled_service": "no" + }, + { + "id": "321676", + "ident": "AR-0582", + "type": "small_airport", + "name": "Posta Cambio a Zalazar Airport", + "latitude_deg": "-24.214972", + "longitude_deg": "-60.201023", + "elevation_ft": "441", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-P", + "municipality": "Posta Cambio a Zalazar", + "scheduled_service": "no", + "keywords": "Posta Cambio a Salazar" + }, + { + "id": "321677", + "ident": "AR-0583", + "type": "small_airport", + "name": "Colonel Alfonso Airport", + "latitude_deg": "-25.130442", + "longitude_deg": "-58.217977", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-P", + "municipality": "Laguna Blanca", + "scheduled_service": "no" + }, + { + "id": "321678", + "ident": "AR-0584", + "type": "small_airport", + "name": "San Hilario Airport", + "latitude_deg": "-25.86448", + "longitude_deg": "-58.672887", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-P", + "municipality": "Estancia Alegria", + "scheduled_service": "no", + "local_code": "380" + }, + { + "id": "321701", + "ident": "AR-0585", + "type": "small_airport", + "name": "Santa Elena Airport", + "latitude_deg": "-30.976069", + "longitude_deg": "-59.776894", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Santa Elena", + "scheduled_service": "no", + "local_code": "973", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monte_Quemado_Airport" + }, + { + "id": "321708", + "ident": "AR-0586", + "type": "small_airport", + "name": "Augusto Leguizamon Airport", + "latitude_deg": "-34.818011", + "longitude_deg": "-62.477107", + "elevation_ft": "357", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Ameghino", + "scheduled_service": "no", + "local_code": "AUL" + }, + { + "id": "321709", + "ident": "AR-0587", + "type": "small_airport", + "name": "Dutto Airport", + "latitude_deg": "-28.870432", + "longitude_deg": "-62.241535", + "elevation_ft": "285", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "Bandera", + "scheduled_service": "no", + "local_code": "ADU" + }, + { + "id": "321710", + "ident": "AR-0588", + "type": "small_airport", + "name": "Malfatto Airport", + "latitude_deg": "-35.1517", + "longitude_deg": "-60.5056", + "elevation_ft": "187", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Bragado", + "scheduled_service": "no", + "local_code": "BMO", + "keywords": "Pulverizaciones Aereas Walter Malfatto" + }, + { + "id": "321711", + "ident": "AR-0589", + "type": "small_airport", + "name": "Cañada Quiroz Airport", + "latitude_deg": "-27.5497", + "longitude_deg": "-58.7175", + "elevation_ft": "180", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Corrientes", + "scheduled_service": "no", + "local_code": "CQZ" + }, + { + "id": "321732", + "ident": "AR-0590", + "type": "small_airport", + "name": "Malatini Airport", + "latitude_deg": "-35.569123", + "longitude_deg": "-61.368224", + "elevation_ft": "268", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Carlos Casares", + "scheduled_service": "no", + "local_code": "CCM" + }, + { + "id": "321733", + "ident": "AR-0591", + "type": "small_airport", + "name": "Ottaviani Airport", + "latitude_deg": "-35.648137", + "longitude_deg": "-61.350425", + "elevation_ft": "268", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Carlos Casares", + "scheduled_service": "no", + "local_code": "CCO", + "keywords": "Aeropuerto Carlos Casares Sur" + }, + { + "id": "321734", + "ident": "AR-0592", + "type": "small_airport", + "name": "Copetonas Airport", + "latitude_deg": "-38.743657", + "longitude_deg": "-60.553332", + "elevation_ft": "167", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Copetonas", + "scheduled_service": "no", + "local_code": "CTA" + }, + { + "id": "321740", + "ident": "AR-0593", + "type": "small_airport", + "name": "Don Moises Airport", + "latitude_deg": "-32.039622", + "longitude_deg": "-64.192827", + "elevation_ft": "1604", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Corralito", + "scheduled_service": "no", + "local_code": "MOI" + }, + { + "id": "321745", + "ident": "AR-0594", + "type": "small_airport", + "name": "Itati Airport", + "latitude_deg": "-27.305297", + "longitude_deg": "-58.313924", + "elevation_ft": "196", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Itati", + "scheduled_service": "no", + "local_code": "CIT" + }, + { + "id": "321746", + "ident": "AR-0595", + "type": "small_airport", + "name": "Las 2 A Airport", + "latitude_deg": "-34.811475", + "longitude_deg": "-60.51701", + "elevation_ft": "196", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Chacabuco", + "scheduled_service": "no", + "local_code": "AII" + }, + { + "id": "321748", + "ident": "AR-0596", + "type": "small_airport", + "name": "Daireaux Airport", + "latitude_deg": "-36.580056", + "longitude_deg": "-61.784878", + "elevation_ft": "380", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Daireaux", + "scheduled_service": "no", + "local_code": "DRX" + }, + { + "id": "321754", + "ident": "AR-0597", + "type": "small_airport", + "name": "Estancia Santa Elisa Airport", + "latitude_deg": "-29.304436", + "longitude_deg": "-56.881343", + "elevation_ft": "206", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-N", + "municipality": "Guaviravi", + "scheduled_service": "no", + "local_code": "GSE" + }, + { + "id": "321755", + "ident": "AR-0598", + "type": "small_airport", + "name": "Hernando Airport", + "latitude_deg": "-32.337145", + "longitude_deg": "-63.685178", + "elevation_ft": "925", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Hernando", + "scheduled_service": "no", + "local_code": "NAN", + "keywords": "Aeroclub Hernando" + }, + { + "id": "321763", + "ident": "AR-0599", + "type": "small_airport", + "name": "Antares Airport", + "latitude_deg": "-34.528223", + "longitude_deg": "-63.960879", + "elevation_ft": "505", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Jovita", + "scheduled_service": "no", + "local_code": "JOC" + }, + { + "id": "321764", + "ident": "AR-0600", + "type": "small_airport", + "name": "Lanteri Airpiort", + "latitude_deg": "-28.86085", + "longitude_deg": "-59.673331", + "elevation_ft": "183", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Lanteri", + "scheduled_service": "no", + "local_code": "LAN" + }, + { + "id": "321765", + "ident": "AR-0601", + "type": "small_airport", + "name": "Agroalas S.R.L. Airport", + "latitude_deg": "-26.870159", + "longitude_deg": "-64.74663", + "elevation_ft": "1135", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-T", + "municipality": "Las Cejas", + "scheduled_service": "no", + "local_code": "CEJ" + }, + { + "id": "321766", + "ident": "AR-0602", + "type": "small_airport", + "name": "Horizonte Aplicaciones Areas Airport", + "latitude_deg": "-32.521761", + "longitude_deg": "-61.550695", + "elevation_ft": "321", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Las Rosas", + "scheduled_service": "no", + "local_code": "LRT" + }, + { + "id": "321767", + "ident": "AR-0603", + "type": "small_airport", + "name": "Samave Airport", + "latitude_deg": "-33.786401", + "longitude_deg": "-62.127806", + "elevation_ft": "357", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Maggiolo", + "scheduled_service": "no", + "local_code": "MAB" + }, + { + "id": "321768", + "ident": "AR-0604", + "type": "small_airport", + "name": "El Recuerdo S.R.L. Airport", + "latitude_deg": "-33.10549", + "longitude_deg": "-63.192986", + "elevation_ft": "451", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Pescanas", + "scheduled_service": "no", + "local_code": "PAN" + }, + { + "id": "321769", + "ident": "AR-0605", + "type": "small_airport", + "name": "Rovere Airport", + "latitude_deg": "-26.783029", + "longitude_deg": "-60.487414", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-H", + "municipality": "Presidencia Roque Sáenz Peña", + "scheduled_service": "no", + "local_code": "PSV" + }, + { + "id": "321771", + "ident": "AR-0606", + "type": "small_airport", + "name": "Estancia La Elba", + "latitude_deg": "-44.5728", + "longitude_deg": "-65.3706", + "elevation_ft": "45", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Punta Roja", + "scheduled_service": "no", + "local_code": "LAE" + }, + { + "id": "321772", + "ident": "AR-0607", + "type": "small_airport", + "name": "Fumigaciones Herbinsec Airport", + "latitude_deg": "-35.13652", + "longitude_deg": "-61.99028", + "elevation_ft": "336", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Roberts", + "scheduled_service": "no", + "local_code": "ROH" + }, + { + "id": "321775", + "ident": "AR-0608", + "type": "small_airport", + "name": "Parajon Airport", + "latitude_deg": "-34.576385", + "longitude_deg": "-61.005748", + "elevation_ft": "275", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Saforcada", + "scheduled_service": "no", + "local_code": "SAF" + }, + { + "id": "323143", + "ident": "AR-0609", + "type": "small_airport", + "name": "Estancia Bahía Laura Airport", + "latitude_deg": "-48.331097", + "longitude_deg": "-66.417847", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Bahía Laura", + "scheduled_service": "no" + }, + { + "id": "323144", + "ident": "AR-0610", + "type": "small_airport", + "name": "Fitz Roy Airport", + "latitude_deg": "-47.021639", + "longitude_deg": "-67.241585", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Fitz Roy", + "scheduled_service": "no" + }, + { + "id": "323145", + "ident": "AR-0611", + "type": "small_airport", + "name": "Tres Cerros Airport", + "latitude_deg": "-48.138678", + "longitude_deg": "-67.655065", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Tres Cerros", + "scheduled_service": "no" + }, + { + "id": "323146", + "ident": "AR-0612", + "type": "small_airport", + "name": "Ministro Ramos Mexía Airport", + "latitude_deg": "-40.523752", + "longitude_deg": "-67.214651", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Ministro Ramos Mexía", + "scheduled_service": "no" + }, + { + "id": "323147", + "ident": "AR-0613", + "type": "small_airport", + "name": "Arroyo de la Ventana Airport", + "latitude_deg": "-41.669222", + "longitude_deg": "-66.097071", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Arroyo de la Ventana", + "scheduled_service": "no" + }, + { + "id": "323148", + "ident": "AR-0614", + "type": "small_airport", + "name": "Dique Florentino Ameghino Airport", + "latitude_deg": "-43.674928", + "longitude_deg": "-66.493948", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Dique Florentino Ameghino", + "scheduled_service": "no" + }, + { + "id": "323149", + "ident": "AR-0615", + "type": "small_airport", + "name": "Arroyo Los Berros Airport", + "latitude_deg": "-41.438981", + "longitude_deg": "-66.090185", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Arroyo Los Berros", + "scheduled_service": "no" + }, + { + "id": "324366", + "ident": "AR-0616", + "type": "small_airport", + "name": "La Caldonia Airport", + "latitude_deg": "-32.1306", + "longitude_deg": "-61.8935", + "elevation_ft": "365", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Piamonte", + "scheduled_service": "no", + "local_code": "1063" + }, + { + "id": "324367", + "ident": "AR-0617", + "type": "small_airport", + "name": "El Ocho Airstrip", + "latitude_deg": "-31.799689", + "longitude_deg": "-59.703579", + "elevation_ft": "257", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Tabossi", + "scheduled_service": "no" + }, + { + "id": "324368", + "ident": "AR-0618", + "type": "small_airport", + "name": "Timbo Airstrip", + "latitude_deg": "-31.8266", + "longitude_deg": "-59.0333", + "elevation_ft": "187", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Villaguay", + "scheduled_service": "no" + }, + { + "id": "324542", + "ident": "AR-0619", + "type": "small_airport", + "name": "Puerto San Antonio Este Airstrip", + "latitude_deg": "-40.799532", + "longitude_deg": "-64.864185", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Puerto San Antonio Este", + "scheduled_service": "no" + }, + { + "id": "324544", + "ident": "AR-0620", + "type": "small_airport", + "name": "Guardia Mitre Airstrip", + "latitude_deg": "-40.418091", + "longitude_deg": "-63.663347", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Guardia Mitre", + "scheduled_service": "no" + }, + { + "id": "324545", + "ident": "AR-0621", + "type": "small_airport", + "name": "La Sistina Airstrip", + "latitude_deg": "-36.974031", + "longitude_deg": "-62.436969", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "scheduled_service": "no" + }, + { + "id": "324978", + "ident": "AR-0622", + "type": "small_airport", + "name": "Anillaco Airport", + "latitude_deg": "-28.795111", + "longitude_deg": "-66.914675", + "elevation_ft": "4264", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-F", + "municipality": "Anillaco", + "scheduled_service": "no", + "local_code": "ANI", + "keywords": "ANAC 2309" + }, + { + "id": "327561", + "ident": "AR-0623", + "type": "small_airport", + "name": "El Sauzalito Airport", + "latitude_deg": "-24.443851", + "longitude_deg": "-61.68824", + "elevation_ft": "558", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-H", + "municipality": "El Sauzalito", + "scheduled_service": "no" + }, + { + "id": "327565", + "ident": "AR-0624", + "type": "small_airport", + "name": "Ingeniero Juárez Airport", + "latitude_deg": "-23.904822", + "longitude_deg": "-61.820092", + "elevation_ft": "595", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-P", + "municipality": "Ingeniero Juárez", + "scheduled_service": "no" + }, + { + "id": "327584", + "ident": "AR-0625", + "type": "small_airport", + "name": "La Cruz Airport", + "latitude_deg": "-29.159962", + "longitude_deg": "-56.658639", + "elevation_ft": "219", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "La Cruz", + "scheduled_service": "no" + }, + { + "id": "327585", + "ident": "AR-0626", + "type": "small_airport", + "name": "Loma Alta Airport", + "latitude_deg": "-29.049088", + "longitude_deg": "-57.081729", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "scheduled_service": "no" + }, + { + "id": "327586", + "ident": "AR-0627", + "type": "small_airport", + "name": "Itá Caabó Airport", + "latitude_deg": "-29.29287", + "longitude_deg": "-57.727213", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Estancia Itá Caabó", + "scheduled_service": "no", + "local_code": "529" + }, + { + "id": "327589", + "ident": "AR-0628", + "type": "small_airport", + "name": "Estancia El Cencerro Airport", + "latitude_deg": "-30.534775", + "longitude_deg": "-60.438022", + "elevation_ft": "164", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Marcelino Escalada", + "scheduled_service": "no", + "local_code": "451" + }, + { + "id": "327590", + "ident": "AR-0629", + "type": "small_airport", + "name": "Estancia El Pinocho", + "latitude_deg": "-32.564739", + "longitude_deg": "-58.51746", + "elevation_ft": "56", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Aldea San Antonio", + "scheduled_service": "no", + "local_code": "496" + }, + { + "id": "327603", + "ident": "AR-0630", + "type": "small_airport", + "name": "Estancia La Elisa Airport", + "latitude_deg": "-34.038888", + "longitude_deg": "-59.776944", + "elevation_ft": "154", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Capitan Sarmiento", + "scheduled_service": "no", + "local_code": "578" + }, + { + "id": "327605", + "ident": "AR-0631", + "type": "small_airport", + "name": "Estancia Los Leones Airport", + "latitude_deg": "-31.170558", + "longitude_deg": "-60.718125", + "elevation_ft": "125", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Llambi Cambel", + "scheduled_service": "no", + "local_code": "750" + }, + { + "id": "327611", + "ident": "AR-0632", + "type": "small_airport", + "name": "Estancia Trebolares Airport", + "latitude_deg": "-35.636734", + "longitude_deg": "-63.498798", + "elevation_ft": "377", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "General Pico", + "scheduled_service": "no", + "local_code": "938" + }, + { + "id": "327617", + "ident": "AR-0633", + "type": "small_airport", + "name": "Rincón de Luna Airport", + "latitude_deg": "-28.470238", + "longitude_deg": "-58.249234", + "elevation_ft": "180", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Tabay", + "scheduled_service": "no", + "local_code": "1300" + }, + { + "id": "327621", + "ident": "AR-0634", + "type": "small_airport", + "name": "Finca Porvenir 8 Airport", + "latitude_deg": "-24.994562", + "longitude_deg": "-64.341664", + "elevation_ft": "1732", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Piquete Cabado", + "scheduled_service": "no", + "local_code": "2800" + }, + { + "id": "327624", + "ident": "AR-0635", + "type": "small_airport", + "name": "Cabaña Los Gatos Airport", + "latitude_deg": "-27.142412", + "longitude_deg": "-61.764272", + "elevation_ft": "548", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "Gancedo", + "scheduled_service": "no", + "local_code": "2802" + }, + { + "id": "327625", + "ident": "AR-0636", + "type": "small_airport", + "name": "Estancia Las Marias Airport", + "latitude_deg": "-32.470437", + "longitude_deg": "-66.082103", + "elevation_ft": "2116", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-D", + "municipality": "Lenadro N. Alem", + "scheduled_service": "no", + "local_code": "2809" + }, + { + "id": "327626", + "ident": "AR-0637", + "type": "heliport", + "name": "Unidad Regional II de Polcia Heliport", + "latitude_deg": "-32.99354", + "longitude_deg": "-60.674636", + "elevation_ft": "131", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Rosario", + "scheduled_service": "no", + "local_code": "2831" + }, + { + "id": "327639", + "ident": "AR-0638", + "type": "small_airport", + "name": "Estancia 13 de Abril Airport", + "latitude_deg": "-35.515511", + "longitude_deg": "-61.758924", + "elevation_ft": "276", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Smith", + "scheduled_service": "no", + "local_code": "2064" + }, + { + "id": "327642", + "ident": "AR-0639", + "type": "closed", + "name": "Pinto Airport", + "latitude_deg": "-29.152266", + "longitude_deg": "-62.675025", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "Pinto", + "scheduled_service": "no", + "keywords": "Villa General Mitre" + }, + { + "id": "327644", + "ident": "AR-0640", + "type": "small_airport", + "name": "Pichanal-Franzini Airport", + "latitude_deg": "-23.338946", + "longitude_deg": "-64.247126", + "elevation_ft": "1004", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Pichanal", + "scheduled_service": "no", + "local_code": "2105" + }, + { + "id": "327647", + "ident": "AR-0641", + "type": "small_airport", + "name": "Traill Southeast Airport", + "latitude_deg": "-31.922586", + "longitude_deg": "-61.692139", + "elevation_ft": "249", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Estancia Traill Sureste", + "scheduled_service": "no" + }, + { + "id": "327651", + "ident": "AR-0642", + "type": "closed", + "name": "Los Juries Airport", + "latitude_deg": "-28.477432", + "longitude_deg": "-62.1226", + "elevation_ft": "301", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "Los Juries", + "scheduled_service": "no" + }, + { + "id": "327652", + "ident": "AR-0643", + "type": "small_airport", + "name": "El Cuadrado Airport", + "latitude_deg": "-28.285565", + "longitude_deg": "-61.764686", + "elevation_ft": "325", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "Los Juries", + "scheduled_service": "no", + "local_code": "2713" + }, + { + "id": "333806", + "ident": "AR-0644", + "type": "closed", + "name": "Elida 2 Airstrip", + "latitude_deg": "-28.159984", + "longitude_deg": "-60.475316", + "elevation_ft": "215", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "scheduled_service": "no" + }, + { + "id": "333807", + "ident": "AR-0645", + "type": "small_airport", + "name": "Los Amores NW Airport", + "latitude_deg": "-28.069557", + "longitude_deg": "-60.00947", + "elevation_ft": "198", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Los Amores", + "scheduled_service": "no" + }, + { + "id": "333808", + "ident": "AR-0646", + "type": "closed", + "name": "El Amargo Airport", + "latitude_deg": "-28.742", + "longitude_deg": "-61.741233", + "elevation_ft": "249", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "scheduled_service": "no" + }, + { + "id": "333809", + "ident": "AR-0647", + "type": "closed", + "name": "Estancia Los Pocitos Airport", + "latitude_deg": "-28.564387", + "longitude_deg": "-62.524781", + "elevation_ft": "350", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "Tacañitas", + "scheduled_service": "no" + }, + { + "id": "333810", + "ident": "AR-0648", + "type": "closed", + "name": "Dora Airport", + "latitude_deg": "-28.600612", + "longitude_deg": "-62.941232", + "elevation_ft": "354", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "Colonia Dora", + "scheduled_service": "no" + }, + { + "id": "333811", + "ident": "AR-0649", + "type": "closed", + "name": "Pozo Cuadrado Airport", + "latitude_deg": "-28.915274", + "longitude_deg": "-57.050779", + "elevation_ft": "243", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "scheduled_service": "no" + }, + { + "id": "333812", + "ident": "AR-0650", + "type": "small_airport", + "name": "Santa Juana Airport", + "latitude_deg": "-28.955846", + "longitude_deg": "-56.742668", + "elevation_ft": "215", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "scheduled_service": "no" + }, + { + "id": "333814", + "ident": "AR-0651", + "type": "closed", + "name": "Malbrán", + "latitude_deg": "-29.356369", + "longitude_deg": "-62.451074", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "Malbrán", + "scheduled_service": "no" + }, + { + "id": "333815", + "ident": "AR-0652", + "type": "closed", + "name": "Villa Unión Airport", + "latitude_deg": "-29.42218", + "longitude_deg": "-62.789526", + "elevation_ft": "248", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "Villa Unión", + "scheduled_service": "no" + }, + { + "id": "333823", + "ident": "AR-0653", + "type": "closed", + "name": "Tres Lagunas Airstrip", + "latitude_deg": "-29.372714", + "longitude_deg": "-62.037477", + "elevation_ft": "255", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "scheduled_service": "no" + }, + { + "id": "333824", + "ident": "AR-0654", + "type": "closed", + "name": "Agrodistribuidora Airstrip", + "latitude_deg": "-29.220089", + "longitude_deg": "-61.760298", + "elevation_ft": "220", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Tostado", + "scheduled_service": "no" + }, + { + "id": "333825", + "ident": "AR-0655", + "type": "small_airport", + "name": "Estancia La Matilde Airport", + "latitude_deg": "-29.356949", + "longitude_deg": "-59.872313", + "elevation_ft": "174", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Estancia La Matilde", + "scheduled_service": "no" + }, + { + "id": "333831", + "ident": "AR-0656", + "type": "small_airport", + "name": "La Lola Airport", + "latitude_deg": "-29.261898", + "longitude_deg": "-59.736593", + "elevation_ft": "150", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Reconquista", + "scheduled_service": "no" + }, + { + "id": "339856", + "ident": "AR-0657", + "type": "small_airport", + "name": "Blondi Airport", + "latitude_deg": "-30.75769", + "longitude_deg": "-63.74818", + "elevation_ft": "817", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Cañada de Luque", + "scheduled_service": "no", + "local_code": "CDL" + }, + { + "id": "339864", + "ident": "AR-0658", + "type": "small_airport", + "name": "Chajari Sur Airport", + "latitude_deg": "-30.80228", + "longitude_deg": "-58.014325", + "elevation_ft": "226", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Chajari", + "scheduled_service": "no", + "local_code": "CSU" + }, + { + "id": "340022", + "ident": "AR-0659", + "type": "heliport", + "name": "Hospital R. Carrillo Heliport", + "latitude_deg": "-32.8518", + "longitude_deg": "-60.709189", + "elevation_ft": "121", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Granadero Baigorria", + "scheduled_service": "no", + "local_code": "HDR" + }, + { + "id": "340023", + "ident": "AR-0660", + "type": "heliport", + "name": "Lar de Paz S.A. Heliport", + "latitude_deg": "-34.776328", + "longitude_deg": "-58.658291", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Gonzalez Catán", + "scheduled_service": "no", + "local_code": "HGM" + }, + { + "id": "340024", + "ident": "AR-0661", + "type": "heliport", + "name": "Homaq Heliport", + "latitude_deg": "-34.557353", + "longitude_deg": "-59.045919", + "elevation_ft": "79", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Luján", + "scheduled_service": "no", + "local_code": "HLH" + }, + { + "id": "340025", + "ident": "AR-0662", + "type": "heliport", + "name": "Madero Harbour Helipad", + "latitude_deg": "-34.620989", + "longitude_deg": "-58.360764", + "elevation_ft": "259", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-C", + "municipality": "Buenos Aires", + "scheduled_service": "no", + "local_code": "HMG" + }, + { + "id": "340026", + "ident": "AR-0663", + "type": "heliport", + "name": "Nordelta Heliport", + "latitude_deg": "-34.439664", + "longitude_deg": "-58.64215", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Tigre", + "scheduled_service": "no", + "local_code": "HNB" + }, + { + "id": "340027", + "ident": "AR-0664", + "type": "heliport", + "name": "Heliplataforma Oceanic Champion", + "latitude_deg": "-52.833333", + "longitude_deg": "-66.416667", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Río Grande", + "scheduled_service": "no", + "local_code": "HOC" + }, + { + "id": "340028", + "ident": "AR-0665", + "type": "heliport", + "name": "Heliplataforma Móvil Ocean Scepter", + "latitude_deg": "-46.466667", + "longitude_deg": "-67.433333", + "elevation_ft": "505", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Golfo San Jorge", + "scheduled_service": "no", + "local_code": "HOS" + }, + { + "id": "340029", + "ident": "AR-0666", + "type": "heliport", + "name": "Puerto Esperanza Heliport", + "latitude_deg": "-25.990346", + "longitude_deg": "-54.63825", + "elevation_ft": "509", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-N", + "municipality": "Esperanza", + "scheduled_service": "no", + "local_code": "HPO" + }, + { + "id": "340030", + "ident": "AR-0667", + "type": "heliport", + "name": "Heliplataforma Swiber PJW3000", + "latitude_deg": "-53.076495", + "longitude_deg": "-67.964004", + "elevation_ft": "118", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Campo Vega Pleyade", + "scheduled_service": "no", + "local_code": "HSW" + }, + { + "id": "340031", + "ident": "AR-0668", + "type": "small_airport", + "name": "Norberto de La Riestra Airport", + "latitude_deg": "-35.327705", + "longitude_deg": "-59.791042", + "elevation_ft": "126", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Norberto de La Riestra", + "scheduled_service": "no", + "local_code": "NDR" + }, + { + "id": "340036", + "ident": "AR-0669", + "type": "small_airport", + "name": "Estancia El Triángulo Airport", + "latitude_deg": "-36.349041", + "longitude_deg": "-62.226133", + "elevation_ft": "341", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-C", + "municipality": "Salazar", + "scheduled_service": "no", + "local_code": "SLZ" + }, + { + "id": "340037", + "ident": "AR-0670", + "type": "small_airport", + "name": "Hallpa Huayra Airport", + "latitude_deg": "-32.207863", + "longitude_deg": "-64.533906", + "elevation_ft": "1827", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Villa Amancay", + "scheduled_service": "no", + "local_code": "VAY" + }, + { + "id": "340038", + "ident": "AR-0671", + "type": "small_airport", + "name": "Las Totoritas Airport", + "latitude_deg": "-33.842439", + "longitude_deg": "-65.324836", + "elevation_ft": "1470", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-D", + "municipality": "Villa Mercedes", + "scheduled_service": "no", + "local_code": "VMT" + }, + { + "id": "341793", + "ident": "AR-0672", + "type": "small_airport", + "name": "Aerofumigaciones Bartoli Hermanos Airstrip", + "latitude_deg": "-33.471415", + "longitude_deg": "-62.327058", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Cavanagh", + "scheduled_service": "no" + }, + { + "id": "343211", + "ident": "AR-0673", + "type": "small_airport", + "name": "Estancia Suyai - Lago Pueyrredon Airstrip", + "latitude_deg": "-47.365317", + "longitude_deg": "-71.97239", + "elevation_ft": "522", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Lago Posados", + "scheduled_service": "no", + "local_code": "2605" + }, + { + "id": "343212", + "ident": "AR-0674", + "type": "small_airport", + "name": "Mahmet Fumigaciones Aereas Airport", + "latitude_deg": "-35.1486", + "longitude_deg": "-60.5245", + "elevation_ft": "194", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Bragado", + "scheduled_service": "no" + }, + { + "id": "343213", + "ident": "AR-0675", + "type": "small_airport", + "name": "Agroaereo Bragado Airport", + "latitude_deg": "-35.1755", + "longitude_deg": "-60.4563", + "elevation_ft": "210", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Bragado", + "scheduled_service": "no" + }, + { + "id": "343214", + "ident": "AR-0676", + "type": "small_airport", + "name": "Laguna El Abuelo Airstrip", + "latitude_deg": "-35.24815", + "longitude_deg": "-60.487", + "elevation_ft": "210", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Comodoro Py", + "scheduled_service": "no" + }, + { + "id": "343215", + "ident": "AR-0677", + "type": "small_airport", + "name": "Cerro Vanguardia Airstrip", + "latitude_deg": "-48.373634", + "longitude_deg": "-68.107842", + "elevation_ft": "580", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Tres Cerros", + "scheduled_service": "no", + "local_code": "2356" + }, + { + "id": "348363", + "ident": "AR-0678", + "type": "heliport", + "name": "Malvinas Heroes Hospital Heliport", + "latitude_deg": "-34.66941", + "longitude_deg": "-58.74199", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Merlo", + "scheduled_service": "no" + }, + { + "id": "348444", + "ident": "AR-0679", + "type": "small_airport", + "name": "Estancia Santa Elena Airport", + "latitude_deg": "-47.78901", + "longitude_deg": "-65.92325", + "elevation_ft": "144", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Estancia Santa Elena", + "scheduled_service": "no" + }, + { + "id": "348445", + "ident": "AR-0680", + "type": "small_airport", + "name": "Estancia 8 de Julio Airport", + "latitude_deg": "-47.89627", + "longitude_deg": "-66.06144", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Estancia 8 de Julio", + "scheduled_service": "no" + }, + { + "id": "348446", + "ident": "AR-0681", + "type": "small_airport", + "name": "Campamento Darwin Airport", + "latitude_deg": "-47.89664", + "longitude_deg": "-66.46093", + "elevation_ft": "384", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Puerto Deseado", + "scheduled_service": "no" + }, + { + "id": "348447", + "ident": "AR-0682", + "type": "small_airport", + "name": "Estancia La Chaira Airport", + "latitude_deg": "-48.17187", + "longitude_deg": "-66.81911", + "elevation_ft": "443", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Estancia La Chaira", + "scheduled_service": "no" + }, + { + "id": "348448", + "ident": "AR-0683", + "type": "small_airport", + "name": "Campamento Darwin West Airport", + "latitude_deg": "-47.88052", + "longitude_deg": "-66.47105", + "elevation_ft": "325", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Puerto Deseado", + "scheduled_service": "no" + }, + { + "id": "348449", + "ident": "AR-0684", + "type": "small_airport", + "name": "Lago Escondido Airport", + "latitude_deg": "-54.63158", + "longitude_deg": "-67.7555", + "elevation_ft": "410", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Tolhuin", + "scheduled_service": "no" + }, + { + "id": "348451", + "ident": "AR-0685", + "type": "small_airport", + "name": "Monte Aymond Airport", + "latitude_deg": "-52.12706", + "longitude_deg": "-69.50706", + "elevation_ft": "538", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Estancia Monte Aymond", + "scheduled_service": "no" + }, + { + "id": "348452", + "ident": "AR-0686", + "type": "closed", + "name": "Río Gallegos Air Base", + "latitude_deg": "-51.64861", + "longitude_deg": "-69.20314", + "elevation_ft": "56", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Río Gallegos", + "scheduled_service": "no" + }, + { + "id": "348453", + "ident": "AR-0687", + "type": "small_airport", + "name": "Monte León Landing Strip", + "latitude_deg": "-50.28512", + "longitude_deg": "-69.1858", + "elevation_ft": "1156", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Corpen Aike", + "scheduled_service": "no" + }, + { + "id": "348454", + "ident": "AR-0688", + "type": "small_airport", + "name": "Estancia Las Lagunas Airport", + "latitude_deg": "-49.72988", + "longitude_deg": "-68.34898", + "elevation_ft": "344", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Estancia Las Lagunas", + "scheduled_service": "no" + }, + { + "id": "348455", + "ident": "AR-0689", + "type": "small_airport", + "name": "El Salado Airport", + "latitude_deg": "-48.72272", + "longitude_deg": "-67.71851", + "elevation_ft": "466", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "El Salado", + "scheduled_service": "no" + }, + { + "id": "348456", + "ident": "AR-0690", + "type": "small_airport", + "name": "Río Seco Airport", + "latitude_deg": "-48.53148", + "longitude_deg": "-67.20996", + "elevation_ft": "292", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Magallanes", + "scheduled_service": "no" + }, + { + "id": "348457", + "ident": "AR-0691", + "type": "small_airport", + "name": "Laguna Flamenco Airport", + "latitude_deg": "-48.38114", + "longitude_deg": "-66.83524", + "elevation_ft": "88", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Deseado", + "scheduled_service": "no" + }, + { + "id": "348458", + "ident": "AR-0692", + "type": "small_airport", + "name": "Laguna Salada Airport", + "latitude_deg": "-48.4233", + "longitude_deg": "-66.83072", + "elevation_ft": "231", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Deseado", + "scheduled_service": "no" + }, + { + "id": "348459", + "ident": "AR-0693", + "type": "small_airport", + "name": "Punta Mercedes Airport", + "latitude_deg": "-48.38884", + "longitude_deg": "-66.4837", + "elevation_ft": "85", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Deseado", + "scheduled_service": "no" + }, + { + "id": "348460", + "ident": "AR-0694", + "type": "small_airport", + "name": "Punta Mercedes West Airport", + "latitude_deg": "-48.42077", + "longitude_deg": "-66.65689", + "elevation_ft": "94", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Deseado", + "scheduled_service": "no" + }, + { + "id": "348461", + "ident": "AR-0695", + "type": "small_airport", + "name": "Cabo Tres Puntas Airport", + "latitude_deg": "-47.12832", + "longitude_deg": "-66.06579", + "elevation_ft": "471", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Deseado", + "scheduled_service": "no" + }, + { + "id": "348462", + "ident": "AR-0696", + "type": "small_airport", + "name": "Estancia La Estrella Airport", + "latitude_deg": "-47.31099", + "longitude_deg": "-65.9749", + "elevation_ft": "407", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Deseado", + "scheduled_service": "no" + }, + { + "id": "348463", + "ident": "AR-0697", + "type": "small_airport", + "name": "Tellier Airport", + "latitude_deg": "-47.59579", + "longitude_deg": "-66.07211", + "elevation_ft": "371", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Tellier", + "scheduled_service": "no" + }, + { + "id": "348464", + "ident": "AR-0698", + "type": "small_airport", + "name": "Estancia El Polvorin Airport", + "latitude_deg": "-47.11292", + "longitude_deg": "-66.48299", + "elevation_ft": "526", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Deseado", + "scheduled_service": "no" + }, + { + "id": "348465", + "ident": "AR-0699", + "type": "small_airport", + "name": "Mazaredo Airport", + "latitude_deg": "-47.07713", + "longitude_deg": "-66.69364", + "elevation_ft": "220", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Deseado", + "scheduled_service": "no" + }, + { + "id": "348466", + "ident": "AR-0700", + "type": "small_airport", + "name": "La Floradora Airport", + "latitude_deg": "-47.11304", + "longitude_deg": "-66.80995", + "elevation_ft": "584", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Deseado", + "scheduled_service": "no" + }, + { + "id": "348467", + "ident": "AR-0701", + "type": "small_airport", + "name": "Manantiales Behr Compressor Plant Airport", + "latitude_deg": "-45.55715", + "longitude_deg": "-67.66875", + "elevation_ft": "2103", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Escalante", + "scheduled_service": "no" + }, + { + "id": "348468", + "ident": "AR-0702", + "type": "small_airport", + "name": "Gravina Peninsula Airport", + "latitude_deg": "-45.15064", + "longitude_deg": "-66.49068", + "elevation_ft": "80", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Escalante", + "scheduled_service": "no" + }, + { + "id": "348469", + "ident": "AR-0703", + "type": "small_airport", + "name": "Garayalde Airport", + "latitude_deg": "-44.70351", + "longitude_deg": "-66.64073", + "elevation_ft": "1461", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Garayalde", + "scheduled_service": "no" + }, + { + "id": "348470", + "ident": "AR-0704", + "type": "small_airport", + "name": "Estancia La Maciega Airport", + "latitude_deg": "-44.45854", + "longitude_deg": "-65.60563", + "elevation_ft": "620", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Florentino Ameghino", + "scheduled_service": "no" + }, + { + "id": "348471", + "ident": "AR-0705", + "type": "small_airport", + "name": "La Lonja Airport", + "latitude_deg": "-43.90377", + "longitude_deg": "-65.70839", + "elevation_ft": "903", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Florentino Ameghino", + "scheduled_service": "no" + }, + { + "id": "348472", + "ident": "AR-0706", + "type": "small_airport", + "name": "Punta Ninfas Airport", + "latitude_deg": "-42.97667", + "longitude_deg": "-64.3528", + "elevation_ft": "241", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Rawson", + "scheduled_service": "no" + }, + { + "id": "348473", + "ident": "AR-0707", + "type": "small_airport", + "name": "Punta Mejillón Airport", + "latitude_deg": "-40.98547", + "longitude_deg": "-64.17166", + "elevation_ft": "83", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Adolfo Alsina", + "scheduled_service": "no" + }, + { + "id": "348474", + "ident": "AR-0708", + "type": "small_airport", + "name": "Pico Sayago Airport", + "latitude_deg": "-42.815058", + "longitude_deg": "-64.026432", + "elevation_ft": "181", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Biedma", + "scheduled_service": "no" + }, + { + "id": "348475", + "ident": "AR-0709", + "type": "small_airport", + "name": "Haras Wassermann Airport", + "latitude_deg": "-40.59622", + "longitude_deg": "-62.19203", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Bahía San Blas", + "scheduled_service": "no" + }, + { + "id": "348476", + "ident": "AR-0710", + "type": "small_airport", + "name": "Estancia El Reducto Airport", + "latitude_deg": "-39.7964", + "longitude_deg": "-62.31613", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Villarino", + "scheduled_service": "no" + }, + { + "id": "348477", + "ident": "AR-0711", + "type": "heliport", + "name": "Puerto Belgrano Naval Base Heliport", + "latitude_deg": "-38.88875", + "longitude_deg": "-62.10864", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Puerto Belgrano", + "scheduled_service": "no" + }, + { + "id": "348638", + "ident": "AR-0712", + "type": "small_airport", + "name": "Campamento Jorge Cepernic Airport", + "latitude_deg": "-50.30009", + "longitude_deg": "-70.15045", + "elevation_ft": "1270", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Corpen Aike", + "scheduled_service": "no" + }, + { + "id": "348639", + "ident": "AR-0713", + "type": "small_airport", + "name": "Las Horquetas Airport", + "latitude_deg": "-51.39524", + "longitude_deg": "-70.23175", + "elevation_ft": "410", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Güer Aike", + "scheduled_service": "no" + }, + { + "id": "348640", + "ident": "AR-0714", + "type": "small_airport", + "name": "Rospentek Airport", + "latitude_deg": "-51.66915", + "longitude_deg": "-72.13719", + "elevation_ft": "591", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Güer Aike", + "scheduled_service": "no" + }, + { + "id": "348641", + "ident": "AR-0715", + "type": "small_airport", + "name": "Estancia Tapi Aike Airport", + "latitude_deg": "-51.05038", + "longitude_deg": "-71.81291", + "elevation_ft": "971", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Güer Aike", + "scheduled_service": "no" + }, + { + "id": "348642", + "ident": "AR-0716", + "type": "small_airport", + "name": "Fuentes de Coyle Airport", + "latitude_deg": "-51.03431", + "longitude_deg": "-71.48158", + "elevation_ft": "932", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Güer Aike", + "scheduled_service": "no" + }, + { + "id": "348643", + "ident": "AR-0717", + "type": "small_airport", + "name": "Estancia Río Bote Airport", + "latitude_deg": "-50.26132", + "longitude_deg": "-71.72777", + "elevation_ft": "581", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Lago Argentino", + "scheduled_service": "no" + }, + { + "id": "348644", + "ident": "AR-0718", + "type": "small_airport", + "name": "Gendarme Barreto West Airport", + "latitude_deg": "-50.27839", + "longitude_deg": "-71.04281", + "elevation_ft": "823", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Lago Argentino", + "scheduled_service": "no" + }, + { + "id": "348645", + "ident": "AR-0719", + "type": "small_airport", + "name": "Gendarme Barreto Airport", + "latitude_deg": "-50.28758", + "longitude_deg": "-70.90429", + "elevation_ft": "981", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Lago Argentino", + "scheduled_service": "no" + }, + { + "id": "348646", + "ident": "AR-0720", + "type": "small_airport", + "name": "Chucuruc Aike Airport", + "latitude_deg": "-50.10765", + "longitude_deg": "-69.38463", + "elevation_ft": "144", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Corpen Aike", + "scheduled_service": "no" + }, + { + "id": "348647", + "ident": "AR-0721", + "type": "small_airport", + "name": "Estancia La Julia Airport", + "latitude_deg": "-49.58133", + "longitude_deg": "-69.59216", + "elevation_ft": "299", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Corpen Aike", + "scheduled_service": "no" + }, + { + "id": "348648", + "ident": "AR-0722", + "type": "small_airport", + "name": "Casa Riera Airport", + "latitude_deg": "-48.40504", + "longitude_deg": "-70.56118", + "elevation_ft": "1470", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Río Chico", + "scheduled_service": "no" + }, + { + "id": "348649", + "ident": "AR-0723", + "type": "small_airport", + "name": "Estancia Silvina Airport", + "latitude_deg": "-48.35107", + "longitude_deg": "-70.80247", + "elevation_ft": "1644", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Río Chico", + "scheduled_service": "no" + }, + { + "id": "348650", + "ident": "AR-0724", + "type": "small_airport", + "name": "Yacimiento el Valle Lago del Desierto Airport", + "latitude_deg": "-46.71752", + "longitude_deg": "-68.30155", + "elevation_ft": "814", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Deseado", + "scheduled_service": "no", + "keywords": "Koluel Kayke" + }, + { + "id": "348749", + "ident": "AR-0725", + "type": "small_airport", + "name": "Stroeder Southeast Airport", + "latitude_deg": "-40.20968", + "longitude_deg": "-62.60485", + "elevation_ft": "92", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Stroeder", + "scheduled_service": "no" + }, + { + "id": "349354", + "ident": "AR-0726", + "type": "small_airport", + "name": "Bahía de los Moros Airport", + "latitude_deg": "-38.51425", + "longitude_deg": "-58.47415", + "elevation_ft": "60", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Lobería", + "scheduled_service": "no" + }, + { + "id": "349355", + "ident": "AR-0727", + "type": "small_airport", + "name": "Quequén Airport", + "latitude_deg": "-38.505", + "longitude_deg": "-58.69127", + "elevation_ft": "75", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Quequén", + "scheduled_service": "no" + }, + { + "id": "349356", + "ident": "AR-0728", + "type": "small_airport", + "name": "Campomar Airport", + "latitude_deg": "-38.64912", + "longitude_deg": "-59.00613", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Necochea", + "scheduled_service": "no" + }, + { + "id": "350009", + "ident": "AR-0729", + "type": "small_airport", + "name": "Itatí Airport", + "latitude_deg": "-27.288045", + "longitude_deg": "-58.244662", + "elevation_ft": "207", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Itati", + "scheduled_service": "no", + "local_code": "CTI" + }, + { + "id": "350937", + "ident": "AR-0730", + "type": "small_airport", + "name": "El Chaltén North Airport", + "latitude_deg": "-49.27908", + "longitude_deg": "-72.88582", + "elevation_ft": "1366", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "El Chaltén", + "scheduled_service": "no" + }, + { + "id": "351892", + "ident": "AR-0731", + "type": "heliport", + "name": "San Fernando / Paraná Miní Heliport", + "latitude_deg": "-34.171068", + "longitude_deg": "-58.510855", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Río Paraná Miní", + "scheduled_service": "no", + "local_code": "HMH" + }, + { + "id": "354551", + "ident": "AR-0732", + "type": "heliport", + "name": "Hospital helipad", + "latitude_deg": "-32.911775", + "longitude_deg": "-60.681374", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Rosario", + "scheduled_service": "no" + }, + { + "id": "354556", + "ident": "AR-0733", + "type": "heliport", + "name": "PNA Heliport", + "latitude_deg": "-32.943861", + "longitude_deg": "-60.632", + "elevation_ft": "46", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Rosario", + "scheduled_service": "no" + }, + { + "id": "354557", + "ident": "AR-0734", + "type": "closed", + "name": "Santa Fé City Airport", + "latitude_deg": "-31.659444", + "longitude_deg": "-60.814722", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Santa Fé", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_F%C3%A9_Airport", + "keywords": "SAFE" + }, + { + "id": "429702", + "ident": "AR-0735", + "type": "small_airport", + "name": "Estancia La Pastosa Airport", + "latitude_deg": "-42.76575", + "longitude_deg": "-63.74213", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Punta Delgada", + "scheduled_service": "no" + }, + { + "id": "16295", + "ident": "AR01", + "type": "closed", + "name": "Baker Flying Service Airport", + "latitude_deg": "33.10784", + "longitude_deg": "-91.253787", + "elevation_ft": "116", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Eudora", + "scheduled_service": "no", + "keywords": "AR01" + }, + { + "id": "16296", + "ident": "AR02", + "type": "heliport", + "name": "Johnson County Regional Hospital Heliport", + "latitude_deg": "35.461216", + "longitude_deg": "-93.445383", + "elevation_ft": "491", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Clarksville", + "scheduled_service": "no", + "gps_code": "AR02", + "local_code": "AR02", + "keywords": "AR71" + }, + { + "id": "16297", + "ident": "AR03", + "type": "small_airport", + "name": "Centerville Airstrip", + "latitude_deg": "35.11869812011719", + "longitude_deg": "-93.20159912109375", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Centerville", + "scheduled_service": "no", + "gps_code": "AR03", + "local_code": "AR03" + }, + { + "id": "16298", + "ident": "AR04", + "type": "closed", + "name": "Gunem Field", + "latitude_deg": "36.261701", + "longitude_deg": "-94.248299", + "elevation_ft": "1214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Cave Springs", + "scheduled_service": "no", + "keywords": "AR04" + }, + { + "id": "16299", + "ident": "AR05", + "type": "small_airport", + "name": "John Harris Field", + "latitude_deg": "35.21590042114258", + "longitude_deg": "-93.30490112304688", + "elevation_ft": "1770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Chickala", + "scheduled_service": "no", + "gps_code": "AR05", + "local_code": "AR05" + }, + { + "id": "16300", + "ident": "AR06", + "type": "small_airport", + "name": "Cantrell Farms Airport", + "latitude_deg": "35.23249816894531", + "longitude_deg": "-92.34329986572266", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Conway", + "scheduled_service": "no", + "gps_code": "AR06", + "local_code": "AR06" + }, + { + "id": "16301", + "ident": "AR07", + "type": "heliport", + "name": "Ashley County Hospital Heliport", + "latitude_deg": "33.14179992675781", + "longitude_deg": "-91.93350219726562", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Crossett", + "scheduled_service": "no", + "gps_code": "AR07", + "local_code": "AR07" + }, + { + "id": "16302", + "ident": "AR08", + "type": "small_airport", + "name": "Flying Machines Airstrip", + "latitude_deg": "36.31529998779297", + "longitude_deg": "-93.6666030883789", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Eureka Springs", + "scheduled_service": "no", + "gps_code": "AR08", + "local_code": "AR08" + }, + { + "id": "16303", + "ident": "AR09", + "type": "small_airport", + "name": "Gravette Field", + "latitude_deg": "36.413898", + "longitude_deg": "-94.438904", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Gravette", + "scheduled_service": "no", + "gps_code": "AR09", + "local_code": "AR09", + "keywords": "Bella Vista Field" + }, + { + "id": "16304", + "ident": "AR10", + "type": "small_airport", + "name": "Greenwalt Company Airport", + "latitude_deg": "34.80670166015625", + "longitude_deg": "-91.6082992553711", + "elevation_ft": "232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Hazen", + "scheduled_service": "no", + "gps_code": "AR10", + "local_code": "AR10" + }, + { + "id": "16305", + "ident": "AR11", + "type": "small_airport", + "name": "Ozark Aerodrome", + "latitude_deg": "36.287487", + "longitude_deg": "-94.08774", + "elevation_ft": "1270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Rogers", + "scheduled_service": "no", + "gps_code": "AR11", + "local_code": "AR11" + }, + { + "id": "16306", + "ident": "AR12", + "type": "small_airport", + "name": "Mc Donald's Strip", + "latitude_deg": "35.320598602299995", + "longitude_deg": "-92.018699646", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Rose Bud", + "scheduled_service": "no", + "gps_code": "AR12", + "local_code": "AR12" + }, + { + "id": "16307", + "ident": "AR13", + "type": "small_airport", + "name": "Pearson Field", + "latitude_deg": "34.98619842529297", + "longitude_deg": "-92.63349914550781", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Bigelow", + "scheduled_service": "no", + "gps_code": "AR13", + "local_code": "AR13" + }, + { + "id": "16308", + "ident": "AR17", + "type": "small_airport", + "name": "Burns Aerodrome", + "latitude_deg": "34.9833984375", + "longitude_deg": "-90.91510009765625", + "elevation_ft": "207", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Palestine", + "scheduled_service": "no", + "gps_code": "AR17", + "local_code": "AR17" + }, + { + "id": "16309", + "ident": "AR18", + "type": "closed", + "name": "Gerrard Airport", + "latitude_deg": "34.7715", + "longitude_deg": "-90.840401", + "elevation_ft": "205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Marianna", + "scheduled_service": "no", + "keywords": "AR18" + }, + { + "id": "16310", + "ident": "AR19", + "type": "small_airport", + "name": "Wesson-Davis Field", + "latitude_deg": "35.21289825439453", + "longitude_deg": "-93.7520980834961", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "AR19", + "local_code": "AR19" + }, + { + "id": "16311", + "ident": "AR20", + "type": "heliport", + "name": "Lawrence Memorial Heliport", + "latitude_deg": "36.073699951171875", + "longitude_deg": "-90.96849822998047", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Walnut Ridge", + "scheduled_service": "no", + "gps_code": "AR20", + "local_code": "AR20" + }, + { + "id": "16312", + "ident": "AR21", + "type": "heliport", + "name": "Mercy Hospital Fort Smith Heliport", + "latitude_deg": "35.35375", + "longitude_deg": "-94.352024", + "elevation_ft": "454", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Fort Smith", + "scheduled_service": "no", + "gps_code": "AR21", + "local_code": "AR21", + "keywords": "St Edward Mercy Medical Center" + }, + { + "id": "16313", + "ident": "AR22", + "type": "small_airport", + "name": "Tommy's Flying Service Inc Airport", + "latitude_deg": "34.381500244099996", + "longitude_deg": "-91.95850372310001", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Sherrill", + "scheduled_service": "no", + "gps_code": "AR22", + "local_code": "AR22" + }, + { + "id": "16314", + "ident": "AR23", + "type": "small_airport", + "name": "Cedar Creek Ranch Airport", + "latitude_deg": "35.125018", + "longitude_deg": "-93.47679", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Belleville", + "scheduled_service": "no", + "gps_code": "25AR", + "local_code": "25AR", + "keywords": "AR23" + }, + { + "id": "16315", + "ident": "AR24", + "type": "heliport", + "name": "White River Medical Center Heliport", + "latitude_deg": "35.76810073852539", + "longitude_deg": "-91.63459777832031", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Batesville", + "scheduled_service": "no", + "gps_code": "AR24", + "local_code": "AR24" + }, + { + "id": "16316", + "ident": "AR25", + "type": "small_airport", + "name": "Vilonia Airport", + "latitude_deg": "35.11869812011719", + "longitude_deg": "-92.18930053710938", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Vilonia", + "scheduled_service": "no", + "gps_code": "AR25", + "local_code": "AR25" + }, + { + "id": "16317", + "ident": "AR27", + "type": "small_airport", + "name": "Lollars Creek Farm Airport", + "latitude_deg": "35.93899917602539", + "longitude_deg": "-93.845703125", + "elevation_ft": "1430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Wesley", + "scheduled_service": "no", + "gps_code": "AR27", + "local_code": "AR27" + }, + { + "id": "16318", + "ident": "AR28", + "type": "closed", + "name": "Odom Field", + "latitude_deg": "34.938931", + "longitude_deg": "-92.024747", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Cabot", + "scheduled_service": "no", + "keywords": "AR28" + }, + { + "id": "16319", + "ident": "AR29", + "type": "heliport", + "name": "UAMS Bravo Heliport", + "latitude_deg": "34.749942", + "longitude_deg": "-92.320148", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Little Rock", + "scheduled_service": "no", + "gps_code": "AR29", + "local_code": "AR29" + }, + { + "id": "16320", + "ident": "AR30", + "type": "heliport", + "name": "Baptist Memorial Hospital-Blytheville Heliport", + "latitude_deg": "35.943536", + "longitude_deg": "-89.916378", + "elevation_ft": "254", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Blytheville", + "scheduled_service": "no", + "keywords": "AR30" + }, + { + "id": "16321", + "ident": "AR31", + "type": "heliport", + "name": "C. Andrew Laird Heliport", + "latitude_deg": "33.61389923095703", + "longitude_deg": "-112.27300262451172", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sun City", + "scheduled_service": "no", + "gps_code": "AR31", + "local_code": "AR31" + }, + { + "id": "16322", + "ident": "AR32", + "type": "heliport", + "name": "Dardanelle Hospital Heliport", + "latitude_deg": "35.22090148925781", + "longitude_deg": "-93.15270233154297", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Dardanelle", + "scheduled_service": "no", + "gps_code": "AR32", + "local_code": "AR32" + }, + { + "id": "16323", + "ident": "AR33", + "type": "heliport", + "name": "Honey Hill Heliport", + "latitude_deg": "35.2333984375", + "longitude_deg": "-91.78739929199219", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Searcy", + "scheduled_service": "no", + "gps_code": "AR33", + "local_code": "AR33" + }, + { + "id": "16324", + "ident": "AR34", + "type": "small_airport", + "name": "Pine Village Airport", + "latitude_deg": "34.981998443603516", + "longitude_deg": "-92.44519805908203", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Mayflower", + "scheduled_service": "no", + "gps_code": "AR34", + "local_code": "AR34" + }, + { + "id": "16325", + "ident": "AR35", + "type": "small_airport", + "name": "Henson Farm Airport", + "latitude_deg": "36.086700439453125", + "longitude_deg": "-94.1052017211914", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "AR35", + "local_code": "AR35" + }, + { + "id": "16326", + "ident": "AR36", + "type": "heliport", + "name": "Medi-Port Heliport", + "latitude_deg": "36.332989", + "longitude_deg": "-94.13202", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Rogers", + "scheduled_service": "no", + "gps_code": "AR36", + "local_code": "AR36" + }, + { + "id": "16327", + "ident": "AR37", + "type": "heliport", + "name": "St Michael Hospital Heliport", + "latitude_deg": "33.427325", + "longitude_deg": "-94.042344", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Texarkana", + "scheduled_service": "no", + "gps_code": "AR37", + "local_code": "AR37" + }, + { + "id": "16328", + "ident": "AR38", + "type": "heliport", + "name": "Arkansas National Guard Emergency Access Heliport", + "latitude_deg": "35.21950149536133", + "longitude_deg": "-93.17990112304688", + "elevation_ft": "399", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Dardanelle", + "scheduled_service": "no", + "gps_code": "AR38", + "local_code": "AR38" + }, + { + "id": "16329", + "ident": "AR40", + "type": "heliport", + "name": "Sparks Regional Medical Center Heliport", + "latitude_deg": "35.37699890136719", + "longitude_deg": "-94.42019653320312", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Fort Smith", + "scheduled_service": "no", + "gps_code": "AR40", + "local_code": "AR40" + }, + { + "id": "16330", + "ident": "AR41", + "type": "heliport", + "name": "Mercy Hospital Berryville Heliport", + "latitude_deg": "36.359253", + "longitude_deg": "-93.550912", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Berryville", + "scheduled_service": "no", + "gps_code": "AR41", + "local_code": "AR41", + "keywords": "Carroll General Hospital Heliport" + }, + { + "id": "16331", + "ident": "AR42", + "type": "heliport", + "name": "Ouachita County Medical Center Heliport", + "latitude_deg": "33.576499939", + "longitude_deg": "-92.83540344240001", + "elevation_ft": "212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Camden", + "scheduled_service": "no", + "gps_code": "AR42", + "local_code": "AR42" + }, + { + "id": "16332", + "ident": "AR43", + "type": "small_airport", + "name": "Brickey Private Airport", + "latitude_deg": "35.097628", + "longitude_deg": "-92.779082", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Oppelo", + "scheduled_service": "no", + "gps_code": "AR43", + "local_code": "AR43" + }, + { + "id": "16333", + "ident": "AR44", + "type": "small_airport", + "name": "Flying W Airport", + "latitude_deg": "33.51259994506836", + "longitude_deg": "-94.01349639892578", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Texarkana", + "scheduled_service": "no", + "gps_code": "AR44", + "local_code": "AR44" + }, + { + "id": "16334", + "ident": "AR45", + "type": "heliport", + "name": "CHI Saint Vincent Infirmary Heliport", + "latitude_deg": "34.750433", + "longitude_deg": "-92.340699", + "elevation_ft": "435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Little Rock", + "scheduled_service": "no", + "gps_code": "AR45", + "local_code": "AR45" + }, + { + "id": "16335", + "ident": "AR46", + "type": "small_airport", + "name": "Penrose Airport", + "latitude_deg": "35.18895", + "longitude_deg": "-91.050131", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Mc Crory", + "scheduled_service": "no", + "gps_code": "AR46", + "local_code": "AR46" + }, + { + "id": "16336", + "ident": "AR47", + "type": "heliport", + "name": "Warner Brown Hospital Heliport", + "latitude_deg": "33.2135009765625", + "longitude_deg": "-92.66790008544922", + "elevation_ft": "212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "El Dorado", + "scheduled_service": "no", + "gps_code": "AR47", + "local_code": "AR47" + }, + { + "id": "16337", + "ident": "AR48", + "type": "heliport", + "name": "Union Medical Center Heliport", + "latitude_deg": "33.214599609375", + "longitude_deg": "-92.66790008544922", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "El Dorado", + "scheduled_service": "no", + "gps_code": "AR48", + "local_code": "AR48" + }, + { + "id": "16338", + "ident": "AR49", + "type": "heliport", + "name": "Veterans Administration Heliport", + "latitude_deg": "36.079200744628906", + "longitude_deg": "-94.15910339355469", + "elevation_ft": "1453", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "AR49", + "local_code": "AR49" + }, + { + "id": "16339", + "ident": "AR50", + "type": "small_airport", + "name": "Hess Strip", + "latitude_deg": "35.26679992675781", + "longitude_deg": "-90.9834976196289", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Wynne", + "scheduled_service": "no", + "gps_code": "AR50", + "local_code": "AR50" + }, + { + "id": "16340", + "ident": "AR51", + "type": "heliport", + "name": "Smith Heliport", + "latitude_deg": "36.2239990234375", + "longitude_deg": "-93.57820129394531", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Berryville", + "scheduled_service": "no", + "gps_code": "AR51", + "local_code": "AR51" + }, + { + "id": "16341", + "ident": "AR52", + "type": "closed", + "name": "Hazen Heliport", + "latitude_deg": "34.780645", + "longitude_deg": "-91.581852", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Hazen", + "scheduled_service": "no", + "keywords": "AR52" + }, + { + "id": "16342", + "ident": "AR53", + "type": "heliport", + "name": "Five Rivers Medical Center Heliport", + "latitude_deg": "36.289249", + "longitude_deg": "-90.996319", + "elevation_ft": "433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Pocahontas", + "scheduled_service": "no", + "gps_code": "AR53", + "local_code": "AR53", + "keywords": "Randolph County Medical Center Heliport" + }, + { + "id": "16343", + "ident": "AR54", + "type": "closed", + "name": "Ralph Fulmer Field", + "latitude_deg": "34.917766", + "longitude_deg": "-91.916245", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Cabot", + "scheduled_service": "no", + "keywords": "AR54" + }, + { + "id": "16344", + "ident": "AR55", + "type": "small_airport", + "name": "R.V. Stewart Field", + "latitude_deg": "34.73979949951172", + "longitude_deg": "-92.09010314941406", + "elevation_ft": "251", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "North Little Rock", + "scheduled_service": "no", + "gps_code": "AR55", + "local_code": "AR55" + }, + { + "id": "16345", + "ident": "AR56", + "type": "small_airport", + "name": "Amos Airport", + "latitude_deg": "35.61022", + "longitude_deg": "-91.436249", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Oil Trough", + "scheduled_service": "no", + "gps_code": "AR56", + "local_code": "AR56" + }, + { + "id": "16346", + "ident": "AR59", + "type": "heliport", + "name": "De Witt Hospital Heliport", + "latitude_deg": "34.278808", + "longitude_deg": "-91.338628", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "De Witt", + "scheduled_service": "no", + "gps_code": "AR59", + "local_code": "AR59", + "keywords": "De Witt City Hospital" + }, + { + "id": "16347", + "ident": "AR60", + "type": "heliport", + "name": "NEA Baptist Hospital Heliport", + "latitude_deg": "35.807603", + "longitude_deg": "-90.666472", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Jonesboro", + "scheduled_service": "no", + "gps_code": "AR60", + "local_code": "AR60", + "keywords": "Methodist Hospital of Jonesboro Heliport" + }, + { + "id": "16348", + "ident": "AR61", + "type": "heliport", + "name": "Chicot Memorial Hospital Heliport", + "latitude_deg": "33.305301666259766", + "longitude_deg": "-91.28919982910156", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Lake Village", + "scheduled_service": "no", + "gps_code": "AR61", + "local_code": "AR61" + }, + { + "id": "16349", + "ident": "AR62", + "type": "heliport", + "name": "Arkansas Children's Hospital Heliport", + "latitude_deg": "34.742698669433594", + "longitude_deg": "-92.293701171875", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Little Rock", + "scheduled_service": "no", + "gps_code": "AR62", + "local_code": "AR62" + }, + { + "id": "16350", + "ident": "AR63", + "type": "heliport", + "name": "Mc Gehee Desha County Hospital Heliport", + "latitude_deg": "33.6184005737", + "longitude_deg": "-91.3923034668", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Mc Gehee", + "scheduled_service": "no", + "gps_code": "AR63", + "local_code": "AR63" + }, + { + "id": "16351", + "ident": "AR64", + "type": "closed", + "name": "White River Airport", + "latitude_deg": "35.9212", + "longitude_deg": "-92.005096", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Melbourne", + "scheduled_service": "no", + "keywords": "AR64" + }, + { + "id": "16352", + "ident": "AR65", + "type": "heliport", + "name": "St Anthony's Medical Center Heliport", + "latitude_deg": "35.167598724399994", + "longitude_deg": "-92.7220993042", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Morrilton", + "scheduled_service": "no", + "gps_code": "AR65", + "local_code": "AR65" + }, + { + "id": "16353", + "ident": "AR66", + "type": "heliport", + "name": "Pike County Hospital Heliport", + "latitude_deg": "34.049800872802734", + "longitude_deg": "-93.68409729003906", + "elevation_ft": "335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Murfreesboro", + "scheduled_service": "no", + "gps_code": "AR66", + "local_code": "AR66" + }, + { + "id": "16354", + "ident": "AR67", + "type": "heliport", + "name": "SMC Regional Medical Center Heliport", + "latitude_deg": "35.700401", + "longitude_deg": "-89.975601", + "elevation_ft": "244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Osceola", + "scheduled_service": "no", + "gps_code": "AR67", + "local_code": "AR67", + "keywords": "Grandview Street Heliport" + }, + { + "id": "16355", + "ident": "AR68", + "type": "heliport", + "name": "Fulton County Hospital Heliport", + "latitude_deg": "36.38309860229492", + "longitude_deg": "-91.8102035522461", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "AR68", + "local_code": "AR68" + }, + { + "id": "16356", + "ident": "AR69", + "type": "closed", + "name": "Siloam Springs Memorial Hospital Heliport", + "latitude_deg": "36.182567", + "longitude_deg": "-94.541109", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Siloam Springs", + "scheduled_service": "no", + "home_link": "https://talkbusiness.net/2012/04/new-siloam-springs-regional-hospital-ready-for-business/", + "keywords": "AR69" + }, + { + "id": "16357", + "ident": "AR70", + "type": "heliport", + "name": "Bradley County Memorial Hospital Heliport", + "latitude_deg": "33.61040115356445", + "longitude_deg": "-92.0593032836914", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Warren", + "scheduled_service": "no", + "gps_code": "AR70", + "local_code": "AR70" + }, + { + "id": "16358", + "ident": "AR71", + "type": "heliport", + "name": "Hospital Heliport", + "latitude_deg": "35.46760177612305", + "longitude_deg": "-93.41909790039062", + "elevation_ft": "491", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Clarksville", + "scheduled_service": "no", + "gps_code": "AR71", + "local_code": "AR71" + }, + { + "id": "16359", + "ident": "AR72", + "type": "heliport", + "name": "Forrest City Medical Center Heliport", + "latitude_deg": "35.039778", + "longitude_deg": "-90.776972", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Forrest City", + "scheduled_service": "no", + "gps_code": "AR72", + "local_code": "AR72", + "keywords": "Baptist Memorial Hospital-FC Heliport" + }, + { + "id": "16360", + "ident": "AR73", + "type": "heliport", + "name": "Piggott Community Hospital Heliport", + "latitude_deg": "36.389801025390625", + "longitude_deg": "-90.2020034790039", + "elevation_ft": "272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Piggott", + "scheduled_service": "no", + "gps_code": "AR73", + "local_code": "AR73" + }, + { + "id": "16361", + "ident": "AR74", + "type": "heliport", + "name": "Cross Ridge County Hospital Heliport", + "latitude_deg": "35.220118", + "longitude_deg": "-90.785992", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Wynne", + "scheduled_service": "no", + "gps_code": "AR74", + "local_code": "AR74" + }, + { + "id": "16362", + "ident": "AR75", + "type": "heliport", + "name": "Burns Funeral Home Parking Lot Heliport", + "latitude_deg": "36.232601165771484", + "longitude_deg": "-92.68820190429688", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Yellville", + "scheduled_service": "no", + "gps_code": "AR75", + "local_code": "AR75" + }, + { + "id": "16363", + "ident": "AR76", + "type": "heliport", + "name": "Augusta Heliport", + "latitude_deg": "35.288700103759766", + "longitude_deg": "-91.3584976196289", + "elevation_ft": "212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Augusta", + "scheduled_service": "no", + "gps_code": "AR76", + "local_code": "AR76" + }, + { + "id": "16364", + "ident": "AR77", + "type": "heliport", + "name": "Helena Regional Medical Center Heliport", + "latitude_deg": "34.5098", + "longitude_deg": "-90.626198", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Helena", + "scheduled_service": "no", + "gps_code": "AR77", + "local_code": "AR77", + "keywords": "Helena Hospital" + }, + { + "id": "16365", + "ident": "AR78", + "type": "heliport", + "name": "Unity Health Specialty Care Heliport", + "latitude_deg": "35.233443", + "longitude_deg": "-91.729728", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Searcy", + "scheduled_service": "no", + "gps_code": "AR78", + "local_code": "AR78", + "keywords": "White County Medical Center" + }, + { + "id": "16366", + "ident": "AR79", + "type": "small_airport", + "name": "Flying G Ranch Airport", + "latitude_deg": "33.693497", + "longitude_deg": "-91.379612", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Tillar", + "scheduled_service": "no", + "gps_code": "AR79", + "local_code": "AR79" + }, + { + "id": "16367", + "ident": "AR80", + "type": "heliport", + "name": "North Arkansas Medical Center Heliport", + "latitude_deg": "36.236487", + "longitude_deg": "-93.10934", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Harrison", + "scheduled_service": "no", + "gps_code": "AR80", + "local_code": "AR80" + }, + { + "id": "16368", + "ident": "AR81", + "type": "small_airport", + "name": "Katheryn's Landing Airport", + "latitude_deg": "34.16230010986328", + "longitude_deg": "-92.60379791259766", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Leola", + "scheduled_service": "no", + "gps_code": "AR81", + "local_code": "AR81" + }, + { + "id": "16369", + "ident": "AR82", + "type": "small_airport", + "name": "Gillespie Strip", + "latitude_deg": "34.171199798583984", + "longitude_deg": "-92.69599914550781", + "elevation_ft": "492", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Leola", + "scheduled_service": "no", + "gps_code": "AR82", + "local_code": "AR82" + }, + { + "id": "16370", + "ident": "AR83", + "type": "small_airport", + "name": "Heard Airport", + "latitude_deg": "34.17620086669922", + "longitude_deg": "-92.70099639892578", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Leola", + "scheduled_service": "no", + "gps_code": "AR83", + "local_code": "AR83" + }, + { + "id": "16371", + "ident": "AR84", + "type": "small_airport", + "name": "Bobwhite Hill Ranch Airport", + "latitude_deg": "34.96649932861328", + "longitude_deg": "-92.29930114746094", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Mayflower", + "scheduled_service": "no", + "gps_code": "AR84", + "local_code": "AR84" + }, + { + "id": "16372", + "ident": "AR85", + "type": "heliport", + "name": "Drew Memorial Hospital Heliport", + "latitude_deg": "33.62009811401367", + "longitude_deg": "-91.82599639892578", + "elevation_ft": "296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Monticello", + "scheduled_service": "no", + "gps_code": "AR85", + "local_code": "AR85" + }, + { + "id": "16373", + "ident": "AR86", + "type": "heliport", + "name": "Ano Heliport", + "latitude_deg": "35.308101654052734", + "longitude_deg": "-93.22429656982422", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Russellville", + "scheduled_service": "no", + "gps_code": "AR86", + "local_code": "AR86" + }, + { + "id": "16374", + "ident": "AR87", + "type": "heliport", + "name": "Sparks Medical Center Van Buren Heliport", + "latitude_deg": "35.434625", + "longitude_deg": "-94.339947", + "elevation_ft": "467", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Van Buren", + "scheduled_service": "no", + "gps_code": "AR87", + "local_code": "AR87", + "keywords": "Crawford Memorial Hospital" + }, + { + "id": "16375", + "ident": "AR88", + "type": "small_airport", + "name": "Poe's Airport", + "latitude_deg": "35.0547981262207", + "longitude_deg": "-92.35399627685547", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Conway", + "scheduled_service": "no", + "gps_code": "AR88", + "local_code": "AR88" + }, + { + "id": "16376", + "ident": "AR89", + "type": "small_airport", + "name": "Landers Loop Airport", + "latitude_deg": "35.40010070800781", + "longitude_deg": "-93.06600189208984", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Dover", + "scheduled_service": "no", + "gps_code": "AR89", + "local_code": "AR89" + }, + { + "id": "16377", + "ident": "AR90", + "type": "heliport", + "name": "Stephens Heliport", + "latitude_deg": "34.73649978637695", + "longitude_deg": "-92.50879669189453", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Little Rock", + "scheduled_service": "no", + "gps_code": "AR90", + "local_code": "AR90" + }, + { + "id": "16378", + "ident": "AR91", + "type": "small_airport", + "name": "Circle S Farms Airport", + "latitude_deg": "36.22589874267578", + "longitude_deg": "-94.03209686279297", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Lowell", + "scheduled_service": "no", + "gps_code": "AR91", + "local_code": "AR91" + }, + { + "id": "16379", + "ident": "AR92", + "type": "heliport", + "name": "Unity Health Harris Medical Center Heliport", + "latitude_deg": "35.609774", + "longitude_deg": "-91.264466", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "AR92", + "local_code": "AR92", + "keywords": "Harris Hospital and Clinic Heliport" + }, + { + "id": "16380", + "ident": "AR93", + "type": "small_airport", + "name": "Ark-Mo Airport", + "latitude_deg": "36.48613", + "longitude_deg": "-90.27755", + "elevation_ft": "308", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Pollard", + "scheduled_service": "no", + "gps_code": "AR93", + "local_code": "AR93" + }, + { + "id": "16381", + "ident": "AR94", + "type": "closed", + "name": "Squirrel Run Airport", + "latitude_deg": "35.485401", + "longitude_deg": "-94.138298", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Dyer", + "scheduled_service": "no", + "keywords": "AR94" + }, + { + "id": "16382", + "ident": "AR95", + "type": "heliport", + "name": "Arkansas Methodist Hospital Heliport", + "latitude_deg": "36.050899505615234", + "longitude_deg": "-90.49819946289062", + "elevation_ft": "326", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Paragould", + "scheduled_service": "no", + "gps_code": "AR95", + "local_code": "AR95" + }, + { + "id": "16383", + "ident": "AR97", + "type": "small_airport", + "name": "Chael Airport", + "latitude_deg": "35.22010040283203", + "longitude_deg": "-92.49649810791016", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Wooster", + "scheduled_service": "no", + "gps_code": "AR97", + "local_code": "AR97" + }, + { + "id": "16384", + "ident": "AR98", + "type": "small_airport", + "name": "Johnson Field", + "latitude_deg": "35.26449966430664", + "longitude_deg": "-91.18900299072266", + "elevation_ft": "208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Mc Crory", + "scheduled_service": "no", + "gps_code": "AR98", + "local_code": "AR98" + }, + { + "id": "301707", + "ident": "ARP", + "type": "small_airport", + "name": "Aragip Airport", + "latitude_deg": "-9.88333333333", + "longitude_deg": "149.483333333", + "elevation_ft": "1750", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "scheduled_service": "no", + "iata_code": "ARP", + "local_code": "AGP" + }, + { + "id": "301832", + "ident": "ARX", + "type": "closed", + "name": "Asbury Park Neptune Air Terminal", + "latitude_deg": "40.2193055556", + "longitude_deg": "-74.0908333333", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Asbury Park", + "scheduled_service": "no", + "iata_code": "ARX", + "keywords": "Schlossbach Field" + }, + { + "id": "16385", + "ident": "AS89", + "type": "closed", + "name": "Public Safety Heliport", + "latitude_deg": "33.537128", + "longitude_deg": "-112.18158", + "elevation_ft": "3995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Glendale", + "scheduled_service": "no", + "keywords": "AS89" + }, + { + "id": "301732", + "ident": "ASZ", + "type": "small_airport", + "name": "Asirim Airport", + "latitude_deg": "-6.009722222220001", + "longitude_deg": "150.368611111", + "elevation_ft": "1050", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WBK", + "scheduled_service": "no", + "iata_code": "ASZ", + "local_code": "ASM" + }, + { + "id": "43818", + "ident": "AT-0001", + "type": "heliport", + "name": "Pöchlarn-Wörth Heliport", + "latitude_deg": "48.214737", + "longitude_deg": "15.255424", + "elevation_ft": "709", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Pöchlarn-Wörth", + "scheduled_service": "no", + "gps_code": "LOAL" + }, + { + "id": "46529", + "ident": "AT-0002", + "type": "seaplane_base", + "name": "Scalaria Airchallenge Water Landing Area", + "latitude_deg": "47.734705433100004", + "longitude_deg": "13.4438323975", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-4", + "municipality": "Lake Wolfgang", + "scheduled_service": "no", + "home_link": "http://www.airchallenge.scalaria.com/" + }, + { + "id": "312150", + "ident": "AT-0003", + "type": "heliport", + "name": "Bad Tatzmannsdorf PVA Hospital Helipad", + "latitude_deg": "47.33072", + "longitude_deg": "16.22207", + "elevation_ft": "1247", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-1", + "municipality": "Bad Tatzmannsdorf", + "scheduled_service": "no" + }, + { + "id": "312153", + "ident": "AT-0004", + "type": "heliport", + "name": "Güssing Hospital Helipad", + "latitude_deg": "47.04977", + "longitude_deg": "16.3217", + "elevation_ft": "731", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-1", + "municipality": "Güssing", + "scheduled_service": "no" + }, + { + "id": "320904", + "ident": "AT-0005", + "type": "closed", + "name": "Retzer Land Heliport", + "latitude_deg": "48.7545", + "longitude_deg": "15.9622", + "elevation_ft": "781", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Retz", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Retzer_Land_Heliport", + "keywords": "LOAR" + }, + { + "id": "329106", + "ident": "AT-0006", + "type": "heliport", + "name": "Nenzing Heliport", + "latitude_deg": "47.208989", + "longitude_deg": "9.659822", + "elevation_ft": "1624", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-8", + "municipality": "Frastanz", + "scheduled_service": "no", + "gps_code": "LOJN", + "keywords": "Christophorus 8" + }, + { + "id": "329108", + "ident": "AT-0007", + "type": "heliport", + "name": "Christophorus 15 Heliport", + "latitude_deg": "47.9692672", + "longitude_deg": "14.9396096", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "scheduled_service": "no" + }, + { + "id": "329312", + "ident": "AT-0008", + "type": "heliport", + "name": "Gmünd Heliport", + "latitude_deg": "48.78522", + "longitude_deg": "14.974763", + "elevation_ft": "1594", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Gmünd", + "scheduled_service": "no", + "gps_code": "LOBG" + }, + { + "id": "334039", + "ident": "AT-0009", + "type": "small_airport", + "name": "Ameis Airstrip", + "latitude_deg": "48.657837", + "longitude_deg": "16.540234", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Ameis", + "scheduled_service": "no" + }, + { + "id": "349033", + "ident": "AT-0010", + "type": "small_airport", + "name": "Radochen Airstrip", + "latitude_deg": "46.76296", + "longitude_deg": "15.90426", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-6", + "scheduled_service": "no" + }, + { + "id": "336953", + "ident": "AT03", + "type": "medium_airport", + "name": "Concordia Skyway", + "latitude_deg": "-75.103278", + "longitude_deg": "123.35825", + "elevation_ft": "10725", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Concordia Station", + "scheduled_service": "no", + "gps_code": "AT03", + "wikipedia_link": "https://en.wikipedia.org/wiki/Concordia_Station" + }, + { + "id": "341265", + "ident": "AT13", + "type": "small_airport", + "name": "Zucchelli Ice Runway", + "latitude_deg": "-74.68109", + "longitude_deg": "164.12756", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Zucchelli Station", + "scheduled_service": "no", + "gps_code": "AT13" + }, + { + "id": "330063", + "ident": "AT25", + "type": "small_airport", + "name": "Showa Station Skiway", + "latitude_deg": "-69.006167", + "longitude_deg": "39.59", + "elevation_ft": "95", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Showa Station", + "scheduled_service": "no", + "gps_code": "AT25", + "wikipedia_link": "https://en.wikipedia.org/wiki/Showa_Station_(Antarctica)", + "keywords": "Syowa Station" + }, + { + "id": "336959", + "ident": "AT28", + "type": "medium_airport", + "name": "Vostok Skiway", + "latitude_deg": "-78.466139", + "longitude_deg": "106.84825", + "elevation_ft": "11447", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Vostok Station", + "scheduled_service": "no", + "gps_code": "AT28", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vostok_Station" + }, + { + "id": "301834", + "ident": "ATN", + "type": "small_airport", + "name": "Namatanai Airport", + "latitude_deg": "-3.6695", + "longitude_deg": "152.438", + "elevation_ft": "150", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NIK", + "municipality": "Namatanai", + "scheduled_service": "no", + "gps_code": "AYNX", + "iata_code": "ATN", + "local_code": "NTI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Namatanai_Airport" + }, + { + "id": "301672", + "ident": "ATP", + "type": "small_airport", + "name": "Aitape Airport", + "latitude_deg": "-3.1436111111100002", + "longitude_deg": "142.346805556", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Aitape", + "scheduled_service": "yes", + "gps_code": "AYAI", + "iata_code": "ATP", + "local_code": "APE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aitape_Airport" + }, + { + "id": "312384", + "ident": "ATUA", + "type": "small_airport", + "name": "Utai Airstrip", + "latitude_deg": "-3.386", + "longitude_deg": "141.5868", + "elevation_ft": "707", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Utai", + "scheduled_service": "no", + "gps_code": "ATUA", + "local_code": "UTAI" + }, + { + "id": "28102", + "ident": "AU-0001", + "type": "closed", + "name": "Hopetoun Airfield", + "latitude_deg": "-33.90850067138672", + "longitude_deg": "120.14700317382812", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Hopetoun", + "scheduled_service": "no" + }, + { + "id": "38201", + "ident": "AU-0002", + "type": "small_airport", + "name": "Dwellingup Airstrip", + "latitude_deg": "-32.6926994324", + "longitude_deg": "116.074996948", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Dwellingup", + "scheduled_service": "no", + "local_code": "A01", + "keywords": "http://sabc.org.au/knav/airport/A01.html" + }, + { + "id": "38202", + "ident": "AU-0003", + "type": "small_airport", + "name": "Tjukayirla Roadhouse Airstrip", + "latitude_deg": "-27.155199", + "longitude_deg": "124.584999", + "elevation_ft": "1425", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "local_code": "A02" + }, + { + "id": "38203", + "ident": "AU-0004", + "type": "small_airport", + "name": "Langley Park Airstrip", + "latitude_deg": "-31.9612293243", + "longitude_deg": "115.867866516", + "elevation_ft": "11", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Perth", + "scheduled_service": "no", + "local_code": "A03" + }, + { + "id": "38204", + "ident": "AU-0005", + "type": "small_airport", + "name": "Myrup fly in estate Airport", + "latitude_deg": "-33.789272", + "longitude_deg": "121.956847", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "local_code": "A04" + }, + { + "id": "38205", + "ident": "AU-0006", + "type": "small_airport", + "name": "Harrismith Airport", + "latitude_deg": "-32.9418449402", + "longitude_deg": "117.865447998", + "elevation_ft": "900", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Harrismith", + "scheduled_service": "no", + "local_code": "A05" + }, + { + "id": "38206", + "ident": "AU-0007", + "type": "small_airport", + "name": "Kulin Airport", + "latitude_deg": "-32.6721992493", + "longitude_deg": "118.168998718", + "elevation_ft": "1000", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "local_code": "A06" + }, + { + "id": "38207", + "ident": "AU-0008", + "type": "small_airport", + "name": "Althorpe Lighthouse Airstrip", + "latitude_deg": "-35.370700836199994", + "longitude_deg": "136.860992432", + "elevation_ft": "1000", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Althorpe Islands", + "scheduled_service": "no", + "local_code": "A07" + }, + { + "id": "38208", + "ident": "AU-0009", + "type": "small_airport", + "name": "Pinjarra North Airstrip", + "latitude_deg": "-32.5803985596", + "longitude_deg": "115.885002136", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Pinjarra", + "scheduled_service": "no", + "local_code": "A10" + }, + { + "id": "38209", + "ident": "AU-0010", + "type": "small_airport", + "name": "Pinjarra Skydiving Airstrip", + "latitude_deg": "-32.66652", + "longitude_deg": "115.881745", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Pinjarra", + "scheduled_service": "no", + "local_code": "A11", + "keywords": "YPIA" + }, + { + "id": "38210", + "ident": "AU-0011", + "type": "small_airport", + "name": "Wheeler Field", + "latitude_deg": "-32.7874909969", + "longitude_deg": "115.789482594", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "local_code": "A12" + }, + { + "id": "38211", + "ident": "AU-0012", + "type": "small_airport", + "name": "Lake Clifton Airstrip", + "latitude_deg": "-32.7909355164", + "longitude_deg": "115.670883179", + "elevation_ft": "11", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Lake Clifton", + "scheduled_service": "no", + "local_code": "A13" + }, + { + "id": "38212", + "ident": "AU-0013", + "type": "small_airport", + "name": "Between Lakes Private Airstrip", + "latitude_deg": "-32.849998474121094", + "longitude_deg": "115.63999938964844", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no" + }, + { + "id": "38213", + "ident": "AU-0014", + "type": "small_airport", + "name": "Abrolhos East Wallabi Island Airport", + "latitude_deg": "-28.43785", + "longitude_deg": "113.735583333", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Abrolhos", + "scheduled_service": "no", + "local_code": "A15" + }, + { + "id": "38214", + "ident": "AU-0015", + "type": "small_airport", + "name": "Bremer Bay Airport", + "latitude_deg": "-34.380561828599994", + "longitude_deg": "119.331947327", + "elevation_ft": "100", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Bremer Bay", + "scheduled_service": "no", + "local_code": "A17" + }, + { + "id": "38215", + "ident": "AU-0016", + "type": "small_airport", + "name": "Middlebrook Station Scone Airstrip", + "latitude_deg": "-31.9711685181", + "longitude_deg": "150.811477661", + "elevation_ft": "900", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Middlebrook Station", + "scheduled_service": "no", + "local_code": "A18" + }, + { + "id": "38216", + "ident": "AU-0017", + "type": "small_airport", + "name": "Lily Dutch Windmill Airstrip", + "latitude_deg": "-34.2250022888", + "longitude_deg": "118.216148376", + "elevation_ft": "655", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "local_code": "A19", + "home_link": "http://www.thelily.com.au/", + "keywords": "Dutch Windmill, Stirling Ranges" + }, + { + "id": "38217", + "ident": "AU-0018", + "type": "small_airport", + "name": "Preston Field - Blair Howe", + "latitude_deg": "-33.022077", + "longitude_deg": "115.702204", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YPFL", + "local_code": "A21" + }, + { + "id": "38218", + "ident": "AU-0019", + "type": "small_airport", + "name": "Avoca Airport", + "latitude_deg": "-41.781700134277344", + "longitude_deg": "147.7194061279297", + "elevation_ft": "700", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Avoca", + "scheduled_service": "no" + }, + { + "id": "42269", + "ident": "AU-0020", + "type": "small_airport", + "name": "Kukerin", + "latitude_deg": "-33.17490005493164", + "longitude_deg": "118.08499908447266", + "elevation_ft": "850", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Kukerin WA", + "scheduled_service": "no" + }, + { + "id": "42497", + "ident": "AU-0021", + "type": "small_airport", + "name": "Karijini National Park", + "latitude_deg": "-22.487101", + "longitude_deg": "118.468002", + "elevation_ft": "2325", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "home_link": "http://www.tompricewa.com.au/karijini.asp" + }, + { + "id": "42507", + "ident": "AU-0022", + "type": "small_airport", + "name": "Cardabia Station Airstrip", + "latitude_deg": "-23.10602378845215", + "longitude_deg": "113.80522918701172", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Indigenous Land Corporation", + "scheduled_service": "no" + }, + { + "id": "42750", + "ident": "AU-0023", + "type": "small_airport", + "name": "Woodbury Airfield", + "latitude_deg": "-42.165195", + "longitude_deg": "147.44778", + "elevation_ft": "713", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Woodbury", + "scheduled_service": "no", + "gps_code": "YWOD" + }, + { + "id": "42752", + "ident": "AU-0024", + "type": "small_airport", + "name": "Port Fairy", + "latitude_deg": "-38.36196517944336", + "longitude_deg": "142.26422119140625", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no" + }, + { + "id": "42754", + "ident": "AU-0025", + "type": "small_airport", + "name": "Northcliffe Airstrip", + "latitude_deg": "-34.660112", + "longitude_deg": "116.140758", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Northcliffe", + "scheduled_service": "no" + }, + { + "id": "42776", + "ident": "AU-0026", + "type": "small_airport", + "name": "Yuin Station", + "latitude_deg": "-27.983333587646484", + "longitude_deg": "116.03333282470703", + "elevation_ft": "970", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "home_link": "http://www.agfg.com.au/guide/wa/mid-west-wa/mid-west-wa/yalgoo/accommodation/yuin-station" + }, + { + "id": "42790", + "ident": "AU-0027", + "type": "small_airport", + "name": "Boobyalla Airfield", + "latitude_deg": "-40.899166107177734", + "longitude_deg": "147.86471557617188", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no" + }, + { + "id": "42791", + "ident": "AU-0028", + "type": "small_airport", + "name": "Moonambel Airfield", + "latitude_deg": "-36.9716682434082", + "longitude_deg": "143.28611755371094", + "elevation_ft": "1100", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "keywords": "Summerfield Airstrip" + }, + { + "id": "43232", + "ident": "AU-0029", + "type": "small_airport", + "name": "Stirling Range Retreat", + "latitude_deg": "-34.312400817871094", + "longitude_deg": "118.18599700927734", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "home_link": "http://www.stirlingrange.com.au" + }, + { + "id": "44299", + "ident": "AU-0030", + "type": "small_airport", + "name": "Frankland Valley Vineyard Airport", + "latitude_deg": "-34.347698", + "longitude_deg": "116.952003", + "elevation_ft": "825", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Frankland River", + "scheduled_service": "no" + }, + { + "id": "44624", + "ident": "AU-0031", + "type": "closed", + "name": "Avon Valley NP Airstrip", + "latitude_deg": "-31.6055488586", + "longitude_deg": "116.261314392", + "elevation_ft": "980", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no" + }, + { + "id": "318044", + "ident": "AU-0032", + "type": "small_airport", + "name": "Tumbarumba Airport", + "latitude_deg": "-35.762604", + "longitude_deg": "147.886885", + "elevation_ft": "1993", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Tumbarumba", + "scheduled_service": "no" + }, + { + "id": "44627", + "ident": "AU-0033", + "type": "small_airport", + "name": "Tardun Christian Brothers airfield", + "latitude_deg": "-28.70870018005371", + "longitude_deg": "115.8176498413086", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no" + }, + { + "id": "44906", + "ident": "AU-0034", + "type": "heliport", + "name": "Royal Prince Alfred Hospital Helipad", + "latitude_deg": "-33.88933181762695", + "longitude_deg": "151.18368530273438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Sidney", + "scheduled_service": "no" + }, + { + "id": "44907", + "ident": "AU-0035", + "type": "heliport", + "name": "Royal North Shore Hospital Helipad", + "latitude_deg": "-33.82225036621094", + "longitude_deg": "151.18963623046875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Sidney", + "scheduled_service": "no" + }, + { + "id": "44990", + "ident": "AU-0036", + "type": "small_airport", + "name": "New Norcia airstrip", + "latitude_deg": "-30.96663", + "longitude_deg": "116.21547", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "New Norcia", + "scheduled_service": "no", + "home_link": "http://www.newnorcia.wa.edu.au/" + }, + { + "id": "44991", + "ident": "AU-0037", + "type": "small_airport", + "name": "New Norcia North", + "latitude_deg": "-30.921002743299997", + "longitude_deg": "116.23998642", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no" + }, + { + "id": "45164", + "ident": "AU-0038", + "type": "small_airport", + "name": "Abrolhos North Island", + "latitude_deg": "-28.299816666699996", + "longitude_deg": "113.5958", + "elevation_ft": "1", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YNTI" + }, + { + "id": "45166", + "ident": "AU-0039", + "type": "small_airport", + "name": "Abrolhos Island", + "latitude_deg": "-28.4754062982", + "longitude_deg": "113.689184189", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no" + }, + { + "id": "45183", + "ident": "AU-0040", + "type": "small_airport", + "name": "Kilcoy Airfield", + "latitude_deg": "-26.971128", + "longitude_deg": "152.566575", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Kilcoy", + "scheduled_service": "no", + "home_link": "http://mail.kilcoyairfield.org/" + }, + { + "id": "45223", + "ident": "AU-0041", + "type": "small_airport", + "name": "Maitraya Resort Airstrip", + "latitude_deg": "-34.987464", + "longitude_deg": "118.055563", + "elevation_ft": "200", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Nanarup", + "scheduled_service": "no", + "home_link": "http://www.maitraya.com/howto.php", + "keywords": "Luxury accommodation retreat" + }, + { + "id": "46373", + "ident": "AU-0042", + "type": "closed", + "name": "Hutt River Airstrip", + "latitude_deg": "-28.071222965900002", + "longitude_deg": "114.477367401", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Nain", + "scheduled_service": "no" + }, + { + "id": "46399", + "ident": "AU-0043", + "type": "small_airport", + "name": "Chittering Airstrip", + "latitude_deg": "-31.5211908201", + "longitude_deg": "116.147289276", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Chittering", + "scheduled_service": "no" + }, + { + "id": "46460", + "ident": "AU-0044", + "type": "small_airport", + "name": "Trawalla Airport", + "latitude_deg": "-37.438747364399994", + "longitude_deg": "143.458957672", + "elevation_ft": "900", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "local_code": "YTWA" + }, + { + "id": "46463", + "ident": "AU-0045", + "type": "small_airport", + "name": "Pomonal Airstrip", + "latitude_deg": "-37.231077", + "longitude_deg": "142.676517", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "local_code": "YPML" + }, + { + "id": "46480", + "ident": "AU-0046", + "type": "small_airport", + "name": "Lake Eyre North", + "latitude_deg": "-28.416666666699996", + "longitude_deg": "137.3", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "local_code": "LEYN" + }, + { + "id": "46483", + "ident": "AU-0047", + "type": "small_airport", + "name": "Yardie Homestead", + "latitude_deg": "-21.884040258800002", + "longitude_deg": "114.006564617", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "home_link": "http://www.yardie.com.au/Home.aspx" + }, + { + "id": "46541", + "ident": "AU-0048", + "type": "small_airport", + "name": "Kulin Bush Races Strip", + "latitude_deg": "-32.664444444400004", + "longitude_deg": "118.310833333", + "elevation_ft": "950", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Kulin", + "scheduled_service": "no", + "home_link": "http://www.kulin.wa.gov.au/tourism_and_local_events/kulin_bush_races/" + }, + { + "id": "298576", + "ident": "AU-0049", + "type": "small_airport", + "name": "Kooringal Airstrip", + "latitude_deg": "-27.3458333333", + "longitude_deg": "153.425833333", + "elevation_ft": "25", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no" + }, + { + "id": "298432", + "ident": "AU-0050", + "type": "small_airport", + "name": "Huntfield Airfield", + "latitude_deg": "-35.1725454513", + "longitude_deg": "138.493609428", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Morphett Vale", + "scheduled_service": "no", + "local_code": "5HUN" + }, + { + "id": "333684", + "ident": "AU-0051", + "type": "heliport", + "name": "Townsville University Hospital Heliport", + "latitude_deg": "-19.32024", + "longitude_deg": "146.76059", + "elevation_ft": "69", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Townsville", + "scheduled_service": "no" + }, + { + "id": "298925", + "ident": "AU-0052", + "type": "small_airport", + "name": "Lake Omeo Dry Lake Ultralightport", + "latitude_deg": "-36.9617573795", + "longitude_deg": "147.672729492", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no" + }, + { + "id": "298927", + "ident": "AU-0053", + "type": "small_airport", + "name": "Snowy Range Airfield", + "latitude_deg": "-37.3485734147", + "longitude_deg": "146.766046286", + "elevation_ft": "5200", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "keywords": "Victorian Aerial Fire Bases" + }, + { + "id": "299298", + "ident": "AU-0054", + "type": "small_airport", + "name": "Delatite Airstrip", + "latitude_deg": "-37.145053", + "longitude_deg": "146.159431", + "elevation_ft": "1164", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Delatite", + "scheduled_service": "no" + }, + { + "id": "317137", + "ident": "AU-0055", + "type": "heliport", + "name": "Brooklyn Oval Helicopter Landing Site", + "latitude_deg": "-33.5473", + "longitude_deg": "151.215684", + "elevation_ft": "33", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Brooklyn", + "scheduled_service": "no", + "local_code": "OZHJG" + }, + { + "id": "317139", + "ident": "AU-0056", + "type": "heliport", + "name": "Brooklyn TMC - Olivers Garage Helipad", + "latitude_deg": "-33.5562", + "longitude_deg": "151.1936", + "elevation_ft": "295", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Brooklyn", + "scheduled_service": "no", + "local_code": "OZHJB" + }, + { + "id": "309181", + "ident": "AU-0057", + "type": "heliport", + "name": "Brooms Head Heliport", + "latitude_deg": "-29.6068", + "longitude_deg": "153.332", + "elevation_ft": "21", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Brooms Head", + "scheduled_service": "no", + "local_code": "OZHAZ", + "keywords": "BRHD" + }, + { + "id": "309197", + "ident": "AU-0058", + "type": "heliport", + "name": "Cowal Gold Mine Helipad", + "latitude_deg": "-33.6553", + "longitude_deg": "147.40036", + "elevation_ft": "705", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "West Wyalong", + "scheduled_service": "no" + }, + { + "id": "309217", + "ident": "AU-0059", + "type": "heliport", + "name": "Blackwater Hospital Helipad", + "latitude_deg": "-23.571308", + "longitude_deg": "148.877985", + "elevation_ft": "550", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Blackwater", + "scheduled_service": "no", + "gps_code": "YXKW" + }, + { + "id": "27779", + "ident": "AU-0060", + "type": "small_airport", + "name": "Miralwyn Airport", + "latitude_deg": "-30.149", + "longitude_deg": "147.327", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no" + }, + { + "id": "309561", + "ident": "AU-0061", + "type": "heliport", + "name": "Inverell Hospital Helipad", + "latitude_deg": "-29.771656", + "longitude_deg": "151.131282", + "elevation_ft": "2014", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Inverell", + "scheduled_service": "no", + "gps_code": "YXIV", + "local_code": "IVLH" + }, + { + "id": "309601", + "ident": "AU-0062", + "type": "heliport", + "name": "Blackheath - NPWS Helipad", + "latitude_deg": "-33.628062", + "longitude_deg": "150.306706", + "elevation_ft": "3316", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Blackheath - NPWS", + "scheduled_service": "no", + "local_code": "OZHAL", + "keywords": "BHT" + }, + { + "id": "309699", + "ident": "AU-0063", + "type": "heliport", + "name": "Lismore - Mortimer Oval Helicopter Landing Site", + "latitude_deg": "-28.808344", + "longitude_deg": "153.284455", + "elevation_ft": "31", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Lismore", + "scheduled_service": "no", + "local_code": "LMO" + }, + { + "id": "309700", + "ident": "AU-0064", + "type": "heliport", + "name": "Lismore Helibase", + "latitude_deg": "-28.801211", + "longitude_deg": "153.288242", + "elevation_ft": "32", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Lismore", + "scheduled_service": "no", + "local_code": "LIH" + }, + { + "id": "309704", + "ident": "AU-0065", + "type": "heliport", + "name": "Long Reef Helipad", + "latitude_deg": "-33.73922", + "longitude_deg": "151.31033", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Collaroy", + "scheduled_service": "no" + }, + { + "id": "309831", + "ident": "AU-0066", + "type": "heliport", + "name": "Agnes Water SES Grounds HLS", + "latitude_deg": "-24.1828", + "longitude_deg": "151.8826", + "elevation_ft": "33", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Agnes Water", + "scheduled_service": "no", + "local_code": "OZHAC", + "keywords": "1770, Seventeen Seventy Heliport" + }, + { + "id": "309832", + "ident": "AU-0067", + "type": "heliport", + "name": "Adelaide River Helicopter Landing Site", + "latitude_deg": "-13.2362", + "longitude_deg": "131.10796", + "elevation_ft": "185", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Adelaide River", + "scheduled_service": "no", + "local_code": "OZHAB" + }, + { + "id": "309833", + "ident": "AU-0068", + "type": "heliport", + "name": "Amity Heliport", + "latitude_deg": "-27.4031", + "longitude_deg": "153.44", + "elevation_ft": "19", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Amity", + "scheduled_service": "no", + "local_code": "AMCO" + }, + { + "id": "309834", + "ident": "AU-0069", + "type": "heliport", + "name": "Appin Colliery Helipad", + "latitude_deg": "-34.2098", + "longitude_deg": "150.7914", + "elevation_ft": "832", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Appin", + "scheduled_service": "no", + "local_code": "OZHAE", + "keywords": "APPC" + }, + { + "id": "309835", + "ident": "AU-0070", + "type": "heliport", + "name": "Baal Bone Colliery Helipad", + "latitude_deg": "-33.26958", + "longitude_deg": "150.05846", + "elevation_ft": "2840", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Lithgow", + "scheduled_service": "no", + "local_code": "OZHDW" + }, + { + "id": "309946", + "ident": "AU-0071", + "type": "small_airport", + "name": "Sherlock Ultralight Airfield", + "latitude_deg": "-35.3202777778", + "longitude_deg": "139.792522222", + "elevation_ft": "58", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Sherlock", + "scheduled_service": "no" + }, + { + "id": "317141", + "ident": "AU-0072", + "type": "heliport", + "name": "Braidwood Helicopter Landing Site", + "latitude_deg": "-35.448", + "longitude_deg": "149.8011", + "elevation_ft": "2134", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Braidwood", + "scheduled_service": "no", + "local_code": "OZHAY" + }, + { + "id": "310105", + "ident": "AU-0073", + "type": "small_airport", + "name": "Warroora Station Airstrip", + "latitude_deg": "-23.47487", + "longitude_deg": "113.79925", + "elevation_ft": "35", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Warroora Station", + "scheduled_service": "no" + }, + { + "id": "310911", + "ident": "AU-0074", + "type": "heliport", + "name": "Longford Heliport", + "latitude_deg": "-38.21962", + "longitude_deg": "147.16922", + "elevation_ft": "174", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Bass Straight Oil and Gas industry", + "scheduled_service": "no" + }, + { + "id": "310912", + "ident": "AU-0075", + "type": "closed", + "name": "Horse Hair Plain Aerodrome", + "latitude_deg": "-37.0331", + "longitude_deg": "147.3055", + "elevation_ft": "4555", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Hotham", + "scheduled_service": "no" + }, + { + "id": "311185", + "ident": "AU-0076", + "type": "heliport", + "name": "West Cliff Colliery Helipad", + "latitude_deg": "-34.234073", + "longitude_deg": "150.829822", + "elevation_ft": "1195", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Appin", + "scheduled_service": "no", + "local_code": "WTCL" + }, + { + "id": "313355", + "ident": "AU-0077", + "type": "heliport", + "name": "Toonumbar Dam Helipad", + "latitude_deg": "-28.61835", + "longitude_deg": "152.79353", + "elevation_ft": "495", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "local_code": "TOON" + }, + { + "id": "313357", + "ident": "AU-0078", + "type": "heliport", + "name": "Tucabia Oval Helicopter Landing Site", + "latitude_deg": "-29.66", + "longitude_deg": "153.1056", + "elevation_ft": "25", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Tucabia", + "scheduled_service": "no", + "local_code": "TCBA" + }, + { + "id": "313367", + "ident": "AU-0079", + "type": "heliport", + "name": "Urbenville Helipad", + "latitude_deg": "-28.46907", + "longitude_deg": "152.55133", + "elevation_ft": "1210", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Urbenville", + "scheduled_service": "no", + "local_code": "URBH" + }, + { + "id": "313368", + "ident": "AU-0080", + "type": "heliport", + "name": "Wanda Beach Helipad", + "latitude_deg": "-34.040487", + "longitude_deg": "151.1635", + "elevation_ft": "40", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Cronulla", + "scheduled_service": "no", + "local_code": "WDBP" + }, + { + "id": "313838", + "ident": "AU-0081", + "type": "small_airport", + "name": "Lady Elliot Island Airstrip", + "latitude_deg": "-24.1129", + "longitude_deg": "152.7156", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Lady Elliot Island", + "scheduled_service": "no", + "iata_code": "LYT" + }, + { + "id": "314695", + "ident": "AU-0082", + "type": "heliport", + "name": "Clairview Heliport", + "latitude_deg": "-22.09246", + "longitude_deg": "149.51908", + "elevation_ft": "41", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Clairview", + "scheduled_service": "no", + "local_code": "OZHBG", + "keywords": "CLV" + }, + { + "id": "314696", + "ident": "AU-0083", + "type": "heliport", + "name": "Clermont Hospital Helipad", + "latitude_deg": "-22.82707", + "longitude_deg": "147.63124", + "elevation_ft": "874", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Clermont", + "scheduled_service": "no", + "local_code": "XCMT" + }, + { + "id": "314697", + "ident": "AU-0084", + "type": "heliport", + "name": "Brisbane Water Police Helipad", + "latitude_deg": "-27.40104", + "longitude_deg": "153.16415", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Brisbane", + "scheduled_service": "no", + "local_code": "OZHAW", + "keywords": "BNWP" + }, + { + "id": "314729", + "ident": "AU-0085", + "type": "small_airport", + "name": "Nambung Station Private Airstrip", + "latitude_deg": "-30.577798", + "longitude_deg": "115.225055", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no" + }, + { + "id": "314862", + "ident": "AU-0086", + "type": "heliport", + "name": "Carmila Town Helicopter Landing Site", + "latitude_deg": "-21.9092", + "longitude_deg": "149.417", + "elevation_ft": "62", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Carmila", + "scheduled_service": "no", + "local_code": "OZHBE", + "keywords": "CAR" + }, + { + "id": "314863", + "ident": "AU-0087", + "type": "heliport", + "name": "Redland Hospital Helicopter Landing Site", + "latitude_deg": "-27.534323", + "longitude_deg": "153.261171", + "elevation_ft": "18", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Cleveland", + "scheduled_service": "no", + "local_code": "OZHBL", + "keywords": "CVD" + }, + { + "id": "314864", + "ident": "AU-0088", + "type": "heliport", + "name": "Couran Cove Resort Helipad", + "latitude_deg": "-27.8239", + "longitude_deg": "153.4092", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Couran Cove Resort", + "scheduled_service": "no", + "gps_code": "YCOV", + "keywords": "CCOVE, South Stradbroke Island" + }, + { + "id": "314875", + "ident": "AU-0089", + "type": "heliport", + "name": "Crows Nest Helipad", + "latitude_deg": "-27.2649", + "longitude_deg": "152.0587", + "elevation_ft": "1764", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Crows Nest", + "scheduled_service": "no", + "local_code": "OZHBI", + "keywords": "CNT" + }, + { + "id": "314877", + "ident": "AU-0090", + "type": "small_airport", + "name": "Dingo Airstrip", + "latitude_deg": "-23.655", + "longitude_deg": "149.338", + "elevation_ft": "441", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Dingo", + "scheduled_service": "no" + }, + { + "id": "314878", + "ident": "AU-0091", + "type": "heliport", + "name": "Dululu Helicopter Landing Site", + "latitude_deg": "-23.8479", + "longitude_deg": "150.2625", + "elevation_ft": "428", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Dululu", + "scheduled_service": "no", + "local_code": "OZHBQ" + }, + { + "id": "314879", + "ident": "AU-0092", + "type": "heliport", + "name": "Emerald Hospital Helicopter Landing Site", + "latitude_deg": "-23.5166", + "longitude_deg": "148.1539", + "elevation_ft": "593", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Emerald", + "scheduled_service": "no", + "local_code": "OZHBS" + }, + { + "id": "314894", + "ident": "AU-0093", + "type": "heliport", + "name": "Orchid Beach Resort Helipad", + "latitude_deg": "-24.96", + "longitude_deg": "153.3154", + "elevation_ft": "62", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Fraser Island", + "scheduled_service": "no", + "local_code": "ORB" + }, + { + "id": "314895", + "ident": "AU-0094", + "type": "small_airport", + "name": "Toby's Gap Airstrip", + "latitude_deg": "-25.5887", + "longitude_deg": "153.0646", + "elevation_ft": "339", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Fraser Island", + "scheduled_service": "no" + }, + { + "id": "315730", + "ident": "AU-0095", + "type": "heliport", + "name": "Hook Island Helipad", + "latitude_deg": "-20.1574", + "longitude_deg": "148.9481", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Hook Island", + "scheduled_service": "no", + "local_code": "OZHCG", + "keywords": "HKI" + }, + { + "id": "315733", + "ident": "AU-0096", + "type": "heliport", + "name": "Hail Creek Mine Heliport", + "latitude_deg": "-21.4888", + "longitude_deg": "148.3585", + "elevation_ft": "986", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Nebo", + "scheduled_service": "no", + "local_code": "OZHCF", + "keywords": "HCM" + }, + { + "id": "315734", + "ident": "AU-0097", + "type": "heliport", + "name": "Goomeri Oval Helicopter Landing Site", + "latitude_deg": "-26.1795", + "longitude_deg": "152.0658", + "elevation_ft": "802", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Goomeri", + "scheduled_service": "no", + "local_code": "OZHBX", + "keywords": "GMI" + }, + { + "id": "315735", + "ident": "AU-0098", + "type": "heliport", + "name": "Gold Coast Water Police Helicopter Landing Site", + "latitude_deg": "-27.97", + "longitude_deg": "153.427", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Gold Coast", + "scheduled_service": "no", + "local_code": "OZHBV", + "keywords": "GCWP" + }, + { + "id": "315739", + "ident": "AU-0099", + "type": "heliport", + "name": "Glenden Township Heliport", + "latitude_deg": "-21.360768", + "longitude_deg": "148.11545", + "elevation_ft": "1240", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Glenden", + "scheduled_service": "no", + "local_code": "OZHBW", + "keywords": "GDD" + }, + { + "id": "315740", + "ident": "AU-0100", + "type": "heliport", + "name": "Gladstone Hospital Helipad", + "latitude_deg": "-23.849835", + "longitude_deg": "151.248559", + "elevation_ft": "108", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Gladstone", + "scheduled_service": "no", + "gps_code": "YXDT" + }, + { + "id": "315742", + "ident": "AU-0101", + "type": "heliport", + "name": "Facing Island Farmers Cove Helicopter Landing Site", + "latitude_deg": "-23.7738", + "longitude_deg": "151.3269", + "elevation_ft": "45", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Gladstone", + "scheduled_service": "no" + }, + { + "id": "315743", + "ident": "AU-0102", + "type": "heliport", + "name": "Facing Island - Gatcomb Head Helipad", + "latitude_deg": "-23.8758", + "longitude_deg": "151.3718", + "elevation_ft": "73", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Rockhampton", + "scheduled_service": "no", + "local_code": "OZHBT" + }, + { + "id": "315745", + "ident": "AU-0103", + "type": "heliport", + "name": "Eurong Heliport", + "latitude_deg": "-25.505", + "longitude_deg": "153.1292", + "elevation_ft": "33", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Eurong Ranger's Station", + "scheduled_service": "no", + "local_code": "OZHCA", + "keywords": "EUR" + }, + { + "id": "315746", + "ident": "AU-0104", + "type": "heliport", + "name": "Boggabilla Fuel Depot Landing Site", + "latitude_deg": "-28.6089", + "longitude_deg": "150.352", + "elevation_ft": "736", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Goondiwindi", + "scheduled_service": "no", + "local_code": "OZHAR", + "keywords": "BGBA" + }, + { + "id": "315747", + "ident": "AU-0105", + "type": "small_airport", + "name": "Boggabilla Airstrip", + "latitude_deg": "-28.649343", + "longitude_deg": "150.344505", + "elevation_ft": "740", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Goondiwindi", + "scheduled_service": "no", + "local_code": "BGAC", + "keywords": "AIRCAIR" + }, + { + "id": "316628", + "ident": "AU-0106", + "type": "small_airport", + "name": "Valley View", + "latitude_deg": "-28.699218", + "longitude_deg": "114.911043", + "elevation_ft": "800", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Geraldton", + "scheduled_service": "no", + "home_link": "http://www.valleyviewvintage.com.au/", + "keywords": "valley view, northern gully" + }, + { + "id": "316629", + "ident": "AU-0107", + "type": "small_airport", + "name": "Midway", + "latitude_deg": "-32.672544", + "longitude_deg": "115.789526", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no" + }, + { + "id": "316630", + "ident": "AU-0108", + "type": "small_airport", + "name": "Wheeler Drome", + "latitude_deg": "-32.786914", + "longitude_deg": "115.910386", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no" + }, + { + "id": "316631", + "ident": "AU-0109", + "type": "small_airport", + "name": "Unknown Farm Strip", + "latitude_deg": "-33.094903", + "longitude_deg": "115.717181", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no" + }, + { + "id": "316783", + "ident": "AU-0110", + "type": "small_airport", + "name": "Murgenella Airstrip", + "latitude_deg": "-11.5494", + "longitude_deg": "132.9142", + "elevation_ft": "67", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Murganella", + "scheduled_service": "no", + "keywords": "Wauk" + }, + { + "id": "319592", + "ident": "AU-0111", + "type": "heliport", + "name": "Olinda (DSE) Helibase", + "latitude_deg": "-37.8594", + "longitude_deg": "145.3766", + "elevation_ft": "1852", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Olinda / Mt Dandenong", + "scheduled_service": "no", + "local_code": "OZHJS" + }, + { + "id": "333856", + "ident": "AU-0112", + "type": "small_airport", + "name": "Aileron Airstrip", + "latitude_deg": "-22.652908", + "longitude_deg": "133.347244", + "elevation_ft": "2186", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Anmatjere", + "scheduled_service": "no", + "gps_code": "YALR" + }, + { + "id": "322021", + "ident": "AU-0113", + "type": "small_airport", + "name": "Overlander Airport", + "latitude_deg": "-26.407707", + "longitude_deg": "114.45385", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Hamelin Pool", + "scheduled_service": "no" + }, + { + "id": "322022", + "ident": "AU-0114", + "type": "small_airport", + "name": "Denman Farm Strip", + "latitude_deg": "-32.379816", + "longitude_deg": "150.695005", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Denman", + "scheduled_service": "no" + }, + { + "id": "322023", + "ident": "AU-0115", + "type": "small_airport", + "name": "Swan Reach Airport", + "latitude_deg": "-34.556053", + "longitude_deg": "139.592156", + "elevation_ft": "36", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Swan Reach", + "scheduled_service": "no", + "gps_code": "YSWR" + }, + { + "id": "333857", + "ident": "AU-0116", + "type": "small_airport", + "name": "Alcoota Station Airport", + "latitude_deg": "-22.801963", + "longitude_deg": "134.4036", + "elevation_ft": "1994", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Anmatjere", + "scheduled_service": "no" + }, + { + "id": "333860", + "ident": "AU-0117", + "type": "small_airport", + "name": "Balma Airfield", + "latitude_deg": "-13.247423", + "longitude_deg": "135.848699", + "elevation_ft": "37", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no" + }, + { + "id": "333861", + "ident": "AU-0118", + "type": "small_airport", + "name": "Ban Ban Airfield", + "latitude_deg": "-13.376886", + "longitude_deg": "131.495318", + "elevation_ft": "394", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Ban Ban Springs", + "scheduled_service": "no" + }, + { + "id": "333862", + "ident": "AU-0119", + "type": "small_airport", + "name": "Banka Banka Airstrip", + "latitude_deg": "-18.79853", + "longitude_deg": "134.039619", + "elevation_ft": "969", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Tablelands", + "scheduled_service": "no" + }, + { + "id": "333863", + "ident": "AU-0120", + "type": "small_airport", + "name": "Baygurrtji Airfield", + "latitude_deg": "-13.146384", + "longitude_deg": "135.817344", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no" + }, + { + "id": "335738", + "ident": "AU-0121", + "type": "small_airport", + "name": "Wright Field", + "latitude_deg": "-36.093359", + "longitude_deg": "143.782748", + "elevation_ft": "306", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Yando", + "scheduled_service": "no", + "local_code": "YBOOR" + }, + { + "id": "333864", + "ident": "AU-0122", + "type": "small_airport", + "name": "Birany Birany Airfield", + "latitude_deg": "-12.816959", + "longitude_deg": "136.471556", + "elevation_ft": "51", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no" + }, + { + "id": "333865", + "ident": "AU-0123", + "type": "small_airport", + "name": "Bullita Airfield", + "latitude_deg": "-16.119461", + "longitude_deg": "130.429044", + "elevation_ft": "372", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Gregory", + "scheduled_service": "no" + }, + { + "id": "333866", + "ident": "AU-0124", + "type": "small_airport", + "name": "Bunda Landing Ground", + "latitude_deg": "-17.996474", + "longitude_deg": "129.348671", + "elevation_ft": "1301", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Bunda Station", + "scheduled_service": "no" + }, + { + "id": "333867", + "ident": "AU-0125", + "type": "small_airport", + "name": "Chilla Well Landing Ground", + "latitude_deg": "-21.499888", + "longitude_deg": "130.961747", + "elevation_ft": "1612", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no" + }, + { + "id": "333868", + "ident": "AU-0126", + "type": "small_airport", + "name": "Cox River Landing Ground", + "latitude_deg": "-15.867686", + "longitude_deg": "134.558959", + "elevation_ft": "764", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Arnold", + "scheduled_service": "no" + }, + { + "id": "333869", + "ident": "AU-0127", + "type": "small_airport", + "name": "Crab Claw Island Landing Ground", + "latitude_deg": "-12.713254", + "longitude_deg": "130.622849", + "elevation_ft": "34", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Bynoe", + "scheduled_service": "no" + }, + { + "id": "333870", + "ident": "AU-0128", + "type": "small_airport", + "name": "Donydji Airport", + "latitude_deg": "-12.888913", + "longitude_deg": "135.466661", + "elevation_ft": "330", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "East Arnhem", + "scheduled_service": "no" + }, + { + "id": "333871", + "ident": "AU-0129", + "type": "small_airport", + "name": "Manyallaluk Airport", + "latitude_deg": "-14.265449", + "longitude_deg": "132.82983", + "elevation_ft": "758", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Eva Valley", + "scheduled_service": "no" + }, + { + "id": "333872", + "ident": "AU-0130", + "type": "small_airport", + "name": "Finniss River Landing Ground", + "latitude_deg": "-12.872221", + "longitude_deg": "130.54513", + "elevation_ft": "31", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Bynoe", + "scheduled_service": "no" + }, + { + "id": "333873", + "ident": "AU-0131", + "type": "small_airport", + "name": "Fish River Landing Ground", + "latitude_deg": "-14.188069", + "longitude_deg": "130.881436", + "elevation_ft": "238", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Tipperary", + "scheduled_service": "no" + }, + { + "id": "334049", + "ident": "AU-0132", + "type": "heliport", + "name": "Boggabri Hospital Heliport", + "latitude_deg": "-30.710741", + "longitude_deg": "150.039698", + "elevation_ft": "900", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Boggabri", + "scheduled_service": "no" + }, + { + "id": "334051", + "ident": "AU-0133", + "type": "heliport", + "name": "Bonalbo - Cricket oval HLS", + "latitude_deg": "-28.738", + "longitude_deg": "152.625167", + "elevation_ft": "620", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Bonalbo", + "scheduled_service": "no", + "local_code": "OZHFY" + }, + { + "id": "334052", + "ident": "AU-0134", + "type": "heliport", + "name": "Boorowa Helicopter Landing Site", + "latitude_deg": "-34.4435", + "longitude_deg": "148.704667", + "elevation_ft": "1620", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Boorowa", + "scheduled_service": "no", + "local_code": "OZHAX" + }, + { + "id": "334053", + "ident": "AU-0135", + "type": "heliport", + "name": "Bungendore Helicopter Landing Site", + "latitude_deg": "-35.254", + "longitude_deg": "149.444667", + "elevation_ft": "2291", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Bungendore", + "scheduled_service": "no", + "local_code": "OZHBA" + }, + { + "id": "334054", + "ident": "AU-0136", + "type": "heliport", + "name": "Bungonia NP Heliport", + "latitude_deg": "-34.808073", + "longitude_deg": "150.006799", + "elevation_ft": "1813", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Bungonia", + "scheduled_service": "no", + "local_code": "OZHAV" + }, + { + "id": "334055", + "ident": "AU-0137", + "type": "heliport", + "name": "Burringbar Sports Club Helicopter Landing Site", + "latitude_deg": "-28.436563", + "longitude_deg": "153.467841", + "elevation_ft": "81", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Burringbar", + "scheduled_service": "no", + "local_code": "OZHBB" + }, + { + "id": "334058", + "ident": "AU-0138", + "type": "heliport", + "name": "Byron Central Hospital - Cavanbah Sporting Complex HLS", + "latitude_deg": "-28.635167", + "longitude_deg": "153.577167", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Byron Bay", + "scheduled_service": "no", + "local_code": "OZHIR" + }, + { + "id": "334060", + "ident": "AU-0139", + "type": "heliport", + "name": "Dundee Beach First Aid Post Helipad", + "latitude_deg": "-12.752131", + "longitude_deg": "130.381982", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Dundee Beach", + "scheduled_service": "no", + "local_code": "OZHBN" + }, + { + "id": "334061", + "ident": "AU-0140", + "type": "heliport", + "name": "Dundee Downs First Aid Post HLS", + "latitude_deg": "-12.770746", + "longitude_deg": "130.529664", + "elevation_ft": "104", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Dundee Downs", + "scheduled_service": "no", + "local_code": "OZHBO" + }, + { + "id": "334062", + "ident": "AU-0141", + "type": "small_airport", + "name": "Gerald Farm Airfield", + "latitude_deg": "-12.500167", + "longitude_deg": "130.765833", + "elevation_ft": "117", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "local_code": "OZHIQ" + }, + { + "id": "334064", + "ident": "AU-0142", + "type": "heliport", + "name": "Gypsy Springs - African Mahogany HLS", + "latitude_deg": "-13.972167", + "longitude_deg": "131.4085", + "elevation_ft": "511", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "local_code": "OZHBZ" + }, + { + "id": "334065", + "ident": "AU-0143", + "type": "heliport", + "name": "Katherine Hospital Helipad", + "latitude_deg": "-14.440093", + "longitude_deg": "132.270895", + "elevation_ft": "341", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Katherine", + "scheduled_service": "no", + "local_code": "OZHDY" + }, + { + "id": "334071", + "ident": "AU-0144", + "type": "heliport", + "name": "Dungog Hospital Helipad", + "latitude_deg": "-32.401167", + "longitude_deg": "151.745833", + "elevation_ft": "308", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Dungog", + "scheduled_service": "no", + "local_code": "OZHAA" + }, + { + "id": "334072", + "ident": "AU-0145", + "type": "heliport", + "name": "Appin West Colliery Heliport", + "latitude_deg": "-34.2185", + "longitude_deg": "150.717167", + "elevation_ft": "623", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Douglas Park", + "scheduled_service": "no", + "local_code": "OZHAF" + }, + { + "id": "334073", + "ident": "AU-0146", + "type": "heliport", + "name": "Aussies - Austral Bricks Helicopter landing Site", + "latitude_deg": "-33.829553", + "longitude_deg": "150.811172", + "elevation_ft": "190", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Horsley Park", + "scheduled_service": "no", + "local_code": "OZHAG" + }, + { + "id": "334074", + "ident": "AU-0147", + "type": "heliport", + "name": "Baradine Oval Helicopter landing Site,", + "latitude_deg": "-30.951667", + "longitude_deg": "149.065167", + "elevation_ft": "986", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Baradine", + "scheduled_service": "no", + "local_code": "OZHAH" + }, + { + "id": "334075", + "ident": "AU-0148", + "type": "heliport", + "name": "Blackbutt Helicopter Landing Site", + "latitude_deg": "-26.889483", + "longitude_deg": "152.104758", + "elevation_ft": "1471", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Blackbutt", + "scheduled_service": "no", + "local_code": "OZHAI" + }, + { + "id": "334076", + "ident": "AU-0149", + "type": "heliport", + "name": "Boggabri Coal Homestead Helipad", + "latitude_deg": "-30.631302", + "longitude_deg": "150.141199", + "elevation_ft": "897", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Boggabri", + "scheduled_service": "no", + "local_code": "OZHAK" + }, + { + "id": "334077", + "ident": "AU-0150", + "type": "heliport", + "name": "Baulkham Hills Private Hospital Helicopter Landing Site", + "latitude_deg": "-33.744812", + "longitude_deg": "150.990617", + "elevation_ft": "317", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Baulkham Hills", + "scheduled_service": "no", + "local_code": "OZHAN" + }, + { + "id": "334079", + "ident": "AU-0151", + "type": "heliport", + "name": "Biloela Sports Field Helicopter Landing Site", + "latitude_deg": "-24.393576", + "longitude_deg": "150.512041", + "elevation_ft": "630", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Biloela", + "scheduled_service": "no", + "local_code": "OZHAO" + }, + { + "id": "334081", + "ident": "AU-0152", + "type": "heliport", + "name": "LNP Florence Buley Rd Intersection Helicopter Landing Site", + "latitude_deg": "-13.126329", + "longitude_deg": "130.804757", + "elevation_ft": "595", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Litchfield National Park", + "scheduled_service": "no", + "local_code": "OZHIJ" + }, + { + "id": "334082", + "ident": "AU-0153", + "type": "heliport", + "name": "LNP Florence Falls Campground Helicopter Landing Site", + "latitude_deg": "-13.096857", + "longitude_deg": "130.784651", + "elevation_ft": "328", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Litchfield National Park", + "scheduled_service": "no", + "local_code": "OZHIK" + }, + { + "id": "334083", + "ident": "AU-0154", + "type": "heliport", + "name": "LNP Lost City Gravel Pit Helicopter Landing Site", + "latitude_deg": "-13.206691", + "longitude_deg": "130.754707", + "elevation_ft": "724", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Litchfield National Park", + "scheduled_service": "no", + "local_code": "OZHIO" + }, + { + "id": "334085", + "ident": "AU-0155", + "type": "heliport", + "name": "LNP Sandy Creek Falls Helicopter Landing Site", + "latitude_deg": "-13.255235", + "longitude_deg": "130.732069", + "elevation_ft": "126", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Litchfield National Park", + "scheduled_service": "no", + "local_code": "OZHIL" + }, + { + "id": "334086", + "ident": "AU-0156", + "type": "heliport", + "name": "LNP Termite Mounds Carpark Helicopter Landing Site", + "latitude_deg": "-13.10344", + "longitude_deg": "130.84484", + "elevation_ft": "216", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Litchfield National Park", + "scheduled_service": "no", + "local_code": "OZHIM" + }, + { + "id": "334087", + "ident": "AU-0157", + "type": "heliport", + "name": "LNP Tolmer Falls Carpark Helicopter Landing Site", + "latitude_deg": "-13.20268", + "longitude_deg": "130.713733", + "elevation_ft": "216", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Litchfield National Park", + "scheduled_service": "no", + "local_code": "OZHIN" + }, + { + "id": "334090", + "ident": "AU-0158", + "type": "heliport", + "name": "LNP Walker Creek Ranger Station Helicopter Landing Site", + "latitude_deg": "-13.080815", + "longitude_deg": "130.692571", + "elevation_ft": "404", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Litchfield National Park", + "scheduled_service": "no", + "local_code": "OZHIP" + }, + { + "id": "334091", + "ident": "AU-0159", + "type": "heliport", + "name": "LNP Wangi Carpark Helicopter Landing Site", + "latitude_deg": "-13.162404", + "longitude_deg": "130.68168", + "elevation_ft": "112", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Litchfield National Park", + "scheduled_service": "no", + "local_code": "OZHII" + }, + { + "id": "334092", + "ident": "AU-0160", + "type": "heliport", + "name": "Pickertaramoor Oval Helicopter Landing Site", + "latitude_deg": "-11.763743", + "longitude_deg": "130.891778", + "elevation_ft": "235", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Pickertaramoor", + "scheduled_service": "no", + "local_code": "OZHIC" + }, + { + "id": "334093", + "ident": "AU-0161", + "type": "heliport", + "name": "Caloola Farm Top Naas Valley Helicopter Landing Site", + "latitude_deg": "-35.670667", + "longitude_deg": "149.068833", + "elevation_ft": "2248", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-ACT", + "municipality": "Canberra", + "scheduled_service": "no", + "local_code": "OZHBC" + }, + { + "id": "334094", + "ident": "AU-0162", + "type": "heliport", + "name": "Canberra Training Area C30 Helicopter Landing Site", + "latitude_deg": "-35.495181", + "longitude_deg": "149.285059", + "elevation_ft": "2566", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-ACT", + "municipality": "Canberra", + "scheduled_service": "no", + "local_code": "OZHBD" + }, + { + "id": "334096", + "ident": "AU-0163", + "type": "heliport", + "name": "Angus Place Colliery Heliport", + "latitude_deg": "-33.352098", + "longitude_deg": "150.098981", + "elevation_ft": "2996", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Lidsdale", + "scheduled_service": "no", + "local_code": "OZHDI" + }, + { + "id": "334118", + "ident": "AU-0164", + "type": "heliport", + "name": "Bankstown - City Sports Complex HLS", + "latitude_deg": "-33.926981", + "longitude_deg": "151.023045", + "elevation_ft": "82", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Bankstown", + "scheduled_service": "no", + "local_code": "OZHAQ" + }, + { + "id": "334119", + "ident": "AU-0165", + "type": "heliport", + "name": "Bulahdelah Showground Helicopter Landing Site", + "latitude_deg": "-32.4055", + "longitude_deg": "152.203333", + "elevation_ft": "18", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Bulahdelah", + "scheduled_service": "no", + "local_code": "OZHAS" + }, + { + "id": "334120", + "ident": "AU-0166", + "type": "heliport", + "name": "Poitrel Mine Helicopter Landing Site", + "latitude_deg": "-22.039842", + "longitude_deg": "148.261292", + "elevation_ft": "772", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Moranbah", + "scheduled_service": "no", + "local_code": "OZHAU" + }, + { + "id": "334121", + "ident": "AU-0167", + "type": "heliport", + "name": "Charlotte Pass Medical Centre HLS", + "latitude_deg": "-36.434153", + "longitude_deg": "148.333417", + "elevation_ft": "5752", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Charlotte Pass", + "scheduled_service": "no", + "local_code": "OZHBF" + }, + { + "id": "335456", + "ident": "AU-0168", + "type": "heliport", + "name": "Batemans Bay ALT Hanging Rock HLS", + "latitude_deg": "-35.721", + "longitude_deg": "150.1955", + "elevation_ft": "39", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Batemans Bay", + "scheduled_service": "no", + "local_code": "OZHJV" + }, + { + "id": "335457", + "ident": "AU-0169", + "type": "heliport", + "name": "Batemans Bay Mackay Park HLS", + "latitude_deg": "-35.708915", + "longitude_deg": "150.172621", + "elevation_ft": "46", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Batemans Bay", + "scheduled_service": "no", + "local_code": "OZHJU" + }, + { + "id": "335461", + "ident": "AU-0170", + "type": "heliport", + "name": "Bathurst Hospital Alternate (Victoria Park) Helipad", + "latitude_deg": "-33.407196", + "longitude_deg": "149.574115", + "elevation_ft": "2160", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Bathurst", + "scheduled_service": "no", + "local_code": "OZHJF" + }, + { + "id": "335463", + "ident": "AU-0171", + "type": "heliport", + "name": "Cabramurra Helicopter Landing Site", + "latitude_deg": "-35.939833", + "longitude_deg": "148.377333", + "elevation_ft": "4900", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Cabramurra", + "scheduled_service": "no", + "local_code": "OZHIA" + }, + { + "id": "335464", + "ident": "AU-0172", + "type": "heliport", + "name": "Cadia Mine(Ridgeway) Helicopter Landing Site", + "latitude_deg": "-33.44435", + "longitude_deg": "149.000842", + "elevation_ft": "2650", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Cadia Mine", + "scheduled_service": "no", + "local_code": "OZHDJ" + }, + { + "id": "335465", + "ident": "AU-0173", + "type": "heliport", + "name": "Camden - Onslow Park HLS", + "latitude_deg": "-34.05324", + "longitude_deg": "150.691285", + "elevation_ft": "204", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Camden", + "scheduled_service": "no", + "local_code": "OZHKC" + }, + { + "id": "335739", + "ident": "AU-0174", + "type": "small_airport", + "name": "Derby Field", + "latitude_deg": "-36.6128", + "longitude_deg": "144.0186", + "elevation_ft": "461", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Bridgewater", + "scheduled_service": "no", + "local_code": "YBRDE" + }, + { + "id": "335740", + "ident": "AU-0175", + "type": "small_airport", + "name": "Rothwell Airfield", + "latitude_deg": "-37.916945", + "longitude_deg": "144.483743", + "elevation_ft": "298", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Little River", + "scheduled_service": "no", + "local_code": "YRTH" + }, + { + "id": "336572", + "ident": "AU-0176", + "type": "heliport", + "name": "New Pelion Hut Helipad", + "latitude_deg": "-41.829346", + "longitude_deg": "146.04582", + "elevation_ft": "2799", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Cradle Mountain-Lake St Clair National Park", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Pelion_Hut" + }, + { + "id": "341498", + "ident": "AU-0177", + "type": "heliport", + "name": "Macquarie Island Station Heliport", + "latitude_deg": "-54.49852", + "longitude_deg": "158.93804", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Macquarie Island Station", + "scheduled_service": "no" + }, + { + "id": "341499", + "ident": "AU-0178", + "type": "heliport", + "name": "Atlas Cove Station Helipad", + "latitude_deg": "-53.01885", + "longitude_deg": "73.39349", + "continent": "OC", + "iso_country": "HM", + "iso_region": "HM-U-A", + "municipality": "Atlas Cove Station", + "scheduled_service": "no", + "keywords": "YZAC" + }, + { + "id": "341500", + "ident": "AU-0179", + "type": "heliport", + "name": "Spit Bay Helipad", + "latitude_deg": "-53.10732", + "longitude_deg": "73.72013", + "continent": "OC", + "iso_country": "HM", + "iso_region": "HM-U-A", + "municipality": "Spit Bay", + "scheduled_service": "no", + "keywords": "YZSB" + }, + { + "id": "341735", + "ident": "AU-0180", + "type": "heliport", + "name": "Flinders Medical Centre Helipad", + "latitude_deg": "-35.020027", + "longitude_deg": "138.568577", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Bedford Park", + "scheduled_service": "no" + }, + { + "id": "341736", + "ident": "AU-0181", + "type": "heliport", + "name": "Lyell McEwin Hospital Helipad", + "latitude_deg": "-34.748851", + "longitude_deg": "138.665843", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Elizabeth Vale", + "scheduled_service": "no" + }, + { + "id": "341737", + "ident": "AU-0182", + "type": "small_airport", + "name": "Parra Wirra Helipad", + "latitude_deg": "-34.678754", + "longitude_deg": "138.83491", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Yattalunga", + "scheduled_service": "no" + }, + { + "id": "341738", + "ident": "AU-0183", + "type": "heliport", + "name": "Murray Bridge Soldiers Memorial Hospital Helipad", + "latitude_deg": "-35.128213", + "longitude_deg": "139.280722", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Murray Bridge", + "scheduled_service": "no" + }, + { + "id": "341739", + "ident": "AU-0184", + "type": "heliport", + "name": "Penny's Hill Helipad", + "latitude_deg": "-35.245791", + "longitude_deg": "138.551143", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "McLaren Vale", + "scheduled_service": "no" + }, + { + "id": "341740", + "ident": "AU-0185", + "type": "heliport", + "name": "South Coast District Hospital Helipad", + "latitude_deg": "-35.561805", + "longitude_deg": "138.606714", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Victor Harbor", + "scheduled_service": "no" + }, + { + "id": "341741", + "ident": "AU-0186", + "type": "heliport", + "name": "Royal Adelaide Hospital Helipad", + "latitude_deg": "-34.920671", + "longitude_deg": "138.586129", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Adelaide", + "scheduled_service": "no" + }, + { + "id": "341742", + "ident": "AU-0187", + "type": "heliport", + "name": "South Coast Heliport", + "latitude_deg": "-35.267564", + "longitude_deg": "138.919461", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Strathalbyn", + "scheduled_service": "no" + }, + { + "id": "341966", + "ident": "AU-0188", + "type": "small_airport", + "name": "Strowan", + "latitude_deg": "-32.460996", + "longitude_deg": "150.861705", + "elevation_ft": "830", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Jerry Plains", + "scheduled_service": "no", + "wikipedia_link": "https://military.wikia.org/wiki/Strowan_Aerodrome" + }, + { + "id": "343273", + "ident": "AU-0189", + "type": "heliport", + "name": "Coochiemudlo - Cricket Oval HLS", + "latitude_deg": "-27.569128", + "longitude_deg": "153.334197", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Coochiemudlo Island", + "scheduled_service": "no", + "local_code": "OZHBH" + }, + { + "id": "345621", + "ident": "AU-0190", + "type": "heliport", + "name": "Tully Hospital Heliport.", + "latitude_deg": "-17.926895", + "longitude_deg": "145.923446", + "elevation_ft": "129", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Tully", + "scheduled_service": "no", + "gps_code": "YXTU", + "home_link": "https://www.health.qld.gov.au/services/cairns-hinterland/cairns_tully_hosp" + }, + { + "id": "348316", + "ident": "AU-0191", + "type": "small_airport", + "name": "Dundee Beach Airport", + "latitude_deg": "-12.720112", + "longitude_deg": "130.361831", + "elevation_ft": "25", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Dundee Beach", + "scheduled_service": "no" + }, + { + "id": "348317", + "ident": "AU-0192", + "type": "small_airport", + "name": "Channel Point Airport", + "latitude_deg": "-13.15257", + "longitude_deg": "130.14333", + "elevation_ft": "80", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Rakula", + "scheduled_service": "no" + }, + { + "id": "348318", + "ident": "AU-0193", + "type": "small_airport", + "name": "Bulgul Airport", + "latitude_deg": "-13.10456", + "longitude_deg": "130.16128", + "elevation_ft": "121", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Rakula", + "scheduled_service": "no" + }, + { + "id": "348319", + "ident": "AU-0194", + "type": "small_airport", + "name": "Sabina Airport", + "latitude_deg": "-13.85902", + "longitude_deg": "129.93136", + "elevation_ft": "71", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Nemarluk", + "scheduled_service": "no" + }, + { + "id": "348320", + "ident": "AU-0195", + "type": "small_airport", + "name": "Nadirri Airport", + "latitude_deg": "-13.94685", + "longitude_deg": "129.77638", + "elevation_ft": "72", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Thamarrurr", + "scheduled_service": "no" + }, + { + "id": "348321", + "ident": "AU-0196", + "type": "small_airport", + "name": "Perrederr Airport", + "latitude_deg": "-14.02022", + "longitude_deg": "129.8218", + "elevation_ft": "69", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Thamarrurr", + "scheduled_service": "no" + }, + { + "id": "348322", + "ident": "AU-0197", + "type": "small_airport", + "name": "Yederr Airport", + "latitude_deg": "-14.02481", + "longitude_deg": "129.72806", + "elevation_ft": "46", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Thamarrurr", + "scheduled_service": "no" + }, + { + "id": "348323", + "ident": "AU-0198", + "type": "small_airport", + "name": "Fossil Head Airport", + "latitude_deg": "-14.54377", + "longitude_deg": "129.52652", + "elevation_ft": "102", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Thamarrurr", + "scheduled_service": "no" + }, + { + "id": "348324", + "ident": "AU-0199", + "type": "small_airport", + "name": "Wombungi Station Airport", + "latitude_deg": "-14.77569", + "longitude_deg": "131.04727", + "elevation_ft": "597", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Bradshaw", + "scheduled_service": "no" + }, + { + "id": "348325", + "ident": "AU-0200", + "type": "small_airport", + "name": "Digger's Rest Station Airport", + "latitude_deg": "-15.62331", + "longitude_deg": "128.06102", + "elevation_ft": "66", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Durack", + "scheduled_service": "no" + }, + { + "id": "348326", + "ident": "AU-0201", + "type": "small_airport", + "name": "Cygnet Bay Pearl Farm Airport", + "latitude_deg": "-16.44032", + "longitude_deg": "123.01758", + "elevation_ft": "92", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Dampier Peninsula", + "scheduled_service": "no" + }, + { + "id": "348327", + "ident": "AU-0202", + "type": "small_airport", + "name": "Arrow Pearling Base Airport", + "latitude_deg": "-16.94733", + "longitude_deg": "122.49511", + "elevation_ft": "16", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Dampier Peninsula", + "scheduled_service": "no" + }, + { + "id": "348328", + "ident": "AU-0203", + "type": "small_airport", + "name": "Meda Airport", + "latitude_deg": "-17.36042", + "longitude_deg": "123.99276", + "elevation_ft": "52", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Meda", + "scheduled_service": "no" + }, + { + "id": "348329", + "ident": "AU-0204", + "type": "small_airport", + "name": "Koolan Island Airport", + "latitude_deg": "-16.12854", + "longitude_deg": "123.77981", + "elevation_ft": "502", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Kimbolton", + "scheduled_service": "no", + "gps_code": "YKLI" + }, + { + "id": "348506", + "ident": "AU-0205", + "type": "small_airport", + "name": "Kynuna Town Strip (Glenagra)", + "latitude_deg": "-21.535126", + "longitude_deg": "141.838249", + "elevation_ft": "735", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Kynuna", + "scheduled_service": "no", + "local_code": "YKYNU" + }, + { + "id": "348586", + "ident": "AU-0206", + "type": "small_airport", + "name": "Minilya Airport", + "latitude_deg": "-23.80655", + "longitude_deg": "114.00853", + "elevation_ft": "49", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Minilya", + "scheduled_service": "no" + }, + { + "id": "348587", + "ident": "AU-0207", + "type": "closed", + "name": "Yandoo Creek Airport", + "latitude_deg": "-24.31272", + "longitude_deg": "114.32325", + "elevation_ft": "223", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Yandoo Creek", + "scheduled_service": "no" + }, + { + "id": "348752", + "ident": "AU-0208", + "type": "small_airport", + "name": "Chuulangun Airport", + "latitude_deg": "-13.11818", + "longitude_deg": "143.00533", + "elevation_ft": "456", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Lockhart River", + "scheduled_service": "no" + }, + { + "id": "349477", + "ident": "AU-0209", + "type": "small_airport", + "name": "Wyberba Airstrip", + "latitude_deg": "-28.847287", + "longitude_deg": "151.857834", + "elevation_ft": "2500", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Wyberba", + "scheduled_service": "no" + }, + { + "id": "349480", + "ident": "AU-0210", + "type": "small_airport", + "name": "KESWICK ISLAND AIRSTRIP", + "latitude_deg": "-20.920538", + "longitude_deg": "149.422839", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "KESWICK ISLAND", + "scheduled_service": "no" + }, + { + "id": "349481", + "ident": "AU-0211", + "type": "small_airport", + "name": "Lundavra Private Airstrip", + "latitude_deg": "-28.026001", + "longitude_deg": "150.026486", + "elevation_ft": "100", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Lundavra", + "scheduled_service": "no" + }, + { + "id": "349482", + "ident": "AU-0212", + "type": "small_airport", + "name": "Mount Walker airstrip", + "latitude_deg": "-27.76846", + "longitude_deg": "152.520597", + "elevation_ft": "2", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Mount Walker West QLD 4340", + "scheduled_service": "no" + }, + { + "id": "349899", + "ident": "AU-0213", + "type": "small_airport", + "name": "mount archer", + "latitude_deg": "-26.973333", + "longitude_deg": "152.666745", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "mount archer", + "scheduled_service": "no", + "home_link": "http://archerfallsairfield.com.au" + }, + { + "id": "350200", + "ident": "AU-0214", + "type": "small_airport", + "name": "george lees airfield", + "latitude_deg": "-27.049228", + "longitude_deg": "151.274228", + "elevation_ft": "100", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Pirrinuan, QLD 4405", + "scheduled_service": "no" + }, + { + "id": "350240", + "ident": "AU-0215", + "type": "small_airport", + "name": "Wallaroo Airstrip", + "latitude_deg": "-35.144284", + "longitude_deg": "149.042952", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Wallaroo", + "scheduled_service": "no" + }, + { + "id": "350203", + "ident": "AU-0216", + "type": "small_airport", + "name": "FORESTVALE AIRSTRIP", + "latitude_deg": "-25.805775", + "longitude_deg": "147.953224", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "FORESTVALE", + "scheduled_service": "no" + }, + { + "id": "350204", + "ident": "AU-0217", + "type": "small_airport", + "name": "Dirranbandi", + "latitude_deg": "-28.98134", + "longitude_deg": "148.054848", + "elevation_ft": "568", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Dirranbandi", + "scheduled_service": "no" + }, + { + "id": "350205", + "ident": "AU-0218", + "type": "small_airport", + "name": "Teewah airstrip", + "latitude_deg": "-26.316343", + "longitude_deg": "153.038692", + "elevation_ft": "25", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Teewah", + "scheduled_service": "no" + }, + { + "id": "350206", + "ident": "AU-0219", + "type": "small_airport", + "name": "Greenfield (Cootharaba)", + "latitude_deg": "-26.292993", + "longitude_deg": "152.961724", + "elevation_ft": "6", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Cootharaba", + "scheduled_service": "no" + }, + { + "id": "27595", + "ident": "AU-0220", + "type": "closed", + "name": "Geelong Airport", + "latitude_deg": "-38.224998", + "longitude_deg": "144.332993", + "elevation_ft": "43", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Geelong_Airport", + "keywords": "YGLG, GEX" + }, + { + "id": "38371", + "ident": "AU-0221", + "type": "closed", + "name": "Grovedale Airport", + "latitude_deg": "-38.216702", + "longitude_deg": "144.332993", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "keywords": "YGRD" + }, + { + "id": "310100", + "ident": "AU-0222", + "type": "heliport", + "name": "Tabulam Oval Helipad", + "latitude_deg": "-28.8903", + "longitude_deg": "152.5678", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "local_code": "YTBM" + }, + { + "id": "350215", + "ident": "AU-0223", + "type": "small_airport", + "name": "Jimbour Homestead airstrip", + "latitude_deg": "-26.959998", + "longitude_deg": "151.235851", + "elevation_ft": "1115", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Jimbour", + "scheduled_service": "no" + }, + { + "id": "350216", + "ident": "AU-0224", + "type": "small_airport", + "name": "frogs hollows airfield", + "latitude_deg": "-36.760549", + "longitude_deg": "149.804163", + "elevation_ft": "270", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Tathra", + "scheduled_service": "no" + }, + { + "id": "350219", + "ident": "AU-0225", + "type": "small_airport", + "name": "Bendick Murrell Airstrip", + "latitude_deg": "-34.174167", + "longitude_deg": "148.471944", + "elevation_ft": "1194", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Bendick Murrell", + "scheduled_service": "no", + "gps_code": "YBND" + }, + { + "id": "350243", + "ident": "AU-0226", + "type": "small_airport", + "name": "Marulan (Tangryang) Airstrip", + "latitude_deg": "-34.734273", + "longitude_deg": "149.958315", + "elevation_ft": "2300", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Marulan", + "scheduled_service": "no" + }, + { + "id": "350492", + "ident": "AU-0227", + "type": "small_airport", + "name": "Pipers Airfield", + "latitude_deg": "-33.377547", + "longitude_deg": "149.519634", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no" + }, + { + "id": "350493", + "ident": "AU-0228", + "type": "small_airport", + "name": "2nd Crookwell Airfield", + "latitude_deg": "-34.493893", + "longitude_deg": "149.462128", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Crookwell", + "scheduled_service": "no" + }, + { + "id": "350494", + "ident": "AU-0229", + "type": "small_airport", + "name": "Limekilns airfield", + "latitude_deg": "-33.267613", + "longitude_deg": "149.725885", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Limekilns", + "scheduled_service": "no" + }, + { + "id": "350497", + "ident": "AU-0230", + "type": "small_airport", + "name": "bungebah airfield", + "latitude_deg": "-31.979077", + "longitude_deg": "149.794765", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no" + }, + { + "id": "350506", + "ident": "AU-0231", + "type": "small_airport", + "name": "Narrandool Bush Strip", + "latitude_deg": "-29.252257", + "longitude_deg": "147.880182", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Narrandool", + "scheduled_service": "no" + }, + { + "id": "350507", + "ident": "AU-0232", + "type": "small_airport", + "name": "WeeWaa 2nd Airstrip", + "latitude_deg": "-30.252173", + "longitude_deg": "149.451141", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "WeeWaa", + "scheduled_service": "no" + }, + { + "id": "350509", + "ident": "AU-0233", + "type": "small_airport", + "name": "Croppa Creek airstrip", + "latitude_deg": "-29.114263", + "longitude_deg": "150.408883", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Croppa Creek", + "scheduled_service": "no" + }, + { + "id": "350511", + "ident": "AU-0234", + "type": "small_airport", + "name": "Texas AIrstrip", + "latitude_deg": "-28.834683", + "longitude_deg": "151.15208", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Texas", + "scheduled_service": "no" + }, + { + "id": "350514", + "ident": "AU-0235", + "type": "small_airport", + "name": "Ellinthorp Airstrip", + "latitude_deg": "-28.054948", + "longitude_deg": "151.931144", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Ellinthorp", + "scheduled_service": "no" + }, + { + "id": "350515", + "ident": "AU-0236", + "type": "small_airport", + "name": "private airstrip agnes waters", + "latitude_deg": "-24.274705", + "longitude_deg": "151.778913", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "private airstrip agnes waters", + "scheduled_service": "no" + }, + { + "id": "350516", + "ident": "AU-0237", + "type": "small_airport", + "name": "private airfield agnes waters", + "latitude_deg": "-24.238316", + "longitude_deg": "151.862394", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "agnes waters", + "scheduled_service": "no" + }, + { + "id": "350519", + "ident": "AU-0238", + "type": "small_airport", + "name": "private runway agnes waters", + "latitude_deg": "-24.29885", + "longitude_deg": "151.785468", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "agnes waters", + "scheduled_service": "no" + }, + { + "id": "350521", + "ident": "AU-0239", + "type": "small_airport", + "name": "Samuel Hill Airfield ( Danger Zone RAAF Shoal water bay)", + "latitude_deg": "-22.740486", + "longitude_deg": "150.654016", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Shoal Water bay", + "scheduled_service": "no" + }, + { + "id": "350522", + "ident": "AU-0240", + "type": "small_airport", + "name": "The Plains Airfield Shoal water bay RAAF", + "latitude_deg": "-22.76162", + "longitude_deg": "150.346527", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Shoal Waterbay RAAF", + "scheduled_service": "no" + }, + { + "id": "350523", + "ident": "AU-0241", + "type": "small_airport", + "name": "Saint Lawrence", + "latitude_deg": "-22.375139", + "longitude_deg": "149.459767", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Saint Lawrence", + "scheduled_service": "no" + }, + { + "id": "350524", + "ident": "AU-0242", + "type": "small_airport", + "name": "Oaky Creek Airfield", + "latitude_deg": "-23.242273", + "longitude_deg": "148.355534", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Oaky Creek", + "scheduled_service": "no" + }, + { + "id": "350525", + "ident": "AU-0243", + "type": "small_airport", + "name": "Midge Point", + "latitude_deg": "-20.625354", + "longitude_deg": "148.677163", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Midge Point", + "scheduled_service": "no" + }, + { + "id": "350527", + "ident": "AU-0244", + "type": "small_airport", + "name": "temple island airstrip", + "latitude_deg": "-21.601298", + "longitude_deg": "149.491868", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "temple island", + "scheduled_service": "no" + }, + { + "id": "350531", + "ident": "AU-0245", + "type": "small_airport", + "name": "Nobbys Creek private Strip", + "latitude_deg": "-28.29586", + "longitude_deg": "153.326306", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Nobbys Creek", + "scheduled_service": "no" + }, + { + "id": "350546", + "ident": "AU-0246", + "type": "heliport", + "name": "Cooroy School Oval HLS", + "latitude_deg": "-26.424647", + "longitude_deg": "152.909045", + "elevation_ft": "381", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Cooroy", + "scheduled_service": "no", + "local_code": "OZHBK" + }, + { + "id": "350548", + "ident": "AU-0247", + "type": "heliport", + "name": "Clarence Valley Correctional Centre Heliport", + "latitude_deg": "-29.740569", + "longitude_deg": "153.064098", + "elevation_ft": "99", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Lavadia", + "scheduled_service": "no", + "local_code": "OZHKF" + }, + { + "id": "350549", + "ident": "AU-0248", + "type": "heliport", + "name": "Quirindi Fire Station/Emergency Services Heliport", + "latitude_deg": "-31.501946", + "longitude_deg": "150.673563", + "elevation_ft": "1273", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Quirindi", + "scheduled_service": "no", + "local_code": "OZHKG" + }, + { + "id": "350550", + "ident": "AU-0249", + "type": "heliport", + "name": "Belyuen Oval Helicopter Landing Site", + "latitude_deg": "-12.536592", + "longitude_deg": "130.699786", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Delissaville", + "scheduled_service": "no", + "local_code": "OZHKH" + }, + { + "id": "350551", + "ident": "AU-0250", + "type": "heliport", + "name": "Yeoval Oval Helicopter Landing Site", + "latitude_deg": "-32.750616", + "longitude_deg": "148.646634", + "elevation_ft": "1248", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Yeoval", + "scheduled_service": "no", + "local_code": "OZHKJ" + }, + { + "id": "350553", + "ident": "AU-0251", + "type": "heliport", + "name": "Cataract Dam Heliport", + "latitude_deg": "-34.255438", + "longitude_deg": "150.806252", + "elevation_ft": "1234", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Cataract", + "scheduled_service": "no", + "local_code": "OZHKL" + }, + { + "id": "351242", + "ident": "AU-0252", + "type": "small_airport", + "name": "airlie private strip", + "latitude_deg": "-33.594282", + "longitude_deg": "149.544997", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "airlie", + "scheduled_service": "no" + }, + { + "id": "351273", + "ident": "AU-0253", + "type": "small_airport", + "name": "Hazelton Private Airstrip", + "latitude_deg": "-27.047737", + "longitude_deg": "153.05131", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Ningi", + "scheduled_service": "no" + }, + { + "id": "351278", + "ident": "AU-0254", + "type": "small_airport", + "name": "Tabragalba Homestead private strip", + "latitude_deg": "-28.011066", + "longitude_deg": "153.06839", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Tabragalba", + "scheduled_service": "no" + }, + { + "id": "351279", + "ident": "AU-0255", + "type": "small_airport", + "name": "Gulgong Aero Park Airport", + "latitude_deg": "-32.298696", + "longitude_deg": "149.559567", + "elevation_ft": "1443", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Gulgong", + "scheduled_service": "no", + "gps_code": "YGGG" + }, + { + "id": "351297", + "ident": "AU-0256", + "type": "small_airport", + "name": "Wyaldra Airstrip", + "latitude_deg": "-32.295939", + "longitude_deg": "149.551542", + "elevation_ft": "1442", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Wyaldra", + "scheduled_service": "no" + }, + { + "id": "351337", + "ident": "AU-0257", + "type": "small_airport", + "name": "Ravenswood Gold mine", + "latitude_deg": "-20.101841", + "longitude_deg": "146.908643", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Ravenswood", + "scheduled_service": "no" + }, + { + "id": "351431", + "ident": "AU-0258", + "type": "small_airport", + "name": "Uralla Private strip?", + "latitude_deg": "-30.671176", + "longitude_deg": "151.488333", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Uralla", + "scheduled_service": "no" + }, + { + "id": "351432", + "ident": "AU-0259", + "type": "small_airport", + "name": "Lockhart Airstrip", + "latitude_deg": "-35.205339", + "longitude_deg": "146.728742", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Lockhart", + "scheduled_service": "no" + }, + { + "id": "351433", + "ident": "AU-0260", + "type": "small_airport", + "name": "Berrigan Airstrip", + "latitude_deg": "-35.684209", + "longitude_deg": "145.814753", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Berrigan", + "scheduled_service": "no" + }, + { + "id": "351463", + "ident": "AU-0261", + "type": "small_airport", + "name": "Yarraden station airstrip", + "latitude_deg": "-14.303383", + "longitude_deg": "143.310943", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Yarraden", + "scheduled_service": "no" + }, + { + "id": "351464", + "ident": "AU-0262", + "type": "small_airport", + "name": "Coen airstrip", + "latitude_deg": "-13.956517", + "longitude_deg": "143.182068", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Coen", + "scheduled_service": "no" + }, + { + "id": "351471", + "ident": "AU-0263", + "type": "small_airport", + "name": "Mapoon Airstrip", + "latitude_deg": "-12.049793", + "longitude_deg": "141.906173", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Mapoon", + "scheduled_service": "no" + }, + { + "id": "351472", + "ident": "AU-0264", + "type": "small_airport", + "name": "Skardon River Airport", + "latitude_deg": "-11.866259", + "longitude_deg": "142.008762", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Mapoon", + "scheduled_service": "no" + }, + { + "id": "351480", + "ident": "AU-0265", + "type": "small_airport", + "name": "Cullulleraine airstrip private", + "latitude_deg": "-34.190506", + "longitude_deg": "141.615314", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Cullulleraine", + "scheduled_service": "no" + }, + { + "id": "351481", + "ident": "AU-0266", + "type": "small_airport", + "name": "Neds Corner Airport", + "latitude_deg": "-34.146405", + "longitude_deg": "141.334734", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Neds Corner", + "scheduled_service": "no" + }, + { + "id": "351482", + "ident": "AU-0267", + "type": "small_airport", + "name": "Hindmarsh Island private strip", + "latitude_deg": "-35.50416", + "longitude_deg": "138.850708", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Hindmarsh Island", + "scheduled_service": "no" + }, + { + "id": "351483", + "ident": "AU-0268", + "type": "small_airport", + "name": "Hindmarsh International Airport", + "latitude_deg": "-35.528965", + "longitude_deg": "138.864355", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Hindmarsh", + "scheduled_service": "no" + }, + { + "id": "351500", + "ident": "AU-0269", + "type": "small_airport", + "name": "Bramwell Tourist Park airstrip", + "latitude_deg": "-12.139613", + "longitude_deg": "142.614233", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Bramwell Tourist Park", + "scheduled_service": "no", + "gps_code": "YBWL", + "keywords": "Bramwell Station" + }, + { + "id": "351501", + "ident": "AU-0270", + "type": "small_airport", + "name": "WENLOCK AIRSTRIP", + "latitude_deg": "-12.187355", + "longitude_deg": "142.517052", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "wenlock", + "scheduled_service": "no" + }, + { + "id": "351705", + "ident": "AU-0271", + "type": "small_airport", + "name": "Arrabury Homestead", + "latitude_deg": "-26.758793", + "longitude_deg": "141.027031", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Arrabury Homestead", + "scheduled_service": "no" + }, + { + "id": "351706", + "ident": "AU-0272", + "type": "small_airport", + "name": "Planet Downs OS", + "latitude_deg": "-25.872662", + "longitude_deg": "141.116788", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Planet downs OS", + "scheduled_service": "no" + }, + { + "id": "351708", + "ident": "AU-0273", + "type": "small_airport", + "name": "Glen Aplin private strip", + "latitude_deg": "-28.730358", + "longitude_deg": "151.858134", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Glen Aplin", + "scheduled_service": "no" + }, + { + "id": "351709", + "ident": "AU-0274", + "type": "small_airport", + "name": "Landsborough Airport", + "latitude_deg": "-26.823056", + "longitude_deg": "152.977538", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Landsborough", + "scheduled_service": "no" + }, + { + "id": "351710", + "ident": "AU-0275", + "type": "small_airport", + "name": "Glenroy private strip", + "latitude_deg": "-23.067769", + "longitude_deg": "149.718375", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Glenroy", + "scheduled_service": "no" + }, + { + "id": "351711", + "ident": "AU-0276", + "type": "small_airport", + "name": "cape cloucester airstrip 300m length", + "latitude_deg": "-20.091947", + "longitude_deg": "148.443564", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Cape Cloucester", + "scheduled_service": "no" + }, + { + "id": "351712", + "ident": "AU-0277", + "type": "small_airport", + "name": "Burraga Airstrip no.1", + "latitude_deg": "-33.950427", + "longitude_deg": "149.564631", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Burraga", + "scheduled_service": "no" + }, + { + "id": "351713", + "ident": "AU-0278", + "type": "small_airport", + "name": "Burraga Airstrip no.2", + "latitude_deg": "-33.939693", + "longitude_deg": "149.495258", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Burraga", + "scheduled_service": "no" + }, + { + "id": "351714", + "ident": "AU-0279", + "type": "small_airport", + "name": "Mataranka township airport", + "latitude_deg": "-14.924093", + "longitude_deg": "133.061728", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Mataranka", + "scheduled_service": "no" + }, + { + "id": "351719", + "ident": "AU-0280", + "type": "small_airport", + "name": "Emungalan airstrip", + "latitude_deg": "-14.432186", + "longitude_deg": "132.237228", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Emungalan", + "scheduled_service": "no" + }, + { + "id": "351721", + "ident": "AU-0281", + "type": "small_airport", + "name": "Katherine North Airstrip", + "latitude_deg": "-14.446135", + "longitude_deg": "132.273046", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Katherine North", + "scheduled_service": "no" + }, + { + "id": "351724", + "ident": "AU-0282", + "type": "small_airport", + "name": "Manbulloo Airstrip", + "latitude_deg": "-14.560116", + "longitude_deg": "132.230136", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Manbulloo", + "scheduled_service": "no" + }, + { + "id": "351731", + "ident": "AU-0283", + "type": "small_airport", + "name": "Venn airstrip", + "latitude_deg": "-14.576315", + "longitude_deg": "132.505546", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Venn", + "scheduled_service": "no" + }, + { + "id": "351732", + "ident": "AU-0284", + "type": "small_airport", + "name": "Elsey private airstrip", + "latitude_deg": "-14.912628", + "longitude_deg": "133.119364", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Elsey", + "scheduled_service": "no" + }, + { + "id": "351735", + "ident": "AU-0285", + "type": "small_airport", + "name": "Elsey private airstrip no. 2", + "latitude_deg": "-14.985664", + "longitude_deg": "133.085225", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Elsey", + "scheduled_service": "no" + }, + { + "id": "351738", + "ident": "AU-0286", + "type": "small_airport", + "name": "Wuyagiba Airport", + "latitude_deg": "-14.616433", + "longitude_deg": "135.489707", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Wuyagiba", + "scheduled_service": "no" + }, + { + "id": "351740", + "ident": "AU-0287", + "type": "small_airport", + "name": "Mumpumampu Airport", + "latitude_deg": "-14.385633", + "longitude_deg": "135.332251", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Mumpumampu", + "scheduled_service": "no" + }, + { + "id": "351742", + "ident": "AU-0288", + "type": "small_airport", + "name": "Ngilipitji Airport", + "latitude_deg": "-13.489209", + "longitude_deg": "135.543222", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Ngilipitji", + "scheduled_service": "no" + }, + { + "id": "351743", + "ident": "AU-0289", + "type": "small_airport", + "name": "Dhuruputjpl Airport", + "latitude_deg": "-13.054234", + "longitude_deg": "136.170551", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Dhuruputjpl", + "scheduled_service": "no" + }, + { + "id": "351745", + "ident": "AU-0290", + "type": "small_airport", + "name": "Gunyangara Airstrip", + "latitude_deg": "-12.223002", + "longitude_deg": "136.705412", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Gunyangara", + "scheduled_service": "no" + }, + { + "id": "351746", + "ident": "AU-0291", + "type": "small_airport", + "name": "Buymarr Airport", + "latitude_deg": "-12.689905", + "longitude_deg": "136.63202", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Buymarr", + "scheduled_service": "no" + }, + { + "id": "351750", + "ident": "AU-0292", + "type": "small_airport", + "name": "Yinyikay airport", + "latitude_deg": "-12.212477", + "longitude_deg": "136.234987", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Yinyikay", + "scheduled_service": "no" + }, + { + "id": "351751", + "ident": "AU-0293", + "type": "small_airport", + "name": "Rorruwuy airport", + "latitude_deg": "-12.192806", + "longitude_deg": "136.293562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Rorruwuy", + "scheduled_service": "no" + }, + { + "id": "351752", + "ident": "AU-0294", + "type": "small_airport", + "name": "Matamata airport", + "latitude_deg": "-12.077239", + "longitude_deg": "136.270361", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Matamata", + "scheduled_service": "no" + }, + { + "id": "351753", + "ident": "AU-0295", + "type": "small_airport", + "name": "Barrkira Airport", + "latitude_deg": "-12.008604", + "longitude_deg": "136.469199", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Barrkira", + "scheduled_service": "no" + }, + { + "id": "351754", + "ident": "AU-0296", + "type": "small_airport", + "name": "Dallachy(Cardwell) Aerodrome", + "latitude_deg": "-18.178578", + "longitude_deg": "145.950061", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Dallachy(Cardwell)", + "scheduled_service": "no" + }, + { + "id": "351755", + "ident": "AU-0297", + "type": "small_airport", + "name": "Koah Airport", + "latitude_deg": "-16.82674", + "longitude_deg": "145.520912", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Koah", + "scheduled_service": "no" + }, + { + "id": "351756", + "ident": "AU-0298", + "type": "small_airport", + "name": "Ace Aerodrome Starke Field", + "latitude_deg": "-19.585231", + "longitude_deg": "146.779948", + "elevation_ft": "276", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Woodstock", + "scheduled_service": "no" + }, + { + "id": "351757", + "ident": "AU-0299", + "type": "small_airport", + "name": "Home Hill Aerodrome", + "latitude_deg": "-19.726176", + "longitude_deg": "147.350591", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Osborne 4806", + "scheduled_service": "no" + }, + { + "id": "351758", + "ident": "AU-0300", + "type": "small_airport", + "name": "Johnnycake Homestead", + "latitude_deg": "-20.259135", + "longitude_deg": "147.32446", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Bogie", + "scheduled_service": "no" + }, + { + "id": "351759", + "ident": "AU-0301", + "type": "small_airport", + "name": "Mount Coolon Homestead Airfield", + "latitude_deg": "-21.092297", + "longitude_deg": "146.865913", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Mount Coolon", + "scheduled_service": "no" + }, + { + "id": "351764", + "ident": "AU-0302", + "type": "small_airport", + "name": "Newlands Coalmine Airport", + "latitude_deg": "-21.172446", + "longitude_deg": "147.908808", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Newlands 4804", + "scheduled_service": "no" + }, + { + "id": "351768", + "ident": "AU-0303", + "type": "small_airport", + "name": "Newlands Coalmine Airport no.2", + "latitude_deg": "-21.338405", + "longitude_deg": "147.901663", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Newlands 4804", + "scheduled_service": "no" + }, + { + "id": "351773", + "ident": "AU-0304", + "type": "small_airport", + "name": "Coppabella Airport", + "latitude_deg": "-21.896128", + "longitude_deg": "148.370861", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Coppabella", + "scheduled_service": "no" + }, + { + "id": "351775", + "ident": "AU-0305", + "type": "small_airport", + "name": "Tierawoomba Homestead Airport", + "latitude_deg": "-21.855211", + "longitude_deg": "149.032541", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Oxford 4742", + "scheduled_service": "no" + }, + { + "id": "351777", + "ident": "AU-0306", + "type": "small_airport", + "name": "Woorabinda Airport", + "latitude_deg": "-24.115419", + "longitude_deg": "149.476214", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Woorabinda", + "scheduled_service": "no" + }, + { + "id": "351779", + "ident": "AU-0307", + "type": "small_airport", + "name": "Murgon Airport", + "latitude_deg": "-26.25309", + "longitude_deg": "151.930258", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Murgon", + "scheduled_service": "no", + "home_link": "http://www.burnettflyers.org/" + }, + { + "id": "351795", + "ident": "AU-0308", + "type": "small_airport", + "name": "Mudhamul Airport", + "latitude_deg": "-12.160464", + "longitude_deg": "136.174445", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Mudhamul", + "scheduled_service": "no" + }, + { + "id": "351797", + "ident": "AU-0309", + "type": "small_airport", + "name": "Henty Airport", + "latitude_deg": "-35.50682", + "longitude_deg": "146.997025", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Henty", + "scheduled_service": "no" + }, + { + "id": "351798", + "ident": "AU-0310", + "type": "small_airport", + "name": "HentyField Days Site Airport", + "latitude_deg": "-35.507083", + "longitude_deg": "147.109547", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Henty", + "scheduled_service": "no" + }, + { + "id": "351799", + "ident": "AU-0311", + "type": "small_airport", + "name": "Wallaroo private strip", + "latitude_deg": "-35.169086", + "longitude_deg": "148.96244", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Wallaroo", + "scheduled_service": "no" + }, + { + "id": "351800", + "ident": "AU-0312", + "type": "small_airport", + "name": "Southern tablelands gliding club", + "latitude_deg": "-34.688468", + "longitude_deg": "149.892557", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Goulburn", + "scheduled_service": "no" + }, + { + "id": "351802", + "ident": "AU-0313", + "type": "small_airport", + "name": "Worral Creek private strip", + "latitude_deg": "-28.616219", + "longitude_deg": "149.255705", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Worral Creek", + "scheduled_service": "no" + }, + { + "id": "351803", + "ident": "AU-0314", + "type": "small_airport", + "name": "Boomi airport", + "latitude_deg": "-28.588784", + "longitude_deg": "149.578506", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Boomi", + "scheduled_service": "no" + }, + { + "id": "351804", + "ident": "AU-0315", + "type": "small_airport", + "name": "North Talwood Airfield", + "latitude_deg": "-28.494205", + "longitude_deg": "149.45643", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "North Talwood", + "scheduled_service": "no" + }, + { + "id": "351805", + "ident": "AU-0316", + "type": "small_airport", + "name": "Parkes private strip", + "latitude_deg": "-32.984213", + "longitude_deg": "148.245259", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Parkes", + "scheduled_service": "no" + }, + { + "id": "351806", + "ident": "AU-0317", + "type": "small_airport", + "name": "Grange View homestead airfield", + "latitude_deg": "-32.439399", + "longitude_deg": "148.884431", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Maryvale", + "scheduled_service": "no" + }, + { + "id": "351807", + "ident": "AU-0318", + "type": "small_airport", + "name": "Gunnedah Airfield SES Only", + "latitude_deg": "-31.04354", + "longitude_deg": "150.284623", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Gunnedah", + "scheduled_service": "no" + }, + { + "id": "351808", + "ident": "AU-0319", + "type": "small_airport", + "name": "Attunga Private airstrp", + "latitude_deg": "-30.92789", + "longitude_deg": "150.801727", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Attunga", + "scheduled_service": "no" + }, + { + "id": "351809", + "ident": "AU-0320", + "type": "small_airport", + "name": "Manilla Paragliding", + "latitude_deg": "-30.678202", + "longitude_deg": "150.649547", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Manilla", + "scheduled_service": "no" + }, + { + "id": "351815", + "ident": "AU-0321", + "type": "small_airport", + "name": "Bluewater park Airstrip", + "latitude_deg": "-19.187341", + "longitude_deg": "146.49475", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Bluewater park Airstrip", + "scheduled_service": "no" + }, + { + "id": "351820", + "ident": "AU-0322", + "type": "small_airport", + "name": "Wooloomanata Airfield", + "latitude_deg": "-37.936064", + "longitude_deg": "144.370733", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Wooloomanata", + "scheduled_service": "no" + }, + { + "id": "351821", + "ident": "AU-0323", + "type": "small_airport", + "name": "Bridport 2nd Airstrip", + "latitude_deg": "-41.029533", + "longitude_deg": "147.416556", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Bridport", + "scheduled_service": "no" + }, + { + "id": "351822", + "ident": "AU-0324", + "type": "small_airport", + "name": "Bridport 3rd Airstrip", + "latitude_deg": "-40.998702", + "longitude_deg": "147.487306", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Bridport", + "scheduled_service": "no" + }, + { + "id": "351823", + "ident": "AU-0325", + "type": "small_airport", + "name": "Musselroe Bay Private airstrip", + "latitude_deg": "-40.863537", + "longitude_deg": "148.147863", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Musselroe Bay", + "scheduled_service": "no" + }, + { + "id": "351824", + "ident": "AU-0326", + "type": "small_airport", + "name": "North Campbell Town Airfield", + "latitude_deg": "-41.895912", + "longitude_deg": "147.477898", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "North Campbell", + "scheduled_service": "no" + }, + { + "id": "351825", + "ident": "AU-0327", + "type": "small_airport", + "name": "Pooncarie Airstrip", + "latitude_deg": "-33.377947", + "longitude_deg": "142.134113", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Pooncarie", + "scheduled_service": "no" + }, + { + "id": "351827", + "ident": "AU-0328", + "type": "small_airport", + "name": "Hillside Station Airfield", + "latitude_deg": "-21.727351", + "longitude_deg": "119.393671", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Hillside Station", + "scheduled_service": "no" + }, + { + "id": "351828", + "ident": "AU-0329", + "type": "small_airport", + "name": "Woodstock Airport (Marble Bar)", + "latitude_deg": "-21.62561", + "longitude_deg": "118.963556", + "elevation_ft": "912", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Marble Bar", + "scheduled_service": "no" + }, + { + "id": "351889", + "ident": "AU-0330", + "type": "small_airport", + "name": "Goshen Station Airport", + "latitude_deg": "-18.13792", + "longitude_deg": "145.42831", + "elevation_ft": "2248", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Kirrama", + "scheduled_service": "no" + }, + { + "id": "351900", + "ident": "AU-0331", + "type": "small_airport", + "name": "Stirling North/Flinders Field Airport", + "latitude_deg": "-32.529886", + "longitude_deg": "137.85269", + "elevation_ft": "110", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Stirling North", + "scheduled_service": "no", + "gps_code": "YFFD" + }, + { + "id": "351901", + "ident": "AU-0332", + "type": "small_airport", + "name": "Concongella private airfield", + "latitude_deg": "-37.051503", + "longitude_deg": "142.853812", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Concongella", + "scheduled_service": "no" + }, + { + "id": "351902", + "ident": "AU-0333", + "type": "small_airport", + "name": "Ling Lake Airfield", + "latitude_deg": "-37.477018", + "longitude_deg": "145.266425", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Ling Lake", + "scheduled_service": "no" + }, + { + "id": "351903", + "ident": "AU-0334", + "type": "small_airport", + "name": "Sunbury East Airport", + "latitude_deg": "-37.529859", + "longitude_deg": "144.749147", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Sunbury East", + "scheduled_service": "no" + }, + { + "id": "351905", + "ident": "AU-0335", + "type": "small_airport", + "name": "Maygars Hill Winery Airstrip", + "latitude_deg": "-36.815345", + "longitude_deg": "145.467041", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Euroa", + "scheduled_service": "no" + }, + { + "id": "351906", + "ident": "AU-0336", + "type": "small_airport", + "name": "Stoney Creek (buffalo) airfield", + "latitude_deg": "-38.605335", + "longitude_deg": "146.054201", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Stoney creek", + "scheduled_service": "no" + }, + { + "id": "351907", + "ident": "AU-0337", + "type": "small_airport", + "name": "Gleneagles Park Station", + "latitude_deg": "-38.288697", + "longitude_deg": "147.140211", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Gleneagles Park Station", + "scheduled_service": "no" + }, + { + "id": "351908", + "ident": "AU-0338", + "type": "small_airport", + "name": "Lake Glen Maggie Airfield (Coongulla)", + "latitude_deg": "-37.892352", + "longitude_deg": "146.772495", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Lake Glen Maggie (Coongulla)", + "scheduled_service": "no" + }, + { + "id": "352152", + "ident": "AU-0339", + "type": "small_airport", + "name": "Hebel airstrip", + "latitude_deg": "-28.980138", + "longitude_deg": "147.814764", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Hebel", + "scheduled_service": "no" + }, + { + "id": "352177", + "ident": "AU-0340", + "type": "small_airport", + "name": "Singleton Military Area airstrip", + "latitude_deg": "-32.619272", + "longitude_deg": "151.180841", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Singleton", + "scheduled_service": "no" + }, + { + "id": "352178", + "ident": "AU-0341", + "type": "small_airport", + "name": "Violet Town Airfield", + "latitude_deg": "-36.598167", + "longitude_deg": "145.723205", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Violet Town", + "scheduled_service": "no" + }, + { + "id": "352179", + "ident": "AU-0342", + "type": "small_airport", + "name": "Burren Junction Airstrip", + "latitude_deg": "-30.033896", + "longitude_deg": "149.019432", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Burren Junction", + "scheduled_service": "no" + }, + { + "id": "352192", + "ident": "AU-0343", + "type": "small_airport", + "name": "Coleambally Airport No.2", + "latitude_deg": "-34.910226", + "longitude_deg": "145.892907", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Coleambally", + "scheduled_service": "no" + }, + { + "id": "352193", + "ident": "AU-0344", + "type": "small_airport", + "name": "Caroline Airstrip", + "latitude_deg": "-37.965645", + "longitude_deg": "140.891922", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Caroline", + "scheduled_service": "no" + }, + { + "id": "352795", + "ident": "AU-0345", + "type": "small_airport", + "name": "Hamilton Downs Airstrip", + "latitude_deg": "-23.507335", + "longitude_deg": "133.260577", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Burt Plain", + "scheduled_service": "no" + }, + { + "id": "352197", + "ident": "AU-0346", + "type": "small_airport", + "name": "Emu Gully (Toowoomba) Airfield", + "latitude_deg": "-27.555906", + "longitude_deg": "152.08706", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Emu Gully (Toowoomba)", + "scheduled_service": "no" + }, + { + "id": "352198", + "ident": "AU-0347", + "type": "small_airport", + "name": "Crowley Vale private airfield", + "latitude_deg": "-27.54855", + "longitude_deg": "152.39217", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Crowley Vale", + "scheduled_service": "no" + }, + { + "id": "352199", + "ident": "AU-0348", + "type": "small_airport", + "name": "Mccarons private strip", + "latitude_deg": "-27.097131", + "longitude_deg": "152.603496", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Crossdale", + "scheduled_service": "no" + }, + { + "id": "352200", + "ident": "AU-0349", + "type": "small_airport", + "name": "Cooeeimbardi airstrip Private?", + "latitude_deg": "-27.094334", + "longitude_deg": "152.521948", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Cooeeimbardi", + "scheduled_service": "no" + }, + { + "id": "352201", + "ident": "AU-0350", + "type": "small_airport", + "name": "Bully Yard private Airfield", + "latitude_deg": "-24.954748", + "longitude_deg": "152.086303", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Bully Yard", + "scheduled_service": "no" + }, + { + "id": "352202", + "ident": "AU-0351", + "type": "small_airport", + "name": "Old Station Airfield", + "latitude_deg": "-23.817425", + "longitude_deg": "150.818134", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Raglan", + "scheduled_service": "no" + }, + { + "id": "352203", + "ident": "AU-0352", + "type": "small_airport", + "name": "Quail island airstrip", + "latitude_deg": "-22.13068", + "longitude_deg": "149.997285", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Quail island", + "scheduled_service": "no" + }, + { + "id": "352204", + "ident": "AU-0353", + "type": "small_airport", + "name": "Stanage (Long island) Airstrip", + "latitude_deg": "-22.149783", + "longitude_deg": "149.918143", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Stanage QLD 4702", + "scheduled_service": "no" + }, + { + "id": "352205", + "ident": "AU-0354", + "type": "small_airport", + "name": "Wild Duck Island Airstrip", + "latitude_deg": "-22.005583", + "longitude_deg": "149.853574", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Wild Duck Island", + "scheduled_service": "no" + }, + { + "id": "352206", + "ident": "AU-0355", + "type": "small_airport", + "name": "Paluma Airstrip", + "latitude_deg": "-19.124013", + "longitude_deg": "145.83536", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Paluma", + "scheduled_service": "no" + }, + { + "id": "352207", + "ident": "AU-0356", + "type": "small_airport", + "name": "Dutton River Homestead airstrip", + "latitude_deg": "-20.379045", + "longitude_deg": "143.954302", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Dutton River Homestead", + "scheduled_service": "no" + }, + { + "id": "352439", + "ident": "AU-0357", + "type": "small_airport", + "name": "Yerranderie Airfield", + "latitude_deg": "-34.118399", + "longitude_deg": "150.218555", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Yerranderie", + "scheduled_service": "no" + }, + { + "id": "352466", + "ident": "AU-0358", + "type": "small_airport", + "name": "Marthaguy airstrip private", + "latitude_deg": "-31.032911", + "longitude_deg": "147.889562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Marthaguy", + "scheduled_service": "no" + }, + { + "id": "352469", + "ident": "AU-0359", + "type": "small_airport", + "name": "Jaspers Brush Airfield", + "latitude_deg": "-34.81606", + "longitude_deg": "150.661834", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Nowra", + "scheduled_service": "no" + }, + { + "id": "352470", + "ident": "AU-0360", + "type": "small_airport", + "name": "Cambewarra Airstrip", + "latitude_deg": "-34.830881", + "longitude_deg": "150.578555", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Cambewarra", + "scheduled_service": "no" + }, + { + "id": "352531", + "ident": "AU-0361", + "type": "small_airport", + "name": "Cameron Corner airstrip", + "latitude_deg": "-28.281821", + "longitude_deg": "141.26431", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Cameron Corner", + "scheduled_service": "no" + }, + { + "id": "352532", + "ident": "AU-0362", + "type": "small_airport", + "name": "Polpah White Cliffs Airstrip", + "latitude_deg": "-30.846128", + "longitude_deg": "143.231077", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "White Cliffs", + "scheduled_service": "no" + }, + { + "id": "352533", + "ident": "AU-0363", + "type": "small_airport", + "name": "Salt lake Airstrip", + "latitude_deg": "-30.191125", + "longitude_deg": "144.43202", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no" + }, + { + "id": "352534", + "ident": "AU-0364", + "type": "small_airport", + "name": "Keelameara", + "latitude_deg": "-30.674327", + "longitude_deg": "144.300495", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no" + }, + { + "id": "352535", + "ident": "AU-0365", + "type": "small_airport", + "name": "Myall Airstrip", + "latitude_deg": "-30.708378", + "longitude_deg": "144.038143", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no" + }, + { + "id": "352536", + "ident": "AU-0366", + "type": "small_airport", + "name": "Conlea", + "latitude_deg": "-30.073625", + "longitude_deg": "144.569907", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no" + }, + { + "id": "352537", + "ident": "AU-0367", + "type": "small_airport", + "name": "Unknown airstrip", + "latitude_deg": "-30.135552", + "longitude_deg": "144.900709", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no" + }, + { + "id": "352581", + "ident": "AU-0368", + "type": "small_airport", + "name": "Cameron Corner bush strip", + "latitude_deg": "-28.152303", + "longitude_deg": "141.132753", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Cameron Corner", + "scheduled_service": "no" + }, + { + "id": "352582", + "ident": "AU-0369", + "type": "small_airport", + "name": "Ningaling homestead", + "latitude_deg": "-28.96129", + "longitude_deg": "144.637671", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Ningaling homestead", + "scheduled_service": "no" + }, + { + "id": "352583", + "ident": "AU-0370", + "type": "small_airport", + "name": "Wombah Homestead Airfield", + "latitude_deg": "-28.918702", + "longitude_deg": "144.766417", + "elevation_ft": "453", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Wombah Homestead", + "scheduled_service": "no" + }, + { + "id": "352584", + "ident": "AU-0371", + "type": "small_airport", + "name": "Byra Airefield", + "latitude_deg": "-28.976008", + "longitude_deg": "147.209544", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Byra", + "scheduled_service": "no" + }, + { + "id": "352585", + "ident": "AU-0372", + "type": "small_airport", + "name": "Cooplacurripa", + "latitude_deg": "-31.613134", + "longitude_deg": "151.908742", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Cooplacurripa", + "scheduled_service": "no" + }, + { + "id": "352586", + "ident": "AU-0373", + "type": "small_airport", + "name": "Wilcannia airstrip", + "latitude_deg": "-31.40575", + "longitude_deg": "143.188323", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Wilcannia", + "scheduled_service": "no" + }, + { + "id": "352587", + "ident": "AU-0374", + "type": "small_airport", + "name": "private airfield", + "latitude_deg": "-28.526604", + "longitude_deg": "114.634684", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Howatharra", + "scheduled_service": "no" + }, + { + "id": "352697", + "ident": "AU-0375", + "type": "small_airport", + "name": "Menindee airfield", + "latitude_deg": "-32.726028", + "longitude_deg": "142.108141", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Menindee", + "scheduled_service": "no" + }, + { + "id": "352699", + "ident": "AU-0376", + "type": "small_airport", + "name": "Yarramba Station Airfield", + "latitude_deg": "-31.66388", + "longitude_deg": "140.622222", + "elevation_ft": "365", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Curnamona", + "scheduled_service": "no", + "local_code": "YYRMB" + }, + { + "id": "352700", + "ident": "AU-0377", + "type": "small_airport", + "name": "Wiawera Station Airstrip", + "latitude_deg": "-32.292044", + "longitude_deg": "140.407221", + "elevation_ft": "885", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Wiawera", + "scheduled_service": "no", + "local_code": "YWWRA" + }, + { + "id": "352702", + "ident": "AU-0378", + "type": "small_airport", + "name": "Whurlie Station Airport", + "latitude_deg": "-33.023682", + "longitude_deg": "142.347431", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Pooncarie", + "scheduled_service": "no" + }, + { + "id": "352703", + "ident": "AU-0379", + "type": "small_airport", + "name": "Menindee Airport", + "latitude_deg": "-32.944155", + "longitude_deg": "142.392727", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Menindee", + "scheduled_service": "no" + }, + { + "id": "352704", + "ident": "AU-0380", + "type": "small_airport", + "name": "Menindee Number 2 Airport", + "latitude_deg": "-32.847423", + "longitude_deg": "142.476044", + "elevation_ft": "214", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Menindee", + "scheduled_service": "no" + }, + { + "id": "352705", + "ident": "AU-0381", + "type": "small_airport", + "name": "Bindara Airstrip", + "latitude_deg": "-32.736805", + "longitude_deg": "142.355986", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Menindee", + "scheduled_service": "no" + }, + { + "id": "352706", + "ident": "AU-0382", + "type": "small_airport", + "name": "four mile lake airstrip", + "latitude_deg": "-32.087571", + "longitude_deg": "142.894764", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Menindee", + "scheduled_service": "no" + }, + { + "id": "352707", + "ident": "AU-0383", + "type": "small_airport", + "name": "Urana Aerodrome", + "latitude_deg": "-35.341242", + "longitude_deg": "146.285218", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Urana", + "scheduled_service": "no" + }, + { + "id": "352708", + "ident": "AU-0384", + "type": "small_airport", + "name": "Pine Valley Airstrip", + "latitude_deg": "-33.316328", + "longitude_deg": "140.194881", + "elevation_ft": "300", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Pine Valley Station", + "scheduled_service": "no", + "local_code": "YPNVL" + }, + { + "id": "352709", + "ident": "AU-0385", + "type": "small_airport", + "name": "Bono Station Airport", + "latitude_deg": "-32.565419", + "longitude_deg": "142.402085", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Menindee", + "scheduled_service": "no" + }, + { + "id": "352809", + "ident": "AU-0386", + "type": "small_airport", + "name": "Euroa Wingnells Airfield", + "latitude_deg": "-36.773231", + "longitude_deg": "145.585541", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Euroa", + "scheduled_service": "no" + }, + { + "id": "352711", + "ident": "AU-0387", + "type": "small_airport", + "name": "Murtee Station", + "latitude_deg": "-31.576524", + "longitude_deg": "143.496093", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Wilcannia", + "scheduled_service": "no" + }, + { + "id": "352716", + "ident": "AU-0388", + "type": "small_airport", + "name": "Barraroo Airstrip", + "latitude_deg": "-32.117535", + "longitude_deg": "142.982026", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Barraroo", + "scheduled_service": "no" + }, + { + "id": "352718", + "ident": "AU-0389", + "type": "small_airport", + "name": "Menindee Number 3 Airport", + "latitude_deg": "-32.624012", + "longitude_deg": "142.44113", + "elevation_ft": "200", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Menindee", + "scheduled_service": "no" + }, + { + "id": "352719", + "ident": "AU-0390", + "type": "small_airport", + "name": "Menindee airfield no 4", + "latitude_deg": "-32.467468", + "longitude_deg": "142.908508", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Menindee", + "scheduled_service": "no" + }, + { + "id": "352721", + "ident": "AU-0391", + "type": "small_airport", + "name": "St James Private airfield", + "latitude_deg": "-36.295969", + "longitude_deg": "145.932827", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "St James", + "scheduled_service": "no" + }, + { + "id": "352722", + "ident": "AU-0392", + "type": "small_airport", + "name": "Smeaton airfield private", + "latitude_deg": "-37.258037", + "longitude_deg": "143.968121", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Smeaton", + "scheduled_service": "no" + }, + { + "id": "352728", + "ident": "AU-0393", + "type": "small_airport", + "name": "Murray-Sunset Airport", + "latitude_deg": "-34.766728", + "longitude_deg": "141.941351", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Murray-Sunset", + "scheduled_service": "no" + }, + { + "id": "352729", + "ident": "AU-0394", + "type": "small_airport", + "name": "Trentham Cliffs airstrip", + "latitude_deg": "-34.234051", + "longitude_deg": "142.267845", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Trentham Cliffs", + "scheduled_service": "no" + }, + { + "id": "352731", + "ident": "AU-0395", + "type": "small_airport", + "name": "Oura private airstrip", + "latitude_deg": "-35.064658", + "longitude_deg": "147.688231", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Oura", + "scheduled_service": "no" + }, + { + "id": "352748", + "ident": "AU-0396", + "type": "small_airport", + "name": "Newry Airfield", + "latitude_deg": "-37.857752", + "longitude_deg": "146.917496", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Newry", + "scheduled_service": "no" + }, + { + "id": "352749", + "ident": "AU-0397", + "type": "small_airport", + "name": "Clydebank private Airstrip", + "latitude_deg": "-38.037818", + "longitude_deg": "147.1902", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Clydebank", + "scheduled_service": "no" + }, + { + "id": "352751", + "ident": "AU-0398", + "type": "small_airport", + "name": "Kudardup Airfield", + "latitude_deg": "-34.270484", + "longitude_deg": "115.193991", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Kudardup", + "scheduled_service": "no" + }, + { + "id": "352752", + "ident": "AU-0399", + "type": "small_airport", + "name": "Ellendale Chalets Accomodation airfield", + "latitude_deg": "-33.595227", + "longitude_deg": "115.571649", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Capel", + "scheduled_service": "no" + }, + { + "id": "352788", + "ident": "AU-0400", + "type": "small_airport", + "name": "Wyloo Station airfield", + "latitude_deg": "-22.700346", + "longitude_deg": "116.237942", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Nanutarra", + "scheduled_service": "no" + }, + { + "id": "352789", + "ident": "AU-0401", + "type": "small_airport", + "name": "West Lyons River Airstrip", + "latitude_deg": "-24.032816", + "longitude_deg": "115.695533", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "West Lyons River", + "scheduled_service": "no" + }, + { + "id": "352790", + "ident": "AU-0402", + "type": "small_airport", + "name": "Lyndon homestead airfield", + "latitude_deg": "-23.150977", + "longitude_deg": "114.549281", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Lyndon homestead", + "scheduled_service": "no" + }, + { + "id": "352791", + "ident": "AU-0403", + "type": "small_airport", + "name": "Byro Station arstrip", + "latitude_deg": "-26.070668", + "longitude_deg": "116.152606", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Byro Station", + "scheduled_service": "no" + }, + { + "id": "352810", + "ident": "AU-0404", + "type": "small_airport", + "name": "Wahring Field", + "latitude_deg": "-36.68112", + "longitude_deg": "145.242379", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Wahring", + "scheduled_service": "no" + }, + { + "id": "352811", + "ident": "AU-0405", + "type": "small_airport", + "name": "Raywood Airfield", + "latitude_deg": "-36.537181", + "longitude_deg": "144.241183", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Raywood", + "scheduled_service": "no" + }, + { + "id": "352813", + "ident": "AU-0406", + "type": "small_airport", + "name": "Victoria Valley Airbase", + "latitude_deg": "-37.183139", + "longitude_deg": "142.340821", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Victoria Valley Grampians", + "scheduled_service": "no" + }, + { + "id": "352820", + "ident": "AU-0407", + "type": "small_airport", + "name": "Gingkin Airfield", + "latitude_deg": "-33.894607", + "longitude_deg": "149.93848", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Gingkin", + "scheduled_service": "no" + }, + { + "id": "352822", + "ident": "AU-0408", + "type": "small_airport", + "name": "Tibooburra Homestead airstrip", + "latitude_deg": "-29.487704", + "longitude_deg": "142.070284", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Tibooburra", + "scheduled_service": "no" + }, + { + "id": "352823", + "ident": "AU-0409", + "type": "small_airport", + "name": "Ballycastle homestead airstrip", + "latitude_deg": "-30.186026", + "longitude_deg": "145.058815", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Ballycastle homestead", + "scheduled_service": "no" + }, + { + "id": "352824", + "ident": "AU-0410", + "type": "small_airport", + "name": "Euabalong private airstrip", + "latitude_deg": "-33.073669", + "longitude_deg": "146.576225", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Euabalong", + "scheduled_service": "no" + }, + { + "id": "352825", + "ident": "AU-0411", + "type": "small_airport", + "name": "Bowral private airstrip", + "latitude_deg": "-34.511353", + "longitude_deg": "150.423915", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Bowral", + "scheduled_service": "no" + }, + { + "id": "352826", + "ident": "AU-0412", + "type": "small_airport", + "name": "St Mary's / Kennetts Airfield", + "latitude_deg": "-33.831866", + "longitude_deg": "150.745829", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Luddenham", + "scheduled_service": "no" + }, + { + "id": "352827", + "ident": "AU-0413", + "type": "small_airport", + "name": "Fraser Island (Gippsland reserve) airstrip", + "latitude_deg": "-37.886065", + "longitude_deg": "147.93401", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Fraser Island", + "scheduled_service": "no" + }, + { + "id": "352828", + "ident": "AU-0414", + "type": "small_airport", + "name": "Kelly head airstrip", + "latitude_deg": "-37.896405", + "longitude_deg": "147.935501", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Kelly Head", + "scheduled_service": "no" + }, + { + "id": "352829", + "ident": "AU-0415", + "type": "small_airport", + "name": "lake Modewarre Private airstrip", + "latitude_deg": "-38.260015", + "longitude_deg": "144.092763", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Lake modeWarre", + "scheduled_service": "no" + }, + { + "id": "352830", + "ident": "AU-0416", + "type": "small_airport", + "name": "lake Modewarre Private airstrip no.2", + "latitude_deg": "-38.260736", + "longitude_deg": "144.099605", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Lake ModeWarre", + "scheduled_service": "no" + }, + { + "id": "352831", + "ident": "AU-0417", + "type": "small_airport", + "name": "Bellbrae private airstrip", + "latitude_deg": "-38.32697", + "longitude_deg": "144.236209", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "BellBrae", + "scheduled_service": "no" + }, + { + "id": "352832", + "ident": "AU-0418", + "type": "small_airport", + "name": "Derrinallum (Poligolet Station) airstrip", + "latitude_deg": "-37.982298", + "longitude_deg": "143.147195", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Derrinallum", + "scheduled_service": "no" + }, + { + "id": "352833", + "ident": "AU-0419", + "type": "small_airport", + "name": "Normanton homestead airstrip", + "latitude_deg": "-17.625184", + "longitude_deg": "141.185782", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Normanton", + "scheduled_service": "no" + }, + { + "id": "352838", + "ident": "AU-0420", + "type": "small_airport", + "name": "2480 Mandalay-Purnanga-Glendara Rd airstrip", + "latitude_deg": "-30.584736", + "longitude_deg": "143.347616", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Wilcannia", + "scheduled_service": "no" + }, + { + "id": "352840", + "ident": "AU-0421", + "type": "small_airport", + "name": "Fenton Airfield", + "latitude_deg": "-13.620818", + "longitude_deg": "131.33853", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no" + }, + { + "id": "352841", + "ident": "AU-0422", + "type": "small_airport", + "name": "Adelaide River Airfield", + "latitude_deg": "-13.232564", + "longitude_deg": "131.137481", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Adelaide River", + "scheduled_service": "no" + }, + { + "id": "352843", + "ident": "AU-0423", + "type": "small_airport", + "name": "Coomalie Creek Airfield", + "latitude_deg": "-13.010375", + "longitude_deg": "131.13014", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Coomalie Creek", + "scheduled_service": "no" + }, + { + "id": "352844", + "ident": "AU-0424", + "type": "small_airport", + "name": "Lachlan E Purkis Memoral Airfield", + "latitude_deg": "-12.688895", + "longitude_deg": "131.089253", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Livingstone", + "scheduled_service": "no", + "keywords": "Hughes Airstrip, Malcolm M Memorial Airfield" + }, + { + "id": "352845", + "ident": "AU-0425", + "type": "heliport", + "name": "Murrurundi Hospital Heliport", + "latitude_deg": "-31.770477", + "longitude_deg": "150.834062", + "elevation_ft": "1600", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Murrurundi", + "scheduled_service": "no", + "local_code": "OZHIB" + }, + { + "id": "352846", + "ident": "AU-0426", + "type": "heliport", + "name": "Childers Showground Helicopter Landing Site", + "latitude_deg": "-25.232", + "longitude_deg": "152.2752", + "elevation_ft": "300", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Childers", + "scheduled_service": "no", + "local_code": "OZHID" + }, + { + "id": "353320", + "ident": "AU-0427", + "type": "small_airport", + "name": "The junction race club airport", + "latitude_deg": "-25.058134", + "longitude_deg": "115.120438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "The junction", + "scheduled_service": "no" + }, + { + "id": "38612", + "ident": "AU-0428", + "type": "closed", + "name": "Tuncurry Airport", + "latitude_deg": "-32.150002", + "longitude_deg": "152.483002", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "keywords": "YTNC" + }, + { + "id": "38271", + "ident": "AU-0429", + "type": "closed", + "name": "Breeza Airport", + "latitude_deg": "-31.3167", + "longitude_deg": "150.5167", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "keywords": "YBZA" + }, + { + "id": "38373", + "ident": "AU-0430", + "type": "closed", + "name": "Greenthorpe Airport", + "latitude_deg": "-33.983299", + "longitude_deg": "148.417007", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "keywords": "YGTP" + }, + { + "id": "353385", + "ident": "AU-0431", + "type": "small_airport", + "name": "Rutland Plains Station Airport", + "latitude_deg": "-15.64047", + "longitude_deg": "141.82741", + "elevation_ft": "56", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Yagoonya", + "scheduled_service": "no" + }, + { + "id": "353625", + "ident": "AU-0432", + "type": "small_airport", + "name": "Nyonger Farm Airstrip", + "latitude_deg": "-32.345045", + "longitude_deg": "119.187099", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Nyonger Farm", + "scheduled_service": "no" + }, + { + "id": "353626", + "ident": "AU-0433", + "type": "small_airport", + "name": "Loxton private strip", + "latitude_deg": "-34.467111", + "longitude_deg": "140.505143", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Loxton", + "scheduled_service": "no" + }, + { + "id": "353627", + "ident": "AU-0434", + "type": "small_airport", + "name": "Lochiel Airfield", + "latitude_deg": "-33.886604", + "longitude_deg": "138.103747", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Lochiel Airfield", + "scheduled_service": "no" + }, + { + "id": "353628", + "ident": "AU-0435", + "type": "small_airport", + "name": "Cherry Gardens Airstrip", + "latitude_deg": "-35.091503", + "longitude_deg": "138.661172", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Clarendon", + "scheduled_service": "no" + }, + { + "id": "353629", + "ident": "AU-0436", + "type": "small_airport", + "name": "Aldinga private airstrip", + "latitude_deg": "-35.29393", + "longitude_deg": "138.477345", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Aldinga", + "scheduled_service": "no" + }, + { + "id": "353634", + "ident": "AU-0437", + "type": "small_airport", + "name": "Three Rivers Airstrip", + "latitude_deg": "-25.126975", + "longitude_deg": "119.151205", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Three Rivers", + "scheduled_service": "no" + }, + { + "id": "353635", + "ident": "AU-0438", + "type": "small_airport", + "name": "Prairie Downs Airstrip", + "latitude_deg": "-23.548547", + "longitude_deg": "119.157314", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Prairie Downs", + "scheduled_service": "no" + }, + { + "id": "353637", + "ident": "AU-0439", + "type": "small_airport", + "name": "Capricorn Village Airstrip", + "latitude_deg": "-23.455491", + "longitude_deg": "119.802557", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Newman (Capricorn Village)", + "scheduled_service": "no" + }, + { + "id": "354064", + "ident": "AU-0440", + "type": "heliport", + "name": "Narrabri Mine Heliport.", + "latitude_deg": "-30.521049", + "longitude_deg": "149.900336", + "elevation_ft": "780", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Narrabri", + "scheduled_service": "no", + "local_code": "OZHNU" + }, + { + "id": "354067", + "ident": "AU-0441", + "type": "heliport", + "name": "Maules Creek Mine Heliport", + "latitude_deg": "-30.562945", + "longitude_deg": "150.120417", + "elevation_ft": "960", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Boggabri", + "scheduled_service": "no", + "local_code": "OZHMC", + "keywords": "Whitehaven" + }, + { + "id": "354071", + "ident": "AU-0442", + "type": "heliport", + "name": "New Maitland Hospital Helipad", + "latitude_deg": "-32.759612", + "longitude_deg": "151.604328", + "elevation_ft": "160", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Maitland", + "scheduled_service": "no", + "local_code": "OZXMT" + }, + { + "id": "354080", + "ident": "AU-0443", + "type": "heliport", + "name": "Clarence Wilderness Lodge HLS", + "latitude_deg": "-28.690818", + "longitude_deg": "152.375479", + "elevation_ft": "300", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Via Tabulum", + "scheduled_service": "no", + "local_code": "OZHBM" + }, + { + "id": "354081", + "ident": "AU-0444", + "type": "heliport", + "name": "Dingo Hospital Helicopter Landing Site", + "latitude_deg": "-23.655099", + "longitude_deg": "149.334326", + "elevation_ft": "450", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Dingo", + "scheduled_service": "no", + "local_code": "OZHBP" + }, + { + "id": "354082", + "ident": "AU-0445", + "type": "heliport", + "name": "Evans Head RAAF Bombing Range HLS", + "latitude_deg": "-29.196677", + "longitude_deg": "153.383796", + "elevation_ft": "40", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Evans Head", + "scheduled_service": "no", + "local_code": "OZHBR" + }, + { + "id": "354083", + "ident": "AU-0446", + "type": "heliport", + "name": "Gibraltar House HLS", + "latitude_deg": "-29.519434", + "longitude_deg": "152.311133", + "elevation_ft": "3200", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Gibraltar", + "scheduled_service": "no", + "local_code": "OZHBU" + }, + { + "id": "354084", + "ident": "AU-0447", + "type": "heliport", + "name": "Gerroa Sand Mine HLS", + "latitude_deg": "-34.776253", + "longitude_deg": "150.788512", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Gerroa", + "scheduled_service": "no", + "local_code": "OZHCB" + }, + { + "id": "354085", + "ident": "AU-0448", + "type": "heliport", + "name": "Guthega Helicopter Landing Site", + "latitude_deg": "-36.377333", + "longitude_deg": "148.375833", + "elevation_ft": "5350", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Guthega", + "scheduled_service": "no", + "local_code": "OZHCC" + }, + { + "id": "354086", + "ident": "AU-0449", + "type": "heliport", + "name": "Garrawarra Farm Carpark HLS", + "latitude_deg": "-34.180333", + "longitude_deg": "151.038333", + "elevation_ft": "720", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Lillydale", + "scheduled_service": "no", + "local_code": "OZHCD" + }, + { + "id": "354334", + "ident": "AU-0450", + "type": "small_airport", + "name": "Passage Island Airport", + "latitude_deg": "-40.499949", + "longitude_deg": "148.338314", + "elevation_ft": "121", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Passage Island", + "scheduled_service": "no", + "gps_code": "YPSI" + }, + { + "id": "354342", + "ident": "AU-0451", + "type": "small_airport", + "name": "Badger Island Airport", + "latitude_deg": "-40.318729", + "longitude_deg": "147.88957", + "elevation_ft": "41", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Badger Island", + "scheduled_service": "no", + "gps_code": "YBDI" + }, + { + "id": "354344", + "ident": "AU-0452", + "type": "small_airport", + "name": "Mount Chappell Island Airfield", + "latitude_deg": "-40.267743", + "longitude_deg": "147.929143", + "elevation_ft": "110", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Mount Chappell Island", + "scheduled_service": "no", + "local_code": "CB05" + }, + { + "id": "354345", + "ident": "AU-0453", + "type": "small_airport", + "name": "Inner Sister Island Aerodrome", + "latitude_deg": "-39.695184", + "longitude_deg": "147.914182", + "elevation_ft": "53", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Inner Sister Island", + "scheduled_service": "no", + "local_code": "FI01" + }, + { + "id": "354386", + "ident": "AU-0454", + "type": "closed", + "name": "Laguna Quays 3 Airport", + "latitude_deg": "-20.58892", + "longitude_deg": "148.654847", + "elevation_ft": "39", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Laguna Quays", + "scheduled_service": "no" + }, + { + "id": "354475", + "ident": "AU-0455", + "type": "small_airport", + "name": "Laglan airstrip", + "latitude_deg": "-22.044223", + "longitude_deg": "146.282462", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Laglan", + "scheduled_service": "no" + }, + { + "id": "354527", + "ident": "AU-0456", + "type": "small_airport", + "name": "Gruyere Airport", + "latitude_deg": "-28.034548", + "longitude_deg": "123.81506", + "elevation_ft": "1542", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Gruyere Mine village", + "scheduled_service": "yes", + "gps_code": "YGRM", + "iata_code": "GYZ" + }, + { + "id": "354528", + "ident": "AU-0457", + "type": "small_airport", + "name": "Karara Airport", + "latitude_deg": "-29.217223", + "longitude_deg": "116.687154", + "elevation_ft": "1011", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Karara", + "scheduled_service": "yes", + "gps_code": "YKAR", + "iata_code": "KQR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Karara_Airport" + }, + { + "id": "354553", + "ident": "AU-0458", + "type": "small_airport", + "name": "Tilmouth Airstrip", + "latitude_deg": "-22.812222", + "longitude_deg": "132.606667", + "elevation_ft": "1880", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Anmatjere", + "scheduled_service": "no", + "local_code": "YTLMT" + }, + { + "id": "354805", + "ident": "AU-0459", + "type": "small_airport", + "name": "Newry (RFDS) Airstrip", + "latitude_deg": "-16.059021", + "longitude_deg": "129.205946", + "elevation_ft": "332", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Baines", + "scheduled_service": "no" + }, + { + "id": "354808", + "ident": "AU-0460", + "type": "small_airport", + "name": "Rosewood Airport", + "latitude_deg": "-16.450695", + "longitude_deg": "129.007335", + "elevation_ft": "460", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Baines", + "scheduled_service": "no" + }, + { + "id": "354810", + "ident": "AU-0461", + "type": "small_airport", + "name": "Rundalua Station Airstrip", + "latitude_deg": "-27.060146", + "longitude_deg": "146.715219", + "elevation_ft": "110", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Boatman", + "scheduled_service": "no" + }, + { + "id": "354833", + "ident": "AU-0462", + "type": "heliport", + "name": "Batlow Showground Helicopter Landing Site", + "latitude_deg": "-35.520002", + "longitude_deg": "148.153639", + "elevation_ft": "2500", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Batlow", + "scheduled_service": "no", + "local_code": "OZHKN" + }, + { + "id": "355085", + "ident": "AU-0463", + "type": "small_airport", + "name": "Tirlta Station Airstrip", + "latitude_deg": "-31.251643", + "longitude_deg": "142.094821", + "elevation_ft": "485", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Mutawintji", + "scheduled_service": "no" + }, + { + "id": "355086", + "ident": "AU-0464", + "type": "small_airport", + "name": "Mutawintji Historic Site airstrip", + "latitude_deg": "-31.244912", + "longitude_deg": "142.282516", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Mutawintji Historic Site", + "scheduled_service": "no" + }, + { + "id": "355098", + "ident": "AU-0465", + "type": "small_airport", + "name": "Grassmere Airfield", + "latitude_deg": "-31.419155", + "longitude_deg": "142.625027", + "elevation_ft": "583", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Mutawintji", + "scheduled_service": "no" + }, + { + "id": "355335", + "ident": "AU-0466", + "type": "heliport", + "name": "Yamba Oval Helicopter Landing Site", + "latitude_deg": "-29.438747", + "longitude_deg": "153.358337", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Yamba", + "scheduled_service": "no", + "local_code": "OZHJQ" + }, + { + "id": "355336", + "ident": "AU-0467", + "type": "heliport", + "name": "Emu Creek Extreme Retreat HLS", + "latitude_deg": "-28.826667", + "longitude_deg": "152.481", + "elevation_ft": "17", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Pretty Gully - via Tabulum", + "scheduled_service": "no", + "local_code": "OZHIS" + }, + { + "id": "355337", + "ident": "AU-0468", + "type": "heliport", + "name": "Iluka Sports Oval HLS", + "latitude_deg": "-29.406833", + "longitude_deg": "153.352833", + "elevation_ft": "26", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Iluka", + "scheduled_service": "no", + "local_code": "OZHIU" + }, + { + "id": "355341", + "ident": "AU-0469", + "type": "heliport", + "name": "Kin Kin Oval Helicopter Landing Site", + "latitude_deg": "-26.26264", + "longitude_deg": "152.876215", + "elevation_ft": "195", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Kin Kin", + "scheduled_service": "no", + "local_code": "OZHIW" + }, + { + "id": "355344", + "ident": "AU-0470", + "type": "heliport", + "name": "Mallanganee Oval Helicopter Landing Site", + "latitude_deg": "-28.90769", + "longitude_deg": "152.720668", + "elevation_ft": "600", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Mallanganee", + "scheduled_service": "no", + "local_code": "OZHIX" + }, + { + "id": "355350", + "ident": "AU-0471", + "type": "heliport", + "name": "Nimbin Soccer Grounds HLS", + "latitude_deg": "-28.597465", + "longitude_deg": "153.225675", + "elevation_ft": "207", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Nimbin", + "scheduled_service": "no", + "local_code": "OZHIY" + }, + { + "id": "355360", + "ident": "AU-0472", + "type": "heliport", + "name": "Halfway House HLS", + "latitude_deg": "-32.907167", + "longitude_deg": "150.7475", + "elevation_ft": "958", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "local_code": "OZHCE" + }, + { + "id": "355362", + "ident": "AU-0473", + "type": "heliport", + "name": "Jimna Cricket Oval HLS", + "latitude_deg": "-26.662833", + "longitude_deg": "152.462167", + "elevation_ft": "1685", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Jimna", + "scheduled_service": "no", + "local_code": "OZHCI" + }, + { + "id": "355363", + "ident": "AU-0474", + "type": "heliport", + "name": "Keppel Sands Helicopter Landing Site", + "latitude_deg": "-23.323518", + "longitude_deg": "150.790111", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Keppel Sands", + "scheduled_service": "no", + "local_code": "OZHCJ" + }, + { + "id": "355368", + "ident": "AU-0475", + "type": "heliport", + "name": "Kingfisher Resort Heliport", + "latitude_deg": "-25.390385", + "longitude_deg": "153.028994", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Fraser Island", + "scheduled_service": "no", + "local_code": "OZHCK" + }, + { + "id": "355370", + "ident": "AU-0476", + "type": "heliport", + "name": "Kooringal Emergency Centre HLS", + "latitude_deg": "-27.34917", + "longitude_deg": "153.422619", + "elevation_ft": "39", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Kooringal", + "scheduled_service": "no", + "local_code": "OZHCM" + }, + { + "id": "355371", + "ident": "AU-0477", + "type": "heliport", + "name": "Karragarra Island Helicopter Landing Site", + "latitude_deg": "-27.63619", + "longitude_deg": "153.369795", + "elevation_ft": "16", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Karragarra Island", + "scheduled_service": "no", + "local_code": "OZHCL" + }, + { + "id": "355440", + "ident": "AU-0478", + "type": "closed", + "name": "Former Shark Bay Airport", + "latitude_deg": "-25.88408", + "longitude_deg": "113.56393", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Denham", + "scheduled_service": "no", + "keywords": "DNM, YDHM" + }, + { + "id": "355594", + "ident": "AU-0479", + "type": "small_airport", + "name": "Cameron Corner Airstrip", + "latitude_deg": "-29.003252", + "longitude_deg": "140.994265", + "elevation_ft": "366", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Bollards Lagoon", + "scheduled_service": "no" + }, + { + "id": "356029", + "ident": "AU-0480", + "type": "small_airport", + "name": "Lake Wells Station Airport", + "latitude_deg": "-27.28818", + "longitude_deg": "123.00507", + "elevation_ft": "1506", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Lake Wells", + "scheduled_service": "no" + }, + { + "id": "356175", + "ident": "AU-0481", + "type": "closed", + "name": "Former Ayers Rock Connellan Airport", + "latitude_deg": "-25.33723", + "longitude_deg": "131.05127", + "elevation_ft": "1700", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Mutitjulu", + "scheduled_service": "no" + }, + { + "id": "356176", + "ident": "AU-0482", + "type": "small_airport", + "name": "Mount Willoughby South Airport", + "latitude_deg": "-27.9768", + "longitude_deg": "134.14569", + "elevation_ft": "914", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Coober Pedy", + "scheduled_service": "no" + }, + { + "id": "356177", + "ident": "AU-0483", + "type": "small_airport", + "name": "Painted Rock Road Airport", + "latitude_deg": "-27.95417", + "longitude_deg": "134.15453", + "elevation_ft": "899", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Coober Pedy", + "scheduled_service": "no" + }, + { + "id": "356180", + "ident": "AU-0484", + "type": "closed", + "name": "Tolarno Station Airport", + "latitude_deg": "-32.78078", + "longitude_deg": "142.42492", + "elevation_ft": "200", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Menindee", + "scheduled_service": "no" + }, + { + "id": "356182", + "ident": "AU-0485", + "type": "small_airport", + "name": "Tolarno Station South Airport", + "latitude_deg": "-32.830738", + "longitude_deg": "142.393456", + "elevation_ft": "194", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Menindee", + "scheduled_service": "no" + }, + { + "id": "356183", + "ident": "AU-0486", + "type": "closed", + "name": "Sunset Strip Airport", + "latitude_deg": "-32.27241", + "longitude_deg": "142.31321", + "elevation_ft": "223", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Sunset Strip", + "scheduled_service": "no" + }, + { + "id": "356184", + "ident": "AU-0487", + "type": "small_airport", + "name": "Tangorin Airport", + "latitude_deg": "-21.05649", + "longitude_deg": "144.20102", + "elevation_ft": "1014", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Tangorin", + "scheduled_service": "no" + }, + { + "id": "356436", + "ident": "AU-0488", + "type": "small_airport", + "name": "Tongo Woolshed Airport", + "latitude_deg": "-30.39828", + "longitude_deg": "143.7178", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Wilcannia", + "scheduled_service": "no" + }, + { + "id": "356437", + "ident": "AU-0489", + "type": "small_airport", + "name": "Momba Airport", + "latitude_deg": "-30.97887", + "longitude_deg": "143.50108", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Wilcannia", + "scheduled_service": "no" + }, + { + "id": "356438", + "ident": "AU-0490", + "type": "small_airport", + "name": "Packsaddle Airport", + "latitude_deg": "-30.29424", + "longitude_deg": "142.13758", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Packsaddle", + "scheduled_service": "no" + }, + { + "id": "356439", + "ident": "AU-0491", + "type": "small_airport", + "name": "Pimpara Lake Station Airport", + "latitude_deg": "-30.42618", + "longitude_deg": "141.72401", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Packsaddle", + "scheduled_service": "no" + }, + { + "id": "356440", + "ident": "AU-0492", + "type": "small_airport", + "name": "Nundooka Station Airport", + "latitude_deg": "-30.88683", + "longitude_deg": "141.70055", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Broughams Gate", + "scheduled_service": "no" + }, + { + "id": "356441", + "ident": "AU-0493", + "type": "small_airport", + "name": "Broughams Gate Airport", + "latitude_deg": "-30.91832", + "longitude_deg": "141.26877", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Broughams Gate", + "scheduled_service": "no" + }, + { + "id": "429722", + "ident": "AU-0494", + "type": "small_airport", + "name": "Rough Gap Airport", + "latitude_deg": "-30.3872", + "longitude_deg": "122.52162", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Cundeelee", + "scheduled_service": "no" + }, + { + "id": "429723", + "ident": "AU-0495", + "type": "small_airport", + "name": "Bulong Airport", + "latitude_deg": "-30.75525", + "longitude_deg": "121.75232", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Bulong", + "scheduled_service": "no" + }, + { + "id": "429765", + "ident": "AU-0496", + "type": "closed", + "name": "Five Mile Tank Airfield", + "latitude_deg": "-25.641923", + "longitude_deg": "140.791013", + "elevation_ft": "230", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no" + }, + { + "id": "429772", + "ident": "AU-0497", + "type": "small_airport", + "name": "Albeni Station Airport", + "latitude_deg": "-24.575544", + "longitude_deg": "147.080176", + "elevation_ft": "1276", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Mantuan Downs", + "scheduled_service": "no" + }, + { + "id": "429781", + "ident": "AU-0498", + "type": "small_airport", + "name": "Mark Posa Memorial Airfield", + "latitude_deg": "-11.55145", + "longitude_deg": "130.58485", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Milikapiti", + "scheduled_service": "no" + }, + { + "id": "429783", + "ident": "AU-0499", + "type": "small_airport", + "name": "Sandford Airstrip", + "latitude_deg": "-12.6075", + "longitude_deg": "131.05378", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Weddell", + "scheduled_service": "no" + }, + { + "id": "429784", + "ident": "AU-0500", + "type": "closed", + "name": "Pell Airstrip", + "latitude_deg": "-13.14237", + "longitude_deg": "131.10711", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Adelaide River", + "scheduled_service": "no" + }, + { + "id": "429785", + "ident": "AU-0501", + "type": "closed", + "name": "Livingstone Airstrip", + "latitude_deg": "-12.71691", + "longitude_deg": "131.08728", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Livingstone", + "scheduled_service": "no" + }, + { + "id": "429786", + "ident": "AU-0502", + "type": "closed", + "name": "Strauss Airstrip", + "latitude_deg": "-12.65494", + "longitude_deg": "131.07705", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Noonamah", + "scheduled_service": "no" + }, + { + "id": "429788", + "ident": "AU-0503", + "type": "small_airport", + "name": "Elizabeth Downs Airport", + "latitude_deg": "-13.7439", + "longitude_deg": "130.50485", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Tipperary", + "scheduled_service": "no", + "gps_code": "YELZ" + }, + { + "id": "429826", + "ident": "AU-0504", + "type": "small_airport", + "name": "Moolart Well Gold Mine Airport", + "latitude_deg": "-27.60237", + "longitude_deg": "122.33567", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Bandya", + "scheduled_service": "no" + }, + { + "id": "429827", + "ident": "AU-0505", + "type": "small_airport", + "name": "Second Fortune Gold Mine Airport", + "latitude_deg": "-29.37316", + "longitude_deg": "122.44932", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Kookynie", + "scheduled_service": "no" + }, + { + "id": "429882", + "ident": "AU-0506", + "type": "heliport", + "name": "Macquarie University Hospital HLS", + "latitude_deg": "-33.766167", + "longitude_deg": "151.116", + "elevation_ft": "174", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Macquarie Park", + "scheduled_service": "no", + "gps_code": "YXUH" + }, + { + "id": "30622", + "ident": "AU-AGW", + "type": "small_airport", + "name": "Agnew Airport", + "latitude_deg": "-12.1456", + "longitude_deg": "142.149369", + "elevation_ft": "160", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Agnew", + "scheduled_service": "no", + "gps_code": "YAGN", + "iata_code": "AGW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Agnew_Airport" + }, + { + "id": "30666", + "ident": "AU-AYD", + "type": "small_airport", + "name": "Alroy Downs Airport", + "latitude_deg": "-19.2908", + "longitude_deg": "136.078995", + "elevation_ft": "711", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Alroy Downs", + "scheduled_service": "no", + "gps_code": "YALD", + "iata_code": "AYD" + }, + { + "id": "30808", + "ident": "AU-BYX", + "type": "small_airport", + "name": "Baniyala Airport", + "latitude_deg": "-13.1981", + "longitude_deg": "136.227005", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Baniyala", + "scheduled_service": "no", + "gps_code": "YBNI", + "iata_code": "BYX" + }, + { + "id": "30841", + "ident": "AU-COB", + "type": "small_airport", + "name": "Coolibah Airport", + "latitude_deg": "-15.548299789428711", + "longitude_deg": "130.96200561523438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Coolibah", + "scheduled_service": "no", + "iata_code": "COB" + }, + { + "id": "30851", + "ident": "AU-CRJ", + "type": "small_airport", + "name": "Coorabie Airport", + "latitude_deg": "-31.894399642944336", + "longitude_deg": "132.29600524902344", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Coorabie", + "scheduled_service": "no", + "iata_code": "CRJ" + }, + { + "id": "30853", + "ident": "AU-CRY", + "type": "small_airport", + "name": "Carlton Hill Airport", + "latitude_deg": "-15.501899719238281", + "longitude_deg": "128.53399658203125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Carlton Hill", + "scheduled_service": "no", + "iata_code": "CRY" + }, + { + "id": "30855", + "ident": "AU-CSD", + "type": "small_airport", + "name": "Cresswell Downs Airport", + "latitude_deg": "-17.947999954223633", + "longitude_deg": "135.91600036621094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Cresswell Downs", + "scheduled_service": "no", + "iata_code": "CSD" + }, + { + "id": "30959", + "ident": "AU-DYM", + "type": "small_airport", + "name": "Diamantina Lakes Airport", + "latitude_deg": "-23.761699676513672", + "longitude_deg": "141.14500427246094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Diamantina Lakes", + "scheduled_service": "no", + "iata_code": "DYM" + }, + { + "id": "35302", + "ident": "AU-HIS", + "type": "seaplane_base", + "name": "Hayman Island Resort Seaplane Base", + "latitude_deg": "-20.059999465942383", + "longitude_deg": "148.88099670410156", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Hayman Island", + "scheduled_service": "yes", + "iata_code": "HIS" + }, + { + "id": "31606", + "ident": "AU-HLV", + "type": "small_airport", + "name": "Helenvale Airport", + "latitude_deg": "-15.685799598693848", + "longitude_deg": "145.21499633789062", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Helenvale", + "scheduled_service": "no", + "iata_code": "HLV" + }, + { + "id": "31723", + "ident": "AU-KBD", + "type": "small_airport", + "name": "Kimberley Downs Airport", + "latitude_deg": "-17.39780044555664", + "longitude_deg": "124.3550033569336", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Kimberley Downs", + "scheduled_service": "no", + "iata_code": "KBD" + }, + { + "id": "31745", + "ident": "AU-KGR", + "type": "small_airport", + "name": "Kulgera Airport", + "latitude_deg": "-25.8428", + "longitude_deg": "133.292007", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Ghan", + "scheduled_service": "no", + "iata_code": "KGR" + }, + { + "id": "31995", + "ident": "AU-MYO", + "type": "small_airport", + "name": "Camballin Airport", + "latitude_deg": "-18.12470054626465", + "longitude_deg": "124.27200317382812", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Myroodah", + "scheduled_service": "no", + "iata_code": "MYO" + }, + { + "id": "32109", + "ident": "AU-OKB", + "type": "small_airport", + "name": "Orchid Beach Airport", + "latitude_deg": "-24.959400177002", + "longitude_deg": "153.31500244141", + "elevation_ft": "71", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Orchid Beach", + "scheduled_service": "no", + "gps_code": "YORC", + "iata_code": "OKB", + "local_code": "YORC" + }, + { + "id": "32152", + "ident": "AU-PEP", + "type": "small_airport", + "name": "Peppimenarti Airport", + "latitude_deg": "-14.1442", + "longitude_deg": "130.091003", + "elevation_ft": "83", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Peppimenarti", + "scheduled_service": "no", + "iata_code": "PEP", + "local_code": "YPEP" + }, + { + "id": "32201", + "ident": "AU-RDA", + "type": "small_airport", + "name": "Rockhampton Downs Airport", + "latitude_deg": "-18.95330047607422", + "longitude_deg": "135.2010040283203", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Rockhampton Downs", + "scheduled_service": "no", + "iata_code": "RDA" + }, + { + "id": "32384", + "ident": "AU-SSK", + "type": "small_airport", + "name": "Sturt Creek Airport", + "latitude_deg": "-19.166400909423828", + "longitude_deg": "128.1739959716797", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Sturt Creek", + "scheduled_service": "no", + "iata_code": "SSK" + }, + { + "id": "32401", + "ident": "AU-SWB", + "type": "small_airport", + "name": "Shaw River Airport", + "latitude_deg": "-21.510299682617188", + "longitude_deg": "119.36199951171875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Shaw River", + "scheduled_service": "no", + "iata_code": "SWB" + }, + { + "id": "32474", + "ident": "AU-TPR", + "type": "small_airport", + "name": "Tom Price Airport", + "latitude_deg": "-22.746000289900003", + "longitude_deg": "117.869003296", + "elevation_ft": "2300", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Tom Price", + "scheduled_service": "no", + "gps_code": "YTMP", + "iata_code": "TPR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tom_Price_Airport" + }, + { + "id": "32486", + "ident": "AU-TWP", + "type": "small_airport", + "name": "Torwood Airport", + "latitude_deg": "-17.363300323486328", + "longitude_deg": "143.75", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Torwood", + "scheduled_service": "no", + "iata_code": "TWP" + }, + { + "id": "32752", + "ident": "AU-ZVG", + "type": "small_airport", + "name": "Springvale Airport", + "latitude_deg": "-17.78689956665039", + "longitude_deg": "127.66999816894531", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Springvale", + "scheduled_service": "no", + "iata_code": "ZVG" + }, + { + "id": "301735", + "ident": "AUI", + "type": "small_airport", + "name": "Aua Island Airport", + "latitude_deg": "-1.46055555556", + "longitude_deg": "143.064722222", + "elevation_ft": "4", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MRL", + "municipality": "Aua Island", + "scheduled_service": "no", + "gps_code": "AYND", + "iata_code": "AUI", + "local_code": "AUA" + }, + { + "id": "301693", + "ident": "AUJ", + "type": "small_airport", + "name": "Ambunti Airport", + "latitude_deg": "-4.21566666667", + "longitude_deg": "142.823166667", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Ambunti", + "scheduled_service": "no", + "gps_code": "AYAT", + "iata_code": "AUJ", + "local_code": "AMI" + }, + { + "id": "301668", + "ident": "AUP", + "type": "small_airport", + "name": "Agaun Airport", + "latitude_deg": "-9.930833", + "longitude_deg": "149.385667", + "elevation_ft": "3200", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "scheduled_service": "no", + "gps_code": "AYAG", + "iata_code": "AUP", + "local_code": "AUN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Agaun_Airport" + }, + { + "id": "308669", + "ident": "AUS", + "type": "closed", + "name": "Austin Robert Mueller Municipal Airport", + "latitude_deg": "30.298722", + "longitude_deg": "-97.699785", + "elevation_ft": "632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Robert_Mueller_Municipal_Airport", + "keywords": "KAUS, AUS" + }, + { + "id": "301737", + "ident": "AUV", + "type": "small_airport", + "name": "Aumo Airport", + "latitude_deg": "-5.731111111110001", + "longitude_deg": "148.445277778", + "elevation_ft": "450", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WBK", + "municipality": "Aumo", + "scheduled_service": "no", + "gps_code": "AYUM", + "iata_code": "AUV", + "local_code": "AUMO" + }, + { + "id": "335971", + "ident": "AW-0001", + "type": "closed", + "name": "Savaneta Field", + "latitude_deg": "12.452124", + "longitude_deg": "-69.953427", + "continent": "NA", + "iso_country": "AW", + "iso_region": "AW-U-A", + "municipality": "Savaneta", + "scheduled_service": "no" + }, + { + "id": "335972", + "ident": "AW-0002", + "type": "closed", + "name": "Cascabel Airfield", + "latitude_deg": "12.454544", + "longitude_deg": "-69.887499", + "continent": "NA", + "iso_country": "AW", + "iso_region": "AW-U-A", + "municipality": "San Nicolas", + "scheduled_service": "no" + }, + { + "id": "301838", + "ident": "AWE", + "type": "small_airport", + "name": "Alowe Airport", + "latitude_deg": "-0.545", + "longitude_deg": "9.444", + "elevation_ft": "600", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-3", + "municipality": "Wonga Wongué Presidential Reserve", + "scheduled_service": "no", + "gps_code": "FOGW", + "iata_code": "AWE" + }, + { + "id": "313134", + "ident": "AWR", + "type": "closed", + "name": "Awar Airport", + "latitude_deg": "-4.124", + "longitude_deg": "144.853", + "elevation_ft": "35", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Awar", + "scheduled_service": "no", + "iata_code": "AWR" + }, + { + "id": "314558", + "ident": "AXF", + "type": "medium_airport", + "name": "Alxa Left Banner Bayanhot Airport", + "latitude_deg": "38.74831", + "longitude_deg": "105.58858", + "elevation_ft": "4560", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Bayanhot", + "scheduled_service": "yes", + "gps_code": "ZBAL", + "iata_code": "AXF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alxa_Left_Banner_Bayanhot_Airport" + }, + { + "id": "352222", + "ident": "AXO", + "type": "small_airport", + "name": "Pantar Airport", + "latitude_deg": "-8.24638", + "longitude_deg": "124.21971", + "elevation_ft": "18", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NT", + "municipality": "Alor Island", + "scheduled_service": "no", + "gps_code": "WATP", + "iata_code": "AXO" + }, + { + "id": "307980", + "ident": "AYAQ", + "type": "small_airport", + "name": "Kompiam Airport", + "latitude_deg": "-5.38166666667", + "longitude_deg": "143.924722222", + "elevation_ft": "5100", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EPW", + "scheduled_service": "no", + "gps_code": "AYAQ", + "iata_code": "KPM", + "local_code": "KOM" + }, + { + "id": "310375", + "ident": "AYAU", + "type": "small_airport", + "name": "Arou Airstrip", + "latitude_deg": "-5.4951", + "longitude_deg": "142.5137", + "elevation_ft": "4830", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-HE", + "municipality": "Arou", + "scheduled_service": "no", + "gps_code": "AYAU" + }, + { + "id": "310434", + "ident": "AYBB", + "type": "small_airport", + "name": "Bak Airstrip", + "latitude_deg": "-5.2685", + "longitude_deg": "142.097", + "elevation_ft": "5440", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Bak", + "scheduled_service": "no", + "gps_code": "AYBB", + "local_code": "BAK" + }, + { + "id": "53", + "ident": "AYBK", + "type": "medium_airport", + "name": "Buka Airport", + "latitude_deg": "-5.4223198890686035", + "longitude_deg": "154.67300415039062", + "elevation_ft": "11", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NSB", + "municipality": "Buka Island", + "scheduled_service": "yes", + "gps_code": "AYBK", + "iata_code": "BUA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buka_Airport" + }, + { + "id": "311258", + "ident": "AYBR", + "type": "small_airport", + "name": "Biaru Airport", + "latitude_deg": "-7.6693", + "longitude_deg": "146.7594", + "elevation_ft": "4900", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Biaru", + "scheduled_service": "no", + "gps_code": "AYBR", + "iata_code": "BRP", + "local_code": "BRU" + }, + { + "id": "310531", + "ident": "AYBS", + "type": "small_airport", + "name": "Begesin Airstrip", + "latitude_deg": "-5.3889", + "longitude_deg": "145.4472", + "elevation_ft": "980", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Begesin", + "scheduled_service": "no", + "gps_code": "AYBS", + "local_code": "BGI", + "keywords": "BEG, Bagasin" + }, + { + "id": "310529", + "ident": "AYBT", + "type": "small_airport", + "name": "Batri Airstrip", + "latitude_deg": "-6.5522", + "longitude_deg": "143.9441", + "elevation_ft": "4510", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Batri", + "scheduled_service": "no", + "gps_code": "AYBT", + "local_code": "BTR" + }, + { + "id": "308213", + "ident": "AYBW", + "type": "small_airport", + "name": "Blackwara Airport", + "latitude_deg": "-2.618211", + "longitude_deg": "141.091971", + "elevation_ft": "58", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "scheduled_service": "no", + "gps_code": "AYBW" + }, + { + "id": "312437", + "ident": "AYBX", + "type": "small_airport", + "name": "Wowobo Airstrip", + "latitude_deg": "-7.3405", + "longitude_deg": "144.5477", + "elevation_ft": "74", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Wowobo", + "scheduled_service": "no", + "gps_code": "AYBX", + "local_code": "WWB" + }, + { + "id": "312444", + "ident": "AYBY", + "type": "small_airport", + "name": "Wuyabo Airstrip", + "latitude_deg": "-6.8378", + "longitude_deg": "145.8732", + "elevation_ft": "6400", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Wuyabo", + "scheduled_service": "no", + "gps_code": "AYBY", + "local_code": "WUO" + }, + { + "id": "54", + "ident": "AYCH", + "type": "medium_airport", + "name": "Chimbu Airport", + "latitude_deg": "-6.024290084838867", + "longitude_deg": "144.9709930419922", + "elevation_ft": "4974", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPK", + "municipality": "Kundiawa", + "scheduled_service": "yes", + "gps_code": "AYCH", + "iata_code": "CMU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chimbu_Airport" + }, + { + "id": "311114", + "ident": "AYDD", + "type": "small_airport", + "name": "Dobu Airstrip", + "latitude_deg": "-6.6305", + "longitude_deg": "144.6383", + "elevation_ft": "3115", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPK", + "municipality": "Dobu", + "scheduled_service": "no", + "gps_code": "AYDD", + "local_code": "DOBU" + }, + { + "id": "313962", + "ident": "AYDK", + "type": "small_airport", + "name": "Munduku Airport", + "latitude_deg": "-4.6204", + "longitude_deg": "143.4516", + "elevation_ft": "100", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Munduku", + "scheduled_service": "no", + "gps_code": "AYDK", + "iata_code": "MDM", + "local_code": "MUN" + }, + { + "id": "311717", + "ident": "AYDL", + "type": "small_airport", + "name": "Kondobol Airport", + "latitude_deg": "-8.5336", + "longitude_deg": "142.5049", + "elevation_ft": "132", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Kondobol", + "scheduled_service": "no", + "gps_code": "AYDL", + "iata_code": "KPF", + "local_code": "KDB", + "keywords": "Kondubol, Kondobal" + }, + { + "id": "311110", + "ident": "AYDN", + "type": "small_airport", + "name": "Dinangat Airport", + "latitude_deg": "-6.1546", + "longitude_deg": "146.6772", + "elevation_ft": "5309", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Dinangat", + "scheduled_service": "no", + "gps_code": "AYDN", + "iata_code": "DNU", + "local_code": "DIN", + "keywords": "Diningat" + }, + { + "id": "311116", + "ident": "AYDO", + "type": "small_airport", + "name": "Doini Airport", + "latitude_deg": "-10.7009", + "longitude_deg": "150.7218", + "elevation_ft": "31", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Castori Islets", + "scheduled_service": "no", + "gps_code": "AYDO", + "iata_code": "DOI", + "local_code": "DOI" + }, + { + "id": "312311", + "ident": "AYDP", + "type": "small_airport", + "name": "Tsendiap Airstrip", + "latitude_deg": "-5.3599", + "longitude_deg": "144.4462", + "elevation_ft": "1565", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-JI", + "municipality": "Tsendiap", + "scheduled_service": "no", + "gps_code": "AYDP", + "local_code": "TNP" + }, + { + "id": "311104", + "ident": "AYDQ", + "type": "small_airport", + "name": "Dimisisi Airstrip", + "latitude_deg": "-8.6298", + "longitude_deg": "142.2162", + "elevation_ft": "166", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Dimisisi", + "scheduled_service": "no", + "gps_code": "AYDQ", + "local_code": "DIM" + }, + { + "id": "308051", + "ident": "AYDS", + "type": "small_airport", + "name": "Dusin Airport", + "latitude_deg": "-5.184135", + "longitude_deg": "144.411965", + "elevation_ft": "6300", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Dusin", + "scheduled_service": "no", + "gps_code": "AYDS", + "local_code": "DUS" + }, + { + "id": "55", + "ident": "AYDU", + "type": "medium_airport", + "name": "Daru Airport", + "latitude_deg": "-9.08675956726", + "longitude_deg": "143.207992554", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Daru", + "scheduled_service": "yes", + "gps_code": "AYDU", + "iata_code": "DAU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Daru_Airport" + }, + { + "id": "311102", + "ident": "AYDW", + "type": "small_airport", + "name": "Dewara Airstrip", + "latitude_deg": "-8.3802", + "longitude_deg": "142.4475", + "elevation_ft": "25", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Dewara", + "scheduled_service": "no", + "gps_code": "AYDW", + "local_code": "DWR" + }, + { + "id": "312108", + "ident": "AYDY", + "type": "small_airport", + "name": "Sindeni Airstrip", + "latitude_deg": "-7.0077", + "longitude_deg": "145.7965", + "elevation_ft": "5710", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Sindeni", + "scheduled_service": "no", + "gps_code": "AYDY", + "local_code": "SDI" + }, + { + "id": "311135", + "ident": "AYEB", + "type": "small_airport", + "name": "Embessa Airport", + "latitude_deg": "-9.447", + "longitude_deg": "148.7628", + "elevation_ft": "131", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "municipality": "Embessa", + "scheduled_service": "no", + "gps_code": "AYEB", + "iata_code": "EMS", + "local_code": "EMB" + }, + { + "id": "308012", + "ident": "AYED", + "type": "small_airport", + "name": "Edwaki Airport", + "latitude_deg": "-3.883986", + "longitude_deg": "141.792234", + "elevation_ft": "190", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Yellow River Mission", + "scheduled_service": "no", + "gps_code": "AYED", + "iata_code": "XYR", + "local_code": "EWK" + }, + { + "id": "311749", + "ident": "AYEG", + "type": "small_airport", + "name": "Mengina Airstrip", + "latitude_deg": "-6.4836", + "longitude_deg": "144.986", + "elevation_ft": "4224", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPK", + "municipality": "Mengina", + "scheduled_service": "no", + "gps_code": "AYEG", + "local_code": "MEN" + }, + { + "id": "311756", + "ident": "AYEI", + "type": "small_airport", + "name": "Milei Airstrip", + "latitude_deg": "-9.0794", + "longitude_deg": "147.602", + "elevation_ft": "2160", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Milei", + "scheduled_service": "no", + "gps_code": "AYEI", + "local_code": "MIL" + }, + { + "id": "311747", + "ident": "AYEK", + "type": "small_airport", + "name": "Membok Airstrip", + "latitude_deg": "-6.4744", + "longitude_deg": "141.019", + "elevation_ft": "54", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Membok", + "scheduled_service": "no", + "gps_code": "AYEK", + "local_code": "MBK", + "keywords": "Mebok" + }, + { + "id": "311132", + "ident": "AYEL", + "type": "small_airport", + "name": "Eliptamin Airport", + "latitude_deg": "-5.0412", + "longitude_deg": "141.6779", + "elevation_ft": "4825", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Eliptamin", + "scheduled_service": "no", + "gps_code": "AYEL", + "iata_code": "EPT", + "local_code": "ELP" + }, + { + "id": "311130", + "ident": "AYEM", + "type": "small_airport", + "name": "Eleme Airstrip", + "latitude_deg": "-4.8141", + "longitude_deg": "143.9103", + "elevation_ft": "233", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Eleme", + "scheduled_service": "no", + "gps_code": "AYEM", + "local_code": "ELM" + }, + { + "id": "311202", + "ident": "AYEN", + "type": "small_airport", + "name": "Engati Airstrip", + "latitude_deg": "-6.9179", + "longitude_deg": "146.1053", + "elevation_ft": "3715", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Engati", + "scheduled_service": "no", + "gps_code": "AYEN", + "iata_code": "EGA", + "local_code": "EGT" + }, + { + "id": "311200", + "ident": "AYEO", + "type": "small_airport", + "name": "Emo River Airstrip", + "latitude_deg": "-9.1234", + "longitude_deg": "148.0415", + "elevation_ft": "2240", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "municipality": "Emo Mission", + "scheduled_service": "no", + "gps_code": "AYEO", + "iata_code": "EMO", + "local_code": "EMO" + }, + { + "id": "311205", + "ident": "AYER", + "type": "small_airport", + "name": "Erume Airport", + "latitude_deg": "-8.2538", + "longitude_deg": "146.9747", + "elevation_ft": "6690", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Erume", + "scheduled_service": "no", + "gps_code": "AYER", + "iata_code": "ERU", + "local_code": "EME" + }, + { + "id": "313974", + "ident": "AYES", + "type": "small_airport", + "name": "Meselia Airport", + "latitude_deg": "-6.1364", + "longitude_deg": "149.1183", + "elevation_ft": "180", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WBK", + "municipality": "Demgulu", + "scheduled_service": "no", + "gps_code": "AYES", + "iata_code": "MFZ", + "keywords": "Mesalia, Mesilia" + }, + { + "id": "311134", + "ident": "AYEU", + "type": "small_airport", + "name": "Eloaua Airstrip", + "latitude_deg": "-1.5601", + "longitude_deg": "149.6318", + "elevation_ft": "25", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NIK", + "municipality": "Eloaua Island", + "scheduled_service": "no", + "gps_code": "AYEU", + "local_code": "ELO" + }, + { + "id": "311757", + "ident": "AYEY", + "type": "small_airport", + "name": "Mirsey Airstrip", + "latitude_deg": "-4.0621", + "longitude_deg": "142.6609", + "elevation_ft": "107", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Mirsey", + "scheduled_service": "no", + "gps_code": "AYEY", + "local_code": "MSY" + }, + { + "id": "311370", + "ident": "AYFE", + "type": "small_airport", + "name": "Feramin Airport", + "latitude_deg": "-5.208", + "longitude_deg": "141.6988", + "elevation_ft": "4655", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Feramin", + "scheduled_service": "no", + "gps_code": "AYFE", + "iata_code": "FRQ", + "local_code": "FMN", + "keywords": "Feranmin" + }, + { + "id": "311374", + "ident": "AYFK", + "type": "small_airport", + "name": "Foroko Airstrip", + "latitude_deg": "-5.3283", + "longitude_deg": "144.8944", + "elevation_ft": "412", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Foroko", + "scheduled_service": "no", + "gps_code": "AYFK", + "local_code": "FRO" + }, + { + "id": "311373", + "ident": "AYFO", + "type": "small_airport", + "name": "Fogomaiu Airstrip", + "latitude_deg": "-6.5096", + "longitude_deg": "143.0794", + "elevation_ft": "737", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Fogomaiu", + "scheduled_service": "no", + "gps_code": "AYFO", + "local_code": "FGM", + "keywords": "Fogoma'iu, Fogomaio" + }, + { + "id": "307757", + "ident": "AYFR", + "type": "small_airport", + "name": "Frieda River Airport", + "latitude_deg": "-4.610468", + "longitude_deg": "141.960138", + "elevation_ft": "217", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Frieda River", + "scheduled_service": "no", + "gps_code": "AYFR", + "iata_code": "FAQ", + "local_code": "FRR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Frieda_River_Airport" + }, + { + "id": "311347", + "ident": "AYFS", + "type": "small_airport", + "name": "Fas Airstrip", + "latitude_deg": "-3.1983", + "longitude_deg": "141.472", + "elevation_ft": "1219", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Fugari", + "scheduled_service": "no", + "gps_code": "AYFS", + "local_code": "FAS" + }, + { + "id": "311384", + "ident": "AYFU", + "type": "small_airport", + "name": "Fuma Airport", + "latitude_deg": "-6.3933", + "longitude_deg": "142.4408", + "elevation_ft": "466", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Fuma", + "scheduled_service": "no", + "gps_code": "AYFU", + "iata_code": "FUM", + "local_code": "FUMA" + }, + { + "id": "313571", + "ident": "AYFW", + "type": "small_airport", + "name": "Kwieftim Airstrip", + "latitude_deg": "-3.6005", + "longitude_deg": "141.7674", + "elevation_ft": "515", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Kwieftim", + "scheduled_service": "no", + "gps_code": "AYFW", + "local_code": "KWM" + }, + { + "id": "56", + "ident": "AYGA", + "type": "medium_airport", + "name": "Goroka Airport", + "latitude_deg": "-6.081689834590001", + "longitude_deg": "145.391998291", + "elevation_ft": "5282", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Goronka", + "scheduled_service": "yes", + "gps_code": "AYGA", + "iata_code": "GKA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Goroka_Airport" + }, + { + "id": "312794", + "ident": "AYGD", + "type": "small_airport", + "name": "Gimi Airstrip", + "latitude_deg": "-6.6482", + "longitude_deg": "145.4003", + "elevation_ft": "5096", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Amusa", + "scheduled_service": "no", + "gps_code": "AYGD", + "local_code": "GIMI" + }, + { + "id": "311415", + "ident": "AYGE", + "type": "small_airport", + "name": "Geigorobi Airstrip", + "latitude_deg": "-4.1055", + "longitude_deg": "143.3056", + "elevation_ft": "74", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Geigorobi", + "scheduled_service": "no", + "gps_code": "AYGE", + "local_code": "GEI" + }, + { + "id": "311430", + "ident": "AYGF", + "type": "small_airport", + "name": "Guari Airport", + "latitude_deg": "-8.1286", + "longitude_deg": "146.8722", + "elevation_ft": "6450", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Guari", + "scheduled_service": "no", + "gps_code": "AYGF", + "iata_code": "GUG", + "local_code": "GAI" + }, + { + "id": "308005", + "ident": "AYGG", + "type": "small_airport", + "name": "Garasa Airport", + "latitude_deg": "-7.980713", + "longitude_deg": "147.213461", + "elevation_ft": "2539", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Au", + "scheduled_service": "no", + "gps_code": "AYGG", + "iata_code": "GRL", + "local_code": "GSA" + }, + { + "id": "311439", + "ident": "AYGH", + "type": "small_airport", + "name": "Guhu Airstrip", + "latitude_deg": "-5.6957", + "longitude_deg": "146.1116", + "elevation_ft": "3", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Guhu", + "scheduled_service": "no", + "gps_code": "AYGH", + "local_code": "GUHU" + }, + { + "id": "311417", + "ident": "AYGM", + "type": "small_airport", + "name": "Gema Airstrip", + "latitude_deg": "-6.803088", + "longitude_deg": "145.775866", + "elevation_ft": "5370", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Gema", + "scheduled_service": "no", + "gps_code": "AYGM", + "local_code": "GEMA" + }, + { + "id": "57", + "ident": "AYGN", + "type": "medium_airport", + "name": "Gurney Airport", + "latitude_deg": "-10.3114995956", + "longitude_deg": "150.333999634", + "elevation_ft": "88", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Gurney", + "scheduled_service": "yes", + "gps_code": "AYGN", + "iata_code": "GUR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gurney_Airport" + }, + { + "id": "311426", + "ident": "AYGO", + "type": "small_airport", + "name": "Gokto Airstrip", + "latitude_deg": "-4.9136", + "longitude_deg": "144.49", + "elevation_ft": "259", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Gokto", + "scheduled_service": "no", + "gps_code": "AYGO", + "local_code": "GTO" + }, + { + "id": "307709", + "ident": "AYGP", + "type": "small_airport", + "name": "Gusap Airport", + "latitude_deg": "-6.053196", + "longitude_deg": "145.959047", + "elevation_ft": "1504", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Gusap", + "scheduled_service": "no", + "gps_code": "AYGP", + "iata_code": "GAP", + "local_code": "GSP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gusap_Airport" + }, + { + "id": "311413", + "ident": "AYGQ", + "type": "small_airport", + "name": "Gawa Airstrip", + "latitude_deg": "-5.259", + "longitude_deg": "142.233", + "elevation_ft": "6500", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Gawa", + "scheduled_service": "no", + "gps_code": "AYGQ", + "local_code": "GAWA" + }, + { + "id": "58", + "ident": "AYGR", + "type": "medium_airport", + "name": "Girua Airport", + "latitude_deg": "-8.80453968048", + "longitude_deg": "148.309005737", + "elevation_ft": "311", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "municipality": "Popondetta", + "scheduled_service": "yes", + "gps_code": "AYGR", + "iata_code": "PNP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Girua_Airport" + }, + { + "id": "311386", + "ident": "AYGS", + "type": "small_airport", + "name": "Gasuke Airport", + "latitude_deg": "-6.1028", + "longitude_deg": "141.7393", + "elevation_ft": "157", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Gasuke", + "scheduled_service": "no", + "gps_code": "AYGS", + "iata_code": "GBC", + "local_code": "GSK" + }, + { + "id": "308212", + "ident": "AYGW", + "type": "small_airport", + "name": "Guwasa Airport", + "latitude_deg": "-6.465838", + "longitude_deg": "145.083968", + "elevation_ft": "4800", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Guwasa", + "scheduled_service": "no", + "gps_code": "AYGW" + }, + { + "id": "311431", + "ident": "AYGY", + "type": "small_airport", + "name": "Guavi Airstrip", + "latitude_deg": "-6.87", + "longitude_deg": "142.7537", + "elevation_ft": "303", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Guavi", + "scheduled_service": "no", + "gps_code": "AYGY" + }, + { + "id": "307876", + "ident": "AYHA", + "type": "small_airport", + "name": "Haia Airport", + "latitude_deg": "-6.707421", + "longitude_deg": "144.997398", + "elevation_ft": "2434", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPK", + "scheduled_service": "no", + "gps_code": "AYHA", + "local_code": "HAIA" + }, + { + "id": "311468", + "ident": "AYHB", + "type": "small_airport", + "name": "Habi Airport", + "latitude_deg": "-6.32", + "longitude_deg": "142.4893", + "elevation_ft": "993", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Habi", + "scheduled_service": "no", + "gps_code": "AYHB", + "iata_code": "HBD", + "local_code": "HABI" + }, + { + "id": "311487", + "ident": "AYHE", + "type": "small_airport", + "name": "Heiweni Airport", + "latitude_deg": "-7.4223", + "longitude_deg": "146.4276", + "elevation_ft": "3480", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Heiweni", + "scheduled_service": "no", + "gps_code": "AYHE", + "iata_code": "HNI", + "local_code": "HWI" + }, + { + "id": "312918", + "ident": "AYHH", + "type": "small_airport", + "name": "Honinabi Airport", + "latitude_deg": "-6.2457", + "longitude_deg": "142.1771", + "elevation_ft": "452", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Honinabi", + "scheduled_service": "no", + "gps_code": "AYHH", + "iata_code": "HNN", + "local_code": "HBI", + "keywords": "Honinabe" + }, + { + "id": "311506", + "ident": "AYHJ", + "type": "small_airport", + "name": "Hewa Airstrip", + "latitude_deg": "-5.1914", + "longitude_deg": "142.9595", + "elevation_ft": "5000", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EPW", + "municipality": "Hewa", + "scheduled_service": "no", + "gps_code": "AYHJ", + "local_code": "HEWA" + }, + { + "id": "59", + "ident": "AYHK", + "type": "medium_airport", + "name": "Hoskins Airport", + "latitude_deg": "-5.463846", + "longitude_deg": "150.407327", + "elevation_ft": "66", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WBK", + "municipality": "Kimbe", + "scheduled_service": "yes", + "gps_code": "AYHK", + "iata_code": "HKN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hoskins_Airport" + }, + { + "id": "311492", + "ident": "AYHL", + "type": "small_airport", + "name": "Hesalibi Airstrip", + "latitude_deg": "-6.6", + "longitude_deg": "142.3502", + "elevation_ft": "305", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Hesalibi", + "scheduled_service": "no", + "gps_code": "AYHL", + "local_code": "HLB" + }, + { + "id": "311508", + "ident": "AYHN", + "type": "small_airport", + "name": "Habina Airstrip", + "latitude_deg": "-6.6671", + "longitude_deg": "146", + "elevation_ft": "6200", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Habina", + "scheduled_service": "no", + "gps_code": "AYHN", + "local_code": "HAA" + }, + { + "id": "311472", + "ident": "AYHO", + "type": "small_airport", + "name": "Haivaro Airport", + "latitude_deg": "-6.9406", + "longitude_deg": "143.059", + "elevation_ft": "180", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Haivaro", + "scheduled_service": "no", + "gps_code": "AYHO", + "iata_code": "HIT", + "local_code": "HWO", + "keywords": "Haiwaro" + }, + { + "id": "311473", + "ident": "AYHQ", + "type": "small_airport", + "name": "Hauna Airstrip", + "latitude_deg": "-4.2994", + "longitude_deg": "142.2305", + "elevation_ft": "73", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Hauna", + "scheduled_service": "no", + "gps_code": "AYHQ", + "local_code": "HNA" + }, + { + "id": "311510", + "ident": "AYHT", + "type": "small_airport", + "name": "Hotmin Airstrip", + "latitude_deg": "-4.5845", + "longitude_deg": "141.5742", + "elevation_ft": "196", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Hotmin Mission", + "scheduled_service": "no", + "gps_code": "AYHT", + "local_code": "HOT" + }, + { + "id": "311470", + "ident": "AYHW", + "type": "small_airport", + "name": "Haewenai Airstrip", + "latitude_deg": "-5.7219", + "longitude_deg": "141.3205", + "elevation_ft": "220", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Haewenai", + "scheduled_service": "no", + "gps_code": "AYHW" + }, + { + "id": "311489", + "ident": "AYHX", + "type": "small_airport", + "name": "Herowena Airstrip", + "latitude_deg": "-6.6229", + "longitude_deg": "145.1972", + "elevation_ft": "4695", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Herowana", + "scheduled_service": "no", + "gps_code": "AYHX", + "local_code": "HRW" + }, + { + "id": "311519", + "ident": "AYHY", + "type": "small_airport", + "name": "Huya Airstrip", + "latitude_deg": "-6.2734", + "longitude_deg": "142.7061", + "elevation_ft": "2611", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-HE", + "municipality": "Huya", + "scheduled_service": "no", + "gps_code": "AYHY", + "local_code": "HUYA" + }, + { + "id": "311521", + "ident": "AYIB", + "type": "small_airport", + "name": "Ibil Airstrip", + "latitude_deg": "-4.6828", + "longitude_deg": "141.0316", + "elevation_ft": "870", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Ibil", + "scheduled_service": "no", + "gps_code": "AYIB", + "local_code": "IBIL" + }, + { + "id": "312938", + "ident": "AYII", + "type": "small_airport", + "name": "Imane Airport", + "latitude_deg": "-6.7524", + "longitude_deg": "146.1072", + "elevation_ft": "3860", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Imane", + "scheduled_service": "no", + "gps_code": "AYII", + "iata_code": "IMN", + "local_code": "IMN", + "keywords": "Imani" + }, + { + "id": "313419", + "ident": "AYIM", + "type": "small_airport", + "name": "Kungim Airport", + "latitude_deg": "-5.671", + "longitude_deg": "141.03", + "elevation_ft": "349", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Kungim", + "scheduled_service": "no", + "gps_code": "AYIM", + "iata_code": "KGM", + "local_code": "KNM", + "keywords": "Kungum" + }, + { + "id": "311089", + "ident": "AYIN", + "type": "small_airport", + "name": "Busilmin Airstrip", + "latitude_deg": "-4.9166", + "longitude_deg": "141.1548", + "elevation_ft": "5450", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Busilmin", + "scheduled_service": "no", + "gps_code": "AYIN", + "local_code": "BSM" + }, + { + "id": "312964", + "ident": "AYIO", + "type": "small_airport", + "name": "Imonda Airport", + "latitude_deg": "-3.328", + "longitude_deg": "141.1573", + "elevation_ft": "990", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Imonda", + "scheduled_service": "no", + "gps_code": "AYIO", + "iata_code": "IMD", + "local_code": "IMO" + }, + { + "id": "311530", + "ident": "AYIP", + "type": "small_airport", + "name": "Iropena Airstrip", + "latitude_deg": "-5.0333", + "longitude_deg": "143.87084", + "elevation_ft": "5190", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Iropena", + "scheduled_service": "no", + "gps_code": "AYIP", + "local_code": "IRP" + }, + { + "id": "302264", + "ident": "AYIQ", + "type": "small_airport", + "name": "Aropa Airport", + "latitude_deg": "-6.305417", + "longitude_deg": "155.728139", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NSB", + "municipality": "Kieta", + "scheduled_service": "yes", + "gps_code": "AYIQ", + "iata_code": "KIE", + "local_code": "KIA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kieta_Airport" + }, + { + "id": "311527", + "ident": "AYIR", + "type": "small_airport", + "name": "Inaru Airstrip", + "latitude_deg": "-4.6316", + "longitude_deg": "142.8913", + "elevation_ft": "178", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Inaru", + "scheduled_service": "no", + "gps_code": "AYIR", + "local_code": "INR" + }, + { + "id": "311533", + "ident": "AYIS", + "type": "small_airport", + "name": "Isan Airstrip", + "latitude_deg": "-5.9781", + "longitude_deg": "146.61975", + "elevation_ft": "6955", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Isan", + "scheduled_service": "no", + "gps_code": "AYIS", + "local_code": "ISAN" + }, + { + "id": "311535", + "ident": "AYIT", + "type": "small_airport", + "name": "Iteri Airstrip", + "latitude_deg": "-4.2418", + "longitude_deg": "141.5234", + "elevation_ft": "242", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Iteri", + "scheduled_service": "no", + "gps_code": "AYIT", + "local_code": "ITR" + }, + { + "id": "312934", + "ident": "AYIU", + "type": "small_airport", + "name": "Ialibu Airport", + "latitude_deg": "-6.2782", + "longitude_deg": "143.9944", + "elevation_ft": "6736", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Ialibu", + "scheduled_service": "no", + "gps_code": "AYIU", + "iata_code": "IAL", + "local_code": "IBU", + "keywords": "Lalibu" + }, + { + "id": "319533", + "ident": "AYIX", + "type": "small_airport", + "name": "Witu Airport", + "latitude_deg": "-4.689522", + "longitude_deg": "149.440112", + "elevation_ft": "25", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WBK", + "municipality": "Garove Island", + "scheduled_service": "no", + "gps_code": "AYIX", + "iata_code": "WIU", + "local_code": "WITU" + }, + { + "id": "311798", + "ident": "AYJE", + "type": "small_airport", + "name": "Yomneri Airstrip", + "latitude_deg": "-5.237", + "longitude_deg": "144.6007", + "elevation_ft": "6100", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Yomneri", + "scheduled_service": "no", + "gps_code": "AYJE" + }, + { + "id": "311794", + "ident": "AYJO", + "type": "small_airport", + "name": "Yongai Airport", + "latitude_deg": "-8.5289", + "longitude_deg": "147.4603", + "elevation_ft": "6500", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Yongai", + "scheduled_service": "no", + "gps_code": "AYJO", + "iata_code": "KGH", + "local_code": "YON" + }, + { + "id": "35188", + "ident": "AYKA", + "type": "small_airport", + "name": "Losuia Airport", + "latitude_deg": "-8.505820274353027", + "longitude_deg": "151.08099365234375", + "elevation_ft": "27", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Losuia", + "scheduled_service": "yes", + "gps_code": "AYKA", + "iata_code": "LSA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Losuia_Airport", + "keywords": "Formerly Kiriwina Airport" + }, + { + "id": "308795", + "ident": "AYKG", + "type": "small_airport", + "name": "Kopiago Airport", + "latitude_deg": "-5.3883", + "longitude_deg": "142.4977", + "elevation_ft": "4445", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-HE", + "municipality": "Kopiago", + "scheduled_service": "no", + "gps_code": "AYKG", + "iata_code": "KPA", + "local_code": "KGO" + }, + { + "id": "35185", + "ident": "AYKI", + "type": "small_airport", + "name": "Kiunga Airport", + "latitude_deg": "-6.1257100105285645", + "longitude_deg": "141.28199768066406", + "elevation_ft": "88", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Kiunga", + "scheduled_service": "yes", + "gps_code": "AYKI", + "iata_code": "UNG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kiunga_Airport" + }, + { + "id": "308592", + "ident": "AYKJ", + "type": "small_airport", + "name": "Kanainj Airport", + "latitude_deg": "-5.2903", + "longitude_deg": "144.7072", + "elevation_ft": "4064", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Kanainj", + "scheduled_service": "no", + "gps_code": "AYKJ", + "iata_code": "KNE", + "local_code": "KNJ" + }, + { + "id": "35184", + "ident": "AYKK", + "type": "small_airport", + "name": "Kikori Airport", + "latitude_deg": "-7.424379825592041", + "longitude_deg": "144.2500762939453", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Kikori", + "scheduled_service": "yes", + "gps_code": "AYKK", + "iata_code": "KRI" + }, + { + "id": "313787", + "ident": "AYKL", + "type": "small_airport", + "name": "Kafle Airstrip", + "latitude_deg": "-3.75", + "longitude_deg": "142.59", + "elevation_ft": "850", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Kafle", + "scheduled_service": "no", + "gps_code": "AYKL", + "local_code": "KFL" + }, + { + "id": "60", + "ident": "AYKM", + "type": "medium_airport", + "name": "Kerema Airport", + "latitude_deg": "-7.96361017227", + "longitude_deg": "145.770996094", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Kerema", + "scheduled_service": "yes", + "gps_code": "AYKM", + "iata_code": "KMA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kerema_Airport" + }, + { + "id": "313564", + "ident": "AYKN", + "type": "small_airport", + "name": "Kubuna Airstrip", + "latitude_deg": "-8.6917", + "longitude_deg": "146.7566", + "elevation_ft": "200", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Kubuna Mission", + "scheduled_service": "no", + "gps_code": "AYKN" + }, + { + "id": "308594", + "ident": "AYKR", + "type": "small_airport", + "name": "Kar Kar Airport", + "latitude_deg": "-4.557", + "longitude_deg": "145.9404", + "elevation_ft": "130", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Kar Kar Island", + "scheduled_service": "no", + "gps_code": "AYKR", + "iata_code": "KRX", + "local_code": "KKR" + }, + { + "id": "308319", + "ident": "AYKU", + "type": "small_airport", + "name": "Kuri Airport", + "latitude_deg": "-7.135083", + "longitude_deg": "143.276111", + "elevation_ft": "35", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Kuri", + "scheduled_service": "no", + "gps_code": "AYKU", + "iata_code": "KUQ", + "local_code": "KURI" + }, + { + "id": "61", + "ident": "AYKV", + "type": "medium_airport", + "name": "Kavieng Airport", + "latitude_deg": "-2.57940006256", + "longitude_deg": "150.807998657", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NIK", + "municipality": "Kavieng", + "scheduled_service": "yes", + "gps_code": "AYKV", + "iata_code": "KVG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kavieng_Airport" + }, + { + "id": "31837", + "ident": "AYKY", + "type": "small_airport", + "name": "Londolovit Airport", + "latitude_deg": "-3.04361009598", + "longitude_deg": "152.628997803", + "elevation_ft": "167", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NIK", + "municipality": "Londolovit", + "scheduled_service": "yes", + "gps_code": "AYKY", + "iata_code": "LNV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lihir_Island_Airport", + "keywords": "Lihir Island, Kunaye" + }, + { + "id": "313788", + "ident": "AYKZ", + "type": "small_airport", + "name": "Kairiru Airstrip", + "latitude_deg": "-3.3687", + "longitude_deg": "143.5546", + "elevation_ft": "60", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Kairiru Island", + "scheduled_service": "no", + "gps_code": "AYKZ", + "local_code": "KAI" + }, + { + "id": "308079", + "ident": "AYLA", + "type": "closed", + "name": "Lae Airfield", + "latitude_deg": "-6.731666", + "longitude_deg": "146.996368", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Lae", + "scheduled_service": "no", + "gps_code": "AYLA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lae_Airfield", + "keywords": "Lae Drome, Lae Aerodrome, Old Lae Airfield" + }, + { + "id": "312686", + "ident": "AYLB", + "type": "small_airport", + "name": "Lab Lab Airport", + "latitude_deg": "-5.7204", + "longitude_deg": "148.0566", + "elevation_ft": "160", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Lab Lab Mission", + "scheduled_service": "no", + "gps_code": "AYLB", + "iata_code": "LAB", + "local_code": "LAB", + "keywords": "Lablab" + }, + { + "id": "314947", + "ident": "AYLC", + "type": "small_airport", + "name": "Lake Campbell Airstrip", + "latitude_deg": "-6.7486", + "longitude_deg": "142.6037", + "elevation_ft": "585", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Lake Campbell", + "scheduled_service": "no", + "gps_code": "AYLC" + }, + { + "id": "313941", + "ident": "AYLE", + "type": "small_airport", + "name": "Lele Airstrip", + "latitude_deg": "-5.2192", + "longitude_deg": "151.3938", + "elevation_ft": "1600", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EBR", + "municipality": "Leli", + "scheduled_service": "no", + "gps_code": "AYLE", + "local_code": "LELE", + "keywords": "Leli" + }, + { + "id": "311702", + "ident": "AYLH", + "type": "small_airport", + "name": "Klauhau Airstrip", + "latitude_deg": "-4.1305", + "longitude_deg": "142.2495", + "elevation_ft": "130", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Klauhau", + "scheduled_service": "no", + "gps_code": "AYLH" + }, + { + "id": "313841", + "ident": "AYLO", + "type": "small_airport", + "name": "Lowai Airport", + "latitude_deg": "-6.3344", + "longitude_deg": "146.6458", + "elevation_ft": "2900", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Lowai", + "scheduled_service": "no", + "gps_code": "AYLO", + "iata_code": "LWI", + "local_code": "LOW" + }, + { + "id": "313927", + "ident": "AYLP", + "type": "small_airport", + "name": "Leron Plains Airport", + "latitude_deg": "-6.3917", + "longitude_deg": "146.3434", + "elevation_ft": "680", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Leron Plains", + "scheduled_service": "no", + "gps_code": "AYLP", + "iata_code": "LPN", + "local_code": "LPS" + }, + { + "id": "313574", + "ident": "AYLQ", + "type": "small_airport", + "name": "Lagoon Airstrip", + "latitude_deg": "-8.8186", + "longitude_deg": "143.1317", + "elevation_ft": "100", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Lagoon", + "scheduled_service": "no", + "gps_code": "AYLQ", + "local_code": "LGN" + }, + { + "id": "313944", + "ident": "AYLS", + "type": "small_airport", + "name": "Lese Airport", + "latitude_deg": "-8.2799", + "longitude_deg": "146.2765", + "elevation_ft": "40", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Lese", + "scheduled_service": "no", + "gps_code": "AYLS", + "iata_code": "LNG", + "local_code": "LESE" + }, + { + "id": "313946", + "ident": "AYLX", + "type": "small_airport", + "name": "Long Island Airport", + "latitude_deg": "-5.3604", + "longitude_deg": "147.0177", + "elevation_ft": "116", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Long Island", + "scheduled_service": "no", + "gps_code": "AYLX", + "iata_code": "LSJ", + "local_code": "LIS" + }, + { + "id": "312120", + "ident": "AYLZ", + "type": "small_airport", + "name": "Slai Airstrip", + "latitude_deg": "-4.0322", + "longitude_deg": "143.1831", + "elevation_ft": "77", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Slai", + "scheduled_service": "no", + "gps_code": "AYLZ", + "local_code": "SLAI" + }, + { + "id": "317271", + "ident": "AYM", + "type": "seaplane_base", + "name": "Yas Island Seaplane Base", + "latitude_deg": "24.467", + "longitude_deg": "54.6103", + "elevation_ft": "0", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no", + "iata_code": "AYM" + }, + { + "id": "314134", + "ident": "AYMA", + "type": "small_airport", + "name": "Manari Airport", + "latitude_deg": "-9.1908", + "longitude_deg": "147.6219", + "elevation_ft": "2630", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Manari", + "scheduled_service": "no", + "gps_code": "AYMA", + "iata_code": "MRM", + "local_code": "MRI", + "keywords": "Manare" + }, + { + "id": "312797", + "ident": "AYMB", + "type": "small_airport", + "name": "Morobe Airport", + "latitude_deg": "-7.74", + "longitude_deg": "147.59", + "elevation_ft": "8", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Morobe", + "scheduled_service": "no", + "gps_code": "AYMB", + "iata_code": "OBM", + "local_code": "MBE" + }, + { + "id": "62", + "ident": "AYMD", + "type": "medium_airport", + "name": "Madang Airport", + "latitude_deg": "-5.20707988739", + "longitude_deg": "145.789001465", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Madang", + "scheduled_service": "yes", + "gps_code": "AYMD", + "iata_code": "MAG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Madang_Airport" + }, + { + "id": "63", + "ident": "AYMH", + "type": "medium_airport", + "name": "Mount Hagen Kagamuga Airport", + "latitude_deg": "-5.828212", + "longitude_deg": "144.299412", + "elevation_ft": "5388", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WHM", + "municipality": "Mount Hagen", + "scheduled_service": "yes", + "gps_code": "AYMH", + "iata_code": "HGU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mount_Hagen_Airport" + }, + { + "id": "308189", + "ident": "AYMK", + "type": "small_airport", + "name": "Mok Airport", + "latitude_deg": "-5.730238", + "longitude_deg": "149.056583", + "elevation_ft": "1050", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WBK", + "municipality": "Mok", + "scheduled_service": "no", + "gps_code": "AYMK", + "local_code": "MOK" + }, + { + "id": "308188", + "ident": "AYML", + "type": "small_airport", + "name": "Mougulu Airport", + "latitude_deg": "-6.280859", + "longitude_deg": "142.420775", + "elevation_ft": "825", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Mougulu", + "scheduled_service": "no", + "gps_code": "AYML", + "iata_code": "GUV", + "local_code": "MGU" + }, + { + "id": "64", + "ident": "AYMN", + "type": "medium_airport", + "name": "Mendi Airport", + "latitude_deg": "-6.14774", + "longitude_deg": "143.656998", + "elevation_ft": "5680", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Mendi", + "scheduled_service": "yes", + "gps_code": "AYMN", + "iata_code": "MDU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mendi_Airport" + }, + { + "id": "65", + "ident": "AYMO", + "type": "medium_airport", + "name": "Momote Airport", + "latitude_deg": "-2.06189", + "longitude_deg": "147.423996", + "elevation_ft": "12", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MRL", + "municipality": "Manus Island", + "scheduled_service": "yes", + "gps_code": "AYMO", + "iata_code": "MAS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Momote_Airport" + }, + { + "id": "31981", + "ident": "AYMR", + "type": "small_airport", + "name": "Moro Airport", + "latitude_deg": "-6.36332988739", + "longitude_deg": "143.238006592", + "elevation_ft": "2740", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Moro", + "scheduled_service": "yes", + "gps_code": "AYMR", + "iata_code": "MXH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moro_Airport" + }, + { + "id": "31911", + "ident": "AYMS", + "type": "small_airport", + "name": "Misima Island Airport", + "latitude_deg": "-10.689200401299999", + "longitude_deg": "152.837997437", + "elevation_ft": "26", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Misima Island", + "scheduled_service": "yes", + "gps_code": "AYMS", + "iata_code": "MIS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Misima_Airport" + }, + { + "id": "308796", + "ident": "AYMW", + "type": "small_airport", + "name": "Marawaka Airport", + "latitude_deg": "-6.9736", + "longitude_deg": "145.8849", + "elevation_ft": "6050", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Marawaka", + "scheduled_service": "no", + "gps_code": "AYMW", + "iata_code": "MWG", + "local_code": "MWK" + }, + { + "id": "312122", + "ident": "AYMY", + "type": "small_airport", + "name": "Smok Airstrip", + "latitude_deg": "-3.3158", + "longitude_deg": "141.2461", + "elevation_ft": "729", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Smok", + "scheduled_service": "no", + "gps_code": "AYMY", + "local_code": "SMOK" + }, + { + "id": "316543", + "ident": "AYNA", + "type": "small_airport", + "name": "Nankina Airport", + "latitude_deg": "-5.837", + "longitude_deg": "146.4533", + "elevation_ft": "5800", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Gwarawon", + "scheduled_service": "no", + "gps_code": "AYNA", + "iata_code": "NKN", + "local_code": "NKN" + }, + { + "id": "308173", + "ident": "AYNE", + "type": "small_airport", + "name": "Negarbo(Negabo) Airport", + "latitude_deg": "-6.567778", + "longitude_deg": "144.703058", + "elevation_ft": "4500", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPK", + "municipality": "Negarbo", + "scheduled_service": "no", + "gps_code": "AYNE", + "iata_code": "GBF", + "local_code": "NBO" + }, + { + "id": "356251", + "ident": "AYNF", + "type": "small_airport", + "name": "Nagri Airport", + "latitude_deg": "-4.091586", + "longitude_deg": "142.592937", + "elevation_ft": "150", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Nagri", + "scheduled_service": "no", + "gps_code": "AYNF", + "local_code": "NGR" + }, + { + "id": "308139", + "ident": "AYNG", + "type": "small_airport", + "name": "Manguna Airport", + "latitude_deg": "-5.577778", + "longitude_deg": "151.792333", + "elevation_ft": "187", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EBR", + "municipality": "Manguna", + "scheduled_service": "no", + "gps_code": "AYNG", + "iata_code": "MFO", + "local_code": "MGA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manguna_Airport" + }, + { + "id": "356252", + "ident": "AYNH", + "type": "small_airport", + "name": "Nahu Airstrip", + "latitude_deg": "-5.842728", + "longitude_deg": "146.112601", + "elevation_ft": "6520", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Gumbarami", + "scheduled_service": "no", + "gps_code": "AYNH", + "local_code": "NAHU" + }, + { + "id": "311620", + "ident": "AYNM", + "type": "small_airport", + "name": "Kasonombe Airport", + "latitude_deg": "-6.3819", + "longitude_deg": "146.9859", + "elevation_ft": "5800", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Kasonombe", + "scheduled_service": "no", + "gps_code": "AYNM", + "iata_code": "KSB", + "local_code": "KNB" + }, + { + "id": "308583", + "ident": "AYNO", + "type": "small_airport", + "name": "Nomane Airport", + "latitude_deg": "-6.32183", + "longitude_deg": "145.070667", + "elevation_ft": "6032", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPK", + "municipality": "Namane", + "scheduled_service": "no", + "gps_code": "AYNO", + "iata_code": "NMN", + "local_code": "NOM" + }, + { + "id": "311616", + "ident": "AYNT", + "type": "small_airport", + "name": "Kantobo Airstrip", + "latitude_deg": "-6.7227", + "longitude_deg": "143.5636", + "elevation_ft": "1385", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Kantobo", + "scheduled_service": "no", + "gps_code": "AYNT", + "local_code": "KNO", + "keywords": "KAB, Kandobo, Kantobel, Iamagu" + }, + { + "id": "313487", + "ident": "AYNY", + "type": "small_airport", + "name": "Nambaiyufa Airport", + "latitude_deg": "-6.2412", + "longitude_deg": "145.2424", + "elevation_ft": "5550", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPK", + "municipality": "Nambaiyufa", + "scheduled_service": "no", + "gps_code": "AYNY", + "iata_code": "NBA", + "local_code": "NBF" + }, + { + "id": "66", + "ident": "AYNZ", + "type": "medium_airport", + "name": "Nadzab Airport", + "latitude_deg": "-6.569803", + "longitude_deg": "146.725977", + "elevation_ft": "239", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Lae", + "scheduled_service": "yes", + "gps_code": "AYNZ", + "iata_code": "LAE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lae_Nadzab_Airport", + "keywords": "MFO" + }, + { + "id": "313573", + "ident": "AYOA", + "type": "small_airport", + "name": "Kwomtari Airstrip", + "latitude_deg": "-3.598", + "longitude_deg": "141.3614", + "elevation_ft": "366", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Kwomtari", + "scheduled_service": "no", + "gps_code": "AYOA", + "local_code": "KWO" + }, + { + "id": "311850", + "ident": "AYOD", + "type": "small_airport", + "name": "Obura Airstrip", + "latitude_deg": "-6.5507", + "longitude_deg": "145.9728", + "elevation_ft": "5600", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Obura", + "scheduled_service": "no", + "gps_code": "AYOD", + "local_code": "OBU" + }, + { + "id": "313220", + "ident": "AYOE", + "type": "small_airport", + "name": "Konge Airport", + "latitude_deg": "-6.2239", + "longitude_deg": "147.2152", + "elevation_ft": "5900", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Konge", + "scheduled_service": "no", + "gps_code": "AYOE", + "iata_code": "KGB", + "local_code": "KGE" + }, + { + "id": "311907", + "ident": "AYOH", + "type": "small_airport", + "name": "Okisai Airstrip", + "latitude_deg": "-4.7065", + "longitude_deg": "141.9006", + "elevation_ft": "310", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Okisai", + "scheduled_service": "no", + "gps_code": "AYOH", + "local_code": "OKS" + }, + { + "id": "311909", + "ident": "AYOJ", + "type": "small_airport", + "name": "Oksapmin Airport", + "latitude_deg": "-5.2261", + "longitude_deg": "142.2259", + "elevation_ft": "5140", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Oksapmin", + "scheduled_service": "no", + "gps_code": "AYOJ", + "iata_code": "OKP", + "local_code": "OKN" + }, + { + "id": "313218", + "ident": "AYOK", + "type": "small_airport", + "name": "Komako Airport", + "latitude_deg": "-7.3984", + "longitude_deg": "145.8827", + "elevation_ft": "3960", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Komako", + "scheduled_service": "no", + "gps_code": "AYOK", + "iata_code": "HOC", + "local_code": "KMA" + }, + { + "id": "311706", + "ident": "AYOQ", + "type": "small_airport", + "name": "Komaio Airport", + "latitude_deg": "-7.2714", + "longitude_deg": "143.5952", + "elevation_ft": "28", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Komaio", + "scheduled_service": "no", + "gps_code": "AYOQ", + "iata_code": "KCJ", + "local_code": "KOI" + }, + { + "id": "313553", + "ident": "AYOS", + "type": "small_airport", + "name": "Kosimbi Airstrip", + "latitude_deg": "-3.9522", + "longitude_deg": "143.1767", + "elevation_ft": "149", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Kosimbi Mission", + "scheduled_service": "no", + "gps_code": "AYOS", + "keywords": "Kosimbe" + }, + { + "id": "311712", + "ident": "AYOU", + "type": "small_airport", + "name": "Kombaku Airstrip", + "latitude_deg": "-5.3817", + "longitude_deg": "144.6355", + "elevation_ft": "5400", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Kombaku", + "scheduled_service": "no", + "gps_code": "AYOU", + "local_code": "KBK" + }, + { + "id": "313288", + "ident": "AYOW", + "type": "small_airport", + "name": "Koroba Airport", + "latitude_deg": "-5.6952", + "longitude_deg": "142.7441", + "elevation_ft": "5638", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-HE", + "municipality": "Koroba", + "scheduled_service": "no", + "gps_code": "AYOW", + "iata_code": "KDE" + }, + { + "id": "311760", + "ident": "AYOX", + "type": "small_airport", + "name": "Moi Airstrip", + "latitude_deg": "-4.1615", + "longitude_deg": "141.2478", + "elevation_ft": "240", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Moi", + "scheduled_service": "no", + "gps_code": "AYOX", + "local_code": "MOI" + }, + { + "id": "331003", + "ident": "AYOY", + "type": "small_airport", + "name": "Open Bay Airport", + "latitude_deg": "-4.794727", + "longitude_deg": "151.696195", + "elevation_ft": "33", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EBR", + "municipality": "Maitanakunai", + "scheduled_service": "no", + "gps_code": "AYOY", + "iata_code": "OPB", + "local_code": "OBY" + }, + { + "id": "313222", + "ident": "AYOZ", + "type": "small_airport", + "name": "Kora Airstrip", + "latitude_deg": "-6.4304", + "longitude_deg": "145.0931", + "elevation_ft": "5745", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Kora", + "scheduled_service": "no", + "gps_code": "AYOZ", + "local_code": "KORA" + }, + { + "id": "312124", + "ident": "AYPA", + "type": "small_airport", + "name": "Somokopa Airstrip", + "latitude_deg": "-7.0838", + "longitude_deg": "142.514", + "elevation_ft": "489", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Somokopa", + "scheduled_service": "no", + "gps_code": "AYPA" + }, + { + "id": "311954", + "ident": "AYPC", + "type": "small_airport", + "name": "Pangoa Airport", + "latitude_deg": "-7.0226", + "longitude_deg": "141.5605", + "elevation_ft": "60", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Pangoa", + "scheduled_service": "no", + "gps_code": "AYPC", + "iata_code": "PGB", + "local_code": "PGA" + }, + { + "id": "316621", + "ident": "AYPG", + "type": "small_airport", + "name": "Pangia Airport", + "latitude_deg": "-6.386", + "longitude_deg": "144.1084", + "elevation_ft": "5340", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Pangia", + "scheduled_service": "no", + "gps_code": "AYPG", + "iata_code": "PGN", + "local_code": "PNA" + }, + { + "id": "311618", + "ident": "AYPI", + "type": "small_airport", + "name": "Kapi Airstrip", + "latitude_deg": "-6.371", + "longitude_deg": "144.6839", + "elevation_ft": "3408", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPK", + "municipality": "Kapi", + "scheduled_service": "no", + "gps_code": "AYPI", + "local_code": "KAPI" + }, + { + "id": "312804", + "ident": "AYPO", + "type": "small_airport", + "name": "Mapoda Airport", + "latitude_deg": "-7.979", + "longitude_deg": "143.1694", + "elevation_ft": "45", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Mapoda", + "scheduled_service": "no", + "gps_code": "AYPO", + "iata_code": "MPF", + "local_code": "MPO", + "keywords": "Mapodo" + }, + { + "id": "312000", + "ident": "AYPQ", + "type": "small_airport", + "name": "Pumani Airport", + "latitude_deg": "-9.7469", + "longitude_deg": "149.4766", + "elevation_ft": "427", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Pumani", + "scheduled_service": "no", + "gps_code": "AYPQ", + "iata_code": "PMN", + "local_code": "PMN" + }, + { + "id": "307113", + "ident": "AYPU", + "type": "small_airport", + "name": "Puri Airport", + "latitude_deg": "-6.47516111111", + "longitude_deg": "143.987222222", + "elevation_ft": "6050", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Puri", + "scheduled_service": "no", + "gps_code": "AYPU" + }, + { + "id": "306998", + "ident": "AYPW", + "type": "small_airport", + "name": "Panakawa Airport", + "latitude_deg": "-7.67205555556", + "longitude_deg": "143.124722222", + "elevation_ft": "42", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "scheduled_service": "no", + "gps_code": "AYPW" + }, + { + "id": "67", + "ident": "AYPY", + "type": "large_airport", + "name": "Port Moresby Jacksons International Airport", + "latitude_deg": "-9.443380355834961", + "longitude_deg": "147.22000122070312", + "elevation_ft": "146", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NCD", + "municipality": "Port Moresby", + "scheduled_service": "yes", + "gps_code": "AYPY", + "iata_code": "POM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jacksons_International_Airport" + }, + { + "id": "312058", + "ident": "AYQB", + "type": "small_airport", + "name": "Simbari Airstrip", + "latitude_deg": "-6.9623", + "longitude_deg": "145.6448", + "elevation_ft": "3560", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Simbari", + "scheduled_service": "no", + "gps_code": "AYQB", + "local_code": "SBR" + }, + { + "id": "312107", + "ident": "AYQM", + "type": "small_airport", + "name": "Simogu Airstrip", + "latitude_deg": "-6.8008", + "longitude_deg": "145.7134", + "elevation_ft": "4990", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Simogu", + "scheduled_service": "no", + "gps_code": "AYQM", + "local_code": "SMG" + }, + { + "id": "312128", + "ident": "AYQO", + "type": "small_airport", + "name": "Sopu Airport", + "latitude_deg": "-8.3038", + "longitude_deg": "147.1659", + "elevation_ft": "6580", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Sopu", + "scheduled_service": "no", + "gps_code": "AYQO", + "iata_code": "SPH", + "local_code": "SOPU" + }, + { + "id": "312022", + "ident": "AYQS", + "type": "small_airport", + "name": "Sialum Airport", + "latitude_deg": "-6.0908", + "longitude_deg": "147.5955", + "elevation_ft": "170", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Sialum", + "scheduled_service": "no", + "gps_code": "AYQS", + "iata_code": "SXA", + "local_code": "SLU" + }, + { + "id": "312316", + "ident": "AYQU", + "type": "small_airport", + "name": "Tsumba Airstrip", + "latitude_deg": "-4.6581", + "longitude_deg": "144.6082", + "elevation_ft": "89", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Tsumba Mission", + "scheduled_service": "no", + "gps_code": "AYQU", + "local_code": "TSU" + }, + { + "id": "312111", + "ident": "AYQV", + "type": "small_airport", + "name": "Sinow Airstrip", + "latitude_deg": "-3.9925", + "longitude_deg": "141.5537", + "elevation_ft": "183", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Sinow", + "scheduled_service": "no", + "gps_code": "AYQV" + }, + { + "id": "312136", + "ident": "AYQW", + "type": "small_airport", + "name": "Sumwari Airstrip", + "latitude_deg": "-4.7508", + "longitude_deg": "142.3686", + "elevation_ft": "465", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Sumwari", + "scheduled_service": "no", + "gps_code": "AYQW", + "local_code": "SMR" + }, + { + "id": "308586", + "ident": "AYRB", + "type": "closed", + "name": "Lakunai Airfield", + "latitude_deg": "-4.223", + "longitude_deg": "152.185", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EBR", + "municipality": "Rabaul", + "scheduled_service": "no", + "gps_code": "AYRB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lakunai_Airfield", + "keywords": "RAB, Old Rabaul Airport" + }, + { + "id": "307082", + "ident": "AYRG", + "type": "small_airport", + "name": "Rumginae Airport", + "latitude_deg": "-5.89722222222", + "longitude_deg": "141.271666667", + "elevation_ft": "160", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "scheduled_service": "no", + "gps_code": "AYRG", + "iata_code": "RMN", + "local_code": "RMG" + }, + { + "id": "308137", + "ident": "AYRI", + "type": "small_airport", + "name": "Karimui Airport", + "latitude_deg": "-6.4921", + "longitude_deg": "144.823", + "elevation_ft": "3640", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPK", + "municipality": "Karimui", + "scheduled_service": "no", + "gps_code": "AYRI", + "iata_code": "KMR", + "local_code": "KRI" + }, + { + "id": "313204", + "ident": "AYRL", + "type": "small_airport", + "name": "Maralina Airstrip", + "latitude_deg": "-6.9015", + "longitude_deg": "146.3698", + "elevation_ft": "431", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Maralina", + "scheduled_service": "no", + "gps_code": "AYRL" + }, + { + "id": "313207", + "ident": "AYRM", + "type": "small_airport", + "name": "Maramuni Airport", + "latitude_deg": "-5.13", + "longitude_deg": "143.4829", + "elevation_ft": "5160", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EPW", + "municipality": "Maramuni", + "scheduled_service": "no", + "gps_code": "AYRM", + "iata_code": "MWI", + "local_code": "MAR" + }, + { + "id": "313206", + "ident": "AYRN", + "type": "small_airport", + "name": "Norambi Airstrip.", + "latitude_deg": "-6.9125", + "longitude_deg": "145.6731", + "elevation_ft": "5100", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Norambi", + "scheduled_service": "no", + "gps_code": "AYRN", + "local_code": "NMB" + }, + { + "id": "312297", + "ident": "AYRR", + "type": "small_airport", + "name": "Tiri Airstrip", + "latitude_deg": "-6.6815", + "longitude_deg": "144.1842", + "elevation_ft": "4545", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Tiri", + "scheduled_service": "no", + "gps_code": "AYRR", + "local_code": "TIRI" + }, + { + "id": "311699", + "ident": "AYRT", + "type": "small_airport", + "name": "Kirinbit Airstrip", + "latitude_deg": "-4.2839", + "longitude_deg": "143.1512", + "elevation_ft": "60", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Kirinbit", + "scheduled_service": "no", + "gps_code": "AYRT", + "local_code": "KBT", + "keywords": "Kilimbit" + }, + { + "id": "311745", + "ident": "AYRV", + "type": "small_airport", + "name": "May River Airstrip", + "latitude_deg": "-4.3615", + "longitude_deg": "141.785", + "elevation_ft": "107", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "May River", + "scheduled_service": "no", + "gps_code": "AYRV", + "iata_code": "MRH", + "local_code": "MRV" + }, + { + "id": "313858", + "ident": "AYRX", + "type": "heliport", + "name": "Mount Boregoro Helicopter Landing Site", + "latitude_deg": "-9.8944", + "longitude_deg": "148.1069", + "elevation_ft": "898", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Mount Boregoro", + "scheduled_service": "no", + "gps_code": "AYRX" + }, + { + "id": "307595", + "ident": "AYSA", + "type": "small_airport", + "name": "Suabi Airport", + "latitude_deg": "-6.10444444444", + "longitude_deg": "142.278333333", + "elevation_ft": "465", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "scheduled_service": "no", + "gps_code": "AYSA", + "iata_code": "SBE", + "local_code": "SUA" + }, + { + "id": "312113", + "ident": "AYSB", + "type": "small_airport", + "name": "Sirebi Airstrip", + "latitude_deg": "-7.2196", + "longitude_deg": "144.2352", + "elevation_ft": "115", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Sirebi", + "scheduled_service": "no", + "gps_code": "AYSB" + }, + { + "id": "307120", + "ident": "AYSE", + "type": "small_airport", + "name": "Simberi Airport", + "latitude_deg": "-2.66222222222", + "longitude_deg": "151.997777778", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NIK", + "municipality": "Simberi Island", + "scheduled_service": "no", + "gps_code": "AYSE", + "iata_code": "NIS", + "local_code": "SBI" + }, + { + "id": "307114", + "ident": "AYSG", + "type": "small_airport", + "name": "Sila Airport", + "latitude_deg": "-9.07355555556", + "longitude_deg": "148.38925", + "elevation_ft": "2230", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "municipality": "Sila Mission", + "scheduled_service": "no", + "gps_code": "AYSG", + "iata_code": "SIL", + "local_code": "SILA" + }, + { + "id": "312961", + "ident": "AYSH", + "type": "small_airport", + "name": "Sabah Airport", + "latitude_deg": "-5.5765", + "longitude_deg": "155.0489", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NSB", + "municipality": "Sabah", + "scheduled_service": "no", + "gps_code": "AYSH", + "iata_code": "SBV", + "local_code": "SAB" + }, + { + "id": "312018", + "ident": "AYSI", + "type": "small_airport", + "name": "Seltamin Airstrip", + "latitude_deg": "-5.4122", + "longitude_deg": "141.8252", + "elevation_ft": "4285", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Seltamin", + "scheduled_service": "no", + "gps_code": "AYSI", + "local_code": "SLT" + }, + { + "id": "307115", + "ident": "AYSJ", + "type": "small_airport", + "name": "Simbai Airport", + "latitude_deg": "-5.278611111110001", + "longitude_deg": "144.544722222", + "elevation_ft": "5804", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Simbai", + "scheduled_service": "no", + "gps_code": "AYSJ", + "iata_code": "SIM", + "local_code": "SAI" + }, + { + "id": "312005", + "ident": "AYSM", + "type": "small_airport", + "name": "Samberigi Airstrip", + "latitude_deg": "-6.7193", + "longitude_deg": "143.9338", + "elevation_ft": "3830", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Samberigi Mission", + "scheduled_service": "no", + "gps_code": "AYSM", + "local_code": "SGI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Samberigi_Airport" + }, + { + "id": "313471", + "ident": "AYSO", + "type": "small_airport", + "name": "Selbang Airport", + "latitude_deg": "-5.315", + "longitude_deg": "141.752", + "elevation_ft": "5130", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Selbang", + "scheduled_service": "no", + "gps_code": "AYSO", + "iata_code": "SBC", + "local_code": "SEL" + }, + { + "id": "314638", + "ident": "AYSQ", + "type": "small_airport", + "name": "Sepik Plains Airport", + "latitude_deg": "-3.8821", + "longitude_deg": "143.6734", + "elevation_ft": "230", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Sepik Plains", + "scheduled_service": "no", + "gps_code": "AYSQ", + "iata_code": "SPV", + "local_code": "SPP" + }, + { + "id": "312012", + "ident": "AYSR", + "type": "small_airport", + "name": "Sangera Airstrip", + "latitude_deg": "-3.9678", + "longitude_deg": "143.2763", + "elevation_ft": "127", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Sangera", + "scheduled_service": "no", + "gps_code": "AYSR", + "local_code": "SGA" + }, + { + "id": "307620", + "ident": "AYST", + "type": "small_airport", + "name": "Sturt Island Airport", + "latitude_deg": "-8.1525", + "longitude_deg": "142.268444444", + "elevation_ft": "40", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "scheduled_service": "no", + "gps_code": "AYST", + "local_code": "STI" + }, + { + "id": "315130", + "ident": "AYSV", + "type": "small_airport", + "name": "Sauren Airport", + "latitude_deg": "-5.9701", + "longitude_deg": "148.8543", + "elevation_ft": "46", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WBK", + "municipality": "Sauren", + "scheduled_service": "no", + "gps_code": "AYSV", + "iata_code": "SXW", + "local_code": "SAU", + "keywords": "Souren" + }, + { + "id": "313953", + "ident": "AYSX", + "type": "small_airport", + "name": "Masa Airport", + "latitude_deg": "-6.345", + "longitude_deg": "147.591", + "elevation_ft": "5900", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Masa", + "scheduled_service": "no", + "gps_code": "AYSX", + "iata_code": "MBV", + "local_code": "MASA" + }, + { + "id": "312021", + "ident": "AYSY", + "type": "small_airport", + "name": "Serra Airstrip", + "latitude_deg": "-2.9739", + "longitude_deg": "141.9297", + "elevation_ft": "37", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Serai", + "scheduled_service": "no", + "gps_code": "AYSY", + "local_code": "SER" + }, + { + "id": "312003", + "ident": "AYSZ", + "type": "small_airport", + "name": "Samanzing Airstrip", + "latitude_deg": "-6.4513", + "longitude_deg": "147.0673", + "elevation_ft": "6042", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Samanzing", + "scheduled_service": "no", + "gps_code": "AYSZ", + "local_code": "SMZ" + }, + { + "id": "32451", + "ident": "AYTA", + "type": "small_airport", + "name": "Tari Airport", + "latitude_deg": "-5.84499979019", + "longitude_deg": "142.947998047", + "elevation_ft": "5500", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-HE", + "municipality": "Tari", + "scheduled_service": "yes", + "gps_code": "AYTA", + "iata_code": "TIZ" + }, + { + "id": "32425", + "ident": "AYTB", + "type": "small_airport", + "name": "Tabubil Airport", + "latitude_deg": "-5.27861", + "longitude_deg": "141.225998", + "elevation_ft": "1570", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Tabubil", + "scheduled_service": "yes", + "gps_code": "AYTB", + "iata_code": "TBG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tabubil_Airport" + }, + { + "id": "312247", + "ident": "AYTC", + "type": "small_airport", + "name": "Tapila Airstrip", + "latitude_deg": "-8.4188", + "longitude_deg": "142.9043", + "elevation_ft": "48", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Mutam", + "scheduled_service": "no", + "gps_code": "AYTC", + "local_code": "TPL" + }, + { + "id": "309954", + "ident": "AYTD", + "type": "small_airport", + "name": "Teredau Airport", + "latitude_deg": "-7.3205", + "longitude_deg": "144.6384", + "elevation_ft": "100", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Tetehui", + "scheduled_service": "no", + "gps_code": "AYTD" + }, + { + "id": "307594", + "ident": "AYTI", + "type": "small_airport", + "name": "Tapini Airport", + "latitude_deg": "-8.35666666667", + "longitude_deg": "146.989166667", + "elevation_ft": "3100", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Tapini", + "scheduled_service": "yes", + "gps_code": "AYTI", + "iata_code": "TPI", + "local_code": "TAP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tapini_Airport" + }, + { + "id": "68", + "ident": "AYTK", + "type": "medium_airport", + "name": "Tokua Airport", + "latitude_deg": "-4.34046", + "longitude_deg": "152.380005", + "elevation_ft": "49", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EBR", + "municipality": "Kokopo", + "scheduled_service": "yes", + "gps_code": "AYTK", + "iata_code": "RAB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rabaul_Airport" + }, + { + "id": "312139", + "ident": "AYTL", + "type": "small_airport", + "name": "Talbakul Airstrip", + "latitude_deg": "-6.3708", + "longitude_deg": "144.7167", + "elevation_ft": "3500", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPK", + "municipality": "Talbakul", + "scheduled_service": "no", + "gps_code": "AYTL", + "local_code": "TLK" + }, + { + "id": "312140", + "ident": "AYTM", + "type": "small_airport", + "name": "Tamo Airstrip", + "latitude_deg": "-4.7246", + "longitude_deg": "144.1529", + "elevation_ft": "140", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Tamo", + "scheduled_service": "no", + "gps_code": "AYTM", + "local_code": "TAMO" + }, + { + "id": "307593", + "ident": "AYTN", + "type": "small_airport", + "name": "Tekin Airport", + "latitude_deg": "-5.24366666667", + "longitude_deg": "142.165194444", + "elevation_ft": "5785", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Tekin", + "scheduled_service": "no", + "gps_code": "AYTN", + "iata_code": "TKW", + "local_code": "TEK" + }, + { + "id": "309953", + "ident": "AYTP", + "type": "small_airport", + "name": "Tep Tep Airport", + "latitude_deg": "-5.9553", + "longitude_deg": "146.5595", + "elevation_ft": "7011", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Teptep", + "scheduled_service": "no", + "gps_code": "AYTP", + "iata_code": "TEP", + "local_code": "TEP" + }, + { + "id": "312245", + "ident": "AYTQ", + "type": "small_airport", + "name": "Tapen Airstrip", + "latitude_deg": "-5.8545", + "longitude_deg": "146.6371", + "elevation_ft": "5066", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Tapen", + "scheduled_service": "no", + "gps_code": "AYTQ" + }, + { + "id": "312313", + "ident": "AYTS", + "type": "small_airport", + "name": "Tsewi Airport", + "latitude_deg": "-7.0695", + "longitude_deg": "146.1272", + "elevation_ft": "4185", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Tsewi", + "scheduled_service": "no", + "gps_code": "AYTS", + "iata_code": "TSW", + "local_code": "TSE" + }, + { + "id": "312249", + "ident": "AYTT", + "type": "small_airport", + "name": "Tarakbits Airport", + "latitude_deg": "-5.614", + "longitude_deg": "141.0421", + "elevation_ft": "281", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Tarakbits", + "scheduled_service": "no", + "gps_code": "AYTT", + "iata_code": "TRJ", + "local_code": "TRT", + "keywords": "Tarakpits, Tarabits" + }, + { + "id": "312256", + "ident": "AYTW", + "type": "small_airport", + "name": "Tawa Airport", + "latitude_deg": "-7.4463", + "longitude_deg": "146.1067", + "elevation_ft": "5020", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Tawa", + "scheduled_service": "no", + "gps_code": "AYTW", + "iata_code": "TWY", + "local_code": "TAWA" + }, + { + "id": "312258", + "ident": "AYTZ", + "type": "small_airport", + "name": "Tekadu Airport", + "latitude_deg": "-7.6808", + "longitude_deg": "146.5503", + "elevation_ft": "1310", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Tekadu", + "scheduled_service": "no", + "gps_code": "AYTZ", + "iata_code": "TKB", + "local_code": "TKD" + }, + { + "id": "301673", + "ident": "AYU", + "type": "small_airport", + "name": "Aiyura Airport", + "latitude_deg": "-6.33805555556", + "longitude_deg": "145.904166667", + "elevation_ft": "5355", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Aiyura Valley", + "scheduled_service": "no", + "gps_code": "AYAY", + "iata_code": "AYU", + "local_code": "AYU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aiyura_Airport", + "keywords": "Ukarumpa, Onmuna" + }, + { + "id": "312385", + "ident": "AYUA", + "type": "small_airport", + "name": "Utai Airstrip", + "latitude_deg": "-3.386", + "longitude_deg": "141.5868", + "elevation_ft": "707", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Utai", + "scheduled_service": "no", + "gps_code": "AYUA", + "local_code": "UTAI" + }, + { + "id": "312334", + "ident": "AYUC", + "type": "small_airport", + "name": "Umba Airport", + "latitude_deg": "-7.0214", + "longitude_deg": "145.966", + "elevation_ft": "5950", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Umba", + "scheduled_service": "no", + "gps_code": "AYUC", + "iata_code": "UMC", + "local_code": "UMBA" + }, + { + "id": "313790", + "ident": "AYUD", + "type": "heliport", + "name": "Kais-Udave Helicopter landing site", + "latitude_deg": "-8.7819", + "longitude_deg": "147.2785", + "elevation_ft": "3300", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "scheduled_service": "no", + "gps_code": "AYUD" + }, + { + "id": "312379", + "ident": "AYUE", + "type": "small_airport", + "name": "Uroubi Airport", + "latitude_deg": "-9.5162", + "longitude_deg": "148.5591", + "elevation_ft": "481", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "municipality": "Uroubi", + "scheduled_service": "no", + "gps_code": "AYUE", + "iata_code": "URU", + "local_code": "URO" + }, + { + "id": "310572", + "ident": "AYUG", + "type": "small_airport", + "name": "Brugam Airstrip", + "latitude_deg": "-3.6381", + "longitude_deg": "142.8379", + "elevation_ft": "595", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Wa'ahun", + "scheduled_service": "no", + "gps_code": "AYUG", + "local_code": "BRG" + }, + { + "id": "311485", + "ident": "AYUL", + "type": "small_airport", + "name": "Musula Airstrip", + "latitude_deg": "-6.8385", + "longitude_deg": "142.8983", + "elevation_ft": "740", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Musula", + "scheduled_service": "no", + "gps_code": "AYUL", + "local_code": "MSL" + }, + { + "id": "311079", + "ident": "AYUN", + "type": "small_airport", + "name": "Bunam Airstrip", + "latitude_deg": "-4.6564", + "longitude_deg": "144.2517", + "elevation_ft": "48", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Bunam", + "scheduled_service": "no", + "gps_code": "AYUN", + "local_code": "BNM" + }, + { + "id": "311943", + "ident": "AYUO", + "type": "small_airport", + "name": "Omaura Airstrip", + "latitude_deg": "-6.3679", + "longitude_deg": "145.9902", + "elevation_ft": "4860", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Omaura", + "scheduled_service": "no", + "gps_code": "AYUO", + "local_code": "ORA" + }, + { + "id": "313565", + "ident": "AYUQ", + "type": "small_airport", + "name": "Kumbwareta Airstrip", + "latitude_deg": "-5.5078", + "longitude_deg": "144.1171", + "elevation_ft": "4067", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WHM", + "municipality": "Kumbwareta", + "scheduled_service": "no", + "gps_code": "AYUQ", + "local_code": "KUM" + }, + { + "id": "312336", + "ident": "AYUR", + "type": "small_airport", + "name": "Upiara Airport", + "latitude_deg": "-8.5411", + "longitude_deg": "142.6503", + "elevation_ft": "52", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Upiara", + "scheduled_service": "no", + "gps_code": "AYUR", + "iata_code": "UPR", + "local_code": "UPA" + }, + { + "id": "312132", + "ident": "AYUS", + "type": "small_airport", + "name": "Suame Airstrip", + "latitude_deg": "-8.3684", + "longitude_deg": "142.5862", + "elevation_ft": "71", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Suame", + "scheduled_service": "no", + "gps_code": "AYUS" + }, + { + "id": "311082", + "ident": "AYUT", + "type": "small_airport", + "name": "Bunguwat Airstrip", + "latitude_deg": "-6.005", + "longitude_deg": "146.7205", + "elevation_ft": "5740", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Bunguwat", + "scheduled_service": "no", + "gps_code": "AYUT", + "local_code": "BWT" + }, + { + "id": "312319", + "ident": "AYUV", + "type": "small_airport", + "name": "Tuvau Airstrip", + "latitude_deg": "-6.6025", + "longitude_deg": "145.8372", + "elevation_ft": "5300", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Tuvau", + "scheduled_service": "no", + "gps_code": "AYUV", + "local_code": "TUV" + }, + { + "id": "312381", + "ident": "AYUX", + "type": "small_airport", + "name": "Usarumpia Airstrip", + "latitude_deg": "-6.9858", + "longitude_deg": "145.8102", + "elevation_ft": "5820", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Usarumpia", + "scheduled_service": "no", + "gps_code": "AYUX", + "local_code": "URP" + }, + { + "id": "312427", + "ident": "AYUZ", + "type": "small_airport", + "name": "Uvol Airport", + "latitude_deg": "-6.0178", + "longitude_deg": "150.9557", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EBR", + "municipality": "Uvol", + "scheduled_service": "no", + "gps_code": "AYUZ", + "iata_code": "UVO", + "local_code": "UVOL" + }, + { + "id": "312429", + "ident": "AYVA", + "type": "small_airport", + "name": "Vailala Airstrip", + "latitude_deg": "-7.7677", + "longitude_deg": "145.4857", + "elevation_ft": "85", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Hepa", + "scheduled_service": "no", + "gps_code": "AYVA" + }, + { + "id": "312304", + "ident": "AYVB", + "type": "small_airport", + "name": "Tobou Airstrip", + "latitude_deg": "-6.4026", + "longitude_deg": "147.4223", + "elevation_ft": "4732", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Tobou", + "scheduled_service": "no", + "gps_code": "AYVB", + "local_code": "TOB" + }, + { + "id": "314791", + "ident": "AYVL", + "type": "small_airport", + "name": "Talasea Airport", + "latitude_deg": "-5.2726", + "longitude_deg": "150.0089", + "elevation_ft": "44", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WBK", + "municipality": "Talasea", + "scheduled_service": "no", + "gps_code": "AYVL", + "iata_code": "TLW", + "local_code": "TLS" + }, + { + "id": "312309", + "ident": "AYVM", + "type": "small_airport", + "name": "Torembi Airport", + "latitude_deg": "-4.0165", + "longitude_deg": "143.1329", + "elevation_ft": "90", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Torembi", + "scheduled_service": "no", + "gps_code": "AYVM", + "iata_code": "TCJ", + "local_code": "TBI" + }, + { + "id": "69", + "ident": "AYVN", + "type": "medium_airport", + "name": "Vanimo Airport", + "latitude_deg": "-2.6926", + "longitude_deg": "141.3028", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Vanimo", + "scheduled_service": "yes", + "gps_code": "AYVN", + "iata_code": "VAI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vanimo_Airport" + }, + { + "id": "312307", + "ident": "AYVO", + "type": "small_airport", + "name": "Tonu Airport", + "latitude_deg": "-6.6552", + "longitude_deg": "155.4326", + "elevation_ft": "300", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NSB", + "municipality": "Tonu", + "scheduled_service": "no", + "gps_code": "AYVO", + "iata_code": "TON", + "local_code": "TONU" + }, + { + "id": "312435", + "ident": "AYVP", + "type": "small_airport", + "name": "Woposali Airstrip", + "latitude_deg": "-6.6577", + "longitude_deg": "144.2974", + "elevation_ft": "2009", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Woposali", + "scheduled_service": "no", + "gps_code": "AYVP", + "local_code": "WOS", + "keywords": "Wopasali" + }, + { + "id": "307286", + "ident": "AYWB", + "type": "small_airport", + "name": "Wabo Airport", + "latitude_deg": "-6.98944444444", + "longitude_deg": "145.075111111", + "elevation_ft": "132", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Wabo", + "scheduled_service": "no", + "gps_code": "AYWB", + "iata_code": "WAO", + "local_code": "WABO" + }, + { + "id": "70", + "ident": "AYWD", + "type": "medium_airport", + "name": "Wapenamanda Airport", + "latitude_deg": "-5.635293", + "longitude_deg": "143.892231", + "elevation_ft": "5889", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EPW", + "municipality": "Wapenamanda", + "scheduled_service": "yes", + "gps_code": "AYWD", + "iata_code": "WBM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wapenamanda_Airport" + }, + { + "id": "316464", + "ident": "AYWF", + "type": "small_airport", + "name": "Wawoi Falls Airport", + "latitude_deg": "-6.9523", + "longitude_deg": "142.6557", + "elevation_ft": "370", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Wavoi Falls", + "scheduled_service": "no", + "gps_code": "AYWF", + "iata_code": "WAJ", + "local_code": "WWF", + "keywords": "Wavwoi Falls" + }, + { + "id": "71", + "ident": "AYWK", + "type": "medium_airport", + "name": "Wewak International Airport", + "latitude_deg": "-3.58383011818", + "longitude_deg": "143.669006348", + "elevation_ft": "19", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Wewak", + "scheduled_service": "yes", + "gps_code": "AYWK", + "iata_code": "WWK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wewak_International_Airport" + }, + { + "id": "311836", + "ident": "AYWN", + "type": "small_airport", + "name": "Nugwaia Airstrip", + "latitude_deg": "-3.8183", + "longitude_deg": "142.835", + "elevation_ft": "279", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Nugwaia", + "scheduled_service": "no", + "gps_code": "AYWN", + "local_code": "NUG", + "keywords": "Nunguaiia" + }, + { + "id": "307586", + "ident": "AYWO", + "type": "small_airport", + "name": "Wonenara Airport", + "latitude_deg": "-6.796861111110001", + "longitude_deg": "145.891944444", + "elevation_ft": "5028", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Wonenara", + "scheduled_service": "no", + "gps_code": "AYWO", + "iata_code": "WOA", + "local_code": "WOA" + }, + { + "id": "320097", + "ident": "AYWQ", + "type": "small_airport", + "name": "Wakunai Airport", + "latitude_deg": "-5.8603", + "longitude_deg": "155.2223", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NSB", + "municipality": "Wakunai", + "scheduled_service": "no", + "gps_code": "AYWQ", + "iata_code": "WKN", + "local_code": "WAI" + }, + { + "id": "307291", + "ident": "AYWS", + "type": "small_airport", + "name": "Wasu Airport", + "latitude_deg": "-5.96170944919", + "longitude_deg": "147.19822526", + "elevation_ft": "34", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Wasu", + "scheduled_service": "no", + "gps_code": "AYWS", + "iata_code": "WSU", + "local_code": "WASU" + }, + { + "id": "307247", + "ident": "AYWT", + "type": "small_airport", + "name": "Woitape Airport", + "latitude_deg": "-8.54583333333", + "longitude_deg": "147.2525", + "elevation_ft": "5200", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Fatima Mission", + "scheduled_service": "yes", + "gps_code": "AYWT", + "iata_code": "WTP", + "local_code": "WTP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Woitape_Airport" + }, + { + "id": "307290", + "ident": "AYWU", + "type": "small_airport", + "name": "Wau Airport", + "latitude_deg": "-7.345556", + "longitude_deg": "146.718611", + "elevation_ft": "3600", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Wau", + "scheduled_service": "no", + "gps_code": "AYWU", + "iata_code": "WUG", + "local_code": "WAU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wau_Airport,_Papua_New_Guinea" + }, + { + "id": "313135", + "ident": "AYWV", + "type": "small_airport", + "name": "Warasai Airstrip", + "latitude_deg": "-4.012", + "longitude_deg": "142.51", + "elevation_ft": "150", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Warasai", + "scheduled_service": "no", + "gps_code": "AYWV", + "local_code": "WSI" + }, + { + "id": "311077", + "ident": "AYXB", + "type": "small_airport", + "name": "Buluwo Airstrip", + "latitude_deg": "-3.6753", + "longitude_deg": "142.0151", + "elevation_ft": "600", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Buluwo", + "scheduled_service": "no", + "gps_code": "AYXB", + "local_code": "BWO" + }, + { + "id": "311042", + "ident": "AYXE", + "type": "small_airport", + "name": "Yeva Airport", + "latitude_deg": "-7.548", + "longitude_deg": "146.188", + "elevation_ft": "4510", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Yeva", + "scheduled_service": "no", + "gps_code": "AYXE", + "iata_code": "YVD", + "local_code": "YEVA" + }, + { + "id": "312134", + "ident": "AYXG", + "type": "small_airport", + "name": "Sugu Airstrip", + "latitude_deg": "-6.3907", + "longitude_deg": "143.5565", + "elevation_ft": "4105", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Sugu", + "scheduled_service": "no", + "gps_code": "AYXG", + "local_code": "SUGU" + }, + { + "id": "312056", + "ident": "AYXI", + "type": "small_airport", + "name": "Sim Airport", + "latitude_deg": "-7.75", + "longitude_deg": "146.9273", + "elevation_ft": "5460", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Sim", + "scheduled_service": "no", + "gps_code": "AYXI", + "iata_code": "SMJ", + "local_code": "SIM" + }, + { + "id": "312115", + "ident": "AYXS", + "type": "small_airport", + "name": "Sisamin Airstrip", + "latitude_deg": "-5.1363", + "longitude_deg": "142.284", + "elevation_ft": "1675", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Sisamin", + "scheduled_service": "no", + "gps_code": "AYXS", + "local_code": "SIS" + }, + { + "id": "316476", + "ident": "AYXW", + "type": "small_airport", + "name": "Weam Airport", + "latitude_deg": "-8.6184", + "longitude_deg": "141.1381", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Weam", + "scheduled_service": "no", + "gps_code": "AYXW", + "iata_code": "WEP", + "local_code": "WEAM" + }, + { + "id": "312483", + "ident": "AYXY", + "type": "small_airport", + "name": "Yebil Airstrip", + "latitude_deg": "-3.4625", + "longitude_deg": "141.9559", + "elevation_ft": "1400", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Yebil", + "scheduled_service": "no", + "gps_code": "AYXY", + "local_code": "YBL" + }, + { + "id": "300786", + "ident": "AYY", + "type": "seaplane_base", + "name": "Arugam Bay SPB", + "latitude_deg": "6.86", + "longitude_deg": "81.82388888890002", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-5", + "municipality": "Pottuvil", + "scheduled_service": "no", + "iata_code": "AYY" + }, + { + "id": "312478", + "ident": "AYYD", + "type": "small_airport", + "name": "Yatoam Airstrip", + "latitude_deg": "-5.0949", + "longitude_deg": "142.3846", + "elevation_ft": "2060", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-HE", + "municipality": "Yatoam", + "scheduled_service": "no", + "gps_code": "AYYD" + }, + { + "id": "313341", + "ident": "AYYE", + "type": "small_airport", + "name": "Yalumet Airport", + "latitude_deg": "-6.09", + "longitude_deg": "147.0117", + "elevation_ft": "2600", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Yalumet", + "scheduled_service": "no", + "gps_code": "AYYE", + "iata_code": "KYX", + "local_code": "YLT" + }, + { + "id": "312500", + "ident": "AYYG", + "type": "small_airport", + "name": "Yemin Airstrip", + "latitude_deg": "-3.967", + "longitude_deg": "142.2912", + "elevation_ft": "230", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Yemin", + "scheduled_service": "no", + "gps_code": "AYYG", + "local_code": "YMN" + }, + { + "id": "312497", + "ident": "AYYI", + "type": "small_airport", + "name": "Yili Airstrip", + "latitude_deg": "-3.5322", + "longitude_deg": "142.1645", + "elevation_ft": "1500", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Yili", + "scheduled_service": "no", + "gps_code": "AYYI", + "local_code": "YILI" + }, + { + "id": "316539", + "ident": "AYYJ", + "type": "small_airport", + "name": "Yanungen Airstrip", + "latitude_deg": "-3.4574", + "longitude_deg": "142.54", + "elevation_ft": "1880", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Yanungen", + "scheduled_service": "no", + "gps_code": "AYYJ", + "local_code": "YGN" + }, + { + "id": "311796", + "ident": "AYYN", + "type": "small_airport", + "name": "Yimnalem Airstrip", + "latitude_deg": "-5.1441", + "longitude_deg": "144.5956", + "elevation_ft": "4800", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Yimnalem", + "scheduled_service": "no", + "gps_code": "AYYN", + "local_code": "YML", + "keywords": "Yimnalen" + }, + { + "id": "312446", + "ident": "AYYQ", + "type": "small_airport", + "name": "Yagrombok Airstrip", + "latitude_deg": "-3.585", + "longitude_deg": "142.6285", + "elevation_ft": "1509", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Yagrombok", + "scheduled_service": "no", + "gps_code": "AYYQ", + "local_code": "YMK", + "keywords": "Yagrumbok" + }, + { + "id": "312469", + "ident": "AYYR", + "type": "small_airport", + "name": "Yasuru Airport", + "latitude_deg": "-6.6015", + "longitude_deg": "146.1813", + "elevation_ft": "1520", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Yasuru", + "scheduled_service": "yes", + "gps_code": "AYYR", + "iata_code": "KSX", + "local_code": "YAS" + }, + { + "id": "313173", + "ident": "AYYT", + "type": "small_airport", + "name": "Mount Tauwa Airstrip", + "latitude_deg": "-6.7293", + "longitude_deg": "144.303", + "elevation_ft": "3700", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Mount Tauwa", + "scheduled_service": "no", + "gps_code": "AYYT", + "local_code": "MTA" + }, + { + "id": "313175", + "ident": "AYYU", + "type": "small_airport", + "name": "Mui Airstrip", + "latitude_deg": "-4.7912", + "longitude_deg": "144.3113", + "elevation_ft": "132", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Mui", + "scheduled_service": "no", + "gps_code": "AYYU", + "local_code": "MUI" + }, + { + "id": "312480", + "ident": "AYYV", + "type": "small_airport", + "name": "Yawa Airstrip", + "latitude_deg": "-4.1003", + "longitude_deg": "142.1351", + "elevation_ft": "120", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Yawa", + "scheduled_service": "no", + "gps_code": "AYYV", + "local_code": "YAWA" + }, + { + "id": "312486", + "ident": "AYYW", + "type": "small_airport", + "name": "Yawan Airstrip", + "latitude_deg": "-6.1339", + "longitude_deg": "146.8438", + "elevation_ft": "4870", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Yawan", + "scheduled_service": "no", + "gps_code": "AYYW", + "local_code": "YWN" + }, + { + "id": "354428", + "ident": "AYYZ", + "type": "small_airport", + "name": "Yambaitok", + "latitude_deg": "-4.995345", + "longitude_deg": "143.96143", + "elevation_ft": "637", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Yambaitok", + "scheduled_service": "no", + "gps_code": "AYYZ", + "local_code": "AYYZ", + "keywords": "Yambaitok" + }, + { + "id": "301768", + "ident": "AYZ", + "type": "closed", + "name": "Zahn's Airport", + "latitude_deg": "40.71", + "longitude_deg": "-73.4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Amityville", + "scheduled_service": "no", + "iata_code": "AYZ" + }, + { + "id": "312053", + "ident": "AYZB", + "type": "small_airport", + "name": "Sibilanga Airstrip", + "latitude_deg": "-3.4458", + "longitude_deg": "142.501", + "elevation_ft": "2330", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Sibilanga Mission", + "scheduled_service": "no", + "gps_code": "AYZB", + "local_code": "SIB" + }, + { + "id": "315022", + "ident": "AYZM", + "type": "small_airport", + "name": "Wasum Airport", + "latitude_deg": "-6.0491", + "longitude_deg": "149.337", + "elevation_ft": "175", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WBK", + "municipality": "Wasum", + "scheduled_service": "no", + "gps_code": "AYZM", + "iata_code": "WUM", + "local_code": "WSM" + }, + { + "id": "312126", + "ident": "AYZQ", + "type": "small_airport", + "name": "Sopise Airstrip", + "latitude_deg": "-6.7887", + "longitude_deg": "144.1593", + "elevation_ft": "3450", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Sopise", + "scheduled_service": "no", + "gps_code": "AYZQ", + "local_code": "SPS", + "keywords": "Sopese" + }, + { + "id": "311948", + "ident": "AYZU", + "type": "small_airport", + "name": "Oum Airstrip", + "latitude_deg": "-4.2684", + "longitude_deg": "142.1273", + "elevation_ft": "80", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Oum", + "scheduled_service": "no", + "gps_code": "AYZU", + "local_code": "OUM" + }, + { + "id": "312051", + "ident": "AYZW", + "type": "small_airport", + "name": "Siawi Airstrip", + "latitude_deg": "-4.061", + "longitude_deg": "141.4197", + "elevation_ft": "230", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Siawi", + "scheduled_service": "no", + "gps_code": "AYZW", + "local_code": "SII" + }, + { + "id": "312499", + "ident": "AYZY", + "type": "small_airport", + "name": "Yilui Airstrip", + "latitude_deg": "-3.9292", + "longitude_deg": "142.2045", + "elevation_ft": "265", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Yilui", + "scheduled_service": "no", + "gps_code": "AYZY", + "local_code": "YLU" + }, + { + "id": "311791", + "ident": "AYZZ", + "type": "small_airport", + "name": "Zuebak Airstrip", + "latitude_deg": "-6.3088", + "longitude_deg": "146.5568", + "elevation_ft": "3560", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Zuebak", + "scheduled_service": "no", + "gps_code": "AYZZ", + "local_code": "ZBK", + "keywords": "Zueibak" + }, + { + "id": "44941", + "ident": "AZ-0001", + "type": "medium_airport", + "name": "Zabrat Airport", + "latitude_deg": "40.4955422161", + "longitude_deg": "49.9768066406", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-BA", + "municipality": "Baku", + "scheduled_service": "no", + "gps_code": "UBTT", + "iata_code": "ZXT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zabrat_Airport" + }, + { + "id": "44942", + "ident": "AZ-0002", + "type": "small_airport", + "name": "Khachmaz Airport", + "latitude_deg": "41.459152", + "longitude_deg": "48.832635", + "elevation_ft": "62", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-XAC", + "municipality": "Khachmaz", + "scheduled_service": "no", + "gps_code": "UBBH" + }, + { + "id": "44943", + "ident": "AZ-0003", + "type": "small_airport", + "name": "Shaki Airport", + "latitude_deg": "41.136553", + "longitude_deg": "47.1595", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-SA", + "municipality": "Shaki", + "scheduled_service": "no", + "gps_code": "UBEI" + }, + { + "id": "44945", + "ident": "AZ-0004", + "type": "small_airport", + "name": "Naftalan Airport", + "latitude_deg": "40.51592", + "longitude_deg": "46.829481", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-GOR", + "municipality": "Naftalan", + "scheduled_service": "no", + "gps_code": "UBEN" + }, + { + "id": "44946", + "ident": "AZ-0005", + "type": "small_airport", + "name": "Tanrykulular Airport", + "latitude_deg": "40.742900144699995", + "longitude_deg": "46.8570113182", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-YE", + "scheduled_service": "no" + }, + { + "id": "44947", + "ident": "AZ-0006", + "type": "closed", + "name": "Agdash Airport", + "latitude_deg": "40.664268", + "longitude_deg": "47.514801", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-AGS", + "municipality": "Agdash", + "scheduled_service": "no", + "keywords": "Ağdaş, Aghdash" + }, + { + "id": "44948", + "ident": "AZ-0007", + "type": "closed", + "name": "Göyçay Airport", + "latitude_deg": "40.6231834773", + "longitude_deg": "47.7628523111", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-GOY", + "scheduled_service": "no" + }, + { + "id": "44949", + "ident": "AZ-0008", + "type": "small_airport", + "name": "Bygyr Airport", + "latitude_deg": "40.529074712500005", + "longitude_deg": "47.8300738335", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-GOY", + "scheduled_service": "no" + }, + { + "id": "44950", + "ident": "AZ-0009", + "type": "small_airport", + "name": "Mollakend Airport", + "latitude_deg": "40.120419", + "longitude_deg": "48.145716", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-KUR", + "municipality": "Mollakend", + "scheduled_service": "no" + }, + { + "id": "44951", + "ident": "AZ-0010", + "type": "small_airport", + "name": "Agjabedi Airport", + "latitude_deg": "40.022291", + "longitude_deg": "47.44935", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-AGC", + "municipality": "Agjabedi", + "scheduled_service": "no", + "gps_code": "UBEY", + "keywords": "Ağcabədi" + }, + { + "id": "44952", + "ident": "AZ-0011", + "type": "medium_airport", + "name": "Fuzuli International Airport", + "latitude_deg": "39.594578", + "longitude_deg": "47.196128", + "elevation_ft": "1247", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-FUZ", + "municipality": "Fuzuli", + "scheduled_service": "no", + "gps_code": "UBBF", + "iata_code": "FZL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fuzuli_International_Airport" + }, + { + "id": "44953", + "ident": "AZ-0012", + "type": "closed", + "name": "Agdam Airport", + "latitude_deg": "39.976002", + "longitude_deg": "47.000145", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-AGM", + "municipality": "Agdam", + "scheduled_service": "no", + "gps_code": "UBEA", + "keywords": "Aghdam, Ağdam" + }, + { + "id": "44954", + "ident": "AZ-0013", + "type": "medium_airport", + "name": "Sitalchay Airbase", + "latitude_deg": "40.807313", + "longitude_deg": "49.431481", + "elevation_ft": "-46", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-XIZ", + "municipality": "Sitalchay", + "scheduled_service": "no" + }, + { + "id": "44955", + "ident": "AZ-0014", + "type": "small_airport", + "name": "Baku Lökbatan Airport", + "latitude_deg": "40.347106", + "longitude_deg": "49.671321", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-BA", + "municipality": "Lökbatan", + "scheduled_service": "no", + "gps_code": "UBLL" + }, + { + "id": "44956", + "ident": "AZ-0015", + "type": "small_airport", + "name": "Sangachaly Air Base", + "latitude_deg": "40.129771", + "longitude_deg": "49.454956", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-BA", + "municipality": "Sangachal", + "scheduled_service": "no", + "keywords": "Sanqaçal" + }, + { + "id": "44957", + "ident": "AZ-0016", + "type": "small_airport", + "name": "Pirsagat Airport", + "latitude_deg": "39.853999", + "longitude_deg": "49.340018", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-BA", + "municipality": "Pirsaat", + "scheduled_service": "no" + }, + { + "id": "44958", + "ident": "AZ-0017", + "type": "small_airport", + "name": "Hajigabul Kazı Magomed Airport", + "latitude_deg": "40.03094", + "longitude_deg": "48.902764", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-HAC", + "municipality": "Hajigabul", + "scheduled_service": "no", + "gps_code": "UBBM", + "keywords": "Eski Hajigabul" + }, + { + "id": "44959", + "ident": "AZ-0018", + "type": "small_airport", + "name": "Qarachala Airport", + "latitude_deg": "39.83179", + "longitude_deg": "48.966751", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-SAL", + "municipality": "Chadirli", + "scheduled_service": "no" + }, + { + "id": "44960", + "ident": "AZ-0019", + "type": "small_airport", + "name": "Salyan Air Base", + "latitude_deg": "39.649811", + "longitude_deg": "48.986884", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-SAL", + "municipality": "Salyan", + "scheduled_service": "no" + }, + { + "id": "44961", + "ident": "AZ-0020", + "type": "closed", + "name": "Pushkino East Air Base", + "latitude_deg": "39.516043", + "longitude_deg": "48.690634", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-BIL", + "municipality": "Bilasuvar", + "scheduled_service": "no" + }, + { + "id": "44962", + "ident": "AZ-0021", + "type": "medium_airport", + "name": "Qizilagach Air Base", + "latitude_deg": "39.006162", + "longitude_deg": "48.806312", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-MAS", + "municipality": "Qizilagach", + "scheduled_service": "no" + }, + { + "id": "341273", + "ident": "AZ-0022", + "type": "heliport", + "name": "Pirallahı Heliport", + "latitude_deg": "40.4182", + "longitude_deg": "50.35677", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-BA", + "municipality": "Pirallahı", + "scheduled_service": "no", + "gps_code": "UBBP" + }, + { + "id": "341274", + "ident": "AZ-0023", + "type": "heliport", + "name": "Çilov Heliport", + "latitude_deg": "40.32581", + "longitude_deg": "50.60284", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-BA", + "municipality": "Çilov", + "scheduled_service": "no", + "gps_code": "UBBC" + }, + { + "id": "341275", + "ident": "AZ-0024", + "type": "heliport", + "name": "Baku Heliport", + "latitude_deg": "40.3506", + "longitude_deg": "49.79858", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-BA", + "municipality": "Baku", + "scheduled_service": "no" + }, + { + "id": "341276", + "ident": "AZ-0025", + "type": "heliport", + "name": "Sangachal Oil Terminal Heliport", + "latitude_deg": "40.200361", + "longitude_deg": "49.492087", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-BA", + "municipality": "Sangachal", + "scheduled_service": "no" + }, + { + "id": "16388", + "ident": "AZ00", + "type": "small_airport", + "name": "Morton Field Ultralight Flightpark", + "latitude_deg": "32.80679", + "longitude_deg": "-113.503876", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Dateland", + "scheduled_service": "no", + "gps_code": "AZ00", + "local_code": "AZ00" + }, + { + "id": "16389", + "ident": "AZ01", + "type": "small_airport", + "name": "Outback Ranch Airstrip", + "latitude_deg": "33.847732", + "longitude_deg": "-113.57106", + "elevation_ft": "1980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wenden", + "scheduled_service": "no", + "gps_code": "AZ01", + "local_code": "AZ01" + }, + { + "id": "16390", + "ident": "AZ02", + "type": "heliport", + "name": "Gateway East KNXV-TV Heliport", + "latitude_deg": "33.454181", + "longitude_deg": "-111.983753", + "elevation_ft": "1185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "AZ02", + "local_code": "AZ02" + }, + { + "id": "16391", + "ident": "AZ03", + "type": "small_airport", + "name": "Cliff Dwellers Lodge Airport", + "latitude_deg": "36.734095", + "longitude_deg": "-111.753053", + "elevation_ft": "4217", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Marble Canyon", + "scheduled_service": "no", + "gps_code": "AZ03", + "local_code": "AZ03" + }, + { + "id": "16392", + "ident": "AZ04", + "type": "closed", + "name": "Hillair Dirt Strip", + "latitude_deg": "33.916869", + "longitude_deg": "-113.189049", + "elevation_ft": "2210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Aguila", + "scheduled_service": "no", + "keywords": "AZ04" + }, + { + "id": "16393", + "ident": "AZ05", + "type": "small_airport", + "name": "Lakeside Airpark", + "latitude_deg": "33.112536", + "longitude_deg": "-112.662735", + "elevation_ft": "763", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gila Bend", + "scheduled_service": "no", + "gps_code": "AZ05", + "local_code": "AZ05", + "keywords": "gila bend, buckeye, lakeside" + }, + { + "id": "16394", + "ident": "AZ06", + "type": "closed", + "name": "Dateland Airfield", + "latitude_deg": "32.8172", + "longitude_deg": "-113.527", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Dateland", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dateland_Air_Force_Auxiliary_Field", + "keywords": "AZ06, Dateland Air Force Auxiliary Field" + }, + { + "id": "16395", + "ident": "AZ07", + "type": "heliport", + "name": "Phoenix Area Heliport", + "latitude_deg": "33.442718", + "longitude_deg": "-112.149135", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "AZ07", + "local_code": "AZ07" + }, + { + "id": "16396", + "ident": "AZ08", + "type": "heliport", + "name": "Banner Boswell Memorial Hospital Heliport", + "latitude_deg": "33.603867", + "longitude_deg": "-112.282536", + "elevation_ft": "1163", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sun City", + "scheduled_service": "no", + "gps_code": "AZ08", + "local_code": "AZ08" + }, + { + "id": "16397", + "ident": "AZ09", + "type": "closed", + "name": "Sergio Private Airport", + "latitude_deg": "34.804483", + "longitude_deg": "-114.113166", + "elevation_ft": "1900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yucca", + "scheduled_service": "no", + "keywords": "AZ09, sergio, yucca" + }, + { + "id": "16398", + "ident": "AZ10", + "type": "closed", + "name": "JSJ Heliport", + "latitude_deg": "33.44346", + "longitude_deg": "-111.85856", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no", + "gps_code": "AZ10", + "local_code": "AZ10", + "keywords": "az10, mesa, jsj, johnson stewart" + }, + { + "id": "16399", + "ident": "AZ11", + "type": "closed", + "name": "KPNX-TV Studios Heliport", + "latitude_deg": "33.461201", + "longitude_deg": "-112.075996", + "elevation_ft": "1327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "keywords": "AZ11" + }, + { + "id": "16400", + "ident": "AZ12", + "type": "heliport", + "name": "183 Mile Heliport", + "latitude_deg": "36.108299255371094", + "longitude_deg": "-113.21299743652344", + "elevation_ft": "1705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peach Springs", + "scheduled_service": "no", + "gps_code": "AZ12", + "local_code": "AZ12" + }, + { + "id": "16401", + "ident": "AZ13", + "type": "small_airport", + "name": "Schu Ranch Airport", + "latitude_deg": "33.017246", + "longitude_deg": "-112.279415", + "elevation_ft": "1410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Maricopa", + "scheduled_service": "no", + "gps_code": "AZ13", + "local_code": "AZ13" + }, + { + "id": "16402", + "ident": "AZ14", + "type": "small_airport", + "name": "Ammon Airport", + "latitude_deg": "32.02470016", + "longitude_deg": "-109.9570007", + "elevation_ft": "4520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Willcox", + "scheduled_service": "no", + "gps_code": "AZ14", + "local_code": "AZ14" + }, + { + "id": "16403", + "ident": "AZ15", + "type": "heliport", + "name": "Lava Falls Heliport", + "latitude_deg": "36.191600799599996", + "longitude_deg": "-113.092002869", + "elevation_ft": "1720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Supai Village", + "scheduled_service": "no", + "gps_code": "AZ15", + "iata_code": "HAE", + "local_code": "AZ15", + "keywords": "Havasupai Airport" + }, + { + "id": "16404", + "ident": "AZ16", + "type": "heliport", + "name": "Northern Cochise Community Hospital Heliport", + "latitude_deg": "32.264473", + "longitude_deg": "-109.837897", + "elevation_ft": "4174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Willcox", + "scheduled_service": "no", + "gps_code": "AZ16", + "local_code": "AZ16" + }, + { + "id": "16405", + "ident": "AZ17", + "type": "small_airport", + "name": "Circle H Ranch Airport", + "latitude_deg": "31.502199172973633", + "longitude_deg": "-109.39099884033203", + "elevation_ft": "4680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Douglas", + "scheduled_service": "no", + "gps_code": "AZ17", + "local_code": "AZ17" + }, + { + "id": "16406", + "ident": "AZ18", + "type": "heliport", + "name": "Madison Aviation Heliport", + "latitude_deg": "35.974998474121094", + "longitude_deg": "-112.13099670410156", + "elevation_ft": "6600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tusayan", + "scheduled_service": "no", + "gps_code": "AZ18", + "local_code": "AZ18" + }, + { + "id": "16407", + "ident": "AZ19", + "type": "small_airport", + "name": "C & L Ranch Ultralightport", + "latitude_deg": "31.73780059814453", + "longitude_deg": "-110.6259994506836", + "elevation_ft": "4600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sonoita", + "scheduled_service": "no", + "gps_code": "AZ19", + "local_code": "AZ19" + }, + { + "id": "16408", + "ident": "AZ20", + "type": "closed", + "name": "Westcor Home Office Heliport", + "latitude_deg": "33.592494", + "longitude_deg": "-111.978005", + "elevation_ft": "1370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "AZ20", + "local_code": "AZ20" + }, + { + "id": "16409", + "ident": "AZ21", + "type": "small_airport", + "name": "Four Pillars Airport", + "latitude_deg": "31.744592", + "longitude_deg": "-110.247889", + "elevation_ft": "4100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Huachuca City", + "scheduled_service": "no", + "gps_code": "AZ21", + "local_code": "AZ21", + "keywords": "huachuca city, four pillars" + }, + { + "id": "16410", + "ident": "AZ22", + "type": "heliport", + "name": "Marcus J Lawrence Medical Center Heliport", + "latitude_deg": "34.7333984375", + "longitude_deg": "-112.02999877929688", + "elevation_ft": "3450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Cottonwood", + "scheduled_service": "no", + "gps_code": "AZ22", + "local_code": "AZ22" + }, + { + "id": "16411", + "ident": "AZ23", + "type": "closed", + "name": "Flagstaff Mall Heliport", + "latitude_deg": "35.223569", + "longitude_deg": "-111.583613", + "elevation_ft": "6835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Flagstaff", + "scheduled_service": "no", + "gps_code": "AZ23", + "local_code": "AZ23" + }, + { + "id": "16412", + "ident": "AZ24", + "type": "heliport", + "name": "Phoenix Baptist Hospital Heliport", + "latitude_deg": "33.52479934692383", + "longitude_deg": "-112.10199737548828", + "elevation_ft": "1174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "AZ24", + "local_code": "AZ24" + }, + { + "id": "325527", + "ident": "AZ25", + "type": "small_airport", + "name": "Tri-Rotor Ag Services Airport", + "latitude_deg": "32.55705", + "longitude_deg": "-114.678947", + "elevation_ft": "126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Somerton", + "scheduled_service": "no", + "gps_code": "AZ25", + "local_code": "AZ25", + "keywords": "az25, tri-motor, trimotor, tri motor, somerton" + }, + { + "id": "16414", + "ident": "AZ26", + "type": "small_airport", + "name": "Evelyn Field", + "latitude_deg": "31.368882", + "longitude_deg": "-110.127468", + "elevation_ft": "4242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Palominas", + "scheduled_service": "no", + "gps_code": "AZ26", + "local_code": "AZ26" + }, + { + "id": "16415", + "ident": "AZ27", + "type": "small_airport", + "name": "Big Springs Ranch Airport", + "latitude_deg": "34.909848", + "longitude_deg": "-112.532723", + "elevation_ft": "4421", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Paulden", + "scheduled_service": "no", + "gps_code": "AZ27", + "local_code": "AZ27", + "keywords": "paulden, big springs, big springs ranch, big springs airpark" + }, + { + "id": "16416", + "ident": "AZ28", + "type": "small_airport", + "name": "Thunder Ridge Airpark", + "latitude_deg": "33.821499", + "longitude_deg": "-112.572998", + "elevation_ft": "1915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Morristown", + "scheduled_service": "no", + "gps_code": "AZ28", + "local_code": "AZ28", + "keywords": "morristown, thunder ridge" + }, + { + "id": "16417", + "ident": "AZ29", + "type": "heliport", + "name": "Westridge Mall Heliport", + "latitude_deg": "33.47560119628906", + "longitude_deg": "-112.2239990234375", + "elevation_ft": "1055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "AZ29", + "local_code": "AZ29" + }, + { + "id": "16418", + "ident": "AZ30", + "type": "heliport", + "name": "United Bank Plaza Heliport", + "latitude_deg": "33.48529815673828", + "longitude_deg": "-112.07499694824219", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "AZ30", + "local_code": "AZ30" + }, + { + "id": "16419", + "ident": "AZ31", + "type": "small_airport", + "name": "Serene Field", + "latitude_deg": "32.996700286865234", + "longitude_deg": "-112.27200317382812", + "elevation_ft": "1456", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Maricopa", + "scheduled_service": "no", + "gps_code": "AZ31", + "local_code": "AZ31" + }, + { + "id": "16420", + "ident": "AZ32", + "type": "small_airport", + "name": "Roesner Ranch Airport", + "latitude_deg": "33.84749984741211", + "longitude_deg": "-112.58799743652344", + "elevation_ft": "2060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Morristown", + "scheduled_service": "no", + "gps_code": "AZ32", + "local_code": "AZ32" + }, + { + "id": "16421", + "ident": "AZ33", + "type": "heliport", + "name": "Knoell Main Office Heliport", + "latitude_deg": "33.425624", + "longitude_deg": "-112.029682", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "AZ33", + "local_code": "AZ33" + }, + { + "id": "16422", + "ident": "AZ34", + "type": "small_airport", + "name": "Massey Farm Airport", + "latitude_deg": "34.691428", + "longitude_deg": "-114.097739", + "elevation_ft": "1630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yucca", + "scheduled_service": "no", + "gps_code": "AZ34", + "local_code": "AZ34" + }, + { + "id": "16423", + "ident": "AZ35", + "type": "heliport", + "name": "Grand Canyon West 2 Heliport", + "latitude_deg": "35.99594", + "longitude_deg": "-113.78233", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peach Springs", + "scheduled_service": "no", + "gps_code": "AZ35", + "local_code": "AZ35" + }, + { + "id": "16424", + "ident": "AZ36", + "type": "heliport", + "name": "Grand Canyon West 1 Heliport", + "latitude_deg": "36.029905", + "longitude_deg": "-113.827408", + "elevation_ft": "4790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peach Springs", + "scheduled_service": "no", + "gps_code": "AZ36", + "local_code": "AZ36" + }, + { + "id": "16425", + "ident": "AZ37", + "type": "heliport", + "name": "Tucson Medical Center Heliport", + "latitude_deg": "32.25170135498047", + "longitude_deg": "-110.87899780273438", + "elevation_ft": "2485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no", + "gps_code": "AZ37", + "local_code": "AZ37" + }, + { + "id": "16426", + "ident": "AZ38", + "type": "heliport", + "name": "Rittenhouse Army Heliport", + "latitude_deg": "33.258248", + "longitude_deg": "-111.518639", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Queen Creek", + "scheduled_service": "no", + "gps_code": "AZ38", + "local_code": "AZ38" + }, + { + "id": "16427", + "ident": "AZ39", + "type": "heliport", + "name": "Turf Heliport", + "latitude_deg": "33.463199615478516", + "longitude_deg": "-111.72899627685547", + "elevation_ft": "1385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no", + "gps_code": "AZ39", + "local_code": "AZ39" + }, + { + "id": "16428", + "ident": "AZ40", + "type": "small_airport", + "name": "Sheepy Hollow Ranch Airfield", + "latitude_deg": "33.785711", + "longitude_deg": "-113.636742", + "elevation_ft": "1930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Salome", + "scheduled_service": "no", + "gps_code": "AZ40", + "local_code": "AZ40", + "keywords": "salome, sheepy hollow ranch" + }, + { + "id": "16429", + "ident": "AZ41", + "type": "heliport", + "name": "Abacus Tower Heliport", + "latitude_deg": "33.4833984375", + "longitude_deg": "-112.06999969482422", + "elevation_ft": "1850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "AZ41", + "local_code": "AZ41" + }, + { + "id": "16430", + "ident": "AZ42", + "type": "closed", + "name": "ASI Heliport", + "latitude_deg": "33.447725", + "longitude_deg": "-111.99251", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "keywords": "AZ42" + }, + { + "id": "16431", + "ident": "AZ43", + "type": "small_airport", + "name": "Hidden Valley Airport", + "latitude_deg": "33.053965", + "longitude_deg": "-112.173543", + "elevation_ft": "1245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Maricopa", + "scheduled_service": "no", + "gps_code": "AZ43", + "local_code": "AZ43" + }, + { + "id": "45292", + "ident": "AZ44", + "type": "heliport", + "name": "Mount Graham Regional Medical Center Heliport", + "latitude_deg": "32.821694", + "longitude_deg": "-109.736014", + "elevation_ft": "2955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Safford", + "scheduled_service": "no", + "gps_code": "AZ44", + "local_code": "AZ44" + }, + { + "id": "16432", + "ident": "AZ45", + "type": "small_airport", + "name": "China Peak Observatory Airport", + "latitude_deg": "32.72919845581055", + "longitude_deg": "-110.2959976196289", + "elevation_ft": "4800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Klondyke", + "scheduled_service": "no", + "gps_code": "AZ45", + "local_code": "AZ45" + }, + { + "id": "16433", + "ident": "AZ46", + "type": "small_airport", + "name": "Morgan Ranch Airstrip", + "latitude_deg": "34.764835", + "longitude_deg": "-112.546451", + "elevation_ft": "5025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Prescott", + "scheduled_service": "no", + "gps_code": "AZ46", + "local_code": "AZ46", + "keywords": "H&H Ranch, Chino Valley" + }, + { + "id": "16434", + "ident": "AZ47", + "type": "heliport", + "name": "La Paz Regional Hospital Heliport", + "latitude_deg": "34.137032", + "longitude_deg": "-114.284924", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Parker", + "scheduled_service": "no", + "gps_code": "AZ47", + "local_code": "AZ47" + }, + { + "id": "16435", + "ident": "AZ48", + "type": "heliport", + "name": "Banner University Medical Center Helipad", + "latitude_deg": "33.464972", + "longitude_deg": "-112.057782", + "elevation_ft": "1148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "AZ48", + "local_code": "AZ48" + }, + { + "id": "16436", + "ident": "AZ49", + "type": "closed", + "name": "Walter Ranch Airport", + "latitude_deg": "32.895599", + "longitude_deg": "-112.253998", + "elevation_ft": "1615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Stanfield", + "scheduled_service": "no", + "keywords": "AZ49" + }, + { + "id": "16437", + "ident": "AZ50", + "type": "small_airport", + "name": "Triangle Airpark", + "latitude_deg": "35.715472", + "longitude_deg": "-114.47844", + "elevation_ft": "2419", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "White Hills", + "scheduled_service": "no", + "gps_code": "AZ50", + "local_code": "AZ50", + "keywords": "white hills, triangle" + }, + { + "id": "16438", + "ident": "AZ51", + "type": "heliport", + "name": "Bartlett Dam Heliport", + "latitude_deg": "33.81869888305664", + "longitude_deg": "-111.63300323486328", + "elevation_ft": "1610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Carefree", + "scheduled_service": "no", + "gps_code": "AZ51", + "local_code": "AZ51" + }, + { + "id": "16439", + "ident": "AZ52", + "type": "heliport", + "name": "Horseshoe Dam Heliport", + "latitude_deg": "33.981998443603516", + "longitude_deg": "-111.71700286865234", + "elevation_ft": "2020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Carefree", + "scheduled_service": "no", + "gps_code": "AZ52", + "local_code": "AZ52" + }, + { + "id": "16440", + "ident": "AZ53", + "type": "heliport", + "name": "Horse Mesa Dam Heliport 2", + "latitude_deg": "33.590599", + "longitude_deg": "-111.344002", + "elevation_ft": "1891", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Goldfield", + "scheduled_service": "no", + "gps_code": "AZ53", + "local_code": "AZ53" + }, + { + "id": "16441", + "ident": "AZ54", + "type": "heliport", + "name": "Stewart Mountain Dam Heliport", + "latitude_deg": "33.563401", + "longitude_deg": "-111.535956", + "elevation_ft": "1530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Goldfield", + "scheduled_service": "no", + "gps_code": "AZ54", + "local_code": "AZ54" + }, + { + "id": "16442", + "ident": "AZ55", + "type": "heliport", + "name": "Horse Mesa Dam Heliport 1", + "latitude_deg": "33.5825", + "longitude_deg": "-111.357002", + "elevation_ft": "1890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Goldfield", + "scheduled_service": "no", + "gps_code": "AZ55", + "local_code": "AZ55" + }, + { + "id": "16443", + "ident": "AZ56", + "type": "heliport", + "name": "Mormon Flat Dam Heliport", + "latitude_deg": "33.55339813232422", + "longitude_deg": "-111.44499969482422", + "elevation_ft": "1640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Goldfield", + "scheduled_service": "no", + "gps_code": "AZ56", + "local_code": "AZ56" + }, + { + "id": "16444", + "ident": "AZ57", + "type": "small_airport", + "name": "Pilots Rest Airport", + "latitude_deg": "34.931576", + "longitude_deg": "-112.515364", + "elevation_ft": "4482", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Paulden", + "scheduled_service": "no", + "gps_code": "AZ57", + "local_code": "AZ57", + "keywords": "paulden, pilots rest" + }, + { + "id": "16445", + "ident": "AZ58", + "type": "heliport", + "name": "Roosevelt Dam Heliport", + "latitude_deg": "33.669535", + "longitude_deg": "-111.163819", + "elevation_ft": "1895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Roosevelt", + "scheduled_service": "no", + "gps_code": "AZ58", + "local_code": "AZ58" + }, + { + "id": "16446", + "ident": "AZ59", + "type": "heliport", + "name": "Cross Cut Heliport", + "latitude_deg": "33.441279", + "longitude_deg": "-111.946957", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tempe", + "scheduled_service": "no", + "gps_code": "AZ59", + "local_code": "AZ59" + }, + { + "id": "16447", + "ident": "AZ60", + "type": "closed", + "name": "Coyner Airstrip", + "latitude_deg": "33.505001", + "longitude_deg": "-112.474566", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Litchfield Park", + "scheduled_service": "no", + "keywords": "AZ60" + }, + { + "id": "16448", + "ident": "AZ61", + "type": "small_airport", + "name": "G M Ranch Airport", + "latitude_deg": "32.901699", + "longitude_deg": "-112.237999", + "elevation_ft": "1616", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Stanfield", + "scheduled_service": "no", + "gps_code": "AZ61", + "local_code": "AZ61" + }, + { + "id": "16449", + "ident": "AZ62", + "type": "heliport", + "name": "Inn Place Hotel Heliport", + "latitude_deg": "33.577801", + "longitude_deg": "-112.121003", + "elevation_ft": "1245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "AZ62", + "local_code": "AZ62", + "keywords": "The Hotel Westcourt Heliport" + }, + { + "id": "16450", + "ident": "AZ63", + "type": "small_airport", + "name": "Twin Hawks Airpark", + "latitude_deg": "32.528027", + "longitude_deg": "-111.195974", + "elevation_ft": "2290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Redrock", + "scheduled_service": "no", + "gps_code": "AZ63", + "local_code": "AZ63", + "keywords": "redrock, twin hawks" + }, + { + "id": "16451", + "ident": "AZ64", + "type": "small_airport", + "name": "Rio Vista Hills Airport", + "latitude_deg": "33.952301025390625", + "longitude_deg": "-112.68699645996094", + "elevation_ft": "2225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wickenburg", + "scheduled_service": "no", + "gps_code": "AZ64", + "local_code": "AZ64" + }, + { + "id": "16452", + "ident": "AZ65", + "type": "heliport", + "name": "Palo Verde Nuclear Generating Station Heliport", + "latitude_deg": "33.389152", + "longitude_deg": "-112.861653", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wintersburg", + "scheduled_service": "no", + "gps_code": "AZ65", + "local_code": "AZ65" + }, + { + "id": "16453", + "ident": "AZ66", + "type": "heliport", + "name": "Mesa Hospital Medical Center Heliport", + "latitude_deg": "33.42448", + "longitude_deg": "-111.820827", + "elevation_ft": "1243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no", + "keywords": "AZ66" + }, + { + "id": "16454", + "ident": "AZ67", + "type": "small_airport", + "name": "El Tiro Gliderport", + "latitude_deg": "32.426998138427734", + "longitude_deg": "-111.38999938964844", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no", + "gps_code": "AZ67", + "local_code": "AZ67" + }, + { + "id": "16455", + "ident": "AZ68", + "type": "heliport", + "name": "Black Canyon City Medical Center Heliport", + "latitude_deg": "34.063899993896484", + "longitude_deg": "-112.14600372314453", + "elevation_ft": "2040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Black Canyon City", + "scheduled_service": "no", + "gps_code": "AZ68", + "local_code": "AZ68" + }, + { + "id": "16456", + "ident": "AZ69", + "type": "closed", + "name": "Honeywell Inc. Heliport", + "latitude_deg": "33.638401", + "longitude_deg": "-112.176003", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Glendale", + "scheduled_service": "no", + "keywords": "AZ69" + }, + { + "id": "16457", + "ident": "AZ70", + "type": "heliport", + "name": "Versatile Heliport", + "latitude_deg": "34.627201080322266", + "longitude_deg": "-112.30899810791016", + "elevation_ft": "4800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Prescott Valley", + "scheduled_service": "no", + "gps_code": "AZ70", + "local_code": "AZ70" + }, + { + "id": "16458", + "ident": "AZ71", + "type": "closed", + "name": "Cooper Ranch Airport", + "latitude_deg": "34.215302", + "longitude_deg": "-112.536003", + "elevation_ft": "3440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Kirkland", + "scheduled_service": "no", + "keywords": "AZ71" + }, + { + "id": "16459", + "ident": "AZ72", + "type": "closed", + "name": "Police & Public Safety Building Heliport", + "latitude_deg": "33.448613", + "longitude_deg": "-112.082283", + "elevation_ft": "1146", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "keywords": "AZ72" + }, + { + "id": "16460", + "ident": "AZ73", + "type": "heliport", + "name": "Tempe St. Luke's Hospital Heliport", + "latitude_deg": "33.413112", + "longitude_deg": "-111.940952", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tempe", + "scheduled_service": "no", + "gps_code": "AZ73", + "local_code": "AZ73" + }, + { + "id": "338759", + "ident": "AZ74", + "type": "heliport", + "name": "Mayo Clinic Arizona Heliport", + "latitude_deg": "33.658768", + "longitude_deg": "-111.957722", + "elevation_ft": "1567", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "AZ74", + "local_code": "AZ74" + }, + { + "id": "16462", + "ident": "AZ75", + "type": "heliport", + "name": "Navapache Regional Medical Center Heliport", + "latitude_deg": "34.203399658203125", + "longitude_deg": "-110.01799774169922", + "elevation_ft": "6500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Show Low", + "scheduled_service": "no", + "gps_code": "AZ75", + "local_code": "AZ75" + }, + { + "id": "16463", + "ident": "AZ76", + "type": "heliport", + "name": "Chandler Regional Hospital Heliport", + "latitude_deg": "33.298117", + "longitude_deg": "-111.873527", + "elevation_ft": "1195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Chandler", + "scheduled_service": "no", + "gps_code": "AZ76", + "local_code": "AZ76" + }, + { + "id": "16464", + "ident": "AZ77", + "type": "closed", + "name": "Sunrise Ranch Airport", + "latitude_deg": "35.238546", + "longitude_deg": "-111.935708", + "elevation_ft": "6958", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Williams", + "scheduled_service": "no", + "keywords": "AZ77" + }, + { + "id": "16465", + "ident": "AZ78", + "type": "small_airport", + "name": "Arizona Bay Airport", + "latitude_deg": "33.003823", + "longitude_deg": "-112.276239", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Maricopa", + "scheduled_service": "no", + "gps_code": "AZ78", + "local_code": "AZ78", + "keywords": "Mel's Ranch, Moose Valley" + }, + { + "id": "16466", + "ident": "AZ79", + "type": "small_airport", + "name": "Airscrew Performance Flightpark Ultralightport", + "latitude_deg": "33.530234", + "longitude_deg": "-112.216383", + "elevation_ft": "1112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Glendale", + "scheduled_service": "no", + "gps_code": "AZ79", + "local_code": "AZ79" + }, + { + "id": "16467", + "ident": "AZ80", + "type": "heliport", + "name": "Havasu Samaritan Regional Hospital Heliport", + "latitude_deg": "34.48109817504883", + "longitude_deg": "-114.33899688720703", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Lake Havasu City", + "scheduled_service": "no", + "gps_code": "AZ80", + "local_code": "AZ80" + }, + { + "id": "16468", + "ident": "AZ81", + "type": "heliport", + "name": "Boeing Heliport", + "latitude_deg": "33.47309875488281", + "longitude_deg": "-111.72699737548828", + "elevation_ft": "1385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no", + "gps_code": "AZ81", + "local_code": "AZ81" + }, + { + "id": "16469", + "ident": "AZ82", + "type": "small_airport", + "name": "Mogollon Airpark", + "latitude_deg": "34.399297", + "longitude_deg": "-110.529553", + "elevation_ft": "6657", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Overgaard", + "scheduled_service": "no", + "gps_code": "AZ82", + "local_code": "AZ82", + "keywords": "overgaard, mogollon" + }, + { + "id": "16470", + "ident": "AZ83", + "type": "heliport", + "name": "Phoenix Memorial Hospital Heliport", + "latitude_deg": "33.4359016418457", + "longitude_deg": "-112.08000183105469", + "elevation_ft": "1071", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "AZ83", + "local_code": "AZ83" + }, + { + "id": "16471", + "ident": "AZ84", + "type": "closed", + "name": "Pima County Sheriff's Heliport", + "latitude_deg": "32.172001", + "longitude_deg": "-110.946999", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no", + "gps_code": "AZ84", + "local_code": "AZ84" + }, + { + "id": "16472", + "ident": "AZ85", + "type": "small_airport", + "name": "Tonopah Airport", + "latitude_deg": "33.533561", + "longitude_deg": "-112.960192", + "elevation_ft": "1248", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonopah", + "scheduled_service": "no", + "gps_code": "AZ85", + "local_code": "AZ85", + "keywords": "tonopah" + }, + { + "id": "16473", + "ident": "AZ86", + "type": "small_airport", + "name": "A C Goodwin Memorial Field Gliderport", + "latitude_deg": "34.6842", + "longitude_deg": "-112.292", + "elevation_ft": "4978", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Prescott Valley", + "scheduled_service": "no", + "gps_code": "AZ86", + "local_code": "AZ86", + "keywords": "Coyote Run Gliderport" + }, + { + "id": "16474", + "ident": "AZ87", + "type": "heliport", + "name": "Jeppesen Ranch Heliport", + "latitude_deg": "33.227317", + "longitude_deg": "-111.854424", + "elevation_ft": "1203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Chandler", + "scheduled_service": "no", + "gps_code": "AZ87", + "local_code": "AZ87" + }, + { + "id": "16475", + "ident": "AZ88", + "type": "heliport", + "name": "Granite Reef Heliport", + "latitude_deg": "33.70309829711914", + "longitude_deg": "-112.06999969482422", + "elevation_ft": "1507", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "AZ88", + "local_code": "AZ88" + }, + { + "id": "16476", + "ident": "AZ89", + "type": "heliport", + "name": "Sierra Vista Community Hospital Heliport", + "latitude_deg": "31.55139923095703", + "longitude_deg": "-110.2699966430664", + "elevation_ft": "4548", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sierra Vista", + "scheduled_service": "no", + "gps_code": "AZ89", + "local_code": "AZ89" + }, + { + "id": "16477", + "ident": "AZ90", + "type": "small_airport", + "name": "Hangar Haciendas Airpark", + "latitude_deg": "33.34989", + "longitude_deg": "-112.122946", + "elevation_ft": "1225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Laveen", + "scheduled_service": "no", + "gps_code": "AZ90", + "local_code": "AZ90", + "keywords": "laveen, hangar haciendas" + }, + { + "id": "16478", + "ident": "AZ91", + "type": "heliport", + "name": "The Boulders Heliport", + "latitude_deg": "33.802799224853516", + "longitude_deg": "-111.91799926757812", + "elevation_ft": "2360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Carefree", + "scheduled_service": "no", + "gps_code": "AZ91", + "local_code": "AZ91" + }, + { + "id": "16479", + "ident": "AZ92", + "type": "heliport", + "name": "Valley Lutheran Hospital Heliport", + "latitude_deg": "33.411399841308594", + "longitude_deg": "-111.68699645996094", + "elevation_ft": "1425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no", + "gps_code": "AZ92", + "local_code": "AZ92" + }, + { + "id": "16480", + "ident": "AZ93", + "type": "heliport", + "name": "Toyota Arizona Proving Ground Heliport", + "latitude_deg": "33.743099212646484", + "longitude_deg": "-112.76799774169922", + "elevation_ft": "1660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wickenburg", + "scheduled_service": "no", + "gps_code": "AZ93", + "local_code": "AZ93" + }, + { + "id": "16481", + "ident": "AZ94", + "type": "heliport", + "name": "Biltmore Golf Course Heliport", + "latitude_deg": "33.521400451660156", + "longitude_deg": "-112.0199966430664", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "AZ94", + "local_code": "AZ94" + }, + { + "id": "16482", + "ident": "AZ95", + "type": "heliport", + "name": "Abrazo Scottsdale Hospital Emergency Department Heliport", + "latitude_deg": "33.639277", + "longitude_deg": "-111.996522", + "elevation_ft": "1461", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "AZ95", + "local_code": "AZ95", + "keywords": "Paradise Valley Hosp Emerg Dept Heliport" + }, + { + "id": "16483", + "ident": "AZ96", + "type": "heliport", + "name": "HonorHealth Scottsdale Osborn Medical Center Heliport", + "latitude_deg": "33.487916", + "longitude_deg": "-111.922381", + "elevation_ft": "1375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Scottsdale", + "scheduled_service": "no", + "gps_code": "AZ96", + "local_code": "AZ96", + "keywords": "Scottsdale Memorial Hospital-North" + }, + { + "id": "16484", + "ident": "AZ97", + "type": "small_airport", + "name": "X Bar 1 Ranch Lower Airport", + "latitude_deg": "35.350132", + "longitude_deg": "-113.689522", + "elevation_ft": "3710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Kingman", + "scheduled_service": "no", + "gps_code": "AZ97", + "local_code": "AZ97" + }, + { + "id": "16485", + "ident": "AZ98", + "type": "heliport", + "name": "John C. Lincoln Helistop", + "latitude_deg": "33.56950378417969", + "longitude_deg": "-112.07115936279297", + "elevation_ft": "1285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "AZ98", + "local_code": "AZ98" + }, + { + "id": "16486", + "ident": "AZ99", + "type": "heliport", + "name": "Phoenix Children's Hospital Heliport", + "latitude_deg": "33.47919845581055", + "longitude_deg": "-112.04199981689453", + "elevation_ft": "1175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "AZ99", + "local_code": "AZ99" + }, + { + "id": "301690", + "ident": "AZB", + "type": "small_airport", + "name": "Amazon Bay Airport", + "latitude_deg": "-10.2991666667", + "longitude_deg": "149.338333333", + "elevation_ft": "12", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "scheduled_service": "no", + "iata_code": "AZB", + "local_code": "AZB" + }, + { + "id": "349715", + "ident": "AZJ", + "type": "small_airport", + "name": "Zhenjiang Dalu Airport", + "latitude_deg": "32.23649", + "longitude_deg": "119.718683", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Zhenjiang", + "scheduled_service": "no", + "iata_code": "AZJ" + }, + { + "id": "16487", + "ident": "AZU", + "type": "small_airport", + "name": "Arrowhead Assault Strip", + "latitude_deg": "35.275101", + "longitude_deg": "-94.225197", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Fort Chaffee", + "scheduled_service": "no", + "gps_code": "KAZU", + "local_code": "KAZU", + "keywords": "KAZU" + }, + { + "id": "16488", + "ident": "B01", + "type": "small_airport", + "name": "Granville Airport", + "latitude_deg": "43.42375183105469", + "longitude_deg": "-73.26919555664062", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Granville", + "scheduled_service": "no", + "gps_code": "B01", + "local_code": "B01" + }, + { + "id": "16489", + "ident": "B04", + "type": "small_airport", + "name": "Garnseys Airport", + "latitude_deg": "43.067552", + "longitude_deg": "-73.583737", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Schuylerville", + "scheduled_service": "no", + "local_code": "B04" + }, + { + "id": "16490", + "ident": "B06", + "type": "small_airport", + "name": "Basin Harbor Airport", + "latitude_deg": "44.195899963378906", + "longitude_deg": "-73.34960174560547", + "elevation_ft": "132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Vergennes", + "scheduled_service": "no", + "gps_code": "B06", + "local_code": "B06" + }, + { + "id": "16491", + "ident": "B10", + "type": "small_airport", + "name": "Bowman Field", + "latitude_deg": "44.40999984741211", + "longitude_deg": "-70.14610290527344", + "elevation_ft": "327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Livermore Falls", + "scheduled_service": "no", + "gps_code": "B10", + "local_code": "B10" + }, + { + "id": "16492", + "ident": "B18", + "type": "seaplane_base", + "name": "Alton Bay Seaplane Base", + "latitude_deg": "43.47760009765625", + "longitude_deg": "-71.23699951171875", + "elevation_ft": "504", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Alton Bay", + "scheduled_service": "no", + "gps_code": "B18", + "local_code": "B18" + }, + { + "id": "16493", + "ident": "B25", + "type": "small_airport", + "name": "Harrold Airport", + "latitude_deg": "41.4762", + "longitude_deg": "-84.906097", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Butler", + "scheduled_service": "no", + "gps_code": "IN16", + "local_code": "IN16", + "wikipedia_link": "https://web.archive.org/web/20161208055109/https://en.wikipedia.org/wiki/Harrold_Airport", + "keywords": "B25" + }, + { + "id": "16494", + "ident": "B70", + "type": "small_airport", + "name": "Tiber Dam Airport", + "latitude_deg": "48.313703", + "longitude_deg": "-111.108126", + "elevation_ft": "3023", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Chester", + "scheduled_service": "no", + "local_code": "B70" + }, + { + "id": "43884", + "ident": "BA-0001", + "type": "small_airport", + "name": "Ciljuge Sport Airfield", + "latitude_deg": "44.436538", + "longitude_deg": "18.68537", + "elevation_ft": "725", + "continent": "EU", + "iso_country": "BA", + "iso_region": "BA-BIH", + "municipality": "Tuzla", + "scheduled_service": "no", + "gps_code": "LQCG" + }, + { + "id": "317425", + "ident": "BA-0002", + "type": "small_airport", + "name": "Sportski Aerodrom Zalužani", + "latitude_deg": "44.8482", + "longitude_deg": "17.222826", + "continent": "EU", + "iso_country": "BA", + "iso_region": "BA-BIH", + "municipality": "Zalužani", + "scheduled_service": "no", + "gps_code": "LQBZ" + }, + { + "id": "321737", + "ident": "BA-0003", + "type": "small_airport", + "name": "Brod Airstrip", + "latitude_deg": "44.846235", + "longitude_deg": "18.761888", + "elevation_ft": "337", + "continent": "EU", + "iso_country": "BA", + "iso_region": "BA-SRP", + "municipality": "Brod", + "scheduled_service": "no" + }, + { + "id": "335270", + "ident": "BA-0004", + "type": "closed", + "name": "Trebinje (Zupci) Aerodrome", + "latitude_deg": "42.62613", + "longitude_deg": "18.41181", + "continent": "EU", + "iso_country": "BA", + "iso_region": "BA-SRP", + "municipality": "Trebinje", + "scheduled_service": "no" + }, + { + "id": "345690", + "ident": "BA-0005", + "type": "heliport", + "name": "Rajlovac Helicopter Base", + "latitude_deg": "43.86972", + "longitude_deg": "18.30428", + "continent": "EU", + "iso_country": "BA", + "iso_region": "BA-BIH", + "municipality": "Sarajevo", + "scheduled_service": "no" + }, + { + "id": "345866", + "ident": "BA-0006", + "type": "small_airport", + "name": "Kreševo Airstrip", + "latitude_deg": "43.885661", + "longitude_deg": "18.068562", + "continent": "EU", + "iso_country": "BA", + "iso_region": "BA-BIH", + "municipality": "Kreševo", + "scheduled_service": "no", + "gps_code": "LQKR" + }, + { + "id": "346794", + "ident": "BA-0007", + "type": "small_airport", + "name": "Gorice Airfield", + "latitude_deg": "44.911565", + "longitude_deg": "18.738884", + "continent": "EU", + "iso_country": "BA", + "iso_region": "BA-SRP", + "municipality": "Gorice", + "scheduled_service": "no" + }, + { + "id": "350119", + "ident": "BA-0008", + "type": "heliport", + "name": "Trebinje Helipad", + "latitude_deg": "42.705382", + "longitude_deg": "18.336074", + "elevation_ft": "895", + "continent": "EU", + "iso_country": "BA", + "iso_region": "BA-SRP", + "municipality": "Trebinje", + "scheduled_service": "no", + "home_link": "https://etrebinje.com/2020/07/helikopter-sletio-u-trebinje-na-pozaristu-ce-dejstvovati-u-kasnim-popodnevnim-satima/" + }, + { + "id": "301840", + "ident": "BAJ", + "type": "small_airport", + "name": "Bali Airport", + "latitude_deg": "-4.8833333333299995", + "longitude_deg": "149.133333333", + "elevation_ft": "90", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WBK", + "municipality": "Unea Island", + "scheduled_service": "no", + "iata_code": "BAJ", + "local_code": "BALI" + }, + { + "id": "313775", + "ident": "BAP", + "type": "closed", + "name": "Baibara Airport", + "latitude_deg": "-10.3432", + "longitude_deg": "149.6414", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Nabai", + "scheduled_service": "no", + "iata_code": "BAP", + "keywords": "Baibara" + }, + { + "id": "301857", + "ident": "BCJ", + "type": "closed", + "name": "Baca Grande Airfield", + "latitude_deg": "37.964777777799995", + "longitude_deg": "-105.776666667", + "elevation_ft": "7620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Crestone", + "scheduled_service": "no", + "iata_code": "BCJ" + }, + { + "id": "301858", + "ident": "BCP", + "type": "small_airport", + "name": "Bambu Airport", + "latitude_deg": "-5.863611111110001", + "longitude_deg": "146.4925", + "elevation_ft": "6790", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Bambu", + "scheduled_service": "no", + "gps_code": "AYBC", + "iata_code": "BCP", + "local_code": "BAM" + }, + { + "id": "27301", + "ident": "BCW", + "type": "medium_airport", + "name": "Benguera Island Airport", + "latitude_deg": "-21.853300094604492", + "longitude_deg": "35.43830108642578", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-I", + "municipality": "Benguera Island", + "scheduled_service": "yes", + "iata_code": "BCW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Benguera_Island_Airport" + }, + { + "id": "301872", + "ident": "BCZ", + "type": "small_airport", + "name": "Milyakburra Airport", + "latitude_deg": "-13.780833333299999", + "longitude_deg": "136.201666667", + "elevation_ft": "85", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Bickerton Island", + "scheduled_service": "no", + "iata_code": "BCZ", + "local_code": "YBIC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bickerton_Island" + }, + { + "id": "339981", + "ident": "BD-0001", + "type": "heliport", + "name": "Inani Beach Heliport", + "latitude_deg": "21.22472", + "longitude_deg": "92.0482", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Inani", + "scheduled_service": "no" + }, + { + "id": "339982", + "ident": "BD-0002", + "type": "heliport", + "name": "Ocean Paradise Heliport", + "latitude_deg": "21.418572", + "longitude_deg": "91.982574", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Cox's Bazar", + "scheduled_service": "no" + }, + { + "id": "339983", + "ident": "BD-0003", + "type": "closed", + "name": "Hotel Sea Palace Heliport", + "latitude_deg": "21.419863", + "longitude_deg": "91.981569", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Cox's Bazar", + "scheduled_service": "no" + }, + { + "id": "339984", + "ident": "BD-0004", + "type": "heliport", + "name": "Nilgiri Heliport", + "latitude_deg": "21.91355", + "longitude_deg": "92.3244", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Barpara", + "scheduled_service": "no" + }, + { + "id": "339985", + "ident": "BD-0005", + "type": "heliport", + "name": "Boga Lake Heliport", + "latitude_deg": "21.97982", + "longitude_deg": "92.46715", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Ruma", + "scheduled_service": "no" + }, + { + "id": "339987", + "ident": "BD-0006", + "type": "heliport", + "name": "Ruma Helipad", + "latitude_deg": "22.05122", + "longitude_deg": "92.38641", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Ruma", + "scheduled_service": "no" + }, + { + "id": "339988", + "ident": "BD-0007", + "type": "heliport", + "name": "Bandarban Heliport", + "latitude_deg": "22.20272", + "longitude_deg": "92.21449", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Bandarban", + "scheduled_service": "no" + }, + { + "id": "339989", + "ident": "BD-0008", + "type": "heliport", + "name": "NVK Helipad", + "latitude_deg": "22.28432", + "longitude_deg": "91.80263", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Dangar Char", + "scheduled_service": "no" + }, + { + "id": "339990", + "ident": "BD-0009", + "type": "heliport", + "name": "BNS Issa Khan Heliport", + "latitude_deg": "22.28124", + "longitude_deg": "91.7925", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Chattogram (Chittagong)", + "scheduled_service": "no" + }, + { + "id": "339991", + "ident": "BD-0010", + "type": "heliport", + "name": "GEC Convention Centre Helipad", + "latitude_deg": "22.35886", + "longitude_deg": "91.82005", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Chattogram (Chittagong)", + "scheduled_service": "no" + }, + { + "id": "339992", + "ident": "BD-0011", + "type": "heliport", + "name": "Bhasan Char Nayamasti Heliport 1", + "latitude_deg": "22.3589", + "longitude_deg": "91.36826", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Hatiya", + "scheduled_service": "no" + }, + { + "id": "339993", + "ident": "BD-0012", + "type": "heliport", + "name": "Bhasan Char Nayamasti Heliport 2", + "latitude_deg": "22.36626", + "longitude_deg": "91.36998", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Hatiya", + "scheduled_service": "no" + }, + { + "id": "339994", + "ident": "BD-0013", + "type": "heliport", + "name": "Swarna Dweep West Helipad", + "latitude_deg": "22.55542", + "longitude_deg": "91.29466", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Noakhali", + "scheduled_service": "no" + }, + { + "id": "339995", + "ident": "BD-0014", + "type": "heliport", + "name": "Swarna Dweep Water Plant Helipad", + "latitude_deg": "22.54405", + "longitude_deg": "91.32899", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Noakhali", + "scheduled_service": "no" + }, + { + "id": "339996", + "ident": "BD-0015", + "type": "heliport", + "name": "Swarna Dweep North Helipad", + "latitude_deg": "22.57064", + "longitude_deg": "91.3128", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Noakhali", + "scheduled_service": "no" + }, + { + "id": "339997", + "ident": "BD-0016", + "type": "heliport", + "name": "Swarna Dweep Central Helipad", + "latitude_deg": "22.56377", + "longitude_deg": "91.30638", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Noakhali", + "scheduled_service": "no" + }, + { + "id": "339998", + "ident": "BD-0017", + "type": "heliport", + "name": "Sandwip Heliport", + "latitude_deg": "22.48591", + "longitude_deg": "91.46101", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Sandwip", + "scheduled_service": "no" + }, + { + "id": "339999", + "ident": "BD-0018", + "type": "heliport", + "name": "Begumganj Helipad", + "latitude_deg": "22.94184", + "longitude_deg": "91.10494", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Begumganj", + "scheduled_service": "no" + }, + { + "id": "340000", + "ident": "BD-0019", + "type": "small_airport", + "name": "Noakhali Airport", + "latitude_deg": "22.7389", + "longitude_deg": "91.06489", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Noakhali", + "scheduled_service": "no" + }, + { + "id": "340001", + "ident": "BD-0020", + "type": "heliport", + "name": "Senbag Heliport", + "latitude_deg": "22.97907", + "longitude_deg": "91.2301", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Senbag", + "scheduled_service": "no" + }, + { + "id": "340002", + "ident": "BD-0021", + "type": "heliport", + "name": "Burhanuddin Heliport", + "latitude_deg": "22.508", + "longitude_deg": "90.71304", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-1", + "municipality": "Burhanuddin", + "scheduled_service": "no" + }, + { + "id": "340003", + "ident": "BD-0022", + "type": "small_airport", + "name": "Patuakhali Airport", + "latitude_deg": "22.37647", + "longitude_deg": "90.32213", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-1", + "municipality": "Patuakhali", + "scheduled_service": "no" + }, + { + "id": "348751", + "ident": "BD-0023", + "type": "closed", + "name": "Hathazari Airfield", + "latitude_deg": "22.50999", + "longitude_deg": "91.79041", + "elevation_ft": "39", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Hathazari", + "scheduled_service": "no" + }, + { + "id": "349318", + "ident": "BD-0024", + "type": "closed", + "name": "Chakaria Airport", + "latitude_deg": "21.77327", + "longitude_deg": "92.06874", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Chakaria", + "scheduled_service": "no" + }, + { + "id": "349319", + "ident": "BD-0025", + "type": "heliport", + "name": "Narikel Jinjira (Saint Martin's) Heliport", + "latitude_deg": "20.62663", + "longitude_deg": "92.32488", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Saint Martins", + "scheduled_service": "no" + }, + { + "id": "349320", + "ident": "BD-0026", + "type": "heliport", + "name": "Dhumdumia BGB Heliport", + "latitude_deg": "20.95911", + "longitude_deg": "92.25133", + "elevation_ft": "18", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Dhumdumia", + "scheduled_service": "no" + }, + { + "id": "349321", + "ident": "BD-0027", + "type": "heliport", + "name": "Naikhongchari BGB Heliport", + "latitude_deg": "21.43336", + "longitude_deg": "92.17393", + "elevation_ft": "169", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Naikhongchari", + "scheduled_service": "no" + }, + { + "id": "349322", + "ident": "BD-0028", + "type": "heliport", + "name": "Chhagalkhaiya BOP Heliport", + "latitude_deg": "21.48655", + "longitude_deg": "92.23599", + "elevation_ft": "171", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Chhagalkhaiya", + "scheduled_service": "no" + }, + { + "id": "349323", + "ident": "BD-0029", + "type": "heliport", + "name": "Tindu Heliport", + "latitude_deg": "21.72334", + "longitude_deg": "92.45736", + "elevation_ft": "354", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Tindu", + "scheduled_service": "no" + }, + { + "id": "349324", + "ident": "BD-0030", + "type": "heliport", + "name": "Bolipara Heliport", + "latitude_deg": "21.88065", + "longitude_deg": "92.39703", + "elevation_ft": "434", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Bolipara", + "scheduled_service": "no" + }, + { + "id": "349325", + "ident": "BD-0031", + "type": "heliport", + "name": "Keokradong Heliport", + "latitude_deg": "21.94874", + "longitude_deg": "92.5146", + "elevation_ft": "3186", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Keokradong", + "scheduled_service": "no" + }, + { + "id": "349326", + "ident": "BD-0032", + "type": "heliport", + "name": "Thanchi BGB Heliport", + "latitude_deg": "21.81823", + "longitude_deg": "92.44067", + "elevation_ft": "233", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Thanchi", + "scheduled_service": "no" + }, + { + "id": "349327", + "ident": "BD-0033", + "type": "heliport", + "name": "Remakri Heliport", + "latitude_deg": "21.67607", + "longitude_deg": "92.52014", + "elevation_ft": "233", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Remakri", + "scheduled_service": "no" + }, + { + "id": "349328", + "ident": "BD-0034", + "type": "heliport", + "name": "Boro Mowdak Heliport", + "latitude_deg": "21.57058", + "longitude_deg": "92.57103", + "elevation_ft": "341", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Boro Mowdak", + "scheduled_service": "no" + }, + { + "id": "349329", + "ident": "BD-0035", + "type": "heliport", + "name": "Upper Sangu River Heliport 1", + "latitude_deg": "21.40321", + "longitude_deg": "92.58095", + "elevation_ft": "502", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Remakri", + "scheduled_service": "no" + }, + { + "id": "349330", + "ident": "BD-0036", + "type": "heliport", + "name": "Upper Sangu River Heliport 2", + "latitude_deg": "21.40229", + "longitude_deg": "92.60747", + "elevation_ft": "609", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Remakri", + "scheduled_service": "no" + }, + { + "id": "349331", + "ident": "BD-0037", + "type": "heliport", + "name": "Marang Chara Heliport", + "latitude_deg": "21.34993", + "longitude_deg": "92.60561", + "elevation_ft": "491", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Remakri", + "scheduled_service": "no" + }, + { + "id": "349332", + "ident": "BD-0038", + "type": "heliport", + "name": "Upper Sangu River Heliport 3", + "latitude_deg": "21.30249", + "longitude_deg": "92.61998", + "elevation_ft": "941", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Remakri", + "scheduled_service": "no" + }, + { + "id": "349397", + "ident": "BD-0039", + "type": "closed", + "name": "Bajitpur Regional Airport", + "latitude_deg": "24.21232", + "longitude_deg": "90.9065", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-3", + "municipality": "Bajitpur", + "scheduled_service": "no" + }, + { + "id": "16495", + "ident": "BDH", + "type": "small_airport", + "name": "Willmar Municipal Airport John L Rice Field (2006)", + "latitude_deg": "45.117552", + "longitude_deg": "-95.132259", + "elevation_ft": "1126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Willmar", + "scheduled_service": "no", + "gps_code": "KBDH", + "iata_code": "ILL", + "local_code": "BDH", + "home_link": "http://www.willmarmn.gov/residents/travel-transportation/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Willmar_Municipal_Airport" + }, + { + "id": "301874", + "ident": "BDZ", + "type": "small_airport", + "name": "Baindoung Airport", + "latitude_deg": "-6.34722222222", + "longitude_deg": "146.942222222", + "elevation_ft": "4400", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "scheduled_service": "no", + "gps_code": "AYBG", + "iata_code": "BDZ", + "local_code": "BDO" + }, + { + "id": "43750", + "ident": "BE-0001", + "type": "closed", + "name": "Froidchapelle Glider Field", + "latitude_deg": "50.176388", + "longitude_deg": "4.352222", + "elevation_ft": "902", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WHT", + "municipality": "Froidchapelle", + "scheduled_service": "no" + }, + { + "id": "43753", + "ident": "BE-0002", + "type": "closed", + "name": "Chimay-Virelles Ulmodrome", + "latitude_deg": "50.117778778", + "longitude_deg": "4.33055591583", + "elevation_ft": "919", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WHT", + "municipality": "Chimay", + "scheduled_service": "no" + }, + { + "id": "43762", + "ident": "BE-0003", + "type": "closed", + "name": "Sovet Airfield", + "latitude_deg": "50.286667", + "longitude_deg": "5.040278", + "elevation_ft": "919", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WNA", + "municipality": "Ciney", + "scheduled_service": "no" + }, + { + "id": "301715", + "ident": "BE-0004", + "type": "heliport", + "name": "Zomergem Heliport", + "latitude_deg": "51.131389", + "longitude_deg": "3.522222", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "scheduled_service": "no", + "gps_code": "EBZM" + }, + { + "id": "306974", + "ident": "BE-0005", + "type": "closed", + "name": "RAF Castle Camps", + "latitude_deg": "52.051389", + "longitude_deg": "0.378611", + "elevation_ft": "420", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Cambridgeshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Castle_Camps" + }, + { + "id": "336984", + "ident": "BE-0006", + "type": "heliport", + "name": "Aalst Heliport", + "latitude_deg": "50.931377", + "longitude_deg": "4.087209", + "elevation_ft": "60", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Aalst", + "scheduled_service": "no", + "gps_code": "EBAL" + }, + { + "id": "312154", + "ident": "BE-0007", + "type": "closed", + "name": "Imelda Hospital Helipad", + "latitude_deg": "51.01767", + "longitude_deg": "4.55819", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Bonheiden", + "scheduled_service": "no" + }, + { + "id": "323796", + "ident": "BE-0008", + "type": "heliport", + "name": "Brecht/Vochten Heliport", + "latitude_deg": "51.332", + "longitude_deg": "4.62466", + "elevation_ft": "87", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Brecht", + "scheduled_service": "no", + "gps_code": "EBBV" + }, + { + "id": "323798", + "ident": "BE-0009", + "type": "closed", + "name": "Jan Palfijn Hospital Heliport", + "latitude_deg": "51.048358", + "longitude_deg": "3.700268", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Gent", + "scheduled_service": "no" + }, + { + "id": "323969", + "ident": "BE-0010", + "type": "heliport", + "name": "Lint Heliport", + "latitude_deg": "51.136214", + "longitude_deg": "4.47898", + "elevation_ft": "36", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Lint", + "scheduled_service": "no", + "gps_code": "EBLT" + }, + { + "id": "323973", + "ident": "BE-0011", + "type": "heliport", + "name": "Neerpelt/Tilburgs Heliport", + "latitude_deg": "51.240015", + "longitude_deg": "5.417956", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VLI", + "municipality": "Neerpelt", + "scheduled_service": "no", + "gps_code": "EBNP" + }, + { + "id": "324445", + "ident": "BE-0012", + "type": "balloonport", + "name": "Céroux-Mousty Balloon Field", + "latitude_deg": "50.660241", + "longitude_deg": "4.513276", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WBR", + "municipality": "Céroux-Mousty", + "scheduled_service": "no", + "home_link": "http://www.europeanballoon.be/fr/site-decollage-place-ceroux-mousty.html" + }, + { + "id": "337582", + "ident": "BE-0013", + "type": "heliport", + "name": "Halen Heliport", + "latitude_deg": "50.930833", + "longitude_deg": "5.081389", + "elevation_ft": "112", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VLI", + "municipality": "Halen", + "scheduled_service": "no", + "gps_code": "EBHL" + }, + { + "id": "337610", + "ident": "BE-0014", + "type": "heliport", + "name": "Ichtegem Heliport", + "latitude_deg": "51.061944", + "longitude_deg": "3.030556", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Ichtegem", + "scheduled_service": "no", + "gps_code": "EBWV" + }, + { + "id": "337615", + "ident": "BE-0015", + "type": "heliport", + "name": "Lochristi Heliport", + "latitude_deg": "51.084131", + "longitude_deg": "3.838701", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Lochristi", + "scheduled_service": "no", + "gps_code": "EBLO" + }, + { + "id": "337616", + "ident": "BE-0016", + "type": "heliport", + "name": "Lochristi Heliport", + "latitude_deg": "51.084131", + "longitude_deg": "3.838701", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Lochristi", + "scheduled_service": "no", + "gps_code": "EBLO" + }, + { + "id": "342113", + "ident": "BE-0017", + "type": "heliport", + "name": "Montegnee / CHC Heliport", + "latitude_deg": "50.640702", + "longitude_deg": "5.533148", + "elevation_ft": "571", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLG", + "scheduled_service": "no", + "gps_code": "EBCH" + }, + { + "id": "342121", + "ident": "BE-0018", + "type": "heliport", + "name": "Oostdijckbank Radar Post Helipad", + "latitude_deg": "51.274444", + "longitude_deg": "2.4475", + "elevation_ft": "59", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Nieuwpoort", + "scheduled_service": "no", + "gps_code": "EBOO", + "wikipedia_link": "https://events.scia.net/UC-pdf/Oranjewoud-Oostdijckbank.pdf" + }, + { + "id": "429993", + "ident": "BE-0019", + "type": "heliport", + "name": "Queen Astrid Military Hospital Heliport", + "latitude_deg": "50.90527", + "longitude_deg": "4.38936", + "elevation_ft": "209", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-BRU", + "municipality": "Brussels", + "scheduled_service": "no" + }, + { + "id": "312756", + "ident": "BEA", + "type": "closed", + "name": "Bereina Airport", + "latitude_deg": "-8.64", + "longitude_deg": "146.5083", + "elevation_ft": "58", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Bereina Mission", + "scheduled_service": "no", + "iata_code": "BEA", + "keywords": "Inauaia" + }, + { + "id": "309346", + "ident": "BF-0001", + "type": "small_airport", + "name": "Peta Barabe Airfield", + "latitude_deg": "14.366389", + "longitude_deg": "0.086944", + "elevation_ft": "910", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-OUD", + "municipality": "Essakane Gold Mine", + "scheduled_service": "no", + "gps_code": "DFEN", + "keywords": "I Am Gold, Essakane" + }, + { + "id": "43886", + "ident": "BG-0001", + "type": "closed", + "name": "Livada Airport", + "latitude_deg": "42.456284", + "longitude_deg": "27.197334", + "elevation_ft": "58", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-02", + "municipality": "Livada", + "scheduled_service": "no" + }, + { + "id": "43888", + "ident": "BG-0002", + "type": "closed", + "name": "Troyanovo Airport", + "latitude_deg": "42.56879", + "longitude_deg": "27.148243", + "elevation_ft": "546", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-02", + "municipality": "Troyanovo", + "scheduled_service": "no" + }, + { + "id": "43889", + "ident": "BG-0003", + "type": "small_airport", + "name": "Trustikovo Airstrip", + "latitude_deg": "42.414635", + "longitude_deg": "27.294455", + "elevation_ft": "40", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-02", + "municipality": "Trustikovo", + "scheduled_service": "no" + }, + { + "id": "43890", + "ident": "BG-0004", + "type": "small_airport", + "name": "Zagortsi Airfield", + "latitude_deg": "42.403419", + "longitude_deg": "27.070246", + "elevation_ft": "368", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-02", + "municipality": "Zagortsi", + "scheduled_service": "no" + }, + { + "id": "43893", + "ident": "BG-0005", + "type": "small_airport", + "name": "Svishtov Airfield", + "latitude_deg": "43.618179", + "longitude_deg": "25.283663", + "elevation_ft": "60", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-04", + "municipality": "Svishtov", + "scheduled_service": "no" + }, + { + "id": "43894", + "ident": "BG-0006", + "type": "closed", + "name": "Vardim Airfield", + "latitude_deg": "43.617466", + "longitude_deg": "25.523912", + "elevation_ft": "60", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-04", + "municipality": "Svishtov", + "scheduled_service": "no" + }, + { + "id": "43895", + "ident": "BG-0007", + "type": "closed", + "name": "Glozhene Airfield", + "latitude_deg": "43.679222", + "longitude_deg": "23.796246", + "elevation_ft": "177", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-06", + "municipality": "Glozhene", + "scheduled_service": "no" + }, + { + "id": "43896", + "ident": "BG-0008", + "type": "closed", + "name": "Kozloduy Airfield", + "latitude_deg": "43.763134", + "longitude_deg": "23.722031", + "elevation_ft": "152", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-06", + "municipality": "Kozloduy", + "scheduled_service": "no" + }, + { + "id": "43897", + "ident": "BG-0009", + "type": "small_airport", + "name": "Selanovtsi Airfield", + "latitude_deg": "43.655277", + "longitude_deg": "24.010071", + "elevation_ft": "535", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-06", + "municipality": "Selanovtsi", + "scheduled_service": "no" + }, + { + "id": "43901", + "ident": "BG-0010", + "type": "closed", + "name": "Krushovene Airfield", + "latitude_deg": "43.623531", + "longitude_deg": "24.378567", + "elevation_ft": "130", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-15", + "municipality": "Krushovene", + "scheduled_service": "no" + }, + { + "id": "43902", + "ident": "BG-0011", + "type": "closed", + "name": "Milkovitsa Airfield", + "latitude_deg": "43.634274", + "longitude_deg": "24.757254", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-15", + "municipality": "Milkovitsa", + "scheduled_service": "no" + }, + { + "id": "43904", + "ident": "BG-0012", + "type": "small_airport", + "name": "Voysil Airfield", + "latitude_deg": "42.21756", + "longitude_deg": "24.639126", + "elevation_ft": "601", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-16", + "municipality": "Voysil", + "scheduled_service": "no" + }, + { + "id": "43905", + "ident": "BG-0013", + "type": "small_airport", + "name": "Dve Mogili Airfield", + "latitude_deg": "43.606655", + "longitude_deg": "25.890982", + "elevation_ft": "837", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-18", + "municipality": "Dve Mogili", + "scheduled_service": "no", + "gps_code": "LBDM" + }, + { + "id": "43906", + "ident": "BG-0014", + "type": "closed", + "name": "Ryakhovo Airport", + "latitude_deg": "43.982754", + "longitude_deg": "26.242744", + "elevation_ft": "65", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-18", + "municipality": "Ryakhovo", + "scheduled_service": "no" + }, + { + "id": "43907", + "ident": "BG-0015", + "type": "closed", + "name": "Trastenik Airfield", + "latitude_deg": "43.665955", + "longitude_deg": "25.866686", + "elevation_ft": "450", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-18", + "municipality": "Trastenik", + "scheduled_service": "no" + }, + { + "id": "43913", + "ident": "BG-0016", + "type": "small_airport", + "name": "Raykova Mogila Airfield", + "latitude_deg": "41.815966", + "longitude_deg": "26.304145", + "elevation_ft": "690", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-26", + "municipality": "Raykova Mogila", + "scheduled_service": "no" + }, + { + "id": "43914", + "ident": "BG-0017", + "type": "closed", + "name": "Topolovgrad Airfield", + "latitude_deg": "42.11302", + "longitude_deg": "26.382551", + "elevation_ft": "784", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-26", + "municipality": "Topolovgrad", + "scheduled_service": "no" + }, + { + "id": "43915", + "ident": "BG-0018", + "type": "closed", + "name": "Irechekovo Airfield", + "latitude_deg": "42.470249", + "longitude_deg": "26.733295", + "elevation_ft": "804", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-28", + "municipality": "Irechekovo", + "scheduled_service": "no" + }, + { + "id": "43916", + "ident": "BG-0019", + "type": "closed", + "name": "Voynika Airfield", + "latitude_deg": "42.377701", + "longitude_deg": "26.843519", + "elevation_ft": "830", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-28", + "municipality": "Voynika", + "scheduled_service": "no" + }, + { + "id": "43917", + "ident": "BG-0020", + "type": "closed", + "name": "Yambol Airfield", + "latitude_deg": "42.507132", + "longitude_deg": "26.490739", + "elevation_ft": "453", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-28", + "municipality": "Yambol", + "scheduled_service": "no" + }, + { + "id": "313407", + "ident": "BG-0021", + "type": "closed", + "name": "Gledka Airfield", + "latitude_deg": "41.5999", + "longitude_deg": "25.3857", + "elevation_ft": "962", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-09", + "municipality": "Kardzali", + "scheduled_service": "no", + "keywords": "Kardjali, Kardzhali, KDG" + }, + { + "id": "315501", + "ident": "BG-0022", + "type": "closed", + "name": "Staro Jelezare", + "latitude_deg": "42.447797", + "longitude_deg": "24.663927", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-16", + "scheduled_service": "no" + }, + { + "id": "315509", + "ident": "BG-0023", + "type": "small_airport", + "name": "Ostrovo", + "latitude_deg": "43.6938742", + "longitude_deg": "26.5799644", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-17", + "scheduled_service": "no", + "local_code": "LB47" + }, + { + "id": "315510", + "ident": "BG-0024", + "type": "small_airport", + "name": "Krivnya Agricultural Airfield", + "latitude_deg": "43.66307", + "longitude_deg": "26.422251", + "elevation_ft": "984", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-18", + "municipality": "Senovo", + "scheduled_service": "no" + }, + { + "id": "315604", + "ident": "BG-0025", + "type": "small_airport", + "name": "Belchinski Bani Airstrip", + "latitude_deg": "42.37488", + "longitude_deg": "23.39322", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-23", + "municipality": "Belchinski Bani", + "scheduled_service": "no" + }, + { + "id": "315677", + "ident": "BG-0026", + "type": "closed", + "name": "Polikraishte", + "latitude_deg": "43.199333", + "longitude_deg": "25.640889", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-04", + "scheduled_service": "no" + }, + { + "id": "315917", + "ident": "BG-0027", + "type": "small_airport", + "name": "Gabrovo Airstrip", + "latitude_deg": "42.9482", + "longitude_deg": "25.35998", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-07", + "municipality": "Gabrovo", + "scheduled_service": "no", + "keywords": "Габрово" + }, + { + "id": "315928", + "ident": "BG-0028", + "type": "small_airport", + "name": "Blagoevo Airfield", + "latitude_deg": "43.455488", + "longitude_deg": "26.431655", + "elevation_ft": "1185", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-17", + "municipality": "Blagoevo", + "scheduled_service": "no" + }, + { + "id": "316181", + "ident": "BG-0029", + "type": "small_airport", + "name": "Staro Selishte", + "latitude_deg": "43.6502778", + "longitude_deg": "26.7541667", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-17", + "municipality": "Staro Selishte", + "scheduled_service": "no", + "keywords": "Старо селище" + }, + { + "id": "316246", + "ident": "BG-0030", + "type": "small_airport", + "name": "Bozhurishte", + "latitude_deg": "42.7533821", + "longitude_deg": "23.2028015", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-23", + "scheduled_service": "no" + }, + { + "id": "316281", + "ident": "BG-0031", + "type": "small_airport", + "name": "Draganovtsi Airfield", + "latitude_deg": "42.943042", + "longitude_deg": "25.169528", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-07", + "municipality": "Draganovtsi", + "scheduled_service": "no", + "gps_code": "LBDR", + "keywords": "Драгановци" + }, + { + "id": "316288", + "ident": "BG-0032", + "type": "small_airport", + "name": "Breznik", + "latitude_deg": "42.6933052", + "longitude_deg": "22.8965594", + "elevation_ft": "699", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-14", + "scheduled_service": "no", + "gps_code": "LBBR" + }, + { + "id": "316339", + "ident": "BG-0033", + "type": "small_airport", + "name": "Slivnitsa", + "latitude_deg": "42.8441447", + "longitude_deg": "23.0144436", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-23", + "scheduled_service": "no" + }, + { + "id": "318180", + "ident": "BG-0034", + "type": "closed", + "name": "Brogovo Airstrip", + "latitude_deg": "44.132", + "longitude_deg": "22.659357", + "elevation_ft": "195", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-05", + "municipality": "Brogovo", + "scheduled_service": "no" + }, + { + "id": "318181", + "ident": "BG-0035", + "type": "closed", + "name": "Kapitanovtsi Airstrip", + "latitude_deg": "44.055815", + "longitude_deg": "22.878457", + "elevation_ft": "155", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-05", + "municipality": "Kapitanovtsi", + "scheduled_service": "no" + }, + { + "id": "320248", + "ident": "BG-0036", + "type": "small_airport", + "name": "Veren Airfield", + "latitude_deg": "42.3326251", + "longitude_deg": "25.1695166", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-24", + "municipality": "Veren", + "scheduled_service": "no", + "local_code": "LB28" + }, + { + "id": "320637", + "ident": "BG-0037", + "type": "small_airport", + "name": "Orliak Airfield", + "latitude_deg": "43.6344188", + "longitude_deg": "27.3963294", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-08", + "scheduled_service": "no" + }, + { + "id": "320719", + "ident": "BG-0038", + "type": "small_airport", + "name": "Suvorovo Airstrip", + "latitude_deg": "43.3587179", + "longitude_deg": "27.5827284", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-03", + "scheduled_service": "no" + }, + { + "id": "320720", + "ident": "BG-0039", + "type": "small_airport", + "name": "Branichevo Airstrip", + "latitude_deg": "43.6657816", + "longitude_deg": "27.1007895", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-27", + "municipality": "Branichevo", + "scheduled_service": "no" + }, + { + "id": "320908", + "ident": "BG-0040", + "type": "small_airport", + "name": "Air Belozem Airstrip", + "latitude_deg": "42.21673", + "longitude_deg": "25.066588", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-16", + "municipality": "Belozem", + "scheduled_service": "no", + "home_link": "http://air.belozem.com/index.php" + }, + { + "id": "320996", + "ident": "BG-0041", + "type": "small_airport", + "name": "Selskostopansko Airstrip", + "latitude_deg": "42.544095", + "longitude_deg": "26.673452", + "elevation_ft": "837", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-28", + "municipality": "Vodenichane", + "scheduled_service": "no" + }, + { + "id": "321060", + "ident": "BG-0042", + "type": "small_airport", + "name": "Selskostopansko Airstrip", + "latitude_deg": "43.236482", + "longitude_deg": "27.045656", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-27", + "municipality": "Ilia Blaskovo", + "scheduled_service": "no" + }, + { + "id": "321097", + "ident": "BG-0043", + "type": "small_airport", + "name": "Nikola Kozlevo Airstrip", + "latitude_deg": "43.5533648", + "longitude_deg": "27.2228242", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-27", + "municipality": "Nikola Kozlevo", + "scheduled_service": "no" + }, + { + "id": "321107", + "ident": "BG-0044", + "type": "small_airport", + "name": "Yunatsite Airstrip", + "latitude_deg": "42.232673", + "longitude_deg": "24.245056", + "elevation_ft": "766", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-13", + "municipality": "Yunatsite", + "scheduled_service": "no" + }, + { + "id": "323617", + "ident": "BG-0045", + "type": "small_airport", + "name": "Mogilishte Airstrip", + "latitude_deg": "43.49156", + "longitude_deg": "28.351996", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-08", + "municipality": "Mogilishte", + "scheduled_service": "no" + }, + { + "id": "323737", + "ident": "BG-0046", + "type": "small_airport", + "name": "Dzhulyunitsa Airstrip", + "latitude_deg": "43.5852521", + "longitude_deg": "25.6144416", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-18", + "municipality": "Dzhulyunitsa", + "scheduled_service": "no" + }, + { + "id": "323828", + "ident": "BG-0047", + "type": "small_airport", + "name": "Rakovski Airstrip", + "latitude_deg": "42.293513", + "longitude_deg": "24.947311", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-16", + "municipality": "Rakovski", + "scheduled_service": "no" + }, + { + "id": "323875", + "ident": "BG-0048", + "type": "small_airport", + "name": "Pishtigovo Airstrip", + "latitude_deg": "42.2307252", + "longitude_deg": "24.4383034", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-13", + "municipality": "Pishtigovo", + "scheduled_service": "no" + }, + { + "id": "323908", + "ident": "BG-0049", + "type": "closed", + "name": "SSA Kalipetrovo", + "latitude_deg": "44.0580505", + "longitude_deg": "27.2564944", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-19", + "municipality": "Kalipetrovo", + "scheduled_service": "no" + }, + { + "id": "323910", + "ident": "BG-0050", + "type": "small_airport", + "name": "Koynare Airstrip", + "latitude_deg": "43.3710549", + "longitude_deg": "24.1304424", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-15", + "municipality": "Koynare", + "scheduled_service": "no" + }, + { + "id": "323951", + "ident": "BG-0051", + "type": "small_airport", + "name": "Ovchepoltsi Airstrip", + "latitude_deg": "42.3227836", + "longitude_deg": "24.4194897", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-13", + "municipality": "Ovchepoltsi", + "scheduled_service": "no" + }, + { + "id": "324004", + "ident": "BG-0052", + "type": "closed", + "name": "Pirin Airfield", + "latitude_deg": "41.564478", + "longitude_deg": "23.766999", + "elevation_ft": "1638", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-01", + "municipality": "Gotse Delchev", + "scheduled_service": "no" + }, + { + "id": "324048", + "ident": "BG-0053", + "type": "small_airport", + "name": "Staroseltsi", + "latitude_deg": "43.531511", + "longitude_deg": "24.2967868", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-15", + "scheduled_service": "no" + }, + { + "id": "324356", + "ident": "BG-0054", + "type": "closed", + "name": "Saedinenie Airstrip", + "latitude_deg": "42.296957", + "longitude_deg": "24.555684", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-16", + "municipality": "Saedinenie", + "scheduled_service": "no" + }, + { + "id": "324584", + "ident": "BG-0055", + "type": "small_airport", + "name": "Shumen Airfield", + "latitude_deg": "43.287027", + "longitude_deg": "26.942278", + "elevation_ft": "761", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-27", + "municipality": "Shumen", + "scheduled_service": "no" + }, + { + "id": "325007", + "ident": "BG-0056", + "type": "small_airport", + "name": "Karamanite Airstrip", + "latitude_deg": "43.4945283", + "longitude_deg": "27.4480307", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-03", + "scheduled_service": "no" + }, + { + "id": "325008", + "ident": "BG-0057", + "type": "small_airport", + "name": "Lozen Airstrip", + "latitude_deg": "43.3017942", + "longitude_deg": "25.8624229", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-04", + "scheduled_service": "no" + }, + { + "id": "325118", + "ident": "BG-0058", + "type": "small_airport", + "name": "Dragoman Airstrip", + "latitude_deg": "42.9335588", + "longitude_deg": "22.978856", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-23", + "scheduled_service": "no" + }, + { + "id": "326621", + "ident": "BG-0059", + "type": "small_airport", + "name": "Slavovitsa Airstrip", + "latitude_deg": "43.58114", + "longitude_deg": "24.447395", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-15", + "scheduled_service": "no" + }, + { + "id": "326891", + "ident": "BG-0060", + "type": "small_airport", + "name": "Panicharevo Airstrip", + "latitude_deg": "42.2765321", + "longitude_deg": "22.990845", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-10", + "municipality": "Panicharevo", + "scheduled_service": "no" + }, + { + "id": "328102", + "ident": "BG-0061", + "type": "small_airport", + "name": "Doyrentsi", + "latitude_deg": "43.250388", + "longitude_deg": "24.838526", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-11", + "municipality": "Lovec", + "scheduled_service": "no" + }, + { + "id": "328224", + "ident": "BG-0062", + "type": "small_airport", + "name": "Knezha Airstrip", + "latitude_deg": "43.5460038", + "longitude_deg": "24.0946856", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-15", + "scheduled_service": "no" + }, + { + "id": "328225", + "ident": "BG-0063", + "type": "small_airport", + "name": "Brenitsa Airstrip", + "latitude_deg": "43.4415329", + "longitude_deg": "24.1403714", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-15", + "scheduled_service": "no" + }, + { + "id": "328466", + "ident": "BG-0064", + "type": "small_airport", + "name": "Gradishte Airstrip", + "latitude_deg": "43.3339849", + "longitude_deg": "26.8542546", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-27", + "scheduled_service": "no" + }, + { + "id": "328915", + "ident": "BG-0065", + "type": "small_airport", + "name": "Borovan Airstrip", + "latitude_deg": "43.426891", + "longitude_deg": "23.77037", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-06", + "scheduled_service": "no" + }, + { + "id": "329247", + "ident": "BG-0066", + "type": "small_airport", + "name": "Tervel Airstrip", + "latitude_deg": "43.717853", + "longitude_deg": "27.439528", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-08", + "scheduled_service": "no" + }, + { + "id": "330281", + "ident": "BG-0067", + "type": "small_airport", + "name": "Aytos Airstrip", + "latitude_deg": "42.6774939", + "longitude_deg": "27.2549498", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-02", + "scheduled_service": "no" + }, + { + "id": "330334", + "ident": "BG-0068", + "type": "small_airport", + "name": "Lozarevo Airstrip", + "latitude_deg": "42.757368", + "longitude_deg": "26.900321", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-02", + "scheduled_service": "no", + "keywords": "Лозарево" + }, + { + "id": "330371", + "ident": "BG-0069", + "type": "small_airport", + "name": "Bedzhene Airstrip", + "latitude_deg": "43.447649", + "longitude_deg": "27.276678", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-27", + "municipality": "Bedzhene", + "scheduled_service": "no" + }, + { + "id": "330381", + "ident": "BG-0070", + "type": "small_airport", + "name": "Krivodol Airstrip", + "latitude_deg": "43.37472", + "longitude_deg": "23.51036", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-06", + "municipality": "Krivodol", + "scheduled_service": "no" + }, + { + "id": "330382", + "ident": "BG-0071", + "type": "small_airport", + "name": "Medovnitsa Airstrip", + "latitude_deg": "43.647875", + "longitude_deg": "22.797256", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-05", + "municipality": "Medovnitsa", + "scheduled_service": "no" + }, + { + "id": "331798", + "ident": "BG-0072", + "type": "small_airport", + "name": "Slatina Airstrip", + "latitude_deg": "43.271956", + "longitude_deg": "24.739418", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-11", + "scheduled_service": "no" + }, + { + "id": "331845", + "ident": "BG-0073", + "type": "small_airport", + "name": "Shtraklevo Airstrip", + "latitude_deg": "43.727328", + "longitude_deg": "26.050494", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-18", + "municipality": "Shtraklevo", + "scheduled_service": "no" + }, + { + "id": "342213", + "ident": "BG-0074", + "type": "small_airport", + "name": "Tsar-Kaloyan Airfield", + "latitude_deg": "43.6058", + "longitude_deg": "26.287", + "elevation_ft": "974", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-17", + "municipality": "Tsar-Kaloyan", + "scheduled_service": "no" + }, + { + "id": "342214", + "ident": "BG-0075", + "type": "small_airport", + "name": "Vetrino Airstrip", + "latitude_deg": "43.31172", + "longitude_deg": "27.41527", + "elevation_ft": "689", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-03", + "municipality": "Vetrino", + "scheduled_service": "no" + }, + { + "id": "342215", + "ident": "BG-0076", + "type": "closed", + "name": "Ezerets Airstrip", + "latitude_deg": "43.59181", + "longitude_deg": "28.50535", + "elevation_ft": "118", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-08", + "municipality": "Ezerets", + "scheduled_service": "no" + }, + { + "id": "345099", + "ident": "BG-0077", + "type": "small_airport", + "name": "Ruen Airstrip", + "latitude_deg": "42.80135", + "longitude_deg": "27.29442", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-02", + "scheduled_service": "no" + }, + { + "id": "345104", + "ident": "BG-0078", + "type": "small_airport", + "name": "Belozem SSA Airstrip", + "latitude_deg": "42.21439", + "longitude_deg": "25.05879", + "elevation_ft": "489", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-16", + "municipality": "Belozem", + "scheduled_service": "no" + }, + { + "id": "346373", + "ident": "BG-0079", + "type": "small_airport", + "name": "Zabet Airstrip", + "latitude_deg": "43.74425", + "longitude_deg": "26.66147", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-17", + "scheduled_service": "no" + }, + { + "id": "347167", + "ident": "BG-0080", + "type": "small_airport", + "name": "Selskostopansko Airstrip", + "latitude_deg": "43.40321", + "longitude_deg": "25.8523", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-18", + "scheduled_service": "no" + }, + { + "id": "347419", + "ident": "BG-0081", + "type": "small_airport", + "name": "Kalugerene Airstrip", + "latitude_deg": "43.90714", + "longitude_deg": "26.86659", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-19", + "municipality": "Kalugerene", + "scheduled_service": "no" + }, + { + "id": "347697", + "ident": "BG-0082", + "type": "small_airport", + "name": "Zelenikovo Airstrip SSA", + "latitude_deg": "42.39258", + "longitude_deg": "25.07867", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-16", + "scheduled_service": "no" + }, + { + "id": "347698", + "ident": "BG-0083", + "type": "small_airport", + "name": "Moskovec Airstrip SSA", + "latitude_deg": "42.65839", + "longitude_deg": "24.68383", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-16", + "scheduled_service": "no" + }, + { + "id": "347932", + "ident": "BG-0084", + "type": "small_airport", + "name": "Nedelevo Airstrip", + "latitude_deg": "42.33902", + "longitude_deg": "24.60951", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-16", + "scheduled_service": "no" + }, + { + "id": "348160", + "ident": "BG-0085", + "type": "closed", + "name": "Kubrat Airstrip", + "latitude_deg": "43.78688", + "longitude_deg": "26.51561", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-17", + "scheduled_service": "no" + }, + { + "id": "348336", + "ident": "BG-0086", + "type": "small_airport", + "name": "Vabel Airstrip", + "latitude_deg": "43.66382", + "longitude_deg": "24.91322", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-15", + "scheduled_service": "no" + }, + { + "id": "351075", + "ident": "BG-0087", + "type": "closed", + "name": "Pchelnik Airstrip", + "latitude_deg": "43.01465", + "longitude_deg": "27.65036", + "elevation_ft": "102", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-03", + "municipality": "Pchelnik", + "scheduled_service": "no" + }, + { + "id": "354823", + "ident": "BG-0088", + "type": "small_airport", + "name": "Omarchevo Airstrip", + "latitude_deg": "42.46778", + "longitude_deg": "26.14417", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-20", + "scheduled_service": "no" + }, + { + "id": "430507", + "ident": "BG-0089", + "type": "small_airport", + "name": "Popovo Airfield", + "latitude_deg": "43.36008", + "longitude_deg": "26.23895", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-17", + "scheduled_service": "no" + }, + { + "id": "31597", + "ident": "BG-HKV", + "type": "small_airport", + "name": "Malevo Airport", + "latitude_deg": "41.871799469", + "longitude_deg": "25.6047992706", + "elevation_ft": "600", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-26", + "municipality": "Haskovo", + "scheduled_service": "no", + "iata_code": "HKV", + "keywords": "LB26" + }, + { + "id": "111", + "ident": "BG-JAM", + "type": "medium_airport", + "name": "Bezmer Air Base", + "latitude_deg": "42.4548988342", + "longitude_deg": "26.3521995544", + "elevation_ft": "509", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-28", + "municipality": "Yambol", + "scheduled_service": "no", + "gps_code": "LBIA", + "iata_code": "JAM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bezmer_Airbase", + "keywords": "LB44" + }, + { + "id": "31697", + "ident": "BGAA", + "type": "medium_airport", + "name": "Aasiaat Airport", + "latitude_deg": "68.721802", + "longitude_deg": "-52.784698", + "elevation_ft": "74", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Aasiaat", + "scheduled_service": "yes", + "gps_code": "BGAA", + "iata_code": "JEG", + "home_link": "http://airgreenland.com/om_rejsen/efter_rejsen/din_destination_/aasiaat/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aasiaat_Airport" + }, + { + "id": "43214", + "ident": "BGAG", + "type": "heliport", + "name": "Aappilattoq (Qaasuitsup) Heliport", + "latitude_deg": "72.88703", + "longitude_deg": "-55.596287", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Qaasuitsup", + "scheduled_service": "yes", + "gps_code": "BGAG", + "iata_code": "AOQ", + "local_code": "AAP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aappilattoq_(Qaasuitsup)_Heliport" + }, + { + "id": "42247", + "ident": "BGAM", + "type": "heliport", + "name": "Tasiilaq Heliport", + "latitude_deg": "65.612296", + "longitude_deg": "-37.618335", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Tasiilaq", + "scheduled_service": "yes", + "gps_code": "BGAM", + "iata_code": "AGM", + "local_code": "AGM", + "home_link": "http://airgreenland.com/om_rejsen/efter_rejsen/din_destination_/tasiilaq/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tasiilaq_Heliport", + "keywords": "Ammassalik Island" + }, + { + "id": "35285", + "ident": "BGAP", + "type": "heliport", + "name": "Alluitsup Paa Heliport", + "latitude_deg": "60.46445", + "longitude_deg": "-45.56917", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Alluitsup Paa", + "scheduled_service": "yes", + "gps_code": "BGAP", + "local_code": "LLU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alluitsup_Paa_Heliport" + }, + { + "id": "44046", + "ident": "BGAQ", + "type": "heliport", + "name": "Aappilattoq (Kujalleq) Heliport", + "latitude_deg": "60.148357", + "longitude_deg": "-44.286916", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Nanortalik", + "scheduled_service": "yes", + "gps_code": "BGAQ", + "local_code": "QUV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aappilattoq_Heliport_(Kujalleq)", + "keywords": "Aappilattoq (Nanortalik)" + }, + { + "id": "44048", + "ident": "BGAR", + "type": "heliport", + "name": "Arsuk Heliport", + "latitude_deg": "61.176771", + "longitude_deg": "-48.41972", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Arsuk", + "scheduled_service": "no", + "gps_code": "BGAR", + "keywords": "JRK" + }, + { + "id": "44047", + "ident": "BGAS", + "type": "heliport", + "name": "Ammassivik Heliport", + "latitude_deg": "60.597376", + "longitude_deg": "-45.382445", + "elevation_ft": "71", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "scheduled_service": "yes", + "gps_code": "BGAS", + "local_code": "QUW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ammassivik_Heliport" + }, + { + "id": "35286", + "ident": "BGAT", + "type": "heliport", + "name": "Attu Heliport", + "latitude_deg": "67.9406628551", + "longitude_deg": "-53.6218696833", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Attu", + "scheduled_service": "yes", + "gps_code": "BGAT", + "iata_code": "QGQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Attu_Heliport" + }, + { + "id": "113", + "ident": "BGBW", + "type": "medium_airport", + "name": "Narsarsuaq Airport", + "latitude_deg": "61.1605", + "longitude_deg": "-45.425999", + "elevation_ft": "112", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Narsarsuaq", + "scheduled_service": "yes", + "gps_code": "BGBW", + "iata_code": "UAK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Narsarsuaq_Airport" + }, + { + "id": "35299", + "ident": "BGCH", + "type": "heliport", + "name": "Qasigiannguit Heliport", + "latitude_deg": "68.822815547", + "longitude_deg": "-51.1734473705", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Qasigiannguit", + "scheduled_service": "yes", + "gps_code": "BGCH", + "iata_code": "JCH", + "home_link": "http://airgreenland.com/om_rejsen/efter_rejsen/din_destination_/qasigiannguit/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qasigiannguit_Heliport" + }, + { + "id": "30839", + "ident": "BGCO", + "type": "small_airport", + "name": "Neerlerit Inaat Airport", + "latitude_deg": "70.7431030273", + "longitude_deg": "-22.6504993439", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Neerlerit Inaat", + "scheduled_service": "yes", + "gps_code": "BGCO", + "iata_code": "CNP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nerlerit_Inaat_Airport", + "keywords": "Constable Point" + }, + { + "id": "44050", + "ident": "BGDB", + "type": "heliport", + "name": "Daneborg Heliport", + "latitude_deg": "74.29787881879999", + "longitude_deg": "-20.2299499512", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Daneborg", + "scheduled_service": "no", + "gps_code": "BGDB" + }, + { + "id": "44051", + "ident": "BGDH", + "type": "small_airport", + "name": "Danmarkshavn Landing Strip", + "latitude_deg": "76.76667022705078", + "longitude_deg": "-18.666667938232422", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Danmarkshavn", + "scheduled_service": "no", + "gps_code": "BGDH" + }, + { + "id": "312829", + "ident": "BGDU", + "type": "closed", + "name": "Dundas Airport", + "latitude_deg": "76.525", + "longitude_deg": "-68.8", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Pituffik", + "scheduled_service": "no", + "gps_code": "BGDU", + "iata_code": "DUN" + }, + { + "id": "44052", + "ident": "BGET", + "type": "heliport", + "name": "Eqalugaarsuit Heliport", + "latitude_deg": "60.6197196536", + "longitude_deg": "-45.9140619636", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Eqalugaarsuit", + "scheduled_service": "yes", + "gps_code": "BGET", + "iata_code": "QFG" + }, + { + "id": "44062", + "ident": "BGFD", + "type": "heliport", + "name": "Narsaq Kujalleq Heliport", + "latitude_deg": "60.004694", + "longitude_deg": "-44.656935", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Narsaq Kujalleq", + "scheduled_service": "yes", + "gps_code": "BGFD", + "local_code": "QFN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Narsarmijit_Heliport" + }, + { + "id": "35297", + "ident": "BGFH", + "type": "closed", + "name": "Paamiut Heliport", + "latitude_deg": "61.9921989441", + "longitude_deg": "-49.6624984741", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Paamiut", + "scheduled_service": "no", + "gps_code": "BGFH", + "keywords": "JFR" + }, + { + "id": "44059", + "ident": "BGGD", + "type": "heliport", + "name": "Kangilinnguit Heliport", + "latitude_deg": "61.2214781863", + "longitude_deg": "-48.1109654903", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Kangilinnguit", + "scheduled_service": "no", + "gps_code": "BGGD" + }, + { + "id": "114", + "ident": "BGGH", + "type": "medium_airport", + "name": "Nuuk Airport", + "latitude_deg": "64.193022", + "longitude_deg": "-51.676512", + "elevation_ft": "283", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Nuuk", + "scheduled_service": "yes", + "gps_code": "BGGH", + "iata_code": "GOH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nuuk_Airport", + "keywords": "Godthåb, Nuussuaq" + }, + { + "id": "35300", + "ident": "BGGN", + "type": "heliport", + "name": "Qeqertarsuaq Heliport", + "latitude_deg": "69.251181993", + "longitude_deg": "-53.5148763657", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Qeqertarsuaq Airport", + "scheduled_service": "yes", + "gps_code": "BGGN", + "iata_code": "JGO", + "home_link": "http://airgreenland.com/om_rejsen/efter_rejsen/din_destination_/qeqertarsuaq/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qeqertarsuaq_Heliport" + }, + { + "id": "43215", + "ident": "BGIA", + "type": "heliport", + "name": "Ikerasak Heliport", + "latitude_deg": "70.4981453548", + "longitude_deg": "-51.3030838966", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Ikerasak", + "scheduled_service": "yes", + "gps_code": "BGIA", + "local_code": "IKE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ikerasak_Heliport" + }, + { + "id": "44054", + "ident": "BGIG", + "type": "heliport", + "name": "Iginniarfik", + "latitude_deg": "68.1472255861", + "longitude_deg": "-53.1735277176", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Iginniarfik", + "scheduled_service": "yes", + "gps_code": "BGIG", + "iata_code": "QFI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iginniarfik_Heliport" + }, + { + "id": "35290", + "ident": "BGIK", + "type": "heliport", + "name": "Ikerassaarsuk Heliport", + "latitude_deg": "68.14088100629999", + "longitude_deg": "-53.4414589405", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Ikerassaarsuk", + "scheduled_service": "yes", + "gps_code": "BGIK", + "iata_code": "QRY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ikerasaarsuk_Heliport" + }, + { + "id": "35291", + "ident": "BGIL", + "type": "heliport", + "name": "Ilimanaq Heliport", + "latitude_deg": "69.0809150007", + "longitude_deg": "-51.1143153906", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Ilimanaq", + "scheduled_service": "yes", + "gps_code": "BGIL", + "iata_code": "XIQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ilimanaq_Heliport" + }, + { + "id": "44056", + "ident": "BGIN", + "type": "heliport", + "name": "Innarsuit Heliport", + "latitude_deg": "73.199895", + "longitude_deg": "-56.010817", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Innarsuit", + "scheduled_service": "yes", + "gps_code": "BGIN", + "iata_code": "IUI", + "local_code": "INN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Innaarsuit_Heliport" + }, + { + "id": "44057", + "ident": "BGIS", + "type": "heliport", + "name": "Isortoq Heliport", + "latitude_deg": "65.547792", + "longitude_deg": "-38.976552", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Isortoq", + "scheduled_service": "yes", + "gps_code": "BGIS", + "iata_code": "IOQ", + "local_code": "ISO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Isortoq_Heliport" + }, + { + "id": "35289", + "ident": "BGIT", + "type": "heliport", + "name": "Ikamiut Heliport", + "latitude_deg": "68.6342530984", + "longitude_deg": "-51.8322622776", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Ikamiut", + "scheduled_service": "yes", + "gps_code": "BGIT", + "iata_code": "QJI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ikamiut_Heliport" + }, + { + "id": "35298", + "ident": "BGJH", + "type": "heliport", + "name": "Qaqortoq Heliport", + "latitude_deg": "60.715684155299996", + "longitude_deg": "-46.0299186409", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Qaqortoq", + "scheduled_service": "yes", + "gps_code": "BGJH", + "iata_code": "JJU", + "home_link": "http://airgreenland.com/om_rejsen/efter_rejsen/din_destination_/qaqortoq/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qaqortoq_Heliport" + }, + { + "id": "31694", + "ident": "BGJN", + "type": "small_airport", + "name": "Ilulissat Airport", + "latitude_deg": "69.243202", + "longitude_deg": "-51.057098", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Ilulissat", + "scheduled_service": "yes", + "gps_code": "BGJN", + "iata_code": "JAV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ilulissat_Airport" + }, + { + "id": "35292", + "ident": "BGKA", + "type": "heliport", + "name": "Kangaatsiaq Heliport", + "latitude_deg": "68.3126574861", + "longitude_deg": "-53.4602075815", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Kangaatsiaq", + "scheduled_service": "yes", + "gps_code": "BGKA", + "iata_code": "QPW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kangaatsiaq_Heliport" + }, + { + "id": "31786", + "ident": "BGKK", + "type": "medium_airport", + "name": "Kulusuk Airport", + "latitude_deg": "65.573601", + "longitude_deg": "-37.1236", + "elevation_ft": "117", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Kulusuk", + "scheduled_service": "yes", + "gps_code": "BGKK", + "iata_code": "KUS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kulusuk_Airport", + "keywords": "Kap Dan, BGKD" + }, + { + "id": "43224", + "ident": "BGKL", + "type": "heliport", + "name": "Upernavik Kujalleq Heliport", + "latitude_deg": "72.1527425265", + "longitude_deg": "-55.5309855938", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Upernavik Kujalleq", + "scheduled_service": "yes", + "gps_code": "BGKL", + "local_code": "UPK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Upernavik_Kujalleq_Heliport" + }, + { + "id": "44060", + "ident": "BGKM", + "type": "heliport", + "name": "Kuummiut Heliport", + "latitude_deg": "65.863935", + "longitude_deg": "-36.997919", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Kuummiut", + "scheduled_service": "yes", + "gps_code": "BGKM", + "iata_code": "KUZ", + "local_code": "KMT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kuummiit_Heliport" + }, + { + "id": "43218", + "ident": "BGKQ", + "type": "heliport", + "name": "Kullorsuaq Heliport", + "latitude_deg": "74.57805", + "longitude_deg": "-57.226828", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Kullorsuaq", + "scheduled_service": "yes", + "gps_code": "BGKQ", + "iata_code": "KHQ", + "local_code": "KLQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kullorsuaq_Heliport" + }, + { + "id": "43217", + "ident": "BGKS", + "type": "heliport", + "name": "Kangersuatsiaq Heliport", + "latitude_deg": "72.381092", + "longitude_deg": "-55.536586", + "elevation_ft": "112", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Kangersuatsiaq", + "scheduled_service": "yes", + "gps_code": "BGKS", + "iata_code": "KGQ", + "local_code": "KAQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kangersuatsiaq_Heliport" + }, + { + "id": "35293", + "ident": "BGKT", + "type": "heliport", + "name": "Kitsissuarsuit Heliport", + "latitude_deg": "68.85792599759999", + "longitude_deg": "-53.123295307199996", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Kitsissuarsuit", + "scheduled_service": "yes", + "gps_code": "BGKT", + "iata_code": "QJE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kitsissuarsuit_Heliport" + }, + { + "id": "43216", + "ident": "BGLL", + "type": "heliport", + "name": "Illorsuit Heliport", + "latitude_deg": "71.2419440428", + "longitude_deg": "-53.5628771782", + "elevation_ft": "154", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Illorsuit", + "scheduled_service": "no", + "gps_code": "BGLL", + "local_code": "ILL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Illorsuit_Heliport" + }, + { + "id": "299843", + "ident": "BGMI", + "type": "small_airport", + "name": "Station Nord Landing Strip", + "latitude_deg": "81.603622", + "longitude_deg": "-16.681599", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Station Nord", + "scheduled_service": "no", + "gps_code": "BGMI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nord,_Greenland" + }, + { + "id": "299107", + "ident": "bgmo", + "type": "heliport", + "name": "Moriusaq Heliport", + "latitude_deg": "76.7534922147", + "longitude_deg": "-69.8450553417", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "scheduled_service": "yes", + "gps_code": "BGMO", + "local_code": "MOR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moriusaq_Heliport" + }, + { + "id": "31711", + "ident": "BGMQ", + "type": "small_airport", + "name": "Maniitsoq Airport", + "latitude_deg": "65.412498", + "longitude_deg": "-52.9394", + "elevation_ft": "91", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Maniitsoq", + "scheduled_service": "yes", + "gps_code": "BGMQ", + "iata_code": "JSU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maniitsoq_Airport" + }, + { + "id": "30702", + "ident": "BGMV", + "type": "small_airport", + "name": "Mestersvig Airport", + "latitude_deg": "72.2369003296", + "longitude_deg": "-23.931900024399997", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Mestersvig", + "scheduled_service": "no", + "gps_code": "BGMV" + }, + { + "id": "35296", + "ident": "BGNK", + "type": "heliport", + "name": "Niaqornaarsuk Heliport", + "latitude_deg": "68.236381", + "longitude_deg": "-52.852148", + "elevation_ft": "152", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Niaqornaarsuk", + "scheduled_service": "yes", + "gps_code": "BGNK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Niaqornaarsuk_Heliport", + "keywords": "QMK" + }, + { + "id": "44061", + "ident": "BGNL", + "type": "heliport", + "name": "Nalunaq Heliport", + "latitude_deg": "60.3572400194", + "longitude_deg": "-44.8279631138", + "elevation_ft": "778", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Nalunaq", + "scheduled_service": "no", + "gps_code": "BGNL" + }, + { + "id": "35294", + "ident": "BGNN", + "type": "heliport", + "name": "Nanortalik Heliport", + "latitude_deg": "60.141883975899994", + "longitude_deg": "-45.232976675", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Nanortalik", + "scheduled_service": "no", + "gps_code": "BGNN", + "iata_code": "JNN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nanortalik_Heliport" + }, + { + "id": "44072", + "ident": "BGNO", + "type": "heliport", + "name": "Station Nord Heliport", + "latitude_deg": "81.6978444497", + "longitude_deg": "-17.8088378906", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "scheduled_service": "no", + "gps_code": "BGNO" + }, + { + "id": "43219", + "ident": "BGNQ", + "type": "heliport", + "name": "Nuugaatsiaq Heliport", + "latitude_deg": "71.5387687528", + "longitude_deg": "-53.205038309100004", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Nuugaatsiaq", + "scheduled_service": "yes", + "gps_code": "BGNQ", + "local_code": "NUG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nuugaatsiaq_Heliport" + }, + { + "id": "35295", + "ident": "BGNS", + "type": "heliport", + "name": "Narsaq Heliport", + "latitude_deg": "60.9172827256", + "longitude_deg": "-46.059923172", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Narsaq", + "scheduled_service": "yes", + "gps_code": "BGNS", + "iata_code": "JNS", + "home_link": "http://airgreenland.com/om_rejsen/efter_rejsen/din_destination_/narsaq/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Narsaq_Heliport" + }, + { + "id": "44063", + "ident": "BGNT", + "type": "heliport", + "name": "Niaqornat Heliport", + "latitude_deg": "70.789385", + "longitude_deg": "-53.662945", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Niaqornat", + "scheduled_service": "yes", + "gps_code": "BGNT", + "iata_code": "NIQ", + "local_code": "NIA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Niaqornat_Heliport" + }, + { + "id": "43220", + "ident": "BGNU", + "type": "heliport", + "name": "Nuussuaq Heliport", + "latitude_deg": "74.109853", + "longitude_deg": "-57.065037", + "elevation_ft": "184", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Nuussuaq", + "scheduled_service": "yes", + "gps_code": "BGNU", + "iata_code": "NSQ", + "local_code": "NUS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nuussuaq_Heliport" + }, + { + "id": "312228", + "ident": "BGP", + "type": "closed", + "name": "Bongo Airport", + "latitude_deg": "-2.1713", + "longitude_deg": "10.2088", + "elevation_ft": "120", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-8", + "municipality": "Bongo", + "scheduled_service": "no", + "iata_code": "BGP" + }, + { + "id": "44055", + "ident": "BGPC", + "type": "heliport", + "name": "Ikerasassuaq Heliport", + "latitude_deg": "60.057220458984375", + "longitude_deg": "-43.15972137451172", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Ikerasassuaq", + "scheduled_service": "no", + "gps_code": "BGPC" + }, + { + "id": "44065", + "ident": "BGPT", + "type": "small_airport", + "name": "Paamiut Airport", + "latitude_deg": "62.0147361755", + "longitude_deg": "-49.6709365845", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Paamiut", + "scheduled_service": "yes", + "gps_code": "BGPT", + "iata_code": "JFR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paamiut_Airport" + }, + { + "id": "43221", + "ident": "BGQE", + "type": "heliport", + "name": "Qeqertaq Heliport", + "latitude_deg": "69.995861", + "longitude_deg": "-51.300917", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Qeqertaq", + "scheduled_service": "yes", + "gps_code": "BGQE", + "iata_code": "PQT", + "local_code": "QQT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qeqertaq_Heliport" + }, + { + "id": "32004", + "ident": "BGQQ", + "type": "small_airport", + "name": "Qaanaaq Airport", + "latitude_deg": "77.4886016846", + "longitude_deg": "-69.3887023926", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Qaanaaq", + "scheduled_service": "yes", + "gps_code": "BGQQ", + "iata_code": "NAQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qaanaaq_Airport" + }, + { + "id": "44066", + "ident": "BGQT", + "type": "heliport", + "name": "Qassimiut Heliport", + "latitude_deg": "60.7809592284", + "longitude_deg": "-47.156249284699996", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Qassimiut", + "scheduled_service": "no", + "gps_code": "BGQT" + }, + { + "id": "44058", + "ident": "BGSC", + "type": "heliport", + "name": "Ittoqqortoormiit Heliport", + "latitude_deg": "70.4882288244", + "longitude_deg": "-21.971679925900002", + "elevation_ft": "238", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Ittoqqortoormiit", + "scheduled_service": "yes", + "gps_code": "BGSC", + "iata_code": "OBY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ittoqqortoormiit_Heliport" + }, + { + "id": "115", + "ident": "BGSF", + "type": "medium_airport", + "name": "Kangerlussuaq Airport", + "latitude_deg": "67.010446", + "longitude_deg": "-50.715294", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Kangerlussuaq", + "scheduled_service": "yes", + "gps_code": "BGSF", + "iata_code": "SFJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kangerlussuaq_Airport", + "keywords": "Bluie West 8, Sondrestrom, Sondrestromfjord" + }, + { + "id": "44069", + "ident": "BGSG", + "type": "heliport", + "name": "Sermiligaaq Heliport", + "latitude_deg": "65.9059197626", + "longitude_deg": "-36.3782536983", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Ittoqqortoormiit", + "scheduled_service": "yes", + "gps_code": "BGSG", + "local_code": "SMG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sermiligaaq_Heliport" + }, + { + "id": "44070", + "ident": "BGSI", + "type": "heliport", + "name": "Siorapaluk Heliport", + "latitude_deg": "77.786517", + "longitude_deg": "-70.638657", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Siorapaluk", + "scheduled_service": "yes", + "gps_code": "BGSI", + "iata_code": "SRK", + "local_code": "SIO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Siorapaluk_Heliport" + }, + { + "id": "323783", + "ident": "BGSO", + "type": "heliport", + "name": "Saarloq Heliport", + "latitude_deg": "60.537778", + "longitude_deg": "-46.024722", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "scheduled_service": "no", + "gps_code": "BGSO", + "iata_code": "QOQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saarloq_Heliport" + }, + { + "id": "35301", + "ident": "BGSQ", + "type": "heliport", + "name": "Saqqaq Heliport", + "latitude_deg": "70.011448", + "longitude_deg": "-51.932142", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Saqqaq", + "scheduled_service": "yes", + "gps_code": "BGSQ", + "local_code": "QUP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saqqaq_Heliport" + }, + { + "id": "31700", + "ident": "BGSS", + "type": "medium_airport", + "name": "Sisimiut Airport", + "latitude_deg": "66.951302", + "longitude_deg": "-53.729301", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Sisimiut", + "scheduled_service": "yes", + "gps_code": "BGSS", + "iata_code": "JHS", + "home_link": "https://www.mit.gl/en/todays-flights/airports/sisimiut-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sisimiut_Airport" + }, + { + "id": "43222", + "ident": "BGST", + "type": "heliport", + "name": "Saattut Heliport", + "latitude_deg": "70.811172", + "longitude_deg": "-51.63129", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Saattut", + "scheduled_service": "yes", + "gps_code": "BGST", + "local_code": "SAA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saattut_Heliport" + }, + { + "id": "44068", + "ident": "BGSV", + "type": "heliport", + "name": "Savissivik Heliport", + "latitude_deg": "76.018613", + "longitude_deg": "-65.117683", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Savissivik", + "scheduled_service": "yes", + "gps_code": "BGSV", + "iata_code": "SVR", + "local_code": "SAV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Savissivik_Heliport" + }, + { + "id": "44075", + "ident": "BGTA", + "type": "heliport", + "name": "Tasiusaq (Qaasuitsup) Heliport", + "latitude_deg": "73.373055", + "longitude_deg": "-56.06028", + "elevation_ft": "181", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Upernavik", + "scheduled_service": "no", + "gps_code": "BGTA", + "iata_code": "TQA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tasiusaq_Heliport_(Qaasuitsup)" + }, + { + "id": "116", + "ident": "BGTL", + "type": "medium_airport", + "name": "Thule Air Base", + "latitude_deg": "76.5311965942", + "longitude_deg": "-68.7032012939", + "elevation_ft": "251", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Thule", + "scheduled_service": "yes", + "gps_code": "BGTL", + "iata_code": "THU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thule_Air_Base", + "keywords": "Pituffik" + }, + { + "id": "44076", + "ident": "BGTN", + "type": "heliport", + "name": "Tiniteqilaaq Heliport", + "latitude_deg": "65.892027", + "longitude_deg": "-37.783409", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Tiniteqilaaq", + "scheduled_service": "yes", + "gps_code": "BGTN", + "iata_code": "TQI", + "local_code": "TNT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tiniteqilaaq_Heliport" + }, + { + "id": "44074", + "ident": "BGTQ", + "type": "heliport", + "name": "Tasiusaq (Kujalleq) Heliport", + "latitude_deg": "60.1943053097", + "longitude_deg": "-44.8134469986", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Nanortalik", + "scheduled_service": "yes", + "gps_code": "BGTQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tasiusaq_Heliport_(Kujalleq)" + }, + { + "id": "31713", + "ident": "BGUK", + "type": "small_airport", + "name": "Upernavik Airport", + "latitude_deg": "72.7901992798", + "longitude_deg": "-56.1305999756", + "elevation_ft": "414", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Upernavik", + "scheduled_service": "yes", + "gps_code": "BGUK", + "iata_code": "JUV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Upernavik_Airport" + }, + { + "id": "43225", + "ident": "BGUM", + "type": "heliport", + "name": "Uummannaq Heliport", + "latitude_deg": "70.6804279261", + "longitude_deg": "-52.111630439799995", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Uummannaq", + "scheduled_service": "yes", + "gps_code": "BGUM", + "iata_code": "UMD", + "home_link": "http://airgreenland.com/om_rejsen/efter_rejsen/din_destination_/uummannaq/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Uummannaq_Heliport" + }, + { + "id": "31709", + "ident": "BGUQ", + "type": "small_airport", + "name": "Qaarsut Airport", + "latitude_deg": "70.7341995239", + "longitude_deg": "-52.6962013245", + "elevation_ft": "289", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Uummannaq", + "scheduled_service": "yes", + "gps_code": "BGUQ", + "iata_code": "JQA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qaarsut_Airport" + }, + { + "id": "43223", + "ident": "BGUT", + "type": "heliport", + "name": "Ukkusissat Heliport", + "latitude_deg": "71.049438", + "longitude_deg": "-51.890016", + "elevation_ft": "223", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Ukkusissat", + "scheduled_service": "yes", + "gps_code": "BGUT", + "iata_code": "JUK", + "local_code": "UKK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ukkusissat_Heliport" + }, + { + "id": "319190", + "ident": "BH-0001", + "type": "heliport", + "name": "Bahrain International Circuit Heliport", + "latitude_deg": "26.029738", + "longitude_deg": "50.511709", + "continent": "AS", + "iso_country": "BH", + "iso_region": "BH-14", + "municipality": "Sakhir", + "scheduled_service": "no" + }, + { + "id": "331860", + "ident": "BH-0002", + "type": "heliport", + "name": "Riffa Air Base", + "latitude_deg": "26.107242", + "longitude_deg": "50.578968", + "elevation_ft": "114", + "continent": "AS", + "iso_country": "BH", + "iso_region": "BH-14", + "municipality": "Riffa", + "scheduled_service": "no" + }, + { + "id": "340203", + "ident": "BH-0003", + "type": "heliport", + "name": "Jidda Island West Heliport", + "latitude_deg": "26.19554", + "longitude_deg": "50.39748", + "continent": "AS", + "iso_country": "BH", + "iso_region": "BH-17", + "municipality": "Jidda Island", + "scheduled_service": "no" + }, + { + "id": "340204", + "ident": "BH-0004", + "type": "heliport", + "name": "Jidda Island South Heliport", + "latitude_deg": "26.190016", + "longitude_deg": "50.406708", + "continent": "AS", + "iso_country": "BH", + "iso_region": "BH-17", + "municipality": "Jidda Island", + "scheduled_service": "no" + }, + { + "id": "340205", + "ident": "BH-0005", + "type": "heliport", + "name": "King Hamad University Hospital Helipad", + "latitude_deg": "26.26282", + "longitude_deg": "50.6022", + "continent": "AS", + "iso_country": "BH", + "iso_region": "BH-15", + "municipality": "Busaiteen", + "scheduled_service": "no" + }, + { + "id": "340206", + "ident": "BH-0006", + "type": "heliport", + "name": "Bahrain Defense Force Heliport", + "latitude_deg": "26.18973", + "longitude_deg": "50.586", + "continent": "AS", + "iso_country": "BH", + "iso_region": "BH-16", + "municipality": "Isa Town", + "scheduled_service": "no" + }, + { + "id": "340531", + "ident": "BH-0007", + "type": "heliport", + "name": "Block 997 Heliport", + "latitude_deg": "25.865112", + "longitude_deg": "50.553293", + "continent": "AS", + "iso_country": "BH", + "iso_region": "BH-14", + "municipality": "Block 997", + "scheduled_service": "no" + }, + { + "id": "340532", + "ident": "BH-0008", + "type": "heliport", + "name": "Block 998 Heliport", + "latitude_deg": "25.861811", + "longitude_deg": "50.551195", + "continent": "AS", + "iso_country": "BH", + "iso_region": "BH-14", + "municipality": "Block 998", + "scheduled_service": "no" + }, + { + "id": "30705", + "ident": "BHL", + "type": "small_airport", + "name": "Bahía de los Ángeles Airport", + "latitude_deg": "28.9786", + "longitude_deg": "-113.560997", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "iata_code": "BHL", + "local_code": "BAX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bah%C3%ADa_de_los_%C3%81ngeles_Airport" + }, + { + "id": "302410", + "ident": "BHT", + "type": "small_airport", + "name": "Brighton Downs Airport", + "latitude_deg": "-23.3638888889", + "longitude_deg": "141.562777778", + "elevation_ft": "390", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "iata_code": "BHT" + }, + { + "id": "318985", + "ident": "BI-0001", + "type": "small_airport", + "name": "Ruyigi Airport", + "latitude_deg": "-3.471371", + "longitude_deg": "30.231485", + "elevation_ft": "5194", + "continent": "AF", + "iso_country": "BI", + "iso_region": "BI-RY", + "municipality": "Ruyigi", + "scheduled_service": "no" + }, + { + "id": "318986", + "ident": "BI-0002", + "type": "small_airport", + "name": "Mwumba Airport", + "latitude_deg": "-2.879447", + "longitude_deg": "29.832178", + "continent": "AF", + "iso_country": "BI", + "iso_region": "BI-NG", + "municipality": "Ngozi", + "scheduled_service": "no" + }, + { + "id": "30709", + "ident": "BIAE", + "type": "small_airport", + "name": "Arngerðareyri Airport", + "latitude_deg": "65.90470123291016", + "longitude_deg": "-22.363300323486328", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-4", + "municipality": "Arngerðareyri", + "scheduled_service": "no", + "gps_code": "BIAE" + }, + { + "id": "30710", + "ident": "BIAL", + "type": "small_airport", + "name": "Álftaver Airport", + "latitude_deg": "63.53979", + "longitude_deg": "-18.44374", + "elevation_ft": "160", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Álftaver", + "scheduled_service": "no", + "gps_code": "BIAL" + }, + { + "id": "117", + "ident": "BIAR", + "type": "medium_airport", + "name": "Akureyri Airport", + "latitude_deg": "65.66000366210938", + "longitude_deg": "-18.07270050048828", + "elevation_ft": "6", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-6", + "municipality": "Akureyri", + "scheduled_service": "yes", + "gps_code": "BIAR", + "iata_code": "AEY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Akureyri_Airport" + }, + { + "id": "30712", + "ident": "BIBA", + "type": "small_airport", + "name": "Bakki Airport", + "latitude_deg": "63.55609893798828", + "longitude_deg": "-20.137500762939453", + "elevation_ft": "45", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Bakki", + "scheduled_service": "no", + "gps_code": "BIBA" + }, + { + "id": "118", + "ident": "BIBD", + "type": "small_airport", + "name": "Bildudalur Airport", + "latitude_deg": "65.64129638671875", + "longitude_deg": "-23.546199798583984", + "elevation_ft": "18", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-4", + "municipality": "Bildudalur", + "scheduled_service": "no", + "gps_code": "BIBD", + "iata_code": "BIU" + }, + { + "id": "30700", + "ident": "BIBF", + "type": "small_airport", + "name": "Borgarfjörður eystri Airport", + "latitude_deg": "65.51640319824219", + "longitude_deg": "-13.805000305175781", + "elevation_ft": "80", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-7", + "municipality": "Borgarfjörður eystri", + "scheduled_service": "no", + "gps_code": "BIBF", + "iata_code": "BGJ" + }, + { + "id": "30713", + "ident": "BIBI", + "type": "small_airport", + "name": "Baeir Airport", + "latitude_deg": "66.097838", + "longitude_deg": "-22.569713", + "elevation_ft": "60", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-4", + "municipality": "Baeir", + "scheduled_service": "no", + "gps_code": "BIBI" + }, + { + "id": "30759", + "ident": "BIBK", + "type": "small_airport", + "name": "Bakkafjörður Airport", + "latitude_deg": "66.02189636230469", + "longitude_deg": "-14.824399948120117", + "elevation_ft": "14", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-6", + "municipality": "Bakkafjörður", + "scheduled_service": "no", + "gps_code": "BIBK", + "iata_code": "BJD" + }, + { + "id": "30771", + "ident": "BIBL", + "type": "small_airport", + "name": "Hjaltabakki Airport", + "latitude_deg": "65.6449966430664", + "longitude_deg": "-20.287500381469727", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-5", + "municipality": "Blönduós", + "scheduled_service": "no", + "gps_code": "BIBL", + "iata_code": "BLO" + }, + { + "id": "30789", + "ident": "BIBR", + "type": "small_airport", + "name": "Búðardalur Airport", + "latitude_deg": "65.07530212402344", + "longitude_deg": "-21.80030059814453", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-3", + "municipality": "Búðardalur", + "scheduled_service": "no", + "gps_code": "BIBR", + "iata_code": "BQD" + }, + { + "id": "30807", + "ident": "BIBV", + "type": "small_airport", + "name": "Breiðdalsvík Airport", + "latitude_deg": "64.790037", + "longitude_deg": "-14.043927", + "elevation_ft": "8", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-7", + "municipality": "Breiðdalsvík", + "scheduled_service": "no", + "gps_code": "BIBV", + "iata_code": "BXV" + }, + { + "id": "30714", + "ident": "BIDA", + "type": "small_airport", + "name": "Dagverðará Airport", + "latitude_deg": "64.744617", + "longitude_deg": "-23.726521", + "elevation_ft": "130", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-3", + "municipality": "Dagverðará", + "scheduled_service": "no", + "gps_code": "BIDA" + }, + { + "id": "30922", + "ident": "BIDV", + "type": "small_airport", + "name": "Djúpivogur Airport", + "latitude_deg": "64.642372", + "longitude_deg": "-14.277297", + "elevation_ft": "9", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-7", + "municipality": "Djúpivogur", + "scheduled_service": "no", + "gps_code": "BIDV", + "iata_code": "DJU" + }, + { + "id": "119", + "ident": "BIEG", + "type": "medium_airport", + "name": "Egilsstaðir Airport", + "latitude_deg": "65.2833023071289", + "longitude_deg": "-14.401399612426758", + "elevation_ft": "76", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-7", + "municipality": "Egilsstaðir", + "scheduled_service": "yes", + "gps_code": "BIEG", + "iata_code": "EGS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Egilssta%C3%B0ir_Airport" + }, + { + "id": "30715", + "ident": "BIEH", + "type": "closed", + "name": "Einholtsmelar Airport", + "latitude_deg": "64.24533", + "longitude_deg": "-20.299587", + "elevation_ft": "361", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Einholtsmelar", + "scheduled_service": "no", + "gps_code": "BIEH" + }, + { + "id": "31058", + "ident": "BIFF", + "type": "small_airport", + "name": "Fáskrúðsfjörður Airport", + "latitude_deg": "64.931456", + "longitude_deg": "-14.047957", + "elevation_ft": "15", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-7", + "municipality": "Fáskrúðsfjörður", + "scheduled_service": "no", + "gps_code": "BIFF", + "iata_code": "FAS", + "wikipedia_link": "https://en.wikipedia.org/wiki/F%C3%A1skr%C3%BA%C3%B0sfj%C3%B6r%C3%B0ur_Airport", + "keywords": "Faskrudsfjordur" + }, + { + "id": "30716", + "ident": "BIFL", + "type": "small_airport", + "name": "Flúðir Airport", + "latitude_deg": "64.1427993774414", + "longitude_deg": "-20.326099395751953", + "elevation_ft": "270", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Flúðir", + "scheduled_service": "no", + "gps_code": "BIFL" + }, + { + "id": "31041", + "ident": "BIFM", + "type": "small_airport", + "name": "Fagurhólsmýri Airport", + "latitude_deg": "63.874698638916016", + "longitude_deg": "-16.64109992980957", + "elevation_ft": "56", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-7", + "municipality": "Fagurhólsmýri", + "scheduled_service": "no", + "gps_code": "BIFM", + "iata_code": "FAG" + }, + { + "id": "30717", + "ident": "BIFZ", + "type": "small_airport", + "name": "Forsæti Airport", + "latitude_deg": "63.84816", + "longitude_deg": "-20.716267", + "elevation_ft": "32", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Forsæti", + "scheduled_service": "no", + "gps_code": "BIFZ" + }, + { + "id": "30718", + "ident": "BIGE", + "type": "closed", + "name": "Geysir Airport", + "latitude_deg": "64.306592", + "longitude_deg": "-20.277114", + "elevation_ft": "350", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Geysir", + "scheduled_service": "no", + "gps_code": "BIGE" + }, + { + "id": "31559", + "ident": "BIGF", + "type": "small_airport", + "name": "Grundarfjörður Airport", + "latitude_deg": "64.99140167236328", + "longitude_deg": "-23.224700927734375", + "elevation_ft": "17", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-3", + "municipality": "Grundarfjörður", + "scheduled_service": "no", + "gps_code": "BIGF", + "iata_code": "GUU" + }, + { + "id": "30719", + "ident": "BIGH", + "type": "small_airport", + "name": "Gunnarsholt Airport", + "latitude_deg": "63.85329818725586", + "longitude_deg": "-20.262800216674805", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Gunnarsholt", + "scheduled_service": "no", + "gps_code": "BIGH" + }, + { + "id": "31531", + "ident": "BIGJ", + "type": "small_airport", + "name": "Gjögur Airport", + "latitude_deg": "65.99530029296875", + "longitude_deg": "-21.326900482177734", + "elevation_ft": "83", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-4", + "municipality": "Gjögur", + "scheduled_service": "no", + "gps_code": "BIGJ", + "iata_code": "GJR" + }, + { + "id": "31549", + "ident": "BIGR", + "type": "small_airport", + "name": "Grímsey Airport", + "latitude_deg": "66.5458", + "longitude_deg": "-18.0173", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-6", + "municipality": "Grímsey", + "scheduled_service": "yes", + "gps_code": "BIGR", + "iata_code": "GRY" + }, + { + "id": "30720", + "ident": "BIGS", + "type": "small_airport", + "name": "Grímsstaðir Airport", + "latitude_deg": "65.63249969482422", + "longitude_deg": "-16.148300170898438", + "elevation_ft": "1279", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-6", + "municipality": "Grímsstaðir", + "scheduled_service": "no", + "gps_code": "BIGS" + }, + { + "id": "30721", + "ident": "BIHE", + "type": "small_airport", + "name": "Herðubreiðarlindir Airport", + "latitude_deg": "65.1885986328125", + "longitude_deg": "-16.194700241088867", + "elevation_ft": "1500", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-7", + "municipality": "Herðubreiðarlindir", + "scheduled_service": "no", + "gps_code": "BIHE" + }, + { + "id": "30722", + "ident": "BIHI", + "type": "small_airport", + "name": "Hveravellir Airport", + "latitude_deg": "64.88610076904297", + "longitude_deg": "-19.49250030517578", + "elevation_ft": "2000", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-5", + "municipality": "Hveravellir", + "scheduled_service": "no", + "gps_code": "BIHI" + }, + { + "id": "31656", + "ident": "BIHK", + "type": "small_airport", + "name": "Hólmavík Airport", + "latitude_deg": "65.70469665527344", + "longitude_deg": "-21.696399688720703", + "elevation_ft": "90", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-4", + "municipality": "Hólmavík", + "scheduled_service": "no", + "gps_code": "BIHK", + "iata_code": "HVK" + }, + { + "id": "30723", + "ident": "BIHL", + "type": "small_airport", + "name": "Hella Airport", + "latitude_deg": "63.83580017089844", + "longitude_deg": "-20.377500534057617", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Hella", + "scheduled_service": "no", + "gps_code": "BIHL" + }, + { + "id": "120", + "ident": "BIHN", + "type": "medium_airport", + "name": "Hornafjörður Airport", + "latitude_deg": "64.295601", + "longitude_deg": "-15.2272", + "elevation_ft": "24", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Höfn", + "scheduled_service": "yes", + "gps_code": "BIHN", + "iata_code": "HFN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hornafj%C3%B6r%C3%B0ur_Airport" + }, + { + "id": "30724", + "ident": "BIHR", + "type": "small_airport", + "name": "Hvolsvöllur Airport", + "latitude_deg": "63.752743", + "longitude_deg": "-20.250893", + "elevation_ft": "109", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Hvolsvöllur", + "scheduled_service": "no", + "gps_code": "BIHR" + }, + { + "id": "30725", + "ident": "BIHS", + "type": "small_airport", + "name": "Hrafnseyri Airport", + "latitude_deg": "65.75716", + "longitude_deg": "-23.461404", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-4", + "municipality": "Hrafnseyri", + "scheduled_service": "no", + "gps_code": "BIHS" + }, + { + "id": "30726", + "ident": "BIHT", + "type": "small_airport", + "name": "Holt Airport", + "latitude_deg": "66.0141804294", + "longitude_deg": "-23.4416913986", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-4", + "municipality": "Flateyri", + "scheduled_service": "no", + "gps_code": "BIHT", + "iata_code": "FLI" + }, + { + "id": "121", + "ident": "BIHU", + "type": "medium_airport", + "name": "Húsavík Airport", + "latitude_deg": "65.952301", + "longitude_deg": "-17.426001", + "elevation_ft": "48", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-6", + "municipality": "Húsavík", + "scheduled_service": "yes", + "gps_code": "BIHU", + "iata_code": "HZK", + "wikipedia_link": "https://en.wikipedia.org/wiki/H%C3%BAsav%C3%ADk_Airport" + }, + { + "id": "31657", + "ident": "BIHV", + "type": "small_airport", + "name": "Krókstaðarmelar Airport", + "latitude_deg": "65.26640319824219", + "longitude_deg": "-20.846900939941406", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-5", + "municipality": "Hvammstangi", + "scheduled_service": "no", + "gps_code": "BIHV", + "iata_code": "HVM" + }, + { + "id": "30727", + "ident": "BIHX", + "type": "closed", + "name": "Hrauneyjarfoss Airport", + "latitude_deg": "64.204759", + "longitude_deg": "-19.264756", + "elevation_ft": "1200", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Hrauneyjarfoss", + "scheduled_service": "no", + "gps_code": "BIHX" + }, + { + "id": "30728", + "ident": "BIHY", + "type": "small_airport", + "name": "Hrísey Airport", + "latitude_deg": "65.989204", + "longitude_deg": "-18.394117", + "elevation_ft": "15", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-6", + "municipality": "Hrísey", + "scheduled_service": "no", + "gps_code": "BIHY" + }, + { + "id": "30729", + "ident": "BIHZ", + "type": "small_airport", + "name": "Húsafell Airport", + "latitude_deg": "64.69969940185547", + "longitude_deg": "-20.88360023498535", + "elevation_ft": "380", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-3", + "municipality": "Húsafell", + "scheduled_service": "no", + "gps_code": "BIHZ" + }, + { + "id": "31603", + "ident": "BIID", + "type": "small_airport", + "name": "Ingjaldssanður Airport", + "latitude_deg": "66.05000305175781", + "longitude_deg": "-23.69610023498535", + "elevation_ft": "70", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-4", + "municipality": "Onundarfjörður", + "scheduled_service": "no", + "gps_code": "BIID", + "iata_code": "HLO" + }, + { + "id": "122", + "ident": "BIIS", + "type": "medium_airport", + "name": "Ísafjörður Airport", + "latitude_deg": "66.05809783935547", + "longitude_deg": "-23.135299682617188", + "elevation_ft": "8", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-4", + "municipality": "Ísafjörður", + "scheduled_service": "yes", + "gps_code": "BIIS", + "iata_code": "IFJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%8Dsafj%C3%B6r%C3%B0ur_Airport" + }, + { + "id": "312757", + "ident": "BIJ", + "type": "closed", + "name": "Biliau Airport", + "latitude_deg": "-5.578", + "longitude_deg": "146.339", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Biliau", + "scheduled_service": "no", + "iata_code": "BIJ" + }, + { + "id": "30731", + "ident": "BIKA", + "type": "small_airport", + "name": "Kaldármelar Airport", + "latitude_deg": "64.77890014648438", + "longitude_deg": "-22.256900787353516", + "elevation_ft": "160", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-3", + "municipality": "Kaldármelar", + "scheduled_service": "no", + "gps_code": "BIKA" + }, + { + "id": "30732", + "ident": "BIKE", + "type": "small_airport", + "name": "Kerlingafjöll Airport", + "latitude_deg": "64.70500183105469", + "longitude_deg": "-19.410600662231445", + "elevation_ft": "2100", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Kerlingafjöll", + "scheduled_service": "no", + "gps_code": "BIKE" + }, + { + "id": "123", + "ident": "BIKF", + "type": "large_airport", + "name": "Keflavik International Airport", + "latitude_deg": "63.985001", + "longitude_deg": "-22.6056", + "elevation_ft": "171", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-2", + "municipality": "Reykjavík", + "scheduled_service": "yes", + "gps_code": "BIKF", + "iata_code": "KEF", + "home_link": "https://www.isavia.is/en/keflavik-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Keflav%C3%ADk_International_Airport", + "keywords": "Keflavik Naval Air Station,REK" + }, + { + "id": "30733", + "ident": "BIKJ", + "type": "small_airport", + "name": "Kroksfjard-Arnes Airport", + "latitude_deg": "65.46700286865234", + "longitude_deg": "-21.950000762939453", + "elevation_ft": "49", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-4", + "municipality": "Kroksfjard-arnes", + "scheduled_service": "no", + "gps_code": "BIKJ" + }, + { + "id": "30734", + "ident": "BIKL", + "type": "small_airport", + "name": "Kirkjubæjarklaustur Airport", + "latitude_deg": "63.792685", + "longitude_deg": "-18.004684", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Kirkjubæjarklaustur", + "scheduled_service": "no", + "gps_code": "BIKL" + }, + { + "id": "32121", + "ident": "BIKP", + "type": "small_airport", + "name": "Kópasker Airport", + "latitude_deg": "66.31079864501953", + "longitude_deg": "-16.466699600219727", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-6", + "municipality": "Kópasker", + "scheduled_service": "no", + "gps_code": "BIKP", + "iata_code": "OPA" + }, + { + "id": "32246", + "ident": "BIKR", + "type": "small_airport", + "name": "Sauðárkrókur Airport", + "latitude_deg": "65.73169708249999", + "longitude_deg": "-19.572799682599996", + "elevation_ft": "8", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-5", + "municipality": "Sauðárkrókur", + "scheduled_service": "no", + "gps_code": "BIKR", + "iata_code": "SAK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sau%C3%B0%C3%A1rkr%C3%B3kur_Airport" + }, + { + "id": "30735", + "ident": "BIMK", + "type": "small_airport", + "name": "Múlakot Airport", + "latitude_deg": "63.71419906616211", + "longitude_deg": "-19.879199981689453", + "elevation_ft": "272", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Múlakot", + "scheduled_service": "no", + "gps_code": "BIMK" + }, + { + "id": "30736", + "ident": "BIMM", + "type": "small_airport", + "name": "Melgerðismelar Airport", + "latitude_deg": "65.4832992553711", + "longitude_deg": "-18.16670036315918", + "elevation_ft": "35", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-6", + "municipality": "Melgerðismelar", + "scheduled_service": "no", + "gps_code": "BIMM" + }, + { + "id": "30737", + "ident": "BIMN", + "type": "small_airport", + "name": "Melanes Airport", + "latitude_deg": "65.51699829101562", + "longitude_deg": "-22.399999618530273", + "elevation_ft": "148", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-4", + "municipality": "Melanes", + "scheduled_service": "no", + "gps_code": "BIMN" + }, + { + "id": "30738", + "ident": "BIMS", + "type": "small_airport", + "name": "Tungubakkar Airport", + "latitude_deg": "64.18109893798828", + "longitude_deg": "-21.707799911499023", + "elevation_ft": "5", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-1", + "municipality": "Tungubakkar", + "scheduled_service": "no", + "gps_code": "BIMS" + }, + { + "id": "30740", + "ident": "BIND", + "type": "small_airport", + "name": "Nýjidalur Airport", + "latitude_deg": "64.72059631347656", + "longitude_deg": "-18.066699981689453", + "elevation_ft": "2625", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Nýjidalur", + "scheduled_service": "no", + "gps_code": "BIND" + }, + { + "id": "32044", + "ident": "BINF", + "type": "small_airport", + "name": "Norðfjörður Airport", + "latitude_deg": "65.13189697265625", + "longitude_deg": "-13.746399879455566", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-7", + "municipality": "Norðfjörður", + "scheduled_service": "no", + "gps_code": "BINF", + "iata_code": "NOR" + }, + { + "id": "32096", + "ident": "BIOF", + "type": "small_airport", + "name": "Ólafsfjörður Airport", + "latitude_deg": "66.08329772949219", + "longitude_deg": "-18.66670036315918", + "elevation_ft": "32", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-6", + "municipality": "Ólafsfjörður", + "scheduled_service": "no", + "gps_code": "BIOF", + "iata_code": "OFJ" + }, + { + "id": "124", + "ident": "BIPA", + "type": "small_airport", + "name": "Patreksfjörður Airport", + "latitude_deg": "65.555801", + "longitude_deg": "-23.965", + "elevation_ft": "11", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-4", + "municipality": "Patreksfjörður", + "scheduled_service": "no", + "gps_code": "BIPA", + "iata_code": "PFJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Patreksfj%C3%B6r%C3%B0ur_Airport" + }, + { + "id": "32207", + "ident": "BIRE", + "type": "small_airport", + "name": "Reykhólar Airport", + "latitude_deg": "65.45262908935547", + "longitude_deg": "-22.20611572265625", + "elevation_ft": "60", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-4", + "municipality": "Reykhólar", + "scheduled_service": "no", + "gps_code": "BIRE", + "iata_code": "RHA" + }, + { + "id": "30741", + "ident": "BIRF", + "type": "small_airport", + "name": "Rif Airport", + "latitude_deg": "64.9113998413", + "longitude_deg": "-23.8230991364", + "elevation_ft": "18", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-3", + "municipality": "Rif", + "scheduled_service": "no", + "gps_code": "BIRF", + "iata_code": "OLI" + }, + { + "id": "32205", + "ident": "BIRG", + "type": "small_airport", + "name": "Raufarhöfn Airport", + "latitude_deg": "66.40640258789062", + "longitude_deg": "-15.918299674987793", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-6", + "municipality": "Raufarhöfn", + "scheduled_service": "no", + "gps_code": "BIRG", + "iata_code": "RFN" + }, + { + "id": "125", + "ident": "BIRK", + "type": "medium_airport", + "name": "Reykjavik Airport", + "latitude_deg": "64.1299972534", + "longitude_deg": "-21.9405994415", + "elevation_ft": "48", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-1", + "municipality": "Reykjavik", + "scheduled_service": "yes", + "gps_code": "BIRK", + "iata_code": "RKV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Reykjav%C3%ADk_Airport", + "keywords": "REK" + }, + { + "id": "31973", + "ident": "BIRL", + "type": "small_airport", + "name": "Reykjahlíð Airport", + "latitude_deg": "65.65579986572266", + "longitude_deg": "-16.918100357055664", + "elevation_ft": "1030", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-6", + "municipality": "Myvatn", + "scheduled_service": "no", + "gps_code": "BIRL", + "iata_code": "MVA" + }, + { + "id": "30742", + "ident": "BIRS", + "type": "small_airport", + "name": "Reykjanes Airport", + "latitude_deg": "65.91419982910156", + "longitude_deg": "-22.42140007019043", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-4", + "municipality": "Reykjanes", + "scheduled_service": "no", + "gps_code": "BIRS" + }, + { + "id": "30743", + "ident": "BISA", + "type": "small_airport", + "name": "Sandá Airport", + "latitude_deg": "65.1343994140625", + "longitude_deg": "-19.66309928894043", + "elevation_ft": "1580", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-5", + "municipality": "Sandá", + "scheduled_service": "no", + "gps_code": "BISA" + }, + { + "id": "30744", + "ident": "BISF", + "type": "small_airport", + "name": "Selfoss Airport", + "latitude_deg": "63.92919921875", + "longitude_deg": "-21.037799835205078", + "elevation_ft": "45", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Selfoss", + "scheduled_service": "no", + "gps_code": "BISF" + }, + { + "id": "30745", + "ident": "BISG", + "type": "small_airport", + "name": "Steinasandur Airport", + "latitude_deg": "64.16547", + "longitude_deg": "-15.91334", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-7", + "municipality": "Kalfatellsstadhur", + "scheduled_service": "no", + "gps_code": "BISG" + }, + { + "id": "30746", + "ident": "BISH", + "type": "small_airport", + "name": "Stora-Holt Airport", + "latitude_deg": "65.4000015258789", + "longitude_deg": "-21.933000564575195", + "elevation_ft": "100", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-3", + "municipality": "Stora-Holt", + "scheduled_service": "no", + "gps_code": "BISH" + }, + { + "id": "126", + "ident": "BISI", + "type": "medium_airport", + "name": "Siglufjörður Airport", + "latitude_deg": "66.137847", + "longitude_deg": "-18.908157", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-6", + "municipality": "Siglufjörður", + "scheduled_service": "no", + "gps_code": "BISI", + "iata_code": "SIJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Siglufj%C3%B6r%C3%B0ur_Airport" + }, + { + "id": "30747", + "ident": "BISK", + "type": "small_airport", + "name": "Skógasandur Airport", + "latitude_deg": "63.5172", + "longitude_deg": "-19.489201", + "elevation_ft": "130", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Skógar", + "scheduled_service": "no", + "gps_code": "BISK" + }, + { + "id": "30748", + "ident": "BISN", + "type": "small_airport", + "name": "Svínafell Airport", + "latitude_deg": "64.384723", + "longitude_deg": "-15.371935", + "elevation_ft": "60", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-7", + "municipality": "Svínafell", + "scheduled_service": "no", + "gps_code": "BISN" + }, + { + "id": "30749", + "ident": "BISP", + "type": "small_airport", + "name": "Sprengisandur Airport", + "latitude_deg": "64.6541976928711", + "longitude_deg": "-18.49690055847168", + "elevation_ft": "2050", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Sprengisandur", + "scheduled_service": "no", + "gps_code": "BISP" + }, + { + "id": "30750", + "ident": "BISR", + "type": "small_airport", + "name": "Stórikroppur Airport", + "latitude_deg": "64.6343994140625", + "longitude_deg": "-21.487499237060547", + "elevation_ft": "165", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-3", + "municipality": "Stórikroppur", + "scheduled_service": "no", + "gps_code": "BISR" + }, + { + "id": "30751", + "ident": "BISS", + "type": "small_airport", + "name": "Sandskeið Airport", + "latitude_deg": "64.06079864501953", + "longitude_deg": "-21.57469940185547", + "elevation_ft": "600", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-1", + "municipality": "Sandskeið", + "scheduled_service": "no", + "gps_code": "BISS" + }, + { + "id": "32415", + "ident": "BIST", + "type": "small_airport", + "name": "Stykkishólmur Airport", + "latitude_deg": "65.05809783935547", + "longitude_deg": "-22.794200897216797", + "elevation_ft": "42", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-3", + "municipality": "Stykkishólmur", + "scheduled_service": "no", + "gps_code": "BIST", + "iata_code": "SYK" + }, + { + "id": "30752", + "ident": "BISV", + "type": "small_airport", + "name": "Skálavatn Airport", + "latitude_deg": "64.11579895019531", + "longitude_deg": "-18.783300399780273", + "elevation_ft": "2000", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Skálavatn", + "scheduled_service": "no", + "gps_code": "BISV" + }, + { + "id": "32436", + "ident": "BITE", + "type": "small_airport", + "name": "Þingeyri Airport", + "latitude_deg": "65.87030029296875", + "longitude_deg": "-23.559999465942383", + "elevation_ft": "65", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-4", + "municipality": "Þingeyri", + "scheduled_service": "no", + "gps_code": "BITE", + "iata_code": "TEY" + }, + { + "id": "308409", + "ident": "BITF", + "type": "closed", + "name": "Tálknafjörður Airport", + "latitude_deg": "65.676037", + "longitude_deg": "-24.006114", + "elevation_ft": "115", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-4", + "municipality": "Tálknafjörður", + "scheduled_service": "no", + "gps_code": "BITF" + }, + { + "id": "42246", + "ident": "BITH", + "type": "closed", + "name": "Sauðanes Airport", + "latitude_deg": "66.251859", + "longitude_deg": "-15.273914", + "elevation_ft": "15", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-6", + "municipality": "Þórshöfn", + "scheduled_service": "no", + "gps_code": "BITH", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%9E%C3%B3rsh%C3%B6fn_Airport", + "keywords": "THO, Thorshofn" + }, + { + "id": "30754", + "ident": "BITM", + "type": "small_airport", + "name": "Þórsmörk Airport", + "latitude_deg": "63.689998626708984", + "longitude_deg": "-19.563100814819336", + "elevation_ft": "600", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Þórsmörk", + "scheduled_service": "no", + "gps_code": "BITM" + }, + { + "id": "127", + "ident": "BITN", + "type": "small_airport", + "name": "Þórshöfn Airport", + "latitude_deg": "66.218498", + "longitude_deg": "-15.3356", + "elevation_ft": "65", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-6", + "municipality": "Þórshöfn", + "scheduled_service": "yes", + "gps_code": "BITN", + "iata_code": "THO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thorshofn_Airport", + "keywords": "Thorshofn" + }, + { + "id": "30755", + "ident": "BITO", + "type": "small_airport", + "name": "Thorisos Airport", + "latitude_deg": "64.354373", + "longitude_deg": "-18.836514", + "elevation_ft": "1840", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Thorisos", + "scheduled_service": "no", + "gps_code": "BITO" + }, + { + "id": "30757", + "ident": "BIVA", + "type": "small_airport", + "name": "Vatnsnes Airport", + "latitude_deg": "64.03309631347656", + "longitude_deg": "-20.651100158691406", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Vatnsnes", + "scheduled_service": "no", + "gps_code": "BIVA" + }, + { + "id": "44001", + "ident": "BIVH", + "type": "small_airport", + "name": "Varmahlid Airport", + "latitude_deg": "65.55694580078125", + "longitude_deg": "-19.428056716918945", + "elevation_ft": "27", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-5", + "municipality": "Varmahlid", + "scheduled_service": "no", + "gps_code": "BIVH" + }, + { + "id": "30758", + "ident": "BIVI", + "type": "small_airport", + "name": "Vík Airport", + "latitude_deg": "63.42169952392578", + "longitude_deg": "-18.8882999420166", + "elevation_ft": "100", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Vík", + "scheduled_service": "no", + "gps_code": "BIVI" + }, + { + "id": "128", + "ident": "BIVM", + "type": "medium_airport", + "name": "Vestmannaeyjar Airport", + "latitude_deg": "63.42430114746094", + "longitude_deg": "-20.278900146484375", + "elevation_ft": "326", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Vestmannaeyjar", + "scheduled_service": "no", + "gps_code": "BIVM", + "iata_code": "VEY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vestmannaeyjar_Airport" + }, + { + "id": "32593", + "ident": "BIVO", + "type": "small_airport", + "name": "Vopnafjörður Airport", + "latitude_deg": "65.72059631347656", + "longitude_deg": "-14.850600242614746", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-7", + "municipality": "Vopnafjörður", + "scheduled_service": "yes", + "gps_code": "BIVO", + "iata_code": "VPN" + }, + { + "id": "301807", + "ident": "BIZ", + "type": "closed", + "name": "Bimin Airport", + "latitude_deg": "-5.28611111111", + "longitude_deg": "142.033055556", + "elevation_ft": "5775", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "scheduled_service": "no", + "iata_code": "BIZ", + "local_code": "BMN" + }, + { + "id": "323997", + "ident": "BJ-0001", + "type": "small_airport", + "name": "Tankaro Airport", + "latitude_deg": "9.391186", + "longitude_deg": "2.507311", + "continent": "AF", + "iso_country": "BJ", + "iso_region": "BJ-BO", + "municipality": "Parakou", + "scheduled_service": "no" + }, + { + "id": "300790", + "ident": "BJE", + "type": "small_airport", + "name": "Baleela Airport", + "latitude_deg": "11.199444444400001", + "longitude_deg": "28.5230555556", + "elevation_ft": "1690", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-13", + "municipality": "Baleela Base Camp", + "scheduled_service": "no", + "iata_code": "BJE" + }, + { + "id": "300791", + "ident": "BJQ", + "type": "small_airport", + "name": "Bahja Airport", + "latitude_deg": "19.8730555556", + "longitude_deg": "56.067777777799996", + "elevation_ft": "515", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-WU", + "municipality": "Bahja", + "scheduled_service": "no", + "iata_code": "BJQ" + }, + { + "id": "312172", + "ident": "BJT", + "type": "seaplane_base", + "name": "Bentota River Waterdrome", + "latitude_deg": "6.431", + "longitude_deg": "79.996", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-1", + "municipality": "Bentota", + "scheduled_service": "yes", + "iata_code": "BJT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bentota_River_Airport" + }, + { + "id": "4614", + "ident": "BKPR", + "type": "medium_airport", + "name": "Priština Adem Jashari International Airport", + "latitude_deg": "42.5728", + "longitude_deg": "21.035801", + "elevation_ft": "1789", + "continent": "EU", + "iso_country": "XK", + "iso_region": "XK-01", + "municipality": "Prishtina", + "scheduled_service": "yes", + "gps_code": "BKPR", + "iata_code": "PRN", + "home_link": "http://www.airportpristina.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pristina_International_Airport", + "keywords": "LYPR, Pristina, Slatina Air Base" + }, + { + "id": "316472", + "ident": "BKVR", + "type": "heliport", + "name": "Vali Ranch Heliport", + "latitude_deg": "42.513732", + "longitude_deg": "21.534508", + "elevation_ft": "2168", + "continent": "EU", + "iso_country": "XK", + "iso_region": "XK-06", + "municipality": "Përlepnice", + "scheduled_service": "no", + "gps_code": "BKVR", + "keywords": "Vali" + }, + { + "id": "302248", + "ident": "bl", + "type": "closed", + "name": "RNAS Pembroke/RNAS Milton/RAF Carew Cheriton", + "latitude_deg": "51.690117088", + "longitude_deg": "-4.812355041499999", + "continent": "NA", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Pembrokeshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Carew_Cheriton" + }, + { + "id": "46651", + "ident": "BLM", + "type": "small_airport", + "name": "Muñoz Landing Airstrip", + "latitude_deg": "28.891952", + "longitude_deg": "-113.528724", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "BLM", + "keywords": "Bahia de Los Angeles South" + }, + { + "id": "302039", + "ident": "BLW", + "type": "closed", + "name": "Bellows AFS (Bellows Field)", + "latitude_deg": "21.370833", + "longitude_deg": "-157.713887", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Waimanalo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bellows_Air_Force_Station", + "keywords": "BLW, XBEL" + }, + { + "id": "44079", + "ident": "BM-0001", + "type": "closed", + "name": "RNAS Boaz Island", + "latitude_deg": "32.320801", + "longitude_deg": "-64.841103", + "continent": "NA", + "iso_country": "BM", + "iso_region": "BM-U-A", + "municipality": "Sandys", + "scheduled_service": "no", + "home_link": "http://www.bermuda-online.org/rnd2.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/RNAS_Boaz_Island_(HMS_Malabar)", + "keywords": "HMS Malabar" + }, + { + "id": "44080", + "ident": "BM-0002", + "type": "closed", + "name": "Naval Air Station Bermuda Annex", + "latitude_deg": "32.269871", + "longitude_deg": "-64.851616", + "continent": "NA", + "iso_country": "BM", + "iso_region": "BM-U-A", + "municipality": "Sandys", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Station_Bermuda_Annex", + "keywords": "USN NOB" + }, + { + "id": "348371", + "ident": "BM-0003", + "type": "closed", + "name": "Darrell's Island Seaplane Base", + "latitude_deg": "32.27513", + "longitude_deg": "-64.81915", + "continent": "NA", + "iso_country": "BM", + "iso_region": "BM-U-A", + "municipality": "Warwick", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Darrell%27s_Island,_Bermuda" + }, + { + "id": "302041", + "ident": "BMH", + "type": "small_airport", + "name": "Bomai Airport", + "latitude_deg": "-6.37316666667", + "longitude_deg": "144.637", + "elevation_ft": "3300", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPK", + "municipality": "Bomai", + "scheduled_service": "no", + "gps_code": "AYBO", + "iata_code": "BMH", + "local_code": "BOM" + }, + { + "id": "28482", + "ident": "BMQ", + "type": "small_airport", + "name": "Bamburi Airport", + "latitude_deg": "-3.983363", + "longitude_deg": "39.730982", + "elevation_ft": "52", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Bamburi", + "scheduled_service": "yes", + "gps_code": "HKBM", + "iata_code": "BMQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bamburi_Airport" + }, + { + "id": "302044", + "ident": "BMZ", + "type": "small_airport", + "name": "Bamu Airport", + "latitude_deg": "-7.8485", + "longitude_deg": "143.2433", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Bamu", + "scheduled_service": "no", + "gps_code": "AYBF", + "iata_code": "BMZ", + "local_code": "BAMU" + }, + { + "id": "340517", + "ident": "BN-0001", + "type": "heliport", + "name": "Istana Nurul Iman Heliport", + "latitude_deg": "4.872524", + "longitude_deg": "114.921956", + "continent": "AS", + "iso_country": "BN", + "iso_region": "BN-BM", + "municipality": "Bandar Seri Begawan", + "scheduled_service": "no" + }, + { + "id": "340518", + "ident": "BN-0002", + "type": "heliport", + "name": "Tumasek Heliport", + "latitude_deg": "4.877107", + "longitude_deg": "114.926715", + "continent": "AS", + "iso_country": "BN", + "iso_region": "BN-BM", + "municipality": "Bandar Seri Begawan", + "scheduled_service": "no" + }, + { + "id": "340519", + "ident": "BN-0003", + "type": "heliport", + "name": "Pulau Muara Besar Heliport", + "latitude_deg": "5.006128", + "longitude_deg": "115.088457", + "continent": "AS", + "iso_country": "BN", + "iso_region": "BN-BM", + "municipality": "Pulau Muara Besar", + "scheduled_service": "no" + }, + { + "id": "340520", + "ident": "BN-0004", + "type": "heliport", + "name": "Muara Heliport", + "latitude_deg": "5.035629", + "longitude_deg": "115.089139", + "continent": "AS", + "iso_country": "BN", + "iso_region": "BN-BM", + "municipality": "Muara", + "scheduled_service": "no" + }, + { + "id": "340522", + "ident": "BN-0005", + "type": "heliport", + "name": "RIPAS Hospital Heliport", + "latitude_deg": "4.895136", + "longitude_deg": "114.933612", + "continent": "AS", + "iso_country": "BN", + "iso_region": "BN-BM", + "municipality": "Bandar Seri Begawan", + "scheduled_service": "no" + }, + { + "id": "340523", + "ident": "BN-0006", + "type": "heliport", + "name": "Ulu Ulu Resort Heliport", + "latitude_deg": "4.554246", + "longitude_deg": "115.154487", + "continent": "AS", + "iso_country": "BN", + "iso_region": "BN-TE", + "municipality": "Ulu Ulu", + "scheduled_service": "no" + }, + { + "id": "340524", + "ident": "BN-0007", + "type": "heliport", + "name": "Bangar Heliport", + "latitude_deg": "4.708963", + "longitude_deg": "115.075272", + "continent": "AS", + "iso_country": "BN", + "iso_region": "BN-TE", + "municipality": "Bangar", + "scheduled_service": "no" + }, + { + "id": "340525", + "ident": "BN-0008", + "type": "heliport", + "name": "Sengkurong Heliport", + "latitude_deg": "4.941359", + "longitude_deg": "114.821", + "continent": "AS", + "iso_country": "BN", + "iso_region": "BN-BM", + "municipality": "Sengkurong", + "scheduled_service": "no" + }, + { + "id": "340526", + "ident": "BN-0009", + "type": "heliport", + "name": "Tutong Heliport", + "latitude_deg": "4.819815", + "longitude_deg": "114.667712", + "continent": "AS", + "iso_country": "BN", + "iso_region": "BN-TU", + "municipality": "Tutong", + "scheduled_service": "no" + }, + { + "id": "340527", + "ident": "BN-0010", + "type": "heliport", + "name": "Kuala Belait Heliport", + "latitude_deg": "4.588976", + "longitude_deg": "114.188284", + "continent": "AS", + "iso_country": "BN", + "iso_region": "BN-BE", + "municipality": "Kuala Belait", + "scheduled_service": "no" + }, + { + "id": "340528", + "ident": "BN-0011", + "type": "heliport", + "name": "Seria Heliport", + "latitude_deg": "4.608473", + "longitude_deg": "114.327288", + "continent": "AS", + "iso_country": "BN", + "iso_region": "BN-BE", + "municipality": "Seria", + "scheduled_service": "no" + }, + { + "id": "340529", + "ident": "BN-0012", + "type": "heliport", + "name": "Seria Hospital Helipad", + "latitude_deg": "4.609976", + "longitude_deg": "114.304473", + "continent": "AS", + "iso_country": "BN", + "iso_region": "BN-BE", + "municipality": "Seria", + "scheduled_service": "no" + }, + { + "id": "340530", + "ident": "BN-0013", + "type": "heliport", + "name": "Shell Panaga Heliport", + "latitude_deg": "4.607876", + "longitude_deg": "114.291313", + "continent": "AS", + "iso_country": "BN", + "iso_region": "BN-BE", + "municipality": "Panaga", + "scheduled_service": "no" + }, + { + "id": "355971", + "ident": "BN-0014", + "type": "heliport", + "name": "Suri Seri Begawan Hospital Heliport", + "latitude_deg": "4.58448", + "longitude_deg": "114.1994", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "BN", + "iso_region": "BN-BE", + "municipality": "Kuala Belait", + "scheduled_service": "no" + }, + { + "id": "16502", + "ident": "BNF", + "type": "seaplane_base", + "name": "Baranof Warm Springs Float and Seaplane Base", + "latitude_deg": "57.088799", + "longitude_deg": "-134.833146", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Baranof", + "scheduled_service": "no", + "iata_code": "BNF", + "local_code": "BNF", + "keywords": "Warm Spring Bay Seaplane Base Baranof Warm Springs, Baranoff" + }, + { + "id": "301975", + "ident": "BNM", + "type": "small_airport", + "name": "Bodinumu Airport", + "latitude_deg": "-9.107777777779999", + "longitude_deg": "147.666722222", + "elevation_ft": "3700", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Bodinumu", + "scheduled_service": "no", + "gps_code": "AYBD", + "iata_code": "BNM", + "local_code": "BNU" + }, + { + "id": "302045", + "ident": "BNQ", + "type": "closed", + "name": "Baganga airport", + "latitude_deg": "7.611944444440001", + "longitude_deg": "126.568888889", + "elevation_ft": "42", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAO", + "municipality": "Baganga", + "scheduled_service": "no", + "iata_code": "BNQ" + }, + { + "id": "302046", + "ident": "BNT", + "type": "small_airport", + "name": "Bundi Airport", + "latitude_deg": "-5.742222222220001", + "longitude_deg": "145.2275", + "elevation_ft": "4400", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Bundi", + "scheduled_service": "no", + "gps_code": "AYDI", + "iata_code": "BNT", + "local_code": "BDI" + }, + { + "id": "312758", + "ident": "BNV", + "type": "closed", + "name": "Boana Airport", + "latitude_deg": "-6.433", + "longitude_deg": "146.825", + "elevation_ft": "2950", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Boana", + "scheduled_service": "no", + "iata_code": "BNV" + }, + { + "id": "313293", + "ident": "BNZ", + "type": "closed", + "name": "Banz Airport", + "latitude_deg": "-5.807", + "longitude_deg": "144.623", + "elevation_ft": "5150", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-JI", + "municipality": "Banz", + "scheduled_service": "no", + "iata_code": "BNZ" + }, + { + "id": "41591", + "ident": "BO-0001", + "type": "small_airport", + "name": "Rurenabaque Airport", + "latitude_deg": "-14.427900314299999", + "longitude_deg": "-67.4968032837", + "elevation_ft": "676", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Rurenabaque", + "scheduled_service": "no", + "gps_code": "SLRQ", + "iata_code": "RBQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rurrenabaque_Airport" + }, + { + "id": "41592", + "ident": "BO-0002", + "type": "small_airport", + "name": "Riberalta Airport", + "latitude_deg": "-11.01039981842041", + "longitude_deg": "-66.07340240478516", + "elevation_ft": "444", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Riberalta", + "scheduled_service": "no" + }, + { + "id": "314372", + "ident": "BO-0003", + "type": "small_airport", + "name": "San Juan de Beni Airport", + "latitude_deg": "-14.2626", + "longitude_deg": "-64.8721", + "elevation_ft": "487", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Puerto Leigue", + "scheduled_service": "no" + }, + { + "id": "314376", + "ident": "BO-0004", + "type": "small_airport", + "name": "Puerto Ustarez Airport", + "latitude_deg": "-12.3431", + "longitude_deg": "-64.5205", + "elevation_ft": "478", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Puerto Ustarez", + "scheduled_service": "no" + }, + { + "id": "314377", + "ident": "BO-0005", + "type": "small_airport", + "name": "Mayo Mayo Airport", + "latitude_deg": "-12.2974", + "longitude_deg": "-65.0986", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Santa Rosa de Vigo", + "scheduled_service": "no", + "keywords": "Puerto Vigo" + }, + { + "id": "314378", + "ident": "BO-0006", + "type": "small_airport", + "name": "El Mojar Airport", + "latitude_deg": "-12.4274", + "longitude_deg": "-65.5061", + "elevation_ft": "486", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "El Mojar", + "scheduled_service": "no" + }, + { + "id": "314384", + "ident": "BO-0007", + "type": "small_airport", + "name": "El Tacuaral", + "latitude_deg": "-14.0807", + "longitude_deg": "-65.658", + "elevation_ft": "500", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "El Tacuaral", + "scheduled_service": "no" + }, + { + "id": "314385", + "ident": "BO-0008", + "type": "small_airport", + "name": "Camiare Airport", + "latitude_deg": "-13.9698", + "longitude_deg": "-65.6699", + "elevation_ft": "493", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Camiare", + "scheduled_service": "no" + }, + { + "id": "314402", + "ident": "BO-0009", + "type": "small_airport", + "name": "Saipiru Airport", + "latitude_deg": "-19.3911991119", + "longitude_deg": "-63.072101593", + "elevation_ft": "2039", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Cordillera", + "scheduled_service": "no", + "keywords": "SLSS" + }, + { + "id": "318452", + "ident": "BO-0010", + "type": "small_airport", + "name": "Buen Jesus Airport", + "latitude_deg": "-13.657813", + "longitude_deg": "-62.801874", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Buen Jesus", + "scheduled_service": "no" + }, + { + "id": "318453", + "ident": "BO-0011", + "type": "small_airport", + "name": "Tres Personas Airport", + "latitude_deg": "-14.130654", + "longitude_deg": "-61.820904", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Tres Personas", + "scheduled_service": "no" + }, + { + "id": "321671", + "ident": "BO-0012", + "type": "small_airport", + "name": "Ibibobo Airport", + "latitude_deg": "-21.532782", + "longitude_deg": "-62.971537", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-T", + "municipality": "Ibibobo", + "scheduled_service": "no" + }, + { + "id": "322454", + "ident": "BO-0013", + "type": "small_airport", + "name": "Loreto Airport", + "latitude_deg": "-15.190029", + "longitude_deg": "-64.757926", + "elevation_ft": "534", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Loreto", + "scheduled_service": "no" + }, + { + "id": "324118", + "ident": "BO-0014", + "type": "small_airport", + "name": "Espiritu Airstrip", + "latitude_deg": "-16.226916", + "longitude_deg": "-60.546454", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Espiritu", + "scheduled_service": "no" + }, + { + "id": "351497", + "ident": "BO-0015", + "type": "small_airport", + "name": "Nueva Esperanza Airport", + "latitude_deg": "-10.05245", + "longitude_deg": "-65.33933", + "elevation_ft": "344", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-N", + "municipality": "Nueva Esperanza", + "scheduled_service": "no" + }, + { + "id": "429703", + "ident": "BO-0016", + "type": "heliport", + "name": "Villa Alota Heliport", + "latitude_deg": "-21.40185", + "longitude_deg": "-67.59456", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-P", + "municipality": "Villa Alota", + "scheduled_service": "no" + }, + { + "id": "429704", + "ident": "BO-0017", + "type": "heliport", + "name": "Culpina K Heliport", + "latitude_deg": "-21.26314", + "longitude_deg": "-67.22413", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-P", + "municipality": "Culpina K", + "scheduled_service": "no" + }, + { + "id": "41590", + "ident": "BO-BVL", + "type": "small_airport", + "name": "Baures Airport", + "latitude_deg": "-13.583333015400001", + "longitude_deg": "-63.5833320618", + "elevation_ft": "470", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Baures", + "scheduled_service": "no", + "gps_code": "SLBA", + "iata_code": "BVL" + }, + { + "id": "322356", + "ident": "BOBS", + "type": "small_airport", + "name": "Bobs", + "latitude_deg": "35.391523", + "longitude_deg": "-91.443706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Bradford", + "scheduled_service": "no", + "gps_code": "BOBS" + }, + { + "id": "16503", + "ident": "BOF", + "type": "heliport", + "name": "Bolling Air Force Base", + "latitude_deg": "38.854049", + "longitude_deg": "-77.012046", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DC", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "KBOF", + "iata_code": "BOF", + "local_code": "BOF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Joint_Base_Anacostia-Bolling" + }, + { + "id": "16504", + "ident": "BOK", + "type": "small_airport", + "name": "Brookings Airport", + "latitude_deg": "42.0746", + "longitude_deg": "-124.290001", + "elevation_ft": "459", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Brookings", + "scheduled_service": "no", + "gps_code": "KBOK", + "iata_code": "BOK", + "local_code": "BOK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brookings_Airport" + }, + { + "id": "322375", + "ident": "BONI", + "type": "small_airport", + "name": "Bonita", + "latitude_deg": "32.894407", + "longitude_deg": "-91.711392", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bonita", + "scheduled_service": "no", + "gps_code": "BONI" + }, + { + "id": "312759", + "ident": "BOQ", + "type": "closed", + "name": "Boku Airport", + "latitude_deg": "-6.5427", + "longitude_deg": "155.3419", + "elevation_ft": "225", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NSB", + "municipality": "Boku", + "scheduled_service": "no", + "iata_code": "BOQ" + }, + { + "id": "301979", + "ident": "BOT", + "type": "small_airport", + "name": "Bosset Airport", + "latitude_deg": "-7.237257", + "longitude_deg": "141.1063222", + "elevation_ft": "80", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Bosset", + "scheduled_service": "yes", + "gps_code": "AYET", + "iata_code": "BOT", + "local_code": "BST", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bosset_Airport", + "keywords": "Boset" + }, + { + "id": "312780", + "ident": "BOV", + "type": "small_airport", + "name": "Boang Airport", + "latitude_deg": "-3.3834", + "longitude_deg": "153.2812", + "elevation_ft": "85", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NIK", + "municipality": "Boang Island", + "scheduled_service": "no", + "iata_code": "BOV", + "local_code": "BOG" + }, + { + "id": "302402", + "ident": "BPF", + "type": "small_airport", + "name": "Batuna Aerodrome", + "latitude_deg": "-8.56202777778", + "longitude_deg": "158.119305556", + "elevation_ft": "24", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-WE", + "municipality": "Batuna Mission Station", + "scheduled_service": "no", + "gps_code": "AGBT", + "iata_code": "BPF" + }, + { + "id": "335973", + "ident": "BQ-0001", + "type": "closed", + "name": "Old Flamingo Airport", + "latitude_deg": "12.18637", + "longitude_deg": "-68.26484", + "continent": "NA", + "iso_country": "BQ", + "iso_region": "BQ-U-A", + "municipality": "Kralendijk, Bonaire", + "scheduled_service": "no" + }, + { + "id": "16505", + "ident": "BQV", + "type": "seaplane_base", + "name": "Bartlett Cove Seaplane Base", + "latitude_deg": "58.4552001953", + "longitude_deg": "-135.884994507", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Gustavus", + "scheduled_service": "no", + "gps_code": "BQV", + "iata_code": "BQV", + "local_code": "BQV" + }, + { + "id": "41842", + "ident": "BR-0001", + "type": "small_airport", + "name": "Tatamborá Flying Field", + "latitude_deg": "-23.888048", + "longitude_deg": "-45.446824", + "elevation_ft": "500", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ponta da Sela, Ilhabela", + "scheduled_service": "no" + }, + { + "id": "42431", + "ident": "BR-0002", + "type": "closed", + "name": "Alegrete", + "latitude_deg": "-29.800277709960938", + "longitude_deg": "-55.76305389404297", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "scheduled_service": "no" + }, + { + "id": "42432", + "ident": "BR-0003", + "type": "closed", + "name": "Fazenda Cana Brava", + "latitude_deg": "-17.418399810791016", + "longitude_deg": "-39.5817985534668", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "scheduled_service": "no" + }, + { + "id": "42433", + "ident": "BR-0004", + "type": "closed", + "name": "Fazenda Sao Judas Tadeu", + "latitude_deg": "-12.617799758911133", + "longitude_deg": "-60.90079879760742", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "scheduled_service": "no" + }, + { + "id": "42434", + "ident": "BR-0005", + "type": "closed", + "name": "Iguatemi", + "latitude_deg": "-23.63290023803711", + "longitude_deg": "-54.62969970703125", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "scheduled_service": "no" + }, + { + "id": "42435", + "ident": "BR-0006", + "type": "closed", + "name": "Ilha Solteira", + "latitude_deg": "-20.42169952392578", + "longitude_deg": "-51.33140182495117", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "scheduled_service": "no" + }, + { + "id": "42436", + "ident": "BR-0007", + "type": "closed", + "name": "Irati", + "latitude_deg": "-25.503889083862305", + "longitude_deg": "-50.65388870239258", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "scheduled_service": "no" + }, + { + "id": "42437", + "ident": "BR-0008", + "type": "closed", + "name": "Planura", + "latitude_deg": "-20.124399185180664", + "longitude_deg": "-48.69969940185547", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "scheduled_service": "no" + }, + { + "id": "42438", + "ident": "BR-0009", + "type": "closed", + "name": "Ponta do Costa Airport", + "latitude_deg": "-22.871901", + "longitude_deg": "-42.082802", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Cabo Frio", + "scheduled_service": "no" + }, + { + "id": "42439", + "ident": "BR-0010", + "type": "closed", + "name": "Senhor Do Bonfim", + "latitude_deg": "-10.47029972076416", + "longitude_deg": "-40.18280029296875", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "scheduled_service": "no" + }, + { + "id": "42508", + "ident": "BR-0011", + "type": "closed", + "name": "Edmar Ferreira", + "latitude_deg": "-18.25749969482422", + "longitude_deg": "-48.90800094604492", + "elevation_ft": "1476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Buriti Alegre", + "scheduled_service": "no" + }, + { + "id": "42509", + "ident": "BR-0012", + "type": "closed", + "name": "Maisa Airport", + "latitude_deg": "-5.02254", + "longitude_deg": "-37.5159", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Mossoró", + "scheduled_service": "no", + "keywords": "SNOO" + }, + { + "id": "44628", + "ident": "BR-0013", + "type": "closed", + "name": "Fazenda Campo Oliva - Nhecolândia", + "latitude_deg": "-18.500999", + "longitude_deg": "-55.450298", + "elevation_ft": "425", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "home_link": "http://www.panoramio.com/photo/21226527", + "wikipedia_link": "http://www.panoramio.com/photo/21226527", + "keywords": "http://www.panoramio.com/photo/21226527" + }, + { + "id": "299116", + "ident": "BR-0014", + "type": "closed", + "name": "Nova Jacuí Airport", + "latitude_deg": "-29.118055555599998", + "longitude_deg": "-53.215833333300004", + "elevation_ft": "1070", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Salto do Jacuí", + "scheduled_service": "no", + "wikipedia_link": "http://pt.wikipedia.org/wiki/Aeroporto_Nova_Jacu%C3%AD" + }, + { + "id": "299171", + "ident": "BR-0015", + "type": "closed", + "name": "Tucumã Airport", + "latitude_deg": "-6.7488", + "longitude_deg": "-51.1478", + "elevation_ft": "1060", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Tucumã", + "scheduled_service": "no", + "iata_code": "TUZ" + }, + { + "id": "308787", + "ident": "BR-0016", + "type": "small_airport", + "name": "Alexânia Municipal Airport", + "latitude_deg": "-16.06185", + "longitude_deg": "-48.5294", + "elevation_ft": "3590", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Alexânia", + "scheduled_service": "no" + }, + { + "id": "302392", + "ident": "BR-0017", + "type": "heliport", + "name": "Guarulhos - Sao Paulo Airport Marriott Heliport", + "latitude_deg": "-23.4557270361", + "longitude_deg": "-46.4917990565", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "scheduled_service": "no" + }, + { + "id": "307254", + "ident": "BR-0018", + "type": "heliport", + "name": "Fasano Hotel Heliport", + "latitude_deg": "-23.3322077122", + "longitude_deg": "-47.5599431992", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "scheduled_service": "no" + }, + { + "id": "307256", + "ident": "BR-0019", + "type": "heliport", + "name": "Fazenda Boa Vista Heliport", + "latitude_deg": "-23.361168", + "longitude_deg": "-47.568752", + "elevation_ft": "1877", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Porto Feliz", + "scheduled_service": "no", + "gps_code": "SJBM", + "local_code": "SP0598" + }, + { + "id": "309748", + "ident": "BR-0020", + "type": "closed", + "name": "Panco 10 Heliport", + "latitude_deg": "-22.6667003632", + "longitude_deg": "-43.29610061649999", + "elevation_ft": "58", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Duque De Caxias", + "scheduled_service": "no", + "keywords": "SDDC" + }, + { + "id": "349788", + "ident": "BR-0021", + "type": "heliport", + "name": "Praia Grande Heliport", + "latitude_deg": "-20.037825", + "longitude_deg": "-40.17903", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Fundão", + "scheduled_service": "no", + "gps_code": "SWUM", + "local_code": "ES0024" + }, + { + "id": "313736", + "ident": "BR-0022", + "type": "small_airport", + "name": "Fazenda Trescinco Juruena Airport", + "latitude_deg": "-10.2447223663", + "longitude_deg": "-58.24944305419999", + "elevation_ft": "883", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alta Floresta", + "scheduled_service": "no" + }, + { + "id": "313737", + "ident": "BR-0023", + "type": "small_airport", + "name": "Bonfim Airport", + "latitude_deg": "3.3621", + "longitude_deg": "-59.8239", + "elevation_ft": "296", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Bonfim", + "scheduled_service": "no" + }, + { + "id": "314974", + "ident": "BR-0024", + "type": "small_airport", + "name": "Fazenda Montenegro Airport", + "latitude_deg": "-0.2525", + "longitude_deg": "-49.52", + "elevation_ft": "27", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Chaves", + "scheduled_service": "no" + }, + { + "id": "314975", + "ident": "BR-0025", + "type": "small_airport", + "name": "Punto do Carmo Airport", + "latitude_deg": "-0.218", + "longitude_deg": "-49.764", + "elevation_ft": "50", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Chaves", + "scheduled_service": "no" + }, + { + "id": "314976", + "ident": "BR-0026", + "type": "small_airport", + "name": "Afuá Municipal Airport", + "latitude_deg": "-0.1581", + "longitude_deg": "-50.3881", + "elevation_ft": "6", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Afuá", + "scheduled_service": "no" + }, + { + "id": "314977", + "ident": "BR-0027", + "type": "small_airport", + "name": "Anajás Airport", + "latitude_deg": "-0.9852", + "longitude_deg": "-49.939", + "elevation_ft": "15", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Anajás", + "scheduled_service": "no" + }, + { + "id": "314978", + "ident": "BR-0028", + "type": "small_airport", + "name": "Povoado Airport", + "latitude_deg": "-0.7687", + "longitude_deg": "-48.5278", + "elevation_ft": "27", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Salvaterra", + "scheduled_service": "no" + }, + { + "id": "314979", + "ident": "BR-0029", + "type": "closed", + "name": "Campo Limpo Airport", + "latitude_deg": "-0.963", + "longitude_deg": "-47.3542", + "elevation_ft": "110", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santo Antônio", + "scheduled_service": "no" + }, + { + "id": "316487", + "ident": "BR-0030", + "type": "closed", + "name": "Cametá Airport", + "latitude_deg": "-2.2426", + "longitude_deg": "-49.5074", + "elevation_ft": "40", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Cametá", + "scheduled_service": "no", + "keywords": "CMT" + }, + { + "id": "316515", + "ident": "BR-0031", + "type": "small_airport", + "name": "19P12 Airstrip", + "latitude_deg": "-9.1736", + "longitude_deg": "-43.0513", + "elevation_ft": "1500", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Anisio de Abreu", + "scheduled_service": "no" + }, + { + "id": "316561", + "ident": "BR-0032", + "type": "small_airport", + "name": "São Domingos Airstrip", + "latitude_deg": "-13.4121", + "longitude_deg": "-46.2983", + "elevation_ft": "2375", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "São Domingos", + "scheduled_service": "no" + }, + { + "id": "316563", + "ident": "BR-0033", + "type": "small_airport", + "name": "Divinópolis de Goiás Airport", + "latitude_deg": "-13.2956", + "longitude_deg": "-46.379", + "elevation_ft": "2105", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Divinópolis de Goiás", + "scheduled_service": "no" + }, + { + "id": "316566", + "ident": "BR-0034", + "type": "small_airport", + "name": "Itajá Airstrip", + "latitude_deg": "-19.068", + "longitude_deg": "-51.53", + "elevation_ft": "1590", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Itajá", + "scheduled_service": "no" + }, + { + "id": "316567", + "ident": "BR-0035", + "type": "small_airport", + "name": "Aporé Airstrip", + "latitude_deg": "-18.94", + "longitude_deg": "-51.923", + "elevation_ft": "1880", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Aporé", + "scheduled_service": "no" + }, + { + "id": "316568", + "ident": "BR-0036", + "type": "closed", + "name": "Cedrolândia Airport", + "latitude_deg": "-2.53889", + "longitude_deg": "-51.946701", + "elevation_ft": "115", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Senador José Porfírio", + "scheduled_service": "no", + "keywords": "SISK" + }, + { + "id": "316569", + "ident": "BR-0037", + "type": "small_airport", + "name": "Fazenda Primavera", + "latitude_deg": "-18.8333", + "longitude_deg": "-52.059", + "elevation_ft": "2053", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Aporé", + "scheduled_service": "no" + }, + { + "id": "316570", + "ident": "BR-0038", + "type": "small_airport", + "name": "Itaruma Airport", + "latitude_deg": "-18.7807", + "longitude_deg": "-51.3587", + "elevation_ft": "1698", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Itaruma", + "scheduled_service": "no" + }, + { + "id": "316571", + "ident": "BR-0039", + "type": "small_airport", + "name": "Cachoeira Alta Airport", + "latitude_deg": "-18.7872", + "longitude_deg": "-50.9365", + "elevation_ft": "1750", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Cachoeira Alta", + "scheduled_service": "no" + }, + { + "id": "316574", + "ident": "BR-0040", + "type": "small_airport", + "name": "Aerocéu Aviação Agrícola Airport", + "latitude_deg": "-18.38829", + "longitude_deg": "-52.653599", + "elevation_ft": "2749", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Chapadão do Céu", + "scheduled_service": "no", + "gps_code": "SJAV", + "local_code": "GO0067" + }, + { + "id": "316575", + "ident": "BR-0041", + "type": "closed", + "name": "Old Rondonópolis Airport", + "latitude_deg": "-16.446199417114", + "longitude_deg": "-54.664199829102", + "elevation_ft": "1047", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Rondonópolis", + "scheduled_service": "no", + "keywords": "ROO, SJGP, Condomínio Fly-In Community Airport" + }, + { + "id": "316613", + "ident": "BR-0042", + "type": "small_airport", + "name": "Fazenda Santa Rita Airport", + "latitude_deg": "-15.3751", + "longitude_deg": "-51.045702", + "elevation_ft": "940", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Itapirapuã", + "scheduled_service": "no", + "keywords": "SWZR" + }, + { + "id": "316615", + "ident": "BR-0043", + "type": "small_airport", + "name": "Taxi Aero Airstrip", + "latitude_deg": "-13.1546", + "longitude_deg": "-50.593", + "elevation_ft": "713", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "São Miguel do Araguaia", + "scheduled_service": "no" + }, + { + "id": "316616", + "ident": "BR-0044", + "type": "small_airport", + "name": "Vila Isabel Airstrip", + "latitude_deg": "-13.2133", + "longitude_deg": "-50.5657", + "elevation_ft": "720", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "São Miguel do Araguaia", + "scheduled_service": "no" + }, + { + "id": "316617", + "ident": "BR-0045", + "type": "small_airport", + "name": "Fazenda São Miguel Airstrip", + "latitude_deg": "-13.2912", + "longitude_deg": "-50.5468", + "elevation_ft": "715", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "São Miguel do Araguaia", + "scheduled_service": "no" + }, + { + "id": "316618", + "ident": "BR-0046", + "type": "small_airport", + "name": "Novo Planalto Airport", + "latitude_deg": "-13.2391", + "longitude_deg": "-49.5138", + "elevation_ft": "1025", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Novo Planalto", + "scheduled_service": "no" + }, + { + "id": "316619", + "ident": "BR-0047", + "type": "small_airport", + "name": "Teresina de Goiás Airport", + "latitude_deg": "-13.7782", + "longitude_deg": "-47.282", + "elevation_ft": "2625", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Teresina de Goiás", + "scheduled_service": "no" + }, + { + "id": "316620", + "ident": "BR-0048", + "type": "closed", + "name": "Caçu Airport", + "latitude_deg": "-18.5748", + "longitude_deg": "-51.1607", + "elevation_ft": "1889", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Caçu", + "scheduled_service": "no" + }, + { + "id": "316792", + "ident": "BR-0049", + "type": "small_airport", + "name": "Fazenda Vale do Sol Airport", + "latitude_deg": "-18.2887", + "longitude_deg": "-51.9412", + "elevation_ft": "2523", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Serranópolis", + "scheduled_service": "no", + "gps_code": "SJ4Q", + "local_code": "GO0329" + }, + { + "id": "316793", + "ident": "BR-0050", + "type": "small_airport", + "name": "Portelândia Airstrip", + "latitude_deg": "-17.3494", + "longitude_deg": "-52.6632", + "elevation_ft": "2905", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Portelândia", + "scheduled_service": "no" + }, + { + "id": "316794", + "ident": "BR-0051", + "type": "small_airport", + "name": "Baliza Airport", + "latitude_deg": "-16.1997", + "longitude_deg": "-52.5261", + "elevation_ft": "1292", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Baliza", + "scheduled_service": "no" + }, + { + "id": "316795", + "ident": "BR-0052", + "type": "small_airport", + "name": "Bom Jardim de Goiás Airport", + "latitude_deg": "-16.2058", + "longitude_deg": "-52.1627", + "elevation_ft": "1378", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Bom Jardim de Goiás", + "scheduled_service": "no" + }, + { + "id": "316796", + "ident": "BR-0053", + "type": "small_airport", + "name": "Piranhas Airport", + "latitude_deg": "-16.4406", + "longitude_deg": "-51.7742", + "elevation_ft": "1278", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Piranhas", + "scheduled_service": "no" + }, + { + "id": "316797", + "ident": "BR-0054", + "type": "small_airport", + "name": "Caiapônia Airport", + "latitude_deg": "-16.9693", + "longitude_deg": "-51.8233", + "elevation_ft": "2488", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Caiapônia", + "scheduled_service": "no" + }, + { + "id": "317248", + "ident": "BR-0055", + "type": "small_airport", + "name": "Tesouro Airport", + "latitude_deg": "-16.0734", + "longitude_deg": "-53.5692", + "elevation_ft": "1487", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tesouro", + "scheduled_service": "no" + }, + { + "id": "317249", + "ident": "BR-0056", + "type": "small_airport", + "name": "Guiratinga Airport", + "latitude_deg": "-16.283479", + "longitude_deg": "-53.770679", + "elevation_ft": "1785", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Guiratinga", + "scheduled_service": "no" + }, + { + "id": "317252", + "ident": "BR-0057", + "type": "small_airport", + "name": "Guiratinga 2 Airport", + "latitude_deg": "-16.3482", + "longitude_deg": "-53.7786", + "elevation_ft": "1770", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Guiratinga", + "scheduled_service": "no", + "keywords": "Zaidem Airport" + }, + { + "id": "317253", + "ident": "BR-0058", + "type": "small_airport", + "name": "Torixoréu Northwest Airport", + "latitude_deg": "-16.1753", + "longitude_deg": "-52.5761", + "elevation_ft": "1325", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Torixoréu", + "scheduled_service": "no" + }, + { + "id": "317259", + "ident": "BR-0059", + "type": "small_airport", + "name": "Anicuns Airport", + "latitude_deg": "-16.4468", + "longitude_deg": "-49.9711", + "elevation_ft": "2450", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Anicuns", + "scheduled_service": "no" + }, + { + "id": "317295", + "ident": "BR-0060", + "type": "small_airport", + "name": "Arenópolis Airstrip", + "latitude_deg": "-16.3833", + "longitude_deg": "-51.5803", + "elevation_ft": "1453", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Arenópolis", + "scheduled_service": "no" + }, + { + "id": "317830", + "ident": "BR-0061", + "type": "small_airport", + "name": "Fazenda Água Fria Airfield", + "latitude_deg": "-7.0161", + "longitude_deg": "-49.366", + "elevation_ft": "570", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Xinguara", + "scheduled_service": "no", + "gps_code": "SDOX", + "local_code": "PA0034" + }, + { + "id": "318062", + "ident": "BR-0062", + "type": "small_airport", + "name": "Banaer Airport", + "latitude_deg": "-24.419166", + "longitude_deg": "-47.869166", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sete Barras", + "scheduled_service": "no", + "gps_code": "SDOS", + "local_code": "SP0132" + }, + { + "id": "318354", + "ident": "BR-0063", + "type": "small_airport", + "name": "Luiz Ribeiro Maia Airport", + "latitude_deg": "-5.635585", + "longitude_deg": "-63.185491", + "elevation_ft": "167", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Tapauá", + "scheduled_service": "no", + "gps_code": "SDLR", + "local_code": "AM0030" + }, + { + "id": "318356", + "ident": "BR-0064", + "type": "small_airport", + "name": "Santo Antônio do Içá Airport", + "latitude_deg": "-3.084476", + "longitude_deg": "-67.958457", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Santo Antônio do Içá", + "scheduled_service": "no" + }, + { + "id": "318357", + "ident": "BR-0065", + "type": "small_airport", + "name": "Anori Airport", + "latitude_deg": "-3.725643", + "longitude_deg": "-61.667054", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Anori", + "scheduled_service": "no", + "local_code": "AG5683" + }, + { + "id": "318358", + "ident": "BR-0066", + "type": "small_airport", + "name": "Fordlândia Airport", + "latitude_deg": "-3.791178", + "longitude_deg": "-55.470674", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Fordlândia", + "scheduled_service": "no" + }, + { + "id": "318359", + "ident": "BR-0067", + "type": "small_airport", + "name": "Linha-dura Airport", + "latitude_deg": "-3.515242", + "longitude_deg": "-53.486152", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Medicilândia", + "scheduled_service": "no" + }, + { + "id": "318360", + "ident": "BR-0068", + "type": "small_airport", + "name": "Medicilândia Airport", + "latitude_deg": "-3.400857", + "longitude_deg": "-52.95263", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Medicilândia", + "scheduled_service": "no" + }, + { + "id": "318361", + "ident": "BR-0069", + "type": "small_airport", + "name": "São Luiz Airport", + "latitude_deg": "1.01821", + "longitude_deg": "-60.026079", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "São Luiz", + "scheduled_service": "no" + }, + { + "id": "318362", + "ident": "BR-0070", + "type": "small_airport", + "name": "Presidente Figueiredo Airport", + "latitude_deg": "-1.989875", + "longitude_deg": "-60.148936", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Presidente Figueiredo", + "scheduled_service": "no" + }, + { + "id": "318363", + "ident": "BR-0071", + "type": "small_airport", + "name": "Itapiranga Airport", + "latitude_deg": "-2.736772", + "longitude_deg": "-58.026525", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Itapiranga", + "scheduled_service": "no" + }, + { + "id": "318364", + "ident": "BR-0072", + "type": "small_airport", + "name": "Faro Airport", + "latitude_deg": "-2.131061", + "longitude_deg": "-56.732522", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Faro", + "scheduled_service": "no" + }, + { + "id": "318365", + "ident": "BR-0073", + "type": "small_airport", + "name": "Curuai Airport", + "latitude_deg": "-2.289123", + "longitude_deg": "-55.477823", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Curuai", + "scheduled_service": "no" + }, + { + "id": "318366", + "ident": "BR-0074", + "type": "small_airport", + "name": "Alta Floresta D'Oeste Airport", + "latitude_deg": "-11.919358", + "longitude_deg": "-61.97612", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Alta Floresta D'Oeste", + "scheduled_service": "no" + }, + { + "id": "318367", + "ident": "BR-0075", + "type": "small_airport", + "name": "Rolim de Moura Airport", + "latitude_deg": "-11.655585", + "longitude_deg": "-61.775907", + "elevation_ft": "709", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Rolim de Moura", + "scheduled_service": "no", + "gps_code": "SWBS", + "local_code": "RO0028" + }, + { + "id": "318368", + "ident": "BR-0076", + "type": "small_airport", + "name": "São Miguel do Guaporé Airport", + "latitude_deg": "-11.703", + "longitude_deg": "-62.679631", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "São Miguel do Guaporé", + "scheduled_service": "no" + }, + { + "id": "318369", + "ident": "BR-0077", + "type": "small_airport", + "name": "Rondolândia Airport", + "latitude_deg": "-10.861378", + "longitude_deg": "-61.495263", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Rondolândia", + "scheduled_service": "no" + }, + { + "id": "318370", + "ident": "BR-0078", + "type": "small_airport", + "name": "Jaru Airport", + "latitude_deg": "-10.359504", + "longitude_deg": "-62.46073", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Jaru", + "scheduled_service": "no" + }, + { + "id": "318371", + "ident": "BR-0079", + "type": "small_airport", + "name": "Extrema Airport", + "latitude_deg": "-9.771308", + "longitude_deg": "-66.331287", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Extrema", + "scheduled_service": "no" + }, + { + "id": "318372", + "ident": "BR-0080", + "type": "small_airport", + "name": "Colorado do Oeste Airport", + "latitude_deg": "-13.113405", + "longitude_deg": "-60.524276", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Colorado do Oeste", + "scheduled_service": "no" + }, + { + "id": "318373", + "ident": "BR-0081", + "type": "small_airport", + "name": "Cerejeiras Airport", + "latitude_deg": "-13.183366", + "longitude_deg": "-60.839676", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Cerejeiras", + "scheduled_service": "no" + }, + { + "id": "318374", + "ident": "BR-0082", + "type": "small_airport", + "name": "Pimenteiras do Oeste Airport", + "latitude_deg": "-13.475905", + "longitude_deg": "-61.035152", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Pimenteiras do Oeste", + "scheduled_service": "no" + }, + { + "id": "318375", + "ident": "BR-0083", + "type": "small_airport", + "name": "Espigão D'Oeste Airport", + "latitude_deg": "-11.547936", + "longitude_deg": "-61.022681", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Espigão D'Oeste", + "scheduled_service": "no" + }, + { + "id": "318376", + "ident": "BR-0084", + "type": "small_airport", + "name": "Pixaim Airport", + "latitude_deg": "-16.741401", + "longitude_deg": "-56.836628", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pixaim", + "scheduled_service": "no" + }, + { + "id": "318432", + "ident": "BR-0085", + "type": "small_airport", + "name": "Nova Mamoré Airport", + "latitude_deg": "-10.399912", + "longitude_deg": "-65.347213", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Nova Mamoré", + "scheduled_service": "no" + }, + { + "id": "318433", + "ident": "BR-0086", + "type": "small_airport", + "name": "Buritis Airport", + "latitude_deg": "-10.206737", + "longitude_deg": "-63.854913", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Buritis", + "scheduled_service": "no" + }, + { + "id": "318434", + "ident": "BR-0087", + "type": "small_airport", + "name": "Guaraí Airport", + "latitude_deg": "-8.871896", + "longitude_deg": "-48.501531", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Guaraí", + "scheduled_service": "no" + }, + { + "id": "318435", + "ident": "BR-0088", + "type": "small_airport", + "name": "Presidente Kennedy Airport", + "latitude_deg": "-8.544268", + "longitude_deg": "-48.508229", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Presidente Kennedy", + "scheduled_service": "no" + }, + { + "id": "318436", + "ident": "BR-0089", + "type": "small_airport", + "name": "Brasilândia do Tocantins Airport", + "latitude_deg": "-8.38962", + "longitude_deg": "-48.490579", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Brasilândia do Tocantins", + "scheduled_service": "no" + }, + { + "id": "318437", + "ident": "BR-0090", + "type": "small_airport", + "name": "Colinas do Tocantins Airport", + "latitude_deg": "-8.143634", + "longitude_deg": "-48.478337", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Colinas do Tocantins", + "scheduled_service": "no" + }, + { + "id": "318438", + "ident": "BR-0091", + "type": "small_airport", + "name": "Nova Olinda Airport", + "latitude_deg": "-7.623877", + "longitude_deg": "-48.411781", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Nova Olinda", + "scheduled_service": "no" + }, + { + "id": "318439", + "ident": "BR-0092", + "type": "heliport", + "name": "Porto Franco Heliport", + "latitude_deg": "-6.446777", + "longitude_deg": "-47.404796", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Porto Franco", + "scheduled_service": "no" + }, + { + "id": "318440", + "ident": "BR-0093", + "type": "small_airport", + "name": "Tocantinópolis Airport", + "latitude_deg": "-6.333432", + "longitude_deg": "-47.471938", + "elevation_ft": "791", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Tocantinópolis", + "scheduled_service": "no", + "gps_code": "SDC9", + "local_code": "TO0095" + }, + { + "id": "318442", + "ident": "BR-0094", + "type": "heliport", + "name": "Condomínio Guaporé II Heliport", + "latitude_deg": "-21.226647", + "longitude_deg": "-47.782073", + "elevation_ft": "2082", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Preto", + "scheduled_service": "no", + "gps_code": "SDAL", + "local_code": "SP0289" + }, + { + "id": "318443", + "ident": "BR-0095", + "type": "small_airport", + "name": "Fazenda Curitiba Airport", + "latitude_deg": "-13.7029", + "longitude_deg": "-45.6121", + "elevation_ft": "2682", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Correntina", + "scheduled_service": "no", + "keywords": "SDAQ" + }, + { + "id": "318447", + "ident": "BR-0096", + "type": "small_airport", + "name": "Fazenda Agrovera Airport", + "latitude_deg": "-11.872098", + "longitude_deg": "-56.277013", + "elevation_ft": "1178", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto dos Gaúchos", + "scheduled_service": "no", + "gps_code": "SDAR", + "local_code": "MT0030" + }, + { + "id": "318449", + "ident": "BR-0097", + "type": "small_airport", + "name": "Fazenda Santa Lucia Airport", + "latitude_deg": "-8.922531", + "longitude_deg": "-50.348346", + "elevation_ft": "712", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santa Maria das Barreiras", + "scheduled_service": "no", + "gps_code": "SDAY", + "local_code": "PA0032" + }, + { + "id": "318454", + "ident": "BR-0098", + "type": "small_airport", + "name": "Brasnorte Airport", + "latitude_deg": "-12.099274", + "longitude_deg": "-58.001527", + "elevation_ft": "1060", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SDNB", + "local_code": "MT0044" + }, + { + "id": "318455", + "ident": "BR-0099", + "type": "small_airport", + "name": "Brianorte Airport", + "latitude_deg": "-12.279135", + "longitude_deg": "-57.342796", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brianorte", + "scheduled_service": "no" + }, + { + "id": "318456", + "ident": "BR-0100", + "type": "small_airport", + "name": "Montes Altos Airport", + "latitude_deg": "-5.838959", + "longitude_deg": "-47.058035", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Montes Altos", + "scheduled_service": "no" + }, + { + "id": "318457", + "ident": "BR-0101", + "type": "small_airport", + "name": "Amarante do Maranhão Airstrip", + "latitude_deg": "-5.5829", + "longitude_deg": "-46.741288", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Amarante do Maranhão", + "scheduled_service": "no" + }, + { + "id": "318458", + "ident": "BR-0102", + "type": "small_airport", + "name": "Vitorino Freire Airport", + "latitude_deg": "-4.251292", + "longitude_deg": "-45.233199", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Vitorino Freire", + "scheduled_service": "no" + }, + { + "id": "318459", + "ident": "BR-0103", + "type": "small_airport", + "name": "Zé Doca Airport", + "latitude_deg": "-3.263659", + "longitude_deg": "-45.66214", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Zé Doca", + "scheduled_service": "no" + }, + { + "id": "318460", + "ident": "BR-0104", + "type": "small_airport", + "name": "Vargem Grande Airstrip", + "latitude_deg": "-3.53481", + "longitude_deg": "-43.9239", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Vargem Grande", + "scheduled_service": "no" + }, + { + "id": "318461", + "ident": "BR-0105", + "type": "small_airport", + "name": "Chapadinha Airport", + "latitude_deg": "-3.748136", + "longitude_deg": "-43.31068", + "elevation_ft": "354", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Chapadinha", + "scheduled_service": "no", + "local_code": "MA0086" + }, + { + "id": "318462", + "ident": "BR-0106", + "type": "small_airport", + "name": "Esperantina Airport", + "latitude_deg": "-3.896953", + "longitude_deg": "-42.260735", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Esperantina", + "scheduled_service": "no" + }, + { + "id": "318463", + "ident": "BR-0107", + "type": "small_airport", + "name": "Santa Quitéria do Maranhão Airport", + "latitude_deg": "-3.498477", + "longitude_deg": "-42.615958", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Santa Quitéria do Maranhão", + "scheduled_service": "no" + }, + { + "id": "318464", + "ident": "BR-0108", + "type": "small_airport", + "name": "Piripiri Airport", + "latitude_deg": "-4.335206", + "longitude_deg": "-41.768978", + "elevation_ft": "561", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Piripiri", + "scheduled_service": "no", + "gps_code": "SWAY", + "local_code": "PI0068" + }, + { + "id": "318465", + "ident": "BR-0109", + "type": "closed", + "name": "Santa Quitéria Airport", + "latitude_deg": "-4.332152", + "longitude_deg": "-40.142722", + "elevation_ft": "657", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Santa Quitéria", + "scheduled_service": "no" + }, + { + "id": "318496", + "ident": "BR-0110", + "type": "small_airport", + "name": "Taiobeiras Municipal Airport", + "latitude_deg": "-15.77619", + "longitude_deg": "-42.193654", + "elevation_ft": "2631", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Taiobeiras", + "scheduled_service": "no", + "gps_code": "SITA", + "local_code": "MG0109" + }, + { + "id": "318548", + "ident": "BR-0111", + "type": "small_airport", + "name": "Castanheira Airport", + "latitude_deg": "-11.135194", + "longitude_deg": "-58.599106", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Castanheira", + "scheduled_service": "no" + }, + { + "id": "318549", + "ident": "BR-0112", + "type": "small_airport", + "name": "Colniza Airport", + "latitude_deg": "-9.446215", + "longitude_deg": "-59.199477", + "elevation_ft": "525", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Colniza", + "scheduled_service": "no", + "gps_code": "SIXZ", + "local_code": "MT0152" + }, + { + "id": "318550", + "ident": "BR-0113", + "type": "small_airport", + "name": "Machadinho d'Oeste Airport", + "latitude_deg": "-9.40307", + "longitude_deg": "-62.006018", + "elevation_ft": "427", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Machadinho d'Oeste", + "scheduled_service": "no", + "gps_code": "SI7E", + "local_code": "RO0061" + }, + { + "id": "318551", + "ident": "BR-0114", + "type": "closed", + "name": "Cunatama Airport", + "latitude_deg": "-6.529527", + "longitude_deg": "-64.383895", + "elevation_ft": "184", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Cunatama", + "scheduled_service": "no", + "gps_code": "SDKH", + "local_code": "AM0029" + }, + { + "id": "319168", + "ident": "BR-0115", + "type": "small_airport", + "name": "Lagoa Nova Airport", + "latitude_deg": "-6.038857", + "longitude_deg": "-36.454737", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Lagoa Nova", + "scheduled_service": "no" + }, + { + "id": "319169", + "ident": "BR-0116", + "type": "small_airport", + "name": "Santa Cruz Airport", + "latitude_deg": "-6.276513", + "longitude_deg": "-36.034278", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Santa Cruz", + "scheduled_service": "no" + }, + { + "id": "319709", + "ident": "BR-0117", + "type": "small_airport", + "name": "Fazenda São Paulo dos Palmares Airport", + "latitude_deg": "-23.270871", + "longitude_deg": "-49.546115", + "elevation_ft": "2814", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Timburi", + "scheduled_service": "no", + "gps_code": "SDEB", + "local_code": "SDEB" + }, + { + "id": "321007", + "ident": "BR-0118", + "type": "small_airport", + "name": "Vila Operária Airport", + "latitude_deg": "-15.82961", + "longitude_deg": "-54.933281", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Dom Aquino", + "scheduled_service": "no" + }, + { + "id": "321008", + "ident": "BR-0119", + "type": "small_airport", + "name": "Ponte Branca Airport", + "latitude_deg": "-16.754234", + "longitude_deg": "-52.84266", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Ponte Branca", + "scheduled_service": "no" + }, + { + "id": "321009", + "ident": "BR-0120", + "type": "small_airport", + "name": "Ribeirãozinho Airport", + "latitude_deg": "-16.492659", + "longitude_deg": "-52.700786", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Ribeirãozinho", + "scheduled_service": "no" + }, + { + "id": "321010", + "ident": "BR-0121", + "type": "small_airport", + "name": "Bom Despacho Airport", + "latitude_deg": "-19.687863", + "longitude_deg": "-45.269677", + "elevation_ft": "2411", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Bom Despacho", + "scheduled_service": "no", + "gps_code": "SNGQ", + "local_code": "MG0148", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Bom_Despacho" + }, + { + "id": "321011", + "ident": "BR-0122", + "type": "small_airport", + "name": "Vacaria Novo Airport", + "latitude_deg": "-28.43248", + "longitude_deg": "-51.023322", + "elevation_ft": "2953", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Vacaria", + "scheduled_service": "no", + "gps_code": "SNEE", + "local_code": "SNEE", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Vacaria_(novo)" + }, + { + "id": "35748", + "ident": "BR-0123", + "type": "closed", + "name": "Fazenda Barra do Traitu Airport", + "latitude_deg": "-21.246944", + "longitude_deg": "-50.490276", + "elevation_ft": "1345", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araçatuba", + "scheduled_service": "no", + "keywords": "SDTT" + }, + { + "id": "321019", + "ident": "BR-0124", + "type": "small_airport", + "name": "Boa Vista Airport", + "latitude_deg": "-18.757635", + "longitude_deg": "-46.97078", + "elevation_ft": "3845", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Patrocínio", + "scheduled_service": "no", + "gps_code": "SDBJ", + "local_code": "MG0079" + }, + { + "id": "321021", + "ident": "BR-0125", + "type": "small_airport", + "name": "Francisco Lazaro da Silveira Airport", + "latitude_deg": "-18.480246", + "longitude_deg": "-47.223786", + "elevation_ft": "3209", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Coromandel", + "scheduled_service": "no", + "gps_code": "SIWH", + "local_code": "MG0115" + }, + { + "id": "321443", + "ident": "BR-0126", + "type": "small_airport", + "name": "San Antonio Airport", + "latitude_deg": "-16.547606", + "longitude_deg": "-50.418487", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "São Luís de Montes Belos", + "scheduled_service": "no" + }, + { + "id": "321444", + "ident": "BR-0127", + "type": "small_airport", + "name": "Ivolândia Airport", + "latitude_deg": "-16.602639", + "longitude_deg": "-50.828542", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Ivolândia", + "scheduled_service": "no" + }, + { + "id": "321453", + "ident": "BR-0128", + "type": "heliport", + "name": "Haras São Pedro do Alto Heliport", + "latitude_deg": "-23.272781", + "longitude_deg": "-47.556164", + "elevation_ft": "2057", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Porto Feliz", + "scheduled_service": "no", + "gps_code": "SDBT", + "local_code": "SP0301" + }, + { + "id": "321454", + "ident": "BR-0129", + "type": "heliport", + "name": "Zimba D. Pedro I Heliport", + "latitude_deg": "-23.033789", + "longitude_deg": "-46.733592", + "elevation_ft": "2632", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itatiba", + "scheduled_service": "no", + "gps_code": "SDZM", + "local_code": "SDZM" + }, + { + "id": "321456", + "ident": "BR-0130", + "type": "heliport", + "name": "ThomasiCamargo Heliport", + "latitude_deg": "-21.7158", + "longitude_deg": "-41.4817", + "elevation_ft": "2465", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santa Rita do Passa Quatro", + "scheduled_service": "no", + "gps_code": "SDCC", + "local_code": "SDCC" + }, + { + "id": "321777", + "ident": "BR-0131", + "type": "small_airport", + "name": "Fazenda Brauna Airport", + "latitude_deg": "-12.549442", + "longitude_deg": "-46.886701", + "elevation_ft": "1309", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Arraias", + "scheduled_service": "no", + "gps_code": "SDBZ", + "local_code": "TO0011" + }, + { + "id": "322476", + "ident": "BR-0132", + "type": "small_airport", + "name": "Tunui Airport", + "latitude_deg": "1.387973", + "longitude_deg": "-68.158747", + "elevation_ft": "340", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Tunui", + "scheduled_service": "no" + }, + { + "id": "322527", + "ident": "BR-0133", + "type": "small_airport", + "name": "Itaberaí Go Airport", + "latitude_deg": "-16.023533", + "longitude_deg": "-49.76983", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Itaberaí", + "scheduled_service": "no" + }, + { + "id": "322528", + "ident": "BR-0134", + "type": "small_airport", + "name": "Sanclerlândia Airport", + "latitude_deg": "-16.208928", + "longitude_deg": "-50.336632", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Sanclerlândia", + "scheduled_service": "no" + }, + { + "id": "322529", + "ident": "BR-0135", + "type": "small_airport", + "name": "Goiás Airport", + "latitude_deg": "-15.920225", + "longitude_deg": "-50.193045", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiás", + "scheduled_service": "no" + }, + { + "id": "322530", + "ident": "BR-0136", + "type": "small_airport", + "name": "Itapuranga Airport", + "latitude_deg": "-15.545172", + "longitude_deg": "-49.944283", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Itapuranga", + "scheduled_service": "no" + }, + { + "id": "322531", + "ident": "BR-0137", + "type": "small_airport", + "name": "Uruana Airport", + "latitude_deg": "-15.520599", + "longitude_deg": "-49.690334", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Uruana", + "scheduled_service": "no" + }, + { + "id": "322532", + "ident": "BR-0138", + "type": "small_airport", + "name": "Morro Agudo de Goiás Airport", + "latitude_deg": "-15.332789", + "longitude_deg": "-50.046968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Morro Agudo de Goiás", + "scheduled_service": "no" + }, + { + "id": "322534", + "ident": "BR-0139", + "type": "small_airport", + "name": "Asas de Balsa Nova Airport", + "latitude_deg": "-25.549401", + "longitude_deg": "-49.643056", + "elevation_ft": "2907", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Balsa Nova", + "scheduled_service": "no", + "gps_code": "SJPR", + "local_code": "SJPR", + "home_link": "http://aeroclubeasas.com.br/aero-asas/" + }, + { + "id": "322537", + "ident": "BR-0140", + "type": "small_airport", + "name": "Mara Rosa Airport", + "latitude_deg": "-14.036961", + "longitude_deg": "-49.164362", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Mara Rosa", + "scheduled_service": "no" + }, + { + "id": "322538", + "ident": "BR-0141", + "type": "small_airport", + "name": "Amaralina Airport", + "latitude_deg": "-13.941568", + "longitude_deg": "-49.277504", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Amaralina", + "scheduled_service": "no" + }, + { + "id": "322539", + "ident": "BR-0142", + "type": "small_airport", + "name": "Mutunópolis Airport", + "latitude_deg": "-13.745957", + "longitude_deg": "-49.284566", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Mutunópolis", + "scheduled_service": "no" + }, + { + "id": "322540", + "ident": "BR-0143", + "type": "small_airport", + "name": "Santa Tereza de Goiás Airport", + "latitude_deg": "-13.733495", + "longitude_deg": "-49.039767", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Santa Tereza de Goiás", + "scheduled_service": "no" + }, + { + "id": "322541", + "ident": "BR-0144", + "type": "small_airport", + "name": "Talismã Airport", + "latitude_deg": "-12.804638", + "longitude_deg": "-49.091759", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Talismã", + "scheduled_service": "no" + }, + { + "id": "322543", + "ident": "BR-0145", + "type": "small_airport", + "name": "Araguaçu Airport", + "latitude_deg": "-12.948367", + "longitude_deg": "-49.821905", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Araguaçu", + "scheduled_service": "no" + }, + { + "id": "322544", + "ident": "BR-0146", + "type": "small_airport", + "name": "Figueirópolis Airport", + "latitude_deg": "-12.149681", + "longitude_deg": "-49.184142", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Figueirópolis", + "scheduled_service": "no" + }, + { + "id": "322545", + "ident": "BR-0147", + "type": "small_airport", + "name": "Alvorada Airport", + "latitude_deg": "-12.499175", + "longitude_deg": "-49.108361", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Alvorada", + "scheduled_service": "no" + }, + { + "id": "322546", + "ident": "BR-0148", + "type": "small_airport", + "name": "São Domingos Airport", + "latitude_deg": "-12.493611", + "longitude_deg": "-49.149912", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Alvorada", + "scheduled_service": "no" + }, + { + "id": "322547", + "ident": "BR-0149", + "type": "small_airport", + "name": "Formoso do Araguaia Airport", + "latitude_deg": "-11.81529", + "longitude_deg": "-49.570035", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Formoso do Araguaia", + "scheduled_service": "no" + }, + { + "id": "322548", + "ident": "BR-0150", + "type": "small_airport", + "name": "Formoso do Araguaia North Airport", + "latitude_deg": "-11.782479", + "longitude_deg": "-49.571696", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Formoso do Araguaia", + "scheduled_service": "no" + }, + { + "id": "322549", + "ident": "BR-0151", + "type": "small_airport", + "name": "Aliança do Tocantins Airport", + "latitude_deg": "-11.295845", + "longitude_deg": "-48.926706", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Aliança do Tocantins", + "scheduled_service": "no" + }, + { + "id": "322550", + "ident": "BR-0152", + "type": "small_airport", + "name": "Fátima Airport", + "latitude_deg": "-10.755197", + "longitude_deg": "-48.915027", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Fátima", + "scheduled_service": "no" + }, + { + "id": "322551", + "ident": "BR-0153", + "type": "small_airport", + "name": "Crixás Airport", + "latitude_deg": "-14.538299", + "longitude_deg": "-49.934767", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Crixás", + "scheduled_service": "no" + }, + { + "id": "322572", + "ident": "BR-0154", + "type": "small_airport", + "name": "Fazenda Rio Crixás Airport", + "latitude_deg": "-13.738055", + "longitude_deg": "-50.014167", + "elevation_ft": "906", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Fazenda Rio Crixás", + "scheduled_service": "no", + "gps_code": "SDFI", + "local_code": "SDFI" + }, + { + "id": "322591", + "ident": "BR-0155", + "type": "small_airport", + "name": "Autazes Airport", + "latitude_deg": "-3.598333", + "longitude_deg": "-59.126286", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Autazes", + "scheduled_service": "no" + }, + { + "id": "322592", + "ident": "BR-0156", + "type": "small_airport", + "name": "Marreca Airport", + "latitude_deg": "-10.183659", + "longitude_deg": "-52.098914", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Marreca", + "scheduled_service": "no" + }, + { + "id": "322594", + "ident": "BR-0157", + "type": "small_airport", + "name": "Paranorte Airport", + "latitude_deg": "-10.387302", + "longitude_deg": "-57.717399", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Paranorte", + "scheduled_service": "no" + }, + { + "id": "322596", + "ident": "BR-0158", + "type": "small_airport", + "name": "Fontanillas Airport", + "latitude_deg": "-11.324983", + "longitude_deg": "-58.351633", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Fotanillas", + "scheduled_service": "no" + }, + { + "id": "322599", + "ident": "BR-0159", + "type": "small_airport", + "name": "Teles Pires Lodge Airport", + "latitude_deg": "-8.863569", + "longitude_deg": "-57.420427", + "elevation_ft": "489", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Apiacás", + "scheduled_service": "no", + "gps_code": "SWRP", + "local_code": "SWRP", + "keywords": "Pousada Santa Rosa" + }, + { + "id": "322601", + "ident": "BR-0160", + "type": "small_airport", + "name": "Genil Motta Airport", + "latitude_deg": "-17.181368", + "longitude_deg": "-54.151611", + "elevation_ft": "1854", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Itiquira", + "scheduled_service": "no", + "gps_code": "SI3B", + "local_code": "MT0549" + }, + { + "id": "322604", + "ident": "BR-0161", + "type": "small_airport", + "name": "Rio Verde de Mato Grosso Airport", + "latitude_deg": "-18.908559", + "longitude_deg": "-54.83163", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Verde de Mato Grosso", + "scheduled_service": "no" + }, + { + "id": "322607", + "ident": "BR-0162", + "type": "small_airport", + "name": "Piraí do Sul Airport", + "latitude_deg": "-24.543221", + "longitude_deg": "-49.917876", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Piraí do Sul", + "scheduled_service": "no" + }, + { + "id": "322608", + "ident": "BR-0163", + "type": "small_airport", + "name": "Chapada Gaúcha Airport", + "latitude_deg": "-15.30438", + "longitude_deg": "-45.631698", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Chapada Gaúcha", + "scheduled_service": "no" + }, + { + "id": "322609", + "ident": "BR-0164", + "type": "small_airport", + "name": "Serra das Araras Airfield", + "latitude_deg": "-15.563234", + "longitude_deg": "-45.414942", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Serra das Araras", + "scheduled_service": "no" + }, + { + "id": "322610", + "ident": "BR-0165", + "type": "small_airport", + "name": "Pandeiros Airfield", + "latitude_deg": "-15.462997", + "longitude_deg": "-44.847414", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Pandeiros", + "scheduled_service": "no" + }, + { + "id": "322611", + "ident": "BR-0166", + "type": "small_airport", + "name": "São Francisco Airport", + "latitude_deg": "-15.972953", + "longitude_deg": "-44.817481", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "São Francisco", + "scheduled_service": "no" + }, + { + "id": "322612", + "ident": "BR-0167", + "type": "small_airport", + "name": "Brasília de Minas Airstrip", + "latitude_deg": "-16.221298", + "longitude_deg": "-44.350793", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Brasília de Minas", + "scheduled_service": "no" + }, + { + "id": "322613", + "ident": "BR-0168", + "type": "small_airport", + "name": "Ermidinha Airport", + "latitude_deg": "-16.433654", + "longitude_deg": "-44.056839", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Ermidinha", + "scheduled_service": "no" + }, + { + "id": "322614", + "ident": "BR-0169", + "type": "small_airport", + "name": "Capitão Enéas Airfield", + "latitude_deg": "-16.31566", + "longitude_deg": "-43.710081", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Capitão Enéas", + "scheduled_service": "no" + }, + { + "id": "322615", + "ident": "BR-0170", + "type": "small_airport", + "name": "Coração de Jesus Airport", + "latitude_deg": "-16.659434", + "longitude_deg": "-44.355019", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Coração de Jesus", + "scheduled_service": "no" + }, + { + "id": "322616", + "ident": "BR-0171", + "type": "small_airport", + "name": "Paredão de Minas Airfield", + "latitude_deg": "-17.124599", + "longitude_deg": "-45.604362", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Paredão de Minas", + "scheduled_service": "no" + }, + { + "id": "322617", + "ident": "BR-0172", + "type": "small_airport", + "name": "Fazenda Gleba da Barra Airport", + "latitude_deg": "-17.014176", + "longitude_deg": "-46.073434", + "elevation_ft": "1700", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Brasilândia de Minas", + "scheduled_service": "no", + "gps_code": "SDCK", + "local_code": "MG0080" + }, + { + "id": "322618", + "ident": "BR-0173", + "type": "small_airport", + "name": "Canabrava Airstrip", + "latitude_deg": "-17.085435", + "longitude_deg": "-45.881673", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Canabrava", + "scheduled_service": "no", + "home_link": "http://sistemas.meioambiente.mg.gov.br/licenciamento/uploads/p2e4YpmmvrZCGUC3L12LByX9Y1aZ-UJZ.pdf" + }, + { + "id": "322627", + "ident": "BR-0174", + "type": "heliport", + "name": "Ama Heliport", + "latitude_deg": "-23.433334", + "longitude_deg": "-46.308611", + "elevation_ft": "2687", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Arujá", + "scheduled_service": "no", + "gps_code": "SNHL", + "local_code": "SNHL" + }, + { + "id": "322628", + "ident": "BR-0175", + "type": "small_airport", + "name": "Fazenda Boa Sorte Airport", + "latitude_deg": "-11.304256", + "longitude_deg": "-48.679433", + "elevation_ft": "955", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Aliança do Tocantins", + "scheduled_service": "no", + "gps_code": "SDCE", + "local_code": "TO0012" + }, + { + "id": "322629", + "ident": "BR-0176", + "type": "small_airport", + "name": "Fazenda Rosa dos Ventos Airport", + "latitude_deg": "-18.311111", + "longitude_deg": "-49.838194", + "elevation_ft": "1814", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Itumbiara", + "scheduled_service": "no", + "gps_code": "SDCH", + "local_code": "GO0037" + }, + { + "id": "322697", + "ident": "BR-0177", + "type": "small_airport", + "name": "Fazenda Nictheroy Airport", + "latitude_deg": "-10.2675", + "longitude_deg": "-67.698", + "elevation_ft": "699", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Rio Branco", + "scheduled_service": "no", + "gps_code": "SWNC", + "local_code": "AC0012" + }, + { + "id": "322748", + "ident": "BR-0178", + "type": "small_airport", + "name": "Francisco Ramalho Airport", + "latitude_deg": "-4.58443", + "longitude_deg": "-44.546242", + "elevation_ft": "132", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Pedreiras", + "scheduled_service": "no", + "gps_code": "SWRF", + "local_code": "SWRF" + }, + { + "id": "322749", + "ident": "BR-0179", + "type": "small_airport", + "name": "Caxias Airport", + "latitude_deg": "-4.83672", + "longitude_deg": "-43.335108", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Caxias", + "scheduled_service": "no" + }, + { + "id": "322754", + "ident": "BR-0180", + "type": "heliport", + "name": "Itanhanga Golf Club Heliport", + "latitude_deg": "-22.998333", + "longitude_deg": "-43.309444", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SNVW", + "local_code": "RJ0139" + }, + { + "id": "322755", + "ident": "BR-0181", + "type": "small_airport", + "name": "Fazenda Santarém Airport", + "latitude_deg": "-20.040262", + "longitude_deg": "-54.151224", + "elevation_ft": "1900", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bandeirantes", + "scheduled_service": "no", + "gps_code": "SNWL", + "local_code": "SNWL" + }, + { + "id": "322756", + "ident": "BR-0182", + "type": "small_airport", + "name": "Fazenda Roseira Airport", + "latitude_deg": "-7.23111", + "longitude_deg": "-45.881944", + "elevation_ft": "1156", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "São Raimundo das Mangabeiras", + "scheduled_service": "no", + "gps_code": "SWWR", + "local_code": "SWWR" + }, + { + "id": "322965", + "ident": "BR-0183", + "type": "small_airport", + "name": "Aero Agricola Rio Claro Airport", + "latitude_deg": "-13.434683", + "longitude_deg": "-56.730358", + "elevation_ft": "1165", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São José do Rio Claro", + "scheduled_service": "no", + "gps_code": "SJRT", + "local_code": "MT0215" + }, + { + "id": "322974", + "ident": "BR-0184", + "type": "small_airport", + "name": "Arenápolis Airstrip", + "latitude_deg": "-14.498655", + "longitude_deg": "-56.851413", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Arenápolis", + "scheduled_service": "no" + }, + { + "id": "322979", + "ident": "BR-0185", + "type": "small_airport", + "name": "Altamira Airport", + "latitude_deg": "-8.642135", + "longitude_deg": "-55.041072", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Cachoeira Da Serra", + "scheduled_service": "no" + }, + { + "id": "323033", + "ident": "BR-0186", + "type": "heliport", + "name": "Colombo III Heliport", + "latitude_deg": "-20.040668", + "longitude_deg": "-50.67882", + "elevation_ft": "1334", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Santa Albertina", + "scheduled_service": "no", + "gps_code": "SNEP", + "local_code": "SNEP" + }, + { + "id": "323034", + "ident": "BR-0187", + "type": "heliport", + "name": "Hospital Geral de Palmares Heliport", + "latitude_deg": "-8.685695", + "longitude_deg": "-35.57579", + "elevation_ft": "540", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Palmares", + "scheduled_service": "no", + "gps_code": "SDDL", + "local_code": "SDDL" + }, + { + "id": "323035", + "ident": "BR-0188", + "type": "heliport", + "name": "Duets Helipad", + "latitude_deg": "-3.741327", + "longitude_deg": "-38.487328", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SDDU", + "local_code": "CE0027" + }, + { + "id": "323036", + "ident": "BR-0189", + "type": "heliport", + "name": "Marina Verolme Heliport", + "latitude_deg": "-22.998675", + "longitude_deg": "-44.248978", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra dos Reis", + "scheduled_service": "no", + "gps_code": "SDDW", + "local_code": "SDDW" + }, + { + "id": "323037", + "ident": "BR-0190", + "type": "heliport", + "name": "Iguatemi Esplanada Heliport", + "latitude_deg": "-23.536126", + "longitude_deg": "-47.464542", + "elevation_ft": "2359", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sorocaba", + "scheduled_service": "no", + "gps_code": "SDEE", + "local_code": "SDEE" + }, + { + "id": "323150", + "ident": "BR-0191", + "type": "small_airport", + "name": "Sérgio Bonifácio Airport", + "latitude_deg": "-24.263589", + "longitude_deg": "-51.639318", + "elevation_ft": "2277", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Ivaiporã", + "scheduled_service": "no", + "gps_code": "SJKK", + "local_code": "PR0057" + }, + { + "id": "323151", + "ident": "BR-0192", + "type": "small_airport", + "name": "Tamarana Metais Airport", + "latitude_deg": "-23.717042", + "longitude_deg": "-51.116039", + "elevation_ft": "2595", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Tamarana", + "scheduled_service": "no", + "keywords": "SNET" + }, + { + "id": "323191", + "ident": "BR-0193", + "type": "small_airport", + "name": "Cachoeira Porteira Airport", + "latitude_deg": "-1.066046", + "longitude_deg": "-57.052612", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Cachoeira Porteira", + "scheduled_service": "no" + }, + { + "id": "323374", + "ident": "BR-0194", + "type": "small_airport", + "name": "Ponta de Pedras Airstrip", + "latitude_deg": "-1.397869", + "longitude_deg": "-48.856931", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Ponta de Pedras", + "scheduled_service": "no" + }, + { + "id": "323375", + "ident": "BR-0195", + "type": "small_airport", + "name": "Muaná Airstrip", + "latitude_deg": "-1.536895", + "longitude_deg": "-49.232689", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Muaná", + "scheduled_service": "no" + }, + { + "id": "323376", + "ident": "BR-0196", + "type": "small_airport", + "name": "Curralinho Airstrip", + "latitude_deg": "-1.797103", + "longitude_deg": "-49.801873", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Curralinho", + "scheduled_service": "no" + }, + { + "id": "323380", + "ident": "BR-0197", + "type": "small_airport", + "name": "Fazenda Chapadão Alegre Airport", + "latitude_deg": "-13.432222", + "longitude_deg": "-45.301111", + "elevation_ft": "2530", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Correntina", + "scheduled_service": "no", + "gps_code": "SSDH", + "local_code": "SSDH" + }, + { + "id": "323463", + "ident": "BR-0198", + "type": "small_airport", + "name": "Fazenda Água Boa Airport", + "latitude_deg": "-11.176732", + "longitude_deg": "-57.669051", + "elevation_ft": "817", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juara", + "scheduled_service": "no", + "gps_code": "SIKX", + "local_code": "MT0103", + "keywords": "Fazenda Santa Mônica" + }, + { + "id": "323590", + "ident": "BR-0199", + "type": "small_airport", + "name": "Fazenda Estivado Airport", + "latitude_deg": "-14.422748", + "longitude_deg": "-56.071279", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "gps_code": "SWEZ" + }, + { + "id": "323661", + "ident": "BR-0200", + "type": "small_airport", + "name": "Santa Terezinha de Goiás Airstrip", + "latitude_deg": "-14.453288", + "longitude_deg": "-49.67461", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Santa Terezinha de Goiás", + "scheduled_service": "no" + }, + { + "id": "323662", + "ident": "BR-0201", + "type": "small_airport", + "name": "Alto Horizonte Airport", + "latitude_deg": "-14.196032", + "longitude_deg": "-49.362951", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Alto Horizonte", + "scheduled_service": "no" + }, + { + "id": "323673", + "ident": "BR-0202", + "type": "small_airport", + "name": "Taipas do Tocantins Airstrip", + "latitude_deg": "-12.178581", + "longitude_deg": "-46.970934", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Taipas do Tocantins", + "scheduled_service": "no" + }, + { + "id": "323674", + "ident": "BR-0203", + "type": "small_airport", + "name": "Conceição do Tocantins Airstrip", + "latitude_deg": "-12.228285", + "longitude_deg": "-47.277564", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Conceição do Tocantins", + "scheduled_service": "no" + }, + { + "id": "323675", + "ident": "BR-0204", + "type": "small_airport", + "name": "Conceição do Tocantins West Airstrip", + "latitude_deg": "-12.231261", + "longitude_deg": "-47.32664", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Conceição do Tocantins", + "scheduled_service": "no" + }, + { + "id": "323676", + "ident": "BR-0205", + "type": "small_airport", + "name": "Bonfim Airstrip", + "latitude_deg": "-11.826265", + "longitude_deg": "-47.626364", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Bonfim", + "scheduled_service": "no" + }, + { + "id": "323677", + "ident": "BR-0206", + "type": "small_airport", + "name": "Natividade Airstrip", + "latitude_deg": "-11.706552", + "longitude_deg": "-47.750419", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Natividade", + "scheduled_service": "no" + }, + { + "id": "323678", + "ident": "BR-0207", + "type": "small_airport", + "name": "Mateiros Airport", + "latitude_deg": "-10.562528", + "longitude_deg": "-46.429861", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Mateiros", + "scheduled_service": "no" + }, + { + "id": "323679", + "ident": "BR-0208", + "type": "small_airport", + "name": "São Félix do Tocantins Airstrip", + "latitude_deg": "-10.161665", + "longitude_deg": "-46.667359", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "São Félix do Tocantins", + "scheduled_service": "no" + }, + { + "id": "323680", + "ident": "BR-0209", + "type": "small_airport", + "name": "Galhão Airstrip", + "latitude_deg": "-10.604769", + "longitude_deg": "-46.249508", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Galhão", + "scheduled_service": "no" + }, + { + "id": "323681", + "ident": "BR-0210", + "type": "small_airport", + "name": "Dois Irmãos do Tocantins Airstrip", + "latitude_deg": "-9.25308", + "longitude_deg": "-49.055964", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Dois Irmãos do Tocantins", + "scheduled_service": "no" + }, + { + "id": "323682", + "ident": "BR-0211", + "type": "small_airport", + "name": "Caseara Airstrip", + "latitude_deg": "-9.302872", + "longitude_deg": "-49.946237", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Caseara", + "scheduled_service": "no" + }, + { + "id": "323691", + "ident": "BR-0212", + "type": "small_airport", + "name": "Pequizeiro Airstrip", + "latitude_deg": "-8.586875", + "longitude_deg": "-48.946678", + "elevation_ft": "876", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Pequizeiro", + "scheduled_service": "no" + }, + { + "id": "323692", + "ident": "BR-0213", + "type": "small_airport", + "name": "Colméia Airstrip", + "latitude_deg": "-8.747707", + "longitude_deg": "-48.764792", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Colméia", + "scheduled_service": "no" + }, + { + "id": "323693", + "ident": "BR-0214", + "type": "small_airport", + "name": "Itaporã do Tocantins Airstrip", + "latitude_deg": "-8.564261", + "longitude_deg": "-48.702882", + "elevation_ft": "1250", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Itaporã do Tocantins", + "scheduled_service": "no" + }, + { + "id": "323694", + "ident": "BR-0215", + "type": "small_airport", + "name": "Bernardo Sayão Airstrip", + "latitude_deg": "-7.875086", + "longitude_deg": "-48.895373", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Bernardo Sayão", + "scheduled_service": "no" + }, + { + "id": "323695", + "ident": "BR-0216", + "type": "small_airport", + "name": "Bandeirantes do Tocantins Airstrip", + "latitude_deg": "-7.773402", + "longitude_deg": "-48.559079", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Bandeirantes do Tocantins", + "scheduled_service": "no" + }, + { + "id": "323696", + "ident": "BR-0217", + "type": "small_airport", + "name": "Palmeirante Airstrip", + "latitude_deg": "-7.850755", + "longitude_deg": "-47.924564", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Palmeirante", + "scheduled_service": "no" + }, + { + "id": "323697", + "ident": "BR-0218", + "type": "small_airport", + "name": "Goiatins Airstrip", + "latitude_deg": "-7.707254", + "longitude_deg": "-47.330409", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Goiatins", + "scheduled_service": "no" + }, + { + "id": "323698", + "ident": "BR-0219", + "type": "small_airport", + "name": "Arapoema Airstrip", + "latitude_deg": "-7.645339", + "longitude_deg": "-49.058384", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Arapoema", + "scheduled_service": "no" + }, + { + "id": "323699", + "ident": "BR-0220", + "type": "small_airport", + "name": "Avelino Remor Airstrip", + "latitude_deg": "-7.301063", + "longitude_deg": "-50.049915", + "elevation_ft": "676", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Rio Maria", + "scheduled_service": "no", + "gps_code": "SD7W", + "local_code": "PA0273" + }, + { + "id": "323700", + "ident": "BR-0221", + "type": "small_airport", + "name": "Aragominas Airstrip", + "latitude_deg": "-7.170034", + "longitude_deg": "-48.533374", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Aragominas", + "scheduled_service": "no" + }, + { + "id": "323701", + "ident": "BR-0222", + "type": "small_airport", + "name": "Wanderlândia Airstrip", + "latitude_deg": "-6.823287", + "longitude_deg": "-47.978165", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Wanderlândia", + "scheduled_service": "no" + }, + { + "id": "323702", + "ident": "BR-0223", + "type": "small_airport", + "name": "Piraquê Airstrip", + "latitude_deg": "-6.782418", + "longitude_deg": "-48.289209", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Piraquê", + "scheduled_service": "no" + }, + { + "id": "323703", + "ident": "BR-0224", + "type": "small_airport", + "name": "Xambioá Airstrip", + "latitude_deg": "-6.418838", + "longitude_deg": "-48.550643", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Xambioá", + "scheduled_service": "no" + }, + { + "id": "323704", + "ident": "BR-0225", + "type": "small_airport", + "name": "Ananás Airstrip", + "latitude_deg": "-6.341518", + "longitude_deg": "-48.073813", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Ananás", + "scheduled_service": "no" + }, + { + "id": "323706", + "ident": "BR-0226", + "type": "small_airport", + "name": "Arinos Airstrip", + "latitude_deg": "-15.890444", + "longitude_deg": "-46.099357", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Arinos", + "scheduled_service": "no" + }, + { + "id": "323707", + "ident": "BR-0227", + "type": "small_airport", + "name": "Fazenda Panambi Airstrip", + "latitude_deg": "-15.823305", + "longitude_deg": "-46.465488", + "elevation_ft": "3025", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Buritis", + "scheduled_service": "no", + "gps_code": "SNLC", + "local_code": "MG0307" + }, + { + "id": "323709", + "ident": "BR-0228", + "type": "small_airport", + "name": "Fazenda Triunfo Airstrip", + "latitude_deg": "-15.68727", + "longitude_deg": "-44.476848", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "scheduled_service": "no" + }, + { + "id": "323710", + "ident": "BR-0229", + "type": "small_airport", + "name": "Jaíba Airstrip", + "latitude_deg": "-15.334222", + "longitude_deg": "-43.689039", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Jaíba", + "scheduled_service": "no" + }, + { + "id": "323711", + "ident": "BR-0230", + "type": "small_airport", + "name": "Montezuma Airport", + "latitude_deg": "-15.177854", + "longitude_deg": "-42.507661", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Montezuma", + "scheduled_service": "no" + }, + { + "id": "323712", + "ident": "BR-0231", + "type": "small_airport", + "name": "Cachoeira da Prata Airstrip", + "latitude_deg": "-15.361892", + "longitude_deg": "-42.371236", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "scheduled_service": "no" + }, + { + "id": "323713", + "ident": "BR-0232", + "type": "small_airport", + "name": "Vargem Grande do Rio Pardo Airstrip", + "latitude_deg": "-15.361532", + "longitude_deg": "-42.21974", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Vargem Grande do Rio Pardo", + "scheduled_service": "no" + }, + { + "id": "323714", + "ident": "BR-0233", + "type": "small_airport", + "name": "Trajanópolis Airstrip", + "latitude_deg": "-15.255545", + "longitude_deg": "-48.277789", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Trajanópolis", + "scheduled_service": "no" + }, + { + "id": "323715", + "ident": "BR-0234", + "type": "small_airport", + "name": "Jalles Machado Airstrip", + "latitude_deg": "-15.083994", + "longitude_deg": "-49.294977", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "scheduled_service": "no" + }, + { + "id": "323716", + "ident": "BR-0235", + "type": "small_airport", + "name": "Juscelândia Airstrip", + "latitude_deg": "-15.117624", + "longitude_deg": "-49.31236", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Juscelândia", + "scheduled_service": "no" + }, + { + "id": "323717", + "ident": "BR-0236", + "type": "small_airport", + "name": "Simplício Mendes Airstrip", + "latitude_deg": "-7.823368", + "longitude_deg": "-41.958934", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Simplício Mendes", + "scheduled_service": "no" + }, + { + "id": "323718", + "ident": "BR-0237", + "type": "small_airport", + "name": "Jaicós Airstrip", + "latitude_deg": "-7.342569", + "longitude_deg": "-41.141514", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Jaicós", + "scheduled_service": "no" + }, + { + "id": "323719", + "ident": "BR-0238", + "type": "small_airport", + "name": "Valença do Piauí Airport", + "latitude_deg": "-6.388103", + "longitude_deg": "-41.763983", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Valença do Piauí", + "scheduled_service": "no", + "gps_code": "SDKE", + "local_code": "PI0073" + }, + { + "id": "323720", + "ident": "BR-0239", + "type": "small_airport", + "name": "Canavieira Airstrip", + "latitude_deg": "-7.68378", + "longitude_deg": "-43.71091", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Canavieira", + "scheduled_service": "no" + }, + { + "id": "323721", + "ident": "BR-0240", + "type": "small_airport", + "name": "Mirador Airstrip", + "latitude_deg": "-6.36777", + "longitude_deg": "-44.347317", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Mirador", + "scheduled_service": "no" + }, + { + "id": "323722", + "ident": "BR-0241", + "type": "small_airport", + "name": "Pedro II Airstrip", + "latitude_deg": "-4.431367", + "longitude_deg": "-41.434319", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Pedro II", + "scheduled_service": "no" + }, + { + "id": "323723", + "ident": "BR-0242", + "type": "closed", + "name": "Ipu Airstrip", + "latitude_deg": "-4.299787", + "longitude_deg": "-40.677053", + "elevation_ft": "760", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Ipu", + "scheduled_service": "no" + }, + { + "id": "323724", + "ident": "BR-0243", + "type": "small_airport", + "name": "Canindé Airstrip", + "latitude_deg": "-4.324935", + "longitude_deg": "-39.250419", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Canindé", + "scheduled_service": "no" + }, + { + "id": "323725", + "ident": "BR-0244", + "type": "small_airport", + "name": "Solonópole Airstrip", + "latitude_deg": "-5.713798", + "longitude_deg": "-39.00966", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Solonópole", + "scheduled_service": "no" + }, + { + "id": "323726", + "ident": "BR-0245", + "type": "small_airport", + "name": "Independência Airport", + "latitude_deg": "-5.376942", + "longitude_deg": "-40.29623", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Independência", + "scheduled_service": "no" + }, + { + "id": "323727", + "ident": "BR-0246", + "type": "small_airport", + "name": "Jaguaribe Airstrip", + "latitude_deg": "-5.854545", + "longitude_deg": "-38.573393", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Jaguaribe", + "scheduled_service": "no" + }, + { + "id": "323728", + "ident": "BR-0247", + "type": "small_airport", + "name": "Pau dos Ferros Airport", + "latitude_deg": "-6.154339", + "longitude_deg": "-38.196588", + "elevation_ft": "2615", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Pau dos Ferros", + "scheduled_service": "no", + "local_code": "SSKJ" + }, + { + "id": "323729", + "ident": "BR-0248", + "type": "small_airport", + "name": "Caraúbas Airstrip", + "latitude_deg": "-5.777501", + "longitude_deg": "-37.552745", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Caraúbas", + "scheduled_service": "no" + }, + { + "id": "323730", + "ident": "BR-0249", + "type": "small_airport", + "name": "Luís Antônio Fontenele - Cocal da Estação Airport", + "latitude_deg": "-3.455071", + "longitude_deg": "-41.604942", + "elevation_ft": "482", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Cocal", + "scheduled_service": "no", + "gps_code": "SSKE", + "local_code": "PI0053" + }, + { + "id": "323731", + "ident": "BR-0250", + "type": "small_airport", + "name": "Fazenda Providência Airport", + "latitude_deg": "-10.114436", + "longitude_deg": "-61.391242", + "elevation_ft": "640", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Rodolândia", + "scheduled_service": "no", + "gps_code": "SDFA", + "local_code": "SDFA" + }, + { + "id": "323732", + "ident": "BR-0251", + "type": "small_airport", + "name": "Fazenda Pertinho do Céu Airport", + "latitude_deg": "-16.473055", + "longitude_deg": "-53.9125", + "elevation_ft": "2152", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Guiratinga", + "scheduled_service": "no", + "gps_code": "SDFE", + "local_code": "SDFE" + }, + { + "id": "323734", + "ident": "BR-0252", + "type": "small_airport", + "name": "Fazenda Fusão Airport", + "latitude_deg": "-9.569238", + "longitude_deg": "-67.305229", + "elevation_ft": "646", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Lábrea", + "scheduled_service": "no", + "gps_code": "SDFF", + "local_code": "SDFF" + }, + { + "id": "323744", + "ident": "BR-0253", + "type": "heliport", + "name": "CADF Helipad", + "latitude_deg": "-15.836657", + "longitude_deg": "-48.084369", + "elevation_ft": "4022", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SDFG", + "local_code": "DF0009" + }, + { + "id": "323745", + "ident": "BR-0254", + "type": "heliport", + "name": "Lagoa Corporate Heliport", + "latitude_deg": "-2.499641", + "longitude_deg": "-44.307697", + "elevation_ft": "194", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "São Luís", + "scheduled_service": "no", + "gps_code": "SDFL", + "local_code": "SDFL" + }, + { + "id": "323746", + "ident": "BR-0255", + "type": "small_airport", + "name": "Fazenda Varnier Airport", + "latitude_deg": "-12.99317", + "longitude_deg": "-57.41081", + "elevation_ft": "1167", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SJVA", + "local_code": "SJVA" + }, + { + "id": "323773", + "ident": "BR-0256", + "type": "heliport", + "name": "Praia da Fazenda Heliport", + "latitude_deg": "-23.047614", + "longitude_deg": "-44.350848", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra dos Reis", + "scheduled_service": "no", + "gps_code": "SDFN", + "local_code": "SDFN" + }, + { + "id": "323817", + "ident": "BR-0257", + "type": "small_airport", + "name": "Wai Wai Airstrip", + "latitude_deg": "-0.69927", + "longitude_deg": "-57.969545", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Oriximiná", + "scheduled_service": "no" + }, + { + "id": "323818", + "ident": "BR-0258", + "type": "small_airport", + "name": "Yanomami Airstrip", + "latitude_deg": "1.617119", + "longitude_deg": "-63.65329", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "scheduled_service": "no" + }, + { + "id": "323819", + "ident": "BR-0259", + "type": "small_airport", + "name": "Japurá Airport", + "latitude_deg": "-1.896111", + "longitude_deg": "-67.019444", + "elevation_ft": "305", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Japurá", + "scheduled_service": "no", + "gps_code": "SDC8", + "local_code": "AM0102" + }, + { + "id": "323820", + "ident": "BR-0260", + "type": "small_airport", + "name": "Madiberi Airstrip", + "latitude_deg": "-7.279778", + "longitude_deg": "-65.192102", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Madiberi", + "scheduled_service": "no" + }, + { + "id": "323821", + "ident": "BR-0261", + "type": "small_airport", + "name": "Governador José B. Lindoso Airport", + "latitude_deg": "-7.036471", + "longitude_deg": "-71.687788", + "elevation_ft": "538", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Ipixuna", + "scheduled_service": "no", + "gps_code": "SD8C", + "local_code": "AM0098", + "home_link": "https://ipixuna.am.gov.br/apos-empenho-da-gestao-aeroporto-de-ipixuna-e-reconhecido-pela-anac/" + }, + { + "id": "323822", + "ident": "BR-0262", + "type": "small_airport", + "name": "Natal Airstrip", + "latitude_deg": "-9.398827", + "longitude_deg": "-72.718563", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Natal", + "scheduled_service": "no" + }, + { + "id": "323824", + "ident": "BR-0263", + "type": "small_airport", + "name": "Pedro Vieira Moreira Airport", + "latitude_deg": "-6.882778", + "longitude_deg": "-38.615834", + "elevation_ft": "1099", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Cajazeiras", + "scheduled_service": "no", + "gps_code": "SJZA", + "local_code": "SJZA" + }, + { + "id": "323856", + "ident": "BR-0264", + "type": "small_airport", + "name": "Matheus Lopes Maia da Silva Airport", + "latitude_deg": "-6.41454", + "longitude_deg": "-68.257845", + "elevation_ft": "390", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Itamarati", + "scheduled_service": "no", + "gps_code": "SSSM", + "local_code": "AM0091" + }, + { + "id": "323913", + "ident": "BR-0265", + "type": "heliport", + "name": "Sapucaí Heliport", + "latitude_deg": "-22.909722", + "longitude_deg": "-43.198333", + "elevation_ft": "269", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SWSS", + "local_code": "SWSS" + }, + { + "id": "324105", + "ident": "BR-0266", + "type": "small_airport", + "name": "Savana Airport", + "latitude_deg": "-10.440823", + "longitude_deg": "-62.507014", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Jaru", + "scheduled_service": "no", + "gps_code": "SIBN", + "local_code": "RO0011" + }, + { + "id": "324106", + "ident": "BR-0267", + "type": "small_airport", + "name": "Irmãos Gonçalves Airport", + "latitude_deg": "-10.423643", + "longitude_deg": "-62.517625", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Jaru", + "scheduled_service": "no", + "gps_code": "SIDG", + "local_code": "RO0012" + }, + { + "id": "324119", + "ident": "BR-0268", + "type": "small_airport", + "name": "Poxoréo Airstrip", + "latitude_deg": "-15.806366", + "longitude_deg": "-54.422609", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Poxoréo", + "scheduled_service": "no" + }, + { + "id": "324120", + "ident": "BR-0269", + "type": "small_airport", + "name": "Fazenda Mutum Airstrip", + "latitude_deg": "-20.494047", + "longitude_deg": "-53.287484", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Fazenda Mutum", + "scheduled_service": "no" + }, + { + "id": "324121", + "ident": "BR-0270", + "type": "small_airport", + "name": "Barra Airstrip", + "latitude_deg": "-21.315795", + "longitude_deg": "-53.088728", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Barra", + "scheduled_service": "no" + }, + { + "id": "324122", + "ident": "BR-0271", + "type": "small_airport", + "name": "Santa Rita do Pardo Airstrip", + "latitude_deg": "-21.272796", + "longitude_deg": "-52.853856", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Santa Rita do Pardo", + "scheduled_service": "no" + }, + { + "id": "324123", + "ident": "BR-0272", + "type": "small_airport", + "name": "Fazenda São João Airstrip", + "latitude_deg": "-21.65328", + "longitude_deg": "-52.426395", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "scheduled_service": "no" + }, + { + "id": "324135", + "ident": "BR-0273", + "type": "small_airport", + "name": "Fazenda Porto Real Airstrip", + "latitude_deg": "-13.434052", + "longitude_deg": "-47.152733", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "scheduled_service": "no" + }, + { + "id": "324136", + "ident": "BR-0274", + "type": "small_airport", + "name": "New Arraias Airport", + "latitude_deg": "-12.967626", + "longitude_deg": "-46.857667", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Arraias", + "scheduled_service": "no" + }, + { + "id": "324137", + "ident": "BR-0275", + "type": "small_airport", + "name": "Lavandeira Airstrip", + "latitude_deg": "-12.808092", + "longitude_deg": "-46.501759", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Lavandeira", + "scheduled_service": "no" + }, + { + "id": "324138", + "ident": "BR-0276", + "type": "small_airport", + "name": "Almas Airstrip", + "latitude_deg": "-11.579887", + "longitude_deg": "-47.162158", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Almas", + "scheduled_service": "no" + }, + { + "id": "324139", + "ident": "BR-0277", + "type": "small_airport", + "name": "Pindorama do Tocantins Airstrip", + "latitude_deg": "-11.151329", + "longitude_deg": "-47.580019", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Pindorama do Tocantins", + "scheduled_service": "no" + }, + { + "id": "324140", + "ident": "BR-0278", + "type": "small_airport", + "name": "Cotegipe Airstrip", + "latitude_deg": "-12.042221", + "longitude_deg": "-44.260973", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Cotegipe", + "scheduled_service": "no" + }, + { + "id": "324141", + "ident": "BR-0279", + "type": "small_airport", + "name": "Wanderley Airstrip", + "latitude_deg": "-12.103822", + "longitude_deg": "-43.906958", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Wanderley", + "scheduled_service": "no" + }, + { + "id": "324142", + "ident": "BR-0280", + "type": "small_airport", + "name": "Fazenda Paraíso das Corredeiras Airstrip", + "latitude_deg": "-13.115192", + "longitude_deg": "-44.681977", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "scheduled_service": "no" + }, + { + "id": "324143", + "ident": "BR-0281", + "type": "small_airport", + "name": "Fazenda Santo Antônio da Serra do Boqueirão Airstrip", + "latitude_deg": "-11.660292", + "longitude_deg": "-43.817836", + "elevation_ft": "1391", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Wanderley", + "scheduled_service": "no", + "gps_code": "SDQJ", + "local_code": "SDQJ" + }, + { + "id": "324154", + "ident": "BR-0282", + "type": "small_airport", + "name": "Fazenda Miragem Airstrip", + "latitude_deg": "-11.819883", + "longitude_deg": "-43.804469", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Wanderley", + "scheduled_service": "no" + }, + { + "id": "324156", + "ident": "BR-0283", + "type": "small_airport", + "name": "Morpará Airstrip", + "latitude_deg": "-11.573253", + "longitude_deg": "-43.26358", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Morpará", + "scheduled_service": "no" + }, + { + "id": "324159", + "ident": "BR-0284", + "type": "small_airport", + "name": "Fazenda São José Airport", + "latitude_deg": "-15.433611", + "longitude_deg": "-54.440833", + "elevation_ft": "2096", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Poxoréo", + "scheduled_service": "no", + "gps_code": "SWJO", + "local_code": "SWJO" + }, + { + "id": "324177", + "ident": "BR-0285", + "type": "heliport", + "name": "Cepasa Heliport", + "latitude_deg": "-8.128333", + "longitude_deg": "-35.013056", + "elevation_ft": "299", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Jaboatão dos Guararapes", + "scheduled_service": "no", + "gps_code": "SWZU", + "local_code": "SWZU" + }, + { + "id": "324193", + "ident": "BR-0286", + "type": "heliport", + "name": "Quick Alameda das Águas Heliport", + "latitude_deg": "-20.1725", + "longitude_deg": "-43.920277", + "elevation_ft": "4199", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Nova Lima", + "scheduled_service": "no", + "gps_code": "SDAV", + "local_code": "MG0211" + }, + { + "id": "324194", + "ident": "BR-0287", + "type": "heliport", + "name": "Rio Alpha Heliport", + "latitude_deg": "-22.909138", + "longitude_deg": "-43.18136", + "elevation_ft": "495", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SDAZ", + "local_code": "RJ0029" + }, + { + "id": "324342", + "ident": "BR-0288", + "type": "small_airport", + "name": "Fazenda Modelo Airstrip", + "latitude_deg": "-2.265221", + "longitude_deg": "-47.594317", + "elevation_ft": "223", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Aurora do Pará", + "scheduled_service": "no", + "gps_code": "SDWM" + }, + { + "id": "324343", + "ident": "BR-0289", + "type": "small_airport", + "name": "Mãe do Rio Airstrip", + "latitude_deg": "-2.042421", + "longitude_deg": "-47.526413", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Mãe do Rio", + "scheduled_service": "no" + }, + { + "id": "324344", + "ident": "BR-0290", + "type": "small_airport", + "name": "Quatros Bocas Airport", + "latitude_deg": "-2.424256", + "longitude_deg": "-48.241523", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Quatros Bocas", + "scheduled_service": "no" + }, + { + "id": "324357", + "ident": "BR-0291", + "type": "small_airport", + "name": "Fazenda XV de Outubro", + "latitude_deg": "-19.464338", + "longitude_deg": "-40.667485", + "elevation_ft": "810", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Colatina", + "scheduled_service": "no", + "gps_code": "SWZH", + "local_code": "ES0011" + }, + { + "id": "324358", + "ident": "BR-0292", + "type": "heliport", + "name": "Haras Recanto dos Gypsies Heliport", + "latitude_deg": "-23.236696", + "longitude_deg": "-47.500403", + "elevation_ft": "1736", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Porto Feliz", + "scheduled_service": "no", + "gps_code": "SWZF", + "local_code": "SP0845" + }, + { + "id": "324359", + "ident": "BR-0293", + "type": "heliport", + "name": "Fronteira Heliport", + "latitude_deg": "-23.767603", + "longitude_deg": "-45.348194", + "elevation_ft": "269", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ilhabela", + "scheduled_service": "no", + "gps_code": "SWZB", + "local_code": "SP0844" + }, + { + "id": "324869", + "ident": "BR-0294", + "type": "small_airport", + "name": "Fazenda Ressaca Airport", + "latitude_deg": "-16.18861", + "longitude_deg": "-57.705555", + "elevation_ft": "420", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SWUR", + "local_code": "SWUR" + }, + { + "id": "325621", + "ident": "BR-0295", + "type": "closed", + "name": "Abunã Airstrip", + "latitude_deg": "-9.71045", + "longitude_deg": "-65.35793", + "elevation_ft": "333", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Abunã", + "scheduled_service": "no", + "keywords": "SWAB" + }, + { + "id": "326623", + "ident": "BR-0296", + "type": "small_airport", + "name": "Fazenda Nossa Senhora Aparecida Airport", + "latitude_deg": "-12.998611", + "longitude_deg": "-55.213888", + "elevation_ft": "1370", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Ubiratã", + "scheduled_service": "no", + "gps_code": "SIAP", + "local_code": "SIAP" + }, + { + "id": "326625", + "ident": "BR-0297", + "type": "small_airport", + "name": "Cidade Eclética Airstrip", + "latitude_deg": "-15.867516", + "longitude_deg": "-48.338193", + "elevation_ft": "3662", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Cidade Eclética", + "scheduled_service": "no" + }, + { + "id": "326626", + "ident": "BR-0298", + "type": "closed", + "name": "Fazenda do Leão", + "latitude_deg": "-15.888598", + "longitude_deg": "-48.807736", + "elevation_ft": "3361", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Corumbá de Goiás", + "scheduled_service": "no" + }, + { + "id": "326633", + "ident": "BR-0299", + "type": "small_airport", + "name": "Itapirapuã Airport", + "latitude_deg": "-15.814734", + "longitude_deg": "-50.607237", + "elevation_ft": "1142", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Itapirapuã", + "scheduled_service": "no" + }, + { + "id": "326634", + "ident": "BR-0300", + "type": "closed", + "name": "Uvá Airstrip", + "latitude_deg": "-15.900328", + "longitude_deg": "-50.443026", + "elevation_ft": "1378", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Uvá", + "scheduled_service": "no" + }, + { + "id": "326635", + "ident": "BR-0301", + "type": "small_airport", + "name": "Fazenda Uvá Airport", + "latitude_deg": "-15.848721", + "longitude_deg": "-50.428838", + "elevation_ft": "1293", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Uvá", + "scheduled_service": "no" + }, + { + "id": "326636", + "ident": "BR-0302", + "type": "closed", + "name": "Jucara Airport", + "latitude_deg": "-15.860782", + "longitude_deg": "-50.883648", + "elevation_ft": "1287", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Jussara", + "scheduled_service": "no" + }, + { + "id": "326637", + "ident": "BR-0303", + "type": "closed", + "name": "Fazenda Santa Helena I Airstrip", + "latitude_deg": "-15.75612", + "longitude_deg": "-50.934768", + "elevation_ft": "1087", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Jussara", + "scheduled_service": "no" + }, + { + "id": "326638", + "ident": "BR-0304", + "type": "closed", + "name": "Bandeirantes Airport", + "latitude_deg": "-13.690586", + "longitude_deg": "-50.790833", + "elevation_ft": "810", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "São José dos Bandeirantes", + "scheduled_service": "no" + }, + { + "id": "326639", + "ident": "BR-0305", + "type": "closed", + "name": "Rio Araguaia Southwest Airport", + "latitude_deg": "-12.224243", + "longitude_deg": "-50.636373", + "elevation_ft": "671", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "scheduled_service": "no" + }, + { + "id": "326644", + "ident": "BR-0306", + "type": "small_airport", + "name": "Rio Araguaia Northeast airport", + "latitude_deg": "-12.140605", + "longitude_deg": "-50.677037", + "elevation_ft": "675", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "scheduled_service": "no" + }, + { + "id": "326645", + "ident": "BR-0307", + "type": "small_airport", + "name": "Gaelo Airport", + "latitude_deg": "-29.975833", + "longitude_deg": "-51.620277", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Charqueadas", + "scheduled_service": "no", + "gps_code": "SIRD", + "local_code": "RS0067" + }, + { + "id": "326649", + "ident": "BR-0308", + "type": "small_airport", + "name": "Novo Santo Antônio Airport", + "latitude_deg": "-12.296635", + "longitude_deg": "-50.978455", + "elevation_ft": "672", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Novo Santo Antônio", + "scheduled_service": "no", + "keywords": "Santo Antônio" + }, + { + "id": "331365", + "ident": "BR-0309", + "type": "heliport", + "name": "Chopper Solution Heliport", + "latitude_deg": "-3.844717", + "longitude_deg": "-38.442581", + "elevation_ft": "62", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Eusébio", + "scheduled_service": "no", + "gps_code": "SDKN", + "local_code": "CE0029" + }, + { + "id": "331367", + "ident": "BR-0310", + "type": "small_airport", + "name": "Fazenda Pirangi Airport", + "latitude_deg": "-22.268333", + "longitude_deg": "-53.433056", + "elevation_ft": "1234", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Andradina", + "scheduled_service": "no", + "gps_code": "SDKP", + "local_code": "MS0035" + }, + { + "id": "326662", + "ident": "BR-0311", + "type": "small_airport", + "name": "Fazenda América Airstrip", + "latitude_deg": "-11.542272", + "longitude_deg": "-56.521434", + "elevation_ft": "1230", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto dos Gaúchos", + "scheduled_service": "no", + "gps_code": "SWZM", + "local_code": "MT0447" + }, + { + "id": "326664", + "ident": "BR-0312", + "type": "small_airport", + "name": "Base Aeroverde Airport", + "latitude_deg": "-17.741666", + "longitude_deg": "-50.968612", + "elevation_ft": "2822", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Rio Verde", + "scheduled_service": "no", + "gps_code": "SWZL", + "local_code": "SWZL", + "keywords": "http://pergamum.anac.gov.br/arquivos/PA2015-3389.pdf" + }, + { + "id": "327023", + "ident": "BR-0313", + "type": "small_airport", + "name": "Fazenda Colorado", + "latitude_deg": "-9.255833", + "longitude_deg": "-44.799444", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Bom Jesus", + "scheduled_service": "no" + }, + { + "id": "327025", + "ident": "BR-0314", + "type": "small_airport", + "name": "Fazenda Colorado", + "latitude_deg": "-9.255833", + "longitude_deg": "-44.799444", + "elevation_ft": "2091", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Bom Jesus", + "scheduled_service": "no", + "gps_code": "SDQU" + }, + { + "id": "327126", + "ident": "BR-0315", + "type": "small_airport", + "name": "Fazenda Ranchinho do Guaporé Airport", + "latitude_deg": "-15.698689", + "longitude_deg": "-59.925463", + "elevation_ft": "689", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes e Lacerda", + "scheduled_service": "no", + "gps_code": "SSZX", + "local_code": "MT0633", + "keywords": "SDZI" + }, + { + "id": "327429", + "ident": "BR-0316", + "type": "heliport", + "name": "Fazenda Água Fria Heliport", + "latitude_deg": "-19.804265", + "longitude_deg": "-44.324971", + "elevation_ft": "2552", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Esmeraldas", + "scheduled_service": "no", + "gps_code": "SWAF", + "local_code": "MG0276" + }, + { + "id": "327583", + "ident": "BR-0317", + "type": "small_airport", + "name": "Itaquí Southeast Airport", + "latitude_deg": "-29.162495", + "longitude_deg": "-56.517523", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Itaquí", + "scheduled_service": "no" + }, + { + "id": "327786", + "ident": "BR-0318", + "type": "heliport", + "name": "Cooperativa Lar Heliport", + "latitude_deg": "-25.27427", + "longitude_deg": "-54.067369", + "elevation_ft": "1601", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Medianeira", + "scheduled_service": "yes", + "gps_code": "SSLC" + }, + { + "id": "327790", + "ident": "BR-0319", + "type": "small_airport", + "name": "Doze de Outubro Airport", + "latitude_deg": "-5.340555", + "longitude_deg": "-57.763889", + "elevation_ft": "397", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Maués", + "scheduled_service": "no", + "keywords": "SSLH" + }, + { + "id": "328007", + "ident": "BR-0320", + "type": "heliport", + "name": "Quick Fazenda Cachoeira Heliport", + "latitude_deg": "-19.818125", + "longitude_deg": "-44.344756", + "elevation_ft": "2441", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Esmeraldas", + "scheduled_service": "no", + "gps_code": "SDCI", + "local_code": "MG0213" + }, + { + "id": "328009", + "ident": "BR-0321", + "type": "small_airport", + "name": "Celeiro 2 Airport", + "latitude_deg": "-9.400432", + "longitude_deg": "-45.129098", + "elevation_ft": "2110", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Gilbués", + "scheduled_service": "no", + "gps_code": "SDCX", + "local_code": "PI0013" + }, + { + "id": "328010", + "ident": "BR-0322", + "type": "small_airport", + "name": "Ninho do Bacurau", + "latitude_deg": "-13.248888", + "longitude_deg": "-43.496667", + "elevation_ft": "1447", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Bom Jesus da Lapa", + "scheduled_service": "no", + "gps_code": "SDDB", + "local_code": "BA0070" + }, + { + "id": "328011", + "ident": "BR-0323", + "type": "heliport", + "name": "Difusora Heliport", + "latitude_deg": "-2.52454", + "longitude_deg": "-44.290602", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "São Luís", + "scheduled_service": "no", + "gps_code": "SDDF", + "local_code": "MA0054" + }, + { + "id": "328012", + "ident": "BR-0324", + "type": "heliport", + "name": "Empresarial Charles Darwin Heliport", + "latitude_deg": "-8.065511", + "longitude_deg": "-34.896482", + "elevation_ft": "463", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Recife", + "scheduled_service": "no", + "gps_code": "SDEC", + "local_code": "SDEC" + }, + { + "id": "328014", + "ident": "BR-0325", + "type": "heliport", + "name": "Eco Fly Heliport", + "latitude_deg": "-23.532365", + "longitude_deg": "-46.386267", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ferraz de Vasconcelos", + "scheduled_service": "no", + "gps_code": "SDEF", + "local_code": "SDEF" + }, + { + "id": "328363", + "ident": "BR-0326", + "type": "small_airport", + "name": "Guatambu São Paulo Airport", + "latitude_deg": "-23.621055", + "longitude_deg": "-48.510232", + "elevation_ft": "2182", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIAB", + "local_code": "SP0170" + }, + { + "id": "328364", + "ident": "BR-0327", + "type": "small_airport", + "name": "Fazenda Retiro do Bom Fim Airport", + "latitude_deg": "-18.681382", + "longitude_deg": "-49.987223", + "elevation_ft": "1401", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Ipiaçu", + "scheduled_service": "no", + "gps_code": "SIBJ", + "local_code": "MG0090" + }, + { + "id": "328366", + "ident": "BR-0328", + "type": "heliport", + "name": "Águas Finas Heliport", + "latitude_deg": "-7.909668", + "longitude_deg": "-35.048359", + "elevation_ft": "476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Paudalho", + "scheduled_service": "no", + "gps_code": "SIAF", + "local_code": "PE0025" + }, + { + "id": "328734", + "ident": "BR-0329", + "type": "heliport", + "name": "Estância Colorado Heliport", + "latitude_deg": "-20.758691", + "longitude_deg": "-47.86329", + "elevation_ft": "2372", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sales Oliveira", + "scheduled_service": "no", + "gps_code": "SNFK", + "local_code": "SP0698" + }, + { + "id": "328735", + "ident": "BR-0330", + "type": "small_airport", + "name": "Fazenda Vargem Bonita de Cima Airstrip", + "latitude_deg": "-17.307006", + "longitude_deg": "-45.92607", + "elevation_ft": "1755", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "João Pinheiro", + "scheduled_service": "no", + "keywords": "SWPN" + }, + { + "id": "328742", + "ident": "BR-0331", + "type": "heliport", + "name": "Porto dos Sonhos Heliport", + "latitude_deg": "-22.761712", + "longitude_deg": "-41.941738", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Armação de Búzios", + "scheduled_service": "no", + "gps_code": "SWZJ", + "local_code": "SWZJ" + }, + { + "id": "328752", + "ident": "BR-0332", + "type": "heliport", + "name": "Bahiamido Heliport", + "latitude_deg": "-13.108961", + "longitude_deg": "-39.284234", + "elevation_ft": "666", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Laje", + "scheduled_service": "no", + "gps_code": "SWYZ", + "local_code": "SWYZ" + }, + { + "id": "328754", + "ident": "BR-0333", + "type": "small_airport", + "name": "Fazenda Sagarana Airport", + "latitude_deg": "-13.752462", + "longitude_deg": "-46.16238", + "elevation_ft": "3163", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Correntina", + "scheduled_service": "no", + "gps_code": "SWYU", + "local_code": "SWYU" + }, + { + "id": "328756", + "ident": "BR-0334", + "type": "small_airport", + "name": "Fazenda Brusque Airport", + "latitude_deg": "-9.286519", + "longitude_deg": "-51.752391", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "São Félix do Xingu", + "scheduled_service": "no", + "gps_code": "SWYQ", + "local_code": "SWYQ" + }, + { + "id": "328758", + "ident": "BR-0335", + "type": "small_airport", + "name": "Fazenda Carrapato Airport", + "latitude_deg": "-3.511518", + "longitude_deg": "-39.643354", + "elevation_ft": "453", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Itapipoca", + "scheduled_service": "no", + "gps_code": "SWYL", + "local_code": "SWYL" + }, + { + "id": "328761", + "ident": "BR-0336", + "type": "heliport", + "name": "Iporanga Heliport", + "latitude_deg": "-22.700746", + "longitude_deg": "-45.520353", + "elevation_ft": "5397", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campos do Jordão", + "scheduled_service": "no", + "gps_code": "SWYI", + "local_code": "SWYI" + }, + { + "id": "328804", + "ident": "BR-0337", + "type": "heliport", + "name": "Ambipar Heliport", + "latitude_deg": "-22.760119", + "longitude_deg": "-47.254073", + "elevation_ft": "2044", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Americana", + "scheduled_service": "no", + "gps_code": "SWYF", + "local_code": "SWYF" + }, + { + "id": "328805", + "ident": "BR-0338", + "type": "heliport", + "name": "Spazio Faria LimaHeliport", + "latitude_deg": "-23.585222", + "longitude_deg": "-46.682383", + "elevation_ft": "2740", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SWYD", + "local_code": "SP0841" + }, + { + "id": "328807", + "ident": "BR-0339", + "type": "small_airport", + "name": "Fazenda Rancho Alegre I Airport", + "latitude_deg": "-16.255972", + "longitude_deg": "-59.716035", + "elevation_ft": "860", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SWYC", + "local_code": "SWYC" + }, + { + "id": "328809", + "ident": "BR-0340", + "type": "small_airport", + "name": "Fazenda Vô Zeca Airport", + "latitude_deg": "-10.35564", + "longitude_deg": "-50.682799", + "elevation_ft": "686", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santa Terezinha", + "scheduled_service": "no", + "keywords": "SWXY" + }, + { + "id": "328810", + "ident": "BR-0341", + "type": "small_airport", + "name": "Fazenda Santa Terezinha I", + "latitude_deg": "-10.361881", + "longitude_deg": "-50.610394", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santa Terezinha", + "scheduled_service": "no", + "gps_code": "SIWT", + "local_code": "MT0147" + }, + { + "id": "328813", + "ident": "BR-0342", + "type": "small_airport", + "name": "Fazenda Chapada Grande Airport", + "latitude_deg": "-6.348867", + "longitude_deg": "-42.474947", + "elevation_ft": "1378", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Regeneração", + "scheduled_service": "no", + "gps_code": "SJKG", + "local_code": "PI0026" + }, + { + "id": "328814", + "ident": "BR-0343", + "type": "heliport", + "name": "Fazenda Angical Heliport", + "latitude_deg": "-10.903889", + "longitude_deg": "-39.420278", + "elevation_ft": "948", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Nordestina", + "scheduled_service": "no", + "gps_code": "SJKH", + "local_code": "SJKH" + }, + { + "id": "328888", + "ident": "BR-0344", + "type": "heliport", + "name": "Castello 54 Heliport", + "latitude_deg": "-23.430882", + "longitude_deg": "-47.111798", + "elevation_ft": "2457", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araçariguama", + "scheduled_service": "no", + "gps_code": "SJCO", + "local_code": "SP0607" + }, + { + "id": "328890", + "ident": "BR-0345", + "type": "heliport", + "name": "AVL Heliport", + "latitude_deg": "-22.100428", + "longitude_deg": "-41.782074", + "elevation_ft": "89", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Conceição de Macabu", + "scheduled_service": "no", + "gps_code": "SSAX", + "local_code": "RJ0143" + }, + { + "id": "328944", + "ident": "BR-0346", + "type": "small_airport", + "name": "Fazenda Americana Airport", + "latitude_deg": "-5.618611", + "longitude_deg": "-45.265555", + "elevation_ft": "535", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Barra do Corda", + "scheduled_service": "no", + "gps_code": "SNAU", + "local_code": "SNAU" + }, + { + "id": "328946", + "ident": "BR-0347", + "type": "heliport", + "name": "SENAI/SESI/CNI Heliport", + "latitude_deg": "-15.790566", + "longitude_deg": "-47.879165", + "elevation_ft": "3780", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SNAW", + "local_code": "SNAW" + }, + { + "id": "328948", + "ident": "BR-0348", + "type": "heliport", + "name": "Amazônia Heliport", + "latitude_deg": "-23.492877", + "longitude_deg": "-46.849942", + "elevation_ft": "2841", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SNAZ", + "local_code": "SNAZ" + }, + { + "id": "328955", + "ident": "BR-0349", + "type": "heliport", + "name": "BMR Medical Heliport", + "latitude_deg": "-25.34695", + "longitude_deg": "-49.057376", + "elevation_ft": "2930", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Campina Grande do Sul", + "scheduled_service": "no", + "gps_code": "SNBB", + "local_code": "SNBB" + }, + { + "id": "328957", + "ident": "BR-0350", + "type": "small_airport", + "name": "Fazenda Bela Vista Airport", + "latitude_deg": "-22.617232", + "longitude_deg": "-53.580533", + "elevation_ft": "840", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Novo Horizonte do Sul", + "scheduled_service": "no", + "gps_code": "SNBE", + "local_code": "SNBE" + }, + { + "id": "328996", + "ident": "BR-0351", + "type": "heliport", + "name": "Eco Aviação Heliport", + "latitude_deg": "-19.842128", + "longitude_deg": "-43.871418", + "elevation_ft": "2290", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SWAH", + "local_code": "MG0277" + }, + { + "id": "329000", + "ident": "BR-0352", + "type": "heliport", + "name": "N. S. A. Heliport", + "latitude_deg": "-22.7384254", + "longitude_deg": "-45.540062", + "elevation_ft": "5663", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campos do Jordão", + "scheduled_service": "yes", + "gps_code": "SNBK", + "local_code": "SNBK" + }, + { + "id": "329038", + "ident": "BR-0353", + "type": "small_airport", + "name": "Fazenda Dois Irmãos Airport", + "latitude_deg": "-22.792222", + "longitude_deg": "-54.179444", + "elevation_ft": "1381", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Naviraí", + "scheduled_service": "no", + "gps_code": "SNDI", + "local_code": "SNDI" + }, + { + "id": "329040", + "ident": "BR-0354", + "type": "heliport", + "name": "Cemaden - CIGE Heliport", + "latitude_deg": "-12.94398", + "longitude_deg": "-38.425784", + "elevation_ft": "256", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Salvador", + "scheduled_service": "no", + "gps_code": "SNDN", + "local_code": "SNDN" + }, + { + "id": "329042", + "ident": "BR-0355", + "type": "heliport", + "name": "Helinorte", + "latitude_deg": "-23.415", + "longitude_deg": "-46.580555", + "elevation_ft": "2605", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SSUH", + "local_code": "SSUH" + }, + { + "id": "329168", + "ident": "BR-0356", + "type": "small_airport", + "name": "Fazenda Guadiana Airport", + "latitude_deg": "-22.074271", + "longitude_deg": "-51.038782", + "elevation_ft": "1493", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Martinópolis", + "scheduled_service": "no", + "gps_code": "SIGY", + "local_code": "SP0178" + }, + { + "id": "329169", + "ident": "BR-0357", + "type": "heliport", + "name": "Evolution Corporate Heliport", + "latitude_deg": "-23.504727", + "longitude_deg": "-46.851428", + "elevation_ft": "3002", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SDEG", + "local_code": "SDEG" + }, + { + "id": "329170", + "ident": "BR-0358", + "type": "heliport", + "name": "Hospital Zona Norte Heliport", + "latitude_deg": "-2.998256", + "longitude_deg": "-60.029901", + "elevation_ft": "361", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Manaus", + "scheduled_service": "no", + "gps_code": "SDEH", + "local_code": "AM0056" + }, + { + "id": "329171", + "ident": "BR-0359", + "type": "heliport", + "name": "Fundação Bradesco Heliport", + "latitude_deg": "-22.964558", + "longitude_deg": "-47.07714", + "elevation_ft": "1978", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SDFB", + "local_code": "SP0325" + }, + { + "id": "329173", + "ident": "BR-0360", + "type": "small_airport", + "name": "Fazenda Valença Airport", + "latitude_deg": "-19.411443", + "longitude_deg": "-55.173784", + "elevation_ft": "1739", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Negro", + "scheduled_service": "no", + "gps_code": "SDFY", + "local_code": "SDFY" + }, + { + "id": "329175", + "ident": "BR-0361", + "type": "heliport", + "name": "Hellix Business Center Heliport", + "latitude_deg": "-22.744179", + "longitude_deg": "-42.852289", + "elevation_ft": "230", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Itaboraí", + "scheduled_service": "no", + "gps_code": "SDHN", + "local_code": "SDHN" + }, + { + "id": "329223", + "ident": "BR-0362", + "type": "heliport", + "name": "REC Berrini Helipad", + "latitude_deg": "-23.608637", + "longitude_deg": "-46.694598", + "elevation_ft": "2835", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDBR", + "local_code": "SP0299" + }, + { + "id": "329224", + "ident": "BR-0363", + "type": "small_airport", + "name": "Fazenda Santana Airport", + "latitude_deg": "-11.66962", + "longitude_deg": "-45.725952", + "elevation_ft": "2592", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Riachão das Neves", + "scheduled_service": "no", + "gps_code": "SDFZ", + "local_code": "SDFZ" + }, + { + "id": "329225", + "ident": "BR-0364", + "type": "small_airport", + "name": "Adecoagro Airport", + "latitude_deg": "-22.036265", + "longitude_deg": "-53.847376", + "elevation_ft": "1217", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Angélica", + "scheduled_service": "no", + "gps_code": "SDGA", + "local_code": "SDGA" + }, + { + "id": "329301", + "ident": "BR-0365", + "type": "small_airport", + "name": "Usina Santa Luzia Airport", + "latitude_deg": "-21.553153", + "longitude_deg": "-54.234234", + "elevation_ft": "1225", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Alvorada do Sul", + "scheduled_service": "no", + "gps_code": "SDGF", + "local_code": "SDGF" + }, + { + "id": "329302", + "ident": "BR-0366", + "type": "small_airport", + "name": "Fazenda São José Airport", + "latitude_deg": "-21.332724", + "longitude_deg": "-56.910956", + "elevation_ft": "971", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SDGJ", + "local_code": "SDGJ" + }, + { + "id": "329303", + "ident": "BR-0367", + "type": "heliport", + "name": "Grupo Petrópolis Heliport", + "latitude_deg": "-22.352445", + "longitude_deg": "-43.164285", + "elevation_ft": "2625", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Petrópolis", + "scheduled_service": "no", + "gps_code": "SDGK", + "local_code": "SDGK" + }, + { + "id": "329305", + "ident": "BR-0368", + "type": "small_airport", + "name": "Fazenda Mucambo Airport", + "latitude_deg": "-19.290439", + "longitude_deg": "-43.889987", + "elevation_ft": "2507", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Baldim", + "scheduled_service": "no", + "gps_code": "SDGM", + "local_code": "SDGM" + }, + { + "id": "329307", + "ident": "BR-0369", + "type": "small_airport", + "name": "Fazenda Gaivota Airport", + "latitude_deg": "-14.0125", + "longitude_deg": "-53.466667", + "elevation_ft": "1529", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Paranatinga", + "scheduled_service": "no", + "gps_code": "SDGP", + "local_code": "SDGP" + }, + { + "id": "316508", + "ident": "BR-0370", + "type": "heliport", + "name": "Ceta Ecotel Heliport", + "latitude_deg": "-0.0478", + "longitude_deg": "-51.1186", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Macapá", + "scheduled_service": "no", + "keywords": "SWWC" + }, + { + "id": "329423", + "ident": "BR-0371", + "type": "small_airport", + "name": "A2 Aviação Agrícola Ltda Airport", + "latitude_deg": "-10.068612", + "longitude_deg": "-55.995278", + "elevation_ft": "942", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alta Floresta", + "scheduled_service": "no", + "gps_code": "SIJQ", + "local_code": "MT0099" + }, + { + "id": "329543", + "ident": "BR-0372", + "type": "small_airport", + "name": "Jeová Gomes Airport", + "latitude_deg": "-5.193456", + "longitude_deg": "-38.144054", + "elevation_ft": "154", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Limoeiro do Norte", + "scheduled_service": "no", + "gps_code": "SDGQ", + "local_code": "SDGQ" + }, + { + "id": "329545", + "ident": "BR-0373", + "type": "heliport", + "name": "Conde Heliport", + "latitude_deg": "-19.9945", + "longitude_deg": "-43.952202", + "elevation_ft": "3980", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Nova Lima", + "scheduled_service": "no", + "gps_code": "SDGV", + "local_code": "SDGV" + }, + { + "id": "329547", + "ident": "BR-0374", + "type": "heliport", + "name": "Ji Paraná Tradição Heliport", + "latitude_deg": "-10.933595", + "longitude_deg": "-61.926452", + "elevation_ft": "568", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Ji-Paraná", + "scheduled_service": "no", + "gps_code": "SDHJ", + "local_code": "SDHJ" + }, + { + "id": "329549", + "ident": "BR-0375", + "type": "small_airport", + "name": "Fazenda Ouro Branco Airport", + "latitude_deg": "-12.017777", + "longitude_deg": "-56.413611", + "elevation_ft": "1263", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto dos Gaúchos", + "scheduled_service": "no", + "gps_code": "SDHS", + "local_code": "SDHS" + }, + { + "id": "329767", + "ident": "BR-0376", + "type": "small_airport", + "name": "Ajarani 2 Airstrip", + "latitude_deg": "1.887366", + "longitude_deg": "-62.018592", + "elevation_ft": "135", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Iracema", + "scheduled_service": "no", + "gps_code": "SDIR", + "local_code": "SDIR" + }, + { + "id": "329768", + "ident": "BR-0377", + "type": "heliport", + "name": "Unimed Heliport", + "latitude_deg": "-20.450464", + "longitude_deg": "-54.576214", + "elevation_ft": "2087", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "gps_code": "SDIU", + "local_code": "SDIU" + }, + { + "id": "329769", + "ident": "BR-0378", + "type": "small_airport", + "name": "MGX Florestal Airport", + "latitude_deg": "-15.499887", + "longitude_deg": "-41.565833", + "elevation_ft": "2559", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Ninheira", + "scheduled_service": "no", + "gps_code": "SDIX", + "local_code": "SDIX" + }, + { + "id": "329770", + "ident": "BR-0379", + "type": "heliport", + "name": "Dois Irmãos Heliport", + "latitude_deg": "-8.014555", + "longitude_deg": "-34.93821", + "elevation_ft": "39", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Recife", + "scheduled_service": "no", + "keywords": "SDIY" + }, + { + "id": "329771", + "ident": "BR-0380", + "type": "small_airport", + "name": "Fazenda Diamante Airport", + "latitude_deg": "-9.058762", + "longitude_deg": "-45.504167", + "elevation_ft": "1788", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Baixa Grande do Ribeiro", + "scheduled_service": "no", + "gps_code": "SDIZ", + "local_code": "SDIZ" + }, + { + "id": "329772", + "ident": "BR-0381", + "type": "small_airport", + "name": "Fazenda São João do Pirajá Airstrip", + "latitude_deg": "-8.99928", + "longitude_deg": "-44.591333", + "elevation_ft": "1854", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Currais", + "scheduled_service": "no", + "gps_code": "SDJG", + "local_code": "SDJG" + }, + { + "id": "329773", + "ident": "BR-0382", + "type": "heliport", + "name": "Cananéia Heliport", + "latitude_deg": "-25.007831", + "longitude_deg": "-47.924935", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cananéia", + "scheduled_service": "no", + "gps_code": "SNNJ", + "local_code": "SP0719", + "keywords": "SIHP, Canapon" + }, + { + "id": "329776", + "ident": "BR-0383", + "type": "heliport", + "name": "HTO - Horto da Paz Heliport", + "latitude_deg": "-23.728392", + "longitude_deg": "-46.885955", + "elevation_ft": "2822", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapecerica da Serra", + "scheduled_service": "no", + "gps_code": "SNNI", + "local_code": "SNNI" + }, + { + "id": "329777", + "ident": "BR-0384", + "type": "small_airport", + "name": "Fazenda Locks Airport", + "latitude_deg": "-12.798737", + "longitude_deg": "-57.129145", + "elevation_ft": "1299", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Maringá", + "scheduled_service": "no", + "gps_code": "SNNL", + "local_code": "SNNL" + }, + { + "id": "329782", + "ident": "BR-0385", + "type": "heliport", + "name": "Gravatá Heliport", + "latitude_deg": "-8.187697", + "longitude_deg": "-35.497589", + "elevation_ft": "141", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Gravatá", + "scheduled_service": "no", + "gps_code": "SDIJ", + "local_code": "SDIJ" + }, + { + "id": "329783", + "ident": "BR-0386", + "type": "small_airport", + "name": "Clube CÉU Airport", + "latitude_deg": "-22.96126", + "longitude_deg": "-43.659414", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SIAN", + "local_code": "SIAN", + "keywords": "Armando Nogueira Airfield" + }, + { + "id": "330639", + "ident": "BR-0387", + "type": "small_airport", + "name": "Fazenda Poças Airport", + "latitude_deg": "-16.161389", + "longitude_deg": "-56.007778", + "elevation_ft": "456", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santo Antônio do Leverger", + "scheduled_service": "no", + "gps_code": "SWXS", + "local_code": "SWXS" + }, + { + "id": "330640", + "ident": "BR-0388", + "type": "heliport", + "name": "Interpolos Heliport", + "latitude_deg": "-26.847613", + "longitude_deg": "-49.267606", + "elevation_ft": "210", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Timbó", + "scheduled_service": "no", + "gps_code": "SSIP", + "local_code": "SSIP" + }, + { + "id": "330642", + "ident": "BR-0389", + "type": "heliport", + "name": "Hospital Regional do Sertão Central Heliport", + "latitude_deg": "-5.181512", + "longitude_deg": "-39.261732", + "elevation_ft": "768", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Quixeramobim", + "scheduled_service": "no", + "gps_code": "SJQE", + "local_code": "SJQE" + }, + { + "id": "330753", + "ident": "BR-0390", + "type": "heliport", + "name": "Condomínio Edifício Paulista Plaza Heliport", + "latitude_deg": "-23.57361", + "longitude_deg": "-46.641769", + "elevation_ft": "2913", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIGO", + "local_code": "SP0495" + }, + { + "id": "330755", + "ident": "BR-0391", + "type": "small_airport", + "name": "Pista Fogoió", + "latitude_deg": "-5.359444", + "longitude_deg": "-57.520007", + "elevation_ft": "390", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SNFG", + "local_code": "PA0089" + }, + { + "id": "330776", + "ident": "BR-0392", + "type": "heliport", + "name": "SESC Triunfo Heliport", + "latitude_deg": "-7.842986", + "longitude_deg": "-38.109267", + "elevation_ft": "3583", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Triunfo", + "scheduled_service": "no", + "gps_code": "SSTH", + "local_code": "SSTH" + }, + { + "id": "330778", + "ident": "BR-0393", + "type": "heliport", + "name": "Villa Otto Baumgart Heliport", + "latitude_deg": "-22.743763", + "longitude_deg": "-45.563107", + "elevation_ft": "5676", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campos do Jordão", + "scheduled_service": "no", + "gps_code": "SDUH", + "local_code": "SDUH" + }, + { + "id": "330852", + "ident": "BR-0394", + "type": "heliport", + "name": "Praia do Paiva Heliport", + "latitude_deg": "-8.239522", + "longitude_deg": "-34.938377", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Jaboatão dos Guararapes", + "scheduled_service": "no", + "gps_code": "SWXI", + "local_code": "SWXI" + }, + { + "id": "330858", + "ident": "BR-0395", + "type": "heliport", + "name": "Sierra Wriskey Victor Romeu Heliport", + "latitude_deg": "-3.265627", + "longitude_deg": "-45.181765", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Penalva", + "scheduled_service": "no", + "gps_code": "SSSX", + "local_code": "SSSX" + }, + { + "id": "331021", + "ident": "BR-0396", + "type": "heliport", + "name": "Central Engenharia Heliport", + "latitude_deg": "-2.535175", + "longitude_deg": "-44.299808", + "elevation_ft": "62", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "São Luís", + "scheduled_service": "no", + "gps_code": "SICE", + "local_code": "MA0057" + }, + { + "id": "331028", + "ident": "BR-0397", + "type": "small_airport", + "name": "Simão Sarkis Simão Airport", + "latitude_deg": "-18.308846", + "longitude_deg": "-45.29456", + "elevation_ft": "2805", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Três Marias", + "scheduled_service": "no", + "gps_code": "SIBO", + "local_code": "SIBO" + }, + { + "id": "331031", + "ident": "BR-0398", + "type": "heliport", + "name": "Haras RM Heliport", + "latitude_deg": "-3.913101", + "longitude_deg": "-38.4348", + "elevation_ft": "79", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Aquiraz", + "scheduled_service": "no", + "gps_code": "SIAH", + "local_code": "CE0031" + }, + { + "id": "331032", + "ident": "BR-0399", + "type": "small_airport", + "name": "Tenoar Airport", + "latitude_deg": "-18.748165", + "longitude_deg": "-52.686835", + "elevation_ft": "2694", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Chapadão do Sul", + "scheduled_service": "no", + "gps_code": "SDRV", + "local_code": "MS0049" + }, + { + "id": "331033", + "ident": "BR-0400", + "type": "small_airport", + "name": "Fazenda Reserva Airstrip", + "latitude_deg": "-21.511361", + "longitude_deg": "-53.196792", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SDRW", + "local_code": "MS0050" + }, + { + "id": "331042", + "ident": "BR-0401", + "type": "small_airport", + "name": "Centro Brasileiro de Aviação Agrícola Experimental e Recreativo (CBAAER) Airport", + "latitude_deg": "-15.773333", + "longitude_deg": "-47.702816", + "elevation_ft": "3146", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SDCB", + "local_code": "DF0021" + }, + { + "id": "331050", + "ident": "BR-0402", + "type": "small_airport", + "name": "Condomínio Fly Vila Resort Airport", + "latitude_deg": "-20.761307", + "longitude_deg": "-45.986143", + "elevation_ft": "2582", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Guapé", + "scheduled_service": "no", + "gps_code": "SSVG", + "local_code": "MG0190" + }, + { + "id": "331067", + "ident": "BR-0403", + "type": "heliport", + "name": "Rio Pardo Heliport", + "latitude_deg": "-22.87129", + "longitude_deg": "-49.047609", + "elevation_ft": "2119", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Iaras", + "scheduled_service": "no", + "gps_code": "SDJJ", + "local_code": "SP0362" + }, + { + "id": "331068", + "ident": "BR-0404", + "type": "small_airport", + "name": "JN Resort Airport", + "latitude_deg": "-19.430741", + "longitude_deg": "-44.304789", + "elevation_ft": "2638", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Sete Lagoas", + "scheduled_service": "no", + "gps_code": "SDJR", + "local_code": "MG0084" + }, + { + "id": "331069", + "ident": "BR-0405", + "type": "small_airport", + "name": "Fazenda São José Airport", + "latitude_deg": "-29.951531", + "longitude_deg": "-54.148725", + "elevation_ft": "344", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "São Gabriel", + "scheduled_service": "no", + "gps_code": "SDJZ", + "local_code": "RS0056" + }, + { + "id": "331196", + "ident": "BR-0406", + "type": "heliport", + "name": "Sucupira Helipad", + "latitude_deg": "-23.624125", + "longitude_deg": "-46.70343", + "elevation_ft": "2760", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDDS", + "local_code": "SP0311" + }, + { + "id": "331227", + "ident": "BR-0407", + "type": "small_airport", + "name": "Geraldo Alvino Covre Airport", + "latitude_deg": "-18.463066", + "longitude_deg": "-40.17637", + "elevation_ft": "344", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Pinheiros", + "scheduled_service": "no", + "gps_code": "SWBQ", + "local_code": "ES0010" + }, + { + "id": "331229", + "ident": "BR-0408", + "type": "small_airport", + "name": "J Lem Airport", + "latitude_deg": "-12.125186", + "longitude_deg": "-45.771057", + "elevation_ft": "2408", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Luís Eduardo Magalhães", + "scheduled_service": "no", + "gps_code": "SNJL", + "local_code": "BA0139" + }, + { + "id": "331369", + "ident": "BR-0409", + "type": "heliport", + "name": "Wessel Heliport", + "latitude_deg": "-23.416111", + "longitude_deg": "-47.108611", + "elevation_ft": "2329", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araçariguama", + "scheduled_service": "no", + "gps_code": "SDKW", + "local_code": "SP0378" + }, + { + "id": "331370", + "ident": "BR-0410", + "type": "small_airport", + "name": "Fazenda Serra Azul Airport", + "latitude_deg": "-14.62657", + "longitude_deg": "-55.649945", + "elevation_ft": "1065", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Rosário Oeste", + "scheduled_service": "no", + "gps_code": "SDKX", + "local_code": "MT0038" + }, + { + "id": "331373", + "ident": "BR-0411", + "type": "small_airport", + "name": "Fazenda Barra Grande Airport", + "latitude_deg": "-10.138273", + "longitude_deg": "-51.994144", + "elevation_ft": "945", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Confresa", + "scheduled_service": "no", + "gps_code": "SDLD", + "local_code": "MT0039" + }, + { + "id": "331374", + "ident": "BR-0412", + "type": "small_airport", + "name": "Fazenda Pato Branco Airport", + "latitude_deg": "-19.31996", + "longitude_deg": "-54.520702", + "elevation_ft": "2392", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "São Gabriel do Oeste", + "scheduled_service": "no", + "gps_code": "SDLH", + "local_code": "MS0036" + }, + { + "id": "331376", + "ident": "BR-0413", + "type": "heliport", + "name": "Hangar 77 Heliport", + "latitude_deg": "-27.083707", + "longitude_deg": "-48.964796", + "elevation_ft": "105", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Guabiruba", + "scheduled_service": "no", + "gps_code": "SDLS", + "local_code": "SC0042" + }, + { + "id": "331379", + "ident": "BR-0414", + "type": "small_airport", + "name": "Muraro Airport", + "latitude_deg": "-23.185832", + "longitude_deg": "-47.060518", + "elevation_ft": "2411", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itupeva", + "scheduled_service": "no", + "gps_code": "SDMA", + "local_code": "SP0120" + }, + { + "id": "331381", + "ident": "BR-0415", + "type": "small_airport", + "name": "Fazenda Tropical Airport", + "latitude_deg": "-20.970556", + "longitude_deg": "-52.522778", + "elevation_ft": "1302", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Brasilândia", + "scheduled_service": "no", + "gps_code": "SDMK", + "local_code": "MS0411" + }, + { + "id": "331383", + "ident": "BR-0416", + "type": "heliport", + "name": "Destro Macro Heliport", + "latitude_deg": "-25.558389", + "longitude_deg": "-49.303659", + "elevation_ft": "3071", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Curitiba", + "scheduled_service": "no", + "gps_code": "SDML", + "local_code": "PR0104" + }, + { + "id": "331386", + "ident": "BR-0417", + "type": "heliport", + "name": "Continental Tower Helipad", + "latitude_deg": "-23.601389", + "longitude_deg": "-46.698056", + "elevation_ft": "2835", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDMN", + "local_code": "SP0385" + }, + { + "id": "331388", + "ident": "BR-0418", + "type": "small_airport", + "name": "Fazenda DIMEP Airport", + "latitude_deg": "-23.138611", + "longitude_deg": "-48.495278", + "elevation_ft": "2221", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itatinga", + "scheduled_service": "no", + "gps_code": "SDMP", + "local_code": "SP0122" + }, + { + "id": "331399", + "ident": "BR-0419", + "type": "heliport", + "name": "Agéo Fazenda Capitão do Mato Heliport", + "latitude_deg": "-20.16056", + "longitude_deg": "-43.923397", + "elevation_ft": "4242", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Nova Lima", + "scheduled_service": "no", + "gps_code": "SDNF", + "local_code": "MG0218" + }, + { + "id": "331401", + "ident": "BR-0420", + "type": "heliport", + "name": "Fazenda São João Heliport", + "latitude_deg": "-22.418673", + "longitude_deg": "-48.600434", + "elevation_ft": "1854", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jaú", + "scheduled_service": "no", + "gps_code": "SDNG", + "local_code": "SP0388" + }, + { + "id": "331424", + "ident": "BR-0421", + "type": "small_airport", + "name": "Fazenda Furnas Airport", + "latitude_deg": "-14.986382", + "longitude_deg": "-55.210278", + "elevation_ft": "2126", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Chapada dos Guimarães", + "scheduled_service": "no", + "gps_code": "SDNS", + "local_code": "MT0048" + }, + { + "id": "331428", + "ident": "BR-0422", + "type": "small_airport", + "name": "Aerorancho Airport", + "latitude_deg": "-15.68184", + "longitude_deg": "-47.769018", + "elevation_ft": "3563", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "keywords": "SDNT" + }, + { + "id": "331430", + "ident": "BR-0423", + "type": "small_airport", + "name": "Fazenda Guanabara Airport", + "latitude_deg": "-19.51719", + "longitude_deg": "-55.231771", + "elevation_ft": "2090", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Negro", + "scheduled_service": "no", + "gps_code": "SDNW", + "local_code": "MS0042" + }, + { + "id": "331436", + "ident": "BR-0424", + "type": "small_airport", + "name": "Fazenda Três Lagoas Airport", + "latitude_deg": "-20.405833", + "longitude_deg": "-44.997778", + "elevation_ft": "2717", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Itapecerica", + "scheduled_service": "no", + "gps_code": "SSLK", + "local_code": "MG0184" + }, + { + "id": "331437", + "ident": "BR-0425", + "type": "small_airport", + "name": "Fazenda Vale Verde Airport", + "latitude_deg": "-9.621389", + "longitude_deg": "-65.770278", + "elevation_ft": "587", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Vista Alegre do Abunã", + "scheduled_service": "no", + "gps_code": "SSLL", + "local_code": "RO0048" + }, + { + "id": "331438", + "ident": "BR-0426", + "type": "small_airport", + "name": "Fazenda Lagoa Clara Airport", + "latitude_deg": "-12.79711", + "longitude_deg": "-44.72025", + "elevation_ft": "1385", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "keywords": "SSLL" + }, + { + "id": "331441", + "ident": "BR-0427", + "type": "heliport", + "name": "Palazzo Lumini Helipad", + "latitude_deg": "-25.43985", + "longitude_deg": "-49.342342", + "elevation_ft": "3492", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Curitiba", + "scheduled_service": "no", + "gps_code": "SSLU", + "local_code": "PR0141" + }, + { + "id": "331442", + "ident": "BR-0428", + "type": "small_airport", + "name": "Fazenda Santa Lydia Airstrip", + "latitude_deg": "-22.633037", + "longitude_deg": "-52.808518", + "elevation_ft": "1004", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Diamante do Norte", + "scheduled_service": "no", + "gps_code": "SSLX", + "local_code": "PR0084" + }, + { + "id": "331444", + "ident": "BR-0429", + "type": "heliport", + "name": "Spasse Helipad", + "latitude_deg": "-21.20152", + "longitude_deg": "-47.796229", + "elevation_ft": "1982", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Preto", + "scheduled_service": "no", + "gps_code": "SSMA", + "local_code": "SP0760" + }, + { + "id": "331445", + "ident": "BR-0430", + "type": "heliport", + "name": "Maremanga Heliport", + "latitude_deg": "-12.763409", + "longitude_deg": "-38.643784", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Salvador", + "scheduled_service": "no", + "gps_code": "SSMD", + "local_code": "BA0220" + }, + { + "id": "331452", + "ident": "BR-0431", + "type": "small_airport", + "name": "Fazenda São Miguel Airport", + "latitude_deg": "-15.35926", + "longitude_deg": "-54.979972", + "elevation_ft": "2208", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Verde", + "scheduled_service": "no", + "gps_code": "SSMI", + "local_code": "MT0297" + }, + { + "id": "331454", + "ident": "BR-0432", + "type": "small_airport", + "name": "Comandante Jorge Mello Airport", + "latitude_deg": "-13.196667", + "longitude_deg": "-43.635556", + "elevation_ft": "1486", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Bom Jesus da Lapa", + "scheduled_service": "no", + "gps_code": "SSML", + "local_code": "BA0160" + }, + { + "id": "331470", + "ident": "BR-0433", + "type": "heliport", + "name": "Fazenda Igurê Helipad", + "latitude_deg": "-22.251697", + "longitude_deg": "-49.60542", + "elevation_ft": "2451", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Gália", + "scheduled_service": "no", + "gps_code": "SWXY", + "local_code": "SP0855" + }, + { + "id": "331488", + "ident": "BR-0434", + "type": "small_airport", + "name": "Fazenda Colorado Airport", + "latitude_deg": "-14.981989", + "longitude_deg": "-50.849584", + "elevation_ft": "928", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Aruanã", + "scheduled_service": "no", + "gps_code": "SDLW", + "local_code": "GO0040" + }, + { + "id": "331516", + "ident": "BR-0435", + "type": "heliport", + "name": "Metropolitan Helipad", + "latitude_deg": "-16.704961", + "longitude_deg": "-49.240892", + "elevation_ft": "2976", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiânia", + "scheduled_service": "no", + "gps_code": "SSMN", + "local_code": "GO0170" + }, + { + "id": "331517", + "ident": "BR-0436", + "type": "heliport", + "name": "Supermercados BH Helipad", + "latitude_deg": "-19.865664", + "longitude_deg": "-44.030805", + "elevation_ft": "2907", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Contagem", + "scheduled_service": "no", + "gps_code": "SSMS", + "local_code": "MG0269" + }, + { + "id": "331518", + "ident": "BR-0437", + "type": "small_airport", + "name": "Santa Maria Airport", + "latitude_deg": "-17.130347", + "longitude_deg": "-56.39312", + "elevation_ft": "387", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão de Melgaço", + "scheduled_service": "no", + "gps_code": "SSNE", + "local_code": "MT0300" + }, + { + "id": "331537", + "ident": "BR-0438", + "type": "heliport", + "name": "Louzandes Heliport", + "latitude_deg": "-16.585438", + "longitude_deg": "-48.720893", + "elevation_ft": "2999", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Silvânia", + "scheduled_service": "no", + "gps_code": "SSNL", + "local_code": "GO0171" + }, + { + "id": "331539", + "ident": "BR-0439", + "type": "heliport", + "name": "Santa Mônica Heliport", + "latitude_deg": "-25.381922", + "longitude_deg": "-49.138068", + "elevation_ft": "3087", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Colombo", + "scheduled_service": "no", + "gps_code": "SSNM", + "local_code": "PR0142" + }, + { + "id": "331540", + "ident": "BR-0440", + "type": "small_airport", + "name": "Fazenda Nova Fartura Airport", + "latitude_deg": "-14.440319", + "longitude_deg": "-54.767387", + "elevation_ft": "1499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Planalto da Serra", + "scheduled_service": "no", + "gps_code": "SSNN", + "local_code": "MT0301" + }, + { + "id": "331544", + "ident": "BR-0441", + "type": "small_airport", + "name": "Antônio Covre Airport", + "latitude_deg": "-16.734146", + "longitude_deg": "-39.43033", + "elevation_ft": "344", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Itabela", + "scheduled_service": "no", + "gps_code": "SJXZ", + "local_code": "BA0243" + }, + { + "id": "331589", + "ident": "BR-0442", + "type": "small_airport", + "name": "Fazenda Nossa Senhora Medianeira Airport", + "latitude_deg": "-22.916353", + "longitude_deg": "-53.973374", + "elevation_ft": "1230", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Naviraí", + "scheduled_service": "no", + "gps_code": "SNNR", + "local_code": "MS0221" + }, + { + "id": "331590", + "ident": "BR-0443", + "type": "small_airport", + "name": "Vila Nova Airport", + "latitude_deg": "-26.305918", + "longitude_deg": "-48.934853", + "elevation_ft": "69", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Joinville", + "scheduled_service": "no", + "gps_code": "SNNV", + "local_code": "SC0035" + }, + { + "id": "331591", + "ident": "BR-0444", + "type": "small_airport", + "name": "Cabanha Umbú Airport", + "latitude_deg": "-29.980556", + "longitude_deg": "-57.271111", + "elevation_ft": "223", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Barra do Quaraí", + "scheduled_service": "no", + "gps_code": "SNNX", + "local_code": "RS0086" + }, + { + "id": "331592", + "ident": "BR-0445", + "type": "small_airport", + "name": "Estancia Irmãos Martins Airport", + "latitude_deg": "-22.005324", + "longitude_deg": "-50.49046", + "elevation_ft": "1407", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Tupã", + "scheduled_service": "no", + "gps_code": "SNOI", + "local_code": "SP0231", + "keywords": "Bernardino" + }, + { + "id": "331594", + "ident": "BR-0446", + "type": "heliport", + "name": "Edifício The One Helipad", + "latitude_deg": "-19.946205", + "longitude_deg": "-43.956872", + "elevation_ft": "3484", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SNOO", + "local_code": "MG0258" + }, + { + "id": "331629", + "ident": "BR-0447", + "type": "small_airport", + "name": "Vale da Providência Airport", + "latitude_deg": "-10.559263", + "longitude_deg": "-61.433012", + "elevation_ft": "699", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Rodolândia", + "scheduled_service": "no", + "gps_code": "SNOP", + "local_code": "MT0262" + }, + { + "id": "331631", + "ident": "BR-0448", + "type": "small_airport", + "name": "Usina Vale do Tijuco Airport", + "latitude_deg": "-19.384722", + "longitude_deg": "-48.274167", + "elevation_ft": "2536", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberaba", + "scheduled_service": "no", + "gps_code": "SNOT", + "local_code": "MG0160" + }, + { + "id": "331633", + "ident": "BR-0449", + "type": "small_airport", + "name": "Fazenda Uval Airport", + "latitude_deg": "-17.305104", + "longitude_deg": "-56.498042", + "elevation_ft": "344", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SNPG", + "local_code": "MS0224" + }, + { + "id": "331635", + "ident": "BR-0450", + "type": "heliport", + "name": "Ribeira Heliport", + "latitude_deg": "-23.503208", + "longitude_deg": "-45.12599", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ubatuba", + "scheduled_service": "no", + "gps_code": "SNPP", + "local_code": "SP0721" + }, + { + "id": "331636", + "ident": "BR-0451", + "type": "small_airport", + "name": "Fazenda Palmeira Airport", + "latitude_deg": "-17.926765", + "longitude_deg": "-53.220476", + "elevation_ft": "2953", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alto Taquari", + "scheduled_service": "no", + "gps_code": "SNPW", + "local_code": "MT0263" + }, + { + "id": "331638", + "ident": "BR-0452", + "type": "small_airport", + "name": "Fazenda Aerovilas Airport", + "latitude_deg": "-20.242657", + "longitude_deg": "-44.806349", + "elevation_ft": "2779", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Divinópolis", + "scheduled_service": "no", + "gps_code": "SNQJ", + "local_code": "MG0292" + }, + { + "id": "331640", + "ident": "BR-0453", + "type": "heliport", + "name": "Piraquê I Helipad", + "latitude_deg": "-22.864536", + "longitude_deg": "-43.341713", + "elevation_ft": "121", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SNQL", + "local_code": "RJ0132" + }, + { + "id": "331765", + "ident": "BR-0454", + "type": "small_airport", + "name": "Fazenda São João Airport", + "latitude_deg": "-15.245652", + "longitude_deg": "-59.352935", + "elevation_ft": "988", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes e Lacerda", + "scheduled_service": "no", + "gps_code": "SNAY", + "local_code": "MT0240" + }, + { + "id": "331766", + "ident": "BR-0455", + "type": "heliport", + "name": "Praia da Costa Helipad", + "latitude_deg": "-20.343285", + "longitude_deg": "-40.289668", + "elevation_ft": "187", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Vila Velha", + "scheduled_service": "no", + "gps_code": "SNBP", + "local_code": "ES0021" + }, + { + "id": "331767", + "ident": "BR-0456", + "type": "heliport", + "name": "Fazenda Alegria Heliport", + "latitude_deg": "-19.359449", + "longitude_deg": "-44.056764", + "elevation_ft": "2211", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Funilândia", + "scheduled_service": "no", + "gps_code": "SNBU", + "local_code": "MG0249" + }, + { + "id": "331770", + "ident": "BR-0457", + "type": "heliport", + "name": "Bela Vista Heliport", + "latitude_deg": "-7.948262", + "longitude_deg": "-36.219124", + "elevation_ft": "1460", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Santa Cruz do Capibaribe", + "scheduled_service": "no", + "gps_code": "SNBV", + "local_code": "PE0039" + }, + { + "id": "331771", + "ident": "BR-0458", + "type": "heliport", + "name": "Torre Boulevard Helipad", + "latitude_deg": "-19.920428", + "longitude_deg": "-43.920946", + "elevation_ft": "3080", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SNBY", + "local_code": "MG0250" + }, + { + "id": "331772", + "ident": "BR-0459", + "type": "small_airport", + "name": "Fazenda Centrino Airport", + "latitude_deg": "-13.576111", + "longitude_deg": "-60.802778", + "elevation_ft": "643", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Cabixi", + "scheduled_service": "no", + "gps_code": "SNCC", + "local_code": "RO0021" + }, + { + "id": "331773", + "ident": "BR-0460", + "type": "small_airport", + "name": "Fazenda Cedro Airport", + "latitude_deg": "-20.761963", + "longitude_deg": "-54.447852", + "elevation_ft": "1844", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "gps_code": "SNCG", + "local_code": "MS0201" + }, + { + "id": "331826", + "ident": "BR-0461", + "type": "closed", + "name": "Fazenda Nova Jerusalém Airport", + "latitude_deg": "-12.594081", + "longitude_deg": "-55.697992", + "elevation_ft": "1230", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "local_code": "MT0279", + "keywords": "SSAC" + }, + { + "id": "331834", + "ident": "BR-0462", + "type": "heliport", + "name": "SC Araras Heliport", + "latitude_deg": "-22.427264", + "longitude_deg": "-43.216877", + "elevation_ft": "2907", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Petrópolis", + "scheduled_service": "no", + "gps_code": "SSAR", + "local_code": "RJ0141" + }, + { + "id": "331836", + "ident": "BR-0463", + "type": "small_airport", + "name": "Fazenda Liberdade Airport", + "latitude_deg": "-12.069342", + "longitude_deg": "-52.825872", + "elevation_ft": "1099", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Querência", + "scheduled_service": "no", + "gps_code": "SNRO", + "local_code": "MT0640", + "keywords": "SSAT, Fazenda Chapadão" + }, + { + "id": "331837", + "ident": "BR-0464", + "type": "small_airport", + "name": "Stratus Ale Airport", + "latitude_deg": "-5.738476", + "longitude_deg": "-35.218407", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Natal", + "scheduled_service": "no", + "gps_code": "SSAZ", + "local_code": "RN0010" + }, + { + "id": "331838", + "ident": "BR-0465", + "type": "small_airport", + "name": "Fazenda Arizona", + "latitude_deg": "-11.180094", + "longitude_deg": "-45.938674", + "elevation_ft": "2569", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Formosa do Rio Preto", + "scheduled_service": "no", + "gps_code": "SSBA", + "local_code": "BA0150" + }, + { + "id": "331839", + "ident": "BR-0466", + "type": "small_airport", + "name": "Fazenda Balada Airstrip", + "latitude_deg": "-17.375833", + "longitude_deg": "-45.95", + "elevation_ft": "1804", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "João Pinheiro", + "scheduled_service": "no", + "gps_code": "SSBB", + "local_code": "MG0177" + }, + { + "id": "331872", + "ident": "BR-0467", + "type": "heliport", + "name": "Batalhão de Operações Aéreas do CBMSC Heliport", + "latitude_deg": "-27.614324", + "longitude_deg": "-48.528333", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Aéreas do CBMSC", + "scheduled_service": "yes", + "gps_code": "SSBO", + "local_code": "SC0086" + }, + { + "id": "331877", + "ident": "BR-0468", + "type": "small_airport", + "name": "Fazenda Brusque Airport", + "latitude_deg": "-10.150683", + "longitude_deg": "-52.286279", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Fazenda Brusque", + "scheduled_service": "no", + "gps_code": "SSBQ", + "local_code": "MT0281" + }, + { + "id": "331882", + "ident": "BR-0469", + "type": "heliport", + "name": "Moro Golf Club Heliport", + "latitude_deg": "-25.114826", + "longitude_deg": "-50.172313", + "elevation_ft": "2903", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Ponta Grossa", + "scheduled_service": "no", + "gps_code": "SWTM", + "local_code": "PR0148" + }, + { + "id": "331884", + "ident": "BR-0470", + "type": "heliport", + "name": "BS Tower Helipad", + "latitude_deg": "-3.731127", + "longitude_deg": "-38.515879", + "elevation_ft": "354", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SWTW", + "local_code": "CE0069" + }, + { + "id": "331886", + "ident": "BR-0471", + "type": "heliport", + "name": "Fazenda Santa Inês Heliport", + "latitude_deg": "-22.176727", + "longitude_deg": "-46.715287", + "elevation_ft": "3586", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Espírito Santo do Pinhal", + "scheduled_service": "no", + "gps_code": "SWSY", + "local_code": "SP0830", + "keywords": "SWTZ" + }, + { + "id": "331887", + "ident": "BR-0472", + "type": "small_airport", + "name": "Belo Horizonte Airport", + "latitude_deg": "-12.163333", + "longitude_deg": "-38.293333", + "elevation_ft": "436", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Araçás", + "scheduled_service": "no", + "gps_code": "SWUB", + "local_code": "BA0185" + }, + { + "id": "331888", + "ident": "BR-0473", + "type": "heliport", + "name": "Fazenda Coqueiros Heliport", + "latitude_deg": "-19.843757", + "longitude_deg": "-44.417058", + "elevation_ft": "2510", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Florestal", + "scheduled_service": "no", + "gps_code": "SJXF", + "local_code": "MG0246" + }, + { + "id": "331927", + "ident": "BR-0474", + "type": "heliport", + "name": "Pingo D'Água Heliport", + "latitude_deg": "-22.998754", + "longitude_deg": "-44.436647", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra dos Reis", + "scheduled_service": "no", + "gps_code": "SWWN", + "local_code": "RJ0169" + }, + { + "id": "331928", + "ident": "BR-0475", + "type": "heliport", + "name": "Helvétia MF", + "latitude_deg": "-23.06225", + "longitude_deg": "-47.162242", + "elevation_ft": "2083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Indaiatuba", + "scheduled_service": "no", + "gps_code": "SWWJ", + "local_code": "SP0839" + }, + { + "id": "335659", + "ident": "BR-0476", + "type": "small_airport", + "name": "Fazenda Progresso Airport", + "latitude_deg": "-3.373164", + "longitude_deg": "-47.42426", + "elevation_ft": "594", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Paragominas", + "scheduled_service": "no", + "gps_code": "SIOU", + "local_code": "PA0050" + }, + { + "id": "331933", + "ident": "BR-0477", + "type": "heliport", + "name": "Dom Pedro Business Park Heliport", + "latitude_deg": "-23.05079", + "longitude_deg": "-46.673663", + "elevation_ft": "2461", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Atibaia", + "scheduled_service": "no", + "gps_code": "SWWD", + "local_code": "SP0838" + }, + { + "id": "332451", + "ident": "BR-0478", + "type": "small_airport", + "name": "Ilha das Flores Airport", + "latitude_deg": "-13.053664", + "longitude_deg": "-62.564564", + "elevation_ft": "456", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Alta Floresta d'Oeste", + "scheduled_service": "no", + "keywords": "SDSW" + }, + { + "id": "331938", + "ident": "BR-0479", + "type": "heliport", + "name": "Helibrusque Heliport", + "latitude_deg": "-27.08", + "longitude_deg": "-48.912778", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Brusque", + "scheduled_service": "no", + "gps_code": "SWWB", + "local_code": "SC0105" + }, + { + "id": "331991", + "ident": "BR-0480", + "type": "small_airport", + "name": "Fazenda Ventania Airport", + "latitude_deg": "-13.146056", + "longitude_deg": "-59.096114", + "elevation_ft": "1739", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campos de Júlio", + "scheduled_service": "no", + "gps_code": "SDEV", + "local_code": "MT0034" + }, + { + "id": "331993", + "ident": "BR-0481", + "type": "heliport", + "name": "Parque Maeda Heliport", + "latitude_deg": "-23.339167", + "longitude_deg": "-47.3475", + "elevation_ft": "2142", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itu", + "scheduled_service": "no", + "gps_code": "SDEX", + "local_code": "SP0322" + }, + { + "id": "331994", + "ident": "BR-0482", + "type": "heliport", + "name": "Frade 1 Heliport", + "latitude_deg": "-22.969466", + "longitude_deg": "-44.444066", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra dos Reis", + "scheduled_service": "no", + "gps_code": "SDFA", + "local_code": "RJ0035" + }, + { + "id": "331996", + "ident": "BR-0483", + "type": "heliport", + "name": "CJB Curitiba Heliport", + "latitude_deg": "-25.438249", + "longitude_deg": "-49.24063", + "elevation_ft": "3100", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Curitiba", + "scheduled_service": "no", + "gps_code": "SDKB", + "local_code": "PR0103" + }, + { + "id": "331997", + "ident": "BR-0484", + "type": "heliport", + "name": "Agéo Zazenda Paraopeba Heliport", + "latitude_deg": "-19.258062", + "longitude_deg": "-44.477475", + "elevation_ft": "2425", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Paraopeba", + "scheduled_service": "no", + "gps_code": "SDLJ", + "local_code": "MG0217" + }, + { + "id": "332047", + "ident": "BR-0485", + "type": "heliport", + "name": "Helimater Heliport", + "latitude_deg": "-23.04208", + "longitude_deg": "-44.192114", + "elevation_ft": "85", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra dos Reis", + "scheduled_service": "no", + "gps_code": "SDNX", + "local_code": "RJ0050" + }, + { + "id": "332049", + "ident": "BR-0486", + "type": "small_airport", + "name": "Fazenda Ponte Serrada Airport", + "latitude_deg": "-13.885715", + "longitude_deg": "-57.868329", + "elevation_ft": "1965", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo do Parecis", + "scheduled_service": "no", + "gps_code": "SDNY", + "local_code": "MT0049" + }, + { + "id": "332055", + "ident": "BR-0487", + "type": "heliport", + "name": "Concórdia Corporate Helipad", + "latitude_deg": "-19.983692", + "longitude_deg": "-43.945922", + "elevation_ft": "4134", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Nova Lima", + "scheduled_service": "no", + "gps_code": "SDNZ", + "local_code": "MG0219" + }, + { + "id": "332062", + "ident": "BR-0488", + "type": "heliport", + "name": "Catuama II Heliport", + "latitude_deg": "-7.650843", + "longitude_deg": "-34.829953", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Goiana", + "scheduled_service": "no", + "gps_code": "SDOM", + "local_code": "PE0024" + }, + { + "id": "332064", + "ident": "BR-0489", + "type": "small_airport", + "name": "Fazenda Monte Dourado Airport", + "latitude_deg": "-6.223943", + "longitude_deg": "-51.756718", + "elevation_ft": "774", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "São Félix do Xingu", + "scheduled_service": "no", + "gps_code": "SDOY", + "local_code": "PA0035" + }, + { + "id": "332066", + "ident": "BR-0490", + "type": "heliport", + "name": "Edifício Prime Business Center Helipad", + "latitude_deg": "-20.536099", + "longitude_deg": "-47.389709", + "elevation_ft": "3340", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Franca", + "scheduled_service": "no", + "gps_code": "SDPB", + "local_code": "SP0400" + }, + { + "id": "332089", + "ident": "BR-0491", + "type": "heliport", + "name": "Soufer Paulínia Heliport", + "latitude_deg": "-22.727014", + "longitude_deg": "-47.167722", + "elevation_ft": "1942", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Paulínia", + "scheduled_service": "no", + "gps_code": "SDPF", + "local_code": "SP0401" + }, + { + "id": "332090", + "ident": "BR-0492", + "type": "heliport", + "name": "Pampas Heliport", + "latitude_deg": "-29.361342", + "longitude_deg": "-50.839693", + "elevation_ft": "2700", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Canela", + "scheduled_service": "no", + "keywords": "SDPE" + }, + { + "id": "332091", + "ident": "BR-0493", + "type": "heliport", + "name": "Palacio Guanabara Heliport", + "latitude_deg": "-22.940478", + "longitude_deg": "-43.187907", + "elevation_ft": "341", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SDPG", + "local_code": "RJ0052" + }, + { + "id": "332152", + "ident": "BR-0494", + "type": "heliport", + "name": "Cidade Empresarial Helipad", + "latitude_deg": "-16.750022", + "longitude_deg": "-49.304726", + "elevation_ft": "2959", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Aparecida de Goiânia", + "scheduled_service": "no", + "gps_code": "SDPJ", + "local_code": "GO0182" + }, + { + "id": "332153", + "ident": "BR-0495", + "type": "small_airport", + "name": "Fazenda Cresciumal Airport", + "latitude_deg": "-22.148482", + "longitude_deg": "-47.27842", + "elevation_ft": "1867", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Leme", + "scheduled_service": "no", + "keywords": "SDPJ" + }, + { + "id": "332154", + "ident": "BR-0496", + "type": "small_airport", + "name": "Fazenda Turazzi Airport", + "latitude_deg": "-15.155663", + "longitude_deg": "-59.310886", + "elevation_ft": "1066", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes e Lacerda", + "scheduled_service": "no", + "gps_code": "SDPR", + "local_code": "MT0052" + }, + { + "id": "332155", + "ident": "BR-0497", + "type": "heliport", + "name": "Hospital Estadual Mário Covas Helipad", + "latitude_deg": "-23.670723", + "longitude_deg": "-46.532967", + "elevation_ft": "2648", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santo André", + "scheduled_service": "no", + "gps_code": "SDPS", + "local_code": "SP0406" + }, + { + "id": "332156", + "ident": "BR-0498", + "type": "heliport", + "name": "Hospital Estadual Mário Covas Helipad", + "latitude_deg": "-23.670723", + "longitude_deg": "-46.532967", + "elevation_ft": "2648", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santo André", + "scheduled_service": "no", + "gps_code": "SDPS", + "local_code": "SP0406" + }, + { + "id": "332245", + "ident": "BR-0499", + "type": "heliport", + "name": "Kuehlmeyer Heliport", + "latitude_deg": "-3.510072", + "longitude_deg": "-38.889581", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "São Gonçalo do Amarante", + "scheduled_service": "no", + "keywords": "SCCC" + }, + { + "id": "332339", + "ident": "BR-0500", + "type": "small_airport", + "name": "Fazenda Candelária Airport", + "latitude_deg": "-16.112453", + "longitude_deg": "-60.014395", + "elevation_ft": "902", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SDQD", + "local_code": "MT0054", + "keywords": "SDZE" + }, + { + "id": "332341", + "ident": "BR-0501", + "type": "small_airport", + "name": "Fazenda Floresta Airport", + "latitude_deg": "-17.598061", + "longitude_deg": "-50.694442", + "elevation_ft": "2008", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Santo Antônio da Barra", + "scheduled_service": "no", + "gps_code": "SDQF", + "local_code": "GO0043" + }, + { + "id": "332342", + "ident": "BR-0502", + "type": "small_airport", + "name": "Fazenda Santa Clara Airport", + "latitude_deg": "-10.653375", + "longitude_deg": "-58.602591", + "elevation_ft": "754", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Castanheira", + "scheduled_service": "no", + "gps_code": "SDQH", + "local_code": "MT0056" + }, + { + "id": "332378", + "ident": "BR-0503", + "type": "small_airport", + "name": "Fazenda Santo Antônio Airport", + "latitude_deg": "-11.708202", + "longitude_deg": "-45.985349", + "elevation_ft": "2657", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Barreiras", + "scheduled_service": "no", + "gps_code": "SDQM", + "local_code": "BA0076" + }, + { + "id": "332379", + "ident": "BR-0504", + "type": "small_airport", + "name": "Fazenda Palmares 2 Airport", + "latitude_deg": "-11.656275", + "longitude_deg": "-46.052505", + "elevation_ft": "2700", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Barreiras", + "scheduled_service": "no", + "gps_code": "SDQN", + "local_code": "BA0077" + }, + { + "id": "332386", + "ident": "BR-0505", + "type": "heliport", + "name": "Pavão Heliport", + "latitude_deg": "-23.432797", + "longitude_deg": "-46.41059", + "elevation_ft": "2579", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarulhos", + "scheduled_service": "no", + "gps_code": "SDQV", + "local_code": "SP0411" + }, + { + "id": "332388", + "ident": "BR-0506", + "type": "heliport", + "name": "Guararema Heliport", + "latitude_deg": "-23.326475", + "longitude_deg": "-46.128665", + "elevation_ft": "1942", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guararema", + "scheduled_service": "no", + "gps_code": "SDQW", + "local_code": "SP0412" + }, + { + "id": "332391", + "ident": "BR-0507", + "type": "small_airport", + "name": "Fazenda Andorinha Airport", + "latitude_deg": "-13.781944", + "longitude_deg": "-49.088611", + "elevation_ft": "1327", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Estrela do Norte", + "scheduled_service": "no", + "gps_code": "SDRD", + "local_code": "GO0044" + }, + { + "id": "332393", + "ident": "BR-0508", + "type": "small_airport", + "name": "Fazenda Retiro Velho Airport", + "latitude_deg": "-21.449769", + "longitude_deg": "-57.826467", + "elevation_ft": "289", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SDRL", + "local_code": "MS0048" + }, + { + "id": "332397", + "ident": "BR-0509", + "type": "small_airport", + "name": "Sítio Ouro Preto Airport", + "latitude_deg": "-22.251257", + "longitude_deg": "-43.399781", + "elevation_ft": "1089", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Vassouras", + "scheduled_service": "no", + "gps_code": "SDRY", + "local_code": "RJ0018" + }, + { + "id": "332400", + "ident": "BR-0510", + "type": "small_airport", + "name": "Fazenda Vó Zita do Rio Vermelho Airport", + "latitude_deg": "-19.615035", + "longitude_deg": "-56.88113", + "elevation_ft": "312", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SDRZ", + "local_code": "MS0051" + }, + { + "id": "332447", + "ident": "BR-0511", + "type": "small_airport", + "name": "Ipiranga Airport", + "latitude_deg": "-17.746047", + "longitude_deg": "-53.355196", + "elevation_ft": "2867", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alto Taquari", + "scheduled_service": "no", + "gps_code": "SDSG", + "local_code": "MT0059" + }, + { + "id": "332448", + "ident": "BR-0512", + "type": "small_airport", + "name": "Fazenda Alice Airport", + "latitude_deg": "-7.62694", + "longitude_deg": "-45.693068", + "elevation_ft": "1240", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Sambaíba", + "scheduled_service": "no", + "gps_code": "SDSI", + "local_code": "MA0016" + }, + { + "id": "332449", + "ident": "BR-0513", + "type": "small_airport", + "name": "Executivo Airport", + "latitude_deg": "-24.871085", + "longitude_deg": "-53.46509", + "elevation_ft": "2293", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Cascavel", + "scheduled_service": "no", + "gps_code": "SDSJ", + "local_code": "PR0039", + "keywords": "Aerocascavel Airport" + }, + { + "id": "332456", + "ident": "BR-0514", + "type": "heliport", + "name": "Riviera Portofino Heliport", + "latitude_deg": "-22.998333", + "longitude_deg": "-46.368333", + "elevation_ft": "2897", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Piracaia", + "scheduled_service": "no", + "gps_code": "SDSY", + "local_code": "SP0851" + }, + { + "id": "332458", + "ident": "BR-0515", + "type": "small_airport", + "name": "Fazenda Horizonte Airstrip", + "latitude_deg": "-17.66482", + "longitude_deg": "-54.820711", + "elevation_ft": "1526", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Sonora", + "scheduled_service": "no", + "keywords": "SDSY" + }, + { + "id": "332549", + "ident": "BR-0516", + "type": "small_airport", + "name": "Fazenda Tamanduá Airport", + "latitude_deg": "-13.14", + "longitude_deg": "-57.576667", + "elevation_ft": "1220", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SDTH" + }, + { + "id": "332578", + "ident": "BR-0517", + "type": "heliport", + "name": "Hotel Golden Tulip BH Helipad", + "latitude_deg": "-19.914521", + "longitude_deg": "-43.937631", + "elevation_ft": "3084", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SDTL", + "local_code": "MG0220" + }, + { + "id": "332587", + "ident": "BR-0518", + "type": "closed", + "name": "Natural Drinks Jarinu Heliport", + "latitude_deg": "-23.038055", + "longitude_deg": "-46.695833", + "elevation_ft": "2582", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jarinu", + "scheduled_service": "no", + "keywords": "SDTL" + }, + { + "id": "332623", + "ident": "BR-0519", + "type": "heliport", + "name": "Tribuna Square Heliport", + "latitude_deg": "-23.936942", + "longitude_deg": "-46.321948", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santos", + "scheduled_service": "no", + "gps_code": "SDTQ", + "local_code": "SP0427" + }, + { + "id": "332625", + "ident": "BR-0520", + "type": "small_airport", + "name": "Fazenda Triunfo Airport", + "latitude_deg": "-16.132092", + "longitude_deg": "-59.897897", + "elevation_ft": "807", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SDTR", + "local_code": "MT0063" + }, + { + "id": "332627", + "ident": "BR-0521", + "type": "small_airport", + "name": "Fazenda Miragem Airport", + "latitude_deg": "-13.609167", + "longitude_deg": "-58.525555", + "elevation_ft": "1886", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SDTW", + "local_code": "MT0064" + }, + { + "id": "332629", + "ident": "BR-0522", + "type": "small_airport", + "name": "Fazenda Fortaleza Airport", + "latitude_deg": "-8.870885", + "longitude_deg": "-45.561229", + "elevation_ft": "1673", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Santa Filomena", + "scheduled_service": "no", + "gps_code": "SDTZ", + "local_code": "PI0017" + }, + { + "id": "332649", + "ident": "BR-0523", + "type": "small_airport", + "name": "Vale do Curuá Airport", + "latitude_deg": "-7.038713", + "longitude_deg": "-55.393581", + "elevation_ft": "738", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Novo Progresso", + "scheduled_service": "no", + "gps_code": "SDUA", + "local_code": "PA0036" + }, + { + "id": "332650", + "ident": "BR-0524", + "type": "small_airport", + "name": "Santa Rosa Airport", + "latitude_deg": "4.24349", + "longitude_deg": "-61.158593", + "elevation_ft": "253", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SDUG", + "local_code": "RR0019" + }, + { + "id": "332651", + "ident": "BR-0525", + "type": "heliport", + "name": "Parque Logístico do Sudoeste Heliport", + "latitude_deg": "-14.911746", + "longitude_deg": "-40.870106", + "elevation_ft": "2841", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Vitória da Conquista", + "scheduled_service": "no", + "gps_code": "SDUO", + "local_code": "BA0190" + }, + { + "id": "332656", + "ident": "BR-0526", + "type": "small_airport", + "name": "Itaboraí Airport", + "latitude_deg": "-22.712506", + "longitude_deg": "-42.84233", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Itaboraí", + "scheduled_service": "no", + "gps_code": "SDUR", + "local_code": "RJ0019" + }, + { + "id": "332708", + "ident": "BR-0527", + "type": "small_airport", + "name": "Fazenda Sucuri Airport", + "latitude_deg": "-9.191392", + "longitude_deg": "-61.770878", + "elevation_ft": "502", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Machadinho d'Oeste", + "scheduled_service": "no", + "gps_code": "SDUS", + "local_code": "RO0010" + }, + { + "id": "332709", + "ident": "BR-0528", + "type": "heliport", + "name": "Valda Costa Heliport", + "latitude_deg": "-8.917833", + "longitude_deg": "-35.165015", + "elevation_ft": "36", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Maragogi", + "scheduled_service": "no", + "gps_code": "SDVC", + "local_code": "AL0014" + }, + { + "id": "332722", + "ident": "BR-0529", + "type": "small_airport", + "name": "Fazenda São Pedro Airport", + "latitude_deg": "-21.794693", + "longitude_deg": "-53.474602", + "elevation_ft": "1191", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Andradina", + "scheduled_service": "no", + "gps_code": "SDVK", + "local_code": "MS0057" + }, + { + "id": "332724", + "ident": "BR-0530", + "type": "heliport", + "name": "S.M.S. Heliport", + "latitude_deg": "-22.689313", + "longitude_deg": "-45.552664", + "elevation_ft": "5646", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campos do Jordão", + "scheduled_service": "no", + "gps_code": "SDVN", + "local_code": "SP0435" + }, + { + "id": "332737", + "ident": "BR-0531", + "type": "small_airport", + "name": "Clube Voart Airport", + "latitude_deg": "-7.284167", + "longitude_deg": "-48.130556", + "elevation_ft": "850", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Araguaína", + "scheduled_service": "no", + "gps_code": "SDVO", + "local_code": "TO0015" + }, + { + "id": "332741", + "ident": "BR-0532", + "type": "small_airport", + "name": "Fazenda Cabeceira Verde Airport", + "latitude_deg": "-8.155351", + "longitude_deg": "-46.737958", + "elevation_ft": "1463", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Campos Lindos", + "scheduled_service": "no", + "gps_code": "SDVQ", + "local_code": "TO0016" + }, + { + "id": "332771", + "ident": "BR-0533", + "type": "heliport", + "name": "Conde Francisco Matarazzo Helipad", + "latitude_deg": "-23.563535", + "longitude_deg": "-46.652842", + "elevation_ft": "3287", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDVU", + "local_code": "SP0437" + }, + { + "id": "332773", + "ident": "BR-0534", + "type": "small_airport", + "name": "Vitalli Airport", + "latitude_deg": "-21.519974", + "longitude_deg": "-49.999379", + "elevation_ft": "1486", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Avanhandava", + "scheduled_service": "no", + "gps_code": "SDVY", + "local_code": "SP0156" + }, + { + "id": "332904", + "ident": "BR-0535", + "type": "small_airport", + "name": "Vitalli Airport", + "latitude_deg": "-6.639812", + "longitude_deg": "-36.653894", + "elevation_ft": "1037", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Parelhas", + "scheduled_service": "no", + "gps_code": "SDVZ", + "local_code": "RN0006" + }, + { + "id": "332906", + "ident": "BR-0536", + "type": "small_airport", + "name": "Palmeiras Airport", + "latitude_deg": "-18.934444", + "longitude_deg": "-57.049444", + "elevation_ft": "305", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SDWE", + "local_code": "MS0415" + }, + { + "id": "332908", + "ident": "BR-0537", + "type": "small_airport", + "name": "SAPAN Airport", + "latitude_deg": "4.574167", + "longitude_deg": "-60.739722", + "elevation_ft": "1089", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SDWF", + "local_code": "RR0022" + }, + { + "id": "332909", + "ident": "BR-0538", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-13.059219", + "longitude_deg": "-45.133013", + "elevation_ft": "2480", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SDWG", + "local_code": "BA0080" + }, + { + "id": "332917", + "ident": "BR-0539", + "type": "small_airport", + "name": "Fazenda São Sebastião Airport", + "latitude_deg": "-13.330714", + "longitude_deg": "-58.041757", + "elevation_ft": "1654", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo do Parecis", + "scheduled_service": "no", + "gps_code": "SDWJ", + "local_code": "MT0071" + }, + { + "id": "332919", + "ident": "BR-0540", + "type": "heliport", + "name": "Pontal de Itapirapuan Heliport", + "latitude_deg": "-22.957805", + "longitude_deg": "-44.338083", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra dos Reis", + "scheduled_service": "no", + "gps_code": "SDWP", + "local_code": "RJ0061" + }, + { + "id": "332921", + "ident": "BR-0541", + "type": "heliport", + "name": "Helicentro ALLTA Heliport", + "latitude_deg": "-23.502798", + "longitude_deg": "-46.919339", + "elevation_ft": "3133", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SDWS", + "local_code": "SP0441" + }, + { + "id": "332924", + "ident": "BR-0542", + "type": "heliport", + "name": "Milano Helipad", + "latitude_deg": "-27.587948", + "longitude_deg": "-48.542801", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Florianópolis", + "scheduled_service": "no", + "gps_code": "SDWW", + "local_code": "SC0117" + }, + { + "id": "332926", + "ident": "BR-0543", + "type": "heliport", + "name": "Caridade Hospital Helipad", + "latitude_deg": "-29.691725", + "longitude_deg": "-53.806093", + "elevation_ft": "646", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Santa Maria", + "scheduled_service": "no", + "gps_code": "SDWY", + "local_code": "RS0104" + }, + { + "id": "332984", + "ident": "BR-0544", + "type": "heliport", + "name": "Volkswagen São Carlos Heliport", + "latitude_deg": "-22.063571", + "longitude_deg": "-47.874251", + "elevation_ft": "2694", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Carlos", + "scheduled_service": "no", + "gps_code": "SWVL", + "local_code": "SP0837" + }, + { + "id": "332985", + "ident": "BR-0545", + "type": "small_airport", + "name": "Clube de Voo Fazenda Novo Horizonte Airport", + "latitude_deg": "-23.173337", + "longitude_deg": "-47.41136", + "elevation_ft": "1768", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itu", + "scheduled_service": "no", + "gps_code": "SWVN", + "local_code": "SP0283" + }, + { + "id": "332987", + "ident": "BR-0546", + "type": "small_airport", + "name": "Fazenda São Judas Tadeu Airport", + "latitude_deg": "-13.598056", + "longitude_deg": "-59.950556", + "elevation_ft": "1558", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SWVJ", + "local_code": "MT0416" + }, + { + "id": "333018", + "ident": "BR-0547", + "type": "small_airport", + "name": "Fazenda Porto Ciriaco Airport", + "latitude_deg": "-19.697111", + "longitude_deg": "-56.28251", + "elevation_ft": "364", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SDCF", + "local_code": "MS0025" + }, + { + "id": "333019", + "ident": "BR-0548", + "type": "small_airport", + "name": "Fazenda Vista Alegre Airport", + "latitude_deg": "-22.597778", + "longitude_deg": "-53.691479", + "elevation_ft": "1099", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Novo Horizonte do Sul", + "scheduled_service": "no", + "gps_code": "SDQT", + "local_code": "MS0046", + "keywords": "SSDK" + }, + { + "id": "333020", + "ident": "BR-0549", + "type": "small_airport", + "name": "Jonis Pereco Airport", + "latitude_deg": "-17.591322", + "longitude_deg": "-45.050057", + "elevation_ft": "1801", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Buritizeiro", + "scheduled_service": "no", + "gps_code": "SDZW", + "local_code": "MG0088" + }, + { + "id": "333021", + "ident": "BR-0550", + "type": "small_airport", + "name": "Fazenda Lagoa Vermelha Airport", + "latitude_deg": "-16.235051", + "longitude_deg": "-53.41453", + "elevation_ft": "2493", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Guiratinga", + "scheduled_service": "no", + "gps_code": "SDZV", + "local_code": "MT0075" + }, + { + "id": "333022", + "ident": "BR-0551", + "type": "heliport", + "name": "Pravda Helipad", + "latitude_deg": "-23.497468", + "longitude_deg": "-46.847212", + "elevation_ft": "2736", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SDZT", + "local_code": "SP0461" + }, + { + "id": "333023", + "ident": "BR-0552", + "type": "small_airport", + "name": "Serra Branca Agrícola Airport", + "latitude_deg": "-8.011944", + "longitude_deg": "-44.721111", + "elevation_ft": "1519", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Uruçuí", + "scheduled_service": "no", + "gps_code": "SDZS", + "local_code": "PI0019" + }, + { + "id": "333031", + "ident": "BR-0553", + "type": "small_airport", + "name": "São José Airport", + "latitude_deg": "-15.234316", + "longitude_deg": "-54.751954", + "elevation_ft": "2260", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Verde", + "scheduled_service": "no", + "gps_code": "SJ6U", + "local_code": "MT0816", + "keywords": "SDZL" + }, + { + "id": "333033", + "ident": "BR-0554", + "type": "small_airport", + "name": "Fazenda Porteirinhas Airport", + "latitude_deg": "-18.917222", + "longitude_deg": "-44.454444", + "elevation_ft": "2343", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Curvelo", + "scheduled_service": "no", + "keywords": "SDZJ" + }, + { + "id": "333035", + "ident": "BR-0555", + "type": "heliport", + "name": "Península Heliport", + "latitude_deg": "-15.830717", + "longitude_deg": "-47.866412", + "elevation_ft": "3304", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SDZA", + "local_code": "DF0011" + }, + { + "id": "333052", + "ident": "BR-0556", + "type": "heliport", + "name": "Business Center Renascença Helipad", + "latitude_deg": "-2.498611", + "longitude_deg": "-44.284722", + "elevation_ft": "230", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "São Luís", + "scheduled_service": "no", + "gps_code": "SDYY", + "local_code": "MA0056" + }, + { + "id": "333053", + "ident": "BR-0557", + "type": "heliport", + "name": "Basalto Base 6 Heliport", + "latitude_deg": "-23.003931", + "longitude_deg": "-47.088285", + "elevation_ft": "2136", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SISB", + "local_code": "SP0549" + }, + { + "id": "333054", + "ident": "BR-0558", + "type": "heliport", + "name": "Comercial Aquidabã Helipad", + "latitude_deg": "-22.911077", + "longitude_deg": "-47.055126", + "elevation_ft": "2520", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SIYB", + "local_code": "SP0576" + }, + { + "id": "333060", + "ident": "BR-0559", + "type": "small_airport", + "name": "Fazenda Tapiraguaia Airport", + "latitude_deg": "-10.542347", + "longitude_deg": "-50.560027", + "elevation_ft": "600", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santa Terezinha", + "scheduled_service": "no", + "gps_code": "SJZE", + "local_code": "MT0236" + }, + { + "id": "333061", + "ident": "BR-0560", + "type": "small_airport", + "name": "Fazenda São Geraldo Airport", + "latitude_deg": "-9.573737", + "longitude_deg": "-49.718342", + "elevation_ft": "538", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Caseara", + "scheduled_service": "no", + "gps_code": "SJZG", + "local_code": "TO0035" + }, + { + "id": "333152", + "ident": "BR-0561", + "type": "heliport", + "name": "Ernesto Heliport", + "latitude_deg": "-15.334498", + "longitude_deg": "-59.256475", + "elevation_ft": "1171", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes e Lacerda", + "scheduled_service": "no", + "gps_code": "SD9W", + "local_code": "MT0735", + "keywords": "SSBZ, Mineração Serra da Borda" + }, + { + "id": "333153", + "ident": "BR-0562", + "type": "small_airport", + "name": "Fazenda Centro Oeste Airport", + "latitude_deg": "-13.410128", + "longitude_deg": "-57.156867", + "elevation_ft": "1273", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Maringá", + "scheduled_service": "no", + "gps_code": "SSCW", + "local_code": "MT0282" + }, + { + "id": "333154", + "ident": "BR-0563", + "type": "heliport", + "name": "Hospital Santa Isabel Helipad", + "latitude_deg": "-26.923861", + "longitude_deg": "-49.066264", + "elevation_ft": "154", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Blumenau", + "scheduled_service": "no", + "gps_code": "SSCZ", + "local_code": "SC0088" + }, + { + "id": "333187", + "ident": "BR-0564", + "type": "small_airport", + "name": "Fazenda Santa Terezinha Airport", + "latitude_deg": "-13.67169", + "longitude_deg": "-55.533357", + "elevation_ft": "1575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santa Rita do Trivelato", + "scheduled_service": "no", + "gps_code": "SICS", + "local_code": "MT0086", + "keywords": "SSDA" + }, + { + "id": "333188", + "ident": "BR-0565", + "type": "small_airport", + "name": "Ecides Fires Airport", + "latitude_deg": "-12.51833", + "longitude_deg": "-38.501036", + "elevation_ft": "148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Sebastião do Passé", + "scheduled_service": "no", + "gps_code": "SSDF", + "local_code": "BA0152" + }, + { + "id": "333189", + "ident": "BR-0566", + "type": "heliport", + "name": "Dias Branco Heliport", + "latitude_deg": "-3.745417", + "longitude_deg": "-38.499786", + "elevation_ft": "167", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SSDJ", + "local_code": "CE0057" + }, + { + "id": "333193", + "ident": "BR-0567", + "type": "small_airport", + "name": "Fazenda Nova Fronteira Airport", + "latitude_deg": "-10.318907", + "longitude_deg": "-45.980425", + "elevation_ft": "2625", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Barreiras do Piauí", + "scheduled_service": "no", + "gps_code": "SSDN", + "local_code": "PI0035" + }, + { + "id": "333194", + "ident": "BR-0568", + "type": "small_airport", + "name": "São Pedro Airport", + "latitude_deg": "-16.753778", + "longitude_deg": "-39.316389", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Porto Seguro", + "scheduled_service": "no", + "gps_code": "SSDO", + "local_code": "BA0155" + }, + { + "id": "333222", + "ident": "BR-0569", + "type": "medium_airport", + "name": "Glauber de Andrade Rocha Airport", + "latitude_deg": "-14.907885", + "longitude_deg": "-40.914804", + "elevation_ft": "2940", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Vitória da Conquista", + "scheduled_service": "yes", + "gps_code": "SBVC", + "iata_code": "VDC", + "local_code": "BA0005", + "wikipedia_link": "https://en.wikipedia.org/wiki/Glauber_Rocha_Airport", + "keywords": "SSVC" + }, + { + "id": "333225", + "ident": "BR-0570", + "type": "heliport", + "name": "Vila do Farol Heliport", + "latitude_deg": "-27.149238", + "longitude_deg": "-48.498243", + "elevation_ft": "121", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Bombinhas", + "scheduled_service": "no", + "gps_code": "SSVF", + "local_code": "SC0097" + }, + { + "id": "333227", + "ident": "BR-0571", + "type": "small_airport", + "name": "Fazenda São João Airport", + "latitude_deg": "-17.936111", + "longitude_deg": "-53.904722", + "elevation_ft": "1132", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Alcinópolis", + "scheduled_service": "no", + "gps_code": "SSVJ", + "local_code": "MS0341" + }, + { + "id": "333228", + "ident": "BR-0572", + "type": "small_airport", + "name": "Fazenda Savannah Airport", + "latitude_deg": "-14.699316", + "longitude_deg": "-45.829951", + "elevation_ft": "2940", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Cocos", + "scheduled_service": "no", + "gps_code": "SSVM", + "local_code": "BA0167" + }, + { + "id": "333379", + "ident": "BR-0573", + "type": "heliport", + "name": "Vila do Carvalho Heliport", + "latitude_deg": "-20.370321", + "longitude_deg": "-43.706364", + "elevation_ft": "3609", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Ouro Preto", + "scheduled_service": "no", + "gps_code": "SSVQ", + "local_code": "MG0274" + }, + { + "id": "333390", + "ident": "BR-0574", + "type": "small_airport", + "name": "Fazenda Sucuri Airport", + "latitude_deg": "-21.695564", + "longitude_deg": "-54.76868", + "elevation_ft": "2625", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Brilhante", + "scheduled_service": "no", + "gps_code": "SSVS", + "local_code": "MS0343" + }, + { + "id": "333393", + "ident": "BR-0575", + "type": "heliport", + "name": "Gerdau Heliport", + "latitude_deg": "-20.538641", + "longitude_deg": "-43.756741", + "elevation_ft": "3346", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Congonhas", + "scheduled_service": "no", + "gps_code": "SNXD", + "local_code": "MG0265", + "keywords": "SSVT" + }, + { + "id": "333558", + "ident": "BR-0576", + "type": "small_airport", + "name": "Valeu Boi Leilões Airport", + "latitude_deg": "-7.301528", + "longitude_deg": "-50.032116", + "elevation_ft": "627", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Rio Maria", + "scheduled_service": "no", + "gps_code": "SSVX", + "local_code": "PA0133" + }, + { + "id": "333559", + "ident": "BR-0577", + "type": "small_airport", + "name": "COOPA-DF Airport", + "latitude_deg": "-16.014444", + "longitude_deg": "-47.558056", + "elevation_ft": "3442", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SSWB", + "local_code": "DF0008" + }, + { + "id": "333560", + "ident": "BR-0578", + "type": "heliport", + "name": "CEMIG Helipad", + "latitude_deg": "-19.928995", + "longitude_deg": "-43.950623", + "elevation_ft": "3202", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SSWC", + "local_code": "MG0275" + }, + { + "id": "335661", + "ident": "BR-0579", + "type": "heliport", + "name": "Palhano Premium Helipad.", + "latitude_deg": "-23.335498", + "longitude_deg": "-51.176805", + "elevation_ft": "2270", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Londrina", + "scheduled_service": "no", + "gps_code": "SIOX", + "local_code": "PR0110" + }, + { + "id": "333610", + "ident": "BR-0580", + "type": "heliport", + "name": "Condor Helipad", + "latitude_deg": "-25.51543", + "longitude_deg": "-49.296939", + "elevation_ft": "3068", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Curitiba", + "scheduled_service": "no", + "gps_code": "SDXC", + "local_code": "PR0106" + }, + { + "id": "333611", + "ident": "BR-0581", + "type": "small_airport", + "name": "Estância Santa Maria Airport", + "latitude_deg": "-8.903746", + "longitude_deg": "-56.924769", + "elevation_ft": "600", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Jacareacanga", + "scheduled_service": "no", + "keywords": "SDXC" + }, + { + "id": "333614", + "ident": "BR-0582", + "type": "small_airport", + "name": "Fazenda Guará Airport", + "latitude_deg": "-14.639722", + "longitude_deg": "-45.804722", + "elevation_ft": "2805", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Jaborandi", + "scheduled_service": "no", + "gps_code": "SDXD", + "local_code": "BA0081" + }, + { + "id": "333672", + "ident": "BR-0583", + "type": "small_airport", + "name": "Luiz Aragão Airport", + "latitude_deg": "-3.74", + "longitude_deg": "-41.023333", + "elevation_ft": "2510", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Tianguá", + "scheduled_service": "no", + "gps_code": "SSWL", + "local_code": "CE0024" + }, + { + "id": "333673", + "ident": "BR-0584", + "type": "small_airport", + "name": "Fazenda Reunidas Sococo Airport", + "latitude_deg": "-1.224084", + "longitude_deg": "-48.041476", + "elevation_ft": "161", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santa Isabel do Pará", + "scheduled_service": "no", + "gps_code": "SISR", + "local_code": "PA0057" + }, + { + "id": "333675", + "ident": "BR-0585", + "type": "heliport", + "name": "Empresarial Delman Helipad", + "latitude_deg": "-9.673878", + "longitude_deg": "-35.718547", + "elevation_ft": "121", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Maceió", + "scheduled_service": "no", + "gps_code": "SIYP", + "local_code": "AL0021" + }, + { + "id": "333681", + "ident": "BR-0586", + "type": "small_airport", + "name": "Fazenda Ouro Verde Airport", + "latitude_deg": "-16.594886", + "longitude_deg": "-47.291674", + "elevation_ft": "2949", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Unaí", + "scheduled_service": "no", + "gps_code": "SJHX", + "local_code": "MG0124" + }, + { + "id": "333686", + "ident": "BR-0587", + "type": "heliport", + "name": "Via Catarina Helipad", + "latitude_deg": "-27.641974", + "longitude_deg": "-48.673001", + "elevation_ft": "167", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Palhoça", + "scheduled_service": "no", + "gps_code": "SWVT", + "local_code": "SC0100" + }, + { + "id": "333687", + "ident": "BR-0588", + "type": "heliport", + "name": "Turim Heliport", + "latitude_deg": "-8.693903", + "longitude_deg": "-37.270839", + "elevation_ft": "2589", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Buíque", + "scheduled_service": "no", + "gps_code": "SWVQ", + "local_code": "PE0057" + }, + { + "id": "333688", + "ident": "BR-0589", + "type": "heliport", + "name": "Ages Heliport", + "latitude_deg": "-10.69424", + "longitude_deg": "-37.844832", + "elevation_ft": "1056", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Paripiranga", + "scheduled_service": "no", + "gps_code": "SWVP", + "local_code": "BA0238" + }, + { + "id": "333708", + "ident": "BR-0590", + "type": "small_airport", + "name": "Fazenda Centúria Vitória Airport", + "latitude_deg": "-11.227551", + "longitude_deg": "-46.036963", + "elevation_ft": "2612", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Formosa do Rio Preto", + "scheduled_service": "no", + "gps_code": "SWVI", + "local_code": "BA0186" + }, + { + "id": "333709", + "ident": "BR-0591", + "type": "heliport", + "name": "Tree Bies Resort Heliport", + "latitude_deg": "-12.240697", + "longitude_deg": "-37.775255", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Entre Rios", + "scheduled_service": "no", + "gps_code": "SWVE", + "local_code": "BA0237" + }, + { + "id": "333710", + "ident": "BR-0592", + "type": "heliport", + "name": "Vila Don Patto Heliport", + "latitude_deg": "-23.563056", + "longitude_deg": "-47.136667", + "elevation_ft": "2831", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Roque", + "scheduled_service": "no", + "gps_code": "SWVD", + "local_code": "SP0836" + }, + { + "id": "333711", + "ident": "BR-0593", + "type": "heliport", + "name": "Hospital Municipal de Salvador Heliport", + "latitude_deg": "-12.8975", + "longitude_deg": "-38.389444", + "elevation_ft": "269", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Salvador", + "scheduled_service": "no", + "gps_code": "SWVA", + "local_code": "BA0236" + }, + { + "id": "333762", + "ident": "BR-0594", + "type": "heliport", + "name": "Seringueiras Tradição Heliport", + "latitude_deg": "-11.763868", + "longitude_deg": "-63.021597", + "elevation_ft": "587", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Seringueiras", + "scheduled_service": "no", + "gps_code": "SDXG", + "local_code": "RO0040" + }, + { + "id": "333763", + "ident": "BR-0595", + "type": "closed", + "name": "Fazenda Romário Airport", + "latitude_deg": "-21.278236", + "longitude_deg": "-50.006037", + "elevation_ft": "1283", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barbosa", + "scheduled_service": "no", + "local_code": "SP0163", + "keywords": "SDXR" + }, + { + "id": "333769", + "ident": "BR-0596", + "type": "small_airport", + "name": "Fazenda Relu Airport", + "latitude_deg": "-13.626667", + "longitude_deg": "-53.264722", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Gaúcha do Norte", + "scheduled_service": "no", + "gps_code": "SDXU", + "local_code": "MT0489" + }, + { + "id": "333770", + "ident": "BR-0597", + "type": "small_airport", + "name": "Maria Magalhães Airport", + "latitude_deg": "-26.25119", + "longitude_deg": "-51.013137", + "elevation_ft": "2497", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Porto União", + "scheduled_service": "no", + "gps_code": "SNLV", + "local_code": "SC0191", + "keywords": "SDXU" + }, + { + "id": "333785", + "ident": "BR-0598", + "type": "small_airport", + "name": "Sitio Cajuapara Airport", + "latitude_deg": "-4.56463", + "longitude_deg": "-47.544895", + "elevation_ft": "981", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Itinga do Maranhão", + "scheduled_service": "no", + "gps_code": "SDXY", + "local_code": "MA0017" + }, + { + "id": "333786", + "ident": "BR-0599", + "type": "small_airport", + "name": "Fazenda São Diego Airport", + "latitude_deg": "-10.628026", + "longitude_deg": "-45.742818", + "elevation_ft": "2510", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Formosa do Rio Preto", + "scheduled_service": "no", + "gps_code": "SDYE", + "local_code": "BA0082" + }, + { + "id": "333787", + "ident": "BR-0600", + "type": "heliport", + "name": "Linhares Geração S/A Heliport", + "latitude_deg": "-19.532935", + "longitude_deg": "-39.802092", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Linhares", + "scheduled_service": "no", + "gps_code": "SDYL", + "local_code": "ES0013" + }, + { + "id": "333788", + "ident": "BR-0601", + "type": "heliport", + "name": "Mater Dei - Contorno Hospital Helipad", + "latitude_deg": "-19.927064", + "longitude_deg": "-43.957726", + "elevation_ft": "3100", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SDYM", + "local_code": "MG0222" + }, + { + "id": "333789", + "ident": "BR-0602", + "type": "heliport", + "name": "Marrecão Heliport", + "latitude_deg": "-27.06636", + "longitude_deg": "-48.891326", + "elevation_ft": "56", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Brusque", + "scheduled_service": "no", + "gps_code": "SIPM", + "local_code": "SC0116" + }, + { + "id": "333791", + "ident": "BR-0603", + "type": "small_airport", + "name": "Fazenda Vô Chico Airport", + "latitude_deg": "-20.31226", + "longitude_deg": "-50.612413", + "elevation_ft": "1539", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jales", + "scheduled_service": "no", + "gps_code": "SIEH", + "local_code": "SP1264" + }, + { + "id": "333792", + "ident": "BR-0604", + "type": "small_airport", + "name": "Franciscus Airport", + "latitude_deg": "-9.499722", + "longitude_deg": "-49.629167", + "elevation_ft": "659", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Divinópolis do Tocantins", + "scheduled_service": "no", + "gps_code": "SWNF", + "local_code": "TO0056" + }, + { + "id": "333795", + "ident": "BR-0605", + "type": "small_airport", + "name": "Jorge de Barros Carvalho Airport", + "latitude_deg": "-22.8875", + "longitude_deg": "-49.891389", + "elevation_ft": "1562", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Salto Grande", + "scheduled_service": "no", + "gps_code": "SJDG", + "local_code": "SP1270" + }, + { + "id": "333798", + "ident": "BR-0606", + "type": "small_airport", + "name": "Pousada Juruena Airstrip", + "latitude_deg": "-9.369167", + "longitude_deg": "-58.541389", + "elevation_ft": "696", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Bandeirantes", + "scheduled_service": "no", + "gps_code": "SSPJ", + "local_code": "MT0603" + }, + { + "id": "333799", + "ident": "BR-0607", + "type": "small_airport", + "name": "Toca Airport", + "latitude_deg": "-16.4625", + "longitude_deg": "-49.228333", + "elevation_ft": "2631", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Santo Antônio de Goiás", + "scheduled_service": "no", + "gps_code": "SJGV", + "local_code": "GO0183" + }, + { + "id": "333800", + "ident": "BR-0608", + "type": "small_airport", + "name": "Fazenda Cachoeira Alta Airport", + "latitude_deg": "-12.939784", + "longitude_deg": "-54.284715", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Paranatinga", + "scheduled_service": "no", + "gps_code": "SIAS", + "local_code": "MT0574" + }, + { + "id": "333906", + "ident": "BR-0609", + "type": "heliport", + "name": "Hospital Copa D'Or Helipad", + "latitude_deg": "-22.965445", + "longitude_deg": "-43.1904", + "elevation_ft": "187", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SSDR", + "local_code": "RJ0144" + }, + { + "id": "335662", + "ident": "BR-0610", + "type": "heliport", + "name": "Fazenda Santa Clara Heliport", + "latitude_deg": "-21.880671", + "longitude_deg": "-43.175736", + "elevation_ft": "1932", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Santana do Deserto", + "scheduled_service": "no", + "gps_code": "SIOY", + "local_code": "MG0230" + }, + { + "id": "333908", + "ident": "BR-0611", + "type": "small_airport", + "name": "Fazenda Vale Airport", + "latitude_deg": "-12.429516", + "longitude_deg": "-56.196698", + "elevation_ft": "1263", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tapurah", + "scheduled_service": "no", + "gps_code": "SSDS", + "local_code": "MT0285" + }, + { + "id": "333909", + "ident": "BR-0612", + "type": "small_airport", + "name": "Alegria Alcolumbre Airport", + "latitude_deg": "0.840789", + "longitude_deg": "-50.652101", + "elevation_ft": "75", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Macapá", + "scheduled_service": "no", + "gps_code": "SSDY", + "local_code": "AP0010" + }, + { + "id": "333914", + "ident": "BR-0613", + "type": "small_airport", + "name": "Fazenda Requinte Airport", + "latitude_deg": "-12.811941", + "longitude_deg": "-46.140404", + "elevation_ft": "2920", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SSDZ", + "local_code": "BA0156" + }, + { + "id": "333928", + "ident": "BR-0614", + "type": "small_airport", + "name": "Sementes Guerra Airport", + "latitude_deg": "-26.289928", + "longitude_deg": "-52.937149", + "elevation_ft": "2536", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Renascença", + "scheduled_service": "no", + "gps_code": "SSEG", + "local_code": "PR0073" + }, + { + "id": "333930", + "ident": "BR-0615", + "type": "small_airport", + "name": "Grupo IOWA Airport", + "latitude_deg": "-13.070162", + "longitude_deg": "-45.936828", + "elevation_ft": "2687", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "keywords": "SSEG" + }, + { + "id": "333933", + "ident": "BR-0616", + "type": "heliport", + "name": "Fazenda Umburanas Heliport", + "latitude_deg": "-14.530083", + "longitude_deg": "-39.863185", + "elevation_ft": "604", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Ibicuí", + "scheduled_service": "no", + "gps_code": "SSEY", + "local_code": "BA0217" + }, + { + "id": "333935", + "ident": "BR-0617", + "type": "small_airport", + "name": "Fazenda Cerradão Airport", + "latitude_deg": "-18.275889", + "longitude_deg": "-51.231626", + "elevation_ft": "1970", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Aparecida do Rio Doce", + "scheduled_service": "no", + "keywords": "SSFC" + }, + { + "id": "333936", + "ident": "BR-0618", + "type": "small_airport", + "name": "Fazenda Guanabara Airport", + "latitude_deg": "-18.230711", + "longitude_deg": "-55.751122", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSFG", + "local_code": "MS0266" + }, + { + "id": "333937", + "ident": "BR-0619", + "type": "small_airport", + "name": "Fazenda Eldorado da Formosa Airport", + "latitude_deg": "-17.908177", + "longitude_deg": "-56.565148", + "elevation_ft": "397", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSFI", + "local_code": "MS0267" + }, + { + "id": "333938", + "ident": "BR-0620", + "type": "small_airport", + "name": "Fazenda Montani Airport", + "latitude_deg": "-8.023637", + "longitude_deg": "-44.893809", + "elevation_ft": "1680", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Baixa Grande do Ribeiro", + "scheduled_service": "no", + "gps_code": "SSFM", + "local_code": "PI0036" + }, + { + "id": "333946", + "ident": "BR-0621", + "type": "small_airport", + "name": "Fazenda Canoa Quebrada Airport", + "latitude_deg": "-5.941306", + "longitude_deg": "-46.254738", + "elevation_ft": "955", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Grajaú", + "scheduled_service": "no", + "gps_code": "SSFQ", + "local_code": "MA0046" + }, + { + "id": "333947", + "ident": "BR-0622", + "type": "heliport", + "name": "18 do Forte Empresarial Helipad", + "latitude_deg": "-23.484045", + "longitude_deg": "-46.856689", + "elevation_ft": "2690", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SSFR", + "local_code": "SP0748" + }, + { + "id": "333948", + "ident": "BR-0623", + "type": "heliport", + "name": "Nanete Têxtil Heliport", + "latitude_deg": "-26.536313", + "longitude_deg": "-49.12631", + "elevation_ft": "151", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Jaraguá do Sul", + "scheduled_service": "no", + "gps_code": "SSFT", + "local_code": "SC0090" + }, + { + "id": "334004", + "ident": "BR-0624", + "type": "heliport", + "name": "Fiat Betim Heliport", + "latitude_deg": "-19.97044", + "longitude_deg": "-44.106642", + "elevation_ft": "3083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Betim", + "scheduled_service": "no", + "gps_code": "SWUT", + "local_code": "MG0287" + }, + { + "id": "334008", + "ident": "BR-0625", + "type": "heliport", + "name": "Tauana Heliport", + "latitude_deg": "-16.957378", + "longitude_deg": "-39.16125", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Prado", + "scheduled_service": "no", + "gps_code": "SWAT", + "local_code": "BA0227" + }, + { + "id": "334012", + "ident": "BR-0626", + "type": "small_airport", + "name": "Fazenda Vale dos Sonhos Airport", + "latitude_deg": "-16.787734", + "longitude_deg": "-51.442479", + "elevation_ft": "2615", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Palestina de Goiás", + "scheduled_service": "no", + "gps_code": "SWAV", + "local_code": "GO0116" + }, + { + "id": "334015", + "ident": "BR-0627", + "type": "heliport", + "name": "Marinas Portobello Heliport", + "latitude_deg": "-20.630575", + "longitude_deg": "-46.006719", + "elevation_ft": "2612", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Capitólio", + "scheduled_service": "no", + "gps_code": "SWBL", + "local_code": "MG0279" + }, + { + "id": "334017", + "ident": "BR-0628", + "type": "small_airport", + "name": "Fazenda Sossego Airport", + "latitude_deg": "-22.354727", + "longitude_deg": "-52.674356", + "elevation_ft": "1191", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Rosana", + "scheduled_service": "no", + "gps_code": "SSHQ", + "local_code": "SP0247" + }, + { + "id": "334018", + "ident": "BR-0629", + "type": "small_airport", + "name": "Fazenda Paraíso Airport", + "latitude_deg": "3.313599", + "longitude_deg": "-60.34713", + "elevation_ft": "200", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Boa Vista", + "scheduled_service": "no", + "keywords": "SWBM" + }, + { + "id": "334020", + "ident": "BR-0630", + "type": "small_airport", + "name": "Fazenda Pensamento Airport", + "latitude_deg": "-20.130726", + "longitude_deg": "-57.653611", + "elevation_ft": "272", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJFP", + "local_code": "MS0164" + }, + { + "id": "334024", + "ident": "BR-0631", + "type": "small_airport", + "name": "Fazenda Bela Vista Airport", + "latitude_deg": "-17.153917", + "longitude_deg": "-50.014445", + "elevation_ft": "1975", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Indiara", + "scheduled_service": "no", + "gps_code": "SWBY", + "local_code": "GO0117" + }, + { + "id": "334031", + "ident": "BR-0632", + "type": "small_airport", + "name": "Fazenda Centúria Austrália Airport", + "latitude_deg": "-11.358406", + "longitude_deg": "-46.166274", + "elevation_ft": "2707", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Formosa do Rio Preto", + "scheduled_service": "no", + "gps_code": "SWCE", + "local_code": "BA0173" + }, + { + "id": "334032", + "ident": "BR-0633", + "type": "small_airport", + "name": "Fazenda Califórnia Airport", + "latitude_deg": "-9.740699", + "longitude_deg": "-51.497209", + "elevation_ft": "2625", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "São Félix do Xingu", + "scheduled_service": "no", + "gps_code": "SWCF", + "local_code": "PA0137" + }, + { + "id": "334033", + "ident": "BR-0634", + "type": "heliport", + "name": "West Corp Helipad", + "latitude_deg": "-23.501486", + "longitude_deg": "-46.8511", + "elevation_ft": "2746", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SWCK", + "local_code": "SP0795" + }, + { + "id": "334034", + "ident": "BR-0635", + "type": "small_airport", + "name": "Fazenda Copacabana Airport", + "latitude_deg": "-17.416679", + "longitude_deg": "-47.825128", + "elevation_ft": "2877", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Campo Alegre de Goiás", + "scheduled_service": "no", + "keywords": "SWCK" + }, + { + "id": "334035", + "ident": "BR-0636", + "type": "small_airport", + "name": "Fazenda Canaã Airport", + "latitude_deg": "-12.800623", + "longitude_deg": "-52.526723", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Canarana", + "scheduled_service": "no", + "gps_code": "SJBH", + "local_code": "MT0164" + }, + { + "id": "334038", + "ident": "BR-0637", + "type": "heliport", + "name": "Hospital da Unimed Betim Helipad", + "latitude_deg": "-19.958694", + "longitude_deg": "-44.170615", + "elevation_ft": "2697", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Betim", + "scheduled_service": "no", + "gps_code": "SJHY", + "local_code": "MG0296" + }, + { + "id": "334122", + "ident": "BR-0638", + "type": "small_airport", + "name": "Projeto Brasil I Airport", + "latitude_deg": "-11.408109", + "longitude_deg": "-44.659746", + "elevation_ft": "1512", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Santa Rita de Cássia", + "scheduled_service": "no", + "gps_code": "SWBZ", + "local_code": "BA0172" + }, + { + "id": "334124", + "ident": "BR-0639", + "type": "small_airport", + "name": "Fazenda Campo Alegre Airport", + "latitude_deg": "-8.591196", + "longitude_deg": "-44.248678", + "elevation_ft": "1804", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Palmeira do Piauí", + "scheduled_service": "no", + "gps_code": "SWCJ", + "local_code": "PI0042" + }, + { + "id": "334134", + "ident": "BR-0640", + "type": "heliport", + "name": "Hospital Marcio Cunha Heliport", + "latitude_deg": "-19.497118", + "longitude_deg": "-42.539653", + "elevation_ft": "915", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Ipatinga", + "scheduled_service": "no", + "gps_code": "SWCM", + "local_code": "MG0281" + }, + { + "id": "334138", + "ident": "BR-0641", + "type": "heliport", + "name": "Instituto de Ciências Náuticas Heliport", + "latitude_deg": "-22.934679", + "longitude_deg": "-42.948834", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Maricá", + "scheduled_service": "no", + "gps_code": "SWCN", + "local_code": "RJ0152" + }, + { + "id": "334139", + "ident": "BR-0642", + "type": "small_airport", + "name": "Pontal Airport", + "latitude_deg": "-21.032996", + "longitude_deg": "-48.010666", + "elevation_ft": "1755", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Pontal", + "scheduled_service": "no", + "gps_code": "SWCP", + "local_code": "SP0272" + }, + { + "id": "334142", + "ident": "BR-0643", + "type": "heliport", + "name": "Laguna Iguaçu Helipad", + "latitude_deg": "-25.449184", + "longitude_deg": "-49.288874", + "elevation_ft": "3314", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Curitiba", + "scheduled_service": "no", + "gps_code": "SWCT", + "local_code": "PR0146" + }, + { + "id": "334143", + "ident": "BR-0644", + "type": "small_airport", + "name": "Fazenda Curuá Airport", + "latitude_deg": "-8.004433", + "longitude_deg": "-54.935524", + "elevation_ft": "879", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Altamira", + "scheduled_service": "no", + "gps_code": "SWCU", + "local_code": "PA0138" + }, + { + "id": "334145", + "ident": "BR-0645", + "type": "small_airport", + "name": "Condomínio Aeronáutico Santos Dumont Airport", + "latitude_deg": "-23.065919", + "longitude_deg": "-47.324478", + "elevation_ft": "2146", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Elias Fausto", + "scheduled_service": "no", + "gps_code": "SNDD", + "local_code": "SP0225" + }, + { + "id": "334146", + "ident": "BR-0646", + "type": "small_airport", + "name": "Fecularia Lopes Airport", + "latitude_deg": "-22.766667", + "longitude_deg": "-52.876944", + "elevation_ft": "1394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Itaúna do Sul", + "scheduled_service": "no", + "gps_code": "SNDF", + "local_code": "PR0065" + }, + { + "id": "334147", + "ident": "BR-0647", + "type": "small_airport", + "name": "Aldeia Airstrip", + "latitude_deg": "-6.466872", + "longitude_deg": "-59.790226", + "elevation_ft": "367", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Borba", + "scheduled_service": "no", + "gps_code": "SNDG", + "local_code": "AM0036" + }, + { + "id": "334152", + "ident": "BR-0648", + "type": "heliport", + "name": "Comary Heliport", + "latitude_deg": "-22.451669", + "longitude_deg": "-42.979878", + "elevation_ft": "2972", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Teresópolis", + "scheduled_service": "no", + "gps_code": "SWCY", + "local_code": "RJ0153" + }, + { + "id": "334153", + "ident": "BR-0649", + "type": "heliport", + "name": "Centro Administrativo da Bahia - CAB Heliport", + "latitude_deg": "-12.947616", + "longitude_deg": "-38.43184", + "elevation_ft": "203", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Salvador", + "scheduled_service": "no", + "gps_code": "SWDA", + "local_code": "BA0228" + }, + { + "id": "334155", + "ident": "BR-0650", + "type": "small_airport", + "name": "Fazenda Barro Preto Airport", + "latitude_deg": "-19.818898", + "longitude_deg": "-57.205424", + "elevation_ft": "312", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SWDB", + "local_code": "MS0367" + }, + { + "id": "334156", + "ident": "BR-0651", + "type": "small_airport", + "name": "Fazenda do Coronel Airport", + "latitude_deg": "-12.270796", + "longitude_deg": "-38.751684", + "elevation_ft": "764", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Coração de Maria", + "scheduled_service": "no", + "gps_code": "SWDC", + "local_code": "BA0174" + }, + { + "id": "334175", + "ident": "BR-0652", + "type": "heliport", + "name": "Águas Claras Official Residence Heliport II", + "latitude_deg": "-15.827538", + "longitude_deg": "-48.023149", + "elevation_ft": "3681", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SWDF", + "local_code": "DF0019" + }, + { + "id": "334177", + "ident": "BR-0653", + "type": "small_airport", + "name": "Aeroagrícola Solo Airport", + "latitude_deg": "-23.447172", + "longitude_deg": "-48.866511", + "elevation_ft": "2152", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Paranapanema", + "scheduled_service": "no", + "gps_code": "SWDI", + "local_code": "SP0274" + }, + { + "id": "334181", + "ident": "BR-0654", + "type": "heliport", + "name": "Thobias Landim Heliport", + "latitude_deg": "-20.32674", + "longitude_deg": "-48.302529", + "elevation_ft": "1634", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guaíra", + "scheduled_service": "no", + "gps_code": "SWDK", + "local_code": "SP0798" + }, + { + "id": "334183", + "ident": "BR-0655", + "type": "small_airport", + "name": "Fazenda Baia Grande Airport", + "latitude_deg": "-18.829941", + "longitude_deg": "-55.206932", + "elevation_ft": "525", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Verde de Mato Grosso", + "scheduled_service": "no", + "gps_code": "SWDQ", + "local_code": "MS0368" + }, + { + "id": "334184", + "ident": "BR-0656", + "type": "small_airport", + "name": "Condomínio Aéreo Santos Dumont Airport", + "latitude_deg": "-10.953421", + "longitude_deg": "-61.994036", + "elevation_ft": "636", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Ji-Paraná", + "scheduled_service": "no", + "gps_code": "SWDS", + "local_code": "RO0046" + }, + { + "id": "334194", + "ident": "BR-0657", + "type": "small_airport", + "name": "Destilaria Tabu Airport", + "latitude_deg": "-7.473238", + "longitude_deg": "-34.888245", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Caaporã", + "scheduled_service": "no", + "gps_code": "SWDU", + "local_code": "PB0017" + }, + { + "id": "334197", + "ident": "BR-0658", + "type": "heliport", + "name": "Fazenda Vereda Heliport", + "latitude_deg": "-19.686838", + "longitude_deg": "-44.433963", + "elevation_ft": "2431", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Esmeraldas", + "scheduled_service": "no", + "gps_code": "SWDV", + "local_code": "MG0282" + }, + { + "id": "334378", + "ident": "BR-0659", + "type": "heliport", + "name": "Heliponto do Zé", + "latitude_deg": "-21.230102", + "longitude_deg": "-47.784331", + "elevation_ft": "2162", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Preto", + "scheduled_service": "no", + "gps_code": "SWDZ", + "local_code": "SP0801" + }, + { + "id": "334380", + "ident": "BR-0660", + "type": "heliport", + "name": "Engevix Helipad", + "latitude_deg": "-23.50244", + "longitude_deg": "-46.827722", + "elevation_ft": "2575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SWEG", + "local_code": "SP0802" + }, + { + "id": "334383", + "ident": "BR-0661", + "type": "small_airport", + "name": "Associação Tocantinense de Aviação Airport", + "latitude_deg": "-10.182756", + "longitude_deg": "-48.544917", + "elevation_ft": "988", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Porto Nacional", + "scheduled_service": "no", + "gps_code": "SWEJ", + "local_code": "TO0044" + }, + { + "id": "334385", + "ident": "BR-0662", + "type": "heliport", + "name": "Limão Helipad", + "latitude_deg": "-23.505556", + "longitude_deg": "-46.680556", + "elevation_ft": "2431", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SWEL", + "local_code": "SP0849" + }, + { + "id": "334386", + "ident": "BR-0663", + "type": "small_airport", + "name": "Clube de Aviação Experimental do Paraná Airport", + "latitude_deg": "-23.28741", + "longitude_deg": "-51.091345", + "elevation_ft": "1617", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Ibiporã", + "scheduled_service": "no", + "gps_code": "SWES", + "local_code": "PR0095" + }, + { + "id": "334389", + "ident": "BR-0664", + "type": "heliport", + "name": "KKS-37 Heliport", + "latitude_deg": "-22.73881", + "longitude_deg": "-43.493665", + "elevation_ft": "144", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Nova Iguaçu", + "scheduled_service": "no", + "gps_code": "SWET", + "local_code": "RJ0179" + }, + { + "id": "334391", + "ident": "BR-0665", + "type": "small_airport", + "name": "Boa Esperança Airport", + "latitude_deg": "-3.911944", + "longitude_deg": "-45.786175", + "elevation_ft": "243", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Santa Luzia", + "scheduled_service": "no", + "gps_code": "SWEX", + "local_code": "MA0050" + }, + { + "id": "334392", + "ident": "BR-0666", + "type": "heliport", + "name": "Fazenda São Fernando Heliport", + "latitude_deg": "-22.345979", + "longitude_deg": "-43.533887", + "elevation_ft": "1627", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Vassouras", + "scheduled_service": "no", + "gps_code": "SWEY", + "local_code": "RJ0155" + }, + { + "id": "334396", + "ident": "BR-0667", + "type": "small_airport", + "name": "Fazenda São Félix Airport", + "latitude_deg": "-9.293056", + "longitude_deg": "-61.806527", + "elevation_ft": "427", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Machadinho d'Oeste", + "scheduled_service": "no", + "gps_code": "SWFE", + "local_code": "RO0029" + }, + { + "id": "334703", + "ident": "BR-0668", + "type": "small_airport", + "name": "Fazenda Toca da Onça Airport", + "latitude_deg": "-15.278446", + "longitude_deg": "-51.413114", + "elevation_ft": "935", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Jussara", + "scheduled_service": "no", + "keywords": "SWFF" + }, + { + "id": "334705", + "ident": "BR-0669", + "type": "small_airport", + "name": "Fly Club Airport", + "latitude_deg": "-16.358824", + "longitude_deg": "-39.01528", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Porto Seguro", + "scheduled_service": "no", + "gps_code": "SWFH", + "local_code": "BA0175" + }, + { + "id": "334706", + "ident": "BR-0670", + "type": "small_airport", + "name": "Fazenda Estrela Airport", + "latitude_deg": "-22.210531", + "longitude_deg": "-55.797249", + "elevation_ft": "2159", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Antônio João", + "scheduled_service": "no", + "gps_code": "SWFJ", + "local_code": "MS0373" + }, + { + "id": "334712", + "ident": "BR-0671", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-10.966565", + "longitude_deg": "-46.26199", + "elevation_ft": "2595", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Formosa do Rio Preto", + "scheduled_service": "no", + "gps_code": "SWFO", + "local_code": "BA0176" + }, + { + "id": "334799", + "ident": "BR-0672", + "type": "small_airport", + "name": "Fazenda Prata Airport", + "latitude_deg": "-4.160526", + "longitude_deg": "-55.381793", + "elevation_ft": "404", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Rurópolis", + "scheduled_service": "no", + "gps_code": "SWFP", + "local_code": "PA0140" + }, + { + "id": "334800", + "ident": "BR-0673", + "type": "heliport", + "name": "Fazenda Planalto Heliport", + "latitude_deg": "-16.656857", + "longitude_deg": "-49.588714", + "elevation_ft": "2615", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Trindade", + "scheduled_service": "no", + "keywords": "SWFP" + }, + { + "id": "334811", + "ident": "BR-0674", + "type": "heliport", + "name": "Office Tower Helipad", + "latitude_deg": "-2.501631", + "longitude_deg": "-44.291344", + "elevation_ft": "230", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "São Luís", + "scheduled_service": "no", + "gps_code": "SWFT", + "local_code": "MA0073" + }, + { + "id": "334812", + "ident": "BR-0675", + "type": "small_airport", + "name": "Fazenda Terra Way - VII Airport", + "latitude_deg": "-11.54746", + "longitude_deg": "-56.027202", + "elevation_ft": "1217", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tabaporã", + "scheduled_service": "no", + "gps_code": "SWFW", + "local_code": "MT0343" + }, + { + "id": "334830", + "ident": "BR-0676", + "type": "heliport", + "name": "Green Technology Heliport", + "latitude_deg": "-25.435437", + "longitude_deg": "-49.426042", + "elevation_ft": "3209", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Campo Largo", + "scheduled_service": "no", + "gps_code": "SWGE", + "local_code": "PR0147" + }, + { + "id": "334838", + "ident": "BR-0677", + "type": "small_airport", + "name": "Fazenda Fortaleza Airport", + "latitude_deg": "-7.907935", + "longitude_deg": "-61.250335", + "elevation_ft": "282", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Novo Aripuanã", + "scheduled_service": "no", + "gps_code": "SWGF", + "local_code": "AM0045" + }, + { + "id": "334875", + "ident": "BR-0678", + "type": "heliport", + "name": "Corporate Plaza Business Center Helipad", + "latitude_deg": "-3.735053", + "longitude_deg": "-38.503062", + "elevation_ft": "384", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SWGH", + "local_code": "CE0064" + }, + { + "id": "334876", + "ident": "BR-0679", + "type": "small_airport", + "name": "Fazenda Campo Grande Airport", + "latitude_deg": "-12.711863", + "longitude_deg": "-44.584951", + "elevation_ft": "2546", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Baianópolis", + "scheduled_service": "no", + "gps_code": "SWGJ", + "local_code": "BA0177" + }, + { + "id": "334877", + "ident": "BR-0680", + "type": "heliport", + "name": "André Guimarães Helipad", + "latitude_deg": "-12.875365", + "longitude_deg": "-38.308721", + "elevation_ft": "197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Lauro de Freitas", + "scheduled_service": "no", + "gps_code": "SWGK", + "local_code": "BA0230" + }, + { + "id": "334878", + "ident": "BR-0681", + "type": "heliport", + "name": "Panco Guararema Helipad", + "latitude_deg": "-23.337122", + "longitude_deg": "-46.143609", + "elevation_ft": "2028", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guararema", + "scheduled_service": "no", + "gps_code": "SWGM", + "local_code": "SP0804" + }, + { + "id": "334880", + "ident": "BR-0682", + "type": "heliport", + "name": "Urbanova Heliport", + "latitude_deg": "-23.184137", + "longitude_deg": "-45.932733", + "elevation_ft": "1890", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São José dos Campos", + "scheduled_service": "no", + "gps_code": "SWGR", + "local_code": "SP0805" + }, + { + "id": "334881", + "ident": "BR-0683", + "type": "small_airport", + "name": "Fazenda São Gabriel Airport", + "latitude_deg": "-12.657837", + "longitude_deg": "-58.24733", + "elevation_ft": "1394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SWGU", + "local_code": "MT0452" + }, + { + "id": "334885", + "ident": "BR-0684", + "type": "small_airport", + "name": "Fazenda Cangaia Airport", + "latitude_deg": "-3.012491", + "longitude_deg": "-48.900361", + "elevation_ft": "167", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Tailândia", + "scheduled_service": "no", + "gps_code": "SWGZ", + "local_code": "PA0141" + }, + { + "id": "334910", + "ident": "BR-0685", + "type": "heliport", + "name": "Das Américas Heliport", + "latitude_deg": "-23.008288", + "longitude_deg": "-43.464575", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SWHA", + "local_code": "RJ0156" + }, + { + "id": "334912", + "ident": "BR-0686", + "type": "heliport", + "name": "Hyundai Piracicaba Heliport", + "latitude_deg": "-22.682877", + "longitude_deg": "-47.602869", + "elevation_ft": "1942", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SWHB", + "local_code": "SP0806" + }, + { + "id": "334916", + "ident": "BR-0687", + "type": "small_airport", + "name": "Fazenda Galiléia Airport", + "latitude_deg": "-11.560653", + "longitude_deg": "-47.147057", + "elevation_ft": "1529", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Almas", + "scheduled_service": "no", + "gps_code": "SWFZ", + "local_code": "TO0058" + }, + { + "id": "334919", + "ident": "BR-0688", + "type": "small_airport", + "name": "Fazenda Mundo Novo Airport", + "latitude_deg": "-11.543398", + "longitude_deg": "-49.493044", + "elevation_ft": "755", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Dueré", + "scheduled_service": "no", + "gps_code": "SWJU", + "local_code": "TO0053" + }, + { + "id": "334921", + "ident": "BR-0689", + "type": "small_airport", + "name": "Fazenda Santa Rita Airport", + "latitude_deg": "-12.243622", + "longitude_deg": "-48.970624", + "elevation_ft": "932", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Figueirópolis", + "scheduled_service": "no", + "gps_code": "SJBR", + "local_code": "TO0054" + }, + { + "id": "334923", + "ident": "BR-0690", + "type": "small_airport", + "name": "Agropecuária Zé Reis Airport", + "latitude_deg": "-13.018889", + "longitude_deg": "-48.415833", + "elevation_ft": "1493", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Palmeirópolis", + "scheduled_service": "no", + "gps_code": "SJZZ", + "local_code": "TO0059" + }, + { + "id": "334929", + "ident": "BR-0691", + "type": "small_airport", + "name": "Fazenda Nova Esperança Airport.", + "latitude_deg": "-8.553056", + "longitude_deg": "-47.085833", + "elevation_ft": "1014", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Recursolândia", + "scheduled_service": "no", + "gps_code": "SSHW", + "local_code": "TO0055" + }, + { + "id": "334935", + "ident": "BR-0692", + "type": "heliport", + "name": "Cabletech Heliport", + "latitude_deg": "-23.177677", + "longitude_deg": "-45.726114", + "elevation_ft": "2139", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Caçapava", + "scheduled_service": "no", + "gps_code": "SNJW", + "local_code": "SP0881" + }, + { + "id": "334945", + "ident": "BR-0693", + "type": "small_airport", + "name": "Eloy Biesuz Airport", + "latitude_deg": "-25.998333", + "longitude_deg": "-52.926667", + "elevation_ft": "1631", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Itapejara d'Oeste", + "scheduled_service": "no", + "gps_code": "SDBX", + "local_code": "PR0153" + }, + { + "id": "334947", + "ident": "BR-0694", + "type": "small_airport", + "name": "Fazenda Limeira Airport", + "latitude_deg": "-16.867921", + "longitude_deg": "-50.410767", + "elevation_ft": "869", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "São João Da Paraúna,", + "scheduled_service": "no", + "gps_code": "SDDL", + "local_code": "GO0186" + }, + { + "id": "334948", + "ident": "BR-0695", + "type": "heliport", + "name": "Hospital Metropolitano de Belo Horizonte Helipad", + "latitude_deg": "-19.985514", + "longitude_deg": "-44.006521", + "elevation_ft": "3356", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SDHM", + "local_code": "MG0303" + }, + { + "id": "334950", + "ident": "BR-0696", + "type": "heliport", + "name": "Alpendre Eventos Heliport", + "latitude_deg": "-23.1375", + "longitude_deg": "-45.475", + "elevation_ft": "2031", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Taubaté", + "scheduled_service": "no", + "gps_code": "SDQS", + "local_code": "SP0859" + }, + { + "id": "334952", + "ident": "BR-0697", + "type": "heliport", + "name": "Carta Fabril 01 Heliport", + "latitude_deg": "-22.582173", + "longitude_deg": "-43.992648", + "elevation_ft": "1434", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Piraí", + "scheduled_service": "no", + "gps_code": "SDSW", + "local_code": "RJ0180" + }, + { + "id": "37127", + "ident": "BR-0698", + "type": "small_airport", + "name": "Jardim de Angicos Airport", + "latitude_deg": "-5.638152", + "longitude_deg": "-35.956535", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Jardim de Angicos", + "scheduled_service": "no", + "keywords": "SNJA" + }, + { + "id": "334954", + "ident": "BR-0699", + "type": "small_airport", + "name": "Fazenda Agrorosso Airport", + "latitude_deg": "-16.928677", + "longitude_deg": "-48.682292", + "elevation_ft": "3314", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Miguel do Passa Quatro", + "scheduled_service": "no", + "gps_code": "SDXZ", + "local_code": "GO0195" + }, + { + "id": "334955", + "ident": "BR-0700", + "type": "heliport", + "name": "Haras Neves Heliport", + "latitude_deg": "-19.64962", + "longitude_deg": "-44.148474", + "elevation_ft": "2789", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Pedro Leopoldo", + "scheduled_service": "no", + "gps_code": "SIBF", + "local_code": "MG0306" + }, + { + "id": "334956", + "ident": "BR-0701", + "type": "small_airport", + "name": "Fazenda Pau D'Alho Airport", + "latitude_deg": "-9.406699", + "longitude_deg": "-58.191167", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Bandeirantes", + "scheduled_service": "no", + "gps_code": "SIHX", + "local_code": "MT0490" + }, + { + "id": "334958", + "ident": "BR-0702", + "type": "heliport", + "name": "Carmel Hotels Helipad", + "latitude_deg": "-3.506186", + "longitude_deg": "-38.90387", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "São Gonçalo do Amarante", + "scheduled_service": "no", + "gps_code": "SIIF", + "local_code": "CE0076" + }, + { + "id": "334959", + "ident": "BR-0703", + "type": "small_airport", + "name": "Pachu Aviação Agrícola Airport", + "latitude_deg": "-20.705979", + "longitude_deg": "-49.051299", + "elevation_ft": "1778", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Olímpia", + "scheduled_service": "no", + "gps_code": "SILD", + "local_code": "SP0865" + }, + { + "id": "334960", + "ident": "BR-0704", + "type": "heliport", + "name": "YBYTU Heliport", + "latitude_deg": "-22.736195", + "longitude_deg": "-45.775379", + "elevation_ft": "4075", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Sapucaí-Mirim", + "scheduled_service": "no", + "gps_code": "SIWF", + "local_code": "MG0298" + }, + { + "id": "334961", + "ident": "BR-0705", + "type": "small_airport", + "name": "Fazenda Cascata Airport", + "latitude_deg": "-11.629566", + "longitude_deg": "-55.905069", + "elevation_ft": "1214", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Ipiranga do Norte", + "scheduled_service": "no", + "gps_code": "SJCZ", + "local_code": "MT0485" + }, + { + "id": "334963", + "ident": "BR-0706", + "type": "small_airport", + "name": "Fazenda Estrela Airport", + "latitude_deg": "3.368183", + "longitude_deg": "-61.219713", + "elevation_ft": "371", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Alto Alegre", + "scheduled_service": "no", + "gps_code": "SJEJ", + "local_code": "RR0032" + }, + { + "id": "334965", + "ident": "BR-0707", + "type": "small_airport", + "name": "Fazenda Meio Século Airport", + "latitude_deg": "-23.280753", + "longitude_deg": "-54.186042", + "elevation_ft": "1266", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Itaquiraí", + "scheduled_service": "no", + "gps_code": "SJHN", + "local_code": "MS0422" + }, + { + "id": "334967", + "ident": "BR-0708", + "type": "small_airport", + "name": "Brigadeiro Fábio Pereira da Silveira Airport", + "latitude_deg": "-18.610359", + "longitude_deg": "-48.719649", + "elevation_ft": "2972", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Tupaciguara", + "scheduled_service": "no", + "gps_code": "SJIL", + "local_code": "MG0125" + }, + { + "id": "334970", + "ident": "BR-0709", + "type": "small_airport", + "name": "Fazenda Pampili Airport", + "latitude_deg": "-20.113124", + "longitude_deg": "-52.54643", + "elevation_ft": "1339", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Três Lagoas", + "scheduled_service": "no", + "gps_code": "SJJT", + "local_code": "MS0480" + }, + { + "id": "334971", + "ident": "BR-0710", + "type": "heliport", + "name": "lson Mateus Rodrigues Júnior Helipad", + "latitude_deg": "-2.468467", + "longitude_deg": "-44.200979", + "elevation_ft": "203", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "São José de Ribamar", + "scheduled_service": "no", + "gps_code": "SJPY", + "local_code": "MA0080" + }, + { + "id": "334972", + "ident": "BR-0711", + "type": "small_airport", + "name": "Fazenda Terra Roxa Airstrip", + "latitude_deg": "-8.71659", + "longitude_deg": "-50.406398", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santa Maria das Barreiras", + "scheduled_service": "no", + "gps_code": "SJRU", + "local_code": "PA0169" + }, + { + "id": "334973", + "ident": "BR-0712", + "type": "small_airport", + "name": "Fazenda San Cyro Airport", + "latitude_deg": "-27.956351", + "longitude_deg": "-52.50813", + "elevation_ft": "2129", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Sertão", + "scheduled_service": "no", + "gps_code": "SJSC", + "local_code": "RS0129" + }, + { + "id": "334975", + "ident": "BR-0713", + "type": "heliport", + "name": "São Fernando Golf Club Heliport", + "latitude_deg": "-23.5723", + "longitude_deg": "-46.8782", + "elevation_ft": "2451", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cotia", + "scheduled_service": "no", + "gps_code": "SJUN", + "local_code": "SP0861" + }, + { + "id": "334976", + "ident": "BR-0714", + "type": "small_airport", + "name": "Fazenda Pindorama Airport", + "latitude_deg": "-13.684958", + "longitude_deg": "-57.802416", + "elevation_ft": "1863", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo do Parecis", + "scheduled_service": "no", + "gps_code": "SJVN", + "local_code": "MT0491" + }, + { + "id": "334978", + "ident": "BR-0715", + "type": "small_airport", + "name": "Granja 4 Irmãos - Taim Airport", + "latitude_deg": "-32.264038", + "longitude_deg": "-52.567134", + "elevation_ft": "56", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Rio Grande", + "scheduled_service": "no", + "gps_code": "SJHV", + "local_code": "RS0123" + }, + { + "id": "334980", + "ident": "BR-0716", + "type": "small_airport", + "name": "Fazenda Garimpinho Airport", + "latitude_deg": "-18.719819", + "longitude_deg": "-54.300367", + "elevation_ft": "1004", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Figueirão", + "scheduled_service": "no", + "gps_code": "SSVV", + "local_code": "MS0421" + }, + { + "id": "334982", + "ident": "BR-0717", + "type": "small_airport", + "name": "Palmares Airport", + "latitude_deg": "-20.281975", + "longitude_deg": "-46.945413", + "elevation_ft": "2379", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Delfinópolis", + "scheduled_service": "no", + "gps_code": "SSWP", + "local_code": "MG0309" + }, + { + "id": "334983", + "ident": "BR-0718", + "type": "small_airport", + "name": "Fazenda Nobel Pará Airport", + "latitude_deg": "-8.977778", + "longitude_deg": "-50.368611", + "elevation_ft": "692", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santana do Araguaia", + "scheduled_service": "no", + "gps_code": "SSXR", + "local_code": "PA0163" + }, + { + "id": "334985", + "ident": "BR-0719", + "type": "small_airport", + "name": "Fazenda Esparrame Airport", + "latitude_deg": "-18.803839", + "longitude_deg": "-53.710504", + "elevation_ft": "1811", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Figueirão", + "scheduled_service": "no", + "gps_code": "SNGH", + "local_code": "MS0423" + }, + { + "id": "334986", + "ident": "BR-0720", + "type": "small_airport", + "name": "Fazenda Padre Cícero Airport", + "latitude_deg": "-5.605802", + "longitude_deg": "-49.475216", + "elevation_ft": "489", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Marabá", + "scheduled_service": "no", + "gps_code": "SNGJ", + "local_code": "PA0172" + }, + { + "id": "334987", + "ident": "BR-0721", + "type": "heliport", + "name": "Grupo Petrópolis Uberaba Heliport", + "latitude_deg": "-19.837778", + "longitude_deg": "-47.885556", + "elevation_ft": "2336", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberaba", + "scheduled_service": "no", + "gps_code": "SNGU", + "local_code": "MG0313" + }, + { + "id": "334988", + "ident": "BR-0722", + "type": "small_airport", + "name": "Fazenda São Judas Tadeu Airport", + "latitude_deg": "-21.561111", + "longitude_deg": "-52.975", + "elevation_ft": "1106", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Santa Rita do Pardo", + "scheduled_service": "no", + "gps_code": "SNHP", + "local_code": "MS0429" + }, + { + "id": "334989", + "ident": "BR-0723", + "type": "small_airport", + "name": "Estância Mil Airport", + "latitude_deg": "-20.199722", + "longitude_deg": "-57.101111", + "elevation_ft": "466", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "SNLE", + "local_code": "MS0495" + }, + { + "id": "334990", + "ident": "BR-0724", + "type": "small_airport", + "name": "Condomínio Liberty Airport", + "latitude_deg": "-16.449075", + "longitude_deg": "-49.012169", + "elevation_ft": "3353", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Montividiu", + "scheduled_service": "no", + "gps_code": "SNLL", + "local_code": "GO0191" + }, + { + "id": "334991", + "ident": "BR-0725", + "type": "small_airport", + "name": "Fazenda Nossa Senhora de Fátima Airport", + "latitude_deg": "-20.154637", + "longitude_deg": "-54.649438", + "elevation_ft": "1381", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Jaraguari", + "scheduled_service": "no", + "gps_code": "SNNF", + "local_code": "MS0220" + }, + { + "id": "334995", + "ident": "BR-0726", + "type": "small_airport", + "name": "Fazenda Tapyratynga Airport", + "latitude_deg": "-12.715205", + "longitude_deg": "-61.474456", + "elevation_ft": "745", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Pimenteiras do Oeste", + "scheduled_service": "no", + "gps_code": "SNNY", + "local_code": "RO0051" + }, + { + "id": "334996", + "ident": "BR-0727", + "type": "small_airport", + "name": "André Textor Airport", + "latitude_deg": "-17.445179", + "longitude_deg": "-51.139827", + "elevation_ft": "2923", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Montividiu", + "scheduled_service": "no", + "gps_code": "SNON", + "local_code": "GO0190" + }, + { + "id": "334997", + "ident": "BR-0728", + "type": "small_airport", + "name": "Centroar Airport", + "latitude_deg": "-14.496258", + "longitude_deg": "-47.035981", + "elevation_ft": "1460", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "lores de Goiás", + "scheduled_service": "no", + "gps_code": "SNQQ", + "local_code": "GO0196" + }, + { + "id": "334998", + "ident": "BR-0729", + "type": "small_airport", + "name": "Fazenda Taquarussu Airport", + "latitude_deg": "-22.546301", + "longitude_deg": "-55.002129", + "elevation_ft": "1549", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Caarapó", + "scheduled_service": "no", + "gps_code": "SNQZ", + "local_code": "MS0468" + }, + { + "id": "335001", + "ident": "BR-0730", + "type": "small_airport", + "name": "Fazenda Santo Antônio Airport", + "latitude_deg": "-4.507778", + "longitude_deg": "-46.267222", + "elevation_ft": "1070", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Buriticupu", + "scheduled_service": "no", + "gps_code": "SNTX", + "local_code": "MA0081" + }, + { + "id": "335003", + "ident": "BR-0731", + "type": "heliport", + "name": "GL Freire Heliport", + "latitude_deg": "-22.915986", + "longitude_deg": "-47.007161", + "elevation_ft": "2461", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SNVG", + "local_code": "SP0858" + }, + { + "id": "335004", + "ident": "BR-0732", + "type": "heliport", + "name": "Sinhozinho Macedo Heliport", + "latitude_deg": "-5.074284", + "longitude_deg": "-42.620039", + "elevation_ft": "463", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Teresina", + "scheduled_service": "no", + "keywords": "SNVG" + }, + { + "id": "335005", + "ident": "BR-0733", + "type": "small_airport", + "name": "Nova Vida Airport", + "latitude_deg": "-9.511944", + "longitude_deg": "-50.831944", + "elevation_ft": "738", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santana do Araguaia", + "scheduled_service": "no", + "gps_code": "SNVL", + "local_code": "PA0161" + }, + { + "id": "335006", + "ident": "BR-0734", + "type": "small_airport", + "name": "Fazenda Novo Progresso Airport", + "latitude_deg": "-6.621785", + "longitude_deg": "-54.983764", + "elevation_ft": "883", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Altamira", + "scheduled_service": "no", + "gps_code": "SNXN", + "local_code": "PA0167" + }, + { + "id": "335009", + "ident": "BR-0735", + "type": "heliport", + "name": "ANAMI Heliport", + "latitude_deg": "-25.59286", + "longitude_deg": "-49.184573", + "elevation_ft": "2989", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "São José dos Pinhais", + "scheduled_service": "no", + "gps_code": "SSEL", + "local_code": "PR0152" + }, + { + "id": "335038", + "ident": "BR-0736", + "type": "small_airport", + "name": "Fazenda Porta do Céu Airport", + "latitude_deg": "-14.116552", + "longitude_deg": "-45.840876", + "elevation_ft": "2923", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Jaborandi", + "scheduled_service": "no", + "gps_code": "SSGD", + "local_code": "BA0247" + }, + { + "id": "335040", + "ident": "BR-0737", + "type": "small_airport", + "name": "Fazenda Santa Helena Airport", + "latitude_deg": "-30.135833", + "longitude_deg": "-52.628889", + "elevation_ft": "269", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Rio Pardo", + "scheduled_service": "no", + "gps_code": "SSHG", + "local_code": "RS0120" + }, + { + "id": "335041", + "ident": "BR-0738", + "type": "heliport", + "name": "Fazenda Santa Cláudia Heliport", + "latitude_deg": "-17.175662", + "longitude_deg": "-49.509013", + "elevation_ft": "2172", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Mairipotaba", + "scheduled_service": "no", + "gps_code": "SSIX", + "local_code": "GO0192" + }, + { + "id": "335044", + "ident": "BR-0739", + "type": "small_airport", + "name": "Fazenda Matrinchã Airport", + "latitude_deg": "-12.930253", + "longitude_deg": "-57.340365", + "elevation_ft": "1135", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SSKO", + "local_code": "MT0492" + }, + { + "id": "335046", + "ident": "BR-0740", + "type": "heliport", + "name": "Jerusalem Medical Center Helipad", + "latitude_deg": "-8.064722", + "longitude_deg": "-34.892222", + "elevation_ft": "239", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Recife", + "scheduled_service": "no", + "gps_code": "SSLV", + "local_code": "PE0064" + }, + { + "id": "335048", + "ident": "BR-0741", + "type": "heliport", + "name": "Fazenda Balada II Heliport", + "latitude_deg": "-16.818056", + "longitude_deg": "-49.050278", + "elevation_ft": "2329", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Bela Vista de Goiás", + "scheduled_service": "no", + "gps_code": "SSOM", + "local_code": "GO0194" + }, + { + "id": "335049", + "ident": "BR-0742", + "type": "heliport", + "name": "Ypê Heliport", + "latitude_deg": "-22.720615", + "longitude_deg": "-46.791737", + "elevation_ft": "2198", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Amparo", + "scheduled_service": "no", + "gps_code": "SSRY", + "local_code": "SP0867" + }, + { + "id": "335053", + "ident": "BR-0743", + "type": "heliport", + "name": "Aurora Heliport", + "latitude_deg": "-22.486438", + "longitude_deg": "-46.988257", + "elevation_ft": "2165", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Moji-Mirim", + "scheduled_service": "no", + "keywords": "SSTR" + }, + { + "id": "335054", + "ident": "BR-0744", + "type": "small_airport", + "name": "Castelli Fazenda Sobradinho Airport", + "latitude_deg": "-13.620254", + "longitude_deg": "-46.097989", + "elevation_ft": "3081", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Correntina", + "scheduled_service": "no", + "gps_code": "SWBB", + "local_code": "BA0252" + }, + { + "id": "335055", + "ident": "BR-0745", + "type": "small_airport", + "name": "Fazenda Canaã Airport", + "latitude_deg": "-10.351296", + "longitude_deg": "-45.564155", + "elevation_ft": "2628", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Formosa do Rio Preto", + "scheduled_service": "no", + "gps_code": "SWCR", + "local_code": "BA0249" + }, + { + "id": "335056", + "ident": "BR-0746", + "type": "heliport", + "name": "Ycambi Ranch Heliport", + "latitude_deg": "-19.718121", + "longitude_deg": "-42.132579", + "elevation_ft": "2116", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Caratinga", + "scheduled_service": "no", + "gps_code": "SWCW", + "local_code": "MG0301" + }, + { + "id": "335057", + "ident": "BR-0747", + "type": "small_airport", + "name": "Fazenda Estrela Airport", + "latitude_deg": "-8.471167", + "longitude_deg": "-45.328109", + "elevation_ft": "1736", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Baixa Grande do Ribeiro", + "scheduled_service": "no", + "gps_code": "SWGD", + "local_code": "PI0050" + }, + { + "id": "335058", + "ident": "BR-0748", + "type": "heliport", + "name": "Fortunas Heliport", + "latitude_deg": "-19.614699", + "longitude_deg": "-44.413682", + "elevation_ft": "2461", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Fortuna de Minas", + "scheduled_service": "no", + "gps_code": "SWGX", + "local_code": "MG0310" + }, + { + "id": "335064", + "ident": "BR-0749", + "type": "small_airport", + "name": "Fazenda Maringá Airport", + "latitude_deg": "-8.146582", + "longitude_deg": "-45.205931", + "elevation_ft": "1755", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Baixa Grande do Ribeiro", + "scheduled_service": "no", + "gps_code": "SWJI", + "local_code": "PI0048" + }, + { + "id": "335066", + "ident": "BR-0750", + "type": "small_airport", + "name": "Condomínio Milla Airport", + "latitude_deg": "-8.252789", + "longitude_deg": "-45.244784", + "elevation_ft": "1877", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Baixa Grande do Ribeiro", + "scheduled_service": "no", + "gps_code": "SWLD", + "local_code": "PI0052" + }, + { + "id": "335069", + "ident": "BR-0751", + "type": "small_airport", + "name": "Vinícola Don Guerino Heliport", + "latitude_deg": "-29.379167", + "longitude_deg": "-51.330278", + "elevation_ft": "1260", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Alto Feliz", + "scheduled_service": "no", + "gps_code": "SWOH", + "local_code": "RS0124" + }, + { + "id": "335070", + "ident": "BR-0752", + "type": "heliport", + "name": "Pequi Metais Heliport", + "latitude_deg": "-19.608056", + "longitude_deg": "-44.655278", + "elevation_ft": "2464", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Pequi", + "scheduled_service": "no", + "gps_code": "SWPO", + "local_code": "MG0320" + }, + { + "id": "335071", + "ident": "BR-0753", + "type": "small_airport", + "name": "Fazenda São Carlos Airport", + "latitude_deg": "-19.177568", + "longitude_deg": "-53.102469", + "elevation_ft": "2264", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Paraíso das Águas", + "scheduled_service": "no", + "gps_code": "SWSC", + "local_code": "MS0426" + }, + { + "id": "335072", + "ident": "BR-0754", + "type": "heliport", + "name": "Guará Heliport", + "latitude_deg": "-1.299167", + "longitude_deg": "-45.751389", + "elevation_ft": "138", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Godofredo Viana", + "scheduled_service": "no", + "gps_code": "SWSR", + "local_code": "MA0079" + }, + { + "id": "335074", + "ident": "BR-0755", + "type": "heliport", + "name": "On Grace Helipad", + "latitude_deg": "-22.932451", + "longitude_deg": "-43.374076", + "elevation_ft": "105", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SWTV", + "local_code": "RJ0183" + }, + { + "id": "335077", + "ident": "BR-0756", + "type": "small_airport", + "name": "Fazenda WSA Airport", + "latitude_deg": "-15.38341", + "longitude_deg": "-53.459209", + "elevation_ft": "1713", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "General Carneiro", + "scheduled_service": "no", + "gps_code": "SWWZ", + "local_code": "MT0482" + }, + { + "id": "335079", + "ident": "BR-0757", + "type": "small_airport", + "name": "Fazenda Montani Bahia Airport", + "latitude_deg": "-12.998064", + "longitude_deg": "-46.077443", + "elevation_ft": "2887", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SWXW", + "local_code": "BA0250" + }, + { + "id": "335088", + "ident": "BR-0758", + "type": "small_airport", + "name": "San Martin Airport", + "latitude_deg": "-22.005825", + "longitude_deg": "-41.217849", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Campos dos Goytacazes", + "scheduled_service": "no", + "gps_code": "SWYJ", + "local_code": "RJ0177" + }, + { + "id": "335089", + "ident": "BR-0759", + "type": "heliport", + "name": "Platinum Corporate Helipad", + "latitude_deg": "-3.733335", + "longitude_deg": "-38.509365", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SWYP", + "local_code": "CE0075" + }, + { + "id": "335090", + "ident": "BR-0760", + "type": "small_airport", + "name": "Fazenda Tunica Airport", + "latitude_deg": "-14.071369", + "longitude_deg": "-52.038982", + "elevation_ft": "974", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Água Boa", + "scheduled_service": "no", + "gps_code": "SWZN", + "local_code": "MT0484" + }, + { + "id": "335091", + "ident": "BR-0761", + "type": "small_airport", + "name": "Reserva Pituba Airstrip", + "latitude_deg": "-10.086322", + "longitude_deg": "-36.09012", + "elevation_ft": "132", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Coruripe", + "scheduled_service": "no", + "local_code": "AL0022" + }, + { + "id": "335092", + "ident": "BR-0762", + "type": "heliport", + "name": "PeterFrut Heliport", + "latitude_deg": "-20.399914", + "longitude_deg": "-41.082768", + "elevation_ft": "3383", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Venda Nova do Imigrante", + "scheduled_service": "no", + "gps_code": "SNTW", + "local_code": "ES0026" + }, + { + "id": "335094", + "ident": "BR-0763", + "type": "small_airport", + "name": "Fazenda Santa Rita Airstrip", + "latitude_deg": "-19.252127", + "longitude_deg": "-55.519638", + "elevation_ft": "440", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SWJR", + "local_code": "MS0417" + }, + { + "id": "335095", + "ident": "BR-0764", + "type": "small_airport", + "name": "Fazenda Carmen Airport", + "latitude_deg": "-18.445198", + "longitude_deg": "-56.329377", + "elevation_ft": "387", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJVI", + "local_code": "MS0491" + }, + { + "id": "335096", + "ident": "BR-0765", + "type": "small_airport", + "name": "Fazenda Nova Piúva", + "latitude_deg": "-19.864066", + "longitude_deg": "-55.513068", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauan", + "scheduled_service": "no", + "gps_code": "SSLI", + "local_code": "MS0427" + }, + { + "id": "335097", + "ident": "BR-0766", + "type": "small_airport", + "name": "FSA Airport", + "latitude_deg": "-12.814444", + "longitude_deg": "-57.179444", + "elevation_ft": "1273", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Maringá", + "scheduled_service": "no", + "gps_code": "SIGG", + "local_code": "MT0488" + }, + { + "id": "335098", + "ident": "BR-0767", + "type": "small_airport", + "name": "Fazenda São Luís", + "latitude_deg": "-13.452496", + "longitude_deg": "-60.82866", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Pimenteiras do Oeste", + "scheduled_service": "no", + "gps_code": "SSLJ", + "local_code": "RO0052" + }, + { + "id": "335099", + "ident": "BR-0768", + "type": "small_airport", + "name": "Fazenda Santa Rita Airstrip", + "latitude_deg": "-27.706615", + "longitude_deg": "-52.723703", + "elevation_ft": "2037", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Campinas do Sul", + "scheduled_service": "no", + "gps_code": "SWRB", + "local_code": "RS0130" + }, + { + "id": "335100", + "ident": "BR-0769", + "type": "small_airport", + "name": "Fazenda Itiquira Airport", + "latitude_deg": "-17.437936", + "longitude_deg": "-54.164421", + "elevation_ft": "2215", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Itiquira", + "scheduled_service": "no", + "gps_code": "SJGI", + "local_code": "MT0173" + }, + { + "id": "335101", + "ident": "BR-0770", + "type": "heliport", + "name": "BS Design Helipad", + "latitude_deg": "-3.737767", + "longitude_deg": "-38.499436", + "elevation_ft": "348", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SSQN", + "local_code": "CE0072" + }, + { + "id": "335102", + "ident": "BR-0771", + "type": "small_airport", + "name": "Fazenda Parnaguá Airstrip", + "latitude_deg": "-9.105337", + "longitude_deg": "-45.618233", + "elevation_ft": "1900", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Santa Filomena", + "scheduled_service": "no", + "gps_code": "SWXT", + "local_code": "PI0067", + "keywords": "?GO0187?" + }, + { + "id": "335103", + "ident": "BR-0772", + "type": "small_airport", + "name": "Fazenda Jacuba Airport", + "latitude_deg": "-17.881872", + "longitude_deg": "-53.038971", + "elevation_ft": "2887", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Mineiros", + "scheduled_service": "no", + "gps_code": "SJCN", + "local_code": "GO0187" + }, + { + "id": "335107", + "ident": "BR-0773", + "type": "small_airport", + "name": "Fazenda Querência Airport", + "latitude_deg": "-18.853717", + "longitude_deg": "-54.672754", + "elevation_ft": "1453", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Verde de Mato Grosso", + "scheduled_service": "no", + "gps_code": "SDYQ", + "local_code": "MS0062" + }, + { + "id": "335108", + "ident": "BR-0774", + "type": "small_airport", + "name": "Fazenda São Luiz Airport", + "latitude_deg": "-12.425062", + "longitude_deg": "-46.247592", + "elevation_ft": "2959", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Luís Eduardo Magalhães", + "scheduled_service": "no", + "gps_code": "SNSL", + "local_code": "BA0241" + }, + { + "id": "335109", + "ident": "BR-0775", + "type": "small_airport", + "name": "Aníbal Airport", + "latitude_deg": "-4.847581", + "longitude_deg": "-37.942214", + "elevation_ft": "141", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Russas", + "scheduled_service": "no", + "gps_code": "SSVT", + "local_code": "CE0078" + }, + { + "id": "335110", + "ident": "BR-0776", + "type": "small_airport", + "name": "Fazenda Santa Luzia Airport", + "latitude_deg": "-14.248889", + "longitude_deg": "-50.880556", + "elevation_ft": "853", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Aruanã", + "scheduled_service": "no", + "gps_code": "SILO", + "local_code": "GO0184" + }, + { + "id": "335111", + "ident": "BR-0777", + "type": "small_airport", + "name": "Fazenda Cachoeirinha Airport", + "latitude_deg": "-17.2325", + "longitude_deg": "-51.650278", + "elevation_ft": "3258", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Caiapôni", + "scheduled_service": "no", + "gps_code": "SWXG", + "local_code": "GO0188" + }, + { + "id": "335112", + "ident": "BR-0778", + "type": "small_airport", + "name": "Fazenda Musa do Norte Airstrip", + "latitude_deg": "-16.123689", + "longitude_deg": "-43.520276", + "elevation_ft": "1749", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Francisco Sá", + "scheduled_service": "no", + "gps_code": "SIPP", + "local_code": "MG0312" + }, + { + "id": "335128", + "ident": "BR-0779", + "type": "heliport", + "name": "Costa de Guadalupe Heliport", + "latitude_deg": "-8.688165", + "longitude_deg": "-35.086845", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Sirinhaém", + "scheduled_service": "no", + "gps_code": "SDZY", + "local_code": "PE0061" + }, + { + "id": "335136", + "ident": "BR-0780", + "type": "small_airport", + "name": "Sitio Aeroportuário Esteirinha Airport", + "latitude_deg": "-24.209289", + "longitude_deg": "-53.182276", + "elevation_ft": "1424", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Goioerê", + "scheduled_service": "no", + "gps_code": "SIAI", + "local_code": "PR0042" + }, + { + "id": "335137", + "ident": "BR-0781", + "type": "small_airport", + "name": "Fazenda Arancuã Airport", + "latitude_deg": "-20.180036", + "longitude_deg": "-56.55678", + "elevation_ft": "410", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "SIAR", + "local_code": "MS0066" + }, + { + "id": "335138", + "ident": "BR-0782", + "type": "small_airport", + "name": "Fazenda Pirizal Airport", + "latitude_deg": "-16.224266", + "longitude_deg": "-59.755164", + "elevation_ft": "866", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SIAU", + "local_code": "MT0079" + }, + { + "id": "335139", + "ident": "BR-0783", + "type": "small_airport", + "name": "Fazenda Água Azul Airport", + "latitude_deg": "-15.259432", + "longitude_deg": "-54.944217", + "elevation_ft": "2303", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Verde", + "scheduled_service": "no", + "gps_code": "SIAZ", + "local_code": "MT0080" + }, + { + "id": "335140", + "ident": "BR-0784", + "type": "heliport", + "name": "Beverly Hills Heliport", + "latitude_deg": "-22.358958", + "longitude_deg": "-43.098724", + "elevation_ft": "2608", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Petrópolis", + "scheduled_service": "no", + "gps_code": "SIBD", + "local_code": "RJ0066" + }, + { + "id": "335150", + "ident": "BR-0785", + "type": "small_airport", + "name": "Fazenda Pampa Alegre Airport", + "latitude_deg": "-17.49863", + "longitude_deg": "-54.309882", + "elevation_ft": "2011", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Itiquira", + "scheduled_service": "no", + "gps_code": "SIBP", + "local_code": "MT0082" + }, + { + "id": "335151", + "ident": "BR-0786", + "type": "heliport", + "name": "E-Business Bosque Helipad", + "latitude_deg": "-23.511959", + "longitude_deg": "-46.710257", + "elevation_ft": "2625", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIBS", + "local_code": "SP0470" + }, + { + "id": "335152", + "ident": "BR-0787", + "type": "seaplane_base", + "name": "Fazenda Catuaí", + "latitude_deg": "-11.468052", + "longitude_deg": "-57.609239", + "elevation_ft": "961", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juara", + "scheduled_service": "no", + "gps_code": "SICF", + "local_code": "MT0083" + }, + { + "id": "335157", + "ident": "BR-0788", + "type": "heliport", + "name": "Metropolitan Criciúma Helipad", + "latitude_deg": "-28.675443", + "longitude_deg": "-49.366475", + "elevation_ft": "377", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SICI", + "local_code": "SC0048" + }, + { + "id": "335158", + "ident": "BR-0789", + "type": "small_airport", + "name": "Domélia Airstrip", + "latitude_deg": "-22.745532", + "longitude_deg": "-49.291213", + "elevation_ft": "2077", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Agudos", + "scheduled_service": "no", + "keywords": "SICI" + }, + { + "id": "335159", + "ident": "BR-0790", + "type": "heliport", + "name": "Columbia II Heliport", + "latitude_deg": "-19.937497", + "longitude_deg": "-40.411574", + "elevation_ft": "138", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Fundão", + "scheduled_service": "no", + "gps_code": "SICO", + "local_code": "ES0014" + }, + { + "id": "335206", + "ident": "BR-0791", + "type": "small_airport", + "name": "Fazenda Gaúcha do Norte Airport", + "latitude_deg": "-13.031392", + "longitude_deg": "-52.980912", + "elevation_ft": "1165", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Gaúcha do Norte", + "scheduled_service": "no", + "gps_code": "SIKU", + "local_code": "MT0499" + }, + { + "id": "335207", + "ident": "BR-0792", + "type": "small_airport", + "name": "Fazenda São Jorge Airport", + "latitude_deg": "-15.348349", + "longitude_deg": "-58.029166", + "elevation_ft": "587", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Lambari D'oeste", + "scheduled_service": "no", + "gps_code": "SJNZ", + "local_code": "MT0514" + }, + { + "id": "335213", + "ident": "BR-0793", + "type": "heliport", + "name": "Hospital Estadual Dr. Jayme Santos Neves Heliport", + "latitude_deg": "-20.201136", + "longitude_deg": "-40.228143", + "elevation_ft": "95", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Serra", + "scheduled_service": "no", + "gps_code": "SJAE", + "local_code": "ES0019" + }, + { + "id": "335214", + "ident": "BR-0794", + "type": "small_airport", + "name": "Santo Antônio das Furnas Airport", + "latitude_deg": "-16.980691", + "longitude_deg": "-54.954897", + "elevation_ft": "676", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santo Antônio do Leverger", + "scheduled_service": "no", + "gps_code": "SJAF", + "local_code": "MT0162" + }, + { + "id": "335215", + "ident": "BR-0795", + "type": "heliport", + "name": "Fazenda Santa Cruz Heliport", + "latitude_deg": "-22.273321", + "longitude_deg": "-47.307987", + "elevation_ft": "1965", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araras", + "scheduled_service": "no", + "gps_code": "SJAG", + "local_code": "SP0587" + }, + { + "id": "335216", + "ident": "BR-0796", + "type": "small_airport", + "name": "Aerobako Airport", + "latitude_deg": "-11.917246", + "longitude_deg": "-55.43445", + "elevation_ft": "1220", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sinop", + "scheduled_service": "no", + "gps_code": "SJAK", + "local_code": "MT0163" + }, + { + "id": "335217", + "ident": "BR-0797", + "type": "small_airport", + "name": "Lagoa Grande Airport", + "latitude_deg": "-13.404253", + "longitude_deg": "-41.010692", + "elevation_ft": "2139", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Iramaia", + "scheduled_service": "no", + "gps_code": "SJAL", + "local_code": "BA0101" + }, + { + "id": "335229", + "ident": "BR-0798", + "type": "heliport", + "name": "Lagoa Redonda Heliport", + "latitude_deg": "-3.817946", + "longitude_deg": "-38.460549", + "elevation_ft": "46", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SNDO", + "local_code": "CE0049" + }, + { + "id": "335230", + "ident": "BR-0799", + "type": "small_airport", + "name": "Derso Portilho Vieira Airport", + "latitude_deg": "-11.425494", + "longitude_deg": "-52.219024", + "elevation_ft": "1142", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São Félix do Araguaia", + "scheduled_service": "no", + "gps_code": "SNDP", + "local_code": "MT0244" + }, + { + "id": "335234", + "ident": "BR-0800", + "type": "small_airport", + "name": "NX GOLD Airport", + "latitude_deg": "-14.64288", + "longitude_deg": "-52.499008", + "elevation_ft": "997", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Xavantina", + "scheduled_service": "no", + "gps_code": "SNDZ", + "local_code": "MT0245", + "keywords": "Mineração Caraíba" + }, + { + "id": "335235", + "ident": "BR-0801", + "type": "small_airport", + "name": "Estância Primavera Airstrip", + "latitude_deg": "-30.058095", + "longitude_deg": "-55.435554", + "elevation_ft": "482", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Alegrete", + "scheduled_service": "no", + "gps_code": "SNEA", + "local_code": "RS0082" + }, + { + "id": "335238", + "ident": "BR-0802", + "type": "heliport", + "name": "Hospital Samaritano Heliport", + "latitude_deg": "-22.992858", + "longitude_deg": "-43.373178", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SNEH", + "local_code": "RJ0126" + }, + { + "id": "335241", + "ident": "BR-0803", + "type": "heliport", + "name": "Heliponto Pina", + "latitude_deg": "-8.084035", + "longitude_deg": "-34.886279", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Recife", + "scheduled_service": "no", + "local_code": "PE0041", + "keywords": "SNEN" + }, + { + "id": "335247", + "ident": "BR-0804", + "type": "heliport", + "name": "Instituto RB Heliport", + "latitude_deg": "-8.062158", + "longitude_deg": "-34.963882", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Recife", + "scheduled_service": "no", + "gps_code": "SNER", + "local_code": "PE0042" + }, + { + "id": "335249", + "ident": "BR-0805", + "type": "heliport", + "name": "Vargas Heliport", + "latitude_deg": "-27.148949", + "longitude_deg": "-48.95695", + "elevation_ft": "200", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Brusque", + "scheduled_service": "no", + "gps_code": "SNEV", + "local_code": "SC0076" + }, + { + "id": "335250", + "ident": "BR-0806", + "type": "heliport", + "name": "Edifício Luxor Helipad", + "latitude_deg": "-23.519382", + "longitude_deg": "-47.463721", + "elevation_ft": "2133", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sorocaba", + "scheduled_service": "no", + "gps_code": "SNEX", + "local_code": "SP0697" + }, + { + "id": "335251", + "ident": "BR-0807", + "type": "small_airport", + "name": "Fazenda Cachoeira do Bambuzal Airport", + "latitude_deg": "-15.931687", + "longitude_deg": "-49.678005", + "elevation_ft": "2530", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Itaguari", + "scheduled_service": "no", + "gps_code": "SNFB", + "local_code": "GO0095" + }, + { + "id": "335252", + "ident": "BR-0808", + "type": "small_airport", + "name": "Marina do Caraipé Airport", + "latitude_deg": "-3.863484", + "longitude_deg": "-49.683008", + "elevation_ft": "361", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Tucuruí", + "scheduled_service": "no", + "gps_code": "SNFC", + "local_code": "PA0088" + }, + { + "id": "335253", + "ident": "BR-0809", + "type": "small_airport", + "name": "Usina César Filho Airport", + "latitude_deg": "-12.2619", + "longitude_deg": "-61.176508", + "elevation_ft": "981", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Chupinguaia", + "scheduled_service": "no", + "gps_code": "SNFH", + "local_code": "RO0022" + }, + { + "id": "335254", + "ident": "BR-0810", + "type": "small_airport", + "name": "Fazenda Bandeirantes Airport", + "latitude_deg": "-14.347952", + "longitude_deg": "-56.948738", + "elevation_ft": "1079", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Marilândia", + "scheduled_service": "no", + "gps_code": "SNFQ", + "local_code": "MT0251" + }, + { + "id": "335255", + "ident": "BR-0811", + "type": "small_airport", + "name": "Fazenda Mourão Airport", + "latitude_deg": "-8.986135", + "longitude_deg": "-61.458292", + "elevation_ft": "476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Colniza", + "scheduled_service": "no", + "gps_code": "SNFM", + "local_code": "MT0249" + }, + { + "id": "335256", + "ident": "BR-0812", + "type": "small_airport", + "name": "Fly Lagos Airport", + "latitude_deg": "-22.719184", + "longitude_deg": "-42.053204", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Cabo Frio", + "scheduled_service": "no", + "gps_code": "SNFL", + "local_code": "RJ0026" + }, + { + "id": "335257", + "ident": "BR-0813", + "type": "small_airport", + "name": "Presidente Roosevelt Airport", + "latitude_deg": "-7.846799", + "longitude_deg": "-60.973428", + "elevation_ft": "305", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Novo Aripuanã", + "scheduled_service": "no", + "gps_code": "SNFR", + "local_code": "AM0037" + }, + { + "id": "335258", + "ident": "BR-0814", + "type": "small_airport", + "name": "Fazenda Barcelona V Airport", + "latitude_deg": "-11.598436", + "longitude_deg": "-46.026589", + "elevation_ft": "2651", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Formosa do Rio Preto", + "scheduled_service": "no", + "gps_code": "SNFS", + "local_code": "BA0136" + }, + { + "id": "335259", + "ident": "BR-0815", + "type": "small_airport", + "name": "Fazenda Toca da Onça Airport", + "latitude_deg": "-11.323909", + "longitude_deg": "-54.573555", + "elevation_ft": "1152", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "União do Sul", + "scheduled_service": "no", + "gps_code": "SNFT", + "local_code": "MT0252" + }, + { + "id": "335260", + "ident": "BR-0816", + "type": "small_airport", + "name": "Serra da Pintura Airport", + "latitude_deg": "-15.567429", + "longitude_deg": "-51.210555", + "elevation_ft": "1230", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Santa Fé de Goiás", + "scheduled_service": "no", + "gps_code": "SNFV", + "local_code": "GO0096" + }, + { + "id": "335261", + "ident": "BR-0817", + "type": "small_airport", + "name": "Fly Park Florianópolis", + "latitude_deg": "-27.469935", + "longitude_deg": "-48.471336", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Florianópolis", + "scheduled_service": "no", + "gps_code": "SNFY", + "local_code": "SC0034" + }, + { + "id": "335273", + "ident": "BR-0818", + "type": "heliport", + "name": "Galleria Corporate Helipad", + "latitude_deg": "-22.866448", + "longitude_deg": "-47.021903", + "elevation_ft": "2221", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SNGC", + "local_code": "SP0699" + }, + { + "id": "335274", + "ident": "BR-0819", + "type": "small_airport", + "name": "Fazenda Epemaju Airstrip", + "latitude_deg": "-5.559945", + "longitude_deg": "-50.965282", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "São Félix do Xingu", + "scheduled_service": "no", + "gps_code": "SNGM", + "local_code": "PA0091" + }, + { + "id": "335275", + "ident": "BR-0820", + "type": "small_airport", + "name": "Montes Claros de Goiás Airport", + "latitude_deg": "-15.896137", + "longitude_deg": "-51.523453", + "elevation_ft": "1096", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Montes Claros de Goiás", + "scheduled_service": "no", + "gps_code": "SNGO", + "local_code": "GO0097" + }, + { + "id": "335276", + "ident": "BR-0821", + "type": "small_airport", + "name": "Fazenda Santo Angelo Airport", + "latitude_deg": "-14.827011", + "longitude_deg": "-40.650193", + "elevation_ft": "2936", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Barra do Choça", + "scheduled_service": "no", + "gps_code": "SNGW", + "local_code": "BA0137" + }, + { + "id": "335283", + "ident": "BR-0822", + "type": "small_airport", + "name": "Salles Airport", + "latitude_deg": "-1.258889", + "longitude_deg": "-47.953333", + "elevation_ft": "135", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Castanhal", + "scheduled_service": "no", + "gps_code": "SNGY", + "local_code": "PA0164" + }, + { + "id": "335286", + "ident": "BR-0823", + "type": "heliport", + "name": "Do Crer Helipad", + "latitude_deg": "-16.655098", + "longitude_deg": "-49.24902", + "elevation_ft": "2398", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiânia", + "scheduled_service": "no", + "gps_code": "SNHQ", + "local_code": "GO0165" + }, + { + "id": "335287", + "ident": "BR-0824", + "type": "small_airport", + "name": "Fazenda Central Airstrip", + "latitude_deg": "-19.415842", + "longitude_deg": "-56.193288", + "elevation_ft": "377", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SNHX", + "local_code": "MS0208" + }, + { + "id": "335288", + "ident": "BR-0825", + "type": "small_airport", + "name": "Fazenda Caacupê Airport", + "latitude_deg": "-21.290904", + "longitude_deg": "-55.822763", + "elevation_ft": "1030", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nioaque", + "scheduled_service": "no", + "gps_code": "SNHK", + "local_code": "MS0207" + }, + { + "id": "335289", + "ident": "BR-0826", + "type": "heliport", + "name": "Comandante Endeel Gabriel Helipad", + "latitude_deg": "-2.484987", + "longitude_deg": "-44.251246", + "elevation_ft": "125", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "São Luís", + "scheduled_service": "no", + "gps_code": "SNHA", + "local_code": "MA0067" + }, + { + "id": "335291", + "ident": "BR-0827", + "type": "small_airport", + "name": "Fazenda Alvorada Airport", + "latitude_deg": "-7.3175", + "longitude_deg": "-48.762778", + "elevation_ft": "682", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Araguaína", + "scheduled_service": "no", + "keywords": "SNHC" + }, + { + "id": "335293", + "ident": "BR-0828", + "type": "small_airport", + "name": "Fazenda Joazeiro Airstrip", + "latitude_deg": "-19.21012", + "longitude_deg": "-55.939673", + "elevation_ft": "413", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SNII", + "local_code": "MS0210" + }, + { + "id": "335294", + "ident": "BR-0829", + "type": "small_airport", + "name": "Joca Viol Airport", + "latitude_deg": "-21.282048", + "longitude_deg": "-50.412825", + "elevation_ft": "1467", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Birigui", + "scheduled_service": "no", + "gps_code": "SNIJ", + "local_code": "SP0229" + }, + { + "id": "335297", + "ident": "BR-0830", + "type": "heliport", + "name": "Pequena Tiradentes Heliport", + "latitude_deg": "-21.12802", + "longitude_deg": "-44.169824", + "elevation_ft": "3005", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Tiradentes", + "scheduled_service": "no", + "gps_code": "SDCT", + "local_code": "MG0214" + }, + { + "id": "335298", + "ident": "BR-0831", + "type": "heliport", + "name": "Pátio Victor Malzoni Helipad", + "latitude_deg": "-23.586584", + "longitude_deg": "-46.681885", + "elevation_ft": "2720", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDVR", + "local_code": "SP0436" + }, + { + "id": "335300", + "ident": "BR-0832", + "type": "heliport", + "name": "Barroco Lopes Heliport", + "latitude_deg": "-22.322329", + "longitude_deg": "-41.744978", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Macaé", + "scheduled_service": "no", + "gps_code": "SIBQ", + "local_code": "RJ0067" + }, + { + "id": "335301", + "ident": "BR-0833", + "type": "small_airport", + "name": "Fazenda Coração do Brasil Airport", + "latitude_deg": "-15.970096", + "longitude_deg": "-59.643041", + "elevation_ft": "817", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes e Lacerda", + "scheduled_service": "no", + "gps_code": "SICR", + "local_code": "MT0085" + }, + { + "id": "335302", + "ident": "BR-0834", + "type": "small_airport", + "name": "Fazenda São Pedro Airport", + "latitude_deg": "-16.799457", + "longitude_deg": "-46.744627", + "elevation_ft": "1877", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Unaí", + "scheduled_service": "no", + "gps_code": "SICP", + "local_code": "MG0093" + }, + { + "id": "335305", + "ident": "BR-0835", + "type": "small_airport", + "name": "Fazenda Apucarana", + "latitude_deg": "-5.462267", + "longitude_deg": "-49.77277", + "elevation_ft": "604", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Marabá", + "scheduled_service": "no", + "gps_code": "SICY", + "local_code": "PA0042" + }, + { + "id": "335306", + "ident": "BR-0836", + "type": "heliport", + "name": "Sítio Sobradinho Heliport", + "latitude_deg": "-23.221354", + "longitude_deg": "-44.784313", + "elevation_ft": "322", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Parati", + "scheduled_service": "no", + "gps_code": "SIDC", + "local_code": "RJ0070" + }, + { + "id": "335307", + "ident": "BR-0837", + "type": "heliport", + "name": "Fazenda São Braz Heliport", + "latitude_deg": "-9.379379", + "longitude_deg": "-35.508239", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Barra de Santo Antônio", + "scheduled_service": "no", + "gps_code": "SIDD", + "local_code": "AL0015" + }, + { + "id": "335308", + "ident": "BR-0838", + "type": "small_airport", + "name": "Fazenda São José Airport", + "latitude_deg": "-16.068933", + "longitude_deg": "-58.480352", + "elevation_ft": "676", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SIDF", + "local_code": "MT0087" + }, + { + "id": "335310", + "ident": "BR-0839", + "type": "heliport", + "name": "Brascan Century Plaza Green Valley Commercial Helipad", + "latitude_deg": "-23.485251", + "longitude_deg": "-46.864586", + "elevation_ft": "2890", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SIDH", + "local_code": "SP0480" + }, + { + "id": "335313", + "ident": "BR-0840", + "type": "small_airport", + "name": "Fazenda Boqueirão de Cedro Airport", + "latitude_deg": "-12.890307", + "longitude_deg": "-46.693536", + "elevation_ft": "2287", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Arraias", + "scheduled_service": "no", + "gps_code": "SIDK", + "local_code": "TO0017" + }, + { + "id": "335314", + "ident": "BR-0841", + "type": "small_airport", + "name": "Romaer Aviação Agrícola Airport", + "latitude_deg": "-22.931206", + "longitude_deg": "-55.588507", + "elevation_ft": "1903", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aral Moreira", + "scheduled_service": "no", + "gps_code": "SIDS", + "local_code": "MS0071", + "keywords": "Fazenda Cerro Alegre" + }, + { + "id": "335315", + "ident": "BR-0842", + "type": "small_airport", + "name": "Fazenda Figueiral Airport", + "latitude_deg": "-18.397778", + "longitude_deg": "-55.413709", + "elevation_ft": "541", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SIDN", + "local_code": "MS0069" + }, + { + "id": "335317", + "ident": "BR-0843", + "type": "small_airport", + "name": "Pagador Airport", + "latitude_deg": "-22.183798", + "longitude_deg": "-51.474657", + "elevation_ft": "1207", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Presidente Prudente", + "scheduled_service": "no", + "gps_code": "SIDO", + "local_code": "SP0174" + }, + { + "id": "335318", + "ident": "BR-0844", + "type": "heliport", + "name": "Vale das Palmeiras Heliport", + "latitude_deg": "-22.388214", + "longitude_deg": "-41.855829", + "elevation_ft": "39", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Macaé", + "scheduled_service": "no", + "gps_code": "SIDP", + "local_code": "RJ0071" + }, + { + "id": "335319", + "ident": "BR-0845", + "type": "heliport", + "name": "Cidade da Polícia Heliport", + "latitude_deg": "-22.880138", + "longitude_deg": "-43.25493", + "elevation_ft": "404", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SIDU", + "local_code": "RJ0074" + }, + { + "id": "335320", + "ident": "BR-0846", + "type": "small_airport", + "name": "Doutor Saulo Villela Airport", + "latitude_deg": "-21.780237", + "longitude_deg": "-43.280217", + "elevation_ft": "2126", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Juiz de Fora", + "scheduled_service": "no", + "gps_code": "SIDV", + "local_code": "MG0095" + }, + { + "id": "335322", + "ident": "BR-0847", + "type": "heliport", + "name": "Vila Adail 2 Heliport", + "latitude_deg": "-23.050483", + "longitude_deg": "-47.396234", + "elevation_ft": "1883", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Elias Fausto", + "scheduled_service": "no", + "gps_code": "SIDX", + "local_code": "SP0482" + }, + { + "id": "335323", + "ident": "BR-0848", + "type": "small_airport", + "name": "Fazenda Santa Fé Airport", + "latitude_deg": "-12.224904", + "longitude_deg": "-44.039167", + "elevation_ft": "2575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Tabocas do Brejo Velho", + "scheduled_service": "no", + "gps_code": "SIDZ", + "local_code": "BA0085" + }, + { + "id": "335337", + "ident": "BR-0849", + "type": "small_airport", + "name": "Fazenda Espadim Airport", + "latitude_deg": "-23.798518", + "longitude_deg": "-55.339382", + "elevation_ft": "1240", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Paranhos", + "scheduled_service": "no", + "gps_code": "SIED", + "local_code": "MS0074" + }, + { + "id": "335338", + "ident": "BR-0850", + "type": "small_airport", + "name": "Ecovias Imigrantes Heliport", + "latitude_deg": "-23.784505", + "longitude_deg": "-46.596576", + "elevation_ft": "2526", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Bernardo do Campo", + "scheduled_service": "no", + "gps_code": "SIEE", + "local_code": "SP0483" + }, + { + "id": "335339", + "ident": "BR-0851", + "type": "small_airport", + "name": "Fazenda Chapadão Airport", + "latitude_deg": "-17.893674", + "longitude_deg": "-47.244043", + "elevation_ft": "3241", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Guarda-Mor", + "scheduled_service": "no", + "gps_code": "SIEG", + "local_code": "MG0096" + }, + { + "id": "335340", + "ident": "BR-0852", + "type": "heliport", + "name": "Helicia Heliport", + "latitude_deg": "-12.839235", + "longitude_deg": "-38.426343", + "elevation_ft": "299", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Simões Filho", + "scheduled_service": "no", + "gps_code": "SIEI", + "local_code": "BA0193" + }, + { + "id": "335342", + "ident": "BR-0853", + "type": "small_airport", + "name": "Fazenda Santa Eulina Airstrip", + "latitude_deg": "-18.126908", + "longitude_deg": "-56.526815", + "elevation_ft": "390", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SIEN", + "local_code": "MS0076" + }, + { + "id": "335345", + "ident": "BR-0854", + "type": "heliport", + "name": "CD 19 Helipad", + "latitude_deg": "-23.95541", + "longitude_deg": "-46.189733", + "elevation_ft": "39", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarujá", + "scheduled_service": "no", + "gps_code": "SIET", + "local_code": "SP0487" + }, + { + "id": "335348", + "ident": "BR-0855", + "type": "small_airport", + "name": "Asa Branca Airport", + "latitude_deg": "-28.528067", + "longitude_deg": "-48.949088", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Tubarão", + "scheduled_service": "no", + "gps_code": "SIEZ", + "local_code": "SC0025" + }, + { + "id": "335361", + "ident": "BR-0856", + "type": "small_airport", + "name": "Coroa do Avião Airport", + "latitude_deg": "-7.84515", + "longitude_deg": "-34.891529", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Igarassu", + "scheduled_service": "no", + "gps_code": "SIFC", + "local_code": "PE0013" + }, + { + "id": "335362", + "ident": "BR-0857", + "type": "small_airport", + "name": "Fazenda Santa Marina II Airport", + "latitude_deg": "-21.374019", + "longitude_deg": "-53.864477", + "elevation_ft": "1460", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "gps_code": "SIFD", + "local_code": "MS0079" + }, + { + "id": "335363", + "ident": "BR-0858", + "type": "small_airport", + "name": "Fazenda Estiva Airport", + "latitude_deg": "-21.725195", + "longitude_deg": "-55.094423", + "elevation_ft": "1250", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Maracaju", + "scheduled_service": "no", + "gps_code": "SIFE", + "local_code": "MS0080" + }, + { + "id": "335364", + "ident": "BR-0859", + "type": "small_airport", + "name": "Sunset Airfield", + "latitude_deg": "-29.324402", + "longitude_deg": "-50.739777", + "elevation_ft": "2825", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "São Francisco de Paula", + "scheduled_service": "no", + "gps_code": "SIFF", + "local_code": "RS0059" + }, + { + "id": "335366", + "ident": "BR-0860", + "type": "small_airport", + "name": "Fazenda Bom Jesus Airport", + "latitude_deg": "-16.794167", + "longitude_deg": "-54.11", + "elevation_ft": "2365", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pedra Preta", + "scheduled_service": "no", + "gps_code": "SIFJ", + "local_code": "MT0093" + }, + { + "id": "335367", + "ident": "BR-0861", + "type": "heliport", + "name": "FIESC Helipad", + "latitude_deg": "-27.592236", + "longitude_deg": "-48.493019", + "elevation_ft": "69", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Florianópolis", + "scheduled_service": "no", + "gps_code": "SIFL", + "local_code": "SC0049" + }, + { + "id": "335392", + "ident": "BR-0862", + "type": "heliport", + "name": "Fazenda Santa Maria Heliport", + "latitude_deg": "-21.284871", + "longitude_deg": "-47.757525", + "elevation_ft": "2575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cravinhos", + "scheduled_service": "no", + "gps_code": "SIFR", + "local_code": "SP0490" + }, + { + "id": "335393", + "ident": "BR-0863", + "type": "small_airport", + "name": "Fazenda Patropi", + "latitude_deg": "-9.308215", + "longitude_deg": "-51.610344", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "São Félix do Xingu", + "scheduled_service": "no", + "gps_code": "SIFX", + "local_code": "PA0045" + }, + { + "id": "335394", + "ident": "BR-0864", + "type": "heliport", + "name": "Heliponto Conduspar", + "latitude_deg": "-25.572524", + "longitude_deg": "-49.152381", + "elevation_ft": "3064", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "São José dos Pinhais", + "scheduled_service": "no", + "gps_code": "SIFY", + "local_code": "PR0107" + }, + { + "id": "335400", + "ident": "BR-0865", + "type": "heliport", + "name": "Guidoni Heliport", + "latitude_deg": "-19.190467", + "longitude_deg": "-40.630563", + "elevation_ft": "538", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "São Domingos do Norte", + "scheduled_service": "no", + "gps_code": "SIGD", + "local_code": "ES0015" + }, + { + "id": "335401", + "ident": "BR-0866", + "type": "small_airport", + "name": "Alberi Juliani Airport", + "latitude_deg": "-10.786358", + "longitude_deg": "-49.585894", + "elevation_ft": "663", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Lagoa da Confusão", + "scheduled_service": "no", + "gps_code": "SIGE", + "local_code": "TO0018" + }, + { + "id": "335402", + "ident": "BR-0867", + "type": "small_airport", + "name": "Rumenos Sarkis Simão Airport", + "latitude_deg": "-15.138302", + "longitude_deg": "-48.242565", + "elevation_ft": "2064", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Padre Bernardo", + "scheduled_service": "no", + "gps_code": "SIGF", + "local_code": "GO0047" + }, + { + "id": "335403", + "ident": "BR-0868", + "type": "heliport", + "name": "Igarashi Heliport", + "latitude_deg": "-26.392831", + "longitude_deg": "-50.164744", + "elevation_ft": "2674", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Papanduva", + "scheduled_service": "no", + "gps_code": "SIGH", + "local_code": "SC0051" + }, + { + "id": "335404", + "ident": "BR-0869", + "type": "heliport", + "name": "Fazenda Cardeiros Heliport", + "latitude_deg": "-22.879151", + "longitude_deg": "-42.131377", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "São Pedro da Aldeia", + "scheduled_service": "no", + "gps_code": "SIGI", + "local_code": "RJ0077" + }, + { + "id": "335405", + "ident": "BR-0870", + "type": "heliport", + "name": "Gandini Terras Heliport", + "latitude_deg": "-23.298827", + "longitude_deg": "-47.287635", + "elevation_ft": "1903", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itu", + "scheduled_service": "no", + "gps_code": "SIGM", + "local_code": "SP0494" + }, + { + "id": "335663", + "ident": "BR-0871", + "type": "small_airport", + "name": "Pista Aldeia Kenjdã", + "latitude_deg": "-7.957261", + "longitude_deg": "-53.262633", + "elevation_ft": "892", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Altamira", + "scheduled_service": "no", + "gps_code": "SIOZ", + "local_code": "PA0051" + }, + { + "id": "335408", + "ident": "BR-0872", + "type": "heliport", + "name": "Asa Branca Heliport", + "latitude_deg": "-8.190833", + "longitude_deg": "-35.5175", + "elevation_ft": "1624", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Gravatá", + "scheduled_service": "no", + "gps_code": "SIGR", + "local_code": "PE0027" + }, + { + "id": "335411", + "ident": "BR-0873", + "type": "heliport", + "name": "Iguatemi Ribeirão Preto Helipad", + "latitude_deg": "-21.225657", + "longitude_deg": "-47.83686", + "elevation_ft": "2021", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Preto", + "scheduled_service": "no", + "gps_code": "SIGU", + "local_code": "SP0496" + }, + { + "id": "335412", + "ident": "BR-0874", + "type": "small_airport", + "name": "Fazenda Serra Grande Airport", + "latitude_deg": "-8.343619", + "longitude_deg": "-45.517925", + "elevation_ft": "1739", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Ribeiro Gonçalves", + "scheduled_service": "no", + "gps_code": "SIGW", + "local_code": "PI0020" + }, + { + "id": "335413", + "ident": "BR-0875", + "type": "small_airport", + "name": "Agropecuária São Bernardo Airport", + "latitude_deg": "-28.817551", + "longitude_deg": "-54.382433", + "elevation_ft": "1070", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "São Miguel das Missões", + "scheduled_service": "no", + "gps_code": "SIHA", + "local_code": "RS0061" + }, + { + "id": "335414", + "ident": "BR-0876", + "type": "heliport", + "name": "Fortesolo Heliport", + "latitude_deg": "-25.55426", + "longitude_deg": "-48.557693", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Paranaguá", + "scheduled_service": "no", + "gps_code": "SIHE", + "local_code": "PR0108" + }, + { + "id": "335415", + "ident": "BR-0877", + "type": "heliport", + "name": "Flamboyant II Helipad", + "latitude_deg": "-16.709452", + "longitude_deg": "-49.235734", + "elevation_ft": "2736", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiânia", + "scheduled_service": "no", + "gps_code": "SIHF", + "local_code": "GO0156" + }, + { + "id": "335416", + "ident": "BR-0878", + "type": "heliport", + "name": "Gois Heliport", + "latitude_deg": "-16.063639", + "longitude_deg": "-47.998862", + "elevation_ft": "3704", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Valparaíso de Goiás", + "scheduled_service": "no", + "gps_code": "SIHG", + "local_code": "GO0157" + }, + { + "id": "335417", + "ident": "BR-0879", + "type": "heliport", + "name": "Insólito Hotel Heliport", + "latitude_deg": "-22.770088", + "longitude_deg": "-41.882726", + "elevation_ft": "79", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Armação de Búzios", + "scheduled_service": "no", + "gps_code": "SIHH", + "local_code": "RJ0080" + }, + { + "id": "335419", + "ident": "BR-0880", + "type": "heliport", + "name": "Jaru Tradição Heliport", + "latitude_deg": "-10.4425", + "longitude_deg": "-62.448333", + "elevation_ft": "505", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Jaru", + "scheduled_service": "no", + "gps_code": "SIHJ", + "local_code": "RO0041" + }, + { + "id": "335420", + "ident": "BR-0881", + "type": "heliport", + "name": "Marina Beach Tower Helipad", + "latitude_deg": "-27.005694", + "longitude_deg": "-48.620682", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Balneário Camboriú", + "scheduled_service": "no", + "gps_code": "SIHN", + "local_code": "SC0052" + }, + { + "id": "335421", + "ident": "BR-0882", + "type": "heliport", + "name": "Federal District Public Security Secretary Helipad", + "latitude_deg": "-15.779851", + "longitude_deg": "-47.907915", + "elevation_ft": "3757", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no" + }, + { + "id": "335423", + "ident": "BR-0883", + "type": "heliport", + "name": "Vilacóptero II Heliport", + "latitude_deg": "-20.503154", + "longitude_deg": "-40.373329", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Vila Velha", + "scheduled_service": "no", + "gps_code": "SIHR", + "local_code": "ES0017" + }, + { + "id": "335424", + "ident": "BR-0884", + "type": "heliport", + "name": "PFB Heliport", + "latitude_deg": "-3.925428", + "longitude_deg": "-38.324583", + "elevation_ft": "43", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Aquiraz", + "scheduled_service": "no", + "gps_code": "SIHU", + "local_code": "CE0073" + }, + { + "id": "335425", + "ident": "BR-0885", + "type": "small_airport", + "name": "Fazenda Ouro Verde Airport", + "latitude_deg": "-16.236783", + "longitude_deg": "-55.116159", + "elevation_ft": "1900", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juscimeira", + "scheduled_service": "no", + "gps_code": "SIHV", + "local_code": "MT0096" + }, + { + "id": "335426", + "ident": "BR-0886", + "type": "small_airport", + "name": "Tom Aviação Agrícola Ltda. Airstrip", + "latitude_deg": "-21.621", + "longitude_deg": "-48.794454", + "elevation_ft": "1716", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itápolis", + "scheduled_service": "no", + "gps_code": "SIHY", + "local_code": "SP0181" + }, + { + "id": "335427", + "ident": "BR-0887", + "type": "closed", + "name": "Lagoa Heliport", + "latitude_deg": "-3.811389", + "longitude_deg": "-38.438889", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Eusébio", + "scheduled_service": "no", + "keywords": "SIHX, CE0034" + }, + { + "id": "335433", + "ident": "BR-0888", + "type": "small_airport", + "name": "Celeiro 1 Airport", + "latitude_deg": "-14.370574", + "longitude_deg": "-45.5439", + "elevation_ft": "2749", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Jaborandi", + "scheduled_service": "no", + "gps_code": "SIIC", + "local_code": "BA0087" + }, + { + "id": "335434", + "ident": "BR-0889", + "type": "small_airport", + "name": "Fazenda Dona Chica Airport", + "latitude_deg": "-30.033611", + "longitude_deg": "-50.372222", + "elevation_ft": "108", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Osório", + "scheduled_service": "no", + "gps_code": "SIID", + "local_code": "RS0062" + }, + { + "id": "335435", + "ident": "BR-0890", + "type": "small_airport", + "name": "Fazenda Santa Fé Airport", + "latitude_deg": "-21.473518", + "longitude_deg": "-55.878868", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Guia Lopes da Laguna", + "scheduled_service": "no", + "gps_code": "SIIE", + "local_code": "MS0085" + }, + { + "id": "335444", + "ident": "BR-0891", + "type": "heliport", + "name": "Civil Towers Helipad", + "latitude_deg": "-12.98941", + "longitude_deg": "-38.449069", + "elevation_ft": "335", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Salvador", + "scheduled_service": "no", + "gps_code": "SIIL", + "local_code": "BA0194" + }, + { + "id": "335445", + "ident": "BR-0892", + "type": "heliport", + "name": "Marisol Helipad,", + "latitude_deg": "-26.482251", + "longitude_deg": "-49.063997", + "elevation_ft": "164", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Jaraguá do Sul", + "scheduled_service": "no", + "gps_code": "SIIM", + "local_code": "SC0053" + }, + { + "id": "335446", + "ident": "BR-0893", + "type": "small_airport", + "name": "Fazenda Marrecão Airport", + "latitude_deg": "-12.04", + "longitude_deg": "-63.042222", + "elevation_ft": "528", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "São Miguel do Guaporé", + "scheduled_service": "no", + "gps_code": "SIIN", + "local_code": "RO0050" + }, + { + "id": "335447", + "ident": "BR-0894", + "type": "small_airport", + "name": "Fazenda Paraíso Airport", + "latitude_deg": "-21.347703", + "longitude_deg": "-45.836725", + "elevation_ft": "2641", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Alfenas", + "scheduled_service": "no", + "gps_code": "SIIP", + "local_code": "MG0100" + }, + { + "id": "335451", + "ident": "BR-0895", + "type": "heliport", + "name": "Bira Guimarães Heliport", + "latitude_deg": "-23.195379", + "longitude_deg": "-46.094771", + "elevation_ft": "2290", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Igaratá", + "scheduled_service": "no", + "gps_code": "SIIX", + "local_code": "SP0508" + }, + { + "id": "335467", + "ident": "BR-0896", + "type": "closed", + "name": "Ribeirão Cascalheira (Oliveira Silva) Airport", + "latitude_deg": "-12.911482", + "longitude_deg": "-51.826887", + "elevation_ft": "1253", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Ribeirão Cascalheira", + "scheduled_service": "no", + "keywords": "SIKR" + }, + { + "id": "335469", + "ident": "BR-0897", + "type": "small_airport", + "name": "Antônio Costa da Silva Airport", + "latitude_deg": "-3.482507", + "longitude_deg": "-66.057696", + "elevation_ft": "223", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Juruá", + "scheduled_service": "no", + "gps_code": "SWIA", + "local_code": "AM0088" + }, + { + "id": "335470", + "ident": "BR-0898", + "type": "small_airport", + "name": "Pousada Pirá-Açu Airstrip", + "latitude_deg": "-7.771226", + "longitude_deg": "-60.379653", + "elevation_ft": "315", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Apuí", + "scheduled_service": "no", + "gps_code": "SNLM", + "local_code": "AM0090" + }, + { + "id": "335471", + "ident": "BR-0899", + "type": "small_airport", + "name": "Pousada Amazon Roosevelt Airport", + "latitude_deg": "-7.570001", + "longitude_deg": "-60.688766", + "elevation_ft": "174", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Novo Aripuanã", + "scheduled_service": "no", + "gps_code": "SJQV", + "local_code": "AM0092" + }, + { + "id": "335473", + "ident": "BR-0900", + "type": "closed", + "name": "Presidente Médici International Airport", + "latitude_deg": "-9.992007", + "longitude_deg": "-67.8011", + "elevation_ft": "451", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Rio Branco", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Presidente_Médici_International_Airport", + "keywords": "RBR" + }, + { + "id": "335474", + "ident": "BR-0901", + "type": "small_airport", + "name": "Fazenda Gaúcha Airport", + "latitude_deg": "-13.723256", + "longitude_deg": "-57.618492", + "elevation_ft": "1834", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo Do Parecis", + "scheduled_service": "no", + "gps_code": "SJYZ", + "local_code": "MT0513" + }, + { + "id": "335475", + "ident": "BR-0902", + "type": "small_airport", + "name": "Fazenda Mina de Ouro Airport", + "latitude_deg": "-14.131025", + "longitude_deg": "-54.235142", + "elevation_ft": "1880", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Paranatinga", + "scheduled_service": "no", + "gps_code": "SNNQ", + "local_code": "MT0508" + }, + { + "id": "335476", + "ident": "BR-0903", + "type": "heliport", + "name": "VLI Tiplam Heliport", + "latitude_deg": "-23.870838", + "longitude_deg": "-46.366146", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santos", + "scheduled_service": "no", + "gps_code": "SNNS", + "local_code": "SP0860" + }, + { + "id": "335477", + "ident": "BR-0904", + "type": "small_airport", + "name": "Fazenda São Francisco Airport", + "latitude_deg": "-15.347004", + "longitude_deg": "-58.572064", + "elevation_ft": "1017", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Indiavaí", + "scheduled_service": "no", + "gps_code": "SNUJ", + "local_code": "MT0503" + }, + { + "id": "335500", + "ident": "BR-0905", + "type": "small_airport", + "name": "SESC Serra Azul Airport", + "latitude_deg": "-14.476571", + "longitude_deg": "-55.712029", + "elevation_ft": "856", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Rosário Oeste", + "scheduled_service": "no", + "gps_code": "SSEA", + "local_code": "MT0515", + "keywords": "SITN" + }, + { + "id": "335502", + "ident": "BR-0906", + "type": "small_airport", + "name": "Fazenda Rio Xingú Airport", + "latitude_deg": "-10.136081", + "longitude_deg": "-52.558165", + "elevation_ft": "1106", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santa Cruz do Xingu", + "scheduled_service": "no", + "gps_code": "SSWX", + "local_code": "MT0498" + }, + { + "id": "335503", + "ident": "BR-0907", + "type": "small_airport", + "name": "Fazenda Nascente Airport", + "latitude_deg": "-16.071395", + "longitude_deg": "-55.096146", + "elevation_ft": "1863", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Jaciara", + "scheduled_service": "no", + "gps_code": "SSZY", + "local_code": "MT0509" + }, + { + "id": "335504", + "ident": "BR-0908", + "type": "small_airport", + "name": "Fazenda Eldorado Airport", + "latitude_deg": "-13.602402", + "longitude_deg": "-53.544488", + "elevation_ft": "1552", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Gaúcha do Norte", + "scheduled_service": "no", + "gps_code": "SWJX", + "local_code": "MT0507" + }, + { + "id": "335508", + "ident": "BR-0909", + "type": "heliport", + "name": "JK Business Center Helipad.", + "latitude_deg": "-10.185282", + "longitude_deg": "-48.337677", + "elevation_ft": "1099", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Palmas", + "scheduled_service": "no", + "gps_code": "SIJB", + "local_code": "TO0052" + }, + { + "id": "335509", + "ident": "BR-0910", + "type": "heliport", + "name": "Fazenda Jatobá Heliport", + "latitude_deg": "-22.582988", + "longitude_deg": "-47.034016", + "elevation_ft": "2011", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santo Antônio de Posse", + "scheduled_service": "no", + "gps_code": "SIJC", + "local_code": "SP0509" + }, + { + "id": "335510", + "ident": "BR-0911", + "type": "heliport", + "name": "Jeep Heliport", + "latitude_deg": "-7.614178", + "longitude_deg": "-34.969288", + "elevation_ft": "302", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Goiana", + "scheduled_service": "no", + "gps_code": "SIJH", + "local_code": "PE0029" + }, + { + "id": "335511", + "ident": "BR-0912", + "type": "small_airport", + "name": "Fazenda Cambay Airstrip", + "latitude_deg": "-22.669967", + "longitude_deg": "-54.32308", + "elevation_ft": "1453", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Juti", + "scheduled_service": "no", + "gps_code": "SIJJ", + "local_code": "MS0090" + }, + { + "id": "335512", + "ident": "BR-0913", + "type": "small_airport", + "name": "Fazenda Capuame Airstrip", + "latitude_deg": "-12.691861", + "longitude_deg": "-38.198411", + "elevation_ft": "79", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Camaçari", + "scheduled_service": "no", + "gps_code": "SIJK", + "local_code": "BA0088", + "keywords": "Cetrel" + }, + { + "id": "335513", + "ident": "BR-0914", + "type": "small_airport", + "name": "Fazenda Tupancy Airport", + "latitude_deg": "-13.454916", + "longitude_deg": "-58.589466", + "elevation_ft": "1719", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SIJM", + "local_code": "MT0098" + }, + { + "id": "335518", + "ident": "BR-0915", + "type": "small_airport", + "name": "Fazenda Vitória Airport", + "latitude_deg": "-18.623287", + "longitude_deg": "-55.104928", + "elevation_ft": "587", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Verde de Mato Grosso", + "scheduled_service": "no", + "gps_code": "SIJV", + "local_code": "MS0092" + }, + { + "id": "335520", + "ident": "BR-0916", + "type": "small_airport", + "name": "Fazenda Retimar Airport", + "latitude_deg": "-23.507238", + "longitude_deg": "-54.818137", + "elevation_ft": "1119", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Iguatemi", + "scheduled_service": "no", + "gps_code": "SIJW", + "local_code": "MS0093" + }, + { + "id": "335522", + "ident": "BR-0917", + "type": "small_airport", + "name": "Vô Amantino Airport", + "latitude_deg": "-11.664502", + "longitude_deg": "-55.238421", + "elevation_ft": "1188", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cláudia", + "scheduled_service": "no", + "gps_code": "SISS", + "local_code": "MT0504" + }, + { + "id": "335523", + "ident": "BR-0918", + "type": "small_airport", + "name": "Fazenda Santa Paula Airport", + "latitude_deg": "-15.643056", + "longitude_deg": "-57.548056", + "elevation_ft": "512", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SWFI", + "local_code": "MT0506" + }, + { + "id": "335524", + "ident": "BR-0919", + "type": "small_airport", + "name": "Fazenda Bang Bang Airport", + "latitude_deg": "-10.89", + "longitude_deg": "-52.734722", + "elevation_ft": "1086", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São José do Xingu", + "scheduled_service": "no", + "gps_code": "SDSL", + "local_code": "MT0494" + }, + { + "id": "335526", + "ident": "BR-0920", + "type": "small_airport", + "name": "Cialne Irauçuba Airstrip", + "latitude_deg": "-3.754444", + "longitude_deg": "-39.951667", + "elevation_ft": "495", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Irauçuba", + "scheduled_service": "no", + "gps_code": "SIKI", + "local_code": "CE0015" + }, + { + "id": "335527", + "ident": "BR-0921", + "type": "small_airport", + "name": "Fazenda JK Airport", + "latitude_deg": "-13.033575", + "longitude_deg": "-59.916773", + "elevation_ft": "1978", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SIKJ", + "local_code": "MT0101" + }, + { + "id": "335534", + "ident": "BR-0922", + "type": "heliport", + "name": "Estância do Sol Heliport", + "latitude_deg": "-23.508318", + "longitude_deg": "-51.431098", + "elevation_ft": "2703", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Arapongas", + "scheduled_service": "no", + "gps_code": "SWOE", + "local_code": "PR0200" + }, + { + "id": "335535", + "ident": "BR-0923", + "type": "small_airport", + "name": "Dal Molin Airport", + "latitude_deg": "-25.788383", + "longitude_deg": "-53.500649", + "elevation_ft": "1562", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Santa Izabel do Oeste", + "scheduled_service": "no", + "gps_code": "SNCQ", + "local_code": "PR0202" + }, + { + "id": "335536", + "ident": "BR-0924", + "type": "heliport", + "name": "Kinbor Helipad", + "latitude_deg": "-24.011668", + "longitude_deg": "-46.416625", + "elevation_ft": "276", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Praia Grande", + "scheduled_service": "no", + "gps_code": "SWVH", + "local_code": "SP0869" + }, + { + "id": "335541", + "ident": "BR-0925", + "type": "small_airport", + "name": "Fazenda Rosa do Deserto Airstrip", + "latitude_deg": "-13.240032", + "longitude_deg": "-39.759292", + "elevation_ft": "1411", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Ubaíra", + "scheduled_service": "yes", + "gps_code": "SDYG", + "local_code": "BA0254" + }, + { + "id": "335542", + "ident": "BR-0926", + "type": "small_airport", + "name": "Tabuleiro V Airport", + "latitude_deg": "-13.243663", + "longitude_deg": "-45.375338", + "elevation_ft": "2523", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Correntina", + "scheduled_service": "no", + "gps_code": "SILY", + "local_code": "BA0267" + }, + { + "id": "335543", + "ident": "BR-0927", + "type": "small_airport", + "name": "JH Sementes Airport", + "latitude_deg": "-13.768178", + "longitude_deg": "-46.147334", + "elevation_ft": "3169", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Correntina", + "scheduled_service": "no", + "gps_code": "SNJH", + "local_code": "BA0259" + }, + { + "id": "335544", + "ident": "BR-0928", + "type": "heliport", + "name": "Mucugê Village Resort Hotel Heliport", + "latitude_deg": "-16.500111", + "longitude_deg": "-39.071866", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Porto Seguro", + "scheduled_service": "no", + "gps_code": "SNOD", + "local_code": "BA0262" + }, + { + "id": "335545", + "ident": "BR-0929", + "type": "small_airport", + "name": "Fazenda Flor da Serra Airport", + "latitude_deg": "-14.10095", + "longitude_deg": "-46.18116", + "elevation_ft": "3261", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Jaborandi", + "scheduled_service": "no", + "gps_code": "SNVZ", + "local_code": "BA0260" + }, + { + "id": "335546", + "ident": "BR-0930", + "type": "heliport", + "name": "Yamana Gold Heliport", + "latitude_deg": "-11.259879", + "longitude_deg": "-40.518416", + "elevation_ft": "2136", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Jacobina", + "scheduled_service": "no", + "gps_code": "SNZQ", + "local_code": "BA0264" + }, + { + "id": "335547", + "ident": "BR-0931", + "type": "heliport", + "name": "Fazenda Porto Rancho Heliport", + "latitude_deg": "-16.373758", + "longitude_deg": "-39.320206", + "elevation_ft": "374", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Santa Cruz Cabrália", + "scheduled_service": "no", + "gps_code": "SSFP", + "local_code": "BA0261" + }, + { + "id": "335550", + "ident": "BR-0932", + "type": "small_airport", + "name": "Flights Ranch Airstrip", + "latitude_deg": "-13.006439", + "longitude_deg": "-44.060617", + "elevation_ft": "1883", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Santana", + "scheduled_service": "no", + "gps_code": "SWXR", + "local_code": "BA0258" + }, + { + "id": "335566", + "ident": "BR-0933", + "type": "small_airport", + "name": "Areia Branca Airport", + "latitude_deg": "-17.27798", + "longitude_deg": "-53.254711", + "elevation_ft": "2320", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alto Araguaia", + "scheduled_service": "no", + "keywords": "SIKG" + }, + { + "id": "335568", + "ident": "BR-0934", + "type": "small_airport", + "name": "Fazenda Água Boa Airport", + "latitude_deg": "-20.86007", + "longitude_deg": "-55.643582", + "elevation_ft": "801", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Anastácio", + "scheduled_service": "no", + "gps_code": "SIKO", + "local_code": "MS0095" + }, + { + "id": "335569", + "ident": "BR-0935", + "type": "small_airport", + "name": "Fazenda Sararé Airport", + "latitude_deg": "-14.788268", + "longitude_deg": "-59.346624", + "elevation_ft": "925", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Conquista d`Oeste", + "scheduled_service": "no", + "gps_code": "SIKQ", + "local_code": "MT0102" + }, + { + "id": "335570", + "ident": "BR-0936", + "type": "small_airport", + "name": "Fazenda Vista Linda Airport", + "latitude_deg": "-18.146774", + "longitude_deg": "-39.594353", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Mucuri", + "scheduled_service": "no", + "gps_code": "SIKW", + "local_code": "BA0089" + }, + { + "id": "335571", + "ident": "BR-0937", + "type": "heliport", + "name": "Kekafly III Helipad", + "latitude_deg": "-27.107661", + "longitude_deg": "-48.916272", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Brusque", + "scheduled_service": "no", + "gps_code": "SIKY", + "local_code": "SC0106" + }, + { + "id": "335577", + "ident": "BR-0938", + "type": "small_airport", + "name": "Fazenda Belizário Airport", + "latitude_deg": "-11.526303", + "longitude_deg": "-45.728645", + "elevation_ft": "2474", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Riachão das Neves", + "scheduled_service": "no", + "gps_code": "SILB", + "local_code": "BA0090" + }, + { + "id": "335579", + "ident": "BR-0939", + "type": "small_airport", + "name": "Big Master Airport", + "latitude_deg": "-14.63693", + "longitude_deg": "-57.608147", + "elevation_ft": "1138", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tangará da Serra", + "scheduled_service": "no", + "gps_code": "SILS", + "local_code": "MT0105" + }, + { + "id": "335580", + "ident": "BR-0940", + "type": "heliport", + "name": "Lytorânea Heliport", + "latitude_deg": "-22.862905", + "longitude_deg": "-43.748347", + "elevation_ft": "75", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Itaguaí", + "scheduled_service": "no", + "gps_code": "SILH", + "local_code": "RJ0087" + }, + { + "id": "335582", + "ident": "BR-0941", + "type": "small_airport", + "name": "Fazenda Santa Clara Airport", + "latitude_deg": "-9.188559", + "longitude_deg": "-45.048215", + "elevation_ft": "2037", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Bom Jesus", + "scheduled_service": "no", + "gps_code": "SILI", + "local_code": "PI0021" + }, + { + "id": "335584", + "ident": "BR-0942", + "type": "small_airport", + "name": "Fazenda Tabaroa Airport", + "latitude_deg": "-22.7976", + "longitude_deg": "-49.269128", + "elevation_ft": "2149", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Águas de Santa Bárbara", + "scheduled_service": "no", + "gps_code": "SILL", + "local_code": "SP0185" + }, + { + "id": "335585", + "ident": "BR-0943", + "type": "heliport", + "name": "VOCP Helipad", + "latitude_deg": "-23.594503", + "longitude_deg": "-46.688983", + "elevation_ft": "2661", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SILV", + "local_code": "SP0524" + }, + { + "id": "335587", + "ident": "BR-0944", + "type": "heliport", + "name": "Monte das Acácias Heliport", + "latitude_deg": "-8.219883", + "longitude_deg": "-35.544882", + "elevation_ft": "1526", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Gravatá", + "scheduled_service": "no", + "gps_code": "SILW", + "local_code": "PE0031" + }, + { + "id": "335588", + "ident": "BR-0945", + "type": "small_airport", + "name": "Dois Rios Airport", + "latitude_deg": "-7.564006", + "longitude_deg": "-62.814347", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Humaitá", + "scheduled_service": "no", + "keywords": "SILV" + }, + { + "id": "335589", + "ident": "BR-0946", + "type": "small_airport", + "name": "Fazenda Santo Expedito IV Airport", + "latitude_deg": "-9.836388", + "longitude_deg": "-47.305152", + "elevation_ft": "1158", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Rio Sono", + "scheduled_service": "no", + "gps_code": "SILZ", + "local_code": "TO0019" + }, + { + "id": "335590", + "ident": "BR-0947", + "type": "heliport", + "name": "Punta Del Este Heliport", + "latitude_deg": "-22.808821", + "longitude_deg": "-50.994968", + "elevation_ft": "3071", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Sertaneja", + "scheduled_service": "no", + "gps_code": "SIMC", + "local_code": "PR0109" + }, + { + "id": "335671", + "ident": "BR-0948", + "type": "heliport", + "name": "Canto da Praia Helipad", + "latitude_deg": "-27.093711", + "longitude_deg": "-48.60468", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Itapema", + "scheduled_service": "no", + "gps_code": "SIPC", + "local_code": "SC0059" + }, + { + "id": "335594", + "ident": "BR-0949", + "type": "small_airport", + "name": "Fazenda Imperial Airport", + "latitude_deg": "-7.850249", + "longitude_deg": "-44.069167", + "elevation_ft": "1621", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Sebastião Leal", + "scheduled_service": "no", + "gps_code": "SIMF", + "local_code": "PI0022" + }, + { + "id": "335595", + "ident": "BR-0950", + "type": "heliport", + "name": "Honda Automóveis Heliport", + "latitude_deg": "-22.834015", + "longitude_deg": "-47.193392", + "elevation_ft": "2083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sumaré", + "scheduled_service": "no", + "gps_code": "SIMH", + "local_code": "SP0527" + }, + { + "id": "335596", + "ident": "BR-0951", + "type": "heliport", + "name": "Marina Igararecê Helipad", + "latitude_deg": "-23.768241", + "longitude_deg": "-45.403039", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Sebastião", + "scheduled_service": "no", + "gps_code": "SIMI", + "local_code": "SP0528" + }, + { + "id": "335597", + "ident": "BR-0952", + "type": "small_airport", + "name": "Fazenda Siriema Airport", + "latitude_deg": "-15.847588", + "longitude_deg": "-55.838125", + "elevation_ft": "505", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santo Antônio do Leverger", + "scheduled_service": "no", + "gps_code": "SIML", + "local_code": "MT0107" + }, + { + "id": "335598", + "ident": "BR-0953", + "type": "small_airport", + "name": "Aviação Agrícola Manain Airport", + "latitude_deg": "-11.754112", + "longitude_deg": "-55.359073", + "elevation_ft": "1204", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sinop", + "scheduled_service": "no", + "gps_code": "SIMN", + "local_code": "MT0108" + }, + { + "id": "335599", + "ident": "BR-0954", + "type": "small_airport", + "name": "Fazenda Morro Vermelho Airport", + "latitude_deg": "-23.228029", + "longitude_deg": "-49.777613", + "elevation_ft": "2526", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Ribeirão Claro", + "scheduled_service": "no", + "gps_code": "SIMO", + "local_code": "PR0048" + }, + { + "id": "335603", + "ident": "BR-0955", + "type": "small_airport", + "name": "Fazenda Califórnia Airstrip", + "latitude_deg": "-19.094958", + "longitude_deg": "-54.184984", + "elevation_ft": "1220", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Camapuã", + "scheduled_service": "no", + "gps_code": "SIMS", + "local_code": "MS0101" + }, + { + "id": "335605", + "ident": "BR-0956", + "type": "heliport", + "name": "Pedreira Maria Teresa LTDA Helipad", + "latitude_deg": "-23.925377", + "longitude_deg": "-46.461677", + "elevation_ft": "177", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Vicente", + "scheduled_service": "no", + "gps_code": "SIMT", + "local_code": "SP0530" + }, + { + "id": "335609", + "ident": "BR-0957", + "type": "small_airport", + "name": "Asas do Ar Airport", + "latitude_deg": "-15.610075", + "longitude_deg": "-47.574037", + "elevation_ft": "3802", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SINA", + "local_code": "DF0004" + }, + { + "id": "335610", + "ident": "BR-0958", + "type": "small_airport", + "name": "Campo Nuic", + "latitude_deg": "-28.381667", + "longitude_deg": "-49.569167", + "elevation_ft": "4718", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Bom Jardim da Serra", + "scheduled_service": "no", + "local_code": "SC0029" + }, + { + "id": "335611", + "ident": "BR-0959", + "type": "heliport", + "name": "Radin Helipad", + "latitude_deg": "-21.892495", + "longitude_deg": "-45.595975", + "elevation_ft": "2854", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "São Gonçalo do Sapucaí", + "scheduled_service": "no", + "gps_code": "SIND", + "local_code": "MG0227" + }, + { + "id": "335612", + "ident": "BR-0960", + "type": "heliport", + "name": "Heliponto N&F", + "latitude_deg": "-20.23078", + "longitude_deg": "-40.276987", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Serra", + "scheduled_service": "no", + "gps_code": "SINF", + "local_code": "ES0018" + }, + { + "id": "335614", + "ident": "BR-0961", + "type": "small_airport", + "name": "Fazenda Bela Vista do Caronal Airstrip", + "latitude_deg": "-18.205871", + "longitude_deg": "-55.973325", + "elevation_ft": "466", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SINI", + "local_code": "MS0107" + }, + { + "id": "335615", + "ident": "BR-0962", + "type": "small_airport", + "name": "Tamanduá Bandeira - MC Airstrip", + "latitude_deg": "-20.47297", + "longitude_deg": "-53.692748", + "elevation_ft": "1204", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SINJ", + "local_code": "MS0108" + }, + { + "id": "335621", + "ident": "BR-0963", + "type": "closed", + "name": "Fazenda Maravilha Airport", + "latitude_deg": "-7.648926", + "longitude_deg": "-49.280282", + "elevation_ft": "561", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Arapoema", + "scheduled_service": "no", + "local_code": "TO0020", + "keywords": "SINM" + }, + { + "id": "335622", + "ident": "BR-0964", + "type": "small_airport", + "name": "Comandante Nelinho Airport", + "latitude_deg": "-28.974435", + "longitude_deg": "-49.488253", + "elevation_ft": "2920", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Araranguá", + "scheduled_service": "no", + "gps_code": "SINN", + "local_code": "SC0030" + }, + { + "id": "335623", + "ident": "BR-0965", + "type": "heliport", + "name": "Innovare Hotel Helipad", + "latitude_deg": "-27.096234", + "longitude_deg": "-48.914121", + "elevation_ft": "249", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Brusque", + "scheduled_service": "no", + "gps_code": "SINO", + "local_code": "SC0058" + }, + { + "id": "335624", + "ident": "BR-0966", + "type": "small_airport", + "name": "Fazenda Santa Rosa Airport", + "latitude_deg": "-17.064444", + "longitude_deg": "-57.764015", + "elevation_ft": "358", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SINR", + "local_code": "MT0110" + }, + { + "id": "335625", + "ident": "BR-0967", + "type": "small_airport", + "name": "Fazenda Grupo Nissey Airport", + "latitude_deg": "-16.170295", + "longitude_deg": "-58.557298", + "elevation_ft": "581", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SINS", + "local_code": "MT0111" + }, + { + "id": "335626", + "ident": "BR-0968", + "type": "heliport", + "name": "Irmãos Hort Heliport", + "latitude_deg": "-27.117354", + "longitude_deg": "-48.947074", + "elevation_ft": "151", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Brusque", + "scheduled_service": "no", + "gps_code": "SINU", + "local_code": "SC0104" + }, + { + "id": "335627", + "ident": "BR-0969", + "type": "small_airport", + "name": "Fazenda Nova Baús Airport", + "latitude_deg": "-18.188197", + "longitude_deg": "-53.099379", + "elevation_ft": "2802", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Mineiros", + "scheduled_service": "no", + "gps_code": "SINV", + "local_code": "GO0053" + }, + { + "id": "335628", + "ident": "BR-0970", + "type": "heliport", + "name": "Morro do Chapeú Heliport", + "latitude_deg": "-20.108965", + "longitude_deg": "-43.938806", + "elevation_ft": "4518", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Nova Lima", + "scheduled_service": "no", + "gps_code": "SINX", + "local_code": "MG0228" + }, + { + "id": "335643", + "ident": "BR-0971", + "type": "small_airport", + "name": "Fazenda Primavera Airport", + "latitude_deg": "-15.5675", + "longitude_deg": "-39.152778", + "elevation_ft": "118", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Canavieiras", + "scheduled_service": "no", + "gps_code": "SIOA", + "local_code": "BA0091" + }, + { + "id": "335645", + "ident": "BR-0972", + "type": "heliport", + "name": "DIMEP Helipad", + "latitude_deg": "-23.529347", + "longitude_deg": "-46.744149", + "elevation_ft": "2428", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIOD", + "local_code": "SP0534" + }, + { + "id": "335647", + "ident": "BR-0973", + "type": "heliport", + "name": "Praiamar Helipad", + "latitude_deg": "-23.978763", + "longitude_deg": "-46.309025", + "elevation_ft": "404", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santos", + "scheduled_service": "no", + "gps_code": "SIOF", + "local_code": "SP0535" + }, + { + "id": "335648", + "ident": "BR-0974", + "type": "small_airport", + "name": "Suinobras Airport", + "latitude_deg": "-14.507296", + "longitude_deg": "-56.302743", + "elevation_ft": "1588", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "gps_code": "SIOG", + "local_code": "MT0112" + }, + { + "id": "335649", + "ident": "BR-0975", + "type": "small_airport", + "name": "Fazenda Onça Parda Airport", + "latitude_deg": "-22.662664", + "longitude_deg": "-53.729258", + "elevation_ft": "1135", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Novo Horizonte do Sul", + "scheduled_service": "no", + "gps_code": "SIOI", + "local_code": "MS0109" + }, + { + "id": "335651", + "ident": "BR-0976", + "type": "small_airport", + "name": "Fazenda Porto Velho Airport", + "latitude_deg": "-20.313557", + "longitude_deg": "-44.698328", + "elevation_ft": "2717", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Carmo do Cajuru", + "scheduled_service": "no", + "gps_code": "SIOJ", + "local_code": "MG0105" + }, + { + "id": "335654", + "ident": "BR-0977", + "type": "small_airport", + "name": "Fazenda Rio Bonito Airport", + "latitude_deg": "-19.199871", + "longitude_deg": "-52.968926", + "elevation_ft": "1864", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Costa Rica", + "scheduled_service": "no", + "gps_code": "SIOL", + "local_code": "MS0110" + }, + { + "id": "335655", + "ident": "BR-0978", + "type": "small_airport", + "name": "Fazenda Orquídeas Airport", + "latitude_deg": "-11.839133", + "longitude_deg": "-46.232993", + "elevation_ft": "2762", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Barreiras", + "scheduled_service": "no", + "gps_code": "SIOM", + "local_code": "BA0092" + }, + { + "id": "335656", + "ident": "BR-0979", + "type": "heliport", + "name": "Tibagi Heliport", + "latitude_deg": "-4.251397", + "longitude_deg": "-38.951597", + "elevation_ft": "2808", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Guaramiranga", + "scheduled_service": "no", + "gps_code": "SION", + "local_code": "CE0036" + }, + { + "id": "335658", + "ident": "BR-0980", + "type": "small_airport", + "name": "Poletto Airstrip", + "latitude_deg": "-13.7971", + "longitude_deg": "-55.280063", + "elevation_ft": "1663", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santa Rita do Trivelato", + "scheduled_service": "no", + "gps_code": "SIOP", + "local_code": "MT0113" + }, + { + "id": "335672", + "ident": "BR-0981", + "type": "small_airport", + "name": "Feliz Airport", + "latitude_deg": "-29.447939", + "longitude_deg": "-51.295476", + "elevation_ft": "131", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Feliz", + "scheduled_service": "no", + "gps_code": "SIPF", + "local_code": "RS0063" + }, + { + "id": "335676", + "ident": "BR-0982", + "type": "small_airport", + "name": "Aero Parque Tupã Airport", + "latitude_deg": "-29.08499", + "longitude_deg": "-53.864991", + "elevation_ft": "1516", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Tupanciretã", + "scheduled_service": "no", + "gps_code": "SIPJ", + "local_code": "RS0064" + }, + { + "id": "335677", + "ident": "BR-0983", + "type": "small_airport", + "name": "Pista Aldeia Pykararankre", + "latitude_deg": "-7.459986", + "longitude_deg": "-52.657731", + "elevation_ft": "751", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "São Félix do Xingu", + "scheduled_service": "no", + "gps_code": "SIPL", + "local_code": "PA0052" + }, + { + "id": "335678", + "ident": "BR-0984", + "type": "heliport", + "name": "Office Park Helipad", + "latitude_deg": "-8.255344", + "longitude_deg": "-34.948089", + "elevation_ft": "112", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Cabo de Santo Agostinho", + "scheduled_service": "no", + "gps_code": "SIPQ", + "local_code": "PE0033" + }, + { + "id": "335679", + "ident": "BR-0985", + "type": "small_airport", + "name": "Guatambu Piauí Airstrip", + "latitude_deg": "-10.598333", + "longitude_deg": "-44.388056", + "elevation_ft": "2336", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Santa Rita de Cássia", + "scheduled_service": "no", + "gps_code": "SIPU", + "local_code": "BA0095" + }, + { + "id": "335680", + "ident": "BR-0986", + "type": "small_airport", + "name": "Pista Aldeia Pykatô", + "latitude_deg": "-8.475134", + "longitude_deg": "-51.663419", + "elevation_ft": "1073", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Cumaru do Norte", + "scheduled_service": "no", + "gps_code": "SIPY", + "local_code": "PA0053" + }, + { + "id": "335681", + "ident": "BR-0987", + "type": "small_airport", + "name": "Fazenda Bela Vista Airport", + "latitude_deg": "-20.388181", + "longitude_deg": "-53.373436", + "elevation_ft": "1522", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SIQA", + "local_code": "MS0116" + }, + { + "id": "335682", + "ident": "BR-0988", + "type": "small_airport", + "name": "Fazenda Guanandy Airport", + "latitude_deg": "-21.880833", + "longitude_deg": "-55.539167", + "elevation_ft": "1781", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ponta Porã", + "scheduled_service": "no", + "gps_code": "SIQG", + "local_code": "MS0119" + }, + { + "id": "335683", + "ident": "BR-0989", + "type": "small_airport", + "name": "Fazenda GAP São Pedro Airstrip", + "latitude_deg": "-30.025758", + "longitude_deg": "-56.287292", + "elevation_ft": "692", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Uruguaiana", + "scheduled_service": "no", + "gps_code": "SIPR", + "local_code": "RS0065" + }, + { + "id": "335684", + "ident": "BR-0990", + "type": "heliport", + "name": "Cacoal Tradição Helipad", + "latitude_deg": "-11.441667", + "longitude_deg": "-61.480833", + "elevation_ft": "591", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Cacoal", + "scheduled_service": "no", + "gps_code": "SIQL", + "local_code": "RO0042" + }, + { + "id": "335685", + "ident": "BR-0991", + "type": "heliport", + "name": "Morumbi Corporate Helipad", + "latitude_deg": "-23.624984", + "longitude_deg": "-46.701765", + "elevation_ft": "2795", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIQM", + "local_code": "SP0542" + }, + { + "id": "335688", + "ident": "BR-0992", + "type": "heliport", + "name": "Chica Doce Heliport", + "latitude_deg": "-4.043894", + "longitude_deg": "-38.327637", + "elevation_ft": "118", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Pindoretama", + "scheduled_service": "no", + "gps_code": "SIQN", + "local_code": "CE0037" + }, + { + "id": "335689", + "ident": "BR-0993", + "type": "heliport", + "name": "Pedra Caída Heliport", + "latitude_deg": "-7.041051", + "longitude_deg": "-47.443145", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Carolina", + "scheduled_service": "no", + "gps_code": "SIQP", + "local_code": "MA0058" + }, + { + "id": "335691", + "ident": "BR-0994", + "type": "heliport", + "name": "Concrelagos Heliport", + "latitude_deg": "-21.192935", + "longitude_deg": "-41.903754", + "elevation_ft": "466", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Itaperuna", + "scheduled_service": "no", + "gps_code": "SIQW", + "local_code": "RJ0174" + }, + { + "id": "335693", + "ident": "BR-0995", + "type": "small_airport", + "name": "Fazenda Iracema Airport", + "latitude_deg": "-16.079487", + "longitude_deg": "-58.097328", + "elevation_ft": "535", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SIRA", + "local_code": "MT0122" + }, + { + "id": "335694", + "ident": "BR-0996", + "type": "small_airport", + "name": "Rancho Sinuelo Airport", + "latitude_deg": "-22.114895", + "longitude_deg": "-57.057989", + "elevation_ft": "718", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Caracol", + "scheduled_service": "no", + "gps_code": "SIRC", + "local_code": "MS0123" + }, + { + "id": "335696", + "ident": "BR-0997", + "type": "heliport", + "name": "Fazenda Retiro da Lagoa Heliport", + "latitude_deg": "-19.26604", + "longitude_deg": "-44.522138", + "elevation_ft": "2365", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Paraopeba", + "scheduled_service": "no", + "gps_code": "SIRE", + "local_code": "MG0232" + }, + { + "id": "335699", + "ident": "BR-0998", + "type": "heliport", + "name": "All Park Polo Empresarial Heliport", + "latitude_deg": "-16.82516", + "longitude_deg": "-49.203482", + "elevation_ft": "2461", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Aparecida de Goiânia", + "scheduled_service": "no", + "gps_code": "SIRP", + "local_code": "GO0160" + }, + { + "id": "335702", + "ident": "BR-0999", + "type": "small_airport", + "name": "Fazenda Ouro Verde Airport", + "latitude_deg": "-10.615239", + "longitude_deg": "-51.979506", + "elevation_ft": "758", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Alegre do Norte", + "scheduled_service": "no", + "gps_code": "SIRQ", + "local_code": "MT0125" + }, + { + "id": "335703", + "ident": "BR-1000", + "type": "heliport", + "name": "Condomínio Trio Ribeirão Helipad.", + "latitude_deg": "-21.199657", + "longitude_deg": "-47.807651", + "elevation_ft": "2283", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Preto", + "scheduled_service": "no", + "gps_code": "SIRU", + "local_code": "SP0546" + }, + { + "id": "335704", + "ident": "BR-1001", + "type": "small_airport", + "name": "Fazenda Santo Reis Airport", + "latitude_deg": "-15.280833", + "longitude_deg": "-57.793889", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Lambari d'Oeste", + "scheduled_service": "no", + "gps_code": "SIRX", + "local_code": "MT0128" + }, + { + "id": "335706", + "ident": "BR-1002", + "type": "small_airport", + "name": "Fazenda Lagoa Nova Airstrip", + "latitude_deg": "-14.463875", + "longitude_deg": "-46.304122", + "elevation_ft": "2572", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Damianópolis", + "scheduled_service": "no", + "gps_code": "SIZN", + "local_code": "GO0296" + }, + { + "id": "335707", + "ident": "BR-1003", + "type": "small_airport", + "name": "Pista Aldeia Aukre", + "latitude_deg": "-7.697574", + "longitude_deg": "-51.875628", + "elevation_ft": "892", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Ourilândia do Norte", + "scheduled_service": "no", + "gps_code": "SISA", + "local_code": "PA0055" + }, + { + "id": "335709", + "ident": "BR-1004", + "type": "heliport", + "name": "Cifarma Heliport", + "latitude_deg": "-16.63107", + "longitude_deg": "-49.200728", + "elevation_ft": "2569", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiânia", + "scheduled_service": "no", + "gps_code": "SISF", + "local_code": "GO0161" + }, + { + "id": "335711", + "ident": "BR-1005", + "type": "heliport", + "name": "Monte Sinai IV Helipad", + "latitude_deg": "-22.324641", + "longitude_deg": "-49.075029", + "elevation_ft": "1808", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Bauru", + "scheduled_service": "no", + "gps_code": "SISI", + "local_code": "SP0550" + }, + { + "id": "335712", + "ident": "BR-1006", + "type": "small_airport", + "name": "Molocopote Airstrip", + "latitude_deg": "1.597558", + "longitude_deg": "-54.134285", + "elevation_ft": "794", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "scheduled_service": "no" + }, + { + "id": "335719", + "ident": "BR-1007", + "type": "heliport", + "name": "Jardim Metropolitano Heliport", + "latitude_deg": "-3.86717", + "longitude_deg": "-38.48117", + "elevation_ft": "62", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Eusébio", + "scheduled_service": "no", + "gps_code": "SNJG", + "local_code": "CE0079", + "keywords": "Fazenda Bender, Juazeiro do Norte, CE0077" + }, + { + "id": "335720", + "ident": "BR-1008", + "type": "small_airport", + "name": "Sérgio Miranda Airport", + "latitude_deg": "0.040172", + "longitude_deg": "-51.149408", + "elevation_ft": "62", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Macapá", + "scheduled_service": "no", + "gps_code": "SISM", + "local_code": "AP0005" + }, + { + "id": "335721", + "ident": "BR-1009", + "type": "heliport", + "name": "Reobot Heliport", + "latitude_deg": "-23.157811", + "longitude_deg": "-46.662605", + "elevation_ft": "3041", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jarinu", + "scheduled_service": "no", + "gps_code": "SISP", + "local_code": "SP0551" + }, + { + "id": "335724", + "ident": "BR-1010", + "type": "small_airport", + "name": "Fazenda Topázio Imperial Airport", + "latitude_deg": "-14.967627", + "longitude_deg": "-43.315187", + "elevation_ft": "1598", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Gameleiras", + "scheduled_service": "no", + "gps_code": "SISU", + "local_code": "MG0108" + }, + { + "id": "335728", + "ident": "BR-1011", + "type": "small_airport", + "name": "Fazenda Colorado Airport", + "latitude_deg": "-13.133265", + "longitude_deg": "-55.445081", + "elevation_ft": "1312", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "scheduled_service": "no", + "local_code": "MT0132" + }, + { + "id": "335729", + "ident": "BR-1012", + "type": "heliport", + "name": "Fundação Santa Casa de Misericórdia do Pará Helipad", + "latitude_deg": "-1.439959", + "longitude_deg": "-48.481507", + "elevation_ft": "174", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Belém", + "scheduled_service": "no", + "gps_code": "SITD", + "local_code": "PA0154" + }, + { + "id": "335736", + "ident": "BR-1013", + "type": "small_airport", + "name": "Fazenda Vitória Airport", + "latitude_deg": "-12.150865", + "longitude_deg": "-45.870333", + "elevation_ft": "2415", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Luís Eduardo Magalhães", + "scheduled_service": "no", + "gps_code": "SITH", + "local_code": "BA0242" + }, + { + "id": "335737", + "ident": "BR-1014", + "type": "small_airport", + "name": "Estância Tejo Airport", + "latitude_deg": "-18.345003", + "longitude_deg": "-54.767174", + "elevation_ft": "1096", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Coxim", + "scheduled_service": "no", + "gps_code": "SITJ", + "local_code": "MS0129" + }, + { + "id": "335741", + "ident": "BR-1015", + "type": "small_airport", + "name": "Fazenda Figueira II Airport", + "latitude_deg": "-20.167285", + "longitude_deg": "-53.070656", + "elevation_ft": "1355", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Água Clara", + "scheduled_service": "no", + "gps_code": "SITL", + "local_code": "MS0130" + }, + { + "id": "335742", + "ident": "BR-1016", + "type": "heliport", + "name": "Torre Oscar Niemeyer Helipad", + "latitude_deg": "-22.940951", + "longitude_deg": "-43.179746", + "elevation_ft": "311", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SITN", + "local_code": "RJ0090" + }, + { + "id": "335743", + "ident": "BR-1017", + "type": "heliport", + "name": "Berrini One Helipad", + "latitude_deg": "-23.598166", + "longitude_deg": "-46.690414", + "elevation_ft": "2831", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SITO", + "local_code": "SP0554" + }, + { + "id": "335744", + "ident": "BR-1018", + "type": "small_airport", + "name": "Fazenda Tamboril Airport", + "latitude_deg": "-18.099409", + "longitude_deg": "-49.737029", + "elevation_ft": "676", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Bom Jesus de Goiás", + "scheduled_service": "no", + "gps_code": "SITR", + "local_code": "GO0056" + }, + { + "id": "335747", + "ident": "BR-1019", + "type": "small_airport", + "name": "Fazenda Serra Dourada Airport", + "latitude_deg": "-18.545033", + "longitude_deg": "-54.459412", + "elevation_ft": "1070", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Coxim", + "scheduled_service": "no", + "gps_code": "SITV", + "local_code": "MS0131" + }, + { + "id": "335749", + "ident": "BR-1020", + "type": "heliport", + "name": "ITC Central Park I Helipad", + "latitude_deg": "-3.739282", + "longitude_deg": "-38.473306", + "elevation_ft": "338", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SITZ", + "local_code": "CE0039" + }, + { + "id": "335750", + "ident": "BR-1021", + "type": "small_airport", + "name": "Águas Claras Airport", + "latitude_deg": "-30.119814", + "longitude_deg": "-50.853653", + "elevation_ft": "118", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Viamão", + "scheduled_service": "no", + "gps_code": "SIUA", + "local_code": "RS0068" + }, + { + "id": "335751", + "ident": "BR-1022", + "type": "small_airport", + "name": "Fazenda Uberaba Airport", + "latitude_deg": "-17.275318", + "longitude_deg": "-57.896871", + "elevation_ft": "538", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SIUB", + "local_code": "MT0133" + }, + { + "id": "335752", + "ident": "BR-1023", + "type": "small_airport", + "name": "Fazenda Campo Grande Airport", + "latitude_deg": "-15.178814", + "longitude_deg": "-45.224285", + "elevation_ft": "2602", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "lagoas", + "scheduled_service": "no", + "gps_code": "SIUC", + "local_code": "MG0111" + }, + { + "id": "335761", + "ident": "BR-1024", + "type": "heliport", + "name": "The One Office Tower Helipad.", + "latitude_deg": "-23.220002", + "longitude_deg": "-45.91059", + "elevation_ft": "2260", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São José dos Campos", + "scheduled_service": "no", + "gps_code": "SIUJ", + "local_code": "SP0559" + }, + { + "id": "335762", + "ident": "BR-1025", + "type": "heliport", + "name": "Cruz Heliport", + "latitude_deg": "-12.85718", + "longitude_deg": "-38.316961", + "elevation_ft": "75", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Lauro de Freitas", + "scheduled_service": "no", + "gps_code": "SIUK", + "local_code": "BA0195" + }, + { + "id": "335763", + "ident": "BR-1026", + "type": "small_airport", + "name": "KL Aviação Agrícola Airport", + "latitude_deg": "-30.858956", + "longitude_deg": "-51.77373", + "elevation_ft": "125", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Camaquã", + "scheduled_service": "no", + "gps_code": "SIUL", + "local_code": "RS0069" + }, + { + "id": "335764", + "ident": "BR-1027", + "type": "heliport", + "name": "Helicentro Porto Itaguaí Heliport", + "latitude_deg": "-22.891038", + "longitude_deg": "-43.843629", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Itaguaí", + "scheduled_service": "no", + "gps_code": "SIUN", + "local_code": "RJ0091" + }, + { + "id": "335765", + "ident": "BR-1028", + "type": "heliport", + "name": "Pousada Fazenda Virá Heliport", + "latitude_deg": "-25.38925", + "longitude_deg": "-50.54374", + "elevation_ft": "2644", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Teixeira Soares", + "scheduled_service": "no", + "gps_code": "SIUP", + "local_code": "PR0112" + }, + { + "id": "335766", + "ident": "BR-1029", + "type": "small_airport", + "name": "Fazenda Rancho Alegre Airport", + "latitude_deg": "-12.775871", + "longitude_deg": "-50.926494", + "elevation_ft": "705", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cocalinho", + "scheduled_service": "no", + "gps_code": "SIUQ", + "local_code": "MT0136" + }, + { + "id": "335768", + "ident": "BR-1030", + "type": "small_airport", + "name": "Fazenda Vianmacel", + "latitude_deg": "-12.20905", + "longitude_deg": "-57.453738", + "elevation_ft": "1181", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Maringá", + "scheduled_service": "no", + "gps_code": "SIUV", + "local_code": "MT0138" + }, + { + "id": "335769", + "ident": "BR-1031", + "type": "small_airport", + "name": "Comandante Milton Tosto Airport", + "latitude_deg": "-12.006058", + "longitude_deg": "-41.304938", + "elevation_ft": "3346", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Bonito", + "scheduled_service": "no", + "gps_code": "SIUW", + "local_code": "BA0099" + }, + { + "id": "335770", + "ident": "BR-1032", + "type": "small_airport", + "name": "Centúria Montana Airport", + "latitude_deg": "-11.294515", + "longitude_deg": "-46.028316", + "elevation_ft": "2644", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Formosa do Rio Preto", + "scheduled_service": "no", + "gps_code": "SNUK", + "local_code": "BA0097", + "keywords": "SITM, Fazenda Montana" + }, + { + "id": "335771", + "ident": "BR-1033", + "type": "heliport", + "name": "Quimigel Heliport", + "latitude_deg": "-22.964815", + "longitude_deg": "-47.320637", + "elevation_ft": "1808", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Monte Mor", + "scheduled_service": "no", + "gps_code": "SIUX", + "local_code": "SP0560" + }, + { + "id": "335772", + "ident": "BR-1034", + "type": "small_airport", + "name": "Pista Bom Jesus", + "latitude_deg": "-5.453888", + "longitude_deg": "-57.455147", + "elevation_ft": "430", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SIUZ", + "local_code": "PA0059" + }, + { + "id": "336940", + "ident": "BR-1035", + "type": "heliport", + "name": "Russi e Russi 2 Heliport", + "latitude_deg": "-27.144365", + "longitude_deg": "-48.592215", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Porto Belo", + "scheduled_service": "no", + "gps_code": "SJKR", + "local_code": "SC0069" + }, + { + "id": "335775", + "ident": "BR-1036", + "type": "small_airport", + "name": "Agropecuária Santa Rita Airport", + "latitude_deg": "-19.006884", + "longitude_deg": "-55.000703", + "elevation_ft": "2083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Verde de Mato Grosso", + "scheduled_service": "no", + "gps_code": "SIVD", + "local_code": "MS0134" + }, + { + "id": "335776", + "ident": "BR-1037", + "type": "small_airport", + "name": "Fazenda Estrela do Sul Airport", + "latitude_deg": "-21.79032", + "longitude_deg": "-54.083658", + "elevation_ft": "991", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Brilhante", + "scheduled_service": "no", + "gps_code": "STIX", + "local_code": "MS0132" + }, + { + "id": "335777", + "ident": "BR-1038", + "type": "small_airport", + "name": "Fazenda Santana Airport", + "latitude_deg": "-11.21117", + "longitude_deg": "-45.845168", + "elevation_ft": "2549", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Formosa do Rio Preto", + "scheduled_service": "no", + "gps_code": "SIUS", + "local_code": "BA0098" + }, + { + "id": "335778", + "ident": "BR-1039", + "type": "small_airport", + "name": "Fazenda Ilha Verde Airstrip", + "latitude_deg": "-17.28762", + "longitude_deg": "-55.893898", + "elevation_ft": "420", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SIVK", + "local_code": "MS0135" + }, + { + "id": "335779", + "ident": "BR-1040", + "type": "heliport", + "name": "Del Rio Helipad", + "latitude_deg": "-3.865528", + "longitude_deg": "-38.592747", + "elevation_ft": "190", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Maracanaú", + "scheduled_service": "no", + "gps_code": "SIVL", + "local_code": "CE0040" + }, + { + "id": "335780", + "ident": "BR-1041", + "type": "heliport", + "name": "GOLD STAR Heliport", + "latitude_deg": "-20.900573", + "longitude_deg": "-49.786144", + "elevation_ft": "1519", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Nipoã", + "scheduled_service": "no", + "gps_code": "SIVM", + "local_code": "SP0564" + }, + { + "id": "335793", + "ident": "BR-1042", + "type": "small_airport", + "name": "Clube de Voo Aeroquadra Airport", + "latitude_deg": "-23.314218", + "longitude_deg": "-48.029801", + "elevation_ft": "660", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Quadra", + "scheduled_service": "no", + "gps_code": "SIVQ", + "local_code": "SP0197" + }, + { + "id": "335794", + "ident": "BR-1043", + "type": "small_airport", + "name": "Fazenda Fortuna Airstrip", + "latitude_deg": "-9.149299", + "longitude_deg": "-56.917892", + "elevation_ft": "650", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Jacareacanga", + "scheduled_service": "no", + "gps_code": "SIVR", + "local_code": "PA0060" + }, + { + "id": "335795", + "ident": "BR-1044", + "type": "heliport", + "name": "Villa San Marco Helipad", + "latitude_deg": "-22.750855", + "longitude_deg": "-45.553799", + "elevation_ft": "5876", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campos do Jordão", + "scheduled_service": "no", + "gps_code": "SIVS", + "local_code": "SP0565" + }, + { + "id": "335796", + "ident": "BR-1045", + "type": "heliport", + "name": "Chaperó Heliport", + "latitude_deg": "-22.8425", + "longitude_deg": "-43.763889", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Itaguaí", + "scheduled_service": "no", + "gps_code": "SIVT", + "local_code": "RJ0093" + }, + { + "id": "335798", + "ident": "BR-1046", + "type": "small_airport", + "name": "Fazenda Vale do Boi II Airport", + "latitude_deg": "-11.670907", + "longitude_deg": "-52.094715", + "elevation_ft": "1132", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São Félix do Araguaia", + "scheduled_service": "no", + "gps_code": "SIVY", + "local_code": "MT0144" + }, + { + "id": "335800", + "ident": "BR-1047", + "type": "small_airport", + "name": "Asas do Cerrado Airstrip", + "latitude_deg": "-19.033062", + "longitude_deg": "-48.30689", + "elevation_ft": "2864", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberlândia", + "scheduled_service": "no", + "gps_code": "SIWC", + "local_code": "MG0114" + }, + { + "id": "335801", + "ident": "BR-1048", + "type": "heliport", + "name": "Ycatu Heliport", + "latitude_deg": "-22.64184", + "longitude_deg": "-46.81282", + "elevation_ft": "2280", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Amparo", + "scheduled_service": "no", + "gps_code": "SIWG", + "local_code": "SP0567" + }, + { + "id": "335802", + "ident": "BR-1049", + "type": "heliport", + "name": "Parque Ana Costa Helipad", + "latitude_deg": "-23.963661", + "longitude_deg": "-46.331545", + "elevation_ft": "318", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santos", + "scheduled_service": "no", + "gps_code": "SIWJ", + "local_code": "SP0568" + }, + { + "id": "335803", + "ident": "BR-1050", + "type": "small_airport", + "name": "Pista Aldeia Moykarako", + "latitude_deg": "-7.434674", + "longitude_deg": "-51.819449", + "elevation_ft": "892", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "São Félix do Xingu", + "scheduled_service": "no", + "gps_code": "SIWK", + "local_code": "PA0061" + }, + { + "id": "335804", + "ident": "BR-1051", + "type": "heliport", + "name": "Alceu Feldmann Heliport", + "latitude_deg": "-27.190594", + "longitude_deg": "-48.505701", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Bombinhas", + "scheduled_service": "no", + "gps_code": "SIWL", + "local_code": "SC0061" + }, + { + "id": "335805", + "ident": "BR-1052", + "type": "heliport", + "name": "Magnum Residência Heliport", + "latitude_deg": "-23.510339", + "longitude_deg": "-47.579234", + "elevation_ft": "1969", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araçoiaba da Serra", + "scheduled_service": "no", + "gps_code": "SIWM", + "local_code": "SP0569" + }, + { + "id": "335822", + "ident": "BR-1053", + "type": "small_airport", + "name": "Fazenda São Sebastião Airport", + "latitude_deg": "-19.358674", + "longitude_deg": "-56.411774", + "elevation_ft": "348", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SIWU", + "local_code": "MS0412" + }, + { + "id": "335823", + "ident": "BR-1054", + "type": "small_airport", + "name": "Ten. Brig. Ar Waldir de Vasconcelos Airport", + "latitude_deg": "-22.983968", + "longitude_deg": "-43.37706", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SIWV", + "local_code": "RJ0024" + }, + { + "id": "335824", + "ident": "BR-1055", + "type": "heliport", + "name": "Fazenda Barreiros Heliport", + "latitude_deg": "-23.765394", + "longitude_deg": "-45.347722", + "elevation_ft": "148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ilhabela", + "scheduled_service": "no", + "gps_code": "SIWW", + "local_code": "SP0570" + }, + { + "id": "335825", + "ident": "BR-1056", + "type": "small_airport", + "name": "Fazenda Comil Airport", + "latitude_deg": "-13.926097", + "longitude_deg": "-58.883294", + "elevation_ft": "2096", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SIWX", + "local_code": "MT0467" + }, + { + "id": "335826", + "ident": "BR-1057", + "type": "heliport", + "name": "Siframar Helipad", + "latitude_deg": "-27.1175", + "longitude_deg": "-48.608611", + "elevation_ft": "230", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Itapema", + "scheduled_service": "no", + "gps_code": "SIWP", + "local_code": "SC0062" + }, + { + "id": "335827", + "ident": "BR-1058", + "type": "heliport", + "name": "Miriti Internacional Golfe Marina Helipad", + "latitude_deg": "-1.338547", + "longitude_deg": "-48.318681", + "elevation_ft": "46", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Marituba", + "scheduled_service": "no", + "gps_code": "SIWI", + "local_code": "PA0155", + "home_link": "http://www.sintese.eng.br/empreendimento/miriti-internacional-golf-marina" + }, + { + "id": "335828", + "ident": "BR-1059", + "type": "small_airport", + "name": "Fazenda Pioneira Airport", + "latitude_deg": "-12.102778", + "longitude_deg": "-52.434444", + "elevation_ft": "1093", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Querência", + "scheduled_service": "no", + "gps_code": "SIQR", + "local_code": "MT0118" + }, + { + "id": "335831", + "ident": "BR-1060", + "type": "small_airport", + "name": "José Bernardo Airport", + "latitude_deg": "-21.458133", + "longitude_deg": "-41.051632", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "São Francisco de Itabapoana", + "scheduled_service": "no", + "gps_code": "SIQQ", + "local_code": "RJ0023" + }, + { + "id": "335832", + "ident": "BR-1061", + "type": "small_airport", + "name": "São João da Barra Airport", + "latitude_deg": "-21.638073", + "longitude_deg": "-41.028187", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "São João da Barra", + "scheduled_service": "no", + "gps_code": "SIJL", + "local_code": "RJ0022" + }, + { + "id": "335833", + "ident": "BR-1062", + "type": "small_airport", + "name": "Fazenda Lagoa Serena Airport", + "latitude_deg": "-4.59817", + "longitude_deg": "-42.592211", + "elevation_ft": "482", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "José de Freitas", + "scheduled_service": "no", + "gps_code": "SIQZ", + "local_code": "PI0024" + }, + { + "id": "335834", + "ident": "BR-1063", + "type": "small_airport", + "name": "Fazenda Cambara Airport", + "latitude_deg": "-11.619125", + "longitude_deg": "-56.556981", + "elevation_ft": "1263", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto dos Gaúchos", + "scheduled_service": "no", + "gps_code": "SIXB", + "local_code": "MT0148" + }, + { + "id": "335845", + "ident": "BR-1064", + "type": "small_airport", + "name": "Fazenda Lageado Airport", + "latitude_deg": "-20.996905", + "longitude_deg": "-52.169736", + "elevation_ft": "988", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Três Lagoas", + "scheduled_service": "no", + "gps_code": "SIXF", + "local_code": "MS0140" + }, + { + "id": "335846", + "ident": "BR-1065", + "type": "small_airport", + "name": "Pista Aldeia Kokraymoro", + "latitude_deg": "-7.210354", + "longitude_deg": "-52.569512", + "elevation_ft": "718", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "São Félix do Xingu", + "scheduled_service": "no", + "gps_code": "SIXI", + "local_code": "PA0062" + }, + { + "id": "335848", + "ident": "BR-1066", + "type": "small_airport", + "name": "Fazenda Barra do Triunfo Airport", + "latitude_deg": "-6.415966", + "longitude_deg": "-52.381032", + "elevation_ft": "627", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "São Félix do Xingu", + "scheduled_service": "no", + "gps_code": "SIXL", + "local_code": "PA0063" + }, + { + "id": "335849", + "ident": "BR-1067", + "type": "heliport", + "name": "Pretel 88 Heliport", + "latitude_deg": "-23.6905", + "longitude_deg": "-49.103269", + "elevation_ft": "2349", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itaí", + "scheduled_service": "no", + "gps_code": "SIXP", + "local_code": "SP0572" + }, + { + "id": "335851", + "ident": "BR-1068", + "type": "small_airport", + "name": "Fazenda Santa Isabel Airport", + "latitude_deg": "-19.928077", + "longitude_deg": "-55.672261", + "elevation_ft": "449", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SDW2", + "local_code": "MS0142", + "keywords": "SIXT, Alcinópolis" + }, + { + "id": "335879", + "ident": "BR-1069", + "type": "heliport", + "name": "Cana Brava Heliport", + "latitude_deg": "-23.209651", + "longitude_deg": "-49.113883", + "elevation_ft": "1936", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Arandu", + "scheduled_service": "no", + "gps_code": "SIXW", + "local_code": "SP0575" + }, + { + "id": "335894", + "ident": "BR-1070", + "type": "heliport", + "name": "Lunender Têxtil Heliport", + "latitude_deg": "-26.473243", + "longitude_deg": "-48.990108", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Guaramirim", + "scheduled_service": "no", + "gps_code": "SIXY", + "local_code": "SC0064" + }, + { + "id": "335904", + "ident": "BR-1071", + "type": "small_airport", + "name": "Fazenda São José Airport", + "latitude_deg": "-18.232039", + "longitude_deg": "-52.294363", + "elevation_ft": "2287", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Serranópolis", + "scheduled_service": "no", + "gps_code": "SIYF", + "local_code": "GO0062" + }, + { + "id": "335907", + "ident": "BR-1072", + "type": "small_airport", + "name": "Recanto dos Mouras Airport", + "latitude_deg": "-7.764304", + "longitude_deg": "-37.596003", + "elevation_ft": "1844", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Afogados da Ingazeira", + "scheduled_service": "no", + "gps_code": "SIYN", + "local_code": "PE0016" + }, + { + "id": "335915", + "ident": "BR-1073", + "type": "heliport", + "name": "Centro Empresarial Senado Helipad", + "latitude_deg": "-22.910646", + "longitude_deg": "-43.186183", + "elevation_ft": "292", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SIYQ", + "local_code": "RJ0094" + }, + { + "id": "335916", + "ident": "BR-1074", + "type": "small_airport", + "name": "Fazenda Sertaneja Airport", + "latitude_deg": "-6.225808", + "longitude_deg": "-48.251932", + "elevation_ft": "466", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Ananás", + "scheduled_service": "no", + "gps_code": "SIYS", + "local_code": "TO0022" + }, + { + "id": "335917", + "ident": "BR-1075", + "type": "small_airport", + "name": "Fazenda Estrela Airstrip", + "latitude_deg": "-9.537195", + "longitude_deg": "-65.731348", + "elevation_ft": "545", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Lábrea", + "scheduled_service": "no", + "gps_code": "SIYW", + "local_code": "AM0032" + }, + { + "id": "335919", + "ident": "BR-1076", + "type": "small_airport", + "name": "Fazenda Tereré Airstrip", + "latitude_deg": "-21.341393", + "longitude_deg": "-57.847542", + "elevation_ft": "276", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SIYX", + "local_code": "MS0414" + }, + { + "id": "335920", + "ident": "BR-1077", + "type": "heliport", + "name": "Briogold C1 Heliport", + "latitude_deg": "-11.00218", + "longitude_deg": "-39.294724", + "elevation_ft": "889", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Santaluz", + "scheduled_service": "no", + "gps_code": "SIYY", + "local_code": "BA0200", + "keywords": "Yamana Gold" + }, + { + "id": "335922", + "ident": "BR-1078", + "type": "small_airport", + "name": "Fazenda Cachoeira do Café Airport", + "latitude_deg": "-11.270876", + "longitude_deg": "-45.607845", + "elevation_ft": "2503", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Formosa do Rio Preto", + "scheduled_service": "no", + "gps_code": "SIZC", + "local_code": "BA0100" + }, + { + "id": "335923", + "ident": "BR-1079", + "type": "small_airport", + "name": "DZ47 Airstrip", + "latitude_deg": "-27.28808", + "longitude_deg": "-48.657706", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Tijucas", + "scheduled_service": "no", + "gps_code": "SIZD", + "local_code": "SC0103" + }, + { + "id": "335924", + "ident": "BR-1080", + "type": "small_airport", + "name": "Fazenda Flor de Liz", + "latitude_deg": "-13.060917", + "longitude_deg": "-53.003564", + "elevation_ft": "1211", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Gaúcha do Norte", + "scheduled_service": "no", + "gps_code": "SD2S", + "local_code": "MT0155", + "keywords": "SIZF" + }, + { + "id": "335927", + "ident": "BR-1081", + "type": "small_airport", + "name": "Fazenda Santo André II Airport", + "latitude_deg": "-12.631711", + "longitude_deg": "-57.295926", + "elevation_ft": "1106", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Maringá", + "scheduled_service": "no", + "gps_code": "SIZG", + "local_code": "MT0475" + }, + { + "id": "335929", + "ident": "BR-1082", + "type": "small_airport", + "name": "Mocelin II Airport", + "latitude_deg": "-25.684586", + "longitude_deg": "-53.06747", + "elevation_ft": "1752", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Dois Vizinhos", + "scheduled_service": "no", + "gps_code": "SIZM", + "local_code": "PR0054" + }, + { + "id": "335930", + "ident": "BR-1083", + "type": "small_airport", + "name": "Gaúcha do Norte Airport", + "latitude_deg": "-13.156267", + "longitude_deg": "-53.250569", + "elevation_ft": "1214", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Gaúcha do Norte", + "scheduled_service": "no", + "gps_code": "SIZP", + "local_code": "MT0158" + }, + { + "id": "335931", + "ident": "BR-1084", + "type": "heliport", + "name": "Taxaquara Golf Club Heliport", + "latitude_deg": "-23.52371", + "longitude_deg": "-47.088089", + "elevation_ft": "3077", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Roque", + "scheduled_service": "no", + "gps_code": "SIZT", + "local_code": "SP0583" + }, + { + "id": "335933", + "ident": "BR-1085", + "type": "heliport", + "name": "Portal do Porto Helipad", + "latitude_deg": "-25.514215", + "longitude_deg": "-49.131326", + "elevation_ft": "1430", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "São José dos Pinhais", + "scheduled_service": "no", + "gps_code": "SIZW", + "local_code": "PR0113" + }, + { + "id": "336067", + "ident": "BR-1086", + "type": "small_airport", + "name": "Fazenda Jardim", + "latitude_deg": "-18.43107", + "longitude_deg": "-52.658446", + "elevation_ft": "2598", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Chapadão do Céu", + "scheduled_service": "no", + "gps_code": "SNJD", + "local_code": "GO0098" + }, + { + "id": "336119", + "ident": "BR-1087", + "type": "heliport", + "name": "Helisul Afonso Pena Heliport", + "latitude_deg": "-25.536948", + "longitude_deg": "-49.179381", + "elevation_ft": "2966", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "São José dos Pinhais", + "scheduled_service": "no", + "gps_code": "SJAX", + "local_code": "PR0116" + }, + { + "id": "336120", + "ident": "BR-1088", + "type": "heliport", + "name": "Alphaville Araçagy Heliport", + "latitude_deg": "-2.470038", + "longitude_deg": "-44.173855", + "elevation_ft": "125", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Paço do Lumiar", + "scheduled_service": "no", + "gps_code": "SJAY", + "local_code": "MA0059" + }, + { + "id": "336123", + "ident": "BR-1089", + "type": "small_airport", + "name": "Fazed Santa Bárbara Airport", + "latitude_deg": "-14.617778", + "longitude_deg": "-44.188056", + "elevation_ft": "1667", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Manga", + "scheduled_service": "no", + "gps_code": "SJBF", + "local_code": "MG0117" + }, + { + "id": "336125", + "ident": "BR-1090", + "type": "small_airport", + "name": "Nossa Senhora Aparecida Airstrip", + "latitude_deg": "-7.351975", + "longitude_deg": "-50.376306", + "elevation_ft": "1407", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Rio Maria", + "scheduled_service": "no", + "gps_code": "SJBN", + "local_code": "PA0068" + }, + { + "id": "336162", + "ident": "BR-1091", + "type": "heliport", + "name": "EZ Towers B Helipad", + "latitude_deg": "-23.627196", + "longitude_deg": "-46.701829", + "elevation_ft": "2844", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJBO", + "local_code": "SP0599" + }, + { + "id": "336173", + "ident": "BR-1092", + "type": "heliport", + "name": "São José dos Campos Helipad", + "latitude_deg": "-23.211443", + "longitude_deg": "-45.900482", + "elevation_ft": "1919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São José dos Campos", + "scheduled_service": "no", + "gps_code": "SJBS", + "local_code": "SP0601" + }, + { + "id": "336174", + "ident": "BR-1093", + "type": "small_airport", + "name": "Fazenda Alto Jaborandir Airstrip", + "latitude_deg": "-14.677303", + "longitude_deg": "-45.982337", + "elevation_ft": "3051", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Jaborandi", + "scheduled_service": "no", + "gps_code": "SJBU", + "local_code": "BA0103" + }, + { + "id": "336176", + "ident": "BR-1094", + "type": "small_airport", + "name": "Berge Vile Airport", + "latitude_deg": "-29.730782", + "longitude_deg": "-51.209157", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Portão", + "scheduled_service": "no", + "gps_code": "SJBW", + "local_code": "RS0073" + }, + { + "id": "336177", + "ident": "BR-1095", + "type": "small_airport", + "name": "Fazenda Serrana Airport", + "latitude_deg": "-13.930646", + "longitude_deg": "-46.232444", + "elevation_ft": "3291", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Correntina", + "scheduled_service": "no", + "gps_code": "SJCC", + "local_code": "BA0104" + }, + { + "id": "336178", + "ident": "BR-1096", + "type": "heliport", + "name": "Condomínio Vitassay Heliport", + "latitude_deg": "-23.307498", + "longitude_deg": "-47.663959", + "elevation_ft": "2057", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Boituva", + "scheduled_service": "no", + "gps_code": "SJCD", + "local_code": "SP0603" + }, + { + "id": "336179", + "ident": "BR-1097", + "type": "heliport", + "name": "Convem Heliport", + "latitude_deg": "-22.660191", + "longitude_deg": "-43.158393", + "elevation_ft": "56", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Magé", + "scheduled_service": "no", + "gps_code": "SJCE", + "local_code": "RJ0097" + }, + { + "id": "336180", + "ident": "BR-1098", + "type": "small_airport", + "name": "Fazenda Carajás Airport", + "latitude_deg": "-13.404506", + "longitude_deg": "-58.772422", + "elevation_ft": "1863", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SJCJ", + "local_code": "MT0165" + }, + { + "id": "336181", + "ident": "BR-1099", + "type": "heliport", + "name": "Colombo I Heliport", + "latitude_deg": "-21.24779", + "longitude_deg": "-48.810137", + "elevation_ft": "1982", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santa Adélia", + "scheduled_service": "no", + "gps_code": "SJCK", + "local_code": "SP0605" + }, + { + "id": "336182", + "ident": "BR-1100", + "type": "heliport", + "name": "Comando Piloto Heliport", + "latitude_deg": "-21.61642", + "longitude_deg": "-46.87525", + "elevation_ft": "2753", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São José do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SJCL", + "local_code": "SP0606" + }, + { + "id": "336183", + "ident": "BR-1101", + "type": "small_airport", + "name": "Catuleve Airport", + "latitude_deg": "-3.939457", + "longitude_deg": "-38.378971", + "elevation_ft": "75", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Aquiraz", + "scheduled_service": "no", + "gps_code": "SJCM", + "local_code": "CE0017" + }, + { + "id": "336184", + "ident": "BR-1102", + "type": "small_airport", + "name": "Fazenda Santa Cármen Airstrip", + "latitude_deg": "-9.719693", + "longitude_deg": "-65.144742", + "elevation_ft": "400", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Abunã", + "scheduled_service": "no", + "gps_code": "SJCS", + "local_code": "RO0016" + }, + { + "id": "336185", + "ident": "BR-1103", + "type": "heliport", + "name": "Helicentro do Pontal", + "latitude_deg": "-23.01408", + "longitude_deg": "-43.500232", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SJDA", + "local_code": "RJ0099" + }, + { + "id": "336186", + "ident": "BR-1104", + "type": "heliport", + "name": "Jardim das Perdizes Helipad", + "latitude_deg": "-23.519804", + "longitude_deg": "-46.679642", + "elevation_ft": "2703", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJDD", + "local_code": "SP0608" + }, + { + "id": "336187", + "ident": "BR-1105", + "type": "small_airport", + "name": "Fazenda Ipiranga", + "latitude_deg": "-22.91824", + "longitude_deg": "-53.06911", + "elevation_ft": "1473", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Loanda", + "scheduled_service": "no", + "gps_code": "SJDI", + "local_code": "PR0055" + }, + { + "id": "336192", + "ident": "BR-1106", + "type": "small_airport", + "name": "Fazenda São José Airport", + "latitude_deg": "-19.09539", + "longitude_deg": "-53.503906", + "elevation_ft": "2024", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Camapuã", + "scheduled_service": "no", + "gps_code": "SJDJ", + "local_code": "MS0150" + }, + { + "id": "336260", + "ident": "BR-1107", + "type": "heliport", + "name": "Metaneide Heliport", + "latitude_deg": "-3.84203", + "longitude_deg": "-38.599859", + "elevation_ft": "171", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Maracanaú", + "scheduled_service": "no", + "gps_code": "SJED", + "local_code": "CE0042" + }, + { + "id": "336261", + "ident": "BR-1108", + "type": "heliport", + "name": "Malwee Pomerode Helipad", + "latitude_deg": "-26.706456", + "longitude_deg": "-49.163722", + "elevation_ft": "299", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Pomerode", + "scheduled_service": "no", + "gps_code": "SJEE", + "local_code": "SC0066" + }, + { + "id": "336298", + "ident": "BR-1109", + "type": "heliport", + "name": "Marcus Barbosa Empresarial Calhau Helipad", + "latitude_deg": "-2.493099", + "longitude_deg": "-44.27475", + "elevation_ft": "335", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "São Luís", + "scheduled_service": "no", + "gps_code": "SJEM", + "local_code": "MA0060" + }, + { + "id": "336299", + "ident": "BR-1110", + "type": "heliport", + "name": "Modelo II Heliport", + "latitude_deg": "-21.15237", + "longitude_deg": "-53.281482", + "elevation_ft": "1125", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SJEO", + "local_code": "MS0406" + }, + { + "id": "336300", + "ident": "BR-1111", + "type": "heliport", + "name": "Parque do Peão Heliport", + "latitude_deg": "-20.508822", + "longitude_deg": "-48.599911", + "elevation_ft": "1837", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barretos", + "scheduled_service": "no", + "gps_code": "SJEP", + "local_code": "SP0614" + }, + { + "id": "336301", + "ident": "BR-1112", + "type": "small_airport", + "name": "Fazenda Cristal Airport", + "latitude_deg": "-17.861415", + "longitude_deg": "-55.707668", + "elevation_ft": "476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJEQ", + "local_code": "MS0160" + }, + { + "id": "336318", + "ident": "BR-1113", + "type": "heliport", + "name": "Main Estate Helipad", + "latitude_deg": "-23.458089", + "longitude_deg": "-46.471653", + "elevation_ft": "2569", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarulhos", + "scheduled_service": "no", + "gps_code": "SJES", + "local_code": "SP0615" + }, + { + "id": "336319", + "ident": "BR-1114", + "type": "heliport", + "name": "Baltt Heliport", + "latitude_deg": "-26.793036", + "longitude_deg": "-48.67108", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Penha", + "scheduled_service": "no", + "gps_code": "SJET", + "local_code": "SC0067" + }, + { + "id": "336320", + "ident": "BR-1115", + "type": "small_airport", + "name": "Evanderto Almeida Airport", + "latitude_deg": "-6.989027", + "longitude_deg": "-39.844458", + "elevation_ft": "2228", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Assaré", + "scheduled_service": "no", + "gps_code": "SJEV", + "local_code": "CE0019" + }, + { + "id": "336321", + "ident": "BR-1116", + "type": "heliport", + "name": "Eurofarma Laboratórios S.A. Helipad", + "latitude_deg": "-23.518732", + "longitude_deg": "-46.960732", + "elevation_ft": "2769", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapevi", + "scheduled_service": "no", + "gps_code": "SJEY", + "local_code": "SP0616" + }, + { + "id": "336322", + "ident": "BR-1117", + "type": "small_airport", + "name": "Fazenda Fartura Airstrip", + "latitude_deg": "-15.121375", + "longitude_deg": "-54.940568", + "elevation_ft": "2907", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Verde", + "scheduled_service": "no", + "gps_code": "SJFG", + "local_code": "MT0169" + }, + { + "id": "336323", + "ident": "BR-1118", + "type": "small_airport", + "name": "Fazenda Jaraguá Airport", + "latitude_deg": "-20.499236", + "longitude_deg": "-54.808442", + "elevation_ft": "1759", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Terenos", + "scheduled_service": "no", + "gps_code": "SJFJ", + "local_code": "MS0161" + }, + { + "id": "336324", + "ident": "BR-1119", + "type": "small_airport", + "name": "Fazenda Sorriso Airport", + "latitude_deg": "-16.164546", + "longitude_deg": "-50.138505", + "elevation_ft": "2310", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Mossâmedes", + "scheduled_service": "no", + "gps_code": "SJFO", + "local_code": "GO0071" + }, + { + "id": "336325", + "ident": "BR-1120", + "type": "heliport", + "name": "Instituto Dr. José Frota Helipad", + "latitude_deg": "-3.734421", + "longitude_deg": "-38.531199", + "elevation_ft": "230", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SJFS", + "local_code": "CE0043" + }, + { + "id": "336326", + "ident": "BR-1121", + "type": "small_airport", + "name": "Fazenda São Francisco Airport", + "latitude_deg": "-15.854633", + "longitude_deg": "-49.244362", + "elevation_ft": "2165", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "São Francisco de Goiás", + "scheduled_service": "no", + "gps_code": "SJFW", + "local_code": "GO0072" + }, + { + "id": "336327", + "ident": "BR-1122", + "type": "small_airport", + "name": "Fazenda Flamingo Airport", + "latitude_deg": "-13.851999", + "longitude_deg": "-57.942606", + "elevation_ft": "1965", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo do Parecis", + "scheduled_service": "no", + "gps_code": "SJFY", + "local_code": "MT0171" + }, + { + "id": "336328", + "ident": "BR-1123", + "type": "heliport", + "name": "Miraflores Heliport", + "latitude_deg": "2.839811", + "longitude_deg": "-60.651891", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Boa Vista", + "scheduled_service": "no", + "gps_code": "SJFZ", + "local_code": "RR0114" + }, + { + "id": "336338", + "ident": "BR-1124", + "type": "small_airport", + "name": "Fazenda JAD Airport", + "latitude_deg": "-10.954588", + "longitude_deg": "-48.994872", + "elevation_ft": "965", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Santa Rita do Tocantins", + "scheduled_service": "no", + "gps_code": "SJFI", + "local_code": "TO0026" + }, + { + "id": "336539", + "ident": "BR-1125", + "type": "heliport", + "name": "Getúlio Vargas University Hospital Heliport", + "latitude_deg": "-3.116278", + "longitude_deg": "-60.019147", + "elevation_ft": "400", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Manaus", + "scheduled_service": "no", + "gps_code": "SJGA", + "local_code": "AM0059" + }, + { + "id": "336541", + "ident": "BR-1126", + "type": "small_airport", + "name": "Fazenda São Gabriel Airport", + "latitude_deg": "-18.9647", + "longitude_deg": "-44.271784", + "elevation_ft": "2526", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Curvelo", + "scheduled_service": "no", + "gps_code": "SJGB", + "local_code": "MG0121" + }, + { + "id": "336542", + "ident": "BR-1127", + "type": "small_airport", + "name": "Fazenda Irmãos Garcia Airport", + "latitude_deg": "-13.754444", + "longitude_deg": "-57.903915", + "elevation_ft": "1919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo do Parecis", + "scheduled_service": "no", + "gps_code": "SJGF", + "local_code": "MT0172" + }, + { + "id": "336543", + "ident": "BR-1128", + "type": "heliport", + "name": "Haras MTostes Heliport", + "latitude_deg": "-20.225574", + "longitude_deg": "-43.708845", + "elevation_ft": "2969", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Itabirito", + "scheduled_service": "no", + "gps_code": "SJGG", + "local_code": "MG0446" + }, + { + "id": "336544", + "ident": "BR-1129", + "type": "small_airport", + "name": "Sítio São Jorge Airport", + "latitude_deg": "-23.942989", + "longitude_deg": "-48.943656", + "elevation_ft": "2182", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapeva", + "scheduled_service": "no", + "gps_code": "SJGJ", + "local_code": "SP0209" + }, + { + "id": "336546", + "ident": "BR-1130", + "type": "heliport", + "name": "Helicentro Guaratiba Heliport", + "latitude_deg": "-22.995158", + "longitude_deg": "-43.548238", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SJGK", + "local_code": "RJ0104" + }, + { + "id": "336547", + "ident": "BR-1131", + "type": "small_airport", + "name": "Comandante Zequinha / Grand Lake Airport", + "latitude_deg": "-16.671783", + "longitude_deg": "-48.010262", + "elevation_ft": "2690", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Luziânia", + "scheduled_service": "no", + "gps_code": "SJGL", + "local_code": "GO0073" + }, + { + "id": "336548", + "ident": "BR-1132", + "type": "heliport", + "name": "AGO Helipad", + "latitude_deg": "-22.971495", + "longitude_deg": "-43.362769", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SJGO", + "local_code": "RJ0105" + }, + { + "id": "336549", + "ident": "BR-1133", + "type": "heliport", + "name": "Guarapá Heliport", + "latitude_deg": "-23.89853", + "longitude_deg": "-46.304133", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santos", + "scheduled_service": "no", + "gps_code": "SJGP", + "local_code": "SP0620", + "keywords": "SIGG" + }, + { + "id": "336550", + "ident": "BR-1134", + "type": "heliport", + "name": "Ledware Heliport", + "latitude_deg": "-22.574043", + "longitude_deg": "-44.969133", + "elevation_ft": "1814", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cruzeiro", + "scheduled_service": "no", + "gps_code": "SJGQ", + "local_code": "SP0621" + }, + { + "id": "336551", + "ident": "BR-1135", + "type": "small_airport", + "name": "Santa Maria Airport", + "latitude_deg": "-14.802849", + "longitude_deg": "-46.656978", + "elevation_ft": "1713", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Flores de Goiás", + "scheduled_service": "no", + "gps_code": "SJGR", + "local_code": "GO0074" + }, + { + "id": "336556", + "ident": "BR-1136", + "type": "small_airport", + "name": "Fazenda Futura Airport", + "latitude_deg": "-16.946814", + "longitude_deg": "-46.194618", + "elevation_ft": "1644", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Brasilândia de Minas", + "scheduled_service": "no", + "gps_code": "SJDF", + "local_code": "MG0118" + }, + { + "id": "336558", + "ident": "BR-1137", + "type": "small_airport", + "name": "Fazenda São Geraldo Airport", + "latitude_deg": "-8.31469", + "longitude_deg": "-48.976937", + "elevation_ft": "640", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Couto Magalhães", + "scheduled_service": "no", + "gps_code": "SJGW", + "local_code": "TO0078" + }, + { + "id": "336559", + "ident": "BR-1138", + "type": "heliport", + "name": "Gutierrez Heliport", + "latitude_deg": "-19.455229", + "longitude_deg": "-44.376144", + "elevation_ft": "2408", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Sete Lagoas", + "scheduled_service": "no", + "gps_code": "SJGX", + "local_code": "MG0241" + }, + { + "id": "336563", + "ident": "BR-1139", + "type": "heliport", + "name": "Grota Funda Heliport", + "latitude_deg": "-23.001874", + "longitude_deg": "-43.504776", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "local_code": "RJ0103", + "keywords": "SJGG" + }, + { + "id": "336564", + "ident": "BR-1140", + "type": "heliport", + "name": "Hospital do Coração - Unidade Santa Alice Helipad", + "latitude_deg": "-23.341177", + "longitude_deg": "-51.163325", + "elevation_ft": "1808", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Londrina", + "scheduled_service": "no", + "gps_code": "SJHA", + "local_code": "PR0119" + }, + { + "id": "336565", + "ident": "BR-1141", + "type": "small_airport", + "name": "Josidith Airport", + "latitude_deg": "-6.831574", + "longitude_deg": "-47.817961", + "elevation_ft": "1309", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Darcinópolis", + "scheduled_service": "no", + "gps_code": "SJHD", + "local_code": "TO0029" + }, + { + "id": "336571", + "ident": "BR-1142", + "type": "heliport", + "name": "Fazenda Mãe d´água Heliport", + "latitude_deg": "-22.428529", + "longitude_deg": "-43.08656", + "elevation_ft": "3527", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Petrópolis", + "scheduled_service": "no", + "gps_code": "SJDH", + "local_code": "RJ0100" + }, + { + "id": "336573", + "ident": "BR-1143", + "type": "heliport", + "name": "Haras Bella Vista Heliport", + "latitude_deg": "-22.632035", + "longitude_deg": "-47.843238", + "elevation_ft": "1739", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Pedro", + "scheduled_service": "no", + "keywords": "SJEC" + }, + { + "id": "336599", + "ident": "BR-1144", + "type": "heliport", + "name": "Aerosigma Helicentro Heliport", + "latitude_deg": "-25.257503", + "longitude_deg": "-49.143366", + "elevation_ft": "3176", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Bocaiúva do Sul", + "scheduled_service": "no", + "gps_code": "SJGS", + "local_code": "PR0118" + }, + { + "id": "336624", + "ident": "BR-1145", + "type": "small_airport", + "name": "Aníbal Azevedo Filho Airstrip", + "latitude_deg": "-12.553551", + "longitude_deg": "-38.314472", + "elevation_ft": "246", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Mata de São João", + "scheduled_service": "no", + "gps_code": "SJHF", + "local_code": "BA0111" + }, + { + "id": "336625", + "ident": "BR-1146", + "type": "small_airport", + "name": "Fazenda São João Airport", + "latitude_deg": "-8.374555", + "longitude_deg": "-45.138458", + "elevation_ft": "1693", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Baixa Grande do Ribeiro", + "scheduled_service": "no", + "gps_code": "SJHJ", + "local_code": "PI0025" + }, + { + "id": "336643", + "ident": "BR-1147", + "type": "heliport", + "name": "Helinorte Heliport", + "latitude_deg": "-5.362996", + "longitude_deg": "-49.069018", + "elevation_ft": "367", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Marabá", + "scheduled_service": "no", + "local_code": "PA0156" + }, + { + "id": "336794", + "ident": "BR-1148", + "type": "heliport", + "name": "JT Fazenda Santana Heliport", + "latitude_deg": "-23.039234", + "longitude_deg": "-47.04762", + "elevation_ft": "2100", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Valinhos", + "scheduled_service": "no", + "gps_code": "SJHT", + "local_code": "SP0623" + }, + { + "id": "35438", + "ident": "BR-1149", + "type": "small_airport", + "name": "Aeroclube Airport", + "latitude_deg": "-21.281944", + "longitude_deg": "-50.326942", + "elevation_ft": "1394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Birigui", + "scheduled_service": "no", + "keywords": "SDBI" + }, + { + "id": "38100", + "ident": "BR-1150", + "type": "closed", + "name": "Pauini Airport", + "latitude_deg": "-7.712787", + "longitude_deg": "-66.996517", + "elevation_ft": "397", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Pauini", + "scheduled_service": "no" + }, + { + "id": "336862", + "ident": "BR-1151", + "type": "small_airport", + "name": "Fazenda Agromaster Airport", + "latitude_deg": "-10.864252", + "longitude_deg": "-54.710525", + "elevation_ft": "1293", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Marcelândia", + "scheduled_service": "no", + "gps_code": "SSRP", + "local_code": "MT0614" + }, + { + "id": "336864", + "ident": "BR-1152", + "type": "small_airport", + "name": "Fazenda Terra Morena Airport", + "latitude_deg": "-13.207844", + "longitude_deg": "-45.253631", + "elevation_ft": "2516", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Correntina", + "scheduled_service": "no", + "gps_code": "SSUQ", + "local_code": "BA0265" + }, + { + "id": "336869", + "ident": "BR-1153", + "type": "small_airport", + "name": "Fazenda Platô Azul", + "latitude_deg": "-18.84797", + "longitude_deg": "-45.864098", + "elevation_ft": "3425", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Tiros", + "scheduled_service": "no", + "gps_code": "SSWM", + "local_code": "MG0455" + }, + { + "id": "336873", + "ident": "BR-1154", + "type": "small_airport", + "name": "Fazenda Nova Aliança Airport", + "latitude_deg": "-21.328552", + "longitude_deg": "-50.192936", + "elevation_ft": "1352", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Glicério", + "scheduled_service": "no", + "gps_code": "SJNA", + "local_code": "SP0210" + }, + { + "id": "336874", + "ident": "BR-1155", + "type": "small_airport", + "name": "Fazenda Nova Esperança Airport", + "latitude_deg": "-9.449839", + "longitude_deg": "-52.138842", + "elevation_ft": "846", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "São Félix do Xingu", + "scheduled_service": "no", + "gps_code": "SJNH", + "local_code": "PA0073" + }, + { + "id": "336875", + "ident": "BR-1156", + "type": "small_airport", + "name": "Fazenda Buriti Airport", + "latitude_deg": "-20.480036", + "longitude_deg": "-50.187631", + "elevation_ft": "1398", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Valentim Gentil", + "scheduled_service": "no", + "gps_code": "SJNI", + "local_code": "SP0211" + }, + { + "id": "336876", + "ident": "BR-1157", + "type": "heliport", + "name": "MC Heliport", + "latitude_deg": "-16.50173", + "longitude_deg": "-48.792432", + "elevation_ft": "817", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Silvânia", + "scheduled_service": "no", + "gps_code": "SJNJ", + "local_code": "GO0185" + }, + { + "id": "336877", + "ident": "BR-1158", + "type": "small_airport", + "name": "Pista Nove de Outubro", + "latitude_deg": "-6.105115", + "longitude_deg": "-56.290019", + "elevation_ft": "505", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "keywords": "SJNO" + }, + { + "id": "336881", + "ident": "BR-1159", + "type": "small_airport", + "name": "Fazenda Rosário Airport", + "latitude_deg": "1.084965", + "longitude_deg": "-49.90508", + "elevation_ft": "39", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Macapá", + "scheduled_service": "no", + "gps_code": "SJNR", + "local_code": "AP0007" + }, + { + "id": "336882", + "ident": "BR-1160", + "type": "heliport", + "name": "Grupo Souza Lima Helipad", + "latitude_deg": "-23.534658", + "longitude_deg": "-46.544352", + "elevation_ft": "2467", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJNS", + "local_code": "SP0636" + }, + { + "id": "336946", + "ident": "BR-1161", + "type": "small_airport", + "name": "Destilaria Veredas Airport", + "latitude_deg": "-17.715755", + "longitude_deg": "-45.817385", + "elevation_ft": "2631", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "João Pinheiro", + "scheduled_service": "no", + "gps_code": "SJOH", + "local_code": "MG0465" + }, + { + "id": "336950", + "ident": "BR-1162", + "type": "small_airport", + "name": "Fazenda Lagoa Airport", + "latitude_deg": "-17.764502", + "longitude_deg": "-46.546678", + "elevation_ft": "1847", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Lagoa Grande", + "scheduled_service": "no", + "gps_code": "SDIE", + "local_code": "MG0444" + }, + { + "id": "336955", + "ident": "BR-1163", + "type": "closed", + "name": "Rio Trombetas Airstrip", + "latitude_deg": "0.332638", + "longitude_deg": "-56.808127", + "elevation_ft": "715", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "scheduled_service": "no" + }, + { + "id": "336985", + "ident": "BR-1164", + "type": "small_airport", + "name": "Fazenda Nossa Senhora Aparecida Airport", + "latitude_deg": "-11.913015", + "longitude_deg": "-56.158982", + "elevation_ft": "105", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tapurah", + "scheduled_service": "no", + "local_code": "MT0198" + }, + { + "id": "336986", + "ident": "BR-1165", + "type": "heliport", + "name": "Office Premium Indaiatuba Helipad", + "latitude_deg": "-23.095651", + "longitude_deg": "-47.223294", + "elevation_ft": "2073", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Indaiatuba", + "scheduled_service": "no", + "gps_code": "SJOI", + "local_code": "SP0639" + }, + { + "id": "336987", + "ident": "BR-1166", + "type": "small_airport", + "name": "Fazenda São Jerônimo Airport", + "latitude_deg": "-16.902334", + "longitude_deg": "-53.587651", + "elevation_ft": "2802", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alto Garças", + "scheduled_service": "no", + "gps_code": "SJOM", + "local_code": "MT0199" + }, + { + "id": "336988", + "ident": "BR-1167", + "type": "heliport", + "name": "Jordanésia Heliport", + "latitude_deg": "-23.354785", + "longitude_deg": "-46.854726", + "elevation_ft": "2484", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cajamar", + "scheduled_service": "no", + "gps_code": "SJON", + "local_code": "SP0641" + }, + { + "id": "336989", + "ident": "BR-1168", + "type": "small_airport", + "name": "Fazenda Onça do Barão", + "latitude_deg": "-14.212078", + "longitude_deg": "-45.198413", + "elevation_ft": "2539", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Cocos", + "scheduled_service": "no", + "gps_code": "SJOR", + "local_code": "BA0119" + }, + { + "id": "336993", + "ident": "BR-1169", + "type": "heliport", + "name": "AGETOP Heliport", + "latitude_deg": "-16.64772", + "longitude_deg": "-49.208729", + "elevation_ft": "2365", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiânia", + "scheduled_service": "no", + "gps_code": "SJOS", + "local_code": "GO0163" + }, + { + "id": "336995", + "ident": "BR-1170", + "type": "small_airport", + "name": "Fazenda Alegria Airport", + "latitude_deg": "-10.59728", + "longitude_deg": "-52.554567", + "elevation_ft": "1115", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São José do Xingu", + "scheduled_service": "no", + "gps_code": "SJOX", + "local_code": "MT0203" + }, + { + "id": "336997", + "ident": "BR-1171", + "type": "small_airport", + "name": "Jorge Luiz Stocco Airport", + "latitude_deg": "-25.40068", + "longitude_deg": "-49.80028", + "elevation_ft": "3412", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Palmeira", + "scheduled_service": "no", + "gps_code": "SJOY", + "local_code": "PR0058" + }, + { + "id": "337001", + "ident": "BR-1172", + "type": "small_airport", + "name": "Fazenda Uberaba Airport", + "latitude_deg": "-13.072039", + "longitude_deg": "-60.246636", + "elevation_ft": "1004", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SJUD", + "local_code": "MT0620" + }, + { + "id": "337023", + "ident": "BR-1173", + "type": "heliport", + "name": "Palácio Rio Madeira Helipad", + "latitude_deg": "-8.749503", + "longitude_deg": "-63.910357", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Porto Velho", + "scheduled_service": "no", + "gps_code": "SJPA", + "local_code": "RO0043" + }, + { + "id": "337027", + "ident": "BR-1174", + "type": "heliport", + "name": "Polícia Militar do Estado de Goiás Heliport", + "latitude_deg": "-16.704483", + "longitude_deg": "-49.258189", + "elevation_ft": "2700", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Goiânia", + "scheduled_service": "no", + "gps_code": "SJPG", + "local_code": "GO0164" + }, + { + "id": "337028", + "ident": "BR-1175", + "type": "small_airport", + "name": "Fazenda Santa Maria da Nhecolândia Airport", + "latitude_deg": "-18.81701", + "longitude_deg": "-56.579476", + "elevation_ft": "348", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SWLI", + "local_code": "MS0433" + }, + { + "id": "337030", + "ident": "BR-1176", + "type": "heliport", + "name": "Silva Jardim Helipad", + "latitude_deg": "-23.713942", + "longitude_deg": "-46.547281", + "elevation_ft": "2779", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Bernardo do Campo", + "scheduled_service": "no", + "gps_code": "SJII", + "local_code": "SP0626" + }, + { + "id": "337031", + "ident": "BR-1177", + "type": "small_airport", + "name": "Fazenda 2J Airport", + "latitude_deg": "-14.815392", + "longitude_deg": "-52.910167", + "elevation_ft": "1394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Novo São Joaquim", + "scheduled_service": "no", + "gps_code": "SJIJ", + "local_code": "MT0486" + }, + { + "id": "337043", + "ident": "BR-1178", + "type": "heliport", + "name": "Polícia Militar de Minas Gerais - Juíz de Fora Heliport", + "latitude_deg": "-21.736981", + "longitude_deg": "-43.364282", + "elevation_ft": "2349", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Juiz de Fora", + "scheduled_service": "no", + "gps_code": "SJIM", + "local_code": "MG0242" + }, + { + "id": "337044", + "ident": "BR-1179", + "type": "heliport", + "name": "Tech Office Helipad", + "latitude_deg": "-2.490976", + "longitude_deg": "-44.303098", + "elevation_ft": "249", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "São Luís", + "scheduled_service": "no", + "gps_code": "SJIO", + "local_code": "MA0062" + }, + { + "id": "337046", + "ident": "BR-1180", + "type": "small_airport", + "name": "Fazenda Laguna Airport", + "latitude_deg": "-23.657811", + "longitude_deg": "-54.176116", + "elevation_ft": "1102", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Eldorado", + "scheduled_service": "no", + "gps_code": "SJIP", + "local_code": "MS0169" + }, + { + "id": "337048", + "ident": "BR-1181", + "type": "heliport", + "name": "Haras Larissa Heliport", + "latitude_deg": "-22.891473", + "longitude_deg": "-47.309396", + "elevation_ft": "2110", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sumaré", + "scheduled_service": "no", + "gps_code": "SJIQ", + "local_code": "SP0627" + }, + { + "id": "337049", + "ident": "BR-1182", + "type": "small_airport", + "name": "Fazenda Caregi Airport", + "latitude_deg": "-12.214407", + "longitude_deg": "-55.98707", + "elevation_ft": "1224", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Ipiranga do Norte", + "scheduled_service": "no", + "gps_code": "SJIU", + "local_code": "MT0466" + }, + { + "id": "337050", + "ident": "BR-1183", + "type": "small_airport", + "name": "Fazenda Veneza Airport", + "latitude_deg": "-9.338206", + "longitude_deg": "-49.887092", + "elevation_ft": "630", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Caseara", + "scheduled_service": "no", + "gps_code": "SJIV", + "local_code": "TO0030" + }, + { + "id": "337051", + "ident": "BR-1184", + "type": "small_airport", + "name": "Fazenda Iaciara", + "latitude_deg": "-14.141414", + "longitude_deg": "-46.684302", + "elevation_ft": "1732", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Iaciara", + "scheduled_service": "no", + "gps_code": "SJIY", + "local_code": "GO0077" + }, + { + "id": "337052", + "ident": "BR-1185", + "type": "small_airport", + "name": "Fazenda Cafenápolis Airport", + "latitude_deg": "-16.195423", + "longitude_deg": "-39.5175", + "elevation_ft": "591", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Eunápolis", + "scheduled_service": "no", + "gps_code": "SJIZ", + "local_code": "BA0114" + }, + { + "id": "337055", + "ident": "BR-1186", + "type": "small_airport", + "name": "Fazenda Santri Airport", + "latitude_deg": "-17.158056", + "longitude_deg": "-56.614722", + "elevation_ft": "351", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão de Melgaço", + "scheduled_service": "no", + "gps_code": "SSMF", + "local_code": "MT0638", + "keywords": "SJIJ" + }, + { + "id": "337063", + "ident": "BR-1187", + "type": "small_airport", + "name": "Santa Colomba Agropecuária Airport", + "latitude_deg": "-14.773731", + "longitude_deg": "-45.561182", + "elevation_ft": "2811", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Cocos", + "scheduled_service": "no", + "gps_code": "SNTB", + "local_code": "BA0332" + }, + { + "id": "35669", + "ident": "BR-1188", + "type": "closed", + "name": "Pirelli Eden Heliport", + "latitude_deg": "-23.412779", + "longitude_deg": "-47.425556", + "elevation_ft": "1832", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sorocaba", + "scheduled_service": "no", + "keywords": "SDPE" + }, + { + "id": "337095", + "ident": "BR-1189", + "type": "small_airport", + "name": "Cajupi Airport", + "latitude_deg": "-8.333008", + "longitude_deg": "-45.08544", + "elevation_ft": "1736", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Baixa Grande do Ribeiro", + "scheduled_service": "no", + "gps_code": "SDMC", + "local_code": "PI0062" + }, + { + "id": "337096", + "ident": "BR-1190", + "type": "heliport", + "name": "Ecobalsa / Flyone Heliport", + "latitude_deg": "-23.011063", + "longitude_deg": "-43.377612", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SDOJ", + "local_code": "RJ0338" + }, + { + "id": "337102", + "ident": "BR-1191", + "type": "small_airport", + "name": "Fazenda Paraíso Airport", + "latitude_deg": "-20.088431", + "longitude_deg": "-48.491103", + "elevation_ft": "1598", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Conceição das Alagoas", + "scheduled_service": "no", + "gps_code": "SNPT", + "local_code": "MG0456" + }, + { + "id": "337104", + "ident": "BR-1192", + "type": "small_airport", + "name": "Fermap Airport", + "latitude_deg": "-12.558928", + "longitude_deg": "-55.632403", + "elevation_ft": "1243", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "gps_code": "SNQB", + "local_code": "MT0605" + }, + { + "id": "337105", + "ident": "BR-1193", + "type": "heliport", + "name": "Morizono Helipad", + "latitude_deg": "-23.592297", + "longitude_deg": "-46.68167", + "elevation_ft": "2628", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SNSZ", + "local_code": "SP1222" + }, + { + "id": "337107", + "ident": "BR-1194", + "type": "small_airport", + "name": "Fazenda Tupã Airport", + "latitude_deg": "-13.349073", + "longitude_deg": "-53.650808", + "elevation_ft": "1325", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Gaúcha do Norte", + "scheduled_service": "no", + "gps_code": "SNTU", + "local_code": "MT0597" + }, + { + "id": "337109", + "ident": "BR-1195", + "type": "small_airport", + "name": "Fazenda Timbaúba Airport", + "latitude_deg": "-12.519207", + "longitude_deg": "-46.150635", + "elevation_ft": "2851", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Luís Eduardo Magalhães", + "scheduled_service": "no", + "gps_code": "SNTV", + "local_code": "BA0144" + }, + { + "id": "337110", + "ident": "BR-1196", + "type": "small_airport", + "name": "Fazenda Córrego Fundo Airport", + "latitude_deg": "-13.730606", + "longitude_deg": "-52.69571", + "elevation_ft": "1434", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Água Boa", + "scheduled_service": "no", + "gps_code": "SNUM", + "local_code": "MT0617" + }, + { + "id": "337111", + "ident": "BR-1197", + "type": "small_airport", + "name": "Agropecuária Lazarotto Airport", + "latitude_deg": "-12.616146", + "longitude_deg": "-56.623049", + "elevation_ft": "1250", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tapurah", + "scheduled_service": "no", + "gps_code": "SNXS", + "local_code": "MT0588" + }, + { + "id": "337115", + "ident": "BR-1198", + "type": "small_airport", + "name": "Fazenda Selena Airport", + "latitude_deg": "-16.532975", + "longitude_deg": "-53.277784", + "elevation_ft": "1860", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alto Garças", + "scheduled_service": "no", + "gps_code": "SSBS", + "local_code": "MT0604" + }, + { + "id": "337117", + "ident": "BR-1199", + "type": "small_airport", + "name": "Fazenda Conquista Airstrip", + "latitude_deg": "-11.994913", + "longitude_deg": "-54.680842", + "elevation_ft": "1257", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santa Carmem", + "scheduled_service": "no", + "gps_code": "SSIO", + "local_code": "MT0628" + }, + { + "id": "337118", + "ident": "BR-1200", + "type": "small_airport", + "name": "Fazenda Bacaba – JEM Airstrip", + "latitude_deg": "-9.528922", + "longitude_deg": "-48.777363", + "elevation_ft": "1142", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Miranorte", + "scheduled_service": "no", + "gps_code": "SSJD", + "local_code": "TO0076" + }, + { + "id": "337139", + "ident": "BR-1201", + "type": "small_airport", + "name": "Fazenda São Caetano Airport", + "latitude_deg": "-15.280895", + "longitude_deg": "-54.427677", + "elevation_ft": "2241", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Primavera do Leste", + "scheduled_service": "no", + "gps_code": "SSJU", + "local_code": "MT0587" + }, + { + "id": "337143", + "ident": "BR-1202", + "type": "small_airport", + "name": "Fazenda Taiamã Airport", + "latitude_deg": "-18.092952", + "longitude_deg": "-55.605101", + "elevation_ft": "509", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSLQ", + "local_code": "MS0487" + }, + { + "id": "337145", + "ident": "BR-1203", + "type": "small_airport", + "name": "Fazenda São José do Pontal Airport", + "latitude_deg": "-20.651944", + "longitude_deg": "-53.598889", + "elevation_ft": "1155", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SSPB", + "local_code": "MS0519" + }, + { + "id": "337147", + "ident": "BR-1204", + "type": "heliport", + "name": "FBDM Heliport", + "latitude_deg": "-11.451625", + "longitude_deg": "-39.081259", + "elevation_ft": "1174", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Barrocas", + "scheduled_service": "no", + "gps_code": "SSNW", + "local_code": "BA0345" + }, + { + "id": "337258", + "ident": "BR-1205", + "type": "small_airport", + "name": "Madereira Airport", + "latitude_deg": "-9.236404", + "longitude_deg": "-60.338209", + "elevation_ft": "482", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Colniza", + "scheduled_service": "no", + "gps_code": "SSSW", + "local_code": "MT0594" + }, + { + "id": "337260", + "ident": "BR-1206", + "type": "small_airport", + "name": "Fazenda Fundão Airport", + "latitude_deg": "-17.414872", + "longitude_deg": "-46.660747", + "elevation_ft": "1965", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Paracatu", + "scheduled_service": "no", + "gps_code": "SSUY", + "local_code": "MG0466" + }, + { + "id": "337261", + "ident": "BR-1207", + "type": "heliport", + "name": "Disco Heliport", + "latitude_deg": "-22.980637", + "longitude_deg": "-43.231964", + "elevation_ft": "177", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SSUZ", + "local_code": "RJ0344" + }, + { + "id": "337262", + "ident": "BR-1208", + "type": "small_airport", + "name": "Fazenda Fortaleza Airport", + "latitude_deg": "-28.932588", + "longitude_deg": "-53.426078", + "elevation_ft": "1394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Boa Vista do Incra", + "scheduled_service": "no", + "gps_code": "SSWE", + "local_code": "RS0164" + }, + { + "id": "337264", + "ident": "BR-1209", + "type": "small_airport", + "name": "Fazenda Cuelhambi Airport", + "latitude_deg": "-21.998056", + "longitude_deg": "-54.068912", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Angélica", + "scheduled_service": "no", + "gps_code": "SSWK", + "local_code": "MS0499" + }, + { + "id": "337265", + "ident": "BR-1210", + "type": "small_airport", + "name": "Fazenda Laguna Porã Airport", + "latitude_deg": "-21.848284", + "longitude_deg": "-57.621948", + "elevation_ft": "377", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SSXC", + "local_code": "MS0523" + }, + { + "id": "337266", + "ident": "BR-1211", + "type": "heliport", + "name": "Komprão Itapema Heliport", + "latitude_deg": "-27.129439", + "longitude_deg": "-48.612945", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Itapema", + "scheduled_service": "no", + "gps_code": "SSXI", + "local_code": "SC0123" + }, + { + "id": "337267", + "ident": "BR-1212", + "type": "heliport", + "name": "Fazenda Santa Gertrudes Heliport", + "latitude_deg": "-23.654077", + "longitude_deg": "-48.16359", + "elevation_ft": "2280", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapetininga", + "scheduled_service": "no", + "gps_code": "SSYC", + "local_code": "SP0878" + }, + { + "id": "337268", + "ident": "BR-1213", + "type": "small_airport", + "name": "Santa Colomba Cafés Airport", + "latitude_deg": "-14.623452", + "longitude_deg": "-45.251461", + "elevation_ft": "2664", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Cocos", + "scheduled_service": "no", + "gps_code": "SWBI", + "local_code": "BA0327" + }, + { + "id": "337273", + "ident": "BR-1214", + "type": "small_airport", + "name": "Fazenda Água Nascente Airport", + "latitude_deg": "-17.23552", + "longitude_deg": "-53.730581", + "elevation_ft": "1929", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Sonora", + "scheduled_service": "no", + "gps_code": "SWBW", + "local_code": "MS0509" + }, + { + "id": "337275", + "ident": "BR-1215", + "type": "heliport", + "name": "Icon Realty Cajamar Helipad", + "latitude_deg": "-23.376145", + "longitude_deg": "-46.842821", + "elevation_ft": "2533", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cajamar", + "scheduled_service": "no", + "gps_code": "SWCX", + "local_code": "SP0866" + }, + { + "id": "337276", + "ident": "BR-1216", + "type": "small_airport", + "name": "Fazenda Pessegueiro Airport", + "latitude_deg": "-28.336294", + "longitude_deg": "-52.484662", + "elevation_ft": "1995", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Passo Fundo", + "scheduled_service": "no", + "gps_code": "SWDW", + "local_code": "RS0165" + }, + { + "id": "337284", + "ident": "BR-1217", + "type": "heliport", + "name": "Fapar Heliport", + "latitude_deg": "-29.182337", + "longitude_deg": "-51.235825", + "elevation_ft": "2457", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Caxias do Sul", + "scheduled_service": "no", + "gps_code": "SWFY", + "local_code": "RS0132" + }, + { + "id": "337285", + "ident": "BR-1218", + "type": "small_airport", + "name": "AAGV - Associação Aerodesportiva de Getulio Vargas Airport", + "latitude_deg": "-27.862438", + "longitude_deg": "-52.185247", + "elevation_ft": "2182", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Getúlio Vargas", + "scheduled_service": "no", + "gps_code": "SWGL", + "local_code": "RS0170" + }, + { + "id": "337286", + "ident": "BR-1219", + "type": "small_airport", + "name": "Fazenda Novo Horizonte Airport", + "latitude_deg": "-16.179265", + "longitude_deg": "-43.609414", + "elevation_ft": "1929", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Capitão Enéas", + "scheduled_service": "no", + "gps_code": "SWHO", + "local_code": "MG0472" + }, + { + "id": "337288", + "ident": "BR-1220", + "type": "heliport", + "name": "Ilha dos Coqueiros Heliport", + "latitude_deg": "-22.984175", + "longitude_deg": "-44.354296", + "elevation_ft": "85", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra dos Reis", + "scheduled_service": "no", + "gps_code": "SWJJ", + "local_code": "RJ0352" + }, + { + "id": "337289", + "ident": "BR-1221", + "type": "small_airport", + "name": "Fazenda Boa Vista - Grupo IJP Airport", + "latitude_deg": "-13.152644", + "longitude_deg": "-55.377261", + "elevation_ft": "1447", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "gps_code": "SWLK", + "local_code": "MT0607" + }, + { + "id": "337290", + "ident": "BR-1222", + "type": "small_airport", + "name": "Fazenda Nova Santa Rita Airport", + "latitude_deg": "-6.802758", + "longitude_deg": "-56.489808", + "elevation_ft": "823", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SWML", + "local_code": "PA0243" + }, + { + "id": "337296", + "ident": "BR-1223", + "type": "heliport", + "name": "Infinity Helipad", + "latitude_deg": "-28.935378", + "longitude_deg": "-49.482186", + "elevation_ft": "243", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Araranguá", + "scheduled_service": "no", + "gps_code": "SNEP", + "local_code": "SC0121" + }, + { + "id": "337297", + "ident": "BR-1224", + "type": "small_airport", + "name": "Aero Roça Airport", + "latitude_deg": "-16.53975", + "longitude_deg": "-47.83727", + "elevation_ft": "2792", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Luziânia", + "scheduled_service": "no", + "gps_code": "SNHR", + "local_code": "GO0283" + }, + { + "id": "337307", + "ident": "BR-1225", + "type": "heliport", + "name": "Represa Avaré Heliport", + "latitude_deg": "-23.201865", + "longitude_deg": "-48.984706", + "elevation_ft": "1877", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Avaré", + "scheduled_service": "no", + "gps_code": "SWGA", + "local_code": "SP1302", + "keywords": "SWUG" + }, + { + "id": "337328", + "ident": "BR-1226", + "type": "heliport", + "name": "Arroz Cristal Heliport", + "latitude_deg": "-16.806553", + "longitude_deg": "-49.244381", + "elevation_ft": "2552", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Aparecida de Goiânia", + "scheduled_service": "no", + "gps_code": "SWUO", + "local_code": "GO0180" + }, + { + "id": "337386", + "ident": "BR-1227", + "type": "heliport", + "name": "Fazenda da Vida Heliport", + "latitude_deg": "-12.512235", + "longitude_deg": "-39.099935", + "elevation_ft": "420", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Cabaceiras do Paraguaçu", + "scheduled_service": "no", + "gps_code": "SDAQ", + "local_code": "BA0355" + }, + { + "id": "337391", + "ident": "BR-1228", + "type": "heliport", + "name": "Décio Ituiutaba Heliport", + "latitude_deg": "-18.96454", + "longitude_deg": "-49.502227", + "elevation_ft": "1939", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Ituiutaba", + "scheduled_service": "no", + "gps_code": "SDBU", + "local_code": "MG0445" + }, + { + "id": "337393", + "ident": "BR-1229", + "type": "closed", + "name": "Haras Bandeirantes Airstrip", + "latitude_deg": "-21.468605", + "longitude_deg": "-47.630678", + "elevation_ft": "2231", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Simão", + "scheduled_service": "no", + "keywords": "SDHR" + }, + { + "id": "337395", + "ident": "BR-1230", + "type": "closed", + "name": "Fazenda Vargas Airstrip", + "latitude_deg": "-15.536387", + "longitude_deg": "-59.632771", + "elevation_ft": "768", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes e Lacerda", + "scheduled_service": "no", + "keywords": "SDZQ" + }, + { + "id": "337398", + "ident": "BR-1231", + "type": "small_airport", + "name": "Aero Helinorte Airport", + "latitude_deg": "-5.447269", + "longitude_deg": "-48.918908", + "elevation_ft": "443", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "São João do Araguaia", + "scheduled_service": "no" + }, + { + "id": "337399", + "ident": "BR-1232", + "type": "small_airport", + "name": "Fazenda Bela Vista Airstrip", + "latitude_deg": "-21.417909", + "longitude_deg": "-51.893518", + "elevation_ft": "896", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Panorama", + "scheduled_service": "no", + "gps_code": "SITM", + "local_code": "SP1268" + }, + { + "id": "337401", + "ident": "BR-1233", + "type": "small_airport", + "name": "Fazenda Novo Horizonte IV Airport", + "latitude_deg": "-18.727203", + "longitude_deg": "-45.692819", + "elevation_ft": "3353", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Biquinhas", + "scheduled_service": "no", + "keywords": "SITZ" + }, + { + "id": "337402", + "ident": "BR-1234", + "type": "heliport", + "name": "Fazenda Cachoeira Heliport", + "latitude_deg": "-21.647517", + "longitude_deg": "-44.772546", + "elevation_ft": "3235", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Cruzília", + "scheduled_service": "no", + "keywords": "SIUA" + }, + { + "id": "337404", + "ident": "BR-1235", + "type": "small_airport", + "name": "Paranhos Airport", + "latitude_deg": "-23.873791", + "longitude_deg": "-55.423064", + "elevation_ft": "1364", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Paranhos", + "scheduled_service": "no", + "keywords": "Ype Jhu, Ypé Jhú, Ypejhú, (Paraguay)" + }, + { + "id": "337406", + "ident": "BR-1236", + "type": "small_airport", + "name": "Fazenda Toledo Airport", + "latitude_deg": "-13.073688", + "longitude_deg": "-55.375859", + "elevation_ft": "1401", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "keywords": "SIZD" + }, + { + "id": "337407", + "ident": "BR-1237", + "type": "heliport", + "name": "Fazenda Acalanto Helipad", + "latitude_deg": "-22.693665", + "longitude_deg": "-43.288633", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Duque de Caxias", + "scheduled_service": "no", + "keywords": "SJCJ" + }, + { + "id": "337409", + "ident": "BR-1238", + "type": "heliport", + "name": "Unifique Helipad", + "latitude_deg": "-26.819604", + "longitude_deg": "-49.27263", + "elevation_ft": "243", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Timbó", + "scheduled_service": "no", + "gps_code": "SJEU", + "local_code": "SC0173" + }, + { + "id": "337410", + "ident": "BR-1239", + "type": "heliport", + "name": "Hospital Regional do Vale do Jaguaribe Heliport", + "latitude_deg": "-5.118611", + "longitude_deg": "-38.148333", + "elevation_ft": "112", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Limoeiro do Norte", + "scheduled_service": "no", + "gps_code": "SIFH", + "local_code": "CE0135" + }, + { + "id": "337458", + "ident": "BR-1240", + "type": "small_airport", + "name": "Ninho das Águias Conquista Airport", + "latitude_deg": "-14.963339", + "longitude_deg": "-40.814563", + "elevation_ft": "2897", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Vitória da Conquista", + "scheduled_service": "no", + "keywords": "{SIIN}" + }, + { + "id": "337459", + "ident": "BR-1241", + "type": "heliport", + "name": "Riserva Golf Heliport", + "latitude_deg": "-23.004273", + "longitude_deg": "-43.401908", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "keywords": "SIKU" + }, + { + "id": "337460", + "ident": "BR-1242", + "type": "heliport", + "name": "Fabio Fernando Franciscate Heliport", + "latitude_deg": "-23.048661", + "longitude_deg": "-45.683851", + "elevation_ft": "1919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Caçapava", + "scheduled_service": "no", + "keywords": "SIKY" + }, + { + "id": "337461", + "ident": "BR-1243", + "type": "small_airport", + "name": "Fazenda Ouro Verde", + "latitude_deg": "-18.082415", + "longitude_deg": "-55.311444", + "elevation_ft": "551", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "keywords": "SINF" + }, + { + "id": "337462", + "ident": "BR-1244", + "type": "small_airport", + "name": "Monte das Oliveiras (Comandante Sérgio) Airport", + "latitude_deg": "-1.862148", + "longitude_deg": "-44.872664", + "elevation_ft": "125", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Cururupu", + "scheduled_service": "no", + "gps_code": "SD8H", + "local_code": "MA0129", + "keywords": "SISN" + }, + { + "id": "337463", + "ident": "BR-1245", + "type": "heliport", + "name": "Vokkan Vivapark Heliport", + "latitude_deg": "-27.161389", + "longitude_deg": "-48.605", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Porto Belo", + "scheduled_service": "no", + "gps_code": "SIVE", + "local_code": "SC0185" + }, + { + "id": "337464", + "ident": "BR-1246", + "type": "small_airport", + "name": "Fazenda Santa Maria III Airport", + "latitude_deg": "-18.402084", + "longitude_deg": "-54.451901", + "elevation_ft": "1184", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Coxim", + "scheduled_service": "no", + "gps_code": "SIXR", + "local_code": "MS0506" + }, + { + "id": "337466", + "ident": "BR-1247", + "type": "small_airport", + "name": "Fazenda Mangabas Airport", + "latitude_deg": "-19.227737", + "longitude_deg": "-50.31409", + "elevation_ft": "1335", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Santa Vitória", + "scheduled_service": "no", + "gps_code": "SINM", + "local_code": "MG0452" + }, + { + "id": "337467", + "ident": "BR-1248", + "type": "small_airport", + "name": "Fazenda Primavera", + "latitude_deg": "-17.686776", + "longitude_deg": "-42.289206", + "elevation_ft": "3343", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Setubinha", + "scheduled_service": "no", + "keywords": "SIRA" + }, + { + "id": "337489", + "ident": "BR-1249", + "type": "small_airport", + "name": "Fazenda Campo das Princesas Airport", + "latitude_deg": "-5.322304", + "longitude_deg": "-42.82918", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Timon", + "scheduled_service": "no", + "gps_code": "SJPK", + "local_code": "MA0031" + }, + { + "id": "337490", + "ident": "BR-1250", + "type": "heliport", + "name": "André Sampaio Heliport", + "latitude_deg": "-12.651944", + "longitude_deg": "-41.490556", + "elevation_ft": "3127", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Palmeiras", + "scheduled_service": "no", + "gps_code": "SJJA", + "local_code": "BA0205" + }, + { + "id": "337492", + "ident": "BR-1251", + "type": "small_airport", + "name": "Fazenda Cachoeira Airport", + "latitude_deg": "-22.500245", + "longitude_deg": "-55.360849", + "elevation_ft": "1631", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ponta Porã", + "scheduled_service": "no", + "gps_code": "SJJC", + "local_code": "MS0420" + }, + { + "id": "337493", + "ident": "BR-1252", + "type": "heliport", + "name": "Hospital Geral de Fortaleza (HGF) Helipad", + "latitude_deg": "-3.739849", + "longitude_deg": "-38.476642", + "elevation_ft": "118", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "keywords": "SJJC" + }, + { + "id": "337494", + "ident": "BR-1253", + "type": "small_airport", + "name": "Fazenda Cerro Porã Airport", + "latitude_deg": "-22.030537", + "longitude_deg": "-57.467288", + "elevation_ft": "561", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SJJD", + "local_code": "MS0172" + }, + { + "id": "337567", + "ident": "BR-1254", + "type": "small_airport", + "name": "Fazenda São José Airstrip", + "latitude_deg": "-10.219135", + "longitude_deg": "-54.792466", + "elevation_ft": "942", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Matupá", + "scheduled_service": "no", + "gps_code": "SJJI", + "local_code": "MT0480" + }, + { + "id": "337572", + "ident": "BR-1255", + "type": "heliport", + "name": "Posto O Fazendeiro Heliport", + "latitude_deg": "-24.256607", + "longitude_deg": "-47.378934", + "elevation_ft": "200", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Miracatu", + "scheduled_service": "no", + "gps_code": "SJJP", + "local_code": "SP0629" + }, + { + "id": "337574", + "ident": "BR-1256", + "type": "small_airport", + "name": "Fazenda São João Airport", + "latitude_deg": "-10.328423", + "longitude_deg": "-54.580896", + "elevation_ft": "971", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Matupá", + "scheduled_service": "no", + "gps_code": "SJJM", + "local_code": "MT0186" + }, + { + "id": "337575", + "ident": "BR-1257", + "type": "small_airport", + "name": "Fazendas Apóstolo Simão Coffee Airport", + "latitude_deg": "-15.720262", + "longitude_deg": "-42.406305", + "elevation_ft": "2664", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Rio Pardo de Minas", + "scheduled_service": "no", + "gps_code": "SJJQ", + "local_code": "MG0127" + }, + { + "id": "337631", + "ident": "BR-1258", + "type": "small_airport", + "name": "Porto Conceição Airport", + "latitude_deg": "-21.493135", + "longitude_deg": "-57.925534", + "elevation_ft": "276", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SJJX", + "local_code": "MS0175" + }, + { + "id": "337642", + "ident": "BR-1259", + "type": "small_airport", + "name": "Pista Aldeia Kikretum", + "latitude_deg": "-7.13173", + "longitude_deg": "-51.653331", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Ourilândia do Norte", + "scheduled_service": "no", + "gps_code": "SJKC", + "local_code": "PA0071" + }, + { + "id": "337643", + "ident": "BR-1260", + "type": "small_airport", + "name": "Pista Aldeia Kedjêrêkrã", + "latitude_deg": "-7.812897", + "longitude_deg": "-52.151482", + "elevation_ft": "906", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "São Félix do Xingu", + "scheduled_service": "no", + "gps_code": "SJKE", + "local_code": "PA0072" + }, + { + "id": "337740", + "ident": "BR-1261", + "type": "small_airport", + "name": "Fazenda Siriema Airport", + "latitude_deg": "-13.563012", + "longitude_deg": "-59.266095", + "elevation_ft": "2106", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campos de Júlio", + "scheduled_service": "no", + "gps_code": "SJKJ", + "local_code": "MT0191" + }, + { + "id": "337763", + "ident": "BR-1262", + "type": "heliport", + "name": "CEO Helipad", + "latitude_deg": "-12.979436", + "longitude_deg": "-38.452384", + "elevation_ft": "456", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Salvador", + "scheduled_service": "no", + "gps_code": "SJOC", + "local_code": "BA0210" + }, + { + "id": "337774", + "ident": "BR-1263", + "type": "heliport", + "name": "Planalto Indústria Mecânica Heliport", + "latitude_deg": "-16.653264", + "longitude_deg": "-49.345238", + "elevation_ft": "2139", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiânia", + "scheduled_service": "no", + "keywords": "SJPI" + }, + { + "id": "337775", + "ident": "BR-1264", + "type": "small_airport", + "name": "Pista do Limão", + "latitude_deg": "-5.745327", + "longitude_deg": "-56.388601", + "elevation_ft": "554", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SJPL", + "local_code": "PA0074" + }, + { + "id": "337777", + "ident": "BR-1265", + "type": "heliport", + "name": "Jundiá Heliport", + "latitude_deg": "-22.40108", + "longitude_deg": "-41.875688", + "elevation_ft": "89", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Macaé", + "scheduled_service": "no", + "gps_code": "SJPN", + "local_code": "RJ0110" + }, + { + "id": "337778", + "ident": "BR-1266", + "type": "heliport", + "name": "Terminal Petrobrás - São Sebastião Heliport", + "latitude_deg": "-23.798608", + "longitude_deg": "-45.400035", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Sebastião", + "scheduled_service": "no", + "gps_code": "SJPQ", + "local_code": "SP0648" + }, + { + "id": "337785", + "ident": "BR-1267", + "type": "small_airport", + "name": "Fazenda Promissão Airport", + "latitude_deg": "-11.791489", + "longitude_deg": "-54.443706", + "elevation_ft": "1194", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "União do Sul", + "scheduled_service": "no", + "gps_code": "SJPS", + "local_code": "MT0206" + }, + { + "id": "337790", + "ident": "BR-1268", + "type": "small_airport", + "name": "Quatro Ventos Airport", + "latitude_deg": "-18.973799", + "longitude_deg": "-48.105909", + "elevation_ft": "3030", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberlândia", + "scheduled_service": "no", + "gps_code": "SJPT", + "local_code": "MG0129" + }, + { + "id": "337793", + "ident": "BR-1269", + "type": "small_airport", + "name": "Clube de Ultraleves do Piauí Airport", + "latitude_deg": "-5.032856", + "longitude_deg": "-42.718443", + "elevation_ft": "459", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Teresina", + "scheduled_service": "no", + "gps_code": "SJPU", + "local_code": "PI0027" + }, + { + "id": "337822", + "ident": "BR-1270", + "type": "small_airport", + "name": "Grupo Shimohira Airport", + "latitude_deg": "-11.449444", + "longitude_deg": "-46.4725", + "elevation_ft": "2733", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Formosa do Rio Preto", + "scheduled_service": "no", + "gps_code": "SJQD", + "local_code": "BA0120" + }, + { + "id": "337824", + "ident": "BR-1271", + "type": "heliport", + "name": "Hospital de Clínicas Municipal Helipad", + "latitude_deg": "-23.733094", + "longitude_deg": "-46.578062", + "elevation_ft": "2730", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Bernardo do Campo", + "scheduled_service": "no", + "gps_code": "SJQH", + "local_code": "SP0650" + }, + { + "id": "337827", + "ident": "BR-1272", + "type": "small_airport", + "name": "Fazenda Fortaleza Airport", + "latitude_deg": "-20.595859", + "longitude_deg": "-48.372775", + "elevation_ft": "1621", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jaborandi", + "scheduled_service": "no", + "gps_code": "SJQJ", + "local_code": "SP0213" + }, + { + "id": "337869", + "ident": "BR-1273", + "type": "small_airport", + "name": "Fazenda Confiança Airport", + "latitude_deg": "-7.94832", + "longitude_deg": "-45.084942", + "elevation_ft": "1512", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Baixa Grande do Ribeiro", + "scheduled_service": "no", + "gps_code": "SJQO", + "local_code": "PI0028" + }, + { + "id": "337871", + "ident": "BR-1274", + "type": "heliport", + "name": "Rincão do Céu Heliport", + "latitude_deg": "-7.846169", + "longitude_deg": "-34.848794", + "elevation_ft": "187", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Igarassu(Igaraçu)", + "scheduled_service": "no", + "gps_code": "SJQR", + "local_code": "PE0038", + "keywords": "SWGF" + }, + { + "id": "337872", + "ident": "BR-1275", + "type": "small_airport", + "name": "Fazenda Santa Tereza Airport", + "latitude_deg": "-11.468114", + "longitude_deg": "-54.055199", + "elevation_ft": "1191", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "União do Sul", + "scheduled_service": "no", + "gps_code": "SJQS", + "local_code": "MT0453" + }, + { + "id": "337873", + "ident": "BR-1276", + "type": "small_airport", + "name": "Fazenda Formosa Airstrip", + "latitude_deg": "-10.703416", + "longitude_deg": "-45.389524", + "elevation_ft": "2516", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Formosa do Rio Preto", + "scheduled_service": "no", + "gps_code": "SJQU", + "local_code": "BA0121" + }, + { + "id": "337874", + "ident": "BR-1277", + "type": "small_airport", + "name": "Fazenda Peça Rara Agropecuária II Airport", + "latitude_deg": "-12.429319", + "longitude_deg": "-62.141246", + "elevation_ft": "643", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Alta Floresta d'Oeste", + "scheduled_service": "no", + "gps_code": "SJQZ", + "local_code": "RO0047" + }, + { + "id": "337884", + "ident": "BR-1278", + "type": "heliport", + "name": "P.E. Anori Heliport", + "latitude_deg": "-3.710721", + "longitude_deg": "-61.662656", + "elevation_ft": "95", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Anori", + "scheduled_service": "no", + "gps_code": "SJRA", + "local_code": "AM0061" + }, + { + "id": "337901", + "ident": "BR-1279", + "type": "small_airport", + "name": "Grupo Pronorte Airport", + "latitude_deg": "-11.08977", + "longitude_deg": "-54.532762", + "elevation_ft": "1020", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Marcelândia", + "scheduled_service": "no", + "gps_code": "SJRP", + "local_code": "MT0481" + }, + { + "id": "337909", + "ident": "BR-1280", + "type": "small_airport", + "name": "Fazenda São Bento do Nabileque Airport.", + "latitude_deg": "-20.105678", + "longitude_deg": "-57.341024", + "elevation_ft": "285", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJSB", + "local_code": "MS0184" + }, + { + "id": "337910", + "ident": "BR-1281", + "type": "heliport", + "name": "Mineração Riacho dos Machados Heliport", + "latitude_deg": "-16.055992", + "longitude_deg": "-43.129789", + "elevation_ft": "2795", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Riacho dos Machados", + "scheduled_service": "no", + "gps_code": "SJSD", + "local_code": "MG0244" + }, + { + "id": "337912", + "ident": "BR-1282", + "type": "small_airport", + "name": "Fazenda São Jorge Airport", + "latitude_deg": "-16.344585", + "longitude_deg": "-39.686948", + "elevation_ft": "725", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Guaratinga", + "scheduled_service": "no", + "gps_code": "SJSJ", + "local_code": "BA0122" + }, + { + "id": "337962", + "ident": "BR-1283", + "type": "heliport", + "name": "Hospital Sírio Libanês II Helipad", + "latitude_deg": "-23.557222", + "longitude_deg": "-46.653056", + "elevation_ft": "2907", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJSL", + "local_code": "SP0658" + }, + { + "id": "337963", + "ident": "BR-1284", + "type": "small_airport", + "name": "Chácara Marcella Airport", + "latitude_deg": "-24.210217", + "longitude_deg": "-53.009151", + "elevation_ft": "1608", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Goioerê", + "scheduled_service": "no", + "gps_code": "SJSM", + "local_code": "PR0060" + }, + { + "id": "337965", + "ident": "BR-1285", + "type": "heliport", + "name": "Quinta do Carangola Heliport", + "latitude_deg": "-22.471603", + "longitude_deg": "-43.155558", + "elevation_ft": "2828", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Petrópolis", + "scheduled_service": "no", + "gps_code": "SJSQ", + "local_code": "RJ0113" + }, + { + "id": "337970", + "ident": "BR-1286", + "type": "heliport", + "name": "Colinas Shopping Helipad", + "latitude_deg": "-23.205181", + "longitude_deg": "-45.908024", + "elevation_ft": "2175", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São José dos Campos", + "scheduled_service": "no", + "gps_code": "SJSW", + "local_code": "SP0659" + }, + { + "id": "337973", + "ident": "BR-1287", + "type": "heliport", + "name": "SICPA Heliport", + "latitude_deg": "-22.884145", + "longitude_deg": "-43.735039", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SJSY", + "local_code": "RJ0114" + }, + { + "id": "337974", + "ident": "BR-1288", + "type": "heliport", + "name": "Helbor Concept Helipad", + "latitude_deg": "-23.516853", + "longitude_deg": "-46.179003", + "elevation_ft": "2677", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Moji das Cruzes", + "scheduled_service": "no", + "gps_code": "SJSZ", + "local_code": "SP0660" + }, + { + "id": "337975", + "ident": "BR-1289", + "type": "heliport", + "name": "Academia Nacional da Polícia Rodoviária Federal Heliport", + "latitude_deg": "-27.455953", + "longitude_deg": "-48.461357", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Florianópolis", + "scheduled_service": "no", + "gps_code": "SJTA", + "local_code": "SC0071" + }, + { + "id": "337976", + "ident": "BR-1290", + "type": "heliport", + "name": "Tênis Camp Heliport", + "latitude_deg": "-22.565866", + "longitude_deg": "-47.073833", + "elevation_ft": "2024", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Artur Nogueira", + "scheduled_service": "no", + "gps_code": "SJTE", + "local_code": "SP0662" + }, + { + "id": "337977", + "ident": "BR-1291", + "type": "small_airport", + "name": "Fazenda Matão Airport", + "latitude_deg": "-20.921866", + "longitude_deg": "-57.447706", + "elevation_ft": "387", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SJTG", + "local_code": "MS0416" + }, + { + "id": "337979", + "ident": "BR-1292", + "type": "heliport", + "name": "Josidith Heliport", + "latitude_deg": "-4.140597", + "longitude_deg": "-38.488442", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Horizonte", + "scheduled_service": "no", + "gps_code": "SJTI", + "local_code": "CE0045" + }, + { + "id": "337980", + "ident": "BR-1293", + "type": "small_airport", + "name": "Fazenda Jatobá Airport", + "latitude_deg": "-14.187687", + "longitude_deg": "-57.518331", + "elevation_ft": "2044", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "local_code": "MT0220" + }, + { + "id": "337981", + "ident": "BR-1294", + "type": "small_airport", + "name": "Fazenda Itakiray Airport", + "latitude_deg": "-23.510387", + "longitude_deg": "-54.251695", + "elevation_ft": "1253", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Itaquiraí", + "scheduled_service": "no", + "gps_code": "SJTK", + "local_code": "MS0185" + }, + { + "id": "337983", + "ident": "BR-1295", + "type": "small_airport", + "name": "Fazenda Triunfo Airport", + "latitude_deg": "-9.175712", + "longitude_deg": "-63.677566", + "elevation_ft": "315", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Candeias do Jamari", + "scheduled_service": "no", + "gps_code": "SJTN", + "local_code": "RO0019" + }, + { + "id": "337984", + "ident": "BR-1296", + "type": "small_airport", + "name": "Tabuleiro III Airport", + "latitude_deg": "-13.175612", + "longitude_deg": "-45.699831", + "elevation_ft": "2635", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SJTO", + "local_code": "BA0123" + }, + { + "id": "337985", + "ident": "BR-1297", + "type": "small_airport", + "name": "Delazzeri Airport", + "latitude_deg": "-13.698255", + "longitude_deg": "-59.259863", + "elevation_ft": "2031", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campos de Júlio", + "scheduled_service": "no", + "gps_code": "SJTQ", + "local_code": "MT0222" + }, + { + "id": "337986", + "ident": "BR-1298", + "type": "small_airport", + "name": "Fazenda Timbaúba I Airport", + "latitude_deg": "-12.527793", + "longitude_deg": "-46.186323", + "elevation_ft": "2959", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Aurora do Tocantins", + "scheduled_service": "no", + "gps_code": "SJTR", + "local_code": "TO0032" + }, + { + "id": "338002", + "ident": "BR-1299", + "type": "small_airport", + "name": "Fazenda ABC Airport", + "latitude_deg": "-15.373881", + "longitude_deg": "-46.331303", + "elevation_ft": "1923", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Buritis", + "scheduled_service": "no", + "gps_code": "SJUA", + "local_code": "MG0133" + }, + { + "id": "338004", + "ident": "BR-1300", + "type": "small_airport", + "name": "Fazenda Santa Cruz Airport", + "latitude_deg": "-15.372045", + "longitude_deg": "-48.206596", + "elevation_ft": "2497", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Padre Bernardo", + "scheduled_service": "no", + "gps_code": "SJUC", + "local_code": "GO0087" + }, + { + "id": "338006", + "ident": "BR-1301", + "type": "small_airport", + "name": "Fazenda Uirapuru Airport", + "latitude_deg": "-6.856346", + "longitude_deg": "-48.439722", + "elevation_ft": "679", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Araguanã", + "scheduled_service": "no", + "gps_code": "SJUI", + "local_code": "TO0033" + }, + { + "id": "338007", + "ident": "BR-1302", + "type": "small_airport", + "name": "Fazenda Juruna Airport", + "latitude_deg": "-10.407778", + "longitude_deg": "-53.514167", + "elevation_ft": "1178", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Peixoto de Azevedo", + "scheduled_service": "no", + "gps_code": "SJUJ", + "local_code": "MT0226" + }, + { + "id": "338008", + "ident": "BR-1303", + "type": "heliport", + "name": "Maximus Helipad", + "latitude_deg": "-27.414576", + "longitude_deg": "-49.601694", + "elevation_ft": "1345", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Ituporanga", + "scheduled_service": "no", + "gps_code": "SJUM", + "local_code": "SC0072" + }, + { + "id": "338009", + "ident": "BR-1304", + "type": "small_airport", + "name": "Fazenda Juscelândia", + "latitude_deg": "-15.294203", + "longitude_deg": "-51.284733", + "elevation_ft": "899", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Jussara", + "scheduled_service": "no", + "gps_code": "SJUO", + "local_code": "GO0088", + "keywords": "Juçara" + }, + { + "id": "338224", + "ident": "BR-1305", + "type": "small_airport", + "name": "Fazenda São Clemente Airport", + "latitude_deg": "-23.118831", + "longitude_deg": "-45.851006", + "elevation_ft": "1827", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São José dos Campos", + "scheduled_service": "no", + "gps_code": "SJUQ", + "local_code": "SP0846" + }, + { + "id": "338290", + "ident": "BR-1306", + "type": "small_airport", + "name": "Fazenda Vitória Airport", + "latitude_deg": "-12.979457", + "longitude_deg": "-55.119951", + "elevation_ft": "1401", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Ubiratã", + "scheduled_service": "no", + "gps_code": "SJUV", + "local_code": "MT0228" + }, + { + "id": "338401", + "ident": "BR-1307", + "type": "small_airport", + "name": "Bugio Airport", + "latitude_deg": "-22.849179", + "longitude_deg": "-50.732591", + "elevation_ft": "1175", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Pedrinhas Paulista", + "scheduled_service": "no", + "gps_code": "SJVB", + "local_code": "SP0218" + }, + { + "id": "338402", + "ident": "BR-1308", + "type": "heliport", + "name": "Vivicon Helipad", + "latitude_deg": "-23.512526", + "longitude_deg": "-46.667247", + "elevation_ft": "2546", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJVC", + "local_code": "SP0669" + }, + { + "id": "338403", + "ident": "BR-1309", + "type": "small_airport", + "name": "Fazenda Santo André IV Airport", + "latitude_deg": "-14.223221", + "longitude_deg": "-53.45986", + "elevation_ft": "1394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Paranatinga", + "scheduled_service": "no", + "gps_code": "SJVD", + "local_code": "MT0483" + }, + { + "id": "338428", + "ident": "BR-1310", + "type": "small_airport", + "name": "Fazenda Gameleira Airport", + "latitude_deg": "-14.708345", + "longitude_deg": "-59.887693", + "elevation_ft": "745", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SJVG", + "local_code": "MT0231" + }, + { + "id": "338430", + "ident": "BR-1311", + "type": "small_airport", + "name": "Vale Europeu Airport", + "latitude_deg": "-26.422639", + "longitude_deg": "-48.876919", + "elevation_ft": "36", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Guaramirim", + "scheduled_service": "no", + "gps_code": "SJVL", + "local_code": "SC0033" + }, + { + "id": "338432", + "ident": "BR-1312", + "type": "small_airport", + "name": "Fazenda Rio Verde Airport", + "latitude_deg": "-7.493227", + "longitude_deg": "-45.505412", + "elevation_ft": "1138", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Loreto", + "scheduled_service": "no", + "gps_code": "SJVQ", + "local_code": "MA0032" + }, + { + "id": "338434", + "ident": "BR-1313", + "type": "small_airport", + "name": "Maicom Manica Airport", + "latitude_deg": "-16.644909", + "longitude_deg": "-47.107984", + "elevation_ft": "2018", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Unaí", + "scheduled_service": "no", + "gps_code": "SJVU", + "local_code": "MG0135" + }, + { + "id": "338435", + "ident": "BR-1314", + "type": "small_airport", + "name": "Fazenda Viviane Airport", + "latitude_deg": "-11.411916", + "longitude_deg": "-49.385943", + "elevation_ft": "735", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Dueré", + "scheduled_service": "no", + "gps_code": "SJVV", + "local_code": "TO0034" + }, + { + "id": "338452", + "ident": "BR-1315", + "type": "small_airport", + "name": "Represa Fazenda Capão da Cruz Airport", + "latitude_deg": "-21.429813", + "longitude_deg": "-47.901572", + "elevation_ft": "1886", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guatapará", + "scheduled_service": "no", + "gps_code": "SJVZ", + "local_code": "SP0219" + }, + { + "id": "338459", + "ident": "BR-1316", + "type": "small_airport", + "name": "Fazenda Bartira Airport", + "latitude_deg": "-22.164531", + "longitude_deg": "-50.964731", + "elevation_ft": "1552", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Rancharia", + "scheduled_service": "no", + "gps_code": "SJWB", + "local_code": "SP0220", + "keywords": "SDQK" + }, + { + "id": "338460", + "ident": "BR-1317", + "type": "heliport", + "name": "RDP Heliport", + "latitude_deg": "-22.99338", + "longitude_deg": "-44.0966", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Mangaratiba", + "scheduled_service": "no", + "gps_code": "SJWD", + "local_code": "RJ0117" + }, + { + "id": "338474", + "ident": "BR-1318", + "type": "heliport", + "name": "Pátio das Américas Helipad", + "latitude_deg": "-23.214322", + "longitude_deg": "-45.909269", + "elevation_ft": "2323", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São José dos Campos", + "scheduled_service": "no", + "gps_code": "SJWM", + "local_code": "SP0674" + }, + { + "id": "338477", + "ident": "BR-1319", + "type": "small_airport", + "name": "Joule Agropecuária Airport", + "latitude_deg": "-13.674462", + "longitude_deg": "-51.115522", + "elevation_ft": "738", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cocalinho", + "scheduled_service": "no", + "gps_code": "SJWO", + "local_code": "MT0233" + }, + { + "id": "338480", + "ident": "BR-1320", + "type": "small_airport", + "name": "Fazenda Tucumã Airport", + "latitude_deg": "-13.632205", + "longitude_deg": "-45.798729", + "elevation_ft": "2792", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Correntina", + "scheduled_service": "no", + "gps_code": "SJWT", + "local_code": "BA0126" + }, + { + "id": "338485", + "ident": "BR-1321", + "type": "heliport", + "name": "Dimensão Indústria Heliport", + "latitude_deg": "-2.658649", + "longitude_deg": "-44.301274", + "elevation_ft": "92", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "São Luís", + "scheduled_service": "no", + "gps_code": "SJWU", + "local_code": "MA0066" + }, + { + "id": "338489", + "ident": "BR-1322", + "type": "small_airport", + "name": "Clube de Aviação de Itaúna Airport", + "latitude_deg": "-20.07486", + "longitude_deg": "-44.653516", + "elevation_ft": "2641", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Itaúna", + "scheduled_service": "no", + "gps_code": "SJXA", + "local_code": "MG0137" + }, + { + "id": "338628", + "ident": "BR-1323", + "type": "small_airport", + "name": "Fazenda Rancho Bonito Airport", + "latitude_deg": "-21.09687", + "longitude_deg": "-56.564797", + "elevation_ft": "1260", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bonito", + "scheduled_service": "no", + "gps_code": "SJXB", + "local_code": "MS0190" + }, + { + "id": "338629", + "ident": "BR-1324", + "type": "heliport", + "name": "Grupo Petrópolis Itapissuma Heliport", + "latitude_deg": "-7.791467", + "longitude_deg": "-34.925076", + "elevation_ft": "187", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Itapissuma", + "scheduled_service": "no", + "gps_code": "SJXH", + "local_code": "PE0065" + }, + { + "id": "338666", + "ident": "BR-1325", + "type": "heliport", + "name": "Niquini Heliport", + "latitude_deg": "-19.961682", + "longitude_deg": "-44.071752", + "elevation_ft": "3419", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Betim", + "scheduled_service": "no", + "gps_code": "SJXN", + "local_code": "MG0247" + }, + { + "id": "338667", + "ident": "BR-1326", + "type": "small_airport", + "name": "Grupo DH Airport", + "latitude_deg": "-14.295406", + "longitude_deg": "-45.553271", + "elevation_ft": "2736", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Jaborandi", + "scheduled_service": "no", + "gps_code": "SJXO", + "local_code": "BA0337", + "keywords": "Fazenda Vitória" + }, + { + "id": "350853", + "ident": "BR-1327", + "type": "heliport", + "name": "Kamar Heliport", + "latitude_deg": "-22.937626", + "longitude_deg": "-44.079112", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Mangaratiba", + "scheduled_service": "no", + "gps_code": "SWRJ", + "local_code": "RJ0164" + }, + { + "id": "338670", + "ident": "BR-1328", + "type": "heliport", + "name": "Cargo Park Heliport", + "latitude_deg": "-22.814993", + "longitude_deg": "-43.284245", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SJXQ", + "local_code": "RJ0120" + }, + { + "id": "338671", + "ident": "BR-1329", + "type": "heliport", + "name": "Fazenda Pacu Heliport", + "latitude_deg": "-19.439666", + "longitude_deg": "-44.474894", + "elevation_ft": "2313", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Inhaúma", + "scheduled_service": "no", + "gps_code": "SJXW", + "local_code": "MG0291" + }, + { + "id": "338672", + "ident": "BR-1330", + "type": "heliport", + "name": "BCW Heliport", + "latitude_deg": "-26.799433", + "longitude_deg": "-48.613005", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Penha", + "scheduled_service": "no", + "gps_code": "SJYA", + "local_code": "SC0074" + }, + { + "id": "338673", + "ident": "BR-1331", + "type": "heliport", + "name": "Thabor Heliport", + "latitude_deg": "-23.410858", + "longitude_deg": "-46.670056", + "elevation_ft": "3182", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Caieiras", + "scheduled_service": "no", + "gps_code": "SJYB", + "local_code": "SP0680" + }, + { + "id": "338674", + "ident": "BR-1332", + "type": "small_airport", + "name": "Fazenda Yvy-Pita Airport", + "latitude_deg": "-22.891867", + "longitude_deg": "-54.664601", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Juti", + "scheduled_service": "no", + "gps_code": "SJYC", + "local_code": "MS0194" + }, + { + "id": "339017", + "ident": "BR-1333", + "type": "heliport", + "name": "Fazenda Jequitiba Heliport.", + "latitude_deg": "-23.253767", + "longitude_deg": "-47.606024", + "elevation_ft": "1962", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Porto Feliz", + "scheduled_service": "no", + "gps_code": "SJYY", + "local_code": "SP0683" + }, + { + "id": "339018", + "ident": "BR-1334", + "type": "small_airport", + "name": "Fazenda Cima Airport", + "latitude_deg": "-12.990556", + "longitude_deg": "-58.609167", + "elevation_ft": "1611", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SJZN", + "local_code": "MT0238" + }, + { + "id": "339019", + "ident": "BR-1335", + "type": "small_airport", + "name": "Zi Viol Airport", + "latitude_deg": "-20.971561", + "longitude_deg": "-54.070751", + "elevation_ft": "1650", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "gps_code": "SJZO", + "local_code": "MS0199" + }, + { + "id": "339020", + "ident": "BR-1336", + "type": "small_airport", + "name": "Fazenda Bom Retiro Airport", + "latitude_deg": "-29.308056", + "longitude_deg": "-56.192778", + "elevation_ft": "230", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Itaqui", + "scheduled_service": "no", + "gps_code": "SJZQ", + "local_code": "RS0080" + }, + { + "id": "339021", + "ident": "BR-1337", + "type": "small_airport", + "name": "Fazenda Rodeio Airport", + "latitude_deg": "-12.128955", + "longitude_deg": "-63.008976", + "elevation_ft": "512", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "São Miguel do Guaporé", + "scheduled_service": "no", + "gps_code": "SJZR", + "local_code": "RO0049" + }, + { + "id": "339022", + "ident": "BR-1338", + "type": "heliport", + "name": "Abreu Rocha Helipad", + "latitude_deg": "-24.007115", + "longitude_deg": "-46.414715", + "elevation_ft": "302", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Praia Grande", + "scheduled_service": "no", + "gps_code": "SJZX", + "local_code": "SP0848" + }, + { + "id": "339524", + "ident": "BR-1339", + "type": "heliport", + "name": "Nuclep Heliport", + "latitude_deg": "-22.883422", + "longitude_deg": "-43.826271", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Itaguaí", + "scheduled_service": "no", + "gps_code": "SNAT", + "local_code": "RJ0186" + }, + { + "id": "339791", + "ident": "BR-1340", + "type": "small_airport", + "name": "Kapoto Airport", + "latitude_deg": "-9.763595", + "longitude_deg": "-53.248281", + "elevation_ft": "1102", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Peixoto de Azevedo", + "scheduled_service": "no", + "gps_code": "SNIK", + "local_code": "MT0254" + }, + { + "id": "339792", + "ident": "BR-1341", + "type": "heliport", + "name": "HBR Lead Corporate Faria Lima Helipad", + "latitude_deg": "-23.591923", + "longitude_deg": "-46.680157", + "elevation_ft": "2608", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SNIL", + "local_code": "SP0847" + }, + { + "id": "339795", + "ident": "BR-1342", + "type": "small_airport", + "name": "Cialne Umirim Airport", + "latitude_deg": "-3.694658", + "longitude_deg": "-39.408527", + "elevation_ft": "285", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Umirim", + "scheduled_service": "no", + "gps_code": "SNJC", + "local_code": "CE0023" + }, + { + "id": "339796", + "ident": "BR-1343", + "type": "small_airport", + "name": "Fazenda Fresadora Airport", + "latitude_deg": "-5.045325", + "longitude_deg": "-44.046959", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Gonçalves Dias", + "scheduled_service": "no", + "gps_code": "SNJE", + "local_code": "MA0105" + }, + { + "id": "339797", + "ident": "BR-1344", + "type": "heliport", + "name": "Júlio Simões - Matriz Helipad", + "latitude_deg": "-23.541819", + "longitude_deg": "-46.231397", + "elevation_ft": "2503", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Moji das Cruzes", + "scheduled_service": "no", + "gps_code": "SNJS", + "local_code": "SP0708" + }, + { + "id": "339798", + "ident": "BR-1345", + "type": "heliport", + "name": "The One Office Tower Taubaté Helipad", + "latitude_deg": "-23.029385", + "longitude_deg": "-45.578756", + "elevation_ft": "2116", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Taubaté", + "scheduled_service": "no", + "gps_code": "SNJT", + "local_code": "SP0709" + }, + { + "id": "339803", + "ident": "BR-1346", + "type": "heliport", + "name": "Ibiza Blumenau Helipad", + "latitude_deg": "-26.914622", + "longitude_deg": "-49.088014", + "elevation_ft": "348", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Blumenau", + "scheduled_service": "no", + "gps_code": "SNJY", + "local_code": "SC0102" + }, + { + "id": "339805", + "ident": "BR-1347", + "type": "heliport", + "name": "Joatinga Heliport", + "latitude_deg": "-23.015605", + "longitude_deg": "-43.295676", + "elevation_ft": "85", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SNJZ", + "local_code": "RJ0129" + }, + { + "id": "339806", + "ident": "BR-1348", + "type": "heliport", + "name": "Green Metals Heliport", + "latitude_deg": "-20.151853", + "longitude_deg": "-44.144302", + "elevation_ft": "2730", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Brumadinho", + "scheduled_service": "no", + "gps_code": "SNKG", + "local_code": "MG0257" + }, + { + "id": "339808", + "ident": "BR-1349", + "type": "heliport", + "name": "Leonardo da Vincí Helipad", + "latitude_deg": "-23.532257", + "longitude_deg": "-47.465787", + "elevation_ft": "2280", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sorocaba", + "scheduled_service": "no", + "gps_code": "SNKL", + "local_code": "SP0711" + }, + { + "id": "339809", + "ident": "BR-1350", + "type": "heliport", + "name": "MJ Heliport", + "latitude_deg": "-25.440477", + "longitude_deg": "-49.391439", + "elevation_ft": "3038", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Campo Largo", + "scheduled_service": "no", + "gps_code": "SNKM", + "local_code": "PR0129" + }, + { + "id": "339822", + "ident": "BR-1351", + "type": "small_airport", + "name": "Fazenda Quebraxo Airport", + "latitude_deg": "-21.083071", + "longitude_deg": "-57.656397", + "elevation_ft": "302", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SNKQ", + "local_code": "MS0213" + }, + { + "id": "339823", + "ident": "BR-1352", + "type": "small_airport", + "name": "Fazenda Viçosa Airport", + "latitude_deg": "-23.137568", + "longitude_deg": "-53.84319", + "elevation_ft": "968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Naviraí", + "scheduled_service": "no", + "gps_code": "SNKT", + "local_code": "MS0214" + }, + { + "id": "340044", + "ident": "BR-1353", + "type": "small_airport", + "name": "Fazenda Marli Airport", + "latitude_deg": "-19.540318", + "longitude_deg": "-53.720237", + "elevation_ft": "1985", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Camapuã", + "scheduled_service": "no", + "gps_code": "SJMA", + "local_code": "MS0176" + }, + { + "id": "340050", + "ident": "BR-1354", + "type": "heliport", + "name": "Blue Tower Helipad", + "latitude_deg": "-21.762217", + "longitude_deg": "-41.330164", + "elevation_ft": "243", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Campos dos Goytacazes", + "scheduled_service": "no", + "keywords": "SJXZ" + }, + { + "id": "340051", + "ident": "BR-1355", + "type": "small_airport", + "name": "Fazenda Santa Clara Airport", + "latitude_deg": "-18.937671", + "longitude_deg": "-55.201856", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Verde de Mato Grosso", + "scheduled_service": "no", + "gps_code": "SJZM", + "local_code": "MS0198" + }, + { + "id": "37988", + "ident": "BR-1356", + "type": "closed", + "name": "Nova Mutum Airport", + "latitude_deg": "-13.82", + "longitude_deg": "-56.1", + "elevation_ft": "1519", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Mutum", + "scheduled_service": "no" + }, + { + "id": "340054", + "ident": "BR-1357", + "type": "small_airport", + "name": "J.C. Peralta Airstrip", + "latitude_deg": "-4.324334", + "longitude_deg": "-56.088057", + "elevation_ft": "121", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SNEJ", + "local_code": "PA0087" + }, + { + "id": "340055", + "ident": "BR-1358", + "type": "small_airport", + "name": "Fazenda Joá Airport", + "latitude_deg": "-22.561137", + "longitude_deg": "-54.963828", + "elevation_ft": "1585", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Caarapó", + "scheduled_service": "no", + "gps_code": "SNEL", + "local_code": "MS0204" + }, + { + "id": "340056", + "ident": "BR-1359", + "type": "small_airport", + "name": "Fazenda São Marcos Airport", + "latitude_deg": "-15.467652", + "longitude_deg": "-59.943735", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SNKZ", + "local_code": "MT0610" + }, + { + "id": "340220", + "ident": "BR-1360", + "type": "small_airport", + "name": "Fazenda Magdalena Airstrip", + "latitude_deg": "-9.203051", + "longitude_deg": "-65.708531", + "elevation_ft": "466", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Lábrea", + "scheduled_service": "no", + "gps_code": "SNLB", + "local_code": "AM0038" + }, + { + "id": "340221", + "ident": "BR-1361", + "type": "small_airport", + "name": "Fazenda Três Flechas Airport", + "latitude_deg": "-10.0812", + "longitude_deg": "-51.888582", + "elevation_ft": "951", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Rica", + "scheduled_service": "no", + "gps_code": "SNLF", + "local_code": "MT0257" + }, + { + "id": "340223", + "ident": "BR-1362", + "type": "heliport", + "name": "Ilha do Almeida Heliport", + "latitude_deg": "-23.038093", + "longitude_deg": "-44.341979", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra dos Reis", + "scheduled_service": "no", + "gps_code": "SNLH", + "local_code": "RJ0130" + }, + { + "id": "340227", + "ident": "BR-1363", + "type": "small_airport", + "name": "Fazenda Campo Aliancinha Airstrip", + "latitude_deg": "-18.605663", + "longitude_deg": "-56.214548", + "elevation_ft": "397", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SNLJ", + "local_code": "MS0216" + }, + { + "id": "340422", + "ident": "BR-1364", + "type": "heliport", + "name": "Trindade Heliport", + "latitude_deg": "-20.50978", + "longitude_deg": "-29.309304", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Vitória", + "scheduled_service": "no" + }, + { + "id": "340445", + "ident": "BR-1365", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-19.418741", + "longitude_deg": "-56.666555", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SNMB", + "local_code": "MS0217" + }, + { + "id": "340452", + "ident": "BR-1366", + "type": "small_airport", + "name": "Acácio Favacho Airport", + "latitude_deg": "1.560602", + "longitude_deg": "-50.770805", + "elevation_ft": "36", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Pracuúba", + "scheduled_service": "no", + "gps_code": "SNMS", + "local_code": "AP0013" + }, + { + "id": "340455", + "ident": "BR-1367", + "type": "small_airport", + "name": "Pista Maranhense", + "latitude_deg": "-5.353282", + "longitude_deg": "-57.474482", + "elevation_ft": "381", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SD2A", + "local_code": "PA0098", + "keywords": "SNMS" + }, + { + "id": "340462", + "ident": "BR-1368", + "type": "heliport", + "name": "Sítio Baronesa Heliport", + "latitude_deg": "-22.718962", + "longitude_deg": "-45.615907", + "elevation_ft": "5728", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campos do Jordão", + "scheduled_service": "no", + "gps_code": "SNMO", + "local_code": "SP0714" + }, + { + "id": "340477", + "ident": "BR-1369", + "type": "small_airport", + "name": "Fazenda Parceiro Airport", + "latitude_deg": "-10.558475", + "longitude_deg": "-45.447217", + "elevation_ft": "2582", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Corrente", + "scheduled_service": "no", + "gps_code": "SNMW", + "local_code": "PI0074" + }, + { + "id": "340481", + "ident": "BR-1370", + "type": "small_airport", + "name": "Fazenda Modelo Airport", + "latitude_deg": "-15.473087", + "longitude_deg": "-54.914582", + "elevation_ft": "2280", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Verde", + "scheduled_service": "no", + "keywords": "SNMW" + }, + { + "id": "340483", + "ident": "BR-1371", + "type": "heliport", + "name": "Piraquê II Heliport", + "latitude_deg": "-22.741912", + "longitude_deg": "-43.62203", + "elevation_ft": "75", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Queimados", + "scheduled_service": "no", + "gps_code": "SNND", + "local_code": "RJ0131" + }, + { + "id": "340492", + "ident": "BR-1372", + "type": "heliport", + "name": "Ellece Helipad", + "latitude_deg": "-23.472148", + "longitude_deg": "-46.432632", + "elevation_ft": "2559", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarulhos", + "scheduled_service": "no", + "gps_code": "SNRE", + "local_code": "SP0725" + }, + { + "id": "340493", + "ident": "BR-1373", + "type": "small_airport", + "name": "João Fonseca Airport", + "latitude_deg": "-7.443862", + "longitude_deg": "-70.019172", + "elevation_ft": "459", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Envira", + "scheduled_service": "no", + "gps_code": "SNRH", + "local_code": "AM0039" + }, + { + "id": "340494", + "ident": "BR-1374", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-23.299174", + "longitude_deg": "-50.617386", + "elevation_ft": "1978", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Cornélio Procópio", + "scheduled_service": "no", + "keywords": "SNRT" + }, + { + "id": "340495", + "ident": "BR-1375", + "type": "small_airport", + "name": "Hilário Grandi Airport", + "latitude_deg": "-16.542942", + "longitude_deg": "-47.175992", + "elevation_ft": "2828", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Unaí", + "scheduled_service": "no", + "gps_code": "SNSA", + "local_code": "MG0294" + }, + { + "id": "340497", + "ident": "BR-1376", + "type": "heliport", + "name": "Betel Heliport", + "latitude_deg": "-22.914938", + "longitude_deg": "-43.668809", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SNSB", + "local_code": "RJ0135" + }, + { + "id": "340498", + "ident": "BR-1377", + "type": "heliport", + "name": "Edifício Sede Direcional Engenharia Helipad", + "latitude_deg": "-19.92723", + "longitude_deg": "-43.922342", + "elevation_ft": "2979", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SNSD", + "local_code": "MG0260" + }, + { + "id": "340648", + "ident": "BR-1378", + "type": "heliport", + "name": "Passargada Heliport", + "latitude_deg": "-16.48786", + "longitude_deg": "-39.068282", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Porto Seguro", + "scheduled_service": "no", + "keywords": "SNSD" + }, + { + "id": "340649", + "ident": "BR-1379", + "type": "small_airport", + "name": "Central Ferraz Airport", + "latitude_deg": "-21.868902", + "longitude_deg": "-50.308953", + "elevation_ft": "1634", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Herculândia", + "scheduled_service": "no", + "gps_code": "SNSK", + "local_code": "SP0238" + }, + { + "id": "340650", + "ident": "BR-1380", + "type": "heliport", + "name": "Henrimar Táxi Aéreo Heliport", + "latitude_deg": "-12.869906", + "longitude_deg": "-38.365602", + "elevation_ft": "180", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Salvador", + "scheduled_service": "no", + "gps_code": "SNSN", + "local_code": "BA0215" + }, + { + "id": "340844", + "ident": "BR-1381", + "type": "small_airport", + "name": "Fazenda São Domingos Airport", + "latitude_deg": "-20.737708", + "longitude_deg": "-53.293808", + "elevation_ft": "1506", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SNSV", + "local_code": "MS0228" + }, + { + "id": "340845", + "ident": "BR-1382", + "type": "heliport", + "name": "Apodi Quixeré Heliport", + "latitude_deg": "-5.042267", + "longitude_deg": "-37.778573", + "elevation_ft": "410", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Quixeré", + "scheduled_service": "no", + "gps_code": "SNSX", + "local_code": "CE0054" + }, + { + "id": "340846", + "ident": "BR-1383", + "type": "small_airport", + "name": "Gercino Coelho Airport", + "latitude_deg": "-11.275317", + "longitude_deg": "-45.237934", + "elevation_ft": "2618", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Formosa do Rio Preto", + "scheduled_service": "no", + "gps_code": "SNTG", + "local_code": "BA0143" + }, + { + "id": "340849", + "ident": "BR-1384", + "type": "heliport", + "name": "Baltt Helipad", + "latitude_deg": "-27.009924", + "longitude_deg": "-48.624113", + "elevation_ft": "11", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Balneário Camboriú", + "scheduled_service": "no", + "gps_code": "SNTJ", + "local_code": "SC0081" + }, + { + "id": "340852", + "ident": "BR-1385", + "type": "small_airport", + "name": "Fazenda Treze Estrelas Airport", + "latitude_deg": "-7.219414", + "longitude_deg": "-49.168588", + "elevation_ft": "774", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Araguaína", + "scheduled_service": "no", + "gps_code": "SNTL", + "local_code": "TO0039" + }, + { + "id": "340856", + "ident": "BR-1386", + "type": "heliport", + "name": "Teston Heliport", + "latitude_deg": "-23.656956", + "longitude_deg": "-52.539534", + "elevation_ft": "1457", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Cianorte", + "scheduled_service": "no", + "gps_code": "SNTT", + "local_code": "PR0130" + }, + { + "id": "340975", + "ident": "BR-1387", + "type": "heliport", + "name": "Gran Palazzo Helipad", + "latitude_deg": "-27.110488", + "longitude_deg": "-52.615993", + "elevation_ft": "2575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Chapecó", + "scheduled_service": "no", + "gps_code": "SNTZ", + "local_code": "SC0082" + }, + { + "id": "340977", + "ident": "BR-1388", + "type": "small_airport", + "name": "Fazenda Arruda Ramos Airstrip", + "latitude_deg": "-15.789354", + "longitude_deg": "-59.023813", + "elevation_ft": "922", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Esperidião", + "scheduled_service": "no", + "gps_code": "SNUD", + "local_code": "MT0268" + }, + { + "id": "340979", + "ident": "BR-1389", + "type": "heliport", + "name": "Uberlândia Business Tower Helipad", + "latitude_deg": "-18.90855", + "longitude_deg": "-48.261362", + "elevation_ft": "3110", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberlândia", + "scheduled_service": "no", + "gps_code": "SNUL", + "local_code": "MG0261" + }, + { + "id": "340982", + "ident": "BR-1390", + "type": "small_airport", + "name": "Rancho Bela Vista Airport", + "latitude_deg": "-13.509056", + "longitude_deg": "-56.63685", + "elevation_ft": "1037", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São José do Rio Claro", + "scheduled_service": "no", + "local_code": "MT0270" + }, + { + "id": "340983", + "ident": "BR-1391", + "type": "small_airport", + "name": "Fazenda Morada Bela Airport", + "latitude_deg": "-18.42718", + "longitude_deg": "-45.364218", + "elevation_ft": "2070", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Morada Nova de Minas", + "scheduled_service": "no", + "gps_code": "SNUW", + "local_code": "MG0165" + }, + { + "id": "341110", + "ident": "BR-1392", + "type": "small_airport", + "name": "Fazenda Senhora Aparecida Airstrip", + "latitude_deg": "-14.703746", + "longitude_deg": "-58.543031", + "elevation_ft": "1841", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tangará da Serra", + "scheduled_service": "no", + "gps_code": "SNVJ", + "local_code": "MT0272" + }, + { + "id": "341114", + "ident": "BR-1393", + "type": "small_airport", + "name": "Fazenda Ventura III Airstrip", + "latitude_deg": "-13.166088", + "longitude_deg": "-46.194853", + "elevation_ft": "3297", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SNVM", + "local_code": "BA0146" + }, + { + "id": "341117", + "ident": "BR-1394", + "type": "small_airport", + "name": "Fazenda Ventura II Airstrip", + "latitude_deg": "-13.179712", + "longitude_deg": "-46.238848", + "elevation_ft": "3219", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SNVK", + "local_code": "BA0145" + }, + { + "id": "341118", + "ident": "BR-1395", + "type": "small_airport", + "name": "Fazenda Vitória Santa Airport", + "latitude_deg": "-18.93304", + "longitude_deg": "-50.373019", + "elevation_ft": "1483", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Santa Vitória", + "scheduled_service": "no", + "gps_code": "SNVN", + "local_code": "MG0166" + }, + { + "id": "341128", + "ident": "BR-1396", + "type": "small_airport", + "name": "Fazenda Paraíso Airstrip", + "latitude_deg": "-17.580049", + "longitude_deg": "-44.96227", + "elevation_ft": "1781", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Várzea da Palma", + "scheduled_service": "no", + "gps_code": "SNVP", + "local_code": "MG0319" + }, + { + "id": "341129", + "ident": "BR-1397", + "type": "small_airport", + "name": "Fazenda União Airstrip", + "latitude_deg": "-20.668966", + "longitude_deg": "-52.903685", + "elevation_ft": "1496", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Brasilândia", + "scheduled_service": "no", + "gps_code": "SNVQ", + "local_code": "MS0522" + }, + { + "id": "341130", + "ident": "BR-1398", + "type": "heliport", + "name": "Albor Heliport", + "latitude_deg": "-26.559021", + "longitude_deg": "-48.69965", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Araquari", + "scheduled_service": "no", + "gps_code": "SNWA", + "local_code": "SC0084" + }, + { + "id": "341131", + "ident": "BR-1399", + "type": "small_airport", + "name": "Bom Sossego Airport", + "latitude_deg": "-16.381111", + "longitude_deg": "-39.081111", + "elevation_ft": "207", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Porto Seguro", + "scheduled_service": "no", + "gps_code": "SNWB", + "local_code": "BA0148" + }, + { + "id": "341133", + "ident": "BR-1400", + "type": "small_airport", + "name": "Clube Estância Ouro Verde Airport", + "latitude_deg": "-7.046264", + "longitude_deg": "-34.912914", + "elevation_ft": "249", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Santa Rita", + "scheduled_service": "no", + "gps_code": "SNWE", + "local_code": "PB0016" + }, + { + "id": "341134", + "ident": "BR-1401", + "type": "heliport", + "name": "Marcelo Machado Heliport", + "latitude_deg": "-21.786158", + "longitude_deg": "-43.397058", + "elevation_ft": "3045", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Juiz de Fora", + "scheduled_service": "no", + "gps_code": "SNWM", + "local_code": "MG0262" + }, + { + "id": "341138", + "ident": "BR-1402", + "type": "small_airport", + "name": "Fazenda Parecis Airport", + "latitude_deg": "-13.913668", + "longitude_deg": "-57.479594", + "elevation_ft": "1926", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "gps_code": "SNWP", + "local_code": "MT0276" + }, + { + "id": "341146", + "ident": "BR-1403", + "type": "seaplane_base", + "name": "M Executive Taubaté Heliport", + "latitude_deg": "-23.058608", + "longitude_deg": "-45.606405", + "elevation_ft": "1909", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Taubaté", + "scheduled_service": "no", + "gps_code": "SNWT", + "local_code": "SP0735" + }, + { + "id": "341147", + "ident": "BR-1404", + "type": "small_airport", + "name": "Fazenda Vista Alegre Airport", + "latitude_deg": "-20.847845", + "longitude_deg": "-54.093333", + "elevation_ft": "1503", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "gps_code": "SNWX", + "local_code": "MS0238", + "keywords": "Fazenda Espírito Santo" + }, + { + "id": "341149", + "ident": "BR-1405", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-9.38165", + "longitude_deg": "-50.566145", + "elevation_ft": "696", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santana do Araguaia", + "scheduled_service": "no", + "gps_code": "SNWZ", + "local_code": "PA0160" + }, + { + "id": "341150", + "ident": "BR-1406", + "type": "heliport", + "name": "Igarashi 2 Heliport", + "latitude_deg": "-16.08033", + "longitude_deg": "-47.518494", + "elevation_ft": "3360", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Cristalina", + "scheduled_service": "no", + "gps_code": "SNXF", + "local_code": "GO0167" + }, + { + "id": "341151", + "ident": "BR-1407", + "type": "small_airport", + "name": "Alberto Ramos Airport", + "latitude_deg": "-19.087031", + "longitude_deg": "-44.328377", + "elevation_ft": "2477", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Cordisburgo", + "scheduled_service": "no", + "gps_code": "SNXI", + "local_code": "MG0168" + }, + { + "id": "341153", + "ident": "BR-1408", + "type": "heliport", + "name": "Superluna Heliport", + "latitude_deg": "-19.997348", + "longitude_deg": "-44.17911", + "elevation_ft": "2513", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Betim", + "scheduled_service": "no", + "gps_code": "SNXL", + "local_code": "MG0266" + }, + { + "id": "341155", + "ident": "BR-1409", + "type": "heliport", + "name": "Velo Città Heliport", + "latitude_deg": "-22.285185", + "longitude_deg": "-46.85111", + "elevation_ft": "2369", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mogi Guaçu", + "scheduled_service": "no", + "gps_code": "SNXO", + "local_code": "SP0738" + }, + { + "id": "341156", + "ident": "BR-1410", + "type": "small_airport", + "name": "Fazenda Gruta Azul Airport", + "latitude_deg": "-20.478723", + "longitude_deg": "-55.325597", + "elevation_ft": "951", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Dois Irmãos do Buriti", + "scheduled_service": "no", + "gps_code": "SNXU", + "local_code": "MS0239" + }, + { + "id": "341236", + "ident": "BR-1411", + "type": "heliport", + "name": "Garça Branca Heliport", + "latitude_deg": "-23.640093", + "longitude_deg": "-46.835046", + "elevation_ft": "2516", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Embu", + "scheduled_service": "no", + "keywords": "SNXZ" + }, + { + "id": "341237", + "ident": "BR-1412", + "type": "heliport", + "name": "Ilha dos Sonhos Helipad", + "latitude_deg": "-22.969675", + "longitude_deg": "-44.315844", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra dos Reis", + "scheduled_service": "no", + "gps_code": "SNYD", + "local_code": "RJ0333" + }, + { + "id": "341238", + "ident": "BR-1413", + "type": "heliport", + "name": "Josidith II Heliport", + "latitude_deg": "-16.614804", + "longitude_deg": "-48.7896", + "elevation_ft": "3550", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Leopoldo de Bulhões", + "scheduled_service": "no", + "gps_code": "SNYI", + "local_code": "GO0168" + }, + { + "id": "341239", + "ident": "BR-1414", + "type": "small_airport", + "name": "Isaias Luiz Pereira Airport", + "latitude_deg": "-13.026231", + "longitude_deg": "-55.239713", + "elevation_ft": "1427", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Ubiratã", + "scheduled_service": "no", + "local_code": "MT0277", + "keywords": "Agropera Aviação Agrícola, Chacara, SNYK" + }, + { + "id": "341256", + "ident": "BR-1415", + "type": "heliport", + "name": "New York Tower Helipad", + "latitude_deg": "-21.228372", + "longitude_deg": "-50.437095", + "elevation_ft": "299", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araçatuba", + "scheduled_service": "no", + "gps_code": "SNYN", + "local_code": "SP0739" + }, + { + "id": "341258", + "ident": "BR-1416", + "type": "heliport", + "name": "Hospital Metropolitano Oeste Helipad", + "latitude_deg": "-8.072529", + "longitude_deg": "-34.950846", + "elevation_ft": "128", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Recife", + "scheduled_service": "no", + "local_code": "PE0072", + "keywords": "SNYN, Pelópidas Silveira" + }, + { + "id": "341259", + "ident": "BR-1417", + "type": "small_airport", + "name": "Fazenda Rio Preto Airport", + "latitude_deg": "-21.37893", + "longitude_deg": "-50.689537", + "elevation_ft": "1604", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guararapes", + "scheduled_service": "no", + "gps_code": "SNYO", + "local_code": "SP0240" + }, + { + "id": "341260", + "ident": "BR-1418", + "type": "heliport", + "name": "Parque Empresarial Campinas Helipad", + "latitude_deg": "-22.839057", + "longitude_deg": "-47.034692", + "elevation_ft": "2152", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SNYQ", + "local_code": "SP0740" + }, + { + "id": "341261", + "ident": "BR-1419", + "type": "small_airport", + "name": "Fazenda Rio 18 Airport", + "latitude_deg": "-8.43846", + "longitude_deg": "-51.284519", + "elevation_ft": "1650", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Cumaru do Norte", + "scheduled_service": "no", + "gps_code": "SNYZ", + "local_code": "PA0119" + }, + { + "id": "341287", + "ident": "BR-1420", + "type": "heliport", + "name": "CICC Helipad", + "latitude_deg": "-22.909355", + "longitude_deg": "-43.199401", + "elevation_ft": "89", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SNYC", + "local_code": "RJ0140" + }, + { + "id": "341362", + "ident": "BR-1421", + "type": "small_airport", + "name": "Fazenda Cervinho Airstrip", + "latitude_deg": "-19.660229", + "longitude_deg": "-55.625346", + "elevation_ft": "394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SNZC", + "local_code": "MS0241" + }, + { + "id": "341368", + "ident": "BR-1422", + "type": "small_airport", + "name": "Fazenda Capivara Airport", + "latitude_deg": "-13.391655", + "longitude_deg": "-61.068891", + "elevation_ft": "623", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Pimenteiras do Oeste", + "scheduled_service": "no", + "gps_code": "SNZD", + "local_code": "RO0024" + }, + { + "id": "341373", + "ident": "BR-1423", + "type": "small_airport", + "name": "Fazenda Santa Zélia Airstrip", + "latitude_deg": "-29.300996", + "longitude_deg": "-55.888996", + "elevation_ft": "367", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Itaqui", + "scheduled_service": "no", + "gps_code": "SNZE", + "local_code": "RS0089" + }, + { + "id": "341378", + "ident": "BR-1424", + "type": "small_airport", + "name": "AFG II Airport", + "latitude_deg": "-14.405693", + "longitude_deg": "-58.229595", + "elevation_ft": "1975", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tangará da Serra", + "scheduled_service": "no", + "gps_code": "SNZF", + "local_code": "MT0622" + }, + { + "id": "341391", + "ident": "BR-1425", + "type": "small_airport", + "name": "Fazenda Novo Horizonte Airport", + "latitude_deg": "-15.43218", + "longitude_deg": "-43.911752", + "elevation_ft": "1778", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Jaíba", + "scheduled_service": "no", + "gps_code": "SNZH", + "local_code": "MG0173" + }, + { + "id": "341470", + "ident": "BR-1426", + "type": "heliport", + "name": "Fagulha Heliport", + "latitude_deg": "-3.749456", + "longitude_deg": "-38.458145", + "elevation_ft": "131", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "keywords": "SNZN" + }, + { + "id": "341502", + "ident": "BR-1427", + "type": "heliport", + "name": "Yachthouse 01 Helipad", + "latitude_deg": "-27.007883", + "longitude_deg": "-48.607357", + "elevation_ft": "915", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Balneário Camboriú", + "scheduled_service": "no", + "gps_code": "SNXW", + "local_code": "SC0147" + }, + { + "id": "341503", + "ident": "BR-1428", + "type": "heliport", + "name": "Yachthouse 02 Helipad", + "latitude_deg": "-27.007644", + "longitude_deg": "-48.60697", + "elevation_ft": "915", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Balneário Camboriú", + "scheduled_service": "no", + "gps_code": "SSYM", + "local_code": "SC0149" + }, + { + "id": "341727", + "ident": "BR-1429", + "type": "heliport", + "name": "Santa Helena Heliport", + "latitude_deg": "-23.59851", + "longitude_deg": "-47.441196", + "elevation_ft": "2254", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Votorantim", + "scheduled_service": "no", + "gps_code": "SWHE", + "local_code": "SP0807" + }, + { + "id": "341729", + "ident": "BR-1430", + "type": "small_airport", + "name": "Fazenda Chaparral Airport", + "latitude_deg": "-13.473932", + "longitude_deg": "-45.372463", + "elevation_ft": "2549", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Correntina", + "scheduled_service": "no", + "gps_code": "SWHF", + "local_code": "BA0178" + }, + { + "id": "341779", + "ident": "BR-1431", + "type": "heliport", + "name": "Brazlândia Regional Hospital Helipad", + "latitude_deg": "-15.67611", + "longitude_deg": "-48.204397", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brazlândia", + "scheduled_service": "no" + }, + { + "id": "341780", + "ident": "BR-1432", + "type": "heliport", + "name": "Alvorada Palace Heliport", + "latitude_deg": "-15.792209", + "longitude_deg": "-47.823218", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no" + }, + { + "id": "342026", + "ident": "BR-1433", + "type": "heliport", + "name": "Aqualina Helipad", + "latitude_deg": "-23.079875", + "longitude_deg": "-46.575938", + "elevation_ft": "2657", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Atibaia", + "scheduled_service": "no", + "keywords": "SNEI" + }, + { + "id": "342237", + "ident": "BR-1434", + "type": "small_airport", + "name": "Fazenda Santa Rosália Airport", + "latitude_deg": "-19.723282", + "longitude_deg": "-57.753715", + "elevation_ft": "279", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SNKX", + "local_code": "MS0215" + }, + { + "id": "342247", + "ident": "BR-1435", + "type": "small_airport", + "name": "Fazenda Juá Airstrip", + "latitude_deg": "-4.284744", + "longitude_deg": "-39.940705", + "elevation_ft": "863", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "scheduled_service": "no" + }, + { + "id": "342248", + "ident": "BR-1436", + "type": "small_airport", + "name": "Chave de Ouro Airstrip", + "latitude_deg": "-4.20618", + "longitude_deg": "-38.682795", + "elevation_ft": "285", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Acarape", + "scheduled_service": "no" + }, + { + "id": "342249", + "ident": "BR-1437", + "type": "small_airport", + "name": "Fazenda Jacaju Airport", + "latitude_deg": "-4.602579", + "longitude_deg": "-38.192498", + "elevation_ft": "279", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Boqueirão do Cesário", + "scheduled_service": "no" + }, + { + "id": "342251", + "ident": "BR-1438", + "type": "small_airport", + "name": "Fazenda Riacho Verde Airstrip", + "latitude_deg": "-4.886897", + "longitude_deg": "-39.390892", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Santa Catarina", + "scheduled_service": "no" + }, + { + "id": "342252", + "ident": "BR-1439", + "type": "small_airport", + "name": "Custódio Airport", + "latitude_deg": "-5.185846", + "longitude_deg": "-39.249492", + "elevation_ft": "732", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Quixeramobim", + "scheduled_service": "no", + "gps_code": "SDK4", + "local_code": "CE0140", + "keywords": "Uruquê" + }, + { + "id": "342253", + "ident": "BR-1440", + "type": "small_airport", + "name": "José Ellery Marinho de Góes Airport", + "latitude_deg": "-5.151465", + "longitude_deg": "-39.171473", + "elevation_ft": "697", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Uruquê", + "scheduled_service": "no" + }, + { + "id": "342254", + "ident": "BR-1441", + "type": "closed", + "name": "Limoeiro do Norte Airport", + "latitude_deg": "-5.152301", + "longitude_deg": "-38.139404", + "elevation_ft": "100", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Limoeiro do Norte", + "scheduled_service": "no" + }, + { + "id": "342255", + "ident": "BR-1442", + "type": "small_airport", + "name": "Chapada do Apodi Airport", + "latitude_deg": "-5.122977", + "longitude_deg": "-37.970752", + "elevation_ft": "456", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Quixeré", + "scheduled_service": "no", + "local_code": "CE0118" + }, + { + "id": "342256", + "ident": "BR-1443", + "type": "closed", + "name": "Macáuzinho Airport", + "latitude_deg": "-5.170407", + "longitude_deg": "-36.586049", + "elevation_ft": "141", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Macau", + "scheduled_service": "no" + }, + { + "id": "342274", + "ident": "BR-1444", + "type": "small_airport", + "name": "Campos de Melo Airport", + "latitude_deg": "-6.011487", + "longitude_deg": "-35.291144", + "elevation_ft": "217", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "São José de Mipibu", + "scheduled_service": "no", + "gps_code": "SSCE", + "local_code": "RN0011" + }, + { + "id": "342276", + "ident": "BR-1445", + "type": "closed", + "name": "Poço Branco Airport", + "latitude_deg": "-5.615765", + "longitude_deg": "-35.668551", + "elevation_ft": "240", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Poço Branco", + "scheduled_service": "no" + }, + { + "id": "342277", + "ident": "BR-1446", + "type": "small_airport", + "name": "Senador Pompeu Airport", + "latitude_deg": "-5.567728", + "longitude_deg": "-39.354633", + "elevation_ft": "557", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Senador Pompeu", + "scheduled_service": "no" + }, + { + "id": "342278", + "ident": "BR-1447", + "type": "closed", + "name": "Mombaça North Airport", + "latitude_deg": "-5.716924", + "longitude_deg": "-39.592269", + "elevation_ft": "922", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Mombaça", + "scheduled_service": "no" + }, + { + "id": "342279", + "ident": "BR-1448", + "type": "closed", + "name": "Acopiara Airport", + "latitude_deg": "-6.078748", + "longitude_deg": "-39.473186", + "elevation_ft": "1181", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Acopiara", + "scheduled_service": "no" + }, + { + "id": "342283", + "ident": "BR-1449", + "type": "small_airport", + "name": "Martins Airport", + "latitude_deg": "-6.089291", + "longitude_deg": "-37.925065", + "elevation_ft": "2340", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Martins", + "scheduled_service": "no" + }, + { + "id": "342284", + "ident": "BR-1450", + "type": "small_airport", + "name": "Jucurutu Airport", + "latitude_deg": "-6.074499", + "longitude_deg": "-37.035145", + "elevation_ft": "345", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Jucurutu", + "scheduled_service": "no" + }, + { + "id": "342287", + "ident": "BR-1451", + "type": "closed", + "name": "Tangará Airport", + "latitude_deg": "-6.241092", + "longitude_deg": "-35.804202", + "elevation_ft": "623", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Tangará", + "scheduled_service": "no" + }, + { + "id": "342288", + "ident": "BR-1452", + "type": "closed", + "name": "José Sérgio Maia Airport", + "latitude_deg": "-6.325195", + "longitude_deg": "-37.741503", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Catolé da Rocha", + "scheduled_service": "no" + }, + { + "id": "342289", + "ident": "BR-1453", + "type": "closed", + "name": "Icó Airport", + "latitude_deg": "-6.406915", + "longitude_deg": "-38.899464", + "elevation_ft": "525", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Icó", + "scheduled_service": "no" + }, + { + "id": "342290", + "ident": "BR-1454", + "type": "small_airport", + "name": "Cedro Airport", + "latitude_deg": "-6.610627", + "longitude_deg": "-39.04927", + "elevation_ft": "935", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Cedro", + "scheduled_service": "no" + }, + { + "id": "342291", + "ident": "BR-1455", + "type": "closed", + "name": "Orós Airport", + "latitude_deg": "-6.252312", + "longitude_deg": "-38.914457", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Orós", + "scheduled_service": "no" + }, + { + "id": "342312", + "ident": "BR-1456", + "type": "heliport", + "name": "Reserva Mangabeiras Heliport", + "latitude_deg": "-11.248897", + "longitude_deg": "-37.336392", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SE", + "municipality": "Estância", + "scheduled_service": "no", + "gps_code": "SITW", + "local_code": "SE0005" + }, + { + "id": "342313", + "ident": "BR-1457", + "type": "small_airport", + "name": "Fazenda Yara Airport", + "latitude_deg": "-21.065692", + "longitude_deg": "-54.114186", + "elevation_ft": "1325", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "keywords": "SIYX" + }, + { + "id": "342329", + "ident": "BR-1458", + "type": "small_airport", + "name": "Fazenda Chapadinha Airport", + "latitude_deg": "-29.650909", + "longitude_deg": "-54.386115", + "elevation_ft": "407", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "São Pedro do Sul", + "scheduled_service": "no", + "keywords": "SJCS" + }, + { + "id": "342330", + "ident": "BR-1459", + "type": "small_airport", + "name": "SJ Agropecuária Airstrip", + "latitude_deg": "-13.694265", + "longitude_deg": "-45.888133", + "elevation_ft": "2848", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Correntina", + "scheduled_service": "no", + "gps_code": "SJCU", + "local_code": "BA0344" + }, + { + "id": "342331", + "ident": "BR-1460", + "type": "small_airport", + "name": "Pilar do Sul Airstrip", + "latitude_deg": "-23.83405", + "longitude_deg": "-47.71938", + "elevation_ft": "2480", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Pilar do Sul", + "scheduled_service": "no" + }, + { + "id": "342374", + "ident": "BR-1461", + "type": "closed", + "name": "Amambaí Airport", + "latitude_deg": "-23.143458", + "longitude_deg": "-54.585485", + "elevation_ft": "1542", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Amambaí", + "scheduled_service": "no", + "keywords": "SSAM" + }, + { + "id": "342376", + "ident": "BR-1462", + "type": "heliport", + "name": "Fazenda Serra Azul Heliport", + "latitude_deg": "-16.206944", + "longitude_deg": "-41.471667", + "elevation_ft": "1982", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Medina", + "scheduled_service": "no", + "gps_code": "SSAJ", + "local_code": "MG0268" + }, + { + "id": "342379", + "ident": "BR-1463", + "type": "small_airport", + "name": "Fazenda Progresso Airport", + "latitude_deg": "-13.157195", + "longitude_deg": "-41.507165", + "elevation_ft": "3839", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Mucugê", + "scheduled_service": "no", + "gps_code": "SSFW", + "local_code": "BA0157" + }, + { + "id": "342380", + "ident": "BR-1464", + "type": "small_airport", + "name": "Fazenda Viveiros Airport", + "latitude_deg": "-17.4864", + "longitude_deg": "-44.958766", + "elevation_ft": "1640", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Pirapora", + "scheduled_service": "no", + "gps_code": "SSFV", + "local_code": "MG0181" + }, + { + "id": "342406", + "ident": "BR-1465", + "type": "small_airport", + "name": "Antonio Furlaneto Airport", + "latitude_deg": "-4.435556", + "longitude_deg": "-47.598611", + "elevation_ft": "919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Dom Eliseu", + "scheduled_service": "no", + "gps_code": "SSFU", + "local_code": "PA0126" + }, + { + "id": "342430", + "ident": "BR-1466", + "type": "small_airport", + "name": "Fazenda Chapadão Airport", + "latitude_deg": "-15.82089", + "longitude_deg": "-55.999297", + "elevation_ft": "505", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santo Antônio do Leverger", + "scheduled_service": "no", + "gps_code": "SSGC", + "local_code": "MT0289" + }, + { + "id": "342431", + "ident": "BR-1467", + "type": "heliport", + "name": "LC Corporate Green Tower Helipad", + "latitude_deg": "-3.726649", + "longitude_deg": "-38.504591", + "elevation_ft": "301", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SSGI", + "local_code": "CE0058" + }, + { + "id": "342433", + "ident": "BR-1468", + "type": "small_airport", + "name": "FNSC Airstrip", + "latitude_deg": "-12.408611", + "longitude_deg": "-55.935", + "elevation_ft": "1260", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "gps_code": "SSGL", + "local_code": "MT0579" + }, + { + "id": "342434", + "ident": "BR-1469", + "type": "small_airport", + "name": "Fazenda Capivari Airstrip", + "latitude_deg": "-21.764028", + "longitude_deg": "-54.323365", + "elevation_ft": "709", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Brilhante", + "scheduled_service": "no", + "gps_code": "SSGQ", + "local_code": "MS0278" + }, + { + "id": "342476", + "ident": "BR-1470", + "type": "small_airport", + "name": "Fiocruz Heliport", + "latitude_deg": "-22.880096", + "longitude_deg": "-43.240526", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Fiocruz", + "scheduled_service": "no", + "gps_code": "SSBD", + "local_code": "RJ0353" + }, + { + "id": "342512", + "ident": "BR-1471", + "type": "heliport", + "name": "IURD Helipad", + "latitude_deg": "-25.442354", + "longitude_deg": "-49.261451", + "elevation_ft": "3048", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Curitiba", + "scheduled_service": "no", + "gps_code": "SSHI", + "local_code": "PR0135" + }, + { + "id": "342513", + "ident": "BR-1472", + "type": "heliport", + "name": "JC Helipad", + "latitude_deg": "-23.534122", + "longitude_deg": "-46.782361", + "elevation_ft": "2546", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Osasco", + "scheduled_service": "no", + "gps_code": "SSHJ", + "local_code": "SP0750" + }, + { + "id": "342515", + "ident": "BR-1473", + "type": "small_airport", + "name": "Fazenda Paiol do Piquiri Airstrip", + "latitude_deg": "-25.047222", + "longitude_deg": "-51.923056", + "elevation_ft": "3097", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Goioxim", + "scheduled_service": "no", + "gps_code": "SSHP", + "local_code": "PR0080" + }, + { + "id": "342520", + "ident": "BR-1474", + "type": "heliport", + "name": "Hospital Universitário Cajuru Helipad", + "latitude_deg": "-25.436454", + "longitude_deg": "-49.244944", + "elevation_ft": "3022", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Curitiba", + "scheduled_service": "no", + "gps_code": "SSHY", + "local_code": "PR0137" + }, + { + "id": "342523", + "ident": "BR-1475", + "type": "heliport", + "name": "Ages Bonfim Heliport", + "latitude_deg": "-10.516958", + "longitude_deg": "-40.146038", + "elevation_ft": "1650", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Senhor do Bonfim", + "scheduled_service": "no", + "gps_code": "SSIB", + "local_code": "BA0218" + }, + { + "id": "342538", + "ident": "BR-1476", + "type": "heliport", + "name": "Marchesi Heliport", + "latitude_deg": "-21.224457", + "longitude_deg": "-47.795425", + "elevation_ft": "2142", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Preto", + "scheduled_service": "no", + "gps_code": "SSIH", + "local_code": "SP0852" + }, + { + "id": "342662", + "ident": "BR-1477", + "type": "small_airport", + "name": "Fazenda Paraíso Airstrip", + "latitude_deg": "-22.093765", + "longitude_deg": "-55.375586", + "elevation_ft": "1722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Dourados", + "scheduled_service": "no", + "gps_code": "SD23", + "local_code": "MS0544" + }, + { + "id": "342673", + "ident": "BR-1478", + "type": "small_airport", + "name": "Fazenda São Paulo Airport", + "latitude_deg": "-18.544192", + "longitude_deg": "-55.570832", + "elevation_ft": "515", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Verde de Mato Grosso", + "scheduled_service": "no", + "gps_code": "SD26", + "local_code": "MS0505" + }, + { + "id": "342675", + "ident": "BR-1479", + "type": "small_airport", + "name": "Fazenda Entre Rios I Airport", + "latitude_deg": "-18.697828", + "longitude_deg": "-54.373611", + "elevation_ft": "1040", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Figueirão", + "scheduled_service": "no", + "gps_code": "SD29", + "local_code": "MS0555" + }, + { + "id": "342719", + "ident": "BR-1480", + "type": "small_airport", + "name": "Fazenda Serra Negra Airport", + "latitude_deg": "-14.40675", + "longitude_deg": "-60.210164", + "elevation_ft": "889", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SD30", + "local_code": "MT0496" + }, + { + "id": "342720", + "ident": "BR-1481", + "type": "small_airport", + "name": "Fazenda São José Airport", + "latitude_deg": "-7.884148", + "longitude_deg": "-56.557596", + "elevation_ft": "833", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SD32", + "local_code": "PA0260" + }, + { + "id": "342722", + "ident": "BR-1482", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-13.884074", + "longitude_deg": "-46.156425", + "elevation_ft": "3179", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Correntina", + "scheduled_service": "no", + "gps_code": "SD36", + "local_code": "BA0358" + }, + { + "id": "342830", + "ident": "BR-1483", + "type": "small_airport", + "name": "Fazenda Brasil Fronteira Airstrip", + "latitude_deg": "-13.406145", + "longitude_deg": "-61.348479", + "elevation_ft": "614", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Pimenteiras do Oeste", + "scheduled_service": "no", + "gps_code": "SD46", + "local_code": "RO0067" + }, + { + "id": "342839", + "ident": "BR-1484", + "type": "small_airport", + "name": "Fazenda Garrote II Airport", + "latitude_deg": "-15.333296", + "longitude_deg": "-51.158119", + "elevation_ft": "886", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Britânia", + "scheduled_service": "no", + "gps_code": "SD4P", + "local_code": "GO0292" + }, + { + "id": "342876", + "ident": "BR-1485", + "type": "small_airport", + "name": "Fazenda Dois Buritis Airstrip", + "latitude_deg": "-17.982795", + "longitude_deg": "-55.161178", + "elevation_ft": "548", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Coxim", + "scheduled_service": "no", + "gps_code": "SD47", + "local_code": "MS0485" + }, + { + "id": "342878", + "ident": "BR-1486", + "type": "small_airport", + "name": "Ribeirão II Airport", + "latitude_deg": "-17.299475", + "longitude_deg": "-54.322444", + "elevation_ft": "2096", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Itiquira", + "scheduled_service": "no", + "gps_code": "SD48", + "local_code": "MT0687" + }, + { + "id": "351486", + "ident": "BR-1487", + "type": "small_airport", + "name": "Silves Airport", + "latitude_deg": "-2.83737", + "longitude_deg": "-58.22133", + "elevation_ft": "220", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Silves", + "scheduled_service": "no" + }, + { + "id": "342945", + "ident": "BR-1488", + "type": "small_airport", + "name": "Fazenda São José do Rancho Grande Airstrip", + "latitude_deg": "-20.155515", + "longitude_deg": "-55.545408", + "elevation_ft": "558", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SWBH", + "local_code": "MS0532" + }, + { + "id": "342985", + "ident": "BR-1489", + "type": "small_airport", + "name": "Fazenda Guanandi Airstrip", + "latitude_deg": "-18.871111", + "longitude_deg": "-56.216667", + "elevation_ft": "400", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSWQ", + "local_code": "MS0488" + }, + { + "id": "342999", + "ident": "BR-1490", + "type": "small_airport", + "name": "Fazenda Cayman Airport", + "latitude_deg": "-11.540556", + "longitude_deg": "-51.724444", + "elevation_ft": "919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São Félix do Araguaia", + "scheduled_service": "no", + "gps_code": "SSWN", + "local_code": "MT0684" + }, + { + "id": "343013", + "ident": "BR-1491", + "type": "small_airport", + "name": "Fazenda Cachoeirinha Airstrip", + "latitude_deg": "-20.313889", + "longitude_deg": "-53.768056", + "elevation_ft": "1427", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SSWF", + "local_code": "MS0479" + }, + { + "id": "343015", + "ident": "BR-1492", + "type": "small_airport", + "name": "Fazenda Goaçu Airstrip", + "latitude_deg": "-20.030556", + "longitude_deg": "-53.358611", + "elevation_ft": "1299", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SWVO", + "local_code": "MS0500" + }, + { + "id": "343017", + "ident": "BR-1493", + "type": "heliport", + "name": "Bandeiras Centro Empresarial Heliport", + "latitude_deg": "-23.536615", + "longitude_deg": "-47.449475", + "elevation_ft": "1827", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Votorantim", + "scheduled_service": "no", + "gps_code": "SWST", + "local_code": "SP1306" + }, + { + "id": "343028", + "ident": "BR-1494", + "type": "small_airport", + "name": "Pousada Amazônia Fishing Lodge Airstrip", + "latitude_deg": "-9.13939", + "longitude_deg": "-57.049462", + "elevation_ft": "509", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Jacareacanga", + "scheduled_service": "no", + "gps_code": "SWSI", + "local_code": "PA0242" + }, + { + "id": "343096", + "ident": "BR-1495", + "type": "small_airport", + "name": "Grupo Rotta Airstrip", + "latitude_deg": "-7.151378", + "longitude_deg": "-55.805226", + "elevation_ft": "833", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Novo Progresso", + "scheduled_service": "no", + "gps_code": "SWRU", + "local_code": "PA0244" + }, + { + "id": "343152", + "ident": "BR-1496", + "type": "small_airport", + "name": "Coomerj Airstrip", + "latitude_deg": "-0.101312", + "longitude_deg": "-52.950336", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Laranjal do Jari", + "scheduled_service": "no", + "gps_code": "SWQJ", + "local_code": "AP0014" + }, + { + "id": "343154", + "ident": "BR-1497", + "type": "small_airport", + "name": "Fazenda Caturama Airstrip", + "latitude_deg": "-21.114963", + "longitude_deg": "-50.039613", + "elevation_ft": "1476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Zacarias", + "scheduled_service": "no", + "gps_code": "SWQI", + "local_code": "SP1308" + }, + { + "id": "343156", + "ident": "BR-1498", + "type": "heliport", + "name": "WYDA Heliport", + "latitude_deg": "-23.443374", + "longitude_deg": "-47.436444", + "elevation_ft": "1919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sorocaba", + "scheduled_service": "no", + "gps_code": "SWQD", + "local_code": "SP1291" + }, + { + "id": "343158", + "ident": "BR-1499", + "type": "small_airport", + "name": "Dom Rodrigo El Manco Airstrip", + "latitude_deg": "-3.941944", + "longitude_deg": "-41.669722", + "elevation_ft": "325", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Piracuruca", + "scheduled_service": "no", + "gps_code": "SWPV", + "local_code": "PI0077" + }, + { + "id": "343163", + "ident": "BR-1500", + "type": "small_airport", + "name": "Fazenda Girassol Airport", + "latitude_deg": "-16.844307", + "longitude_deg": "-54.045938", + "elevation_ft": "2464", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pedra Preta", + "scheduled_service": "no", + "gps_code": "SWOV", + "local_code": "MT0471" + }, + { + "id": "343169", + "ident": "BR-1501", + "type": "small_airport", + "name": "Fazenda San Diego Airport", + "latitude_deg": "-15.347406", + "longitude_deg": "-54.673473", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Verde", + "scheduled_service": "no", + "gps_code": "2136" + }, + { + "id": "343170", + "ident": "BR-1502", + "type": "heliport", + "name": "Coudelaria Rocas do Vouga Heliport", + "latitude_deg": "-23.298058", + "longitude_deg": "-47.402723", + "elevation_ft": "1847", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itu", + "scheduled_service": "no", + "gps_code": "SWOJ", + "local_code": "SP1277" + }, + { + "id": "343171", + "ident": "BR-1503", + "type": "small_airport", + "name": "Fazenda Nova Esperança Airstrip", + "latitude_deg": "-15.872767", + "longitude_deg": "-57.352044", + "elevation_ft": "784", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SWOI", + "local_code": "MT0647" + }, + { + "id": "343175", + "ident": "BR-1504", + "type": "small_airport", + "name": "Fazenda Jamaica Airport", + "latitude_deg": "-11.93208", + "longitude_deg": "-51.615657", + "elevation_ft": "1102", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Serra Nova Dourada", + "scheduled_service": "no", + "gps_code": "SWNZ", + "local_code": "MT0648" + }, + { + "id": "343180", + "ident": "BR-1505", + "type": "small_airport", + "name": "Fazenda Baile Airport", + "latitude_deg": "-22.237046", + "longitude_deg": "-53.371805", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Andradina", + "scheduled_service": "no", + "gps_code": "SWNV", + "local_code": "MS0507" + }, + { + "id": "343181", + "ident": "BR-1506", + "type": "small_airport", + "name": "Fazenda Aracagi Airstrip", + "latitude_deg": "-10.561944", + "longitude_deg": "-53.474167", + "elevation_ft": "1175", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Peixoto de Azevedo", + "scheduled_service": "no", + "gps_code": "SWNT", + "local_code": "MT0589" + }, + { + "id": "343183", + "ident": "BR-1507", + "type": "small_airport", + "name": "Fazenda Diamante - Jufap Airstrip", + "latitude_deg": "-21.59065", + "longitude_deg": "-53.819728", + "elevation_ft": "1184", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Alvorada do Sul", + "scheduled_service": "no", + "gps_code": "SWNP", + "local_code": "MS0430" + }, + { + "id": "343184", + "ident": "BR-1508", + "type": "small_airport", + "name": "São Miguel do Tapuio Airport", + "latitude_deg": "-5.492027", + "longitude_deg": "-41.300894", + "elevation_ft": "971", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "São Miguel do Tapuio", + "scheduled_service": "no", + "gps_code": "SWNO", + "local_code": "PI0071" + }, + { + "id": "343191", + "ident": "BR-1509", + "type": "small_airport", + "name": "Fazenda Jandaira Airstrip", + "latitude_deg": "-12.779444", + "longitude_deg": "-56.480278", + "elevation_ft": "1306", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tapurah", + "scheduled_service": "no", + "gps_code": "SWNN", + "local_code": "MT0580" + }, + { + "id": "343192", + "ident": "BR-1510", + "type": "small_airport", + "name": "Adão Veríssimo Airstrip", + "latitude_deg": "-4.376389", + "longitude_deg": "-47.438056", + "elevation_ft": "489", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Itinga do Maranhão", + "scheduled_service": "no", + "gps_code": "SSVR", + "local_code": "MA0112" + }, + { + "id": "343193", + "ident": "BR-1511", + "type": "small_airport", + "name": "Fazenda Retirinho Airstrip", + "latitude_deg": "-19.880278", + "longitude_deg": "-56.025278", + "elevation_ft": "397", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SWMR", + "local_code": "MS0512" + }, + { + "id": "343197", + "ident": "BR-1512", + "type": "small_airport", + "name": "Fazenda Rancho Branco Airstrip", + "latitude_deg": "-12.228333", + "longitude_deg": "-57.237778", + "elevation_ft": "1207", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Maringá", + "scheduled_service": "no", + "gps_code": "SWGS", + "local_code": "MT0598" + }, + { + "id": "343198", + "ident": "BR-1513", + "type": "small_airport", + "name": "Fazenda Cambara 1 Airstrip", + "latitude_deg": "-13.604722", + "longitude_deg": "-46.001944", + "elevation_ft": "2959", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Correntina", + "scheduled_service": "no", + "gps_code": "SWEV", + "local_code": "BA0334" + }, + { + "id": "343199", + "ident": "BR-1514", + "type": "small_airport", + "name": "Bahiagliding Airstrip", + "latitude_deg": "-11.258404", + "longitude_deg": "-45.693319", + "elevation_ft": "1991", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Formosa do Rio Preto", + "scheduled_service": "no", + "gps_code": "SWEB", + "local_code": "BA0356" + }, + { + "id": "343200", + "ident": "BR-1515", + "type": "heliport", + "name": "CMA Heliport", + "latitude_deg": "-20.569706", + "longitude_deg": "-48.69323", + "elevation_ft": "1683", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barretos", + "scheduled_service": "no", + "gps_code": "SWCV", + "local_code": "SP1276" + }, + { + "id": "343203", + "ident": "BR-1516", + "type": "heliport", + "name": "Ouro Branco Heliport", + "latitude_deg": "-17.12571", + "longitude_deg": "-49.96482", + "elevation_ft": "1968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Indiara", + "scheduled_service": "no", + "gps_code": "SWBU", + "local_code": "GO0286" + }, + { + "id": "343205", + "ident": "BR-1517", + "type": "small_airport", + "name": "Fazenda São Joaquim Airstrip", + "latitude_deg": "-18.263982", + "longitude_deg": "-39.86629", + "elevation_ft": "180", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Conceição da Barra", + "scheduled_service": "no", + "gps_code": "SSVP", + "local_code": "ES0049" + }, + { + "id": "343218", + "ident": "BR-1518", + "type": "small_airport", + "name": "Fazenda Vazante Airport", + "latitude_deg": "-20.063283", + "longitude_deg": "-56.164069", + "elevation_ft": "407", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "local_code": "MS0533" + }, + { + "id": "343223", + "ident": "BR-1519", + "type": "small_airport", + "name": "Fazenda Serra Dourada Airstrip", + "latitude_deg": "-5.808115", + "longitude_deg": "-56.442078", + "elevation_ft": "436", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SSUD", + "local_code": "PA0257" + }, + { + "id": "343225", + "ident": "BR-1520", + "type": "heliport", + "name": "Soufer Cambui Heliport", + "latitude_deg": "-22.561111", + "longitude_deg": "-46.038333", + "elevation_ft": "3008", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Cambuí", + "scheduled_service": "no", + "gps_code": "SSTN", + "local_code": "MG0308" + }, + { + "id": "343229", + "ident": "BR-1521", + "type": "small_airport", + "name": "Malibu do Parecis Airstrip", + "latitude_deg": "-13.14", + "longitude_deg": "-57.599722", + "elevation_ft": "1296", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo do Parecis", + "scheduled_service": "no", + "gps_code": "SSQM", + "local_code": "MT0512" + }, + { + "id": "343277", + "ident": "BR-1522", + "type": "small_airport", + "name": "Fazenda Estrela Dalva Airport", + "latitude_deg": "-18.711222", + "longitude_deg": "-52.041314", + "elevation_ft": "2247", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Aporé", + "scheduled_service": "no", + "gps_code": "SSNO", + "local_code": "GO0268" + }, + { + "id": "343288", + "ident": "BR-1523", + "type": "heliport", + "name": "Melo Pinheiro Heliport", + "latitude_deg": "-23.238813", + "longitude_deg": "-47.455584", + "elevation_ft": "1850", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Porto Feliz", + "scheduled_service": "no", + "gps_code": "SSLF", + "local_code": "SP1275" + }, + { + "id": "343290", + "ident": "BR-1524", + "type": "small_airport", + "name": "Fazenda São Roque Airport", + "latitude_deg": "-13.389444", + "longitude_deg": "-55.2475", + "elevation_ft": "1542", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "gps_code": "SSJR", + "local_code": "MT0601" + }, + { + "id": "343300", + "ident": "BR-1525", + "type": "small_airport", + "name": "Fazenda Alvemi Airstrip", + "latitude_deg": "-19.410556", + "longitude_deg": "-51.131667", + "elevation_ft": "1404", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Paranaíba", + "scheduled_service": "no", + "gps_code": "SSHC", + "local_code": "MS0540" + }, + { + "id": "343302", + "ident": "BR-1526", + "type": "small_airport", + "name": "Bainho de Baixo Airstrip", + "latitude_deg": "-16.734444", + "longitude_deg": "-55.737778", + "elevation_ft": "512", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão de Melgaço", + "scheduled_service": "no", + "gps_code": "SSEN", + "local_code": "MT0609" + }, + { + "id": "343304", + "ident": "BR-1527", + "type": "small_airport", + "name": "Fazenda Girassol do Prata Airport", + "latitude_deg": "-16.205334", + "longitude_deg": "-55.296685", + "elevation_ft": "2224", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santo Antônio do Leverger", + "scheduled_service": "no", + "gps_code": "SSEM", + "local_code": "MT0472" + }, + { + "id": "343305", + "ident": "BR-1528", + "type": "small_airport", + "name": "Fazenda Savana Airport", + "latitude_deg": "-11.557693", + "longitude_deg": "-45.544081", + "elevation_ft": "2539", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Riachão das Neves", + "scheduled_service": "no", + "gps_code": "SSBJ", + "local_code": "BA0360" + }, + { + "id": "343307", + "ident": "BR-1529", + "type": "heliport", + "name": "BBP Heliport", + "latitude_deg": "-23.041095", + "longitude_deg": "-46.708707", + "elevation_ft": "2580", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jarinu", + "scheduled_service": "no", + "gps_code": "SNXM", + "local_code": "SP1252" + }, + { + "id": "343308", + "ident": "BR-1530", + "type": "heliport", + "name": "Villa Santa Maria Heliport", + "latitude_deg": "-22.722773", + "longitude_deg": "-45.681697", + "elevation_ft": "3156", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Bento do Sapucaí", + "scheduled_service": "no", + "gps_code": "SNUY", + "local_code": "SP1263" + }, + { + "id": "343312", + "ident": "BR-1531", + "type": "small_airport", + "name": "Fazenda Tainacan Airstrip", + "latitude_deg": "-14.135", + "longitude_deg": "-50.823611", + "elevation_ft": "771", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Aruanã", + "scheduled_service": "no", + "gps_code": "SNUU", + "local_code": "GO0266" + }, + { + "id": "343313", + "ident": "BR-1532", + "type": "small_airport", + "name": "Fazenda Tropical Airport", + "latitude_deg": "-8.711109", + "longitude_deg": "-45.021752", + "elevation_ft": "1680", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Baixa Grande do Ribeiro", + "scheduled_service": "no", + "gps_code": "SNSP", + "local_code": "PI0078" + }, + { + "id": "343316", + "ident": "BR-1533", + "type": "small_airport", + "name": "Fazenda Canoeiro Airport", + "latitude_deg": "-13.052789", + "longitude_deg": "-50.833216", + "elevation_ft": "712", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cocalinho", + "scheduled_service": "no", + "gps_code": "SNRS", + "local_code": "MT0683" + }, + { + "id": "343317", + "ident": "BR-1534", + "type": "small_airport", + "name": "Fazenda Seriema Airstrip", + "latitude_deg": "-22.053386", + "longitude_deg": "-53.338666", + "elevation_ft": "1440", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Andradina", + "scheduled_service": "no", + "gps_code": "SNPS", + "local_code": "MS0409" + }, + { + "id": "343318", + "ident": "BR-1535", + "type": "heliport", + "name": "Bravíssima Private Residence Heliport", + "latitude_deg": "-26.934866", + "longitude_deg": "-48.633485", + "elevation_ft": "253", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Itajaí", + "scheduled_service": "no", + "gps_code": "SNPB", + "local_code": "SC0110" + }, + { + "id": "343319", + "ident": "BR-1536", + "type": "small_airport", + "name": "Fazenda Paz Airport", + "latitude_deg": "-10.592571", + "longitude_deg": "-45.751018", + "elevation_ft": "2516", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Formosa do Rio Preto", + "scheduled_service": "no", + "gps_code": "SNOJ", + "local_code": "BA0350" + }, + { + "id": "343320", + "ident": "BR-1537", + "type": "small_airport", + "name": "Fazenda Santa Bernadette da Volta Grande Airstrip", + "latitude_deg": "-21.288333", + "longitude_deg": "-53.883611", + "elevation_ft": "1322", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "gps_code": "SNNK", + "local_code": "MS0481" + }, + { + "id": "343321", + "ident": "BR-1538", + "type": "small_airport", + "name": "Fazenda Caraíbas Airstrip", + "latitude_deg": "-12.283889", + "longitude_deg": "-40.091389", + "elevation_ft": "1027", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Ipirá", + "scheduled_service": "no", + "gps_code": "SNMM", + "local_code": "BA0366" + }, + { + "id": "343323", + "ident": "BR-1539", + "type": "small_airport", + "name": "Fazenda Santa Maria Airstrip", + "latitude_deg": "-22.83992", + "longitude_deg": "-55.263661", + "elevation_ft": "1460", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aral Moreira", + "scheduled_service": "no", + "gps_code": "SNKO", + "local_code": "MS0538" + }, + { + "id": "343366", + "ident": "BR-1540", + "type": "small_airport", + "name": "Fazenda Fartura Airport", + "latitude_deg": "-14.546627", + "longitude_deg": "-54.782714", + "elevation_ft": "1549", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Planalto da Serra", + "scheduled_service": "no", + "gps_code": "SNIY", + "local_code": "MT0590" + }, + { + "id": "343368", + "ident": "BR-1541", + "type": "small_airport", + "name": "Fazenda Calubra Airstrip", + "latitude_deg": "-5.97246", + "longitude_deg": "-42.407549", + "elevation_ft": "768", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Passagem Franca do Piauí", + "scheduled_service": "no", + "gps_code": "SNEN", + "local_code": "PI0075" + }, + { + "id": "343383", + "ident": "BR-1542", + "type": "small_airport", + "name": "Pousada Sucunduri Airstrip", + "latitude_deg": "-5.593333", + "longitude_deg": "-59.550556", + "elevation_ft": "161", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Borba", + "scheduled_service": "no", + "gps_code": "SNDJ", + "local_code": "AM0063" + }, + { + "id": "343388", + "ident": "BR-1543", + "type": "small_airport", + "name": "Palácio dos Leilões Heliport", + "latitude_deg": "-19.926736", + "longitude_deg": "-44.387995", + "elevation_ft": "2559", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Juatuba", + "scheduled_service": "no", + "gps_code": "SNDB", + "local_code": "MG0321" + }, + { + "id": "343392", + "ident": "BR-1544", + "type": "heliport", + "name": "Punaú Eco Brasil Heliport", + "latitude_deg": "-5.3539", + "longitude_deg": "-35.359254", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Rio do Fogo", + "scheduled_service": "no", + "gps_code": "SNCU", + "local_code": "RN0016", + "home_link": "https://www.punaupraiahotel.com.br/" + }, + { + "id": "343393", + "ident": "BR-1545", + "type": "small_airport", + "name": "Fazenda Campo Alto Airport", + "latitude_deg": "-19.357222", + "longitude_deg": "-48.688611", + "elevation_ft": "2254", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Prata", + "scheduled_service": "no", + "gps_code": "SNTC", + "local_code": "MG0449" + }, + { + "id": "343536", + "ident": "BR-1546", + "type": "small_airport", + "name": "Fazenda Brasa Airstrip", + "latitude_deg": "-30.345", + "longitude_deg": "-55.003056", + "elevation_ft": "436", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Rosário do Sul", + "scheduled_service": "no", + "gps_code": "SNRB", + "local_code": "RS0088" + }, + { + "id": "343538", + "ident": "BR-1547", + "type": "small_airport", + "name": "Fazenda Formoso de Paraúna Airport", + "latitude_deg": "-17.148789", + "longitude_deg": "-50.595955", + "elevation_ft": "2100", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Paraúna", + "scheduled_service": "no", + "local_code": "GO0278" + }, + { + "id": "343928", + "ident": "BR-1548", + "type": "small_airport", + "name": "Imagem Aviação Airstrip", + "latitude_deg": "-20.865278", + "longitude_deg": "-50.1075", + "elevation_ft": "1473", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Monções", + "scheduled_service": "no", + "gps_code": "SD33", + "local_code": "SP1310" + }, + { + "id": "343934", + "ident": "BR-1549", + "type": "small_airport", + "name": "Fazenda Itália Airstrip", + "latitude_deg": "-4.537222", + "longitude_deg": "-47.865556", + "elevation_ft": "1060", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Dom Eliseu", + "scheduled_service": "no", + "gps_code": "SD37", + "local_code": "PA0256" + }, + { + "id": "344012", + "ident": "BR-1550", + "type": "small_airport", + "name": "Fazenda Planalto Airport", + "latitude_deg": "-18.201399", + "longitude_deg": "-53.212538", + "elevation_ft": "2828", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Costa Rica", + "scheduled_service": "no", + "gps_code": "SDLG", + "local_code": "MS0455" + }, + { + "id": "344018", + "ident": "BR-1551", + "type": "heliport", + "name": "Heliponto Trama", + "latitude_deg": "-16.60215", + "longitude_deg": "-39.120833", + "elevation_ft": "121", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Porto Seguro", + "scheduled_service": "no", + "gps_code": "SD49", + "local_code": "BA0370" + }, + { + "id": "344023", + "ident": "BR-1552", + "type": "heliport", + "name": "Porto do Açu Airport", + "latitude_deg": "-21.80453", + "longitude_deg": "-41.109508", + "elevation_ft": "18", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "São João da Barra", + "scheduled_service": "no", + "gps_code": "SBPW", + "local_code": "RJ0321", + "keywords": "SD28" + }, + { + "id": "344025", + "ident": "BR-1553", + "type": "small_airport", + "name": "Fazenda Agromapi Airstrip", + "latitude_deg": "-7.325833", + "longitude_deg": "-44.895", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "São Félix de Balsas", + "scheduled_service": "no", + "gps_code": "SD42", + "local_code": "MA0114" + }, + { + "id": "344041", + "ident": "BR-1554", + "type": "small_airport", + "name": "Fazenda Capim Doce Airstrip", + "latitude_deg": "-15.811111", + "longitude_deg": "-59.903889", + "elevation_ft": "768", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes e Lacerda", + "scheduled_service": "no", + "gps_code": "SD62", + "local_code": "MT0487" + }, + { + "id": "344043", + "ident": "BR-1555", + "type": "small_airport", + "name": "Fazenda Bela Vista Airstrip", + "latitude_deg": "-13.638081", + "longitude_deg": "-46.185809", + "elevation_ft": "3228", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Correntina", + "scheduled_service": "no", + "gps_code": "SD63", + "local_code": "BA0365" + }, + { + "id": "344045", + "ident": "BR-1556", + "type": "small_airport", + "name": "Fazenda União Airstrip", + "latitude_deg": "-13.989422", + "longitude_deg": "-45.964874", + "elevation_ft": "3015", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Jaborandi", + "scheduled_service": "no", + "gps_code": "SD64", + "local_code": "BA0368" + }, + { + "id": "344047", + "ident": "BR-1557", + "type": "small_airport", + "name": "Cravari Airstrip", + "latitude_deg": "-12.505569", + "longitude_deg": "-57.876298", + "elevation_ft": "1014", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SD66", + "local_code": "MT0582" + }, + { + "id": "344048", + "ident": "BR-1558", + "type": "small_airport", + "name": "Fazenda Rodoserv IV Airstrip", + "latitude_deg": "-21.826389", + "longitude_deg": "-57.127222", + "elevation_ft": "659", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Caracol", + "scheduled_service": "no", + "gps_code": "SD67", + "local_code": "MS0568" + }, + { + "id": "344068", + "ident": "BR-1559", + "type": "small_airport", + "name": "Fazenda Mesa Vermelha", + "latitude_deg": "-16.290087", + "longitude_deg": "-53.45204", + "elevation_ft": "2513", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Guiratinga", + "scheduled_service": "no", + "gps_code": "SD68", + "local_code": "MT0658" + }, + { + "id": "344070", + "ident": "BR-1560", + "type": "small_airport", + "name": "Maria Clara Airstrip", + "latitude_deg": "-1.376824", + "longitude_deg": "-48.814255", + "elevation_ft": "25", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Ponta de Pedras", + "scheduled_service": "no", + "gps_code": "SD69", + "local_code": "PA0249" + }, + { + "id": "344072", + "ident": "BR-1561", + "type": "small_airport", + "name": "Agropecuária Thomazi Airport", + "latitude_deg": "-13.670833", + "longitude_deg": "-60.348611", + "elevation_ft": "718", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SD6C", + "local_code": "MT0681" + }, + { + "id": "344646", + "ident": "BR-1562", + "type": "heliport", + "name": "Grupo Petrópolis Alagoinhas Heliport", + "latitude_deg": "-12.163611", + "longitude_deg": "-38.448889", + "elevation_ft": "554", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Alagoinhas", + "scheduled_service": "no", + "gps_code": "SWZW", + "local_code": "BA0240" + }, + { + "id": "344647", + "ident": "BR-1563", + "type": "small_airport", + "name": "Selma Nunes Airport", + "latitude_deg": "-13.09448", + "longitude_deg": "-42.5529", + "elevation_ft": "1900", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Macaúbas", + "scheduled_service": "no", + "gps_code": "SWZX", + "local_code": "BA0322" + }, + { + "id": "344665", + "ident": "BR-1564", + "type": "small_airport", + "name": "Fazenda Paraíso do Formoso Airstrip", + "latitude_deg": "-21.139578", + "longitude_deg": "-56.383671", + "elevation_ft": "948", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bonito", + "scheduled_service": "no", + "gps_code": "SD74", + "local_code": "MS0530" + }, + { + "id": "344666", + "ident": "BR-1565", + "type": "heliport", + "name": "Soldado PM Pedro José Rodrigues Heliport", + "latitude_deg": "-26.978707", + "longitude_deg": "-48.650091", + "elevation_ft": "89", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Balneário Camboriú", + "scheduled_service": "no", + "gps_code": "SD76", + "local_code": "SC0107" + }, + { + "id": "344667", + "ident": "BR-1566", + "type": "small_airport", + "name": "Cmte. Dr. Ricardo Stoppe Júnior Airstrip", + "latitude_deg": "-8.922303", + "longitude_deg": "-66.131879", + "elevation_ft": "522", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Lábrea", + "scheduled_service": "no", + "gps_code": "SD78", + "local_code": "AM0097" + }, + { + "id": "345038", + "ident": "BR-1567", + "type": "heliport", + "name": "Grotta Del Caravaggio Heliport", + "latitude_deg": "-19.913611", + "longitude_deg": "-40.657222", + "elevation_ft": "2700", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Santa Teresa", + "scheduled_service": "no", + "gps_code": "SDGU", + "local_code": "ES0046", + "home_link": "https://es.olx.com.br/norte-do-espirito-santo/terrenos/chacara-grotta-del-caravaggio-santa-teresa-linda-832715630" + }, + { + "id": "345088", + "ident": "BR-1568", + "type": "heliport", + "name": "Casa da Pedra Heliport", + "latitude_deg": "-23.335449", + "longitude_deg": "-47.425361", + "elevation_ft": "2041", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Porto Feliz", + "scheduled_service": "no", + "gps_code": "SDVL", + "local_code": "SP1290" + }, + { + "id": "345089", + "ident": "BR-1569", + "type": "heliport", + "name": "Reik - Campos do Jordão Heliport", + "latitude_deg": "-22.709284", + "longitude_deg": "-45.544027", + "elevation_ft": "5111", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campos do Jordão", + "scheduled_service": "no", + "gps_code": "SDWD", + "local_code": "SP1274" + }, + { + "id": "345090", + "ident": "BR-1570", + "type": "small_airport", + "name": "Piracuruca Airport", + "latitude_deg": "-3.891421", + "longitude_deg": "-41.710772", + "elevation_ft": "364", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Piracuruca", + "scheduled_service": "no", + "gps_code": "SDXB", + "local_code": "PI0070" + }, + { + "id": "345091", + "ident": "BR-1571", + "type": "small_airport", + "name": "Monte Cristo Airport", + "latitude_deg": "-21.363071", + "longitude_deg": "-46.400918", + "elevation_ft": "2989", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Monte Belo", + "scheduled_service": "no", + "gps_code": "SDXM", + "local_code": "MG0474" + }, + { + "id": "345096", + "ident": "BR-1572", + "type": "small_airport", + "name": "Luzilandia Airport", + "latitude_deg": "-3.537236", + "longitude_deg": "-42.372869", + "elevation_ft": "177", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Luzilândia", + "scheduled_service": "no", + "gps_code": "SDYW", + "local_code": "PI0051" + }, + { + "id": "345112", + "ident": "BR-1573", + "type": "heliport", + "name": "T & T Heliport", + "latitude_deg": "-26.888131", + "longitude_deg": "-49.087874", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Blumenau", + "scheduled_service": "no", + "gps_code": "SWCG", + "local_code": "SC0183" + }, + { + "id": "345113", + "ident": "BR-1574", + "type": "small_airport", + "name": "Fazenda Jucurutu - Nordeste Airport", + "latitude_deg": "-14.497863", + "longitude_deg": "-45.924995", + "elevation_ft": "3022", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Jaborandi", + "scheduled_service": "no", + "gps_code": "SWCH", + "local_code": "BA0324" + }, + { + "id": "345120", + "ident": "BR-1575", + "type": "small_airport", + "name": "Fazenda Tropical Airport", + "latitude_deg": "-14.87732", + "longitude_deg": "-49.195157", + "elevation_ft": "1854", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "São Luiz do Norte", + "scheduled_service": "no", + "gps_code": "SSYA", + "local_code": "GO0262" + }, + { + "id": "345125", + "ident": "BR-1576", + "type": "small_airport", + "name": "Fazenda Água Boa Maricultura Airport", + "latitude_deg": "-11.118369", + "longitude_deg": "-37.208696", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SE", + "municipality": "Itaporanga d'Ajuda", + "scheduled_service": "no", + "gps_code": "SSXB", + "local_code": "SE0009" + }, + { + "id": "345127", + "ident": "BR-1577", + "type": "heliport", + "name": "Hospital Regional Norte Helipad", + "latitude_deg": "-3.676757", + "longitude_deg": "-40.369354", + "elevation_ft": "322", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Sobral", + "scheduled_service": "no", + "gps_code": "SJWH", + "local_code": "CE0099" + }, + { + "id": "345134", + "ident": "BR-1578", + "type": "heliport", + "name": "Nathor Heliport", + "latitude_deg": "-26.765833", + "longitude_deg": "-49.0775", + "elevation_ft": "115", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Blumenau", + "scheduled_service": "no", + "gps_code": "SD89", + "local_code": "SC0180" + }, + { + "id": "345205", + "ident": "BR-1579", + "type": "heliport", + "name": "Carnaubinha Praia Resort Heliport", + "latitude_deg": "-2.908821", + "longitude_deg": "-41.496665", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Luís Correia", + "scheduled_service": "no", + "gps_code": "SD8I", + "local_code": "PI0066" + }, + { + "id": "345410", + "ident": "BR-1580", + "type": "small_airport", + "name": "Fazenda Bom Retiro Airstrip", + "latitude_deg": "-22.177192", + "longitude_deg": "-50.387186", + "elevation_ft": "1411", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Quintana", + "scheduled_service": "no", + "gps_code": "SNTK", + "local_code": "SP1284" + }, + { + "id": "345551", + "ident": "BR-1581", + "type": "small_airport", + "name": "Fazenda Vale do Kafroun Airport", + "latitude_deg": "-6.225055", + "longitude_deg": "-46.230843", + "elevation_ft": "981", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Grajaú", + "scheduled_service": "no", + "gps_code": "SD92", + "local_code": "MA0122" + }, + { + "id": "345552", + "ident": "BR-1582", + "type": "small_airport", + "name": "Fazenda São Vicente Airport", + "latitude_deg": "-21.89696", + "longitude_deg": "-55.478417", + "elevation_ft": "1483", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ponta Porã", + "scheduled_service": "no", + "gps_code": "SD93", + "local_code": "MS0548" + }, + { + "id": "345553", + "ident": "BR-1583", + "type": "small_airport", + "name": "Mina de Buritirama Airport", + "latitude_deg": "-5.520979", + "longitude_deg": "-50.2146", + "elevation_ft": "827", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Marabá", + "scheduled_service": "no", + "gps_code": "SD94", + "local_code": "PA0171" + }, + { + "id": "345637", + "ident": "BR-1584", + "type": "small_airport", + "name": "Fazenda Dumont - Chiquinho Ribeiro Airport", + "latitude_deg": "-23.005883", + "longitude_deg": "-46.644602", + "elevation_ft": "2641", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Bragança Paulista", + "scheduled_service": "no", + "gps_code": "SIGL", + "local_code": "SP1271" + }, + { + "id": "345640", + "ident": "BR-1585", + "type": "small_airport", + "name": "CAT - Clube Aéreo Taquari Airport", + "latitude_deg": "-12.791561", + "longitude_deg": "-60.171619", + "elevation_ft": "1946", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Vilhena", + "scheduled_service": "no", + "gps_code": "SIYA", + "local_code": "RO0064" + }, + { + "id": "345642", + "ident": "BR-1586", + "type": "small_airport", + "name": "Fazenda Beatriz Airport", + "latitude_deg": "-21.487785", + "longitude_deg": "-53.617153", + "elevation_ft": "1020", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "gps_code": "SJBA", + "local_code": "MS0524" + }, + { + "id": "345835", + "ident": "BR-1587", + "type": "small_airport", + "name": "Usina Santa Helena Airport", + "latitude_deg": "-21.976141", + "longitude_deg": "-53.416772", + "elevation_ft": "1276", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Andradina", + "scheduled_service": "no", + "gps_code": "SJEW", + "local_code": "MS0502" + }, + { + "id": "345836", + "ident": "BR-1588", + "type": "heliport", + "name": "Fazenda Forcela Heliport", + "latitude_deg": "-20.397874", + "longitude_deg": "-45.179721", + "elevation_ft": "3156", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Itapecerica", + "scheduled_service": "no", + "gps_code": "SJOF", + "local_code": "MG0459" + }, + { + "id": "345837", + "ident": "BR-1589", + "type": "small_airport", + "name": "Usina Calcário Parecis Airport", + "latitude_deg": "-12.147233", + "longitude_deg": "-61.522109", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Parecis", + "scheduled_service": "no", + "gps_code": "SJSK", + "local_code": "RO0065" + }, + { + "id": "345841", + "ident": "BR-1590", + "type": "heliport", + "name": "Haskell Heliport", + "latitude_deg": "-20.764606", + "longitude_deg": "-42.832033", + "elevation_ft": "2316", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Viçosa", + "scheduled_service": "no", + "gps_code": "SNNH", + "local_code": "MG0461" + }, + { + "id": "345844", + "ident": "BR-1591", + "type": "small_airport", + "name": "Fazenda Jauquara Airport", + "latitude_deg": "-15.173983", + "longitude_deg": "-57.127143", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra do Bugres", + "scheduled_service": "no", + "gps_code": "SWMX", + "local_code": "MT0629" + }, + { + "id": "346100", + "ident": "BR-1592", + "type": "small_airport", + "name": "Tarobá Airstrip", + "latitude_deg": "-25.548148", + "longitude_deg": "-54.486641", + "elevation_ft": "735", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Santa Terezinha de Itaipu", + "scheduled_service": "no", + "gps_code": "SWTB", + "local_code": "PR0195" + }, + { + "id": "346106", + "ident": "BR-1593", + "type": "small_airport", + "name": "Fazenda Videira Airport", + "latitude_deg": "-16.795833", + "longitude_deg": "-57.230278", + "elevation_ft": "387", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Poconé", + "scheduled_service": "no", + "gps_code": "SWUY", + "local_code": "MT0632" + }, + { + "id": "346108", + "ident": "BR-1594", + "type": "heliport", + "name": "Bruno Forcela Heliport", + "latitude_deg": "-20.466802", + "longitude_deg": "-45.126922", + "elevation_ft": "2858", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Itapecerica", + "scheduled_service": "no", + "gps_code": "SWWK", + "local_code": "MG0458" + }, + { + "id": "346110", + "ident": "BR-1595", + "type": "heliport", + "name": "Fazenda Visual Heliport", + "latitude_deg": "-19.642153", + "longitude_deg": "-44.364048", + "elevation_ft": "2516", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Esmeraldas", + "scheduled_service": "no", + "gps_code": "SJCX", + "local_code": "MG0473" + }, + { + "id": "346370", + "ident": "BR-1596", + "type": "heliport", + "name": "3 Tentos CETEC Heliport", + "latitude_deg": "-28.386634", + "longitude_deg": "-53.257213", + "elevation_ft": "1647", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Santa Bárbara do Sul", + "scheduled_service": "no", + "gps_code": "SJCT", + "local_code": "RS0127" + }, + { + "id": "346492", + "ident": "BR-1597", + "type": "small_airport", + "name": "Fazenda Novo México", + "latitude_deg": "-14.089517", + "longitude_deg": "-45.729561", + "elevation_ft": "2825", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Jaborandi", + "scheduled_service": "no", + "gps_code": "SD73", + "local_code": "BA0371" + }, + { + "id": "346494", + "ident": "BR-1598", + "type": "small_airport", + "name": "Fazenda Juerana Airport", + "latitude_deg": "-14.658333", + "longitude_deg": "-39.079167", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Ilhéus", + "scheduled_service": "no", + "gps_code": "SD97", + "local_code": "BA0373" + }, + { + "id": "346497", + "ident": "BR-1599", + "type": "heliport", + "name": "Cardio Pulmonar da Bahia Helipad", + "latitude_deg": "-13.006111", + "longitude_deg": "-38.500278", + "elevation_ft": "189", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Salvador", + "scheduled_service": "no", + "gps_code": "SSDE", + "local_code": "BA0316" + }, + { + "id": "346501", + "ident": "BR-1600", + "type": "small_airport", + "name": "Renascera Airport", + "latitude_deg": "-4.784167", + "longitude_deg": "-45.845", + "elevation_ft": "997", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Arame", + "scheduled_service": "no", + "gps_code": "SSEQ", + "local_code": "MA0045" + }, + { + "id": "346502", + "ident": "BR-1601", + "type": "small_airport", + "name": "Boris Airport", + "latitude_deg": "-12.068207", + "longitude_deg": "-45.828671", + "elevation_ft": "2310", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Luís Eduardo Magalhães", + "scheduled_service": "no", + "gps_code": "SSHB", + "local_code": "BA0158" + }, + { + "id": "346503", + "ident": "BR-1602", + "type": "small_airport", + "name": "Fazenda Gerais Airport", + "latitude_deg": "-10.678452", + "longitude_deg": "-45.833665", + "elevation_ft": "2421", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Formosa do Rio Preto", + "scheduled_service": "no", + "gps_code": "SSHF", + "local_code": "BA0159" + }, + { + "id": "346540", + "ident": "BR-1603", + "type": "small_airport", + "name": "Santa Helena de Goiás - Paulo Lopes Regional Airport", + "latitude_deg": "-17.784334", + "longitude_deg": "-50.592395", + "elevation_ft": "2159", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Santa Helena de Goiás", + "scheduled_service": "no", + "gps_code": "SSGR", + "local_code": "GO0218" + }, + { + "id": "346660", + "ident": "BR-1604", + "type": "heliport", + "name": "Engenho d'Água Heliport", + "latitude_deg": "-23.792178", + "longitude_deg": "-45.358719", + "elevation_ft": "197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ilhabela", + "scheduled_service": "no", + "gps_code": "SNPE", + "local_code": "SP1139" + }, + { + "id": "346661", + "ident": "BR-1605", + "type": "small_airport", + "name": "Fazenda São João do Monge Airstrip", + "latitude_deg": "-14.883889", + "longitude_deg": "-47.641389", + "elevation_ft": "3606", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Água Fria de Goiás", + "scheduled_service": "no", + "gps_code": "SD72", + "local_code": "GO0236" + }, + { + "id": "346663", + "ident": "BR-1606", + "type": "small_airport", + "name": "Fazenda Alternativa Airstrip", + "latitude_deg": "-11.23", + "longitude_deg": "-47.165833", + "elevation_ft": "1627", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Almas", + "scheduled_service": "no", + "gps_code": "SD77", + "local_code": "TO0070" + }, + { + "id": "346665", + "ident": "BR-1607", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-22.192362", + "longitude_deg": "-56.942933", + "elevation_ft": "689", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bela Vista", + "scheduled_service": "no", + "gps_code": "SD79", + "local_code": "MS0531" + }, + { + "id": "346956", + "ident": "BR-1608", + "type": "heliport", + "name": "Cata Helipad", + "latitude_deg": "-27.008333", + "longitude_deg": "-48.611111", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Balneário Camboriú", + "scheduled_service": "no", + "gps_code": "SD44", + "local_code": "SC0178" + }, + { + "id": "347034", + "ident": "BR-1609", + "type": "small_airport", + "name": "Fazenda Ventura IV Airport", + "latitude_deg": "-13.141003", + "longitude_deg": "-46.164143", + "elevation_ft": "3064", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SSVB", + "local_code": "BA0166" + }, + { + "id": "347121", + "ident": "BR-1610", + "type": "heliport", + "name": "Condomínio Village da Serra Heliport", + "latitude_deg": "-4.260991", + "longitude_deg": "-38.94063", + "elevation_ft": "3015", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Guaramiranga", + "scheduled_service": "no", + "gps_code": "SD82", + "local_code": "CE0146" + }, + { + "id": "347128", + "ident": "BR-1611", + "type": "heliport", + "name": "Haras Rei Davi Heliport", + "latitude_deg": "-20.165555", + "longitude_deg": "-44.3675", + "elevation_ft": "2802", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Itatiaiuçu", + "scheduled_service": "no", + "gps_code": "SD83", + "local_code": "MG0496" + }, + { + "id": "347129", + "ident": "BR-1612", + "type": "small_airport", + "name": "Aeroluck Airport", + "latitude_deg": "-11.844123", + "longitude_deg": "-55.452546", + "elevation_ft": "1243", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sinop", + "scheduled_service": "no", + "gps_code": "SD84", + "local_code": "MT0732" + }, + { + "id": "347170", + "ident": "BR-1613", + "type": "small_airport", + "name": "Alex Testoni Airstrip", + "latitude_deg": "-10.699722", + "longitude_deg": "-62.276944", + "elevation_ft": "886", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Ouro Preto do Oeste", + "scheduled_service": "no", + "gps_code": "SD86", + "local_code": "RO0073" + }, + { + "id": "347171", + "ident": "BR-1614", + "type": "small_airport", + "name": "Fazenda Salto Airstrip", + "latitude_deg": "-21.359444", + "longitude_deg": "-55.768056", + "elevation_ft": "942", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nioaque", + "scheduled_service": "no", + "gps_code": "SD87", + "local_code": "MS0556" + }, + { + "id": "347174", + "ident": "BR-1615", + "type": "small_airport", + "name": "Fazenda Santa Maria Airstrip", + "latitude_deg": "-16.08965", + "longitude_deg": "-58.73188", + "elevation_ft": "564", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Esperidião", + "scheduled_service": "no", + "gps_code": "SD88", + "local_code": "MT0659" + }, + { + "id": "347261", + "ident": "BR-1616", + "type": "small_airport", + "name": "Fazenda Santa Helena Airport", + "latitude_deg": "-21.056171", + "longitude_deg": "-57.513712", + "elevation_ft": "433", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SD96", + "local_code": "MS0547" + }, + { + "id": "347263", + "ident": "BR-1617", + "type": "small_airport", + "name": "NSA-PA Airport", + "latitude_deg": "-8.458121", + "longitude_deg": "-50.990698", + "elevation_ft": "1073", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Cumaru do Norte", + "scheduled_service": "no", + "gps_code": "SD98", + "local_code": "PA0290" + }, + { + "id": "347297", + "ident": "BR-1618", + "type": "heliport", + "name": "Hemmer Heliport", + "latitude_deg": "-26.884407", + "longitude_deg": "-49.138364", + "elevation_ft": "159", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Santo Amaro da Imperatriz", + "scheduled_service": "no", + "local_code": "SC0188" + }, + { + "id": "347298", + "ident": "BR-1619", + "type": "heliport", + "name": "Ninho Pássaro Heliport", + "latitude_deg": "-26.872641", + "longitude_deg": "-48.666478", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Navegantes", + "scheduled_service": "no", + "gps_code": "SIRG", + "local_code": "SC0176" + }, + { + "id": "347299", + "ident": "BR-1620", + "type": "small_airport", + "name": "Aeroata Airport", + "latitude_deg": "-21.2532", + "longitude_deg": "-50.5337", + "elevation_ft": "1381", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araçatuba", + "scheduled_service": "no", + "gps_code": "SDID", + "local_code": "SP1246", + "keywords": "Aerococo" + }, + { + "id": "347368", + "ident": "BR-1621", + "type": "small_airport", + "name": "Fazenda Agrícola Godoy Airport", + "latitude_deg": "-17.6175", + "longitude_deg": "-47.52682", + "elevation_ft": "3084", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Catalão", + "scheduled_service": "no", + "gps_code": "SIZI", + "local_code": "GO0282" + }, + { + "id": "347372", + "ident": "BR-1622", + "type": "small_airport", + "name": "Fazenda Nossa Senhora das Graças Airport", + "latitude_deg": "-22.742494", + "longitude_deg": "-53.803235", + "elevation_ft": "997", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Jateí", + "scheduled_service": "no", + "gps_code": "SNAI", + "local_code": "MS0520" + }, + { + "id": "347373", + "ident": "BR-1623", + "type": "small_airport", + "name": "Fazenda Agropecuária Camargos Airstrip", + "latitude_deg": "-16.55293", + "longitude_deg": "-46.7692", + "elevation_ft": "2067", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Unaí", + "scheduled_service": "no", + "gps_code": "SNBL", + "local_code": "MG0477" + }, + { + "id": "347375", + "ident": "BR-1624", + "type": "heliport", + "name": "Schõn Heliport", + "latitude_deg": "-24.754589", + "longitude_deg": "-51.76122", + "elevation_ft": "2913", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Pitanga", + "scheduled_service": "no", + "gps_code": "SNPM", + "local_code": "PR0205" + }, + { + "id": "347379", + "ident": "BR-1625", + "type": "small_airport", + "name": "Fazenda Paraíso Airstrip", + "latitude_deg": "-19.923333", + "longitude_deg": "-52.160833", + "elevation_ft": "1414", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Inocência", + "scheduled_service": "no", + "gps_code": "SNQF", + "local_code": "MS0486" + }, + { + "id": "347381", + "ident": "BR-1626", + "type": "small_airport", + "name": "Fazenda Mata Roxa Airport", + "latitude_deg": "-18.20525", + "longitude_deg": "-48.2806", + "elevation_ft": "1962", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Nova Aurora", + "scheduled_service": "no", + "gps_code": "SSSQ", + "local_code": "GO0284" + }, + { + "id": "347437", + "ident": "BR-1627", + "type": "small_airport", + "name": "Fazenda Caruan Airport", + "latitude_deg": "-14.940775", + "longitude_deg": "-58.088695", + "elevation_ft": "1775", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Salto do Céu", + "scheduled_service": "no", + "gps_code": "SDE7", + "local_code": "MT0695" + }, + { + "id": "351610", + "ident": "BR-1628", + "type": "heliport", + "name": "Isogama Heliport", + "latitude_deg": "-25.633333", + "longitude_deg": "-49.161111", + "elevation_ft": "2976", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "São José dos Pinhais", + "scheduled_service": "no", + "gps_code": "SSIG", + "local_code": "PR0138" + }, + { + "id": "351612", + "ident": "BR-1629", + "type": "heliport", + "name": "Teuto Heliport", + "latitude_deg": "-16.406354", + "longitude_deg": "-48.916272", + "elevation_ft": "3622", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Leopoldo de Bulhões", + "scheduled_service": "no", + "gps_code": "SSII", + "local_code": "GO0169" + }, + { + "id": "347525", + "ident": "BR-1630", + "type": "small_airport", + "name": "Fazenda Santa Lúcia Airport", + "latitude_deg": "-10.74586", + "longitude_deg": "-69.199121", + "elevation_ft": "955", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Brasiléia", + "scheduled_service": "no", + "gps_code": "SWHJ", + "local_code": "AC0013" + }, + { + "id": "347526", + "ident": "BR-1631", + "type": "heliport", + "name": "Botelho Belchior Heliport", + "latitude_deg": "-4.378188", + "longitude_deg": "-39.03395", + "elevation_ft": "2520", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Aratuba", + "scheduled_service": "no", + "gps_code": "SNBO", + "local_code": "CE0134" + }, + { + "id": "347528", + "ident": "BR-1632", + "type": "small_airport", + "name": "Fazenda Serrana Airstrip", + "latitude_deg": "-21.145278", + "longitude_deg": "-55.362778", + "elevation_ft": "1716", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Maracaju", + "scheduled_service": "no", + "gps_code": "SJSF", + "local_code": "MS0494" + }, + { + "id": "347568", + "ident": "BR-1633", + "type": "closed", + "name": "Iporá Airport", + "latitude_deg": "-16.405", + "longitude_deg": "-51.088889", + "elevation_ft": "2055", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Iporá", + "scheduled_service": "no" + }, + { + "id": "347611", + "ident": "BR-1634", + "type": "heliport", + "name": "Torre Harmony Helipad", + "latitude_deg": "-26.987238", + "longitude_deg": "-48.632778", + "elevation_ft": "597", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Balneário Camboriú", + "scheduled_service": "no", + "gps_code": "SNAA", + "local_code": "SC0108", + "home_link": "https://www.harmonybc.com.br/" + }, + { + "id": "347853", + "ident": "BR-1635", + "type": "heliport", + "name": "Teimoso Heliport", + "latitude_deg": "-25.426667", + "longitude_deg": "-49.524722", + "elevation_ft": "3133", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Campo Largo", + "scheduled_service": "no", + "gps_code": "SJQA", + "local_code": "PR0154" + }, + { + "id": "347854", + "ident": "BR-1636", + "type": "small_airport", + "name": "Fazenda Piloto Padrão KKS37/3 Airstrip", + "latitude_deg": "-22.641944", + "longitude_deg": "-43.373611", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Duque de Caxias", + "scheduled_service": "no", + "gps_code": "SNAH", + "local_code": "RJ0342" + }, + { + "id": "347865", + "ident": "BR-1637", + "type": "small_airport", + "name": "Fazenda Sertãozinho Airstrip", + "latitude_deg": "-19.287222", + "longitude_deg": "-56.135395", + "elevation_ft": "387", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SSTZ", + "local_code": "MS0335" + }, + { + "id": "347934", + "ident": "BR-1638", + "type": "closed", + "name": "Prainha Airport", + "latitude_deg": "-7.235349", + "longitude_deg": "-60.64466", + "elevation_ft": "197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Apuí", + "scheduled_service": "no", + "local_code": "AM0008", + "keywords": "SNRA" + }, + { + "id": "348364", + "ident": "BR-1639", + "type": "small_airport", + "name": "Ribeirão Cascalheira (SOS Mecanica Diesel) Airport", + "latitude_deg": "-12.91111", + "longitude_deg": "-51.81561", + "elevation_ft": "1280", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Ribeirão Cascalheira", + "scheduled_service": "no" + }, + { + "id": "348365", + "ident": "BR-1640", + "type": "heliport", + "name": "Palácio Laranjeiras Heliport", + "latitude_deg": "-22.93074", + "longitude_deg": "-43.18522", + "elevation_ft": "198", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SWLG" + }, + { + "id": "348485", + "ident": "BR-1641", + "type": "small_airport", + "name": "Curral Alto Airport", + "latitude_deg": "-32.94744", + "longitude_deg": "-52.76305", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Santa Vitória do Palmar", + "scheduled_service": "no" + }, + { + "id": "348487", + "ident": "BR-1642", + "type": "small_airport", + "name": "LS Aviação Agrícola Airport", + "latitude_deg": "-30.22614", + "longitude_deg": "-50.42398", + "elevation_ft": "46", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Palmares do Sul", + "scheduled_service": "no" + }, + { + "id": "348488", + "ident": "BR-1643", + "type": "small_airport", + "name": "Sitio do Cascão Private Airport", + "latitude_deg": "-24.26051", + "longitude_deg": "-46.98741", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Peruibe", + "scheduled_service": "no", + "keywords": "SSCC" + }, + { + "id": "348593", + "ident": "BR-1644", + "type": "small_airport", + "name": "Praia Santana Airport", + "latitude_deg": "-13.91231", + "longitude_deg": "-38.93468", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Maraú", + "scheduled_service": "no" + }, + { + "id": "348594", + "ident": "BR-1645", + "type": "small_airport", + "name": "Pontinha Airport", + "latitude_deg": "-13.159467", + "longitude_deg": "-38.856039", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Jaguaripe", + "scheduled_service": "no" + }, + { + "id": "348595", + "ident": "BR-1646", + "type": "small_airport", + "name": "Engenho Tentugal Airport", + "latitude_deg": "-8.86545", + "longitude_deg": "-35.17027", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "São José da Coroa Grande", + "scheduled_service": "no" + }, + { + "id": "348596", + "ident": "BR-1647", + "type": "closed", + "name": "Costa dos Corais - Maragogi Airport (under construction)", + "latitude_deg": "-8.99796", + "longitude_deg": "-35.24374", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Maragogi", + "scheduled_service": "no" + }, + { + "id": "348597", + "ident": "BR-1648", + "type": "small_airport", + "name": "Usina União Industria Private Airport", + "latitude_deg": "-8.34558", + "longitude_deg": "-35.37505", + "elevation_ft": "436", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Primavera", + "scheduled_service": "no" + }, + { + "id": "348598", + "ident": "BR-1649", + "type": "small_airport", + "name": "Rio de Pirucaia Airport", + "latitude_deg": "-7.012956", + "longitude_deg": "-34.981397", + "elevation_ft": "180", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Nossa Senhora do Livramento", + "scheduled_service": "no" + }, + { + "id": "348599", + "ident": "BR-1650", + "type": "small_airport", + "name": "Rio Tinto Airport", + "latitude_deg": "-6.792254", + "longitude_deg": "-35.101147", + "elevation_ft": "443", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Rio Tinto", + "scheduled_service": "no" + }, + { + "id": "348600", + "ident": "BR-1651", + "type": "small_airport", + "name": "Fazenda Santa Joana Airport", + "latitude_deg": "-13.25999", + "longitude_deg": "-55.67175", + "elevation_ft": "1450", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no" + }, + { + "id": "348601", + "ident": "BR-1652", + "type": "small_airport", + "name": "Rancho do Povo Airport", + "latitude_deg": "-4.72725", + "longitude_deg": "-37.83157", + "elevation_ft": "125", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Itaiçaba", + "scheduled_service": "no" + }, + { + "id": "348602", + "ident": "BR-1653", + "type": "small_airport", + "name": "Outeiro Airport", + "latitude_deg": "-4.64604", + "longitude_deg": "-37.79253", + "elevation_ft": "69", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Aracati", + "scheduled_service": "no" + }, + { + "id": "348603", + "ident": "BR-1654", + "type": "small_airport", + "name": "Cajucoco Airport", + "latitude_deg": "-2.91477", + "longitude_deg": "-39.95545", + "elevation_ft": "72", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Itarema", + "scheduled_service": "no" + }, + { + "id": "348604", + "ident": "BR-1655", + "type": "small_airport", + "name": "Primeira Cruz Airport", + "latitude_deg": "-2.50234", + "longitude_deg": "-43.43046", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Primeira Cruz", + "scheduled_service": "no" + }, + { + "id": "348605", + "ident": "BR-1656", + "type": "small_airport", + "name": "Cândido Mendes Airport", + "latitude_deg": "-1.44832", + "longitude_deg": "-45.72671", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Cândido Mendes", + "scheduled_service": "no" + }, + { + "id": "348606", + "ident": "BR-1657", + "type": "closed", + "name": "Godofredo Viana Airport", + "latitude_deg": "-1.42228", + "longitude_deg": "-45.76775", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Godofredo Viana", + "scheduled_service": "no" + }, + { + "id": "348607", + "ident": "BR-1658", + "type": "small_airport", + "name": "Bragança - Juscelino Kubitschek Regional Airport", + "latitude_deg": "-1.04644", + "longitude_deg": "-46.78199", + "elevation_ft": "137", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Bragança", + "scheduled_service": "no" + }, + { + "id": "348608", + "ident": "BR-1659", + "type": "small_airport", + "name": "Curuçá Airport", + "latitude_deg": "-0.75629", + "longitude_deg": "-47.86161", + "elevation_ft": "102", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Curuçá", + "scheduled_service": "no" + }, + { + "id": "348609", + "ident": "BR-1660", + "type": "small_airport", + "name": "Santa Cruz do Arari Airport", + "latitude_deg": "-0.66631", + "longitude_deg": "-49.176804", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santa Cruz do Arari", + "scheduled_service": "no" + }, + { + "id": "348610", + "ident": "BR-1661", + "type": "small_airport", + "name": "Arapixi Airport", + "latitude_deg": "-0.26012", + "longitude_deg": "-49.44055", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Chaves", + "scheduled_service": "no" + }, + { + "id": "348611", + "ident": "BR-1662", + "type": "small_airport", + "name": "Amapá South Airport", + "latitude_deg": "2.01811", + "longitude_deg": "-50.79728", + "elevation_ft": "43", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Amapá", + "scheduled_service": "no" + }, + { + "id": "348612", + "ident": "BR-1663", + "type": "small_airport", + "name": "Aldeia Kumarumã Airport", + "latitude_deg": "3.38652", + "longitude_deg": "-51.29978", + "elevation_ft": "39", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Oiapoque", + "scheduled_service": "no", + "gps_code": "SDZ6", + "local_code": "AP0021" + }, + { + "id": "348613", + "ident": "BR-1664", + "type": "small_airport", + "name": "Vila Velha Airport", + "latitude_deg": "3.21394", + "longitude_deg": "-51.23062", + "elevation_ft": "69", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Oiapoque", + "scheduled_service": "no" + }, + { + "id": "348748", + "ident": "BR-1665", + "type": "small_airport", + "name": "Ponta Mogiquiçaba Airport", + "latitude_deg": "-16.1585", + "longitude_deg": "-38.96344", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Santa Cruz Cabrália", + "scheduled_service": "no" + }, + { + "id": "349281", + "ident": "BR-1666", + "type": "heliport", + "name": "Cidade Helipad", + "latitude_deg": "-23.545891", + "longitude_deg": "-46.632532", + "elevation_ft": "2634", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDIA", + "local_code": "SP0353" + }, + { + "id": "349349", + "ident": "BR-1667", + "type": "small_airport", + "name": "Mazagão Airport", + "latitude_deg": "-0.09399", + "longitude_deg": "-51.27579", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Mazagão", + "scheduled_service": "no" + }, + { + "id": "349685", + "ident": "BR-1668", + "type": "closed", + "name": "Açude Araras Airport", + "latitude_deg": "-4.182593", + "longitude_deg": "-40.502608", + "elevation_ft": "738", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Varjota", + "scheduled_service": "no" + }, + { + "id": "349688", + "ident": "BR-1669", + "type": "closed", + "name": "Curva Preta Airport", + "latitude_deg": "-4.01847", + "longitude_deg": "-42.514944", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Curva Preta", + "scheduled_service": "no" + }, + { + "id": "349700", + "ident": "BR-1670", + "type": "small_airport", + "name": "Fazenda Irajá Airport", + "latitude_deg": "-7.317425", + "longitude_deg": "-46.073893", + "elevation_ft": "902", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Balsas", + "scheduled_service": "no", + "gps_code": "SNOA", + "local_code": "MA0040" + }, + { + "id": "35645", + "ident": "BR-1671", + "type": "heliport", + "name": "Fazenda Marambaia Heliport", + "latitude_deg": "-22.4475", + "longitude_deg": "-43.128334", + "elevation_ft": "2395", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Petrópolis", + "scheduled_service": "no" + }, + { + "id": "352530", + "ident": "BR-1672", + "type": "small_airport", + "name": "E-AR Airport", + "latitude_deg": "-15.700361", + "longitude_deg": "-47.737323", + "elevation_ft": "3602", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SWXU", + "local_code": "DF0045" + }, + { + "id": "352672", + "ident": "BR-1673", + "type": "small_airport", + "name": "Caxixe (ACA) Airstrip", + "latitude_deg": "-20.388889", + "longitude_deg": "-41.078611", + "elevation_ft": "3392", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Venda Nova do Imigrante", + "scheduled_service": "no", + "gps_code": "SSDC", + "local_code": "ES0027" + }, + { + "id": "352886", + "ident": "BR-1674", + "type": "small_airport", + "name": "Monte Azul Airstrip", + "latitude_deg": "-15.200473", + "longitude_deg": "-42.895957", + "elevation_ft": "2000", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Monte Azul", + "scheduled_service": "no" + }, + { + "id": "352945", + "ident": "BR-1675", + "type": "small_airport", + "name": "Luís Eduardo Magalhães Airport", + "latitude_deg": "-12.06822", + "longitude_deg": "-45.71153", + "elevation_ft": "2529", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Luís Eduardo Magalhães", + "scheduled_service": "no", + "gps_code": "SWNB", + "local_code": "BA0182" + }, + { + "id": "352946", + "ident": "BR-1676", + "type": "small_airport", + "name": "Jardim Ipé Airport", + "latitude_deg": "-12.06647", + "longitude_deg": "-45.75179", + "elevation_ft": "2516", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Luís Eduardo Magalhães", + "scheduled_service": "no" + }, + { + "id": "352978", + "ident": "BR-1677", + "type": "heliport", + "name": "Trend Tower Helipad", + "latitude_deg": "-23.485749", + "longitude_deg": "-46.855175", + "elevation_ft": "3104", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SWDJ", + "local_code": "SP0872" + }, + { + "id": "353330", + "ident": "BR-1678", + "type": "heliport", + "name": "APTA Helipad", + "latitude_deg": "-23.768049", + "longitude_deg": "-46.592816", + "elevation_ft": "2552", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Bernardo do Campo", + "scheduled_service": "no", + "gps_code": "SWOP", + "local_code": "SP0821" + }, + { + "id": "353756", + "ident": "BR-1679", + "type": "heliport", + "name": "Hospital Público Regional de Betim Helipad", + "latitude_deg": "-19.947886", + "longitude_deg": "-44.189866", + "elevation_ft": "2792", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Betim", + "scheduled_service": "no", + "gps_code": "SSGK", + "local_code": "MG0447" + }, + { + "id": "353894", + "ident": "BR-1680", + "type": "heliport", + "name": "Portal Piçarras Heliport", + "latitude_deg": "-26.7818", + "longitude_deg": "-48.68848", + "elevation_ft": "105", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Balneário Piçarras", + "scheduled_service": "no", + "gps_code": "SJHP", + "local_code": "SC0161" + }, + { + "id": "36580", + "ident": "BR-1681", + "type": "closed", + "name": "Frisama Eldorado Airport", + "latitude_deg": "-6.091942", + "longitude_deg": "-49.358976", + "elevation_ft": "384", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Eldorado do Carajás", + "scheduled_service": "no", + "keywords": "SJHL" + }, + { + "id": "30286", + "ident": "BR-1682", + "type": "closed", + "name": "Prata Airport", + "latitude_deg": "-19.333099", + "longitude_deg": "-48.944698", + "elevation_ft": "2172", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Prata", + "scheduled_service": "no", + "keywords": "SNRT" + }, + { + "id": "37285", + "ident": "BR-1683", + "type": "small_airport", + "name": "Fazenda Nova Aurora Airport", + "latitude_deg": "-22.216944", + "longitude_deg": "-52.740276", + "elevation_ft": "951", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Anaurilândia", + "scheduled_service": "no" + }, + { + "id": "36263", + "ident": "BR-1684", + "type": "small_airport", + "name": "Carmine Castaldo Airport", + "latitude_deg": "-11.302222", + "longitude_deg": "-56.836666", + "elevation_ft": "1889", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tabaporã", + "scheduled_service": "no" + }, + { + "id": "38107", + "ident": "BR-1685", + "type": "small_airport", + "name": "Uirapuru Airport", + "latitude_deg": "-14.016944", + "longitude_deg": "-59.367222", + "elevation_ft": "1575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Uirapuru", + "scheduled_service": "no" + }, + { + "id": "35776", + "ident": "BR-1686", + "type": "closed", + "name": "Aldeia Kremoro Airport", + "latitude_deg": "-7.207261", + "longitude_deg": "-52.906981", + "elevation_ft": "3281", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Peixoto De Azevedo", + "scheduled_service": "no", + "keywords": "SDVU" + }, + { + "id": "354094", + "ident": "BR-1687", + "type": "closed", + "name": "Dolores Heliport", + "latitude_deg": "-26.259465", + "longitude_deg": "-49.510403", + "elevation_ft": "2743", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Rio Negrinho", + "scheduled_service": "no", + "local_code": "SC0075", + "keywords": "SNDY" + }, + { + "id": "354151", + "ident": "BR-1688", + "type": "small_airport", + "name": "Fazenda Murará Airport", + "latitude_deg": "3.24609", + "longitude_deg": "-60.239986", + "elevation_ft": "381", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Bonfim", + "scheduled_service": "no", + "gps_code": "SSJL", + "local_code": "RR0104" + }, + { + "id": "354152", + "ident": "BR-1689", + "type": "heliport", + "name": "Emphos Heliport", + "latitude_deg": "-27.587196", + "longitude_deg": "-48.611568", + "elevation_ft": "223", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "São José", + "scheduled_service": "no", + "gps_code": "SSJE", + "local_code": "SC0095" + }, + { + "id": "354161", + "ident": "BR-1690", + "type": "small_airport", + "name": "Fazenda Três Irmãos Airport", + "latitude_deg": "-9.345287", + "longitude_deg": "-55.884361", + "elevation_ft": "948", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Novo Progresso", + "scheduled_service": "no", + "gps_code": "SSIY", + "local_code": "PA0127" + }, + { + "id": "354162", + "ident": "BR-1691", + "type": "heliport", + "name": "Itamar Musse Heliport", + "latitude_deg": "-12.874726", + "longitude_deg": "-38.316552", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Lauro de Freitas", + "scheduled_service": "no", + "gps_code": "SSIW", + "local_code": "BA0219" + }, + { + "id": "354163", + "ident": "BR-1692", + "type": "heliport", + "name": "Delta Heliport", + "latitude_deg": "-2.477717", + "longitude_deg": "-44.183729", + "elevation_ft": "141", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "São José de Ribamar", + "scheduled_service": "no", + "gps_code": "SSIV", + "local_code": "MA0069" + }, + { + "id": "354164", + "ident": "BR-1693", + "type": "small_airport", + "name": "Rancho Toca do Lobo Airport", + "latitude_deg": "-14.660892", + "longitude_deg": "-57.291439", + "elevation_ft": "1673", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Olímpia", + "scheduled_service": "no", + "gps_code": "SSIT", + "local_code": "MT0292" + }, + { + "id": "354260", + "ident": "BR-1694", + "type": "heliport", + "name": "Cacau Show Helipad", + "latitude_deg": "-23.518415", + "longitude_deg": "-46.965371", + "elevation_ft": "2730", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapevi", + "scheduled_service": "no", + "gps_code": "SWUS", + "local_code": "SP0835" + }, + { + "id": "354264", + "ident": "BR-1695", + "type": "small_airport", + "name": "São Gotardo Airport", + "latitude_deg": "-19.3475", + "longitude_deg": "-46.104167", + "elevation_ft": "3862", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "São Gotardo", + "scheduled_service": "no", + "gps_code": "SWUJ", + "local_code": "MG0204" + }, + { + "id": "354265", + "ident": "BR-1696", + "type": "small_airport", + "name": "Fazenda Nova Agropecuária Airport", + "latitude_deg": "-9.295307", + "longitude_deg": "-58.143611", + "elevation_ft": "725", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Bandeirantes", + "scheduled_service": "no", + "gps_code": "SWTD", + "local_code": "MT0405" + }, + { + "id": "354266", + "ident": "BR-1697", + "type": "small_airport", + "name": "Fazenda Beatriz Airport", + "latitude_deg": "-21.071458", + "longitude_deg": "-52.105116", + "elevation_ft": "961", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Brasilândia", + "scheduled_service": "no", + "gps_code": "SWTC", + "local_code": "MS0395" + }, + { + "id": "354275", + "ident": "BR-1698", + "type": "heliport", + "name": "Rochaverá – Alfa Helipad", + "latitude_deg": "-23.62264", + "longitude_deg": "-46.70044", + "elevation_ft": "2631", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SWRV", + "local_code": "SP0828" + }, + { + "id": "354298", + "ident": "BR-1699", + "type": "small_airport", + "name": "Assis Brasil Airport", + "latitude_deg": "-10.925212", + "longitude_deg": "-69.557254", + "elevation_ft": "965", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Assis Brasil", + "scheduled_service": "no" + }, + { + "id": "354304", + "ident": "BR-1700", + "type": "heliport", + "name": "Pousada Kaluana Heliport", + "latitude_deg": "-13.882125", + "longitude_deg": "-38.944659", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Maraú", + "scheduled_service": "no" + }, + { + "id": "354308", + "ident": "BR-1701", + "type": "small_airport", + "name": "Ruy Barbosa Airport", + "latitude_deg": "-12.271628", + "longitude_deg": "-40.530149", + "elevation_ft": "1325", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Ruy Barbosa", + "scheduled_service": "no", + "gps_code": "SSLS", + "local_code": "BA0035", + "keywords": "Dr Otto Alencar" + }, + { + "id": "354495", + "ident": "BR-1702", + "type": "small_airport", + "name": "Fazenda Dois Irmãos Airport", + "latitude_deg": "-13.6025", + "longitude_deg": "-57.875", + "elevation_ft": "1795", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo do Parecis", + "scheduled_service": "no", + "gps_code": "SDLI", + "local_code": "MT0570" + }, + { + "id": "354764", + "ident": "BR-1703", + "type": "heliport", + "name": "Stelita Heliport", + "latitude_deg": "-22.228889", + "longitude_deg": "-45.967222", + "elevation_ft": "2831", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Pouso Alegre", + "scheduled_service": "no", + "gps_code": "SWTA", + "local_code": "MG0286" + }, + { + "id": "354765", + "ident": "BR-1704", + "type": "small_airport", + "name": "Fazenda Santa Umbelina Airstrip", + "latitude_deg": "-22.939326", + "longitude_deg": "-53.830218", + "elevation_ft": "1132", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Naviraí", + "scheduled_service": "no", + "gps_code": "SWSU", + "local_code": "MS0394" + }, + { + "id": "354766", + "ident": "BR-1705", + "type": "small_airport", + "name": "Fazenda Santa Carmem Airport", + "latitude_deg": "-13.284672", + "longitude_deg": "-55.127051", + "elevation_ft": "1437", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Ubiratã", + "scheduled_service": "no", + "keywords": "SWSK" + }, + { + "id": "354768", + "ident": "BR-1706", + "type": "heliport", + "name": "Akron Helipad", + "latitude_deg": "-23.609231", + "longitude_deg": "-46.606144", + "elevation_ft": "2510", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SWSK", + "local_code": "SP0829" + }, + { + "id": "354854", + "ident": "BR-1707", + "type": "closed", + "name": "Salvador Aeroclub", + "latitude_deg": "-12.982562", + "longitude_deg": "-38.430905", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Salvador", + "scheduled_service": "no" + }, + { + "id": "354941", + "ident": "BR-1708", + "type": "small_airport", + "name": "Fazenda São Gotardo Airstrip", + "latitude_deg": "-13.01207", + "longitude_deg": "-57.408631", + "elevation_ft": "1250", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SNBJ", + "local_code": "MT0600" + }, + { + "id": "354972", + "ident": "BR-1709", + "type": "small_airport", + "name": "Fazenda São Francisco Airstrip", + "latitude_deg": "-18.581944", + "longitude_deg": "-45.321389", + "elevation_ft": "1955", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Morada Nova de Minas", + "scheduled_service": "no", + "gps_code": "SNKE", + "local_code": "MG0318" + }, + { + "id": "355629", + "ident": "BR-1710", + "type": "heliport", + "name": "Kartódromo Ayrton Senna Heliport", + "latitude_deg": "-23.703019", + "longitude_deg": "-46.692576", + "elevation_ft": "2546", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SSXK", + "local_code": "SP0789", + "home_link": "https://lrinterlagos.com.br/" + }, + { + "id": "355630", + "ident": "BR-1711", + "type": "heliport", + "name": "Autódromo José Carlos Pace Hospital Heliport", + "latitude_deg": "-23.700446", + "longitude_deg": "-46.695861", + "elevation_ft": "2461", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SSYH", + "local_code": "SP0791" + }, + { + "id": "355637", + "ident": "BR-1712", + "type": "heliport", + "name": "SESC Heliport", + "latitude_deg": "-12.883464", + "longitude_deg": "-38.680426", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Itaparica", + "scheduled_service": "no", + "gps_code": "SSZZ", + "local_code": "BA0226" + }, + { + "id": "355736", + "ident": "BR-1713", + "type": "small_airport", + "name": "Fazenda Ouro Verde II Airport", + "latitude_deg": "-13.516283", + "longitude_deg": "-57.892156", + "elevation_ft": "1722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo do Parecis", + "scheduled_service": "no", + "gps_code": "SWUC", + "local_code": "MT0583" + }, + { + "id": "355740", + "ident": "BR-1714", + "type": "small_airport", + "name": "Agrotec Airport", + "latitude_deg": "-3.20682", + "longitude_deg": "-60.54301", + "elevation_ft": "105", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Manacapuru", + "scheduled_service": "no", + "gps_code": "SDGT", + "local_code": "AM0028" + }, + { + "id": "355741", + "ident": "BR-1715", + "type": "heliport", + "name": "Hospital Universitário UNIFAP Helipad", + "latitude_deg": "0.000032", + "longitude_deg": "-51.083325", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Macapá", + "scheduled_service": "no", + "local_code": "AP0020" + }, + { + "id": "355744", + "ident": "BR-1716", + "type": "heliport", + "name": "Internacional Plaza II Helipad", + "latitude_deg": "-23.591111", + "longitude_deg": "-46.682222", + "elevation_ft": "2717", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDXQ", + "local_code": "SP0445" + }, + { + "id": "355758", + "ident": "BR-1717", + "type": "small_airport", + "name": "Fazenda Espírito Santo Airport", + "latitude_deg": "-0.988163", + "longitude_deg": "-48.8896", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Cachoeira do Arari", + "scheduled_service": "no", + "gps_code": "SIEK", + "local_code": "PA0044" + }, + { + "id": "355771", + "ident": "BR-1718", + "type": "small_airport", + "name": "Fazenda Buriti 10 Airport", + "latitude_deg": "-16.902026", + "longitude_deg": "-46.617705", + "elevation_ft": "1739", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Paracatu", + "scheduled_service": "no", + "gps_code": "SSQJ", + "local_code": "MG0293" + }, + { + "id": "355773", + "ident": "BR-1719", + "type": "small_airport", + "name": "Fazenda La Poveda Airport", + "latitude_deg": "-18.852155", + "longitude_deg": "-44.917945", + "elevation_ft": "2106", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Felixlândia", + "scheduled_service": "no", + "gps_code": "SSQL", + "local_code": "MG0187" + }, + { + "id": "355774", + "ident": "BR-1720", + "type": "small_airport", + "name": "Condomínio CLC Airport", + "latitude_deg": "-20.340621", + "longitude_deg": "-54.590126", + "elevation_ft": "2303", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "gps_code": "SSQQ", + "local_code": "MS0323" + }, + { + "id": "356152", + "ident": "BR-1721", + "type": "heliport", + "name": "Tek Nações Unidas Helipad", + "latitude_deg": "-23.616939", + "longitude_deg": "-46.701969", + "elevation_ft": "2801", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SWNX", + "local_code": "SP0871", + "keywords": "Hospital Sancta Maggiore" + }, + { + "id": "356154", + "ident": "BR-1722", + "type": "small_airport", + "name": "Fazenda Três Fronteiras Airport", + "latitude_deg": "-18.038024", + "longitude_deg": "-53.151476", + "elevation_ft": "2874", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alto Taquari", + "scheduled_service": "no", + "gps_code": "SWOF", + "local_code": "MT0371" + }, + { + "id": "356156", + "ident": "BR-1723", + "type": "small_airport", + "name": "Fazenda Marialva Airport", + "latitude_deg": "-23.018316", + "longitude_deg": "-53.980658", + "elevation_ft": "994", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Naviraí", + "scheduled_service": "no", + "gps_code": "SWOM", + "local_code": "MS0389" + }, + { + "id": "356159", + "ident": "BR-1724", + "type": "small_airport", + "name": "Pesqueiro Pantanal Airport", + "latitude_deg": "-17.324701", + "longitude_deg": "-55.528808", + "elevation_ft": "446", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santo Antônio do Leverger", + "scheduled_service": "no", + "gps_code": "SWPN", + "local_code": "MT0476" + }, + { + "id": "429896", + "ident": "BR-1725", + "type": "heliport", + "name": "Sociedade de Propósito Específico Fazenda Falésias SPE Ltda Heliport", + "latitude_deg": "-10.0275", + "longitude_deg": "-36.020833", + "elevation_ft": "115", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Jequiá da Praia", + "scheduled_service": "no", + "gps_code": "SJ2D", + "local_code": "AL0048" + }, + { + "id": "430043", + "ident": "BR-1726", + "type": "closed", + "name": "ThomasiCamargo Heliport", + "latitude_deg": "-21.715839", + "longitude_deg": "-47.480882", + "elevation_ft": "2421", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santa Rita do Passa Quatro", + "scheduled_service": "no", + "local_code": "SP0303", + "keywords": "SDCC" + }, + { + "id": "430197", + "ident": "BR-1727", + "type": "heliport", + "name": "Penitenciária Federal de Mossoró Heliport", + "latitude_deg": "-5.161247", + "longitude_deg": "-37.452339", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Mossoró", + "scheduled_service": "no", + "local_code": "RN0014" + }, + { + "id": "430296", + "ident": "BR-1728", + "type": "small_airport", + "name": "Fazenda Cifrão Airport", + "latitude_deg": "-16.938272", + "longitude_deg": "-54.436141", + "elevation_ft": "1102", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pedra Preta", + "scheduled_service": "no", + "gps_code": "SSZV", + "local_code": "MT0325" + }, + { + "id": "430298", + "ident": "BR-1729", + "type": "heliport", + "name": "Centro de Convenções de João Pessoa Heliport", + "latitude_deg": "-7.189669", + "longitude_deg": "-34.803053", + "elevation_ft": "89", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "João Pessoa", + "scheduled_service": "no", + "gps_code": "SSZU", + "local_code": "PB0020" + }, + { + "id": "430300", + "ident": "BR-1730", + "type": "heliport", + "name": "Usina Biopalma Moju Heliport", + "latitude_deg": "-2.23301", + "longitude_deg": "-48.86038", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Moju", + "scheduled_service": "no", + "gps_code": "SSUX", + "local_code": "PA0159" + }, + { + "id": "430302", + "ident": "BR-1731", + "type": "small_airport", + "name": "Fazenda Bom Jesus Airport", + "latitude_deg": "-15.770774", + "longitude_deg": "-57.741187", + "elevation_ft": "489", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Lambari d'Oeste", + "scheduled_service": "no", + "keywords": "SSUK" + }, + { + "id": "430304", + "ident": "BR-1732", + "type": "heliport", + "name": "Full Gauge Helipad", + "latitude_deg": "-29.954916", + "longitude_deg": "-51.173767", + "elevation_ft": "75", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Canoas", + "scheduled_service": "no", + "gps_code": "SSUG", + "local_code": "RS0115" + }, + { + "id": "430492", + "ident": "BR-1733", + "type": "small_airport", + "name": "Fazenda Santa Alaydes Airstrip", + "latitude_deg": "-18.459633", + "longitude_deg": "-55.533335", + "elevation_ft": "531", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SDDA", + "local_code": "MS0026" + }, + { + "id": "430493", + "ident": "BR-1734", + "type": "heliport", + "name": "Heliponto Privado Hiper Moreira", + "latitude_deg": "-16.686828", + "longitude_deg": "-49.281943", + "elevation_ft": "2530", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiânia", + "scheduled_service": "no", + "gps_code": "SDJH", + "local_code": "GO0154" + }, + { + "id": "36870", + "ident": "BR-1735", + "type": "small_airport", + "name": "Fazenda Guanabara Airport", + "latitude_deg": "-21.122742", + "longitude_deg": "-54.44674", + "elevation_ft": "1450", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Alvorada Do Sul", + "scheduled_service": "no" + }, + { + "id": "30637", + "ident": "BR-ALT", + "type": "small_airport", + "name": "Alenquer Municipal Airport", + "latitude_deg": "-1.917", + "longitude_deg": "-54.7231", + "elevation_ft": "55", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Alenquer", + "scheduled_service": "no", + "gps_code": "SDWQ", + "iata_code": "ALT", + "local_code": "PA0027", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alenquer_Airport" + }, + { + "id": "32402", + "ident": "BR-SWM", + "type": "closed", + "name": "Suia-Missu Airport", + "latitude_deg": "-11.671699523925781", + "longitude_deg": "-51.43470001220703", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alto Boa Vista", + "scheduled_service": "no", + "iata_code": "SWM" + }, + { + "id": "312520", + "ident": "BRG", + "type": "closed", + "name": "Whitesburg Municipal Airport", + "latitude_deg": "37.2219", + "longitude_deg": "-82.8742", + "elevation_ft": "1985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Whitesburg", + "scheduled_service": "no", + "keywords": "BRG, Isom Airport, Letcher County" + }, + { + "id": "46168", + "ident": "BS-0001", + "type": "closed", + "name": "Fowl Cay Airstrip", + "latitude_deg": "24.2707432941", + "longitude_deg": "-76.5409862995", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-EX", + "municipality": "Fowl Cay", + "scheduled_service": "no" + }, + { + "id": "46379", + "ident": "BS-0002", + "type": "small_airport", + "name": "Port Nelson Airstrip", + "latitude_deg": "23.651384077699998", + "longitude_deg": "-74.84506845470001", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-RC", + "municipality": "Port Nelson", + "scheduled_service": "no" + }, + { + "id": "46380", + "ident": "BS-0003", + "type": "small_airport", + "name": "Cape Santa Maria Airstrip", + "latitude_deg": "23.649674", + "longitude_deg": "-75.32409", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-LI", + "municipality": "Galliot Cay", + "scheduled_service": "no", + "gps_code": "MYLM" + }, + { + "id": "46381", + "ident": "BS-0004", + "type": "small_airport", + "name": "Cave Cay Airstrip", + "latitude_deg": "23.911301835800003", + "longitude_deg": "-76.27444982530001", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-EX", + "municipality": "Cave Cay", + "scheduled_service": "no" + }, + { + "id": "46382", + "ident": "BS-0005", + "type": "small_airport", + "name": "Farmers Cay Airstrip", + "latitude_deg": "23.961372", + "longitude_deg": "-76.326206", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-EX", + "municipality": "Little Farmers Cay", + "scheduled_service": "no" + }, + { + "id": "309771", + "ident": "BS-0006", + "type": "closed", + "name": "Castaway Cay (Gorda Cay) Airstrip", + "latitude_deg": "26.091254", + "longitude_deg": "-77.540721", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-SO", + "municipality": "Castaway Cay", + "scheduled_service": "no", + "gps_code": "MYAG", + "local_code": "MYAG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Castaway_Cay" + }, + { + "id": "336103", + "ident": "BS-0007", + "type": "heliport", + "name": "Big Grand Cay Heliport", + "latitude_deg": "27.22029", + "longitude_deg": "-78.31317", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-NO", + "municipality": "Grand Cay", + "scheduled_service": "no" + }, + { + "id": "336132", + "ident": "BS-0008", + "type": "heliport", + "name": "Nassau Helicopters Heliport", + "latitude_deg": "25.07765", + "longitude_deg": "-77.33321", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-NP", + "municipality": "Nassau", + "scheduled_service": "no" + }, + { + "id": "336133", + "ident": "BS-0009", + "type": "closed", + "name": "Andros Central / Twin Lakes Airport", + "latitude_deg": "24.725569", + "longitude_deg": "-77.987201", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-CS", + "municipality": "Twin Lakes", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Andros_Central_Airport" + }, + { + "id": "337552", + "ident": "BS-0010", + "type": "seaplane_base", + "name": "Overyonder Cay Seaplane Base", + "latitude_deg": "24.2235", + "longitude_deg": "-76.48089", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-EX", + "municipality": "Overyonder Cay", + "scheduled_service": "no" + }, + { + "id": "337553", + "ident": "BS-0011", + "type": "seaplane_base", + "name": "Little Pipe Cay Seaplane Base", + "latitude_deg": "24.234211", + "longitude_deg": "-76.500369", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-EX", + "municipality": "Little Pipe Cay", + "scheduled_service": "no" + }, + { + "id": "341395", + "ident": "BS-0012", + "type": "heliport", + "name": "Mister Beast Island Helipad", + "latitude_deg": "24.22775", + "longitude_deg": "-77.62271", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-SA", + "municipality": "Bastian Point Settlement", + "scheduled_service": "no" + }, + { + "id": "345269", + "ident": "BS-0013", + "type": "closed", + "name": "Soldier Cay Airstrip", + "latitude_deg": "24.33196", + "longitude_deg": "-76.5553", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-EX", + "municipality": "Soldier Cay", + "scheduled_service": "no" + }, + { + "id": "347596", + "ident": "BS-0014", + "type": "heliport", + "name": "Abaco Beach Resort Heliport", + "latitude_deg": "26.54479", + "longitude_deg": "-77.04516", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-CO", + "municipality": "Marsh Harbour", + "scheduled_service": "no" + }, + { + "id": "348917", + "ident": "BS-0015", + "type": "closed", + "name": "Wilson City Airport", + "latitude_deg": "26.37474", + "longitude_deg": "-77.00429", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-CO", + "municipality": "Wilson City", + "scheduled_service": "no" + }, + { + "id": "348918", + "ident": "BS-0016", + "type": "heliport", + "name": "Elbow Cay Emergency Helipad", + "latitude_deg": "26.54091", + "longitude_deg": "-76.95898", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-CO", + "municipality": "Elbow Cay", + "scheduled_service": "no" + }, + { + "id": "355786", + "ident": "BS-0017", + "type": "heliport", + "name": "Cargill Creek Settlement Heliport", + "latitude_deg": "24.49789", + "longitude_deg": "-77.71867", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-CS", + "municipality": "Cargill Creek Settlement", + "scheduled_service": "no" + }, + { + "id": "35303", + "ident": "BS-NSB", + "type": "seaplane_base", + "name": "Bimini North Seaplane Base", + "latitude_deg": "25.767000198364258", + "longitude_deg": "-79.25", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-BI", + "municipality": "Bimini", + "scheduled_service": "yes", + "iata_code": "NSB" + }, + { + "id": "302403", + "ident": "BSI", + "type": "closed", + "name": "Jim Shearer South Airport", + "latitude_deg": "40.444722", + "longitude_deg": "-79.288637", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Blairsville", + "scheduled_service": "no", + "keywords": "PA48, BSI" + }, + { + "id": "301802", + "ident": "BSP", + "type": "small_airport", + "name": "Bensbach Airport", + "latitude_deg": "-8.85805555556", + "longitude_deg": "141.259444444", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Bensbach", + "scheduled_service": "no", + "gps_code": "AYBH", + "iata_code": "BSP", + "local_code": "BEN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bensbach_Airport" + }, + { + "id": "302396", + "ident": "BSV", + "type": "small_airport", + "name": "Besakoa Airport", + "latitude_deg": "-15.6725", + "longitude_deg": "47.061667", + "elevation_ft": "40", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Besakoa", + "scheduled_service": "no", + "iata_code": "BSV" + }, + { + "id": "340533", + "ident": "BT-0001", + "type": "heliport", + "name": "Royal Bhutan Police Heliport", + "latitude_deg": "27.464609", + "longitude_deg": "89.639314", + "continent": "AS", + "iso_country": "BT", + "iso_region": "BT-15", + "municipality": "Thimphu", + "scheduled_service": "no" + }, + { + "id": "340534", + "ident": "BT-0002", + "type": "heliport", + "name": "Uma Gechuthang Heliport", + "latitude_deg": "27.295478", + "longitude_deg": "89.979633", + "continent": "AS", + "iso_country": "BT", + "iso_region": "BT-24", + "municipality": "Chanchey", + "scheduled_service": "no" + }, + { + "id": "340535", + "ident": "BT-0003", + "type": "heliport", + "name": "Dumcho Heliport", + "latitude_deg": "27.360277", + "longitude_deg": "89.301496", + "continent": "AS", + "iso_country": "BT", + "iso_region": "BT-13", + "municipality": "Dumcho", + "scheduled_service": "no" + }, + { + "id": "340555", + "ident": "BT-0004", + "type": "heliport", + "name": "Rinchending Heliport", + "latitude_deg": "26.848541", + "longitude_deg": "89.395389", + "continent": "AS", + "iso_country": "BT", + "iso_region": "BT-12", + "municipality": "Phuentsholing", + "scheduled_service": "no" + }, + { + "id": "340558", + "ident": "BT-0005", + "type": "heliport", + "name": "Trongsa Heliport", + "latitude_deg": "27.49807", + "longitude_deg": "90.51087", + "continent": "AS", + "iso_country": "BT", + "iso_region": "BT-32", + "municipality": "Trongsa", + "scheduled_service": "no" + }, + { + "id": "353792", + "ident": "BTZ", + "type": "medium_airport", + "name": "Betong International Airport", + "latitude_deg": "5.79", + "longitude_deg": "101.15", + "elevation_ft": "761", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-95", + "municipality": "Betong", + "scheduled_service": "no", + "iata_code": "BTZ" + }, + { + "id": "46171", + "ident": "BUL", + "type": "small_airport", + "name": "Bulolo Airport", + "latitude_deg": "-7.216286671410001", + "longitude_deg": "146.649541855", + "elevation_ft": "2240", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Bulolo", + "scheduled_service": "no", + "gps_code": "AYBU", + "iata_code": "BUL", + "local_code": "BUO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bulolo_Airport" + }, + { + "id": "322326", + "ident": "BUTL", + "type": "small_airport", + "name": "Butlerville Field", + "latitude_deg": "34.9697", + "longitude_deg": "-91.831173", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Butlerville", + "scheduled_service": "no", + "keywords": "BUTL" + }, + { + "id": "311040", + "ident": "BVP", + "type": "closed", + "name": "Bolovip Airstrip", + "latitude_deg": "-5.3633", + "longitude_deg": "141.655", + "elevation_ft": "4990", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Bolovip", + "scheduled_service": "no", + "iata_code": "BVP", + "keywords": "Bolobip" + }, + { + "id": "302436", + "ident": "BVR", + "type": "small_airport", + "name": "Esperadinha Airport", + "latitude_deg": "14.864306", + "longitude_deg": "-24.746", + "elevation_ft": "64", + "continent": "AF", + "iso_country": "CV", + "iso_region": "CV-S", + "municipality": "Brava Island", + "scheduled_service": "no", + "gps_code": "GVBR", + "iata_code": "BVR" + }, + { + "id": "35351", + "ident": "BW-0001", + "type": "small_airport", + "name": "Khuis Airport", + "latitude_deg": "-26.64913", + "longitude_deg": "21.82215", + "elevation_ft": "3071", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-KG", + "municipality": "Khuis", + "scheduled_service": "no", + "keywords": "Twee Rivieren" + }, + { + "id": "317473", + "ident": "BW-0002", + "type": "small_airport", + "name": "Motopi Airport", + "latitude_deg": "-20.185886", + "longitude_deg": "24.175029", + "elevation_ft": "3070", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Motopi", + "scheduled_service": "no", + "gps_code": "FBMO", + "keywords": "FB51, Matope Airport" + }, + { + "id": "317484", + "ident": "BW-0003", + "type": "small_airport", + "name": "Seronga Airport", + "latitude_deg": "-18.823303", + "longitude_deg": "22.422619", + "elevation_ft": "3240", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Seronga", + "scheduled_service": "no", + "gps_code": "FBSG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Seronga_Airport", + "keywords": "FB71" + }, + { + "id": "317486", + "ident": "BW-0004", + "type": "small_airport", + "name": "Linyanti Airport", + "latitude_deg": "-18.46082", + "longitude_deg": "23.808989", + "elevation_ft": "3105", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Linyanti", + "scheduled_service": "no", + "gps_code": "FBLN", + "keywords": "FB41" + }, + { + "id": "317487", + "ident": "BW-0005", + "type": "small_airport", + "name": "Serondella Airport", + "latitude_deg": "-17.8386", + "longitude_deg": "25.031484", + "elevation_ft": "3070", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CH", + "municipality": "Serondela", + "scheduled_service": "no" + }, + { + "id": "317495", + "ident": "BW-0006", + "type": "small_airport", + "name": "Pom Pom Airport", + "latitude_deg": "-19.59728", + "longitude_deg": "22.848081", + "elevation_ft": "3150", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Pom Pom Camp", + "scheduled_service": "no", + "keywords": "FB63, Pompom" + }, + { + "id": "317497", + "ident": "BW-0007", + "type": "small_airport", + "name": "Santawani Airport", + "latitude_deg": "-19.5092", + "longitude_deg": "23.6211", + "elevation_ft": "3095", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Santawani Lodge", + "scheduled_service": "no", + "gps_code": "FBST", + "keywords": "FB66, Makuba Airstrip" + }, + { + "id": "317498", + "ident": "BW-0008", + "type": "small_airport", + "name": "Tsau Airport", + "latitude_deg": "-20.157905", + "longitude_deg": "22.449275", + "elevation_ft": "3097", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Tsau", + "scheduled_service": "no", + "gps_code": "FBTU", + "keywords": "FB79" + }, + { + "id": "317510", + "ident": "BW-0009", + "type": "small_airport", + "name": "Riverside North Airport", + "latitude_deg": "-25.2898", + "longitude_deg": "23.4725", + "elevation_ft": "3410", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-KG", + "scheduled_service": "no" + }, + { + "id": "317511", + "ident": "BW-0010", + "type": "closed", + "name": "Riverside Southeast Airport", + "latitude_deg": "-25.337175", + "longitude_deg": "23.514179", + "elevation_ft": "3420", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-KG", + "scheduled_service": "no" + }, + { + "id": "317513", + "ident": "BW-0011", + "type": "small_airport", + "name": "Oxford Airport", + "latitude_deg": "-25.0243", + "longitude_deg": "24.215", + "elevation_ft": "3535", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-KG", + "municipality": "Oxford", + "scheduled_service": "no", + "keywords": "FB61" + }, + { + "id": "317583", + "ident": "BW-0012", + "type": "small_airport", + "name": "Xade Airstrip", + "latitude_deg": "-22.331339", + "longitude_deg": "23.003057", + "elevation_ft": "3285", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-GH", + "municipality": "Xade", + "scheduled_service": "no" + }, + { + "id": "317617", + "ident": "BW-0013", + "type": "small_airport", + "name": "Ghaghoo Mine Airport", + "latitude_deg": "-22.6079", + "longitude_deg": "24.7897", + "elevation_ft": "3350", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-GH", + "municipality": "Gope", + "scheduled_service": "no" + }, + { + "id": "317657", + "ident": "BW-0014", + "type": "small_airport", + "name": "Chandia Airstrip", + "latitude_deg": "-18.5154", + "longitude_deg": "25.495408", + "elevation_ft": "3515", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CH", + "municipality": "Chandia", + "scheduled_service": "no", + "gps_code": "FBCD", + "keywords": "FB06" + }, + { + "id": "317669", + "ident": "BW-0015", + "type": "small_airport", + "name": "Kgoro Pan Airport", + "latitude_deg": "-21.2019", + "longitude_deg": "22.5038", + "elevation_ft": "3550", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-GH", + "scheduled_service": "no", + "keywords": "FB30" + }, + { + "id": "317670", + "ident": "BW-0016", + "type": "small_airport", + "name": "Khutse Airport", + "latitude_deg": "-23.35592", + "longitude_deg": "24.6036", + "elevation_ft": "3315", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-KW", + "municipality": "Khutse", + "scheduled_service": "no", + "keywords": "FB32, Khutsi" + }, + { + "id": "317671", + "ident": "BW-0017", + "type": "small_airport", + "name": "Khwai North Airport", + "latitude_deg": "-19.041", + "longitude_deg": "23.8339", + "elevation_ft": "3090", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "scheduled_service": "no" + }, + { + "id": "317691", + "ident": "BW-0018", + "type": "small_airport", + "name": "Ncamasere Airport", + "latitude_deg": "-18.569", + "longitude_deg": "21.9862", + "elevation_ft": "3265", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Ncamasere", + "scheduled_service": "no" + }, + { + "id": "317692", + "ident": "BW-0019", + "type": "small_airport", + "name": "Etsha Airport", + "latitude_deg": "-19.113219", + "longitude_deg": "22.261864", + "elevation_ft": "3205", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Etsha", + "scheduled_service": "no" + }, + { + "id": "326990", + "ident": "BW-0020", + "type": "closed", + "name": "Alpha Airfield", + "latitude_deg": "-25.198058", + "longitude_deg": "25.721603", + "elevation_ft": "3798", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-LO", + "municipality": "Lobatse", + "scheduled_service": "no", + "local_code": "FBAL" + }, + { + "id": "317704", + "ident": "BW-0021", + "type": "small_airport", + "name": "Arizona Airport", + "latitude_deg": "-22.6036", + "longitude_deg": "28.2897", + "elevation_ft": "2440", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "municipality": "Arizona Farm", + "scheduled_service": "no", + "keywords": "FB02, 6184" + }, + { + "id": "317705", + "ident": "BW-0022", + "type": "small_airport", + "name": "Big Game Airport", + "latitude_deg": "-26.326", + "longitude_deg": "22.0946", + "elevation_ft": "3180", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-KG", + "municipality": "Big Game", + "scheduled_service": "no" + }, + { + "id": "317707", + "ident": "BW-0023", + "type": "small_airport", + "name": "Sunny Side Airport", + "latitude_deg": "-23.0339", + "longitude_deg": "27.7406", + "elevation_ft": "2736", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "municipality": "Sunny Side", + "scheduled_service": "no", + "keywords": "FB75, 6970" + }, + { + "id": "317712", + "ident": "BW-0024", + "type": "small_airport", + "name": "Kwalata Airport", + "latitude_deg": "-23.062493", + "longitude_deg": "27.904797", + "elevation_ft": "2595", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "municipality": "Kwalata Ranch", + "scheduled_service": "no", + "keywords": "FB36" + }, + { + "id": "317713", + "ident": "BW-0025", + "type": "small_airport", + "name": "Jwala Airport", + "latitude_deg": "-22.041793", + "longitude_deg": "29.024605", + "elevation_ft": "2080", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "municipality": "Jwala", + "scheduled_service": "no", + "keywords": "FB27" + }, + { + "id": "317715", + "ident": "BW-0026", + "type": "small_airport", + "name": "Kgwedi Airport", + "latitude_deg": "-22.07392", + "longitude_deg": "29.106636", + "elevation_ft": "2005", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "municipality": "Kgwedi", + "scheduled_service": "no", + "keywords": "FB31" + }, + { + "id": "318345", + "ident": "BW-0027", + "type": "small_airport", + "name": "Chief's Island Airport", + "latitude_deg": "-19.314182", + "longitude_deg": "22.94975", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "scheduled_service": "no" + }, + { + "id": "318346", + "ident": "BW-0028", + "type": "small_airport", + "name": "Chief's Camp Airport", + "latitude_deg": "-19.31107", + "longitude_deg": "22.908799", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "scheduled_service": "no" + }, + { + "id": "318347", + "ident": "BW-0029", + "type": "small_airport", + "name": "Mombo Camp Airport", + "latitude_deg": "-19.209503", + "longitude_deg": "22.794411", + "elevation_ft": "3165", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "scheduled_service": "no", + "gps_code": "FBMB" + }, + { + "id": "318348", + "ident": "BW-0030", + "type": "small_airport", + "name": "Chitabe Airstrip", + "latitude_deg": "-19.467144", + "longitude_deg": "23.378341", + "elevation_ft": "3123", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "scheduled_service": "no", + "gps_code": "FBCT" + }, + { + "id": "318349", + "ident": "BW-0031", + "type": "closed", + "name": "Xakanaxa Old Airport", + "latitude_deg": "-19.196998", + "longitude_deg": "23.43628", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Xakanaxa", + "scheduled_service": "no" + }, + { + "id": "318350", + "ident": "BW-0032", + "type": "small_airport", + "name": "Xakanaxa Airport", + "latitude_deg": "-19.21495", + "longitude_deg": "23.439105", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Xakanaxa", + "scheduled_service": "no" + }, + { + "id": "318351", + "ident": "BW-0033", + "type": "small_airport", + "name": "Kwara Camp Airport", + "latitude_deg": "-19.102891", + "longitude_deg": "23.289115", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "scheduled_service": "no" + }, + { + "id": "318352", + "ident": "BW-0034", + "type": "small_airport", + "name": "Shindi Lodge Airport", + "latitude_deg": "-19.110265", + "longitude_deg": "23.162305", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "scheduled_service": "no" + }, + { + "id": "318385", + "ident": "BW-0035", + "type": "small_airport", + "name": "New Xade Airport", + "latitude_deg": "-22.114649", + "longitude_deg": "22.408025", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-GH", + "municipality": "New Xade", + "scheduled_service": "no" + }, + { + "id": "318386", + "ident": "BW-0036", + "type": "small_airport", + "name": "Matsieng Airstrip", + "latitude_deg": "-24.357132", + "longitude_deg": "26.090237", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-KL", + "municipality": "Rasesa", + "scheduled_service": "no", + "gps_code": "FBMA" + }, + { + "id": "318408", + "ident": "BW-0037", + "type": "small_airport", + "name": "Ncojane Airport", + "latitude_deg": "-23.140243", + "longitude_deg": "20.287681", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-GH", + "municipality": "Ncojane", + "scheduled_service": "no" + }, + { + "id": "318409", + "ident": "BW-0038", + "type": "small_airport", + "name": "Rann Airport", + "latitude_deg": "-19.658743", + "longitude_deg": "22.955112", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "scheduled_service": "no" + }, + { + "id": "318410", + "ident": "BW-0039", + "type": "small_airport", + "name": "Sanctuary Stanley Airport", + "latitude_deg": "-19.626272", + "longitude_deg": "23.279398", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "scheduled_service": "no" + }, + { + "id": "318411", + "ident": "BW-0040", + "type": "small_airport", + "name": "Ketumetse Airport", + "latitude_deg": "-18.771248", + "longitude_deg": "23.041275", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "scheduled_service": "no" + }, + { + "id": "318412", + "ident": "BW-0041", + "type": "small_airport", + "name": "Mapula Airport", + "latitude_deg": "-18.787656", + "longitude_deg": "22.829697", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "scheduled_service": "no" + }, + { + "id": "318413", + "ident": "BW-0042", + "type": "small_airport", + "name": "Nxabega Safari Airport", + "latitude_deg": "-19.464174", + "longitude_deg": "22.777865", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "scheduled_service": "no" + }, + { + "id": "318466", + "ident": "BW-0043", + "type": "small_airport", + "name": "Masame Airport", + "latitude_deg": "-19.329429", + "longitude_deg": "24.841567", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Masame", + "scheduled_service": "no" + }, + { + "id": "318467", + "ident": "BW-0044", + "type": "small_airport", + "name": "Elephant Sands Airport", + "latitude_deg": "-19.746877", + "longitude_deg": "26.070069", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "municipality": "Nata", + "scheduled_service": "no" + }, + { + "id": "318471", + "ident": "BW-0045", + "type": "small_airport", + "name": "Xhumaga Airport", + "latitude_deg": "-20.431797", + "longitude_deg": "24.458519", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "municipality": "Xhumaga", + "scheduled_service": "no" + }, + { + "id": "318472", + "ident": "BW-0046", + "type": "small_airport", + "name": "Xamaxai Airport", + "latitude_deg": "-18.878912", + "longitude_deg": "22.713563", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "scheduled_service": "no" + }, + { + "id": "318519", + "ident": "BW-0047", + "type": "small_airport", + "name": "Kanana Farm Airport", + "latitude_deg": "-21.627363", + "longitude_deg": "21.390602", + "elevation_ft": "3905", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-GH", + "municipality": "Kanana Farm", + "scheduled_service": "no", + "local_code": "FBKN" + }, + { + "id": "318822", + "ident": "BW-0048", + "type": "small_airport", + "name": "Selinda Old Airport", + "latitude_deg": "-18.566713", + "longitude_deg": "23.511192", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Selinda", + "scheduled_service": "no" + }, + { + "id": "318997", + "ident": "BW-0049", + "type": "small_airport", + "name": "Jackalas 1 Airport", + "latitude_deg": "-20.55728", + "longitude_deg": "27.695399", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NE", + "municipality": "Jackalas 1", + "scheduled_service": "no" + }, + { + "id": "318998", + "ident": "BW-0050", + "type": "closed", + "name": "Mapoka Airport", + "latitude_deg": "-20.532004", + "longitude_deg": "27.609445", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NE", + "municipality": "Mapoka", + "scheduled_service": "no" + }, + { + "id": "319013", + "ident": "BW-0051", + "type": "small_airport", + "name": "Central Kalahari Airport", + "latitude_deg": "-21.732301", + "longitude_deg": "24.482993", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "scheduled_service": "no" + }, + { + "id": "319014", + "ident": "BW-0052", + "type": "small_airport", + "name": "Nxai Pan Airstrip", + "latitude_deg": "-19.872439", + "longitude_deg": "24.679162", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "scheduled_service": "no" + }, + { + "id": "319015", + "ident": "BW-0053", + "type": "small_airport", + "name": "Mmashoro Airport", + "latitude_deg": "-21.877487", + "longitude_deg": "26.350055", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "municipality": "Mmashoro", + "scheduled_service": "no" + }, + { + "id": "333208", + "ident": "BW-0054", + "type": "small_airport", + "name": "Xudum Airport", + "latitude_deg": "-19.679458", + "longitude_deg": "22.86833", + "elevation_ft": "3133", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Xudum", + "scheduled_service": "no" + }, + { + "id": "333209", + "ident": "BW-0055", + "type": "small_airport", + "name": "Seba Airport", + "latitude_deg": "-19.405037", + "longitude_deg": "22.548999", + "elevation_ft": "3163", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Seba", + "scheduled_service": "no" + }, + { + "id": "345906", + "ident": "BW-0056", + "type": "small_airport", + "name": "Karowe Airstrip", + "latitude_deg": "-21.487819", + "longitude_deg": "25.466652", + "elevation_ft": "3260", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "municipality": "Lethakane", + "scheduled_service": "no" + }, + { + "id": "345907", + "ident": "BW-0057", + "type": "small_airport", + "name": "Banoka Airstrip", + "latitude_deg": "-19.0925", + "longitude_deg": "23.6481", + "elevation_ft": "3096", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Khwai Private Game Reserve", + "scheduled_service": "no" + }, + { + "id": "345908", + "ident": "BW-0058", + "type": "small_airport", + "name": "Gorokwe Airport", + "latitude_deg": "-19.58672", + "longitude_deg": "23.47126", + "elevation_ft": "3120", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Okavango", + "scheduled_service": "no" + }, + { + "id": "351700", + "ident": "BW-0059", + "type": "closed", + "name": "Satawani Airstrip", + "latitude_deg": "-19.517889", + "longitude_deg": "23.63512", + "elevation_ft": "3098", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Santawani Lodge", + "scheduled_service": "no" + }, + { + "id": "351715", + "ident": "BW-0060", + "type": "closed", + "name": "Ngarangi Airport", + "latitude_deg": "-18.38705", + "longitude_deg": "22.01159", + "elevation_ft": "3315", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Ngarangi", + "scheduled_service": "no" + }, + { + "id": "31072", + "ident": "BW-0061", + "type": "closed", + "name": "Gaborone Notwane Airport", + "latitude_deg": "-24.683001", + "longitude_deg": "25.933001", + "elevation_ft": "3218", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-GA", + "municipality": "Gaborone Notwane", + "scheduled_service": "no", + "keywords": "FBNW" + }, + { + "id": "31654", + "ident": "BW-HUK", + "type": "small_airport", + "name": "Hukuntsi Airport", + "latitude_deg": "-23.9897", + "longitude_deg": "21.758101", + "elevation_ft": "3720", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-KG", + "municipality": "Hukuntsi", + "scheduled_service": "no", + "gps_code": "FBHK", + "iata_code": "HUK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hukuntsi_Airport", + "keywords": "FB24" + }, + { + "id": "301800", + "ident": "BWJ", + "type": "small_airport", + "name": "Bawan Airport", + "latitude_deg": "-6.396944444440001", + "longitude_deg": "146.881666667", + "elevation_ft": "4700", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "scheduled_service": "no", + "iata_code": "BWJ", + "local_code": "BWN" + }, + { + "id": "301803", + "ident": "BWP", + "type": "small_airport", + "name": "Bewani Airport", + "latitude_deg": "-3.0216666666700003", + "longitude_deg": "141.165277778", + "elevation_ft": "550", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Bewani", + "scheduled_service": "no", + "gps_code": "AYBI", + "iata_code": "BWP", + "local_code": "BEW" + }, + { + "id": "302394", + "ident": "BXL", + "type": "seaplane_base", + "name": "Blue Lagoon Seaplane Base", + "latitude_deg": "-16.943", + "longitude_deg": "177.368", + "elevation_ft": "0", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-W", + "municipality": "Nanuya Lailai Island", + "scheduled_service": "no", + "iata_code": "BXL" + }, + { + "id": "310095", + "ident": "BXZ", + "type": "small_airport", + "name": "Bunsil Airport", + "latitude_deg": "-5.7243", + "longitude_deg": "147.8667", + "elevation_ft": "201", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Bunsil - Umboi Island", + "scheduled_service": "no", + "gps_code": "AYNS", + "iata_code": "BXZ", + "local_code": "BSL", + "keywords": "Bonsil Airport" + }, + { + "id": "34946", + "ident": "BY-0001", + "type": "medium_airport", + "name": "Orsha Airport - Balbasovo Air Base", + "latitude_deg": "54.439999", + "longitude_deg": "30.2967", + "elevation_ft": "620", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-VI", + "municipality": "Orsha", + "scheduled_service": "no", + "gps_code": "UMIO", + "iata_code": "TXC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Balbasovo", + "keywords": "Balbasava, Bolbasovo, Orsha Southwest" + }, + { + "id": "34951", + "ident": "BY-0002", + "type": "closed", + "name": "Bobr Air Base", + "latitude_deg": "54.375", + "longitude_deg": "29.376699", + "elevation_ft": "646", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MI", + "municipality": "Lomskoe", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bobr_%28air_base%29", + "keywords": "Bobr East" + }, + { + "id": "34952", + "ident": "BY-0003", + "type": "medium_airport", + "name": "Bobrovichi Air Base", + "latitude_deg": "52.27830123901367", + "longitude_deg": "29.360000610351562", + "elevation_ft": "440", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-HO", + "municipality": "Kalinovichi", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bobrovichi" + }, + { + "id": "34957", + "ident": "BY-0004", + "type": "small_airport", + "name": "Borovtsy Air Base", + "latitude_deg": "55.6082992554", + "longitude_deg": "28.678300857500002", + "elevation_ft": "456", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-VI", + "municipality": "Polatsk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Borovitsy", + "keywords": "Borovitsky Air Base, Аэродром Боровцы" + }, + { + "id": "43023", + "ident": "BY-0005", + "type": "closed", + "name": "Polotsk Airfield", + "latitude_deg": "55.411667", + "longitude_deg": "28.748333", + "elevation_ft": "469", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-VI", + "municipality": "Polotsk", + "scheduled_service": "no", + "local_code": "XMIP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Polotsk_Airport", + "keywords": "Betskoye Airport, Betskoe Airport, Polotsk South Airport, Аэрапорт Полацк, Аэропорт Бецкое, Аэропорт Полоцк" + }, + { + "id": "44363", + "ident": "BY-0006", + "type": "medium_airport", + "name": "Osovtsy Air Base", + "latitude_deg": "52.5569992065", + "longitude_deg": "24.884000778199997", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-BR", + "municipality": "Byaroza", + "scheduled_service": "no", + "gps_code": "UMMO", + "keywords": "Byaroza Air Base, Beryoza Air Base, Аэродром Осовцы, Аэродром Бяроза, Аэродром Берёза, УММО" + }, + { + "id": "44382", + "ident": "BY-0007", + "type": "closed", + "name": "Bykhau Air Base", + "latitude_deg": "53.52000045776367", + "longitude_deg": "30.200000762939453", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MA", + "municipality": "Bykhau", + "scheduled_service": "no", + "keywords": "Bykhov Air Base, Аэродром Быхау, Аэродром Быхов" + }, + { + "id": "44997", + "ident": "BY-0008", + "type": "small_airport", + "name": "Bel Airfield", + "latitude_deg": "53.779817", + "longitude_deg": "31.66495", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MA", + "municipality": "Krichaw", + "scheduled_service": "no", + "local_code": "ZCA4", + "keywords": "Аэрапорт Бель" + }, + { + "id": "46165", + "ident": "BY-0009", + "type": "small_airport", + "name": "Lida Air Base", + "latitude_deg": "53.877", + "longitude_deg": "25.377", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-HR", + "municipality": "Lida", + "scheduled_service": "no", + "gps_code": "UMDD", + "keywords": "Аэродром Лида" + }, + { + "id": "46231", + "ident": "BY-0010", + "type": "heliport", + "name": "Borovukha-2 Helipad", + "latitude_deg": "55.534696443", + "longitude_deg": "28.7904453278", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-VI", + "municipality": "Polatsk", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Боровуха-2" + }, + { + "id": "315689", + "ident": "BY-0011", + "type": "small_airport", + "name": "Aerodrom Belz", + "latitude_deg": "50.3771921", + "longitude_deg": "23.9648804", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-46", + "scheduled_service": "no" + }, + { + "id": "315693", + "ident": "BY-0012", + "type": "small_airport", + "name": "Aerodrom Kukoviatsino", + "latitude_deg": "55.160995", + "longitude_deg": "29.974589", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-VI", + "scheduled_service": "no", + "gps_code": "UMNI", + "keywords": "Куковячино" + }, + { + "id": "315695", + "ident": "BY-0013", + "type": "small_airport", + "name": "VD Bolshoy Bokov Airfield", + "latitude_deg": "51.983484", + "longitude_deg": "29.163566", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-HO", + "municipality": "Mazyr", + "scheduled_service": "no" + }, + { + "id": "315697", + "ident": "BY-0014", + "type": "small_airport", + "name": "Lipki Air Base", + "latitude_deg": "53.913545", + "longitude_deg": "27.708775", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MI", + "scheduled_service": "no", + "gps_code": "UMMI", + "keywords": "УММИ, Липки" + }, + { + "id": "315926", + "ident": "BY-0015", + "type": "small_airport", + "name": "Aerodrom Ozerki", + "latitude_deg": "55.144536", + "longitude_deg": "26.829358", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-VI", + "scheduled_service": "no", + "gps_code": "UMMK" + }, + { + "id": "317423", + "ident": "BY-0016", + "type": "small_airport", + "name": "Gorki", + "latitude_deg": "54.30052", + "longitude_deg": "30.948463", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MA", + "municipality": "Gorki", + "scheduled_service": "no" + }, + { + "id": "319598", + "ident": "BY-0017", + "type": "closed", + "name": "Kokhanovichi Airfield", + "latitude_deg": "55.85734", + "longitude_deg": "28.09827", + "elevation_ft": "420", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-VI", + "municipality": "Kokhanovichi", + "scheduled_service": "no", + "keywords": "Коханавічы" + }, + { + "id": "319599", + "ident": "BY-0018", + "type": "closed", + "name": "Bozhki Airstrip", + "latitude_deg": "55.816719", + "longitude_deg": "28.025859", + "elevation_ft": "410", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-VI", + "municipality": "Bozhki", + "scheduled_service": "no", + "keywords": "Божкі" + }, + { + "id": "319603", + "ident": "BY-0019", + "type": "closed", + "name": "Zheludok Heliport", + "latitude_deg": "53.598206", + "longitude_deg": "24.9719", + "elevation_ft": "417", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-HR", + "municipality": "Zheludok", + "scheduled_service": "no", + "local_code": "XMFJ", + "keywords": "ЬМФЙ, Желудок" + }, + { + "id": "319604", + "ident": "BY-0020", + "type": "heliport", + "name": "Njeman Heliport", + "latitude_deg": "53.6793", + "longitude_deg": "25.5686", + "elevation_ft": "465", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-HR", + "municipality": "Njeman", + "scheduled_service": "no", + "local_code": "H492", + "keywords": "Х492, Неман" + }, + { + "id": "319606", + "ident": "BY-0021", + "type": "heliport", + "name": "Drozdy Heliport", + "latitude_deg": "53.9506", + "longitude_deg": "27.5053", + "elevation_ft": "703", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MI", + "municipality": "Drozdy", + "scheduled_service": "no", + "local_code": "H213", + "keywords": "Х213, Дрозды" + }, + { + "id": "319617", + "ident": "BY-0022", + "type": "small_airport", + "name": "Dzerzhinsky Highway Strip", + "latitude_deg": "53.68874", + "longitude_deg": "27.339573", + "elevation_ft": "690", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MI", + "municipality": "Dzerzhinsky", + "scheduled_service": "no", + "local_code": "ZD7M", + "keywords": "ЗД7М, Дзержинский" + }, + { + "id": "320231", + "ident": "BY-0023", + "type": "small_airport", + "name": "Bobruisk Aeroclub", + "latitude_deg": "53.21033", + "longitude_deg": "29.129039", + "elevation_ft": "500", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MA", + "municipality": "Babruysk", + "scheduled_service": "no", + "gps_code": "UMNS" + }, + { + "id": "320462", + "ident": "BY-0024", + "type": "small_airport", + "name": "Karolin Airfield", + "latitude_deg": "53.632516", + "longitude_deg": "23.735275", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-HR", + "municipality": "Grodno", + "scheduled_service": "no", + "keywords": "Aeroklub Grodno" + }, + { + "id": "320477", + "ident": "BY-0025", + "type": "small_airport", + "name": "Voirovka Airfield", + "latitude_deg": "53.619614", + "longitude_deg": "27.551783", + "elevation_ft": "594", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MI", + "municipality": "Voirovka", + "scheduled_service": "no" + }, + { + "id": "321035", + "ident": "BY-0026", + "type": "closed", + "name": "Komsomolskaya Airstrip", + "latitude_deg": "53.213143", + "longitude_deg": "27.36075", + "elevation_ft": "534", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MI", + "scheduled_service": "no", + "local_code": "ZF03" + }, + { + "id": "321489", + "ident": "BY-0027", + "type": "small_airport", + "name": "Kisyali Airfield", + "latitude_deg": "54.028259", + "longitude_deg": "26.924768", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MI", + "municipality": "Kisyali", + "scheduled_service": "no" + }, + { + "id": "322149", + "ident": "BY-0028", + "type": "small_airport", + "name": "Vidzy Airstrip", + "latitude_deg": "55.37879", + "longitude_deg": "26.626022", + "elevation_ft": "466", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-VI", + "municipality": "Vidzy", + "scheduled_service": "no" + }, + { + "id": "323909", + "ident": "BY-0029", + "type": "small_airport", + "name": "Kliepačy Airstrip", + "latitude_deg": "52.7040425", + "longitude_deg": "24.3782919", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-BR", + "scheduled_service": "no" + }, + { + "id": "323945", + "ident": "BY-0030", + "type": "closed", + "name": "Selhozaviatsii", + "latitude_deg": "52.75557", + "longitude_deg": "24.462681", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-HR", + "scheduled_service": "no" + }, + { + "id": "324497", + "ident": "BY-0031", + "type": "small_airport", + "name": "Suklina Airstrip", + "latitude_deg": "55.2516188", + "longitude_deg": "27.9213048", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-VI", + "scheduled_service": "no" + }, + { + "id": "326267", + "ident": "BY-0032", + "type": "small_airport", + "name": "Mazalovo Airstrip", + "latitude_deg": "53.973285", + "longitude_deg": "31.58801", + "elevation_ft": "630", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MA", + "municipality": "Mazalovo", + "scheduled_service": "no" + }, + { + "id": "346296", + "ident": "BY-0033", + "type": "small_airport", + "name": "Stepanovo Airstrip", + "latitude_deg": "53.32445", + "longitude_deg": "31.58792", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MA", + "scheduled_service": "no" + }, + { + "id": "346842", + "ident": "BY-0034", + "type": "small_airport", + "name": "Obsianka Airstrip", + "latitude_deg": "54.2313", + "longitude_deg": "30.77433", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MA", + "scheduled_service": "no" + }, + { + "id": "347037", + "ident": "BY-0035", + "type": "small_airport", + "name": "Ptsich Airstrip", + "latitude_deg": "53.58516", + "longitude_deg": "27.68329", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MI", + "municipality": "Ptich", + "scheduled_service": "no" + }, + { + "id": "347166", + "ident": "BY-0036", + "type": "closed", + "name": "Krichev Air Base", + "latitude_deg": "53.73478", + "longitude_deg": "31.91705", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MA", + "scheduled_service": "no" + }, + { + "id": "347696", + "ident": "BY-0037", + "type": "small_airport", + "name": "Mestnyy Airfield", + "latitude_deg": "51.995", + "longitude_deg": "24.71341", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-BR", + "scheduled_service": "no" + }, + { + "id": "352943", + "ident": "BY-0038", + "type": "small_airport", + "name": "Voirovka East Airfield", + "latitude_deg": "53.62221", + "longitude_deg": "27.56414", + "elevation_ft": "604", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MI", + "municipality": "Voirovka", + "scheduled_service": "no" + }, + { + "id": "352952", + "ident": "BY-0039", + "type": "closed", + "name": "Pogonnoye Airport", + "latitude_deg": "51.6114", + "longitude_deg": "29.9808", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-HO", + "municipality": "Pogonnoye", + "scheduled_service": "no" + }, + { + "id": "355464", + "ident": "BY-0040", + "type": "small_airport", + "name": "Galevo Airport", + "latitude_deg": "52.155729", + "longitude_deg": "26.128964", + "elevation_ft": "280", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-BR", + "municipality": "Galevo", + "scheduled_service": "no", + "keywords": "Asnyezhytsy, UMAS" + }, + { + "id": "355828", + "ident": "BY-0041", + "type": "small_airport", + "name": "Avia-Mensk Airstrip", + "latitude_deg": "53.830978", + "longitude_deg": "27.376385", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MI", + "scheduled_service": "no", + "home_link": "http://avia-mensk.by" + }, + { + "id": "356022", + "ident": "BY-0042", + "type": "small_airport", + "name": "Sula Airstrip", + "latitude_deg": "53.748533", + "longitude_deg": "26.864619", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MI", + "scheduled_service": "no" + }, + { + "id": "35057", + "ident": "BY-1095", + "type": "closed", + "name": "Postavy Air Base", + "latitude_deg": "55.116699", + "longitude_deg": "26.7617", + "elevation_ft": "472", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-VI", + "municipality": "Postavy", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Postavy" + }, + { + "id": "35030", + "ident": "BY-1210", + "type": "closed", + "name": "Maladzyechna Air Base", + "latitude_deg": "54.24829864501953", + "longitude_deg": "26.871700286865234", + "elevation_ft": "682", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MI", + "municipality": "Maladzyechna", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maladzyechna_(air_base)" + }, + { + "id": "35112", + "ident": "BY-3111", + "type": "closed", + "name": "Zhurzhevo Air Base", + "latitude_deg": "55.255001", + "longitude_deg": "30.2467", + "elevation_ft": "636", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-VI", + "municipality": "Vitebsk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vitebsk_(air_base)", + "keywords": "Vitebsk Severny Air Base, Vitebsk North Air Base, Аэродром Журжево, Аэродром Витебск Северный" + }, + { + "id": "35060", + "ident": "BY-4247", + "type": "small_airport", + "name": "Pribytki Air Base", + "latitude_deg": "52.30500030517578", + "longitude_deg": "31.163299560546875", + "elevation_ft": "456", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-HO", + "municipality": "Gomel", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pribytki" + }, + { + "id": "35083", + "ident": "BY-7836", + "type": "closed", + "name": "Smarhon Air Base", + "latitude_deg": "54.52330017089844", + "longitude_deg": "26.306699752807617", + "elevation_ft": "558", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-HR", + "municipality": "Smorgon", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Smarhon_(air_base)" + }, + { + "id": "35026", + "ident": "BY-9934", + "type": "small_airport", + "name": "Luninets Air Base", + "latitude_deg": "52.275673", + "longitude_deg": "26.774629", + "elevation_ft": "472", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-BR", + "municipality": "Luninets", + "scheduled_service": "no", + "gps_code": "UMNL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Luninets_(air_base)", + "keywords": "UMHA" + }, + { + "id": "16506", + "ident": "BYA", + "type": "small_airport", + "name": "Boundary Airport", + "latitude_deg": "64.0783004761", + "longitude_deg": "-141.113006592", + "elevation_ft": "2940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Boundary", + "scheduled_service": "no", + "gps_code": "BYA", + "iata_code": "BYA", + "local_code": "BYA" + }, + { + "id": "302393", + "ident": "BYL", + "type": "small_airport", + "name": "Bella Yella Airport", + "latitude_deg": "7.36916666667", + "longitude_deg": "-9.99372222222", + "elevation_ft": "690", + "continent": "AF", + "iso_country": "LR", + "iso_region": "LR-LO", + "municipality": "Beliyela", + "scheduled_service": "no", + "iata_code": "BYL" + }, + { + "id": "300806", + "ident": "BYV", + "type": "seaplane_base", + "name": "Beira Lake Seaplane Base", + "latitude_deg": "6.9294444444400005", + "longitude_deg": "79.85416666670001", + "elevation_ft": "17", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-1", + "municipality": "Colombo", + "scheduled_service": "no", + "iata_code": "BYV" + }, + { + "id": "309572", + "ident": "BZ-0001", + "type": "small_airport", + "name": "Chan Chich Airstrip", + "latitude_deg": "17.5664", + "longitude_deg": "-89.0468", + "elevation_ft": "404", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-OW", + "municipality": "Gallon Jug", + "scheduled_service": "no", + "gps_code": "MZGJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chan_Chich_Airstrip" + }, + { + "id": "319308", + "ident": "BZ-0002", + "type": "small_airport", + "name": "Lighthouse Reef Airstrip", + "latitude_deg": "17.452965", + "longitude_deg": "-87.500671", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-BZ", + "municipality": "Northern Caye", + "scheduled_service": "no", + "gps_code": "MZLH" + }, + { + "id": "327952", + "ident": "BZ-0003", + "type": "small_airport", + "name": "San Felipe Airstrip", + "latitude_deg": "17.88531", + "longitude_deg": "-88.887286", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-OW", + "municipality": "San Felipe", + "scheduled_service": "no", + "keywords": "MZSH" + }, + { + "id": "328154", + "ident": "BZ-0004", + "type": "closed", + "name": "Consejo Shores Airport", + "latitude_deg": "18.456596", + "longitude_deg": "-88.305407", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-CZL", + "municipality": "Consejo", + "scheduled_service": "no" + }, + { + "id": "328155", + "ident": "BZ-0005", + "type": "closed", + "name": "Gold Button Airport", + "latitude_deg": "17.915341", + "longitude_deg": "-88.743301", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-OW", + "municipality": "San Felipe", + "scheduled_service": "no" + }, + { + "id": "328156", + "ident": "BZ-0006", + "type": "closed", + "name": "Augustine Airstrip", + "latitude_deg": "16.970298", + "longitude_deg": "-88.987916", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-CY", + "municipality": "Augustine", + "scheduled_service": "no", + "keywords": "Douglas da Silva" + }, + { + "id": "328157", + "ident": "BZ-0007", + "type": "small_airport", + "name": "Privassion Airstrip", + "latitude_deg": "17.039", + "longitude_deg": "-88.9547", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-CY", + "scheduled_service": "no" + }, + { + "id": "338063", + "ident": "BZ-0008", + "type": "closed", + "name": "Riversdale International Airport", + "latitude_deg": "16.685052", + "longitude_deg": "-88.348708", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-SC", + "municipality": "Placencia", + "scheduled_service": "no", + "home_link": "https://flyplacencia.com/", + "keywords": "North Placencia" + }, + { + "id": "338068", + "ident": "BZ-0009", + "type": "heliport", + "name": "Old Belize Heliport", + "latitude_deg": "17.470036", + "longitude_deg": "-88.247348", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-BZ", + "municipality": "Belize City", + "scheduled_service": "no" + }, + { + "id": "338069", + "ident": "BZ-0010", + "type": "heliport", + "name": "Cisco Base Heliport", + "latitude_deg": "17.496334", + "longitude_deg": "-88.234666", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-BZ", + "municipality": "Belize City", + "scheduled_service": "no" + }, + { + "id": "338070", + "ident": "BZ-0011", + "type": "heliport", + "name": "Cayo Espanto Helipad", + "latitude_deg": "17.914927", + "longitude_deg": "-88.001003", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-BZ", + "municipality": "Cayo Espanto", + "scheduled_service": "no" + }, + { + "id": "338071", + "ident": "BZ-0012", + "type": "heliport", + "name": "Azul Resort Heliport", + "latitude_deg": "17.983672", + "longitude_deg": "-87.922897", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-BZ", + "municipality": "Ambergris Caye", + "scheduled_service": "no" + }, + { + "id": "338072", + "ident": "BZ-0013", + "type": "heliport", + "name": "Guacamallo Bridge Helipad", + "latitude_deg": "16.864574", + "longitude_deg": "-89.039359", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-CY", + "municipality": "Chiquibul National Park", + "scheduled_service": "no" + }, + { + "id": "355046", + "ident": "BZ-0014", + "type": "small_airport", + "name": "Tres Leguas Airport", + "latitude_deg": "17.90194", + "longitude_deg": "-88.986833", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-OW", + "municipality": "Shipyard", + "scheduled_service": "no", + "keywords": "MZSR" + }, + { + "id": "355047", + "ident": "BZ-0015", + "type": "small_airport", + "name": "Backlanding Airport", + "latitude_deg": "17.85615", + "longitude_deg": "-88.58883", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-OW", + "municipality": "Backlanding", + "scheduled_service": "no" + }, + { + "id": "44573", + "ident": "BZ-BCV", + "type": "small_airport", + "name": "Hector Silva Airstrip", + "latitude_deg": "17.269603", + "longitude_deg": "-88.776496", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-CY", + "municipality": "Belmopan", + "scheduled_service": "yes", + "gps_code": "MZBP", + "iata_code": "BCV", + "home_link": "http://www.flightstats.com/go/Airport/airportDetails.do?airportCode=BCV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hector_Silva_Airstrip", + "keywords": "Belmopan Airport" + }, + { + "id": "42216", + "ident": "BZ-BGK", + "type": "medium_airport", + "name": "Big Creek Airport", + "latitude_deg": "16.519369", + "longitude_deg": "-88.407913", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-SC", + "municipality": "Big Creek", + "scheduled_service": "yes", + "gps_code": "MZBG", + "iata_code": "BGK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Big_Creek_Airport_(Belize)" + }, + { + "id": "30861", + "ident": "BZ-CUK", + "type": "medium_airport", + "name": "Caye Caulker Airport", + "latitude_deg": "17.735015", + "longitude_deg": "-88.032862", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-BZ", + "municipality": "Caye Caulker", + "scheduled_service": "yes", + "gps_code": "MZCK", + "iata_code": "CUK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Caye_Caulker_Airport" + }, + { + "id": "30867", + "ident": "BZ-CYC", + "type": "medium_airport", + "name": "Caye Chapel Airport", + "latitude_deg": "17.683792", + "longitude_deg": "-88.044985", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-BZ", + "municipality": "Caye Chapel", + "scheduled_service": "yes", + "gps_code": "MZCP", + "iata_code": "CYC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Caye_Chapel_Airport" + }, + { + "id": "42209", + "ident": "BZ-CZH", + "type": "medium_airport", + "name": "Corozal Municipal Airport", + "latitude_deg": "18.382200241088867", + "longitude_deg": "-88.41190338134766", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-CZL", + "municipality": "Corozal", + "scheduled_service": "yes", + "iata_code": "CZH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Corozal_Airport", + "keywords": "Ranchito Airport" + }, + { + "id": "42207", + "ident": "BZ-DGA", + "type": "medium_airport", + "name": "Dangriga Airport", + "latitude_deg": "16.98251", + "longitude_deg": "-88.230988", + "elevation_ft": "508", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-SC", + "municipality": "Dangriga", + "scheduled_service": "yes", + "gps_code": "MZPB", + "iata_code": "DGA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dangriga_Airport", + "keywords": "Stann Creek Airport" + }, + { + "id": "42213", + "ident": "BZ-INB", + "type": "small_airport", + "name": "Independence Airport", + "latitude_deg": "16.5345", + "longitude_deg": "-88.441299", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-SC", + "municipality": "Independence", + "scheduled_service": "no", + "gps_code": "MZSV", + "iata_code": "INB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Independence_Airport_(Belize)", + "keywords": "Savannah, Mango Creek" + }, + { + "id": "42214", + "ident": "BZ-MDB", + "type": "small_airport", + "name": "Melinda Airport", + "latitude_deg": "17.0042991638", + "longitude_deg": "-88.30419921880001", + "elevation_ft": "101", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-SC", + "municipality": "Melinda", + "scheduled_service": "no", + "iata_code": "MDB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Melinda_Airport" + }, + { + "id": "42212", + "ident": "BZ-ORZ", + "type": "small_airport", + "name": "Orange Walk Airport", + "latitude_deg": "18.0467662811", + "longitude_deg": "-88.58386993410001", + "elevation_ft": "111", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-OW", + "municipality": "Orange Walk", + "scheduled_service": "no", + "iata_code": "ORZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orange_Walk_Airport" + }, + { + "id": "42217", + "ident": "BZ-PLJ", + "type": "medium_airport", + "name": "Placencia Airport", + "latitude_deg": "16.536956787109375", + "longitude_deg": "-88.36151123046875", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-SC", + "municipality": "Placencia", + "scheduled_service": "yes", + "iata_code": "PLJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Placencia_Airport" + }, + { + "id": "35305", + "ident": "BZ-PND", + "type": "medium_airport", + "name": "Punta Gorda Airport", + "latitude_deg": "16.102399826", + "longitude_deg": "-88.80829620360001", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-TOL", + "municipality": "Punta Gorda", + "scheduled_service": "yes", + "iata_code": "PND", + "wikipedia_link": "https://en.wikipedia.org/wiki/Punta_Gorda_Airport" + }, + { + "id": "42210", + "ident": "BZ-SJX", + "type": "medium_airport", + "name": "Sartaneja Airport", + "latitude_deg": "18.35610008239746", + "longitude_deg": "-88.13079833984375", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-CZL", + "municipality": "Sartaneja", + "scheduled_service": "yes", + "iata_code": "SJX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sartaneja_Airport" + }, + { + "id": "32370", + "ident": "BZ-SPR", + "type": "medium_airport", + "name": "John Greif II Airport", + "latitude_deg": "17.9139", + "longitude_deg": "-87.9711", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-CY", + "municipality": "San Pedro", + "scheduled_service": "yes", + "gps_code": "MZSP", + "iata_code": "SPR", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Pedro_Airport" + }, + { + "id": "42218", + "ident": "BZ-SQS", + "type": "small_airport", + "name": "Matthew Spain Airport", + "latitude_deg": "17.185898", + "longitude_deg": "-89.009936", + "elevation_ft": "199", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-CY", + "municipality": "Spanish Lookout", + "scheduled_service": "no", + "gps_code": "MZCF", + "iata_code": "SQS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Matthew_Spain_Airport", + "keywords": "Central Farm Airstrip" + }, + { + "id": "42211", + "ident": "BZ-STU", + "type": "small_airport", + "name": "Santa Cruz Airport", + "latitude_deg": "18.2721004486084", + "longitude_deg": "-88.456298828125", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-CZL", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "iata_code": "STU" + }, + { + "id": "42208", + "ident": "BZ-SVK", + "type": "small_airport", + "name": "Silver Creek Airport", + "latitude_deg": "16.728338", + "longitude_deg": "-88.369174", + "elevation_ft": "216", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-SC", + "municipality": "Silver Creek", + "scheduled_service": "no", + "gps_code": "MZKT", + "iata_code": "SVK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Silver_Creek_Airport" + }, + { + "id": "42215", + "ident": "BZ-TZA", + "type": "medium_airport", + "name": "Sir Barry Bowen Municipal Airport", + "latitude_deg": "17.517239", + "longitude_deg": "-88.195775", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-BZ", + "municipality": "Belize City", + "scheduled_service": "yes", + "gps_code": "MZBE", + "iata_code": "TZA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Belize_City_Municipal_Airport", + "keywords": "Belize City Municipal" + }, + { + "id": "27300", + "ident": "BZB", + "type": "medium_airport", + "name": "Bazaruto Island Airport", + "latitude_deg": "-21.5411", + "longitude_deg": "35.4729", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-I", + "municipality": "Bazaruto Island", + "scheduled_service": "no", + "iata_code": "BZB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bazaruto_Island_Airport" + }, + { + "id": "302391", + "ident": "BZM", + "type": "small_airport", + "name": "Bemolanga Airport", + "latitude_deg": "-17.6925", + "longitude_deg": "45.0888333333", + "elevation_ft": "950", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Bemolanga", + "scheduled_service": "no", + "iata_code": "BZM" + }, + { + "id": "315551", + "ident": "BZS", + "type": "closed", + "name": "Buzzards Point Seaplane Base", + "latitude_deg": "38.863", + "longitude_deg": "-77.011", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DC", + "municipality": "Washington", + "scheduled_service": "no", + "iata_code": "BZS" + }, + { + "id": "16507", + "ident": "C00", + "type": "small_airport", + "name": "Mercer County Airport", + "latitude_deg": "41.2486", + "longitude_deg": "-90.737099", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Aledo", + "scheduled_service": "no", + "gps_code": "KC00", + "local_code": "C00" + }, + { + "id": "16508", + "ident": "C01", + "type": "small_airport", + "name": "Southern Cross Airport", + "latitude_deg": "39.655601501464844", + "longitude_deg": "-75.01439666748047", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Williamstown", + "scheduled_service": "no", + "gps_code": "C01", + "local_code": "C01" + }, + { + "id": "16510", + "ident": "C07", + "type": "small_airport", + "name": "Mack Mesa Airport", + "latitude_deg": "39.26814", + "longitude_deg": "-108.864045", + "elevation_ft": "4724", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Mack", + "scheduled_service": "no", + "local_code": "10CO", + "keywords": "C07" + }, + { + "id": "16511", + "ident": "C11", + "type": "small_airport", + "name": "Amana Airport", + "latitude_deg": "41.79359817504883", + "longitude_deg": "-91.86479949951172", + "elevation_ft": "712", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Amana", + "scheduled_service": "no", + "gps_code": "C11", + "local_code": "C11" + }, + { + "id": "4778", + "ident": "C21", + "type": "heliport", + "name": "Commonwealth Health Center Heliport", + "latitude_deg": "15.209759", + "longitude_deg": "145.72457", + "elevation_ft": "16", + "continent": "OC", + "iso_country": "MP", + "iso_region": "MP-U-A", + "municipality": "Garapan, Saipan", + "scheduled_service": "no", + "local_code": "C21" + }, + { + "id": "5505", + "ident": "C23", + "type": "small_airport", + "name": "Peleliu Airport", + "latitude_deg": "6.99744", + "longitude_deg": "134.232055", + "elevation_ft": "9", + "continent": "OC", + "iso_country": "PW", + "iso_region": "PW-350", + "municipality": "Peleliu", + "scheduled_service": "no", + "local_code": "C23", + "keywords": "Babelthuap Island" + }, + { + "id": "16512", + "ident": "C25", + "type": "small_airport", + "name": "Waverly Municipal Airport", + "latitude_deg": "42.742000579833984", + "longitude_deg": "-92.50789642333984", + "elevation_ft": "992", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Waverly", + "scheduled_service": "no", + "gps_code": "C25", + "local_code": "C25" + }, + { + "id": "16513", + "ident": "C37", + "type": "small_airport", + "name": "Brodhead Airport", + "latitude_deg": "42.59170150756836", + "longitude_deg": "-89.3750991821289", + "elevation_ft": "793", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Brodhead", + "scheduled_service": "no", + "gps_code": "C37", + "local_code": "C37" + }, + { + "id": "16514", + "ident": "C39", + "type": "seaplane_base", + "name": "Folsom Lake Seaplane Base", + "latitude_deg": "38.70719909667969", + "longitude_deg": "-121.13300323486328", + "elevation_ft": "466", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Folsom", + "scheduled_service": "no", + "gps_code": "C39", + "local_code": "C39" + }, + { + "id": "16515", + "ident": "C40", + "type": "small_airport", + "name": "Miller Airport", + "latitude_deg": "40.71670150756836", + "longitude_deg": "-85.25", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bluffton", + "scheduled_service": "no", + "gps_code": "C40", + "local_code": "C40" + }, + { + "id": "16516", + "ident": "C43", + "type": "small_airport", + "name": "Hiram Cure Airport", + "latitude_deg": "42.77000045776367", + "longitude_deg": "-84.96499633789062", + "elevation_ft": "853", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Sunfield", + "scheduled_service": "no", + "gps_code": "C43", + "local_code": "C43" + }, + { + "id": "16517", + "ident": "C44", + "type": "small_airport", + "name": "Toutant Airport", + "latitude_deg": "41.9557", + "longitude_deg": "-72.054398", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Woodstock", + "scheduled_service": "no", + "gps_code": "KC44", + "local_code": "C44", + "keywords": "CT04, George Campert Memorial" + }, + { + "id": "16518", + "ident": "C45", + "type": "small_airport", + "name": "Manito Mitchell Airport", + "latitude_deg": "40.48929977416992", + "longitude_deg": "-89.7780990600586", + "elevation_ft": "501", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Manito", + "scheduled_service": "no", + "gps_code": "C45", + "local_code": "C45" + }, + { + "id": "45958", + "ident": "C54", + "type": "heliport", + "name": "Catron County Heliport", + "latitude_deg": "34.315722", + "longitude_deg": "-108.309889", + "elevation_ft": "7205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Quemado", + "scheduled_service": "no", + "local_code": "C54" + }, + { + "id": "16519", + "ident": "C55", + "type": "small_airport", + "name": "Ogle County Airport", + "latitude_deg": "42.0373", + "longitude_deg": "-89.392899", + "elevation_ft": "929", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mount Morris", + "scheduled_service": "no", + "gps_code": "KC55", + "local_code": "C55" + }, + { + "id": "16520", + "ident": "C56", + "type": "small_airport", + "name": "Bult Field", + "latitude_deg": "41.377601623535156", + "longitude_deg": "-87.681396484375", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Monee", + "scheduled_service": "no", + "gps_code": "C56", + "local_code": "C56" + }, + { + "id": "16521", + "ident": "C59", + "type": "small_airport", + "name": "Lake Lawn Airport", + "latitude_deg": "42.63410186767578", + "longitude_deg": "-88.6010971069336", + "elevation_ft": "981", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Delavan", + "scheduled_service": "no", + "gps_code": "C59", + "local_code": "C59" + }, + { + "id": "16522", + "ident": "C66", + "type": "small_airport", + "name": "Monmouth Municipal Airport", + "latitude_deg": "40.9296989440918", + "longitude_deg": "-90.631103515625", + "elevation_ft": "753", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Monmouth", + "scheduled_service": "no", + "gps_code": "C66", + "local_code": "C66" + }, + { + "id": "16523", + "ident": "C72", + "type": "small_airport", + "name": "Cross Winds Airport", + "latitude_deg": "47.978058", + "longitude_deg": "-117.526975", + "elevation_ft": "2150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Clayton", + "scheduled_service": "no", + "local_code": "C72", + "keywords": "WN09" + }, + { + "id": "16524", + "ident": "C82", + "type": "small_airport", + "name": "Bresson Airport", + "latitude_deg": "41.76250076293945", + "longitude_deg": "-89.10150146484375", + "elevation_ft": "769", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Compton", + "scheduled_service": "no", + "gps_code": "C82", + "local_code": "C82" + }, + { + "id": "16525", + "ident": "C86", + "type": "small_airport", + "name": "Freeport/Dornink Airport", + "latitude_deg": "42.37779", + "longitude_deg": "-89.564465", + "elevation_ft": "949", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Freeport", + "scheduled_service": "no", + "gps_code": "KC86", + "local_code": "C86" + }, + { + "id": "16526", + "ident": "C89", + "type": "small_airport", + "name": "Sylvania Airport", + "latitude_deg": "42.70330047607422", + "longitude_deg": "-87.95899963378906", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Sturtevant", + "scheduled_service": "no", + "gps_code": "C89", + "local_code": "C89" + }, + { + "id": "16527", + "ident": "C92", + "type": "small_airport", + "name": "Mentone Airport", + "latitude_deg": "41.150001525878906", + "longitude_deg": "-86.0625", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Mentone", + "scheduled_service": "no", + "gps_code": "C92", + "local_code": "C92" + }, + { + "id": "16528", + "ident": "C94", + "type": "small_airport", + "name": "Earlville Airport", + "latitude_deg": "41.56700134277344", + "longitude_deg": "-88.9478988647461", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Earlville", + "scheduled_service": "no", + "gps_code": "C94", + "local_code": "C94" + }, + { + "id": "16529", + "ident": "C97", + "type": "small_airport", + "name": "Lowell Airport", + "latitude_deg": "41.230098724365234", + "longitude_deg": "-87.50769805908203", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lowell", + "scheduled_service": "no", + "gps_code": "C97", + "local_code": "C97", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lowell_Airport" + }, + { + "id": "16530", + "ident": "C98", + "type": "small_airport", + "name": "Lake Village Airport", + "latitude_deg": "41.148114", + "longitude_deg": "-87.459925", + "elevation_ft": "644", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lake Village", + "scheduled_service": "no", + "gps_code": "KC98", + "local_code": "C98", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_Village_Airport" + }, + { + "id": "28476", + "ident": "CA-0001", + "type": "closed", + "name": "Lac-des-Loups Airport", + "latitude_deg": "46.982200622558594", + "longitude_deg": "-76.48249816894531", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Lac-des-Loups", + "scheduled_service": "no" + }, + { + "id": "28477", + "ident": "CA-0002", + "type": "small_airport", + "name": "Pourvoirie Joncas Airstrip", + "latitude_deg": "47.10540008544922", + "longitude_deg": "-77.631103515625", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Saint-Lazare", + "scheduled_service": "no" + }, + { + "id": "35388", + "ident": "CA-0003", + "type": "closed", + "name": "RCAF Station Buttress", + "latitude_deg": "50.23609924316406", + "longitude_deg": "-105.5479965209961", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Moose Jaw", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buttress%2C_Saskatchewan" + }, + { + "id": "35389", + "ident": "CA-0004", + "type": "closed", + "name": "RCAF Station Aylmer", + "latitude_deg": "42.80590057373047", + "longitude_deg": "-80.94419860839844", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Aylmer", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RCAF_Station_Aylmer" + }, + { + "id": "35390", + "ident": "CA-0005", + "type": "closed", + "name": "RCAF Station Lincoln Park", + "latitude_deg": "51.0093994140625", + "longitude_deg": "-114.13300323486328", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RCAF_Station_Calgary", + "keywords": "RCAF Station Calgary" + }, + { + "id": "35391", + "ident": "CA-0006", + "type": "closed", + "name": "RCAF Station Carberry", + "latitude_deg": "49.872100830078125", + "longitude_deg": "-99.39730072021484", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Carberry", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RCAF_Station_Carberry" + }, + { + "id": "35392", + "ident": "CA-0007", + "type": "closed", + "name": "RCAF Station Fingal (No. 4 Bombing and Gunnery School)", + "latitude_deg": "42.680099487300005", + "longitude_deg": "-81.32730102539999", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Fingal", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RCAF_Station_Fingal", + "keywords": "BCATP" + }, + { + "id": "35393", + "ident": "CA-0008", + "type": "closed", + "name": "RCAF Station Mossbank", + "latitude_deg": "49.92169952392578", + "longitude_deg": "-105.87300109863281", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Mossbank", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RCAF_Station_Mossbank" + }, + { + "id": "35394", + "ident": "CA-0009", + "type": "closed", + "name": "Hamlin Airport", + "latitude_deg": "52.880001068115234", + "longitude_deg": "-108.28900146484375", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "North Battleford", + "scheduled_service": "no", + "local_code": "CJD4", + "wikipedia_link": "https://en.wikipedia.org/wiki/North_Battleford/Hamlin_Airport" + }, + { + "id": "35142", + "ident": "CA-0010", + "type": "closed", + "name": "Maple Airport", + "latitude_deg": "43.843356522899995", + "longitude_deg": "-79.5260703564", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Vaughan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maple_Airport", + "keywords": "Gillies Flying Service" + }, + { + "id": "35148", + "ident": "CA-0011", + "type": "closed", + "name": "King City Airport", + "latitude_deg": "43.905799865722656", + "longitude_deg": "-79.55960083007812", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "King City", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/King_City_Airport" + }, + { + "id": "35395", + "ident": "CA-0012", + "type": "closed", + "name": "RCAF Detachment Granum", + "latitude_deg": "49.808998", + "longitude_deg": "-113.445", + "elevation_ft": "3255", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Granum", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RCAF_Station_Fort_Macleod", + "keywords": "BCATP, RCAF" + }, + { + "id": "35396", + "ident": "CA-0013", + "type": "closed", + "name": "RCAF Pennfield Ridge", + "latitude_deg": "45.1265983581543", + "longitude_deg": "-66.69300079345703", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Pennfield", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RCAF_Station_Pennfield_Ridge" + }, + { + "id": "35397", + "ident": "CA-0014", + "type": "closed", + "name": "RCAF Station Dafoe", + "latitude_deg": "51.932098388671875", + "longitude_deg": "-104.56700134277344", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Dafoe", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RCAF_Station_Dafoe" + }, + { + "id": "35358", + "ident": "CA-0015", + "type": "small_airport", + "name": "Maxville Airport", + "latitude_deg": "45.296501", + "longitude_deg": "-74.8536", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Maxville", + "scheduled_service": "no", + "gps_code": "CMX2", + "local_code": "CMX2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maxville_Aerodrome" + }, + { + "id": "39086", + "ident": "CA-0016", + "type": "closed", + "name": "Dog Creek Airport", + "latitude_deg": "51.626598", + "longitude_deg": "-122.255997", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Dog Creek", + "scheduled_service": "no", + "local_code": "AH2" + }, + { + "id": "39663", + "ident": "CA-0017", + "type": "closed", + "name": "Agnes Lake Airport", + "latitude_deg": "55.8086710079", + "longitude_deg": "-112.508411407", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Agnes Lake", + "scheduled_service": "no" + }, + { + "id": "39664", + "ident": "CA-0018", + "type": "closed", + "name": "Aishihik Airport", + "latitude_deg": "61.6505264292", + "longitude_deg": "-137.488231659", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Aishihik", + "scheduled_service": "no" + }, + { + "id": "39665", + "ident": "CA-0019", + "type": "closed", + "name": "Albert Bay Airport", + "latitude_deg": "69.63333129882812", + "longitude_deg": "-103.61666870117188", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no" + }, + { + "id": "39666", + "ident": "CA-0020", + "type": "closed", + "name": "Algar Tower Airport", + "latitude_deg": "56.11666488647461", + "longitude_deg": "-111.76667022705078", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39667", + "ident": "CA-0021", + "type": "closed", + "name": "Amber Tower Airport", + "latitude_deg": "59.1797103168", + "longitude_deg": "-119.468593597", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39668", + "ident": "CA-0022", + "type": "closed", + "name": "Anama Bay-Dauphin River Airport", + "latitude_deg": "51.9626732292", + "longitude_deg": "-98.13683509830001", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no" + }, + { + "id": "39669", + "ident": "CA-0023", + "type": "closed", + "name": "Anderson Point Airport", + "latitude_deg": "68.21666717529297", + "longitude_deg": "-87.91666412353516", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no" + }, + { + "id": "39670", + "ident": "CA-0024", + "type": "closed", + "name": "Anderson Ranch Airport", + "latitude_deg": "53.45000076293945", + "longitude_deg": "-123.56666564941406", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39671", + "ident": "CA-0025", + "type": "closed", + "name": "Anglemont Airport", + "latitude_deg": "50.9684003477", + "longitude_deg": "-119.166812897", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Anglemont", + "scheduled_service": "no", + "local_code": "AA3" + }, + { + "id": "39672", + "ident": "CA-0026", + "type": "closed", + "name": "Arthur North Airport", + "latitude_deg": "43.883333", + "longitude_deg": "-80.533333", + "elevation_ft": "1576", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Arthur", + "scheduled_service": "no", + "local_code": "PT4" + }, + { + "id": "39673", + "ident": "CA-0027", + "type": "closed", + "name": "Asbestos Airport", + "latitude_deg": "45.79425", + "longitude_deg": "-71.995339", + "elevation_ft": "528", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Danville", + "scheduled_service": "no", + "keywords": "CSA2, SA2, YAF" + }, + { + "id": "39674", + "ident": "CA-0028", + "type": "closed", + "name": "Sundance Guest Ranch \"C\" Airport", + "latitude_deg": "50.66669845581055", + "longitude_deg": "-121.26699829101562", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Ashcroft", + "scheduled_service": "no" + }, + { + "id": "39675", + "ident": "CA-0029", + "type": "closed", + "name": "Crystal Lake Airport", + "latitude_deg": "48.71670150756836", + "longitude_deg": "-91.2667007446289", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Atikokan", + "scheduled_service": "no" + }, + { + "id": "39676", + "ident": "CA-0030", + "type": "closed", + "name": "Atkinson Point DEW Line Station", + "latitude_deg": "69.933616", + "longitude_deg": "-131.431906", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Atkinson Point", + "scheduled_service": "no" + }, + { + "id": "39677", + "ident": "CA-0031", + "type": "closed", + "name": "Austin Airport", + "latitude_deg": "49.93333435058594", + "longitude_deg": "-98.91666412353516", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no" + }, + { + "id": "39678", + "ident": "CA-0032", + "type": "closed", + "name": "Aylmer Airport", + "latitude_deg": "42.79999923706055", + "longitude_deg": "-80.94999694824219", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "39679", + "ident": "CA-0033", + "type": "closed", + "name": "Baskatong Lake Airport", + "latitude_deg": "46.777728", + "longitude_deg": "-75.881453", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Dépôt Baskatong", + "scheduled_service": "no", + "local_code": "SA5" + }, + { + "id": "39680", + "ident": "CA-0034", + "type": "closed", + "name": "Basnett Airport", + "latitude_deg": "57.36666488647461", + "longitude_deg": "-119.81666564941406", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39681", + "ident": "CA-0035", + "type": "closed", + "name": "Batnuni Airport", + "latitude_deg": "53.38333511352539", + "longitude_deg": "-124.13333129882812", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39682", + "ident": "CA-0036", + "type": "closed", + "name": "Bay d'Espoir Airport", + "latitude_deg": "47.958261", + "longitude_deg": "-55.854492", + "elevation_ft": "718", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Saint-Veronica's", + "scheduled_service": "no", + "local_code": "CX4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bay_d%27Espoir_Aerodrome" + }, + { + "id": "39683", + "ident": "CA-0037", + "type": "closed", + "name": "Bear River Airport", + "latitude_deg": "64.817401", + "longitude_deg": "-134.264431", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Nacho Nyak Dun First Nation", + "scheduled_service": "no" + }, + { + "id": "39684", + "ident": "CA-0038", + "type": "closed", + "name": "Beatton River Airport", + "latitude_deg": "57.379861", + "longitude_deg": "-121.411645", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "keywords": "YZC" + }, + { + "id": "39685", + "ident": "CA-0039", + "type": "closed", + "name": "Beaulieu River Airport", + "latitude_deg": "62.45000076293945", + "longitude_deg": "-113.03333282470703", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no" + }, + { + "id": "39686", + "ident": "CA-0040", + "type": "closed", + "name": "Beausejour Airport", + "latitude_deg": "50.1369749474", + "longitude_deg": "-96.20821952819999", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Beausejour", + "scheduled_service": "no" + }, + { + "id": "39687", + "ident": "CA-0041", + "type": "closed", + "name": "Beaver River Airport", + "latitude_deg": "59.971508", + "longitude_deg": "-124.203272", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "local_code": "AS5" + }, + { + "id": "39688", + "ident": "CA-0042", + "type": "closed", + "name": "Beaverdell Airport", + "latitude_deg": "49.4572459793", + "longitude_deg": "-119.08806324", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Beaverdell", + "scheduled_service": "no" + }, + { + "id": "42744", + "ident": "CA-0043", + "type": "small_airport", + "name": "1669 Diamondview Road Private Strip", + "latitude_deg": "45.31809997558594", + "longitude_deg": "-76.05599975585938", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Carp", + "scheduled_service": "no" + }, + { + "id": "39690", + "ident": "CA-0044", + "type": "closed", + "name": "Belledune Airport", + "latitude_deg": "47.892754", + "longitude_deg": "-65.827589", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Belledune", + "scheduled_service": "no" + }, + { + "id": "39691", + "ident": "CA-0045", + "type": "closed", + "name": "Bennett Field Airport", + "latitude_deg": "65.0309303519", + "longitude_deg": "-124.666671753", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no" + }, + { + "id": "39692", + "ident": "CA-0046", + "type": "closed", + "name": "Berland Airport", + "latitude_deg": "54.0936811465", + "longitude_deg": "-117.407627106", + "elevation_ft": "4015", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Berland", + "scheduled_service": "no", + "local_code": "EY2" + }, + { + "id": "39693", + "ident": "CA-0047", + "type": "closed", + "name": "Bernard Harbour DEW Line Station", + "latitude_deg": "68.78287", + "longitude_deg": "-114.826611", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Bernard Harbour", + "scheduled_service": "no" + }, + { + "id": "39694", + "ident": "CA-0048", + "type": "closed", + "name": "Bethany Airport", + "latitude_deg": "50.349998474121094", + "longitude_deg": "-99.75", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no" + }, + { + "id": "39695", + "ident": "CA-0049", + "type": "closed", + "name": "Big Creek Airport", + "latitude_deg": "51.7264965111", + "longitude_deg": "-123.027133942", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Big Creek", + "scheduled_service": "no" + }, + { + "id": "39696", + "ident": "CA-0050", + "type": "closed", + "name": "Bird Airport", + "latitude_deg": "56.507241", + "longitude_deg": "-94.204213", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Bird", + "scheduled_service": "no" + }, + { + "id": "39697", + "ident": "CA-0051", + "type": "closed", + "name": "Bison Airport", + "latitude_deg": "57.074941", + "longitude_deg": "-116.52606", + "elevation_ft": "2380", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Bison", + "scheduled_service": "no", + "local_code": "ES2" + }, + { + "id": "39698", + "ident": "CA-0052", + "type": "closed", + "name": "Wallace Lake Airport", + "latitude_deg": "51.008354", + "longitude_deg": "-95.421925", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Bissett", + "scheduled_service": "no", + "local_code": "JB9", + "keywords": "JB9" + }, + { + "id": "39699", + "ident": "CA-0053", + "type": "closed", + "name": "Blissville Airport", + "latitude_deg": "45.605633", + "longitude_deg": "-66.543678", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Blissville", + "scheduled_service": "no", + "iata_code": "YYS", + "keywords": "CH3, CCH3" + }, + { + "id": "39700", + "ident": "CA-0054", + "type": "closed", + "name": "Blow River Airport", + "latitude_deg": "68.7751033003", + "longitude_deg": "-137.455358505", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Blow River", + "scheduled_service": "no" + }, + { + "id": "39701", + "ident": "CA-0055", + "type": "closed", + "name": "Bonavista Airport", + "latitude_deg": "48.566931", + "longitude_deg": "-53.057238", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Little Catalina", + "scheduled_service": "no", + "local_code": "DB4" + }, + { + "id": "353693", + "ident": "CA-0056", + "type": "small_airport", + "name": "Saint-Bernard-de-Lacolle Airport", + "latitude_deg": "45.03072", + "longitude_deg": "-73.41959", + "elevation_ft": "299", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Saint-Bernard-de-Lacolle", + "scheduled_service": "no" + }, + { + "id": "39703", + "ident": "CA-0057", + "type": "closed", + "name": "Boston Bar Airport", + "latitude_deg": "49.9833335876", + "longitude_deg": "-121.5", + "elevation_ft": "1039", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Fraser Canyon", + "scheduled_service": "no", + "local_code": "AD3" + }, + { + "id": "39704", + "ident": "CA-0058", + "type": "closed", + "name": "Bray Island DEW Line Station", + "latitude_deg": "69.223889", + "longitude_deg": "-77.229999", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Bray Island", + "scheduled_service": "no" + }, + { + "id": "39705", + "ident": "CA-0059", + "type": "closed", + "name": "Brazeau Airport", + "latitude_deg": "52.967817", + "longitude_deg": "-115.86737", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Yellowhead", + "scheduled_service": "no" + }, + { + "id": "39706", + "ident": "CA-0060", + "type": "closed", + "name": "Bredenbury Airport", + "latitude_deg": "50.93333435058594", + "longitude_deg": "-102.05000305175781", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no" + }, + { + "id": "39707", + "ident": "CA-0061", + "type": "closed", + "name": "Bristol Field Airport", + "latitude_deg": "47.3101399785", + "longitude_deg": "-53.9902496338", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Argentia", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/McAndrew_AFB", + "keywords": "Naval Station Argentia, McAndrew Air Force Base" + }, + { + "id": "42745", + "ident": "CA-0062", + "type": "small_airport", + "name": "1797 Diamondview Road Private Strip", + "latitude_deg": "45.331119537353516", + "longitude_deg": "-76.07295989990234", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Carp", + "scheduled_service": "no" + }, + { + "id": "39709", + "ident": "CA-0063", + "type": "closed", + "name": "Buchans Airport", + "latitude_deg": "48.8478295395", + "longitude_deg": "-56.838884353599994", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Buchans", + "scheduled_service": "no" + }, + { + "id": "39710", + "ident": "CA-0064", + "type": "closed", + "name": "Buckingham Airport", + "latitude_deg": "45.63333511352539", + "longitude_deg": "-75.4000015258789", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "39711", + "ident": "CA-0065", + "type": "closed", + "name": "Budworm City Airport", + "latitude_deg": "47.529597", + "longitude_deg": "-66.629645", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Balmoral Parish", + "scheduled_service": "no", + "local_code": "CT4" + }, + { + "id": "39712", + "ident": "CA-0066", + "type": "closed", + "name": "Buffalo Creek Airport", + "latitude_deg": "56.6121839037", + "longitude_deg": "-113.069143295", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Buffalo Creek", + "scheduled_service": "no" + }, + { + "id": "39713", + "ident": "CA-0067", + "type": "closed", + "name": "Burrage Creek Airport", + "latitude_deg": "57.266666412353516", + "longitude_deg": "-130.25", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39714", + "ident": "CA-0068", + "type": "closed", + "name": "Burtch Airport", + "latitude_deg": "43.0531475098", + "longitude_deg": "-80.2761554718", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Brantford", + "scheduled_service": "no" + }, + { + "id": "46632", + "ident": "CA-0069", + "type": "small_airport", + "name": "Knutsford Airfield", + "latitude_deg": "50.598031", + "longitude_deg": "-120.30864", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kamloops", + "scheduled_service": "no", + "gps_code": "CYKS", + "local_code": "YKS" + }, + { + "id": "39716", + "ident": "CA-0070", + "type": "closed", + "name": "Byron Bay DEW Line Station", + "latitude_deg": "68.756234", + "longitude_deg": "-109.088745", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Byron Bay", + "scheduled_service": "no", + "gps_code": "CYUK", + "keywords": "YUK" + }, + { + "id": "39717", + "ident": "CA-0071", + "type": "closed", + "name": "Cabin Creek Airport", + "latitude_deg": "53.75", + "longitude_deg": "-118.33333587646484", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39718", + "ident": "CA-0072", + "type": "closed", + "name": "Cabin Airport", + "latitude_deg": "59.269517", + "longitude_deg": "-121.626025", + "elevation_ft": "2238", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Cabin", + "scheduled_service": "no", + "local_code": "AL9" + }, + { + "id": "39719", + "ident": "CA-0073", + "type": "closed", + "name": "Calgary (Children's Hospital) Heliport", + "latitude_deg": "51.037319", + "longitude_deg": "-114.112127", + "elevation_ft": "3615", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "no", + "keywords": "FZ2" + }, + { + "id": "39720", + "ident": "CA-0074", + "type": "closed", + "name": "Campbellford Airport", + "latitude_deg": "44.400001525878906", + "longitude_deg": "-77.7667007446289", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Campbellford", + "scheduled_service": "no" + }, + { + "id": "39721", + "ident": "CA-0075", + "type": "closed", + "name": "Terra Mining Airport", + "latitude_deg": "65.609152", + "longitude_deg": "-118.141592", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Camsell River", + "scheduled_service": "no", + "local_code": "FS3" + }, + { + "id": "39722", + "ident": "CA-0076", + "type": "closed", + "name": "Cape Christian Airport", + "latitude_deg": "70.51667022705078", + "longitude_deg": "-68.30000305175781", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no" + }, + { + "id": "39723", + "ident": "CA-0077", + "type": "closed", + "name": "Cape Dyer Airport", + "latitude_deg": "66.59", + "longitude_deg": "-61.5732", + "elevation_ft": "1290", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Cape Dyer", + "scheduled_service": "no", + "local_code": "YVN", + "keywords": "CYVN" + }, + { + "id": "39724", + "ident": "CA-0078", + "type": "closed", + "name": "Cape Hooper DEW Line Station", + "latitude_deg": "68.461401", + "longitude_deg": "-66.838847", + "elevation_ft": "58", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Cape Hooper", + "scheduled_service": "no", + "keywords": "YUZ" + }, + { + "id": "39725", + "ident": "CA-0079", + "type": "closed", + "name": "Cape Jones Airport", + "latitude_deg": "54.63333511352539", + "longitude_deg": "-79.69999694824219", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "39726", + "ident": "CA-0080", + "type": "closed", + "name": "Cape Parry DEW Line Station", + "latitude_deg": "70.166765", + "longitude_deg": "-124.693969", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Cape Parry", + "scheduled_service": "no" + }, + { + "id": "39727", + "ident": "CA-0081", + "type": "closed", + "name": "Cape Young DEW Line Station", + "latitude_deg": "68.934774", + "longitude_deg": "-116.933241", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Cape Young", + "scheduled_service": "no", + "gps_code": "CYUI", + "keywords": "YUI" + }, + { + "id": "39728", + "ident": "CA-0082", + "type": "closed", + "name": "Carberry Airport", + "latitude_deg": "49.849998474121094", + "longitude_deg": "-99.31666564941406", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no" + }, + { + "id": "39729", + "ident": "CA-0083", + "type": "closed", + "name": "Carrot River Airport", + "latitude_deg": "53.28333282470703", + "longitude_deg": "-103.55000305175781", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no" + }, + { + "id": "39730", + "ident": "CA-0084", + "type": "closed", + "name": "Casey Airport", + "latitude_deg": "47.93333435058594", + "longitude_deg": "-74.0999984741211", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "39731", + "ident": "CA-0085", + "type": "closed", + "name": "Casino Airport", + "latitude_deg": "62.75", + "longitude_deg": "-138.78334045410156", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "scheduled_service": "no" + }, + { + "id": "39732", + "ident": "CA-0086", + "type": "closed", + "name": "Cavendish Airport", + "latitude_deg": "50.79999923706055", + "longitude_deg": "-110.44999694824219", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39733", + "ident": "CA-0087", + "type": "closed", + "name": "Charlotte Lake Airport", + "latitude_deg": "52.153139", + "longitude_deg": "-125.275156", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "41087", + "ident": "CA-0088", + "type": "small_airport", + "name": "Navan Bearbrook Airport", + "latitude_deg": "45.391666412353516", + "longitude_deg": "-75.29694366455078", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ottawa", + "scheduled_service": "no", + "keywords": "Navan, Bearbrook, Bourget, Casselman, Mogas, Embrun" + }, + { + "id": "39735", + "ident": "CA-0089", + "type": "closed", + "name": "Chilko Lake (Wilderness Ranch) Airport", + "latitude_deg": "51.665422", + "longitude_deg": "-124.144478", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Chilko Lake", + "scheduled_service": "no" + }, + { + "id": "39736", + "ident": "CA-0090", + "type": "closed", + "name": "Chipmunk Airport", + "latitude_deg": "56.71666717529297", + "longitude_deg": "-127.83333587646484", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39737", + "ident": "CA-0091", + "type": "closed", + "name": "Chunamon Airport", + "latitude_deg": "56.233333587646484", + "longitude_deg": "-124.38333129882812", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39738", + "ident": "CA-0092", + "type": "closed", + "name": "Churchill Falls Airport", + "latitude_deg": "53.63333511352539", + "longitude_deg": "-64.48332977294922", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "scheduled_service": "no" + }, + { + "id": "39739", + "ident": "CA-0093", + "type": "closed", + "name": "Clearwater Airport", + "latitude_deg": "51.65739", + "longitude_deg": "-120.070878", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39740", + "ident": "CA-0094", + "type": "closed", + "name": "Clifton Point DEW Line Station", + "latitude_deg": "69.215526", + "longitude_deg": "-118.636294", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no" + }, + { + "id": "39741", + "ident": "CA-0095", + "type": "closed", + "name": "Clinton Creek Airport", + "latitude_deg": "64.475545", + "longitude_deg": "-140.741748", + "elevation_ft": "2040", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Clinton Creek Mine", + "scheduled_service": "no", + "iata_code": "YLM" + }, + { + "id": "39742", + "ident": "CA-0096", + "type": "closed", + "name": "Clinton Point DEW Line Station", + "latitude_deg": "69.583336", + "longitude_deg": "-120.75", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Clinton Point", + "scheduled_service": "no", + "gps_code": "CYUH", + "keywords": "YUH" + }, + { + "id": "39743", + "ident": "CA-0097", + "type": "closed", + "name": "Coal Valley Airport", + "latitude_deg": "53.08333206176758", + "longitude_deg": "-116.81666564941406", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39744", + "ident": "CA-0098", + "type": "closed", + "name": "Comet Airport", + "latitude_deg": "58.54999923706055", + "longitude_deg": "-119.05000305175781", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39745", + "ident": "CA-0099", + "type": "closed", + "name": "Cormorant Lake Airport", + "latitude_deg": "54.233333587646484", + "longitude_deg": "-100.5999984741211", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no" + }, + { + "id": "39746", + "ident": "CA-0100", + "type": "closed", + "name": "Covey Hill Airport", + "latitude_deg": "45.016001", + "longitude_deg": "-73.6888", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Covey Hill", + "scheduled_service": "no", + "local_code": "SH3" + }, + { + "id": "39747", + "ident": "CA-0101", + "type": "closed", + "name": "Cowpar Airport", + "latitude_deg": "55.95000076293945", + "longitude_deg": "-110.5", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39748", + "ident": "CA-0102", + "type": "closed", + "name": "Crater Airport", + "latitude_deg": "58.70000076293945", + "longitude_deg": "-118.68333435058594", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39749", + "ident": "CA-0103", + "type": "closed", + "name": "Crater Airport", + "latitude_deg": "49.91666793823242", + "longitude_deg": "-99.80000305175781", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no" + }, + { + "id": "39750", + "ident": "CA-0104", + "type": "closed", + "name": "Crawfish Lake Airport", + "latitude_deg": "49.70000076293945", + "longitude_deg": "-126.76667022705078", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39751", + "ident": "CA-0105", + "type": "closed", + "name": "Cree Lake Airport", + "latitude_deg": "57.36666488647461", + "longitude_deg": "-107.13333129882812", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no" + }, + { + "id": "39752", + "ident": "CA-0106", + "type": "closed", + "name": "Crooked Lake Airport", + "latitude_deg": "72.66666412353516", + "longitude_deg": "-98.5", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no" + }, + { + "id": "39753", + "ident": "CA-0107", + "type": "closed", + "name": "Cullaton Lake Airport", + "latitude_deg": "61.31666564941406", + "longitude_deg": "-98.5", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no" + }, + { + "id": "39754", + "ident": "CA-0108", + "type": "closed", + "name": "Culloden Airport", + "latitude_deg": "42.883333", + "longitude_deg": "-80.866669", + "elevation_ft": "938", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "local_code": "PQ2" + }, + { + "id": "39755", + "ident": "CA-0109", + "type": "closed", + "name": "Cypre River Airport", + "latitude_deg": "49.257414", + "longitude_deg": "-125.938897", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "local_code": "BK3" + }, + { + "id": "42746", + "ident": "CA-0110", + "type": "closed", + "name": "Cap-de-la-Madeleine", + "latitude_deg": "46.38056945800781", + "longitude_deg": "-72.53002166748047", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_British_Commonwealth_Air_Training_Plan_facilities_in_Canada", + "keywords": "bcatp,military" + }, + { + "id": "39757", + "ident": "CA-0111", + "type": "closed", + "name": "Davis Inlet Airport", + "latitude_deg": "55.898706", + "longitude_deg": "-60.912752", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Natuashish", + "scheduled_service": "no", + "keywords": "CCB4, YDI" + }, + { + "id": "39758", + "ident": "CA-0112", + "type": "closed", + "name": "Deception Airport", + "latitude_deg": "62.112314446199996", + "longitude_deg": "-74.554681778", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "iata_code": "YGY" + }, + { + "id": "39759", + "ident": "CA-0113", + "type": "closed", + "name": "Dewar Lakes DEW Line Station", + "latitude_deg": "68.627546", + "longitude_deg": "-71.125832", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Dewar Lakes", + "scheduled_service": "no", + "local_code": "YUW" + }, + { + "id": "39760", + "ident": "CA-0114", + "type": "closed", + "name": "Discovery Airport", + "latitude_deg": "63.18333435058594", + "longitude_deg": "-113.9000015258789", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no" + }, + { + "id": "45214", + "ident": "CA-0115", + "type": "closed", + "name": "RCAF Station Caron", + "latitude_deg": "50.4602361484", + "longitude_deg": "-105.812416077", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no" + }, + { + "id": "39762", + "ident": "CA-0116", + "type": "closed", + "name": "Douglastown Airport", + "latitude_deg": "47.03333282470703", + "longitude_deg": "-65.53333282470703", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "scheduled_service": "no" + }, + { + "id": "39763", + "ident": "CA-0117", + "type": "closed", + "name": "Drake Point Airport", + "latitude_deg": "76.4000015258789", + "longitude_deg": "-108.53333282470703", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no" + }, + { + "id": "39764", + "ident": "CA-0118", + "type": "closed", + "name": "Drake Point Airport", + "latitude_deg": "76.46666717529297", + "longitude_deg": "-108.73332977294922", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no" + }, + { + "id": "39765", + "ident": "CA-0119", + "type": "closed", + "name": "Driftwood Airport", + "latitude_deg": "55.81666564941406", + "longitude_deg": "-126.41666412353516", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "349729", + "ident": "CA-0120", + "type": "closed", + "name": "RCAF Detachment Shepard", + "latitude_deg": "50.95", + "longitude_deg": "-113.9667", + "elevation_ft": "3400", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Shepard", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Calgary_air_force_stations", + "keywords": "BCATP, RCAF" + }, + { + "id": "39767", + "ident": "CA-0121", + "type": "closed", + "name": "Fort Franklin Airport", + "latitude_deg": "65.1925", + "longitude_deg": "-123.430002", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Délįne", + "scheduled_service": "no", + "local_code": "YWJ" + }, + { + "id": "39768", + "ident": "CA-0122", + "type": "closed", + "name": "Eaglenest Airport", + "latitude_deg": "57.599998474121094", + "longitude_deg": "-129.4166717529297", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39769", + "ident": "CA-0123", + "type": "closed", + "name": "Eaglesham Airport", + "latitude_deg": "55.8094", + "longitude_deg": "-117.8924", + "elevation_ft": "1852", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Eaglesham", + "scheduled_service": "no", + "local_code": "EX2" + }, + { + "id": "39770", + "ident": "CA-0124", + "type": "closed", + "name": "East Templeton Airport", + "latitude_deg": "45.499401", + "longitude_deg": "-75.547401", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Gatineau", + "scheduled_service": "no" + }, + { + "id": "39771", + "ident": "CA-0125", + "type": "closed", + "name": "Bremner Airport", + "latitude_deg": "53.583302", + "longitude_deg": "-113.233002", + "elevation_ft": "2225", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Edmonton", + "scheduled_service": "no", + "local_code": "FR3" + }, + { + "id": "39772", + "ident": "CA-0126", + "type": "closed", + "name": "Namao Airport", + "latitude_deg": "53.68330001831055", + "longitude_deg": "-113.46700286865234", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Edmonton", + "scheduled_service": "no" + }, + { + "id": "39773", + "ident": "CA-0127", + "type": "closed", + "name": "Edmunston (Fraser Papers Inc) Heliport", + "latitude_deg": "47.36666488647461", + "longitude_deg": "-68.33333587646484", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "scheduled_service": "no" + }, + { + "id": "39774", + "ident": "CA-0128", + "type": "closed", + "name": "Eltrut Airport", + "latitude_deg": "48.96666717529297", + "longitude_deg": "-92.36666870117188", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "39775", + "ident": "CA-0129", + "type": "closed", + "name": "Esker Lake Airport", + "latitude_deg": "61.650001525878906", + "longitude_deg": "-74.66666412353516", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "39776", + "ident": "CA-0130", + "type": "closed", + "name": "Espanola (East) Airport", + "latitude_deg": "46.266666412353516", + "longitude_deg": "-81.73332977294922", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "39777", + "ident": "CA-0131", + "type": "closed", + "name": "Espanola (West) Airport", + "latitude_deg": "46.25", + "longitude_deg": "-81.8499984741211", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "39778", + "ident": "CA-0132", + "type": "closed", + "name": "Finbow Airport", + "latitude_deg": "57.266663", + "longitude_deg": "-125.449997", + "elevation_ft": "2460", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "local_code": "BF2" + }, + { + "id": "39779", + "ident": "CA-0133", + "type": "closed", + "name": "Foggy Tower Airport", + "latitude_deg": "58.68333435058594", + "longitude_deg": "-114.96666717529297", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39780", + "ident": "CA-0134", + "type": "closed", + "name": "Fort George Airport", + "latitude_deg": "53.81666564941406", + "longitude_deg": "-79", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "39781", + "ident": "CA-0135", + "type": "closed", + "name": "Fort McMurray Heliport", + "latitude_deg": "56.66666793823242", + "longitude_deg": "-111.33333587646484", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39782", + "ident": "CA-0136", + "type": "closed", + "name": "Fort Nelson (Forestry) Heliport", + "latitude_deg": "58.79999923706055", + "longitude_deg": "-122.73332977294922", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39783", + "ident": "CA-0137", + "type": "closed", + "name": "Mobil Sierra Airport", + "latitude_deg": "58.834113", + "longitude_deg": "-121.393175", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Fort Nelson", + "scheduled_service": "no" + }, + { + "id": "39784", + "ident": "CA-0138", + "type": "closed", + "name": "Tompkins Mile 54 Airport", + "latitude_deg": "56.29999923706055", + "longitude_deg": "-121", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Fort St. John", + "scheduled_service": "no" + }, + { + "id": "39785", + "ident": "CA-0139", + "type": "closed", + "name": "Fredericton (Forestry Centre) Heliport", + "latitude_deg": "45.93333435058594", + "longitude_deg": "-66.66666412353516", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "scheduled_service": "no" + }, + { + "id": "39786", + "ident": "CA-0140", + "type": "closed", + "name": "Gagnon Airport", + "latitude_deg": "51.95000076293945", + "longitude_deg": "-68.13333129882812", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "39787", + "ident": "CA-0141", + "type": "closed", + "name": "Germansen Landing Airport", + "latitude_deg": "55.767439", + "longitude_deg": "-124.691757", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "local_code": "YGS" + }, + { + "id": "39788", + "ident": "CA-0142", + "type": "closed", + "name": "Gift Lake Airport", + "latitude_deg": "55.86666488647461", + "longitude_deg": "-115.80000305175781", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39789", + "ident": "CA-0143", + "type": "closed", + "name": "Gladman Point DEW Line Station", + "latitude_deg": "68.662677", + "longitude_deg": "-97.796", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Gladman Point", + "scheduled_service": "no", + "keywords": "CYUR, YUR" + }, + { + "id": "39790", + "ident": "CA-0144", + "type": "closed", + "name": "Gladstone (Costella Field) Airport", + "latitude_deg": "50.20000076293945", + "longitude_deg": "-99.05000305175781", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no" + }, + { + "id": "39791", + "ident": "CA-0145", + "type": "closed", + "name": "Glendon Airport", + "latitude_deg": "54.266666412353516", + "longitude_deg": "-111.13333129882812", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39792", + "ident": "CA-0146", + "type": "closed", + "name": "Gold Creek Airport", + "latitude_deg": "54.83333206176758", + "longitude_deg": "-118.6500015258789", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39793", + "ident": "CA-0147", + "type": "closed", + "name": "Gold River Airport", + "latitude_deg": "49.81666564941406", + "longitude_deg": "-126.06666564941406", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39794", + "ident": "CA-0148", + "type": "closed", + "name": "Goose River Airport", + "latitude_deg": "54.733333587646484", + "longitude_deg": "-116.31666564941406", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39795", + "ident": "CA-0149", + "type": "closed", + "name": "Gore's Landing Airport", + "latitude_deg": "44.11666488647461", + "longitude_deg": "-78.25", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "39796", + "ident": "CA-0150", + "type": "closed", + "name": "Grand Valley Airport", + "latitude_deg": "43.983334", + "longitude_deg": "-80.266671", + "elevation_ft": "1593", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "local_code": "PH3" + }, + { + "id": "39797", + "ident": "CA-0151", + "type": "closed", + "name": "Grant Point Airport", + "latitude_deg": "68.4000015258789", + "longitude_deg": "-98.6500015258789", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no" + }, + { + "id": "39798", + "ident": "CA-0152", + "type": "closed", + "name": "Gun Lake Airport", + "latitude_deg": "50.900001525878906", + "longitude_deg": "-122.8499984741211", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39799", + "ident": "CA-0153", + "type": "closed", + "name": "Hagersville Airport (No. 16 SFTS)", + "latitude_deg": "42.9267971233", + "longitude_deg": "-80.120716095", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "keywords": "BCATP" + }, + { + "id": "39800", + "ident": "CA-0154", + "type": "closed", + "name": "Halifax (South Battery) Heliport", + "latitude_deg": "44.643735", + "longitude_deg": "-63.567702", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Halifax", + "scheduled_service": "no" + }, + { + "id": "39801", + "ident": "CA-0155", + "type": "closed", + "name": "Hart River Airport", + "latitude_deg": "64.666301", + "longitude_deg": "-136.846771", + "elevation_ft": "3330", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Tr'ondëk Hwëch'in First Nation", + "scheduled_service": "no" + }, + { + "id": "39802", + "ident": "CA-0156", + "type": "closed", + "name": "Hartney Airport", + "latitude_deg": "49.45000076293945", + "longitude_deg": "-100.51667022705078", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no" + }, + { + "id": "39803", + "ident": "CA-0157", + "type": "closed", + "name": "Haskett Airport", + "latitude_deg": "49.000521", + "longitude_deg": "-97.903311", + "elevation_ft": "936", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Haskett", + "scheduled_service": "no", + "keywords": "CKJ6, KJ6" + }, + { + "id": "39804", + "ident": "CA-0158", + "type": "closed", + "name": "Henik Lake Airport", + "latitude_deg": "61.650001525878906", + "longitude_deg": "-97.36666870117188", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no" + }, + { + "id": "41098", + "ident": "CA-0159", + "type": "small_airport", + "name": "Pontiac Airpark", + "latitude_deg": "45.529726422799996", + "longitude_deg": "-76.16735458370002", + "elevation_ft": "216", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Pontiac", + "scheduled_service": "no", + "gps_code": "CPN2", + "home_link": "http://pontiacairpark.com/", + "keywords": "pn2" + }, + { + "id": "39806", + "ident": "CA-0160", + "type": "closed", + "name": "Highwood Livestock Auction Airport", + "latitude_deg": "50.650001525878906", + "longitude_deg": "-113.8499984741211", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "High River", + "scheduled_service": "no" + }, + { + "id": "39807", + "ident": "CA-0161", + "type": "closed", + "name": "King Ranch Airport", + "latitude_deg": "50.599998474121094", + "longitude_deg": "-114.08300018310547", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "High River", + "scheduled_service": "no" + }, + { + "id": "39808", + "ident": "CA-0162", + "type": "closed", + "name": "Hodgeville Airport", + "latitude_deg": "50.083332", + "longitude_deg": "-106.966667", + "elevation_ft": "2304", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no", + "local_code": "JY7" + }, + { + "id": "39809", + "ident": "CA-0163", + "type": "closed", + "name": "Hornes Gulch Airport", + "latitude_deg": "47.833159", + "longitude_deg": "-67.906783", + "elevation_ft": "1181", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "scheduled_service": "no", + "local_code": "DG4" + }, + { + "id": "39810", + "ident": "CA-0164", + "type": "closed", + "name": "Horton River DEW Line Station", + "latitude_deg": "70.013725", + "longitude_deg": "-126.955109", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Horton River", + "scheduled_service": "no" + }, + { + "id": "39811", + "ident": "CA-0165", + "type": "closed", + "name": "Hotchkiss Airport", + "latitude_deg": "57.31666564941406", + "longitude_deg": "-118.91666412353516", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39812", + "ident": "CA-0166", + "type": "closed", + "name": "House Mountain Airport", + "latitude_deg": "55.03333282470703", + "longitude_deg": "-115.51667022705078", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39813", + "ident": "CA-0167", + "type": "closed", + "name": "Howick Airport", + "latitude_deg": "45.200003", + "longitude_deg": "-73.883331", + "elevation_ft": "134", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "local_code": "SQ5" + }, + { + "id": "39814", + "ident": "CA-0168", + "type": "closed", + "name": "Indian Head Airport", + "latitude_deg": "50.53333282470703", + "longitude_deg": "-103.5999984741211", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no" + }, + { + "id": "39815", + "ident": "CA-0169", + "type": "closed", + "name": "Indian River Airport", + "latitude_deg": "44.39828316609999", + "longitude_deg": "-78.1390571594", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "39816", + "ident": "CA-0170", + "type": "closed", + "name": "Inuvik Townsite Airport", + "latitude_deg": "68.36666870117188", + "longitude_deg": "-133.75", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no" + }, + { + "id": "39817", + "ident": "CA-0171", + "type": "closed", + "name": "Isachsen Airport", + "latitude_deg": "78.79255", + "longitude_deg": "-103.549297", + "elevation_ft": "202", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Isachsen", + "keywords": "IATA: YIC" + }, + { + "id": "39818", + "ident": "CA-0172", + "type": "closed", + "name": "Jedney Airport", + "latitude_deg": "57.21666717529297", + "longitude_deg": "-122.21666717529297", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39819", + "ident": "CA-0173", + "type": "closed", + "name": "Jellicoe Airport", + "latitude_deg": "49.66666793823242", + "longitude_deg": "-87.58333587646484", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "39820", + "ident": "CA-0174", + "type": "closed", + "name": "Jenny Lind Island DEW Line Station", + "latitude_deg": "68.6568", + "longitude_deg": "-101.735", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Qikiqtaryuaq", + "scheduled_service": "no", + "gps_code": "CYUQ", + "keywords": "YUQ" + }, + { + "id": "39821", + "ident": "CA-0175", + "type": "closed", + "name": "Johanson Lake Airport", + "latitude_deg": "56.599998474121094", + "longitude_deg": "-126.19999694824219", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39822", + "ident": "CA-0176", + "type": "closed", + "name": "Johnson Point Airport", + "latitude_deg": "72.76667022705078", + "longitude_deg": "-118.5", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no" + }, + { + "id": "39823", + "ident": "CA-0177", + "type": "closed", + "name": "Kakwa Airport", + "latitude_deg": "54.420713", + "longitude_deg": "-118.982128", + "elevation_ft": "4013", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Kakwa", + "scheduled_service": "no", + "local_code": "FA6" + }, + { + "id": "39824", + "ident": "CA-0178", + "type": "small_airport", + "name": "Kaskattama Airstrip", + "latitude_deg": "57.0415", + "longitude_deg": "-90.1126", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Kaska Goose Lodge", + "scheduled_service": "no" + }, + { + "id": "39825", + "ident": "CA-0179", + "type": "closed", + "name": "Kaybob South Airport", + "latitude_deg": "54.116664886475", + "longitude_deg": "-116.61666870117", + "elevation_ft": "3300", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Kaybob South Gas Plant", + "scheduled_service": "no", + "local_code": "EB4" + }, + { + "id": "39826", + "ident": "CA-0180", + "type": "closed", + "name": "Keane Tower Airport", + "latitude_deg": "58.31666564941406", + "longitude_deg": "-110.28333282470703", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39827", + "ident": "CA-0181", + "type": "closed", + "name": "Keg River Airport", + "latitude_deg": "57.733333587646484", + "longitude_deg": "-117.61666870117188", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39828", + "ident": "CA-0182", + "type": "closed", + "name": "Keg Tower Airport", + "latitude_deg": "57.63333511352539", + "longitude_deg": "-118.3499984741211", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39829", + "ident": "CA-0183", + "type": "closed", + "name": "Keith Bay DEW Line Station", + "latitude_deg": "68.251076", + "longitude_deg": "-88.145198", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no" + }, + { + "id": "39830", + "ident": "CA-0184", + "type": "closed", + "name": "Kelvington (Mennie Field) Airport", + "latitude_deg": "52.16666793823242", + "longitude_deg": "-103.5999984741211", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no" + }, + { + "id": "39831", + "ident": "CA-0185", + "type": "closed", + "name": "Kenakskaniss Airport", + "latitude_deg": "50.13333511352539", + "longitude_deg": "-89.44999694824219", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "39832", + "ident": "CA-0186", + "type": "closed", + "name": "Ketza River Airport", + "latitude_deg": "61.849998474121094", + "longitude_deg": "-132.3000030517578", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "scheduled_service": "no" + }, + { + "id": "42747", + "ident": "CA-0187", + "type": "heliport", + "name": "Citadelle de Québec Heliport", + "latitude_deg": "46.80739974975586", + "longitude_deg": "-71.20659637451172", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Quebec", + "scheduled_service": "no", + "keywords": "military" + }, + { + "id": "39834", + "ident": "CA-0188", + "type": "closed", + "name": "Kilometer 176 Airport", + "latitude_deg": "56.86666488647461", + "longitude_deg": "-106.1500015258789", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no" + }, + { + "id": "39835", + "ident": "CA-0189", + "type": "closed", + "name": "Kimsquit Airport", + "latitude_deg": "52.883175", + "longitude_deg": "-127.089758", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kimsquit Valley", + "scheduled_service": "no" + }, + { + "id": "39836", + "ident": "CA-0190", + "type": "closed", + "name": "Kincaid Airport", + "latitude_deg": "49.66666793823242", + "longitude_deg": "-107.05000305175781", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no" + }, + { + "id": "39837", + "ident": "CA-0191", + "type": "closed", + "name": "King Christian Airport", + "latitude_deg": "77.763338", + "longitude_deg": "-101.039515", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no" + }, + { + "id": "39838", + "ident": "CA-0192", + "type": "closed", + "name": "Kivitoo DEW Line Station", + "latitude_deg": "67.932816", + "longitude_deg": "-64.869204", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Kivitoo", + "scheduled_service": "no" + }, + { + "id": "39839", + "ident": "CA-0193", + "type": "closed", + "name": "Klappan River Airport", + "latitude_deg": "57.78333282470703", + "longitude_deg": "-129.61666870117188", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39840", + "ident": "CA-0194", + "type": "closed", + "name": "Kluakaz Airport", + "latitude_deg": "57.11666488647461", + "longitude_deg": "-128.6666717529297", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39841", + "ident": "CA-0195", + "type": "closed", + "name": "Kluatanton Airport", + "latitude_deg": "56.83333206176758", + "longitude_deg": "-128.13333129882812", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39842", + "ident": "CA-0196", + "type": "closed", + "name": "Komakuk Beach DEW Line Station", + "latitude_deg": "69.596348", + "longitude_deg": "-140.172507", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Komakuk Beach", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Komakuk_Beach,_Yukon", + "keywords": "CYAJ" + }, + { + "id": "39843", + "ident": "CA-0197", + "type": "closed", + "name": "Kotcho Airport", + "latitude_deg": "59.08333206176758", + "longitude_deg": "-121.25", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39844", + "ident": "CA-0198", + "type": "closed", + "name": "La Grande Airport", + "latitude_deg": "53.58333206176758", + "longitude_deg": "-77.68333435058594", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "39845", + "ident": "CA-0199", + "type": "closed", + "name": "Lac Éon Airport", + "latitude_deg": "51.852500915527", + "longitude_deg": "-63.276798248291", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Lac Éon", + "scheduled_service": "no", + "local_code": "YEO" + }, + { + "id": "42748", + "ident": "CA-0200", + "type": "heliport", + "name": "Manic 5 Heliport", + "latitude_deg": "50.66110610961914", + "longitude_deg": "-68.74042510986328", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "MRC Manicouagan", + "scheduled_service": "no" + }, + { + "id": "39847", + "ident": "CA-0201", + "type": "closed", + "name": "Lady Franklin Point DEW Line Station", + "latitude_deg": "68.475313", + "longitude_deg": "-113.224411", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Lady Franklin Point", + "scheduled_service": "no", + "gps_code": "CYUJ", + "iata_code": "YUJ" + }, + { + "id": "39848", + "ident": "CA-0202", + "type": "closed", + "name": "Laforge-1 Airport", + "latitude_deg": "54.099998474121094", + "longitude_deg": "-72.53333282470703", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "39849", + "ident": "CA-0203", + "type": "closed", + "name": "Lambert Creek Tower Airport", + "latitude_deg": "58.033333", + "longitude_deg": "-114.133331", + "elevation_ft": "1008", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Lambert Creek", + "scheduled_service": "no", + "local_code": "FL4" + }, + { + "id": "39850", + "ident": "CA-0204", + "type": "closed", + "name": "Lemoray Airport", + "latitude_deg": "55.54999923706055", + "longitude_deg": "-122.46666717529297", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "42751", + "ident": "CA-0205", + "type": "closed", + "name": "Moose Jaw Westair - Old Airport", + "latitude_deg": "50.43299865722656", + "longitude_deg": "-105.54199981689453", + "elevation_ft": "1900", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Moose Jaw", + "scheduled_service": "no" + }, + { + "id": "39852", + "ident": "CA-0206", + "type": "closed", + "name": "Liard Construction Airport", + "latitude_deg": "65.088001", + "longitude_deg": "-138.359995", + "elevation_ft": "2956", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Dawson City", + "scheduled_service": "no" + }, + { + "id": "39853", + "ident": "CA-0207", + "type": "closed", + "name": "Liard River Airport", + "latitude_deg": "59.516666", + "longitude_deg": "-126.366669", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "keywords": "YZL" + }, + { + "id": "39854", + "ident": "CA-0208", + "type": "closed", + "name": "Little Salmon Airport", + "latitude_deg": "62.190939", + "longitude_deg": "-134.88224", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "scheduled_service": "no" + }, + { + "id": "39855", + "ident": "CA-0209", + "type": "closed", + "name": "Livingstone Airport", + "latitude_deg": "61.36666488647461", + "longitude_deg": "-134.36666870117188", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "scheduled_service": "no" + }, + { + "id": "39856", + "ident": "CA-0210", + "type": "closed", + "name": "Lodgepole Airport", + "latitude_deg": "53.088878", + "longitude_deg": "-115.295778", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Lodgepole", + "scheduled_service": "no" + }, + { + "id": "39857", + "ident": "CA-0211", + "type": "closed", + "name": "Longstaff Bluff DEW Line Station", + "latitude_deg": "68.932", + "longitude_deg": "-75.282", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Longstaff Bluff", + "scheduled_service": "no", + "local_code": "YUV", + "keywords": "CYUV" + }, + { + "id": "39858", + "ident": "CA-0212", + "type": "closed", + "name": "Lougheed Island Airport", + "latitude_deg": "77.44999694824219", + "longitude_deg": "-105.08333587646484", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no" + }, + { + "id": "39859", + "ident": "CA-0213", + "type": "closed", + "name": "Lupin Airport", + "latitude_deg": "65.7666702271", + "longitude_deg": "-111.25", + "elevation_ft": "1608", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Lupin Mine", + "scheduled_service": "no", + "gps_code": "CYWO", + "iata_code": "YWO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lupin_Airport" + }, + { + "id": "39860", + "ident": "CA-0214", + "type": "closed", + "name": "Lytton Airport", + "latitude_deg": "50.245", + "longitude_deg": "-121.5683", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Lytton", + "scheduled_service": "no", + "gps_code": "CYLY", + "keywords": "YLY" + }, + { + "id": "39861", + "ident": "CA-0215", + "type": "closed", + "name": "Macfarland Airport", + "latitude_deg": "47.58333206176758", + "longitude_deg": "-68.33333587646484", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "scheduled_service": "no" + }, + { + "id": "39862", + "ident": "CA-0216", + "type": "closed", + "name": "Mackar Inlet DEW Line Station", + "latitude_deg": "68.342732", + "longitude_deg": "-85.73971", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Mackar Inlet", + "scheduled_service": "no", + "local_code": "YUU" + }, + { + "id": "39863", + "ident": "CA-0217", + "type": "closed", + "name": "Magda Lake Airport", + "latitude_deg": "72.41666412353516", + "longitude_deg": "-82.41666412353516", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no" + }, + { + "id": "39864", + "ident": "CA-0218", + "type": "closed", + "name": "Magundy Airport", + "latitude_deg": "62.172118", + "longitude_deg": "-133.98308", + "elevation_ft": "2271", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "scheduled_service": "no", + "local_code": "FG6" + }, + { + "id": "39865", + "ident": "CA-0219", + "type": "closed", + "name": "Mahatta River Airport", + "latitude_deg": "50.44204", + "longitude_deg": "-127.793312", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Mahatta River", + "scheduled_service": "no" + }, + { + "id": "39866", + "ident": "CA-0220", + "type": "closed", + "name": "Mallard Airport", + "latitude_deg": "65.81666564941406", + "longitude_deg": "-140.25", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "scheduled_service": "no" + }, + { + "id": "39867", + "ident": "CA-0221", + "type": "closed", + "name": "Malloch Dome Airport", + "latitude_deg": "78.222433", + "longitude_deg": "-101.060208", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no" + }, + { + "id": "39868", + "ident": "CA-0222", + "type": "closed", + "name": "Marilla Airport", + "latitude_deg": "53.66666793823242", + "longitude_deg": "-125.76667022705078", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39869", + "ident": "CA-0223", + "type": "closed", + "name": "Marten Hills Airport", + "latitude_deg": "55.424720764160156", + "longitude_deg": "-113.6080551147461", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39870", + "ident": "CA-0224", + "type": "closed", + "name": "Maryfield Airport", + "latitude_deg": "49.833333", + "longitude_deg": "-101.51666", + "elevation_ft": "1888", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Maryfield", + "scheduled_service": "no", + "local_code": "JQ8" + }, + { + "id": "39871", + "ident": "CA-0225", + "type": "closed", + "name": "Matheson Point DEW Line Station", + "latitude_deg": "68.821511", + "longitude_deg": "-95.283995", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no" + }, + { + "id": "39872", + "ident": "CA-0226", + "type": "closed", + "name": "Meander River Airport", + "latitude_deg": "59", + "longitude_deg": "-117.66666412353516", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39873", + "ident": "CA-0227", + "type": "closed", + "name": "Mesilinka River Airport", + "latitude_deg": "56.097896", + "longitude_deg": "-124.40094", + "elevation_ft": "2231", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "local_code": "BV4" + }, + { + "id": "39874", + "ident": "CA-0228", + "type": "closed", + "name": "Mica Creek Airport", + "latitude_deg": "51.83333206176758", + "longitude_deg": "-118.63333129882812", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39875", + "ident": "CA-0229", + "type": "closed", + "name": "Middle Stewiacke Airport", + "latitude_deg": "45.221617", + "longitude_deg": "-63.150118", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Middle Stewiacke", + "scheduled_service": "no", + "keywords": "CB2, CCB2" + }, + { + "id": "39876", + "ident": "CA-0230", + "type": "closed", + "name": "Midway Airport", + "latitude_deg": "67.23332977294922", + "longitude_deg": "-135.3000030517578", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no" + }, + { + "id": "39877", + "ident": "CA-0231", + "type": "closed", + "name": "Mile 102 Dempster Highway Airport", + "latitude_deg": "65.11666870117188", + "longitude_deg": "-138.3333282470703", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "scheduled_service": "no" + }, + { + "id": "39878", + "ident": "CA-0232", + "type": "closed", + "name": "Mile 129 Mackenzie Highway Airport", + "latitude_deg": "62.5", + "longitude_deg": "-116.48332977294922", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no" + }, + { + "id": "39879", + "ident": "CA-0233", + "type": "closed", + "name": "Mile 134 Airport", + "latitude_deg": "51.86666488647461", + "longitude_deg": "-65.71666717529297", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "39880", + "ident": "CA-0234", + "type": "closed", + "name": "Mile 203 Dempster Highway Airport", + "latitude_deg": "66.122945", + "longitude_deg": "-137.246189", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "scheduled_service": "no", + "local_code": "FR5", + "keywords": "FR5, Eagle Plains South." + }, + { + "id": "39881", + "ident": "CA-0235", + "type": "closed", + "name": "Mile 36 Airport", + "latitude_deg": "50.583332", + "longitude_deg": "-66.033333", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Rivière-Nipissis", + "scheduled_service": "no" + }, + { + "id": "39882", + "ident": "CA-0236", + "type": "closed", + "name": "Mile 80 Airport", + "latitude_deg": "51.16666793823242", + "longitude_deg": "-65.71666717529297", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "45234", + "ident": "CA-0237", + "type": "closed", + "name": "East Barriere Lake", + "latitude_deg": "51.2536697022", + "longitude_deg": "-119.863629341", + "elevation_ft": "2070", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39884", + "ident": "CA-0238", + "type": "small_airport", + "name": "Minaki Airport", + "latitude_deg": "49.971305", + "longitude_deg": "-94.700979", + "elevation_ft": "1095", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Minaki", + "scheduled_service": "no", + "local_code": "CJA6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Minaki_Aerodrome", + "keywords": "JA6" + }, + { + "id": "39885", + "ident": "CA-0239", + "type": "closed", + "name": "Minto Airport", + "latitude_deg": "62.599998474121094", + "longitude_deg": "-136.86666870117188", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "scheduled_service": "no" + }, + { + "id": "39886", + "ident": "CA-0240", + "type": "small_airport", + "name": "Moh Creek Airport", + "latitude_deg": "50.525439", + "longitude_deg": "-125.053607", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Comox-Strathcona", + "scheduled_service": "no" + }, + { + "id": "39887", + "ident": "CA-0241", + "type": "closed", + "name": "Moose Lake Airport", + "latitude_deg": "53.706259", + "longitude_deg": "-100.343971", + "elevation_ft": "879", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "iata_code": "YAD", + "local_code": "JB4", + "keywords": "YAD, JB4" + }, + { + "id": "39888", + "ident": "CA-0242", + "type": "closed", + "name": "Moose Valley Airport", + "latitude_deg": "56.733333587646484", + "longitude_deg": "-126.6500015258789", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39889", + "ident": "CA-0243", + "type": "closed", + "name": "Mosque Airport", + "latitude_deg": "56.483333587646484", + "longitude_deg": "-127.53333282470703", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39890", + "ident": "CA-0244", + "type": "closed", + "name": "Mossbank Airport", + "latitude_deg": "49.91666793823242", + "longitude_deg": "-105.86666870117188", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no" + }, + { + "id": "39891", + "ident": "CA-0245", + "type": "closed", + "name": "Mould Bay Airport", + "latitude_deg": "76.2392", + "longitude_deg": "-119.3216", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Prince Patrick Is.", + "scheduled_service": "no", + "iata_code": "YMD", + "local_code": "YMD" + }, + { + "id": "39892", + "ident": "CA-0246", + "type": "closed", + "name": "Aquila Field Airport", + "latitude_deg": "44.16669845581055", + "longitude_deg": "-79.36669921875", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Mount Albert", + "scheduled_service": "no" + }, + { + "id": "39893", + "ident": "CA-0247", + "type": "closed", + "name": "Mount Flett Airport", + "latitude_deg": "60.660459", + "longitude_deg": "-123.583188", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no", + "local_code": "BN6" + }, + { + "id": "39894", + "ident": "CA-0248", + "type": "closed", + "name": "Mount Nansen Airport", + "latitude_deg": "62.016666412353516", + "longitude_deg": "-137.06666564941406", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "scheduled_service": "no" + }, + { + "id": "46516", + "ident": "CA-0249", + "type": "seaplane_base", + "name": "Stevensville Seaplane Base", + "latitude_deg": "42.9248409691", + "longitude_deg": "-79.0784794092", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Stevensville", + "scheduled_service": "no" + }, + { + "id": "39896", + "ident": "CA-0250", + "type": "closed", + "name": "Mountain River Airport", + "latitude_deg": "65.681531", + "longitude_deg": "-128.826921", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no", + "local_code": "EE2" + }, + { + "id": "39897", + "ident": "CA-0251", + "type": "closed", + "name": "Muddy Lake Airport", + "latitude_deg": "58.195421", + "longitude_deg": "-132.325988", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39898", + "ident": "CA-0252", + "type": "closed", + "name": "Murdochville Airport", + "latitude_deg": "48.95000076293945", + "longitude_deg": "-65.36666870117188", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "39899", + "ident": "CA-0253", + "type": "closed", + "name": "Muskegsagagen Lake Airport", + "latitude_deg": "51.38333511352539", + "longitude_deg": "-91.16666412353516", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "39900", + "ident": "CA-0254", + "type": "closed", + "name": "Mégantic Airport", + "latitude_deg": "45.588055", + "longitude_deg": "-70.871665", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Lac-Mégantic", + "scheduled_service": "no", + "local_code": "SL4" + }, + { + "id": "39901", + "ident": "CA-0255", + "type": "closed", + "name": "Namew Lake Airport", + "latitude_deg": "54.20000076293945", + "longitude_deg": "-102.05000305175781", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no" + }, + { + "id": "39902", + "ident": "CA-0256", + "type": "closed", + "name": "Nanook Airport", + "latitude_deg": "57.123495", + "longitude_deg": "-91.667374", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Nanook", + "scheduled_service": "no" + }, + { + "id": "39903", + "ident": "CA-0257", + "type": "closed", + "name": "Nanton (Green Farms) Airport", + "latitude_deg": "50.383335", + "longitude_deg": "-113.666664", + "elevation_ft": "3363", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Nanton", + "scheduled_service": "no" + }, + { + "id": "39904", + "ident": "CA-0258", + "type": "closed", + "name": "New Zealand Airport", + "latitude_deg": "46.402681", + "longitude_deg": "-62.317822", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-PE", + "municipality": "New Zealand", + "scheduled_service": "no" + }, + { + "id": "39905", + "ident": "CA-0259", + "type": "closed", + "name": "Nicholson Peninsula DEW Line Station", + "latitude_deg": "69.94856", + "longitude_deg": "-128.896072", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Nicholson Peninsula", + "scheduled_service": "no", + "gps_code": "CYUC", + "keywords": "YUC" + }, + { + "id": "39906", + "ident": "CA-0260", + "type": "closed", + "name": "Nimpo Lake Airport", + "latitude_deg": "52.320295", + "longitude_deg": "-125.234047", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39907", + "ident": "CA-0261", + "type": "closed", + "name": "Nipisi Airport", + "latitude_deg": "55.86666488647461", + "longitude_deg": "-115.16666412353516", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "44424", + "ident": "CA-0262", + "type": "closed", + "name": "RCAF Station Davidson", + "latitude_deg": "51.24769973754883", + "longitude_deg": "-105.87999725341797", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Davidson", + "scheduled_service": "no" + }, + { + "id": "39909", + "ident": "CA-0263", + "type": "closed", + "name": "Nokomis Airport", + "latitude_deg": "51.6", + "longitude_deg": "-104.9383", + "elevation_ft": "1730", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Nokomis", + "scheduled_service": "no", + "local_code": "KA2", + "keywords": "KA2" + }, + { + "id": "39910", + "ident": "CA-0264", + "type": "closed", + "name": "Nordegg River Airport", + "latitude_deg": "52.71666717529297", + "longitude_deg": "-115.71666717529297", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "44454", + "ident": "CA-0265", + "type": "closed", + "name": "Eastmain Mine Airstrip", + "latitude_deg": "52.282493591308594", + "longitude_deg": "-72.06619262695312", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "39912", + "ident": "CA-0266", + "type": "closed", + "name": "North Monetville Skypark Airport", + "latitude_deg": "46.193956", + "longitude_deg": "-80.312096", + "elevation_ft": "686", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "French River", + "scheduled_service": "no", + "local_code": "PX4" + }, + { + "id": "39913", + "ident": "CA-0267", + "type": "closed", + "name": "Notikewin Airport", + "latitude_deg": "56.849998", + "longitude_deg": "-118.616669", + "elevation_ft": "2901", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "local_code": "FP5" + }, + { + "id": "39914", + "ident": "CA-0268", + "type": "closed", + "name": "Obonga Airport", + "latitude_deg": "50.016666412353516", + "longitude_deg": "-89.31666564941406", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "39915", + "ident": "CA-0269", + "type": "closed", + "name": "Ogilvie Airport", + "latitude_deg": "65.3499984741211", + "longitude_deg": "-138.46665954589844", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "scheduled_service": "no" + }, + { + "id": "39916", + "ident": "CA-0270", + "type": "closed", + "name": "Orangeville Airport", + "latitude_deg": "43.900002", + "longitude_deg": "-80.016671", + "elevation_ft": "1488", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Orangeville", + "scheduled_service": "no", + "local_code": "NH4" + }, + { + "id": "39917", + "ident": "CA-0271", + "type": "closed", + "name": "Oriskany Airport", + "latitude_deg": "47.483333587646484", + "longitude_deg": "-73.6500015258789", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "39918", + "ident": "CA-0272", + "type": "closed", + "name": "Otter Lakes Airport", + "latitude_deg": "56.70000076293945", + "longitude_deg": "-115.93333435058594", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39919", + "ident": "CA-0273", + "type": "closed", + "name": "Panny Airport", + "latitude_deg": "57.20000076293945", + "longitude_deg": "-114.66666412353516", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39920", + "ident": "CA-0274", + "type": "closed", + "name": "Paradise River Airport", + "latitude_deg": "53.426772", + "longitude_deg": "-57.23156", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "scheduled_service": "no", + "iata_code": "YDE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paradise_River_Airport", + "keywords": "CDF4, YDE" + }, + { + "id": "39921", + "ident": "CA-0275", + "type": "closed", + "name": "Parrsboro Airport", + "latitude_deg": "45.41666793823242", + "longitude_deg": "-64.33333587646484", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "scheduled_service": "no" + }, + { + "id": "39922", + "ident": "CA-0276", + "type": "closed", + "name": "Parson Airport", + "latitude_deg": "51.083332", + "longitude_deg": "-116.633331", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Parson", + "scheduled_service": "no", + "local_code": "BW4", + "keywords": "BW4" + }, + { + "id": "39923", + "ident": "CA-0277", + "type": "closed", + "name": "Paulson Airport", + "latitude_deg": "51.13333511352539", + "longitude_deg": "-99.86666870117188", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no" + }, + { + "id": "39924", + "ident": "CA-0278", + "type": "closed", + "name": "Three Creeks Airport", + "latitude_deg": "56.41669845581055", + "longitude_deg": "-116.88300323486328", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Peace River", + "scheduled_service": "no" + }, + { + "id": "39925", + "ident": "CA-0279", + "type": "closed", + "name": "Pearce Point DEW Line Station", + "latitude_deg": "69.806649", + "longitude_deg": "-122.666645", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Pearce Point", + "scheduled_service": "no" + }, + { + "id": "39926", + "ident": "CA-0280", + "type": "closed", + "name": "RCAF Station Pearce", + "latitude_deg": "49.835088", + "longitude_deg": "-113.241332", + "elevation_ft": "3110", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Pearce", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RCAF_Station_Pearce", + "keywords": "BCATP, RCAF" + }, + { + "id": "39927", + "ident": "CA-0281", + "type": "closed", + "name": "Pelly Bay (DEW Site) Airport", + "latitude_deg": "68.438", + "longitude_deg": "-89.602", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Pelly Bay", + "scheduled_service": "no", + "gps_code": "CYUF", + "keywords": "YUF" + }, + { + "id": "39928", + "ident": "CA-0282", + "type": "closed", + "name": "Pelly Lake Airport", + "latitude_deg": "66.06666564941406", + "longitude_deg": "-101.08333587646484", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no" + }, + { + "id": "39929", + "ident": "CA-0283", + "type": "closed", + "name": "Pennfield Ridge Airport", + "latitude_deg": "45.13333511352539", + "longitude_deg": "-66.68333435058594", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "scheduled_service": "no" + }, + { + "id": "39930", + "ident": "CA-0284", + "type": "closed", + "name": "Perrault Falls Airport", + "latitude_deg": "50.36666488647461", + "longitude_deg": "-93.11666870117188", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "39931", + "ident": "CA-0285", + "type": "closed", + "name": "Petrel Airport", + "latitude_deg": "49.96666717529297", + "longitude_deg": "-99.3499984741211", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no" + }, + { + "id": "39932", + "ident": "CA-0286", + "type": "closed", + "name": "Petrolia Airport", + "latitude_deg": "42.883333", + "longitude_deg": "-82.116669", + "elevation_ft": "659", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "local_code": "PD5" + }, + { + "id": "39933", + "ident": "CA-0287", + "type": "closed", + "name": "Pineimuta Municipal Airport", + "latitude_deg": "51.670727", + "longitude_deg": "-98.740325", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Pineimuta", + "scheduled_service": "no", + "local_code": "JA2" + }, + { + "id": "39934", + "ident": "CA-0288", + "type": "closed", + "name": "Polaris (Little Cornwallis Island) Airport", + "latitude_deg": "75.389381", + "longitude_deg": "-96.93203", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Little Cornwallis Island", + "scheduled_service": "no", + "local_code": "JY2", + "keywords": "CJY2" + }, + { + "id": "39935", + "ident": "CA-0289", + "type": "closed", + "name": "Ponteix Airport", + "latitude_deg": "49.733333587646484", + "longitude_deg": "-107.48332977294922", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no" + }, + { + "id": "39936", + "ident": "CA-0290", + "type": "closed", + "name": "Porcupine Airport", + "latitude_deg": "66.31666564941406", + "longitude_deg": "-140.13333129882812", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "scheduled_service": "no" + }, + { + "id": "39937", + "ident": "CA-0291", + "type": "closed", + "name": "Port Albert Airfield", + "latitude_deg": "43.884779", + "longitude_deg": "-81.698027", + "elevation_ft": "696", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Port Albert", + "scheduled_service": "no" + }, + { + "id": "39938", + "ident": "CA-0292", + "type": "closed", + "name": "Port Eliza Airport", + "latitude_deg": "49.88333511352539", + "longitude_deg": "-127.1500015258789", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39939", + "ident": "CA-0293", + "type": "closed", + "name": "Port Radium Airstrip", + "latitude_deg": "66.103", + "longitude_deg": "-117.9347", + "elevation_ft": "639", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Port Radium", + "scheduled_service": "no", + "local_code": "YIX" + }, + { + "id": "39940", + "ident": "CA-0294", + "type": "closed", + "name": "Port-Cartier Airport", + "latitude_deg": "50.049999", + "longitude_deg": "-66.883331", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "local_code": "SA3" + }, + { + "id": "39941", + "ident": "CA-0295", + "type": "closed", + "name": "Pottageville Airport", + "latitude_deg": "44", + "longitude_deg": "-79.63333129882812", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "39942", + "ident": "CA-0296", + "type": "closed", + "name": "Kencor Airport", + "latitude_deg": "50.91669845581055", + "longitude_deg": "-114.26699829101562", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Priddis", + "scheduled_service": "no" + }, + { + "id": "39943", + "ident": "CA-0297", + "type": "small_airport", + "name": "Primrose Airport", + "latitude_deg": "55.390002", + "longitude_deg": "-111.1198", + "elevation_ft": "2307", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Primrose", + "scheduled_service": "no", + "gps_code": "CFN6", + "local_code": "CFN6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Primrose_Aerodrome", + "keywords": "FN6" + }, + { + "id": "39944", + "ident": "CA-0298", + "type": "closed", + "name": "Princess Airport", + "latitude_deg": "50.685471", + "longitude_deg": "-111.531353", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Princess", + "scheduled_service": "no" + }, + { + "id": "39945", + "ident": "CA-0299", + "type": "closed", + "name": "Prophet River Airport", + "latitude_deg": "57.966667", + "longitude_deg": "-122.783333", + "elevation_ft": "1887", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "local_code": "BS6" + }, + { + "id": "39946", + "ident": "CA-0300", + "type": "closed", + "name": "Prospect Lake Airport", + "latitude_deg": "50.58333206176758", + "longitude_deg": "-94.26667022705078", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "39947", + "ident": "CA-0301", + "type": "closed", + "name": "Purtuniq Airport", + "latitude_deg": "61.81666564941406", + "longitude_deg": "-73.94999694824219", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "39948", + "ident": "CA-0302", + "type": "closed", + "name": "Quatam River Airport", + "latitude_deg": "50.384574", + "longitude_deg": "-124.935409", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Comox-Strathcona", + "scheduled_service": "no" + }, + { + "id": "39949", + "ident": "CA-0303", + "type": "closed", + "name": "Mobil 1128 Airport", + "latitude_deg": "58.49122619628906", + "longitude_deg": "-118.9195327758789", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Rainbow Lake", + "scheduled_service": "no" + }, + { + "id": "39950", + "ident": "CA-0304", + "type": "small_airport", + "name": "Ram Falls Airstrip", + "latitude_deg": "52.086813", + "longitude_deg": "-115.856092", + "elevation_ft": "5350", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Ram Falls", + "scheduled_service": "no", + "home_link": "https://www.reddeerflyingclub.org/ram-falls-airstrip-information" + }, + { + "id": "39951", + "ident": "CA-0305", + "type": "closed", + "name": "Raspberry Airport", + "latitude_deg": "56.04999923706055", + "longitude_deg": "-124.21666717529297", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39952", + "ident": "CA-0306", + "type": "closed", + "name": "Rea Point Airport", + "latitude_deg": "75.365399", + "longitude_deg": "-105.727823", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Melville Island", + "scheduled_service": "no" + }, + { + "id": "44455", + "ident": "CA-0307", + "type": "small_airport", + "name": "Orono / Hawkefield", + "latitude_deg": "44", + "longitude_deg": "-78.6488", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CHF4", + "local_code": "CHF4" + }, + { + "id": "39954", + "ident": "CA-0308", + "type": "closed", + "name": "Redvers Airport", + "latitude_deg": "49.58333206176758", + "longitude_deg": "-101.68333435058594", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no" + }, + { + "id": "39955", + "ident": "CA-0309", + "type": "closed", + "name": "Renous Airport", + "latitude_deg": "46.950003", + "longitude_deg": "-66.566666", + "elevation_ft": "1218", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "scheduled_service": "no", + "local_code": "DK4" + }, + { + "id": "39956", + "ident": "CA-0310", + "type": "closed", + "name": "Richardson Airport", + "latitude_deg": "57.88333511352539", + "longitude_deg": "-111.01667022705078", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39957", + "ident": "CA-0311", + "type": "closed", + "name": "Risks Creek Airport", + "latitude_deg": "51.958652", + "longitude_deg": "-122.508652", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "44472", + "ident": "CA-0312", + "type": "closed", + "name": "Kingston Airfield", + "latitude_deg": "44.251099", + "longitude_deg": "-76.503403", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kingston", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kingston_Airfield" + }, + { + "id": "39959", + "ident": "CA-0313", + "type": "closed", + "name": "Rivers Airport", + "latitude_deg": "50.010055763699995", + "longitude_deg": "-100.313930511", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "iata_code": "YYI", + "keywords": "CYYI" + }, + { + "id": "39960", + "ident": "CA-0314", + "type": "closed", + "name": "Rivière-Ouelle Airport", + "latitude_deg": "47.445332", + "longitude_deg": "-69.979134", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Rivière-Ouelle", + "scheduled_service": "no", + "local_code": "SX4" + }, + { + "id": "39961", + "ident": "CA-0315", + "type": "closed", + "name": "Rodney Airport", + "latitude_deg": "42.579731", + "longitude_deg": "-81.684705", + "elevation_ft": "688", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Rodney", + "scheduled_service": "no", + "local_code": "PB8" + }, + { + "id": "39962", + "ident": "CA-0316", + "type": "closed", + "name": "Ross Bay Junction Airport", + "latitude_deg": "53.028994", + "longitude_deg": "-66.244361", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "scheduled_service": "no", + "keywords": "Mile 244" + }, + { + "id": "39963", + "ident": "CA-0317", + "type": "closed", + "name": "Ross Point DEW Line Station", + "latitude_deg": "68.599158", + "longitude_deg": "-111.125505", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Ross Point", + "scheduled_service": "no" + }, + { + "id": "39964", + "ident": "CA-0318", + "type": "closed", + "name": "Round Hill Airport", + "latitude_deg": "55.29999923706055", + "longitude_deg": "-111.98332977294922", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39965", + "ident": "CA-0319", + "type": "closed", + "name": "Rowley Island DEW Line Station", + "latitude_deg": "69.063868", + "longitude_deg": "-79.087402", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Rowley Island", + "scheduled_service": "no" + }, + { + "id": "39966", + "ident": "CA-0320", + "type": "closed", + "name": "Russell Lake Airport", + "latitude_deg": "62.849998474121094", + "longitude_deg": "-116", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no" + }, + { + "id": "39967", + "ident": "CA-0321", + "type": "closed", + "name": "Réservoir Gouin (Pourvoirie Oasis) Airport", + "latitude_deg": "48.466667", + "longitude_deg": "-74.666664", + "elevation_ft": "1329", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Réservoir Gouin", + "scheduled_service": "no", + "local_code": "TL3", + "keywords": "TL3" + }, + { + "id": "39968", + "ident": "CA-0322", + "type": "small_airport", + "name": "Saglek Airport", + "latitude_deg": "58.474312", + "longitude_deg": "-62.653999", + "elevation_ft": "269", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Saglek", + "scheduled_service": "no", + "gps_code": "CYSV", + "iata_code": "YSV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saglek_Airport" + }, + { + "id": "44558", + "ident": "CA-0323", + "type": "small_airport", + "name": "Private Airstrip", + "latitude_deg": "55.46689987182617", + "longitude_deg": "-127.7030029296875", + "elevation_ft": "1061", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Hazelton", + "scheduled_service": "no" + }, + { + "id": "39970", + "ident": "CA-0324", + "type": "closed", + "name": "Saltspring Island Airport", + "latitude_deg": "48.766666412353516", + "longitude_deg": "-123.46666717529297", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39971", + "ident": "CA-0325", + "type": "closed", + "name": "Sarcpa Lake DEW Line Station", + "latitude_deg": "68.549243", + "longitude_deg": "-83.320996", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no" + }, + { + "id": "39972", + "ident": "CA-0326", + "type": "closed", + "name": "Saulteaux Airport", + "latitude_deg": "54.91666793823242", + "longitude_deg": "-114.78333282470703", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39973", + "ident": "CA-0327", + "type": "closed", + "name": "Savant Lake Airport", + "latitude_deg": "50.20000076293945", + "longitude_deg": "-90.6500015258789", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "39974", + "ident": "CA-0328", + "type": "closed", + "name": "Sawmill Bay Airport", + "latitude_deg": "65.73333", + "longitude_deg": "-118.916664", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no", + "local_code": "BZ6" + }, + { + "id": "39975", + "ident": "CA-0329", + "type": "closed", + "name": "Scar Creek Airport", + "latitude_deg": "51.179237", + "longitude_deg": "-125.039177", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Comox-Strathcona", + "scheduled_service": "no" + }, + { + "id": "39976", + "ident": "CA-0330", + "type": "closed", + "name": "Scud River Airport", + "latitude_deg": "57.28333282470703", + "longitude_deg": "-131.8333282470703", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39977", + "ident": "CA-0331", + "type": "closed", + "name": "Shekilie Airport", + "latitude_deg": "59.25", + "longitude_deg": "-119.33333587646484", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39978", + "ident": "CA-0332", + "type": "closed", + "name": "Shell 13 Airport", + "latitude_deg": "57.266666412353516", + "longitude_deg": "-111.48332977294922", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39979", + "ident": "CA-0333", + "type": "closed", + "name": "Shepherd Bay DEW Line Station", + "latitude_deg": "68.79538", + "longitude_deg": "-93.419667", + "elevation_ft": "99", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Shepherd Bay", + "scheduled_service": "no", + "gps_code": "CYUS", + "keywords": "YUS" + }, + { + "id": "39980", + "ident": "CA-0334", + "type": "closed", + "name": "Sherard Bay Airport", + "latitude_deg": "76.083463", + "longitude_deg": "-108.452985", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Melville Island", + "scheduled_service": "no" + }, + { + "id": "39981", + "ident": "CA-0335", + "type": "closed", + "name": "Sherman Meadows Airport", + "latitude_deg": "54.286708", + "longitude_deg": "-119.84329", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Greenview", + "scheduled_service": "no" + }, + { + "id": "39982", + "ident": "CA-0336", + "type": "closed", + "name": "Sheslay Airport", + "latitude_deg": "58.266666412353516", + "longitude_deg": "-131.78334045410156", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "44570", + "ident": "CA-0337", + "type": "small_airport", + "name": "Nass Camp Airstrip", + "latitude_deg": "55.29069900512695", + "longitude_deg": "-128.9969940185547", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Nass Camp", + "scheduled_service": "no" + }, + { + "id": "39984", + "ident": "CA-0338", + "type": "closed", + "name": "Shingle Point DEW Line Station", + "latitude_deg": "68.929564", + "longitude_deg": "-137.234705", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Shingle Point", + "scheduled_service": "no", + "gps_code": "CYUA", + "keywords": "YUA" + }, + { + "id": "335893", + "ident": "CA-0339", + "type": "heliport", + "name": "Carmanah Point Lighthouse Heliport", + "latitude_deg": "48.612051", + "longitude_deg": "-124.751778", + "elevation_ft": "94", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Carmanah Point", + "scheduled_service": "no", + "local_code": "BT2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carmanah_Point_Light_Station" + }, + { + "id": "39986", + "ident": "CA-0340", + "type": "closed", + "name": "Sikanni Chief Airport", + "latitude_deg": "57.08333206176758", + "longitude_deg": "-122.5999984741211", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39987", + "ident": "CA-0341", + "type": "closed", + "name": "Simcoe Airport", + "latitude_deg": "42.852813", + "longitude_deg": "-80.287143", + "elevation_ft": "764", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "local_code": "PH5" + }, + { + "id": "39988", + "ident": "CA-0342", + "type": "closed", + "name": "Simpson Lake DEW Line Station", + "latitude_deg": "68.589851", + "longitude_deg": "-91.947586", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no" + }, + { + "id": "39989", + "ident": "CA-0343", + "type": "closed", + "name": "Skocdopole Farms Airport", + "latitude_deg": "51.75", + "longitude_deg": "-113.883331", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "local_code": "FB6" + }, + { + "id": "39990", + "ident": "CA-0344", + "type": "closed", + "name": "Smeaton Airport", + "latitude_deg": "53.483333587646484", + "longitude_deg": "-104.80000305175781", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no" + }, + { + "id": "39991", + "ident": "CA-0345", + "type": "closed", + "name": "Smith River Airport", + "latitude_deg": "59.900001525878906", + "longitude_deg": "-126.43333435058594", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "39992", + "ident": "CA-0346", + "type": "closed", + "name": "Smoky City Airport", + "latitude_deg": "54.75", + "longitude_deg": "-118.58333587646484", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39993", + "ident": "CA-0347", + "type": "closed", + "name": "Smoky Tower Airport", + "latitude_deg": "54.400001525878906", + "longitude_deg": "-118.28333282470703", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "39994", + "ident": "CA-0348", + "type": "closed", + "name": "Snag Airport", + "latitude_deg": "62.354151", + "longitude_deg": "-140.404432", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "scheduled_service": "no" + }, + { + "id": "39995", + "ident": "CA-0349", + "type": "closed", + "name": "Squanga Lake Airport", + "latitude_deg": "60.48659", + "longitude_deg": "-133.458067", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Squanga Lake", + "scheduled_service": "no", + "local_code": "FR6" + }, + { + "id": "39996", + "ident": "CA-0350", + "type": "closed", + "name": "St-Gabriel-De-Brandon Airport", + "latitude_deg": "46.349998474121094", + "longitude_deg": "-73.38333129882812", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "39997", + "ident": "CA-0351", + "type": "closed", + "name": "St-Joseph-De-St-Hyacinths Airport", + "latitude_deg": "45.61666488647461", + "longitude_deg": "-72.93333435058594", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "39998", + "ident": "CA-0352", + "type": "closed", + "name": "St-Prosper (Pel) Airport", + "latitude_deg": "46.216667", + "longitude_deg": "-70.5", + "elevation_ft": "988", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "keywords": "CTW2, TW2" + }, + { + "id": "39999", + "ident": "CA-0353", + "type": "closed", + "name": "St-Simon-De-Bagot Airport", + "latitude_deg": "45.68333435058594", + "longitude_deg": "-72.83333587646484", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "40000", + "ident": "CA-0354", + "type": "closed", + "name": "St. Aldwyn Airport", + "latitude_deg": "50.38333511352539", + "longitude_deg": "-107.76667022705078", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no" + }, + { + "id": "40001", + "ident": "CA-0355", + "type": "closed", + "name": "St. Anthony Airport", + "latitude_deg": "51.491374", + "longitude_deg": "-55.813036", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "scheduled_service": "no" + }, + { + "id": "40002", + "ident": "CA-0356", + "type": "closed", + "name": "St. Leonard (Cyr) Airport", + "latitude_deg": "47.18333435058594", + "longitude_deg": "-67.9000015258789", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "scheduled_service": "no" + }, + { + "id": "40003", + "ident": "CA-0357", + "type": "closed", + "name": "Stave Lake Airport", + "latitude_deg": "49.467727", + "longitude_deg": "-122.225691", + "elevation_ft": "352", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Mission", + "scheduled_service": "no", + "local_code": "BG5" + }, + { + "id": "40004", + "ident": "CA-0358", + "type": "closed", + "name": "Ste-Anne-De-Sorel Airport", + "latitude_deg": "46.06666564941406", + "longitude_deg": "-72.98332977294922", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "40005", + "ident": "CA-0359", + "type": "closed", + "name": "Sainte-Croix Airport", + "latitude_deg": "46.632582600199996", + "longitude_deg": "-71.7893457413", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Sainte-Croix", + "scheduled_service": "no" + }, + { + "id": "40006", + "ident": "CA-0360", + "type": "closed", + "name": "Chucker Farm Airport", + "latitude_deg": "45.43330001831055", + "longitude_deg": "-74.25", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Ste-Marthe", + "scheduled_service": "no" + }, + { + "id": "40007", + "ident": "CA-0361", + "type": "closed", + "name": "Steeper Airport", + "latitude_deg": "53.13333511352539", + "longitude_deg": "-117.11666870117188", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "40008", + "ident": "CA-0362", + "type": "closed", + "name": "Stewart Lake Airport", + "latitude_deg": "64.33333587646484", + "longitude_deg": "-125.38333129882812", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no" + }, + { + "id": "40009", + "ident": "CA-0363", + "type": "closed", + "name": "Stobart Creek Airport", + "latitude_deg": "51.46666717529297", + "longitude_deg": "-122.83333587646484", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "40010", + "ident": "CA-0364", + "type": "closed", + "name": "Stokes Point DEW Line Station", + "latitude_deg": "69.332027", + "longitude_deg": "-138.71852", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Stokes Point", + "scheduled_service": "no" + }, + { + "id": "40011", + "ident": "CA-0365", + "type": "closed", + "name": "Strandberg Creek Airport", + "latitude_deg": "56.001957", + "longitude_deg": "-124.236917", + "elevation_ft": "2260", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "local_code": "BT5", + "keywords": "BT5" + }, + { + "id": "40012", + "ident": "CA-0366", + "type": "closed", + "name": "Stratford Airport", + "latitude_deg": "43.316666", + "longitude_deg": "-81.033333", + "elevation_ft": "1174", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "local_code": "PK5" + }, + { + "id": "40013", + "ident": "CA-0367", + "type": "closed", + "name": "Strathmore (Duke) Airport", + "latitude_deg": "51.014512", + "longitude_deg": "-113.629677", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Langdon", + "scheduled_service": "no", + "keywords": "CFZ6, FZ6" + }, + { + "id": "40014", + "ident": "CA-0368", + "type": "closed", + "name": "McClain Farm Airport", + "latitude_deg": "51.04999923706055", + "longitude_deg": "-113.5", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Strathmore", + "scheduled_service": "no" + }, + { + "id": "40015", + "ident": "CA-0369", + "type": "closed", + "name": "Sturdee Valley Airport", + "latitude_deg": "57.20000076293945", + "longitude_deg": "-127.08333587646484", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "40016", + "ident": "CA-0370", + "type": "closed", + "name": "Sturdee Airport", + "latitude_deg": "51.20000076293945", + "longitude_deg": "-102.36666870117188", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no" + }, + { + "id": "40017", + "ident": "CA-0371", + "type": "closed", + "name": "Sturgeon Falls Airport", + "latitude_deg": "46.349998474121094", + "longitude_deg": "-79.96666717529297", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "40018", + "ident": "CA-0372", + "type": "closed", + "name": "Sturgeon Landing Airport", + "latitude_deg": "54.29175", + "longitude_deg": "-101.821902", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no", + "local_code": "KS2" + }, + { + "id": "40019", + "ident": "CA-0373", + "type": "closed", + "name": "Sturt Point DEW Line Station", + "latitude_deg": "68.795504", + "longitude_deg": "-103.343156", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Sturt Point", + "scheduled_service": "no" + }, + { + "id": "40020", + "ident": "CA-0374", + "type": "closed", + "name": "Sweetgrass Landing Airport", + "latitude_deg": "58.91666793823242", + "longitude_deg": "-111.96666717529297", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "40021", + "ident": "CA-0375", + "type": "closed", + "name": "Tabu Airport", + "latitude_deg": "47.334221", + "longitude_deg": "-65.433718", + "elevation_ft": "413", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Jeanne-Mance", + "scheduled_service": "no", + "local_code": "CJ2" + }, + { + "id": "40022", + "ident": "CA-0376", + "type": "closed", + "name": "Talbot Lake Airport", + "latitude_deg": "57.33333206176758", + "longitude_deg": "-115.5999984741211", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "40023", + "ident": "CA-0377", + "type": "small_airport", + "name": "Tatla Lake Airport", + "latitude_deg": "51.915606", + "longitude_deg": "-124.598401", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "40024", + "ident": "CA-0378", + "type": "closed", + "name": "Terrace Bay Airport", + "latitude_deg": "48.81197898719999", + "longitude_deg": "-87.09943771360001", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Terrace Bay, ON", + "scheduled_service": "no", + "gps_code": "CYTJ", + "iata_code": "YTJ" + }, + { + "id": "40025", + "ident": "CA-0379", + "type": "closed", + "name": "Tetachuck Lake Airport", + "latitude_deg": "53.266666412353516", + "longitude_deg": "-126.06666564941406", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "45043", + "ident": "CA-0380", + "type": "small_airport", + "name": "Tottenham/Ronan Aerodrome", + "latitude_deg": "44.042100519899996", + "longitude_deg": "-79.84668016430001", + "elevation_ft": "823", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Tottenham", + "scheduled_service": "no", + "local_code": "CTR3" + }, + { + "id": "40027", + "ident": "CA-0381", + "type": "closed", + "name": "Thunder Lake Airport", + "latitude_deg": "52.836714", + "longitude_deg": "-116.711263", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "local_code": "CFT7" + }, + { + "id": "40028", + "ident": "CA-0382", + "type": "closed", + "name": "Thunder River Airport", + "latitude_deg": "67.46666717529297", + "longitude_deg": "-130.85000610351562", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no" + }, + { + "id": "40029", + "ident": "CA-0383", + "type": "closed", + "name": "Thurston Lake Airport", + "latitude_deg": "59.944113", + "longitude_deg": "-118.079388", + "elevation_ft": "2095", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "local_code": "FX5" + }, + { + "id": "40030", + "ident": "CA-0384", + "type": "closed", + "name": "Tintina (Conwest) Airport", + "latitude_deg": "61.08333206176758", + "longitude_deg": "-131.21665954589844", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "scheduled_service": "no" + }, + { + "id": "40031", + "ident": "CA-0385", + "type": "closed", + "name": "Baie-Trinité Airport", + "latitude_deg": "49.399859", + "longitude_deg": "-67.31246", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Baie-Trinité", + "scheduled_service": "no" + }, + { + "id": "40032", + "ident": "CA-0386", + "type": "closed", + "name": "Trout Brook Airport", + "latitude_deg": "46.466667", + "longitude_deg": "-65.466667", + "elevation_ft": "299", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "scheduled_service": "no", + "local_code": "CN4" + }, + { + "id": "40033", + "ident": "CA-0387", + "type": "closed", + "name": "Trout Mountain Airport", + "latitude_deg": "56.79999923706055", + "longitude_deg": "-114.41666412353516", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "40034", + "ident": "CA-0388", + "type": "closed", + "name": "Tuktoyaktuk (Imperial) Airport", + "latitude_deg": "69.4248", + "longitude_deg": "-132.9467", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Tuktoyaktuk", + "scheduled_service": "no", + "local_code": "EX8" + }, + { + "id": "40035", + "ident": "CA-0389", + "type": "closed", + "name": "Tununuk DEW Line Station", + "latitude_deg": "69.002603", + "longitude_deg": "-134.671957", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no" + }, + { + "id": "40036", + "ident": "CA-0390", + "type": "closed", + "name": "Twin Lakes Airport", + "latitude_deg": "51.564534", + "longitude_deg": "-123.824673", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Cariboo", + "scheduled_service": "no" + }, + { + "id": "40037", + "ident": "CA-0391", + "type": "small_airport", + "name": "Ullswater Airport", + "latitude_deg": "45.2107", + "longitude_deg": "-79.5045", + "elevation_ft": "1012", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ullswater", + "scheduled_service": "no", + "gps_code": "CLW2", + "local_code": "CLW2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ullswater_Aerodrome", + "keywords": "PN5" + }, + { + "id": "40038", + "ident": "CA-0392", + "type": "closed", + "name": "Dunphy Airport", + "latitude_deg": "46.62863540649414", + "longitude_deg": "-65.87196350097656", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Upper Blackville", + "scheduled_service": "no" + }, + { + "id": "40039", + "ident": "CA-0393", + "type": "small_airport", + "name": "Upper Kent Airport", + "latitude_deg": "46.587133", + "longitude_deg": "-67.719555", + "elevation_ft": "246", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Upper Kent", + "scheduled_service": "no", + "gps_code": "CCH2", + "local_code": "CCH2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Upper_Kent_Aerodrome", + "keywords": "CH2" + }, + { + "id": "40040", + "ident": "CA-0394", + "type": "closed", + "name": "Utikuma River Airport", + "latitude_deg": "56.04999923706055", + "longitude_deg": "-115.31666564941406", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "40041", + "ident": "CA-0395", + "type": "closed", + "name": "Valemount Aerodrome", + "latitude_deg": "52.865732", + "longitude_deg": "-119.295711", + "elevation_ft": "2575", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Valemount", + "scheduled_service": "no", + "local_code": "AH4" + }, + { + "id": "40042", + "ident": "CA-0396", + "type": "closed", + "name": "Burnaby (Terminal) Heliport", + "latitude_deg": "49.2691976954", + "longitude_deg": "-122.933339775", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Vancouver", + "scheduled_service": "no" + }, + { + "id": "40043", + "ident": "CA-0397", + "type": "closed", + "name": "Vankleek Hill Airport", + "latitude_deg": "45.450003", + "longitude_deg": "-74.683334", + "elevation_ft": "228", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Vankleek Hill", + "scheduled_service": "no", + "keywords": "NR2, CNR2" + }, + { + "id": "40044", + "ident": "CA-0398", + "type": "closed", + "name": "Vanscoy Airport", + "latitude_deg": "52.016666412353516", + "longitude_deg": "-107.03333282470703", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no" + }, + { + "id": "40045", + "ident": "CA-0399", + "type": "closed", + "name": "Mcdonald's Farm Airport", + "latitude_deg": "50.25", + "longitude_deg": "-113.366669", + "elevation_ft": "3226", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Vulcan", + "scheduled_service": "no", + "local_code": "FC8" + }, + { + "id": "40046", + "ident": "CA-0400", + "type": "closed", + "name": "Mile 100 Airport", + "latitude_deg": "51.38330078125", + "longitude_deg": "-65.63330078125", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Waco", + "scheduled_service": "no" + }, + { + "id": "40047", + "ident": "CA-0401", + "type": "closed", + "name": "Wadlin Tower Airport", + "latitude_deg": "57.766666412353516", + "longitude_deg": "-115.44999694824219", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "40048", + "ident": "CA-0402", + "type": "closed", + "name": "Washademoak Airport", + "latitude_deg": "45.849998474121094", + "longitude_deg": "-65.8499984741211", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "scheduled_service": "no" + }, + { + "id": "40049", + "ident": "CA-0403", + "type": "closed", + "name": "Webbwood Airport", + "latitude_deg": "46.3197", + "longitude_deg": "-81.8744", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "local_code": "PL6" + }, + { + "id": "40050", + "ident": "CA-0404", + "type": "closed", + "name": "Werenko Airport", + "latitude_deg": "48.799886", + "longitude_deg": "-93.081944", + "elevation_ft": "1284", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Werenko", + "scheduled_service": "no", + "local_code": "KC4" + }, + { + "id": "40051", + "ident": "CA-0405", + "type": "closed", + "name": "Nudluardjk Lake / West Baffin DEW Line Station", + "latitude_deg": "68.610044", + "longitude_deg": "-73.242081", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Nudluardjk Lake", + "scheduled_service": "no" + }, + { + "id": "40052", + "ident": "CA-0406", + "type": "closed", + "name": "Whitecourt (Forestry) Heliport", + "latitude_deg": "54.13333511352539", + "longitude_deg": "-115.66666412353516", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "40053", + "ident": "CA-0407", + "type": "small_airport", + "name": "Wiebenville Airport", + "latitude_deg": "52.21702", + "longitude_deg": "-90.464859", + "elevation_ft": "1228", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kenora District", + "scheduled_service": "no", + "gps_code": "CXX2", + "local_code": "CXX2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wiebenville_Aerodrome" + }, + { + "id": "40054", + "ident": "CA-0408", + "type": "closed", + "name": "Wildhay Airport", + "latitude_deg": "53.86666488647461", + "longitude_deg": "-117.55000305175781", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "45047", + "ident": "CA-0409", + "type": "heliport", + "name": "Milford \"Heliport\" (PPR)", + "latitude_deg": "43.9375234968", + "longitude_deg": "-77.08777606490001", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Prince Edward County", + "scheduled_service": "no" + }, + { + "id": "40056", + "ident": "CA-0410", + "type": "closed", + "name": "Willow Creek Airport", + "latitude_deg": "49", + "longitude_deg": "-109.73332977294922", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no" + }, + { + "id": "40057", + "ident": "CA-0411", + "type": "small_airport", + "name": "Wingham (Inglis Field) Airport", + "latitude_deg": "43.897621", + "longitude_deg": "-81.335737", + "elevation_ft": "1035", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Wingham", + "scheduled_service": "no", + "gps_code": "CWH5", + "local_code": "CWH5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wingham_(Inglis_Field)_Aerodrome", + "keywords": "PP5, CPP5" + }, + { + "id": "40058", + "ident": "CA-0412", + "type": "closed", + "name": "Winisk Airport", + "latitude_deg": "55.2242", + "longitude_deg": "-85.1174", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Winisk", + "scheduled_service": "no", + "iata_code": "YWN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Winisk,_Ontario" + }, + { + "id": "40059", + "ident": "CA-0413", + "type": "closed", + "name": "Wolf Lake Airport", + "latitude_deg": "53.216408", + "longitude_deg": "-116.084901", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Cynthia", + "scheduled_service": "no" + }, + { + "id": "40060", + "ident": "CA-0414", + "type": "closed", + "name": "Worsley Airport", + "latitude_deg": "56.516666412353516", + "longitude_deg": "-119.08333587646484", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "40061", + "ident": "CA-0415", + "type": "closed", + "name": "Woss Airport", + "latitude_deg": "50.215459", + "longitude_deg": "-126.619756", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Woss", + "scheduled_service": "no", + "keywords": "AK4, CAK4" + }, + { + "id": "40062", + "ident": "CA-0416", + "type": "small_airport", + "name": "Wrong Lake Airport", + "latitude_deg": "52.615452", + "longitude_deg": "-96.184015", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "gps_code": "CJG4", + "local_code": "CJG4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wrong_Lake_Airport" + }, + { + "id": "40063", + "ident": "CA-0417", + "type": "closed", + "name": "Yarbo Airport", + "latitude_deg": "50.71666717529297", + "longitude_deg": "-101.93333435058594", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no" + }, + { + "id": "40064", + "ident": "CA-0418", + "type": "closed", + "name": "Yates Tower Airport", + "latitude_deg": "59.900001525878906", + "longitude_deg": "-116.3499984741211", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "40065", + "ident": "CA-0419", + "type": "closed", + "name": "Yellowknife (Aero Arctic) Heliport", + "latitude_deg": "62.45000076293945", + "longitude_deg": "-114.41699981689453", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Yellowknife", + "scheduled_service": "no" + }, + { + "id": "40066", + "ident": "CA-0420", + "type": "closed", + "name": "Miramar Con Mines Heliport", + "latitude_deg": "62.43330001831055", + "longitude_deg": "-114.36699676513672", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Yellowknife", + "scheduled_service": "no" + }, + { + "id": "40067", + "ident": "CA-0421", + "type": "closed", + "name": "Youngstown (E.C. Air) Airport", + "latitude_deg": "51.53333282470703", + "longitude_deg": "-111.13333129882812", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no" + }, + { + "id": "40068", + "ident": "CA-0422", + "type": "closed", + "name": "Yoyo Airport", + "latitude_deg": "58.9258", + "longitude_deg": "-121.473201", + "elevation_ft": "1950", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Yoyo", + "scheduled_service": "no", + "local_code": "BL8" + }, + { + "id": "40069", + "ident": "CA-0423", + "type": "closed", + "name": "Île d'Orléans Heliport", + "latitude_deg": "46.983333587646484", + "longitude_deg": "-70.83333587646484", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "44559", + "ident": "CA-0424", + "type": "small_airport", + "name": "Witwer Airfield", + "latitude_deg": "55.53519821166992", + "longitude_deg": "-127.86599731445312", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Hazelton", + "scheduled_service": "no", + "keywords": "Witwer Air Field" + }, + { + "id": "44557", + "ident": "CA-0425", + "type": "small_airport", + "name": "Seeley Lake Field", + "latitude_deg": "55.193001", + "longitude_deg": "-127.712997", + "elevation_ft": "987", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Hazelton", + "scheduled_service": "no" + }, + { + "id": "45943", + "ident": "CA-0426", + "type": "closed", + "name": "Herb's Travel Plaza Airstrip", + "latitude_deg": "45.4675131907", + "longitude_deg": "-74.6766815185", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Vankleek Hill", + "scheduled_service": "no" + }, + { + "id": "46374", + "ident": "CA-0427", + "type": "small_airport", + "name": "Disley Airport", + "latitude_deg": "50.637459", + "longitude_deg": "-105.036194", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Disley", + "scheduled_service": "no", + "gps_code": "CDS2", + "local_code": "CDS2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Disley_Aerodrome" + }, + { + "id": "46375", + "ident": "CA-0428", + "type": "small_airport", + "name": "Elbow Airstrip", + "latitude_deg": "51.1344200458", + "longitude_deg": "-106.585707664", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Elbow", + "scheduled_service": "no" + }, + { + "id": "46517", + "ident": "CA-0429", + "type": "closed", + "name": "Stevensville Airstrip", + "latitude_deg": "42.9396480611", + "longitude_deg": "-79.0986442566", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Stevensville", + "scheduled_service": "no" + }, + { + "id": "46495", + "ident": "CA-0430", + "type": "small_airport", + "name": "Port Hope (Peter's Field) Airport", + "latitude_deg": "44.024881", + "longitude_deg": "-78.426976", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Port Hope", + "scheduled_service": "no", + "gps_code": "CPH3", + "local_code": "CPH3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Hope_(Peter%27s_Field)_Aerodrome" + }, + { + "id": "46519", + "ident": "CA-0431", + "type": "small_airport", + "name": "Newtonville / Steeves Field", + "latitude_deg": "43.940197", + "longitude_deg": "-78.444185", + "elevation_ft": "502", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNT9", + "local_code": "CNT9" + }, + { + "id": "46500", + "ident": "CA-0432", + "type": "small_airport", + "name": "Regina / Aerogate Airport", + "latitude_deg": "50.597731", + "longitude_deg": "-104.601312", + "elevation_ft": "1980", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Brora", + "scheduled_service": "no", + "gps_code": "CAG2", + "local_code": "CAG2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Regina/Aerogate_Aerodrome", + "keywords": "Parr Field" + }, + { + "id": "46503", + "ident": "CA-0433", + "type": "heliport", + "name": "Picton (Prince Edward County Hospital) Heliport", + "latitude_deg": "44.016353", + "longitude_deg": "-77.138047", + "elevation_ft": "353", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Prince Edward County", + "scheduled_service": "no", + "gps_code": "CPE7", + "local_code": "CPE7", + "keywords": "picton" + }, + { + "id": "46504", + "ident": "CA-0434", + "type": "closed", + "name": "Jarvis (No.1 Bombing & Gunnery School)", + "latitude_deg": "42.836199025899994", + "longitude_deg": "-80.044670105", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "keywords": "BCATP, American Airlines" + }, + { + "id": "46505", + "ident": "CA-0435", + "type": "heliport", + "name": "WESCAM Burlington", + "latitude_deg": "43.3404490137", + "longitude_deg": "-79.83305454250001", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Burlington", + "scheduled_service": "no" + }, + { + "id": "46506", + "ident": "CA-0436", + "type": "closed", + "name": "Kohler Airstrip", + "latitude_deg": "42.903004816599996", + "longitude_deg": "-79.8553705215", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "keywords": "BCATP" + }, + { + "id": "46507", + "ident": "CA-0437", + "type": "closed", + "name": "White's Airstrip", + "latitude_deg": "43.9459440235", + "longitude_deg": "-77.244207859", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Prince Edward County", + "scheduled_service": "no" + }, + { + "id": "46508", + "ident": "CA-0438", + "type": "closed", + "name": "Scott's Airstrip", + "latitude_deg": "43.8735194557", + "longitude_deg": "-77.158741951", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Prince Edward County", + "scheduled_service": "no" + }, + { + "id": "46520", + "ident": "CA-0439", + "type": "closed", + "name": "Wellington Airstrip", + "latitude_deg": "43.9637699732", + "longitude_deg": "-77.31192827219999", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Prince Edward County", + "scheduled_service": "no" + }, + { + "id": "46521", + "ident": "CA-0440", + "type": "closed", + "name": "Point Petre Helipad", + "latitude_deg": "43.843244", + "longitude_deg": "-77.144757", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Prince Edward County", + "scheduled_service": "no", + "gps_code": "CWQP", + "local_code": "CWQP" + }, + { + "id": "46523", + "ident": "CA-0441", + "type": "closed", + "name": "Edmonton / St. Albert", + "latitude_deg": "53.690048938299995", + "longitude_deg": "-113.693432808", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "St. Albert", + "scheduled_service": "no" + }, + { + "id": "46545", + "ident": "CA-0442", + "type": "small_airport", + "name": "Little's Farm", + "latitude_deg": "43.7975530554", + "longitude_deg": "-79.7895812988", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "46577", + "ident": "CA-0443", + "type": "small_airport", + "name": "Brier Island Airstrip", + "latitude_deg": "44.25700308649999", + "longitude_deg": "-66.3593530655", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Westport", + "scheduled_service": "no" + }, + { + "id": "46580", + "ident": "CA-0444", + "type": "small_airport", + "name": "Beaverton Airport", + "latitude_deg": "44.4470778865", + "longitude_deg": "-79.09907341", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CBV2", + "local_code": "CBV2" + }, + { + "id": "349730", + "ident": "CA-0445", + "type": "closed", + "name": "RCAF Detachment Standoff", + "latitude_deg": "49.55", + "longitude_deg": "-113.3333", + "elevation_ft": "3290", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RCAF_Station_Fort_Macleod", + "keywords": "BCATP, RCAF" + }, + { + "id": "298628", + "ident": "CA-0446", + "type": "small_airport", + "name": "Stuart Island Airstrip", + "latitude_deg": "50.4094474336", + "longitude_deg": "-125.131616592", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Big Bay", + "scheduled_service": "no", + "iata_code": "YRR" + }, + { + "id": "46629", + "ident": "CA-0447", + "type": "small_airport", + "name": "Gamble Field", + "latitude_deg": "43.3576842766", + "longitude_deg": "-79.9830651283", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Harper Corners", + "scheduled_service": "no" + }, + { + "id": "46630", + "ident": "CA-0448", + "type": "small_airport", + "name": "Willow Lake Airstrip", + "latitude_deg": "43.166812906299995", + "longitude_deg": "-80.7752287388", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "46631", + "ident": "CA-0449", + "type": "small_airport", + "name": "Woodstock Private Airstrip", + "latitude_deg": "43.128144", + "longitude_deg": "-80.800785", + "elevation_ft": "1048", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Woodstock", + "scheduled_service": "no" + }, + { + "id": "46633", + "ident": "CA-0450", + "type": "small_airport", + "name": "Monte Creek Airstrip", + "latitude_deg": "50.648263182", + "longitude_deg": "-119.90032196", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Monte Creek", + "scheduled_service": "no" + }, + { + "id": "46634", + "ident": "CA-0451", + "type": "small_airport", + "name": "Prichard Airstrip", + "latitude_deg": "50.659473079099996", + "longitude_deg": "-119.793720245", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Pritchard", + "scheduled_service": "no" + }, + { + "id": "46635", + "ident": "CA-0452", + "type": "small_airport", + "name": "Courtland / Tillsonburg Flying Club Field", + "latitude_deg": "42.85709146759999", + "longitude_deg": "-80.63207387920001", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Tillsonburg", + "scheduled_service": "no" + }, + { + "id": "298629", + "ident": "CA-0453", + "type": "small_airport", + "name": "Sheridan Lake Airstrip", + "latitude_deg": "51.4954922213", + "longitude_deg": "-120.835790634", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Sheridan Lake", + "scheduled_service": "no" + }, + { + "id": "46642", + "ident": "CA-0454", + "type": "small_airport", + "name": "Baker's Valley Aerodrome", + "latitude_deg": "44.754657", + "longitude_deg": "-76.929016", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Central Frontenac", + "scheduled_service": "no", + "home_link": "https://bakervalley.shutterfly.com/?fbclid=IwAR32E8Awt8c6FEFTKbVN0NfKDXSvKe_w2OtiyvhFVeQDxH7Ee-quRmSWYdc" + }, + { + "id": "46638", + "ident": "CA-0455", + "type": "small_airport", + "name": "Brisbane", + "latitude_deg": "43.7378792754", + "longitude_deg": "-80.08428096770001", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "46648", + "ident": "CA-0456", + "type": "small_airport", + "name": "Roseville Field", + "latitude_deg": "43.3471211516", + "longitude_deg": "-80.43365478519999", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "298348", + "ident": "CA-0457", + "type": "small_airport", + "name": "L'Île d'Entrée Airfield", + "latitude_deg": "47.276376", + "longitude_deg": "-61.712329", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "L'Île d'Entrée", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Entry_Island", + "keywords": "Ile d'entré" + }, + { + "id": "298369", + "ident": "CA-0458", + "type": "heliport", + "name": "Newcastle (Morgan's Road) Heliport", + "latitude_deg": "43.9324087966", + "longitude_deg": "-78.5288572311", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Clarington", + "scheduled_service": "no" + }, + { + "id": "298381", + "ident": "CA-0459", + "type": "small_airport", + "name": "Seagrave Airfield", + "latitude_deg": "44.1668910305", + "longitude_deg": "-78.9350295067", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "298382", + "ident": "CA-0460", + "type": "small_airport", + "name": "Utica Airfield", + "latitude_deg": "44.066080608", + "longitude_deg": "-79.0208816528", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "298383", + "ident": "CA-0461", + "type": "small_airport", + "name": "Brougham High Perspective Hang Glider Port", + "latitude_deg": "43.915547", + "longitude_deg": "-79.133899", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Locust Hill", + "scheduled_service": "no" + }, + { + "id": "298391", + "ident": "CA-0462", + "type": "closed", + "name": "Montreal / Vieux Port", + "latitude_deg": "45.505204", + "longitude_deg": "-73.546815", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "298392", + "ident": "CA-0463", + "type": "small_airport", + "name": "Saint-François-de-Laval (Laval Aviation)", + "latitude_deg": "45.688674404299995", + "longitude_deg": "-73.5811257362", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "298393", + "ident": "CA-0464", + "type": "seaplane_base", + "name": "Saint-François-de-Laval (Laval Aviation)", + "latitude_deg": "45.6931260794", + "longitude_deg": "-73.58091115949999", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "298395", + "ident": "CA-0465", + "type": "small_airport", + "name": "Hampton", + "latitude_deg": "43.9765877574", + "longitude_deg": "-78.706870079", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "298396", + "ident": "CA-0466", + "type": "small_airport", + "name": "Hampton / Morawetz Field", + "latitude_deg": "43.982038338", + "longitude_deg": "-78.81718397139998", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "298397", + "ident": "CA-0467", + "type": "closed", + "name": "Ajax / Picov Downs Airport", + "latitude_deg": "43.870859", + "longitude_deg": "-79.011869", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ajax", + "scheduled_service": "no" + }, + { + "id": "298398", + "ident": "CA-0468", + "type": "small_airport", + "name": "Sandford Field", + "latitude_deg": "44.154776381299996", + "longitude_deg": "-79.1985189915", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "298400", + "ident": "CA-0469", + "type": "small_airport", + "name": "Belle River Field", + "latitude_deg": "42.245166587", + "longitude_deg": "-82.72061347959999", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "298401", + "ident": "CA-0470", + "type": "small_airport", + "name": "Ruscom Station Field", + "latitude_deg": "42.1883059789", + "longitude_deg": "-82.673470974", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "298402", + "ident": "CA-0471", + "type": "small_airport", + "name": "Colinville Field", + "latitude_deg": "42.865852", + "longitude_deg": "-82.360768", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Mooretown", + "scheduled_service": "no" + }, + { + "id": "298403", + "ident": "CA-0472", + "type": "small_airport", + "name": "Tyneside Field", + "latitude_deg": "43.1022832509", + "longitude_deg": "-79.87678527830002", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "298404", + "ident": "CA-0473", + "type": "small_airport", + "name": "Burnaby Field", + "latitude_deg": "42.884281956399995", + "longitude_deg": "-79.3190360069", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "298407", + "ident": "CA-0474", + "type": "seaplane_base", + "name": "Whati Airport Seaplane Base", + "latitude_deg": "63.132175914099996", + "longitude_deg": "-117.258625031", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no" + }, + { + "id": "298408", + "ident": "CA-0475", + "type": "small_airport", + "name": "Dugan Lake Air Strip", + "latitude_deg": "52.1977699021", + "longitude_deg": "-121.957587004", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "298409", + "ident": "CA-0476", + "type": "heliport", + "name": "Williams Lake / Lee Todd Heliport", + "latitude_deg": "52.165890651199994", + "longitude_deg": "-122.20654428", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "298410", + "ident": "CA-0477", + "type": "heliport", + "name": "Williams Lake / Clusko Logging", + "latitude_deg": "52.165857747", + "longitude_deg": "-122.162486315", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "298411", + "ident": "CA-0478", + "type": "heliport", + "name": "Williams Lake / Highland Helicopters", + "latitude_deg": "52.140471539", + "longitude_deg": "-122.158881426", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "298412", + "ident": "CA-0479", + "type": "heliport", + "name": "Williams Lake / Wayne Peterson Heliport", + "latitude_deg": "52.1237896659", + "longitude_deg": "-122.107565403", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "298413", + "ident": "CA-0480", + "type": "heliport", + "name": "Williams Lake / Pioneer Heliport", + "latitude_deg": "52.110247928700005", + "longitude_deg": "-122.134366035", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "298486", + "ident": "CA-0481", + "type": "small_airport", + "name": "Elizabethville Airstrip", + "latitude_deg": "44.0638988987", + "longitude_deg": "-78.49959969519999", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "298546", + "ident": "CA-0482", + "type": "small_airport", + "name": "Brussels / Hemingway Field", + "latitude_deg": "43.718512413199996", + "longitude_deg": "-81.23827457430001", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "home_link": "http://www.hemingwayaviation.com/index.php" + }, + { + "id": "298654", + "ident": "CA-0483", + "type": "closed", + "name": "Armour Heights Field", + "latitude_deg": "43.740833", + "longitude_deg": "-79.422222", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Toronto", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Armour_Heights_Field" + }, + { + "id": "298655", + "ident": "CA-0484", + "type": "closed", + "name": "Barker Field", + "latitude_deg": "43.714666206299995", + "longitude_deg": "-79.45590376850001", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Toronto", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barker_Field" + }, + { + "id": "298656", + "ident": "CA-0485", + "type": "closed", + "name": "De Lesseps Field", + "latitude_deg": "43.6987669661", + "longitude_deg": "-79.49644804", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Toronto", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/De_Lesseps_Field" + }, + { + "id": "298657", + "ident": "CA-0486", + "type": "closed", + "name": "Leaside Aerodrome", + "latitude_deg": "43.712778", + "longitude_deg": "-79.359167", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Toronto", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leaside_Aerodrome" + }, + { + "id": "298658", + "ident": "CA-0487", + "type": "closed", + "name": "Long Branch Aerodrome", + "latitude_deg": "43.572975860599996", + "longitude_deg": "-79.5534181595", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Mississauga", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Long_Branch_Aerodrome" + }, + { + "id": "298659", + "ident": "CA-0488", + "type": "closed", + "name": "Toronto Aerodrome", + "latitude_deg": "43.748889", + "longitude_deg": "-79.460833", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Toronto", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toronto_Aerodrome", + "keywords": "Canadian Air Express Airport" + }, + { + "id": "298660", + "ident": "CA-0489", + "type": "closed", + "name": "Willowdale Airfield", + "latitude_deg": "43.765221005899996", + "longitude_deg": "-79.4237494469", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Toronto", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Willowdale_Airfield" + }, + { + "id": "298661", + "ident": "CA-0490", + "type": "closed", + "name": "Aérodrome Saint-Louis", + "latitude_deg": "46.7707326713", + "longitude_deg": "-71.2854766846", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Sainte-Foy", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/A%C3%A9rodrome_Saint-Louis", + "keywords": "Aérodrome du Bois Gomin, Canadian Transcontinental Airways Airport" + }, + { + "id": "298662", + "ident": "CA-0491", + "type": "closed", + "name": "Montréal / Boucherville Water Aerodrome", + "latitude_deg": "45.627778", + "longitude_deg": "-73.454722", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "local_code": "CTA7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Montr%C3%A9al/Boucherville_Water_Aerodrome" + }, + { + "id": "298814", + "ident": "CA-0492", + "type": "small_airport", + "name": "Douro Airfield", + "latitude_deg": "44.3838238978", + "longitude_deg": "-78.1574678421", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "298855", + "ident": "CA-0493", + "type": "small_airport", + "name": "Foxden Farms", + "latitude_deg": "43.9686657666", + "longitude_deg": "-79.40330028530002", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "298921", + "ident": "CA-0494", + "type": "closed", + "name": "L'escapade", + "latitude_deg": "48.428574", + "longitude_deg": "-74.518375", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "home_link": "http://www.pourvoirieescapade.com/freepage.php?page=2" + }, + { + "id": "299001", + "ident": "CA-0495", + "type": "small_airport", + "name": "Selby - Howard's Airstrip", + "latitude_deg": "44.3151588418", + "longitude_deg": "-76.9580966234", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "299178", + "ident": "CA-0496", + "type": "closed", + "name": "CNRL Strip", + "latitude_deg": "54.884211", + "longitude_deg": "-120.647564", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "299272", + "ident": "CA-0497", + "type": "small_airport", + "name": "Vulcan / Kirkcaldy Airport", + "latitude_deg": "50.331944", + "longitude_deg": "-113.357778", + "elevation_ft": "3418", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Vulcan", + "scheduled_service": "no", + "gps_code": "CVL2", + "local_code": "CVL2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vulcan/Kirkcaldy_Aerodrome", + "keywords": "RCAF Station Vulcan, BCATP Vulcan" + }, + { + "id": "299302", + "ident": "CA-0498", + "type": "small_airport", + "name": "Napanee Airstrip", + "latitude_deg": "44.2530609746", + "longitude_deg": "-76.9941186905", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Napanee", + "scheduled_service": "no" + }, + { + "id": "299439", + "ident": "CA-0499", + "type": "closed", + "name": "Sumas Municipal Airport", + "latitude_deg": "49.038515", + "longitude_deg": "-122.130675", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Abbotsford", + "scheduled_service": "no" + }, + { + "id": "299559", + "ident": "CA-0500", + "type": "heliport", + "name": "D.C. Heliport", + "latitude_deg": "44.3582469361", + "longitude_deg": "-76.85742259030002", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Camden East", + "scheduled_service": "no" + }, + { + "id": "299561", + "ident": "CA-0501", + "type": "closed", + "name": "Don's Airstrip", + "latitude_deg": "43.98605261", + "longitude_deg": "-77.18740940090001", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Prince Edward County", + "scheduled_service": "no" + }, + { + "id": "299562", + "ident": "CA-0502", + "type": "small_airport", + "name": "Combermere / Bonnie Brae Airfield", + "latitude_deg": "45.374473", + "longitude_deg": "-77.723229", + "elevation_ft": "1545", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CMB8", + "local_code": "CMB8" + }, + { + "id": "299651", + "ident": "CA-0503", + "type": "small_airport", + "name": "Linden Airport", + "latitude_deg": "51.594322", + "longitude_deg": "-113.480229", + "elevation_ft": "2930", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Linden", + "scheduled_service": "no" + }, + { + "id": "299911", + "ident": "CA-0504", + "type": "small_airport", + "name": "Mary River Aerodrome", + "latitude_deg": "71.324167", + "longitude_deg": "-79.356944", + "elevation_ft": "584", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Mary River", + "scheduled_service": "no", + "iata_code": "YMV", + "local_code": "CMR2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mary_River_Aerodrome" + }, + { + "id": "300233", + "ident": "CA-0505", + "type": "seaplane_base", + "name": "Rivière Temiscamie Floatbase", + "latitude_deg": "51.008489", + "longitude_deg": "-72.989837", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CSV7", + "local_code": "CSV7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rivi%C3%A8re_T%C3%A9miscamie_Water_Aerodrome", + "keywords": "SV7, Lac Albanel" + }, + { + "id": "300313", + "ident": "CA-0506", + "type": "small_airport", + "name": "Newburgh - R.S. (Bob) Clapp Memorial Airstrip", + "latitude_deg": "44.354603", + "longitude_deg": "-76.854515", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Camden East", + "scheduled_service": "no" + }, + { + "id": "300322", + "ident": "CA-0507", + "type": "small_airport", + "name": "Rednersville / Aery", + "latitude_deg": "44.105299", + "longitude_deg": "-77.459149", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Prince Edward County", + "scheduled_service": "no", + "gps_code": "CRA3" + }, + { + "id": "300400", + "ident": "CA-0508", + "type": "small_airport", + "name": "Farrow's Field", + "latitude_deg": "44.4393568122", + "longitude_deg": "-80.9398841858", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "300403", + "ident": "CA-0509", + "type": "closed", + "name": "Cruikshank Air Field", + "latitude_deg": "44.581236768", + "longitude_deg": "-80.9797096252", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "301224", + "ident": "CA-0510", + "type": "seaplane_base", + "name": "Balsam Lake Seaplane Base", + "latitude_deg": "44.54063", + "longitude_deg": "-78.893096", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kirkfield", + "scheduled_service": "no", + "gps_code": "CKW7", + "local_code": "CKW7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kirkfield/Balsam_Lake_Seaplane_Base" + }, + { + "id": "301226", + "ident": "CA-0511", + "type": "seaplane_base", + "name": "Val D'or (St. Pierre) Water Aerodrome", + "latitude_deg": "48.077864", + "longitude_deg": "-77.869655", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Val d'Or", + "scheduled_service": "no", + "gps_code": "CSP7", + "local_code": "CSP7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Val-d%27Or_(St-Pierre)_Water_Aerodrome" + }, + { + "id": "301227", + "ident": "CA-0512", + "type": "seaplane_base", + "name": "Val D'or / Huard Water Aerodrome", + "latitude_deg": "48.071742", + "longitude_deg": "-77.87384", + "elevation_ft": "984", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Val D'or", + "scheduled_service": "no", + "gps_code": "CVB6", + "local_code": "CVB6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Val-d%27Or_(Huard)_Water_Aerodrome" + }, + { + "id": "301230", + "ident": "CA-0513", + "type": "heliport", + "name": "Two Hills (Health Centre) Heliport", + "latitude_deg": "53.7136187439", + "longitude_deg": "-111.730871201", + "elevation_ft": "2075", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "gps_code": "CTH4" + }, + { + "id": "302070", + "ident": "CA-0514", + "type": "small_airport", + "name": "Long Sault Airstrip", + "latitude_deg": "45.039787", + "longitude_deg": "-74.859477", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Long Sault", + "scheduled_service": "no" + }, + { + "id": "307218", + "ident": "CA-0515", + "type": "small_airport", + "name": "Sky Wrench Field", + "latitude_deg": "49.120833333300006", + "longitude_deg": "-81.0435", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Cochrane", + "scheduled_service": "no" + }, + { + "id": "307238", + "ident": "CA-0516", + "type": "small_airport", + "name": "Warren Field", + "latitude_deg": "42.936718", + "longitude_deg": "-81.479738", + "elevation_ft": "813", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Mount Brydges", + "scheduled_service": "no", + "gps_code": "CWF3", + "local_code": "CWF3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mount_Brydges/Warren_Field_Aerodrome" + }, + { + "id": "307323", + "ident": "CA-0517", + "type": "heliport", + "name": "Hastings Field Heliport", + "latitude_deg": "48.781844", + "longitude_deg": "-123.281611", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "North Pender Island", + "scheduled_service": "no" + }, + { + "id": "307391", + "ident": "CA-0518", + "type": "small_airport", + "name": "Ivanhoe Airstrip", + "latitude_deg": "48.1830555556", + "longitude_deg": "-82.5492361111", + "elevation_ft": "1195", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ivanhoe", + "scheduled_service": "no" + }, + { + "id": "307844", + "ident": "CA-0519", + "type": "closed", + "name": "No. 4 E.F.T.S. Windsor Mills Airfield", + "latitude_deg": "45.5192782552", + "longitude_deg": "-72.0316457748", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no" + }, + { + "id": "308011", + "ident": "CA-0520", + "type": "small_airport", + "name": "Lorneville Airstrip", + "latitude_deg": "44.448507", + "longitude_deg": "-78.910104", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kawartha Lakes", + "scheduled_service": "no" + }, + { + "id": "308537", + "ident": "CA-0521", + "type": "small_airport", + "name": "Mount Forest Roths' Field", + "latitude_deg": "44.23", + "longitude_deg": "-81.026667", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Hanover", + "scheduled_service": "no" + }, + { + "id": "308538", + "ident": "CA-0522", + "type": "heliport", + "name": "Calgary (Aerial Recon) Heliport", + "latitude_deg": "50.868", + "longitude_deg": "-114.138", + "elevation_ft": "3820", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "gps_code": "CAR3" + }, + { + "id": "308539", + "ident": "CA-0523", + "type": "small_airport", + "name": "Roths field", + "latitude_deg": "43.9785487888", + "longitude_deg": "-80.7770633698", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "local_code": "CPR1" + }, + { + "id": "309767", + "ident": "CA-0524", + "type": "small_airport", + "name": "Varys field", + "latitude_deg": "44.5897948166", + "longitude_deg": "-80.76384544369999", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Owen Sound", + "scheduled_service": "no" + }, + { + "id": "309890", + "ident": "CA-0525", + "type": "small_airport", + "name": "Flamboro Centre Airport", + "latitude_deg": "43.371599", + "longitude_deg": "-79.93238", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Flamborough", + "scheduled_service": "no", + "gps_code": "CFC8", + "local_code": "CFC8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Flamboro_Centre_Aerodrome", + "keywords": "Charlie's Field" + }, + { + "id": "309272", + "ident": "CA-0526", + "type": "small_airport", + "name": "Rivière-aux-Saumons Aerodrome (Private Operator: Safari Anticosti)", + "latitude_deg": "49.401389", + "longitude_deg": "-62.295278", + "elevation_ft": "369", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Rivière-aux-Saumons", + "scheduled_service": "no", + "gps_code": "CTH7", + "local_code": "CTH7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rivi%C3%A8re-aux-Saumons_Aerodrome" + }, + { + "id": "350161", + "ident": "CA-0527", + "type": "closed", + "name": "RCAF Detachment Edwards", + "latitude_deg": "45.305662", + "longitude_deg": "-75.472953", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Edwards", + "scheduled_service": "no", + "keywords": "RCAF, BCATP" + }, + { + "id": "309891", + "ident": "CA-0528", + "type": "small_airport", + "name": "Skydive SWOOP", + "latitude_deg": "43.3018169655", + "longitude_deg": "-79.971832037", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "309924", + "ident": "CA-0529", + "type": "heliport", + "name": "Prince Edward O.P.P. Helipad", + "latitude_deg": "43.995230377300004", + "longitude_deg": "-77.18827575450001", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Prince Edward County", + "scheduled_service": "no" + }, + { + "id": "309926", + "ident": "CA-0530", + "type": "seaplane_base", + "name": "Hallowell Mills Cove Seaplane Base", + "latitude_deg": "44.033554785599996", + "longitude_deg": "-77.1363830566", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Prince Edward County", + "scheduled_service": "no" + }, + { + "id": "309927", + "ident": "CA-0531", + "type": "heliport", + "name": "Clapp Farm Heliport", + "latitude_deg": "43.9093234337", + "longitude_deg": "-77.0790508389", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Prince Edward County", + "scheduled_service": "no" + }, + { + "id": "309928", + "ident": "CA-0532", + "type": "closed", + "name": "Clapp Farm Airfield", + "latitude_deg": "43.910956260599995", + "longitude_deg": "-77.081387043", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Prince Edward County", + "scheduled_service": "no" + }, + { + "id": "310620", + "ident": "CA-0533", + "type": "seaplane_base", + "name": "Marina Senneterre", + "latitude_deg": "48.392617", + "longitude_deg": "-77.225038", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Senneterre", + "scheduled_service": "no", + "keywords": "SY9, Senneterre Water Aerodrome" + }, + { + "id": "311164", + "ident": "CA-0534", + "type": "small_airport", + "name": "Lac William ice runway (seasonal)", + "latitude_deg": "46.12566", + "longitude_deg": "-71.574727", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Bernierville", + "scheduled_service": "no", + "home_link": "http://www.manoirdulac.com/forfaits-vacances/le-manoir/rendez-vous-des-aviateurs-du-lac-william.aspx" + }, + { + "id": "350538", + "ident": "CA-0535", + "type": "closed", + "name": "Williamsburg Airport", + "latitude_deg": "44.990326", + "longitude_deg": "-75.203253", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Williamsburg", + "scheduled_service": "no" + }, + { + "id": "312632", + "ident": "CA-0536", + "type": "small_airport", + "name": "Paterson Field", + "latitude_deg": "43.419447", + "longitude_deg": "-81.237176", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "312802", + "ident": "CA-0537", + "type": "small_airport", + "name": "Robinson International Air Field", + "latitude_deg": "44.18", + "longitude_deg": "-80.9515", + "elevation_ft": "942", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Allan Park", + "scheduled_service": "no", + "local_code": "CAP2" + }, + { + "id": "313545", + "ident": "CA-0538", + "type": "small_airport", + "name": "Pretty Estates Resort Airport", + "latitude_deg": "49.252372", + "longitude_deg": "-121.945846", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Harrison Mills", + "scheduled_service": "no", + "home_link": "https://www.prettyestateresort.com/how-to-get-to-pretty-estates-resort-hotel-bc/" + }, + { + "id": "314194", + "ident": "CA-0539", + "type": "closed", + "name": "Stuart Island Water Aerodrome", + "latitude_deg": "50.3629", + "longitude_deg": "-125.1385", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Stuart Island", + "scheduled_service": "no", + "local_code": "CAD9", + "keywords": "AD9, CAD9" + }, + { + "id": "314198", + "ident": "CA-0540", + "type": "closed", + "name": "Bella Coola Water Aerodrome", + "latitude_deg": "52.3774", + "longitude_deg": "-126.7954", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Bella Coola", + "scheduled_service": "no", + "local_code": "AE6" + }, + { + "id": "314200", + "ident": "CA-0541", + "type": "closed", + "name": "Nimpkish Water Aerodrome", + "latitude_deg": "50.33", + "longitude_deg": "-126.93", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Nimpkish", + "scheduled_service": "no", + "keywords": "AE8, CAE8" + }, + { + "id": "314210", + "ident": "CA-0542", + "type": "closed", + "name": "Nakusp Water Aerodrome", + "latitude_deg": "50.234", + "longitude_deg": "-117.8", + "elevation_ft": "1448", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Nakusp", + "scheduled_service": "no", + "local_code": "AB8" + }, + { + "id": "314217", + "ident": "CA-0543", + "type": "closed", + "name": "Winter Harbour Water Aerodrome", + "latitude_deg": "50.5117", + "longitude_deg": "-128.0284", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Winter Harbour", + "scheduled_service": "no", + "local_code": "AZ9" + }, + { + "id": "314218", + "ident": "CA-0544", + "type": "closed", + "name": "Morfee Lakes Water Aerodrome", + "latitude_deg": "55.35", + "longitude_deg": "-123.08", + "elevation_ft": "2365", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Mackenzie", + "scheduled_service": "no", + "local_code": "AZ7" + }, + { + "id": "314221", + "ident": "CA-0545", + "type": "closed", + "name": "Takla Narrows Water Aerodrome", + "latitude_deg": "55.1635", + "longitude_deg": "-125.7133", + "elevation_ft": "2257", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Takla Narrows", + "scheduled_service": "no", + "local_code": "AP9" + }, + { + "id": "314224", + "ident": "CA-0546", + "type": "closed", + "name": "Dease Lake Seaplane Base", + "latitude_deg": "58.459", + "longitude_deg": "-130.038", + "elevation_ft": "2470", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Dease Lake", + "scheduled_service": "no", + "local_code": "AP6" + }, + { + "id": "314228", + "ident": "CA-0547", + "type": "closed", + "name": "Invermere Water Aerodrome", + "latitude_deg": "50.49", + "longitude_deg": "-116.01", + "elevation_ft": "2618", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Invermere", + "scheduled_service": "no", + "local_code": "AF7" + }, + { + "id": "314912", + "ident": "CA-0548", + "type": "closed", + "name": "North Cariboo Air Park", + "latitude_deg": "54.008098602295", + "longitude_deg": "-123.02300262451", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Prince George", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Prince_George_(North_Cariboo_Air_Park)_Airport", + "keywords": "BW8, CBW8" + }, + { + "id": "315415", + "ident": "CA-0549", + "type": "small_airport", + "name": "Nicholson Island Private Airstrip", + "latitude_deg": "43.9163977", + "longitude_deg": "-77.52523636", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "315836", + "ident": "CA-0550", + "type": "seaplane_base", + "name": "Cree Lake (Crystal Lodge) Water Aerodrome", + "latitude_deg": "57.4616", + "longitude_deg": "-106.7528", + "elevation_ft": "1593", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Crystal Lodge", + "scheduled_service": "no", + "gps_code": "CRE4", + "local_code": "CRE4", + "home_link": "http://www.creelake.com/map-and-flight.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cree_Lake_(Crystal_Lodge)_Water_Aerodrome", + "keywords": "RE4" + }, + { + "id": "316098", + "ident": "CA-0551", + "type": "seaplane_base", + "name": "Cameron Bay Water Aerodrome", + "latitude_deg": "66.06", + "longitude_deg": "-117.89", + "elevation_ft": "512", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Cameron Bay", + "scheduled_service": "no", + "local_code": "EA7" + }, + { + "id": "316107", + "ident": "CA-0552", + "type": "closed", + "name": "Shingle Point Water Aerodrome", + "latitude_deg": "68.935", + "longitude_deg": "-137.225", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Shingle Point", + "scheduled_service": "no", + "local_code": "EA9" + }, + { + "id": "316109", + "ident": "CA-0553", + "type": "seaplane_base", + "name": "Fort Resolution Water Aerodrome", + "latitude_deg": "61.164", + "longitude_deg": "-113.678", + "elevation_ft": "515", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Fort Resolution", + "scheduled_service": "no", + "local_code": "EB8" + }, + { + "id": "316114", + "ident": "CA-0554", + "type": "seaplane_base", + "name": "Clarence Lagoon Water Aerodrome", + "latitude_deg": "69.62", + "longitude_deg": "-140.81", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "scheduled_service": "no", + "local_code": "EC7" + }, + { + "id": "316115", + "ident": "CA-0555", + "type": "seaplane_base", + "name": "Fort Smith Water Aerodrome", + "latitude_deg": "60.01675", + "longitude_deg": "-111.889589", + "elevation_ft": "554", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Fort Smith", + "scheduled_service": "no", + "gps_code": "CEC8", + "local_code": "EC8" + }, + { + "id": "316197", + "ident": "CA-0556", + "type": "seaplane_base", + "name": "Boffa Lake Water Aerodrome", + "latitude_deg": "69.637", + "longitude_deg": "-116.196", + "elevation_ft": "338", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no", + "local_code": "EX6" + }, + { + "id": "316198", + "ident": "CA-0557", + "type": "closed", + "name": "Fort Providence Water Aerodrome", + "latitude_deg": "61.35", + "longitude_deg": "-117.651", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Fort Providence", + "scheduled_service": "no", + "local_code": "CEX7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Providence_Water_Aerodrome", + "keywords": "EX7" + }, + { + "id": "316215", + "ident": "CA-0558", + "type": "seaplane_base", + "name": "Rocher River Water Aerodrome.", + "latitude_deg": "61.379", + "longitude_deg": "-112.744", + "elevation_ft": "515", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Rocher River", + "scheduled_service": "no", + "local_code": "EY8" + }, + { + "id": "316229", + "ident": "CA-0559", + "type": "closed", + "name": "Calling Lake Water Aerodrome", + "latitude_deg": "55.226", + "longitude_deg": "-113.198", + "elevation_ft": "1948", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calling Lake", + "scheduled_service": "no", + "local_code": "EZ6" + }, + { + "id": "316233", + "ident": "CA-0560", + "type": "closed", + "name": "Sawmill Bay Bay Water Aerodrome", + "latitude_deg": "65.72", + "longitude_deg": "-118.84", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Sawmill Bay", + "scheduled_service": "no", + "local_code": "EZ8" + }, + { + "id": "316403", + "ident": "CA-0561", + "type": "small_airport", + "name": "Griffith Island", + "latitude_deg": "44.830509924281", + "longitude_deg": "-80.900981183164", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "316408", + "ident": "CA-0562", + "type": "small_airport", + "name": "White Cloud Island", + "latitude_deg": "44.835907609474", + "longitude_deg": "-80.975400706753", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "316411", + "ident": "CA-0563", + "type": "small_airport", + "name": "Hay Island Airstrip", + "latitude_deg": "44.8902", + "longitude_deg": "-80.9773", + "elevation_ft": "767", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Hay Island", + "scheduled_service": "no" + }, + { + "id": "317280", + "ident": "CA-0564", + "type": "small_airport", + "name": "Carnie Airfield", + "latitude_deg": "42.424644", + "longitude_deg": "-81.865847", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ridgetown", + "scheduled_service": "no", + "gps_code": "CRN2", + "local_code": "CRN2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ridgetown_(Carnie_Airfield)_Aerodrome" + }, + { + "id": "28244", + "ident": "CA-0565", + "type": "seaplane_base", + "name": "Gowganda/Gowganda Lake Seaplane Base", + "latitude_deg": "47.6506", + "longitude_deg": "-80.785301", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "317772", + "ident": "CA-0566", + "type": "heliport", + "name": "Triple Island Lightstation Helipad", + "latitude_deg": "54.294727", + "longitude_deg": "-130.880179", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Triple Islands", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Triple_Island_Lightstation", + "keywords": "YTI" + }, + { + "id": "317825", + "ident": "CA-0567", + "type": "small_airport", + "name": "Carlstads Airstrip", + "latitude_deg": "56.247489", + "longitude_deg": "-119.798636", + "elevation_ft": "2135", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Bear Canyon", + "scheduled_service": "no" + }, + { + "id": "317826", + "ident": "CA-0568", + "type": "small_airport", + "name": "Prairie Point Airport", + "latitude_deg": "58.272539", + "longitude_deg": "-116.461299", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "La Crête", + "scheduled_service": "no" + }, + { + "id": "317827", + "ident": "CA-0569", + "type": "closed", + "name": "Gunnar Airport", + "latitude_deg": "59.4092", + "longitude_deg": "-108.8543", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Gunnar Uranium Mine", + "scheduled_service": "no" + }, + { + "id": "317860", + "ident": "CA-0570", + "type": "closed", + "name": "RCAF Detachment Alliston", + "latitude_deg": "44.12", + "longitude_deg": "-79.82", + "elevation_ft": "719", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Alliston", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RCAF_Detachment_Alliston" + }, + { + "id": "331486", + "ident": "CA-0571", + "type": "closed", + "name": "Gosling Lake Water Aerodrome", + "latitude_deg": "53.420455", + "longitude_deg": "-60.374759", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "scheduled_service": "no", + "local_code": "CJ4" + }, + { + "id": "333722", + "ident": "CA-0572", + "type": "closed", + "name": "Lac Mandeville Water Aerodrome", + "latitude_deg": "46.3708", + "longitude_deg": "-73.3247", + "elevation_ft": "489", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Saint-Charles-de-Mandeville", + "scheduled_service": "no", + "local_code": "SB6" + }, + { + "id": "319305", + "ident": "CA-0573", + "type": "closed", + "name": "Ste-Marguerite Water Aerodrome", + "latitude_deg": "46.032733", + "longitude_deg": "-74.054189", + "elevation_ft": "1081", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Sainte-Marguerite-du-Lac-Masson", + "scheduled_service": "no", + "local_code": "SU9" + }, + { + "id": "319306", + "ident": "CA-0574", + "type": "closed", + "name": "Les Cèdres Water Aerodrome", + "latitude_deg": "45.306001", + "longitude_deg": "-74.058008", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Les Cèdres", + "scheduled_service": "no", + "local_code": "SU8" + }, + { + "id": "319307", + "ident": "CA-0575", + "type": "closed", + "name": "Clyde River Water Aerodrome", + "latitude_deg": "70.468", + "longitude_deg": "-68.58", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Clyde River", + "scheduled_service": "no", + "local_code": "SU6" + }, + { + "id": "320051", + "ident": "CA-0576", + "type": "closed", + "name": "Flame Lake Water Aerodrome", + "latitude_deg": "47.290002", + "longitude_deg": "-83.180002", + "elevation_ft": "1453", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Flame Lake Lodge", + "scheduled_service": "no", + "local_code": "NZ5" + }, + { + "id": "320055", + "ident": "CA-0577", + "type": "closed", + "name": "Mustardville Airport", + "latitude_deg": "43.0458001", + "longitude_deg": "-81.6925", + "elevation_ft": "738", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Strathroy", + "scheduled_service": "no", + "local_code": "PB6" + }, + { + "id": "320056", + "ident": "CA-0578", + "type": "closed", + "name": "Island Marina Water Aerodrome", + "latitude_deg": "45.4424002", + "longitude_deg": "-77.6925", + "elevation_ft": "928", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Barry's Bay", + "scheduled_service": "no", + "local_code": "PC2" + }, + { + "id": "320057", + "ident": "CA-0579", + "type": "heliport", + "name": "Amphitrite Point Heliport", + "latitude_deg": "48.9224", + "longitude_deg": "-125.541601", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Amphitrite Point", + "scheduled_service": "no", + "local_code": "AN2" + }, + { + "id": "320058", + "ident": "CA-0580", + "type": "heliport", + "name": "Egg Island Lightstation Helipad", + "latitude_deg": "51.249701", + "longitude_deg": "-127.8364", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Egg Island", + "scheduled_service": "no", + "local_code": "AP2" + }, + { + "id": "320059", + "ident": "CA-0581", + "type": "heliport", + "name": "Green Island Lightstation Helipad", + "latitude_deg": "54.56854", + "longitude_deg": "-130.70648", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Green Island", + "scheduled_service": "no", + "local_code": "AQ2" + }, + { + "id": "320060", + "ident": "CA-0582", + "type": "medium_airport", + "name": "Bamfield Airstrip", + "latitude_deg": "48.8206", + "longitude_deg": "-125.1193", + "elevation_ft": "232", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Bamfield", + "scheduled_service": "yes" + }, + { + "id": "320063", + "ident": "CA-0583", + "type": "heliport", + "name": "Scarlett Point Lighthouse Helipad", + "latitude_deg": "50.8609", + "longitude_deg": "-127.6126", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Scarlett Point", + "scheduled_service": "no", + "local_code": "BJ7" + }, + { + "id": "320064", + "ident": "CA-0584", + "type": "small_airport", + "name": "Pointed Mountain Airport", + "latitude_deg": "60.3311002", + "longitude_deg": "-123.813", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Pointed Mountain", + "scheduled_service": "no", + "local_code": "BJ6" + }, + { + "id": "320091", + "ident": "CA-0585", + "type": "heliport", + "name": "Race Rocks Light Helipad", + "latitude_deg": "48.298504", + "longitude_deg": "-123.5322", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Vancouver Island", + "scheduled_service": "no", + "keywords": "BC6" + }, + { + "id": "320092", + "ident": "CA-0586", + "type": "heliport", + "name": "Elephant Enterprises Inc. Heliport", + "latitude_deg": "51.1152", + "longitude_deg": "-114.2956", + "elevation_ft": "3596", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "no", + "local_code": "CEE2" + }, + { + "id": "320093", + "ident": "CA-0587", + "type": "heliport", + "name": "Foothills Hospital McCaig Tower Helipad", + "latitude_deg": "51.065323", + "longitude_deg": "-114.135064", + "elevation_ft": "3761", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "no", + "local_code": "CMT3" + }, + { + "id": "320094", + "ident": "CA-0588", + "type": "heliport", + "name": "K. Coffey Residence Helipad", + "latitude_deg": "51.1657", + "longitude_deg": "-114.314801", + "elevation_ft": "4217", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "no", + "local_code": "CKC4" + }, + { + "id": "320095", + "ident": "CA-0589", + "type": "heliport", + "name": "Calgary\\Okotoks (GG Ranch) Heliport", + "latitude_deg": "50.7448", + "longitude_deg": "-113.991601", + "elevation_ft": "3624", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "no", + "local_code": "COK2" + }, + { + "id": "320096", + "ident": "CA-0590", + "type": "heliport", + "name": "Calgary/South Health Campus Hospital Helipad", + "latitude_deg": "50.8828", + "longitude_deg": "-113.952", + "elevation_ft": "3486", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "no", + "local_code": "CSH3" + }, + { + "id": "320116", + "ident": "CA-0591", + "type": "heliport", + "name": "Canmore Hospital Helipad", + "latitude_deg": "51.0924", + "longitude_deg": "-115.349501", + "elevation_ft": "4305", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Canmore", + "scheduled_service": "no", + "local_code": "CCH3" + }, + { + "id": "320118", + "ident": "CA-0592", + "type": "closed", + "name": "Shubenacadie Airport", + "latitude_deg": "45.0935", + "longitude_deg": "-63.3951", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Shubenacadie", + "scheduled_service": "no", + "local_code": "CL3" + }, + { + "id": "320120", + "ident": "CA-0593", + "type": "closed", + "name": "Shortts Lake Water Aerodrome", + "latitude_deg": "45.2389", + "longitude_deg": "-63.3286", + "elevation_ft": "122", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Shortts Lake", + "scheduled_service": "no", + "local_code": "CR5" + }, + { + "id": "320121", + "ident": "CA-0594", + "type": "small_airport", + "name": "Rednek Air Airport", + "latitude_deg": "49.821603", + "longitude_deg": "-112.5308", + "elevation_ft": "2812", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Coaldale", + "scheduled_service": "no", + "local_code": "CRD2" + }, + { + "id": "320123", + "ident": "CA-0595", + "type": "small_airport", + "name": "Didsbury/Minty Field", + "latitude_deg": "51.6535", + "longitude_deg": "-114.353", + "elevation_ft": "3480", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Didsbury", + "scheduled_service": "no", + "local_code": "CDM2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Didsbury/Minty_Field_Aerodrome" + }, + { + "id": "320125", + "ident": "CA-0596", + "type": "closed", + "name": "Machmell Airport", + "latitude_deg": "51.6561", + "longitude_deg": "-126.681703", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Central Coast A", + "scheduled_service": "no", + "local_code": "BY2", + "keywords": "BY2" + }, + { + "id": "320164", + "ident": "CA-0597", + "type": "closed", + "name": "Fort Good Hope Water Aerodrome", + "latitude_deg": "66.251502", + "longitude_deg": "-128.6497", + "elevation_ft": "58", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Fort Good Hope", + "scheduled_service": "no", + "local_code": "EP7" + }, + { + "id": "320190", + "ident": "CA-0598", + "type": "small_airport", + "name": "Bracebridge (Stone Wall Farm) Airport", + "latitude_deg": "44.988503", + "longitude_deg": "-79.1895", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Bracebridge", + "scheduled_service": "no", + "gps_code": "CSW4", + "local_code": "CSW4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bracebridge_(Stone_Wall_Farm)_Aerodrome" + }, + { + "id": "320192", + "ident": "CA-0599", + "type": "closed", + "name": "Antler Airport", + "latitude_deg": "49.5844", + "longitude_deg": "-101.5599", + "elevation_ft": "1850", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Antler", + "scheduled_service": "no", + "local_code": "JF4" + }, + { + "id": "320194", + "ident": "CA-0600", + "type": "closed", + "name": "Rivère l'Acadie Water Aerodrome", + "latitude_deg": "45.49035", + "longitude_deg": "-73.303326", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Carignan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carignan/Riv%C3%A8re_l%27Acadie_Water_Aerodrome", + "keywords": "CJF2" + }, + { + "id": "320235", + "ident": "CA-0601", + "type": "closed", + "name": "Russell Airport", + "latitude_deg": "45.292501", + "longitude_deg": "-75.3081", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Embrun", + "scheduled_service": "no", + "local_code": "PH4" + }, + { + "id": "320261", + "ident": "CA-0602", + "type": "closed", + "name": "Digby Water Aerodrome", + "latitude_deg": "44.625", + "longitude_deg": "-65.745", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Digby", + "scheduled_service": "no", + "local_code": "DV4" + }, + { + "id": "320293", + "ident": "CA-0603", + "type": "closed", + "name": "Homathko River Airport", + "latitude_deg": "50.9501", + "longitude_deg": "-124.8848", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Homathko River", + "scheduled_service": "no", + "local_code": "CBS2" + }, + { + "id": "320311", + "ident": "CA-0604", + "type": "heliport", + "name": "Stuart Lake Hospital Helipad", + "latitude_deg": "54.440705", + "longitude_deg": "-124.2424", + "elevation_ft": "2362", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Fort St. James", + "scheduled_service": "no", + "gps_code": "CFJ2", + "local_code": "CFJ2" + }, + { + "id": "320326", + "ident": "CA-0605", + "type": "closed", + "name": "Disraeli Inlet Water Aerodrome", + "latitude_deg": "82.75", + "longitude_deg": "-73", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Disraeli Inlet", + "scheduled_service": "no", + "local_code": "SW6" + }, + { + "id": "320327", + "ident": "CA-0606", + "type": "closed", + "name": "Flagg Cove Water Aerodrome", + "latitude_deg": "44.761", + "longitude_deg": "-66.753", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "North Head", + "scheduled_service": "no", + "local_code": "CH5" + }, + { + "id": "320334", + "ident": "CA-0607", + "type": "closed", + "name": "O'sullivan Lake Water Aerodrome", + "latitude_deg": "50.4333", + "longitude_deg": "-87.1167", + "elevation_ft": "962", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "local_code": "NK7" + }, + { + "id": "320336", + "ident": "CA-0608", + "type": "closed", + "name": "Evergreen Acres Airport", + "latitude_deg": "53.5133", + "longitude_deg": "-108.6653", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Turtle Lake", + "scheduled_service": "no", + "local_code": "KP7" + }, + { + "id": "320339", + "ident": "CA-0609", + "type": "small_airport", + "name": "Palestine Airport", + "latitude_deg": "44.490101", + "longitude_deg": "-78.977902", + "elevation_ft": "897", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kirkfield", + "scheduled_service": "no", + "gps_code": "CKP4", + "local_code": "CKP4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kirkfield_(Palestine)_Aerodrome" + }, + { + "id": "320343", + "ident": "CA-0610", + "type": "small_airport", + "name": "Lampman/Spitfire Air Airport", + "latitude_deg": "49.49", + "longitude_deg": "-102.882902", + "elevation_ft": "1967", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Lampman", + "scheduled_service": "no", + "gps_code": "CSF8", + "local_code": "CSF8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lampman/Spitfire_Air_Aerodrome" + }, + { + "id": "320379", + "ident": "CA-0611", + "type": "closed", + "name": "Holman Water Aerodrome", + "latitude_deg": "70.7347", + "longitude_deg": "-117.760401", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Ulukhaktok", + "scheduled_service": "no", + "local_code": "EH8" + }, + { + "id": "320420", + "ident": "CA-0612", + "type": "heliport", + "name": "Chrome Island Lightstation Helipad", + "latitude_deg": "49.471829", + "longitude_deg": "-124.684468", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Chrome Island", + "scheduled_service": "no", + "local_code": "AL2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chrome_Island_lighthouse" + }, + { + "id": "320421", + "ident": "CA-0613", + "type": "closed", + "name": "Jumping Cairbou Lake Water Aerodrome", + "latitude_deg": "46.88", + "longitude_deg": "-79.78", + "elevation_ft": "1033", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Temagami", + "scheduled_service": "no", + "local_code": "NP6" + }, + { + "id": "320440", + "ident": "CA-0614", + "type": "closed", + "name": "Wawa Lake Water Aerodrome", + "latitude_deg": "48", + "longitude_deg": "-84.760001", + "elevation_ft": "941", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Wawa", + "scheduled_service": "no", + "local_code": "NG8", + "keywords": "Michipicoten" + }, + { + "id": "320450", + "ident": "CA-0615", + "type": "closed", + "name": "Sundance Airport", + "latitude_deg": "53.526", + "longitude_deg": "-114.61", + "elevation_ft": "2415", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Wabamun Lake", + "scheduled_service": "no", + "local_code": "EG6", + "keywords": "Wabumun Lake, Wabamum Lake" + }, + { + "id": "320454", + "ident": "CA-0616", + "type": "closed", + "name": "St-Tite Airport", + "latitude_deg": "46.7156", + "longitude_deg": "-72.58702", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Tite", + "scheduled_service": "no", + "local_code": "SL7" + }, + { + "id": "320459", + "ident": "CA-0617", + "type": "closed", + "name": "Iqaluit Water Aerodrome", + "latitude_deg": "63.730001", + "longitude_deg": "-68.51", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Iqaluit", + "scheduled_service": "no", + "local_code": "SF7" + }, + { + "id": "320466", + "ident": "CA-0618", + "type": "closed", + "name": "Pinchgut Lake Water Aerodrome", + "latitude_deg": "48.817", + "longitude_deg": "-57.990001", + "elevation_ft": "614", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Pinchgut Lake", + "scheduled_service": "no", + "local_code": "CK5" + }, + { + "id": "320484", + "ident": "CA-0619", + "type": "closed", + "name": "Island Marina Water Aerodrome", + "latitude_deg": "45.4425", + "longitude_deg": "-77.6925", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Barry's Bay", + "scheduled_service": "no", + "local_code": "PC2" + }, + { + "id": "320487", + "ident": "CA-0620", + "type": "closed", + "name": "Blenheim Airport", + "latitude_deg": "42.28941", + "longitude_deg": "-81.99976", + "elevation_ft": "606", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Blenheim", + "scheduled_service": "no", + "keywords": "CPP3, PP3" + }, + { + "id": "320495", + "ident": "CA-0621", + "type": "heliport", + "name": "Cape Scott Lightstation Helipad", + "latitude_deg": "50.7819", + "longitude_deg": "-128.427504", + "elevation_ft": "207", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Vancouver Island", + "scheduled_service": "no", + "local_code": "AD2" + }, + { + "id": "320517", + "ident": "CA-0622", + "type": "closed", + "name": "Longstaff Bluff Water Aerodrome", + "latitude_deg": "68.91", + "longitude_deg": "-75.27", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Longstaff Bluff", + "scheduled_service": "no", + "local_code": "SV8" + }, + { + "id": "320518", + "ident": "CA-0623", + "type": "closed", + "name": "Miguasha Airport", + "latitude_deg": "48.0758", + "longitude_deg": "-66.282", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Miguasha", + "scheduled_service": "no", + "local_code": "SM2" + }, + { + "id": "320519", + "ident": "CA-0624", + "type": "closed", + "name": "Lac Pontbriand Water Aerodrome", + "latitude_deg": "46.051003", + "longitude_deg": "-73.78", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Rawdon", + "scheduled_service": "no", + "local_code": "SL8" + }, + { + "id": "320520", + "ident": "CA-0625", + "type": "closed", + "name": "Fort Vermilion Water Aerodrome", + "latitude_deg": "58.407203", + "longitude_deg": "-115.973601", + "elevation_ft": "817", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Fort Vermilion", + "scheduled_service": "no", + "local_code": "ED8" + }, + { + "id": "336889", + "ident": "CA-0626", + "type": "heliport", + "name": "Thousand Islands Helicopter Tours Helipad", + "latitude_deg": "44.347171", + "longitude_deg": "-76.175423", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Gananoque", + "scheduled_service": "no", + "home_link": "https://fly1000islands.ca/" + }, + { + "id": "320523", + "ident": "CA-0627", + "type": "closed", + "name": "Matagami Heliport", + "latitude_deg": "49.7534", + "longitude_deg": "-77.6626", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Matagami", + "scheduled_service": "no", + "keywords": "CTM6" + }, + { + "id": "320526", + "ident": "CA-0628", + "type": "closed", + "name": "Little Grand Rapids Water Aerodrome", + "latitude_deg": "52.036", + "longitude_deg": "-95.47", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Little Grand Rapids", + "scheduled_service": "no", + "local_code": "KB3" + }, + { + "id": "320541", + "ident": "CA-0629", + "type": "heliport", + "name": "Valleyview Health Centre Heliport", + "latitude_deg": "55.0675", + "longitude_deg": "-117.2718", + "elevation_ft": "2337", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Valleyview", + "scheduled_service": "no", + "gps_code": "CVV2", + "local_code": "CVV2" + }, + { + "id": "320560", + "ident": "CA-0630", + "type": "heliport", + "name": "Sisters Islets Lighthouse Helipad", + "latitude_deg": "49.486989", + "longitude_deg": "-124.435062", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Strait of Georgia", + "scheduled_service": "no", + "local_code": "BC5" + }, + { + "id": "320575", + "ident": "CA-0631", + "type": "closed", + "name": "Lac Boyer Water Aerodrome", + "latitude_deg": "47.937102", + "longitude_deg": "-77.3534", + "elevation_ft": "1077", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Val-d'Or", + "scheduled_service": "no", + "local_code": "SY7" + }, + { + "id": "320583", + "ident": "CA-0632", + "type": "closed", + "name": "Green Lake Water Aerodrome", + "latitude_deg": "54.27", + "longitude_deg": "-107.795", + "elevation_ft": "1493", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Green Lake", + "scheduled_service": "no", + "local_code": "JJ3" + }, + { + "id": "320585", + "ident": "CA-0633", + "type": "closed", + "name": "Calgary Broadcast House Helipad", + "latitude_deg": "51.0589", + "longitude_deg": "-114.171401", + "elevation_ft": "3963", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "no", + "keywords": "CFH2, Patina Rise SW, CFCN Radio and TV" + }, + { + "id": "320586", + "ident": "CA-0634", + "type": "closed", + "name": "Ethelda Bay Water Aerodrome", + "latitude_deg": "53.057", + "longitude_deg": "-129.677008", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Ethelda Bay", + "scheduled_service": "no", + "local_code": "AT6" + }, + { + "id": "320587", + "ident": "CA-0635", + "type": "small_airport", + "name": "Stouffville Airport", + "latitude_deg": "43.9931", + "longitude_deg": "-79.2674", + "elevation_ft": "972", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Whitchurch–Stouffville", + "scheduled_service": "no", + "gps_code": "CBB2", + "local_code": "CBB2" + }, + { + "id": "320594", + "ident": "CA-0636", + "type": "heliport", + "name": "Active Pass Lighthouse Heliport", + "latitude_deg": "48.8734", + "longitude_deg": "-123.2914", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Mayne Island", + "scheduled_service": "no", + "local_code": "AB2" + }, + { + "id": "320596", + "ident": "CA-0637", + "type": "closed", + "name": "Stornoway Airport", + "latitude_deg": "45.739983", + "longitude_deg": "-71.21865", + "elevation_ft": "1154", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Stornoway", + "scheduled_service": "no", + "local_code": "SM7" + }, + { + "id": "320597", + "ident": "CA-0638", + "type": "closed", + "name": "Louisville/Cascades Heliport", + "latitude_deg": "46.259103", + "longitude_deg": "-72.9511", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Louisville", + "scheduled_service": "no", + "keywords": "CSM7" + }, + { + "id": "320601", + "ident": "CA-0639", + "type": "closed", + "name": "Alexis Creek Airport", + "latitude_deg": "52.0632", + "longitude_deg": "-123.2585", + "elevation_ft": "2300", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Alexis Creek", + "scheduled_service": "no", + "local_code": "AL5" + }, + { + "id": "320604", + "ident": "CA-0640", + "type": "closed", + "name": "Stuart Lake Water Aerodrome", + "latitude_deg": "54.450003", + "longitude_deg": "-124.31", + "elevation_ft": "2240", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Fort St. James", + "scheduled_service": "no", + "local_code": "AV6" + }, + { + "id": "320605", + "ident": "CA-0641", + "type": "closed", + "name": "Kemano Bay Water Aerodrome", + "latitude_deg": "53.480001", + "longitude_deg": "-128.13", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kemano", + "scheduled_service": "no", + "local_code": "AM7" + }, + { + "id": "320608", + "ident": "CA-0642", + "type": "heliport", + "name": "Ivory Island Lightstation Helipad", + "latitude_deg": "52.271104", + "longitude_deg": "-128.405304", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Seaforth Channel", + "scheduled_service": "no", + "local_code": "BM2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ivory_Island" + }, + { + "id": "320615", + "ident": "CA-0643", + "type": "closed", + "name": "Bowden Airport", + "latitude_deg": "51.9832", + "longitude_deg": "-114.0115", + "elevation_ft": "3104", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Innisfail", + "scheduled_service": "no" + }, + { + "id": "320616", + "ident": "CA-0644", + "type": "closed", + "name": "Fort Coulonge Water Aerodrome", + "latitude_deg": "45.835", + "longitude_deg": "-76.752", + "elevation_ft": "345", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Fort-Coulonge", + "scheduled_service": "no", + "local_code": "SD7" + }, + { + "id": "320618", + "ident": "CA-0645", + "type": "closed", + "name": "Ethelda Bay Coast Guard Heliport", + "latitude_deg": "53.0536", + "longitude_deg": "-129.680003", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Ethelda Bay", + "scheduled_service": "no", + "local_code": "BN2", + "keywords": "CWTC" + }, + { + "id": "320619", + "ident": "CA-0646", + "type": "closed", + "name": "Selkirk Mountain Heliport", + "latitude_deg": "51.010905", + "longitude_deg": "-118.209501", + "elevation_ft": "1559", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Revelstoke", + "scheduled_service": "no", + "keywords": "BR9, CBR9" + }, + { + "id": "320620", + "ident": "CA-0647", + "type": "heliport", + "name": "Discovery Island Lightstation Helipad", + "latitude_deg": "48.4248", + "longitude_deg": "-123.225802", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Discovery Island", + "scheduled_service": "no", + "local_code": "BN3", + "keywords": "CWDR" + }, + { + "id": "320623", + "ident": "CA-0648", + "type": "closed", + "name": "Mary's Harbour Water Aerodrome", + "latitude_deg": "52.312", + "longitude_deg": "-55.827", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Mary's Harbour", + "scheduled_service": "no", + "local_code": "CG5" + }, + { + "id": "324907", + "ident": "CA-0649", + "type": "closed", + "name": "Sanikiluaq Water Aerodrome", + "latitude_deg": "56.545849", + "longitude_deg": "-79.230807", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Sanikiluaq", + "scheduled_service": "no", + "local_code": "SX9" + }, + { + "id": "320659", + "ident": "CA-0650", + "type": "closed", + "name": "Mount Lake Water Aerodrome", + "latitude_deg": "49.803502", + "longitude_deg": "-89.252", + "elevation_ft": "1024", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Mount Lake", + "scheduled_service": "no", + "local_code": "ND7" + }, + { + "id": "320660", + "ident": "CA-0651", + "type": "closed", + "name": "Northumberland Health Care Centre Helipap", + "latitude_deg": "43.9667", + "longitude_deg": "-78.286901", + "elevation_ft": "376", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Port Hope", + "scheduled_service": "no", + "local_code": "NB3" + }, + { + "id": "320666", + "ident": "CA-0652", + "type": "closed", + "name": "Malartic Airport", + "latitude_deg": "48.1551", + "longitude_deg": "-78.1412", + "elevation_ft": "1054", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Malartic", + "scheduled_service": "no", + "local_code": "SB2" + }, + { + "id": "320671", + "ident": "CA-0653", + "type": "small_airport", + "name": "Aviation PLMG Inc Airport", + "latitude_deg": "46.8844", + "longitude_deg": "-75.3329", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Ste-Anne-du-Lac", + "scheduled_service": "no", + "gps_code": "CAL8", + "local_code": "CAL8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sainte-Anne-du-Lac_(Aviation_PLMG_Inc.)_Aerodrome" + }, + { + "id": "320676", + "ident": "CA-0654", + "type": "closed", + "name": "St. Lina Airport", + "latitude_deg": "54.3014", + "longitude_deg": "-111.498901", + "elevation_ft": "2120", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "St. Lina", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Lina_Aerodrome", + "keywords": "CSL4" + }, + { + "id": "320694", + "ident": "CA-0655", + "type": "closed", + "name": "Quebec/Sûreté Heliport", + "latitude_deg": "46.834", + "longitude_deg": "-71.2841", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Quebec City", + "scheduled_service": "no", + "keywords": "SQ2, CSQ2" + }, + { + "id": "320695", + "ident": "CA-0656", + "type": "closed", + "name": "Lourdes-de-Blanc-Sablon Water Aerodrome", + "latitude_deg": "51.409004", + "longitude_deg": "-57.201", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Lourdes-de-Blanc", + "scheduled_service": "no", + "local_code": "SL6" + }, + { + "id": "320698", + "ident": "CA-0657", + "type": "closed", + "name": "Pointe-au-Chêne Water Aerodrome", + "latitude_deg": "45.640002", + "longitude_deg": "-74.75", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Pointe-au-Chêne", + "scheduled_service": "no", + "local_code": "TF2" + }, + { + "id": "320701", + "ident": "CA-0658", + "type": "closed", + "name": "Squamish Water Aerodrome", + "latitude_deg": "49.68", + "longitude_deg": "-123.165001", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Squamish", + "scheduled_service": "no", + "local_code": "AB9" + }, + { + "id": "320714", + "ident": "CA-0659", + "type": "closed", + "name": "Yahk Aerodrome", + "latitude_deg": "49.109", + "longitude_deg": "-116.0598", + "elevation_ft": "2870", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "320716", + "ident": "CA-0660", + "type": "heliport", + "name": "Bonilla Island Lightstation Helipad", + "latitude_deg": "53.492902", + "longitude_deg": "-130.6353", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Hecate Strait", + "scheduled_service": "no", + "local_code": "AC7", + "keywords": "CWVB" + }, + { + "id": "320723", + "ident": "CA-0661", + "type": "heliport", + "name": "Addenbroke Island Lightstation Helipad", + "latitude_deg": "51.6045", + "longitude_deg": "-127.863602", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Addenbroke Island", + "scheduled_service": "no", + "local_code": "CAK5", + "keywords": "CWCZ, Addenbrooke Island" + }, + { + "id": "320724", + "ident": "CA-0662", + "type": "closed", + "name": "Tsayta Lake Water Aerodrome", + "latitude_deg": "55.450345", + "longitude_deg": "-125.457764", + "elevation_ft": "2887", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Tsayta Lake", + "scheduled_service": "no", + "local_code": "AK9" + }, + { + "id": "320779", + "ident": "CA-0663", + "type": "closed", + "name": "Riviere-St-Maurice-Aviation-Mauricie-Seaplane-Base", + "latitude_deg": "46.654", + "longitude_deg": "-72.704", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Grand-Mére", + "scheduled_service": "no", + "local_code": "CMA3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rivi%C3%A8re_Saint-Maurice_(Aviation_Maurice)_Water_Aerodrome" + }, + { + "id": "320799", + "ident": "CA-0664", + "type": "closed", + "name": "Heli-Delta Helipad", + "latitude_deg": "49.1739", + "longitude_deg": "-122.951", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Vancouver", + "scheduled_service": "no", + "keywords": "BB3, CBB3, Pepsi bottling plant" + }, + { + "id": "320863", + "ident": "CA-0665", + "type": "closed", + "name": "Coutts Airport", + "latitude_deg": "49.09", + "longitude_deg": "-111.865", + "elevation_ft": "3290", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Coutts", + "scheduled_service": "no", + "local_code": "FJ2" + }, + { + "id": "350794", + "ident": "CA-0666", + "type": "heliport", + "name": "Ottawa / Questral Helicopters Heliport", + "latitude_deg": "45.29917", + "longitude_deg": "-75.5", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ottawa", + "scheduled_service": "no", + "local_code": "CQH2", + "home_link": "https://www.questralhelicopters.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Ottawa_area" + }, + { + "id": "320883", + "ident": "CA-0667", + "type": "closed", + "name": "Pincher Creek/Cooks Aerodrome", + "latitude_deg": "49.5163", + "longitude_deg": "-113.937", + "elevation_ft": "3725", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Pincher Creek", + "scheduled_service": "no" + }, + { + "id": "320884", + "ident": "CA-0668", + "type": "closed", + "name": "Wrentham", + "latitude_deg": "49.502", + "longitude_deg": "-112.108001", + "elevation_ft": "3105", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Wrentham", + "scheduled_service": "no" + }, + { + "id": "320885", + "ident": "CA-0669", + "type": "closed", + "name": "Purple Springs Airport", + "latitude_deg": "49.6877", + "longitude_deg": "-111.875202", + "elevation_ft": "2870", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Purple Springs", + "scheduled_service": "no", + "local_code": "FD6" + }, + { + "id": "320886", + "ident": "CA-0670", + "type": "closed", + "name": "Skiff Aerodrome", + "latitude_deg": "49.4995", + "longitude_deg": "-111.7829", + "elevation_ft": "2965", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Skiff", + "scheduled_service": "no" + }, + { + "id": "334397", + "ident": "CA-0671", + "type": "closed", + "name": "Ocean Pond Water Aerodrome", + "latitude_deg": "47.416", + "longitude_deg": "-53.4245", + "elevation_ft": "233", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Ocean Pond", + "scheduled_service": "no", + "local_code": "CJ5" + }, + { + "id": "324909", + "ident": "CA-0672", + "type": "closed", + "name": "Cape Dorset Water Aerodrome", + "latitude_deg": "64.2425", + "longitude_deg": "-76.524986", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Cape Dorset", + "scheduled_service": "no", + "local_code": "SQ6" + }, + { + "id": "320987", + "ident": "CA-0673", + "type": "closed", + "name": "Johns Island Airstrip", + "latitude_deg": "48.66713", + "longitude_deg": "-123.15274", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Friday Harbor", + "scheduled_service": "no" + }, + { + "id": "321302", + "ident": "CA-0674", + "type": "closed", + "name": "Bowron Lake Airport", + "latitude_deg": "53.255704", + "longitude_deg": "-121.42034", + "elevation_ft": "3000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Bowron Lake", + "scheduled_service": "no", + "local_code": "AK2" + }, + { + "id": "321385", + "ident": "CA-0675", + "type": "closed", + "name": "Geraldton Water Aerodrome", + "latitude_deg": "49.6963", + "longitude_deg": "-86.86", + "elevation_ft": "1086", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Geraldton", + "scheduled_service": "no", + "local_code": "NA6" + }, + { + "id": "321387", + "ident": "CA-0676", + "type": "closed", + "name": "McIntosh Lake Water Aerodrome", + "latitude_deg": "45.6711", + "longitude_deg": "-78.7717", + "elevation_ft": "1414", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Algonquin Provincial Park", + "scheduled_service": "no", + "local_code": "NA7" + }, + { + "id": "321389", + "ident": "CA-0677", + "type": "small_airport", + "name": "Intergalactic Aerodrome", + "latitude_deg": "49.020113", + "longitude_deg": "-122.732826", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Surrey", + "scheduled_service": "no", + "home_link": "https://www.facebook.com/Hazelmereairforce/", + "keywords": "Intergalactic Red Baron" + }, + { + "id": "321396", + "ident": "CA-0678", + "type": "closed", + "name": "Brussels/Van Keulen Field", + "latitude_deg": "43.7833", + "longitude_deg": "-81.195802", + "elevation_ft": "1118", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Brussels", + "scheduled_service": "no", + "local_code": "PD6" + }, + { + "id": "321422", + "ident": "CA-0679", + "type": "closed", + "name": "Gogama Airport", + "latitude_deg": "47.684536", + "longitude_deg": "-81.719822", + "elevation_ft": "1145", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Gogama", + "scheduled_service": "no", + "local_code": "PK4" + }, + { + "id": "321897", + "ident": "CA-0680", + "type": "closed", + "name": "Colonsay Airport", + "latitude_deg": "51.9683", + "longitude_deg": "-105.9067", + "elevation_ft": "1737", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Colonsay", + "scheduled_service": "no", + "local_code": "KH3", + "keywords": "Colonsay South" + }, + { + "id": "350875", + "ident": "CA-0681", + "type": "closed", + "name": "St. André-Avellin (Old Aerodrome)", + "latitude_deg": "45.802801", + "longitude_deg": "-75.054098", + "elevation_ft": "607", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St. André-Avellin", + "scheduled_service": "no", + "home_link": "https://www.elp.ca" + }, + { + "id": "323244", + "ident": "CA-0682", + "type": "small_airport", + "name": "Brechin / Skywagon City Airfield", + "latitude_deg": "44.569964", + "longitude_deg": "-79.233377", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Brechin", + "scheduled_service": "no" + }, + { + "id": "323245", + "ident": "CA-0683", + "type": "seaplane_base", + "name": "Brechin / Ronan Waterdrome", + "latitude_deg": "44.569697", + "longitude_deg": "-79.2237", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Brechin", + "scheduled_service": "no" + }, + { + "id": "323246", + "ident": "CA-0684", + "type": "small_airport", + "name": "Brechin / Ronan Airfield", + "latitude_deg": "44.571164", + "longitude_deg": "-79.225384", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Brechin", + "scheduled_service": "no", + "home_link": "http://www.dougronan.com/index.htm" + }, + { + "id": "324910", + "ident": "CA-0685", + "type": "closed", + "name": "Kuujjuaq Water Aerodrome", + "latitude_deg": "58.085", + "longitude_deg": "-68.4", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Kuujjuaq", + "scheduled_service": "no", + "local_code": "SQ7" + }, + { + "id": "324911", + "ident": "CA-0686", + "type": "closed", + "name": "La Romaine Water Aerodrome", + "latitude_deg": "50.21", + "longitude_deg": "-60.675", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "La Romaine", + "scheduled_service": "no", + "local_code": "SQ8" + }, + { + "id": "350933", + "ident": "CA-0687", + "type": "small_airport", + "name": "English Point Airport", + "latitude_deg": "51.49137", + "longitude_deg": "-56.89082", + "elevation_ft": "413", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "English Point", + "scheduled_service": "no" + }, + { + "id": "325127", + "ident": "CA-0688", + "type": "closed", + "name": "Amherst Airport", + "latitude_deg": "45.812972", + "longitude_deg": "-64.239019", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Amherst", + "scheduled_service": "no", + "local_code": "CQ4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amherst_Airport" + }, + { + "id": "325128", + "ident": "CA-0689", + "type": "closed", + "name": "Red Bay Water Aerodrome", + "latitude_deg": "51.725117", + "longitude_deg": "-56.440726", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Red Bay", + "scheduled_service": "no", + "local_code": "CP5" + }, + { + "id": "325129", + "ident": "CA-0690", + "type": "closed", + "name": "Big Harbour Aerodrome", + "latitude_deg": "46.142276", + "longitude_deg": "-60.634297", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Big Harbour", + "scheduled_service": "no", + "local_code": "CY5" + }, + { + "id": "325130", + "ident": "CA-0691", + "type": "closed", + "name": "Tatamagouche Airport", + "latitude_deg": "45.734393", + "longitude_deg": "-63.324875", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Tatamgouche", + "scheduled_service": "no", + "local_code": "DA2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tatamagouche_Airport" + }, + { + "id": "325133", + "ident": "CA-0692", + "type": "closed", + "name": "Baie Verte Water Aerodrome", + "latitude_deg": "49.93811", + "longitude_deg": "-56.177848", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Baie Verte", + "scheduled_service": "no", + "local_code": "DM4" + }, + { + "id": "325134", + "ident": "CA-0693", + "type": "closed", + "name": "Campbellton Water Aerodrome", + "latitude_deg": "48.018834", + "longitude_deg": "-66.630899", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Campbellton", + "scheduled_service": "no", + "local_code": "DN4" + }, + { + "id": "325135", + "ident": "CA-0694", + "type": "closed", + "name": "Cartwright Water Aerodrome", + "latitude_deg": "53.700893", + "longitude_deg": "-57.027136", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Cartwright", + "scheduled_service": "no", + "local_code": "DP4" + }, + { + "id": "325136", + "ident": "CA-0695", + "type": "closed", + "name": "Catalina Harbour Water Aerodrome", + "latitude_deg": "48.508475", + "longitude_deg": "-53.07021", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Catalina", + "scheduled_service": "no", + "local_code": "DQ4" + }, + { + "id": "325137", + "ident": "CA-0696", + "type": "closed", + "name": "Charlottetown Water Aerodrome", + "latitude_deg": "46.217852", + "longitude_deg": "-63.138428", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-PE", + "municipality": "Charlottetown", + "scheduled_service": "no", + "local_code": "DR4" + }, + { + "id": "325138", + "ident": "CA-0697", + "type": "closed", + "name": "Churchill Falls Water Aerodrome", + "latitude_deg": "53.515182", + "longitude_deg": "-63.988769", + "elevation_ft": "449", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Churchill Falls", + "scheduled_service": "no", + "local_code": "DS4" + }, + { + "id": "325139", + "ident": "CA-0698", + "type": "closed", + "name": "Dauphinee (Mill) Lake Water Aerodrome", + "latitude_deg": "44.647193", + "longitude_deg": "-64.09235", + "elevation_ft": "243", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Hubbards", + "scheduled_service": "no", + "local_code": "DT4" + }, + { + "id": "325172", + "ident": "CA-0699", + "type": "small_airport", + "name": "Bolton Lake Lodge Airstrip", + "latitude_deg": "54.220665", + "longitude_deg": "-95.766588", + "elevation_ft": "719", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Bolton Lake", + "scheduled_service": "no", + "home_link": "http://www.boltonlake.com/" + }, + { + "id": "325560", + "ident": "CA-0700", + "type": "closed", + "name": "Amaranth Airstrip", + "latitude_deg": "43.967869", + "longitude_deg": "-80.225381", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no" + }, + { + "id": "325568", + "ident": "CA-0701", + "type": "closed", + "name": "New Richmond Airport", + "latitude_deg": "48.175468", + "longitude_deg": "-65.894721", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "New Richmond", + "scheduled_service": "no" + }, + { + "id": "325579", + "ident": "CA-0702", + "type": "closed", + "name": "Hopewell Airport", + "latitude_deg": "45.474036", + "longitude_deg": "-62.716645", + "elevation_ft": "402", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Hopewell", + "scheduled_service": "no", + "local_code": "CF3" + }, + { + "id": "325581", + "ident": "CA-0703", + "type": "closed", + "name": "RCAF Maitland", + "latitude_deg": "45.324905", + "longitude_deg": "-63.53312", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Maitland", + "scheduled_service": "no" + }, + { + "id": "325583", + "ident": "CA-0704", + "type": "closed", + "name": "RCAF Scoudouc", + "latitude_deg": "46.171629", + "longitude_deg": "-64.588525", + "elevation_ft": "156", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Scoudouc", + "scheduled_service": "no" + }, + { + "id": "325588", + "ident": "CA-0705", + "type": "closed", + "name": "Havre Aubert Airport", + "latitude_deg": "47.223818", + "longitude_deg": "-61.828659", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Les Îles-de-la-Madeleine", + "scheduled_service": "no" + }, + { + "id": "325589", + "ident": "CA-0706", + "type": "closed", + "name": "Tabusintac Airport", + "latitude_deg": "47.343646", + "longitude_deg": "-65.041308", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Tabusintac", + "scheduled_service": "no", + "local_code": "CG2" + }, + { + "id": "334399", + "ident": "CA-0707", + "type": "closed", + "name": "Petitot Airport", + "latitude_deg": "59.719703", + "longitude_deg": "-121.844599", + "elevation_ft": "1558", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "local_code": "BV6" + }, + { + "id": "329455", + "ident": "CA-0708", + "type": "small_airport", + "name": "Fawcettville Airfield", + "latitude_deg": "44.034448", + "longitude_deg": "-77.147112", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Prince Edward", + "scheduled_service": "no" + }, + { + "id": "335145", + "ident": "CA-0709", + "type": "small_airport", + "name": "Unknown Rural MB Airport", + "latitude_deg": "50.052196", + "longitude_deg": "-96.834781", + "elevation_ft": "771", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "East Selkirk", + "scheduled_service": "no" + }, + { + "id": "330619", + "ident": "CA-0710", + "type": "small_airport", + "name": "Lambton Airport", + "latitude_deg": "45.83345", + "longitude_deg": "-71.101641", + "elevation_ft": "1081", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Lambton", + "scheduled_service": "no" + }, + { + "id": "330620", + "ident": "CA-0711", + "type": "closed", + "name": "Saint Germain Airport", + "latitude_deg": "45.849246", + "longitude_deg": "-72.572003", + "elevation_ft": "298", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Saint Germain", + "scheduled_service": "no", + "local_code": "ST4" + }, + { + "id": "337171", + "ident": "CA-0712", + "type": "small_airport", + "name": "Pine Point Airfield", + "latitude_deg": "44.155585", + "longitude_deg": "-78.864863", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Port Perry", + "scheduled_service": "no" + }, + { + "id": "337678", + "ident": "CA-0713", + "type": "heliport", + "name": "Hinton/Highland Helicopters Heliport", + "latitude_deg": "53.40693", + "longitude_deg": "-117.57818", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Hinton", + "scheduled_service": "no" + }, + { + "id": "337679", + "ident": "CA-0714", + "type": "heliport", + "name": "Hinton/Yellowhead Helicopters Heliport", + "latitude_deg": "53.35121", + "longitude_deg": "-117.66336", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Hinton", + "scheduled_service": "no" + }, + { + "id": "337680", + "ident": "CA-0715", + "type": "heliport", + "name": "Lake Louise Heliport", + "latitude_deg": "51.43289", + "longitude_deg": "-116.18716", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Lake Louise", + "scheduled_service": "no" + }, + { + "id": "337717", + "ident": "CA-0716", + "type": "closed", + "name": "Tecumseh Airfield", + "latitude_deg": "42.19457", + "longitude_deg": "-82.89456", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Tecumseh", + "scheduled_service": "no" + }, + { + "id": "338032", + "ident": "CA-0717", + "type": "closed", + "name": "Aguanish Landing Strip", + "latitude_deg": "50.23537", + "longitude_deg": "-62.13373", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Aguanish", + "scheduled_service": "no" + }, + { + "id": "338033", + "ident": "CA-0718", + "type": "small_airport", + "name": "Rivière-au-Tonnerre Airport", + "latitude_deg": "50.27711", + "longitude_deg": "-64.75477", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Rivière-au-Tonnerre", + "scheduled_service": "no", + "local_code": "YTN" + }, + { + "id": "338035", + "ident": "CA-0719", + "type": "closed", + "name": "Sept-Îles/Lac des Rapides Airport", + "latitude_deg": "50.29762", + "longitude_deg": "-66.40896", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Sept-Îles", + "scheduled_service": "no" + }, + { + "id": "338036", + "ident": "CA-0720", + "type": "small_airport", + "name": "Les Escoumins Airport", + "latitude_deg": "48.37033", + "longitude_deg": "-69.39992", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Les Escoumins", + "scheduled_service": "no" + }, + { + "id": "339330", + "ident": "CA-0721", + "type": "heliport", + "name": "Westville Community Helipad", + "latitude_deg": "45.553479", + "longitude_deg": "-62.702451", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Westville", + "scheduled_service": "no" + }, + { + "id": "339331", + "ident": "CA-0722", + "type": "heliport", + "name": "Cumberland Regional Health Care Centre Heliport", + "latitude_deg": "45.80319", + "longitude_deg": "-64.19657", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Amherst", + "scheduled_service": "no" + }, + { + "id": "339332", + "ident": "CA-0723", + "type": "closed", + "name": "Highland View Regional Hospital Heliport", + "latitude_deg": "45.82835", + "longitude_deg": "-64.19407", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Amherst", + "scheduled_service": "no" + }, + { + "id": "339545", + "ident": "CA-0724", + "type": "heliport", + "name": "Canadian Coast Guard Base Sea Island Heliport", + "latitude_deg": "49.181066", + "longitude_deg": "-123.184119", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Richmond", + "scheduled_service": "no" + }, + { + "id": "339546", + "ident": "CA-0725", + "type": "heliport", + "name": "Vancouver (HMCS Discovery) Heliport", + "latitude_deg": "49.29437", + "longitude_deg": "-123.12346", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Vancouver", + "scheduled_service": "no" + }, + { + "id": "339547", + "ident": "CA-0726", + "type": "heliport", + "name": "Belcarra (Jug Island Trail) Heliport", + "latitude_deg": "49.323835", + "longitude_deg": "-122.920291", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Belcarra", + "scheduled_service": "no" + }, + { + "id": "339548", + "ident": "CA-0727", + "type": "heliport", + "name": "Squamish General Hospital Heliport", + "latitude_deg": "49.69705", + "longitude_deg": "-123.1419", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Squamish", + "scheduled_service": "no" + }, + { + "id": "339549", + "ident": "CA-0728", + "type": "heliport", + "name": "Stawamus Chief Emergency Helipad", + "latitude_deg": "49.67982", + "longitude_deg": "-123.14498", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Squamish", + "scheduled_service": "no" + }, + { + "id": "339550", + "ident": "CA-0729", + "type": "heliport", + "name": "Squamish Terminals Heliport", + "latitude_deg": "49.68392", + "longitude_deg": "-123.17314", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Squamish", + "scheduled_service": "no" + }, + { + "id": "339551", + "ident": "CA-0730", + "type": "heliport", + "name": "Squamish (Woodfibre) Heliport", + "latitude_deg": "49.66441", + "longitude_deg": "-123.25656", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Squamish", + "scheduled_service": "no" + }, + { + "id": "339718", + "ident": "CA-0731", + "type": "small_airport", + "name": "Fort Smith (Four Mile Lake) Water Aerodrome", + "latitude_deg": "59.946674", + "longitude_deg": "-111.859757", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Fort Smith", + "scheduled_service": "no" + }, + { + "id": "341397", + "ident": "CA-0732", + "type": "seaplane_base", + "name": "Sechelt/Poise Cove Waterdrome", + "latitude_deg": "49.49062", + "longitude_deg": "-123.75212", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Sechelt", + "scheduled_service": "no" + }, + { + "id": "342377", + "ident": "CA-0733", + "type": "heliport", + "name": "Nanisivik Naval Facility Heliport", + "latitude_deg": "73.06957", + "longitude_deg": "-84.55432", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Nanisivik", + "scheduled_service": "no" + }, + { + "id": "342503", + "ident": "CA-0734", + "type": "closed", + "name": "Netley Field", + "latitude_deg": "50.36742", + "longitude_deg": "-96.99156", + "elevation_ft": "741", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Netley", + "scheduled_service": "no", + "keywords": "Service Flying Training School No. 18 Relief Landing Field" + }, + { + "id": "342504", + "ident": "CA-0735", + "type": "closed", + "name": "Pigeon River Airport", + "latitude_deg": "52.21261", + "longitude_deg": "-96.95954", + "elevation_ft": "722", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Asinkaanumevatt", + "scheduled_service": "no" + }, + { + "id": "342505", + "ident": "CA-0736", + "type": "small_airport", + "name": "Keeyask Airstrip", + "latitude_deg": "56.33022", + "longitude_deg": "-95.24517", + "elevation_ft": "509", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Gillam", + "scheduled_service": "no" + }, + { + "id": "342506", + "ident": "CA-0737", + "type": "small_airport", + "name": "Seal River Airstrip", + "latitude_deg": "59.154598", + "longitude_deg": "-94.785554", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Churchill", + "scheduled_service": "no" + }, + { + "id": "342507", + "ident": "CA-0738", + "type": "small_airport", + "name": "Nester One Airstrip", + "latitude_deg": "58.6529", + "longitude_deg": "-93.19061", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Churchill", + "scheduled_service": "no" + }, + { + "id": "342509", + "ident": "CA-0739", + "type": "small_airport", + "name": "Dale Air Services Airport", + "latitude_deg": "49.33455", + "longitude_deg": "-97.3089", + "elevation_ft": "781", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Montcalm", + "scheduled_service": "no" + }, + { + "id": "342759", + "ident": "CA-0740", + "type": "heliport", + "name": "Lax Kw'alaams Heliport", + "latitude_deg": "54.55985", + "longitude_deg": "-130.42957", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Lax Kw'alaams", + "scheduled_service": "no" + }, + { + "id": "342760", + "ident": "CA-0741", + "type": "heliport", + "name": "Kitkatla Heliport", + "latitude_deg": "53.79515", + "longitude_deg": "-130.42563", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kitkatla", + "scheduled_service": "no" + }, + { + "id": "342761", + "ident": "CA-0742", + "type": "heliport", + "name": "Hartley Bay Heliport", + "latitude_deg": "53.4253", + "longitude_deg": "-129.25036", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Hartley Bay", + "scheduled_service": "no" + }, + { + "id": "343997", + "ident": "CA-0743", + "type": "small_airport", + "name": "Upper Stewart River Airport", + "latitude_deg": "64.03926", + "longitude_deg": "-132.28621", + "elevation_ft": "2720", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Nacho Nyak Dun First Nation", + "scheduled_service": "no" + }, + { + "id": "344260", + "ident": "CA-0744", + "type": "closed", + "name": "Woodhouse Airfield", + "latitude_deg": "49.99075", + "longitude_deg": "-113.44735", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Claresholm", + "scheduled_service": "no" + }, + { + "id": "344276", + "ident": "CA-0745", + "type": "closed", + "name": "Union Centre Airport", + "latitude_deg": "45.52795", + "longitude_deg": "-62.75983", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Westville", + "scheduled_service": "no" + }, + { + "id": "345138", + "ident": "CA-0746", + "type": "heliport", + "name": "Tofino Lifeboat Station Heliport", + "latitude_deg": "49.15472", + "longitude_deg": "-125.90805", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Tofino", + "scheduled_service": "no" + }, + { + "id": "345144", + "ident": "CA-0747", + "type": "heliport", + "name": "CFB Esquimalt - Colwood Heliport", + "latitude_deg": "48.44815", + "longitude_deg": "-123.45418", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Colwood", + "scheduled_service": "no" + }, + { + "id": "345754", + "ident": "CA-0748", + "type": "heliport", + "name": "Mount Lady MacDonald Teahouse Helipad", + "latitude_deg": "51.1145", + "longitude_deg": "-115.3176", + "elevation_ft": "7487", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Canmore", + "scheduled_service": "no" + }, + { + "id": "345967", + "ident": "CA-0749", + "type": "heliport", + "name": "Mount Shark Heliport", + "latitude_deg": "50.86053", + "longitude_deg": "-115.36601", + "elevation_ft": "5932", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Kananaskis", + "scheduled_service": "no" + }, + { + "id": "346520", + "ident": "CA-0750", + "type": "small_airport", + "name": "Indian Creek Field", + "latitude_deg": "45.399165", + "longitude_deg": "-75.260993", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Cheney", + "scheduled_service": "no" + }, + { + "id": "347479", + "ident": "CA-0751", + "type": "heliport", + "name": "Burnt Point Lighthouse Helipad", + "latitude_deg": "49.60179", + "longitude_deg": "-54.15794", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Seldom", + "scheduled_service": "no" + }, + { + "id": "347480", + "ident": "CA-0752", + "type": "heliport", + "name": "Offer Wadham Lighthouse Helipad", + "latitude_deg": "49.59359", + "longitude_deg": "-53.76305", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Offer Wadham Island", + "scheduled_service": "no" + }, + { + "id": "347514", + "ident": "CA-0753", + "type": "closed", + "name": "Border Beacon Airstrip", + "latitude_deg": "55.333001", + "longitude_deg": "-63.204346", + "elevation_ft": "1525", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Ashuapun", + "scheduled_service": "no" + }, + { + "id": "347516", + "ident": "CA-0754", + "type": "closed", + "name": "Cape Harrison Airstrip", + "latitude_deg": "54.769627", + "longitude_deg": "-58.436923", + "elevation_ft": "181", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Lucyville", + "scheduled_service": "no" + }, + { + "id": "347517", + "ident": "CA-0755", + "type": "closed", + "name": "North West River Airstrip", + "latitude_deg": "53.526827", + "longitude_deg": "-60.137701", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "North West River", + "scheduled_service": "no" + }, + { + "id": "347518", + "ident": "CA-0756", + "type": "closed", + "name": "Mile 236 Airstrip", + "latitude_deg": "53.561367", + "longitude_deg": "-66.341822", + "elevation_ft": "1675", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "scheduled_service": "no" + }, + { + "id": "347608", + "ident": "CA-0757", + "type": "heliport", + "name": "Musquodoboit Valley Memorial Hospital Heliport", + "latitude_deg": "45.04049", + "longitude_deg": "-63.14096", + "elevation_ft": "112", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Halifax", + "scheduled_service": "no" + }, + { + "id": "348820", + "ident": "CA-0758", + "type": "seaplane_base", + "name": "Ferme-Neuve Seaplane Base", + "latitude_deg": "46.69504", + "longitude_deg": "-75.46043", + "elevation_ft": "702", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Ferme-Neuve", + "scheduled_service": "no" + }, + { + "id": "348848", + "ident": "CA-0759", + "type": "small_airport", + "name": "Smooth Rock Falls Airport", + "latitude_deg": "49.26123", + "longitude_deg": "-81.6641", + "elevation_ft": "778", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Smooth Rock Falls", + "scheduled_service": "no" + }, + { + "id": "348849", + "ident": "CA-0760", + "type": "small_airport", + "name": "Dubreuilville Airport", + "latitude_deg": "48.37395", + "longitude_deg": "-84.52629", + "elevation_ft": "1119", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Dubreuilville", + "scheduled_service": "no" + }, + { + "id": "348858", + "ident": "CA-0761", + "type": "small_airport", + "name": "Nipigon Airport", + "latitude_deg": "49.01473", + "longitude_deg": "-88.32885", + "elevation_ft": "938", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Nipigon", + "scheduled_service": "no" + }, + { + "id": "349090", + "ident": "CA-0762", + "type": "closed", + "name": "Waubuno Airport", + "latitude_deg": "42.78714", + "longitude_deg": "-82.3661", + "elevation_ft": "627", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Brigden", + "scheduled_service": "no" + }, + { + "id": "349096", + "ident": "CA-0763", + "type": "seaplane_base", + "name": "Egmont Waterdrome", + "latitude_deg": "49.75086", + "longitude_deg": "-123.92782", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Egmont", + "scheduled_service": "no" + }, + { + "id": "349097", + "ident": "CA-0764", + "type": "seaplane_base", + "name": "Halfmoon Bay Seaplane Base", + "latitude_deg": "49.51056", + "longitude_deg": "-123.91295", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Halfmoon Bay", + "scheduled_service": "no" + }, + { + "id": "349098", + "ident": "CA-0765", + "type": "seaplane_base", + "name": "Earls Cove Seaplane Base", + "latitude_deg": "49.75353", + "longitude_deg": "-124.00871", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Madeira Park", + "scheduled_service": "no" + }, + { + "id": "349099", + "ident": "CA-0766", + "type": "seaplane_base", + "name": "Saltery Bay Seaplane Base", + "latitude_deg": "49.78122", + "longitude_deg": "-124.17746", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Powell River", + "scheduled_service": "no" + }, + { + "id": "349134", + "ident": "CA-0767", + "type": "heliport", + "name": "Purcell Heli Skiing Heliport", + "latitude_deg": "51.30236", + "longitude_deg": "-116.93991", + "elevation_ft": "3084", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Golden", + "scheduled_service": "no" + }, + { + "id": "349135", + "ident": "CA-0768", + "type": "small_airport", + "name": "Thunder Hill Airport", + "latitude_deg": "50.18887", + "longitude_deg": "-115.85229", + "elevation_ft": "2792", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "East Kootenay", + "scheduled_service": "no" + }, + { + "id": "349136", + "ident": "CA-0769", + "type": "small_airport", + "name": "Canal Flats Airport", + "latitude_deg": "50.16308", + "longitude_deg": "-115.82857", + "elevation_ft": "2667", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Canal Flats", + "scheduled_service": "no" + }, + { + "id": "349141", + "ident": "CA-0770", + "type": "heliport", + "name": "Elkford Health Centre Heliport", + "latitude_deg": "50.020642", + "longitude_deg": "-114.917336", + "elevation_ft": "4131", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Elkford", + "scheduled_service": "no" + }, + { + "id": "349351", + "ident": "CA-0771", + "type": "small_airport", + "name": "Arctic Watch Lodge Airport", + "latitude_deg": "74.065757", + "longitude_deg": "-93.785965", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Somerset Island", + "scheduled_service": "no", + "gps_code": "CRW4", + "local_code": "RW4" + }, + { + "id": "46513", + "ident": "CA-0772", + "type": "closed", + "name": "Shuswap (Skwlax Field) Airport", + "latitude_deg": "50.878669", + "longitude_deg": "-119.590816", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no" + }, + { + "id": "350934", + "ident": "CA-0773", + "type": "small_airport", + "name": "Red Bay Airport", + "latitude_deg": "51.73592", + "longitude_deg": "-56.42469", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Red Bay", + "scheduled_service": "no" + }, + { + "id": "351052", + "ident": "CA-0774", + "type": "closed", + "name": "Keats Point Airport", + "latitude_deg": "69.677263", + "longitude_deg": "-121.684785", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/North_Warning_System#Keats_Point", + "keywords": "CWKP" + }, + { + "id": "351222", + "ident": "CA-0775", + "type": "closed", + "name": "Rutherford Airport", + "latitude_deg": "42.63999", + "longitude_deg": "-82.13083", + "elevation_ft": "613", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Dresden", + "scheduled_service": "no" + }, + { + "id": "351223", + "ident": "CA-0776", + "type": "closed", + "name": "Tramway Road Airport", + "latitude_deg": "42.68076", + "longitude_deg": "-82.16329", + "elevation_ft": "643", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Dresden", + "scheduled_service": "no" + }, + { + "id": "351920", + "ident": "CA-0777", + "type": "closed", + "name": "Storm Hills NWS Station", + "latitude_deg": "68.894167", + "longitude_deg": "-133.941944", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no" + }, + { + "id": "351955", + "ident": "CA-0778", + "type": "closed", + "name": "Cape Peel DEW Line Station", + "latitude_deg": "69.044722", + "longitude_deg": "-107.325833", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Cape Peel", + "scheduled_service": "no" + }, + { + "id": "351993", + "ident": "CA-0779", + "type": "closed", + "name": "Hat Island DEW Line Station", + "latitude_deg": "68.308304", + "longitude_deg": "-100.063132", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Putulik", + "scheduled_service": "no" + }, + { + "id": "352595", + "ident": "CA-0780", + "type": "small_airport", + "name": "Wabash Airport", + "latitude_deg": "42.57107", + "longitude_deg": "-82.05366", + "elevation_ft": "614", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Thamesville", + "scheduled_service": "no" + }, + { + "id": "352855", + "ident": "CA-0781", + "type": "closed", + "name": "Howard Airport", + "latitude_deg": "42.444", + "longitude_deg": "-81.92843", + "elevation_ft": "653", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ridgetown", + "scheduled_service": "no" + }, + { + "id": "352856", + "ident": "CA-0782", + "type": "small_airport", + "name": "Merlin Airport", + "latitude_deg": "42.21275", + "longitude_deg": "-82.23181", + "elevation_ft": "633", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Chatham-Kent", + "scheduled_service": "no" + }, + { + "id": "352857", + "ident": "CA-0783", + "type": "closed", + "name": "Old Colony Airport", + "latitude_deg": "42.1412", + "longitude_deg": "-82.43519", + "elevation_ft": "607", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Wheatley", + "scheduled_service": "no" + }, + { + "id": "354378", + "ident": "CA-0784", + "type": "small_airport", + "name": "Chilanko Lodge", + "latitude_deg": "51.957371", + "longitude_deg": "-124.885969", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kleena Kleene", + "scheduled_service": "no", + "local_code": "CBX3" + }, + { + "id": "354380", + "ident": "CA-0785", + "type": "small_airport", + "name": "Long Harbour Airport", + "latitude_deg": "48.858482", + "longitude_deg": "-123.47487", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Long Harbour", + "scheduled_service": "no", + "local_code": "CLH3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Long_Harbour_Aerodrome" + }, + { + "id": "355074", + "ident": "CA-0786", + "type": "small_airport", + "name": "Bonnechere Soaring Aerodrome", + "latitude_deg": "46.063101", + "longitude_deg": "-77.487147", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Deep River", + "scheduled_service": "no", + "home_link": "http://www.sac.ca/index.php/fr/component/gmapfp/22:bonnechere-soaring?tmpl=component" + }, + { + "id": "355108", + "ident": "CA-0787", + "type": "balloonport", + "name": "High River Balloonport", + "latitude_deg": "50.59078", + "longitude_deg": "-113.87326", + "elevation_ft": "3389", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "High River", + "scheduled_service": "no" + }, + { + "id": "355465", + "ident": "CA-0788", + "type": "small_airport", + "name": "Rivers Inlet Airport", + "latitude_deg": "51.683639", + "longitude_deg": "-127.185741", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Oweekeno", + "scheduled_service": "no" + }, + { + "id": "355466", + "ident": "CA-0789", + "type": "seaplane_base", + "name": "Great Bear Lodge Water Aerodrome", + "latitude_deg": "51.374089", + "longitude_deg": "-127.123828", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Smith Inlet", + "scheduled_service": "no" + }, + { + "id": "355467", + "ident": "CA-0790", + "type": "small_airport", + "name": "Koidern Airport", + "latitude_deg": "61.986455", + "longitude_deg": "-140.485717", + "elevation_ft": "2241", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Koidern", + "scheduled_service": "no" + }, + { + "id": "355468", + "ident": "CA-0791", + "type": "small_airport", + "name": "Discovery Yukon Airport", + "latitude_deg": "61.983589", + "longitude_deg": "-140.536304", + "elevation_ft": "2281", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Koidern", + "scheduled_service": "no" + }, + { + "id": "355512", + "ident": "CA-0792", + "type": "closed", + "name": "Kitchner Lake Water Aerodrome", + "latitude_deg": "57.052681", + "longitude_deg": "-127.43454", + "elevation_ft": "4321", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Tatlatui Provincial Park", + "scheduled_service": "no", + "local_code": "AN7", + "home_link": "https://www.brmbmaps.com/explore/canada/british-columbia/tatlatui-provincial-park/kitchener-lake-cabin/70334", + "keywords": "AN7" + }, + { + "id": "355514", + "ident": "CA-0793", + "type": "small_airport", + "name": "Clyak River Airport", + "latitude_deg": "51.885622", + "longitude_deg": "-127.353264", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Rivers Inlet", + "scheduled_service": "no" + }, + { + "id": "355515", + "ident": "CA-0794", + "type": "heliport", + "name": "Butedale Heliport", + "latitude_deg": "53.159821", + "longitude_deg": "-128.694692", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Butedale", + "scheduled_service": "no" + }, + { + "id": "355516", + "ident": "CA-0795", + "type": "heliport", + "name": "Metlakatla Heliport", + "latitude_deg": "54.336063", + "longitude_deg": "-130.442047", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Metlakatla", + "scheduled_service": "no" + }, + { + "id": "355521", + "ident": "CA-0796", + "type": "small_airport", + "name": "Caribou Crossing Trading Post Airport", + "latitude_deg": "60.197211", + "longitude_deg": "-134.704924", + "elevation_ft": "2251", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Carcross", + "scheduled_service": "no" + }, + { + "id": "355522", + "ident": "CA-0797", + "type": "small_airport", + "name": "Hootalinqua Ranch Airport", + "latitude_deg": "60.301064", + "longitude_deg": "-134.77536", + "elevation_ft": "2382", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Carcross", + "scheduled_service": "no" + }, + { + "id": "355523", + "ident": "CA-0798", + "type": "small_airport", + "name": "Carcross Cutoff Airport", + "latitude_deg": "60.609579", + "longitude_deg": "-134.795256", + "elevation_ft": "2282", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Whitehorse", + "scheduled_service": "no" + }, + { + "id": "355727", + "ident": "CA-0799", + "type": "closed", + "name": "Boissevain Aerodrome", + "latitude_deg": "49.25", + "longitude_deg": "-100.066667", + "elevation_ft": "1644", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Boissevain", + "scheduled_service": "no", + "local_code": "JA4", + "keywords": "JA4" + }, + { + "id": "356280", + "ident": "CA-0800", + "type": "closed", + "name": "Girwood Island Water Aerodrome", + "latitude_deg": "45.419224", + "longitude_deg": "-73.978028", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Senneville", + "scheduled_service": "no", + "local_code": "SJ7" + }, + { + "id": "429872", + "ident": "CA-0801", + "type": "heliport", + "name": "Kamloops RCMP Helipad", + "latitude_deg": "50.655236", + "longitude_deg": "-120.366222", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kamloops", + "scheduled_service": "no" + }, + { + "id": "429873", + "ident": "CA-0802", + "type": "heliport", + "name": "Kamloops RCMP Helipad", + "latitude_deg": "50.655236", + "longitude_deg": "-120.366222", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kamloops", + "scheduled_service": "no" + }, + { + "id": "429874", + "ident": "CA-0803", + "type": "heliport", + "name": "Kamloops RCMP Helipad", + "latitude_deg": "50.655236", + "longitude_deg": "-120.366222", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kamloops", + "scheduled_service": "no" + }, + { + "id": "429973", + "ident": "CA-0804", + "type": "small_airport", + "name": "Crowdis Mountain Airstrip", + "latitude_deg": "46.22261", + "longitude_deg": "-60.80847", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Baddeck", + "scheduled_service": "no" + }, + { + "id": "429974", + "ident": "CA-0805", + "type": "heliport", + "name": "La Cormorandière Heliport", + "latitude_deg": "47.28771", + "longitude_deg": "-61.68914", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "L'Île-d’Entrée", + "scheduled_service": "no" + }, + { + "id": "429975", + "ident": "CA-0806", + "type": "heliport", + "name": "Ramea Heliport", + "latitude_deg": "47.52803", + "longitude_deg": "-57.38977", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Ramea", + "scheduled_service": "no" + }, + { + "id": "429976", + "ident": "CA-0807", + "type": "heliport", + "name": "François Heliport", + "latitude_deg": "47.58167", + "longitude_deg": "-56.74581", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "François", + "scheduled_service": "no" + }, + { + "id": "429977", + "ident": "CA-0808", + "type": "heliport", + "name": "Grey River Heliport", + "latitude_deg": "47.58933", + "longitude_deg": "-57.09913", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Grey River", + "scheduled_service": "no" + }, + { + "id": "429978", + "ident": "CA-0809", + "type": "closed", + "name": "Saint Georges Airstrip", + "latitude_deg": "48.449514", + "longitude_deg": "-58.426366", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Saint Georges", + "scheduled_service": "no" + }, + { + "id": "430046", + "ident": "CA-0810", + "type": "small_airport", + "name": "Kamloops Model Airplane Society Airstrip", + "latitude_deg": "50.840558", + "longitude_deg": "-120.268223", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kamloops", + "scheduled_service": "no" + }, + { + "id": "430047", + "ident": "CA-0811", + "type": "small_airport", + "name": "Michell Airpark", + "latitude_deg": "48.5658", + "longitude_deg": "-123.391178", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Victoria", + "scheduled_service": "no" + }, + { + "id": "430048", + "ident": "CA-0812", + "type": "small_airport", + "name": "One Hundred Mile Model Flyers", + "latitude_deg": "51.619397", + "longitude_deg": "-121.315198", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "One Hundred Mile House", + "scheduled_service": "no" + }, + { + "id": "430049", + "ident": "CA-0813", + "type": "small_airport", + "name": "Kelowna Ogopogo Radio Controllers", + "latitude_deg": "50.040422", + "longitude_deg": "-119.394365", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kelowna", + "scheduled_service": "no" + }, + { + "id": "430257", + "ident": "CA-0814", + "type": "small_airport", + "name": "Brébeuf Airport", + "latitude_deg": "48.39487", + "longitude_deg": "-66.38389", + "elevation_ft": "1923", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Nouvelle-Ouest", + "scheduled_service": "no" + }, + { + "id": "430490", + "ident": "CA-0815", + "type": "small_airport", + "name": "Nuskenford Airstrip", + "latitude_deg": "69.863861", + "longitude_deg": "-126.843167", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Nuskenford", + "scheduled_service": "no" + }, + { + "id": "430595", + "ident": "CA-0816", + "type": "heliport", + "name": "Valleyview Forestry Base", + "latitude_deg": "55.02366", + "longitude_deg": "-117.3245", + "elevation_ft": "2451", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Valleyview", + "scheduled_service": "no" + }, + { + "id": "43086", + "ident": "CA-CAB5", + "type": "heliport", + "name": "Abbotsford (Regional Hospital & Cancer Centre) Heliport", + "latitude_deg": "49.0361500085", + "longitude_deg": "-122.314048558", + "elevation_ft": "287", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Abbotsford", + "scheduled_service": "no", + "gps_code": "CAB5", + "local_code": "CAB5" + }, + { + "id": "16531", + "ident": "CA00", + "type": "heliport", + "name": "Platform Hermosa Heliport", + "latitude_deg": "34.455299377441406", + "longitude_deg": "-120.64700317382812", + "elevation_ft": "152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lompoc", + "scheduled_service": "no", + "gps_code": "CA00", + "local_code": "CA00" + }, + { + "id": "16532", + "ident": "CA01", + "type": "heliport", + "name": "Burney Sheriff's Station Heliport", + "latitude_deg": "40.885121", + "longitude_deg": "-121.669368", + "elevation_ft": "3127", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Burney", + "scheduled_service": "no", + "gps_code": "CA01", + "local_code": "CA01" + }, + { + "id": "16533", + "ident": "CA02", + "type": "closed", + "name": "Patterson Airport", + "latitude_deg": "37.468488", + "longitude_deg": "-121.16927", + "elevation_ft": "168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Patterson", + "scheduled_service": "no", + "keywords": "CA02" + }, + { + "id": "16534", + "ident": "CA03", + "type": "small_airport", + "name": "Flying M Airport", + "latitude_deg": "37.36167", + "longitude_deg": "-120.284479", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Planada", + "scheduled_service": "no", + "gps_code": "CA03", + "local_code": "CA03", + "keywords": "John Myers" + }, + { + "id": "16535", + "ident": "CA04", + "type": "small_airport", + "name": "Flying N Ranch Airport", + "latitude_deg": "40.34629821777344", + "longitude_deg": "-122.33899688720703", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Cottonwood", + "scheduled_service": "no", + "gps_code": "CA04", + "local_code": "CA04" + }, + { + "id": "16536", + "ident": "CA05", + "type": "small_airport", + "name": "Machado Dusters Airport", + "latitude_deg": "36.16019821166992", + "longitude_deg": "-119.81300354003906", + "elevation_ft": "192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stratford", + "scheduled_service": "no", + "gps_code": "CA05", + "local_code": "CA05" + }, + { + "id": "16537", + "ident": "CA06", + "type": "small_airport", + "name": "Bates Field", + "latitude_deg": "41.421373", + "longitude_deg": "-120.568657", + "elevation_ft": "4400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Alturas", + "scheduled_service": "no", + "gps_code": "CA06", + "local_code": "CA06" + }, + { + "id": "16538", + "ident": "CA07", + "type": "small_airport", + "name": "Scheidel Ranch Airport", + "latitude_deg": "38.8401985168457", + "longitude_deg": "-121.56199645996094", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pleasant Grove", + "scheduled_service": "no", + "gps_code": "CA07", + "local_code": "CA07" + }, + { + "id": "16539", + "ident": "CA08", + "type": "heliport", + "name": "SCE Energy Control Center Heliport", + "latitude_deg": "34.083494", + "longitude_deg": "-118.144148", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Alhambra", + "scheduled_service": "no", + "gps_code": "CA08", + "local_code": "CA08" + }, + { + "id": "16540", + "ident": "CA09", + "type": "small_airport", + "name": "Round Mountain Ranch Airport", + "latitude_deg": "41.885277", + "longitude_deg": "-122.843256", + "elevation_ft": "3500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Klamath River", + "scheduled_service": "no", + "gps_code": "CA09", + "local_code": "CA09" + }, + { + "id": "16541", + "ident": "CA10", + "type": "closed", + "name": "Coonrod Ranch Airport", + "latitude_deg": "41.6171", + "longitude_deg": "-122.319", + "elevation_ft": "3010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Montague", + "scheduled_service": "no", + "keywords": "CA10" + }, + { + "id": "16542", + "ident": "CA11", + "type": "small_airport", + "name": "Mc Cloud Airstrip", + "latitude_deg": "41.2732009888", + "longitude_deg": "-122.122001648", + "elevation_ft": "3540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mc Cloud", + "scheduled_service": "no", + "gps_code": "CA11", + "local_code": "CA11" + }, + { + "id": "16543", + "ident": "CA12", + "type": "heliport", + "name": "IPP Adelanto Heliport", + "latitude_deg": "34.54846", + "longitude_deg": "-117.436321", + "elevation_ft": "2980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Adelanto", + "scheduled_service": "no", + "gps_code": "CA12", + "local_code": "CA12" + }, + { + "id": "16544", + "ident": "CA13", + "type": "small_airport", + "name": "Reedley College Airport", + "latitude_deg": "36.606871", + "longitude_deg": "-119.463526", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Reedley", + "scheduled_service": "no", + "gps_code": "CA13", + "local_code": "CA13", + "keywords": "Kings River Community College Airport" + }, + { + "id": "16545", + "ident": "CA14", + "type": "closed", + "name": "U of C - Richmond Field Station Heliport", + "latitude_deg": "37.913799", + "longitude_deg": "-122.332002", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Richmond", + "scheduled_service": "no", + "keywords": "CA14" + }, + { + "id": "16546", + "ident": "CA15", + "type": "heliport", + "name": "Sierra Nevada Memorial Hospital Heliport", + "latitude_deg": "39.227474", + "longitude_deg": "-121.04763", + "elevation_ft": "2450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Grass Valley", + "scheduled_service": "no", + "gps_code": "CA15", + "local_code": "CA15" + }, + { + "id": "16547", + "ident": "CA16", + "type": "small_airport", + "name": "Holtsmans Airport", + "latitude_deg": "38.72909927368164", + "longitude_deg": "-121.38899993896484", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rio Linda", + "scheduled_service": "no", + "gps_code": "CA16", + "local_code": "CA16" + }, + { + "id": "16548", + "ident": "CA17", + "type": "closed", + "name": "Peterson Airport", + "latitude_deg": "37.723499", + "longitude_deg": "-120.889999", + "elevation_ft": "158", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Riverbank", + "scheduled_service": "no", + "keywords": "CA17" + }, + { + "id": "16549", + "ident": "CA18", + "type": "small_airport", + "name": "Sunrise Dusters Airport", + "latitude_deg": "38.874987", + "longitude_deg": "-121.710172", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Robbins", + "scheduled_service": "no", + "gps_code": "CA18", + "local_code": "CA18", + "keywords": "Wagner Aviation Airport" + }, + { + "id": "16550", + "ident": "CA19", + "type": "small_airport", + "name": "Camanche Skypark Airport", + "latitude_deg": "38.263511", + "longitude_deg": "-120.924006", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ione", + "scheduled_service": "no", + "gps_code": "CA19", + "local_code": "CA19", + "keywords": "05Q" + }, + { + "id": "16551", + "ident": "CA20", + "type": "small_airport", + "name": "Eagle's Nest Airport", + "latitude_deg": "38.43258", + "longitude_deg": "-121.016507", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ione", + "scheduled_service": "no", + "gps_code": "CA20", + "local_code": "CA20" + }, + { + "id": "16552", + "ident": "CA21", + "type": "small_airport", + "name": "Limberlost Ranch Airport", + "latitude_deg": "39.22046", + "longitude_deg": "-121.213896", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Penn Valley", + "scheduled_service": "no", + "gps_code": "CA21", + "local_code": "CA21" + }, + { + "id": "16553", + "ident": "CA22", + "type": "small_airport", + "name": "Lauppes Strip", + "latitude_deg": "38.759300231933594", + "longitude_deg": "-121.58499908447266", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sacramento", + "scheduled_service": "no", + "gps_code": "CA22", + "local_code": "CA22" + }, + { + "id": "16554", + "ident": "CA23", + "type": "heliport", + "name": "Maguire-California Hospital Helipad", + "latitude_deg": "34.034999", + "longitude_deg": "-118.266202", + "elevation_ft": "376", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "CA23", + "local_code": "CA23" + }, + { + "id": "16555", + "ident": "CA24", + "type": "heliport", + "name": "Scripps Memorial Hospital La Jolla Heliport", + "latitude_deg": "32.886279", + "longitude_deg": "-117.225502", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "La Jolla", + "scheduled_service": "no", + "gps_code": "CA24", + "local_code": "CA24" + }, + { + "id": "16556", + "ident": "CA25", + "type": "heliport", + "name": "Mark Twain St Joseph's Hospital Heliport", + "latitude_deg": "38.19071", + "longitude_deg": "-120.669215", + "elevation_ft": "1033", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Andreas", + "scheduled_service": "no", + "gps_code": "CA25", + "local_code": "CA25" + }, + { + "id": "16557", + "ident": "CA26", + "type": "heliport", + "name": "Hall of Justice Heliport", + "latitude_deg": "37.774898529052734", + "longitude_deg": "-122.40499877929688", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Francisco", + "scheduled_service": "no", + "gps_code": "CA26", + "local_code": "CA26" + }, + { + "id": "16558", + "ident": "CA27", + "type": "heliport", + "name": "Alcatraz Heliport", + "latitude_deg": "37.825912", + "longitude_deg": "-122.421448", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Francisco", + "scheduled_service": "no", + "gps_code": "CA27", + "local_code": "CA27" + }, + { + "id": "16559", + "ident": "CA28", + "type": "heliport", + "name": "University Medical Center Heliport", + "latitude_deg": "33.913023", + "longitude_deg": "-117.196526", + "elevation_ft": "1563", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Moreno Valley", + "scheduled_service": "no", + "gps_code": "CA28", + "local_code": "CA28" + }, + { + "id": "16560", + "ident": "CA29", + "type": "heliport", + "name": "Fontana Police Heliport", + "latitude_deg": "34.101716", + "longitude_deg": "-117.433729", + "elevation_ft": "1314", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fontana", + "scheduled_service": "no", + "gps_code": "CA29", + "local_code": "CA29" + }, + { + "id": "16561", + "ident": "CA30", + "type": "closed", + "name": "Commodore Heliport", + "latitude_deg": "37.810799", + "longitude_deg": "-122.415001", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Francisco", + "scheduled_service": "no", + "keywords": "CA30" + }, + { + "id": "16562", + "ident": "CA31", + "type": "heliport", + "name": "Sanger Heliport", + "latitude_deg": "36.732200622558594", + "longitude_deg": "-119.55500030517578", + "elevation_ft": "374", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sanger", + "scheduled_service": "no", + "gps_code": "CA31", + "local_code": "CA31" + }, + { + "id": "16563", + "ident": "CA32", + "type": "small_airport", + "name": "San Joaquin Airport", + "latitude_deg": "36.606525", + "longitude_deg": "-120.219499", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Joaquin", + "scheduled_service": "no", + "gps_code": "CA32", + "local_code": "CA32" + }, + { + "id": "16564", + "ident": "CA33", + "type": "heliport", + "name": "Santa Clara Valley Medical Center Heliport", + "latitude_deg": "37.313264", + "longitude_deg": "-121.934354", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Jose", + "scheduled_service": "no", + "gps_code": "CA33", + "local_code": "CA33", + "keywords": "County Medical Center Heliport" + }, + { + "id": "16565", + "ident": "CA34", + "type": "closed", + "name": "Flea Port Heliport", + "latitude_deg": "37.3736", + "longitude_deg": "-121.879997", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Jose", + "scheduled_service": "no", + "keywords": "CA34" + }, + { + "id": "16566", + "ident": "CA35", + "type": "small_airport", + "name": "San Rafael Airport", + "latitude_deg": "38.01689910888672", + "longitude_deg": "-122.52100372314453", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Rafael", + "scheduled_service": "no", + "gps_code": "CA35", + "local_code": "CA35", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Rafael_Airport_(California)" + }, + { + "id": "16567", + "ident": "CA36", + "type": "heliport", + "name": "American Display Heliport", + "latitude_deg": "33.55445", + "longitude_deg": "-117.608449", + "elevation_ft": "918", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rancho Santa Margarita", + "scheduled_service": "no", + "gps_code": "CA36", + "local_code": "CA36" + }, + { + "id": "16568", + "ident": "CA37", + "type": "heliport", + "name": "Dominican Hospital Heliport", + "latitude_deg": "36.990655", + "longitude_deg": "-121.982508", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "gps_code": "CA37", + "local_code": "CA37", + "keywords": "Dominican Santa Cruz Hospital" + }, + { + "id": "16569", + "ident": "CA38", + "type": "small_airport", + "name": "Totem Pole Ranch Airport", + "latitude_deg": "39.652182", + "longitude_deg": "-120.439873", + "elevation_ft": "4986", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Calpine", + "scheduled_service": "no", + "gps_code": "CA38", + "local_code": "CA38" + }, + { + "id": "16570", + "ident": "CA39", + "type": "small_airport", + "name": "Belos Cavalos Airport", + "latitude_deg": "38.434595", + "longitude_deg": "-122.563524", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Rosa", + "scheduled_service": "no", + "gps_code": "CA39", + "local_code": "CA39", + "keywords": "Graywood Ranch" + }, + { + "id": "16571", + "ident": "CA40", + "type": "small_airport", + "name": "Central Valley Aviation Inc Airport", + "latitude_deg": "36.52130126953125", + "longitude_deg": "-119.66999816894531", + "elevation_ft": "276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Selma", + "scheduled_service": "no", + "gps_code": "CA40", + "local_code": "CA40" + }, + { + "id": "16572", + "ident": "CA41", + "type": "small_airport", + "name": "Quinn Airport", + "latitude_deg": "36.58330154418945", + "longitude_deg": "-119.63999938964844", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Selma", + "scheduled_service": "no", + "gps_code": "CA41", + "local_code": "CA41" + }, + { + "id": "16573", + "ident": "CA42", + "type": "small_airport", + "name": "McConville Airstrip", + "latitude_deg": "33.644146", + "longitude_deg": "-117.429457", + "elevation_ft": "2600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lake Elsinore", + "scheduled_service": "no", + "gps_code": "CA42", + "local_code": "CA42" + }, + { + "id": "16574", + "ident": "CA43", + "type": "heliport", + "name": "Barton Memorial Hospital Heliport", + "latitude_deg": "38.91130065917969", + "longitude_deg": "-119.99700164794922", + "elevation_ft": "6298", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "South Lake Tahoe", + "scheduled_service": "no", + "gps_code": "CA43", + "local_code": "CA43" + }, + { + "id": "16575", + "ident": "CA44", + "type": "small_airport", + "name": "Sequoia Ranch Airport", + "latitude_deg": "36.149898529052734", + "longitude_deg": "-118.802001953125", + "elevation_ft": "1153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Springville", + "scheduled_service": "no", + "gps_code": "CA44", + "local_code": "CA44" + }, + { + "id": "16576", + "ident": "CA45", + "type": "closed", + "name": "Stevinson Strip", + "latitude_deg": "37.323827", + "longitude_deg": "-120.86287", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stevinson", + "scheduled_service": "no", + "keywords": "CA45" + }, + { + "id": "16577", + "ident": "CA46", + "type": "heliport", + "name": "Cedars-Sinai Medical Center Heliport", + "latitude_deg": "34.07640075683594", + "longitude_deg": "-118.38200378417969", + "elevation_ft": "334", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "CA46", + "local_code": "CA46" + }, + { + "id": "16578", + "ident": "CA47", + "type": "heliport", + "name": "San Diego Police Headquarters Heliport", + "latitude_deg": "32.715301513671875", + "longitude_deg": "-117.1510009765625", + "elevation_ft": "162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no", + "gps_code": "CA47", + "local_code": "CA47" + }, + { + "id": "16579", + "ident": "CA48", + "type": "closed", + "name": "Jones Heliport", + "latitude_deg": "37.979353", + "longitude_deg": "-121.229689", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stockton", + "scheduled_service": "no", + "keywords": "CA48" + }, + { + "id": "16580", + "ident": "CA49", + "type": "small_airport", + "name": "Jones Farms Airport", + "latitude_deg": "36.2041015625", + "longitude_deg": "-119.84100341796875", + "elevation_ft": "199", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stratford", + "scheduled_service": "no", + "gps_code": "CA49", + "local_code": "CA49" + }, + { + "id": "16581", + "ident": "CA50", + "type": "heliport", + "name": "Hughes/Malibu Heliport", + "latitude_deg": "34.045201", + "longitude_deg": "-118.695034", + "elevation_ft": "455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Malibu", + "scheduled_service": "no", + "gps_code": "CA50", + "local_code": "CA50", + "keywords": "L55" + }, + { + "id": "16582", + "ident": "CA51", + "type": "small_airport", + "name": "The Sea Ranch Airport", + "latitude_deg": "38.7046012878418", + "longitude_deg": "-123.43299865722656", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "The Sea Ranch", + "scheduled_service": "no", + "gps_code": "CA51", + "local_code": "CA51" + }, + { + "id": "16583", + "ident": "CA52", + "type": "closed", + "name": "Ports O'Call Heliport", + "latitude_deg": "33.731657", + "longitude_deg": "-118.275837", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Pedro", + "scheduled_service": "no", + "keywords": "CA52" + }, + { + "id": "16584", + "ident": "CA53", + "type": "small_airport", + "name": "Tews Field", + "latitude_deg": "40.67250061035156", + "longitude_deg": "-122.34200286865234", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Redding", + "scheduled_service": "no", + "gps_code": "CA53", + "local_code": "CA53" + }, + { + "id": "16585", + "ident": "CA54", + "type": "closed", + "name": "33 Strip", + "latitude_deg": "37.670259", + "longitude_deg": "-121.327933", + "elevation_ft": "81", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tracy", + "scheduled_service": "no", + "keywords": "CA54" + }, + { + "id": "16586", + "ident": "CA55", + "type": "heliport", + "name": "Mission Hospital Helistop", + "latitude_deg": "33.560797", + "longitude_deg": "-117.666192", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mission Viejo", + "scheduled_service": "no", + "gps_code": "CA55", + "local_code": "CA55" + }, + { + "id": "16587", + "ident": "CA56", + "type": "heliport", + "name": "Correctional Training Facility Heliport", + "latitude_deg": "36.468216", + "longitude_deg": "-121.380087", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Soledad", + "scheduled_service": "no", + "gps_code": "CA56", + "local_code": "CA56" + }, + { + "id": "16588", + "ident": "CA57", + "type": "small_airport", + "name": "Blake Sky Park Airport", + "latitude_deg": "38.458321", + "longitude_deg": "-122.050046", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Vacaville", + "scheduled_service": "no", + "gps_code": "CA57", + "local_code": "CA57" + }, + { + "id": "16589", + "ident": "CA58", + "type": "heliport", + "name": "Emanuel Medical Center Heliport", + "latitude_deg": "37.51259", + "longitude_deg": "-120.839244", + "elevation_ft": "174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Turlock", + "scheduled_service": "no", + "gps_code": "CA58", + "local_code": "CA58" + }, + { + "id": "16590", + "ident": "CA59", + "type": "small_airport", + "name": "Vestal Strip", + "latitude_deg": "38.79159927368164", + "longitude_deg": "-121.58399963378906", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Verona", + "scheduled_service": "no", + "gps_code": "CA59", + "local_code": "CA59" + }, + { + "id": "16591", + "ident": "CA60", + "type": "small_airport", + "name": "Deer Creek Ranch Airport", + "latitude_deg": "39.94990158081055", + "longitude_deg": "-121.99700164794922", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Vina", + "scheduled_service": "no", + "gps_code": "CA60", + "local_code": "CA60" + }, + { + "id": "16592", + "ident": "CA61", + "type": "heliport", + "name": "SCE High Desert District Heliport", + "latitude_deg": "34.476549", + "longitude_deg": "-117.288432", + "elevation_ft": "2974", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Victorville", + "scheduled_service": "no", + "gps_code": "CA61", + "local_code": "CA61" + }, + { + "id": "16593", + "ident": "CA62", + "type": "small_airport", + "name": "McMillan Assault Strip", + "latitude_deg": "35.719101", + "longitude_deg": "-120.767998", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Camp Roberts", + "scheduled_service": "no", + "gps_code": "CA62", + "local_code": "CA62" + }, + { + "id": "16594", + "ident": "CA63", + "type": "heliport", + "name": "John Muir Walnut Creek Medical Center Heliport", + "latitude_deg": "37.912845", + "longitude_deg": "-122.041449", + "elevation_ft": "292", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Walnut Creek", + "scheduled_service": "no", + "gps_code": "CA63", + "local_code": "CA63" + }, + { + "id": "43037", + "ident": "CA64", + "type": "heliport", + "name": "Olive View Medical Center Heliport", + "latitude_deg": "34.3268013", + "longitude_deg": "-118.4449997", + "elevation_ft": "1460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sylmar", + "scheduled_service": "no", + "gps_code": "CA64", + "local_code": "CA64" + }, + { + "id": "16596", + "ident": "CA65", + "type": "heliport", + "name": "Alta Vista Heliport", + "latitude_deg": "36.97050094604492", + "longitude_deg": "-121.86199951171875", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Watsonville", + "scheduled_service": "no", + "gps_code": "CA65", + "local_code": "CA65" + }, + { + "id": "16597", + "ident": "CA66", + "type": "small_airport", + "name": "Monterey Bay Academy Airport", + "latitude_deg": "36.90610122680664", + "longitude_deg": "-121.84300231933594", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Watsonville", + "scheduled_service": "no", + "gps_code": "CA66", + "local_code": "CA66", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monterey_Bay_Academy_Airport" + }, + { + "id": "16598", + "ident": "CA67", + "type": "small_airport", + "name": "Westley Airport", + "latitude_deg": "37.54800033569336", + "longitude_deg": "-121.20500183105469", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Westley", + "scheduled_service": "no", + "gps_code": "CA67", + "local_code": "CA67" + }, + { + "id": "16599", + "ident": "CA68", + "type": "heliport", + "name": "Saddleback Memorial Medical Center Heliport", + "latitude_deg": "33.608584", + "longitude_deg": "-117.709225", + "elevation_ft": "398", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Laguna Hills", + "scheduled_service": "no", + "gps_code": "CA68", + "local_code": "CA68" + }, + { + "id": "16600", + "ident": "CA69", + "type": "small_airport", + "name": "Avenal Gliderport", + "latitude_deg": "36.00303", + "longitude_deg": "-120.142194", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Avenal", + "scheduled_service": "no", + "gps_code": "CA69", + "local_code": "CA69", + "home_link": "https://www.soaravenal.com/", + "keywords": "AVE" + }, + { + "id": "16601", + "ident": "CA70", + "type": "small_airport", + "name": "Sun Hill Ranch Airport", + "latitude_deg": "34.757999420166016", + "longitude_deg": "-117.49700164794922", + "elevation_ft": "2984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Helendale", + "scheduled_service": "no", + "gps_code": "CA70", + "local_code": "CA70" + }, + { + "id": "16602", + "ident": "CA71", + "type": "small_airport", + "name": "Horse Shoe A Ranch Airport", + "latitude_deg": "38.439775", + "longitude_deg": "-120.887933", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Drytown", + "scheduled_service": "no", + "gps_code": "CA71", + "local_code": "CA71" + }, + { + "id": "16603", + "ident": "CA72", + "type": "heliport", + "name": "Community Memorial Hospital Heliport", + "latitude_deg": "34.274682", + "longitude_deg": "-119.259236", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ventura", + "scheduled_service": "no", + "gps_code": "CA72", + "local_code": "CA72" + }, + { + "id": "16604", + "ident": "CA73", + "type": "small_airport", + "name": "Vanderford Ranch Company Airport", + "latitude_deg": "39.095699310302734", + "longitude_deg": "-121.71600341796875", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Yuba City", + "scheduled_service": "no", + "gps_code": "CA73", + "local_code": "CA73" + }, + { + "id": "16605", + "ident": "CA74", + "type": "heliport", + "name": "Hemet Valley Hospital Helistop", + "latitude_deg": "33.751828", + "longitude_deg": "-116.960794", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hemet", + "scheduled_service": "no", + "keywords": "CA74" + }, + { + "id": "16606", + "ident": "CA75", + "type": "small_airport", + "name": "Reider Ranch Airport", + "latitude_deg": "32.638646", + "longitude_deg": "-116.640866", + "elevation_ft": "2655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Potrero", + "scheduled_service": "no", + "keywords": "CA75" + }, + { + "id": "16607", + "ident": "CA76", + "type": "small_airport", + "name": "Flying T Ranch Airport", + "latitude_deg": "33.0703010559082", + "longitude_deg": "-116.75199890136719", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ramona", + "scheduled_service": "no", + "gps_code": "CA76", + "local_code": "CA76" + }, + { + "id": "16608", + "ident": "CA77", + "type": "heliport", + "name": "Ridgecrest Regional Hospital Heliport", + "latitude_deg": "35.640365", + "longitude_deg": "-117.672034", + "elevation_ft": "2290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ridgecrest", + "scheduled_service": "no", + "gps_code": "CA77", + "local_code": "CA77" + }, + { + "id": "16609", + "ident": "CA78", + "type": "heliport", + "name": "City Hall Heliport", + "latitude_deg": "33.980641", + "longitude_deg": "-117.375628", + "elevation_ft": "977", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Riverside", + "scheduled_service": "no", + "gps_code": "CA78", + "local_code": "CA78" + }, + { + "id": "16610", + "ident": "CA79", + "type": "heliport", + "name": "Ritz-Carlton Marina del Rey Heliport", + "latitude_deg": "33.984297", + "longitude_deg": "-118.450175", + "elevation_ft": "149", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Marina del Rey", + "scheduled_service": "no", + "gps_code": "CA79", + "local_code": "CA79" + }, + { + "id": "16611", + "ident": "CA80", + "type": "closed", + "name": "San Bernardino County Medical Center Heliport", + "latitude_deg": "34.1278", + "longitude_deg": "-117.267997", + "elevation_ft": "1124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Bernardino", + "scheduled_service": "no", + "keywords": "CA80" + }, + { + "id": "16612", + "ident": "CA81", + "type": "heliport", + "name": "Riverside Metro Center Heliport", + "latitude_deg": "33.982958", + "longitude_deg": "-117.375982", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Riverside", + "scheduled_service": "no", + "gps_code": "CA81", + "local_code": "CA81" + }, + { + "id": "16613", + "ident": "CA82", + "type": "closed", + "name": "Corona Regional Medical Center Heliport", + "latitude_deg": "33.8731", + "longitude_deg": "-117.568001", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Corona", + "scheduled_service": "no", + "keywords": "CA82" + }, + { + "id": "16614", + "ident": "CA83", + "type": "heliport", + "name": "Gilbert Aviation Heliport", + "latitude_deg": "36.44269943237305", + "longitude_deg": "-119.31600189208984", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Visalia", + "scheduled_service": "no", + "gps_code": "CA83", + "local_code": "CA83" + }, + { + "id": "16615", + "ident": "CA84", + "type": "small_airport", + "name": "Torrey Pines Gliderport", + "latitude_deg": "32.88970184326172", + "longitude_deg": "-117.24700164794922", + "elevation_ft": "372", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no", + "gps_code": "CA84", + "local_code": "CA84" + }, + { + "id": "16616", + "ident": "CA85", + "type": "heliport", + "name": "Opus Center Irvine Heliport", + "latitude_deg": "33.683601", + "longitude_deg": "-117.852997", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Irvine", + "scheduled_service": "no", + "gps_code": "CA85", + "local_code": "CA85" + }, + { + "id": "16617", + "ident": "CA86", + "type": "heliport", + "name": "Northridge Hospital Heliport", + "latitude_deg": "34.220016", + "longitude_deg": "-118.532554", + "elevation_ft": "864", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Northridge", + "scheduled_service": "no", + "gps_code": "CA86", + "local_code": "CA86" + }, + { + "id": "16618", + "ident": "CA87", + "type": "heliport", + "name": "SCE Songs Mesa Heliport", + "latitude_deg": "33.379517", + "longitude_deg": "-117.559821", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Clemente", + "scheduled_service": "no", + "gps_code": "CA87", + "local_code": "CA87" + }, + { + "id": "16619", + "ident": "CA88", + "type": "small_airport", + "name": "San Ardo Field", + "latitude_deg": "36.026074", + "longitude_deg": "-120.908382", + "elevation_ft": "441", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Ardo", + "scheduled_service": "no", + "gps_code": "CA88", + "local_code": "CA88" + }, + { + "id": "16620", + "ident": "CA89", + "type": "small_airport", + "name": "Skylark Airport", + "latitude_deg": "33.632272", + "longitude_deg": "-117.300868", + "elevation_ft": "1253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lake Elsinore", + "scheduled_service": "no", + "gps_code": "CA89", + "local_code": "CA89", + "keywords": "Skylark Field" + }, + { + "id": "16621", + "ident": "CA90", + "type": "small_airport", + "name": "Cadiz Airstrip", + "latitude_deg": "34.514054", + "longitude_deg": "-115.518343", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Cadiz", + "scheduled_service": "no", + "gps_code": "CA90", + "local_code": "CA90" + }, + { + "id": "16622", + "ident": "CA91", + "type": "heliport", + "name": "Quinn Heliport", + "latitude_deg": "34.008073", + "longitude_deg": "-117.343801", + "elevation_ft": "904", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Riverside", + "scheduled_service": "no", + "gps_code": "CA91", + "local_code": "CA91", + "keywords": "Johnson Heliport" + }, + { + "id": "20291", + "ident": "CA92", + "type": "small_airport", + "name": "Paradise Skypark Airport", + "latitude_deg": "39.71029", + "longitude_deg": "-121.616528", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Paradise", + "scheduled_service": "no", + "gps_code": "CA92", + "local_code": "CA92", + "home_link": "http://paradiseairport.com/index.php", + "keywords": "Formerly L24" + }, + { + "id": "16623", + "ident": "CA93", + "type": "heliport", + "name": "First Interstate Bank Building Heliport", + "latitude_deg": "33.753601", + "longitude_deg": "-117.867996", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Ana", + "scheduled_service": "no", + "gps_code": "CA93", + "local_code": "CA93" + }, + { + "id": "16624", + "ident": "CA94", + "type": "closed", + "name": "Albalisa Dinner Playhouse Inc Heliport", + "latitude_deg": "33.766998", + "longitude_deg": "-117.917999", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Ana", + "scheduled_service": "no", + "keywords": "CA94" + }, + { + "id": "16625", + "ident": "CA95", + "type": "heliport", + "name": "St Joseph Medical Center Heliport", + "latitude_deg": "34.155314", + "longitude_deg": "-118.327759", + "elevation_ft": "568", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Burbank", + "scheduled_service": "no", + "gps_code": "CA95", + "local_code": "CA95" + }, + { + "id": "16626", + "ident": "CA96", + "type": "closed", + "name": "Goleta Valley Community Hospital Heliport", + "latitude_deg": "34.433399", + "longitude_deg": "-119.810289", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Barbara", + "scheduled_service": "no", + "keywords": "CA96" + }, + { + "id": "16627", + "ident": "CA97", + "type": "small_airport", + "name": "Christy Airstrip", + "latitude_deg": "34.01888", + "longitude_deg": "-119.851625", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Cruz Island", + "scheduled_service": "no", + "gps_code": "CA97", + "local_code": "CA97" + }, + { + "id": "16628", + "ident": "CA98", + "type": "heliport", + "name": "Platform Ocs P-0188 Hondo Heliport", + "latitude_deg": "34.39070129394531", + "longitude_deg": "-120.12200164794922", + "elevation_ft": "142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Barbara", + "scheduled_service": "no", + "gps_code": "CA98", + "local_code": "CA98" + }, + { + "id": "16629", + "ident": "CA99", + "type": "heliport", + "name": "Aero Long Beach 8 Helipad", + "latitude_deg": "33.807162", + "longitude_deg": "-118.144573", + "elevation_ft": "121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no", + "gps_code": "CA99", + "local_code": "CA99" + }, + { + "id": "306929", + "ident": "CAA2", + "type": "small_airport", + "name": "St. André-Avellin Aerodrome", + "latitude_deg": "45.744319", + "longitude_deg": "-75.070267", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St. Andre Avellin", + "scheduled_service": "no", + "gps_code": "CAA2", + "local_code": "CAA2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saint-Andr%C3%A9-Avellin_Aerodrome" + }, + { + "id": "335911", + "ident": "CAA3", + "type": "heliport", + "name": "Westlock Healthcare Centre Heliport", + "latitude_deg": "54.1466", + "longitude_deg": "-113.854998", + "elevation_ft": "2153", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Westloc", + "scheduled_service": "no", + "gps_code": "CAA3", + "local_code": "CAA3", + "home_link": "https://www.albertahealthservices.ca/findhealth/facility.aspx?id=1044401" + }, + { + "id": "339349", + "ident": "CAA4", + "type": "small_airport", + "name": "Saint-Apollinaire (Airpro) Aerodrome", + "latitude_deg": "46.586944", + "longitude_deg": "-71.561111", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Saint-Apollinaire", + "scheduled_service": "no", + "gps_code": "CAA4", + "local_code": "CAA4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saint-Apollinaire_(Airpro)_Aerodrome" + }, + { + "id": "28471", + "ident": "CAA5", + "type": "seaplane_base", + "name": "Zeballos Seaplane Base", + "latitude_deg": "49.9778", + "longitude_deg": "-126.8445", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Zeballos", + "scheduled_service": "no", + "gps_code": "CAA5", + "local_code": "CAA5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zeballos_Water_Aerodrome", + "keywords": "AA5" + }, + { + "id": "611", + "ident": "CAA6", + "type": "heliport", + "name": "Smithers (Canadian) Heliport", + "latitude_deg": "54.772295", + "longitude_deg": "-127.141599", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Smithers", + "scheduled_service": "no", + "gps_code": "CAA6", + "local_code": "CAA6", + "keywords": "AA6" + }, + { + "id": "28237", + "ident": "CAA7", + "type": "seaplane_base", + "name": "Gilford Island/Echo Bay Seaplane Base", + "latitude_deg": "50.766700744599994", + "longitude_deg": "-126.483001709", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Gilford Island", + "scheduled_service": "no", + "gps_code": "CAA7", + "local_code": "CAA7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gilford_Island/Echo_Bay_Water_Aerodrome", + "keywords": "AA7" + }, + { + "id": "612", + "ident": "CAA8", + "type": "small_airport", + "name": "Invermere Airport", + "latitude_deg": "50.521502", + "longitude_deg": "-116.005775", + "elevation_ft": "2820", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Invermere", + "scheduled_service": "no", + "gps_code": "CAA8", + "local_code": "CAA8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Invermere_Airport", + "keywords": "AA8" + }, + { + "id": "28374", + "ident": "CAA9", + "type": "seaplane_base", + "name": "Port Alberni/Sproat Lake Seaplane Base", + "latitude_deg": "49.2891524507", + "longitude_deg": "-124.937746525", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Sproat Lake", + "scheduled_service": "no", + "gps_code": "CAA9", + "local_code": "CAA9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Alberni/Sproat_Lake_Water_Aerodrome", + "keywords": "AA9" + }, + { + "id": "28174", + "ident": "CAB3", + "type": "seaplane_base", + "name": "Bedwell Harbour Seaplane Base", + "latitude_deg": "48.75", + "longitude_deg": "-123.233001709", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Bedwell Harbour", + "scheduled_service": "yes", + "gps_code": "CAB3", + "iata_code": "YBW", + "local_code": "CAB3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bedwell_Harbour_Water_Aerodrome", + "keywords": "AB3" + }, + { + "id": "28447", + "ident": "CAB4", + "type": "seaplane_base", + "name": "Tofino Harbour Seaplane Base", + "latitude_deg": "49.155", + "longitude_deg": "-125.91", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Tofino Harbour", + "scheduled_service": "no", + "gps_code": "CAB4", + "iata_code": "YTP", + "local_code": "CAB4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tofino_Harbour_Water_Aerodrome", + "keywords": "AB4" + }, + { + "id": "28142", + "ident": "CAB5", + "type": "closed", + "name": "Bronson Creek Airport", + "latitude_deg": "56.681098938", + "longitude_deg": "-131.087005615", + "elevation_ft": "396", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Bronson Creek", + "scheduled_service": "no", + "iata_code": "YBM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bronson_Creek_Airport", + "keywords": "CAB5, AB5, Snip Gold Mine" + }, + { + "id": "613", + "ident": "CAB7", + "type": "heliport", + "name": "Kelowna (Alpine) Heliport", + "latitude_deg": "49.863872", + "longitude_deg": "-119.568517", + "elevation_ft": "1640", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kelowna", + "scheduled_service": "no", + "gps_code": "CAB7", + "local_code": "CAB7" + }, + { + "id": "28155", + "ident": "CAC3", + "type": "closed", + "name": "Alice Arm/Silver City Seaplane Base", + "latitude_deg": "55.466702", + "longitude_deg": "-129.483002", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Alice Arm", + "scheduled_service": "no", + "iata_code": "ZAA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alice_Arm/Silver_City_Water_Aerodrome", + "keywords": "CAC3" + }, + { + "id": "28468", + "ident": "CAC5", + "type": "seaplane_base", + "name": "Williams Lake Seaplane Base", + "latitude_deg": "52.1166992188", + "longitude_deg": "-122.099998474", + "elevation_ft": "1859", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Williams Lake", + "scheduled_service": "no", + "gps_code": "CAC5", + "local_code": "CAC5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Williams_Lake_Water_Aerodrome", + "keywords": "AC5" + }, + { + "id": "45053", + "ident": "CAC6", + "type": "heliport", + "name": "Calgary (Alberta Children's Hospital) Heliport", + "latitude_deg": "51.075826", + "longitude_deg": "-114.147708", + "elevation_ft": "3670", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "no", + "gps_code": "CAC6", + "local_code": "CAC6", + "keywords": "AC6" + }, + { + "id": "28332", + "ident": "CAC8", + "type": "seaplane_base", + "name": "Nanaimo Harbour Water Airport", + "latitude_deg": "49.169813", + "longitude_deg": "-123.933845", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Nanaimo", + "scheduled_service": "yes", + "gps_code": "CAC8", + "iata_code": "ZNA", + "local_code": "CAC8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nanaimo_Harbour_Water_Airport", + "keywords": "AC8" + }, + { + "id": "28427", + "ident": "CAC9", + "type": "seaplane_base", + "name": "Stewart Seaplane Base", + "latitude_deg": "55.916698", + "longitude_deg": "-130", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Stewart", + "scheduled_service": "no", + "gps_code": "CAC9", + "local_code": "CAC9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stewart_Water_Aerodrome", + "keywords": "AC9" + }, + { + "id": "320493", + "ident": "CAD2", + "type": "heliport", + "name": "Allan Dale Residence Heliport", + "latitude_deg": "52.2699", + "longitude_deg": "-113.6974", + "elevation_ft": "3248", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Red Deer", + "scheduled_service": "no", + "gps_code": "CAD2", + "local_code": "CAD2" + }, + { + "id": "320494", + "ident": "CAD3", + "type": "heliport", + "name": "Allan Dale Trailers & RV Heliport", + "latitude_deg": "52.308801", + "longitude_deg": "-113.8633", + "elevation_ft": "2930", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Red Deer", + "scheduled_service": "no", + "gps_code": "CAD3", + "local_code": "CAD3" + }, + { + "id": "614", + "ident": "CAD4", + "type": "small_airport", + "name": "Trail Airport", + "latitude_deg": "49.055599", + "longitude_deg": "-117.609001", + "elevation_ft": "1427", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Trail", + "scheduled_service": "yes", + "gps_code": "CAD4", + "iata_code": "YZZ", + "local_code": "CAD4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trail_Airport", + "keywords": "AD4" + }, + { + "id": "615", + "ident": "CAD5", + "type": "small_airport", + "name": "Merritt Airport", + "latitude_deg": "50.122798919699996", + "longitude_deg": "-120.747001648", + "elevation_ft": "2080", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Merritt", + "scheduled_service": "no", + "gps_code": "CAD5", + "iata_code": "YMB", + "local_code": "CAD5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Merritt_Airport", + "keywords": "AD5, Saunders Field" + }, + { + "id": "28164", + "ident": "CAD6", + "type": "seaplane_base", + "name": "Atlin Seaplane Base", + "latitude_deg": "59.5666999817", + "longitude_deg": "-133.716995239", + "elevation_ft": "2190", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Atlin", + "scheduled_service": "no", + "gps_code": "CAD6", + "local_code": "CAD6", + "wikipedia_link": "https://en.wiki2.org/wiki/Atlin_Water_Aerodrome", + "keywords": "AD6" + }, + { + "id": "28238", + "ident": "CAD7", + "type": "seaplane_base", + "name": "Gilford Island/Health Bay Seaplane Base", + "latitude_deg": "50.7000007629", + "longitude_deg": "-126.599998474", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Gilford Island", + "scheduled_service": "no", + "gps_code": "CAD7", + "local_code": "CAD7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gilford_Island/Health_Bay_Water_Aerodrome", + "keywords": "AD7" + }, + { + "id": "28335", + "ident": "CAD8", + "type": "seaplane_base", + "name": "Nelson Seaplane Base", + "latitude_deg": "49.5", + "longitude_deg": "-117.300003052", + "elevation_ft": "1740", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Nelson", + "scheduled_service": "no", + "gps_code": "CAD8", + "local_code": "CAD8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nelson_Water_Aerodrome", + "keywords": "AD8" + }, + { + "id": "616", + "ident": "CAE2", + "type": "heliport", + "name": "Cranbrook (East Kootenay Regional Hospital) Heliport", + "latitude_deg": "49.51250076293945", + "longitude_deg": "-115.75", + "elevation_ft": "3050", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Cranbrook", + "scheduled_service": "no", + "gps_code": "CAE2", + "local_code": "CAE2", + "keywords": "AE2" + }, + { + "id": "28187", + "ident": "CAE3", + "type": "seaplane_base", + "name": "Campbell River Seaplane Base", + "latitude_deg": "50.049999", + "longitude_deg": "-125.25", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Campbell River", + "scheduled_service": "no", + "gps_code": "CAE3", + "iata_code": "YHH", + "local_code": "CAE3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Campbell_River_Water_Aerodrome", + "keywords": "AE3, Campbell River Harbour Airport" + }, + { + "id": "617", + "ident": "CAE4", + "type": "small_airport", + "name": "Tsacha Lake Airport", + "latitude_deg": "53.019365", + "longitude_deg": "-124.843891", + "elevation_ft": "3450", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Tsacha Lake", + "scheduled_service": "no", + "gps_code": "CAE4", + "local_code": "CAE4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tsacha_Lake_Airport", + "keywords": "AE4" + }, + { + "id": "28465", + "ident": "CAE5", + "type": "seaplane_base", + "name": "Whistler/Green Lake Water Aerodrome", + "latitude_deg": "50.1436004639", + "longitude_deg": "-122.948997498", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Whistler", + "scheduled_service": "yes", + "gps_code": "CAE5", + "iata_code": "YWS", + "local_code": "CAE5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Whistler/Green_Lake_Water_Aerodrome", + "keywords": "AE5" + }, + { + "id": "28251", + "ident": "CAE7", + "type": "seaplane_base", + "name": "Harrison Hot Springs Seaplane Base", + "latitude_deg": "49.3048530057", + "longitude_deg": "-121.785936356", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Harrison Hot Springs", + "scheduled_service": "no", + "gps_code": "CAE7", + "local_code": "CAE7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harrison_Hot_Springs_Water_Aerodrome", + "keywords": "AE7" + }, + { + "id": "28169", + "ident": "CAE9", + "type": "seaplane_base", + "name": "Bamfield Seaplane Base", + "latitude_deg": "48.8333015442", + "longitude_deg": "-125.133003235", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Bamfield", + "scheduled_service": "no", + "gps_code": "CAE9", + "iata_code": "YBF", + "local_code": "CAE9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bamfield_Water_Aerodrome", + "keywords": "AE9" + }, + { + "id": "320199", + "ident": "CAF2", + "type": "small_airport", + "name": "Cayuga East Airport", + "latitude_deg": "42.960301", + "longitude_deg": "-79.788", + "elevation_ft": "644", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Cayuga", + "scheduled_service": "no", + "gps_code": "CAF2", + "local_code": "CAF2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cayuga_East_Aerodrome" + }, + { + "id": "618", + "ident": "CAF4", + "type": "small_airport", + "name": "Tsuniah Lake Lodge Airport", + "latitude_deg": "51.526371", + "longitude_deg": "-124.163961", + "elevation_ft": "4000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Cariboo", + "scheduled_service": "no", + "gps_code": "CAF4", + "local_code": "CAF4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tsuniah_Lake_Lodge_Airport", + "keywords": "AF4" + }, + { + "id": "28177", + "ident": "CAF6", + "type": "seaplane_base", + "name": "Big Bay Seaplane Base", + "latitude_deg": "50.3923", + "longitude_deg": "-125.1372", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Stuart Island", + "scheduled_service": "no", + "gps_code": "CAF6", + "iata_code": "YIG", + "local_code": "CAF6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Big_Bay_Water_Aerodrome", + "keywords": "AF6" + }, + { + "id": "28339", + "ident": "CAF8", + "type": "seaplane_base", + "name": "Nimpo Lake Seaplane Base", + "latitude_deg": "52.327", + "longitude_deg": "-125.145", + "elevation_ft": "3665", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Nimpo Lake", + "scheduled_service": "no", + "gps_code": "CAF8", + "local_code": "CAF8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nimpo_Lake_Water_Aerodrome", + "keywords": "AF8" + }, + { + "id": "619", + "ident": "CAG3", + "type": "small_airport", + "name": "Chilko Lake (Tsylos Park Lodge) Airport", + "latitude_deg": "51.625797", + "longitude_deg": "-124.144478", + "elevation_ft": "3850", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Chilko Lake", + "scheduled_service": "no", + "gps_code": "CAG3", + "iata_code": "CJH", + "local_code": "CAG3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chilko_Lake_(Tsylos_Park_Lodge)_Airport", + "keywords": "AG3" + }, + { + "id": "28182", + "ident": "CAG6", + "type": "seaplane_base", + "name": "Blind Channel Seaplane Base", + "latitude_deg": "50.416698", + "longitude_deg": "-125.5", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAG6", + "local_code": "CAG6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Blind_Channel_Water_Aerodrome", + "keywords": "AG6" + }, + { + "id": "28364", + "ident": "CAG8", + "type": "seaplane_base", + "name": "Pender Harbour Seaplane Base", + "latitude_deg": "49.623785", + "longitude_deg": "-124.024884", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Sunshine Coast", + "scheduled_service": "no", + "gps_code": "CAG8", + "iata_code": "YPT", + "local_code": "CAG8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pender_Harbour_Water_Aerodrome", + "keywords": "AG8" + }, + { + "id": "28433", + "ident": "CAG9", + "type": "seaplane_base", + "name": "Surge Narrows Seaplane Base", + "latitude_deg": "50.216702", + "longitude_deg": "-125.116997", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Surge Narrows", + "scheduled_service": "no", + "gps_code": "CAG9", + "local_code": "CAG9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Surge_Narrows_Water_Aerodrome", + "keywords": "AG9" + }, + { + "id": "28346", + "ident": "CAH2", + "type": "seaplane_base", + "name": "Ocean Falls Seaplane Base", + "latitude_deg": "52.3666992188", + "longitude_deg": "-127.717002869", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Ocean Falls", + "scheduled_service": "no", + "gps_code": "CAH2", + "iata_code": "ZOF", + "local_code": "CAH2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ocean_Falls_Water_Aerodrome" + }, + { + "id": "620", + "ident": "CAH3", + "type": "small_airport", + "name": "Courtenay Airpark", + "latitude_deg": "49.679237", + "longitude_deg": "-124.98064", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Courtenay", + "scheduled_service": "no", + "gps_code": "CAH3", + "iata_code": "YCA", + "local_code": "CAH3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Courtenay_Airpark", + "keywords": "AH3" + }, + { + "id": "621", + "ident": "CAH4", + "type": "small_airport", + "name": "Valemount Airport", + "latitude_deg": "52.85329818725586", + "longitude_deg": "-119.33399963378906", + "elevation_ft": "2615", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Valemount", + "scheduled_service": "no", + "gps_code": "CAH4", + "local_code": "CAH4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valemount_Airport", + "keywords": "AH4" + }, + { + "id": "28141", + "ident": "CAH5", + "type": "closed", + "name": "Leo Creek Airport", + "latitude_deg": "55.119853", + "longitude_deg": "-125.614054", + "elevation_ft": "2360", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Leo Creek", + "scheduled_service": "no", + "gps_code": "CAH5", + "keywords": "AH5" + }, + { + "id": "28268", + "ident": "CAH7", + "type": "seaplane_base", + "name": "Kamloops Seaplane Base", + "latitude_deg": "50.700003", + "longitude_deg": "-120.432999", + "elevation_ft": "1129", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAH7", + "local_code": "CAH7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kamloops_Water_Aerodrome", + "keywords": "AH7" + }, + { + "id": "28365", + "ident": "CAH8", + "type": "closed", + "name": "Penticton Seaplane Base", + "latitude_deg": "49.45003", + "longitude_deg": "-119.599998", + "elevation_ft": "1108", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAH8", + "local_code": "CAH8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Penticton_Water_Aerodrome", + "keywords": "AH8" + }, + { + "id": "28437", + "ident": "CAH9", + "type": "closed", + "name": "Telegraph Creek Seaplane Base", + "latitude_deg": "57.900002", + "longitude_deg": "-131.182999", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAH9", + "local_code": "CAH9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Telegraph_Creek_Water_Aerodrome", + "keywords": "AH9" + }, + { + "id": "622", + "ident": "CAJ2", + "type": "small_airport", + "name": "Wiley Airport", + "latitude_deg": "66.49109649658203", + "longitude_deg": "-136.572998046875", + "elevation_ft": "2365", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Eagle Plains", + "scheduled_service": "no", + "gps_code": "CAJ2", + "local_code": "CAJ2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wiley_Aerodrome", + "keywords": "AJ2" + }, + { + "id": "623", + "ident": "CAJ3", + "type": "small_airport", + "name": "Creston Valley Regional Airport - Art Sutcliffe Field", + "latitude_deg": "49.03689956665", + "longitude_deg": "-116.49800109863", + "elevation_ft": "2070", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Creston", + "scheduled_service": "no", + "gps_code": "CAJ3", + "iata_code": "CFQ", + "local_code": "CAJ3", + "home_link": "http://www.crestonairport.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Creston_(Art_Sutcliffe_Field)_Airport", + "keywords": "AJ3" + }, + { + "id": "624", + "ident": "CAJ4", + "type": "medium_airport", + "name": "Anahim Lake Airport", + "latitude_deg": "52.451501", + "longitude_deg": "-125.303776", + "elevation_ft": "3635", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Anahim Lake", + "scheduled_service": "yes", + "gps_code": "CAJ4", + "iata_code": "YAA", + "local_code": "CAJ4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anahim_Lake_Airport", + "keywords": "AJ4" + }, + { + "id": "625", + "ident": "CAJ7", + "type": "small_airport", + "name": "Cayley A J Flying Ranch Airport", + "latitude_deg": "50.453887", + "longitude_deg": "-113.747191", + "elevation_ft": "3450", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Cayley", + "scheduled_service": "no", + "gps_code": "CAJ7", + "local_code": "CAJ7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cayley/A._J._Flying_Ranch_Airport", + "keywords": "AJ7" + }, + { + "id": "28370", + "ident": "CAJ8", + "type": "seaplane_base", + "name": "Pitt Meadows Seaplane Base", + "latitude_deg": "49.209858", + "longitude_deg": "-122.709045", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAJ8", + "local_code": "CAJ8", + "keywords": "AJ8" + }, + { + "id": "626", + "ident": "CAJ9", + "type": "small_airport", + "name": "Fort Ware Airport", + "latitude_deg": "57.42720031738281", + "longitude_deg": "-125.6500015258789", + "elevation_ft": "2450", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Fort Ware", + "scheduled_service": "no", + "gps_code": "CAJ9", + "local_code": "CAJ9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Ware_Airport", + "keywords": "AJ9" + }, + { + "id": "627", + "ident": "CAK3", + "type": "small_airport", + "name": "Delta Heritage Air Park", + "latitude_deg": "49.0774", + "longitude_deg": "-122.941002", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Delta", + "scheduled_service": "no", + "gps_code": "CAK3", + "local_code": "CAK3", + "home_link": "http://www.deltaheritageairpark.org", + "wikipedia_link": "https://en.wikipedia.org/wiki/Delta/Delta_Heritage_Air_Park", + "keywords": "AK3" + }, + { + "id": "28188", + "ident": "CAK6", + "type": "seaplane_base", + "name": "Camp Cordero Seaplane Base", + "latitude_deg": "50.446694", + "longitude_deg": "-125.453785", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAK6", + "local_code": "CAK6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_Cordero_Water_Aerodrome", + "keywords": "AK6" + }, + { + "id": "628", + "ident": "CAK7", + "type": "heliport", + "name": "Vancouver (Children & Women's Health Centre) Heliport", + "latitude_deg": "49.2438419064", + "longitude_deg": "-123.127095848", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Vancouver", + "scheduled_service": "no", + "gps_code": "CAK7", + "local_code": "CAK7", + "keywords": "AK7" + }, + { + "id": "28219", + "ident": "CAK8", + "type": "seaplane_base", + "name": "Finlay Bay Seaplane Base", + "latitude_deg": "55.97919845581055", + "longitude_deg": "-123.7770004272461", + "elevation_ft": "2205", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAK8", + "local_code": "CAK8" + }, + { + "id": "629", + "ident": "CAL3", + "type": "small_airport", + "name": "Douglas Lake Airport", + "latitude_deg": "50.1654600485", + "longitude_deg": "-120.171273351", + "elevation_ft": "2770", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Douglas Lake", + "scheduled_service": "no", + "gps_code": "CAL3", + "iata_code": "DGF", + "local_code": "CAL3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Douglas_Lake_Airport", + "keywords": "AL3" + }, + { + "id": "30592", + "ident": "CAL4", + "type": "small_airport", + "name": "Fort MacKay/Albian Aerodrome", + "latitude_deg": "57.223899841299996", + "longitude_deg": "-111.418998718", + "elevation_ft": "1048", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Albian Village", + "scheduled_service": "no", + "gps_code": "CAL4", + "iata_code": "JHL", + "local_code": "CAL4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_MacKay/Albian_Aerodrome", + "keywords": "Shell Canada, Jackpine Mine" + }, + { + "id": "46536", + "ident": "CAL6", + "type": "heliport", + "name": "Prince Albert (Fire Centre) Heliport", + "latitude_deg": "53.228574", + "longitude_deg": "-105.755736", + "elevation_ft": "1476", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Prince Albert", + "scheduled_service": "no", + "gps_code": "CAL6", + "local_code": "CAL6" + }, + { + "id": "630", + "ident": "CAL7", + "type": "heliport", + "name": "Ganges (Lady Minto / Gulf Islands Hospital) Heliport", + "latitude_deg": "48.8625294276", + "longitude_deg": "-123.508716524", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Ganges", + "scheduled_service": "no", + "gps_code": "CAL7", + "local_code": "CAL7", + "keywords": "AL7" + }, + { + "id": "28375", + "ident": "CAL8", + "type": "closed", + "name": "Port Alice/Jeune Landing Seaplane Base", + "latitude_deg": "50.423233", + "longitude_deg": "-127.486232", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Port Alice", + "scheduled_service": "no", + "local_code": "AL8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Alice/Rumble_Beach_Water_Aerodrome", + "keywords": "AL8, CAL8, Rumble Beach Water Aerodrome" + }, + { + "id": "28434", + "ident": "CAL9", + "type": "seaplane_base", + "name": "Tahsis Seaplane Base", + "latitude_deg": "49.916698455799995", + "longitude_deg": "-126.666999817", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Tahsis", + "scheduled_service": "no", + "gps_code": "CAL9", + "iata_code": "ZTS", + "local_code": "CAL9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tahsis_Water_Aerodrome" + }, + { + "id": "631", + "ident": "CAM3", + "type": "small_airport", + "name": "Duncan Airport", + "latitude_deg": "48.754534", + "longitude_deg": "-123.709702", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Duncan", + "scheduled_service": "no", + "gps_code": "CAM3", + "iata_code": "DUQ", + "local_code": "CAM3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Duncan_Airport", + "keywords": "AM3" + }, + { + "id": "46598", + "ident": "CAM4", + "type": "small_airport", + "name": "Alhambra / Ahlstrom Airport", + "latitude_deg": "52.346194", + "longitude_deg": "-114.667525", + "elevation_ft": "3212", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Alhambra", + "scheduled_service": "no", + "gps_code": "CAM4", + "local_code": "CAM4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alhambra/Ahlstrom_Aerodrome" + }, + { + "id": "632", + "ident": "CAM5", + "type": "small_airport", + "name": "Houston Airport", + "latitude_deg": "54.4392009821", + "longitude_deg": "-126.778879166", + "elevation_ft": "2150", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "CAM5", + "local_code": "CAM5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Houston_Airport_(British_Columbia)", + "keywords": "AM5" + }, + { + "id": "633", + "ident": "CAM7", + "type": "closed", + "name": "Kamloops (BC Hydro) Heliport", + "latitude_deg": "50.666766", + "longitude_deg": "-120.370989", + "elevation_ft": "1770", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kamloops", + "scheduled_service": "no", + "keywords": "BV2, CAM7" + }, + { + "id": "28380", + "ident": "CAM8", + "type": "seaplane_base", + "name": "Port McNeill Seaplane Base", + "latitude_deg": "50.5922314571", + "longitude_deg": "-127.088384628", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAM8", + "local_code": "CAM8", + "keywords": "AM8" + }, + { + "id": "28454", + "ident": "CAM9", + "type": "seaplane_base", + "name": "Vancouver International Seaplane Base", + "latitude_deg": "49.177047", + "longitude_deg": "-123.168154", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Vancouver", + "scheduled_service": "yes", + "gps_code": "CAM9", + "local_code": "CAM9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vancouver_International_Water_Airport", + "keywords": "AM9" + }, + { + "id": "28450", + "ident": "CAN3", + "type": "seaplane_base", + "name": "Ucluelet Seaplane Base", + "latitude_deg": "48.950003", + "longitude_deg": "-125.550005", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAN3", + "local_code": "CAN3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ucluelet_Water_Aerodrome", + "keywords": "AN3" + }, + { + "id": "28385", + "ident": "CAN6", + "type": "seaplane_base", + "name": "Prince Rupert/Digby Island Seaplane Base", + "latitude_deg": "54.313646", + "longitude_deg": "-130.405058", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Prince Rupert", + "scheduled_service": "no", + "gps_code": "CAN6", + "local_code": "CAN6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Prince_Rupert/Digby_Island_Water_Aerodrome", + "keywords": "AN6" + }, + { + "id": "28381", + "ident": "CAN8", + "type": "closed", + "name": "Port Simpson Seaplane Base", + "latitude_deg": "54.5667", + "longitude_deg": "-130.432999", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Lax Kw'alaams", + "scheduled_service": "no", + "gps_code": "CAN8", + "iata_code": "YPI", + "local_code": "CAN8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Simpson_Water_Aerodrome", + "keywords": "AN8" + }, + { + "id": "28455", + "ident": "CAN9", + "type": "seaplane_base", + "name": "Vanderhoof (District) Seaplane Base", + "latitude_deg": "54.0206", + "longitude_deg": "-123.995001", + "elevation_ft": "2050", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Vanderhoof", + "scheduled_service": "no", + "gps_code": "CAN9", + "local_code": "CAN9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vanderhoof_(District)_Water_Aerodrome", + "keywords": "AN9, Vanderhoof Flying Club" + }, + { + "id": "634", + "ident": "CAP3", + "type": "small_airport", + "name": "Sechelt-Gibsons Airport", + "latitude_deg": "49.460601806599996", + "longitude_deg": "-123.71900177", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Sechelt", + "scheduled_service": "no", + "gps_code": "CAP3", + "iata_code": "YHS", + "local_code": "CAP3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sechelt-Gibsons_Airport", + "keywords": "AP3, Sechelt Aerodrome, Sunshine Coast Airfield" + }, + { + "id": "28458", + "ident": "CAP5", + "type": "seaplane_base", + "name": "Victoria Airport", + "latitude_deg": "48.6538920506", + "longitude_deg": "-123.450450897", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAP5", + "local_code": "CAP5" + }, + { + "id": "635", + "ident": "CAP6", + "type": "small_airport", + "name": "Ingenika Airport", + "latitude_deg": "56.790599823", + "longitude_deg": "-124.897003174", + "elevation_ft": "2230", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Ingenika", + "scheduled_service": "no", + "gps_code": "CAP6", + "local_code": "CAP6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ingenika_Airport", + "keywords": "WWU" + }, + { + "id": "28274", + "ident": "CAP7", + "type": "seaplane_base", + "name": "Kitkatla Seaplane Base", + "latitude_deg": "53.7999992371", + "longitude_deg": "-130.432998657", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kitkatla", + "scheduled_service": "no", + "gps_code": "CAP7", + "iata_code": "YKK", + "local_code": "CAP7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kitkatla_Water_Aerodrome", + "keywords": "AP7" + }, + { + "id": "28383", + "ident": "CAP8", + "type": "closed", + "name": "Port Washington Seaplane Base", + "latitude_deg": "48.812", + "longitude_deg": "-123.321", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Port Washington", + "scheduled_service": "no", + "local_code": "AP8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Washington_Water_Aerodrome", + "keywords": "AP8, CAP8" + }, + { + "id": "314226", + "ident": "CAP9", + "type": "small_airport", + "name": "Appleton Field", + "latitude_deg": "50.9904", + "longitude_deg": "-113.3703", + "elevation_ft": "3080", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Strathmore", + "scheduled_service": "no", + "gps_code": "CAP9", + "local_code": "CAP9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Strathmore_(Appleton_Field)_Aerodrome" + }, + { + "id": "28196", + "ident": "CAQ3", + "type": "seaplane_base", + "name": "Coal Harbour Seaplane Base", + "latitude_deg": "50.597378", + "longitude_deg": "-127.57865", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Coal Harbour", + "scheduled_service": "no", + "gps_code": "CAQ3", + "local_code": "CAQ3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coal_Harbour_Water_Aerodrome", + "keywords": "AQ3" + }, + { + "id": "636", + "ident": "CAQ4", + "type": "small_airport", + "name": "Springhouse Airpark", + "latitude_deg": "51.95560073852539", + "longitude_deg": "-122.13899993896484", + "elevation_ft": "3250", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Springhouse", + "scheduled_service": "no", + "gps_code": "CAQ4", + "local_code": "CAQ4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Springhouse_Airpark", + "keywords": "AQ4" + }, + { + "id": "637", + "ident": "CAQ5", + "type": "small_airport", + "name": "Nakusp Airport", + "latitude_deg": "50.26639938354492", + "longitude_deg": "-117.81300354003906", + "elevation_ft": "1689", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Nakusp", + "scheduled_service": "no", + "gps_code": "CAQ5", + "local_code": "CAQ5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nakusp_Airport", + "keywords": "AQ5" + }, + { + "id": "28389", + "ident": "CAQ6", + "type": "seaplane_base", + "name": "Queen Charlotte City Seaplane Base", + "latitude_deg": "53.25282", + "longitude_deg": "-132.074214", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAQ6", + "iata_code": "ZQS", + "local_code": "CAQ6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Queen_Charlotte_City_Water_Aerodrome" + }, + { + "id": "28384", + "ident": "CAQ8", + "type": "seaplane_base", + "name": "Powell Lake Seaplane Base", + "latitude_deg": "49.8833007812", + "longitude_deg": "-124.532997131", + "elevation_ft": "183", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAQ8", + "iata_code": "WPL", + "local_code": "CAQ8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Powell_Lake_Water_Aerodrome" + }, + { + "id": "638", + "ident": "CAR2", + "type": "small_airport", + "name": "Crawford Bay Airport", + "latitude_deg": "49.66669845581055", + "longitude_deg": "-116.81700134277344", + "elevation_ft": "1760", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Crawford Bay", + "scheduled_service": "no", + "gps_code": "CAR2", + "local_code": "CAR2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Crawford_Bay_Airport", + "keywords": "AR2" + }, + { + "id": "46600", + "ident": "CAR5", + "type": "small_airport", + "name": "Arthur (Arthur South)", + "latitude_deg": "43.7827292694", + "longitude_deg": "-80.4329252243", + "elevation_ft": "1530", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CAR5", + "keywords": "ar5" + }, + { + "id": "28276", + "ident": "CAR7", + "type": "seaplane_base", + "name": "Kyuquot Seaplane Base", + "latitude_deg": "50.03329849243164", + "longitude_deg": "-127.36699676513672", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAR7", + "local_code": "CAR7" + }, + { + "id": "28176", + "ident": "CAR9", + "type": "seaplane_base", + "name": "Bella Bella/Waglisla Seaplane Base", + "latitude_deg": "52.166698", + "longitude_deg": "-128.132994", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAR9", + "local_code": "CAR9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bella_Bella/Waglisla_Water_Aerodrome" + }, + { + "id": "314749", + "ident": "Cark", + "type": "small_airport", + "name": "Cark airfield", + "latitude_deg": "54.163753", + "longitude_deg": "-2.962299", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Cark", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cark", + "keywords": "Cark" + }, + { + "id": "640", + "ident": "CAS2", + "type": "small_airport", + "name": "Moose Lake (Lodge) Airport", + "latitude_deg": "53.073299407958984", + "longitude_deg": "-125.40899658203125", + "elevation_ft": "3500", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Moose Lake", + "scheduled_service": "no", + "gps_code": "CAS2", + "local_code": "CAS2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moose_Lake_(Lodge)_Airport", + "keywords": "AS2" + }, + { + "id": "641", + "ident": "CAS3", + "type": "closed", + "name": "Barkerville Airport", + "latitude_deg": "53.0881", + "longitude_deg": "-121.514999", + "elevation_ft": "4060", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Barkerville", + "scheduled_service": "no", + "gps_code": "CAS3", + "local_code": "CAS3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barkerville_Airport", + "keywords": "AS3" + }, + { + "id": "28225", + "ident": "CAS4", + "type": "seaplane_base", + "name": "Fort Langley Seaplane Base", + "latitude_deg": "49.166698", + "longitude_deg": "-122.532997", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Fort Langley", + "scheduled_service": "no", + "gps_code": "CAS4", + "local_code": "CAS4" + }, + { + "id": "320490", + "ident": "CAS5", + "type": "heliport", + "name": "Aerosmith Heli Service Heliport", + "latitude_deg": "49.3074", + "longitude_deg": "-124.413302", + "elevation_ft": "282", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Qualicum Beach", + "scheduled_service": "no", + "gps_code": "CAS5", + "local_code": "CAS5", + "home_link": "http://www.aerosmithheli.com/contact-us" + }, + { + "id": "320516", + "ident": "CAS8", + "type": "seaplane_base", + "name": "Roberval (Air Saguenay) Water Aerodrome", + "latitude_deg": "48.526", + "longitude_deg": "-72.22", + "elevation_ft": "321", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Roberval", + "scheduled_service": "no", + "gps_code": "CAS8", + "local_code": "CAS8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roberval_(Air_Saguenay)_Water_Aerodrome", + "keywords": "SM9, Lac Saint-Jean" + }, + { + "id": "642", + "ident": "CAT1", + "type": "small_airport", + "name": "Atwood / Coghlin Airport", + "latitude_deg": "43.6833000183", + "longitude_deg": "-81.00440216060001", + "elevation_ft": "1215", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Atwood", + "scheduled_service": "no", + "gps_code": "CAT1", + "local_code": "CAT1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atwood/Coghlin_Airport", + "keywords": "AT1" + }, + { + "id": "28333", + "ident": "CAT3", + "type": "seaplane_base", + "name": "Nanaimo/Long Lake Seaplane Base", + "latitude_deg": "49.209538", + "longitude_deg": "-124.008982", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Nanaimo", + "scheduled_service": "no", + "gps_code": "CAT3", + "local_code": "CAT3" + }, + { + "id": "643", + "ident": "CAT4", + "type": "small_airport", + "name": "Qualicum Beach Airport", + "latitude_deg": "49.3372", + "longitude_deg": "-124.393997", + "elevation_ft": "191", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Qualicum Beach", + "scheduled_service": "no", + "gps_code": "CAT4", + "iata_code": "XQU", + "local_code": "CAT4", + "home_link": "http://www.qualicumbeach.com/cms.asp?wpID=437", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qualicum_Beach_Airport", + "keywords": "AT4" + }, + { + "id": "644", + "ident": "CAT5", + "type": "small_airport", + "name": "Port Mcneill Airport", + "latitude_deg": "50.5755996704", + "longitude_deg": "-127.028999329", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Port Mcneill", + "scheduled_service": "no", + "gps_code": "CAT5", + "iata_code": "YMP", + "local_code": "CAT5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_McNeill_Airport", + "keywords": "AT5" + }, + { + "id": "645", + "ident": "CAT6", + "type": "closed", + "name": "Campbell River (Campbell River & District General Hospital) Heliport", + "latitude_deg": "50.008783", + "longitude_deg": "-125.242605", + "elevation_ft": "228", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Campbell River", + "scheduled_service": "no", + "keywords": "CAT6" + }, + { + "id": "28301", + "ident": "CAT7", + "type": "seaplane_base", + "name": "Lasqueti Island/False Bay Seaplane Base", + "latitude_deg": "49.5", + "longitude_deg": "-124.3499984741211", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAT7", + "local_code": "CAT7" + }, + { + "id": "646", + "ident": "CAU3", + "type": "small_airport", + "name": "Oliver Airport", + "latitude_deg": "49.173301696777344", + "longitude_deg": "-119.5510025024414", + "elevation_ft": "1015", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Oliver", + "scheduled_service": "no", + "gps_code": "CAU3", + "local_code": "CAU3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oliver_Airport", + "keywords": "AU3" + }, + { + "id": "647", + "ident": "CAU4", + "type": "small_airport", + "name": "Vanderhoof Airport", + "latitude_deg": "54.051607", + "longitude_deg": "-124.010804", + "elevation_ft": "2225", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Vanderhoof", + "scheduled_service": "no", + "gps_code": "CAU4", + "local_code": "CAU4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vanderhoof_Airport", + "keywords": "AU4" + }, + { + "id": "28241", + "ident": "CAU6", + "type": "seaplane_base", + "name": "Gold River Seaplane Base", + "latitude_deg": "49.679217", + "longitude_deg": "-126.116203", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Gold River", + "scheduled_service": "no", + "gps_code": "CAU6", + "local_code": "CAU6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gold_River_Water_Aerodrome", + "keywords": "AU6" + }, + { + "id": "28396", + "ident": "CAU8", + "type": "seaplane_base", + "name": "Rivers Inlet Seaplane Base", + "latitude_deg": "51.683985", + "longitude_deg": "-127.264044", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Rivers Inlet", + "scheduled_service": "no", + "gps_code": "CAU8", + "iata_code": "YRN", + "local_code": "CAU8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rivers_Inlet_Water_Aerodrome", + "keywords": "Oweekeno" + }, + { + "id": "28224", + "ident": "CAU9", + "type": "seaplane_base", + "name": "Fort Grahame Seaplane Base", + "latitude_deg": "56.527500152600005", + "longitude_deg": "-124.472999573", + "elevation_ft": "2205", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAU9", + "local_code": "CAU9" + }, + { + "id": "648", + "ident": "CAV2", + "type": "closed", + "name": "Hope (Fraser Canyon Hospital) Heliport", + "latitude_deg": "49.3769123072", + "longitude_deg": "-121.423408985", + "elevation_ft": "114", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Hope", + "scheduled_service": "no", + "gps_code": "CAV2", + "local_code": "CAV2", + "keywords": "AV2" + }, + { + "id": "649", + "ident": "CAV3", + "type": "small_airport", + "name": "One Hundred Mile House Airport", + "latitude_deg": "51.64250183105469", + "longitude_deg": "-121.30699920654297", + "elevation_ft": "3055", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "One Hundred Mile House", + "scheduled_service": "no", + "gps_code": "CAV3", + "local_code": "CAV3", + "wikipedia_link": "https://en.wikipedia.org/wiki/One_Hundred_Mile_House_Airport", + "keywords": "AV3" + }, + { + "id": "650", + "ident": "CAV4", + "type": "small_airport", + "name": "Mcbride Airport", + "latitude_deg": "53.314998626708984", + "longitude_deg": "-120.1709976196289", + "elevation_ft": "2350", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Mcbride", + "scheduled_service": "no", + "gps_code": "CAV4", + "local_code": "CAV4", + "wikipedia_link": "https://en.wikipedia.org/wiki/McBride_Airport", + "keywords": "AV4" + }, + { + "id": "28432", + "ident": "CAV5", + "type": "seaplane_base", + "name": "Sullivan Bay Seaplane Base", + "latitude_deg": "50.885359", + "longitude_deg": "-126.831069", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Sullivan Bay", + "scheduled_service": "no", + "gps_code": "CAV5", + "iata_code": "YTG", + "local_code": "CAV5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sullivan_Bay_Water_Aerodrome" + }, + { + "id": "45222", + "ident": "CAV6", + "type": "small_airport", + "name": "Beausejour/Av-Ranch Airpark", + "latitude_deg": "50.041111", + "longitude_deg": "-96.585833", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Beausejour", + "scheduled_service": "no", + "gps_code": "CAV6", + "local_code": "CAV6" + }, + { + "id": "28311", + "ident": "CAV7", + "type": "seaplane_base", + "name": "Mansons Landing Seaplane Base", + "latitude_deg": "50.0666999817", + "longitude_deg": "-124.983001709", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAV7", + "iata_code": "YMU", + "local_code": "CAV7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mansons_Landing_Water_Aerodrome" + }, + { + "id": "28414", + "ident": "CAV8", + "type": "seaplane_base", + "name": "Shawnigan Lake Seaplane Base", + "latitude_deg": "48.63330078125", + "longitude_deg": "-123.63300323486328", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAV8", + "local_code": "CAV8" + }, + { + "id": "651", + "ident": "CAV9", + "type": "small_airport", + "name": "Oak Hammock Air Park", + "latitude_deg": "50.142053", + "longitude_deg": "-97.061148", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Saint Andrews", + "scheduled_service": "no", + "gps_code": "CAV9", + "local_code": "CAV9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oak_Hammock_Air_Park_Airport", + "keywords": "AV9" + }, + { + "id": "652", + "ident": "CAW3", + "type": "small_airport", + "name": "Scum Lake Airport", + "latitude_deg": "51.795375", + "longitude_deg": "-123.5816", + "elevation_ft": "3950", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Scum Lake", + "scheduled_service": "no", + "gps_code": "CAW3", + "local_code": "CAW3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Scum_Lake_Airport", + "keywords": "AW3" + }, + { + "id": "653", + "ident": "CAW4", + "type": "heliport", + "name": "Whistler (Hospital) Heliport", + "latitude_deg": "50.120253", + "longitude_deg": "-122.954679", + "elevation_ft": "2182", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Whistler", + "scheduled_service": "no", + "gps_code": "CAW4", + "local_code": "CAW4" + }, + { + "id": "28378", + "ident": "CAW5", + "type": "seaplane_base", + "name": "Port Hardy Seaplane Base", + "latitude_deg": "50.716702", + "longitude_deg": "-127.483002", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Port Hardy", + "scheduled_service": "no", + "gps_code": "CAW5", + "local_code": "CAW5" + }, + { + "id": "28232", + "ident": "CAW6", + "type": "seaplane_base", + "name": "Fort Ware Seaplane Base", + "latitude_deg": "57.4236", + "longitude_deg": "-125.6442", + "elevation_ft": "2480", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAW6", + "local_code": "CAW6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Ware_Water_Aerodrome", + "keywords": "AW6" + }, + { + "id": "28315", + "ident": "CAW7", + "type": "closed", + "name": "Mayne Island Seaplane Base", + "latitude_deg": "48.852241", + "longitude_deg": "-123.301982", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Miners Bay", + "scheduled_service": "no", + "gps_code": "CAW7", + "iata_code": "YAV", + "local_code": "CAW7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mayne_Island_Water_Aerodrome" + }, + { + "id": "28175", + "ident": "CAW8", + "type": "seaplane_base", + "name": "Bella Bella/Shearwater Seaplane Base", + "latitude_deg": "52.150002", + "longitude_deg": "-128.08299", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Bella Bella", + "scheduled_service": "no", + "gps_code": "CAW8", + "iata_code": "YSX", + "local_code": "CAW8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bella_Bella/Shearwater_Water_Aerodrome", + "keywords": "AW8" + }, + { + "id": "28463", + "ident": "CAW9", + "type": "seaplane_base", + "name": "Whaletown Seaplane Base", + "latitude_deg": "50.108504", + "longitude_deg": "-125.051001", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAW9", + "local_code": "CAW9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Whaletown_Water_Aerodrome", + "keywords": "AW9" + }, + { + "id": "44374", + "ident": "CAX2", + "type": "small_airport", + "name": "Axe Lake", + "latitude_deg": "57.2691650390625", + "longitude_deg": "-109.84750366210938", + "elevation_ft": "1758", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no", + "gps_code": "CAX2" + }, + { + "id": "314219", + "ident": "CAX3", + "type": "seaplane_base", + "name": "Sechelt/Porpoise Bay Water Aerodrome", + "latitude_deg": "49.483", + "longitude_deg": "-123.7577", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Sechelt", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sechelt/Porpoise_Bay_Water_Aerodrome", + "keywords": "AX3, CAX3" + }, + { + "id": "654", + "ident": "CAX5", + "type": "small_airport", + "name": "Likely Airport", + "latitude_deg": "52.61669921875", + "longitude_deg": "-121.5", + "elevation_ft": "3225", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Likely", + "scheduled_service": "no", + "gps_code": "CAX5", + "local_code": "CAX5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Likely_Airport", + "keywords": "AX5" + }, + { + "id": "28235", + "ident": "CAX6", + "type": "seaplane_base", + "name": "Ganges Seaplane Base", + "latitude_deg": "48.8545", + "longitude_deg": "-123.4969", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Salt Spring Island", + "scheduled_service": "yes", + "gps_code": "CAX6", + "iata_code": "YGG", + "local_code": "CAX6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ganges_Water_Aerodrome" + }, + { + "id": "28319", + "ident": "CAX7", + "type": "seaplane_base", + "name": "Minstrel Island Seaplane Base", + "latitude_deg": "50.61669921875", + "longitude_deg": "-126.31700134277344", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAX7", + "local_code": "CAX7" + }, + { + "id": "28419", + "ident": "CAX8", + "type": "seaplane_base", + "name": "Smithers/Tyhee Lake Seaplane Base", + "latitude_deg": "54.716702", + "longitude_deg": "-127.050005", + "elevation_ft": "1640", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Smithers", + "scheduled_service": "no", + "gps_code": "CAX8", + "local_code": "CAX8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Smithers/Tyhee_Lake_Water_Aerodrome", + "keywords": "AX8" + }, + { + "id": "655", + "ident": "CAY2", + "type": "small_airport", + "name": "Gang Ranch Airport", + "latitude_deg": "51.551700592041016", + "longitude_deg": "-122.3270034790039", + "elevation_ft": "2150", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Gang Ranch", + "scheduled_service": "no", + "gps_code": "CAY2", + "local_code": "CAY2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gang_Ranch_Airport", + "keywords": "AY2" + }, + { + "id": "28252", + "ident": "CAY4", + "type": "seaplane_base", + "name": "Hartley Bay Seaplane Base", + "latitude_deg": "53.416698", + "longitude_deg": "-129.25", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Hartley Bay", + "scheduled_service": "no", + "gps_code": "CAY4", + "iata_code": "YTB", + "local_code": "CAY4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hartley_Bay_Water_Aerodrome" + }, + { + "id": "311583", + "ident": "CAY5", + "type": "small_airport", + "name": "Ayr/Sargeant Private Airfield", + "latitude_deg": "43.3058333333", + "longitude_deg": "-80.49916666670002", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CAY5" + }, + { + "id": "28320", + "ident": "CAY7", + "type": "seaplane_base", + "name": "Mission Seaplane Base", + "latitude_deg": "49.127765", + "longitude_deg": "-122.301961", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Mission", + "scheduled_service": "no", + "gps_code": "CAY7", + "local_code": "CAY7" + }, + { + "id": "28469", + "ident": "CAY9", + "type": "seaplane_base", + "name": "Winfield (Wood Lake) Seaplane Base", + "latitude_deg": "50.04999923706055", + "longitude_deg": "-119.4000015258789", + "elevation_ft": "1283", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CAY9", + "local_code": "CAY9" + }, + { + "id": "28435", + "ident": "CAZ3", + "type": "seaplane_base", + "name": "Takla Landing Seaplane Base", + "latitude_deg": "55.484", + "longitude_deg": "-125.987", + "elevation_ft": "2260", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Takla Landing", + "scheduled_service": "no", + "gps_code": "CAZ3", + "local_code": "CAZ3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Takla_Landing_Water_Aerodrome", + "keywords": "AZ3" + }, + { + "id": "656", + "ident": "CAZ4", + "type": "heliport", + "name": "Quesnel (G.R. Baker Memorial Hospital) Heliport", + "latitude_deg": "52.9826679166", + "longitude_deg": "-122.500758469", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Quesnel", + "scheduled_service": "no", + "gps_code": "CAZ4", + "local_code": "CAZ4", + "keywords": "AZ4" + }, + { + "id": "657", + "ident": "CAZ5", + "type": "medium_airport", + "name": "Cache Creek-Ashcroft Regional Airport", + "latitude_deg": "50.775258", + "longitude_deg": "-121.321314", + "elevation_ft": "2034", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Cache Creek", + "scheduled_service": "yes", + "gps_code": "CAZ5", + "iata_code": "YZA", + "local_code": "CAZ5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cache_Creek_Airport", + "keywords": "AZ5" + }, + { + "id": "28229", + "ident": "CAZ6", + "type": "seaplane_base", + "name": "Fort St. James/Stuart River Seaplane Base", + "latitude_deg": "54.419", + "longitude_deg": "-124.271", + "elevation_ft": "2238", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Fort St. James", + "scheduled_service": "no", + "gps_code": "CAZ6", + "local_code": "CAZ6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_St._James/Stuart_River_Water_Aerodrome", + "keywords": "AZ6" + }, + { + "id": "28273", + "ident": "CBA3", + "type": "seaplane_base", + "name": "Kincolith Seaplane Base", + "latitude_deg": "55", + "longitude_deg": "-129.9499969482422", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CBA3", + "local_code": "CBA3" + }, + { + "id": "310995", + "ident": "CBA6", + "type": "seaplane_base", + "name": "Bala/Muskoka Float Flying Club Seaplane Base", + "latitude_deg": "45.0355", + "longitude_deg": "-79.555333", + "elevation_ft": "739", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CBA6" + }, + { + "id": "658", + "ident": "CBA8", + "type": "small_airport", + "name": "Beaverley Airport", + "latitude_deg": "53.85559844970703", + "longitude_deg": "-122.90799713134766", + "elevation_ft": "2420", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Beaverley", + "scheduled_service": "no", + "gps_code": "CBA8", + "local_code": "CBA8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beaverley_Airport", + "keywords": "BA8" + }, + { + "id": "659", + "ident": "CBA9", + "type": "small_airport", + "name": "Ospika Airport", + "latitude_deg": "56.275001525878906", + "longitude_deg": "-124.052001953125", + "elevation_ft": "2300", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Ospika", + "scheduled_service": "no", + "gps_code": "CBA9", + "local_code": "CBA9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ospika_Airport", + "keywords": "BA9" + }, + { + "id": "660", + "ident": "CBB2", + "type": "closed", + "name": "Campbell River (West Coast) Heliport", + "latitude_deg": "50.046398", + "longitude_deg": "-125.252996", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Campbell River", + "scheduled_service": "no", + "keywords": "BB2, CBB2" + }, + { + "id": "320797", + "ident": "CBB3", + "type": "seaplane_base", + "name": "Lake Muskoka/Boyd Bay Seaplane Base", + "latitude_deg": "45.0505", + "longitude_deg": "-79.409002", + "elevation_ft": "742", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Lake Muskoka", + "scheduled_service": "no", + "gps_code": "CBB3", + "local_code": "CBB3" + }, + { + "id": "320186", + "ident": "CBB4", + "type": "heliport", + "name": "Beddis Beach Helipad", + "latitude_deg": "48.79997", + "longitude_deg": "-123.4236", + "elevation_ft": "717", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Strait of Georgia", + "scheduled_service": "no", + "gps_code": "CBB4", + "local_code": "CBB4" + }, + { + "id": "661", + "ident": "CBB5", + "type": "heliport", + "name": "Port Alice (Hospital) Heliport", + "latitude_deg": "50.4257417034", + "longitude_deg": "-127.488433421", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Port Alice", + "scheduled_service": "no", + "gps_code": "CBB5", + "local_code": "CBB5", + "keywords": "BB5" + }, + { + "id": "662", + "ident": "CBB7", + "type": "small_airport", + "name": "Tipella Airport", + "latitude_deg": "49.743099212646484", + "longitude_deg": "-122.16300201416016", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Tipella", + "scheduled_service": "no", + "gps_code": "CBB7", + "local_code": "CBB7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tipella_Airport", + "keywords": "BB7" + }, + { + "id": "663", + "ident": "CBB9", + "type": "small_airport", + "name": "Osoyoos Airport", + "latitude_deg": "49.0372009277", + "longitude_deg": "-119.488998413", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Osoyoos", + "scheduled_service": "no", + "gps_code": "CBB9", + "local_code": "CBB9", + "home_link": "http://www.sunnyosoyoos.com/webpages1/airport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Osoyoos_Airport", + "keywords": "BB9" + }, + { + "id": "664", + "ident": "CBBC", + "type": "medium_airport", + "name": "Bella Bella (Campbell Island) Airport", + "latitude_deg": "52.185001", + "longitude_deg": "-128.156994", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Bella Bella", + "scheduled_service": "yes", + "gps_code": "CBBC", + "iata_code": "ZEL", + "local_code": "CBBC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bella_Bella_(Campbell_Island)_Airport", + "keywords": "BBC" + }, + { + "id": "301825", + "ident": "CBC", + "type": "small_airport", + "name": "Cherrabun Airport", + "latitude_deg": "-18.917777777800005", + "longitude_deg": "125.537777778", + "elevation_ft": "540", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "iata_code": "CBC" + }, + { + "id": "665", + "ident": "CBC2", + "type": "small_airport", + "name": "Ford Bay Airport", + "latitude_deg": "66.0374984741211", + "longitude_deg": "-124.71499633789062", + "elevation_ft": "673", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Ford Bay", + "scheduled_service": "no", + "gps_code": "CBC2", + "local_code": "CBC2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ford_Bay_Airport", + "keywords": "BC2" + }, + { + "id": "28153", + "ident": "CBC3", + "type": "seaplane_base", + "name": "Alert Bay Seaplane Base", + "latitude_deg": "50.58330154418945", + "longitude_deg": "-126.93299865722656", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CBC3", + "local_code": "CBC3" + }, + { + "id": "666", + "ident": "CBC4", + "type": "heliport", + "name": "Kamloops (Royal Inland Hospital) Heliport", + "latitude_deg": "50.669028798", + "longitude_deg": "-120.333158076", + "elevation_ft": "1349", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kamloops", + "scheduled_service": "no", + "gps_code": "CBC4", + "local_code": "CBC4", + "keywords": "BC4" + }, + { + "id": "46522", + "ident": "CBC5", + "type": "closed", + "name": "Victoria (BC Hydro) Heliport", + "latitude_deg": "48.490004", + "longitude_deg": "-123.390292", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Victoria", + "scheduled_service": "no", + "keywords": "CBC5" + }, + { + "id": "44692", + "ident": "CBC6", + "type": "heliport", + "name": "Calgary / Blue-Con Heliport", + "latitude_deg": "50.9969638393", + "longitude_deg": "-113.89388904", + "elevation_ft": "3440", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "no", + "gps_code": "CBC6", + "local_code": "CBC6", + "keywords": "BC6" + }, + { + "id": "667", + "ident": "CBC7", + "type": "heliport", + "name": "Harbour (Public) Heliport", + "latitude_deg": "49.2868921105", + "longitude_deg": "-123.106112257", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Vancouver", + "scheduled_service": "no", + "gps_code": "CBC7", + "local_code": "CBC7", + "keywords": "BC7" + }, + { + "id": "668", + "ident": "CBC8", + "type": "heliport", + "name": "Tofino (Hospital) Heliport", + "latitude_deg": "49.151100158691406", + "longitude_deg": "-125.90899658203125", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Tofino", + "scheduled_service": "no", + "gps_code": "CBC8", + "local_code": "CBC8", + "keywords": "BC8" + }, + { + "id": "669", + "ident": "CBC9", + "type": "heliport", + "name": "Burgeo (Calder Health Care Corp) Heliport", + "latitude_deg": "47.613179191899995", + "longitude_deg": "-57.62399911879999", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Burgeo", + "scheduled_service": "no", + "gps_code": "CBC9", + "local_code": "CBC9", + "keywords": "BC9" + }, + { + "id": "670", + "ident": "CBD2", + "type": "heliport", + "name": "Delta (North) Heliport", + "latitude_deg": "49.1199607211", + "longitude_deg": "-123.047267944", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Vancouver", + "scheduled_service": "no", + "gps_code": "CBD2", + "local_code": "CBD2", + "keywords": "BD2" + }, + { + "id": "28207", + "ident": "CBD3", + "type": "closed", + "name": "Dawson Creek Seaplane Base", + "latitude_deg": "55.7449989319", + "longitude_deg": "-120.182998657", + "elevation_ft": "2145", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CBD3", + "local_code": "CBD3" + }, + { + "id": "671", + "ident": "CBD5", + "type": "closed", + "name": "Takla Narrows Airport", + "latitude_deg": "55.1635488669", + "longitude_deg": "-125.706124306", + "elevation_ft": "2380", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Takla Narrows", + "scheduled_service": "no", + "gps_code": "CBD5", + "local_code": "CBD5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Takla_Narrows_Aerodrome", + "keywords": "BD5" + }, + { + "id": "672", + "ident": "CBD6", + "type": "small_airport", + "name": "Nahanni Butte Airport", + "latitude_deg": "61.029701232910156", + "longitude_deg": "-123.38899993896484", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Nahanni Butte", + "scheduled_service": "no", + "gps_code": "CBD6", + "local_code": "CBD6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nahanni_Butte_Airport", + "keywords": "BD6" + }, + { + "id": "673", + "ident": "CBD9", + "type": "heliport", + "name": "White Saddle Ranch Heliport", + "latitude_deg": "51.741853", + "longitude_deg": "-124.738887", + "elevation_ft": "2925", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "White Saddle Ranch", + "scheduled_service": "no", + "gps_code": "CBD9", + "local_code": "CBD9", + "keywords": "BD9" + }, + { + "id": "674", + "ident": "CBE2", + "type": "small_airport", + "name": "Elko Airport", + "latitude_deg": "49.28329849243164", + "longitude_deg": "-115.1500015258789", + "elevation_ft": "2850", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Elko", + "scheduled_service": "no", + "gps_code": "CBE2", + "local_code": "CBE2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elko_Airport", + "keywords": "BE2" + }, + { + "id": "675", + "ident": "CBE3", + "type": "heliport", + "name": "Beamsville/Panterra Heliport", + "latitude_deg": "43.186552790200004", + "longitude_deg": "-79.47424471379999", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Beamsville", + "scheduled_service": "no", + "gps_code": "CBE3", + "local_code": "CBE3", + "keywords": "BE3" + }, + { + "id": "28156", + "ident": "CBE7", + "type": "seaplane_base", + "name": "Alliford Bay Seaplane Base", + "latitude_deg": "53.21500015258789", + "longitude_deg": "-131.99099731445312", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CBE7", + "local_code": "CBE7" + }, + { + "id": "28326", + "ident": "CBE8", + "type": "seaplane_base", + "name": "Moose Lake (Lodge) Seaplane Base", + "latitude_deg": "53.075801849365234", + "longitude_deg": "-125.4010009765625", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CBE8", + "local_code": "CBE8" + }, + { + "id": "676", + "ident": "CBE9", + "type": "heliport", + "name": "Whistler (Municipal) Heliport", + "latitude_deg": "50.168377378100004", + "longitude_deg": "-122.904754132", + "elevation_ft": "2116", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Whistler", + "scheduled_service": "no", + "gps_code": "CBE9", + "local_code": "CBE9", + "keywords": "BE9" + }, + { + "id": "46602", + "ident": "CBF2", + "type": "small_airport", + "name": "Belwood (Baird Field)", + "latitude_deg": "43.808333333", + "longitude_deg": "-80.3119444444", + "elevation_ft": "1410", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CBF2", + "keywords": "bf2" + }, + { + "id": "677", + "ident": "CBF4", + "type": "heliport", + "name": "Mission (Public Safety) Heliport", + "latitude_deg": "49.132753634", + "longitude_deg": "-122.343615219", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Mission", + "scheduled_service": "no", + "gps_code": "CBF4", + "local_code": "CBF4", + "keywords": "BF4" + }, + { + "id": "678", + "ident": "CBF5", + "type": "heliport", + "name": "Mayne Island (Medical Emergency) Heliport", + "latitude_deg": "48.846510141699994", + "longitude_deg": "-123.283567876", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Mayne Island", + "scheduled_service": "no", + "gps_code": "CBF5", + "local_code": "CBF5", + "keywords": "BF5" + }, + { + "id": "679", + "ident": "CBF6", + "type": "heliport", + "name": "Seal Cove (Public) Heliport", + "latitude_deg": "54.33000183105469", + "longitude_deg": "-130.2779998779297", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Prince Rupert", + "scheduled_service": "no", + "gps_code": "CBF6", + "local_code": "CBF6", + "keywords": "BF6" + }, + { + "id": "680", + "ident": "CBF7", + "type": "heliport", + "name": "Victoria Harbour (Camel Point) Heliport", + "latitude_deg": "48.41809844970703", + "longitude_deg": "-123.38800048828125", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Victoria", + "scheduled_service": "no", + "gps_code": "CBF7", + "local_code": "CBF7", + "keywords": "BF7" + }, + { + "id": "28328", + "ident": "CBF8", + "type": "seaplane_base", + "name": "Muncho Lake/Mile 462 Seaplane Base", + "latitude_deg": "59.0099983215332", + "longitude_deg": "-125.77400207519531", + "elevation_ft": "2681", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CBF8", + "local_code": "CBF8" + }, + { + "id": "681", + "ident": "CBF9", + "type": "small_airport", + "name": "Mabel Lake Airport", + "latitude_deg": "50.6088981628418", + "longitude_deg": "-118.73100280761719", + "elevation_ft": "1410", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Mabel Lake", + "scheduled_service": "no", + "gps_code": "CBF9", + "local_code": "CBF9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mabel_Lake_Airport", + "keywords": "BF9" + }, + { + "id": "682", + "ident": "CBG2", + "type": "small_airport", + "name": "Green Lake Airport", + "latitude_deg": "51.42940139770508", + "longitude_deg": "-121.20999908447266", + "elevation_ft": "3550", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Green Lake", + "scheduled_service": "no", + "gps_code": "CBG2", + "local_code": "CBG2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Green_Lake_Airport", + "keywords": "BG2" + }, + { + "id": "683", + "ident": "CBG5", + "type": "heliport", + "name": "Nanaimo (Regional General Hospital) Heliport", + "latitude_deg": "49.185749", + "longitude_deg": "-123.971757", + "elevation_ft": "292", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Nanaimo", + "scheduled_service": "no", + "gps_code": "CBG5", + "local_code": "CBG5", + "keywords": "BG5" + }, + { + "id": "684", + "ident": "CBG8", + "type": "heliport", + "name": "Prince George (Pacific Western Helicopters) Heliport", + "latitude_deg": "53.8775233186", + "longitude_deg": "-122.766669989", + "elevation_ft": "1940", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Prince George", + "scheduled_service": "no", + "gps_code": "CBG8", + "local_code": "CBG8", + "keywords": "BG8" + }, + { + "id": "28204", + "ident": "CBG9", + "type": "seaplane_base", + "name": "Courtenay Airpark Seaplane Base", + "latitude_deg": "49.6814002991", + "longitude_deg": "-124.981002808", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CBG9", + "local_code": "CBG9" + }, + { + "id": "685", + "ident": "CBH2", + "type": "small_airport", + "name": "Helmet Airport", + "latitude_deg": "59.4258", + "longitude_deg": "-120.797997", + "elevation_ft": "1930", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Helmet", + "scheduled_service": "no", + "gps_code": "CBH2", + "local_code": "CBH2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Helmet_Airport", + "keywords": "BH2, Helmut" + }, + { + "id": "686", + "ident": "CBH4", + "type": "small_airport", + "name": "Prairie Creek Airport", + "latitude_deg": "61.564701080322266", + "longitude_deg": "-124.81500244140625", + "elevation_ft": "2950", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Prairie Creek", + "scheduled_service": "no", + "gps_code": "CBH4", + "local_code": "CBH4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Prairie_Creek_Airport", + "keywords": "BH4" + }, + { + "id": "320083", + "ident": "CBH7", + "type": "small_airport", + "name": "Hillmans Farm Airport", + "latitude_deg": "52.228", + "longitude_deg": "-114.256202", + "elevation_ft": "2995", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Benalto", + "scheduled_service": "no", + "gps_code": "CBH7", + "local_code": "CBH7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Benalto/Hillman%27s_Farm_Aerodrome" + }, + { + "id": "687", + "ident": "CBJ4", + "type": "small_airport", + "name": "Echo Valley Airport", + "latitude_deg": "51.24169921875", + "longitude_deg": "-121.99400329589844", + "elevation_ft": "3650", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Echo Valley", + "scheduled_service": "no", + "gps_code": "CBJ4", + "local_code": "CBJ4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Echo_Valley_Airport", + "keywords": "BJ4" + }, + { + "id": "28233", + "ident": "CBJ8", + "type": "seaplane_base", + "name": "Fraser Lake Seaplane Base", + "latitude_deg": "54.0666999817", + "longitude_deg": "-124.883003235", + "elevation_ft": "2205", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CBJ8", + "local_code": "CBJ8" + }, + { + "id": "688", + "ident": "CBJ9", + "type": "heliport", + "name": "San Juan Point (Coast Guard) Heliport", + "latitude_deg": "48.531491", + "longitude_deg": "-124.458178", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "San Juan Point", + "scheduled_service": "no", + "gps_code": "CBJ9", + "local_code": "CBJ9", + "keywords": "BJ9" + }, + { + "id": "689", + "ident": "CBK4", + "type": "heliport", + "name": "Vancouver (General Hospital) Heliport", + "latitude_deg": "49.261946699", + "longitude_deg": "-123.124410957", + "elevation_ft": "235", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Vancouver", + "scheduled_service": "no", + "gps_code": "CBK4", + "local_code": "CBK4", + "keywords": "BK4" + }, + { + "id": "690", + "ident": "CBK5", + "type": "heliport", + "name": "Port Alberni (West Coast General Hospital) Heliport", + "latitude_deg": "49.248839168699995", + "longitude_deg": "-124.783036038", + "elevation_ft": "272", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Port Alberni", + "scheduled_service": "no", + "gps_code": "CBK5", + "local_code": "CBK5", + "keywords": "BK5" + }, + { + "id": "691", + "ident": "CBK6", + "type": "small_airport", + "name": "Quesnel Lake Airport", + "latitude_deg": "52.51499938964844", + "longitude_deg": "-121.04499816894531", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Quesnel Lake", + "scheduled_service": "no", + "gps_code": "CBK6", + "local_code": "CBK6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quesnel_Lake_Airport", + "keywords": "BK6" + }, + { + "id": "692", + "ident": "CBK7", + "type": "small_airport", + "name": "Mile 422 (Alaska Highway) Airport", + "latitude_deg": "58.84939956665039", + "longitude_deg": "-125.23999786376953", + "elevation_ft": "2400", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Toad River", + "scheduled_service": "no", + "gps_code": "CBK7", + "local_code": "CBK7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toad_River/Mile_422_(Alaska_Highway)_Airport", + "keywords": "BK7" + }, + { + "id": "693", + "ident": "CBK8", + "type": "heliport", + "name": "Victoria (Royal Jubilee Hospital) Heliport", + "latitude_deg": "48.4342939918", + "longitude_deg": "-123.325164914", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Victoria", + "scheduled_service": "no", + "gps_code": "CBK8", + "local_code": "CBK8", + "keywords": "BK8" + }, + { + "id": "694", + "ident": "CBK9", + "type": "heliport", + "name": "Little Parker Island Heliport", + "latitude_deg": "48.896400451660156", + "longitude_deg": "-123.41799926757812", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Little Parker Island", + "scheduled_service": "no", + "gps_code": "CBK9", + "local_code": "CBK9", + "keywords": "BK9" + }, + { + "id": "321881", + "ident": "CBL2", + "type": "seaplane_base", + "name": "Buck Lake Seaplane Base", + "latitude_deg": "44.7717", + "longitude_deg": "-79.413", + "elevation_ft": "709", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Severn Bridge", + "scheduled_service": "no", + "gps_code": "CBL2", + "local_code": "CBL2" + }, + { + "id": "695", + "ident": "CBL3", + "type": "small_airport", + "name": "Gordon Field", + "latitude_deg": "58.81669998168945", + "longitude_deg": "-122.78299713134766", + "elevation_ft": "1625", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Fort Nelson", + "scheduled_service": "no", + "gps_code": "CBL3", + "local_code": "CBL3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Nelson/Gordon_Field_Airport", + "keywords": "BL3" + }, + { + "id": "696", + "ident": "CBL4", + "type": "heliport", + "name": "Bassano (Health Centre) Heliport", + "latitude_deg": "50.79029846191406", + "longitude_deg": "-112.46099853515625", + "elevation_ft": "2606", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Bassano", + "scheduled_service": "no", + "gps_code": "CBL4", + "local_code": "CBL4", + "keywords": "BL4" + }, + { + "id": "697", + "ident": "CBL6", + "type": "small_airport", + "name": "Radium Hot Springs Airport", + "latitude_deg": "50.627155", + "longitude_deg": "-116.094981", + "elevation_ft": "2650", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Radium Hot Springs", + "scheduled_service": "no", + "gps_code": "CBL6", + "local_code": "CBL6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Radium_Hot_Springs_Airport", + "keywords": "BL6" + }, + { + "id": "698", + "ident": "CBL7", + "type": "heliport", + "name": "Cortes Island Heliport", + "latitude_deg": "50.05860137939453", + "longitude_deg": "-124.98200225830078", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Cortes Island", + "scheduled_service": "no", + "gps_code": "CBL7", + "local_code": "CBL7", + "keywords": "BL7" + }, + { + "id": "320180", + "ident": "CBL8", + "type": "small_airport", + "name": "Bala Airport", + "latitude_deg": "45.030605", + "longitude_deg": "-79.617801", + "elevation_ft": "814", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Bala", + "scheduled_service": "no", + "gps_code": "CBL8", + "local_code": "CBL8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bala_Aerodrome" + }, + { + "id": "699", + "ident": "CBL9", + "type": "small_airport", + "name": "Elkin Creek Guest Ranch Airport", + "latitude_deg": "51.51279830932617", + "longitude_deg": "-123.80400085449219", + "elevation_ft": "4080", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Elkin Creek", + "scheduled_service": "no", + "gps_code": "CBL9", + "local_code": "CBL9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elkin_Creek_Guest_Ranch_Airport", + "keywords": "BL9" + }, + { + "id": "314447", + "ident": "CBM2", + "type": "small_airport", + "name": "Blackstock / Martyn", + "latitude_deg": "44.093", + "longitude_deg": "-78.7367", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CBM2" + }, + { + "id": "332265", + "ident": "CBM3", + "type": "small_airport", + "name": "Bruce Mines / Kerr Field", + "latitude_deg": "46.3383333", + "longitude_deg": "-83.711111", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CBM3", + "local_code": "CBM3" + }, + { + "id": "700", + "ident": "CBM5", + "type": "closed", + "name": "Telegraph Creek Airport", + "latitude_deg": "57.914369", + "longitude_deg": "-131.125592", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Telegraph Creek", + "scheduled_service": "no", + "gps_code": "CBM5", + "iata_code": "YTX", + "local_code": "CBM5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Telegraph_Creek_Airport", + "keywords": "BM5" + }, + { + "id": "701", + "ident": "CBM6", + "type": "small_airport", + "name": "Midway Airport", + "latitude_deg": "49.0099983215332", + "longitude_deg": "-118.79000091552734", + "elevation_ft": "1896", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Midway", + "scheduled_service": "no", + "gps_code": "CBM6", + "local_code": "CBM6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Midway_Airport_(British_Columbia)", + "keywords": "BM6" + }, + { + "id": "320082", + "ident": "CBM7", + "type": "heliport", + "name": "Banff - Mineral Springs Hospital Helipad", + "latitude_deg": "51.179658", + "longitude_deg": "-115.576093", + "elevation_ft": "4593", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Banff", + "scheduled_service": "no", + "gps_code": "CBM7", + "local_code": "CBM7" + }, + { + "id": "702", + "ident": "CBM9", + "type": "heliport", + "name": "Port McNeill (Hospital) Heliport", + "latitude_deg": "50.581676562", + "longitude_deg": "-127.066806257", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Port Mcneill", + "scheduled_service": "no", + "gps_code": "CBM9", + "local_code": "CBM9", + "keywords": "BM9" + }, + { + "id": "320087", + "ident": "CBN2", + "type": "heliport", + "name": "Bonnyville Health Care Centre Helipad", + "latitude_deg": "54.264", + "longitude_deg": "-110.7405", + "elevation_ft": "1810", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Bonnyville", + "scheduled_service": "no", + "gps_code": "CBN2", + "local_code": "CBN2" + }, + { + "id": "46537", + "ident": "cbn3", + "type": "heliport", + "name": "Buffalo Narrows (Fire Centre) Heliport", + "latitude_deg": "55.834240702699994", + "longitude_deg": "-108.404202461", + "elevation_ft": "1411", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Buffalo Narrows", + "scheduled_service": "no", + "gps_code": "CBN3", + "local_code": "CBN3", + "keywords": "BN3" + }, + { + "id": "28312", + "ident": "CBN4", + "type": "seaplane_base", + "name": "Masset Seaplane Base", + "latitude_deg": "54.016700744628906", + "longitude_deg": "-132.14999389648438", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CBN4", + "local_code": "CBN4" + }, + { + "id": "43877", + "ident": "CBN7", + "type": "small_airport", + "name": "Beaverton North", + "latitude_deg": "44.45207", + "longitude_deg": "-79.12405", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "local_code": "CBN7" + }, + { + "id": "703", + "ident": "CBN9", + "type": "small_airport", + "name": "Tsay Keh Airport", + "latitude_deg": "56.90610122680664", + "longitude_deg": "-124.96499633789062", + "elevation_ft": "2280", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Tsay Keh", + "scheduled_service": "no", + "gps_code": "CBN9", + "local_code": "CBN9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tsay_Keh_Airport", + "keywords": "BN9" + }, + { + "id": "704", + "ident": "CBP2", + "type": "heliport", + "name": "Banff Park Compound Heliport", + "latitude_deg": "51.191085", + "longitude_deg": "-115.558311", + "elevation_ft": "4570", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Banff", + "scheduled_service": "no", + "gps_code": "CBP2", + "local_code": "CBP2", + "keywords": "BP2" + }, + { + "id": "705", + "ident": "CBP3", + "type": "heliport", + "name": "Fernie (Elk Valley Hospital) Heliport", + "latitude_deg": "49.5", + "longitude_deg": "-115.06700134277344", + "elevation_ft": "3300", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Fernie", + "scheduled_service": "no", + "gps_code": "CBP3", + "local_code": "CBP3", + "keywords": "BP3" + }, + { + "id": "706", + "ident": "CBP4", + "type": "heliport", + "name": "Sechelt (St. Mary's Hospital) Heliport", + "latitude_deg": "49.476225279", + "longitude_deg": "-123.748554289", + "elevation_ft": "179", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Sechelt", + "scheduled_service": "no", + "gps_code": "CBP4", + "local_code": "CBP4", + "keywords": "BP4" + }, + { + "id": "707", + "ident": "CBP5", + "type": "heliport", + "name": "Lillooet (CC Helicopters 2011) Heliport", + "latitude_deg": "50.685104046", + "longitude_deg": "-121.927245855", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Lillooet", + "scheduled_service": "no", + "gps_code": "CBP5", + "local_code": "CBP5", + "keywords": "BP5" + }, + { + "id": "708", + "ident": "CBQ2", + "type": "small_airport", + "name": "Fort Langley Airport", + "latitude_deg": "49.16749954223633", + "longitude_deg": "-122.55500030517578", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Fort Langley", + "scheduled_service": "no", + "gps_code": "CBQ2", + "local_code": "CBQ2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Langley_Airport", + "keywords": "BQ2" + }, + { + "id": "709", + "ident": "CBQ7", + "type": "small_airport", + "name": "Kemess Creek Airport", + "latitude_deg": "56.97439956665039", + "longitude_deg": "-126.74099731445312", + "elevation_ft": "4191", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kemess Creek", + "scheduled_service": "no", + "gps_code": "CBQ7", + "local_code": "CBQ7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kemess_Creek_Airport", + "keywords": "BQ7" + }, + { + "id": "710", + "ident": "CBQ8", + "type": "small_airport", + "name": "Woodcock Airport", + "latitude_deg": "55.06669998168945", + "longitude_deg": "-128.23300170898438", + "elevation_ft": "537", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Woodcock", + "scheduled_service": "no", + "gps_code": "CBQ8", + "local_code": "CBQ8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Woodcock_Airport", + "keywords": "BQ8" + }, + { + "id": "28390", + "ident": "CBQ9", + "type": "seaplane_base", + "name": "Quennell Lake Seaplane Base", + "latitude_deg": "49.077497", + "longitude_deg": "-123.831001", + "elevation_ft": "122", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Nanaimo", + "scheduled_service": "no", + "gps_code": "CBQ9", + "local_code": "CBQ9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nanaimo/Quennell_Lake_Water_Aerodrome" + }, + { + "id": "711", + "ident": "CBR2", + "type": "small_airport", + "name": "Kaslo Airport", + "latitude_deg": "49.90359878540039", + "longitude_deg": "-116.93499755859375", + "elevation_ft": "2354", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kaslo", + "scheduled_service": "no", + "gps_code": "CBR2", + "local_code": "CBR2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kaslo_Airport", + "keywords": "BR2" + }, + { + "id": "298375", + "ident": "CBR4", + "type": "small_airport", + "name": "Clinton / Bleibler Ranch", + "latitude_deg": "51.266802", + "longitude_deg": "-121.685772", + "elevation_ft": "3695", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "CYIN", + "local_code": "CYIN", + "keywords": "BR4, CBR4" + }, + { + "id": "712", + "ident": "CBR7", + "type": "heliport", + "name": "Tofino Lifeboat Station Heliport", + "latitude_deg": "49.13330078125", + "longitude_deg": "-125.9000015258789", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Tofino", + "scheduled_service": "no", + "gps_code": "CBR7", + "local_code": "CBR7", + "keywords": "BR7" + }, + { + "id": "713", + "ident": "CBR8", + "type": "heliport", + "name": "Prince Rupert (Hospital) Heliport", + "latitude_deg": "54.3046989440918", + "longitude_deg": "-130.3300018310547", + "elevation_ft": "279", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Prince Rupert", + "scheduled_service": "no", + "gps_code": "CBR8", + "local_code": "CBR8", + "keywords": "BR8" + }, + { + "id": "320088", + "ident": "CBR9", + "type": "small_airport", + "name": "Anchor 9 Ranch Airport", + "latitude_deg": "51.4125", + "longitude_deg": "-114.580201", + "elevation_ft": "4266", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Bottrel", + "scheduled_service": "no", + "gps_code": "CBR9", + "local_code": "CBR9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bottrel/Anchor_9_Ranch_Aerodrome" + }, + { + "id": "320295", + "ident": "CBS2", + "type": "small_airport", + "name": "Blue Sky Airport", + "latitude_deg": "49.2939", + "longitude_deg": "-103.0197", + "elevation_ft": "1921", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Estevan", + "scheduled_service": "no", + "gps_code": "CBS2", + "local_code": "CBS2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Estevan_(Blue_Sky)_Aerodrome" + }, + { + "id": "714", + "ident": "CBS4", + "type": "small_airport", + "name": "Mule Creek Airport", + "latitude_deg": "59.78559875488281", + "longitude_deg": "-136.58299255371094", + "elevation_ft": "2900", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Mule Creek", + "scheduled_service": "no", + "gps_code": "CBS4", + "local_code": "CBS4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mule_Creek_Airport", + "keywords": "BS4" + }, + { + "id": "715", + "ident": "CBS5", + "type": "heliport", + "name": "Port Hardy (Hospital) Heliport", + "latitude_deg": "50.7206229115", + "longitude_deg": "-127.502938807", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Port Hardy", + "scheduled_service": "no", + "gps_code": "CBS5", + "local_code": "CBS5", + "keywords": "BS5" + }, + { + "id": "716", + "ident": "CBS7", + "type": "small_airport", + "name": "Briercrest South Airport", + "latitude_deg": "50.06639862060547", + "longitude_deg": "-105.3010025024414", + "elevation_ft": "2120", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Briercrest South", + "scheduled_service": "no", + "gps_code": "CBS7", + "local_code": "CBS7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Briercrest_South_Airport", + "keywords": "BS7" + }, + { + "id": "717", + "ident": "CBS8", + "type": "small_airport", + "name": "Alberni Valley Regional Airport", + "latitude_deg": "49.321899", + "longitude_deg": "-124.931", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Port Alberni", + "scheduled_service": "yes", + "gps_code": "CBS8", + "iata_code": "YPB", + "local_code": "CBS8", + "home_link": "http://www.acrd.bc.ca/avra", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Alberni_(Alberni_Valley_Regional)_Airport", + "keywords": "BS8" + }, + { + "id": "718", + "ident": "CBS9", + "type": "heliport", + "name": "Blairmore (Crowsnest Pass Health Centre) Heliport", + "latitude_deg": "49.6161", + "longitude_deg": "-114.457001", + "elevation_ft": "4292", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Blairmore", + "scheduled_service": "no", + "gps_code": "CBS9", + "local_code": "CBS9", + "keywords": "BS9" + }, + { + "id": "719", + "ident": "CBT3", + "type": "small_airport", + "name": "Tsetzi Lake (Pan Phillips) Airport", + "latitude_deg": "52.971900939941406", + "longitude_deg": "-125.0270004272461", + "elevation_ft": "3550", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Tsetzi Lake", + "scheduled_service": "no", + "gps_code": "CBT3", + "local_code": "CBT3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tsetzi_Lake_(Pan_Phillips)_Airport", + "keywords": "BT3" + }, + { + "id": "720", + "ident": "CBT5", + "type": "heliport", + "name": "Golden (Golden & District General Hospital) Heliport", + "latitude_deg": "51.297048", + "longitude_deg": "-116.966994", + "elevation_ft": "2575", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Golden", + "scheduled_service": "no", + "gps_code": "CBT5", + "local_code": "CBT5" + }, + { + "id": "721", + "ident": "CBT6", + "type": "small_airport", + "name": "Quilchena Airport", + "latitude_deg": "50.1618895996", + "longitude_deg": "-120.507745743", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Quilchena", + "scheduled_service": "no", + "gps_code": "CBT6", + "local_code": "CBT6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quilchena_Airport", + "keywords": "BT6" + }, + { + "id": "722", + "ident": "CBT9", + "type": "heliport", + "name": "Sproat Lake Tanker Base Heliport", + "latitude_deg": "49.28981723689999", + "longitude_deg": "-124.939095676", + "elevation_ft": "103", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Port Alberni", + "scheduled_service": "no", + "gps_code": "CBT9", + "local_code": "CBT9", + "keywords": "BT9" + }, + { + "id": "723", + "ident": "CBU2", + "type": "small_airport", + "name": "Eddontenajon / Iskut Village Airport", + "latitude_deg": "57.847994155", + "longitude_deg": "-129.983968735", + "elevation_ft": "3100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Eddontenajon", + "scheduled_service": "no", + "gps_code": "CBU2", + "local_code": "CBU2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eddontenajon/Iskut_Village_Airport", + "keywords": "BU2" + }, + { + "id": "724", + "ident": "CBU4", + "type": "heliport", + "name": "Prince Rupert (Hydro) Heliport", + "latitude_deg": "54.31169891357422", + "longitude_deg": "-130.29400634765625", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Prince Rupert", + "scheduled_service": "no", + "gps_code": "CBU4", + "local_code": "CBU4", + "keywords": "BU4" + }, + { + "id": "725", + "ident": "CBU5", + "type": "heliport", + "name": "Terrace (Mills Memorial Hospital) Heliport", + "latitude_deg": "54.5108709665", + "longitude_deg": "-128.597647548", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Terrace", + "scheduled_service": "no", + "gps_code": "CBU5", + "local_code": "CBU5", + "keywords": "BU5" + }, + { + "id": "726", + "ident": "CBU6", + "type": "closed", + "name": "Mission (Memorial Hospital) Heliport", + "latitude_deg": "49.1362047065", + "longitude_deg": "-122.331220061", + "elevation_ft": "174", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Mission", + "scheduled_service": "no", + "gps_code": "CBU6", + "local_code": "CBU6", + "keywords": "BU6" + }, + { + "id": "310996", + "ident": "CBV5", + "type": "heliport", + "name": "Belleville (QHC) Heliport", + "latitude_deg": "44.1672131754", + "longitude_deg": "-77.3504027374", + "elevation_ft": "277", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CBV5" + }, + { + "id": "727", + "ident": "CBV7", + "type": "heliport", + "name": "Valemount (Yellowhead Helicopters) Heliport", + "latitude_deg": "52.86669921875", + "longitude_deg": "-119.30000305175781", + "elevation_ft": "2600", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Valemount", + "scheduled_service": "no", + "gps_code": "CBV7", + "local_code": "CBV7", + "keywords": "BV7" + }, + { + "id": "728", + "ident": "CBV8", + "type": "heliport", + "name": "Comox (St. Joseph's Hospital) Heliport", + "latitude_deg": "49.6750746106", + "longitude_deg": "-124.941185117", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Comox", + "scheduled_service": "no", + "gps_code": "CBV8", + "local_code": "CBV8", + "keywords": "BV8" + }, + { + "id": "729", + "ident": "CBW2", + "type": "small_airport", + "name": "Kitimat Airport", + "latitude_deg": "54.167758", + "longitude_deg": "-128.578663", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kitimat", + "scheduled_service": "no", + "gps_code": "CBW2", + "local_code": "CBW2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kitimat_Airport", + "keywords": "BW2" + }, + { + "id": "730", + "ident": "CBW3", + "type": "small_airport", + "name": "Fort Grahame Airport", + "latitude_deg": "56.52138778769999", + "longitude_deg": "-124.470291138", + "elevation_ft": "2230", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Fort Graham", + "scheduled_service": "no", + "gps_code": "CBW3", + "local_code": "CBW3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Graham_Airport", + "keywords": "BW3" + }, + { + "id": "731", + "ident": "CBW4", + "type": "small_airport", + "name": "Bob Quinn Lake Airport", + "latitude_deg": "56.966702", + "longitude_deg": "-130.25", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Bob Quinn Lake", + "scheduled_service": "no", + "gps_code": "CBW4", + "iata_code": "YBO", + "local_code": "CBW4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bob_Quinn_Lake_Airport" + }, + { + "id": "732", + "ident": "CBW5", + "type": "closed", + "name": "Terrace / BC Hydro Heliport", + "latitude_deg": "54.519200882300005", + "longitude_deg": "-128.628015518", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Terrace", + "scheduled_service": "no", + "gps_code": "CBW5", + "local_code": "CBW5", + "keywords": "BW5" + }, + { + "id": "300226", + "ident": "CBW6", + "type": "small_airport", + "name": "Belwood (Wright Field)", + "latitude_deg": "43.793888889", + "longitude_deg": "-80.4025", + "elevation_ft": "1490", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CBW6", + "local_code": "CBW6" + }, + { + "id": "733", + "ident": "CBW7", + "type": "heliport", + "name": "Victoria (General Hospital) Heliport", + "latitude_deg": "48.4679597552", + "longitude_deg": "-123.432410359", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Victoria", + "scheduled_service": "no", + "gps_code": "CBW7", + "local_code": "CBW7", + "keywords": "BW7" + }, + { + "id": "734", + "ident": "CBW8", + "type": "small_airport", + "name": "Baldwin West Aerodrome", + "latitude_deg": "44.2764", + "longitude_deg": "-79.3746", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Baldwin", + "scheduled_service": "no", + "gps_code": "CBW8", + "local_code": "CBW8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baldwin_West_Aerodrome" + }, + { + "id": "735", + "ident": "CBW9", + "type": "heliport", + "name": "Madrona Bay Heliport", + "latitude_deg": "48.85580062866211", + "longitude_deg": "-123.48600006103516", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Madrona Bay", + "scheduled_service": "no", + "gps_code": "CBW9", + "local_code": "CBW9", + "keywords": "BW9" + }, + { + "id": "736", + "ident": "CBX5", + "type": "small_airport", + "name": "Tungsten (Cantung) Airport", + "latitude_deg": "61.956901550293", + "longitude_deg": "-128.20300292969", + "elevation_ft": "3500", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Tungsten", + "scheduled_service": "no", + "gps_code": "CBX5", + "iata_code": "TNS", + "local_code": "CBX5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tungsten_(Cantung)_Airport", + "keywords": "BX5" + }, + { + "id": "737", + "ident": "CBX7", + "type": "small_airport", + "name": "Tumbler Ridge Airport", + "latitude_deg": "55.025001525879", + "longitude_deg": "-120.93499755859", + "elevation_ft": "3075", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Tumbler Ridge", + "scheduled_service": "no", + "gps_code": "CBX7", + "iata_code": "TUX", + "local_code": "CBX7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tumbler_Ridge_Airport", + "keywords": "BX7" + }, + { + "id": "320124", + "ident": "CBY2", + "type": "heliport", + "name": "Edmonton/Bailey Heliport", + "latitude_deg": "53.5078", + "longitude_deg": "-113.2363", + "elevation_ft": "2392", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Edmonton", + "scheduled_service": "no", + "gps_code": "CBY2", + "local_code": "CBY2" + }, + { + "id": "738", + "ident": "CBY5", + "type": "heliport", + "name": "Seal Cove (Coast Guard) Heliport", + "latitude_deg": "54.33169937133789", + "longitude_deg": "-130.27699279785156", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Prince Rupert", + "scheduled_service": "no", + "gps_code": "CBY5", + "local_code": "CBY5", + "keywords": "BY5" + }, + { + "id": "28247", + "ident": "CBY6", + "type": "seaplane_base", + "name": "Green Lake Seaplane Base", + "latitude_deg": "51.42190170288086", + "longitude_deg": "-121.21399688720703", + "elevation_ft": "3507", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CBY6", + "local_code": "CBY6" + }, + { + "id": "739", + "ident": "CBZ2", + "type": "heliport", + "name": "Kemano Heliport", + "latitude_deg": "53.562531", + "longitude_deg": "-127.94858", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kemano", + "scheduled_service": "no", + "gps_code": "CBZ2", + "local_code": "CBZ2", + "keywords": "BZ2" + }, + { + "id": "740", + "ident": "CBZ7", + "type": "heliport", + "name": "Victoria Harbour (Shoal Point) Heliport", + "latitude_deg": "48.4232077287", + "longitude_deg": "-123.387526274", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Victoria", + "scheduled_service": "no", + "gps_code": "CBZ7", + "local_code": "CBZ7", + "keywords": "BZ7" + }, + { + "id": "28399", + "ident": "CBZ8", + "type": "seaplane_base", + "name": "Rykerts Seaplane Base", + "latitude_deg": "48.983299255371094", + "longitude_deg": "-116.5", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CBZ8", + "local_code": "CBZ8" + }, + { + "id": "741", + "ident": "CBZ9", + "type": "small_airport", + "name": "Fraser Lake Airport", + "latitude_deg": "54.014171", + "longitude_deg": "-124.76973", + "elevation_ft": "2690", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Fraser Lake", + "scheduled_service": "no", + "gps_code": "CBZ9", + "local_code": "CBZ9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fraser_Lake_Airport", + "keywords": "BZ9" + }, + { + "id": "28338", + "ident": "CCA2", + "type": "seaplane_base", + "name": "New Germany Seaplane Base", + "latitude_deg": "44.552222", + "longitude_deg": "-64.736389", + "elevation_ft": "205", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "New Germany", + "scheduled_service": "no", + "gps_code": "CCA2", + "local_code": "CCA2", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Germany_Water_Aerodrome", + "keywords": "CA2" + }, + { + "id": "742", + "ident": "CCA3", + "type": "small_airport", + "name": "Cable Head Airpark", + "latitude_deg": "46.444806", + "longitude_deg": "-62.593961", + "elevation_ft": "94", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-PE", + "municipality": "Saint Peters Bay", + "scheduled_service": "no", + "gps_code": "CCA3", + "local_code": "CCA3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cable_Head_Airpark", + "keywords": "CA3, PEI" + }, + { + "id": "743", + "ident": "CCA6", + "type": "small_airport", + "name": "Williams Harbour Airport", + "latitude_deg": "52.567377", + "longitude_deg": "-55.784883", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Williams Harbour", + "scheduled_service": "yes", + "gps_code": "CCA6", + "iata_code": "YWM", + "local_code": "CCA6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Williams_Harbour_Airport", + "keywords": "CA6" + }, + { + "id": "744", + "ident": "CCA7", + "type": "closed", + "name": "Apple River Airport", + "latitude_deg": "45.461899", + "longitude_deg": "-64.821404", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Apple River", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Apple_River_Airport", + "keywords": "CCA7" + }, + { + "id": "745", + "ident": "CCA9", + "type": "closed", + "name": "Grand River Airport", + "latitude_deg": "46.485526", + "longitude_deg": "-63.945334", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-PE", + "municipality": "Grand River", + "scheduled_service": "no", + "gps_code": "CCA9", + "local_code": "CCA9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_River_Airport", + "keywords": "CA9, PEI, Moase Airfield" + }, + { + "id": "746", + "ident": "CCB3", + "type": "heliport", + "name": "Amherst Heliport", + "latitude_deg": "45.812118013399996", + "longitude_deg": "-64.220508635", + "elevation_ft": "99", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Amherst", + "scheduled_service": "no", + "gps_code": "CCB3", + "local_code": "CCB3", + "keywords": "CB3" + }, + { + "id": "28243", + "ident": "CCB5", + "type": "seaplane_base", + "name": "Goose (Otter Creek) Seaplane Base", + "latitude_deg": "53.349998", + "longitude_deg": "-60.416698", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "scheduled_service": "no", + "gps_code": "CCB5", + "local_code": "CCB5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Goose_(Otter_Creek)_Water_Aerodrome", + "keywords": "CB5" + }, + { + "id": "332269", + "ident": "CCB8", + "type": "heliport", + "name": "Kilbride (Bot)", + "latitude_deg": "43.448236", + "longitude_deg": "-79.94885", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CCB8", + "local_code": "CCB8" + }, + { + "id": "747", + "ident": "CCC2", + "type": "small_airport", + "name": "Winterland Airport", + "latitude_deg": "47.13690185546875", + "longitude_deg": "-55.329200744628906", + "elevation_ft": "156", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Winterland", + "scheduled_service": "no", + "gps_code": "CCC2", + "local_code": "CCC2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Winterland_Airport", + "keywords": "CC2" + }, + { + "id": "748", + "ident": "CCD2", + "type": "small_airport", + "name": "Springdale Airport", + "latitude_deg": "49.479446", + "longitude_deg": "-56.177773", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Springdale", + "scheduled_service": "no", + "gps_code": "CCD2", + "local_code": "CCD2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Springdale_Airport", + "keywords": "CD2" + }, + { + "id": "749", + "ident": "CCD3", + "type": "small_airport", + "name": "Woodstock Airport", + "latitude_deg": "46.152079", + "longitude_deg": "-67.545098", + "elevation_ft": "481", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Newbridge", + "scheduled_service": "no", + "gps_code": "CCD3", + "local_code": "CCD3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Woodstock_Airport_(New_Brunswick)", + "keywords": "CD3" + }, + { + "id": "750", + "ident": "CCD4", + "type": "small_airport", + "name": "Postville Airport", + "latitude_deg": "54.9105", + "longitude_deg": "-59.78507", + "elevation_ft": "193", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Postville", + "scheduled_service": "yes", + "gps_code": "CCD4", + "iata_code": "YSO", + "local_code": "CCD4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Postville_Airport", + "keywords": "CD4" + }, + { + "id": "39895", + "ident": "CCE2", + "type": "closed", + "name": "Mount Pleasant Airport", + "latitude_deg": "46.599998", + "longitude_deg": "-64", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-PE", + "municipality": "Ellerslie", + "scheduled_service": "no", + "gps_code": "CCE2", + "local_code": "CCE2", + "wikipedia_link": "https://en.wikipedia.org/wiki/RCAF_Station_Mount_Pleasant" + }, + { + "id": "751", + "ident": "CCE3", + "type": "small_airport", + "name": "Juniper Airport", + "latitude_deg": "46.562801361083984", + "longitude_deg": "-67.16829681396484", + "elevation_ft": "837", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Juniper", + "scheduled_service": "no", + "gps_code": "CCE3", + "local_code": "CCE3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Juniper_Airport", + "keywords": "CE3" + }, + { + "id": "752", + "ident": "CCE4", + "type": "small_airport", + "name": "Black Tickle Airport", + "latitude_deg": "53.469836", + "longitude_deg": "-55.787501", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Black Tickle", + "scheduled_service": "no", + "gps_code": "CCE4", + "iata_code": "YBI", + "local_code": "CCE4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Black_Tickle_Airport", + "keywords": "CE4" + }, + { + "id": "753", + "ident": "CCE5", + "type": "heliport", + "name": "Canso (Eastern Memorial Hospital) Heliport", + "latitude_deg": "45.3331270219", + "longitude_deg": "-60.9819316864", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Canso", + "scheduled_service": "no", + "gps_code": "CCE5", + "local_code": "CCE5", + "keywords": "CE5" + }, + { + "id": "46478", + "ident": "CCE6", + "type": "small_airport", + "name": "Camden East Airstrip", + "latitude_deg": "44.325629", + "longitude_deg": "-76.792502", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Odessa", + "scheduled_service": "no", + "local_code": "CCE6" + }, + { + "id": "754", + "ident": "CCF4", + "type": "small_airport", + "name": "Porters Lake Airport", + "latitude_deg": "44.7099936874", + "longitude_deg": "-63.2996821404", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Porters Lake", + "scheduled_service": "no", + "gps_code": "CCF4", + "local_code": "CCF4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Porters_Lake_Airport", + "keywords": "CF4" + }, + { + "id": "45221", + "ident": "CCF6", + "type": "small_airport", + "name": "Edmonton/Morinville (Currie Field)", + "latitude_deg": "53.819722", + "longitude_deg": "-113.760833", + "elevation_ft": "2374", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "gps_code": "CCF6", + "local_code": "CCF6" + }, + { + "id": "314212", + "ident": "CCF7", + "type": "small_airport", + "name": "Alida/Cowan Farm Private Aerodrome", + "latitude_deg": "49.395901", + "longitude_deg": "-101.8249", + "elevation_ft": "1869", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Alida", + "scheduled_service": "no", + "gps_code": "CCF7", + "local_code": "CCF7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alida/Cowan_Farm_Private_Aerodrome" + }, + { + "id": "755", + "ident": "CCF9", + "type": "small_airport", + "name": "Scottsfield Airpark", + "latitude_deg": "45.96030044555664", + "longitude_deg": "-67.09529876708984", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Scottsfield", + "scheduled_service": "no", + "gps_code": "CCF9", + "local_code": "CCF9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Scottsfield_Airpark", + "keywords": "CF9" + }, + { + "id": "28284", + "ident": "CCG2", + "type": "closed", + "name": "Lac Gobeil Water Aerodrome", + "latitude_deg": "48.241699", + "longitude_deg": "-69.647202", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Grandes-Bergeronnes", + "scheduled_service": "no", + "gps_code": "CCG2", + "local_code": "CCG2" + }, + { + "id": "756", + "ident": "CCG3", + "type": "small_airport", + "name": "Weyman Airpark", + "latitude_deg": "46.037498474121094", + "longitude_deg": "-66.85890197753906", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Burtt's Corner", + "scheduled_service": "no", + "gps_code": "CCG3", + "local_code": "CCG3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Weyman_Airpark", + "keywords": "CG3" + }, + { + "id": "757", + "ident": "CCG4", + "type": "small_airport", + "name": "Moncton / McEwen Airport", + "latitude_deg": "46.1539001465", + "longitude_deg": "-64.7686004639", + "elevation_ft": "214", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Moncton", + "scheduled_service": "no", + "gps_code": "CCG4", + "local_code": "CCG4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moncton/McEwen_Airport", + "keywords": "CG4" + }, + { + "id": "314915", + "ident": "CCG5", + "type": "small_airport", + "name": "Cayuga Airport", + "latitude_deg": "42.9512", + "longitude_deg": "-79.825", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Cayuga", + "scheduled_service": "no", + "gps_code": "CCG5", + "local_code": "CCG5" + }, + { + "id": "758", + "ident": "CCH4", + "type": "small_airport", + "name": "Charlottetown Airport", + "latitude_deg": "52.765774", + "longitude_deg": "-56.11237", + "elevation_ft": "209", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Charlottetown", + "scheduled_service": "no", + "gps_code": "CCH4", + "local_code": "CCH4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Charlottetown_Airport_(Newfoundland)", + "keywords": "CH4" + }, + { + "id": "759", + "ident": "CCH5", + "type": "heliport", + "name": "Montreal / Longueuil (Centre Hospitalier Pierre-Boucher) Heliport", + "latitude_deg": "45.538143678599994", + "longitude_deg": "-73.4600481391", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montréal", + "scheduled_service": "no", + "gps_code": "CCH5", + "local_code": "CCH5", + "keywords": "CH5" + }, + { + "id": "760", + "ident": "CCH6", + "type": "heliport", + "name": "Summerside (Prince County Hospital) Heliport", + "latitude_deg": "46.417811", + "longitude_deg": "-63.773983", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-PE", + "municipality": "Summerside", + "scheduled_service": "no", + "gps_code": "CCH6", + "local_code": "CCH6", + "keywords": "CH6" + }, + { + "id": "320491", + "ident": "CCH7", + "type": "heliport", + "name": "Capitale Hélicoptère Heliport", + "latitude_deg": "46.8008", + "longitude_deg": "-71.3741", + "elevation_ft": "203", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Québec", + "scheduled_service": "no", + "gps_code": "CCH7", + "local_code": "CCH7" + }, + { + "id": "761", + "ident": "CCI9", + "type": "small_airport", + "name": "Cortes Island (Hansen Airfield) Airport", + "latitude_deg": "50.020301818847656", + "longitude_deg": "-124.98400115966797", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Cortes Island", + "scheduled_service": "no", + "gps_code": "CCI9", + "local_code": "CCI9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cortes_Island_(Hansen_Airfield)_Airport", + "keywords": "CI9" + }, + { + "id": "762", + "ident": "CCJ3", + "type": "small_airport", + "name": "Boston Brook Airport", + "latitude_deg": "47.44860076904297", + "longitude_deg": "-67.62470245361328", + "elevation_ft": "958", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Boston Brook", + "scheduled_service": "no", + "gps_code": "CCJ3", + "local_code": "CCJ3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boston_Brook_Airport", + "keywords": "CJ3" + }, + { + "id": "320262", + "ident": "CCK2", + "type": "heliport", + "name": "St John's Health Sciences Centre Heliport", + "latitude_deg": "47.572504", + "longitude_deg": "-52.7455", + "elevation_ft": "244", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "St John's", + "scheduled_service": "no", + "gps_code": "CCK2", + "local_code": "CCK2", + "keywords": "Janeway" + }, + { + "id": "763", + "ident": "CCK3", + "type": "small_airport", + "name": "Grand Falls Airport", + "latitude_deg": "47.075837", + "longitude_deg": "-67.68531", + "elevation_ft": "712", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Grand Falls", + "scheduled_service": "no", + "gps_code": "CCK3", + "local_code": "CCK3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Falls_Airport", + "keywords": "CK3" + }, + { + "id": "764", + "ident": "CCK4", + "type": "small_airport", + "name": "St. Lewis (Fox Harbour) Airport", + "latitude_deg": "52.372798919677734", + "longitude_deg": "-55.67390060424805", + "elevation_ft": "74", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "St. Lewis", + "scheduled_service": "yes", + "gps_code": "CCK4", + "iata_code": "YFX", + "local_code": "CCK4", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Lewis_(Fox_Harbour)_Airport", + "keywords": "CK4" + }, + { + "id": "300227", + "ident": "CCK5", + "type": "small_airport", + "name": "Owen Sound (Cook Field)", + "latitude_deg": "44.6347639588", + "longitude_deg": "-80.74130642239999", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Owen Sound", + "scheduled_service": "no", + "gps_code": "CCK5", + "local_code": "CCK5" + }, + { + "id": "765", + "ident": "CCL2", + "type": "small_airport", + "name": "Candle Lake Airpark", + "latitude_deg": "53.7682991027832", + "longitude_deg": "-105.30799865722656", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Candle Lake", + "scheduled_service": "no", + "gps_code": "CCL2", + "local_code": "CCL2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Candle_Lake_Airpark", + "keywords": "CL2" + }, + { + "id": "46622", + "ident": "CCL3", + "type": "small_airport", + "name": "Christina Lake Airport", + "latitude_deg": "55.628385", + "longitude_deg": "-110.751114", + "elevation_ft": "1905", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Christina Lake", + "scheduled_service": "no", + "gps_code": "CCL3", + "local_code": "CCL3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Christina_Lake_Aerodrome" + }, + { + "id": "766", + "ident": "CCM3", + "type": "small_airport", + "name": "Sevogle Airport", + "latitude_deg": "47.190179", + "longitude_deg": "-66.158123", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Sevogle", + "scheduled_service": "no", + "gps_code": "CCM3", + "local_code": "CCM3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sevogle_Airport", + "keywords": "CM3" + }, + { + "id": "767", + "ident": "CCM4", + "type": "small_airport", + "name": "Port au Choix Airport", + "latitude_deg": "50.6889", + "longitude_deg": "-57.331402", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Port au Choix", + "scheduled_service": "no", + "gps_code": "CCM4", + "local_code": "CCM4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_au_Choix_Airport", + "keywords": "CM4" + }, + { + "id": "768", + "ident": "CCN2", + "type": "small_airport", + "name": "Grand Manan Airport", + "latitude_deg": "44.71329879760742", + "longitude_deg": "-66.79640197753906", + "elevation_ft": "238", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Grand Manan", + "scheduled_service": "no", + "gps_code": "CCN2", + "local_code": "CCN2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Manan_Airport", + "keywords": "CN2" + }, + { + "id": "299183", + "ident": "ccn3", + "type": "closed", + "name": "Caroline Airfield", + "latitude_deg": "52.1043173886", + "longitude_deg": "-114.775350094", + "elevation_ft": "3540", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "gps_code": "CCN3" + }, + { + "id": "311591", + "ident": "CCN4", + "type": "small_airport", + "name": "Conn Field", + "latitude_deg": "44.0325", + "longitude_deg": "-80.48555555559999", + "elevation_ft": "1658", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Conn", + "scheduled_service": "no", + "gps_code": "CCN4", + "local_code": "CCN4" + }, + { + "id": "769", + "ident": "CCP2", + "type": "small_airport", + "name": "Exploits Valley Botwood Airport", + "latitude_deg": "49.055999755859375", + "longitude_deg": "-55.44770050048828", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Exploits Valley", + "scheduled_service": "no", + "gps_code": "CCP2", + "local_code": "CCP2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Exploits_Valley_(Botwood)_Airport", + "keywords": "CP2" + }, + { + "id": "770", + "ident": "CCP3", + "type": "small_airport", + "name": "Chute-St-Philippe Airport", + "latitude_deg": "46.66109848022461", + "longitude_deg": "-75.24500274658203", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Chute-St-Philippe", + "scheduled_service": "no", + "gps_code": "CCP3", + "local_code": "CCP3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chute-St-Philippe_Airport", + "keywords": "CP3" + }, + { + "id": "771", + "ident": "CCP4", + "type": "small_airport", + "name": "Port Hope Simpson Airport", + "latitude_deg": "52.528099060058594", + "longitude_deg": "-56.28609848022461", + "elevation_ft": "347", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Port Hope Simpson", + "scheduled_service": "yes", + "gps_code": "CCP4", + "iata_code": "YHA", + "local_code": "CCP4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Hope_Simpson_Airport", + "keywords": "CP4" + }, + { + "id": "772", + "ident": "CCP6", + "type": "small_airport", + "name": "Caniapiscau Airport", + "latitude_deg": "54.837799072265625", + "longitude_deg": "-69.8927993774414", + "elevation_ft": "1672", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Caniapiscau", + "scheduled_service": "no", + "gps_code": "CCP6", + "local_code": "CCP6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Caniapiscau_Aerodrome", + "keywords": "CP6" + }, + { + "id": "773", + "ident": "CCQ3", + "type": "small_airport", + "name": "Debert Airport", + "latitude_deg": "45.41859817504883", + "longitude_deg": "-63.460601806640625", + "elevation_ft": "142", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Debert", + "scheduled_service": "no", + "gps_code": "CCQ3", + "local_code": "CCQ3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Debert_Airport", + "keywords": "CQ3" + }, + { + "id": "28402", + "ident": "CCQ5", + "type": "seaplane_base", + "name": "St. John's (Paddys Pond) Seaplane Base", + "latitude_deg": "47.468257", + "longitude_deg": "-52.889542", + "elevation_ft": "375", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "St. John's", + "scheduled_service": "no", + "gps_code": "CCQ5", + "local_code": "CCQ5", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._John%27s_%28Paddys_Pond%29_Water_Aerodrome", + "keywords": "CQ5" + }, + { + "id": "774", + "ident": "CCR3", + "type": "small_airport", + "name": "Florenceville Airport", + "latitude_deg": "46.42610168457031", + "longitude_deg": "-67.62809753417969", + "elevation_ft": "508", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Florenceville", + "scheduled_service": "no", + "gps_code": "CCR3", + "local_code": "CCR3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Florenceville_Airport", + "keywords": "CR3" + }, + { + "id": "775", + "ident": "CCR5", + "type": "heliport", + "name": "Cline River Heliport", + "latitude_deg": "52.178902", + "longitude_deg": "-116.478996", + "elevation_ft": "4386", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Cline River", + "scheduled_service": "no", + "gps_code": "CCR5", + "local_code": "CCR5" + }, + { + "id": "776", + "ident": "CCR6", + "type": "heliport", + "name": "Campbell River (E & B Heli) Heliport", + "latitude_deg": "50.0413226692", + "longitude_deg": "-125.268448144", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Campbell River", + "scheduled_service": "yes", + "gps_code": "CCR6", + "local_code": "CCR6", + "keywords": "CR6" + }, + { + "id": "777", + "ident": "CCR7", + "type": "heliport", + "name": "Castor (Our Lady of the Rosary Hospital) Heliport", + "latitude_deg": "52.2235013417", + "longitude_deg": "-111.906577349", + "elevation_ft": "2678", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Castor", + "scheduled_service": "no", + "gps_code": "CCR7", + "local_code": "CCR7", + "keywords": "CR7" + }, + { + "id": "28202", + "ident": "CCR8", + "type": "seaplane_base", + "name": "Conne River Seaplane Base", + "latitude_deg": "47.92499923706055", + "longitude_deg": "-55.57780075073242", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "scheduled_service": "no", + "gps_code": "CCR8", + "local_code": "CCR8" + }, + { + "id": "320221", + "ident": "CCR9", + "type": "small_airport", + "name": "Creemore Airport", + "latitude_deg": "44.346504", + "longitude_deg": "-80.1336", + "elevation_ft": "1375", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Creemore", + "scheduled_service": "no", + "gps_code": "CCR9", + "local_code": "CCR6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Creemore_Aerodrome" + }, + { + "id": "778", + "ident": "CCRH", + "type": "closed", + "name": "Campbellton (Regional Hospital) Heliport", + "latitude_deg": "47.994175876099995", + "longitude_deg": "-66.6654655337", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Campbellton", + "scheduled_service": "no", + "gps_code": "CCRH", + "local_code": "CCRH", + "keywords": "CRH" + }, + { + "id": "320122", + "ident": "CCS2", + "type": "heliport", + "name": "Consort Health Centre Helipad", + "latitude_deg": "52.009103", + "longitude_deg": "-110.782", + "elevation_ft": "2467", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Consort", + "scheduled_service": "no", + "gps_code": "CCS2", + "local_code": "CCS2" + }, + { + "id": "779", + "ident": "CCS3", + "type": "small_airport", + "name": "St. Stephen Airport", + "latitude_deg": "45.20750045776367", + "longitude_deg": "-67.25060272216797", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "St. Stephen", + "scheduled_service": "no", + "gps_code": "CCS3", + "local_code": "CCS3", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Stephen_Airport", + "keywords": "CS3" + }, + { + "id": "780", + "ident": "CCS4", + "type": "small_airport", + "name": "Chipman Airport", + "latitude_deg": "46.14860153198242", + "longitude_deg": "-65.9041976928711", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Chipman", + "scheduled_service": "no", + "gps_code": "CCS4", + "local_code": "CCS4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chipman_Airport_(New_Brunswick)", + "keywords": "CS4" + }, + { + "id": "781", + "ident": "CCS5", + "type": "small_airport", + "name": "Havelock Airport", + "latitude_deg": "45.98640060424805", + "longitude_deg": "-65.3019027709961", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Havelock", + "scheduled_service": "no", + "gps_code": "CCS5", + "local_code": "CCS5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Havelock_Airport", + "keywords": "CS5" + }, + { + "id": "782", + "ident": "CCS6", + "type": "small_airport", + "name": "Courtenay (Smit Field) Airport", + "latitude_deg": "49.666938", + "longitude_deg": "-125.097654", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Courtenay", + "scheduled_service": "no", + "gps_code": "CCS6", + "local_code": "CCS6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Courtenay_(Smit_Field)_Airport", + "keywords": "CS6" + }, + { + "id": "320212", + "ident": "CCS7", + "type": "heliport", + "name": "Chicoutimi Central Hospital Helipad", + "latitude_deg": "48.4258", + "longitude_deg": "-71.047601", + "elevation_ft": "198", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Chicoutimi", + "scheduled_service": "no", + "gps_code": "CCS7", + "local_code": "CCS7" + }, + { + "id": "783", + "ident": "CCT2", + "type": "small_airport", + "name": "Cookstown Airport", + "latitude_deg": "44.23889923095703", + "longitude_deg": "-79.63890075683594", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Cookstown", + "scheduled_service": "no", + "gps_code": "CCT2", + "local_code": "CCT2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cookstown_Airport", + "keywords": "CT2" + }, + { + "id": "784", + "ident": "CCT3", + "type": "heliport", + "name": "Castlegar (Tarrys Convention Centre) Heliport", + "latitude_deg": "49.38610076904297", + "longitude_deg": "-117.552001953125", + "elevation_ft": "1632", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Castlegar", + "scheduled_service": "no", + "gps_code": "CCT3", + "local_code": "CCT3", + "keywords": "CT3" + }, + { + "id": "28422", + "ident": "CCT5", + "type": "seaplane_base", + "name": "South Brook Seaplane Base", + "latitude_deg": "49.016701", + "longitude_deg": "-57.633301", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "scheduled_service": "no", + "gps_code": "CCT5", + "local_code": "CCT5", + "wikipedia_link": "https://en.wikipedia.org/wiki/South_Brook_Water_Aerodrome", + "keywords": "CT5" + }, + { + "id": "785", + "ident": "CCV4", + "type": "small_airport", + "name": "Bell Island Airport", + "latitude_deg": "47.635031", + "longitude_deg": "-52.980452", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Bell Island", + "scheduled_service": "no", + "gps_code": "CCV4", + "local_code": "CCV4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bell_Island_Airport", + "keywords": "CV4" + }, + { + "id": "332266", + "ident": "CCW2", + "type": "heliport", + "name": "Collingwood (Wilsons)", + "latitude_deg": "44.509607", + "longitude_deg": "-80.229401", + "elevation_ft": "592", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CCW2", + "local_code": "CCW2" + }, + { + "id": "786", + "ident": "CCW3", + "type": "small_airport", + "name": "Waterville / Kings County Municipal Airport", + "latitude_deg": "45.0518989563", + "longitude_deg": "-64.6517028809", + "elevation_ft": "119", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Waterville", + "scheduled_service": "no", + "gps_code": "CCW3", + "local_code": "CCW3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Waterville/Kings_County_Municipal_Airport", + "keywords": "CW3" + }, + { + "id": "787", + "ident": "CCW4", + "type": "small_airport", + "name": "Stanley Airport", + "latitude_deg": "45.10060119628906", + "longitude_deg": "-63.92060089111328", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Stanley", + "scheduled_service": "no", + "gps_code": "CCW4", + "local_code": "CCW4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stanley_Airport", + "keywords": "CW4" + }, + { + "id": "28443", + "ident": "CCW5", + "type": "seaplane_base", + "name": "Thorburn Lake Seaplane Base", + "latitude_deg": "48.266701", + "longitude_deg": "-54.150002", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Thorburn Lake", + "scheduled_service": "no", + "gps_code": "CCW5", + "local_code": "CCW5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thorburn_Lake_Water_Aerodrome", + "keywords": "CW5" + }, + { + "id": "788", + "ident": "CCX2", + "type": "heliport", + "name": "Long Pond Heliport", + "latitude_deg": "47.5161018371582", + "longitude_deg": "-52.98080062866211", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Long Pond", + "scheduled_service": "no", + "gps_code": "CCX2", + "local_code": "CCX2", + "keywords": "CX2" + }, + { + "id": "789", + "ident": "CCX3", + "type": "small_airport", + "name": "Brockway Airport", + "latitude_deg": "45.56669998168945", + "longitude_deg": "-67.0999984741211", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Brockway", + "scheduled_service": "no", + "gps_code": "CCX3", + "local_code": "CCX3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brockway_Airport", + "keywords": "CX3" + }, + { + "id": "28461", + "ident": "CCX5", + "type": "seaplane_base", + "name": "Wabush Seaplane Base", + "latitude_deg": "52.9333", + "longitude_deg": "-66.900002", + "elevation_ft": "1700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "scheduled_service": "no", + "gps_code": "CCX5", + "local_code": "CCX5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wabush_Water_Aerodrome", + "keywords": "CX5" + }, + { + "id": "28200", + "ident": "CCX6", + "type": "seaplane_base", + "name": "Comox Seaplane Base", + "latitude_deg": "49.670601", + "longitude_deg": "-124.932999", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Comox", + "scheduled_service": "yes", + "gps_code": "CCX6", + "local_code": "CCX6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Comox_Water_Aerodrome", + "keywords": "AL6" + }, + { + "id": "790", + "ident": "CCY3", + "type": "small_airport", + "name": "Sussex Airport", + "latitude_deg": "45.689998626708984", + "longitude_deg": "-65.54000091552734", + "elevation_ft": "467", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Sussex", + "scheduled_service": "no", + "gps_code": "CCY3", + "local_code": "CCY3", + "keywords": "CY3" + }, + { + "id": "791", + "ident": "CCY4", + "type": "small_airport", + "name": "East Gore Eco Airpark", + "latitude_deg": "45.11750030517578", + "longitude_deg": "-63.70280075073242", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "East Gore", + "scheduled_service": "no", + "gps_code": "CCY4", + "local_code": "CCY4", + "wikipedia_link": "https://en.wikipedia.org/wiki/East_Gore_Eco_Airpark", + "keywords": "CY4" + }, + { + "id": "792", + "ident": "CCY5", + "type": "heliport", + "name": "Edmundston (Regional Hospital) Heliport", + "latitude_deg": "47.376399993896484", + "longitude_deg": "-68.31189727783203", + "elevation_ft": "682", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Edmundston", + "scheduled_service": "no", + "gps_code": "CCY5", + "local_code": "CCY5", + "keywords": "CY5" + }, + { + "id": "793", + "ident": "CCZ2", + "type": "small_airport", + "name": "Rigolet Airport", + "latitude_deg": "54.1796989440918", + "longitude_deg": "-58.45750045776367", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Rigolet", + "scheduled_service": "yes", + "gps_code": "CCZ2", + "iata_code": "YRG", + "local_code": "CCZ2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rigolet_Airport", + "keywords": "CZ2" + }, + { + "id": "794", + "ident": "CCZ3", + "type": "small_airport", + "name": "Clarenville Airport", + "latitude_deg": "48.27470016479492", + "longitude_deg": "-53.92390060424805", + "elevation_ft": "199", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Clarenville", + "scheduled_service": "no", + "gps_code": "CCZ3", + "local_code": "CCZ3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clarenville_Airport", + "keywords": "CZ3" + }, + { + "id": "795", + "ident": "CCZ4", + "type": "small_airport", + "name": "Margaree Airport", + "latitude_deg": "46.340413", + "longitude_deg": "-60.980508", + "elevation_ft": "181", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Margaree", + "scheduled_service": "no", + "gps_code": "CCZ4", + "local_code": "CCZ4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Margaree_Airport", + "keywords": "CZ4" + }, + { + "id": "796", + "ident": "CCZ5", + "type": "small_airport", + "name": "Thorburn Airport", + "latitude_deg": "45.56111", + "longitude_deg": "-62.595583", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Thorburn", + "scheduled_service": "no", + "gps_code": "CCZ5", + "local_code": "CCZ5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thorburn_Airport", + "keywords": "CZ5" + }, + { + "id": "797", + "ident": "CCZ9", + "type": "heliport", + "name": "Shelburne (Roseway Hospital) Heliport", + "latitude_deg": "43.7502981388", + "longitude_deg": "-65.3097081184", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Shelburne", + "scheduled_service": "no", + "gps_code": "CCZ9", + "local_code": "CCZ9", + "keywords": "CZ9" + }, + { + "id": "42423", + "ident": "CD-0001", + "type": "small_airport", + "name": "Wageni Airport", + "latitude_deg": "0.510171", + "longitude_deg": "29.475803", + "elevation_ft": "3786", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-NK", + "municipality": "Beni", + "scheduled_service": "no", + "gps_code": "FZNS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wageni_Airport" + }, + { + "id": "300208", + "ident": "CD-0002", + "type": "small_airport", + "name": "Kashobwe Airport", + "latitude_deg": "-9.666293", + "longitude_deg": "28.619004", + "elevation_ft": "3100", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Kashobwe", + "scheduled_service": "no" + }, + { + "id": "315128", + "ident": "CD-0003", + "type": "small_airport", + "name": "Nagero", + "latitude_deg": "3.746155", + "longitude_deg": "29.509964", + "elevation_ft": "2437", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Nagero", + "scheduled_service": "no", + "keywords": "Nagero, Garamba Park" + }, + { + "id": "318342", + "ident": "CD-0004", + "type": "small_airport", + "name": "Djolu Airport", + "latitude_deg": "0.63328", + "longitude_deg": "22.463769", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Djolu", + "scheduled_service": "no" + }, + { + "id": "318343", + "ident": "CD-0005", + "type": "small_airport", + "name": "Pimu Airport", + "latitude_deg": "1.778935", + "longitude_deg": "20.904077", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Pimu", + "scheduled_service": "no" + }, + { + "id": "318423", + "ident": "CD-0006", + "type": "small_airport", + "name": "Bondo Airport", + "latitude_deg": "3.815869", + "longitude_deg": "23.671694", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Bondo", + "scheduled_service": "no" + }, + { + "id": "318424", + "ident": "CD-0007", + "type": "small_airport", + "name": "Yakoma Airport", + "latitude_deg": "4.075469", + "longitude_deg": "22.45943", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "scheduled_service": "no" + }, + { + "id": "318425", + "ident": "CD-0008", + "type": "small_airport", + "name": "Dungu Airport", + "latitude_deg": "3.677731", + "longitude_deg": "28.601282", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Dungu", + "scheduled_service": "no" + }, + { + "id": "318426", + "ident": "CD-0009", + "type": "small_airport", + "name": "Zaniwe Airport", + "latitude_deg": "3.679098", + "longitude_deg": "29.127699", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Zaniwe", + "scheduled_service": "no" + }, + { + "id": "318427", + "ident": "CD-0010", + "type": "small_airport", + "name": "Mambasa Airport", + "latitude_deg": "1.348012", + "longitude_deg": "29.080458", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Mambasa", + "scheduled_service": "no" + }, + { + "id": "318428", + "ident": "CD-0011", + "type": "small_airport", + "name": "Mongbwalu Airport", + "latitude_deg": "1.943837", + "longitude_deg": "30.060973", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Mongbwalu", + "scheduled_service": "no" + }, + { + "id": "318429", + "ident": "CD-0012", + "type": "small_airport", + "name": "Mahagi Airport", + "latitude_deg": "2.293288", + "longitude_deg": "31.026256", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Mahagi", + "scheduled_service": "no" + }, + { + "id": "319028", + "ident": "CD-0013", + "type": "small_airport", + "name": "Poko Airport", + "latitude_deg": "3.135479", + "longitude_deg": "26.885307", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Poko", + "scheduled_service": "no" + }, + { + "id": "319230", + "ident": "CD-0014", + "type": "small_airport", + "name": "Monga Airstrip", + "latitude_deg": "4.20151", + "longitude_deg": "22.824927", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Monga", + "scheduled_service": "no" + }, + { + "id": "319269", + "ident": "CD-0015", + "type": "small_airport", + "name": "Epulu Airport", + "latitude_deg": "1.409542", + "longitude_deg": "28.569931", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Epulu", + "scheduled_service": "no" + }, + { + "id": "319270", + "ident": "CD-0016", + "type": "small_airport", + "name": "Nia-Nia Airport", + "latitude_deg": "1.399379", + "longitude_deg": "27.610131", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Nia-Nia", + "scheduled_service": "no" + }, + { + "id": "319271", + "ident": "CD-0017", + "type": "small_airport", + "name": "Aru Airport", + "latitude_deg": "2.884104", + "longitude_deg": "30.833833", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Aru", + "scheduled_service": "no" + }, + { + "id": "319272", + "ident": "CD-0018", + "type": "small_airport", + "name": "Ishango Airport", + "latitude_deg": "-0.125497", + "longitude_deg": "29.608915", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-NK", + "municipality": "Ishango", + "scheduled_service": "no" + }, + { + "id": "322990", + "ident": "CD-0019", + "type": "small_airport", + "name": "Tshimpumpu Airport", + "latitude_deg": "-5.302778", + "longitude_deg": "21.409722", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Tshimpumpu", + "scheduled_service": "no" + }, + { + "id": "322991", + "ident": "CD-0020", + "type": "small_airport", + "name": "Bokoro Airport", + "latitude_deg": "-2.884722", + "longitude_deg": "18.352778", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Bokoro", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bokoro_Airport_(Democratic_Republic_of_the_Congo)" + }, + { + "id": "333214", + "ident": "CD-0021", + "type": "small_airport", + "name": "Boeli Airstrip", + "latitude_deg": "4.169336", + "longitude_deg": "27.08276", + "elevation_ft": "2369", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Boeli", + "scheduled_service": "no" + }, + { + "id": "333215", + "ident": "CD-0022", + "type": "small_airport", + "name": "Dakwa Airport", + "latitude_deg": "3.99561", + "longitude_deg": "26.43509", + "elevation_ft": "2148", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Dakwa", + "scheduled_service": "no" + }, + { + "id": "333218", + "ident": "CD-0023", + "type": "small_airport", + "name": "Nebobongo Airport", + "latitude_deg": "2.458075", + "longitude_deg": "27.63125", + "elevation_ft": "2558", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Nebobongo", + "scheduled_service": "no" + }, + { + "id": "344674", + "ident": "CD-0024", + "type": "medium_airport", + "name": "Boma Lukandu International Airport", + "latitude_deg": "-5.80543", + "longitude_deg": "12.99582", + "elevation_ft": "281", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BC", + "municipality": "Boma", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boma_International_Airport" + }, + { + "id": "344676", + "ident": "CD-0025", + "type": "small_airport", + "name": "Maluku Airstrip", + "latitude_deg": "-4.0711", + "longitude_deg": "15.5431", + "elevation_ft": "1050", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KN", + "municipality": "Maluku", + "scheduled_service": "no" + }, + { + "id": "344677", + "ident": "CD-0026", + "type": "small_airport", + "name": "Bolobo Airport", + "latitude_deg": "-2.17405", + "longitude_deg": "16.267987", + "elevation_ft": "1027", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Bolobo", + "scheduled_service": "no" + }, + { + "id": "345909", + "ident": "CD-0027", + "type": "heliport", + "name": "Kamoa Mine Heliport", + "latitude_deg": "-10.767007", + "longitude_deg": "25.257075", + "elevation_ft": "4905", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "scheduled_service": "no" + }, + { + "id": "352947", + "ident": "CD-0028", + "type": "small_airport", + "name": "Lodja Catholic Mission Airport", + "latitude_deg": "-3.53167", + "longitude_deg": "23.63285", + "elevation_ft": "1572", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Lodja", + "scheduled_service": "no" + }, + { + "id": "352980", + "ident": "CD-0029", + "type": "small_airport", + "name": "Irebu Airport", + "latitude_deg": "-0.62291", + "longitude_deg": "17.78105", + "elevation_ft": "1024", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Irebu", + "scheduled_service": "no" + }, + { + "id": "352981", + "ident": "CD-0030", + "type": "small_airport", + "name": "Kibombo Airport", + "latitude_deg": "-3.92162", + "longitude_deg": "25.94802", + "elevation_ft": "1786", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-MA", + "municipality": "Kibombo", + "scheduled_service": "no" + }, + { + "id": "352983", + "ident": "CD-0031", + "type": "small_airport", + "name": "Mulongo Airport", + "latitude_deg": "-7.8229", + "longitude_deg": "27.00432", + "elevation_ft": "2064", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Mulongo", + "scheduled_service": "no" + }, + { + "id": "16631", + "ident": "CD00", + "type": "heliport", + "name": "Emancipation Hill Heliport", + "latitude_deg": "40.0536003112793", + "longitude_deg": "-105.36000061035156", + "elevation_ft": "7152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Boulder", + "scheduled_service": "no", + "gps_code": "CD00", + "local_code": "CD00" + }, + { + "id": "16632", + "ident": "CD01", + "type": "small_airport", + "name": "Lowe Airstrip", + "latitude_deg": "38.39830017089844", + "longitude_deg": "-105.62000274658203", + "elevation_ft": "6200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Cotopaxi", + "scheduled_service": "no", + "gps_code": "CD01", + "local_code": "CD01" + }, + { + "id": "16633", + "ident": "CD02", + "type": "small_airport", + "name": "Skyote Airport", + "latitude_deg": "40.757999420166016", + "longitude_deg": "-106.97200012207031", + "elevation_ft": "8200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Steamboat Springs", + "scheduled_service": "no", + "gps_code": "CD02", + "local_code": "CD02" + }, + { + "id": "16634", + "ident": "CD03", + "type": "small_airport", + "name": "Tinnes Airport", + "latitude_deg": "38.198226", + "longitude_deg": "-102.5669", + "elevation_ft": "3850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Lamar", + "scheduled_service": "no", + "gps_code": "CD03", + "local_code": "CD03" + }, + { + "id": "16635", + "ident": "CD04", + "type": "heliport", + "name": "S F Heliport", + "latitude_deg": "39.82080078125", + "longitude_deg": "-105.05400085449219", + "elevation_ft": "5500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Westminster", + "scheduled_service": "no", + "gps_code": "CD04", + "local_code": "CD04" + }, + { + "id": "16636", + "ident": "CD05", + "type": "small_airport", + "name": "Jackson Airfield", + "latitude_deg": "40.194401", + "longitude_deg": "-102.697998", + "elevation_ft": "4075", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Yuma", + "scheduled_service": "no", + "gps_code": "CD05", + "local_code": "CD05" + }, + { + "id": "16637", + "ident": "CD06", + "type": "heliport", + "name": "Centennial Healthcare Plaza Heliport", + "latitude_deg": "39.594398498535156", + "longitude_deg": "-104.822998046875", + "elevation_ft": "5680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Englewood", + "scheduled_service": "no", + "gps_code": "CD06", + "local_code": "CD06" + }, + { + "id": "16638", + "ident": "CD07", + "type": "heliport", + "name": "Poudre Valley Hospital Heliport", + "latitude_deg": "40.57160186767578", + "longitude_deg": "-105.05599975585938", + "elevation_ft": "4960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Fort Collins", + "scheduled_service": "no", + "gps_code": "CD07", + "local_code": "CD07" + }, + { + "id": "16639", + "ident": "CD08", + "type": "heliport", + "name": "Public Service Company/Mdc Heliport", + "latitude_deg": "39.86669921875", + "longitude_deg": "-104.9010009765625", + "elevation_ft": "5110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Irondale", + "scheduled_service": "no", + "gps_code": "CD08", + "local_code": "CD08" + }, + { + "id": "16640", + "ident": "CD09", + "type": "small_airport", + "name": "Yoder Airstrip", + "latitude_deg": "39.819698333740234", + "longitude_deg": "-104.40899658203125", + "elevation_ft": "5345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Bennett", + "scheduled_service": "no", + "gps_code": "CD09", + "local_code": "CD09" + }, + { + "id": "16641", + "ident": "CD10", + "type": "small_airport", + "name": "Chapman Field", + "latitude_deg": "37.67499923706055", + "longitude_deg": "-106.55599975585938", + "elevation_ft": "8100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "South Fork", + "scheduled_service": "no", + "gps_code": "CD10", + "local_code": "CD10" + }, + { + "id": "16642", + "ident": "CD11", + "type": "heliport", + "name": "Mountain Bell/Durango Heliport", + "latitude_deg": "37.24169921875", + "longitude_deg": "-107.8759994506836", + "elevation_ft": "6534", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Durango", + "scheduled_service": "no", + "gps_code": "CD11", + "local_code": "CD11" + }, + { + "id": "16643", + "ident": "CD12", + "type": "heliport", + "name": "Gunnison Valley Hospital Heliport", + "latitude_deg": "38.551700592041016", + "longitude_deg": "-106.92500305175781", + "elevation_ft": "7715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Gunnison", + "scheduled_service": "no", + "gps_code": "CD12", + "local_code": "CD12" + }, + { + "id": "16644", + "ident": "CD13", + "type": "small_airport", + "name": "Morris Airport", + "latitude_deg": "39.83509826660156", + "longitude_deg": "-103.73600006103516", + "elevation_ft": "4750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Deer Trail", + "scheduled_service": "no", + "gps_code": "CD13", + "local_code": "CD13" + }, + { + "id": "16645", + "ident": "CD14", + "type": "small_airport", + "name": "J & S Airport", + "latitude_deg": "39.82889938354492", + "longitude_deg": "-104.43699645996094", + "elevation_ft": "5320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Bennett", + "scheduled_service": "no", + "gps_code": "CD14", + "local_code": "CD14" + }, + { + "id": "16646", + "ident": "CD15", + "type": "small_airport", + "name": "Schantz Airstrip", + "latitude_deg": "39.295794", + "longitude_deg": "-104.12178", + "elevation_ft": "5870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Simla", + "scheduled_service": "no", + "gps_code": "CD15", + "local_code": "CD15" + }, + { + "id": "16647", + "ident": "CD16", + "type": "heliport", + "name": "Branson Heliport", + "latitude_deg": "37.01919937133789", + "longitude_deg": "-103.88600158691406", + "elevation_ft": "6262", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Branson", + "scheduled_service": "no", + "gps_code": "CD16", + "local_code": "CD16" + }, + { + "id": "16648", + "ident": "CD17", + "type": "small_airport", + "name": "Bijou Basin Airport", + "latitude_deg": "39.905912", + "longitude_deg": "-104.122023", + "elevation_ft": "4885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Byers", + "scheduled_service": "no", + "gps_code": "CD17", + "local_code": "CD17" + }, + { + "id": "16649", + "ident": "CD18", + "type": "heliport", + "name": "Amax Mill Heliport", + "latitude_deg": "39.83330154418945", + "longitude_deg": "-106.06700134277344", + "elevation_ft": "9176", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Dillon/Silverthorne", + "scheduled_service": "no", + "gps_code": "CD18", + "local_code": "CD18" + }, + { + "id": "16650", + "ident": "CD19", + "type": "heliport", + "name": "Arapahoe Heliport", + "latitude_deg": "39.690799713134766", + "longitude_deg": "-105.50499725341797", + "elevation_ft": "10672", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Idaho Springs", + "scheduled_service": "no", + "gps_code": "CD19", + "local_code": "CD19" + }, + { + "id": "16651", + "ident": "CD20", + "type": "small_airport", + "name": "Sprague Airport", + "latitude_deg": "40.474998474121094", + "longitude_deg": "-105.22000122070312", + "elevation_ft": "5603", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Loveland", + "scheduled_service": "no", + "gps_code": "CD20", + "local_code": "CD20" + }, + { + "id": "16652", + "ident": "CD21", + "type": "heliport", + "name": "Badger Mountain Heliport", + "latitude_deg": "39.049400329589844", + "longitude_deg": "-105.51300048828125", + "elevation_ft": "11294", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Tarryall", + "scheduled_service": "no", + "gps_code": "CD21", + "local_code": "CD21" + }, + { + "id": "16653", + "ident": "CD22", + "type": "heliport", + "name": "North Suburban Medical Center Heliport", + "latitude_deg": "39.86360168457031", + "longitude_deg": "-104.98500061035156", + "elevation_ft": "5333", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Thornton", + "scheduled_service": "no", + "gps_code": "CD22", + "local_code": "CD22" + }, + { + "id": "16654", + "ident": "CD23", + "type": "small_airport", + "name": "Aero Bear Field", + "latitude_deg": "39.198299407958984", + "longitude_deg": "-104.3290023803711", + "elevation_ft": "6300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Calhan", + "scheduled_service": "no", + "gps_code": "CD23", + "local_code": "CD23" + }, + { + "id": "16655", + "ident": "CD24", + "type": "heliport", + "name": "Red Canyon Ranch Heliport", + "latitude_deg": "39.352500915527344", + "longitude_deg": "-105.00700378417969", + "elevation_ft": "6450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Castle Rock", + "scheduled_service": "no", + "gps_code": "CD24", + "local_code": "CD24" + }, + { + "id": "16656", + "ident": "CD25", + "type": "heliport", + "name": "Henderson Mine Heliport", + "latitude_deg": "39.76940155029297", + "longitude_deg": "-105.85099792480469", + "elevation_ft": "10340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Berthoud Falls", + "scheduled_service": "no", + "gps_code": "CD25", + "local_code": "CD25" + }, + { + "id": "16657", + "ident": "CD26", + "type": "heliport", + "name": "Peyton Heliport", + "latitude_deg": "39.04249954223633", + "longitude_deg": "-104.36499786376953", + "elevation_ft": "6821", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Calhan", + "scheduled_service": "no", + "gps_code": "CD26", + "local_code": "CD26" + }, + { + "id": "16658", + "ident": "CD27", + "type": "heliport", + "name": "Page Memorial Hospital Heliport", + "latitude_deg": "38.662498474121094", + "longitude_deg": "-78.4677963256836", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Luray", + "scheduled_service": "no", + "gps_code": "CD27", + "local_code": "CD27" + }, + { + "id": "16659", + "ident": "CD28", + "type": "small_airport", + "name": "Tall Timber Airport", + "latitude_deg": "39.64390182495117", + "longitude_deg": "-105.26799774169922", + "elevation_ft": "7360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Indian Hills", + "scheduled_service": "no", + "gps_code": "CD28", + "local_code": "CD28" + }, + { + "id": "16660", + "ident": "CD29", + "type": "heliport", + "name": "Cerro Summit Heliport", + "latitude_deg": "38.45000076293945", + "longitude_deg": "-107.6510009765625", + "elevation_ft": "8208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Cimarron", + "scheduled_service": "no", + "gps_code": "CD29", + "local_code": "CD29" + }, + { + "id": "16661", + "ident": "CD30", + "type": "heliport", + "name": "Fitzpatrick Heliport", + "latitude_deg": "38.38330078125", + "longitude_deg": "-107.41699981689453", + "elevation_ft": "9316", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Cimarron", + "scheduled_service": "no", + "gps_code": "CD30", + "local_code": "CD30" + }, + { + "id": "16662", + "ident": "CD31", + "type": "heliport", + "name": "Parker Adventist Hospital Heliport", + "latitude_deg": "39.547547", + "longitude_deg": "-104.76993", + "elevation_ft": "5766", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Parker", + "scheduled_service": "no", + "gps_code": "CD31", + "local_code": "CD31" + }, + { + "id": "16663", + "ident": "CD32", + "type": "small_airport", + "name": "Castle Lakes Airport", + "latitude_deg": "37.90919876098633", + "longitude_deg": "-107.3499984741211", + "elevation_ft": "9300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Lake City", + "scheduled_service": "no", + "gps_code": "CD32", + "local_code": "CD32" + }, + { + "id": "16664", + "ident": "CD33", + "type": "heliport", + "name": "Mesa Verde Heliport", + "latitude_deg": "37.25", + "longitude_deg": "-108.5009994506836", + "elevation_ft": "8074", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Cortez", + "scheduled_service": "no", + "gps_code": "CD33", + "local_code": "CD33" + }, + { + "id": "16665", + "ident": "CD34", + "type": "heliport", + "name": "Point Creek Heliport", + "latitude_deg": "38.79999923706055", + "longitude_deg": "-108.16699981689453", + "elevation_ft": "6200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Delta", + "scheduled_service": "no", + "gps_code": "CD34", + "local_code": "CD34" + }, + { + "id": "16666", + "ident": "CD35", + "type": "heliport", + "name": "Pleasant View Heliport", + "latitude_deg": "37.599998474121094", + "longitude_deg": "-108.63400268554688", + "elevation_ft": "7723", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Dove Creek", + "scheduled_service": "no", + "gps_code": "CD35", + "local_code": "CD35" + }, + { + "id": "16667", + "ident": "CD36", + "type": "heliport", + "name": "Egnar Heliport", + "latitude_deg": "37.88330078125", + "longitude_deg": "-108.83399963378906", + "elevation_ft": "8063", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Egnar", + "scheduled_service": "no", + "gps_code": "CD36", + "local_code": "CD36" + }, + { + "id": "16668", + "ident": "CD37", + "type": "heliport", + "name": "Berthoud Pass Heliport", + "latitude_deg": "39.79389953613281", + "longitude_deg": "-105.76399993896484", + "elevation_ft": "12442", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Empire", + "scheduled_service": "no", + "gps_code": "CD37", + "local_code": "CD37" + }, + { + "id": "16669", + "ident": "CD38", + "type": "heliport", + "name": "Sacramento Heliport", + "latitude_deg": "39.216400146484375", + "longitude_deg": "-106.08699798583984", + "elevation_ft": "11104", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Fairplay", + "scheduled_service": "no", + "gps_code": "CD38", + "local_code": "CD38" + }, + { + "id": "16670", + "ident": "CD39", + "type": "small_airport", + "name": "Pond's Field", + "latitude_deg": "40.26499938964844", + "longitude_deg": "-105.13700103759766", + "elevation_ft": "5050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Berthoud", + "scheduled_service": "no", + "gps_code": "CD39", + "local_code": "CD39" + }, + { + "id": "16671", + "ident": "CD40", + "type": "heliport", + "name": "Hilltop Heliport", + "latitude_deg": "39.42940139770508", + "longitude_deg": "-104.65899658203125", + "elevation_ft": "6737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Franktown", + "scheduled_service": "no", + "gps_code": "CD40", + "local_code": "CD40" + }, + { + "id": "16672", + "ident": "CD41", + "type": "heliport", + "name": "Sunlite Heliport", + "latitude_deg": "39.43330001831055", + "longitude_deg": "-107.38400268554688", + "elevation_ft": "10603", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Glenwood Springs", + "scheduled_service": "no", + "gps_code": "CD41", + "local_code": "CD41" + }, + { + "id": "16673", + "ident": "CD42", + "type": "heliport", + "name": "Lookout Mountain Heliport", + "latitude_deg": "39.53329849243164", + "longitude_deg": "-107.28399658203125", + "elevation_ft": "7985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Glenwood Springs", + "scheduled_service": "no", + "gps_code": "CD42", + "local_code": "CD42" + }, + { + "id": "16674", + "ident": "CD43", + "type": "heliport", + "name": "Granite Heliport", + "latitude_deg": "39.08610153198242", + "longitude_deg": "-106.26799774169922", + "elevation_ft": "10093", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Granite", + "scheduled_service": "no", + "gps_code": "CD43", + "local_code": "CD43" + }, + { + "id": "16675", + "ident": "CD44", + "type": "heliport", + "name": "Madden Peak Heliport", + "latitude_deg": "37.349998474121094", + "longitude_deg": "-108.1510009765625", + "elevation_ft": "10039", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Hesperus", + "scheduled_service": "no", + "gps_code": "CD44", + "local_code": "CD44" + }, + { + "id": "16676", + "ident": "CD45", + "type": "small_airport", + "name": "Flyin' B Ranch Airport", + "latitude_deg": "39.323299407958984", + "longitude_deg": "-104.572998046875", + "elevation_ft": "6720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Elizabeth", + "scheduled_service": "no", + "gps_code": "CD45", + "local_code": "CD45" + }, + { + "id": "16677", + "ident": "CD46", + "type": "heliport", + "name": "North Arrow Heliport", + "latitude_deg": "40.59109878540039", + "longitude_deg": "-105.0479965209961", + "elevation_ft": "4935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Fort Collins", + "scheduled_service": "no", + "gps_code": "CD46", + "local_code": "CD46" + }, + { + "id": "16678", + "ident": "CD47", + "type": "heliport", + "name": "Montrose Memorial Hospital Heliport", + "latitude_deg": "38.480098724365234", + "longitude_deg": "-107.86900329589844", + "elevation_ft": "5888", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Montrose", + "scheduled_service": "no", + "gps_code": "CD47", + "local_code": "CD47" + }, + { + "id": "16679", + "ident": "CD48", + "type": "small_airport", + "name": "Cuchara Ranch Airport", + "latitude_deg": "37.786399841308594", + "longitude_deg": "-104.59400177001953", + "elevation_ft": "5827", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Walsenburg", + "scheduled_service": "no", + "gps_code": "CD48", + "local_code": "CD48" + }, + { + "id": "16680", + "ident": "CD49", + "type": "heliport", + "name": "Matheson Heliport", + "latitude_deg": "39.17689895629883", + "longitude_deg": "-103.87999725341797", + "elevation_ft": "5976", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Matheson", + "scheduled_service": "no", + "gps_code": "CD49", + "local_code": "CD49" + }, + { + "id": "16681", + "ident": "CD50", + "type": "heliport", + "name": "Teepee Park Heliport", + "latitude_deg": "40.150001525878906", + "longitude_deg": "-107.86699676513672", + "elevation_ft": "8646", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Meeker", + "scheduled_service": "no", + "gps_code": "CD50", + "local_code": "CD50" + }, + { + "id": "16682", + "ident": "CD52", + "type": "heliport", + "name": "Mount Princeton Heliport", + "latitude_deg": "38.74530029296875", + "longitude_deg": "-106.19999694824219", + "elevation_ft": "10858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Mount Princeton", + "scheduled_service": "no", + "gps_code": "CD52", + "local_code": "CD52" + }, + { + "id": "45330", + "ident": "CD53", + "type": "heliport", + "name": "Sky Ridge Medical Center Heliport", + "latitude_deg": "39.528056", + "longitude_deg": "-104.869722", + "elevation_ft": "6025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Lone Tree", + "scheduled_service": "no", + "gps_code": "CD53", + "local_code": "CD53" + }, + { + "id": "16683", + "ident": "CD54", + "type": "heliport", + "name": "Raspberry Heliport", + "latitude_deg": "38.29999923706055", + "longitude_deg": "-108.18399810791016", + "elevation_ft": "9943", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Norwood", + "scheduled_service": "no", + "gps_code": "CD54", + "local_code": "CD54" + }, + { + "id": "16684", + "ident": "CD55", + "type": "heliport", + "name": "Norwood Junction Heliport", + "latitude_deg": "38.099998474121094", + "longitude_deg": "-106.28399658203125", + "elevation_ft": "7262", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Norwood", + "scheduled_service": "no", + "gps_code": "CD55", + "local_code": "CD55" + }, + { + "id": "16685", + "ident": "CD56", + "type": "heliport", + "name": "Grand Valley Heliport", + "latitude_deg": "39.417486", + "longitude_deg": "-108.1001", + "elevation_ft": "6095", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Parachute", + "scheduled_service": "no", + "gps_code": "CD56", + "local_code": "CD56" + }, + { + "id": "16686", + "ident": "CD57", + "type": "heliport", + "name": "Grouse Mountain Heliport", + "latitude_deg": "40.13330078125", + "longitude_deg": "-106.16699981689453", + "elevation_ft": "9855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Parshall", + "scheduled_service": "no", + "gps_code": "CD57", + "local_code": "CD57" + }, + { + "id": "16687", + "ident": "CD59", + "type": "heliport", + "name": "Placerville Heliport", + "latitude_deg": "38.016700744628906", + "longitude_deg": "-108.0510025024414", + "elevation_ft": "7304", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Placerville", + "scheduled_service": "no", + "gps_code": "CD59", + "local_code": "CD59" + }, + { + "id": "16688", + "ident": "CD62", + "type": "heliport", + "name": "Baxter Pass Heliport", + "latitude_deg": "39.58330154418945", + "longitude_deg": "-108.95099639892578", + "elevation_ft": "8718", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Rangely", + "scheduled_service": "no", + "gps_code": "CD62", + "local_code": "CD62" + }, + { + "id": "16689", + "ident": "CD63", + "type": "heliport", + "name": "Raven Ridge Heliport", + "latitude_deg": "40.116427", + "longitude_deg": "-108.950633", + "elevation_ft": "6084", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Rangely", + "scheduled_service": "no", + "gps_code": "CD63", + "local_code": "CD63" + }, + { + "id": "16690", + "ident": "CD65", + "type": "heliport", + "name": "Rico Heliport", + "latitude_deg": "37.68330001831055", + "longitude_deg": "-108.01699829101562", + "elevation_ft": "8807", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Rico", + "scheduled_service": "no", + "gps_code": "CD65", + "local_code": "CD65" + }, + { + "id": "16691", + "ident": "CD66", + "type": "heliport", + "name": "Rio Blanco Heliport", + "latitude_deg": "39.70000076293945", + "longitude_deg": "-107.95099639892578", + "elevation_ft": "8416", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Rio Blanco", + "scheduled_service": "no", + "gps_code": "CD66", + "local_code": "CD66" + }, + { + "id": "16692", + "ident": "CD68", + "type": "heliport", + "name": "Silverton Junction Heliport", + "latitude_deg": "37.79999923706055", + "longitude_deg": "-107.66699981689453", + "elevation_ft": "9272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Silverton", + "scheduled_service": "no", + "gps_code": "CD68", + "local_code": "CD68" + }, + { + "id": "16693", + "ident": "CD69", + "type": "small_airport", + "name": "Morning Shadows Ranch Airport", + "latitude_deg": "37.740299224853516", + "longitude_deg": "-106.5260009765625", + "elevation_ft": "8300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "South Fork", + "scheduled_service": "no", + "gps_code": "CD69", + "local_code": "CD69" + }, + { + "id": "16694", + "ident": "CD70", + "type": "heliport", + "name": "Mount Werner Heliport", + "latitude_deg": "40.45000076293945", + "longitude_deg": "-106.73400115966797", + "elevation_ft": "10554", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Steamboat Springs", + "scheduled_service": "no", + "gps_code": "CD70", + "local_code": "CD70" + }, + { + "id": "45962", + "ident": "CD71", + "type": "heliport", + "name": "Hecox Heliport", + "latitude_deg": "38.624567", + "longitude_deg": "-105.516017", + "elevation_ft": "8250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Guffey", + "scheduled_service": "no", + "gps_code": "CD71", + "local_code": "CD71" + }, + { + "id": "16695", + "ident": "CD72", + "type": "heliport", + "name": "Missionary Ridge Heliport", + "latitude_deg": "37.349998474121094", + "longitude_deg": "-107.76699829101562", + "elevation_ft": "9873", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Trimble", + "scheduled_service": "no", + "gps_code": "CD72", + "local_code": "CD72" + }, + { + "id": "16696", + "ident": "CD74", + "type": "heliport", + "name": "Vail Junction Heliport", + "latitude_deg": "39.61669921875", + "longitude_deg": "-106.38400268554688", + "elevation_ft": "10116", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Vail", + "scheduled_service": "no", + "gps_code": "CD74", + "local_code": "CD74" + }, + { + "id": "16697", + "ident": "CD75", + "type": "heliport", + "name": "Whitewater Heliport", + "latitude_deg": "38.900001525878906", + "longitude_deg": "-108.48400115966797", + "elevation_ft": "6208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Whitewater", + "scheduled_service": "no", + "gps_code": "CD75", + "local_code": "CD75" + }, + { + "id": "16698", + "ident": "CD77", + "type": "heliport", + "name": "Castle Peak Heliport", + "latitude_deg": "39.70000076293945", + "longitude_deg": "-106.76699829101562", + "elevation_ft": "9212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Wolcott", + "scheduled_service": "no", + "gps_code": "CD77", + "local_code": "CD77" + }, + { + "id": "16699", + "ident": "CD78", + "type": "heliport", + "name": "Coal Bank Pass Heliport", + "latitude_deg": "37.68330001831055", + "longitude_deg": "-107.76699829101562", + "elevation_ft": "10634", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Wolf Creek", + "scheduled_service": "no", + "gps_code": "CD78", + "local_code": "CD78" + }, + { + "id": "16700", + "ident": "CD79", + "type": "heliport", + "name": "Northfield Heliport", + "latitude_deg": "38.98529815673828", + "longitude_deg": "-104.91699981689453", + "elevation_ft": "9200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Woodland Park", + "scheduled_service": "no", + "gps_code": "CD79", + "local_code": "CD79" + }, + { + "id": "16701", + "ident": "CD80", + "type": "heliport", + "name": "Phippsburg Heliport", + "latitude_deg": "40.233299255371094", + "longitude_deg": "-106.9010009765625", + "elevation_ft": "8347", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Oak Creek", + "scheduled_service": "no", + "gps_code": "CD80", + "local_code": "CD80" + }, + { + "id": "16702", + "ident": "CD81", + "type": "heliport", + "name": "Owl Ridge Heliport", + "latitude_deg": "40.45000076293945", + "longitude_deg": "-106.20099639892578", + "elevation_ft": "8796", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Walden", + "scheduled_service": "no", + "gps_code": "CD81", + "local_code": "CD81" + }, + { + "id": "16703", + "ident": "CD82", + "type": "small_airport", + "name": "Val Air Airport", + "latitude_deg": "37.337799072265625", + "longitude_deg": "-107.85199737548828", + "elevation_ft": "6548", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Durango", + "scheduled_service": "no", + "gps_code": "CD82", + "local_code": "CD82" + }, + { + "id": "16704", + "ident": "CD97", + "type": "small_airport", + "name": "Montemadeira Ii Airport", + "latitude_deg": "38.805599212646484", + "longitude_deg": "-107.77400207519531", + "elevation_ft": "5750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Hotchkiss", + "scheduled_service": "no", + "gps_code": "CD97", + "local_code": "CD97" + }, + { + "id": "16705", + "ident": "CD99", + "type": "small_airport", + "name": "Lucky L Ranch Airport", + "latitude_deg": "40.358299255371094", + "longitude_deg": "-106.83000183105469", + "elevation_ft": "7000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Steamboat Springs", + "scheduled_service": "no", + "gps_code": "CD99", + "local_code": "CD99" + }, + { + "id": "798", + "ident": "CDA3", + "type": "closed", + "name": "Valley Airport", + "latitude_deg": "45.396702", + "longitude_deg": "-63.215599", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Valley", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valley_Airport", + "keywords": "CDA3" + }, + { + "id": "799", + "ident": "CDA4", + "type": "small_airport", + "name": "Pokemouche Airport", + "latitude_deg": "47.7164", + "longitude_deg": "-64.8825", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Village-Blanchard", + "scheduled_service": "no", + "gps_code": "CDA4", + "local_code": "CDA4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pokemouche_Airport", + "keywords": "DA4" + }, + { + "id": "800", + "ident": "CDA5", + "type": "small_airport", + "name": "St. Andrews Codroy Valley Airport", + "latitude_deg": "47.775098", + "longitude_deg": "-59.312525", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "St. Andrews", + "scheduled_service": "no", + "gps_code": "CDA5", + "local_code": "CDA5", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Andrews_(Codroy_Valley)_Airport", + "keywords": "DA5" + }, + { + "id": "801", + "ident": "CDA6", + "type": "small_airport", + "name": "Bristol Airport", + "latitude_deg": "46.45940017700195", + "longitude_deg": "-67.564697265625", + "elevation_ft": "574", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Bristol", + "scheduled_service": "no", + "gps_code": "CDA6", + "local_code": "CDA6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bristol_Airport_(New_Brunswick)", + "keywords": "DA6" + }, + { + "id": "802", + "ident": "CDA7", + "type": "heliport", + "name": "Shunda (Fire Base) Heliport", + "latitude_deg": "52.491254", + "longitude_deg": "-115.757494", + "elevation_ft": "4700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Shunda", + "scheduled_service": "no", + "gps_code": "CDA7", + "local_code": "CDA7", + "keywords": "DA7" + }, + { + "id": "803", + "ident": "CDB5", + "type": "heliport", + "name": "Moncton / Salisbury Heliport", + "latitude_deg": "46.049103", + "longitude_deg": "-65.061893", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Salisbury", + "scheduled_service": "no", + "gps_code": "CDB5", + "local_code": "CDB5", + "keywords": "DB5" + }, + { + "id": "804", + "ident": "CDC2", + "type": "heliport", + "name": "St. John's (Universal) Heliport", + "latitude_deg": "47.6083421288", + "longitude_deg": "-52.7270713449", + "elevation_ft": "412", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "St. John's", + "scheduled_service": "no", + "gps_code": "CDC2", + "local_code": "CDC2", + "keywords": "DC2" + }, + { + "id": "805", + "ident": "CDC3", + "type": "small_airport", + "name": "Dawson Creek (Flying L Ranch) Airport", + "latitude_deg": "55.819488525390625", + "longitude_deg": "-120.46028137207031", + "elevation_ft": "2680", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Dawson Creek", + "scheduled_service": "no", + "gps_code": "CDC3", + "local_code": "CDC3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dawson_Creek_(Flying_L_Ranch)_Airport", + "keywords": "DC3" + }, + { + "id": "806", + "ident": "CDC4", + "type": "small_airport", + "name": "Saint-Quentin Airport", + "latitude_deg": "47.521099", + "longitude_deg": "-67.421097", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Saint-Quentin", + "scheduled_service": "no", + "gps_code": "CDC4", + "local_code": "CDC4", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Quentin_Airport", + "keywords": "DC4" + }, + { + "id": "320455", + "ident": "CDC5", + "type": "small_airport", + "name": "Dougall Campbell Field", + "latitude_deg": "52.010801", + "longitude_deg": "-121.2107", + "elevation_ft": "3060", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Oie Lake", + "scheduled_service": "no", + "gps_code": "CDC5", + "local_code": "CDC5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oie_Lake/Dougall_Campbell_Field_Aerodrome" + }, + { + "id": "16706", + "ident": "CDD", + "type": "seaplane_base", + "name": "Scotts Seaplane Base", + "latitude_deg": "48.2666015625", + "longitude_deg": "-92.483497619629", + "elevation_ft": "1119", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Crane Lake", + "scheduled_service": "no", + "gps_code": "KCDD", + "local_code": "CDD", + "home_link": "http://www.scottsoncranelake.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Scotts_Seaplane_Base" + }, + { + "id": "28377", + "ident": "CDD2", + "type": "seaplane_base", + "name": "Porters Lake Waterdrome", + "latitude_deg": "44.7122", + "longitude_deg": "-63.298901", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Porters Lake", + "scheduled_service": "no", + "gps_code": "CDD2", + "local_code": "CDD2" + }, + { + "id": "807", + "ident": "CDD3", + "type": "small_airport", + "name": "Ste-Agnès-de-Dundee Airport", + "latitude_deg": "45.04750061035156", + "longitude_deg": "-74.34329986572266", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Ste-Agnès-de-Dundee", + "scheduled_service": "no", + "gps_code": "CDD3", + "local_code": "CDD3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ste-Agn%C3%A8s-de-Dundee_Airport", + "keywords": "DD3" + }, + { + "id": "16707", + "ident": "CDE", + "type": "heliport", + "name": "Cape Decision C. G. Heliport", + "latitude_deg": "56.001921", + "longitude_deg": "-134.135728", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cape Decision", + "scheduled_service": "no", + "local_code": "CDE" + }, + { + "id": "321783", + "ident": "CDE2", + "type": "heliport", + "name": "Lac-Des-Ecorces / Heliport Belle-Ile", + "latitude_deg": "46.525", + "longitude_deg": "-75.3852778", + "elevation_ft": "802", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CDE2", + "local_code": "CDE2" + }, + { + "id": "43878", + "ident": "CDF2", + "type": "small_airport", + "name": "Teeswater (Dent Field)", + "latitude_deg": "43.99444580078125", + "longitude_deg": "-81.29360961914062", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "local_code": "CDF2" + }, + { + "id": "300228", + "ident": "CDF3", + "type": "small_airport", + "name": "Englehart (Dave's Field)", + "latitude_deg": "47.809722223", + "longitude_deg": "-79.8111111111", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Englehart", + "scheduled_service": "no", + "gps_code": "CDF3", + "local_code": "CDF3" + }, + { + "id": "320288", + "ident": "CDF5", + "type": "small_airport", + "name": "Elora Airport", + "latitude_deg": "43.632401", + "longitude_deg": "-80.3565", + "elevation_ft": "1236", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Elora", + "scheduled_service": "no", + "gps_code": "CDF5", + "local_code": "CDF5" + }, + { + "id": "332261", + "ident": "CDF6", + "type": "small_airport", + "name": "Arthur (Damascus Field)", + "latitude_deg": "43.895781", + "longitude_deg": "-80.518949", + "elevation_ft": "1580", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CDF6", + "local_code": "CDF6" + }, + { + "id": "808", + "ident": "CDG2", + "type": "heliport", + "name": "Digby (General Hospital) Heliport", + "latitude_deg": "44.6161003112793", + "longitude_deg": "-65.76190185546875", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Digby", + "scheduled_service": "no", + "gps_code": "CDG2", + "local_code": "CDG2", + "keywords": "DG2" + }, + { + "id": "45220", + "ident": "CDG3", + "type": "small_airport", + "name": "Dungannon Aerodrome", + "latitude_deg": "43.836245", + "longitude_deg": "-81.606746", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ashfield-Colborne-Wawanosh", + "scheduled_service": "no", + "gps_code": "CDG3", + "local_code": "CDG3" + }, + { + "id": "809", + "ident": "CDH1", + "type": "small_airport", + "name": "Deerhurst Resort Airport", + "latitude_deg": "45.354198455799995", + "longitude_deg": "-79.1513977051", + "elevation_ft": "1029", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Huntsville", + "scheduled_service": "no", + "gps_code": "CDH1", + "local_code": "CDH1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Huntsville/Deerhurst_Resort_Airport", + "keywords": "DH1" + }, + { + "id": "810", + "ident": "CDH2", + "type": "heliport", + "name": "Drumheller (Health Centre) Heliport", + "latitude_deg": "51.469111", + "longitude_deg": "-112.728186", + "elevation_ft": "2246", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Drumheller", + "scheduled_service": "no", + "gps_code": "CDH2", + "local_code": "CDH2" + }, + { + "id": "811", + "ident": "CDH3", + "type": "small_airport", + "name": "Finlay Air Park", + "latitude_deg": "43.959239", + "longitude_deg": "-65.998429", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "South Ohio", + "scheduled_service": "no", + "gps_code": "CDH3", + "local_code": "CDH3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Finlay_Air_Park", + "keywords": "DH3" + }, + { + "id": "320263", + "ident": "CDH4", + "type": "heliport", + "name": "Cowichan District Hospital Heliport", + "latitude_deg": "48.7862", + "longitude_deg": "-123.7214", + "elevation_ft": "132", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Duncan", + "scheduled_service": "no", + "gps_code": "CDH4", + "local_code": "CDH4" + }, + { + "id": "320432", + "ident": "CDH5", + "type": "heliport", + "name": "Nanaimo Harbour Heliport", + "latitude_deg": "49.16084", + "longitude_deg": "-123.923205", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Nanaimo", + "scheduled_service": "no", + "gps_code": "CDH5", + "local_code": "CDH5" + }, + { + "id": "320257", + "ident": "CDH6", + "type": "small_airport", + "name": "Delhi Airport", + "latitude_deg": "42.8846", + "longitude_deg": "-80.4062", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Delhi", + "scheduled_service": "no", + "gps_code": "CDH6", + "local_code": "CDH6" + }, + { + "id": "812", + "ident": "CDJ4", + "type": "small_airport", + "name": "Clearwater Airport", + "latitude_deg": "46.71329879760742", + "longitude_deg": "-66.82830047607422", + "elevation_ft": "1330", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Clearwater", + "scheduled_service": "no", + "gps_code": "CDJ4", + "local_code": "CDJ4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clearwater_Airport", + "keywords": "DJ4" + }, + { + "id": "813", + "ident": "CDJ5", + "type": "small_airport", + "name": "Strathmore (D.J. Murray) Airport", + "latitude_deg": "51.133146", + "longitude_deg": "-113.55996", + "elevation_ft": "3150", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Lyalta", + "scheduled_service": "no", + "gps_code": "CDJ5", + "local_code": "CDJ5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Strathmore_(D.J._Murray)_Airport", + "keywords": "DJ5" + }, + { + "id": "16708", + "ident": "CDK", + "type": "small_airport", + "name": "George T Lewis Airport", + "latitude_deg": "29.134095", + "longitude_deg": "-83.050783", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Cedar Key", + "scheduled_service": "no", + "gps_code": "KCDK", + "local_code": "CDK" + }, + { + "id": "814", + "ident": "CDK2", + "type": "small_airport", + "name": "Diavik Airport", + "latitude_deg": "64.5113983154", + "longitude_deg": "-110.289001465", + "elevation_ft": "1413", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Diavik", + "scheduled_service": "no", + "gps_code": "CDK2", + "iata_code": "DVK", + "local_code": "CDK2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Diavik_Airport", + "keywords": "DK2" + }, + { + "id": "321912", + "ident": "CDK3", + "type": "seaplane_base", + "name": "Dorset/Kawagama Lake (South) Seaplane Base", + "latitude_deg": "45.2638", + "longitude_deg": "-78.7922", + "elevation_ft": "1165", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Dorset", + "scheduled_service": "no", + "gps_code": "CDK3", + "local_code": "CDK3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dorset/Kawagama_Lake_(South)_Water_Aerodrome" + }, + { + "id": "815", + "ident": "CDL3", + "type": "heliport", + "name": "Daysland Health Centre Heliport", + "latitude_deg": "52.8689", + "longitude_deg": "-112.273003", + "elevation_ft": "2307", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Daysland", + "scheduled_service": "no", + "gps_code": "CDL3", + "local_code": "CDL3" + }, + { + "id": "320831", + "ident": "CDL5", + "type": "seaplane_base", + "name": "Doctor’s Lake East Water Aerodrome", + "latitude_deg": "43.8817", + "longitude_deg": "-66.0975", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Hebron", + "scheduled_service": "no", + "gps_code": "CDL5", + "local_code": "CDL5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Doctor%27s_Lake_East_Water_Aerodrome" + }, + { + "id": "320832", + "ident": "CDL6", + "type": "seaplane_base", + "name": "Doctor's Lake West Water Aerodrome", + "latitude_deg": "43.8836", + "longitude_deg": "-66.1028", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Lakeside", + "scheduled_service": "no", + "gps_code": "CDL6", + "local_code": "CDL6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Doctor%27s_Lake_West_Water_Aerodrome" + }, + { + "id": "43879", + "ident": "CDL7", + "type": "small_airport", + "name": "Doris Lake", + "latitude_deg": "68.1252746582", + "longitude_deg": "-106.585281372", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Hope Bay", + "scheduled_service": "no", + "iata_code": "JOJ", + "local_code": "CDL7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Doris_Lake_Aerodrome" + }, + { + "id": "320210", + "ident": "CDL8", + "type": "small_airport", + "name": "Centredale Airport", + "latitude_deg": "45.4094", + "longitude_deg": "-62.618401", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Centredale", + "scheduled_service": "no", + "gps_code": "CDL8", + "local_code": "CDL8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Centredale_Aerodrome" + }, + { + "id": "816", + "ident": "CDO2", + "type": "small_airport", + "name": "Ostergard's Airport", + "latitude_deg": "51.29439926147461", + "longitude_deg": "-112.61399841308594", + "elevation_ft": "2900", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Drumheller", + "scheduled_service": "no", + "gps_code": "CDO2", + "local_code": "CDO2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Drumheller/Ostergard's_Airport", + "keywords": "DO2" + }, + { + "id": "28356", + "ident": "CDS6", + "type": "closed", + "name": "Parry Sound/Derbyshire Island Seaplane Base", + "latitude_deg": "45.2447013855", + "longitude_deg": "-80.1549987793", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CDS6", + "local_code": "CDS6" + }, + { + "id": "28260", + "ident": "CDT2", + "type": "seaplane_base", + "name": "Hoopers Lake Seaplane Base", + "latitude_deg": "43.953899", + "longitude_deg": "-65.990799", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "South Ohio", + "scheduled_service": "no", + "gps_code": "CDT2", + "local_code": "CDT2" + }, + { + "id": "817", + "ident": "CDT3", + "type": "heliport", + "name": "Arichat (St. Anne Ladies Auxiliary Hospital) Heliport", + "latitude_deg": "45.5114446152", + "longitude_deg": "-61.0330438614", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Arichat", + "scheduled_service": "no", + "gps_code": "CDT3", + "local_code": "CDT3", + "keywords": "DT3" + }, + { + "id": "818", + "ident": "CDT5", + "type": "small_airport", + "name": "Bouctouche Airport", + "latitude_deg": "46.509399", + "longitude_deg": "-64.693901", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Buctouche", + "scheduled_service": "no", + "gps_code": "CDT5", + "local_code": "CDT5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bouctouche_Aerodrome", + "keywords": "CU4" + }, + { + "id": "819", + "ident": "CDT6", + "type": "heliport", + "name": "Bridgewater (South Shore Regional Hospital) Heliport", + "latitude_deg": "44.38214467379999", + "longitude_deg": "-64.5104205608", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Bridgewater", + "scheduled_service": "no", + "gps_code": "CDT6", + "local_code": "CDT6", + "keywords": "DT6" + }, + { + "id": "320271", + "ident": "CDT7", + "type": "small_airport", + "name": "Dutton Airport", + "latitude_deg": "42.6592", + "longitude_deg": "-81.512602", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Dutton", + "scheduled_service": "no", + "gps_code": "CDT7", + "local_code": "CDT7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dutton_Aerodrome" + }, + { + "id": "820", + "ident": "CDU3", + "type": "heliport", + "name": "Yarmouth (Regional Hospital) Heliport", + "latitude_deg": "43.848668441", + "longitude_deg": "-66.1210119724", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Yarmouth", + "scheduled_service": "no", + "gps_code": "CDU3", + "local_code": "CDU3", + "keywords": "DU3" + }, + { + "id": "28425", + "ident": "CDU4", + "type": "seaplane_base", + "name": "Springdale/Davis Pond Seaplane Base", + "latitude_deg": "49.550052", + "longitude_deg": "-56.064591", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Springdale", + "scheduled_service": "no", + "gps_code": "CDU4", + "local_code": "CDU4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Springdale/Davis_Pond_Water_Aerodrome", + "keywords": "DU4" + }, + { + "id": "821", + "ident": "CDU6", + "type": "small_airport", + "name": "Doaktown Airport", + "latitude_deg": "46.5525016784668", + "longitude_deg": "-66.09390258789062", + "elevation_ft": "326", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Doaktown", + "scheduled_service": "no", + "gps_code": "CDU6", + "local_code": "CDU6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Doaktown_Airport", + "keywords": "DU6" + }, + { + "id": "822", + "ident": "CDU9", + "type": "closed", + "name": "Dunnville Airport", + "latitude_deg": "42.872200012200004", + "longitude_deg": "-79.5958023071", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Dunnville", + "scheduled_service": "no", + "gps_code": "CDU9", + "local_code": "CDU9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dunnville_Airport", + "keywords": "DU9, BCATP" + }, + { + "id": "823", + "ident": "CDV2", + "type": "small_airport", + "name": "Downs Gulch Airport", + "latitude_deg": "47.75360107421875", + "longitude_deg": "-67.42610168457031", + "elevation_ft": "883", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Downs Gulch", + "scheduled_service": "no", + "gps_code": "CDV2", + "local_code": "CDV2", + "keywords": "DV2" + }, + { + "id": "824", + "ident": "CDV3", + "type": "heliport", + "name": "Charlottetown (Queen Elizabeth Hospital) Heliport", + "latitude_deg": "46.255493", + "longitude_deg": "-63.098887", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-PE", + "municipality": "Charlottetown", + "scheduled_service": "no", + "gps_code": "CDV3", + "local_code": "CDV3", + "keywords": "DV3" + }, + { + "id": "320260", + "ident": "CDV4", + "type": "closed", + "name": "Canadian Skydive Centre Airport", + "latitude_deg": "51.6322", + "longitude_deg": "-114.1099", + "elevation_ft": "3470", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Didsbury", + "scheduled_service": "no", + "gps_code": "CDV4", + "local_code": "CDV4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Didsbury_(Vertical_Extreme_Skydiving)_Aerodrome" + }, + { + "id": "825", + "ident": "CDW2", + "type": "small_airport", + "name": "Baddeck (Crown Jewel) Airport", + "latitude_deg": "46.165000915527344", + "longitude_deg": "-60.78390121459961", + "elevation_ft": "290", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Baddeck", + "scheduled_service": "no", + "gps_code": "CDW2", + "local_code": "CDW2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baddeck_(Crown_Jewel)_Airport", + "keywords": "DW2" + }, + { + "id": "826", + "ident": "CDY2", + "type": "closed", + "name": "Halifax (South Battery) Heliport", + "latitude_deg": "44.643736893399996", + "longitude_deg": "-63.5677018762", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Halifax", + "scheduled_service": "no", + "gps_code": "CDY2", + "local_code": "CDY2", + "keywords": "DY2" + }, + { + "id": "827", + "ident": "CDY3", + "type": "small_airport", + "name": "Fogo Airport", + "latitude_deg": "49.657501", + "longitude_deg": "-54.237499", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Fogo", + "scheduled_service": "no", + "gps_code": "CDY3", + "local_code": "CDY3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fogo_Airport", + "keywords": "DY3" + }, + { + "id": "828", + "ident": "CDY5", + "type": "heliport", + "name": "Antigonish (St. Martha's Regional Hospital) Heliport", + "latitude_deg": "45.626836146", + "longitude_deg": "-61.98193296789999", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Antigonish", + "scheduled_service": "no", + "gps_code": "CDY5", + "local_code": "CDY5", + "keywords": "DY5" + }, + { + "id": "829", + "ident": "CDY6", + "type": "small_airport", + "name": "Bridgewater / Dayspring Airpark", + "latitude_deg": "44.3819007874", + "longitude_deg": "-64.456703186", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Bridgewater", + "scheduled_service": "no", + "gps_code": "CDY6", + "local_code": "CDY6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bridgewater/Dayspring_Airpark", + "keywords": "DY6" + }, + { + "id": "830", + "ident": "CEA3", + "type": "small_airport", + "name": "Olds-Didsbury Airport", + "latitude_deg": "51.7118988037", + "longitude_deg": "-114.107002258", + "elevation_ft": "3360", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Olds-Didsbury", + "scheduled_service": "no", + "gps_code": "CEA3", + "local_code": "CEA3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Olds-Didsbury_Airport", + "keywords": "EA3" + }, + { + "id": "831", + "ident": "CEA5", + "type": "small_airport", + "name": "Hardisty Airport", + "latitude_deg": "52.64690017700195", + "longitude_deg": "-111.38400268554688", + "elevation_ft": "2326", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Hardisty", + "scheduled_service": "no", + "gps_code": "CEA5", + "local_code": "CEA5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hardisty_Airport", + "keywords": "EA5" + }, + { + "id": "832", + "ident": "CEA6", + "type": "small_airport", + "name": "Cardston Airport", + "latitude_deg": "49.162498474121094", + "longitude_deg": "-113.24099731445312", + "elevation_ft": "3887", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Cardston", + "scheduled_service": "no", + "gps_code": "CEA6", + "local_code": "CEA6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cardston_Airport", + "keywords": "EA6" + }, + { + "id": "316106", + "ident": "CEA8", + "type": "closed", + "name": "Brabant Lodge Water Aerodrome", + "latitude_deg": "61.059", + "longitude_deg": "-116.6005", + "elevation_ft": "514", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Fort Providence", + "scheduled_service": "no", + "gps_code": "CEA8", + "local_code": "CEA8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hay_River/Brabant_Lodge_Water_Aerodrome", + "keywords": "EA8" + }, + { + "id": "833", + "ident": "CEB3", + "type": "closed", + "name": "Colville Lake Airport", + "latitude_deg": "67.0392", + "longitude_deg": "-126.08", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Colville Lake", + "scheduled_service": "no", + "gps_code": "CEB3", + "local_code": "CEB3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Colville_Lake_Airport", + "keywords": "EB3" + }, + { + "id": "320663", + "ident": "CEB4", + "type": "small_airport", + "name": "Rockyford/Early Bird Air Airport", + "latitude_deg": "51.1777", + "longitude_deg": "-113.2791", + "elevation_ft": "2876", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Rockyford", + "scheduled_service": "no", + "gps_code": "CEB4", + "local_code": "CEB4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rockyford/Early_Bird_Air_Aerodrome" + }, + { + "id": "834", + "ident": "CEB5", + "type": "small_airport", + "name": "Fairview Airport", + "latitude_deg": "56.081401825", + "longitude_deg": "-118.434997559", + "elevation_ft": "2166", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Fairview", + "scheduled_service": "no", + "gps_code": "CEB5", + "iata_code": "ZFW", + "local_code": "CEB5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fairview_Airport", + "keywords": "EB5" + }, + { + "id": "28189", + "ident": "CEB7", + "type": "seaplane_base", + "name": "Carcross Seaplane Base", + "latitude_deg": "60.172428", + "longitude_deg": "-134.697404", + "elevation_ft": "2152", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Carcross", + "scheduled_service": "no", + "gps_code": "CEB7", + "local_code": "CEB7", + "keywords": "EB7" + }, + { + "id": "43876", + "ident": "CEB8", + "type": "small_airport", + "name": "Essex/Billing Airstrip", + "latitude_deg": "42.186668", + "longitude_deg": "-82.782219", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Lakeshore", + "scheduled_service": "no", + "local_code": "CEB8" + }, + { + "id": "28305", + "ident": "CEB9", + "type": "seaplane_base", + "name": "Lutselk'e Seaplane Base", + "latitude_deg": "62.400002", + "longitude_deg": "-110.75", + "elevation_ft": "514", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Łutselk'e", + "scheduled_service": "no", + "gps_code": "CEB9", + "local_code": "CEB9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lutselk%27e_Water_Aerodrome", + "keywords": "EB9, Snowdrift Water Aerodrome" + }, + { + "id": "835", + "ident": "CEC3", + "type": "small_airport", + "name": "Fox Lake Airport", + "latitude_deg": "58.47330093383789", + "longitude_deg": "-114.54299926757812", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Fox Lake", + "scheduled_service": "no", + "gps_code": "CEC3", + "local_code": "CEC3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fox_Lake_Airport", + "keywords": "EC3" + }, + { + "id": "836", + "ident": "CEC4", + "type": "small_airport", + "name": "Hinton/Jasper-Hinton Airport", + "latitude_deg": "53.3191986084", + "longitude_deg": "-117.752998352", + "elevation_ft": "4006", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Hinton", + "scheduled_service": "no", + "gps_code": "CEC4", + "iata_code": "YJP", + "local_code": "CEC4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hinton/Jasper-Hinton_Airport", + "keywords": "EC4" + }, + { + "id": "837", + "ident": "CEC5", + "type": "heliport", + "name": "Fort Smith (District) Heliport", + "latitude_deg": "60.00310134887695", + "longitude_deg": "-111.90899658203125", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Fort Smith", + "scheduled_service": "no", + "gps_code": "CEC5", + "local_code": "CEC5", + "keywords": "EC5" + }, + { + "id": "838", + "ident": "CED2", + "type": "closed", + "name": "Chinchaga Airport", + "latitude_deg": "57.5428009033", + "longitude_deg": "-119.130996704", + "elevation_ft": "2280", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Chinchaga", + "scheduled_service": "no", + "gps_code": "CED2", + "local_code": "CED2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chinchaga_Airport", + "keywords": "ED2" + }, + { + "id": "839", + "ident": "CED3", + "type": "small_airport", + "name": "Oyen Municipal Airport", + "latitude_deg": "51.33420181274414", + "longitude_deg": "-110.49099731445312", + "elevation_ft": "2498", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Oyen", + "scheduled_service": "no", + "gps_code": "CED3", + "local_code": "CED3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oyen_Municipal_Airport", + "keywords": "ED3" + }, + { + "id": "840", + "ident": "CED4", + "type": "small_airport", + "name": "Fox Creek Airport", + "latitude_deg": "54.380001068115234", + "longitude_deg": "-116.76599884033203", + "elevation_ft": "2842", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Fox Creek", + "scheduled_service": "no", + "gps_code": "CED4", + "local_code": "CED4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fox_Creek_Airport", + "keywords": "ED4" + }, + { + "id": "841", + "ident": "CED5", + "type": "small_airport", + "name": "Taber Airport", + "latitude_deg": "49.826698303222656", + "longitude_deg": "-112.18499755859375", + "elevation_ft": "2648", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Taber", + "scheduled_service": "no", + "gps_code": "CED5", + "local_code": "CED5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taber_Airport", + "keywords": "ED5" + }, + { + "id": "842", + "ident": "CED6", + "type": "small_airport", + "name": "Highwood Airport", + "latitude_deg": "50.80189895629883", + "longitude_deg": "-113.88899993896484", + "elevation_ft": "3450", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "De Winton", + "scheduled_service": "no", + "gps_code": "CED6", + "local_code": "CED6", + "wikipedia_link": "https://en.wikipedia.org/wiki/De_Winton/Highwood_Airport", + "keywords": "ED6" + }, + { + "id": "28198", + "ident": "CED7", + "type": "seaplane_base", + "name": "Colville Lake Seaplane Base", + "latitude_deg": "67.050003", + "longitude_deg": "-126.099998", + "elevation_ft": "801", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Colville Lake", + "scheduled_service": "no", + "gps_code": "CED7", + "local_code": "CED7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Colville_Lake_Water_Aerodrome", + "keywords": "ED7" + }, + { + "id": "311595", + "ident": "CED8", + "type": "small_airport", + "name": "Thunderbay / Eldorado Field", + "latitude_deg": "48.5722222222", + "longitude_deg": "-88.81666666670002", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Eldorado", + "scheduled_service": "no", + "gps_code": "CED8", + "local_code": "CED8" + }, + { + "id": "28436", + "ident": "CED9", + "type": "seaplane_base", + "name": "Taltheilei Narrows Seaplane Base", + "latitude_deg": "62.599998474121094", + "longitude_deg": "-111.51699829101562", + "elevation_ft": "514", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no", + "gps_code": "CED9", + "local_code": "CED9" + }, + { + "id": "28267", + "ident": "CEE3", + "type": "seaplane_base", + "name": "Inuvik/Shell Lake Seaplane Base", + "latitude_deg": "68.316704", + "longitude_deg": "-133.617007", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no", + "gps_code": "CEE3", + "local_code": "CEE3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Inuvik/Shell_Lake_Water_Aerodrome", + "keywords": "EE3" + }, + { + "id": "843", + "ident": "CEE4", + "type": "small_airport", + "name": "Hinton / Entrance Airport", + "latitude_deg": "53.381401062", + "longitude_deg": "-117.700996399", + "elevation_ft": "3450", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Hinton", + "scheduled_service": "no", + "gps_code": "CEE4", + "local_code": "CEE4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hinton/Entrance_Airport", + "keywords": "EE4" + }, + { + "id": "844", + "ident": "CEE5", + "type": "small_airport", + "name": "Wabasca Airport", + "latitude_deg": "55.9618988037", + "longitude_deg": "-113.819000244", + "elevation_ft": "1827", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Wabasca", + "scheduled_service": "no", + "gps_code": "CEE5", + "local_code": "CEE5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wabasca_Airport", + "keywords": "EE5" + }, + { + "id": "845", + "ident": "CEE6", + "type": "small_airport", + "name": "Edmonton / Twin Island Airpark", + "latitude_deg": "53.471087", + "longitude_deg": "-113.155665", + "elevation_ft": "2435", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Sherwood Park", + "scheduled_service": "no", + "gps_code": "CEE6", + "local_code": "CEE6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Edmonton/Twin_Island_Airpark", + "keywords": "EE6" + }, + { + "id": "28215", + "ident": "CEE7", + "type": "seaplane_base", + "name": "Edmonton/Cooking Lake Seaplane Base", + "latitude_deg": "53.4255939787", + "longitude_deg": "-113.105792999", + "elevation_ft": "2419", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "gps_code": "CEE7", + "local_code": "CEE7", + "keywords": "EE7" + }, + { + "id": "846", + "ident": "CEE8", + "type": "small_airport", + "name": "Viking Airport", + "latitude_deg": "53.1089685346", + "longitude_deg": "-111.864938736", + "elevation_ft": "2260", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Viking", + "scheduled_service": "no", + "gps_code": "CEE8", + "local_code": "CEE8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Viking_Airport", + "keywords": "EE8" + }, + { + "id": "46603", + "ident": "CEF2", + "type": "small_airport", + "name": "Belwood (Ellen Field)", + "latitude_deg": "43.837235430599996", + "longitude_deg": "-80.3694534302", + "elevation_ft": "1540", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CEF2", + "keywords": "ef2" + }, + { + "id": "847", + "ident": "CEF3", + "type": "small_airport", + "name": "Bow Island Airport", + "latitude_deg": "49.88330078125", + "longitude_deg": "-111.33300018310547", + "elevation_ft": "2634", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Bow Island", + "scheduled_service": "no", + "gps_code": "CEF3", + "local_code": "CEF3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bow_Island_Airport", + "keywords": "EF3" + }, + { + "id": "848", + "ident": "CEF4", + "type": "small_airport", + "name": "Airdrie Aerodrome", + "latitude_deg": "51.263901", + "longitude_deg": "-113.933998", + "elevation_ft": "3648", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Airdrie", + "scheduled_service": "no", + "gps_code": "CEF4", + "local_code": "CEF4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Airdrie_Aerodrome", + "keywords": "EF4" + }, + { + "id": "849", + "ident": "CEF6", + "type": "small_airport", + "name": "S.I.R.Bernard Forestburg Airpark", + "latitude_deg": "52.5746994019", + "longitude_deg": "-112.083999634", + "elevation_ft": "2334", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Forestburg", + "scheduled_service": "no", + "gps_code": "CEF6", + "local_code": "CEF6", + "home_link": "http://www.CEF6.ca", + "wikipedia_link": "https://en.wikipedia.org/wiki/Forestburg_Airport", + "keywords": "EF6, Bernard Airpark, Forestburg Airpark" + }, + { + "id": "28256", + "ident": "CEF8", + "type": "seaplane_base", + "name": "Hay River Seaplane Base", + "latitude_deg": "60.851835", + "longitude_deg": "-115.729587", + "elevation_ft": "514", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no", + "gps_code": "CEF8", + "local_code": "CEF8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hay_River_Water_Aerodrome", + "keywords": "EF8" + }, + { + "id": "28446", + "ident": "CEF9", + "type": "seaplane_base", + "name": "Tincup Lake Seaplane Base", + "latitude_deg": "61.748904", + "longitude_deg": "-139.246004", + "elevation_ft": "2686", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Tincup Lake", + "scheduled_service": "no", + "gps_code": "CEF9", + "local_code": "CEF9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tincup_Lake_Water_Aerodrome", + "keywords": "EF9" + }, + { + "id": "850", + "ident": "CEG2", + "type": "closed", + "name": "Acme Airport", + "latitude_deg": "51.456402", + "longitude_deg": "-113.514999", + "elevation_ft": "3035", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Acme", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Acme_Airport", + "keywords": "EG2, CEG2" + }, + { + "id": "851", + "ident": "CEG3", + "type": "small_airport", + "name": "Lacombe Airport", + "latitude_deg": "52.48830032348633", + "longitude_deg": "-113.71199798583984", + "elevation_ft": "2783", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Lacombe", + "scheduled_service": "no", + "gps_code": "CEG3", + "local_code": "CEG3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lacombe_Airport", + "keywords": "EG3" + }, + { + "id": "852", + "ident": "CEG4", + "type": "small_airport", + "name": "Drumheller Municipal Airport", + "latitude_deg": "51.49639892578125", + "longitude_deg": "-112.7490005493164", + "elevation_ft": "2597", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Drumheller", + "scheduled_service": "no", + "gps_code": "CEG4", + "local_code": "CEG4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Drumheller_Municipal_Airport", + "keywords": "EG4" + }, + { + "id": "853", + "ident": "CEG5", + "type": "small_airport", + "name": "Chipewyan Lake Airport", + "latitude_deg": "56.95249938964844", + "longitude_deg": "-113.49600219726562", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Chipewyan Lake", + "scheduled_service": "no", + "gps_code": "CEG5", + "local_code": "CEG5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chipewyan_Lake_Airport", + "keywords": "EG5" + }, + { + "id": "300065", + "ident": "ceg6", + "type": "heliport", + "name": "Nordegg / Ahlstrom Heliport", + "latitude_deg": "52.49366", + "longitude_deg": "-116.084103", + "elevation_ft": "4411", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Nordegg", + "scheduled_service": "no", + "gps_code": "CEG6" + }, + { + "id": "28206", + "ident": "CEG7", + "type": "seaplane_base", + "name": "Dawson City Seaplane Base", + "latitude_deg": "64.06670379638672", + "longitude_deg": "-139.43299865722656", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "scheduled_service": "no", + "gps_code": "CEG7", + "local_code": "CEG7" + }, + { + "id": "854", + "ident": "CEG8", + "type": "small_airport", + "name": "North Seal River Airport", + "latitude_deg": "58.969398498535156", + "longitude_deg": "-99.9749984741211", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "North Seal River", + "scheduled_service": "no", + "gps_code": "CEG8", + "local_code": "CEG8", + "wikipedia_link": "https://en.wikipedia.org/wiki/North_Seal_River_Airport", + "keywords": "EG8" + }, + { + "id": "28449", + "ident": "CEG9", + "type": "seaplane_base", + "name": "Trout Lake Seaplane Base", + "latitude_deg": "60.43330001831055", + "longitude_deg": "-121.25", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no", + "gps_code": "CEG9", + "local_code": "CEG9" + }, + { + "id": "855", + "ident": "CEH2", + "type": "small_airport", + "name": "Cu Nim Airport", + "latitude_deg": "50.722868", + "longitude_deg": "-114.180716", + "elevation_ft": "3700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Black Diamond", + "scheduled_service": "no", + "gps_code": "CEH2", + "local_code": "CEH2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Black_Diamond/Cu_Nim_Airport", + "keywords": "EH2, Thompson's Ranch" + }, + { + "id": "856", + "ident": "CEH3", + "type": "small_airport", + "name": "Ponoka Industrial (Labrie Field) Airport", + "latitude_deg": "52.651699", + "longitude_deg": "-113.606003", + "elevation_ft": "2669", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Ponoka Industrial", + "scheduled_service": "no", + "gps_code": "CEH3", + "local_code": "CEH3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ponoka_Industrial_(Labrie_Field)_Airport", + "keywords": "EH3" + }, + { + "id": "857", + "ident": "CEH4", + "type": "small_airport", + "name": "De Winton South Calgary Airport", + "latitude_deg": "50.8218994140625", + "longitude_deg": "-113.8239974975586", + "elevation_ft": "3355", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "De Winton", + "scheduled_service": "no", + "gps_code": "CEH4", + "local_code": "CEH4", + "wikipedia_link": "https://en.wikipedia.org/wiki/De_Winton/South_Calgary_Airport", + "keywords": "EH4" + }, + { + "id": "858", + "ident": "CEH5", + "type": "small_airport", + "name": "Red Earth Creek Airport", + "latitude_deg": "56.5463981628418", + "longitude_deg": "-115.27400207519531", + "elevation_ft": "1790", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Red Earth Creek", + "scheduled_service": "no", + "gps_code": "CEH5", + "local_code": "CEH5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Red_Earth_Creek_Airport", + "keywords": "EH5" + }, + { + "id": "859", + "ident": "CEH6", + "type": "small_airport", + "name": "Provost Airport", + "latitude_deg": "52.33810043334961", + "longitude_deg": "-110.27899932861328", + "elevation_ft": "2197", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Provost", + "scheduled_service": "no", + "gps_code": "CEH6", + "local_code": "CEH6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Provost_Airport", + "keywords": "EH6" + }, + { + "id": "860", + "ident": "CEH7", + "type": "closed", + "name": "Yellowknife (Regional Hospital) Heliport", + "latitude_deg": "62.4474983215332", + "longitude_deg": "-114.40599822998047", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Yellowknife", + "scheduled_service": "no", + "gps_code": "CEH7", + "local_code": "CEH7", + "keywords": "EH7" + }, + { + "id": "320378", + "ident": "CEH8", + "type": "heliport", + "name": "Évasion Hélicoptère Heliport", + "latitude_deg": "45.6406", + "longitude_deg": "-73.642702", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montréal/Laval", + "scheduled_service": "no", + "gps_code": "CEH8", + "local_code": "CEH8" + }, + { + "id": "320699", + "ident": "CEH9", + "type": "heliport", + "name": "Colchester Health Centre Heliport", + "latitude_deg": "45.349597", + "longitude_deg": "-63.305465", + "elevation_ft": "144", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Truro", + "scheduled_service": "no", + "gps_code": "CEH9", + "local_code": "CEH9" + }, + { + "id": "861", + "ident": "CEJ2", + "type": "closed", + "name": "Andrew Airport", + "latitude_deg": "53.87471", + "longitude_deg": "-112.364783", + "elevation_ft": "2060", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Andrew", + "scheduled_service": "no", + "gps_code": "CEJ2", + "local_code": "CEJ2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Andrew_Airport", + "keywords": "EJ2" + }, + { + "id": "862", + "ident": "CEJ3", + "type": "small_airport", + "name": "Stettler Airport", + "latitude_deg": "52.310001373291016", + "longitude_deg": "-112.75399780273438", + "elevation_ft": "2686", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Stettler", + "scheduled_service": "no", + "gps_code": "CEJ3", + "local_code": "CEJ3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stettler_Airport", + "keywords": "EJ3" + }, + { + "id": "863", + "ident": "CEJ4", + "type": "small_airport", + "name": "Claresholm Industrial Airport", + "latitude_deg": "50.00469970703125", + "longitude_deg": "-113.62999725341797", + "elevation_ft": "3325", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Claresholm", + "scheduled_service": "no", + "gps_code": "CEJ4", + "local_code": "CEJ4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Claresholm_Industrial_Airport", + "keywords": "EJ4, RCAF Station Claresholm" + }, + { + "id": "864", + "ident": "CEJ5", + "type": "closed", + "name": "Cadotte Airport", + "latitude_deg": "56.457558486", + "longitude_deg": "-116.353840828", + "elevation_ft": "1900", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Cadotte", + "scheduled_service": "no", + "gps_code": "CEJ5", + "local_code": "CEJ5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cadotte_Airport", + "keywords": "EJ5" + }, + { + "id": "865", + "ident": "CEJ6", + "type": "small_airport", + "name": "Elk Point Airport", + "latitude_deg": "53.89310073852539", + "longitude_deg": "-110.77200317382812", + "elevation_ft": "1981", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Elk Point", + "scheduled_service": "no", + "gps_code": "CEJ6", + "local_code": "CEJ6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elk_Point_Airport", + "keywords": "EJ6" + }, + { + "id": "316119", + "ident": "CEJ7", + "type": "closed", + "name": "Fitzgerald Water Aerodrome", + "latitude_deg": "59.858", + "longitude_deg": "-111.597", + "elevation_ft": "653", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Fort Smith", + "scheduled_service": "no", + "gps_code": "CEJ7", + "local_code": "CEJ7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fitzgerald_(Fort_Smith)_Water_Aerodrome", + "keywords": "EJ7" + }, + { + "id": "28462", + "ident": "CEJ9", + "type": "seaplane_base", + "name": "Watson Lake Seaplane Base", + "latitude_deg": "60.111638", + "longitude_deg": "-128.766875", + "elevation_ft": "2232", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "scheduled_service": "no", + "gps_code": "CEJ9", + "local_code": "CEJ9" + }, + { + "id": "866", + "ident": "CEK2", + "type": "small_airport", + "name": "Braeburn Airport", + "latitude_deg": "61.48440170288086", + "longitude_deg": "-135.7760009765625", + "elevation_ft": "2400", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Braeburn", + "scheduled_service": "no", + "gps_code": "CEK2", + "local_code": "CEK2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Braeburn_Airport", + "keywords": "EK2" + }, + { + "id": "867", + "ident": "CEK4", + "type": "heliport", + "name": "Blairmore (Forestry) Heliport", + "latitude_deg": "49.60860061645508", + "longitude_deg": "-114.45099639892578", + "elevation_ft": "4224", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Blairmore", + "scheduled_service": "no", + "gps_code": "CEK4", + "local_code": "CEK4", + "keywords": "EK4" + }, + { + "id": "868", + "ident": "CEK6", + "type": "small_airport", + "name": "Killam-Sedgewick Airport", + "latitude_deg": "52.79999923706055", + "longitude_deg": "-111.76699829101562", + "elevation_ft": "2182", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Killam", + "scheduled_service": "no", + "gps_code": "CEK6", + "local_code": "CEK6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Killam/Killam-Sedgewick_Airport", + "keywords": "EK6" + }, + { + "id": "28259", + "ident": "CEK7", + "type": "seaplane_base", + "name": "High Level/Footner Lake Seaplane Base", + "latitude_deg": "58.616694", + "longitude_deg": "-117.182999", + "elevation_ft": "1084", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "gps_code": "CEK7", + "local_code": "CEK7", + "wikipedia_link": "https://en.wikipedia.org/wiki/High_Level/Footner_Lake_Water_Aerodrome", + "keywords": "EK7" + }, + { + "id": "869", + "ident": "CEL2", + "type": "heliport", + "name": "Calgary (City / Bow River) Heliport", + "latitude_deg": "51.052834289699994", + "longitude_deg": "-114.078843445", + "elevation_ft": "3443", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "no", + "gps_code": "CEL2", + "local_code": "CEL2", + "keywords": "EL2" + }, + { + "id": "46604", + "ident": "CEL3", + "type": "small_airport", + "name": "East Linton (Kerr Field)", + "latitude_deg": "44.661068", + "longitude_deg": "-80.944026", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "East Linton", + "scheduled_service": "no", + "gps_code": "CEL3", + "local_code": "CEL3", + "wikipedia_link": "https://en.wikipedia.org/wiki/East_Linton_(Kerr_Field)_Aerodrome" + }, + { + "id": "870", + "ident": "CEL4", + "type": "small_airport", + "name": "Hanna Airport", + "latitude_deg": "51.632158", + "longitude_deg": "-111.904651", + "elevation_ft": "2738", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Hanna", + "scheduled_service": "no", + "gps_code": "CEL4", + "local_code": "CEL4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hanna_Airport", + "keywords": "EL4" + }, + { + "id": "871", + "ident": "CEL5", + "type": "small_airport", + "name": "Valleyview Airport", + "latitude_deg": "55.032941", + "longitude_deg": "-117.294545", + "elevation_ft": "2435", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Valleyview", + "scheduled_service": "no", + "gps_code": "CEL5", + "local_code": "CEL5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valleyview_Airport", + "keywords": "EL5" + }, + { + "id": "872", + "ident": "CEL6", + "type": "small_airport", + "name": "Two Hills Airport", + "latitude_deg": "53.70000076293945", + "longitude_deg": "-111.78299713134766", + "elevation_ft": "2010", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Two Hills", + "scheduled_service": "no", + "gps_code": "CEL6", + "local_code": "CEL6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Two_Hills_Airport", + "keywords": "EL6" + }, + { + "id": "28222", + "ident": "CEL7", + "type": "seaplane_base", + "name": "Ford Bay Seaplane Base", + "latitude_deg": "66.030093", + "longitude_deg": "-124.687376", + "elevation_ft": "512", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Ford Bay", + "scheduled_service": "no", + "gps_code": "CEL7", + "local_code": "CEL7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ford_Bay_Water_Aerodrome", + "keywords": "EL7" + }, + { + "id": "46590", + "ident": "CEL8", + "type": "small_airport", + "name": "Eleonore", + "latitude_deg": "52.718306623", + "longitude_deg": "-76.07980728150001", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CEL8" + }, + { + "id": "46531", + "ident": "CEL9", + "type": "heliport", + "name": "Calgary (Eastlake) Heliport", + "latitude_deg": "50.9550113123", + "longitude_deg": "-113.972866684", + "elevation_ft": "3418", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "no", + "gps_code": "CEL9", + "local_code": "CEL9", + "keywords": "EL9" + }, + { + "id": "873", + "ident": "CEM2", + "type": "heliport", + "name": "Calgary (Rockyview Hospital) Heliport", + "latitude_deg": "50.988278702799995", + "longitude_deg": "-114.09830153", + "elevation_ft": "3590", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "no", + "gps_code": "CEM2", + "local_code": "CEM2", + "keywords": "EM2" + }, + { + "id": "874", + "ident": "CEM3", + "type": "small_airport", + "name": "Whatì Airport", + "latitude_deg": "63.13169860839844", + "longitude_deg": "-117.24600219726562", + "elevation_ft": "882", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Whatì", + "scheduled_service": "yes", + "gps_code": "CEM3", + "iata_code": "YLE", + "local_code": "CEM3", + "wikipedia_link": "https://en.wikipedia.org/wiki/What%C3%AC_Airport", + "keywords": "EM3" + }, + { + "id": "875", + "ident": "CEM4", + "type": "small_airport", + "name": "Innisfail Airport", + "latitude_deg": "52.0786018371582", + "longitude_deg": "-114.0270004272461", + "elevation_ft": "3017", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Innisfail", + "scheduled_service": "no", + "gps_code": "CEM4", + "local_code": "CEM4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Innisfail_Airport", + "keywords": "EM4" + }, + { + "id": "876", + "ident": "CEM5", + "type": "small_airport", + "name": "Swan Hills Airport", + "latitude_deg": "54.670799255371094", + "longitude_deg": "-115.41500091552734", + "elevation_ft": "3473", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Swan Hills", + "scheduled_service": "no", + "gps_code": "CEM5", + "local_code": "CEM5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Swan_Hills_Airport", + "keywords": "EM5" + }, + { + "id": "877", + "ident": "CEN2", + "type": "small_airport", + "name": "Bassano Airport", + "latitude_deg": "50.804107", + "longitude_deg": "-112.464065", + "elevation_ft": "2613", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Bassano", + "scheduled_service": "no", + "gps_code": "CEN2", + "local_code": "CEN2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bassano_Airport", + "keywords": "EN2" + }, + { + "id": "878", + "ident": "CEN3", + "type": "small_airport", + "name": "Three Hills Airport", + "latitude_deg": "51.69670104980469", + "longitude_deg": "-113.20899963378906", + "elevation_ft": "2975", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Three Hills", + "scheduled_service": "no", + "gps_code": "CEN3", + "local_code": "CEN3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Three_Hills_Airport", + "keywords": "EN3" + }, + { + "id": "879", + "ident": "CEN4", + "type": "small_airport", + "name": "High River Airport", + "latitude_deg": "50.534162", + "longitude_deg": "-113.843396", + "elevation_ft": "3431", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "High River", + "scheduled_service": "no", + "gps_code": "CEN4", + "local_code": "CEN4", + "wikipedia_link": "https://en.wikipedia.org/wiki/High_River_Airport", + "keywords": "EN4" + }, + { + "id": "880", + "ident": "CEN5", + "type": "small_airport", + "name": "Cold Lake Regional Airport", + "latitude_deg": "54.477500915527344", + "longitude_deg": "-110.26899719238281", + "elevation_ft": "1786", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Cold Lake", + "scheduled_service": "no", + "gps_code": "CEN5", + "local_code": "CEN5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cold_Lake_Regional_Airport", + "keywords": "EN5" + }, + { + "id": "881", + "ident": "CEN6", + "type": "small_airport", + "name": "Vauxhall Airport", + "latitude_deg": "50.03329849243164", + "longitude_deg": "-112.08300018310547", + "elevation_ft": "2579", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Vauxhall", + "scheduled_service": "no", + "gps_code": "CEN6", + "local_code": "CEN6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vauxhall_Airport", + "keywords": "EN6" + }, + { + "id": "28210", + "ident": "CEN7", + "type": "seaplane_base", + "name": "Deliné Seaplane Base", + "latitude_deg": "65.183299", + "longitude_deg": "-123.417", + "elevation_ft": "512", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Deliné", + "scheduled_service": "no", + "gps_code": "CEN7", + "local_code": "CEN7", + "wikipedia_link": "https://en.wikipedia.org/wiki/D%C3%A9line_Water_Aerodrome", + "keywords": "EN7, Fort Franklin Water Aerodrome" + }, + { + "id": "28470", + "ident": "CEN9", + "type": "seaplane_base", + "name": "Yellowknife Seaplane Base", + "latitude_deg": "62.46670150756836", + "longitude_deg": "-114.3499984741211", + "elevation_ft": "514", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no", + "gps_code": "CEN9", + "local_code": "CEN9" + }, + { + "id": "882", + "ident": "CEP2", + "type": "heliport", + "name": "Calgary (Bow Crow) Heliport", + "latitude_deg": "51.1031648907", + "longitude_deg": "-114.214961529", + "elevation_ft": "3540", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "no", + "gps_code": "CEP2", + "local_code": "CEP2", + "keywords": "EP2" + }, + { + "id": "883", + "ident": "CEP3", + "type": "small_airport", + "name": "Barrhead Airport", + "latitude_deg": "54.099998474121094", + "longitude_deg": "-114.43299865722656", + "elevation_ft": "2121", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Barrhead", + "scheduled_service": "no", + "gps_code": "CEP3", + "local_code": "CEP3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barrhead_Airport", + "keywords": "EP3" + }, + { + "id": "884", + "ident": "CEP4", + "type": "small_airport", + "name": "Ross International Airport", + "latitude_deg": "48.9987048532", + "longitude_deg": "-111.975414276", + "elevation_ft": "3550", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Coutts", + "scheduled_service": "no", + "gps_code": "CEP4", + "local_code": "CEP4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coutts/Ross_International_Airport", + "keywords": "EP4" + }, + { + "id": "885", + "ident": "CEP5", + "type": "small_airport", + "name": "Janvier Airport", + "latitude_deg": "55.900001525878906", + "longitude_deg": "-110.73300170898438", + "elevation_ft": "1575", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Janvier", + "scheduled_service": "no", + "gps_code": "CEP5", + "local_code": "CEP5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Janvier_Airport", + "keywords": "EP5" + }, + { + "id": "886", + "ident": "CEP6", + "type": "small_airport", + "name": "Warner Airport", + "latitude_deg": "49.29330062866211", + "longitude_deg": "-112.18900299072266", + "elevation_ft": "3319", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Warner", + "scheduled_service": "no", + "gps_code": "CEP6", + "local_code": "CEP6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Warner_Airport", + "keywords": "EP6" + }, + { + "id": "320163", + "ident": "CEP7", + "type": "heliport", + "name": "Elk Point Health Care Centre Heliport", + "latitude_deg": "53.8983", + "longitude_deg": "-110.908", + "elevation_ft": "1980", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Elk Point", + "scheduled_service": "no", + "gps_code": "CEP7", + "local_code": "CEP7" + }, + { + "id": "887", + "ident": "CEP8", + "type": "heliport", + "name": "Edmonton (Eastport) Heliport", + "latitude_deg": "53.504902", + "longitude_deg": "-113.3322", + "elevation_ft": "2367", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Edmonton", + "scheduled_service": "no", + "gps_code": "CEP8", + "local_code": "CEP8" + }, + { + "id": "28331", + "ident": "CEP9", + "type": "seaplane_base", + "name": "Namushka Lodge Seaplane Base", + "latitude_deg": "62.41669845581055", + "longitude_deg": "-113.3499984741211", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no", + "gps_code": "CEP9", + "local_code": "CEP9" + }, + { + "id": "888", + "ident": "CEQ3", + "type": "small_airport", + "name": "Camrose Airport", + "latitude_deg": "53.04029846191406", + "longitude_deg": "-112.81600189208984", + "elevation_ft": "2426", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Camrose", + "scheduled_service": "no", + "gps_code": "CEQ3", + "local_code": "CEQ3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camrose_Airport", + "keywords": "EQ3" + }, + { + "id": "889", + "ident": "CEQ4", + "type": "small_airport", + "name": "Del Bonita / Whetstone International Airport", + "latitude_deg": "48.9986000061", + "longitude_deg": "-112.776000977", + "elevation_ft": "4335", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Del Bonita", + "scheduled_service": "no", + "gps_code": "CEQ4", + "local_code": "CEQ4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Del_Bonita/Whetstone_International_Airport", + "keywords": "EQ4" + }, + { + "id": "890", + "ident": "CEQ5", + "type": "closed", + "name": "Grande Cache Airport", + "latitude_deg": "53.916901", + "longitude_deg": "-118.874001", + "elevation_ft": "4117", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Grande Cache", + "scheduled_service": "no", + "gps_code": "CEQ5", + "iata_code": "YGC", + "local_code": "CEQ5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grande_Cache_Airport", + "keywords": "EQ5" + }, + { + "id": "28464", + "ident": "CEQ8", + "type": "seaplane_base", + "name": "Whatì Seaplane Base", + "latitude_deg": "63.14191", + "longitude_deg": "-117.275791", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Whati", + "scheduled_service": "no", + "gps_code": "CEQ8", + "local_code": "CEQ8", + "wikipedia_link": "https://en.wikipedia.org/wiki/What%C3%AC_Water_Aerodrome", + "keywords": "EQ8, Lac La Martre" + }, + { + "id": "891", + "ident": "CER2", + "type": "small_airport", + "name": "Castor Airport", + "latitude_deg": "52.2209249248", + "longitude_deg": "-111.926887035", + "elevation_ft": "2704", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Castor", + "scheduled_service": "no", + "gps_code": "CER2", + "local_code": "CER2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Castor_Airport", + "keywords": "ER2" + }, + { + "id": "892", + "ident": "CER3", + "type": "small_airport", + "name": "Drayton Valley Industrial Airport", + "latitude_deg": "53.265800476074", + "longitude_deg": "-114.95999908447", + "elevation_ft": "2776", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Drayton Valley", + "scheduled_service": "no", + "gps_code": "CER3", + "iata_code": "YDC", + "local_code": "CER3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Drayton_Valley_Industrial_Airport", + "keywords": "ER3" + }, + { + "id": "893", + "ident": "CER4", + "type": "small_airport", + "name": "Fort McMurray / Mildred Lake Airport", + "latitude_deg": "57.0555992126", + "longitude_deg": "-111.573997498", + "elevation_ft": "1046", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Fort McMurray", + "scheduled_service": "no", + "gps_code": "CER4", + "iata_code": "NML", + "local_code": "CER4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_McMurray/Mildred_Lake_Airport", + "keywords": "ER4" + }, + { + "id": "894", + "ident": "CER5", + "type": "closed", + "name": "Conklin Airport", + "latitude_deg": "55.6347007751", + "longitude_deg": "-111.087997437", + "elevation_ft": "1850", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Conklin", + "scheduled_service": "no", + "gps_code": "CER5", + "local_code": "CER5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Conklin_Airport", + "keywords": "ER5" + }, + { + "id": "28152", + "ident": "CER6", + "type": "seaplane_base", + "name": "Aklavik Seaplane Base", + "latitude_deg": "68.222504", + "longitude_deg": "-134.992007", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Aklavik", + "scheduled_service": "no", + "gps_code": "CER6", + "local_code": "CER6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aklavik_Water_Aerodrome", + "keywords": "ER6" + }, + { + "id": "28227", + "ident": "CER9", + "type": "seaplane_base", + "name": "Fort Nelson (Parker Lake) Seaplane Base", + "latitude_deg": "58.825217", + "longitude_deg": "-122.900345", + "elevation_ft": "1255", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Fort Nelson", + "scheduled_service": "no", + "gps_code": "CER9", + "local_code": "CER9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Nelson_(Parker_Lake)_Water_Aerodrome", + "keywords": "ER9" + }, + { + "id": "46605", + "ident": "CES2", + "type": "small_airport", + "name": "St-Esprit Aerodrome", + "latitude_deg": "45.9144", + "longitude_deg": "-73.672395", + "elevation_ft": "192", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Esprit", + "scheduled_service": "no", + "gps_code": "CES2", + "local_code": "CES2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saint-Esprit_Aerodrome" + }, + { + "id": "895", + "ident": "CES3", + "type": "heliport", + "name": "Edmonton / St. Albert (Delta Helicopters) Heliport", + "latitude_deg": "53.686694360500006", + "longitude_deg": "-113.687338829", + "elevation_ft": "2265", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Edmonton", + "scheduled_service": "no", + "gps_code": "CES3", + "local_code": "CES3", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_heliports_in_Canada#55", + "keywords": "ES3, St. Albert" + }, + { + "id": "896", + "ident": "CES4", + "type": "small_airport", + "name": "Westlock Airport", + "latitude_deg": "54.1422004699707", + "longitude_deg": "-113.74099731445312", + "elevation_ft": "2214", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Westlock", + "scheduled_service": "no", + "gps_code": "CES4", + "local_code": "CES4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Westlock_Airport", + "keywords": "ES4" + }, + { + "id": "320208", + "ident": "CES5", + "type": "small_airport", + "name": "Centralia (Essery Field) Airport", + "latitude_deg": "43.293753", + "longitude_deg": "-81.467474", + "elevation_ft": "872", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Centralia", + "scheduled_service": "no", + "gps_code": "CES5", + "local_code": "CES5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Centralia_(Essery_Field)_Aerodrome" + }, + { + "id": "28159", + "ident": "CES6", + "type": "seaplane_base", + "name": "Arctic Red River Seaplane Base", + "latitude_deg": "67.44999694824219", + "longitude_deg": "-133.75", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no", + "gps_code": "CES6", + "local_code": "CES6" + }, + { + "id": "28226", + "ident": "CES7", + "type": "seaplane_base", + "name": "Fort McMurray Seaplane Base", + "latitude_deg": "56.733297", + "longitude_deg": "-111.366997", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "gps_code": "CES7", + "local_code": "CES7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_McMurray_Water_Aerodrome", + "keywords": "ES7" + }, + { + "id": "897", + "ident": "CES8", + "type": "heliport", + "name": "Edmonton (Grey Nuns Community Hospital) Heliport", + "latitude_deg": "53.462251", + "longitude_deg": "-113.427764", + "elevation_ft": "2274", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Edmonton", + "scheduled_service": "no", + "gps_code": "CES8", + "local_code": "CES8" + }, + { + "id": "28246", + "ident": "CES9", + "type": "seaplane_base", + "name": "Great Bear Lake Seaplane Base", + "latitude_deg": "66.70829772949219", + "longitude_deg": "-119.68299865722656", + "elevation_ft": "512", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no", + "gps_code": "CES9", + "local_code": "CES9" + }, + { + "id": "898", + "ident": "CET2", + "type": "small_airport", + "name": "Conklin (Leismer) Airport", + "latitude_deg": "55.695301", + "longitude_deg": "-111.278999", + "elevation_ft": "1930", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Conklin", + "scheduled_service": "no", + "gps_code": "CET2", + "iata_code": "CFM", + "local_code": "CET2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Conklin_(Leismer)_Airport", + "keywords": "ET2" + }, + { + "id": "899", + "ident": "CET4", + "type": "small_airport", + "name": "Fort Simpson Island Airport", + "latitude_deg": "61.86669921875", + "longitude_deg": "-121.36599731445312", + "elevation_ft": "405", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Fort Simpson Island", + "scheduled_service": "no", + "gps_code": "CET4", + "local_code": "CET4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Simpson_Island_Airport", + "keywords": "ET4" + }, + { + "id": "900", + "ident": "CET5", + "type": "heliport", + "name": "Hay River (District) Heliport", + "latitude_deg": "60.784400939941406", + "longitude_deg": "-115.82599639892578", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Hay River", + "scheduled_service": "no", + "gps_code": "CET5", + "local_code": "CET5", + "keywords": "ET5" + }, + { + "id": "28329", + "ident": "CET8", + "type": "seaplane_base", + "name": "Nahanni Butte Seaplane Base", + "latitude_deg": "61.03329849243164", + "longitude_deg": "-123.3499984741211", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no", + "gps_code": "CET8", + "local_code": "CET8" + }, + { + "id": "901", + "ident": "CET9", + "type": "small_airport", + "name": "Jean Marie River Airport", + "latitude_deg": "61.522449", + "longitude_deg": "-120.625334", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Jean Marie River", + "scheduled_service": "no", + "gps_code": "CET9", + "local_code": "CET9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jean_Marie_River_Airport", + "keywords": "ET9" + }, + { + "id": "902", + "ident": "CEU2", + "type": "small_airport", + "name": "Beaverlodge Airport", + "latitude_deg": "55.184200286865234", + "longitude_deg": "-119.447998046875", + "elevation_ft": "2289", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Beaverlodge", + "scheduled_service": "no", + "gps_code": "CEU2", + "local_code": "CEU2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beaverlodge_Airport", + "keywords": "EU2" + }, + { + "id": "903", + "ident": "CEU4", + "type": "heliport", + "name": "Rocky Mountain House (General Hospital) Heliport", + "latitude_deg": "52.37860107421875", + "longitude_deg": "-114.91999816894531", + "elevation_ft": "3323", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Rocky Mountain House", + "scheduled_service": "no", + "gps_code": "CEU4", + "local_code": "CEU4", + "keywords": "EU4" + }, + { + "id": "28342", + "ident": "CEU8", + "type": "seaplane_base", + "name": "Norman Wells Seaplane Base", + "latitude_deg": "65.2572021484375", + "longitude_deg": "-126.68499755859375", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no", + "gps_code": "CEU8", + "local_code": "CEU8" + }, + { + "id": "904", + "ident": "CEU9", + "type": "small_airport", + "name": "Trout Lake Airport", + "latitude_deg": "60.43939971923828", + "longitude_deg": "-121.23699951171875", + "elevation_ft": "1635", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Trout Lake", + "scheduled_service": "no", + "gps_code": "CEU9", + "local_code": "CEU9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trout_Lake_Airport_(Northwest_Territories)", + "keywords": "EU9" + }, + { + "id": "905", + "ident": "CEV2", + "type": "small_airport", + "name": "Edra Airport", + "latitude_deg": "57.849998474121094", + "longitude_deg": "-113.25", + "elevation_ft": "2625", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Edra", + "scheduled_service": "no", + "gps_code": "CEV2", + "local_code": "CEV2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Edra_Airport", + "keywords": "EV2" + }, + { + "id": "906", + "ident": "CEV3", + "type": "small_airport", + "name": "Vegreville Airport", + "latitude_deg": "53.514400482177734", + "longitude_deg": "-112.0270004272461", + "elevation_ft": "2072", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Vegreville", + "scheduled_service": "no", + "gps_code": "CEV3", + "local_code": "CEV3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vegreville_Airport", + "keywords": "EV3" + }, + { + "id": "907", + "ident": "CEV5", + "type": "small_airport", + "name": "Mayerthorpe Airport", + "latitude_deg": "53.9375", + "longitude_deg": "-115.17900085449219", + "elevation_ft": "2432", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Mayerthorpe", + "scheduled_service": "no", + "gps_code": "CEV5", + "local_code": "CEV5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mayerthorpe_Airport", + "keywords": "EV5" + }, + { + "id": "908", + "ident": "CEV7", + "type": "small_airport", + "name": "Tofield Airport", + "latitude_deg": "53.37110137939453", + "longitude_deg": "-112.6969985961914", + "elevation_ft": "2311", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Tofield", + "scheduled_service": "no", + "gps_code": "CEV7", + "local_code": "CEV7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tofield_Airport", + "keywords": "EV7" + }, + { + "id": "909", + "ident": "CEV9", + "type": "small_airport", + "name": "Snare River Airport", + "latitude_deg": "63.43330001831055", + "longitude_deg": "-116.18299865722656", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Snare River", + "scheduled_service": "no", + "gps_code": "CEV9", + "local_code": "CEV9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Snare_River_Airport", + "keywords": "EV9" + }, + { + "id": "910", + "ident": "CEW3", + "type": "small_airport", + "name": "St. Paul Airport", + "latitude_deg": "53.9933013916", + "longitude_deg": "-111.379997253", + "elevation_ft": "2147", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "St. Paul", + "scheduled_service": "no", + "gps_code": "CEW3", + "iata_code": "ZSP", + "local_code": "CEW3", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Paul_Airport_(Alberta)", + "keywords": "EW3" + }, + { + "id": "911", + "ident": "CEW5", + "type": "small_airport", + "name": "Milk River Airport", + "latitude_deg": "49.13330078125", + "longitude_deg": "-112.05000305175781", + "elevation_ft": "3449", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Milk River", + "scheduled_service": "no", + "gps_code": "CEW5", + "local_code": "CEW5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Milk_River_Airport", + "keywords": "EW5" + }, + { + "id": "912", + "ident": "CEW7", + "type": "heliport", + "name": "Edmonton / University of Alberta (Stollery Children's Hospital Mahi) Heliport", + "latitude_deg": "53.520437", + "longitude_deg": "-113.525309", + "elevation_ft": "2367", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Edmonton", + "scheduled_service": "no", + "gps_code": "CEW7", + "local_code": "CEW7", + "wikipedia_link": "https://en.wikipedia.org/wiki/University_of_Alberta_Hospital" + }, + { + "id": "28361", + "ident": "CEW8", + "type": "seaplane_base", + "name": "Paulatuk Seaplane Base", + "latitude_deg": "69.3499984741211", + "longitude_deg": "-124.06700134277344", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no", + "gps_code": "CEW8", + "local_code": "CEW8" + }, + { + "id": "913", + "ident": "CEW9", + "type": "heliport", + "name": "Canmore Municipal Heliport", + "latitude_deg": "51.07780075069999", + "longitude_deg": "-115.337997437", + "elevation_ft": "4296", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Canmore", + "scheduled_service": "no", + "gps_code": "CEW9", + "local_code": "CEW9", + "keywords": "EW9" + }, + { + "id": "914", + "ident": "CEX3", + "type": "small_airport", + "name": "Wetaskiwin Regional Airport", + "latitude_deg": "52.965000152600005", + "longitude_deg": "-113.411003113", + "elevation_ft": "2509", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Wetaskiwin", + "scheduled_service": "no", + "gps_code": "CEX3", + "local_code": "CEX3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wetaskiwin_Regional_Airport", + "keywords": "EX3" + }, + { + "id": "915", + "ident": "CEX4", + "type": "small_airport", + "name": "Carmacks Airport", + "latitude_deg": "62.11063", + "longitude_deg": "-136.179993", + "elevation_ft": "1770", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Carmacks", + "scheduled_service": "no", + "gps_code": "CEX4", + "local_code": "CEX4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carmacks_Airport", + "keywords": "EX4" + }, + { + "id": "916", + "ident": "CEX5", + "type": "closed", + "name": "Zama Airport", + "latitude_deg": "59.1519012451", + "longitude_deg": "-118.707000732", + "elevation_ft": "1296", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Zama", + "scheduled_service": "no", + "gps_code": "CEX5", + "local_code": "CEX5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zama_Airport", + "keywords": "EX5" + }, + { + "id": "917", + "ident": "CEX9", + "type": "small_airport", + "name": "Brant (Dixon Farm) Airport", + "latitude_deg": "50.41939926147461", + "longitude_deg": "-113.54100036621094", + "elevation_ft": "3342", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Brant", + "scheduled_service": "no", + "gps_code": "CEX9", + "local_code": "CEX9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brant_(Dixon_Farm)_Airport", + "keywords": "EX9" + }, + { + "id": "918", + "ident": "CEY3", + "type": "small_airport", + "name": "Fort Macleod Airport", + "latitude_deg": "49.70000076293945", + "longitude_deg": "-113.41699981689453", + "elevation_ft": "3138", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Fort Macleod", + "scheduled_service": "no", + "gps_code": "CEY3", + "local_code": "CEY3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Macleod_Airport", + "keywords": "EY3" + }, + { + "id": "28230", + "ident": "CEY7", + "type": "seaplane_base", + "name": "Fort St. John (Charlie Lake) Seaplane Base", + "latitude_deg": "56.286026", + "longitude_deg": "-120.965824", + "elevation_ft": "2266", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Charlie Lake", + "scheduled_service": "no", + "gps_code": "CEY7", + "local_code": "CEY7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_St._John_(Charlie_Lake)_Water_Aerodrome", + "keywords": "EY7" + }, + { + "id": "919", + "ident": "CEZ2", + "type": "small_airport", + "name": "Chapman Lake Airport", + "latitude_deg": "64.903561", + "longitude_deg": "-138.277255", + "elevation_ft": "3100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Chapman Lake", + "scheduled_service": "no", + "gps_code": "CEZ2", + "local_code": "CEZ2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chapman_Aerodrome", + "keywords": "EZ2" + }, + { + "id": "920", + "ident": "CEZ3", + "type": "small_airport", + "name": "Edmonton / Cooking Lake Airport", + "latitude_deg": "53.427502", + "longitude_deg": "-113.115997", + "elevation_ft": "2437", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Sherwood Park", + "scheduled_service": "no", + "gps_code": "CEZ3", + "local_code": "CEZ3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Edmonton/Cooking_Lake_Airport", + "keywords": "EZ3" + }, + { + "id": "921", + "ident": "CEZ4", + "type": "small_airport", + "name": "Fort Vermilion Airport", + "latitude_deg": "58.40420150756836", + "longitude_deg": "-115.95099639892578", + "elevation_ft": "836", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Fort Vermilion", + "scheduled_service": "no", + "gps_code": "CEZ4", + "local_code": "CEZ4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Vermilion_Airport", + "keywords": "EZ4" + }, + { + "id": "28466", + "ident": "CEZ5", + "type": "seaplane_base", + "name": "Whitehorse Seaplane Base", + "latitude_deg": "60.69110107421875", + "longitude_deg": "-135.03700256347656", + "elevation_ft": "2138", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "scheduled_service": "no", + "gps_code": "CEZ5", + "local_code": "CEZ5" + }, + { + "id": "28231", + "ident": "CEZ7", + "type": "seaplane_base", + "name": "Fort Simpson Island Seaplane Base", + "latitude_deg": "61.8694048342", + "longitude_deg": "-121.36133194", + "elevation_ft": "375", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Fort Simpson Island", + "scheduled_service": "no", + "gps_code": "CEZ7", + "local_code": "CEZ7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Simpson_Island_Water_Aerodrome", + "keywords": "EZ7" + }, + { + "id": "922", + "ident": "CEZ9", + "type": "heliport", + "name": "Grande Prairie (Forestry) Heliport", + "latitude_deg": "55.153601", + "longitude_deg": "-118.822501", + "elevation_ft": "2151", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Grande Prairie", + "scheduled_service": "no", + "gps_code": "CEZ9", + "local_code": "CEZ9" + }, + { + "id": "319208", + "ident": "CF-0001", + "type": "small_airport", + "name": "Bamingui Airport", + "latitude_deg": "7.584231", + "longitude_deg": "20.171798", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-BB", + "municipality": "Bamingui", + "scheduled_service": "no" + }, + { + "id": "322351", + "ident": "CF-0002", + "type": "small_airport", + "name": "Bayanga Airport", + "latitude_deg": "2.92405", + "longitude_deg": "16.265434", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-SE", + "municipality": "Bayanga", + "scheduled_service": "no" + }, + { + "id": "322353", + "ident": "CF-0003", + "type": "closed", + "name": "Mausolee Airport", + "latitude_deg": "4.043017", + "longitude_deg": "18.134684", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-LB", + "municipality": "Pissa", + "scheduled_service": "no" + }, + { + "id": "322354", + "ident": "CF-0004", + "type": "small_airport", + "name": "Boda Airport", + "latitude_deg": "4.313039", + "longitude_deg": "17.48594", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-LB", + "municipality": "Boda", + "scheduled_service": "no" + }, + { + "id": "326491", + "ident": "CF-0005", + "type": "small_airport", + "name": "Obo Airport", + "latitude_deg": "5.378512", + "longitude_deg": "26.476364", + "elevation_ft": "2108", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-HM", + "municipality": "Obo", + "scheduled_service": "no" + }, + { + "id": "330396", + "ident": "CF-0006", + "type": "small_airport", + "name": "Goro Airport", + "latitude_deg": "9.271226", + "longitude_deg": "21.195556", + "elevation_ft": "1376", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-BB", + "municipality": "Goro", + "scheduled_service": "no", + "keywords": "Gordil" + }, + { + "id": "330397", + "ident": "CF-0007", + "type": "small_airport", + "name": "Ouandjia Sam Airport", + "latitude_deg": "8.524158", + "longitude_deg": "23.240274", + "elevation_ft": "2625", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-HK", + "municipality": "Ouandja", + "scheduled_service": "no" + }, + { + "id": "330403", + "ident": "CF-0008", + "type": "closed", + "name": "Bekinyon Airstrip", + "latitude_deg": "9.017027", + "longitude_deg": "19.571412", + "elevation_ft": "1252", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-BB", + "municipality": "Njoko", + "scheduled_service": "no" + }, + { + "id": "330404", + "ident": "CF-0009", + "type": "closed", + "name": "N'Délé West Airport", + "latitude_deg": "8.33457", + "longitude_deg": "20.109068", + "elevation_ft": "1311", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-BB", + "municipality": "Awakaba", + "scheduled_service": "no" + }, + { + "id": "333207", + "ident": "CF-0010", + "type": "small_airport", + "name": "Nola Airport", + "latitude_deg": "3.507713", + "longitude_deg": "16.041763", + "elevation_ft": "1323", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-SE", + "municipality": "Nola", + "scheduled_service": "no" + }, + { + "id": "352985", + "ident": "CF-0011", + "type": "small_airport", + "name": "Kouango Airport", + "latitude_deg": "4.99107", + "longitude_deg": "19.98374", + "elevation_ft": "1237", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-UK", + "municipality": "Kouango", + "scheduled_service": "no" + }, + { + "id": "353947", + "ident": "CFA2", + "type": "heliport", + "name": "Fig Air Heliport", + "latitude_deg": "45.128", + "longitude_deg": "-79.5378", + "elevation_ft": "748", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Port Carling", + "scheduled_service": "no", + "gps_code": "CFA2", + "local_code": "CFA2" + }, + { + "id": "923", + "ident": "CFA4", + "type": "small_airport", + "name": "Carcross Airport", + "latitude_deg": "60.173762", + "longitude_deg": "-134.697683", + "elevation_ft": "2161", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Carcross", + "scheduled_service": "no", + "gps_code": "CFA4", + "local_code": "CFA4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carcross_Airport", + "keywords": "FA4" + }, + { + "id": "924", + "ident": "CFA5", + "type": "small_airport", + "name": "Grande Airport", + "latitude_deg": "56.29999923706055", + "longitude_deg": "-112.23300170898438", + "elevation_ft": "1750", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Grande", + "scheduled_service": "no", + "gps_code": "CFA5", + "local_code": "CFA5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grande_Airport", + "keywords": "FA5" + }, + { + "id": "925", + "ident": "CFA7", + "type": "small_airport", + "name": "Taltheilei Narrows Airport", + "latitude_deg": "62.5980987549", + "longitude_deg": "-111.542999268", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Taltheilei Narrows", + "scheduled_service": "no", + "gps_code": "CFA7", + "iata_code": "GSL", + "local_code": "CFA7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taltheilei_Narrows_Airport", + "keywords": "FA7" + }, + { + "id": "926", + "ident": "CFA8", + "type": "heliport", + "name": "Three Hills (Hospital) Heliport", + "latitude_deg": "51.708678", + "longitude_deg": "-113.25188", + "elevation_ft": "3000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Three Hills", + "scheduled_service": "no", + "gps_code": "CFA8", + "local_code": "CFA8", + "keywords": "FA8" + }, + { + "id": "927", + "ident": "CFB2", + "type": "heliport", + "name": "Frank Channel (Forestry) Heliport", + "latitude_deg": "62.78609848022461", + "longitude_deg": "-115.94599914550781", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Frank Channel", + "scheduled_service": "no", + "gps_code": "CFB2", + "local_code": "CFB2", + "keywords": "FB2" + }, + { + "id": "928", + "ident": "CFB3", + "type": "small_airport", + "name": "Hespero Airport", + "latitude_deg": "52.29999923706055", + "longitude_deg": "-114.46399688720703", + "elevation_ft": "3175", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Hespero", + "scheduled_service": "no", + "gps_code": "CFB3", + "local_code": "CFB3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hespero_Airport", + "keywords": "FB3" + }, + { + "id": "929", + "ident": "CFB4", + "type": "small_airport", + "name": "Trout Lake Airport", + "latitude_deg": "56.5", + "longitude_deg": "-114.55000305175781", + "elevation_ft": "2290", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Trout Lake", + "scheduled_service": "no", + "gps_code": "CFB4", + "local_code": "CFB4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trout_Lake_Airport_(Alberta)", + "keywords": "FB4" + }, + { + "id": "930", + "ident": "CFB5", + "type": "small_airport", + "name": "Namur Lake Airport", + "latitude_deg": "57.38330078125", + "longitude_deg": "-112.80000305175781", + "elevation_ft": "2560", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Namur Lake", + "scheduled_service": "no", + "gps_code": "CFB5", + "local_code": "CFB5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Namur_Lake_Airport", + "keywords": "FB5" + }, + { + "id": "931", + "ident": "CFB6", + "type": "small_airport", + "name": "Edmonton / Josephburg Airport", + "latitude_deg": "53.727998032", + "longitude_deg": "-113.086566925", + "elevation_ft": "2069", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Edmonton", + "scheduled_service": "no", + "gps_code": "CFB6", + "local_code": "CFB6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Edmonton/Josephburg_Airport", + "keywords": "FB6, Josephburg, Warren Thomas" + }, + { + "id": "932", + "ident": "CFB7", + "type": "small_airport", + "name": "Steen River Airport", + "latitude_deg": "59.633301", + "longitude_deg": "-117.167", + "elevation_ft": "996", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Steen River", + "scheduled_service": "no", + "gps_code": "CFB7", + "local_code": "CFB7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Steen_River_Airport", + "keywords": "FB7" + }, + { + "id": "320876", + "ident": "CFB8", + "type": "seaplane_base", + "name": "Foot's Bay Seaplane Base", + "latitude_deg": "45.1296", + "longitude_deg": "-79.708601", + "elevation_ft": "742", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Foot's Bay", + "scheduled_service": "no", + "gps_code": "CFB8", + "local_code": "CFB8" + }, + { + "id": "933", + "ident": "CFC4", + "type": "small_airport", + "name": "Macmillan Pass Airport", + "latitude_deg": "63.181098938", + "longitude_deg": "-130.20199585", + "elevation_ft": "3810", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Macmillan Pass", + "scheduled_service": "no", + "gps_code": "CFC4", + "iata_code": "XMP", + "local_code": "CFC4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Macmillian_Pass_Airport", + "keywords": "FC4" + }, + { + "id": "934", + "ident": "CFC6", + "type": "small_airport", + "name": "Rockyford Airport", + "latitude_deg": "51.266700744628906", + "longitude_deg": "-113.11699676513672", + "elevation_ft": "2860", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Rockyford", + "scheduled_service": "no", + "gps_code": "CFC6", + "local_code": "CFC6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rockyford_Airport", + "keywords": "FC6" + }, + { + "id": "935", + "ident": "CFC7", + "type": "small_airport", + "name": "Rimbey Airport", + "latitude_deg": "52.681561", + "longitude_deg": "-114.236518", + "elevation_ft": "2963", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Rimbey", + "scheduled_service": "no", + "gps_code": "CFC7", + "local_code": "CFC7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rimby_Airport", + "keywords": "FC7" + }, + { + "id": "28217", + "ident": "CFC9", + "type": "seaplane_base", + "name": "Faro/Johnson Lake Seaplane Base", + "latitude_deg": "62.20330047607422", + "longitude_deg": "-133.39300537109375", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "scheduled_service": "no", + "gps_code": "CFC9", + "local_code": "CFC9" + }, + { + "id": "936", + "ident": "CFD4", + "type": "small_airport", + "name": "Foremost Airport", + "latitude_deg": "49.48310089111328", + "longitude_deg": "-111.49400329589844", + "elevation_ft": "2909", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Foremost", + "scheduled_service": "no", + "gps_code": "CFD4", + "local_code": "CFD4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foremost_Airport", + "keywords": "FD4" + }, + { + "id": "937", + "ident": "CFD5", + "type": "small_airport", + "name": "Grimshaw Airport", + "latitude_deg": "56.19611", + "longitude_deg": "-117.625278", + "elevation_ft": "2050", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Grimshaw", + "scheduled_service": "no", + "gps_code": "CFD5", + "local_code": "CFD5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grimshaw_Airport", + "keywords": "FD5" + }, + { + "id": "938", + "ident": "CFD8", + "type": "heliport", + "name": "Fort Simpson (Great Slave No. 2) Heliport", + "latitude_deg": "61.836919883099995", + "longitude_deg": "-121.325728297", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Fort Simpson", + "scheduled_service": "no", + "gps_code": "CFD8", + "local_code": "CFD8", + "keywords": "FD8" + }, + { + "id": "939", + "ident": "CFD9", + "type": "closed", + "name": "Bjorgum Farm Airport", + "latitude_deg": "53.083302", + "longitude_deg": "-112.803001", + "elevation_ft": "2415", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Bjorgum Farm", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bjorgum_Farm_Airport", + "keywords": "CFD9" + }, + { + "id": "940", + "ident": "CFE6", + "type": "closed", + "name": "St. Francis Airport", + "latitude_deg": "53.2756004333", + "longitude_deg": "-114.449996948", + "elevation_ft": "2649", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "St. Francis", + "scheduled_service": "no", + "gps_code": "CFE6", + "local_code": "CFE6", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Francis_Airport", + "keywords": "FE6" + }, + { + "id": "941", + "ident": "CFE7", + "type": "heliport", + "name": "Kananaskis Village Helistop", + "latitude_deg": "50.92279815673828", + "longitude_deg": "-115.14399719238281", + "elevation_ft": "5027", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Kananaskis Village", + "scheduled_service": "no", + "gps_code": "CFE7", + "local_code": "CFE7", + "keywords": "FE7" + }, + { + "id": "28249", + "ident": "CFE8", + "type": "seaplane_base", + "name": "Haines Junction/Pine Lake Seaplane Base", + "latitude_deg": "60.802799224853516", + "longitude_deg": "-137.49099731445312", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "scheduled_service": "no", + "gps_code": "CFE8", + "local_code": "CFE8" + }, + { + "id": "942", + "ident": "CFF2", + "type": "small_airport", + "name": "Christina Basin Airport", + "latitude_deg": "55.59000015258789", + "longitude_deg": "-111.822998046875", + "elevation_ft": "2365", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Christina Basin", + "scheduled_service": "no", + "gps_code": "CFF2", + "local_code": "CFF2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Christina_Basin_Airport", + "keywords": "FF2" + }, + { + "id": "943", + "ident": "CFF3", + "type": "small_airport", + "name": "Jean Lake Airport", + "latitude_deg": "57.483299255371094", + "longitude_deg": "-113.88300323486328", + "elevation_ft": "2370", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Jean Lake", + "scheduled_service": "no", + "gps_code": "CFF3", + "local_code": "CFF3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jean_Lake_Airport", + "keywords": "FF3" + }, + { + "id": "944", + "ident": "CFF4", + "type": "small_airport", + "name": "Great Bear Lake Airport", + "latitude_deg": "66.7031021118", + "longitude_deg": "-119.707000732", + "elevation_ft": "562", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Great Bear Lake", + "scheduled_service": "no", + "gps_code": "CFF4", + "iata_code": "DAS", + "local_code": "CFF4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Great_Bear_Lake_Airport", + "keywords": "FF4" + }, + { + "id": "945", + "ident": "CFF7", + "type": "heliport", + "name": "Wainwright / Camp Wainwright Field", + "latitude_deg": "52.8279336823", + "longitude_deg": "-110.904278755", + "elevation_ft": "2170", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Wainwright", + "scheduled_service": "no", + "gps_code": "CFF7", + "local_code": "CFF7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wainwright/Camp_Wainwright_Field_Airport", + "keywords": "FF7" + }, + { + "id": "28167", + "ident": "CFF8", + "type": "seaplane_base", + "name": "Bakers Narrows Seaplane Base", + "latitude_deg": "54.6786", + "longitude_deg": "-101.660004", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Flin Flon", + "scheduled_service": "no", + "gps_code": "CFF8", + "local_code": "CFF8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Flin_Flon/Bakers_Narrows_Water_Aerodrome" + }, + { + "id": "946", + "ident": "CFF9", + "type": "small_airport", + "name": "Marek Farms Airport", + "latitude_deg": "53.03139877319336", + "longitude_deg": "-112.77799987792969", + "elevation_ft": "2449", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Marek Farms", + "scheduled_service": "no", + "gps_code": "CFF9", + "local_code": "CFF9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marek_Farms_Airport", + "keywords": "FF9" + }, + { + "id": "947", + "ident": "CFG3", + "type": "small_airport", + "name": "Consort Airport", + "latitude_deg": "52.016700744628906", + "longitude_deg": "-110.75", + "elevation_ft": "2499", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Consort", + "scheduled_service": "no", + "gps_code": "CFG3", + "local_code": "CFG3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Consort_Airport", + "keywords": "FG3" + }, + { + "id": "948", + "ident": "CFG4", + "type": "small_airport", + "name": "Debolt Airport", + "latitude_deg": "55.235238", + "longitude_deg": "-118.040028", + "elevation_ft": "2120", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Debolt", + "scheduled_service": "no", + "gps_code": "CFG4", + "local_code": "CFG4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Debolt_Airport", + "keywords": "FG4" + }, + { + "id": "949", + "ident": "CFG5", + "type": "small_airport", + "name": "John D'Or Prairie Airport", + "latitude_deg": "58.49140167236328", + "longitude_deg": "-115.13800048828125", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "John D'Or Prairie", + "scheduled_service": "no", + "gps_code": "CFG5", + "local_code": "CFG5", + "wikipedia_link": "https://en.wikipedia.org/wiki/John_D'or_Prairie_Airport", + "keywords": "FG5" + }, + { + "id": "46534", + "ident": "CFG6", + "type": "small_airport", + "name": "Fort Mackay / Firebag", + "latitude_deg": "57.275833", + "longitude_deg": "-110.976666", + "elevation_ft": "1762", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Suncor Energy Site", + "scheduled_service": "no", + "gps_code": "CYFI", + "iata_code": "YFI", + "local_code": "CYFI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_MacKay/Firebag_Aerodrome", + "keywords": "CFG6, Wood Buffalo" + }, + { + "id": "950", + "ident": "CFG7", + "type": "closed", + "name": "Steen Tower Airport", + "latitude_deg": "59.633301", + "longitude_deg": "-117.782997", + "elevation_ft": "2320", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Steen Tower", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Steen_Tower_Airport", + "keywords": "FV5, CFG7" + }, + { + "id": "28218", + "ident": "CFG8", + "type": "seaplane_base", + "name": "Fenelon Falls/Sturgeon Lake Seaplane Base", + "latitude_deg": "44.52389907836914", + "longitude_deg": "-78.73030090332031", + "elevation_ft": "812", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CFG8", + "local_code": "CFG8" + }, + { + "id": "320584", + "ident": "CFH2", + "type": "heliport", + "name": "Frontline Helicopters Heliport", + "latitude_deg": "51.964601", + "longitude_deg": "-121.812201", + "elevation_ft": "2644", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Williams Lake", + "scheduled_service": "no", + "gps_code": "CFH2", + "local_code": "CFH2" + }, + { + "id": "951", + "ident": "CFH4", + "type": "small_airport", + "name": "Fox Harbour Airport", + "latitude_deg": "45.869998931884766", + "longitude_deg": "-63.46110153198242", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Fox Harbour", + "scheduled_service": "no", + "gps_code": "CFH4", + "local_code": "CFH4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fox_Harbour_Airport", + "keywords": "FH4" + }, + { + "id": "952", + "ident": "CFH7", + "type": "heliport", + "name": "Edmonton (Royal Alexandra Hospital) Heliport", + "latitude_deg": "53.5579085978", + "longitude_deg": "-113.496558666", + "elevation_ft": "2247", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Edmonton", + "scheduled_service": "no", + "gps_code": "CFH7", + "local_code": "CFH7", + "keywords": "FH7" + }, + { + "id": "953", + "ident": "CFH8", + "type": "small_airport", + "name": "Warburg / Zajes Airport", + "latitude_deg": "53.2177775261", + "longitude_deg": "-114.336605072", + "elevation_ft": "2530", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Warburg", + "scheduled_service": "no", + "gps_code": "CFH8", + "local_code": "CFH8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Warburg/Zajes_Airport", + "keywords": "FH8" + }, + { + "id": "954", + "ident": "CFJ2", + "type": "small_airport", + "name": "Wekweètì Airport", + "latitude_deg": "64.190804", + "longitude_deg": "-114.077002", + "elevation_ft": "1208", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Wekweètì", + "scheduled_service": "yes", + "gps_code": "CYWE", + "iata_code": "YFJ", + "local_code": "CFJ7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wekwe%C3%A8t%C3%AC_Airport", + "keywords": "Wekweti, Snare Lake" + }, + { + "id": "955", + "ident": "CFJ7", + "type": "heliport", + "name": "Fort St. John (Hospital) Heliport", + "latitude_deg": "56.246700286865234", + "longitude_deg": "-120.84200286865234", + "elevation_ft": "2304", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Fort St. John", + "scheduled_service": "no", + "gps_code": "CFJ7", + "local_code": "CFJ7", + "keywords": "FJ7" + }, + { + "id": "956", + "ident": "CFK2", + "type": "small_airport", + "name": "Bashaw Airport", + "latitude_deg": "52.557889", + "longitude_deg": "-112.964071", + "elevation_ft": "2610", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Bashaw", + "scheduled_service": "no", + "gps_code": "CFK2", + "local_code": "CFK2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bashaw_Airport", + "keywords": "FK2" + }, + { + "id": "957", + "ident": "CFK3", + "type": "closed", + "name": "Fontas Airport", + "latitude_deg": "57.795974", + "longitude_deg": "-119.456692", + "elevation_ft": "2950", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Fontas", + "scheduled_service": "no", + "gps_code": "CFK3", + "local_code": "CFK3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fontas_Airport", + "keywords": "FK3" + }, + { + "id": "958", + "ident": "CFK4", + "type": "small_airport", + "name": "Calling Lake Airport", + "latitude_deg": "55.31669998168945", + "longitude_deg": "-113.25", + "elevation_ft": "2092", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calling Lake", + "scheduled_service": "no", + "gps_code": "CFK4", + "local_code": "CFK4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Calling_Lake_Airport", + "keywords": "FK4" + }, + { + "id": "959", + "ident": "CFK6", + "type": "small_airport", + "name": "Olds (Netook) Airport", + "latitude_deg": "51.849998474121094", + "longitude_deg": "-114.06700134277344", + "elevation_ft": "3330", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Olds", + "scheduled_service": "no", + "gps_code": "CFK6", + "local_code": "CFK6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Olds_(Netook)_Airport", + "keywords": "FK6" + }, + { + "id": "960", + "ident": "CFL2", + "type": "small_airport", + "name": "Empress McNeill Spectra Energy Airport", + "latitude_deg": "50.6824989319", + "longitude_deg": "-110.041999817", + "elevation_ft": "2395", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Empress", + "scheduled_service": "no", + "gps_code": "CFL2", + "local_code": "CFL2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Empress/McNeill_Duke_Energy_Airport", + "keywords": "FL2" + }, + { + "id": "961", + "ident": "CFL3", + "type": "heliport", + "name": "Black Diamond (Oilfields General Hospital) Heliport", + "latitude_deg": "50.67890167236328", + "longitude_deg": "-114.23400115966797", + "elevation_ft": "3906", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Black Diamond", + "scheduled_service": "no", + "gps_code": "CFL3", + "local_code": "CFL3", + "keywords": "FL3" + }, + { + "id": "320310", + "ident": "CFL4", + "type": "small_airport", + "name": "Flesherton (Smithorrs Field)", + "latitude_deg": "44.265002", + "longitude_deg": "-80.527602", + "elevation_ft": "1462", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Flesherton", + "scheduled_service": "no", + "gps_code": "CFL4", + "local_code": "CFL4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Flesherton_(Smithorrs_Field)_Aerodrome" + }, + { + "id": "962", + "ident": "CFL9", + "type": "small_airport", + "name": "Johnson Lake Airport", + "latitude_deg": "57.56669998168945", + "longitude_deg": "-110.31700134277344", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Johnson Lake", + "scheduled_service": "no", + "gps_code": "CFL9", + "local_code": "CFL9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Johnson_Lake_Airport", + "keywords": "FL9" + }, + { + "id": "963", + "ident": "CFM2", + "type": "small_airport", + "name": "Birch Mountain Airport", + "latitude_deg": "57.70000076293945", + "longitude_deg": "-111.83300018310547", + "elevation_ft": "2600", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Birch Mountain", + "scheduled_service": "no", + "gps_code": "CFM2", + "local_code": "CFM2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Birch_Mountain_Airport", + "keywords": "FM2" + }, + { + "id": "964", + "ident": "CFM4", + "type": "small_airport", + "name": "Donnelly Airport", + "latitude_deg": "55.7094", + "longitude_deg": "-117.094002", + "elevation_ft": "1949", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Donnelly", + "scheduled_service": "no", + "gps_code": "CFM4", + "iata_code": "YOE", + "local_code": "CFM4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Donnelly_Airport", + "keywords": "FM4" + }, + { + "id": "965", + "ident": "CFM5", + "type": "closed", + "name": "Hamburg Airport", + "latitude_deg": "57.355285", + "longitude_deg": "-119.76531", + "elevation_ft": "2540", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Apache", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Apache/Hamburg_Airport", + "keywords": "FM5, CFM5,Apache/Hamburg, Shell/Hamburg" + }, + { + "id": "966", + "ident": "CFM6", + "type": "small_airport", + "name": "Teepee Airport", + "latitude_deg": "56.45940017700195", + "longitude_deg": "-114.11900329589844", + "elevation_ft": "2565", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Teepee", + "scheduled_service": "no", + "gps_code": "CFM6", + "local_code": "CFM6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Teepee_Airport", + "keywords": "FM6" + }, + { + "id": "967", + "ident": "CFM7", + "type": "small_airport", + "name": "Boyle Airport", + "latitude_deg": "54.573299407958984", + "longitude_deg": "-112.81999969482422", + "elevation_ft": "2154", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Boyle", + "scheduled_service": "no", + "gps_code": "CFM7", + "local_code": "CFM7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boyle_Airport", + "keywords": "FM7" + }, + { + "id": "968", + "ident": "CFM8", + "type": "small_airport", + "name": "Fort Macleod (Alcock Farm) Airport", + "latitude_deg": "49.583302", + "longitude_deg": "-113.300001", + "elevation_ft": "3340", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Fort Macleod", + "scheduled_service": "no", + "gps_code": "CFM8", + "local_code": "CFM8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Macleod_(Alcock_Farm)_Airport" + }, + { + "id": "46535", + "ident": "CFM9", + "type": "heliport", + "name": "Fort Macleod (Hospital) Heliport", + "latitude_deg": "49.725758", + "longitude_deg": "-113.392485", + "elevation_ft": "3095", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Fort Macleod", + "scheduled_service": "no", + "gps_code": "CFM9", + "local_code": "CFM9" + }, + { + "id": "969", + "ident": "CFN2", + "type": "closed", + "name": "Fort Nelson (Mile 301) Heliport", + "latitude_deg": "58.805852", + "longitude_deg": "-122.728829", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Fort Nelson", + "scheduled_service": "no", + "gps_code": "CFN2", + "local_code": "CFN2" + }, + { + "id": "970", + "ident": "CFN4", + "type": "closed", + "name": "Embarras Airport", + "latitude_deg": "58.2047490455", + "longitude_deg": "-111.383900642", + "elevation_ft": "778", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Embarras", + "scheduled_service": "no", + "gps_code": "CFN4", + "local_code": "CFN4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Embarras_Airport", + "keywords": "FN4" + }, + { + "id": "971", + "ident": "CFN5", + "type": "small_airport", + "name": "La Crete Airport", + "latitude_deg": "58.172875198199996", + "longitude_deg": "-116.337919235", + "elevation_ft": "1046", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "La Crete", + "scheduled_service": "no", + "gps_code": "CFN5", + "local_code": "CFN5", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Crete_Airport", + "keywords": "FN5" + }, + { + "id": "972", + "ident": "CFN7", + "type": "small_airport", + "name": "Sundre Airport", + "latitude_deg": "51.774200439453125", + "longitude_deg": "-114.677001953125", + "elevation_ft": "3656", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Sundre", + "scheduled_service": "no", + "gps_code": "CFN7", + "local_code": "CFN7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sundre_Airport", + "keywords": "FN7" + }, + { + "id": "973", + "ident": "CFN8", + "type": "heliport", + "name": "Fort Nelson (Guardian) Heliport", + "latitude_deg": "58.752201080322266", + "longitude_deg": "-122.68699645996094", + "elevation_ft": "1292", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Fort Nelson", + "scheduled_service": "no", + "gps_code": "CFN8", + "local_code": "CFN8", + "keywords": "FN8" + }, + { + "id": "320875", + "ident": "CFP2", + "type": "seaplane_base", + "name": "Fox Point Seaplane Base", + "latitude_deg": "45.273701", + "longitude_deg": "-79.012101", + "elevation_ft": "1035", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Dwight", + "scheduled_service": "no", + "gps_code": "CFP2", + "local_code": "CFP2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dwight_(Fox_Point)_Water_Aerodrome" + }, + { + "id": "974", + "ident": "CFP3", + "type": "closed", + "name": "Calgary (Foothills Hospital) Heliport", + "latitude_deg": "51.065572", + "longitude_deg": "-114.133186", + "elevation_ft": "3635", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "no", + "keywords": "FP3, CFP3" + }, + { + "id": "975", + "ident": "CFP4", + "type": "small_airport", + "name": "McQuesten Airport", + "latitude_deg": "63.606515", + "longitude_deg": "-137.567787", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "McQuesten", + "scheduled_service": "no", + "gps_code": "CFP4", + "local_code": "CFP4", + "wikipedia_link": "https://en.wikipedia.org/wiki/McQuesten_Airport", + "keywords": "FP4" + }, + { + "id": "976", + "ident": "CFP5", + "type": "small_airport", + "name": "Glendon Airport", + "latitude_deg": "54.270802", + "longitude_deg": "-111.067002", + "elevation_ft": "1835", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Glendon", + "scheduled_service": "no", + "gps_code": "CFP5", + "local_code": "CFP5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Glendon_Airport" + }, + { + "id": "977", + "ident": "CFP6", + "type": "small_airport", + "name": "La Biche River Airport", + "latitude_deg": "60.12919998168945", + "longitude_deg": "-124.04900360107422", + "elevation_ft": "1356", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "La Biche River", + "scheduled_service": "no", + "gps_code": "CFP6", + "local_code": "CFP6", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Biche_River_Airport", + "keywords": "FP6" + }, + { + "id": "978", + "ident": "CFP7", + "type": "small_airport", + "name": "Wainwright Field 21 Airport", + "latitude_deg": "52.830601", + "longitude_deg": "-111.100998", + "elevation_ft": "2260", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Wainwright", + "scheduled_service": "no", + "gps_code": "CYWN", + "local_code": "CFP7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wainwright/Wainwright_(Field_21)_Airport", + "keywords": "FP7" + }, + { + "id": "979", + "ident": "CFP8", + "type": "small_airport", + "name": "Whitehorse / Cousins Airport", + "latitude_deg": "60.8117343999", + "longitude_deg": "-135.182132721", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Whitehorse", + "scheduled_service": "no", + "gps_code": "CFP8", + "local_code": "CFP8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Whitehorse/Cousins_Airport", + "keywords": "FP8" + }, + { + "id": "980", + "ident": "CFQ2", + "type": "closed", + "name": "Calgary (Westport) Heliport", + "latitude_deg": "51.0367012024", + "longitude_deg": "-114.195999146", + "elevation_ft": "3983", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "no", + "gps_code": "CFQ2", + "local_code": "CFQ2", + "keywords": "FQ2" + }, + { + "id": "981", + "ident": "CFQ3", + "type": "small_airport", + "name": "Milk River (Madge) Airport", + "latitude_deg": "49.14469909667969", + "longitude_deg": "-112.08399963378906", + "elevation_ft": "3400", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Milk River", + "scheduled_service": "no", + "gps_code": "CFQ3", + "local_code": "CFQ3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Milk_River_(Madge)_Airport", + "keywords": "FQ3" + }, + { + "id": "982", + "ident": "CFQ4", + "type": "small_airport", + "name": "Cheadle Airport", + "latitude_deg": "51.057498931885", + "longitude_deg": "-113.62400054932", + "elevation_ft": "3300", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Cheadle", + "scheduled_service": "no", + "gps_code": "CFQ4", + "iata_code": "TIL", + "local_code": "CFQ4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cheadle_Airport", + "keywords": "FQ4, Inverlake" + }, + { + "id": "983", + "ident": "CFQ5", + "type": "small_airport", + "name": "Silver City Airport", + "latitude_deg": "61.030402", + "longitude_deg": "-138.404903", + "elevation_ft": "2570", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Kluane Lake", + "scheduled_service": "no", + "gps_code": "CFQ5", + "local_code": "CFQ5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Silver_City_Airport", + "keywords": "FQ5" + }, + { + "id": "984", + "ident": "CFQ6", + "type": "small_airport", + "name": "Pelly Crossing Airport", + "latitude_deg": "62.837509", + "longitude_deg": "-136.528151", + "elevation_ft": "1870", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Pelly Crossing", + "scheduled_service": "no", + "gps_code": "CFQ6", + "local_code": "CFQ6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pelly_Crossing_Airport", + "keywords": "FQ6" + }, + { + "id": "985", + "ident": "CFQ7", + "type": "small_airport", + "name": "Edmonton / Gartner Airport", + "latitude_deg": "53.2817001343", + "longitude_deg": "-113.455001831", + "elevation_ft": "2390", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Edmonton", + "scheduled_service": "no", + "gps_code": "CFQ7", + "local_code": "CFQ7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Edmonton/Gartner_Airport", + "keywords": "FQ7" + }, + { + "id": "986", + "ident": "CFR2", + "type": "small_airport", + "name": "Bawlf (Blackwells) Airport", + "latitude_deg": "52.900001525878906", + "longitude_deg": "-112.55000305175781", + "elevation_ft": "2325", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Bawlf", + "scheduled_service": "no", + "gps_code": "CFR2", + "local_code": "CFR2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bawlf_(Blackwells)_Airport", + "keywords": "FR2" + }, + { + "id": "320780", + "ident": "CFR3", + "type": "seaplane_base", + "name": "Fall River Water Aerodrome", + "latitude_deg": "44.7844", + "longitude_deg": "-63.6417", + "elevation_ft": "122", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Fall River", + "scheduled_service": "no", + "gps_code": "CFR3", + "local_code": "CFR3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fall_River_Water_Aerodrome" + }, + { + "id": "987", + "ident": "CFR5", + "type": "small_airport", + "name": "Alban Airport", + "latitude_deg": "46.091185", + "longitude_deg": "-80.608456", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "French River", + "scheduled_service": "no", + "gps_code": "CFR5", + "local_code": "CFR5", + "wikipedia_link": "https://en.wikipedia.org/wiki/French_River/Alban_Aerodrome", + "keywords": "FR5" + }, + { + "id": "301319", + "ident": "cfr6", + "type": "heliport", + "name": "Vancouver / Coquitlam Fire and Rescue Heliport", + "latitude_deg": "49.2916156136", + "longitude_deg": "-122.792148292", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CFR6" + }, + { + "id": "988", + "ident": "CFR7", + "type": "small_airport", + "name": "Red Deer Forestry Airport", + "latitude_deg": "51.651402", + "longitude_deg": "-115.238998", + "elevation_ft": "4646", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Clearwater", + "scheduled_service": "no", + "gps_code": "CFR7", + "local_code": "CFR7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Red_Deer_Forestry_Airport", + "keywords": "FR7" + }, + { + "id": "46591", + "ident": "CFS2", + "type": "heliport", + "name": "Fort Simpson (Great Slave No. 1) Heliport", + "latitude_deg": "61.8382997446", + "longitude_deg": "-121.328061819", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no", + "gps_code": "CFS2", + "keywords": "FS2" + }, + { + "id": "320312", + "ident": "CFS3", + "type": "small_airport", + "name": "Fort Selkirk Airport", + "latitude_deg": "62.7683", + "longitude_deg": "-137.384704", + "elevation_ft": "1501", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Fort Selkirk", + "scheduled_service": "no", + "gps_code": "CFS3", + "local_code": "CFS3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Selkirk_Aerodrome" + }, + { + "id": "989", + "ident": "CFS4", + "type": "small_airport", + "name": "Ogilvie River Airport", + "latitude_deg": "65.675025", + "longitude_deg": "-138.11442", + "elevation_ft": "1640", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Ogilvie River", + "scheduled_service": "no", + "gps_code": "CFS4", + "local_code": "CFS4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ogilvie_Aerodrome", + "keywords": "FS4, Mile 150 Dempster Highway" + }, + { + "id": "990", + "ident": "CFS5", + "type": "small_airport", + "name": "Spirit River Airport", + "latitude_deg": "55.783599853515625", + "longitude_deg": "-118.83999633789062", + "elevation_ft": "2044", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Spirit River", + "scheduled_service": "no", + "gps_code": "CFS5", + "local_code": "CFS5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Spirit_River_Airport", + "keywords": "FS5" + }, + { + "id": "991", + "ident": "CFS6", + "type": "small_airport", + "name": "Loon River Airport", + "latitude_deg": "57.14189910888672", + "longitude_deg": "-115.07499694824219", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Loon River", + "scheduled_service": "no", + "gps_code": "CFS6", + "local_code": "CFS6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Loon_River_Airport", + "keywords": "FS6" + }, + { + "id": "992", + "ident": "CFS7", + "type": "small_airport", + "name": "Twin Creeks Airport", + "latitude_deg": "62.61940002441406", + "longitude_deg": "-131.2790069580078", + "elevation_ft": "2913", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Twin Creeks", + "scheduled_service": "no", + "gps_code": "CFS7", + "local_code": "CFS7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Twin_Creeks_Airport", + "keywords": "FS7" + }, + { + "id": "993", + "ident": "CFS8", + "type": "small_airport", + "name": "Clearwater River Airport", + "latitude_deg": "51.98809814453125", + "longitude_deg": "-115.22799682617188", + "elevation_ft": "4100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Clearwater River", + "scheduled_service": "no", + "gps_code": "CFS8", + "local_code": "CFS8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clearwater_River_Airport", + "keywords": "FS8" + }, + { + "id": "994", + "ident": "CFS9", + "type": "closed", + "name": "Vancouver (Vancouver Film Studios) Heliport", + "latitude_deg": "49.260877", + "longitude_deg": "-123.028082", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Vancouver", + "scheduled_service": "no", + "keywords": "CFS9" + }, + { + "id": "995", + "ident": "CFT2", + "type": "small_airport", + "name": "Wilderman Farm Airport", + "latitude_deg": "50.552434748", + "longitude_deg": "-113.583183289", + "elevation_ft": "3350", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Blackie", + "scheduled_service": "no", + "gps_code": "CFT2", + "local_code": "CFT2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Blackie/Wilderman_Farm_Airport", + "keywords": "FT2" + }, + { + "id": "996", + "ident": "CFT3", + "type": "small_airport", + "name": "Finlayson Lake Airport", + "latitude_deg": "61.6913986206", + "longitude_deg": "-130.774002075", + "elevation_ft": "3094", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Finlayson Lake", + "scheduled_service": "no", + "gps_code": "CFT3", + "local_code": "CFT3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Finlayson_Lake_Airport", + "keywords": "FT3" + }, + { + "id": "997", + "ident": "CFT5", + "type": "small_airport", + "name": "Hyland Airport", + "latitude_deg": "61.52389907836914", + "longitude_deg": "-128.2689971923828", + "elevation_ft": "3000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Hyland", + "scheduled_service": "no", + "gps_code": "CFT5", + "local_code": "CFT5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hyland_Airport", + "keywords": "FT5" + }, + { + "id": "998", + "ident": "CFT8", + "type": "small_airport", + "name": "Pelican Airport", + "latitude_deg": "56.16080093383789", + "longitude_deg": "-113.4739990234375", + "elevation_ft": "2059", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Pelican", + "scheduled_service": "no", + "gps_code": "CFT8", + "local_code": "CFT8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pelican_Airport", + "keywords": "FT8" + }, + { + "id": "999", + "ident": "CFT9", + "type": "small_airport", + "name": "Zama Lake Airport", + "latitude_deg": "59.063899993896484", + "longitude_deg": "-118.88999938964844", + "elevation_ft": "1242", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Zama Lake", + "scheduled_service": "no", + "gps_code": "CFT9", + "local_code": "CFT9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zama_Lake_Airport", + "keywords": "FT9" + }, + { + "id": "1000", + "ident": "CFU3", + "type": "small_airport", + "name": "Chipman Airport", + "latitude_deg": "53.718754", + "longitude_deg": "-112.63586", + "elevation_ft": "2195", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Chipman", + "scheduled_service": "no", + "gps_code": "CFU3", + "local_code": "CFU3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chipman_Airport_(Alberta)", + "keywords": "FU3" + }, + { + "id": "1001", + "ident": "CFU4", + "type": "small_airport", + "name": "Garden River Airport", + "latitude_deg": "58.71390151977539", + "longitude_deg": "-113.8759994506836", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Garden River", + "scheduled_service": "no", + "gps_code": "CFU4", + "local_code": "CFU4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Garden_River_Airport", + "keywords": "FU4" + }, + { + "id": "1002", + "ident": "CFU8", + "type": "small_airport", + "name": "Irma Airport", + "latitude_deg": "52.912200927734375", + "longitude_deg": "-111.17400360107422", + "elevation_ft": "2230", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Irma", + "scheduled_service": "no", + "gps_code": "CFU8", + "local_code": "CFU8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Irma_Airport", + "keywords": "FU8" + }, + { + "id": "1003", + "ident": "CFU9", + "type": "heliport", + "name": "Olds (Hospital) Heliport", + "latitude_deg": "51.801408", + "longitude_deg": "-114.116887", + "elevation_ft": "3360", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Olds", + "scheduled_service": "no", + "gps_code": "CFU9", + "local_code": "CFU9" + }, + { + "id": "1004", + "ident": "CFV2", + "type": "small_airport", + "name": "Beiseker Airport", + "latitude_deg": "51.3932991027832", + "longitude_deg": "-113.47200012207031", + "elevation_ft": "3036", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Beiseker", + "scheduled_service": "no", + "gps_code": "CFV2", + "local_code": "CFV2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beiseker_Airport", + "keywords": "FV2" + }, + { + "id": "1005", + "ident": "CFV3", + "type": "small_airport", + "name": "Mobil Bistcho Airport", + "latitude_deg": "59.4747326918", + "longitude_deg": "-119.006137848", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Mobil Bistcho", + "scheduled_service": "no", + "gps_code": "CFV3", + "local_code": "CFV3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mobil_Bistcho_Airport", + "keywords": "FV3" + }, + { + "id": "28459", + "ident": "CFV5", + "type": "seaplane_base", + "name": "Virginia Falls Seaplane Base", + "latitude_deg": "61.607575", + "longitude_deg": "-125.756272", + "elevation_ft": "1702", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no", + "gps_code": "CFV5", + "local_code": "CFV5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Virginia_Falls_Water_Aerodrome" + }, + { + "id": "1006", + "ident": "CFV6", + "type": "small_airport", + "name": "Margaret Lake Airport", + "latitude_deg": "58.9458023034", + "longitude_deg": "-115.256538391", + "elevation_ft": "2750", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Margaret Lake", + "scheduled_service": "no", + "gps_code": "CFV6", + "local_code": "CFV6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Margaret_Lake_Airport", + "keywords": "FV6" + }, + { + "id": "1007", + "ident": "CFV7", + "type": "heliport", + "name": "Claresholm (General Hospital) Heliport", + "latitude_deg": "50.018298", + "longitude_deg": "-113.582942", + "elevation_ft": "3394", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Claresholm", + "scheduled_service": "no", + "gps_code": "CFV7", + "local_code": "CFV7" + }, + { + "id": "1008", + "ident": "CFV8", + "type": "heliport", + "name": "Brooks (Community Health Centre) Heliport", + "latitude_deg": "50.568649", + "longitude_deg": "-111.888312", + "elevation_ft": "2496", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Brooks", + "scheduled_service": "no", + "gps_code": "CFV8", + "local_code": "CFV8" + }, + { + "id": "1009", + "ident": "CFV9", + "type": "heliport", + "name": "Drayton Valley (Health Centre) Heliport", + "latitude_deg": "53.2117", + "longitude_deg": "-114.971001", + "elevation_ft": "2879", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Drayton Valley", + "scheduled_service": "no", + "gps_code": "CFV9", + "local_code": "CFV9" + }, + { + "id": "1010", + "ident": "CFW2", + "type": "small_airport", + "name": "Gordon Lake Airport", + "latitude_deg": "56.61669921875", + "longitude_deg": "-110.5", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Gordon Lake", + "scheduled_service": "no", + "gps_code": "CFW2", + "local_code": "CFW2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gordon_Lake_Airport", + "keywords": "FW2" + }, + { + "id": "1011", + "ident": "CFW4", + "type": "small_airport", + "name": "Muskeg Tower Airport", + "latitude_deg": "57.13750076293945", + "longitude_deg": "-110.89299774169922", + "elevation_ft": "2020", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Muskeg Tower", + "scheduled_service": "no", + "gps_code": "CFW4", + "local_code": "CFW4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Muskeg_Tower_Airport", + "keywords": "FW4" + }, + { + "id": "1012", + "ident": "CFW5", + "type": "small_airport", + "name": "Taltson River Airport", + "latitude_deg": "60.394243", + "longitude_deg": "-111.347638", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Taltson River", + "scheduled_service": "no", + "gps_code": "CFW5", + "local_code": "CFW5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taltson_River_Airport", + "keywords": "FW5" + }, + { + "id": "1013", + "ident": "CFW8", + "type": "heliport", + "name": "Grand Falls-Windsor Heliport", + "latitude_deg": "48.9245718313", + "longitude_deg": "-55.647007226899994", + "elevation_ft": "157", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Grand Falls", + "scheduled_service": "no", + "gps_code": "CFW8", + "local_code": "CFW8", + "keywords": "FW8" + }, + { + "id": "1014", + "ident": "CFX2", + "type": "small_airport", + "name": "Calgary / Okotoks Air Park", + "latitude_deg": "50.7352981567", + "longitude_deg": "-113.934997559", + "elevation_ft": "3601", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "no", + "gps_code": "CFX2", + "local_code": "CFX2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Calgary/Okotoks_Air_Park", + "keywords": "FX2" + }, + { + "id": "1015", + "ident": "CFX3", + "type": "small_airport", + "name": "Doig Airport", + "latitude_deg": "56.95000076293945", + "longitude_deg": "-119.51699829101562", + "elevation_ft": "3500", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Doig", + "scheduled_service": "no", + "gps_code": "CFX3", + "local_code": "CFX3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Doig_Airport", + "keywords": "FX3" + }, + { + "id": "1016", + "ident": "CFX4", + "type": "small_airport", + "name": "Manning Airport", + "latitude_deg": "56.950801849365234", + "longitude_deg": "-117.64399719238281", + "elevation_ft": "1612", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Manning", + "scheduled_service": "no", + "gps_code": "CFX4", + "local_code": "CFX4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manning_Airport", + "keywords": "FX4" + }, + { + "id": "320595", + "ident": "CFX5", + "type": "small_airport", + "name": "Clarence and Abel Swallow Airport", + "latitude_deg": "52.730001", + "longitude_deg": "-72.221001", + "elevation_ft": "1560", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Renard Diamond Mine", + "scheduled_service": "no", + "gps_code": "CFX5", + "local_code": "CFX5" + }, + { + "id": "1017", + "ident": "CFX6", + "type": "small_airport", + "name": "Vulcan Airport", + "latitude_deg": "50.40447", + "longitude_deg": "-113.285223", + "elevation_ft": "3437", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Vulcan", + "scheduled_service": "no", + "gps_code": "CFX6", + "local_code": "CFX6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vulcan_Airport", + "keywords": "FX6" + }, + { + "id": "1018", + "ident": "CFX8", + "type": "small_airport", + "name": "Chestermere (Kirkby Field) Airport", + "latitude_deg": "51.04205", + "longitude_deg": "-113.754531", + "elevation_ft": "3339", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Chestermere", + "scheduled_service": "no", + "gps_code": "CFX8", + "local_code": "CFX8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chestermere_(Kirkby_Field)_Airport", + "keywords": "FX8" + }, + { + "id": "1019", + "ident": "CFY2", + "type": "small_airport", + "name": "Grist Lake Airport", + "latitude_deg": "55.400001525878906", + "longitude_deg": "-110.48300170898438", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Grist Lake", + "scheduled_service": "no", + "gps_code": "CFY2", + "local_code": "CFY2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grist_Lake_Airport", + "keywords": "FY2" + }, + { + "id": "1020", + "ident": "CFY4", + "type": "small_airport", + "name": "Winters Aire Park Airport", + "latitude_deg": "50.904819014699996", + "longitude_deg": "-113.796215057", + "elevation_ft": "3370", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Indus", + "scheduled_service": "no", + "gps_code": "CFY4", + "local_code": "CFY4", + "home_link": "http://www.ezflyer.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Indus/Winters_Aire_Park_Airport", + "keywords": "FY4" + }, + { + "id": "1021", + "ident": "CFY5", + "type": "small_airport", + "name": "Pine Lake", + "latitude_deg": "60.10309982299805", + "longitude_deg": "-130.9340057373047", + "elevation_ft": "3250", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Pine Lake", + "scheduled_service": "no", + "gps_code": "CFY5", + "local_code": "CFY5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Daughney_Aerodrome", + "keywords": "FY5" + }, + { + "id": "1022", + "ident": "CFY6", + "type": "small_airport", + "name": "Turner Valley Bar N Ranch Airport", + "latitude_deg": "50.65439987182617", + "longitude_deg": "-114.34400177001953", + "elevation_ft": "4210", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Turner Valley Bar N Ranch", + "scheduled_service": "no", + "gps_code": "CFY6", + "local_code": "CFY6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Turner_Valley_Bar_N_Ranch_Airport", + "keywords": "FY6" + }, + { + "id": "1023", + "ident": "CFY8", + "type": "closed", + "name": "Colomac Airport", + "latitude_deg": "64.3850021362", + "longitude_deg": "-115.125", + "elevation_ft": "1073", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Colomac", + "scheduled_service": "no", + "gps_code": "CFY8", + "local_code": "CFY8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Colomac_Airport", + "keywords": "FY8" + }, + { + "id": "1024", + "ident": "CFZ3", + "type": "small_airport", + "name": "Schlenker Airport", + "latitude_deg": "49.971671", + "longitude_deg": "-110.72439", + "elevation_ft": "2365", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Medicine Hat", + "scheduled_service": "no", + "gps_code": "CFZ3", + "local_code": "CFZ3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Medicine_Hat/Schlenker_Airport", + "keywords": "FZ3" + }, + { + "id": "1025", + "ident": "CFZ5", + "type": "small_airport", + "name": "Sundre / Goodwins Farm Airport", + "latitude_deg": "51.739805714700005", + "longitude_deg": "-114.662600756", + "elevation_ft": "3700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Sundre", + "scheduled_service": "no", + "gps_code": "CFZ5", + "local_code": "CFZ5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sundre/Goodwins_Farm_Airport", + "keywords": "FZ5" + }, + { + "id": "321378", + "ident": "CG-0001", + "type": "small_airport", + "name": "Matoko Airport", + "latitude_deg": "-1.012216", + "longitude_deg": "17.104403", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-7", + "municipality": "Matoko", + "scheduled_service": "no" + }, + { + "id": "322352", + "ident": "CG-0002", + "type": "small_airport", + "name": "Bomassa Airport", + "latitude_deg": "2.202584", + "longitude_deg": "16.185859", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-13", + "municipality": "Bomassa", + "scheduled_service": "no" + }, + { + "id": "333204", + "ident": "CG-0003", + "type": "small_airport", + "name": "Mokabi Airport", + "latitude_deg": "3.278863", + "longitude_deg": "16.756092", + "elevation_ft": "1664", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-7", + "municipality": "Mokabi", + "scheduled_service": "no" + }, + { + "id": "333205", + "ident": "CG-0004", + "type": "small_airport", + "name": "Enyele Airport", + "latitude_deg": "2.829175", + "longitude_deg": "18.02458", + "elevation_ft": "1318", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-7", + "municipality": "Enyele", + "scheduled_service": "no" + }, + { + "id": "333206", + "ident": "CG-0005", + "type": "small_airport", + "name": "Thanry Airport", + "latitude_deg": "2.651304", + "longitude_deg": "17.173194", + "elevation_ft": "1193", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-7", + "municipality": "Thanry", + "scheduled_service": "no" + }, + { + "id": "32110", + "ident": "CG-OKG", + "type": "small_airport", + "name": "Okoyo Airport", + "latitude_deg": "-1.4483300447464", + "longitude_deg": "15.073300361633", + "elevation_ft": "1415", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-8", + "municipality": "Okoyo", + "scheduled_service": "no", + "iata_code": "OKG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Okoyo_Airport" + }, + { + "id": "16712", + "ident": "CGA", + "type": "seaplane_base", + "name": "Craig Seaplane Base", + "latitude_deg": "55.47880172729492", + "longitude_deg": "-133.1479949951172", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Craig", + "scheduled_service": "no", + "gps_code": "CGA", + "iata_code": "CGA", + "local_code": "CGA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Craig_Seaplane_Base" + }, + { + "id": "1026", + "ident": "CGB2", + "type": "small_airport", + "name": "Bishell's Airport", + "latitude_deg": "51.582801818847656", + "longitude_deg": "-114.052001953125", + "elevation_ft": "3400", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Carstairs", + "scheduled_service": "no", + "gps_code": "CGB2", + "local_code": "CGB2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carstairs/Bishell's_Airport", + "keywords": "GB2" + }, + { + "id": "320473", + "ident": "CGB3", + "type": "small_airport", + "name": "Greenbush Airport", + "latitude_deg": "44.0011", + "longitude_deg": "-77.0735", + "elevation_ft": "436", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Picton", + "scheduled_service": "no", + "gps_code": "CGB3", + "local_code": "CGB3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Picton_(Greenbush)_Aerodrome" + }, + { + "id": "310994", + "ident": "CGB4", + "type": "heliport", + "name": "Nanaimo/Gabriola Island (Health Clinic) Heliport", + "latitude_deg": "49.178333", + "longitude_deg": "-123.83533", + "elevation_ft": "341", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CGB4" + }, + { + "id": "46172", + "ident": "CGC", + "type": "small_airport", + "name": "Cape Gloucester Airport", + "latitude_deg": "-5.458965", + "longitude_deg": "148.432417", + "elevation_ft": "78", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WBK", + "municipality": "Cape Gloucester", + "scheduled_service": "no", + "gps_code": "AYCG", + "iata_code": "CGC", + "local_code": "CPG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cape_Gloucester_Airport" + }, + { + "id": "28157", + "ident": "CGD2", + "type": "seaplane_base", + "name": "Alma (Rivière La Grande Décharge) Seaplane Base", + "latitude_deg": "48.563301", + "longitude_deg": "-71.615799", + "elevation_ft": "227", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Alma", + "scheduled_service": "no", + "gps_code": "CGD2", + "local_code": "CGD2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alma_(Rivi%C3%A8re_La_Grande_D%C3%A9charge)_Water_Aerodrome" + }, + { + "id": "321911", + "ident": "CGE2", + "type": "seaplane_base", + "name": "Grand Etang Pubnico Water Aerodrome", + "latitude_deg": "43.6287", + "longitude_deg": "-65.8137", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Lower West Pubnico", + "scheduled_service": "no", + "gps_code": "CGE2", + "local_code": "CGE2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Etang_Pubnico_Water_Aerodrome" + }, + { + "id": "46524", + "ident": "CGF2", + "type": "small_airport", + "name": "Edmonton / Lechelt Field", + "latitude_deg": "53.576289", + "longitude_deg": "-112.982025", + "elevation_ft": "2400", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Ardrossan", + "scheduled_service": "no", + "gps_code": "CGF2", + "local_code": "CGF2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Edmonton/Lechelt_Field_Aerodrome", + "keywords": "Goyer Field" + }, + { + "id": "320323", + "ident": "CGF3", + "type": "closed", + "name": "Guliker Field", + "latitude_deg": "52.526743", + "longitude_deg": "-106.359473", + "elevation_ft": "1620", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Hague", + "scheduled_service": "no", + "gps_code": "CGF3", + "local_code": "CGF3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hague/Guliker_Field_Aerodrome" + }, + { + "id": "320322", + "ident": "CGF4", + "type": "heliport", + "name": "Boundary Hospital Heliport", + "latitude_deg": "49.030615", + "longitude_deg": "-118.469894", + "elevation_ft": "1747", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Grand Forks", + "scheduled_service": "no", + "gps_code": "CGF4", + "local_code": "CGF4" + }, + { + "id": "332267", + "ident": "CGF6", + "type": "small_airport", + "name": "Gilford", + "latitude_deg": "44.219444", + "longitude_deg": "-79.5416667", + "elevation_ft": "738", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CGF6", + "local_code": "CGF6" + }, + { + "id": "312504", + "ident": "CGG", + "type": "small_airport", + "name": "Casiguran Airport", + "latitude_deg": "16.1941", + "longitude_deg": "122.0651", + "elevation_ft": "48", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AUR", + "municipality": "Casiguran", + "scheduled_service": "no", + "iata_code": "CGG" + }, + { + "id": "1027", + "ident": "CGH2", + "type": "heliport", + "name": "Gander (James Paton Memorial Regional Health Centre) Heliport", + "latitude_deg": "48.9551621544", + "longitude_deg": "-54.6272340417", + "elevation_ft": "432", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Gander", + "scheduled_service": "no", + "gps_code": "CGH2", + "local_code": "CGH2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harbour_Grace_Airport", + "keywords": "GH2" + }, + { + "id": "44373", + "ident": "CGK2", + "type": "small_airport", + "name": "Gahcho Kue", + "latitude_deg": "63.435198", + "longitude_deg": "-109.144812", + "elevation_ft": "1371", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no", + "gps_code": "CGK2", + "iata_code": "GHK", + "local_code": "CGK2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gahcho_Kue_Aerodrome", + "keywords": "De Beers Canada" + }, + { + "id": "1028", + "ident": "CGL2", + "type": "small_airport", + "name": "Harrow Airport", + "latitude_deg": "42.05939865112305", + "longitude_deg": "-82.8407974243164", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Harrow", + "scheduled_service": "no", + "gps_code": "CGL2", + "local_code": "CGL2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harrow_Airport", + "keywords": "GL2" + }, + { + "id": "28168", + "ident": "CGL3", + "type": "seaplane_base", + "name": "Bala/Gibson Lake Seaplane Base", + "latitude_deg": "44.94860076904297", + "longitude_deg": "-79.7260971069336", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CGL3", + "local_code": "CGL3" + }, + { + "id": "1029", + "ident": "CGL4", + "type": "small_airport", + "name": "Eaglesham (South) Airport", + "latitude_deg": "55.67110061645508", + "longitude_deg": "-117.93599700927734", + "elevation_ft": "1920", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Eaglesham", + "scheduled_service": "no", + "gps_code": "CGL4", + "local_code": "CGL4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eaglesham_(South)_Aerodrome", + "keywords": "GL4" + }, + { + "id": "1030", + "ident": "CGL5", + "type": "heliport", + "name": "Gun Lake Heliport", + "latitude_deg": "50.88970184326172", + "longitude_deg": "-122.84700012207031", + "elevation_ft": "2950", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Gun Lake", + "scheduled_service": "no", + "gps_code": "CGL5", + "local_code": "CGL5", + "keywords": "GL5" + }, + { + "id": "299179", + "ident": "cgl6", + "type": "heliport", + "name": "Vancouver / Burnaby (Global BC) Heliport", + "latitude_deg": "49.2546009761", + "longitude_deg": "-122.935177088", + "elevation_ft": "262", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Burnaby", + "scheduled_service": "no", + "gps_code": "CGL6" + }, + { + "id": "1031", + "ident": "CGM2", + "type": "heliport", + "name": "Smoky Lake (George Mcdougall Health Centre) Heliport", + "latitude_deg": "54.12189865112305", + "longitude_deg": "-112.46600341796875", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Smoky Lake", + "scheduled_service": "no", + "gps_code": "CGM2", + "local_code": "CGM2", + "keywords": "GM2" + }, + { + "id": "28234", + "ident": "CGN1", + "type": "closed", + "name": "Gananoque Seaplane Base", + "latitude_deg": "44.32500076293945", + "longitude_deg": "-76.15689849853516", + "elevation_ft": "246", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CGN1", + "local_code": "CGN1" + }, + { + "id": "1032", + "ident": "CGN2", + "type": "closed", + "name": "Golden (Canadian Helicopters) Heliport", + "latitude_deg": "51.304475", + "longitude_deg": "-116.983535", + "elevation_ft": "2575", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Golden", + "scheduled_service": "no", + "gps_code": "CGN2", + "local_code": "CGN2", + "keywords": "GN2" + }, + { + "id": "320345", + "ident": "CGN3", + "type": "small_airport", + "name": "Gunnlaugson Airport", + "latitude_deg": "49.636701", + "longitude_deg": "-112.6916", + "elevation_ft": "3058", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Lethbridge", + "scheduled_service": "no", + "gps_code": "CGN3", + "local_code": "CGN3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lethbridge_(Gunnlaugson)_Aerodrome" + }, + { + "id": "320173", + "ident": "CGP2", + "type": "heliport", + "name": "Queen Elizabeth II Hospital Helipad", + "latitude_deg": "55.17597", + "longitude_deg": "-118.78757", + "elevation_ft": "2194", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Grande Prairie", + "scheduled_service": "no", + "gps_code": "CGP2", + "local_code": "CGP2" + }, + { + "id": "46612", + "ident": "CGR2", + "type": "heliport", + "name": "Gold River (E & B Helicopters) Heliport", + "latitude_deg": "49.7533097005", + "longitude_deg": "-126.055626869", + "elevation_ft": "182", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CGR2", + "keywords": "gr2" + }, + { + "id": "308297", + "ident": "CGR3", + "type": "small_airport", + "name": "George Lake Aerodrome", + "latitude_deg": "65.928056", + "longitude_deg": "-107.462222", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no", + "gps_code": "CGR3", + "local_code": "CGR3", + "wikipedia_link": "https://en.wikipedia.org/wiki/George_Lake_Aerodrome" + }, + { + "id": "320316", + "ident": "CGR4", + "type": "heliport", + "name": "The Ridge Heliport", + "latitude_deg": "49.7832", + "longitude_deg": "-126.043701", + "elevation_ft": "478", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Gold River", + "scheduled_service": "no", + "gps_code": "CGR4", + "local_code": "CGR4" + }, + { + "id": "335912", + "ident": "CGR5", + "type": "heliport", + "name": "Viking Health Centre George H. Roddick Heliport", + "latitude_deg": "53.101667", + "longitude_deg": "-111.776667", + "elevation_ft": "2016", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Viking", + "scheduled_service": "no", + "gps_code": "CGR5", + "local_code": "CGR5" + }, + { + "id": "308296", + "ident": "CGS2", + "type": "small_airport", + "name": "Goose Lake Aerodrome", + "latitude_deg": "65.552778", + "longitude_deg": "-106.433611", + "elevation_ft": "907", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no", + "gps_code": "CGS2", + "local_code": "CGS2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Goose_Lake_Aerodrome" + }, + { + "id": "312503", + "ident": "CGT", + "type": "closed", + "name": "Chinguetti Airport", + "latitude_deg": "20.5055", + "longitude_deg": "-12.3978", + "elevation_ft": "1775", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-07", + "municipality": "Chinguetti", + "scheduled_service": "no", + "iata_code": "CGT" + }, + { + "id": "46613", + "ident": "CGV2", + "type": "small_airport", + "name": "Grand Valley / Luther Field", + "latitude_deg": "43.976388889", + "longitude_deg": "-80.38527778", + "elevation_ft": "1602", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CGV2", + "keywords": "gv2" + }, + { + "id": "43880", + "ident": "CGV3", + "type": "small_airport", + "name": "Grand Valley North", + "latitude_deg": "43.962501525878906", + "longitude_deg": "-80.35416412353516", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "local_code": "CGV3" + }, + { + "id": "46614", + "ident": "CGV4", + "type": "closed", + "name": "Grand Valley (Madill Field)", + "latitude_deg": "43.8621028127", + "longitude_deg": "-80.26692867279999", + "elevation_ft": "1530", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CGV4", + "keywords": "gv4" + }, + { + "id": "298874", + "ident": "cgv5", + "type": "small_airport", + "name": "Grand Valley (Black Field)", + "latitude_deg": "43.8600915245", + "longitude_deg": "-80.28868675230001", + "elevation_ft": "1580", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CGV5" + }, + { + "id": "46615", + "ident": "CGV6", + "type": "small_airport", + "name": "Grand Valley/Martin Field", + "latitude_deg": "43.87469", + "longitude_deg": "-80.282185", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "East Garafraxa", + "scheduled_service": "no", + "gps_code": "CGV6", + "keywords": "gv6" + }, + { + "id": "348780", + "ident": "CGV7", + "type": "small_airport", + "name": "Springvale Aerodrome", + "latitude_deg": "42.96983", + "longitude_deg": "-80.15953", + "elevation_ft": "741", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Hagersville", + "scheduled_service": "no", + "gps_code": "CGV7" + }, + { + "id": "43117", + "ident": "CH-0001", + "type": "heliport", + "name": "San Vittore Heliport", + "latitude_deg": "46.231624603271484", + "longitude_deg": "9.089531898498535", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-GR", + "municipality": "San Vittore", + "scheduled_service": "no", + "gps_code": "LSXV" + }, + { + "id": "316432", + "ident": "CH-0002", + "type": "small_airport", + "name": "Altiport de Croix de Coeur", + "latitude_deg": "46.12338", + "longitude_deg": "7.23425", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-VS", + "scheduled_service": "no" + }, + { + "id": "319833", + "ident": "CH-0003", + "type": "small_airport", + "name": "Altisurface du Glacier de Prasfleuri", + "latitude_deg": "46.064289", + "longitude_deg": "7.354317", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-VS", + "scheduled_service": "no", + "keywords": "Prasfleuri" + }, + { + "id": "320391", + "ident": "CH-0004", + "type": "small_airport", + "name": "Altiport du Glacier de Tsanfleuron", + "latitude_deg": "46.3206526", + "longitude_deg": "7.2328797", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-U-A", + "scheduled_service": "no", + "keywords": "Tsanfleuron,Diablerets" + }, + { + "id": "324870", + "ident": "CH-0005", + "type": "heliport", + "name": "Helipad Klinik Gut (St. Moritz)", + "latitude_deg": "46.4965", + "longitude_deg": "9.83847", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-GR", + "municipality": "St Moritz", + "scheduled_service": "no" + }, + { + "id": "324871", + "ident": "CH-0006", + "type": "heliport", + "name": "Helipad Station Corvatsch", + "latitude_deg": "46.417793", + "longitude_deg": "9.820909", + "elevation_ft": "10837", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-GR", + "municipality": "Silvaplana", + "scheduled_service": "no" + }, + { + "id": "324872", + "ident": "CH-0007", + "type": "closed", + "name": "Ulrichen Air Base", + "latitude_deg": "46.50193", + "longitude_deg": "8.299415", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-VS", + "municipality": "Obergoms", + "scheduled_service": "no", + "gps_code": "LSMC" + }, + { + "id": "355531", + "ident": "CH-0008", + "type": "heliport", + "name": "REGA basis Erstfeld", + "latitude_deg": "46.83416", + "longitude_deg": "8.63832", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-UR", + "scheduled_service": "no" + }, + { + "id": "320741", + "ident": "CHA2", + "type": "seaplane_base", + "name": "Hydravion Aventure Water Aerodrome", + "latitude_deg": "46.4778", + "longitude_deg": "-72.7761", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Étienne-des-Grès", + "scheduled_service": "no", + "gps_code": "CHA2", + "local_code": "CHA2", + "home_link": "http://www.hydravion.ca/index.php/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saint-%C3%89tienne-des-Gr%C3%A8s/Hydravion_Adventure_Water_Aerodrome", + "keywords": "Hydravion-Aventure" + }, + { + "id": "322361", + "ident": "CHAN", + "type": "small_airport", + "name": "A & C AG Aviation Inc", + "latitude_deg": "32.171115", + "longitude_deg": "-83.692893", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Unadilla", + "scheduled_service": "no" + }, + { + "id": "320215", + "ident": "CHB2", + "type": "heliport", + "name": "Hudson Bay Helicopters Heliport", + "latitude_deg": "58.7664", + "longitude_deg": "-94.1677", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Churchill", + "scheduled_service": "no", + "gps_code": "CHB2", + "local_code": "CHB2", + "home_link": "http://hudsonbayheli.com/" + }, + { + "id": "1033", + "ident": "CHC2", + "type": "closed", + "name": "Stewart (Health Centre) Heliport", + "latitude_deg": "55.940299987799996", + "longitude_deg": "-129.990997314", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Stewart", + "scheduled_service": "no", + "gps_code": "CHC2", + "local_code": "CHC2", + "keywords": "HC2" + }, + { + "id": "1034", + "ident": "CHC3", + "type": "heliport", + "name": "Barrhead (Healthcare Centre) Heliport", + "latitude_deg": "54.1182820612", + "longitude_deg": "-114.400066137", + "elevation_ft": "2121", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Barrhead", + "scheduled_service": "no", + "gps_code": "CHC3", + "local_code": "CHC3", + "keywords": "HC3" + }, + { + "id": "1035", + "ident": "CHC4", + "type": "closed", + "name": "Ponoka (Hospital & Care Centre) Heliport", + "latitude_deg": "52.685299", + "longitude_deg": "-113.588997", + "elevation_ft": "2676", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Ponoka", + "scheduled_service": "no", + "gps_code": "CHC4", + "local_code": "CHC4", + "keywords": "HC4" + }, + { + "id": "308295", + "ident": "CHC5", + "type": "small_airport", + "name": "Hayes Camp Aerodrome", + "latitude_deg": "66.655556", + "longitude_deg": "-91.545", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no", + "gps_code": "CHC5", + "local_code": "CHC5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hayes_Camp_Aerodrome" + }, + { + "id": "320174", + "ident": "CHD2", + "type": "heliport", + "name": "Hardisty Health Centre Helipad", + "latitude_deg": "52.6689", + "longitude_deg": "-111.307101", + "elevation_ft": "2075", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Hardistry", + "scheduled_service": "no", + "gps_code": "CHD2", + "local_code": "CHD2" + }, + { + "id": "1036", + "ident": "CHD3", + "type": "heliport", + "name": "Hanna District Ambulance Heliport", + "latitude_deg": "51.651126", + "longitude_deg": "-111.92929", + "elevation_ft": "2687", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Hanna", + "scheduled_service": "no", + "gps_code": "CHD3", + "local_code": "CHD3" + }, + { + "id": "311598", + "ident": "CHD4", + "type": "small_airport", + "name": "Thamesford (Harydale Farms)", + "latitude_deg": "43.1083333333", + "longitude_deg": "-81.01916666670002", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Thamesford", + "scheduled_service": "no", + "gps_code": "CHD4", + "local_code": "CHD4" + }, + { + "id": "43875", + "ident": "CHF2", + "type": "small_airport", + "name": "Ottawa / Manotick (Hope Field)", + "latitude_deg": "45.190601348899996", + "longitude_deg": "-75.70860290530001", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Manotick", + "scheduled_service": "no", + "gps_code": "CHF2", + "local_code": "CHF2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ottawa/Manotick_(Hope_Field)_Aerodrome", + "keywords": "HF2" + }, + { + "id": "320700", + "ident": "CHF3", + "type": "small_airport", + "name": "Hnatko Farms Airport", + "latitude_deg": "54.1996", + "longitude_deg": "-114.123502", + "elevation_ft": "2053", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Westlock", + "scheduled_service": "no", + "gps_code": "CHF3", + "local_code": "CHF3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Westlock_(Hnatko_Farms)_Aerodrome" + }, + { + "id": "1037", + "ident": "CHG2", + "type": "small_airport", + "name": "Harbour Grace Airport", + "latitude_deg": "47.685427", + "longitude_deg": "-53.253629", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Harbour Grace", + "scheduled_service": "no", + "gps_code": "CHG2", + "local_code": "CHG2", + "keywords": "HG2" + }, + { + "id": "320851", + "ident": "CHH2", + "type": "seaplane_base", + "name": "Hamilton Harbour Seaplane Base", + "latitude_deg": "43.2988", + "longitude_deg": "-79.8498", + "elevation_ft": "244", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "CHH2", + "local_code": "CHH2", + "keywords": "PS5" + }, + { + "id": "1038", + "ident": "CHJ4", + "type": "heliport", + "name": "Boyle (Healthcare Centre) Heliport", + "latitude_deg": "54.588661", + "longitude_deg": "-112.801913", + "elevation_ft": "2150", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Boyle", + "scheduled_service": "no", + "gps_code": "CHJ4", + "local_code": "CHJ4", + "keywords": "HJ4" + }, + { + "id": "1039", + "ident": "CHK2", + "type": "closed", + "name": "Aldergrove (Hicks) Heliport", + "latitude_deg": "49.108781", + "longitude_deg": "-122.480052", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Aldergrove", + "scheduled_service": "no", + "keywords": "HK2, CHK2" + }, + { + "id": "320651", + "ident": "CHL2", + "type": "small_airport", + "name": "Hillaton/Kings Aerodrome", + "latitude_deg": "45.1442", + "longitude_deg": "-64.4229", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Hillaton", + "scheduled_service": "no", + "gps_code": "CHL2", + "local_code": "CHL2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hillaton/Kings_Aerodrome" + }, + { + "id": "28193", + "ident": "CHL3", + "type": "seaplane_base", + "name": "Church Lake Seaplane Base", + "latitude_deg": "44.55939865112305", + "longitude_deg": "-64.61219787597656", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "scheduled_service": "no", + "gps_code": "CHL3", + "local_code": "CHL3" + }, + { + "id": "28265", + "ident": "CHL6", + "type": "seaplane_base", + "name": "Huntsville (North) Seaplane Base", + "latitude_deg": "45.33140182495117", + "longitude_deg": "-79.25810241699219", + "elevation_ft": "931", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CHL6", + "local_code": "CHL6" + }, + { + "id": "298376", + "ident": "CHM2", + "type": "small_airport", + "name": "Spiritwood / H & M Fast Farms", + "latitude_deg": "53.275", + "longitude_deg": "-107.570278", + "elevation_ft": "2250", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no", + "gps_code": "CHM2", + "local_code": "CHM2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Spiritwood/H_%26_M_Fast_Farms_Aerodrome", + "keywords": "HM2" + }, + { + "id": "16713", + "ident": "CHP", + "type": "small_airport", + "name": "Circle Hot Springs Airport", + "latitude_deg": "65.485496521", + "longitude_deg": "-144.610992432", + "elevation_ft": "956", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Circle Hot Springs", + "scheduled_service": "no", + "gps_code": "CHP", + "iata_code": "CHP", + "local_code": "CHP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Circle_Hot_Springs_Airport" + }, + { + "id": "316627", + "ident": "CHP2", + "type": "seaplane_base", + "name": "Heurisko Pond Water Aerodrome", + "latitude_deg": "43.7722", + "longitude_deg": "-80.3739", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Belwood", + "scheduled_service": "no", + "gps_code": "CHP2", + "local_code": "CHP2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Belwood_(Heurisko_Pond)_Water_Aerodrome" + }, + { + "id": "320418", + "ident": "CHP3", + "type": "heliport", + "name": "Mont-Tremblant/Heliport P3", + "latitude_deg": "46.1953", + "longitude_deg": "-74.571201", + "elevation_ft": "816", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Mont-Tremblant", + "scheduled_service": "no", + "gps_code": "CHP3", + "local_code": "CHP3" + }, + { + "id": "1040", + "ident": "CHQ2", + "type": "closed", + "name": "Chicoutimi (Hydro-Québec) Heliport", + "latitude_deg": "48.400001525878906", + "longitude_deg": "-71.11689758300781", + "elevation_ft": "451", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Chicoutimi", + "scheduled_service": "no", + "gps_code": "CHQ2", + "local_code": "CHQ2", + "keywords": "HQ2" + }, + { + "id": "1041", + "ident": "CHQE", + "type": "heliport", + "name": "Halifax (Queen Elizabeth II Health Science Centre) Heliport", + "latitude_deg": "44.645941012499996", + "longitude_deg": "-63.586530983399996", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Halifax", + "scheduled_service": "no", + "gps_code": "CHQE", + "local_code": "CHQE", + "keywords": "HQE" + }, + { + "id": "320175", + "ident": "CHR2", + "type": "heliport", + "name": "High River Hospital Helipad", + "latitude_deg": "50.5761", + "longitude_deg": "-113.8793", + "elevation_ft": "3411", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "High River", + "scheduled_service": "no", + "gps_code": "CHR2", + "local_code": "CHR2" + }, + { + "id": "45052", + "ident": "CHS2", + "type": "closed", + "name": "Highgate South Airport", + "latitude_deg": "42.468953", + "longitude_deg": "-81.831107", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Highgate", + "scheduled_service": "no", + "gps_code": "CHS2", + "local_code": "CHS2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Highgate_(South)_Aerodrome" + }, + { + "id": "320652", + "ident": "CHS3", + "type": "small_airport", + "name": "Beck Farm Airport", + "latitude_deg": "49.3366", + "longitude_deg": "-113.5733", + "elevation_ft": "3695", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Hillspring", + "scheduled_service": "no", + "gps_code": "CHS3", + "local_code": "CHS3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hillspring_(Beck_Farm)_Aerodrome" + }, + { + "id": "321880", + "ident": "CHS4", + "type": "seaplane_base", + "name": "Scugog /Charlies Landing Seaplane Base", + "latitude_deg": "44.161301", + "longitude_deg": "-78.8245", + "elevation_ft": "816", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Scugog", + "scheduled_service": "no", + "gps_code": "CHS4", + "local_code": "CHS4" + }, + { + "id": "320377", + "ident": "CHS5", + "type": "heliport", + "name": "Heliport Senneville", + "latitude_deg": "45.4428", + "longitude_deg": "-73.9605", + "elevation_ft": "94", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montréal", + "scheduled_service": "no", + "gps_code": "CHS5", + "local_code": "CHS5" + }, + { + "id": "1042", + "ident": "CHS7", + "type": "heliport", + "name": "Halifax (South End) Heliport", + "latitude_deg": "44.6254289733", + "longitude_deg": "-63.5633915663", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Halifax", + "scheduled_service": "no", + "gps_code": "CHS7", + "local_code": "CHS7", + "keywords": "HS7" + }, + { + "id": "44691", + "ident": "CHT3", + "type": "heliport", + "name": "Mont Tremblant/St-Jovite Heli-Tremblant", + "latitude_deg": "46.114200592041016", + "longitude_deg": "-74.54139709472656", + "elevation_ft": "803", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CHT3", + "local_code": "CHT3" + }, + { + "id": "320434", + "ident": "CHT4", + "type": "heliport", + "name": "Nelson (High Terrain Helicopters) Heliport", + "latitude_deg": "49.486702", + "longitude_deg": "-117.327201", + "elevation_ft": "1950", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Nelson", + "scheduled_service": "no", + "gps_code": "CHT4", + "local_code": "CHT4", + "home_link": "http://highterrainhelicopters.com/" + }, + { + "id": "320457", + "ident": "CHW2", + "type": "heliport", + "name": "Orangeville/Headwaters Healthcare Centre Heliport", + "latitude_deg": "43.919901", + "longitude_deg": "-80.0754", + "elevation_ft": "1520", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Orangeville", + "scheduled_service": "no", + "gps_code": "CHW2", + "local_code": "CHW2" + }, + { + "id": "340296", + "ident": "CI-0001", + "type": "small_airport", + "name": "Assouindé Airport", + "latitude_deg": "5.17544", + "longitude_deg": "-3.47049", + "elevation_ft": "23", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-CM", + "municipality": "Assouindé", + "scheduled_service": "no" + }, + { + "id": "340297", + "ident": "CI-0002", + "type": "small_airport", + "name": "Cosrou Airport", + "latitude_deg": "5.3156", + "longitude_deg": "-4.6459", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-LG", + "municipality": "Cosrou", + "scheduled_service": "no" + }, + { + "id": "340298", + "ident": "CI-0003", + "type": "small_airport", + "name": "Wèoulo Airport", + "latitude_deg": "4.6874", + "longitude_deg": "-7.0773", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-BS", + "municipality": "Wèoulo", + "scheduled_service": "no" + }, + { + "id": "341665", + "ident": "CI-0004", + "type": "heliport", + "name": "Alassane Ouattara Helipad", + "latitude_deg": "5.32812", + "longitude_deg": "-3.97654", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-AB", + "municipality": "Abidjan", + "scheduled_service": "no" + }, + { + "id": "355241", + "ident": "CI-0005", + "type": "small_airport", + "name": "Zagné Airport", + "latitude_deg": "6.215391", + "longitude_deg": "-7.500315", + "elevation_ft": "732", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-MG", + "municipality": "Zagné", + "scheduled_service": "no" + }, + { + "id": "312506", + "ident": "CIV", + "type": "seaplane_base", + "name": "Chomley Seaplane Base", + "latitude_deg": "55.217", + "longitude_deg": "-132.21", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chomley", + "scheduled_service": "no", + "iata_code": "CIV" + }, + { + "id": "1043", + "ident": "CIV2", + "type": "heliport", + "name": "Invermere (Hospital) Heliport", + "latitude_deg": "50.507211", + "longitude_deg": "-116.032813", + "elevation_ft": "2900", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Invermere", + "scheduled_service": "no", + "gps_code": "CIV2", + "local_code": "CIV2", + "keywords": "IV2" + }, + { + "id": "1044", + "ident": "CIW2", + "type": "heliport", + "name": "Halifax (IWK Health Centre) Heliport", + "latitude_deg": "44.6369942499", + "longitude_deg": "-63.584420085", + "elevation_ft": "223", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Halifax", + "scheduled_service": "no", + "gps_code": "CIW2", + "local_code": "CIW2", + "keywords": "IW2" + }, + { + "id": "320693", + "ident": "CJA2", + "type": "small_airport", + "name": "Selkirk Airport", + "latitude_deg": "42.8068", + "longitude_deg": "-79.9768", + "elevation_ft": "592", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Selkirk", + "scheduled_service": "no", + "gps_code": "CJA2", + "local_code": "CJA2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Selkirk_Aerodrome" + }, + { + "id": "1045", + "ident": "CJA3", + "type": "small_airport", + "name": "Morden Regional Airport", + "latitude_deg": "49.208626", + "longitude_deg": "-98.063536", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Morden", + "scheduled_service": "no", + "gps_code": "CJA3", + "local_code": "CJA3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Morden_Airport", + "keywords": "JA3" + }, + { + "id": "1046", + "ident": "CJA5", + "type": "small_airport", + "name": "Nestor Falls Airport", + "latitude_deg": "49.14030075073242", + "longitude_deg": "-93.91690063476562", + "elevation_ft": "1195", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Nestor Falls", + "scheduled_service": "no", + "gps_code": "CJA5", + "local_code": "CJA5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nestor_Falls_Airport", + "keywords": "JA5" + }, + { + "id": "1047", + "ident": "CJA7", + "type": "small_airport", + "name": "Arcola Airport", + "latitude_deg": "49.626755", + "longitude_deg": "-102.485747", + "elevation_ft": "1985", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Arcola", + "scheduled_service": "no", + "gps_code": "CJA7", + "local_code": "CJA7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arcola_Airport", + "keywords": "JA7" + }, + { + "id": "28208", + "ident": "CJA8", + "type": "closed", + "name": "Deer Lake Seaplane Base", + "latitude_deg": "52.616699", + "longitude_deg": "-94.050003", + "elevation_ft": "1017", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Deer Lake First Nation", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Deer_Lake_Water_Aerodrome", + "keywords": "CJA8, JA8" + }, + { + "id": "28262", + "ident": "CJA9", + "type": "seaplane_base", + "name": "Hudson Seaplane Base", + "latitude_deg": "50.099998", + "longitude_deg": "-92.166702", + "elevation_ft": "1171", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CJA9", + "local_code": "CJA9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hudson_Water_Aerodrome", + "keywords": "JA9" + }, + { + "id": "1048", + "ident": "CJB2", + "type": "small_airport", + "name": "Friendship Field", + "latitude_deg": "49.49140167236328", + "longitude_deg": "-98.01860046386719", + "elevation_ft": "882", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Carman", + "scheduled_service": "no", + "gps_code": "CJB2", + "local_code": "CJB2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carman/Friendship_Field_Airport", + "keywords": "JB2" + }, + { + "id": "1049", + "ident": "CJB3", + "type": "small_airport", + "name": "Steinbach Airport", + "latitude_deg": "49.549400329589844", + "longitude_deg": "-96.67939758300781", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Steinbach", + "scheduled_service": "no", + "gps_code": "CJB3", + "local_code": "CJB3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Steinbach_Airport", + "keywords": "JB3" + }, + { + "id": "1050", + "ident": "CJB5", + "type": "small_airport", + "name": "Moosomin Airport", + "latitude_deg": "50.16859817504883", + "longitude_deg": "-101.64399719238281", + "elevation_ft": "1853", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Moosomin", + "scheduled_service": "no", + "gps_code": "CJB5", + "local_code": "CJB5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moosomin_Airport", + "keywords": "JB5" + }, + { + "id": "1051", + "ident": "CJB6", + "type": "small_airport", + "name": "Gods Lake Airport", + "latitude_deg": "54.77920150756836", + "longitude_deg": "-93.71690368652344", + "elevation_ft": "605", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Gods Lake", + "scheduled_service": "no", + "gps_code": "CJB6", + "local_code": "CJB6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gods_Lake_Airport", + "keywords": "JB6" + }, + { + "id": "28183", + "ident": "CJB7", + "type": "seaplane_base", + "name": "Buffalo Narrows Seaplane Base", + "latitude_deg": "55.849998", + "longitude_deg": "-108.483002", + "elevation_ft": "1382", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Buffalo Narrows", + "scheduled_service": "no", + "gps_code": "CJB7", + "local_code": "CJB7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buffalo_Narrows_Water_Aerodrome", + "keywords": "JB7" + }, + { + "id": "1052", + "ident": "CJB8", + "type": "small_airport", + "name": "Kyle Airport", + "latitude_deg": "50.83330154418945", + "longitude_deg": "-108.06999969482422", + "elevation_ft": "2175", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Kyle", + "scheduled_service": "no", + "gps_code": "CJB8", + "local_code": "CJB8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kyle_Airport", + "keywords": "JB8" + }, + { + "id": "1053", + "ident": "CJC2", + "type": "small_airport", + "name": "Craik Airport", + "latitude_deg": "51.05609893798828", + "longitude_deg": "-105.83799743652344", + "elevation_ft": "1950", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Craik", + "scheduled_service": "no", + "gps_code": "CJC2", + "local_code": "CJC2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Craik_Airport", + "keywords": "JC2" + }, + { + "id": "1054", + "ident": "CJC3", + "type": "small_airport", + "name": "Davidson Municipal Airport", + "latitude_deg": "51.247798919677734", + "longitude_deg": "-105.97599792480469", + "elevation_ft": "2025", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Davidson", + "scheduled_service": "no", + "gps_code": "CJC3", + "local_code": "CJC3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Davidson_Municipal_Airport", + "keywords": "JC3" + }, + { + "id": "1055", + "ident": "CJC4", + "type": "small_airport", + "name": "Central Butte Airport", + "latitude_deg": "50.80139923095703", + "longitude_deg": "-106.48799896240234", + "elevation_ft": "2030", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Central Butte", + "scheduled_service": "no", + "gps_code": "CJC4", + "local_code": "CJC4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Central_Butte_Airport", + "keywords": "JC4" + }, + { + "id": "1056", + "ident": "CJC5", + "type": "small_airport", + "name": "Shaunavon Airport", + "latitude_deg": "49.65810012817383", + "longitude_deg": "-108.40599822998047", + "elevation_ft": "3028", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Shaunavon", + "scheduled_service": "no", + "gps_code": "CJC5", + "local_code": "CJC5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shaunavon_Airport", + "keywords": "JC5" + }, + { + "id": "1057", + "ident": "CJC6", + "type": "small_airport", + "name": "Hafford Airport", + "latitude_deg": "52.732200622558594", + "longitude_deg": "-107.3740005493164", + "elevation_ft": "1935", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Hafford", + "scheduled_service": "no", + "gps_code": "CJC6", + "local_code": "CJC6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hafford_Airport", + "keywords": "JC6" + }, + { + "id": "28184", + "ident": "CJC7", + "type": "seaplane_base", + "name": "Burditt Lake Seaplane Base", + "latitude_deg": "48.91939926147461", + "longitude_deg": "-93.80220031738281", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CJC7", + "local_code": "CJC7" + }, + { + "id": "1058", + "ident": "CJC8", + "type": "small_airport", + "name": "Laurie River Airport", + "latitude_deg": "56.2486000061", + "longitude_deg": "-101.304000854", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Laurie River", + "scheduled_service": "no", + "gps_code": "CJC8", + "iata_code": "LRQ", + "local_code": "CJC8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Laurie_River_Airport", + "keywords": "JC8" + }, + { + "id": "1059", + "ident": "CJC9", + "type": "closed", + "name": "Buffalo Narrows Heliport", + "latitude_deg": "55.868598938", + "longitude_deg": "-108.482002258", + "elevation_ft": "1392", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Buffalo Narrows", + "scheduled_service": "no", + "gps_code": "CJC9", + "local_code": "CJC9", + "keywords": "JC9" + }, + { + "id": "1060", + "ident": "CJD2", + "type": "small_airport", + "name": "Cudworth Municipal Airport", + "latitude_deg": "52.483299255371094", + "longitude_deg": "-105.71700286865234", + "elevation_ft": "1878", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Cudworth", + "scheduled_service": "no", + "gps_code": "CJD2", + "local_code": "CJD2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cudworth_Municipal_Airport", + "keywords": "JD2" + }, + { + "id": "1061", + "ident": "CJD3", + "type": "small_airport", + "name": "Birch Hills Airport", + "latitude_deg": "52.99079895019531", + "longitude_deg": "-105.44499969482422", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Birch Hills", + "scheduled_service": "no", + "gps_code": "CJD3", + "local_code": "CJD3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Birch_Hills_Airport", + "keywords": "JD3" + }, + { + "id": "1062", + "ident": "CJD5", + "type": "small_airport", + "name": "Leader Airport", + "latitude_deg": "50.877201080322266", + "longitude_deg": "-109.5009994506836", + "elevation_ft": "2201", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Leader", + "scheduled_service": "no", + "gps_code": "CJD5", + "local_code": "CJD5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leader_Airport", + "keywords": "JD5" + }, + { + "id": "28405", + "ident": "CJD6", + "type": "seaplane_base", + "name": "Sand Point Lake Seaplane Base", + "latitude_deg": "48.33330154418945", + "longitude_deg": "-92.44999694824219", + "elevation_ft": "1119", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CJD6", + "local_code": "CJD6" + }, + { + "id": "28186", + "ident": "CJD7", + "type": "seaplane_base", + "name": "Cambridge Bay Seaplane Base", + "latitude_deg": "69.122202", + "longitude_deg": "-105.021003", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Cambridge Bay", + "scheduled_service": "no", + "gps_code": "CJD7", + "local_code": "CJD7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cambridge_Bay_Water_Aerodrome", + "keywords": "JD7" + }, + { + "id": "28213", + "ident": "CJD8", + "type": "seaplane_base", + "name": "Dryden Seaplane Base", + "latitude_deg": "49.762876", + "longitude_deg": "-92.830315", + "elevation_ft": "1208", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Dryden", + "scheduled_service": "no", + "gps_code": "CJD8", + "local_code": "CJD8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dryden_Water_Aerodrome", + "keywords": "JD8" + }, + { + "id": "28266", + "ident": "CJD9", + "type": "seaplane_base", + "name": "Ignace Seaplane Base", + "latitude_deg": "49.41669845581055", + "longitude_deg": "-91.66670227050781", + "elevation_ft": "1486", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CJD9", + "local_code": "CJD9" + }, + { + "id": "1063", + "ident": "CJE2", + "type": "small_airport", + "name": "Dore Lake Airport", + "latitude_deg": "54.61669921875", + "longitude_deg": "-107.38300323486328", + "elevation_ft": "1565", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Dore Lake", + "scheduled_service": "no", + "gps_code": "CJE2", + "local_code": "CJE2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dore_Lake_Airport", + "keywords": "JE2" + }, + { + "id": "1064", + "ident": "CJE3", + "type": "small_airport", + "name": "Weyburn Airport", + "latitude_deg": "49.6974983215332", + "longitude_deg": "-103.8010025024414", + "elevation_ft": "1934", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Weyburn", + "scheduled_service": "no", + "gps_code": "CJE3", + "local_code": "CJE3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Weyburn_Airport", + "keywords": "JE3" + }, + { + "id": "1065", + "ident": "CJE4", + "type": "small_airport", + "name": "Snow Lake Airport", + "latitude_deg": "54.89720153808594", + "longitude_deg": "-99.81890106201172", + "elevation_ft": "993", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Snow Lake", + "scheduled_service": "no", + "gps_code": "CJE4", + "local_code": "CJE4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Snow_Lake_Airport", + "keywords": "JE4" + }, + { + "id": "1066", + "ident": "CJE5", + "type": "small_airport", + "name": "Glaslyn Airport", + "latitude_deg": "53.377201080322266", + "longitude_deg": "-108.34200286865234", + "elevation_ft": "2250", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Glaslyn", + "scheduled_service": "no", + "gps_code": "CJE5", + "local_code": "CJE5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Glaslyn_Airport", + "keywords": "JE5" + }, + { + "id": "1067", + "ident": "CJE6", + "type": "small_airport", + "name": "Paradise Hill Airport", + "latitude_deg": "53.535301208496094", + "longitude_deg": "-109.43399810791016", + "elevation_ft": "1927", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Paradise Hill", + "scheduled_service": "no", + "gps_code": "CJE6", + "local_code": "CJE6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paradise_Hill_Airport", + "keywords": "JE6" + }, + { + "id": "1068", + "ident": "CJE7", + "type": "small_airport", + "name": "Ashern Airport", + "latitude_deg": "51.158599853515625", + "longitude_deg": "-98.33190155029297", + "elevation_ft": "976", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Ashern", + "scheduled_service": "no", + "gps_code": "CJE7", + "local_code": "CJE7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ashern_Airport", + "keywords": "JE7" + }, + { + "id": "28214", + "ident": "CJE8", + "type": "seaplane_base", + "name": "Ear Falls Seaplane Base", + "latitude_deg": "50.58330154418945", + "longitude_deg": "-93.16670227050781", + "elevation_ft": "1171", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CJE8", + "local_code": "CJE8" + }, + { + "id": "320861", + "ident": "CJF2", + "type": "seaplane_base", + "name": "Carignan/Rivière L’Acadie Water Aerodrome", + "latitude_deg": "45.4736", + "longitude_deg": "-73.2948", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Carignan", + "scheduled_service": "no", + "gps_code": "CJF2", + "local_code": "CJF2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carignan/Riv%C3%A8re_l%27Acadie_Water_Aerodrome" + }, + { + "id": "1069", + "ident": "CJF3", + "type": "small_airport", + "name": "Île-à-la-Crosse Airport", + "latitude_deg": "55.48970031738281", + "longitude_deg": "-107.93000030517578", + "elevation_ft": "1394", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Île-à-la-Crosse", + "scheduled_service": "no", + "gps_code": "CJF3", + "local_code": "CJF3", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%8Ele-%C3%A0-la-Crosse_Airport", + "keywords": "JF3" + }, + { + "id": "335886", + "ident": "CJF4", + "type": "small_airport", + "name": "Jaques Farms Airport", + "latitude_deg": "50.860523", + "longitude_deg": "-110.651743", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Buffalo", + "scheduled_service": "no", + "gps_code": "CJF4", + "local_code": "CJF4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buffalo_(Jaques_Farms)_Aerodrome" + }, + { + "id": "1070", + "ident": "CJF5", + "type": "closed", + "name": "West Poplar Airport", + "latitude_deg": "49.003101", + "longitude_deg": "-106.387001", + "elevation_ft": "2885", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "West Poplar", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/West_Poplar_Airport", + "keywords": "JF5, CJF5" + }, + { + "id": "28160", + "ident": "CJF6", + "type": "seaplane_base", + "name": "Armstrong Seaplane Base", + "latitude_deg": "50.25", + "longitude_deg": "-89.05000305175781", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CJF6", + "local_code": "CJF6" + }, + { + "id": "1071", + "ident": "CJF8", + "type": "small_airport", + "name": "Biggar Airport", + "latitude_deg": "52.05110168457031", + "longitude_deg": "-107.98799896240234", + "elevation_ft": "2130", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Biggar", + "scheduled_service": "no", + "gps_code": "CJF8", + "local_code": "CJF8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Biggar_Airport", + "keywords": "JF8" + }, + { + "id": "1072", + "ident": "CJG2", + "type": "small_airport", + "name": "Eatonia (Elvie Smith) Municipal Airport", + "latitude_deg": "51.21889877319336", + "longitude_deg": "-109.39299774169922", + "elevation_ft": "2365", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Eatonia", + "scheduled_service": "no", + "gps_code": "CJG2", + "local_code": "CJG2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eatonia_(Elvie_Smith)_Municipal_Airport", + "keywords": "JG2" + }, + { + "id": "1073", + "ident": "CJG6", + "type": "heliport", + "name": "Kenora (Lake of the Woods District Hospital) Heliport", + "latitude_deg": "49.76860046386719", + "longitude_deg": "-94.4989013671875", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kenora", + "scheduled_service": "no", + "gps_code": "CJG6", + "local_code": "CJG6", + "keywords": "JG6" + }, + { + "id": "1074", + "ident": "CJH2", + "type": "small_airport", + "name": "Gilbert Plains Airport", + "latitude_deg": "51.13330078125", + "longitude_deg": "-100.5", + "elevation_ft": "1310", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Gilbert Plains", + "scheduled_service": "no", + "gps_code": "CJH2", + "local_code": "CJH2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gilbert_Plains_Airport", + "keywords": "JH2" + }, + { + "id": "1075", + "ident": "CJH3", + "type": "small_airport", + "name": "Maidstone Airport", + "latitude_deg": "53.097922", + "longitude_deg": "-109.328815", + "elevation_ft": "1975", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Maidstone", + "scheduled_service": "no", + "gps_code": "CJH3", + "local_code": "CJH3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maidstone_Airport", + "keywords": "JH3" + }, + { + "id": "1076", + "ident": "CJH4", + "type": "small_airport", + "name": "Ferland Airport", + "latitude_deg": "49.44499969482422", + "longitude_deg": "-106.93199920654297", + "elevation_ft": "2550", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Ferland", + "scheduled_service": "no", + "gps_code": "CJH4", + "local_code": "CJH4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ferland_Airport", + "keywords": "JH4" + }, + { + "id": "28163", + "ident": "CJH6", + "type": "seaplane_base", + "name": "Atikokan Seaplane Base", + "latitude_deg": "48.766701", + "longitude_deg": "-91.666702", + "elevation_ft": "1296", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Atikokan", + "scheduled_service": "no", + "gps_code": "CJH6", + "local_code": "CJH6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atikokan_Water_Aerodrome", + "keywords": "JH6" + }, + { + "id": "1077", + "ident": "CJH7", + "type": "closed", + "name": "Beechy Airport", + "latitude_deg": "50.837031367399995", + "longitude_deg": "-107.367753983", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Beechy", + "scheduled_service": "no", + "gps_code": "CJH7", + "local_code": "CJH7", + "keywords": "JH7" + }, + { + "id": "1078", + "ident": "CJH8", + "type": "small_airport", + "name": "Leask Airport", + "latitude_deg": "53.016700744628906", + "longitude_deg": "-106.75", + "elevation_ft": "1715", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Leask", + "scheduled_service": "no", + "gps_code": "CJH8", + "local_code": "CJH8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leask_Airport", + "keywords": "JH8" + }, + { + "id": "16715", + "ident": "CJJ", + "type": "small_airport", + "name": "Ellen Church Field", + "latitude_deg": "43.3652992249", + "longitude_deg": "-92.133102417", + "elevation_ft": "1279", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Cresco", + "scheduled_service": "no", + "gps_code": "KCJJ", + "local_code": "CJJ" + }, + { + "id": "1079", + "ident": "CJJ2", + "type": "small_airport", + "name": "Glenboro Airport", + "latitude_deg": "49.54999923706055", + "longitude_deg": "-99.33329772949219", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Glenboro", + "scheduled_service": "no", + "gps_code": "CJJ2", + "local_code": "CJJ2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Glenboro_Airport", + "keywords": "JJ2" + }, + { + "id": "299263", + "ident": "cjj3", + "type": "small_airport", + "name": "Wildwood / Loche Mist Farms Airstrip", + "latitude_deg": "53.546531", + "longitude_deg": "-115.260657", + "elevation_ft": "2880", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Wildwood", + "scheduled_service": "no", + "gps_code": "CJJ3", + "local_code": "CJJ3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wildwood/Loche_Mist_Farms_Aerodrome" + }, + { + "id": "1080", + "ident": "CJJ4", + "type": "small_airport", + "name": "Deloraine Airport", + "latitude_deg": "49.15060043334961", + "longitude_deg": "-100.5009994506836", + "elevation_ft": "1680", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Deloraine", + "scheduled_service": "no", + "gps_code": "CJJ4", + "local_code": "CJJ4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Deloraine_Airport", + "keywords": "JJ4" + }, + { + "id": "1081", + "ident": "CJJ5", + "type": "small_airport", + "name": "Cabri Airport", + "latitude_deg": "50.61940002441406", + "longitude_deg": "-108.46600341796875", + "elevation_ft": "2175", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Cabri", + "scheduled_service": "no", + "gps_code": "CJJ5", + "local_code": "CJJ5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cabri_Airport", + "keywords": "JJ5" + }, + { + "id": "28192", + "ident": "CJJ7", + "type": "seaplane_base", + "name": "Churchill Seaplane Base", + "latitude_deg": "58.700004", + "longitude_deg": "-94.050004", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Churchill", + "scheduled_service": "no", + "gps_code": "CJJ7", + "local_code": "CJJ7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Churchill_Water_Aerodrome", + "keywords": "JJ7" + }, + { + "id": "1082", + "ident": "CJJ8", + "type": "small_airport", + "name": "Macklin Airport", + "latitude_deg": "52.34280014038086", + "longitude_deg": "-109.91899871826172", + "elevation_ft": "2280", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Macklin", + "scheduled_service": "no", + "gps_code": "CJJ8", + "local_code": "CJJ8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Macklin_Airport", + "keywords": "JJ8" + }, + { + "id": "1083", + "ident": "CJK2", + "type": "small_airport", + "name": "Gunisao Lake Airport", + "latitude_deg": "53.52000045776367", + "longitude_deg": "-96.37110137939453", + "elevation_ft": "886", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Gunisao Lake", + "scheduled_service": "no", + "gps_code": "CJK2", + "local_code": "CJK2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gunisao_Lake_Airport", + "keywords": "JK2" + }, + { + "id": "1084", + "ident": "CJK3", + "type": "small_airport", + "name": "Beauval Airport", + "latitude_deg": "55.11029815673828", + "longitude_deg": "-107.71600341796875", + "elevation_ft": "1436", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Beauval", + "scheduled_service": "no", + "gps_code": "CJK3", + "local_code": "CJK3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beauval_Airport", + "keywords": "JK3" + }, + { + "id": "1085", + "ident": "CJK4", + "type": "small_airport", + "name": "Esterhazy Airport", + "latitude_deg": "50.642799377441406", + "longitude_deg": "-102.0999984741211", + "elevation_ft": "1700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Esterhazy", + "scheduled_service": "no", + "gps_code": "CJK4", + "local_code": "CJK4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Esterhazy_Airport", + "keywords": "JK4" + }, + { + "id": "1086", + "ident": "CJK5", + "type": "small_airport", + "name": "Gull Lake Airport", + "latitude_deg": "50.05780029296875", + "longitude_deg": "-108.48999786376953", + "elevation_ft": "2665", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Gull Lake", + "scheduled_service": "no", + "gps_code": "CJK5", + "local_code": "CJK5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gull_Lake_Airport", + "keywords": "JK5" + }, + { + "id": "28166", + "ident": "CJK6", + "type": "seaplane_base", + "name": "Baker Lake Seaplane Base", + "latitude_deg": "64.316704", + "longitude_deg": "-96.016701", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Baker Lake", + "scheduled_service": "no", + "gps_code": "CJK6", + "local_code": "CJK6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baker_Lake_Water_Aerodrome", + "keywords": "JK6" + }, + { + "id": "28221", + "ident": "CJK8", + "type": "seaplane_base", + "name": "Flin Flon/Channing Seaplane Base", + "latitude_deg": "54.746415", + "longitude_deg": "-101.828", + "elevation_ft": "957", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Flin Flon", + "scheduled_service": "no", + "gps_code": "CJK8", + "local_code": "CJK8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Flin_Flon/Channing_Water_Aerodrome", + "keywords": "JK8" + }, + { + "id": "1087", + "ident": "CJK9", + "type": "small_airport", + "name": "Preeceville Airport", + "latitude_deg": "51.95000076293945", + "longitude_deg": "-102.6500015258789", + "elevation_ft": "1750", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Preeceville", + "scheduled_service": "no", + "gps_code": "CJK9", + "local_code": "CJK9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Preeceville_Airport", + "keywords": "JK9" + }, + { + "id": "1088", + "ident": "CJL2", + "type": "small_airport", + "name": "Hatchet Lake Airport", + "latitude_deg": "58.662498474121", + "longitude_deg": "-103.53800201416", + "elevation_ft": "1362", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Hatchet Lake", + "scheduled_service": "no", + "gps_code": "CJL2", + "iata_code": "YDJ", + "local_code": "CJL2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hatchet_Lake_Airport", + "keywords": "JL2" + }, + { + "id": "1089", + "ident": "CJL4", + "type": "small_airport", + "name": "La Loche Airport", + "latitude_deg": "56.47330093383789", + "longitude_deg": "-109.40399932861328", + "elevation_ft": "1501", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "La Loche", + "scheduled_service": "no", + "gps_code": "CJL4", + "local_code": "CJL4", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Loche_Airport", + "keywords": "JL4" + }, + { + "id": "1090", + "ident": "CJL5", + "type": "small_airport", + "name": "Winnipeg / Lyncrest Airport", + "latitude_deg": "49.852501", + "longitude_deg": "-96.973602", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Winnipeg", + "scheduled_service": "no", + "gps_code": "CJL5", + "local_code": "CJL5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Winnipeg/Lyncrest_Airport", + "keywords": "JL5" + }, + { + "id": "1091", + "ident": "CJL6", + "type": "small_airport", + "name": "Altona Municipal Airport", + "latitude_deg": "49.093069", + "longitude_deg": "-97.52926", + "elevation_ft": "806", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Altona", + "scheduled_service": "no", + "gps_code": "CJL6", + "local_code": "CJL6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Altona_Municipal_Airport", + "keywords": "JL6" + }, + { + "id": "28201", + "ident": "CJL7", + "type": "seaplane_base", + "name": "Confederation Lake Seaplane Base", + "latitude_deg": "51.04999923706055", + "longitude_deg": "-92.83329772949219", + "elevation_ft": "1323", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CJL7", + "local_code": "CJL7" + }, + { + "id": "1092", + "ident": "CJL8", + "type": "small_airport", + "name": "Kasba Lake Airport", + "latitude_deg": "60.291900634766", + "longitude_deg": "-102.50199890137", + "elevation_ft": "1131", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Kasba Lake", + "scheduled_service": "no", + "gps_code": "CJL8", + "iata_code": "YDU", + "local_code": "CJL8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kasba_Lake_Airport", + "keywords": "JL8" + }, + { + "id": "1093", + "ident": "CJL9", + "type": "small_airport", + "name": "Radisson Airport", + "latitude_deg": "52.46310043334961", + "longitude_deg": "-107.37699890136719", + "elevation_ft": "1675", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Radisson", + "scheduled_service": "no", + "gps_code": "CJL9", + "local_code": "CJL9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Radisson_Airport", + "keywords": "JL9" + }, + { + "id": "1094", + "ident": "CJM2", + "type": "small_airport", + "name": "Ituna Airport", + "latitude_deg": "51.14609909057617", + "longitude_deg": "-103.4260025024414", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Ituna", + "scheduled_service": "no", + "gps_code": "CJM2", + "local_code": "CJM2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ituna_Airport", + "keywords": "JM2" + }, + { + "id": "1095", + "ident": "CJM4", + "type": "small_airport", + "name": "Gravelbourg Airport", + "latitude_deg": "49.866207122802734", + "longitude_deg": "-106.57107543945312", + "elevation_ft": "2296", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Gravelbourg", + "scheduled_service": "no", + "gps_code": "CJM4", + "local_code": "CJM4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gravelbourg_Airport", + "keywords": "JM4" + }, + { + "id": "1096", + "ident": "CJM5", + "type": "small_airport", + "name": "Frontier Airport", + "latitude_deg": "49.172523", + "longitude_deg": "-108.574636", + "elevation_ft": "2960", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Frontier", + "scheduled_service": "no", + "gps_code": "CJM5", + "local_code": "CJM5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Frontier_Airport", + "keywords": "JM5" + }, + { + "id": "1097", + "ident": "CJM6", + "type": "small_airport", + "name": "Arborfield Airport", + "latitude_deg": "53.1077995300293", + "longitude_deg": "-103.6510009765625", + "elevation_ft": "1183", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Arborfield", + "scheduled_service": "no", + "gps_code": "CJM6", + "local_code": "CJM6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arborfield_Airport", + "keywords": "JM6" + }, + { + "id": "28223", + "ident": "CJM8", + "type": "seaplane_base", + "name": "Fort Frances Seaplane Base", + "latitude_deg": "48.6278", + "longitude_deg": "-93.357801", + "elevation_ft": "1107", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Fort Frances", + "scheduled_service": "no", + "gps_code": "CJM8", + "local_code": "CJM8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Frances_Water_Aerodrome", + "keywords": "JM8" + }, + { + "id": "28272", + "ident": "CJM9", + "type": "seaplane_base", + "name": "Kenora Seaplane Base", + "latitude_deg": "49.767424", + "longitude_deg": "-94.49274", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CJM9", + "local_code": "CJM9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kenora_Water_Aerodrome", + "keywords": "JM9" + }, + { + "id": "1098", + "ident": "CJN2", + "type": "small_airport", + "name": "Kamsack Airport", + "latitude_deg": "51.55970001220703", + "longitude_deg": "-101.87899780273438", + "elevation_ft": "1510", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Kamsack", + "scheduled_service": "no", + "gps_code": "CJN2", + "local_code": "CJN2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kamsak_Airport", + "keywords": "JN2" + }, + { + "id": "1099", + "ident": "CJN3", + "type": "heliport", + "name": "Ignace Heliport", + "latitude_deg": "49.40639877319336", + "longitude_deg": "-91.63469696044922", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ignace", + "scheduled_service": "no", + "gps_code": "CJN3", + "local_code": "CJN3", + "keywords": "JN3" + }, + { + "id": "1100", + "ident": "CJN4", + "type": "small_airport", + "name": "Assiniboia Airport", + "latitude_deg": "49.73469924926758", + "longitude_deg": "-105.9469985961914", + "elevation_ft": "2370", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Assiniboia", + "scheduled_service": "no", + "gps_code": "CJN4", + "local_code": "CJN4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Assiniboia_Airport", + "keywords": "JN4" + }, + { + "id": "1101", + "ident": "CJN5", + "type": "small_airport", + "name": "Corman Air Park", + "latitude_deg": "52.0005989074707", + "longitude_deg": "-106.46299743652344", + "elevation_ft": "1690", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Saskatoon", + "scheduled_service": "no", + "gps_code": "CJN5", + "local_code": "CJN5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saskatoon/Corman_Air_Park", + "keywords": "JN5" + }, + { + "id": "1102", + "ident": "CJN7", + "type": "small_airport", + "name": "Little Churchill River / Dunlop's Fly-In Lodge Airport", + "latitude_deg": "56.5800018311", + "longitude_deg": "-96.24749755859999", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Little Churchill River", + "scheduled_service": "no", + "gps_code": "CJN7", + "local_code": "CJN7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Little_Churchill_River_Airport", + "keywords": "JN7" + }, + { + "id": "28228", + "ident": "CJN8", + "type": "seaplane_base", + "name": "Fort Reliance Seaplane Base", + "latitude_deg": "62.7", + "longitude_deg": "-109.167", + "elevation_ft": "514", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Fort Reliance", + "scheduled_service": "no", + "gps_code": "CJN8", + "iata_code": "YFL", + "local_code": "CJN8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Reliance_Water_Aerodrome" + }, + { + "id": "1103", + "ident": "CJP2", + "type": "small_airport", + "name": "Kerrobert Airport", + "latitude_deg": "51.92689895629883", + "longitude_deg": "-109.12899780273438", + "elevation_ft": "2208", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Kerrobert", + "scheduled_service": "no", + "gps_code": "CJP2", + "local_code": "CJP2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kerrobert_Airport", + "keywords": "JP2" + }, + { + "id": "28410", + "ident": "CJP3", + "type": "seaplane_base", + "name": "Savant Lake (Sturgeon Lake) Seaplane Base", + "latitude_deg": "50.20000076293945", + "longitude_deg": "-90.68329620361328", + "elevation_ft": "1342", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CJP3", + "local_code": "CJP3" + }, + { + "id": "28269", + "ident": "CJP5", + "type": "seaplane_base", + "name": "Kasba Lake Seaplane Base", + "latitude_deg": "60.28329849243164", + "longitude_deg": "-102.51699829101562", + "elevation_ft": "1089", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no", + "gps_code": "CJP5", + "local_code": "CJP5" + }, + { + "id": "1104", + "ident": "CJP6", + "type": "small_airport", + "name": "Camsell Portage Airport", + "latitude_deg": "59.61000061035156", + "longitude_deg": "-109.26699829101562", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Camsell Portage", + "scheduled_service": "no", + "gps_code": "CJP6", + "local_code": "CJP6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camsell_Portage_Airport", + "keywords": "JP6" + }, + { + "id": "1105", + "ident": "CJP7", + "type": "small_airport", + "name": "Bird River (Lac Du Bonnet) Airport", + "latitude_deg": "50.39670181274414", + "longitude_deg": "-95.73500061035156", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Bird River", + "scheduled_service": "no", + "gps_code": "CJP7", + "local_code": "CJP7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bird_River_(Lac_du_Bonnet)_Airport", + "keywords": "JP7" + }, + { + "id": "28239", + "ident": "CJP8", + "type": "seaplane_base", + "name": "Gillam Seaplane Base", + "latitude_deg": "56.354401", + "longitude_deg": "-94.656403", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "gps_code": "CJP8", + "local_code": "CJP8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gillam_Water_Aerodrome", + "keywords": "JP8" + }, + { + "id": "1106", + "ident": "CJP9", + "type": "small_airport", + "name": "Charlot River Airport", + "latitude_deg": "59.60169982910156", + "longitude_deg": "-109.13700103759766", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Charlot River", + "scheduled_service": "no", + "gps_code": "CJP9", + "local_code": "CJP9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Charlot_River_Airport", + "keywords": "JP9" + }, + { + "id": "1107", + "ident": "CJQ2", + "type": "small_airport", + "name": "Lampman Airport", + "latitude_deg": "49.36669921875", + "longitude_deg": "-102.76699829101562", + "elevation_ft": "1950", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Lampman", + "scheduled_service": "no", + "gps_code": "CJQ2", + "local_code": "CJQ2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lampman_Airport", + "keywords": "JQ2" + }, + { + "id": "1108", + "ident": "CJQ3", + "type": "small_airport", + "name": "Carlyle Airport", + "latitude_deg": "49.64440155029297", + "longitude_deg": "-102.28700256347656", + "elevation_ft": "2074", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Carlyle", + "scheduled_service": "no", + "gps_code": "CJQ3", + "local_code": "CJQ3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carlyle_Airport", + "keywords": "JQ3" + }, + { + "id": "1109", + "ident": "CJQ4", + "type": "small_airport", + "name": "Maple Creek Airport", + "latitude_deg": "49.89580154418945", + "longitude_deg": "-109.4749984741211", + "elevation_ft": "2517", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Maple Creek", + "scheduled_service": "no", + "gps_code": "CJQ4", + "local_code": "CJQ4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maple_Creek_Airport", + "keywords": "JQ4" + }, + { + "id": "1110", + "ident": "CJQ5", + "type": "closed", + "name": "Arnes Airport", + "latitude_deg": "50.836103", + "longitude_deg": "-96.957199", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Arnes", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arnes_Airport", + "keywords": "YNR, JQ5, CJQ5" + }, + { + "id": "1111", + "ident": "CJQ6", + "type": "small_airport", + "name": "Tanquary Fiord Airport", + "latitude_deg": "81.409422", + "longitude_deg": "-76.867901", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Tanquary Fiord", + "scheduled_service": "no", + "gps_code": "CJQ6", + "local_code": "CJQ6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tanquary_Fiord_Airport", + "keywords": "JQ6" + }, + { + "id": "331223", + "ident": "CJQ8", + "type": "small_airport", + "name": "Maryfield Aerodrome", + "latitude_deg": "49.846387", + "longitude_deg": "-101.514167", + "elevation_ft": "1885", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Maryfield", + "scheduled_service": "no", + "gps_code": "CJQ8", + "local_code": "CJQ8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maryfield_Aerodrome" + }, + { + "id": "1112", + "ident": "CJQ9", + "type": "small_airport", + "name": "Big Sand Lake Airport", + "latitude_deg": "57.61940002441406", + "longitude_deg": "-99.87529754638672", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Big Sand Lake", + "scheduled_service": "no", + "gps_code": "CJQ9", + "local_code": "CJQ9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Big_Sand_Lake_Airport", + "keywords": "JQ9" + }, + { + "id": "1113", + "ident": "CJR2", + "type": "small_airport", + "name": "Luseland Airport", + "latitude_deg": "52.06999969482422", + "longitude_deg": "-109.3740005493164", + "elevation_ft": "2300", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Luseland", + "scheduled_service": "no", + "gps_code": "CJR2", + "local_code": "CJR2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Luseland_Airport", + "keywords": "JR2" + }, + { + "id": "1114", + "ident": "CJR3", + "type": "small_airport", + "name": "The Pas / Grace Lake Airport", + "latitude_deg": "53.8264007568", + "longitude_deg": "-101.205001831", + "elevation_ft": "873", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "The Pas", + "scheduled_service": "no", + "gps_code": "CJR3", + "local_code": "CJR3", + "wikipedia_link": "https://en.wikipedia.org/wiki/The_Pas/Grace_Lake_Airport", + "keywords": "JR3" + }, + { + "id": "1115", + "ident": "CJR4", + "type": "small_airport", + "name": "Eston Airport", + "latitude_deg": "51.14419937133789", + "longitude_deg": "-108.76300048828125", + "elevation_ft": "2225", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Eston", + "scheduled_service": "no", + "gps_code": "CJR4", + "local_code": "CJR4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eston_Airport", + "keywords": "JR4" + }, + { + "id": "1116", + "ident": "CJR5", + "type": "small_airport", + "name": "Gladstone Airport", + "latitude_deg": "50.16360092163086", + "longitude_deg": "-98.94249725341797", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Gladstone", + "scheduled_service": "no", + "gps_code": "CJR5", + "local_code": "CJR5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gladstone_Airport", + "keywords": "JR5" + }, + { + "id": "1117", + "ident": "CJR7", + "type": "small_airport", + "name": "Canora Airport", + "latitude_deg": "51.62889862060547", + "longitude_deg": "-102.44999694824219", + "elevation_ft": "1603", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Canora", + "scheduled_service": "no", + "gps_code": "CJR7", + "local_code": "CJR7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Canora_Airport", + "keywords": "JR7" + }, + { + "id": "1118", + "ident": "CJR8", + "type": "small_airport", + "name": "Mccreary Airport", + "latitude_deg": "50.76470184326172", + "longitude_deg": "-99.49669647216797", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Mccreary", + "scheduled_service": "no", + "gps_code": "CJR8", + "local_code": "CJR8", + "wikipedia_link": "https://en.wikipedia.org/wiki/McCreary_Airport", + "keywords": "JR8" + }, + { + "id": "1119", + "ident": "CJR9", + "type": "small_airport", + "name": "Naicam Airport", + "latitude_deg": "52.411399841308594", + "longitude_deg": "-104.48400115966797", + "elevation_ft": "1780", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Naicam", + "scheduled_service": "no", + "gps_code": "CJR9", + "local_code": "CJR9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naicam_Airport", + "keywords": "JR9" + }, + { + "id": "1120", + "ident": "CJS2", + "type": "small_airport", + "name": "Malcolm Island Airport", + "latitude_deg": "56.94940185546875", + "longitude_deg": "-102.23899841308594", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Malcolm Island", + "scheduled_service": "no", + "gps_code": "CJS2", + "local_code": "CJS2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Malcolm_Island_Airport", + "keywords": "JS2" + }, + { + "id": "1121", + "ident": "CJS3", + "type": "small_airport", + "name": "Cluff Lake Airport", + "latitude_deg": "58.3911018372", + "longitude_deg": "-109.51599884", + "elevation_ft": "1112", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Cluff Lake", + "scheduled_service": "no", + "gps_code": "CJS3", + "iata_code": "XCL", + "local_code": "CJS3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cluff_Lake_Airport", + "keywords": "JS3" + }, + { + "id": "1122", + "ident": "CJS4", + "type": "small_airport", + "name": "Moose Jaw Municipal Airport", + "latitude_deg": "50.43466", + "longitude_deg": "-105.387744", + "elevation_ft": "1896", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Moose Jaw", + "scheduled_service": "no", + "gps_code": "CJS4", + "local_code": "CJS4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moose_Jaw_Municipal_Airport", + "keywords": "JS4" + }, + { + "id": "1123", + "ident": "CJS5", + "type": "small_airport", + "name": "Killarney Municipal Airport", + "latitude_deg": "49.15169906616211", + "longitude_deg": "-99.69029998779297", + "elevation_ft": "1680", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Killarney", + "scheduled_service": "no", + "gps_code": "CJS5", + "local_code": "CJS5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Killarney_Municipal_Airport", + "keywords": "JS5" + }, + { + "id": "28178", + "ident": "CJS6", + "type": "seaplane_base", + "name": "Big Hook Wilderness Camp Seaplane Base", + "latitude_deg": "53.56669998168945", + "longitude_deg": "-92.94999694824219", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CJS6", + "local_code": "CJS6" + }, + { + "id": "1124", + "ident": "CJS7", + "type": "small_airport", + "name": "Carman (South) Airport", + "latitude_deg": "49.48030090332031", + "longitude_deg": "-98.01499938964844", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Carman", + "scheduled_service": "no", + "gps_code": "CJS7", + "local_code": "CJS7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carman_(South)_Airport", + "keywords": "JS7" + }, + { + "id": "28240", + "ident": "CJS8", + "type": "seaplane_base", + "name": "Gods Lake Narrows Seaplane Base", + "latitude_deg": "54.54999923706055", + "longitude_deg": "-94.4666976928711", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "gps_code": "CJS8", + "local_code": "CJS8" + }, + { + "id": "28282", + "ident": "CJS9", + "type": "seaplane_base", + "name": "Lac Du Bonnet (North) Seaplane Base", + "latitude_deg": "50.28329849243164", + "longitude_deg": "-96", + "elevation_ft": "836", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "gps_code": "CJS9", + "local_code": "CJS9" + }, + { + "id": "1125", + "ident": "CJT2", + "type": "small_airport", + "name": "Matheson Island Airport", + "latitude_deg": "51.732200622558594", + "longitude_deg": "-96.93440246582031", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Matheson Island", + "scheduled_service": "no", + "gps_code": "CJT2", + "local_code": "CJT2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Matheson_Island_Airport", + "keywords": "JT2" + }, + { + "id": "1126", + "ident": "CJT3", + "type": "small_airport", + "name": "Knee Lake Airport", + "latitude_deg": "54.915298", + "longitude_deg": "-94.798103", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Knee Lake", + "scheduled_service": "no", + "gps_code": "CJT3", + "iata_code": "YKE", + "local_code": "CJT3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Knee_Lake_Airport", + "keywords": "JT3" + }, + { + "id": "1127", + "ident": "CJT4", + "type": "small_airport", + "name": "Cumberland House Airport", + "latitude_deg": "53.95610046386719", + "longitude_deg": "-102.2979965209961", + "elevation_ft": "877", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Cumberland House", + "scheduled_service": "no", + "gps_code": "CJT4", + "local_code": "CJT4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cumberland_House_Airport", + "keywords": "JT4" + }, + { + "id": "1128", + "ident": "CJT5", + "type": "small_airport", + "name": "Melita Airport", + "latitude_deg": "49.26169967651367", + "longitude_deg": "-101.01399993896484", + "elevation_ft": "1475", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Melita", + "scheduled_service": "no", + "gps_code": "CJT5", + "local_code": "CJT5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Melita_Airport", + "keywords": "JT5" + }, + { + "id": "28205", + "ident": "CJT7", + "type": "seaplane_base", + "name": "Cushing Lake Seaplane Base", + "latitude_deg": "48.94419860839844", + "longitude_deg": "-90.50859832763672", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CJT7", + "local_code": "CJT7" + }, + { + "id": "1129", + "ident": "CJT8", + "type": "small_airport", + "name": "Homewood Airport", + "latitude_deg": "49.50920104980469", + "longitude_deg": "-97.85060119628906", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Homewood", + "scheduled_service": "no", + "gps_code": "CJT8", + "local_code": "CJT8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Homewood_Airport", + "keywords": "JT8" + }, + { + "id": "1130", + "ident": "CJT9", + "type": "small_airport", + "name": "Leoville Airport", + "latitude_deg": "53.620601654052734", + "longitude_deg": "-107.60900115966797", + "elevation_ft": "1960", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Leoville", + "scheduled_service": "no", + "gps_code": "CJT9", + "local_code": "CJT9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leoville_Airport", + "keywords": "JT9" + }, + { + "id": "1131", + "ident": "CJU3", + "type": "small_airport", + "name": "Macdonald Airport", + "latitude_deg": "50.09640121459961", + "longitude_deg": "-98.50080108642578", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Macdonald", + "scheduled_service": "no", + "gps_code": "CJU3", + "local_code": "CJU3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Macdonald_Airport", + "keywords": "JU3" + }, + { + "id": "1132", + "ident": "CJU4", + "type": "small_airport", + "name": "Humboldt Airport", + "latitude_deg": "52.17610168457031", + "longitude_deg": "-105.12699890136719", + "elevation_ft": "1865", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Humboldt", + "scheduled_service": "no", + "gps_code": "CJU4", + "local_code": "CJU4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Humboldt_Airport", + "keywords": "JU4" + }, + { + "id": "1133", + "ident": "CJU5", + "type": "small_airport", + "name": "Minnedosa Airport", + "latitude_deg": "50.27190017700195", + "longitude_deg": "-99.76309967041016", + "elevation_ft": "1840", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Minnedosa", + "scheduled_service": "no", + "gps_code": "CJU5", + "local_code": "CJU5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Minnedosa_Airport", + "keywords": "JU5" + }, + { + "id": "1134", + "ident": "CJU6", + "type": "small_airport", + "name": "Arborg Airport", + "latitude_deg": "50.91279983520508", + "longitude_deg": "-97.30439758300781", + "elevation_ft": "765", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Arborg", + "scheduled_service": "no", + "gps_code": "CJU6", + "local_code": "CJU6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arborg_Airport", + "keywords": "JU6" + }, + { + "id": "1135", + "ident": "CJU7", + "type": "small_airport", + "name": "Edam Airport", + "latitude_deg": "53.185001373291016", + "longitude_deg": "-108.78900146484375", + "elevation_ft": "1790", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Edam", + "scheduled_service": "no", + "gps_code": "CJU7", + "local_code": "CJU7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Edam_Airport", + "keywords": "JU7" + }, + { + "id": "28286", + "ident": "CJU9", + "type": "seaplane_base", + "name": "Lac La Croix Seaplane Base", + "latitude_deg": "48.349998474121094", + "longitude_deg": "-92.19999694824219", + "elevation_ft": "1184", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CJU9", + "local_code": "CJU9" + }, + { + "id": "1136", + "ident": "CJV2", + "type": "small_airport", + "name": "Neilburg Airport", + "latitude_deg": "52.83140182495117", + "longitude_deg": "-109.63999938964844", + "elevation_ft": "2222", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Neilburg", + "scheduled_service": "no", + "gps_code": "CJV2", + "local_code": "CJV2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Neilburg_Airport", + "keywords": "JV2" + }, + { + "id": "1137", + "ident": "CJV4", + "type": "small_airport", + "name": "Otter Lake Airport", + "latitude_deg": "55.5811004639", + "longitude_deg": "-104.785003662", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Otter Lake", + "scheduled_service": "no", + "gps_code": "CJV4", + "local_code": "CJV4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Otter_Lake_Airport", + "keywords": "JV4" + }, + { + "id": "1138", + "ident": "CJV5", + "type": "small_airport", + "name": "Neepawa Airport", + "latitude_deg": "50.2327995300293", + "longitude_deg": "-99.5105972290039", + "elevation_ft": "1277", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Neepawa", + "scheduled_service": "no", + "gps_code": "CJV5", + "local_code": "CJV5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Neepawa_Airport", + "keywords": "JV5" + }, + { + "id": "1139", + "ident": "CJV7", + "type": "small_airport", + "name": "Summer Beaver Airport", + "latitude_deg": "52.70859909057617", + "longitude_deg": "-88.54190063476562", + "elevation_ft": "832", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Summer Beaver", + "scheduled_service": "yes", + "gps_code": "CJV7", + "iata_code": "SUR", + "local_code": "CJV7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Summer_Beaver_Airport", + "keywords": "JV7" + }, + { + "id": "1140", + "ident": "CJV8", + "type": "small_airport", + "name": "Grand Rapids Airport", + "latitude_deg": "53.17250061035156", + "longitude_deg": "-99.3230972290039", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Grand Rapids", + "scheduled_service": "no", + "gps_code": "CJV8", + "local_code": "CJV8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Rapids_Airport", + "keywords": "JV8" + }, + { + "id": "1141", + "ident": "CJV9", + "type": "small_airport", + "name": "Melville Municipal Airport", + "latitude_deg": "50.94139862060547", + "longitude_deg": "-102.73799896240234", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Melville", + "scheduled_service": "no", + "gps_code": "CJV9", + "local_code": "CJV9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Melville_Municipal_Airport", + "keywords": "JV9" + }, + { + "id": "1142", + "ident": "CJW2", + "type": "small_airport", + "name": "Oxbow Airport", + "latitude_deg": "49.233299255371094", + "longitude_deg": "-102.1500015258789", + "elevation_ft": "1850", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Oxbow", + "scheduled_service": "no", + "gps_code": "CJW2", + "local_code": "CJW2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oxbow_Airport", + "keywords": "JW2" + }, + { + "id": "1143", + "ident": "CJW3", + "type": "small_airport", + "name": "Loon Lake Airport", + "latitude_deg": "54.0182991027832", + "longitude_deg": "-109.13500213623047", + "elevation_ft": "1790", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Loon Lake", + "scheduled_service": "no", + "gps_code": "CJW3", + "local_code": "CJW3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Loon_Lake_Airport", + "keywords": "JW3" + }, + { + "id": "1144", + "ident": "CJW4", + "type": "small_airport", + "name": "Pelican Narrows Airport", + "latitude_deg": "55.28689956665039", + "longitude_deg": "-102.75", + "elevation_ft": "1242", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Pelican Narrows", + "scheduled_service": "no", + "gps_code": "CJW4", + "local_code": "CJW4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pelican_Narrows_Airport", + "keywords": "JW4" + }, + { + "id": "1145", + "ident": "CJW5", + "type": "small_airport", + "name": "Russell Airport", + "latitude_deg": "50.7658", + "longitude_deg": "-101.294998", + "elevation_ft": "1825", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Russell", + "scheduled_service": "no", + "gps_code": "CJW5", + "local_code": "CJW5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Russell_Airport", + "keywords": "JW5" + }, + { + "id": "1146", + "ident": "CJW7", + "type": "small_airport", + "name": "Cigar Lake Airport", + "latitude_deg": "58.0531005859375", + "longitude_deg": "-104.48400115966797", + "elevation_ft": "1562", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Cigar Lake", + "scheduled_service": "no", + "gps_code": "CJW7", + "local_code": "CJW7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cigar_Lake_Airport", + "keywords": "JW7" + }, + { + "id": "28248", + "ident": "CJW8", + "type": "seaplane_base", + "name": "Gunisao Lake Seaplane Base", + "latitude_deg": "53.516700744628906", + "longitude_deg": "-96.36669921875", + "elevation_ft": "866", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "gps_code": "CJW8", + "local_code": "CJW8" + }, + { + "id": "16716", + "ident": "CJX", + "type": "small_airport", + "name": "Crooked Creek Airport", + "latitude_deg": "61.8679008484", + "longitude_deg": "-158.134994507", + "elevation_ft": "178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Crooked Creek", + "scheduled_service": "no", + "gps_code": "CJX", + "iata_code": "CKD", + "local_code": "CJX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Crooked_Creek_Airport" + }, + { + "id": "1147", + "ident": "CJX3", + "type": "heliport", + "name": "La Ronge Heliport", + "latitude_deg": "55.11470031738281", + "longitude_deg": "-105.29499816894531", + "elevation_ft": "1225", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "La Ronge", + "scheduled_service": "no", + "gps_code": "CJX3", + "local_code": "CJX3", + "keywords": "JX3" + }, + { + "id": "1148", + "ident": "CJX4", + "type": "small_airport", + "name": "Rosetown Airport", + "latitude_deg": "51.56439971923828", + "longitude_deg": "-107.91799926757812", + "elevation_ft": "1920", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Rosetown", + "scheduled_service": "no", + "gps_code": "CJX4", + "local_code": "CJX4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rosetown_Airport", + "keywords": "JX4" + }, + { + "id": "1149", + "ident": "CJX5", + "type": "small_airport", + "name": "Souris Glenwood Industrial Air Park", + "latitude_deg": "49.63330078125", + "longitude_deg": "-100.19999694824219", + "elevation_ft": "1480", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Souris Glenwood", + "scheduled_service": "no", + "gps_code": "CJX5", + "local_code": "CJX5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Souris_Glenwood_Industrial_Air_Park", + "keywords": "JX5" + }, + { + "id": "28179", + "ident": "CJX6", + "type": "seaplane_base", + "name": "Bird River Seaplane Base", + "latitude_deg": "50.400001525878906", + "longitude_deg": "-95.75", + "elevation_ft": "826", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "gps_code": "CJX6", + "local_code": "CJX6" + }, + { + "id": "1150", + "ident": "CJX7", + "type": "closed", + "name": "Old Arctic Bay Airport", + "latitude_deg": "73.00585", + "longitude_deg": "-85.035439", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Arctic Bay", + "scheduled_service": "no", + "gps_code": "CJX7", + "local_code": "CJX7", + "keywords": "JX7" + }, + { + "id": "28253", + "ident": "CJX8", + "type": "seaplane_base", + "name": "Hatchet Lake Seaplane Base", + "latitude_deg": "58.633301", + "longitude_deg": "-103.583", + "elevation_ft": "1286", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no", + "gps_code": "CJX8", + "local_code": "CJX8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hatchet_Lake_Water_Aerodrome", + "keywords": "JX8" + }, + { + "id": "1151", + "ident": "CJY3", + "type": "small_airport", + "name": "Tisdale Airport", + "latitude_deg": "52.836700439453", + "longitude_deg": "-104.06700134277", + "elevation_ft": "1525", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Tisdale", + "scheduled_service": "no", + "gps_code": "CJY3", + "iata_code": "YTT", + "local_code": "CJY3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tisdale_Airport", + "keywords": "JY3" + }, + { + "id": "1152", + "ident": "CJY4", + "type": "small_airport", + "name": "Sandy Bay Airport", + "latitude_deg": "55.54560089111328", + "longitude_deg": "-102.27200317382812", + "elevation_ft": "1001", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Sandy Bay", + "scheduled_service": "no", + "gps_code": "CJY4", + "local_code": "CJY4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sandy_Bay_Airport", + "keywords": "JY4" + }, + { + "id": "1153", + "ident": "CJY5", + "type": "small_airport", + "name": "Strathclair Airport", + "latitude_deg": "50.39609909057617", + "longitude_deg": "-100.42500305175781", + "elevation_ft": "1875", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Strathclair", + "scheduled_service": "no", + "gps_code": "CJY5", + "local_code": "CJY5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Strathclair_Airport", + "keywords": "JY5" + }, + { + "id": "28180", + "ident": "CJY6", + "type": "seaplane_base", + "name": "Bissett Seaplane Base", + "latitude_deg": "51.016701", + "longitude_deg": "-95.683296", + "elevation_ft": "824", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "gps_code": "CJY6", + "local_code": "CJY6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bissett_Water_Aerodrome", + "keywords": "JY6" + }, + { + "id": "28298", + "ident": "CJY9", + "type": "closed", + "name": "La Loche Seaplane Base", + "latitude_deg": "56.483299", + "longitude_deg": "-109.417", + "elevation_ft": "1467", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "La Loche", + "scheduled_service": "no", + "gps_code": "CJY9", + "local_code": "CJY9", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Loche_Water_Aerodrome", + "keywords": "JY9" + }, + { + "id": "1154", + "ident": "CJZ2", + "type": "small_airport", + "name": "Portage La Prairie (North) Airport", + "latitude_deg": "49.99250030517578", + "longitude_deg": "-98.3031005859375", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Portage La Prairie", + "scheduled_service": "no", + "gps_code": "CJZ2", + "local_code": "CJZ2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Portage_La_Prairie_(North)_Airport", + "keywords": "JZ2" + }, + { + "id": "1155", + "ident": "CJZ3", + "type": "small_airport", + "name": "Melfort Airport", + "latitude_deg": "52.86669921875", + "longitude_deg": "-104.69999694824219", + "elevation_ft": "1495", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Melfort", + "scheduled_service": "no", + "gps_code": "CJZ3", + "local_code": "CJZ3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Melfort_Airport", + "keywords": "JZ3" + }, + { + "id": "1156", + "ident": "CJZ4", + "type": "small_airport", + "name": "Shellbrook Airport", + "latitude_deg": "53.22829818725586", + "longitude_deg": "-106.36299896240234", + "elevation_ft": "1640", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Shellbrook", + "scheduled_service": "no", + "gps_code": "CJZ4", + "local_code": "CJZ4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shellbrook_Airport", + "keywords": "JZ4" + }, + { + "id": "1157", + "ident": "CJZ5", + "type": "closed", + "name": "Virden (West) Airport", + "latitude_deg": "49.8833007812", + "longitude_deg": "-101.067001343", + "elevation_ft": "1510", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Virden", + "scheduled_service": "no", + "gps_code": "CJZ5", + "local_code": "CJZ5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Virden_(West)_Airport", + "keywords": "JZ5" + }, + { + "id": "28181", + "ident": "CJZ6", + "type": "seaplane_base", + "name": "Black Lake Seaplane Base", + "latitude_deg": "59.150001525878906", + "longitude_deg": "-105.55000305175781", + "elevation_ft": "909", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no", + "gps_code": "CJZ6", + "local_code": "CJZ6" + }, + { + "id": "28209", + "ident": "CJZ7", + "type": "seaplane_base", + "name": "Deer Lake/Keyamawun Seaplane Base", + "latitude_deg": "52.66669845581055", + "longitude_deg": "-94.41670227050781", + "elevation_ft": "1017", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CJZ7", + "local_code": "CJZ7" + }, + { + "id": "28300", + "ident": "CJZ9", + "type": "seaplane_base", + "name": "La Ronge Seaplane Base", + "latitude_deg": "55.099998", + "longitude_deg": "-105.282997", + "elevation_ft": "1193", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no", + "gps_code": "CJZ9", + "local_code": "CJZ9", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Ronge_Water_Aerodrome", + "keywords": "JZ9" + }, + { + "id": "355454", + "ident": "CKA2", + "type": "small_airport", + "name": "Heffley Creek Airstrip", + "latitude_deg": "50.868973", + "longitude_deg": "-120.274115", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kamloops", + "scheduled_service": "no", + "gps_code": "CKA2", + "local_code": "CKA2" + }, + { + "id": "28303", + "ident": "CKA3", + "type": "seaplane_base", + "name": "Leaf Rapids Seaplane Base", + "latitude_deg": "56.54999923706055", + "longitude_deg": "-99.93329620361328", + "elevation_ft": "849", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "gps_code": "CKA3", + "local_code": "CKA3" + }, + { + "id": "1158", + "ident": "CKA4", + "type": "small_airport", + "name": "Zhoda Airport", + "latitude_deg": "49.280799865722656", + "longitude_deg": "-96.5010986328125", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Zhoda", + "scheduled_service": "no", + "gps_code": "CKA4", + "local_code": "CKA4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zhoda_Airport", + "keywords": "KA4" + }, + { + "id": "28417", + "ident": "CKA6", + "type": "seaplane_base", + "name": "Sioux Lookout Seaplane Base", + "latitude_deg": "50.09189987182617", + "longitude_deg": "-91.9124984741211", + "elevation_ft": "1171", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CKA6", + "local_code": "CKA6" + }, + { + "id": "1159", + "ident": "CKA8", + "type": "small_airport", + "name": "St. François Xavier Airport", + "latitude_deg": "49.924400329589844", + "longitude_deg": "-97.54889678955078", + "elevation_ft": "798", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "St. François Xavier", + "scheduled_service": "no", + "gps_code": "CKA8", + "local_code": "CKA8", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Fran%C3%A7ois_Xavier_Airport", + "keywords": "KA8" + }, + { + "id": "1160", + "ident": "CKA9", + "type": "small_airport", + "name": "Southend Airport / Hans Ulricksen Field", + "latitude_deg": "56.3372", + "longitude_deg": "-103.292999", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Southend", + "scheduled_service": "no", + "gps_code": "CKA9", + "local_code": "CKA9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Southend_Airport_(Saskatchewan)", + "keywords": "KA9" + }, + { + "id": "1161", + "ident": "CKB2", + "type": "small_airport", + "name": "Patuanak Airport", + "latitude_deg": "55.900001525878906", + "longitude_deg": "-107.72100067138672", + "elevation_ft": "1426", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Patuanak", + "scheduled_service": "no", + "gps_code": "CKB2", + "local_code": "CKB2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Patuanak_Airport", + "keywords": "KB2" + }, + { + "id": "298377", + "ident": "CKB3", + "type": "heliport", + "name": "Kootenay Boundary Regional Hospital Heliport", + "latitude_deg": "49.103583", + "longitude_deg": "-117.700315", + "elevation_ft": "1526", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Trail", + "scheduled_service": "no", + "gps_code": "CKB3", + "local_code": "CKB3", + "home_link": "http://kbrh.ca/services/services-helipad.html" + }, + { + "id": "28351", + "ident": "CKB4", + "type": "seaplane_base", + "name": "Otter Lake Seaplane Base", + "latitude_deg": "55.599998474121094", + "longitude_deg": "-104.76699829101562", + "elevation_ft": "1143", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no", + "gps_code": "CKB4", + "local_code": "CKB4" + }, + { + "id": "28406", + "ident": "CKB5", + "type": "seaplane_base", + "name": "Sandy Bay Seaplane Base", + "latitude_deg": "55.516700744628906", + "longitude_deg": "-102.31700134277344", + "elevation_ft": "933", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no", + "gps_code": "CKB5", + "local_code": "CKB5" + }, + { + "id": "1162", + "ident": "CKB6", + "type": "small_airport", + "name": "Wapekeka Airport", + "latitude_deg": "53.84920120239258", + "longitude_deg": "-89.57939910888672", + "elevation_ft": "712", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Angling Lake", + "scheduled_service": "yes", + "gps_code": "CKB6", + "iata_code": "YAX", + "local_code": "CKB6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Angling_Lake/Wapekeka_Airport", + "keywords": "KB6" + }, + { + "id": "1163", + "ident": "CKB7", + "type": "small_airport", + "name": "Roblin Airport", + "latitude_deg": "51.23440170288086", + "longitude_deg": "-101.39299774169922", + "elevation_ft": "1821", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Roblin", + "scheduled_service": "no", + "gps_code": "CKB7", + "local_code": "CKB7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roblin_Airport", + "keywords": "KB7" + }, + { + "id": "1164", + "ident": "CKB8", + "type": "small_airport", + "name": "Silver Falls Airport", + "latitude_deg": "50.5", + "longitude_deg": "-96.09809875488281", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Silver Falls", + "scheduled_service": "no", + "gps_code": "CKB8", + "local_code": "CKB8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Silver_Falls_Airport", + "keywords": "KB8" + }, + { + "id": "28415", + "ident": "CKB9", + "type": "seaplane_base", + "name": "Shoal Lake Seaplane Base", + "latitude_deg": "50.43330001831055", + "longitude_deg": "-100.5999984741211", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "gps_code": "CKB9", + "local_code": "CKB9" + }, + { + "id": "28371", + "ident": "CKC2", + "type": "seaplane_base", + "name": "Points North Landing Seaplane Base", + "latitude_deg": "58.266700744628906", + "longitude_deg": "-104.08300018310547", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no", + "gps_code": "CKC2", + "local_code": "CKC2" + }, + { + "id": "28441", + "ident": "CKC3", + "type": "seaplane_base", + "name": "The Pas / Grace Lake Seaplane Base", + "latitude_deg": "53.8207197785", + "longitude_deg": "-101.1926651", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "gps_code": "CKC3", + "local_code": "CKC3" + }, + { + "id": "28412", + "ident": "CKC5", + "type": "seaplane_base", + "name": "Selkirk Seaplane Base", + "latitude_deg": "50.16669845581055", + "longitude_deg": "-96.86669921875", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "gps_code": "CKC5", + "local_code": "CKC5" + }, + { + "id": "1165", + "ident": "CKC6", + "type": "small_airport", + "name": "Lanigan Airport", + "latitude_deg": "51.845298767089844", + "longitude_deg": "-104.99199676513672", + "elevation_ft": "1750", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Lanigan", + "scheduled_service": "no", + "gps_code": "CKC6", + "local_code": "CKC6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lanigan_Airport", + "keywords": "KC6" + }, + { + "id": "1166", + "ident": "CKC7", + "type": "small_airport", + "name": "Rockglen Airport", + "latitude_deg": "49.16669845581055", + "longitude_deg": "-105.93299865722656", + "elevation_ft": "2700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Rockglen", + "scheduled_service": "no", + "gps_code": "CKC7", + "local_code": "CKC7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rockglen_Airport", + "keywords": "KC7" + }, + { + "id": "1167", + "ident": "CKC8", + "type": "small_airport", + "name": "Somerset Airport", + "latitude_deg": "49.400299072265625", + "longitude_deg": "-98.69249725341797", + "elevation_ft": "1563", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Somerset", + "scheduled_service": "no", + "gps_code": "CKC8", + "local_code": "CKC8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Somerset_Airport_(Manitoba)", + "keywords": "KC8" + }, + { + "id": "1168", + "ident": "CKC9", + "type": "small_airport", + "name": "Pangman Airport", + "latitude_deg": "49.646400451660156", + "longitude_deg": "-104.66600036621094", + "elevation_ft": "2300", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Pangman", + "scheduled_service": "no", + "gps_code": "CKC9", + "local_code": "CKC9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pangman_Airport", + "keywords": "KC9" + }, + { + "id": "1169", + "ident": "CKD2", + "type": "small_airport", + "name": "Porcupine Plain Airport", + "latitude_deg": "52.61970138549805", + "longitude_deg": "-103.24800109863281", + "elevation_ft": "1635", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Porcupine Plain", + "scheduled_service": "no", + "gps_code": "CKD2", + "local_code": "CKD2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Porcupine_Plain_Airport", + "keywords": "KD2" + }, + { + "id": "28306", + "ident": "CKD3", + "type": "seaplane_base", + "name": "Lynn Lake (Eldon Lake) Seaplane Base", + "latitude_deg": "56.81719970703125", + "longitude_deg": "-101.01899719238281", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "gps_code": "CKD3", + "local_code": "CKD3" + }, + { + "id": "1170", + "ident": "CKD5", + "type": "small_airport", + "name": "Kipling Airport", + "latitude_deg": "50.09920120239258", + "longitude_deg": "-102.60700225830078", + "elevation_ft": "2157", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Kipling", + "scheduled_service": "no", + "gps_code": "CKD5", + "local_code": "CKD5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kipling_Airport", + "keywords": "KD5" + }, + { + "id": "28442", + "ident": "CKD6", + "type": "seaplane_base", + "name": "Thompson Seaplane Base", + "latitude_deg": "55.75", + "longitude_deg": "-97.83329772949219", + "elevation_ft": "596", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "gps_code": "CKD6", + "local_code": "CKD6" + }, + { + "id": "1171", + "ident": "CKD7", + "type": "small_airport", + "name": "Roland (Graham Field) Airport", + "latitude_deg": "49.40829849243164", + "longitude_deg": "-97.9906005859375", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Roland", + "scheduled_service": "no", + "gps_code": "CKD7", + "local_code": "CKD7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roland_(Graham_Field)_Airport", + "keywords": "KD7" + }, + { + "id": "301223", + "ident": "CKD8", + "type": "small_airport", + "name": "Kirkfield / Balsam Lake Airfield", + "latitude_deg": "44.539988", + "longitude_deg": "-78.88926", + "elevation_ft": "864", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kirkfield", + "scheduled_service": "no", + "gps_code": "CKD8" + }, + { + "id": "1172", + "ident": "CKD9", + "type": "small_airport", + "name": "Slate Falls Airport", + "latitude_deg": "51.130001068115234", + "longitude_deg": "-91.66560363769531", + "elevation_ft": "1355", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Slate Falls", + "scheduled_service": "no", + "gps_code": "CKD9", + "local_code": "CKD9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Slate_Falls_Airport", + "keywords": "KD9" + }, + { + "id": "1173", + "ident": "CKE2", + "type": "small_airport", + "name": "Quill Lake Airport", + "latitude_deg": "52.06669998168945", + "longitude_deg": "-104.26699829101562", + "elevation_ft": "1750", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Quill Lake", + "scheduled_service": "no", + "gps_code": "CKE2", + "local_code": "CKE2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quill_Lake_Airport", + "keywords": "KE2" + }, + { + "id": "28363", + "ident": "CKE4", + "type": "seaplane_base", + "name": "Pelican Narrows Seaplane Base", + "latitude_deg": "55.16669845581055", + "longitude_deg": "-102.93299865722656", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no", + "gps_code": "CKE4", + "local_code": "CKE4" + }, + { + "id": "28407", + "ident": "CKE5", + "type": "seaplane_base", + "name": "Sandy Lake Seaplane Base", + "latitude_deg": "53.04999923706055", + "longitude_deg": "-93.33329772949219", + "elevation_ft": "901", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CKE5", + "local_code": "CKE5" + }, + { + "id": "28444", + "ident": "CKE6", + "type": "seaplane_base", + "name": "Thunder Bay Seaplane Base", + "latitude_deg": "48.45000076293945", + "longitude_deg": "-89.16670227050781", + "elevation_ft": "601", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CKE6", + "local_code": "CKE6" + }, + { + "id": "1174", + "ident": "CKE8", + "type": "small_airport", + "name": "Unity Airport", + "latitude_deg": "52.44580078125", + "longitude_deg": "-109.18499755859375", + "elevation_ft": "2090", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Unity", + "scheduled_service": "no", + "gps_code": "CKE8", + "local_code": "CKE8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Unity_Airport", + "keywords": "KE8" + }, + { + "id": "1175", + "ident": "CKE9", + "type": "heliport", + "name": "Nipigon (District Memorial Hospital) Heliport", + "latitude_deg": "49.0161018371582", + "longitude_deg": "-88.27890014648438", + "elevation_ft": "761", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Nipigon", + "scheduled_service": "no", + "gps_code": "CKE9", + "local_code": "CKE9", + "keywords": "KE9" + }, + { + "id": "1176", + "ident": "CKF2", + "type": "small_airport", + "name": "Radville Airport", + "latitude_deg": "49.460601806640625", + "longitude_deg": "-104.27200317382812", + "elevation_ft": "2067", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Radville", + "scheduled_service": "no", + "gps_code": "CKF2", + "local_code": "CKF2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Radville_Airport", + "keywords": "KF2" + }, + { + "id": "1177", + "ident": "CKF3", + "type": "heliport", + "name": "Atikokan General Hospital Helipad", + "latitude_deg": "48.7547", + "longitude_deg": "-91.5967", + "elevation_ft": "1285", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Atikokan", + "scheduled_service": "no", + "gps_code": "CKF3", + "local_code": "CKF3", + "keywords": "KF3" + }, + { + "id": "1178", + "ident": "CKF4", + "type": "small_airport", + "name": "Goodsoil Airport", + "latitude_deg": "54.41669845581055", + "longitude_deg": "-109.23300170898438", + "elevation_ft": "1750", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Goodsoil", + "scheduled_service": "no", + "gps_code": "CKF4", + "local_code": "CKF4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Goodsoil_Airport", + "keywords": "KF4" + }, + { + "id": "28270", + "ident": "CKF5", + "type": "seaplane_base", + "name": "Kashabowie/Upper Shebandowan Lake Seaplane Base", + "latitude_deg": "48.650001525878906", + "longitude_deg": "-90.4000015258789", + "elevation_ft": "1474", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CKF5", + "local_code": "CKF5" + }, + { + "id": "1179", + "ident": "CKF6", + "type": "small_airport", + "name": "Macgregor Airport", + "latitude_deg": "49.96670150756836", + "longitude_deg": "-98.75", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Macgregor", + "scheduled_service": "no", + "gps_code": "CKF6", + "local_code": "CKF6", + "wikipedia_link": "https://en.wikipedia.org/wiki/MacGregor_Airport", + "keywords": "KF6" + }, + { + "id": "1180", + "ident": "CKF7", + "type": "heliport", + "name": "Sioux Lookout Heliport", + "latitude_deg": "50.06669998168945", + "longitude_deg": "-91.91670227050781", + "elevation_ft": "1181", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Sioux Lookout", + "scheduled_service": "no", + "gps_code": "CKF7", + "local_code": "CKF7", + "keywords": "KF7" + }, + { + "id": "320218", + "ident": "CKF8", + "type": "small_airport", + "name": "Kirby Field", + "latitude_deg": "44.1328", + "longitude_deg": "-79.725", + "elevation_ft": "704", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Cookstown", + "scheduled_service": "no", + "gps_code": "CKF8", + "local_code": "CKF8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cookstown/Kirby_Field_Aerodrome" + }, + { + "id": "1181", + "ident": "CKF9", + "type": "small_airport", + "name": "De Lesseps Lake Airport", + "latitude_deg": "50.717498779296875", + "longitude_deg": "-90.68360137939453", + "elevation_ft": "1312", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "De Lesseps Lake", + "scheduled_service": "no", + "gps_code": "CKF9", + "local_code": "CKF9", + "wikipedia_link": "https://en.wikipedia.org/wiki/De_Lesseps_Lake_Airport", + "keywords": "KF9" + }, + { + "id": "1182", + "ident": "CKG2", + "type": "small_airport", + "name": "Riverton Airport", + "latitude_deg": "50.971805", + "longitude_deg": "-96.998889", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Riverton", + "scheduled_service": "no", + "gps_code": "CKG2", + "local_code": "CKG2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Riverton_Airport", + "keywords": "KG2" + }, + { + "id": "28367", + "ident": "CKG4", + "type": "seaplane_base", + "name": "Pickle Lake Seaplane Base", + "latitude_deg": "51.46670150756836", + "longitude_deg": "-90.19999694824219", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CKG4", + "local_code": "CKG4" + }, + { + "id": "1183", + "ident": "CKG5", + "type": "small_airport", + "name": "Manitou Airport", + "latitude_deg": "49.25", + "longitude_deg": "-98.5333023071289", + "elevation_ft": "1592", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Manitou", + "scheduled_service": "no", + "gps_code": "CKG5", + "local_code": "CKG5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manitou_Airport", + "keywords": "KG5" + }, + { + "id": "28451", + "ident": "CKG6", + "type": "seaplane_base", + "name": "Uranium City Seaplane Base", + "latitude_deg": "59.564809", + "longitude_deg": "-108.599869", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Uranium City", + "scheduled_service": "no", + "gps_code": "CKG6", + "local_code": "CKG6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Uranium_City_Water_Aerodrome", + "keywords": "KG6" + }, + { + "id": "1184", + "ident": "CKG8", + "type": "small_airport", + "name": "Kakabeka Falls Airport", + "latitude_deg": "48.41830062866211", + "longitude_deg": "-89.60189819335938", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kakabeka Falls", + "scheduled_service": "no", + "gps_code": "CKG8", + "local_code": "CKG8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kakabeka_Falls_Airport", + "keywords": "KG8" + }, + { + "id": "1185", + "ident": "CKH2", + "type": "small_airport", + "name": "Rocanville Airport", + "latitude_deg": "50.464698791503906", + "longitude_deg": "-101.55400085449219", + "elevation_ft": "1585", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Rocanville", + "scheduled_service": "no", + "gps_code": "CKH2", + "local_code": "CKH2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rocanville_Airport", + "keywords": "KH2" + }, + { + "id": "1186", + "ident": "CKH3", + "type": "small_airport", + "name": "Debden Airport", + "latitude_deg": "53.531898498535156", + "longitude_deg": "-106.88400268554688", + "elevation_ft": "1700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Debden", + "scheduled_service": "no", + "gps_code": "CKH3", + "local_code": "CKH3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Debden_Airport", + "keywords": "KH3" + }, + { + "id": "28368", + "ident": "CKH4", + "type": "seaplane_base", + "name": "Pikangikum Seaplane Base", + "latitude_deg": "51.799999", + "longitude_deg": "-93.983299", + "elevation_ft": "1076", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Pikangikum", + "scheduled_service": "no", + "gps_code": "CKH4", + "local_code": "CKH4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pikangikum_Water_Aerodrome", + "keywords": "KH4" + }, + { + "id": "28456", + "ident": "CKH6", + "type": "seaplane_base", + "name": "Vermilion Bay Seaplane Base", + "latitude_deg": "49.8688", + "longitude_deg": "-93.402501", + "elevation_ft": "1278", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Vermilion Bay", + "scheduled_service": "no", + "gps_code": "CKH6", + "local_code": "CKH6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vermilion_Bay_Water_Aerodrome", + "keywords": "KH6" + }, + { + "id": "1187", + "ident": "CKH7", + "type": "small_airport", + "name": "Spiritwood Airport", + "latitude_deg": "53.36330032348633", + "longitude_deg": "-107.5479965209961", + "elevation_ft": "1915", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Spiritwood", + "scheduled_service": "no", + "gps_code": "CKH7", + "local_code": "CKH7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Spiritwood_Airport", + "keywords": "KH7" + }, + { + "id": "1188", + "ident": "CKH8", + "type": "small_airport", + "name": "Lumsden (Colhoun) Airport", + "latitude_deg": "50.66749954223633", + "longitude_deg": "-104.78900146484375", + "elevation_ft": "1900", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Lumsden", + "scheduled_service": "no", + "gps_code": "CKH8", + "local_code": "CKH8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lumsden_(Colhoun)_Airport", + "keywords": "KH8" + }, + { + "id": "320338", + "ident": "CKH9", + "type": "heliport", + "name": "Kelowna General Hospital Helipad", + "latitude_deg": "49.8743", + "longitude_deg": "-119.4924", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kelowna", + "scheduled_service": "no", + "gps_code": "CKH9", + "local_code": "CKH9", + "home_link": "https://en.wikipedia.org/wiki/Kelowna_General_Hospital" + }, + { + "id": "1189", + "ident": "CKJ2", + "type": "small_airport", + "name": "Rosenort Airport", + "latitude_deg": "49.45309829711914", + "longitude_deg": "-97.42250061035156", + "elevation_ft": "779", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Rosenort", + "scheduled_service": "no", + "gps_code": "CKJ2", + "local_code": "CKJ2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rosenort_Airport", + "keywords": "KJ2" + }, + { + "id": "28316", + "ident": "CKJ3", + "type": "seaplane_base", + "name": "Mcgavock Lake Seaplane Base", + "latitude_deg": "56.56669998168945", + "longitude_deg": "-101.5", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "gps_code": "CKJ3", + "local_code": "CKJ3" + }, + { + "id": "1190", + "ident": "CKJ4", + "type": "small_airport", + "name": "Hanley Airport", + "latitude_deg": "51.62419891357422", + "longitude_deg": "-106.44200134277344", + "elevation_ft": "1925", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Hanley", + "scheduled_service": "no", + "gps_code": "CKJ4", + "local_code": "CKJ4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hanley_Airport", + "keywords": "KJ4" + }, + { + "id": "28416", + "ident": "CKJ5", + "type": "seaplane_base", + "name": "Silver Falls Seaplane Base", + "latitude_deg": "50.5", + "longitude_deg": "-96.0999984741211", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "gps_code": "CKJ5", + "local_code": "CKJ5" + }, + { + "id": "1191", + "ident": "CKJ7", + "type": "small_airport", + "name": "Starbuck Airport", + "latitude_deg": "49.706132", + "longitude_deg": "-97.677926", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Starbuck", + "scheduled_service": "no", + "gps_code": "CKJ7", + "local_code": "CKJ7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Starbuck_Airport", + "keywords": "KJ7" + }, + { + "id": "1192", + "ident": "CKJ8", + "type": "small_airport", + "name": "Molson Lake Airport", + "latitude_deg": "54.25809860229492", + "longitude_deg": "-97.01110076904297", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Molson Lake", + "scheduled_service": "no", + "gps_code": "CKJ8", + "local_code": "CKJ8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Molson_Lake_Airport", + "keywords": "KJ8" + }, + { + "id": "1193", + "ident": "CKJ9", + "type": "small_airport", + "name": "Lemberg Airport", + "latitude_deg": "50.708900451660156", + "longitude_deg": "-103.1969985961914", + "elevation_ft": "2050", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Lemberg", + "scheduled_service": "no", + "gps_code": "CKJ9", + "local_code": "CKJ9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lemberg_Airport", + "keywords": "KJ9" + }, + { + "id": "1194", + "ident": "CKK2", + "type": "small_airport", + "name": "St. Brieux Airport", + "latitude_deg": "52.650001525878906", + "longitude_deg": "-104.86699676513672", + "elevation_ft": "1780", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "St. Brieux", + "scheduled_service": "no", + "gps_code": "CKK2", + "local_code": "CKK2", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Brieux_Airport", + "keywords": "KK2" + }, + { + "id": "1195", + "ident": "CKK3", + "type": "small_airport", + "name": "Scobey Border Station Airport", + "latitude_deg": "49.000001", + "longitude_deg": "-105.399338", + "elevation_ft": "2501", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Coronach", + "scheduled_service": "no", + "gps_code": "CKK3", + "local_code": "CKK3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coronach/Scobey_Border_Station_Airport", + "keywords": "KK3" + }, + { + "id": "1196", + "ident": "CKK4", + "type": "small_airport", + "name": "Estevan (South) Airport", + "latitude_deg": "49.03889846801758", + "longitude_deg": "-102.97599792480469", + "elevation_ft": "1900", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Estevan", + "scheduled_service": "no", + "gps_code": "CKK4", + "local_code": "CKK4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Estevan_(South)_Airport", + "keywords": "KK4" + }, + { + "id": "1197", + "ident": "CKK5", + "type": "closed", + "name": "Eastend Airport", + "latitude_deg": "49.54974", + "longitude_deg": "-108.797312", + "elevation_ft": "3040", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Eastend", + "scheduled_service": "no", + "gps_code": "CKK5", + "local_code": "CKK5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eastend_Airport", + "keywords": "KK5" + }, + { + "id": "28460", + "ident": "CKK6", + "type": "seaplane_base", + "name": "Wabowden Seaplane Base", + "latitude_deg": "54.91669845581055", + "longitude_deg": "-98.61669921875", + "elevation_ft": "744", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "gps_code": "CKK6", + "local_code": "CKK6" + }, + { + "id": "1198", + "ident": "CKK7", + "type": "small_airport", + "name": "Steinbach (South) Airport", + "latitude_deg": "49.493900299072266", + "longitude_deg": "-96.69889831542969", + "elevation_ft": "888", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Steinbach", + "scheduled_service": "no", + "gps_code": "CKK7", + "local_code": "CKK7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Steinbach_(South)_Airport", + "keywords": "KK7" + }, + { + "id": "28426", + "ident": "CKK8", + "type": "seaplane_base", + "name": "Staunton Lake Seaplane Base", + "latitude_deg": "50.38309860229492", + "longitude_deg": "-90.65859985351562", + "elevation_ft": "1365", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CKK8", + "local_code": "CKK8" + }, + { + "id": "1199", + "ident": "CKL2", + "type": "small_airport", + "name": "Selkirk Airport", + "latitude_deg": "50.172308", + "longitude_deg": "-96.870346", + "elevation_ft": "747", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Selkirk", + "scheduled_service": "no", + "gps_code": "CKL2", + "local_code": "CKL2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Selkirk_Airport", + "keywords": "KL2" + }, + { + "id": "1200", + "ident": "CKL3", + "type": "small_airport", + "name": "Wunnumin Lake Airport", + "latitude_deg": "52.89390182495117", + "longitude_deg": "-89.28919982910156", + "elevation_ft": "819", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Wunnumin Lake", + "scheduled_service": "yes", + "gps_code": "CKL3", + "iata_code": "WNN", + "local_code": "CKL3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wunnummin_Lake_Airport", + "keywords": "KL3" + }, + { + "id": "1201", + "ident": "CKL4", + "type": "closed", + "name": "Hidden Bay Airport", + "latitude_deg": "58.127899169921875", + "longitude_deg": "-103.77976989746094", + "elevation_ft": "1444", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Hidden Bay", + "scheduled_service": "no", + "gps_code": "CKL4", + "local_code": "CKL4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hidden_Bay_Airport", + "keywords": "KL4" + }, + { + "id": "1202", + "ident": "CKL5", + "type": "small_airport", + "name": "Shoal Lake Airport", + "latitude_deg": "50.45750045776367", + "longitude_deg": "-100.60900115966797", + "elevation_ft": "1836", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Shoal Lake", + "scheduled_service": "no", + "gps_code": "CKL5", + "local_code": "CKL5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shoal_Lake_Airport", + "keywords": "KL5" + }, + { + "id": "1203", + "ident": "CKL6", + "type": "small_airport", + "name": "Little Bear Lake Airport", + "latitude_deg": "54.291900634765625", + "longitude_deg": "-104.6709976196289", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Little Bear Lake", + "scheduled_service": "no", + "gps_code": "CKL6", + "local_code": "CKL6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Little_Bear_Lake_Airport", + "keywords": "KL6" + }, + { + "id": "1204", + "ident": "CKL8", + "type": "heliport", + "name": "Upsala Heliport", + "latitude_deg": "49.05030059814453", + "longitude_deg": "-90.46920013427734", + "elevation_ft": "1581", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Upsala", + "scheduled_service": "no", + "gps_code": "CKL8", + "local_code": "CKL8", + "keywords": "KL8" + }, + { + "id": "1205", + "ident": "CKL9", + "type": "small_airport", + "name": "Regina Beach Airport", + "latitude_deg": "50.75279998779297", + "longitude_deg": "-104.97899627685547", + "elevation_ft": "1850", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Regina Beach", + "scheduled_service": "no", + "gps_code": "CKL9", + "local_code": "CKL9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Regina_Beach_Airport", + "keywords": "KL9" + }, + { + "id": "1206", + "ident": "CKM2", + "type": "small_airport", + "name": "Sioux Narrows Airport", + "latitude_deg": "49.38999938964844", + "longitude_deg": "-93.99530029296875", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Sioux Narrows", + "scheduled_service": "no", + "gps_code": "CKM2", + "local_code": "CKM2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sioux_Narrows_Airport", + "keywords": "KM2" + }, + { + "id": "1207", + "ident": "CKM3", + "type": "heliport", + "name": "Shilo Heliport", + "latitude_deg": "49.79999923706055", + "longitude_deg": "-99.63330078125", + "elevation_ft": "1225", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Shilo", + "scheduled_service": "no", + "gps_code": "CKM3", + "local_code": "CKM3", + "keywords": "KM3" + }, + { + "id": "1208", + "ident": "CKM4", + "type": "small_airport", + "name": "Jan Lake Airport", + "latitude_deg": "54.8307991027832", + "longitude_deg": "-102.78900146484375", + "elevation_ft": "1135", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Jan Lake", + "scheduled_service": "no", + "gps_code": "CKM4", + "local_code": "CKM4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jan_Lake_Airport", + "keywords": "KM4" + }, + { + "id": "28421", + "ident": "CKM5", + "type": "seaplane_base", + "name": "Snow Lake Seaplane Base", + "latitude_deg": "54.883301", + "longitude_deg": "-100.032997", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "gps_code": "CKM5", + "local_code": "CKM5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Snow_Lake_Water_Aerodrome", + "keywords": "KM5" + }, + { + "id": "1209", + "ident": "CKM6", + "type": "small_airport", + "name": "Easterville Airport", + "latitude_deg": "53.11669921875", + "longitude_deg": "-99.80000305175781", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Easterville", + "scheduled_service": "no", + "gps_code": "CKM6", + "local_code": "CKM6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Easterville_Airport", + "keywords": "KM6" + }, + { + "id": "1210", + "ident": "CKM7", + "type": "heliport", + "name": "Thompson Heliport", + "latitude_deg": "55.707422500899995", + "longitude_deg": "-97.89123594760001", + "elevation_ft": "702", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Thompson", + "scheduled_service": "no", + "gps_code": "CKM7", + "local_code": "CKM7", + "keywords": "KM7" + }, + { + "id": "1211", + "ident": "CKM8", + "type": "small_airport", + "name": "Opapimiskan Lake Airport", + "latitude_deg": "52.6067008972", + "longitude_deg": "-90.3768997192", + "elevation_ft": "1023", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Opapimiskan Lake", + "scheduled_service": "no", + "gps_code": "CKM8", + "iata_code": "YBS", + "local_code": "CKM8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Opapimiskan_Lake_Airport", + "keywords": "KM8, Musselwhite Airport" + }, + { + "id": "1212", + "ident": "CKM9", + "type": "heliport", + "name": "Kentville (Camp Aldershot) Heliport", + "latitude_deg": "45.094006202399996", + "longitude_deg": "-64.5095676184", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Kentville", + "scheduled_service": "no", + "gps_code": "CKM9", + "local_code": "CKM9", + "keywords": "KM9" + }, + { + "id": "320333", + "ident": "CKN3", + "type": "closed", + "name": "Kahntah Airport", + "latitude_deg": "58.041502", + "longitude_deg": "-120.9092", + "elevation_ft": "1630", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kahntah", + "scheduled_service": "no", + "gps_code": "CKN3", + "local_code": "CKN3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kahntah_Aerodrome" + }, + { + "id": "1213", + "ident": "CKN5", + "type": "small_airport", + "name": "Fillmore Airport", + "latitude_deg": "49.868900299072266", + "longitude_deg": "-103.44499969482422", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Fillmore", + "scheduled_service": "no", + "gps_code": "CKN5", + "local_code": "CKN5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fillmore_Airport", + "keywords": "KN5" + }, + { + "id": "28161", + "ident": "CKN6", + "type": "closed", + "name": "Armstrong/Waweig Lake Seaplane Base", + "latitude_deg": "50.133301", + "longitude_deg": "-89.116699", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CKN6", + "local_code": "CKN6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Armstrong/Waweig_Lake_Water_Aerodrome" + }, + { + "id": "1214", + "ident": "CKN8", + "type": "small_airport", + "name": "Nekweaga Bay Airport", + "latitude_deg": "57.74250030517578", + "longitude_deg": "-103.94499969482422", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Nekweaga Bay", + "scheduled_service": "no", + "gps_code": "CKN8", + "local_code": "CKN8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nekweaga_Bay_Airport", + "keywords": "KN8" + }, + { + "id": "1215", + "ident": "CKN9", + "type": "heliport", + "name": "Shilo (Flewin Field) Heliport", + "latitude_deg": "49.780799865722656", + "longitude_deg": "-99.63890075683594", + "elevation_ft": "1223", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Shilo", + "scheduled_service": "no", + "gps_code": "CKN9", + "local_code": "CKN9", + "keywords": "KN9" + }, + { + "id": "1216", + "ident": "CKP2", + "type": "small_airport", + "name": "Spring Valley (North) Airport", + "latitude_deg": "50.060001373291016", + "longitude_deg": "-105.4020004272461", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Spring Valley", + "scheduled_service": "no", + "gps_code": "CKP2", + "local_code": "CKP2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Spring_Valley_(North)_Airport", + "keywords": "KP2" + }, + { + "id": "28318", + "ident": "CKP3", + "type": "seaplane_base", + "name": "Minaki/Pistol Lake Seaplane Base", + "latitude_deg": "49.983299255371094", + "longitude_deg": "-94.7166976928711", + "elevation_ft": "1037", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CKP3", + "local_code": "CKP3" + }, + { + "id": "28387", + "ident": "CKP4", + "type": "closed", + "name": "Pukatawagan Seaplane Base", + "latitude_deg": "55.736696", + "longitude_deg": "-101.327002", + "elevation_ft": "898", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Pukatawagan", + "scheduled_service": "no", + "local_code": "KP4" + }, + { + "id": "28423", + "ident": "CKP5", + "type": "seaplane_base", + "name": "Southend Seaplane Base", + "latitude_deg": "56.333302", + "longitude_deg": "-103.282997", + "elevation_ft": "1106", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no", + "gps_code": "CKP5", + "local_code": "CKP5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Southend_Water_Aerodrome", + "keywords": "KP5" + }, + { + "id": "28398", + "ident": "CKP6", + "type": "seaplane_base", + "name": "Round Lake (Weagamow Lake) Seaplane Base", + "latitude_deg": "52.948299407958984", + "longitude_deg": "-91.34919738769531", + "elevation_ft": "951", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CKP6", + "local_code": "CKP6" + }, + { + "id": "320335", + "ident": "CKP7", + "type": "heliport", + "name": "Sensenbrenner Hospital Heliport", + "latitude_deg": "49.4264", + "longitude_deg": "-82.426501", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kapuskasing", + "scheduled_service": "no", + "gps_code": "CKP7", + "local_code": "CKP7" + }, + { + "id": "28345", + "ident": "CKP8", + "type": "seaplane_base", + "name": "Obre Lake/North of Sixty Seaplane Base", + "latitude_deg": "60.3203010559082", + "longitude_deg": "-103.12699890136719", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no", + "gps_code": "CKP8", + "local_code": "CKP8" + }, + { + "id": "1217", + "ident": "CKQ2", + "type": "small_airport", + "name": "Squaw Rapids Airport", + "latitude_deg": "53.6786003112793", + "longitude_deg": "-103.3499984741211", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Squaw Rapids", + "scheduled_service": "no", + "gps_code": "CKQ2", + "local_code": "CKQ2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Squaw_Rapids_Airport", + "keywords": "KQ2" + }, + { + "id": "1218", + "ident": "CKQ3", + "type": "small_airport", + "name": "North Spirit Lake Airport", + "latitude_deg": "52.4900016784668", + "longitude_deg": "-92.97109985351562", + "elevation_ft": "1082", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "North Spirit Lake", + "scheduled_service": "yes", + "gps_code": "CKQ3", + "iata_code": "YNO", + "local_code": "CKQ3", + "wikipedia_link": "https://en.wikipedia.org/wiki/North_Spirit_Lake_Airport", + "keywords": "KQ3" + }, + { + "id": "28391", + "ident": "CKQ4", + "type": "seaplane_base", + "name": "Rainy River Seaplane Base", + "latitude_deg": "48.71670150756836", + "longitude_deg": "-94.56670379638672", + "elevation_ft": "1062", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CKQ4", + "local_code": "CKQ4" + }, + { + "id": "1219", + "ident": "CKQ5", + "type": "small_airport", + "name": "Lucky Lake Airport", + "latitude_deg": "50.99420166015625", + "longitude_deg": "-107.13099670410156", + "elevation_ft": "2084", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Lucky Lake", + "scheduled_service": "no", + "gps_code": "CKQ5", + "local_code": "CKQ5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lucky_Lake_Airport", + "keywords": "KQ5" + }, + { + "id": "1220", + "ident": "CKQ6", + "type": "small_airport", + "name": "Erickson Municipal Airport", + "latitude_deg": "50.4994010925293", + "longitude_deg": "-99.89779663085938", + "elevation_ft": "2114", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Erickson", + "scheduled_service": "no", + "gps_code": "CKQ6", + "local_code": "CKQ6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Erickson_Municipal_Airport", + "keywords": "KQ6" + }, + { + "id": "1221", + "ident": "CKQ7", + "type": "small_airport", + "name": "Vermilion Bay Airport", + "latitude_deg": "49.87969970703125", + "longitude_deg": "-93.4364013671875", + "elevation_ft": "1284", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Vermilion Bay", + "scheduled_service": "no", + "gps_code": "CKQ7", + "local_code": "CKQ7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vermilion_Bay_Airport", + "keywords": "KQ7" + }, + { + "id": "1222", + "ident": "CKQ8", + "type": "small_airport", + "name": "McArthur River Airport", + "latitude_deg": "57.76750183105469", + "longitude_deg": "-105.02400207519531", + "elevation_ft": "1718", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Mcarthur River", + "scheduled_service": "no", + "gps_code": "CKQ8", + "local_code": "CKQ8", + "wikipedia_link": "https://en.wikipedia.org/wiki/McArthur_River_Airport", + "keywords": "KQ8" + }, + { + "id": "1223", + "ident": "CKQ9", + "type": "small_airport", + "name": "Pine Dock Airport", + "latitude_deg": "51.619998931884766", + "longitude_deg": "-96.81079864501953", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Pine Dock", + "scheduled_service": "no", + "gps_code": "CKQ9", + "local_code": "CKQ9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pine_Dock_Airport", + "keywords": "KQ9" + }, + { + "id": "312535", + "ident": "CKR", + "type": "small_airport", + "name": "Crane Island Airstrip", + "latitude_deg": "48.5978", + "longitude_deg": "-122.9979", + "elevation_ft": "108", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Crane Island", + "scheduled_service": "no", + "iata_code": "CKR" + }, + { + "id": "1224", + "ident": "CKR3", + "type": "closed", + "name": "Ste. Rose du Lac Airport", + "latitude_deg": "51.040798", + "longitude_deg": "-99.494784", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Ste. Rose du Lac", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ste._Rose_du_Lac_Airport", + "keywords": "CKR3" + }, + { + "id": "1225", + "ident": "CKR4", + "type": "small_airport", + "name": "Lundar Airport", + "latitude_deg": "50.70330047607422", + "longitude_deg": "-98.05670166015625", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Lundar", + "scheduled_service": "no", + "gps_code": "CKR4", + "local_code": "CKR4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lundar_Airport", + "keywords": "KR4" + }, + { + "id": "1226", + "ident": "CKR5", + "type": "closed", + "name": "Lumsden (Metz) Airport", + "latitude_deg": "50.717201232899995", + "longitude_deg": "-104.96900177", + "elevation_ft": "1791", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Lumsden", + "scheduled_service": "no", + "gps_code": "CKR5", + "local_code": "CKR5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lumsden_(Metz)_Airport", + "keywords": "KR5" + }, + { + "id": "1227", + "ident": "CKR7", + "type": "small_airport", + "name": "Virden (Gabrielle Farm) Airport", + "latitude_deg": "49.784698486328125", + "longitude_deg": "-100.95600128173828", + "elevation_ft": "1440", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Virden", + "scheduled_service": "no", + "gps_code": "CKR7", + "local_code": "CKR7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Virden_(Gabrielle_Farm)_Airport", + "keywords": "KR7" + }, + { + "id": "1228", + "ident": "CKR9", + "type": "closed", + "name": "Outlook Airport", + "latitude_deg": "51.482498", + "longitude_deg": "-107.037003", + "elevation_ft": "1771", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Outlook", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Outlook_Airport", + "keywords": "KR9" + }, + { + "id": "320819", + "ident": "CKS2", + "type": "seaplane_base", + "name": "Kennisis Lake Seaplane Base", + "latitude_deg": "45.234", + "longitude_deg": "-78.622", + "elevation_ft": "1227", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kennisis Lake", + "scheduled_service": "no", + "gps_code": "CKS2", + "local_code": "CKS2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kennisis_Lake_Water_Aerodrome" + }, + { + "id": "1229", + "ident": "CKS3", + "type": "small_airport", + "name": "Cudworth Airport", + "latitude_deg": "52.48809814453125", + "longitude_deg": "-105.76399993896484", + "elevation_ft": "1875", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Cudworth", + "scheduled_service": "no", + "gps_code": "CKS3", + "local_code": "CKS3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cudworth_Airport", + "keywords": "KS3" + }, + { + "id": "28392", + "ident": "CKS4", + "type": "seaplane_base", + "name": "Red Lake Seaplane Base", + "latitude_deg": "51.03329849243164", + "longitude_deg": "-93.83329772949219", + "elevation_ft": "1165", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CKS4", + "local_code": "CKS4" + }, + { + "id": "1230", + "ident": "CKS6", + "type": "small_airport", + "name": "Bryant Airport", + "latitude_deg": "49.40999984741211", + "longitude_deg": "-103.14399719238281", + "elevation_ft": "1970", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Estevan", + "scheduled_service": "no", + "gps_code": "CKS6", + "local_code": "CKS6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Estevan/Bryant_Airport", + "keywords": "KS6" + }, + { + "id": "1231", + "ident": "CKS7", + "type": "small_airport", + "name": "Wadena Airport", + "latitude_deg": "51.92944807589999", + "longitude_deg": "-103.833761215", + "elevation_ft": "1740", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Wadena", + "scheduled_service": "no", + "gps_code": "CKS7", + "local_code": "CKS7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wadena_Airport", + "keywords": "KS7" + }, + { + "id": "1232", + "ident": "CKS8", + "type": "small_airport", + "name": "Cree Lake (Crystal Lodge) Airport", + "latitude_deg": "57.464199", + "longitude_deg": "-106.748001", + "elevation_ft": "1615", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Cree Lake", + "scheduled_service": "no", + "gps_code": "CKS8", + "local_code": "CKS8", + "home_link": "http://www.creelake.com/map-and-flight.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cree_Lake_(Crystal_Lodge)_Airport", + "keywords": "KS8, YFN" + }, + { + "id": "1233", + "ident": "CKS9", + "type": "small_airport", + "name": "Shepherd's Landing Airport", + "latitude_deg": "44.11750030517578", + "longitude_deg": "-81.69830322265625", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kincardine", + "scheduled_service": "no", + "gps_code": "CKS9", + "local_code": "CKS9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kincardine/Shepherd's_Landing_Airport", + "keywords": "KS9" + }, + { + "id": "1234", + "ident": "CKT2", + "type": "closed", + "name": "Thompson (Canadian Helicopters) Heliport", + "latitude_deg": "55.766700744628906", + "longitude_deg": "-97.81670379638672", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Thompson", + "scheduled_service": "no", + "gps_code": "CKT2", + "local_code": "CKT2", + "keywords": "KT2" + }, + { + "id": "28336", + "ident": "CKT3", + "type": "seaplane_base", + "name": "Nestor Falls Seaplane Base", + "latitude_deg": "49.11669921875", + "longitude_deg": "-93.91670227050781", + "elevation_ft": "1076", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CKT3", + "local_code": "CKT3" + }, + { + "id": "28393", + "ident": "CKT4", + "type": "seaplane_base", + "name": "Red Sucker Lake Seaplane Base", + "latitude_deg": "54.154701232910156", + "longitude_deg": "-93.56330108642578", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "gps_code": "CKT4", + "local_code": "CKT4" + }, + { + "id": "1235", + "ident": "CKT5", + "type": "small_airport", + "name": "Hartney Airport", + "latitude_deg": "49.45000076293945", + "longitude_deg": "-100.55000305175781", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Hartney", + "scheduled_service": "no", + "gps_code": "CKT5", + "local_code": "CKT5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hartney_Airport", + "keywords": "KT5" + }, + { + "id": "321784", + "ident": "CKT6", + "type": "heliport", + "name": "St-Remi-D'Amherst / Kanata Tremblant Resort Heliport", + "latitude_deg": "45.9916667", + "longitude_deg": "-74.7497222", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CKT6", + "local_code": "CKT6" + }, + { + "id": "1236", + "ident": "CKT7", + "type": "small_airport", + "name": "Wakaw Airport", + "latitude_deg": "52.6490522523", + "longitude_deg": "-105.763063431", + "elevation_ft": "1660", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Wakaw", + "scheduled_service": "no", + "gps_code": "CKT7", + "local_code": "CKT7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wakaw_Airport", + "keywords": "KT7" + }, + { + "id": "28369", + "ident": "CKT8", + "type": "seaplane_base", + "name": "Pine Dock Seaplane Base", + "latitude_deg": "51.610801696777344", + "longitude_deg": "-96.81719970703125", + "elevation_ft": "712", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "gps_code": "CKT8", + "local_code": "CKT8" + }, + { + "id": "16717", + "ident": "CKU", + "type": "small_airport", + "name": "Cordova Municipal Airport", + "latitude_deg": "60.5438995361", + "longitude_deg": "-145.727005005", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cordova", + "scheduled_service": "no", + "gps_code": "CKU", + "iata_code": "CKU", + "local_code": "CKU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cordova_Municipal_Airport" + }, + { + "id": "1237", + "ident": "CKU2", + "type": "small_airport", + "name": "Treherne Airport", + "latitude_deg": "49.631099700927734", + "longitude_deg": "-98.66639709472656", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Treherne", + "scheduled_service": "no", + "gps_code": "CKU2", + "local_code": "CKU2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Treherne_Airport", + "keywords": "KU2" + }, + { + "id": "28340", + "ident": "CKU3", + "type": "seaplane_base", + "name": "Nipawin Seaplane Base", + "latitude_deg": "53.400001525878906", + "longitude_deg": "-104.01699829101562", + "elevation_ft": "1029", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no", + "gps_code": "CKU3", + "local_code": "CKU3" + }, + { + "id": "1238", + "ident": "CKU4", + "type": "small_airport", + "name": "Cut Knife Airport", + "latitude_deg": "52.7401", + "longitude_deg": "-109.014415", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Cut Knife", + "scheduled_service": "no", + "gps_code": "CKU4", + "local_code": "CKU4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cut_Knife_Airport", + "keywords": "KU4" + }, + { + "id": "1239", + "ident": "CKU5", + "type": "small_airport", + "name": "Imperial Airport", + "latitude_deg": "51.349998474121094", + "longitude_deg": "-105.4000015258789", + "elevation_ft": "1665", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Imperial", + "scheduled_service": "no", + "gps_code": "CKU5", + "local_code": "CKU5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Imperial_Airport", + "keywords": "KU5" + }, + { + "id": "1240", + "ident": "CKU6", + "type": "small_airport", + "name": "Grenfell Airport", + "latitude_deg": "50.4192008972168", + "longitude_deg": "-102.93499755859375", + "elevation_ft": "1964", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Grenfell", + "scheduled_service": "no", + "gps_code": "CKU6", + "local_code": "CKU6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grenfell_Airport", + "keywords": "KU6" + }, + { + "id": "1241", + "ident": "CKU7", + "type": "small_airport", + "name": "Watrous Airport", + "latitude_deg": "51.68713736", + "longitude_deg": "-105.362319946", + "elevation_ft": "1700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Watrous", + "scheduled_service": "no", + "gps_code": "CKU7", + "local_code": "CKU7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Watrous_Airport", + "keywords": "KU7" + }, + { + "id": "1242", + "ident": "CKV2", + "type": "small_airport", + "name": "Kelvington Airport", + "latitude_deg": "52.13330078125", + "longitude_deg": "-103.53500366210938", + "elevation_ft": "1860", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Kelvington", + "scheduled_service": "no", + "gps_code": "CKV2", + "local_code": "CKV2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kelvington_Airport", + "keywords": "KV2" + }, + { + "id": "1243", + "ident": "CKV3", + "type": "heliport", + "name": "Dryden Best Western Heliport", + "latitude_deg": "49.78329849243164", + "longitude_deg": "-92.83329772949219", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Dryden", + "scheduled_service": "no", + "gps_code": "CKV3", + "local_code": "CKV3", + "keywords": "KV3" + }, + { + "id": "1244", + "ident": "CKV4", + "type": "small_airport", + "name": "North of Sixty Airport", + "latitude_deg": "60.316398620605", + "longitude_deg": "-103.12899780273", + "elevation_ft": "1195", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Obre Lake", + "scheduled_service": "no", + "gps_code": "CKV4", + "iata_code": "YDW", + "local_code": "CKV4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Obre_Lake/North_of_Sixty_Airport", + "keywords": "KV4" + }, + { + "id": "28428", + "ident": "CKV5", + "type": "seaplane_base", + "name": "Stewart Lake Seaplane Base", + "latitude_deg": "49.8167", + "longitude_deg": "-93.716698", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CKV5", + "local_code": "CKV5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stewart_Lake_Water_Aerodrome", + "keywords": "KV5" + }, + { + "id": "1245", + "ident": "CKV6", + "type": "small_airport", + "name": "Churchbridge Airport", + "latitude_deg": "51.016700744628906", + "longitude_deg": "-101.81700134277344", + "elevation_ft": "1745", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Churchbridge", + "scheduled_service": "no", + "gps_code": "CKV6", + "local_code": "CKV6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Churchbridge_Airport", + "keywords": "KV6" + }, + { + "id": "1246", + "ident": "CKV7", + "type": "small_airport", + "name": "Wawota Airport", + "latitude_deg": "49.8944823433", + "longitude_deg": "-102.03045845", + "elevation_ft": "2168", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Wawota", + "scheduled_service": "no", + "gps_code": "CKV7", + "local_code": "CKV7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wawota_Airport", + "keywords": "KV7" + }, + { + "id": "1247", + "ident": "CKV8", + "type": "heliport", + "name": "Kentville (Valley Regional Hospital) Heliport", + "latitude_deg": "45.08171042359999", + "longitude_deg": "-64.5002254844", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Kentville", + "scheduled_service": "no", + "gps_code": "CKV8", + "local_code": "CKV8", + "keywords": "KV8" + }, + { + "id": "1248", + "ident": "CKV9", + "type": "heliport", + "name": "Country Gardens B&B Heliport", + "latitude_deg": "58.350602", + "longitude_deg": "-115.948998", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Fort Vermilion", + "scheduled_service": "no", + "gps_code": "CKV9", + "local_code": "CKV9" + }, + { + "id": "28337", + "ident": "CKW3", + "type": "seaplane_base", + "name": "Nestor Falls/Sabaskong Bay Seaplane Base", + "latitude_deg": "49.13330078125", + "longitude_deg": "-93.93329620361328", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CKW3", + "local_code": "CKW3" + }, + { + "id": "28429", + "ident": "CKW5", + "type": "seaplane_base", + "name": "Stony Rapids Seaplane Base", + "latitude_deg": "59.2599983215332", + "longitude_deg": "-105.83100128173828", + "elevation_ft": "686", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no", + "gps_code": "CKW5", + "local_code": "CKW5" + }, + { + "id": "1249", + "ident": "CKW6", + "type": "small_airport", + "name": "Davin Lake Airport", + "latitude_deg": "56.88330078125", + "longitude_deg": "-103.58300018310547", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Davin Lake", + "scheduled_service": "no", + "gps_code": "CKW6", + "local_code": "CKW6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Davin_Lake_Airport", + "keywords": "KW6" + }, + { + "id": "1250", + "ident": "CKW7", + "type": "closed", + "name": "Wilkie Airport", + "latitude_deg": "52.403099", + "longitude_deg": "-108.720001", + "elevation_ft": "2149", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Wilkie", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wilkie_Airport", + "keywords": "KW7, CKW7" + }, + { + "id": "28275", + "ident": "CKW8", + "type": "seaplane_base", + "name": "Knee Lake Seaplane Base", + "latitude_deg": "54.89080047607422", + "longitude_deg": "-94.80750274658203", + "elevation_ft": "577", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "gps_code": "CKW8", + "local_code": "CKW8" + }, + { + "id": "16718", + "ident": "CKX", + "type": "small_airport", + "name": "Chicken Airport", + "latitude_deg": "64.0712966919", + "longitude_deg": "-141.95199585", + "elevation_ft": "1640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chicken", + "scheduled_service": "no", + "gps_code": "CKX", + "iata_code": "CKX", + "local_code": "CKX" + }, + { + "id": "1251", + "ident": "CKX2", + "type": "closed", + "name": "Warren / Woodlands Airport", + "latitude_deg": "50.159401", + "longitude_deg": "-97.591104", + "elevation_ft": "817", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Warren", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Warren/Woodlands_Airport", + "keywords": "KX2, CKX2" + }, + { + "id": "1252", + "ident": "CKX3", + "type": "closed", + "name": "Eagle River Airport", + "latitude_deg": "49.7556525536", + "longitude_deg": "-93.1401157379", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Eagle River", + "scheduled_service": "no", + "gps_code": "CKX3", + "local_code": "CKX3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eagle_River_Airport", + "keywords": "KX3" + }, + { + "id": "1253", + "ident": "CKX4", + "type": "small_airport", + "name": "Fisher Branch Airport", + "latitude_deg": "51.07863", + "longitude_deg": "-97.46976", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Fisher Branch", + "scheduled_service": "no", + "gps_code": "CKX4", + "local_code": "CKX4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fisher_Branch_Airport", + "keywords": "KX4" + }, + { + "id": "1254", + "ident": "CKX5", + "type": "small_airport", + "name": "Dinsmore Airport", + "latitude_deg": "51.33060073852539", + "longitude_deg": "-107.43800354003906", + "elevation_ft": "1900", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Dinsmore", + "scheduled_service": "no", + "gps_code": "CKX5", + "local_code": "CKX5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dinsmore_Airport_(Saskatchewan)", + "keywords": "KX5" + }, + { + "id": "1255", + "ident": "CKX8", + "type": "small_airport", + "name": "Big River Airport", + "latitude_deg": "53.83610153198242", + "longitude_deg": "-107.00900268554688", + "elevation_ft": "1592", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Big River", + "scheduled_service": "no", + "gps_code": "CKX8", + "local_code": "CKX8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Big_River_Airport", + "keywords": "KX8" + }, + { + "id": "1256", + "ident": "CKY2", + "type": "small_airport", + "name": "Whitewood Airport", + "latitude_deg": "50.3347783814", + "longitude_deg": "-102.274475098", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Whitewood", + "scheduled_service": "no", + "gps_code": "CKY2", + "local_code": "CKY2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Whitewood_Airport", + "keywords": "KY2" + }, + { + "id": "28344", + "ident": "CKY3", + "type": "seaplane_base", + "name": "Norway House Seaplane Base", + "latitude_deg": "53.98529815673828", + "longitude_deg": "-97.79389953613281", + "elevation_ft": "712", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "scheduled_service": "no", + "gps_code": "CKY3", + "local_code": "CKY3" + }, + { + "id": "321910", + "ident": "CKY4", + "type": "seaplane_base", + "name": "Killarney (Killarney Mountain Lodge) Seaplane Base", + "latitude_deg": "45.96882", + "longitude_deg": "-81.507547", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Killarney", + "scheduled_service": "no", + "gps_code": "CKY4", + "local_code": "CKY4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Killarney_(Killarney_Mountain_Lodge)_Water_Aerodrome" + }, + { + "id": "1257", + "ident": "CKY6", + "type": "closed", + "name": "Gainsborough Airport", + "latitude_deg": "49.1833000183", + "longitude_deg": "-101.432998657", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Gainsborough", + "scheduled_service": "no", + "gps_code": "CKY6", + "local_code": "CKY6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gainsborough_Airport", + "keywords": "KY6" + }, + { + "id": "1258", + "ident": "CKY8", + "type": "small_airport", + "name": "Arkayla Springs Airport", + "latitude_deg": "51.203569", + "longitude_deg": "-114.776329", + "elevation_ft": "4000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Cochrane", + "scheduled_service": "no", + "gps_code": "CKY8", + "local_code": "CKY8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cochrane/Arkayla_Springs_Airport" + }, + { + "id": "1259", + "ident": "CKZ2", + "type": "closed", + "name": "Willow Bunch Airport", + "latitude_deg": "49.400002", + "longitude_deg": "-105.667", + "elevation_ft": "2427", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Willow Bunch", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Willow_Bunch_Airport", + "keywords": "KZ2, CKZ2" + }, + { + "id": "1260", + "ident": "CKZ3", + "type": "small_airport", + "name": "Elk Island Airport", + "latitude_deg": "54.6713981628418", + "longitude_deg": "-94.14530181884766", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Elk Island", + "scheduled_service": "no", + "gps_code": "CKZ3", + "local_code": "CKZ3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elk_Island_Airport", + "keywords": "KZ3" + }, + { + "id": "353316", + "ident": "CKZ5", + "type": "small_airport", + "name": "Keizers Air Park", + "latitude_deg": "44.1725", + "longitude_deg": "-66.16249", + "elevation_ft": "134", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Meteghan", + "scheduled_service": "no", + "gps_code": "CKZ5", + "local_code": "CKZ5" + }, + { + "id": "1261", + "ident": "CKZ6", + "type": "small_airport", + "name": "Louise Municipal Airport", + "latitude_deg": "49.14720153808594", + "longitude_deg": "-98.88079833984375", + "elevation_ft": "1525", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Crystal City-Pilot Mound", + "scheduled_service": "no", + "gps_code": "CKZ6", + "local_code": "CKZ6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Crystal_City-Pilot_Mound/Louise_Municipal_Airport", + "keywords": "KZ6" + }, + { + "id": "1262", + "ident": "CKZ7", + "type": "small_airport", + "name": "Winkler Airport", + "latitude_deg": "49.166900634765625", + "longitude_deg": "-97.92030334472656", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Winkler", + "scheduled_service": "no", + "gps_code": "CKZ7", + "local_code": "CKZ7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Winkler_Airport", + "keywords": "KZ7" + }, + { + "id": "314770", + "ident": "CL-0001", + "type": "closed", + "name": "Bahia Catalina Airport", + "latitude_deg": "-53.1315", + "longitude_deg": "-70.87", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Punta Arenas", + "scheduled_service": "no" + }, + { + "id": "314771", + "ident": "CL-0002", + "type": "closed", + "name": "Gente Grande Airport", + "latitude_deg": "-53.064", + "longitude_deg": "-70.26", + "elevation_ft": "36", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Porvenir", + "scheduled_service": "no" + }, + { + "id": "314772", + "ident": "CL-0003", + "type": "closed", + "name": "Kimiri Ayke Airport", + "latitude_deg": "-52.403", + "longitude_deg": "-69.704", + "elevation_ft": "85", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "San Gregorio", + "scheduled_service": "no" + }, + { + "id": "314773", + "ident": "CL-0004", + "type": "small_airport", + "name": "Cinco de Enero Airport", + "latitude_deg": "-52.595", + "longitude_deg": "-70.3521", + "elevation_ft": "84", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Santa Maria", + "scheduled_service": "no" + }, + { + "id": "314774", + "ident": "CL-0005", + "type": "small_airport", + "name": "Oazy Harbour Airport", + "latitude_deg": "-52.5427", + "longitude_deg": "-70.535", + "elevation_ft": "161", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "scheduled_service": "no" + }, + { + "id": "314775", + "ident": "CL-0006", + "type": "small_airport", + "name": "Onaisin Airport", + "latitude_deg": "-53.3812", + "longitude_deg": "-69.293", + "elevation_ft": "39", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Onaisin", + "scheduled_service": "no" + }, + { + "id": "314781", + "ident": "CL-0007", + "type": "small_airport", + "name": "Arco Iris Airport", + "latitude_deg": "-53.8924", + "longitude_deg": "-68.8", + "elevation_ft": "342", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Rio Grande", + "scheduled_service": "no" + }, + { + "id": "332832", + "ident": "CL-0008", + "type": "heliport", + "name": "Clinica Alemana Helipad", + "latitude_deg": "-33.392103", + "longitude_deg": "-70.572969", + "elevation_ft": "2485", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clinica_Alemana_de_Santiago" + }, + { + "id": "348450", + "ident": "CL-0009", + "type": "closed", + "name": "Campo Cerro Manantiales Airport", + "latitude_deg": "-52.54046", + "longitude_deg": "-69.3702", + "elevation_ft": "60", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Primavera", + "scheduled_service": "no" + }, + { + "id": "348520", + "ident": "CL-0010", + "type": "small_airport", + "name": "Mónaco Airport", + "latitude_deg": "-34.263583", + "longitude_deg": "-71.96753", + "elevation_ft": "475", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Pichilemu", + "scheduled_service": "no", + "gps_code": "SCMN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mónaco_Aerodrome" + }, + { + "id": "348522", + "ident": "CL-0011", + "type": "closed", + "name": "Marimenuco Airfield", + "latitude_deg": "-38.7391", + "longitude_deg": "-71.2018", + "elevation_ft": "3717", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AT", + "municipality": "Lonquimay", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marimenuco_Airfield", + "keywords": "SCNU" + }, + { + "id": "348523", + "ident": "CL-0012", + "type": "small_airport", + "name": "Achibueno Airport", + "latitude_deg": "-36.141999", + "longitude_deg": "-71.374", + "elevation_ft": "1673", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Linares", + "scheduled_service": "no", + "gps_code": "SCAV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Achibueno_Airport" + }, + { + "id": "348526", + "ident": "CL-0013", + "type": "small_airport", + "name": "Catapilco Airport", + "latitude_deg": "-32.563805", + "longitude_deg": "-71.287698", + "elevation_ft": "309", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Zapallar", + "scheduled_service": "no", + "gps_code": "SCCP" + }, + { + "id": "348540", + "ident": "CL-0014", + "type": "small_airport", + "name": "Domeyko Airfield", + "latitude_deg": "-28.96787", + "longitude_deg": "-70.922703", + "elevation_ft": "2403", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AT", + "municipality": "Domeyko", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Domeyko_Airfield", + "keywords": "SCDK" + }, + { + "id": "348811", + "ident": "CL-0015", + "type": "heliport", + "name": "Torre San Ramón Helipad", + "latitude_deg": "-33.420741", + "longitude_deg": "-70.606438", + "elevation_ft": "2133", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHSR" + }, + { + "id": "348831", + "ident": "CL-0016", + "type": "heliport", + "name": "Edificio Torre Nueva Santa María Helipad", + "latitude_deg": "-33.422742", + "longitude_deg": "-70.621952", + "elevation_ft": "2400", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "local_code": "ETNSM" + }, + { + "id": "354333", + "ident": "CL-0017", + "type": "small_airport", + "name": "Peldehue Aerodrome", + "latitude_deg": "-33.118575", + "longitude_deg": "-70.683074", + "elevation_ft": "2509", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Peldehue", + "scheduled_service": "no", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aer%C3%B3dromo_Peldehue", + "keywords": "AERODROMO PELDEHUE" + }, + { + "id": "1641", + "ident": "CL-SC49", + "type": "small_airport", + "name": "Oficina Victoria Airport", + "latitude_deg": "-20.734699249267578", + "longitude_deg": "-69.62570190429688", + "elevation_ft": "3280", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-TA", + "municipality": "Oficina Victoria", + "scheduled_service": "no", + "gps_code": "SC49" + }, + { + "id": "16719", + "ident": "CL00", + "type": "heliport", + "name": "USC University Hospital Heliport", + "latitude_deg": "34.061623", + "longitude_deg": "-118.201585", + "elevation_ft": "476", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "CL00", + "local_code": "CL00" + }, + { + "id": "16720", + "ident": "CL01", + "type": "small_airport", + "name": "Eagle Field", + "latitude_deg": "36.899898529052734", + "longitude_deg": "-120.66799926757812", + "elevation_ft": "153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Dos Palos", + "scheduled_service": "no", + "gps_code": "CL01", + "local_code": "CL01" + }, + { + "id": "16721", + "ident": "CL02", + "type": "heliport", + "name": "Kilroy Airport Center Heliport", + "latitude_deg": "33.929875", + "longitude_deg": "-118.384799", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "El Segundo", + "scheduled_service": "no", + "gps_code": "CL02", + "local_code": "CL02" + }, + { + "id": "16722", + "ident": "CL03", + "type": "heliport", + "name": "Airport Towers Number 1 Heliport", + "latitude_deg": "33.916916", + "longitude_deg": "-118.395211", + "elevation_ft": "404", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "El Segundo", + "scheduled_service": "no", + "gps_code": "CL03", + "local_code": "CL03" + }, + { + "id": "16723", + "ident": "CL04", + "type": "small_airport", + "name": "Sky Way Estates Airport", + "latitude_deg": "38.410701751708984", + "longitude_deg": "-121.23500061035156", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Elk Grove", + "scheduled_service": "no", + "gps_code": "CL04", + "local_code": "CL04" + }, + { + "id": "16724", + "ident": "CL05", + "type": "heliport", + "name": "Wells Fargo Bank Operations Center Heliport", + "latitude_deg": "37.547959", + "longitude_deg": "-121.979581", + "elevation_ft": "112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fremont", + "scheduled_service": "no", + "gps_code": "CL05", + "local_code": "CL05" + }, + { + "id": "16725", + "ident": "CL06", + "type": "heliport", + "name": "Glendale Adventist Medical Center Heliport", + "latitude_deg": "34.151708", + "longitude_deg": "-118.230561", + "elevation_ft": "717", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no", + "gps_code": "CL06", + "local_code": "CL06" + }, + { + "id": "16726", + "ident": "CL07", + "type": "heliport", + "name": "Queen Mary Heliport", + "latitude_deg": "33.749094", + "longitude_deg": "-118.19014", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no", + "gps_code": "CL07", + "local_code": "CL07" + }, + { + "id": "16727", + "ident": "CL08", + "type": "heliport", + "name": "Biltmore Hotel Heliport", + "latitude_deg": "34.049326", + "longitude_deg": "-118.253676", + "elevation_ft": "443", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "CL08", + "local_code": "CL08" + }, + { + "id": "16728", + "ident": "CL09", + "type": "closed", + "name": "Sharp Chula Vista Medical Center Heliport", + "latitude_deg": "32.619499", + "longitude_deg": "-117.023003", + "elevation_ft": "446", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chula Vista", + "scheduled_service": "no", + "keywords": "CL09" + }, + { + "id": "16729", + "ident": "CL10", + "type": "heliport", + "name": "Anacapa View Estates Heliport", + "latitude_deg": "34.04169845581055", + "longitude_deg": "-118.85299682617188", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Malibu", + "scheduled_service": "no", + "gps_code": "CL10", + "local_code": "CL10" + }, + { + "id": "16730", + "ident": "CL11", + "type": "small_airport", + "name": "Ferdun Ranch Airport", + "latitude_deg": "38.13460159301758", + "longitude_deg": "-121.22000122070312", + "elevation_ft": "64", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lodi", + "scheduled_service": "no", + "gps_code": "CL11", + "local_code": "CL11" + }, + { + "id": "16731", + "ident": "CL12", + "type": "heliport", + "name": "Saint Vincent Medical Center Heliport", + "latitude_deg": "34.063769", + "longitude_deg": "-118.272503", + "elevation_ft": "464", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "CL12", + "local_code": "CL12", + "keywords": "Saint Vincent Professional Office Building" + }, + { + "id": "16732", + "ident": "CL13", + "type": "small_airport", + "name": "Brian Ranch Airport", + "latitude_deg": "34.51530075073242", + "longitude_deg": "-117.76200103759766", + "elevation_ft": "3230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palmdale", + "scheduled_service": "no", + "gps_code": "CL13", + "local_code": "CL13" + }, + { + "id": "16733", + "ident": "CL14", + "type": "heliport", + "name": "Huntington Memorial Hospital Heliport", + "latitude_deg": "34.134335", + "longitude_deg": "-118.152124", + "elevation_ft": "854", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pasadena", + "scheduled_service": "no", + "gps_code": "CL14", + "local_code": "CL14" + }, + { + "id": "16734", + "ident": "CL15", + "type": "heliport", + "name": "SCE Ridgecrest Service Center Heliport", + "latitude_deg": "35.614653", + "longitude_deg": "-117.668257", + "elevation_ft": "2288", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ridgecrest", + "scheduled_service": "no", + "gps_code": "CL15", + "local_code": "CL15" + }, + { + "id": "16735", + "ident": "CL16", + "type": "heliport", + "name": "Turner Field/Amphibious Base Heliport", + "latitude_deg": "32.6784498367", + "longitude_deg": "-117.155585289", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Coronado", + "scheduled_service": "no", + "gps_code": "CL16", + "local_code": "CL16" + }, + { + "id": "16736", + "ident": "CL17", + "type": "heliport", + "name": "Barstow Community Hospital Heliport", + "latitude_deg": "34.894051", + "longitude_deg": "-117.018276", + "elevation_ft": "2255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Barstow", + "scheduled_service": "no", + "gps_code": "CL17", + "local_code": "CL17" + }, + { + "id": "16737", + "ident": "CL18", + "type": "closed", + "name": "Danby Airstrip", + "latitude_deg": "34.555", + "longitude_deg": "-115.356003", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Danby", + "scheduled_service": "no", + "keywords": "CL18" + }, + { + "id": "16738", + "ident": "CL19", + "type": "heliport", + "name": "Bank of America Glendale Heliport", + "latitude_deg": "34.155373", + "longitude_deg": "-118.257008", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no", + "gps_code": "CL19", + "local_code": "CL19" + }, + { + "id": "16739", + "ident": "CL20", + "type": "closed", + "name": "Wells Fargo-Cv Heliport", + "latitude_deg": "34.041666", + "longitude_deg": "-118.272581", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "CL20", + "local_code": "CL20" + }, + { + "id": "16740", + "ident": "CL21", + "type": "heliport", + "name": "Sutter Amador Hospital Heliport", + "latitude_deg": "38.349998474121094", + "longitude_deg": "-120.76300048828125", + "elevation_ft": "1246", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "CL21", + "local_code": "CL21" + }, + { + "id": "16741", + "ident": "CL22", + "type": "heliport", + "name": "Sheriff's Station Heliport", + "latitude_deg": "34.41573", + "longitude_deg": "-118.551377", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Valencia", + "scheduled_service": "no", + "gps_code": "CL22", + "local_code": "CL22" + }, + { + "id": "16742", + "ident": "CL23", + "type": "small_airport", + "name": "Jones/Ag-Viation Airport", + "latitude_deg": "39.459598541259766", + "longitude_deg": "-121.69599914550781", + "elevation_ft": "109", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Biggs", + "scheduled_service": "no", + "gps_code": "CL23", + "local_code": "CL23" + }, + { + "id": "16743", + "ident": "CL24", + "type": "small_airport", + "name": "Kindsvater Ranch Airport", + "latitude_deg": "36.84989929199219", + "longitude_deg": "-119.51000213623047", + "elevation_ft": "529", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Clovis", + "scheduled_service": "no", + "gps_code": "CL24", + "local_code": "CL24" + }, + { + "id": "16744", + "ident": "CL25", + "type": "small_airport", + "name": "7R Ranch Airport", + "latitude_deg": "34.935552", + "longitude_deg": "-119.451901", + "elevation_ft": "3176", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "New Cuyama", + "scheduled_service": "no", + "gps_code": "CL25", + "local_code": "CL25" + }, + { + "id": "16745", + "ident": "CL26", + "type": "heliport", + "name": "Great Western Helistop", + "latitude_deg": "34.2387476702", + "longitude_deg": "-118.565926999", + "elevation_ft": "1018", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chatsworth", + "scheduled_service": "no", + "gps_code": "CL26", + "local_code": "CL26" + }, + { + "id": "16746", + "ident": "CL27", + "type": "heliport", + "name": "Wells Fargo-El Monte Heliport", + "latitude_deg": "34.07021", + "longitude_deg": "-118.071873", + "elevation_ft": "261", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "El Monte", + "scheduled_service": "no", + "gps_code": "CL27", + "local_code": "CL27" + }, + { + "id": "16747", + "ident": "CL28", + "type": "heliport", + "name": "Morongo Basin CHP Heliport", + "latitude_deg": "34.134168", + "longitude_deg": "-116.273929", + "elevation_ft": "2485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Joshua Tree", + "scheduled_service": "no", + "gps_code": "CL28", + "local_code": "CL28", + "home_link": "https://www.chp.ca.gov/Find-an-Office/Inland-Division/Offices/(870)-Morongo-Basin" + }, + { + "id": "16748", + "ident": "CL29", + "type": "small_airport", + "name": "Camino Airstrip", + "latitude_deg": "34.834999084472656", + "longitude_deg": "-114.95700073242188", + "elevation_ft": "2079", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Goffs", + "scheduled_service": "no", + "gps_code": "CL29", + "local_code": "CL29" + }, + { + "id": "16749", + "ident": "CL30", + "type": "closed", + "name": "Queensway Bay Heliport", + "latitude_deg": "33.754901", + "longitude_deg": "-118.194995", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no", + "gps_code": "CL30", + "local_code": "CL30" + }, + { + "id": "16750", + "ident": "CL31", + "type": "heliport", + "name": "Caltrans District 7 Heliport", + "latitude_deg": "34.05149841308594", + "longitude_deg": "-118.24299621582031", + "elevation_ft": "484", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "CL31", + "local_code": "CL31" + }, + { + "id": "16751", + "ident": "CL32", + "type": "heliport", + "name": "Garland Center Heliport", + "latitude_deg": "34.050972", + "longitude_deg": "-118.265542", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "CL32", + "local_code": "CL32", + "keywords": "FIB Administration & Operations Building Heliport" + }, + { + "id": "16752", + "ident": "CL33", + "type": "small_airport", + "name": "Pauma Valley Air Park", + "latitude_deg": "33.31060028076172", + "longitude_deg": "-116.99800109863281", + "elevation_ft": "756", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pauma Valley", + "scheduled_service": "no", + "gps_code": "CL33", + "local_code": "CL33" + }, + { + "id": "16753", + "ident": "CL34", + "type": "closed", + "name": "First Interstate Bank Heliport", + "latitude_deg": "34.2686", + "longitude_deg": "-118.718002", + "elevation_ft": "974", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Simi Valley", + "scheduled_service": "no", + "gps_code": "CL34", + "local_code": "CL34" + }, + { + "id": "16754", + "ident": "CL35", + "type": "small_airport", + "name": "Warner Springs Gliderport Airport", + "latitude_deg": "33.2845", + "longitude_deg": "-116.675003", + "elevation_ft": "2885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Warner Springs", + "scheduled_service": "no", + "gps_code": "CL35", + "local_code": "CL35" + }, + { + "id": "16755", + "ident": "CL36", + "type": "small_airport", + "name": "Allan Ranch Flight Park Ultralightport", + "latitude_deg": "38.569400787353516", + "longitude_deg": "-122.80400085449219", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Windsor", + "scheduled_service": "no", + "gps_code": "CL36", + "local_code": "CL36" + }, + { + "id": "16756", + "ident": "CL37", + "type": "heliport", + "name": "Enloe Medical Center Heliport", + "latitude_deg": "39.741952", + "longitude_deg": "-121.850191", + "elevation_ft": "253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chico", + "scheduled_service": "no", + "gps_code": "CL37", + "local_code": "CL37", + "keywords": "Enloe Hospital Heliport" + }, + { + "id": "16757", + "ident": "CL38", + "type": "heliport", + "name": "Swepi Beta Platform Eureka Heliport", + "latitude_deg": "33.563899993896484", + "longitude_deg": "-118.11799621582031", + "elevation_ft": "123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Huntington Beach", + "scheduled_service": "no", + "gps_code": "CL38", + "local_code": "CL38" + }, + { + "id": "16758", + "ident": "CL39", + "type": "heliport", + "name": "St. Helena Fire Department Heliport", + "latitude_deg": "38.548500061035156", + "longitude_deg": "-122.51100158691406", + "elevation_ft": "308", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "St Helena", + "scheduled_service": "no", + "gps_code": "CL39", + "local_code": "CL39" + }, + { + "id": "16759", + "ident": "CL40", + "type": "heliport", + "name": "Antelope Valley Service Center Heliport", + "latitude_deg": "34.647499084472656", + "longitude_deg": "-118.14600372314453", + "elevation_ft": "2522", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "CL40", + "local_code": "CL40" + }, + { + "id": "16760", + "ident": "CL41", + "type": "closed", + "name": "Oakland Convention Center Heliport", + "latitude_deg": "37.802399", + "longitude_deg": "-122.274002", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oakland", + "scheduled_service": "no", + "gps_code": "CL41", + "local_code": "CL41" + }, + { + "id": "16761", + "ident": "CL42", + "type": "closed", + "name": "Mission Viejo Company Helistop", + "latitude_deg": "33.572201", + "longitude_deg": "-117.725998", + "elevation_ft": "408", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Aliso Viejo", + "scheduled_service": "no", + "gps_code": "CL42", + "local_code": "CL42" + }, + { + "id": "16762", + "ident": "CL43", + "type": "closed", + "name": "Boeing Seal Beach (Ground Level) Heliport", + "latitude_deg": "33.755454", + "longitude_deg": "-118.086982", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Seal Beach", + "scheduled_service": "no", + "gps_code": "CL43", + "local_code": "CL43" + }, + { + "id": "16763", + "ident": "CL44", + "type": "closed", + "name": "Orange County Steel Salvage Heliport", + "latitude_deg": "33.848107", + "longitude_deg": "-117.85105", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Anaheim", + "scheduled_service": "no", + "keywords": "CL44" + }, + { + "id": "16764", + "ident": "CL45", + "type": "heliport", + "name": "North Net Training Authority Heliport", + "latitude_deg": "33.795054", + "longitude_deg": "-117.881025", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Anaheim", + "scheduled_service": "no", + "gps_code": "CL45", + "local_code": "CL45", + "keywords": "North Net Fire Training Heliport" + }, + { + "id": "16765", + "ident": "CL46", + "type": "small_airport", + "name": "Quail Lake Sky Park Airport", + "latitude_deg": "34.767799377441406", + "longitude_deg": "-118.73200225830078", + "elevation_ft": "3370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Gorman/Lancaster", + "scheduled_service": "no", + "gps_code": "CL46", + "local_code": "CL46" + }, + { + "id": "16766", + "ident": "CL47", + "type": "heliport", + "name": "Hoag Heliport", + "latitude_deg": "33.233993", + "longitude_deg": "-116.968628", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Valley Center", + "scheduled_service": "no", + "gps_code": "CL47", + "local_code": "CL47" + }, + { + "id": "16767", + "ident": "CL48", + "type": "closed", + "name": "VA Medical Center Long Beach Heliport", + "latitude_deg": "33.775799", + "longitude_deg": "-118.120003", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no", + "gps_code": "CL48", + "local_code": "CL48" + }, + { + "id": "16768", + "ident": "CL49", + "type": "heliport", + "name": "International Tower Heliport", + "latitude_deg": "34.046641", + "longitude_deg": "-118.261814", + "elevation_ft": "542", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "CL49", + "local_code": "CL49" + }, + { + "id": "16769", + "ident": "CL50", + "type": "heliport", + "name": "Westwood Gateway I Heliport", + "latitude_deg": "34.04785", + "longitude_deg": "-118.444923", + "elevation_ft": "321", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "CL50", + "local_code": "CL50" + }, + { + "id": "16770", + "ident": "CL51", + "type": "heliport", + "name": "Santa Rosa Memorial Hospital Heliport", + "latitude_deg": "38.44380187988281", + "longitude_deg": "-122.70099639892578", + "elevation_ft": "208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Rosa", + "scheduled_service": "no", + "gps_code": "CL51", + "local_code": "CL51" + }, + { + "id": "16771", + "ident": "CL52", + "type": "heliport", + "name": "San Joaquin General Hospital Heliport", + "latitude_deg": "37.887832", + "longitude_deg": "-121.282716", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stockton", + "scheduled_service": "no", + "gps_code": "CL52", + "local_code": "CL52" + }, + { + "id": "16772", + "ident": "CL53", + "type": "heliport", + "name": "Redbud Community Hospital Heliport", + "latitude_deg": "38.93457", + "longitude_deg": "-122.61933", + "elevation_ft": "1407", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Clearlake", + "scheduled_service": "no", + "gps_code": "CL53", + "local_code": "CL53" + }, + { + "id": "16773", + "ident": "CL54", + "type": "heliport", + "name": "Westside Towers Heliport", + "latitude_deg": "34.033279", + "longitude_deg": "-118.451849", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "CL54", + "local_code": "CL54" + }, + { + "id": "16774", + "ident": "CL55", + "type": "heliport", + "name": "SCE Serrano Substation Heliport", + "latitude_deg": "33.828505", + "longitude_deg": "-117.790578", + "elevation_ft": "697", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Orange", + "scheduled_service": "no", + "gps_code": "CL55", + "local_code": "CL55" + }, + { + "id": "16775", + "ident": "CL56", + "type": "small_airport", + "name": "Ranchaero Airport", + "latitude_deg": "39.719600677500004", + "longitude_deg": "-121.871002197", + "elevation_ft": "173", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chico", + "scheduled_service": "no", + "gps_code": "CL56", + "local_code": "CL56", + "keywords": "Formerly O23" + }, + { + "id": "16776", + "ident": "CL57", + "type": "heliport", + "name": "Torrey Pines Corporate Helistop", + "latitude_deg": "32.90890121459961", + "longitude_deg": "-117.24299621582031", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no", + "gps_code": "CL57", + "local_code": "CL57" + }, + { + "id": "16777", + "ident": "CL58", + "type": "heliport", + "name": "SCE Southeastern Division Heliport", + "latitude_deg": "33.73072", + "longitude_deg": "-117.847333", + "elevation_ft": "97", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Ana", + "scheduled_service": "no", + "gps_code": "CL58", + "local_code": "CL58" + }, + { + "id": "16778", + "ident": "CL59", + "type": "heliport", + "name": "Camp 11 Heliport", + "latitude_deg": "34.438147", + "longitude_deg": "-118.287697", + "elevation_ft": "2220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Acton", + "scheduled_service": "no", + "gps_code": "CL59", + "local_code": "CL59" + }, + { + "id": "16779", + "ident": "CL60", + "type": "heliport", + "name": "Memorial Hospital Heliport", + "latitude_deg": "35.3911018371582", + "longitude_deg": "-119.00599670410156", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bakersfield", + "scheduled_service": "no", + "gps_code": "CL60", + "local_code": "CL60" + }, + { + "id": "16780", + "ident": "CL61", + "type": "heliport", + "name": "Kern Medical Center Heliport", + "latitude_deg": "35.382484", + "longitude_deg": "-118.969656", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bakersfield", + "scheduled_service": "no", + "gps_code": "CL61", + "local_code": "CL61" + }, + { + "id": "16781", + "ident": "CL62", + "type": "heliport", + "name": "Station 125 Heliport", + "latitude_deg": "34.151554", + "longitude_deg": "-118.697763", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Calabasas", + "scheduled_service": "no", + "gps_code": "CL62", + "local_code": "CL62" + }, + { + "id": "16782", + "ident": "CL63", + "type": "heliport", + "name": "Castaic Dam Heliport", + "latitude_deg": "34.5172004699707", + "longitude_deg": "-118.5989990234375", + "elevation_ft": "1520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Castaic", + "scheduled_service": "no", + "gps_code": "CL63", + "local_code": "CL63" + }, + { + "id": "16783", + "ident": "CL64", + "type": "heliport", + "name": "Washington Hospital Parking Structure Heliport", + "latitude_deg": "37.557473", + "longitude_deg": "-121.978139", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fremont", + "scheduled_service": "no", + "gps_code": "CL64", + "local_code": "CL64" + }, + { + "id": "16784", + "ident": "CL65", + "type": "heliport", + "name": "H.B.P.D. Heliport", + "latitude_deg": "33.69499969482422", + "longitude_deg": "-118.0009994506836", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Huntington Beach", + "scheduled_service": "no", + "gps_code": "CL65", + "local_code": "CL65" + }, + { + "id": "16785", + "ident": "CL66", + "type": "heliport", + "name": "Camp 2 Heliport", + "latitude_deg": "34.197201", + "longitude_deg": "-118.174004", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "La Cañada Flintridge", + "scheduled_service": "no", + "gps_code": "CL66", + "local_code": "CL66" + }, + { + "id": "16786", + "ident": "CL67", + "type": "heliport", + "name": "Platform Hidalgo Heliport", + "latitude_deg": "34.494998931884766", + "longitude_deg": "-120.7030029296875", + "elevation_ft": "162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lompoc", + "scheduled_service": "no", + "gps_code": "CL67", + "local_code": "CL67" + }, + { + "id": "16787", + "ident": "CL68", + "type": "heliport", + "name": "Platform Harvest Heliport", + "latitude_deg": "34.469200134277344", + "longitude_deg": "-120.68199920654297", + "elevation_ft": "178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lompoc", + "scheduled_service": "no", + "gps_code": "CL68", + "local_code": "CL68" + }, + { + "id": "16788", + "ident": "CL69", + "type": "heliport", + "name": "Sutter Lakeside Hospital Heliport", + "latitude_deg": "39.105098724365234", + "longitude_deg": "-122.90699768066406", + "elevation_ft": "1401", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lakeport", + "scheduled_service": "no", + "gps_code": "CL69", + "local_code": "CL69" + }, + { + "id": "16789", + "ident": "CL70", + "type": "closed", + "name": "Hollywood Presbyterian Hospital Heliport", + "latitude_deg": "34.096428", + "longitude_deg": "-118.290323", + "elevation_ft": "524", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "local_code": "CL70", + "keywords": "CL70, Queen of Angel-Hollywood Presbyterian Hospital Heliport" + }, + { + "id": "16790", + "ident": "CL71", + "type": "heliport", + "name": "Hughes/Corporate Heliport", + "latitude_deg": "33.96609878540039", + "longitude_deg": "-118.42400360107422", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "CL71", + "local_code": "CL71" + }, + { + "id": "16791", + "ident": "CL72", + "type": "heliport", + "name": "Camp 8 Heliport", + "latitude_deg": "34.0620002746582", + "longitude_deg": "-118.64700317382812", + "elevation_ft": "1525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Malibu", + "scheduled_service": "no", + "gps_code": "CL72", + "local_code": "CL72" + }, + { + "id": "16792", + "ident": "CL73", + "type": "heliport", + "name": "Rotor-Aids Maintenance Hangar Heliport", + "latitude_deg": "34.20220184326172", + "longitude_deg": "-119.2030029296875", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oxnard", + "scheduled_service": "no", + "gps_code": "CL73", + "local_code": "CL73" + }, + { + "id": "16793", + "ident": "CL74", + "type": "small_airport", + "name": "Skyotee Ranch Airport", + "latitude_deg": "34.83190155029297", + "longitude_deg": "-118.4010009765625", + "elevation_ft": "2600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rosamond", + "scheduled_service": "no", + "gps_code": "CL74", + "local_code": "CL74" + }, + { + "id": "16794", + "ident": "CL75", + "type": "heliport", + "name": "Robert D Cloud Heliport", + "latitude_deg": "34.052168", + "longitude_deg": "-118.080602", + "elevation_ft": "312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rosemead", + "scheduled_service": "no", + "gps_code": "CL75", + "local_code": "CL75" + }, + { + "id": "16795", + "ident": "CL76", + "type": "heliport", + "name": "U S Naval Medical Center San Diego Heliport", + "latitude_deg": "32.725019", + "longitude_deg": "-117.144291", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no", + "gps_code": "CL76", + "local_code": "CL76", + "keywords": "U S Naval Hospital" + }, + { + "id": "16796", + "ident": "CL77", + "type": "small_airport", + "name": "Bonny Doon Village Airport", + "latitude_deg": "37.070499420166016", + "longitude_deg": "-122.12699890136719", + "elevation_ft": "2020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "gps_code": "CL77", + "local_code": "CL77", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bonny_Doon_Village_Airport" + }, + { + "id": "16797", + "ident": "CL78", + "type": "heliport", + "name": "Camp 14 Heliport", + "latitude_deg": "34.56610107421875", + "longitude_deg": "-118.47699737548828", + "elevation_ft": "1870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Saugus", + "scheduled_service": "no", + "gps_code": "CL78", + "local_code": "CL78" + }, + { + "id": "16798", + "ident": "CL79", + "type": "heliport", + "name": "SCE Tiffany Pines Heliport", + "latitude_deg": "37.11723", + "longitude_deg": "-119.313374", + "elevation_ft": "5548", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Shaver Lake", + "scheduled_service": "no", + "gps_code": "CL79", + "local_code": "CL79" + }, + { + "id": "16799", + "ident": "CL80", + "type": "heliport", + "name": "Sherman Oaks Community Hospital Heliport", + "latitude_deg": "34.159927", + "longitude_deg": "-118.449457", + "elevation_ft": "697", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sherman Oaks", + "scheduled_service": "no", + "gps_code": "CL80", + "local_code": "CL80" + }, + { + "id": "16800", + "ident": "CL81", + "type": "heliport", + "name": "Camp 15 Heliport", + "latitude_deg": "34.289398193359375", + "longitude_deg": "-118.28800201416016", + "elevation_ft": "1520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sunland", + "scheduled_service": "no", + "gps_code": "CL81", + "local_code": "CL81" + }, + { + "id": "16801", + "ident": "CL82", + "type": "heliport", + "name": "Los Robles Regional Medical Center Heliport", + "latitude_deg": "34.206842", + "longitude_deg": "-118.88311", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Thousand Oaks", + "scheduled_service": "no", + "gps_code": "CL82", + "local_code": "CL82" + }, + { + "id": "16802", + "ident": "CL83", + "type": "heliport", + "name": "Joe Heidrick Heliport", + "latitude_deg": "38.66550064086914", + "longitude_deg": "-121.82599639892578", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodland", + "scheduled_service": "no", + "gps_code": "CL83", + "local_code": "CL83" + }, + { + "id": "16803", + "ident": "CL84", + "type": "small_airport", + "name": "Ahlem Farms Airport", + "latitude_deg": "37.388301849365234", + "longitude_deg": "-120.927001953125", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hilmar", + "scheduled_service": "no", + "gps_code": "CL84", + "local_code": "CL84" + }, + { + "id": "16804", + "ident": "CL85", + "type": "heliport", + "name": "Sonoma Raceway Heliport Pad 1", + "latitude_deg": "38.158228", + "longitude_deg": "-122.456344", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sonoma", + "scheduled_service": "yes", + "gps_code": "CL85", + "local_code": "CL85", + "keywords": "Infineon Raceway" + }, + { + "id": "16805", + "ident": "CL86", + "type": "heliport", + "name": "McCandless Towers Heliport", + "latitude_deg": "37.385503", + "longitude_deg": "-121.972414", + "elevation_ft": "201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Clara", + "scheduled_service": "no", + "gps_code": "CL86", + "local_code": "CL86" + }, + { + "id": "16806", + "ident": "CL87", + "type": "heliport", + "name": "Haddicks Heliport", + "latitude_deg": "34.027424", + "longitude_deg": "-117.966734", + "elevation_ft": "306", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "City of Industry", + "scheduled_service": "no", + "gps_code": "CL87", + "local_code": "CL87" + }, + { + "id": "16807", + "ident": "CL88", + "type": "closed", + "name": "Wesinger Ranch Airport", + "latitude_deg": "41.447102", + "longitude_deg": "-120.584", + "elevation_ft": "4300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Alturas", + "scheduled_service": "no", + "keywords": "CL88" + }, + { + "id": "16808", + "ident": "CL89", + "type": "closed", + "name": "Los Angeles Times - Northridge Heliport", + "latitude_deg": "34.238821", + "longitude_deg": "-118.56949", + "elevation_ft": "859", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chatsworth", + "scheduled_service": "no", + "keywords": "CL89" + }, + { + "id": "16809", + "ident": "CL90", + "type": "closed", + "name": "Butte Creek Hog Ranch Airport", + "latitude_deg": "39.688801", + "longitude_deg": "-121.783997", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chico", + "scheduled_service": "no", + "keywords": "CL90" + }, + { + "id": "16810", + "ident": "CL91", + "type": "heliport", + "name": "Auberry Hydro Service Center Heliport", + "latitude_deg": "37.06489944458008", + "longitude_deg": "-119.48400115966797", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Auberry", + "scheduled_service": "no", + "gps_code": "CL91", + "local_code": "CL91" + }, + { + "id": "16811", + "ident": "CL92", + "type": "heliport", + "name": "SCE Saddleback Service Center Heliport", + "latitude_deg": "33.655253", + "longitude_deg": "-117.705844", + "elevation_ft": "391", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Irvine", + "scheduled_service": "no", + "gps_code": "CL92", + "local_code": "CL92" + }, + { + "id": "16812", + "ident": "CL93", + "type": "heliport", + "name": "SCE Shaver Summit Heliport", + "latitude_deg": "37.163799", + "longitude_deg": "-119.292", + "elevation_ft": "5755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Shaver Lake", + "scheduled_service": "no", + "gps_code": "CL93", + "local_code": "CL93" + }, + { + "id": "16813", + "ident": "CL94", + "type": "heliport", + "name": "Plumas District Hospital Heliport", + "latitude_deg": "39.940253092499994", + "longitude_deg": "-120.962026119", + "elevation_ft": "3425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Quincy", + "scheduled_service": "no", + "gps_code": "CL94", + "local_code": "CL94" + }, + { + "id": "16814", + "ident": "CL95", + "type": "heliport", + "name": "County Heliport", + "latitude_deg": "34.10329818725586", + "longitude_deg": "-117.27200317382812", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Bernardino", + "scheduled_service": "no", + "gps_code": "CL95", + "local_code": "CL95" + }, + { + "id": "16815", + "ident": "CL96", + "type": "heliport", + "name": "Vaca Valley Hospital Heliport", + "latitude_deg": "38.3557014465332", + "longitude_deg": "-121.95099639892578", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Vacaville", + "scheduled_service": "no", + "gps_code": "CL96", + "local_code": "CL96" + }, + { + "id": "16816", + "ident": "CL97", + "type": "heliport", + "name": "Mercy Hospital & Medical Center Heliport", + "latitude_deg": "32.751285", + "longitude_deg": "-117.160628", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no", + "gps_code": "CL97", + "local_code": "CL97" + }, + { + "id": "16817", + "ident": "CL98", + "type": "closed", + "name": "Rockwell Facility Heliport", + "latitude_deg": "33.758402", + "longitude_deg": "-118.085293", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Seal Beach", + "scheduled_service": "no", + "gps_code": "CL98", + "local_code": "CL98" + }, + { + "id": "16818", + "ident": "CL99", + "type": "heliport", + "name": "Watsonville Community Hospital Heliport", + "latitude_deg": "36.939998626708984", + "longitude_deg": "-121.7760009765625", + "elevation_ft": "111", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Watsonville", + "scheduled_service": "no", + "gps_code": "CL99", + "local_code": "CL99" + }, + { + "id": "1263", + "ident": "CLA2", + "type": "small_airport", + "name": "L'Assomption Airport", + "latitude_deg": "45.82310104370117", + "longitude_deg": "-73.46060180664062", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "L'Assomption", + "scheduled_service": "no", + "gps_code": "CLA2", + "local_code": "CLA2", + "wikipedia_link": "https://en.wikipedia.org/wiki/L'Assomption_Airport", + "keywords": "LA2" + }, + { + "id": "1264", + "ident": "CLA4", + "type": "small_airport", + "name": "Holland Landing Airpark", + "latitude_deg": "44.08940124511719", + "longitude_deg": "-79.49500274658203", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Holland Landing", + "scheduled_service": "no", + "gps_code": "CLA4", + "local_code": "CLA4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Holland_Landing_Airpark", + "keywords": "LA4" + }, + { + "id": "299244", + "ident": "cla5", + "type": "small_airport", + "name": "Lethbridge / Anderson Field", + "latitude_deg": "49.6569444445", + "longitude_deg": "-112.772777778", + "elevation_ft": "3020", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Lethbridge", + "scheduled_service": "no", + "gps_code": "CLA5" + }, + { + "id": "1265", + "ident": "CLA6", + "type": "small_airport", + "name": "Lancaster Airpark", + "latitude_deg": "45.200401306152344", + "longitude_deg": "-74.36100006103516", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Bainsville", + "scheduled_service": "no", + "gps_code": "CLA6", + "home_link": "http://www.lancaster-airpark.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lancaster_Airpark" + }, + { + "id": "46497", + "ident": "CLB2", + "type": "small_airport", + "name": "Plattsville (Lubitz Flying Field)", + "latitude_deg": "43.305833", + "longitude_deg": "-80.548611", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CLB2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Plattsville_(Lubitz_Flying_Field)_Aerodrome" + }, + { + "id": "28291", + "ident": "CLB6", + "type": "seaplane_base", + "name": "La Grande-4/Lac Bottine Seaplane Base", + "latitude_deg": "53.7094", + "longitude_deg": "-73.720801", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CLB6", + "local_code": "CLB6", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Grande-4/Lac_de_la_Falaise_Water_Aerodrome", + "keywords": "Lac de la Falaise, Lac Katatipawasakakamaw" + }, + { + "id": "312536", + "ident": "CLC", + "type": "closed", + "name": "Clear Lake Metroport", + "latitude_deg": "29.5555", + "longitude_deg": "-95.1383", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Clear Lake", + "scheduled_service": "no", + "iata_code": "CLC" + }, + { + "id": "1266", + "ident": "CLC2", + "type": "small_airport", + "name": "London / Chapeskie Field", + "latitude_deg": "43.0682983398", + "longitude_deg": "-81.1256027222", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "London", + "scheduled_service": "no", + "gps_code": "CLC2", + "local_code": "CLC2", + "wikipedia_link": "https://en.wikipedia.org/wiki/London/Chapeskie_Field_Airport", + "keywords": "LC2" + }, + { + "id": "45051", + "ident": "CLC3", + "type": "heliport", + "name": "Calgary (Peter Lougheed Centre) Heliport", + "latitude_deg": "51.0781955893", + "longitude_deg": "-113.986330032", + "elevation_ft": "3562", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "no", + "gps_code": "CLC3", + "keywords": "LC3" + }, + { + "id": "320347", + "ident": "CLC4", + "type": "small_airport", + "name": "Loon Creek Airfield", + "latitude_deg": "50.8434", + "longitude_deg": "-104.323", + "elevation_ft": "1816", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no", + "gps_code": "CLC4", + "local_code": "CLC4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Loon_Creek_Airfield" + }, + { + "id": "46526", + "ident": "CLD2", + "type": "heliport", + "name": "Edmonton / Leduc Heliport", + "latitude_deg": "53.253172", + "longitude_deg": "-113.542599", + "elevation_ft": "2411", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Leduc", + "scheduled_service": "no", + "gps_code": "CLD2", + "local_code": "CLD2" + }, + { + "id": "320722", + "ident": "CLD3", + "type": "seaplane_base", + "name": "Burns Lake (LD Air) Water Aerodrome", + "latitude_deg": "54.21", + "longitude_deg": "-125.756901", + "elevation_ft": "2300", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Burns Lake", + "scheduled_service": "no", + "gps_code": "CLD3", + "local_code": "CLD3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Burns_Lake_(LD_Air)_Water_Aerodrome", + "keywords": "AJ6" + }, + { + "id": "1267", + "ident": "CLE4", + "type": "small_airport", + "name": "Lower East Pubnico (La Field) Airport", + "latitude_deg": "43.62220001220703", + "longitude_deg": "-65.76190185546875", + "elevation_ft": "107", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Lower East Pubnico", + "scheduled_service": "no", + "gps_code": "CLE4", + "local_code": "CLE4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lower_East_Pubnico_(La_Field)_Airport", + "keywords": "LE4" + }, + { + "id": "16819", + "ident": "CLF", + "type": "small_airport", + "name": "Clear Sky Lodge Airport", + "latitude_deg": "64.255837", + "longitude_deg": "-149.189658", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Clear", + "scheduled_service": "no", + "local_code": "CLF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clear_Sky_Lodge_Airport" + }, + { + "id": "46092", + "ident": "CLG", + "type": "closed", + "name": "Coalinga Airport (1936)", + "latitude_deg": "36.158043", + "longitude_deg": "-120.360117", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "scheduled_service": "no", + "iata_code": "CLG" + }, + { + "id": "1268", + "ident": "CLG3", + "type": "small_airport", + "name": "Liege / CNRL Airport", + "latitude_deg": "57.0018997192", + "longitude_deg": "-113.194000244", + "elevation_ft": "1728", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Liege", + "scheduled_service": "no", + "gps_code": "CLG3", + "local_code": "CLG3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Liege/CNRL_Aerodrome", + "keywords": "LG3" + }, + { + "id": "302185", + "ident": "CLG7", + "type": "small_airport", + "name": "Fort McMurray / Legend Airfield", + "latitude_deg": "57.196944", + "longitude_deg": "-112.895556", + "elevation_ft": "2061", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Fort McMurray", + "scheduled_service": "no", + "gps_code": "CLG7", + "local_code": "CLG7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_McMurray_(Legend)_Aerodrome" + }, + { + "id": "1269", + "ident": "CLH2", + "type": "heliport", + "name": "Stettler (Health Centre) Heliport", + "latitude_deg": "52.3231535577", + "longitude_deg": "-112.725257277", + "elevation_ft": "2694", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Stettler", + "scheduled_service": "no", + "gps_code": "CLH2", + "local_code": "CLH2", + "keywords": "LH2" + }, + { + "id": "1270", + "ident": "CLH4", + "type": "heliport", + "name": "Lethbridge/Chinook Regional Hospital Heliport", + "latitude_deg": "49.685891", + "longitude_deg": "-112.816785", + "elevation_ft": "2993", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Lethbridge", + "scheduled_service": "no", + "gps_code": "CLH4", + "local_code": "CLH4", + "keywords": "LH4" + }, + { + "id": "332264", + "ident": "CLH5", + "type": "small_airport", + "name": "Bobcaygeon / Chesher Lakehurst", + "latitude_deg": "44.525564", + "longitude_deg": "-78.44827", + "elevation_ft": "892", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CLH5", + "local_code": "CLH5" + }, + { + "id": "301320", + "ident": "clj3", + "type": "small_airport", + "name": "Lethbridge / J3 Airfield", + "latitude_deg": "49.741621", + "longitude_deg": "-112.73833", + "elevation_ft": "2910", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Lethbridge", + "scheduled_service": "no", + "gps_code": "CLJ3" + }, + { + "id": "1271", + "ident": "CLK3", + "type": "small_airport", + "name": "Lucknow Airpark", + "latitude_deg": "43.96780014038086", + "longitude_deg": "-81.49330139160156", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Lucknow", + "scheduled_service": "no", + "gps_code": "CLK3", + "local_code": "CLK3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lucknow_Airpark", + "keywords": "LK3" + }, + { + "id": "28299", + "ident": "CLL2", + "type": "seaplane_base", + "name": "Langille Lake Seaplane Base", + "latitude_deg": "44.45000076293945", + "longitude_deg": "-64.44779968261719", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "scheduled_service": "no", + "gps_code": "CLL2", + "local_code": "CLL2" + }, + { + "id": "320820", + "ident": "CLL3", + "type": "seaplane_base", + "name": "Lac Lamothe Water Aerodrome", + "latitude_deg": "48.739403", + "longitude_deg": "-71.1383", + "elevation_ft": "975", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Lac Lamothe", + "scheduled_service": "no", + "gps_code": "CLL3", + "local_code": "CLL3" + }, + { + "id": "1272", + "ident": "CLM2", + "type": "small_airport", + "name": "Leamington Airport", + "latitude_deg": "42.025001525878906", + "longitude_deg": "-82.5250015258789", + "elevation_ft": "576", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Leamington", + "scheduled_service": "no", + "gps_code": "CLM2", + "local_code": "CLM2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leamington_Airport", + "keywords": "LM2" + }, + { + "id": "28292", + "ident": "CLM3", + "type": "seaplane_base", + "name": "Lake Muskoka/Alport Bay Seaplane Base", + "latitude_deg": "45.02109909057617", + "longitude_deg": "-79.38279724121094", + "elevation_ft": "739", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CLM3", + "local_code": "CLM3" + }, + { + "id": "320340", + "ident": "CLM4", + "type": "heliport", + "name": "Lamont Health Care Centre Heliport", + "latitude_deg": "53.7636", + "longitude_deg": "-112.7877", + "elevation_ft": "2126", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Lamont", + "scheduled_service": "no", + "gps_code": "CLM4", + "local_code": "CLM4" + }, + { + "id": "320802", + "ident": "CLM5", + "type": "seaplane_base", + "name": "Lake Muskoka South Seaplane Base", + "latitude_deg": "44.966101", + "longitude_deg": "-79.4298", + "elevation_ft": "742", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Lake Muskoka", + "scheduled_service": "no", + "gps_code": "CLM5", + "local_code": "CLM5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_Muskoka_South_Water_Aerodrome" + }, + { + "id": "320801", + "ident": "CLM6", + "type": "seaplane_base", + "name": "Miller Island Seaplane Base", + "latitude_deg": "44.9922", + "longitude_deg": "-79.465401", + "elevation_ft": "742", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Lake Muskoka", + "scheduled_service": "no", + "gps_code": "CLM6", + "local_code": "CLM6" + }, + { + "id": "299264", + "ident": "cln4", + "type": "small_airport", + "name": "Beaverlodge / Clanachan Field", + "latitude_deg": "55.2344931", + "longitude_deg": "-119.841591", + "elevation_ft": "2694", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "gps_code": "CLN4", + "local_code": "CLN4" + }, + { + "id": "1273", + "ident": "CLP2", + "type": "heliport", + "name": "Montreal / Laval (Artopex Plus) Heliport", + "latitude_deg": "45.5785956158", + "longitude_deg": "-73.7500204146", + "elevation_ft": "133", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montréal", + "scheduled_service": "no", + "gps_code": "CLP2", + "local_code": "CLP2", + "keywords": "LP2" + }, + { + "id": "46494", + "ident": "CLP3", + "type": "seaplane_base", + "name": "Lac Polaris (pourvoirie Mirage)", + "latitude_deg": "53.8005555556", + "longitude_deg": "-72.8666666667", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CLP3", + "keywords": "Pourvoirie Mirage, Mirage outfitter" + }, + { + "id": "1274", + "ident": "CLQ2", + "type": "heliport", + "name": "Liverpool (Queens General Hospital) Heliport", + "latitude_deg": "44.038714767200005", + "longitude_deg": "-64.7053420544", + "elevation_ft": "67", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Liverpool", + "scheduled_service": "no", + "gps_code": "CLQ2", + "local_code": "CLQ2", + "keywords": "LQ2" + }, + { + "id": "320817", + "ident": "CLR2", + "type": "seaplane_base", + "name": "Lake Rosseau/John's Bay Seaplane Base", + "latitude_deg": "45.170104", + "longitude_deg": "-79.5975", + "elevation_ft": "742", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Lake Rosseau", + "scheduled_service": "no", + "gps_code": "CLR2", + "local_code": "CLR2" + }, + { + "id": "302187", + "ident": "cls3", + "type": "small_airport", + "name": "Fort McMurray / South Liege Airfield", + "latitude_deg": "56.8323528324", + "longitude_deg": "-113.098840714", + "elevation_ft": "1707", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "gps_code": "CLS3" + }, + { + "id": "353369", + "ident": "CLS4", + "type": "seaplane_base", + "name": "Porters Lake South Seaplane Base", + "latitude_deg": "44.66538", + "longitude_deg": "-63.31477", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "East Lawrencetown", + "scheduled_service": "no", + "gps_code": "CLS4", + "local_code": "CLS4" + }, + { + "id": "299265", + "ident": "clv2", + "type": "small_airport", + "name": "Stayner (Clearview Field) Airport", + "latitude_deg": "44.404638", + "longitude_deg": "-80.147978", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Stayner", + "scheduled_service": "no", + "gps_code": "CLV2", + "local_code": "CLV2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stayner_(Clearview_Field)_Aerodrome" + }, + { + "id": "1275", + "ident": "CLW2", + "type": "closed", + "name": "Lewvan (Farr Strip) Airport", + "latitude_deg": "49.985001", + "longitude_deg": "-104.114998", + "elevation_ft": "1904", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Lewvan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lewvan_(Farr_Strip)_Airport", + "keywords": "CLW2" + }, + { + "id": "44690", + "ident": "CLW3", + "type": "small_airport", + "name": "Laurel / Whittington", + "latitude_deg": "43.9791679382", + "longitude_deg": "-80.1772232056", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CLW3", + "local_code": "CLW3", + "keywords": "LW3" + }, + { + "id": "318387", + "ident": "CM-0001", + "type": "small_airport", + "name": "Campo Airport", + "latitude_deg": "2.341137", + "longitude_deg": "9.847089", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-SW", + "municipality": "Campo", + "scheduled_service": "no" + }, + { + "id": "319202", + "ident": "CM-0002", + "type": "small_airport", + "name": "Touboro Airport", + "latitude_deg": "7.765747", + "longitude_deg": "15.317976", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-NO", + "municipality": "Touboro", + "scheduled_service": "no" + }, + { + "id": "322282", + "ident": "CM-0003", + "type": "small_airport", + "name": "Djoum Airport", + "latitude_deg": "2.666859", + "longitude_deg": "12.666755", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-SU", + "municipality": "Djoum", + "scheduled_service": "no" + }, + { + "id": "322283", + "ident": "CM-0004", + "type": "small_airport", + "name": "Sangmélima Airport", + "latitude_deg": "2.946602", + "longitude_deg": "12.002311", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-SU", + "municipality": "Sangmélima", + "scheduled_service": "no" + }, + { + "id": "322285", + "ident": "CM-0005", + "type": "small_airport", + "name": "Lokomo Airport", + "latitude_deg": "2.683971", + "longitude_deg": "15.460837", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-ES", + "municipality": "Lokomo", + "scheduled_service": "no" + }, + { + "id": "322286", + "ident": "CM-0006", + "type": "small_airport", + "name": "Masea Airport", + "latitude_deg": "3.118743", + "longitude_deg": "14.970657", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-ES", + "municipality": "Masea", + "scheduled_service": "no" + }, + { + "id": "322311", + "ident": "CM-0007", + "type": "small_airport", + "name": "Ngola Airport", + "latitude_deg": "3.494501", + "longitude_deg": "15.332236", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-ES", + "municipality": "Ngola", + "scheduled_service": "no" + }, + { + "id": "322312", + "ident": "CM-0008", + "type": "small_airport", + "name": "Gribi Airport", + "latitude_deg": "3.787821", + "longitude_deg": "14.984021", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-ES", + "municipality": "Gribi", + "scheduled_service": "no" + }, + { + "id": "322313", + "ident": "CM-0009", + "type": "small_airport", + "name": "Mindourou Airport", + "latitude_deg": "4.122123", + "longitude_deg": "14.541415", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-ES", + "municipality": "Mindourou", + "scheduled_service": "no" + }, + { + "id": "340293", + "ident": "CM-0010", + "type": "heliport", + "name": "Limbé Military Heliport", + "latitude_deg": "3.96893", + "longitude_deg": "9.22321", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-SW", + "municipality": "Limbé", + "scheduled_service": "no", + "keywords": "VCC" + }, + { + "id": "340294", + "ident": "CM-0011", + "type": "small_airport", + "name": "Lobe Airfield", + "latitude_deg": "4.597263", + "longitude_deg": "9.067273", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-SW", + "municipality": "Ekondo-Titi", + "scheduled_service": "no" + }, + { + "id": "352948", + "ident": "CM-0012", + "type": "small_airport", + "name": "Malinkam Northwest Airport", + "latitude_deg": "4.61748", + "longitude_deg": "9.6242", + "elevation_ft": "492", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-LT", + "municipality": "Malinkam", + "scheduled_service": "no" + }, + { + "id": "1276", + "ident": "CMA2", + "type": "small_airport", + "name": "Mattawa Airport", + "latitude_deg": "46.29970169067383", + "longitude_deg": "-78.747802734375", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Mattawa", + "scheduled_service": "no", + "gps_code": "CMA2", + "local_code": "CMA2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mattawa_Airport", + "keywords": "MA2" + }, + { + "id": "28317", + "ident": "CMA4", + "type": "seaplane_base", + "name": "Miminiska Seaplane Base", + "latitude_deg": "51.60139846801758", + "longitude_deg": "-88.58080291748047", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CMA4", + "local_code": "CMA4" + }, + { + "id": "299180", + "ident": "cmb2", + "type": "small_airport", + "name": "Meadowbank Airport", + "latitude_deg": "65.0246615457", + "longitude_deg": "-96.06865882870001", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Agnico-Eagle Meadowbank Gold Mine", + "scheduled_service": "no", + "gps_code": "CMB2", + "local_code": "CMB2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Meadowbank_Aerodrome" + }, + { + "id": "321913", + "ident": "CMB3", + "type": "seaplane_base", + "name": "Cambridge (Puslinch Lake) Seaplane Base", + "latitude_deg": "43.4205", + "longitude_deg": "-80.257002", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "CMB3", + "local_code": "CMB3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cambridge_(Puslinch_Lake)_Water_Aerodrome" + }, + { + "id": "321898", + "ident": "CMB6", + "type": "seaplane_base", + "name": "Lake Muskoka East (Milford Bay) Seaplane Base", + "latitude_deg": "45.074922", + "longitude_deg": "-79.480289", + "elevation_ft": "739", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Milford Bay", + "scheduled_service": "no", + "gps_code": "CMB6", + "local_code": "CMB6" + }, + { + "id": "310989", + "ident": "CMB7", + "type": "small_airport", + "name": "Maxville (Bourdon Farm) Airport", + "latitude_deg": "45.253", + "longitude_deg": "-74.807", + "elevation_ft": "359", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Maxville", + "scheduled_service": "no", + "gps_code": "CMB7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maxville_(Bourdon_Farm)_Aerodrome" + }, + { + "id": "1277", + "ident": "CMBH", + "type": "heliport", + "name": "Mount Belcher Heliport", + "latitude_deg": "48.832801818847656", + "longitude_deg": "-123.50499725341797", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Mount Belcher", + "scheduled_service": "no", + "gps_code": "CMBH", + "local_code": "CMBH", + "keywords": "MBH" + }, + { + "id": "1278", + "ident": "CMC2", + "type": "heliport", + "name": "Edmonton / Misericordia (Community Hospital) Heliport", + "latitude_deg": "53.520377085199996", + "longitude_deg": "-113.611055464", + "elevation_ft": "2320", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Edmonton", + "scheduled_service": "no", + "gps_code": "CMC2", + "local_code": "CMC2", + "keywords": "MC2" + }, + { + "id": "1279", + "ident": "CMC3", + "type": "heliport", + "name": "Mayerthorpe (Healthcare Centre) Heliport", + "latitude_deg": "53.948711409", + "longitude_deg": "-115.133017302", + "elevation_ft": "2432", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Mayerthorpe", + "scheduled_service": "no", + "gps_code": "CMC3", + "local_code": "CMC3", + "keywords": "MC3" + }, + { + "id": "320456", + "ident": "CME2", + "type": "small_airport", + "name": "Omemee Airport", + "latitude_deg": "44.2854", + "longitude_deg": "-78.6276", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Omemee", + "scheduled_service": "no", + "gps_code": "CME2", + "local_code": "CME2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Omemee_Aerodrome" + }, + { + "id": "332262", + "ident": "CME3", + "type": "small_airport", + "name": "Bala (Medora Lake)", + "latitude_deg": "45.0641667", + "longitude_deg": "-79.6797222", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CME3", + "local_code": "CME3" + }, + { + "id": "46616", + "ident": "CMF2", + "type": "small_airport", + "name": "Edmonton / Calmar (Maplelane Farm)", + "latitude_deg": "53.184654", + "longitude_deg": "-113.738236", + "elevation_ft": "2520", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Edmonton", + "scheduled_service": "no", + "gps_code": "CMF2", + "local_code": "CMF2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Edmonton/Calmar_(Maplelane_Farm)_Aerodrome" + }, + { + "id": "298378", + "ident": "CMF3", + "type": "small_airport", + "name": "Lethbridge (Mercer Field)", + "latitude_deg": "49.5548112877", + "longitude_deg": "-112.561540604", + "elevation_ft": "3085", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "gps_code": "CMF3", + "local_code": "MF3" + }, + { + "id": "332256", + "ident": "CMF4", + "type": "small_airport", + "name": "Port Hope (Millson Field)", + "latitude_deg": "43.989209", + "longitude_deg": "-78.428691", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CMF4", + "local_code": "CMF4" + }, + { + "id": "1280", + "ident": "CMH2", + "type": "heliport", + "name": "Milton (Afi) Heliport", + "latitude_deg": "43.532223736400006", + "longitude_deg": "-79.9027343094", + "elevation_ft": "687", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "CMH2", + "local_code": "CMH2", + "keywords": "MH2" + }, + { + "id": "44689", + "ident": "CMH3", + "type": "heliport", + "name": "Lacombe (Mustang Helicopters)", + "latitude_deg": "52.37888717651367", + "longitude_deg": "-113.82250213623047", + "elevation_ft": "2889", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "gps_code": "CMH3", + "local_code": "CMH3" + }, + { + "id": "320401", + "ident": "CMH4", + "type": "heliport", + "name": "Mirabel Hélico Heliport", + "latitude_deg": "45.69555", + "longitude_deg": "-73.9525", + "elevation_ft": "223", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montréal", + "scheduled_service": "no", + "gps_code": "CMH4", + "local_code": "CMH4", + "home_link": "http://www.mirabelhelico.ca/en/company.html" + }, + { + "id": "335913", + "ident": "CMH6", + "type": "heliport", + "name": "Canadian Mountain Holidays Heliport", + "latitude_deg": "52.78836", + "longitude_deg": "-119.256235", + "elevation_ft": "2711", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Valemount", + "scheduled_service": "no", + "gps_code": "CMH6", + "local_code": "CMH6", + "home_link": "https://www.cmhheli.com/our-lodges/valemount/" + }, + { + "id": "1281", + "ident": "CMI2", + "type": "heliport", + "name": "Minden (Hospital) Heliport", + "latitude_deg": "44.92470169067383", + "longitude_deg": "-78.72940063476562", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Minden", + "scheduled_service": "no", + "gps_code": "CMI2", + "local_code": "CMI2", + "keywords": "MI2" + }, + { + "id": "321893", + "ident": "CMK2", + "type": "seaplane_base", + "name": "McKellar (Manitouwabing) Seaplane Base", + "latitude_deg": "45.501796", + "longitude_deg": "-79.917757", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "McKellar", + "scheduled_service": "no", + "gps_code": "CMK2", + "local_code": "CMK2", + "wikipedia_link": "https://en.wikipedia.org/wiki/McKellar_(Manitouwabing)_Water_Aerodrome" + }, + { + "id": "1282", + "ident": "CML2", + "type": "small_airport", + "name": "Quamichan Lake (Raven Field) Airport", + "latitude_deg": "48.8119010925293", + "longitude_deg": "-123.6510009765625", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Quamichan Lake", + "scheduled_service": "no", + "gps_code": "CML2", + "local_code": "CML2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quamichan_Lake_(Raven_Field)_Airport", + "keywords": "ML2" + }, + { + "id": "321894", + "ident": "CML3", + "type": "seaplane_base", + "name": "Mink Lake Water Aerodrome", + "latitude_deg": "44.010731", + "longitude_deg": "-65.888588", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Carleton", + "scheduled_service": "no", + "gps_code": "CML3", + "local_code": "CML3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mink_Lake_Water_Aerodrome" + }, + { + "id": "320877", + "ident": "CML4", + "type": "seaplane_base", + "name": "Morrison Lake Seaplane Base", + "latitude_deg": "44.8705", + "longitude_deg": "-79.461", + "elevation_ft": "716", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Gravenhurst", + "scheduled_service": "no", + "gps_code": "CML4", + "local_code": "CML4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gravenhurst_(Morrison_Lake)_Water_Aerodrome" + }, + { + "id": "320521", + "ident": "CML5", + "type": "small_airport", + "name": "Martin's Landing", + "latitude_deg": "48.2936", + "longitude_deg": "-89.543002", + "elevation_ft": "1115", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Thunder Bay", + "scheduled_service": "no", + "gps_code": "CML5", + "local_code": "CML5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thunder_Bay_(Martin%E2%80%99s_Landing)_Aerodrome" + }, + { + "id": "321882", + "ident": "CML6", + "type": "seaplane_base", + "name": "Six Mile Lake (Hungry Bay) Seaplane Base", + "latitude_deg": "44.9163", + "longitude_deg": "-79.7212", + "elevation_ft": "622", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CML6", + "local_code": "CML6" + }, + { + "id": "354787", + "ident": "CML8", + "type": "small_airport", + "name": "Saint-Mathieu-de-Laprairie Aerodrome", + "latitude_deg": "45.31156", + "longitude_deg": "-73.566492", + "elevation_ft": "155", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Mathieu-de-Laprairie", + "scheduled_service": "no", + "gps_code": "CML8", + "home_link": "http://aerolane.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saint-Mathieu-de-Laprairie_Aerodrome" + }, + { + "id": "320678", + "ident": "CMN3", + "type": "small_airport", + "name": "St-Michel-de-Napierville Airport", + "latitude_deg": "45.213804", + "longitude_deg": "-73.576", + "elevation_ft": "206", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Michel-de-Napierville", + "scheduled_service": "no", + "gps_code": "CMN3", + "local_code": "CMN3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saint-Michel-de-Napierville_Aerodrome" + }, + { + "id": "45050", + "ident": "CMN4", + "type": "small_airport", + "name": "Minto", + "latitude_deg": "62.604722222199996", + "longitude_deg": "-137.221944444", + "elevation_ft": "2969", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "scheduled_service": "no", + "gps_code": "CMN4" + }, + { + "id": "46539", + "ident": "CMN5", + "type": "small_airport", + "name": "Manic-Cinq Airport", + "latitude_deg": "50.657732", + "longitude_deg": "-68.831019", + "elevation_ft": "1332", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Manicouagan", + "scheduled_service": "no", + "gps_code": "CMN5", + "keywords": "mn5" + }, + { + "id": "45049", + "ident": "CMN6", + "type": "small_airport", + "name": "Edmonton/Morinville (Mike's Field)", + "latitude_deg": "53.836944444400004", + "longitude_deg": "-113.563333333", + "elevation_ft": "2302", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "gps_code": "CMN6" + }, + { + "id": "1283", + "ident": "CMR6", + "type": "heliport", + "name": "Camrose / St Mary's Hospital Heliport", + "latitude_deg": "53.0151382454", + "longitude_deg": "-112.830169201", + "elevation_ft": "2413", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Camrose", + "scheduled_service": "no", + "gps_code": "CMR6", + "local_code": "CMR6", + "keywords": "MR6" + }, + { + "id": "1284", + "ident": "CMS2", + "type": "heliport", + "name": "Middleton (Soldiers Memorial Hospital) Heliport", + "latitude_deg": "44.9461283973", + "longitude_deg": "-65.05903959269999", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Middleton", + "scheduled_service": "no", + "gps_code": "CMS2", + "local_code": "CMS2", + "keywords": "MS2" + }, + { + "id": "320781", + "ident": "CMS3", + "type": "seaplane_base", + "name": "Marina le Nautique Water Aerodrome", + "latitude_deg": "46.69", + "longitude_deg": "-73.898702", + "elevation_ft": "1177", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Michel-des-Saints", + "scheduled_service": "no", + "gps_code": "CMS3", + "local_code": "CMS3" + }, + { + "id": "316486", + "ident": "CMT", + "type": "small_airport", + "name": "New Cametá Airport", + "latitude_deg": "-2.2468", + "longitude_deg": "-49.56", + "elevation_ft": "60", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Cametá", + "scheduled_service": "no", + "iata_code": "CMT" + }, + { + "id": "321889", + "ident": "CMT2", + "type": "seaplane_base", + "name": "Mont-Tremblant (Lac Maskinongé) Seaplane Base", + "latitude_deg": "46.087825", + "longitude_deg": "-74.608452", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Mont-Tremblant", + "scheduled_service": "no", + "gps_code": "CMT2", + "local_code": "CMT2" + }, + { + "id": "46498", + "ident": "CMW3", + "type": "small_airport", + "name": "Matawatchan Aerodrome", + "latitude_deg": "45.163709", + "longitude_deg": "-77.095356", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Matawatchan", + "scheduled_service": "no", + "gps_code": "CMW3" + }, + { + "id": "320348", + "ident": "CMW4", + "type": "small_airport", + "name": "Collins Field", + "latitude_deg": "45.507401", + "longitude_deg": "-77.9906", + "elevation_ft": "1048", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Madawaska", + "scheduled_service": "no", + "gps_code": "CMW4", + "local_code": "CMW4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Madawaska_Collins_Field_Aerodrome" + }, + { + "id": "311902", + "ident": "CMZ", + "type": "small_airport", + "name": "Caia Airport", + "latitude_deg": "-17.8331", + "longitude_deg": "35.3341", + "elevation_ft": "156", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-S", + "municipality": "Caia", + "scheduled_service": "no", + "iata_code": "CMZ" + }, + { + "id": "311601", + "ident": "CMZ2", + "type": "small_airport", + "name": "Arthur (Metz Field)", + "latitude_deg": "43.810556", + "longitude_deg": "-80.435833", + "elevation_ft": "1525", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Arthur", + "scheduled_service": "no", + "gps_code": "CMZ2", + "local_code": "CMZ2" + }, + { + "id": "35146", + "ident": "CN-0001", + "type": "closed", + "name": "Old Guangzhou Baiyun International Airport", + "latitude_deg": "23.1842", + "longitude_deg": "113.265999", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Guangzhou (Baiyun)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guangzhou_Baiyun_International_Airport_%28former%29", + "keywords": "CAN ZGGG" + }, + { + "id": "42466", + "ident": "CN-0002", + "type": "closed", + "name": "Nanjing Dajiaochang Airport", + "latitude_deg": "31.996394", + "longitude_deg": "118.81279", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Nanjing", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nanjing_Dajiaochang_Airport", + "keywords": "Dajiaochang, NKT, Z08T, ZSNJ" + }, + { + "id": "43972", + "ident": "CN-0003", + "type": "medium_airport", + "name": "Laohutun Air Base", + "latitude_deg": "39.669998", + "longitude_deg": "121.765999", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Wafangdian, Dalian", + "scheduled_service": "no" + }, + { + "id": "43973", + "ident": "CN-0004", + "type": "medium_airport", + "name": "Pulandian Air Base", + "latitude_deg": "39.450901", + "longitude_deg": "122.017998", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Pulandian, Dalian", + "scheduled_service": "no" + }, + { + "id": "43975", + "ident": "CN-0005", + "type": "small_airport", + "name": "Tangshan Sannühe Airport", + "latitude_deg": "39.7178001404", + "longitude_deg": "118.002624512", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Tangshan", + "scheduled_service": "yes", + "gps_code": "ZBTS", + "iata_code": "TVS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tangshan_Air_Base", + "keywords": "Tangshan Air Base, 唐山三女河机场" + }, + { + "id": "44082", + "ident": "CN-0006", + "type": "medium_airport", + "name": "Beijing Shahezhen Air Base", + "latitude_deg": "40.149166107177734", + "longitude_deg": "116.3213882446289", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-11", + "municipality": "Beijing", + "scheduled_service": "no" + }, + { + "id": "44083", + "ident": "CN-0007", + "type": "medium_airport", + "name": "Beijing Tongxian Air Base", + "latitude_deg": "39.81111145019531", + "longitude_deg": "116.70833587646484", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-11", + "municipality": "Beijing", + "scheduled_service": "no" + }, + { + "id": "45045", + "ident": "CN-0008", + "type": "small_airport", + "name": "Wanggang Airfield", + "latitude_deg": "45.670924", + "longitude_deg": "126.521812", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Harbin", + "scheduled_service": "no" + }, + { + "id": "45046", + "ident": "CN-0009", + "type": "small_airport", + "name": "Shuangyushu Airfield", + "latitude_deg": "45.663982", + "longitude_deg": "126.700099", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Harbin", + "scheduled_service": "no" + }, + { + "id": "337835", + "ident": "CN-0010", + "type": "small_airport", + "name": "Zhuhai Jiuzhou Airport", + "latitude_deg": "22.25211", + "longitude_deg": "113.59031", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Zhuhai (Xiangzhou)", + "scheduled_service": "no", + "local_code": "A97", + "keywords": "ZGUH" + }, + { + "id": "35313", + "ident": "CN-0011", + "type": "closed", + "name": "Luzhou Lantian Airport", + "latitude_deg": "28.852577", + "longitude_deg": "105.392579", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Luzhou (Jiangyang)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Luzhou_Lantian_Airport", + "keywords": "LZO, ZULZ" + }, + { + "id": "44127", + "ident": "CN-0012", + "type": "medium_airport", + "name": "Yuanmou Air Base", + "latitude_deg": "25.737499", + "longitude_deg": "101.882004", + "elevation_ft": "3810", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Chuxiong (Yuanmou)", + "scheduled_service": "no", + "gps_code": "ZPYM", + "iata_code": "YUA" + }, + { + "id": "44089", + "ident": "CN-0013", + "type": "medium_airport", + "name": "Fengning Air Base", + "latitude_deg": "41.260799407958984", + "longitude_deg": "116.61799621582031", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "scheduled_service": "no" + }, + { + "id": "44090", + "ident": "CN-0014", + "type": "medium_airport", + "name": "Hohhot Bikeqi Air Base", + "latitude_deg": "40.737015", + "longitude_deg": "111.229749", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Hohhot", + "scheduled_service": "no" + }, + { + "id": "44091", + "ident": "CN-0015", + "type": "medium_airport", + "name": "Huairen Air Base", + "latitude_deg": "39.717499", + "longitude_deg": "113.142998", + "elevation_ft": "3260", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-14", + "municipality": "Shuozhou", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Huairen_Air_Base", + "keywords": "Datong Huairen Airport" + }, + { + "id": "44092", + "ident": "CN-0016", + "type": "medium_airport", + "name": "Liangxiangzhen Air Base", + "latitude_deg": "39.7578010559082", + "longitude_deg": "116.1259994506836", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-11", + "municipality": "Beijing", + "scheduled_service": "no" + }, + { + "id": "307260", + "ident": "CN-0017", + "type": "heliport", + "name": "Lushan Heliport", + "latitude_deg": "29.664823", + "longitude_deg": "116.079554", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-36", + "municipality": "Lianxi, Jiujiang", + "scheduled_service": "no", + "keywords": "Helicopter complex" + }, + { + "id": "44094", + "ident": "CN-0018", + "type": "medium_airport", + "name": "Tangguantun Air Base", + "latitude_deg": "38.781101", + "longitude_deg": "117.068001", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-12", + "municipality": "Jinghai", + "scheduled_service": "no" + }, + { + "id": "44095", + "ident": "CN-0019", + "type": "closed", + "name": "Tangshan Air Base", + "latitude_deg": "39.656399", + "longitude_deg": "118.136002", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Tangshan", + "scheduled_service": "no" + }, + { + "id": "44096", + "ident": "CN-0020", + "type": "medium_airport", + "name": "Wenshui Air Base", + "latitude_deg": "37.407799", + "longitude_deg": "111.966003", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-14", + "municipality": "Lüliang", + "scheduled_service": "no" + }, + { + "id": "44097", + "ident": "CN-0021", + "type": "medium_airport", + "name": "Yangcun Air Base", + "latitude_deg": "39.37329864501953", + "longitude_deg": "117.09500122070312", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-12", + "scheduled_service": "no", + "keywords": "Meichong" + }, + { + "id": "44098", + "ident": "CN-0022", + "type": "medium_airport", + "name": "Yongning Air Base", + "latitude_deg": "40.50310134887695", + "longitude_deg": "116.10800170898438", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-11", + "municipality": "Yongning", + "scheduled_service": "no" + }, + { + "id": "312491", + "ident": "CN-0023", + "type": "small_airport", + "name": "Beijing Yanqing Airport", + "latitude_deg": "40.379146", + "longitude_deg": "115.937519", + "elevation_ft": "1750", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-11", + "municipality": "Yanqing", + "scheduled_service": "no", + "keywords": "Badaling" + }, + { + "id": "44100", + "ident": "CN-0024", + "type": "medium_airport", + "name": "Zhangjiakou Ningyuan Airport", + "latitude_deg": "40.738602", + "longitude_deg": "114.93", + "elevation_ft": "2347", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Zhangjiakou", + "scheduled_service": "yes", + "gps_code": "ZBZJ", + "iata_code": "ZQZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zhangjiakou_Ningyuan_Airport", + "keywords": "Zhangjiakou Air Base, 张家口宁远机场, ZZHA" + }, + { + "id": "44101", + "ident": "CN-0025", + "type": "medium_airport", + "name": "Tangshan Zunhua Air Base", + "latitude_deg": "40.102501", + "longitude_deg": "117.887001", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Tangshan", + "scheduled_service": "no" + }, + { + "id": "44102", + "ident": "CN-0026", + "type": "medium_airport", + "name": "Chengdu Huangtianba Air Base", + "latitude_deg": "30.705299", + "longitude_deg": "103.949997", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Chengdu (Qingyang)", + "scheduled_service": "no" + }, + { + "id": "44103", + "ident": "CN-0027", + "type": "medium_airport", + "name": "Baoshan Yunrui Airport", + "latitude_deg": "25.053301", + "longitude_deg": "99.168297", + "elevation_ft": "5453", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Baoshan (Longyang)", + "scheduled_service": "yes", + "gps_code": "ZPBS", + "iata_code": "BSD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baoshan_Yunrui_Airport", + "keywords": "Baoshan Yunduan Airport" + }, + { + "id": "314643", + "ident": "CN-0028", + "type": "heliport", + "name": "Fiery Cross Reef Helipad", + "latitude_deg": "9.539168", + "longitude_deg": "112.880071", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Sansha (Yongshu Jiao / Fiery Cross Reef)", + "scheduled_service": "no" + }, + { + "id": "314644", + "ident": "CN-0029", + "type": "small_airport", + "name": "Fiery Cross Reef Airfield", + "latitude_deg": "9.552789", + "longitude_deg": "112.889554", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Sansha (Yongshu Jiao / Fiery Cross Reef)", + "scheduled_service": "no" + }, + { + "id": "44106", + "ident": "CN-0030", + "type": "medium_airport", + "name": "Chongqing Baishiyi Air Base", + "latitude_deg": "29.4953", + "longitude_deg": "106.359001", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-50", + "municipality": "Chongqing", + "scheduled_service": "no" + }, + { + "id": "314648", + "ident": "CN-0031", + "type": "heliport", + "name": "Zhubi Jiao (Subi Reef) Helipad", + "latitude_deg": "10.913002", + "longitude_deg": "114.061933", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Sansha (Zhubi Jiao / Subi Reef)", + "scheduled_service": "no" + }, + { + "id": "314908", + "ident": "CN-0032", + "type": "closed", + "name": "Kunming Wujiaba International Airport", + "latitude_deg": "24.9924", + "longitude_deg": "102.7435", + "elevation_ft": "6221", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Kunming", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kunming_Wujiaba_International_Airport", + "keywords": "KMG, ZPPP" + }, + { + "id": "44109", + "ident": "CN-0033", + "type": "small_airport", + "name": "Damxung Air Base", + "latitude_deg": "30.486273", + "longitude_deg": "91.082561", + "elevation_ft": "14105", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-54", + "municipality": "Lhasa (Damxung)", + "scheduled_service": "no", + "keywords": "Dangxiong" + }, + { + "id": "44110", + "ident": "CN-0034", + "type": "small_airport", + "name": "Dazu Air Base", + "latitude_deg": "29.636227", + "longitude_deg": "105.773621", + "elevation_ft": "1220", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-50", + "municipality": "Dazu", + "scheduled_service": "no", + "gps_code": "ZUDZ", + "iata_code": "DZU" + }, + { + "id": "44128", + "ident": "CN-0035", + "type": "closed", + "name": "Zhanyi Airport", + "latitude_deg": "25.592035", + "longitude_deg": "103.829188", + "elevation_ft": "6109", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Qujing (Zhanyi)", + "scheduled_service": "no", + "keywords": "Chanyi, Changyi" + }, + { + "id": "315143", + "ident": "CN-0036", + "type": "small_airport", + "name": "Shantou Waisha Airport", + "latitude_deg": "23.426901", + "longitude_deg": "116.762001", + "elevation_ft": "29", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Shantou (Longhu)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shantou_Waisha_Airport" + }, + { + "id": "315169", + "ident": "CN-0037", + "type": "small_airport", + "name": "Yongji Airport", + "latitude_deg": "34.8723", + "longitude_deg": "110.361", + "elevation_ft": "1236", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-14", + "municipality": "Yuncheng (Yongji)", + "scheduled_service": "no", + "keywords": "Yongyi Air Base" + }, + { + "id": "317868", + "ident": "CN-0038", + "type": "heliport", + "name": "BFA International Convention Center Heliport", + "latitude_deg": "19.140251", + "longitude_deg": "110.5632", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Qionghai (Dongyu Dao)", + "scheduled_service": "no" + }, + { + "id": "44115", + "ident": "CN-0039", + "type": "small_airport", + "name": "Lijiang Airport", + "latitude_deg": "23.5847", + "longitude_deg": "102.010003", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Yuanjiang", + "scheduled_service": "no" + }, + { + "id": "44116", + "ident": "CN-0040", + "type": "medium_airport", + "name": "Lincang Boshang Airport", + "latitude_deg": "23.7381", + "longitude_deg": "100.025002", + "elevation_ft": "6230", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Lincang", + "scheduled_service": "yes", + "gps_code": "ZPLC", + "iata_code": "LNJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lincang_Airport", + "keywords": "Lintsang Airfield" + }, + { + "id": "44117", + "ident": "CN-0041", + "type": "medium_airport", + "name": "Luliang Air Base", + "latitude_deg": "24.988192", + "longitude_deg": "103.642833", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Qujing (Luliang)", + "scheduled_service": "no" + }, + { + "id": "317986", + "ident": "CN-0042", + "type": "closed", + "name": "Former Dangyang Airport", + "latitude_deg": "30.823", + "longitude_deg": "111.8121", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-42", + "municipality": "Yichang (Dangyang)", + "scheduled_service": "no" + }, + { + "id": "44119", + "ident": "CN-0043", + "type": "medium_airport", + "name": "Honghe Mengzi Airport / Mengzi Air Base", + "latitude_deg": "23.3953", + "longitude_deg": "103.334", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Honghe", + "scheduled_service": "no", + "keywords": "ZWEE" + }, + { + "id": "317988", + "ident": "CN-0044", + "type": "closed", + "name": "Yichang Tumenwu Airport", + "latitude_deg": "30.671", + "longitude_deg": "111.4404", + "elevation_ft": "235", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-42", + "municipality": "Yichang (Wujiagang)", + "scheduled_service": "no" + }, + { + "id": "44121", + "ident": "CN-0045", + "type": "medium_airport", + "name": "Qionglai Air Base", + "latitude_deg": "30.49099", + "longitude_deg": "103.466139", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Chengdu (Qionglai)", + "scheduled_service": "no" + }, + { + "id": "44122", + "ident": "CN-0046", + "type": "medium_airport", + "name": "Xigaze Peace Airport / Shigatse Air Base", + "latitude_deg": "29.3519", + "longitude_deg": "89.311401", + "elevation_ft": "3782", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-54", + "municipality": "Xigazê (Samzhubzê)", + "scheduled_service": "yes", + "gps_code": "ZURK", + "iata_code": "RKZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shigatse_Peace_Airport" + }, + { + "id": "317990", + "ident": "CN-0047", + "type": "closed", + "name": "Former Yueyang Airport", + "latitude_deg": "29.424", + "longitude_deg": "113.0416", + "elevation_ft": "90", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-43", + "municipality": "Yueyang (Junshan)", + "scheduled_service": "no" + }, + { + "id": "44124", + "ident": "CN-0048", + "type": "medium_airport", + "name": "Wenshan Air Base", + "latitude_deg": "23.715599060058594", + "longitude_deg": "103.8270034790039", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "scheduled_service": "no" + }, + { + "id": "44125", + "ident": "CN-0049", + "type": "medium_airport", + "name": "Xiangyun Midu Air Base", + "latitude_deg": "25.445299", + "longitude_deg": "100.735001", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Dali (Xiangyun)", + "scheduled_service": "no", + "keywords": "Beitun Airport" + }, + { + "id": "44126", + "ident": "CN-0050", + "type": "medium_airport", + "name": "Panzhihua Bao'anying Airport", + "latitude_deg": "26.54", + "longitude_deg": "101.79852", + "elevation_ft": "1620", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Panzhihua (Renhe)", + "scheduled_service": "yes", + "gps_code": "ZUZH", + "iata_code": "PZI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Panzhihua_Bao'anying_Airport", + "keywords": "Xining Air Base, 攀枝花保安营机场" + }, + { + "id": "323879", + "ident": "CN-0051", + "type": "small_airport", + "name": "Zigong Fengming Airport", + "latitude_deg": "29.376484", + "longitude_deg": "104.625789", + "elevation_ft": "1133", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Zigong (Gongjing)", + "scheduled_service": "no", + "iata_code": "ZKL", + "keywords": "Fengming General Airport" + }, + { + "id": "318170", + "ident": "CN-0052", + "type": "small_airport", + "name": "Leshan Jiajiang Airport", + "latitude_deg": "29.732148", + "longitude_deg": "103.613477", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Leshan (Jiajiang)", + "scheduled_service": "no" + }, + { + "id": "44131", + "ident": "CN-0053", + "type": "medium_airport", + "name": "Baihe Ningming Air Base", + "latitude_deg": "22.120481", + "longitude_deg": "107.125046", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-45", + "municipality": "Ningming", + "scheduled_service": "no" + }, + { + "id": "318172", + "ident": "CN-0054", + "type": "small_airport", + "name": "Baoding Huangzhang Airport", + "latitude_deg": "38.83359", + "longitude_deg": "115.521626", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Baoding", + "scheduled_service": "no", + "keywords": "Baoding Army Heliport" + }, + { + "id": "44133", + "ident": "CN-0055", + "type": "medium_airport", + "name": "Changsha Datuopu Airport / Changsha Air Base", + "latitude_deg": "28.068522", + "longitude_deg": "112.957306", + "elevation_ft": "170", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-43", + "municipality": "Changsha (Tianxin)", + "scheduled_service": "no", + "gps_code": "ZGCS", + "keywords": "Changsha City Airport" + }, + { + "id": "44134", + "ident": "CN-0056", + "type": "medium_airport", + "name": "Dangyang Air Base", + "latitude_deg": "30.798599", + "longitude_deg": "111.809998", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-42", + "municipality": "Yichang (Dangyang)", + "scheduled_service": "no" + }, + { + "id": "44135", + "ident": "CN-0057", + "type": "medium_airport", + "name": "Foluo Northeast Air Base", + "latitude_deg": "18.6922", + "longitude_deg": "109.161003", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Ledong Li Autonomous County (Da'anzhen)", + "scheduled_service": "no" + }, + { + "id": "318233", + "ident": "CN-0058", + "type": "closed", + "name": "Lanzhou Donggang (Gongxingdun) Airport", + "latitude_deg": "39.948964", + "longitude_deg": "124.145162", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Chengguan, Dandong", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gongxingdun_Airport" + }, + { + "id": "44137", + "ident": "CN-0059", + "type": "small_airport", + "name": "Guangzhou East Airfield", + "latitude_deg": "23.1647", + "longitude_deg": "113.369003", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Guangzhou (Tianhe)", + "scheduled_service": "no" + }, + { + "id": "318340", + "ident": "CN-0060", + "type": "small_airport", + "name": "Haibei Airport", + "latitude_deg": "36.990726", + "longitude_deg": "100.857505", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-63", + "municipality": "Haibei (Haiyan)", + "scheduled_service": "no" + }, + { + "id": "44139", + "ident": "CN-0061", + "type": "medium_airport", + "name": "Foshan Shadi Airport", + "latitude_deg": "23.0833", + "longitude_deg": "113.07", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Foshan (Nanhai)", + "scheduled_service": "yes", + "gps_code": "ZGFS", + "iata_code": "FUO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foshan_Shadi_Airport", + "keywords": "Guangzhou Shadi Air Base" + }, + { + "id": "323881", + "ident": "CN-0062", + "type": "small_airport", + "name": "Bazhong Enyang Airport", + "latitude_deg": "31.73842", + "longitude_deg": "106.644872", + "elevation_ft": "1804", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Bazhong (Enyang)", + "scheduled_service": "yes", + "gps_code": "ZUBZ", + "iata_code": "BZX", + "local_code": "BZX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bazhong_Enyang_Airport" + }, + { + "id": "44141", + "ident": "CN-0063", + "type": "medium_airport", + "name": "Guiping Mengxu Air Base", + "latitude_deg": "23.330799", + "longitude_deg": "110.009003", + "elevation_ft": "171", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-45", + "municipality": "Guiping (Guigang)", + "scheduled_service": "no" + }, + { + "id": "44142", + "ident": "CN-0064", + "type": "closed", + "name": "Haikou Dayingshan (Haikou City) Airport", + "latitude_deg": "20.0189", + "longitude_deg": "110.347", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Haikou (Meilan)", + "scheduled_service": "no" + }, + { + "id": "323882", + "ident": "CN-0065", + "type": "closed", + "name": "Hanzhong Xiguan Airport", + "latitude_deg": "33.063599", + "longitude_deg": "107.008003", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-61", + "municipality": "Hanzhong (Hantai)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hanzhong_Xiguan_Airport" + }, + { + "id": "323884", + "ident": "CN-0066", + "type": "small_airport", + "name": "Guiyang Air Base", + "latitude_deg": "26.40994", + "longitude_deg": "106.532264", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-52", + "municipality": "Guiyang (Huaxi)", + "scheduled_service": "no" + }, + { + "id": "323907", + "ident": "CN-0067", + "type": "medium_airport", + "name": "Xinyang Minggang Airport", + "latitude_deg": "32.540819", + "longitude_deg": "114.079141", + "elevation_ft": "312", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-41", + "municipality": "Xinyang", + "scheduled_service": "yes", + "gps_code": "ZHXY", + "iata_code": "XAI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Xinyang_Minggang_Airport", + "keywords": "Queshan Air Base, 信阳明港机场" + }, + { + "id": "44146", + "ident": "CN-0068", + "type": "medium_airport", + "name": "Huizhou Pingtan Airport", + "latitude_deg": "23.049999", + "longitude_deg": "114.599998", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Huizhou (Pingtan)", + "scheduled_service": "yes", + "gps_code": "ZGHZ", + "iata_code": "HUZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Huizhou_Airport", + "keywords": "Huiyang Air Base, Pingtan Airport" + }, + { + "id": "44147", + "ident": "CN-0069", + "type": "medium_airport", + "name": "Jialaishi Air Base", + "latitude_deg": "19.697201", + "longitude_deg": "109.725998", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Lingao", + "scheduled_service": "no" + }, + { + "id": "324335", + "ident": "CN-0070", + "type": "closed", + "name": "Changchun East Airport", + "latitude_deg": "43.888157", + "longitude_deg": "125.405307", + "elevation_ft": "660", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-22", + "municipality": "Changchun", + "scheduled_service": "no" + }, + { + "id": "44149", + "ident": "CN-0071", + "type": "medium_airport", + "name": "Leiyang Air Base", + "latitude_deg": "26.587200164794922", + "longitude_deg": "112.89199829101562", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-43", + "scheduled_service": "no" + }, + { + "id": "44150", + "ident": "CN-0072", + "type": "medium_airport", + "name": "Lingshui Air Base", + "latitude_deg": "18.4944", + "longitude_deg": "109.987999", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Lingshui Li Autonomous County", + "scheduled_service": "no" + }, + { + "id": "324348", + "ident": "CN-0073", + "type": "small_airport", + "name": "Shangluo Airport", + "latitude_deg": "33.708533", + "longitude_deg": "110.249284", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-61", + "municipality": "Shangluo (Danfeng)", + "scheduled_service": "no", + "iata_code": "DFA" + }, + { + "id": "324349", + "ident": "CN-0074", + "type": "medium_airport", + "name": "Shangqiu Air Base", + "latitude_deg": "34.449507", + "longitude_deg": "115.459261", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-41", + "municipality": "Shangqiu", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shangqiu_Airport" + }, + { + "id": "44153", + "ident": "CN-0075", + "type": "closed", + "name": "Meixian Air Base", + "latitude_deg": "24.264999", + "longitude_deg": "116.099998", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Meizhou (Meixian)", + "scheduled_service": "no" + }, + { + "id": "324768", + "ident": "CN-0076", + "type": "medium_airport", + "name": "Zhengzhou Air Base", + "latitude_deg": "34.86125", + "longitude_deg": "113.729631", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-41", + "municipality": "Zhengzhou", + "scheduled_service": "no" + }, + { + "id": "329362", + "ident": "CN-0077", + "type": "heliport", + "name": "PLA Khunjerab Post Helipad", + "latitude_deg": "36.930618", + "longitude_deg": "75.553407", + "elevation_ft": "13525", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Tashkurgan", + "scheduled_service": "no" + }, + { + "id": "329665", + "ident": "CN-0078", + "type": "heliport", + "name": "Aurora Plaza Helipad", + "latitude_deg": "31.234386", + "longitude_deg": "121.499617", + "elevation_ft": "607", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-33", + "municipality": "Shanghai", + "scheduled_service": "no" + }, + { + "id": "44157", + "ident": "CN-0079", + "type": "medium_airport", + "name": "Shaoguan Danxia Airport", + "latitude_deg": "24.9786", + "longitude_deg": "113.420998", + "elevation_ft": "280", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Shaoguan", + "scheduled_service": "yes", + "gps_code": "ZGSG", + "iata_code": "HSC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shaoguan_Danxia_Airport", + "keywords": "Shaoguan Air Base, Shaoguan Guitou Airport" + }, + { + "id": "44158", + "ident": "CN-0080", + "type": "medium_airport", + "name": "Suixi Air Base", + "latitude_deg": "21.3958", + "longitude_deg": "110.199997", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Zhanjiang (Suixi)", + "scheduled_service": "no" + }, + { + "id": "44159", + "ident": "CN-0081", + "type": "medium_airport", + "name": "Jinggangshan Airport", + "latitude_deg": "26.856899", + "longitude_deg": "114.737", + "elevation_ft": "281", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-36", + "municipality": "Ji'an", + "scheduled_service": "yes", + "gps_code": "ZSJA", + "iata_code": "JGS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jinggangshan_Airport", + "keywords": "Tiahe Air Base, Ji'an Airport" + }, + { + "id": "44160", + "ident": "CN-0082", + "type": "medium_airport", + "name": "Baise Youjiang Airport", + "latitude_deg": "23.7206", + "longitude_deg": "106.959999", + "elevation_ft": "490", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-45", + "municipality": "Baise (Tianyang)", + "scheduled_service": "yes", + "gps_code": "ZGBS", + "iata_code": "AEB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baise_Youjiang_Airport", + "keywords": "Tian Yang Air Base, Bose airport, 百色右江机场" + }, + { + "id": "329666", + "ident": "CN-0083", + "type": "medium_airport", + "name": "Guodu Air Base", + "latitude_deg": "36.000428", + "longitude_deg": "117.625833", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Xintai, Tai'an", + "scheduled_service": "no" + }, + { + "id": "44162", + "ident": "CN-0084", + "type": "closed", + "name": "Wuhan Air Base", + "latitude_deg": "30.5986", + "longitude_deg": "114.241997", + "elevation_ft": "80", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-42", + "municipality": "Wuhan (Jianghan)", + "scheduled_service": "no", + "gps_code": "ZHWT", + "keywords": "Wangjiadun Airport," + }, + { + "id": "44163", + "ident": "CN-0085", + "type": "medium_airport", + "name": "Xiaogan Air Base", + "latitude_deg": "30.95359", + "longitude_deg": "113.911774", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-42", + "municipality": "Xiaogan (Xiaonan)", + "scheduled_service": "no" + }, + { + "id": "333848", + "ident": "CN-0086", + "type": "closed", + "name": "Dalachi Airbase", + "latitude_deg": "36.628134", + "longitude_deg": "105.002346", + "elevation_ft": "5699", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "municipality": "Baiyin (Pingchuan)", + "scheduled_service": "no" + }, + { + "id": "333849", + "ident": "CN-0087", + "type": "closed", + "name": "Chenggong Airport", + "latitude_deg": "24.846346", + "longitude_deg": "102.801256", + "elevation_ft": "6234", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Kunming (Chenggong)", + "scheduled_service": "no" + }, + { + "id": "333850", + "ident": "CN-0088", + "type": "closed", + "name": "Dabao Airbase", + "latitude_deg": "40.5402", + "longitude_deg": "124.2295", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Fengcheng, Dandong", + "scheduled_service": "no" + }, + { + "id": "44167", + "ident": "CN-0089", + "type": "medium_airport", + "name": "Lianyungang Huaguoshan International Airport", + "latitude_deg": "34.41406", + "longitude_deg": "119.17899", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Lianyungang", + "scheduled_service": "yes", + "gps_code": "ZSLG", + "iata_code": "LYG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lianyungang_Huaguoshan_International_Airport" + }, + { + "id": "44168", + "ident": "CN-0090", + "type": "medium_airport", + "name": "Cangxian Air Base", + "latitude_deg": "38.403025", + "longitude_deg": "116.930924", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Cangzhou", + "scheduled_service": "no" + }, + { + "id": "44169", + "ident": "CN-0091", + "type": "medium_airport", + "name": "Dongying Shengli Airport", + "latitude_deg": "37.5085983276", + "longitude_deg": "118.788002014", + "elevation_ft": "15", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Dongying", + "scheduled_service": "no", + "gps_code": "ZSDY", + "iata_code": "DOY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dongying_Shengli_Airport", + "keywords": "Dongying Air Base, Dongying Yong'an Airport" + }, + { + "id": "44170", + "ident": "CN-0092", + "type": "medium_airport", + "name": "Jiaozhou Jiaocheng Air Base", + "latitude_deg": "36.331163", + "longitude_deg": "120.025538", + "elevation_ft": "62", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Jiaozhou, Qingdao", + "scheduled_service": "no" + }, + { + "id": "44171", + "ident": "CN-0093", + "type": "small_airport", + "name": "Jinan Qihe Air Base", + "latitude_deg": "36.769139", + "longitude_deg": "116.639787", + "elevation_ft": "82", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Jinan", + "scheduled_service": "no" + }, + { + "id": "44172", + "ident": "CN-0094", + "type": "medium_airport", + "name": "Jiugucheng Air Base", + "latitude_deg": "37.491153", + "longitude_deg": "116.116726", + "elevation_ft": "75", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Hengshui", + "scheduled_service": "no" + }, + { + "id": "44173", + "ident": "CN-0095", + "type": "medium_airport", + "name": "Kaifeng Air Base", + "latitude_deg": "34.75389862060547", + "longitude_deg": "114.33899688720703", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-41", + "municipality": "Kaifeng", + "scheduled_service": "no" + }, + { + "id": "44174", + "ident": "CN-0096", + "type": "medium_airport", + "name": "Laiyang Air Base", + "latitude_deg": "36.9636", + "longitude_deg": "120.591003", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Yantai", + "scheduled_service": "no" + }, + { + "id": "44175", + "ident": "CN-0097", + "type": "medium_airport", + "name": "Luyang Air Base", + "latitude_deg": "33.685434", + "longitude_deg": "112.89053", + "elevation_ft": "469", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-41", + "municipality": "Xuchang (Pingdingshan)", + "scheduled_service": "no" + }, + { + "id": "335266", + "ident": "CN-0098", + "type": "small_airport", + "name": "Hailar Southwest Airport", + "latitude_deg": "49.164182", + "longitude_deg": "119.693685", + "elevation_ft": "2031", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Hailar", + "scheduled_service": "no" + }, + { + "id": "335267", + "ident": "CN-0099", + "type": "small_airport", + "name": "Chaor Airstrip", + "latitude_deg": "48.425954", + "longitude_deg": "121.387768", + "elevation_ft": "3012", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Chaor", + "scheduled_service": "no", + "keywords": "Ch'ao-erh, Чаор" + }, + { + "id": "44178", + "ident": "CN-0100", + "type": "small_airport", + "name": "Qingdao Cangkou Air Base", + "latitude_deg": "36.158929", + "longitude_deg": "120.387832", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Qingdao", + "scheduled_service": "no" + }, + { + "id": "44179", + "ident": "CN-0101", + "type": "seaplane_base", + "name": "Qingdao Naval Base", + "latitude_deg": "36.04690170288086", + "longitude_deg": "120.28399658203125", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "scheduled_service": "no" + }, + { + "id": "337836", + "ident": "CN-0102", + "type": "small_airport", + "name": "Zhongshan Sanjiao Airport", + "latitude_deg": "22.66392", + "longitude_deg": "113.46885", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Zhongshan", + "scheduled_service": "no" + }, + { + "id": "44181", + "ident": "CN-0103", + "type": "closed", + "name": "Wendeng Air Base", + "latitude_deg": "37.263011", + "longitude_deg": "122.025863", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Weihai", + "scheduled_service": "no" + }, + { + "id": "44182", + "ident": "CN-0104", + "type": "medium_airport", + "name": "Xingcheng Air Base", + "latitude_deg": "40.580328", + "longitude_deg": "120.700374", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Xingcheng, Huludao", + "scheduled_service": "no", + "gps_code": "ZYXC", + "iata_code": "XEN" + }, + { + "id": "44183", + "ident": "CN-0105", + "type": "small_airport", + "name": "Xuzhou Yangmiao Agricultural Airport", + "latitude_deg": "34.56423", + "longitude_deg": "116.97377", + "elevation_ft": "121", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Xuzhou", + "scheduled_service": "no" + }, + { + "id": "44184", + "ident": "CN-0106", + "type": "medium_airport", + "name": "Xuzhou Daguozhang Air Base", + "latitude_deg": "34.229285", + "longitude_deg": "117.245665", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Xuzhou", + "scheduled_service": "no" + }, + { + "id": "337837", + "ident": "CN-0107", + "type": "heliport", + "name": "Panyu Shawan Heliport", + "latitude_deg": "22.91308", + "longitude_deg": "113.32042", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Guangzhou (Panyu)", + "scheduled_service": "no" + }, + { + "id": "337838", + "ident": "CN-0108", + "type": "small_airport", + "name": "Zhubi Jiao (Subi Reef) Air Base", + "latitude_deg": "10.923926", + "longitude_deg": "114.070648", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Sansha (Zhubi Jiao / Subi Reef)", + "scheduled_service": "no" + }, + { + "id": "44187", + "ident": "CN-0109", + "type": "small_airport", + "name": "Yidu Air Base", + "latitude_deg": "36.586635", + "longitude_deg": "118.527603", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Weifang", + "scheduled_service": "no" + }, + { + "id": "337839", + "ident": "CN-0110", + "type": "small_airport", + "name": "Meiji Jiao (Mischief Reef)", + "latitude_deg": "9.92102", + "longitude_deg": "115.5059", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Sansha (Meiji Jiao / Mischief Reef)", + "scheduled_service": "no" + }, + { + "id": "44189", + "ident": "CN-0111", + "type": "medium_airport", + "name": "Zhucheng Air Base", + "latitude_deg": "36.027468", + "longitude_deg": "119.43778", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Weifang", + "scheduled_service": "no" + }, + { + "id": "339165", + "ident": "CN-0112", + "type": "heliport", + "name": "Lingjiao Heliport", + "latitude_deg": "22.59417", + "longitude_deg": "114.5378", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Shenzhen (Longgang)", + "scheduled_service": "no" + }, + { + "id": "44191", + "ident": "CN-0113", + "type": "medium_airport", + "name": "Altay Xuedu Airport", + "latitude_deg": "47.749886", + "longitude_deg": "88.085808", + "elevation_ft": "2460", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Altay", + "scheduled_service": "yes", + "gps_code": "ZWAT", + "iata_code": "AAT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Altay_Xuedu_Airport", + "keywords": "Altay Air Base" + }, + { + "id": "44192", + "ident": "CN-0114", + "type": "medium_airport", + "name": "Baoji Air Base", + "latitude_deg": "34.53125", + "longitude_deg": "107.470679", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-61", + "municipality": "Baoji (Fengxiang)", + "scheduled_service": "no" + }, + { + "id": "339167", + "ident": "CN-0115", + "type": "heliport", + "name": "Peking University Shenzhen Hospital Helipad", + "latitude_deg": "22.55887", + "longitude_deg": "114.045064", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Shenzhen (Futian)", + "scheduled_service": "no" + }, + { + "id": "339168", + "ident": "CN-0116", + "type": "heliport", + "name": "Honglong Century Plaza Helipad", + "latitude_deg": "22.543201", + "longitude_deg": "114.114657", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Shenzhen (Luohu)", + "scheduled_service": "no" + }, + { + "id": "44195", + "ident": "CN-0117", + "type": "medium_airport", + "name": "Gonghe Air Base", + "latitude_deg": "36.3367", + "longitude_deg": "100.480003", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-63", + "municipality": "Hainan (Gonghe)", + "scheduled_service": "no" + }, + { + "id": "339170", + "ident": "CN-0118", + "type": "closed", + "name": "Meigui Haian Pengxiang Helicopter Base", + "latitude_deg": "22.61466", + "longitude_deg": "114.37446", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Shenzhen (Longgang)", + "scheduled_service": "no" + }, + { + "id": "339219", + "ident": "CN-0119", + "type": "heliport", + "name": "Dong'ao Heliport", + "latitude_deg": "22.023542", + "longitude_deg": "113.717093", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Zhuhai (Xiangzhou)", + "scheduled_service": "no" + }, + { + "id": "339221", + "ident": "CN-0120", + "type": "heliport", + "name": "Guishan Dao Helipad", + "latitude_deg": "22.144529", + "longitude_deg": "113.824905", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Zhuhai (Xiangzhou)", + "scheduled_service": "no" + }, + { + "id": "339961", + "ident": "CN-0121", + "type": "medium_airport", + "name": "Huangdicun Naval Air Base", + "latitude_deg": "40.49979", + "longitude_deg": "120.659295", + "elevation_ft": "97", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Huludao", + "scheduled_service": "no" + }, + { + "id": "340835", + "ident": "CN-0122", + "type": "heliport", + "name": "Fuzhou Zhuqi Heliport", + "latitude_deg": "26.123906", + "longitude_deg": "119.113959", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-35", + "municipality": "Fuzhou (Minhou)", + "scheduled_service": "yes" + }, + { + "id": "44201", + "ident": "CN-0123", + "type": "medium_airport", + "name": "Lanzhou Air Base", + "latitude_deg": "35.917801", + "longitude_deg": "104.218002", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "municipality": "Lanzhou (Yuzhong)", + "scheduled_service": "no" + }, + { + "id": "340838", + "ident": "CN-0124", + "type": "heliport", + "name": "Wangzhuang Rescue Helipad", + "latitude_deg": "26.072323", + "longitude_deg": "119.318734", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-35", + "municipality": "Fuzhou", + "scheduled_service": "no" + }, + { + "id": "44203", + "ident": "CN-0125", + "type": "medium_airport", + "name": "Lintao Air Base", + "latitude_deg": "35.3083", + "longitude_deg": "103.835999", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "municipality": "Dingxi (Lintao)", + "scheduled_service": "no" + }, + { + "id": "340839", + "ident": "CN-0126", + "type": "heliport", + "name": "Fuzhou Zongyuan Helipad", + "latitude_deg": "26.093229", + "longitude_deg": "119.276626", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-35", + "municipality": "Fuzhou", + "scheduled_service": "no" + }, + { + "id": "44205", + "ident": "CN-0127", + "type": "medium_airport", + "name": "Qingshui Air Base", + "latitude_deg": "39.554699", + "longitude_deg": "98.884201", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "municipality": "Jiuquan (Suzhou)", + "scheduled_service": "no" + }, + { + "id": "341903", + "ident": "CN-0128", + "type": "heliport", + "name": "Anji County Heliport", + "latitude_deg": "30.601008", + "longitude_deg": "119.650912", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-33", + "municipality": "Anji, Huzhou", + "scheduled_service": "no" + }, + { + "id": "44207", + "ident": "CN-0129", + "type": "small_airport", + "name": "Shihezi Shandanhu General Airport", + "latitude_deg": "44.333051", + "longitude_deg": "86.116674", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Shihezi", + "scheduled_service": "no" + }, + { + "id": "44208", + "ident": "CN-0130", + "type": "medium_airport", + "name": "Tianshui Maijishan Airport", + "latitude_deg": "34.559399", + "longitude_deg": "105.860001", + "elevation_ft": "3590", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "municipality": "Tianshui (Maiji)", + "scheduled_service": "yes", + "gps_code": "ZLTS", + "iata_code": "THQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tianshui_Maijishan_Airport", + "keywords": "Tianshui Air Base, 天水麦积山机场, ZBEE" + }, + { + "id": "342071", + "ident": "CN-0131", + "type": "heliport", + "name": "Shuyang Heliport", + "latitude_deg": "24.6263", + "longitude_deg": "117.0997", + "elevation_ft": "1611", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-35", + "municipality": "Zhangzhou", + "scheduled_service": "no" + }, + { + "id": "44210", + "ident": "CN-0132", + "type": "medium_airport", + "name": "Ürümqi South Air Base", + "latitude_deg": "43.466593", + "longitude_deg": "87.531177", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Ürümqi", + "scheduled_service": "no" + }, + { + "id": "44211", + "ident": "CN-0133", + "type": "medium_airport", + "name": "Uxxaktal Air Base", + "latitude_deg": "42.1814", + "longitude_deg": "87.188103", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Hoxud, Bayingolin", + "scheduled_service": "no" + }, + { + "id": "44212", + "ident": "CN-0134", + "type": "medium_airport", + "name": "Wugong Air Base", + "latitude_deg": "34.275907", + "longitude_deg": "108.2658", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-61", + "municipality": "Xianyang (Wugong)", + "scheduled_service": "no" + }, + { + "id": "44213", + "ident": "CN-0135", + "type": "medium_airport", + "name": "Ürümqi Changji Air Base", + "latitude_deg": "43.951175", + "longitude_deg": "87.079232", + "elevation_ft": "2425", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Ashilixiang", + "scheduled_service": "no" + }, + { + "id": "44214", + "ident": "CN-0136", + "type": "medium_airport", + "name": "Wuwei Air Base", + "latitude_deg": "37.9883", + "longitude_deg": "102.567001", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "municipality": "Wuwei", + "scheduled_service": "no" + }, + { + "id": "44215", + "ident": "CN-0137", + "type": "medium_airport", + "name": "Xi'an Air Base", + "latitude_deg": "34.153059", + "longitude_deg": "108.599739", + "elevation_ft": "1337", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-61", + "municipality": "Xi'an (Huyi)", + "scheduled_service": "no", + "keywords": "Huxian Air Base" + }, + { + "id": "44216", + "ident": "CN-0138", + "type": "medium_airport", + "name": "Xincheng Air Base", + "latitude_deg": "25.5483", + "longitude_deg": "114.619003", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-36", + "municipality": "Ganzhou", + "scheduled_service": "no" + }, + { + "id": "44217", + "ident": "CN-0139", + "type": "medium_airport", + "name": "Yaerbashi Test Range", + "latitude_deg": "43.077202", + "longitude_deg": "92.808098", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Yizhou, Hami", + "scheduled_service": "no" + }, + { + "id": "44218", + "ident": "CN-0140", + "type": "medium_airport", + "name": "Yanliang Air Base", + "latitude_deg": "34.642248", + "longitude_deg": "109.241867", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-61", + "municipality": "Xi'an (Yanliang)", + "scheduled_service": "no" + }, + { + "id": "342115", + "ident": "CN-0141", + "type": "small_airport", + "name": "Guilin Qifengling Airport", + "latitude_deg": "25.193836", + "longitude_deg": "110.32033", + "elevation_ft": "476", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-45", + "municipality": "Guilin (Yanshan)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guilin_Qifengling_Airport", + "keywords": "Kweilin, Lijiacun" + }, + { + "id": "342163", + "ident": "CN-0142", + "type": "heliport", + "name": "Xidao Heliport", + "latitude_deg": "18.23191", + "longitude_deg": "109.37722", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Sanya (Tianya)", + "scheduled_service": "no" + }, + { + "id": "44221", + "ident": "CN-0143", + "type": "small_airport", + "name": "Zhangye Ganzhou Airport", + "latitude_deg": "38.801899", + "longitude_deg": "100.675003", + "elevation_ft": "5280", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "municipality": "Zhangye (Ganzhou)", + "scheduled_service": "yes", + "gps_code": "ZLZY", + "iata_code": "YZY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zhangye_Ganzhou_Airport", + "keywords": "Zhangye Southeast Air Base, 张掖甘州机场" + }, + { + "id": "342164", + "ident": "CN-0144", + "type": "heliport", + "name": "Luhuitou Heliport", + "latitude_deg": "18.1923", + "longitude_deg": "109.4812", + "elevation_ft": "569", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Sanya (Jiyang)", + "scheduled_service": "no" + }, + { + "id": "44223", + "ident": "CN-0145", + "type": "small_airport", + "name": "Changxing Air Base", + "latitude_deg": "30.968599", + "longitude_deg": "119.731003", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-33", + "municipality": "Huzhou", + "scheduled_service": "no" + }, + { + "id": "44224", + "ident": "CN-0146", + "type": "medium_airport", + "name": "Daishan Air Base", + "latitude_deg": "30.287581", + "longitude_deg": "122.144401", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-33", + "municipality": "Zhoushan", + "scheduled_service": "no" + }, + { + "id": "44225", + "ident": "CN-0147", + "type": "medium_airport", + "name": "Feidong Air Base", + "latitude_deg": "31.909401", + "longitude_deg": "117.658997", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-34", + "municipality": "Hefei", + "scheduled_service": "no" + }, + { + "id": "342165", + "ident": "CN-0148", + "type": "heliport", + "name": "Zhaoshu Dao Heliport", + "latitude_deg": "16.9782", + "longitude_deg": "112.2664", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Sansha (Zhaoshu Dao / Tree Island)", + "scheduled_service": "no" + }, + { + "id": "44227", + "ident": "CN-0149", + "type": "medium_airport", + "name": "Fuzhou Air Base", + "latitude_deg": "26.0044", + "longitude_deg": "119.311996", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-35", + "municipality": "Fuzhou", + "scheduled_service": "no" + }, + { + "id": "342166", + "ident": "CN-0150", + "type": "heliport", + "name": "Shanhu Dao Heliport", + "latitude_deg": "16.5351", + "longitude_deg": "111.6087", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Sansha (Shanhu Dao / Pattle Island)", + "scheduled_service": "no" + }, + { + "id": "342167", + "ident": "CN-0151", + "type": "heliport", + "name": "Jinyin Dao Heliport", + "latitude_deg": "16.4475", + "longitude_deg": "111.507", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Sansha (Jinyin Dao / Money Island)", + "scheduled_service": "no" + }, + { + "id": "44230", + "ident": "CN-0152", + "type": "medium_airport", + "name": "Huian Air Base", + "latitude_deg": "25.026100158691406", + "longitude_deg": "118.80699920654297", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-35", + "scheduled_service": "no" + }, + { + "id": "44231", + "ident": "CN-0153", + "type": "medium_airport", + "name": "Hangzhou Jianqiao Airport", + "latitude_deg": "30.3353", + "longitude_deg": "120.240997", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-33", + "municipality": "Hangzhou", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hangzhou_Jianqiao_Airport" + }, + { + "id": "44232", + "ident": "CN-0154", + "type": "medium_airport", + "name": "Jiaxing Airport / Jiaxing Air Base", + "latitude_deg": "30.705535", + "longitude_deg": "120.679779", + "elevation_ft": "17", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-33", + "municipality": "Xiuzhou, Hangzhou", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jiaxing_Airport" + }, + { + "id": "342174", + "ident": "CN-0155", + "type": "small_airport", + "name": "Shanghai Chongming Airport", + "latitude_deg": "31.664", + "longitude_deg": "121.5187", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-31", + "municipality": "Shanghai (Chongming)", + "scheduled_service": "no" + }, + { + "id": "342201", + "ident": "CN-0156", + "type": "heliport", + "name": "Rimuchang Heliport", + "latitude_deg": "33.76843", + "longitude_deg": "79.07384", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-54", + "municipality": "Ngari (Rutog)", + "scheduled_service": "no" + }, + { + "id": "342426", + "ident": "CN-0157", + "type": "small_airport", + "name": "Morin Dawa Banner Airport", + "latitude_deg": "48.38745", + "longitude_deg": "124.43127", + "elevation_ft": "722", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Hulunbuir", + "scheduled_service": "no", + "iata_code": "DWS" + }, + { + "id": "44236", + "ident": "CN-0158", + "type": "medium_airport", + "name": "Longtian Air Base", + "latitude_deg": "25.5728", + "longitude_deg": "119.459999", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-35", + "municipality": "Fuzhou (Fuqing)", + "scheduled_service": "no", + "keywords": "L'ung-tien" + }, + { + "id": "44237", + "ident": "CN-0159", + "type": "closed", + "name": "Longyou Air Base", + "latitude_deg": "29.1131", + "longitude_deg": "119.177002", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-33", + "scheduled_service": "no" + }, + { + "id": "342663", + "ident": "CN-0160", + "type": "closed", + "name": "Ankang Wulipu Airport", + "latitude_deg": "32.708056", + "longitude_deg": "108.931111", + "elevation_ft": "850", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-61", + "municipality": "Ankang (Hanbin)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ankang_Wulipu_Airport", + "keywords": "AKA, ZLAK, Ankang Airfield" + }, + { + "id": "44239", + "ident": "CN-0161", + "type": "closed", + "name": "Former Ganzhou Huangjin Airport", + "latitude_deg": "25.82666", + "longitude_deg": "114.91277", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-36", + "municipality": "Ganzhou", + "scheduled_service": "no", + "keywords": "Kanchow (Kan Hsien), Nanwai, KOW, ZSGZ" + }, + { + "id": "44240", + "ident": "CN-0162", + "type": "closed", + "name": "Nanchang Yaohu Airport", + "latitude_deg": "28.635599", + "longitude_deg": "115.93", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-36", + "municipality": "Nanchang", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nanchang_Yaohu_Airport" + }, + { + "id": "44241", + "ident": "CN-0163", + "type": "medium_airport", + "name": "Nanchang Xiangtang Air Base", + "latitude_deg": "28.421205", + "longitude_deg": "115.923375", + "elevation_ft": "75", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-36", + "municipality": "Nanchang", + "scheduled_service": "no" + }, + { + "id": "27224", + "ident": "CN-0164", + "type": "closed", + "name": "Qingdao Liuting Airport", + "latitude_deg": "36.266102", + "longitude_deg": "120.374001", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Qingdao", + "scheduled_service": "no", + "iata_code": "TAO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qingdao_Liuting_International_Airport", + "keywords": "ZSQD" + }, + { + "id": "44243", + "ident": "CN-0165", + "type": "medium_airport", + "name": "Ningbo Zhuangqiao Air Base", + "latitude_deg": "29.9228", + "longitude_deg": "121.573997", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-33", + "municipality": "Ningbo", + "scheduled_service": "no" + }, + { + "id": "342841", + "ident": "CN-0166", + "type": "small_airport", + "name": "Alar Lanpowan Airport", + "latitude_deg": "40.640982", + "longitude_deg": "81.273888", + "elevation_ft": "3314", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Alar", + "scheduled_service": "no" + }, + { + "id": "342842", + "ident": "CN-0167", + "type": "closed", + "name": "Former Qiemo Airport", + "latitude_deg": "38.14886", + "longitude_deg": "85.5325", + "elevation_ft": "4085", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Qiemo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qiemo_Airport_(former)", + "keywords": "IQM, ZWCM" + }, + { + "id": "344625", + "ident": "CN-0168", + "type": "heliport", + "name": "One Shenzhen Bay 7 Helipad", + "latitude_deg": "22.50869", + "longitude_deg": "113.9376", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Shenzhen (Nanshan)", + "scheduled_service": "no" + }, + { + "id": "44247", + "ident": "CN-0169", + "type": "medium_airport", + "name": "Shanghai Dachang Air Base", + "latitude_deg": "31.324438", + "longitude_deg": "121.409508", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-31", + "municipality": "Shanghai (Baoshan)", + "scheduled_service": "no" + }, + { + "id": "344626", + "ident": "CN-0170", + "type": "heliport", + "name": "Excellence Qianhai Tower 3 Helipad", + "latitude_deg": "22.53277", + "longitude_deg": "113.89421", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Shenzhen (Nanshan)", + "scheduled_service": "no" + }, + { + "id": "44249", + "ident": "CN-0171", + "type": "closed", + "name": "Shanghai Longhua Airport", + "latitude_deg": "31.166901", + "longitude_deg": "121.454002", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-31", + "municipality": "Shanghai (Xuhui)", + "scheduled_service": "no", + "gps_code": "ZSSL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shanghai_Longhua_Airport" + }, + { + "id": "344627", + "ident": "CN-0172", + "type": "heliport", + "name": "China Resources Qianhai Center Tower 1 Helipad", + "latitude_deg": "22.53444", + "longitude_deg": "113.89526", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Shenzhen (Nanshan)", + "scheduled_service": "no" + }, + { + "id": "44251", + "ident": "CN-0173", + "type": "closed", + "name": "Shanghai Jiangwan Airfield", + "latitude_deg": "31.333", + "longitude_deg": "121.5", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-31", + "municipality": "Shanghai (Yangpu)", + "scheduled_service": "no" + }, + { + "id": "344628", + "ident": "CN-0174", + "type": "heliport", + "name": "Shum Yip Upper Hills Tower Helipad", + "latitude_deg": "22.55955", + "longitude_deg": "114.06675", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Shenzhen (Futian)", + "scheduled_service": "no" + }, + { + "id": "344629", + "ident": "CN-0175", + "type": "heliport", + "name": "Second People's Hospital of Shenzhen Heliport", + "latitude_deg": "22.56011", + "longitude_deg": "114.08093", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Shenzhen (Futian)", + "scheduled_service": "no" + }, + { + "id": "344630", + "ident": "CN-0176", + "type": "heliport", + "name": "Shenzhen Shuxue Medical Science Institute Heliport", + "latitude_deg": "22.56047", + "longitude_deg": "114.08172", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Shenzhen (Futian)", + "scheduled_service": "no" + }, + { + "id": "348149", + "ident": "CN-0177", + "type": "small_airport", + "name": "Shijiazhuang Luancheng Airport", + "latitude_deg": "37.91305", + "longitude_deg": "114.59166", + "elevation_ft": "197", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Shijiazhuang", + "scheduled_service": "no", + "iata_code": "LCT" + }, + { + "id": "348150", + "ident": "CN-0178", + "type": "small_airport", + "name": "Wuhan Hannan Municipal Airport", + "latitude_deg": "30.25521", + "longitude_deg": "114.062805", + "elevation_ft": "85", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-42", + "municipality": "Wuhan (Hannan)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hannan_Municipal_Airport" + }, + { + "id": "348151", + "ident": "CN-0179", + "type": "small_airport", + "name": "Baoji Lingyuan General Aviation Airport", + "latitude_deg": "34.38946", + "longitude_deg": "107.12865", + "elevation_ft": "2635", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-61", + "municipality": "Baoji (Jintai)", + "scheduled_service": "no" + }, + { + "id": "348154", + "ident": "CN-0180", + "type": "small_airport", + "name": "Xishanbei Airport", + "latitude_deg": "39.14996", + "longitude_deg": "115.28795", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Baoding", + "scheduled_service": "no" + }, + { + "id": "348155", + "ident": "CN-0181", + "type": "small_airport", + "name": "Dingxing Airport", + "latitude_deg": "39.25469", + "longitude_deg": "115.83329", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Baoding", + "scheduled_service": "no" + }, + { + "id": "44260", + "ident": "CN-0182", + "type": "medium_airport", + "name": "Zhangshu Air Base", + "latitude_deg": "28.023283", + "longitude_deg": "115.549649", + "elevation_ft": "116", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-36", + "municipality": "Yichun", + "scheduled_service": "no" + }, + { + "id": "44261", + "ident": "CN-0183", + "type": "small_airport", + "name": "Zhangzhou Airfield", + "latitude_deg": "24.561621", + "longitude_deg": "117.654665", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-35", + "municipality": "Xiangcheng, Zhangzhou", + "scheduled_service": "no", + "keywords": "ZZHN" + }, + { + "id": "348156", + "ident": "CN-0184", + "type": "small_airport", + "name": "Gaobeidian Airport", + "latitude_deg": "39.36942", + "longitude_deg": "115.93992", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Baoding", + "scheduled_service": "no" + }, + { + "id": "44263", + "ident": "CN-0185", + "type": "medium_airport", + "name": "Changchun Air Base", + "latitude_deg": "43.9053", + "longitude_deg": "125.197998", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-22", + "municipality": "Changchun", + "scheduled_service": "no" + }, + { + "id": "348157", + "ident": "CN-0186", + "type": "small_airport", + "name": "Zhuozhou Airport", + "latitude_deg": "39.45692", + "longitude_deg": "116.00091", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Baoding", + "scheduled_service": "no" + }, + { + "id": "44265", + "ident": "CN-0187", + "type": "closed", + "name": "Former Chifeng Airport", + "latitude_deg": "42.234587", + "longitude_deg": "118.906746", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Chifeng", + "scheduled_service": "no" + }, + { + "id": "348158", + "ident": "CN-0188", + "type": "medium_airport", + "name": "Beijing Nanjiao Airport", + "latitude_deg": "39.48595", + "longitude_deg": "116.37236", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-11", + "municipality": "Beijing", + "scheduled_service": "no", + "gps_code": "ZBNY", + "iata_code": "NAY", + "wikipedia_link": "https://zh.wikipedia.org/wiki/%E5%8C%97%E4%BA%AC%E5%8D%97%E9%83%8A%E6%9C%BA%E5%9C%BA", + "keywords": "New Nanyuan" + }, + { + "id": "44267", + "ident": "CN-0189", + "type": "medium_airport", + "name": "Dandong Langtou Airport", + "latitude_deg": "40.0247", + "longitude_deg": "124.286003", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Zhenxing, Dandong", + "scheduled_service": "yes", + "gps_code": "ZYDD", + "iata_code": "DDG", + "home_link": "http://www.ddcei.gov.cn/english/index.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dandong_Airport" + }, + { + "id": "44268", + "ident": "CN-0190", + "type": "medium_airport", + "name": "Dingxin-Shuangchengzi Air Base", + "latitude_deg": "40.401402", + "longitude_deg": "99.789398", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "municipality": "Jiuquan (Jinta)", + "scheduled_service": "no" + }, + { + "id": "44269", + "ident": "CN-0191", + "type": "medium_airport", + "name": "Fuxin Air Base", + "latitude_deg": "42.078899", + "longitude_deg": "121.662003", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Xihe, Fuxin", + "scheduled_service": "no" + }, + { + "id": "44270", + "ident": "CN-0192", + "type": "medium_airport", + "name": "Gongzhuling Air Base", + "latitude_deg": "43.526293", + "longitude_deg": "124.78466", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-22", + "municipality": "Siping", + "scheduled_service": "no", + "keywords": "Huaide Air Base" + }, + { + "id": "44271", + "ident": "CN-0193", + "type": "small_airport", + "name": "Harbin Pingfang Airport", + "latitude_deg": "45.59886", + "longitude_deg": "126.65808", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Harbin", + "scheduled_service": "no", + "keywords": "Ping Fang Tien Air Base" + }, + { + "id": "44272", + "ident": "CN-0194", + "type": "small_airport", + "name": "Jinxi Air Base", + "latitude_deg": "40.749199", + "longitude_deg": "120.878998", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Huludao", + "scheduled_service": "no", + "gps_code": "ZYUH" + }, + { + "id": "44273", + "ident": "CN-0195", + "type": "small_airport", + "name": "Liushuibao Airfield", + "latitude_deg": "41.187138", + "longitude_deg": "121.167239", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Jinzhou", + "scheduled_service": "no" + }, + { + "id": "348163", + "ident": "CN-0196", + "type": "closed", + "name": "Former Bengbu Airport", + "latitude_deg": "32.93333", + "longitude_deg": "117.36666", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-34", + "municipality": "Bengbu", + "scheduled_service": "no" + }, + { + "id": "44275", + "ident": "CN-0197", + "type": "medium_airport", + "name": "Kaiyuan Air Base", + "latitude_deg": "42.525799", + "longitude_deg": "123.982002", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Qinghe, Tieling", + "scheduled_service": "no" + }, + { + "id": "44276", + "ident": "CN-0198", + "type": "medium_airport", + "name": "Lalin Air Base", + "latitude_deg": "45.259457", + "longitude_deg": "126.893536", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Harbin", + "scheduled_service": "no" + }, + { + "id": "348164", + "ident": "CN-0199", + "type": "small_airport", + "name": "Shanghai Gaodong Airport", + "latitude_deg": "31.33396", + "longitude_deg": "121.62176", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-31", + "municipality": "Shanghai (Pudong)", + "scheduled_service": "no" + }, + { + "id": "348165", + "ident": "CN-0200", + "type": "small_airport", + "name": "Xuzhou Jiulishan Air Base", + "latitude_deg": "34.2879", + "longitude_deg": "117.1713", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Xuzhou", + "scheduled_service": "no" + }, + { + "id": "44279", + "ident": "CN-0201", + "type": "medium_airport", + "name": "Pingquan Air Base", + "latitude_deg": "40.900409", + "longitude_deg": "118.677878", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Chengde", + "scheduled_service": "no" + }, + { + "id": "348166", + "ident": "CN-0202", + "type": "closed", + "name": "Datong Beijiazao Airport", + "latitude_deg": "40.03942", + "longitude_deg": "113.39344", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-14", + "municipality": "Datong", + "scheduled_service": "no", + "keywords": "Dongwangzhuang" + }, + { + "id": "348167", + "ident": "CN-0203", + "type": "small_airport", + "name": "Datun Air Base", + "latitude_deg": "43.73361", + "longitude_deg": "125.25333", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-22", + "municipality": "Changchun", + "scheduled_service": "no" + }, + { + "id": "44282", + "ident": "CN-0204", + "type": "medium_airport", + "name": "Shenyang Beiling Air Base", + "latitude_deg": "41.8708", + "longitude_deg": "123.439003", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Huanggu, Shenyang", + "scheduled_service": "no" + }, + { + "id": "348168", + "ident": "CN-0205", + "type": "small_airport", + "name": "Hefei Luogang Airport", + "latitude_deg": "31.77999", + "longitude_deg": "117.29833", + "elevation_ft": "108", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-34", + "municipality": "Hefei", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hefei_Luogang_Airport", + "keywords": "HFE, ZSOF" + }, + { + "id": "44284", + "ident": "CN-0206", + "type": "medium_airport", + "name": "Shenyang Yuhong Quansheng Airport", + "latitude_deg": "41.822498", + "longitude_deg": "123.299004", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Yuhong, Shenyang", + "scheduled_service": "no" + }, + { + "id": "44285", + "ident": "CN-0207", + "type": "small_airport", + "name": "Shuangcheng Air Base", + "latitude_deg": "45.406874", + "longitude_deg": "126.320977", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Harbin", + "scheduled_service": "no" + }, + { + "id": "44286", + "ident": "CN-0208", + "type": "medium_airport", + "name": "Siping Air Base", + "latitude_deg": "43.156898", + "longitude_deg": "124.292", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-22", + "municipality": "Siping", + "scheduled_service": "no" + }, + { + "id": "44287", + "ident": "CN-0209", + "type": "medium_airport", + "name": "Suizhong Air Base", + "latitude_deg": "40.298992", + "longitude_deg": "120.36152", + "elevation_ft": "43", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Huludao", + "scheduled_service": "no" + }, + { + "id": "44288", + "ident": "CN-0210", + "type": "medium_airport", + "name": "Tuchengzi Air Base", + "latitude_deg": "38.912201", + "longitude_deg": "121.238998", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Lüshunkou, Dalian", + "scheduled_service": "no" + }, + { + "id": "348169", + "ident": "CN-0211", + "type": "small_airport", + "name": "Gaomi Air Base", + "latitude_deg": "36.3875", + "longitude_deg": "119.71194", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Weifang", + "scheduled_service": "no" + }, + { + "id": "44290", + "ident": "CN-0212", + "type": "closed", + "name": "Dalian Yingchenzi/Xinzhaizi Air Base", + "latitude_deg": "39.010601", + "longitude_deg": "121.389999", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Ganjingzi, Dalian", + "scheduled_service": "no" + }, + { + "id": "348170", + "ident": "CN-0213", + "type": "small_airport", + "name": "Guangshui Air Base", + "latitude_deg": "31.6625", + "longitude_deg": "113.81777", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-42", + "municipality": "Suizhou", + "scheduled_service": "no" + }, + { + "id": "348171", + "ident": "CN-0214", + "type": "small_airport", + "name": "Huangpi Air Base", + "latitude_deg": "30.90205", + "longitude_deg": "114.51008", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-42", + "municipality": "Wuhan (Huangpi)", + "scheduled_service": "no" + }, + { + "id": "348172", + "ident": "CN-0215", + "type": "small_airport", + "name": "Sheyang Airport", + "latitude_deg": "33.79276", + "longitude_deg": "120.16497", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Yancheng", + "scheduled_service": "no" + }, + { + "id": "348688", + "ident": "CN-0216", + "type": "small_airport", + "name": "Longkou Huangshan Airport", + "latitude_deg": "37.55449", + "longitude_deg": "120.2724", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Yantai", + "scheduled_service": "no" + }, + { + "id": "348689", + "ident": "CN-0217", + "type": "small_airport", + "name": "Penglai Shahekou Airport", + "latitude_deg": "37.80473", + "longitude_deg": "120.80954", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Yantai", + "scheduled_service": "no" + }, + { + "id": "348690", + "ident": "CN-0218", + "type": "small_airport", + "name": "Binzhou Daguo Airport", + "latitude_deg": "37.61055", + "longitude_deg": "117.88556", + "elevation_ft": "25", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Binzhou", + "scheduled_service": "no" + }, + { + "id": "348693", + "ident": "CN-0219", + "type": "small_airport", + "name": "Jinan Pingyin General Airport", + "latitude_deg": "36.29659", + "longitude_deg": "116.43959", + "elevation_ft": "131", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Jinan", + "scheduled_service": "no" + }, + { + "id": "348694", + "ident": "CN-0220", + "type": "small_airport", + "name": "Zibo Air Base", + "latitude_deg": "36.80982", + "longitude_deg": "117.8922", + "elevation_ft": "131", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Zibo", + "scheduled_service": "no" + }, + { + "id": "348695", + "ident": "CN-0221", + "type": "small_airport", + "name": "Huanghua Fanghuang Airport", + "latitude_deg": "38.41903", + "longitude_deg": "117.29877", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Cangzhou", + "scheduled_service": "no" + }, + { + "id": "348696", + "ident": "CN-0222", + "type": "small_airport", + "name": "Binhai Douzhuang Airport", + "latitude_deg": "38.56417", + "longitude_deg": "117.31323", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-12", + "municipality": "Binhai", + "scheduled_service": "no" + }, + { + "id": "348697", + "ident": "CN-0223", + "type": "small_airport", + "name": "Tai'an Xinkaihe Airport", + "latitude_deg": "41.3282", + "longitude_deg": "122.45557", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Anshan", + "scheduled_service": "no" + }, + { + "id": "348699", + "ident": "CN-0224", + "type": "small_airport", + "name": "Luhe Ma'an Airport", + "latitude_deg": "32.37938", + "longitude_deg": "118.79465", + "elevation_ft": "79", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Nanjing", + "scheduled_service": "no" + }, + { + "id": "349469", + "ident": "CN-0225", + "type": "closed", + "name": "Aksu Yituan Airport", + "latitude_deg": "40.67737", + "longitude_deg": "79.89501", + "elevation_ft": "3451", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Aksu (Yingbin)", + "scheduled_service": "no" + }, + { + "id": "349470", + "ident": "CN-0226", + "type": "small_airport", + "name": "Aksu Zhicheng Airport", + "latitude_deg": "40.990059", + "longitude_deg": "80.094509", + "elevation_ft": "3629", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Aksu", + "scheduled_service": "no" + }, + { + "id": "349471", + "ident": "CN-0227", + "type": "small_airport", + "name": "Yizhou Test Range", + "latitude_deg": "42.55217", + "longitude_deg": "94.21869", + "elevation_ft": "2828", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Hami", + "scheduled_service": "no" + }, + { + "id": "349472", + "ident": "CN-0228", + "type": "small_airport", + "name": "Linze Danxia Airport", + "latitude_deg": "39.04572", + "longitude_deg": "100.16785", + "elevation_ft": "5089", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "municipality": "Zhangye (Linze)", + "scheduled_service": "no" + }, + { + "id": "350852", + "ident": "CN-0229", + "type": "small_airport", + "name": "Datong Qingshuihe Air Base", + "latitude_deg": "39.93824", + "longitude_deg": "113.40345", + "elevation_ft": "3340", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-14", + "municipality": "Datong", + "scheduled_service": "no" + }, + { + "id": "350855", + "ident": "CN-0230", + "type": "small_airport", + "name": "PLAAF Shijiazhiang Flight Academy", + "latitude_deg": "38.08191", + "longitude_deg": "114.41804", + "elevation_ft": "282", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Shijiazhuang", + "scheduled_service": "no" + }, + { + "id": "350856", + "ident": "CN-0231", + "type": "small_airport", + "name": "Xinxiang Helicopter Air Base", + "latitude_deg": "35.29336", + "longitude_deg": "113.83837", + "elevation_ft": "236", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-41", + "municipality": "Xinxiang", + "scheduled_service": "no" + }, + { + "id": "350871", + "ident": "CN-0232", + "type": "small_airport", + "name": "Xiantao General Airport", + "latitude_deg": "30.40678", + "longitude_deg": "113.59485", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-42", + "municipality": "Jingzhou (Xiantao)", + "scheduled_service": "no" + }, + { + "id": "350872", + "ident": "CN-0233", + "type": "heliport", + "name": "Nanjing Ruohang Helicopter Base", + "latitude_deg": "32.05749", + "longitude_deg": "118.5722", + "elevation_ft": "282", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Nanjing", + "scheduled_service": "no" + }, + { + "id": "350873", + "ident": "CN-0234", + "type": "closed", + "name": "Jurong Air Base", + "latitude_deg": "31.95971", + "longitude_deg": "119.17224", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Zhenjiang", + "scheduled_service": "no" + }, + { + "id": "350874", + "ident": "CN-0235", + "type": "small_airport", + "name": "Jiangning Tushan Air Base", + "latitude_deg": "31.97139", + "longitude_deg": "118.8404", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Nanjing", + "scheduled_service": "no" + }, + { + "id": "350882", + "ident": "CN-0236", + "type": "medium_airport", + "name": "Xigaze Dingri Airport", + "latitude_deg": "28.604567", + "longitude_deg": "86.798", + "elevation_ft": "14108", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-54", + "municipality": "Xigazê (Dingri)", + "scheduled_service": "no", + "iata_code": "DDR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shigatse_Tingri_Airport", + "keywords": "Shigatse Tingri" + }, + { + "id": "350883", + "ident": "CN-0237", + "type": "closed", + "name": "Tashkurgan Airport (under construction)", + "latitude_deg": "37.661333", + "longitude_deg": "75.288877", + "elevation_ft": "10499", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Tashkurgan", + "scheduled_service": "no", + "iata_code": "HQL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tashkurgan_Airport" + }, + { + "id": "350886", + "ident": "CN-0238", + "type": "small_airport", + "name": "Dongyang Hengdian General Airport", + "latitude_deg": "29.12513", + "longitude_deg": "120.24343", + "elevation_ft": "364", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-33", + "municipality": "Jinhua", + "scheduled_service": "no" + }, + { + "id": "350887", + "ident": "CN-0239", + "type": "heliport", + "name": "Woduhe Heliport", + "latitude_deg": "50.53783", + "longitude_deg": "125.81467", + "elevation_ft": "1076", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Nenjiang, Heihe", + "scheduled_service": "no" + }, + { + "id": "350888", + "ident": "CN-0240", + "type": "heliport", + "name": "Taizhou Chunlan Heliport", + "latitude_deg": "32.49338", + "longitude_deg": "119.95283", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-33", + "municipality": "Taizhou", + "scheduled_service": "no" + }, + { + "id": "350889", + "ident": "CN-0241", + "type": "small_airport", + "name": "Jingmen Zhanghe General Airport", + "latitude_deg": "30.985923", + "longitude_deg": "112.05368", + "elevation_ft": "454", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-42", + "municipality": "Jingmen (Dongbao)", + "scheduled_service": "no" + }, + { + "id": "350923", + "ident": "CN-0242", + "type": "small_airport", + "name": "Faku Caihu Airport", + "latitude_deg": "42.38999", + "longitude_deg": "123.36977", + "elevation_ft": "286", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Faku", + "scheduled_service": "no" + }, + { + "id": "350924", + "ident": "CN-0243", + "type": "small_airport", + "name": "Qindeli Farm Airport", + "latitude_deg": "47.96256", + "longitude_deg": "133.18252", + "elevation_ft": "246", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Jiamusi", + "scheduled_service": "no" + }, + { + "id": "350939", + "ident": "CN-0244", + "type": "small_airport", + "name": "Chengdu Fenghuangshan Air Base", + "latitude_deg": "30.73019", + "longitude_deg": "104.09282", + "elevation_ft": "1660", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Chengdu (Jinniu)", + "scheduled_service": "no" + }, + { + "id": "350940", + "ident": "CN-0245", + "type": "small_airport", + "name": "Chengdu Taipingsi Airport", + "latitude_deg": "30.60321", + "longitude_deg": "104.01766", + "elevation_ft": "1616", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Chengdu (Wuhou)", + "scheduled_service": "no" + }, + { + "id": "350941", + "ident": "CN-0246", + "type": "small_airport", + "name": "Chongzhou Haoyun General Airport", + "latitude_deg": "30.560102", + "longitude_deg": "103.730721", + "elevation_ft": "1645", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Chengdu (Chongzhou)", + "scheduled_service": "no" + }, + { + "id": "350942", + "ident": "CN-0247", + "type": "small_airport", + "name": "Chengdu Xinjin Airport", + "latitude_deg": "30.4214", + "longitude_deg": "103.8444", + "elevation_ft": "1512", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Chengdu (Xinjin)", + "scheduled_service": "no" + }, + { + "id": "350943", + "ident": "CN-0248", + "type": "small_airport", + "name": "Pengshan Air Base", + "latitude_deg": "30.26485", + "longitude_deg": "103.8511", + "elevation_ft": "1447", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Meishan (Pengshan)", + "scheduled_service": "no" + }, + { + "id": "350945", + "ident": "CN-0249", + "type": "closed", + "name": "New Sichuan Leshan Airport (under construction)", + "latitude_deg": "29.43687", + "longitude_deg": "103.71529", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Leshan (Wutongqiao)", + "scheduled_service": "no" + }, + { + "id": "350946", + "ident": "CN-0250", + "type": "small_airport", + "name": "Yancheng Jianhu General Airport", + "latitude_deg": "33.42127", + "longitude_deg": "119.72231", + "elevation_ft": "5", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Yancheng", + "scheduled_service": "no" + }, + { + "id": "350947", + "ident": "CN-0251", + "type": "heliport", + "name": "Binhai Eastern General Heliport", + "latitude_deg": "39.05072", + "longitude_deg": "117.73315", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-12", + "municipality": "Binhai", + "scheduled_service": "no" + }, + { + "id": "350948", + "ident": "CN-0252", + "type": "small_airport", + "name": "Xueye Aeronautics Technology Sports Park", + "latitude_deg": "36.43788", + "longitude_deg": "117.56978", + "elevation_ft": "770", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Laiwu", + "scheduled_service": "no" + }, + { + "id": "350949", + "ident": "CN-0253", + "type": "small_airport", + "name": "Jiande Qiandaohu General Airport", + "latitude_deg": "29.360905", + "longitude_deg": "119.180829", + "elevation_ft": "249", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-33", + "municipality": "Hangzhou", + "scheduled_service": "no", + "iata_code": "JDE" + }, + { + "id": "350950", + "ident": "CN-0254", + "type": "closed", + "name": "Nanning Lingli General Airport (under construction)", + "latitude_deg": "22.8519", + "longitude_deg": "108.7806", + "elevation_ft": "233", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-45", + "municipality": "Nanning", + "scheduled_service": "no" + }, + { + "id": "350951", + "ident": "CN-0255", + "type": "small_airport", + "name": "Xinchang Wanfeng General Airport", + "latitude_deg": "29.4535", + "longitude_deg": "121.0104", + "elevation_ft": "682", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-33", + "municipality": "Shaoxing", + "scheduled_service": "no" + }, + { + "id": "350952", + "ident": "CN-0256", + "type": "small_airport", + "name": "Xi'an Aerospace Base General Airport", + "latitude_deg": "34.13324", + "longitude_deg": "108.9848", + "elevation_ft": "1824", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-61", + "municipality": "Xi'an (Chang'an)", + "scheduled_service": "no" + }, + { + "id": "350953", + "ident": "CN-0257", + "type": "heliport", + "name": "Hulin Dongfanghong Heliport", + "latitude_deg": "46.22518", + "longitude_deg": "133.11317", + "elevation_ft": "299", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Jixi", + "scheduled_service": "no" + }, + { + "id": "350954", + "ident": "CN-0258", + "type": "small_airport", + "name": "Wudalianchi Xingfu Airport", + "latitude_deg": "48.73158", + "longitude_deg": "127.37618", + "elevation_ft": "1266", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Heihe", + "scheduled_service": "no" + }, + { + "id": "350955", + "ident": "CN-0259", + "type": "heliport", + "name": "Wudalianchi Zhanhe Heliport", + "latitude_deg": "48.62679", + "longitude_deg": "126.61309", + "elevation_ft": "902", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Heihe", + "scheduled_service": "no" + }, + { + "id": "350956", + "ident": "CN-0260", + "type": "heliport", + "name": "Da Hinggan Ling Yiziquan Heliport", + "latitude_deg": "51.58833", + "longitude_deg": "126.31416", + "elevation_ft": "1207", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Huma", + "scheduled_service": "no" + }, + { + "id": "350957", + "ident": "CN-0261", + "type": "small_airport", + "name": "Gannan Chahayang Airport", + "latitude_deg": "48.20117", + "longitude_deg": "124.17853", + "elevation_ft": "591", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Qiqihar", + "scheduled_service": "no" + }, + { + "id": "350958", + "ident": "CN-0262", + "type": "small_airport", + "name": "Suibin Erjiuling Farm Airport", + "latitude_deg": "47.57175", + "longitude_deg": "132.13077", + "elevation_ft": "197", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Hegang", + "scheduled_service": "no" + }, + { + "id": "350959", + "ident": "CN-0263", + "type": "small_airport", + "name": "Keshan Farm Airport", + "latitude_deg": "48.30346", + "longitude_deg": "125.35989", + "elevation_ft": "991", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Qiqihar", + "scheduled_service": "no" + }, + { + "id": "350960", + "ident": "CN-0264", + "type": "small_airport", + "name": "Wudalianchi Longmen Airport", + "latitude_deg": "48.91567", + "longitude_deg": "126.91011", + "elevation_ft": "1276", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Heihe", + "scheduled_service": "no" + }, + { + "id": "350961", + "ident": "CN-0265", + "type": "small_airport", + "name": "Wudalianchi Longzhen General Airport", + "latitude_deg": "48.65333", + "longitude_deg": "126.71333", + "elevation_ft": "1004", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Heihe", + "scheduled_service": "no" + }, + { + "id": "350963", + "ident": "CN-0266", + "type": "small_airport", + "name": "Tongjiang Nongjiang Farm Airport", + "latitude_deg": "47.736986", + "longitude_deg": "133.234103", + "elevation_ft": "203", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Jiamusi", + "scheduled_service": "no" + }, + { + "id": "350964", + "ident": "CN-0267", + "type": "small_airport", + "name": "Jiamusi Sanhetun General Airport", + "latitude_deg": "46.79304", + "longitude_deg": "130.26974", + "elevation_ft": "279", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Jiamusi", + "scheduled_service": "no" + }, + { + "id": "350965", + "ident": "CN-0268", + "type": "small_airport", + "name": "Zhaodong Beidahuang General Airport", + "latitude_deg": "46.12779", + "longitude_deg": "125.77354", + "elevation_ft": "469", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Suihua", + "scheduled_service": "no", + "iata_code": "HLJ" + }, + { + "id": "350966", + "ident": "CN-0269", + "type": "small_airport", + "name": "Raohe Bawujiu Farm Airport", + "latitude_deg": "47.45055", + "longitude_deg": "134.06924", + "elevation_ft": "217", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Shuangyashan", + "scheduled_service": "no" + }, + { + "id": "350978", + "ident": "CN-0270", + "type": "heliport", + "name": "Hutubi Shitizi General Heliport", + "latitude_deg": "44.01096", + "longitude_deg": "86.79289", + "elevation_ft": "2628", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Shitizi", + "scheduled_service": "no" + }, + { + "id": "350979", + "ident": "CN-0271", + "type": "heliport", + "name": "Aksu Doulang Heliport", + "latitude_deg": "41.19555", + "longitude_deg": "80.25361", + "elevation_ft": "3671", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Aksu", + "scheduled_service": "no", + "keywords": "阿克苏多浪直升机场" + }, + { + "id": "350980", + "ident": "CN-0272", + "type": "small_airport", + "name": "Xinhe Qianfu Airport", + "latitude_deg": "41.66629", + "longitude_deg": "82.58655", + "elevation_ft": "3373", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Kuqa", + "scheduled_service": "no", + "keywords": "新河千佛机场" + }, + { + "id": "350981", + "ident": "CN-0273", + "type": "small_airport", + "name": "Shihezi Tuoling Mengpo Airport", + "latitude_deg": "45.042755", + "longitude_deg": "86.131661", + "elevation_ft": "1119", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Shihezi", + "scheduled_service": "no" + }, + { + "id": "350982", + "ident": "CN-0274", + "type": "small_airport", + "name": "Tiemenguan Shuangfeng Airport", + "latitude_deg": "41.77703", + "longitude_deg": "85.44939", + "elevation_ft": "2953", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Tiemenguan", + "scheduled_service": "no", + "keywords": "铁门关双丰机场" + }, + { + "id": "350983", + "ident": "CN-0275", + "type": "small_airport", + "name": "Tumxuk Hedong Airport", + "latitude_deg": "39.43714", + "longitude_deg": "78.25212", + "elevation_ft": "3724", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Tumxuk", + "scheduled_service": "no" + }, + { + "id": "350984", + "ident": "CN-0276", + "type": "heliport", + "name": "Hejing Gonghar Heliport", + "latitude_deg": "42.31126", + "longitude_deg": "86.30471", + "elevation_ft": "3642", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Hejing", + "scheduled_service": "no" + }, + { + "id": "350985", + "ident": "CN-0277", + "type": "small_airport", + "name": "Xinyuan Gongnaisi Airport", + "latitude_deg": "43.298872", + "longitude_deg": "84.161324", + "elevation_ft": "5036", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Xinyuan", + "scheduled_service": "no" + }, + { + "id": "350986", + "ident": "CN-0278", + "type": "small_airport", + "name": "Ürümqi Yaxin General Airport", + "latitude_deg": "43.67233", + "longitude_deg": "87.32347", + "elevation_ft": "4285", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Ürümqi", + "scheduled_service": "no" + }, + { + "id": "350987", + "ident": "CN-0279", + "type": "small_airport", + "name": "Beitun Fengqing Airport", + "latitude_deg": "47.22734", + "longitude_deg": "87.84022", + "elevation_ft": "1768", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Beitun", + "scheduled_service": "no" + }, + { + "id": "350988", + "ident": "CN-0280", + "type": "small_airport", + "name": "Huyanghe Wuwu Airport", + "latitude_deg": "44.885235", + "longitude_deg": "84.720739", + "elevation_ft": "991", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Karamay", + "scheduled_service": "no" + }, + { + "id": "350989", + "ident": "CN-0281", + "type": "small_airport", + "name": "Fuyun Tuerhong Airport", + "latitude_deg": "47.03888", + "longitude_deg": "89.7825", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Fuyun", + "scheduled_service": "no" + }, + { + "id": "350990", + "ident": "CN-0282", + "type": "small_airport", + "name": "Burqin Kaerqisi Airport", + "latitude_deg": "47.6805", + "longitude_deg": "86.92763", + "elevation_ft": "1598", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Burqin", + "scheduled_service": "no" + }, + { + "id": "350991", + "ident": "CN-0283", + "type": "small_airport", + "name": "Tekes Zhuque Airport", + "latitude_deg": "43.20563", + "longitude_deg": "81.79847", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Tekes", + "scheduled_service": "no" + }, + { + "id": "351028", + "ident": "CN-0284", + "type": "small_airport", + "name": "Miyun/Mujiayu", + "latitude_deg": "40.401005", + "longitude_deg": "116.881289", + "elevation_ft": "300", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-11", + "scheduled_service": "no" + }, + { + "id": "351128", + "ident": "CN-0285", + "type": "heliport", + "name": "Guilin Rongchang Heliport", + "latitude_deg": "25.61666", + "longitude_deg": "110.49731", + "elevation_ft": "715", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-45", + "municipality": "Guilin", + "scheduled_service": "no", + "keywords": "桂林溶江‎宜升机场" + }, + { + "id": "351129", + "ident": "CN-0286", + "type": "heliport", + "name": "Guilin Gaotian Heliport", + "latitude_deg": "24.71781", + "longitude_deg": "110.45589", + "elevation_ft": "459", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-45", + "municipality": "Guilin (Yangshuo)", + "scheduled_service": "no" + }, + { + "id": "351130", + "ident": "CN-0287", + "type": "small_airport", + "name": "Xiqing Airport", + "latitude_deg": "19.55219", + "longitude_deg": "109.43658", + "elevation_ft": "407", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Danzhou", + "scheduled_service": "no" + }, + { + "id": "351131", + "ident": "CN-0288", + "type": "small_airport", + "name": "Haikou Jiazi Airport", + "latitude_deg": "19.67521", + "longitude_deg": "110.37968", + "elevation_ft": "131", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Haikou (Ding'an)", + "scheduled_service": "no" + }, + { + "id": "351132", + "ident": "CN-0289", + "type": "heliport", + "name": "Sanya Tianya Heliport", + "latitude_deg": "18.30163", + "longitude_deg": "109.41793", + "elevation_ft": "89", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Sanya", + "scheduled_service": "no" + }, + { + "id": "351133", + "ident": "CN-0290", + "type": "small_airport", + "name": "Sanya Air Base", + "latitude_deg": "18.28754", + "longitude_deg": "109.46372", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Sanya", + "scheduled_service": "no" + }, + { + "id": "351137", + "ident": "CN-0291", + "type": "small_airport", + "name": "Zhuhai Lianzhou General Airport", + "latitude_deg": "22.33594", + "longitude_deg": "113.18911", + "elevation_ft": "1", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Zhuhai", + "scheduled_service": "no" + }, + { + "id": "351139", + "ident": "CN-0292", + "type": "heliport", + "name": "Shenzhen Longgang Heliport", + "latitude_deg": "22.69202", + "longitude_deg": "114.23685", + "elevation_ft": "194", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Shenzhen", + "scheduled_service": "no" + }, + { + "id": "351140", + "ident": "CN-0293", + "type": "heliport", + "name": "Shenzhen Xiyong Heliport", + "latitude_deg": "22.61392", + "longitude_deg": "114.37731", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Shenzhen", + "scheduled_service": "no" + }, + { + "id": "351141", + "ident": "CN-0294", + "type": "heliport", + "name": "Zhongshan International Finance Center Heliport", + "latitude_deg": "22.52316", + "longitude_deg": "113.38264", + "elevation_ft": "764", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Zhongshan", + "scheduled_service": "no" + }, + { + "id": "351314", + "ident": "CN-0295", + "type": "heliport", + "name": "Simuhana Border Heliport", + "latitude_deg": "39.72783", + "longitude_deg": "73.94963", + "elevation_ft": "9298", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Ulugqat", + "scheduled_service": "no" + }, + { + "id": "351909", + "ident": "CN-0296", + "type": "small_airport", + "name": "Qingdao Cihang General Airport", + "latitude_deg": "36.983261", + "longitude_deg": "120.268279", + "elevation_ft": "383", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Qingdao", + "scheduled_service": "no" + }, + { + "id": "352121", + "ident": "CN-0297", + "type": "heliport", + "name": "Mudanjiang Suifenhe Heliport", + "latitude_deg": "44.44387", + "longitude_deg": "131.13758", + "elevation_ft": "1696", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Mudanjiang", + "scheduled_service": "no" + }, + { + "id": "352123", + "ident": "CN-0298", + "type": "closed", + "name": "Mishan Yonghong Airport", + "latitude_deg": "45.29021", + "longitude_deg": "132.84763", + "elevation_ft": "230", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Jixi", + "scheduled_service": "no" + }, + { + "id": "352124", + "ident": "CN-0299", + "type": "heliport", + "name": "Raohe Dong'an Heliport", + "latitude_deg": "47.33582", + "longitude_deg": "134.172", + "elevation_ft": "246", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Shuangyashan", + "scheduled_service": "no" + }, + { + "id": "352226", + "ident": "CN-0300", + "type": "small_airport", + "name": "Taiyuan Yaocheng Airport", + "latitude_deg": "37.50312", + "longitude_deg": "112.424126", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-14", + "municipality": "Taiyuan", + "scheduled_service": "no", + "iata_code": "TYC" + }, + { + "id": "352488", + "ident": "CN-0301", + "type": "heliport", + "name": "Tongjiang Sancun Heliport", + "latitude_deg": "47.75486", + "longitude_deg": "132.62776", + "elevation_ft": "187", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Jiamusi", + "scheduled_service": "no" + }, + { + "id": "352489", + "ident": "CN-0302", + "type": "heliport", + "name": "Tongjiang Sanjiangkou Heliport", + "latitude_deg": "47.69104", + "longitude_deg": "132.51626", + "elevation_ft": "184", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Jiamusi", + "scheduled_service": "no" + }, + { + "id": "352490", + "ident": "CN-0303", + "type": "heliport", + "name": "Tongjiang Xinfacun Heliport", + "latitude_deg": "47.68483", + "longitude_deg": "132.52615", + "elevation_ft": "174", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Jiamusi", + "scheduled_service": "no" + }, + { + "id": "352491", + "ident": "CN-0304", + "type": "heliport", + "name": "Tongjiang Qindeli Heliport", + "latitude_deg": "48.10031", + "longitude_deg": "133.35684", + "elevation_ft": "213", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Jiamusi", + "scheduled_service": "no" + }, + { + "id": "352493", + "ident": "CN-0305", + "type": "heliport", + "name": "Fuyuan Nongjiangxiang Heliport", + "latitude_deg": "48.27817", + "longitude_deg": "134.29517", + "elevation_ft": "184", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Jiamusi", + "scheduled_service": "no" + }, + { + "id": "352494", + "ident": "CN-0306", + "type": "small_airport", + "name": "Hegang Luobei Airport", + "latitude_deg": "47.6144", + "longitude_deg": "131.39497", + "elevation_ft": "210", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Hegang", + "scheduled_service": "no" + }, + { + "id": "352495", + "ident": "CN-0307", + "type": "heliport", + "name": "Hegang Mingshan Heliport", + "latitude_deg": "47.67674", + "longitude_deg": "131.05795", + "elevation_ft": "233", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Hegang", + "scheduled_service": "no" + }, + { + "id": "352497", + "ident": "CN-0308", + "type": "heliport", + "name": "Yichun Jiayin Heliport", + "latitude_deg": "48.70882", + "longitude_deg": "130.56593", + "elevation_ft": "302", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Yichun", + "scheduled_service": "no" + }, + { + "id": "352499", + "ident": "CN-0309", + "type": "heliport", + "name": "Hegang Taipinggou Heliport", + "latitude_deg": "48.12698", + "longitude_deg": "130.64346", + "elevation_ft": "338", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Hegang", + "scheduled_service": "no" + }, + { + "id": "352500", + "ident": "CN-0310", + "type": "heliport", + "name": "Yichun Shuanghe Heliport", + "latitude_deg": "48.981741", + "longitude_deg": "130.009923", + "elevation_ft": "310", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Yichun", + "scheduled_service": "no" + }, + { + "id": "352507", + "ident": "CN-0311", + "type": "heliport", + "name": "Hegang Zhongxing Heliport", + "latitude_deg": "47.64927", + "longitude_deg": "131.96947", + "elevation_ft": "184", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Hegang", + "scheduled_service": "no" + }, + { + "id": "352920", + "ident": "CN-0312", + "type": "heliport", + "name": "Heihe Zhangdiyingzi Heliport", + "latitude_deg": "50.55466", + "longitude_deg": "127.33141", + "elevation_ft": "440", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Heihe", + "scheduled_service": "no" + }, + { + "id": "352928", + "ident": "CN-0313", + "type": "heliport", + "name": "Da Hinggan Ling Sankaxiang Heliport", + "latitude_deg": "51.14672", + "longitude_deg": "126.89714", + "elevation_ft": "492", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Huma", + "scheduled_service": "no" + }, + { + "id": "352992", + "ident": "CN-0314", + "type": "heliport", + "name": "Ergun Mengwushiwei Heliport", + "latitude_deg": "51.32797", + "longitude_deg": "119.9273", + "elevation_ft": "1578", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Hulunbuir", + "scheduled_service": "no" + }, + { + "id": "353165", + "ident": "CN-0315", + "type": "seaplane_base", + "name": "Jinshan City Beach Seaplane Base", + "latitude_deg": "30.709688", + "longitude_deg": "121.349177", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-31", + "municipality": "Jinshan, Shanghai", + "scheduled_service": "no" + }, + { + "id": "353993", + "ident": "CN-0316", + "type": "medium_airport", + "name": "Chenghu General Airport", + "latitude_deg": "31.215334", + "longitude_deg": "120.789328", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Suzhou", + "scheduled_service": "no" + }, + { + "id": "353995", + "ident": "CN-0317", + "type": "medium_airport", + "name": "Liyang Tianmuhu General Airport", + "latitude_deg": "31.53904", + "longitude_deg": "119.502554", + "elevation_ft": "54", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Changzhou", + "scheduled_service": "no", + "wikipedia_link": "https://zh.wikipedia.org/wiki/%E6%BA%A7%E9%98%B3%E6%BA%A7%E5%9F%8E%E7%9B%B4%E5%8D%87%E6%9C%BA%E5%9C%BA" + }, + { + "id": "354015", + "ident": "CN-0318", + "type": "heliport", + "name": "Shanghai Longhua Heliport", + "latitude_deg": "31.167789", + "longitude_deg": "121.459955", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-31", + "municipality": "Shanghai", + "scheduled_service": "no" + }, + { + "id": "354395", + "ident": "CN-0319", + "type": "heliport", + "name": "Huayang Jiao Helipad", + "latitude_deg": "8.864231", + "longitude_deg": "112.831902", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Huayang Jiao", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cuarteron_Reef" + }, + { + "id": "354017", + "ident": "CN-0320", + "type": "heliport", + "name": "Shanghai Tangchen Heliport", + "latitude_deg": "31.220837", + "longitude_deg": "121.576877", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-31", + "municipality": "Pudong", + "scheduled_service": "no" + }, + { + "id": "354040", + "ident": "CN-0321", + "type": "medium_airport", + "name": "Anji Tianzihu General Airport", + "latitude_deg": "30.797725", + "longitude_deg": "119.590287", + "elevation_ft": "137", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-33", + "municipality": "Anji", + "scheduled_service": "no", + "gps_code": "ZSTZ" + }, + { + "id": "354400", + "ident": "CN-0322", + "type": "heliport", + "name": "Gaven Reef Helipad", + "latitude_deg": "10.205356", + "longitude_deg": "114.225583", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Gaven Reef", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gaven_Reefs" + }, + { + "id": "354402", + "ident": "CN-0323", + "type": "heliport", + "name": "Johnson South Reef Helipad", + "latitude_deg": "9.716206", + "longitude_deg": "114.287054", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Chigua Island", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Johnson_South_Reef" + }, + { + "id": "354404", + "ident": "CN-0324", + "type": "heliport", + "name": "Hughes Reef Helipad", + "latitude_deg": "9.908255", + "longitude_deg": "114.49831", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Hughes Reef", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hughes_Reef" + }, + { + "id": "354408", + "ident": "CN-0325", + "type": "heliport", + "name": "Antelope Reef Helipad", + "latitude_deg": "16.446411", + "longitude_deg": "111.606508", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Antelope Reef", + "scheduled_service": "no", + "wikipedia_link": "https://sv.wikipedia.org/wiki/Antelope_Reef" + }, + { + "id": "354409", + "ident": "CN-0326", + "type": "heliport", + "name": "Duncan Island Helipads (8x)", + "latitude_deg": "16.454072", + "longitude_deg": "111.706774", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Duncan Island", + "scheduled_service": "no", + "wikipedia_link": "https://sv.wikipedia.org/wiki/Duncan_Islands_(%C3%B6)" + }, + { + "id": "354410", + "ident": "CN-0327", + "type": "heliport", + "name": "Triton Island Helipad", + "latitude_deg": "15.782962", + "longitude_deg": "111.198909", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Triton Island", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Triton_Island" + }, + { + "id": "354503", + "ident": "CN-0328", + "type": "heliport", + "name": "Xixiangtang Poiice Heliport", + "latitude_deg": "22.840149", + "longitude_deg": "108.146303", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-45", + "municipality": "Nanning (Xixiangtang)", + "scheduled_service": "no" + }, + { + "id": "354507", + "ident": "CN-0329", + "type": "closed", + "name": "Airport (under construction)", + "latitude_deg": "46.018127", + "longitude_deg": "85.655293", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Urhu", + "scheduled_service": "no" + }, + { + "id": "354508", + "ident": "CN-0330", + "type": "closed", + "name": "Jiuquan Suzhou Airport (under construction)", + "latitude_deg": "39.887874", + "longitude_deg": "98.707352", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "municipality": "Jiuquan (Suzhou)", + "scheduled_service": "no" + }, + { + "id": "354509", + "ident": "CN-0331", + "type": "medium_airport", + "name": "Jiuzhou Airport", + "latitude_deg": "26.998259", + "longitude_deg": "107.759571", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-52", + "municipality": "Jiuzhou", + "scheduled_service": "no" + }, + { + "id": "354511", + "ident": "CN-0332", + "type": "small_airport", + "name": "Industrial Airport 601", + "latitude_deg": "32.389746", + "longitude_deg": "112.140112", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-41", + "municipality": "Xiangyang (Xiangzhou)", + "scheduled_service": "no" + }, + { + "id": "354512", + "ident": "CN-0333", + "type": "small_airport", + "name": "Bayannur Ming'an Airport", + "latitude_deg": "40.874146", + "longitude_deg": "109.577272", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Bayannur", + "scheduled_service": "no" + }, + { + "id": "354513", + "ident": "CN-0334", + "type": "heliport", + "name": "Zhongjiang Military Heliport", + "latitude_deg": "30.845684", + "longitude_deg": "104.679837", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Deyang (Zhongjiang)", + "scheduled_service": "no" + }, + { + "id": "354520", + "ident": "CN-0335", + "type": "heliport", + "name": "Military Helipad", + "latitude_deg": "46.885902", + "longitude_deg": "85.172099", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "scheduled_service": "no" + }, + { + "id": "354521", + "ident": "CN-0336", + "type": "small_airport", + "name": "Runway 07", + "latitude_deg": "34.763616", + "longitude_deg": "119.434175", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Lianyungang", + "scheduled_service": "no" + }, + { + "id": "354522", + "ident": "CN-0337", + "type": "heliport", + "name": "Military Helipad", + "latitude_deg": "34.751857", + "longitude_deg": "119.461384", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "scheduled_service": "no" + }, + { + "id": "354526", + "ident": "CN-0338", + "type": "heliport", + "name": "Nyikogli Shiquanhe Heliport", + "latitude_deg": "32.496868", + "longitude_deg": "80.072168", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-54", + "municipality": "Shiquanhe", + "scheduled_service": "no" + }, + { + "id": "354535", + "ident": "CN-0339", + "type": "closed", + "name": "Parking Space (old runway)", + "latitude_deg": "26.081898", + "longitude_deg": "119.604732", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-35", + "scheduled_service": "no" + }, + { + "id": "354536", + "ident": "CN-0340", + "type": "closed", + "name": "Airport (under construction)", + "latitude_deg": "34.543045", + "longitude_deg": "116.298608", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "scheduled_service": "no" + }, + { + "id": "354648", + "ident": "CN-0341", + "type": "small_airport", + "name": "Private Runway", + "latitude_deg": "37.234774", + "longitude_deg": "79.34206", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "scheduled_service": "no" + }, + { + "id": "354650", + "ident": "CN-0342", + "type": "small_airport", + "name": "Military Heliport Runway (8x)", + "latitude_deg": "36.343009", + "longitude_deg": "78.033335", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "scheduled_service": "no" + }, + { + "id": "354651", + "ident": "CN-0343", + "type": "heliport", + "name": "Prison Runway Helipad", + "latitude_deg": "38.356549", + "longitude_deg": "77.261374", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Yarkant", + "scheduled_service": "no" + }, + { + "id": "354657", + "ident": "CN-0344", + "type": "medium_airport", + "name": "Paozhuwan Air Base", + "latitude_deg": "30.673944", + "longitude_deg": "114.63089", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-42", + "municipality": "Wuhan (Xinzhou)", + "scheduled_service": "no" + }, + { + "id": "354658", + "ident": "CN-0345", + "type": "medium_airport", + "name": "Shanpo Air Base", + "latitude_deg": "30.087612", + "longitude_deg": "114.31366", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-42", + "municipality": "Wuhan", + "scheduled_service": "no" + }, + { + "id": "354660", + "ident": "CN-0346", + "type": "small_airport", + "name": "Desert Runway", + "latitude_deg": "39.010014", + "longitude_deg": "83.608618", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "scheduled_service": "no" + }, + { + "id": "354722", + "ident": "CN-0347", + "type": "closed", + "name": "Ruijin Airport (under construction)", + "latitude_deg": "25.958108", + "longitude_deg": "116.078805", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-36", + "municipality": "Ruijin", + "scheduled_service": "no" + }, + { + "id": "354884", + "ident": "CN-0348", + "type": "heliport", + "name": "Industrial Helipad", + "latitude_deg": "40.583306", + "longitude_deg": "93.394014", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "scheduled_service": "no" + }, + { + "id": "354893", + "ident": "CN-0349", + "type": "heliport", + "name": "Military Helipad", + "latitude_deg": "41.763301", + "longitude_deg": "87.423469", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "scheduled_service": "no" + }, + { + "id": "354907", + "ident": "CN-0350", + "type": "heliport", + "name": "Industrial Helipads (3x)", + "latitude_deg": "40.467886", + "longitude_deg": "90.888053", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "scheduled_service": "no" + }, + { + "id": "354929", + "ident": "CN-0351", + "type": "small_airport", + "name": "Deser Military Airport", + "latitude_deg": "40.767539", + "longitude_deg": "89.275245", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "scheduled_service": "no" + }, + { + "id": "354931", + "ident": "CN-0352", + "type": "small_airport", + "name": "Old Runway", + "latitude_deg": "40.694827", + "longitude_deg": "89.075604", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "scheduled_service": "no" + }, + { + "id": "354995", + "ident": "CN-0353", + "type": "medium_airport", + "name": "Zhanjiang Wuchuan Airport", + "latitude_deg": "21.481667", + "longitude_deg": "110.590278", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Zhanjiang", + "scheduled_service": "yes", + "gps_code": "ZGZJ", + "iata_code": "ZHA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zhanjiang_Wuchuan_Airport" + }, + { + "id": "355511", + "ident": "CN-0354", + "type": "closed", + "name": "Ngari Burang Airport (under construction)", + "latitude_deg": "30.3942", + "longitude_deg": "81.134033", + "elevation_ft": "13943", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-54", + "municipality": "Burang Town", + "scheduled_service": "no" + }, + { + "id": "355764", + "ident": "CN-0355", + "type": "heliport", + "name": "Shenzhen Sun Yat-sen Cardiovascular Hospital Helipad", + "latitude_deg": "22.559494", + "longitude_deg": "113.942868", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Shenzhen", + "scheduled_service": "no" + }, + { + "id": "355816", + "ident": "CN-0356", + "type": "heliport", + "name": "Baigang Shalan Heliport", + "latitude_deg": "22.76941", + "longitude_deg": "114.62793", + "elevation_ft": "98", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Huizhou (Huiyang)", + "scheduled_service": "no" + }, + { + "id": "355921", + "ident": "CN-0357", + "type": "small_airport", + "name": "Beijing Dingling Airport", + "latitude_deg": "40.28566", + "longitude_deg": "116.232675", + "elevation_ft": "351", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-11", + "municipality": "Beijing", + "scheduled_service": "no" + }, + { + "id": "355951", + "ident": "CN-0358", + "type": "small_airport", + "name": "(Duplicate)Zhaosu Tianma Airport", + "latitude_deg": "0.01", + "longitude_deg": "0.01", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Zhaosu", + "scheduled_service": "yes" + }, + { + "id": "355952", + "ident": "CN-0359", + "type": "small_airport", + "name": "Zhaosu Tianma Airport", + "latitude_deg": "43.1075", + "longitude_deg": "81.160556", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Zhaosu", + "scheduled_service": "yes", + "gps_code": "ZWZS", + "iata_code": "ZFL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zhaosu_Tianma_Airport" + }, + { + "id": "355960", + "ident": "CN-0360", + "type": "small_airport", + "name": "Urad Front Banner Gongmiaozi Airport", + "latitude_deg": "40.614366", + "longitude_deg": "108.998835", + "elevation_ft": "3369", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Urad Front Banner", + "scheduled_service": "no", + "keywords": "Ulashan, ZULL" + }, + { + "id": "355962", + "ident": "CN-0361", + "type": "small_airport", + "name": "Dengkou General Aviation Airport", + "latitude_deg": "40.302832", + "longitude_deg": "107.010698", + "elevation_ft": "3458", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Bayannur", + "scheduled_service": "no", + "gps_code": "ZBMV" + }, + { + "id": "355963", + "ident": "CN-0362", + "type": "small_airport", + "name": "Yinchuan Yueyahu Airport", + "latitude_deg": "38.588095", + "longitude_deg": "106.539788", + "elevation_ft": "3727", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-64", + "municipality": "Yinchuan", + "scheduled_service": "no" + }, + { + "id": "355969", + "ident": "CN-0363", + "type": "small_airport", + "name": "Shuangchengzi North Airfield", + "latitude_deg": "40.5392", + "longitude_deg": "100.0185", + "elevation_ft": "3701", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "municipality": "Jiuquan (Jinta)", + "scheduled_service": "no" + }, + { + "id": "355970", + "ident": "CN-0364", + "type": "small_airport", + "name": "Gaotai Airport", + "latitude_deg": "39.41188", + "longitude_deg": "99.77868", + "elevation_ft": "4403", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "municipality": "Zhangye (Gaotai)", + "scheduled_service": "no" + }, + { + "id": "356013", + "ident": "CN-0365", + "type": "heliport", + "name": "Hospital Helipad", + "latitude_deg": "39.028686", + "longitude_deg": "117.70708", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-12", + "municipality": "Tianjin", + "scheduled_service": "no" + }, + { + "id": "356093", + "ident": "CN-0366", + "type": "heliport", + "name": "Golmud Heliport", + "latitude_deg": "36.38776", + "longitude_deg": "94.79804", + "elevation_ft": "9390", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-63", + "municipality": "Golmud", + "scheduled_service": "no" + }, + { + "id": "356094", + "ident": "CN-0367", + "type": "heliport", + "name": "Rutog Heliport", + "latitude_deg": "33.65626", + "longitude_deg": "80.45084", + "elevation_ft": "14859", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-54", + "municipality": "Rutog", + "scheduled_service": "no" + }, + { + "id": "356095", + "ident": "CN-0368", + "type": "heliport", + "name": "Gêrzê Heliport", + "latitude_deg": "32.30204", + "longitude_deg": "84.02739", + "elevation_ft": "14534", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-54", + "municipality": "Gêrzê", + "scheduled_service": "no" + }, + { + "id": "356096", + "ident": "CN-0369", + "type": "heliport", + "name": "Nyima Heliport", + "latitude_deg": "31.78739", + "longitude_deg": "87.29839", + "elevation_ft": "14997", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-54", + "municipality": "Nagqu (Nyima)", + "scheduled_service": "no" + }, + { + "id": "356097", + "ident": "CN-0370", + "type": "heliport", + "name": "Seni Heliport", + "latitude_deg": "31.414472", + "longitude_deg": "91.983751", + "elevation_ft": "14730", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-54", + "municipality": "Nagqu (Seni)", + "scheduled_service": "no" + }, + { + "id": "356098", + "ident": "CN-0371", + "type": "heliport", + "name": "Lhasa Liuwuxiang Heliport", + "latitude_deg": "29.58933", + "longitude_deg": "91.02058", + "elevation_ft": "11909", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-54", + "municipality": "Lhasa (Doilungdêqên)", + "scheduled_service": "no" + }, + { + "id": "356099", + "ident": "CN-0372", + "type": "heliport", + "name": "Aksai Chin Heliport", + "latitude_deg": "35.24569", + "longitude_deg": "79.54054", + "elevation_ft": "15988", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Khotan", + "scheduled_service": "no" + }, + { + "id": "356100", + "ident": "CN-0373", + "type": "heliport", + "name": "Daklam Heliport", + "latitude_deg": "28.2845", + "longitude_deg": "89.4035", + "elevation_ft": "14541", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-54", + "municipality": "Xigazê (Kangmar)", + "scheduled_service": "no", + "keywords": "Galanub" + }, + { + "id": "356102", + "ident": "CN-0374", + "type": "small_airport", + "name": "Zhangpu Air Base", + "latitude_deg": "24.0452", + "longitude_deg": "117.8497", + "elevation_ft": "85", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-35", + "municipality": "Zhangzhou (Zhangpu)", + "scheduled_service": "no" + }, + { + "id": "356119", + "ident": "CN-0375", + "type": "heliport", + "name": "Demchok East Heliport", + "latitude_deg": "32.69531", + "longitude_deg": "79.45816", + "elevation_ft": "13970", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-54", + "municipality": "Zhaxigang", + "scheduled_service": "no" + }, + { + "id": "356313", + "ident": "CN-0376", + "type": "closed", + "name": "Ledong Naval Air Base", + "latitude_deg": "18.49391", + "longitude_deg": "108.83202", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Ledong Li Autonomous County", + "scheduled_service": "no" + }, + { + "id": "356372", + "ident": "CN-0377", + "type": "small_airport", + "name": "Changchun Yushu General Airport", + "latitude_deg": "44.829507", + "longitude_deg": "126.421423", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-22", + "municipality": "Changchun (Yushu)", + "scheduled_service": "no" + }, + { + "id": "356373", + "ident": "CN-0378", + "type": "small_airport", + "name": "Panjin Chenjia General Airport", + "latitude_deg": "41.269306", + "longitude_deg": "122.141361", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Panjin", + "scheduled_service": "no" + }, + { + "id": "356392", + "ident": "CN-0379", + "type": "closed", + "name": "Chuxiong Airfield", + "latitude_deg": "25.04082", + "longitude_deg": "101.56498", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Chuxiong (Xiong)", + "scheduled_service": "no", + "keywords": "Tsuyung" + }, + { + "id": "356393", + "ident": "CN-0380", + "type": "heliport", + "name": "Feihu Aviation Dushan Training Base Heliport", + "latitude_deg": "25.81198", + "longitude_deg": "107.50807", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-52", + "municipality": "Qiannan (Dushan)", + "scheduled_service": "no" + }, + { + "id": "356395", + "ident": "CN-0381", + "type": "closed", + "name": "Weining Caohai Airport (under construction)", + "latitude_deg": "26.86444", + "longitude_deg": "104.34025", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-52", + "municipality": "Weining (Bijie)", + "scheduled_service": "no" + }, + { + "id": "429832", + "ident": "CN-0382", + "type": "heliport", + "name": "Beibeng Heliport", + "latitude_deg": "29.24251", + "longitude_deg": "95.16765", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-54", + "municipality": "Nyingchi (Mêdog)", + "scheduled_service": "no" + }, + { + "id": "430022", + "ident": "CN-0383", + "type": "small_airport", + "name": "Mile Dongfeng Airport", + "latitude_deg": "24.2956", + "longitude_deg": "103.40847", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Honghe (Mile)", + "scheduled_service": "no" + }, + { + "id": "430023", + "ident": "CN-0384", + "type": "small_airport", + "name": "Longchuan Guangsong Airport", + "latitude_deg": "24.26652", + "longitude_deg": "97.9048", + "elevation_ft": "3297", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Dehong (Longchuan)", + "scheduled_service": "no" + }, + { + "id": "430024", + "ident": "CN-0385", + "type": "small_airport", + "name": "Lanping Fenghua General Airport", + "latitude_deg": "26.64518", + "longitude_deg": "99.54419", + "elevation_ft": "8276", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Lanping (Fenghua)", + "scheduled_service": "no" + }, + { + "id": "430025", + "ident": "CN-0386", + "type": "heliport", + "name": "Lijiang Baisha Heliport", + "latitude_deg": "26.96962", + "longitude_deg": "100.23945", + "elevation_ft": "8323", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Lijiang (Yulong)", + "scheduled_service": "no" + }, + { + "id": "430026", + "ident": "CN-0387", + "type": "heliport", + "name": "Baoshan Changlinggang Heliport", + "latitude_deg": "24.99874", + "longitude_deg": "99.224", + "elevation_ft": "5632", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Baoshan (Longyang)", + "scheduled_service": "no" + }, + { + "id": "430027", + "ident": "CN-0388", + "type": "heliport", + "name": "Yuxi Jiangcheng Heliport", + "latitude_deg": "24.46872", + "longitude_deg": "102.85711", + "elevation_ft": "5863", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Yuxi (Jiangchuan)", + "scheduled_service": "no" + }, + { + "id": "430028", + "ident": "CN-0389", + "type": "heliport", + "name": "Ruili Jingcheng Heliport", + "latitude_deg": "24.06732", + "longitude_deg": "97.81748", + "elevation_ft": "3806", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Dehong (Ruili)", + "scheduled_service": "no" + }, + { + "id": "430050", + "ident": "CN-0390", + "type": "closed", + "name": "Yongde Airfield", + "latitude_deg": "24.20866", + "longitude_deg": "99.28416", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Lincang (Yongde)", + "scheduled_service": "no", + "keywords": "ZDEE, Dedang" + }, + { + "id": "430173", + "ident": "CN-0391", + "type": "heliport", + "name": "Nagadong Heliport", + "latitude_deg": "27.75225", + "longitude_deg": "89.12997", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-54", + "municipality": "Xigazê (Yadong)", + "scheduled_service": "no" + }, + { + "id": "430174", + "ident": "CN-0392", + "type": "heliport", + "name": "Cona Heliport", + "latitude_deg": "28.0068", + "longitude_deg": "91.96402", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-54", + "municipality": "Shannan (Cona)", + "scheduled_service": "no" + }, + { + "id": "430482", + "ident": "CN-0393", + "type": "heliport", + "name": "Dongfang Heliport", + "latitude_deg": "19.136827", + "longitude_deg": "108.672649", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Dongfang", + "scheduled_service": "no" + }, + { + "id": "430483", + "ident": "CN-0394", + "type": "small_airport", + "name": "Zhanjiang Jiushashi Airport", + "latitude_deg": "21.25491", + "longitude_deg": "109.79244", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Zhanjiang (Suixi)", + "scheduled_service": "no" + }, + { + "id": "430484", + "ident": "CN-0395", + "type": "heliport", + "name": "Zhanjiang Bachang Heliport", + "latitude_deg": "21.23569", + "longitude_deg": "109.77838", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Zhanjiang (Suixi)", + "scheduled_service": "no" + }, + { + "id": "430508", + "ident": "CN-0396", + "type": "medium_airport", + "name": "Shaodong Airport", + "latitude_deg": "27.2235", + "longitude_deg": "111.6741", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-43", + "municipality": "Shaoyang (Shaodong)", + "scheduled_service": "no" + }, + { + "id": "430509", + "ident": "CN-0397", + "type": "closed", + "name": "Former Yushu Batang Airport", + "latitude_deg": "32.82716", + "longitude_deg": "97.12018", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-63", + "municipality": "Yushu (Batang)", + "scheduled_service": "no" + }, + { + "id": "43974", + "ident": "CN-JNZ", + "type": "medium_airport", + "name": "Sanshilipu Air Base", + "latitude_deg": "39.289671", + "longitude_deg": "121.762195", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Jinzhou, Dalian", + "scheduled_service": "no", + "keywords": "Shilipu" + }, + { + "id": "32048", + "ident": "CN-NTG", + "type": "medium_airport", + "name": "Nantong Xingdong International Airport", + "latitude_deg": "32.070801", + "longitude_deg": "120.975998", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Nantong", + "scheduled_service": "yes", + "gps_code": "ZSNT", + "iata_code": "NTG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nantong_Xingdong_Airport" + }, + { + "id": "16821", + "ident": "CN01", + "type": "heliport", + "name": "Mendocino Coast District Hospital Heliport", + "latitude_deg": "39.431876", + "longitude_deg": "-123.799621", + "elevation_ft": "108", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fort Bragg", + "scheduled_service": "no", + "gps_code": "CN01", + "local_code": "CN01" + }, + { + "id": "45313", + "ident": "CN02", + "type": "heliport", + "name": "San Francisco VA Medical Center Heliport", + "latitude_deg": "37.783331", + "longitude_deg": "-122.506389", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Francisco", + "scheduled_service": "no", + "gps_code": "CN02", + "local_code": "CN02" + }, + { + "id": "45308", + "ident": "CN06", + "type": "heliport", + "name": "Sonoma Raceway Heliport Pad 2", + "latitude_deg": "38.155081", + "longitude_deg": "-122.450692", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sonoma", + "scheduled_service": "no", + "gps_code": "CN06", + "local_code": "CN06" + }, + { + "id": "16822", + "ident": "CN10", + "type": "heliport", + "name": "Mono County Medical Heliport", + "latitude_deg": "38.252336", + "longitude_deg": "-119.230199", + "elevation_ft": "6450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bridgeport", + "scheduled_service": "no", + "gps_code": "CN10", + "local_code": "CN10" + }, + { + "id": "16823", + "ident": "CN11", + "type": "heliport", + "name": "Uc Davis Medical Center Life Flight Base Heliport", + "latitude_deg": "38.55110168457031", + "longitude_deg": "-121.45099639892578", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sacramento", + "scheduled_service": "no", + "gps_code": "CN11", + "local_code": "CN11" + }, + { + "id": "16824", + "ident": "CN12", + "type": "small_airport", + "name": "Williams Gliderport", + "latitude_deg": "39.16350173950195", + "longitude_deg": "-122.13200378417969", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Williams", + "scheduled_service": "no", + "gps_code": "CN12", + "local_code": "CN12" + }, + { + "id": "16825", + "ident": "CN13", + "type": "small_airport", + "name": "Borges - Clarksburg Airport", + "latitude_deg": "38.4431991577", + "longitude_deg": "-121.509002686", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Clarksburg", + "scheduled_service": "no", + "gps_code": "CN13", + "local_code": "CN13" + }, + { + "id": "16826", + "ident": "CN14", + "type": "heliport", + "name": "Queen of the Valley Hospital Heliport", + "latitude_deg": "38.32386", + "longitude_deg": "-122.297165", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Napa", + "scheduled_service": "no", + "gps_code": "CN14", + "local_code": "CN14" + }, + { + "id": "16827", + "ident": "CN15", + "type": "small_airport", + "name": "Vineyard Oaks Farm Airport", + "latitude_deg": "36.36920166015625", + "longitude_deg": "-119.78600311279297", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lemore", + "scheduled_service": "no", + "gps_code": "CN15", + "local_code": "CN15" + }, + { + "id": "322363", + "ident": "CN16", + "type": "heliport", + "name": "Mercy Hospital of Folsom Heliport", + "latitude_deg": "38.670861", + "longitude_deg": "-121.142839", + "elevation_ft": "335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Folsom", + "scheduled_service": "no", + "gps_code": "CN16", + "local_code": "CN16" + }, + { + "id": "16828", + "ident": "CN17", + "type": "heliport", + "name": "Rady Childrens Hospital Helipad", + "latitude_deg": "32.798675", + "longitude_deg": "-117.151868", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no", + "gps_code": "CN17", + "local_code": "CN17" + }, + { + "id": "333338", + "ident": "CN18", + "type": "heliport", + "name": "San Bernardino Community Hospital Heliport", + "latitude_deg": "34.130694", + "longitude_deg": "-117.321667", + "elevation_ft": "1213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Bernardino", + "scheduled_service": "no", + "gps_code": "CN18", + "local_code": "CN18" + }, + { + "id": "16829", + "ident": "CN19", + "type": "small_airport", + "name": "Las Serpientes Airport", + "latitude_deg": "37.933101654052734", + "longitude_deg": "-121.61299896240234", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Knightsen", + "scheduled_service": "no", + "gps_code": "CN19", + "local_code": "CN19" + }, + { + "id": "16830", + "ident": "CN20", + "type": "seaplane_base", + "name": "Ferndale Resort Seaplane Base", + "latitude_deg": "39.00299835205078", + "longitude_deg": "-122.7969970703125", + "elevation_ft": "1326", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Kelseyville", + "scheduled_service": "no", + "gps_code": "CN20", + "local_code": "CN20" + }, + { + "id": "16831", + "ident": "CN22", + "type": "closed", + "name": "Northrop Anaheim Heliport", + "latitude_deg": "33.865002", + "longitude_deg": "-117.917", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Anaheim", + "scheduled_service": "no", + "keywords": "CN22" + }, + { + "id": "16832", + "ident": "CN23", + "type": "small_airport", + "name": "Harvard Airport", + "latitude_deg": "34.961700439453125", + "longitude_deg": "-116.67500305175781", + "elevation_ft": "1825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Yermo", + "scheduled_service": "no", + "gps_code": "CN23", + "local_code": "CN23" + }, + { + "id": "16833", + "ident": "CN24", + "type": "closed", + "name": "Flying R Airport", + "latitude_deg": "38.283001", + "longitude_deg": "-121.254997", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Galt", + "scheduled_service": "no", + "keywords": "9Q2, CN24" + }, + { + "id": "16834", + "ident": "CN25", + "type": "heliport", + "name": "The Westin Bonaventure Hotel Heliport", + "latitude_deg": "34.052762", + "longitude_deg": "-118.255854", + "elevation_ft": "679", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "CN25", + "local_code": "CN25" + }, + { + "id": "16835", + "ident": "CN26", + "type": "heliport", + "name": "Rodgers Flat Heliport", + "latitude_deg": "39.96206", + "longitude_deg": "-121.277534", + "elevation_ft": "1560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oroville", + "scheduled_service": "no", + "gps_code": "CN26", + "local_code": "CN26" + }, + { + "id": "16836", + "ident": "CN27", + "type": "heliport", + "name": "Hughes/Canoga Park Heliport", + "latitude_deg": "34.221479", + "longitude_deg": "-118.627091", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Canoga Park", + "scheduled_service": "no", + "gps_code": "CN27", + "local_code": "CN27" + }, + { + "id": "16837", + "ident": "CN28", + "type": "heliport", + "name": "Big Creek Helistop", + "latitude_deg": "37.20089", + "longitude_deg": "-119.25289", + "elevation_ft": "5017", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Big Creek", + "scheduled_service": "no", + "gps_code": "CN28", + "local_code": "CN28" + }, + { + "id": "16838", + "ident": "CN29", + "type": "small_airport", + "name": "J-B Airport", + "latitude_deg": "37.93519973754883", + "longitude_deg": "-121.01499938964844", + "elevation_ft": "103", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Farmington", + "scheduled_service": "no", + "gps_code": "CN29", + "local_code": "CN29" + }, + { + "id": "324715", + "ident": "CN30", + "type": "heliport", + "name": "Oceanside Fire Department Heliport", + "latitude_deg": "33.211584", + "longitude_deg": "-117.3541661", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceanside", + "scheduled_service": "no", + "gps_code": "CN30", + "local_code": "CN30" + }, + { + "id": "16839", + "ident": "CN32", + "type": "closed", + "name": "Boeing De Soto Heliport", + "latitude_deg": "34.234699", + "longitude_deg": "-118.584999", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Canoga Park", + "scheduled_service": "no", + "keywords": "CN32" + }, + { + "id": "16840", + "ident": "CN33", + "type": "heliport", + "name": "Airport Imperial Bldg Helistop", + "latitude_deg": "33.9303016663", + "longitude_deg": "-118.397003174", + "elevation_ft": "238", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "El Segundo", + "scheduled_service": "no", + "gps_code": "CN33", + "local_code": "CN33" + }, + { + "id": "16841", + "ident": "CN34", + "type": "heliport", + "name": "Pg&E, Fresno Service Center Heliport", + "latitude_deg": "36.719398498535156", + "longitude_deg": "-119.76000213623047", + "elevation_ft": "289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fresno", + "scheduled_service": "no", + "gps_code": "CN34", + "local_code": "CN34" + }, + { + "id": "16842", + "ident": "CN35", + "type": "closed", + "name": "Hughes/Space & Comm. Heliport", + "latitude_deg": "33.930306", + "longitude_deg": "-118.397909", + "elevation_ft": "183", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "El Segundo", + "scheduled_service": "no", + "keywords": "CN35" + }, + { + "id": "16843", + "ident": "CN36", + "type": "closed", + "name": "Shaws Hill Heliport", + "latitude_deg": "39.2332", + "longitude_deg": "-121.051003", + "elevation_ft": "2900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Grass Valley", + "scheduled_service": "no", + "keywords": "CN36" + }, + { + "id": "16844", + "ident": "CN37", + "type": "small_airport", + "name": "Kelso Valley Airport", + "latitude_deg": "35.38130188", + "longitude_deg": "-118.2310028", + "elevation_ft": "4047", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mojave", + "scheduled_service": "no", + "gps_code": "CN37", + "local_code": "CN37" + }, + { + "id": "16845", + "ident": "CN38", + "type": "small_airport", + "name": "Flying B Ranch Airport", + "latitude_deg": "38.34130096435547", + "longitude_deg": "-121.43699645996094", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "CN38", + "local_code": "CN38" + }, + { + "id": "16846", + "ident": "CN39", + "type": "heliport", + "name": "Operating Engineers Pension Trust Building Heliport", + "latitude_deg": "34.06217", + "longitude_deg": "-118.288073", + "elevation_ft": "441", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "CN39", + "local_code": "CN39" + }, + { + "id": "16847", + "ident": "CN42", + "type": "small_airport", + "name": "Double Creek Ranch Airport", + "latitude_deg": "40.445702", + "longitude_deg": "-121.882004", + "elevation_ft": "2030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Manton", + "scheduled_service": "no", + "gps_code": "CN42", + "local_code": "CN42" + }, + { + "id": "16848", + "ident": "CN43", + "type": "heliport", + "name": "Boeing Anaheim B/250 Heliport", + "latitude_deg": "33.85969924926758", + "longitude_deg": "-117.8499984741211", + "elevation_ft": "342", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Anaheim", + "scheduled_service": "no", + "gps_code": "CN43", + "local_code": "CN43" + }, + { + "id": "16849", + "ident": "CN44", + "type": "small_airport", + "name": "Flying Bull Airport", + "latitude_deg": "37.620231", + "longitude_deg": "-121.165331", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Modesto", + "scheduled_service": "no", + "gps_code": "CN44", + "local_code": "CN44" + }, + { + "id": "16850", + "ident": "CN45", + "type": "heliport", + "name": "Bear Valley Hospital Heliport", + "latitude_deg": "34.246700286865234", + "longitude_deg": "-116.88800048828125", + "elevation_ft": "6800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Big Bear Lake", + "scheduled_service": "no", + "gps_code": "CN45", + "local_code": "CN45" + }, + { + "id": "16851", + "ident": "CN46", + "type": "heliport", + "name": "The McConnell Foundation Heliport", + "latitude_deg": "40.598201751708984", + "longitude_deg": "-122.33200073242188", + "elevation_ft": "643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Redding", + "scheduled_service": "no", + "gps_code": "CN46", + "local_code": "CN46" + }, + { + "id": "16852", + "ident": "CN47", + "type": "heliport", + "name": "Pacoima Dam Heliport", + "latitude_deg": "34.334004", + "longitude_deg": "-118.397252", + "elevation_ft": "2039", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sylmar", + "scheduled_service": "no", + "gps_code": "CN47", + "local_code": "CN47" + }, + { + "id": "328489", + "ident": "CN48", + "type": "heliport", + "name": "St Joseph's Medical Center Heliport", + "latitude_deg": "37.970197", + "longitude_deg": "-121.28786", + "elevation_ft": "47", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stockton", + "scheduled_service": "no", + "gps_code": "CN48", + "local_code": "CN48" + }, + { + "id": "324851", + "ident": "CN49", + "type": "heliport", + "name": "Sutter Roseville Medical Center Heliport", + "latitude_deg": "38.766623", + "longitude_deg": "-121.248044", + "elevation_ft": "286", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Roseville", + "scheduled_service": "no", + "gps_code": "CN49", + "local_code": "CN49" + }, + { + "id": "16853", + "ident": "CN51", + "type": "heliport", + "name": "Community Regional Medical Center Heliport", + "latitude_deg": "36.743698", + "longitude_deg": "-119.785004", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fresno", + "scheduled_service": "no", + "gps_code": "CN51", + "local_code": "CN51" + }, + { + "id": "324733", + "ident": "CN52", + "type": "heliport", + "name": "Oroville Hospital Heliport", + "latitude_deg": "39.50743", + "longitude_deg": "-121.541572", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oroville", + "scheduled_service": "no", + "gps_code": "CN52", + "local_code": "CN52" + }, + { + "id": "45309", + "ident": "CN53", + "type": "heliport", + "name": "Kings County Houston Ave. Heliport", + "latitude_deg": "36.299861", + "longitude_deg": "-119.594861", + "elevation_ft": "239", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hanford", + "scheduled_service": "no", + "gps_code": "CN53", + "local_code": "CN53" + }, + { + "id": "338927", + "ident": "CN55", + "type": "heliport", + "name": "Mercy Hospital Southwest Heliport", + "latitude_deg": "35.35", + "longitude_deg": "-119.112222", + "elevation_ft": "375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bakersfield", + "scheduled_service": "no", + "gps_code": "CN55", + "local_code": "CN55" + }, + { + "id": "328480", + "ident": "CN62", + "type": "heliport", + "name": "CS Ranch Heliport", + "latitude_deg": "39.241597", + "longitude_deg": "-121.909516", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Colusa", + "scheduled_service": "no", + "gps_code": "CN62", + "local_code": "CN62" + }, + { + "id": "317223", + "ident": "CN88", + "type": "heliport", + "name": "Kaiser Permanente Vacaville Heliport", + "latitude_deg": "38.3887", + "longitude_deg": "-121.9405", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Vacaville", + "scheduled_service": "no", + "gps_code": "CN88", + "local_code": "CN88" + }, + { + "id": "333328", + "ident": "CN90", + "type": "heliport", + "name": "API Gateway Heliport", + "latitude_deg": "32.675883", + "longitude_deg": "-115.372028", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Calexico", + "scheduled_service": "no", + "gps_code": "CN90", + "local_code": "CN90" + }, + { + "id": "323649", + "ident": "CN93", + "type": "heliport", + "name": "Sierra Vista Regional Medical Center Heliport", + "latitude_deg": "35.293729", + "longitude_deg": "-120.665988", + "elevation_ft": "235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Luis Obispo", + "scheduled_service": "no", + "gps_code": "CN93", + "local_code": "CN93" + }, + { + "id": "322719", + "ident": "CN95", + "type": "small_airport", + "name": "Heritage Field Airport", + "latitude_deg": "37.9933056", + "longitude_deg": "-121.4922903", + "elevation_ft": "-24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stockton", + "scheduled_service": "no", + "gps_code": "CN95", + "local_code": "CN95" + }, + { + "id": "45318", + "ident": "CN98", + "type": "small_airport", + "name": "Walters Camp Airport", + "latitude_deg": "33.245556", + "longitude_deg": "-114.710278", + "elevation_ft": "309", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palo Verde", + "scheduled_service": "no", + "gps_code": "CN98", + "local_code": "CN98" + }, + { + "id": "322043", + "ident": "CN99", + "type": "small_airport", + "name": "Del Mar Farms Airport", + "latitude_deg": "37.5464444", + "longitude_deg": "-121.1585778", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Patterson", + "scheduled_service": "no", + "gps_code": "CN99", + "local_code": "CN99" + }, + { + "id": "1285", + "ident": "CNA2", + "type": "small_airport", + "name": "Highgate Airport", + "latitude_deg": "42.553039", + "longitude_deg": "-81.801424", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Highgate", + "scheduled_service": "no", + "gps_code": "CNA2", + "local_code": "CNA2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Highgate_Airport", + "keywords": "NA2" + }, + { + "id": "1286", + "ident": "CNA3", + "type": "small_airport", + "name": "Barrie Executive Airport", + "latitude_deg": "44.407066", + "longitude_deg": "-79.731655", + "elevation_ft": "963", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Barrie", + "scheduled_service": "no", + "gps_code": "CNA3", + "local_code": "CNA3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Springwater_(Barrie_Airpark)", + "keywords": "NA3, Springwater Barrie Airpark" + }, + { + "id": "1287", + "ident": "CNA4", + "type": "small_airport", + "name": "Emsdale Airport", + "latitude_deg": "45.546196", + "longitude_deg": "-79.344233", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Katrine", + "scheduled_service": "no", + "gps_code": "CNA4", + "local_code": "CNA4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Emsdale_Airport", + "keywords": "NA4" + }, + { + "id": "1288", + "ident": "CNA5", + "type": "heliport", + "name": "Uxbridge (Cottage Hospital) Heliport", + "latitude_deg": "44.1024562729", + "longitude_deg": "-79.1285777092", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Uxbridge", + "scheduled_service": "no", + "gps_code": "CNA5", + "local_code": "CNA5", + "keywords": "NA5" + }, + { + "id": "1289", + "ident": "CNA8", + "type": "closed", + "name": "Winchester Airport", + "latitude_deg": "45.045600891099994", + "longitude_deg": "-75.3032989502", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Winchester", + "scheduled_service": "no", + "gps_code": "CNA8", + "local_code": "CNA8", + "home_link": "http://www.winchesterairport.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Winchester_Airport", + "keywords": "NA8" + }, + { + "id": "1290", + "ident": "CNA9", + "type": "small_airport", + "name": "Tomvale Airport", + "latitude_deg": "44.916099548339844", + "longitude_deg": "-76.93579864501953", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Plevna", + "scheduled_service": "no", + "gps_code": "CNA9", + "local_code": "CNA9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Plevna/Tomvale_Airport", + "keywords": "NA9" + }, + { + "id": "1291", + "ident": "CNB2", + "type": "heliport", + "name": "Bolton Heliport", + "latitude_deg": "43.8521607791", + "longitude_deg": "-79.6948215365", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Bolton", + "scheduled_service": "no", + "gps_code": "CNB2", + "local_code": "CNB2", + "keywords": "NB2" + }, + { + "id": "298384", + "ident": "CNB3", + "type": "heliport", + "name": "North Bay Regional Health Centre Helipad", + "latitude_deg": "46.334854", + "longitude_deg": "-79.495869", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "North Bay", + "scheduled_service": "no", + "gps_code": "CNB3", + "local_code": "CNB3" + }, + { + "id": "1292", + "ident": "CNB4", + "type": "heliport", + "name": "Cobourg (Northumberland Hills Hospital) Heliport", + "latitude_deg": "43.97719955444336", + "longitude_deg": "-78.19999694824219", + "elevation_ft": "343", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Cobourg", + "scheduled_service": "no", + "gps_code": "CNB4", + "local_code": "CNB4", + "keywords": "NB4" + }, + { + "id": "28162", + "ident": "CNB5", + "type": "seaplane_base", + "name": "Arnprior Seaplane Base", + "latitude_deg": "45.407501220703125", + "longitude_deg": "-76.35970306396484", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Arnprior", + "scheduled_service": "no", + "gps_code": "CNB5", + "local_code": "CNB5" + }, + { + "id": "28327", + "ident": "CNB7", + "type": "seaplane_base", + "name": "Moosonee Seaplane Base", + "latitude_deg": "51.266700744628906", + "longitude_deg": "-80.6500015258789", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNB7", + "local_code": "CNB7" + }, + { + "id": "28431", + "ident": "CNB8", + "type": "seaplane_base", + "name": "Sudbury/Ramsey Lake Seaplane Base", + "latitude_deg": "46.47999954223633", + "longitude_deg": "-80.98529815673828", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNB8", + "local_code": "CNB8" + }, + { + "id": "1294", + "ident": "CNC3", + "type": "medium_airport", + "name": "Brampton-Caledon Airport", + "latitude_deg": "43.7603", + "longitude_deg": "-79.875", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNC3", + "local_code": "CNC3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brampton_Airport", + "keywords": "NC3" + }, + { + "id": "1295", + "ident": "CNC4", + "type": "small_airport", + "name": "Guelph Airport", + "latitude_deg": "43.563899993896484", + "longitude_deg": "-80.19609832763672", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Guelph", + "scheduled_service": "no", + "gps_code": "CNC4", + "local_code": "CNC4", + "home_link": "http://www.aviationinternational.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guelph_Airport", + "keywords": "NC4" + }, + { + "id": "28430", + "ident": "CNC5", + "type": "seaplane_base", + "name": "Sudbury/Azilda Seaplane Base", + "latitude_deg": "46.533298", + "longitude_deg": "-81.133301", + "elevation_ft": "869", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNC5", + "local_code": "CNC5", + "keywords": "NC5" + }, + { + "id": "28185", + "ident": "CNC6", + "type": "closed", + "name": "Caledonia/Grand River Seaplane Base", + "latitude_deg": "43.086103", + "longitude_deg": "-80.051695", + "elevation_ft": "605", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Caledonia", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Caledonia/Grand_River_Water_Aerodrome", + "keywords": "NC6, CNC6" + }, + { + "id": "28294", + "ident": "CNC7", + "type": "seaplane_base", + "name": "Lake Muskoka/Mortimer'S Point Seaplane Base", + "latitude_deg": "45.049999", + "longitude_deg": "-79.561095", + "elevation_ft": "739", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Port Carling", + "scheduled_service": "no", + "gps_code": "CNC7", + "local_code": "CNC7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_Muskoka/Mortimer's_Point_Water_Aerodrome", + "keywords": "NC7" + }, + { + "id": "28438", + "ident": "CNC8", + "type": "seaplane_base", + "name": "Temagami Seaplane Base", + "latitude_deg": "47.0625", + "longitude_deg": "-79.793297", + "elevation_ft": "962", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Temagami", + "scheduled_service": "no", + "gps_code": "CNC8", + "local_code": "CNC8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Temagami_Water_Aerodrome", + "keywords": "NC8" + }, + { + "id": "1296", + "ident": "CNC9", + "type": "heliport", + "name": "Perth (Great War Memorial Hospital) Heliport", + "latitude_deg": "44.906937941500004", + "longitude_deg": "-76.2536466122", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Perth", + "scheduled_service": "no", + "gps_code": "CNC9", + "local_code": "CNC9", + "keywords": "NC9" + }, + { + "id": "1297", + "ident": "CND3", + "type": "closed", + "name": "Sudbury (Regional Hospital) Heliport", + "latitude_deg": "46.4794600253", + "longitude_deg": "-80.9894970059", + "elevation_ft": "912", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Sudbury", + "scheduled_service": "no", + "gps_code": "CND3", + "local_code": "CND3", + "keywords": "ND3" + }, + { + "id": "1298", + "ident": "CND4", + "type": "small_airport", + "name": "Stanhope Municipal Airport", + "latitude_deg": "45.1108333333", + "longitude_deg": "-78.64", + "elevation_ft": "1066", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Haliburton", + "scheduled_service": "no", + "gps_code": "CND4", + "local_code": "CND4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Haliburton/Stanhope_Municipal_Airport", + "keywords": "ND4" + }, + { + "id": "28245", + "ident": "CND6", + "type": "seaplane_base", + "name": "Granitehill Lake Seaplane Base", + "latitude_deg": "49.099998474121094", + "longitude_deg": "-85.19999694824219", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CND6", + "local_code": "CND6" + }, + { + "id": "320435", + "ident": "CND7", + "type": "heliport", + "name": "Slocan Community Hospital Helipad", + "latitude_deg": "49.9841", + "longitude_deg": "-117.3744", + "elevation_ft": "1769", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "New Denver", + "scheduled_service": "no", + "gps_code": "CND7", + "local_code": "CND7" + }, + { + "id": "28372", + "ident": "CND9", + "type": "seaplane_base", + "name": "Portage Lake Seaplane Base", + "latitude_deg": "45.766700744628906", + "longitude_deg": "-80.2332992553711", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CND9", + "local_code": "CND9" + }, + { + "id": "1299", + "ident": "CNE3", + "type": "small_airport", + "name": "Bearskin Lake Airport", + "latitude_deg": "53.965599060058594", + "longitude_deg": "-91.0271987915039", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Bearskin Lake", + "scheduled_service": "yes", + "gps_code": "CNE3", + "iata_code": "XBE", + "local_code": "CNE3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bearskin_Lake_Airport", + "keywords": "NE3" + }, + { + "id": "1300", + "ident": "CNE4", + "type": "small_airport", + "name": "Iroquois Falls Airport", + "latitude_deg": "48.74169921875", + "longitude_deg": "-80.79329681396484", + "elevation_ft": "1008", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Iroquois Falls", + "scheduled_service": "no", + "gps_code": "CNE4", + "local_code": "CNE4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iroquois_Falls_Airport", + "keywords": "NE4" + }, + { + "id": "28172", + "ident": "CNE5", + "type": "seaplane_base", + "name": "Bar River Seaplane Base", + "latitude_deg": "46.416698", + "longitude_deg": "-84.099998", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Bar River", + "scheduled_service": "no", + "gps_code": "CNE5", + "local_code": "CNE5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bar_River_Water_Aerodrome", + "keywords": "NE5" + }, + { + "id": "28236", + "ident": "CNE6", + "type": "seaplane_base", + "name": "Geraldton/Hutchison Lake Seaplane Base", + "latitude_deg": "49.784199", + "longitude_deg": "-86.938904", + "elevation_ft": "1113", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Geraldton", + "scheduled_service": "no", + "gps_code": "CNE6", + "local_code": "CNE6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Geraldton/Hutchison_Lake_Water_Aerodrome", + "keywords": "NE6" + }, + { + "id": "28330", + "ident": "CNE7", + "type": "seaplane_base", + "name": "Nakina Seaplane Base", + "latitude_deg": "50.21670150756836", + "longitude_deg": "-86.69999694824219", + "elevation_ft": "975", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNE7", + "local_code": "CNE7" + }, + { + "id": "1301", + "ident": "CNE9", + "type": "small_airport", + "name": "Essex Airport", + "latitude_deg": "42.09579849243164", + "longitude_deg": "-82.87940216064453", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Essex", + "scheduled_service": "no", + "gps_code": "CNE9", + "local_code": "CNE9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Essex_Airport", + "keywords": "NE9" + }, + { + "id": "1302", + "ident": "CNF2", + "type": "heliport", + "name": "Haliburton (Hospital) Heliport", + "latitude_deg": "45.03810119628906", + "longitude_deg": "-78.5302963256836", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Haliburton", + "scheduled_service": "no", + "gps_code": "CNF2", + "local_code": "CNF2", + "keywords": "NF2" + }, + { + "id": "1303", + "ident": "CNF3", + "type": "small_airport", + "name": "Pendleton Airport", + "latitude_deg": "45.486099", + "longitude_deg": "-75.0961", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Pendleton", + "scheduled_service": "no", + "gps_code": "CNF3", + "local_code": "CNF3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pendleton_Airport", + "keywords": "NF3" + }, + { + "id": "1304", + "ident": "CNF4", + "type": "small_airport", + "name": "Kawartha Lakes (Lindsay) Airport", + "latitude_deg": "44.3647", + "longitude_deg": "-78.783897", + "elevation_ft": "882", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Lindsay", + "scheduled_service": "no", + "gps_code": "CNF4", + "local_code": "CNF4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lindsay_Airport", + "keywords": "NF4" + }, + { + "id": "28173", + "ident": "CNF5", + "type": "seaplane_base", + "name": "Batchawana Seaplane Base", + "latitude_deg": "46.91669845581055", + "longitude_deg": "-84.5999984741211", + "elevation_ft": "601", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNF5", + "local_code": "CNF5" + }, + { + "id": "28250", + "ident": "CNF6", + "type": "seaplane_base", + "name": "Haliburton Seaplane Base", + "latitude_deg": "45.00830078125", + "longitude_deg": "-78.56670379638672", + "elevation_ft": "1043", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNF6", + "local_code": "CNF6" + }, + { + "id": "44688", + "ident": "CNF8", + "type": "small_airport", + "name": "Dwight Airport", + "latitude_deg": "45.314445", + "longitude_deg": "-78.972504", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Dwight", + "scheduled_service": "no", + "gps_code": "CNF8", + "local_code": "CNF8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dwight_Aerodrome" + }, + { + "id": "1305", + "ident": "CNF9", + "type": "small_airport", + "name": "Niagara South Airport", + "latitude_deg": "42.9994010925293", + "longitude_deg": "-79.0635986328125", + "elevation_ft": "576", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Niagara Falls", + "scheduled_service": "no", + "gps_code": "CNF9", + "local_code": "CNF9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Niagara_Falls/Niagara_South_Airport", + "keywords": "NF9" + }, + { + "id": "320436", + "ident": "CNG2", + "type": "heliport", + "name": "Aberdeen Hospital Heliport", + "latitude_deg": "45.57223", + "longitude_deg": "-62.644368", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "New Glasgow", + "scheduled_service": "no", + "gps_code": "CNG2", + "local_code": "CNG2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aberdeen_Regional_Hospital" + }, + { + "id": "1306", + "ident": "CNG5", + "type": "heliport", + "name": "Pembroke (Regional Hospital) Heliport", + "latitude_deg": "45.81529998779297", + "longitude_deg": "-77.10780334472656", + "elevation_ft": "496", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Pembroke", + "scheduled_service": "no", + "gps_code": "CNG5", + "local_code": "CNG5", + "keywords": "NG5" + }, + { + "id": "1307", + "ident": "CNG6", + "type": "heliport", + "name": "Walkerton (County of Bruce General Hospital) Heliport", + "latitude_deg": "44.121353921799994", + "longitude_deg": "-81.1524519324", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Walkerton", + "scheduled_service": "no", + "gps_code": "CNG6", + "local_code": "CNG6", + "keywords": "NG6" + }, + { + "id": "320437", + "ident": "CNG8", + "type": "heliport", + "name": "Greater Niagara General Hospital Heliport", + "latitude_deg": "43.105803", + "longitude_deg": "-79.0919", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Niagara Falls", + "scheduled_service": "no", + "gps_code": "CNG8", + "local_code": "CNG8" + }, + { + "id": "1308", + "ident": "CNH2", + "type": "small_airport", + "name": "Natuashish Airport", + "latitude_deg": "55.913898", + "longitude_deg": "-61.184399", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Natuashish", + "scheduled_service": "yes", + "gps_code": "CNH2", + "iata_code": "YNP", + "local_code": "CNH2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Natuashish_Airport", + "keywords": "NH2" + }, + { + "id": "1309", + "ident": "CNH3", + "type": "closed", + "name": "Durham (Mulock) Airport", + "latitude_deg": "44.22919845581055", + "longitude_deg": "-80.91390228271484", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Durham", + "scheduled_service": "no", + "gps_code": "CNH3", + "local_code": "CNH3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Durham_(Mulock)_Airport", + "keywords": "NH3" + }, + { + "id": "320674", + "ident": "CNH4", + "type": "heliport", + "name": "Niagara Health System Heliport", + "latitude_deg": "43.1518", + "longitude_deg": "-79.2807", + "elevation_ft": "332", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "St. Catharines", + "scheduled_service": "no", + "gps_code": "CNH4", + "local_code": "CNH4" + }, + { + "id": "28255", + "ident": "CNH6", + "type": "seaplane_base", + "name": "Hawk Junction Seaplane Base", + "latitude_deg": "48.08330154418945", + "longitude_deg": "-84.55000305175781", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNH6", + "local_code": "CNH6" + }, + { + "id": "28343", + "ident": "CNH7", + "type": "seaplane_base", + "name": "North Bay Seaplane Base", + "latitude_deg": "46.33110046386719", + "longitude_deg": "-79.40139770507812", + "elevation_ft": "663", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNH7", + "local_code": "CNH7" + }, + { + "id": "1310", + "ident": "CNH9", + "type": "heliport", + "name": "Nanaimo (West Coast) Heliport", + "latitude_deg": "49.184838", + "longitude_deg": "-123.989171", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Nanaimo", + "scheduled_service": "no", + "gps_code": "CNH9", + "local_code": "CNH9", + "keywords": "NH9" + }, + { + "id": "1311", + "ident": "CNJ3", + "type": "small_airport", + "name": "Fort Erie Airport", + "latitude_deg": "42.9172121601", + "longitude_deg": "-78.957452774", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Fort Erie", + "scheduled_service": "no", + "gps_code": "CNJ3", + "local_code": "CNJ3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Erie_Airport", + "keywords": "NJ3" + }, + { + "id": "1312", + "ident": "CNJ4", + "type": "small_airport", + "name": "Orillia-RAMA Regional Airport", + "latitude_deg": "44.677656", + "longitude_deg": "-79.310217", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Orillia", + "scheduled_service": "no", + "gps_code": "CNJ4", + "local_code": "CNJ4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orillia_Airport", + "keywords": "NJ4" + }, + { + "id": "28258", + "ident": "CNJ5", + "type": "seaplane_base", + "name": "Hearst/Carey Lake Seaplane Base", + "latitude_deg": "49.7439", + "longitude_deg": "-84.0247", + "elevation_ft": "801", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Hearst", + "scheduled_service": "no", + "gps_code": "CNJ5", + "local_code": "CNJ5" + }, + { + "id": "28261", + "ident": "CNJ6", + "type": "seaplane_base", + "name": "Hornepayne Seaplane Base", + "latitude_deg": "49.18330001831055", + "longitude_deg": "-84.88330078125", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNJ6", + "local_code": "CNJ6" + }, + { + "id": "28467", + "ident": "CNJ8", + "type": "seaplane_base", + "name": "White River Seaplane Base", + "latitude_deg": "48.6269", + "longitude_deg": "-85.223297", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "White River", + "scheduled_service": "no", + "gps_code": "CNJ8", + "iata_code": "YWR", + "local_code": "CNJ8", + "wikipedia_link": "https://en.wikipedia.org/wiki/White_River_Water_Aerodrome" + }, + { + "id": "1313", + "ident": "CNK2", + "type": "closed", + "name": "Kincardine (Ellis Field) Airport", + "latitude_deg": "44.15610122680664", + "longitude_deg": "-81.40059661865234", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kincardine", + "scheduled_service": "no", + "gps_code": "CNK2", + "local_code": "CNK2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kincardine_(Ellis_Field)_Airport", + "keywords": "NK2" + }, + { + "id": "1314", + "ident": "CNK4", + "type": "small_airport", + "name": "Parry Sound Area Municipal Airport", + "latitude_deg": "45.2575", + "longitude_deg": "-79.829697", + "elevation_ft": "832", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Parry Sound", + "scheduled_service": "no", + "gps_code": "CNK4", + "iata_code": "YPD", + "local_code": "CNK4", + "home_link": "http://www.seguin.ca/en/municipalairport.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Parry_Sound_Area_Municipal_Airport", + "keywords": "NK4, Seguin" + }, + { + "id": "28211", + "ident": "CNK5", + "type": "seaplane_base", + "name": "Dorset/Kawagama Lake (Old Mill Marina) Seaplane Base", + "latitude_deg": "45.266700744628906", + "longitude_deg": "-78.80829620361328", + "elevation_ft": "1165", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNK5", + "local_code": "CNK5" + }, + { + "id": "1315", + "ident": "CNK6", + "type": "heliport", + "name": "Owen Sound (Grey Bruce Health Services) Heliport", + "latitude_deg": "44.56809997558594", + "longitude_deg": "-80.91329956054688", + "elevation_ft": "794", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Owen Sound", + "scheduled_service": "no", + "gps_code": "CNK6", + "local_code": "CNK6", + "keywords": "NK6" + }, + { + "id": "45219", + "ident": "CNK7", + "type": "heliport", + "name": "Canmore/Nakoda Heliport", + "latitude_deg": "51.103332", + "longitude_deg": "-115.012222", + "elevation_ft": "4260", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Kananaskis", + "scheduled_service": "no", + "gps_code": "CNK7", + "local_code": "CNK7", + "keywords": "Kananaskis" + }, + { + "id": "1316", + "ident": "CNK9", + "type": "heliport", + "name": "Kitchener-Waterloo (Grand River Hospital) Heliport", + "latitude_deg": "43.4528857925", + "longitude_deg": "-80.503719449", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kitchener-Waterloo", + "scheduled_service": "no", + "gps_code": "CNK9", + "local_code": "CNK9", + "keywords": "NK9" + }, + { + "id": "302186", + "ident": "CNL2", + "type": "small_airport", + "name": "Fort McMurray / North Liege Airfield", + "latitude_deg": "57.1360995926", + "longitude_deg": "-113.290071487", + "elevation_ft": "2236", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "gps_code": "CNL2" + }, + { + "id": "1317", + "ident": "CNL3", + "type": "small_airport", + "name": "Brockville - Thousand Islands Regional Tackaberry Airport", + "latitude_deg": "44.6394004822", + "longitude_deg": "-75.7502975464", + "elevation_ft": "402", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Brockville", + "scheduled_service": "no", + "gps_code": "CNL3", + "iata_code": "XBR", + "local_code": "CNL3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brockville-Thousand_Islands_Regional_Tackaberry_Airport", + "keywords": "NL3" + }, + { + "id": "1318", + "ident": "CNL4", + "type": "small_airport", + "name": "Port Elgin Airport", + "latitude_deg": "44.41529846191406", + "longitude_deg": "-81.41439819335938", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Port Elgin", + "scheduled_service": "no", + "gps_code": "CNL4", + "local_code": "CNL4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Elgin_Airport", + "keywords": "NL4" + }, + { + "id": "28191", + "ident": "CNL5", + "type": "seaplane_base", + "name": "Chapleau Seaplane Base", + "latitude_deg": "47.849998474121094", + "longitude_deg": "-83.4000015258789", + "elevation_ft": "1443", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNL5", + "local_code": "CNL5" + }, + { + "id": "28395", + "ident": "CNL6", + "type": "seaplane_base", + "name": "Hurds Lake Seaplane Base", + "latitude_deg": "45.41669845581055", + "longitude_deg": "-76.6500015258789", + "elevation_ft": "608", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Renfrew", + "scheduled_service": "no", + "gps_code": "CNL6", + "local_code": "CNL6" + }, + { + "id": "301322", + "ident": "cnl7", + "type": "small_airport", + "name": "Nobel / Lumsden Air Park", + "latitude_deg": "45.4083333", + "longitude_deg": "-80.0780555", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNL7" + }, + { + "id": "1319", + "ident": "CNL8", + "type": "small_airport", + "name": "Wyevale (Boker Field) Airport", + "latitude_deg": "44.65530014038086", + "longitude_deg": "-79.87889862060547", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Wyevale", + "scheduled_service": "no", + "gps_code": "CNL8", + "local_code": "CNL8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wyevale_(Boker_Field)_Airport", + "keywords": "NL8" + }, + { + "id": "1320", + "ident": "CNL9", + "type": "small_airport", + "name": "Nueltin Lake Airport", + "latitude_deg": "59.708099365234375", + "longitude_deg": "-100.12699890136719", + "elevation_ft": "971", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Nueltin Lake", + "scheduled_service": "no", + "gps_code": "CNL9", + "local_code": "CNL9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nueltin_Lake_Airport", + "keywords": "NL9" + }, + { + "id": "1321", + "ident": "CNM2", + "type": "small_airport", + "name": "Melbourne Airport", + "latitude_deg": "42.82419967651367", + "longitude_deg": "-81.54859924316406", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Melbourne", + "scheduled_service": "no", + "gps_code": "CNM2", + "local_code": "CNM2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Melbourne_Airport_(Ontario)", + "keywords": "NM2" + }, + { + "id": "1322", + "ident": "CNM3", + "type": "heliport", + "name": "Sturgeon Falls (West Nipissing General Hospital) Heliport", + "latitude_deg": "46.3733236554", + "longitude_deg": "-79.91627812390001", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Sturgeon Falls", + "scheduled_service": "no", + "gps_code": "CNM3", + "local_code": "CNM3", + "keywords": "NM3" + }, + { + "id": "1324", + "ident": "CNM5", + "type": "small_airport", + "name": "Kingfisher Lake Airport", + "latitude_deg": "53.01250076293945", + "longitude_deg": "-89.85530090332031", + "elevation_ft": "866", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kingfisher Lake", + "scheduled_service": "yes", + "gps_code": "CNM5", + "iata_code": "KIF", + "local_code": "CNM5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kingfisher_Lake_Airport", + "keywords": "NM5" + }, + { + "id": "320433", + "ident": "CNM6", + "type": "heliport", + "name": "Naramata Heliport", + "latitude_deg": "49.6029", + "longitude_deg": "-119.578501", + "elevation_ft": "1856", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Naramata", + "scheduled_service": "no", + "gps_code": "CNM6", + "local_code": "CNM6" + }, + { + "id": "28362", + "ident": "CNM7", + "type": "seaplane_base", + "name": "Pays Plat Seaplane Base", + "latitude_deg": "48.88330078125", + "longitude_deg": "-87.58329772949219", + "elevation_ft": "601", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNM7", + "local_code": "CNM7" + }, + { + "id": "1325", + "ident": "CNN3", + "type": "small_airport", + "name": "Shelburne / Fisher Field", + "latitude_deg": "44.0278929436", + "longitude_deg": "-80.2059459686", + "elevation_ft": "1675", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Shelburne", + "scheduled_service": "no", + "gps_code": "CNN3", + "local_code": "CNN3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shelburne/Burbank_Field_Airport", + "keywords": "NN3" + }, + { + "id": "1326", + "ident": "CNN4", + "type": "closed", + "name": "Atwood Airport", + "latitude_deg": "43.693880011", + "longitude_deg": "-81.00262641910001", + "elevation_ft": "1232", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Atwood", + "scheduled_service": "no", + "gps_code": "CNN4", + "local_code": "CNN4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atwood_Airport", + "keywords": "NN4" + }, + { + "id": "28197", + "ident": "CNN5", + "type": "seaplane_base", + "name": "Cochrane Seaplane Base", + "latitude_deg": "49.10969924926758", + "longitude_deg": "-81.0333023071289", + "elevation_ft": "807", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNN5", + "local_code": "CNN5" + }, + { + "id": "28242", + "ident": "CNN7", + "type": "seaplane_base", + "name": "Gooderham/Pencil Lake Seaplane Base", + "latitude_deg": "44.79999923706055", + "longitude_deg": "-78.3499984741211", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNN7", + "local_code": "CNN7" + }, + { + "id": "1327", + "ident": "CNN8", + "type": "small_airport", + "name": "Gananoque Airport", + "latitude_deg": "44.40190124511719", + "longitude_deg": "-76.24420166015625", + "elevation_ft": "395", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Gananoque", + "scheduled_service": "no", + "gps_code": "CNN8", + "local_code": "CNN8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gananoque_Airport", + "keywords": "NN8" + }, + { + "id": "28297", + "ident": "CNP2", + "type": "seaplane_base", + "name": "Lake Rosseau/Windermere Seaplane Base", + "latitude_deg": "45.16669845581055", + "longitude_deg": "-79.5333023071289", + "elevation_ft": "742", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNP2", + "local_code": "CNP2" + }, + { + "id": "1328", + "ident": "CNP3", + "type": "small_airport", + "name": "Arnprior Airport", + "latitude_deg": "45.41360092163086", + "longitude_deg": "-76.36579895019531", + "elevation_ft": "358", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Arnprior", + "scheduled_service": "no", + "gps_code": "CNP3", + "local_code": "CNP3", + "home_link": "http://www.townarnprior.on.ca/airport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arnprior/South_Renfrew_Municipal_Airport", + "keywords": "NP3,South Renfrew Municipal" + }, + { + "id": "28199", + "ident": "CNP5", + "type": "seaplane_base", + "name": "Kamaniskeg Lake Seaplane Base", + "latitude_deg": "45.38330078125", + "longitude_deg": "-77.6500015258789", + "elevation_ft": "928", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Combermere", + "scheduled_service": "no", + "gps_code": "CNP5", + "local_code": "CNP5" + }, + { + "id": "46592", + "ident": "CNP6", + "type": "small_airport", + "name": "Nampa / Hockey", + "latitude_deg": "55.914900566", + "longitude_deg": "-117.136155367", + "elevation_ft": "2050", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "gps_code": "CNP6", + "keywords": "np6" + }, + { + "id": "1329", + "ident": "CNP7", + "type": "small_airport", + "name": "Iroquois Airport", + "latitude_deg": "44.84217834472656", + "longitude_deg": "-75.31140899658203", + "elevation_ft": "246", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Iroquois", + "scheduled_service": "no", + "gps_code": "CNP7", + "local_code": "CNP7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iroquois_Airport", + "keywords": "NP7" + }, + { + "id": "1330", + "ident": "CNP8", + "type": "small_airport", + "name": "Greenbank Airport", + "latitude_deg": "44.1336968141", + "longitude_deg": "-79.0130281448", + "elevation_ft": "975", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Greenbank", + "scheduled_service": "no", + "gps_code": "CNP8", + "local_code": "CNP8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greenbank_Airport", + "keywords": "NP8" + }, + { + "id": "1331", + "ident": "CNQ3", + "type": "small_airport", + "name": "Niagara Central Dorothy Rungeling Airport", + "latitude_deg": "42.979198", + "longitude_deg": "-79.324699", + "elevation_ft": "585", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Welland", + "scheduled_service": "no", + "gps_code": "CNQ3", + "local_code": "CNQ3", + "home_link": "http://www.centralairport.ca/index.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Welland/Niagara_Central_Airport", + "keywords": "NQ3" + }, + { + "id": "1332", + "ident": "CNQ4", + "type": "small_airport", + "name": "Tillsonburg Airport", + "latitude_deg": "42.9275", + "longitude_deg": "-80.746944", + "elevation_ft": "894", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Tillsonburg", + "scheduled_service": "no", + "gps_code": "CYTB", + "local_code": "CYTB", + "home_link": "http://www.tillsonburg.ca/en/Tillsonburg-Regional-Airport.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tillsonburg_Airport", + "keywords": "CYTB, NQ4, CNQ4" + }, + { + "id": "28203", + "ident": "CNQ5", + "type": "seaplane_base", + "name": "Constance Lake Seaplane Base", + "latitude_deg": "45.402801513671875", + "longitude_deg": "-75.97560119628906", + "elevation_ft": "196", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ottawa", + "scheduled_service": "no", + "gps_code": "CNQ5", + "local_code": "CNQ5" + }, + { + "id": "28271", + "ident": "CNQ6", + "type": "seaplane_base", + "name": "Keene/Elmhirst's Resort Seaplane Base", + "latitude_deg": "44.2523462944", + "longitude_deg": "-78.10242891310001", + "elevation_ft": "613", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNQ6", + "local_code": "CNQ6" + }, + { + "id": "28379", + "ident": "CNQ7", + "type": "seaplane_base", + "name": "Port Loring Seaplane Base", + "latitude_deg": "45.8923380253", + "longitude_deg": "-80.10301351550001", + "elevation_ft": "668", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNQ7", + "local_code": "CNQ7" + }, + { + "id": "320331", + "ident": "CNR2", + "type": "small_airport", + "name": "Innerkip Airport", + "latitude_deg": "43.2326002", + "longitude_deg": "-80.6947", + "elevation_ft": "1015", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNR2", + "local_code": "CNR2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Innerkip_Aerodrome" + }, + { + "id": "1333", + "ident": "CNR3", + "type": "heliport", + "name": "Sault Ste. Marie Heliport", + "latitude_deg": "46.504398345947266", + "longitude_deg": "-84.32330322265625", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Sault Ste. Marie", + "scheduled_service": "no", + "gps_code": "CNR3", + "local_code": "CNR3", + "keywords": "NR3" + }, + { + "id": "1334", + "ident": "CNR4", + "type": "small_airport", + "name": "Tobermory Airport", + "latitude_deg": "45.2214680842", + "longitude_deg": "-81.62755966190001", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Tobermory", + "scheduled_service": "no", + "gps_code": "CNR4", + "local_code": "CNR4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tobermory_Airport", + "keywords": "NR4" + }, + { + "id": "1335", + "ident": "CNR6", + "type": "small_airport", + "name": "Carleton Place Airport", + "latitude_deg": "45.10390090942383", + "longitude_deg": "-76.12329864501953", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Carleton Place", + "scheduled_service": "no", + "gps_code": "CNR6", + "local_code": "CNR6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carleton_Place_Airport", + "keywords": "NR6" + }, + { + "id": "1336", + "ident": "CNR9", + "type": "small_airport", + "name": "Arnstein Airport", + "latitude_deg": "45.92559814453125", + "longitude_deg": "-79.92780303955078", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Arnstein", + "scheduled_service": "no", + "gps_code": "CNR9", + "local_code": "CNR9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arnstein_Airport", + "keywords": "NR9" + }, + { + "id": "28420", + "ident": "CNS2", + "type": "seaplane_base", + "name": "Smoky Lake Seaplane Base", + "latitude_deg": "45.849998474121094", + "longitude_deg": "-80.2166976928711", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNS2", + "local_code": "CNS2" + }, + { + "id": "1337", + "ident": "CNS3", + "type": "heliport", + "name": "Englehart (District Hospital) Heliport", + "latitude_deg": "47.823240475", + "longitude_deg": "-79.8800468445", + "elevation_ft": "679", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Englehart", + "scheduled_service": "no", + "gps_code": "CNS3", + "local_code": "CNS3", + "keywords": "NS3" + }, + { + "id": "1338", + "ident": "CNS4", + "type": "small_airport", + "name": "Alexandria Aerodrome", + "latitude_deg": "45.3306999207", + "longitude_deg": "-74.62572479250001", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Alexandria", + "scheduled_service": "no", + "gps_code": "CNS4", + "local_code": "CNS4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alexandria_Aerodrome" + }, + { + "id": "1339", + "ident": "CNS6", + "type": "small_airport", + "name": "Straffordville Airport", + "latitude_deg": "42.73830032348633", + "longitude_deg": "-80.81670379638672", + "elevation_ft": "732", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Straffordville", + "scheduled_service": "no", + "gps_code": "CNS6", + "local_code": "CNS6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Straffordville_Airport", + "keywords": "NS6" + }, + { + "id": "1341", + "ident": "CNS8", + "type": "small_airport", + "name": "Morrisburg Airport", + "latitude_deg": "44.946993", + "longitude_deg": "-75.076961", + "elevation_ft": "254", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Morrisburg", + "scheduled_service": "no", + "gps_code": "CNS8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Morrisburg_Airport" + }, + { + "id": "1342", + "ident": "CNS9", + "type": "heliport", + "name": "Smiths Falls (Community Hospital) Heliport", + "latitude_deg": "44.9071754018", + "longitude_deg": "-76.0277831554", + "elevation_ft": "409", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Smiths Falls", + "scheduled_service": "no", + "gps_code": "CNS9", + "local_code": "CNS9", + "keywords": "NS9" + }, + { + "id": "28341", + "ident": "CNT2", + "type": "seaplane_base", + "name": "Nobel/Sawdust Bay Seaplane Base", + "latitude_deg": "45.401901", + "longitude_deg": "-80.125801", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Carling", + "scheduled_service": "no", + "gps_code": "CNT2", + "local_code": "CNT2" + }, + { + "id": "1343", + "ident": "CNT3", + "type": "small_airport", + "name": "Ogoki Post Airport", + "latitude_deg": "51.6585998535", + "longitude_deg": "-85.9017028809", + "elevation_ft": "594", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ogoki Post", + "scheduled_service": "yes", + "gps_code": "CYKP", + "iata_code": "YOG", + "local_code": "CYKP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ogoki_Post_Airport", + "keywords": "NT3" + }, + { + "id": "1344", + "ident": "CNT4", + "type": "heliport", + "name": "Little Current (Manitoulin Health Centre) Heliport", + "latitude_deg": "45.97809982299805", + "longitude_deg": "-81.92639923095703", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Little Current", + "scheduled_service": "no", + "gps_code": "CNT4", + "local_code": "CNT4", + "keywords": "NT4" + }, + { + "id": "28293", + "ident": "CNT5", + "type": "seaplane_base", + "name": "Lake Muskoka/Dudley Bay Seaplane Base", + "latitude_deg": "45.03329849243164", + "longitude_deg": "-79.5999984741211", + "elevation_ft": "739", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNT5", + "local_code": "CNT5" + }, + { + "id": "1345", + "ident": "CNT6", + "type": "small_airport", + "name": "Elmira Airport", + "latitude_deg": "43.58470153808594", + "longitude_deg": "-80.60310363769531", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Elmira", + "scheduled_service": "no", + "gps_code": "CNT6", + "local_code": "CNT6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elmira_Airport", + "keywords": "NT6" + }, + { + "id": "1346", + "ident": "CNT7", + "type": "small_airport", + "name": "Picton Airport", + "latitude_deg": "43.989200592", + "longitude_deg": "-77.1391983032", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Prince Edward County", + "scheduled_service": "no", + "gps_code": "CNT7", + "local_code": "CNT7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Picton_Airport", + "keywords": "NT7" + }, + { + "id": "1347", + "ident": "CNU3", + "type": "heliport", + "name": "Peterborough (Civic Hospital) Heliport", + "latitude_deg": "44.30059814453125", + "longitude_deg": "-78.3458023071289", + "elevation_ft": "738", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Peterborough", + "scheduled_service": "no", + "gps_code": "CNU3", + "local_code": "CNU3", + "keywords": "NU3" + }, + { + "id": "1348", + "ident": "CNU4", + "type": "small_airport", + "name": "Belleville Aerodrome", + "latitude_deg": "44.1922", + "longitude_deg": "-77.309402", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Belleville", + "scheduled_service": "no", + "gps_code": "CNU4", + "local_code": "CNU4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Belleville_Aerodrome", + "keywords": "NU4" + }, + { + "id": "28263", + "ident": "CNU6", + "type": "seaplane_base", + "name": "Huntsville Seaplane Base", + "latitude_deg": "45.31719970703125", + "longitude_deg": "-79.25779724121094", + "elevation_ft": "931", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNU6", + "local_code": "CNU6" + }, + { + "id": "1349", + "ident": "CNU8", + "type": "small_airport", + "name": "Markham Airport", + "latitude_deg": "43.93579864501953", + "longitude_deg": "-79.26219940185547", + "elevation_ft": "807", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Toronto", + "scheduled_service": "no", + "gps_code": "CNU8", + "local_code": "CNU8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toronto/Markham_Airport", + "keywords": "NU8" + }, + { + "id": "1350", + "ident": "CNV2", + "type": "heliport", + "name": "Inverness (Consolidated Memorial Hospital) Heliport", + "latitude_deg": "46.199371623", + "longitude_deg": "-61.291823387099996", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Inverness", + "scheduled_service": "no", + "gps_code": "CNV2", + "local_code": "CNV2", + "keywords": "NV2" + }, + { + "id": "1351", + "ident": "CNV3", + "type": "heliport", + "name": "New Liskeard (Temiskaming Hospital) Heliport", + "latitude_deg": "47.494479816399995", + "longitude_deg": "-79.69294667240001", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "New Liskeard", + "scheduled_service": "no", + "gps_code": "CNV3", + "local_code": "CNV3", + "keywords": "NV3" + }, + { + "id": "1352", + "ident": "CNV4", + "type": "small_airport", + "name": "Hawkesbury Airport", + "latitude_deg": "45.616699", + "longitude_deg": "-74.650002", + "elevation_ft": "167", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Hawkesbury", + "scheduled_service": "no", + "gps_code": "CNV4", + "local_code": "CNV4", + "home_link": "https://montrealsoaring.ca/wp/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hawkesbury_Airport", + "keywords": "NV4" + }, + { + "id": "28216", + "ident": "CNV5", + "type": "seaplane_base", + "name": "Elk Lake Seaplane Base", + "latitude_deg": "47.727907674799994", + "longitude_deg": "-80.3215491772", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNV5", + "local_code": "CNV5", + "keywords": "nv5" + }, + { + "id": "28347", + "ident": "CNV6", + "type": "seaplane_base", + "name": "Orillia/Lake St John Seaplane Base", + "latitude_deg": "44.68330001831055", + "longitude_deg": "-79.31670379638672", + "elevation_ft": "718", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNV6", + "local_code": "CNV6" + }, + { + "id": "28409", + "ident": "CNV7", + "type": "seaplane_base", + "name": "Sault Ste. Marie/Partridge Point Seaplane Base", + "latitude_deg": "46.520802", + "longitude_deg": "-84.240799", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Sault Ste. Marie", + "scheduled_service": "no", + "gps_code": "CNV7", + "local_code": "CNV7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sault_Ste._Marie/Partridge_Point_Water_Aerodrome", + "keywords": "NV7" + }, + { + "id": "1353", + "ident": "CNV8", + "type": "small_airport", + "name": "Edenvale Aerodrome", + "latitude_deg": "44.441101", + "longitude_deg": "-79.962799", + "elevation_ft": "718", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Edenvale", + "scheduled_service": "no", + "gps_code": "CNV8", + "local_code": "CNV8", + "home_link": "http://www.edenflight.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Edenvale_Airport", + "keywords": "NV8" + }, + { + "id": "306924", + "ident": "CNV9", + "type": "small_airport", + "name": "Québec / Neuville Airport", + "latitude_deg": "46.7214759694", + "longitude_deg": "-71.5854978561", + "elevation_ft": "314", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Neuville, QC", + "scheduled_service": "no", + "gps_code": "CNV9", + "local_code": "CNV9", + "home_link": "http://www.aeroportdeneuville.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Neuville_Airport", + "keywords": "Neuville, Québec" + }, + { + "id": "1354", + "ident": "CNW2", + "type": "closed", + "name": "Windermere Airport", + "latitude_deg": "45.162498", + "longitude_deg": "-79.535302", + "elevation_ft": "746", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Windermere", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Windermere_Airport", + "keywords": "NW2, CNW2" + }, + { + "id": "1355", + "ident": "CNW3", + "type": "small_airport", + "name": "Bancroft Airport", + "latitude_deg": "45.07310104370117", + "longitude_deg": "-77.88059997558594", + "elevation_ft": "1085", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Bancroft", + "scheduled_service": "no", + "gps_code": "CNW3", + "local_code": "CNW3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bancroft_Airport", + "keywords": "NW3, Jack Brown" + }, + { + "id": "1356", + "ident": "CNW4", + "type": "heliport", + "name": "Mindemoya (Hospital) Heliport", + "latitude_deg": "45.73889923095703", + "longitude_deg": "-82.16670227050781", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Mindemoya", + "scheduled_service": "no", + "gps_code": "CNW4", + "local_code": "CNW4", + "keywords": "NW4" + }, + { + "id": "1357", + "ident": "CNW8", + "type": "heliport", + "name": "Toronto (Hospital For Sick Children) Heliport", + "latitude_deg": "43.6568464507", + "longitude_deg": "-79.3878802657", + "elevation_ft": "498", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Toronto", + "scheduled_service": "no", + "gps_code": "CNW8", + "local_code": "CNW8", + "keywords": "NW8" + }, + { + "id": "1358", + "ident": "CNW9", + "type": "heliport", + "name": "New Westminster (Royal Columbian Hospital) Heliport", + "latitude_deg": "49.226671", + "longitude_deg": "-122.892291", + "elevation_ft": "124", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "New Westminster", + "scheduled_service": "no", + "gps_code": "CNW9", + "local_code": "CNW9", + "keywords": "NW9" + }, + { + "id": "1359", + "ident": "CNX3", + "type": "small_airport", + "name": "Carey Lake Airport", + "latitude_deg": "49.7442", + "longitude_deg": "-84.034", + "elevation_ft": "837", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Carey Lake", + "scheduled_service": "no", + "gps_code": "CNX3", + "local_code": "CNX3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carey_Lake_Airport", + "keywords": "NX3" + }, + { + "id": "28382", + "ident": "CNX7", + "type": "seaplane_base", + "name": "Port Stanton/Sparrow Lake Seaplane Base", + "latitude_deg": "44.79999923706055", + "longitude_deg": "-79.41670227050781", + "elevation_ft": "698", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNX7", + "local_code": "CNX7" + }, + { + "id": "1360", + "ident": "CNX8", + "type": "small_airport", + "name": "Nixon Airport", + "latitude_deg": "42.847328", + "longitude_deg": "-80.39521", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Simcoe", + "scheduled_service": "no", + "gps_code": "CNX8", + "local_code": "CNX8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nixon_Airport", + "keywords": "NX8" + }, + { + "id": "1361", + "ident": "CNY3", + "type": "small_airport", + "name": "Collingwood Airport", + "latitude_deg": "44.4491996765", + "longitude_deg": "-80.1583023071", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Collingwood", + "scheduled_service": "no", + "gps_code": "CNY3", + "local_code": "CNY3", + "home_link": "http://www.collingwoodairport.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Collingwood_Airport", + "keywords": "NY3" + }, + { + "id": "1362", + "ident": "CNY4", + "type": "small_airport", + "name": "Alliston Airport", + "latitude_deg": "44.18330001831055", + "longitude_deg": "-79.83709716796875", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Alliston", + "scheduled_service": "no", + "gps_code": "CNY4", + "local_code": "CNY4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alliston_Airport", + "keywords": "NY4" + }, + { + "id": "28220", + "ident": "CNY5", + "type": "seaplane_base", + "name": "Five Mile Lake Seaplane Base", + "latitude_deg": "47.56669998168945", + "longitude_deg": "-83.2166976928711", + "elevation_ft": "1475", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNY5", + "local_code": "CNY5" + }, + { + "id": "1363", + "ident": "CNY8", + "type": "heliport", + "name": "Toronto (Sunnybrook Medical Centre) Heliport", + "latitude_deg": "43.7212999835", + "longitude_deg": "-79.37076509", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Toronto", + "scheduled_service": "no", + "gps_code": "CNY8", + "local_code": "CNY8", + "keywords": "NY8" + }, + { + "id": "46540", + "ident": "CNZ2", + "type": "heliport", + "name": "Anzac (Long Lake) Heliport", + "latitude_deg": "56.4243222", + "longitude_deg": "-110.964489", + "elevation_ft": "1612", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "gps_code": "CNZ2" + }, + { + "id": "1365", + "ident": "CNZ4", + "type": "small_airport", + "name": "Barry's Bay / Madawaska Valley Airpark", + "latitude_deg": "45.5047227536", + "longitude_deg": "-77.64409303670001", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Barry's Bay", + "scheduled_service": "no", + "gps_code": "CNZ4", + "local_code": "CNZ4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Madawaska_Valley_Airpark", + "keywords": "NZ4" + }, + { + "id": "1366", + "ident": "CNZ6", + "type": "heliport", + "name": "Georgetown (Georgetown & District Hospital) Heliport", + "latitude_deg": "43.64440155029297", + "longitude_deg": "-79.93440246582031", + "elevation_ft": "878", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Georgetown", + "scheduled_service": "no", + "gps_code": "CNZ6", + "local_code": "CNZ6", + "keywords": "NZ6" + }, + { + "id": "1367", + "ident": "CNZ7", + "type": "heliport", + "name": "Hanover (District Hospital) Heliport", + "latitude_deg": "44.14080047607422", + "longitude_deg": "-81.0291976928711", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Hanover", + "scheduled_service": "no", + "gps_code": "CNZ7", + "local_code": "CNZ7", + "keywords": "NZ7" + }, + { + "id": "1368", + "ident": "CNZ8", + "type": "small_airport", + "name": "Grimsby Airpark", + "latitude_deg": "43.15999984741211", + "longitude_deg": "-79.59919738769531", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Grimsby", + "scheduled_service": "no", + "gps_code": "CNZ8", + "local_code": "CNZ8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grimsby_Air_Park", + "keywords": "NZ8" + }, + { + "id": "28304", + "ident": "CNZ9", + "type": "seaplane_base", + "name": "Little Current Seaplane Base", + "latitude_deg": "45.9838981628418", + "longitude_deg": "-81.95860290527344", + "elevation_ft": "581", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CNZ9", + "local_code": "CNZ9" + }, + { + "id": "43979", + "ident": "CO-0001", + "type": "small_airport", + "name": "Punta Espada Airport", + "latitude_deg": "12.075256", + "longitude_deg": "-71.125725", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-LAG", + "municipality": "Uribia", + "scheduled_service": "no" + }, + { + "id": "45103", + "ident": "CO-0002", + "type": "heliport", + "name": "Banco De La Republica Heliport", + "latitude_deg": "1.672222", + "longitude_deg": "-78.142222", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-NAR", + "municipality": "Barbacoas", + "scheduled_service": "no", + "local_code": "BAS" + }, + { + "id": "45104", + "ident": "CO-0003", + "type": "heliport", + "name": "Banco De La Republica Heliport", + "latitude_deg": "1.196944", + "longitude_deg": "-77.28", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-NAR", + "municipality": "Pasto", + "scheduled_service": "no", + "local_code": "BNC" + }, + { + "id": "45105", + "ident": "CO-0004", + "type": "heliport", + "name": "Banco De La Republica Heliport", + "latitude_deg": "5.6975", + "longitude_deg": "-76.665", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CHO", + "municipality": "Quibdo", + "scheduled_service": "no", + "local_code": "BND" + }, + { + "id": "45106", + "ident": "CO-0005", + "type": "heliport", + "name": "Banco De La Republica Heliport", + "latitude_deg": "5.1", + "longitude_deg": "-76.649444", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CHO", + "municipality": "Condoto", + "scheduled_service": "no", + "local_code": "1BA" + }, + { + "id": "45107", + "ident": "CO-0006", + "type": "heliport", + "name": "Centro Administrativo Municipal Heliport", + "latitude_deg": "3.456389", + "longitude_deg": "-76.536944", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Cali", + "scheduled_service": "no", + "local_code": "CEA" + }, + { + "id": "45108", + "ident": "CO-0007", + "type": "heliport", + "name": "Banco De Occidente Heliport", + "latitude_deg": "3.451111", + "longitude_deg": "-76.535556", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Cali", + "scheduled_service": "no", + "local_code": "BAT" + }, + { + "id": "45109", + "ident": "CO-0008", + "type": "heliport", + "name": "Banco De La Republica Heliport", + "latitude_deg": "3.634167", + "longitude_deg": "-76.408889", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Cali", + "scheduled_service": "no", + "local_code": "BNE" + }, + { + "id": "45110", + "ident": "CO-0009", + "type": "heliport", + "name": "Isa Palmira Heliport", + "latitude_deg": "3.537778", + "longitude_deg": "-76.401111", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Palmira", + "scheduled_service": "no" + }, + { + "id": "45111", + "ident": "CO-0010", + "type": "heliport", + "name": "El Pailon Heliport", + "latitude_deg": "3.410556", + "longitude_deg": "-76.350556", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Candelaria", + "scheduled_service": "no" + }, + { + "id": "45112", + "ident": "CO-0011", + "type": "heliport", + "name": "Helivalle Heliport", + "latitude_deg": "3.558889", + "longitude_deg": "-76.306389", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Palmira", + "scheduled_service": "no", + "local_code": "HEA" + }, + { + "id": "45113", + "ident": "CO-0012", + "type": "heliport", + "name": "Cofa Buga Heliport", + "latitude_deg": "3.895556", + "longitude_deg": "-76.305833", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Buga", + "scheduled_service": "no", + "local_code": "COB" + }, + { + "id": "45114", + "ident": "CO-0013", + "type": "heliport", + "name": "Cofa-Palmira Heliport", + "latitude_deg": "3.514722", + "longitude_deg": "-76.305556", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Palmira", + "scheduled_service": "no", + "local_code": "COA" + }, + { + "id": "45115", + "ident": "CO-0014", + "type": "heliport", + "name": "Cofa Roldanillo Heliport", + "latitude_deg": "4.413611", + "longitude_deg": "-76.143333", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Roldanillo", + "scheduled_service": "no", + "local_code": "ICR" + }, + { + "id": "45116", + "ident": "CO-0015", + "type": "heliport", + "name": "Cofa Montenegro Heliport", + "latitude_deg": "4.508333", + "longitude_deg": "-75.786389", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-QUI", + "municipality": "Montenegro", + "scheduled_service": "no", + "local_code": "1CO" + }, + { + "id": "45117", + "ident": "CO-0016", + "type": "heliport", + "name": "Baru Heliport", + "latitude_deg": "10.210278", + "longitude_deg": "-75.616667", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOL", + "municipality": "Cartagena", + "scheduled_service": "no", + "local_code": "BAU" + }, + { + "id": "45118", + "ident": "CO-0017", + "type": "heliport", + "name": "Fundicion Gutierrez Heliport", + "latitude_deg": "6.25", + "longitude_deg": "-75.578611", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Medellin", + "scheduled_service": "no", + "local_code": "FUD" + }, + { + "id": "45119", + "ident": "CO-0018", + "type": "heliport", + "name": "Fundicion Escobar Heliport", + "latitude_deg": "6.246944", + "longitude_deg": "-75.576389", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Medellin", + "scheduled_service": "no", + "local_code": "FUI" + }, + { + "id": "45120", + "ident": "CO-0019", + "type": "heliport", + "name": "Palacio Municipal Heliport", + "latitude_deg": "6.591389", + "longitude_deg": "-75.576389", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Medellin", + "scheduled_service": "no", + "local_code": "PAL" + }, + { + "id": "45121", + "ident": "CO-0020", + "type": "heliport", + "name": "Banco De La Republica Heliport", + "latitude_deg": "6.252778", + "longitude_deg": "-75.573889", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Medellín", + "scheduled_service": "no", + "local_code": "BAC" + }, + { + "id": "45122", + "ident": "CO-0021", + "type": "heliport", + "name": "Hospital General De Medellin Heliport", + "latitude_deg": "6.235", + "longitude_deg": "-75.572778", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Medellin", + "scheduled_service": "no", + "local_code": "HOY" + }, + { + "id": "45123", + "ident": "CO-0022", + "type": "heliport", + "name": "Isa Medellin Heliport", + "latitude_deg": "6.200556", + "longitude_deg": "-75.572222", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Medellin", + "scheduled_service": "no", + "local_code": "ISA" + }, + { + "id": "45124", + "ident": "CO-0023", + "type": "heliport", + "name": "Banco Popular Heliport", + "latitude_deg": "6.252222", + "longitude_deg": "-75.570833", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Medellín", + "scheduled_service": "no", + "local_code": "BAP" + }, + { + "id": "45125", + "ident": "CO-0024", + "type": "heliport", + "name": "Banco Cafetero Heliport", + "latitude_deg": "5.070278", + "longitude_deg": "-75.528889", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAL", + "municipality": "Manizales", + "scheduled_service": "no", + "local_code": "BAA" + }, + { + "id": "45126", + "ident": "CO-0025", + "type": "heliport", + "name": "Hospital De Caldas Heliport", + "latitude_deg": "5.0625", + "longitude_deg": "-75.500833", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAL", + "municipality": "Manizales", + "scheduled_service": "no", + "local_code": "HOA" + }, + { + "id": "45127", + "ident": "CO-0026", + "type": "heliport", + "name": "Beneficencia Del Tolima Heliport", + "latitude_deg": "4.443889", + "longitude_deg": "-75.241667", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Ibagué", + "scheduled_service": "no", + "local_code": "BEE" + }, + { + "id": "45128", + "ident": "CO-0027", + "type": "heliport", + "name": "Banco De La Republica Heliport", + "latitude_deg": "7.989722", + "longitude_deg": "-75.197778", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Caucasia", + "scheduled_service": "no", + "local_code": "1BD" + }, + { + "id": "45129", + "ident": "CO-0028", + "type": "heliport", + "name": "Banco De La Republica Heliport", + "latitude_deg": "4.299444", + "longitude_deg": "-74.810833", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Girardot", + "scheduled_service": "no", + "local_code": "BAO" + }, + { + "id": "45130", + "ident": "CO-0029", + "type": "heliport", + "name": "Banco De La Republica Heliport", + "latitude_deg": "10.989444", + "longitude_deg": "-74.789167", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ATL", + "municipality": "Barranquilla", + "scheduled_service": "no", + "local_code": "BAE" + }, + { + "id": "45131", + "ident": "CO-0030", + "type": "heliport", + "name": "Drummond Heliport", + "latitude_deg": "11.059722", + "longitude_deg": "-74.211111", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MAG", + "municipality": "Cienaga", + "scheduled_service": "no", + "local_code": "DRU" + }, + { + "id": "45132", + "ident": "CO-0031", + "type": "heliport", + "name": "Helicentro Heliport", + "latitude_deg": "4.746389", + "longitude_deg": "-74.146667", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Cota", + "scheduled_service": "no", + "local_code": "HEI" + }, + { + "id": "45133", + "ident": "CO-0032", + "type": "heliport", + "name": "Hospital De Engativa Heliport", + "latitude_deg": "4.710556", + "longitude_deg": "-74.11", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Bogota", + "scheduled_service": "no", + "local_code": "HOS" + }, + { + "id": "45134", + "ident": "CO-0033", + "type": "heliport", + "name": "Camara De Comercio De Bogota Heliport", + "latitude_deg": "4.657222", + "longitude_deg": "-74.106944", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Bogotá", + "scheduled_service": "no", + "local_code": "1CA" + }, + { + "id": "45135", + "ident": "CO-0034", + "type": "heliport", + "name": "Fiscalia General De La Nacion Heliport", + "latitude_deg": "4.641944", + "longitude_deg": "-74.103333", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Bogota", + "scheduled_service": "no", + "local_code": "FIS" + }, + { + "id": "45136", + "ident": "CO-0035", + "type": "heliport", + "name": "Caja De Vivienda Militar Heliport", + "latitude_deg": "4.646389", + "longitude_deg": "-74.0975", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Bogotá", + "scheduled_service": "no" + }, + { + "id": "45137", + "ident": "CO-0036", + "type": "heliport", + "name": "Beneficiencia De Cundinamarca Heliport", + "latitude_deg": "4.638611", + "longitude_deg": "-74.096667", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Bogotá", + "scheduled_service": "no" + }, + { + "id": "45138", + "ident": "CO-0037", + "type": "heliport", + "name": "Centro Internacional Tequendama Heliport", + "latitude_deg": "4.617222", + "longitude_deg": "-74.088333", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Bogotá", + "scheduled_service": "no", + "local_code": "CEN" + }, + { + "id": "45139", + "ident": "CO-0038", + "type": "heliport", + "name": "Banco De Occidente Heliport", + "latitude_deg": "4.617778", + "longitude_deg": "-74.087222", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Bogotá", + "scheduled_service": "no", + "local_code": "BAI" + }, + { + "id": "45140", + "ident": "CO-0039", + "type": "heliport", + "name": "Proma Heliport", + "latitude_deg": "4.728056", + "longitude_deg": "-74.084444", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Bogota", + "scheduled_service": "no", + "iata_code": "PRM" + }, + { + "id": "45141", + "ident": "CO-0040", + "type": "heliport", + "name": "Caja De Vivienda Militar Heliport", + "latitude_deg": "4.646389", + "longitude_deg": "-74.083333", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Medellín", + "scheduled_service": "no", + "local_code": "CAJ" + }, + { + "id": "45142", + "ident": "CO-0041", + "type": "heliport", + "name": "Parque Central Bavaria Heliport", + "latitude_deg": "4.620278", + "longitude_deg": "-74.073333", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Bogota", + "scheduled_service": "no", + "local_code": "IPA" + }, + { + "id": "45143", + "ident": "CO-0042", + "type": "heliport", + "name": "Clinica Shaio Heliport", + "latitude_deg": "4.700833", + "longitude_deg": "-74.0675", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Bogotá", + "scheduled_service": "no", + "local_code": "CLI" + }, + { + "id": "45144", + "ident": "CO-0043", + "type": "heliport", + "name": "Centro Comercial Andino Heliport", + "latitude_deg": "4.669167", + "longitude_deg": "-74.056111", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Bogotá", + "scheduled_service": "no", + "local_code": "CER" + }, + { + "id": "45145", + "ident": "CO-0044", + "type": "heliport", + "name": "I.N.G. Barings Heliport", + "latitude_deg": "4.660556", + "longitude_deg": "-74.054444", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Bogota", + "scheduled_service": "no", + "local_code": "ING" + }, + { + "id": "45146", + "ident": "CO-0045", + "type": "heliport", + "name": "Bavaria Heliport", + "latitude_deg": "4.677778", + "longitude_deg": "-74.047222", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Bogotá", + "scheduled_service": "no", + "local_code": "BAV" + }, + { + "id": "45147", + "ident": "CO-0046", + "type": "heliport", + "name": "Apotema Heliport", + "latitude_deg": "4.693333", + "longitude_deg": "-74.039444", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Bogotá", + "scheduled_service": "no", + "local_code": "APT" + }, + { + "id": "45148", + "ident": "CO-0047", + "type": "heliport", + "name": "Helitaxi Heliport", + "latitude_deg": "4.625833", + "longitude_deg": "-73.875556", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Bogota", + "scheduled_service": "no" + }, + { + "id": "45149", + "ident": "CO-0048", + "type": "heliport", + "name": "Ecopetrol Heliport", + "latitude_deg": "7.0775", + "longitude_deg": "-73.865", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Barrancabermeja", + "scheduled_service": "no", + "local_code": "ECO" + }, + { + "id": "45150", + "ident": "CO-0049", + "type": "heliport", + "name": "Isa Giron Heliport", + "latitude_deg": "7.058333", + "longitude_deg": "-73.129722", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Giron", + "scheduled_service": "no" + }, + { + "id": "45151", + "ident": "CO-0050", + "type": "heliport", + "name": "Estacion De Bomberos Heliport", + "latitude_deg": "7.113611", + "longitude_deg": "-73.129167", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Bucaramanga", + "scheduled_service": "no", + "local_code": "EST" + }, + { + "id": "45152", + "ident": "CO-0051", + "type": "heliport", + "name": "Fundacion Oftalmologica De Santander Heliport", + "latitude_deg": "7.074722", + "longitude_deg": "-73.115278", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Bucaramanga", + "scheduled_service": "no", + "local_code": "FUA" + }, + { + "id": "316785", + "ident": "CO-0052", + "type": "small_airport", + "name": "Loreto North Airstrip", + "latitude_deg": "-3.524", + "longitude_deg": "-70.328", + "elevation_ft": "505", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-AMA", + "scheduled_service": "no" + }, + { + "id": "316786", + "ident": "CO-0053", + "type": "closed", + "name": "Nugent Airstrip", + "latitude_deg": "-3.863", + "longitude_deg": "-70.04", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "CO", + "iso_region": "CO-AMA", + "scheduled_service": "no" + }, + { + "id": "317261", + "ident": "CO-0054", + "type": "small_airport", + "name": "Ríohacha Highway Strip", + "latitude_deg": "11.4988", + "longitude_deg": "-72.9892", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-GUV", + "municipality": "Ríohacha", + "scheduled_service": "no" + }, + { + "id": "317268", + "ident": "CO-0055", + "type": "small_airport", + "name": "Mondo Nuevo Airport", + "latitude_deg": "8.3909", + "longitude_deg": "-75.7911", + "elevation_ft": "108", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-COR", + "municipality": "Mondo Nuevo", + "scheduled_service": "no" + }, + { + "id": "317277", + "ident": "CO-0056", + "type": "small_airport", + "name": "Patetal Airport", + "latitude_deg": "8.231858", + "longitude_deg": "-75.058043", + "elevation_ft": "145", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-COR", + "municipality": "Ayapel", + "scheduled_service": "no" + }, + { + "id": "323816", + "ident": "CO-0057", + "type": "small_airport", + "name": "Taraira Airstrip", + "latitude_deg": "-0.56784", + "longitude_deg": "-69.638809", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Taraira", + "scheduled_service": "no" + }, + { + "id": "337006", + "ident": "CO-0058", + "type": "small_airport", + "name": "Airport Hacienda Nápoles", + "latitude_deg": "5.923502", + "longitude_deg": "-74.726935", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Puerto Triunfo", + "scheduled_service": "no", + "home_link": "http://www.haciendanapoles.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hacienda_N%C3%A1poles" + }, + { + "id": "338088", + "ident": "CO-0059", + "type": "small_airport", + "name": "La Venturosa West Airstrip", + "latitude_deg": "6.159436", + "longitude_deg": "-69.032764", + "elevation_ft": "250", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "scheduled_service": "no" + }, + { + "id": "348508", + "ident": "CO-0060", + "type": "heliport", + "name": "Isla del Encanto Heliport", + "latitude_deg": "10.13245", + "longitude_deg": "-75.68624", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOL", + "municipality": "Barú", + "scheduled_service": "no" + }, + { + "id": "348510", + "ident": "CO-0061", + "type": "small_airport", + "name": "Puerto Inglés Airport", + "latitude_deg": "11.98163", + "longitude_deg": "-71.19072", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-LAG", + "municipality": "Uribia", + "scheduled_service": "no" + }, + { + "id": "348747", + "ident": "CO-0062", + "type": "small_airport", + "name": "Calamar Airport", + "latitude_deg": "7.62224", + "longitude_deg": "-76.64802", + "elevation_ft": "146", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Chigorodó", + "scheduled_service": "no" + }, + { + "id": "351498", + "ident": "CO-0063", + "type": "small_airport", + "name": "Caranacoa Airport", + "latitude_deg": "2.43252", + "longitude_deg": "-68.92068", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-GUA", + "municipality": "Caranacoa", + "scheduled_service": "no" + }, + { + "id": "351499", + "ident": "CO-0064", + "type": "small_airport", + "name": "Caño Colorado Airport", + "latitude_deg": "2.27219", + "longitude_deg": "-68.35831", + "elevation_ft": "294", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-GUA", + "municipality": "Caño Colorado", + "scheduled_service": "no" + }, + { + "id": "353304", + "ident": "CO-0065", + "type": "small_airport", + "name": "Cejal Airport", + "latitude_deg": "3.99822", + "longitude_deg": "-68.33819", + "elevation_ft": "322", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "Cejal", + "scheduled_service": "no" + }, + { + "id": "353305", + "ident": "CO-0066", + "type": "small_airport", + "name": "Arabia Airport", + "latitude_deg": "3.60726", + "longitude_deg": "-69.046761", + "elevation_ft": "486", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-GUA", + "municipality": "Barranco Minas", + "scheduled_service": "no" + }, + { + "id": "353407", + "ident": "CO-0067", + "type": "small_airport", + "name": "La Esperanza Airport", + "latitude_deg": "3.31229", + "longitude_deg": "-73.36607", + "elevation_ft": "804", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto Lleras", + "scheduled_service": "no" + }, + { + "id": "353409", + "ident": "CO-0068", + "type": "small_airport", + "name": "San Martín Airport", + "latitude_deg": "3.70239", + "longitude_deg": "-73.68825", + "elevation_ft": "1378", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "San Martín", + "scheduled_service": "no" + }, + { + "id": "353410", + "ident": "CO-0069", + "type": "closed", + "name": "Techo International Airport", + "latitude_deg": "4.62674", + "longitude_deg": "-74.1474", + "elevation_ft": "8390", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Bogotá", + "scheduled_service": "no" + }, + { + "id": "353411", + "ident": "CO-0070", + "type": "small_airport", + "name": "Cocosolo Airport", + "latitude_deg": "10.35052", + "longitude_deg": "-75.50218", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOL", + "municipality": "Cartagena de Indias", + "scheduled_service": "no" + }, + { + "id": "353412", + "ident": "CO-0071", + "type": "heliport", + "name": "Cartagena Naval Heliport", + "latitude_deg": "10.41375", + "longitude_deg": "-75.54756", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOL", + "municipality": "Cartagena de Indias", + "scheduled_service": "no" + }, + { + "id": "353413", + "ident": "CO-0072", + "type": "heliport", + "name": "Carlos Haime University Hospital Helipad", + "latitude_deg": "10.5084", + "longitude_deg": "-75.46766", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOL", + "municipality": "Serena del Mar", + "scheduled_service": "no" + }, + { + "id": "353414", + "ident": "CO-0073", + "type": "closed", + "name": "Gómez Niño Airport", + "latitude_deg": "7.10433", + "longitude_deg": "-73.12403", + "elevation_ft": "3058", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Bucaramanga", + "scheduled_service": "no" + }, + { + "id": "355177", + "ident": "CO-0074", + "type": "small_airport", + "name": "Rocoso Airstrip", + "latitude_deg": "1.766012", + "longitude_deg": "-71.290267", + "continent": "NA", + "iso_country": "CO", + "iso_region": "CO-GUV", + "municipality": "Rocoso", + "scheduled_service": "no", + "keywords": "SXOS" + }, + { + "id": "355178", + "ident": "CO-0075", + "type": "small_airport", + "name": "Papunahua River 3 Airstrip", + "latitude_deg": "1.726449", + "longitude_deg": "-71.22671", + "continent": "NA", + "iso_country": "CO", + "iso_region": "CO-GUV", + "municipality": "Rocoso", + "scheduled_service": "no" + }, + { + "id": "355179", + "ident": "CO-0076", + "type": "closed", + "name": "Papunahua River 2 Airstrip", + "latitude_deg": "1.689703", + "longitude_deg": "-71.114314", + "continent": "NA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Papunahua", + "scheduled_service": "no", + "keywords": "SXOP" + }, + { + "id": "40588", + "ident": "CO-0487", + "type": "closed", + "name": "Piedra Ñi Airport", + "latitude_deg": "0.108611", + "longitude_deg": "-70.326944", + "elevation_ft": "583", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no" + }, + { + "id": "30652", + "ident": "CO-ARQ", + "type": "small_airport", + "name": "El Troncal Airport", + "latitude_deg": "7.02106", + "longitude_deg": "-71.388901", + "elevation_ft": "512", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ARA", + "municipality": "Arauquita", + "scheduled_service": "no", + "gps_code": "SKAT", + "iata_code": "ARQ" + }, + { + "id": "41597", + "ident": "CO-LCR", + "type": "small_airport", + "name": "La Chorrera Airport", + "latitude_deg": "-0.733333", + "longitude_deg": "-73.01667", + "elevation_ft": "709", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-AMA", + "municipality": "La Chorrera", + "scheduled_service": "yes", + "iata_code": "LCR", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Chorrera_Airport" + }, + { + "id": "32342", + "ident": "CO-SNT", + "type": "small_airport", + "name": "Las Cruces Airport", + "latitude_deg": "7.38322", + "longitude_deg": "-73.505402", + "elevation_ft": "440", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Sabana De Torres", + "scheduled_service": "no", + "iata_code": "SNT" + }, + { + "id": "35319", + "ident": "CO-TCD", + "type": "small_airport", + "name": "Tarapacá Airport", + "latitude_deg": "-2.894722", + "longitude_deg": "-69.747222", + "elevation_ft": "253", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-AMA", + "municipality": "Tarapacá", + "scheduled_service": "yes", + "gps_code": "SKRA", + "iata_code": "TCD" + }, + { + "id": "16854", + "ident": "CO00", + "type": "small_airport", + "name": "Flagler Aerial Spraying Inc Airport", + "latitude_deg": "39.279998779296875", + "longitude_deg": "-103.06700134277344", + "elevation_ft": "4945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Flagler", + "scheduled_service": "no", + "gps_code": "CO00", + "local_code": "CO00" + }, + { + "id": "16855", + "ident": "CO01", + "type": "heliport", + "name": "General Mail Facility Heliport", + "latitude_deg": "39.792621", + "longitude_deg": "-104.899104", + "elevation_ft": "5223", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "gps_code": "CO01", + "local_code": "CO01" + }, + { + "id": "16856", + "ident": "CO02", + "type": "small_airport", + "name": "Harrington Ranch Airport", + "latitude_deg": "39.62969970703125", + "longitude_deg": "-104.51899719238281", + "elevation_ft": "5975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Bennet", + "scheduled_service": "no", + "gps_code": "CO02", + "local_code": "CO02" + }, + { + "id": "16857", + "ident": "CO03", + "type": "small_airport", + "name": "Aspen Gliderport", + "latitude_deg": "39.2599983215332", + "longitude_deg": "-106.91200256347656", + "elevation_ft": "8440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Aspen", + "scheduled_service": "no", + "gps_code": "CO03", + "local_code": "CO03" + }, + { + "id": "16858", + "ident": "CO04", + "type": "heliport", + "name": "St Anthony Hospital Central Heliport", + "latitude_deg": "39.74250030517578", + "longitude_deg": "-105.0469970703125", + "elevation_ft": "5275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "gps_code": "CO04", + "local_code": "CO04" + }, + { + "id": "16859", + "ident": "CO05", + "type": "heliport", + "name": "Aurora Presbyterian Hospital Heliport", + "latitude_deg": "39.72639846801758", + "longitude_deg": "-104.8270034790039", + "elevation_ft": "5415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Aurora", + "scheduled_service": "no", + "gps_code": "CO05", + "local_code": "CO05" + }, + { + "id": "16860", + "ident": "CO06", + "type": "small_airport", + "name": "Wirth Field", + "latitude_deg": "40.51359939575195", + "longitude_deg": "-103.91200256347656", + "elevation_ft": "4881", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "New Raymer", + "scheduled_service": "no", + "gps_code": "CO06", + "local_code": "CO06" + }, + { + "id": "16861", + "ident": "CO07", + "type": "small_airport", + "name": "Athanasiou Valley Airport", + "latitude_deg": "39.85419845581055", + "longitude_deg": "-105.47100067138672", + "elevation_ft": "8900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Blackhawk", + "scheduled_service": "no", + "gps_code": "CO07", + "local_code": "CO07" + }, + { + "id": "16862", + "ident": "CO08", + "type": "closed", + "name": "Public Service of Colorado Arvada Heliport", + "latitude_deg": "39.8092", + "longitude_deg": "-105.047997", + "elevation_ft": "5290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Arvada", + "scheduled_service": "no", + "keywords": "CO08" + }, + { + "id": "16863", + "ident": "CO09", + "type": "small_airport", + "name": "Youtsey Airport", + "latitude_deg": "38.266700744628906", + "longitude_deg": "-104.28399658203125", + "elevation_ft": "4500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Boone", + "scheduled_service": "no", + "gps_code": "CO09", + "local_code": "CO09" + }, + { + "id": "16864", + "ident": "CO10", + "type": "small_airport", + "name": "Lemons Private Strip", + "latitude_deg": "39.99470138549805", + "longitude_deg": "-105.2239990234375", + "elevation_ft": "5230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Boulder", + "scheduled_service": "no", + "gps_code": "CO10", + "local_code": "CO10" + }, + { + "id": "16865", + "ident": "CO11", + "type": "small_airport", + "name": "Granite Mountain Lodge Airport", + "latitude_deg": "38.416099548339844", + "longitude_deg": "-106.05799865722656", + "elevation_ft": "9000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Salida", + "scheduled_service": "no", + "gps_code": "CO11", + "local_code": "CO11" + }, + { + "id": "16866", + "ident": "CO12", + "type": "small_airport", + "name": "Brighton Van-Aire Estates Airport", + "latitude_deg": "39.98352", + "longitude_deg": "-104.70464", + "elevation_ft": "5055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Brighton", + "scheduled_service": "no", + "gps_code": "CO12", + "local_code": "CO12" + }, + { + "id": "16867", + "ident": "CO13", + "type": "closed", + "name": "Heckendorf Ranches Airport", + "latitude_deg": "39.963299", + "longitude_deg": "-104.749003", + "elevation_ft": "5060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Brighton", + "scheduled_service": "no", + "keywords": "CO13" + }, + { + "id": "16868", + "ident": "CO14", + "type": "closed", + "name": "Reasoner Airport", + "latitude_deg": "39.916698", + "longitude_deg": "-104.805", + "elevation_ft": "5100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Brighton", + "scheduled_service": "no", + "keywords": "CO14" + }, + { + "id": "16869", + "ident": "CO15", + "type": "small_airport", + "name": "Kelly Air Park", + "latitude_deg": "39.2247009277", + "longitude_deg": "-104.63999939", + "elevation_ft": "7040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Elbert", + "scheduled_service": "no", + "gps_code": "CO15", + "local_code": "CO15" + }, + { + "id": "16870", + "ident": "CO16", + "type": "heliport", + "name": "Arapahoe Medical Park/Littleton Hospital Heliport", + "latitude_deg": "39.57640075683594", + "longitude_deg": "-104.98699951171875", + "elevation_ft": "5581", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Littleton", + "scheduled_service": "no", + "gps_code": "CO16", + "local_code": "CO16" + }, + { + "id": "16871", + "ident": "CO17", + "type": "small_airport", + "name": "Sky Haven Airport", + "latitude_deg": "39.713600158691406", + "longitude_deg": "-104.19400024414062", + "elevation_ft": "5215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Byers", + "scheduled_service": "no", + "gps_code": "CO17", + "local_code": "CO17" + }, + { + "id": "16872", + "ident": "CO18", + "type": "small_airport", + "name": "Chaparral Airport", + "latitude_deg": "39.4640007019043", + "longitude_deg": "-104.25800323486328", + "elevation_ft": "5930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Kiowa", + "scheduled_service": "no", + "gps_code": "CO18", + "local_code": "CO18" + }, + { + "id": "16873", + "ident": "CO19", + "type": "small_airport", + "name": "Tezak Airport", + "latitude_deg": "38.43568", + "longitude_deg": "-105.26028", + "elevation_ft": "6280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Canon City", + "scheduled_service": "no", + "gps_code": "CO19", + "local_code": "CO19" + }, + { + "id": "16874", + "ident": "CO20", + "type": "small_airport", + "name": "Flying W Ranch Airport", + "latitude_deg": "38.86249923706055", + "longitude_deg": "-107.82099914550781", + "elevation_ft": "6885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Cedaredge", + "scheduled_service": "no", + "gps_code": "CO20", + "local_code": "CO20" + }, + { + "id": "16875", + "ident": "CO21", + "type": "heliport", + "name": "Craig Heliport", + "latitude_deg": "40.524200439453125", + "longitude_deg": "-107.55599975585938", + "elevation_ft": "6500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Craig", + "scheduled_service": "no", + "gps_code": "CO21", + "local_code": "CO21" + }, + { + "id": "43038", + "ident": "CO22", + "type": "small_airport", + "name": "Hildebrandt Airport", + "latitude_deg": "39.279623", + "longitude_deg": "-102.47474", + "elevation_ft": "4300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Bethune", + "scheduled_service": "no", + "gps_code": "CO22", + "local_code": "CO22" + }, + { + "id": "16877", + "ident": "CO23", + "type": "heliport", + "name": "St Francis Hospital Heliport", + "latitude_deg": "38.848899841308594", + "longitude_deg": "-104.80799865722656", + "elevation_ft": "6061", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Colorado Springs", + "scheduled_service": "no", + "gps_code": "CO23", + "local_code": "CO23" + }, + { + "id": "16878", + "ident": "CO24", + "type": "heliport", + "name": "Penrose Saint Francis Hospital Heliport", + "latitude_deg": "38.86599", + "longitude_deg": "-104.822182", + "elevation_ft": "6132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Colorado Springs", + "scheduled_service": "no", + "gps_code": "CO24", + "local_code": "CO24" + }, + { + "id": "16879", + "ident": "CO25", + "type": "small_airport", + "name": "Metrogro Farm Airport", + "latitude_deg": "39.494857", + "longitude_deg": "-103.727361", + "elevation_ft": "5240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Agate", + "scheduled_service": "no", + "gps_code": "CO25", + "local_code": "CO25" + }, + { + "id": "16880", + "ident": "CO26", + "type": "closed", + "name": "Cirino Heliport", + "latitude_deg": "39.890301", + "longitude_deg": "-105.087997", + "elevation_ft": "5380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Broomfield", + "scheduled_service": "no", + "gps_code": "CO26", + "local_code": "CO26", + "keywords": "CO26" + }, + { + "id": "16881", + "ident": "CO27", + "type": "small_airport", + "name": "Tanner Field", + "latitude_deg": "37.46780014038086", + "longitude_deg": "-108.66500091552734", + "elevation_ft": "6640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Cortez", + "scheduled_service": "no", + "gps_code": "CO27", + "local_code": "CO27" + }, + { + "id": "16882", + "ident": "CO28", + "type": "balloonport", + "name": "Suckla Farms Balloonport", + "latitude_deg": "40.05830001831055", + "longitude_deg": "-104.89199829101562", + "elevation_ft": "5050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Dacono", + "scheduled_service": "no", + "gps_code": "CO28", + "local_code": "CO28" + }, + { + "id": "16883", + "ident": "CO29", + "type": "closed", + "name": "University Hospital Heliport", + "latitude_deg": "39.731899", + "longitude_deg": "-104.938004", + "elevation_ft": "5418", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "keywords": "CO29" + }, + { + "id": "16884", + "ident": "CO30", + "type": "heliport", + "name": "Gates Rubber County Heliport", + "latitude_deg": "39.698001861572266", + "longitude_deg": "-104.98699951171875", + "elevation_ft": "5289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "gps_code": "CO30", + "local_code": "CO30" + }, + { + "id": "16885", + "ident": "CO31", + "type": "heliport", + "name": "Rose Medical Center Heliport", + "latitude_deg": "39.732734", + "longitude_deg": "-104.932901", + "elevation_ft": "5383", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "gps_code": "CO31", + "local_code": "CO31" + }, + { + "id": "16886", + "ident": "CO32", + "type": "heliport", + "name": "Capri Heliport", + "latitude_deg": "39.85279846191406", + "longitude_deg": "-104.97699737548828", + "elevation_ft": "5255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "gps_code": "CO32", + "local_code": "CO32" + }, + { + "id": "16887", + "ident": "CO33", + "type": "closed", + "name": "Cheyenne Mountain Heliport", + "latitude_deg": "38.74166", + "longitude_deg": "-104.840106", + "elevation_ft": "9440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Colorado Springs", + "scheduled_service": "no", + "keywords": "CO33" + }, + { + "id": "16888", + "ident": "CO34", + "type": "heliport", + "name": "St Lukes Hospital Heliport", + "latitude_deg": "39.74720001220703", + "longitude_deg": "-104.98100280761719", + "elevation_ft": "5330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "gps_code": "CO34", + "local_code": "CO34" + }, + { + "id": "16889", + "ident": "CO35", + "type": "heliport", + "name": "Denver Health Heliport", + "latitude_deg": "39.728223", + "longitude_deg": "-104.990523", + "elevation_ft": "5212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "gps_code": "CO35", + "local_code": "CO35" + }, + { + "id": "16890", + "ident": "CO36", + "type": "heliport", + "name": "Elbert County Heliport", + "latitude_deg": "39.34389877319336", + "longitude_deg": "-104.46499633789062", + "elevation_ft": "6380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Kiowa", + "scheduled_service": "no", + "gps_code": "CO36", + "local_code": "CO36" + }, + { + "id": "16891", + "ident": "CO37", + "type": "heliport", + "name": "St Joseph Hospital Heliport", + "latitude_deg": "39.746181", + "longitude_deg": "-104.970543", + "elevation_ft": "5463", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "gps_code": "CO37", + "local_code": "CO37" + }, + { + "id": "16892", + "ident": "CO38", + "type": "small_airport", + "name": "Comanche Airfield Llc Airport", + "latitude_deg": "39.74720001220703", + "longitude_deg": "-104.31300354003906", + "elevation_ft": "5350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Strasburg", + "scheduled_service": "no", + "gps_code": "CO38", + "local_code": "CO38" + }, + { + "id": "16893", + "ident": "CO39", + "type": "heliport", + "name": "Denver Federal Center Helistop", + "latitude_deg": "39.72330093383789", + "longitude_deg": "-105.11100006103516", + "elevation_ft": "5550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "gps_code": "CO39", + "local_code": "CO39" + }, + { + "id": "16894", + "ident": "CO40", + "type": "heliport", + "name": "Vtol Heliport", + "latitude_deg": "39.742801666259766", + "longitude_deg": "-104.99400329589844", + "elevation_ft": "5354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "gps_code": "CO40", + "local_code": "CO40" + }, + { + "id": "16895", + "ident": "CO41", + "type": "heliport", + "name": "Denver Police Department-District 3 Heliport", + "latitude_deg": "39.6875", + "longitude_deg": "-104.95999908447266", + "elevation_ft": "5340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "gps_code": "CO41", + "local_code": "CO41" + }, + { + "id": "16896", + "ident": "CO42", + "type": "small_airport", + "name": "Circle 8 Ranch Airport", + "latitude_deg": "39.33470153808594", + "longitude_deg": "-104.5459976196289", + "elevation_ft": "6650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Elizabeth", + "scheduled_service": "no", + "gps_code": "CO42", + "local_code": "CO42" + }, + { + "id": "16897", + "ident": "CO43", + "type": "small_airport", + "name": "Pinyon Airport", + "latitude_deg": "39.00279998779297", + "longitude_deg": "-108.70999908447266", + "elevation_ft": "6980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Glade Park", + "scheduled_service": "no", + "gps_code": "CO43", + "local_code": "CO43" + }, + { + "id": "16898", + "ident": "CO44", + "type": "heliport", + "name": "Yankee Port Heliport", + "latitude_deg": "39.57500076293945", + "longitude_deg": "-104.8759994506836", + "elevation_ft": "5854", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Greenwood Village", + "scheduled_service": "no", + "gps_code": "CO44", + "local_code": "CO44" + }, + { + "id": "16899", + "ident": "CO45", + "type": "heliport", + "name": "Avista Hospital Heliport", + "latitude_deg": "39.95280075073242", + "longitude_deg": "-105.1520004272461", + "elevation_ft": "5510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "CO45", + "local_code": "CO45" + }, + { + "id": "16900", + "ident": "CO46", + "type": "heliport", + "name": "Mercy Regional Medical Center Heliport", + "latitude_deg": "37.2832984924", + "longitude_deg": "-107.874000549", + "elevation_ft": "6585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Durango", + "scheduled_service": "no", + "gps_code": "CO46", + "local_code": "CO46" + }, + { + "id": "16901", + "ident": "CO47", + "type": "small_airport", + "name": "Goldys Field", + "latitude_deg": "39.599998", + "longitude_deg": "-106.973999", + "elevation_ft": "6720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Gypsum", + "scheduled_service": "no", + "gps_code": "CO47", + "local_code": "CO47", + "keywords": "Gypsum Creek Ranch" + }, + { + "id": "16902", + "ident": "CO48", + "type": "small_airport", + "name": "Crop Air Inc Airport", + "latitude_deg": "40.51250076293945", + "longitude_deg": "-104.6520004272461", + "elevation_ft": "4800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Eaton", + "scheduled_service": "no", + "gps_code": "CO48", + "local_code": "CO48" + }, + { + "id": "16903", + "ident": "CO49", + "type": "closed", + "name": "Flying Lazy D Ranch Airport", + "latitude_deg": "39.162498", + "longitude_deg": "-104.535004", + "elevation_ft": "6910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Elbert", + "scheduled_service": "no", + "keywords": "CO49" + }, + { + "id": "16904", + "ident": "CO50", + "type": "heliport", + "name": "Aspen Valley Hospital Heliport", + "latitude_deg": "39.190006808300005", + "longitude_deg": "-106.839004755", + "elevation_ft": "8140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Aspen", + "scheduled_service": "no", + "gps_code": "CO50", + "local_code": "CO50" + }, + { + "id": "16905", + "ident": "CO51", + "type": "heliport", + "name": "Henderson Heliport", + "latitude_deg": "39.7682991027832", + "longitude_deg": "-105.8479995727539", + "elevation_ft": "10400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Empire", + "scheduled_service": "no", + "gps_code": "CO51", + "local_code": "CO51" + }, + { + "id": "16906", + "ident": "CO52", + "type": "small_airport", + "name": "Marshdale STOLport", + "latitude_deg": "39.58330154418945", + "longitude_deg": "-105.3030014038086", + "elevation_ft": "7700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Evergreen", + "scheduled_service": "no", + "gps_code": "CO52", + "local_code": "CO52" + }, + { + "id": "16907", + "ident": "CO53", + "type": "small_airport", + "name": "Yankee Field", + "latitude_deg": "40.634700775146484", + "longitude_deg": "-104.99099731445312", + "elevation_ft": "5050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Fort Collins", + "scheduled_service": "no", + "gps_code": "CO53", + "local_code": "CO53" + }, + { + "id": "16908", + "ident": "CO54", + "type": "small_airport", + "name": "G W Flanders Ranch Strip", + "latitude_deg": "38.983299255371094", + "longitude_deg": "-104.63400268554688", + "elevation_ft": "7260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Falcon", + "scheduled_service": "no", + "gps_code": "CO54", + "local_code": "CO54" + }, + { + "id": "16909", + "ident": "CO55", + "type": "small_airport", + "name": "Christman Field", + "latitude_deg": "40.597198486328125", + "longitude_deg": "-105.14399719238281", + "elevation_ft": "5160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Fort Collins", + "scheduled_service": "no", + "gps_code": "CO55", + "local_code": "CO55" + }, + { + "id": "16910", + "ident": "CO56", + "type": "small_airport", + "name": "Jjs Airport", + "latitude_deg": "39.9640998840332", + "longitude_deg": "-104.46299743652344", + "elevation_ft": "5075", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Keenesburg", + "scheduled_service": "no", + "gps_code": "CO56", + "local_code": "CO56" + }, + { + "id": "16911", + "ident": "CO57", + "type": "heliport", + "name": "Rhoads Heliport", + "latitude_deg": "40.112701416015625", + "longitude_deg": "-104.9520034790039", + "elevation_ft": "5000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Firestone", + "scheduled_service": "no", + "gps_code": "CO57", + "local_code": "CO57" + }, + { + "id": "16912", + "ident": "CO58", + "type": "small_airport", + "name": "Wings N Things Airpark & Museum Airport", + "latitude_deg": "40.105801", + "longitude_deg": "-104.955002", + "elevation_ft": "5000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Longmont", + "scheduled_service": "no", + "gps_code": "CO58", + "local_code": "CO58", + "keywords": "Firestone Air Park" + }, + { + "id": "16913", + "ident": "CO59", + "type": "small_airport", + "name": "Hay Fever Farm Airport", + "latitude_deg": "40.545799255371094", + "longitude_deg": "-104.56400299072266", + "elevation_ft": "4840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Galeton", + "scheduled_service": "no", + "gps_code": "CO59", + "local_code": "CO59" + }, + { + "id": "16914", + "ident": "CO60", + "type": "small_airport", + "name": "Horseshoe Landings Airport", + "latitude_deg": "40.105344", + "longitude_deg": "-104.429712", + "elevation_ft": "4800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Keenesburg", + "scheduled_service": "no", + "gps_code": "CO60", + "local_code": "CO60" + }, + { + "id": "16915", + "ident": "CO61", + "type": "small_airport", + "name": "Golden Field (Yellow Hat) Airport", + "latitude_deg": "37.842201232910156", + "longitude_deg": "-105.21399688720703", + "elevation_ft": "7710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Gardner", + "scheduled_service": "no", + "gps_code": "CO61", + "local_code": "CO61" + }, + { + "id": "16916", + "ident": "CO62", + "type": "heliport", + "name": "Cherry Creek Townhouse Heliport", + "latitude_deg": "39.705501556396484", + "longitude_deg": "-104.93900299072266", + "elevation_ft": "5340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Glendale", + "scheduled_service": "no", + "gps_code": "CO62", + "local_code": "CO62" + }, + { + "id": "16917", + "ident": "CO63", + "type": "heliport", + "name": "Brown's Fort Heliport", + "latitude_deg": "38.49639892578125", + "longitude_deg": "-105.31099700927734", + "elevation_ft": "6300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Canon City", + "scheduled_service": "no", + "gps_code": "CO63", + "local_code": "CO63" + }, + { + "id": "16918", + "ident": "CO64", + "type": "heliport", + "name": "Mount San Rafael Heliport", + "latitude_deg": "37.1875", + "longitude_deg": "-104.48799896240234", + "elevation_ft": "6100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Trinidad", + "scheduled_service": "no", + "gps_code": "CO64", + "local_code": "CO64" + }, + { + "id": "16919", + "ident": "CO65", + "type": "small_airport", + "name": "Geary Ranch Airport", + "latitude_deg": "38.045799255371094", + "longitude_deg": "-105.47100067138672", + "elevation_ft": "8300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Westcliffe", + "scheduled_service": "no", + "gps_code": "CO65", + "local_code": "CO65" + }, + { + "id": "16920", + "ident": "CO66", + "type": "closed", + "name": "Morton Heliport", + "latitude_deg": "39.7103", + "longitude_deg": "-105.245003", + "elevation_ft": "7360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Golden", + "scheduled_service": "no", + "keywords": "CO66" + }, + { + "id": "16921", + "ident": "CO67", + "type": "closed", + "name": "Schwartzwalder Heliport", + "latitude_deg": "39.847197", + "longitude_deg": "-105.281998", + "elevation_ft": "6580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Golden", + "scheduled_service": "no", + "keywords": "CO67" + }, + { + "id": "45324", + "ident": "CO68", + "type": "heliport", + "name": "Frederick-Firestone F.S. #2 Heliport", + "latitude_deg": "40.121944", + "longitude_deg": "-104.980833", + "elevation_ft": "4974", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Frederick", + "scheduled_service": "no", + "gps_code": "CO68", + "local_code": "CO68" + }, + { + "id": "16922", + "ident": "CO69", + "type": "heliport", + "name": "Dan Riggs Memorial Heliport", + "latitude_deg": "38.1478", + "longitude_deg": "-105.467003", + "elevation_ft": "7880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Westcliffe", + "scheduled_service": "no", + "keywords": "CO69" + }, + { + "id": "16923", + "ident": "CO70", + "type": "closed", + "name": "Uhrich Airport", + "latitude_deg": "40.460499", + "longitude_deg": "-104.646003", + "elevation_ft": "4715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Greeley", + "scheduled_service": "no", + "keywords": "CO70" + }, + { + "id": "16924", + "ident": "CO71", + "type": "heliport", + "name": "Parkview Medical Center Heliport", + "latitude_deg": "38.280799865722656", + "longitude_deg": "-104.61399841308594", + "elevation_ft": "4766", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Pueblo", + "scheduled_service": "no", + "gps_code": "CO71", + "local_code": "CO71" + }, + { + "id": "16925", + "ident": "CO72", + "type": "heliport", + "name": "Helitrax / Telluride Heliport", + "latitude_deg": "37.939999", + "longitude_deg": "-107.848998", + "elevation_ft": "9430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Telluride", + "scheduled_service": "no", + "gps_code": "CO72", + "local_code": "CO72", + "keywords": "Doral/Telluride Heliport" + }, + { + "id": "16926", + "ident": "CO73", + "type": "small_airport", + "name": "Air Sprayers Number 2 Airport", + "latitude_deg": "38.11172", + "longitude_deg": "-102.21524", + "elevation_ft": "3610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Hartman", + "scheduled_service": "no", + "gps_code": "CO73", + "local_code": "CO73" + }, + { + "id": "16927", + "ident": "CO74", + "type": "heliport", + "name": "Mc Elroy Heliport", + "latitude_deg": "40.002799987799996", + "longitude_deg": "-106.452003479", + "elevation_ft": "9209", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Kremmling", + "scheduled_service": "no", + "gps_code": "CO74", + "local_code": "CO74" + }, + { + "id": "16928", + "ident": "CO75", + "type": "heliport", + "name": "Overlook Athletic Club Heliport", + "latitude_deg": "39.472999572753906", + "longitude_deg": "-106.03299713134766", + "elevation_ft": "10085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Breckenridge", + "scheduled_service": "no", + "gps_code": "CO75", + "local_code": "CO75" + }, + { + "id": "16929", + "ident": "CO76", + "type": "small_airport", + "name": "Eden Ranch Airport", + "latitude_deg": "38.835708", + "longitude_deg": "-107.867003", + "elevation_ft": "6150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Hotchkiss", + "scheduled_service": "no", + "gps_code": "CO76", + "local_code": "CO76" + }, + { + "id": "16930", + "ident": "CO77", + "type": "closed", + "name": "Horth Strip", + "latitude_deg": "39.9786", + "longitude_deg": "-104.594002", + "elevation_ft": "5128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Hudson", + "scheduled_service": "no", + "keywords": "CO77" + }, + { + "id": "16931", + "ident": "CO78", + "type": "heliport", + "name": "Lincoln Community Hospital Heliport", + "latitude_deg": "39.138832", + "longitude_deg": "-103.474474", + "elevation_ft": "5034", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Hugo", + "scheduled_service": "no", + "gps_code": "CO78", + "local_code": "CO78" + }, + { + "id": "16932", + "ident": "CO79", + "type": "heliport", + "name": "Falcon Air Force Base Helipad", + "latitude_deg": "38.70330047607422", + "longitude_deg": "-104.52300262451172", + "elevation_ft": "6288", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Colorado Springs", + "scheduled_service": "no", + "gps_code": "CO79", + "local_code": "CO79" + }, + { + "id": "16933", + "ident": "CO80", + "type": "small_airport", + "name": "Fowler Airport", + "latitude_deg": "38.0724983215332", + "longitude_deg": "-104.0459976196289", + "elevation_ft": "4428", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Fowler", + "scheduled_service": "no", + "gps_code": "CO80", + "local_code": "CO80" + }, + { + "id": "16934", + "ident": "CO81", + "type": "closed", + "name": "Hill Airport", + "latitude_deg": "39.6208", + "longitude_deg": "-102.74325", + "elevation_ft": "4345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Joes", + "scheduled_service": "no", + "keywords": "CO81" + }, + { + "id": "16935", + "ident": "CO82", + "type": "small_airport", + "name": "Land Airport", + "latitude_deg": "40.09579849243164", + "longitude_deg": "-104.58899688720703", + "elevation_ft": "5000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Keenesburg", + "scheduled_service": "no", + "gps_code": "CO82", + "local_code": "CO82" + }, + { + "id": "16936", + "ident": "CO83", + "type": "closed", + "name": "Bulk Mail Center Heliport", + "latitude_deg": "39.800301", + "longitude_deg": "-104.901001", + "elevation_ft": "5290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Commerce City", + "scheduled_service": "no", + "keywords": "CO83" + }, + { + "id": "16937", + "ident": "CO84", + "type": "small_airport", + "name": "Idlers Field", + "latitude_deg": "39.608299255371094", + "longitude_deg": "-102.54100036621094", + "elevation_ft": "4159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Kirk", + "scheduled_service": "no", + "gps_code": "CO84", + "local_code": "CO84" + }, + { + "id": "16938", + "ident": "CO85", + "type": "heliport", + "name": "Rifle Junction Heliport", + "latitude_deg": "39.53390121459961", + "longitude_deg": "-107.77200317382812", + "elevation_ft": "5609", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Rifle", + "scheduled_service": "no", + "gps_code": "CO85", + "local_code": "CO85" + }, + { + "id": "16939", + "ident": "CO86", + "type": "closed", + "name": "Granby Sports Park Ultralightport", + "latitude_deg": "40.048599", + "longitude_deg": "-105.938004", + "elevation_ft": "8110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Granby", + "scheduled_service": "no", + "keywords": "CO86" + }, + { + "id": "16940", + "ident": "CO87", + "type": "heliport", + "name": "Dbs Air Heliport", + "latitude_deg": "39.527801513671875", + "longitude_deg": "-107.71900177001953", + "elevation_ft": "5548", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Rifle", + "scheduled_service": "no", + "gps_code": "CO87", + "local_code": "CO87" + }, + { + "id": "16941", + "ident": "CO88", + "type": "heliport", + "name": "Kusa Helistop", + "latitude_deg": "39.721099853515625", + "longitude_deg": "-104.98300170898438", + "elevation_ft": "5260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "gps_code": "CO88", + "local_code": "CO88" + }, + { + "id": "16942", + "ident": "CO89", + "type": "small_airport", + "name": "Barber Field", + "latitude_deg": "38.77280044555664", + "longitude_deg": "-108.04399871826172", + "elevation_ft": "5050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Delta", + "scheduled_service": "no", + "gps_code": "CO89", + "local_code": "CO89" + }, + { + "id": "16943", + "ident": "CO90", + "type": "small_airport", + "name": "Usaf Academy Bullseye Aux Airstrip", + "latitude_deg": "38.75830078125", + "longitude_deg": "-104.30699920654297", + "elevation_ft": "6036", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Ellicott", + "scheduled_service": "no", + "gps_code": "CO90", + "local_code": "CO90" + }, + { + "id": "16944", + "ident": "CO91", + "type": "closed", + "name": "Heli-Support Heliport", + "latitude_deg": "40.583604", + "longitude_deg": "-105.035182", + "elevation_ft": "4935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Fort Collins", + "scheduled_service": "no", + "keywords": "CO91" + }, + { + "id": "16945", + "ident": "CO92", + "type": "small_airport", + "name": "Frasier Ranch Airport", + "latitude_deg": "39.644451", + "longitude_deg": "-103.641672", + "elevation_ft": "5000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Last Chance", + "scheduled_service": "no", + "gps_code": "CO92", + "local_code": "CO92" + }, + { + "id": "16946", + "ident": "CO93", + "type": "small_airport", + "name": "Perry Park Airport", + "latitude_deg": "39.25", + "longitude_deg": "-104.89099884033203", + "elevation_ft": "6700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Larkspur", + "scheduled_service": "no", + "gps_code": "CO93", + "local_code": "CO93" + }, + { + "id": "16947", + "ident": "CO94", + "type": "closed", + "name": "Decker Farms Airport", + "latitude_deg": "39.706902", + "longitude_deg": "-103.351997", + "elevation_ft": "5050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Lindon", + "scheduled_service": "no", + "keywords": "CO94" + }, + { + "id": "16948", + "ident": "CO95", + "type": "small_airport", + "name": "True Grit South Airport", + "latitude_deg": "38.052378", + "longitude_deg": "-107.984871", + "elevation_ft": "9580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Telluride", + "scheduled_service": "no", + "gps_code": "CO95", + "local_code": "CO95", + "keywords": "Wilson Ranch" + }, + { + "id": "16949", + "ident": "CO96", + "type": "small_airport", + "name": "Reed Hollow Ranch Airport", + "latitude_deg": "39.371700286865234", + "longitude_deg": "-104.74299621582031", + "elevation_ft": "6200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Franktown", + "scheduled_service": "no", + "gps_code": "CO96", + "local_code": "CO96" + }, + { + "id": "16950", + "ident": "CO97", + "type": "small_airport", + "name": "Comanche Springs Ranch Airport", + "latitude_deg": "39.72079849243164", + "longitude_deg": "-104.322998046875", + "elevation_ft": "5435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Strasburg", + "scheduled_service": "no", + "gps_code": "CO97", + "local_code": "CO97" + }, + { + "id": "16951", + "ident": "CO98", + "type": "closed", + "name": "Bowen Farms Number 1 Airport", + "latitude_deg": "39.549999", + "longitude_deg": "-105.033997", + "elevation_ft": "5450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Littleton", + "scheduled_service": "no", + "keywords": "CO98" + }, + { + "id": "16952", + "ident": "CO99", + "type": "heliport", + "name": "Denver ARTCC Heliport", + "latitude_deg": "40.1882", + "longitude_deg": "-105.12652", + "elevation_ft": "5057", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Longmont", + "scheduled_service": "no", + "gps_code": "CO99", + "local_code": "CO99" + }, + { + "id": "46617", + "ident": "COB4", + "type": "small_airport", + "name": "Orangeville / Brundle Field", + "latitude_deg": "43.8745094139", + "longitude_deg": "-80.1798963547", + "elevation_ft": "1630", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "COB4", + "keywords": "ob4" + }, + { + "id": "43873", + "ident": "COL2", + "type": "small_airport", + "name": "Orangeville / Laurel Airstrip", + "latitude_deg": "43.916900634799994", + "longitude_deg": "-80.20580291750001", + "elevation_ft": "1620", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Orangeville", + "scheduled_service": "no", + "gps_code": "COL2", + "local_code": "COL2", + "keywords": "orangeville laurel ol2" + }, + { + "id": "1369", + "ident": "COP2", + "type": "heliport", + "name": "Orillia (Ontario Provincial Police) Heliport", + "latitude_deg": "44.584698344699994", + "longitude_deg": "-79.4275474548", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Orillia", + "scheduled_service": "no", + "gps_code": "COP2", + "local_code": "COP2", + "keywords": "OP2" + }, + { + "id": "301225", + "ident": "cor2", + "type": "heliport", + "name": "Val D'or (St. Pierre) Heliport", + "latitude_deg": "48.0774338086", + "longitude_deg": "-77.8686261177", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "COR2" + }, + { + "id": "332255", + "ident": "COR3", + "type": "small_airport", + "name": "Orono Field", + "latitude_deg": "43.97278", + "longitude_deg": "-78.58945", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "COR3", + "local_code": "COR3" + }, + { + "id": "321785", + "ident": "COR8", + "type": "small_airport", + "name": "Orangeville/Rosehill Airfield", + "latitude_deg": "43.901929", + "longitude_deg": "-80.023782", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "COR8", + "local_code": "COR8" + }, + { + "id": "332268", + "ident": "COS2", + "type": "small_airport", + "name": "Iona Station (Bobier Strip)", + "latitude_deg": "42.67638889", + "longitude_deg": "-81.451111", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "COS2", + "local_code": "COS2" + }, + { + "id": "43874", + "ident": "COW2", + "type": "closed", + "name": "Otway Heliport", + "latitude_deg": "53.951668", + "longitude_deg": "-122.831665", + "elevation_ft": "1954", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "local_code": "COW2" + }, + { + "id": "1370", + "ident": "CPA2", + "type": "heliport", + "name": "Mount Forest (Louise Marshall Hospital) Heliport", + "latitude_deg": "43.97420120239258", + "longitude_deg": "-80.73750305175781", + "elevation_ft": "1365", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Mount Forest", + "scheduled_service": "no", + "gps_code": "CPA2", + "local_code": "CPA2", + "keywords": "PA2" + }, + { + "id": "1371", + "ident": "CPA3", + "type": "heliport", + "name": "Palmerston (District Hospital) Heliport", + "latitude_deg": "43.83829879760742", + "longitude_deg": "-80.84190368652344", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Palmerston", + "scheduled_service": "no", + "gps_code": "CPA3", + "local_code": "CPA3", + "keywords": "PA3" + }, + { + "id": "1372", + "ident": "CPA4", + "type": "small_airport", + "name": "Simcoe (Dennison Field) Airport", + "latitude_deg": "42.819352497699995", + "longitude_deg": "-80.265212059", + "elevation_ft": "722", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Simcoe", + "scheduled_service": "no", + "gps_code": "CPA4", + "local_code": "CPA4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Simcoe_(Dennison_Field)_Airport", + "keywords": "PA4" + }, + { + "id": "1373", + "ident": "CPA5", + "type": "heliport", + "name": "Tarten Heliport", + "latitude_deg": "43.6539083949", + "longitude_deg": "-79.65785399079999", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Toronto", + "scheduled_service": "no", + "gps_code": "CPA5", + "local_code": "CPA5", + "keywords": "PA5" + }, + { + "id": "1374", + "ident": "CPA6", + "type": "heliport", + "name": "Hagersville (West Haldimand General Hospital) Heliport", + "latitude_deg": "42.958369810200004", + "longitude_deg": "-80.04342556", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Hagersville", + "scheduled_service": "no", + "gps_code": "CPA6", + "local_code": "CPA6", + "keywords": "PA6" + }, + { + "id": "1375", + "ident": "CPA7", + "type": "heliport", + "name": "Meaford (General Hospital) Heliport", + "latitude_deg": "44.60689926147461", + "longitude_deg": "-80.5988998413086", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Meaford", + "scheduled_service": "no", + "gps_code": "CPA7", + "local_code": "CPA7", + "keywords": "PA7" + }, + { + "id": "1376", + "ident": "CPA8", + "type": "heliport", + "name": "Simcoe (Norfolk General Hospital) Heliport", + "latitude_deg": "42.847259685100006", + "longitude_deg": "-80.32039046290001", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Simcoe", + "scheduled_service": "no", + "gps_code": "CPA8", + "local_code": "CPA8", + "keywords": "PA8" + }, + { + "id": "1377", + "ident": "CPA9", + "type": "heliport", + "name": "Dunnville (Haldimand War Memorial Hospital) Heliport", + "latitude_deg": "42.913644916", + "longitude_deg": "-79.62854146960001", + "elevation_ft": "596", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Dunnville", + "scheduled_service": "no", + "gps_code": "CPA9", + "local_code": "CPA9", + "keywords": "PA9" + }, + { + "id": "1378", + "ident": "CPB2", + "type": "heliport", + "name": "Fergus (Groves Memorial Community Hospital) Heliport", + "latitude_deg": "43.7214899523", + "longitude_deg": "-80.37602752450002", + "elevation_ft": "1411", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Fergus", + "scheduled_service": "no", + "gps_code": "CPB2", + "local_code": "CPB2", + "keywords": "PB2" + }, + { + "id": "1379", + "ident": "CPB3", + "type": "heliport", + "name": "Welland (County General Hospital) Heliport", + "latitude_deg": "42.977576456399994", + "longitude_deg": "-79.2497491837", + "elevation_ft": "585", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Welland", + "scheduled_service": "no", + "gps_code": "CPB3", + "local_code": "CPB3", + "keywords": "PB3" + }, + { + "id": "1380", + "ident": "CPB5", + "type": "small_airport", + "name": "Pilot Butte Airport", + "latitude_deg": "50.46110153198242", + "longitude_deg": "-104.43099975585938", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Pilot Butte", + "scheduled_service": "no", + "gps_code": "CPB5", + "local_code": "CPB5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pilot_Butte_Airport", + "keywords": "PB5" + }, + { + "id": "1381", + "ident": "CPB7", + "type": "heliport", + "name": "Bancroft (North Hastings District Hospital) Heliport", + "latitude_deg": "45.0713996887207", + "longitude_deg": "-77.87889862060547", + "elevation_ft": "1085", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Bancroft", + "scheduled_service": "no", + "gps_code": "CPB7", + "local_code": "CPB7", + "keywords": "PB7" + }, + { + "id": "1382", + "ident": "CPB8", + "type": "small_airport", + "name": "Paramount Bistcho Airport", + "latitude_deg": "59.6381", + "longitude_deg": "-118.333", + "elevation_ft": "1969", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Paramount Bistcho", + "scheduled_service": "no", + "gps_code": "CPB8", + "local_code": "CPB8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paramount_Bistcho_Airport" + }, + { + "id": "1383", + "ident": "CPB9", + "type": "small_airport", + "name": "Baldwin Airport", + "latitude_deg": "44.2672004699707", + "longitude_deg": "-79.3405990600586", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Baldwin", + "scheduled_service": "no", + "gps_code": "CPB9", + "local_code": "CPB9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baldwin_Airport", + "keywords": "PB9" + }, + { + "id": "320483", + "ident": "CPC2", + "type": "small_airport", + "name": "Port Carling Airport", + "latitude_deg": "45.093001", + "longitude_deg": "-79.597301", + "elevation_ft": "857", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Port Carling", + "scheduled_service": "no", + "gps_code": "CPC2", + "local_code": "CPC2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Carling_Aerodrome" + }, + { + "id": "1384", + "ident": "CPC3", + "type": "small_airport", + "name": "Arthur (Walter's Field)", + "latitude_deg": "43.840578507", + "longitude_deg": "-80.44288158420001", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Arthur East", + "scheduled_service": "no", + "gps_code": "CPC3", + "local_code": "CPC3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arthur_East_Airport", + "keywords": "PC3, Arthur East" + }, + { + "id": "1385", + "ident": "CPC4", + "type": "heliport", + "name": "Brampton (National D) Heliport", + "latitude_deg": "43.833112432", + "longitude_deg": "-79.70222041010001", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Brampton", + "scheduled_service": "no", + "gps_code": "CPC4", + "local_code": "CPC4", + "keywords": "PC4" + }, + { + "id": "1386", + "ident": "CPC6", + "type": "small_airport", + "name": "Teeswater (Thompson Field) Airport", + "latitude_deg": "43.948299407958984", + "longitude_deg": "-81.27189636230469", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Teeswater", + "scheduled_service": "no", + "gps_code": "CPC6", + "local_code": "CPC6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Teeswater_(Thompson_Field)_Airport", + "keywords": "PC6" + }, + { + "id": "46491", + "ident": "CPC7", + "type": "seaplane_base", + "name": "Pontiac Airpark Water Aerodrome", + "latitude_deg": "45.523611", + "longitude_deg": "-76.170833", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Pontiac", + "scheduled_service": "no", + "gps_code": "CPC7", + "local_code": "CPC7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pontiac_Airpark_Water_Aerodrome" + }, + { + "id": "1387", + "ident": "CPC9", + "type": "heliport", + "name": "Huntsville (Memorial District Hospital) Heliport", + "latitude_deg": "45.34000015258789", + "longitude_deg": "-79.2042007446289", + "elevation_ft": "975", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Huntsville", + "scheduled_service": "no", + "gps_code": "CPC9", + "local_code": "CPC9", + "keywords": "PC9" + }, + { + "id": "1388", + "ident": "CPD2", + "type": "small_airport", + "name": "Ethel Airport", + "latitude_deg": "43.744998931884766", + "longitude_deg": "-81.17669677734375", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ethel", + "scheduled_service": "no", + "gps_code": "CPD2", + "local_code": "CPD2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ethel_Airport", + "keywords": "PD2" + }, + { + "id": "1389", + "ident": "CPD3", + "type": "heliport", + "name": "Durham (Memorial Hospital) Heliport", + "latitude_deg": "44.18330001831055", + "longitude_deg": "-80.83329772949219", + "elevation_ft": "1125", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Durham", + "scheduled_service": "no", + "gps_code": "CPD3", + "local_code": "CPD3", + "keywords": "PD3" + }, + { + "id": "1390", + "ident": "CPD4", + "type": "small_airport", + "name": "Brussels (Armstrong Field) Airport", + "latitude_deg": "43.749079", + "longitude_deg": "-81.237341", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Brussels", + "scheduled_service": "no", + "gps_code": "CPD4", + "local_code": "CPD4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brussels_(Armstrong_Field)_Airport", + "keywords": "PD4" + }, + { + "id": "321884", + "ident": "CPD5", + "type": "seaplane_base", + "name": "Paudash Lake Seaplane Base", + "latitude_deg": "44.959206", + "longitude_deg": "-78.036835", + "elevation_ft": "1126", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Paudash", + "scheduled_service": "no", + "gps_code": "CPD5", + "local_code": "CPD5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paudash_(Paudash_Lake)_Water_Aerodrome" + }, + { + "id": "28360", + "ident": "CPD6", + "type": "seaplane_base", + "name": "Parry Sound/St. Waleran Island Seaplane Base", + "latitude_deg": "45.24919891357422", + "longitude_deg": "-80.20359802246094", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CPD6", + "local_code": "CPD6" + }, + { + "id": "320470", + "ident": "CPD7", + "type": "closed", + "name": "Devon Camp Airport", + "latitude_deg": "59.3186", + "longitude_deg": "-120.2769", + "elevation_ft": "1510", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Peggo", + "scheduled_service": "no", + "gps_code": "CPD7", + "local_code": "CPD7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Peggo_Devon_Canada_Aerodrome" + }, + { + "id": "1391", + "ident": "CPD8", + "type": "closed", + "name": "Hawkesbury (Windover Field) Airport", + "latitude_deg": "45.5643997192", + "longitude_deg": "-74.8097000122", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Hawkesbury", + "scheduled_service": "no", + "gps_code": "CPD8", + "local_code": "CPD8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hawkesbury_(Windover_Field)_Airport", + "keywords": "PD8" + }, + { + "id": "1392", + "ident": "CPD9", + "type": "heliport", + "name": "Markdale (Centre Grey General Hospital) Heliport", + "latitude_deg": "44.314998626708984", + "longitude_deg": "-80.65809631347656", + "elevation_ft": "1395", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Markdale", + "scheduled_service": "no", + "gps_code": "CPD9", + "local_code": "CPD9", + "keywords": "PD9" + }, + { + "id": "1393", + "ident": "CPE2", + "type": "heliport", + "name": "Ajax (Pickering General Hospital) Heliport", + "latitude_deg": "43.835887893400006", + "longitude_deg": "-79.0173760056", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ajax", + "scheduled_service": "no", + "gps_code": "CPE2", + "local_code": "CPE2", + "keywords": "PE2" + }, + { + "id": "1394", + "ident": "CPE3", + "type": "small_airport", + "name": "Elk Lake Airport", + "latitude_deg": "47.728599548339844", + "longitude_deg": "-80.31580352783203", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Elk Lake", + "scheduled_service": "no", + "gps_code": "CPE3", + "local_code": "CPE3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elk_Lake_Airport", + "keywords": "PE3" + }, + { + "id": "1395", + "ident": "CPE4", + "type": "small_airport", + "name": "Cambridge / Reid's Field", + "latitude_deg": "43.442730692299996", + "longitude_deg": "-80.23251056670001", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "CPE4", + "local_code": "CPE4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cambridge/Reid's_Field_Airport", + "keywords": "PE4" + }, + { + "id": "1396", + "ident": "CPE5", + "type": "small_airport", + "name": "Port Colborne Airport", + "latitude_deg": "42.877498626708984", + "longitude_deg": "-79.35279846191406", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Port Colborne", + "scheduled_service": "no", + "gps_code": "CPE5", + "local_code": "CPE5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Colborne_Airport", + "keywords": "PE5" + }, + { + "id": "1397", + "ident": "CPE6", + "type": "small_airport", + "name": "South River/Sundridge Airport & Float Plane Base", + "latitude_deg": "45.82109832763672", + "longitude_deg": "-79.32330322265625", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "South River - Sundridge", + "scheduled_service": "no", + "gps_code": "CPE6", + "local_code": "CPE6", + "home_link": "http://www.flyalmaguin.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/South_River/Sundridge_Airport", + "keywords": "PE6, almaguin, South River Sundridge" + }, + { + "id": "1398", + "ident": "CPE7", + "type": "closed", + "name": "New Lowell Airport", + "latitude_deg": "44.387503", + "longitude_deg": "-79.943298", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "New Lowell", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Lowell_Airport", + "keywords": "PE7, CPE7" + }, + { + "id": "1399", + "ident": "CPE8", + "type": "heliport", + "name": "Oakville (Trafalgar Memorial Hospital) Heliport", + "latitude_deg": "43.4740804079", + "longitude_deg": "-79.67159360650001", + "elevation_ft": "362", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Oakville", + "scheduled_service": "no", + "gps_code": "CPE8", + "local_code": "CPE8", + "keywords": "PE8" + }, + { + "id": "1400", + "ident": "CPE9", + "type": "heliport", + "name": "Armstrong Heliport", + "latitude_deg": "50.30670166015625", + "longitude_deg": "-89.02999877929688", + "elevation_ft": "1125", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Armstrong", + "scheduled_service": "no", + "gps_code": "CPE9", + "local_code": "CPE9", + "keywords": "PE9" + }, + { + "id": "1401", + "ident": "CPF2", + "type": "small_airport", + "name": "Bar River Airport", + "latitude_deg": "46.42029953", + "longitude_deg": "-84.0922012329", + "elevation_ft": "591", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Bar River", + "scheduled_service": "no", + "gps_code": "CPF2", + "iata_code": "YEB", + "local_code": "CPF2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bar_River_Airport", + "keywords": "PF2" + }, + { + "id": "320270", + "ident": "CPF3", + "type": "small_airport", + "name": "Parti Field", + "latitude_deg": "45.4274", + "longitude_deg": "-76.069502", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Dunrobin", + "scheduled_service": "no", + "gps_code": "CPF3", + "local_code": "CPF3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dunrobin/Parti_Field_Aerodrome" + }, + { + "id": "1402", + "ident": "CPF4", + "type": "small_airport", + "name": "Bruce McPhail Memorial Airport", + "latitude_deg": "45.595001220703125", + "longitude_deg": "-76.83329772949219", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Cobden", + "scheduled_service": "no", + "gps_code": "CPF4", + "local_code": "CPF4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cobden/Bruce_McPhail_Memorial_Airport", + "keywords": "PF4" + }, + { + "id": "1403", + "ident": "CPF6", + "type": "small_airport", + "name": "Stoney Creek Airport", + "latitude_deg": "43.1696925259", + "longitude_deg": "-79.7094154358", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Stoney Creek", + "scheduled_service": "no", + "gps_code": "CPF6", + "local_code": "CPF6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stoney_Creek_Airport", + "keywords": "PF6" + }, + { + "id": "1404", + "ident": "CPF7", + "type": "small_airport", + "name": "Southampton Airport", + "latitude_deg": "44.493900299072266", + "longitude_deg": "-81.33529663085938", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Southampton", + "scheduled_service": "no", + "gps_code": "CPF7", + "local_code": "CPF7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Southampton_Airport_(Ontario)", + "keywords": "PF7" + }, + { + "id": "28295", + "ident": "CPF9", + "type": "seaplane_base", + "name": "Lake Rosseau/Arthurlie Bay Seaplane Base", + "latitude_deg": "45.11669921875", + "longitude_deg": "-79.55000305175781", + "elevation_ft": "742", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CPF9", + "local_code": "CPF9" + }, + { + "id": "1405", + "ident": "CPG3", + "type": "heliport", + "name": "Fort Erie (Eurocopter Canada) Heliport", + "latitude_deg": "42.921189708", + "longitude_deg": "-78.9561331272", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Fort Erie", + "scheduled_service": "no", + "gps_code": "CPG3", + "local_code": "CPG3", + "keywords": "PG3" + }, + { + "id": "1406", + "ident": "CPG4", + "type": "small_airport", + "name": "Elmira (East) Airport", + "latitude_deg": "43.59189987182617", + "longitude_deg": "-80.51219940185547", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Elmira", + "scheduled_service": "no", + "gps_code": "CPG4", + "local_code": "CPG4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elmira_(East)_Airport", + "keywords": "PG4" + }, + { + "id": "1407", + "ident": "CPG5", + "type": "small_airport", + "name": "Hawkesbury (East) Airport", + "latitude_deg": "45.582801818847656", + "longitude_deg": "-74.54889678955078", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Hawkesbury", + "scheduled_service": "no", + "gps_code": "CPG5", + "local_code": "CPG5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hawkesbury_(East)_Airport", + "keywords": "PG5" + }, + { + "id": "1408", + "ident": "CPG6", + "type": "small_airport", + "name": "Port Elgin (Pryde Field) Airport", + "latitude_deg": "44.458900451660156", + "longitude_deg": "-81.37969970703125", + "elevation_ft": "661", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Port Elgin", + "scheduled_service": "no", + "gps_code": "CPG6", + "local_code": "CPG6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Elgin_(Pryde_Field)_Airport", + "keywords": "PG6" + }, + { + "id": "1409", + "ident": "CPG7", + "type": "small_airport", + "name": "Fergus (Juergensen Field) Airport", + "latitude_deg": "43.73500061035156", + "longitude_deg": "-80.44719696044922", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Fergus", + "scheduled_service": "no", + "gps_code": "CPG7", + "local_code": "CPG7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fergus_(Juergensen_Field)_Airport", + "keywords": "PG7" + }, + { + "id": "1410", + "ident": "CPG8", + "type": "heliport", + "name": "Chatham (Public General Hospital) Heliport", + "latitude_deg": "42.40359878540039", + "longitude_deg": "-82.19329833984375", + "elevation_ft": "593", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Chatham", + "scheduled_service": "no", + "gps_code": "CPG8", + "local_code": "CPG8", + "keywords": "PG8" + }, + { + "id": "1411", + "ident": "CPG9", + "type": "heliport", + "name": "Renfrew (Victoria Hospital) Heliport", + "latitude_deg": "45.48249816894531", + "longitude_deg": "-76.69609832763672", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Renfrew", + "scheduled_service": "no", + "gps_code": "CPG9", + "local_code": "CPG9", + "keywords": "PG9" + }, + { + "id": "1412", + "ident": "CPH2", + "type": "small_airport", + "name": "Rolph Airport", + "latitude_deg": "46.11669921875", + "longitude_deg": "-77.5333023071289", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Deep River", + "scheduled_service": "no", + "gps_code": "CPH2", + "local_code": "CPH2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Deep_River/Rolph_Airport", + "keywords": "PH2" + }, + { + "id": "1413", + "ident": "CPH4", + "type": "heliport", + "name": "Potvin Heli-Base Heliport", + "latitude_deg": "48.930801", + "longitude_deg": "-72.205002", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Dolbeau-Mistassini", + "scheduled_service": "no", + "gps_code": "CPH4", + "local_code": "CPH4" + }, + { + "id": "1414", + "ident": "CPH7", + "type": "heliport", + "name": "Markham Stouffville Heliport", + "latitude_deg": "43.8851011299", + "longitude_deg": "-79.2305901647", + "elevation_ft": "647", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Toronto", + "scheduled_service": "no", + "gps_code": "CPH7", + "local_code": "CPH7", + "keywords": "PH7" + }, + { + "id": "1415", + "ident": "CPH8", + "type": "closed", + "name": "Brockville (Medical) Heliport", + "latitude_deg": "44.605501669400006", + "longitude_deg": "-75.67983090879999", + "elevation_ft": "302", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Brockville", + "scheduled_service": "no", + "gps_code": "CPH8", + "local_code": "CPH8", + "keywords": "PH8" + }, + { + "id": "1416", + "ident": "CPH9", + "type": "small_airport", + "name": "Fordwich Airport", + "latitude_deg": "43.888099670410156", + "longitude_deg": "-80.99530029296875", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Fordwich", + "scheduled_service": "no", + "gps_code": "CPH9", + "local_code": "CPH9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fordwich_Airport", + "keywords": "PH9" + }, + { + "id": "302208", + "ident": "CPI", + "type": "small_airport", + "name": "Cape Orford Airport", + "latitude_deg": "-5.44833333333", + "longitude_deg": "152.081944444", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EBR", + "scheduled_service": "no", + "iata_code": "CPI", + "local_code": "COF" + }, + { + "id": "1417", + "ident": "CPJ2", + "type": "heliport", + "name": "Alliston Heliport", + "latitude_deg": "44.1411018371582", + "longitude_deg": "-79.80139923095703", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Alliston", + "scheduled_service": "no", + "gps_code": "CPJ2", + "local_code": "CPJ2", + "keywords": "PJ2" + }, + { + "id": "1418", + "ident": "CPJ3", + "type": "heliport", + "name": "Hamilton (Chedoke-McMaster Hospital) Heliport", + "latitude_deg": "43.2659885521", + "longitude_deg": "-79.9289220572", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "CPJ3", + "local_code": "CPJ3", + "keywords": "PJ3" + }, + { + "id": "1419", + "ident": "CPJ4", + "type": "heliport", + "name": "Geraldton (District Hospital) Heliport", + "latitude_deg": "49.72169876098633", + "longitude_deg": "-86.95719909667969", + "elevation_ft": "1101", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Geraldton", + "scheduled_service": "no", + "gps_code": "CPJ4", + "local_code": "CPJ4", + "keywords": "PJ4" + }, + { + "id": "1420", + "ident": "CPJ5", + "type": "small_airport", + "name": "Stirling Airport", + "latitude_deg": "44.241401672399995", + "longitude_deg": "-77.5616989136", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Stirling", + "scheduled_service": "no", + "gps_code": "CPJ5", + "local_code": "CPJ5", + "home_link": "http://www.oakhillsflyingclub.ca/ohfc/Welcome.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stirling_Airport", + "keywords": "PJ5" + }, + { + "id": "320680", + "ident": "CPJ6", + "type": "small_airport", + "name": "St-Pierre-Jolys (Carl's Field)", + "latitude_deg": "49.436", + "longitude_deg": "-96.927002", + "elevation_ft": "828", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "St-Pierre-Jolys", + "scheduled_service": "no", + "gps_code": "CPJ6", + "local_code": "CPJ6", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Pierre-Jolys_(Carl%27s_Field)_Aerodrome" + }, + { + "id": "1421", + "ident": "CPJ7", + "type": "heliport", + "name": "Kingston (General Hospital) Heliport", + "latitude_deg": "44.222145045", + "longitude_deg": "-76.4932590723", + "elevation_ft": "261", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kingston", + "scheduled_service": "no", + "gps_code": "CPJ7", + "local_code": "CPJ7", + "keywords": "PJ7" + }, + { + "id": "28309", + "ident": "CPJ9", + "type": "seaplane_base", + "name": "Manitowaning Seaplane Base", + "latitude_deg": "45.733297", + "longitude_deg": "-81.800001", + "elevation_ft": "581", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CPJ9", + "local_code": "CPJ9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manitowaning_Water_Aerodrome", + "keywords": "PR6" + }, + { + "id": "1422", + "ident": "CPK2", + "type": "small_airport", + "name": "Strathroy (Blue Yonder) Airport", + "latitude_deg": "42.96580123901367", + "longitude_deg": "-81.5916976928711", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Strathroy", + "scheduled_service": "no", + "gps_code": "CPK2", + "local_code": "CPK2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Strathroy_(Blue_Yonder)_Airport", + "keywords": "PK2" + }, + { + "id": "1423", + "ident": "CPK3", + "type": "heliport", + "name": "Hamilton (General Hospital) Heliport", + "latitude_deg": "43.26191223279999", + "longitude_deg": "-79.85472545030001", + "elevation_ft": "384", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "CPK3", + "local_code": "CPK3", + "keywords": "PK3" + }, + { + "id": "1424", + "ident": "CPK6", + "type": "heliport", + "name": "Toronto (Mississauga Credit Valley Hospital) Heliport", + "latitude_deg": "43.5614123982", + "longitude_deg": "-79.70273673530001", + "elevation_ft": "542", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Toronto", + "scheduled_service": "no", + "gps_code": "CPK6", + "local_code": "CPK6", + "keywords": "PK6" + }, + { + "id": "1425", + "ident": "CPK7", + "type": "heliport", + "name": "Ottawa (Children's Hospital) Heliport", + "latitude_deg": "45.4009821144", + "longitude_deg": "-75.6501294672", + "elevation_ft": "272", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ottawa", + "scheduled_service": "no", + "gps_code": "CPK7", + "local_code": "CPK7", + "keywords": "PK7" + }, + { + "id": "28394", + "ident": "CPK8", + "type": "seaplane_base", + "name": "Black Donald Lake Seaplane Base", + "latitude_deg": "45.20500183105469", + "longitude_deg": "-76.95670318603516", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Renfrew", + "scheduled_service": "no", + "gps_code": "CPK8", + "local_code": "CPK8" + }, + { + "id": "46601", + "ident": "CPK9", + "type": "small_airport", + "name": "Arthur (Peskett Field)", + "latitude_deg": "43.7715431648", + "longitude_deg": "-80.4835224152", + "elevation_ft": "1555", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CPK9", + "keywords": "PK9" + }, + { + "id": "1426", + "ident": "CPL2", + "type": "heliport", + "name": "Bracebridge (South Muskoka Memorial Hospital) Heliport", + "latitude_deg": "45.0487", + "longitude_deg": "-79.3151", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Bracebridge", + "scheduled_service": "no", + "gps_code": "CPL2", + "local_code": "CPL2", + "keywords": "PL2" + }, + { + "id": "1427", + "ident": "CPL3", + "type": "small_airport", + "name": "Kars / Rideau Valley Air Park", + "latitude_deg": "45.103062065299994", + "longitude_deg": "-75.6281661987", + "elevation_ft": "286", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kars", + "scheduled_service": "no", + "gps_code": "CPL3", + "local_code": "CPL3", + "home_link": "http://rvss.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kars/Rideau_Valley_Air_Park", + "keywords": "PL3" + }, + { + "id": "1428", + "ident": "CPL4", + "type": "small_airport", + "name": "Grand Bend Airport", + "latitude_deg": "43.28689956665039", + "longitude_deg": "-81.71420288085938", + "elevation_ft": "642", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Grand Bend", + "scheduled_service": "no", + "gps_code": "CPL4", + "local_code": "CPL4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Bend_Airport", + "keywords": "PL4" + }, + { + "id": "1429", + "ident": "CPL5", + "type": "closed", + "name": "Thessalon Municipal Airport", + "latitude_deg": "46.3167", + "longitude_deg": "-83.533302", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Thessalon", + "scheduled_service": "no", + "gps_code": "CPL5", + "local_code": "CPL5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thessalon_Municipal_Airport", + "keywords": "PL5" + }, + { + "id": "316996", + "ident": "CPL6", + "type": "small_airport", + "name": "Parkland Airport", + "latitude_deg": "53.474102", + "longitude_deg": "-113.824282", + "elevation_ft": "2324", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Edmonton", + "scheduled_service": "no", + "gps_code": "CPL6" + }, + { + "id": "1430", + "ident": "CPL7", + "type": "heliport", + "name": "Bowmanville (Memorial Hospital) Heliport", + "latitude_deg": "43.90950121109999", + "longitude_deg": "-78.6765195429", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Bowmanville", + "scheduled_service": "no", + "gps_code": "CPL7", + "local_code": "CPL7", + "keywords": "PL7" + }, + { + "id": "1431", + "ident": "CPL8", + "type": "heliport", + "name": "Cardinal Couriers Heliport", + "latitude_deg": "43.631272", + "longitude_deg": "-79.664703", + "elevation_ft": "612", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Toronto", + "scheduled_service": "no", + "gps_code": "CPL8", + "local_code": "CPL8" + }, + { + "id": "1432", + "ident": "CPM2", + "type": "closed", + "name": "Brampton (National P) Heliport", + "latitude_deg": "43.811584", + "longitude_deg": "-79.698442", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Brampton", + "scheduled_service": "no", + "keywords": "PM2, CPM2" + }, + { + "id": "307613", + "ident": "CPM3", + "type": "small_airport", + "name": "POURVOIRIE MIRAGE AERODROME", + "latitude_deg": "53.8025", + "longitude_deg": "-72.841389", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CPM3" + }, + { + "id": "1433", + "ident": "CPM5", + "type": "small_airport", + "name": "Volk Airport", + "latitude_deg": "43.993803", + "longitude_deg": "-79.778445", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Tottenham", + "scheduled_service": "no", + "gps_code": "CPM5", + "local_code": "CPM5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tottenham/Volk_Airport", + "keywords": "PM5" + }, + { + "id": "1434", + "ident": "CPM7", + "type": "small_airport", + "name": "Bradford Airport", + "latitude_deg": "44.13610076904297", + "longitude_deg": "-79.62889862060547", + "elevation_ft": "973", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Bradford", + "scheduled_service": "no", + "gps_code": "CPM7", + "local_code": "CPM7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bradford_Airport", + "keywords": "PM7" + }, + { + "id": "1435", + "ident": "CPN3", + "type": "heliport", + "name": "Moose Factory Heliport", + "latitude_deg": "51.2494010925293", + "longitude_deg": "-80.618896484375", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Moose Factory", + "scheduled_service": "no", + "gps_code": "CPN3", + "local_code": "CPN3", + "keywords": "PN3" + }, + { + "id": "1437", + "ident": "CPN5", + "type": "small_airport", + "name": "Listowel Airport", + "latitude_deg": "43.742803", + "longitude_deg": "-80.991402", + "elevation_ft": "1232", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Listowel", + "scheduled_service": "no", + "gps_code": "CPN5", + "local_code": "CPN5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Listowel_Airport", + "keywords": "NN4" + }, + { + "id": "28154", + "ident": "CPN6", + "type": "seaplane_base", + "name": "Algoma Mills Seaplane Base", + "latitude_deg": "46.18330001831055", + "longitude_deg": "-82.83329772949219", + "elevation_ft": "602", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CPN6", + "local_code": "CPN6" + }, + { + "id": "1438", + "ident": "CPN7", + "type": "heliport", + "name": "Carleton Place (District Memorial Hospital) Heliport", + "latitude_deg": "45.14176852959999", + "longitude_deg": "-76.13709926610001", + "elevation_ft": "436", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Carleton Place", + "scheduled_service": "no", + "gps_code": "CPN7", + "local_code": "CPN7", + "keywords": "PN7" + }, + { + "id": "320346", + "ident": "CPN8", + "type": "small_airport", + "name": "London (Pioneer Airpark)", + "latitude_deg": "43.0975", + "longitude_deg": "-81.234301", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "London", + "scheduled_service": "no", + "gps_code": "CPN8", + "local_code": "CPN8", + "wikipedia_link": "https://en.wikipedia.org/wiki/London_(Pioneer_Airpark)_Aerodrome" + }, + { + "id": "1439", + "ident": "CPP2", + "type": "heliport", + "name": "Collingwood (General and Marine Hospital) Heliport", + "latitude_deg": "44.499698638916016", + "longitude_deg": "-80.20330047607422", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Collingwood", + "scheduled_service": "no", + "gps_code": "CPP2", + "local_code": "CPP2", + "keywords": "PP2" + }, + { + "id": "314444", + "ident": "CPP3", + "type": "small_airport", + "name": "Port Perry / Hoskin Airport", + "latitude_deg": "44.061667", + "longitude_deg": "-78.885002", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Port Perry", + "scheduled_service": "no", + "gps_code": "CPP3", + "local_code": "CPP3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Perry/Hoskin_Aerodrome" + }, + { + "id": "1440", + "ident": "CPP6", + "type": "small_airport", + "name": "York Airport", + "latitude_deg": "43.037581", + "longitude_deg": "-79.853497", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "York", + "scheduled_service": "no", + "gps_code": "CPP6", + "local_code": "CPP6", + "wikipedia_link": "https://en.wikipedia.org/wiki/York_Airport_(Ontario)", + "keywords": "PP6" + }, + { + "id": "1441", + "ident": "CPP7", + "type": "heliport", + "name": "Ottawa (Civic Hospital) Heliport", + "latitude_deg": "45.391468", + "longitude_deg": "-75.720598", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ottawa", + "scheduled_service": "no", + "gps_code": "CPP7", + "local_code": "CPP7" + }, + { + "id": "1442", + "ident": "CPQ3", + "type": "heliport", + "name": "Niagara Falls Heliport", + "latitude_deg": "43.1190603068", + "longitude_deg": "-79.0753144026", + "elevation_ft": "589", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Niagara Falls", + "scheduled_service": "no", + "gps_code": "CPQ3", + "local_code": "CPQ3", + "keywords": "PQ3" + }, + { + "id": "1443", + "ident": "CPQ4", + "type": "closed", + "name": "Lefroy Airport", + "latitude_deg": "44.2919095924", + "longitude_deg": "-79.5472812653", + "elevation_ft": "724", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Lefroy", + "scheduled_service": "no", + "local_code": "CPQ4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lefroy_Airport", + "keywords": "PQ4" + }, + { + "id": "28296", + "ident": "CPQ6", + "type": "seaplane_base", + "name": "Lake Rosseau/Cameron Bay Seaplane Base", + "latitude_deg": "45.25", + "longitude_deg": "-79.650002", + "elevation_ft": "742", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Rosseau", + "scheduled_service": "no", + "gps_code": "CPQ6", + "local_code": "CPQ6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_Rosseau/Cameron_Bay_Water_Aerodrome", + "keywords": "PQ6" + }, + { + "id": "28418", + "ident": "CPQ7", + "type": "seaplane_base", + "name": "Skeleton Lake Seaplane Base", + "latitude_deg": "45.23189926147461", + "longitude_deg": "-79.43609619140625", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CPQ7", + "local_code": "CPQ7" + }, + { + "id": "1444", + "ident": "CPR2", + "type": "small_airport", + "name": "Ottawa / Embrun Airport", + "latitude_deg": "45.2411003112793", + "longitude_deg": "-75.29859924316406", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Embrun", + "scheduled_service": "no", + "gps_code": "CPR2", + "local_code": "CPR2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Embrun_Airport", + "keywords": "PR2" + }, + { + "id": "1445", + "ident": "CPR3", + "type": "small_airport", + "name": "Palmerston Airport", + "latitude_deg": "43.853599548339844", + "longitude_deg": "-80.7802963256836", + "elevation_ft": "1360", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Palmerston", + "scheduled_service": "no", + "gps_code": "CPR3", + "local_code": "CPR3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palmerston_Airport", + "keywords": "PR3" + }, + { + "id": "1446", + "ident": "CPR4", + "type": "heliport", + "name": "London (University Hospital) Heliport", + "latitude_deg": "43.0130545012", + "longitude_deg": "-81.2743918598", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "London", + "scheduled_service": "no", + "gps_code": "CPR4", + "local_code": "CPR4", + "keywords": "PR4" + }, + { + "id": "1447", + "ident": "CPR5", + "type": "small_airport", + "name": "Woodstock Airport", + "latitude_deg": "43.108268", + "longitude_deg": "-80.821867", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Woodstock", + "scheduled_service": "no", + "gps_code": "CPR5", + "local_code": "CPR5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Woodstock_Airport_(Ontario)", + "keywords": "PR5" + }, + { + "id": "1448", + "ident": "CPR7", + "type": "small_airport", + "name": "Wingham / Richard W. LeVan Airport", + "latitude_deg": "43.8675003052", + "longitude_deg": "-81.2985992432", + "elevation_ft": "1075", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Wingham", + "scheduled_service": "no", + "gps_code": "CPR7", + "local_code": "CPR7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wingham_Airport", + "keywords": "PR7" + }, + { + "id": "1449", + "ident": "CPR8", + "type": "heliport", + "name": "Pincher Creek (Hospital) Heliport", + "latitude_deg": "49.49250030517578", + "longitude_deg": "-113.9469985961914", + "elevation_ft": "3754", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Pincher Creek", + "scheduled_service": "no", + "gps_code": "CPR8", + "local_code": "CPR8", + "keywords": "PR8" + }, + { + "id": "46626", + "ident": "CPR9", + "type": "small_airport", + "name": "Fergus (Royland Field)", + "latitude_deg": "43.74175499689999", + "longitude_deg": "-80.38620114330001", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CPR9", + "keywords": "pr9" + }, + { + "id": "28358", + "ident": "CPS1", + "type": "seaplane_base", + "name": "Parry Sound Harbour Seaplane Base", + "latitude_deg": "45.33919906616211", + "longitude_deg": "-80.03469848632812", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CPS1", + "local_code": "CPS1" + }, + { + "id": "1450", + "ident": "CPS2", + "type": "small_airport", + "name": "Elmhirst's Resort Airport", + "latitude_deg": "44.251470223", + "longitude_deg": "-78.1072568893", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Keene", + "scheduled_service": "no", + "gps_code": "CPS2", + "local_code": "CPS2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Keene/Elmhirst's_Resort_Airport", + "keywords": "PS2" + }, + { + "id": "1451", + "ident": "CPS4", + "type": "small_airport", + "name": "Lucan Airport", + "latitude_deg": "43.1633", + "longitude_deg": "-81.412498", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Lucan", + "scheduled_service": "no", + "gps_code": "CPS4", + "local_code": "CPS4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lucan_Airport", + "keywords": "PS4" + }, + { + "id": "1452", + "ident": "CPS5", + "type": "small_airport", + "name": "Miminiska Airport", + "latitude_deg": "51.604400634765625", + "longitude_deg": "-88.58219909667969", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Miminiska", + "scheduled_service": "no", + "gps_code": "CPS5", + "local_code": "CPS5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miminiska_Airport", + "keywords": "PS5" + }, + { + "id": "1453", + "ident": "CPS6", + "type": "heliport", + "name": "Cornwall (Community Hospital McConnell Site) Heliport", + "latitude_deg": "45.020301818847656", + "longitude_deg": "-74.7177963256836", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Cornwall", + "scheduled_service": "no", + "gps_code": "CPS6", + "local_code": "CPS6", + "keywords": "PS6" + }, + { + "id": "1454", + "ident": "CPS7", + "type": "small_airport", + "name": "Orton / Smith Field", + "latitude_deg": "43.775385719199996", + "longitude_deg": "-80.22806882859999", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Orton", + "scheduled_service": "no", + "gps_code": "CPS7", + "local_code": "CPS7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orton/Smith_Field_Airport", + "keywords": "PS7" + }, + { + "id": "28359", + "ident": "CPS8", + "type": "seaplane_base", + "name": "Parry Sound/Huron Island Seaplane Base", + "latitude_deg": "45.17940139770508", + "longitude_deg": "-80.10669708251953", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CPS8", + "local_code": "CPS8" + }, + { + "id": "28357", + "ident": "CPS9", + "type": "seaplane_base", + "name": "Parry Sound/Frying Pan Island-Sans Souci Seaplane Base", + "latitude_deg": "45.173302", + "longitude_deg": "-80.137497", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Frying Pan Island", + "scheduled_service": "no", + "gps_code": "CPS9", + "iata_code": "YSI", + "local_code": "CPS9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Parry_Sound/Frying_Pan_Island-Sans_Souci_Water_Aerodrome" + }, + { + "id": "1455", + "ident": "CPT2", + "type": "small_airport", + "name": "Killarney Airport", + "latitude_deg": "45.977500915527344", + "longitude_deg": "-81.49469757080078", + "elevation_ft": "608", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Killarney", + "scheduled_service": "no", + "gps_code": "CPT2", + "local_code": "CPT2", + "home_link": "http://www.killarney.com/Getting_here/Killarney_airport/index.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Killarney_Airport", + "keywords": "PT2" + }, + { + "id": "1456", + "ident": "CPT3", + "type": "small_airport", + "name": "Rockton Airport", + "latitude_deg": "43.322200775146484", + "longitude_deg": "-80.17639923095703", + "elevation_ft": "846", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Rockton", + "scheduled_service": "no", + "gps_code": "CPT3", + "local_code": "CPT3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rockton_Airport", + "keywords": "PT3" + }, + { + "id": "28171", + "ident": "CPT5", + "type": "closed", + "name": "Barrie/Little Lake Seaplane Base", + "latitude_deg": "44.418735", + "longitude_deg": "-79.665545", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Barrie", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barrie/Little_Lake_Water_Aerodrome", + "keywords": "CPT5, PT5" + }, + { + "id": "28366", + "ident": "CPT6", + "type": "seaplane_base", + "name": "Perry Lake Seaplane Base", + "latitude_deg": "48.532501", + "longitude_deg": "-80.107202", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CPT6", + "local_code": "CPT6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Perry_Lake_Water_Aerodrome", + "keywords": "PT6" + }, + { + "id": "28314", + "ident": "CPT7", + "type": "seaplane_base", + "name": "Mattawa Seaplane Base", + "latitude_deg": "46.3114013671875", + "longitude_deg": "-78.7228012084961", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CPT7", + "local_code": "CPT7" + }, + { + "id": "28355", + "ident": "CPT8", + "type": "seaplane_base", + "name": "Parry Sound/Deep Bay Seaplane Base", + "latitude_deg": "45.39860153198242", + "longitude_deg": "-80.18190002441406", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CPT8", + "local_code": "CPT8" + }, + { + "id": "320482", + "ident": "CPT9", + "type": "small_airport", + "name": "Pintendre Airport", + "latitude_deg": "46.7584", + "longitude_deg": "-71.110202", + "elevation_ft": "269", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Pintendre", + "scheduled_service": "no", + "gps_code": "CPT9", + "local_code": "CPT9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pintendre_Aerodrome" + }, + { + "id": "1457", + "ident": "CPU2", + "type": "heliport", + "name": "Kincardine (South Bruce Grey Health Centre Hospital) Heliport", + "latitude_deg": "44.18752", + "longitude_deg": "-81.624459", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kincardine", + "scheduled_service": "no", + "gps_code": "CPU2", + "local_code": "CPU2" + }, + { + "id": "1458", + "ident": "CPU3", + "type": "small_airport", + "name": "Rodney (New Glasgow) Airport", + "latitude_deg": "42.531932", + "longitude_deg": "-81.605937", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Rodney", + "scheduled_service": "no", + "gps_code": "CPU3", + "local_code": "CPU3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rodney_(New_Glasgow)_Airport", + "keywords": "PU3" + }, + { + "id": "1459", + "ident": "CPU4", + "type": "heliport", + "name": "Manitouwadge (General Hospital) Heliport", + "latitude_deg": "49.128284", + "longitude_deg": "-85.825088", + "elevation_ft": "1052", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Manitouwadge", + "scheduled_service": "no", + "gps_code": "CPU4", + "local_code": "CPU4" + }, + { + "id": "28348", + "ident": "CPU5", + "type": "seaplane_base", + "name": "Orillia/Matchedash Lake Seaplane Base", + "latitude_deg": "44.788927", + "longitude_deg": "-79.500205", + "elevation_ft": "738", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Orillia", + "scheduled_service": "no", + "gps_code": "CPU5", + "local_code": "CPU5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orillia/Matchedash_Lake_Water_Aerodrome", + "keywords": "PU5" + }, + { + "id": "1460", + "ident": "CPU6", + "type": "small_airport", + "name": "Tyendinaga Mohawk Airport", + "latitude_deg": "44.18470001220703", + "longitude_deg": "-77.10780334472656", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Tyendinaga", + "scheduled_service": "no", + "gps_code": "CPU6", + "local_code": "CPU6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tyendinaga_(Mohawk)_Airport", + "keywords": "PU6, Deseronto Airport, Napanee" + }, + { + "id": "1461", + "ident": "CPV2", + "type": "small_airport", + "name": "Orangeville / Castlewood Field", + "latitude_deg": "43.958599", + "longitude_deg": "-80.154999", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Orangeville", + "scheduled_service": "no", + "gps_code": "CPV2", + "local_code": "CPV2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orangeville/Murray_Wesley_Kot_Field_Airport", + "keywords": "PV2" + }, + { + "id": "1462", + "ident": "CPV3", + "type": "small_airport", + "name": "St. Joseph Island Airport", + "latitude_deg": "46.28329849243164", + "longitude_deg": "-83.94999694824219", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "St. Joseph Island", + "scheduled_service": "no", + "gps_code": "CPV3", + "local_code": "CPV3", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Joseph_Island_Airport", + "keywords": "PV3" + }, + { + "id": "1463", + "ident": "CPV4", + "type": "small_airport", + "name": "Mansfield Airport", + "latitude_deg": "44.143921883199994", + "longitude_deg": "-80.0136208534", + "elevation_ft": "995", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Mansfield", + "scheduled_service": "no", + "gps_code": "CPV4", + "local_code": "CPV4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mansfield_Airport", + "keywords": "PV4" + }, + { + "id": "28257", + "ident": "CPV5", + "type": "seaplane_base", + "name": "Head Lake Seaplane Base", + "latitude_deg": "44.721401", + "longitude_deg": "-78.910797", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CPV5", + "local_code": "CPV5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Head_Lake_Water_Aerodrome", + "keywords": "PV5" + }, + { + "id": "1464", + "ident": "CPV6", + "type": "heliport", + "name": "Barry's Bay (St. Francis Memorial Hospital) Heliport", + "latitude_deg": "45.481807", + "longitude_deg": "-77.695194", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Barry's Bay", + "scheduled_service": "no", + "gps_code": "CPV6", + "local_code": "CPV6" + }, + { + "id": "1465", + "ident": "CPV7", + "type": "small_airport", + "name": "Poplar Hill Airport", + "latitude_deg": "52.1133", + "longitude_deg": "-94.2556", + "elevation_ft": "1095", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Poplar Hill", + "scheduled_service": "yes", + "gps_code": "CYHP", + "iata_code": "YHP", + "local_code": "CPV7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Poplar_Hill_Airport" + }, + { + "id": "1466", + "ident": "CPV8", + "type": "small_airport", + "name": "Keewaywin Airport", + "latitude_deg": "52.9911", + "longitude_deg": "-92.836403", + "elevation_ft": "988", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Keewaywin", + "scheduled_service": "no", + "gps_code": "CPV8", + "iata_code": "KEW", + "local_code": "CPV8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Keewaywin_Airport" + }, + { + "id": "320488", + "ident": "CPV9", + "type": "small_airport", + "name": "Poverty Valley Airport", + "latitude_deg": "50.038096", + "longitude_deg": "-107.255051", + "elevation_ft": "2589", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Poverty Valley", + "scheduled_service": "no", + "gps_code": "CPV9", + "local_code": "CPV9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Poverty_Valley_Aerodrome" + }, + { + "id": "1467", + "ident": "CPW2", + "type": "heliport", + "name": "London (Victoria Hospital) Heliport", + "latitude_deg": "42.9590666613", + "longitude_deg": "-81.2255716324", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "London", + "scheduled_service": "no", + "gps_code": "CPW2", + "local_code": "CPW2", + "keywords": "PW2" + }, + { + "id": "1468", + "ident": "CPW3", + "type": "closed", + "name": "Nobleton Airport", + "latitude_deg": "43.93669891357422", + "longitude_deg": "-79.67970275878906", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Nobleton", + "scheduled_service": "no", + "gps_code": "CPW3", + "local_code": "CPW3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nobleton_Airport", + "keywords": "PW3" + }, + { + "id": "28445", + "ident": "CPW5", + "type": "seaplane_base", + "name": "Timmins/Porcupine Lake Seaplane Base", + "latitude_deg": "48.483297", + "longitude_deg": "-81.199997", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CPW5", + "local_code": "CPW5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Timmins/Porcupine_Lake_Water_Aerodrome", + "keywords": "PW5" + }, + { + "id": "1469", + "ident": "CPW6", + "type": "heliport", + "name": "Midland (Huronia District Hospital) Heliport", + "latitude_deg": "44.74169921875", + "longitude_deg": "-79.91439819335938", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Midland", + "scheduled_service": "no", + "gps_code": "CPW6", + "local_code": "CPW6", + "keywords": "PW6" + }, + { + "id": "1470", + "ident": "CPW8", + "type": "heliport", + "name": "Powell River (Hospital) Heliport", + "latitude_deg": "49.851447", + "longitude_deg": "-124.517455", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Powell River", + "scheduled_service": "no", + "gps_code": "CPW8", + "local_code": "CPW8", + "keywords": "PW8" + }, + { + "id": "28373", + "ident": "CPW9", + "type": "seaplane_base", + "name": "Port Alberni Seaplane Base", + "latitude_deg": "49.23189926147461", + "longitude_deg": "-124.81500244140625", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CPW9", + "local_code": "CPW9" + }, + { + "id": "1471", + "ident": "CPX2", + "type": "heliport", + "name": "Marathon (Wilson Memorial Hospital) Heliport", + "latitude_deg": "48.71860122680664", + "longitude_deg": "-86.37470245361328", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Marathon", + "scheduled_service": "no", + "gps_code": "CPX2", + "local_code": "CPX2", + "keywords": "PX2" + }, + { + "id": "1472", + "ident": "CPX3", + "type": "closed", + "name": "New Liskeard Airport", + "latitude_deg": "47.53329849243164", + "longitude_deg": "-79.61669921875", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "New Liskeard", + "scheduled_service": "no", + "gps_code": "CPX3", + "local_code": "CPX3", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Liskeard_Airport", + "keywords": "PX3" + }, + { + "id": "1473", + "ident": "CPX5", + "type": "closed", + "name": "Port Colborne (General Hospital) Heliport", + "latitude_deg": "42.8785566729", + "longitude_deg": "-79.25957947970001", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Port Colborne", + "scheduled_service": "no", + "gps_code": "CPX5", + "local_code": "CPX5", + "keywords": "PX5" + }, + { + "id": "1474", + "ident": "CPX6", + "type": "heliport", + "name": "Port Perry (Community Memorial Hospital) Heliport", + "latitude_deg": "44.104863829900005", + "longitude_deg": "-78.95409196620001", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Port Perry", + "scheduled_service": "no", + "gps_code": "CPX6", + "local_code": "CPX6", + "keywords": "PX6" + }, + { + "id": "28408", + "ident": "CPX8", + "type": "seaplane_base", + "name": "Sault Ste. Marie Seaplane Base", + "latitude_deg": "46.504398345947266", + "longitude_deg": "-84.32330322265625", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CPX8", + "local_code": "CPX8" + }, + { + "id": "1475", + "ident": "CPY2", + "type": "heliport", + "name": "Milton (District Hospital) Heliport", + "latitude_deg": "43.4958882862", + "longitude_deg": "-79.86969083550001", + "elevation_ft": "657", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "CPY2", + "local_code": "CPY2", + "keywords": "PY2" + }, + { + "id": "1476", + "ident": "CPY3", + "type": "heliport", + "name": "Beardmore (Health Centre) Heliport", + "latitude_deg": "49.60860061645508", + "longitude_deg": "-87.9531021118164", + "elevation_ft": "1015", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Beardmore", + "scheduled_service": "no", + "gps_code": "CPY3", + "local_code": "CPY3", + "keywords": "PY3" + }, + { + "id": "1477", + "ident": "CPY4", + "type": "closed", + "name": "Norwood Airport", + "latitude_deg": "44.36500167849999", + "longitude_deg": "-77.9997024536", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Norwood", + "scheduled_service": "no", + "gps_code": "CPY4", + "local_code": "CPY4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Norwood_Airport", + "keywords": "PY4" + }, + { + "id": "1478", + "ident": "CPY5", + "type": "heliport", + "name": "Wilson's Heliport", + "latitude_deg": "43.617781271199995", + "longitude_deg": "-79.5639659464", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Toronto", + "scheduled_service": "no", + "gps_code": "CPY5", + "local_code": "CPY5", + "keywords": "PY5" + }, + { + "id": "28264", + "ident": "CPY7", + "type": "seaplane_base", + "name": "Huntsville/Bella Lake Seaplane Base", + "latitude_deg": "45.45280075073242", + "longitude_deg": "-79.02559661865234", + "elevation_ft": "1168", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CPY7", + "local_code": "CPY7" + }, + { + "id": "28376", + "ident": "CPY8", + "type": "seaplane_base", + "name": "Port Carling/Butterfly Lake Seaplane Base", + "latitude_deg": "45.09389877319336", + "longitude_deg": "-79.63059997558594", + "elevation_ft": "765", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CPY8", + "local_code": "CPY8" + }, + { + "id": "46618", + "ident": "CPY9", + "type": "small_airport", + "name": "Fergus (Holyoake Airfield)", + "latitude_deg": "43.728611111", + "longitude_deg": "-80.28305555559999", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CPY9", + "keywords": "py9" + }, + { + "id": "1479", + "ident": "CPZ2", + "type": "heliport", + "name": "Alliston (Stevenson Memorial Hospital) Heliport", + "latitude_deg": "44.1554191206", + "longitude_deg": "-79.8737168312", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Alliston", + "scheduled_service": "no", + "gps_code": "CPZ2", + "local_code": "CPZ2", + "keywords": "PZ2" + }, + { + "id": "1480", + "ident": "CPZ3", + "type": "small_airport", + "name": "Trenton / Mountain View Airport", + "latitude_deg": "44.0694007874", + "longitude_deg": "-77.3380966187", + "elevation_ft": "362", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Prince Edward County", + "scheduled_service": "no", + "gps_code": "CPZ3", + "local_code": "CPZ3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mountain_View_Airport", + "keywords": "PZ3" + }, + { + "id": "298390", + "ident": "CPZ6", + "type": "heliport", + "name": "Montreal / Point Zero Helipad", + "latitude_deg": "45.529803", + "longitude_deg": "-73.657787", + "elevation_ft": "152", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montreal", + "scheduled_service": "no", + "gps_code": "CPZ6", + "local_code": "CPZ6", + "keywords": "PZ6" + }, + { + "id": "28307", + "ident": "CPZ7", + "type": "seaplane_base", + "name": "MacTier/Francis Island Seaplane Base", + "latitude_deg": "45.150299072265625", + "longitude_deg": "-80.01920318603516", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CPZ7", + "local_code": "CPZ7" + }, + { + "id": "28448", + "ident": "CPZ9", + "type": "seaplane_base", + "name": "Toronto/City Centre Seaplane Base", + "latitude_deg": "43.633099", + "longitude_deg": "-79.394402", + "elevation_ft": "246", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Toronto", + "scheduled_service": "no", + "gps_code": "CPZ9", + "local_code": "CPZ9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Billy_Bishop_Toronto_City_Water_Aerodrome", + "keywords": "PZ9, Toronto Island Water Aerodrome, Billy Bishop Toronto City Water Aerodrome" + }, + { + "id": "350793", + "ident": "CQH2", + "type": "heliport", + "name": "Ottawa / Questral Helicopters Heliport", + "latitude_deg": "45.29917", + "longitude_deg": "-75.5", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ottawa", + "scheduled_service": "no", + "gps_code": "CQH2", + "home_link": "https://www.questralhelicopters.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Ottawa_area" + }, + { + "id": "326325", + "ident": "CR-0001", + "type": "small_airport", + "name": "Potrero Grande Airfield", + "latitude_deg": "9.012758", + "longitude_deg": "-83.180511", + "elevation_ft": "546", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Potrero Grande", + "scheduled_service": "no" + }, + { + "id": "326326", + "ident": "CR-0002", + "type": "closed", + "name": "Toro Rojo Airstrip", + "latitude_deg": "9.070512", + "longitude_deg": "-83.084948", + "elevation_ft": "3182", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "scheduled_service": "no" + }, + { + "id": "326327", + "ident": "CR-0003", + "type": "closed", + "name": "Colorado Airstrip", + "latitude_deg": "9.011229", + "longitude_deg": "-83.043617", + "elevation_ft": "2526", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "scheduled_service": "no" + }, + { + "id": "341969", + "ident": "CR-0004", + "type": "heliport", + "name": "México Hospital Heliport", + "latitude_deg": "9.952", + "longitude_deg": "-84.1145", + "elevation_ft": "3520", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-SJ", + "municipality": "San José", + "scheduled_service": "no" + }, + { + "id": "346876", + "ident": "CR-0005", + "type": "small_airport", + "name": "Rancho del Mar Airport", + "latitude_deg": "8.43267", + "longitude_deg": "-83.10151", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Puerto Pilon", + "scheduled_service": "no" + }, + { + "id": "355460", + "ident": "CR8A", + "type": "heliport", + "name": "Reef Hueston Helicopter Landing", + "latitude_deg": "53.823101", + "longitude_deg": "-126.172228", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Streatham", + "scheduled_service": "no", + "gps_code": "CR8A", + "iata_code": "XVQ", + "local_code": "XV8" + }, + { + "id": "320492", + "ident": "CRA2", + "type": "small_airport", + "name": "Rollick Airpark", + "latitude_deg": "44.1406", + "longitude_deg": "-79.484802", + "elevation_ft": "726", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Queensville", + "scheduled_service": "no", + "gps_code": "CRA2", + "local_code": "CRA2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Queensville_(Rollick_Airpark)_Aerodrome" + }, + { + "id": "322377", + "ident": "CRAI", + "type": "small_airport", + "name": "Craig's Field", + "latitude_deg": "30.49617", + "longitude_deg": "-91.919207", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Leonville", + "scheduled_service": "no" + }, + { + "id": "1481", + "ident": "CRB2", + "type": "small_airport", + "name": "Cottam Airport", + "latitude_deg": "42.13999938964844", + "longitude_deg": "-82.65280151367188", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Cottam", + "scheduled_service": "no", + "gps_code": "CRB2", + "local_code": "CRB2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cottam_Airport", + "keywords": "RB2" + }, + { + "id": "1482", + "ident": "CRB4", + "type": "small_airport", + "name": "Rivière Bonnard Airport", + "latitude_deg": "50.70439910888672", + "longitude_deg": "-71.1624984741211", + "elevation_ft": "1585", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Rivière Bonnard", + "scheduled_service": "no", + "gps_code": "CRB4", + "local_code": "CRB4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rivi%C3%A8re_Bonnard_Airport", + "keywords": "RB4" + }, + { + "id": "1483", + "ident": "CRB5", + "type": "small_airport", + "name": "Rivière Bell Aerodrome", + "latitude_deg": "49.078899383499994", + "longitude_deg": "-62.2369003296", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Rivière Bell", + "scheduled_service": "no", + "gps_code": "CRB5", + "local_code": "CRB5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rivi%C3%A8re_Bell_Aerodrome", + "keywords": "RB5" + }, + { + "id": "28397", + "ident": "CRB7", + "type": "seaplane_base", + "name": "Cardinal Aviation Seaplane Base", + "latitude_deg": "45.54750061035156", + "longitude_deg": "-75.62779998779297", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Rivière Blanche", + "scheduled_service": "no", + "gps_code": "CRB7", + "local_code": "CRB7" + }, + { + "id": "1484", + "ident": "CRC2", + "type": "heliport", + "name": "Fredericton (RCMP) Heliport", + "latitude_deg": "45.931740055599995", + "longitude_deg": "-66.66668057439999", + "elevation_ft": "369", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Fredericton", + "scheduled_service": "no", + "gps_code": "CRC2", + "local_code": "CRC2", + "keywords": "RC2" + }, + { + "id": "320664", + "ident": "CRC3", + "type": "small_airport", + "name": "Ross Creek Airport", + "latitude_deg": "50.965502", + "longitude_deg": "-119.2254", + "elevation_ft": "1257", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Ross Creek", + "scheduled_service": "no", + "gps_code": "CRC3", + "local_code": "CRC3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ross_Creek_Aerodrome" + }, + { + "id": "1485", + "ident": "CRD3", + "type": "heliport", + "name": "Red Deer Regional Hospital Centre Heliport", + "latitude_deg": "52.26190185546875", + "longitude_deg": "-113.81600189208984", + "elevation_ft": "2877", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Red Deer", + "scheduled_service": "no", + "gps_code": "CRD3", + "local_code": "CRD3", + "keywords": "RD3" + }, + { + "id": "45218", + "ident": "CRD4", + "type": "closed", + "name": "Red Deer / South 40 Airstrip", + "latitude_deg": "52.261944", + "longitude_deg": "-113.951389", + "elevation_ft": "3040", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "gps_code": "CRD4", + "local_code": "CRD4" + }, + { + "id": "301228", + "ident": "CRD5", + "type": "small_airport", + "name": "Red Deer / Truant Airfield", + "latitude_deg": "52.287043", + "longitude_deg": "-113.913181", + "elevation_ft": "3100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Red Deer", + "scheduled_service": "no", + "gps_code": "CRD5" + }, + { + "id": "320497", + "ident": "CRD6", + "type": "small_airport", + "name": "Truant South Airport", + "latitude_deg": "52.2782", + "longitude_deg": "-113.9151", + "elevation_ft": "3122", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Red Deer", + "scheduled_service": "no", + "gps_code": "CRD6", + "local_code": "CRD6" + }, + { + "id": "1486", + "ident": "CRE2", + "type": "small_airport", + "name": "Edzo Airport", + "latitude_deg": "62.766701", + "longitude_deg": "-116.084", + "elevation_ft": "587", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Rae-Edzo", + "scheduled_service": "no", + "gps_code": "CRE2", + "local_code": "CRE2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rae/Edzo_Airport", + "keywords": "RE2" + }, + { + "id": "46538", + "ident": "CRE3", + "type": "small_airport", + "name": "Rand Private Airfield", + "latitude_deg": "43.066501", + "longitude_deg": "-80.6986", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Curries", + "scheduled_service": "no", + "gps_code": "CRE3", + "local_code": "CRE3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Curries_(Rand_Private_Airfield)_Aerodrome" + }, + { + "id": "1487", + "ident": "CRF2", + "type": "heliport", + "name": "Langley (Russell Farm) Heliport", + "latitude_deg": "49.0110458923", + "longitude_deg": "-122.672213316", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Langley", + "scheduled_service": "no", + "gps_code": "CRF2", + "local_code": "CRF2", + "keywords": "RF2" + }, + { + "id": "46528", + "ident": "CRF3", + "type": "small_airport", + "name": "Edmonton / Villeneuve (Rose Field)", + "latitude_deg": "53.645556", + "longitude_deg": "-113.802778", + "elevation_ft": "2190", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Villeneuve", + "scheduled_service": "no", + "gps_code": "CRF3", + "local_code": "CRF3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Edmonton/Villeneuve_(Rose_Field)_Aerodrome" + }, + { + "id": "46532", + "ident": "CRF4", + "type": "small_airport", + "name": "Calgary / Okotoks (Rowland Field)", + "latitude_deg": "50.764722223", + "longitude_deg": "-113.958055556", + "elevation_ft": "3800", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "no", + "gps_code": "CRF4", + "local_code": "CRF4", + "keywords": "RF4" + }, + { + "id": "320683", + "ident": "CRF5", + "type": "small_airport", + "name": "Saskatoon/Richter Field Airport", + "latitude_deg": "52.280342", + "longitude_deg": "-106.684242", + "elevation_ft": "1700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Martensville", + "scheduled_service": "no", + "gps_code": "CRF5", + "local_code": "CRF5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saskatoon/Richter_Field_Aerodrome" + }, + { + "id": "321883", + "ident": "CRF6", + "type": "seaplane_base", + "name": "Quamichan Lake (Raven Field) Seaplane Base", + "latitude_deg": "48.8083", + "longitude_deg": "-123.650001", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CRF6", + "local_code": "CRF6" + }, + { + "id": "320337", + "ident": "CRG2", + "type": "heliport", + "name": "Argus Heliport", + "latitude_deg": "49.9616", + "longitude_deg": "-119.445801", + "elevation_ft": "1894", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kelowna", + "scheduled_service": "no", + "gps_code": "CRG2", + "local_code": "CRG2" + }, + { + "id": "320193", + "ident": "CRG3", + "type": "small_airport", + "name": "Bouthillier Airport", + "latitude_deg": "45.4778", + "longitude_deg": "-73.3016", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Carignan", + "scheduled_service": "no", + "gps_code": "CRG3", + "local_code": "CRG3" + }, + { + "id": "1488", + "ident": "CRH2", + "type": "heliport", + "name": "Coronation (Health Centre) Heliport", + "latitude_deg": "52.096071", + "longitude_deg": "-111.459752", + "elevation_ft": "2614", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Coronation", + "scheduled_service": "no", + "gps_code": "CRH2", + "local_code": "CRH2" + }, + { + "id": "1489", + "ident": "CRH5", + "type": "heliport", + "name": "Rimbey (Hospital & Care Centre) Heliport", + "latitude_deg": "52.6406155976", + "longitude_deg": "-114.247781038", + "elevation_ft": "3067", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Rimbey", + "scheduled_service": "no", + "gps_code": "CRH5", + "local_code": "CRH5", + "keywords": "RH5" + }, + { + "id": "355458", + "ident": "CRHA", + "type": "small_airport", + "name": "Reef Hueston Airport", + "latitude_deg": "53.822569", + "longitude_deg": "-126.172957", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Streatham", + "scheduled_service": "yes", + "gps_code": "CRHA", + "local_code": "CRHA" + }, + { + "id": "44372", + "ident": "CRJ2", + "type": "small_airport", + "name": "Stoney Point (Trepanier)", + "latitude_deg": "42.28888702392578", + "longitude_deg": "-82.59833526611328", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CRJ2" + }, + { + "id": "320351", + "ident": "CRK2", + "type": "small_airport", + "name": "Millet/Creekview Airport", + "latitude_deg": "53.0778", + "longitude_deg": "-113.506601", + "elevation_ft": "2535", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Millet", + "scheduled_service": "no", + "gps_code": "CRK2", + "local_code": "CRK2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Millet/Creekview_Aerodrome" + }, + { + "id": "1490", + "ident": "CRL2", + "type": "small_airport", + "name": "Westport / Rideau Lakes Airport", + "latitude_deg": "44.666665176600006", + "longitude_deg": "-76.3966673613", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Westport", + "scheduled_service": "no", + "gps_code": "CRL2", + "local_code": "CRL2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Westport/Rideau_Lakes_Airport", + "keywords": "RL2" + }, + { + "id": "1491", + "ident": "CRL3", + "type": "heliport", + "name": "Red Lake (Margaret Cochenour Memorial Hospital) Heliport", + "latitude_deg": "51.01359939575195", + "longitude_deg": "-93.8218994140625", + "elevation_ft": "1254", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Red Lake", + "scheduled_service": "no", + "gps_code": "CRL3", + "local_code": "CRL3", + "keywords": "RL3" + }, + { + "id": "1492", + "ident": "CRL4", + "type": "small_airport", + "name": "Kirby Lake Airport", + "latitude_deg": "55.355598", + "longitude_deg": "-110.637001", + "elevation_ft": "2260", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Kirby Lake", + "scheduled_service": "no", + "gps_code": "CRL4", + "iata_code": "KFM", + "local_code": "CRL4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kirby_Lake_Airport" + }, + { + "id": "320880", + "ident": "CRL6", + "type": "seaplane_base", + "name": "West Guilford/Redstone Lake Water Aerodrome", + "latitude_deg": "45.21", + "longitude_deg": "-78.546002", + "elevation_ft": "1198", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "West Guilford", + "scheduled_service": "no", + "gps_code": "CRL6", + "local_code": "CRL6", + "wikipedia_link": "https://en.wikipedia.org/wiki/West_Guilford/Redstone_Lake_Water_Aerodrome" + }, + { + "id": "301229", + "ident": "CRL7", + "type": "small_airport", + "name": "Reindeer Lake / Lindbergh Lodge Airstrip", + "latitude_deg": "57.28805555", + "longitude_deg": "-102.525", + "elevation_ft": "1128", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "scheduled_service": "no", + "gps_code": "CRL7" + }, + { + "id": "320785", + "ident": "CRL8", + "type": "seaplane_base", + "name": "Roberts Lake Seaplane Base", + "latitude_deg": "45.249602", + "longitude_deg": "-79.8258", + "elevation_ft": "813", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Parry Sound", + "scheduled_service": "no", + "gps_code": "CRL8", + "local_code": "CRL8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Parry_Sound_(Roberts_Lake)_Water_Aerodrome" + }, + { + "id": "1493", + "ident": "CRM2", + "type": "small_airport", + "name": "Riding Mountain Airport", + "latitude_deg": "50.57360076904297", + "longitude_deg": "-99.36139678955078", + "elevation_ft": "1016", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Riding Mountain", + "scheduled_service": "no", + "gps_code": "CRM2", + "local_code": "CRM2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Riding_Mountain_Airport", + "keywords": "RM2" + }, + { + "id": "320662", + "ident": "CRM3", + "type": "small_airport", + "name": "Richelieu/Messier Airport", + "latitude_deg": "45.3779", + "longitude_deg": "-73.2267", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Richelieu", + "scheduled_service": "no", + "gps_code": "CRM3", + "local_code": "CRM3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Richelieu/Messier_Aerodrome" + }, + { + "id": "320220", + "ident": "CRM4", + "type": "small_airport", + "name": "Cormier Airport", + "latitude_deg": "46.1808", + "longitude_deg": "-64.3758", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Cormier", + "scheduled_service": "no", + "gps_code": "CRM4", + "local_code": "CRM4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cormier_Aerodrome" + }, + { + "id": "321786", + "ident": "CRM5", + "type": "small_airport", + "name": "Wheatly (Robinson Motorcycles) Airfield", + "latitude_deg": "42.143056", + "longitude_deg": "-82.3625", + "elevation_ft": "617", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Coatsworth", + "scheduled_service": "no", + "gps_code": "CRM5", + "local_code": "CRM5" + }, + { + "id": "1494", + "ident": "CRML", + "type": "small_airport", + "name": "Stoney Point (Le Cunff) Airport", + "latitude_deg": "42.29560089111328", + "longitude_deg": "-82.53500366210938", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Stoney Point", + "scheduled_service": "no", + "gps_code": "CRML", + "local_code": "CRML", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stoney_Point_(Le_Cunff)_Airport", + "keywords": "RML" + }, + { + "id": "1495", + "ident": "CRP2", + "type": "small_airport", + "name": "R.M. of Pipestone Airport", + "latitude_deg": "49.58060073852539", + "longitude_deg": "-101.0530014038086", + "elevation_ft": "1488", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Reston", + "scheduled_service": "no", + "gps_code": "CRP2", + "local_code": "CRP2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Reston/R.M._of_Pipestone_Airport", + "keywords": "RP2" + }, + { + "id": "320661", + "ident": "CRQ2", + "type": "heliport", + "name": "Regina General Hospital Helipad", + "latitude_deg": "50.444008", + "longitude_deg": "-104.601327", + "elevation_ft": "1981", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Regina", + "scheduled_service": "no", + "gps_code": "CRQ2", + "local_code": "CRQ2" + }, + { + "id": "1496", + "ident": "CRS2", + "type": "heliport", + "name": "Parry Sound Medical Heliport", + "latitude_deg": "45.34170150756836", + "longitude_deg": "-80.0167007446289", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Parry Sound", + "scheduled_service": "no", + "gps_code": "CRS2", + "local_code": "CRS2", + "keywords": "RS2" + }, + { + "id": "300229", + "ident": "CRS3", + "type": "small_airport", + "name": "Calgary / Christiansen Field", + "latitude_deg": "50.7994796471", + "longitude_deg": "-114.051260948", + "elevation_ft": "3820", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "no", + "gps_code": "CRS3", + "local_code": "CRS3" + }, + { + "id": "320665", + "ident": "CRS4", + "type": "small_airport", + "name": "Rosseau Airport", + "latitude_deg": "45.2691", + "longitude_deg": "-79.6558", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CRS4", + "local_code": "CRS4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rosseau_Aerodrome" + }, + { + "id": "301323", + "ident": "crs7", + "type": "small_airport", + "name": "Matoush Airport", + "latitude_deg": "51.905", + "longitude_deg": "-72.12388888", + "elevation_ft": "2608", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CRS7" + }, + { + "id": "300230", + "ident": "crt2", + "type": "small_airport", + "name": "Rivière Témiscamie (Air Roberval Ltée) Airport", + "latitude_deg": "51.009247", + "longitude_deg": "-72.983594", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Roberval", + "scheduled_service": "no", + "gps_code": "CRT2", + "local_code": "CRT2", + "home_link": "http://www.airroberval.com/" + }, + { + "id": "1497", + "ident": "CRV2", + "type": "heliport", + "name": "Barrie (Royal Victoria Hospital) Heliport", + "latitude_deg": "44.414409544799994", + "longitude_deg": "-79.66574370859999", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Barrie", + "scheduled_service": "no", + "gps_code": "CRV2", + "local_code": "CRV2", + "keywords": "RV2" + }, + { + "id": "314211", + "ident": "CRV8", + "type": "seaplane_base", + "name": "Arviat Water Aerodrome", + "latitude_deg": "61.1472", + "longitude_deg": "-94.1158", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Arviat", + "scheduled_service": "no", + "gps_code": "CRV8", + "local_code": "CRV8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arviat_Water_Aerodrome" + }, + { + "id": "46499", + "ident": "CRW2", + "type": "heliport", + "name": "Redwater (Heliworks) Heliport", + "latitude_deg": "53.919252", + "longitude_deg": "-113.104248", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "gps_code": "CRW2", + "local_code": "CRW2" + }, + { + "id": "320498", + "ident": "CRW8", + "type": "heliport", + "name": "Redwater Health Centre Heliport", + "latitude_deg": "53.9498", + "longitude_deg": "-113.1271", + "elevation_ft": "2090", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Redwater", + "scheduled_service": "no", + "gps_code": "CRW8", + "local_code": "CRW8", + "home_link": "http://www.albertahealthservices.ca/lnfo/facility.aspx?id=8928", + "wikipedia_link": "https://en.wikipedia.org/wiki/Redwater_Health_Centre" + }, + { + "id": "298325", + "ident": "CSA", + "type": "small_airport", + "name": "Aerocampo CSA airport", + "latitude_deg": "-31.661454441500002", + "longitude_deg": "-63.277130127", + "elevation_ft": "630", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Calchin", + "scheduled_service": "no", + "gps_code": "CSA", + "local_code": "CSA" + }, + { + "id": "1498", + "ident": "CSA2", + "type": "small_airport", + "name": "Lac Agile (Mascouche) Airport", + "latitude_deg": "45.791900634765625", + "longitude_deg": "-73.63809967041016", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Lac Agile", + "scheduled_service": "no", + "gps_code": "CSA2", + "local_code": "CSA2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lac_Agile_(Mascouche)_Airport", + "keywords": "SA2" + }, + { + "id": "46527", + "ident": "CSA3", + "type": "heliport", + "name": "Edmonton / Sturgeon Community Hospital Heliport", + "latitude_deg": "53.654578", + "longitude_deg": "-113.627361", + "elevation_ft": "2251", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "gps_code": "CSA3", + "local_code": "CSA3" + }, + { + "id": "28323", + "ident": "CSA4", + "type": "seaplane_base", + "name": "Boisvert & Fils Seaplane Base", + "latitude_deg": "45.645599365234375", + "longitude_deg": "-73.5969009399414", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montréal", + "scheduled_service": "no", + "gps_code": "CSA4", + "local_code": "CSA4" + }, + { + "id": "320784", + "ident": "CSA5", + "type": "seaplane_base", + "name": "St-Charles-de-Bourget Water Aerodrome", + "latitude_deg": "48.509103", + "longitude_deg": "-71.4632", + "elevation_ft": "227", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Saguenay", + "scheduled_service": "no", + "gps_code": "CSA5", + "local_code": "CSA5" + }, + { + "id": "28212", + "ident": "CSA7", + "type": "seaplane_base", + "name": "Drummondville Seaplane Base", + "latitude_deg": "45.854401", + "longitude_deg": "-72.389395", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Drummondville", + "scheduled_service": "no", + "gps_code": "CSA7", + "local_code": "CSA7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Drummondville_Water_Aerodrome", + "keywords": "SA7" + }, + { + "id": "320783", + "ident": "CSA8", + "type": "seaplane_base", + "name": "Saguenay (Harvey) Water Aerodrome", + "latitude_deg": "48.44", + "longitude_deg": "-71.13", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Saguenay", + "scheduled_service": "no", + "gps_code": "CSA8", + "local_code": "CSA8" + }, + { + "id": "28281", + "ident": "CSA9", + "type": "seaplane_base", + "name": "Lac-Des-Îles Seaplane Base", + "latitude_deg": "46.4119", + "longitude_deg": "-75.519995", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CSA9", + "local_code": "CSA9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lac-des-%C3%8Eles_Water_Aerodrome", + "keywords": "SA9" + }, + { + "id": "44427", + "ident": "CSB2", + "type": "small_airport", + "name": "Sable Island Landing Strip", + "latitude_deg": "43.930951", + "longitude_deg": "-59.996147", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Sable Island", + "scheduled_service": "no", + "gps_code": "CSB2", + "iata_code": "YSA", + "local_code": "CSB2", + "home_link": "http://www.sableislandairport.com/Photo-Gallery-1.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sable_Island_Aerodrome", + "keywords": "CYSA" + }, + { + "id": "1499", + "ident": "CSB3", + "type": "small_airport", + "name": "St-Mathieu-De-Beloeil Airport", + "latitude_deg": "45.59000015258789", + "longitude_deg": "-73.23860168457031", + "elevation_ft": "47", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Mathieu-De-Beloeil", + "scheduled_service": "no", + "gps_code": "CSB3", + "local_code": "CSB3", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Mathieu-De-Beloeil_Airport", + "keywords": "SB3" + }, + { + "id": "1500", + "ident": "CSB4", + "type": "heliport", + "name": "Chibougamau Heliport", + "latitude_deg": "49.900002", + "longitude_deg": "-74.383302", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Chibougamau", + "scheduled_service": "no", + "gps_code": "CSB4", + "local_code": "CSB4", + "keywords": "SB4," + }, + { + "id": "1501", + "ident": "CSB5", + "type": "small_airport", + "name": "Shediac Bridge Airport", + "latitude_deg": "46.25469970703125", + "longitude_deg": "-64.57669830322266", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Shediac Bridge", + "scheduled_service": "no", + "gps_code": "CSB5", + "local_code": "CSB5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shediac_Bridge_Airport", + "keywords": "SB5" + }, + { + "id": "28322", + "ident": "CSB6", + "type": "seaplane_base", + "name": "Montebello Seaplane Base", + "latitude_deg": "45.6338996887207", + "longitude_deg": "-74.97750091552734", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montebello", + "scheduled_service": "no", + "gps_code": "CSB6", + "local_code": "CSB6" + }, + { + "id": "28352", + "ident": "CSB9", + "type": "closed", + "name": "Parc De La Vérendrye (Le Domaine) Seaplane Base", + "latitude_deg": "47.036701", + "longitude_deg": "-76.536697", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CSB9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Parc_de_la_Vérendrye_(Le_Domaine)_Water_Aerodrome", + "keywords": "CSB9, SB9" + }, + { + "id": "1502", + "ident": "CSC3", + "type": "small_airport", + "name": "Drummondville Airport", + "latitude_deg": "45.845298767089844", + "longitude_deg": "-72.39469909667969", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Drummondville", + "scheduled_service": "no", + "gps_code": "CSC3", + "local_code": "CSC3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Drummondville_Airport", + "keywords": "SC3" + }, + { + "id": "1503", + "ident": "CSC5", + "type": "closed", + "name": "Lac Etchemin Airport", + "latitude_deg": "46.4072", + "longitude_deg": "-70.501404", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Lac Etchemin", + "scheduled_service": "no", + "gps_code": "CSC5", + "local_code": "CSC5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lac_Etchemin_Airport", + "keywords": "SC5" + }, + { + "id": "28158", + "ident": "CSC6", + "type": "seaplane_base", + "name": "Amos (Lac Figuery) Seaplane Base", + "latitude_deg": "48.499698638916016", + "longitude_deg": "-78.1177978515625", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CSC6", + "local_code": "CSC6" + }, + { + "id": "1504", + "ident": "CSC9", + "type": "small_airport", + "name": "Sudbury / Coniston Airport", + "latitude_deg": "46.4822006226", + "longitude_deg": "-80.8339004517", + "elevation_ft": "886", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Sudbury", + "scheduled_service": "no", + "gps_code": "CSC9", + "local_code": "CSC9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sudbury/Coniston_Airport", + "keywords": "SC9" + }, + { + "id": "1505", + "ident": "CSD2", + "type": "heliport", + "name": "Sundre (Hospital & Health Care Centre) Heliport", + "latitude_deg": "51.807165301400005", + "longitude_deg": "-114.636540413", + "elevation_ft": "3589", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Sundre", + "scheduled_service": "no", + "gps_code": "CSD2", + "local_code": "CSD2", + "keywords": "SD2" + }, + { + "id": "1506", + "ident": "CSD3", + "type": "small_airport", + "name": "Valleyfield Airport", + "latitude_deg": "45.20830154418945", + "longitude_deg": "-74.14140319824219", + "elevation_ft": "155", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Valleyfield", + "scheduled_service": "no", + "gps_code": "CSD3", + "local_code": "CSD3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valleyfield_Airport", + "keywords": "SD3" + }, + { + "id": "1507", + "ident": "CSD4", + "type": "small_airport", + "name": "Mont Laurier Airport", + "latitude_deg": "46.56439971923828", + "longitude_deg": "-75.57779693603516", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Mont-Laurier", + "scheduled_service": "no", + "gps_code": "CSD4", + "local_code": "CSD4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mont-Laurier_Airport", + "keywords": "SD4" + }, + { + "id": "1508", + "ident": "CSD5", + "type": "heliport", + "name": "Fermont Heliport", + "latitude_deg": "52.80609893798828", + "longitude_deg": "-67.10220336914062", + "elevation_ft": "2009", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Fermont", + "scheduled_service": "no", + "gps_code": "CSD5", + "local_code": "CSD5", + "keywords": "SD5" + }, + { + "id": "28165", + "ident": "CSD6", + "type": "seaplane_base", + "name": "Baie-Comeau Water Aerodrome", + "latitude_deg": "49.204201", + "longitude_deg": "-68.340599", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Baie-Comeau", + "scheduled_service": "no", + "gps_code": "CSD6", + "local_code": "CSD6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baie-Comeau_Water_Aerodrome", + "keywords": "SD6" + }, + { + "id": "314907", + "ident": "CSD7", + "type": "small_airport", + "name": "Sunderland field/Blackwater creek", + "latitude_deg": "44.227233", + "longitude_deg": "-79.097314", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "North Durham and Kawartha Lakes", + "scheduled_service": "no", + "gps_code": "CSD7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sunderland,_Ontario" + }, + { + "id": "28353", + "ident": "CSD9", + "type": "seaplane_base", + "name": "Parc Gatineau Seaplane Base", + "latitude_deg": "45.6833", + "longitude_deg": "-76.208603", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "La Peche", + "scheduled_service": "no", + "gps_code": "CSD9", + "local_code": "CSD9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Parc_Gatineau_Water_Aerodrome", + "keywords": "SD9, Gatineau Park" + }, + { + "id": "1509", + "ident": "CSE2", + "type": "heliport", + "name": "Chibougamau (Hydro-Québec) Heliport", + "latitude_deg": "49.88779830932617", + "longitude_deg": "-74.40029907226562", + "elevation_ft": "1270", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Chibougamau", + "scheduled_service": "no", + "gps_code": "CSE2", + "local_code": "CSE2", + "keywords": "SE2" + }, + { + "id": "1510", + "ident": "CSE3", + "type": "small_airport", + "name": "Lourdes-De-Joliette Airport", + "latitude_deg": "46.10940170288086", + "longitude_deg": "-73.45279693603516", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Lourdes-De-Joliette", + "scheduled_service": "no", + "gps_code": "CSE3", + "local_code": "CSE3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lourdes-De-Joliette_Airport", + "keywords": "SE3" + }, + { + "id": "1511", + "ident": "CSE4", + "type": "small_airport", + "name": "Lachute Airport", + "latitude_deg": "45.639400482177734", + "longitude_deg": "-74.37059783935547", + "elevation_ft": "221", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Lachute", + "scheduled_service": "no", + "gps_code": "CSE4", + "local_code": "CSE4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lachute_Airport", + "keywords": "SE4" + }, + { + "id": "1512", + "ident": "CSE5", + "type": "small_airport", + "name": "Montmagny Airport", + "latitude_deg": "47.000834", + "longitude_deg": "-70.518293", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montmagny", + "scheduled_service": "no", + "gps_code": "CSE5", + "local_code": "CSE5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Montmagny_Airport", + "keywords": "SE5" + }, + { + "id": "28321", + "ident": "CSE6", + "type": "seaplane_base", + "name": "Mistissini Seaplane Base", + "latitude_deg": "50.41669845581055", + "longitude_deg": "-73.86669921875", + "elevation_ft": "1229", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CSE6", + "local_code": "CSE6" + }, + { + "id": "1513", + "ident": "CSE7", + "type": "heliport", + "name": "Delta (SEI) Heliport", + "latitude_deg": "49.129088", + "longitude_deg": "-123.018395", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Vancouver", + "scheduled_service": "no", + "gps_code": "CSE7", + "local_code": "CSE7", + "keywords": "SE7" + }, + { + "id": "28325", + "ident": "CSE8", + "type": "seaplane_base", + "name": "Lac Duhamel Seaplane Base", + "latitude_deg": "46.14080047607422", + "longitude_deg": "-74.6417007446289", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Mont-Tremblant", + "scheduled_service": "no", + "gps_code": "CSE8", + "local_code": "CSE8" + }, + { + "id": "28354", + "ident": "CSE9", + "type": "seaplane_base", + "name": "Parent Seaplane Base", + "latitude_deg": "47.89189910888672", + "longitude_deg": "-74.6406021118164", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CSE9", + "local_code": "CSE9" + }, + { + "id": "320332", + "ident": "CSF2", + "type": "closed", + "name": "Innisfail Hospital Heliport", + "latitude_deg": "52.019302", + "longitude_deg": "-113.9536", + "elevation_ft": "3141", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Innisfail", + "scheduled_service": "no", + "gps_code": "CSF2", + "local_code": "CSF2" + }, + { + "id": "1514", + "ident": "CSF3", + "type": "small_airport", + "name": "Poste Montagnais (Mile 134) Airport", + "latitude_deg": "51.88859939575195", + "longitude_deg": "-65.71499633789062", + "elevation_ft": "1987", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Poste Montagnais", + "scheduled_service": "no", + "gps_code": "CSF3", + "local_code": "CSF3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Poste_Montagnais_(Mile_134)_Airport", + "keywords": "SF3" + }, + { + "id": "325559", + "ident": "CSF4", + "type": "small_airport", + "name": "Shelburne (Schaefer Field)", + "latitude_deg": "44.008903", + "longitude_deg": "-80.262597", + "elevation_ft": "1620", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CSF4" + }, + { + "id": "320349", + "ident": "CSF5", + "type": "small_airport", + "name": "Safron Farms Airport", + "latitude_deg": "52.199", + "longitude_deg": "-114.237301", + "elevation_ft": "3005", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Markerville", + "scheduled_service": "no", + "gps_code": "CSF5", + "local_code": "CSF5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Markerville/Safron_Farms_Aerodrome" + }, + { + "id": "1515", + "ident": "CSF6", + "type": "heliport", + "name": "Ste-Marguerite Heliport", + "latitude_deg": "46.03110122680664", + "longitude_deg": "-74.05329895019531", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Ste-Marguerite", + "scheduled_service": "no", + "gps_code": "CSF6", + "local_code": "CSF6", + "keywords": "SF6" + }, + { + "id": "298394", + "ident": "CSF7", + "type": "small_airport", + "name": "Ottawa / Casselman (Shea Field)", + "latitude_deg": "45.299675", + "longitude_deg": "-75.171504", + "elevation_ft": "216", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ottawa", + "scheduled_service": "no", + "gps_code": "CSF7", + "local_code": "CSF7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ottawa/Casselman_(Shea_Field)_Aerodrome" + }, + { + "id": "28285", + "ident": "CSF8", + "type": "closed", + "name": "Lac Kaiagamac Seaplane Base", + "latitude_deg": "46.651699", + "longitude_deg": "-73.894995", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "local_code": "SF8" + }, + { + "id": "1516", + "ident": "CSG2", + "type": "heliport", + "name": "East Angus Heliport", + "latitude_deg": "45.483299255371094", + "longitude_deg": "-71.66670227050781", + "elevation_ft": "597", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "East Angus", + "scheduled_service": "no", + "gps_code": "CSG2", + "local_code": "CSG2", + "keywords": "SG2" + }, + { + "id": "1517", + "ident": "CSG3", + "type": "small_airport", + "name": "Joliette Airport", + "latitude_deg": "46.044998", + "longitude_deg": "-73.501701", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Joliette", + "scheduled_service": "no", + "gps_code": "CSG3", + "local_code": "CSG3", + "home_link": "https://www.facebook.com/Aeroport.Joliette", + "wikipedia_link": "https://en.wikipedia.org/wiki/Joliette_Airport", + "keywords": "SG3" + }, + { + "id": "1518", + "ident": "CSG5", + "type": "small_airport", + "name": "St Jean Chrysostome Airport", + "latitude_deg": "46.685298919677734", + "longitude_deg": "-71.15170288085938", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Jean Chrysostome", + "scheduled_service": "no", + "gps_code": "CSG5", + "local_code": "CSG5", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Jean_Chrysostome_Airport", + "keywords": "SG5" + }, + { + "id": "46525", + "ident": "CSG6", + "type": "heliport", + "name": "Edmonton / Kelsonae Heliport", + "latitude_deg": "53.36661", + "longitude_deg": "-113.837505", + "elevation_ft": "2325", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "gps_code": "CSG6", + "local_code": "CSG6" + }, + { + "id": "1519", + "ident": "CSG7", + "type": "heliport", + "name": "François Desourdy Heliport", + "latitude_deg": "45.44969940185547", + "longitude_deg": "-71.868896484375", + "elevation_ft": "722", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Sherbrooke", + "scheduled_service": "no", + "gps_code": "CSG7", + "local_code": "CSG7", + "keywords": "SG7" + }, + { + "id": "28440", + "ident": "CSG8", + "type": "closed", + "name": "Témiscaming/Lac Kipawa Seaplane Base", + "latitude_deg": "46.7778015137", + "longitude_deg": "-78.97139739990001", + "elevation_ft": "884", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CSG8", + "local_code": "CSG8" + }, + { + "id": "320668", + "ident": "CSG9", + "type": "heliport", + "name": "Sagard Heliport", + "latitude_deg": "47.990844", + "longitude_deg": "-70.0774864", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Sagard", + "scheduled_service": "no", + "gps_code": "CSG9", + "local_code": "CSG9" + }, + { + "id": "1520", + "ident": "CSH2", + "type": "small_airport", + "name": "Île-aux-Grues Airport", + "latitude_deg": "47.072402", + "longitude_deg": "-70.533235", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "L'Isle-aux-Grues", + "scheduled_service": "no", + "gps_code": "CSH2", + "local_code": "CSH2", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%8Ele-aux-Grues_Airport", + "keywords": "SH2" + }, + { + "id": "1521", + "ident": "CSH4", + "type": "small_airport", + "name": "Lebel-sur-Quevillon Airport", + "latitude_deg": "49.0303001404", + "longitude_deg": "-77.0171966553", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Lebel-sur-Quévillon", + "scheduled_service": "no", + "gps_code": "CSH4", + "iata_code": "YLS", + "local_code": "CSH4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lebel-sur-Qu%C3%A9villon_Airport", + "keywords": "SH4" + }, + { + "id": "1522", + "ident": "CSH5", + "type": "small_airport", + "name": "Saint-Ferdinand Airport", + "latitude_deg": "46.126099", + "longitude_deg": "-71.536102", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Saint-Ferdinand", + "scheduled_service": "no", + "gps_code": "CSH5", + "local_code": "CSH5", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Ferdinand_Airport", + "keywords": "St-Ferdinand" + }, + { + "id": "1523", + "ident": "CSH6", + "type": "heliport", + "name": "Montreal / Les Cèdres Heliport", + "latitude_deg": "45.347165", + "longitude_deg": "-74.086985", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montréal", + "scheduled_service": "no", + "gps_code": "CSH6", + "local_code": "CSH6" + }, + { + "id": "356279", + "ident": "CSH7", + "type": "closed", + "name": "Quebec Police Heliport", + "latitude_deg": "45.395527", + "longitude_deg": "-71.944764", + "elevation_ft": "617", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Sherbrooke", + "scheduled_service": "no", + "gps_code": "CSH7", + "local_code": "CSH7" + }, + { + "id": "28308", + "ident": "CSH8", + "type": "seaplane_base", + "name": "Manicouagan/Lac Louise Seaplane Base", + "latitude_deg": "50.657501220703125", + "longitude_deg": "-68.82279968261719", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CSH8", + "local_code": "CSH8" + }, + { + "id": "1524", + "ident": "CSH9", + "type": "heliport", + "name": "Montréal East (AIM) Heliport", + "latitude_deg": "45.635193", + "longitude_deg": "-73.562138", + "elevation_ft": "179", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montréal", + "scheduled_service": "no", + "gps_code": "CSH9", + "local_code": "CSH9" + }, + { + "id": "1525", + "ident": "CSJ2", + "type": "small_airport", + "name": "Kanawata Aeroparc Airport", + "latitude_deg": "47.59469985961914", + "longitude_deg": "-74.13359832763672", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Kanawata", + "scheduled_service": "no", + "gps_code": "CSJ2", + "local_code": "CSJ2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kanawata_Aeroparc", + "keywords": "SJ2" + }, + { + "id": "320308", + "ident": "CSJ3", + "type": "heliport", + "name": "St. Joseph's Hospital Helipad", + "latitude_deg": "49.152903", + "longitude_deg": "-103.013001", + "elevation_ft": "1881", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Estevan", + "scheduled_service": "no", + "gps_code": "CSJ3", + "local_code": "CSJ3" + }, + { + "id": "1526", + "ident": "CSJ4", + "type": "small_airport", + "name": "Louiseville Airport", + "latitude_deg": "46.245468", + "longitude_deg": "-72.90897", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Louiseville", + "scheduled_service": "no", + "gps_code": "CSJ4", + "local_code": "CSJ4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Louiseville_Airport", + "keywords": "SJ4" + }, + { + "id": "1527", + "ident": "CSJ5", + "type": "small_airport", + "name": "St-Louis-de-France Airport", + "latitude_deg": "46.436903", + "longitude_deg": "-72.630079", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Louis-de-France", + "scheduled_service": "no", + "gps_code": "CSJ5", + "local_code": "CSJ5", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Louis-De-France_Airport", + "keywords": "SJ5" + }, + { + "id": "1528", + "ident": "CSK3", + "type": "closed", + "name": "Montreal / Mascouche Airport", + "latitude_deg": "45.718601", + "longitude_deg": "-73.598099", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montréal", + "scheduled_service": "no", + "gps_code": "CSK3", + "local_code": "CSK3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Montr%C3%A9al/Mascouche_Airport", + "keywords": "SK3" + }, + { + "id": "1529", + "ident": "CSK4", + "type": "small_airport", + "name": "Mansonville Airport", + "latitude_deg": "45.02640151977539", + "longitude_deg": "-72.40190124511719", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Mansonville", + "scheduled_service": "no", + "gps_code": "CSK4", + "local_code": "CSK4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mansonville_Airport", + "keywords": "SK4" + }, + { + "id": "1530", + "ident": "CSK5", + "type": "small_airport", + "name": "Paquet Airport", + "latitude_deg": "46.89500045776367", + "longitude_deg": "-71.78579711914062", + "elevation_ft": "582", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Raymond", + "scheduled_service": "no", + "gps_code": "CSK5", + "local_code": "CSK5", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Raymond/Paquet_Airport", + "keywords": "SK5" + }, + { + "id": "1531", + "ident": "CSK6", + "type": "small_airport", + "name": "Snap Lake Airport", + "latitude_deg": "63.593601", + "longitude_deg": "-110.905998", + "elevation_ft": "1557", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Snap Lake Mine", + "scheduled_service": "no", + "gps_code": "CSK6", + "iata_code": "YNX", + "local_code": "CSK6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Snap_Lake_Airport", + "keywords": "SK6" + }, + { + "id": "1532", + "ident": "CSK8", + "type": "closed", + "name": "King George Airpark", + "latitude_deg": "49.093248", + "longitude_deg": "-122.822493", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Surrey", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Surrey/King_George_Airpark", + "keywords": "CSK8" + }, + { + "id": "1533", + "ident": "CSK9", + "type": "heliport", + "name": "Nicolet Heliport", + "latitude_deg": "46.220298767089844", + "longitude_deg": "-72.64779663085938", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Nicolet", + "scheduled_service": "no", + "gps_code": "CSK9", + "local_code": "CSK9", + "keywords": "SK9" + }, + { + "id": "16955", + "ident": "CSL", + "type": "heliport", + "name": "O'Sullivan Army Heliport", + "latitude_deg": "35.3263", + "longitude_deg": "-120.7431", + "elevation_ft": "238", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Camp San Luis Obispo", + "scheduled_service": "no", + "gps_code": "KCSL", + "local_code": "CSL", + "wikipedia_link": "https://en.wikipedia.org/wiki/O%27Sullivan_Army_Heliport" + }, + { + "id": "1534", + "ident": "CSL2", + "type": "heliport", + "name": "La Sarre Heliport", + "latitude_deg": "48.80860137939453", + "longitude_deg": "-79.25170135498047", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "La Sarre", + "scheduled_service": "no", + "gps_code": "CSL2", + "local_code": "CSL2", + "keywords": "SL2" + }, + { + "id": "1535", + "ident": "CSL3", + "type": "small_airport", + "name": "Lac a la Tortue Airport", + "latitude_deg": "46.621700286865234", + "longitude_deg": "-72.63030242919922", + "elevation_ft": "434", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Lac-à-la-Tortue", + "scheduled_service": "no", + "gps_code": "CSL3", + "local_code": "CSL3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lac-%C3%A0-la-Tortue_Airport", + "keywords": "SL3" + }, + { + "id": "1536", + "ident": "CSL5", + "type": "small_airport", + "name": "St-Victor-De-Beauce Airport", + "latitude_deg": "46.11830139160156", + "longitude_deg": "-70.88919830322266", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Victor-De-Beauce", + "scheduled_service": "no", + "gps_code": "CSL5", + "local_code": "CSL5", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Victor-De-Beauce_Airport", + "keywords": "SL5" + }, + { + "id": "44371", + "ident": "CSL6", + "type": "heliport", + "name": "Slave Lake / Slave Lake Helicopters", + "latitude_deg": "55.2933349609375", + "longitude_deg": "-114.78138732910156", + "elevation_ft": "1902", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CSL6" + }, + { + "id": "46493", + "ident": "CSL7", + "type": "small_airport", + "name": "Odessa / Strawberry Lakes Airstrip", + "latitude_deg": "50.3645177502", + "longitude_deg": "-103.74080658", + "elevation_ft": "2160", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Qu'Appelle", + "scheduled_service": "no", + "gps_code": "CSL7", + "local_code": "CSL7", + "home_link": "http://www.soar.regina.sk.ca/", + "keywords": "SL7" + }, + { + "id": "46621", + "ident": "CSL8", + "type": "heliport", + "name": "Sudbury / Laurentian (Hospital)", + "latitude_deg": "46.4666476682", + "longitude_deg": "-80.9964895248", + "elevation_ft": "985", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CSL8", + "keywords": "sl8" + }, + { + "id": "1537", + "ident": "CSL9", + "type": "small_airport", + "name": "Baie-Comeau (Manic 1) Airport", + "latitude_deg": "49.18439865112305", + "longitude_deg": "-68.36250305175781", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Baie-Comeau", + "scheduled_service": "no", + "gps_code": "CSL9", + "local_code": "CSL9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baie-Comeau_(Manic_1)_Airport", + "keywords": "SL9" + }, + { + "id": "320696", + "ident": "CSM2", + "type": "heliport", + "name": "Strathmore Hospital Heliport", + "latitude_deg": "51.0599", + "longitude_deg": "-113.3862", + "elevation_ft": "3222", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Strathmore", + "scheduled_service": "no", + "gps_code": "CSM2", + "local_code": "CSM2" + }, + { + "id": "1538", + "ident": "CSM3", + "type": "small_airport", + "name": "Thetford Mines Airport", + "latitude_deg": "46.051700592041016", + "longitude_deg": "-71.2572021484375", + "elevation_ft": "1408", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Thetford Mines", + "scheduled_service": "no", + "gps_code": "CSM3", + "local_code": "CSM3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thetford_Mines_Airport", + "keywords": "SM3" + }, + { + "id": "1539", + "ident": "CSM4", + "type": "closed", + "name": "Ste-Julienne Airport", + "latitude_deg": "45.9407997131", + "longitude_deg": "-73.7238998413", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Ste-Julienne", + "scheduled_service": "no", + "gps_code": "CSM4", + "local_code": "CSM4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ste-Julienne_Airport", + "keywords": "SM4" + }, + { + "id": "1540", + "ident": "CSM5", + "type": "small_airport", + "name": "St-Michel-Des-Saints Airport", + "latitude_deg": "46.68080139160156", + "longitude_deg": "-73.99359893798828", + "elevation_ft": "1372", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Michel-Des-Saints", + "scheduled_service": "no", + "gps_code": "CSM5", + "local_code": "CSM5", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Michel-Des-Saints_Airport", + "keywords": "SM5" + }, + { + "id": "28310", + "ident": "CSM6", + "type": "seaplane_base", + "name": "Blue Sea Lake Seaplane Base", + "latitude_deg": "46.2421989440918", + "longitude_deg": "-76.04830169677734", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Maniwaki", + "scheduled_service": "no", + "gps_code": "CSM6", + "local_code": "CSM6" + }, + { + "id": "299268", + "ident": "csm7", + "type": "heliport", + "name": "Abbotsford (Sumas Mountain) Heliport", + "latitude_deg": "49.105322", + "longitude_deg": "-122.197441", + "elevation_ft": "1067", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Abbotsford", + "scheduled_service": "no", + "gps_code": "CSM7" + }, + { + "id": "28413", + "ident": "CSM8", + "type": "seaplane_base", + "name": "Sept-Îles/Lac des Rapides Water Aerodrome", + "latitude_deg": "50.298901", + "longitude_deg": "-66.415604", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Sept-Îles", + "scheduled_service": "no", + "gps_code": "CSM8", + "local_code": "CSM8" + }, + { + "id": "320692", + "ident": "CSM9", + "type": "heliport", + "name": "Sault Area Hospital Heliport", + "latitude_deg": "46.5474", + "longitude_deg": "-84.312601", + "elevation_ft": "797", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Sault Ste. Marie", + "scheduled_service": "no", + "gps_code": "CSM9", + "local_code": "CSM9" + }, + { + "id": "1541", + "ident": "CSN2", + "type": "heliport", + "name": "Montreal / Kruger Heliport", + "latitude_deg": "45.507349751199996", + "longitude_deg": "-73.6360439658", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montréal", + "scheduled_service": "no", + "gps_code": "CSN2", + "local_code": "CSN2", + "keywords": "SN2" + }, + { + "id": "1542", + "ident": "CSN3", + "type": "small_airport", + "name": "St-Jérôme Airport", + "latitude_deg": "45.7803", + "longitude_deg": "-74.061897", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Jérôme", + "scheduled_service": "no", + "gps_code": "CSN3", + "local_code": "CSN3", + "home_link": "https://parachuteadrenaline.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-J%C3%A9r%C3%B4me_Airport", + "keywords": "SN3" + }, + { + "id": "335909", + "ident": "CSN4", + "type": "heliport", + "name": "Woodstock/Snokist Heliport", + "latitude_deg": "46.202784", + "longitude_deg": "-67.659436", + "elevation_ft": "481", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Woodstock", + "scheduled_service": "no", + "gps_code": "CSN4", + "local_code": "CSN4" + }, + { + "id": "1543", + "ident": "CSN5", + "type": "small_airport", + "name": "Stanhope Airport", + "latitude_deg": "45.01572", + "longitude_deg": "-71.793888", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Stanhope", + "scheduled_service": "no", + "gps_code": "CSN5", + "local_code": "CSN5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stanhope_Airport", + "keywords": "SN5" + }, + { + "id": "1544", + "ident": "CSN6", + "type": "heliport", + "name": "Saint John (Saint John Regional Hospital) Heliport", + "latitude_deg": "45.3021352054", + "longitude_deg": "-66.0879027843", + "elevation_ft": "246", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Saint John", + "scheduled_service": "no", + "gps_code": "CSN6", + "local_code": "CSN6", + "keywords": "SN6" + }, + { + "id": "1545", + "ident": "CSN7", + "type": "small_airport", + "name": "Farnham Airport", + "latitude_deg": "45.28559875488281", + "longitude_deg": "-73.00779724121094", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Farnham", + "scheduled_service": "no", + "gps_code": "CSN7", + "local_code": "CSN7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Farnham_Airport", + "keywords": "SN7" + }, + { + "id": "28388", + "ident": "CSN8", + "type": "seaplane_base", + "name": "Québec/Lac St-Augustin Seaplane Base", + "latitude_deg": "46.751399993896484", + "longitude_deg": "-71.39420318603516", + "elevation_ft": "133", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CSN8", + "local_code": "CSN8", + "keywords": "Quebec City" + }, + { + "id": "1546", + "ident": "CSN9", + "type": "heliport", + "name": "Baie-Comeau / Héli-Manicouagan Heliport", + "latitude_deg": "49.1989559539", + "longitude_deg": "-68.28541785479999", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Baie-Comeau", + "scheduled_service": "no", + "gps_code": "CSN9", + "local_code": "CSN9", + "keywords": "SN9" + }, + { + "id": "16956", + "ident": "CSP", + "type": "heliport", + "name": "Cape Spencer C.G. Heliport", + "latitude_deg": "58.19910049439999", + "longitude_deg": "-136.639007568", + "elevation_ft": "84", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cape Spencer", + "scheduled_service": "no", + "gps_code": "PACA", + "local_code": "CSP" + }, + { + "id": "1547", + "ident": "CSP2", + "type": "heliport", + "name": "Stony Plain (Westview Health Centre) Heliport", + "latitude_deg": "53.5373346229", + "longitude_deg": "-113.97831291", + "elevation_ft": "2311", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Stony Plain", + "scheduled_service": "no", + "gps_code": "CSP2", + "local_code": "CSP2", + "keywords": "SP2" + }, + { + "id": "1548", + "ident": "CSP3", + "type": "small_airport", + "name": "Stony Plain (Lichtner Farms) Airport", + "latitude_deg": "53.537498474121094", + "longitude_deg": "-114.06800079345703", + "elevation_ft": "2415", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Stony Plain", + "scheduled_service": "no", + "gps_code": "CSP3", + "local_code": "CSP3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stony_Plain_(Lichtner_Farms)_Airport", + "keywords": "SP3" + }, + { + "id": "1549", + "ident": "CSP5", + "type": "small_airport", + "name": "St-Mathias Airport", + "latitude_deg": "45.50080108642578", + "longitude_deg": "-73.24169921875", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Mathias", + "scheduled_service": "no", + "gps_code": "CSP5", + "local_code": "CSP5", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Mathias_Airport", + "keywords": "SP5" + }, + { + "id": "1550", + "ident": "CSP6", + "type": "small_airport", + "name": "Montreal / Aéroparc Île Perrot", + "latitude_deg": "45.376098632799994", + "longitude_deg": "-73.9072036743", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montréal", + "scheduled_service": "no", + "gps_code": "CSP6", + "local_code": "CSP6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Montr%C3%A9al/A%C3%A9roparc_%C3%8Ele_Perrot", + "keywords": "SP6" + }, + { + "id": "28289", + "ident": "CSP8", + "type": "seaplane_base", + "name": "Lac Sept-Îles Seaplane Base", + "latitude_deg": "46.939701", + "longitude_deg": "-71.745003", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CSP8", + "local_code": "CSP8", + "keywords": "SP8" + }, + { + "id": "28401", + "ident": "CSP9", + "type": "seaplane_base", + "name": "Ste-Anne-Du-Lac Seaplane Base", + "latitude_deg": "46.881901", + "longitude_deg": "-75.321702", + "elevation_ft": "817", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CSP9", + "local_code": "CSP9", + "keywords": "SP9" + }, + { + "id": "1551", + "ident": "CSQ3", + "type": "small_airport", + "name": "Valcourt Airport", + "latitude_deg": "45.48109817504883", + "longitude_deg": "-72.310302734375", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Valcourt", + "scheduled_service": "no", + "gps_code": "CSQ3", + "local_code": "CSQ3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valcourt_Airport", + "keywords": "SQ3" + }, + { + "id": "16957", + "ident": "CSR", + "type": "small_airport", + "name": "Campbell Airstrip", + "latitude_deg": "61.15869903564453", + "longitude_deg": "-149.781005859375", + "elevation_ft": "286", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchorage", + "scheduled_service": "no", + "gps_code": "CSR", + "local_code": "CSR" + }, + { + "id": "1552", + "ident": "CSR3", + "type": "small_airport", + "name": "Victoriaville Airport", + "latitude_deg": "46.110604", + "longitude_deg": "-71.931906", + "elevation_ft": "486", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Victoriaville", + "scheduled_service": "no", + "gps_code": "CSR3", + "local_code": "CSR3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Victoriaville_Airport", + "keywords": "SR3" + }, + { + "id": "1553", + "ident": "CSR4", + "type": "closed", + "name": "Rimouski (Hydro-Québec) Heliport", + "latitude_deg": "48.44110107421875", + "longitude_deg": "-68.5425033569336", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Rimouski", + "scheduled_service": "no", + "gps_code": "CSR4", + "local_code": "CSR4", + "keywords": "SR4" + }, + { + "id": "1554", + "ident": "CSR5", + "type": "heliport", + "name": "Île d'Orléans (Heliport)", + "latitude_deg": "46.99079895019531", + "longitude_deg": "-70.82669830322266", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Île d'Orléans", + "scheduled_service": "no", + "gps_code": "CSR5", + "local_code": "CSR5", + "keywords": "SR5" + }, + { + "id": "1555", + "ident": "CSR6", + "type": "heliport", + "name": "Sonora Resort Heliport", + "latitude_deg": "50.3817339685", + "longitude_deg": "-125.157558918", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Sonora Resort", + "scheduled_service": "no", + "gps_code": "CSR6", + "local_code": "CSR6", + "keywords": "SR6" + }, + { + "id": "1556", + "ident": "CSR8", + "type": "small_airport", + "name": "La Sarre Airport", + "latitude_deg": "48.917198181152", + "longitude_deg": "-79.178596496582", + "elevation_ft": "1048", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "La Sarre", + "scheduled_service": "no", + "gps_code": "CSR8", + "iata_code": "SSQ", + "local_code": "CSR8", + "home_link": "http://www.ville.lasarre.qc.ca/fr/ville/services-municipaux/aeroport-municipal/index.cfm", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Sarre_Airport", + "keywords": "SR8" + }, + { + "id": "1557", + "ident": "CSS2", + "type": "heliport", + "name": "Rivière-du-Loup Heliport", + "latitude_deg": "47.8490389984", + "longitude_deg": "-69.5422527194", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Rivière-du-Loup", + "scheduled_service": "no", + "gps_code": "CSS2", + "local_code": "CSS2", + "keywords": "SS2" + }, + { + "id": "1558", + "ident": "CSS3", + "type": "small_airport", + "name": "Montreal / Les Cèdres Airport", + "latitude_deg": "45.347499847399995", + "longitude_deg": "-74.0766983032", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montréal", + "scheduled_service": "no", + "gps_code": "CSS3", + "local_code": "CSS3", + "home_link": "http://www.laurentideaviation.com/cfs.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Montr%C3%A9al/Les_C%C3%A8dres_Airport", + "keywords": "SS3, Cedars Airport" + }, + { + "id": "1559", + "ident": "CSS4", + "type": "small_airport", + "name": "St-Dominique Airport", + "latitude_deg": "45.63249969482422", + "longitude_deg": "-72.81890106201172", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Dominique", + "scheduled_service": "no", + "gps_code": "CSS4", + "local_code": "CSS4", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Dominique_Airport", + "keywords": "SS4" + }, + { + "id": "28277", + "ident": "CSS7", + "type": "seaplane_base", + "name": "Lac-à-Beauce Seaplane Base", + "latitude_deg": "47.321401", + "longitude_deg": "-72.764997", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Lac-à-Beauce", + "scheduled_service": "no", + "gps_code": "CSS7", + "local_code": "CSS7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lac-%C3%A0-Beauce_Water_Aerodrome", + "keywords": "SS7" + }, + { + "id": "298389", + "ident": "CST2", + "type": "heliport", + "name": "Montreal / Marina Venise", + "latitude_deg": "45.6322408462", + "longitude_deg": "-73.7810871005", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CST2", + "local_code": "ST2" + }, + { + "id": "1560", + "ident": "CST3", + "type": "small_airport", + "name": "Montreal / St-Lazare Airport", + "latitude_deg": "45.3903282887", + "longitude_deg": "-74.1340041161", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montréal", + "scheduled_service": "no", + "gps_code": "CST3", + "local_code": "CST3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Montr%C3%A9al/St-Lazare_Airport", + "keywords": "ST3" + }, + { + "id": "46182", + "ident": "CST4", + "type": "heliport", + "name": "Sorel-Tracy/Air Nature Inc. (Heli)", + "latitude_deg": "46.0369444444", + "longitude_deg": "-73.1244444444", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CST4" + }, + { + "id": "1561", + "ident": "CST5", + "type": "heliport", + "name": "Sable Island Heliport", + "latitude_deg": "43.933101654052734", + "longitude_deg": "-60.00559997558594", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Sable Island", + "scheduled_service": "no", + "gps_code": "CST5", + "local_code": "CST5", + "keywords": "ST5" + }, + { + "id": "28195", + "ident": "CST6", + "type": "seaplane_base", + "name": "Clova/Lac Duchamp Seaplane Base", + "latitude_deg": "48.11000061035156", + "longitude_deg": "-75.36579895019531", + "elevation_ft": "1375", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CST6", + "local_code": "CST6" + }, + { + "id": "1562", + "ident": "CST7", + "type": "small_airport", + "name": "St-Lambert-De-Lauzon Airport", + "latitude_deg": "46.560298919677734", + "longitude_deg": "-71.18250274658203", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Lambert-De-Lauzon", + "scheduled_service": "no", + "gps_code": "CST7", + "local_code": "CST7", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Lambert-de-Lauzon_Airport", + "keywords": "ST7" + }, + { + "id": "28324", + "ident": "CST8", + "type": "seaplane_base", + "name": "Montreal / Marina Venise Seaplane Base", + "latitude_deg": "45.632856028", + "longitude_deg": "-73.78240942960001", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montréal", + "scheduled_service": "no", + "gps_code": "CST8", + "local_code": "CST8" + }, + { + "id": "298663", + "ident": "CST9", + "type": "closed", + "name": "Mont-Tremblant / Lac Ouimet Water Aerodrome", + "latitude_deg": "46.162354", + "longitude_deg": "-74.585495", + "elevation_ft": "761", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CST9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mont-Tremblant/Lac_Ouimet_Water_Aerodrome", + "keywords": "ST9" + }, + { + "id": "1563", + "ident": "CSU2", + "type": "small_airport", + "name": "Chisasibi Airport", + "latitude_deg": "53.805599212646484", + "longitude_deg": "-78.91690063476562", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Chisasibi", + "scheduled_service": "yes", + "gps_code": "CSU2", + "iata_code": "YKU", + "local_code": "CSU2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chisasibi_Airport", + "keywords": "SU2" + }, + { + "id": "1564", + "ident": "CSU3", + "type": "small_airport", + "name": "St Hyacinthe Airport", + "latitude_deg": "45.60499954223633", + "longitude_deg": "-73.01419830322266", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Hyacinthe", + "scheduled_service": "no", + "gps_code": "CSU3", + "local_code": "CSU3", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Hyacinthe_Airport", + "keywords": "SU3" + }, + { + "id": "1565", + "ident": "CSU4", + "type": "closed", + "name": "Sainte-Lucie-de-Beauregard Airport", + "latitude_deg": "46.740799", + "longitude_deg": "-70.032501", + "elevation_ft": "1212", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Sainte-Lucie-de-Beauregard", + "scheduled_service": "no", + "gps_code": "CSU4", + "local_code": "CSU4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ste-Lucie-De-Beauregard_Airport", + "keywords": "SU4" + }, + { + "id": "1566", + "ident": "CSU5", + "type": "small_airport", + "name": "Weymontachie Airport", + "latitude_deg": "47.9369010925293", + "longitude_deg": "-73.81719970703125", + "elevation_ft": "1171", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Weymontachie", + "scheduled_service": "no", + "gps_code": "CSU5", + "local_code": "CSU5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Weymontachie_Airport", + "keywords": "SU5" + }, + { + "id": "28424", + "ident": "CSU6", + "type": "seaplane_base", + "name": "Spout Lake Seaplane Base", + "latitude_deg": "52.00749969482422", + "longitude_deg": "-121.44499969482422", + "elevation_ft": "3560", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CSU6", + "local_code": "CSU6" + }, + { + "id": "1567", + "ident": "CSU7", + "type": "small_airport", + "name": "Lac-à-la-Tortue (Water Aerodrome) Airport", + "latitude_deg": "46.61669921875", + "longitude_deg": "-72.62580108642578", + "elevation_ft": "427", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Lac-à-la-Tortue", + "scheduled_service": "no", + "gps_code": "CSU7", + "local_code": "CSU7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lac-%C3%A0-la-Tortue_Water_Aerodrome", + "keywords": "SU7" + }, + { + "id": "1568", + "ident": "CSV2", + "type": "heliport", + "name": "Ste-Agathe (AIM) Heliport", + "latitude_deg": "46.110987", + "longitude_deg": "-74.293832", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Ste-Agathe", + "scheduled_service": "no", + "gps_code": "CSV2", + "local_code": "CSV2", + "keywords": "SV2" + }, + { + "id": "1569", + "ident": "CSV3", + "type": "heliport", + "name": "Bécancour Heliport", + "latitude_deg": "46.3650016784668", + "longitude_deg": "-72.39610290527344", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Bécancour", + "scheduled_service": "no", + "gps_code": "CSV3", + "local_code": "CSV3", + "keywords": "SV3" + }, + { + "id": "1570", + "ident": "CSV4", + "type": "heliport", + "name": "Fort Saskatchewan Community Hospital Heliport", + "latitude_deg": "53.6931", + "longitude_deg": "-113.2102", + "elevation_ft": "2056", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Fort Saskatchewan", + "scheduled_service": "no", + "gps_code": "CSV4", + "local_code": "CSV4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Saskatchewan_Community_Hospital" + }, + { + "id": "299269", + "ident": "csv8", + "type": "small_airport", + "name": "Schomberg (Sloan Valley View Farm Airfield)", + "latitude_deg": "43.986145243799996", + "longitude_deg": "-79.72728967670001", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CSV8" + }, + { + "id": "28403", + "ident": "CSV9", + "type": "seaplane_base", + "name": "St-Mathias Seaplane Base", + "latitude_deg": "45.5028", + "longitude_deg": "-73.252197", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CSV9", + "local_code": "CSV9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saint-Mathias_Water_Aerodrome", + "keywords": "SV9" + }, + { + "id": "1571", + "ident": "CSW5", + "type": "heliport", + "name": "Montréal (Bell) Heliport", + "latitude_deg": "45.685001373291016", + "longitude_deg": "-73.93109893798828", + "elevation_ft": "221", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montréal", + "scheduled_service": "no", + "gps_code": "CSW5", + "local_code": "CSW5", + "keywords": "SW5" + }, + { + "id": "320325", + "ident": "CSW6", + "type": "small_airport", + "name": "Hastings / Sweetwater Farms Airport", + "latitude_deg": "44.345991", + "longitude_deg": "-77.928141", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Asphodel-Norwood", + "scheduled_service": "no", + "gps_code": "CSW6", + "local_code": "CSW6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hastings/Sweetwater_Farms_Aerodrome" + }, + { + "id": "28313", + "ident": "CSW8", + "type": "seaplane_base", + "name": "Matagami Seaplane Base", + "latitude_deg": "49.73440170288086", + "longitude_deg": "-77.61969757080078", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CSW8", + "local_code": "CSW8" + }, + { + "id": "28404", + "ident": "CSW9", + "type": "seaplane_base", + "name": "Ste-Véronique Seaplane Base", + "latitude_deg": "46.514702", + "longitude_deg": "-74.990303", + "elevation_ft": "823", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Ste-Véronique", + "scheduled_service": "no", + "gps_code": "CSW9", + "local_code": "CSW9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sainte-Veronique_Water_Aerodrome", + "keywords": "SW9" + }, + { + "id": "1572", + "ident": "CSX3", + "type": "small_airport", + "name": "Richelieu Airport", + "latitude_deg": "45.447077", + "longitude_deg": "-73.232683", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Richelieu", + "scheduled_service": "no", + "gps_code": "CSX3", + "local_code": "CSX3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Richelieu_Airport", + "keywords": "SX3" + }, + { + "id": "1573", + "ident": "CSX5", + "type": "small_airport", + "name": "Grant Airport", + "latitude_deg": "45.471900939941406", + "longitude_deg": "-73.19940185546875", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Mathias", + "scheduled_service": "no", + "gps_code": "CSX5", + "local_code": "CSX5", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Mathias/Grant_Airport", + "keywords": "SX5" + }, + { + "id": "1574", + "ident": "CSX7", + "type": "small_airport", + "name": "Sexsmith (Exeter) Airport", + "latitude_deg": "43.376357", + "longitude_deg": "-81.507139", + "elevation_ft": "856", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Bluewater", + "scheduled_service": "no", + "gps_code": "CSX7", + "local_code": "CSX7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sexsmith/Exeter_Airport", + "keywords": "SX7" + }, + { + "id": "1575", + "ident": "CSY3", + "type": "small_airport", + "name": "Sorel Airport", + "latitude_deg": "45.98030090332031", + "longitude_deg": "-73.04219818115234", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Sorel", + "scheduled_service": "no", + "gps_code": "CSY3", + "local_code": "CSY3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sorel_Airport", + "keywords": "SY3" + }, + { + "id": "1576", + "ident": "CSY4", + "type": "small_airport", + "name": "St-Donat Airport", + "latitude_deg": "46.30580139160156", + "longitude_deg": "-74.181396484375", + "elevation_ft": "1270", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Donat", + "scheduled_service": "no", + "gps_code": "CSY4", + "local_code": "CSY4", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Donat_Airport", + "keywords": "SY4" + }, + { + "id": "1577", + "ident": "CSY5", + "type": "heliport", + "name": "Valleyfield (Ciment Deval Inc) Heliport", + "latitude_deg": "45.26359939575195", + "longitude_deg": "-74.14920043945312", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Valleyfield", + "scheduled_service": "no", + "gps_code": "CSY5", + "local_code": "CSY5", + "keywords": "SY5" + }, + { + "id": "1578", + "ident": "CSY6", + "type": "heliport", + "name": "Poste Lemoyne (Complex Lg-3) Heliport", + "latitude_deg": "53.4827995300293", + "longitude_deg": "-75.03140258789062", + "elevation_ft": "874", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Poste Lemoyne", + "scheduled_service": "no", + "gps_code": "CSY6", + "local_code": "CSY6", + "keywords": "SY6" + }, + { + "id": "28334", + "ident": "CSY8", + "type": "seaplane_base", + "name": "Natashquan (Lac De L'Avion) Seaplane Base", + "latitude_deg": "50.189201", + "longitude_deg": "-61.753899", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CSY8", + "local_code": "CSY8", + "keywords": "SY8" + }, + { + "id": "1579", + "ident": "CSY9", + "type": "heliport", + "name": "Sydney (Cape Breton Regional Hospital) Heliport", + "latitude_deg": "46.110109552699996", + "longitude_deg": "-60.1761505008", + "elevation_ft": "224", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Sydney", + "scheduled_service": "no", + "gps_code": "CSY9", + "local_code": "CSY9", + "keywords": "SY9" + }, + { + "id": "1580", + "ident": "CSZ2", + "type": "heliport", + "name": "Québec (Complex H) Heliport", + "latitude_deg": "46.80720520019531", + "longitude_deg": "-71.21343231201172", + "elevation_ft": "352", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Québec", + "scheduled_service": "no", + "gps_code": "CSZ2", + "local_code": "CSZ2", + "keywords": "SZ2, Quebec City" + }, + { + "id": "1581", + "ident": "CSZ3", + "type": "small_airport", + "name": "Mont-Tremblant / St-Jovite Airport", + "latitude_deg": "46.154202", + "longitude_deg": "-74.583603", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Mont-Tremblant", + "scheduled_service": "no", + "gps_code": "CSZ3", + "local_code": "CSZ3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mont-Tremblant/St-Jovite_Airport", + "keywords": "SZ3" + }, + { + "id": "1582", + "ident": "CSZ4", + "type": "small_airport", + "name": "St-Frédéric Airport", + "latitude_deg": "46.33140182495117", + "longitude_deg": "-70.96330261230469", + "elevation_ft": "991", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Frédéric", + "scheduled_service": "no", + "gps_code": "CSZ4", + "local_code": "CSZ4", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Fr%C3%A9d%C3%A9ric_Airport", + "keywords": "SZ4" + }, + { + "id": "1583", + "ident": "CSZ6", + "type": "heliport", + "name": "St-Jérôme (Hydro-Québec) Heliport", + "latitude_deg": "45.7707634958", + "longitude_deg": "-74.0269973874", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Jérôme", + "scheduled_service": "no", + "gps_code": "CSZ6", + "local_code": "CSZ6", + "keywords": "SZ6" + }, + { + "id": "320873", + "ident": "CSZ7", + "type": "seaplane_base", + "name": "Chibougamau/Lac Caché Water Aerodrome", + "latitude_deg": "49.823371", + "longitude_deg": "-74.424285", + "elevation_ft": "1255", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Chibougamau", + "scheduled_service": "no", + "gps_code": "CSZ7", + "local_code": "CSZ7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chibougamau/Lac_Cach%C3%A9_Water_Aerodrome", + "keywords": "SZ7" + }, + { + "id": "1584", + "ident": "CSZ8", + "type": "heliport", + "name": "Montréal (Sacré-Coeur) Heliport", + "latitude_deg": "45.533168631399995", + "longitude_deg": "-73.7124305964", + "elevation_ft": "84", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montréal", + "scheduled_service": "no", + "gps_code": "CSZ8", + "local_code": "CSZ8", + "keywords": "SZ8" + }, + { + "id": "28411", + "ident": "CSZ9", + "type": "seaplane_base", + "name": "Schefferville/Squaw Lake Seaplane Base", + "latitude_deg": "54.828098", + "longitude_deg": "-66.801399", + "elevation_ft": "1616", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CSZ9", + "local_code": "CSZ9", + "keywords": "SZ9" + }, + { + "id": "16958", + "ident": "CT00", + "type": "heliport", + "name": "Electro-Methods Inc Heliport", + "latitude_deg": "41.832000732421875", + "longitude_deg": "-72.60089874267578", + "elevation_ft": "104", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "South Windsor", + "scheduled_service": "no", + "gps_code": "CT00", + "local_code": "CT00" + }, + { + "id": "16959", + "ident": "CT01", + "type": "small_airport", + "name": "Whelan Farms Airport", + "latitude_deg": "41.66619873046875", + "longitude_deg": "-73.18900299072266", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Bethlehem", + "scheduled_service": "no", + "gps_code": "CT01", + "local_code": "CT01" + }, + { + "id": "16960", + "ident": "CT02", + "type": "heliport", + "name": "Clark Hill Heliport", + "latitude_deg": "41.642608", + "longitude_deg": "-72.562777", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Glastonbury", + "scheduled_service": "no", + "gps_code": "CT02", + "local_code": "CT02" + }, + { + "id": "16961", + "ident": "CT03", + "type": "heliport", + "name": "Bristol Hospital Heliport", + "latitude_deg": "41.675899505615234", + "longitude_deg": "-72.93620300292969", + "elevation_ft": "406", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Bristol", + "scheduled_service": "no", + "gps_code": "CT03", + "local_code": "CT03" + }, + { + "id": "16962", + "ident": "CT04", + "type": "closed", + "name": "Grass Land Air Field", + "latitude_deg": "42.039002", + "longitude_deg": "-73.287103", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "North Canaan", + "scheduled_service": "no", + "keywords": "CT04" + }, + { + "id": "16963", + "ident": "CT05", + "type": "heliport", + "name": "Kaman Aerospace Corp Heliport", + "latitude_deg": "41.86199951171875", + "longitude_deg": "-72.69979858398438", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Bloomfield", + "scheduled_service": "no", + "gps_code": "CT05", + "local_code": "CT05" + }, + { + "id": "16964", + "ident": "CT06", + "type": "heliport", + "name": "Delta One Heliport", + "latitude_deg": "41.78900146484375", + "longitude_deg": "-72.66059875488281", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Hartford", + "scheduled_service": "no", + "gps_code": "CT06", + "local_code": "CT06" + }, + { + "id": "16965", + "ident": "CT07", + "type": "small_airport", + "name": "Skis Landing Area Airport", + "latitude_deg": "41.573393", + "longitude_deg": "-72.301318", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Colchester", + "scheduled_service": "no", + "gps_code": "CT07", + "local_code": "CT07" + }, + { + "id": "16966", + "ident": "CT08", + "type": "closed", + "name": "Gardner Lake Airport", + "latitude_deg": "41.50922", + "longitude_deg": "-72.244334", + "elevation_ft": "485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Colchester", + "scheduled_service": "no", + "wikipedia_link": "https://web.archive.org/web/20161121062317/https://en.wikipedia.org/wiki/Gardner_Lake_Airport", + "keywords": "CT08" + }, + { + "id": "16967", + "ident": "CT09", + "type": "small_airport", + "name": "Heckler Field", + "latitude_deg": "41.802898", + "longitude_deg": "-72.391701", + "elevation_ft": "793", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Coventry", + "scheduled_service": "no", + "gps_code": "CT09", + "local_code": "CT09" + }, + { + "id": "45336", + "ident": "CT10", + "type": "heliport", + "name": "Flat Rock Farm Heliport", + "latitude_deg": "41.742631", + "longitude_deg": "-71.8125", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Sterling", + "scheduled_service": "no", + "gps_code": "CT10", + "local_code": "CT10" + }, + { + "id": "16968", + "ident": "CT11", + "type": "small_airport", + "name": "Devils Hopyard Field", + "latitude_deg": "41.444", + "longitude_deg": "-72.338997", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "East Haddam", + "scheduled_service": "no", + "gps_code": "CT11", + "local_code": "CT11" + }, + { + "id": "16969", + "ident": "CT12", + "type": "heliport", + "name": "St. Vincent's Medical Center Heliport", + "latitude_deg": "41.201251", + "longitude_deg": "-73.201543", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Bridgeport", + "scheduled_service": "no", + "gps_code": "CT12", + "local_code": "CT12" + }, + { + "id": "16970", + "ident": "CT13", + "type": "small_airport", + "name": "Yankee Airstrip", + "latitude_deg": "41.874482", + "longitude_deg": "-71.819472", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "East Killingly", + "scheduled_service": "no", + "gps_code": "CT13", + "local_code": "CT13" + }, + { + "id": "16971", + "ident": "CT14", + "type": "small_airport", + "name": "Bancroft Airport", + "latitude_deg": "41.866798400878906", + "longitude_deg": "-72.61620330810547", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "East Windsor Hill", + "scheduled_service": "no", + "gps_code": "CT14", + "local_code": "CT14" + }, + { + "id": "16972", + "ident": "CT15", + "type": "small_airport", + "name": "Wysocki Field", + "latitude_deg": "41.94540023803711", + "longitude_deg": "-72.47760009765625", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Ellington", + "scheduled_service": "no", + "gps_code": "CT15", + "local_code": "CT15" + }, + { + "id": "16973", + "ident": "CT16", + "type": "seaplane_base", + "name": "Fetske Seaplane Base", + "latitude_deg": "41.375099182128906", + "longitude_deg": "-72.37449645996094", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Essex", + "scheduled_service": "no", + "gps_code": "CT16", + "local_code": "CT16" + }, + { + "id": "16974", + "ident": "CT17", + "type": "heliport", + "name": "United Technology Corp. Heliport", + "latitude_deg": "41.76570129394531", + "longitude_deg": "-72.67340087890625", + "elevation_ft": "351", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Hartford", + "scheduled_service": "no", + "gps_code": "CT17", + "local_code": "CT17" + }, + { + "id": "16975", + "ident": "CT18", + "type": "heliport", + "name": "State Emergency Heliport", + "latitude_deg": "41.764801025390625", + "longitude_deg": "-72.68199920654297", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Hartford", + "scheduled_service": "no", + "gps_code": "CT18", + "local_code": "CT18" + }, + { + "id": "16976", + "ident": "CT19", + "type": "small_airport", + "name": "Laurie Field", + "latitude_deg": "41.968201", + "longitude_deg": "-72.539803", + "elevation_ft": "129", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Hazardville", + "scheduled_service": "no", + "gps_code": "CT19", + "local_code": "CT19" + }, + { + "id": "16977", + "ident": "CT20", + "type": "small_airport", + "name": "Rankl Field", + "latitude_deg": "41.599591", + "longitude_deg": "-72.434278", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Marlborough", + "scheduled_service": "no", + "gps_code": "CT20", + "local_code": "CT20" + }, + { + "id": "16978", + "ident": "CT21", + "type": "closed", + "name": "C N Flagg Heliport", + "latitude_deg": "41.507831", + "longitude_deg": "-72.770417", + "elevation_ft": "333", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Meriden", + "scheduled_service": "no", + "keywords": "CT21" + }, + { + "id": "16979", + "ident": "CT22", + "type": "heliport", + "name": "H O Penn-1 Heliport", + "latitude_deg": "41.660701751708984", + "longitude_deg": "-72.72840118408203", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Newington", + "scheduled_service": "no", + "gps_code": "CT22", + "local_code": "CT22" + }, + { + "id": "16980", + "ident": "CT23", + "type": "heliport", + "name": "Della Heliport", + "latitude_deg": "41.940101623535156", + "longitude_deg": "-72.60590362548828", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Enfield", + "scheduled_service": "no", + "gps_code": "CT23", + "local_code": "CT23" + }, + { + "id": "16981", + "ident": "CT24", + "type": "small_airport", + "name": "North Canaan Aviation Facilities Inc Airport", + "latitude_deg": "42.0453987121582", + "longitude_deg": "-73.33869934082031", + "elevation_ft": "658", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "North Canaan", + "scheduled_service": "no", + "gps_code": "CT24", + "local_code": "CT24" + }, + { + "id": "16982", + "ident": "CT25", + "type": "heliport", + "name": "Miry Dam Heliport", + "latitude_deg": "41.556934", + "longitude_deg": "-73.124328", + "elevation_ft": "728", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Middlebury", + "scheduled_service": "no", + "gps_code": "CT25", + "local_code": "CT25" + }, + { + "id": "16983", + "ident": "CT26", + "type": "heliport", + "name": "Corporate Ridge Heliport", + "latitude_deg": "41.64870071411133", + "longitude_deg": "-72.66339874267578", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Rocky Hill", + "scheduled_service": "no", + "gps_code": "CT26", + "local_code": "CT26" + }, + { + "id": "16984", + "ident": "CT27", + "type": "heliport", + "name": "Tennessee F Heliport", + "latitude_deg": "42.00400161743164", + "longitude_deg": "-72.54010009765625", + "elevation_ft": "177", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Enfield", + "scheduled_service": "no", + "gps_code": "CT27", + "local_code": "CT27" + }, + { + "id": "16985", + "ident": "CT28", + "type": "heliport", + "name": "Veterans Home & Hospital Heliport", + "latitude_deg": "41.65840148925781", + "longitude_deg": "-72.64759826660156", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Rocky Hill", + "scheduled_service": "no", + "gps_code": "CT28", + "local_code": "CT28" + }, + { + "id": "16986", + "ident": "CT29", + "type": "small_airport", + "name": "Valley Farms Airport", + "latitude_deg": "42.01369857788086", + "longitude_deg": "-72.472900390625", + "elevation_ft": "221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Somers", + "scheduled_service": "no", + "gps_code": "CT29", + "local_code": "CT29" + }, + { + "id": "16987", + "ident": "CT30", + "type": "closed", + "name": "Nayaug Seaplane Landing Area Seaplane Base", + "latitude_deg": "41.639", + "longitude_deg": "-72.628098", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "South Glastonbury", + "scheduled_service": "no", + "keywords": "CT30" + }, + { + "id": "16988", + "ident": "CT31", + "type": "small_airport", + "name": "Swift Airport", + "latitude_deg": "41.9650993347168", + "longitude_deg": "-72.33290100097656", + "elevation_ft": "515", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Stafford Springs", + "scheduled_service": "no", + "gps_code": "CT31", + "local_code": "CT31" + }, + { + "id": "16989", + "ident": "CT32", + "type": "small_airport", + "name": "Gallup Farm Airport", + "latitude_deg": "41.535400390625", + "longitude_deg": "-71.83450317382812", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Voluntown", + "scheduled_service": "no", + "gps_code": "CT32", + "local_code": "CT32" + }, + { + "id": "16990", + "ident": "CT33", + "type": "heliport", + "name": "Clark Heliport", + "latitude_deg": "41.48149871826172", + "longitude_deg": "-72.80590057373047", + "elevation_ft": "127", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Wallingford", + "scheduled_service": "no", + "gps_code": "CT33", + "local_code": "CT33" + }, + { + "id": "16991", + "ident": "CT34", + "type": "heliport", + "name": "Ussc/North Haven Heliport", + "latitude_deg": "41.338401794433594", + "longitude_deg": "-72.86820220947266", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "North Haven", + "scheduled_service": "no", + "gps_code": "CT34", + "local_code": "CT34" + }, + { + "id": "16992", + "ident": "CT35", + "type": "heliport", + "name": "Hamilton Standard Heliport", + "latitude_deg": "41.93339920043945", + "longitude_deg": "-72.69950103759766", + "elevation_ft": "173", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Windsor Locks", + "scheduled_service": "no", + "gps_code": "CT35", + "local_code": "CT35" + }, + { + "id": "16993", + "ident": "CT36", + "type": "small_airport", + "name": "Gager Field", + "latitude_deg": "41.564499", + "longitude_deg": "-72.197304", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Bozrah", + "scheduled_service": "no", + "gps_code": "CT36", + "local_code": "CT36" + }, + { + "id": "16994", + "ident": "CT37", + "type": "heliport", + "name": "Sikorsky Bridgeport Heliport", + "latitude_deg": "41.161016", + "longitude_deg": "-73.204916", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Bridgeport", + "scheduled_service": "no", + "gps_code": "CT37", + "local_code": "CT37" + }, + { + "id": "16995", + "ident": "CT38", + "type": "heliport", + "name": "Corporate Center Heliport", + "latitude_deg": "41.71229934692383", + "longitude_deg": "-72.58789825439453", + "elevation_ft": "104", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Glastonbury", + "scheduled_service": "no", + "gps_code": "CT38", + "local_code": "CT38" + }, + { + "id": "16996", + "ident": "CT39", + "type": "small_airport", + "name": "Maplewood Farm Airport", + "latitude_deg": "41.468575", + "longitude_deg": "-72.708857", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Durham", + "scheduled_service": "no", + "gps_code": "CT39", + "local_code": "CT39" + }, + { + "id": "16997", + "ident": "CT40", + "type": "heliport", + "name": "Bob Thomas Ford Heliport", + "latitude_deg": "41.36980056762695", + "longitude_deg": "-72.91729736328125", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Hamden", + "scheduled_service": "no", + "gps_code": "CT40", + "local_code": "CT40" + }, + { + "id": "16998", + "ident": "CT41", + "type": "heliport", + "name": "General Electric Heliport", + "latitude_deg": "41.216757", + "longitude_deg": "-73.255618", + "elevation_ft": "122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "CT41", + "local_code": "CT41" + }, + { + "id": "16999", + "ident": "CT42", + "type": "small_airport", + "name": "Wings Ago Airstrip", + "latitude_deg": "41.850101470947266", + "longitude_deg": "-73.26619720458984", + "elevation_ft": "1585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Goshen", + "scheduled_service": "no", + "gps_code": "CT42", + "local_code": "CT42" + }, + { + "id": "17000", + "ident": "CT43", + "type": "small_airport", + "name": "Spruce Airport", + "latitude_deg": "41.59370040893555", + "longitude_deg": "-71.93119812011719", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Jewett City", + "scheduled_service": "no", + "gps_code": "CT43", + "local_code": "CT43" + }, + { + "id": "17001", + "ident": "CT44", + "type": "small_airport", + "name": "Ripley Field", + "latitude_deg": "41.785701751708984", + "longitude_deg": "-73.30870056152344", + "elevation_ft": "1330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Litchfield", + "scheduled_service": "no", + "gps_code": "CT44", + "local_code": "CT44" + }, + { + "id": "17002", + "ident": "CT45", + "type": "heliport", + "name": "Timex Heliport", + "latitude_deg": "41.55339813232422", + "longitude_deg": "-73.09819793701172", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Middlebury", + "scheduled_service": "no", + "gps_code": "CT45", + "local_code": "CT45" + }, + { + "id": "17003", + "ident": "CT46", + "type": "heliport", + "name": "Milford-Alexander Heliport", + "latitude_deg": "41.234500885009766", + "longitude_deg": "-73.03179931640625", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "CT46", + "local_code": "CT46" + }, + { + "id": "17004", + "ident": "CT47", + "type": "heliport", + "name": "Consumer Products Div Warner-Lambert County Heliport", + "latitude_deg": "41.230098724365234", + "longitude_deg": "-73.03790283203125", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "CT47", + "local_code": "CT47" + }, + { + "id": "17005", + "ident": "CT48", + "type": "small_airport", + "name": "Wychwood Field", + "latitude_deg": "41.436798095703125", + "longitude_deg": "-71.92539978027344", + "elevation_ft": "316", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Mystic", + "scheduled_service": "no", + "gps_code": "CT48", + "local_code": "CT48" + }, + { + "id": "17006", + "ident": "CT49", + "type": "heliport", + "name": "Plainville Heliport", + "latitude_deg": "41.667598724365234", + "longitude_deg": "-72.8322982788086", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "New Britain", + "scheduled_service": "no", + "gps_code": "CT49", + "local_code": "CT49" + }, + { + "id": "17007", + "ident": "CT50", + "type": "heliport", + "name": "Marks Heliport", + "latitude_deg": "41.942901611328125", + "longitude_deg": "-72.7061996459961", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "East Granby", + "scheduled_service": "no", + "gps_code": "CT50", + "local_code": "CT50" + }, + { + "id": "17008", + "ident": "CT51", + "type": "small_airport", + "name": "Docktors Field", + "latitude_deg": "41.53340148925781", + "longitude_deg": "-73.41619873046875", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "New Milford", + "scheduled_service": "no", + "gps_code": "CT51", + "local_code": "CT51" + }, + { + "id": "17009", + "ident": "CT52", + "type": "small_airport", + "name": "Flying Ridge Airstrip", + "latitude_deg": "41.36819839477539", + "longitude_deg": "-73.29119873046875", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Newtown", + "scheduled_service": "no", + "gps_code": "CT52", + "local_code": "CT52" + }, + { + "id": "17010", + "ident": "CT53", + "type": "heliport", + "name": "Mountain View Heliport", + "latitude_deg": "42.0192985534668", + "longitude_deg": "-72.48370361328125", + "elevation_ft": "290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Somers", + "scheduled_service": "no", + "gps_code": "CT53", + "local_code": "CT53" + }, + { + "id": "17011", + "ident": "CT54", + "type": "heliport", + "name": "North Branford Heliport", + "latitude_deg": "41.33570098876953", + "longitude_deg": "-72.79070281982422", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "North Branford", + "scheduled_service": "no", + "gps_code": "CT54", + "local_code": "CT54" + }, + { + "id": "17012", + "ident": "CT55", + "type": "heliport", + "name": "North Haven Heliport", + "latitude_deg": "41.3672981262207", + "longitude_deg": "-72.88009643554688", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "North Haven", + "scheduled_service": "no", + "gps_code": "CT55", + "local_code": "CT55" + }, + { + "id": "17013", + "ident": "CT56", + "type": "closed", + "name": "50 Washington Street Heliport", + "latitude_deg": "41.099472", + "longitude_deg": "-73.419483", + "elevation_ft": "143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Norwalk", + "scheduled_service": "no", + "gps_code": "CT56", + "local_code": "CT56" + }, + { + "id": "17014", + "ident": "CT57", + "type": "heliport", + "name": "Old Saybrook Heliport", + "latitude_deg": "41.3047981262207", + "longitude_deg": "-72.37169647216797", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Old Saybrook", + "scheduled_service": "no", + "gps_code": "CT57", + "local_code": "CT57" + }, + { + "id": "17015", + "ident": "CT58", + "type": "closed", + "name": "Portland Heliport", + "latitude_deg": "41.565899", + "longitude_deg": "-72.641502", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Portland", + "scheduled_service": "no", + "keywords": "CT58" + }, + { + "id": "17016", + "ident": "CT59", + "type": "small_airport", + "name": "Good Hill Farm Airport", + "latitude_deg": "41.55009841918945", + "longitude_deg": "-73.26619720458984", + "elevation_ft": "949", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Roxbury", + "scheduled_service": "no", + "gps_code": "CT59", + "local_code": "CT59" + }, + { + "id": "17017", + "ident": "CT60", + "type": "heliport", + "name": "Ultimate Heliport", + "latitude_deg": "41.675201416015625", + "longitude_deg": "-72.89109802246094", + "elevation_ft": "253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Bristol", + "scheduled_service": "no", + "gps_code": "CT60", + "local_code": "CT60" + }, + { + "id": "45340", + "ident": "CT62", + "type": "heliport", + "name": "Twin Manufacturing Company Heliport", + "latitude_deg": "41.809722", + "longitude_deg": "-72.609722", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "South Windsor", + "scheduled_service": "no", + "gps_code": "CT62", + "local_code": "CT62" + }, + { + "id": "17018", + "ident": "CT63", + "type": "heliport", + "name": "Lake Compounce Heliport", + "latitude_deg": "41.640899658203125", + "longitude_deg": "-72.91960144042969", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Bristol/Southington", + "scheduled_service": "no", + "gps_code": "CT63", + "local_code": "CT63" + }, + { + "id": "17019", + "ident": "CT64", + "type": "heliport", + "name": "Pratt & Whitney Heliport", + "latitude_deg": "41.57509994506836", + "longitude_deg": "-72.89679718017578", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Southington", + "scheduled_service": "no", + "gps_code": "CT64", + "local_code": "CT64" + }, + { + "id": "17020", + "ident": "CT65", + "type": "closed", + "name": "Reed's Gap Heliport", + "latitude_deg": "41.469501", + "longitude_deg": "-72.741997", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Wallingford", + "scheduled_service": "no" + }, + { + "id": "17021", + "ident": "CT66", + "type": "small_airport", + "name": "Long View Landing Airport", + "latitude_deg": "41.66680145263672", + "longitude_deg": "-73.28289794921875", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "CT66", + "local_code": "CT66" + }, + { + "id": "17022", + "ident": "CT67", + "type": "closed", + "name": "A J Oster Company Heliport", + "latitude_deg": "41.6143", + "longitude_deg": "-73.059303", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Watertown", + "scheduled_service": "no", + "keywords": "CT67" + }, + { + "id": "17023", + "ident": "CT68", + "type": "heliport", + "name": "Wauregan Heliport", + "latitude_deg": "41.75339889526367", + "longitude_deg": "-71.88760375976562", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Wauregan", + "scheduled_service": "no", + "gps_code": "CT68", + "local_code": "CT68" + }, + { + "id": "17024", + "ident": "CT69", + "type": "heliport", + "name": "Nasin Heliport", + "latitude_deg": "41.725399017333984", + "longitude_deg": "-72.19170379638672", + "elevation_ft": "242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Willimantic", + "scheduled_service": "no", + "gps_code": "CT69", + "local_code": "CT69" + }, + { + "id": "17025", + "ident": "CT70", + "type": "heliport", + "name": "Wilsonville Heliport", + "latitude_deg": "42.013999938964844", + "longitude_deg": "-71.87950134277344", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Wilsonville", + "scheduled_service": "no", + "gps_code": "CT70", + "local_code": "CT70" + }, + { + "id": "17026", + "ident": "CT71", + "type": "heliport", + "name": "Raytheon Technologies Farmington Heliport", + "latitude_deg": "41.708928", + "longitude_deg": "-72.8021", + "elevation_ft": "362", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Farmington", + "scheduled_service": "no", + "gps_code": "CT71", + "local_code": "CT71", + "keywords": "Otis Helistop Division of UTC" + }, + { + "id": "17027", + "ident": "CT72", + "type": "heliport", + "name": "Cigna Heliport", + "latitude_deg": "41.81949996948242", + "longitude_deg": "-72.74819946289062", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Bloomfield", + "scheduled_service": "no", + "gps_code": "CT72", + "local_code": "CT72" + }, + { + "id": "17028", + "ident": "CT73", + "type": "heliport", + "name": "South Meadows Heliport", + "latitude_deg": "41.723201751708984", + "longitude_deg": "-72.86009979248047", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Hartford", + "scheduled_service": "no", + "gps_code": "CT73", + "local_code": "CT73" + }, + { + "id": "17029", + "ident": "CT74", + "type": "small_airport", + "name": "Westford Airstrip", + "latitude_deg": "41.95069885253906", + "longitude_deg": "-72.18150329589844", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Ashford/Westford", + "scheduled_service": "no", + "gps_code": "CT74", + "local_code": "CT74" + }, + { + "id": "17030", + "ident": "CT75", + "type": "heliport", + "name": "UConn Health Heliport", + "latitude_deg": "41.733284", + "longitude_deg": "-72.793125", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Farmington", + "scheduled_service": "no", + "gps_code": "CT75", + "local_code": "CT75", + "keywords": "Hurlbrink" + }, + { + "id": "17031", + "ident": "CT76", + "type": "heliport", + "name": "Chase Manhattan Bank of Ct Heliport", + "latitude_deg": "41.2422981262207", + "longitude_deg": "-73.15039825439453", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Trumbull", + "scheduled_service": "no", + "gps_code": "CT76", + "local_code": "CT76" + }, + { + "id": "17032", + "ident": "CT77", + "type": "heliport", + "name": "American Cyanamid County Heliport", + "latitude_deg": "41.43899917602539", + "longitude_deg": "-72.83789825439453", + "elevation_ft": "61", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Wallingford", + "scheduled_service": "no", + "gps_code": "CT77", + "local_code": "CT77" + }, + { + "id": "17033", + "ident": "CT78", + "type": "seaplane_base", + "name": "Lord Creek Seaplane Base", + "latitude_deg": "41.35150146484375", + "longitude_deg": "-72.3551025390625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Lyme", + "scheduled_service": "no", + "gps_code": "CT78", + "local_code": "CT78" + }, + { + "id": "17034", + "ident": "CT79", + "type": "heliport", + "name": "Merritt 7 Helistop", + "latitude_deg": "41.144471", + "longitude_deg": "-73.42854", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Norwalk", + "scheduled_service": "no", + "gps_code": "CT79", + "local_code": "CT79" + }, + { + "id": "17035", + "ident": "CT80", + "type": "small_airport", + "name": "Stonington Airpark", + "latitude_deg": "41.3473014831543", + "longitude_deg": "-71.88590240478516", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Stonington", + "scheduled_service": "no", + "gps_code": "CT80", + "local_code": "CT80" + }, + { + "id": "17036", + "ident": "CT82", + "type": "seaplane_base", + "name": "Quaddick Lake Seaplane Base", + "latitude_deg": "41.95840072631836", + "longitude_deg": "-71.81670379638672", + "elevation_ft": "403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Thompson", + "scheduled_service": "no", + "gps_code": "CT82", + "local_code": "CT82" + }, + { + "id": "17037", + "ident": "CT83", + "type": "heliport", + "name": "Dow Chemical Heliport", + "latitude_deg": "41.388999938964844", + "longitude_deg": "-73.53099822998047", + "elevation_ft": "655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Danbury", + "scheduled_service": "no", + "gps_code": "CT83", + "local_code": "CT83" + }, + { + "id": "17038", + "ident": "CT84", + "type": "heliport", + "name": "Partyka Chevrolet Heliport", + "latitude_deg": "41.37369918823242", + "longitude_deg": "-72.90869903564453", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Hamden", + "scheduled_service": "no", + "gps_code": "CT84", + "local_code": "CT84" + }, + { + "id": "17039", + "ident": "CT85", + "type": "small_airport", + "name": "Roberts Farm Airport", + "latitude_deg": "41.889801025390625", + "longitude_deg": "-72.61509704589844", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "East Windsor", + "scheduled_service": "no", + "gps_code": "CT85", + "local_code": "CT85" + }, + { + "id": "17040", + "ident": "CT86", + "type": "heliport", + "name": "Sanford Heliport", + "latitude_deg": "41.433998107910156", + "longitude_deg": "-72.39399719238281", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "East Haddam", + "scheduled_service": "no", + "gps_code": "CT86", + "local_code": "CT86" + }, + { + "id": "17041", + "ident": "CT87", + "type": "seaplane_base", + "name": "Bootlegger's Seaplane Base", + "latitude_deg": "41.9984016418457", + "longitude_deg": "-72.60590362548828", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Enfield", + "scheduled_service": "no", + "gps_code": "CT87", + "local_code": "CT87" + }, + { + "id": "17042", + "ident": "CT88", + "type": "heliport", + "name": "Rentschler Heliport", + "latitude_deg": "41.7517", + "longitude_deg": "-72.6253", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "East Hartford", + "scheduled_service": "no", + "gps_code": "CT88", + "iata_code": "EHT", + "local_code": "CT88", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rentschler_Heliport" + }, + { + "id": "17043", + "ident": "CT89", + "type": "heliport", + "name": "Itt Heliport", + "latitude_deg": "41.27510070800781", + "longitude_deg": "-73.13289642333984", + "elevation_ft": "327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Shelton", + "scheduled_service": "no", + "gps_code": "CT89", + "local_code": "CT89" + }, + { + "id": "17044", + "ident": "CT90", + "type": "heliport", + "name": "Dairy Mart Farms Inc Heliport", + "latitude_deg": "41.98149871826172", + "longitude_deg": "-72.58509826660156", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Enfield", + "scheduled_service": "no", + "gps_code": "CT90", + "local_code": "CT90" + }, + { + "id": "17045", + "ident": "CT91", + "type": "closed", + "name": "USSC Heliport", + "latitude_deg": "41.152318", + "longitude_deg": "-73.427343", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Norwalk", + "scheduled_service": "no", + "keywords": "CT91, United States Surgical Corporation" + }, + { + "id": "17046", + "ident": "CT92", + "type": "heliport", + "name": "Bemer Heliport", + "latitude_deg": "41.62289810180664", + "longitude_deg": "-72.60060119628906", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "CT92", + "local_code": "CT92" + }, + { + "id": "17047", + "ident": "CT93", + "type": "heliport", + "name": "Backus Hospital Heliport", + "latitude_deg": "41.54209899902344", + "longitude_deg": "-72.09230041503906", + "elevation_ft": "109", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Norwich", + "scheduled_service": "no", + "gps_code": "CT93", + "local_code": "CT93" + }, + { + "id": "17048", + "ident": "CT94", + "type": "closed", + "name": "Tilcon Roncari, Inc. Heliport", + "latitude_deg": "41.936501", + "longitude_deg": "-72.735101", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "East Granby", + "scheduled_service": "no", + "keywords": "CT94" + }, + { + "id": "17049", + "ident": "CT95", + "type": "heliport", + "name": "Meriden-Wallingford Hospital Heliport", + "latitude_deg": "41.53340148925781", + "longitude_deg": "-72.80979919433594", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Meriden", + "scheduled_service": "no", + "gps_code": "CT95", + "local_code": "CT95" + }, + { + "id": "17050", + "ident": "CT96", + "type": "small_airport", + "name": "Green Acres Airport", + "latitude_deg": "41.709355", + "longitude_deg": "-72.971253", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Bristol", + "scheduled_service": "no", + "gps_code": "CT96", + "local_code": "CT96" + }, + { + "id": "17051", + "ident": "CT97", + "type": "heliport", + "name": "Shoreline Clinic Heliport", + "latitude_deg": "41.32899856567383", + "longitude_deg": "-72.4281005859375", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Essex", + "scheduled_service": "no", + "gps_code": "CT97", + "local_code": "CT97" + }, + { + "id": "17052", + "ident": "CT98", + "type": "heliport", + "name": "Middlesex Hospital Heliport", + "latitude_deg": "41.554841", + "longitude_deg": "-72.64614", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Middletown", + "scheduled_service": "no", + "gps_code": "CT98", + "local_code": "CT98" + }, + { + "id": "17053", + "ident": "CT99", + "type": "heliport", + "name": "Old Saybrook Police Heliport", + "latitude_deg": "41.29069900512695", + "longitude_deg": "-72.37899780273438", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Old Saybrook", + "scheduled_service": "no", + "gps_code": "CT99", + "local_code": "CT99" + }, + { + "id": "1585", + "ident": "CTA2", + "type": "heliport", + "name": "Sept-Îles (Hydro-Québec) Heliport", + "latitude_deg": "50.288352156", + "longitude_deg": "-66.4124178886", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Sept-Îles", + "scheduled_service": "no", + "gps_code": "CTA2", + "local_code": "CTA2", + "keywords": "TA2" + }, + { + "id": "1586", + "ident": "CTA3", + "type": "small_airport", + "name": "Île aux Coudres Airport", + "latitude_deg": "47.3894", + "longitude_deg": "-70.384399", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "L'Isle-aux-Coudres", + "scheduled_service": "no", + "gps_code": "CTA3", + "local_code": "CTA3", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%8Ele_aux_Coudres_Airport", + "keywords": "TA3" + }, + { + "id": "1587", + "ident": "CTA4", + "type": "small_airport", + "name": "St Bruno-de-Guigues Airport", + "latitude_deg": "47.4491996765", + "longitude_deg": "-79.41809844970001", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Bruno-de-Guigues", + "scheduled_service": "no", + "gps_code": "CTA4", + "local_code": "CTA4", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Bruno-De-Guigues_Airport", + "keywords": "TA4" + }, + { + "id": "28452", + "ident": "CTA5", + "type": "seaplane_base", + "name": "Val-D'Or/Hydrobase Piché Dubuisson Seaplane Base", + "latitude_deg": "48.085301", + "longitude_deg": "-77.888601", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Val-d'Or", + "scheduled_service": "no", + "gps_code": "CTA5", + "local_code": "CTA5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Val-d%27Or/Rivi%C3%A8re_Pich%C3%A9_Water_Aerodrome" + }, + { + "id": "320191", + "ident": "CTA6", + "type": "small_airport", + "name": "Bracebridge (Tinks) Airport", + "latitude_deg": "45.007", + "longitude_deg": "-79.414101", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Bracebridge", + "scheduled_service": "no", + "gps_code": "CTA6", + "local_code": "CTA6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bracebridge_(Tinks)_Aerodrome" + }, + { + "id": "1588", + "ident": "CTA9", + "type": "heliport", + "name": "Ottawa / Gatineau (Casino) Heliport", + "latitude_deg": "45.4467020875", + "longitude_deg": "-75.72676420210001", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Ottawa", + "scheduled_service": "no", + "gps_code": "CTA9", + "local_code": "CTA9", + "keywords": "TA9" + }, + { + "id": "1589", + "ident": "CTB2", + "type": "heliport", + "name": "Thunder Bay (Health Science Centre) Heliport", + "latitude_deg": "48.423099517822266", + "longitude_deg": "-89.26920318603516", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Thunder Bay", + "scheduled_service": "no", + "gps_code": "CTB2", + "local_code": "CTB2", + "keywords": "TB2" + }, + { + "id": "1590", + "ident": "CTB6", + "type": "small_airport", + "name": "Tête-à-la-Baleine Airport", + "latitude_deg": "50.674400329589844", + "longitude_deg": "-59.38359832763672", + "elevation_ft": "107", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Tête-à-la-Baleine", + "scheduled_service": "yes", + "gps_code": "CTB6", + "iata_code": "ZTB", + "local_code": "CTB6", + "wikipedia_link": "https://en.wikipedia.org/wiki/T%C3%AAte-%C3%A0-La-Baleine_Airport", + "keywords": "TB6" + }, + { + "id": "1591", + "ident": "CTB7", + "type": "heliport", + "name": "Taber (Health Centre) Heliport", + "latitude_deg": "49.78559875488281", + "longitude_deg": "-112.16600036621094", + "elevation_ft": "2669", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Taber", + "scheduled_service": "no", + "gps_code": "CTB7", + "local_code": "CTB7", + "keywords": "TB7" + }, + { + "id": "28400", + "ident": "CTC2", + "type": "seaplane_base", + "name": "St-Alphonse/Lac Cloutier Seaplane Base", + "latitude_deg": "46.192799", + "longitude_deg": "-73.654404", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Saint-Alphonse", + "scheduled_service": "no", + "gps_code": "CTC2", + "local_code": "CTC2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saint-Alphonse/Lac_Cloutier_Water_Aerodrome", + "keywords": "TC2" + }, + { + "id": "28288", + "ident": "CTD3", + "type": "seaplane_base", + "name": "Lac Sébastien Seaplane Base", + "latitude_deg": "48.65169906616211", + "longitude_deg": "-71.14579772949219", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CTD3", + "local_code": "CTD3" + }, + { + "id": "1592", + "ident": "CTD4", + "type": "heliport", + "name": "Baie-St-Paul Heliport", + "latitude_deg": "47.44329833984375", + "longitude_deg": "-70.51640319824219", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Baie-St-Paul", + "scheduled_service": "no", + "gps_code": "CTD4", + "local_code": "CTD4", + "keywords": "TD4" + }, + { + "id": "28254", + "ident": "CTE3", + "type": "seaplane_base", + "name": "Havre St-Pierre Seaplane Base", + "latitude_deg": "50.263302", + "longitude_deg": "-63.550598", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CTE3", + "local_code": "CTE3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Havre_Saint-Pierre_Water_Aerodrome", + "keywords": "TE3" + }, + { + "id": "1593", + "ident": "CTE5", + "type": "small_airport", + "name": "Lac à la Perchaude Airport", + "latitude_deg": "46.622501373291016", + "longitude_deg": "-72.84829711914062", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Lac à la Perchaude", + "scheduled_service": "no", + "gps_code": "CTE5", + "local_code": "CTE5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lac_%C3%A0_la_Perchaude_Airport", + "keywords": "TE5" + }, + { + "id": "320697", + "ident": "CTF2", + "type": "heliport", + "name": "Tofield Health Centre Heliport", + "latitude_deg": "53.373004", + "longitude_deg": "-112.6506", + "elevation_ft": "2297", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Tofield", + "scheduled_service": "no", + "gps_code": "CTF2", + "local_code": "CTF2" + }, + { + "id": "1594", + "ident": "CTF3", + "type": "small_airport", + "name": "Causapscal Airport", + "latitude_deg": "48.311857", + "longitude_deg": "-67.250147", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Causapscal", + "scheduled_service": "no", + "gps_code": "CTF3", + "local_code": "CTF3", + "keywords": "TF3" + }, + { + "id": "46595", + "ident": "CTF4", + "type": "small_airport", + "name": "Dundalk (Tripp Field)", + "latitude_deg": "44.174386397199996", + "longitude_deg": "-80.3079128265", + "elevation_ft": "1700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CTF4", + "keywords": "tf4" + }, + { + "id": "320481", + "ident": "CTF5", + "type": "small_airport", + "name": "Pierceland (Turchyn Field)", + "latitude_deg": "54.300305", + "longitude_deg": "-109.9269", + "elevation_ft": "1790", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Pierceland", + "scheduled_service": "no", + "gps_code": "CTF5", + "local_code": "CTF5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pierceland_(Turchyn_Field)_Aerodrome" + }, + { + "id": "1595", + "ident": "CTG2", + "type": "heliport", + "name": "Montreal / St-Hubert Helicraft", + "latitude_deg": "45.5319191641", + "longitude_deg": "-73.41086447240001", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montréal", + "scheduled_service": "no", + "gps_code": "CTG2", + "local_code": "CTG2", + "keywords": "TG2" + }, + { + "id": "1596", + "ident": "CTG3", + "type": "small_airport", + "name": "Du Rocher-Percé (Pabok) Airport", + "latitude_deg": "48.38330078125", + "longitude_deg": "-64.56439971923828", + "elevation_ft": "87", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Du Rocher-Percé", + "scheduled_service": "no", + "gps_code": "CTG3", + "local_code": "CTG3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Du_Rocher-Perc%C3%A9_(Pabok)_Airport", + "keywords": "TG3" + }, + { + "id": "300234", + "ident": "CTH2", + "type": "small_airport", + "name": "Thor Lake Airport", + "latitude_deg": "62.1007902302", + "longitude_deg": "-112.624111176", + "elevation_ft": "809", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "scheduled_service": "no", + "gps_code": "CTH2", + "local_code": "CTH2" + }, + { + "id": "1597", + "ident": "CTH3", + "type": "small_airport", + "name": "Grandes-Bergeronnes Airport", + "latitude_deg": "48.232200622558594", + "longitude_deg": "-69.54280090332031", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Grandes-Bergeronnes", + "scheduled_service": "no", + "gps_code": "CTH3", + "local_code": "CTH3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grandes-Bergeronnes_Airport", + "keywords": "TH3" + }, + { + "id": "1598", + "ident": "CTH4", + "type": "closed", + "name": "Ottawa / Hull (Expressair) Heliport", + "latitude_deg": "45.464377", + "longitude_deg": "-75.737363", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Ottawa", + "scheduled_service": "no", + "keywords": "CTH4" + }, + { + "id": "1599", + "ident": "CTH5", + "type": "heliport", + "name": "Harrington Harbour Heliport", + "latitude_deg": "50.49610137939453", + "longitude_deg": "-59.48059844970703", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Harrington Harbour", + "scheduled_service": "no", + "gps_code": "CTH5", + "local_code": "CTH5", + "keywords": "TH5" + }, + { + "id": "28302", + "ident": "CTH6", + "type": "seaplane_base", + "name": "La Tuque Seaplane Base", + "latitude_deg": "47.461399078369", + "longitude_deg": "-72.781097412109", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "La Tuque", + "scheduled_service": "no", + "gps_code": "CTH6", + "local_code": "CTH6" + }, + { + "id": "320219", + "ident": "CTH8", + "type": "small_airport", + "name": "Tally-Ho Field", + "latitude_deg": "44.2143", + "longitude_deg": "-79.7769", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Cookstown", + "scheduled_service": "no", + "gps_code": "CTH8", + "local_code": "CTH8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cookstown/Tally-Ho_Field_Aerodrome" + }, + { + "id": "1600", + "ident": "CTH9", + "type": "heliport", + "name": "St-Augustin Heliport", + "latitude_deg": "51.2236745629", + "longitude_deg": "-58.642385602", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Augustin", + "scheduled_service": "no", + "gps_code": "CTH9", + "local_code": "CTH9", + "keywords": "TH9" + }, + { + "id": "28349", + "ident": "CTI3", + "type": "seaplane_base", + "name": "Ottawa / Gatineau Seaplane Base", + "latitude_deg": "45.4644012451", + "longitude_deg": "-75.68000030520001", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Gatineau", + "scheduled_service": "no", + "gps_code": "CTI3", + "local_code": "CTI3", + "keywords": "TI3" + }, + { + "id": "1601", + "ident": "CTJ2", + "type": "heliport", + "name": "Québec (Coast Guard) Heliport", + "latitude_deg": "46.80633544921875", + "longitude_deg": "-71.2039794921875", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Québec", + "scheduled_service": "no", + "gps_code": "CTJ2", + "local_code": "CTJ2", + "keywords": "TJ2, Quebec City" + }, + { + "id": "1602", + "ident": "CTJ5", + "type": "closed", + "name": "Quebec / Hôpital de l'enfant-Jésus Heliport", + "latitude_deg": "46.837568", + "longitude_deg": "-71.225179", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Québec", + "scheduled_service": "no", + "gps_code": "CTJ5", + "local_code": "CTJ5", + "keywords": "TJ5, Quebec City" + }, + { + "id": "1603", + "ident": "CTK2", + "type": "small_airport", + "name": "Senneterre Airport", + "latitude_deg": "48.340599060058594", + "longitude_deg": "-77.18109893798828", + "elevation_ft": "1106", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Senneterre", + "scheduled_service": "no", + "gps_code": "CTK2", + "local_code": "CTK2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Senneterre_Airport", + "keywords": "TK2" + }, + { + "id": "1604", + "ident": "CTK6", + "type": "small_airport", + "name": "Kegaska Airport", + "latitude_deg": "50.1958007812", + "longitude_deg": "-61.265800476100004", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Kegaska", + "scheduled_service": "no", + "gps_code": "CTK6", + "iata_code": "ZKG", + "local_code": "CTK6", + "wikipedia_link": "https://en.wikipedia.org/wiki/K%C3%A9gashka_Airport", + "keywords": "TK6" + }, + { + "id": "43330", + "ident": "CTK7", + "type": "small_airport", + "name": "Selkirk / Kindy Airstrip", + "latitude_deg": "42.851112", + "longitude_deg": "-79.879166", + "elevation_ft": "686", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Selkirk", + "scheduled_service": "no", + "gps_code": "CTK7", + "local_code": "TK7" + }, + { + "id": "298385", + "ident": "CTK8", + "type": "heliport", + "name": "Abbotsford (Teck) Heliport", + "latitude_deg": "49.126854", + "longitude_deg": "-122.395003", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Abbotsford", + "scheduled_service": "no", + "gps_code": "CTK8", + "local_code": "CTK8" + }, + { + "id": "28439", + "ident": "CTM2", + "type": "seaplane_base", + "name": "Temagami/Mine Landing Seaplane Base", + "latitude_deg": "46.96030044555664", + "longitude_deg": "-80.02310180664062", + "elevation_ft": "962", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CTM2", + "local_code": "CTM2" + }, + { + "id": "28194", + "ident": "CTM3", + "type": "seaplane_base", + "name": "Chute-Des-Passes/Lac Margane Seaplane Base", + "latitude_deg": "49.9434", + "longitude_deg": "-71.138", + "elevation_ft": "1310", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Chutes-des-Passes", + "scheduled_service": "no", + "gps_code": "CTM3", + "iata_code": "YWQ", + "local_code": "CTM3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chutes-des-Passes/Lac_Margane_Water_Aerodrome" + }, + { + "id": "1605", + "ident": "CTM4", + "type": "heliport", + "name": "Toronto (St. Michael's Hospital) Heliport", + "latitude_deg": "43.654152915", + "longitude_deg": "-79.37847107650002", + "elevation_ft": "529", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Toronto", + "scheduled_service": "no", + "gps_code": "CTM4", + "local_code": "CTM4", + "keywords": "TM4" + }, + { + "id": "45217", + "ident": "CTM6", + "type": "heliport", + "name": "Timmins & District Hospital Heliport", + "latitude_deg": "48.486944", + "longitude_deg": "-81.313611", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Timmins", + "scheduled_service": "no", + "gps_code": "CTM6", + "local_code": "CTM6" + }, + { + "id": "316099", + "ident": "CTM7", + "type": "small_airport", + "name": "Tundra Mine/Salamita Mine Aerodrome", + "latitude_deg": "64.0725", + "longitude_deg": "-111.158", + "elevation_ft": "1445", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Tundra and Salamita Mines", + "scheduled_service": "no", + "gps_code": "CTM7", + "local_code": "CTM7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tundra_Mine/Salamita_Mine_Aerodrome" + }, + { + "id": "320782", + "ident": "CTM8", + "type": "seaplane_base", + "name": "Témiscouata-sur-le-Lac Water Aerodrome", + "latitude_deg": "47.685", + "longitude_deg": "-68.875", + "elevation_ft": "489", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Témiscouata-sur-le-Lac", + "scheduled_service": "no", + "gps_code": "CTM8", + "local_code": "CTM8" + }, + { + "id": "320453", + "ident": "CTM9", + "type": "heliport", + "name": "New Oakville Trafalgar Memorial Hospital Heliport", + "latitude_deg": "43.449102", + "longitude_deg": "-79.763801", + "elevation_ft": "531", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Oakville", + "scheduled_service": "no", + "gps_code": "CTM9", + "local_code": "CTM9", + "home_link": "https://www.haltonhealthcare.on.ca/new-oakville-hospital.html" + }, + { + "id": "28278", + "ident": "CTN3", + "type": "seaplane_base", + "name": "Lac Beauregard Seaplane Base", + "latitude_deg": "46.95309829711914", + "longitude_deg": "-74.89219665527344", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CTN3", + "local_code": "CTN3" + }, + { + "id": "1606", + "ident": "CTN6", + "type": "small_airport", + "name": "Treherne (South Norfolk Airpark) Airport", + "latitude_deg": "49.659698486328125", + "longitude_deg": "-98.66529846191406", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Treherne", + "scheduled_service": "no", + "gps_code": "CTN6", + "local_code": "CTN6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Treherne_(South_Norfolk_Airpark)", + "keywords": "TN6" + }, + { + "id": "313805", + "ident": "CTN7", + "type": "small_airport", + "name": "Canton Aerodrome", + "latitude_deg": "44.002807", + "longitude_deg": "-78.361816", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Port Hope", + "scheduled_service": "no", + "gps_code": "CTN7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Canton_Aerodrome" + }, + { + "id": "37052", + "ident": "CTP", + "type": "small_airport", + "name": "Carutapera Airport", + "latitude_deg": "-1.225365", + "longitude_deg": "-46.019057", + "elevation_ft": "85", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Carutapera", + "scheduled_service": "no", + "iata_code": "CTP" + }, + { + "id": "356284", + "ident": "CTP2", + "type": "closed", + "name": "Hull/Quebec Police Heliport", + "latitude_deg": "45.466877", + "longitude_deg": "-75.741586", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Ottawa-Gatineau(Hull)", + "scheduled_service": "no", + "gps_code": "CTP2", + "keywords": "CTP2" + }, + { + "id": "28170", + "ident": "CTP3", + "type": "seaplane_base", + "name": "Barrage Gouin Seaplane Base", + "latitude_deg": "48.35419845581055", + "longitude_deg": "-74.10279846191406", + "elevation_ft": "1325", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CTP3", + "local_code": "CTP3" + }, + { + "id": "28287", + "ident": "CTP4", + "type": "seaplane_base", + "name": "Lac Pau (Caniapiscau) Seaplane Base", + "latitude_deg": "54.845001220703125", + "longitude_deg": "-69.88189697265625", + "elevation_ft": "1657", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CTP4", + "local_code": "CTP4" + }, + { + "id": "1607", + "ident": "CTP5", + "type": "heliport", + "name": "St. Paul (Health Care Centre) Heliport", + "latitude_deg": "53.98809814453125", + "longitude_deg": "-111.29100036621094", + "elevation_ft": "2113", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "St. Paul", + "scheduled_service": "no", + "gps_code": "CTP5", + "local_code": "CTP5", + "keywords": "TP5" + }, + { + "id": "1608", + "ident": "CTP9", + "type": "small_airport", + "name": "Donaldson Airport", + "latitude_deg": "61.6622009277", + "longitude_deg": "-73.3214035034", + "elevation_ft": "1902", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Kattiniq", + "scheduled_service": "no", + "gps_code": "CTP9", + "iata_code": "YAU", + "local_code": "CTP9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kattiniq/Donaldson_Airport", + "keywords": "TP9" + }, + { + "id": "1609", + "ident": "CTQ2", + "type": "small_airport", + "name": "Weller Airport", + "latitude_deg": "45.034400939941406", + "longitude_deg": "-72.03500366210938", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Stanstead", + "scheduled_service": "no", + "gps_code": "CTQ2", + "local_code": "CTQ2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stanstead/Weller_Airport", + "keywords": "TQ2" + }, + { + "id": "28151", + "ident": "CTQ3", + "type": "closed", + "name": "Aguanish Water Aerodrome", + "latitude_deg": "50.230595", + "longitude_deg": "-62.112499", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Aguanish", + "scheduled_service": "no", + "gps_code": "CTQ3", + "local_code": "CTQ3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aguanish_Water_Aerodrome" + }, + { + "id": "1610", + "ident": "CTQ4", + "type": "closed", + "name": "Airview Airport", + "latitude_deg": "45.353254", + "longitude_deg": "-71.86087", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Lennoxville", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lennoxville_(Airview)_Airport", + "keywords": "CTQ4" + }, + { + "id": "1611", + "ident": "CTQ6", + "type": "small_airport", + "name": "St-Anselme Airport", + "latitude_deg": "46.62189865112305", + "longitude_deg": "-70.95500183105469", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Anselme", + "scheduled_service": "no", + "gps_code": "CTQ6", + "local_code": "CTQ6", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Anselme_Airport", + "keywords": "TQ6" + }, + { + "id": "1612", + "ident": "CTR4", + "type": "heliport", + "name": "Artopex Plus Heliport", + "latitude_deg": "45.39080047607422", + "longitude_deg": "-72.76609802246094", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Granby", + "scheduled_service": "no", + "gps_code": "CTR4", + "local_code": "CTR4", + "keywords": "TR4" + }, + { + "id": "1613", + "ident": "CTR5", + "type": "closed", + "name": "Val-D'Or / L'Escale Heliport", + "latitude_deg": "48.103592916", + "longitude_deg": "-77.8074422479", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Val-D'Or", + "scheduled_service": "no", + "gps_code": "CTR5", + "local_code": "CTR5", + "keywords": "TR5" + }, + { + "id": "1614", + "ident": "CTR6", + "type": "small_airport", + "name": "St-Basile (Marcotte) Airport", + "latitude_deg": "46.783599853515625", + "longitude_deg": "-71.82640075683594", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Basile", + "scheduled_service": "no", + "gps_code": "CTR6", + "local_code": "CTR6", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Bas%C3%AEle_(Marcotte)_Airport", + "keywords": "TR6" + }, + { + "id": "28350", + "ident": "CTR7", + "type": "seaplane_base", + "name": "Ottawa / Rockcliffe Seaplane Base", + "latitude_deg": "45.463832946100005", + "longitude_deg": "-75.64254283910002", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ottawa", + "scheduled_service": "no", + "gps_code": "CTR7", + "iata_code": "TR7", + "local_code": "CTR7", + "keywords": "TR7" + }, + { + "id": "1615", + "ident": "CTS2", + "type": "heliport", + "name": "Quebec / Beauport (HQ) Heliport", + "latitude_deg": "46.8795206445", + "longitude_deg": "-71.1941441149", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Québec", + "scheduled_service": "no", + "gps_code": "CTS2", + "local_code": "CTS2", + "keywords": "TS2, Quebec City" + }, + { + "id": "28279", + "ident": "CTS3", + "type": "seaplane_base", + "name": "Lac Berthelot Seaplane Base", + "latitude_deg": "48.52000045776367", + "longitude_deg": "-76.1624984741211", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CTS3", + "local_code": "CTS3" + }, + { + "id": "302188", + "ident": "CTS6", + "type": "heliport", + "name": "Hespero / Safron Residence Heliport", + "latitude_deg": "52.28016", + "longitude_deg": "-114.427972", + "elevation_ft": "3192", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Hespero", + "scheduled_service": "no", + "gps_code": "CTS6" + }, + { + "id": "1616", + "ident": "CTT2", + "type": "closed", + "name": "Chambly Airport", + "latitude_deg": "45.401100158691406", + "longitude_deg": "-73.29530334472656", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Chambly", + "scheduled_service": "no", + "gps_code": "CTT2", + "local_code": "CTT2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chambly_Airport", + "keywords": "TT2" + }, + { + "id": "1617", + "ident": "CTT5", + "type": "small_airport", + "name": "La Romaine Airport", + "latitude_deg": "50.259701", + "longitude_deg": "-60.679401", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "La Romaine", + "scheduled_service": "no", + "gps_code": "CTT5", + "iata_code": "ZGS", + "local_code": "CTT5", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Romaine_Airport", + "keywords": "TT5, Gethsemani" + }, + { + "id": "1618", + "ident": "CTU2", + "type": "small_airport", + "name": "Fontanges Airport", + "latitude_deg": "54.553901672363", + "longitude_deg": "-71.173301696777", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Fontanges", + "scheduled_service": "no", + "gps_code": "CTU2", + "iata_code": "YFG", + "local_code": "CTU2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fontages_Airport", + "keywords": "TU2" + }, + { + "id": "28283", + "ident": "CTU4", + "type": "closed", + "name": "Lac Gagnon Seaplane Base", + "latitude_deg": "46.117500305176", + "longitude_deg": "-75.115303039551", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Duhamel", + "scheduled_service": "no", + "gps_code": "CTU4", + "iata_code": "YGA", + "local_code": "CTU4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lac_Gagnon_Water_Aerodrome" + }, + { + "id": "1619", + "ident": "CTU5", + "type": "small_airport", + "name": "La Tabatière Airport", + "latitude_deg": "50.8307991027832", + "longitude_deg": "-58.97560119628906", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "La Tabatière", + "scheduled_service": "yes", + "gps_code": "CTU5", + "iata_code": "ZLT", + "local_code": "CTU5", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Tabati%C3%A8re_Airport", + "keywords": "TU5" + }, + { + "id": "28280", + "ident": "CTV2", + "type": "seaplane_base", + "name": "Lac-Des-Écorces Seaplane Base", + "latitude_deg": "46.54859924316406", + "longitude_deg": "-75.4186019897461", + "elevation_ft": "753", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CTV2", + "local_code": "CTV2" + }, + { + "id": "28290", + "ident": "CTX2", + "type": "seaplane_base", + "name": "Lac Trévet Seaplane Base", + "latitude_deg": "48.159400939941406", + "longitude_deg": "-76.13780212402344", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "scheduled_service": "no", + "gps_code": "CTX2", + "local_code": "CTX2" + }, + { + "id": "28190", + "ident": "CTY3", + "type": "seaplane_base", + "name": "Cascades Seaplane Base", + "latitude_deg": "45.58580017089844", + "longitude_deg": "-75.86810302734375", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Cantley", + "scheduled_service": "no", + "gps_code": "CTY3", + "local_code": "CTY3" + }, + { + "id": "301231", + "ident": "CTY4", + "type": "small_airport", + "name": "Olds / North 40 Ranch Airstrip", + "latitude_deg": "51.9001705129", + "longitude_deg": "-114.147820473", + "elevation_ft": "3410", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "gps_code": "CTY4" + }, + { + "id": "1620", + "ident": "CTY5", + "type": "small_airport", + "name": "Rougemont Airport", + "latitude_deg": "45.43830108642578", + "longitude_deg": "-73.03780364990234", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Rougemont", + "scheduled_service": "no", + "gps_code": "CTY5", + "local_code": "CTY5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rougemont_Airport", + "keywords": "TY5" + }, + { + "id": "42276", + "ident": "CU-0001", + "type": "small_airport", + "name": "Corral de Rio Airport", + "latitude_deg": "19.93779945373535", + "longitude_deg": "-76.78939819335938", + "elevation_ft": "1", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-13", + "municipality": "Corral de Rio", + "scheduled_service": "no" + }, + { + "id": "336490", + "ident": "CU-0002", + "type": "closed", + "name": "Eugenia Airport", + "latitude_deg": "22.319268", + "longitude_deg": "-78.981794", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-07", + "municipality": "Aridanes", + "scheduled_service": "no" + }, + { + "id": "42278", + "ident": "CU-0003", + "type": "closed", + "name": "Preston Airport", + "latitude_deg": "20.73327", + "longitude_deg": "-75.659258", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-11", + "municipality": "Preston", + "scheduled_service": "no", + "iata_code": "PST" + }, + { + "id": "42280", + "ident": "CU-0004", + "type": "small_airport", + "name": "Guardalavaca Airport", + "latitude_deg": "21.111600875900002", + "longitude_deg": "-75.8198013306", + "elevation_ft": "318", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-11", + "municipality": "Yaguajay", + "scheduled_service": "no", + "gps_code": "MUGV" + }, + { + "id": "42282", + "ident": "CU-0005", + "type": "small_airport", + "name": "El Caney Airport", + "latitude_deg": "21.316999435424805", + "longitude_deg": "-78.45149993896484", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "municipality": "El Caney", + "scheduled_service": "no" + }, + { + "id": "42283", + "ident": "CU-0006", + "type": "small_airport", + "name": "La Olivia Airport", + "latitude_deg": "21.469999313354492", + "longitude_deg": "-78.46080017089844", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "municipality": "La Olivia", + "scheduled_service": "no" + }, + { + "id": "42286", + "ident": "CU-0007", + "type": "small_airport", + "name": "San Pedro Airport", + "latitude_deg": "21.73740005493164", + "longitude_deg": "-79.78050231933594", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-07", + "municipality": "San Pedro", + "scheduled_service": "no" + }, + { + "id": "42289", + "ident": "CU-0008", + "type": "small_airport", + "name": "Mantua Airport", + "latitude_deg": "22.256399154663086", + "longitude_deg": "-84.31220245361328", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-01", + "municipality": "Mantua", + "scheduled_service": "no" + }, + { + "id": "42292", + "ident": "CU-0009", + "type": "small_airport", + "name": "La Asunción Airport", + "latitude_deg": "22.583200454711914", + "longitude_deg": "-83.23049926757812", + "elevation_ft": "122", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-01", + "municipality": "La Asunción", + "scheduled_service": "no" + }, + { + "id": "42294", + "ident": "CU-0010", + "type": "small_airport", + "name": "El Frances Airport", + "latitude_deg": "22.617900848388672", + "longitude_deg": "-82.9281997680664", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-01", + "municipality": "El Frances", + "scheduled_service": "no" + }, + { + "id": "42295", + "ident": "CU-0011", + "type": "small_airport", + "name": "Juan de la Cruz Airport", + "latitude_deg": "22.6922", + "longitude_deg": "-82.038696", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-16", + "municipality": "Juan de la Cruz", + "scheduled_service": "no" + }, + { + "id": "42296", + "ident": "CU-0012", + "type": "small_airport", + "name": "Artemisa Airport", + "latitude_deg": "22.751699447631836", + "longitude_deg": "-82.73619842529297", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-15", + "municipality": "Artemisa", + "scheduled_service": "no" + }, + { + "id": "42299", + "ident": "CU-0013", + "type": "small_airport", + "name": "San Pedro Highway Airstrip", + "latitude_deg": "22.977486", + "longitude_deg": "-82.471378", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-03", + "municipality": "Havana", + "scheduled_service": "no" + }, + { + "id": "42300", + "ident": "CU-0014", + "type": "small_airport", + "name": "San Jose de las Lajas Highway Airstrip", + "latitude_deg": "22.9776", + "longitude_deg": "-82.135597", + "elevation_ft": "393", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-16", + "municipality": "San Jose de las Lajas", + "scheduled_service": "no" + }, + { + "id": "42749", + "ident": "CU-0015", + "type": "closed", + "name": "McCalla Field", + "latitude_deg": "19.911500930786", + "longitude_deg": "-75.164199829102", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-14", + "municipality": "Guantanamo Bay Naval Station", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/McCalla_Field" + }, + { + "id": "43668", + "ident": "CU-0016", + "type": "small_airport", + "name": "La Francia Airfield", + "latitude_deg": "22.5331993103", + "longitude_deg": "-83.2134017944", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-01", + "scheduled_service": "no" + }, + { + "id": "46384", + "ident": "CU-0017", + "type": "closed", + "name": "Imias Airport", + "latitude_deg": "20.080681", + "longitude_deg": "-74.625406", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-14", + "municipality": "Imias", + "scheduled_service": "no" + }, + { + "id": "46385", + "ident": "CU-0018", + "type": "small_airport", + "name": "Los Mangos de Baragua Airport", + "latitude_deg": "20.4471600722", + "longitude_deg": "-75.989921093", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-13", + "scheduled_service": "no" + }, + { + "id": "46386", + "ident": "CU-0019", + "type": "small_airport", + "name": "Altagracia Airport", + "latitude_deg": "20.379369", + "longitude_deg": "-76.163964", + "elevation_ft": "377", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-13", + "municipality": "Altagracia", + "scheduled_service": "no" + }, + { + "id": "46387", + "ident": "CU-0020", + "type": "small_airport", + "name": "Lora Airport", + "latitude_deg": "21.1697254482", + "longitude_deg": "-76.4159417152", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-11", + "scheduled_service": "no" + }, + { + "id": "46388", + "ident": "CU-0021", + "type": "small_airport", + "name": "Delicias South Airport", + "latitude_deg": "20.6812127177", + "longitude_deg": "-76.378455162", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-11", + "scheduled_service": "no" + }, + { + "id": "46389", + "ident": "CU-0022", + "type": "small_airport", + "name": "Caio Voisan Airport", + "latitude_deg": "20.411046", + "longitude_deg": "-76.794519", + "elevation_ft": "108", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-12", + "municipality": "Siete Palmas", + "scheduled_service": "no" + }, + { + "id": "46390", + "ident": "CU-0023", + "type": "small_airport", + "name": "Bayamo Northwest Airport", + "latitude_deg": "20.471969", + "longitude_deg": "-76.799895", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-12", + "municipality": "Cauto Embarcadero", + "scheduled_service": "no" + }, + { + "id": "46391", + "ident": "CU-0024", + "type": "small_airport", + "name": "Mateo Remas Airport", + "latitude_deg": "20.215972", + "longitude_deg": "-76.999741", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-12", + "municipality": "Mateo Remas", + "scheduled_service": "no" + }, + { + "id": "46392", + "ident": "CU-0025", + "type": "small_airport", + "name": "La Escondida Airport", + "latitude_deg": "20.442415", + "longitude_deg": "-76.969357", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-12", + "municipality": "La Escondida", + "scheduled_service": "no" + }, + { + "id": "46393", + "ident": "CU-0026", + "type": "small_airport", + "name": "Cayama Nueva Airport", + "latitude_deg": "20.496572", + "longitude_deg": "-76.906271", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-12", + "municipality": "Río Cauto", + "scheduled_service": "no" + }, + { + "id": "46394", + "ident": "CU-0027", + "type": "small_airport", + "name": "Guamo Airport", + "latitude_deg": "20.655454", + "longitude_deg": "-76.96337", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-12", + "municipality": "Guamo Embarcadero", + "scheduled_service": "no" + }, + { + "id": "46395", + "ident": "CU-0028", + "type": "small_airport", + "name": "Puente Guillen Airport", + "latitude_deg": "20.720414", + "longitude_deg": "-77.00223", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-12", + "municipality": "Guamo Embarcadero", + "scheduled_service": "no" + }, + { + "id": "46396", + "ident": "CU-0029", + "type": "small_airport", + "name": "El Dormitorio Airport", + "latitude_deg": "20.771763774900002", + "longitude_deg": "-77.07040071490002", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-10", + "scheduled_service": "no" + }, + { + "id": "46397", + "ident": "CU-0030", + "type": "small_airport", + "name": "San German Airport", + "latitude_deg": "20.582452108", + "longitude_deg": "-76.12431049350002", + "elevation_ft": "279", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-11", + "municipality": "San German", + "scheduled_service": "no" + }, + { + "id": "46398", + "ident": "CU-0031", + "type": "small_airport", + "name": "El Congo Airport", + "latitude_deg": "21.113327669900002", + "longitude_deg": "-76.7704868317", + "elevation_ft": "207", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-10", + "scheduled_service": "no" + }, + { + "id": "46400", + "ident": "CU-0032", + "type": "small_airport", + "name": "Jobabo Northwest Airport", + "latitude_deg": "20.9102146597", + "longitude_deg": "-77.3017787933", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "scheduled_service": "no" + }, + { + "id": "46401", + "ident": "CU-0033", + "type": "small_airport", + "name": "Campechuela Airport", + "latitude_deg": "20.218268", + "longitude_deg": "-77.298131", + "elevation_ft": "197", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-12", + "municipality": "Campechuela", + "scheduled_service": "no" + }, + { + "id": "46402", + "ident": "CU-0034", + "type": "small_airport", + "name": "San Jose Northwest Airport", + "latitude_deg": "20.869719330099997", + "longitude_deg": "-77.4443650246", + "elevation_ft": "179", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-10", + "scheduled_service": "no" + }, + { + "id": "46403", + "ident": "CU-0035", + "type": "small_airport", + "name": "Francisco Airport", + "latitude_deg": "20.798886427499998", + "longitude_deg": "-77.598323822", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-10", + "scheduled_service": "no" + }, + { + "id": "46404", + "ident": "CU-0036", + "type": "small_airport", + "name": "Hatuey Airport", + "latitude_deg": "21.1791296593", + "longitude_deg": "-77.5661373138", + "elevation_ft": "361", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "scheduled_service": "no" + }, + { + "id": "46405", + "ident": "CU-0037", + "type": "small_airport", + "name": "Guaicanamar Airport", + "latitude_deg": "20.8973856385", + "longitude_deg": "-77.9015636444", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "scheduled_service": "no" + }, + { + "id": "46406", + "ident": "CU-0038", + "type": "small_airport", + "name": "Fundo de Buena Ventura Airport", + "latitude_deg": "20.939316", + "longitude_deg": "-78.220382", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "municipality": "Sierra Maestra", + "scheduled_service": "no" + }, + { + "id": "46407", + "ident": "CU-0039", + "type": "small_airport", + "name": "Los Ingleses Airport", + "latitude_deg": "20.8250214705", + "longitude_deg": "-78.06914806370001", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "scheduled_service": "no" + }, + { + "id": "46408", + "ident": "CU-0040", + "type": "small_airport", + "name": "San Carlos Airport", + "latitude_deg": "21.057108695599997", + "longitude_deg": "-78.1214618683", + "elevation_ft": "152", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "scheduled_service": "no" + }, + { + "id": "46409", + "ident": "CU-0041", + "type": "small_airport", + "name": "Las Cruces Agricultural Airport", + "latitude_deg": "21.058047", + "longitude_deg": "-78.318885", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "municipality": "Vertientes", + "scheduled_service": "no" + }, + { + "id": "46410", + "ident": "CU-0042", + "type": "small_airport", + "name": "Vertientes Southwest Agricultural Airport", + "latitude_deg": "21.131802", + "longitude_deg": "-78.320181", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "municipality": "Vertientes", + "scheduled_service": "no" + }, + { + "id": "46411", + "ident": "CU-0043", + "type": "small_airport", + "name": "Vertientes Airport", + "latitude_deg": "21.2392024389", + "longitude_deg": "-78.1157541275", + "elevation_ft": "243", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "scheduled_service": "no" + }, + { + "id": "46412", + "ident": "CU-0044", + "type": "small_airport", + "name": "Cabrera Airport", + "latitude_deg": "21.175922", + "longitude_deg": "-78.368605", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "municipality": "Vertientes", + "scheduled_service": "no" + }, + { + "id": "46413", + "ident": "CU-0045", + "type": "small_airport", + "name": "El Cenizo Airport", + "latitude_deg": "21.200336961", + "longitude_deg": "-78.42066764830001", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "scheduled_service": "no" + }, + { + "id": "46414", + "ident": "CU-0046", + "type": "small_airport", + "name": "Amansa Guapos Airport", + "latitude_deg": "21.2619009001", + "longitude_deg": "-78.2346940041", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "scheduled_service": "no" + }, + { + "id": "46415", + "ident": "CU-0047", + "type": "small_airport", + "name": "Esmeralda Airport", + "latitude_deg": "21.8329782097", + "longitude_deg": "-78.13957214359999", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "scheduled_service": "no" + }, + { + "id": "46416", + "ident": "CU-0048", + "type": "small_airport", + "name": "Cupeyes Airport", + "latitude_deg": "21.872809767599996", + "longitude_deg": "-78.5405731201", + "elevation_ft": "99", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-08", + "scheduled_service": "no" + }, + { + "id": "46417", + "ident": "CU-0049", + "type": "small_airport", + "name": "Moron Airport", + "latitude_deg": "22.079277143799995", + "longitude_deg": "-78.61979484560001", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-08", + "scheduled_service": "no" + }, + { + "id": "46418", + "ident": "CU-0050", + "type": "small_airport", + "name": "Pina Airport", + "latitude_deg": "22.0153155231", + "longitude_deg": "-78.69043350220001", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-08", + "scheduled_service": "no" + }, + { + "id": "46419", + "ident": "CU-0051", + "type": "small_airport", + "name": "El Asiento Airport", + "latitude_deg": "22.2512885393", + "longitude_deg": "-78.89616966250001", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-08", + "scheduled_service": "no" + }, + { + "id": "46420", + "ident": "CU-0052", + "type": "small_airport", + "name": "Adelaide Airport", + "latitude_deg": "22.179536722699996", + "longitude_deg": "-78.80965232850001", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-08", + "scheduled_service": "no" + }, + { + "id": "46421", + "ident": "CU-0053", + "type": "small_airport", + "name": "Jatibonico South Airport", + "latitude_deg": "21.9045077447", + "longitude_deg": "-79.18295145030001", + "elevation_ft": "308", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-07", + "scheduled_service": "no" + }, + { + "id": "46422", + "ident": "CU-0054", + "type": "small_airport", + "name": "Ramblazon de Reyes Airport", + "latitude_deg": "21.679164333099997", + "longitude_deg": "-79.0742254257", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-08", + "scheduled_service": "no" + }, + { + "id": "46423", + "ident": "CU-0055", + "type": "small_airport", + "name": "Las Crisis Airport", + "latitude_deg": "21.653160351199997", + "longitude_deg": "-79.14323329930001", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-07", + "scheduled_service": "no" + }, + { + "id": "46424", + "ident": "CU-0056", + "type": "small_airport", + "name": "Maria Rayes Airport", + "latitude_deg": "21.6649464791", + "longitude_deg": "-79.2126488686", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-07", + "scheduled_service": "no" + }, + { + "id": "46425", + "ident": "CU-0057", + "type": "small_airport", + "name": "Las Obas Airport", + "latitude_deg": "21.658066369100002", + "longitude_deg": "-79.3397641182", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-07", + "scheduled_service": "no" + }, + { + "id": "46426", + "ident": "CU-0058", + "type": "small_airport", + "name": "Los Galleguitos East Airport", + "latitude_deg": "21.6087592928", + "longitude_deg": "-79.25605773930002", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-07", + "scheduled_service": "no" + }, + { + "id": "46427", + "ident": "CU-0059", + "type": "small_airport", + "name": "El Jibaro Airport", + "latitude_deg": "21.722028751699998", + "longitude_deg": "-79.2279052734", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-07", + "scheduled_service": "no" + }, + { + "id": "46428", + "ident": "CU-0060", + "type": "small_airport", + "name": "Los Tamarindos Airport", + "latitude_deg": "21.7130183149", + "longitude_deg": "-79.29785728450001", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-07", + "scheduled_service": "no" + }, + { + "id": "46429", + "ident": "CU-0061", + "type": "small_airport", + "name": "Las Guasimas Airport", + "latitude_deg": "21.6997009726", + "longitude_deg": "-79.39785003659999", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-07", + "scheduled_service": "no" + }, + { + "id": "46430", + "ident": "CU-0062", + "type": "small_airport", + "name": "Viejo Airport", + "latitude_deg": "22.363074148299997", + "longitude_deg": "-79.530544281", + "elevation_ft": "656", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-05", + "scheduled_service": "no" + }, + { + "id": "46431", + "ident": "CU-0063", + "type": "small_airport", + "name": "Jutiera Airport", + "latitude_deg": "22.6163878048", + "longitude_deg": "-79.72889900210001", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-05", + "scheduled_service": "no" + }, + { + "id": "46432", + "ident": "CU-0064", + "type": "small_airport", + "name": "Purio Airport", + "latitude_deg": "22.683162743399997", + "longitude_deg": "-79.8882865906", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-05", + "scheduled_service": "no" + }, + { + "id": "46433", + "ident": "CU-0065", + "type": "small_airport", + "name": "Las Nuevas Airport", + "latitude_deg": "22.9923925162", + "longitude_deg": "-80.66475391390001", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-05", + "scheduled_service": "no" + }, + { + "id": "46434", + "ident": "CU-0066", + "type": "small_airport", + "name": "Marti East Airport", + "latitude_deg": "22.9508850794", + "longitude_deg": "-80.8931064606", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-04", + "scheduled_service": "no" + }, + { + "id": "46435", + "ident": "CU-0067", + "type": "small_airport", + "name": "Los Arabos Airport", + "latitude_deg": "22.732628893199998", + "longitude_deg": "-80.7358646393", + "elevation_ft": "243", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-04", + "scheduled_service": "no" + }, + { + "id": "46436", + "ident": "CU-0068", + "type": "small_airport", + "name": "Mieles Airport", + "latitude_deg": "22.971156367299997", + "longitude_deg": "-81.12980604170001", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-04", + "scheduled_service": "no" + }, + { + "id": "46437", + "ident": "CU-0069", + "type": "small_airport", + "name": "Jaguey Grande North Airport", + "latitude_deg": "22.5891447298", + "longitude_deg": "-81.11180305479999", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-04", + "scheduled_service": "no" + }, + { + "id": "46438", + "ident": "CU-0070", + "type": "small_airport", + "name": "Giron Airport", + "latitude_deg": "22.075300274599996", + "longitude_deg": "-81.03833198550001", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-04", + "scheduled_service": "no" + }, + { + "id": "46439", + "ident": "CU-0071", + "type": "small_airport", + "name": "Union de Reyes Airport", + "latitude_deg": "22.803718738399997", + "longitude_deg": "-81.498041153", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-04", + "scheduled_service": "no" + }, + { + "id": "46440", + "ident": "CU-0072", + "type": "small_airport", + "name": "Aguacate Airport", + "latitude_deg": "22.987355", + "longitude_deg": "-81.891918", + "elevation_ft": "318", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-16", + "municipality": "Aguacate", + "scheduled_service": "no" + }, + { + "id": "46441", + "ident": "CU-0073", + "type": "small_airport", + "name": "Santa Fe Airport", + "latitude_deg": "23.072506653399998", + "longitude_deg": "-82.51148700710002", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-03", + "scheduled_service": "no" + }, + { + "id": "46442", + "ident": "CU-0074", + "type": "small_airport", + "name": "Güira de Melena Airport", + "latitude_deg": "22.783798", + "longitude_deg": "-82.547686", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-15", + "municipality": "El Mayorquín", + "scheduled_service": "no" + }, + { + "id": "46443", + "ident": "CU-0075", + "type": "small_airport", + "name": "Branas Airport", + "latitude_deg": "22.603254750599998", + "longitude_deg": "-83.0974316597", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-01", + "scheduled_service": "no" + }, + { + "id": "46444", + "ident": "CU-0076", + "type": "small_airport", + "name": "Alturas Airport", + "latitude_deg": "22.934503818099998", + "longitude_deg": "-83.2780408859", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-01", + "scheduled_service": "no" + }, + { + "id": "46445", + "ident": "CU-0077", + "type": "small_airport", + "name": "La Cubana Airport", + "latitude_deg": "22.4485848608", + "longitude_deg": "-83.18611621859999", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-01", + "scheduled_service": "no" + }, + { + "id": "46446", + "ident": "CU-0078", + "type": "small_airport", + "name": "Los Zagales Airport", + "latitude_deg": "22.423088913", + "longitude_deg": "-83.27868461610001", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-01", + "scheduled_service": "no" + }, + { + "id": "46447", + "ident": "CU-0079", + "type": "small_airport", + "name": "Caserio la Jocuma North Airport", + "latitude_deg": "22.4608898627", + "longitude_deg": "-83.3620047569", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-01", + "scheduled_service": "no" + }, + { + "id": "46448", + "ident": "CU-0080", + "type": "small_airport", + "name": "Las Cruces Airport", + "latitude_deg": "22.2720603092", + "longitude_deg": "-83.4409046173", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-01", + "scheduled_service": "no" + }, + { + "id": "46462", + "ident": "CU-0081", + "type": "small_airport", + "name": "Las Glorias Airport", + "latitude_deg": "22.3923011022", + "longitude_deg": "-80.49974441530001", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-06", + "scheduled_service": "no" + }, + { + "id": "336491", + "ident": "CU-0082", + "type": "closed", + "name": "Cunagua Airport", + "latitude_deg": "22.081462", + "longitude_deg": "-78.36519", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-08", + "municipality": "Bolivia", + "scheduled_service": "no" + }, + { + "id": "336493", + "ident": "CU-0083", + "type": "closed", + "name": "El Yarual Airport", + "latitude_deg": "22.018419", + "longitude_deg": "-78.219995", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-08", + "scheduled_service": "no" + }, + { + "id": "336494", + "ident": "CU-0084", + "type": "closed", + "name": "El Carmen Airport", + "latitude_deg": "21.940734", + "longitude_deg": "-78.165018", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "scheduled_service": "no" + }, + { + "id": "336497", + "ident": "CU-0085", + "type": "closed", + "name": "Lombillo Airport", + "latitude_deg": "21.77286", + "longitude_deg": "-77.80369", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "municipality": "Lombillo", + "scheduled_service": "no" + }, + { + "id": "336499", + "ident": "CU-0086", + "type": "closed", + "name": "Sola Airport", + "latitude_deg": "21.66379", + "longitude_deg": "-77.628676", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "municipality": "Sola", + "scheduled_service": "no" + }, + { + "id": "336500", + "ident": "CU-0087", + "type": "closed", + "name": "Minas Airport", + "latitude_deg": "21.503277", + "longitude_deg": "-77.533146", + "elevation_ft": "121", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "municipality": "Minas", + "scheduled_service": "no" + }, + { + "id": "348623", + "ident": "CU-0088", + "type": "closed", + "name": "Banes Airport", + "latitude_deg": "20.94015", + "longitude_deg": "-75.72898", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-11", + "municipality": "Banes", + "scheduled_service": "no" + }, + { + "id": "348624", + "ident": "CU-0089", + "type": "closed", + "name": "Palma Soriano Airport", + "latitude_deg": "20.239791", + "longitude_deg": "-76.010606", + "elevation_ft": "455", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-13", + "municipality": "Palma Soriano", + "scheduled_service": "no" + }, + { + "id": "316499", + "ident": "CUJ", + "type": "small_airport", + "name": "Culion Airport", + "latitude_deg": "11.8553", + "longitude_deg": "119.9378", + "elevation_ft": "155", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "municipality": "Culion", + "scheduled_service": "no", + "iata_code": "CUJ", + "keywords": "Patag Airstrip" + }, + { + "id": "44471", + "ident": "cvb2", + "type": "small_airport", + "name": "Voisey's Bay Airport", + "latitude_deg": "56.344722", + "longitude_deg": "-62.088056", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Natuashish", + "scheduled_service": "no", + "gps_code": "CVB2", + "local_code": "CVB2" + }, + { + "id": "46627", + "ident": "CVF2", + "type": "small_airport", + "name": "Fergus (Vodarek Field)", + "latitude_deg": "43.7232733033", + "longitude_deg": "-80.28937339779999", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CVF2", + "keywords": "vf2" + }, + { + "id": "1621", + "ident": "CVG8", + "type": "heliport", + "name": "Vegreville (St. Joseph's General Hospital) Heliport", + "latitude_deg": "53.493900299072266", + "longitude_deg": "-112.03299713134766", + "elevation_ft": "2079", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Vegreville", + "scheduled_service": "no", + "gps_code": "CVG8", + "local_code": "CVG8", + "keywords": "VG8" + }, + { + "id": "17054", + "ident": "CVH", + "type": "small_airport", + "name": "Hollister Municipal Airport", + "latitude_deg": "36.8932991028", + "longitude_deg": "-121.410003662", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hollister", + "scheduled_service": "no", + "gps_code": "KCVH", + "iata_code": "HLI", + "local_code": "CVH", + "home_link": "http://www.hollister.ca.gov/site/html/gov/office/airport.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hollister_Municipal_Airport", + "keywords": "3O7" + }, + { + "id": "1622", + "ident": "CVH2", + "type": "heliport", + "name": "Vermilion Health Centre Heliport", + "latitude_deg": "53.35580062866211", + "longitude_deg": "-110.87200164794922", + "elevation_ft": "2011", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Vermilion", + "scheduled_service": "no", + "gps_code": "CVH2", + "local_code": "CVH2", + "keywords": "VH2" + }, + { + "id": "1623", + "ident": "CVH7", + "type": "heliport", + "name": "Vulcan (Hospital) Heliport", + "latitude_deg": "50.3957910699", + "longitude_deg": "-113.259558678", + "elevation_ft": "3451", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Vulcan", + "scheduled_service": "no", + "gps_code": "CVH7", + "local_code": "CVH7", + "keywords": "VH7" + }, + { + "id": "298406", + "ident": "CVK2", + "type": "heliport", + "name": "Viking Health Centre Helipad", + "latitude_deg": "53.100453", + "longitude_deg": "-111.776597", + "elevation_ft": "2240", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Viking", + "scheduled_service": "no", + "gps_code": "CVK2", + "local_code": "CVK2" + }, + { + "id": "302209", + "ident": "CVL", + "type": "small_airport", + "name": "Cape Vogel Airport", + "latitude_deg": "-9.67", + "longitude_deg": "150.019722222", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "scheduled_service": "no", + "iata_code": "CVL", + "local_code": "CVG" + }, + { + "id": "314914", + "ident": "CVL3", + "type": "small_airport", + "name": "Camden East / Varty Lake Airport", + "latitude_deg": "44.409", + "longitude_deg": "-76.8051", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Camden East", + "scheduled_service": "no", + "gps_code": "CVL3", + "local_code": "CVL3" + }, + { + "id": "320561", + "ident": "CVM2", + "type": "small_airport", + "name": "Victor Mine Airport", + "latitude_deg": "52.832802", + "longitude_deg": "-83.924801", + "elevation_ft": "284", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Victor Diamond Mine", + "scheduled_service": "no", + "gps_code": "CVM2", + "local_code": "CVM2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Victor_Mine_Aerodrome" + }, + { + "id": "320795", + "ident": "CVP2", + "type": "seaplane_base", + "name": "Île Sainte-Hélène Water Airport", + "latitude_deg": "45.5212", + "longitude_deg": "-73.5394", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montréal", + "scheduled_service": "no", + "gps_code": "CVP2", + "local_code": "CVP2", + "home_link": "http://www.cvp2.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Montr%C3%A9al/%C3%8Ele_Sainte-H%C3%A9l%C3%A8ne_Water_Airport", + "keywords": "Hydro-Aéroport Montréal Centre-Ville" + }, + { + "id": "311044", + "ident": "CVR", + "type": "closed", + "name": "Hughes Airport", + "latitude_deg": "33.975", + "longitude_deg": "-118.417", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Culver City", + "scheduled_service": "no", + "iata_code": "CVR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hughes_Airport_(California)" + }, + { + "id": "1624", + "ident": "CVS2", + "type": "small_airport", + "name": "Viking (South) Airport", + "latitude_deg": "53.0256", + "longitude_deg": "-111.948997", + "elevation_ft": "2242", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Viking", + "scheduled_service": "no", + "gps_code": "CVS2", + "local_code": "CVS2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Viking_(South)_Aerodrome" + }, + { + "id": "320559", + "ident": "CVS3", + "type": "heliport", + "name": "Surrey Memorial Hospital Helipad", + "latitude_deg": "49.176015", + "longitude_deg": "-122.84372", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Vancouver", + "scheduled_service": "no", + "gps_code": "CVS3", + "local_code": "CVS3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Surrey_Memorial_Hospital" + }, + { + "id": "28457", + "ident": "CVW2", + "type": "seaplane_base", + "name": "Vernon/Wildlife Seaplane Base", + "latitude_deg": "50.24359893798828", + "longitude_deg": "-119.34400177001953", + "elevation_ft": "1122", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CVW2", + "local_code": "CVW2" + }, + { + "id": "321787", + "ident": "CWB2", + "type": "small_airport", + "name": "Bracebridge West Airfield", + "latitude_deg": "45.059008", + "longitude_deg": "-79.399828", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CWB2", + "local_code": "CWB2" + }, + { + "id": "1625", + "ident": "CWC1", + "type": "small_airport", + "name": "White City (Radomsky) Airport", + "latitude_deg": "50.439701080322266", + "longitude_deg": "-104.30599975585938", + "elevation_ft": "2020", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "White City", + "scheduled_service": "no", + "gps_code": "CWC1", + "local_code": "CWC1", + "wikipedia_link": "https://en.wikipedia.org/wiki/White_City_(Radomsky)_Airport", + "keywords": "WC1" + }, + { + "id": "1626", + "ident": "CWC2", + "type": "heliport", + "name": "Kelowna (Wildcat Helicopters) Heliport", + "latitude_deg": "49.867423", + "longitude_deg": "-119.579229", + "elevation_ft": "1640", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kelowna", + "scheduled_service": "no", + "gps_code": "CWC2", + "local_code": "CWC2", + "keywords": "WC2" + }, + { + "id": "1627", + "ident": "CWC4", + "type": "heliport", + "name": "Wetaskiwin (Hospital & Care Centre) Heliport", + "latitude_deg": "52.9884341311", + "longitude_deg": "-113.368070126", + "elevation_ft": "2494", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Wetaskiwin", + "scheduled_service": "no", + "gps_code": "CWC4", + "local_code": "CWC4", + "keywords": "WC4" + }, + { + "id": "322577", + "ident": "CWCV", + "type": "heliport", + "name": "Nootka Lightstation Helipad", + "latitude_deg": "49.59225", + "longitude_deg": "-126.616383", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "San Rafael Island", + "scheduled_service": "no", + "gps_code": "CWCV", + "local_code": "BH6" + }, + { + "id": "320216", + "ident": "CWD2", + "type": "heliport", + "name": "Alta Heliport", + "latitude_deg": "44.5294", + "longitude_deg": "-80.354", + "elevation_ft": "733", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Collingwood", + "scheduled_service": "no", + "gps_code": "CWD2", + "local_code": "CWD2" + }, + { + "id": "320324", + "ident": "CWD3", + "type": "heliport", + "name": "Hamilton/Waterdown Heliport", + "latitude_deg": "43.3243", + "longitude_deg": "-79.9361", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "CWD3", + "local_code": "CWD3" + }, + { + "id": "299277", + "ident": "cwf2", + "type": "small_airport", + "name": "Walter's Falls (Piper Way) Airfield", + "latitude_deg": "44.463879951", + "longitude_deg": "-80.62147378920001", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CWF2" + }, + { + "id": "339470", + "ident": "CWFM", + "type": "heliport", + "name": "Chatham Point Light Station Helipad", + "latitude_deg": "50.333101", + "longitude_deg": "-125.445263", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Chatham Point", + "scheduled_service": "no", + "gps_code": "CWFM", + "local_code": "BM3", + "home_link": "http://nealslighthouses.blogspot.com/2015/06/chatham-point-light-station-inside.html" + }, + { + "id": "298405", + "ident": "CWG2", + "type": "heliport", + "name": "Winnipeg (City of Winnipeg) Heliport", + "latitude_deg": "49.900473", + "longitude_deg": "-97.095553", + "elevation_ft": "763", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Winnipeg", + "scheduled_service": "no", + "gps_code": "CWG2", + "local_code": "CWG2" + }, + { + "id": "1628", + "ident": "CWH2", + "type": "heliport", + "name": "Wainwright (Health Centre) Heliport", + "latitude_deg": "52.8429785277", + "longitude_deg": "-110.864734948", + "elevation_ft": "2262", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Wainwright", + "scheduled_service": "no", + "gps_code": "CWH2", + "local_code": "CWH2", + "keywords": "WH2" + }, + { + "id": "301232", + "ident": "CWH3", + "type": "heliport", + "name": "Woodstock (Hospital) Heliport", + "latitude_deg": "43.105557566", + "longitude_deg": "-80.7544201612", + "elevation_ft": "1046", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CWH3" + }, + { + "id": "320460", + "ident": "CWH4", + "type": "heliport", + "name": "Winchester District Memorial Hospital Heliport", + "latitude_deg": "45.088", + "longitude_deg": "-75.3549", + "elevation_ft": "256", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ottawa", + "scheduled_service": "no", + "gps_code": "CWH4", + "local_code": "CWH4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Winchester_District_Memorial_Hospital" + }, + { + "id": "353842", + "ident": "CWH6", + "type": "heliport", + "name": "Dr. F. H. Wigmore Hospital Heliport", + "latitude_deg": "50.419983", + "longitude_deg": "-105.525591", + "elevation_ft": "1879", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Moose Jaw", + "scheduled_service": "no", + "gps_code": "CWH6", + "local_code": "CWH6" + }, + { + "id": "335910", + "ident": "CWH7", + "type": "heliport", + "name": "Health Sciences Centre Helipad", + "latitude_deg": "49.904164", + "longitude_deg": "-97.156563", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Winnipeg", + "scheduled_service": "no", + "gps_code": "CWH7", + "local_code": "CWH7", + "home_link": "http://www.hsc.mb.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Health_Sciences_Centre_(Winnipeg)" + }, + { + "id": "300457", + "ident": "CWJC", + "type": "small_airport", + "name": "Ennadai Lake Airport", + "latitude_deg": "61.1333333333", + "longitude_deg": "-100.9", + "elevation_ft": "1021", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Ennadai", + "scheduled_service": "no", + "gps_code": "CWJC" + }, + { + "id": "353845", + "ident": "CWL2", + "type": "seaplane_base", + "name": "White Lake Seaplane Base", + "latitude_deg": "45.32345", + "longitude_deg": "-76.487267", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CWL2", + "local_code": "CWL2", + "wikipedia_link": "https://en.wikipedia.org/wiki/White_Lake_Water_Aerodrome" + }, + { + "id": "335889", + "ident": "CWL3", + "type": "small_airport", + "name": "Calmar/Wizard Lake Airport", + "latitude_deg": "53.115969", + "longitude_deg": "-113.769039", + "elevation_ft": "2600", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calmar", + "scheduled_service": "no", + "gps_code": "CWL3", + "local_code": "CWL3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Calmar/Wizard_Lake_Aerodrome" + }, + { + "id": "302189", + "ident": "cwp3", + "type": "heliport", + "name": "Leslieville / W. Pidhirney Residence Heliport", + "latitude_deg": "52.359274", + "longitude_deg": "-114.571347", + "elevation_ft": "3130", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Leslieville", + "scheduled_service": "no", + "gps_code": "CWP3" + }, + { + "id": "353846", + "ident": "CWS2", + "type": "small_airport", + "name": "Washago Aerodrome", + "latitude_deg": "44.740439", + "longitude_deg": "-79.361866", + "elevation_ft": "749", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Washago", + "scheduled_service": "no", + "gps_code": "CWS2", + "local_code": "CWS2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Washago_Aerodrome" + }, + { + "id": "351053", + "ident": "CWXR", + "type": "closed", + "name": "Croker River Airport", + "latitude_deg": "69.290565", + "longitude_deg": "-119.174259", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "scheduled_service": "no", + "gps_code": "CWXR", + "iata_code": "WXR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Croker_River", + "keywords": "croker airport, DEW line" + }, + { + "id": "322573", + "ident": "CWZM", + "type": "heliport", + "name": "Boat Bluff Lighthouse Helipad", + "latitude_deg": "52.643733", + "longitude_deg": "-128.524586", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Sarah Island", + "scheduled_service": "no", + "gps_code": "CWZM", + "local_code": "AC6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boat_Bluff_lighthouse" + }, + { + "id": "17055", + "ident": "CXC", + "type": "small_airport", + "name": "Chitina Airport", + "latitude_deg": "61.582901001", + "longitude_deg": "-144.427001953", + "elevation_ft": "556", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chitina", + "scheduled_service": "no", + "gps_code": "CXC", + "iata_code": "CXC", + "local_code": "CXC" + }, + { + "id": "44645", + "ident": "CY-0001", + "type": "small_airport", + "name": "Lakatamia Airfield", + "latitude_deg": "35.106384", + "longitude_deg": "33.321304", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "scheduled_service": "no" + }, + { + "id": "44646", + "ident": "CY-0002", + "type": "medium_airport", + "name": "Lefkoniko Airport / Geçitkale Air Base", + "latitude_deg": "35.235947", + "longitude_deg": "33.724358", + "elevation_ft": "146", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-03", + "municipality": "Geçitkale", + "scheduled_service": "yes", + "gps_code": "LCGK", + "iata_code": "GEC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Geçitkale_Air_Base", + "keywords": "Geçitkale Air Base" + }, + { + "id": "44647", + "ident": "CY-0003", + "type": "small_airport", + "name": "Pınarbaşı Air Base", + "latitude_deg": "35.276466369628906", + "longitude_deg": "33.26728439331055", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-01", + "scheduled_service": "no" + }, + { + "id": "44679", + "ident": "CY-0004", + "type": "small_airport", + "name": "Kingsfield Air Base", + "latitude_deg": "35.014275", + "longitude_deg": "33.715851", + "elevation_ft": "288", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-04", + "municipality": "Akrotiri and Dhekelia", + "scheduled_service": "no", + "gps_code": "LCRE", + "keywords": "Airfield Kingsfield" + }, + { + "id": "44697", + "ident": "CY-0005", + "type": "small_airport", + "name": "Kornos Highway Strip", + "latitude_deg": "34.909671783447266", + "longitude_deg": "33.40373229980469", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-04", + "scheduled_service": "no" + }, + { + "id": "44935", + "ident": "CY-0006", + "type": "small_airport", + "name": "Kophinou Highway Strip", + "latitude_deg": "34.8404183033", + "longitude_deg": "33.4244763851", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-04", + "scheduled_service": "no" + }, + { + "id": "312344", + "ident": "CY-0007", + "type": "small_airport", + "name": "Marki Airfield", + "latitude_deg": "35.01622", + "longitude_deg": "33.310869", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "scheduled_service": "no" + }, + { + "id": "328184", + "ident": "CY-0008", + "type": "closed", + "name": "RAF Ayios Nikolaos Air Base", + "latitude_deg": "35.083178", + "longitude_deg": "33.900432", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-04", + "municipality": "Akrotiri and Dhekelia", + "scheduled_service": "no" + }, + { + "id": "340570", + "ident": "CY-0009", + "type": "heliport", + "name": "Famagusta General Hospital Helipad", + "latitude_deg": "35.061798", + "longitude_deg": "33.972145", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-03", + "municipality": "Deryneia", + "scheduled_service": "no" + }, + { + "id": "343524", + "ident": "CY-0010", + "type": "heliport", + "name": "Ayios Nikolaos South Heliport", + "latitude_deg": "35.08695", + "longitude_deg": "33.89467", + "elevation_ft": "102", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-04", + "municipality": "Akrotiri and Dhekelia", + "scheduled_service": "no" + }, + { + "id": "343525", + "ident": "CY-0011", + "type": "heliport", + "name": "Ayios Nikolaos North Heliport", + "latitude_deg": "35.09067", + "longitude_deg": "33.88774", + "elevation_ft": "105", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-04", + "municipality": "Akrotiri and Dhekelia", + "scheduled_service": "no" + }, + { + "id": "347283", + "ident": "CY-0012", + "type": "heliport", + "name": "UNFICYP OP08 Heliport", + "latitude_deg": "35.177331", + "longitude_deg": "32.700825", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "scheduled_service": "no" + }, + { + "id": "347284", + "ident": "CY-0013", + "type": "heliport", + "name": "Mosfili helipad", + "latitude_deg": "35.182441", + "longitude_deg": "32.635634", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "scheduled_service": "no" + }, + { + "id": "347285", + "ident": "CY-0014", + "type": "heliport", + "name": "UNFICYP OP03 Heliport", + "latitude_deg": "35.175495", + "longitude_deg": "32.621905", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "scheduled_service": "no" + }, + { + "id": "347286", + "ident": "CY-0015", + "type": "heliport", + "name": "Erenköy Helipad", + "latitude_deg": "35.186998", + "longitude_deg": "32.615538", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Kokkina / Erenköy", + "scheduled_service": "no" + }, + { + "id": "347287", + "ident": "CY-0016", + "type": "heliport", + "name": "UNFICYP Helipad", + "latitude_deg": "35.111441", + "longitude_deg": "32.79351", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "scheduled_service": "no" + }, + { + "id": "347288", + "ident": "CY-0017", + "type": "heliport", + "name": "Variseia Border Post helipad", + "latitude_deg": "35.104974", + "longitude_deg": "32.779306", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Variseia", + "scheduled_service": "no" + }, + { + "id": "347289", + "ident": "CY-0018", + "type": "heliport", + "name": "UNFICYP OP18 Heliport", + "latitude_deg": "35.082253", + "longitude_deg": "32.835103", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "scheduled_service": "no" + }, + { + "id": "347290", + "ident": "CY-0019", + "type": "heliport", + "name": "UNFICYP OP22 Heliport", + "latitude_deg": "35.104405", + "longitude_deg": "32.874977", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "scheduled_service": "no" + }, + { + "id": "347292", + "ident": "CY-0020", + "type": "heliport", + "name": "UNFICYP OP32 Heliport", + "latitude_deg": "35.156876", + "longitude_deg": "33.02405", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Astromeritis", + "scheduled_service": "no" + }, + { + "id": "347293", + "ident": "CY-0021", + "type": "heliport", + "name": "Yukari Bostanci Border Post Heliport", + "latitude_deg": "35.156621", + "longitude_deg": "33.018651", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Yukari Bostanci", + "scheduled_service": "no" + }, + { + "id": "347294", + "ident": "CY-0022", + "type": "heliport", + "name": "UNFICYP Camp Roca Helipad", + "latitude_deg": "35.13614", + "longitude_deg": "32.837374", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Karavostasi / Gemikonağı", + "scheduled_service": "no" + }, + { + "id": "347300", + "ident": "CY-0023", + "type": "heliport", + "name": "Gaziveren Heliport", + "latitude_deg": "35.167112", + "longitude_deg": "32.897665", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Gaziveren / Kazivera", + "scheduled_service": "no" + }, + { + "id": "347301", + "ident": "CY-0024", + "type": "heliport", + "name": "Yeşilyurt helipad", + "latitude_deg": "35.155423", + "longitude_deg": "32.888972", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Yeşilyurt / Pentageia", + "scheduled_service": "no" + }, + { + "id": "347302", + "ident": "CY-0025", + "type": "closed", + "name": "Güneşköy helipad", + "latitude_deg": "35.195038", + "longitude_deg": "32.932524", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Nikitas / Güneşköy", + "scheduled_service": "no" + }, + { + "id": "347303", + "ident": "CY-0026", + "type": "heliport", + "name": "Sadrazamköy heliport", + "latitude_deg": "35.383494", + "longitude_deg": "32.938376", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-01", + "municipality": "Livera / Sadrazamköy", + "scheduled_service": "no" + }, + { + "id": "347304", + "ident": "CY-0027", + "type": "heliport", + "name": "Çamlıbel heliport", + "latitude_deg": "35.314348", + "longitude_deg": "33.064473", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-01", + "municipality": "Çamlıbel / Myrtou", + "scheduled_service": "no" + }, + { + "id": "347305", + "ident": "CY-0028", + "type": "heliport", + "name": "Girne Heliport", + "latitude_deg": "35.326861", + "longitude_deg": "33.322861", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-01", + "municipality": "Girne / Kyrenia", + "scheduled_service": "no" + }, + { + "id": "347306", + "ident": "CY-0029", + "type": "heliport", + "name": "Karaman Heliport", + "latitude_deg": "35.310436", + "longitude_deg": "33.289049", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-01", + "municipality": "Karaman / Karmi", + "scheduled_service": "no" + }, + { + "id": "347307", + "ident": "CY-0030", + "type": "heliport", + "name": "UNFICYP OP51 Helipad", + "latitude_deg": "35.172538", + "longitude_deg": "33.31455", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Agios Dometios", + "scheduled_service": "no" + }, + { + "id": "347308", + "ident": "CY-0031", + "type": "heliport", + "name": "Metehan Helipad", + "latitude_deg": "35.176511", + "longitude_deg": "33.308935", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Metehan / Agios Dometios", + "scheduled_service": "no" + }, + { + "id": "347310", + "ident": "CY-0032", + "type": "heliport", + "name": "UNFICYP Nicosia Airport Helipad", + "latitude_deg": "35.145962", + "longitude_deg": "33.283306", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Lakatamia", + "scheduled_service": "no" + }, + { + "id": "347311", + "ident": "CY-0033", + "type": "heliport", + "name": "Yakın Doğu Üniversitesi Helipad", + "latitude_deg": "35.228454", + "longitude_deg": "33.33049", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Ortaköy / Ortakioi", + "scheduled_service": "no" + }, + { + "id": "347312", + "ident": "CY-0034", + "type": "heliport", + "name": "Ortaköy Heliport", + "latitude_deg": "35.195458", + "longitude_deg": "33.33966", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Ortaköy / Ortakioi", + "scheduled_service": "no" + }, + { + "id": "347314", + "ident": "CY-0035", + "type": "heliport", + "name": "UNFICYP OP86 Heliport", + "latitude_deg": "35.175556", + "longitude_deg": "33.408496", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Sopaz", + "scheduled_service": "no" + }, + { + "id": "347315", + "ident": "CY-0036", + "type": "heliport", + "name": "UNFICYP OP91 Heliport", + "latitude_deg": "35.112458", + "longitude_deg": "33.455741", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Geri", + "scheduled_service": "no" + }, + { + "id": "347316", + "ident": "CY-0037", + "type": "heliport", + "name": "UNFICYP OP95 Heliport", + "latitude_deg": "35.013498", + "longitude_deg": "33.44662", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Akincilar / Louroujina", + "scheduled_service": "no" + }, + { + "id": "347318", + "ident": "CY-0038", + "type": "heliport", + "name": "UNFICYP OP101 Heliport", + "latitude_deg": "35.065528", + "longitude_deg": "33.506829", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-04", + "municipality": "Athienou", + "scheduled_service": "no" + }, + { + "id": "347328", + "ident": "CY-0039", + "type": "heliport", + "name": "UNFICYP OP123 Heliport", + "latitude_deg": "35.028072", + "longitude_deg": "33.656571", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-04", + "municipality": "Pyla", + "scheduled_service": "no" + }, + { + "id": "347329", + "ident": "CY-0040", + "type": "heliport", + "name": "UNFICYP OP126 Heliport", + "latitude_deg": "35.015922", + "longitude_deg": "33.683042", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-04", + "municipality": "Pyla", + "scheduled_service": "no" + }, + { + "id": "347330", + "ident": "CY-0041", + "type": "small_airport", + "name": "RAF Dhekelia Airfield", + "latitude_deg": "34.994262", + "longitude_deg": "33.749133", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-XX", + "municipality": "Dhekelia Sovereign Base Area", + "scheduled_service": "no" + }, + { + "id": "347331", + "ident": "CY-0042", + "type": "heliport", + "name": "Dhekelia Station JNCO Helipad", + "latitude_deg": "35.00232", + "longitude_deg": "33.728378", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-XX", + "municipality": "Dhekelia Sovereign Base Area", + "scheduled_service": "no" + }, + { + "id": "347332", + "ident": "CY-0043", + "type": "heliport", + "name": "Dhekelia Station Waterloo Road Helipad", + "latitude_deg": "35.00334", + "longitude_deg": "33.732533", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-XX", + "municipality": "Dhekelia Sovereign Base Area", + "scheduled_service": "no" + }, + { + "id": "347333", + "ident": "CY-0044", + "type": "closed", + "name": "UNFICYP OP135 Heliport", + "latitude_deg": "35.071073", + "longitude_deg": "33.820505", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-03", + "municipality": "Avgorou", + "scheduled_service": "no" + }, + { + "id": "347340", + "ident": "CY-0045", + "type": "heliport", + "name": "UNFICYP OP138 Heliport", + "latitude_deg": "35.072159", + "longitude_deg": "33.861347", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-03", + "municipality": "Güvercinlik / Acheritou", + "scheduled_service": "no" + }, + { + "id": "347346", + "ident": "CY-0046", + "type": "heliport", + "name": "UNFICYP OP140 Heliport", + "latitude_deg": "35.06776", + "longitude_deg": "33.912798", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-03", + "municipality": "Frenaros", + "scheduled_service": "no" + }, + { + "id": "347351", + "ident": "CY-0047", + "type": "heliport", + "name": "UNFICYP CP10 Heliport", + "latitude_deg": "35.071598", + "longitude_deg": "33.965399", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-03", + "municipality": "Deryneia", + "scheduled_service": "no" + }, + { + "id": "347362", + "ident": "CY-0048", + "type": "heliport", + "name": "Dhekelia Station Sports Fields Helipad", + "latitude_deg": "34.982185", + "longitude_deg": "33.720534", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-XX", + "municipality": "Dhekelia Sovereign Base Area", + "scheduled_service": "no" + }, + { + "id": "347363", + "ident": "CY-0049", + "type": "heliport", + "name": "Dhekelia Station Helipad", + "latitude_deg": "34.994222", + "longitude_deg": "33.737434", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-XX", + "municipality": "Dhekelia Sovereign Base Area", + "scheduled_service": "no" + }, + { + "id": "347440", + "ident": "CY-0050", + "type": "closed", + "name": "Gülseren Barracks Lakeside Heliport", + "latitude_deg": "35.144454", + "longitude_deg": "33.919932", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-03", + "municipality": "Karakol", + "scheduled_service": "no" + }, + { + "id": "347441", + "ident": "CY-0051", + "type": "heliport", + "name": "Gülseren Barracks Central Helipad", + "latitude_deg": "35.142708", + "longitude_deg": "33.927836", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-03", + "municipality": "Gazimağusa / Famagusta", + "scheduled_service": "no" + }, + { + "id": "348340", + "ident": "CY-0052", + "type": "heliport", + "name": "Erdemli Helipad", + "latitude_deg": "35.085959", + "longitude_deg": "33.614276", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-04", + "municipality": "Erdemli", + "scheduled_service": "no" + }, + { + "id": "348341", + "ident": "CY-0053", + "type": "heliport", + "name": "Aslankoy Helipad", + "latitude_deg": "35.207612", + "longitude_deg": "33.586282", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-03", + "municipality": "Aslankoy / Angastina", + "scheduled_service": "no" + }, + { + "id": "348343", + "ident": "CY-0054", + "type": "heliport", + "name": "Aslankoy South Helipad", + "latitude_deg": "35.205289", + "longitude_deg": "33.584528", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-03", + "municipality": "Aslankoy / Angastina", + "scheduled_service": "no" + }, + { + "id": "348345", + "ident": "CY-0055", + "type": "heliport", + "name": "Pasakoy Heliport", + "latitude_deg": "35.155544", + "longitude_deg": "33.604919", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-03", + "municipality": "Pasakoy / Askeia", + "scheduled_service": "no" + }, + { + "id": "348346", + "ident": "CY-0056", + "type": "heliport", + "name": "Kirklar Helipad", + "latitude_deg": "35.136592", + "longitude_deg": "33.511078", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Kirklar / Tymvou", + "scheduled_service": "no" + }, + { + "id": "348350", + "ident": "CY-0057", + "type": "heliport", + "name": "UNFICYP Camp General Stefanik Helipad", + "latitude_deg": "35.138264", + "longitude_deg": "33.915638", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-03", + "municipality": "Gazimağusa / Famagusta", + "scheduled_service": "no" + }, + { + "id": "348355", + "ident": "CY-0058", + "type": "heliport", + "name": "K.A.A.Y. Kitiou Helipad", + "latitude_deg": "34.862267", + "longitude_deg": "33.63261", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-04", + "municipality": "Kiti", + "scheduled_service": "no" + }, + { + "id": "348357", + "ident": "CY-0059", + "type": "heliport", + "name": "Princess Mary Hospital Helipad", + "latitude_deg": "34.570436", + "longitude_deg": "32.938128", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-XX", + "municipality": "Akrotiri", + "scheduled_service": "no" + }, + { + "id": "348359", + "ident": "CY-0060", + "type": "heliport", + "name": "Nicosia General Hospital Helipad", + "latitude_deg": "35.128055", + "longitude_deg": "33.378521", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Agiantzia", + "scheduled_service": "no" + }, + { + "id": "348360", + "ident": "CY-0061", + "type": "heliport", + "name": "Cyprus Expo Helipad", + "latitude_deg": "35.151346", + "longitude_deg": "33.316221", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Makedonitissa", + "scheduled_service": "no" + }, + { + "id": "348372", + "ident": "CY-0062", + "type": "heliport", + "name": "Gürpınar Helipad", + "latitude_deg": "35.223416", + "longitude_deg": "33.124436", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Gurpinar / Agia Marina Skyllouras", + "scheduled_service": "no" + }, + { + "id": "348373", + "ident": "CY-0063", + "type": "heliport", + "name": "Akamas Fire Lookout Helipad", + "latitude_deg": "35.026182", + "longitude_deg": "32.328702", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-06", + "municipality": "Neo Chorio", + "scheduled_service": "no" + }, + { + "id": "348375", + "ident": "CY-0064", + "type": "heliport", + "name": "Paphos General Hospital Helipad", + "latitude_deg": "34.787977", + "longitude_deg": "32.445466", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-06", + "municipality": "Paphos", + "scheduled_service": "no" + }, + { + "id": "348376", + "ident": "CY-0065", + "type": "heliport", + "name": "Paphos Airport Heliport", + "latitude_deg": "34.716456", + "longitude_deg": "32.478371", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-06", + "municipality": "Paphos", + "scheduled_service": "no" + }, + { + "id": "348378", + "ident": "CY-0066", + "type": "heliport", + "name": "Paphos Airport Military Heliport", + "latitude_deg": "34.720164", + "longitude_deg": "32.491657", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-06", + "municipality": "Paphos", + "scheduled_service": "no" + }, + { + "id": "348380", + "ident": "CY-0067", + "type": "heliport", + "name": "KEN Paphos Helipad", + "latitude_deg": "34.749738", + "longitude_deg": "32.545931", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-06", + "municipality": "Anarita", + "scheduled_service": "no" + }, + { + "id": "348416", + "ident": "CY-0068", + "type": "heliport", + "name": "Paramali Radio Sonde Helipad", + "latitude_deg": "34.67825", + "longitude_deg": "32.811328", + "elevation_ft": "-1", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-XX", + "municipality": "Paramali", + "scheduled_service": "no" + }, + { + "id": "348417", + "ident": "CY-0069", + "type": "heliport", + "name": "Paramali South Helipad", + "latitude_deg": "34.666455", + "longitude_deg": "32.811478", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-XX", + "municipality": "Paramali", + "scheduled_service": "no" + }, + { + "id": "348418", + "ident": "CY-0070", + "type": "closed", + "name": "Paramali South Helipad", + "latitude_deg": "34.666881", + "longitude_deg": "32.807612", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-XX", + "municipality": "Paramali", + "scheduled_service": "no" + }, + { + "id": "348419", + "ident": "CY-0071", + "type": "closed", + "name": "Episkopi Cantonment Helipad", + "latitude_deg": "34.68261", + "longitude_deg": "32.838556", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-XX", + "municipality": "Episkopi", + "scheduled_service": "no" + }, + { + "id": "348420", + "ident": "CY-0072", + "type": "heliport", + "name": "Episkopi Cantonment Helipad", + "latitude_deg": "34.685292", + "longitude_deg": "32.847448", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-XX", + "municipality": "Episkopi", + "scheduled_service": "no" + }, + { + "id": "348421", + "ident": "CY-0073", + "type": "heliport", + "name": "Paramali East Helipad", + "latitude_deg": "34.666129", + "longitude_deg": "32.782898", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-XX", + "municipality": "Paramali", + "scheduled_service": "no" + }, + { + "id": "348422", + "ident": "CY-0074", + "type": "heliport", + "name": "A6 Tunnel Western Entrance Helipad", + "latitude_deg": "34.69534", + "longitude_deg": "32.832664", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-XX", + "municipality": "Sotira", + "scheduled_service": "no" + }, + { + "id": "348424", + "ident": "CY-0075", + "type": "heliport", + "name": "A6 Tunnel Eastern Entrance Helipad", + "latitude_deg": "34.700595", + "longitude_deg": "32.844101", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-XX", + "municipality": "Sotira", + "scheduled_service": "no" + }, + { + "id": "348425", + "ident": "CY-0076", + "type": "heliport", + "name": "Limassol General Hospital Helipad", + "latitude_deg": "34.707887", + "longitude_deg": "32.981722", + "elevation_ft": "453", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-05", + "municipality": "Kato Polemidia", + "scheduled_service": "no" + }, + { + "id": "348428", + "ident": "CY-0077", + "type": "heliport", + "name": "Epilas Helipad", + "latitude_deg": "34.774901", + "longitude_deg": "33.200922", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-05", + "municipality": "Monagroulli", + "scheduled_service": "no" + }, + { + "id": "348430", + "ident": "CY-0078", + "type": "heliport", + "name": "Lazanias Helipad", + "latitude_deg": "34.940064", + "longitude_deg": "33.20146", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Lazanias", + "scheduled_service": "no" + }, + { + "id": "348432", + "ident": "CY-0079", + "type": "closed", + "name": "Choirokoitia Helipad", + "latitude_deg": "34.793553", + "longitude_deg": "33.352371", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-04", + "municipality": "Choirokoitia", + "scheduled_service": "no" + }, + { + "id": "348711", + "ident": "CY-0080", + "type": "heliport", + "name": "Bogazkoy Helipad", + "latitude_deg": "35.291852", + "longitude_deg": "33.281325", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-01", + "municipality": "Bogazkoy", + "scheduled_service": "no" + }, + { + "id": "348837", + "ident": "CY-0081", + "type": "small_airport", + "name": "Cyprus Gliding Club", + "latitude_deg": "35.17626", + "longitude_deg": "33.18416", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "scheduled_service": "no" + }, + { + "id": "349410", + "ident": "CY-0082", + "type": "heliport", + "name": "RAF Troodos Helipad", + "latitude_deg": "34.917178", + "longitude_deg": "32.880549", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-05", + "municipality": "Troodos", + "scheduled_service": "no" + }, + { + "id": "349662", + "ident": "CY-0083", + "type": "heliport", + "name": "Frenaros Helipad", + "latitude_deg": "35.025185", + "longitude_deg": "33.926629", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-03", + "municipality": "Frenaros", + "scheduled_service": "no" + }, + { + "id": "349668", + "ident": "CY-0084", + "type": "heliport", + "name": "Köprülü Heliport", + "latitude_deg": "35.109818", + "longitude_deg": "33.748683", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-03", + "municipality": "Köprülü / Kouklia", + "scheduled_service": "no" + }, + { + "id": "355234", + "ident": "CY-0085", + "type": "heliport", + "name": "Skyriders Aero Sport Club Helipad", + "latitude_deg": "34.747472", + "longitude_deg": "32.44662", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-06", + "municipality": "Yeroskipou", + "scheduled_service": "no" + }, + { + "id": "35128", + "ident": "CY-NIC", + "type": "closed", + "name": "Nicosia International Airport", + "latitude_deg": "35.150799", + "longitude_deg": "33.278702", + "elevation_ft": "722", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Nicosia", + "scheduled_service": "no", + "gps_code": "LCNC", + "iata_code": "NIC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nicosia_International_Airport", + "keywords": "RAF Nicosia, Lefkosia, NIC.OLD" + }, + { + "id": "46596", + "ident": "CYAB", + "type": "small_airport", + "name": "Arctic Bay Airport", + "latitude_deg": "73.006101", + "longitude_deg": "-85.04616", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Arctic Bay", + "scheduled_service": "yes", + "gps_code": "CYAB", + "iata_code": "YAB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arctic_Bay_Airport", + "keywords": "CJX7" + }, + { + "id": "1652", + "ident": "CYAC", + "type": "medium_airport", + "name": "Cat Lake Airport", + "latitude_deg": "51.72719955444336", + "longitude_deg": "-91.82440185546875", + "elevation_ft": "1344", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Cat Lake", + "scheduled_service": "yes", + "gps_code": "CYAC", + "iata_code": "YAC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cat_Lake_Airport" + }, + { + "id": "1653", + "ident": "CYAD", + "type": "small_airport", + "name": "La Grande-3 Airport", + "latitude_deg": "53.5717010498", + "longitude_deg": "-76.19640350339999", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "La Grande-3", + "scheduled_service": "no", + "gps_code": "CYAD", + "iata_code": "YAR", + "local_code": "YAD", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Grande-3_Airport", + "keywords": "YAD" + }, + { + "id": "1654", + "ident": "CYAG", + "type": "medium_airport", + "name": "Fort Frances Municipal Airport", + "latitude_deg": "48.655749", + "longitude_deg": "-93.44349", + "elevation_ft": "1125", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Fort Frances", + "scheduled_service": "yes", + "gps_code": "CYAG", + "iata_code": "YAG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Frances_Municipal_Airport" + }, + { + "id": "1655", + "ident": "CYAH", + "type": "medium_airport", + "name": "La Grande-4 Airport", + "latitude_deg": "53.754699707", + "longitude_deg": "-73.6753005981", + "elevation_ft": "1005", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "La Grande-4", + "scheduled_service": "no", + "gps_code": "CYAH", + "iata_code": "YAH", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Grande-4_Airport", + "keywords": "YAH" + }, + { + "id": "1656", + "ident": "CYAL", + "type": "medium_airport", + "name": "Alert Bay Airport", + "latitude_deg": "50.582199", + "longitude_deg": "-126.916", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Alert Bay", + "scheduled_service": "yes", + "gps_code": "CYAL", + "iata_code": "YAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alert_Bay_Airport" + }, + { + "id": "1657", + "ident": "CYAM", + "type": "medium_airport", + "name": "Sault Ste Marie Airport", + "latitude_deg": "46.485001", + "longitude_deg": "-84.509399", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Sault Ste Marie", + "scheduled_service": "yes", + "gps_code": "CYAM", + "iata_code": "YAM", + "home_link": "http://www.saultairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sault_Ste._Marie_Airport" + }, + { + "id": "1658", + "ident": "CYAQ", + "type": "medium_airport", + "name": "Kasabonika Airport", + "latitude_deg": "53.52470016479492", + "longitude_deg": "-88.6427993774414", + "elevation_ft": "672", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kasabonika", + "scheduled_service": "yes", + "gps_code": "CYAQ", + "iata_code": "XKS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kasabonika_Airport", + "keywords": "YAQ" + }, + { + "id": "1659", + "ident": "CYAS", + "type": "medium_airport", + "name": "Kangirsuk Airport", + "latitude_deg": "60.027198791503906", + "longitude_deg": "-69.99919891357422", + "elevation_ft": "403", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Kangirsuk", + "scheduled_service": "yes", + "gps_code": "CYAS", + "iata_code": "YKG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kangirsuk_Airport", + "keywords": "YAS" + }, + { + "id": "1660", + "ident": "CYAT", + "type": "medium_airport", + "name": "Attawapiskat Airport", + "latitude_deg": "52.9275016784668", + "longitude_deg": "-82.43190002441406", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Attawapiskat", + "scheduled_service": "yes", + "gps_code": "CYAT", + "iata_code": "YAT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Attawapiskat_Airport" + }, + { + "id": "1661", + "ident": "CYAU", + "type": "small_airport", + "name": "Liverpool South Shore Regional Airport", + "latitude_deg": "44.230301", + "longitude_deg": "-64.856102", + "elevation_ft": "321", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Greenfield", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Liverpool/South_Shore_Regional_Airport", + "keywords": "CYAU, YAU, Greenfield Dragway" + }, + { + "id": "1662", + "ident": "CYAV", + "type": "medium_airport", + "name": "Winnipeg / St. Andrews Airport", + "latitude_deg": "50.0564", + "longitude_deg": "-97.032501", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Saint Andrews", + "scheduled_service": "no", + "gps_code": "CYAV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Winnipeg/St._Andrews_Airport", + "keywords": "YAV" + }, + { + "id": "1663", + "ident": "CYAW", + "type": "heliport", + "name": "Halifax / CFB Shearwater Heliport", + "latitude_deg": "44.636782", + "longitude_deg": "-63.502107", + "elevation_ft": "144", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Halifax", + "scheduled_service": "no", + "gps_code": "CYAW", + "local_code": "YAW", + "wikipedia_link": "https://en.wikipedia.org/wiki/CFB_Shearwater", + "keywords": "YAW" + }, + { + "id": "1664", + "ident": "CYAX", + "type": "medium_airport", + "name": "Lac Du Bonnet Airport", + "latitude_deg": "50.294399", + "longitude_deg": "-96.010002", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Lac Du Bonnet", + "scheduled_service": "yes", + "gps_code": "CYAX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lac_du_Bonnet_Airport", + "keywords": "YAX" + }, + { + "id": "1665", + "ident": "CYAY", + "type": "medium_airport", + "name": "St. Anthony Airport", + "latitude_deg": "51.391909", + "longitude_deg": "-56.08321", + "elevation_ft": "108", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "St. Anthony", + "scheduled_service": "yes", + "gps_code": "CYAY", + "iata_code": "YAY", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Anthony_Airport" + }, + { + "id": "1666", + "ident": "CYAZ", + "type": "medium_airport", + "name": "Tofino / Long Beach Airport", + "latitude_deg": "49.079833", + "longitude_deg": "-125.775583", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Tofino", + "scheduled_service": "yes", + "gps_code": "CYAZ", + "iata_code": "YAZ", + "home_link": "http://www.acrd.bc.ca/long-beach-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tofino_Airport" + }, + { + "id": "321788", + "ident": "CYB3", + "type": "heliport", + "name": "Nelson/Baylock Estate Heliport", + "latitude_deg": "49.54472222", + "longitude_deg": "-117.2605555", + "elevation_ft": "1830", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "gps_code": "CYB3", + "local_code": "CYB3" + }, + { + "id": "1667", + "ident": "CYBA", + "type": "small_airport", + "name": "Banff Airport", + "latitude_deg": "51.208222", + "longitude_deg": "-115.540624", + "elevation_ft": "4583", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Banff", + "scheduled_service": "no", + "gps_code": "CYBA", + "iata_code": "YBA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Banff_Airport", + "keywords": "YBA" + }, + { + "id": "1668", + "ident": "CYBB", + "type": "medium_airport", + "name": "Kugaaruk Airport", + "latitude_deg": "68.534401", + "longitude_deg": "-89.808098", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Kugaaruk", + "scheduled_service": "yes", + "gps_code": "CYBB", + "iata_code": "YBB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kugaaruk_Airport", + "keywords": "YBB, Pelly Bay Townsite Airport" + }, + { + "id": "1669", + "ident": "CYBC", + "type": "medium_airport", + "name": "Baie-Comeau Airport", + "latitude_deg": "49.1325", + "longitude_deg": "-68.204399", + "elevation_ft": "71", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Baie-Comeau", + "scheduled_service": "yes", + "gps_code": "CYBC", + "iata_code": "YBC", + "local_code": "YBC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baie-Comeau_Airport" + }, + { + "id": "1670", + "ident": "CYBD", + "type": "medium_airport", + "name": "Bella Coola Airport", + "latitude_deg": "52.387501", + "longitude_deg": "-126.596001", + "elevation_ft": "117", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Bella Coola", + "scheduled_service": "yes", + "gps_code": "CYBD", + "iata_code": "QBC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bella_Coola_Airport", + "keywords": "YBD" + }, + { + "id": "1671", + "ident": "CYBE", + "type": "medium_airport", + "name": "Uranium City Airport", + "latitude_deg": "59.5614013671875", + "longitude_deg": "-108.48100280761719", + "elevation_ft": "1044", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Uranium City", + "scheduled_service": "yes", + "gps_code": "CYBE", + "iata_code": "YBE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Uranium_City_Airport" + }, + { + "id": "1672", + "ident": "CYBF", + "type": "medium_airport", + "name": "Bonnyville Airport", + "latitude_deg": "54.304199", + "longitude_deg": "-110.744003", + "elevation_ft": "1836", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Bonnyville", + "scheduled_service": "yes", + "gps_code": "CYBF", + "iata_code": "YBY", + "home_link": "http://town.bonnyville.ab.ca/livingin/airport/index.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bonnyville_Airport", + "keywords": "YBF" + }, + { + "id": "1673", + "ident": "CYBG", + "type": "medium_airport", + "name": "CFB Bagotville", + "latitude_deg": "48.33060073852539", + "longitude_deg": "-70.99639892578125", + "elevation_ft": "522", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Bagotville", + "scheduled_service": "yes", + "gps_code": "CYBG", + "iata_code": "YBG", + "wikipedia_link": "https://en.wikipedia.org/wiki/CFB_Bagotville", + "keywords": "Bagotville Airport" + }, + { + "id": "1674", + "ident": "CYBK", + "type": "medium_airport", + "name": "Baker Lake Airport", + "latitude_deg": "64.29889678960001", + "longitude_deg": "-96.077796936", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Baker Lake", + "scheduled_service": "yes", + "gps_code": "CYBK", + "iata_code": "YBK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baker_Lake_Airport" + }, + { + "id": "1675", + "ident": "CYBL", + "type": "medium_airport", + "name": "Campbell River Airport", + "latitude_deg": "49.950802", + "longitude_deg": "-125.271004", + "elevation_ft": "346", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Campbell River", + "scheduled_service": "yes", + "gps_code": "CYBL", + "iata_code": "YBL", + "local_code": "YBL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Campbell_River_Airport" + }, + { + "id": "1676", + "ident": "CYBN", + "type": "heliport", + "name": "CFB Borden Heliport", + "latitude_deg": "44.271702", + "longitude_deg": "-79.912498", + "elevation_ft": "729", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Borden", + "scheduled_service": "no", + "gps_code": "CYBN", + "wikipedia_link": "https://en.wikipedia.org/wiki/CFB_Borden", + "keywords": "YBN, Camp Borden" + }, + { + "id": "1629", + "ident": "CYBP", + "type": "small_airport", + "name": "Brooks Regional Airport", + "latitude_deg": "50.633598", + "longitude_deg": "-111.926003", + "elevation_ft": "2490", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Brooks", + "scheduled_service": "no", + "gps_code": "CYBP", + "local_code": "CYBP", + "keywords": "YBP" + }, + { + "id": "1677", + "ident": "CYBQ", + "type": "medium_airport", + "name": "Tadoule Lake Airport", + "latitude_deg": "58.7061", + "longitude_deg": "-98.512199", + "elevation_ft": "923", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Tadoule Lake", + "scheduled_service": "yes", + "gps_code": "CYBQ", + "iata_code": "XTL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tadoule_Lake_Airport", + "keywords": "YBQ" + }, + { + "id": "1678", + "ident": "CYBR", + "type": "medium_airport", + "name": "Brandon Municipal Airport", + "latitude_deg": "49.91", + "longitude_deg": "-99.951897", + "elevation_ft": "1343", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Brandon", + "scheduled_service": "yes", + "gps_code": "CYBR", + "iata_code": "YBR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brandon_Airport" + }, + { + "id": "1679", + "ident": "CYBT", + "type": "medium_airport", + "name": "Brochet Airport", + "latitude_deg": "57.8894", + "longitude_deg": "-101.679001", + "elevation_ft": "1136", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Brochet", + "scheduled_service": "yes", + "gps_code": "CYBT", + "iata_code": "YBT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brochet_Airport" + }, + { + "id": "1680", + "ident": "CYBU", + "type": "medium_airport", + "name": "Nipawin Airport", + "latitude_deg": "53.33250045776367", + "longitude_deg": "-104.00800323486328", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Nipawin", + "scheduled_service": "no", + "gps_code": "CYBU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nipawin_Airport", + "keywords": "YBU" + }, + { + "id": "1681", + "ident": "CYBV", + "type": "medium_airport", + "name": "Berens River Airport", + "latitude_deg": "52.358898", + "longitude_deg": "-97.018303", + "elevation_ft": "728", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Berens River", + "scheduled_service": "yes", + "gps_code": "CYBV", + "iata_code": "YBV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Berens_River_Airport" + }, + { + "id": "1682", + "ident": "CYBW", + "type": "medium_airport", + "name": "Calgary / Springbank Airport", + "latitude_deg": "51.1031", + "longitude_deg": "-114.374001", + "elevation_ft": "3940", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "no", + "gps_code": "CYBW", + "home_link": "http://www.ybw.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Calgary/Springbank_Airport", + "keywords": "YBW" + }, + { + "id": "1683", + "ident": "CYBX", + "type": "medium_airport", + "name": "Lourdes-de-Blanc-Sablon Airport", + "latitude_deg": "51.4436", + "longitude_deg": "-57.185299", + "elevation_ft": "121", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Blanc-Sablon", + "scheduled_service": "yes", + "gps_code": "CYBX", + "iata_code": "YBX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lourdes-de-Blanc-Sablon_Airport" + }, + { + "id": "1684", + "ident": "CYCA", + "type": "medium_airport", + "name": "Cartwright Airport", + "latitude_deg": "53.682501", + "longitude_deg": "-57.042303", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Cartwright", + "scheduled_service": "yes", + "gps_code": "CYCA", + "iata_code": "YRF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cartwright_Airport", + "keywords": "YCA" + }, + { + "id": "1685", + "ident": "CYCB", + "type": "medium_airport", + "name": "Cambridge Bay Airport", + "latitude_deg": "69.1081008911", + "longitude_deg": "-105.138000488", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Cambridge Bay", + "scheduled_service": "yes", + "gps_code": "CYCB", + "iata_code": "YCB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cambridge_Bay_Airport" + }, + { + "id": "1686", + "ident": "CYCC", + "type": "medium_airport", + "name": "Cornwall Regional Airport", + "latitude_deg": "45.092637", + "longitude_deg": "-74.567724", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Cornwall", + "scheduled_service": "no", + "gps_code": "CYCC", + "iata_code": "YCC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cornwall_Regional_Airport" + }, + { + "id": "1687", + "ident": "CYCD", + "type": "medium_airport", + "name": "Nanaimo Airport", + "latitude_deg": "49.05497", + "longitude_deg": "-123.869863", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Nanaimo", + "scheduled_service": "yes", + "gps_code": "CYCD", + "iata_code": "YCD", + "home_link": "https://www.nanaimoairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nanaimo_Airport" + }, + { + "id": "1688", + "ident": "CYCE", + "type": "medium_airport", + "name": "Centralia / James T. Field Memorial Aerodrome", + "latitude_deg": "43.285599", + "longitude_deg": "-81.508301", + "elevation_ft": "824", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Huron Park", + "scheduled_service": "no", + "gps_code": "CYCE", + "iata_code": "YCE", + "local_code": "CYCE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Centralia/Huron_Airpark", + "keywords": "RCAF Station Centralia, Huron Airpark" + }, + { + "id": "1689", + "ident": "CYCG", + "type": "medium_airport", + "name": "Castlegar/West Kootenay Regional Airport", + "latitude_deg": "49.2963981628", + "longitude_deg": "-117.632003784", + "elevation_ft": "1624", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Castlegar", + "scheduled_service": "yes", + "gps_code": "CYCG", + "iata_code": "YCG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Castlegar_Airport" + }, + { + "id": "1690", + "ident": "CYCH", + "type": "medium_airport", + "name": "Miramichi Airport", + "latitude_deg": "47.007801", + "longitude_deg": "-65.449203", + "elevation_ft": "108", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Miramichi", + "scheduled_service": "yes", + "gps_code": "CYCH", + "iata_code": "YCH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miramichi_Airport", + "keywords": "CFB Chatham, RCAF Station Chatham" + }, + { + "id": "1364", + "ident": "CYCK", + "type": "small_airport", + "name": "Chatham Kent Airport", + "latitude_deg": "42.3064002991", + "longitude_deg": "-82.0819015503", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Chatham-Kent", + "scheduled_service": "no", + "gps_code": "CYCK", + "iata_code": "XCM", + "local_code": "NZ3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chatham-Kent_Airport", + "keywords": "CNZ3" + }, + { + "id": "1691", + "ident": "CYCL", + "type": "medium_airport", + "name": "Charlo Airport", + "latitude_deg": "47.990799", + "longitude_deg": "-66.330299", + "elevation_ft": "132", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Charlo", + "scheduled_service": "yes", + "gps_code": "CYCL", + "iata_code": "YCL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Charlo_Airport" + }, + { + "id": "1692", + "ident": "CYCN", + "type": "medium_airport", + "name": "Cochrane Airport", + "latitude_deg": "49.10559844970703", + "longitude_deg": "-81.01360321044922", + "elevation_ft": "861", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Cochrane", + "scheduled_service": "no", + "gps_code": "CYCN", + "iata_code": "YCN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cochrane_Airport" + }, + { + "id": "1693", + "ident": "CYCO", + "type": "medium_airport", + "name": "Kugluktuk Airport", + "latitude_deg": "67.816704", + "longitude_deg": "-115.143997", + "elevation_ft": "74", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Kugluktuk", + "scheduled_service": "yes", + "gps_code": "CYCO", + "iata_code": "YCO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kugluktuk_Airport", + "keywords": "Copper Mine Airport" + }, + { + "id": "1694", + "ident": "CYCP", + "type": "medium_airport", + "name": "Blue River Airport", + "latitude_deg": "52.11669921875", + "longitude_deg": "-119.28299713134766", + "elevation_ft": "2240", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Blue River", + "scheduled_service": "no", + "gps_code": "CYCP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Blue_River_Airport", + "keywords": "YCP" + }, + { + "id": "1695", + "ident": "CYCQ", + "type": "medium_airport", + "name": "Chetwynd Airport", + "latitude_deg": "55.687198638916016", + "longitude_deg": "-121.62699890136719", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Chetwynd", + "scheduled_service": "no", + "gps_code": "CYCQ", + "iata_code": "YCQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chetwynd_Airport" + }, + { + "id": "1696", + "ident": "CYCR", + "type": "medium_airport", + "name": "Cross Lake (Charlie Sinclair Memorial) Airport", + "latitude_deg": "54.610599517822266", + "longitude_deg": "-97.76080322265625", + "elevation_ft": "709", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Cross Lake", + "scheduled_service": "no", + "gps_code": "CYCR", + "iata_code": "YCR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cross_Lake_(Charlie_Sinclair_Memorial)_Airport" + }, + { + "id": "1697", + "ident": "CYCS", + "type": "medium_airport", + "name": "Chesterfield Inlet Airport", + "latitude_deg": "63.346900939899996", + "longitude_deg": "-90.73110198970001", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Chesterfield Inlet", + "scheduled_service": "yes", + "gps_code": "CYCS", + "iata_code": "YCS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chesterfield_Inlet_Airport" + }, + { + "id": "1698", + "ident": "CYCT", + "type": "small_airport", + "name": "Coronation Airport", + "latitude_deg": "52.0750007629", + "longitude_deg": "-111.444999695", + "elevation_ft": "2595", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Coronation", + "scheduled_service": "no", + "gps_code": "CYCT", + "iata_code": "YCT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coronation_Airport", + "keywords": "YCT" + }, + { + "id": "28111", + "ident": "CYCV", + "type": "closed", + "name": "Cartierville Airport", + "latitude_deg": "45.516700744628906", + "longitude_deg": "-73.7166976928711", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montreal", + "scheduled_service": "no", + "gps_code": "CYCV", + "iata_code": "YCV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cartierville_Airport" + }, + { + "id": "1699", + "ident": "CYCW", + "type": "small_airport", + "name": "Chilliwack Airport", + "latitude_deg": "49.153157", + "longitude_deg": "-121.939309", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Chilliwack", + "scheduled_service": "no", + "gps_code": "CYCW", + "iata_code": "YCW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chilliwack_Airport", + "keywords": "YCW" + }, + { + "id": "1700", + "ident": "CYCX", + "type": "heliport", + "name": "CFB Gagetown Heliport", + "latitude_deg": "45.8376780475", + "longitude_deg": "-66.4367267489", + "elevation_ft": "166", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Gagetown", + "scheduled_service": "no", + "gps_code": "CYCX", + "wikipedia_link": "https://en.wikipedia.org/wiki/CFB_Gagetown", + "keywords": "YCX" + }, + { + "id": "1701", + "ident": "CYCY", + "type": "medium_airport", + "name": "Clyde River Airport", + "latitude_deg": "70.4860992432", + "longitude_deg": "-68.5167007446", + "elevation_ft": "87", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Clyde River", + "scheduled_service": "yes", + "gps_code": "CYCY", + "iata_code": "YCY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clyde_River_Airport" + }, + { + "id": "1702", + "ident": "CYCZ", + "type": "small_airport", + "name": "Fairmont Hot Springs Airport", + "latitude_deg": "50.331052", + "longitude_deg": "-115.873739", + "elevation_ft": "2661", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Fairmont Hot Springs", + "scheduled_service": "no", + "gps_code": "CYCZ", + "iata_code": "YCZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fairmont_Hot_Springs_Airport", + "keywords": "YCZ" + }, + { + "id": "317872", + "ident": "CYD", + "type": "small_airport", + "name": "Ejidal de San Ignacio Airstrip", + "latitude_deg": "27.2906", + "longitude_deg": "-112.8851", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no", + "local_code": "SNG", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Ignacio_Downtown_Airstrip" + }, + { + "id": "353838", + "ident": "CYD2", + "type": "seaplane_base", + "name": "Yellow Dog Lodge Seaplane Base", + "latitude_deg": "62.890556", + "longitude_deg": "-113.867778", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Graham Lake", + "scheduled_service": "no", + "gps_code": "CYD2", + "local_code": "CYD2", + "home_link": "https://yellowdoglodge.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Graham_Lake_(Yellow_Dog_Lodge)_Water_Aerodrome" + }, + { + "id": "1703", + "ident": "CYDA", + "type": "medium_airport", + "name": "Dawson City Airport", + "latitude_deg": "64.04309844970703", + "longitude_deg": "-139.1280059814453", + "elevation_ft": "1215", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Dawson City", + "scheduled_service": "yes", + "gps_code": "CYDA", + "iata_code": "YDA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dawson_City_Airport" + }, + { + "id": "1704", + "ident": "CYDB", + "type": "medium_airport", + "name": "Burwash Airport", + "latitude_deg": "61.371101", + "longitude_deg": "-139.041", + "elevation_ft": "2647", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Burwash Landing", + "scheduled_service": "no", + "gps_code": "CYDB", + "iata_code": "YDB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Burwash_Airport" + }, + { + "id": "1705", + "ident": "CYDC", + "type": "medium_airport", + "name": "Princeton Airport", + "latitude_deg": "49.4681015015", + "longitude_deg": "-120.511001587", + "elevation_ft": "2298", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Town of Princeton", + "scheduled_service": "no", + "gps_code": "CYDC", + "home_link": "http://princetonairport.ca", + "wikipedia_link": "https://en.wikipedia.org/wiki/Princeton_Airport_(British_Columbia)", + "keywords": "YDC" + }, + { + "id": "1706", + "ident": "CYDF", + "type": "medium_airport", + "name": "Deer Lake Airport", + "latitude_deg": "49.21080017089844", + "longitude_deg": "-57.39139938354492", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Deer Lake", + "scheduled_service": "yes", + "gps_code": "CYDF", + "iata_code": "YDF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Deer_Lake_Airport_(Newfoundland)" + }, + { + "id": "1707", + "ident": "CYDH", + "type": "heliport", + "name": "Ottawa / Dwyer Hill Heliport", + "latitude_deg": "45.1305999756", + "longitude_deg": "-75.9483032227", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ottawa", + "scheduled_service": "no", + "gps_code": "CYDH", + "local_code": "CYDH", + "keywords": "YDH" + }, + { + "id": "1708", + "ident": "CYDL", + "type": "small_airport", + "name": "Dease Lake Airport", + "latitude_deg": "58.4221992493", + "longitude_deg": "-130.031997681", + "elevation_ft": "2600", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Dease Lake", + "scheduled_service": "no", + "gps_code": "CYDL", + "iata_code": "YDL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dease_Lake_Airport", + "keywords": "YDL" + }, + { + "id": "1709", + "ident": "CYDM", + "type": "medium_airport", + "name": "Ross River Airport", + "latitude_deg": "61.9706001282", + "longitude_deg": "-132.42300415", + "elevation_ft": "2314", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Ross River", + "scheduled_service": "no", + "gps_code": "CYDM", + "iata_code": "XRR", + "local_code": "YDM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ross_River_Airport" + }, + { + "id": "1710", + "ident": "CYDN", + "type": "medium_airport", + "name": "Dauphin Barker Airport", + "latitude_deg": "51.100799560546875", + "longitude_deg": "-100.052001953125", + "elevation_ft": "999", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Dauphin", + "scheduled_service": "yes", + "gps_code": "CYDN", + "iata_code": "YDN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dauphin_(Lt._Col_W.G._(Billy)_Barker_VC_Airport)" + }, + { + "id": "1711", + "ident": "CYDO", + "type": "medium_airport", + "name": "Dolbeau St Felicien Airport", + "latitude_deg": "48.778499603271", + "longitude_deg": "-72.375", + "elevation_ft": "372", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Dolbeau-St-Félicien", + "scheduled_service": "no", + "gps_code": "CYDO", + "iata_code": "YDO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dolbeau-St-F%C3%A9licien_Airport", + "keywords": "Dolbeau St Methode" + }, + { + "id": "1712", + "ident": "CYDP", + "type": "medium_airport", + "name": "Nain Airport", + "latitude_deg": "56.550778", + "longitude_deg": "-61.682224", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Nain", + "scheduled_service": "yes", + "gps_code": "CYDP", + "iata_code": "YDP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nain_Airport" + }, + { + "id": "1713", + "ident": "CYDQ", + "type": "medium_airport", + "name": "Dawson Creek Airport", + "latitude_deg": "55.7422981262207", + "longitude_deg": "-120.18299865722656", + "elevation_ft": "2148", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Dawson Creek", + "scheduled_service": "yes", + "gps_code": "CYDQ", + "iata_code": "YDQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dawson_Creek_Airport" + }, + { + "id": "1714", + "ident": "CYEA", + "type": "small_airport", + "name": "Empress Airport", + "latitude_deg": "50.93330001831055", + "longitude_deg": "-110.01300048828125", + "elevation_ft": "2211", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Empress", + "scheduled_service": "no", + "gps_code": "CYEA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Empress_Airport", + "keywords": "YEA" + }, + { + "id": "1715", + "ident": "CYED", + "type": "heliport", + "name": "Edmonton (CFB Namao) Heliport", + "latitude_deg": "53.667934", + "longitude_deg": "-113.472548", + "elevation_ft": "2257", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Edmonton", + "scheduled_service": "no", + "gps_code": "CYED", + "local_code": "CYED", + "wikipedia_link": "https://en.wikipedia.org/wiki/CFB_Edmonton", + "keywords": "YED, CFB Edmonton, Namao Airport" + }, + { + "id": "1716", + "ident": "CYEE", + "type": "medium_airport", + "name": "Huronia Airport", + "latitude_deg": "44.6833000183", + "longitude_deg": "-79.9282989502", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Midland", + "scheduled_service": "no", + "gps_code": "CYEE", + "local_code": "YEE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Midland/Huronia_Airport" + }, + { + "id": "1717", + "ident": "CYEG", + "type": "large_airport", + "name": "Edmonton International Airport", + "latitude_deg": "53.309700012200004", + "longitude_deg": "-113.580001831", + "elevation_ft": "2373", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Edmonton", + "scheduled_service": "yes", + "gps_code": "CYEG", + "iata_code": "YEG", + "local_code": "CYEG", + "home_link": "http://www.edmontonairports.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Edmonton_International_Airport", + "keywords": "YEA" + }, + { + "id": "1718", + "ident": "CYEK", + "type": "medium_airport", + "name": "Arviat Airport", + "latitude_deg": "61.0942001343", + "longitude_deg": "-94.07080078119999", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Arviat", + "scheduled_service": "yes", + "gps_code": "CYEK", + "iata_code": "YEK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arviat_Airport" + }, + { + "id": "1719", + "ident": "CYEL", + "type": "medium_airport", + "name": "Elliot Lake Municipal Airport", + "latitude_deg": "46.351398468", + "longitude_deg": "-82.5614013672", + "elevation_ft": "1087", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Elliot Lake", + "scheduled_service": "no", + "gps_code": "CYEL", + "iata_code": "YEL", + "home_link": "http://cyelont.tripod.com/cyel/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elliot_Lake_Municipal_Airport" + }, + { + "id": "1720", + "ident": "CYEM", + "type": "medium_airport", + "name": "Manitoulin East Municipal Airport", + "latitude_deg": "45.842435", + "longitude_deg": "-81.857595", + "elevation_ft": "869", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Sheguiandah", + "scheduled_service": "no", + "gps_code": "CYEM", + "iata_code": "YEM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manitowaning/Manitoulin_East_Municipal_Airport" + }, + { + "id": "1721", + "ident": "CYEN", + "type": "medium_airport", + "name": "Estevan Airport", + "latitude_deg": "49.2103004456", + "longitude_deg": "-102.966003418", + "elevation_ft": "1905", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Estevan", + "scheduled_service": "no", + "gps_code": "CYEN", + "iata_code": "YEN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Estevan_Regional_Aerodrome", + "keywords": "YEN" + }, + { + "id": "1722", + "ident": "CYER", + "type": "medium_airport", + "name": "Fort Severn Airport", + "latitude_deg": "56.01890182495117", + "longitude_deg": "-87.67610168457031", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Fort Severn", + "scheduled_service": "yes", + "gps_code": "CYER", + "iata_code": "YER", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Severn_Airport" + }, + { + "id": "1723", + "ident": "CYES", + "type": "small_airport", + "name": "Edmundston Airport", + "latitude_deg": "47.487208", + "longitude_deg": "-68.477732", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Edmundston", + "scheduled_service": "no", + "gps_code": "CYES", + "wikipedia_link": "https://en.wikipedia.org/wiki/Edmundston_Airport", + "keywords": "YES" + }, + { + "id": "1724", + "ident": "CYET", + "type": "medium_airport", + "name": "Edson Airport", + "latitude_deg": "53.578899383499994", + "longitude_deg": "-116.464996338", + "elevation_ft": "3043", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Edson", + "scheduled_service": "no", + "gps_code": "CYET", + "iata_code": "YET", + "wikipedia_link": "https://en.wikipedia.org/wiki/Edson_Airport" + }, + { + "id": "1725", + "ident": "CYEU", + "type": "small_airport", + "name": "Eureka Airport", + "latitude_deg": "79.9946975708", + "longitude_deg": "-85.814201355", + "elevation_ft": "256", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Eureka", + "scheduled_service": "no", + "gps_code": "CYEU", + "iata_code": "YEU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eureka_Aerodrome", + "keywords": "YEU" + }, + { + "id": "1726", + "ident": "CYEV", + "type": "medium_airport", + "name": "Inuvik Mike Zubko Airport", + "latitude_deg": "68.30419921880001", + "longitude_deg": "-133.483001709", + "elevation_ft": "224", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Inuvik", + "scheduled_service": "yes", + "gps_code": "CYEV", + "iata_code": "YEV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Inuvik_(Mike_Zubko)_Airport" + }, + { + "id": "1727", + "ident": "CYEY", + "type": "medium_airport", + "name": "Amos/Magny Airport", + "latitude_deg": "48.563903", + "longitude_deg": "-78.249702", + "elevation_ft": "1068", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Amos", + "scheduled_service": "no", + "gps_code": "CYEY", + "iata_code": "YEY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amos/Magny_Airport" + }, + { + "id": "1728", + "ident": "CYFA", + "type": "medium_airport", + "name": "Fort Albany Airport", + "latitude_deg": "52.20140075683594", + "longitude_deg": "-81.6968994140625", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Fort Albany", + "scheduled_service": "yes", + "gps_code": "CYFA", + "iata_code": "YFA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Albany_Airport" + }, + { + "id": "1729", + "ident": "CYFB", + "type": "medium_airport", + "name": "Iqaluit Airport", + "latitude_deg": "63.756402", + "longitude_deg": "-68.555801", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Iqaluit", + "scheduled_service": "yes", + "gps_code": "CYFB", + "iata_code": "YFB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iqaluit_Airport", + "keywords": "Frobisher Bay Air Base" + }, + { + "id": "1730", + "ident": "CYFC", + "type": "medium_airport", + "name": "Fredericton Airport", + "latitude_deg": "45.868900299072266", + "longitude_deg": "-66.53720092773438", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Fredericton", + "scheduled_service": "yes", + "gps_code": "CYFC", + "iata_code": "YFC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greater_Fredericton_Airport" + }, + { + "id": "1731", + "ident": "CYFD", + "type": "small_airport", + "name": "Brantford Municipal Airport", + "latitude_deg": "43.13140106201172", + "longitude_deg": "-80.34249877929688", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Brantford", + "scheduled_service": "no", + "gps_code": "CYFD", + "home_link": "http://www.brantfordairport.ca", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brantford_Airport", + "keywords": "YFD" + }, + { + "id": "1732", + "ident": "CYFE", + "type": "medium_airport", + "name": "Forestville Airport", + "latitude_deg": "48.74610137939453", + "longitude_deg": "-69.09719848632812", + "elevation_ft": "293", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Forestville", + "scheduled_service": "no", + "gps_code": "CYFE", + "iata_code": "YFE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Forestville_Airport" + }, + { + "id": "1733", + "ident": "CYFH", + "type": "medium_airport", + "name": "Fort Hope Airport", + "latitude_deg": "51.5619010925293", + "longitude_deg": "-87.90779876708984", + "elevation_ft": "899", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Fort Hope", + "scheduled_service": "yes", + "gps_code": "CYFH", + "iata_code": "YFH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Hope_Airport" + }, + { + "id": "1734", + "ident": "CYFJ", + "type": "medium_airport", + "name": "Mont-Tremblant International Airport", + "latitude_deg": "46.409401", + "longitude_deg": "-74.779999", + "elevation_ft": "827", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "La Macaza", + "scheduled_service": "yes", + "gps_code": "CYFJ", + "iata_code": "YTM", + "home_link": "http://www.mtia.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rivi%C3%A8re_Rouge/Mont-Tremblant_International_Inc_Airport", + "keywords": "YFJ, CYTM" + }, + { + "id": "1735", + "ident": "CYFO", + "type": "medium_airport", + "name": "Flin Flon Airport", + "latitude_deg": "54.6781005859375", + "longitude_deg": "-101.68199920654297", + "elevation_ft": "997", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Flin Flon", + "scheduled_service": "yes", + "gps_code": "CYFO", + "iata_code": "YFO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Flin_Flon_Airport" + }, + { + "id": "1736", + "ident": "CYFR", + "type": "medium_airport", + "name": "Fort Resolution Airport", + "latitude_deg": "61.1808013916", + "longitude_deg": "-113.690002441", + "elevation_ft": "526", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Fort Resolution", + "scheduled_service": "no", + "gps_code": "CYFR", + "iata_code": "YFR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Resolution_Airport", + "keywords": "YFR" + }, + { + "id": "1737", + "ident": "CYFS", + "type": "medium_airport", + "name": "Fort Simpson Airport", + "latitude_deg": "61.76020050048828", + "longitude_deg": "-121.23699951171875", + "elevation_ft": "555", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Fort Simpson", + "scheduled_service": "yes", + "gps_code": "CYFS", + "iata_code": "YFS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Simpson_Airport" + }, + { + "id": "1738", + "ident": "CYFT", + "type": "medium_airport", + "name": "Makkovik Airport", + "latitude_deg": "55.077335", + "longitude_deg": "-59.187942", + "elevation_ft": "234", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Makkovik", + "scheduled_service": "yes", + "gps_code": "CYFT", + "iata_code": "YMN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Makkovik_Airport", + "keywords": "YFT" + }, + { + "id": "353841", + "ident": "CYG2", + "type": "small_airport", + "name": "Yellow Gold Airport", + "latitude_deg": "43.159989", + "longitude_deg": "-81.703091", + "elevation_ft": "642", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Parkhill", + "scheduled_service": "no", + "gps_code": "CYG2", + "local_code": "CYG2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Parkhill_(Yellow_Gold)_Aerodrome" + }, + { + "id": "1739", + "ident": "CYGB", + "type": "medium_airport", + "name": "Texada Gillies Bay Airport", + "latitude_deg": "49.69419860839844", + "longitude_deg": "-124.51799774169922", + "elevation_ft": "326", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Texada", + "scheduled_service": "yes", + "gps_code": "CYGB", + "iata_code": "YGB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Texada/Gillies_Bay_Airport" + }, + { + "id": "1740", + "ident": "CYGD", + "type": "medium_airport", + "name": "Goderich Airport", + "latitude_deg": "43.7668991089", + "longitude_deg": "-81.7106018066", + "elevation_ft": "712", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Goderich", + "scheduled_service": "no", + "gps_code": "CYGD", + "local_code": "YGD", + "home_link": "http://www.goderich.ca/en/townhall/airport.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Goderich_Airport" + }, + { + "id": "1741", + "ident": "CYGE", + "type": "medium_airport", + "name": "Golden Airport", + "latitude_deg": "51.299196", + "longitude_deg": "-116.982002", + "elevation_ft": "2575", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Golden", + "scheduled_service": "no", + "gps_code": "CYGE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Golden_Airport", + "keywords": "AL4" + }, + { + "id": "1742", + "ident": "CYGH", + "type": "medium_airport", + "name": "Fort Good Hope Airport", + "latitude_deg": "66.24079895019531", + "longitude_deg": "-128.6510009765625", + "elevation_ft": "268", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Fort Good Hope", + "scheduled_service": "yes", + "gps_code": "CYGH", + "iata_code": "YGH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Good_Hope_Airport" + }, + { + "id": "1743", + "ident": "CYGK", + "type": "medium_airport", + "name": "Kingston Norman Rogers Airport", + "latitude_deg": "44.22529983520508", + "longitude_deg": "-76.5969009399414", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kingston", + "scheduled_service": "yes", + "gps_code": "CYGK", + "iata_code": "YGK", + "home_link": "http://www.cityofkingston.ca/residents/transportation/airport/index.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kingston/Norman_Rogers_Airport" + }, + { + "id": "1744", + "ident": "CYGL", + "type": "medium_airport", + "name": "La Grande Rivière Airport", + "latitude_deg": "53.625301361083984", + "longitude_deg": "-77.7042007446289", + "elevation_ft": "639", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "La Grande Rivière", + "scheduled_service": "yes", + "gps_code": "CYGL", + "iata_code": "YGL", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Grande_Rivi%C3%A8re_Airport" + }, + { + "id": "1745", + "ident": "CYGM", + "type": "medium_airport", + "name": "Gimli Industrial Park Airport", + "latitude_deg": "50.62810134887695", + "longitude_deg": "-97.04329681396484", + "elevation_ft": "753", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Gimli", + "scheduled_service": "no", + "gps_code": "CYGM", + "iata_code": "YGM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gimli_Industrial_Park_Airport" + }, + { + "id": "1746", + "ident": "CYGO", + "type": "medium_airport", + "name": "Gods Lake Narrows Airport", + "latitude_deg": "54.55889892578125", + "longitude_deg": "-94.49140167236328", + "elevation_ft": "617", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Gods Lake Narrows", + "scheduled_service": "yes", + "gps_code": "CYGO", + "iata_code": "YGO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gods_Lake_Narrows_Airport" + }, + { + "id": "1747", + "ident": "CYGP", + "type": "medium_airport", + "name": "Gaspé (Michel-Pouliot) Airport", + "latitude_deg": "48.7752990723", + "longitude_deg": "-64.4785995483", + "elevation_ft": "112", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Gaspé", + "scheduled_service": "yes", + "gps_code": "CYGP", + "iata_code": "YGP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gasp%C3%A9_Airport" + }, + { + "id": "1748", + "ident": "CYGQ", + "type": "medium_airport", + "name": "Geraldton Greenstone Regional Airport", + "latitude_deg": "49.77830123901367", + "longitude_deg": "-86.93939971923828", + "elevation_ft": "1144", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Geraldton", + "scheduled_service": "no", + "gps_code": "CYGQ", + "iata_code": "YGQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Geraldton_(Greenstone_Regional)_Airport" + }, + { + "id": "1749", + "ident": "CYGR", + "type": "medium_airport", + "name": "Îles-de-la-Madeleine Airport", + "latitude_deg": "47.425242", + "longitude_deg": "-61.778612", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Les Îles-de-la-Madeleine", + "scheduled_service": "yes", + "gps_code": "CYGR", + "iata_code": "YGR", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%8Eles-de-la-Madeleine_Airport" + }, + { + "id": "1750", + "ident": "CYGT", + "type": "medium_airport", + "name": "Igloolik Airport", + "latitude_deg": "69.3647003174", + "longitude_deg": "-81.8161010742", + "elevation_ft": "174", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Igloolik", + "scheduled_service": "yes", + "gps_code": "CYGT", + "iata_code": "YGT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Igloolik_Airport" + }, + { + "id": "1751", + "ident": "CYGV", + "type": "medium_airport", + "name": "Havre-Saint-Pierre Airport", + "latitude_deg": "50.281898", + "longitude_deg": "-63.611401", + "elevation_ft": "124", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Havre-Saint-Pierre", + "scheduled_service": "no", + "gps_code": "CYGV", + "iata_code": "YGV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Havre_St-Pierre_Airport" + }, + { + "id": "1752", + "ident": "CYGW", + "type": "medium_airport", + "name": "Kuujjuarapik Airport", + "latitude_deg": "55.281898498535156", + "longitude_deg": "-77.76529693603516", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Kuujjuarapik", + "scheduled_service": "yes", + "gps_code": "CYGW", + "iata_code": "YGW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kuujjuarapik_Airport" + }, + { + "id": "1753", + "ident": "CYGX", + "type": "medium_airport", + "name": "Gillam Airport", + "latitude_deg": "56.35749816894531", + "longitude_deg": "-94.71060180664062", + "elevation_ft": "476", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Gillam", + "scheduled_service": "yes", + "gps_code": "CYGX", + "iata_code": "YGX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gillam_Airport" + }, + { + "id": "1754", + "ident": "CYGZ", + "type": "medium_airport", + "name": "Grise Fiord Airport", + "latitude_deg": "76.4261016846", + "longitude_deg": "-82.90920257570001", + "elevation_ft": "146", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Grise Fiord", + "scheduled_service": "yes", + "gps_code": "CYGZ", + "iata_code": "YGZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grise_Fiord_Airport" + }, + { + "id": "1755", + "ident": "CYHA", + "type": "medium_airport", + "name": "Quaqtaq Airport", + "latitude_deg": "61.0463981628418", + "longitude_deg": "-69.6177978515625", + "elevation_ft": "103", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Quaqtaq", + "scheduled_service": "yes", + "gps_code": "CYHA", + "iata_code": "YQC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quaqtaq_Airport", + "keywords": "YHA" + }, + { + "id": "1756", + "ident": "CYHB", + "type": "small_airport", + "name": "Hudson Bay Airport", + "latitude_deg": "52.8166999817", + "longitude_deg": "-102.310997009", + "elevation_ft": "1175", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Hudson Bay", + "scheduled_service": "no", + "gps_code": "CYHB", + "iata_code": "YHB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hudson_Bay_Airport", + "keywords": "YHB" + }, + { + "id": "28453", + "ident": "CYHC", + "type": "seaplane_base", + "name": "Vancouver Harbour Water Aerodrome", + "latitude_deg": "49.291265", + "longitude_deg": "-123.11717", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Vancouver", + "scheduled_service": "yes", + "gps_code": "CYHC", + "iata_code": "CXH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vancouver_Harbour_Water_Aerodrome", + "keywords": "Vancouver Coal Harbour Seaplane Base" + }, + { + "id": "1757", + "ident": "CYHD", + "type": "medium_airport", + "name": "Dryden Regional Airport", + "latitude_deg": "49.831699", + "longitude_deg": "-92.744202", + "elevation_ft": "1354", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Dryden", + "scheduled_service": "yes", + "gps_code": "CYHD", + "iata_code": "YHD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dryden_Regional_Airport" + }, + { + "id": "1758", + "ident": "CYHE", + "type": "medium_airport", + "name": "Hope Airport / FVRD Regional Airpark", + "latitude_deg": "49.368865", + "longitude_deg": "-121.49495", + "elevation_ft": "128", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Hope", + "scheduled_service": "no", + "gps_code": "CYHE", + "iata_code": "YHE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hope_Aerodrome", + "keywords": "YHE" + }, + { + "id": "1759", + "ident": "CYHF", + "type": "medium_airport", + "name": "Hearst René Fontaine Municipal Airport", + "latitude_deg": "49.71419906616211", + "longitude_deg": "-83.68609619140625", + "elevation_ft": "827", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Hearst", + "scheduled_service": "no", + "gps_code": "CYHF", + "iata_code": "YHF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hearst_(Ren%C3%A9_Fontaine)_Municipal_Airport" + }, + { + "id": "1760", + "ident": "CYHH", + "type": "medium_airport", + "name": "Nemiscau Airport", + "latitude_deg": "51.69110107421875", + "longitude_deg": "-76.1355972290039", + "elevation_ft": "802", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Nemiscau", + "scheduled_service": "yes", + "gps_code": "CYHH", + "iata_code": "YNS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nemiscau_Airport", + "keywords": "YHH" + }, + { + "id": "1761", + "ident": "CYHI", + "type": "medium_airport", + "name": "Ulukhaktok Holman Airport", + "latitude_deg": "70.76280212402344", + "longitude_deg": "-117.80599975585938", + "elevation_ft": "117", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Ulukhaktok", + "scheduled_service": "yes", + "gps_code": "CYHI", + "iata_code": "YHI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ulukhaktok/Holman_Airport" + }, + { + "id": "1762", + "ident": "CYHK", + "type": "medium_airport", + "name": "Gjoa Haven Airport", + "latitude_deg": "68.635597229", + "longitude_deg": "-95.84970092770001", + "elevation_ft": "152", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Gjoa Haven", + "scheduled_service": "yes", + "gps_code": "CYHK", + "iata_code": "YHK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gjoa_Haven_Airport" + }, + { + "id": "1763", + "ident": "CYHM", + "type": "medium_airport", + "name": "John C. Munro Hamilton International Airport", + "latitude_deg": "43.173599243199995", + "longitude_deg": "-79.93499755859999", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Hamilton", + "scheduled_service": "yes", + "gps_code": "CYHM", + "iata_code": "YHM", + "home_link": "http://www.flyhi.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hamilton/John_C._Munro_International_Airport", + "keywords": "Mount Hope Airport" + }, + { + "id": "1764", + "ident": "CYHN", + "type": "medium_airport", + "name": "Hornepayne Municipal Airport", + "latitude_deg": "49.19309997558594", + "longitude_deg": "-84.75890350341797", + "elevation_ft": "1099", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Hornepayne", + "scheduled_service": "no", + "gps_code": "CYHN", + "iata_code": "YHN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hornepayne_Municipal_Airport" + }, + { + "id": "1765", + "ident": "CYHO", + "type": "medium_airport", + "name": "Hopedale Airport", + "latitude_deg": "55.448757", + "longitude_deg": "-60.228124", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Hopedale", + "scheduled_service": "yes", + "gps_code": "CYHO", + "iata_code": "YHO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hopedale_Airport" + }, + { + "id": "1766", + "ident": "CYHR", + "type": "medium_airport", + "name": "Chevery Airport", + "latitude_deg": "50.46889877319336", + "longitude_deg": "-59.63669967651367", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Chevery", + "scheduled_service": "yes", + "gps_code": "CYHR", + "iata_code": "YHR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chevery_Airport" + }, + { + "id": "1436", + "ident": "CYHS", + "type": "small_airport", + "name": "Hanover / Saugeen Municipal Airport", + "latitude_deg": "44.158298", + "longitude_deg": "-81.062798", + "elevation_ft": "939", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Hanover", + "scheduled_service": "no", + "gps_code": "CYHS", + "local_code": "CYHS", + "home_link": "http://www.saugeenmunicipalairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hanover/Saugeen_Municipal_Airport", + "keywords": "CPN4, YHS, PN4" + }, + { + "id": "1767", + "ident": "CYHT", + "type": "medium_airport", + "name": "Haines Junction Airport", + "latitude_deg": "60.7892", + "longitude_deg": "-137.546005", + "elevation_ft": "2150", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Haines Junction", + "scheduled_service": "no", + "gps_code": "CYHT", + "iata_code": "YHT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Haines_Junction_Airport" + }, + { + "id": "1768", + "ident": "CYHU", + "type": "medium_airport", + "name": "Montréal / Saint-Hubert Airport", + "latitude_deg": "45.5175018311", + "longitude_deg": "-73.4169006348", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montréal", + "scheduled_service": "yes", + "gps_code": "CYHU", + "iata_code": "YHU", + "home_link": "http://www.dashl.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Montr%C3%A9al/St-Hubert_Airport" + }, + { + "id": "1769", + "ident": "CYHY", + "type": "medium_airport", + "name": "Hay River / Merlyn Carter Airport", + "latitude_deg": "60.8396987915", + "longitude_deg": "-115.782997131", + "elevation_ft": "541", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Hay River", + "scheduled_service": "yes", + "gps_code": "CYHY", + "iata_code": "YHY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hay_River_Airport" + }, + { + "id": "1770", + "ident": "CYHZ", + "type": "large_airport", + "name": "Halifax / Stanfield International Airport", + "latitude_deg": "44.8807983398", + "longitude_deg": "-63.5085983276", + "elevation_ft": "477", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Halifax", + "scheduled_service": "yes", + "gps_code": "CYHZ", + "iata_code": "YHZ", + "home_link": "http://www.hiaa.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Halifax_International_Airport", + "keywords": "Robert L. Stanfield International Airport" + }, + { + "id": "1771", + "ident": "CYIB", + "type": "medium_airport", + "name": "Atikokan Municipal Airport", + "latitude_deg": "48.7738990784", + "longitude_deg": "-91.6386032104", + "elevation_ft": "1408", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Atikokan", + "scheduled_service": "no", + "gps_code": "CYIB", + "iata_code": "YIB", + "home_link": "http://www.atikokaninfo.com/community/transportation/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atikokan_Municipal_Airport" + }, + { + "id": "1772", + "ident": "CYID", + "type": "medium_airport", + "name": "Digby / Annapolis Regional Airport", + "latitude_deg": "44.5458450365", + "longitude_deg": "-65.7854247093", + "elevation_ft": "499", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Digby", + "scheduled_service": "no", + "gps_code": "CYID", + "iata_code": "YDG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Digby_Airport", + "keywords": "YID" + }, + { + "id": "1773", + "ident": "CYIF", + "type": "medium_airport", + "name": "St Augustin Airport", + "latitude_deg": "51.2117004395", + "longitude_deg": "-58.6582984924", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St-Augustin", + "scheduled_service": "no", + "gps_code": "CYIF", + "iata_code": "YIF", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Augustin_Airport", + "keywords": "Pakuashipi Airport" + }, + { + "id": "1774", + "ident": "CYIK", + "type": "medium_airport", + "name": "Ivujivik Airport", + "latitude_deg": "62.417301177978516", + "longitude_deg": "-77.92530059814453", + "elevation_ft": "126", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Ivujivik", + "scheduled_service": "yes", + "gps_code": "CYIK", + "iata_code": "YIK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ivujivik_Airport" + }, + { + "id": "1775", + "ident": "CYIO", + "type": "medium_airport", + "name": "Pond Inlet Airport", + "latitude_deg": "72.6832962036", + "longitude_deg": "-77.9666976929", + "elevation_ft": "181", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Pond Inlet", + "scheduled_service": "yes", + "gps_code": "CYIO", + "iata_code": "YIO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pond_Inlet_Airport" + }, + { + "id": "1776", + "ident": "CYIV", + "type": "medium_airport", + "name": "Island Lake Airport", + "latitude_deg": "53.857200622558594", + "longitude_deg": "-94.65360260009766", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Island Lake", + "scheduled_service": "yes", + "gps_code": "CYIV", + "iata_code": "YIV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Island_Lake_Airport" + }, + { + "id": "1777", + "ident": "CYJA", + "type": "small_airport", + "name": "Jasper Airport", + "latitude_deg": "52.996418", + "longitude_deg": "-118.060233", + "elevation_ft": "3350", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Jasper", + "scheduled_service": "no", + "gps_code": "CYJA", + "iata_code": "YJA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jasper_Airport" + }, + { + "id": "1778", + "ident": "CYJF", + "type": "medium_airport", + "name": "Fort Liard Airport", + "latitude_deg": "60.235801696799996", + "longitude_deg": "-123.46900177", + "elevation_ft": "708", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Fort Liard", + "scheduled_service": "no", + "gps_code": "CYJF", + "iata_code": "YJF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Liard_Airport", + "keywords": "YJF" + }, + { + "id": "1779", + "ident": "CYJM", + "type": "small_airport", + "name": "Fort St James Airport", + "latitude_deg": "54.39720153808594", + "longitude_deg": "-124.26300048828125", + "elevation_ft": "2364", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Fort St. James", + "scheduled_service": "no", + "gps_code": "CYJM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_St._James_(Perison)_Airport", + "keywords": "YJM" + }, + { + "id": "1780", + "ident": "CYJN", + "type": "medium_airport", + "name": "St Jean Airport", + "latitude_deg": "45.29439926147461", + "longitude_deg": "-73.28109741210938", + "elevation_ft": "136", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "St Jean", + "scheduled_service": "no", + "gps_code": "CYJN", + "iata_code": "YJN", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Jean_Airport" + }, + { + "id": "1781", + "ident": "CYJP", + "type": "small_airport", + "name": "Fort Providence Airport", + "latitude_deg": "61.319400787353516", + "longitude_deg": "-117.60600280761719", + "elevation_ft": "524", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Fort Providence", + "scheduled_service": "no", + "gps_code": "CYJP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Providence_Airport", + "keywords": "YJP" + }, + { + "id": "1782", + "ident": "CYJQ", + "type": "small_airport", + "name": "Denny Island Airport", + "latitude_deg": "52.136474", + "longitude_deg": "-128.056182", + "elevation_ft": "162", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Denny Island", + "scheduled_service": "no", + "gps_code": "CYJQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bella_Bella_(Denny_Island)_Airport", + "keywords": "YJQ" + }, + { + "id": "1783", + "ident": "CYJT", + "type": "medium_airport", + "name": "Stephenville Airport", + "latitude_deg": "48.5442008972168", + "longitude_deg": "-58.54999923706055", + "elevation_ft": "84", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Stephenville", + "scheduled_service": "yes", + "gps_code": "CYJT", + "iata_code": "YJT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stephenville_Airport" + }, + { + "id": "1784", + "ident": "CYKA", + "type": "medium_airport", + "name": "Kamloops Airport", + "latitude_deg": "50.7022018433", + "longitude_deg": "-120.444000244", + "elevation_ft": "1133", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kamloops", + "scheduled_service": "yes", + "gps_code": "CYKA", + "iata_code": "YKA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kamloops_Airport" + }, + { + "id": "1785", + "ident": "CYKC", + "type": "small_airport", + "name": "Collins Bay Airport", + "latitude_deg": "58.236099243199995", + "longitude_deg": "-103.678001404", + "elevation_ft": "1341", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Collins Bay", + "scheduled_service": "no", + "gps_code": "CYKC", + "iata_code": "YKC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Collins_Bay_Airport", + "keywords": "YKC" + }, + { + "id": "1786", + "ident": "CYKD", + "type": "medium_airport", + "name": "Aklavik/Freddie Carmichael Airport", + "latitude_deg": "68.223297", + "longitude_deg": "-135.00599", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Aklavik", + "scheduled_service": "yes", + "gps_code": "CYKD", + "iata_code": "LAK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aklavik_Airport", + "keywords": "YKD" + }, + { + "id": "1787", + "ident": "CYKF", + "type": "medium_airport", + "name": "Waterloo Airport", + "latitude_deg": "43.460800170899994", + "longitude_deg": "-80.3786010742", + "elevation_ft": "1055", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kitchener", + "scheduled_service": "yes", + "gps_code": "CYKF", + "iata_code": "YKF", + "home_link": "http://www.waterlooairport.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Region_of_Waterloo_International_Airport", + "keywords": "Kitchener, Cambridge, YFK" + }, + { + "id": "1788", + "ident": "CYKG", + "type": "medium_airport", + "name": "Kangiqsujuaq (Wakeham Bay) Airport", + "latitude_deg": "61.5886001587", + "longitude_deg": "-71.929397583", + "elevation_ft": "501", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Kangiqsujuaq", + "scheduled_service": "yes", + "gps_code": "CYKG", + "iata_code": "YWB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kangiqsujuaq_(Wakeham_Bay)_Airport", + "keywords": "YKG" + }, + { + "id": "1789", + "ident": "CYKJ", + "type": "medium_airport", + "name": "Key Lake Airport", + "latitude_deg": "57.256099700927734", + "longitude_deg": "-105.61799621582031", + "elevation_ft": "1679", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Key Lake", + "scheduled_service": "no", + "gps_code": "CYKJ", + "iata_code": "YKJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Key_Lake_Airport" + }, + { + "id": "1790", + "ident": "CYKL", + "type": "medium_airport", + "name": "Schefferville Airport", + "latitude_deg": "54.805301666259766", + "longitude_deg": "-66.8052978515625", + "elevation_ft": "1709", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Schefferville", + "scheduled_service": "yes", + "gps_code": "CYKL", + "iata_code": "YKL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Schefferville_Airport" + }, + { + "id": "1340", + "ident": "CYKM", + "type": "small_airport", + "name": "Kincardine Municipal Airport", + "latitude_deg": "44.201401", + "longitude_deg": "-81.606697", + "elevation_ft": "772", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kincardine", + "scheduled_service": "no", + "gps_code": "CYKM", + "iata_code": "YKD", + "local_code": "CYKM", + "home_link": "http://www.kincardineairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kincardine_Airport", + "keywords": "NS7, CNS7" + }, + { + "id": "1791", + "ident": "CYKO", + "type": "medium_airport", + "name": "Akulivik Airport", + "latitude_deg": "60.818599700927734", + "longitude_deg": "-78.14859771728516", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Akulivik", + "scheduled_service": "yes", + "gps_code": "CYKO", + "iata_code": "AKV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Akulivik_Airport", + "keywords": "YKO" + }, + { + "id": "1792", + "ident": "CYKQ", + "type": "medium_airport", + "name": "Waskaganish Airport", + "latitude_deg": "51.47330093383789", + "longitude_deg": "-78.75830078125", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Waskaganish", + "scheduled_service": "yes", + "gps_code": "CYKQ", + "iata_code": "YKQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Waskaganish_Airport" + }, + { + "id": "430648", + "ident": "CYKT", + "type": "small_airport", + "name": "Tranquille Valley Airfield", + "latitude_deg": "50.859547", + "longitude_deg": "-120.671132", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-U-A", + "municipality": "Tranquille", + "scheduled_service": "no", + "gps_code": "CYKT" + }, + { + "id": "1793", + "ident": "CYKX", + "type": "medium_airport", + "name": "Kirkland Lake Airport", + "latitude_deg": "48.21030044555664", + "longitude_deg": "-79.98139953613281", + "elevation_ft": "1157", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kirkland Lake", + "scheduled_service": "no", + "gps_code": "CYKX", + "iata_code": "YKX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kirkland_Lake_Airport" + }, + { + "id": "1794", + "ident": "CYKY", + "type": "medium_airport", + "name": "Kindersley Airport", + "latitude_deg": "51.5175018311", + "longitude_deg": "-109.180999756", + "elevation_ft": "2277", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Kindersley", + "scheduled_service": "no", + "gps_code": "CYKY", + "iata_code": "YKY", + "local_code": "YKY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kindersley_Airport", + "keywords": "YKY" + }, + { + "id": "1795", + "ident": "CYKZ", + "type": "medium_airport", + "name": "Buttonville Municipal Airport", + "latitude_deg": "43.86220169067383", + "longitude_deg": "-79.37000274658203", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Toronto", + "scheduled_service": "no", + "gps_code": "CYKZ", + "iata_code": "YKZ", + "home_link": "http://www.torontoairways.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toronto/Buttonville_Municipal_Airport", + "keywords": "YTO" + }, + { + "id": "1796", + "ident": "CYLA", + "type": "medium_airport", + "name": "Aupaluk Airport", + "latitude_deg": "59.29669952392578", + "longitude_deg": "-69.59970092773438", + "elevation_ft": "119", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Aupaluk", + "scheduled_service": "yes", + "gps_code": "CYLA", + "iata_code": "YPJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aupaluk_Airport", + "keywords": "YLA" + }, + { + "id": "1797", + "ident": "CYLB", + "type": "small_airport", + "name": "Lac La Biche Airport", + "latitude_deg": "54.7703018188", + "longitude_deg": "-112.031997681", + "elevation_ft": "1884", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Lac La Biche", + "scheduled_service": "no", + "gps_code": "CYLB", + "iata_code": "YLB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lac_La_Biche_Airport", + "keywords": "YLB" + }, + { + "id": "1798", + "ident": "CYLC", + "type": "medium_airport", + "name": "Kimmirut Airport", + "latitude_deg": "62.848253", + "longitude_deg": "-69.877853", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Kimmirut", + "scheduled_service": "yes", + "gps_code": "CYLC", + "iata_code": "YLC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kimmirut_Airport", + "keywords": "Lake Harbour" + }, + { + "id": "1799", + "ident": "CYLD", + "type": "medium_airport", + "name": "Chapleau Airport", + "latitude_deg": "47.81999969482422", + "longitude_deg": "-83.3467025756836", + "elevation_ft": "1470", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Chapleau", + "scheduled_service": "no", + "gps_code": "CYLD", + "iata_code": "YLD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chapleau_Airport" + }, + { + "id": "1800", + "ident": "CYLH", + "type": "medium_airport", + "name": "Lansdowne House Airport", + "latitude_deg": "52.19559860229492", + "longitude_deg": "-87.93419647216797", + "elevation_ft": "834", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Lansdowne House", + "scheduled_service": "yes", + "gps_code": "CYLH", + "iata_code": "YLH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lansdowne_House_Airport" + }, + { + "id": "639", + "ident": "CYLI", + "type": "small_airport", + "name": "Lillooet Airport", + "latitude_deg": "50.674702", + "longitude_deg": "-121.893997", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Lillooet", + "scheduled_service": "no", + "gps_code": "CYLI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lillooet_Airport", + "keywords": "AR3, CAR3" + }, + { + "id": "1801", + "ident": "CYLJ", + "type": "medium_airport", + "name": "Meadow Lake Airport", + "latitude_deg": "54.125301361083984", + "longitude_deg": "-108.52300262451172", + "elevation_ft": "1576", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Meadow Lake", + "scheduled_service": "no", + "gps_code": "CYLJ", + "iata_code": "YLJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Meadow_Lake_Airport" + }, + { + "id": "1802", + "ident": "CYLK", + "type": "medium_airport", + "name": "Lutselk'e Airport", + "latitude_deg": "62.418303", + "longitude_deg": "-110.681998", + "elevation_ft": "596", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Lutselk'e", + "scheduled_service": "yes", + "gps_code": "CYLK", + "iata_code": "YSG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lutselk'e_Airport", + "keywords": "YLK, EL3, Snowdrift Airport" + }, + { + "id": "1803", + "ident": "CYLL", + "type": "medium_airport", + "name": "Lloydminster Airport", + "latitude_deg": "53.309200286865234", + "longitude_deg": "-110.072998046875", + "elevation_ft": "2193", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Lloydminster", + "scheduled_service": "yes", + "gps_code": "CYLL", + "iata_code": "YLL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lloydminster_Airport" + }, + { + "id": "1804", + "ident": "CYLQ", + "type": "small_airport", + "name": "La Tuque Airport", + "latitude_deg": "47.4096984863", + "longitude_deg": "-72.7889022827", + "elevation_ft": "548", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "La Tuque", + "scheduled_service": "no", + "gps_code": "CYLQ", + "iata_code": "YLQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Tuque_Airport", + "keywords": "YLQ" + }, + { + "id": "1805", + "ident": "CYLR", + "type": "medium_airport", + "name": "Leaf Rapids Airport", + "latitude_deg": "56.513301849365234", + "longitude_deg": "-99.98529815673828", + "elevation_ft": "959", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Leaf Rapids", + "scheduled_service": "no", + "gps_code": "CYLR", + "iata_code": "YLR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leaf_Rapids_Airport" + }, + { + "id": "1293", + "ident": "CYLS", + "type": "small_airport", + "name": "Barrie-Lake Simcoe Regional Airport", + "latitude_deg": "44.485989", + "longitude_deg": "-79.555687", + "elevation_ft": "972", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Barrie", + "scheduled_service": "no", + "gps_code": "CYLS", + "iata_code": "YLK", + "local_code": "CYLS", + "home_link": "http://www.lakesimcoeairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barrie-Orillia_(Lake_Simcoe_Regional)_Airport", + "keywords": "NB9, CNB9, Oro Station" + }, + { + "id": "1806", + "ident": "CYLT", + "type": "medium_airport", + "name": "Alert Airport", + "latitude_deg": "82.517799", + "longitude_deg": "-62.280602", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Alert", + "scheduled_service": "no", + "gps_code": "CYLT", + "iata_code": "YLT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alert_Airport", + "keywords": "YLT" + }, + { + "id": "1807", + "ident": "CYLU", + "type": "medium_airport", + "name": "Kangiqsualujjuaq (Georges River) Airport", + "latitude_deg": "58.711399", + "longitude_deg": "-65.992798", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Kangiqsualujjuaq", + "scheduled_service": "yes", + "gps_code": "CYLU", + "iata_code": "XGR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kangiqsualujjuaq_(Georges_River)_Airport", + "keywords": "YLU" + }, + { + "id": "1808", + "ident": "CYLW", + "type": "medium_airport", + "name": "Kelowna International Airport", + "latitude_deg": "49.9561", + "longitude_deg": "-119.377998", + "elevation_ft": "1421", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kelowna", + "scheduled_service": "yes", + "gps_code": "CYLW", + "iata_code": "YLW", + "home_link": "http://www.kelowna.ca/CM/Page68.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kelowna_International_Airport", + "keywords": "Kelowna, Okanagan" + }, + { + "id": "17057", + "ident": "CYM", + "type": "seaplane_base", + "name": "Chatham Seaplane Base", + "latitude_deg": "57.5149", + "longitude_deg": "-134.945999", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chatham", + "scheduled_service": "no", + "gps_code": "05AA", + "iata_code": "CYM", + "local_code": "05AA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chatham_Seaplane_Base", + "keywords": "CYM" + }, + { + "id": "1809", + "ident": "CYMA", + "type": "medium_airport", + "name": "Mayo Airport", + "latitude_deg": "63.61640167236328", + "longitude_deg": "-135.8679962158203", + "elevation_ft": "1653", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Mayo", + "scheduled_service": "no", + "gps_code": "CYMA", + "iata_code": "YMA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mayo_Airport" + }, + { + "id": "1810", + "ident": "CYME", + "type": "medium_airport", + "name": "Matane Airport", + "latitude_deg": "48.85689926147461", + "longitude_deg": "-67.45330047607422", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Matane", + "scheduled_service": "no", + "gps_code": "CYME", + "iata_code": "YME", + "wikipedia_link": "https://en.wikipedia.org/wiki/Matane_Airport" + }, + { + "id": "1811", + "ident": "CYMG", + "type": "medium_airport", + "name": "Manitouwadge Airport", + "latitude_deg": "49.083900451660156", + "longitude_deg": "-85.86060333251953", + "elevation_ft": "1198", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Manitouwadge", + "scheduled_service": "no", + "gps_code": "CYMG", + "iata_code": "YMG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manitouwadge_Airport" + }, + { + "id": "1812", + "ident": "CYMH", + "type": "medium_airport", + "name": "Mary's Harbour Airport", + "latitude_deg": "52.302837", + "longitude_deg": "-55.847626", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Mary's Harbour", + "scheduled_service": "yes", + "gps_code": "CYMH", + "iata_code": "YMH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mary's_Harbour_Airport" + }, + { + "id": "1813", + "ident": "CYMJ", + "type": "medium_airport", + "name": "Moose Jaw Air Vice Marshal C. M. McEwen Airport", + "latitude_deg": "50.330299377441406", + "longitude_deg": "-105.55899810791016", + "elevation_ft": "1892", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Moose Jaw", + "scheduled_service": "no", + "gps_code": "CYMJ", + "iata_code": "YMJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moose_Jaw/Air_Vice_Marshal_C.M._McEwen_Airport", + "keywords": "CFB Moose Jaw" + }, + { + "id": "1814", + "ident": "CYML", + "type": "medium_airport", + "name": "Charlevoix Airport", + "latitude_deg": "47.59749984741211", + "longitude_deg": "-70.2238998413086", + "elevation_ft": "977", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Charlevoix", + "scheduled_service": "no", + "gps_code": "CYML", + "iata_code": "YML", + "wikipedia_link": "https://en.wikipedia.org/wiki/Charlevoix_Airport" + }, + { + "id": "1815", + "ident": "CYMM", + "type": "medium_airport", + "name": "Fort McMurray Airport", + "latitude_deg": "56.653301239", + "longitude_deg": "-111.222000122", + "elevation_ft": "1211", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Fort McMurray", + "scheduled_service": "yes", + "gps_code": "CYMM", + "iata_code": "YMM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_McMurray_Airport" + }, + { + "id": "1816", + "ident": "CYMO", + "type": "medium_airport", + "name": "Moosonee Airport", + "latitude_deg": "51.291099548339844", + "longitude_deg": "-80.60780334472656", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Moosonee", + "scheduled_service": "yes", + "gps_code": "CYMO", + "iata_code": "YMO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moosonee_Airport" + }, + { + "id": "1817", + "ident": "CYMT", + "type": "medium_airport", + "name": "Chapais Airport", + "latitude_deg": "49.77190017700195", + "longitude_deg": "-74.5280990600586", + "elevation_ft": "1270", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Chibougamau", + "scheduled_service": "yes", + "gps_code": "CYMT", + "iata_code": "YMT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chibougamau/Chapais_Airport" + }, + { + "id": "1818", + "ident": "CYMU", + "type": "medium_airport", + "name": "Umiujaq Airport", + "latitude_deg": "56.53609848022461", + "longitude_deg": "-76.51830291748047", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Umiujaq", + "scheduled_service": "yes", + "gps_code": "CYMU", + "iata_code": "YUD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Umiujaq_Airport", + "keywords": "YMU" + }, + { + "id": "1819", + "ident": "CYMW", + "type": "small_airport", + "name": "Maniwaki Airport", + "latitude_deg": "46.2728", + "longitude_deg": "-75.990601", + "elevation_ft": "656", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Maniwaki", + "scheduled_service": "no", + "gps_code": "CYMW", + "iata_code": "YMW", + "local_code": "YMW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maniwaki_Airport", + "keywords": "YMW" + }, + { + "id": "1820", + "ident": "CYMX", + "type": "medium_airport", + "name": "Montreal International (Mirabel) Airport", + "latitude_deg": "45.679501", + "longitude_deg": "-74.038696", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montréal", + "scheduled_service": "no", + "gps_code": "CYMX", + "iata_code": "YMX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Montr%C3%A9al-Mirabel_International_Airport", + "keywords": "YMQ" + }, + { + "id": "1821", + "ident": "CYMY", + "type": "small_airport", + "name": "Ear Falls Airport", + "latitude_deg": "50.71780014038086", + "longitude_deg": "-93.38359832763672", + "elevation_ft": "1269", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ear Falls", + "scheduled_service": "no", + "gps_code": "CYMY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ear_Falls_Airport", + "keywords": "YMY" + }, + { + "id": "320826", + "ident": "CYN6", + "type": "seaplane_base", + "name": "Gravenhurst/Muskoka Bay Seaplane Base", + "latitude_deg": "44.9438", + "longitude_deg": "-79.4045", + "elevation_ft": "742", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Gravenhurst", + "scheduled_service": "no", + "gps_code": "CYN6", + "local_code": "CYN6" + }, + { + "id": "1822", + "ident": "CYNA", + "type": "medium_airport", + "name": "Natashquan Airport", + "latitude_deg": "50.189998626708984", + "longitude_deg": "-61.78919982910156", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Natashquan", + "scheduled_service": "yes", + "gps_code": "CYNA", + "iata_code": "YNA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Natashquan_Airport" + }, + { + "id": "1823", + "ident": "CYNC", + "type": "medium_airport", + "name": "Wemindji Airport", + "latitude_deg": "53.01060104370117", + "longitude_deg": "-78.83110046386719", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Wemindji", + "scheduled_service": "yes", + "gps_code": "CYNC", + "iata_code": "YNC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wemindji_Airport" + }, + { + "id": "1824", + "ident": "CYND", + "type": "medium_airport", + "name": "Ottawa / Gatineau Airport", + "latitude_deg": "45.521702", + "longitude_deg": "-75.563599", + "elevation_ft": "211", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Gatineau", + "scheduled_service": "yes", + "gps_code": "CYND", + "iata_code": "YND", + "local_code": "CYND", + "home_link": "http://www.ego-airport.ca/english/propos_ego/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ottawa-Gatineau_Airport", + "keywords": "YND" + }, + { + "id": "1825", + "ident": "CYNE", + "type": "medium_airport", + "name": "Norway House Airport", + "latitude_deg": "53.95830154418945", + "longitude_deg": "-97.84420013427734", + "elevation_ft": "734", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Norway House", + "scheduled_service": "yes", + "gps_code": "CYNE", + "iata_code": "YNE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Norway_House_Airport" + }, + { + "id": "1826", + "ident": "CYNH", + "type": "small_airport", + "name": "Hudsons Hope Airport", + "latitude_deg": "56.0355987549", + "longitude_deg": "-121.975997925", + "elevation_ft": "2220", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Hudson's Hope", + "scheduled_service": "no", + "gps_code": "CYNH", + "iata_code": "YNH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hudson's_Hope_Airport", + "keywords": "YNH" + }, + { + "id": "1827", + "ident": "CYNJ", + "type": "small_airport", + "name": "Langley Airport", + "latitude_deg": "49.1008", + "longitude_deg": "-122.630997", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Langley Twp", + "scheduled_service": "no", + "gps_code": "CYNJ", + "iata_code": "YLY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Langley_Regional_Airport", + "keywords": "YNJ" + }, + { + "id": "1828", + "ident": "CYNL", + "type": "medium_airport", + "name": "Points North Landing Airport", + "latitude_deg": "58.27669906616211", + "longitude_deg": "-104.08200073242188", + "elevation_ft": "1605", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Points North Landing", + "scheduled_service": "yes", + "gps_code": "CYNL", + "iata_code": "YNL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Points_North_Landing_Airport" + }, + { + "id": "1829", + "ident": "CYNM", + "type": "medium_airport", + "name": "Matagami Airport", + "latitude_deg": "49.76169967651367", + "longitude_deg": "-77.80280303955078", + "elevation_ft": "918", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Matagami", + "scheduled_service": "no", + "gps_code": "CYNM", + "iata_code": "YNM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Matagami_Airport" + }, + { + "id": "1830", + "ident": "CYNN", + "type": "medium_airport", + "name": "Nejanilini Lake Airport", + "latitude_deg": "59.4874992371", + "longitude_deg": "-97.78029632570001", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Nejanilini Lake", + "scheduled_service": "no", + "gps_code": "CYNN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nejanilini_Lake_Airport" + }, + { + "id": "1831", + "ident": "CYNR", + "type": "small_airport", + "name": "Fort Mackay / Horizon Airport", + "latitude_deg": "57.3816986084", + "longitude_deg": "-111.700996399", + "elevation_ft": "916", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Fort Mackay", + "scheduled_service": "no", + "gps_code": "CYNR", + "iata_code": "HZP", + "local_code": "CYNR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_MacKay/Horizon_Airport", + "keywords": "YNR" + }, + { + "id": "1832", + "ident": "CYOA", + "type": "medium_airport", + "name": "Ekati Airport", + "latitude_deg": "64.6988983154", + "longitude_deg": "-110.614997864", + "elevation_ft": "1536", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Ekati", + "scheduled_service": "no", + "gps_code": "CYOA", + "iata_code": "YOA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ekati_Airport", + "keywords": "YOA" + }, + { + "id": "1833", + "ident": "CYOC", + "type": "medium_airport", + "name": "Old Crow Airport", + "latitude_deg": "67.57060241699219", + "longitude_deg": "-139.83900451660156", + "elevation_ft": "824", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Old Crow", + "scheduled_service": "yes", + "gps_code": "CYOC", + "iata_code": "YOC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Old_Crow_Airport" + }, + { + "id": "1834", + "ident": "CYOD", + "type": "medium_airport", + "name": "CFB Cold Lake", + "latitude_deg": "54.404998779296875", + "longitude_deg": "-110.27899932861328", + "elevation_ft": "1775", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Cold Lake", + "scheduled_service": "no", + "gps_code": "CYOD", + "iata_code": "YOD", + "wikipedia_link": "https://en.wikipedia.org/wiki/CFB_Cold_Lake" + }, + { + "id": "1835", + "ident": "CYOH", + "type": "medium_airport", + "name": "Oxford House Airport", + "latitude_deg": "54.93330001831055", + "longitude_deg": "-95.27890014648438", + "elevation_ft": "663", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Oxford House", + "scheduled_service": "yes", + "gps_code": "CYOH", + "iata_code": "YOH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oxford_House_Airport" + }, + { + "id": "1836", + "ident": "CYOJ", + "type": "medium_airport", + "name": "High Level Airport", + "latitude_deg": "58.62139892578125", + "longitude_deg": "-117.16500091552734", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "High Level", + "scheduled_service": "yes", + "gps_code": "CYOJ", + "iata_code": "YOJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/High_Level_Airport" + }, + { + "id": "1837", + "ident": "CYOO", + "type": "medium_airport", + "name": "Oshawa Executive Airport", + "latitude_deg": "43.922798", + "longitude_deg": "-78.894997", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Oshawa", + "scheduled_service": "no", + "gps_code": "CYOO", + "iata_code": "YOO", + "local_code": "CYOO", + "home_link": "http://www.oshawa-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oshawa_Airport" + }, + { + "id": "1838", + "ident": "CYOP", + "type": "medium_airport", + "name": "Rainbow Lake Airport", + "latitude_deg": "58.49140167236328", + "longitude_deg": "-119.40799713134766", + "elevation_ft": "1759", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Rainbow Lake", + "scheduled_service": "yes", + "gps_code": "CYOP", + "iata_code": "YOP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rainbow_Lake_Airport" + }, + { + "id": "1839", + "ident": "CYOS", + "type": "medium_airport", + "name": "Owen Sound / Billy Bishop Regional Airport", + "latitude_deg": "44.5903015137", + "longitude_deg": "-80.8375015259", + "elevation_ft": "1007", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Owen Sound", + "scheduled_service": "no", + "gps_code": "CYOS", + "iata_code": "YOS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Owen_Sound/Billy_Bishop_Regional_Airport", + "keywords": "YOS" + }, + { + "id": "1840", + "ident": "CYOW", + "type": "large_airport", + "name": "Ottawa Macdonald-Cartier International Airport", + "latitude_deg": "45.3224983215332", + "longitude_deg": "-75.66919708251953", + "elevation_ft": "374", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ottawa", + "scheduled_service": "yes", + "gps_code": "CYOW", + "iata_code": "YOW", + "local_code": "YOW", + "home_link": "http://www.ottawa-airport.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ottawa_Macdonald-Cartier_International_Airport", + "keywords": "Uplands, UUP, CUUP" + }, + { + "id": "1841", + "ident": "CYOY", + "type": "heliport", + "name": "C J.H.L.(Joe) Lecomte) Heliport", + "latitude_deg": "46.902885", + "longitude_deg": "-71.503658", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Valcartier", + "scheduled_service": "no", + "gps_code": "CYOY", + "wikipedia_link": "https://en.wikipedia.org/wiki/CFB_Valcartier" + }, + { + "id": "1630", + "ident": "CYP2", + "type": "heliport", + "name": "Halifax (Windsor Park) Heliport", + "latitude_deg": "44.6574220689", + "longitude_deg": "-63.6117947102", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Halifax", + "scheduled_service": "no", + "gps_code": "CYP2", + "local_code": "CYP2", + "keywords": "YP2" + }, + { + "id": "1842", + "ident": "CYPA", + "type": "medium_airport", + "name": "Prince Albert Glass Field", + "latitude_deg": "53.214199066199996", + "longitude_deg": "-105.672996521", + "elevation_ft": "1405", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Prince Albert", + "scheduled_service": "yes", + "gps_code": "CYPA", + "iata_code": "YPA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Prince_Albert_(Glass_Field)_Airport" + }, + { + "id": "1843", + "ident": "CYPC", + "type": "medium_airport", + "name": "Paulatuk (Nora Aliqatchialuk Ruben) Airport", + "latitude_deg": "69.3608381154", + "longitude_deg": "-124.075469971", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Paulatuk", + "scheduled_service": "yes", + "gps_code": "CYPC", + "iata_code": "YPC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paulatuk_Airport" + }, + { + "id": "1844", + "ident": "CYPD", + "type": "medium_airport", + "name": "Port Hawkesbury Airport", + "latitude_deg": "45.6567001343", + "longitude_deg": "-61.3680992126", + "elevation_ft": "377", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Port Hawkesbury", + "scheduled_service": "no", + "gps_code": "CYPD", + "iata_code": "YPS", + "home_link": "http://www.porthawkesburyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Hawkesbury_Airport", + "keywords": "YPD" + }, + { + "id": "1845", + "ident": "CYPE", + "type": "medium_airport", + "name": "Peace River Airport", + "latitude_deg": "56.226898", + "longitude_deg": "-117.446999", + "elevation_ft": "1873", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Peace River", + "scheduled_service": "yes", + "gps_code": "CYPE", + "iata_code": "YPE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Peace_River_Airport" + }, + { + "id": "1846", + "ident": "CYPG", + "type": "medium_airport", + "name": "Portage-la-Prairie / Southport Airport", + "latitude_deg": "49.903099", + "longitude_deg": "-98.273817", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Portage la Prairie", + "scheduled_service": "no", + "gps_code": "CYPG", + "iata_code": "YPG", + "home_link": "http://southport.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Portage_La_Prairie/Southport_Airport" + }, + { + "id": "1847", + "ident": "CYPH", + "type": "medium_airport", + "name": "Inukjuak Airport", + "latitude_deg": "58.471900939941406", + "longitude_deg": "-78.07689666748047", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Inukjuak", + "scheduled_service": "yes", + "gps_code": "CYPH", + "iata_code": "YPH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Inukjuak_Airport" + }, + { + "id": "1848", + "ident": "CYPK", + "type": "small_airport", + "name": "Pitt Meadows Airport", + "latitude_deg": "49.21609878540039", + "longitude_deg": "-122.70999908447266", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Pitt Meadows", + "scheduled_service": "no", + "gps_code": "CYPK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pitt_Meadows_Airport", + "keywords": "YPK" + }, + { + "id": "1849", + "ident": "CYPL", + "type": "medium_airport", + "name": "Pickle Lake Airport", + "latitude_deg": "51.4463996887207", + "longitude_deg": "-90.21420288085938", + "elevation_ft": "1267", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Pickle Lake", + "scheduled_service": "yes", + "gps_code": "CYPL", + "iata_code": "YPL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pickle_Lake_Airport" + }, + { + "id": "1850", + "ident": "CYPM", + "type": "medium_airport", + "name": "Pikangikum Airport", + "latitude_deg": "51.819698333740234", + "longitude_deg": "-93.97329711914062", + "elevation_ft": "1114", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Pikangikum", + "scheduled_service": "yes", + "gps_code": "CYPM", + "iata_code": "YPM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pikangikum_Airport" + }, + { + "id": "1851", + "ident": "CYPN", + "type": "medium_airport", + "name": "Port Menier Airport", + "latitude_deg": "49.83639907836914", + "longitude_deg": "-64.2885971069336", + "elevation_ft": "167", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Port-Menier", + "scheduled_service": "no", + "gps_code": "CYPN", + "iata_code": "YPN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port-Menier_Airport" + }, + { + "id": "1852", + "ident": "CYPO", + "type": "medium_airport", + "name": "Peawanuck Airport", + "latitude_deg": "54.98809814453125", + "longitude_deg": "-85.44329833984375", + "elevation_ft": "173", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Peawanuck", + "scheduled_service": "yes", + "gps_code": "CYPO", + "iata_code": "YPO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Peawanuck_Airport" + }, + { + "id": "1853", + "ident": "CYPP", + "type": "small_airport", + "name": "Parent Airport", + "latitude_deg": "47.931901", + "longitude_deg": "-74.608103", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Parent", + "scheduled_service": "no", + "gps_code": "CYPP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Parent_Airport", + "keywords": "SW4" + }, + { + "id": "1854", + "ident": "CYPQ", + "type": "medium_airport", + "name": "Peterborough Municipal Airport", + "latitude_deg": "44.23", + "longitude_deg": "-78.363297", + "elevation_ft": "628", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Peterborough", + "scheduled_service": "no", + "gps_code": "CYPQ", + "iata_code": "YPQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Peterborough_Airport" + }, + { + "id": "1855", + "ident": "CYPR", + "type": "medium_airport", + "name": "Prince Rupert Airport", + "latitude_deg": "54.286098480199996", + "longitude_deg": "-130.445007324", + "elevation_ft": "116", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Prince Rupert", + "scheduled_service": "yes", + "gps_code": "CYPR", + "iata_code": "YPR", + "home_link": "http://www.ypr.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Prince_Rupert_Airport" + }, + { + "id": "1856", + "ident": "CYPS", + "type": "small_airport", + "name": "Pemberton Regional Airport", + "latitude_deg": "50.302502", + "longitude_deg": "-122.737999", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Pemberton", + "scheduled_service": "no", + "gps_code": "CYPS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pemberton_Regional_Airport", + "keywords": "AR5" + }, + { + "id": "1857", + "ident": "CYPT", + "type": "small_airport", + "name": "Pelee Island Airport", + "latitude_deg": "41.780399322509766", + "longitude_deg": "-82.6780014038086", + "elevation_ft": "572", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Pelee Island", + "scheduled_service": "no", + "gps_code": "CYPT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pelee_Island_Airport", + "keywords": "YPT" + }, + { + "id": "1858", + "ident": "CYPU", + "type": "small_airport", + "name": "Puntzi Mountain Airport", + "latitude_deg": "52.11280059814453", + "longitude_deg": "-124.1449966430664", + "elevation_ft": "2985", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Puntzi Mountain", + "scheduled_service": "no", + "gps_code": "CYPU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Puntzi_Mountain_Airport", + "keywords": "YPU" + }, + { + "id": "1859", + "ident": "CYPW", + "type": "medium_airport", + "name": "Powell River Airport", + "latitude_deg": "49.83420181274414", + "longitude_deg": "-124.5", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Powell River", + "scheduled_service": "yes", + "gps_code": "CYPW", + "iata_code": "YPW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Powell_River_Airport" + }, + { + "id": "1860", + "ident": "CYPX", + "type": "medium_airport", + "name": "Puvirnituq Airport", + "latitude_deg": "60.05059814453125", + "longitude_deg": "-77.28690338134766", + "elevation_ft": "74", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Puvirnituq", + "scheduled_service": "no", + "gps_code": "CYPX", + "iata_code": "YPX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Puvirnituq_Airport" + }, + { + "id": "1861", + "ident": "CYPY", + "type": "medium_airport", + "name": "Fort Chipewyan Airport", + "latitude_deg": "58.7672004699707", + "longitude_deg": "-111.11699676513672", + "elevation_ft": "761", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Fort Chipewyan", + "scheduled_service": "yes", + "gps_code": "CYPY", + "iata_code": "YPY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Chipewyan_Airport" + }, + { + "id": "1862", + "ident": "CYPZ", + "type": "medium_airport", + "name": "Burns Lake Airport", + "latitude_deg": "54.3764", + "longitude_deg": "-125.950996", + "elevation_ft": "2343", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Burns Lake", + "scheduled_service": "yes", + "gps_code": "CYPZ", + "iata_code": "YPZ", + "local_code": "YPZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Burns_Lake_Airport", + "keywords": "YPZ" + }, + { + "id": "1863", + "ident": "CYQA", + "type": "medium_airport", + "name": "Muskoka Airport", + "latitude_deg": "44.974700927734375", + "longitude_deg": "-79.30329895019531", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Muskoka", + "scheduled_service": "no", + "gps_code": "CYQA", + "iata_code": "YQA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Muskoka_Airport" + }, + { + "id": "1864", + "ident": "CYQB", + "type": "large_airport", + "name": "Quebec Jean Lesage International Airport", + "latitude_deg": "46.7911", + "longitude_deg": "-71.393303", + "elevation_ft": "244", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Quebec", + "scheduled_service": "yes", + "gps_code": "CYQB", + "iata_code": "YQB", + "local_code": "YQB", + "home_link": "http://www.aeroportdequebec.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qu%C3%A9bec/Jean_Lesage_International_Airport", + "keywords": "Quebec City" + }, + { + "id": "1865", + "ident": "CYQD", + "type": "medium_airport", + "name": "The Pas Airport", + "latitude_deg": "53.97140121459961", + "longitude_deg": "-101.09100341796875", + "elevation_ft": "887", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "The Pas", + "scheduled_service": "yes", + "gps_code": "CYQD", + "iata_code": "YQD", + "wikipedia_link": "https://en.wikipedia.org/wiki/The_Pas_Airport" + }, + { + "id": "1866", + "ident": "CYQF", + "type": "medium_airport", + "name": "Red Deer Regional Airport", + "latitude_deg": "52.182201", + "longitude_deg": "-113.893997", + "elevation_ft": "2968", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Springbrook", + "scheduled_service": "no", + "gps_code": "CYQF", + "iata_code": "YQF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Red_Deer_Regional_Airport" + }, + { + "id": "1867", + "ident": "CYQG", + "type": "medium_airport", + "name": "Windsor Airport", + "latitude_deg": "42.27560043334961", + "longitude_deg": "-82.95559692382812", + "elevation_ft": "622", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Windsor", + "scheduled_service": "yes", + "gps_code": "CYQG", + "iata_code": "YQG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Windsor_Airport" + }, + { + "id": "1868", + "ident": "CYQH", + "type": "medium_airport", + "name": "Watson Lake Airport", + "latitude_deg": "60.11640167236328", + "longitude_deg": "-128.82200622558594", + "elevation_ft": "2255", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Watson Lake", + "scheduled_service": "no", + "gps_code": "CYQH", + "iata_code": "YQH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Watson_Lake_Airport" + }, + { + "id": "1869", + "ident": "CYQI", + "type": "medium_airport", + "name": "Yarmouth Airport", + "latitude_deg": "43.826900482177734", + "longitude_deg": "-66.08809661865234", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Yarmouth", + "scheduled_service": "no", + "gps_code": "CYQI", + "iata_code": "YQI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yarmouth_Airport" + }, + { + "id": "1870", + "ident": "CYQK", + "type": "medium_airport", + "name": "Kenora Airport", + "latitude_deg": "49.788299560546875", + "longitude_deg": "-94.36309814453125", + "elevation_ft": "1332", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kenora", + "scheduled_service": "yes", + "gps_code": "CYQK", + "iata_code": "YQK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kenora_Airport" + }, + { + "id": "1871", + "ident": "CYQL", + "type": "medium_airport", + "name": "Lethbridge County Airport", + "latitude_deg": "49.6302986145", + "longitude_deg": "-112.800003052", + "elevation_ft": "3048", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Lethbridge", + "scheduled_service": "yes", + "gps_code": "CYQL", + "iata_code": "YQL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lethbridge_County_Airport", + "keywords": "Kenyon Field" + }, + { + "id": "1872", + "ident": "CYQM", + "type": "medium_airport", + "name": "Greater Moncton Roméo LeBlanc International Airport", + "latitude_deg": "46.112202", + "longitude_deg": "-64.678596", + "elevation_ft": "232", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Moncton", + "scheduled_service": "yes", + "gps_code": "CYQM", + "iata_code": "YQM", + "home_link": "https://cyqm.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greater_Moncton_International_Airport", + "keywords": "CYQM, YQM, Moncton" + }, + { + "id": "1873", + "ident": "CYQN", + "type": "medium_airport", + "name": "Nakina Airport", + "latitude_deg": "50.18280029296875", + "longitude_deg": "-86.69640350341797", + "elevation_ft": "1057", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Nakina", + "scheduled_service": "yes", + "gps_code": "CYQN", + "iata_code": "YQN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nakina_Airport" + }, + { + "id": "1874", + "ident": "CYQQ", + "type": "medium_airport", + "name": "Comox Valley Airport / CFB Comox", + "latitude_deg": "49.7108", + "longitude_deg": "-124.887001", + "elevation_ft": "84", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Comox", + "scheduled_service": "yes", + "gps_code": "CYQQ", + "iata_code": "YQQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/CFB_Comox", + "keywords": "CFB Comox" + }, + { + "id": "1875", + "ident": "CYQR", + "type": "medium_airport", + "name": "Regina International Airport", + "latitude_deg": "50.43190002441406", + "longitude_deg": "-104.66600036621094", + "elevation_ft": "1894", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Regina", + "scheduled_service": "yes", + "gps_code": "CYQR", + "iata_code": "YQR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Regina_International_Airport", + "keywords": "YQR, Roland J. Groome International" + }, + { + "id": "1876", + "ident": "CYQS", + "type": "medium_airport", + "name": "St Thomas Municipal Airport", + "latitude_deg": "42.77000045776367", + "longitude_deg": "-81.11080169677734", + "elevation_ft": "778", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "St Thomas", + "scheduled_service": "no", + "gps_code": "CYQS", + "iata_code": "YQS", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Thomas_Airport" + }, + { + "id": "1877", + "ident": "CYQT", + "type": "medium_airport", + "name": "Thunder Bay Airport", + "latitude_deg": "48.37189865112305", + "longitude_deg": "-89.32389831542969", + "elevation_ft": "653", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Thunder Bay", + "scheduled_service": "yes", + "gps_code": "CYQT", + "iata_code": "YQT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thunder_Bay_International_Airport" + }, + { + "id": "1878", + "ident": "CYQU", + "type": "medium_airport", + "name": "Grande Prairie Airport", + "latitude_deg": "55.1796989441", + "longitude_deg": "-118.885002136", + "elevation_ft": "2195", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Grande Prairie", + "scheduled_service": "yes", + "gps_code": "CYQU", + "iata_code": "YQU", + "home_link": "http://www.grandeprairieairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grande_Prairie_Airport" + }, + { + "id": "1879", + "ident": "CYQV", + "type": "medium_airport", + "name": "Yorkton Municipal Airport", + "latitude_deg": "51.26470184326172", + "longitude_deg": "-102.46199798583984", + "elevation_ft": "1635", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Yorkton", + "scheduled_service": "no", + "gps_code": "CYQV", + "iata_code": "YQV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yorkton_Municipal_Airport" + }, + { + "id": "1880", + "ident": "CYQW", + "type": "medium_airport", + "name": "North Battleford Airport", + "latitude_deg": "52.769409", + "longitude_deg": "-108.243742", + "elevation_ft": "1799", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "North Battleford", + "scheduled_service": "no", + "gps_code": "CYQW", + "iata_code": "YQW", + "wikipedia_link": "https://en.wikipedia.org/wiki/North_Battleford_(Cameron_McIntosh)_Airport" + }, + { + "id": "1881", + "ident": "CYQX", + "type": "medium_airport", + "name": "Gander International Airport / CFB Gander", + "latitude_deg": "48.936258", + "longitude_deg": "-54.567719", + "elevation_ft": "496", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Gander", + "scheduled_service": "yes", + "gps_code": "CYQX", + "iata_code": "YQX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gander_International_Airport", + "keywords": "CFB Gander" + }, + { + "id": "1882", + "ident": "CYQY", + "type": "medium_airport", + "name": "Sydney / J.A. Douglas McCurdy Airport", + "latitude_deg": "46.1614", + "longitude_deg": "-60.047798", + "elevation_ft": "203", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Sydney", + "scheduled_service": "yes", + "gps_code": "CYQY", + "iata_code": "YQY", + "home_link": "http://www.sydneyairport.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sydney/J.A._Douglas_McCurdy_Airport" + }, + { + "id": "1883", + "ident": "CYQZ", + "type": "medium_airport", + "name": "Quesnel Airport", + "latitude_deg": "53.026100158691406", + "longitude_deg": "-122.51000213623047", + "elevation_ft": "1789", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Quesnel", + "scheduled_service": "yes", + "gps_code": "CYQZ", + "iata_code": "YQZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quesnel_Airport" + }, + { + "id": "1884", + "ident": "CYRA", + "type": "medium_airport", + "name": "Rae Lakes Airport", + "latitude_deg": "64.11609649658203", + "longitude_deg": "-117.30999755859375", + "elevation_ft": "723", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Gamètì", + "scheduled_service": "yes", + "gps_code": "CYRA", + "iata_code": "YRA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gam%C3%A8t%C3%AC/Rae_Lakes_Airport" + }, + { + "id": "1885", + "ident": "CYRB", + "type": "medium_airport", + "name": "Resolute Bay Airport", + "latitude_deg": "74.7169036865", + "longitude_deg": "-94.9693984985", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Resolute Bay", + "scheduled_service": "yes", + "gps_code": "CYRB", + "iata_code": "YRB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Resolute_Bay_Airport" + }, + { + "id": "1886", + "ident": "CYRC", + "type": "small_airport", + "name": "Chicoutimi St Honoré Airport", + "latitude_deg": "48.52080154418945", + "longitude_deg": "-71.05059814453125", + "elevation_ft": "543", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Chicoutimi", + "scheduled_service": "no", + "gps_code": "CYRC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chicoutimi/St-Honore_Airport", + "keywords": "YRC" + }, + { + "id": "1887", + "ident": "CYRI", + "type": "medium_airport", + "name": "Rivière-du-Loup Airport", + "latitude_deg": "47.764400482177734", + "longitude_deg": "-69.58470153808594", + "elevation_ft": "427", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Rivière-du-Loup", + "scheduled_service": "no", + "gps_code": "CYRI", + "iata_code": "YRI", + "home_link": "http://www.ville.riviere-du-loup.qc.ca/anglais/aeroport.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rivi%C3%A8re-du-Loup_Airport" + }, + { + "id": "1888", + "ident": "CYRJ", + "type": "medium_airport", + "name": "Roberval Airport", + "latitude_deg": "48.52000045776367", + "longitude_deg": "-72.2656021118164", + "elevation_ft": "586", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Roberval", + "scheduled_service": "yes", + "gps_code": "CYRJ", + "iata_code": "YRJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roberval_Airport" + }, + { + "id": "1889", + "ident": "CYRL", + "type": "medium_airport", + "name": "Red Lake Airport", + "latitude_deg": "51.066898345947266", + "longitude_deg": "-93.79309844970703", + "elevation_ft": "1265", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Red Lake", + "scheduled_service": "yes", + "gps_code": "CYRL", + "iata_code": "YRL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Red_Lake_Airport" + }, + { + "id": "1890", + "ident": "CYRM", + "type": "small_airport", + "name": "Rocky Mountain House Airport", + "latitude_deg": "52.4296989441", + "longitude_deg": "-114.903999329", + "elevation_ft": "3244", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Rocky Mountain House", + "scheduled_service": "no", + "gps_code": "CYRM", + "iata_code": "YRM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rocky_Mountain_House_Airport", + "keywords": "YRM" + }, + { + "id": "1891", + "ident": "CYRO", + "type": "medium_airport", + "name": "Ottawa / Rockcliffe Airport", + "latitude_deg": "45.4603004456", + "longitude_deg": "-75.64610290530001", + "elevation_ft": "188", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ottawa", + "scheduled_service": "no", + "gps_code": "CYRO", + "iata_code": "YRO", + "local_code": "CYRO", + "home_link": "http://www.rfc.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ottawa/Rockcliffe_Airport", + "keywords": "YRO" + }, + { + "id": "1892", + "ident": "CYRP", + "type": "medium_airport", + "name": "Ottawa / Carp Airport", + "latitude_deg": "45.3191986084", + "longitude_deg": "-76.0222015381", + "elevation_ft": "382", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ottawa", + "scheduled_service": "no", + "gps_code": "CYRP", + "local_code": "YRP", + "home_link": "http://www.cyrp.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ottawa/Carp_Airport", + "keywords": "YRP" + }, + { + "id": "1893", + "ident": "CYRQ", + "type": "medium_airport", + "name": "Trois-Rivières Airport", + "latitude_deg": "46.35279846191406", + "longitude_deg": "-72.67939758300781", + "elevation_ft": "199", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Trois-Rivières", + "scheduled_service": "no", + "gps_code": "CYRQ", + "iata_code": "YRQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trois-Rivi%C3%A8res_Airport" + }, + { + "id": "1894", + "ident": "CYRS", + "type": "medium_airport", + "name": "Red Sucker Lake Airport", + "latitude_deg": "54.167198181152344", + "longitude_deg": "-93.55719757080078", + "elevation_ft": "729", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Red Sucker Lake", + "scheduled_service": "no", + "gps_code": "CYRS", + "iata_code": "YRS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Red_Sucker_Lake_Airport" + }, + { + "id": "1895", + "ident": "CYRT", + "type": "medium_airport", + "name": "Rankin Inlet Airport", + "latitude_deg": "62.8114013672", + "longitude_deg": "-92.1157989502", + "elevation_ft": "94", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Rankin Inlet", + "scheduled_service": "yes", + "gps_code": "CYRT", + "iata_code": "YRT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rankin_Inlet_Airport" + }, + { + "id": "1896", + "ident": "CYRV", + "type": "medium_airport", + "name": "Revelstoke Airport", + "latitude_deg": "50.962245", + "longitude_deg": "-118.184258", + "elevation_ft": "1459", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Revelstoke", + "scheduled_service": "no", + "gps_code": "CYRV", + "iata_code": "YRV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Revelstoke_Airport", + "keywords": "YRV" + }, + { + "id": "320574", + "ident": "CYS7", + "type": "heliport", + "name": "Wallaceburg/Chatham-Kent Health Alliance Heliport", + "latitude_deg": "42.5992", + "longitude_deg": "-82.3668", + "elevation_ft": "584", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Wallaceburg", + "scheduled_service": "no", + "gps_code": "CSY7", + "local_code": "CSY7", + "keywords": "Sydenham District Hospital" + }, + { + "id": "1323", + "ident": "CYSA", + "type": "small_airport", + "name": "Stratford Municipal Airport", + "latitude_deg": "43.415599823", + "longitude_deg": "-80.93440246579999", + "elevation_ft": "1215", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Stratford", + "scheduled_service": "no", + "gps_code": "CYSA", + "local_code": "CYSA", + "home_link": "http://www.city.stratford.on.ca/site_ourcitylife/know_your_city_airport.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stratford_Municipal_Airport", + "keywords": "NM4, CNM4" + }, + { + "id": "1897", + "ident": "CYSB", + "type": "medium_airport", + "name": "Sudbury Airport", + "latitude_deg": "46.625", + "longitude_deg": "-80.79889678955078", + "elevation_ft": "1141", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Sudbury", + "scheduled_service": "yes", + "gps_code": "CYSB", + "iata_code": "YSB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sudbury_Airport" + }, + { + "id": "1898", + "ident": "CYSC", + "type": "medium_airport", + "name": "Sherbrooke Airport", + "latitude_deg": "45.438599", + "longitude_deg": "-71.691399", + "elevation_ft": "792", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Sherbrooke", + "scheduled_service": "no", + "gps_code": "CYSC", + "iata_code": "YSC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sherbrooke_Airport" + }, + { + "id": "1899", + "ident": "CYSD", + "type": "heliport", + "name": "Suffield Heliport", + "latitude_deg": "50.266700744628906", + "longitude_deg": "-111.18299865722656", + "elevation_ft": "2525", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Suffield", + "scheduled_service": "no", + "gps_code": "CYSD", + "iata_code": "YSD" + }, + { + "id": "1900", + "ident": "CYSE", + "type": "small_airport", + "name": "Squamish Airport", + "latitude_deg": "49.7817001343", + "longitude_deg": "-123.162002563", + "elevation_ft": "171", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Squamish", + "scheduled_service": "no", + "gps_code": "CYSE", + "iata_code": "YSE", + "local_code": "YSE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Squamish_Airport", + "keywords": "YSE" + }, + { + "id": "1901", + "ident": "CYSF", + "type": "medium_airport", + "name": "Stony Rapids Airport", + "latitude_deg": "59.250301361083984", + "longitude_deg": "-105.84100341796875", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Stony Rapids", + "scheduled_service": "yes", + "gps_code": "CYSF", + "iata_code": "YSF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stony_Rapids_Airport" + }, + { + "id": "1902", + "ident": "CYSG", + "type": "medium_airport", + "name": "Saint-Georges Airport", + "latitude_deg": "46.096401", + "longitude_deg": "-70.714699", + "elevation_ft": "893", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Saint-Georges", + "scheduled_service": "no", + "gps_code": "CYSG", + "wikipedia_link": "https://en.wikipedia.org/wiki/St-Georges_Airport", + "keywords": "YSG, SX3, St Georges" + }, + { + "id": "1903", + "ident": "CYSH", + "type": "medium_airport", + "name": "Smiths Falls-Montague (Russ Beach) Airport", + "latitude_deg": "44.945801", + "longitude_deg": "-75.940598", + "elevation_ft": "416", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Smiths Falls", + "scheduled_service": "no", + "gps_code": "CYSH", + "iata_code": "YSH", + "home_link": "http://www.smithsfallsflyingclub.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Smiths_Falls-Montague_Airport", + "keywords": "Smith Falls" + }, + { + "id": "1904", + "ident": "CYSJ", + "type": "medium_airport", + "name": "Saint John Airport", + "latitude_deg": "45.31610107421875", + "longitude_deg": "-65.89029693603516", + "elevation_ft": "357", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "Saint John", + "scheduled_service": "yes", + "gps_code": "CYSJ", + "iata_code": "YSJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saint_John_Airport" + }, + { + "id": "1905", + "ident": "CYSK", + "type": "medium_airport", + "name": "Sanikiluaq Airport", + "latitude_deg": "56.5377998352", + "longitude_deg": "-79.2466964722", + "elevation_ft": "104", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Sanikiluaq", + "scheduled_service": "yes", + "gps_code": "CYSK", + "iata_code": "YSK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sanikiluaq_Airport" + }, + { + "id": "1906", + "ident": "CYSL", + "type": "medium_airport", + "name": "St Leonard Airport", + "latitude_deg": "47.157501220703125", + "longitude_deg": "-67.83470153808594", + "elevation_ft": "793", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "St Leonard", + "scheduled_service": "no", + "gps_code": "CYSL", + "iata_code": "YSL", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Leonard_Airport" + }, + { + "id": "1907", + "ident": "CYSM", + "type": "medium_airport", + "name": "Fort Smith Airport", + "latitude_deg": "60.020302", + "longitude_deg": "-111.961998", + "elevation_ft": "671", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Fort Smith", + "scheduled_service": "yes", + "gps_code": "CYSM", + "iata_code": "YSM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Smith_Airport" + }, + { + "id": "1908", + "ident": "CYSN", + "type": "medium_airport", + "name": "Niagara District Airport", + "latitude_deg": "43.19169998168945", + "longitude_deg": "-79.17169952392578", + "elevation_ft": "321", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "St Catharines", + "scheduled_service": "no", + "gps_code": "CYSN", + "iata_code": "YCM", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Catharines/Niagara_District_Airport", + "keywords": "YSN" + }, + { + "id": "1909", + "ident": "CYSP", + "type": "medium_airport", + "name": "Marathon Airport", + "latitude_deg": "48.75529861450195", + "longitude_deg": "-86.34439849853516", + "elevation_ft": "1035", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Marathon", + "scheduled_service": "no", + "gps_code": "CYSP", + "iata_code": "YSP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marathon_Airport_(Canada)" + }, + { + "id": "1910", + "ident": "CYSQ", + "type": "medium_airport", + "name": "Atlin Airport", + "latitude_deg": "59.576698", + "longitude_deg": "-133.669006", + "elevation_ft": "2348", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Atlin", + "scheduled_service": "yes", + "gps_code": "CYSQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atlin_Airport", + "keywords": "YSQ, EY5" + }, + { + "id": "1911", + "ident": "CYSR", + "type": "closed", + "name": "Nanisivik Airport", + "latitude_deg": "72.980839", + "longitude_deg": "-84.610862", + "elevation_ft": "2106", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Nanisivik", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nanisivik_Airport", + "keywords": "YSR, CYSR" + }, + { + "id": "1912", + "ident": "CYST", + "type": "medium_airport", + "name": "St. Theresa Point Airport", + "latitude_deg": "53.84560012817383", + "longitude_deg": "-94.85189819335938", + "elevation_ft": "773", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "St. Theresa Point", + "scheduled_service": "yes", + "gps_code": "CYST", + "iata_code": "YST", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Theresa_Point_Airport" + }, + { + "id": "1913", + "ident": "CYSU", + "type": "medium_airport", + "name": "Summerside Airport", + "latitude_deg": "46.440601", + "longitude_deg": "-63.833599", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-PE", + "municipality": "Slemon Park", + "scheduled_service": "no", + "gps_code": "CYSU", + "iata_code": "YSU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Summerside_Airport", + "keywords": "PEI" + }, + { + "id": "1914", + "ident": "CYSW", + "type": "small_airport", + "name": "Sparwood Elk Valley Airport", + "latitude_deg": "49.834273", + "longitude_deg": "-114.878653", + "elevation_ft": "3800", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Sparwood", + "scheduled_service": "no", + "gps_code": "CYSW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sparwood/Elk_Valley_Airport", + "keywords": "YSW" + }, + { + "id": "1915", + "ident": "CYSY", + "type": "medium_airport", + "name": "Sachs Harbour (David Nasogaluak Jr. Saaryuaq) Airport", + "latitude_deg": "71.9938964844", + "longitude_deg": "-125.242996216", + "elevation_ft": "282", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Sachs Harbour", + "scheduled_service": "yes", + "gps_code": "CYSY", + "iata_code": "YSY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sachs_Harbour_Airport" + }, + { + "id": "1916", + "ident": "CYSZ", + "type": "small_airport", + "name": "Sainte-Anne-des-Monts Aerodrome", + "latitude_deg": "49.1203", + "longitude_deg": "-66.529198", + "elevation_ft": "71", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Sainte-Anne-des-Monts", + "scheduled_service": "no", + "gps_code": "CYSZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sainte-Anne-des-Monts_Aerodrome", + "keywords": "YSZ" + }, + { + "id": "1917", + "ident": "CYTA", + "type": "medium_airport", + "name": "Pembroke Airport", + "latitude_deg": "45.86439895629883", + "longitude_deg": "-77.25170135498047", + "elevation_ft": "529", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Pembroke", + "scheduled_service": "no", + "gps_code": "CYTA", + "iata_code": "YTA", + "home_link": "http://www.flycyta.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pembroke_Airport" + }, + { + "id": "1918", + "ident": "CYTE", + "type": "medium_airport", + "name": "Cape Dorset Airport", + "latitude_deg": "64.230003", + "longitude_deg": "-76.526703", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Kinngait", + "scheduled_service": "yes", + "gps_code": "CYTE", + "iata_code": "YTE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cape_Dorset_Airport" + }, + { + "id": "1919", + "ident": "CYTF", + "type": "medium_airport", + "name": "Alma Airport", + "latitude_deg": "48.50889968869999", + "longitude_deg": "-71.64189910889999", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Alma", + "scheduled_service": "yes", + "gps_code": "CYTF", + "iata_code": "YTF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alma_Airport" + }, + { + "id": "1920", + "ident": "CYTH", + "type": "medium_airport", + "name": "Thompson Airport", + "latitude_deg": "55.80110168457031", + "longitude_deg": "-97.86419677734375", + "elevation_ft": "729", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Thompson", + "scheduled_service": "yes", + "gps_code": "CYTH", + "iata_code": "YTH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thompson_Airport" + }, + { + "id": "1921", + "ident": "CYTL", + "type": "medium_airport", + "name": "Big Trout Lake Airport", + "latitude_deg": "53.81779861450195", + "longitude_deg": "-89.89689636230469", + "elevation_ft": "729", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Big Trout Lake", + "scheduled_service": "yes", + "gps_code": "CYTL", + "iata_code": "YTL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Big_Trout_Lake_Airport" + }, + { + "id": "1922", + "ident": "CYTN", + "type": "small_airport", + "name": "Trenton Airport", + "latitude_deg": "45.611904", + "longitude_deg": "-62.621102", + "elevation_ft": "319", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Trenton", + "scheduled_service": "no", + "gps_code": "CYTN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trenton_Airport_(Nova_Scotia)", + "keywords": "YTN, CU3" + }, + { + "id": "1923", + "ident": "CYTQ", + "type": "medium_airport", + "name": "Tasiujaq Airport", + "latitude_deg": "58.66780090332031", + "longitude_deg": "-69.95580291748047", + "elevation_ft": "122", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Tasiujaq", + "scheduled_service": "no", + "gps_code": "CYTQ", + "iata_code": "YTQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tasiujaq_Airport" + }, + { + "id": "1924", + "ident": "CYTR", + "type": "medium_airport", + "name": "CFB Trenton", + "latitude_deg": "44.118900299072266", + "longitude_deg": "-77.5280990600586", + "elevation_ft": "283", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Trenton", + "scheduled_service": "no", + "gps_code": "CYTR", + "iata_code": "YTR", + "wikipedia_link": "https://en.wikipedia.org/wiki/CFB_Trenton" + }, + { + "id": "1925", + "ident": "CYTS", + "type": "medium_airport", + "name": "Timmins/Victor M. Power", + "latitude_deg": "48.569698333699996", + "longitude_deg": "-81.376701355", + "elevation_ft": "967", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Timmins", + "scheduled_service": "yes", + "gps_code": "CYTS", + "iata_code": "YTS", + "home_link": "http://portal.timmins.ca/portal/en/timmins/residents/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Timmins_Airport", + "keywords": "Timmins Victor M. Power Airport" + }, + { + "id": "1926", + "ident": "CYTZ", + "type": "medium_airport", + "name": "Billy Bishop Toronto City Centre Airport", + "latitude_deg": "43.627499", + "longitude_deg": "-79.396202", + "elevation_ft": "252", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Toronto", + "scheduled_service": "yes", + "gps_code": "CYTZ", + "iata_code": "YTZ", + "home_link": "http://www.torontoport.com/airport.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toronto_City_Centre_Airport", + "keywords": "YTO, Toronto Island Airport" + }, + { + "id": "1927", + "ident": "CYUB", + "type": "medium_airport", + "name": "Tuktoyaktuk / James Gruben Airport", + "latitude_deg": "69.433296", + "longitude_deg": "-133.026001", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Tuktoyaktuk", + "scheduled_service": "yes", + "gps_code": "CYUB", + "iata_code": "YUB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tuktoyaktuk/James_Gruben_Airport" + }, + { + "id": "1928", + "ident": "CYUL", + "type": "large_airport", + "name": "Montreal / Pierre Elliott Trudeau International Airport", + "latitude_deg": "45.4706001282", + "longitude_deg": "-73.7407989502", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montréal", + "scheduled_service": "yes", + "gps_code": "CYUL", + "iata_code": "YUL", + "local_code": "YUL", + "home_link": "http://www.admtl.com/passager/Home.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Montr%C3%A9al-Pierre_Elliott_Trudeau_International_Airport", + "keywords": "YMQ, Dorval Airport" + }, + { + "id": "1929", + "ident": "CYUT", + "type": "medium_airport", + "name": "Naujaat Airport", + "latitude_deg": "66.5214", + "longitude_deg": "-86.224701", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Repulse Bay", + "scheduled_service": "yes", + "gps_code": "CYUT", + "iata_code": "YUT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Repulse_Bay_Airport", + "keywords": "Repulse Bay Airport" + }, + { + "id": "1930", + "ident": "CYUX", + "type": "medium_airport", + "name": "Hall Beach Airport", + "latitude_deg": "68.7761", + "longitude_deg": "-81.2425", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Sanirajak", + "scheduled_service": "yes", + "gps_code": "CYUX", + "iata_code": "YUX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hall_Beach_Airport" + }, + { + "id": "1931", + "ident": "CYUY", + "type": "medium_airport", + "name": "Rouyn Noranda Airport", + "latitude_deg": "48.20610046386719", + "longitude_deg": "-78.83560180664062", + "elevation_ft": "988", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Rouyn-Noranda", + "scheduled_service": "yes", + "gps_code": "CYUY", + "iata_code": "YUY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rouyn-Noranda_Airport" + }, + { + "id": "1932", + "ident": "CYVB", + "type": "medium_airport", + "name": "Bonaventure Airport", + "latitude_deg": "48.071098", + "longitude_deg": "-65.460297", + "elevation_ft": "123", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Bonaventure", + "scheduled_service": "no", + "gps_code": "CYVB", + "iata_code": "YVB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bonaventure_Airport" + }, + { + "id": "1933", + "ident": "CYVC", + "type": "medium_airport", + "name": "La Ronge Airport", + "latitude_deg": "55.151401519800004", + "longitude_deg": "-105.262001038", + "elevation_ft": "1242", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "La Ronge", + "scheduled_service": "yes", + "gps_code": "CYVC", + "iata_code": "YVC", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Ronge_(Barber_Field)_Airport" + }, + { + "id": "1934", + "ident": "CYVD", + "type": "medium_airport", + "name": "Virden / RJ (Bob) Andrew Field Regional Aerodrome", + "latitude_deg": "49.8783", + "longitude_deg": "-100.917999", + "elevation_ft": "1454", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Virden", + "scheduled_service": "no", + "gps_code": "CYVD", + "local_code": "YVD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Virden_Airport" + }, + { + "id": "1935", + "ident": "CYVG", + "type": "small_airport", + "name": "Vermilion Airport", + "latitude_deg": "53.355800628699996", + "longitude_deg": "-110.823997498", + "elevation_ft": "2025", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Vermilion", + "scheduled_service": "no", + "gps_code": "CYVG", + "iata_code": "YVG", + "local_code": "YVG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vermilion_Airport", + "keywords": "YVG" + }, + { + "id": "1936", + "ident": "CYVK", + "type": "medium_airport", + "name": "Vernon Airport", + "latitude_deg": "50.24810028076172", + "longitude_deg": "-119.33100128173828", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Vernon", + "scheduled_service": "no", + "gps_code": "CYVK", + "iata_code": "YVE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vernon_Regional_Airport", + "keywords": "YVK" + }, + { + "id": "314953", + "ident": "CYVL", + "type": "small_airport", + "name": "Tommy Kochon Airport", + "latitude_deg": "67.02", + "longitude_deg": "-126.126", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Colville Lake", + "scheduled_service": "yes", + "gps_code": "CYVL", + "iata_code": "YCK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Colville_Lake/Tommy_Kochon_Aerodrome" + }, + { + "id": "1937", + "ident": "CYVM", + "type": "medium_airport", + "name": "Qikiqtarjuaq Airport", + "latitude_deg": "67.546232", + "longitude_deg": "-64.031754", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Qikiqtarjuaq", + "scheduled_service": "yes", + "gps_code": "CYVM", + "iata_code": "YVM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qikiqtarjuaq_Airport" + }, + { + "id": "1938", + "ident": "CYVO", + "type": "medium_airport", + "name": "Val-d'Or Airport", + "latitude_deg": "48.0532989502", + "longitude_deg": "-77.7827987671", + "elevation_ft": "1107", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Val-d'Or", + "scheduled_service": "yes", + "gps_code": "CYVO", + "iata_code": "YVO", + "home_link": "http://www.arvo.qc.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Val-d'Or_Airport" + }, + { + "id": "1939", + "ident": "CYVP", + "type": "medium_airport", + "name": "Kuujjuaq Airport", + "latitude_deg": "58.096099853515625", + "longitude_deg": "-68.4269027709961", + "elevation_ft": "129", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Kuujjuaq", + "scheduled_service": "yes", + "gps_code": "CYVP", + "iata_code": "YVP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kuujjuaq_Airport" + }, + { + "id": "1940", + "ident": "CYVQ", + "type": "medium_airport", + "name": "Norman Wells Airport", + "latitude_deg": "65.28160095214844", + "longitude_deg": "-126.7979965209961", + "elevation_ft": "238", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Norman Wells", + "scheduled_service": "yes", + "gps_code": "CYVQ", + "iata_code": "YVQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Norman_Wells_Airport" + }, + { + "id": "1941", + "ident": "CYVR", + "type": "large_airport", + "name": "Vancouver International Airport", + "latitude_deg": "49.193901062", + "longitude_deg": "-123.183998108", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Vancouver", + "scheduled_service": "yes", + "gps_code": "CYVR", + "iata_code": "YVR", + "home_link": "http://www.yvr.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vancouver_International_Airport" + }, + { + "id": "1942", + "ident": "CYVT", + "type": "small_airport", + "name": "Buffalo Narrows Airport", + "latitude_deg": "55.8418998718", + "longitude_deg": "-108.417999268", + "elevation_ft": "1423", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Buffalo Narrows", + "scheduled_service": "no", + "gps_code": "CYVT", + "iata_code": "YVT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buffalo_Narrows_Airport", + "keywords": "YVT" + }, + { + "id": "1943", + "ident": "CYVV", + "type": "medium_airport", + "name": "Wiarton Airport", + "latitude_deg": "44.7458", + "longitude_deg": "-81.107201", + "elevation_ft": "729", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Wiarton", + "scheduled_service": "no", + "gps_code": "CYVV", + "iata_code": "YVV", + "home_link": "http://wiartonairport.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wiarton_Airport" + }, + { + "id": "1944", + "ident": "CYVZ", + "type": "medium_airport", + "name": "Deer Lake Airport", + "latitude_deg": "52.655799865722656", + "longitude_deg": "-94.0614013671875", + "elevation_ft": "1092", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Deer Lake", + "scheduled_service": "yes", + "gps_code": "CYVZ", + "iata_code": "YVZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Deer_Lake_Airport_(Ontario)" + }, + { + "id": "1945", + "ident": "CYWA", + "type": "medium_airport", + "name": "Petawawa Airport", + "latitude_deg": "45.95220184326172", + "longitude_deg": "-77.31919860839844", + "elevation_ft": "427", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Petawawa", + "scheduled_service": "no", + "gps_code": "CYWA", + "iata_code": "YWA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Petawawa_Airport" + }, + { + "id": "354379", + "ident": "CYWB", + "type": "small_airport", + "name": "Penfold Airstrip", + "latitude_deg": "52.767722", + "longitude_deg": "-120.749134", + "elevation_ft": "3642", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "scheduled_service": "no", + "keywords": "CYWB" + }, + { + "id": "1946", + "ident": "CYWG", + "type": "large_airport", + "name": "Winnipeg / James Armstrong Richardson International Airport", + "latitude_deg": "49.909999847399995", + "longitude_deg": "-97.2398986816", + "elevation_ft": "783", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Winnipeg", + "scheduled_service": "yes", + "gps_code": "CYWG", + "iata_code": "YWG", + "local_code": "YWG", + "home_link": "http://www.waa.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Winnipeg_James_Armstrong_Richardson_International_Airport", + "keywords": "CFB Winnipeg" + }, + { + "id": "1947", + "ident": "CYWH", + "type": "seaplane_base", + "name": "Victoria Harbour Seaplane Base", + "latitude_deg": "48.423782", + "longitude_deg": "-123.37198", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Victoria", + "scheduled_service": "yes", + "gps_code": "CYWH", + "iata_code": "YWH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Victoria_Inner_Harbour_Airport" + }, + { + "id": "1948", + "ident": "CYWJ", + "type": "medium_airport", + "name": "Déline Airport", + "latitude_deg": "65.21109771728516", + "longitude_deg": "-123.43599700927734", + "elevation_ft": "703", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Déline", + "scheduled_service": "yes", + "gps_code": "CYWJ", + "iata_code": "YWJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Deline_Airport" + }, + { + "id": "1949", + "ident": "CYWK", + "type": "medium_airport", + "name": "Wabush Airport", + "latitude_deg": "52.92190170288086", + "longitude_deg": "-66.8644027709961", + "elevation_ft": "1808", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Wabush", + "scheduled_service": "yes", + "gps_code": "CYWK", + "iata_code": "YWK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wabush_Airport" + }, + { + "id": "1950", + "ident": "CYWL", + "type": "medium_airport", + "name": "Williams Lake Airport", + "latitude_deg": "52.1831016541", + "longitude_deg": "-122.054000854", + "elevation_ft": "3085", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Williams Lake", + "scheduled_service": "yes", + "gps_code": "CYWL", + "iata_code": "YWL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Williams_Lake_Airport" + }, + { + "id": "1951", + "ident": "CYWM", + "type": "small_airport", + "name": "Athabasca Airport", + "latitude_deg": "54.743099212646484", + "longitude_deg": "-113.20500183105469", + "elevation_ft": "1971", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Athabasca", + "scheduled_service": "no", + "gps_code": "CYWM", + "home_link": "http://www.athabascacounty.com/Safety%20and%20Utilities/AthabascaAirport.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Athabasca_Airport", + "keywords": "YWM" + }, + { + "id": "1952", + "ident": "CYWP", + "type": "medium_airport", + "name": "Webequie Airport", + "latitude_deg": "52.9593933975", + "longitude_deg": "-87.3748683929", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Webequie", + "scheduled_service": "yes", + "gps_code": "CYWP", + "iata_code": "YWP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Webequie_Airport" + }, + { + "id": "1953", + "ident": "CYWV", + "type": "small_airport", + "name": "Wainwright Airport", + "latitude_deg": "52.795799255371094", + "longitude_deg": "-110.85700225830078", + "elevation_ft": "2230", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Wainwright", + "scheduled_service": "no", + "gps_code": "CYWV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wainwright_Airport_(Alberta)", + "keywords": "YWV" + }, + { + "id": "1954", + "ident": "CYWY", + "type": "medium_airport", + "name": "Wrigley Airport", + "latitude_deg": "63.20940017700195", + "longitude_deg": "-123.43699645996094", + "elevation_ft": "489", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Wrigley", + "scheduled_service": "no", + "gps_code": "CYWY", + "iata_code": "YWY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wrigley_Airport" + }, + { + "id": "1955", + "ident": "CYXC", + "type": "medium_airport", + "name": "Cranbrook/Canadian Rockies International Airport", + "latitude_deg": "49.610801696777", + "longitude_deg": "-115.78199768066", + "elevation_ft": "3082", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Cranbrook", + "scheduled_service": "yes", + "gps_code": "CYXC", + "iata_code": "YXC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cranbrook/Canadian_Rockies_International_Airport" + }, + { + "id": "1956", + "ident": "CYXD", + "type": "closed", + "name": "Edmonton City Centre (Blatchford Field) Airport", + "latitude_deg": "53.5724983215", + "longitude_deg": "-113.521003723", + "elevation_ft": "2202", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Edmonton", + "scheduled_service": "no", + "gps_code": "CYXD", + "iata_code": "YXD", + "local_code": "CYXD", + "home_link": "http://corporate.flyeia.com/general_aviation/edmonton_city_centre", + "wikipedia_link": "https://en.wikipedia.org/wiki/Edmonton_City_Centre_(Blatchford_Field)_Airport", + "keywords": "YEA, YXD" + }, + { + "id": "1957", + "ident": "CYXE", + "type": "medium_airport", + "name": "Saskatoon John G. Diefenbaker International Airport", + "latitude_deg": "52.170799255371094", + "longitude_deg": "-106.69999694824219", + "elevation_ft": "1653", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Saskatoon", + "scheduled_service": "yes", + "gps_code": "CYXE", + "iata_code": "YXE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saskatoon/John_G._Diefenbaker_International_Airport" + }, + { + "id": "1958", + "ident": "CYXH", + "type": "medium_airport", + "name": "Medicine Hat Regional Airport", + "latitude_deg": "50.018902", + "longitude_deg": "-110.721001", + "elevation_ft": "2352", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Medicine Hat", + "scheduled_service": "yes", + "gps_code": "CYXH", + "iata_code": "YXH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Medicine_Hat_Airport" + }, + { + "id": "27308", + "ident": "CYXI", + "type": "closed", + "name": "Bonnechere Airport", + "latitude_deg": "45.66310119628906", + "longitude_deg": "-77.60279846191406", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Killaloe", + "scheduled_service": "no", + "gps_code": "CYXI", + "iata_code": "YXI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Killaloe/Bonnechere_Airport" + }, + { + "id": "1959", + "ident": "CYXJ", + "type": "medium_airport", + "name": "Fort St John Airport", + "latitude_deg": "56.238098", + "longitude_deg": "-120.739998", + "elevation_ft": "2280", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Fort St.John", + "scheduled_service": "yes", + "gps_code": "CYXJ", + "iata_code": "YXJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_St._John_Airport", + "keywords": "BZ3" + }, + { + "id": "1960", + "ident": "CYXK", + "type": "medium_airport", + "name": "Rimouski Airport", + "latitude_deg": "48.47809982299805", + "longitude_deg": "-68.49690246582031", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Rimouski", + "scheduled_service": "no", + "gps_code": "CYXK", + "iata_code": "YXK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rimouski_Airport" + }, + { + "id": "1961", + "ident": "CYXL", + "type": "medium_airport", + "name": "Sioux Lookout Airport", + "latitude_deg": "50.11389923095703", + "longitude_deg": "-91.9052963256836", + "elevation_ft": "1258", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Sioux Lookout", + "scheduled_service": "yes", + "gps_code": "CYXL", + "iata_code": "YXL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sioux_Lookout_Airport" + }, + { + "id": "1962", + "ident": "CYXN", + "type": "medium_airport", + "name": "Whale Cove Airport", + "latitude_deg": "62.24000167849999", + "longitude_deg": "-92.59809875490001", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Whale Cove", + "scheduled_service": "yes", + "gps_code": "CYXN", + "iata_code": "YXN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Whale_Cove_Airport" + }, + { + "id": "1963", + "ident": "CYXP", + "type": "medium_airport", + "name": "Pangnirtung Airport", + "latitude_deg": "66.1449966431", + "longitude_deg": "-65.71360015869999", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Pangnirtung", + "scheduled_service": "yes", + "gps_code": "CYXP", + "iata_code": "YXP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pangnirtung_Airport" + }, + { + "id": "1964", + "ident": "CYXQ", + "type": "medium_airport", + "name": "Beaver Creek Airport", + "latitude_deg": "62.410301208496094", + "longitude_deg": "-140.86700439453125", + "elevation_ft": "2131", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Beaver Creek", + "scheduled_service": "no", + "gps_code": "CYXQ", + "iata_code": "YXQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beaver_Creek_Airport" + }, + { + "id": "1965", + "ident": "CYXR", + "type": "medium_airport", + "name": "Earlton (Timiskaming Regional) Airport", + "latitude_deg": "47.697400654599996", + "longitude_deg": "-79.8473453522", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Earlton", + "scheduled_service": "no", + "gps_code": "CYXR", + "iata_code": "YXR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Earlton_(Timiskaming_Regional)_Airport", + "keywords": "yxr" + }, + { + "id": "1966", + "ident": "CYXS", + "type": "medium_airport", + "name": "Prince George Airport", + "latitude_deg": "53.8894004822", + "longitude_deg": "-122.679000854", + "elevation_ft": "2267", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Prince George", + "scheduled_service": "yes", + "gps_code": "CYXS", + "iata_code": "YXS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Prince_George_Airport" + }, + { + "id": "1967", + "ident": "CYXT", + "type": "medium_airport", + "name": "Northwest Regional Airport Terrace-Kitimat", + "latitude_deg": "54.468498", + "longitude_deg": "-128.576009", + "elevation_ft": "713", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Terrace", + "scheduled_service": "yes", + "gps_code": "CYXT", + "iata_code": "YXT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Terrace_Airport" + }, + { + "id": "1968", + "ident": "CYXU", + "type": "medium_airport", + "name": "London Airport", + "latitude_deg": "43.035599", + "longitude_deg": "-81.1539", + "elevation_ft": "912", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "London", + "scheduled_service": "yes", + "gps_code": "CYXU", + "iata_code": "YXU", + "home_link": "http://www.londonairport.on.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/London_International_Airport" + }, + { + "id": "1969", + "ident": "CYXX", + "type": "large_airport", + "name": "Abbotsford International Airport", + "latitude_deg": "49.025299", + "longitude_deg": "-122.361", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Abbotsford", + "scheduled_service": "yes", + "gps_code": "CYXX", + "iata_code": "YXX", + "home_link": "http://www.abbotsfordairport.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abbotsford_International_Airport" + }, + { + "id": "1970", + "ident": "CYXY", + "type": "medium_airport", + "name": "Whitehorse / Erik Nielsen International Airport", + "latitude_deg": "60.709599", + "longitude_deg": "-135.067001", + "elevation_ft": "2317", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Whitehorse", + "scheduled_service": "yes", + "gps_code": "CYXY", + "iata_code": "YXY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Whitehorse_International_Airport" + }, + { + "id": "1971", + "ident": "CYXZ", + "type": "medium_airport", + "name": "Wawa Airport", + "latitude_deg": "47.96670150756836", + "longitude_deg": "-84.78669738769531", + "elevation_ft": "942", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Wawa", + "scheduled_service": "no", + "gps_code": "CYXZ", + "iata_code": "YXZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wawa_Airport" + }, + { + "id": "1972", + "ident": "CYYB", + "type": "medium_airport", + "name": "North Bay Jack Garland Airport", + "latitude_deg": "46.363602", + "longitude_deg": "-79.422798", + "elevation_ft": "1215", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "North Bay", + "scheduled_service": "yes", + "gps_code": "CYYB", + "iata_code": "YYB", + "home_link": "https://yyb.ca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/North_Bay/Jack_Garland_Airport", + "keywords": "Jack Garland Airport, CFB North Bay" + }, + { + "id": "1973", + "ident": "CYYC", + "type": "large_airport", + "name": "Calgary International Airport", + "latitude_deg": "51.113899231", + "longitude_deg": "-114.019996643", + "elevation_ft": "3557", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Calgary", + "scheduled_service": "yes", + "gps_code": "CYYC", + "iata_code": "YYC", + "home_link": "http://www.calgaryairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Calgary_International_Airport", + "keywords": "McCall Field" + }, + { + "id": "1974", + "ident": "CYYD", + "type": "medium_airport", + "name": "Smithers Airport", + "latitude_deg": "54.82469940185547", + "longitude_deg": "-127.18299865722656", + "elevation_ft": "1712", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Smithers", + "scheduled_service": "yes", + "gps_code": "CYYD", + "iata_code": "YYD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Smithers_Airport" + }, + { + "id": "1975", + "ident": "CYYE", + "type": "medium_airport", + "name": "Fort Nelson Airport", + "latitude_deg": "58.8363990784", + "longitude_deg": "-122.597000122", + "elevation_ft": "1253", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Fort Nelson", + "scheduled_service": "yes", + "gps_code": "CYYE", + "iata_code": "YYE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Nelson_Airport" + }, + { + "id": "1976", + "ident": "CYYF", + "type": "medium_airport", + "name": "Penticton Airport", + "latitude_deg": "49.46310043334961", + "longitude_deg": "-119.60199737548828", + "elevation_ft": "1129", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Penticton", + "scheduled_service": "yes", + "gps_code": "CYYF", + "iata_code": "YYF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Penticton_Regional_Airport" + }, + { + "id": "1977", + "ident": "CYYG", + "type": "medium_airport", + "name": "Charlottetown Airport", + "latitude_deg": "46.290000915527344", + "longitude_deg": "-63.12110137939453", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-PE", + "municipality": "Charlottetown", + "scheduled_service": "yes", + "gps_code": "CYYG", + "iata_code": "YYG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Charlottetown_Airport", + "keywords": "PEI" + }, + { + "id": "1978", + "ident": "CYYH", + "type": "medium_airport", + "name": "Taloyoak Airport", + "latitude_deg": "69.5467", + "longitude_deg": "-93.576698", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Taloyoak", + "scheduled_service": "yes", + "gps_code": "CYYH", + "iata_code": "YYH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taloyoak_Airport", + "keywords": "Spence Bay" + }, + { + "id": "1979", + "ident": "CYYJ", + "type": "large_airport", + "name": "Victoria International Airport", + "latitude_deg": "48.6469", + "longitude_deg": "-123.426003", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Victoria", + "scheduled_service": "yes", + "gps_code": "CYYJ", + "iata_code": "YYJ", + "home_link": "http://www.victoriaairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Victoria_International_Airport" + }, + { + "id": "1980", + "ident": "CYYL", + "type": "medium_airport", + "name": "Lynn Lake Airport", + "latitude_deg": "56.86389923095703", + "longitude_deg": "-101.07599639892578", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Lynn Lake", + "scheduled_service": "yes", + "gps_code": "CYYL", + "iata_code": "YYL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lynn_Lake_Airport" + }, + { + "id": "1981", + "ident": "CYYM", + "type": "small_airport", + "name": "Cowley Airport", + "latitude_deg": "49.636398315399994", + "longitude_deg": "-114.09400177", + "elevation_ft": "3876", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Cowley", + "scheduled_service": "no", + "gps_code": "CYYM", + "iata_code": "YYM", + "local_code": "YYM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cowley_Airport", + "keywords": "YYM" + }, + { + "id": "1982", + "ident": "CYYN", + "type": "medium_airport", + "name": "Swift Current Airport", + "latitude_deg": "50.291900634799994", + "longitude_deg": "-107.691001892", + "elevation_ft": "2680", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Swift Current", + "scheduled_service": "no", + "gps_code": "CYYN", + "iata_code": "YYN", + "home_link": "http://www.swiftcurrentairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Swift_Current_Airport", + "keywords": "YYN" + }, + { + "id": "1983", + "ident": "CYYO", + "type": "small_airport", + "name": "Wynyard / W.B. Needham Field", + "latitude_deg": "51.8098883726", + "longitude_deg": "-104.169788361", + "elevation_ft": "1740", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Wynyard", + "scheduled_service": "no", + "gps_code": "CYYO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wynyard_Airport%2C_Canada", + "keywords": "YYO" + }, + { + "id": "1984", + "ident": "CYYQ", + "type": "medium_airport", + "name": "Churchill Airport", + "latitude_deg": "58.739200592041016", + "longitude_deg": "-94.06500244140625", + "elevation_ft": "94", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Churchill", + "scheduled_service": "yes", + "gps_code": "CYYQ", + "iata_code": "YYQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Churchill_Airport" + }, + { + "id": "1985", + "ident": "CYYR", + "type": "medium_airport", + "name": "Goose Bay Airport", + "latitude_deg": "53.3191986084", + "longitude_deg": "-60.4258003235", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Goose Bay", + "scheduled_service": "yes", + "gps_code": "CYYR", + "iata_code": "YYR", + "wikipedia_link": "https://en.wikipedia.org/wiki/CFB_Goose_Bay", + "keywords": "CFB Goose Bay" + }, + { + "id": "1986", + "ident": "CYYT", + "type": "large_airport", + "name": "St. John's International Airport", + "latitude_deg": "47.618598938", + "longitude_deg": "-52.7518997192", + "elevation_ft": "461", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "St. John's", + "scheduled_service": "yes", + "gps_code": "CYYT", + "iata_code": "YYT", + "home_link": "http://www.stjohnsairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._John's_International_Airport" + }, + { + "id": "1987", + "ident": "CYYU", + "type": "medium_airport", + "name": "Kapuskasing Airport", + "latitude_deg": "49.41389846801758", + "longitude_deg": "-82.46749877929688", + "elevation_ft": "743", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kapuskasing", + "scheduled_service": "yes", + "gps_code": "CYYU", + "iata_code": "YYU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kapuskasing_Airport" + }, + { + "id": "1988", + "ident": "CYYW", + "type": "medium_airport", + "name": "Armstrong Airport", + "latitude_deg": "50.29029846191406", + "longitude_deg": "-88.90969848632812", + "elevation_ft": "1058", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Armstrong", + "scheduled_service": "no", + "gps_code": "CYYW", + "iata_code": "YYW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Armstrong_Airport" + }, + { + "id": "1989", + "ident": "CYYY", + "type": "medium_airport", + "name": "Mont Joli Airport", + "latitude_deg": "48.60860061645508", + "longitude_deg": "-68.20809936523438", + "elevation_ft": "172", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Mont-Joli", + "scheduled_service": "yes", + "gps_code": "CYYY", + "iata_code": "YYY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mont-Joli_Airport" + }, + { + "id": "1990", + "ident": "CYYZ", + "type": "large_airport", + "name": "Lester B. Pearson International Airport", + "latitude_deg": "43.6772003174", + "longitude_deg": "-79.63059997559999", + "elevation_ft": "569", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Toronto", + "scheduled_service": "yes", + "gps_code": "CYYZ", + "iata_code": "YYZ", + "local_code": "YYZ", + "home_link": "http://www.gtaa.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toronto_Pearson_International_Airport", + "keywords": "YTO, Toronto International Airport, Malton" + }, + { + "id": "1991", + "ident": "CYZD", + "type": "medium_airport", + "name": "Downsview Airport", + "latitude_deg": "43.7425", + "longitude_deg": "-79.465599", + "elevation_ft": "652", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Toronto", + "scheduled_service": "no", + "gps_code": "CYZD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toronto/Downsview_Airport", + "keywords": "YZD" + }, + { + "id": "1992", + "ident": "CYZE", + "type": "medium_airport", + "name": "Gore Bay Manitoulin Airport", + "latitude_deg": "45.8853", + "longitude_deg": "-82.567802", + "elevation_ft": "623", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Gore Bay", + "scheduled_service": "no", + "gps_code": "CYZE", + "iata_code": "YZE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gore_Bay-Manitoulin_Airport" + }, + { + "id": "1993", + "ident": "CYZF", + "type": "medium_airport", + "name": "Yellowknife International Airport", + "latitude_deg": "62.462799", + "longitude_deg": "-114.440002", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Yellowknife", + "scheduled_service": "yes", + "gps_code": "CYZF", + "iata_code": "YZF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yellowknife_Airport" + }, + { + "id": "1994", + "ident": "CYZG", + "type": "medium_airport", + "name": "Salluit Airport", + "latitude_deg": "62.17940139770508", + "longitude_deg": "-75.66719818115234", + "elevation_ft": "743", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Salluit", + "scheduled_service": "yes", + "gps_code": "CYZG", + "iata_code": "YZG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salluit_Airport" + }, + { + "id": "1995", + "ident": "CYZH", + "type": "medium_airport", + "name": "Slave Lake Airport", + "latitude_deg": "55.2930984497", + "longitude_deg": "-114.777000427", + "elevation_ft": "1912", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Slave Lake", + "scheduled_service": "no", + "gps_code": "CYZH", + "iata_code": "YZH", + "home_link": "http://slavelakeairport.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Slave_Lake_Airport", + "keywords": "YZH" + }, + { + "id": "1996", + "ident": "CYZP", + "type": "medium_airport", + "name": "Sandspit Airport", + "latitude_deg": "53.25429916379999", + "longitude_deg": "-131.813995361", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Sandspit", + "scheduled_service": "yes", + "gps_code": "CYZP", + "iata_code": "YZP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sandspit_Airport", + "keywords": "Queen Charlotte Islands, Haida Gwaii" + }, + { + "id": "1997", + "ident": "CYZR", + "type": "medium_airport", + "name": "Chris Hadfield Airport", + "latitude_deg": "42.9994010925293", + "longitude_deg": "-82.30889892578125", + "elevation_ft": "594", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Sarnia", + "scheduled_service": "yes", + "gps_code": "CYZR", + "iata_code": "YZR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sarnia_(Chris_Hadfield)_Airport" + }, + { + "id": "1998", + "ident": "CYZS", + "type": "medium_airport", + "name": "Coral Harbour Airport", + "latitude_deg": "64.1932983398", + "longitude_deg": "-83.3593978882", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Coral Harbour", + "scheduled_service": "yes", + "gps_code": "CYZS", + "iata_code": "YZS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coral_Harbour_Airport" + }, + { + "id": "1999", + "ident": "CYZT", + "type": "medium_airport", + "name": "Port Hardy Airport", + "latitude_deg": "50.680599212646484", + "longitude_deg": "-127.36699676513672", + "elevation_ft": "71", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Port Hardy", + "scheduled_service": "yes", + "gps_code": "CYZT", + "iata_code": "YZT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Hardy_Airport" + }, + { + "id": "2000", + "ident": "CYZU", + "type": "medium_airport", + "name": "Whitecourt Airport", + "latitude_deg": "54.14390182495117", + "longitude_deg": "-115.78700256347656", + "elevation_ft": "2567", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Whitecourt", + "scheduled_service": "no", + "gps_code": "CYZU", + "iata_code": "YZU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Whitecourt_Airport" + }, + { + "id": "2001", + "ident": "CYZV", + "type": "medium_airport", + "name": "Sept-Îles Airport", + "latitude_deg": "50.22330093383789", + "longitude_deg": "-66.2656021118164", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Sept-Îles", + "scheduled_service": "yes", + "gps_code": "CYZV", + "iata_code": "YZV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sept-%C3%8Eles_Airport" + }, + { + "id": "2002", + "ident": "CYZW", + "type": "medium_airport", + "name": "Teslin Airport", + "latitude_deg": "60.17279815673828", + "longitude_deg": "-132.7429962158203", + "elevation_ft": "2313", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Teslin", + "scheduled_service": "no", + "gps_code": "CYZW", + "iata_code": "YZW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Teslin_Airport" + }, + { + "id": "2003", + "ident": "CYZX", + "type": "medium_airport", + "name": "CFB Greenwood", + "latitude_deg": "44.98440170288086", + "longitude_deg": "-64.91690063476562", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NS", + "municipality": "Greenwood", + "scheduled_service": "no", + "gps_code": "CYZX", + "iata_code": "YZX", + "wikipedia_link": "https://en.wikipedia.org/wiki/CFB_Greenwood", + "keywords": "Greenwood Airport" + }, + { + "id": "2004", + "ident": "CYZY", + "type": "medium_airport", + "name": "Mackenzie Airport", + "latitude_deg": "55.304402", + "longitude_deg": "-123.132004", + "elevation_ft": "2264", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Mackenzie", + "scheduled_service": "no", + "gps_code": "CYZY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mackenzie_Airport", + "keywords": "YZY" + }, + { + "id": "43918", + "ident": "CZ-0001", + "type": "heliport", + "name": "Factory Jihočeské Papírny Heliport", + "latitude_deg": "48.96200180053711", + "longitude_deg": "14.462531089782715", + "elevation_ft": "1280", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "České Budějovice", + "scheduled_service": "no" + }, + { + "id": "43919", + "ident": "CZ-0002", + "type": "heliport", + "name": "Hospital Heliport", + "latitude_deg": "49.4160270690918", + "longitude_deg": "14.652486801147461", + "elevation_ft": "1450", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "Tábor", + "scheduled_service": "no" + }, + { + "id": "43920", + "ident": "CZ-0003", + "type": "heliport", + "name": "Hospital Heliport", + "latitude_deg": "49.13916778564453", + "longitude_deg": "15.005556106567383", + "elevation_ft": "1620", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "Jindřichův Hradec", + "scheduled_service": "no" + }, + { + "id": "43921", + "ident": "CZ-0004", + "type": "heliport", + "name": "Hospital Heliport", + "latitude_deg": "49.36249923706055", + "longitude_deg": "16.65416717529297", + "elevation_ft": "1038", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "municipality": "Blansko", + "scheduled_service": "no" + }, + { + "id": "43922", + "ident": "CZ-0005", + "type": "heliport", + "name": "Hospital Heliport", + "latitude_deg": "49.48963928222656", + "longitude_deg": "16.646547317504883", + "elevation_ft": "1198", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "municipality": "Boskovice", + "scheduled_service": "no" + }, + { + "id": "43923", + "ident": "CZ-0006", + "type": "heliport", + "name": "International Business Center Brno Heliport", + "latitude_deg": "49.200279235839844", + "longitude_deg": "16.613889694213867", + "elevation_ft": "774", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "municipality": "Brno", + "scheduled_service": "no" + }, + { + "id": "43924", + "ident": "CZ-0007", + "type": "heliport", + "name": "Nemocnice/Hospital Heliport", + "latitude_deg": "48.752220153808594", + "longitude_deg": "16.877777099609375", + "elevation_ft": "518", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "municipality": "Břeclav", + "scheduled_service": "no" + }, + { + "id": "43925", + "ident": "CZ-0008", + "type": "heliport", + "name": "Střecha Nem Hospital Heliport", + "latitude_deg": "49.008331298828125", + "longitude_deg": "17.11083221435547", + "elevation_ft": "730", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "municipality": "Kyjov", + "scheduled_service": "no" + }, + { + "id": "43926", + "ident": "CZ-0009", + "type": "heliport", + "name": "Teaching Hospital - Building I2 Heliport", + "latitude_deg": "49.17583465576172", + "longitude_deg": "16.56944465637207", + "elevation_ft": "967", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "municipality": "Brno", + "scheduled_service": "no" + }, + { + "id": "43927", + "ident": "CZ-0010", + "type": "heliport", + "name": "Teaching Hospital -Building 1 Heliport", + "latitude_deg": "49.20354080200195", + "longitude_deg": "16.616600036621094", + "elevation_ft": "791", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "municipality": "Brno", + "scheduled_service": "no" + }, + { + "id": "43928", + "ident": "CZ-0011", + "type": "heliport", + "name": "Horní Staré Město Heliport", + "latitude_deg": "50.58610916137695", + "longitude_deg": "15.878610610961914", + "elevation_ft": "1526", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "municipality": "Trutnov", + "scheduled_service": "no" + }, + { + "id": "43929", + "ident": "CZ-0012", + "type": "heliport", + "name": "Hospital Heliport", + "latitude_deg": "50.4102783203125", + "longitude_deg": "16.166667938232422", + "elevation_ft": "1217", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "municipality": "Náchod", + "scheduled_service": "no" + }, + { + "id": "43930", + "ident": "CZ-0013", + "type": "heliport", + "name": "Hradec Králové Heliport", + "latitude_deg": "50.19333267211914", + "longitude_deg": "15.825555801391602", + "elevation_ft": "751", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "municipality": "Hradec Králové", + "scheduled_service": "no" + }, + { + "id": "43931", + "ident": "CZ-0014", + "type": "heliport", + "name": "Nová Amerika Heliport", + "latitude_deg": "50.38111114501953", + "longitude_deg": "15.86388874053955", + "elevation_ft": "1086", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "municipality": "Nová Amerika", + "scheduled_service": "no" + }, + { + "id": "43932", + "ident": "CZ-0015", + "type": "heliport", + "name": "Teaching Hospital, Clinic Karim - Roof Heliport", + "latitude_deg": "50.1982536315918", + "longitude_deg": "15.82852840423584", + "elevation_ft": "807", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "municipality": "Hradec Králové", + "scheduled_service": "no" + }, + { + "id": "43933", + "ident": "CZ-0016", + "type": "heliport", + "name": "Area Of Fire And Rescue Force Heliport", + "latitude_deg": "49.988609313964844", + "longitude_deg": "17.453611373901367", + "elevation_ft": "1772", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-MO", + "municipality": "Bruntál", + "scheduled_service": "no" + }, + { + "id": "43934", + "ident": "CZ-0017", + "type": "heliport", + "name": "Hospital Heliport", + "latitude_deg": "50.097190856933594", + "longitude_deg": "17.685087203979492", + "elevation_ft": "1046", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-MO", + "municipality": "Krnov", + "scheduled_service": "no" + }, + { + "id": "43935", + "ident": "CZ-0018", + "type": "heliport", + "name": "Teaching Hospital Heliport", + "latitude_deg": "49.82722091674805", + "longitude_deg": "18.156944274902344", + "elevation_ft": "866", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-MO", + "municipality": "Poruba", + "scheduled_service": "no" + }, + { + "id": "43936", + "ident": "CZ-0019", + "type": "heliport", + "name": "The Area Of Fire And Rescue Force Heliport", + "latitude_deg": "49.8033332824707", + "longitude_deg": "18.23055648803711", + "elevation_ft": "758", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-MO", + "municipality": "Ostrava", + "scheduled_service": "no" + }, + { + "id": "43937", + "ident": "CZ-0020", + "type": "heliport", + "name": "Šumperk Heliport", + "latitude_deg": "49.95777893066406", + "longitude_deg": "16.963056564331055", + "elevation_ft": "1023", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-OL", + "municipality": "Šumperk", + "scheduled_service": "no" + }, + { + "id": "43938", + "ident": "CZ-0021", + "type": "heliport", + "name": "Tabulový Vrch Heliport", + "latitude_deg": "49.583290100097656", + "longitude_deg": "17.22077751159668", + "elevation_ft": "850", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-OL", + "municipality": "Olomouc", + "scheduled_service": "no" + }, + { + "id": "43939", + "ident": "CZ-0022", + "type": "heliport", + "name": "Teaching Hospital -Surgical Pavilion Heliport", + "latitude_deg": "49.5840950012207", + "longitude_deg": "17.236528396606445", + "elevation_ft": "873", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-OL", + "municipality": "Olomou", + "scheduled_service": "no" + }, + { + "id": "43940", + "ident": "CZ-0023", + "type": "heliport", + "name": "Area Of Fire And Rescue Force Heliport", + "latitude_deg": "49.76388931274414", + "longitude_deg": "16.462499618530273", + "elevation_ft": "1449", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "municipality": "Svitavy", + "scheduled_service": "no" + }, + { + "id": "43941", + "ident": "CZ-0024", + "type": "heliport", + "name": "Hospital Heliport", + "latitude_deg": "49.94138717651367", + "longitude_deg": "15.808333396911621", + "elevation_ft": "925", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "municipality": "Chrudim", + "scheduled_service": "no" + }, + { + "id": "43942", + "ident": "CZ-0025", + "type": "heliport", + "name": "Hospital Heliport", + "latitude_deg": "49.438331604003906", + "longitude_deg": "12.906944274902344", + "elevation_ft": "1521", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PL", + "municipality": "Domažlice", + "scheduled_service": "no" + }, + { + "id": "43943", + "ident": "CZ-0026", + "type": "heliport", + "name": "University Hospital Pilsen Helipad", + "latitude_deg": "49.76357", + "longitude_deg": "13.37701", + "elevation_ft": "1135", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PL", + "municipality": "Plzeň-Lochotín", + "scheduled_service": "no" + }, + { + "id": "43944", + "ident": "CZ-0027", + "type": "heliport", + "name": "Teaching Hospital Na Bulovce Heliport", + "latitude_deg": "50.116111755371094", + "longitude_deg": "14.462499618530273", + "elevation_ft": "845", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PR", + "municipality": "Praha 8", + "scheduled_service": "no" + }, + { + "id": "43945", + "ident": "CZ-0028", + "type": "heliport", + "name": "Teaching Thomayer Hospital Heliport", + "latitude_deg": "50.031944274902344", + "longitude_deg": "14.456944465637207", + "elevation_ft": "755", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PR", + "municipality": "Prague", + "scheduled_service": "no" + }, + { + "id": "43946", + "ident": "CZ-0029", + "type": "heliport", + "name": "Úvn/Central Military Hospital Střešovice -Pavilion Ch 2 Heliport", + "latitude_deg": "50.088890075683594", + "longitude_deg": "14.363056182861328", + "elevation_ft": "1204", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PR", + "municipality": "Prague", + "scheduled_service": "no" + }, + { + "id": "43947", + "ident": "CZ-0030", + "type": "heliport", + "name": "Area Of Fire And Rescue Force Heliport", + "latitude_deg": "50.35194396972656", + "longitude_deg": "14.486944198608398", + "elevation_ft": "557", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Mělník", + "scheduled_service": "no" + }, + { + "id": "43948", + "ident": "CZ-0031", + "type": "heliport", + "name": "Hořín Heliport", + "latitude_deg": "50.344383239746094", + "longitude_deg": "14.438026428222656", + "elevation_ft": "535", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Mělník", + "scheduled_service": "no" + }, + { + "id": "43949", + "ident": "CZ-0032", + "type": "heliport", + "name": "Hospital Heliport", + "latitude_deg": "50.10795974731445", + "longitude_deg": "13.71863842010498", + "elevation_ft": "1112", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Rakovník", + "scheduled_service": "no" + }, + { + "id": "43950", + "ident": "CZ-0033", + "type": "heliport", + "name": "Hospital Heliport", + "latitude_deg": "49.8397216796875", + "longitude_deg": "13.917222023010254", + "elevation_ft": "1161", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Hořovice", + "scheduled_service": "no" + }, + { + "id": "43951", + "ident": "CZ-0034", + "type": "heliport", + "name": "Hospital Heliport", + "latitude_deg": "50.419166564941406", + "longitude_deg": "14.907196044921875", + "elevation_ft": "761", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Mladá Boleslav", + "scheduled_service": "no" + }, + { + "id": "43952", + "ident": "CZ-0035", + "type": "heliport", + "name": "Neratovice Heliport", + "latitude_deg": "50.25416564941406", + "longitude_deg": "14.522777557373047", + "elevation_ft": "558", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Neratovice", + "scheduled_service": "no" + }, + { + "id": "43953", + "ident": "CZ-0036", + "type": "heliport", + "name": "Bukov Heliport", + "latitude_deg": "50.6775016784668", + "longitude_deg": "14.02388858795166", + "elevation_ft": "919", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "municipality": "Ústí Nad Labem", + "scheduled_service": "no" + }, + { + "id": "43954", + "ident": "CZ-0037", + "type": "heliport", + "name": "Hospital Heliport", + "latitude_deg": "50.68000030517578", + "longitude_deg": "14.020833015441895", + "elevation_ft": "932", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "municipality": "Ústí Nad Labem", + "scheduled_service": "no" + }, + { + "id": "43955", + "ident": "CZ-0038", + "type": "heliport", + "name": "Hospital Heliport", + "latitude_deg": "50.45333480834961", + "longitude_deg": "13.411110877990723", + "elevation_ft": "1099", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "municipality": "Chomutov", + "scheduled_service": "no" + }, + { + "id": "43956", + "ident": "CZ-0039", + "type": "heliport", + "name": "Municipal Hospital Heliport", + "latitude_deg": "50.541988372802734", + "longitude_deg": "14.1461763381958", + "elevation_ft": "617", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "municipality": "Litoměřice", + "scheduled_service": "no" + }, + { + "id": "43957", + "ident": "CZ-0040", + "type": "heliport", + "name": "Hospital Heliport", + "latitude_deg": "49.435279846191406", + "longitude_deg": "15.231110572814941", + "elevation_ft": "1709", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "municipality": "Pelhřimov", + "scheduled_service": "no" + }, + { + "id": "43958", + "ident": "CZ-0041", + "type": "heliport", + "name": "Hospital Heliport", + "latitude_deg": "49.5613899230957", + "longitude_deg": "16.06305694580078", + "elevation_ft": "2047", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "municipality": "Nové Město Na Moravě", + "scheduled_service": "no" + }, + { + "id": "43959", + "ident": "CZ-0042", + "type": "heliport", + "name": "Hospital Surgery Department Heliport", + "latitude_deg": "49.61083221435547", + "longitude_deg": "15.572221755981445", + "elevation_ft": "1535", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "municipality": "Havlíčkův Brod", + "scheduled_service": "no" + }, + { + "id": "43960", + "ident": "CZ-0043", + "type": "heliport", + "name": "Střediskový Central Heliport", + "latitude_deg": "49.39860916137695", + "longitude_deg": "15.568056106567383", + "elevation_ft": "1752", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "municipality": "Jihlava", + "scheduled_service": "no" + }, + { + "id": "43961", + "ident": "CZ-0044", + "type": "heliport", + "name": "Bat’A Hospital Heliport", + "latitude_deg": "49.22614669799805", + "longitude_deg": "17.705345153808594", + "elevation_ft": "738", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ZL", + "municipality": "Zlín", + "scheduled_service": "no" + }, + { + "id": "43962", + "ident": "CZ-0045", + "type": "heliport", + "name": "Hospital Heliport", + "latitude_deg": "49.29138946533203", + "longitude_deg": "17.381389617919922", + "elevation_ft": "666", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ZL", + "municipality": "Kroměříž", + "scheduled_service": "no" + }, + { + "id": "312161", + "ident": "CZ-0046", + "type": "heliport", + "name": "Krumau Hospital Helipad", + "latitude_deg": "48.8163", + "longitude_deg": "14.3252", + "elevation_ft": "1697", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "Český Krumlov", + "scheduled_service": "no" + }, + { + "id": "312162", + "ident": "CZ-0047", + "type": "heliport", + "name": "Prachatice Hospital Helipad", + "latitude_deg": "49.00705", + "longitude_deg": "14.00958", + "elevation_ft": "1980", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "Prachatice", + "scheduled_service": "no" + }, + { + "id": "315488", + "ident": "CZ-0048", + "type": "small_airport", + "name": "Borek", + "latitude_deg": "50.2108813", + "longitude_deg": "14.6574049", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "scheduled_service": "no", + "home_link": "http://www.letisteborek.cz/" + }, + { + "id": "315494", + "ident": "CZ-0049", + "type": "small_airport", + "name": "Zvole Western", + "latitude_deg": "49.4747722", + "longitude_deg": "16.2148815", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "scheduled_service": "no" + }, + { + "id": "315495", + "ident": "CZ-0050", + "type": "small_airport", + "name": "Pěnčín", + "latitude_deg": "49.5682909", + "longitude_deg": "16.9991842", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-OL", + "scheduled_service": "no" + }, + { + "id": "315664", + "ident": "CZ-0051", + "type": "small_airport", + "name": "Bezdružice Airstrip", + "latitude_deg": "49.899713", + "longitude_deg": "12.964956", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PL", + "scheduled_service": "no", + "local_code": "LKBEZD" + }, + { + "id": "315674", + "ident": "CZ-0052", + "type": "small_airport", + "name": "Letisko Veľká Ida", + "latitude_deg": "48.5992279", + "longitude_deg": "21.1598857", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "scheduled_service": "no" + }, + { + "id": "315762", + "ident": "CZ-0053", + "type": "small_airport", + "name": "Bynovec Airport", + "latitude_deg": "50.826389", + "longitude_deg": "14.2675", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "municipality": "Bynovec", + "scheduled_service": "no" + }, + { + "id": "315763", + "ident": "CZ-0054", + "type": "small_airport", + "name": "Česká Lípa Ramŝ", + "latitude_deg": "50.641667", + "longitude_deg": "14.541389", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-LI", + "scheduled_service": "no" + }, + { + "id": "315764", + "ident": "CZ-0055", + "type": "small_airport", + "name": "Česká Třebová Airstrip", + "latitude_deg": "49.91", + "longitude_deg": "16.455278", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "municipality": "Česká Třebová", + "scheduled_service": "no", + "local_code": "LKCTRE" + }, + { + "id": "315765", + "ident": "CZ-0056", + "type": "small_airport", + "name": "Český Dub", + "latitude_deg": "50.678056", + "longitude_deg": "14.999722", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-LI", + "scheduled_service": "no" + }, + { + "id": "331511", + "ident": "CZ-0057", + "type": "small_airport", + "name": "Vodňany Airstrip", + "latitude_deg": "49.12821", + "longitude_deg": "14.17325", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "scheduled_service": "no" + }, + { + "id": "315905", + "ident": "CZ-0058", + "type": "small_airport", + "name": "Částkovice private ULM", + "latitude_deg": "49.409349", + "longitude_deg": "15.143687", + "elevation_ft": "1926", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "scheduled_service": "no", + "home_link": "http://www.lmk-castkovice.cz", + "keywords": "LKNO" + }, + { + "id": "315908", + "ident": "CZ-0059", + "type": "small_airport", + "name": "Private ULM Chabeřice", + "latitude_deg": "49.7475687", + "longitude_deg": "15.0642404", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Chabeřice", + "scheduled_service": "no" + }, + { + "id": "316034", + "ident": "CZ-0060", + "type": "small_airport", + "name": "Studenec Ultralight", + "latitude_deg": "50.549584", + "longitude_deg": "15.535908", + "elevation_ft": "1804", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "municipality": "Studenec", + "scheduled_service": "no", + "local_code": "LKSTUD" + }, + { + "id": "316070", + "ident": "CZ-0061", + "type": "small_airport", + "name": "Teplice", + "latitude_deg": "50.620833", + "longitude_deg": "13.810556", + "elevation_ft": "1148", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "scheduled_service": "no", + "local_code": "LKTEPL" + }, + { + "id": "316163", + "ident": "CZ-0062", + "type": "small_airport", + "name": "Chotěšov UL", + "latitude_deg": "49.651667", + "longitude_deg": "13.189722", + "elevation_ft": "1181", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PL", + "municipality": "Chotěšov", + "scheduled_service": "no" + }, + { + "id": "316177", + "ident": "CZ-0063", + "type": "small_airport", + "name": "Kotvrdovice UL", + "latitude_deg": "49.364167", + "longitude_deg": "16.784167", + "elevation_ft": "1860", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "scheduled_service": "no", + "local_code": "LKKOTV", + "home_link": "http://letiste.kotvrdovice.cz" + }, + { + "id": "316178", + "ident": "CZ-0064", + "type": "small_airport", + "name": "Kramolín UL", + "latitude_deg": "48.915", + "longitude_deg": "14.726389", + "elevation_ft": "1650", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "Kramolín", + "scheduled_service": "no", + "local_code": "LKKRAM" + }, + { + "id": "316207", + "ident": "CZ-0065", + "type": "small_airport", + "name": "Jiřičky UL", + "latitude_deg": "49.552222", + "longitude_deg": "15.155556", + "elevation_ft": "1683", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "municipality": "Jiřičky", + "scheduled_service": "no", + "keywords": "LKZE" + }, + { + "id": "316210", + "ident": "CZ-0066", + "type": "small_airport", + "name": "Kaplice UL", + "latitude_deg": "48.718611", + "longitude_deg": "14.450556", + "elevation_ft": "2100", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "Kaplice", + "scheduled_service": "no" + }, + { + "id": "316219", + "ident": "CZ-0067", + "type": "small_airport", + "name": "Frymburk UL", + "latitude_deg": "48.698611", + "longitude_deg": "14.1975", + "elevation_ft": "2618", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "Frymburk", + "scheduled_service": "no", + "local_code": "LKFRYM", + "home_link": "http://www.alfa-air.cz" + }, + { + "id": "316222", + "ident": "CZ-0068", + "type": "heliport", + "name": "Dobšice Heliport", + "latitude_deg": "50.1194888889", + "longitude_deg": "15.2806083333", + "elevation_ft": "701", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "scheduled_service": "no" + }, + { + "id": "316223", + "ident": "CZ-0069", + "type": "small_airport", + "name": "Druzcov U Lípy UL", + "latitude_deg": "50.728056", + "longitude_deg": "14.924722", + "elevation_ft": "1509", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-LI", + "municipality": "Druzcov U Lípy", + "scheduled_service": "no" + }, + { + "id": "316323", + "ident": "CZ-0070", + "type": "small_airport", + "name": "Stará voda", + "latitude_deg": "49.9971221", + "longitude_deg": "12.5773792", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KA", + "scheduled_service": "no" + }, + { + "id": "316351", + "ident": "CZ-0071", + "type": "small_airport", + "name": "Vrátkov", + "latitude_deg": "50.039444", + "longitude_deg": "14.821667", + "elevation_ft": "1033", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "scheduled_service": "no" + }, + { + "id": "316438", + "ident": "CZ-0072", + "type": "small_airport", + "name": "BURANOS Aires UL", + "latitude_deg": "50.008611", + "longitude_deg": "14.039167", + "elevation_ft": "1247", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "scheduled_service": "no" + }, + { + "id": "316520", + "ident": "CZ-0073", + "type": "small_airport", + "name": "Bořitov UL", + "latitude_deg": "49.4361111", + "longitude_deg": "16.5941667", + "elevation_ft": "1247", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "scheduled_service": "no" + }, + { + "id": "316525", + "ident": "CZ-0074", + "type": "small_airport", + "name": "Miroslav Aircon UL", + "latitude_deg": "48.931667", + "longitude_deg": "16.339722", + "elevation_ft": "715", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "municipality": "Miroslav", + "scheduled_service": "no", + "local_code": "LKMIRA", + "home_link": "http://www.aircon-miroslav.cz" + }, + { + "id": "316640", + "ident": "CZ-0075", + "type": "small_airport", + "name": "Slušovice", + "latitude_deg": "49.2588889", + "longitude_deg": "17.8133333", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ZL", + "scheduled_service": "no" + }, + { + "id": "316641", + "ident": "CZ-0076", + "type": "closed", + "name": "Milovice Air Base", + "latitude_deg": "50.236111", + "longitude_deg": "14.922222", + "elevation_ft": "650", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Milovice", + "scheduled_service": "no", + "gps_code": "LKML", + "keywords": "Mladá" + }, + { + "id": "316642", + "ident": "CZ-0077", + "type": "small_airport", + "name": "Chřibská", + "latitude_deg": "50.8580556", + "longitude_deg": "14.4669444", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "scheduled_service": "no" + }, + { + "id": "316643", + "ident": "CZ-0078", + "type": "small_airport", + "name": "Polepy", + "latitude_deg": "50.5213889", + "longitude_deg": "14.2716667", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "scheduled_service": "no" + }, + { + "id": "316644", + "ident": "CZ-0079", + "type": "small_airport", + "name": "Říčany", + "latitude_deg": "49.9744444", + "longitude_deg": "14.6491667", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "scheduled_service": "no" + }, + { + "id": "316645", + "ident": "CZ-0080", + "type": "small_airport", + "name": "Sázava", + "latitude_deg": "49.8877778", + "longitude_deg": "14.9394444", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "scheduled_service": "no" + }, + { + "id": "316646", + "ident": "CZ-0081", + "type": "small_airport", + "name": "Třebíč", + "latitude_deg": "49.1983333", + "longitude_deg": "15.9030556", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "scheduled_service": "no" + }, + { + "id": "316648", + "ident": "CZ-0082", + "type": "small_airport", + "name": "Borovník", + "latitude_deg": "49.3586111", + "longitude_deg": "16.2422222", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "scheduled_service": "no" + }, + { + "id": "316649", + "ident": "CZ-0083", + "type": "small_airport", + "name": "Škudly", + "latitude_deg": "50.0219444", + "longitude_deg": "15.5205556", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "scheduled_service": "no" + }, + { + "id": "316650", + "ident": "CZ-0084", + "type": "small_airport", + "name": "Dačice", + "latitude_deg": "49.07", + "longitude_deg": "15.4558333", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "scheduled_service": "no" + }, + { + "id": "316656", + "ident": "CZ-0085", + "type": "small_airport", + "name": "Jehnědí", + "latitude_deg": "49.965", + "longitude_deg": "16.3097222", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "scheduled_service": "no" + }, + { + "id": "316657", + "ident": "CZ-0086", + "type": "small_airport", + "name": "Kunětice", + "latitude_deg": "50.0683333", + "longitude_deg": "15.8125", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "scheduled_service": "no" + }, + { + "id": "316658", + "ident": "CZ-0087", + "type": "small_airport", + "name": "Charvátce", + "latitude_deg": "50.4336111", + "longitude_deg": "13.8113889", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "scheduled_service": "no" + }, + { + "id": "316659", + "ident": "CZ-0088", + "type": "small_airport", + "name": "Letovice", + "latitude_deg": "49.5466667", + "longitude_deg": "16.5986111", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "scheduled_service": "no" + }, + { + "id": "316660", + "ident": "CZ-0089", + "type": "small_airport", + "name": "Lomnice nad Popelkou", + "latitude_deg": "50.54", + "longitude_deg": "15.3880556", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-LI", + "scheduled_service": "no" + }, + { + "id": "316680", + "ident": "CZ-0090", + "type": "small_airport", + "name": "Boršice", + "latitude_deg": "49.0513889", + "longitude_deg": "17.3675", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ZL", + "scheduled_service": "no" + }, + { + "id": "316681", + "ident": "CZ-0091", + "type": "small_airport", + "name": "Horní Počáply", + "latitude_deg": "50.4180556", + "longitude_deg": "14.3841667", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "scheduled_service": "no" + }, + { + "id": "316684", + "ident": "CZ-0092", + "type": "small_airport", + "name": "Strážnice", + "latitude_deg": "48.8877778", + "longitude_deg": "17.2944444", + "elevation_ft": "614", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "scheduled_service": "no" + }, + { + "id": "316685", + "ident": "CZ-0093", + "type": "small_airport", + "name": "Boleradice", + "latitude_deg": "48.9619444", + "longitude_deg": "16.8316667", + "elevation_ft": "649", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "scheduled_service": "no" + }, + { + "id": "316691", + "ident": "CZ-0094", + "type": "small_airport", + "name": "Opava", + "latitude_deg": "49.9405556", + "longitude_deg": "17.9861111", + "elevation_ft": "850", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-MO", + "scheduled_service": "no" + }, + { + "id": "316807", + "ident": "CZ-0095", + "type": "small_airport", + "name": "Doudleby", + "latitude_deg": "48.8851123", + "longitude_deg": "14.4862242", + "elevation_ft": "1542", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "scheduled_service": "no" + }, + { + "id": "317681", + "ident": "CZ-0096", + "type": "small_airport", + "name": "Hory", + "latitude_deg": "50.21695", + "longitude_deg": "12.77669", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KA", + "scheduled_service": "no" + }, + { + "id": "317687", + "ident": "CZ-0097", + "type": "small_airport", + "name": "Dvorce", + "latitude_deg": "48.99913", + "longitude_deg": "14.72214", + "elevation_ft": "1509", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "Třeboň", + "scheduled_service": "no", + "local_code": "LKTRED", + "home_link": "http://www.dvorce.cz" + }, + { + "id": "317697", + "ident": "CZ-0098", + "type": "small_airport", + "name": "Ostrov", + "latitude_deg": "50.3366667", + "longitude_deg": "12.9697222", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KA", + "scheduled_service": "no", + "wikipedia_link": "http://wikimapia.org/20229335/cs/Leti%C5%A1t%C4%9B-Ostrov" + }, + { + "id": "317698", + "ident": "CZ-0099", + "type": "small_airport", + "name": "Bystřice", + "latitude_deg": "49.5227778", + "longitude_deg": "16.2322222", + "elevation_ft": "1942", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "municipality": "Bystřice", + "scheduled_service": "no", + "keywords": "Bystřice nad Pernštejnem" + }, + { + "id": "317781", + "ident": "CZ-0100", + "type": "small_airport", + "name": "Choteč", + "latitude_deg": "50.4338889", + "longitude_deg": "15.5305556", + "elevation_ft": "1076", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "scheduled_service": "no", + "home_link": "http://letiste-chotec.josefrydl.cz" + }, + { + "id": "317836", + "ident": "CZ-0101", + "type": "small_airport", + "name": "Dětřichov Oáza", + "latitude_deg": "49.7291667", + "longitude_deg": "17.1180556", + "elevation_ft": "751", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-OL", + "municipality": "Litovel", + "scheduled_service": "no", + "home_link": "http://www.letisteoaza.ic.cz" + }, + { + "id": "317839", + "ident": "CZ-0102", + "type": "small_airport", + "name": "Záhoří", + "latitude_deg": "49.466389", + "longitude_deg": "17.665278", + "elevation_ft": "1040", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-OL", + "scheduled_service": "no" + }, + { + "id": "317875", + "ident": "CZ-0103", + "type": "closed", + "name": "Střemy Airstrip", + "latitude_deg": "50.385", + "longitude_deg": "14.577222", + "elevation_ft": "988", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Střemy", + "scheduled_service": "no" + }, + { + "id": "317878", + "ident": "CZ-0104", + "type": "small_airport", + "name": "Plešnice Airport", + "latitude_deg": "49.772222", + "longitude_deg": "13.162222", + "elevation_ft": "1339", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PL", + "municipality": "Plešnice", + "scheduled_service": "no" + }, + { + "id": "317881", + "ident": "CZ-0105", + "type": "small_airport", + "name": "Rohozec", + "latitude_deg": "49.9819444", + "longitude_deg": "15.3927778", + "elevation_ft": "679", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "scheduled_service": "no", + "home_link": "http://www.avzo-nd.cz" + }, + { + "id": "318901", + "ident": "CZ-0106", + "type": "small_airport", + "name": "Sazomín Ultralight Field", + "latitude_deg": "49.5086111", + "longitude_deg": "15.9711111", + "elevation_ft": "1827", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "municipality": "Sazomín", + "scheduled_service": "no", + "local_code": "LKSAZO" + }, + { + "id": "320301", + "ident": "CZ-0107", + "type": "small_airport", + "name": "Litoměřice", + "latitude_deg": "50.526515", + "longitude_deg": "14.18616", + "elevation_ft": "492", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "scheduled_service": "no", + "local_code": "LKLMER" + }, + { + "id": "320317", + "ident": "CZ-0108", + "type": "small_airport", + "name": "Bezno Airstrip", + "latitude_deg": "50.356925", + "longitude_deg": "14.8068316", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Bezno", + "scheduled_service": "no" + }, + { + "id": "320355", + "ident": "CZ-0109", + "type": "small_airport", + "name": "Dušníky ULM", + "latitude_deg": "50.4127778", + "longitude_deg": "14.1980556", + "elevation_ft": "728", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "scheduled_service": "no", + "local_code": "LKDUSN" + }, + { + "id": "320356", + "ident": "CZ-0110", + "type": "small_airport", + "name": "Miroslav ULM", + "latitude_deg": "48.9313889", + "longitude_deg": "16.2986111", + "elevation_ft": "781", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "scheduled_service": "no", + "local_code": "LKMIRO" + }, + { + "id": "320394", + "ident": "CZ-0111", + "type": "small_airport", + "name": "Příchvoj Airstrip", + "latitude_deg": "50.44135", + "longitude_deg": "15.235979", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "municipality": "Příchvoj", + "scheduled_service": "no" + }, + { + "id": "320395", + "ident": "CZ-0112", + "type": "small_airport", + "name": "Kralovice Airstrip", + "latitude_deg": "49.985091", + "longitude_deg": "13.528817", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PL", + "scheduled_service": "no" + }, + { + "id": "320396", + "ident": "CZ-0113", + "type": "small_airport", + "name": "Katovice Airstrip", + "latitude_deg": "49.268355", + "longitude_deg": "13.800776", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "scheduled_service": "no" + }, + { + "id": "320397", + "ident": "CZ-0114", + "type": "closed", + "name": "Dolní Tošanovice Airstrip", + "latitude_deg": "49.682351", + "longitude_deg": "18.479829", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-MO", + "municipality": "Dolní Tošanovice", + "scheduled_service": "no" + }, + { + "id": "320402", + "ident": "CZ-0115", + "type": "small_airport", + "name": "Kněžmost Airstrip", + "latitude_deg": "50.478623", + "longitude_deg": "15.005508", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Kněžmost", + "scheduled_service": "no", + "local_code": "ULKNEZ" + }, + { + "id": "320403", + "ident": "CZ-0116", + "type": "small_airport", + "name": "Dynín Airstrip", + "latitude_deg": "49.128341", + "longitude_deg": "14.633441", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "Dynín u Třeboně", + "scheduled_service": "no", + "local_code": "ULDYNI" + }, + { + "id": "320404", + "ident": "CZ-0117", + "type": "small_airport", + "name": "Zbudov Airstrip", + "latitude_deg": "50.111532", + "longitude_deg": "16.517451", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "municipality": "Zbudov u Žamberka", + "scheduled_service": "no", + "local_code": "ULZBUD" + }, + { + "id": "320405", + "ident": "CZ-0118", + "type": "small_airport", + "name": "Kozojedy Airstrip", + "latitude_deg": "50.325005", + "longitude_deg": "15.388904", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "municipality": "Kozojedy", + "scheduled_service": "no", + "local_code": "ULKOZO" + }, + { + "id": "320406", + "ident": "CZ-0119", + "type": "small_airport", + "name": "Letiště Poličná / Juřinka", + "latitude_deg": "49.4763957", + "longitude_deg": "17.9254001", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ZL", + "municipality": "Valašské Meziříčí", + "scheduled_service": "no", + "local_code": "ULVMEZ" + }, + { + "id": "320463", + "ident": "CZ-0120", + "type": "small_airport", + "name": "Letiště Ivančice u Brna", + "latitude_deg": "49.0953743", + "longitude_deg": "16.4805158", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "municipality": "Ivančice u Brna", + "scheduled_service": "no" + }, + { + "id": "320480", + "ident": "CZ-0121", + "type": "small_airport", + "name": "Kelč Airstrip", + "latitude_deg": "49.4577713", + "longitude_deg": "17.8201705", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ZL", + "municipality": "Kelč", + "scheduled_service": "no" + }, + { + "id": "320503", + "ident": "CZ-0122", + "type": "small_airport", + "name": "Chotěnov Airstrip", + "latitude_deg": "49.824177", + "longitude_deg": "16.194713", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "municipality": "Chotěnov", + "scheduled_service": "no" + }, + { + "id": "320509", + "ident": "CZ-0123", + "type": "small_airport", + "name": "Štětí Airstrip", + "latitude_deg": "50.465", + "longitude_deg": "14.4061111", + "elevation_ft": "787", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "municipality": "Štětí", + "scheduled_service": "no", + "local_code": "LKSTET" + }, + { + "id": "320511", + "ident": "CZ-0124", + "type": "small_airport", + "name": "Letiště Všeň", + "latitude_deg": "50.55596", + "longitude_deg": "15.09287", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-LI", + "municipality": "Všeň", + "scheduled_service": "no", + "local_code": "LKVSEN", + "home_link": "http://www.lkvsen.websnadno.cz" + }, + { + "id": "320563", + "ident": "CZ-0125", + "type": "small_airport", + "name": "Letiště Kněžice u Jičína", + "latitude_deg": "50.262998", + "longitude_deg": "15.297407", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Kněžice u Jičína", + "scheduled_service": "no", + "local_code": "ULKNZC" + }, + { + "id": "320564", + "ident": "CZ-0126", + "type": "small_airport", + "name": "Letiště Poděbrady", + "latitude_deg": "50.1844783", + "longitude_deg": "15.1663157", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Poděbrady", + "scheduled_service": "no", + "local_code": "ULPODE" + }, + { + "id": "320675", + "ident": "CZ-0127", + "type": "small_airport", + "name": "Opava - Kylešovice Airstrip", + "latitude_deg": "49.899167", + "longitude_deg": "17.922959", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-MO", + "municipality": "Opava", + "scheduled_service": "no", + "local_code": "ULOPAK" + }, + { + "id": "320718", + "ident": "CZ-0128", + "type": "small_airport", + "name": "Velké Pavlovice ULM", + "latitude_deg": "48.880556", + "longitude_deg": "16.825", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "municipality": "Velké Pavlovice", + "scheduled_service": "no", + "local_code": "LKPAVL" + }, + { + "id": "320900", + "ident": "CZ-0129", + "type": "small_airport", + "name": "Osičiny Airstrip", + "latitude_deg": "50.015833", + "longitude_deg": "14.772222", + "elevation_ft": "1280", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Osičiny", + "scheduled_service": "no", + "local_code": "LKOSIC" + }, + { + "id": "320944", + "ident": "CZ-0130", + "type": "small_airport", + "name": "Libchava Airstrip", + "latitude_deg": "50.703161", + "longitude_deg": "14.49922", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-LI", + "municipality": "Libchava", + "scheduled_service": "no" + }, + { + "id": "321024", + "ident": "CZ-0131", + "type": "small_airport", + "name": "Želeč Airstrip", + "latitude_deg": "49.3305554", + "longitude_deg": "14.6588888", + "elevation_ft": "1513", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "scheduled_service": "no" + }, + { + "id": "321025", + "ident": "CZ-0132", + "type": "small_airport", + "name": "Bojkovice Airfield", + "latitude_deg": "49.0302777", + "longitude_deg": "17.8172221", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ZL", + "scheduled_service": "no", + "home_link": "http://www.letiste-bojkovice.cz" + }, + { + "id": "321061", + "ident": "CZ-0133", + "type": "small_airport", + "name": "Křinec Airstrip", + "latitude_deg": "50.2547", + "longitude_deg": "15.125108", + "elevation_ft": "646", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Křinec", + "scheduled_service": "no" + }, + { + "id": "321063", + "ident": "CZ-0134", + "type": "small_airport", + "name": "Nová Včelnice Airstrip", + "latitude_deg": "49.2672221", + "longitude_deg": "15.0777777", + "elevation_ft": "1765", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "scheduled_service": "no" + }, + { + "id": "321089", + "ident": "CZ-0135", + "type": "small_airport", + "name": "Litomyšl Airstrip", + "latitude_deg": "49.8744443", + "longitude_deg": "16.3352777", + "elevation_ft": "1258", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "municipality": "Litomyšl", + "scheduled_service": "no" + }, + { + "id": "321090", + "ident": "CZ-0136", + "type": "small_airport", + "name": "Strachotice Airstrip", + "latitude_deg": "48.806369", + "longitude_deg": "16.162371", + "elevation_ft": "695", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "scheduled_service": "no" + }, + { + "id": "321091", + "ident": "CZ-0137", + "type": "small_airport", + "name": "Radovesice Airfield", + "latitude_deg": "50.4088888", + "longitude_deg": "14.0838888", + "elevation_ft": "538", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "scheduled_service": "no" + }, + { + "id": "321098", + "ident": "CZ-0138", + "type": "small_airport", + "name": "Loučeň Airstrip", + "latitude_deg": "50.2787436", + "longitude_deg": "15.0610071", + "elevation_ft": "636", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Loučeň", + "scheduled_service": "no" + }, + { + "id": "321099", + "ident": "CZ-0139", + "type": "closed", + "name": "Letiště Košice u Tábora", + "latitude_deg": "49.318055", + "longitude_deg": "14.749167", + "elevation_ft": "1516", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "Košice u Tábora", + "scheduled_service": "no" + }, + { + "id": "321143", + "ident": "CZ-0140", + "type": "closed", + "name": "Černovice u Tábora Airstrip", + "latitude_deg": "49.3761111", + "longitude_deg": "14.9938889", + "elevation_ft": "2175", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "scheduled_service": "no" + }, + { + "id": "321144", + "ident": "CZ-0141", + "type": "small_airport", + "name": "Libkovice", + "latitude_deg": "50.5613889", + "longitude_deg": "13.6838889", + "elevation_ft": "909", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "scheduled_service": "no" + }, + { + "id": "321321", + "ident": "CZ-0142", + "type": "small_airport", + "name": "Zbilidy UL", + "latitude_deg": "49.448033", + "longitude_deg": "15.440085", + "elevation_ft": "2071", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "scheduled_service": "no" + }, + { + "id": "321499", + "ident": "CZ-0143", + "type": "small_airport", + "name": "Letiště Stará Paka", + "latitude_deg": "50.5013889", + "longitude_deg": "15.4830556", + "elevation_ft": "1588", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "municipality": "Stará Paka", + "scheduled_service": "no", + "local_code": "LKSPAK" + }, + { + "id": "321506", + "ident": "CZ-0144", + "type": "closed", + "name": "Letiště Velešín", + "latitude_deg": "48.826667", + "longitude_deg": "14.449167", + "elevation_ft": "1837", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "Velešín", + "scheduled_service": "no", + "local_code": "LKVELE" + }, + { + "id": "321516", + "ident": "CZ-0145", + "type": "small_airport", + "name": "Lipová Airstrip", + "latitude_deg": "51.008731", + "longitude_deg": "14.343853", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "municipality": "Lipová", + "scheduled_service": "no" + }, + { + "id": "321537", + "ident": "CZ-0146", + "type": "small_airport", + "name": "Jinošov Airstrip", + "latitude_deg": "49.2275", + "longitude_deg": "16.1738889", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "municipality": "Jinošov", + "scheduled_service": "no" + }, + { + "id": "321662", + "ident": "CZ-0147", + "type": "small_airport", + "name": "Bánov Airstrip", + "latitude_deg": "48.983399", + "longitude_deg": "17.704586", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ZL", + "municipality": "Bánov", + "scheduled_service": "no" + }, + { + "id": "321668", + "ident": "CZ-0148", + "type": "small_airport", + "name": "Veselí", + "latitude_deg": "50.0069444", + "longitude_deg": "15.6177777", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "municipality": "Veselí u Přelouče", + "scheduled_service": "no", + "home_link": "http://www.leteckaskola-prelouc.cz/" + }, + { + "id": "321738", + "ident": "CZ-0149", + "type": "small_airport", + "name": "Komárovice Airstrip", + "latitude_deg": "49.339634", + "longitude_deg": "15.673489", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "municipality": "Komárovice", + "scheduled_service": "no" + }, + { + "id": "322254", + "ident": "CZ-0150", + "type": "small_airport", + "name": "Milotice Airstrip", + "latitude_deg": "48.936159", + "longitude_deg": "17.124342", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "municipality": "Milotice", + "scheduled_service": "no" + }, + { + "id": "323115", + "ident": "CZ-0151", + "type": "closed", + "name": "Baška", + "latitude_deg": "49.643056", + "longitude_deg": "18.351667", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-MO", + "municipality": "Baška", + "scheduled_service": "no", + "local_code": "LKBASK" + }, + { + "id": "323117", + "ident": "CZ-0152", + "type": "small_airport", + "name": "Trutnov", + "latitude_deg": "50.5675", + "longitude_deg": "15.865278", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "municipality": "Trutnov", + "scheduled_service": "no", + "local_code": "LKTRUT" + }, + { + "id": "323118", + "ident": "CZ-0153", + "type": "small_airport", + "name": "Místek", + "latitude_deg": "49.6527778", + "longitude_deg": "18.3458333", + "elevation_ft": "1066", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-MO", + "municipality": "Místek", + "scheduled_service": "no", + "local_code": "LKMIST" + }, + { + "id": "323186", + "ident": "CZ-0154", + "type": "small_airport", + "name": "Letiště Hať u Hlučína", + "latitude_deg": "49.951812", + "longitude_deg": "18.2651648", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-MO", + "municipality": "Hať", + "scheduled_service": "no", + "local_code": "LKHATH" + }, + { + "id": "323242", + "ident": "CZ-0155", + "type": "small_airport", + "name": "Letiště Náchod", + "latitude_deg": "50.4130556", + "longitude_deg": "16.1216667", + "elevation_ft": "1443", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "scheduled_service": "no", + "local_code": "LKNACH" + }, + { + "id": "323305", + "ident": "CZ-0156", + "type": "small_airport", + "name": "Moravský Beroun", + "latitude_deg": "49.786111", + "longitude_deg": "17.486111", + "elevation_ft": "2218", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-OL", + "municipality": "Moravský Beroun", + "scheduled_service": "no", + "local_code": "LKMBER" + }, + { + "id": "323308", + "ident": "CZ-0157", + "type": "small_airport", + "name": "Šumvald Ultralight Airstrip", + "latitude_deg": "49.845196", + "longitude_deg": "17.138485", + "elevation_ft": "902", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-OL", + "municipality": "Šumvald", + "scheduled_service": "no", + "local_code": "LKSUMV" + }, + { + "id": "323646", + "ident": "CZ-0158", + "type": "small_airport", + "name": "Sedliště Airstrip", + "latitude_deg": "49.7220654", + "longitude_deg": "18.3749167", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-MO", + "municipality": "Sedliště", + "scheduled_service": "no" + }, + { + "id": "323740", + "ident": "CZ-0159", + "type": "small_airport", + "name": "Konojedy Airstrip", + "latitude_deg": "49.9511008", + "longitude_deg": "14.8699442", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Konojedy", + "scheduled_service": "no" + }, + { + "id": "324047", + "ident": "CZ-0160", + "type": "small_airport", + "name": "Milhostov Airfield", + "latitude_deg": "50.163803", + "longitude_deg": "12.462752", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KA", + "municipality": "Milhostov", + "scheduled_service": "no" + }, + { + "id": "324117", + "ident": "CZ-0161", + "type": "small_airport", + "name": "Letiště Luhačovice", + "latitude_deg": "49.088188", + "longitude_deg": "17.718769", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ZL", + "municipality": "Luhačovice", + "scheduled_service": "no", + "gps_code": "LKLU" + }, + { + "id": "325352", + "ident": "CZ-0162", + "type": "small_airport", + "name": "Letiště Mladá", + "latitude_deg": "50.243594", + "longitude_deg": "14.8558562", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "scheduled_service": "no", + "local_code": "LKMLAD" + }, + { + "id": "326492", + "ident": "CZ-0163", + "type": "small_airport", + "name": "Hatě", + "latitude_deg": "48.7615521", + "longitude_deg": "16.0554078", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "municipality": "Hatě", + "scheduled_service": "no", + "keywords": "Excalibur" + }, + { + "id": "328779", + "ident": "CZ-0164", + "type": "small_airport", + "name": "Hrochův Týnec Airstrip", + "latitude_deg": "49.9462027", + "longitude_deg": "15.8954004", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "municipality": "Hrochův Týnec", + "scheduled_service": "no", + "local_code": "ULHTYN" + }, + { + "id": "331647", + "ident": "CZ-0165", + "type": "small_airport", + "name": "Bořetice Airstrip", + "latitude_deg": "48.9170378", + "longitude_deg": "16.8413172", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "scheduled_service": "no" + }, + { + "id": "333103", + "ident": "CZ-0166", + "type": "small_airport", + "name": "Chvojenec Airstrip", + "latitude_deg": "50.105662", + "longitude_deg": "15.925798", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "scheduled_service": "no", + "local_code": "LKCHVO" + }, + { + "id": "333591", + "ident": "CZ-0167", + "type": "small_airport", + "name": "Dolní Bojanovice Airstrip", + "latitude_deg": "48.85482", + "longitude_deg": "17.01794", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "scheduled_service": "no" + }, + { + "id": "334098", + "ident": "CZ-0168", + "type": "small_airport", + "name": "Šeborov Airstrip", + "latitude_deg": "49.356253", + "longitude_deg": "15.926403", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "scheduled_service": "no" + }, + { + "id": "334166", + "ident": "CZ-0169", + "type": "small_airport", + "name": "Letiště Kejžlice", + "latitude_deg": "49.591899", + "longitude_deg": "15.401365", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "scheduled_service": "no", + "local_code": "LKKEJZ", + "home_link": "http://letistekejzlice.cz" + }, + { + "id": "341290", + "ident": "CZ-0170", + "type": "small_airport", + "name": "Budkovice Airfield", + "latitude_deg": "49.079657", + "longitude_deg": "16.355124", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "scheduled_service": "no", + "local_code": "LKBUDK", + "keywords": "Czech Heaven" + }, + { + "id": "342644", + "ident": "CZ-0171", + "type": "small_airport", + "name": "Rovná Airstrip", + "latitude_deg": "50.10129", + "longitude_deg": "12.67911", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KA", + "scheduled_service": "no" + }, + { + "id": "345217", + "ident": "CZ-0172", + "type": "small_airport", + "name": "Letiště Orlová", + "latitude_deg": "49.85503", + "longitude_deg": "18.43521", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-MO", + "scheduled_service": "no" + }, + { + "id": "345235", + "ident": "CZ-0173", + "type": "small_airport", + "name": "Dolany Airstrip", + "latitude_deg": "50.39862", + "longitude_deg": "15.98741", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "scheduled_service": "no" + }, + { + "id": "345635", + "ident": "CZ-0174", + "type": "small_airport", + "name": "Strachotín u Mikulova Airstrip", + "latitude_deg": "48.91722", + "longitude_deg": "16.65883", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "scheduled_service": "no", + "local_code": "ULSTCH" + }, + { + "id": "345654", + "ident": "CZ-0175", + "type": "small_airport", + "name": "Bobrová Airstrip UL", + "latitude_deg": "49.4955", + "longitude_deg": "16.10199", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "scheduled_service": "no" + }, + { + "id": "346202", + "ident": "CZ-0176", + "type": "small_airport", + "name": "Letiště Třebihošť", + "latitude_deg": "50.43546", + "longitude_deg": "15.69312", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "scheduled_service": "no" + }, + { + "id": "346293", + "ident": "CZ-0177", + "type": "small_airport", + "name": "Luka nad Jihlavou Airstrip", + "latitude_deg": "49.38244", + "longitude_deg": "15.71368", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "scheduled_service": "no" + }, + { + "id": "346374", + "ident": "CZ-0178", + "type": "small_airport", + "name": "Hrabice airstrip", + "latitude_deg": "49.06812", + "longitude_deg": "13.7603", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "scheduled_service": "no" + }, + { + "id": "346616", + "ident": "CZ-0179", + "type": "small_airport", + "name": "Přešťovice Airstrip", + "latitude_deg": "49.28433", + "longitude_deg": "13.96873", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "scheduled_service": "no" + }, + { + "id": "346769", + "ident": "CZ-0180", + "type": "small_airport", + "name": "Airstrip Jestřabí v Krkonoších", + "latitude_deg": "50.68215", + "longitude_deg": "15.48237", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "scheduled_service": "no" + }, + { + "id": "346807", + "ident": "CZ-0181", + "type": "small_airport", + "name": "Manětín Airstrip", + "latitude_deg": "49.9825", + "longitude_deg": "13.22589", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PL", + "scheduled_service": "no" + }, + { + "id": "346839", + "ident": "CZ-0182", + "type": "small_airport", + "name": "Kostelec Airstrip", + "latitude_deg": "49.67076", + "longitude_deg": "13.03224", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PL", + "scheduled_service": "no" + }, + { + "id": "346856", + "ident": "CZ-0183", + "type": "small_airport", + "name": "Moravské Budějovice", + "latitude_deg": "49.04304", + "longitude_deg": "15.82813", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "scheduled_service": "no" + }, + { + "id": "348583", + "ident": "CZ-0184", + "type": "small_airport", + "name": "Jilemnice", + "latitude_deg": "50.6104", + "longitude_deg": "15.538", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "scheduled_service": "no" + }, + { + "id": "348869", + "ident": "CZ-0185", + "type": "small_airport", + "name": "Mříčná Airstrip", + "latitude_deg": "50.59624", + "longitude_deg": "15.48122", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "scheduled_service": "no" + }, + { + "id": "350239", + "ident": "CZ-0186", + "type": "small_airport", + "name": "Radim Airstrip", + "latitude_deg": "49.90654", + "longitude_deg": "16.00662", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "scheduled_service": "no" + }, + { + "id": "352380", + "ident": "CZ-0187", + "type": "small_airport", + "name": "Domaželice Airstrip", + "latitude_deg": "49.444719", + "longitude_deg": "17.541561", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-OL", + "scheduled_service": "no" + }, + { + "id": "352925", + "ident": "CZ-0188", + "type": "small_airport", + "name": "Vyskeř Airstrip", + "latitude_deg": "50.53714", + "longitude_deg": "15.15714", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-LI", + "scheduled_service": "no" + }, + { + "id": "352926", + "ident": "CZ-0189", + "type": "small_airport", + "name": "(Duplicate)Vyskeř Airstrip", + "latitude_deg": "50.53714", + "longitude_deg": "15.15714", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-LI", + "scheduled_service": "no" + }, + { + "id": "353147", + "ident": "CZ-0190", + "type": "small_airport", + "name": "Kněževes Airstrip", + "latitude_deg": "49.4619", + "longitude_deg": "15.98493", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "scheduled_service": "no" + }, + { + "id": "320357", + "ident": "CZ-0191", + "type": "closed", + "name": "Kámen Air Base", + "latitude_deg": "49.417778", + "longitude_deg": "14.993889", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "municipality": "Věžná", + "scheduled_service": "no", + "local_code": "LKPV" + }, + { + "id": "29782", + "ident": "CZ-0192", + "type": "small_airport", + "name": "Choceň Airstrip", + "latitude_deg": "49.97728", + "longitude_deg": "16.184921", + "elevation_ft": "873", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "municipality": "Choceň", + "scheduled_service": "no", + "local_code": "LKCHOC" + }, + { + "id": "30118", + "ident": "CZ-0193", + "type": "closed", + "name": "Mariánské Lázně Airport", + "latitude_deg": "49.922798", + "longitude_deg": "12.7247", + "elevation_ft": "1772", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KA", + "municipality": "Mariánské Lázně", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mari%C3%A1nsk%C3%A9_L%C3%A1zn%C4%9B_Airport", + "keywords": "LKMR, MKA" + }, + { + "id": "316441", + "ident": "CZ-0194", + "type": "small_airport", + "name": "Písek UL Airstrip", + "latitude_deg": "49.339444", + "longitude_deg": "14.113889", + "elevation_ft": "1351", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "Písek", + "scheduled_service": "no", + "local_code": "LKPISK", + "keywords": "LKPK" + }, + { + "id": "355096", + "ident": "CZ-0195", + "type": "heliport", + "name": "Tisá", + "latitude_deg": "50.786995", + "longitude_deg": "14.026666", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "municipality": "Tisá", + "scheduled_service": "no" + }, + { + "id": "355342", + "ident": "CZ-0196", + "type": "heliport", + "name": "FN Motol Helipad", + "latitude_deg": "50.07364", + "longitude_deg": "14.34253", + "elevation_ft": "1128", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PR", + "municipality": "Prague", + "scheduled_service": "no" + }, + { + "id": "356262", + "ident": "CZ-0197", + "type": "small_airport", + "name": "Podbořany Airstrip", + "latitude_deg": "50.25067", + "longitude_deg": "13.40972", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "scheduled_service": "no" + }, + { + "id": "2005", + "ident": "CZAC", + "type": "medium_airport", + "name": "York Landing Airport", + "latitude_deg": "56.08940124511719", + "longitude_deg": "-96.08920288085938", + "elevation_ft": "621", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "York Landing", + "scheduled_service": "yes", + "gps_code": "CZAC", + "iata_code": "ZAC", + "wikipedia_link": "https://en.wikipedia.org/wiki/York_Landing_Airport" + }, + { + "id": "2006", + "ident": "CZAM", + "type": "medium_airport", + "name": "Shuswap Regional Airport", + "latitude_deg": "50.682802", + "longitude_deg": "-119.228996", + "elevation_ft": "1751", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Salmon Arm", + "scheduled_service": "no", + "gps_code": "CZAM", + "iata_code": "YSN", + "home_link": "http://www.salmonarm.ca/index.aspx?nid=228", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salmon_Arm_Airport", + "keywords": "AM4, Shuswap Regional Airport, Salmon Arm Airport" + }, + { + "id": "2007", + "ident": "CZBA", + "type": "small_airport", + "name": "Burlington Executive Airpark", + "latitude_deg": "43.441453", + "longitude_deg": "-79.850103", + "elevation_ft": "602", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "CZBA", + "home_link": "http://www.burlingtonairpark.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Burlington_Executive_Aerodrome", + "keywords": "ZBA" + }, + { + "id": "2008", + "ident": "CZBB", + "type": "medium_airport", + "name": "Boundary Bay Airport", + "latitude_deg": "49.0742", + "longitude_deg": "-123.012001", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Delta", + "scheduled_service": "no", + "gps_code": "CZBB", + "iata_code": "YDT", + "home_link": "http://http://czbb.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boundary_Bay_Airport", + "keywords": "ZBB" + }, + { + "id": "2009", + "ident": "CZBD", + "type": "medium_airport", + "name": "Ilford Airport", + "latitude_deg": "56.05163", + "longitude_deg": "-95.620523", + "elevation_ft": "642", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Ilford", + "scheduled_service": "yes", + "gps_code": "CZBD", + "iata_code": "ILF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ilford_Airport", + "keywords": "ZBD" + }, + { + "id": "2010", + "ident": "CZBF", + "type": "medium_airport", + "name": "Bathurst Airport", + "latitude_deg": "47.6297", + "longitude_deg": "-65.738899", + "elevation_ft": "193", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NB", + "municipality": "South Tetagouche", + "scheduled_service": "yes", + "gps_code": "CZBF", + "iata_code": "ZBF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bathurst_Airport_(New_Brunswick)", + "keywords": "ZBF" + }, + { + "id": "2011", + "ident": "CZBM", + "type": "medium_airport", + "name": "Bromont (Roland Désourdy) Airport", + "latitude_deg": "45.290798", + "longitude_deg": "-72.741402", + "elevation_ft": "375", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Bromont", + "scheduled_service": "no", + "gps_code": "CZBM", + "iata_code": "ZBM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roland-D%C3%A9sourdy_Airport" + }, + { + "id": "2012", + "ident": "CZEE", + "type": "medium_airport", + "name": "Kelsey Airport", + "latitude_deg": "56.0374984741", + "longitude_deg": "-96.50969696039999", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Kelsey", + "scheduled_service": "no", + "gps_code": "CZEE", + "iata_code": "KES", + "local_code": "ZEE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kelsey_Airport" + }, + { + "id": "2013", + "ident": "CZEM", + "type": "medium_airport", + "name": "Eastmain River Airport", + "latitude_deg": "52.22639846801758", + "longitude_deg": "-78.52249908447266", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Eastmain River", + "scheduled_service": "yes", + "gps_code": "CZEM", + "iata_code": "ZEM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eastmain_River_Airport" + }, + { + "id": "353839", + "ident": "CZF2", + "type": "small_airport", + "name": "Dillon Field", + "latitude_deg": "44.19659", + "longitude_deg": "-79.309402", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Zephyr,", + "scheduled_service": "no", + "gps_code": "CZF2", + "local_code": "CZF2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zephyr/Dillon_Field_Aerodrome" + }, + { + "id": "2014", + "ident": "CZFA", + "type": "medium_airport", + "name": "Faro Airport", + "latitude_deg": "62.20750045776367", + "longitude_deg": "-133.37600708007812", + "elevation_ft": "2351", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Faro", + "scheduled_service": "no", + "gps_code": "CZFA", + "iata_code": "ZFA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Faro_Airport_(Yukon)" + }, + { + "id": "2015", + "ident": "CZFD", + "type": "medium_airport", + "name": "Fond-Du-Lac Airport", + "latitude_deg": "59.33440017700195", + "longitude_deg": "-107.18199920654297", + "elevation_ft": "814", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Fond-Du-Lac", + "scheduled_service": "yes", + "gps_code": "CZFD", + "iata_code": "ZFD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fond-du-Lac_Airport" + }, + { + "id": "2016", + "ident": "CZFG", + "type": "medium_airport", + "name": "Pukatawagan Airport", + "latitude_deg": "55.7491989136", + "longitude_deg": "-101.26599884", + "elevation_ft": "958", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Pukatawagan", + "scheduled_service": "no", + "gps_code": "CZFG", + "iata_code": "XPK", + "local_code": "ZFG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pukatawagan_Airport" + }, + { + "id": "2017", + "ident": "CZFM", + "type": "medium_airport", + "name": "Fort Mcpherson Airport", + "latitude_deg": "67.40750122070312", + "longitude_deg": "-134.86099243164062", + "elevation_ft": "116", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Fort Mcpherson", + "scheduled_service": "yes", + "gps_code": "CZFM", + "iata_code": "ZFM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_McPherson_Airport" + }, + { + "id": "2018", + "ident": "CZFN", + "type": "medium_airport", + "name": "Tulita Airport", + "latitude_deg": "64.909697", + "longitude_deg": "-125.572998", + "elevation_ft": "332", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NT", + "municipality": "Tulita", + "scheduled_service": "yes", + "gps_code": "CZFN", + "iata_code": "ZFN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tulita_Airport", + "keywords": "Fort Norman" + }, + { + "id": "2019", + "ident": "CZGF", + "type": "medium_airport", + "name": "Grand Forks Airport", + "latitude_deg": "49.015598", + "longitude_deg": "-118.431", + "elevation_ft": "1720", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Grand Forks", + "scheduled_service": "no", + "gps_code": "CZGF", + "iata_code": "ZGF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Forks_Airport" + }, + { + "id": "2020", + "ident": "CZGI", + "type": "medium_airport", + "name": "Gods River Airport", + "latitude_deg": "54.839698791503906", + "longitude_deg": "-94.07859802246094", + "elevation_ft": "627", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Gods River", + "scheduled_service": "yes", + "gps_code": "CZGI", + "iata_code": "ZGI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gods_River_Airport" + }, + { + "id": "2021", + "ident": "CZGR", + "type": "medium_airport", + "name": "Little Grand Rapids Airport", + "latitude_deg": "52.04560089111328", + "longitude_deg": "-95.4657974243164", + "elevation_ft": "1005", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Little Grand Rapids", + "scheduled_service": "no", + "gps_code": "CZGR", + "iata_code": "ZGR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Little_Grand_Rapids_Airport" + }, + { + "id": "2022", + "ident": "CZHP", + "type": "small_airport", + "name": "High Prairie Airport", + "latitude_deg": "55.3936004639", + "longitude_deg": "-116.474998474", + "elevation_ft": "1974", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "High Prairie", + "scheduled_service": "no", + "gps_code": "CZHP", + "iata_code": "ZHP", + "wikipedia_link": "https://en.wikipedia.org/wiki/High_Prairie_Airport", + "keywords": "ZHP" + }, + { + "id": "308731", + "ident": "CZJ", + "type": "small_airport", + "name": "Corazón de Jesús Airport", + "latitude_deg": "9.44686", + "longitude_deg": "-78.575678", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Corazón de Jesús and Narganá Islands", + "scheduled_service": "yes", + "iata_code": "CZJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coraz%C3%B3n_de_Jes%C3%BAs_Airport", + "keywords": "Narganá, Usdup" + }, + { + "id": "2023", + "ident": "CZJG", + "type": "medium_airport", + "name": "Jenpeg Airport", + "latitude_deg": "54.51890182495117", + "longitude_deg": "-98.04609680175781", + "elevation_ft": "729", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Jenpeg", + "scheduled_service": "no", + "gps_code": "CZJG", + "iata_code": "ZJG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jenpeg_Airport" + }, + { + "id": "2024", + "ident": "CZJN", + "type": "medium_airport", + "name": "Swan River Airport", + "latitude_deg": "52.120602", + "longitude_deg": "-101.236", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Swan River", + "scheduled_service": "no", + "gps_code": "CZJN", + "iata_code": "ZJN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Swan_River_Airport" + }, + { + "id": "17059", + "ident": "CZK", + "type": "small_airport", + "name": "Cascade Locks State Airport", + "latitude_deg": "45.676599", + "longitude_deg": "-121.878879", + "elevation_ft": "151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Cascade Locks", + "scheduled_service": "no", + "gps_code": "KCZK", + "iata_code": "CZK", + "local_code": "CZK", + "home_link": "https://web.archive.org/web/20160720160659/http://www.oregon.gov/aviation/pages/warning.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cascade_Locks_State_Airport" + }, + { + "id": "2025", + "ident": "CZKE", + "type": "medium_airport", + "name": "Kashechewan Airport", + "latitude_deg": "52.282501220703125", + "longitude_deg": "-81.67780303955078", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Kashechewan", + "scheduled_service": "yes", + "gps_code": "CZKE", + "iata_code": "ZKE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kashechewan_Airport" + }, + { + "id": "2026", + "ident": "CZLQ", + "type": "medium_airport", + "name": "Thicket Portage Airport", + "latitude_deg": "55.31890106201172", + "longitude_deg": "-97.70780181884766", + "elevation_ft": "678", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Thicket Portage", + "scheduled_service": "no", + "gps_code": "CZLQ", + "iata_code": "YTD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thicket_Portage_Airport", + "keywords": "ZLQ" + }, + { + "id": "2027", + "ident": "CZMD", + "type": "medium_airport", + "name": "Muskrat Dam Airport", + "latitude_deg": "53.44139862060547", + "longitude_deg": "-91.76280212402344", + "elevation_ft": "911", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Muskrat Dam", + "scheduled_service": "yes", + "gps_code": "CZMD", + "iata_code": "MSA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Muskrat_Dam_Airport", + "keywords": "ZMD" + }, + { + "id": "2028", + "ident": "CZML", + "type": "small_airport", + "name": "South Cariboo Region / 108 Mile Airport", + "latitude_deg": "51.736099243199995", + "longitude_deg": "-121.333000183", + "elevation_ft": "3126", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "108 Mile", + "scheduled_service": "no", + "gps_code": "CZML", + "iata_code": "ZMH", + "wikipedia_link": "https://en.wikipedia.org/wiki/108_Mile_Ranch_Airport", + "keywords": "ZML, South Cariboo Regional Airport" + }, + { + "id": "2029", + "ident": "CZMN", + "type": "medium_airport", + "name": "Pikwitonei Airport", + "latitude_deg": "55.58890151977539", + "longitude_deg": "-97.16419982910156", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Pikwitonei", + "scheduled_service": "no", + "gps_code": "CZMN", + "iata_code": "PIW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pikwitonei_Airport", + "keywords": "ZMN" + }, + { + "id": "2030", + "ident": "CZMT", + "type": "medium_airport", + "name": "Masset Airport", + "latitude_deg": "54.02750015258789", + "longitude_deg": "-132.125", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Masset", + "scheduled_service": "yes", + "gps_code": "CZMT", + "iata_code": "ZMT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Masset_Airport" + }, + { + "id": "17060", + "ident": "CZN", + "type": "small_airport", + "name": "Chisana Airport", + "latitude_deg": "62.0712013245", + "longitude_deg": "-142.04800415", + "elevation_ft": "3318", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chisana", + "scheduled_service": "yes", + "gps_code": "CZN", + "iata_code": "CZN", + "local_code": "CZN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chisana_Airport", + "keywords": "Chisana Field" + }, + { + "id": "2031", + "ident": "CZNG", + "type": "medium_airport", + "name": "Poplar River Airport", + "latitude_deg": "52.9965258788", + "longitude_deg": "-97.2741937637", + "elevation_ft": "728", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Poplar River", + "scheduled_service": "no", + "gps_code": "CZNG", + "iata_code": "XPP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Poplar_River_Airport" + }, + { + "id": "2032", + "ident": "CZNL", + "type": "small_airport", + "name": "Nelson Airport", + "latitude_deg": "49.4942016602", + "longitude_deg": "-117.301002502", + "elevation_ft": "1755", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Nelson", + "scheduled_service": "no", + "gps_code": "CZNL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nelson_Airport_(British_Columbia)", + "keywords": "ZNL" + }, + { + "id": "17061", + "ident": "CZO", + "type": "small_airport", + "name": "Chistochina Airport", + "latitude_deg": "62.5634994507", + "longitude_deg": "-144.669006348", + "elevation_ft": "1850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chistochina", + "scheduled_service": "no", + "gps_code": "CZO", + "iata_code": "CZO", + "local_code": "CZO" + }, + { + "id": "2033", + "ident": "CZPB", + "type": "medium_airport", + "name": "Sachigo Lake Airport", + "latitude_deg": "53.8911018371582", + "longitude_deg": "-92.19640350341797", + "elevation_ft": "876", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Sachigo Lake", + "scheduled_service": "yes", + "gps_code": "CZPB", + "iata_code": "ZPB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sachigo_Lake_Airport" + }, + { + "id": "2034", + "ident": "CZPC", + "type": "medium_airport", + "name": "Pincher Creek Airport", + "latitude_deg": "49.520599365200006", + "longitude_deg": "-113.997001648", + "elevation_ft": "3903", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Pincher Creek", + "scheduled_service": "no", + "gps_code": "CZPC", + "iata_code": "WPC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pincher_Creek_Airport", + "keywords": "ZPC" + }, + { + "id": "2035", + "ident": "CZPO", + "type": "small_airport", + "name": "Pinehouse Lake Airport", + "latitude_deg": "55.5280990601", + "longitude_deg": "-106.582000732", + "elevation_ft": "1278", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Pinehouse Lake", + "scheduled_service": "no", + "gps_code": "CZPO", + "iata_code": "ZPO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pinehouse_Lake_Airport", + "keywords": "ZPO" + }, + { + "id": "2036", + "ident": "CZRJ", + "type": "medium_airport", + "name": "Round Lake (Weagamow Lake) Airport", + "latitude_deg": "52.943599700927734", + "longitude_deg": "-91.31279754638672", + "elevation_ft": "974", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Round Lake", + "scheduled_service": "yes", + "gps_code": "CZRJ", + "iata_code": "ZRJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Round_Lake_(Weagamow_Lake)_Airport" + }, + { + "id": "2037", + "ident": "CZSJ", + "type": "medium_airport", + "name": "Sandy Lake Airport", + "latitude_deg": "53.06420135498047", + "longitude_deg": "-93.34439849853516", + "elevation_ft": "951", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Sandy Lake", + "scheduled_service": "yes", + "gps_code": "CZSJ", + "iata_code": "ZSJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sandy_Lake_Airport" + }, + { + "id": "2038", + "ident": "CZSN", + "type": "medium_airport", + "name": "South Indian Lake Airport", + "latitude_deg": "56.7928009033", + "longitude_deg": "-98.9072036743", + "elevation_ft": "951", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "South Indian Lake", + "scheduled_service": "no", + "gps_code": "CZSN", + "iata_code": "XSI", + "local_code": "ZSN", + "wikipedia_link": "https://en.wikipedia.org/wiki/South_Indian_Lake_Airport" + }, + { + "id": "2039", + "ident": "CZST", + "type": "medium_airport", + "name": "Stewart Airport", + "latitude_deg": "55.935410448", + "longitude_deg": "-129.982434511", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Stewart", + "scheduled_service": "no", + "gps_code": "CZST", + "iata_code": "ZST", + "local_code": "CZST", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stewart_Airport_(British_Columbia)" + }, + { + "id": "28386", + "ident": "CZSW", + "type": "seaplane_base", + "name": "Prince Rupert/Seal Cove Seaplane Base", + "latitude_deg": "54.333302", + "longitude_deg": "-130.283005", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Prince Rupert", + "scheduled_service": "no", + "gps_code": "CZSW", + "iata_code": "ZSW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Prince_Rupert/Seal_Cove_Water_Aerodrome" + }, + { + "id": "2040", + "ident": "CZTA", + "type": "small_airport", + "name": "Bloodvein River Airport", + "latitude_deg": "51.784568", + "longitude_deg": "-96.692305", + "elevation_ft": "721", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Bloodvein River", + "scheduled_service": "no", + "gps_code": "CZTA", + "iata_code": "YDV", + "local_code": "ZTA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bloodvein_River_Airport", + "keywords": "ZTA" + }, + { + "id": "2041", + "ident": "CZTM", + "type": "medium_airport", + "name": "Shamattawa Airport", + "latitude_deg": "55.8656005859375", + "longitude_deg": "-92.0813980102539", + "elevation_ft": "289", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Shamattawa", + "scheduled_service": "yes", + "gps_code": "CZTM", + "iata_code": "ZTM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shamattawa_Airport" + }, + { + "id": "2042", + "ident": "CZUC", + "type": "medium_airport", + "name": "Ignace Municipal Airport", + "latitude_deg": "49.428204", + "longitude_deg": "-91.720418", + "elevation_ft": "1435", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "municipality": "Ignace", + "scheduled_service": "no", + "gps_code": "CZUC", + "iata_code": "ZUC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ignace_Municipal_Airport" + }, + { + "id": "2043", + "ident": "CZUM", + "type": "small_airport", + "name": "Churchill Falls Airport", + "latitude_deg": "53.5619010925293", + "longitude_deg": "-64.10639953613281", + "elevation_ft": "1442", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NL", + "municipality": "Churchill Falls", + "scheduled_service": "yes", + "gps_code": "CZUM", + "iata_code": "ZUM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Churchill_Falls_Airport", + "keywords": "ZUM" + }, + { + "id": "2044", + "ident": "CZVL", + "type": "small_airport", + "name": "Edmonton / Villeneuve Airport", + "latitude_deg": "53.6674995422", + "longitude_deg": "-113.853996277", + "elevation_ft": "2256", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "municipality": "Edmonton", + "scheduled_service": "no", + "gps_code": "CZVL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Edmonton/Villeneuve_Airport", + "keywords": "ZVL" + }, + { + "id": "2045", + "ident": "CZWH", + "type": "medium_airport", + "name": "Lac Brochet Airport", + "latitude_deg": "58.6175003052", + "longitude_deg": "-101.46900177", + "elevation_ft": "1211", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-MB", + "municipality": "Lac Brochet", + "scheduled_service": "no", + "gps_code": "CZWH", + "iata_code": "XLB", + "local_code": "ZWH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lac_Brochet_Airport" + }, + { + "id": "2046", + "ident": "CZWL", + "type": "medium_airport", + "name": "Wollaston Lake Airport", + "latitude_deg": "58.10689926147461", + "longitude_deg": "-103.1719970703125", + "elevation_ft": "1360", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-SK", + "municipality": "Wollaston Lake", + "scheduled_service": "yes", + "gps_code": "CZWL", + "iata_code": "ZWL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wollaston_Lake_Airport" + }, + { + "id": "45971", + "ident": "D03", + "type": "small_airport", + "name": "Kulm Municipal Airport", + "latitude_deg": "46.306764", + "longitude_deg": "-98.938833", + "elevation_ft": "1959", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Kulm", + "scheduled_service": "no", + "gps_code": "D03", + "local_code": "D03" + }, + { + "id": "17062", + "ident": "D06", + "type": "small_airport", + "name": "Minto Municipal Airport", + "latitude_deg": "48.28329849243164", + "longitude_deg": "-97.39199829101562", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Minto", + "scheduled_service": "no", + "gps_code": "D06", + "local_code": "D06" + }, + { + "id": "17063", + "ident": "D12", + "type": "heliport", + "name": "Garden Valley Heliport", + "latitude_deg": "44.064300537109375", + "longitude_deg": "-115.9260025024414", + "elevation_ft": "3150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Garden Valley", + "scheduled_service": "no", + "gps_code": "D12", + "local_code": "D12" + }, + { + "id": "17064", + "ident": "D15", + "type": "small_airport", + "name": "Lake Isabella Airpark", + "latitude_deg": "43.644500732421875", + "longitude_deg": "-84.98200225830078", + "elevation_ft": "886", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lake Isabella", + "scheduled_service": "no", + "gps_code": "D15", + "local_code": "D15" + }, + { + "id": "17065", + "ident": "D20", + "type": "small_airport", + "name": "Yale Airport", + "latitude_deg": "43.111072", + "longitude_deg": "-82.786725", + "elevation_ft": "814", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Yale", + "scheduled_service": "no", + "gps_code": "KD20", + "local_code": "D20" + }, + { + "id": "301252", + "ident": "D22", + "type": "seaplane_base", + "name": "Drummond Island / Yacht Haven SPB", + "latitude_deg": "46.024794", + "longitude_deg": "-83.752513", + "elevation_ft": "581", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "scheduled_service": "no", + "gps_code": "D22" + }, + { + "id": "17066", + "ident": "D24", + "type": "small_airport", + "name": "Fessenden Municipal Airport", + "latitude_deg": "47.659698486328125", + "longitude_deg": "-99.66100311279297", + "elevation_ft": "1619", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Fessenden", + "scheduled_service": "no", + "gps_code": "D24", + "local_code": "D24" + }, + { + "id": "17067", + "ident": "D28", + "type": "seaplane_base", + "name": "Tanglefoot Seaplane Base", + "latitude_deg": "48.53889846801758", + "longitude_deg": "-116.83200073242188", + "elevation_ft": "2438", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cavanaugh Bay", + "scheduled_service": "no", + "gps_code": "D28", + "local_code": "D28" + }, + { + "id": "17068", + "ident": "D29", + "type": "small_airport", + "name": "Drayton Municipal Airport", + "latitude_deg": "48.61859893798828", + "longitude_deg": "-97.1759033203125", + "elevation_ft": "798", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Drayton", + "scheduled_service": "no", + "gps_code": "D29", + "local_code": "D29" + }, + { + "id": "17069", + "ident": "D32", + "type": "small_airport", + "name": "Starbuck Municipal Airport", + "latitude_deg": "45.599998474121094", + "longitude_deg": "-95.53369903564453", + "elevation_ft": "1141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Starbuck", + "scheduled_service": "no", + "gps_code": "D32", + "local_code": "D32" + }, + { + "id": "19598", + "ident": "D38", + "type": "small_airport", + "name": "Canandaigua Airport", + "latitude_deg": "42.908902", + "longitude_deg": "-77.325226", + "elevation_ft": "814", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Ontario County IDA", + "scheduled_service": "no", + "gps_code": "KIUA", + "iata_code": "IUA", + "local_code": "IUA", + "home_link": "https://flycanandaigua.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Canandaigua_Airport", + "keywords": "Canandaigua Airport" + }, + { + "id": "17070", + "ident": "D41", + "type": "small_airport", + "name": "Stephen Municipal Airport", + "latitude_deg": "48.45830154418945", + "longitude_deg": "-96.86280059814453", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Stephen", + "scheduled_service": "no", + "gps_code": "D41", + "local_code": "D41" + }, + { + "id": "17071", + "ident": "D43", + "type": "small_airport", + "name": "Hopewell Airpark", + "latitude_deg": "42.919498443603516", + "longitude_deg": "-77.2427978515625", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Canandaigua", + "scheduled_service": "no", + "gps_code": "D43", + "local_code": "D43" + }, + { + "id": "17072", + "ident": "D49", + "type": "small_airport", + "name": "Columbus Municipal Airport", + "latitude_deg": "48.89860153198242", + "longitude_deg": "-102.79199981689453", + "elevation_ft": "1930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "D49", + "local_code": "D49" + }, + { + "id": "17073", + "ident": "D51", + "type": "small_airport", + "name": "Clarence Aerodrome", + "latitude_deg": "43.06669998168945", + "longitude_deg": "-78.68309783935547", + "elevation_ft": "589", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Buffalo", + "scheduled_service": "no", + "gps_code": "D51", + "local_code": "D51" + }, + { + "id": "17074", + "ident": "D52", + "type": "small_airport", + "name": "Geneseo Airport", + "latitude_deg": "42.79869842529297", + "longitude_deg": "-77.84249877929688", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Geneseo", + "scheduled_service": "no", + "gps_code": "D52", + "local_code": "D52" + }, + { + "id": "17075", + "ident": "D58", + "type": "small_airport", + "name": "Timber Lake Municipal Airport", + "latitude_deg": "45.415000915527344", + "longitude_deg": "-101.08300018310547", + "elevation_ft": "2193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Timber Lake", + "scheduled_service": "no", + "gps_code": "D58", + "local_code": "D58" + }, + { + "id": "17076", + "ident": "D59", + "type": "small_airport", + "name": "Gowanda Airport", + "latitude_deg": "42.501542", + "longitude_deg": "-78.950518", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Gowanda", + "scheduled_service": "no", + "local_code": "D59" + }, + { + "id": "17077", + "ident": "D61", + "type": "small_airport", + "name": "Towner Municipal Airport", + "latitude_deg": "48.358299255371094", + "longitude_deg": "-100.39199829101562", + "elevation_ft": "1484", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Towner", + "scheduled_service": "no", + "gps_code": "D61", + "local_code": "D61" + }, + { + "id": "17078", + "ident": "D63", + "type": "small_airport", + "name": "Dinsmore Airport", + "latitude_deg": "40.49290084838867", + "longitude_deg": "-123.5999984741211", + "elevation_ft": "2375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Dinsmore", + "scheduled_service": "no", + "gps_code": "D63", + "local_code": "D63", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dinsmore_Airport_(California)" + }, + { + "id": "17079", + "ident": "D65", + "type": "small_airport", + "name": "Corsica Municipal Airport", + "latitude_deg": "43.43439865112305", + "longitude_deg": "-98.39759826660156", + "elevation_ft": "1579", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Corsica", + "scheduled_service": "no", + "gps_code": "D65", + "local_code": "D65" + }, + { + "id": "17080", + "ident": "D66", + "type": "small_airport", + "name": "Delta Junction Airport", + "latitude_deg": "64.0503997803", + "longitude_deg": "-145.716995239", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Delta Junction", + "scheduled_service": "no", + "gps_code": "D66", + "iata_code": "DJN", + "local_code": "D66", + "wikipedia_link": "https://en.wikipedia.org/wiki/Delta_Junction_Airport" + }, + { + "id": "17081", + "ident": "D67", + "type": "small_airport", + "name": "Creekside Airport", + "latitude_deg": "42.915191", + "longitude_deg": "-77.384474", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Holcomb", + "scheduled_service": "no", + "gps_code": "NY95", + "local_code": "NY95", + "keywords": "D67" + }, + { + "id": "17082", + "ident": "D69", + "type": "small_airport", + "name": "Rogersburg Airport", + "latitude_deg": "46.074401", + "longitude_deg": "-116.966003", + "elevation_ft": "869", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Anatone", + "scheduled_service": "no", + "local_code": "D69", + "keywords": "00D, Lewiston" + }, + { + "id": "17083", + "ident": "D70", + "type": "closed", + "name": "Honeoye Falls Airport", + "latitude_deg": "42.9473", + "longitude_deg": "-77.599701", + "elevation_ft": "683", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Honeoye Falls", + "scheduled_service": "no", + "keywords": "D70" + }, + { + "id": "17084", + "ident": "D71", + "type": "seaplane_base", + "name": "Beaver Lake Seaplane Base", + "latitude_deg": "61.58290100097656", + "longitude_deg": "-149.83099365234375", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "D71", + "local_code": "D71" + }, + { + "id": "17085", + "ident": "D72", + "type": "seaplane_base", + "name": "D&C Fire Lake Flying Club Seaplane Base", + "latitude_deg": "61.352500915527344", + "longitude_deg": "-149.54600524902344", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Eagle River", + "scheduled_service": "no", + "gps_code": "D72", + "local_code": "D72" + }, + { + "id": "17086", + "ident": "D75", + "type": "seaplane_base", + "name": "Blodget Lake Seaplane Base", + "latitude_deg": "61.5760993958", + "longitude_deg": "-149.675994873", + "elevation_ft": "242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "D75", + "local_code": "D75" + }, + { + "id": "17088", + "ident": "D79", + "type": "small_airport", + "name": "Dart Airport", + "latitude_deg": "42.26810073852539", + "longitude_deg": "-79.48169708251953", + "elevation_ft": "1330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Mayville", + "scheduled_service": "no", + "gps_code": "D79", + "local_code": "D79" + }, + { + "id": "17089", + "ident": "D80", + "type": "small_airport", + "name": "Olcott-Newfane Airport", + "latitude_deg": "43.320899963378906", + "longitude_deg": "-78.72889709472656", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Olcott", + "scheduled_service": "no", + "gps_code": "D80", + "local_code": "D80" + }, + { + "id": "17090", + "ident": "D81", + "type": "small_airport", + "name": "Red Lake Falls Municipal Airport", + "latitude_deg": "47.82500076293945", + "longitude_deg": "-96.25779724121094", + "elevation_ft": "1061", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Red Lake Falls", + "scheduled_service": "no", + "gps_code": "D81", + "local_code": "D81" + }, + { + "id": "17091", + "ident": "D82", + "type": "small_airport", + "name": "Ovid Airport", + "latitude_deg": "42.65480041503906", + "longitude_deg": "-76.79630279541016", + "elevation_ft": "1062", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Ovid", + "scheduled_service": "no", + "gps_code": "D82", + "local_code": "D82" + }, + { + "id": "17092", + "ident": "D85", + "type": "small_airport", + "name": "Campbell Field", + "latitude_deg": "42.155334", + "longitude_deg": "-79.015757", + "elevation_ft": "1665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Randolph", + "scheduled_service": "no", + "gps_code": "85NK", + "local_code": "85NK", + "keywords": "D85, Randolph Airport" + }, + { + "id": "17093", + "ident": "D88", + "type": "small_airport", + "name": "Pratt's Eastern Divide Airport", + "latitude_deg": "42.149612", + "longitude_deg": "-79.684503", + "elevation_ft": "1640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Mina", + "scheduled_service": "no", + "gps_code": "KD88", + "local_code": "D88" + }, + { + "id": "17094", + "ident": "D90", + "type": "small_airport", + "name": "Mancelona Municipal Airport", + "latitude_deg": "44.923913", + "longitude_deg": "-85.068884", + "elevation_ft": "1133", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Mancelona", + "scheduled_service": "no", + "local_code": "D90" + }, + { + "id": "17095", + "ident": "D91", + "type": "small_airport", + "name": "Spencerport Airpark", + "latitude_deg": "43.169498443603516", + "longitude_deg": "-77.81829833984375", + "elevation_ft": "614", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Spencerport", + "scheduled_service": "no", + "gps_code": "D91", + "local_code": "D91" + }, + { + "id": "17096", + "ident": "D93", + "type": "small_airport", + "name": "Airtrek Airport", + "latitude_deg": "42.850101470947266", + "longitude_deg": "-76.84970092773438", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Waterloo", + "scheduled_service": "no", + "gps_code": "D93", + "local_code": "D93" + }, + { + "id": "2145", + "ident": "DA10", + "type": "small_airport", + "name": "Illizi Airport", + "latitude_deg": "26.573601", + "longitude_deg": "8.48366", + "elevation_ft": "1778", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-33", + "municipality": "Illizi", + "scheduled_service": "no", + "gps_code": "DA10", + "local_code": "DA10" + }, + { + "id": "2146", + "ident": "DA11", + "type": "small_airport", + "name": "Hamaguir Airport", + "latitude_deg": "30.879", + "longitude_deg": "-3.06775", + "elevation_ft": "2454", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-08", + "municipality": "Hamaguir", + "scheduled_service": "no", + "gps_code": "DA11", + "local_code": "DA11" + }, + { + "id": "2147", + "ident": "DA12", + "type": "small_airport", + "name": "El Abiodh Sidi Cheikh Airport", + "latitude_deg": "32.898499", + "longitude_deg": "0.524694", + "elevation_ft": "2965", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-32", + "municipality": "El Abiodh Sidi Cheikh", + "scheduled_service": "no", + "gps_code": "DA12", + "local_code": "DA12" + }, + { + "id": "2148", + "ident": "DA13", + "type": "small_airport", + "name": "Tinfouchy Airport", + "latitude_deg": "28.879299", + "longitude_deg": "-5.8229", + "elevation_ft": "1804", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-37", + "municipality": "Oum El Assel", + "scheduled_service": "no", + "gps_code": "DA13", + "local_code": "DA13" + }, + { + "id": "2149", + "ident": "DA14", + "type": "small_airport", + "name": "Mostaganem Airport", + "latitude_deg": "35.90518", + "longitude_deg": "0.144539", + "elevation_ft": "732", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-27", + "municipality": "Sayada", + "scheduled_service": "no", + "gps_code": "DA14", + "iata_code": "MQV", + "local_code": "DA14", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mostaganem_Airport", + "keywords": "Matemore Airfield" + }, + { + "id": "2150", + "ident": "DA15", + "type": "small_airport", + "name": "Saïda Airport", + "latitude_deg": "34.897202", + "longitude_deg": "0.151694", + "elevation_ft": "2444", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-20", + "municipality": "Ouled Khaled", + "scheduled_service": "no", + "gps_code": "DA15", + "local_code": "DA15", + "keywords": "Rebahia" + }, + { + "id": "2151", + "ident": "DA16", + "type": "small_airport", + "name": "Tindouf East Airport", + "latitude_deg": "27.585899", + "longitude_deg": "-7.50011", + "elevation_ft": "1425", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-37", + "municipality": "Tindouf", + "scheduled_service": "no", + "gps_code": "DA16", + "local_code": "DA16" + }, + { + "id": "2047", + "ident": "DAAB", + "type": "medium_airport", + "name": "Blida Airport", + "latitude_deg": "36.503601", + "longitude_deg": "2.81417", + "elevation_ft": "535", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-09", + "municipality": "Blida", + "scheduled_service": "no", + "gps_code": "DAAB", + "iata_code": "QLD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Blida_Airport" + }, + { + "id": "2048", + "ident": "DAAD", + "type": "medium_airport", + "name": "Bou Saada Airport", + "latitude_deg": "35.3325", + "longitude_deg": "4.20639", + "elevation_ft": "1506", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-28", + "municipality": "Ouled Sidi Brahim", + "scheduled_service": "no", + "gps_code": "DAAD", + "iata_code": "BUJ" + }, + { + "id": "2049", + "ident": "DAAE", + "type": "medium_airport", + "name": "Soummam–Abane Ramdane Airport", + "latitude_deg": "36.711952", + "longitude_deg": "5.069804", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-06", + "municipality": "Béjaïa", + "scheduled_service": "yes", + "gps_code": "DAAE", + "iata_code": "BJA", + "local_code": "BJ1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abane_Ramdane_Airport", + "keywords": "Béjaïa, Soummam" + }, + { + "id": "314958", + "ident": "DAAF", + "type": "small_airport", + "name": "Aoulef Airport", + "latitude_deg": "27.0624", + "longitude_deg": "1.1111", + "elevation_ft": "1017", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-01", + "municipality": "Aoulef", + "scheduled_service": "no", + "gps_code": "DAAF" + }, + { + "id": "2050", + "ident": "DAAG", + "type": "large_airport", + "name": "Houari Boumediene Airport", + "latitude_deg": "36.693886", + "longitude_deg": "3.214531", + "elevation_ft": "82", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-16", + "municipality": "Algiers", + "scheduled_service": "yes", + "gps_code": "DAAG", + "iata_code": "ALG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Houari_Boumediene_Airport", + "keywords": "Algiers, Maison Blanche" + }, + { + "id": "2051", + "ident": "DAAJ", + "type": "medium_airport", + "name": "Djanet Inedbirene Airport", + "latitude_deg": "24.292801", + "longitude_deg": "9.45244", + "elevation_ft": "3176", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-56", + "municipality": "Djanet", + "scheduled_service": "yes", + "gps_code": "DAAJ", + "iata_code": "DJG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Djanet_Inedbirene_Airport", + "keywords": "Tiska Djanet Airport" + }, + { + "id": "2052", + "ident": "DAAK", + "type": "medium_airport", + "name": "Boufarik Air Base", + "latitude_deg": "36.545799", + "longitude_deg": "2.87611", + "elevation_ft": "335", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-09", + "municipality": "Boufarik", + "scheduled_service": "no", + "gps_code": "DAAK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boufarik_Airport", + "keywords": "QFD" + }, + { + "id": "30872", + "ident": "DAAM", + "type": "small_airport", + "name": "Telerghma Airport", + "latitude_deg": "36.108699798583984", + "longitude_deg": "6.36460018157959", + "elevation_ft": "2484", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-43", + "municipality": "Telerghma", + "scheduled_service": "no", + "gps_code": "DAAM" + }, + { + "id": "2053", + "ident": "DAAN", + "type": "small_airport", + "name": "Reggane Airport", + "latitude_deg": "26.712418", + "longitude_deg": "0.288219", + "elevation_ft": "955", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-01", + "municipality": "Reggane", + "scheduled_service": "no", + "gps_code": "DAAN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Reggane_Airport" + }, + { + "id": "2054", + "ident": "DAAP", + "type": "medium_airport", + "name": "Illizi Takhamalt Airport", + "latitude_deg": "26.723499", + "longitude_deg": "8.62265", + "elevation_ft": "1778", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-33", + "municipality": "Illizi", + "scheduled_service": "yes", + "gps_code": "DAAP", + "iata_code": "VVZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Illizi_Airport" + }, + { + "id": "2055", + "ident": "DAAQ", + "type": "small_airport", + "name": "Ain Oussera Airport", + "latitude_deg": "35.525398", + "longitude_deg": "2.87871", + "elevation_ft": "2132", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-17", + "municipality": "Ain Oussera", + "scheduled_service": "no", + "gps_code": "DAAQ" + }, + { + "id": "32193", + "ident": "DAAS", + "type": "medium_airport", + "name": "Ain Arnat Airport", + "latitude_deg": "36.178100585900005", + "longitude_deg": "5.3244900703399995", + "elevation_ft": "3360", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-19", + "municipality": "Sétif", + "scheduled_service": "yes", + "gps_code": "DAAS", + "iata_code": "QSF", + "home_link": "http://www.egsa-constantine.dz/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ain_Arnat_Airport", + "keywords": "Sétif International Airport, 8 Mai 45 Airport" + }, + { + "id": "2056", + "ident": "DAAT", + "type": "medium_airport", + "name": "Aguenar – Hadj Bey Akhamok Airport", + "latitude_deg": "22.8115005493", + "longitude_deg": "5.45107984543", + "elevation_ft": "4518", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-11", + "municipality": "Tamanrasset", + "scheduled_service": "yes", + "gps_code": "DAAT", + "iata_code": "TMR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tamanrasset_Airport" + }, + { + "id": "2057", + "ident": "DAAV", + "type": "medium_airport", + "name": "Jijel Ferhat Abbas Airport", + "latitude_deg": "36.795101", + "longitude_deg": "5.87361", + "elevation_ft": "36", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-18", + "municipality": "Tahir", + "scheduled_service": "yes", + "gps_code": "DAAV", + "iata_code": "GJL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jijel_Ferhat_Abbas_Airport" + }, + { + "id": "30873", + "ident": "DAAW", + "type": "small_airport", + "name": "Bordj Omar Driss Airport", + "latitude_deg": "28.131399154663086", + "longitude_deg": "6.8336100578308105", + "elevation_ft": "1207", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-33", + "municipality": "Bordj Omar Driss", + "scheduled_service": "no", + "gps_code": "DAAW" + }, + { + "id": "312616", + "ident": "DAAX", + "type": "small_airport", + "name": "Chéraga Airport", + "latitude_deg": "36.7782", + "longitude_deg": "2.9284", + "elevation_ft": "396", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-16", + "municipality": "Chéraga", + "scheduled_service": "no", + "gps_code": "DAAX" + }, + { + "id": "2058", + "ident": "DAAY", + "type": "medium_airport", + "name": "Mecheria Airport", + "latitude_deg": "33.535900116", + "longitude_deg": "-0.242353007197", + "elevation_ft": "3855", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-45", + "municipality": "Mecheria", + "scheduled_service": "no", + "gps_code": "DAAY", + "iata_code": "MZW", + "wikipedia_link": "http://fr.wikipedia.org/wiki/A%C3%A9roport_de_Mecheria" + }, + { + "id": "2059", + "ident": "DAAZ", + "type": "medium_airport", + "name": "Relizane Airport", + "latitude_deg": "35.752955", + "longitude_deg": "0.625877", + "elevation_ft": "282", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-48", + "municipality": "Relizane", + "scheduled_service": "no", + "gps_code": "DAAZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Relizane_Airport", + "keywords": "QZN" + }, + { + "id": "2060", + "ident": "DABB", + "type": "medium_airport", + "name": "Annaba Rabah Bitat Airport", + "latitude_deg": "36.826781", + "longitude_deg": "7.81334", + "elevation_ft": "16", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-23", + "municipality": "Annaba", + "scheduled_service": "yes", + "gps_code": "DABB", + "iata_code": "AAE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rabah_Bitat_Airport", + "keywords": "Les Salines Airport, El Mellah Airport, Annabah" + }, + { + "id": "2061", + "ident": "DABC", + "type": "medium_airport", + "name": "Mohamed Boudiaf International Airport", + "latitude_deg": "36.2760009765625", + "longitude_deg": "6.620389938354492", + "elevation_ft": "2265", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-25", + "municipality": "Constantine", + "scheduled_service": "yes", + "gps_code": "DABC", + "iata_code": "CZL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mohamed_Boudiaf_International_Airport" + }, + { + "id": "42529", + "ident": "DABO", + "type": "small_airport", + "name": "Oum El Bouaghi Air Base", + "latitude_deg": "35.8797", + "longitude_deg": "7.2708", + "elevation_ft": "2980", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-04", + "municipality": "Oum El Bouaghi", + "scheduled_service": "no", + "gps_code": "DAEO", + "iata_code": "QMH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oum_el_Bouaghi_Airport", + "keywords": "DABO" + }, + { + "id": "312615", + "ident": "DABP", + "type": "closed", + "name": "Skikda Airport", + "latitude_deg": "36.8641", + "longitude_deg": "6.9516", + "elevation_ft": "27", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-21", + "municipality": "Skikda", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Skikda_Airport", + "keywords": "DABP, SKI, Philippeville Airfield" + }, + { + "id": "2062", + "ident": "DABS", + "type": "medium_airport", + "name": "Cheikh Larbi Tébessi Airport", + "latitude_deg": "35.4315986633", + "longitude_deg": "8.12071990967", + "elevation_ft": "2661", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-12", + "municipality": "Tébessi", + "scheduled_service": "yes", + "gps_code": "DABS", + "iata_code": "TEE", + "wikipedia_link": "https://en.wikipedia.org/wiki/T%C3%A9bessa_Airport" + }, + { + "id": "2063", + "ident": "DABT", + "type": "medium_airport", + "name": "Batna Mostefa Ben Boulaid Airport", + "latitude_deg": "35.752102", + "longitude_deg": "6.30859", + "elevation_ft": "2697", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-05", + "municipality": "Batna", + "scheduled_service": "yes", + "gps_code": "DABT", + "iata_code": "BLJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Batna_Airport" + }, + { + "id": "310096", + "ident": "DAF", + "type": "small_airport", + "name": "Daup Airport", + "latitude_deg": "-4.7403", + "longitude_deg": "145.9515", + "elevation_ft": "280", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "scheduled_service": "no", + "iata_code": "DAF", + "local_code": "DAUP" + }, + { + "id": "2064", + "ident": "DAFH", + "type": "medium_airport", + "name": "Hassi R'Mel Airport", + "latitude_deg": "32.930401", + "longitude_deg": "3.31154", + "elevation_ft": "2540", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-03", + "municipality": "Hassi R'Mel", + "scheduled_service": "yes", + "gps_code": "DAFH", + "iata_code": "HRM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hassi_R'Mel_Airport" + }, + { + "id": "302293", + "ident": "DAFI", + "type": "small_airport", + "name": "Tsletsi Airport", + "latitude_deg": "34.6657", + "longitude_deg": "3.351", + "elevation_ft": "3753", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-17", + "municipality": "Djelfa", + "scheduled_service": "no", + "gps_code": "DAFI", + "iata_code": "QDJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tsletsi_Airport" + }, + { + "id": "340201", + "ident": "DAH", + "type": "small_airport", + "name": "Dathina Airport", + "latitude_deg": "13.866884", + "longitude_deg": "46.133473", + "elevation_ft": "-2", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-AB", + "municipality": "Dathina", + "scheduled_service": "no", + "iata_code": "DAH", + "local_code": "DAH" + }, + { + "id": "28101", + "ident": "DALH", + "type": "small_airport", + "name": "Dalhousie Airport", + "latitude_deg": "-26.429000854492188", + "longitude_deg": "135.50599670410156", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "DALH", + "local_code": "DALH" + }, + { + "id": "302093", + "ident": "DAO", + "type": "small_airport", + "name": "Dabo Airport", + "latitude_deg": "-8.431944444440001", + "longitude_deg": "147.843055556", + "elevation_ft": "118", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "scheduled_service": "no", + "iata_code": "DAO", + "local_code": "DABO" + }, + { + "id": "2065", + "ident": "DAOB", + "type": "medium_airport", + "name": "Abdelhafid Boussouf Bou Chekif Airport", + "latitude_deg": "35.341099", + "longitude_deg": "1.46315", + "elevation_ft": "3245", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-14", + "municipality": "Tiaret", + "scheduled_service": "no", + "gps_code": "DAOB", + "iata_code": "TID", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bou_Chekif_Airport" + }, + { + "id": "30874", + "ident": "DAOC", + "type": "small_airport", + "name": "Béchar Ouakda Aerodrome", + "latitude_deg": "31.642901", + "longitude_deg": "-2.18466", + "elevation_ft": "2660", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-08", + "municipality": "Béchar", + "scheduled_service": "no", + "gps_code": "DAOC" + }, + { + "id": "2066", + "ident": "DAOE", + "type": "small_airport", + "name": "Bousfer Air Base", + "latitude_deg": "35.735401", + "longitude_deg": "-0.805389", + "elevation_ft": "187", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-31", + "municipality": "Bousfer", + "scheduled_service": "no", + "gps_code": "DAOE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bousfer_Air_Base", + "keywords": "Bou Sfer" + }, + { + "id": "2067", + "ident": "DAOF", + "type": "medium_airport", + "name": "Tindouf Airport", + "latitude_deg": "27.7003993988", + "longitude_deg": "-8.167099952700001", + "elevation_ft": "1453", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-37", + "municipality": "Tindouf", + "scheduled_service": "yes", + "gps_code": "DAOF", + "iata_code": "TIN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tindouf_Airport" + }, + { + "id": "2068", + "ident": "DAOI", + "type": "medium_airport", + "name": "Chlef Aboubakr Belkaid International Airport", + "latitude_deg": "36.217166", + "longitude_deg": "1.342237", + "elevation_ft": "463", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-02", + "municipality": "Chlef", + "scheduled_service": "no", + "gps_code": "DAOI", + "iata_code": "CFK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chlef_International_Airport", + "keywords": "Ech Cheliff Airport" + }, + { + "id": "2069", + "ident": "DAOL", + "type": "medium_airport", + "name": "Oran Tafraoui Airport", + "latitude_deg": "35.5424", + "longitude_deg": "-0.532278", + "elevation_ft": "367", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-31", + "municipality": "Tafraoui", + "scheduled_service": "no", + "gps_code": "DAOL", + "iata_code": "TAF" + }, + { + "id": "2070", + "ident": "DAON", + "type": "medium_airport", + "name": "Zenata – Messali El Hadj Airport", + "latitude_deg": "35.013426", + "longitude_deg": "-1.457191", + "elevation_ft": "814", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-13", + "municipality": "Zenata", + "scheduled_service": "yes", + "gps_code": "DAON", + "iata_code": "TLM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zenata_%E2%80%93_Messali_El_Hadj_Airport", + "keywords": "Tlemcen" + }, + { + "id": "2071", + "ident": "DAOO", + "type": "medium_airport", + "name": "Oran Es-Sénia (Ahmed Ben Bella) International Airport", + "latitude_deg": "35.623901", + "longitude_deg": "-0.621183", + "elevation_ft": "295", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-31", + "municipality": "Es-Sénia", + "scheduled_service": "yes", + "gps_code": "DAOO", + "iata_code": "ORN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oran_Es_Senia_Airport", + "keywords": "Es Senia" + }, + { + "id": "2072", + "ident": "DAOR", + "type": "medium_airport", + "name": "Béchar Boudghene Ben Ali Lotfi Airport", + "latitude_deg": "31.645700454711914", + "longitude_deg": "-2.269860029220581", + "elevation_ft": "2661", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-08", + "municipality": "Béchar", + "scheduled_service": "yes", + "gps_code": "DAOR", + "iata_code": "CBH", + "wikipedia_link": "https://en.wikipedia.org/wiki/B%C3%A9char_Ouakda_Airport", + "keywords": "Béchar Ouakda Airport" + }, + { + "id": "2073", + "ident": "DAOS", + "type": "small_airport", + "name": "Sidi Bel Abbes Airport", + "latitude_deg": "35.1717987061", + "longitude_deg": "-0.593275010586", + "elevation_ft": "1614", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-22", + "municipality": "Sidi Bel Abbès", + "scheduled_service": "no", + "gps_code": "DAOS", + "iata_code": "BFW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sidi_Bel_Abb%C3%A8s_Airport" + }, + { + "id": "2074", + "ident": "DAOV", + "type": "medium_airport", + "name": "Ghriss Airport", + "latitude_deg": "35.207699", + "longitude_deg": "0.147142", + "elevation_ft": "1686", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-29", + "municipality": "Ghriss", + "scheduled_service": "no", + "gps_code": "DAOV", + "iata_code": "MUW" + }, + { + "id": "300333", + "ident": "DAOY", + "type": "small_airport", + "name": "El Bayadh Airport", + "latitude_deg": "33.721666666699996", + "longitude_deg": "1.0925", + "elevation_ft": "4493", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-32", + "municipality": "El Bayadh", + "scheduled_service": "no", + "gps_code": "DAOY", + "iata_code": "EBH" + }, + { + "id": "31678", + "ident": "DATG", + "type": "small_airport", + "name": "In Guezzam Airport", + "latitude_deg": "19.560518", + "longitude_deg": "5.749326", + "elevation_ft": "1312", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-58", + "municipality": "In Guezzam", + "scheduled_service": "no", + "gps_code": "DATG", + "iata_code": "INF" + }, + { + "id": "30777", + "ident": "DATM", + "type": "small_airport", + "name": "Bordj Badji Mokhtar Airport", + "latitude_deg": "21.3778", + "longitude_deg": "0.92698", + "elevation_ft": "1303", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-52", + "municipality": "Bordj Badji Mokhtar", + "scheduled_service": "yes", + "gps_code": "DATM", + "iata_code": "BMW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bordj_Mokhtar_Airport" + }, + { + "id": "2075", + "ident": "DAUA", + "type": "medium_airport", + "name": "Touat Cheikh Sidi Mohamed Belkebir Airport", + "latitude_deg": "27.837601", + "longitude_deg": "-0.186414", + "elevation_ft": "919", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-01", + "municipality": "Adrar", + "scheduled_service": "yes", + "gps_code": "DAUA", + "iata_code": "AZR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Touat_Cheikh_Sidi_Mohamed_Belkebir_Airport" + }, + { + "id": "2076", + "ident": "DAUB", + "type": "medium_airport", + "name": "Biskra - Mohamed Khider Airport", + "latitude_deg": "34.793301", + "longitude_deg": "5.73823", + "elevation_ft": "289", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-07", + "municipality": "Biskra", + "scheduled_service": "yes", + "gps_code": "DAUB", + "iata_code": "BSK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Biskra_Airport" + }, + { + "id": "2077", + "ident": "DAUE", + "type": "medium_airport", + "name": "El Golea Airport", + "latitude_deg": "30.580732", + "longitude_deg": "2.861595", + "elevation_ft": "1306", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-50", + "municipality": "El Menia", + "scheduled_service": "yes", + "gps_code": "DAUE", + "iata_code": "ELG", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Golea_Airport" + }, + { + "id": "2078", + "ident": "DAUG", + "type": "medium_airport", + "name": "Noumérat - Moufdi Zakaria Airport", + "latitude_deg": "32.384102", + "longitude_deg": "3.79411", + "elevation_ft": "1512", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-47", + "municipality": "El Atteuf", + "scheduled_service": "yes", + "gps_code": "DAUG", + "iata_code": "GHA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Noumerate_Airport", + "keywords": "Ghardaïa" + }, + { + "id": "2079", + "ident": "DAUH", + "type": "medium_airport", + "name": "Hassi Messaoud-Oued Irara Krim Belkacem Airport", + "latitude_deg": "31.673", + "longitude_deg": "6.14044", + "elevation_ft": "463", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-30", + "municipality": "Hassi Messaoud", + "scheduled_service": "yes", + "gps_code": "DAUH", + "iata_code": "HME", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oued_Irara_Airport" + }, + { + "id": "2080", + "ident": "DAUI", + "type": "medium_airport", + "name": "In Salah Airport", + "latitude_deg": "27.250999", + "longitude_deg": "2.51202", + "elevation_ft": "896", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-57", + "municipality": "In Salah", + "scheduled_service": "yes", + "gps_code": "DAUI", + "iata_code": "INZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/In_Salah_Airport" + }, + { + "id": "2081", + "ident": "DAUK", + "type": "medium_airport", + "name": "Touggourt Sidi Madhi Airport", + "latitude_deg": "33.067799", + "longitude_deg": "6.08867", + "elevation_ft": "279", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-55", + "municipality": "Touggourt", + "scheduled_service": "yes", + "gps_code": "DAUK", + "iata_code": "TGR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Touggourt_Sidi_Madhi_Airport" + }, + { + "id": "2082", + "ident": "DAUL", + "type": "medium_airport", + "name": "Laghouat - Molay Ahmed Medeghri Airport", + "latitude_deg": "33.7644", + "longitude_deg": "2.92834", + "elevation_ft": "2510", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-03", + "municipality": "Laghouat", + "scheduled_service": "no", + "gps_code": "DAUL", + "iata_code": "LOO" + }, + { + "id": "2083", + "ident": "DAUO", + "type": "medium_airport", + "name": "Guemar Airport", + "latitude_deg": "33.5113983154", + "longitude_deg": "6.77679014206", + "elevation_ft": "203", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-39", + "municipality": "Guemar", + "scheduled_service": "yes", + "gps_code": "DAUO", + "iata_code": "ELU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guemar_Airport" + }, + { + "id": "2084", + "ident": "DAUT", + "type": "medium_airport", + "name": "Timimoun Airport", + "latitude_deg": "29.237101", + "longitude_deg": "0.276033", + "elevation_ft": "1027", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-54", + "municipality": "Timimoun", + "scheduled_service": "yes", + "gps_code": "DAUT", + "iata_code": "TMX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Timimoun_Airport" + }, + { + "id": "2085", + "ident": "DAUU", + "type": "medium_airport", + "name": "Ain Beida Airport", + "latitude_deg": "31.9172", + "longitude_deg": "5.41278", + "elevation_ft": "492", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-30", + "municipality": "Ouargla", + "scheduled_service": "yes", + "gps_code": "DAUU", + "iata_code": "OGX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ain_Beida_Airport", + "keywords": "Ain el Beida, Sedrata Airfield" + }, + { + "id": "2086", + "ident": "DAUZ", + "type": "medium_airport", + "name": "Zarzaitine - In Aménas Airport", + "latitude_deg": "28.0515", + "longitude_deg": "9.64291", + "elevation_ft": "1847", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-33", + "municipality": "In Aménas", + "scheduled_service": "yes", + "gps_code": "DAUZ", + "iata_code": "IAM", + "wikipedia_link": "https://en.wikipedia.org/wiki/In_Amenas_Airport" + }, + { + "id": "2087", + "ident": "DBBB", + "type": "medium_airport", + "name": "Cadjehoun Airport", + "latitude_deg": "6.357230186462402", + "longitude_deg": "2.384350061416626", + "elevation_ft": "19", + "continent": "AF", + "iso_country": "BJ", + "iso_region": "BJ-AQ", + "municipality": "Cotonou", + "scheduled_service": "yes", + "gps_code": "DBBB", + "iata_code": "COO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cadjehoun_Airport" + }, + { + "id": "30879", + "ident": "DBBC", + "type": "small_airport", + "name": "Cana Airport", + "latitude_deg": "7.125417", + "longitude_deg": "2.046806", + "elevation_ft": "548", + "continent": "AF", + "iso_country": "BJ", + "iso_region": "BJ-ZO", + "municipality": "Bohicon", + "scheduled_service": "no", + "gps_code": "DBBC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cana_Airport" + }, + { + "id": "302113", + "ident": "DBBD", + "type": "small_airport", + "name": "Djougou Airport", + "latitude_deg": "9.69208333333", + "longitude_deg": "1.63777777778", + "elevation_ft": "1480", + "continent": "AF", + "iso_country": "BJ", + "iso_region": "BJ-DO", + "municipality": "Djougou", + "scheduled_service": "no", + "gps_code": "DBBD", + "iata_code": "DJA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Djougou_Airport" + }, + { + "id": "31734", + "ident": "DBBK", + "type": "small_airport", + "name": "Kandi Airport", + "latitude_deg": "11.14479", + "longitude_deg": "2.940381", + "elevation_ft": "951", + "continent": "AF", + "iso_country": "BJ", + "iso_region": "BJ-AL", + "municipality": "Kandi", + "scheduled_service": "no", + "gps_code": "DBBK", + "iata_code": "KDC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kandi_Airport" + }, + { + "id": "32001", + "ident": "DBBN", + "type": "small_airport", + "name": "Natitingou Airport", + "latitude_deg": "10.376965", + "longitude_deg": "1.360507", + "elevation_ft": "1512", + "continent": "AF", + "iso_country": "BJ", + "iso_region": "BJ-AK", + "municipality": "Natitingou", + "scheduled_service": "no", + "gps_code": "DBBN", + "iata_code": "NAE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bound%C3%A9tingou_Airport" + }, + { + "id": "30880", + "ident": "DBBO", + "type": "small_airport", + "name": "Porga Airport", + "latitude_deg": "11.046563", + "longitude_deg": "0.992613", + "elevation_ft": "531", + "continent": "AF", + "iso_country": "BJ", + "iso_region": "BJ-AK", + "municipality": "Porga", + "scheduled_service": "no", + "gps_code": "DBBO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Porga_Airport" + }, + { + "id": "32162", + "ident": "DBBP", + "type": "small_airport", + "name": "Parakou Airport", + "latitude_deg": "9.35768985748291", + "longitude_deg": "2.609679937362671", + "elevation_ft": "1266", + "continent": "AF", + "iso_country": "BJ", + "iso_region": "BJ-BO", + "municipality": "Parakou", + "scheduled_service": "no", + "gps_code": "DBBP", + "iata_code": "PKO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Parakou_Airport" + }, + { + "id": "30881", + "ident": "DBBR", + "type": "small_airport", + "name": "Bembereke Airport", + "latitude_deg": "10.27409", + "longitude_deg": "2.697082", + "elevation_ft": "1188", + "continent": "AF", + "iso_country": "BJ", + "iso_region": "BJ-BO", + "municipality": "Bembereke", + "scheduled_service": "no", + "gps_code": "DBBR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bembereke_Airport" + }, + { + "id": "35350", + "ident": "DBBS", + "type": "small_airport", + "name": "Savé Airport", + "latitude_deg": "8.018170356750488", + "longitude_deg": "2.4645800590515137", + "elevation_ft": "597", + "continent": "AF", + "iso_country": "BJ", + "iso_region": "BJ-CO", + "municipality": "Savé", + "scheduled_service": "no", + "gps_code": "DBBS", + "iata_code": "SVF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sav%C3%A9_Airport" + }, + { + "id": "316519", + "ident": "DBC", + "type": "medium_airport", + "name": "Baicheng Chang'an Airport", + "latitude_deg": "45.505278", + "longitude_deg": "123.019722", + "elevation_ft": "480", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-22", + "municipality": "Baicheng", + "scheduled_service": "yes", + "gps_code": "ZYBA", + "iata_code": "DBC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baicheng_Chang%27an_Airport" + }, + { + "id": "315621", + "ident": "DBK", + "type": "seaplane_base", + "name": "Dutch Bay SPB", + "latitude_deg": "8.273", + "longitude_deg": "79.756", + "elevation_ft": "0", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-6", + "municipality": "Kalpitiya Island", + "scheduled_service": "no", + "iata_code": "DBK" + }, + { + "id": "302094", + "ident": "DBP", + "type": "small_airport", + "name": "Debepare Airport", + "latitude_deg": "-6.30861111111", + "longitude_deg": "141.905555556", + "elevation_ft": "360", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Debepare", + "scheduled_service": "no", + "gps_code": "AYDB", + "iata_code": "DBP", + "local_code": "DBP", + "keywords": "Debepari" + }, + { + "id": "312783", + "ident": "DBU", + "type": "seaplane_base", + "name": "Dambulu Oya Tank Seaplane Base", + "latitude_deg": "7.8604", + "longitude_deg": "80.6304", + "elevation_ft": "535", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-2", + "municipality": "Dambulla", + "scheduled_service": "no", + "iata_code": "DBU", + "keywords": "Ibbankatuwa Tank Waterdrome" + }, + { + "id": "17098", + "ident": "DC01", + "type": "heliport", + "name": "Washington Post Heliport", + "latitude_deg": "38.903111", + "longitude_deg": "-77.030648", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DC", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "DC01", + "local_code": "DC01" + }, + { + "id": "17099", + "ident": "DC02", + "type": "heliport", + "name": "Metropolitan Complex Heliport", + "latitude_deg": "38.910400390625", + "longitude_deg": "-77.0072021484375", + "elevation_ft": "109", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DC", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "DC02", + "local_code": "DC02" + }, + { + "id": "17100", + "ident": "DC03", + "type": "heliport", + "name": "Us Park Police Eagle's Nest Heliport", + "latitude_deg": "38.86650085449219", + "longitude_deg": "-76.9927978515625", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DC", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "DC03", + "local_code": "DC03" + }, + { + "id": "17101", + "ident": "DC04", + "type": "heliport", + "name": "Spirit of Washington Heliport", + "latitude_deg": "38.874298095703125", + "longitude_deg": "-77.02140045166016", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DC", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "DC04", + "local_code": "DC04" + }, + { + "id": "17102", + "ident": "DC06", + "type": "heliport", + "name": "Metropolitan Police Department 2nd District Heliport", + "latitude_deg": "38.934833", + "longitude_deg": "-77.074821", + "elevation_ft": "106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DC", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "DC06", + "local_code": "DC06", + "keywords": "MPD" + }, + { + "id": "17103", + "ident": "DC07", + "type": "heliport", + "name": "MPD 5th Metropolitan Police Department Heliport", + "latitude_deg": "38.9151001", + "longitude_deg": "-76.97329712", + "elevation_ft": "383", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DC", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "DC07", + "local_code": "DC07", + "keywords": "MPD" + }, + { + "id": "17104", + "ident": "DC08", + "type": "heliport", + "name": "WHC Heliport", + "latitude_deg": "38.929000854499996", + "longitude_deg": "-77.01640319820001", + "elevation_ft": "205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DC", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "DC08", + "local_code": "DC08", + "keywords": "WHC" + }, + { + "id": "17105", + "ident": "DC09", + "type": "heliport", + "name": "Medstar Georgetown University Hospital Heliport", + "latitude_deg": "38.910368", + "longitude_deg": "-77.077693", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DC", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "DC09", + "local_code": "DC09" + }, + { + "id": "17106", + "ident": "DC11", + "type": "heliport", + "name": "National Presbyterian Church Heliport", + "latitude_deg": "38.942100524902344", + "longitude_deg": "-77.08000183105469", + "elevation_ft": "375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DC", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "DC11", + "local_code": "DC11" + }, + { + "id": "17107", + "ident": "DC13", + "type": "closed", + "name": "Walter Reed Forest Glen Heliport", + "latitude_deg": "39.006529", + "longitude_deg": "-77.056603", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Washington", + "scheduled_service": "no", + "keywords": "DC13" + }, + { + "id": "17108", + "ident": "DC14", + "type": "closed", + "name": "Walter Reed Emergency Heliport", + "latitude_deg": "38.977644", + "longitude_deg": "-77.027915", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DC", + "municipality": "Washington", + "scheduled_service": "no", + "keywords": "DC14" + }, + { + "id": "17109", + "ident": "DC15", + "type": "closed", + "name": "Steuart Office Pad Heliport", + "latitude_deg": "38.958401", + "longitude_deg": "-77.0886", + "elevation_ft": "441", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DC", + "municipality": "Washington", + "scheduled_service": "no", + "keywords": "DC15" + }, + { + "id": "17110", + "ident": "DC16", + "type": "heliport", + "name": "Metropolitan Police Department 3rd District Heliport", + "latitude_deg": "38.917922", + "longitude_deg": "-77.038125", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DC", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "DC16", + "local_code": "DC16", + "keywords": "MPD" + }, + { + "id": "17111", + "ident": "DC17", + "type": "heliport", + "name": "Children's Hospital Heliport", + "latitude_deg": "38.92729949951172", + "longitude_deg": "-77.01409912109375", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DC", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "DC17", + "local_code": "DC17" + }, + { + "id": "17112", + "ident": "DC52", + "type": "heliport", + "name": "Sibley Memorial Hospital Heliport", + "latitude_deg": "38.936934", + "longitude_deg": "-77.110548", + "elevation_ft": "289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DC", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "DC52", + "local_code": "DC52", + "keywords": "MD38" + }, + { + "id": "300319", + "ident": "DCG", + "type": "seaplane_base", + "name": "Dubai Creek SPB", + "latitude_deg": "25.2422222222", + "longitude_deg": "55.3313888889", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "municipality": "Dubai", + "scheduled_service": "no", + "iata_code": "DCG" + }, + { + "id": "17113", + "ident": "DCK", + "type": "small_airport", + "name": "Dahl Creek Airport", + "latitude_deg": "66.9432983398", + "longitude_deg": "-156.904998779", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Dahl Creek", + "scheduled_service": "no", + "gps_code": "DCK", + "iata_code": "DCK", + "local_code": "DCK" + }, + { + "id": "46085", + "ident": "DCR", + "type": "closed", + "name": "Decatur HI-Way Airfield", + "latitude_deg": "40.837548", + "longitude_deg": "-84.862464", + "elevation_ft": "842", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Decatur", + "scheduled_service": "no", + "iata_code": "DCR", + "local_code": "DCR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Decatur_Hi-Way_Airport" + }, + { + "id": "302106", + "ident": "DDM", + "type": "small_airport", + "name": "Dodoima Airport", + "latitude_deg": "-8.17736111111", + "longitude_deg": "147.809444444", + "elevation_ft": "75", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "scheduled_service": "no", + "iata_code": "DDM", + "local_code": "DDM" + }, + { + "id": "17114", + "ident": "DDT", + "type": "small_airport", + "name": "Duffys Tavern Airport", + "latitude_deg": "62.724602", + "longitude_deg": "-143.921005", + "elevation_ft": "2420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Slana", + "scheduled_service": "no", + "gps_code": "PADT", + "local_code": "DDT", + "keywords": "AK31" + }, + { + "id": "45044", + "ident": "DE-0001", + "type": "heliport", + "name": "Klinikum am Plattenwald Helipad", + "latitude_deg": "49.2128560011", + "longitude_deg": "9.236728549", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Bad Friedrichshall", + "scheduled_service": "no" + }, + { + "id": "332693", + "ident": "DE-0002", + "type": "closed", + "name": "Ahlhorn Highway Strip Autobahn-Notlandeplatz NLP", + "latitude_deg": "52.929984", + "longitude_deg": "8.173538", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Großenkneten", + "scheduled_service": "no" + }, + { + "id": "299694", + "ident": "DE-0003", + "type": "small_airport", + "name": "August-Euler Flugplatz", + "latitude_deg": "49.853757", + "longitude_deg": "8.586243", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Griesheim", + "scheduled_service": "no", + "home_link": "http://www.sla.tu-darmstadt.de/windkanal/einrichtungen_sla/flugplatz_sla/index.de.jsp", + "wikipedia_link": "http://de.wikipedia.org/wiki/August-Euler-Flugplatz" + }, + { + "id": "28576", + "ident": "DE-0004", + "type": "small_airport", + "name": "Flugplatz Gransee", + "latitude_deg": "53.006699", + "longitude_deg": "13.205", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Gransee", + "scheduled_service": "no", + "gps_code": "EDUG", + "home_link": "http://www.gojump.de/" + }, + { + "id": "322973", + "ident": "DE-0005", + "type": "small_airport", + "name": "Warngau Airfield", + "latitude_deg": "47.825011", + "longitude_deg": "11.703733", + "elevation_ft": "2380", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "München", + "scheduled_service": "no", + "home_link": "http://www.fliegerclub-warngau.de", + "keywords": "münchen,munich,wargau" + }, + { + "id": "43128", + "ident": "DE-0006", + "type": "small_airport", + "name": "Sonderlandeplatz Locktow", + "latitude_deg": "52.11639", + "longitude_deg": "12.709444", + "elevation_ft": "213", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Locktow", + "scheduled_service": "no" + }, + { + "id": "43695", + "ident": "DE-0007", + "type": "closed", + "name": "Wünsdorf Airfield", + "latitude_deg": "52.198001861572", + "longitude_deg": "13.527000427246", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "scheduled_service": "no", + "keywords": "Wuensdorf Airfield, Аэродром Вюнсдорф" + }, + { + "id": "44460", + "ident": "DE-0008", + "type": "closed", + "name": "Steinstücken Helipad", + "latitude_deg": "52.3902015686", + "longitude_deg": "13.128600120500002", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BE", + "municipality": "Berlin", + "scheduled_service": "no", + "wikipedia_link": "http://de.wikipedia.org/wiki/Berlin-Steinst%C3%BCcken", + "keywords": "Steinstuecken Helipad, Steinstucken Helipad" + }, + { + "id": "44461", + "ident": "DE-0009", + "type": "closed", + "name": "Sperenberg Air Base", + "latitude_deg": "52.13999938964844", + "longitude_deg": "13.305000305175781", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Sperenberg", + "scheduled_service": "no", + "keywords": "Аэродром Шперенберг" + }, + { + "id": "44462", + "ident": "DE-0010", + "type": "closed", + "name": "Straubing Airfield", + "latitude_deg": "48.827999", + "longitude_deg": "12.561", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Mitterharthausen", + "scheduled_service": "no", + "keywords": "Mitterharthausen Airfield" + }, + { + "id": "44463", + "ident": "DE-0011", + "type": "closed", + "name": "Strausberg Helipad", + "latitude_deg": "52.524898529052734", + "longitude_deg": "13.8302001953125", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Eggersdorf", + "scheduled_service": "no" + }, + { + "id": "44464", + "ident": "DE-0012", + "type": "closed", + "name": "Schönwalde Airfield", + "latitude_deg": "52.617453", + "longitude_deg": "13.15958", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Schönwalde", + "scheduled_service": "no", + "keywords": "Schoenwalde Airfield" + }, + { + "id": "44468", + "ident": "DE-0013", + "type": "closed", + "name": "Johannisthal Airfield", + "latitude_deg": "52.4379997253418", + "longitude_deg": "13.524999618530273", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BE", + "municipality": "Berlin", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Johannisthal_Air_Field" + }, + { + "id": "44583", + "ident": "DE-0014", + "type": "heliport", + "name": "Rostock University Helipad", + "latitude_deg": "54.08330154418945", + "longitude_deg": "12.100500106811523", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Rostock", + "scheduled_service": "no" + }, + { + "id": "44584", + "ident": "DE-0015", + "type": "heliport", + "name": "Dresden Friedrichstadt Hospital Helipad", + "latitude_deg": "51.058101654052734", + "longitude_deg": "13.718999862670898", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Dresden", + "scheduled_service": "no" + }, + { + "id": "44585", + "ident": "DE-0016", + "type": "heliport", + "name": "Erlangen Ebrardstrasse Helipad", + "latitude_deg": "49.60200119018555", + "longitude_deg": "11.022500038146973", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Erlangen", + "scheduled_service": "no", + "keywords": "Erlangen Ebrardstraße Helipad" + }, + { + "id": "44586", + "ident": "DE-0017", + "type": "heliport", + "name": "Kelley Barracks Helipad", + "latitude_deg": "48.72169876098633", + "longitude_deg": "9.181500434875488", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Stuttgart", + "scheduled_service": "no" + }, + { + "id": "44587", + "ident": "DE-0018", + "type": "heliport", + "name": "Frankfurt am Main Accident Hospital Roof Helipad", + "latitude_deg": "50.14540100097656", + "longitude_deg": "8.71030044555664", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Frankfurt am Main", + "scheduled_service": "no" + }, + { + "id": "44588", + "ident": "DE-0019", + "type": "heliport", + "name": "Frankfurt am Main Accident Hospital Ground Helipad", + "latitude_deg": "50.144100189208984", + "longitude_deg": "8.709600448608398", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Frankfurt am Main", + "scheduled_service": "no" + }, + { + "id": "44589", + "ident": "DE-0020", + "type": "heliport", + "name": "Industriepark Hoechst Helipad", + "latitude_deg": "50.089298248291016", + "longitude_deg": "8.538100242614746", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Frankfurt am Main", + "scheduled_service": "no", + "keywords": "Industriepark Höchst Helipad" + }, + { + "id": "44590", + "ident": "DE-0021", + "type": "heliport", + "name": "Biblis Nuclear Power Plant Helipad", + "latitude_deg": "49.70750045776367", + "longitude_deg": "8.417499542236328", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Biblis", + "scheduled_service": "no", + "keywords": "Biblis Kernkraftwerk Hubschrauberlandeplatz" + }, + { + "id": "44591", + "ident": "DE-0022", + "type": "heliport", + "name": "Mainz ZDF-Complex Helipad", + "latitude_deg": "49.96620178222656", + "longitude_deg": "8.212699890136719", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Mainz", + "scheduled_service": "no" + }, + { + "id": "44592", + "ident": "DE-0023", + "type": "heliport", + "name": "Bernkastel-Kues Cusanus Hospital Helipad", + "latitude_deg": "49.91569900512695", + "longitude_deg": "7.062300205230713", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "scheduled_service": "no" + }, + { + "id": "44593", + "ident": "DE-0024", + "type": "heliport", + "name": "Remagen Rolandseck Helipad", + "latitude_deg": "50.63209915161133", + "longitude_deg": "7.207699775695801", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Remagen", + "scheduled_service": "no" + }, + { + "id": "44594", + "ident": "DE-0025", + "type": "heliport", + "name": "Osnabrück Hospital Helipad", + "latitude_deg": "52.27790069580078", + "longitude_deg": "8.004799842834473", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Osnabrück", + "scheduled_service": "no", + "keywords": "Osnabrueck Hospital Helipad, Osnabruck Hospital Helipad" + }, + { + "id": "44595", + "ident": "DE-0026", + "type": "heliport", + "name": "Meppen Ludmillenstift Hospital Helipad", + "latitude_deg": "52.68949890136719", + "longitude_deg": "7.294400215148926", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Meppen", + "scheduled_service": "no" + }, + { + "id": "44596", + "ident": "DE-0027", + "type": "heliport", + "name": "Grafenrheinfeld Nuclear Power Plant Helipad", + "latitude_deg": "49.9822998046875", + "longitude_deg": "10.191399574279785", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Schweinfurt", + "scheduled_service": "no", + "keywords": "Grafenrheinfeld Kernkraftwerk Hubschrauberlandeplatz" + }, + { + "id": "45184", + "ident": "DE-0028", + "type": "closed", + "name": "Wittstock Air Base", + "latitude_deg": "53.201", + "longitude_deg": "12.524", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Wittstock", + "scheduled_service": "no" + }, + { + "id": "45185", + "ident": "DE-0029", + "type": "small_airport", + "name": "Berlinchen Airfield", + "latitude_deg": "53.2251775192", + "longitude_deg": "12.565526962299998", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Berlinchen", + "scheduled_service": "no" + }, + { + "id": "45224", + "ident": "DE-0030", + "type": "heliport", + "name": "Traunstein Hospital Helipad", + "latitude_deg": "47.874141033200004", + "longitude_deg": "12.6314127445", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Traunstein", + "scheduled_service": "no", + "home_link": "http://www.kliniken-suedostbayern.de/de/main/klinikum_traunstein.htm", + "keywords": "Klinikum Traunstein Hubschrauberlandeplatz" + }, + { + "id": "45225", + "ident": "DE-0031", + "type": "heliport", + "name": "Bad Reichenhall Hospital Helipad", + "latitude_deg": "47.7284922303", + "longitude_deg": "12.8724843264", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Bad Reichenhal", + "scheduled_service": "no", + "home_link": "http://www.kliniken-suedostbayern.de/de/main/kreisklinik_bad_reichenhall.htm", + "keywords": "Kreisklinik Bad Reichenhall Hubschrauberlandeplatz" + }, + { + "id": "45226", + "ident": "DE-0032", + "type": "heliport", + "name": "Berchtesgaden Hospital Helipad", + "latitude_deg": "47.6403452253", + "longitude_deg": "13.006052970899999", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Berchtesgaden", + "scheduled_service": "no", + "home_link": "http://www.kliniken-suedostbayern.de/de/main/kreisklinik_berchtesgaden.htm", + "keywords": "Kreisklinik Berchtesgaden Hubschrauberlandeplatz" + }, + { + "id": "45227", + "ident": "DE-0033", + "type": "heliport", + "name": "Freilassing Hospital Helipad", + "latitude_deg": "47.848497197499995", + "longitude_deg": "12.979743182700002", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Freilassing", + "scheduled_service": "no", + "home_link": "http://www.kliniken-suedostbayern.de/de/main/kreisklinik_freilassing.htm", + "keywords": "Kreisklinik Freilassing Hubschrauberlandeplatz" + }, + { + "id": "45228", + "ident": "DE-0034", + "type": "heliport", + "name": "Trostberg Hospital Helipad", + "latitude_deg": "48.0291332578", + "longitude_deg": "12.5431895256", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Trostberg", + "scheduled_service": "no", + "home_link": "http://www.kliniken-suedostbayern.de/de/main/kreisklinik_trostberg.htm", + "keywords": "Kreisklinik Trostberg Hubschrauberlandeplatz" + }, + { + "id": "307050", + "ident": "DE-0035", + "type": "heliport", + "name": "Helgoland Navy Helicopter Base", + "latitude_deg": "54.175308", + "longitude_deg": "7.890028", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Heligoland", + "scheduled_service": "no" + }, + { + "id": "300109", + "ident": "DE-0036", + "type": "heliport", + "name": "Grafenwöhr Medevac Helipad", + "latitude_deg": "49.7080555556", + "longitude_deg": "11.916111111100001", + "elevation_ft": "1354", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Grafenwöhr", + "scheduled_service": "no", + "local_code": "ET26", + "keywords": "US Army Grafenwöhr Training Area" + }, + { + "id": "300115", + "ident": "DE-0037", + "type": "heliport", + "name": "Vilseck Main Army Heliport", + "latitude_deg": "49.649444444400004", + "longitude_deg": "11.805833333299999", + "elevation_ft": "1358", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Vilseck", + "scheduled_service": "no", + "local_code": "ET43", + "keywords": "Langenbruck" + }, + { + "id": "308152", + "ident": "DE-0038", + "type": "small_airport", + "name": "Utscheid Segelflugplatz", + "latitude_deg": "49.997777777799996", + "longitude_deg": "6.342777777779999", + "elevation_ft": "1390", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Bitburg", + "scheduled_service": "no", + "home_link": "http://www.flugplatz-utscheid.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Liste_der_Segelfluggel%C3%A4nde_in_Deutschland" + }, + { + "id": "308153", + "ident": "DE-0039", + "type": "small_airport", + "name": "Aichach Glider Field", + "latitude_deg": "48.471798", + "longitude_deg": "11.134349", + "elevation_ft": "1445", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Aichach", + "scheduled_service": "no", + "home_link": "https://lsvaichach.de/" + }, + { + "id": "308157", + "ident": "DE-0040", + "type": "small_airport", + "name": "Zierenberg Airfield", + "latitude_deg": "51.367", + "longitude_deg": "9.336", + "elevation_ft": "1450", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Zierenberg", + "scheduled_service": "no" + }, + { + "id": "308158", + "ident": "DE-0041", + "type": "small_airport", + "name": "Zellhausen Sport Airport", + "latitude_deg": "50.021637", + "longitude_deg": "8.983212", + "elevation_ft": "370", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Zellhausen", + "scheduled_service": "no" + }, + { + "id": "308179", + "ident": "DE-0042", + "type": "small_airport", + "name": "Segelflugplatz Weißenburg-Wülzburg", + "latitude_deg": "49.025851", + "longitude_deg": "11.018746", + "elevation_ft": "2027", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "308187", + "ident": "DE-0043", + "type": "small_airport", + "name": "Wilsche Glider Field", + "latitude_deg": "52.524677", + "longitude_deg": "10.462597", + "elevation_ft": "191", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Wilsche", + "scheduled_service": "no", + "gps_code": "EDVQ" + }, + { + "id": "308191", + "ident": "DE-0044", + "type": "small_airport", + "name": "Witzenhausen-Burgberg Glider Field", + "latitude_deg": "51.349735", + "longitude_deg": "9.824789", + "elevation_ft": "659", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Witzenhausen", + "scheduled_service": "no", + "home_link": "https://www.luftsportverein-witzenhausen.de", + "wikipedia_link": "http://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Witzenhausen-Burgberg" + }, + { + "id": "308192", + "ident": "DE-0045", + "type": "closed", + "name": "Kleve-Wisseler Dünen Airfield", + "latitude_deg": "51.769461", + "longitude_deg": "6.299106", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Wissel", + "scheduled_service": "no" + }, + { + "id": "308196", + "ident": "DE-0046", + "type": "small_airport", + "name": "Wildberg Glider Airfield", + "latitude_deg": "48.637325", + "longitude_deg": "8.733327", + "elevation_ft": "1670", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Wildberg", + "scheduled_service": "no" + }, + { + "id": "308197", + "ident": "DE-0047", + "type": "small_airport", + "name": "Wächtersberg-Hub Glider Airfield", + "latitude_deg": "48.614931", + "longitude_deg": "8.755457", + "elevation_ft": "1965", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Wildberg", + "scheduled_service": "no", + "gps_code": "EDSV" + }, + { + "id": "308199", + "ident": "DE-0048", + "type": "small_airport", + "name": "Steinberg in Surwold Glider Airfield", + "latitude_deg": "52.956445", + "longitude_deg": "7.556663", + "elevation_ft": "100", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Steinberg", + "scheduled_service": "no" + }, + { + "id": "308209", + "ident": "DE-0049", + "type": "small_airport", + "name": "Flugplatz Altfeld", + "latitude_deg": "49.831865", + "longitude_deg": "9.537292", + "elevation_ft": "1160", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Altfeld", + "scheduled_service": "no" + }, + { + "id": "308211", + "ident": "DE-0050", + "type": "small_airport", + "name": "Alsfeld Airfield", + "latitude_deg": "50.750565", + "longitude_deg": "9.248615", + "elevation_ft": "970", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Alsfeld", + "scheduled_service": "no" + }, + { + "id": "308215", + "ident": "DE-0051", + "type": "small_airport", + "name": "Altdorf-Hagenhausen Airfield", + "latitude_deg": "49.387209", + "longitude_deg": "11.422145", + "elevation_ft": "1770", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Altdorf near Nuremberg", + "scheduled_service": "no", + "home_link": "http://www.altdorf-hagenhausen.de/" + }, + { + "id": "308221", + "ident": "DE-0052", + "type": "small_airport", + "name": "Bischofsberg Airfield", + "latitude_deg": "50.432470384", + "longitude_deg": "10.287065506", + "elevation_ft": "1080", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Mellrichstadt", + "scheduled_service": "no" + }, + { + "id": "308233", + "ident": "DE-0053", + "type": "small_airport", + "name": "Cham-Janahof Airfield", + "latitude_deg": "49.2120464989", + "longitude_deg": "12.6541042328", + "elevation_ft": "1200", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Cham", + "scheduled_service": "no" + }, + { + "id": "308236", + "ident": "DE-0054", + "type": "small_airport", + "name": "Dobenreuth Airfield", + "latitude_deg": "49.697", + "longitude_deg": "11.1418", + "elevation_ft": "1110", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Forchheim", + "scheduled_service": "no", + "home_link": "http://home.arcor-online.de/alois.laumer/platz-te/dobenreu.htm" + }, + { + "id": "308245", + "ident": "DE-0055", + "type": "small_airport", + "name": "Tirschenreuth Airfield", + "latitude_deg": "49.8739", + "longitude_deg": "12.3281", + "elevation_ft": "1600", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Tirschenreuth", + "scheduled_service": "no" + }, + { + "id": "308252", + "ident": "DE-0056", + "type": "small_airport", + "name": "Paterzell Airfield", + "latitude_deg": "47.8469203625", + "longitude_deg": "11.0610866547", + "elevation_ft": "1955", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Paterzell", + "scheduled_service": "no", + "home_link": "http://www.paterzell.de/cms/index.php?id=18" + }, + { + "id": "308272", + "ident": "DE-0057", + "type": "small_airport", + "name": "Am Kreuzberg Glider Airfield", + "latitude_deg": "50.3088", + "longitude_deg": "10.3734", + "elevation_ft": "875", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Saale", + "scheduled_service": "no" + }, + { + "id": "308282", + "ident": "DE-0058", + "type": "small_airport", + "name": "Kronach Airfield", + "latitude_deg": "50.243644", + "longitude_deg": "11.3589", + "elevation_ft": "1520", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Kronach", + "scheduled_service": "no", + "home_link": "http://www.flugplatz-kronach.de/" + }, + { + "id": "308289", + "ident": "DE-0059", + "type": "small_airport", + "name": "Kaufbeuren Air Base", + "latitude_deg": "47.8617", + "longitude_deg": "10.6143", + "elevation_ft": "2400", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Kaufbeuren", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kaufbeuren_Air_Base" + }, + { + "id": "308315", + "ident": "DE-0060", + "type": "small_airport", + "name": "Segelflugplatz Karlstadt-Saupurzel", + "latitude_deg": "49.971234", + "longitude_deg": "9.790516", + "elevation_ft": "805", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Karlstadt", + "scheduled_service": "no", + "home_link": "http://home.arcor-online.de/alois.laumer/platz-te/karlstad.htm" + }, + { + "id": "308330", + "ident": "DE-0061", + "type": "small_airport", + "name": "Altötting Airfield", + "latitude_deg": "48.2162", + "longitude_deg": "12.6484", + "elevation_ft": "1311", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Altötting", + "scheduled_service": "no" + }, + { + "id": "308407", + "ident": "DE-0062", + "type": "small_airport", + "name": "Antersberg Airfield", + "latitude_deg": "47.9629", + "longitude_deg": "11.9955", + "elevation_ft": "1605", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Antersberg", + "scheduled_service": "no" + }, + { + "id": "308487", + "ident": "DE-0063", + "type": "small_airport", + "name": "Rammertshof Amberg Airfield", + "latitude_deg": "49.4394", + "longitude_deg": "11.8107", + "elevation_ft": "1280", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Amberg", + "scheduled_service": "no" + }, + { + "id": "308578", + "ident": "DE-0064", + "type": "small_airport", + "name": "Oberleichtersbach Airfield", + "latitude_deg": "50.271942", + "longitude_deg": "9.823622", + "elevation_ft": "1330", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Bad Brückenau", + "scheduled_service": "no", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Oberleichtersbach" + }, + { + "id": "308649", + "ident": "DE-0065", + "type": "small_airport", + "name": "Tröstau Glider Field", + "latitude_deg": "50.018763", + "longitude_deg": "11.933259", + "elevation_ft": "1870", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Tröstau", + "scheduled_service": "no", + "home_link": "http://www.flugplatz-troestau.de/", + "keywords": "EDTT" + }, + { + "id": "308750", + "ident": "DE-0066", + "type": "small_airport", + "name": "Königsdorf Gliding Center", + "latitude_deg": "47.82868", + "longitude_deg": "11.465", + "elevation_ft": "1971", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Königsdorf", + "scheduled_service": "no", + "home_link": "http://www.segelflugzentrum-koenigsdorf.de/" + }, + { + "id": "308807", + "ident": "DE-0067", + "type": "closed", + "name": "Dürabuch Glider Airfield", + "latitude_deg": "48.26225", + "longitude_deg": "11.2094", + "elevation_ft": "1770", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Dürabuch", + "scheduled_service": "no", + "home_link": "http://www.segelflug.de/vereine/fuerstenfeldbruck/duerabuch.html#" + }, + { + "id": "308808", + "ident": "DE-0068", + "type": "small_airport", + "name": "Erbendorf Airfield", + "latitude_deg": "49.8438", + "longitude_deg": "12.06714", + "elevation_ft": "1640", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Erbendorf", + "scheduled_service": "no" + }, + { + "id": "308862", + "ident": "DE-0069", + "type": "small_airport", + "name": "Kleinhartpenning Ultralight Site", + "latitude_deg": "47.8519", + "longitude_deg": "11.6667", + "elevation_ft": "2375", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Kleinhartpenning", + "scheduled_service": "no" + }, + { + "id": "308863", + "ident": "DE-0070", + "type": "small_airport", + "name": "Marpingen Glider Airfield", + "latitude_deg": "49.453", + "longitude_deg": "7.039", + "elevation_ft": "1155", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SL", + "municipality": "Marpingen", + "scheduled_service": "no", + "wikipedia_link": "http://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Marpingen", + "keywords": "Segelfluggelände Marpingen" + }, + { + "id": "308980", + "ident": "DE-0071", + "type": "small_airport", + "name": "Bad Königshofen Airfield", + "latitude_deg": "50.2876", + "longitude_deg": "10.4225", + "elevation_ft": "1030", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Bad Königshofen", + "scheduled_service": "no", + "home_link": "http://www.amhimmelreich.com/home.html", + "keywords": "\"Kingdom of Heaven\"" + }, + { + "id": "308982", + "ident": "DE-0072", + "type": "small_airport", + "name": "Bad Wörishofen Glider Airfield", + "latitude_deg": "48.02678", + "longitude_deg": "10.60135", + "elevation_ft": "2020", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Bad Wörishofen", + "scheduled_service": "no", + "home_link": "http://www.badwoerishofen-segelflug.de/" + }, + { + "id": "308983", + "ident": "DE-0073", + "type": "small_airport", + "name": "Benediktbeuern Airfield", + "latitude_deg": "47.71564", + "longitude_deg": "11.3914", + "elevation_ft": "2000", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Benediktbeuern", + "scheduled_service": "no", + "home_link": "http://www.sg-benediktbeuern.de/flugplatz.htm" + }, + { + "id": "309024", + "ident": "DE-0074", + "type": "small_airport", + "name": "Brannenburg Airfield", + "latitude_deg": "47.74075", + "longitude_deg": "12.11548", + "elevation_ft": "1539", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Brannenburg", + "scheduled_service": "no" + }, + { + "id": "309025", + "ident": "DE-0075", + "type": "small_airport", + "name": "Ohlstadt Airfield", + "latitude_deg": "47.65869", + "longitude_deg": "11.23507", + "elevation_ft": "2197", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Ohlstadt", + "scheduled_service": "no", + "home_link": "https://www.flugplatz-ohlstadt.de/" + }, + { + "id": "309026", + "ident": "DE-0076", + "type": "closed", + "name": "Eschenlohe Airfield", + "latitude_deg": "47.6235", + "longitude_deg": "11.18388", + "elevation_ft": "2064", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Eschenlohe", + "scheduled_service": "no" + }, + { + "id": "309385", + "ident": "DE-0077", + "type": "small_airport", + "name": "Büchig Airfield", + "latitude_deg": "50.4483", + "longitude_deg": "10.2526", + "elevation_ft": "1280", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "309403", + "ident": "DE-0078", + "type": "small_airport", + "name": "Fichtelbrunn Airfield", + "latitude_deg": "49.49818", + "longitude_deg": "11.6595", + "elevation_ft": "1641", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Sulzbach-Rosenberg", + "scheduled_service": "no", + "home_link": "http://www.fichtelbrunn.de/" + }, + { + "id": "309406", + "ident": "DE-0079", + "type": "small_airport", + "name": "Friesner Warte Airfield", + "latitude_deg": "49.8364", + "longitude_deg": "11.04644", + "elevation_ft": "1702", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Hirschaid", + "scheduled_service": "no", + "home_link": "http://www.friesener-warte.de/" + }, + { + "id": "309513", + "ident": "DE-0080", + "type": "small_airport", + "name": "Fürth-Seckendorf Airfield", + "latitude_deg": "49.48152", + "longitude_deg": "10.8588", + "elevation_ft": "1058", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Fürth", + "scheduled_service": "no", + "home_link": "http://www.aero-club-fuerth.de/" + }, + { + "id": "309514", + "ident": "DE-0081", + "type": "small_airport", + "name": "Füssen Glider Airfield", + "latitude_deg": "47.58306", + "longitude_deg": "10.6909", + "elevation_ft": "2589", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Füssen", + "scheduled_service": "no", + "home_link": "http://www.lsv-fuessen.de/" + }, + { + "id": "309619", + "ident": "DE-0082", + "type": "small_airport", + "name": "Gammelsdorf Glider Field", + "latitude_deg": "48.5679", + "longitude_deg": "11.9325", + "elevation_ft": "1630", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Gammelsdorf", + "scheduled_service": "no", + "home_link": "http://www.lsv-albatros.de/typo/index.php?id=27&backPID=27&tt_news=166", + "keywords": "Albatros,Segelflugplatz" + }, + { + "id": "309620", + "ident": "DE-0083", + "type": "small_airport", + "name": "Geitau Airfield", + "latitude_deg": "47.6795", + "longitude_deg": "11.9622", + "elevation_ft": "2730", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Geitau", + "scheduled_service": "no", + "home_link": "http://www.lsc-schliersee.de/index.html" + }, + { + "id": "309632", + "ident": "DE-0084", + "type": "small_airport", + "name": "Geratshof Airfield", + "latitude_deg": "47.9925", + "longitude_deg": "10.8442", + "elevation_ft": "2096", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Landsberg am Lech", + "scheduled_service": "no", + "home_link": "http://www.geratshof.de/" + }, + { + "id": "309638", + "ident": "DE-0085", + "type": "small_airport", + "name": "Greding Airfield", + "latitude_deg": "49.0622", + "longitude_deg": "11.2924", + "elevation_ft": "1732", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Thalmässing-Waizenhofen", + "scheduled_service": "no", + "home_link": "http://www.aero-club-greding.de/" + }, + { + "id": "309639", + "ident": "DE-0086", + "type": "small_airport", + "name": "Greiling Airfield", + "latitude_deg": "47.7654", + "longitude_deg": "11.59546", + "elevation_ft": "2357", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Bad Tölz", + "scheduled_service": "no", + "home_link": "http://www.lsv-greiling.de/" + }, + { + "id": "309873", + "ident": "DE-0087", + "type": "small_airport", + "name": "Hallertau Airfield", + "latitude_deg": "48.64972", + "longitude_deg": "11.59687", + "elevation_ft": "1266", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Holledau", + "scheduled_service": "no", + "home_link": "http://www.lsv-paf.de/" + }, + { + "id": "309874", + "ident": "DE-0088", + "type": "small_airport", + "name": "Hersbruck Airfield", + "latitude_deg": "49.50753", + "longitude_deg": "11.4438", + "elevation_ft": "1105", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Hersbruck", + "scheduled_service": "no", + "home_link": "http://www.segelfliegen-hersbruck.de/" + }, + { + "id": "309875", + "ident": "DE-0089", + "type": "small_airport", + "name": "Hienheim Airfield", + "latitude_deg": "48.87811", + "longitude_deg": "11.76034", + "elevation_ft": "1320", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Hienheim", + "scheduled_service": "no", + "home_link": "http://www.fsv-kelheim.de/" + }, + { + "id": "309906", + "ident": "DE-0090", + "type": "small_airport", + "name": "Oberhinkofen Airfield", + "latitude_deg": "48.9517", + "longitude_deg": "12.1467", + "elevation_ft": "1276", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Regensburg", + "scheduled_service": "no", + "home_link": "http://www.luftsportverein-regensburg.de/" + }, + { + "id": "309907", + "ident": "DE-0091", + "type": "small_airport", + "name": "Oeventrop Airfield", + "latitude_deg": "51.3961", + "longitude_deg": "8.1445", + "elevation_ft": "718", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Arnsberg", + "scheduled_service": "no", + "home_link": "http://www.lsc-oeventrop.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Oeventrop-Ruhrwiesen", + "keywords": "Oeventrop-Ruhrwiesen" + }, + { + "id": "309908", + "ident": "DE-0092", + "type": "small_airport", + "name": "Ottenberg Airfield", + "latitude_deg": "49.3287", + "longitude_deg": "11.4797", + "elevation_ft": "1828", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Nuremberg", + "scheduled_service": "no", + "home_link": "http://www.acsn.de/flugplatz/historie.html" + }, + { + "id": "309909", + "ident": "DE-0093", + "type": "small_airport", + "name": "Unterwössen Airfield", + "latitude_deg": "47.72974", + "longitude_deg": "12.4382", + "elevation_ft": "1836", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Unterwössen", + "scheduled_service": "no", + "home_link": "http://www.dassu.de/", + "keywords": "AG4370" + }, + { + "id": "309957", + "ident": "DE-0094", + "type": "small_airport", + "name": "Agathazell Airfield", + "latitude_deg": "47.553", + "longitude_deg": "10.2731", + "elevation_ft": "2383", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Agathazell", + "scheduled_service": "no", + "home_link": "http://www.agathazell.info/index.php/flugplatz" + }, + { + "id": "309980", + "ident": "DE-0095", + "type": "small_airport", + "name": "Alte Ems Airfield", + "latitude_deg": "53.030765", + "longitude_deg": "7.305385", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Herbrum", + "scheduled_service": "no" + }, + { + "id": "309996", + "ident": "DE-0096", + "type": "small_airport", + "name": "Am Salzgittersee Airfield", + "latitude_deg": "52.1702", + "longitude_deg": "10.31573", + "elevation_ft": "260", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Salzgitter", + "scheduled_service": "no", + "home_link": "http://www.sg-aero.de/" + }, + { + "id": "309997", + "ident": "DE-0097", + "type": "closed", + "name": "Staufenberg Glider Field", + "latitude_deg": "51.362", + "longitude_deg": "9.6288", + "elevation_ft": "1200", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Staufenberg", + "scheduled_service": "no" + }, + { + "id": "309999", + "ident": "DE-0098", + "type": "small_airport", + "name": "Große Höhe Airfield", + "latitude_deg": "52.9861", + "longitude_deg": "8.5722", + "elevation_ft": "70", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Bremen", + "scheduled_service": "no", + "home_link": "http://www.lsvdelmenhorst.de/" + }, + { + "id": "310000", + "ident": "DE-0099", + "type": "small_airport", + "name": "Große Wiese Airfield", + "latitude_deg": "52.13704", + "longitude_deg": "10.5695", + "elevation_ft": "253", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Wolfenbüttel", + "scheduled_service": "no", + "home_link": "http://www.lsg-wf.de/" + }, + { + "id": "310074", + "ident": "DE-0100", + "type": "small_airport", + "name": "Großes Moor Airfield", + "latitude_deg": "52.5359", + "longitude_deg": "10.02", + "elevation_ft": "143", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Adelheidsdorf", + "scheduled_service": "no" + }, + { + "id": "310075", + "ident": "DE-0101", + "type": "small_airport", + "name": "Hellenhagen Airfield", + "latitude_deg": "52.02624", + "longitude_deg": "9.5628", + "elevation_ft": "625", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Bremke", + "scheduled_service": "no", + "home_link": "http://www.flugsportclub.com/index.php/der-verein/unser-flugplatz.html" + }, + { + "id": "310076", + "ident": "DE-0102", + "type": "small_airport", + "name": "Hellingst Airfield", + "latitude_deg": "53.3751", + "longitude_deg": "8.8498", + "elevation_ft": "73", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Holste", + "scheduled_service": "no" + }, + { + "id": "310077", + "ident": "DE-0103", + "type": "small_airport", + "name": "Rote Wiese Glider Field", + "latitude_deg": "52.2336", + "longitude_deg": "10.9809", + "elevation_ft": "360", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Helmstedt", + "scheduled_service": "no", + "home_link": "http://www.lsv-helmstedt.de/03103a98cd1350604/" + }, + { + "id": "310079", + "ident": "DE-0104", + "type": "small_airport", + "name": "Höpen Airfield", + "latitude_deg": "53.1473", + "longitude_deg": "9.796", + "elevation_ft": "275", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Schneverdingen", + "scheduled_service": "no", + "home_link": "http://www.lsv-schneverdingen.de/", + "wikipedia_link": "https://en.wikipedia.org/wiki/H%C3%B6pen_Airfield" + }, + { + "id": "310080", + "ident": "DE-0105", + "type": "small_airport", + "name": "Holtorfsloh Airfield", + "latitude_deg": "53.3222", + "longitude_deg": "10.0743", + "elevation_ft": "181", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Holtorfsloh", + "scheduled_service": "no" + }, + { + "id": "310081", + "ident": "DE-0106", + "type": "small_airport", + "name": "Hoya Airfield", + "latitude_deg": "52.8119", + "longitude_deg": "9.1638", + "elevation_ft": "55", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Hoya", + "scheduled_service": "no", + "gps_code": "EDHY", + "home_link": "http://www.sfv-hoya.de/" + }, + { + "id": "310655", + "ident": "DE-0107", + "type": "small_airport", + "name": "Gronau Airfield", + "latitude_deg": "52.0578", + "longitude_deg": "9.8104", + "elevation_ft": "480", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "An den sieben Bergen", + "scheduled_service": "no" + }, + { + "id": "310656", + "ident": "DE-0108", + "type": "small_airport", + "name": "Aue bei Hattorf Airfield", + "latitude_deg": "51.6334", + "longitude_deg": "10.2544", + "elevation_ft": "618", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Hattorf", + "scheduled_service": "no" + }, + { + "id": "310657", + "ident": "DE-0109", + "type": "small_airport", + "name": "Brockzetel Glider Field", + "latitude_deg": "53.4814", + "longitude_deg": "7.6511", + "elevation_ft": "34", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Aurich", + "scheduled_service": "no", + "wikipedia_link": "http://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Aurich-Brockzetel" + }, + { + "id": "310658", + "ident": "DE-0110", + "type": "small_airport", + "name": "Bad Zwischenahn - Rostrup Airfield", + "latitude_deg": "53.2102", + "longitude_deg": "7.9887", + "elevation_ft": "33", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Bad Zwischenahn", + "scheduled_service": "no" + }, + { + "id": "311008", + "ident": "DE-0111", + "type": "small_airport", + "name": "Berliner Heide Airfield", + "latitude_deg": "52.6697", + "longitude_deg": "10.3705", + "elevation_ft": "230", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Metzingen", + "scheduled_service": "no", + "home_link": "http://www.ftv-metzingen.de/" + }, + { + "id": "311009", + "ident": "DE-0112", + "type": "small_airport", + "name": "Bisperode Airfield", + "latitude_deg": "52.0788", + "longitude_deg": "9.476", + "elevation_ft": "635", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Hamelin", + "scheduled_service": "no", + "home_link": "http://www.lsv-hameln.de/wordpress/" + }, + { + "id": "311010", + "ident": "DE-0113", + "type": "small_airport", + "name": "Blexen Airfield", + "latitude_deg": "53.5383", + "longitude_deg": "8.5388", + "elevation_ft": "4", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Blexen", + "scheduled_service": "no", + "gps_code": "EDWT", + "home_link": "http://www.wlv-blexen.de/flugplatz/" + }, + { + "id": "311045", + "ident": "DE-0114", + "type": "small_airport", + "name": "Farrenberg Gliderport", + "latitude_deg": "48.385706", + "longitude_deg": "9.076333", + "elevation_ft": "2641", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Mössingen", + "scheduled_service": "no" + }, + { + "id": "311066", + "ident": "DE-0115", + "type": "small_airport", + "name": "Oppershausen Airfield", + "latitude_deg": "52.5955", + "longitude_deg": "10.2235", + "elevation_ft": "147", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Hanover Aero Club", + "scheduled_service": "no", + "home_link": "http://www.hannover-segelflug.net/haec/index.php?option=com_content&task=view&id=76&Itemid=125" + }, + { + "id": "311067", + "ident": "DE-0116", + "type": "small_airport", + "name": "Peißenberg Airfield", + "latitude_deg": "47.8337", + "longitude_deg": "11.06685", + "elevation_ft": "1967", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Peißenberg", + "scheduled_service": "no" + }, + { + "id": "311068", + "ident": "DE-0117", + "type": "small_airport", + "name": "Quakenbrück Airfield", + "latitude_deg": "52.6634", + "longitude_deg": "7.9249", + "elevation_ft": "78", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Quakenbrück", + "scheduled_service": "no", + "home_link": "http://www.lsvq.de/index.php/wir-ueber-uns", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Quakenbr%C3%BCck" + }, + { + "id": "311069", + "ident": "DE-0118", + "type": "small_airport", + "name": "Scheuen Airfield", + "latitude_deg": "52.6693", + "longitude_deg": "10.088", + "elevation_ft": "190", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Celle", + "scheduled_service": "no", + "home_link": "http://www.segelfliegen-in-celle.de/" + }, + { + "id": "311070", + "ident": "DE-0119", + "type": "closed", + "name": "Schnuckenheide-Repke Airfield", + "latitude_deg": "52.7163", + "longitude_deg": "10.5336", + "elevation_ft": "350", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Repke", + "scheduled_service": "no", + "home_link": "http://www.lvi-repke.de/wb/" + }, + { + "id": "311181", + "ident": "DE-0120", + "type": "small_airport", + "name": "Steinberg at Wessein Airfield", + "latitude_deg": "52.0838", + "longitude_deg": "10.018", + "elevation_ft": "642", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Wessein", + "scheduled_service": "no", + "home_link": "http://www.sfg-salzdetfurth.de/unser-flugplatz/" + }, + { + "id": "311547", + "ident": "DE-0121", + "type": "small_airport", + "name": "Bohlenbergerfeld Airfield", + "latitude_deg": "53.418", + "longitude_deg": "7.9039", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Zetel", + "scheduled_service": "no", + "home_link": "http://lsg-segelflieger-zetel.de/willkommen.html" + }, + { + "id": "311548", + "ident": "DE-0122", + "type": "small_airport", + "name": "Bollrich Airfield", + "latitude_deg": "51.9058", + "longitude_deg": "10.4619", + "elevation_ft": "945", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Goslar", + "scheduled_service": "no", + "home_link": "http://www.bollrich.de/" + }, + { + "id": "311550", + "ident": "DE-0123", + "type": "small_airport", + "name": "Bückeburg-Weinberg Airfield", + "latitude_deg": "52.2511", + "longitude_deg": "9.0146", + "elevation_ft": "256", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Bückeburg", + "scheduled_service": "no", + "home_link": "http://www.lsv-bueckeburg.de/" + }, + { + "id": "311666", + "ident": "DE-0124", + "type": "small_airport", + "name": "Osterholz-Scharmbeck Airfield", + "latitude_deg": "53.2135", + "longitude_deg": "8.8102", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Osterholz-Scharmbeck", + "scheduled_service": "no", + "home_link": "http://www.segelflug.de/vereine/osterholz/" + }, + { + "id": "311668", + "ident": "DE-0125", + "type": "small_airport", + "name": "Peine-Glindbruchkippe Airfield", + "latitude_deg": "52.3238", + "longitude_deg": "10.1815", + "elevation_ft": "235", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Peine", + "scheduled_service": "no", + "home_link": "http://www.uhlenflug-peine.de/index.php/peine-kippe" + }, + { + "id": "311669", + "ident": "DE-0126", + "type": "small_airport", + "name": "Stüde Bernsteinsee Airfield", + "latitude_deg": "52.5638", + "longitude_deg": "10.6853", + "elevation_ft": "245", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Wolfsburg", + "scheduled_service": "no", + "home_link": "http://www.aeroclub-wolfsburg.com/flugplatz_stuede.html" + }, + { + "id": "311720", + "ident": "DE-0127", + "type": "small_airport", + "name": "Sultmer Berg Airfield", + "latitude_deg": "51.73", + "longitude_deg": "9.9925", + "elevation_ft": "736", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Northeim", + "scheduled_service": "no", + "home_link": "http://www.segelflug-northeim.de/" + }, + { + "id": "311721", + "ident": "DE-0128", + "type": "small_airport", + "name": "Tarmstedt Airfield", + "latitude_deg": "53.2514", + "longitude_deg": "9.1084", + "elevation_ft": "140", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Bremen", + "scheduled_service": "no", + "home_link": "http://www.sfg-bremen.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Tarmstedt" + }, + { + "id": "311723", + "ident": "DE-0129", + "type": "small_airport", + "name": "Walsrode Airfield", + "latitude_deg": "52.8882", + "longitude_deg": "9.6", + "elevation_ft": "194", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Walsrode", + "scheduled_service": "no" + }, + { + "id": "311777", + "ident": "DE-0130", + "type": "small_airport", + "name": "Ummern Airfield", + "latitude_deg": "52.6204", + "longitude_deg": "10.4092", + "elevation_ft": "237", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Gifhorn", + "scheduled_service": "no", + "home_link": "http://www.lsg-fallersleben.de/flugplatz/" + }, + { + "id": "311778", + "ident": "DE-0131", + "type": "small_airport", + "name": "Uslar Airfield", + "latitude_deg": "51.6619", + "longitude_deg": "9.6044", + "elevation_ft": "850", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Uslar", + "scheduled_service": "no", + "home_link": "http://www.segelflug.de/vereine/uslar/" + }, + { + "id": "311779", + "ident": "DE-0132", + "type": "small_airport", + "name": "Wenzendorf Airfield", + "latitude_deg": "53.3374", + "longitude_deg": "9.7797", + "elevation_ft": "229", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Wenzendorf", + "scheduled_service": "no", + "wikipedia_link": "http://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Wenzendorf" + }, + { + "id": "312142", + "ident": "DE-0133", + "type": "small_airport", + "name": "Weper Airfield", + "latitude_deg": "51.7124", + "longitude_deg": "9.8026", + "elevation_ft": "1190", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Moringen", + "scheduled_service": "no" + }, + { + "id": "312143", + "ident": "DE-0134", + "type": "small_airport", + "name": "FSV Illtal Airfield", + "latitude_deg": "49.41", + "longitude_deg": "7.0547", + "elevation_ft": "1230", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SL", + "municipality": "Wustweiler", + "scheduled_service": "no" + }, + { + "id": "312208", + "ident": "DE-0135", + "type": "small_airport", + "name": "Amöneburg Airfield", + "latitude_deg": "50.78985", + "longitude_deg": "8.90635", + "elevation_ft": "790", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Amöneburg", + "scheduled_service": "no", + "home_link": "http://fsv-blitz.de/de/home.html", + "keywords": "EDEC" + }, + { + "id": "312209", + "ident": "DE-0136", + "type": "small_airport", + "name": "Aßlarer Hütte Airfield", + "latitude_deg": "50.5999", + "longitude_deg": "8.4439", + "elevation_ft": "753", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Aßlar", + "scheduled_service": "no", + "home_link": "http://www.vflasslar.de/" + }, + { + "id": "312210", + "ident": "DE-0137", + "type": "small_airport", + "name": "Bensheimer Stadtwiesen Airfield", + "latitude_deg": "49.6926", + "longitude_deg": "8.5819", + "elevation_ft": "314", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Bensheim", + "scheduled_service": "no", + "wikipedia_link": "http://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Bensheim" + }, + { + "id": "312569", + "ident": "DE-0138", + "type": "small_airport", + "name": "Dehausen Airfield", + "latitude_deg": "51.4635", + "longitude_deg": "9.04925", + "elevation_ft": "1003", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Dehausen", + "scheduled_service": "no", + "keywords": "Waldeck" + }, + { + "id": "312570", + "ident": "DE-0139", + "type": "small_airport", + "name": "Braunfels Airfield", + "latitude_deg": "50.5255", + "longitude_deg": "8.393", + "elevation_ft": "800", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Braunfels", + "scheduled_service": "no", + "home_link": "http://www.lsg-braunfels.de/" + }, + { + "id": "312571", + "ident": "DE-0140", + "type": "small_airport", + "name": "\"Der Dingel\" Airfield", + "latitude_deg": "51.536", + "longitude_deg": "9.3805", + "elevation_ft": "718", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Hofgeismar", + "scheduled_service": "no", + "home_link": "http://www.lsv-hofgeismar.de/dingel_neu/flugplatz.html" + }, + { + "id": "312688", + "ident": "DE-0141", + "type": "small_airport", + "name": "Dornberg-Sontra Airfield", + "latitude_deg": "51.0873", + "longitude_deg": "9.9155", + "elevation_ft": "1317", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Sontra", + "scheduled_service": "no", + "home_link": "http://www.dornberg-sontra.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Dornberg-Sontra" + }, + { + "id": "312689", + "ident": "DE-0142", + "type": "small_airport", + "name": "Eibinger Forstwiese Airfield", + "latitude_deg": "50.0186", + "longitude_deg": "7.89324", + "elevation_ft": "1550", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Rüdesheim am Rhein", + "scheduled_service": "no", + "home_link": "http://www.lsc-rheingau.de/" + }, + { + "id": "312694", + "ident": "DE-0143", + "type": "small_airport", + "name": "Garbenheimer Wiesen Glider Field", + "latitude_deg": "50.574", + "longitude_deg": "8.529", + "elevation_ft": "490", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Wetzlar", + "scheduled_service": "no", + "home_link": "http://www.vfl-wetzlar.de/" + }, + { + "id": "312947", + "ident": "DE-0144", + "type": "small_airport", + "name": "Gedern Glider Field", + "latitude_deg": "50.4326", + "longitude_deg": "9.195", + "elevation_ft": "1220", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Gedern", + "scheduled_service": "no", + "home_link": "http://www.sfg-gedern.de/pages/informationen/das-fluggelaende.php", + "wikipedia_link": "http://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Gedern" + }, + { + "id": "312948", + "ident": "DE-0145", + "type": "small_airport", + "name": "Gießen Airfield", + "latitude_deg": "50.6042", + "longitude_deg": "8.7286", + "elevation_ft": "540", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Gießen", + "scheduled_service": "no" + }, + { + "id": "313148", + "ident": "DE-0146", + "type": "small_airport", + "name": "Edermünde-Grifte Airfield", + "latitude_deg": "51.221", + "longitude_deg": "9.4475", + "elevation_ft": "665", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Grifte", + "scheduled_service": "no", + "home_link": "http://regiowiki.hna.de/Flugplatz_Ederm%C3%BCnde-Grifte" + }, + { + "id": "313149", + "ident": "DE-0147", + "type": "small_airport", + "name": "Hessisch Lichtenau Airfield", + "latitude_deg": "51.1888", + "longitude_deg": "9.7434", + "elevation_ft": "1350", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Hessisch Lichtenau", + "scheduled_service": "no", + "home_link": "http://www.lsv-heli.de/" + }, + { + "id": "313153", + "ident": "DE-0148", + "type": "small_airport", + "name": "Hörbach Airfield", + "latitude_deg": "50.6683", + "longitude_deg": "8.2604", + "elevation_ft": "1070", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Hörbach", + "scheduled_service": "no", + "home_link": "http://www.lsv-hoerbach.de/", + "keywords": "Herborn, Hoerbach" + }, + { + "id": "313154", + "ident": "DE-0149", + "type": "small_airport", + "name": "Hoherodskopf Airfield", + "latitude_deg": "50.5017", + "longitude_deg": "9.2227", + "elevation_ft": "2215", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Schotten-Breungeshain", + "scheduled_service": "no", + "home_link": "http://www.segelflug.de/vereine/hoherodskopf/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Hoherodskopf" + }, + { + "id": "313649", + "ident": "DE-0150", + "type": "small_airport", + "name": "Eudenbach glider field", + "latitude_deg": "50.6733333333", + "longitude_deg": "7.36416666667", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "scheduled_service": "no" + }, + { + "id": "313877", + "ident": "DE-0151", + "type": "small_airport", + "name": "Huhnrain Airfield", + "latitude_deg": "50.4903", + "longitude_deg": "9.85", + "elevation_ft": "1405", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Poppenhausen", + "scheduled_service": "no" + }, + { + "id": "313878", + "ident": "DE-0152", + "type": "small_airport", + "name": "Johannisau Airfield", + "latitude_deg": "50.5368", + "longitude_deg": "9.6621", + "elevation_ft": "850", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Fulda", + "scheduled_service": "no" + }, + { + "id": "314150", + "ident": "DE-0153", + "type": "small_airport", + "name": "Homberg/Ohm Airfield", + "latitude_deg": "50.7465", + "longitude_deg": "9.0192", + "elevation_ft": "1157", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Homberg", + "scheduled_service": "no", + "home_link": "http://www.segelflug.de/vereine/homberg-ohm/" + }, + { + "id": "314151", + "ident": "DE-0154", + "type": "small_airport", + "name": "Langenberg Airfield", + "latitude_deg": "50.7968", + "longitude_deg": "9.5631", + "elevation_ft": "1197", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Bad Hersfeld", + "scheduled_service": "no", + "home_link": "http://www.flugplatz-langenberg.de/" + }, + { + "id": "314152", + "ident": "DE-0155", + "type": "small_airport", + "name": "Langenselbold Airfield", + "latitude_deg": "50.1764", + "longitude_deg": "9.0648", + "elevation_ft": "390", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Langenselbold", + "scheduled_service": "no" + }, + { + "id": "314153", + "ident": "DE-0156", + "type": "small_airport", + "name": "Laufenselden Airfield", + "latitude_deg": "50.2217", + "longitude_deg": "7.9985", + "elevation_ft": "1316", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Wiesbaden", + "scheduled_service": "no", + "home_link": "http://www.segelflug-laufenselden.de/" + }, + { + "id": "314240", + "ident": "DE-0157", + "type": "closed", + "name": "Flugplatz Pütnitz-Damgarten", + "latitude_deg": "54.263124", + "longitude_deg": "12.439359", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "scheduled_service": "no" + }, + { + "id": "314241", + "ident": "DE-0158", + "type": "small_airport", + "name": "Reinheim Airfield", + "latitude_deg": "49.84", + "longitude_deg": "8.851", + "elevation_ft": "506", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Offenbach", + "scheduled_service": "no", + "home_link": "http://www.fsvor.com/index.php/wir-ueber-uns1/unser-flugplatz" + }, + { + "id": "314242", + "ident": "DE-0159", + "type": "small_airport", + "name": "Pfingstweide Airfield", + "latitude_deg": "50.435682", + "longitude_deg": "8.62067", + "elevation_ft": "1160", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Butzbach", + "scheduled_service": "no", + "home_link": "http://www.aero-club-butzbach.de/", + "keywords": "Butzbach" + }, + { + "id": "314243", + "ident": "DE-0160", + "type": "small_airport", + "name": "Plätzer Airfield", + "latitude_deg": "50.7094", + "longitude_deg": "9.7391", + "elevation_ft": "1166", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Hünfeld", + "scheduled_service": "no", + "home_link": "http://www.flugplatz-plaetzer.de/" + }, + { + "id": "314404", + "ident": "DE-0161", + "type": "small_airport", + "name": "Pohlheim Airfield", + "latitude_deg": "50.5322", + "longitude_deg": "8.7334", + "elevation_ft": "787", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Pohlheim", + "scheduled_service": "no", + "home_link": "http://sgs-pohlheim.de/" + }, + { + "id": "314405", + "ident": "DE-0162", + "type": "small_airport", + "name": "Riedelbach Airfield", + "latitude_deg": "50.3024", + "longitude_deg": "8.3845", + "elevation_ft": "1700", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Riedelbach", + "scheduled_service": "no", + "home_link": "http://sfc-riedelbach.de/site/flugplatz.php", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Riedelbach" + }, + { + "id": "314407", + "ident": "DE-0163", + "type": "small_airport", + "name": "Rothenberg Airfield", + "latitude_deg": "49.4858", + "longitude_deg": "8.9368", + "elevation_ft": "1575", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Rothenberg", + "scheduled_service": "no" + }, + { + "id": "314409", + "ident": "DE-0164", + "type": "small_airport", + "name": "Schotten Airfield", + "latitude_deg": "50.5348", + "longitude_deg": "9.1455", + "elevation_ft": "1678", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Schotten", + "scheduled_service": "no", + "home_link": "http://translate.google.com/translate?hl=en&sl=de&u=http://www.aero-club-schotten.de/&prev=search", + "wikipedia_link": "http://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Schotten" + }, + { + "id": "314411", + "ident": "DE-0165", + "type": "small_airport", + "name": "Stauffenbühl Airfield", + "latitude_deg": "51.1592", + "longitude_deg": "10.0472", + "elevation_ft": "895", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Eschwege", + "scheduled_service": "no", + "home_link": "http://www.elv-eschwege.de/" + }, + { + "id": "314412", + "ident": "DE-0166", + "type": "closed", + "name": "Eschwege Airfield", + "latitude_deg": "51.197", + "longitude_deg": "10.025", + "elevation_ft": "522", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Eschwege", + "scheduled_service": "no", + "wikipedia_link": "http://de.wikipedia.org/wiki/Fliegerhorst_Eschwege" + }, + { + "id": "314456", + "ident": "DE-0167", + "type": "small_airport", + "name": "Michelbach Airfield", + "latitude_deg": "50.2317", + "longitude_deg": "8.077", + "elevation_ft": "1020", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Aarbergen", + "scheduled_service": "no", + "home_link": "http://www.fcaarbergen.org/" + }, + { + "id": "314457", + "ident": "DE-0168", + "type": "small_airport", + "name": "Nidda Airfield", + "latitude_deg": "50.4053", + "longitude_deg": "8.9881", + "elevation_ft": "589", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Nidda", + "scheduled_service": "no", + "home_link": "http://fsk-nidda.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Nidda" + }, + { + "id": "314553", + "ident": "DE-0169", + "type": "small_airport", + "name": "Vielbrunn Airfield", + "latitude_deg": "49.7193", + "longitude_deg": "9.0823", + "elevation_ft": "1517", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Michelstadt", + "scheduled_service": "no", + "home_link": "http://www.fscm.de/" + }, + { + "id": "314554", + "ident": "DE-0170", + "type": "small_airport", + "name": "Oberems Airfield", + "latitude_deg": "50.242", + "longitude_deg": "8.3986", + "elevation_ft": "1350", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Oberems", + "scheduled_service": "no", + "home_link": "http://www.fsg-feldberg.de/2_unser_Flugplatz.htm", + "wikipedia_link": "http://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Oberems" + }, + { + "id": "314555", + "ident": "DE-0171", + "type": "small_airport", + "name": "Arnsberg-Ruhrwiese Airfield", + "latitude_deg": "51.3878", + "longitude_deg": "8.0605", + "elevation_ft": "611", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Arnsberg", + "scheduled_service": "no", + "home_link": "http://www.aeroclub-arnsberg.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Arnsberg_Ruhrwiese" + }, + { + "id": "314556", + "ident": "DE-0172", + "type": "small_airport", + "name": "Bergheim Airfield", + "latitude_deg": "50.9772", + "longitude_deg": "6.6085", + "elevation_ft": "226", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Bergheim", + "scheduled_service": "no", + "home_link": "http://www.lsc-erftland.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Bergheim" + }, + { + "id": "314690", + "ident": "DE-0173", + "type": "small_airport", + "name": "Ziegenhain Airfield - \"Der Ring\"", + "latitude_deg": "50.9026", + "longitude_deg": "9.2403", + "elevation_ft": "693", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Schwalmstadt", + "scheduled_service": "no", + "home_link": "http://www.fsv-schwalm.de/startseite/flugplatz/" + }, + { + "id": "314691", + "ident": "DE-0174", + "type": "small_airport", + "name": "Borghorst Airfield", + "latitude_deg": "52.1505", + "longitude_deg": "7.4531", + "elevation_ft": "157", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Steinfurt", + "scheduled_service": "no", + "home_link": "http://flugplatz-borghorst.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Borghorst", + "keywords": "Borghorst-Füchten" + }, + { + "id": "314692", + "ident": "DE-0175", + "type": "small_airport", + "name": "Büren Airfield", + "latitude_deg": "51.5427", + "longitude_deg": "8.5808", + "elevation_ft": "920", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Büren", + "scheduled_service": "no", + "home_link": "http://www.ac-bueren.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_B%C3%BCren" + }, + { + "id": "314766", + "ident": "DE-0176", + "type": "small_airport", + "name": "Dorsten Airfield", + "latitude_deg": "51.6621", + "longitude_deg": "6.9856", + "elevation_ft": "109", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Dorsten", + "scheduled_service": "no", + "home_link": "http://www.lsv-dorsten.de/" + }, + { + "id": "314767", + "ident": "DE-0177", + "type": "small_airport", + "name": "Düren-Hürtgenwald Airfield", + "latitude_deg": "50.6937", + "longitude_deg": "6.4185", + "elevation_ft": "1194", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Hürtgenwald", + "scheduled_service": "no", + "home_link": "http://www.lsvdueren.de/" + }, + { + "id": "314768", + "ident": "DE-0178", + "type": "small_airport", + "name": "Düsseldorf-Wolfsaap Glider Field", + "latitude_deg": "51.2649", + "longitude_deg": "6.8539", + "elevation_ft": "375", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Düsseldorf", + "scheduled_service": "no", + "home_link": "http://www.wolfsaap.de/" + }, + { + "id": "314868", + "ident": "DE-0179", + "type": "small_airport", + "name": "Emmerich Airfield", + "latitude_deg": "51.8221", + "longitude_deg": "6.2745", + "elevation_ft": "44", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Emmerich", + "scheduled_service": "no", + "home_link": "http://fsv-emmerich.de/", + "keywords": "Palmersward" + }, + { + "id": "314869", + "ident": "DE-0180", + "type": "small_airport", + "name": "Gustorfer Höhe Airfield", + "latitude_deg": "51.0767", + "longitude_deg": "6.5475", + "elevation_ft": "290", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Grevenbroich", + "scheduled_service": "no", + "home_link": "http://www.aero-club-grevenbroich-neuss.de/startseite/" + }, + { + "id": "314870", + "ident": "DE-0181", + "type": "closed", + "name": "Halver Airfield", + "latitude_deg": "51.1741", + "longitude_deg": "7.5045", + "elevation_ft": "1383", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Halver", + "scheduled_service": "no", + "home_link": "http://lsv-halver.bplaced.net/" + }, + { + "id": "314871", + "ident": "DE-0182", + "type": "small_airport", + "name": "Hengsen-Opherdicke Airfield", + "latitude_deg": "51.4729", + "longitude_deg": "7.6451", + "elevation_ft": "435", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Schwerte", + "scheduled_service": "no", + "home_link": "http://www.flugplatz-hengsen.de/" + }, + { + "id": "315134", + "ident": "DE-0183", + "type": "small_airport", + "name": "Welzheim Airfield", + "latitude_deg": "48.8763", + "longitude_deg": "9.6537", + "elevation_ft": "1700", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Welzheim", + "scheduled_service": "no", + "home_link": "http://www.flg-welzheim.de/" + }, + { + "id": "315135", + "ident": "DE-0184", + "type": "small_airport", + "name": "Stolberg-Diepenlinchen Airfield", + "latitude_deg": "50.7704", + "longitude_deg": "6.2818", + "elevation_ft": "875", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Aachen", + "scheduled_service": "no", + "home_link": "http://lvstolberg.de/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Stolberg-Diepenlinchen" + }, + { + "id": "315136", + "ident": "DE-0185", + "type": "closed", + "name": "Sevelen Glider Field", + "latitude_deg": "51.4857", + "longitude_deg": "6.4284", + "elevation_ft": "105", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Rheinhausen", + "scheduled_service": "no", + "home_link": "http://www.segelflug.de/vereine/duisburg-rheinhausen/about/about.htm" + }, + { + "id": "315137", + "ident": "DE-0186", + "type": "closed", + "name": "Hilden-Kesselweier Airfield", + "latitude_deg": "51.1873", + "longitude_deg": "6.9746", + "elevation_ft": "300", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Kesselweier", + "scheduled_service": "no" + }, + { + "id": "315179", + "ident": "DE-0187", + "type": "small_airport", + "name": "Iserlohn-Rheinermark Airfield", + "latitude_deg": "51.4293", + "longitude_deg": "7.6436", + "elevation_ft": "660", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Sauerland", + "scheduled_service": "no", + "home_link": "http://segelfliegen.com/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Iserlohn-Rheinermark" + }, + { + "id": "315180", + "ident": "DE-0188", + "type": "small_airport", + "name": "Kamen-Heeren Airfield", + "latitude_deg": "51.5904", + "longitude_deg": "7.7091", + "elevation_ft": "205", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Dortmund", + "scheduled_service": "no", + "home_link": "http://www.lsf-kamen.de/" + }, + { + "id": "315181", + "ident": "DE-0189", + "type": "small_airport", + "name": "Langenfeld Airfield", + "latitude_deg": "51.1409", + "longitude_deg": "6.9849", + "elevation_ft": "300", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Langenfeld", + "scheduled_service": "no", + "home_link": "http://www.lsgerbsloeh.de/" + }, + { + "id": "315240", + "ident": "DE-0190", + "type": "small_airport", + "name": "Stapelburg Airfield", + "latitude_deg": "51.9144", + "longitude_deg": "10.6844", + "elevation_ft": "728", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "scheduled_service": "no" + }, + { + "id": "315304", + "ident": "DE-0191", + "type": "small_airport", + "name": "Aukrug Airfield", + "latitude_deg": "54.0647", + "longitude_deg": "9.7983", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Aukrug", + "scheduled_service": "no", + "home_link": "http://www.segelflug-aukrug.de/index.html", + "wikipedia_link": "https://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Aukrug" + }, + { + "id": "315305", + "ident": "DE-0192", + "type": "small_airport", + "name": "Lindlar Gliderport", + "latitude_deg": "50.9952", + "longitude_deg": "7.3738", + "elevation_ft": "1055", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Lindlar", + "scheduled_service": "no", + "home_link": "http://www.lsv-lindlar.de/" + }, + { + "id": "315388", + "ident": "DE-0193", + "type": "small_airport", + "name": "Segelfluggelände Altenbachtal", + "latitude_deg": "49.9233333333", + "longitude_deg": "9.15777777778", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no", + "home_link": "http://www.moeve-obernau.de" + }, + { + "id": "315389", + "ident": "DE-0194", + "type": "small_airport", + "name": "Bell-Hundheim", + "latitude_deg": "50.0288888889", + "longitude_deg": "7.4227777778", + "elevation_ft": "1434", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "scheduled_service": "no", + "keywords": "SolidAir" + }, + { + "id": "315391", + "ident": "DE-0195", + "type": "small_airport", + "name": "Flugplatz Dankern", + "latitude_deg": "52.8038889", + "longitude_deg": "7.1602778", + "elevation_ft": "48", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "scheduled_service": "no", + "home_link": "http://www.flugplatz-dankern.de" + }, + { + "id": "315394", + "ident": "DE-0196", + "type": "small_airport", + "name": "Erkelenz-Kückhoven", + "latitude_deg": "51.0641667", + "longitude_deg": "6.3602778", + "elevation_ft": "281", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "scheduled_service": "no", + "home_link": "http://www.ulerk.de" + }, + { + "id": "315395", + "ident": "DE-0197", + "type": "small_airport", + "name": "Heinsberg", + "latitude_deg": "51.0505556", + "longitude_deg": "6.0541667", + "elevation_ft": "216", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "scheduled_service": "no", + "home_link": "http://www.ul-heinsberg-selfkant.de" + }, + { + "id": "315396", + "ident": "DE-0198", + "type": "small_airport", + "name": "Dolmar", + "latitude_deg": "50.6125", + "longitude_deg": "10.4727778", + "elevation_ft": "1673", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "scheduled_service": "no" + }, + { + "id": "315397", + "ident": "DE-0199", + "type": "small_airport", + "name": "Ippesheim UL", + "latitude_deg": "49.6097222", + "longitude_deg": "10.2258333", + "elevation_ft": "1000", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no", + "home_link": "http://www.fsg-ippesheim.de" + }, + { + "id": "315398", + "ident": "DE-0200", + "type": "small_airport", + "name": "Kerken UL", + "latitude_deg": "51.4388889", + "longitude_deg": "6.4455556", + "elevation_ft": "114", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "scheduled_service": "no", + "home_link": "http://www.ul-kerken.de" + }, + { + "id": "315401", + "ident": "DE-0201", + "type": "small_airport", + "name": "Vettweiß-Soller", + "latitude_deg": "50.7475", + "longitude_deg": "6.5669444", + "elevation_ft": "525", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "scheduled_service": "no", + "home_link": "http://www.ul-vettweiss.de", + "keywords": "Gertrudenhof" + }, + { + "id": "315403", + "ident": "DE-0202", + "type": "small_airport", + "name": "Eutingen Airfield", + "latitude_deg": "48.485556", + "longitude_deg": "8.778333", + "elevation_ft": "1637", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Rottenburg", + "scheduled_service": "no", + "gps_code": "EDTE", + "home_link": "http://www.fsv-rottenburg-horb.de", + "keywords": "EUT1" + }, + { + "id": "315455", + "ident": "DE-0203", + "type": "small_airport", + "name": "Lünen-Lippeweiden Airfield", + "latitude_deg": "51.6171", + "longitude_deg": "7.501", + "elevation_ft": "162", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Lünen", + "scheduled_service": "no", + "home_link": "http://www.fsg-luenen.de/startseite/", + "keywords": "LUN1" + }, + { + "id": "315456", + "ident": "DE-0204", + "type": "small_airport", + "name": "Meiersberg Airfield", + "latitude_deg": "51.2996", + "longitude_deg": "6.9565", + "elevation_ft": "520", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Heiligenhaus", + "scheduled_service": "no", + "home_link": "http://www.sportflug-niederberg.de/", + "keywords": "MEI1" + }, + { + "id": "315459", + "ident": "DE-0205", + "type": "small_airport", + "name": "Menden-Barge Airfield", + "latitude_deg": "51.46", + "longitude_deg": "7.8376", + "elevation_ft": "750", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Menden", + "scheduled_service": "no", + "home_link": "http://www.lsgmenden.de/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Menden-Barge" + }, + { + "id": "315462", + "ident": "DE-0206", + "type": "small_airport", + "name": "Segelfluggelände Löchgau", + "latitude_deg": "49.0007392", + "longitude_deg": "9.0803846", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "scheduled_service": "no" + }, + { + "id": "315463", + "ident": "DE-0207", + "type": "small_airport", + "name": "Radevormwald-Leye Airfield", + "latitude_deg": "51.2164", + "longitude_deg": "7.3822", + "elevation_ft": "1290", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Radevormwald", + "scheduled_service": "no", + "home_link": "http://www.flugplatz-radevormwald.de/", + "keywords": "RAD1" + }, + { + "id": "315464", + "ident": "DE-0208", + "type": "small_airport", + "name": "Siegen-Eisernhardt Airfield", + "latitude_deg": "50.8375", + "longitude_deg": "8.0141", + "elevation_ft": "1300", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Siegen", + "scheduled_service": "no", + "home_link": "http://www.lsv-siegerland.de/", + "keywords": "SIE2" + }, + { + "id": "315466", + "ident": "DE-0209", + "type": "closed", + "name": "Sundern-Seidfeld Airfield", + "latitude_deg": "51.3032", + "longitude_deg": "7.9807", + "elevation_ft": "1086", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Sundern", + "scheduled_service": "no", + "wikipedia_link": "https://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Sundern-Seidfeld" + }, + { + "id": "315471", + "ident": "DE-0210", + "type": "small_airport", + "name": "Wanlo Airfield", + "latitude_deg": "51.101", + "longitude_deg": "6.3936", + "elevation_ft": "253", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Mönchengladbach", + "scheduled_service": "no" + }, + { + "id": "315472", + "ident": "DE-0211", + "type": "small_airport", + "name": "Warburg Airfield", + "latitude_deg": "51.4973", + "longitude_deg": "9.0876", + "elevation_ft": "572", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Warburg", + "scheduled_service": "no", + "home_link": "http://www.lsv-warburg.de/", + "keywords": "WAR1" + }, + { + "id": "315473", + "ident": "DE-0212", + "type": "heliport", + "name": "Evangelisches Jung-Stilling Hospital Helipad", + "latitude_deg": "50.8518", + "longitude_deg": "8.0184", + "elevation_ft": "1110", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Siegen", + "scheduled_service": "no", + "keywords": "1SIE" + }, + { + "id": "315475", + "ident": "DE-0213", + "type": "small_airport", + "name": "Weipertshofen Airfield", + "latitude_deg": "49.0867", + "longitude_deg": "10.1239", + "elevation_ft": "1455", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Crailsheim", + "scheduled_service": "no", + "home_link": "http://sfgcrailsheim.de/", + "keywords": "WEI1" + }, + { + "id": "315477", + "ident": "DE-0214", + "type": "heliport", + "name": "Gießen University Hospital Helipad", + "latitude_deg": "50.5759", + "longitude_deg": "8.6671", + "elevation_ft": "712", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Gießen", + "scheduled_service": "no", + "keywords": "2GIE" + }, + { + "id": "315480", + "ident": "DE-0215", + "type": "small_airport", + "name": "Ludwigshafen Airfield", + "latitude_deg": "49.4131", + "longitude_deg": "8.3518", + "elevation_ft": "318", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Dannstadt", + "scheduled_service": "no", + "home_link": "http://www.ssv-ludwigshafen.de/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Ludwigshafen-Dannstadt", + "keywords": "LUD1" + }, + { + "id": "315481", + "ident": "DE-0216", + "type": "heliport", + "name": "Heilbronn Hospital Helipad", + "latitude_deg": "49.1532", + "longitude_deg": "9.1918", + "elevation_ft": "664", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Heilbronn", + "scheduled_service": "no", + "keywords": "1HEI" + }, + { + "id": "315485", + "ident": "DE-0217", + "type": "heliport", + "name": "Agrarflug \"HeliLift\"", + "latitude_deg": "51.7815448", + "longitude_deg": "7.9069549", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "scheduled_service": "no" + }, + { + "id": "315489", + "ident": "DE-0218", + "type": "small_airport", + "name": "Waldeck Airfield", + "latitude_deg": "51.2267", + "longitude_deg": "9.0554", + "elevation_ft": "1329", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Waldeck", + "scheduled_service": "no", + "home_link": "http://flugschuleedersee.de/", + "keywords": "WAL1" + }, + { + "id": "315490", + "ident": "DE-0219", + "type": "small_airport", + "name": "Vinsebeck Airfield", + "latitude_deg": "51.8453", + "longitude_deg": "9.0141", + "elevation_ft": "850", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Bad Meinberg", + "scheduled_service": "no", + "home_link": "http://www.lsv-egge.de/", + "keywords": "VIN1" + }, + { + "id": "315491", + "ident": "DE-0220", + "type": "small_airport", + "name": "Stillberghof Airfield", + "latitude_deg": "48.7309", + "longitude_deg": "10.834", + "elevation_ft": "1680", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Donauwörth", + "scheduled_service": "no", + "home_link": "https://stillberghof.wordpress.com/", + "keywords": "STI1" + }, + { + "id": "315496", + "ident": "DE-0221", + "type": "closed", + "name": "GSD Flugplatz", + "latitude_deg": "50.328396", + "longitude_deg": "11.282356", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "315560", + "ident": "DE-0222", + "type": "small_airport", + "name": "Altomünster ULM", + "latitude_deg": "48.3819444", + "longitude_deg": "11.2733333", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "315561", + "ident": "DE-0223", + "type": "small_airport", + "name": "Bad Bibra", + "latitude_deg": "51.2016667", + "longitude_deg": "11.4972222", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "scheduled_service": "no" + }, + { + "id": "315562", + "ident": "DE-0224", + "type": "small_airport", + "name": "Reute Airport", + "latitude_deg": "47.915", + "longitude_deg": "9.710278", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Bad Waldsee", + "scheduled_service": "no" + }, + { + "id": "315563", + "ident": "DE-0225", + "type": "small_airport", + "name": "Berg Ultralight Airport", + "latitude_deg": "47.830746", + "longitude_deg": "9.539587", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Berg", + "scheduled_service": "no", + "keywords": "Berg-Ravensburg" + }, + { + "id": "315564", + "ident": "DE-0226", + "type": "small_airport", + "name": "Bobzin", + "latitude_deg": "53.4861111", + "longitude_deg": "11.1683333", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "scheduled_service": "no" + }, + { + "id": "315565", + "ident": "DE-0227", + "type": "small_airport", + "name": "Bösingen", + "latitude_deg": "48.2272222", + "longitude_deg": "8.5344444", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "scheduled_service": "no" + }, + { + "id": "315566", + "ident": "DE-0228", + "type": "small_airport", + "name": "dingelstedt", + "latitude_deg": "51.9863889", + "longitude_deg": "10.9686111", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "scheduled_service": "no" + }, + { + "id": "315567", + "ident": "DE-0229", + "type": "small_airport", + "name": "Schlechtenfeld Airport", + "latitude_deg": "48.284722", + "longitude_deg": "9.673333", + "elevation_ft": "1811", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Ehingen", + "scheduled_service": "no", + "home_link": "http://www.sfc-ehingen.de" + }, + { + "id": "315568", + "ident": "DE-0230", + "type": "small_airport", + "name": "Riesa-Canitz Airfield", + "latitude_deg": "51.3024", + "longitude_deg": "13.228", + "elevation_ft": "410", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Riesa", + "scheduled_service": "no", + "home_link": "http://segelwiese-canitz.de/" + }, + { + "id": "315569", + "ident": "DE-0231", + "type": "small_airport", + "name": "Gronenfelde", + "latitude_deg": "52.3638889", + "longitude_deg": "14.4961111", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "scheduled_service": "no" + }, + { + "id": "315570", + "ident": "DE-0232", + "type": "small_airport", + "name": "Göpfersdorf", + "latitude_deg": "49.887778", + "longitude_deg": "10.375278", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "scheduled_service": "no", + "home_link": "http://www.msg-gerolzhofen.de" + }, + { + "id": "315571", + "ident": "DE-0233", + "type": "small_airport", + "name": "Grünstadt Airfield", + "latitude_deg": "49.5855556", + "longitude_deg": "8.1388889", + "elevation_ft": "1039", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Grünstadt", + "scheduled_service": "no", + "home_link": "http://www.segelflug-gruenstadt.de/", + "keywords": "Quirnheim" + }, + { + "id": "315572", + "ident": "DE-0234", + "type": "small_airport", + "name": "Heiligenberg Glider Field", + "latitude_deg": "47.83291", + "longitude_deg": "9.30127", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Heiligenberg", + "scheduled_service": "no" + }, + { + "id": "315574", + "ident": "DE-0235", + "type": "small_airport", + "name": "Hohenthann", + "latitude_deg": "48.6644444", + "longitude_deg": "12.0536111", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "315575", + "ident": "DE-0236", + "type": "small_airport", + "name": "Irsingen-Hesselberg", + "latitude_deg": "49.0397222", + "longitude_deg": "10.5044444", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "315576", + "ident": "DE-0237", + "type": "small_airport", + "name": "Landau-Ebenberg", + "latitude_deg": "49.1763889", + "longitude_deg": "8.1361111", + "elevation_ft": "525", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "scheduled_service": "no" + }, + { + "id": "315577", + "ident": "DE-0238", + "type": "small_airport", + "name": "Klippeneck Airfield", + "latitude_deg": "48.1075", + "longitude_deg": "8.7627778", + "elevation_ft": "3215", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Denkingen", + "scheduled_service": "no", + "home_link": "http://www.klippeneck.de/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Klippeneck" + }, + { + "id": "315579", + "ident": "DE-0239", + "type": "small_airport", + "name": "Wasentegernbach", + "latitude_deg": "48.2777778", + "longitude_deg": "12.2222222", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "315580", + "ident": "DE-0240", + "type": "small_airport", + "name": "Weilerswist ULM", + "latitude_deg": "50.7191667", + "longitude_deg": "6.8497222", + "elevation_ft": "446", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Weilerswist", + "scheduled_service": "no", + "keywords": "Müggenhausen" + }, + { + "id": "315582", + "ident": "DE-0241", + "type": "small_airport", + "name": "Wildberg", + "latitude_deg": "47.6002778", + "longitude_deg": "9.7419444", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "scheduled_service": "no" + }, + { + "id": "315584", + "ident": "DE-0242", + "type": "small_airport", + "name": "Kell Airfield", + "latitude_deg": "49.6216667", + "longitude_deg": "6.8402778", + "elevation_ft": "1840", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Kell am See", + "scheduled_service": "no", + "home_link": "http://www.lsv-hochwald.de/" + }, + { + "id": "315585", + "ident": "DE-0243", + "type": "small_airport", + "name": "Völkleshofen Airfield", + "latitude_deg": "49.0094", + "longitude_deg": "9.3542", + "elevation_ft": "1305", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Backnang", + "scheduled_service": "no", + "home_link": "http://www.sfgbacknang.de/" + }, + { + "id": "315586", + "ident": "DE-0244", + "type": "small_airport", + "name": "Vaihingen an der Enz Airfield", + "latitude_deg": "48.9362", + "longitude_deg": "8.9736", + "elevation_ft": "1038", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Vaihingen an der Enz", + "scheduled_service": "no", + "home_link": "http://www.fsv-vaihingen.de/" + }, + { + "id": "315587", + "ident": "DE-0245", + "type": "heliport", + "name": "SRH Hospital Helipad", + "latitude_deg": "50.603", + "longitude_deg": "10.7104", + "elevation_ft": "1759", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Suhl", + "scheduled_service": "no" + }, + { + "id": "315588", + "ident": "DE-0246", + "type": "small_airport", + "name": "Urspring Airfield", + "latitude_deg": "48.553", + "longitude_deg": "9.9038", + "elevation_ft": "2100", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Geislingen", + "scheduled_service": "no", + "home_link": "http://sfg-hegy.de/index.php?section=flugplatz" + }, + { + "id": "315600", + "ident": "DE-0247", + "type": "small_airport", + "name": "Übersberg Airfield", + "latitude_deg": "48.4584", + "longitude_deg": "9.2977", + "elevation_ft": "2570", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Reutlingen", + "scheduled_service": "no", + "home_link": "http://www.flugplatz-uebersberg.de/" + }, + { + "id": "315605", + "ident": "DE-0248", + "type": "small_airport", + "name": "Titschendorf Airfield", + "latitude_deg": "50.3941", + "longitude_deg": "11.5217", + "elevation_ft": "2140", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Nordhalben", + "scheduled_service": "no" + }, + { + "id": "315681", + "ident": "DE-0249", + "type": "small_airport", + "name": "Segelflugplatz Konz-Könen", + "latitude_deg": "49.6758156", + "longitude_deg": "6.5439529", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SL", + "scheduled_service": "no", + "home_link": "http://www.ac-trier-konz.de" + }, + { + "id": "315719", + "ident": "DE-0250", + "type": "small_airport", + "name": "Tauberbischofsheim Airfield", + "latitude_deg": "49.6477", + "longitude_deg": "9.6326", + "elevation_ft": "940", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Tauberbischofsheim", + "scheduled_service": "no", + "home_link": "http://www.aero-club-tbb.de/file/Willkommen.html" + }, + { + "id": "315720", + "ident": "DE-0251", + "type": "small_airport", + "name": "Singhofen Airfield", + "latitude_deg": "50.2714", + "longitude_deg": "7.8548", + "elevation_ft": "980", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Singhofen", + "scheduled_service": "no" + }, + { + "id": "315722", + "ident": "DE-0252", + "type": "small_airport", + "name": "Nastätten Airfield", + "latitude_deg": "50.198", + "longitude_deg": "7.89", + "elevation_ft": "1220", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Nastätten", + "scheduled_service": "no", + "home_link": "http://www.aero-club-nastaetten.de/" + }, + { + "id": "315723", + "ident": "DE-0253", + "type": "small_airport", + "name": "Montabaur Airfield", + "latitude_deg": "50.424", + "longitude_deg": "7.83", + "elevation_ft": "930", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Westerwald", + "scheduled_service": "no", + "home_link": "http://www.lsc-ww.de/" + }, + { + "id": "315725", + "ident": "DE-0254", + "type": "small_airport", + "name": "Arnschwang Ultraleicht", + "latitude_deg": "49.2730556", + "longitude_deg": "12.7805556", + "elevation_ft": "1355", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "315726", + "ident": "DE-0255", + "type": "closed", + "name": "UL - Platz Erpetshof", + "latitude_deg": "49.657417", + "longitude_deg": "12.293667", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "315728", + "ident": "DE-0256", + "type": "small_airport", + "name": "Perleberg", + "latitude_deg": "53.0722222222", + "longitude_deg": "11.8197222222", + "elevation_ft": "91", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "scheduled_service": "no", + "home_link": "http://www.aeroclub-perleberg.de/" + }, + { + "id": "315772", + "ident": "DE-0257", + "type": "closed", + "name": "Niepars", + "latitude_deg": "54.3045655", + "longitude_deg": "12.9105955", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "scheduled_service": "no" + }, + { + "id": "315775", + "ident": "DE-0258", + "type": "small_airport", + "name": "Neu-Gülze Airfield", + "latitude_deg": "53.381", + "longitude_deg": "10.804", + "elevation_ft": "38", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Hamburg", + "scheduled_service": "no", + "home_link": "http://www.akaflieg-hamburg.de/" + }, + { + "id": "315786", + "ident": "DE-0259", + "type": "small_airport", + "name": "Neuruppin Airfield", + "latitude_deg": "52.94127", + "longitude_deg": "12.78", + "elevation_ft": "140", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Berlin", + "scheduled_service": "no", + "home_link": "http://www.ftv-spandau.de/" + }, + { + "id": "315787", + "ident": "DE-0260", + "type": "small_airport", + "name": "Mönchsheide Airfield", + "latitude_deg": "50.5082", + "longitude_deg": "7.2556", + "elevation_ft": "690", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Bad Breisig", + "scheduled_service": "no", + "home_link": "http://www.moenchsheide.de/joomla/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_M%C3%B6nchsheide" + }, + { + "id": "315793", + "ident": "DE-0261", + "type": "small_airport", + "name": "Kusel-Langenbach Airfield", + "latitude_deg": "49.4779", + "longitude_deg": "7.3094", + "elevation_ft": "1495", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Kusel", + "scheduled_service": "no", + "home_link": "http://www.flugsportverein-kusel.de/" + }, + { + "id": "315794", + "ident": "DE-0262", + "type": "small_airport", + "name": "Klein Gartz Airfield", + "latitude_deg": "52.828", + "longitude_deg": "11.316", + "elevation_ft": "112", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Salzwedel", + "scheduled_service": "no", + "home_link": "http://www.lsv-salzwedel.de/flugbetrieb/flugplatz.php" + }, + { + "id": "315796", + "ident": "DE-0263", + "type": "small_airport", + "name": "Kirn Airfield", + "latitude_deg": "49.773", + "longitude_deg": "7.5217", + "elevation_ft": "1435", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Kirn", + "scheduled_service": "no", + "home_link": "http://www.flugsport-kirn.de/drupal-6.13-DE/node/13", + "keywords": "Meckenbach" + }, + { + "id": "315797", + "ident": "DE-0264", + "type": "heliport", + "name": "St Elisabeth Hospital Helipad", + "latitude_deg": "50.1902", + "longitude_deg": "10.0827", + "elevation_ft": "925", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Bad Kissingen", + "scheduled_service": "no" + }, + { + "id": "315799", + "ident": "DE-0265", + "type": "heliport", + "name": "Autobahn Police Heliport", + "latitude_deg": "47.7689", + "longitude_deg": "9.8921", + "elevation_ft": "2145", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Kißlegg", + "scheduled_service": "no" + }, + { + "id": "315800", + "ident": "DE-0266", + "type": "small_airport", + "name": "Wangen-Kisslegg Airfield", + "latitude_deg": "47.753962", + "longitude_deg": "9.86219", + "elevation_ft": "2102", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Wangen im Allgäu", + "scheduled_service": "no", + "home_link": "http://www.fsg-wangen.de/", + "keywords": "Kisslegg" + }, + { + "id": "315801", + "ident": "DE-0267", + "type": "heliport", + "name": "Tübingen Trauma Hospital Helipad", + "latitude_deg": "48.533", + "longitude_deg": "9.0356", + "elevation_ft": "1489", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Tübingen", + "scheduled_service": "no" + }, + { + "id": "315802", + "ident": "DE-0268", + "type": "heliport", + "name": "Tübingen University Hospital Helipad", + "latitude_deg": "48.5297", + "longitude_deg": "9.0382", + "elevation_ft": "1490", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Tübingen", + "scheduled_service": "no" + }, + { + "id": "315803", + "ident": "DE-0269", + "type": "small_airport", + "name": "Kammermark Airfield", + "latitude_deg": "53.1953", + "longitude_deg": "12.1642", + "elevation_ft": "280", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Pritzwalk", + "scheduled_service": "no", + "home_link": "http://kammermark.de/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Kammermark" + }, + { + "id": "315804", + "ident": "DE-0270", + "type": "small_airport", + "name": "Grambeker Heide Airfield", + "latitude_deg": "53.5834", + "longitude_deg": "10.6985", + "elevation_ft": "168", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Mölln", + "scheduled_service": "no", + "home_link": "http://www.grambekerheide.de/" + }, + { + "id": "315805", + "ident": "DE-0271", + "type": "small_airport", + "name": "Fischbek Airfield", + "latitude_deg": "53.4561", + "longitude_deg": "9.8317", + "elevation_ft": "217", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HH", + "municipality": "Fischbek", + "scheduled_service": "no", + "home_link": "http://www.segelflugclub-fischbek.de/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Fischbek" + }, + { + "id": "315806", + "ident": "DE-0272", + "type": "small_airport", + "name": "Eßweiler Airfield", + "latitude_deg": "49.5621", + "longitude_deg": "7.58", + "elevation_ft": "1365", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Landstuhl", + "scheduled_service": "no", + "home_link": "http://www.lsv-essweiler.de/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Luftsportverein_E%C3%9Fweiler", + "keywords": "Essweiler" + }, + { + "id": "315843", + "ident": "DE-0273", + "type": "small_airport", + "name": "Flugplatz Daun", + "latitude_deg": "50.1758333", + "longitude_deg": "6.8577778", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "scheduled_service": "no" + }, + { + "id": "315846", + "ident": "DE-0274", + "type": "small_airport", + "name": "Flugplatz Dauborn", + "latitude_deg": "50.3216667", + "longitude_deg": "8.1938889", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "scheduled_service": "no" + }, + { + "id": "315847", + "ident": "DE-0275", + "type": "small_airport", + "name": "Dillingen Airfield", + "latitude_deg": "49.3863", + "longitude_deg": "6.7493", + "elevation_ft": "795", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SL", + "municipality": "Saarlouis", + "scheduled_service": "no", + "home_link": "http://www.lsc-dillingen.de/" + }, + { + "id": "315848", + "ident": "DE-0276", + "type": "small_airport", + "name": "Antdorf ULM", + "latitude_deg": "47.7594444", + "longitude_deg": "11.3036111", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "315850", + "ident": "DE-0277", + "type": "small_airport", + "name": "Bundenthal-Rumbach Airfield", + "latitude_deg": "49.0934", + "longitude_deg": "7.7941", + "elevation_ft": "995", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Pirmasens", + "scheduled_service": "no" + }, + { + "id": "315852", + "ident": "DE-0278", + "type": "small_airport", + "name": "Aventoft Airfield", + "latitude_deg": "54.8961", + "longitude_deg": "8.8208", + "elevation_ft": "-10", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Niebüll", + "scheduled_service": "no", + "home_link": "http://www.flugplatz-aventoft.de/" + }, + { + "id": "315886", + "ident": "DE-0279", + "type": "small_airport", + "name": "Esslingen-Jägerhaus Airfield", + "latitude_deg": "48.762222", + "longitude_deg": "9.333889", + "elevation_ft": "1625", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Esslingen", + "scheduled_service": "no", + "home_link": "http://www.aero-club-esslingen.de/", + "keywords": "Eßlingen" + }, + { + "id": "315891", + "ident": "DE-0280", + "type": "small_airport", + "name": "Bad Marienberg Airfield", + "latitude_deg": "50.6611", + "longitude_deg": "8.0276", + "elevation_ft": "1792", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Bad Marienberg", + "scheduled_service": "no", + "home_link": "http://www.lcm-badmarienberg.de/", + "keywords": "Hof, Oberroßbach" + }, + { + "id": "315892", + "ident": "DE-0281", + "type": "small_airport", + "name": "Baumerlenbach Airfield", + "latitude_deg": "49.231", + "longitude_deg": "9.421", + "elevation_ft": "800", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Öhringen", + "scheduled_service": "no", + "home_link": "http://www.fsg-oehringen.de/" + }, + { + "id": "315932", + "ident": "DE-0282", + "type": "small_airport", + "name": "Berneck Airfield", + "latitude_deg": "48.5737", + "longitude_deg": "9.7291", + "elevation_ft": "2480", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Berneck", + "scheduled_service": "no", + "home_link": "http://www.berneck-segelflug.de/" + }, + { + "id": "315935", + "ident": "DE-0283", + "type": "small_airport", + "name": "UL-Flugplatz \"Auf der Schaufel\"", + "latitude_deg": "51.0938889", + "longitude_deg": "9.1483333", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Bad Wildungen", + "scheduled_service": "no" + }, + { + "id": "315936", + "ident": "DE-0284", + "type": "small_airport", + "name": "Sonderlandeplatz \"Roßberg\"", + "latitude_deg": "49.6422222", + "longitude_deg": "7.6838889", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Becherbach", + "scheduled_service": "no" + }, + { + "id": "315937", + "ident": "DE-0285", + "type": "small_airport", + "name": "UL-Flugplatz Brakel", + "latitude_deg": "51.7372222", + "longitude_deg": "9.2011111", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "scheduled_service": "no" + }, + { + "id": "315939", + "ident": "DE-0286", + "type": "small_airport", + "name": "UL-Fluglatz Ernzen", + "latitude_deg": "49.8288889", + "longitude_deg": "6.4355556", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "scheduled_service": "no" + }, + { + "id": "315940", + "ident": "DE-0287", + "type": "small_airport", + "name": "UL-Flugplatz Drensteinfurt", + "latitude_deg": "51.7672222", + "longitude_deg": "7.7469444", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "scheduled_service": "no" + }, + { + "id": "315941", + "ident": "DE-0288", + "type": "small_airport", + "name": "Segelfluggelände Haiterbach", + "latitude_deg": "48.5313889", + "longitude_deg": "8.6752778", + "elevation_ft": "1975", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Nagold", + "scheduled_service": "no", + "keywords": "Haiterbach,Nagold" + }, + { + "id": "315942", + "ident": "DE-0289", + "type": "closed", + "name": "UL-Flugplatz Imsweiler-Donnersberg", + "latitude_deg": "49.606111", + "longitude_deg": "7.793611", + "elevation_ft": "950", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Imsweiler", + "scheduled_service": "no" + }, + { + "id": "315943", + "ident": "DE-0290", + "type": "small_airport", + "name": "UL-Flugplatz Linnich", + "latitude_deg": "50.9630556", + "longitude_deg": "6.3377778", + "elevation_ft": "341", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Linnich", + "scheduled_service": "no", + "keywords": "Boslar" + }, + { + "id": "315944", + "ident": "DE-0291", + "type": "small_airport", + "name": "Sonderlandeplatz Morschenich", + "latitude_deg": "50.8730556", + "longitude_deg": "6.5527778", + "elevation_ft": "338", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Morschenich", + "scheduled_service": "no" + }, + { + "id": "315945", + "ident": "DE-0292", + "type": "small_airport", + "name": "Paradiek Lohne bei Vechta", + "latitude_deg": "52.6680556", + "longitude_deg": "8.3213889", + "elevation_ft": "102", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Lohne", + "scheduled_service": "no", + "keywords": "Vechta,Paradiek" + }, + { + "id": "315946", + "ident": "DE-0293", + "type": "small_airport", + "name": "Riedlingen Airfield", + "latitude_deg": "48.144444", + "longitude_deg": "9.466666", + "elevation_ft": "1732", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Riedlingen", + "scheduled_service": "no", + "home_link": "http://www.fliegergruppe-riedlingen.de/" + }, + { + "id": "315949", + "ident": "DE-0294", + "type": "small_airport", + "name": "Zschorna", + "latitude_deg": "51.3863889", + "longitude_deg": "12.8202778", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "scheduled_service": "no" + }, + { + "id": "315950", + "ident": "DE-0295", + "type": "small_airport", + "name": "Segelflugplatz Müllheim", + "latitude_deg": "47.8241667", + "longitude_deg": "7.6397222", + "elevation_ft": "955", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "scheduled_service": "no" + }, + { + "id": "315952", + "ident": "DE-0296", + "type": "small_airport", + "name": "Peiting UL", + "latitude_deg": "47.7575", + "longitude_deg": "10.9038889", + "elevation_ft": "2457", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "315953", + "ident": "DE-0297", + "type": "small_airport", + "name": "Westhausen UL", + "latitude_deg": "50.3036111", + "longitude_deg": "10.6805556", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "scheduled_service": "no" + }, + { + "id": "315960", + "ident": "DE-0298", + "type": "small_airport", + "name": "Deckenpfronn-Egelsee Airfield", + "latitude_deg": "48.6385", + "longitude_deg": "8.8175", + "elevation_ft": "1900", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Sindelfingen", + "scheduled_service": "no", + "home_link": "https://translate.google.com/translate?hl=en&sl=de&u=https://www.fsv-sindelfingen-ev.de/index.php%3Fid%3D84&prev=search", + "wikipedia_link": "https://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Deckenpfronn-Egelsee" + }, + { + "id": "315961", + "ident": "DE-0299", + "type": "small_airport", + "name": "Boberg Airfield", + "latitude_deg": "53.5147", + "longitude_deg": "10.1442", + "elevation_ft": "2", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HH", + "scheduled_service": "no", + "home_link": "http://www.hac-boberg.de/" + }, + { + "id": "315962", + "ident": "DE-0300", + "type": "small_airport", + "name": "Bohlhof Glider Field", + "latitude_deg": "47.6509", + "longitude_deg": "8.3867", + "elevation_ft": "1885", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Bohlhof", + "scheduled_service": "no", + "home_link": "http://www.bohlhof.de/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Bohlhof" + }, + { + "id": "315963", + "ident": "DE-0301", + "type": "small_airport", + "name": "Degmarn Glider Field", + "latitude_deg": "49.2579", + "longitude_deg": "9.2745", + "elevation_ft": "530", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Bad Friedrichshall", + "scheduled_service": "no" + }, + { + "id": "315989", + "ident": "DE-0302", + "type": "small_airport", + "name": "Hangensteiner Hof Airfield", + "latitude_deg": "48.9328", + "longitude_deg": "8.8155", + "elevation_ft": "970", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Mühlacker", + "scheduled_service": "no", + "home_link": "http://www.fsc-muehlacker.de/index.php/ueber-uns/flugplatz/4-flugplatz" + }, + { + "id": "315990", + "ident": "DE-0303", + "type": "small_airport", + "name": "Haßloch Airfield", + "latitude_deg": "49.3553", + "longitude_deg": "8.2902", + "elevation_ft": "361", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Haßloch", + "scheduled_service": "no", + "home_link": "https://translate.google.com/translate?hl=en&sl=de&u=http://www.duddefliecher.de/index.php/fluggebiete/schlaeppgelaende-hassloch" + }, + { + "id": "315991", + "ident": "DE-0304", + "type": "small_airport", + "name": "Hayingen Glider Field", + "latitude_deg": "48.2848", + "longitude_deg": "9.4657", + "elevation_ft": "2328", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Hayingen", + "scheduled_service": "no", + "home_link": "http://www.lsv-hayingen.de/" + }, + { + "id": "316003", + "ident": "DE-0305", + "type": "small_airport", + "name": "Heilbronn-Böckingen Glider Field", + "latitude_deg": "49.1223", + "longitude_deg": "9.1815", + "elevation_ft": "525", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Heilbronn", + "scheduled_service": "no", + "home_link": "http://www.fliegergruppe-heilbronn.de/" + }, + { + "id": "316008", + "ident": "DE-0306", + "type": "small_airport", + "name": "Hermuthausen Airfield", + "latitude_deg": "49.3146", + "longitude_deg": "9.7468", + "elevation_ft": "1350", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Künzelsau", + "scheduled_service": "no" + }, + { + "id": "316010", + "ident": "DE-0307", + "type": "small_airport", + "name": "Hilzingen Airfield", + "latitude_deg": "47.7604", + "longitude_deg": "8.7683", + "elevation_ft": "1493", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Singen", + "scheduled_service": "no", + "home_link": "http://sfg-singen.de/home/" + }, + { + "id": "316011", + "ident": "DE-0308", + "type": "small_airport", + "name": "Hornberg Airfield", + "latitude_deg": "48.7458", + "longitude_deg": "9.8615", + "elevation_ft": "2240", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Schwäbisch Gmünd", + "scheduled_service": "no", + "home_link": "http://extern.flg-gd.de/index.php/flugplatz-hornberg" + }, + { + "id": "316012", + "ident": "DE-0309", + "type": "small_airport", + "name": "Hülben Airfield", + "latitude_deg": "48.5293", + "longitude_deg": "9.398", + "elevation_ft": "2385", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Hülben", + "scheduled_service": "no", + "home_link": "http://www.fliegergruppehuelben.de/", + "keywords": "Huelben" + }, + { + "id": "316014", + "ident": "DE-0310", + "type": "small_airport", + "name": "Hütten Airfield", + "latitude_deg": "47.6333", + "longitude_deg": "7.9412", + "elevation_ft": "2885", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "The Hotzenwald", + "scheduled_service": "no", + "home_link": "http://www.lg-hotzenwald.de/" + }, + { + "id": "316016", + "ident": "DE-0311", + "type": "small_airport", + "name": "Isny Glider Field", + "latitude_deg": "47.7002", + "longitude_deg": "10.0207", + "elevation_ft": "2260", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Isny im Allgäu", + "scheduled_service": "no", + "home_link": "http://www.lsg-isny.de/" + }, + { + "id": "316017", + "ident": "DE-0312", + "type": "small_airport", + "name": "Kirchzarten Airfield", + "latitude_deg": "47.9509", + "longitude_deg": "7.9558", + "elevation_ft": "1385", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Freiburg", + "scheduled_service": "no", + "home_link": "http://brausegeier.de/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Kirchzarten" + }, + { + "id": "316018", + "ident": "DE-0313", + "type": "small_airport", + "name": "Leibertingen Airfield", + "latitude_deg": "48.0445", + "longitude_deg": "9.0314", + "elevation_ft": "2749", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Leibertingen", + "scheduled_service": "no", + "home_link": "http://www.flugplatz-leibertingen.de/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Leibertingen" + }, + { + "id": "316019", + "ident": "DE-0314", + "type": "small_airport", + "name": "Leuzendorf Glider Field", + "latitude_deg": "49.3518", + "longitude_deg": "10.0757", + "elevation_ft": "1540", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Hohenlohekreis", + "scheduled_service": "no", + "home_link": "http://www.hohenloher-luftsportgruppe.de/" + }, + { + "id": "316020", + "ident": "DE-0315", + "type": "small_airport", + "name": "Malmsheim Airfield", + "latitude_deg": "48.7847", + "longitude_deg": "8.9175", + "elevation_ft": "1488", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Renningen", + "scheduled_service": "no", + "home_link": "http://sfcleonberg.de/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Malmsheim_Airfield" + }, + { + "id": "316021", + "ident": "DE-0316", + "type": "small_airport", + "name": "Malsch Airfield", + "latitude_deg": "49.2375", + "longitude_deg": "8.6783", + "elevation_ft": "420", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Heidelberg", + "scheduled_service": "no", + "home_link": "http://www.fsg-letzenberg-malsch.de/" + }, + { + "id": "316022", + "ident": "DE-0317", + "type": "small_airport", + "name": "Markdorf Airfield", + "latitude_deg": "47.7072", + "longitude_deg": "9.391", + "elevation_ft": "1388", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Markdorf", + "scheduled_service": "no", + "home_link": "http://www.sfg-markdorf.de/www/" + }, + { + "id": "316023", + "ident": "DE-0318", + "type": "small_airport", + "name": "Möckmühl-Korb Airfield", + "latitude_deg": "49.3442", + "longitude_deg": "9.401", + "elevation_ft": "1148", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Möckmühl", + "scheduled_service": "no", + "home_link": "http://www.flugsportverein-moeckmuehl.de/", + "keywords": "moeckmuehl" + }, + { + "id": "316024", + "ident": "DE-0319", + "type": "small_airport", + "name": "Schreckhof Airfield", + "latitude_deg": "49.3513", + "longitude_deg": "9.1208", + "elevation_ft": "898", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Mosbach", + "scheduled_service": "no", + "home_link": "http://www.fliegermosbach.de/verein/flugplatz/" + }, + { + "id": "316025", + "ident": "DE-0320", + "type": "small_airport", + "name": "Mülben Airfield", + "latitude_deg": "49.456", + "longitude_deg": "9.104", + "elevation_ft": "1740", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "scheduled_service": "no", + "home_link": "http://weird-car.de/lsv/index.php", + "wikipedia_link": "https://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_M%C3%BClben" + }, + { + "id": "316026", + "ident": "DE-0321", + "type": "small_airport", + "name": "Münsingen-Eisberg Airfield", + "latitude_deg": "48.4093", + "longitude_deg": "9.4425", + "elevation_ft": "2385", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Dottingen", + "scheduled_service": "no", + "home_link": "http://www.lsvmuensingen.de/lsv/" + }, + { + "id": "316027", + "ident": "DE-0322", + "type": "small_airport", + "name": "Musbach Airfield", + "latitude_deg": "48.5027", + "longitude_deg": "8.4786", + "elevation_ft": "2295", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Freudenstadt", + "scheduled_service": "no", + "home_link": "http://www.fg-freudenstadt.de/wordpress/" + }, + { + "id": "316029", + "ident": "DE-0323", + "type": "small_airport", + "name": "Neresheim Glider Field", + "latitude_deg": "48.7417", + "longitude_deg": "10.3277", + "elevation_ft": "1781", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "scheduled_service": "no", + "home_link": "http://www.sfg-neresheim.de/index.html" + }, + { + "id": "316031", + "ident": "DE-0324", + "type": "small_airport", + "name": "Seißen Ultralight Airport", + "latitude_deg": "48.413081", + "longitude_deg": "9.766288", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Blaubeuren", + "scheduled_service": "no", + "keywords": "Seissen" + }, + { + "id": "316032", + "ident": "DE-0325", + "type": "closed", + "name": "Ochsenhausen Airfield", + "latitude_deg": "48.0535", + "longitude_deg": "9.9189", + "elevation_ft": "2135", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Ochsenhausen", + "scheduled_service": "no", + "home_link": "http://www.lsv-ochsenhausen.de/" + }, + { + "id": "316033", + "ident": "DE-0326", + "type": "small_airport", + "name": "Oppingen-Au Airfield", + "latitude_deg": "48.5566", + "longitude_deg": "9.8219", + "elevation_ft": "2238", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Gingen/Fils", + "scheduled_service": "no", + "home_link": "http://www.fliegergruppe-gingen.de/sites/flugplatz/flugplatz.html", + "wikipedia_link": "https://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Oppingen-Au" + }, + { + "id": "316037", + "ident": "DE-0327", + "type": "small_airport", + "name": "Pleidelsheim Airfield", + "latitude_deg": "48.9564", + "longitude_deg": "9.1914", + "elevation_ft": "616", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Pleidelsheim", + "scheduled_service": "no", + "home_link": "http://www.segelflug-pleidelsheim.de/2015/index.php" + }, + { + "id": "316045", + "ident": "DE-0328", + "type": "small_airport", + "name": "Rastatt Airfield", + "latitude_deg": "48.8742", + "longitude_deg": "8.2129", + "elevation_ft": "370", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Rastatt", + "scheduled_service": "no", + "home_link": "http://www.flugplatz-rastatt.de/cms/front_content.php", + "keywords": "Rastatt-Baldenau" + }, + { + "id": "316046", + "ident": "DE-0329", + "type": "small_airport", + "name": "Reiselfingen Airfield", + "latitude_deg": "47.8517", + "longitude_deg": "8.3715", + "elevation_ft": "2450", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Reiselfingen", + "scheduled_service": "no", + "home_link": "http://www.sfg-reiselfingen.de/" + }, + { + "id": "316048", + "ident": "DE-0330", + "type": "small_airport", + "name": "Burgebrach ULM", + "latitude_deg": "49.8377778", + "longitude_deg": "10.7805556", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "316050", + "ident": "DE-0331", + "type": "small_airport", + "name": "Forst-Sengenthal UL", + "latitude_deg": "49.2166667", + "longitude_deg": "11.4016667", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "316051", + "ident": "DE-0332", + "type": "small_airport", + "name": "Roßfeld Airfield", + "latitude_deg": "48.5133", + "longitude_deg": "9.3332", + "elevation_ft": "2634", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Metzingen", + "scheduled_service": "no", + "home_link": "http://www.lsv-rossfeld.de/home/index.php?", + "keywords": "Rossfeld" + }, + { + "id": "316052", + "ident": "DE-0333", + "type": "small_airport", + "name": "Schäfhalde Airfield", + "latitude_deg": "48.6922", + "longitude_deg": "10.0995", + "elevation_ft": "2075", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Heidenheim", + "scheduled_service": "no", + "home_link": "http://www.fliegergruppe-heidenheim.de/" + }, + { + "id": "316053", + "ident": "DE-0334", + "type": "small_airport", + "name": "Sinsheim Airfield", + "latitude_deg": "49.2472", + "longitude_deg": "8.8938", + "elevation_ft": "525", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Sinsheim", + "scheduled_service": "no", + "gps_code": "EDTK", + "home_link": "http://www.flugsportring-kraichgau.de/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Sinsheim" + }, + { + "id": "316054", + "ident": "DE-0335", + "type": "small_airport", + "name": "Schwann-Conweiler Airfield", + "latitude_deg": "48.8382", + "longitude_deg": "8.5432", + "elevation_ft": "1550", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Pforzheim", + "scheduled_service": "no", + "home_link": "http://www.fsc-pforzheim.de/flugplatz.html", + "wikipedia_link": "http://www.pfenz.de/wiki/Flugplatz_Schwann-Conweiler" + }, + { + "id": "316121", + "ident": "DE-0336", + "type": "small_airport", + "name": "Sonderlandeplatz \"Altes Lager\"", + "latitude_deg": "51.9961111", + "longitude_deg": "12.9838889", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "scheduled_service": "no" + }, + { + "id": "316126", + "ident": "DE-0337", + "type": "small_airport", + "name": "Crawinkel", + "latitude_deg": "50.7783333", + "longitude_deg": "10.8169444", + "elevation_ft": "1549", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "scheduled_service": "no", + "home_link": "http://www.flugplatz-crawinkel.de/" + }, + { + "id": "316129", + "ident": "DE-0338", + "type": "small_airport", + "name": "Günching UL", + "latitude_deg": "49.2672222", + "longitude_deg": "11.572777", + "elevation_ft": "1799", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "316132", + "ident": "DE-0339", + "type": "small_airport", + "name": "Hartenstein-Thierfeld UL", + "latitude_deg": "50.676111", + "longitude_deg": "12.681667", + "elevation_ft": "1361", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "scheduled_service": "no" + }, + { + "id": "316136", + "ident": "DE-0340", + "type": "small_airport", + "name": "Pretzschendorf Ultralightport", + "latitude_deg": "50.884038", + "longitude_deg": "13.531042", + "elevation_ft": "1610", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "scheduled_service": "no" + }, + { + "id": "316137", + "ident": "DE-0341", + "type": "small_airport", + "name": "Sauldorf-Boll UL", + "latitude_deg": "47.9558333", + "longitude_deg": "9.0294444", + "elevation_ft": "2165", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "316138", + "ident": "DE-0342", + "type": "small_airport", + "name": "Sulz am Neckar UL", + "latitude_deg": "48.3458333", + "longitude_deg": "8.6377778", + "elevation_ft": "1772", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "scheduled_service": "no" + }, + { + "id": "316139", + "ident": "DE-0343", + "type": "small_airport", + "name": "Hasselfelde UL", + "latitude_deg": "51.7044444", + "longitude_deg": "10.8752778", + "elevation_ft": "1644", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "scheduled_service": "no", + "keywords": "Westernstadt,Pullman City" + }, + { + "id": "316140", + "ident": "DE-0344", + "type": "small_airport", + "name": "Göpfersdorf Airfield", + "latitude_deg": "50.9137", + "longitude_deg": "12.6123", + "elevation_ft": "960", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Altenburg", + "scheduled_service": "no", + "home_link": "http://www.flugsportverein-altenburger-land.de/" + }, + { + "id": "316183", + "ident": "DE-0345", + "type": "small_airport", + "name": "Gundelsheim UL", + "latitude_deg": "49.2908333", + "longitude_deg": "9.1725", + "elevation_ft": "817", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "scheduled_service": "no" + }, + { + "id": "316186", + "ident": "DE-0346", + "type": "small_airport", + "name": "UL-Flugplatz Hinterweiler", + "latitude_deg": "50.2463889", + "longitude_deg": "6.7561111", + "elevation_ft": "1996", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "scheduled_service": "no", + "home_link": "http://www.dfc-vulkaneifel.de/" + }, + { + "id": "316188", + "ident": "DE-0347", + "type": "small_airport", + "name": "Flugplatz Möckern-Tryppehna", + "latitude_deg": "52.1775", + "longitude_deg": "11.9283333", + "elevation_ft": "240", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Tryppehna", + "scheduled_service": "no" + }, + { + "id": "316189", + "ident": "DE-0348", + "type": "small_airport", + "name": "Roggenhagen UL", + "latitude_deg": "53.6702778", + "longitude_deg": "13.4005556", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "scheduled_service": "no" + }, + { + "id": "316244", + "ident": "DE-0349", + "type": "small_airport", + "name": "Frankendorf UL", + "latitude_deg": "49.8365058", + "longitude_deg": "11.0890816", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "308065", + "ident": "DE-0350", + "type": "closed", + "name": "Brandis Airbase", + "latitude_deg": "51.328383", + "longitude_deg": "12.656439", + "elevation_ft": "525", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Brandis", + "scheduled_service": "no", + "keywords": "Flugplatz Polenz, Fliegerhorst Waldpolenz, Flugplatz Brandis" + }, + { + "id": "323838", + "ident": "DE-0351", + "type": "balloonport", + "name": "Balloonport Bitterfeld", + "latitude_deg": "51.62455", + "longitude_deg": "12.29391", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Bitterfeld", + "scheduled_service": "no", + "home_link": "http://www.ballon-bitterfeld.de/" + }, + { + "id": "320179", + "ident": "DE-0352", + "type": "closed", + "name": "Skydive Bad Lippspringe", + "latitude_deg": "51.79056", + "longitude_deg": "8.786111", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Lippspringe", + "scheduled_service": "no" + }, + { + "id": "320213", + "ident": "DE-0353", + "type": "small_airport", + "name": "Beedeln Ultralight Flightpark", + "latitude_deg": "51.007235", + "longitude_deg": "12.814543", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Seelitz", + "scheduled_service": "no" + }, + { + "id": "320266", + "ident": "DE-0354", + "type": "small_airport", + "name": "Ternberg Landing Field", + "latitude_deg": "47.93474", + "longitude_deg": "14.350854", + "elevation_ft": "1165", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-6", + "municipality": "Ternberg", + "scheduled_service": "no", + "keywords": "Cumulus Paragleiter Eisenwurzen" + }, + { + "id": "320314", + "ident": "DE-0355", + "type": "small_airport", + "name": "Sonderlandeplatz Meißendorf-Brunsiek", + "latitude_deg": "52.7122879", + "longitude_deg": "9.8729296", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Meißendorf", + "scheduled_service": "no", + "home_link": "http://www.meido.de/" + }, + { + "id": "320633", + "ident": "DE-0356", + "type": "small_airport", + "name": "Flugplatz Uehrde", + "latitude_deg": "52.1008333", + "longitude_deg": "10.7380556", + "elevation_ft": "415", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Uehrde", + "scheduled_service": "no" + }, + { + "id": "320634", + "ident": "DE-0357", + "type": "small_airport", + "name": "UL-Flugplatz Brauna", + "latitude_deg": "51.283611", + "longitude_deg": "14.061667", + "elevation_ft": "587", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Kamenz", + "scheduled_service": "no" + }, + { + "id": "320635", + "ident": "DE-0358", + "type": "small_airport", + "name": "Flugplatz Burgheim", + "latitude_deg": "48.692206", + "longitude_deg": "11.033122", + "elevation_ft": "1332", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Burgheim LKrs Neuburg", + "scheduled_service": "no" + }, + { + "id": "320702", + "ident": "DE-0359", + "type": "small_airport", + "name": "Sonderlandeplatz Fehmarn-Neujellingsdorf", + "latitude_deg": "54.4559418", + "longitude_deg": "11.1096123", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Fehmarn", + "scheduled_service": "no", + "home_link": "http://www.fehmarn-air.de", + "wikipedia_link": "http://de.wipikedia.org/Flugplatz Fehmarn-Neujellingsdorf", + "keywords": "Fehmarn,Skerra" + }, + { + "id": "320705", + "ident": "DE-0360", + "type": "small_airport", + "name": "Katensen private UL strip", + "latitude_deg": "52.4411581", + "longitude_deg": "10.1661266", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Katensen", + "scheduled_service": "no" + }, + { + "id": "320746", + "ident": "DE-0361", + "type": "small_airport", + "name": "Mellenthin UL", + "latitude_deg": "53.9175", + "longitude_deg": "14.0325", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Mellenthin (Usedom)", + "scheduled_service": "no", + "home_link": "http://www.usedomerfliegerclub.de/" + }, + { + "id": "320747", + "ident": "DE-0362", + "type": "small_airport", + "name": "Hof Wahl", + "latitude_deg": "51.3066667", + "longitude_deg": "7.425", + "elevation_ft": "1280", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Hagen", + "scheduled_service": "no" + }, + { + "id": "320758", + "ident": "DE-0363", + "type": "small_airport", + "name": "UL-Gelände Bürstadt", + "latitude_deg": "49.6558333", + "longitude_deg": "8.4747222", + "elevation_ft": "230", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Bürstadt", + "scheduled_service": "no", + "home_link": "http://www.igulb.de/" + }, + { + "id": "320759", + "ident": "DE-0364", + "type": "small_airport", + "name": "Flugplatz Crussow", + "latitude_deg": "53.013056", + "longitude_deg": "14.071111", + "elevation_ft": "180", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Crussow", + "scheduled_service": "no", + "home_link": "http://www.flugplatzcrussow.de" + }, + { + "id": "320760", + "ident": "DE-0365", + "type": "small_airport", + "name": "Sonderlandeplatz Teldau-Amholz", + "latitude_deg": "53.3288889", + "longitude_deg": "10.8336111", + "elevation_ft": "25", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "scheduled_service": "no", + "home_link": "http://www.elbeflugschule.de" + }, + { + "id": "320778", + "ident": "DE-0366", + "type": "small_airport", + "name": "UL-Flugplatz Kleinkoschen", + "latitude_deg": "51.513056", + "longitude_deg": "14.080556", + "elevation_ft": "349", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Kleinkoschen", + "scheduled_service": "no" + }, + { + "id": "320789", + "ident": "DE-0367", + "type": "small_airport", + "name": "Iserlohn-Sümmern Sailplane Field", + "latitude_deg": "51.436389", + "longitude_deg": "7.699722", + "elevation_ft": "591", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Iserlohn", + "scheduled_service": "no" + }, + { + "id": "320790", + "ident": "DE-0368", + "type": "small_airport", + "name": "Mohorn Airfield", + "latitude_deg": "50.997963", + "longitude_deg": "13.446165", + "elevation_ft": "1173", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Mohorn", + "scheduled_service": "no" + }, + { + "id": "320828", + "ident": "DE-0369", + "type": "small_airport", + "name": "Flugplatz Wertheim", + "latitude_deg": "49.725862", + "longitude_deg": "9.507246", + "elevation_ft": "1000", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Wertheim", + "scheduled_service": "no", + "home_link": "http://www.Flugplatz-Wertheim.de" + }, + { + "id": "320854", + "ident": "DE-0370", + "type": "small_airport", + "name": "Schwarzenbach-Sötern UL", + "latitude_deg": "49.5919444", + "longitude_deg": "7.0313889", + "elevation_ft": "1509", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SL", + "scheduled_service": "no" + }, + { + "id": "320859", + "ident": "DE-0371", + "type": "small_airport", + "name": "Offenbüttel UL", + "latitude_deg": "54.1758333", + "longitude_deg": "9.3780556", + "elevation_ft": "6", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Offenbüttel", + "scheduled_service": "no", + "keywords": "Thode" + }, + { + "id": "320860", + "ident": "DE-0372", + "type": "small_airport", + "name": "Altenbeuthen UL", + "latitude_deg": "50.5930556", + "longitude_deg": "11.5922222", + "elevation_ft": "1715", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "scheduled_service": "no", + "home_link": "http://www.flugzentrum.com" + }, + { + "id": "320889", + "ident": "DE-0373", + "type": "heliport", + "name": "Günzburg Hospital Helipad", + "latitude_deg": "48.4581", + "longitude_deg": "10.291601", + "elevation_ft": "1554", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Günzburg", + "scheduled_service": "no" + }, + { + "id": "320890", + "ident": "DE-0374", + "type": "heliport", + "name": "Legoland Helipad", + "latitude_deg": "48.4259", + "longitude_deg": "10.298503", + "elevation_ft": "1565", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Günzburg", + "scheduled_service": "no" + }, + { + "id": "320891", + "ident": "DE-0375", + "type": "heliport", + "name": "Wilhelmsburg-Kaserne Helipad", + "latitude_deg": "48.4142", + "longitude_deg": "9.9805", + "elevation_ft": "1900", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Ulm", + "scheduled_service": "no" + }, + { + "id": "320896", + "ident": "DE-0376", + "type": "small_airport", + "name": "Mittelfischach UL", + "latitude_deg": "49.0352778", + "longitude_deg": "9.8725", + "elevation_ft": "1263", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "scheduled_service": "no" + }, + { + "id": "320897", + "ident": "DE-0377", + "type": "small_airport", + "name": "Waltrop UL", + "latitude_deg": "51.6408333", + "longitude_deg": "7.4255556", + "elevation_ft": "161", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "scheduled_service": "no" + }, + { + "id": "320906", + "ident": "DE-0378", + "type": "small_airport", + "name": "Schlierstadt", + "latitude_deg": "49.4435541", + "longitude_deg": "9.3619443", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "scheduled_service": "no", + "home_link": "http://southsidebase.de", + "keywords": "South Side Base" + }, + { + "id": "320912", + "ident": "DE-0379", + "type": "small_airport", + "name": "UL-Flugplatz Litzlohe", + "latitude_deg": "49.3519444", + "longitude_deg": "11.4888889", + "elevation_ft": "1876", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Pilsach auf der Heid", + "scheduled_service": "no", + "keywords": "Litzlohe" + }, + { + "id": "320913", + "ident": "DE-0380", + "type": "small_airport", + "name": "Flugplatz Eimbeckhausen", + "latitude_deg": "52.225", + "longitude_deg": "9.425", + "elevation_ft": "538", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Eimbeckhausen", + "scheduled_service": "no" + }, + { + "id": "320930", + "ident": "DE-0381", + "type": "small_airport", + "name": "Straßham UL", + "latitude_deg": "48.1797222", + "longitude_deg": "11.9272222", + "elevation_ft": "1690", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Straßham", + "scheduled_service": "no", + "home_link": "http://www.rundfluege-muenchen.de/" + }, + { + "id": "320931", + "ident": "DE-0382", + "type": "small_airport", + "name": "Unterschwaningen UL", + "latitude_deg": "49.086013", + "longitude_deg": "10.634766", + "elevation_ft": "1500", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "320937", + "ident": "DE-0383", + "type": "small_airport", + "name": "UL-Gelände Bredstedt", + "latitude_deg": "54.633425", + "longitude_deg": "8.985745", + "elevation_ft": "92", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Bredstedt", + "scheduled_service": "no", + "keywords": "Breezer" + }, + { + "id": "320941", + "ident": "DE-0384", + "type": "heliport", + "name": "Kemnitz Heliport", + "latitude_deg": "54.0824235", + "longitude_deg": "13.5361492", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Kemnitz", + "scheduled_service": "no", + "home_link": "http://www.heliflight-vorpommern.de" + }, + { + "id": "320993", + "ident": "DE-0385", + "type": "small_airport", + "name": "Fresh Breeze UL", + "latitude_deg": "52.518069", + "longitude_deg": "9.732115", + "elevation_ft": "187", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Bissendorf", + "scheduled_service": "no" + }, + { + "id": "320994", + "ident": "DE-0386", + "type": "small_airport", + "name": "Everswinkel UL", + "latitude_deg": "51.8844444", + "longitude_deg": "7.8380556", + "elevation_ft": "194", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Everswinkel", + "scheduled_service": "no" + }, + { + "id": "320995", + "ident": "DE-0387", + "type": "small_airport", + "name": "Geilsheim UL", + "latitude_deg": "49.0244444", + "longitude_deg": "10.6591667", + "elevation_ft": "1565", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Geilsheim", + "scheduled_service": "no" + }, + { + "id": "321028", + "ident": "DE-0388", + "type": "small_airport", + "name": "Flugplatz Plötzin", + "latitude_deg": "52.356113", + "longitude_deg": "12.824636", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Plötzin", + "scheduled_service": "no", + "home_link": "http://user.cs.tu-berlin.de/~mvr/ploetzin/" + }, + { + "id": "321055", + "ident": "DE-0389", + "type": "small_airport", + "name": "Metelen UL", + "latitude_deg": "52.1586111", + "longitude_deg": "7.2402778", + "elevation_ft": "160", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "scheduled_service": "no", + "home_link": "http://www.ul-metelen.de" + }, + { + "id": "321056", + "ident": "DE-0390", + "type": "small_airport", + "name": "Dorstadt UL", + "latitude_deg": "52.1", + "longitude_deg": "10.5513889", + "elevation_ft": "351", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Dorstadt", + "scheduled_service": "no", + "home_link": "http://www.rittergut-dorstadt.de/flugplatz/" + }, + { + "id": "321125", + "ident": "DE-0391", + "type": "small_airport", + "name": "Malsch-Ettlingen Ultralight Flightpark", + "latitude_deg": "48.901667", + "longitude_deg": "8.328333", + "elevation_ft": "387", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Malsch", + "scheduled_service": "no" + }, + { + "id": "321127", + "ident": "DE-0392", + "type": "small_airport", + "name": "Weidberg/Kaltenwestheim UL", + "latitude_deg": "50.6088889", + "longitude_deg": "10.0880556", + "elevation_ft": "2034", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "scheduled_service": "no" + }, + { + "id": "321128", + "ident": "DE-0393", + "type": "small_airport", + "name": "Dörzbach-Hohebach Ultralight Flightpark", + "latitude_deg": "49.350308", + "longitude_deg": "9.715267", + "elevation_ft": "1320", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Dörzbach", + "scheduled_service": "no", + "home_link": "http://www.ul-verein.de" + }, + { + "id": "321129", + "ident": "DE-0394", + "type": "small_airport", + "name": "Morbach UL", + "latitude_deg": "49.033717", + "longitude_deg": "9.592248", + "elevation_ft": "1624", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "scheduled_service": "no" + }, + { + "id": "321189", + "ident": "DE-0395", + "type": "small_airport", + "name": "Sonderlandeplatz Kremmen-Hohenbruch UL", + "latitude_deg": "52.797548", + "longitude_deg": "13.102406", + "elevation_ft": "120", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Kremmen", + "scheduled_service": "no", + "home_link": "http://www.flugplatz-kremmen.de/" + }, + { + "id": "321190", + "ident": "DE-0396", + "type": "small_airport", + "name": "Kunrau/Jahrstedt UL", + "latitude_deg": "52.567785", + "longitude_deg": "10.996051", + "elevation_ft": "218", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Kunrau", + "scheduled_service": "no" + }, + { + "id": "321210", + "ident": "DE-0397", + "type": "small_airport", + "name": "Deisterflieger UL", + "latitude_deg": "52.2941978", + "longitude_deg": "9.3773282", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "scheduled_service": "no" + }, + { + "id": "321215", + "ident": "DE-0398", + "type": "small_airport", + "name": "Neuenstadt am Kocher UL", + "latitude_deg": "49.2427777", + "longitude_deg": "9.3158333", + "elevation_ft": "617", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "scheduled_service": "no", + "home_link": "http://www.schlosserei-froehlich.de/flugplatz" + }, + { + "id": "321216", + "ident": "DE-0399", + "type": "small_airport", + "name": "Flugplatz Hoym", + "latitude_deg": "51.7780554", + "longitude_deg": "11.2855555", + "elevation_ft": "472", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "scheduled_service": "no" + }, + { + "id": "321230", + "ident": "DE-0400", + "type": "small_airport", + "name": "Flugplatz Niederwillingen", + "latitude_deg": "50.7799999", + "longitude_deg": "11.0508333", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Niederwillingen", + "scheduled_service": "no" + }, + { + "id": "321249", + "ident": "DE-0401", + "type": "small_airport", + "name": "Oberrot-Glashofen UL", + "latitude_deg": "49.0102777", + "longitude_deg": "9.6405555", + "elevation_ft": "1574", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Oberrot", + "scheduled_service": "no", + "home_link": "http://www.ulv-oberrot.de" + }, + { + "id": "321284", + "ident": "DE-0402", + "type": "small_airport", + "name": "Donstorf UL", + "latitude_deg": "52.655", + "longitude_deg": "8.556944", + "elevation_ft": "128", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "scheduled_service": "no" + }, + { + "id": "321359", + "ident": "DE-0403", + "type": "small_airport", + "name": "Ohlsbach UL", + "latitude_deg": "48.4338888", + "longitude_deg": "7.9708332", + "elevation_ft": "525", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Offenburg", + "scheduled_service": "no", + "home_link": "http://www.ortenauer-dgf.de/" + }, + { + "id": "321360", + "ident": "DE-0404", + "type": "small_airport", + "name": "Walxheim-Unterschneidheim UL", + "latitude_deg": "48.953631", + "longitude_deg": "10.323716", + "elevation_ft": "1690", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Walxheim", + "scheduled_service": "no", + "home_link": "http://www.fliegervereinwalxheim.de" + }, + { + "id": "321379", + "ident": "DE-0405", + "type": "small_airport", + "name": "Naunheim / Maifeld UL", + "latitude_deg": "50.2580555", + "longitude_deg": "7.3319443", + "elevation_ft": "700", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Naunheim", + "scheduled_service": "no", + "home_link": "http://www.aerodrom.de" + }, + { + "id": "321449", + "ident": "DE-0406", + "type": "small_airport", + "name": "Drachenflugplatz Welver UL", + "latitude_deg": "51.6180554", + "longitude_deg": "7.9352777", + "elevation_ft": "325", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Illingen-Welver", + "scheduled_service": "no", + "home_link": "http://www.motorschirmfreunde-welver.de" + }, + { + "id": "321500", + "ident": "DE-0407", + "type": "small_airport", + "name": "Gemen-Kirchspiel UL", + "latitude_deg": "51.8788888", + "longitude_deg": "6.8552777", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Borken", + "scheduled_service": "no", + "home_link": "http://www.motorschirm-muensterland.de" + }, + { + "id": "321578", + "ident": "DE-0408", + "type": "small_airport", + "name": "Schwaigern/Stetten UL", + "latitude_deg": "49.141667", + "longitude_deg": "8.9875", + "elevation_ft": "755", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Schwaigern", + "scheduled_service": "no", + "keywords": "Ul Schwaigern Stetten, EDSWAG , Flugplatz Stetten, Schwaigern" + }, + { + "id": "322105", + "ident": "DE-0409", + "type": "small_airport", + "name": "Gersdorf UL", + "latitude_deg": "49.0319443", + "longitude_deg": "11.141111", + "elevation_ft": "1804", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Gersdorf", + "scheduled_service": "no", + "home_link": "http://an03369.hp.altmuehlnet.de" + }, + { + "id": "324582", + "ident": "DE-0410", + "type": "heliport", + "name": "Rupin Hospital Helipad", + "latitude_deg": "52.9039727", + "longitude_deg": "12.7963431", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Ruppin", + "scheduled_service": "no" + }, + { + "id": "325169", + "ident": "DE-0411", + "type": "small_airport", + "name": "UL-Flugplatz Hohenstein", + "latitude_deg": "51.5336866", + "longitude_deg": "10.578724", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "scheduled_service": "no" + }, + { + "id": "326221", + "ident": "DE-0412", + "type": "small_airport", + "name": "UL Flugfeld Gössenheim", + "latitude_deg": "50.028245", + "longitude_deg": "9.772232", + "elevation_ft": "738", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Gössenheim", + "scheduled_service": "no", + "home_link": "https://www.facebook.com/igulgoesse/", + "keywords": "Gössenheim,UL,Ultra Leicht" + }, + { + "id": "326618", + "ident": "DE-0413", + "type": "small_airport", + "name": "Obersöllbach UL", + "latitude_deg": "49.183234", + "longitude_deg": "9.5590496", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Neuenstein", + "scheduled_service": "no" + }, + { + "id": "327063", + "ident": "DE-0414", + "type": "small_airport", + "name": "Agrarflugplatz Brodau", + "latitude_deg": "51.4987", + "longitude_deg": "12.32983", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Brodau", + "scheduled_service": "no" + }, + { + "id": "327064", + "ident": "DE-0415", + "type": "small_airport", + "name": "Laussig Agricultural Airport", + "latitude_deg": "51.535632", + "longitude_deg": "12.642359", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Laussig", + "scheduled_service": "no", + "keywords": "EXMB, Agrarflugplatz Laußig, Laußig" + }, + { + "id": "328934", + "ident": "DE-0416", + "type": "closed", + "name": "Maurice Rose Army Air Field", + "latitude_deg": "50.177008", + "longitude_deg": "8.658793", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Frankfurt am Main", + "scheduled_service": "no", + "gps_code": "EDEN", + "wikipedia_link": "https://de.wikipedia.org/wiki/Alter_Flugplatz_(Frankfurter_Gr%C3%BCng%C3%BCrtel)" + }, + { + "id": "328937", + "ident": "DE-0417", + "type": "closed", + "name": "Rebstock Airfield", + "latitude_deg": "50.111029", + "longitude_deg": "8.613238", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Frankfurt am Main", + "scheduled_service": "no", + "wikipedia_link": "https://de.wikipedia.org/wiki/Frankfurt-Rebstock" + }, + { + "id": "329127", + "ident": "DE-0418", + "type": "heliport", + "name": "DRF Luftrettung München Heliport", + "latitude_deg": "48.110895", + "longitude_deg": "11.465393", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "München", + "scheduled_service": "no" + }, + { + "id": "329130", + "ident": "DE-0419", + "type": "closed", + "name": "Heidelberg Army Helicopter Base", + "latitude_deg": "49.392397", + "longitude_deg": "8.651935", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Heidelberg", + "scheduled_service": "no", + "gps_code": "ETIE", + "iata_code": "HDB" + }, + { + "id": "329248", + "ident": "DE-0420", + "type": "heliport", + "name": "Greifswald Hospital Heliport", + "latitude_deg": "54.089077", + "longitude_deg": "13.408176", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "scheduled_service": "no" + }, + { + "id": "329249", + "ident": "DE-0421", + "type": "heliport", + "name": "Neustrelitz Heliport", + "latitude_deg": "53.3821208", + "longitude_deg": "13.0521218", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "scheduled_service": "no" + }, + { + "id": "329257", + "ident": "DE-0422", + "type": "heliport", + "name": "Aachen Hospital Heliport", + "latitude_deg": "50.775674", + "longitude_deg": "6.044372", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Aachen", + "scheduled_service": "no", + "keywords": "Rettende Hand" + }, + { + "id": "329299", + "ident": "DE-0423", + "type": "heliport", + "name": "Bad Saarow Hospital Heliport", + "latitude_deg": "52.284419", + "longitude_deg": "14.06036", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "scheduled_service": "no" + }, + { + "id": "329393", + "ident": "DE-0424", + "type": "closed", + "name": "Meyenburg Cropduster Airstrip", + "latitude_deg": "53.3101318", + "longitude_deg": "12.2514551", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "scheduled_service": "no" + }, + { + "id": "331680", + "ident": "DE-0425", + "type": "small_airport", + "name": "Agrarflugfeld Machern", + "latitude_deg": "51.3586195", + "longitude_deg": "12.6117779", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Machern", + "scheduled_service": "no" + }, + { + "id": "330770", + "ident": "DE-0426", + "type": "small_airport", + "name": "Freyenstein UL", + "latitude_deg": "53.2752777", + "longitude_deg": "12.3661111", + "elevation_ft": "310", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "scheduled_service": "no", + "keywords": "Trapp Technologie Horst Trapp" + }, + { + "id": "333985", + "ident": "DE-0427", + "type": "small_airport", + "name": "Agrar-Flugfeld Zwochau", + "latitude_deg": "51.46339", + "longitude_deg": "12.23996", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "scheduled_service": "no" + }, + { + "id": "331187", + "ident": "DE-0428", + "type": "closed", + "name": "Böblingen/Sindelfingen Airfield", + "latitude_deg": "48.689544", + "longitude_deg": "8.996193", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Böblingen", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/B%C3%B6blingen_Airport", + "keywords": "Böblingen Airport, PHM" + }, + { + "id": "331188", + "ident": "DE-0429", + "type": "heliport", + "name": "Böblingen Hospital Heliport", + "latitude_deg": "48.690553", + "longitude_deg": "9.03221", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Böblingen", + "scheduled_service": "no", + "wikipedia_link": "https://de.wikipedia.org/wiki/Flugfeld_(Stadtteil)", + "keywords": "PHM" + }, + { + "id": "331189", + "ident": "DE-0430", + "type": "heliport", + "name": "Sindelfingen Clinics Heliport", + "latitude_deg": "48.71495", + "longitude_deg": "9.02438", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Sindelfingen", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Malmsheim_Airfield" + }, + { + "id": "331258", + "ident": "DE-0431", + "type": "heliport", + "name": "Oldenburg Police Heliport", + "latitude_deg": "53.2162096", + "longitude_deg": "8.2177713", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "scheduled_service": "no" + }, + { + "id": "331281", + "ident": "DE-0432", + "type": "small_airport", + "name": "Gerbstedt Airstrip", + "latitude_deg": "51.6368318", + "longitude_deg": "11.6149507", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "scheduled_service": "no" + }, + { + "id": "334173", + "ident": "DE-0433", + "type": "small_airport", + "name": "Luftsportverein Parchim", + "latitude_deg": "53.41861", + "longitude_deg": "11.80167", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "scheduled_service": "no" + }, + { + "id": "334188", + "ident": "DE-0434", + "type": "heliport", + "name": "Christoph 12 Luftrettungszentrum", + "latitude_deg": "54.034939", + "longitude_deg": "10.562518", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "scheduled_service": "no" + }, + { + "id": "334707", + "ident": "DE-0435", + "type": "small_airport", + "name": "Flugplatz Kolitzheim-Herleshof", + "latitude_deg": "49.920062", + "longitude_deg": "10.258141", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "350530", + "ident": "DE-0436", + "type": "small_airport", + "name": "Heimatshofen Private Airstrip UL", + "latitude_deg": "47.95773", + "longitude_deg": "11.82082", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "336792", + "ident": "DE-0437", + "type": "heliport", + "name": "Luftrettungszentrum Bielefeld", + "latitude_deg": "51.982693", + "longitude_deg": "8.528706", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Bielefeld", + "scheduled_service": "no" + }, + { + "id": "336888", + "ident": "DE-0438", + "type": "closed", + "name": "Basepohl Airfield", + "latitude_deg": "53.747388", + "longitude_deg": "12.950649", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "scheduled_service": "no", + "keywords": "Basepohl, Heliport, Airfield" + }, + { + "id": "336937", + "ident": "DE-0439", + "type": "closed", + "name": "Einstazhafen Kaltenkirchen", + "latitude_deg": "53.825327", + "longitude_deg": "9.904432", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Kaltenkirchen", + "scheduled_service": "no" + }, + { + "id": "2209", + "ident": "DE-0440", + "type": "closed", + "name": "Berlin-Schönefeld Airport", + "latitude_deg": "52.380001", + "longitude_deg": "13.5225", + "elevation_ft": "157", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Berlin", + "scheduled_service": "no", + "home_link": "http://www.berlin-airport.de/en/travellers-sxf/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Berlin-Sch%C3%B6nefeld_International_Airport", + "keywords": "BER, EDDB, ETBS, Schoenefeld, Terminal 5" + }, + { + "id": "337060", + "ident": "DE-0441", + "type": "closed", + "name": "Ehemaliger Flugplatz Borkheide", + "latitude_deg": "52.23364", + "longitude_deg": "12.84742", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Borkheide", + "scheduled_service": "no" + }, + { + "id": "337335", + "ident": "DE-0442", + "type": "heliport", + "name": "St. Elisabeth Hospital Iserlohn Helipad", + "latitude_deg": "51.380328", + "longitude_deg": "7.690701", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Iserlohn", + "scheduled_service": "no" + }, + { + "id": "339905", + "ident": "DE-0443", + "type": "small_airport", + "name": "Marbach-Rielingshausen", + "latitude_deg": "48.96775", + "longitude_deg": "9.32206", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no", + "keywords": "Magolsheim" + }, + { + "id": "340434", + "ident": "DE-0444", + "type": "heliport", + "name": "Borkum Heliport", + "latitude_deg": "53.566654", + "longitude_deg": "6.755764", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Borkum", + "scheduled_service": "no" + }, + { + "id": "341228", + "ident": "DE-0445", + "type": "small_airport", + "name": "Flugplatz Felling", + "latitude_deg": "48.07159", + "longitude_deg": "12.13531", + "elevation_ft": "-2", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Edling", + "scheduled_service": "no" + }, + { + "id": "341522", + "ident": "DE-0446", + "type": "heliport", + "name": "Rhein-Maas Clinic Heliport", + "latitude_deg": "50.81494", + "longitude_deg": "6.14322", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Würselen", + "scheduled_service": "no" + }, + { + "id": "343912", + "ident": "DE-0447", + "type": "small_airport", + "name": "Bruchsal dropzone", + "latitude_deg": "49.0975", + "longitude_deg": "8.59495", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "scheduled_service": "no", + "home_link": "https://www.fsc-bruchsal.de/dropzone" + }, + { + "id": "343923", + "ident": "DE-0448", + "type": "balloonport", + "name": "Köln-Sülz Balloonport", + "latitude_deg": "50.91305", + "longitude_deg": "6.89627", + "elevation_ft": "177", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Köln (Cologne)", + "scheduled_service": "no", + "keywords": "Freiballon-Startplatz Köln-Sülz" + }, + { + "id": "343996", + "ident": "DE-0449", + "type": "closed", + "name": "Berlin-Staaken Airport", + "latitude_deg": "52.53446", + "longitude_deg": "13.11579", + "elevation_ft": "108", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Dallgow-Döberitz", + "scheduled_service": "no" + }, + { + "id": "344307", + "ident": "DE-0450", + "type": "heliport", + "name": "Christoph 9 Emergency Helicopter", + "latitude_deg": "51.38054", + "longitude_deg": "6.78715", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Duisburg", + "scheduled_service": "no" + }, + { + "id": "344642", + "ident": "DE-0451", + "type": "heliport", + "name": "Steyerberg auxiliary helicopter base", + "latitude_deg": "52.58029", + "longitude_deg": "8.93266", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "scheduled_service": "no" + }, + { + "id": "344827", + "ident": "DE-0452", + "type": "small_airport", + "name": "Fallschirmsportclub Oberhausen", + "latitude_deg": "49.5491", + "longitude_deg": "9.95173", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Oberhausen", + "scheduled_service": "no" + }, + { + "id": "345228", + "ident": "DE-0453", + "type": "small_airport", + "name": "Flugplatz Starnberg-Landstetten", + "latitude_deg": "47.98103", + "longitude_deg": "11.24277", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "348414", + "ident": "DE-0454", + "type": "small_airport", + "name": "Maroldsweisach Airstrip", + "latitude_deg": "50.19933", + "longitude_deg": "10.75923", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "348975", + "ident": "DE-0455", + "type": "small_airport", + "name": "Feuchtwangen Private Airstrip", + "latitude_deg": "49.194227", + "longitude_deg": "10.37957", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "2215", + "ident": "DE-0456", + "type": "closed", + "name": "Berlin Tempelhof Airport", + "latitude_deg": "52.473", + "longitude_deg": "13.4039", + "elevation_ft": "167", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BE", + "municipality": "Berlin", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tempelhof_International_Airport", + "keywords": "BER, EDDI, THF" + }, + { + "id": "350927", + "ident": "DE-0457", + "type": "heliport", + "name": "Bonn University Heliport", + "latitude_deg": "50.69806", + "longitude_deg": "7.10555", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Bonn", + "scheduled_service": "no" + }, + { + "id": "352812", + "ident": "DE-0458", + "type": "heliport", + "name": "Berlin Emergency Hospital Heliport", + "latitude_deg": "52.51926", + "longitude_deg": "13.56769", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BE", + "municipality": "Berlin", + "scheduled_service": "no" + }, + { + "id": "352814", + "ident": "DE-0459", + "type": "heliport", + "name": "Helios Clinic Berlin-Buch Heliport", + "latitude_deg": "52.63", + "longitude_deg": "13.51039", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BE", + "municipality": "Berlin", + "scheduled_service": "no" + }, + { + "id": "352815", + "ident": "DE-0460", + "type": "heliport", + "name": "Vivantes Humboldt Clinic Heliport", + "latitude_deg": "52.59042", + "longitude_deg": "13.30846", + "elevation_ft": "118", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BE", + "municipality": "Berlin", + "scheduled_service": "no" + }, + { + "id": "352816", + "ident": "DE-0461", + "type": "heliport", + "name": "Charité Clinic Virchow Campus Heliport", + "latitude_deg": "52.54049", + "longitude_deg": "13.34266", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BE", + "municipality": "Berlin", + "scheduled_service": "no" + }, + { + "id": "352817", + "ident": "DE-0462", + "type": "heliport", + "name": "Vivantes Freidrichshain Clinic Heliport", + "latitude_deg": "52.52701", + "longitude_deg": "13.43915", + "elevation_ft": "194", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BE", + "municipality": "Berlin", + "scheduled_service": "no" + }, + { + "id": "352818", + "ident": "DE-0463", + "type": "heliport", + "name": "Berlin Tempelhof Heliport", + "latitude_deg": "52.48243", + "longitude_deg": "13.39561", + "elevation_ft": "157", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BE", + "municipality": "Berlin", + "scheduled_service": "no" + }, + { + "id": "352819", + "ident": "DE-0464", + "type": "heliport", + "name": "Charité Clinic Benjamin Franklin Campus Heliport", + "latitude_deg": "52.44135", + "longitude_deg": "13.32286", + "elevation_ft": "128", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BE", + "municipality": "Berlin", + "scheduled_service": "no" + }, + { + "id": "352821", + "ident": "DE-0465", + "type": "heliport", + "name": "Havelhöhe Medical Heliport", + "latitude_deg": "52.46104", + "longitude_deg": "13.16276", + "elevation_ft": "177", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BE", + "municipality": "Berlin", + "scheduled_service": "no" + }, + { + "id": "353307", + "ident": "DE-0466", + "type": "closed", + "name": "Bardenitz Heliport", + "latitude_deg": "52.07595", + "longitude_deg": "12.96762", + "elevation_ft": "213", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Treuenbritzen", + "scheduled_service": "no" + }, + { + "id": "353308", + "ident": "DE-0467", + "type": "heliport", + "name": "Ernst von Bergmann Clinic Heliport", + "latitude_deg": "52.40015", + "longitude_deg": "13.06554", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Potsdam", + "scheduled_service": "no" + }, + { + "id": "353759", + "ident": "DE-0468", + "type": "heliport", + "name": "ADAC Luftrettungszentrum Christoph 1", + "latitude_deg": "48.083573", + "longitude_deg": "11.559945", + "elevation_ft": "1853", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "München", + "scheduled_service": "no" + }, + { + "id": "353760", + "ident": "DE-0469", + "type": "heliport", + "name": "ADAC Luftrettungszentrum Christoph Murnau / BG Unfallklinik Murnau Heliport", + "latitude_deg": "47.672376", + "longitude_deg": "11.21628", + "elevation_ft": "2227", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Murnau", + "scheduled_service": "no" + }, + { + "id": "353761", + "ident": "DE-0470", + "type": "heliport", + "name": "DRF Luftrettung - Station Regensburg / Uniklinik Regensburg (UKR) Heliport", + "latitude_deg": "48.987064", + "longitude_deg": "12.09297", + "elevation_ft": "1325", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Regensburg", + "scheduled_service": "no", + "wikipedia_link": "https://de.wikipedia.org/wiki/Christoph_Regensburg" + }, + { + "id": "353762", + "ident": "DE-0471", + "type": "heliport", + "name": "Klinikum rechts der Isar der Technischen Universität München Heliport", + "latitude_deg": "48.136011", + "longitude_deg": "11.600677", + "elevation_ft": "1725", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "München", + "scheduled_service": "no" + }, + { + "id": "353763", + "ident": "DE-0472", + "type": "heliport", + "name": "München Klinik Bogenhausen Heliport", + "latitude_deg": "48.154309", + "longitude_deg": "11.626185", + "elevation_ft": "1719", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "353764", + "ident": "DE-0473", + "type": "heliport", + "name": "Deutsches Herzzentrum München Heliport", + "latitude_deg": "48.152786", + "longitude_deg": "11.548548", + "elevation_ft": "1715", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "München", + "scheduled_service": "no" + }, + { + "id": "353765", + "ident": "DE-0474", + "type": "heliport", + "name": "Artemed Klinikum München Süd Heliport", + "latitude_deg": "48.103039", + "longitude_deg": "11.548246", + "elevation_ft": "1725", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "München", + "scheduled_service": "no" + }, + { + "id": "353766", + "ident": "DE-0475", + "type": "heliport", + "name": "Aussenlandeplatz Innenstadtkliniken Goetheplatz", + "latitude_deg": "48.133208", + "longitude_deg": "11.562263", + "elevation_ft": "1725", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "München", + "scheduled_service": "no" + }, + { + "id": "353767", + "ident": "DE-0476", + "type": "heliport", + "name": "Klinikum Garmisch-Partenkirchen Helipad", + "latitude_deg": "47.484399", + "longitude_deg": "11.129059", + "elevation_ft": "2421", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Garmisch-Partenkirchen", + "scheduled_service": "no" + }, + { + "id": "353834", + "ident": "DE-0477", + "type": "small_airport", + "name": "Kreuzebra UL", + "latitude_deg": "51.33262", + "longitude_deg": "10.25527", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "scheduled_service": "no" + }, + { + "id": "354102", + "ident": "DE-0478", + "type": "small_airport", + "name": "Segelfluggelände Teck", + "latitude_deg": "48.608753", + "longitude_deg": "9.474184", + "elevation_ft": "1214", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Dettingen unter Teck", + "scheduled_service": "no", + "home_link": "https://www.flg-dettingen.de/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Segelfluggel%C3%A4nde_Teck" + }, + { + "id": "354337", + "ident": "DE-0479", + "type": "closed", + "name": "Fliegerhorst Neubiberg", + "latitude_deg": "48.072057", + "longitude_deg": "11.635852", + "elevation_ft": "1808", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Unterhaching", + "scheduled_service": "no", + "wikipedia_link": "https://de.wikipedia.org/wiki/Fliegerhorst_Neubiberg" + }, + { + "id": "354384", + "ident": "DE-0480", + "type": "small_airport", + "name": "Sollach Airstrip", + "latitude_deg": "47.9062", + "longitude_deg": "11.76946", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no" + }, + { + "id": "354463", + "ident": "DE-0481", + "type": "closed", + "name": "Eschborn Air Base", + "latitude_deg": "50.135764", + "longitude_deg": "8.549981", + "elevation_ft": "443", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Eschborn", + "scheduled_service": "no", + "local_code": "Y74", + "home_link": "https://www.fliegerhorst-eschborn.de/eschborn-air-base/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eschborn_Airfield" + }, + { + "id": "354885", + "ident": "DE-0482", + "type": "heliport", + "name": "Helipad", + "latitude_deg": "52.226452", + "longitude_deg": "12.807269", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "scheduled_service": "no" + }, + { + "id": "354886", + "ident": "DE-0483", + "type": "heliport", + "name": "Military Helipad", + "latitude_deg": "52.213603", + "longitude_deg": "12.798685", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "scheduled_service": "no" + }, + { + "id": "355092", + "ident": "DE-0484", + "type": "heliport", + "name": "IABG Helipad", + "latitude_deg": "51.609169", + "longitude_deg": "8.935168", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Lichtenau", + "scheduled_service": "no" + }, + { + "id": "355093", + "ident": "DE-0485", + "type": "heliport", + "name": "Bundespolizei Dresden", + "latitude_deg": "51.133696", + "longitude_deg": "13.773546", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Dresden", + "scheduled_service": "no" + }, + { + "id": "355232", + "ident": "DE-0486", + "type": "heliport", + "name": "Christoph Westfalen-ADAC", + "latitude_deg": "52.123376", + "longitude_deg": "7.690313", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Greven", + "scheduled_service": "no" + }, + { + "id": "355233", + "ident": "DE-0487", + "type": "heliport", + "name": "Christoph Europa-2 ADAC Helipad", + "latitude_deg": "52.277228", + "longitude_deg": "7.431487", + "elevation_ft": "40", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Rheine", + "scheduled_service": "no" + }, + { + "id": "355419", + "ident": "DE-0488", + "type": "heliport", + "name": "Luftstützpunkt Meppen Heliport", + "latitude_deg": "52.72632", + "longitude_deg": "7.32988", + "elevation_ft": "72", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "49716 Meppen", + "scheduled_service": "no" + }, + { + "id": "355544", + "ident": "DE-0489", + "type": "heliport", + "name": "Reinbek St Adolf-Stilt Hospital Helipad", + "latitude_deg": "53.508943", + "longitude_deg": "10.24186", + "elevation_ft": "25", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Reinbek", + "scheduled_service": "no" + }, + { + "id": "355548", + "ident": "DE-0490", + "type": "heliport", + "name": "Bethesda Hospital Helipad", + "latitude_deg": "53.48615", + "longitude_deg": "10.234677", + "elevation_ft": "95", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HH", + "municipality": "Bergedorf", + "scheduled_service": "no", + "local_code": "BKB", + "home_link": "https://www.klinik-bergedorf.de/start" + }, + { + "id": "355552", + "ident": "DE-0491", + "type": "heliport", + "name": "Wilhelmstift Catholic Children's Hospital Helipad", + "latitude_deg": "53.587442", + "longitude_deg": "10.164236", + "elevation_ft": "80", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HH", + "municipality": "Hamburg", + "scheduled_service": "no", + "local_code": "KKKW", + "wikipedia_link": "https://de.wikipedia.org/wiki/Katholisches_Kinderkrankenhaus_Wilhelmstift" + }, + { + "id": "355553", + "ident": "DE-0492", + "type": "heliport", + "name": "Hamburg Military Hospital Helipad", + "latitude_deg": "53.596875", + "longitude_deg": "10.077857", + "elevation_ft": "56", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HH", + "municipality": "Hamburg", + "scheduled_service": "no", + "local_code": "BWK", + "home_link": "https://hamburg.bwkrankenhaus.de/startseite.html", + "wikipedia_link": "https://de.wikipedia.org/wiki/Bundeswehrkrankenhaus_Hamburg" + }, + { + "id": "355554", + "ident": "DE-0493", + "type": "heliport", + "name": "Johanniter Hospital Helipad", + "latitude_deg": "53.431836", + "longitude_deg": "10.385492", + "elevation_ft": "205", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Geestacht", + "scheduled_service": "no", + "home_link": "https://www.johanniter.de/en/the-johanniter-clinics/johanniter-krankenhaus-geesthacht/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Johanniter-Krankenhaus_Geesthacht" + }, + { + "id": "355555", + "ident": "DE-0494", + "type": "heliport", + "name": "Asklepios Hospital Harburg Helipad", + "latitude_deg": "53.459786", + "longitude_deg": "9.950835", + "elevation_ft": "210", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HH", + "municipality": "Hamburg", + "scheduled_service": "no", + "local_code": "AKHAR", + "home_link": "https://www.asklepios.com/hamburg/harburg/" + }, + { + "id": "355556", + "ident": "DE-0495", + "type": "heliport", + "name": "Asklepios Hospital Altona Heliport", + "latitude_deg": "53.555431", + "longitude_deg": "9.902346", + "elevation_ft": "85", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HH", + "municipality": "Hamburg", + "scheduled_service": "no", + "local_code": "AKHA", + "home_link": "https://www.asklepios.com/hamburg/altona/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Asklepios_Klinik_Altona" + }, + { + "id": "355557", + "ident": "DE-0496", + "type": "heliport", + "name": "University of Hamburg Medical Center Eppendorf Helipad", + "latitude_deg": "53.591518", + "longitude_deg": "9.973955", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HH", + "municipality": "Hamburg", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/University_Medical_Center_Hamburg-Eppendorf" + }, + { + "id": "356378", + "ident": "DE-0497", + "type": "heliport", + "name": "Frankfurt Westside Heliport", + "latitude_deg": "50.089619", + "longitude_deg": "8.585571", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Frankfurt", + "scheduled_service": "no" + }, + { + "id": "28689", + "ident": "DE-0498", + "type": "closed", + "name": "Flugplatz Peine-Eddesse", + "latitude_deg": "52.4025", + "longitude_deg": "10.228889", + "elevation_ft": "249", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Peine", + "scheduled_service": "no", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Peine-Eddesse", + "keywords": "EDVP" + }, + { + "id": "17115", + "ident": "DE00", + "type": "small_airport", + "name": "Doyle's Airport", + "latitude_deg": "39.02069854736328", + "longitude_deg": "-75.57710266113281", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Felton", + "scheduled_service": "no", + "gps_code": "DE00", + "local_code": "DE00" + }, + { + "id": "17116", + "ident": "DE01", + "type": "closed", + "name": "Eagle Run Heliport", + "latitude_deg": "39.661201", + "longitude_deg": "-75.682999", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Christiana", + "scheduled_service": "no", + "keywords": "DE01" + }, + { + "id": "17117", + "ident": "DE02", + "type": "heliport", + "name": "Delaware State Police Heliport", + "latitude_deg": "39.20009994506836", + "longitude_deg": "-75.53299713134766", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Dover", + "scheduled_service": "no", + "gps_code": "DE02", + "local_code": "DE02" + }, + { + "id": "17118", + "ident": "DE03", + "type": "heliport", + "name": "Dover Downs Helistop", + "latitude_deg": "39.18339920043945", + "longitude_deg": "-75.52459716796875", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Dover", + "scheduled_service": "no", + "gps_code": "DE03", + "local_code": "DE03" + }, + { + "id": "17119", + "ident": "DE04", + "type": "small_airport", + "name": "Newberg Airport", + "latitude_deg": "39.29169845581055", + "longitude_deg": "-75.57499694824219", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Smyrna", + "scheduled_service": "no", + "gps_code": "DE04", + "local_code": "DE04" + }, + { + "id": "17120", + "ident": "DE05", + "type": "heliport", + "name": "Wilmington Country Club Heliport", + "latitude_deg": "39.80009841918945", + "longitude_deg": "-75.61630249023438", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "DE05", + "local_code": "DE05" + }, + { + "id": "17121", + "ident": "DE06", + "type": "heliport", + "name": "Delaware Museum Heliport", + "latitude_deg": "39.792598724365234", + "longitude_deg": "-75.6135025024414", + "elevation_ft": "353", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "DE06", + "local_code": "DE06" + }, + { + "id": "17122", + "ident": "DE07", + "type": "closed", + "name": "Flying C Airport", + "latitude_deg": "39.144299", + "longitude_deg": "-75.691299", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Hartly", + "scheduled_service": "no", + "keywords": "DE07" + }, + { + "id": "17123", + "ident": "DE08", + "type": "heliport", + "name": "Barcroft Company Heliport", + "latitude_deg": "38.78150177001953", + "longitude_deg": "-75.1052017211914", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Lewes", + "scheduled_service": "no", + "gps_code": "DE08", + "local_code": "DE08" + }, + { + "id": "17124", + "ident": "DE09", + "type": "small_airport", + "name": "Johnsons Airport", + "latitude_deg": "39.068199157714844", + "longitude_deg": "-75.4885025024414", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Magnolia", + "scheduled_service": "no", + "gps_code": "DE09", + "local_code": "DE09" + }, + { + "id": "17125", + "ident": "DE10", + "type": "small_airport", + "name": "Kimbowrosa Farm Airport", + "latitude_deg": "38.966800689697266", + "longitude_deg": "-75.46630096435547", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "DE10", + "local_code": "DE10" + }, + { + "id": "17126", + "ident": "DE11", + "type": "small_airport", + "name": "Drummond Airport", + "latitude_deg": "38.90570068359375", + "longitude_deg": "-75.4010009765625", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "DE11", + "local_code": "DE11" + }, + { + "id": "17127", + "ident": "DE12", + "type": "small_airport", + "name": "Owens Field", + "latitude_deg": "38.80569839477539", + "longitude_deg": "-75.4126968383789", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Ellendale", + "scheduled_service": "no", + "gps_code": "DE12", + "local_code": "DE12" + }, + { + "id": "17128", + "ident": "DE13", + "type": "seaplane_base", + "name": "Rehoboth Bay Seaplane Base", + "latitude_deg": "38.68619918823242", + "longitude_deg": "-75.08709716796875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Dewey Beach", + "scheduled_service": "no", + "gps_code": "DE13", + "local_code": "DE13" + }, + { + "id": "17129", + "ident": "DE14", + "type": "small_airport", + "name": "Huey Airport", + "latitude_deg": "38.74399948120117", + "longitude_deg": "-75.53489685058594", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Bridgeville", + "scheduled_service": "no", + "gps_code": "DE14", + "local_code": "DE14" + }, + { + "id": "17130", + "ident": "DE15", + "type": "small_airport", + "name": "Pevey Airport", + "latitude_deg": "38.61259841918945", + "longitude_deg": "-75.69969940185547", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Seaford", + "scheduled_service": "no", + "gps_code": "DE15", + "local_code": "DE15" + }, + { + "id": "17131", + "ident": "DE16", + "type": "heliport", + "name": "Rollins Building Heliport", + "latitude_deg": "39.79084", + "longitude_deg": "-75.547805", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Wilmington", + "scheduled_service": "no", + "gps_code": "DE16", + "local_code": "DE16" + }, + { + "id": "17132", + "ident": "DE17", + "type": "small_airport", + "name": "Sugar Hill Airport", + "latitude_deg": "38.77790069580078", + "longitude_deg": "-75.58329772949219", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Greenwood", + "scheduled_service": "no", + "gps_code": "DE17", + "local_code": "DE17" + }, + { + "id": "17133", + "ident": "DE18", + "type": "closed", + "name": "Strawbridge Christiana Mall Heliport", + "latitude_deg": "39.678391", + "longitude_deg": "-75.651855", + "elevation_ft": "108", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Newark", + "scheduled_service": "no", + "keywords": "DE18" + }, + { + "id": "17134", + "ident": "DE19", + "type": "small_airport", + "name": "Duffy's Airport", + "latitude_deg": "39.325801849365234", + "longitude_deg": "-75.7416000366211", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Townsend", + "scheduled_service": "no", + "gps_code": "DE19", + "local_code": "DE19" + }, + { + "id": "17135", + "ident": "DE20", + "type": "small_airport", + "name": "Spirit Airpark", + "latitude_deg": "39.373600006103516", + "longitude_deg": "-75.74579620361328", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Townsend", + "scheduled_service": "no", + "gps_code": "DE20", + "local_code": "DE20" + }, + { + "id": "17136", + "ident": "DE21", + "type": "small_airport", + "name": "West Private Airport", + "latitude_deg": "38.517901", + "longitude_deg": "-75.159874", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Frankford", + "scheduled_service": "no", + "gps_code": "DE21", + "local_code": "DE21" + }, + { + "id": "17137", + "ident": "DE22", + "type": "closed", + "name": "Del-Mar Ford Heliport", + "latitude_deg": "39.216801", + "longitude_deg": "-75.583", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Cheswold", + "scheduled_service": "no", + "keywords": "DE22" + }, + { + "id": "17138", + "ident": "DE23", + "type": "small_airport", + "name": "Ockel Farms Airport", + "latitude_deg": "38.750301361083984", + "longitude_deg": "-75.36000061035156", + "elevation_ft": "47", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "DE23", + "local_code": "DE23" + }, + { + "id": "17139", + "ident": "DE24", + "type": "heliport", + "name": "Elliott Heliport", + "latitude_deg": "39.11149978637695", + "longitude_deg": "-75.50550079345703", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Dover", + "scheduled_service": "no", + "gps_code": "DE24", + "local_code": "DE24" + }, + { + "id": "17140", + "ident": "DE25", + "type": "small_airport", + "name": "Eagle Crest-Hudson Airport", + "latitude_deg": "38.776100158691406", + "longitude_deg": "-75.23359680175781", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "DE25", + "local_code": "DE25" + }, + { + "id": "17141", + "ident": "DE26", + "type": "heliport", + "name": "ChristianaCare Christiana Hospital Heliport", + "latitude_deg": "39.687564", + "longitude_deg": "-75.667069", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Newark", + "scheduled_service": "no", + "gps_code": "DE26", + "local_code": "DE26" + }, + { + "id": "17142", + "ident": "DE27", + "type": "closed", + "name": "Warrington Field", + "latitude_deg": "38.462601", + "longitude_deg": "-75.174896", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Selbyville", + "scheduled_service": "no", + "keywords": "DE27" + }, + { + "id": "17143", + "ident": "DE28", + "type": "heliport", + "name": "Nemours A I Dupont Children's Hospital Rooftop Heliport", + "latitude_deg": "39.779181", + "longitude_deg": "-75.55552", + "elevation_ft": "327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Wilmington", + "scheduled_service": "no", + "gps_code": "DE28", + "local_code": "DE28" + }, + { + "id": "17144", + "ident": "DE29", + "type": "small_airport", + "name": "Scotty's Place Airport", + "latitude_deg": "39.375099182128906", + "longitude_deg": "-75.64409637451172", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Smyrna", + "scheduled_service": "no", + "gps_code": "DE29", + "local_code": "DE29" + }, + { + "id": "17145", + "ident": "DE30", + "type": "heliport", + "name": "Bracebridge Iii Heliport", + "latitude_deg": "39.735599517822266", + "longitude_deg": "-75.5353012084961", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Wilmington", + "scheduled_service": "no", + "gps_code": "DE30", + "local_code": "DE30" + }, + { + "id": "17146", + "ident": "DE31", + "type": "closed", + "name": "Greenville Heliport", + "latitude_deg": "39.766701", + "longitude_deg": "-75.583298", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Wilmington", + "scheduled_service": "no", + "keywords": "DE31" + }, + { + "id": "17147", + "ident": "DE32", + "type": "small_airport", + "name": "Belfair Airport", + "latitude_deg": "38.974998474121094", + "longitude_deg": "-75.61669921875", + "elevation_ft": "64", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Felton", + "scheduled_service": "no", + "gps_code": "DE32", + "local_code": "DE32" + }, + { + "id": "17148", + "ident": "DE33", + "type": "closed", + "name": "Okolona Plantation Airport", + "latitude_deg": "39.475444", + "longitude_deg": "-75.69177", + "elevation_ft": "61", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Middletown", + "scheduled_service": "no", + "keywords": "DE33" + }, + { + "id": "17149", + "ident": "DE34", + "type": "small_airport", + "name": "Townsend A Airport", + "latitude_deg": "39.41429901123047", + "longitude_deg": "-75.66300201416016", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Townsend", + "scheduled_service": "no", + "gps_code": "DE34", + "local_code": "DE34" + }, + { + "id": "329265", + "ident": "DE39", + "type": "heliport", + "name": "ChristianaCare Wilmington Hospital Heliport", + "latitude_deg": "39.751111", + "longitude_deg": "-75.550556", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Wilmington", + "scheduled_service": "no", + "gps_code": "DE39", + "local_code": "DE39" + }, + { + "id": "17150", + "ident": "DE49", + "type": "small_airport", + "name": "Josephs Airport", + "latitude_deg": "38.63759994506836", + "longitude_deg": "-75.3552017211914", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Georgetown", + "scheduled_service": "no", + "gps_code": "DE49", + "local_code": "DE49" + }, + { + "id": "336115", + "ident": "DEQ", + "type": "small_airport", + "name": "Deqing Moganshan Airport", + "latitude_deg": "30.504264", + "longitude_deg": "120.107388", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-33", + "municipality": "Huzhou", + "scheduled_service": "no", + "iata_code": "DEQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Deqing_Moganshan_Airport" + }, + { + "id": "302107", + "ident": "DER", + "type": "small_airport", + "name": "Derim Airport", + "latitude_deg": "-6.14472222222", + "longitude_deg": "147.107222222", + "elevation_ft": "4850", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Derim", + "scheduled_service": "no", + "gps_code": "AYDE", + "iata_code": "DER", + "local_code": "DEM" + }, + { + "id": "315622", + "ident": "DEX", + "type": "small_airport", + "name": "Nop Goliat Dekai Airport", + "latitude_deg": "-4.8557", + "longitude_deg": "139.482006", + "elevation_ft": "198", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Dekai", + "scheduled_service": "yes", + "gps_code": "WAVD", + "iata_code": "DEX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nop_Goliat_Dekai_Airport", + "keywords": "Nop Goliath" + }, + { + "id": "32704", + "ident": "DFCA", + "type": "small_airport", + "name": "Kaya Airport", + "latitude_deg": "13.067000389099121", + "longitude_deg": "-1.100000023841858", + "elevation_ft": "984", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-SMT", + "municipality": "Kaya", + "scheduled_service": "no", + "gps_code": "DFCA", + "iata_code": "XKY" + }, + { + "id": "30887", + "ident": "DFCB", + "type": "small_airport", + "name": "Barsalogho Airport", + "latitude_deg": "13.399999618530273", + "longitude_deg": "-1.0670000314712524", + "elevation_ft": "1083", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-SMT", + "municipality": "Barsalogho", + "scheduled_service": "no", + "gps_code": "DFCB" + }, + { + "id": "32132", + "ident": "DFCC", + "type": "small_airport", + "name": "Ouahigouya Airport", + "latitude_deg": "13.567000389099121", + "longitude_deg": "-2.4170000553131104", + "elevation_ft": "1106", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-YAT", + "municipality": "Ouahigouya", + "scheduled_service": "no", + "gps_code": "DFCC", + "iata_code": "OUG" + }, + { + "id": "30888", + "ident": "DFCD", + "type": "small_airport", + "name": "Didyr Airport", + "latitude_deg": "12.550000190734863", + "longitude_deg": "-2.617000102996826", + "elevation_ft": "958", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-SNG", + "municipality": "Didyr", + "scheduled_service": "no", + "gps_code": "DFCD" + }, + { + "id": "30889", + "ident": "DFCE", + "type": "small_airport", + "name": "Batie Airport", + "latitude_deg": "9.883000373840332", + "longitude_deg": "-2.9170000553131104", + "elevation_ft": "984", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-NOU", + "municipality": "Batie", + "scheduled_service": "no", + "gps_code": "DFCE" + }, + { + "id": "30890", + "ident": "DFCG", + "type": "small_airport", + "name": "Kongoussi Airport", + "latitude_deg": "13.317000389099121", + "longitude_deg": "-1.5329999923706055", + "elevation_ft": "1056", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-BAM", + "municipality": "Kongoussi", + "scheduled_service": "no", + "gps_code": "DFCG" + }, + { + "id": "30891", + "ident": "DFCI", + "type": "small_airport", + "name": "Titao Airport", + "latitude_deg": "13.767000198364258", + "longitude_deg": "-2.0829999446868896", + "elevation_ft": "1047", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-LOR", + "municipality": "Titao", + "scheduled_service": "no", + "gps_code": "DFCI" + }, + { + "id": "32696", + "ident": "DFCJ", + "type": "small_airport", + "name": "Djibo Airport", + "latitude_deg": "14.100000381469727", + "longitude_deg": "-1.6330000162124634", + "elevation_ft": "1001", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-SOM", + "municipality": "Djibo", + "scheduled_service": "no", + "gps_code": "DFCJ", + "iata_code": "XDJ" + }, + { + "id": "30892", + "ident": "DFCK", + "type": "small_airport", + "name": "Koudougou Airport", + "latitude_deg": "12.267000198364258", + "longitude_deg": "-2.4000000953674316", + "elevation_ft": "1001", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-BLK", + "municipality": "Koudougou", + "scheduled_service": "no", + "gps_code": "DFCK" + }, + { + "id": "32705", + "ident": "DFCL", + "type": "small_airport", + "name": "Leo Airport", + "latitude_deg": "11.100000381469727", + "longitude_deg": "-2.0999999046325684", + "elevation_ft": "1181", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-SIS", + "municipality": "Leo", + "scheduled_service": "no", + "gps_code": "DFCL", + "iata_code": "XLU" + }, + { + "id": "30893", + "ident": "DFCM", + "type": "small_airport", + "name": "Manga Airport", + "latitude_deg": "11.665351", + "longitude_deg": "-1.042542", + "elevation_ft": "820", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-ZOU", + "municipality": "Manga", + "scheduled_service": "no", + "gps_code": "DFCM" + }, + { + "id": "32179", + "ident": "DFCP", + "type": "small_airport", + "name": "Po Airport", + "latitude_deg": "11.149999618530273", + "longitude_deg": "-1.149999976158142", + "elevation_ft": "1050", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-NAO", + "municipality": "Po", + "scheduled_service": "no", + "gps_code": "DFCP", + "iata_code": "PUP" + }, + { + "id": "30894", + "ident": "DFCR", + "type": "small_airport", + "name": "Poura Airport", + "latitude_deg": "11.616999626159668", + "longitude_deg": "-2.75", + "elevation_ft": "853", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-BAL", + "municipality": "Poura", + "scheduled_service": "no", + "gps_code": "DFCR" + }, + { + "id": "30895", + "ident": "DFCS", + "type": "small_airport", + "name": "Seguenega Airport", + "latitude_deg": "13.440602", + "longitude_deg": "-1.994359", + "elevation_ft": "1139", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-YAT", + "municipality": "Seguenega", + "scheduled_service": "no", + "gps_code": "DFCS" + }, + { + "id": "30896", + "ident": "DFCT", + "type": "small_airport", + "name": "Tenado Airport", + "latitude_deg": "12.199999809265137", + "longitude_deg": "-2.5829999446868896", + "elevation_ft": "951", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-SNG", + "municipality": "Tenado", + "scheduled_service": "no", + "gps_code": "DFCT" + }, + { + "id": "30897", + "ident": "DFCU", + "type": "small_airport", + "name": "Gourcy Airport", + "latitude_deg": "13.199999809265137", + "longitude_deg": "-2.367000102996826", + "elevation_ft": "1050", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-ZON", + "municipality": "Gourcy", + "scheduled_service": "no", + "gps_code": "DFCU" + }, + { + "id": "30898", + "ident": "DFCY", + "type": "small_airport", + "name": "Yako Airport", + "latitude_deg": "12.949999809265137", + "longitude_deg": "-2.2829999923706055", + "elevation_ft": "984", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-PAS", + "municipality": "Yako", + "scheduled_service": "no", + "gps_code": "DFCY" + }, + { + "id": "32694", + "ident": "DFEA", + "type": "small_airport", + "name": "Boulsa Airport", + "latitude_deg": "12.649999618530273", + "longitude_deg": "-0.5669999718666077", + "elevation_ft": "984", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-NAM", + "municipality": "Boulsa", + "scheduled_service": "no", + "gps_code": "DFEA", + "iata_code": "XBO" + }, + { + "id": "32693", + "ident": "DFEB", + "type": "small_airport", + "name": "Bogande Airport", + "latitude_deg": "12.982999801635742", + "longitude_deg": "-0.16699999570846558", + "elevation_ft": "984", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-GNA", + "municipality": "Bogande", + "scheduled_service": "no", + "gps_code": "DFEB", + "iata_code": "XBG" + }, + { + "id": "30899", + "ident": "DFEC", + "type": "small_airport", + "name": "Komin-Yanga Airport", + "latitude_deg": "11.699999809265137", + "longitude_deg": "0.15000000596046448", + "elevation_ft": "1116", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-KOP", + "municipality": "Komin-Yanga", + "scheduled_service": "no", + "gps_code": "DFEC" + }, + { + "id": "30919", + "ident": "DFED", + "type": "small_airport", + "name": "Diapaga Airport", + "latitude_deg": "12.060324", + "longitude_deg": "1.784631", + "elevation_ft": "951", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-TAP", + "municipality": "Diapaga", + "scheduled_service": "no", + "gps_code": "DFED", + "iata_code": "DIP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Diapaga_Airport" + }, + { + "id": "30937", + "ident": "DFEE", + "type": "small_airport", + "name": "Dori Airport", + "latitude_deg": "14.032999992370605", + "longitude_deg": "-0.032999999821186066", + "elevation_ft": "919", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-SEN", + "municipality": "Dori", + "scheduled_service": "no", + "gps_code": "DFEE", + "iata_code": "DOR" + }, + { + "id": "31193", + "ident": "DFEF", + "type": "small_airport", + "name": "Fada N'gourma Airport", + "latitude_deg": "12.032999992370605", + "longitude_deg": "0.3499999940395355", + "elevation_ft": "1011", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-GOU", + "municipality": "Fada N'gourma", + "scheduled_service": "no", + "gps_code": "DFEF", + "iata_code": "FNG" + }, + { + "id": "32699", + "ident": "DFEG", + "type": "small_airport", + "name": "Gorom-Gorom Airport", + "latitude_deg": "14.449999809265137", + "longitude_deg": "-0.2329999953508377", + "elevation_ft": "935", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-OUD", + "municipality": "Gorom-Gorom", + "scheduled_service": "no", + "gps_code": "DFEG", + "iata_code": "XGG" + }, + { + "id": "30900", + "ident": "DFEK", + "type": "small_airport", + "name": "Koupela Airport", + "latitude_deg": "12.166999816894531", + "longitude_deg": "-0.30000001192092896", + "elevation_ft": "902", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-KOT", + "municipality": "Koupela", + "scheduled_service": "no", + "gps_code": "DFEK" + }, + { + "id": "32702", + "ident": "DFEL", + "type": "small_airport", + "name": "Kantchari Airport", + "latitude_deg": "12.464046", + "longitude_deg": "1.492939", + "elevation_ft": "879", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-TAP", + "municipality": "Kantchari", + "scheduled_service": "no", + "gps_code": "DFEL", + "iata_code": "XKA" + }, + { + "id": "32465", + "ident": "DFEM", + "type": "small_airport", + "name": "Tambao Airport", + "latitude_deg": "14.790874", + "longitude_deg": "0.039492", + "elevation_ft": "820", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-OUD", + "municipality": "Tambao", + "scheduled_service": "no", + "gps_code": "DFEM", + "iata_code": "TMQ" + }, + { + "id": "30901", + "ident": "DFEO", + "type": "small_airport", + "name": "Zorgo Airport", + "latitude_deg": "12.249065", + "longitude_deg": "-0.620512", + "elevation_ft": "978", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-GAN", + "municipality": "Zorgo", + "scheduled_service": "no", + "gps_code": "DFEO" + }, + { + "id": "32711", + "ident": "DFEP", + "type": "small_airport", + "name": "Pama Airport", + "latitude_deg": "11.25", + "longitude_deg": "0.699999988079071", + "elevation_ft": "699", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-KMP", + "municipality": "Pama", + "scheduled_service": "no", + "gps_code": "DFEP", + "iata_code": "XPA" + }, + { + "id": "30651", + "ident": "DFER", + "type": "small_airport", + "name": "Arly Airport", + "latitude_deg": "11.597000122070312", + "longitude_deg": "1.4830000400543213", + "elevation_ft": "761", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-TAP", + "municipality": "Arly", + "scheduled_service": "no", + "gps_code": "DFER", + "iata_code": "ARL" + }, + { + "id": "32712", + "ident": "DFES", + "type": "small_airport", + "name": "Sebba Airport", + "latitude_deg": "13.449999809265137", + "longitude_deg": "0.5170000195503235", + "elevation_ft": "886", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-SEN", + "municipality": "Sebba", + "scheduled_service": "no", + "gps_code": "DFES", + "iata_code": "XSE" + }, + { + "id": "32432", + "ident": "DFET", + "type": "small_airport", + "name": "Tenkodogo Airport", + "latitude_deg": "11.801149", + "longitude_deg": "-0.371377", + "elevation_ft": "1017", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-BLG", + "municipality": "Tenkodogo", + "scheduled_service": "no", + "gps_code": "DFET", + "iata_code": "TEG" + }, + { + "id": "30902", + "ident": "DFEY", + "type": "small_airport", + "name": "Ouargaye Airport", + "latitude_deg": "11.517000198364258", + "longitude_deg": "0.05000000074505806", + "elevation_ft": "951", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-KOP", + "municipality": "Ouargaye", + "scheduled_service": "no", + "gps_code": "DFEY" + }, + { + "id": "32715", + "ident": "DFEZ", + "type": "small_airport", + "name": "Zabré Airport", + "latitude_deg": "11.166999816894531", + "longitude_deg": "-0.6169999837875366", + "elevation_ft": "886", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-BLG", + "municipality": "Zabré", + "scheduled_service": "no", + "gps_code": "DFEZ", + "iata_code": "XZA" + }, + { + "id": "2088", + "ident": "DFFD", + "type": "medium_airport", + "name": "Ouagadougou Airport", + "latitude_deg": "12.3532", + "longitude_deg": "-1.51242", + "elevation_ft": "1037", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-KAD", + "municipality": "Ouagadougou", + "scheduled_service": "yes", + "gps_code": "DFFD", + "iata_code": "OUA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ouagadougou_Airport" + }, + { + "id": "30903", + "ident": "DFOA", + "type": "small_airport", + "name": "Dano Airport", + "latitude_deg": "11.133000373840332", + "longitude_deg": "-3.066999912261963", + "elevation_ft": "935", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-IOB", + "municipality": "Dano", + "scheduled_service": "no", + "gps_code": "DFOA" + }, + { + "id": "30782", + "ident": "DFOB", + "type": "small_airport", + "name": "Banfora Airport", + "latitude_deg": "10.688861", + "longitude_deg": "-4.727726", + "elevation_ft": "984", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-COM", + "municipality": "Banfora", + "scheduled_service": "no", + "gps_code": "DFOB", + "iata_code": "BNR" + }, + { + "id": "30912", + "ident": "DFOD", + "type": "small_airport", + "name": "Dedougou Airport", + "latitude_deg": "12.458999633789062", + "longitude_deg": "-3.490000009536743", + "elevation_ft": "984", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-MOU", + "municipality": "Dedougou", + "scheduled_service": "no", + "gps_code": "DFOD", + "iata_code": "DGU" + }, + { + "id": "30904", + "ident": "DFOF", + "type": "small_airport", + "name": "Safane Airport", + "latitude_deg": "12.149999618530273", + "longitude_deg": "-3.183000087738037", + "elevation_ft": "1017", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-MOU", + "municipality": "Safane", + "scheduled_service": "no", + "gps_code": "DFOF" + }, + { + "id": "32698", + "ident": "DFOG", + "type": "small_airport", + "name": "Gaoua Airport", + "latitude_deg": "10.384059", + "longitude_deg": "-3.163454", + "elevation_ft": "1099", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-PON", + "municipality": "Gaoua", + "scheduled_service": "no", + "gps_code": "DFOG", + "iata_code": "XGA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gaoua_Airport" + }, + { + "id": "30905", + "ident": "DFOH", + "type": "small_airport", + "name": "Houndé Airport", + "latitude_deg": "11.491211", + "longitude_deg": "-3.512817", + "elevation_ft": "1063", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-TUI", + "municipality": "Houndé", + "scheduled_service": "no", + "gps_code": "DFOH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hound%C3%A9_Airport" + }, + { + "id": "30906", + "ident": "DFOL", + "type": "closed", + "name": "Loumana Airport", + "latitude_deg": "10.567", + "longitude_deg": "-5.35", + "elevation_ft": "1148", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-COM", + "municipality": "Loumana", + "scheduled_service": "no", + "gps_code": "DFOL" + }, + { + "id": "32710", + "ident": "DFON", + "type": "small_airport", + "name": "Nouna Airport", + "latitude_deg": "12.75", + "longitude_deg": "-3.867000103", + "elevation_ft": "886", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-KOS", + "municipality": "Nouna", + "scheduled_service": "no", + "gps_code": "DFON", + "iata_code": "XNU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nouna_Airport" + }, + { + "id": "2089", + "ident": "DFOO", + "type": "medium_airport", + "name": "Bobo Dioulasso Airport", + "latitude_deg": "11.160099983215332", + "longitude_deg": "-4.33096981048584", + "elevation_ft": "1511", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-HOU", + "municipality": "Bobo Dioulasso", + "scheduled_service": "yes", + "gps_code": "DFOO", + "iata_code": "BOY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bobo_Dioulasso_Airport" + }, + { + "id": "30907", + "ident": "DFOR", + "type": "small_airport", + "name": "Orodara Airport", + "latitude_deg": "10.986103", + "longitude_deg": "-4.924793", + "elevation_ft": "1706", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-KEN", + "municipality": "Orodara", + "scheduled_service": "no", + "gps_code": "DFOR" + }, + { + "id": "30908", + "ident": "DFOS", + "type": "small_airport", + "name": "Sideradougou Airport", + "latitude_deg": "10.666999816894531", + "longitude_deg": "-4.267000198364258", + "elevation_ft": "1047", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-COM", + "municipality": "Sideradougou", + "scheduled_service": "no", + "gps_code": "DFOS" + }, + { + "id": "32482", + "ident": "DFOT", + "type": "small_airport", + "name": "Tougan Airport", + "latitude_deg": "13.067000389099121", + "longitude_deg": "-3.066999912261963", + "elevation_ft": "984", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-SOR", + "municipality": "Tougan", + "scheduled_service": "no", + "gps_code": "DFOT", + "iata_code": "TUQ" + }, + { + "id": "32695", + "ident": "DFOU", + "type": "small_airport", + "name": "Diebougou Airport", + "latitude_deg": "10.949999809265137", + "longitude_deg": "-3.25", + "elevation_ft": "984", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-BGR", + "municipality": "Diebougou", + "scheduled_service": "no", + "gps_code": "DFOU", + "iata_code": "XDE" + }, + { + "id": "32691", + "ident": "DFOY", + "type": "small_airport", + "name": "Aribinda Airport", + "latitude_deg": "14.217000007600001", + "longitude_deg": "-0.883000016212", + "elevation_ft": "1122", + "continent": "AF", + "iso_country": "BF", + "iso_region": "BF-SOM", + "municipality": "Aribinda", + "scheduled_service": "no", + "gps_code": "DFOY", + "iata_code": "XAR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aribinda_Airport" + }, + { + "id": "2090", + "ident": "DGAA", + "type": "large_airport", + "name": "Kotoka International Airport", + "latitude_deg": "5.605189800262451", + "longitude_deg": "-0.16678600013256073", + "elevation_ft": "205", + "continent": "AF", + "iso_country": "GH", + "iso_region": "GH-AA", + "municipality": "Accra", + "scheduled_service": "yes", + "gps_code": "DGAA", + "iata_code": "ACC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kotoka_International_Airport" + }, + { + "id": "354173", + "ident": "DGAH", + "type": "medium_airport", + "name": "Ho Airport", + "latitude_deg": "6.579691", + "longitude_deg": "0.532547", + "elevation_ft": "356", + "continent": "AF", + "iso_country": "GH", + "iso_region": "GH-TV", + "municipality": "Ho", + "scheduled_service": "yes", + "gps_code": "DGAH", + "local_code": "HZ09", + "home_link": "https://www.gacl.com.gh/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ho_Airport" + }, + { + "id": "302109", + "ident": "DGG", + "type": "closed", + "name": "Fishermans Airfield", + "latitude_deg": "-9.5128", + "longitude_deg": "147.0505", + "elevation_ft": "24", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Daugo Island", + "scheduled_service": "no", + "iata_code": "DGG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fishermans_Airfield" + }, + { + "id": "2091", + "ident": "DGLE", + "type": "medium_airport", + "name": "Tamale Airport", + "latitude_deg": "9.55718994140625", + "longitude_deg": "-0.8632140159606934", + "elevation_ft": "553", + "continent": "AF", + "iso_country": "GH", + "iso_region": "GH-NP", + "municipality": "Tamale", + "scheduled_service": "yes", + "gps_code": "DGLE", + "iata_code": "TML", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tamale_Airport" + }, + { + "id": "30910", + "ident": "DGLN", + "type": "small_airport", + "name": "Navrongo Airport", + "latitude_deg": "10.899999618530273", + "longitude_deg": "-1.100000023841858", + "elevation_ft": "2221", + "continent": "AF", + "iso_country": "GH", + "iso_region": "GH-UE", + "municipality": "Navrongo", + "scheduled_service": "no", + "gps_code": "DGLN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Navrongo_Airport" + }, + { + "id": "2092", + "ident": "DGLW", + "type": "small_airport", + "name": "Wa Airport", + "latitude_deg": "10.0826997756958", + "longitude_deg": "-2.507689952850342", + "elevation_ft": "1060", + "continent": "AF", + "iso_country": "GH", + "iso_region": "GH-UW", + "municipality": "Wa", + "scheduled_service": "no", + "gps_code": "DGLW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wa_Airport" + }, + { + "id": "30911", + "ident": "DGLY", + "type": "small_airport", + "name": "Yendi Airport", + "latitude_deg": "9.425000190734863", + "longitude_deg": "-0.004722000099718571", + "elevation_ft": "2408", + "continent": "AF", + "iso_country": "GH", + "iso_region": "GH-NP", + "municipality": "Yendi", + "scheduled_service": "no", + "gps_code": "DGLY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yendi_Airport" + }, + { + "id": "317274", + "ident": "DGM", + "type": "seaplane_base", + "name": "Dandugama Seaplane Base", + "latitude_deg": "7.1079", + "longitude_deg": "79.8721", + "elevation_ft": "0", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-1", + "municipality": "Colombo", + "scheduled_service": "no", + "iata_code": "DGM" + }, + { + "id": "2093", + "ident": "DGSI", + "type": "medium_airport", + "name": "Kumasi Airport", + "latitude_deg": "6.714560031890869", + "longitude_deg": "-1.5908199548721313", + "elevation_ft": "942", + "continent": "AF", + "iso_country": "GH", + "iso_region": "GH-AH", + "municipality": "Kumasi", + "scheduled_service": "yes", + "gps_code": "DGSI", + "iata_code": "KMS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kumasi_Airport" + }, + { + "id": "2094", + "ident": "DGSN", + "type": "medium_airport", + "name": "Sunyani Airport", + "latitude_deg": "7.36183", + "longitude_deg": "-2.32876", + "elevation_ft": "1014", + "continent": "AF", + "iso_country": "GH", + "iso_region": "GH-BO", + "municipality": "Sunyani", + "scheduled_service": "yes", + "gps_code": "DGSN", + "iata_code": "NYI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sunyani_Airport" + }, + { + "id": "2095", + "ident": "DGTK", + "type": "medium_airport", + "name": "Takoradi Airport", + "latitude_deg": "4.896059989929199", + "longitude_deg": "-1.7747600078582764", + "elevation_ft": "21", + "continent": "AF", + "iso_country": "GH", + "iso_region": "GH-WP", + "municipality": "Sekondi-Takoradi", + "scheduled_service": "yes", + "gps_code": "DGTK", + "iata_code": "TKD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Takoradi_Airport" + }, + { + "id": "300321", + "ident": "DHB", + "type": "seaplane_base", + "name": "Deer Harbor SPB", + "latitude_deg": "48.6166666667", + "longitude_deg": "-123.002777778", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Deer Harbor", + "scheduled_service": "no", + "iata_code": "DHB" + }, + { + "id": "330380", + "ident": "DHG", + "type": "small_airport", + "name": "Dalnegorsk Airport", + "latitude_deg": "44.558748", + "longitude_deg": "135.490005", + "elevation_ft": "833", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Dalnegorsk", + "scheduled_service": "no", + "iata_code": "DHG" + }, + { + "id": "340202", + "ident": "DHL", + "type": "small_airport", + "name": "Ad-Dali Airport", + "latitude_deg": "13.73846", + "longitude_deg": "44.72719", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-DA", + "municipality": "Ad-Dali", + "scheduled_service": "no", + "iata_code": "DHL", + "local_code": "DHL" + }, + { + "id": "323785", + "ident": "DIAO", + "type": "small_airport", + "name": "Aboisso Airport", + "latitude_deg": "5.461944", + "longitude_deg": "-3.234722", + "elevation_ft": "95", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-CM", + "municipality": "Aboisso", + "scheduled_service": "no", + "gps_code": "DIAO", + "iata_code": "ABO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aboisso_Airport" + }, + { + "id": "2096", + "ident": "DIAP", + "type": "medium_airport", + "name": "Félix-Houphouët-Boigny International Airport", + "latitude_deg": "5.26139", + "longitude_deg": "-3.92629", + "elevation_ft": "21", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-AB", + "municipality": "Abidjan", + "scheduled_service": "yes", + "gps_code": "DIAP", + "iata_code": "ABJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/F%C3%A9lix-Houphou%C3%ABt-Boigny_International_Airport", + "keywords": "Port Bouët" + }, + { + "id": "32098", + "ident": "DIAU", + "type": "small_airport", + "name": "Abengourou Airport", + "latitude_deg": "6.715559959411621", + "longitude_deg": "-3.4702799320220947", + "elevation_ft": "676", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-CM", + "municipality": "Abengourou", + "scheduled_service": "no", + "gps_code": "DIAU", + "iata_code": "OGO" + }, + { + "id": "30914", + "ident": "DIBC", + "type": "small_airport", + "name": "Bocanda Airport", + "latitude_deg": "7.0329999923706055", + "longitude_deg": "-4.5329999923706055", + "elevation_ft": "427", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-LC", + "municipality": "Bocanda", + "scheduled_service": "no", + "gps_code": "DIBC" + }, + { + "id": "30805", + "ident": "DIBI", + "type": "small_airport", + "name": "Boundiali Airport", + "latitude_deg": "9.540571", + "longitude_deg": "-6.469831", + "elevation_ft": "1286", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-SV", + "municipality": "Boundiali", + "scheduled_service": "no", + "gps_code": "DIBI", + "iata_code": "BXI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boundiali_Airport" + }, + { + "id": "2097", + "ident": "DIBK", + "type": "medium_airport", + "name": "Bouaké Airport", + "latitude_deg": "7.7388", + "longitude_deg": "-5.07367", + "elevation_ft": "1230", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-VB", + "municipality": "Bouaké", + "scheduled_service": "yes", + "gps_code": "DIBK", + "iata_code": "BYK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bouak%C3%A9_Airport" + }, + { + "id": "30790", + "ident": "DIBN", + "type": "small_airport", + "name": "Bouna Airport", + "latitude_deg": "9.27750015258789", + "longitude_deg": "-3.025279998779297", + "elevation_ft": "1148", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-ZZ", + "municipality": "Bouna", + "scheduled_service": "no", + "gps_code": "DIBN", + "iata_code": "BQO" + }, + { + "id": "30692", + "ident": "DIBU", + "type": "small_airport", + "name": "Soko Airport", + "latitude_deg": "8.017219543457031", + "longitude_deg": "-2.7619400024414062", + "elevation_ft": "1247", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-ZZ", + "municipality": "Bondoukou", + "scheduled_service": "no", + "gps_code": "DIBU", + "iata_code": "BDK" + }, + { + "id": "30915", + "ident": "DIDB", + "type": "small_airport", + "name": "Dabou Airport", + "latitude_deg": "5.351385116577148", + "longitude_deg": "-4.4034576416015625", + "elevation_ft": "141", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-LG", + "municipality": "Dabou", + "scheduled_service": "no", + "gps_code": "DIDB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dabou_Airport" + }, + { + "id": "30918", + "ident": "DIDK", + "type": "small_airport", + "name": "Dimbokro Airport", + "latitude_deg": "6.651669979095459", + "longitude_deg": "-4.640560150146484", + "elevation_ft": "344", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-LC", + "municipality": "Dimbokro", + "scheduled_service": "no", + "gps_code": "DIDK", + "iata_code": "DIM" + }, + { + "id": "2098", + "ident": "DIDL", + "type": "medium_airport", + "name": "Daloa Airport", + "latitude_deg": "6.792809963226318", + "longitude_deg": "-6.473189830780029", + "elevation_ft": "823", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-SM", + "scheduled_service": "no", + "gps_code": "DIDL", + "iata_code": "DJO" + }, + { + "id": "31125", + "ident": "DIFK", + "type": "closed", + "name": "Ferkessédougou Airport", + "latitude_deg": "9.592774", + "longitude_deg": "-5.23344", + "elevation_ft": "1102", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-SV", + "municipality": "Ferkessédougou", + "scheduled_service": "no", + "gps_code": "DIFK", + "iata_code": "FEK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ferkess%C3%A9dougou_Airport" + }, + { + "id": "31527", + "ident": "DIGA", + "type": "small_airport", + "name": "Gagnoa Airport", + "latitude_deg": "6.102855", + "longitude_deg": "-5.986809", + "elevation_ft": "732", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-SM", + "municipality": "Gagnoa", + "scheduled_service": "no", + "gps_code": "DIGA", + "iata_code": "GGN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gagnoa_Airport" + }, + { + "id": "31528", + "ident": "DIGL", + "type": "small_airport", + "name": "Guiglo Airport", + "latitude_deg": "6.534711", + "longitude_deg": "-7.526847", + "elevation_ft": "722", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-MG", + "municipality": "Guiglo", + "scheduled_service": "no", + "gps_code": "DIGL", + "iata_code": "GGO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guiglo_Airport" + }, + { + "id": "30917", + "ident": "DIGN", + "type": "small_airport", + "name": "Nero-Mer Airport", + "latitude_deg": "4.64341306686", + "longitude_deg": "-6.923961639400001", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-BS", + "municipality": "Grand-Béréby", + "scheduled_service": "no", + "gps_code": "DIGN", + "iata_code": "BBV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nero-Mer_Airport" + }, + { + "id": "2099", + "ident": "DIKO", + "type": "medium_airport", + "name": "Korhogo Airport", + "latitude_deg": "9.38718", + "longitude_deg": "-5.55666", + "elevation_ft": "1214", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-SV", + "municipality": "Korhogo", + "scheduled_service": "no", + "gps_code": "DIKO", + "iata_code": "HGO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Korhogo_Airport" + }, + { + "id": "2100", + "ident": "DIMN", + "type": "medium_airport", + "name": "Man Airport", + "latitude_deg": "7.272069931030273", + "longitude_deg": "-7.58735990524292", + "elevation_ft": "1089", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-MG", + "scheduled_service": "no", + "gps_code": "DIMN", + "iata_code": "MJC" + }, + { + "id": "31742", + "ident": "DIOD", + "type": "small_airport", + "name": "Odienne Airport", + "latitude_deg": "9.539457", + "longitude_deg": "-7.56134", + "elevation_ft": "1365", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-DN", + "municipality": "Odienne", + "scheduled_service": "no", + "gps_code": "DIOD", + "iata_code": "KEO" + }, + { + "id": "32095", + "ident": "DIOF", + "type": "small_airport", + "name": "Ouango Fitini Airport", + "latitude_deg": "9.600000381469727", + "longitude_deg": "-4.050000190734863", + "elevation_ft": "974", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-ZZ", + "municipality": "Ouango Fitini", + "scheduled_service": "no", + "gps_code": "DIOF", + "iata_code": "OFI" + }, + { + "id": "32280", + "ident": "DISG", + "type": "small_airport", + "name": "Séguéla Airport", + "latitude_deg": "7.96", + "longitude_deg": "-6.644167", + "elevation_ft": "1056", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-WR", + "municipality": "Séguéla", + "scheduled_service": "no", + "gps_code": "DISG", + "iata_code": "SEO", + "wikipedia_link": "https://en.wikipedia.org/wiki/S%C3%A9gu%C3%A9la_Airport" + }, + { + "id": "2101", + "ident": "DISP", + "type": "medium_airport", + "name": "San Pedro Airport", + "latitude_deg": "4.746719837188721", + "longitude_deg": "-6.660820007324219", + "elevation_ft": "26", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-BS", + "scheduled_service": "no", + "gps_code": "DISP", + "iata_code": "SPY" + }, + { + "id": "32750", + "ident": "DISS", + "type": "small_airport", + "name": "Sassandra Airport", + "latitude_deg": "4.928888", + "longitude_deg": "-6.133156", + "elevation_ft": "203", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-BS", + "municipality": "Sassandra", + "scheduled_service": "no", + "gps_code": "DISS", + "iata_code": "ZSS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sassandra_Airport" + }, + { + "id": "28483", + "ident": "DITB", + "type": "small_airport", + "name": "Tabou Airport", + "latitude_deg": "4.437809467315674", + "longitude_deg": "-7.362728118896484", + "elevation_ft": "39", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-BS", + "municipality": "Tabou", + "scheduled_service": "no", + "gps_code": "DITB", + "iata_code": "TXU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tabou_Airport" + }, + { + "id": "316459", + "ident": "DITN", + "type": "small_airport", + "name": "Mahana Airport", + "latitude_deg": "8.2934", + "longitude_deg": "-7.674", + "elevation_ft": "1583", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-WR", + "municipality": "Touba", + "scheduled_service": "no", + "gps_code": "DITM", + "iata_code": "TOZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mahana_Airport" + }, + { + "id": "317279", + "ident": "DIW", + "type": "seaplane_base", + "name": "Mawella Lagoon Seaplane Base", + "latitude_deg": "5.990192", + "longitude_deg": "80.733129", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-3", + "municipality": "Dickwella", + "scheduled_service": "no", + "iata_code": "DIW" + }, + { + "id": "2102", + "ident": "DIYO", + "type": "medium_airport", + "name": "Yamoussoukro Airport", + "latitude_deg": "6.9031701088", + "longitude_deg": "-5.36558008194", + "elevation_ft": "699", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-YM", + "municipality": "Yamoussoukro", + "scheduled_service": "no", + "gps_code": "DIYO", + "iata_code": "ASK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yamoussoukro_Airport" + }, + { + "id": "340219", + "ident": "DJ-0001", + "type": "small_airport", + "name": "Holhol Airport", + "latitude_deg": "11.30608", + "longitude_deg": "42.91968", + "continent": "AF", + "iso_country": "DJ", + "iso_region": "DJ-AS", + "municipality": "Holhol", + "scheduled_service": "no" + }, + { + "id": "343523", + "ident": "DJ-0002", + "type": "closed", + "name": "Djibouti Hassan Gouled International Airport", + "latitude_deg": "11.54796", + "longitude_deg": "43.12446", + "elevation_ft": "108", + "continent": "AF", + "iso_country": "DJ", + "iso_region": "DJ-DJ", + "municipality": "Balbala", + "scheduled_service": "no" + }, + { + "id": "350004", + "ident": "DJ-0003", + "type": "heliport", + "name": "Chinese People's Liberation Army Support Base in Djibouti", + "latitude_deg": "11.590843", + "longitude_deg": "43.063415", + "elevation_ft": "39", + "continent": "AF", + "iso_country": "DJ", + "iso_region": "DJ-DJ", + "municipality": "Doraleh", + "scheduled_service": "no", + "wikipedia_link": "https://en.m.wikipedia.org/wiki/Chinese_People%27s_Liberation_Army_Support_Base_in_Djibouti" + }, + { + "id": "351965", + "ident": "DJ-0004", + "type": "heliport", + "name": "Djibouti Presidential Heliport", + "latitude_deg": "11.59668", + "longitude_deg": "43.14119", + "elevation_ft": "1", + "continent": "AF", + "iso_country": "DJ", + "iso_region": "DJ-DJ", + "municipality": "Djibouti", + "scheduled_service": "no" + }, + { + "id": "351966", + "ident": "DJ-0005", + "type": "heliport", + "name": "Djibouti Sudanese Military Hospital Heliport", + "latitude_deg": "11.57195", + "longitude_deg": "43.13258", + "elevation_ft": "13", + "continent": "AF", + "iso_country": "DJ", + "iso_region": "DJ-DJ", + "municipality": "Djibouti", + "scheduled_service": "no" + }, + { + "id": "354491", + "ident": "DJ-0006", + "type": "heliport", + "name": "Helipad", + "latitude_deg": "11.589279", + "longitude_deg": "43.059347", + "continent": "AF", + "iso_country": "DJ", + "iso_region": "DJ-DJ", + "municipality": "Doraleh", + "scheduled_service": "no" + }, + { + "id": "354492", + "ident": "DJ-0007", + "type": "heliport", + "name": "Military Helipads (5x)", + "latitude_deg": "11.54554", + "longitude_deg": "43.15745", + "continent": "AF", + "iso_country": "DJ", + "iso_region": "DJ-DJ", + "municipality": "Djibouti City", + "scheduled_service": "no" + }, + { + "id": "354493", + "ident": "DJ-0008", + "type": "heliport", + "name": "Military Helipad", + "latitude_deg": "11.554781", + "longitude_deg": "43.156668", + "continent": "AF", + "iso_country": "DJ", + "iso_region": "DJ-DJ", + "municipality": "Djibouti City", + "scheduled_service": "no" + }, + { + "id": "298484", + "ident": "DK-0001", + "type": "closed", + "name": "Femø Airfield", + "latitude_deg": "54.984115", + "longitude_deg": "11.537662", + "elevation_ft": "2", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-85", + "municipality": "Femø", + "scheduled_service": "no", + "gps_code": "EKFM", + "home_link": "http://www.femoekro.dk/", + "keywords": "EK62" + }, + { + "id": "316412", + "ident": "DK-0002", + "type": "small_airport", + "name": "Orø Flyveplads", + "latitude_deg": "55.7875202", + "longitude_deg": "11.8430635", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-84", + "scheduled_service": "no" + }, + { + "id": "316824", + "ident": "DK-0003", + "type": "small_airport", + "name": "Tølløse Flying Club Glider Field", + "latitude_deg": "55.581644", + "longitude_deg": "11.759105", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-85", + "municipality": "Tølløse", + "scheduled_service": "no", + "gps_code": "EKTO", + "home_link": "http://www.cumulus.dk/", + "keywords": "Sjaellands Svaeveflyvecentrum" + }, + { + "id": "317475", + "ident": "DK-0004", + "type": "small_airport", + "name": "Brædstrup", + "latitude_deg": "55.943611", + "longitude_deg": "9.653333", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Brædstrup", + "scheduled_service": "no", + "gps_code": "EKBR", + "home_link": "http://www.ekbr.dk/" + }, + { + "id": "318903", + "ident": "DK-0005", + "type": "small_airport", + "name": "Bogense Flyveplads", + "latitude_deg": "55.543022", + "longitude_deg": "10.032566", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Bogense", + "scheduled_service": "no" + }, + { + "id": "319090", + "ident": "DK-0006", + "type": "small_airport", + "name": "Rødekro Flyveplads", + "latitude_deg": "55.0786111", + "longitude_deg": "9.3013889", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Rødekro", + "scheduled_service": "no" + }, + { + "id": "319112", + "ident": "DK-0007", + "type": "small_airport", + "name": "Ejstruphede Glider Field", + "latitude_deg": "56.020679", + "longitude_deg": "8.692492", + "elevation_ft": "100", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Ejstruphede", + "scheduled_service": "no", + "home_link": "http://svaeveflyvning.dk/side1" + }, + { + "id": "319127", + "ident": "DK-0008", + "type": "small_airport", + "name": "Holstebro Glider Field", + "latitude_deg": "56.306223", + "longitude_deg": "8.586466", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Holstebro", + "scheduled_service": "no", + "home_link": "http://www.flyvecenter.dk/" + }, + { + "id": "319129", + "ident": "DK-0009", + "type": "small_airport", + "name": "Bolhede Glider Field", + "latitude_deg": "55.631971", + "longitude_deg": "8.755736", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Bolhede", + "scheduled_service": "no", + "gps_code": "EKBH", + "home_link": "http://bolhede.dk/" + }, + { + "id": "319130", + "ident": "DK-0010", + "type": "small_airport", + "name": "True Gliderfield", + "latitude_deg": "56.178925", + "longitude_deg": "10.076621", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Aarhus", + "scheduled_service": "no", + "gps_code": "EKAS", + "home_link": "http://www.aasvk.dk/", + "keywords": "Aarhus" + }, + { + "id": "319165", + "ident": "DK-0011", + "type": "heliport", + "name": "Rigshospitalet Helipad", + "latitude_deg": "55.696662", + "longitude_deg": "12.566769", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-84", + "municipality": "Copenhagen", + "scheduled_service": "no" + }, + { + "id": "319199", + "ident": "DK-0012", + "type": "heliport", + "name": "Aarhus University Hospital Helipad", + "latitude_deg": "56.192716", + "longitude_deg": "10.167679", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Åarhus", + "scheduled_service": "no" + }, + { + "id": "320855", + "ident": "DK-0013", + "type": "small_airport", + "name": "Næstved Airfield", + "latitude_deg": "55.210902", + "longitude_deg": "11.717592", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-85", + "municipality": "Naestved", + "scheduled_service": "no" + }, + { + "id": "320935", + "ident": "DK-0014", + "type": "small_airport", + "name": "Nordborg Flyveplads", + "latitude_deg": "55.07485", + "longitude_deg": "9.753379", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Sønderborg", + "scheduled_service": "no", + "gps_code": "EKNB", + "keywords": "Nordborg/Pøl" + }, + { + "id": "320938", + "ident": "DK-0015", + "type": "small_airport", + "name": "Aversi", + "latitude_deg": "55.3438217", + "longitude_deg": "11.8350602", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-85", + "scheduled_service": "no", + "home_link": "http://aversi.dk" + }, + { + "id": "320939", + "ident": "DK-0016", + "type": "small_airport", + "name": "Sølager Airfiield", + "latitude_deg": "55.949956", + "longitude_deg": "11.925052", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-84", + "municipality": "Kulhuse", + "scheduled_service": "no" + }, + { + "id": "320947", + "ident": "DK-0017", + "type": "small_airport", + "name": "Ejstrupholm", + "latitude_deg": "55.9911111", + "longitude_deg": "9.2680556", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "scheduled_service": "no" + }, + { + "id": "320948", + "ident": "DK-0018", + "type": "small_airport", + "name": "Filskov Airfield", + "latitude_deg": "55.81478", + "longitude_deg": "9.047152", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Grindsted", + "scheduled_service": "no" + }, + { + "id": "320949", + "ident": "DK-0019", + "type": "small_airport", + "name": "Estruplund Flyveplads", + "latitude_deg": "56.5577778", + "longitude_deg": "10.3583333", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Estruplund", + "scheduled_service": "no" + }, + { + "id": "320950", + "ident": "DK-0020", + "type": "small_airport", + "name": "Frederikssund Syd Flyveplads", + "latitude_deg": "55.814761", + "longitude_deg": "12.081471", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-84", + "scheduled_service": "no" + }, + { + "id": "320953", + "ident": "DK-0021", + "type": "small_airport", + "name": "Gesten Glider Field", + "latitude_deg": "55.550967", + "longitude_deg": "9.189979", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Gesten", + "scheduled_service": "no", + "gps_code": "EKGE" + }, + { + "id": "320954", + "ident": "DK-0022", + "type": "small_airport", + "name": "Frederikssund Nord Glider Field", + "latitude_deg": "55.852511", + "longitude_deg": "12.074404", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-84", + "scheduled_service": "no", + "home_link": "http://www.f-f-f.dk" + }, + { + "id": "320964", + "ident": "DK-0023", + "type": "small_airport", + "name": "Grønbæk Airfield", + "latitude_deg": "56.270588", + "longitude_deg": "9.623194", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Grønbæk", + "scheduled_service": "no", + "keywords": "Grønbæk Flyveplads" + }, + { + "id": "320965", + "ident": "DK-0024", + "type": "small_airport", + "name": "Orupgaard Flyveplads", + "latitude_deg": "54.7702778", + "longitude_deg": "11.9472222", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-85", + "scheduled_service": "no" + }, + { + "id": "320966", + "ident": "DK-0025", + "type": "small_airport", + "name": "Rolfsted Airfield", + "latitude_deg": "55.325833", + "longitude_deg": "10.581944", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "scheduled_service": "no", + "gps_code": "EKRO" + }, + { + "id": "320968", + "ident": "DK-0026", + "type": "small_airport", + "name": "Sønder Felding Airfield", + "latitude_deg": "55.946667", + "longitude_deg": "8.743333", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Sønder Felding", + "scheduled_service": "no" + }, + { + "id": "320998", + "ident": "DK-0027", + "type": "closed", + "name": "Bodilsker Airstrip", + "latitude_deg": "55.063671", + "longitude_deg": "15.053152", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-84", + "municipality": "Nexø", + "scheduled_service": "no" + }, + { + "id": "321002", + "ident": "DK-0028", + "type": "small_airport", + "name": "Varde Airfield", + "latitude_deg": "55.607778", + "longitude_deg": "8.440278", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Varde", + "scheduled_service": "no", + "gps_code": "EKVA" + }, + { + "id": "321088", + "ident": "DK-0029", + "type": "small_airport", + "name": "Sulkendrup Airport", + "latitude_deg": "55.283692", + "longitude_deg": "10.714227", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Nyborg", + "scheduled_service": "no" + }, + { + "id": "321105", + "ident": "DK-0030", + "type": "small_airport", + "name": "Holsted Private Airfield", + "latitude_deg": "55.561962", + "longitude_deg": "8.936523", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Holsted", + "scheduled_service": "no" + }, + { + "id": "322677", + "ident": "DK-0031", + "type": "small_airport", + "name": "North Jutland Ultralight Flying Club", + "latitude_deg": "57.247811", + "longitude_deg": "9.940858", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-81", + "municipality": "Brønderslev", + "scheduled_service": "no", + "home_link": "http://www.nulf.dk", + "keywords": "Nordjyllands Ultra Light Flyveklub" + }, + { + "id": "322702", + "ident": "DK-0032", + "type": "small_airport", + "name": "Vejrø Flyveplads", + "latitude_deg": "55.025703", + "longitude_deg": "11.347842", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-85", + "municipality": "Nakskov", + "scheduled_service": "no", + "gps_code": "EKVO", + "home_link": "http://www.vejroe.dk/flyveplads.aspx" + }, + { + "id": "326132", + "ident": "DK-0033", + "type": "small_airport", + "name": "Bjedstrup Airstrip", + "latitude_deg": "56.071002", + "longitude_deg": "9.867514", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Skanderborg", + "scheduled_service": "no" + }, + { + "id": "326894", + "ident": "DK-0034", + "type": "small_airport", + "name": "Slagelse Private Airstrip", + "latitude_deg": "55.3599187", + "longitude_deg": "11.3096013", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-85", + "scheduled_service": "no" + }, + { + "id": "331410", + "ident": "DK-0035", + "type": "small_airport", + "name": "Ølgod Airfield", + "latitude_deg": "55.8334107", + "longitude_deg": "8.5528725", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Vallund", + "scheduled_service": "no" + }, + { + "id": "330092", + "ident": "DK-0036", + "type": "small_airport", + "name": "Revninge Flyveplads", + "latitude_deg": "55.418985", + "longitude_deg": "10.670596", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "scheduled_service": "no" + }, + { + "id": "331156", + "ident": "DK-0037", + "type": "small_airport", + "name": "Gilleleje Airstrip", + "latitude_deg": "56.106298", + "longitude_deg": "12.323405", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-84", + "municipality": "Gilleleje", + "scheduled_service": "no" + }, + { + "id": "331803", + "ident": "DK-0038", + "type": "small_airport", + "name": "Bjørnø Flyveplads", + "latitude_deg": "55.0678624", + "longitude_deg": "10.243161", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Bjørnø Island", + "scheduled_service": "no" + }, + { + "id": "340594", + "ident": "DK-0039", + "type": "small_airport", + "name": "Hesselø Airstrip", + "latitude_deg": "56.198194", + "longitude_deg": "11.701118", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-84", + "municipality": "Hundested", + "scheduled_service": "no" + }, + { + "id": "340595", + "ident": "DK-0040", + "type": "small_airport", + "name": "Tunø Airstrip", + "latitude_deg": "55.956832", + "longitude_deg": "10.409408", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Odder", + "scheduled_service": "no" + }, + { + "id": "341523", + "ident": "DK-0041", + "type": "heliport", + "name": "Vestre Fjordpark Heliport", + "latitude_deg": "57.05865", + "longitude_deg": "9.88779", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-81", + "municipality": "Aalborg", + "scheduled_service": "no" + }, + { + "id": "341524", + "ident": "DK-0042", + "type": "heliport", + "name": "Aarhus University Hospital Helipad B", + "latitude_deg": "56.19078", + "longitude_deg": "10.17492", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Aarhus", + "scheduled_service": "no" + }, + { + "id": "345141", + "ident": "DK-0043", + "type": "small_airport", + "name": "Kaleko Airstrip", + "latitude_deg": "55.09864", + "longitude_deg": "10.2688", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "scheduled_service": "no" + }, + { + "id": "347231", + "ident": "DK-0044", + "type": "small_airport", + "name": "Emmelev Flyveplads", + "latitude_deg": "56.47528", + "longitude_deg": "10.78563", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "scheduled_service": "no" + }, + { + "id": "347254", + "ident": "DK-0045", + "type": "small_airport", + "name": "Fårbæk Private Airstrip", + "latitude_deg": "56.367199", + "longitude_deg": "9.067647", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "scheduled_service": "no" + }, + { + "id": "347612", + "ident": "DK-0046", + "type": "small_airport", + "name": "Solbjerg Flyveplads", + "latitude_deg": "56.057541", + "longitude_deg": "10.08164", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "scheduled_service": "no" + }, + { + "id": "347942", + "ident": "DK-0047", + "type": "small_airport", + "name": "Drejø Airstrip", + "latitude_deg": "54.9741", + "longitude_deg": "10.39631", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "scheduled_service": "no" + }, + { + "id": "348502", + "ident": "DK-0048", + "type": "small_airport", + "name": "Vester Åby Private Airstrip", + "latitude_deg": "55.092503", + "longitude_deg": "10.368004", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "scheduled_service": "no" + }, + { + "id": "348971", + "ident": "DK-0049", + "type": "small_airport", + "name": "Bramming Airstrip", + "latitude_deg": "55.53471", + "longitude_deg": "8.79486", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "scheduled_service": "no" + }, + { + "id": "353146", + "ident": "DK-0050", + "type": "small_airport", + "name": "Hundelev Private Airstrip", + "latitude_deg": "57.422473", + "longitude_deg": "9.862525", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-81", + "scheduled_service": "no" + }, + { + "id": "339960", + "ident": "DLC", + "type": "closed", + "name": "Dalian Jinzhouwan International Airport (under construction)", + "latitude_deg": "39.12255", + "longitude_deg": "121.59807", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Ganjingzi, Dalian", + "scheduled_service": "no", + "gps_code": "ZYTL", + "iata_code": "DLC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dalian_Jinzhouwan_International_Airport" + }, + { + "id": "330383", + "ident": "DLR", + "type": "small_airport", + "name": "Dalnerechensk Airport", + "latitude_deg": "45.877949", + "longitude_deg": "133.735822", + "elevation_ft": "272", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Dalnerechensk", + "scheduled_service": "yes", + "gps_code": "UHHD", + "iata_code": "DLR" + }, + { + "id": "17152", + "ident": "DM2", + "type": "heliport", + "name": "Diomede Heliport", + "latitude_deg": "65.758367", + "longitude_deg": "-168.953676", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Diomede", + "scheduled_service": "no", + "gps_code": "PPDM", + "local_code": "DM2", + "keywords": "DIO" + }, + { + "id": "4965", + "ident": "DN50", + "type": "small_airport", + "name": "Shiroro Airport", + "latitude_deg": "9.884650230407715", + "longitude_deg": "6.818630218505859", + "elevation_ft": "1305", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-NI", + "scheduled_service": "no", + "gps_code": "DN50", + "local_code": "DN50" + }, + { + "id": "4966", + "ident": "DN51", + "type": "small_airport", + "name": "Ajaokuta Airport", + "latitude_deg": "7.457871", + "longitude_deg": "6.460837", + "elevation_ft": "620", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-KO", + "municipality": "Ajaokuta", + "scheduled_service": "no", + "gps_code": "DN51", + "local_code": "DN51" + }, + { + "id": "4967", + "ident": "DN53", + "type": "small_airport", + "name": "Kaduna Old Airport", + "latitude_deg": "10.598899841308594", + "longitude_deg": "7.448709964752197", + "elevation_ft": "2126", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-KD", + "scheduled_service": "no", + "gps_code": "DN53", + "local_code": "DN53" + }, + { + "id": "4968", + "ident": "DN54", + "type": "small_airport", + "name": "Bajoga Northeast Airport", + "latitude_deg": "10.919899940490723", + "longitude_deg": "11.501199722290039", + "elevation_ft": "1000", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-GO", + "municipality": "Bajoga", + "scheduled_service": "no", + "gps_code": "DN54", + "local_code": "DN54" + }, + { + "id": "4969", + "ident": "DN55", + "type": "small_airport", + "name": "Eket Airport", + "latitude_deg": "4.642182", + "longitude_deg": "7.94904", + "elevation_ft": "47", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-AK", + "municipality": "Eket", + "scheduled_service": "no", + "gps_code": "DNEK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eket_Airstrip", + "keywords": "DN55" + }, + { + "id": "4970", + "ident": "DN56", + "type": "small_airport", + "name": "Escravos Airport", + "latitude_deg": "5.61673", + "longitude_deg": "5.188485", + "elevation_ft": "10", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-DE", + "municipality": "Escravos", + "scheduled_service": "no", + "gps_code": "DNES", + "wikipedia_link": "https://en.wikipedia.org/wiki/Escravos_Airstrip", + "keywords": "DN56" + }, + { + "id": "4971", + "ident": "DN57", + "type": "small_airport", + "name": "Katsina Airport", + "latitude_deg": "13.0078", + "longitude_deg": "7.66045", + "elevation_ft": "1660", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-KT", + "municipality": "Katsina", + "scheduled_service": "no", + "gps_code": "DKNT", + "iata_code": "DKA", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=18", + "wikipedia_link": "https://en.wikipedia.org/wiki/Katsina_Airport", + "keywords": "DN57" + }, + { + "id": "2104", + "ident": "DNAA", + "type": "large_airport", + "name": "Nnamdi Azikiwe International Airport", + "latitude_deg": "9.006790161132812", + "longitude_deg": "7.263169765472412", + "elevation_ft": "1123", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-FC", + "municipality": "Abuja", + "scheduled_service": "yes", + "gps_code": "DNAA", + "iata_code": "ABV", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nnamdi_Azikiwe_International_Airport" + }, + { + "id": "309668", + "ident": "DNAI", + "type": "medium_airport", + "name": "Akwa Ibom International Airport", + "latitude_deg": "4.8725", + "longitude_deg": "8.093", + "elevation_ft": "170", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-AK", + "municipality": "Uyo", + "scheduled_service": "yes", + "gps_code": "DNAI", + "iata_code": "QUO", + "home_link": "http://www.ibomairport.com.ng/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Akwa_Ibom_Airport" + }, + { + "id": "2105", + "ident": "DNAK", + "type": "medium_airport", + "name": "Akure Airport", + "latitude_deg": "7.246739864349365", + "longitude_deg": "5.3010101318359375", + "elevation_ft": "1100", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-ON", + "municipality": "Akure", + "scheduled_service": "yes", + "gps_code": "DNAK", + "iata_code": "AKR", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=21", + "wikipedia_link": "https://en.wikipedia.org/wiki/Akure_Airport" + }, + { + "id": "300781", + "ident": "DNAS", + "type": "medium_airport", + "name": "Asaba International Airport", + "latitude_deg": "6.204167", + "longitude_deg": "6.665278", + "elevation_ft": "305", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-DE", + "municipality": "Asaba", + "scheduled_service": "no", + "gps_code": "DNAS", + "iata_code": "ABB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Asaba_International_Airport", + "keywords": "Onitsha" + }, + { + "id": "323015", + "ident": "DNBB", + "type": "small_airport", + "name": "Bebi Airport", + "latitude_deg": "6.6215", + "longitude_deg": "9.319001", + "elevation_ft": "919", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-CR", + "municipality": "Bayaluga", + "scheduled_service": "no", + "gps_code": "DNBB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Portal:Aviation", + "keywords": "Obudu" + }, + { + "id": "323056", + "ident": "DNBC", + "type": "medium_airport", + "name": "Sir Abubakar Tafawa Balewa International Airport", + "latitude_deg": "10.482833", + "longitude_deg": "9.744", + "elevation_ft": "1965", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-BA", + "municipality": "Bauchi", + "scheduled_service": "yes", + "gps_code": "DNBC", + "iata_code": "BCU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bauchi_State_Airport", + "keywords": "Bauchi State Airport" + }, + { + "id": "2106", + "ident": "DNBE", + "type": "medium_airport", + "name": "Benin Airport", + "latitude_deg": "6.316979885101318", + "longitude_deg": "5.5995001792907715", + "elevation_ft": "258", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-ED", + "municipality": "Benin", + "scheduled_service": "yes", + "gps_code": "DNBE", + "iata_code": "BNI", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=22", + "wikipedia_link": "https://en.wikipedia.org/wiki/Benin_Airport" + }, + { + "id": "30927", + "ident": "DNBI", + "type": "small_airport", + "name": "Bida Airport", + "latitude_deg": "9.100000381469727", + "longitude_deg": "6.017000198364258", + "elevation_ft": "450", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-NI", + "municipality": "Bida", + "scheduled_service": "no", + "gps_code": "DNBI" + }, + { + "id": "340295", + "ident": "DNBY", + "type": "medium_airport", + "name": "Bayelsa International Airport", + "latitude_deg": "4.95759", + "longitude_deg": "6.203327", + "elevation_ft": "67", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-BY", + "municipality": "Yenagoa", + "scheduled_service": "yes", + "gps_code": "DNBY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bayelsa_International_Airport" + }, + { + "id": "2107", + "ident": "DNCA", + "type": "medium_airport", + "name": "Margaret Ekpo International Airport", + "latitude_deg": "4.976019859313965", + "longitude_deg": "8.347200393676758", + "elevation_ft": "210", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-CR", + "municipality": "Calabar", + "scheduled_service": "yes", + "gps_code": "DNCA", + "iata_code": "CBQ", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=12", + "wikipedia_link": "https://en.wikipedia.org/wiki/Margaret_Ekpo_International_Airport" + }, + { + "id": "323025", + "ident": "DNDS", + "type": "small_airport", + "name": "Dutse International Airport", + "latitude_deg": "11.795168", + "longitude_deg": "9.311667", + "elevation_ft": "1365", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-JI", + "municipality": "Dutse", + "scheduled_service": "no", + "gps_code": "DNDS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dutse_International_Airport" + }, + { + "id": "2108", + "ident": "DNEN", + "type": "medium_airport", + "name": "Akanu Ibiam International Airport", + "latitude_deg": "6.474269866943359", + "longitude_deg": "7.561960220336914", + "elevation_ft": "466", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-EN", + "municipality": "Enegu", + "scheduled_service": "yes", + "gps_code": "DNEN", + "iata_code": "ENU", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=11", + "wikipedia_link": "https://en.wikipedia.org/wiki/Akanu_Ibiam_International_Airport" + }, + { + "id": "323029", + "ident": "DNFB", + "type": "small_airport", + "name": "Finima Bonny Airport", + "latitude_deg": "4.405856", + "longitude_deg": "7.181907", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-RI", + "municipality": "Finima", + "scheduled_service": "no", + "gps_code": "DNFB" + }, + { + "id": "323031", + "ident": "DNFD", + "type": "small_airport", + "name": "Forçados Terminal Airport", + "latitude_deg": "5.355", + "longitude_deg": "5.349002", + "elevation_ft": "11", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-DE", + "municipality": "Forçados", + "scheduled_service": "no", + "gps_code": "DNFD" + }, + { + "id": "2109", + "ident": "DNGU", + "type": "medium_airport", + "name": "Gusau Airport", + "latitude_deg": "12.1717", + "longitude_deg": "6.69611", + "elevation_ft": "1520", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-ZA", + "municipality": "Gusau", + "scheduled_service": "no", + "gps_code": "DNGU", + "keywords": "QUS" + }, + { + "id": "2110", + "ident": "DNIB", + "type": "medium_airport", + "name": "Ibadan Airport", + "latitude_deg": "7.362460136413574", + "longitude_deg": "3.97832989692688", + "elevation_ft": "725", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-OY", + "municipality": "Ibadan", + "scheduled_service": "yes", + "gps_code": "DNIB", + "iata_code": "IBA", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ibadan_Airport" + }, + { + "id": "2111", + "ident": "DNIL", + "type": "medium_airport", + "name": "Ilorin International Airport", + "latitude_deg": "8.440210342407227", + "longitude_deg": "4.493919849395752", + "elevation_ft": "1126", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-KW", + "municipality": "Ilorin", + "scheduled_service": "yes", + "gps_code": "DNIL", + "iata_code": "ILR", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=20", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ilorin_International_Airport" + }, + { + "id": "2112", + "ident": "DNIM", + "type": "medium_airport", + "name": "Sam Mbakwe International Airport", + "latitude_deg": "5.427060127258301", + "longitude_deg": "7.206029891967773", + "elevation_ft": "373", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-IM", + "municipality": "Owerri", + "scheduled_service": "yes", + "gps_code": "DNIM", + "iata_code": "QOW", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=17", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sam_Mbakwe_International_Cargo_Airport", + "keywords": "Imo Airport" + }, + { + "id": "319224", + "ident": "DNJA", + "type": "small_airport", + "name": "Jalingo Airport", + "latitude_deg": "8.900587", + "longitude_deg": "11.27946", + "elevation_ft": "685", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-TA", + "municipality": "Jalingo", + "scheduled_service": "no", + "gps_code": "DNJA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jalingo_Airport" + }, + { + "id": "2113", + "ident": "DNJO", + "type": "medium_airport", + "name": "Yakubu Gowon Airport", + "latitude_deg": "9.639829635620117", + "longitude_deg": "8.869050025939941", + "elevation_ft": "4232", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-PL", + "municipality": "Jos", + "scheduled_service": "yes", + "gps_code": "DNJO", + "iata_code": "JOS", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=15", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yakubu_Gowon_Airport" + }, + { + "id": "2114", + "ident": "DNKA", + "type": "medium_airport", + "name": "Kaduna Airport", + "latitude_deg": "10.696000099182129", + "longitude_deg": "7.320109844207764", + "elevation_ft": "2073", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-KD", + "municipality": "Kaduna", + "scheduled_service": "yes", + "gps_code": "DNKA", + "iata_code": "KAD", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=10", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kaduna_Airport" + }, + { + "id": "2115", + "ident": "DNKN", + "type": "medium_airport", + "name": "Mallam Aminu International Airport", + "latitude_deg": "12.0476", + "longitude_deg": "8.52462", + "elevation_ft": "1562", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-KN", + "municipality": "Kano", + "scheduled_service": "yes", + "gps_code": "DNKN", + "iata_code": "KAN", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mallam_Aminu_Kano_International_Airport" + }, + { + "id": "2116", + "ident": "DNMA", + "type": "medium_airport", + "name": "Maiduguri International Airport", + "latitude_deg": "11.855299949645996", + "longitude_deg": "13.080900192260742", + "elevation_ft": "1099", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-BO", + "municipality": "Maiduguri", + "scheduled_service": "yes", + "gps_code": "DNMA", + "iata_code": "MIU", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=14", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maiduguri_International_Airport" + }, + { + "id": "2117", + "ident": "DNMK", + "type": "medium_airport", + "name": "Makurdi Airport", + "latitude_deg": "7.70388", + "longitude_deg": "8.61394", + "elevation_ft": "371", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-BE", + "municipality": "Makurdi", + "scheduled_service": "yes", + "gps_code": "DNMK", + "iata_code": "MDI", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=23", + "wikipedia_link": "https://en.wikipedia.org/wiki/Makurdi_Airport" + }, + { + "id": "2118", + "ident": "DNMM", + "type": "large_airport", + "name": "Murtala Muhammed International Airport", + "latitude_deg": "6.5773701667785645", + "longitude_deg": "3.321160078048706", + "elevation_ft": "135", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-LA", + "municipality": "Lagos", + "scheduled_service": "yes", + "gps_code": "DNMM", + "iata_code": "LOS", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Murtala_Mohammed_International_Airport" + }, + { + "id": "2119", + "ident": "DNMN", + "type": "medium_airport", + "name": "Minna Airport", + "latitude_deg": "9.652170181274414", + "longitude_deg": "6.462259769439697", + "elevation_ft": "834", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-NI", + "municipality": "Minna", + "scheduled_service": "no", + "gps_code": "DNMN", + "iata_code": "MXJ", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=19", + "wikipedia_link": "https://en.wikipedia.org/wiki/Minna_Airport" + }, + { + "id": "30930", + "ident": "DNOS", + "type": "small_airport", + "name": "Oshogbo Airport", + "latitude_deg": "7.7829999923706055", + "longitude_deg": "4.482999801635742", + "elevation_ft": "997", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-OS", + "municipality": "Oshogbo", + "scheduled_service": "no", + "gps_code": "DNOS" + }, + { + "id": "2120", + "ident": "DNPO", + "type": "medium_airport", + "name": "Port Harcourt International Airport", + "latitude_deg": "5.0154900550842285", + "longitude_deg": "6.94959020614624", + "elevation_ft": "87", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-RI", + "municipality": "Port Harcourt", + "scheduled_service": "yes", + "gps_code": "DNPO", + "iata_code": "PHC", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Harcourt_International_Airport" + }, + { + "id": "2121", + "ident": "DNSO", + "type": "medium_airport", + "name": "Sadiq Abubakar III International Airport", + "latitude_deg": "12.916299819946289", + "longitude_deg": "5.207190036773682", + "elevation_ft": "1010", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-SO", + "municipality": "Sokoto", + "scheduled_service": "yes", + "gps_code": "DNSO", + "iata_code": "SKO", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=13", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sadiq_Abubakar_III_International_Airport" + }, + { + "id": "2122", + "ident": "DNYO", + "type": "medium_airport", + "name": "Yola Airport", + "latitude_deg": "9.257550239562988", + "longitude_deg": "12.430399894714355", + "elevation_ft": "599", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-AD", + "municipality": "Yola", + "scheduled_service": "yes", + "gps_code": "DNYO", + "iata_code": "YOL", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=16", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yola_Airport" + }, + { + "id": "2123", + "ident": "DNZA", + "type": "medium_airport", + "name": "Zaria Airport", + "latitude_deg": "11.1302", + "longitude_deg": "7.68581", + "elevation_ft": "2170", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-KD", + "municipality": "Zaria", + "scheduled_service": "no", + "gps_code": "DNZA", + "iata_code": "ZAR", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=24", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zaria_Airport" + }, + { + "id": "42313", + "ident": "DO-0001", + "type": "closed", + "name": "Santiago Municipal Airport", + "latitude_deg": "19.4699001312", + "longitude_deg": "-70.7005996704", + "elevation_ft": "602", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-25", + "municipality": "Santiago", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santiago_Municipal_Airport" + }, + { + "id": "316898", + "ident": "DO-0002", + "type": "closed", + "name": "Old Barahona Airport", + "latitude_deg": "18.215", + "longitude_deg": "-71.0981", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-04", + "municipality": "Barahona", + "scheduled_service": "no" + }, + { + "id": "316899", + "ident": "DO-0003", + "type": "heliport", + "name": "Barahona Heliport", + "latitude_deg": "18.2131", + "longitude_deg": "-71.0968", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-04", + "municipality": "Barahona", + "scheduled_service": "no" + }, + { + "id": "349418", + "ident": "DO-0004", + "type": "heliport", + "name": "Javo Beach Heliport", + "latitude_deg": "19.29324", + "longitude_deg": "-69.20898", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-20", + "municipality": "Las Galeras", + "scheduled_service": "no", + "keywords": "The Nest" + }, + { + "id": "349419", + "ident": "DO-0005", + "type": "heliport", + "name": "Grand Sirenis Punta Cana Heliport", + "latitude_deg": "18.81702", + "longitude_deg": "-68.59196", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-11", + "municipality": "Higüey", + "scheduled_service": "no" + }, + { + "id": "349420", + "ident": "DO-0006", + "type": "heliport", + "name": "Don Juan Helipad", + "latitude_deg": "18.9927", + "longitude_deg": "-69.24524", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-30", + "municipality": "Magua", + "scheduled_service": "no" + }, + { + "id": "308061", + "ident": "DOO", + "type": "small_airport", + "name": "Dorobisoro Airport", + "latitude_deg": "-9.461855", + "longitude_deg": "147.920907", + "elevation_ft": "1767", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Dorobisoro", + "scheduled_service": "no", + "gps_code": "AYDR", + "iata_code": "DOO", + "local_code": "DOR" + }, + { + "id": "312960", + "ident": "DOS", + "type": "closed", + "name": "Dios Airport", + "latitude_deg": "-5.5609", + "longitude_deg": "154.9616", + "elevation_ft": "335", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NSB", + "municipality": "Dios", + "scheduled_service": "no", + "iata_code": "DOS" + }, + { + "id": "302542", + "ident": "DPK", + "type": "closed", + "name": "Deer Park Airport", + "latitude_deg": "40.76", + "longitude_deg": "-73.31", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Deer Park", + "scheduled_service": "no", + "iata_code": "DPK" + }, + { + "id": "315624", + "ident": "DPT", + "type": "small_airport", + "name": "Deputatskiy Airport", + "latitude_deg": "69.392503", + "longitude_deg": "139.890012", + "elevation_ft": "950", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Deputatskiy", + "scheduled_service": "yes", + "gps_code": "UEBD", + "iata_code": "DPT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Deputatsky_Airport", + "keywords": "УЕБД, Deputatsky Airport, Аэропорт Депутатский, Deputy Airport" + }, + { + "id": "312809", + "ident": "DPU", + "type": "closed", + "name": "Dumpu Airport", + "latitude_deg": "-5.858", + "longitude_deg": "145.705", + "elevation_ft": "870", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Dumpu", + "scheduled_service": "no", + "iata_code": "DPU" + }, + { + "id": "300323", + "ident": "DQA", + "type": "small_airport", + "name": "Daqing Sa'ertu Airport", + "latitude_deg": "46.750883", + "longitude_deg": "125.138642", + "elevation_ft": "496", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Daqing", + "scheduled_service": "yes", + "gps_code": "ZYDQ", + "iata_code": "DQA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Daqing_Sartu_Airport" + }, + { + "id": "30938", + "ident": "DRRA", + "type": "small_airport", + "name": "Tessaoua Airport", + "latitude_deg": "13.756968", + "longitude_deg": "8.020568", + "elevation_ft": "1358", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-4", + "municipality": "Tessaoua", + "scheduled_service": "no", + "gps_code": "DRRA" + }, + { + "id": "42447", + "ident": "DRRB", + "type": "closed", + "name": "Birni-N'Konni Airport", + "latitude_deg": "13.8015", + "longitude_deg": "5.24236", + "elevation_ft": "846", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-5", + "municipality": "Birni-N'Konni", + "scheduled_service": "no", + "gps_code": "DRRB" + }, + { + "id": "30939", + "ident": "DRRC", + "type": "small_airport", + "name": "Dogondoutchi Airport", + "latitude_deg": "13.663003", + "longitude_deg": "4.099674", + "elevation_ft": "961", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-3", + "municipality": "Dogondoutchi", + "scheduled_service": "no", + "gps_code": "DRRC" + }, + { + "id": "30940", + "ident": "DRRD", + "type": "small_airport", + "name": "Dosso Airport", + "latitude_deg": "13.0481247896", + "longitude_deg": "3.2209682464600005", + "elevation_ft": "738", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-3", + "municipality": "Dosso", + "scheduled_service": "no", + "gps_code": "DRRD" + }, + { + "id": "30941", + "ident": "DRRE", + "type": "small_airport", + "name": "Tera Airport", + "latitude_deg": "13.949999809265137", + "longitude_deg": "0.7329999804496765", + "elevation_ft": "850", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-6", + "municipality": "Tera", + "scheduled_service": "no", + "gps_code": "DRRE" + }, + { + "id": "30942", + "ident": "DRRG", + "type": "small_airport", + "name": "Gaya Airport", + "latitude_deg": "11.890026", + "longitude_deg": "3.428024", + "elevation_ft": "662", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-3", + "municipality": "Gaya", + "scheduled_service": "no", + "gps_code": "DRRG" + }, + { + "id": "42441", + "ident": "DRRI", + "type": "small_airport", + "name": "Bilma Airport", + "latitude_deg": "18.68670082092285", + "longitude_deg": "12.91919994354248", + "elevation_ft": "1715", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-1", + "municipality": "Bilma", + "scheduled_service": "no", + "gps_code": "DRRI" + }, + { + "id": "30943", + "ident": "DRRL", + "type": "small_airport", + "name": "Tillabery Airport", + "latitude_deg": "14.2032", + "longitude_deg": "1.4744", + "elevation_ft": "692", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-6", + "municipality": "Tillabery", + "scheduled_service": "no", + "gps_code": "DRRL" + }, + { + "id": "2124", + "ident": "DRRM", + "type": "medium_airport", + "name": "Maradi Airport", + "latitude_deg": "13.5024995803833", + "longitude_deg": "7.1267499923706055", + "elevation_ft": "1240", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-4", + "municipality": "Maradi", + "scheduled_service": "no", + "gps_code": "DRRM", + "iata_code": "MFQ" + }, + { + "id": "2125", + "ident": "DRRN", + "type": "large_airport", + "name": "Diori Hamani International Airport", + "latitude_deg": "13.4815", + "longitude_deg": "2.18361", + "elevation_ft": "732", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-8", + "municipality": "Niamey", + "scheduled_service": "yes", + "gps_code": "DRRN", + "iata_code": "NIM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Diori_Hamani_International_Airport" + }, + { + "id": "30944", + "ident": "DRRP", + "type": "small_airport", + "name": "La Tapoa Airport", + "latitude_deg": "12.484498", + "longitude_deg": "2.398452", + "elevation_ft": "722", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-6", + "municipality": "La Tapoa", + "scheduled_service": "no", + "gps_code": "DRRP" + }, + { + "id": "2126", + "ident": "DRRT", + "type": "medium_airport", + "name": "Tahoua Airport", + "latitude_deg": "14.8757", + "longitude_deg": "5.26536", + "elevation_ft": "1266", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-5", + "municipality": "Tahoua", + "scheduled_service": "no", + "gps_code": "DRRT", + "iata_code": "THZ" + }, + { + "id": "30945", + "ident": "DRRU", + "type": "small_airport", + "name": "Ouallam Airport", + "latitude_deg": "14.333000183105469", + "longitude_deg": "2.0829999446868896", + "elevation_ft": "892", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-6", + "municipality": "Ouallam", + "scheduled_service": "no", + "gps_code": "DRRU" + }, + { + "id": "2127", + "ident": "DRZA", + "type": "medium_airport", + "name": "Mano Dayak International Airport", + "latitude_deg": "16.965999603271484", + "longitude_deg": "8.000109672546387", + "elevation_ft": "1657", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-1", + "municipality": "Agadez", + "scheduled_service": "yes", + "gps_code": "DRZA", + "iata_code": "AJY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mano_Dayak_International_Airport" + }, + { + "id": "2128", + "ident": "DRZD", + "type": "small_airport", + "name": "Dirkou Airport", + "latitude_deg": "18.963931", + "longitude_deg": "12.864132", + "elevation_ft": "1273", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-1", + "municipality": "Dirkou", + "scheduled_service": "no", + "gps_code": "DRZD" + }, + { + "id": "2129", + "ident": "DRZF", + "type": "small_airport", + "name": "Diffa Airport", + "latitude_deg": "13.372900009155273", + "longitude_deg": "12.626700401306152", + "elevation_ft": "994", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-2", + "municipality": "Diffa", + "scheduled_service": "no", + "gps_code": "DRZF" + }, + { + "id": "42442", + "ident": "DRZG", + "type": "small_airport", + "name": "Goure Airport", + "latitude_deg": "13.983599662780762", + "longitude_deg": "10.274900436401367", + "elevation_ft": "1499", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-7", + "municipality": "Goure", + "scheduled_service": "no", + "gps_code": "DRZG" + }, + { + "id": "30946", + "ident": "DRZI", + "type": "small_airport", + "name": "Iferouane Airport", + "latitude_deg": "19.066198", + "longitude_deg": "8.41496", + "elevation_ft": "2162", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-1", + "municipality": "Iferouane", + "scheduled_service": "no", + "gps_code": "DRZI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iferouane_Airport" + }, + { + "id": "42443", + "ident": "DRZL", + "type": "small_airport", + "name": "Arlit Airport", + "latitude_deg": "18.7903995514", + "longitude_deg": "7.36595010757", + "elevation_ft": "1443", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-1", + "municipality": "Arlit", + "scheduled_service": "no", + "gps_code": "DRZL", + "iata_code": "RLT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arlit_Airport" + }, + { + "id": "42444", + "ident": "DRZM", + "type": "small_airport", + "name": "Maine-Soroa Airport", + "latitude_deg": "13.205499649047852", + "longitude_deg": "12.032299995422363", + "elevation_ft": "944", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-2", + "municipality": "Maine-Soroa", + "scheduled_service": "no", + "gps_code": "DRZM" + }, + { + "id": "42445", + "ident": "DRZN", + "type": "small_airport", + "name": "N'Guigmi Airport", + "latitude_deg": "14.25100040435791", + "longitude_deg": "13.128999710083008", + "elevation_ft": "977", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-2", + "municipality": "N'Guigmi", + "scheduled_service": "no", + "gps_code": "DRZN" + }, + { + "id": "2130", + "ident": "DRZR", + "type": "medium_airport", + "name": "Zinder Airport", + "latitude_deg": "13.779000282287598", + "longitude_deg": "8.983759880065918", + "elevation_ft": "1516", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-7", + "municipality": "Zinder", + "scheduled_service": "yes", + "gps_code": "DRZR", + "iata_code": "ZND", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zinder_Airport" + }, + { + "id": "42446", + "ident": "DRZT", + "type": "small_airport", + "name": "Tanout Airport", + "latitude_deg": "14.97029972076416", + "longitude_deg": "8.891670227050781", + "elevation_ft": "1751", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-7", + "municipality": "Tanout", + "scheduled_service": "no", + "gps_code": "DRZT" + }, + { + "id": "302475", + "ident": "DSG", + "type": "small_airport", + "name": "Dilasag Airport", + "latitude_deg": "16.445833333299998", + "longitude_deg": "122.206805556", + "elevation_ft": "60", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AUR", + "municipality": "Dilasag", + "scheduled_service": "no", + "iata_code": "DSG" + }, + { + "id": "17153", + "ident": "DT1", + "type": "heliport", + "name": "Downtown Fort Lauderdale Heliport", + "latitude_deg": "26.120500564575195", + "longitude_deg": "-80.14209747314453", + "elevation_ft": "114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Lauderdale", + "scheduled_service": "no", + "gps_code": "DT1", + "local_code": "DT1" + }, + { + "id": "6401", + "ident": "DT70", + "type": "small_airport", + "name": "Medenine Airport", + "latitude_deg": "33.350201", + "longitude_deg": "10.444", + "elevation_ft": "427", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-82", + "municipality": "Medenine", + "scheduled_service": "no", + "gps_code": "DT70", + "local_code": "DT70", + "keywords": "Madaniyin Airport" + }, + { + "id": "17154", + "ident": "DTG", + "type": "small_airport", + "name": "Dwight Airport", + "latitude_deg": "41.1333007812", + "longitude_deg": "-88.4408035278", + "elevation_ft": "632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Dwight", + "scheduled_service": "no", + "gps_code": "KDTG", + "local_code": "DTG" + }, + { + "id": "2131", + "ident": "DTKA", + "type": "medium_airport", + "name": "Tabarka-Aïn Draham International Airport", + "latitude_deg": "36.98", + "longitude_deg": "8.87694", + "elevation_ft": "230", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-32", + "municipality": "Tabarka", + "scheduled_service": "yes", + "gps_code": "DTKA", + "iata_code": "TBJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tabarka%E2%80%93A%C3%AFn_Draham_International_Airport", + "keywords": "Tabarka 7 Novembre Airport" + }, + { + "id": "2132", + "ident": "DTMB", + "type": "medium_airport", + "name": "Monastir Habib Bourguiba International Airport", + "latitude_deg": "35.75809860229492", + "longitude_deg": "10.75469970703125", + "elevation_ft": "9", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-52", + "municipality": "Monastir", + "scheduled_service": "yes", + "gps_code": "DTMB", + "iata_code": "MIR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Habib_Bourguiba_International_Airport" + }, + { + "id": "44483", + "ident": "DTNH", + "type": "medium_airport", + "name": "Enfidha - Hammamet International Airport", + "latitude_deg": "36.075833", + "longitude_deg": "10.438611", + "elevation_ft": "21", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-51", + "municipality": "Enfidha", + "scheduled_service": "yes", + "gps_code": "DTNH", + "iata_code": "NBE", + "local_code": "DTNH", + "home_link": "http://www.enfidhahammametairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Enfidha%E2%80%93Hammamet_International_Airport", + "keywords": "DTNH" + }, + { + "id": "2133", + "ident": "DTTA", + "type": "large_airport", + "name": "Tunis Carthage International Airport", + "latitude_deg": "36.851002", + "longitude_deg": "10.2272", + "elevation_ft": "22", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-11", + "municipality": "Tunis", + "scheduled_service": "yes", + "gps_code": "DTTA", + "iata_code": "TUN", + "home_link": "http://www.oaca.nat.tn/english/div_horizontal_tunis_airport_eng.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tunis-Carthage_International_Airport", + "keywords": "Aéroport international de Tunis-Carthage, مطار تونس قرطاج الدولي" + }, + { + "id": "2134", + "ident": "DTTB", + "type": "medium_airport", + "name": "Bizerte Sidi Ahmed Air Base", + "latitude_deg": "37.242356", + "longitude_deg": "9.787016", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-23", + "municipality": "Borj Challouf", + "scheduled_service": "no", + "gps_code": "DTTB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bizerte-Sidi_Ahmed_Air_Base", + "keywords": "QIZ" + }, + { + "id": "2135", + "ident": "DTTD", + "type": "medium_airport", + "name": "Remada Air Base", + "latitude_deg": "32.30619812011719", + "longitude_deg": "10.382100105285645", + "elevation_ft": "1004", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-83", + "municipality": "Remada", + "scheduled_service": "no", + "gps_code": "DTTD" + }, + { + "id": "2136", + "ident": "DTTF", + "type": "medium_airport", + "name": "Gafsa Ksar International Airport", + "latitude_deg": "34.422000885009766", + "longitude_deg": "8.822500228881836", + "elevation_ft": "1060", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-71", + "municipality": "Gafsa", + "scheduled_service": "yes", + "gps_code": "DTTF", + "iata_code": "GAF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gafsa_-_Ksar_International_Airport" + }, + { + "id": "2137", + "ident": "DTTG", + "type": "medium_airport", + "name": "Gabès Matmata International Airport", + "latitude_deg": "33.733691", + "longitude_deg": "9.91941", + "elevation_ft": "407", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-81", + "municipality": "Gabès", + "scheduled_service": "yes", + "gps_code": "DTTG", + "iata_code": "GAE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gab%C3%A8s_-_Matmata_International_Airport" + }, + { + "id": "2138", + "ident": "DTTI", + "type": "small_airport", + "name": "Borj El Amri Airport", + "latitude_deg": "36.721298", + "longitude_deg": "9.94315", + "elevation_ft": "110", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-13", + "municipality": "Burj al Hafsiyah", + "scheduled_service": "no", + "gps_code": "DTTI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bordj_El_Amri_Airport" + }, + { + "id": "2139", + "ident": "DTTJ", + "type": "medium_airport", + "name": "Djerba Zarzis International Airport", + "latitude_deg": "33.875", + "longitude_deg": "10.7755", + "elevation_ft": "19", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-82", + "municipality": "Mellita", + "scheduled_service": "yes", + "gps_code": "DTTJ", + "iata_code": "DJE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Djerba-Zarzis_Airport" + }, + { + "id": "2140", + "ident": "DTTR", + "type": "medium_airport", + "name": "El Borma Airport", + "latitude_deg": "31.704299926757812", + "longitude_deg": "9.254619598388672", + "elevation_ft": "827", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-83", + "municipality": "El Borma", + "scheduled_service": "no", + "gps_code": "DTTR", + "iata_code": "EBM" + }, + { + "id": "2141", + "ident": "DTTX", + "type": "medium_airport", + "name": "Sfax Thyna International Airport", + "latitude_deg": "34.71799850463867", + "longitude_deg": "10.690999984741211", + "elevation_ft": "85", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-61", + "municipality": "Sfax", + "scheduled_service": "yes", + "gps_code": "DTTX", + "iata_code": "SFA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thyna_Airport" + }, + { + "id": "2142", + "ident": "DTTZ", + "type": "medium_airport", + "name": "Tozeur Nefta International Airport", + "latitude_deg": "33.939701080322266", + "longitude_deg": "8.110560417175293", + "elevation_ft": "287", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-72", + "municipality": "Tozeur", + "scheduled_service": "yes", + "gps_code": "DTTZ", + "iata_code": "TOE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nefta_Airport" + }, + { + "id": "318121", + "ident": "DVD", + "type": "small_airport", + "name": "Andavadoaka Airport", + "latitude_deg": "-22.06608", + "longitude_deg": "43.259573", + "elevation_ft": "30", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Andavadoaka", + "scheduled_service": "no", + "iata_code": "DVD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Andavadoaka_Airport" + }, + { + "id": "318125", + "ident": "DWO", + "type": "seaplane_base", + "name": "Diyawanna Oya Seaplane Base", + "latitude_deg": "6.906585", + "longitude_deg": "79.909", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-1", + "municipality": "Sri Jayawardenepura Kotte", + "scheduled_service": "yes", + "iata_code": "DWO", + "keywords": "Waters Edge" + }, + { + "id": "300672", + "ident": "DWR", + "type": "small_airport", + "name": "Dwyer Airport", + "latitude_deg": "31.091265", + "longitude_deg": "64.066053", + "elevation_ft": "2380", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-HEL", + "municipality": "Reg", + "scheduled_service": "no", + "gps_code": "OADY", + "iata_code": "DWR", + "home_link": "http://militarybases.com/overseas/afghanistan/camp-dwyer/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_Dwyer" + }, + { + "id": "302473", + "ident": "DWS", + "type": "closed", + "name": "Walt Disney World Airport / Lake Buena Vista STOLport", + "latitude_deg": "28.399444", + "longitude_deg": "-81.571278", + "elevation_ft": "94", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Walt Disney World", + "scheduled_service": "no", + "gps_code": "KDWS", + "iata_code": "DWS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Walt_Disney_World_Airport", + "keywords": "Walt Disney World Airport" + }, + { + "id": "30953", + "ident": "DXAK", + "type": "small_airport", + "name": "Akpaka Airport", + "latitude_deg": "7.583000183105469", + "longitude_deg": "1.1169999837875366", + "elevation_ft": "689", + "continent": "AF", + "iso_country": "TG", + "iso_region": "TG-P", + "municipality": "Atakpamé", + "scheduled_service": "no", + "gps_code": "DXAK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Akpaka_Airport" + }, + { + "id": "30954", + "ident": "DXDP", + "type": "small_airport", + "name": "Djangou Airport", + "latitude_deg": "10.800417", + "longitude_deg": "0.242372", + "elevation_ft": "886", + "continent": "AF", + "iso_country": "TG", + "iso_region": "TG-S", + "municipality": "Dapaong", + "scheduled_service": "no", + "gps_code": "DXDP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Djangou_Airport" + }, + { + "id": "30955", + "ident": "DXKP", + "type": "small_airport", + "name": "Kolokope Airport", + "latitude_deg": "7.803451", + "longitude_deg": "1.295966", + "elevation_ft": "591", + "continent": "AF", + "iso_country": "TG", + "iso_region": "TG-P", + "municipality": "Anié", + "scheduled_service": "no", + "gps_code": "DXKP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kolokope_Airport" + }, + { + "id": "30956", + "ident": "DXMG", + "type": "small_airport", + "name": "Sansanné-Mango Airport", + "latitude_deg": "10.373010635375977", + "longitude_deg": "0.47138214111328125", + "elevation_ft": "460", + "continent": "AF", + "iso_country": "TG", + "iso_region": "TG-S", + "municipality": "Mango", + "scheduled_service": "no", + "gps_code": "DXMG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sansann%C3%A9-Mango_Airport" + }, + { + "id": "2143", + "ident": "DXNG", + "type": "medium_airport", + "name": "Niamtougou International Airport", + "latitude_deg": "9.767330169677734", + "longitude_deg": "1.091249942779541", + "elevation_ft": "1515", + "continent": "AF", + "iso_country": "TG", + "iso_region": "TG-K", + "municipality": "Niamtougou", + "scheduled_service": "no", + "gps_code": "DXNG", + "iata_code": "LRL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Niamtougou_International_Airport" + }, + { + "id": "30957", + "ident": "DXSK", + "type": "small_airport", + "name": "Sokodé Airport", + "latitude_deg": "8.994275", + "longitude_deg": "1.153004", + "elevation_ft": "1214", + "continent": "AF", + "iso_country": "TG", + "iso_region": "TG-C", + "municipality": "Sokodé", + "scheduled_service": "no", + "gps_code": "DXSK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sokode_Airport" + }, + { + "id": "2144", + "ident": "DXXX", + "type": "medium_airport", + "name": "Lomé–Tokoin International Airport", + "latitude_deg": "6.16561", + "longitude_deg": "1.25451", + "elevation_ft": "72", + "continent": "AF", + "iso_country": "TG", + "iso_region": "TG-M", + "municipality": "Lomé", + "scheduled_service": "yes", + "gps_code": "DXXX", + "iata_code": "LFW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lom%C3%A9%E2%80%93Tokoin_International_Airport", + "keywords": "Gnassingbe Eyadema International Airport" + }, + { + "id": "312635", + "ident": "DZ-0001", + "type": "small_airport", + "name": "Hamra Airport", + "latitude_deg": "29.221376", + "longitude_deg": "6.48863", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-33", + "municipality": "Hassi Bel Guebour", + "scheduled_service": "no" + }, + { + "id": "340193", + "ident": "DZ-0002", + "type": "small_airport", + "name": "Gara Djebilet Airport", + "latitude_deg": "26.88352", + "longitude_deg": "-7.16477", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-37", + "municipality": "Âouinet Bel Egrâ", + "scheduled_service": "no" + }, + { + "id": "312729", + "ident": "DZ-0003", + "type": "closed", + "name": "Old Djanet Airport", + "latitude_deg": "24.442086", + "longitude_deg": "9.513519", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-56", + "municipality": "Djanet", + "scheduled_service": "no" + }, + { + "id": "340194", + "ident": "DZ-0004", + "type": "small_airport", + "name": "Béni Abbès Airport", + "latitude_deg": "30.12558", + "longitude_deg": "-2.13726", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-08", + "municipality": "Béni Abbès", + "scheduled_service": "no", + "local_code": "BBS" + }, + { + "id": "341277", + "ident": "DZ-0005", + "type": "small_airport", + "name": "Fort Lotfi Airfield", + "latitude_deg": "29.6397", + "longitude_deg": "-3.9939", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-08", + "municipality": "Fort Lotfi", + "scheduled_service": "no" + }, + { + "id": "341279", + "ident": "DZ-0006", + "type": "closed", + "name": "Guelma Belkheir Airport", + "latitude_deg": "36.451942", + "longitude_deg": "7.470961", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-24", + "municipality": "Guelma", + "scheduled_service": "no" + }, + { + "id": "341280", + "ident": "DZ-0007", + "type": "heliport", + "name": "Zéralda Hospital Helipad", + "latitude_deg": "36.70129", + "longitude_deg": "2.84373", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-16", + "municipality": "Zéralda", + "scheduled_service": "no" + }, + { + "id": "341281", + "ident": "DZ-0008", + "type": "heliport", + "name": "Ain Naadja Military Hospital Helipad", + "latitude_deg": "36.72064", + "longitude_deg": "3.06608", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-16", + "municipality": "Djasr Kasentina", + "scheduled_service": "no" + }, + { + "id": "341282", + "ident": "DZ-0009", + "type": "heliport", + "name": "Algiers Great Mosque Heliport", + "latitude_deg": "36.73459", + "longitude_deg": "3.14417", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-16", + "municipality": "Mohammadia", + "scheduled_service": "no" + }, + { + "id": "341283", + "ident": "DZ-0010", + "type": "heliport", + "name": "Timiaouine Heliport", + "latitude_deg": "20.439241", + "longitude_deg": "1.825415", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-52", + "municipality": "Timiaouine", + "scheduled_service": "no" + }, + { + "id": "341284", + "ident": "DZ-0011", + "type": "closed", + "name": "Tinerkouk Airstrip", + "latitude_deg": "29.80322", + "longitude_deg": "0.60902", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-54", + "municipality": "Tinerkouk", + "scheduled_service": "no" + }, + { + "id": "349345", + "ident": "DZ-0012", + "type": "small_airport", + "name": "Groupement Reggane Nord Airport", + "latitude_deg": "26.80634", + "longitude_deg": "0.20704", + "elevation_ft": "883", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-01", + "municipality": "Reggane", + "scheduled_service": "no" + }, + { + "id": "349346", + "ident": "DZ-0013", + "type": "small_airport", + "name": "Reggane Nord Airport", + "latitude_deg": "26.91535", + "longitude_deg": "0.07195", + "elevation_ft": "896", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-01", + "municipality": "Sali", + "scheduled_service": "no" + }, + { + "id": "351623", + "ident": "DZ-0014", + "type": "heliport", + "name": "Cherchell Military Academy Heliport", + "latitude_deg": "36.59431", + "longitude_deg": "2.20544", + "elevation_ft": "669", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-42", + "municipality": "Cherchell", + "scheduled_service": "no" + }, + { + "id": "351624", + "ident": "DZ-0015", + "type": "closed", + "name": "Tipaza Aeroclub", + "latitude_deg": "36.58291", + "longitude_deg": "2.10286", + "elevation_ft": "40", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-42", + "municipality": "Sidi Ghiles", + "scheduled_service": "no" + }, + { + "id": "354383", + "ident": "DZ-0016", + "type": "medium_airport", + "name": "Amguid Regional Airport", + "latitude_deg": "26.393417", + "longitude_deg": "5.325419", + "elevation_ft": "2001", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-11", + "municipality": "Idlès", + "scheduled_service": "no" + }, + { + "id": "430143", + "ident": "DZ-0017", + "type": "small_airport", + "name": "Menzel Lejmat Nord Airport", + "latitude_deg": "30.33557", + "longitude_deg": "7.834783", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-30", + "municipality": "El Borma", + "scheduled_service": "no" + }, + { + "id": "430144", + "ident": "DZ-0018", + "type": "small_airport", + "name": "El Merk Airport", + "latitude_deg": "30.30442", + "longitude_deg": "8.16308", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-33", + "municipality": "Debdeb", + "scheduled_service": "no" + }, + { + "id": "430146", + "ident": "DZ-0019", + "type": "small_airport", + "name": "Hassi Bel Guebour Airport", + "latitude_deg": "28.68354", + "longitude_deg": "6.49767", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-33", + "municipality": "Hassi Bel Guebour", + "scheduled_service": "no" + }, + { + "id": "430147", + "ident": "DZ-0020", + "type": "small_airport", + "name": "Gassi Touil Airport", + "latitude_deg": "30.51446", + "longitude_deg": "6.45266", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-30", + "municipality": "Hassi Messaoud", + "scheduled_service": "no" + }, + { + "id": "430148", + "ident": "DZ-0021", + "type": "small_airport", + "name": "Trczina Airport", + "latitude_deg": "31.12059", + "longitude_deg": "6.34713", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-30", + "municipality": "Hassi Messaoud", + "scheduled_service": "no" + }, + { + "id": "430149", + "ident": "DZ-0022", + "type": "heliport", + "name": "El Moustakbal Base Heliport", + "latitude_deg": "31.56469", + "longitude_deg": "6.18784", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-30", + "municipality": "Hassi Messaoud", + "scheduled_service": "no" + }, + { + "id": "430150", + "ident": "DZ-0023", + "type": "small_airport", + "name": "El Borma Ouargla Airport", + "latitude_deg": "31.57946", + "longitude_deg": "9.12337", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-30", + "municipality": "El Borma", + "scheduled_service": "no" + }, + { + "id": "430151", + "ident": "DZ-0024", + "type": "small_airport", + "name": "Bir H'Med Airport", + "latitude_deg": "31.5822", + "longitude_deg": "8.23678", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-30", + "municipality": "El Borma", + "scheduled_service": "no" + }, + { + "id": "430152", + "ident": "DZ-0025", + "type": "small_airport", + "name": "Rhoud El Baguel Airport", + "latitude_deg": "31.3859", + "longitude_deg": "6.95362", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-30", + "municipality": "El Borma", + "scheduled_service": "no" + }, + { + "id": "430153", + "ident": "DZ-0026", + "type": "small_airport", + "name": "Hassi Messaoud East Airport", + "latitude_deg": "31.50603", + "longitude_deg": "6.64072", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-30", + "municipality": "Hassi Messaoud", + "scheduled_service": "no" + }, + { + "id": "430154", + "ident": "DZ-0027", + "type": "small_airport", + "name": "Hassi Fehal Airport", + "latitude_deg": "31.68858", + "longitude_deg": "3.71568", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-47", + "municipality": "Hassi Fehal", + "scheduled_service": "no" + }, + { + "id": "430155", + "ident": "DZ-0028", + "type": "small_airport", + "name": "Oued Zine Airport", + "latitude_deg": "28.141556", + "longitude_deg": "0.244846", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-01", + "municipality": "Tamentit", + "scheduled_service": "no" + }, + { + "id": "430156", + "ident": "DZ-0029", + "type": "small_airport", + "name": "Oued Zine North Airport", + "latitude_deg": "28.21292", + "longitude_deg": "0.20262", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-01", + "municipality": "Tamentit", + "scheduled_service": "no" + }, + { + "id": "430159", + "ident": "DZ-0030", + "type": "small_airport", + "name": "Tin Zaoutine Airport", + "latitude_deg": "19.99369", + "longitude_deg": "3.0223", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-58", + "municipality": "Tin Zaoutine", + "scheduled_service": "no" + }, + { + "id": "430160", + "ident": "DZ-0031", + "type": "heliport", + "name": "Tin Zaoutine Heliport", + "latitude_deg": "19.96527", + "longitude_deg": "2.96141", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-58", + "municipality": "Tin Zaoutine", + "scheduled_service": "no" + }, + { + "id": "430161", + "ident": "DZ-0032", + "type": "heliport", + "name": "Tawendert Heliport", + "latitude_deg": "20.37853", + "longitude_deg": "2.46094", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-58", + "municipality": "Tawendert", + "scheduled_service": "no" + }, + { + "id": "430163", + "ident": "DZ-0033", + "type": "heliport", + "name": "Tarat Heliport", + "latitude_deg": "26.20509", + "longitude_deg": "9.3912", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-33", + "municipality": "Illizi", + "scheduled_service": "no" + }, + { + "id": "430165", + "ident": "DZ-0034", + "type": "small_airport", + "name": "Krechba Airport", + "latitude_deg": "29.071282", + "longitude_deg": "2.2059", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-50", + "municipality": "Hassi Gara", + "scheduled_service": "no" + }, + { + "id": "430166", + "ident": "DZ-0035", + "type": "small_airport", + "name": "Tegentour Airport", + "latitude_deg": "28.46911", + "longitude_deg": "2.51871", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-57", + "municipality": "In Salah", + "scheduled_service": "no" + }, + { + "id": "430167", + "ident": "DZ-0036", + "type": "small_airport", + "name": "REG In Salah Airport", + "latitude_deg": "28.07732", + "longitude_deg": "2.12826", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-57", + "municipality": "In Salah", + "scheduled_service": "no" + }, + { + "id": "430168", + "ident": "DZ-0037", + "type": "small_airport", + "name": "REG In Salah North Airport", + "latitude_deg": "28.08605", + "longitude_deg": "2.14052", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-57", + "municipality": "In Salah", + "scheduled_service": "no" + }, + { + "id": "430169", + "ident": "DZ-0038", + "type": "small_airport", + "name": "Oued Zine East Airport", + "latitude_deg": "28.11892", + "longitude_deg": "0.32861", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-01", + "municipality": "Tamentit", + "scheduled_service": "no" + }, + { + "id": "430170", + "ident": "DZ-0039", + "type": "small_airport", + "name": "Touat Oil Airport", + "latitude_deg": "27.81997", + "longitude_deg": "0.23896", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-01", + "municipality": "Tamentit", + "scheduled_service": "no" + }, + { + "id": "430236", + "ident": "DZ-0040", + "type": "small_airport", + "name": "Ras el Miaad Airport", + "latitude_deg": "34.23833", + "longitude_deg": "4.46004", + "continent": "AF", + "iso_country": "DZ", + "iso_region": "DZ-51", + "municipality": "Ras el Miaad", + "scheduled_service": "no" + }, + { + "id": "352223", + "ident": "DZH", + "type": "small_airport", + "name": "Dazhou Jinya Airport", + "latitude_deg": "31.048815", + "longitude_deg": "107.435646", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Dazhou (Dachuan)", + "scheduled_service": "no", + "iata_code": "DZH" + }, + { + "id": "17156", + "ident": "E07", + "type": "small_airport", + "name": "Tatum Airport", + "latitude_deg": "33.2611999512", + "longitude_deg": "-103.277000427", + "elevation_ft": "3986", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Tatum", + "scheduled_service": "no", + "gps_code": "18T", + "local_code": "18T", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tatum_Airport", + "keywords": "NM18, E07" + }, + { + "id": "17157", + "ident": "E20", + "type": "seaplane_base", + "name": "Lake Berryessa Seaplane Base", + "latitude_deg": "38.550979", + "longitude_deg": "-122.227682", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Napa", + "scheduled_service": "no", + "local_code": "E20" + }, + { + "id": "17158", + "ident": "E27", + "type": "small_airport", + "name": "Elk Grove Airport", + "latitude_deg": "38.392398834228516", + "longitude_deg": "-121.33100128173828", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Elk Grove", + "scheduled_service": "no", + "gps_code": "E27", + "local_code": "E27" + }, + { + "id": "17159", + "ident": "E32", + "type": "small_airport", + "name": "Lindrith Airpark", + "latitude_deg": "36.29140090942383", + "longitude_deg": "-107.05599975585938", + "elevation_ft": "7202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Lindrith", + "scheduled_service": "no", + "gps_code": "E32", + "local_code": "E32" + }, + { + "id": "17160", + "ident": "E36", + "type": "small_airport", + "name": "Georgetown Airport", + "latitude_deg": "38.921100616455", + "longitude_deg": "-120.86499786377", + "elevation_ft": "2623", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Georgetown", + "scheduled_service": "no", + "gps_code": "E36", + "local_code": "E36", + "wikipedia_link": "https://en.wikipedia.org/wiki/Georgetown_Airport", + "keywords": "Q61" + }, + { + "id": "17161", + "ident": "E37", + "type": "small_airport", + "name": "Flying J Ranch Airport", + "latitude_deg": "32.846316", + "longitude_deg": "-109.87946", + "elevation_ft": "3114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Pima", + "scheduled_service": "no", + "local_code": "E37", + "wikipedia_link": "https://en.wikipedia.org/wiki/Flying_J_Ranch_Airport", + "keywords": "AN91" + }, + { + "id": "17162", + "ident": "E40", + "type": "small_airport", + "name": "Wilson's Airport", + "latitude_deg": "35.652099609375", + "longitude_deg": "-81.35790252685547", + "elevation_ft": "985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hickory", + "scheduled_service": "no", + "gps_code": "E40", + "local_code": "E40" + }, + { + "id": "45968", + "ident": "E53", + "type": "small_airport", + "name": "Engler Field airport", + "latitude_deg": "43.783812", + "longitude_deg": "-82.986249", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Bad Axe", + "scheduled_service": "no", + "gps_code": "E53", + "local_code": "E53" + }, + { + "id": "17164", + "ident": "E55", + "type": "small_airport", + "name": "Ocean Ridge Airport", + "latitude_deg": "38.801300048828", + "longitude_deg": "-123.5299987793", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Gualala", + "scheduled_service": "no", + "gps_code": "E55", + "local_code": "E55", + "home_link": "http://oceanridgeairport.org/about/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ocean_Ridge_Airport", + "keywords": "Q69" + }, + { + "id": "316238", + "ident": "E58", + "type": "small_airport", + "name": "Bird Dog Airfield", + "latitude_deg": "33.3074", + "longitude_deg": "-97.3472", + "elevation_ft": "893", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Krum", + "scheduled_service": "no", + "gps_code": "E58", + "local_code": "E58" + }, + { + "id": "17165", + "ident": "E61", + "type": "seaplane_base", + "name": "Conchas Lake Seaplane Base", + "latitude_deg": "35.38420104980469", + "longitude_deg": "-104.21600341796875", + "elevation_ft": "4201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Conchas Dam", + "scheduled_service": "no", + "gps_code": "E61", + "local_code": "E61" + }, + { + "id": "17166", + "ident": "E66", + "type": "heliport", + "name": "Maple Grove Heliport", + "latitude_deg": "42.71709824", + "longitude_deg": "-84.06189728", + "elevation_ft": "908", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Fowlerville", + "scheduled_service": "no", + "gps_code": "E66", + "local_code": "E66" + }, + { + "id": "17167", + "ident": "E68", + "type": "small_airport", + "name": "Estrella Sailport Gliderport", + "latitude_deg": "33.08530044555664", + "longitude_deg": "-112.16100311279297", + "elevation_ft": "1273", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Maricopa", + "scheduled_service": "no", + "gps_code": "E68", + "local_code": "E68" + }, + { + "id": "17168", + "ident": "E70", + "type": "small_airport", + "name": "Huber Airpark", + "latitude_deg": "29.602274", + "longitude_deg": "-97.990572", + "elevation_ft": "556", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seguin", + "scheduled_service": "no", + "local_code": "E70", + "keywords": "Huber Airpark Civic Club LLC Airport" + }, + { + "id": "17169", + "ident": "E79", + "type": "small_airport", + "name": "Sierra Sky Park Airport", + "latitude_deg": "36.840198516846", + "longitude_deg": "-119.87000274658", + "elevation_ft": "321", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fresno", + "scheduled_service": "no", + "gps_code": "E79", + "local_code": "E79", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sierra_Sky_Park_Airport", + "keywords": "Q60" + }, + { + "id": "17170", + "ident": "E81", + "type": "small_airport", + "name": "Superior Municipal Airport", + "latitude_deg": "33.28139", + "longitude_deg": "-111.128941", + "elevation_ft": "2646", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Superior", + "scheduled_service": "no", + "local_code": "E81" + }, + { + "id": "17171", + "ident": "E85", + "type": "small_airport", + "name": "Denio Junction Airport", + "latitude_deg": "41.9541015625", + "longitude_deg": "-118.63099670410156", + "elevation_ft": "4202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Denio", + "scheduled_service": "no", + "gps_code": "E85", + "local_code": "E85" + }, + { + "id": "17172", + "ident": "E92", + "type": "small_airport", + "name": "Estancia Municipal Airport", + "latitude_deg": "34.76340103149414", + "longitude_deg": "-106.04100036621094", + "elevation_ft": "6100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Estancia", + "scheduled_service": "no", + "gps_code": "E92", + "local_code": "E92" + }, + { + "id": "17173", + "ident": "E94", + "type": "small_airport", + "name": "Glenwood Airport", + "latitude_deg": "33.353219", + "longitude_deg": "-108.867197", + "elevation_ft": "5428", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Glenwood", + "scheduled_service": "no", + "local_code": "E94", + "keywords": "Catron County" + }, + { + "id": "302489", + "ident": "EAL", + "type": "small_airport", + "name": "Elenak Airport", + "latitude_deg": "9.319305555560002", + "longitude_deg": "166.847777778", + "elevation_ft": "16", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-KWA", + "municipality": "Mejato Island", + "scheduled_service": "no", + "iata_code": "EAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elenak_Airport" + }, + { + "id": "337381", + "ident": "EBAG", + "type": "heliport", + "name": "Grâce-Hollogne Agusta Heliport", + "latitude_deg": "50.640081", + "longitude_deg": "5.457585", + "elevation_ft": "590", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLG", + "municipality": "Grâce-Hollogne", + "scheduled_service": "no", + "gps_code": "EBAG" + }, + { + "id": "43724", + "ident": "EBAK", + "type": "closed", + "name": "Kiel heliport", + "latitude_deg": "51.200153", + "longitude_deg": "4.359219", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Antwerpen", + "scheduled_service": "no", + "gps_code": "EBAK" + }, + { + "id": "298604", + "ident": "EBAL", + "type": "heliport", + "name": "Aalst Hospital Helistrip", + "latitude_deg": "50.943087", + "longitude_deg": "4.055763", + "elevation_ft": "141", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Aalst", + "scheduled_service": "no", + "keywords": "OLV-Ziekenhuis" + }, + { + "id": "29029", + "ident": "EBAM", + "type": "small_airport", + "name": "Amougies Airfield", + "latitude_deg": "50.740101", + "longitude_deg": "3.4849", + "elevation_ft": "49", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WHT", + "municipality": "Mont-de-l'Enclus", + "scheduled_service": "no", + "gps_code": "EBAM", + "home_link": "http://www.airport-amougies.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amougies_Airfield" + }, + { + "id": "30962", + "ident": "EBAR", + "type": "small_airport", + "name": "Arlon-Sterpenich ULM Airfield", + "latitude_deg": "49.661981", + "longitude_deg": "5.885953", + "elevation_ft": "1138", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLX", + "municipality": "Arlon", + "scheduled_service": "no", + "gps_code": "EBAR", + "home_link": "http://www.arelair.be", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arlon-Sterpenich_Aerodrome" + }, + { + "id": "43726", + "ident": "EBAS", + "type": "heliport", + "name": "'s Gravenwezel heliport", + "latitude_deg": "51.246944427490234", + "longitude_deg": "4.542778015136719", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Schilde", + "scheduled_service": "no", + "gps_code": "EBAS" + }, + { + "id": "43743", + "ident": "EBAT", + "type": "closed", + "name": "Meldert Heliport", + "latitude_deg": "50.92683", + "longitude_deg": "4.112962", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Aalst", + "scheduled_service": "no", + "gps_code": "EBAT" + }, + { + "id": "30963", + "ident": "EBAV", + "type": "small_airport", + "name": "Avernas-le-Bauduin Airfield UL", + "latitude_deg": "50.70534", + "longitude_deg": "5.06633", + "elevation_ft": "394", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLG", + "municipality": "Hannut", + "scheduled_service": "no", + "gps_code": "EBAV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Avernas-le-Bauduin_Airfield", + "keywords": "Aéroclub de Hesbaye" + }, + { + "id": "2152", + "ident": "EBAW", + "type": "medium_airport", + "name": "Antwerp International Airport (Deurne)", + "latitude_deg": "51.1894", + "longitude_deg": "4.46028", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Antwerp", + "scheduled_service": "yes", + "gps_code": "EBAW", + "iata_code": "ANR", + "home_link": "http://www.antwerp-airport.be/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Antwerp_International_Airport" + }, + { + "id": "29030", + "ident": "EBBA", + "type": "heliport", + "name": "Baudour Heliport", + "latitude_deg": "50.469633", + "longitude_deg": "3.838724", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WHT", + "municipality": "Douvrain", + "scheduled_service": "no", + "gps_code": "EBBA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baudour_Heliport" + }, + { + "id": "43725", + "ident": "EBBC", + "type": "heliport", + "name": "Luyckx heliport", + "latitude_deg": "51.30472183227539", + "longitude_deg": "4.629444122314453", + "elevation_ft": "99", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Brecht", + "scheduled_service": "no", + "gps_code": "EBBC" + }, + { + "id": "2153", + "ident": "EBBE", + "type": "medium_airport", + "name": "Beauvechain Air Base", + "latitude_deg": "50.75859832763672", + "longitude_deg": "4.768330097198486", + "elevation_ft": "370", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WBR", + "municipality": "Beauvechain", + "scheduled_service": "no", + "gps_code": "EBBE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beauvechain_Air_Base" + }, + { + "id": "30964", + "ident": "EBBG", + "type": "closed", + "name": "Michamps Ulmodrome", + "latitude_deg": "50.0527992249", + "longitude_deg": "5.79861021042", + "elevation_ft": "1770", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLX", + "municipality": "Bastogne", + "scheduled_service": "no", + "gps_code": "EBBG" + }, + { + "id": "43723", + "ident": "EBBH", + "type": "heliport", + "name": "Keysers heliport", + "latitude_deg": "51.343055725097656", + "longitude_deg": "4.621943950653076", + "elevation_ft": "82", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Brecht", + "scheduled_service": "no", + "gps_code": "EBBH" + }, + { + "id": "2154", + "ident": "EBBL", + "type": "medium_airport", + "name": "Kleine Brogel Air Base", + "latitude_deg": "51.168301", + "longitude_deg": "5.47", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VLI", + "municipality": "Kleine Brogel", + "scheduled_service": "no", + "gps_code": "EBBL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kleine_Brogel_Air_Base" + }, + { + "id": "323793", + "ident": "EBBM", + "type": "heliport", + "name": "Brakel/Michelbeke Heliport", + "latitude_deg": "50.830885", + "longitude_deg": "3.774096", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Michelbeke", + "scheduled_service": "no", + "gps_code": "EBBM" + }, + { + "id": "30965", + "ident": "EBBN", + "type": "small_airport", + "name": "Büllingen ULM", + "latitude_deg": "50.415001", + "longitude_deg": "6.27639", + "elevation_ft": "2067", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLG", + "municipality": "Büllingen", + "scheduled_service": "no", + "gps_code": "EBBN", + "home_link": "http://www.feuervogel.be/", + "wikipedia_link": "https://en.wikipedia.org/wiki/B%C3%BCllingen_Airfield" + }, + { + "id": "30966", + "ident": "EBBO", + "type": "closed", + "name": "Mogimont ULM", + "latitude_deg": "49.866402", + "longitude_deg": "5.06806", + "elevation_ft": "1394", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLX", + "municipality": "Bouillon", + "scheduled_service": "no", + "gps_code": "EBBO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mogimont_Airport" + }, + { + "id": "2155", + "ident": "EBBR", + "type": "large_airport", + "name": "Brussels Airport", + "latitude_deg": "50.901402", + "longitude_deg": "4.48444", + "elevation_ft": "184", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-BRU", + "municipality": "Zaventem", + "scheduled_service": "yes", + "gps_code": "EBBR", + "iata_code": "BRU", + "home_link": "http://www.brusselsairport.be/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brussels_Airport", + "keywords": "Brussels National, Zaventem" + }, + { + "id": "29031", + "ident": "EBBT", + "type": "small_airport", + "name": "Brasschaat Airfield", + "latitude_deg": "51.34259", + "longitude_deg": "4.503451", + "elevation_ft": "76", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Brasschaat", + "scheduled_service": "no", + "gps_code": "EBBT", + "home_link": "http://www.aeroclub-brasschaat.be/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brasschaat_Airfield" + }, + { + "id": "30967", + "ident": "EBBW", + "type": "closed", + "name": "Bassenge-Wonck ULM", + "latitude_deg": "50.778301", + "longitude_deg": "5.61667", + "elevation_ft": "367", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLG", + "municipality": "Bassenge", + "scheduled_service": "no", + "gps_code": "EBBW" + }, + { + "id": "2156", + "ident": "EBBX", + "type": "small_airport", + "name": "Jehonville Air Base", + "latitude_deg": "49.891483", + "longitude_deg": "5.227405", + "elevation_ft": "1514", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLX", + "municipality": "Bertrix", + "scheduled_service": "no", + "gps_code": "EBBX" + }, + { + "id": "43748", + "ident": "EBBY", + "type": "small_airport", + "name": "Baisy-Thy ULM", + "latitude_deg": "50.568611", + "longitude_deg": "4.434722", + "elevation_ft": "525", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WBR", + "municipality": "Genappe", + "scheduled_service": "no", + "gps_code": "EBBY", + "home_link": "http://www.ulm.be/" + }, + { + "id": "43749", + "ident": "EBBZ", + "type": "small_airport", + "name": "Buzet ULM", + "latitude_deg": "50.541667", + "longitude_deg": "4.3811111", + "elevation_ft": "522", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WHT", + "municipality": "Pont-A-Celles", + "scheduled_service": "no", + "gps_code": "EBBZ", + "home_link": "http://www.confluence.be" + }, + { + "id": "29771", + "ident": "EBCF", + "type": "small_airport", + "name": "Cerfontaine Airfield", + "latitude_deg": "50.152802", + "longitude_deg": "4.38722", + "elevation_ft": "955", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WNA", + "municipality": "Cerfontaine", + "scheduled_service": "no", + "gps_code": "EBCF", + "home_link": "https://www.cerfontaine-aerodrome.com/" + }, + { + "id": "300107", + "ident": "EBCH", + "type": "closed", + "name": "Casteau / SHAPE Helipad", + "latitude_deg": "50.503056", + "longitude_deg": "3.982501", + "elevation_ft": "287", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WHT", + "municipality": "Mons", + "scheduled_service": "no", + "gps_code": "EBCT", + "keywords": "Supreme Headquarters Allied Powers Europe, NATO" + }, + { + "id": "2157", + "ident": "EBCI", + "type": "medium_airport", + "name": "Brussels South Charleroi Airport", + "latitude_deg": "50.459202", + "longitude_deg": "4.45382", + "elevation_ft": "614", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WHT", + "municipality": "Brussels", + "scheduled_service": "yes", + "gps_code": "EBCI", + "iata_code": "CRL", + "home_link": "http://www.charleroi-airport.com/doc.php?nd=o29&tid=29&lg=2&docid=1&site=1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brussels_South_Charleroi_Airport", + "keywords": "Gosselies Airport" + }, + { + "id": "43761", + "ident": "EBCR", + "type": "closed", + "name": "Chimay-Ronvaux Ulmodrome", + "latitude_deg": "50.2472229004", + "longitude_deg": "5.11388921738", + "elevation_ft": "1076", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WNA", + "municipality": "Ciney", + "scheduled_service": "no", + "gps_code": "EBCR" + }, + { + "id": "30968", + "ident": "EBCS", + "type": "closed", + "name": "Saint-Remy ULM", + "latitude_deg": "50.0583", + "longitude_deg": "4.28194", + "elevation_ft": "820", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WHT", + "municipality": "Chimay", + "scheduled_service": "no", + "gps_code": "EBCS" + }, + { + "id": "2158", + "ident": "EBCV", + "type": "medium_airport", + "name": "Chièvres Air Base", + "latitude_deg": "50.575801849365234", + "longitude_deg": "3.8310000896453857", + "elevation_ft": "194", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WHT", + "municipality": "Chièvres", + "scheduled_service": "no", + "gps_code": "EBCV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chievres_Air_Base" + }, + { + "id": "29032", + "ident": "EBDI", + "type": "heliport", + "name": "Diksmuide Heliport", + "latitude_deg": "51.019276", + "longitude_deg": "2.858205", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Diksmuide", + "scheduled_service": "no", + "gps_code": "EBDI" + }, + { + "id": "43738", + "ident": "EBDL", + "type": "closed", + "name": "Lanklaar heliport", + "latitude_deg": "51.017651", + "longitude_deg": "5.699703", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VLI", + "municipality": "Dilsen-Stokkem", + "scheduled_service": "no", + "gps_code": "EBDL" + }, + { + "id": "323797", + "ident": "EBDR", + "type": "heliport", + "name": "Antwerp/Commandant Fourcault Heliport", + "latitude_deg": "51.239415", + "longitude_deg": "4.407885", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Antwerp", + "scheduled_service": "no", + "gps_code": "EBDR" + }, + { + "id": "30969", + "ident": "EBDT", + "type": "small_airport", + "name": "Schaffen Airfield", + "latitude_deg": "50.999199", + "longitude_deg": "5.06556", + "elevation_ft": "100", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VBR", + "municipality": "Diest", + "scheduled_service": "no", + "gps_code": "EBDT" + }, + { + "id": "43734", + "ident": "EBDW", + "type": "closed", + "name": "Webbekom heliport", + "latitude_deg": "50.958132", + "longitude_deg": "5.064743", + "elevation_ft": "130", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VBR", + "municipality": "Diest", + "scheduled_service": "no", + "gps_code": "EBDW", + "keywords": "Paramount" + }, + { + "id": "337294", + "ident": "EBDZ", + "type": "heliport", + "name": "Deinze - De Groote", + "latitude_deg": "50.963801", + "longitude_deg": "3.542682", + "elevation_ft": "36", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Deinze", + "scheduled_service": "no", + "gps_code": "EBDZ" + }, + { + "id": "337302", + "ident": "EBEA", + "type": "heliport", + "name": "Eeklo - AZ Alma Heliport", + "latitude_deg": "51.191179", + "longitude_deg": "3.534498", + "elevation_ft": "24", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Eeklo", + "scheduled_service": "no", + "gps_code": "EBEA" + }, + { + "id": "324056", + "ident": "EBEB", + "type": "heliport", + "name": "Evergem / Belzele Heliport", + "latitude_deg": "51.100833", + "longitude_deg": "3.653611", + "elevation_ft": "27", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Evergem", + "scheduled_service": "no", + "gps_code": "EBEB" + }, + { + "id": "324980", + "ident": "EBEH", + "type": "seaplane_base", + "name": "Hydrobase de l'Eau d'Heure", + "latitude_deg": "50.183611", + "longitude_deg": "4.369722", + "elevation_ft": "810", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WNA", + "scheduled_service": "no", + "gps_code": "EBEH", + "home_link": "http://www.seaplane.be" + }, + { + "id": "43721", + "ident": "EBEN", + "type": "heliport", + "name": "Engels heliport", + "latitude_deg": "51.211666107177734", + "longitude_deg": "4.5808329582214355", + "elevation_ft": "33", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Ranst", + "scheduled_service": "no", + "gps_code": "EBEN" + }, + { + "id": "43727", + "ident": "EBEU", + "type": "heliport", + "name": "UZA heliport", + "latitude_deg": "51.155879974365234", + "longitude_deg": "4.409976005554199", + "elevation_ft": "46", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Edegem", + "scheduled_service": "no", + "gps_code": "EBEU" + }, + { + "id": "43760", + "ident": "EBFD", + "type": "closed", + "name": "Dompire heliport", + "latitude_deg": "50.550835", + "longitude_deg": "4.996389", + "elevation_ft": "607", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WNA", + "municipality": "Fernelmont", + "scheduled_service": "no", + "gps_code": "EBFD" + }, + { + "id": "2159", + "ident": "EBFN", + "type": "medium_airport", + "name": "Koksijde Air Base", + "latitude_deg": "51.090301513671875", + "longitude_deg": "2.652780055999756", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Koksijde", + "scheduled_service": "no", + "gps_code": "EBFN" + }, + { + "id": "43756", + "ident": "EBFR", + "type": "heliport", + "name": "Francorchamps heliport", + "latitude_deg": "50.456178881499994", + "longitude_deg": "5.95332384109", + "elevation_ft": "1575", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLG", + "municipality": "Francorchamps", + "scheduled_service": "no", + "gps_code": "EBFR" + }, + { + "id": "2160", + "ident": "EBFS", + "type": "medium_airport", + "name": "Florennes Air Base", + "latitude_deg": "50.2433013916", + "longitude_deg": "4.64583015442", + "elevation_ft": "935", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WNA", + "municipality": "Florennes", + "scheduled_service": "no", + "gps_code": "EBFS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Florennes_Air_Base" + }, + { + "id": "323958", + "ident": "EBGA", + "type": "heliport", + "name": "UZ Leuven Hospital Heliport", + "latitude_deg": "50.877291", + "longitude_deg": "4.672821", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VBR", + "municipality": "Leuven", + "scheduled_service": "no", + "gps_code": "EBGA" + }, + { + "id": "28478", + "ident": "EBGB", + "type": "small_airport", + "name": "Grimbergen Airfield", + "latitude_deg": "50.948546", + "longitude_deg": "4.39181", + "elevation_ft": "70", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VBR", + "municipality": "Grimbergen", + "scheduled_service": "no", + "gps_code": "EBGB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grimbergen_Airfield", + "keywords": "Bullange, Lint Airport" + }, + { + "id": "323959", + "ident": "EBGE", + "type": "heliport", + "name": "Grand Hôpital de Charleroi (GHDC Asbl) Heliport", + "latitude_deg": "50.37581", + "longitude_deg": "4.486308", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WHT", + "municipality": "Loverval", + "scheduled_service": "no", + "gps_code": "EBGE" + }, + { + "id": "29033", + "ident": "EBGG", + "type": "small_airport", + "name": "Overboelare Airfield", + "latitude_deg": "50.7556", + "longitude_deg": "3.86389", + "elevation_ft": "56", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Geraardsbergen", + "scheduled_service": "no", + "gps_code": "EBGG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Overboelare_Airfield" + }, + { + "id": "308567", + "ident": "EBGL", + "type": "closed", + "name": "CRC Glons Heliport", + "latitude_deg": "50.73973", + "longitude_deg": "5.5421", + "elevation_ft": "438", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLG", + "municipality": "Bassenge", + "scheduled_service": "no", + "gps_code": "EBGL" + }, + { + "id": "29034", + "ident": "EBGT", + "type": "heliport", + "name": "Ghent University Heliport", + "latitude_deg": "51.020551", + "longitude_deg": "3.730341", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Gent", + "scheduled_service": "no", + "gps_code": "EBGT" + }, + { + "id": "342118", + "ident": "EBGU", + "type": "heliport", + "name": "Nevele Heliport", + "latitude_deg": "51.046686", + "longitude_deg": "3.520469", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Deinze", + "scheduled_service": "no", + "gps_code": "EBGU" + }, + { + "id": "43736", + "ident": "EBHA", + "type": "heliport", + "name": "Ham heliport", + "latitude_deg": "51.07935333251953", + "longitude_deg": "5.109154224395752", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VLI", + "municipality": "Ham", + "scheduled_service": "no", + "gps_code": "EBHA" + }, + { + "id": "30970", + "ident": "EBHE", + "type": "closed", + "name": "Héron-Couthuin Ulmodrome", + "latitude_deg": "50.538898468", + "longitude_deg": "5.10916996002", + "elevation_ft": "607", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLG", + "municipality": "Héron", + "scheduled_service": "no", + "gps_code": "EBHE" + }, + { + "id": "337611", + "ident": "EBHF", + "type": "heliport", + "name": "Kallo - De Perel Heliport", + "latitude_deg": "51.268889", + "longitude_deg": "4.295833", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Beveren", + "scheduled_service": "no", + "gps_code": "EBHF" + }, + { + "id": "43735", + "ident": "EBHL", + "type": "heliport", + "name": "Halen heliport", + "latitude_deg": "50.93083190917969", + "longitude_deg": "5.0813889503479", + "elevation_ft": "121", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VLI", + "municipality": "Halen", + "scheduled_service": "no", + "gps_code": "EBHL" + }, + { + "id": "43740", + "ident": "EBHM", + "type": "heliport", + "name": "Maasland heliport", + "latitude_deg": "50.90972137451172", + "longitude_deg": "5.348888874053955", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VLI", + "municipality": "Hasselt", + "scheduled_service": "no", + "gps_code": "EBHM" + }, + { + "id": "29954", + "ident": "EBHN", + "type": "small_airport", + "name": "Hoevenen Airfield", + "latitude_deg": "51.306098938", + "longitude_deg": "4.387219905849999", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Hoevenen", + "scheduled_service": "no", + "gps_code": "EBHN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hoevenen_Airfield" + }, + { + "id": "43730", + "ident": "EBHO", + "type": "heliport", + "name": "Holsbeek heliport", + "latitude_deg": "50.919676", + "longitude_deg": "4.768925", + "elevation_ft": "82", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VBR", + "municipality": "Holsbeek", + "scheduled_service": "no", + "gps_code": "EBHO" + }, + { + "id": "337583", + "ident": "EBHS", + "type": "heliport", + "name": "Stevoort Heliport", + "latitude_deg": "50.92341", + "longitude_deg": "5.234258", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VLI", + "municipality": "Hasselt", + "scheduled_service": "no", + "gps_code": "EBHS" + }, + { + "id": "43737", + "ident": "EBHT", + "type": "heliport", + "name": "Houthalen heliport", + "latitude_deg": "51.01499938964844", + "longitude_deg": "5.362500190734863", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VLI", + "municipality": "Houthalen", + "scheduled_service": "no", + "gps_code": "EBHT" + }, + { + "id": "29035", + "ident": "EBIS", + "type": "small_airport", + "name": "Ath/Isieres Ulmodrome", + "latitude_deg": "50.6641998291", + "longitude_deg": "3.80444002151", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WHT", + "municipality": "Isieres", + "scheduled_service": "no", + "gps_code": "EBIS" + }, + { + "id": "337032", + "ident": "EBJS", + "type": "heliport", + "name": "Ath-Ghislenghien", + "latitude_deg": "50.666694", + "longitude_deg": "3.870194", + "elevation_ft": "175", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WHT", + "municipality": "Ath", + "scheduled_service": "no", + "gps_code": "EBJS" + }, + { + "id": "337614", + "ident": "EBKG", + "type": "heliport", + "name": "Kortrijk - AZ Groeninge Helipad", + "latitude_deg": "50.802873", + "longitude_deg": "3.264039", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Kortrijk", + "scheduled_service": "no", + "gps_code": "EBKG" + }, + { + "id": "29036", + "ident": "EBKH", + "type": "small_airport", + "name": "Balen-Keiheuvel Airfield", + "latitude_deg": "51.180957", + "longitude_deg": "5.221124", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Balen", + "scheduled_service": "no", + "gps_code": "EBKH", + "home_link": "http://www.aeroclub-keiheuvel.be/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Balen-Keiheuvel_Aerodrome" + }, + { + "id": "324055", + "ident": "EBKR", + "type": "heliport", + "name": "Kruishoutem / SONS Heliport", + "latitude_deg": "50.891528", + "longitude_deg": "3.500812", + "elevation_ft": "198", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Kruishoutem", + "scheduled_service": "no", + "gps_code": "EBKR" + }, + { + "id": "2161", + "ident": "EBKT", + "type": "medium_airport", + "name": "Wevelgem Airport", + "latitude_deg": "50.8172", + "longitude_deg": "3.20472", + "elevation_ft": "55", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Wevelgem", + "scheduled_service": "no", + "gps_code": "EBKT", + "iata_code": "KJK", + "home_link": "http://www.kortrijkairport.be", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kortrijk-Wevelgem_International_Airport" + }, + { + "id": "29037", + "ident": "EBKU", + "type": "closed", + "name": "Kuurne Heliport", + "latitude_deg": "50.859402", + "longitude_deg": "3.25667", + "elevation_ft": "47", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Kuurne", + "scheduled_service": "no", + "gps_code": "EBKU" + }, + { + "id": "29038", + "ident": "EBKW", + "type": "heliport", + "name": "Westkapelle heliport", + "latitude_deg": "51.321655", + "longitude_deg": "3.294568", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Knokke-Heist", + "scheduled_service": "no", + "gps_code": "EBKW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Knokke-Heist/Westkapelle_Heliport" + }, + { + "id": "337612", + "ident": "EBKZ", + "type": "heliport", + "name": "Knokke - AZ Zeno Helipad", + "latitude_deg": "51.328685", + "longitude_deg": "3.292388", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Knokke-Heist", + "scheduled_service": "no", + "gps_code": "EBKZ" + }, + { + "id": "30971", + "ident": "EBLB", + "type": "closed", + "name": "Elsenborn Air Base", + "latitude_deg": "50.481701", + "longitude_deg": "6.18194", + "elevation_ft": "1830", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLG", + "municipality": "Bütgenbach", + "scheduled_service": "no", + "gps_code": "EBLB" + }, + { + "id": "43755", + "ident": "EBLC", + "type": "heliport", + "name": "Citadelle heliport", + "latitude_deg": "50.65342712402344", + "longitude_deg": "5.577610969543457", + "elevation_ft": "531", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLG", + "municipality": "Liège", + "scheduled_service": "no", + "gps_code": "EBLC" + }, + { + "id": "342173", + "ident": "EBLD", + "type": "heliport", + "name": "Ranst / De Vijver helipad", + "latitude_deg": "51.217222", + "longitude_deg": "4.557778", + "elevation_ft": "33", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Ranst", + "scheduled_service": "no", + "gps_code": "EBLD" + }, + { + "id": "30068", + "ident": "EBLE", + "type": "small_airport", + "name": "Leopoldsburg Airfield", + "latitude_deg": "51.12", + "longitude_deg": "5.3072222", + "elevation_ft": "207", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VLI", + "municipality": "Leopoldsburg", + "scheduled_service": "no", + "gps_code": "EBLE", + "home_link": "http://www.eble.be/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aeroclub_Sanicole_VZW", + "keywords": "Beverlo" + }, + { + "id": "2162", + "ident": "EBLG", + "type": "medium_airport", + "name": "Liège Airport", + "latitude_deg": "50.637402", + "longitude_deg": "5.44322", + "elevation_ft": "659", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLG", + "municipality": "Liège", + "scheduled_service": "yes", + "gps_code": "EBLG", + "iata_code": "LGG", + "home_link": "http://www.liegeairport.be/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Li%C3%A8ge_Airport" + }, + { + "id": "337617", + "ident": "EBLH", + "type": "heliport", + "name": "Lotenhulle Heliport", + "latitude_deg": "51.033333", + "longitude_deg": "3.496389", + "elevation_ft": "43", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Aalter", + "scheduled_service": "no", + "gps_code": "EBLH" + }, + { + "id": "30972", + "ident": "EBLI", + "type": "closed", + "name": "Lierneux ULM", + "latitude_deg": "50.286701", + "longitude_deg": "5.83639", + "elevation_ft": "1411", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLG", + "municipality": "Lierneux", + "scheduled_service": "no", + "gps_code": "EBLI" + }, + { + "id": "342090", + "ident": "EBLJ", + "type": "heliport", + "name": "Lokeren - Janssens Heliport", + "latitude_deg": "51.095579", + "longitude_deg": "3.918365", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Lokeren", + "scheduled_service": "no", + "gps_code": "EBLJ" + }, + { + "id": "323968", + "ident": "EBLM", + "type": "heliport", + "name": "Meulebeke Heliport", + "latitude_deg": "50.931667", + "longitude_deg": "3.293889", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Meulebeke", + "scheduled_service": "no", + "gps_code": "EBLM" + }, + { + "id": "30973", + "ident": "EBLN", + "type": "small_airport", + "name": "Liernu ULM", + "latitude_deg": "50.580601", + "longitude_deg": "4.7925", + "elevation_ft": "564", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WNA", + "municipality": "Eghezée", + "scheduled_service": "no", + "gps_code": "EBLN" + }, + { + "id": "43757", + "ident": "EBLO", + "type": "closed", + "name": "Orban heliport", + "latitude_deg": "50.630913", + "longitude_deg": "5.571726", + "elevation_ft": "160", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLG", + "municipality": "Liège", + "scheduled_service": "no", + "gps_code": "EBLO" + }, + { + "id": "29039", + "ident": "EBLR", + "type": "heliport", + "name": "Reninge Heliport", + "latitude_deg": "50.934886", + "longitude_deg": "2.757944", + "elevation_ft": "25", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Lo-Reninge", + "scheduled_service": "no", + "gps_code": "EBLR" + }, + { + "id": "43759", + "ident": "EBLS", + "type": "heliport", + "name": "Sart Tilman heliport", + "latitude_deg": "50.571388244628906", + "longitude_deg": "5.565278053283691", + "elevation_ft": "771", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLG", + "municipality": "Liège", + "scheduled_service": "no", + "gps_code": "EBLS" + }, + { + "id": "43739", + "ident": "EBLU", + "type": "heliport", + "name": "Lummen heliport", + "latitude_deg": "50.991943359375", + "longitude_deg": "5.238889217376709", + "elevation_ft": "141", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VLI", + "municipality": "Lummen", + "scheduled_service": "no", + "gps_code": "EBLU" + }, + { + "id": "337613", + "ident": "EBLV", + "type": "closed", + "name": "Kortemark Heliport", + "latitude_deg": "51.007703", + "longitude_deg": "3.045058", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Kortemark", + "scheduled_service": "no", + "gps_code": "EBLV" + }, + { + "id": "323970", + "ident": "EBLY", + "type": "heliport", + "name": "Ranst/Lymar Heliport", + "latitude_deg": "51.210662", + "longitude_deg": "4.576811", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Ranst", + "scheduled_service": "no", + "gps_code": "EBLY" + }, + { + "id": "29040", + "ident": "EBLZ", + "type": "closed", + "name": "Zaffelare heliport", + "latitude_deg": "51.131111", + "longitude_deg": "3.865556", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Lochristi", + "scheduled_service": "no", + "gps_code": "EBLZ" + }, + { + "id": "43729", + "ident": "EBMA", + "type": "closed", + "name": "Westmalle heliport", + "latitude_deg": "51.287224", + "longitude_deg": "4.714167", + "elevation_ft": "88", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Malle", + "scheduled_service": "no", + "gps_code": "EBMA" + }, + { + "id": "308575", + "ident": "EBMB", + "type": "small_airport", + "name": "Melsbroek Air Base", + "latitude_deg": "50.913", + "longitude_deg": "4.49", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VBR", + "municipality": "Steenokkerzeel", + "scheduled_service": "no", + "gps_code": "EBMB", + "home_link": "http://www.opendoor15w.be/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Melsbroek_Air_Base" + }, + { + "id": "43720", + "ident": "EBMD", + "type": "heliport", + "name": "AZ Middelheim heliport", + "latitude_deg": "51.181674", + "longitude_deg": "4.421096", + "elevation_ft": "46", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Antwerpen", + "scheduled_service": "no", + "gps_code": "EBMD" + }, + { + "id": "43731", + "ident": "EBME", + "type": "heliport", + "name": "Meerbeek Heliport", + "latitude_deg": "50.873751", + "longitude_deg": "4.596968", + "elevation_ft": "214", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VBR", + "municipality": "Meerbeek", + "scheduled_service": "no", + "gps_code": "EBME" + }, + { + "id": "30974", + "ident": "EBMG", + "type": "small_airport", + "name": "Matagne-la-Petite Ulmodrome", + "latitude_deg": "50.104698", + "longitude_deg": "4.63806", + "elevation_ft": "787", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WNA", + "municipality": "Doische", + "scheduled_service": "no", + "gps_code": "EBMG", + "keywords": "Matagne" + }, + { + "id": "337618", + "ident": "EBMK", + "type": "heliport", + "name": "Maarkedal - Nukerke Heliport", + "latitude_deg": "50.781947", + "longitude_deg": "3.619635", + "elevation_ft": "167", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Maarkedal", + "scheduled_service": "no", + "gps_code": "EBMK" + }, + { + "id": "30975", + "ident": "EBML", + "type": "small_airport", + "name": "Maillen Ulmodrome", + "latitude_deg": "50.3741989136", + "longitude_deg": "4.92778015137", + "elevation_ft": "886", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WNA", + "municipality": "Assesse", + "scheduled_service": "no", + "gps_code": "EBML" + }, + { + "id": "337619", + "ident": "EBMM", + "type": "heliport", + "name": "Maasmechelen Heliport", + "latitude_deg": "50.953841", + "longitude_deg": "5.704801", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VLI", + "municipality": "Maasmechelen", + "scheduled_service": "no", + "gps_code": "EBMM" + }, + { + "id": "29042", + "ident": "EBMO", + "type": "small_airport", + "name": "Moorsele Airfield", + "latitude_deg": "50.851285", + "longitude_deg": "3.147669", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Moorsele", + "scheduled_service": "no", + "gps_code": "EBMO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moorsele_Airfield" + }, + { + "id": "43754", + "ident": "EBMS", + "type": "heliport", + "name": "Bra heliport", + "latitude_deg": "50.321703", + "longitude_deg": "5.730894", + "elevation_ft": "1280", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLG", + "municipality": "Lierneu", + "scheduled_service": "no", + "gps_code": "EBMS" + }, + { + "id": "43751", + "ident": "EBMT", + "type": "heliport", + "name": "Montigny-Le-Tilleul heliport", + "latitude_deg": "50.358604431152344", + "longitude_deg": "4.368843078613281", + "elevation_ft": "656", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WHT", + "municipality": "Montigny-Le-Tilleul", + "scheduled_service": "no", + "gps_code": "EBMT" + }, + { + "id": "323971", + "ident": "EBMW", + "type": "heliport", + "name": "Meise/Wolvertem Heliport", + "latitude_deg": "50.948076", + "longitude_deg": "4.296012", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VBR", + "municipality": "Meise", + "scheduled_service": "no", + "gps_code": "EBMW" + }, + { + "id": "342117", + "ident": "EBNB", + "type": "heliport", + "name": "Namur - Bouge heliport", + "latitude_deg": "50.478772", + "longitude_deg": "4.885131", + "elevation_ft": "489", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WNA", + "municipality": "Namur", + "scheduled_service": "no", + "gps_code": "EBNB" + }, + { + "id": "43741", + "ident": "EBNE", + "type": "closed", + "name": "Neerpelt ULM", + "latitude_deg": "51.211945", + "longitude_deg": "5.478611", + "elevation_ft": "148", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VLI", + "municipality": "Neerpelt", + "scheduled_service": "no", + "gps_code": "EBNE" + }, + { + "id": "43746", + "ident": "EBNH", + "type": "heliport", + "name": "Oostende Heliport", + "latitude_deg": "51.194097", + "longitude_deg": "2.854192", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Oostende", + "scheduled_service": "no", + "gps_code": "EBNH" + }, + { + "id": "323972", + "ident": "EBNK", + "type": "heliport", + "name": "Nokere/Suys Heliport", + "latitude_deg": "50.879358", + "longitude_deg": "3.520104", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Nokere", + "scheduled_service": "no", + "gps_code": "EBNK" + }, + { + "id": "324063", + "ident": "EBNL", + "type": "heliport", + "name": "Nijlen Heliport", + "latitude_deg": "51.173888", + "longitude_deg": "4.665832", + "elevation_ft": "21", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Nijlen", + "scheduled_service": "no", + "gps_code": "EBNL" + }, + { + "id": "29043", + "ident": "EBNM", + "type": "small_airport", + "name": "Namur-Suarlée Airfield", + "latitude_deg": "50.487999", + "longitude_deg": "4.76892", + "elevation_ft": "594", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WNA", + "municipality": "Namur", + "scheduled_service": "no", + "gps_code": "EBNM", + "home_link": "http://www.aerodromedenamur.be/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Namur-Suarlee_Airport" + }, + { + "id": "29044", + "ident": "EBNO", + "type": "closed", + "name": "Outer ULM", + "latitude_deg": "50.854400634799994", + "longitude_deg": "3.98528003693", + "elevation_ft": "151", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Ninove", + "scheduled_service": "no", + "gps_code": "EBNO" + }, + { + "id": "342176", + "ident": "EBNR", + "type": "heliport", + "name": "Roeselare - Nuytten heliport", + "latitude_deg": "50.910735", + "longitude_deg": "3.103623", + "elevation_ft": "82", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Roeselare", + "scheduled_service": "no", + "gps_code": "EBNR" + }, + { + "id": "312833", + "ident": "EBO", + "type": "small_airport", + "name": "Ebon Airport", + "latitude_deg": "4.5982", + "longitude_deg": "168.752", + "elevation_ft": "8", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-EBO", + "municipality": "Ebon Atoll", + "scheduled_service": "no", + "iata_code": "EBO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ebon_Airport" + }, + { + "id": "323974", + "ident": "EBOB", + "type": "heliport", + "name": "Oud-Heverlee/Blanden Heliport", + "latitude_deg": "50.822638", + "longitude_deg": "4.709018", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VBR", + "municipality": "Oud-Heverlee", + "scheduled_service": "no", + "gps_code": "EBOB" + }, + { + "id": "337035", + "ident": "EBOK", + "type": "heliport", + "name": "Brussels - Groot-Bijgaarden Heliport", + "latitude_deg": "50.869522", + "longitude_deg": "4.280602", + "elevation_ft": "121", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-BRU", + "municipality": "Dilbeek", + "scheduled_service": "no", + "gps_code": "EBOK" + }, + { + "id": "29045", + "ident": "EBOO", + "type": "heliport", + "name": "Oostdijckbank platform heliport", + "latitude_deg": "51.274444580078125", + "longitude_deg": "2.447499990463257", + "elevation_ft": "69", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Oostdijckbank", + "scheduled_service": "no", + "gps_code": "EBOO" + }, + { + "id": "30977", + "ident": "EBOR", + "type": "small_airport", + "name": "Orchimont UL", + "latitude_deg": "49.90643", + "longitude_deg": "4.93413", + "elevation_ft": "1312", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WNA", + "municipality": "Vresse-sur-Semois", + "scheduled_service": "no", + "gps_code": "EBOR" + }, + { + "id": "2163", + "ident": "EBOS", + "type": "medium_airport", + "name": "Ostend-Bruges International Airport", + "latitude_deg": "51.1998", + "longitude_deg": "2.874673", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Ostend", + "scheduled_service": "yes", + "gps_code": "EBOS", + "iata_code": "OST", + "home_link": "http://www.ost.aero/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ostend-Bruges_International_Airport", + "keywords": "Oostende-Brugge International Airport" + }, + { + "id": "311995", + "ident": "EBOT", + "type": "closed", + "name": "Oud-Turnhout", + "latitude_deg": "51.323558854", + "longitude_deg": "5.01796245575", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "scheduled_service": "no", + "gps_code": "EBOT" + }, + { + "id": "337300", + "ident": "EBPP", + "type": "heliport", + "name": "Deinze - Piens Heliport", + "latitude_deg": "50.995", + "longitude_deg": "3.528889", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Deinze", + "scheduled_service": "no", + "gps_code": "EBPP" + }, + { + "id": "342119", + "ident": "EBPV", + "type": "heliport", + "name": "Ninove Heliport", + "latitude_deg": "50.843238", + "longitude_deg": "4.037037", + "elevation_ft": "87", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Ninove", + "scheduled_service": "no", + "gps_code": "EBPV" + }, + { + "id": "29046", + "ident": "EBPW", + "type": "heliport", + "name": "Warcoing heliport", + "latitude_deg": "50.722254", + "longitude_deg": "3.326106", + "elevation_ft": "120", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WHT", + "municipality": "Pecq", + "scheduled_service": "no", + "gps_code": "EBPW" + }, + { + "id": "43745", + "ident": "EBRB", + "type": "closed", + "name": "Beveren Heliport", + "latitude_deg": "50.981543", + "longitude_deg": "3.125873", + "elevation_ft": "84", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Roeselare", + "scheduled_service": "no", + "gps_code": "EBRB" + }, + { + "id": "342177", + "ident": "EBRD", + "type": "heliport", + "name": "Roosdaal Heliport", + "latitude_deg": "50.825505", + "longitude_deg": "4.096967", + "elevation_ft": "243", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VBR", + "municipality": "Roosdaal", + "scheduled_service": "no", + "gps_code": "EBRD" + }, + { + "id": "43728", + "ident": "EBRO", + "type": "heliport", + "name": "Van Den Bosch heliport", + "latitude_deg": "51.209720611572266", + "longitude_deg": "4.587500095367432", + "elevation_ft": "33", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Ranst", + "scheduled_service": "no", + "gps_code": "EBRO" + }, + { + "id": "43742", + "ident": "EBRR", + "type": "heliport", + "name": "Rumbeke Heliport", + "latitude_deg": "50.910005", + "longitude_deg": "3.148012", + "elevation_ft": "79", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Roeselare", + "scheduled_service": "no", + "gps_code": "EBRR" + }, + { + "id": "337034", + "ident": "EBRU", + "type": "heliport", + "name": "Bekkevoort Heliport", + "latitude_deg": "50.957481", + "longitude_deg": "5.015771", + "elevation_ft": "100", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VBR", + "municipality": "Bekkevoort", + "scheduled_service": "no", + "gps_code": "EBRU" + }, + { + "id": "29047", + "ident": "EBSG", + "type": "small_airport", + "name": "Saint-Ghislain Airfield", + "latitude_deg": "50.4575", + "longitude_deg": "3.82028", + "elevation_ft": "75", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WHT", + "municipality": "Saint Ghislain", + "scheduled_service": "no", + "gps_code": "EBSG" + }, + { + "id": "29048", + "ident": "EBSH", + "type": "small_airport", + "name": "Saint Hubert Airfield", + "latitude_deg": "50.0359", + "longitude_deg": "5.40425", + "elevation_ft": "1930", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLX", + "municipality": "Saint Hubert", + "scheduled_service": "no", + "gps_code": "EBSH", + "home_link": "http://www.sainthubert-airport.com/" + }, + { + "id": "29049", + "ident": "EBSJ", + "type": "heliport", + "name": "Az Sint-Jan Heliport", + "latitude_deg": "51.220506", + "longitude_deg": "3.196093", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Bruges", + "scheduled_service": "no", + "gps_code": "EBSJ" + }, + { + "id": "2164", + "ident": "EBSL", + "type": "small_airport", + "name": "Zutendaal Air Base", + "latitude_deg": "50.9474983215332", + "longitude_deg": "5.590559959411621", + "elevation_ft": "312", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VLI", + "municipality": "Zutendaal", + "scheduled_service": "no", + "gps_code": "EBSL" + }, + { + "id": "43758", + "ident": "EBSN", + "type": "closed", + "name": "'S Gravenvoeren heliport", + "latitude_deg": "50.764771", + "longitude_deg": "5.786845", + "elevation_ft": "394", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLG", + "municipality": "'S Gravenvoeren", + "scheduled_service": "no", + "gps_code": "EBSN" + }, + { + "id": "29050", + "ident": "EBSP", + "type": "small_airport", + "name": "Spa (la Sauvenière) Airfield", + "latitude_deg": "50.482498", + "longitude_deg": "5.9103", + "elevation_ft": "1581", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLG", + "municipality": "Spa", + "scheduled_service": "no", + "gps_code": "EBSP" + }, + { + "id": "29051", + "ident": "EBSS", + "type": "heliport", + "name": "Sint-Lucas Heliport", + "latitude_deg": "51.183906", + "longitude_deg": "3.24999", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Brugge", + "scheduled_service": "no", + "gps_code": "EBSS" + }, + { + "id": "2165", + "ident": "EBST", + "type": "small_airport", + "name": "Brustem Airfield Sint Truiden", + "latitude_deg": "50.791901", + "longitude_deg": "5.20167", + "elevation_ft": "246", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VLI", + "municipality": "Sint Truiden", + "scheduled_service": "no", + "gps_code": "EBST", + "home_link": "http://www.ebst.aero/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sint-Truiden_Air_Base", + "keywords": "Brustem Air Base" + }, + { + "id": "2166", + "ident": "EBSU", + "type": "small_airport", + "name": "Saint Hubert Air Base", + "latitude_deg": "50.034400939941406", + "longitude_deg": "5.440810203552246", + "elevation_ft": "1930", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLX", + "municipality": "Saint Hubert", + "scheduled_service": "no", + "gps_code": "EBSU" + }, + { + "id": "43733", + "ident": "EBSW", + "type": "heliport", + "name": "Sint-Pieters-Leeuw Heliport", + "latitude_deg": "50.763845", + "longitude_deg": "4.218782", + "elevation_ft": "197", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VBR", + "municipality": "Sint-Pieters-Leeuw", + "scheduled_service": "no", + "gps_code": "EBSW" + }, + { + "id": "43744", + "ident": "EBTE", + "type": "closed", + "name": "Temse heliport", + "latitude_deg": "51.141666", + "longitude_deg": "4.197222", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Temse", + "scheduled_service": "no", + "gps_code": "EBTE" + }, + { + "id": "43722", + "ident": "EBTK", + "type": "heliport", + "name": "Kasterlee heliport", + "latitude_deg": "51.283866", + "longitude_deg": "4.912238", + "elevation_ft": "80", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Tielen", + "scheduled_service": "no", + "gps_code": "EBTK" + }, + { + "id": "29899", + "ident": "EBTN", + "type": "small_airport", + "name": "Goetsenhoven Airfield", + "latitude_deg": "50.7817", + "longitude_deg": "4.95778", + "elevation_ft": "246", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VBR", + "municipality": "Tienen", + "scheduled_service": "no", + "gps_code": "EBTN" + }, + { + "id": "43752", + "ident": "EBTR", + "type": "closed", + "name": "Trazegnies heliport", + "latitude_deg": "50.476665", + "longitude_deg": "4.355556", + "elevation_ft": "574", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WHT", + "municipality": "Trazegnies", + "scheduled_service": "no", + "gps_code": "EBTR" + }, + { + "id": "29052", + "ident": "EBTX", + "type": "small_airport", + "name": "Theux (Verviers) Airfield", + "latitude_deg": "50.552601", + "longitude_deg": "5.85503", + "elevation_ft": "1099", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLG", + "municipality": "Verviers", + "scheduled_service": "no", + "gps_code": "EBTX", + "home_link": "http://www.verviers-aviation.be/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Verviers-Theux_Airfield" + }, + { + "id": "29053", + "ident": "EBTY", + "type": "small_airport", + "name": "Tournai/Maubray Glider Field", + "latitude_deg": "50.531611", + "longitude_deg": "3.497382", + "elevation_ft": "161", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WHT", + "municipality": "Tournai", + "scheduled_service": "no", + "gps_code": "EBTY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maubray_Airfield" + }, + { + "id": "43719", + "ident": "EBUB", + "type": "closed", + "name": "ULB Heliport", + "latitude_deg": "50.811847", + "longitude_deg": "4.260989", + "elevation_ft": "108", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-BRU", + "municipality": "Brussels", + "scheduled_service": "no", + "gps_code": "EBUB" + }, + { + "id": "43718", + "ident": "EBUC", + "type": "heliport", + "name": "UCLouvain / Saint-Luc University Clinics Heliport", + "latitude_deg": "50.853063", + "longitude_deg": "4.453561", + "elevation_ft": "230", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-BRU", + "municipality": "Woluwe-Saint-Lambert", + "scheduled_service": "no", + "gps_code": "EBUC" + }, + { + "id": "2167", + "ident": "EBUL", + "type": "small_airport", + "name": "Ursel Air Base", + "latitude_deg": "51.14419937133789", + "longitude_deg": "3.475559949874878", + "elevation_ft": "95", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Ursel", + "scheduled_service": "no", + "gps_code": "EBUL" + }, + { + "id": "29054", + "ident": "EBVE", + "type": "heliport", + "name": "Veurne Heliport", + "latitude_deg": "51.02264", + "longitude_deg": "2.680374", + "elevation_ft": "82", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Veurne", + "scheduled_service": "no", + "gps_code": "EBVE", + "keywords": "Liège-Bierset" + }, + { + "id": "324064", + "ident": "EBVN", + "type": "heliport", + "name": "Vlimmeren Heliport", + "latitude_deg": "51.306523", + "longitude_deg": "4.806653", + "elevation_ft": "76", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Vlimmeren", + "scheduled_service": "no", + "gps_code": "EBVN" + }, + { + "id": "29055", + "ident": "EBVS", + "type": "heliport", + "name": "Sint-Augustinus Heliport", + "latitude_deg": "51.062298", + "longitude_deg": "2.669222", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Veurne", + "scheduled_service": "no", + "gps_code": "EBVS" + }, + { + "id": "43732", + "ident": "EBVU", + "type": "heliport", + "name": "Rotselaar Heliport", + "latitude_deg": "50.939257", + "longitude_deg": "4.730574", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VBR", + "municipality": "Rotselaar", + "scheduled_service": "no", + "gps_code": "EBVU" + }, + { + "id": "323975", + "ident": "EBWA", + "type": "heliport", + "name": "Waasmunster Heliport", + "latitude_deg": "51.122683", + "longitude_deg": "4.127796", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Waasmunster", + "scheduled_service": "no", + "gps_code": "EBWA" + }, + { + "id": "2168", + "ident": "EBWE", + "type": "small_airport", + "name": "Weelde Air Base", + "latitude_deg": "51.394798278808594", + "longitude_deg": "4.9601898193359375", + "elevation_ft": "105", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Weelde", + "scheduled_service": "no", + "gps_code": "EBWE" + }, + { + "id": "323977", + "ident": "EBWI", + "type": "heliport", + "name": "Wingene Heliport", + "latitude_deg": "51.064415", + "longitude_deg": "3.25919", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Wingene", + "scheduled_service": "no", + "gps_code": "EBWI" + }, + { + "id": "323978", + "ident": "EBWZ", + "type": "heliport", + "name": "Wingene/Zwevezele Heliport", + "latitude_deg": "51.052033", + "longitude_deg": "3.238951", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Wingene", + "scheduled_service": "no", + "gps_code": "EBWZ" + }, + { + "id": "337581", + "ident": "EBYC", + "type": "heliport", + "name": "Grembergen Heliport", + "latitude_deg": "51.057744", + "longitude_deg": "4.097527", + "elevation_ft": "62", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Dendermonde", + "scheduled_service": "no", + "gps_code": "EBYC" + }, + { + "id": "323979", + "ident": "EBYP", + "type": "heliport", + "name": "Regionaal Ziekenhuis Jan Yperman VZW Hospital Heliport", + "latitude_deg": "50.863486", + "longitude_deg": "2.896702", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Ypres", + "scheduled_service": "no", + "gps_code": "EBYP" + }, + { + "id": "29056", + "ident": "EBZH", + "type": "small_airport", + "name": "Kiewit Airfield Hasselt", + "latitude_deg": "50.970001", + "longitude_deg": "5.37507", + "elevation_ft": "141", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VLI", + "municipality": "Hasselt", + "scheduled_service": "no", + "gps_code": "EBZH", + "home_link": "http://www.aero-kiewit.be/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kiewit_airfield" + }, + { + "id": "29057", + "ident": "EBZI", + "type": "heliport", + "name": "Zingem heliport", + "latitude_deg": "50.926387786865234", + "longitude_deg": "3.6172220706939697", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Zingem", + "scheduled_service": "no", + "gps_code": "EBZI" + }, + { + "id": "30586", + "ident": "EBZM", + "type": "closed", + "name": "Oombergen Airfield", + "latitude_deg": "50.909401", + "longitude_deg": "3.82667", + "elevation_ft": "240", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Zottegem", + "scheduled_service": "no", + "gps_code": "EBZM" + }, + { + "id": "43747", + "ident": "EBZO", + "type": "heliport", + "name": "Zandvoorde Heliport", + "latitude_deg": "50.817249", + "longitude_deg": "2.97457", + "elevation_ft": "102", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Zonnebeke", + "scheduled_service": "no", + "gps_code": "EBZO" + }, + { + "id": "2169", + "ident": "EBZR", + "type": "small_airport", + "name": "Zoersel (Oostmalle) Airfield", + "latitude_deg": "51.2647", + "longitude_deg": "4.754505", + "elevation_ft": "53", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VAN", + "municipality": "Zoersel", + "scheduled_service": "no", + "gps_code": "EBZR", + "iata_code": "OBL", + "home_link": "http://www.ebzr.be/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oostmalle_Airfield" + }, + { + "id": "29058", + "ident": "EBZU", + "type": "small_airport", + "name": "Zuienkerke Sport Aviation Airfield", + "latitude_deg": "51.25555", + "longitude_deg": "3.139858", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VWV", + "municipality": "Zuienkerke", + "scheduled_service": "no", + "gps_code": "EBZU", + "keywords": "Zuienkerke ULM" + }, + { + "id": "29059", + "ident": "EBZW", + "type": "small_airport", + "name": "Genk Zwartberg Airfield", + "latitude_deg": "51.0154", + "longitude_deg": "5.52647", + "elevation_ft": "278", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VLI", + "municipality": "Genk", + "scheduled_service": "no", + "gps_code": "EBZW", + "home_link": "http://www.ebzw.be" + }, + { + "id": "41595", + "ident": "EC-0001", + "type": "small_airport", + "name": "Carabon Airport", + "latitude_deg": "-3.6285500526428223", + "longitude_deg": "-80.18779754638672", + "elevation_ft": "126", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-O", + "municipality": "Carabon", + "scheduled_service": "no" + }, + { + "id": "308084", + "ident": "EC-0002", + "type": "closed", + "name": "Seymour Island Airfield", + "latitude_deg": "-0.472063", + "longitude_deg": "-90.287704", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-W", + "municipality": "Isla Baltra", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baltra_Island" + }, + { + "id": "317181", + "ident": "EC-0003", + "type": "small_airport", + "name": "Roble Mar Airport", + "latitude_deg": "-3.00529", + "longitude_deg": "-80.22898", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "Aguada", + "scheduled_service": "no", + "gps_code": "SERL", + "local_code": "SERL" + }, + { + "id": "323803", + "ident": "EC-0004", + "type": "small_airport", + "name": "Nuevo Rocafuerte Airstrip", + "latitude_deg": "-0.927875", + "longitude_deg": "-75.394383", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-D", + "municipality": "Nuevo Rocafuerte", + "scheduled_service": "no" + }, + { + "id": "323805", + "ident": "EC-0005", + "type": "small_airport", + "name": "Ayamu Airstrip", + "latitude_deg": "-1.615731", + "longitude_deg": "-75.98772", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Ayamu", + "scheduled_service": "no" + }, + { + "id": "323806", + "ident": "EC-0006", + "type": "small_airport", + "name": "Pavacachi Airstrip", + "latitude_deg": "-1.578569", + "longitude_deg": "-76.353395", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Pavacachi", + "scheduled_service": "no" + }, + { + "id": "323808", + "ident": "EC-0007", + "type": "small_airport", + "name": "Shivacocha Airstrip", + "latitude_deg": "-1.384146", + "longitude_deg": "-76.958786", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Shivacocha", + "scheduled_service": "no" + }, + { + "id": "323809", + "ident": "EC-0008", + "type": "small_airport", + "name": "Taracoa Airstrip", + "latitude_deg": "-1.368989", + "longitude_deg": "-76.947394", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Taracoa", + "scheduled_service": "no" + }, + { + "id": "323810", + "ident": "EC-0009", + "type": "small_airport", + "name": "Yuca Life Airstrip", + "latitude_deg": "-1.497908", + "longitude_deg": "-77.474409", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "scheduled_service": "no" + }, + { + "id": "323811", + "ident": "EC-0010", + "type": "small_airport", + "name": "Pacayacu Airstrip", + "latitude_deg": "-1.650816", + "longitude_deg": "-77.596069", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Pacayacu", + "scheduled_service": "no" + }, + { + "id": "323812", + "ident": "EC-0011", + "type": "small_airport", + "name": "Sarayaku Airstrip", + "latitude_deg": "-1.739358", + "longitude_deg": "-77.485087", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Sarayaku", + "scheduled_service": "no" + }, + { + "id": "323813", + "ident": "EC-0012", + "type": "small_airport", + "name": "Teresa Mama Airstrip", + "latitude_deg": "-1.923175", + "longitude_deg": "-77.211526", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Teresa Mama", + "scheduled_service": "no" + }, + { + "id": "323814", + "ident": "EC-0013", + "type": "small_airport", + "name": "Huito Molino Airstrip", + "latitude_deg": "-1.828625", + "longitude_deg": "-77.321688", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Huito Molino", + "scheduled_service": "no" + }, + { + "id": "323815", + "ident": "EC-0014", + "type": "small_airport", + "name": "Macuma Airstrip", + "latitude_deg": "-2.145775", + "longitude_deg": "-77.700306", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-S", + "municipality": "Macuma", + "scheduled_service": "no", + "keywords": "AG8076" + }, + { + "id": "323835", + "ident": "EC-0015", + "type": "small_airport", + "name": "Chichirata Airstrip", + "latitude_deg": "-2.384954", + "longitude_deg": "-76.654949", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Chichirata", + "scheduled_service": "no" + }, + { + "id": "323836", + "ident": "EC-0016", + "type": "small_airport", + "name": "Andoas Airstrip", + "latitude_deg": "-2.568889", + "longitude_deg": "-76.660795", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Andoas", + "scheduled_service": "no" + }, + { + "id": "323842", + "ident": "EC-0017", + "type": "small_airport", + "name": "Huasaga Airstrip", + "latitude_deg": "-2.483436", + "longitude_deg": "-77.201141", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-S", + "municipality": "Huasaga", + "scheduled_service": "no" + }, + { + "id": "323855", + "ident": "EC-0018", + "type": "small_airport", + "name": "Villano Airstrip", + "latitude_deg": "-1.502584", + "longitude_deg": "-77.327519", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Villano", + "scheduled_service": "no" + }, + { + "id": "324021", + "ident": "EC-0019", + "type": "small_airport", + "name": "Santa Rosa 2 Airstrip", + "latitude_deg": "-2.212734", + "longitude_deg": "-77.572687", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-S", + "scheduled_service": "no" + }, + { + "id": "324022", + "ident": "EC-0020", + "type": "small_airport", + "name": "Yuwints Airstrip", + "latitude_deg": "-2.164433", + "longitude_deg": "-77.577369", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-S", + "municipality": "Yuwints", + "scheduled_service": "no" + }, + { + "id": "324023", + "ident": "EC-0021", + "type": "small_airport", + "name": "Ayuy Airstrip", + "latitude_deg": "-2.082567", + "longitude_deg": "-77.580241", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-S", + "municipality": "Ayuy", + "scheduled_service": "no" + }, + { + "id": "324024", + "ident": "EC-0022", + "type": "small_airport", + "name": "Copataza Airstrip", + "latitude_deg": "-2.090505", + "longitude_deg": "-77.446852", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Copataza", + "scheduled_service": "no" + }, + { + "id": "324025", + "ident": "EC-0023", + "type": "small_airport", + "name": "Jimbiquiti Airstrip", + "latitude_deg": "-1.990084", + "longitude_deg": "-77.716252", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Jimbiquiti", + "scheduled_service": "no" + }, + { + "id": "324026", + "ident": "EC-0024", + "type": "small_airport", + "name": "Jibaría Añangu Airstrip", + "latitude_deg": "-2.463387", + "longitude_deg": "-76.992629", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Jibaría Añangu", + "scheduled_service": "no" + }, + { + "id": "324027", + "ident": "EC-0025", + "type": "small_airport", + "name": "Capauari Airstrip", + "latitude_deg": "-2.07019", + "longitude_deg": "-77.173326", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Capauari", + "scheduled_service": "no" + }, + { + "id": "324028", + "ident": "EC-0026", + "type": "small_airport", + "name": "Cotosaz Airstrip", + "latitude_deg": "-2.023515", + "longitude_deg": "-77.468726", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Cotosaz", + "scheduled_service": "no" + }, + { + "id": "324029", + "ident": "EC-0027", + "type": "small_airport", + "name": "Tutaguana Airstrip", + "latitude_deg": "-1.926173", + "longitude_deg": "-77.505011", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Tutaguana", + "scheduled_service": "no" + }, + { + "id": "324030", + "ident": "EC-0028", + "type": "small_airport", + "name": "Yaupi Airstrip", + "latitude_deg": "-2.852915", + "longitude_deg": "-77.941774", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-S", + "municipality": "Yaupi", + "scheduled_service": "no" + }, + { + "id": "324034", + "ident": "EC-0029", + "type": "small_airport", + "name": "Wasakentza Airstrip", + "latitude_deg": "-2.543927", + "longitude_deg": "-77.199249", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-S", + "municipality": "Wasakentza", + "scheduled_service": "no" + }, + { + "id": "324035", + "ident": "EC-0030", + "type": "small_airport", + "name": "Wampuik Airstrip", + "latitude_deg": "-2.61555", + "longitude_deg": "-77.023164", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-S", + "municipality": "Wampuik", + "scheduled_service": "no" + }, + { + "id": "324037", + "ident": "EC-0031", + "type": "small_airport", + "name": "Tambo Borja Airstrip", + "latitude_deg": "-2.36646", + "longitude_deg": "-76.513774", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Tambo Borja", + "scheduled_service": "no" + }, + { + "id": "324038", + "ident": "EC-0032", + "type": "small_airport", + "name": "Tambo Airstrip", + "latitude_deg": "-1.873892", + "longitude_deg": "-76.773644", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Tambo", + "scheduled_service": "no" + }, + { + "id": "324039", + "ident": "EC-0033", + "type": "small_airport", + "name": "Cabaña Yasuni Airstrip", + "latitude_deg": "-1.298489", + "longitude_deg": "-76.154655", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "scheduled_service": "no" + }, + { + "id": "324040", + "ident": "EC-0034", + "type": "small_airport", + "name": "Kapawi Ecolodge Airstrip", + "latitude_deg": "-1.649234", + "longitude_deg": "-77.046579", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "scheduled_service": "no" + }, + { + "id": "351437", + "ident": "EC-0035", + "type": "small_airport", + "name": "Holandesa Airport", + "latitude_deg": "-0.72495", + "longitude_deg": "-79.46976", + "elevation_ft": "445", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-R", + "municipality": "Holandesa", + "scheduled_service": "no" + }, + { + "id": "351438", + "ident": "EC-0036", + "type": "small_airport", + "name": "La Esperanza Airport", + "latitude_deg": "-0.96115", + "longitude_deg": "-79.4162", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-R", + "municipality": "Quevedo", + "scheduled_service": "no" + }, + { + "id": "351439", + "ident": "EC-0037", + "type": "small_airport", + "name": "La Cadena Airport", + "latitude_deg": "-0.93107", + "longitude_deg": "-79.42049", + "elevation_ft": "246", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-R", + "municipality": "Quevedo", + "scheduled_service": "no" + }, + { + "id": "351440", + "ident": "EC-0038", + "type": "small_airport", + "name": "El Guayabo Airport", + "latitude_deg": "-0.98999", + "longitude_deg": "-79.43663", + "elevation_ft": "207", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-R", + "municipality": "Quevedo", + "scheduled_service": "no" + }, + { + "id": "351441", + "ident": "EC-0039", + "type": "small_airport", + "name": "Agro Aereo Jaramillo Airport", + "latitude_deg": "-0.98762", + "longitude_deg": "-79.4445", + "elevation_ft": "210", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-R", + "municipality": "Quevedo", + "scheduled_service": "no" + }, + { + "id": "351442", + "ident": "EC-0040", + "type": "small_airport", + "name": "Esterito Airport", + "latitude_deg": "-0.94007", + "longitude_deg": "-79.31379", + "elevation_ft": "420", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-R", + "municipality": "Valencia", + "scheduled_service": "no" + }, + { + "id": "351443", + "ident": "EC-0041", + "type": "small_airport", + "name": "Banastru Airport", + "latitude_deg": "-1.98576", + "longitude_deg": "-79.62703", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "Tres Postes", + "scheduled_service": "no" + }, + { + "id": "351444", + "ident": "EC-0042", + "type": "heliport", + "name": "Floreana Heliport", + "latitude_deg": "-1.27676", + "longitude_deg": "-90.48181", + "elevation_ft": "138", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-W", + "municipality": "Puerto Velasco Ibarra", + "scheduled_service": "no" + }, + { + "id": "353415", + "ident": "EC-0043", + "type": "small_airport", + "name": "Barbones - Samuel Quimi Airport", + "latitude_deg": "-3.18885", + "longitude_deg": "-79.86874", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-O", + "municipality": "Barbones", + "scheduled_service": "no" + }, + { + "id": "353416", + "ident": "EC-0044", + "type": "heliport", + "name": "Mar y Cielo Heliport", + "latitude_deg": "-3.28783", + "longitude_deg": "-79.92046", + "elevation_ft": "36", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-O", + "municipality": "Machala", + "scheduled_service": "no" + }, + { + "id": "353417", + "ident": "EC-0045", + "type": "small_airport", + "name": "Puna Southwest Airport", + "latitude_deg": "-3.01335", + "longitude_deg": "-80.257", + "elevation_ft": "15", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "Aguada", + "scheduled_service": "no" + }, + { + "id": "41594", + "ident": "EC-MZD", + "type": "small_airport", + "name": "Méndez Airport", + "latitude_deg": "-2.733330011367798", + "longitude_deg": "-78.31670379638672", + "elevation_ft": "1770", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-S", + "municipality": "Santiago de Méndez", + "scheduled_service": "no", + "iata_code": "MZD" + }, + { + "id": "317873", + "ident": "EDA", + "type": "seaplane_base", + "name": "Edna Bay Seaplane Base", + "latitude_deg": "55.949653", + "longitude_deg": "-133.661012", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Edna Bay", + "scheduled_service": "no", + "iata_code": "EDA" + }, + { + "id": "2183", + "ident": "EDAB", + "type": "small_airport", + "name": "Flugplatz Bautzen", + "latitude_deg": "51.193611", + "longitude_deg": "14.519722", + "elevation_ft": "568", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Bautzen", + "scheduled_service": "no", + "gps_code": "EDAB", + "home_link": "http://www.flugplatz-bautzen.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Bautzen", + "keywords": "Flugplatz Bautzen" + }, + { + "id": "2184", + "ident": "EDAC", + "type": "medium_airport", + "name": "Altenburg-Nobitz Airport", + "latitude_deg": "50.981945", + "longitude_deg": "12.506389", + "elevation_ft": "640", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Altenburg", + "scheduled_service": "no", + "gps_code": "EDAC", + "iata_code": "AOC", + "home_link": "http://www.leipzig-altenburg-airport.de/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Altenburg-Nobitz_Airport", + "keywords": "Altenburg Nobitz" + }, + { + "id": "2185", + "ident": "EDAD", + "type": "small_airport", + "name": "Dessau Airfield", + "latitude_deg": "51.831694", + "longitude_deg": "12.190962", + "elevation_ft": "187", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Dessau", + "scheduled_service": "no", + "gps_code": "EDAD" + }, + { + "id": "2186", + "ident": "EDAE", + "type": "small_airport", + "name": "Eisenhüttenstadt Airfield", + "latitude_deg": "52.195856", + "longitude_deg": "14.58753", + "elevation_ft": "144", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Eisenhüttenstadt", + "scheduled_service": "no", + "gps_code": "EDAE" + }, + { + "id": "28580", + "ident": "EDAG", + "type": "small_airport", + "name": "Flugplatz Großrückerswalde", + "latitude_deg": "50.644169", + "longitude_deg": "13.126389", + "elevation_ft": "2198", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Marienberg", + "scheduled_service": "no", + "gps_code": "EDAG" + }, + { + "id": "2187", + "ident": "EDAH", + "type": "medium_airport", + "name": "Heringsdorf Airport", + "latitude_deg": "53.8787002563", + "longitude_deg": "14.152299881", + "elevation_ft": "93", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Heringsdorf", + "scheduled_service": "yes", + "gps_code": "EDAH", + "iata_code": "HDF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Heringsdorf_Airport" + }, + { + "id": "28728", + "ident": "EDAI", + "type": "small_airport", + "name": "Sonderlandeplatz Segeletz", + "latitude_deg": "52.826668", + "longitude_deg": "12.541944", + "elevation_ft": "141", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Neustadt", + "scheduled_service": "no", + "gps_code": "EDAI" + }, + { + "id": "28569", + "ident": "EDAJ", + "type": "small_airport", + "name": "Gera-Leumnitz Airfield", + "latitude_deg": "50.881668", + "longitude_deg": "12.135833", + "elevation_ft": "1014", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Gera", + "scheduled_service": "no", + "gps_code": "EDAJ", + "home_link": "http://www.flugplatz-gera.com/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Gera-Leumnitz", + "keywords": "Flugplatz Gera-Leumnitz" + }, + { + "id": "2188", + "ident": "EDAK", + "type": "small_airport", + "name": "Flugplatz Großenhain", + "latitude_deg": "51.308056", + "longitude_deg": "13.555556", + "elevation_ft": "417", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Großenhain", + "scheduled_service": "no", + "gps_code": "EDAK", + "keywords": "Grossenhain" + }, + { + "id": "28563", + "ident": "EDAL", + "type": "closed", + "name": "Flugplatz Fuerstenwalde", + "latitude_deg": "52.390598", + "longitude_deg": "14.0972", + "elevation_ft": "184", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "scheduled_service": "no", + "gps_code": "EDAL" + }, + { + "id": "2189", + "ident": "EDAM", + "type": "small_airport", + "name": "Flugplatz Merseburg", + "latitude_deg": "51.363056", + "longitude_deg": "11.940833", + "elevation_ft": "341", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Merseburg", + "scheduled_service": "no", + "gps_code": "EDAM" + }, + { + "id": "28663", + "ident": "EDAN", + "type": "small_airport", + "name": "Flugplatz Neustadt-Glewe", + "latitude_deg": "53.359722", + "longitude_deg": "11.615278", + "elevation_ft": "115", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Neustadt-Glewe", + "scheduled_service": "no", + "gps_code": "EDAN" + }, + { + "id": "28670", + "ident": "EDAO", + "type": "small_airport", + "name": "Flugplatz Nordhausen", + "latitude_deg": "51.493057", + "longitude_deg": "10.833333", + "elevation_ft": "689", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Nordhausen", + "scheduled_service": "no", + "gps_code": "EDAO", + "keywords": "Flugplatz Nordhausen" + }, + { + "id": "28659", + "ident": "EDAP", + "type": "small_airport", + "name": "Flugplatz Neuhausen", + "latitude_deg": "51.684723", + "longitude_deg": "14.423056", + "elevation_ft": "279", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Cottbus", + "scheduled_service": "no", + "gps_code": "EDAP" + }, + { + "id": "2190", + "ident": "EDAQ", + "type": "small_airport", + "name": "Flugplatz Halle-Oppin", + "latitude_deg": "51.552223", + "longitude_deg": "12.053889", + "elevation_ft": "348", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Oppin", + "scheduled_service": "no", + "gps_code": "EDAQ", + "home_link": "http://www.flugplatz-halle-oppin.de/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Flugplatz_Halle-Oppin" + }, + { + "id": "28695", + "ident": "EDAR", + "type": "small_airport", + "name": "Pirna-Pratzschwitz Airfield", + "latitude_deg": "50.979603", + "longitude_deg": "13.908445", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Pirna", + "scheduled_service": "no", + "gps_code": "EDAR" + }, + { + "id": "29868", + "ident": "EDAS", + "type": "small_airport", + "name": "Flugplatz Finsterwalde/Heinrichsruh", + "latitude_deg": "51.634445", + "longitude_deg": "13.675556", + "elevation_ft": "384", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Finsterwalde", + "scheduled_service": "no", + "gps_code": "EDAS" + }, + { + "id": "28655", + "ident": "EDAT", + "type": "small_airport", + "name": "Nardt Airfield", + "latitude_deg": "51.451111", + "longitude_deg": "14.199444", + "elevation_ft": "384", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Hoyerswerda", + "scheduled_service": "no", + "gps_code": "EDAT" + }, + { + "id": "2191", + "ident": "EDAU", + "type": "small_airport", + "name": "Riesa-Göhlis Airport", + "latitude_deg": "51.2936096191", + "longitude_deg": "13.3561105728", + "elevation_ft": "322", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Riesa", + "scheduled_service": "no", + "gps_code": "EDAU", + "iata_code": "IES" + }, + { + "id": "2192", + "ident": "EDAV", + "type": "small_airport", + "name": "Flugplatz Eberswalde-Finow", + "latitude_deg": "52.827221", + "longitude_deg": "13.693611", + "elevation_ft": "121", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Eberswalde", + "scheduled_service": "no", + "gps_code": "EDAV" + }, + { + "id": "28706", + "ident": "EDAW", + "type": "small_airport", + "name": "Roitzschjora Airfield", + "latitude_deg": "51.577778", + "longitude_deg": "12.494444", + "elevation_ft": "289", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Roitzschjora", + "scheduled_service": "no", + "gps_code": "EDAW" + }, + { + "id": "2193", + "ident": "EDAX", + "type": "small_airport", + "name": "Rechlin-Lärz Airport", + "latitude_deg": "53.306388855", + "longitude_deg": "12.7522220612", + "elevation_ft": "220", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Lärz", + "scheduled_service": "no", + "gps_code": "EDAX", + "iata_code": "REB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rechlin-L%C3%A4rz_Airfield" + }, + { + "id": "2194", + "ident": "EDAY", + "type": "small_airport", + "name": "Strausberg Airport", + "latitude_deg": "52.5805549621582", + "longitude_deg": "13.916666984558105", + "elevation_ft": "262", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Strausberg", + "scheduled_service": "no", + "gps_code": "EDAY" + }, + { + "id": "2195", + "ident": "EDAZ", + "type": "small_airport", + "name": "Schönhagen Airport", + "latitude_deg": "52.204631", + "longitude_deg": "13.159526", + "elevation_ft": "152", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Trebbin", + "scheduled_service": "no", + "gps_code": "EDAZ", + "home_link": "http://www.flugplatz-schoenhagen.aero/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Sch%C3%B6nhagen" + }, + { + "id": "28495", + "ident": "EDBA", + "type": "small_airport", + "name": "Flugplatz Arnstadt-Alkersleben", + "latitude_deg": "50.841667", + "longitude_deg": "11.069444", + "elevation_ft": "1145", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Wülfershausen", + "scheduled_service": "no", + "gps_code": "EDBA", + "home_link": "http://www.flugplatz-alkersleben.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Arnstadt-Alkersleben", + "keywords": "Flugplatz Arnstadt-Alkersleben" + }, + { + "id": "28546", + "ident": "EDBC", + "type": "small_airport", + "name": "Cochstedt Airport", + "latitude_deg": "51.8563995361", + "longitude_deg": "11.42029953", + "elevation_ft": "594", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Magdeburg", + "scheduled_service": "no", + "gps_code": "EDBC", + "iata_code": "CSO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Magdeburg-Cochstedt_Airport" + }, + { + "id": "28549", + "ident": "EDBD", + "type": "closed", + "name": "Emmel Airfield Dedelow Airport", + "latitude_deg": "53.356388", + "longitude_deg": "13.783611", + "elevation_ft": "213", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Prenzlau", + "scheduled_service": "no", + "gps_code": "EDBD" + }, + { + "id": "29060", + "ident": "EDBE", + "type": "small_airport", + "name": "Brandenburg-Mühlenfeld Airfield", + "latitude_deg": "52.4375", + "longitude_deg": "12.59", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Brandenburg an der Havel", + "scheduled_service": "no", + "gps_code": "EDBE" + }, + { + "id": "28561", + "ident": "EDBF", + "type": "small_airport", + "name": "Fehrbellin Airfield", + "latitude_deg": "52.793331", + "longitude_deg": "12.760278", + "elevation_ft": "138", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Fehrbellin", + "scheduled_service": "no", + "gps_code": "EDBF", + "home_link": "https://flugplatzfehrbellin.de/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Flugplatz_Fehrbellin", + "keywords": "Ruppiner Land" + }, + { + "id": "43121", + "ident": "EDBG", + "type": "small_airport", + "name": "Flugplatz Burg", + "latitude_deg": "52.241669", + "longitude_deg": "11.856111", + "elevation_ft": "174", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Burg", + "scheduled_service": "no", + "gps_code": "EDBG" + }, + { + "id": "2196", + "ident": "EDBH", + "type": "small_airport", + "name": "Barth Airport", + "latitude_deg": "54.338253", + "longitude_deg": "12.710515", + "elevation_ft": "23", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "scheduled_service": "no", + "gps_code": "EDBH", + "iata_code": "BBH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stralsund%E2%80%93Barth_Airport" + }, + { + "id": "28766", + "ident": "EDBI", + "type": "small_airport", + "name": "Zwickau Airport", + "latitude_deg": "50.70166778564453", + "longitude_deg": "12.453888893127441", + "elevation_ft": "1050", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Zwickau", + "scheduled_service": "no", + "gps_code": "EDBI", + "home_link": "http://www.acz.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Zwickau", + "keywords": "Flugplatz Zwickau" + }, + { + "id": "2197", + "ident": "EDBJ", + "type": "small_airport", + "name": "Jena-Schöngleina Airfield", + "latitude_deg": "50.915279", + "longitude_deg": "11.714444", + "elevation_ft": "1247", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Jena", + "scheduled_service": "no", + "gps_code": "EDBJ", + "home_link": "http://www.flugplatz-jena.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Jena-Sch%C3%B6ngleina", + "keywords": "Flugplatz Jena-Schöngleina" + }, + { + "id": "2198", + "ident": "EDBK", + "type": "small_airport", + "name": "Flugplatz Kyritz", + "latitude_deg": "52.918888", + "longitude_deg": "12.425278", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Kyritz", + "scheduled_service": "no", + "gps_code": "EDBK" + }, + { + "id": "43122", + "ident": "EDBL", + "type": "small_airport", + "name": "Laucha Airfield", + "latitude_deg": "51.245834", + "longitude_deg": "11.693333", + "elevation_ft": "738", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Laucha an der Unstrut", + "scheduled_service": "no", + "gps_code": "EDBL" + }, + { + "id": "2199", + "ident": "EDBM", + "type": "medium_airport", + "name": "Magdeburg \"City\" Airport", + "latitude_deg": "52.073612", + "longitude_deg": "11.626389", + "elevation_ft": "259", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Magdeburg", + "scheduled_service": "no", + "gps_code": "EDBM", + "iata_code": "ZMG", + "home_link": "http://www.edbm.de", + "wikipedia_link": "https://en.wikipedia.org/wiki/Magdeburg%E2%80%93Cochstedt_Airport" + }, + { + "id": "2743", + "ident": "EDBN", + "type": "medium_airport", + "name": "Neubrandenburg Airport", + "latitude_deg": "53.6022", + "longitude_deg": "13.306", + "elevation_ft": "228", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Neubrandenburg", + "scheduled_service": "no", + "gps_code": "EDBN", + "iata_code": "FNB", + "home_link": "http://www.flughafen-neubrandenburg.de/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Neubrandenburg_Airport" + }, + { + "id": "28677", + "ident": "EDBO", + "type": "small_airport", + "name": "Flugplatz Oehna", + "latitude_deg": "51.899723", + "longitude_deg": "13.052222", + "elevation_ft": "289", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Zellendorf", + "scheduled_service": "no", + "gps_code": "EDBO" + }, + { + "id": "28726", + "ident": "EDBP", + "type": "small_airport", + "name": "Pinnow Airport", + "latitude_deg": "53.61527633666992", + "longitude_deg": "11.561111450195312", + "elevation_ft": "144", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Pinnow", + "scheduled_service": "no", + "gps_code": "EDBP" + }, + { + "id": "29061", + "ident": "EDBQ", + "type": "small_airport", + "name": "Flugplatz Bronkow", + "latitude_deg": "51.670555", + "longitude_deg": "13.960278", + "elevation_ft": "423", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Bronkow", + "scheduled_service": "no", + "gps_code": "EDBQ" + }, + { + "id": "2200", + "ident": "EDBR", + "type": "medium_airport", + "name": "Rothenburg/Görlitz Airport", + "latitude_deg": "51.36333465576172", + "longitude_deg": "14.949999809265137", + "elevation_ft": "518", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Rothenburg/Oberlausitz", + "scheduled_service": "no", + "gps_code": "EDBR", + "home_link": "http://www.flugplatz-rothenburg-goerlitz.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Rothenburg/G%C3%B6rlitz" + }, + { + "id": "28731", + "ident": "EDBS", + "type": "small_airport", + "name": "Flugplatz Sömmerda-Dermsdorf", + "latitude_deg": "51.199165", + "longitude_deg": "11.1925", + "elevation_ft": "453", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Kölleda", + "scheduled_service": "no", + "gps_code": "EDBS", + "keywords": "Flugplatz Sömmerda-Dermsdorf" + }, + { + "id": "2201", + "ident": "EDBT", + "type": "small_airport", + "name": "Flugplatz Allstedt", + "latitude_deg": "51.380554", + "longitude_deg": "11.446667", + "elevation_ft": "932", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Allstedt", + "scheduled_service": "no", + "gps_code": "EDBT" + }, + { + "id": "29062", + "ident": "EDBU", + "type": "small_airport", + "name": "Flugplatz Pritzwalk-Sommersberg", + "latitude_deg": "53.180279", + "longitude_deg": "12.185556", + "elevation_ft": "289", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Pritzwalk", + "scheduled_service": "no", + "gps_code": "EDBU" + }, + { + "id": "29063", + "ident": "EDBV", + "type": "small_airport", + "name": "Flugplatz Stralsund", + "latitude_deg": "54.335835", + "longitude_deg": "13.043333", + "elevation_ft": "49", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Stralsund", + "scheduled_service": "no", + "gps_code": "EDBV" + }, + { + "id": "2202", + "ident": "EDBW", + "type": "small_airport", + "name": "Werneuchen Airfield", + "latitude_deg": "52.631668", + "longitude_deg": "13.766944", + "elevation_ft": "262", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Werneuchen", + "scheduled_service": "no", + "gps_code": "EDBW" + }, + { + "id": "28574", + "ident": "EDBX", + "type": "small_airport", + "name": "Görlitz Airport", + "latitude_deg": "51.15888977050781", + "longitude_deg": "14.950278282165527", + "elevation_ft": "778", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Görlitz", + "scheduled_service": "no", + "gps_code": "EDBX", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_G%C3%B6rlitz", + "keywords": "Goerlitz" + }, + { + "id": "29064", + "ident": "EDBY", + "type": "small_airport", + "name": "Flugplatz Schmoldow", + "latitude_deg": "53.972221", + "longitude_deg": "13.343611", + "elevation_ft": "105", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Schmoldow", + "scheduled_service": "no", + "gps_code": "EDBY" + }, + { + "id": "29065", + "ident": "EDBZ", + "type": "small_airport", + "name": "Schwarzheide/Schipkau Airport", + "latitude_deg": "51.489723205566406", + "longitude_deg": "13.879444122314453", + "elevation_ft": "331", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Schwarzheide", + "scheduled_service": "no", + "gps_code": "EDBZ" + }, + { + "id": "2203", + "ident": "EDCA", + "type": "small_airport", + "name": "Anklam Airfield", + "latitude_deg": "53.832779", + "longitude_deg": "13.668611", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Anklam", + "scheduled_service": "no", + "gps_code": "EDCA" + }, + { + "id": "28519", + "ident": "EDCB", + "type": "small_airport", + "name": "Flugplatz Ballenstedt", + "latitude_deg": "51.745834", + "longitude_deg": "11.229722", + "elevation_ft": "535", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Ballenstedt", + "scheduled_service": "no", + "gps_code": "EDCB", + "home_link": "http://www.flugplatz-ballenstedt.de" + }, + { + "id": "2204", + "ident": "EDCD", + "type": "closed", + "name": "Cottbus-Drewitz Airport", + "latitude_deg": "51.889442", + "longitude_deg": "14.531944", + "elevation_ft": "272", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Cottbus", + "scheduled_service": "no", + "gps_code": "EDCD", + "iata_code": "CBU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cottbus-Drewitz_Airport" + }, + { + "id": "28557", + "ident": "EDCE", + "type": "small_airport", + "name": "Sonderlandeplatz Eggersdorf", + "latitude_deg": "52.481667", + "longitude_deg": "14.0875", + "elevation_ft": "223", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Eggersdorf", + "scheduled_service": "no", + "gps_code": "EDCE", + "home_link": "http://www.flugplatz-eggersdorf.de/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Flugplatz_Eggersdorf" + }, + { + "id": "28562", + "ident": "EDCF", + "type": "small_airport", + "name": "Friedersdorf Airport", + "latitude_deg": "52.28329849243164", + "longitude_deg": "13.806900024414062", + "elevation_ft": "115", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "scheduled_service": "no", + "gps_code": "EDCF" + }, + { + "id": "28584", + "ident": "EDCG", + "type": "small_airport", + "name": "Flugplatz Güttin / Rügen", + "latitude_deg": "54.383331", + "longitude_deg": "13.325556", + "elevation_ft": "69", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Rügen", + "scheduled_service": "no", + "gps_code": "EDCG", + "iata_code": "GTI", + "wikipedia_link": "https://en.wikipedia.org/wiki/R%C3%BCgen_Airport" + }, + { + "id": "29066", + "ident": "EDCH", + "type": "small_airport", + "name": "Flugplatz Sprossen (Zeitz)", + "latitude_deg": "51.043407", + "longitude_deg": "12.231895", + "elevation_ft": "673", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Sprossen", + "scheduled_service": "no", + "gps_code": "EDCH", + "keywords": "Zeitz" + }, + { + "id": "28621", + "ident": "EDCI", + "type": "small_airport", + "name": "Flugplatz Klix", + "latitude_deg": "51.273888", + "longitude_deg": "14.506389", + "elevation_ft": "486", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Bautzen", + "scheduled_service": "no", + "gps_code": "EDCI", + "home_link": "http://www.aeroteam.de/index.php?whl=13000000&lg=de", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Klix" + }, + { + "id": "29067", + "ident": "EDCJ", + "type": "small_airport", + "name": "Chemnitz/Jahnsdorf Airport", + "latitude_deg": "50.747501", + "longitude_deg": "12.8375", + "elevation_ft": "1198", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Chemnitz", + "scheduled_service": "no", + "gps_code": "EDCJ", + "home_link": "http://www.chemnitz-airport.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Chemnitz-Jahnsdorf" + }, + { + "id": "28622", + "ident": "EDCK", + "type": "small_airport", + "name": "Köthen Airport", + "latitude_deg": "51.7211112976", + "longitude_deg": "11.952777862500001", + "elevation_ft": "305", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Köthen", + "scheduled_service": "no", + "gps_code": "EDCK", + "iata_code": "KOQ", + "home_link": "http://flugplatz-koethen.jimdo.com/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_K%C3%B6then" + }, + { + "id": "29068", + "ident": "EDCL", + "type": "small_airport", + "name": "Klietz/Scharlibbe Airport", + "latitude_deg": "52.709442138671875", + "longitude_deg": "12.073332786560059", + "elevation_ft": "95", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Scharlibbe", + "scheduled_service": "no", + "gps_code": "EDCL" + }, + { + "id": "2205", + "ident": "EDCM", + "type": "small_airport", + "name": "Kamenz Airport", + "latitude_deg": "51.29694366455078", + "longitude_deg": "14.1274995803833", + "elevation_ft": "495", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Kamenz", + "scheduled_service": "no", + "gps_code": "EDCM", + "home_link": "http://www.fc-kamenz.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Kamenz" + }, + { + "id": "28656", + "ident": "EDCN", + "type": "closed", + "name": "Nauen Airport", + "latitude_deg": "52.6278", + "longitude_deg": "12.9139", + "elevation_ft": "112", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "scheduled_service": "no", + "gps_code": "EDCN" + }, + { + "id": "2206", + "ident": "EDCO", + "type": "small_airport", + "name": "Flugplatz Obermehler-Schlotheim", + "latitude_deg": "51.267776", + "longitude_deg": "10.634722", + "elevation_ft": "909", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Obermehler", + "scheduled_service": "no", + "gps_code": "EDCO", + "keywords": "Flugplatz Obermehler-Schlotheim" + }, + { + "id": "2207", + "ident": "EDCP", + "type": "small_airport", + "name": "Peenemünde Airport", + "latitude_deg": "54.1577796936", + "longitude_deg": "13.774443626399998", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Peenemünde", + "scheduled_service": "no", + "gps_code": "EDCP", + "iata_code": "PEF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Peenem%C3%BCnde_Airfield" + }, + { + "id": "28503", + "ident": "EDCQ", + "type": "small_airport", + "name": "Aschersleben Airfield", + "latitude_deg": "51.766945", + "longitude_deg": "11.498333", + "elevation_ft": "525", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Aschersleben", + "scheduled_service": "no", + "gps_code": "EDCQ" + }, + { + "id": "28703", + "ident": "EDCR", + "type": "small_airport", + "name": "Rerik-Zweedorf Airport", + "latitude_deg": "54.08194351196289", + "longitude_deg": "11.64916706085205", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Rerik", + "scheduled_service": "no", + "gps_code": "EDCR" + }, + { + "id": "28712", + "ident": "EDCS", + "type": "small_airport", + "name": "Saarmund Airport", + "latitude_deg": "52.308334", + "longitude_deg": "13.100556", + "elevation_ft": "174", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Saarmund", + "scheduled_service": "no", + "gps_code": "EDCS" + }, + { + "id": "29069", + "ident": "EDCT", + "type": "small_airport", + "name": "Flugplatz Taucha", + "latitude_deg": "51.395", + "longitude_deg": "12.536944", + "elevation_ft": "492", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Taucha", + "scheduled_service": "no", + "gps_code": "EDCT", + "home_link": "http://www.fclt.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Taucha", + "keywords": "Flugplatz Taucha" + }, + { + "id": "28583", + "ident": "EDCU", + "type": "small_airport", + "name": "Güstrow Airport", + "latitude_deg": "53.80527877807617", + "longitude_deg": "12.230555534362793", + "elevation_ft": "46", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Güstrow", + "scheduled_service": "no", + "gps_code": "EDCU" + }, + { + "id": "28687", + "ident": "EDCV", + "type": "small_airport", + "name": "Flugplatz Pasewalk", + "latitude_deg": "53.50528", + "longitude_deg": "13.948333", + "elevation_ft": "72", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Pasewalk", + "scheduled_service": "no", + "gps_code": "EDCV" + }, + { + "id": "28762", + "ident": "EDCW", + "type": "small_airport", + "name": "Wismar Airport", + "latitude_deg": "53.914444", + "longitude_deg": "11.499444", + "elevation_ft": "43", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Wismar", + "scheduled_service": "no", + "gps_code": "EDCW", + "home_link": "http://www.flugplatz-wismar.de/" + }, + { + "id": "28698", + "ident": "EDCX", + "type": "small_airport", + "name": "Flugplatz Purkshof", + "latitude_deg": "54.161667", + "longitude_deg": "12.248611", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Rostock", + "scheduled_service": "no", + "gps_code": "EDCX" + }, + { + "id": "2208", + "ident": "EDCY", + "type": "small_airport", + "name": "Spremberg-Welzow Airport", + "latitude_deg": "51.575558", + "longitude_deg": "14.136944", + "elevation_ft": "375", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Welzow", + "scheduled_service": "no", + "gps_code": "EDCY", + "home_link": "http://www.flugplatz-welzow.de", + "keywords": "Welzow, Cottbus, Senftenberg, Beton" + }, + { + "id": "301881", + "ident": "EDDB", + "type": "large_airport", + "name": "Berlin Brandenburg Airport", + "latitude_deg": "52.362247", + "longitude_deg": "13.500672", + "elevation_ft": "157", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Berlin", + "scheduled_service": "yes", + "gps_code": "EDDB", + "iata_code": "BER", + "home_link": "https://ber.berlin-airport.de/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Berlin_Brandenburg_Airport" + }, + { + "id": "2210", + "ident": "EDDC", + "type": "medium_airport", + "name": "Dresden Airport", + "latitude_deg": "51.134123", + "longitude_deg": "13.767831", + "elevation_ft": "755", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Dresden", + "scheduled_service": "yes", + "gps_code": "EDDC", + "iata_code": "DRS", + "home_link": "http://www.dresden-airport.de/en/index.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dresden_Airport" + }, + { + "id": "2211", + "ident": "EDDE", + "type": "medium_airport", + "name": "Erfurt Airport", + "latitude_deg": "50.979801177978516", + "longitude_deg": "10.958100318908691", + "elevation_ft": "1036", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Erfurt", + "scheduled_service": "yes", + "gps_code": "EDDE", + "iata_code": "ERF", + "home_link": "http://www.airport-erfurt.de/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Erfurt_Airport", + "keywords": "Flughafen Erfurt" + }, + { + "id": "2212", + "ident": "EDDF", + "type": "large_airport", + "name": "Frankfurt Airport", + "latitude_deg": "50.036521", + "longitude_deg": "8.561268", + "elevation_ft": "364", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Frankfurt am Main", + "scheduled_service": "yes", + "gps_code": "EDDF", + "iata_code": "FRA", + "home_link": "http://www.frankfurt-airport.de/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Frankfurt_Airport", + "keywords": "EDAF, Frankfurt am Main, Frankfurt Main, Rhein-Main Air Base, Zeppelinheim" + }, + { + "id": "2213", + "ident": "EDDG", + "type": "medium_airport", + "name": "Münster Osnabrück Airport", + "latitude_deg": "52.134602", + "longitude_deg": "7.68483", + "elevation_ft": "160", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Münster", + "scheduled_service": "yes", + "gps_code": "EDDG", + "iata_code": "FMO", + "wikipedia_link": "https://en.wikipedia.org/wiki/M%C3%BCnster_Osnabr%C3%BCck_International_Airport" + }, + { + "id": "2214", + "ident": "EDDH", + "type": "large_airport", + "name": "Hamburg Helmut Schmidt Airport", + "latitude_deg": "53.630402", + "longitude_deg": "9.98823", + "elevation_ft": "53", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HH", + "municipality": "Hamburg", + "scheduled_service": "yes", + "gps_code": "EDDH", + "iata_code": "HAM", + "home_link": "https://www.hamburg-airport.de/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hamburg_Airport", + "keywords": "Hamburg-Fuhlsbüttel Airport" + }, + { + "id": "2216", + "ident": "EDDK", + "type": "large_airport", + "name": "Cologne Bonn Airport", + "latitude_deg": "50.865898", + "longitude_deg": "7.14274", + "elevation_ft": "302", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Köln (Cologne)", + "scheduled_service": "yes", + "gps_code": "EDDK", + "iata_code": "CGN", + "home_link": "http://www.koeln-bonn-airport.de/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cologne_Bonn_Airport", + "keywords": "Köln" + }, + { + "id": "2217", + "ident": "EDDL", + "type": "large_airport", + "name": "Düsseldorf Airport", + "latitude_deg": "51.289501", + "longitude_deg": "6.76678", + "elevation_ft": "147", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Düsseldorf", + "scheduled_service": "yes", + "gps_code": "EDDL", + "iata_code": "DUS", + "home_link": "http://www.dus.com/dus_en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/D%C3%BCsseldorf_Airport" + }, + { + "id": "2218", + "ident": "EDDM", + "type": "large_airport", + "name": "Munich Airport", + "latitude_deg": "48.353802", + "longitude_deg": "11.7861", + "elevation_ft": "1487", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Munich", + "scheduled_service": "yes", + "gps_code": "EDDM", + "iata_code": "MUC", + "home_link": "http://www.munich-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Munich_Airport", + "keywords": "Franz Josef Strauss Airport, Flughafen München Franz Josef Strauß" + }, + { + "id": "2219", + "ident": "EDDN", + "type": "large_airport", + "name": "Nuremberg Airport", + "latitude_deg": "49.498699", + "longitude_deg": "11.078056", + "elevation_ft": "1046", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Nuremberg", + "scheduled_service": "yes", + "gps_code": "EDDN", + "iata_code": "NUE", + "home_link": "https://www.airport-nuernberg.de/english", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nuremberg_Airport", + "keywords": "Nürnberg" + }, + { + "id": "2220", + "ident": "EDDP", + "type": "large_airport", + "name": "Leipzig/Halle Airport", + "latitude_deg": "51.423889", + "longitude_deg": "12.236389", + "elevation_ft": "465", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Leipzig", + "scheduled_service": "yes", + "gps_code": "EDDP", + "iata_code": "LEJ", + "home_link": "https://www.mdf-ag.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leipzig/Halle_Airport", + "keywords": "Schkeuditz Airport" + }, + { + "id": "2221", + "ident": "EDDR", + "type": "medium_airport", + "name": "Saarbrücken Airport", + "latitude_deg": "49.214599609400004", + "longitude_deg": "7.10950994492", + "elevation_ft": "1058", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SL", + "municipality": "Saarbrücken", + "scheduled_service": "yes", + "gps_code": "EDDR", + "iata_code": "SCN", + "home_link": "http://www.flughafen-saarbruecken.de/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saarbr%C3%BCcken_Airport" + }, + { + "id": "2222", + "ident": "EDDS", + "type": "large_airport", + "name": "Stuttgart Airport", + "latitude_deg": "48.689899444599995", + "longitude_deg": "9.22196006775", + "elevation_ft": "1276", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Stuttgart", + "scheduled_service": "yes", + "gps_code": "EDDS", + "iata_code": "STR", + "home_link": "http://www.flughafen-stuttgart.de/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stuttgart_Airport" + }, + { + "id": "2223", + "ident": "EDDT", + "type": "closed", + "name": "Berlin-Tegel Otto Lilienthal Airport", + "latitude_deg": "52.5597", + "longitude_deg": "13.2877", + "elevation_ft": "122", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BE", + "municipality": "Berlin", + "scheduled_service": "no", + "gps_code": "EDDT", + "iata_code": "TXL", + "home_link": "http://www.berlin-airport.de/en/travellers-txl/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Berlin_Tegel_Airport", + "keywords": "TXL, EDDT, Otto Lilienthal" + }, + { + "id": "2224", + "ident": "EDDV", + "type": "large_airport", + "name": "Hannover Airport", + "latitude_deg": "52.461101532", + "longitude_deg": "9.685079574580001", + "elevation_ft": "183", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Hannover", + "scheduled_service": "yes", + "gps_code": "EDDV", + "iata_code": "HAJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hanover/Langenhagen_International_Airport" + }, + { + "id": "2225", + "ident": "EDDW", + "type": "medium_airport", + "name": "Bremen Airport", + "latitude_deg": "53.047501", + "longitude_deg": "8.78667", + "elevation_ft": "14", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HB", + "municipality": "Bremen", + "scheduled_service": "yes", + "gps_code": "EDDW", + "iata_code": "BRE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bremen_Airport" + }, + { + "id": "29070", + "ident": "EDEB", + "type": "small_airport", + "name": "Bad Langensalza Airfield", + "latitude_deg": "51.129166", + "longitude_deg": "10.622222", + "elevation_ft": "650", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Bad Langensalza", + "scheduled_service": "no", + "gps_code": "EDEB", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Bad_Langensalza", + "keywords": "Flugplatz Bad Langensalza" + }, + { + "id": "29677", + "ident": "EDEF", + "type": "closed", + "name": "Flugplatz Babenhausen", + "latitude_deg": "49.952499", + "longitude_deg": "8.968056", + "elevation_ft": "928", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Babenhausen", + "scheduled_service": "no", + "gps_code": "EDEF" + }, + { + "id": "28575", + "ident": "EDEG", + "type": "small_airport", + "name": "Gotha-Ost Airport", + "latitude_deg": "50.970001220703125", + "longitude_deg": "10.727778434753418", + "elevation_ft": "991", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Gotha", + "scheduled_service": "no", + "gps_code": "EDEG", + "keywords": "Flugplatz Gotha-Ost" + }, + { + "id": "28592", + "ident": "EDEH", + "type": "small_airport", + "name": "Herrenteich Airport", + "latitude_deg": "49.345001220703125", + "longitude_deg": "8.487777709960938", + "elevation_ft": "308", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Hockenheim", + "scheduled_service": "no", + "gps_code": "EDEH" + }, + { + "id": "28631", + "ident": "EDEL", + "type": "small_airport", + "name": "Langenlonsheim Airport", + "latitude_deg": "49.90833282470703", + "longitude_deg": "7.907777786254883", + "elevation_ft": "295", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Langenlonsheim", + "scheduled_service": "no", + "gps_code": "EDEL" + }, + { + "id": "28604", + "ident": "EDEM", + "type": "small_airport", + "name": "Mosenberg Airport", + "latitude_deg": "51.06277847290039", + "longitude_deg": "9.422222137451172", + "elevation_ft": "1296", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Homburg", + "scheduled_service": "no", + "gps_code": "EDEM" + }, + { + "id": "314001", + "ident": "EDEN", + "type": "small_airport", + "name": "Bad Hersfeld Airfield", + "latitude_deg": "50.844167", + "longitude_deg": "9.707778", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Bad Hersfeld", + "scheduled_service": "no", + "gps_code": "EDEN", + "keywords": "Johannesberg" + }, + { + "id": "29946", + "ident": "EDEP", + "type": "small_airport", + "name": "Heppenheim Airport", + "latitude_deg": "49.621944427490234", + "longitude_deg": "8.624444007873535", + "elevation_ft": "361", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Heppenheim", + "scheduled_service": "no", + "gps_code": "EDEP" + }, + { + "id": "28651", + "ident": "EDEQ", + "type": "small_airport", + "name": "Mühlhausen Airport", + "latitude_deg": "51.21305465698242", + "longitude_deg": "10.54861068725586", + "elevation_ft": "814", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Mühlhausen", + "scheduled_service": "no", + "gps_code": "EDEQ", + "keywords": "Flugplatz Mühlhausen" + }, + { + "id": "29072", + "ident": "EDER", + "type": "small_airport", + "name": "Wasserkuppe Airport", + "latitude_deg": "50.4988899230957", + "longitude_deg": "9.953888893127441", + "elevation_ft": "2956", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Gersfeld", + "scheduled_service": "no", + "gps_code": "EDER" + }, + { + "id": "28750", + "ident": "EDEW", + "type": "small_airport", + "name": "Walldürn Airport", + "latitude_deg": "49.581668853759766", + "longitude_deg": "9.4022216796875", + "elevation_ft": "1312", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Walldürn", + "scheduled_service": "no", + "gps_code": "EDEW" + }, + { + "id": "28500", + "ident": "EDFA", + "type": "small_airport", + "name": "Anspach/Taunus Airport", + "latitude_deg": "50.28833389", + "longitude_deg": "8.5338888", + "elevation_ft": "1102", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Anspach", + "scheduled_service": "no", + "gps_code": "EDFA" + }, + { + "id": "28700", + "ident": "EDFB", + "type": "small_airport", + "name": "Reichelsheim Airport", + "latitude_deg": "50.33583450317383", + "longitude_deg": "8.878055572509766", + "elevation_ft": "397", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Reichelsheim", + "scheduled_service": "no", + "gps_code": "EDFB" + }, + { + "id": "28502", + "ident": "EDFC", + "type": "small_airport", + "name": "Aschaffenburg Airfield", + "latitude_deg": "49.938889", + "longitude_deg": "9.063889", + "elevation_ft": "410", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Aschaffenburg", + "scheduled_service": "no", + "gps_code": "EDFC" + }, + { + "id": "28515", + "ident": "EDFD", + "type": "small_airport", + "name": "Bad Neustadt/Saale-Grasberg Airport", + "latitude_deg": "50.30611038208008", + "longitude_deg": "10.226667404174805", + "elevation_ft": "997", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Bad Neustadt a.d.Saale", + "scheduled_service": "no", + "gps_code": "EDFD" + }, + { + "id": "2226", + "ident": "EDFE", + "type": "medium_airport", + "name": "Frankfurt-Egelsbach Airport", + "latitude_deg": "49.959999", + "longitude_deg": "8.645833", + "elevation_ft": "384", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Frankfurt am Main", + "scheduled_service": "no", + "gps_code": "EDFE", + "home_link": "http://www.egelsbach-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Frankfurt_Egelsbach_Airport" + }, + { + "id": "28568", + "ident": "EDFG", + "type": "small_airport", + "name": "Gelnhausen Airport", + "latitude_deg": "50.19722366333008", + "longitude_deg": "9.170000076293945", + "elevation_ft": "446", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Gelnhausen", + "scheduled_service": "no", + "gps_code": "EDFG" + }, + { + "id": "2227", + "ident": "EDFH", + "type": "medium_airport", + "name": "Frankfurt-Hahn Airport", + "latitude_deg": "49.9487", + "longitude_deg": "7.26389", + "elevation_ft": "1649", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Frankfurt am Main", + "scheduled_service": "yes", + "gps_code": "EDFH", + "iata_code": "HHN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Frankfurt-Hahn_Airport" + }, + { + "id": "28598", + "ident": "EDFI", + "type": "small_airport", + "name": "Hirzenhain Glider Field", + "latitude_deg": "50.787777", + "longitude_deg": "8.392778", + "elevation_ft": "1706", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Hirzenhain", + "scheduled_service": "no", + "gps_code": "EDFI" + }, + { + "id": "28587", + "ident": "EDFJ", + "type": "small_airport", + "name": "Lager Hammelburg Airport", + "latitude_deg": "50.098609924316406", + "longitude_deg": "9.883610725402832", + "elevation_ft": "1132", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Hammelburg", + "scheduled_service": "no", + "gps_code": "EDFJ" + }, + { + "id": "28512", + "ident": "EDFK", + "type": "small_airport", + "name": "Bad Kissingen Airport", + "latitude_deg": "50.21055603027344", + "longitude_deg": "10.068888664245605", + "elevation_ft": "653", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Bad Kissingen", + "scheduled_service": "no", + "gps_code": "EDFK" + }, + { + "id": "28572", + "ident": "EDFL", + "type": "small_airport", + "name": "Gießen-Lützellinden Airport", + "latitude_deg": "50.543888092041016", + "longitude_deg": "8.590277671813965", + "elevation_ft": "755", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Gießen", + "scheduled_service": "no", + "gps_code": "EDFL" + }, + { + "id": "2228", + "ident": "EDFM", + "type": "medium_airport", + "name": "Mannheim-City Airport", + "latitude_deg": "49.473057", + "longitude_deg": "8.514167", + "elevation_ft": "308", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Mannheim", + "scheduled_service": "yes", + "gps_code": "EDFM", + "iata_code": "MHG", + "home_link": "http://www.flugplatz-mannheim.de/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mannheim_City_Airport", + "keywords": "Mannheim" + }, + { + "id": "28643", + "ident": "EDFN", + "type": "small_airport", + "name": "Marburg-Schönstadt Airport", + "latitude_deg": "50.87444305419922", + "longitude_deg": "8.8149995803833", + "elevation_ft": "833", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Marburg", + "scheduled_service": "no", + "gps_code": "EDFN" + }, + { + "id": "28648", + "ident": "EDFO", + "type": "small_airport", + "name": "Flugplatz Michelstadt/Odenwald", + "latitude_deg": "49.678612", + "longitude_deg": "8.971944", + "elevation_ft": "1142", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Michelstadt", + "scheduled_service": "no", + "gps_code": "EDFO", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Michelstadt" + }, + { + "id": "28675", + "ident": "EDFP", + "type": "small_airport", + "name": "Ober-Mörlen Airfield", + "latitude_deg": "50.361942", + "longitude_deg": "8.711111", + "elevation_ft": "814", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Bad Nauheim", + "scheduled_service": "no", + "gps_code": "EDFP", + "home_link": "http://www.aecbn.de/", + "keywords": "Ober-Moerlen, Bad Nauheim" + }, + { + "id": "2229", + "ident": "EDFQ", + "type": "small_airport", + "name": "Allendorf/Eder Airport", + "latitude_deg": "51.03499984741211", + "longitude_deg": "8.680832862854004", + "elevation_ft": "1158", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Allendorf", + "scheduled_service": "no", + "gps_code": "EDFQ" + }, + { + "id": "28708", + "ident": "EDFR", + "type": "small_airport", + "name": "Rothenburg o. d. T. Airport", + "latitude_deg": "49.38833236694336", + "longitude_deg": "10.218055725097656", + "elevation_ft": "1309", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Rothenburg ob der Tauber", + "scheduled_service": "no", + "gps_code": "EDFR" + }, + { + "id": "28724", + "ident": "EDFS", + "type": "small_airport", + "name": "Schweinfurt-Süd Airport", + "latitude_deg": "50.010833740234375", + "longitude_deg": "10.251111030578613", + "elevation_ft": "686", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Schweinfurt", + "scheduled_service": "no", + "gps_code": "EDFS" + }, + { + "id": "28635", + "ident": "EDFT", + "type": "small_airport", + "name": "Lauterbach Airport", + "latitude_deg": "50.683334", + "longitude_deg": "9.410833", + "elevation_ft": "1211", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Lauterbach", + "scheduled_service": "no", + "gps_code": "EDFT", + "home_link": "http://www.aeroclub-lauterbach.de/", + "keywords": "aerobatics, ultralight, glider, echo, helicopters" + }, + { + "id": "28642", + "ident": "EDFU", + "type": "small_airport", + "name": "Mainbullau Airport", + "latitude_deg": "49.69499969482422", + "longitude_deg": "9.182499885559082", + "elevation_ft": "1503", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Miltenberg", + "scheduled_service": "no", + "gps_code": "EDFU" + }, + { + "id": "2230", + "ident": "EDFV", + "type": "small_airport", + "name": "Worms Airport", + "latitude_deg": "49.606945", + "longitude_deg": "8.368333", + "elevation_ft": "295", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Worms", + "scheduled_service": "no", + "gps_code": "EDFV", + "home_link": "http://www.edfv.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Worms" + }, + { + "id": "28764", + "ident": "EDFW", + "type": "small_airport", + "name": "Würzburg-Schenkenturm Airport", + "latitude_deg": "49.81778", + "longitude_deg": "9.8975", + "elevation_ft": "991", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Würzburg", + "scheduled_service": "no", + "gps_code": "EDFW", + "home_link": "http://www.edfw.de" + }, + { + "id": "28599", + "ident": "EDFX", + "type": "small_airport", + "name": "Hockenheim Airport", + "latitude_deg": "49.325279235839844", + "longitude_deg": "8.528611183166504", + "elevation_ft": "315", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Hockenheim", + "scheduled_service": "no", + "gps_code": "EDFX" + }, + { + "id": "28559", + "ident": "EDFY", + "type": "small_airport", + "name": "Elz Airport", + "latitude_deg": "50.426944732666016", + "longitude_deg": "8.01111125946045", + "elevation_ft": "699", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Limburg an der Lahn", + "scheduled_service": "no", + "gps_code": "EDFY" + }, + { + "id": "2231", + "ident": "EDFZ", + "type": "medium_airport", + "name": "Mainz-Finthen Airport", + "latitude_deg": "49.967499", + "longitude_deg": "8.147222", + "elevation_ft": "760", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Mainz", + "scheduled_service": "no", + "gps_code": "EDFZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mainz_Finthen_Airport", + "keywords": "QMZ" + }, + { + "id": "28493", + "ident": "EDGA", + "type": "small_airport", + "name": "Ailertchen Airport", + "latitude_deg": "50.593055725097656", + "longitude_deg": "7.945000171661377", + "elevation_ft": "1542", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Ailertchen", + "scheduled_service": "no", + "gps_code": "EDGA" + }, + { + "id": "28538", + "ident": "EDGB", + "type": "small_airport", + "name": "Breitscheid Airport", + "latitude_deg": "50.676387786865234", + "longitude_deg": "8.16944408416748", + "elevation_ft": "1834", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Breitscheid", + "scheduled_service": "no", + "gps_code": "EDGB" + }, + { + "id": "2232", + "ident": "EDGE", + "type": "medium_airport", + "name": "Eisenach-Kindel Airport", + "latitude_deg": "50.991604", + "longitude_deg": "10.47973", + "elevation_ft": "1112", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Eisenach", + "scheduled_service": "no", + "gps_code": "EDGE", + "iata_code": "EIB", + "home_link": "http://www.flugplatz-eisenach.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Eisenach-Kindel", + "keywords": "Flugplatz Eisenach-Kindel" + }, + { + "id": "28565", + "ident": "EDGF", + "type": "small_airport", + "name": "Fulda-Jossa Airport", + "latitude_deg": "50.475555419921875", + "longitude_deg": "9.442500114440918", + "elevation_ft": "1558", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Fulda", + "scheduled_service": "no", + "gps_code": "EDGF" + }, + { + "id": "28595", + "ident": "EDGH", + "type": "small_airport", + "name": "Hettstadt Airport", + "latitude_deg": "49.79861068725586", + "longitude_deg": "9.83666706085205", + "elevation_ft": "1050", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Hettstadt", + "scheduled_service": "no", + "gps_code": "EDGH" + }, + { + "id": "28610", + "ident": "EDGI", + "type": "small_airport", + "name": "Sonderlandeplatz Ingelfingen-Bühlhof", + "latitude_deg": "49.321667", + "longitude_deg": "9.663056", + "elevation_ft": "1375", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Ingelfingen", + "scheduled_service": "no", + "gps_code": "EDGI" + }, + { + "id": "28676", + "ident": "EDGJ", + "type": "small_airport", + "name": "Ochsenfurt Airport", + "latitude_deg": "49.67361068725586", + "longitude_deg": "10.071389198303223", + "elevation_ft": "814", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Ochsenfurt", + "scheduled_service": "no", + "gps_code": "EDGJ" + }, + { + "id": "28624", + "ident": "EDGK", + "type": "small_airport", + "name": "Korbach Airport", + "latitude_deg": "51.252220153808594", + "longitude_deg": "8.873611450195312", + "elevation_ft": "1280", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Korbach", + "scheduled_service": "no", + "gps_code": "EDGK" + }, + { + "id": "308408", + "ident": "EDGL", + "type": "heliport", + "name": "Ludwigshafen Unfallklinik Heliport.", + "latitude_deg": "49.4865", + "longitude_deg": "8.3893", + "elevation_ft": "313", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Ludwigshafen", + "scheduled_service": "no", + "gps_code": "EDGL", + "keywords": "ZOE" + }, + { + "id": "28649", + "ident": "EDGM", + "type": "small_airport", + "name": "Mosbach-Lohrbach Airport", + "latitude_deg": "49.398887634277344", + "longitude_deg": "9.123888969421387", + "elevation_ft": "1818", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Mosbach", + "scheduled_service": "no", + "gps_code": "EDGM" + }, + { + "id": "28669", + "ident": "EDGN", + "type": "closed", + "name": "Nordenbeck Airport", + "latitude_deg": "51.2350791174", + "longitude_deg": "8.81752610207", + "elevation_ft": "1453", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "scheduled_service": "no", + "gps_code": "EDGN" + }, + { + "id": "44703", + "ident": "EDGO", + "type": "heliport", + "name": "Oedheim Heliport", + "latitude_deg": "49.24100112915039", + "longitude_deg": "9.234999656677246", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Oedheim", + "scheduled_service": "no", + "gps_code": "EDGO" + }, + { + "id": "28681", + "ident": "EDGP", + "type": "small_airport", + "name": "Oppenheim Airport", + "latitude_deg": "49.84166717529297", + "longitude_deg": "8.376667022705078", + "elevation_ft": "279", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Oppenheim", + "scheduled_service": "no", + "gps_code": "EDGP" + }, + { + "id": "28715", + "ident": "EDGQ", + "type": "small_airport", + "name": "Schameder Airport", + "latitude_deg": "51.00027847290039", + "longitude_deg": "8.307778358459473", + "elevation_ft": "1788", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Schameder", + "scheduled_service": "no", + "gps_code": "EDGQ" + }, + { + "id": "28573", + "ident": "EDGR", + "type": "small_airport", + "name": "Gießen-Reiskirchen Airport", + "latitude_deg": "50.56694412231445", + "longitude_deg": "8.869722366333008", + "elevation_ft": "702", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Gießen", + "scheduled_service": "no", + "gps_code": "EDGR" + }, + { + "id": "2233", + "ident": "EDGS", + "type": "medium_airport", + "name": "Siegerland Airport", + "latitude_deg": "50.707698822021484", + "longitude_deg": "8.082969665527344", + "elevation_ft": "1966", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "scheduled_service": "no", + "gps_code": "EDGS", + "iata_code": "SGE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Siegerland_Airport" + }, + { + "id": "28537", + "ident": "EDGT", + "type": "small_airport", + "name": "Bottenhorn Airport", + "latitude_deg": "50.7952766418457", + "longitude_deg": "8.458333015441895", + "elevation_ft": "1657", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Bottenhorn", + "scheduled_service": "no", + "gps_code": "EDGT" + }, + { + "id": "28743", + "ident": "EDGU", + "type": "small_airport", + "name": "Unterschüpf Airport", + "latitude_deg": "49.51583480834961", + "longitude_deg": "9.66944408416748", + "elevation_ft": "1155", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Unterschüpf", + "scheduled_service": "no", + "gps_code": "EDGU" + }, + { + "id": "28763", + "ident": "EDGW", + "type": "small_airport", + "name": "Flugplatz „Graner Berg“", + "latitude_deg": "51.30722", + "longitude_deg": "9.175278", + "elevation_ft": "1027", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Wolfhagen", + "scheduled_service": "no", + "gps_code": "EDGW" + }, + { + "id": "28749", + "ident": "EDGX", + "type": "small_airport", + "name": "Walldorf Airport", + "latitude_deg": "49.30305480957031", + "longitude_deg": "8.658888816833496", + "elevation_ft": "344", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Walldorf", + "scheduled_service": "no", + "gps_code": "EDGX" + }, + { + "id": "28754", + "ident": "EDGZ", + "type": "small_airport", + "name": "Weinheim/Bergstraße Airport", + "latitude_deg": "49.567501068115234", + "longitude_deg": "8.610555648803711", + "elevation_ft": "318", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Weinheim", + "scheduled_service": "no", + "gps_code": "EDGZ", + "keywords": "Bergstrasse" + }, + { + "id": "319948", + "ident": "EDHA", + "type": "closed", + "name": "Ahlhorn", + "latitude_deg": "52.888333", + "longitude_deg": "8.233333", + "elevation_ft": "161", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Ahlhorn", + "scheduled_service": "no", + "gps_code": "EDHA", + "home_link": "http://www.metropolpark-hansalinie.de/service/sonderlandeplatz/", + "keywords": "Ahlhorn" + }, + { + "id": "28581", + "ident": "EDHB", + "type": "small_airport", + "name": "Sonderlandeplatz Grube", + "latitude_deg": "54.244446", + "longitude_deg": "11.024722", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Grube", + "scheduled_service": "no", + "gps_code": "EDHB", + "home_link": "https://flugplatz-grube.de/" + }, + { + "id": "28640", + "ident": "EDHC", + "type": "small_airport", + "name": "Flugplatz Lüchow-Rehbeck", + "latitude_deg": "53.016109", + "longitude_deg": "11.144444", + "elevation_ft": "49", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Lüchow", + "scheduled_service": "no", + "gps_code": "EDHC" + }, + { + "id": "308604", + "ident": "EDHD", + "type": "small_airport", + "name": "Heilbad Heiligenstadt Airfield", + "latitude_deg": "51.40755", + "longitude_deg": "10.1453", + "elevation_ft": "1195", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Heilbad Heiligenstadt", + "scheduled_service": "no", + "gps_code": "EDHD", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_G%C3%B6ttingen-Heilbad_Heiligenstadt" + }, + { + "id": "28742", + "ident": "EDHE", + "type": "small_airport", + "name": "Flugplatz Uetersen/Heist", + "latitude_deg": "53.646389", + "longitude_deg": "9.704167", + "elevation_ft": "23", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Uetersen", + "scheduled_service": "no", + "gps_code": "EDHE" + }, + { + "id": "29073", + "ident": "EDHF", + "type": "small_airport", + "name": "Itzehoe/Hungriger Wolf Airfield", + "latitude_deg": "53.992009", + "longitude_deg": "9.576409", + "elevation_ft": "89", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Itzehoe", + "scheduled_service": "no", + "gps_code": "EDHF", + "iata_code": "IZE", + "wikipedia_link": "https://de.wikipedia.org/wiki/Flugplatz_Itzehoe/Hungriger_Wolf" + }, + { + "id": "29074", + "ident": "EDHG", + "type": "small_airport", + "name": "Flugplatz Lüneburg", + "latitude_deg": "53.24889", + "longitude_deg": "10.461667", + "elevation_ft": "161", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Lüneburg", + "scheduled_service": "no", + "gps_code": "EDHG" + }, + { + "id": "2234", + "ident": "EDHI", + "type": "medium_airport", + "name": "Hamburg-Finkenwerder Airport", + "latitude_deg": "53.5352783203125", + "longitude_deg": "9.835556030273438", + "elevation_ft": "23", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HH", + "municipality": "Hamburg", + "scheduled_service": "no", + "gps_code": "EDHI", + "iata_code": "XFW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hamburg_Finkenwerder_Airport" + }, + { + "id": "2235", + "ident": "EDHK", + "type": "medium_airport", + "name": "Kiel-Holtenau Airport", + "latitude_deg": "54.379444", + "longitude_deg": "10.145278", + "elevation_ft": "102", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Kiel", + "scheduled_service": "no", + "gps_code": "EDHK", + "iata_code": "KEL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kiel-Holtenau_airport" + }, + { + "id": "2236", + "ident": "EDHL", + "type": "medium_airport", + "name": "Lübeck Blankensee Airport", + "latitude_deg": "53.8054008484", + "longitude_deg": "10.7192001343", + "elevation_ft": "53", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Lübeck", + "scheduled_service": "yes", + "gps_code": "EDHL", + "iata_code": "LBC", + "wikipedia_link": "https://en.wikipedia.org/wiki/L%C3%BCbeck_Airport" + }, + { + "id": "28589", + "ident": "EDHM", + "type": "small_airport", + "name": "Flugplatz Hartenholm", + "latitude_deg": "53.915001", + "longitude_deg": "10.035556", + "elevation_ft": "108", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Hasenmoor", + "scheduled_service": "no", + "gps_code": "EDHM", + "wikipedia_link": "https://de.wikipedia.org/wiki/Flugplatz_Hartenholm" + }, + { + "id": "28662", + "ident": "EDHN", + "type": "small_airport", + "name": "Neumünster Airport", + "latitude_deg": "54.079444885253906", + "longitude_deg": "9.941389083862305", + "elevation_ft": "72", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Neumünster", + "scheduled_service": "no", + "gps_code": "EDHN", + "iata_code": "EUM" + }, + { + "id": "28492", + "ident": "EDHO", + "type": "small_airport", + "name": "Flugplatz Ahrenlohe", + "latitude_deg": "53.699722", + "longitude_deg": "9.740556", + "elevation_ft": "33", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Tornesch", + "scheduled_service": "no", + "gps_code": "EDHO" + }, + { + "id": "43123", + "ident": "EDHP", + "type": "closed", + "name": "Pellworm Field", + "latitude_deg": "54.536388", + "longitude_deg": "8.68", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Pellworm", + "scheduled_service": "no", + "gps_code": "EDHP", + "keywords": "UL-Field" + }, + { + "id": "28735", + "ident": "EDHS", + "type": "small_airport", + "name": "Flugplatz Stade", + "latitude_deg": "53.561111", + "longitude_deg": "9.499167", + "elevation_ft": "62", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Stade", + "scheduled_service": "no", + "gps_code": "EDHS" + }, + { + "id": "28633", + "ident": "EDHU", + "type": "small_airport", + "name": "Sonderlandeplatz Lauenbrück", + "latitude_deg": "53.2075", + "longitude_deg": "9.573333", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Lauenbrück", + "scheduled_service": "no", + "gps_code": "EDHU", + "home_link": "https://www.edhu.de" + }, + { + "id": "28748", + "ident": "EDHW", + "type": "small_airport", + "name": "Flugplatz Wahlstedt", + "latitude_deg": "53.969444", + "longitude_deg": "10.221667", + "elevation_ft": "128", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Wahlstedt", + "scheduled_service": "no", + "gps_code": "EDHW", + "home_link": "http://www.edhw.de/" + }, + { + "id": "308606", + "ident": "EDHX", + "type": "heliport", + "name": "Bad Bramstedt Heliport", + "latitude_deg": "53.9428", + "longitude_deg": "9.9055", + "elevation_ft": "118", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Bad Bramstedt", + "scheduled_service": "no", + "gps_code": "EDHX" + }, + { + "id": "2237", + "ident": "EDJA", + "type": "medium_airport", + "name": "Memmingen Allgau Airport", + "latitude_deg": "47.988800048799995", + "longitude_deg": "10.2395000458", + "elevation_ft": "2077", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Memmingen", + "scheduled_service": "yes", + "gps_code": "EDJA", + "iata_code": "FMM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Memmingen_Airport" + }, + { + "id": "308861", + "ident": "EDJG", + "type": "small_airport", + "name": "Grabenstätt Airfield", + "latitude_deg": "47.852757", + "longitude_deg": "12.55037", + "elevation_ft": "1765", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Grabenstätt", + "scheduled_service": "no", + "gps_code": "EDJG" + }, + { + "id": "28490", + "ident": "EDKA", + "type": "small_airport", + "name": "Aachen-Merzbrück Airport", + "latitude_deg": "50.823055", + "longitude_deg": "6.186389", + "elevation_ft": "623", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Aachen", + "scheduled_service": "no", + "gps_code": "EDKA", + "iata_code": "AAH", + "home_link": "https://www.flugplatz-aachen.de", + "keywords": "Flugplatz Aachen Merzbrück, Segelflug Aachen, Motorflug Aachen" + }, + { + "id": "28532", + "ident": "EDKB", + "type": "small_airport", + "name": "Bonn-Hangelar Airport", + "latitude_deg": "50.7688903809", + "longitude_deg": "7.16333293915", + "elevation_ft": "197", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Bonn", + "scheduled_service": "no", + "gps_code": "EDKB", + "iata_code": "BNJ", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Bonn/Hangelar" + }, + { + "id": "28497", + "ident": "EDKD", + "type": "small_airport", + "name": "Altena-Hegenscheid Airport", + "latitude_deg": "51.31305694580078", + "longitude_deg": "7.704166889190674", + "elevation_ft": "1552", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Altena", + "scheduled_service": "no", + "gps_code": "EDKD" + }, + { + "id": "28523", + "ident": "EDKF", + "type": "small_airport", + "name": "Bergneustadt/Auf dem Dümpel Airport", + "latitude_deg": "51.052223205566406", + "longitude_deg": "7.707221984863281", + "elevation_ft": "1604", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Bergneustadt", + "scheduled_service": "no", + "gps_code": "EDKF" + }, + { + "id": "28606", + "ident": "EDKH", + "type": "small_airport", + "name": "Hünsborn Airport", + "latitude_deg": "50.928611755371094", + "longitude_deg": "7.899167060852051", + "elevation_ft": "1306", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Freudenberg", + "scheduled_service": "no", + "gps_code": "EDKH" + }, + { + "id": "28524", + "ident": "EDKI", + "type": "small_airport", + "name": "Betzdorf-Kirchen Airport", + "latitude_deg": "50.817222595214844", + "longitude_deg": "7.8305559158325195", + "elevation_ft": "1125", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Betzdorf", + "scheduled_service": "no", + "gps_code": "EDKI" + }, + { + "id": "28637", + "ident": "EDKL", + "type": "small_airport", + "name": "Leverkusen Airport", + "latitude_deg": "51.01527786254883", + "longitude_deg": "7.005556106567383", + "elevation_ft": "157", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Leverkusen", + "scheduled_service": "no", + "gps_code": "EDKL" + }, + { + "id": "28647", + "ident": "EDKM", + "type": "small_airport", + "name": "Meschede-Schüren Airport", + "latitude_deg": "51.30277633666992", + "longitude_deg": "8.239167213439941", + "elevation_ft": "1434", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Meschede", + "scheduled_service": "no", + "gps_code": "EDKM" + }, + { + "id": "28761", + "ident": "EDKN", + "type": "small_airport", + "name": "Wipperfürth-Neye Airport", + "latitude_deg": "51.124168395996094", + "longitude_deg": "7.373610973358154", + "elevation_ft": "863", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Wipperfürth", + "scheduled_service": "no", + "gps_code": "EDKN" + }, + { + "id": "28540", + "ident": "EDKO", + "type": "small_airport", + "name": "Brilon/Hochsauerlandkreis Airfield", + "latitude_deg": "51.4025", + "longitude_deg": "8.641667", + "elevation_ft": "1509", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Brilon", + "scheduled_service": "no", + "gps_code": "EDKO" + }, + { + "id": "28696", + "ident": "EDKP", + "type": "small_airport", + "name": "Plettenberg-Hüinghausen Airport", + "latitude_deg": "51.19194412231445", + "longitude_deg": "7.791110992431641", + "elevation_ft": "981", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Plettenberg", + "scheduled_service": "no", + "gps_code": "EDKP" + }, + { + "id": "28717", + "ident": "EDKR", + "type": "small_airport", + "name": "Schmallenberg-Rennefeld Airport", + "latitude_deg": "51.1615", + "longitude_deg": "8.260667", + "elevation_ft": "1530", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Schmallenberg", + "scheduled_service": "no", + "gps_code": "EDKR", + "home_link": "https://www.rennefeld.de/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Flugplatz_Schmallenberg-Rennefeld" + }, + { + "id": "28504", + "ident": "EDKU", + "type": "small_airport", + "name": "Attendorn-Finnentrop Airport", + "latitude_deg": "51.1458320618", + "longitude_deg": "7.93666696548", + "elevation_ft": "1040", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Attendorn", + "scheduled_service": "no", + "gps_code": "EDKU", + "home_link": "http://www.edku.de/" + }, + { + "id": "2238", + "ident": "EDKV", + "type": "small_airport", + "name": "Flugplatz Dahlemer Binz", + "latitude_deg": "50.405555725", + "longitude_deg": "6.5288891792", + "elevation_ft": "1896", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Dahlheim", + "scheduled_service": "no", + "gps_code": "EDKV" + }, + { + "id": "28756", + "ident": "EDKW", + "type": "small_airport", + "name": "Werdohl-Küntrop Airport", + "latitude_deg": "51.29722213745117", + "longitude_deg": "7.818333148956299", + "elevation_ft": "1037", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Werdohl", + "scheduled_service": "no", + "gps_code": "EDKW" + }, + { + "id": "2239", + "ident": "EDKZ", + "type": "small_airport", + "name": "Meinerzhagen Airport", + "latitude_deg": "51.099399", + "longitude_deg": "7.596896", + "elevation_ft": "1549", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Meinerzhagen", + "scheduled_service": "no", + "gps_code": "EDKZ" + }, + { + "id": "2240", + "ident": "EDLA", + "type": "small_airport", + "name": "Arnsberg-Menden Airport", + "latitude_deg": "51.483890533447266", + "longitude_deg": "7.8983330726623535", + "elevation_ft": "794", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Neheim-Hüsten", + "scheduled_service": "no", + "gps_code": "EDLA" + }, + { + "id": "28536", + "ident": "EDLB", + "type": "small_airport", + "name": "Borkenberge Airport", + "latitude_deg": "51.779998779299994", + "longitude_deg": "7.28805589676", + "elevation_ft": "157", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Dülmen", + "scheduled_service": "no", + "gps_code": "EDLB", + "home_link": "http://www.borkenberge.com/" + }, + { + "id": "28615", + "ident": "EDLC", + "type": "small_airport", + "name": "Kamp-Lintfort Airport", + "latitude_deg": "51.52916717529297", + "longitude_deg": "6.536110877990723", + "elevation_ft": "85", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Rheinberg", + "scheduled_service": "no", + "gps_code": "EDLC" + }, + { + "id": "28553", + "ident": "EDLD", + "type": "small_airport", + "name": "Dinslaken/Schwarze Heide Airport", + "latitude_deg": "51.616112", + "longitude_deg": "6.865278", + "elevation_ft": "217", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Bottrop-Kirchhellen", + "scheduled_service": "no", + "gps_code": "EDLD", + "home_link": "http://schwarze-heide.com", + "wikipedia_link": "https://de.wikipedia.org/wiki/Flugplatz_Schwarze_Heide" + }, + { + "id": "2241", + "ident": "EDLE", + "type": "small_airport", + "name": "Essen Mülheim Airport", + "latitude_deg": "51.402302", + "longitude_deg": "6.93733", + "elevation_ft": "424", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "scheduled_service": "no", + "gps_code": "EDLE", + "iata_code": "ESS" + }, + { + "id": "28577", + "ident": "EDLF", + "type": "small_airport", + "name": "Grefrath-Niershorst Airport", + "latitude_deg": "51.33388900756836", + "longitude_deg": "6.3594441413879395", + "elevation_ft": "105", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Grefrath", + "scheduled_service": "no", + "gps_code": "EDLF" + }, + { + "id": "29075", + "ident": "EDLG", + "type": "small_airport", + "name": "Goch-Asperden Airport", + "latitude_deg": "51.690834045410156", + "longitude_deg": "6.1041669845581055", + "elevation_ft": "52", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Goch", + "scheduled_service": "no", + "gps_code": "EDLG" + }, + { + "id": "28586", + "ident": "EDLH", + "type": "small_airport", + "name": "Hamm-Lippewiesen Airport", + "latitude_deg": "51.689720153808594", + "longitude_deg": "7.816111087799072", + "elevation_ft": "190", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Hamm", + "scheduled_service": "no", + "gps_code": "EDLH" + }, + { + "id": "2242", + "ident": "EDLI", + "type": "small_airport", + "name": "Bielefeld Airport", + "latitude_deg": "51.964722", + "longitude_deg": "8.544444", + "elevation_ft": "454", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Bielefeld", + "scheduled_service": "no", + "gps_code": "EDLI", + "iata_code": "BFE", + "home_link": "http://www.flugplatz-bielefeld.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Bielefeld", + "keywords": "Flugplatz-Windelsbleiche" + }, + { + "id": "29826", + "ident": "EDLJ", + "type": "small_airport", + "name": "Detmold Airport", + "latitude_deg": "51.940834045410156", + "longitude_deg": "8.904722213745117", + "elevation_ft": "650", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Detmold", + "scheduled_service": "no", + "gps_code": "EDLJ" + }, + { + "id": "28625", + "ident": "EDLK", + "type": "small_airport", + "name": "Krefeld-Egelsberg Airfield", + "latitude_deg": "51.384998", + "longitude_deg": "6.587778", + "elevation_ft": "141", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Krefeld", + "scheduled_service": "no", + "gps_code": "EDLK" + }, + { + "id": "28644", + "ident": "EDLM", + "type": "small_airport", + "name": "Marl-Loemühle Airfield", + "latitude_deg": "51.647202", + "longitude_deg": "7.16333", + "elevation_ft": "240", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Marl", + "scheduled_service": "no", + "gps_code": "EDLM", + "home_link": "http://www.vlp-loemuehle.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Marl-Loem%C3%BChle", + "keywords": "Recklinghausen" + }, + { + "id": "2243", + "ident": "EDLN", + "type": "medium_airport", + "name": "Mönchengladbach Airport", + "latitude_deg": "51.230278", + "longitude_deg": "6.504444", + "elevation_ft": "125", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Mönchengladbach", + "scheduled_service": "no", + "gps_code": "EDLN", + "iata_code": "MGL", + "wikipedia_link": "https://en.wikipedia.org/wiki/D%C3%BCsseldorf-M%C3%B6nchengladbach_Airport" + }, + { + "id": "28678", + "ident": "EDLO", + "type": "small_airport", + "name": "Flugplatz Oerlinghausen", + "latitude_deg": "51.93222", + "longitude_deg": "8.661667", + "elevation_ft": "558", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Oerlinghausen", + "scheduled_service": "no", + "gps_code": "EDLO" + }, + { + "id": "2244", + "ident": "EDLP", + "type": "medium_airport", + "name": "Paderborn Lippstadt Airport", + "latitude_deg": "51.614101409899995", + "longitude_deg": "8.616319656369999", + "elevation_ft": "699", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Paderborn", + "scheduled_service": "yes", + "gps_code": "EDLP", + "iata_code": "PAD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paderborn_Lippstadt_Airport" + }, + { + "id": "314002", + "ident": "EDLQ", + "type": "small_airport", + "name": "Beelen Airport", + "latitude_deg": "51.931666666699996", + "longitude_deg": "8.08166666667", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "scheduled_service": "no", + "gps_code": "EDLQ" + }, + { + "id": "28686", + "ident": "EDLR", + "type": "small_airport", + "name": "Paderborn-Haxterberg Airport", + "latitude_deg": "51.688331604003906", + "longitude_deg": "8.775278091430664", + "elevation_ft": "801", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Paderborn", + "scheduled_service": "no", + "gps_code": "EDLR" + }, + { + "id": "2245", + "ident": "EDLS", + "type": "small_airport", + "name": "Stadtlohn-Vreden Airfield", + "latitude_deg": "51.995834", + "longitude_deg": "6.840556", + "elevation_ft": "157", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Stadtlohn", + "scheduled_service": "no", + "gps_code": "EDLS" + }, + { + "id": "28652", + "ident": "EDLT", + "type": "small_airport", + "name": "Münster-Telgte Airport", + "latitude_deg": "51.94444274902344", + "longitude_deg": "7.773889064788818", + "elevation_ft": "177", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Münster", + "scheduled_service": "no", + "gps_code": "EDLT" + }, + { + "id": "30206", + "ident": "EDLU", + "type": "small_airport", + "name": "Oelde Bergeler Airfield", + "latitude_deg": "51.830601", + "longitude_deg": "8.17472", + "elevation_ft": "269", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "scheduled_service": "no", + "gps_code": "EDLU" + }, + { + "id": "2246", + "ident": "EDLV", + "type": "medium_airport", + "name": "Weeze Airport", + "latitude_deg": "51.6024017334", + "longitude_deg": "6.14216995239", + "elevation_ft": "106", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Weeze", + "scheduled_service": "yes", + "gps_code": "EDLV", + "iata_code": "NRN", + "home_link": "http://www.airport-weeze.de/de", + "wikipedia_link": "https://en.wikipedia.org/wiki/Airport_Weeze", + "keywords": "LRC, ETUL, Niederrhein Airport, RAF Laarbruch, Düsseldorf Regional" + }, + { + "id": "2247", + "ident": "EDLW", + "type": "medium_airport", + "name": "Dortmund Airport", + "latitude_deg": "51.518299", + "longitude_deg": "7.61224", + "elevation_ft": "425", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Dortmund", + "scheduled_service": "yes", + "gps_code": "EDLW", + "iata_code": "DTM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dortmund_Airport" + }, + { + "id": "28757", + "ident": "EDLX", + "type": "small_airport", + "name": "Wesel-Römerwardt Airfield", + "latitude_deg": "51.662777", + "longitude_deg": "6.595833", + "elevation_ft": "72", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Wesel", + "scheduled_service": "no", + "gps_code": "EDLX" + }, + { + "id": "28535", + "ident": "EDLY", + "type": "small_airport", + "name": "Borken-Hoxfeld Airfield", + "latitude_deg": "51.853333", + "longitude_deg": "6.814722", + "elevation_ft": "157", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Borken", + "scheduled_service": "no", + "gps_code": "EDLY" + }, + { + "id": "28730", + "ident": "EDLZ", + "type": "small_airport", + "name": "Soest/Bad Sassendorf Airfield", + "latitude_deg": "51.578056", + "longitude_deg": "8.214722", + "elevation_ft": "394", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Bad Sassendorf", + "scheduled_service": "no", + "gps_code": "EDLZ" + }, + { + "id": "2248", + "ident": "EDMA", + "type": "medium_airport", + "name": "Augsburg Airport", + "latitude_deg": "48.425278", + "longitude_deg": "10.931667", + "elevation_ft": "1516", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Augsburg", + "scheduled_service": "no", + "gps_code": "EDMA", + "iata_code": "AGB", + "home_link": "https://www.augsburg-airport.de/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Augsburg_Airport" + }, + { + "id": "2249", + "ident": "EDMB", + "type": "small_airport", + "name": "Biberach an der Riß Airfield", + "latitude_deg": "48.112359", + "longitude_deg": "9.764013", + "elevation_ft": "1903", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Biberach an der Riß", + "scheduled_service": "no", + "gps_code": "EDMB", + "keywords": "Biberach an der Riss" + }, + { + "id": "28527", + "ident": "EDMC", + "type": "small_airport", + "name": "Blaubeuren Airfield", + "latitude_deg": "48.419724", + "longitude_deg": "9.798333", + "elevation_ft": "2218", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Blaubeuren", + "scheduled_service": "no", + "gps_code": "EDMC" + }, + { + "id": "28547", + "ident": "EDMD", + "type": "small_airport", + "name": "Dachau-Gröbenried Airfield", + "latitude_deg": "48.228333", + "longitude_deg": "11.423056", + "elevation_ft": "1608", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Dachau", + "scheduled_service": "no", + "gps_code": "EDMD", + "home_link": "https://www.ac-dachau.de/" + }, + { + "id": "2250", + "ident": "EDME", + "type": "small_airport", + "name": "Eggenfelden Airfield", + "latitude_deg": "48.396111", + "longitude_deg": "12.723611", + "elevation_ft": "1342", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Eggenfelden", + "scheduled_service": "no", + "gps_code": "EDME" + }, + { + "id": "28564", + "ident": "EDMF", + "type": "small_airport", + "name": "Fürstenzell Airfield", + "latitude_deg": "48.518055", + "longitude_deg": "13.345833", + "elevation_ft": "1345", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Fürstenzell", + "scheduled_service": "no", + "gps_code": "EDMF" + }, + { + "id": "28582", + "ident": "EDMG", + "type": "small_airport", + "name": "Günzburg-Donauried Airfield", + "latitude_deg": "48.486668", + "longitude_deg": "10.283333", + "elevation_ft": "1457", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Günzburg", + "scheduled_service": "no", + "gps_code": "EDMG" + }, + { + "id": "28585", + "ident": "EDMH", + "type": "small_airport", + "name": "Gunzenhausen-Reutberg Airfield", + "latitude_deg": "49.111942", + "longitude_deg": "10.780833", + "elevation_ft": "1591", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Gunzenhausen", + "scheduled_service": "no", + "gps_code": "EDMH" + }, + { + "id": "28609", + "ident": "EDMI", + "type": "small_airport", + "name": "Illertissen Airfield", + "latitude_deg": "48.235", + "longitude_deg": "10.1377", + "elevation_ft": "1680", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Illertissen", + "scheduled_service": "no", + "gps_code": "EDMI", + "home_link": "http://www.lvi-illertissen.de" + }, + { + "id": "28613", + "ident": "EDMJ", + "type": "small_airport", + "name": "Flugplatz Jesenwang", + "latitude_deg": "48.174168", + "longitude_deg": "11.125", + "elevation_ft": "1860", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Jesenwang", + "scheduled_service": "no", + "gps_code": "EDMJ" + }, + { + "id": "28619", + "ident": "EDMK", + "type": "small_airport", + "name": "Kempten-Durach Airfield", + "latitude_deg": "47.691944", + "longitude_deg": "10.338056", + "elevation_ft": "2339", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Kempten", + "scheduled_service": "no", + "gps_code": "EDMK" + }, + { + "id": "28630", + "ident": "EDML", + "type": "small_airport", + "name": "Landshut Airfield", + "latitude_deg": "48.511665", + "longitude_deg": "12.033333", + "elevation_ft": "1312", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Landshut", + "scheduled_service": "no", + "gps_code": "EDML" + }, + { + "id": "2251", + "ident": "EDMN", + "type": "small_airport", + "name": "Mindelheim-Mattsies Airfield", + "latitude_deg": "48.106945", + "longitude_deg": "10.525", + "elevation_ft": "1857", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Mindelheim", + "scheduled_service": "no", + "gps_code": "EDMN", + "wikipedia_link": "https://de.wikipedia.org/wiki/Flugplatz_Mindelheim-Mattsies" + }, + { + "id": "2252", + "ident": "EDMO", + "type": "medium_airport", + "name": "Oberpfaffenhofen Airport", + "latitude_deg": "48.081402", + "longitude_deg": "11.2831", + "elevation_ft": "1947", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Weßling", + "scheduled_service": "no", + "gps_code": "EDMO", + "iata_code": "OBF", + "home_link": "http://www.edmo-airport.de", + "keywords": "Weßling" + }, + { + "id": "28746", + "ident": "EDMP", + "type": "small_airport", + "name": "Vilsbiburg Airfield", + "latitude_deg": "48.426109", + "longitude_deg": "12.345278", + "elevation_ft": "1450", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Vilsbiburg", + "scheduled_service": "no", + "gps_code": "EDMP" + }, + { + "id": "28554", + "ident": "EDMQ", + "type": "small_airport", + "name": "Donauwörth-Genderkingen Airfield", + "latitude_deg": "48.703062", + "longitude_deg": "10.852323", + "elevation_ft": "1312", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Donauwörth", + "scheduled_service": "no", + "gps_code": "EDMQ" + }, + { + "id": "2253", + "ident": "EDMS", + "type": "small_airport", + "name": "Straubing Airport", + "latitude_deg": "48.90083312988281", + "longitude_deg": "12.516667366027832", + "elevation_ft": "1047", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Straubing", + "scheduled_service": "no", + "gps_code": "EDMS", + "iata_code": "RBM" + }, + { + "id": "28737", + "ident": "EDMT", + "type": "small_airport", + "name": "Tannheim Airfield", + "latitude_deg": "48.009998", + "longitude_deg": "10.098611", + "elevation_ft": "1903", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Tannheim", + "scheduled_service": "no", + "gps_code": "EDMT", + "home_link": "http://www.tannkosh.de/" + }, + { + "id": "29076", + "ident": "EDMU", + "type": "small_airport", + "name": "Gundelfingen Airfield", + "latitude_deg": "48.569443", + "longitude_deg": "10.358889", + "elevation_ft": "1447", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Gundelfingen a.d.Donau", + "scheduled_service": "no", + "gps_code": "EDMU" + }, + { + "id": "2254", + "ident": "EDMV", + "type": "small_airport", + "name": "Vilshofen Airfield", + "latitude_deg": "48.634998", + "longitude_deg": "13.195556", + "elevation_ft": "991", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Vilshofen", + "scheduled_service": "no", + "gps_code": "EDMV" + }, + { + "id": "28550", + "ident": "EDMW", + "type": "small_airport", + "name": "Flugplatz Deggendorf", + "latitude_deg": "48.830276", + "longitude_deg": "12.879722", + "elevation_ft": "1030", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Deggendorf", + "scheduled_service": "no", + "gps_code": "EDMW" + }, + { + "id": "331088", + "ident": "EDMX", + "type": "heliport", + "name": "Oberschleissheim Heliport", + "latitude_deg": "48.23795", + "longitude_deg": "11.565419", + "elevation_ft": "1600", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Oberschleissheim", + "scheduled_service": "no", + "gps_code": "EDMX" + }, + { + "id": "28650", + "ident": "EDMY", + "type": "small_airport", + "name": "Mühldorf Airfield", + "latitude_deg": "48.279446", + "longitude_deg": "12.500556", + "elevation_ft": "1325", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Mühldorf am Inn", + "scheduled_service": "no", + "gps_code": "EDMY" + }, + { + "id": "28498", + "ident": "EDNA", + "type": "small_airport", + "name": "Ampfing-Waldkraiburg Airport", + "latitude_deg": "48.26361083984375", + "longitude_deg": "12.411666870117188", + "elevation_ft": "1362", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Ampfing", + "scheduled_service": "no", + "gps_code": "EDNA" + }, + { + "id": "28501", + "ident": "EDNB", + "type": "small_airport", + "name": "Arnbruck Airport", + "latitude_deg": "49.12472152709961", + "longitude_deg": "12.985555648803711", + "elevation_ft": "1716", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Arnbruck", + "scheduled_service": "no", + "gps_code": "EDNB" + }, + { + "id": "28522", + "ident": "EDNC", + "type": "small_airport", + "name": "Beilngries Airport", + "latitude_deg": "49.02138900756836", + "longitude_deg": "11.484722137451172", + "elevation_ft": "1211", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Beilngries", + "scheduled_service": "no", + "gps_code": "EDNC" + }, + { + "id": "28552", + "ident": "EDND", + "type": "small_airport", + "name": "Dinkelsbühl-Sinbronn Airport", + "latitude_deg": "49.064998626708984", + "longitude_deg": "10.401110649108887", + "elevation_ft": "1598", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Dinkelsbühl", + "scheduled_service": "no", + "gps_code": "EDND" + }, + { + "id": "28560", + "ident": "EDNE", + "type": "small_airport", + "name": "Erbach Airport", + "latitude_deg": "48.342220306396484", + "longitude_deg": "9.91611099243164", + "elevation_ft": "1558", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Erbach", + "scheduled_service": "no", + "gps_code": "EDNE" + }, + { + "id": "29848", + "ident": "EDNF", + "type": "small_airport", + "name": "Elsenthal Grafe Airport", + "latitude_deg": "48.822498", + "longitude_deg": "13.3675", + "elevation_ft": "1417", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Eberhardsreuth", + "scheduled_service": "no", + "gps_code": "EDNF" + }, + { + "id": "28571", + "ident": "EDNG", + "type": "small_airport", + "name": "Giengen/Brenz Airport", + "latitude_deg": "48.6341667175", + "longitude_deg": "10.2163887024", + "elevation_ft": "1696", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Giengen an der Brenz", + "scheduled_service": "no", + "gps_code": "EDNG", + "home_link": "http://www.fliegergruppe-giengen.de/" + }, + { + "id": "28518", + "ident": "EDNH", + "type": "small_airport", + "name": "Flugplatz Bad Wörishofen (Nord)", + "latitude_deg": "48.016388", + "longitude_deg": "10.616111", + "elevation_ft": "2034", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Bad Wörishofen", + "scheduled_service": "no", + "gps_code": "EDNH" + }, + { + "id": "29077", + "ident": "EDNI", + "type": "small_airport", + "name": "Berching Airport", + "latitude_deg": "49.13055419921875", + "longitude_deg": "11.443056106567383", + "elevation_ft": "1266", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Berching", + "scheduled_service": "no", + "gps_code": "EDNI" + }, + { + "id": "28658", + "ident": "EDNJ", + "type": "small_airport", + "name": "Neuburg-Egweil Airport", + "latitude_deg": "48.781944274902344", + "longitude_deg": "11.215277671813965", + "elevation_ft": "1345", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Neuburg an der Donau", + "scheduled_service": "no", + "gps_code": "EDNJ" + }, + { + "id": "28620", + "ident": "EDNK", + "type": "small_airport", + "name": "Kirchdorf/Inn Airport", + "latitude_deg": "48.23833465576172", + "longitude_deg": "12.976667404174805", + "elevation_ft": "1138", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Kirchdorf am Inn", + "scheduled_service": "no", + "gps_code": "EDNK" + }, + { + "id": "2255", + "ident": "EDNL", + "type": "small_airport", + "name": "Leutkirch-Unterzeil Airport", + "latitude_deg": "47.858890533447266", + "longitude_deg": "10.014166831970215", + "elevation_ft": "2100", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Leutkirch", + "scheduled_service": "no", + "gps_code": "EDNL" + }, + { + "id": "28667", + "ident": "EDNM", + "type": "small_airport", + "name": "Nittenau-Bruck Airport", + "latitude_deg": "49.22249984741211", + "longitude_deg": "12.296667098999023", + "elevation_ft": "1161", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Nittenau", + "scheduled_service": "no", + "gps_code": "EDNM" + }, + { + "id": "28673", + "ident": "EDNO", + "type": "small_airport", + "name": "Nördlingen Airport", + "latitude_deg": "48.87055587768555", + "longitude_deg": "10.505000114440918", + "elevation_ft": "1385", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Nördlingen", + "scheduled_service": "no", + "gps_code": "EDNO" + }, + { + "id": "28692", + "ident": "EDNP", + "type": "small_airport", + "name": "Pfarrkirchen Airport", + "latitude_deg": "48.4202766418457", + "longitude_deg": "12.86472225189209", + "elevation_ft": "1266", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Pfarrkirchen", + "scheduled_service": "no", + "gps_code": "EDNP" + }, + { + "id": "28533", + "ident": "EDNQ", + "type": "small_airport", + "name": "Bopfingen Airport", + "latitude_deg": "48.84805679321289", + "longitude_deg": "10.33388900756836", + "elevation_ft": "2028", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Bopfingen", + "scheduled_service": "no", + "gps_code": "EDNQ" + }, + { + "id": "28699", + "ident": "EDNR", + "type": "small_airport", + "name": "Regensburg-Oberhub Airport", + "latitude_deg": "49.141944885253906", + "longitude_deg": "12.081944465637207", + "elevation_ft": "1299", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Regensburg", + "scheduled_service": "no", + "gps_code": "EDNR" + }, + { + "id": "28721", + "ident": "EDNS", + "type": "small_airport", + "name": "Schwabmünchen Airport", + "latitude_deg": "48.179168701171875", + "longitude_deg": "10.702777862548828", + "elevation_ft": "1804", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Schwabmünchen", + "scheduled_service": "no", + "gps_code": "EDNS" + }, + { + "id": "28740", + "ident": "EDNT", + "type": "small_airport", + "name": "Treuchtlingen-Bubenheim Airport", + "latitude_deg": "48.99611282348633", + "longitude_deg": "10.884166717529297", + "elevation_ft": "1345", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Treuchtlingen", + "scheduled_service": "no", + "gps_code": "EDNT" + }, + { + "id": "28738", + "ident": "EDNU", + "type": "small_airport", + "name": "Thannhausen Airport", + "latitude_deg": "48.290001", + "longitude_deg": "10.441944", + "elevation_ft": "1611", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Thannhausen", + "scheduled_service": "no", + "gps_code": "EDNU", + "home_link": "https://www.mlv-thannhausen.de", + "wikipedia_link": "https://de.wikipedia.org/wiki/Flugplatz_Thannhausen" + }, + { + "id": "28747", + "ident": "EDNV", + "type": "small_airport", + "name": "Vogtareuth Airport", + "latitude_deg": "47.946109771728516", + "longitude_deg": "12.20472240447998", + "elevation_ft": "1535", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Vogtareuth", + "scheduled_service": "no", + "gps_code": "EDNV" + }, + { + "id": "28755", + "ident": "EDNW", + "type": "small_airport", + "name": "Weißenhorn Airport", + "latitude_deg": "48.28944396972656", + "longitude_deg": "10.140277862548828", + "elevation_ft": "1644", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Weißenhorn", + "scheduled_service": "no", + "gps_code": "EDNW", + "keywords": "Weißerhorn" + }, + { + "id": "29078", + "ident": "EDNX", + "type": "small_airport", + "name": "Oberschleißheim Airfield", + "latitude_deg": "48.239445", + "longitude_deg": "11.561389", + "elevation_ft": "1594", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Oberschleißheim", + "scheduled_service": "no", + "gps_code": "EDNX", + "home_link": "https://www.flugplatz-schleissheim.de/" + }, + { + "id": "2256", + "ident": "EDNY", + "type": "medium_airport", + "name": "Friedrichshafen Airport", + "latitude_deg": "47.671299", + "longitude_deg": "9.51149", + "elevation_ft": "1367", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Friedrichshafen", + "scheduled_service": "yes", + "gps_code": "EDNY", + "iata_code": "FDH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Friedrichshafen_Airport", + "keywords": "Bodensee Airport Friedrichshafen" + }, + { + "id": "29079", + "ident": "EDNZ", + "type": "small_airport", + "name": "Zell-Haidberg Airport", + "latitude_deg": "50.13694381713867", + "longitude_deg": "11.79444408416748", + "elevation_ft": "2083", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Zell im Fichtelgebirge", + "scheduled_service": "no", + "gps_code": "EDNZ" + }, + { + "id": "28505", + "ident": "EDOA", + "type": "small_airport", + "name": "Flugplatz Auerbach", + "latitude_deg": "50.49889", + "longitude_deg": "12.377778", + "elevation_ft": "1880", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Auerbach/Vogtl.", + "scheduled_service": "no", + "gps_code": "EDOA", + "home_link": "http://www.flugplatzgesellschaft-auerbach.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Auerbach" + }, + { + "id": "28507", + "ident": "EDOB", + "type": "small_airport", + "name": "Flugplatz Bad Berka", + "latitude_deg": "50.904446", + "longitude_deg": "11.260278", + "elevation_ft": "1001", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Bad Berka", + "scheduled_service": "no", + "gps_code": "EDOB", + "home_link": "http://www.flugplatz-badberka.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Bad_Berka", + "keywords": "Flugplatz Bad Berka" + }, + { + "id": "28567", + "ident": "EDOC", + "type": "small_airport", + "name": "Flugplatz Gardelegen", + "latitude_deg": "52.527222", + "longitude_deg": "11.351389", + "elevation_ft": "230", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Gardelegen", + "scheduled_service": "no", + "gps_code": "EDOC" + }, + { + "id": "28701", + "ident": "EDOD", + "type": "small_airport", + "name": "Flugplatz Reinsdorf", + "latitude_deg": "51.900833", + "longitude_deg": "13.194444", + "elevation_ft": "335", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Reinsdorf", + "scheduled_service": "no", + "gps_code": "EDOD", + "home_link": "http://www.edod.de/" + }, + { + "id": "28530", + "ident": "EDOE", + "type": "small_airport", + "name": "Flugplatz Böhlen", + "latitude_deg": "51.21389", + "longitude_deg": "12.363611", + "elevation_ft": "430", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Böhlen", + "scheduled_service": "no", + "gps_code": "EDOE", + "home_link": "http://www.edoe.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_B%C3%B6hlen", + "keywords": "Boehlen" + }, + { + "id": "28510", + "ident": "EDOF", + "type": "small_airport", + "name": "Flugplatz Bad Frankenhausen", + "latitude_deg": "51.372501", + "longitude_deg": "11.141389", + "elevation_ft": "761", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Bad Frankenhausen", + "scheduled_service": "no", + "gps_code": "EDOF" + }, + { + "id": "331091", + "ident": "EDOG", + "type": "small_airport", + "name": "Torgau-Beilrode Airport", + "latitude_deg": "51.570907", + "longitude_deg": "13.051641", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Beilrode", + "scheduled_service": "no", + "gps_code": "EDOG" + }, + { + "id": "29080", + "ident": "EDOH", + "type": "small_airport", + "name": "Langhennersdorf Airport", + "latitude_deg": "50.948333740234375", + "longitude_deg": "13.261667251586914", + "elevation_ft": "1266", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Freiberg", + "scheduled_service": "no", + "gps_code": "EDOH", + "home_link": "http://www.edoh.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Langhennersdorf", + "keywords": "Flugplatz Langhennersdorf" + }, + { + "id": "28525", + "ident": "EDOI", + "type": "small_airport", + "name": "Bienenfarm Airport", + "latitude_deg": "52.661667", + "longitude_deg": "12.745833", + "elevation_ft": "120", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Nauen", + "scheduled_service": "no", + "gps_code": "EDOI", + "home_link": "http://www.bienenfarmfliegen.com" + }, + { + "id": "28641", + "ident": "EDOJ", + "type": "small_airport", + "name": "Flugplatz Lüsse", + "latitude_deg": "52.141109", + "longitude_deg": "12.664722", + "elevation_ft": "217", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Lüsse", + "scheduled_service": "no", + "gps_code": "EDOJ" + }, + { + "id": "28710", + "ident": "EDOK", + "type": "small_airport", + "name": "Rudolstadt-Groschwitz Airport", + "latitude_deg": "50.7327766418457", + "longitude_deg": "11.23611068725586", + "elevation_ft": "1535", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Rudolstadt", + "scheduled_service": "no", + "gps_code": "EDOK", + "keywords": "Flugplatz Rudolstadt-Groschwitz" + }, + { + "id": "28683", + "ident": "EDOL", + "type": "small_airport", + "name": "Oschersleben Glider Field", + "latitude_deg": "52.038055", + "longitude_deg": "11.205556", + "elevation_ft": "344", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Oschersleben", + "scheduled_service": "no", + "gps_code": "EDOL" + }, + { + "id": "29081", + "ident": "EDOM", + "type": "small_airport", + "name": "Flugplatz Klein Mühlingen", + "latitude_deg": "51.947498", + "longitude_deg": "11.769722", + "elevation_ft": "171", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Calbe", + "scheduled_service": "no", + "gps_code": "EDOM" + }, + { + "id": "2257", + "ident": "EDON", + "type": "small_airport", + "name": "Flugplatz Neuhardenberg", + "latitude_deg": "52.613056", + "longitude_deg": "14.242778", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Neuhardenberg", + "scheduled_service": "no", + "gps_code": "EDON" + }, + { + "id": "2258", + "ident": "EDOP", + "type": "medium_airport", + "name": "Schwerin Parchim Airport", + "latitude_deg": "53.426998", + "longitude_deg": "11.7834", + "elevation_ft": "166", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "scheduled_service": "no", + "gps_code": "EDOP", + "iata_code": "SZW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Parchim_International_Airport" + }, + { + "id": "28682", + "ident": "EDOQ", + "type": "small_airport", + "name": "Flugplatz Oschatz", + "latitude_deg": "51.296665", + "longitude_deg": "13.078333", + "elevation_ft": "502", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SN", + "municipality": "Oschatz", + "scheduled_service": "no", + "gps_code": "EDOQ", + "home_link": "http://www.fliegerclub-oschatz.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Oschatz", + "keywords": "Flugplatz Oschatz" + }, + { + "id": "29082", + "ident": "EDOR", + "type": "small_airport", + "name": "Flugplatz Stölln-Rhinow", + "latitude_deg": "52.740833", + "longitude_deg": "12.39", + "elevation_ft": "138", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Rhinow", + "scheduled_service": "no", + "gps_code": "EDOR" + }, + { + "id": "28691", + "ident": "EDOS", + "type": "small_airport", + "name": "Flugplatz Pennewitz", + "latitude_deg": "50.669445", + "longitude_deg": "11.050556", + "elevation_ft": "1506", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Pennewitz", + "scheduled_service": "no", + "gps_code": "EDOS", + "home_link": "http://www.fliegerclub-ilmenau.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Pennewitz", + "keywords": "Flugplatz Pennewitz" + }, + { + "id": "28578", + "ident": "EDOT", + "type": "small_airport", + "name": "Greiz-Obergrochlitz Airport", + "latitude_deg": "50.64444351196289", + "longitude_deg": "12.17638874053955", + "elevation_ft": "1266", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Greiz", + "scheduled_service": "no", + "gps_code": "EDOT", + "keywords": "Flugplatz Greiz-Obergrochlitz" + }, + { + "id": "29083", + "ident": "EDOU", + "type": "small_airport", + "name": "Weimar-Umpferstedt Airport", + "latitude_deg": "50.9647216796875", + "longitude_deg": "11.400278091430664", + "elevation_ft": "984", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Weimar", + "scheduled_service": "no", + "gps_code": "EDOU", + "keywords": "Flugplatz Weimar-Umpferstedt" + }, + { + "id": "2259", + "ident": "EDOV", + "type": "small_airport", + "name": "Stendal-Borstel Airport", + "latitude_deg": "52.62888717651367", + "longitude_deg": "11.818611145019531", + "elevation_ft": "184", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Stendal", + "scheduled_service": "no", + "gps_code": "EDOV" + }, + { + "id": "28752", + "ident": "EDOW", + "type": "small_airport", + "name": "Waren-Vielist Airfield", + "latitude_deg": "53.568333", + "longitude_deg": "12.652778", + "elevation_ft": "282", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Waren", + "scheduled_service": "no", + "gps_code": "EDOW" + }, + { + "id": "28702", + "ident": "EDOX", + "type": "small_airport", + "name": "Flugplatz Renneritz", + "latitude_deg": "51.594166", + "longitude_deg": "12.237222", + "elevation_ft": "308", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Sandersdorf", + "scheduled_service": "no", + "gps_code": "EDOX" + }, + { + "id": "45042", + "ident": "EDOY", + "type": "heliport", + "name": "Ahrensfelde Heliport", + "latitude_deg": "52.601", + "longitude_deg": "13.576", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "scheduled_service": "no", + "gps_code": "EDOY" + }, + { + "id": "28719", + "ident": "EDOZ", + "type": "small_airport", + "name": "Flugplatz Schönebeck-Zackmünde", + "latitude_deg": "51.996666", + "longitude_deg": "11.790833", + "elevation_ft": "167", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Schönebeck", + "scheduled_service": "no", + "gps_code": "EDOZ" + }, + { + "id": "2260", + "ident": "EDPA", + "type": "small_airport", + "name": "Aalen-Heidenheim/Elchingen Airfield", + "latitude_deg": "48.777779", + "longitude_deg": "10.264722", + "elevation_ft": "1916", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Aalen", + "scheduled_service": "no", + "gps_code": "EDPA" + }, + { + "id": "28508", + "ident": "EDPB", + "type": "small_airport", + "name": "Bad Ditzenbach Airfield", + "latitude_deg": "48.562778", + "longitude_deg": "9.728889", + "elevation_ft": "2362", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Bad Ditzenbach", + "scheduled_service": "no", + "gps_code": "EDPB" + }, + { + "id": "29678", + "ident": "EDPC", + "type": "small_airport", + "name": "Bad Endorf/Jolling Airfield", + "latitude_deg": "47.926899", + "longitude_deg": "12.2872", + "elevation_ft": "1690", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Bad Endorf", + "scheduled_service": "no", + "gps_code": "EDPC", + "home_link": "http://www.edpc.de/Willkommen.html" + }, + { + "id": "28551", + "ident": "EDPD", + "type": "small_airport", + "name": "Dingolfing Airfield", + "latitude_deg": "48.656944", + "longitude_deg": "12.500556", + "elevation_ft": "1165", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Dingolfing", + "scheduled_service": "no", + "gps_code": "EDPD" + }, + { + "id": "28558", + "ident": "EDPE", + "type": "small_airport", + "name": "Eichstätt Airfield", + "latitude_deg": "48.876945", + "longitude_deg": "11.182222", + "elevation_ft": "1713", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Eichstätt", + "scheduled_service": "no", + "gps_code": "EDPE" + }, + { + "id": "28543", + "ident": "EDPF", + "type": "small_airport", + "name": "Schwandorf Airfield", + "latitude_deg": "49.339722", + "longitude_deg": "12.188056", + "elevation_ft": "1270", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Schwandorf", + "scheduled_service": "no", + "gps_code": "EDPF" + }, + { + "id": "28579", + "ident": "EDPG", + "type": "small_airport", + "name": "Griesau Airfield", + "latitude_deg": "48.953888", + "longitude_deg": "12.421389", + "elevation_ft": "1060", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Pfatter", + "scheduled_service": "no", + "gps_code": "EDPG" + }, + { + "id": "28720", + "ident": "EDPH", + "type": "small_airport", + "name": "Schwabach-Heidenberg Airfield", + "latitude_deg": "49.268612", + "longitude_deg": "11.009722", + "elevation_ft": "1181", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Schwabach", + "scheduled_service": "no", + "gps_code": "EDPH" + }, + { + "id": "314005", + "ident": "EDPI", + "type": "small_airport", + "name": "Moosburg auf der Kippe", + "latitude_deg": "48.458333333300004", + "longitude_deg": "11.9444444444", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no", + "gps_code": "EDPI" + }, + { + "id": "28629", + "ident": "EDPJ", + "type": "small_airport", + "name": "Laichingen Airfield", + "latitude_deg": "48.496944", + "longitude_deg": "9.640278", + "elevation_ft": "2434", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Laichingen", + "scheduled_service": "no", + "gps_code": "EDPJ" + }, + { + "id": "29084", + "ident": "EDPK", + "type": "small_airport", + "name": "Schönberg Airfield", + "latitude_deg": "48.047779", + "longitude_deg": "12.500556", + "elevation_ft": "1946", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Seebruck", + "scheduled_service": "no", + "gps_code": "EDPK" + }, + { + "id": "28555", + "ident": "EDPM", + "type": "small_airport", + "name": "Donzdorf Airfield", + "latitude_deg": "48.678055", + "longitude_deg": "9.843611", + "elevation_ft": "2274", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Donzdorf", + "scheduled_service": "no", + "gps_code": "EDPM" + }, + { + "id": "28661", + "ident": "EDPO", + "type": "small_airport", + "name": "Neumarkt/Obf. Airfield", + "latitude_deg": "49.285557", + "longitude_deg": "11.443056", + "elevation_ft": "1394", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Neumarkt in der Oberpfalz", + "scheduled_service": "no", + "gps_code": "EDPO" + }, + { + "id": "28718", + "ident": "EDPQ", + "type": "small_airport", + "name": "Schmidgaden Airfield", + "latitude_deg": "49.429443", + "longitude_deg": "12.098056", + "elevation_ft": "1247", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Schmidgaden", + "scheduled_service": "no", + "gps_code": "EDPQ" + }, + { + "id": "316349", + "ident": "EDPR", + "type": "heliport", + "name": "Donauwörth Heliport", + "latitude_deg": "48.7075", + "longitude_deg": "10.769444", + "elevation_ft": "1315", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Donauwörth", + "scheduled_service": "no", + "gps_code": "EDPR", + "keywords": "Airbus,Airbus Helicopters" + }, + { + "id": "28732", + "ident": "EDPS", + "type": "small_airport", + "name": "Flugplatz Sonnen", + "latitude_deg": "48.682777", + "longitude_deg": "13.694722", + "elevation_ft": "2674", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Waldkirchen", + "scheduled_service": "no", + "gps_code": "EDPS" + }, + { + "id": "28570", + "ident": "EDPT", + "type": "small_airport", + "name": "Gerstetten Airfield", + "latitude_deg": "48.620277", + "longitude_deg": "10.058333", + "elevation_ft": "1975", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Gerstetten", + "scheduled_service": "no", + "gps_code": "EDPT" + }, + { + "id": "29085", + "ident": "EDPU", + "type": "small_airport", + "name": "Bartholomä-Amalienhof Airfield", + "latitude_deg": "48.746666", + "longitude_deg": "10.005", + "elevation_ft": "2092", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Bartholomä", + "scheduled_service": "no", + "gps_code": "EDPU", + "home_link": "http://edpu.de", + "keywords": "Akaflieg, Akaflieg Stuttgart" + }, + { + "id": "29086", + "ident": "EDPW", + "type": "small_airport", + "name": "Thalmässing-Waizenhofen Airfield", + "latitude_deg": "49.064167", + "longitude_deg": "11.209167", + "elevation_ft": "1893", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Thalmässing", + "scheduled_service": "no", + "gps_code": "EDPW" + }, + { + "id": "29087", + "ident": "EDPY", + "type": "small_airport", + "name": "Ellwangen Airfield", + "latitude_deg": "48.961109", + "longitude_deg": "10.236389", + "elevation_ft": "1650", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Ellwangen", + "scheduled_service": "no", + "gps_code": "EDPY" + }, + { + "id": "317932", + "ident": "EDQA", + "type": "medium_airport", + "name": "Airport Bamberg-Breitenau", + "latitude_deg": "49.920403", + "longitude_deg": "10.914233", + "elevation_ft": "811", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Bamberg", + "scheduled_service": "no", + "gps_code": "EDQA", + "home_link": "http://www.aeroclub-bamberg.de/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Flugplatz_Bamberg-Breitenau", + "keywords": "Bamberg, Breitenau" + }, + { + "id": "28517", + "ident": "EDQB", + "type": "small_airport", + "name": "Bad Windsheim Airport", + "latitude_deg": "49.5099983215332", + "longitude_deg": "10.366389274597168", + "elevation_ft": "1220", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Bad Windsheim", + "scheduled_service": "no", + "gps_code": "EDQB" + }, + { + "id": "28544", + "ident": "EDQC", + "type": "small_airport", + "name": "Flugplatz Coburg-Brandensteinsebene", + "latitude_deg": "50.262501", + "longitude_deg": "10.995556", + "elevation_ft": "1490", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Coburg", + "scheduled_service": "no", + "gps_code": "EDQC", + "home_link": "http://www.aeroclub-coburg.de", + "keywords": "Coburg, Brose, Airport, Schuhmacher Packaging," + }, + { + "id": "2261", + "ident": "EDQD", + "type": "medium_airport", + "name": "Bayreuth Airport", + "latitude_deg": "49.985001", + "longitude_deg": "11.64", + "elevation_ft": "1601", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Bayreuth", + "scheduled_service": "no", + "gps_code": "EDQD", + "iata_code": "BYU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bindlacher_Berg_Airport", + "keywords": "Bindlacher Berg Airport" + }, + { + "id": "2262", + "ident": "EDQE", + "type": "small_airport", + "name": "Burg Feuerstein Airport", + "latitude_deg": "49.794166564941", + "longitude_deg": "11.133610725403", + "elevation_ft": "1673", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Ebermannstadt", + "scheduled_service": "no", + "gps_code": "EDQE", + "iata_code": "URD", + "home_link": "http://www.edqe.de/home/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Burg_Feuerstein" + }, + { + "id": "28499", + "ident": "EDQF", + "type": "small_airport", + "name": "Ansbach-Petersdorf Airport", + "latitude_deg": "49.361111", + "longitude_deg": "10.669444", + "elevation_ft": "1371", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Ansbach", + "scheduled_service": "no", + "gps_code": "EDQF" + }, + { + "id": "43125", + "ident": "EDQG", + "type": "small_airport", + "name": "Giebelstadt Airport", + "latitude_deg": "49.6480560303", + "longitude_deg": "9.966388702390002", + "elevation_ft": "981", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Giebelstadt", + "scheduled_service": "no", + "gps_code": "EDQG", + "iata_code": "GHF", + "home_link": "http://www.edqg.de/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Giebelstadt_Airport" + }, + { + "id": "28594", + "ident": "EDQH", + "type": "small_airport", + "name": "Herzogenaurach Airport", + "latitude_deg": "49.58250045776367", + "longitude_deg": "10.878055572509766", + "elevation_ft": "1070", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Herzogenaurach", + "scheduled_service": "no", + "gps_code": "EDQH" + }, + { + "id": "28634", + "ident": "EDQI", + "type": "small_airport", + "name": "Lauf-Lillinghof Airport", + "latitude_deg": "49.60527801513672", + "longitude_deg": "11.283888816833496", + "elevation_ft": "1788", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Lauf an der Pegnitz", + "scheduled_service": "no", + "gps_code": "EDQI" + }, + { + "id": "28627", + "ident": "EDQK", + "type": "small_airport", + "name": "Flugplatz Kulmbach", + "latitude_deg": "50.134998", + "longitude_deg": "11.459722", + "elevation_ft": "1660", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Kulmbach", + "scheduled_service": "no", + "gps_code": "EDQK" + }, + { + "id": "28638", + "ident": "EDQL", + "type": "small_airport", + "name": "Lichtenfels Airfield", + "latitude_deg": "50.148609", + "longitude_deg": "11.048056", + "elevation_ft": "853", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Lichtenfels", + "scheduled_service": "no", + "gps_code": "EDQL", + "home_link": "http://www.edql.de", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Lichtenfels" + }, + { + "id": "2263", + "ident": "EDQM", + "type": "medium_airport", + "name": "Hof-Plauen Airport", + "latitude_deg": "50.288612", + "longitude_deg": "11.856389", + "elevation_ft": "1959", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Hof", + "scheduled_service": "no", + "gps_code": "EDQM", + "iata_code": "HOQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hof-Plauen_Airport" + }, + { + "id": "28664", + "ident": "EDQN", + "type": "small_airport", + "name": "Neustadt/Aisch Airport", + "latitude_deg": "49.5875015259", + "longitude_deg": "10.5775003433", + "elevation_ft": "1198", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Neustadt an der Aisch", + "scheduled_service": "no", + "gps_code": "EDQN", + "home_link": "http://www.edqn.de" + }, + { + "id": "28685", + "ident": "EDQO", + "type": "small_airport", + "name": "Ottengrüner Heide Airport", + "latitude_deg": "50.225833892822266", + "longitude_deg": "11.731666564941406", + "elevation_ft": "1880", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Helmbrechts", + "scheduled_service": "no", + "gps_code": "EDQO" + }, + { + "id": "28707", + "ident": "EDQP", + "type": "small_airport", + "name": "Rosenthal-Field Plössen Airport", + "latitude_deg": "49.86333465576172", + "longitude_deg": "11.7877779006958", + "elevation_ft": "1496", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Speichersdorf", + "scheduled_service": "no", + "gps_code": "EDQP" + }, + { + "id": "28556", + "ident": "EDQR", + "type": "small_airport", + "name": "Ebern-Sendelbach Airport", + "latitude_deg": "50.03944396972656", + "longitude_deg": "10.82277774810791", + "elevation_ft": "827", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Ebern", + "scheduled_service": "no", + "gps_code": "EDQR" + }, + { + "id": "28736", + "ident": "EDQS", + "type": "small_airport", + "name": "Suhl-Goldlauter Airport", + "latitude_deg": "50.63194274902344", + "longitude_deg": "10.727499961853027", + "elevation_ft": "1923", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-TH", + "municipality": "Goldlauter-Heidersbach", + "scheduled_service": "no", + "gps_code": "EDQS", + "keywords": "Flugplatz Suhl-Goldlauter" + }, + { + "id": "2264", + "ident": "EDQT", + "type": "small_airport", + "name": "Flugplatz Haßfurt-Schweinfurt", + "latitude_deg": "50.018055", + "longitude_deg": "10.529444", + "elevation_ft": "719", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Haßfurt", + "scheduled_service": "no", + "gps_code": "EDQT" + }, + { + "id": "28753", + "ident": "EDQW", + "type": "small_airport", + "name": "Flugplatz Weiden in der Oberpfalz", + "latitude_deg": "49.678902", + "longitude_deg": "12.1164", + "elevation_ft": "1329", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Weiden in der Oberpfalz", + "scheduled_service": "no", + "gps_code": "EDQW", + "keywords": "Weiden/Opf. Airport" + }, + { + "id": "28596", + "ident": "EDQX", + "type": "small_airport", + "name": "Flugplatz Hetzleser Berg", + "latitude_deg": "49.642223", + "longitude_deg": "11.162222", + "elevation_ft": "1765", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Neunkirchen am Brand", + "scheduled_service": "no", + "gps_code": "EDQX" + }, + { + "id": "28545", + "ident": "EDQY", + "type": "small_airport", + "name": "Flugplatz Coburg-Steinrücken", + "latitude_deg": "50.230556", + "longitude_deg": "10.995833", + "elevation_ft": "1184", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Coburg", + "scheduled_service": "no", + "gps_code": "EDQY" + }, + { + "id": "28688", + "ident": "EDQZ", + "type": "small_airport", + "name": "Flugplatz Pegnitz-Zipser Berg", + "latitude_deg": "49.762222", + "longitude_deg": "11.574722", + "elevation_ft": "1791", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Pegnitz", + "scheduled_service": "no", + "gps_code": "EDQZ" + }, + { + "id": "28514", + "ident": "EDRA", + "type": "small_airport", + "name": "Bad Neuenahr-Ahrweiler Airfield", + "latitude_deg": "50.557777", + "longitude_deg": "7.136389", + "elevation_ft": "673", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Bad Neuenahr", + "scheduled_service": "no", + "gps_code": "EDRA" + }, + { + "id": "2265", + "ident": "EDRB", + "type": "small_airport", + "name": "Bitburg Airport", + "latitude_deg": "49.945278", + "longitude_deg": "6.565", + "elevation_ft": "1220", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Bitburg", + "scheduled_service": "no", + "gps_code": "EDRB", + "iata_code": "BBJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bitburg_Airport" + }, + { + "id": "28660", + "ident": "EDRD", + "type": "small_airport", + "name": "Neumagen-Dhron Airport", + "latitude_deg": "49.843055725097656", + "longitude_deg": "6.916110992431641", + "elevation_ft": "879", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Neumagen", + "scheduled_service": "no", + "gps_code": "EDRD" + }, + { + "id": "28509", + "ident": "EDRF", + "type": "small_airport", + "name": "Bad Dürkheim Airfield", + "latitude_deg": "49.473057", + "longitude_deg": "8.196389", + "elevation_ft": "351", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Bad Dürkheim", + "scheduled_service": "no", + "gps_code": "EDRF" + }, + { + "id": "28608", + "ident": "EDRG", + "type": "small_airport", + "name": "Idar-Oberstein/Göttschied Airfield", + "latitude_deg": "49.732224", + "longitude_deg": "7.336111", + "elevation_ft": "1575", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Idar-Oberstein", + "scheduled_service": "no", + "gps_code": "EDRG" + }, + { + "id": "28605", + "ident": "EDRH", + "type": "small_airport", + "name": "Hoppstädten-Weiersbach Airfield", + "latitude_deg": "49.610558", + "longitude_deg": "7.186667", + "elevation_ft": "1093", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Hoppstädten", + "scheduled_service": "no", + "gps_code": "EDRH" + }, + { + "id": "28639", + "ident": "EDRI", + "type": "small_airport", + "name": "Linkenheim Airport", + "latitude_deg": "49.141666412353516", + "longitude_deg": "8.394721984863281", + "elevation_ft": "325", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Linkenheim", + "scheduled_service": "no", + "gps_code": "EDRI" + }, + { + "id": "28711", + "ident": "EDRJ", + "type": "small_airport", + "name": "Flugplatz Saarlouis-Düren", + "latitude_deg": "49.3125", + "longitude_deg": "6.674444", + "elevation_ft": "1119", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SL", + "municipality": "Saarlouis", + "scheduled_service": "no", + "gps_code": "EDRJ" + }, + { + "id": "2266", + "ident": "EDRK", + "type": "small_airport", + "name": "Koblenz-Winningen Airfield", + "latitude_deg": "50.325558", + "longitude_deg": "7.528611", + "elevation_ft": "640", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Koblenz", + "scheduled_service": "no", + "gps_code": "EDRK", + "home_link": "http://www.flugplatz-koblenz-winningen.de" + }, + { + "id": "28628", + "ident": "EDRL", + "type": "small_airport", + "name": "Flugplatz Lachen-Speyerdorf", + "latitude_deg": "49.330833", + "longitude_deg": "8.209722", + "elevation_ft": "394", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Neustadt an der Weinstraße", + "scheduled_service": "no", + "gps_code": "EDRL" + }, + { + "id": "28739", + "ident": "EDRM", + "type": "small_airport", + "name": "Traben-Trarbach/Mont Royal Airfield", + "latitude_deg": "49.967777", + "longitude_deg": "7.111944", + "elevation_ft": "919", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Traben-Trarbach", + "scheduled_service": "no", + "gps_code": "EDRM" + }, + { + "id": "28654", + "ident": "EDRN", + "type": "small_airport", + "name": "Nannhausen Airport", + "latitude_deg": "49.9702796936", + "longitude_deg": "7.47916698456", + "elevation_ft": "1224", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Simmern", + "scheduled_service": "no", + "gps_code": "EDRN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nannhausen_Airfield" + }, + { + "id": "28723", + "ident": "EDRO", + "type": "small_airport", + "name": "Schweighofen Airport", + "latitude_deg": "49.03166580200195", + "longitude_deg": "7.989999771118164", + "elevation_ft": "492", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Schweighofen", + "scheduled_service": "no", + "gps_code": "EDRO" + }, + { + "id": "28694", + "ident": "EDRP", + "type": "small_airport", + "name": "Flugplatz Pirmasens-Pottschütthöhe", + "latitude_deg": "49.264442", + "longitude_deg": "7.488333", + "elevation_ft": "1247", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Pirmasens", + "scheduled_service": "no", + "gps_code": "EDRP", + "home_link": "https://edrp.de/" + }, + { + "id": "28729", + "ident": "EDRS", + "type": "small_airport", + "name": "Flugplatz Bad Sobernheim-Domberg", + "latitude_deg": "49.790833", + "longitude_deg": "7.666111", + "elevation_ft": "810", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Bad Sobernheim", + "scheduled_service": "no", + "gps_code": "EDRS" + }, + { + "id": "2267", + "ident": "EDRT", + "type": "small_airport", + "name": "Flugplatz Trier-Föhren", + "latitude_deg": "49.863888", + "longitude_deg": "6.7875", + "elevation_ft": "666", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Trier", + "scheduled_service": "no", + "gps_code": "EDRT" + }, + { + "id": "29088", + "ident": "EDRV", + "type": "small_airport", + "name": "Wershofen/Eifel Airfield", + "latitude_deg": "50.451389", + "longitude_deg": "6.783333", + "elevation_ft": "1581", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Aremberg", + "scheduled_service": "no", + "gps_code": "EDRV" + }, + { + "id": "29089", + "ident": "EDRW", + "type": "small_airport", + "name": "Flugplatz Dierdorf-Wienau", + "latitude_deg": "50.566113", + "longitude_deg": "7.653333", + "elevation_ft": "951", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Dierdorf", + "scheduled_service": "no", + "gps_code": "EDRW" + }, + { + "id": "314006", + "ident": "EDRX", + "type": "small_airport", + "name": "Neunkirchen-Bexbach Glidr Field", + "latitude_deg": "49.34", + "longitude_deg": "7.253333", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SL", + "scheduled_service": "no", + "gps_code": "EDRX" + }, + { + "id": "2268", + "ident": "EDRY", + "type": "small_airport", + "name": "Speyer Airfield", + "latitude_deg": "49.304722", + "longitude_deg": "8.451389", + "elevation_ft": "312", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Speyer", + "scheduled_service": "no", + "gps_code": "EDRY", + "home_link": "https://www.flugplatz-speyer.de" + }, + { + "id": "2269", + "ident": "EDRZ", + "type": "small_airport", + "name": "Zweibrücken Airport", + "latitude_deg": "49.2094", + "longitude_deg": "7.40056", + "elevation_ft": "1132", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Zweibrücken", + "scheduled_service": "no", + "gps_code": "EDRZ", + "iata_code": "ZQW", + "home_link": "http://www.edrz-airport.de", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zweibr%C3%BCcken_Airport" + }, + { + "id": "28494", + "ident": "EDSA", + "type": "small_airport", + "name": "Albstadt-Degerfeld Airfield", + "latitude_deg": "48.249722", + "longitude_deg": "9.0625", + "elevation_ft": "2881", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Albstadt", + "scheduled_service": "no", + "gps_code": "EDSA", + "home_link": "http://www.lsv-degerfeld.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Albstadt-Degerfeld" + }, + { + "id": "2270", + "ident": "EDSB", + "type": "medium_airport", + "name": "Karlsruhe Baden-Baden Airport", + "latitude_deg": "48.7794", + "longitude_deg": "8.0805", + "elevation_ft": "408", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Baden-Baden", + "scheduled_service": "yes", + "gps_code": "EDSB", + "iata_code": "FKB", + "home_link": "http://www.baden-airpark.de/startseite.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baden_Airpark", + "keywords": "Baden Airpark" + }, + { + "id": "30984", + "ident": "EDSD", + "type": "closed", + "name": "Leipheim Air Base", + "latitude_deg": "48.439999", + "longitude_deg": "10.2356", + "elevation_ft": "1604", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Leipheim", + "scheduled_service": "no", + "gps_code": "EDSD" + }, + { + "id": "314004", + "ident": "EDSE", + "type": "small_airport", + "name": "Flugplatz Göppingen-Bezgenriet", + "latitude_deg": "48.658611", + "longitude_deg": "9.624167", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "scheduled_service": "no", + "gps_code": "EDSE" + }, + { + "id": "43126", + "ident": "EDSG", + "type": "small_airport", + "name": "Flugplatz Grabenstetten", + "latitude_deg": "48.53611", + "longitude_deg": "9.436944", + "elevation_ft": "2329", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Grabenstetten", + "scheduled_service": "no", + "gps_code": "EDSG", + "home_link": "http://www.flg-grabenstetten.de/flugplatz.htm" + }, + { + "id": "28506", + "ident": "EDSH", + "type": "small_airport", + "name": "Flugplatz Backnang-Heiningen", + "latitude_deg": "48.919724", + "longitude_deg": "9.455278", + "elevation_ft": "965", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Backnang", + "scheduled_service": "no", + "gps_code": "EDSH", + "home_link": "http://www.edsh.de/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Flugplatz_Backnang-Heiningen" + }, + { + "id": "28526", + "ident": "EDSI", + "type": "small_airport", + "name": "Binningen Glider Field", + "latitude_deg": "47.799168", + "longitude_deg": "8.72", + "elevation_ft": "1594", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Binningen", + "scheduled_service": "no", + "gps_code": "EDSI" + }, + { + "id": "28618", + "ident": "EDSK", + "type": "small_airport", + "name": "Kehl-Sundheim Airfield", + "latitude_deg": "48.561111", + "longitude_deg": "7.843333", + "elevation_ft": "453", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Kehl", + "scheduled_service": "no", + "gps_code": "EDSK" + }, + { + "id": "28529", + "ident": "EDSL", + "type": "small_airport", + "name": "Flugplatz Blumberg", + "latitude_deg": "47.844166", + "longitude_deg": "8.565", + "elevation_ft": "2290", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Blumberg", + "scheduled_service": "no", + "gps_code": "EDSL" + }, + { + "id": "2271", + "ident": "EDSN", + "type": "small_airport", + "name": "Flugplatz Neuhausen ob Eck", + "latitude_deg": "47.976665", + "longitude_deg": "8.903889", + "elevation_ft": "2638", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Neuhausen ob Eck", + "scheduled_service": "no", + "gps_code": "EDSN" + }, + { + "id": "315964", + "ident": "EDSO", + "type": "small_airport", + "name": "Gruibingen-Nortel Airfield", + "latitude_deg": "48.6212", + "longitude_deg": "9.6557", + "elevation_ft": "2318", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Göppingen", + "scheduled_service": "no", + "gps_code": "EDSO", + "home_link": "http://www.aeroclub-gs.de/flugplatz.html" + }, + { + "id": "314009", + "ident": "EDSP", + "type": "small_airport", + "name": "Poltringen Airfield", + "latitude_deg": "48.547282", + "longitude_deg": "8.945918", + "elevation_ft": "1315", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Ammerbuch", + "scheduled_service": "no", + "gps_code": "EDSP" + }, + { + "id": "314007", + "ident": "EDSR", + "type": "small_airport", + "name": "Flugplatz Stahringen-Wahlwies", + "latitude_deg": "47.804444", + "longitude_deg": "8.980556", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "scheduled_service": "no", + "gps_code": "EDSR" + }, + { + "id": "309630", + "ident": "EDST", + "type": "small_airport", + "name": "Flugplatz Hahnweide", + "latitude_deg": "48.631944", + "longitude_deg": "9.430556", + "elevation_ft": "1146", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Kirchheim unter Teck", + "scheduled_service": "no", + "gps_code": "EDST", + "home_link": "http://www.hahnweide.com/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Hahnweide" + }, + { + "id": "28496", + "ident": "EDSW", + "type": "small_airport", + "name": "Flugplatz Altdorf-Wallburg", + "latitude_deg": "48.27", + "longitude_deg": "7.841944", + "elevation_ft": "623", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Altdorf", + "scheduled_service": "no", + "gps_code": "EDSW" + }, + { + "id": "28709", + "ident": "EDSZ", + "type": "small_airport", + "name": "Flugplatz Rottweil-Zepfenhan", + "latitude_deg": "48.18639", + "longitude_deg": "8.721111", + "elevation_ft": "2444", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Rottweil", + "scheduled_service": "no", + "gps_code": "EDSZ" + }, + { + "id": "2272", + "ident": "EDTB", + "type": "small_airport", + "name": "Flugplatz Baden-Oos", + "latitude_deg": "48.791943", + "longitude_deg": "8.185833", + "elevation_ft": "404", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Baden-Baden", + "scheduled_service": "no", + "gps_code": "EDTB", + "home_link": "http://www.flugplatz-baden-oos.com/" + }, + { + "id": "28541", + "ident": "EDTC", + "type": "small_airport", + "name": "Flugplatz Bruchsal", + "latitude_deg": "49.134998", + "longitude_deg": "8.563611", + "elevation_ft": "364", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Bruchsal", + "scheduled_service": "no", + "gps_code": "EDTC" + }, + { + "id": "2273", + "ident": "EDTD", + "type": "medium_airport", + "name": "Flugplatz Donaueschingen-Villingen", + "latitude_deg": "47.973331", + "longitude_deg": "8.522222", + "elevation_ft": "2231", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Donaueschingen", + "scheduled_service": "no", + "gps_code": "EDTD", + "home_link": "http://www.flugplatz-donaueschingen.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Donaueschingen-Villingen" + }, + { + "id": "2274", + "ident": "EDTF", + "type": "small_airport", + "name": "Flugplatz Freiburg", + "latitude_deg": "48.022778", + "longitude_deg": "7.8325", + "elevation_ft": "801", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Freiburg im Breisgau", + "scheduled_service": "no", + "gps_code": "EDTF", + "home_link": "http://www.city-flugplatz-freiburg.de/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Freiburg" + }, + { + "id": "2275", + "ident": "EDTG", + "type": "small_airport", + "name": "Flugplatz Bremgarten", + "latitude_deg": "47.902779", + "longitude_deg": "7.617778", + "elevation_ft": "696", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Bremgarten", + "scheduled_service": "no", + "gps_code": "EDTG", + "home_link": "http://www.gewerbepark-breisgau.de/Flugplatz", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Bremgarten" + }, + { + "id": "28597", + "ident": "EDTH", + "type": "small_airport", + "name": "Flugplatz Heubach", + "latitude_deg": "48.802776", + "longitude_deg": "9.9275", + "elevation_ft": "1424", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Heubach", + "scheduled_service": "no", + "gps_code": "EDTH", + "wikipedia_link": "https://de.wikipedia.org/wiki/Flugplatz_Heubach" + }, + { + "id": "28617", + "ident": "EDTK", + "type": "closed", + "name": "Karlsruhe-Forchheim Airport", + "latitude_deg": "48.9843", + "longitude_deg": "8.3355", + "elevation_ft": "381", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Karlsruhe", + "scheduled_service": "no", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Karlsruhe-Forchheim", + "keywords": "EDTK, QCA" + }, + { + "id": "2276", + "ident": "EDTL", + "type": "medium_airport", + "name": "Lahr Airport", + "latitude_deg": "48.3693008423", + "longitude_deg": "7.82772016525", + "elevation_ft": "511", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "scheduled_service": "no", + "gps_code": "EDTL", + "iata_code": "LHA", + "home_link": "http://airport-lahr.de/", + "wikipedia_link": "https://en.wikipedia.org/wiki/CFB_Lahr", + "keywords": "Black Forest Airport" + }, + { + "id": "2277", + "ident": "EDTM", + "type": "small_airport", + "name": "Mengen-Hohentengen Airfield", + "latitude_deg": "48.05389", + "longitude_deg": "9.372778", + "elevation_ft": "1818", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Mengen", + "scheduled_service": "no", + "gps_code": "EDTM" + }, + { + "id": "28653", + "ident": "EDTN", + "type": "small_airport", + "name": "Flugplatz Nabern/Teck", + "latitude_deg": "48.612778", + "longitude_deg": "9.477222", + "elevation_ft": "1214", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Nabern", + "scheduled_service": "no", + "gps_code": "EDTN", + "home_link": "http://www.fb-nabern.de/" + }, + { + "id": "28679", + "ident": "EDTO", + "type": "small_airport", + "name": "Flugplatz Offenburg", + "latitude_deg": "48.450001", + "longitude_deg": "7.924722", + "elevation_ft": "509", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Offenburg", + "scheduled_service": "no", + "gps_code": "EDTO", + "keywords": "ZPA" + }, + { + "id": "28693", + "ident": "EDTP", + "type": "small_airport", + "name": "Flugplatz Pfullendorf", + "latitude_deg": "47.90889", + "longitude_deg": "9.250556", + "elevation_ft": "2303", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Pfullendorf", + "scheduled_service": "no", + "gps_code": "EDTP" + }, + { + "id": "29090", + "ident": "EDTQ", + "type": "small_airport", + "name": "Pattonville Airfield", + "latitude_deg": "48.864166", + "longitude_deg": "9.224722", + "elevation_ft": "920", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Pattonville", + "scheduled_service": "no", + "gps_code": "EDTQ" + }, + { + "id": "28593", + "ident": "EDTR", + "type": "small_airport", + "name": "Flugplatz Herten-Rheinfelden", + "latitude_deg": "47.56028", + "longitude_deg": "7.748333", + "elevation_ft": "925", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Rheinfelden", + "scheduled_service": "no", + "gps_code": "EDTR" + }, + { + "id": "28725", + "ident": "EDTS", + "type": "small_airport", + "name": "Schwenningen am Neckar Airfield", + "latitude_deg": "48.065834", + "longitude_deg": "8.571389", + "elevation_ft": "2169", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Villingen-Schwenningen", + "scheduled_service": "no", + "gps_code": "EDTS", + "home_link": "http://sfg-schwenningen.de/" + }, + { + "id": "28714", + "ident": "EDTU", + "type": "small_airport", + "name": "Flugplatz Saulgau", + "latitude_deg": "48.029446", + "longitude_deg": "9.507222", + "elevation_ft": "1903", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Bad Saulgau", + "scheduled_service": "no", + "gps_code": "EDTU" + }, + { + "id": "28760", + "ident": "EDTW", + "type": "small_airport", + "name": "Flugplatz Winzeln-Schramberg", + "latitude_deg": "48.279167", + "longitude_deg": "8.428333", + "elevation_ft": "2310", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Schramberg", + "scheduled_service": "no", + "gps_code": "EDTW", + "home_link": "http://www.lsv-schwarzwald.de/flugplatz/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Winzeln-Schramberg" + }, + { + "id": "28722", + "ident": "EDTX", + "type": "small_airport", + "name": "Schwäbisch Hall-Weckrieden Airfield", + "latitude_deg": "49.124443", + "longitude_deg": "9.781111", + "elevation_ft": "1299", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Schwäbisch Hall", + "scheduled_service": "no", + "gps_code": "EDTX" + }, + { + "id": "2278", + "ident": "EDTY", + "type": "medium_airport", + "name": "Adolf Würth Airport", + "latitude_deg": "49.1183319092", + "longitude_deg": "9.783888816829998", + "elevation_ft": "1299", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Schwäbisch Hall", + "scheduled_service": "no", + "gps_code": "EDTY", + "home_link": "http://www.edty.de" + }, + { + "id": "28623", + "ident": "EDTZ", + "type": "small_airport", + "name": "Flugplatz Konstanz", + "latitude_deg": "47.681946", + "longitude_deg": "9.137222", + "elevation_ft": "1302", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Konstanz", + "scheduled_service": "no", + "gps_code": "EDTZ", + "home_link": "http://www.flugplatz-konstanz.de", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Konstanz" + }, + { + "id": "29091", + "ident": "EDUA", + "type": "small_airport", + "name": "Flugplatz Stechow-Ferchesar", + "latitude_deg": "52.650555", + "longitude_deg": "12.487778", + "elevation_ft": "148", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Stechow-Ferchesar", + "scheduled_service": "no", + "gps_code": "EDUA" + }, + { + "id": "2279", + "ident": "EDUB", + "type": "closed", + "name": "Brandenburg-Briest Airport", + "latitude_deg": "52.43861", + "longitude_deg": "12.458333", + "elevation_ft": "102", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Brandenburg an der Havel", + "scheduled_service": "no", + "gps_code": "EDUB" + }, + { + "id": "29724", + "ident": "EDUC", + "type": "closed", + "name": "Briesen Brand Airport", + "latitude_deg": "52.036381", + "longitude_deg": "13.733482", + "elevation_ft": "230", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "scheduled_service": "no", + "gps_code": "EDUC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brand-Briesen_Airfield" + }, + { + "id": "2280", + "ident": "EDUF", + "type": "small_airport", + "name": "Flugplatz Falkenberg-Lönnewitz", + "latitude_deg": "51.547779", + "longitude_deg": "13.228056", + "elevation_ft": "312", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Uebigau-Wahrenbrück", + "scheduled_service": "no", + "gps_code": "EDUF" + }, + { + "id": "29092", + "ident": "EDUO", + "type": "small_airport", + "name": "Flugplatz Oberrissdorf", + "latitude_deg": "51.5425", + "longitude_deg": "11.595833", + "elevation_ft": "738", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Lutherstadt Eisleben", + "scheduled_service": "no", + "gps_code": "EDUO" + }, + { + "id": "2281", + "ident": "EDUS", + "type": "small_airport", + "name": "Lausitzflugplatz Finsterwalde/Schacksdorf", + "latitude_deg": "51.607498", + "longitude_deg": "13.743611", + "elevation_ft": "384", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Finsterwalde", + "scheduled_service": "no", + "gps_code": "EDUS", + "wikipedia_link": "https://de.wikipedia.org/wiki/Lausitzflugplatz_Finsterwalde/Schacksdorf" + }, + { + "id": "2282", + "ident": "EDUT", + "type": "closed", + "name": "Flugplatz Templin/Groß Dölln", + "latitude_deg": "53.028258", + "longitude_deg": "13.54022", + "elevation_ft": "174", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Templin", + "scheduled_service": "no", + "gps_code": "EDUT", + "wikipedia_link": "http://de.wikipedia.org/wiki/EDUT" + }, + { + "id": "2283", + "ident": "EDUW", + "type": "small_airport", + "name": "Flugplatz Tutow", + "latitude_deg": "53.921944", + "longitude_deg": "13.218889", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Demmin", + "scheduled_service": "no", + "gps_code": "EDUW" + }, + { + "id": "29093", + "ident": "EDUY", + "type": "seaplane_base", + "name": "Welzow-Sedlitzer See Seaplane Base", + "latitude_deg": "51.557777", + "longitude_deg": "14.105", + "elevation_ft": "361", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "municipality": "Welzow", + "scheduled_service": "no", + "gps_code": "EDUY" + }, + { + "id": "29094", + "ident": "EDUZ", + "type": "medium_airport", + "name": "Flugplatz Zerbst", + "latitude_deg": "52.000832", + "longitude_deg": "12.148611", + "elevation_ft": "289", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-ST", + "municipality": "Zerbst/Anhalt", + "scheduled_service": "no", + "gps_code": "EDUZ", + "home_link": "https://www.luftsportverein-zerbst.de/" + }, + { + "id": "28511", + "ident": "EDVA", + "type": "small_airport", + "name": "Flugplatz Bad Gandersheim", + "latitude_deg": "51.854168", + "longitude_deg": "10.025556", + "elevation_ft": "791", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Bad Gandersheim", + "scheduled_service": "no", + "gps_code": "EDVA" + }, + { + "id": "28542", + "ident": "EDVC", + "type": "small_airport", + "name": "Flugplatz Celle-Arloh", + "latitude_deg": "52.687222", + "longitude_deg": "10.111389", + "elevation_ft": "207", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Celle", + "scheduled_service": "no", + "gps_code": "EDVC" + }, + { + "id": "2284", + "ident": "EDVE", + "type": "medium_airport", + "name": "Braunschweig-Wolfsburg Airport", + "latitude_deg": "52.319199", + "longitude_deg": "10.5561", + "elevation_ft": "295", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Braunschweig", + "scheduled_service": "no", + "gps_code": "EDVE", + "iata_code": "BWE", + "home_link": "http://www.flughafen-braunschweig-wolfsburg.de/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Braunschweig_Airport" + }, + { + "id": "28528", + "ident": "EDVF", + "type": "small_airport", + "name": "Flugplatz Blomberg-Borkhausen", + "latitude_deg": "51.917221", + "longitude_deg": "9.111667", + "elevation_ft": "535", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Blomberg", + "scheduled_service": "no", + "gps_code": "EDVF" + }, + { + "id": "28646", + "ident": "EDVG", + "type": "closed", + "name": "Flugplatz Mengeringhausen", + "latitude_deg": "51.376387", + "longitude_deg": "8.981111", + "elevation_ft": "1191", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Mengeringhausen", + "scheduled_service": "no", + "gps_code": "EDVG" + }, + { + "id": "28600", + "ident": "EDVH", + "type": "small_airport", + "name": "Flugplatz Hodenhagen", + "latitude_deg": "52.761865", + "longitude_deg": "9.61056", + "elevation_ft": "79", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Hodenhagen", + "scheduled_service": "no", + "gps_code": "EDVH" + }, + { + "id": "28602", + "ident": "EDVI", + "type": "small_airport", + "name": "Flugplatz Höxter-Holzminden", + "latitude_deg": "51.806667", + "longitude_deg": "9.378333", + "elevation_ft": "934", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Höxter", + "scheduled_service": "no", + "gps_code": "EDVI", + "home_link": "http://www.flugplatz-hx.de" + }, + { + "id": "29095", + "ident": "EDVJ", + "type": "small_airport", + "name": "Flugplatz Salzgitter-Schäferstuhl", + "latitude_deg": "52.030277", + "longitude_deg": "10.364444", + "elevation_ft": "741", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Salzgitter", + "scheduled_service": "no", + "gps_code": "EDVJ" + }, + { + "id": "2285", + "ident": "EDVK", + "type": "medium_airport", + "name": "Kassel-Calden Airport", + "latitude_deg": "51.417273", + "longitude_deg": "9.384967", + "elevation_ft": "820", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Kassel", + "scheduled_service": "yes", + "gps_code": "EDVK", + "iata_code": "KSF", + "home_link": "http://www.flughafenkassel.de/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kassel_Calden_Airport" + }, + { + "id": "28601", + "ident": "EDVL", + "type": "small_airport", + "name": "Flugplatz Hölleberg", + "latitude_deg": "51.610832", + "longitude_deg": "9.3975", + "elevation_ft": "837", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Trendelburg", + "scheduled_service": "no", + "gps_code": "EDVL" + }, + { + "id": "2286", + "ident": "EDVM", + "type": "small_airport", + "name": "Flugplatz Hildesheim", + "latitude_deg": "52.181389", + "longitude_deg": "9.946389", + "elevation_ft": "292", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Hildesheim", + "scheduled_service": "no", + "gps_code": "EDVM" + }, + { + "id": "28674", + "ident": "EDVN", + "type": "small_airport", + "name": "Flugplatz Northeim", + "latitude_deg": "51.70639", + "longitude_deg": "10.039722", + "elevation_ft": "404", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Northeim", + "scheduled_service": "no", + "gps_code": "EDVN" + }, + { + "id": "28705", + "ident": "EDVR", + "type": "small_airport", + "name": "Flugplatz Rinteln", + "latitude_deg": "52.175278", + "longitude_deg": "9.053333", + "elevation_ft": "180", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Rinteln", + "scheduled_service": "no", + "gps_code": "EDVR" + }, + { + "id": "28713", + "ident": "EDVS", + "type": "small_airport", + "name": "Flugplatz Drütte", + "latitude_deg": "52.154446", + "longitude_deg": "10.426667", + "elevation_ft": "328", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Salzgitter", + "scheduled_service": "no", + "gps_code": "EDVS" + }, + { + "id": "311065", + "ident": "EDVT", + "type": "small_airport", + "name": "Ithwiesen Airfield", + "latitude_deg": "51.952", + "longitude_deg": "9.662", + "elevation_ft": "1264", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Ith", + "scheduled_service": "no", + "gps_code": "EDVT", + "home_link": "http://www.ithwiesen.de/" + }, + { + "id": "28741", + "ident": "EDVU", + "type": "small_airport", + "name": "Flugplatz Uelzen", + "latitude_deg": "52.983891", + "longitude_deg": "10.465", + "elevation_ft": "246", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Uelzen", + "scheduled_service": "no", + "gps_code": "EDVU", + "home_link": "http://www.flugplatz-uelzen.de", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Uelzen" + }, + { + "id": "28516", + "ident": "EDVW", + "type": "small_airport", + "name": "Flugplatz Hameln-Pyrmont", + "latitude_deg": "51.966667", + "longitude_deg": "9.291667", + "elevation_ft": "1178", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Bad Pyrmont", + "scheduled_service": "no", + "gps_code": "EDVW" + }, + { + "id": "311072", + "ident": "EDVX", + "type": "heliport", + "name": "Gifhorn Federal Police Heliport", + "latitude_deg": "52.495184", + "longitude_deg": "10.510287", + "elevation_ft": "207", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Gifhorn", + "scheduled_service": "no", + "gps_code": "EDVX" + }, + { + "id": "28697", + "ident": "EDVY", + "type": "small_airport", + "name": "Flugplatz Porta Westfalica", + "latitude_deg": "52.220833", + "longitude_deg": "8.859167", + "elevation_ft": "148", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Bad Oeynhausen", + "scheduled_service": "no", + "gps_code": "EDVY" + }, + { + "id": "311073", + "ident": "EDVZ", + "type": "heliport", + "name": "Fuldatal Federal Police Heliport", + "latitude_deg": "51.359576", + "longitude_deg": "9.5028", + "elevation_ft": "694", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Fuldatal", + "scheduled_service": "no", + "gps_code": "EDVZ" + }, + { + "id": "28534", + "ident": "EDWA", + "type": "closed", + "name": "Bordelum Airfield", + "latitude_deg": "54.627499", + "longitude_deg": "8.930278", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Bredstedt", + "scheduled_service": "no", + "gps_code": "EDWA" + }, + { + "id": "2287", + "ident": "EDWB", + "type": "closed", + "name": "Bremerhaven Airport", + "latitude_deg": "53.506943", + "longitude_deg": "8.572778", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HB", + "municipality": "Bremerhaven", + "scheduled_service": "no", + "gps_code": "EDWB", + "iata_code": "BRV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bremerhaven_Airport" + }, + { + "id": "28548", + "ident": "EDWC", + "type": "small_airport", + "name": "Damme Airfield", + "latitude_deg": "52.487499", + "longitude_deg": "8.185556", + "elevation_ft": "151", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Damme", + "scheduled_service": "no", + "gps_code": "EDWC" + }, + { + "id": "28636", + "ident": "EDWD", + "type": "closed", + "name": "Lemwerder Airport", + "latitude_deg": "53.144699", + "longitude_deg": "8.62444", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HB", + "municipality": "Lemwerder", + "scheduled_service": "no", + "gps_code": "EDWD", + "iata_code": "XLW", + "wikipedia_link": "https://de.wikipedia.org/wiki/Flugplatz_Lemwerder" + }, + { + "id": "2288", + "ident": "EDWE", + "type": "small_airport", + "name": "Emden Airport", + "latitude_deg": "53.391109", + "longitude_deg": "7.2275", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Emden", + "scheduled_service": "yes", + "gps_code": "EDWE", + "iata_code": "EME", + "wikipedia_link": "https://en.wikipedia.org/wiki/Emden_Airport" + }, + { + "id": "2289", + "ident": "EDWF", + "type": "small_airport", + "name": "Flugplatz Leer-Papenburg", + "latitude_deg": "53.271942", + "longitude_deg": "7.441667", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Leer", + "scheduled_service": "no", + "gps_code": "EDWF" + }, + { + "id": "28751", + "ident": "EDWG", + "type": "small_airport", + "name": "Wangerooge Airport", + "latitude_deg": "53.782779693603516", + "longitude_deg": "7.913888931274414", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Wangerooge", + "scheduled_service": "no", + "gps_code": "EDWG", + "iata_code": "AGE" + }, + { + "id": "28680", + "ident": "EDWH", + "type": "small_airport", + "name": "Oldenburg-Hatten Airfield", + "latitude_deg": "53.06889", + "longitude_deg": "8.313611", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Oldenburg", + "scheduled_service": "no", + "gps_code": "EDWH" + }, + { + "id": "2290", + "ident": "EDWI", + "type": "small_airport", + "name": "Wilhelmshaven-Mariensiel Airport", + "latitude_deg": "53.502220153808594", + "longitude_deg": "8.05222225189209", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Wilhelmshaven", + "scheduled_service": "no", + "gps_code": "EDWI", + "iata_code": "WVN" + }, + { + "id": "28614", + "ident": "EDWJ", + "type": "small_airport", + "name": "Juist Airport", + "latitude_deg": "53.68111038208008", + "longitude_deg": "7.055832862854004", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Juist", + "scheduled_service": "no", + "gps_code": "EDWJ", + "iata_code": "JUI" + }, + { + "id": "28616", + "ident": "EDWK", + "type": "small_airport", + "name": "Flugplatz Karlshöfen", + "latitude_deg": "53.332779", + "longitude_deg": "9.028333", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Karlshöfen", + "scheduled_service": "no", + "gps_code": "EDWK" + }, + { + "id": "28632", + "ident": "EDWL", + "type": "small_airport", + "name": "Langeoog Airport", + "latitude_deg": "53.74250030517578", + "longitude_deg": "7.497777938842773", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Langeoog", + "scheduled_service": "no", + "gps_code": "EDWL", + "iata_code": "LGO" + }, + { + "id": "28758", + "ident": "EDWM", + "type": "small_airport", + "name": "Flugplatz Weser-Wümme", + "latitude_deg": "53.05389", + "longitude_deg": "9.208611", + "elevation_ft": "59", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Rotenburg (Wümme)", + "scheduled_service": "no", + "gps_code": "EDWM" + }, + { + "id": "28672", + "ident": "EDWN", + "type": "small_airport", + "name": "Flugplatz Nordhorn-Lingen", + "latitude_deg": "52.4575", + "longitude_deg": "7.182222", + "elevation_ft": "89", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Klausheide", + "scheduled_service": "no", + "gps_code": "EDWN", + "home_link": "http://www.Flugplatz-Nordhorn-Lingen.de", + "keywords": "ETUN, Nordhorn Range Airport" + }, + { + "id": "28684", + "ident": "EDWO", + "type": "small_airport", + "name": "Flugplatz Osnabrück-Atterheide", + "latitude_deg": "52.286388", + "longitude_deg": "7.969722", + "elevation_ft": "287", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Osnabrück", + "scheduled_service": "no", + "gps_code": "EDWO" + }, + { + "id": "43127", + "ident": "EDWP", + "type": "small_airport", + "name": "Flugplatz Wiefelstede-Conneforde", + "latitude_deg": "53.321388", + "longitude_deg": "8.073333", + "elevation_ft": "33", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Wiefelstede", + "scheduled_service": "no", + "gps_code": "EDWP" + }, + { + "id": "28566", + "ident": "EDWQ", + "type": "small_airport", + "name": "Ganderkesee Atlas Airfield", + "latitude_deg": "53.03611", + "longitude_deg": "8.505556", + "elevation_ft": "95", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Ganderkesee", + "scheduled_service": "no", + "gps_code": "EDWQ", + "home_link": "https://www.flugplatz-ganderkesee.de/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Flugplatz_Ganderkesee" + }, + { + "id": "2291", + "ident": "EDWR", + "type": "small_airport", + "name": "Borkum Airport", + "latitude_deg": "53.59639", + "longitude_deg": "6.709167", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Borkum", + "scheduled_service": "yes", + "gps_code": "EDWR", + "iata_code": "BMK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Borkum_Airfield", + "keywords": "Borkum" + }, + { + "id": "28668", + "ident": "EDWS", + "type": "small_airport", + "name": "Norden-Norddeich Airport", + "latitude_deg": "53.633056640599996", + "longitude_deg": "7.19027805328", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Norddeich", + "scheduled_service": "no", + "gps_code": "EDWS", + "iata_code": "NOD" + }, + { + "id": "28744", + "ident": "EDWU", + "type": "small_airport", + "name": "Varrelbusch Airport", + "latitude_deg": "52.908333", + "longitude_deg": "8.040556", + "elevation_ft": "128", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Cloppenburg", + "scheduled_service": "no", + "gps_code": "EDWU", + "iata_code": "VAC", + "home_link": "http://www.lsv-cloppenburg.de" + }, + { + "id": "28745", + "ident": "EDWV", + "type": "small_airport", + "name": "Verden-Scharnhorst Airfield", + "latitude_deg": "52.965279", + "longitude_deg": "9.282778", + "elevation_ft": "144", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Verden (Aller)", + "scheduled_service": "no", + "gps_code": "EDWV" + }, + { + "id": "28759", + "ident": "EDWX", + "type": "small_airport", + "name": "Flugplatz Westerstede-Felde", + "latitude_deg": "53.288612", + "longitude_deg": "7.930556", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Westerstede", + "scheduled_service": "no", + "gps_code": "EDWX" + }, + { + "id": "2292", + "ident": "EDWY", + "type": "small_airport", + "name": "Norderney Airport", + "latitude_deg": "53.706944", + "longitude_deg": "7.23", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Norderney", + "scheduled_service": "yes", + "gps_code": "EDWY", + "iata_code": "NRD" + }, + { + "id": "28520", + "ident": "EDWZ", + "type": "small_airport", + "name": "Baltrum Airport", + "latitude_deg": "53.72472381591797", + "longitude_deg": "7.373332977294922", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Baltrum", + "scheduled_service": "no", + "gps_code": "EDWZ", + "iata_code": "BMR" + }, + { + "id": "28491", + "ident": "EDXA", + "type": "small_airport", + "name": "Flugplatz Achmer", + "latitude_deg": "52.37722", + "longitude_deg": "7.913333", + "elevation_ft": "177", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Bramsche", + "scheduled_service": "no", + "gps_code": "EDXA" + }, + { + "id": "28590", + "ident": "EDXB", + "type": "small_airport", + "name": "Heide-Büsum Airport", + "latitude_deg": "54.153331756600004", + "longitude_deg": "8.90166664124", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Büsum", + "scheduled_service": "yes", + "gps_code": "EDXB", + "iata_code": "HEI", + "home_link": "http://www.edxb.de", + "wikipedia_link": "https://en.wikipedia.org/wiki/Heide-Buesum_Airport" + }, + { + "id": "28716", + "ident": "EDXC", + "type": "small_airport", + "name": "Flugplatz Schleswig-Kropp", + "latitude_deg": "54.425278", + "longitude_deg": "9.541667", + "elevation_ft": "52", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Schleswig", + "scheduled_service": "no", + "gps_code": "EDXC" + }, + { + "id": "28531", + "ident": "EDXD", + "type": "small_airport", + "name": "Flugplatz Bohmte-Bad Essen", + "latitude_deg": "52.351391", + "longitude_deg": "8.328333", + "elevation_ft": "148", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Bohmte", + "scheduled_service": "no", + "gps_code": "EDXD" + }, + { + "id": "28704", + "ident": "EDXE", + "type": "small_airport", + "name": "Flugplatz Rheine-Eschendorf", + "latitude_deg": "52.276389", + "longitude_deg": "7.492778", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Rheine", + "scheduled_service": "no", + "gps_code": "EDXE" + }, + { + "id": "2293", + "ident": "EDXF", + "type": "small_airport", + "name": "Flensburg-Schäferhaus Airport", + "latitude_deg": "54.77333450317383", + "longitude_deg": "9.378889083862305", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Flensburg", + "scheduled_service": "no", + "gps_code": "EDXF", + "iata_code": "FLF" + }, + { + "id": "28645", + "ident": "EDXG", + "type": "small_airport", + "name": "Melle-Grönegau Glider Field", + "latitude_deg": "52.200832", + "longitude_deg": "8.380556", + "elevation_ft": "236", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Melle", + "scheduled_service": "no", + "gps_code": "EDXG" + }, + { + "id": "28591", + "ident": "EDXH", + "type": "small_airport", + "name": "Helgoland-Düne Airport", + "latitude_deg": "54.185279846200004", + "longitude_deg": "7.91583299637", + "elevation_ft": "8", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Helgoland", + "scheduled_service": "yes", + "gps_code": "EDXH", + "iata_code": "HGL", + "home_link": "http://www.flughafen-helgoland.de", + "wikipedia_link": "https://en.wikipedia.org/wiki/Heligoland_Airport" + }, + { + "id": "28666", + "ident": "EDXI", + "type": "small_airport", + "name": "Flugplatz Holzbalge", + "latitude_deg": "52.709721", + "longitude_deg": "9.1625", + "elevation_ft": "82", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Nienburg/Weser", + "scheduled_service": "no", + "gps_code": "EDXI" + }, + { + "id": "2294", + "ident": "EDXJ", + "type": "small_airport", + "name": "Husum-Schwesing Airport", + "latitude_deg": "54.5099983215", + "longitude_deg": "9.138333320620001", + "elevation_ft": "62", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Husum", + "scheduled_service": "no", + "gps_code": "EDXJ", + "iata_code": "QHU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Husum_Schwesing_Airport" + }, + { + "id": "29096", + "ident": "EDXK", + "type": "small_airport", + "name": "Sonderlandeplatz Leck", + "latitude_deg": "54.790001", + "longitude_deg": "8.961389", + "elevation_ft": "23", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Leck", + "scheduled_service": "no", + "gps_code": "EDXK" + }, + { + "id": "28521", + "ident": "EDXL", + "type": "small_airport", + "name": "Flugplatz Barßel", + "latitude_deg": "53.164444", + "longitude_deg": "7.793889", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Barßel", + "scheduled_service": "no", + "gps_code": "EDXL" + }, + { + "id": "28733", + "ident": "EDXM", + "type": "small_airport", + "name": "Flugplatz St. Michaelisdonn", + "latitude_deg": "53.978058", + "longitude_deg": "9.144722", + "elevation_ft": "125", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Sankt Michaelisdonn", + "scheduled_service": "no", + "gps_code": "EDXM", + "keywords": "Hopen" + }, + { + "id": "28671", + "ident": "EDXN", + "type": "small_airport", + "name": "Nordholz-Spieka Airfield", + "latitude_deg": "53.767223", + "longitude_deg": "8.643611", + "elevation_ft": "72", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Cuxhaven", + "scheduled_service": "no", + "gps_code": "EDXN", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Nordholz-Spieka" + }, + { + "id": "28734", + "ident": "EDXO", + "type": "small_airport", + "name": "St. Peter-Ording Airport", + "latitude_deg": "54.30888748168945", + "longitude_deg": "8.686944007873535", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Sankt Peter-Ording", + "scheduled_service": "no", + "gps_code": "EDXO", + "iata_code": "PSH" + }, + { + "id": "28588", + "ident": "EDXP", + "type": "small_airport", + "name": "Flugplatz Harle", + "latitude_deg": "53.706669", + "longitude_deg": "7.820278", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Harlesiel", + "scheduled_service": "no", + "gps_code": "EDXP" + }, + { + "id": "29097", + "ident": "EDXQ", + "type": "small_airport", + "name": "Flugplatz Rotenburg", + "latitude_deg": "53.128334", + "longitude_deg": "9.348611", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Rotenburg (Wümme)", + "scheduled_service": "no", + "gps_code": "EDXQ" + }, + { + "id": "2295", + "ident": "EDXR", + "type": "small_airport", + "name": "Rendsburg-Schachtholm Airfield", + "latitude_deg": "54.220001", + "longitude_deg": "9.599444", + "elevation_ft": "23", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Rendsburg", + "scheduled_service": "no", + "gps_code": "EDXR" + }, + { + "id": "28727", + "ident": "EDXS", + "type": "small_airport", + "name": "Sonderlandeplatz Seedorf", + "latitude_deg": "53.335556", + "longitude_deg": "9.259444", + "elevation_ft": "72", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Seedorf", + "scheduled_service": "no", + "gps_code": "EDXS" + }, + { + "id": "28603", + "ident": "EDXT", + "type": "small_airport", + "name": "Flugplatz Sierksdorf/Hof Altona", + "latitude_deg": "54.06778", + "longitude_deg": "10.743056", + "elevation_ft": "79", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Sierksdorf", + "scheduled_service": "no", + "gps_code": "EDXT" + }, + { + "id": "28607", + "ident": "EDXU", + "type": "small_airport", + "name": "Sonderlandeplatz Hüttenbusch", + "latitude_deg": "53.286667", + "longitude_deg": "8.947222", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Hüttenbusch", + "scheduled_service": "no", + "gps_code": "EDXU" + }, + { + "id": "2296", + "ident": "EDXW", + "type": "medium_airport", + "name": "Westerland Sylt Airport", + "latitude_deg": "54.9132003784", + "longitude_deg": "8.34047031403", + "elevation_ft": "51", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Westerland", + "scheduled_service": "yes", + "gps_code": "EDXW", + "iata_code": "GWT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sylt_Airport" + }, + { + "id": "28765", + "ident": "EDXY", + "type": "small_airport", + "name": "Wyk auf Föhr Airport", + "latitude_deg": "54.684444427490234", + "longitude_deg": "8.528332710266113", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Wyk auf Föhr", + "scheduled_service": "no", + "gps_code": "EDXY", + "iata_code": "OHR" + }, + { + "id": "28626", + "ident": "EDXZ", + "type": "small_airport", + "name": "Flugplatz Kührstedt-Bederkesa", + "latitude_deg": "53.568054", + "longitude_deg": "8.789444", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Kührstedt", + "scheduled_service": "no", + "gps_code": "EDXZ" + }, + { + "id": "34941", + "ident": "EE-0001", + "type": "closed", + "name": "Aste Air Base", + "latitude_deg": "58.3650016784668", + "longitude_deg": "22.44499969482422", + "elevation_ft": "69", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-74", + "municipality": "Aste", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Asta_%28air_base%29", + "keywords": "Asta" + }, + { + "id": "30985", + "ident": "EE-0002", + "type": "closed", + "name": "Haapsalu Air Base", + "latitude_deg": "58.911098", + "longitude_deg": "23.488899", + "elevation_ft": "69", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-57", + "municipality": "Haapsalu", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tokhaapsalu", + "keywords": "Tokhaapsalu Air Base" + }, + { + "id": "43200", + "ident": "EE-0003", + "type": "closed", + "name": "Nässuma Airstrip", + "latitude_deg": "58.2836", + "longitude_deg": "22.817801", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-74", + "municipality": "Nässuma", + "scheduled_service": "no" + }, + { + "id": "299535", + "ident": "EE-0004", + "type": "closed", + "name": "Jägala Highway Strip", + "latitude_deg": "59.397778", + "longitude_deg": "25.290556", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-37", + "municipality": "Partsaare", + "scheduled_service": "no" + }, + { + "id": "321322", + "ident": "EE-0005", + "type": "seaplane_base", + "name": "Roomassaare Seaplane Base", + "latitude_deg": "58.2133333", + "longitude_deg": "22.51", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-74", + "municipality": "Kuressaare", + "scheduled_service": "no" + }, + { + "id": "323980", + "ident": "EE-0006", + "type": "closed", + "name": "Piirissaar Airfield", + "latitude_deg": "58.378889", + "longitude_deg": "27.523333", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-7B", + "municipality": "Piirissaar", + "scheduled_service": "no" + }, + { + "id": "329150", + "ident": "EE-0007", + "type": "closed", + "name": "Kagul Air Base", + "latitude_deg": "58.3121457", + "longitude_deg": "22.2644062", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-74", + "scheduled_service": "no", + "wikipedia_link": "http://ru.wikipedia.org/Бомбардировки Берлина советской авиацией в 1941 году" + }, + { + "id": "333440", + "ident": "EE-0008", + "type": "closed", + "name": "Tallinn Lasnamäe Airfield", + "latitude_deg": "59.45", + "longitude_deg": "24.86333", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-37", + "municipality": "Tallinn", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lasnam%C3%A4e_Airfield" + }, + { + "id": "343880", + "ident": "EE-0009", + "type": "closed", + "name": "Avaste Airfield", + "latitude_deg": "58.707634", + "longitude_deg": "24.221667", + "elevation_ft": "84", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-70", + "municipality": "Avaste", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Avaste_Airfield" + }, + { + "id": "35113", + "ident": "EE-1612", + "type": "closed", + "name": "Vohma Air Base", + "latitude_deg": "58.662200927734375", + "longitude_deg": "25.586700439453125", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-51", + "municipality": "Vohma", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Võhma_air_base" + }, + { + "id": "35098", + "ident": "EE-4931", + "type": "closed", + "name": "Tõrva Air Base", + "latitude_deg": "58.189998626708984", + "longitude_deg": "25.948299407958984", + "elevation_ft": "203", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-84", + "municipality": "Torva", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tõrva_air_base" + }, + { + "id": "35107", + "ident": "EE-7685", + "type": "closed", + "name": "Valga Air Base", + "latitude_deg": "57.81330108642578", + "longitude_deg": "26.07670021057129", + "elevation_ft": "239", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-82", + "municipality": "Valga", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valga_(air_base)" + }, + { + "id": "35013", + "ident": "EE-9278", + "type": "small_airport", + "name": "Kunda Air Base", + "latitude_deg": "59.53670120239258", + "longitude_deg": "26.31170082092285", + "elevation_ft": "135", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-59", + "municipality": "Kunda", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kunda_(air_base)", + "keywords": "Rutja" + }, + { + "id": "343869", + "ident": "EEAA", + "type": "small_airport", + "name": "Antsla Airfield", + "latitude_deg": "57.826111", + "longitude_deg": "26.4925", + "elevation_ft": "258", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-86", + "municipality": "Antsla", + "scheduled_service": "no", + "gps_code": "EEAA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Antsla_Airfield" + }, + { + "id": "342467", + "ident": "EEB", + "type": "small_airport", + "name": "El Espino Airport", + "latitude_deg": "6.4884", + "longitude_deg": "-72.50388", + "elevation_ft": "7126", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOY", + "municipality": "El Espino", + "scheduled_service": "no", + "local_code": "EEB", + "keywords": "SQSY" + }, + { + "id": "43020", + "ident": "EECL", + "type": "heliport", + "name": "Tallinn Linnahall Heliport", + "latitude_deg": "59.448015", + "longitude_deg": "24.753313", + "elevation_ft": "23", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-37", + "municipality": "Tallinn", + "scheduled_service": "yes", + "gps_code": "EECL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tallinn_Linnahall_Heliport" + }, + { + "id": "2297", + "ident": "EEEI", + "type": "medium_airport", + "name": "Ämari Air Base", + "latitude_deg": "59.26029968261719", + "longitude_deg": "24.208499908447266", + "elevation_ft": "65", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-37", + "municipality": "Keila", + "scheduled_service": "no", + "gps_code": "EEEI", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%84mari_Air_Base", + "keywords": "Suurküla, Vasalemma, Emari, Suurkyul, Shuurkyul, Shuurkul" + }, + { + "id": "308836", + "ident": "EEHA", + "type": "small_airport", + "name": "Humala Aerodrome", + "latitude_deg": "59.3579", + "longitude_deg": "24.3795", + "elevation_ft": "88", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-37", + "municipality": "Humala", + "scheduled_service": "no", + "gps_code": "EEHA" + }, + { + "id": "30986", + "ident": "EEJI", + "type": "small_airport", + "name": "Jõhvi Airfield", + "latitude_deg": "59.329167", + "longitude_deg": "27.397222", + "elevation_ft": "246", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-44", + "municipality": "Jõhvi", + "scheduled_service": "no", + "gps_code": "EEJI", + "wikipedia_link": "https://et.wikipedia.org/wiki/J%C3%B5hvi_lennuv%C3%A4li" + }, + { + "id": "2298", + "ident": "EEKA", + "type": "medium_airport", + "name": "Kärdla Airport", + "latitude_deg": "58.99079895019531", + "longitude_deg": "22.830699920654297", + "elevation_ft": "18", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-39", + "municipality": "Kärdla", + "scheduled_service": "yes", + "gps_code": "EEKA", + "iata_code": "KDL", + "wikipedia_link": "https://en.wikipedia.org/wiki/K%C3%A4rdla_Airport" + }, + { + "id": "2299", + "ident": "EEKE", + "type": "medium_airport", + "name": "Kuressaare Airport", + "latitude_deg": "58.22990036010742", + "longitude_deg": "22.50950050354004", + "elevation_ft": "14", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-74", + "municipality": "Kuressaare", + "scheduled_service": "yes", + "gps_code": "EEKE", + "iata_code": "URE", + "home_link": "http://www.eeke.ee/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kuressaare_Airport" + }, + { + "id": "315889", + "ident": "EEKI", + "type": "small_airport", + "name": "Karksi Airfield", + "latitude_deg": "58.117078", + "longitude_deg": "25.552783", + "elevation_ft": "289", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-84", + "municipality": "Karksi", + "scheduled_service": "no", + "gps_code": "EEKI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Karksi_Airfield", + "keywords": "Nuia, Polli" + }, + { + "id": "30027", + "ident": "EEKU", + "type": "small_airport", + "name": "Kihnu Airfield", + "latitude_deg": "58.1483", + "longitude_deg": "24.002501", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-67", + "municipality": "Saareküla", + "scheduled_service": "no", + "gps_code": "EEKU", + "home_link": "http://www.eepu.ee/index.php?sitesig=PILEN&page=PILEN_013_Kihnu_Airfield&subpage=PILEN_001_General", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kihnu_Airfield", + "keywords": "Kihnu Island" + }, + { + "id": "321538", + "ident": "EELM", + "type": "small_airport", + "name": "Lange Airfield", + "latitude_deg": "58.290658", + "longitude_deg": "26.767748", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-7B", + "municipality": "Tartu", + "scheduled_service": "no", + "gps_code": "EELM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lange_Airfield", + "keywords": "Lennundusmuuseum, Lange lennuväli" + }, + { + "id": "318330", + "ident": "EELU", + "type": "small_airport", + "name": "Lyckholm Airstrip", + "latitude_deg": "59.02211", + "longitude_deg": "23.57808", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-57", + "municipality": "Saare", + "scheduled_service": "no", + "gps_code": "EELU" + }, + { + "id": "30181", + "ident": "EENA", + "type": "small_airport", + "name": "Narva Airfield", + "latitude_deg": "59.388599", + "longitude_deg": "28.1136", + "elevation_ft": "92", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-44", + "municipality": "Narva", + "scheduled_service": "no", + "gps_code": "EENA" + }, + { + "id": "30987", + "ident": "EENI", + "type": "small_airport", + "name": "Nurmsi Airfield", + "latitude_deg": "58.865002", + "longitude_deg": "25.73", + "elevation_ft": "233", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-51", + "municipality": "Nurmsi", + "scheduled_service": "no", + "gps_code": "EENI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Koigi_(air_base)", + "keywords": "Koigi Air Base" + }, + { + "id": "2300", + "ident": "EEPU", + "type": "medium_airport", + "name": "Pärnu Airport", + "latitude_deg": "58.41899871826172", + "longitude_deg": "24.47279930114746", + "elevation_ft": "47", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-67", + "municipality": "Pärnu", + "scheduled_service": "yes", + "gps_code": "EEPU", + "iata_code": "EPU", + "wikipedia_link": "https://en.wikipedia.org/wiki/P%C3%A4rnu_Airport" + }, + { + "id": "30323", + "ident": "EERA", + "type": "small_airport", + "name": "Rapla Airfield", + "latitude_deg": "58.9864006042", + "longitude_deg": "24.7243995667", + "elevation_ft": "220", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-70", + "municipality": "Rapla", + "scheduled_service": "no", + "gps_code": "EERA", + "home_link": "http://www.eera.ee/" + }, + { + "id": "317655", + "ident": "EERD", + "type": "small_airport", + "name": "Riidaja Airfield", + "latitude_deg": "58.085278", + "longitude_deg": "25.898889", + "elevation_ft": "295", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-82", + "municipality": "Riidaja", + "scheduled_service": "no", + "gps_code": "EERD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Riidaja_Airfield#cite_note-2" + }, + { + "id": "318331", + "ident": "EERE", + "type": "small_airport", + "name": "Rakvere Airfield", + "latitude_deg": "59.364799", + "longitude_deg": "26.359136", + "elevation_ft": "240", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-59", + "municipality": "Rakvere", + "scheduled_service": "no", + "gps_code": "EERE" + }, + { + "id": "30336", + "ident": "EERI", + "type": "small_airport", + "name": "Ridali Airfield", + "latitude_deg": "57.9399986267", + "longitude_deg": "26.9790000916", + "elevation_ft": "302", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-65", + "municipality": "Suurküla", + "scheduled_service": "no", + "gps_code": "EERI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ridali_Airfield" + }, + { + "id": "30355", + "ident": "EERU", + "type": "small_airport", + "name": "Ruhnu Airfield", + "latitude_deg": "57.78390121459961", + "longitude_deg": "23.26609992980957", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-74", + "municipality": "Ringsu", + "scheduled_service": "yes", + "gps_code": "EERU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ruhnu_Airfield", + "keywords": "Ruhnu island" + }, + { + "id": "2357", + "ident": "EES", + "type": "medium_airport", + "name": "Berenice International Airport / Banas Cape Air Base", + "latitude_deg": "23.989802", + "longitude_deg": "35.465047", + "elevation_ft": "108", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-BA", + "municipality": "Berenice Troglodytica", + "scheduled_service": "no", + "iata_code": "EES" + }, + { + "id": "318294", + "ident": "EESE", + "type": "heliport", + "name": "Salme Heliport", + "latitude_deg": "58.1319444", + "longitude_deg": "22.2583333", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-74", + "municipality": "Salme", + "scheduled_service": "no", + "gps_code": "EESE", + "keywords": "Estwind Energy" + }, + { + "id": "30469", + "ident": "EETA", + "type": "closed", + "name": "Tapa Air Base", + "latitude_deg": "59.240799", + "longitude_deg": "25.9622", + "elevation_ft": "331", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-59", + "municipality": "Tapa", + "scheduled_service": "no", + "gps_code": "EETA", + "home_link": "https://web.archive.org/web/20160921031759/http://www.slk.ee/900.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tapa_Airfield", + "keywords": "Аэродром Тапа" + }, + { + "id": "2301", + "ident": "EETN", + "type": "large_airport", + "name": "Lennart Meri Tallinn Airport", + "latitude_deg": "59.41329956049999", + "longitude_deg": "24.832799911499997", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-37", + "municipality": "Tallinn", + "scheduled_service": "yes", + "gps_code": "EETN", + "iata_code": "TLL", + "home_link": "http://www.tallinn-airport.ee/eng", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tallinn_Airport" + }, + { + "id": "30988", + "ident": "EETR", + "type": "closed", + "name": "Raadi Airfield", + "latitude_deg": "58.404701232910156", + "longitude_deg": "26.776100158691406", + "elevation_ft": "217", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-7B", + "municipality": "Tartu", + "scheduled_service": "no", + "gps_code": "EETR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Raadi_Airfield", + "keywords": "Tartu Air Base" + }, + { + "id": "2302", + "ident": "EETU", + "type": "medium_airport", + "name": "Tartu Airport", + "latitude_deg": "58.307499", + "longitude_deg": "26.690399", + "elevation_ft": "220", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-7B", + "municipality": "Tartu", + "scheduled_service": "yes", + "gps_code": "EETU", + "iata_code": "TAY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tartu_Airport" + }, + { + "id": "30533", + "ident": "EEVI", + "type": "small_airport", + "name": "Viljandi Airfield", + "latitude_deg": "58.348374", + "longitude_deg": "25.494831", + "elevation_ft": "249", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-84", + "municipality": "Viljandi", + "scheduled_service": "no", + "gps_code": "EEVI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Viljandi_Airfield", + "keywords": "Fellin" + }, + { + "id": "320290", + "ident": "EEVO", + "type": "small_airport", + "name": "Vormsi Airfield", + "latitude_deg": "58.98516", + "longitude_deg": "23.251372", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-57", + "municipality": "Vormsi Island", + "scheduled_service": "no", + "gps_code": "EEVO" + }, + { + "id": "318329", + "ident": "EEVU", + "type": "small_airport", + "name": "Varstu Airfield", + "latitude_deg": "57.63288", + "longitude_deg": "26.671085", + "elevation_ft": "275", + "continent": "EU", + "iso_country": "EE", + "iso_region": "EE-86", + "municipality": "Varstu", + "scheduled_service": "no", + "gps_code": "EEVU" + }, + { + "id": "27245", + "ident": "EFAA", + "type": "small_airport", + "name": "Aavahelukka Airport", + "latitude_deg": "67.60359954833984", + "longitude_deg": "23.97170066833496", + "elevation_ft": "738", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-10", + "scheduled_service": "no", + "gps_code": "EFAA" + }, + { + "id": "27246", + "ident": "EFAH", + "type": "small_airport", + "name": "Ahmosuo Airport", + "latitude_deg": "64.895302", + "longitude_deg": "25.752199", + "elevation_ft": "95", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-14", + "municipality": "Oulu", + "scheduled_service": "no", + "gps_code": "EFAH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ahmosuo_Airfield" + }, + { + "id": "27247", + "ident": "EFAL", + "type": "small_airport", + "name": "Alavus Airfield", + "latitude_deg": "62.554699", + "longitude_deg": "23.573299", + "elevation_ft": "407", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-03", + "municipality": "Alavus", + "scheduled_service": "no", + "gps_code": "EFAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alavus_Airfield" + }, + { + "id": "44025", + "ident": "EFEJ", + "type": "heliport", + "name": "Jorvin Hospital Heliport", + "latitude_deg": "60.220833", + "longitude_deg": "24.68639", + "elevation_ft": "75", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-18", + "municipality": "Helsinki", + "scheduled_service": "no", + "gps_code": "EFEJ" + }, + { + "id": "44032", + "ident": "EFEK", + "type": "heliport", + "name": "Kilpisjärvi Heliport", + "latitude_deg": "69.0022201538086", + "longitude_deg": "20.89638900756836", + "elevation_ft": "1584", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-10", + "scheduled_service": "no", + "gps_code": "EFEK" + }, + { + "id": "2303", + "ident": "EFET", + "type": "medium_airport", + "name": "Enontekio Airport", + "latitude_deg": "68.362602233887", + "longitude_deg": "23.424299240112", + "elevation_ft": "1005", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-10", + "municipality": "Enontekio", + "scheduled_service": "yes", + "gps_code": "EFET", + "iata_code": "ENF", + "home_link": "http://www.finavia.fi/en/enontekio/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Enonteki%C3%B6_Airport" + }, + { + "id": "2304", + "ident": "EFEU", + "type": "small_airport", + "name": "Eura Airport", + "latitude_deg": "61.1161", + "longitude_deg": "22.201401", + "elevation_ft": "259", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-17", + "municipality": "Eura", + "scheduled_service": "no", + "gps_code": "EFEU" + }, + { + "id": "27248", + "ident": "EFFO", + "type": "small_airport", + "name": "Forssa Airfield", + "latitude_deg": "60.803683", + "longitude_deg": "23.650802", + "elevation_ft": "325", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-06", + "municipality": "Forssa", + "scheduled_service": "no", + "gps_code": "EFFO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Forssa_Airfield", + "keywords": "QVE" + }, + { + "id": "302537", + "ident": "EFG", + "type": "small_airport", + "name": "Efogi Airport", + "latitude_deg": "-9.15380555556", + "longitude_deg": "147.659805556", + "elevation_ft": "3900", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Efogi", + "scheduled_service": "no", + "gps_code": "AYEF", + "iata_code": "EFG", + "local_code": "EFO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Efogi_Airport" + }, + { + "id": "27249", + "ident": "EFGE", + "type": "small_airport", + "name": "Genböle Airport", + "latitude_deg": "60.086899", + "longitude_deg": "22.5219", + "elevation_ft": "46", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-19", + "municipality": "Genböle", + "scheduled_service": "no", + "gps_code": "EFGE" + }, + { + "id": "2305", + "ident": "EFHA", + "type": "medium_airport", + "name": "Halli Airport", + "latitude_deg": "61.856039", + "longitude_deg": "24.786686", + "elevation_ft": "479", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-08", + "municipality": "Jämsä", + "scheduled_service": "no", + "gps_code": "EFHA", + "iata_code": "KEV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Halli_Airport", + "keywords": "Halli Air Base" + }, + { + "id": "43021", + "ident": "EFHE", + "type": "heliport", + "name": "Hernesaari Heliport", + "latitude_deg": "60.147778", + "longitude_deg": "24.924444", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-18", + "municipality": "Helsinki", + "scheduled_service": "no", + "gps_code": "EFHE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hernesaari_Heliport", + "keywords": "Hernesaaren helikopterikenttä, Ärtholmens heliport" + }, + { + "id": "2306", + "ident": "EFHF", + "type": "closed", + "name": "Helsinki Malmi Airport", + "latitude_deg": "60.254601", + "longitude_deg": "25.042801", + "elevation_ft": "57", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-18", + "municipality": "Helsinki", + "scheduled_service": "no", + "gps_code": "EFHF", + "iata_code": "HEM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Helsinki-Malmi_Airport" + }, + { + "id": "44026", + "ident": "EFHH", + "type": "heliport", + "name": "Kanta-Hämeen Central Hospital Heliport", + "latitude_deg": "60.991112", + "longitude_deg": "24.415277", + "elevation_ft": "440", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-06", + "municipality": "Hämeenlinna", + "scheduled_service": "no", + "gps_code": "EFHH" + }, + { + "id": "29933", + "ident": "EFHI", + "type": "closed", + "name": "Haapamäki Airfield", + "latitude_deg": "62.255204", + "longitude_deg": "24.349478", + "elevation_ft": "531", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-08", + "municipality": "Haapamäki", + "scheduled_service": "no", + "gps_code": "EFHI" + }, + { + "id": "27250", + "ident": "EFHJ", + "type": "closed", + "name": "Haapajärvi Airport", + "latitude_deg": "63.7122", + "longitude_deg": "25.395", + "elevation_ft": "351", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-14", + "municipality": "Haapajärvi", + "scheduled_service": "no", + "gps_code": "EFHJ" + }, + { + "id": "2307", + "ident": "EFHK", + "type": "large_airport", + "name": "Helsinki Vantaa Airport", + "latitude_deg": "60.3172", + "longitude_deg": "24.963301", + "elevation_ft": "179", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-18", + "municipality": "Helsinki", + "scheduled_service": "yes", + "gps_code": "EFHK", + "iata_code": "HEL", + "home_link": "http://www.finavia.fi/en/helsinki-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Helsinki_Airport" + }, + { + "id": "27252", + "ident": "EFHL", + "type": "small_airport", + "name": "Hailuoto Airfield", + "latitude_deg": "64.969553", + "longitude_deg": "24.704218", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-14", + "municipality": "Hailuoto", + "scheduled_service": "no", + "gps_code": "EFHL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hailuoto_Airfield" + }, + { + "id": "2308", + "ident": "EFHM", + "type": "small_airport", + "name": "Hämeenkyrö Airfield", + "latitude_deg": "61.689701", + "longitude_deg": "23.0737", + "elevation_ft": "449", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-11", + "municipality": "Hämeenkyrö", + "scheduled_service": "no", + "gps_code": "EFHM", + "wikipedia_link": "https://en.wikipedia.org/wiki/H%C3%A4meenkyr%C3%B6_Airfield" + }, + { + "id": "2309", + "ident": "EFHN", + "type": "small_airport", + "name": "Hanko Airport", + "latitude_deg": "59.8489", + "longitude_deg": "23.083599", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-18", + "municipality": "Hanko", + "scheduled_service": "no", + "gps_code": "EFHN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hanko_Airfield" + }, + { + "id": "44038", + "ident": "EFHO", + "type": "heliport", + "name": "Oulun University Hospital Heliport", + "latitude_deg": "65.003609", + "longitude_deg": "25.520279", + "elevation_ft": "43", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-14", + "municipality": "Oulu", + "scheduled_service": "no", + "gps_code": "EFHO" + }, + { + "id": "27251", + "ident": "EFHP", + "type": "small_airport", + "name": "Haapavesi Airfield", + "latitude_deg": "64.113098", + "longitude_deg": "25.5042", + "elevation_ft": "315", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-14", + "municipality": "Haapavesi", + "scheduled_service": "no", + "gps_code": "EFHP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Haapavesi_Airfield" + }, + { + "id": "44035", + "ident": "EFHS", + "type": "heliport", + "name": "Seinäjoen Central Hospital Heliport", + "latitude_deg": "62.769919", + "longitude_deg": "22.822402", + "elevation_ft": "194", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-03", + "municipality": "Seinäjoen", + "scheduled_service": "no", + "gps_code": "EFHS" + }, + { + "id": "2310", + "ident": "EFHV", + "type": "small_airport", + "name": "Hyvinkää Airfield", + "latitude_deg": "60.6544", + "longitude_deg": "24.8811", + "elevation_ft": "430", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-18", + "municipality": "Hyvinkää", + "scheduled_service": "no", + "gps_code": "EFHV", + "iata_code": "HYV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hyvink%C3%A4%C3%A4_Airfield" + }, + { + "id": "44027", + "ident": "EFHY", + "type": "heliport", + "name": "Meilahti Hospital Helipad", + "latitude_deg": "60.188909", + "longitude_deg": "24.907276", + "elevation_ft": "69", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-18", + "municipality": "Helsinki", + "scheduled_service": "no", + "gps_code": "EFHY", + "keywords": "Helsingin Yliopistollinen Sairaala, Helsinki University Central Hospital Heliport" + }, + { + "id": "27253", + "ident": "EFII", + "type": "small_airport", + "name": "Iisalmi Airport", + "latitude_deg": "63.631901", + "longitude_deg": "27.1222", + "elevation_ft": "384", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-15", + "municipality": "Iisalmi", + "scheduled_service": "no", + "gps_code": "EFII", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iisalmi_Airfield" + }, + { + "id": "2311", + "ident": "EFIK", + "type": "small_airport", + "name": "Kiikala Airport", + "latitude_deg": "60.462502", + "longitude_deg": "23.6525", + "elevation_ft": "381", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-19", + "municipality": "Kikala", + "scheduled_service": "no", + "gps_code": "EFIK" + }, + { + "id": "2312", + "ident": "EFIM", + "type": "small_airport", + "name": "Immola Airport", + "latitude_deg": "61.249199", + "longitude_deg": "28.9037", + "elevation_ft": "338", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-02", + "municipality": "Imatra", + "scheduled_service": "no", + "gps_code": "EFIM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Immola_Airfield" + }, + { + "id": "2313", + "ident": "EFIT", + "type": "medium_airport", + "name": "Kitee Airport", + "latitude_deg": "62.1661", + "longitude_deg": "30.073601", + "elevation_ft": "364", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-13", + "municipality": "Kitee", + "scheduled_service": "no", + "gps_code": "EFIT", + "iata_code": "KTQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kitee_Airfield" + }, + { + "id": "2314", + "ident": "EFIV", + "type": "medium_airport", + "name": "Ivalo Airport", + "latitude_deg": "68.607299804688", + "longitude_deg": "27.405300140381", + "elevation_ft": "481", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-10", + "municipality": "Ivalo", + "scheduled_service": "yes", + "gps_code": "EFIV", + "iata_code": "IVL", + "home_link": "http://www.finavia.fi/en/ivalo/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ivalo_Airport" + }, + { + "id": "44031", + "ident": "EFJE", + "type": "heliport", + "name": "North Karelia Central Hospital Heliport", + "latitude_deg": "62.590832", + "longitude_deg": "29.777779", + "elevation_ft": "397", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-13", + "municipality": "Joensuu", + "scheduled_service": "no", + "gps_code": "EFJE", + "wikipedia_link": "https://fi.wikipedia.org/wiki/Pohjois-Karjalan_keskussairaala", + "keywords": "Pohjois-Karjalan_keskussairaala" + }, + { + "id": "346797", + "ident": "EFJI", + "type": "small_airport", + "name": "Ilvesjoki UL", + "latitude_deg": "62.324167", + "longitude_deg": "22.694167", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-03", + "scheduled_service": "no", + "gps_code": "EFIJ" + }, + { + "id": "27254", + "ident": "EFJM", + "type": "small_airport", + "name": "Jämijärvi Airfield", + "latitude_deg": "61.778599", + "longitude_deg": "22.716101", + "elevation_ft": "505", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-17", + "municipality": "Jämijärvi", + "scheduled_service": "no", + "gps_code": "EFJM", + "wikipedia_link": "https://en.wikipedia.org/wiki/J%C3%A4mij%C3%A4rvi_Airfield" + }, + { + "id": "2315", + "ident": "EFJO", + "type": "medium_airport", + "name": "Joensuu Airport", + "latitude_deg": "62.662899", + "longitude_deg": "29.6075", + "elevation_ft": "398", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-13", + "municipality": "Joensuu / Liperi", + "scheduled_service": "yes", + "gps_code": "EFJO", + "iata_code": "JOE", + "home_link": "http://www.finavia.fi/en/joensuu/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Joensuu_Airport" + }, + { + "id": "29099", + "ident": "EFJP", + "type": "small_airport", + "name": "Jäkäläpää Airfield", + "latitude_deg": "68.711403", + "longitude_deg": "25.7528", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-10", + "scheduled_service": "no", + "gps_code": "EFJP" + }, + { + "id": "44034", + "ident": "EFJV", + "type": "heliport", + "name": "Central Finland Central Hospital Heliport", + "latitude_deg": "62.230361", + "longitude_deg": "25.71154", + "elevation_ft": "459", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-08", + "municipality": "Jyväskylä", + "scheduled_service": "no", + "gps_code": "EFJV", + "keywords": "Keski-Suomen keskussairaala" + }, + { + "id": "2316", + "ident": "EFJY", + "type": "medium_airport", + "name": "Jyväskylä Airport", + "latitude_deg": "62.399502", + "longitude_deg": "25.678301", + "elevation_ft": "459", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-08", + "municipality": "Jyväskylän Maalaiskunta", + "scheduled_service": "yes", + "gps_code": "EFJY", + "iata_code": "JYV", + "home_link": "https://www.finavia.fi/en/jyvaskyla/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jyv%C3%A4skyl%C3%A4_Airport" + }, + { + "id": "2317", + "ident": "EFKA", + "type": "medium_airport", + "name": "Kauhava Airfield", + "latitude_deg": "63.127102", + "longitude_deg": "23.051399", + "elevation_ft": "151", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-03", + "municipality": "Kauhava", + "scheduled_service": "no", + "gps_code": "EFKA", + "iata_code": "KAU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kauhava_Airfield", + "keywords": "Kauhava Air Base" + }, + { + "id": "2318", + "ident": "EFKE", + "type": "medium_airport", + "name": "Kemi-Tornio Airport", + "latitude_deg": "65.778701782227", + "longitude_deg": "24.582099914551", + "elevation_ft": "61", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-10", + "municipality": "Kemi / Tornio", + "scheduled_service": "yes", + "gps_code": "EFKE", + "iata_code": "KEM", + "home_link": "http://www.finavia.fi/en/kemi-tornio/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kemi-Tornio_Airport" + }, + { + "id": "27259", + "ident": "EFKG", + "type": "small_airport", + "name": "Kumlinge Airport", + "latitude_deg": "60.24689865112305", + "longitude_deg": "20.80470085144043", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-01", + "scheduled_service": "no", + "gps_code": "EFKG" + }, + { + "id": "27258", + "ident": "EFKH", + "type": "small_airport", + "name": "Kuhmo Airfield", + "latitude_deg": "64.112503", + "longitude_deg": "29.438601", + "elevation_ft": "571", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-05", + "municipality": "Kuhmo", + "scheduled_service": "no", + "gps_code": "EFKH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kuhmo_Airfield" + }, + { + "id": "2319", + "ident": "EFKI", + "type": "medium_airport", + "name": "Kajaani Airport", + "latitude_deg": "64.2855", + "longitude_deg": "27.6924", + "elevation_ft": "483", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-05", + "municipality": "Kajaani", + "scheduled_service": "yes", + "gps_code": "EFKI", + "iata_code": "KAJ", + "home_link": "https://www.finavia.fi/en/kajaani/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kajaani_Airport" + }, + { + "id": "2320", + "ident": "EFKJ", + "type": "medium_airport", + "name": "Kauhajoki Airfield", + "latitude_deg": "62.463212", + "longitude_deg": "22.390817", + "elevation_ft": "407", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-03", + "scheduled_service": "no", + "gps_code": "EFKJ", + "iata_code": "KHJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kauhajoki_Airfield" + }, + { + "id": "2321", + "ident": "EFKK", + "type": "medium_airport", + "name": "Kokkola-Pietarsaari Airport", + "latitude_deg": "63.721199", + "longitude_deg": "23.143101", + "elevation_ft": "84", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-07", + "municipality": "Kokkola / Kruunupyy", + "scheduled_service": "yes", + "gps_code": "EFKK", + "iata_code": "KOK", + "home_link": "https://www.finavia.fi/en/kokkola-pietarsaari/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kokkola-Pietarsaari_Airport", + "keywords": "Kronoby Airport" + }, + { + "id": "2322", + "ident": "EFKM", + "type": "small_airport", + "name": "Kemijarvi Airport", + "latitude_deg": "66.712898", + "longitude_deg": "27.156799", + "elevation_ft": "692", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-10", + "scheduled_service": "no", + "gps_code": "EFKM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kemij%C3%A4rvi_Airfield" + }, + { + "id": "27255", + "ident": "EFKN", + "type": "small_airport", + "name": "Kannus Airfield", + "latitude_deg": "63.920601", + "longitude_deg": "24.0867", + "elevation_ft": "338", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-07", + "municipality": "Kannus", + "scheduled_service": "no", + "gps_code": "EFKN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kannus_Airfield" + }, + { + "id": "2323", + "ident": "EFKO", + "type": "small_airport", + "name": "Kalajoki Airfield", + "latitude_deg": "64.2286", + "longitude_deg": "23.826401", + "elevation_ft": "43", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-14", + "municipality": "Kalajoki", + "scheduled_service": "no", + "gps_code": "EFKO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kalajoki_Airfield" + }, + { + "id": "27261", + "ident": "EFKR", + "type": "small_airport", + "name": "Kärsämäki Airport", + "latitude_deg": "63.989201", + "longitude_deg": "25.743601", + "elevation_ft": "348", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-14", + "municipality": "Kärsämäki", + "scheduled_service": "no", + "gps_code": "EFKR", + "wikipedia_link": "https://en.wikipedia.org/wiki/K%C3%A4rs%C3%A4m%C3%A4ki_Airfield" + }, + { + "id": "2324", + "ident": "EFKS", + "type": "medium_airport", + "name": "Kuusamo Airport", + "latitude_deg": "65.987602", + "longitude_deg": "29.239401", + "elevation_ft": "866", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-14", + "municipality": "Kuusamo", + "scheduled_service": "yes", + "gps_code": "EFKS", + "iata_code": "KAO", + "home_link": "http://www.finavia.fi/en/kuusamo/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kuusamo_Airport" + }, + { + "id": "2325", + "ident": "EFKT", + "type": "medium_airport", + "name": "Kittilä Airport", + "latitude_deg": "67.700996398926", + "longitude_deg": "24.846799850464", + "elevation_ft": "644", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-10", + "municipality": "Kittilä", + "scheduled_service": "yes", + "gps_code": "EFKT", + "iata_code": "KTT", + "home_link": "http://www.finavia.fi/en/kittila/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kittil%C3%A4_Airport" + }, + { + "id": "2326", + "ident": "EFKU", + "type": "medium_airport", + "name": "Kuopio Airport", + "latitude_deg": "63.007099", + "longitude_deg": "27.7978", + "elevation_ft": "323", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-15", + "municipality": "Kuopio / Siilinjärvi", + "scheduled_service": "yes", + "gps_code": "EFKU", + "iata_code": "KUO", + "home_link": "https://www.finavia.fi/en/kuopio/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kuopio_Airport" + }, + { + "id": "27257", + "ident": "EFKV", + "type": "small_airport", + "name": "Kivijärvi Airfield", + "latitude_deg": "63.125301", + "longitude_deg": "25.124201", + "elevation_ft": "502", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-07", + "scheduled_service": "no", + "gps_code": "EFKV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kivij%C3%A4rvi_Airfield" + }, + { + "id": "27260", + "ident": "EFKY", + "type": "small_airport", + "name": "Kymi Airfield", + "latitude_deg": "60.5714", + "longitude_deg": "26.896099", + "elevation_ft": "223", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-09", + "municipality": "Peippola", + "scheduled_service": "no", + "gps_code": "EFKY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kymi_Airfield" + }, + { + "id": "2327", + "ident": "EFLA", + "type": "small_airport", + "name": "Lahti Vesivehmaa Airport", + "latitude_deg": "61.144199", + "longitude_deg": "25.693501", + "elevation_ft": "502", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-16", + "municipality": "Lahti", + "scheduled_service": "no", + "gps_code": "EFLA" + }, + { + "id": "27262", + "ident": "EFLL", + "type": "small_airport", + "name": "Lapinlahti Airfield", + "latitude_deg": "63.399399", + "longitude_deg": "27.478901", + "elevation_ft": "328", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-15", + "municipality": "Lapinlahti", + "scheduled_service": "no", + "gps_code": "EFLL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lapinlahti_Airfield" + }, + { + "id": "2328", + "ident": "EFLN", + "type": "small_airport", + "name": "Lieksa Nurmes Airfield", + "latitude_deg": "63.511902", + "longitude_deg": "29.6292", + "elevation_ft": "374", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-13", + "municipality": "Nurmes", + "scheduled_service": "no", + "gps_code": "EFLN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lieksa-Nurmes_Airfield" + }, + { + "id": "2329", + "ident": "EFLP", + "type": "medium_airport", + "name": "Lappeenranta Airport", + "latitude_deg": "61.044601", + "longitude_deg": "28.144743", + "elevation_ft": "349", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-02", + "municipality": "Lappeenranta", + "scheduled_service": "yes", + "gps_code": "EFLP", + "iata_code": "LPP", + "home_link": "https://lppairport.fi/en", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lappeenranta_Airport" + }, + { + "id": "44033", + "ident": "EFLR", + "type": "heliport", + "name": "Lapland Central Hospital Heliport", + "latitude_deg": "66.491914", + "longitude_deg": "25.778312", + "elevation_ft": "341", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-10", + "municipality": "Rovaniemi", + "scheduled_service": "no", + "gps_code": "EFLR", + "keywords": "Lapin keskussairaala" + }, + { + "id": "2330", + "ident": "EFMA", + "type": "medium_airport", + "name": "Mariehamn Airport", + "latitude_deg": "60.1222", + "longitude_deg": "19.898199", + "elevation_ft": "17", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-01", + "municipality": "Mariehamn", + "scheduled_service": "yes", + "gps_code": "EFMA", + "iata_code": "MHQ", + "home_link": "http://www.finavia.fi/en/mariehamn/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mariehamn_Airport" + }, + { + "id": "2331", + "ident": "EFME", + "type": "small_airport", + "name": "Menkijärvi Airfield", + "latitude_deg": "62.946701", + "longitude_deg": "23.5189", + "elevation_ft": "331", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-03", + "municipality": "Alajärvi", + "scheduled_service": "no", + "gps_code": "EFME" + }, + { + "id": "2332", + "ident": "EFMI", + "type": "medium_airport", + "name": "Mikkeli Airport", + "latitude_deg": "61.6866", + "longitude_deg": "27.201799", + "elevation_ft": "329", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-04", + "municipality": "Mikkeli", + "scheduled_service": "no", + "gps_code": "EFMI", + "iata_code": "MIK", + "home_link": "http://www.mikkelinlentoasema.fi/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mikkeli_Airport" + }, + { + "id": "310896", + "ident": "EFML", + "type": "small_airport", + "name": "Ii Airfield", + "latitude_deg": "65.301144", + "longitude_deg": "25.416226", + "elevation_ft": "40", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-14", + "municipality": "Ii", + "scheduled_service": "no", + "gps_code": "EFML", + "home_link": "http://www.ilmailukerho.fi/Uusi_sivusto_2012/Etusivu.html" + }, + { + "id": "27263", + "ident": "EFMN", + "type": "small_airport", + "name": "Mäntsälä Airport", + "latitude_deg": "60.572498", + "longitude_deg": "25.5089", + "elevation_ft": "135", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-18", + "municipality": "Mäntsälä", + "scheduled_service": "no", + "gps_code": "EFMN", + "wikipedia_link": "https://en.wikipedia.org/wiki/M%C3%A4nts%C3%A4l%C3%A4_Airfield" + }, + { + "id": "29100", + "ident": "EFMP", + "type": "small_airport", + "name": "Martiniiskonpalo Airport", + "latitude_deg": "68.6603012084961", + "longitude_deg": "25.702899932861328", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-10", + "scheduled_service": "no", + "gps_code": "EFMP" + }, + { + "id": "27270", + "ident": "EFNS", + "type": "small_airport", + "name": "Savikko Airfield", + "latitude_deg": "60.52", + "longitude_deg": "24.831699", + "elevation_ft": "233", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-18", + "municipality": "Nurmijärvi", + "scheduled_service": "no", + "gps_code": "EFNS" + }, + { + "id": "2333", + "ident": "EFNU", + "type": "small_airport", + "name": "Nummela Airport", + "latitude_deg": "60.3339", + "longitude_deg": "24.2964", + "elevation_ft": "367", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-18", + "municipality": "Vihti / Nummela", + "scheduled_service": "no", + "gps_code": "EFNU", + "home_link": "https://efnu.fi" + }, + { + "id": "27264", + "ident": "EFOP", + "type": "small_airport", + "name": "Oripää Airfield", + "latitude_deg": "60.8764", + "longitude_deg": "22.744699", + "elevation_ft": "331", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-19", + "municipality": "Oripää", + "scheduled_service": "no", + "gps_code": "EFOP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orip%C3%A4%C3%A4_Airfield" + }, + { + "id": "2334", + "ident": "EFOU", + "type": "medium_airport", + "name": "Oulu Airport", + "latitude_deg": "64.930099", + "longitude_deg": "25.354601", + "elevation_ft": "47", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-14", + "municipality": "Oulu / Oulunsalo", + "scheduled_service": "yes", + "gps_code": "EFOU", + "iata_code": "OUL", + "home_link": "https://www.finavia.fi/en/oulu/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oulu_Airport" + }, + { + "id": "27266", + "ident": "EFPA", + "type": "small_airport", + "name": "Pokka Airport", + "latitude_deg": "68.15022277832031", + "longitude_deg": "25.82937240600586", + "elevation_ft": "853", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-10", + "scheduled_service": "no", + "gps_code": "EFPA" + }, + { + "id": "44029", + "ident": "EFPE", + "type": "heliport", + "name": "Peijaksen Hospital Heliport", + "latitude_deg": "60.331112", + "longitude_deg": "25.060833", + "elevation_ft": "171", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-18", + "municipality": "Helsinki", + "scheduled_service": "no", + "gps_code": "EFPE" + }, + { + "id": "30308", + "ident": "EFPH", + "type": "small_airport", + "name": "Pyhäselkä Airport", + "latitude_deg": "62.464699", + "longitude_deg": "30.035299", + "elevation_ft": "322", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-13", + "municipality": "Joensuu", + "scheduled_service": "no", + "gps_code": "EFPH" + }, + { + "id": "2335", + "ident": "EFPI", + "type": "small_airport", + "name": "Piikajarvi Airport", + "latitude_deg": "61.245602", + "longitude_deg": "22.193399", + "elevation_ft": "148", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-17", + "municipality": "Kokemäki", + "scheduled_service": "no", + "gps_code": "EFPI" + }, + { + "id": "44030", + "ident": "EFPJ", + "type": "heliport", + "name": "Kuopio University Hospital Heliport", + "latitude_deg": "62.897499", + "longitude_deg": "27.648333", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-15", + "municipality": "Kuopio", + "scheduled_service": "no", + "gps_code": "EFPJ" + }, + { + "id": "27265", + "ident": "EFPK", + "type": "small_airport", + "name": "Pieksämäki Airfield", + "latitude_deg": "62.264702", + "longitude_deg": "27.0028", + "elevation_ft": "390", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-04", + "municipality": "Pieksämäki", + "scheduled_service": "no", + "gps_code": "EFPK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pieks%C3%A4m%C3%A4ki_Airfield" + }, + { + "id": "44028", + "ident": "EFPL", + "type": "heliport", + "name": "Päijät-Hämeen Central Hospital Heliport", + "latitude_deg": "60.99177", + "longitude_deg": "25.569456", + "elevation_ft": "561", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-16", + "municipality": "Lahti", + "scheduled_service": "no", + "gps_code": "EFPL" + }, + { + "id": "27267", + "ident": "EFPN", + "type": "small_airport", + "name": "Punkaharju Airfield", + "latitude_deg": "61.728901", + "longitude_deg": "29.3936", + "elevation_ft": "253", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-04", + "municipality": "Savonlinna", + "scheduled_service": "no", + "gps_code": "EFPN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Punkaharju_Airfield" + }, + { + "id": "2336", + "ident": "EFPO", + "type": "medium_airport", + "name": "Pori Airport", + "latitude_deg": "61.4617", + "longitude_deg": "21.799999", + "elevation_ft": "44", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-17", + "municipality": "Pori", + "scheduled_service": "yes", + "gps_code": "EFPO", + "iata_code": "POR", + "home_link": "http://www.finavia.fi/en/pori/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pori_Airport" + }, + { + "id": "334942", + "ident": "EFPR", + "type": "medium_airport", + "name": "Helsinki East-Redstone Airport", + "latitude_deg": "60.479167", + "longitude_deg": "26.593889", + "elevation_ft": "72", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-09", + "municipality": "Helsinki (Pyhtää)", + "scheduled_service": "no", + "gps_code": "EFPR", + "home_link": "https://helsinkieast.aero/efpr" + }, + { + "id": "44036", + "ident": "EFPT", + "type": "heliport", + "name": "Tampere University Hospital Heliport", + "latitude_deg": "61.50639", + "longitude_deg": "23.8125", + "elevation_ft": "436", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-11", + "municipality": "Tampere", + "scheduled_service": "no", + "gps_code": "EFPT" + }, + { + "id": "2337", + "ident": "EFPU", + "type": "small_airport", + "name": "Pudasjärvi Airfield", + "latitude_deg": "65.402199", + "longitude_deg": "26.946899", + "elevation_ft": "397", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-14", + "municipality": "Pudasjärvi", + "scheduled_service": "no", + "gps_code": "EFPU", + "home_link": "http://www.pudasjarvi.fi/vapaa-ajan-palvelut/pudasjarven-ilmailukeskus", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pudasj%C3%A4rvi_Airfield" + }, + { + "id": "2338", + "ident": "EFPY", + "type": "small_airport", + "name": "Pyhäsalmi Airfield", + "latitude_deg": "63.731899", + "longitude_deg": "25.9263", + "elevation_ft": "528", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-14", + "municipality": "Pyhäjärvi", + "scheduled_service": "no", + "gps_code": "EFPY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pyh%C3%A4salmi_Airfield" + }, + { + "id": "27269", + "ident": "EFRA", + "type": "small_airport", + "name": "Rautavaara Airfield", + "latitude_deg": "63.424198", + "longitude_deg": "28.124201", + "elevation_ft": "476", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-15", + "municipality": "Rautavaara", + "scheduled_service": "no", + "gps_code": "EFRA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rautavaara_Airfield" + }, + { + "id": "2339", + "ident": "EFRH", + "type": "small_airport", + "name": "Raahe Pattijoki Airfield", + "latitude_deg": "64.688103", + "longitude_deg": "24.695801", + "elevation_ft": "118", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-14", + "municipality": "Raahe", + "scheduled_service": "no", + "gps_code": "EFRH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Raahe-Pattijoki_Airfield" + }, + { + "id": "2340", + "ident": "EFRN", + "type": "small_airport", + "name": "Rantasalmi Airfield", + "latitude_deg": "62.065498", + "longitude_deg": "28.356501", + "elevation_ft": "292", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-04", + "municipality": "Rantasalmi", + "scheduled_service": "no", + "gps_code": "EFRN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rantasalmi_Airfield" + }, + { + "id": "2341", + "ident": "EFRO", + "type": "medium_airport", + "name": "Rovaniemi Airport", + "latitude_deg": "66.564796447754", + "longitude_deg": "25.830400466919", + "elevation_ft": "642", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-10", + "municipality": "Rovaniemi", + "scheduled_service": "yes", + "gps_code": "EFRO", + "iata_code": "RVN", + "home_link": "http://www.finavia.fi/en/rovaniemi/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rovaniemi_Airport" + }, + { + "id": "27268", + "ident": "EFRU", + "type": "small_airport", + "name": "Ranua Airfield", + "latitude_deg": "65.973099", + "longitude_deg": "26.365299", + "elevation_ft": "541", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-10", + "scheduled_service": "no", + "gps_code": "EFRU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ranua_Airfield" + }, + { + "id": "27256", + "ident": "EFRV", + "type": "small_airport", + "name": "Kiuruvesi Airfield", + "latitude_deg": "63.705601", + "longitude_deg": "26.6164", + "elevation_ft": "515", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-15", + "municipality": "Kiuruvesi", + "scheduled_service": "no", + "gps_code": "EFRV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kiuruvesi_Airfield" + }, + { + "id": "2342", + "ident": "EFRY", + "type": "small_airport", + "name": "Räyskälä Airfield", + "latitude_deg": "60.744701", + "longitude_deg": "24.1078", + "elevation_ft": "407", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-06", + "municipality": "Loppi", + "scheduled_service": "no", + "gps_code": "EFRY", + "wikipedia_link": "https://en.wikipedia.org/wiki/R%C3%A4ysk%C3%A4l%C3%A4_Airfield" + }, + { + "id": "2343", + "ident": "EFSA", + "type": "medium_airport", + "name": "Savonlinna Airport", + "latitude_deg": "61.9431", + "longitude_deg": "28.945101", + "elevation_ft": "311", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-04", + "municipality": "Savonlinna", + "scheduled_service": "yes", + "gps_code": "EFSA", + "iata_code": "SVL", + "home_link": "http://www.finavia.fi/en/savonlinna/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Savonlinna_Airport" + }, + { + "id": "2344", + "ident": "EFSE", + "type": "small_airport", + "name": "Selanpaa Airfield", + "latitude_deg": "61.062401", + "longitude_deg": "26.798901", + "elevation_ft": "417", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-09", + "municipality": "Kouvola", + "scheduled_service": "no", + "gps_code": "EFSE" + }, + { + "id": "2345", + "ident": "EFSI", + "type": "medium_airport", + "name": "Seinäjoki Airport", + "latitude_deg": "62.692101", + "longitude_deg": "22.8323", + "elevation_ft": "302", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-03", + "municipality": "Seinäjoki / Ilmajoki", + "scheduled_service": "yes", + "gps_code": "EFSI", + "iata_code": "SJY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sein%C3%A4joki_Airport" + }, + { + "id": "30430", + "ident": "EFSJ", + "type": "closed", + "name": "Sonkajärvi-Jyrkkä Airfield", + "latitude_deg": "63.819401", + "longitude_deg": "27.7694", + "elevation_ft": "600", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-15", + "municipality": "Sonkajärvi", + "scheduled_service": "no", + "gps_code": "EFSJ", + "wikipedia_link": "https://fi.wikipedia.org/wiki/fi:Jyrk%C3%A4n%20lentokentt%C3%A4?uselang=en" + }, + { + "id": "2346", + "ident": "EFSO", + "type": "medium_airport", + "name": "Sodankyla Airport", + "latitude_deg": "67.3949966431", + "longitude_deg": "26.6191005707", + "elevation_ft": "602", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-10", + "municipality": "Sodankyla", + "scheduled_service": "no", + "gps_code": "EFSO", + "iata_code": "SOT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sodankyl%C3%A4_Airfield" + }, + { + "id": "27272", + "ident": "EFSU", + "type": "small_airport", + "name": "Suomussalmi Airfield", + "latitude_deg": "64.821899", + "longitude_deg": "28.7103", + "elevation_ft": "541", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-05", + "municipality": "Suomussalmi", + "scheduled_service": "no", + "gps_code": "EFSU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Suomussalmi_Airfield" + }, + { + "id": "27273", + "ident": "EFTO", + "type": "small_airport", + "name": "Torbacka Airfield", + "latitude_deg": "60.079201", + "longitude_deg": "24.172199", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-18", + "municipality": "Ingå", + "scheduled_service": "no", + "gps_code": "EFTO" + }, + { + "id": "2347", + "ident": "EFTP", + "type": "medium_airport", + "name": "Tampere-Pirkkala Airport", + "latitude_deg": "61.414101", + "longitude_deg": "23.604401", + "elevation_ft": "390", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-11", + "municipality": "Tampere / Pirkkala", + "scheduled_service": "yes", + "gps_code": "EFTP", + "iata_code": "TMP", + "home_link": "https://www.finavia.fi/en/tampere-pirkkala/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tampere-Pirkkala_Airport" + }, + { + "id": "2348", + "ident": "EFTS", + "type": "closed", + "name": "Teisko Airfield", + "latitude_deg": "61.7733", + "longitude_deg": "24.027", + "elevation_ft": "515", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-11", + "municipality": "Tampere", + "scheduled_service": "no", + "gps_code": "EFTS" + }, + { + "id": "2349", + "ident": "EFTU", + "type": "medium_airport", + "name": "Turku Airport", + "latitude_deg": "60.514099", + "longitude_deg": "22.2628", + "elevation_ft": "161", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-19", + "municipality": "Turku", + "scheduled_service": "yes", + "gps_code": "EFTU", + "iata_code": "TKU", + "home_link": "https://www.finavia.fi/en/turku/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Turku_Airport" + }, + { + "id": "44037", + "ident": "EFTV", + "type": "heliport", + "name": "Turku University Central Hospital Heliport", + "latitude_deg": "60.451111", + "longitude_deg": "22.290277", + "elevation_ft": "75", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-19", + "municipality": "Turku", + "scheduled_service": "no", + "gps_code": "EFTV" + }, + { + "id": "2350", + "ident": "EFUT", + "type": "medium_airport", + "name": "Utti Air Base", + "latitude_deg": "60.8964", + "longitude_deg": "26.9384", + "elevation_ft": "339", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-09", + "municipality": "Utti / Valkeala", + "scheduled_service": "no", + "gps_code": "EFUT", + "iata_code": "UTI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Utti_Airport" + }, + { + "id": "2351", + "ident": "EFVA", + "type": "medium_airport", + "name": "Vaasa Airport", + "latitude_deg": "63.050701", + "longitude_deg": "21.762199", + "elevation_ft": "19", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-12", + "municipality": "Vaasa", + "scheduled_service": "yes", + "gps_code": "EFVA", + "iata_code": "VAA", + "home_link": "http://www.finavia.fi/en/vaasa/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vaasa_Airport" + }, + { + "id": "30532", + "ident": "EFVI", + "type": "small_airport", + "name": "Viitasaari Airfield", + "latitude_deg": "63.122501", + "longitude_deg": "25.816099", + "elevation_ft": "361", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-08", + "municipality": "Viitasaari", + "scheduled_service": "no", + "gps_code": "EFVI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Viitasaari_Airfield" + }, + { + "id": "27274", + "ident": "EFVL", + "type": "small_airport", + "name": "Vaala Airfield", + "latitude_deg": "64.5019", + "longitude_deg": "26.76", + "elevation_ft": "443", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-14", + "municipality": "Vaala", + "scheduled_service": "no", + "gps_code": "EFVL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vaala_Airfield" + }, + { + "id": "27275", + "ident": "EFVP", + "type": "small_airport", + "name": "Vampula Airfield", + "latitude_deg": "61.0397", + "longitude_deg": "22.5917", + "elevation_ft": "295", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-17", + "municipality": "Huittinen", + "scheduled_service": "no", + "gps_code": "EFVP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vampula_Airfield" + }, + { + "id": "2352", + "ident": "EFVR", + "type": "medium_airport", + "name": "Varkaus Airport", + "latitude_deg": "62.171101", + "longitude_deg": "27.868601", + "elevation_ft": "286", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-04", + "municipality": "Varkaus / Joroinen", + "scheduled_service": "yes", + "gps_code": "EFVR", + "iata_code": "VRK", + "home_link": "http://www.finavia.fi/en/varkaus/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Varkaus_Airport" + }, + { + "id": "27271", + "ident": "EFVT", + "type": "small_airport", + "name": "Sulkaharju Airfield", + "latitude_deg": "63.3978", + "longitude_deg": "24.0306", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-07", + "municipality": "Veteli", + "scheduled_service": "no", + "gps_code": "EFVT" + }, + { + "id": "29101", + "ident": "EFVU", + "type": "small_airport", + "name": "Vuotso Airfield", + "latitude_deg": "68.087196", + "longitude_deg": "27.123899", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-10", + "municipality": "Vuotso", + "scheduled_service": "no", + "gps_code": "EFVU" + }, + { + "id": "27276", + "ident": "EFWB", + "type": "small_airport", + "name": "Wredeby Airfield", + "latitude_deg": "60.663601", + "longitude_deg": "26.7458", + "elevation_ft": "82", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-09", + "municipality": "Anjalankoski", + "scheduled_service": "no", + "gps_code": "EFWB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wredeby_Airfield" + }, + { + "id": "2353", + "ident": "EFYL", + "type": "medium_airport", + "name": "Ylivieska Airfield", + "latitude_deg": "64.054722", + "longitude_deg": "24.725278", + "elevation_ft": "252", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-14", + "scheduled_service": "no", + "gps_code": "EFYL", + "iata_code": "YLI", + "home_link": "http://www.ylivieska.fi/alltypes.asp?d_type=5&menu_id=17643&menupath=16922,17643", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ylivieska_Airfield" + }, + { + "id": "42467", + "ident": "EG-0001", + "type": "small_airport", + "name": "Al Rahmaniyah Air Base", + "latitude_deg": "31.043742", + "longitude_deg": "30.664859", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-BH", + "municipality": "Shubrakhit", + "scheduled_service": "no", + "gps_code": "HE0P" + }, + { + "id": "42468", + "ident": "EG-0002", + "type": "small_airport", + "name": "El Sheikh Gebeil Airport", + "latitude_deg": "30.594704", + "longitude_deg": "31.66493", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-SHR", + "municipality": "Abu Hammad", + "scheduled_service": "no", + "keywords": "Az Zaqaziq" + }, + { + "id": "42469", + "ident": "EG-0003", + "type": "medium_airport", + "name": "Bilbeis 2 Airfield", + "latitude_deg": "30.42060089111328", + "longitude_deg": "31.67889976501465", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-SHR", + "municipality": "Bilbeis", + "scheduled_service": "no", + "keywords": "Bilbays, Belbeis" + }, + { + "id": "42470", + "ident": "EG-0004", + "type": "small_airport", + "name": "El Hassana Well Airport", + "latitude_deg": "30.194401", + "longitude_deg": "33.4128", + "elevation_ft": "1296", + "continent": "AS", + "iso_country": "EG", + "iso_region": "EG-SIN", + "municipality": "El Hassana", + "scheduled_service": "no" + }, + { + "id": "340212", + "ident": "EG-0005", + "type": "small_airport", + "name": "Difarsuwar Airfield", + "latitude_deg": "30.423772", + "longitude_deg": "32.336369", + "elevation_ft": "30", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-IS", + "municipality": "Ismailia", + "scheduled_service": "no" + }, + { + "id": "42472", + "ident": "EG-0006", + "type": "small_airport", + "name": "Fa' id Air Base", + "latitude_deg": "30.334324", + "longitude_deg": "32.275804", + "elevation_ft": "52", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-IS", + "municipality": "Fa' id", + "scheduled_service": "no" + }, + { + "id": "340213", + "ident": "EG-0007", + "type": "heliport", + "name": "Al Omraneyah Heliport", + "latitude_deg": "29.34741", + "longitude_deg": "31.29848", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-GZ", + "municipality": "Al Omraneyah", + "scheduled_service": "no" + }, + { + "id": "340214", + "ident": "EG-0008", + "type": "heliport", + "name": "Bani Sweif University Heliport", + "latitude_deg": "29.0347", + "longitude_deg": "31.11884", + "elevation_ft": "157", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-BNS", + "municipality": "New Bani Sweif", + "scheduled_service": "no" + }, + { + "id": "340215", + "ident": "EG-0009", + "type": "heliport", + "name": "New Bani Sweif Heliport", + "latitude_deg": "29.00758", + "longitude_deg": "31.15666", + "elevation_ft": "262", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-BNS", + "municipality": "New Bani Sweif", + "scheduled_service": "no" + }, + { + "id": "340216", + "ident": "EG-0010", + "type": "closed", + "name": "Ghareb Cape Airport", + "latitude_deg": "28.310918", + "longitude_deg": "33.117342", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-BA", + "municipality": "Ghareb Cape", + "scheduled_service": "no" + }, + { + "id": "341951", + "ident": "EG-0011", + "type": "heliport", + "name": "El Arish Military Hospital Helipad", + "latitude_deg": "31.144695", + "longitude_deg": "33.827079", + "elevation_ft": "52", + "continent": "AS", + "iso_country": "EG", + "iso_region": "EG-SIN", + "municipality": "El Arish", + "scheduled_service": "no" + }, + { + "id": "344050", + "ident": "EG-0012", + "type": "heliport", + "name": "Dar Es Salam Heliport", + "latitude_deg": "26.14304", + "longitude_deg": "32.16637", + "elevation_ft": "203", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-BA", + "municipality": "Dar Es Salam", + "scheduled_service": "no" + }, + { + "id": "344051", + "ident": "EG-0013", + "type": "heliport", + "name": "Maadi Military Hospital Heliport", + "latitude_deg": "29.96947", + "longitude_deg": "31.24625", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-C", + "municipality": "Maadi", + "scheduled_service": "no", + "local_code": "HEAJ" + }, + { + "id": "349364", + "ident": "EG-0014", + "type": "heliport", + "name": "Aluminium Heliport", + "latitude_deg": "26.01157", + "longitude_deg": "32.31584", + "elevation_ft": "292", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-KN", + "municipality": "Nag Hammadi", + "scheduled_service": "no" + }, + { + "id": "349365", + "ident": "EG-0015", + "type": "heliport", + "name": "El Maragha Heliport", + "latitude_deg": "26.71641", + "longitude_deg": "31.58357", + "elevation_ft": "194", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-SHG", + "municipality": "El Maragha", + "scheduled_service": "no" + }, + { + "id": "349402", + "ident": "EG-0016", + "type": "heliport", + "name": "Sheikh Zayed Canal Lift Station Heliport", + "latitude_deg": "22.81773", + "longitude_deg": "31.46269", + "elevation_ft": "666", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-WAD", + "municipality": "Abu Simbel", + "scheduled_service": "no" + }, + { + "id": "349405", + "ident": "EG-0017", + "type": "small_airport", + "name": "Al Battikh Airfield", + "latitude_deg": "31.34512", + "longitude_deg": "30.97628", + "elevation_ft": "3", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-KFS", + "municipality": "El-Reyad", + "scheduled_service": "no" + }, + { + "id": "351446", + "ident": "EG-0018", + "type": "heliport", + "name": "Borj El Arab Stadium Heliport", + "latitude_deg": "30.99648", + "longitude_deg": "29.72718", + "elevation_ft": "85", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-ALX", + "municipality": "Iking Maryut", + "scheduled_service": "no" + }, + { + "id": "351447", + "ident": "EG-0019", + "type": "heliport", + "name": "Kafr el-Sheikh Heliport", + "latitude_deg": "31.09911", + "longitude_deg": "30.95668", + "elevation_ft": "16", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-KFS", + "municipality": "Kafr el-Sheikh", + "scheduled_service": "no" + }, + { + "id": "351448", + "ident": "EG-0020", + "type": "heliport", + "name": "Saudi Arabian Embassy Helipad", + "latitude_deg": "30.03155", + "longitude_deg": "31.21808", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-GZ", + "municipality": "Cairo", + "scheduled_service": "no" + }, + { + "id": "351595", + "ident": "EG-0021", + "type": "closed", + "name": "Suez Airport", + "latitude_deg": "30.060932", + "longitude_deg": "32.539251", + "elevation_ft": "59", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-SUZ", + "municipality": "Al Ganayen", + "scheduled_service": "no" + }, + { + "id": "355364", + "ident": "EG-0022", + "type": "heliport", + "name": "Residential Helipads (3x)", + "latitude_deg": "27.032601", + "longitude_deg": "28.126566", + "elevation_ft": "295", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-WAD", + "municipality": "Farafa Oasis", + "scheduled_service": "no" + }, + { + "id": "355366", + "ident": "EG-0023", + "type": "heliport", + "name": "Helipads (4x) runway", + "latitude_deg": "27.056642", + "longitude_deg": "27.991662", + "elevation_ft": "249", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-WAD", + "municipality": "Farafa Oasis", + "scheduled_service": "no" + }, + { + "id": "430120", + "ident": "EG-0024", + "type": "heliport", + "name": "Toshka Pump Station Heliport", + "latitude_deg": "22.63762", + "longitude_deg": "31.85165", + "elevation_ft": "617", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-ASN", + "scheduled_service": "no" + }, + { + "id": "430121", + "ident": "EG-0025", + "type": "heliport", + "name": "Temple of Derr Heliport", + "latitude_deg": "22.75142", + "longitude_deg": "32.26982", + "elevation_ft": "702", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-ASN", + "scheduled_service": "no" + }, + { + "id": "430122", + "ident": "EG-0026", + "type": "heliport", + "name": "Sadat Resthouse Heliport", + "latitude_deg": "23.25856", + "longitude_deg": "32.71406", + "elevation_ft": "663", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-ASN", + "scheduled_service": "no" + }, + { + "id": "30660", + "ident": "EG-AUE", + "type": "small_airport", + "name": "Abu Rudes Airport", + "latitude_deg": "28.904764", + "longitude_deg": "33.193817", + "elevation_ft": "43", + "continent": "AS", + "iso_country": "EG", + "iso_region": "EG-JS", + "municipality": "Abu Rudes", + "scheduled_service": "no", + "iata_code": "AUE" + }, + { + "id": "307538", + "ident": "EG03", + "type": "small_airport", + "name": "Badminton Airfield", + "latitude_deg": "51.548417", + "longitude_deg": "-2.303181", + "elevation_ft": "495", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Badminton", + "scheduled_service": "no" + }, + { + "id": "307747", + "ident": "EG19", + "type": "small_airport", + "name": "Boon Hill Farm Airstrip", + "latitude_deg": "54.308086", + "longitude_deg": "-0.983105", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Fadmoor, Kirbymoorside", + "scheduled_service": "no" + }, + { + "id": "35134", + "ident": "EG34", + "type": "small_airport", + "name": "Ledbury Airfield", + "latitude_deg": "52.0019", + "longitude_deg": "-2.47416", + "elevation_ft": "250", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Ledbury", + "scheduled_service": "no", + "keywords": "Velcourt" + }, + { + "id": "308207", + "ident": "EG3L", + "type": "small_airport", + "name": "Milfield Glider Field", + "latitude_deg": "55.591636", + "longitude_deg": "-2.087231", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "gps_code": "EGEX" + }, + { + "id": "28473", + "ident": "EG64", + "type": "small_airport", + "name": "Rufforth West", + "latitude_deg": "53.94829", + "longitude_deg": "-1.185575", + "elevation_ft": "65", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "York (Rufforth)", + "scheduled_service": "no", + "gps_code": "EGYJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Rufforth", + "keywords": "UK11, RAF Rufforth" + }, + { + "id": "3074", + "ident": "EG73", + "type": "closed", + "name": "RNAS Fearn Air Base", + "latitude_deg": "57.757594", + "longitude_deg": "-3.948184", + "elevation_ft": "25", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Tain, Ross", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RNAS_Fearn_(HMS_Owl)", + "keywords": "RNAS Fearn" + }, + { + "id": "3075", + "ident": "EG74", + "type": "small_airport", + "name": "Bruntingthorpe Airport", + "latitude_deg": "52.492972", + "longitude_deg": "-1.12509", + "elevation_ft": "467", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bruntingthorpe", + "scheduled_service": "no", + "home_link": "http://www.bruntingthorpe.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bruntingthorpe_Aerodrome", + "keywords": "RAF Bruntingthorpe" + }, + { + "id": "2385", + "ident": "EGAA", + "type": "large_airport", + "name": "Belfast International Airport", + "latitude_deg": "54.6575012207", + "longitude_deg": "-6.2158298492399995", + "elevation_ft": "268", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Belfast", + "scheduled_service": "yes", + "gps_code": "EGAA", + "iata_code": "BFS", + "home_link": "http://www.belfastairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Belfast_International_Airport", + "keywords": "Aldergrove, RAF Aldergrove" + }, + { + "id": "2386", + "ident": "EGAB", + "type": "medium_airport", + "name": "Enniskillen/St Angelo Airport", + "latitude_deg": "54.398899", + "longitude_deg": "-7.65167", + "elevation_ft": "155", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Enniskillen", + "scheduled_service": "no", + "gps_code": "EGAB", + "iata_code": "ENK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Enniskillen/St_Angelo_Airport" + }, + { + "id": "2387", + "ident": "EGAC", + "type": "medium_airport", + "name": "George Best Belfast City Airport", + "latitude_deg": "54.618099", + "longitude_deg": "-5.8725", + "elevation_ft": "15", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Belfast", + "scheduled_service": "yes", + "gps_code": "EGAC", + "iata_code": "BHD", + "home_link": "http://www.belfastcityairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/George_Best_Belfast_City_Airport" + }, + { + "id": "29105", + "ident": "EGAD", + "type": "small_airport", + "name": "Newtownards Airport", + "latitude_deg": "54.5811", + "longitude_deg": "-5.69194", + "elevation_ft": "9", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Newtownards", + "scheduled_service": "no", + "gps_code": "EGAD", + "keywords": "Ulster Flying Club" + }, + { + "id": "2388", + "ident": "EGAE", + "type": "medium_airport", + "name": "City of Derry Airport", + "latitude_deg": "55.04280090332031", + "longitude_deg": "-7.161109924316406", + "elevation_ft": "22", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Derry", + "scheduled_service": "yes", + "gps_code": "EGAE", + "iata_code": "LDY", + "home_link": "http://www.cityofderryairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/City_of_Derry_Airport", + "keywords": "Londonderry Eglinton Airport" + }, + { + "id": "307365", + "ident": "EGAH", + "type": "small_airport", + "name": "Halley Research Station", + "latitude_deg": "-75.567406", + "longitude_deg": "-25.516435", + "elevation_ft": "103", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Halley Research Station", + "scheduled_service": "no", + "gps_code": "EGAH", + "keywords": "Halley, Antarctica, British Antarctic Survey" + }, + { + "id": "29106", + "ident": "EGAL", + "type": "closed", + "name": "Langford Lodge Air Base", + "latitude_deg": "54.62310028", + "longitude_deg": "-6.30000019", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Belfast", + "scheduled_service": "no", + "gps_code": "EGAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Langford_Lodge", + "keywords": "RAF Langford Lodge, Martin-Baker" + }, + { + "id": "307366", + "ident": "EGAR", + "type": "small_airport", + "name": "Rothera Research Station", + "latitude_deg": "-67.5675", + "longitude_deg": "-68.127403", + "elevation_ft": "9", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Rothera Research Station", + "scheduled_service": "no", + "gps_code": "EGAR", + "home_link": "http://www.antarctica.ac.uk/living_and_working/research_stations/rothera/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rothera_Research_Station" + }, + { + "id": "324046", + "ident": "EGAT", + "type": "small_airport", + "name": "Sky Blu Airstrip", + "latitude_deg": "-74.849722", + "longitude_deg": "-71.566666", + "elevation_ft": "4740", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Sky Blu", + "scheduled_service": "no", + "gps_code": "EGAT", + "home_link": "https://www.bas.ac.uk/polar-operations/sites-and-facilities/facility/rothera/sky-blu/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sky_Blu" + }, + { + "id": "2389", + "ident": "EGBB", + "type": "large_airport", + "name": "Birmingham International Airport", + "latitude_deg": "52.453899383499994", + "longitude_deg": "-1.74802994728", + "elevation_ft": "327", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Birmingham", + "scheduled_service": "yes", + "gps_code": "EGBB", + "iata_code": "BHX", + "home_link": "http://www.bhx.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Birmingham_International_Airport_(United_Kingdom)" + }, + { + "id": "29107", + "ident": "EGBC", + "type": "heliport", + "name": "Cheltenham Racecourse Heliport", + "latitude_deg": "51.925626", + "longitude_deg": "-2.054351", + "elevation_ft": "213", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Cheltenham", + "scheduled_service": "no", + "gps_code": "EGBC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cheltenham_Racecourse_Heliport" + }, + { + "id": "29108", + "ident": "EGBD", + "type": "small_airport", + "name": "Derby Airfield", + "latitude_deg": "52.8596992493", + "longitude_deg": "-1.61749994755", + "elevation_ft": "175", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Derby", + "scheduled_service": "no", + "gps_code": "EGBD", + "home_link": "http://www.derbyaeroclub.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Derby_Airfield" + }, + { + "id": "2390", + "ident": "EGBE", + "type": "medium_airport", + "name": "Coventry Airport", + "latitude_deg": "52.3697013855", + "longitude_deg": "-1.4797199964499999", + "elevation_ft": "267", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Coventry", + "scheduled_service": "no", + "gps_code": "EGBE", + "iata_code": "CVT", + "home_link": "http://www.coventryairport.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coventry_Airport", + "keywords": "RAF Baginton" + }, + { + "id": "307357", + "ident": "EGBF", + "type": "small_airport", + "name": "Bedford Aerodrome", + "latitude_deg": "52.2325", + "longitude_deg": "-0.4455556", + "elevation_ft": "270", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bedford", + "scheduled_service": "no", + "gps_code": "EGBF", + "home_link": "http://www.bedfordaerodrome.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bedford_Aerodrome", + "keywords": "RAE Bedford,EGVW" + }, + { + "id": "2391", + "ident": "EGBG", + "type": "small_airport", + "name": "Leicester Airport", + "latitude_deg": "52.6077995300293", + "longitude_deg": "-1.03193998336792", + "elevation_ft": "469", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Leicester", + "scheduled_service": "no", + "gps_code": "EGBG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leicester_Airport" + }, + { + "id": "2392", + "ident": "EGBJ", + "type": "medium_airport", + "name": "Gloucestershire Airport", + "latitude_deg": "51.89419937133789", + "longitude_deg": "-2.167220115661621", + "elevation_ft": "101", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Staverton", + "scheduled_service": "no", + "gps_code": "EGBJ", + "iata_code": "GLO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gloucestershire_Airport" + }, + { + "id": "29109", + "ident": "EGBK", + "type": "small_airport", + "name": "Sywell Aerodrome", + "latitude_deg": "52.305301666300004", + "longitude_deg": "-0.7930560112", + "elevation_ft": "429", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Northampton", + "scheduled_service": "no", + "gps_code": "EGBK", + "iata_code": "ORM", + "home_link": "http://www.sywellaerodrome.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sywell_Aerodrome" + }, + { + "id": "29110", + "ident": "EGBL", + "type": "small_airport", + "name": "Long Marston Airfield", + "latitude_deg": "52.14030075", + "longitude_deg": "-1.75361001", + "elevation_ft": "154", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Long Marston", + "scheduled_service": "no", + "gps_code": "EGBL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Long_Marston_Airfield", + "keywords": "RAF Long Marston" + }, + { + "id": "29111", + "ident": "EGBM", + "type": "small_airport", + "name": "Tatenhill Airfield", + "latitude_deg": "52.814701080300004", + "longitude_deg": "-1.76110994816", + "elevation_ft": "439", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Burton upon Trent", + "scheduled_service": "no", + "gps_code": "EGBM", + "home_link": "http://www.tatenhill.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tatenhill_Airfield", + "keywords": "RAF Tatenhill" + }, + { + "id": "2393", + "ident": "EGBN", + "type": "medium_airport", + "name": "Nottingham Airport", + "latitude_deg": "52.919998", + "longitude_deg": "-1.07917", + "elevation_ft": "138", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Nottingham", + "scheduled_service": "no", + "gps_code": "EGBN", + "iata_code": "NQT", + "home_link": "http://www.nottinghamairport.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nottingham_Airport" + }, + { + "id": "2394", + "ident": "EGBO", + "type": "small_airport", + "name": "Wolverhampton Halfpenny Green Airport", + "latitude_deg": "52.51750183105469", + "longitude_deg": "-2.2594399452209473", + "elevation_ft": "283", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Wolverhampton", + "scheduled_service": "no", + "gps_code": "EGBO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wolverhampton_Airport", + "keywords": "Wolverhampton Business Airport, Bobbington Airport" + }, + { + "id": "2395", + "ident": "EGBP", + "type": "small_airport", + "name": "Cotswold Airport", + "latitude_deg": "51.668095", + "longitude_deg": "-2.05694", + "elevation_ft": "433", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Kemble", + "scheduled_service": "no", + "gps_code": "EGBP", + "iata_code": "GBA", + "home_link": "http://www.cotswoldairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cotswold_Airport", + "keywords": "RAF Kemble, Kemble Airfield, Kemble Airport, Cotswold Airport" + }, + { + "id": "307540", + "ident": "EGBR", + "type": "small_airport", + "name": "Breighton Airfield", + "latitude_deg": "53.8024", + "longitude_deg": "-0.915964", + "elevation_ft": "163", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Breighton", + "scheduled_service": "no", + "gps_code": "EGBR", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Breighton" + }, + { + "id": "29112", + "ident": "EGBS", + "type": "small_airport", + "name": "Shobdon Aerodrome", + "latitude_deg": "52.2416992188", + "longitude_deg": "-2.8811099529299997", + "elevation_ft": "318", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Shobdon", + "scheduled_service": "no", + "gps_code": "EGBS", + "home_link": "http://www.aeroclub.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shobdon_Aerodrome", + "keywords": "Herefordshire Aero Club" + }, + { + "id": "2396", + "ident": "EGBT", + "type": "small_airport", + "name": "Turweston Airport", + "latitude_deg": "52.0407981873", + "longitude_deg": "-1.09555995464", + "elevation_ft": "448", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Turweston", + "scheduled_service": "no", + "gps_code": "EGBT", + "home_link": "http://www.turwestonflight.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Turweston_Aerodrome", + "keywords": "RAF Turweston" + }, + { + "id": "29113", + "ident": "EGBV", + "type": "heliport", + "name": "Silverstone Heliport", + "latitude_deg": "52.0713996887207", + "longitude_deg": "-1.0166699886322021", + "elevation_ft": "502", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Buckingham", + "scheduled_service": "no", + "gps_code": "EGBV", + "home_link": "http://www.flysilverstone.co.uk//", + "wikipedia_link": "https://en.wikipedia.org/wiki/Silverstone_Heliport", + "keywords": "RAF Silverstone, British Grand Prix" + }, + { + "id": "2397", + "ident": "EGBW", + "type": "small_airport", + "name": "Wellesbourne Airfield", + "latitude_deg": "52.1922", + "longitude_deg": "-1.61444", + "elevation_ft": "159", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Stratford-on-Avon", + "scheduled_service": "no", + "gps_code": "EGBW", + "home_link": "http://www.wellesbourneairfield.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wellesbourne_Mountford_Airfield" + }, + { + "id": "314577", + "ident": "EGCA", + "type": "small_airport", + "name": "Coal Aston Airfield", + "latitude_deg": "53.304722", + "longitude_deg": "-1.430556", + "elevation_ft": "750", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "gps_code": "EGCA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coal_Aston_Airfield" + }, + { + "id": "29114", + "ident": "EGCB", + "type": "small_airport", + "name": "City Airport Manchester", + "latitude_deg": "53.471699", + "longitude_deg": "-2.38972", + "elevation_ft": "73", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Manchester / Salford", + "scheduled_service": "no", + "gps_code": "EGCB", + "home_link": "http://www.cityairportmanchester.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/City_Airport_Manchester", + "keywords": "Barton Aerodrome" + }, + { + "id": "2398", + "ident": "EGCC", + "type": "large_airport", + "name": "Manchester Airport", + "latitude_deg": "53.349375", + "longitude_deg": "-2.279521", + "elevation_ft": "257", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Manchester", + "scheduled_service": "yes", + "gps_code": "EGCC", + "iata_code": "MAN", + "home_link": "http://www.manchesterairport.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manchester_Airport", + "keywords": "Ringway Airport, RAF Ringway" + }, + { + "id": "2399", + "ident": "EGCD", + "type": "closed", + "name": "Manchester Woodford Airport", + "latitude_deg": "53.3381", + "longitude_deg": "-2.14889", + "elevation_ft": "295", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Manchester", + "scheduled_service": "no", + "gps_code": "EGCD", + "local_code": "XXB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Woodford_Aerodrome" + }, + { + "id": "307763", + "ident": "EGCE", + "type": "closed", + "name": "RAF Wrexham", + "latitude_deg": "53.066666666699994", + "longitude_deg": "-2.9502777777799998", + "elevation_ft": "250", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Wrexham", + "scheduled_service": "no", + "gps_code": "EGCE", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Wrexham", + "keywords": "Borras Airfield" + }, + { + "id": "29115", + "ident": "EGCF", + "type": "small_airport", + "name": "Sandtoft Airfield", + "latitude_deg": "53.559700012200004", + "longitude_deg": "-0.8583329916", + "elevation_ft": "11", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Belton", + "scheduled_service": "no", + "gps_code": "EGCF", + "home_link": "http://www.newsandtoftaviation.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sandtoft_Airfield" + }, + { + "id": "307765", + "ident": "EGCG", + "type": "small_airport", + "name": "Strubby Airfield", + "latitude_deg": "53.310826", + "longitude_deg": "0.172269", + "elevation_ft": "45", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Strubby", + "scheduled_service": "no", + "gps_code": "EGCG", + "home_link": "http://www.strubbyairfield.co.uk/" + }, + { + "id": "314580", + "ident": "EGCH", + "type": "heliport", + "name": "Holyhead Heliport", + "latitude_deg": "53.298848", + "longitude_deg": "-4.616862", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no", + "gps_code": "EGCH" + }, + { + "id": "29116", + "ident": "EGCJ", + "type": "small_airport", + "name": "Sherburn-In-Elmet Airfield", + "latitude_deg": "53.788458", + "longitude_deg": "-1.216877", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Selby", + "scheduled_service": "no", + "gps_code": "EGCJ", + "home_link": "http://www.sherburn-aero-club.org.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sherburn-in-Elmet_Airfield" + }, + { + "id": "2400", + "ident": "EGCK", + "type": "small_airport", + "name": "Caernarfon Airport", + "latitude_deg": "53.101819", + "longitude_deg": "-4.337614", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Caernarfon", + "scheduled_service": "no", + "gps_code": "EGCK", + "home_link": "http://www.caernarfonairport.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Caernarfon_Airport" + }, + { + "id": "29117", + "ident": "EGCL", + "type": "small_airport", + "name": "Fenland Airfield", + "latitude_deg": "52.739200592", + "longitude_deg": "-0.0297219995409", + "elevation_ft": "8", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Spalding", + "scheduled_service": "no", + "gps_code": "EGCL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fenland_Airfield" + }, + { + "id": "2401", + "ident": "EGCN", + "type": "medium_airport", + "name": "Robin Hood Doncaster Sheffield Airport", + "latitude_deg": "53.480538", + "longitude_deg": "-1.010656", + "elevation_ft": "55", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Doncaster", + "scheduled_service": "yes", + "gps_code": "EGCN", + "iata_code": "DSA", + "home_link": "http://www.robinhoodairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Robin_Hood_Airport_Doncaster_Sheffield", + "keywords": "RAF Finningley" + }, + { + "id": "29118", + "ident": "EGCO", + "type": "closed", + "name": "Birkdale Sands Beach Runway", + "latitude_deg": "53.645302", + "longitude_deg": "-3.02861", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Southport", + "scheduled_service": "no", + "gps_code": "EGCO" + }, + { + "id": "29119", + "ident": "EGCP", + "type": "closed", + "name": "RAF Thorne", + "latitude_deg": "53.6222", + "longitude_deg": "-0.928056", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Thorne", + "scheduled_service": "no", + "gps_code": "EGCP" + }, + { + "id": "332664", + "ident": "EGCR", + "type": "closed", + "name": "Croydon Airport", + "latitude_deg": "51.356389", + "longitude_deg": "-0.117222", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Croydon, Greater London", + "scheduled_service": "no", + "gps_code": "EGCR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Croydon_Airport" + }, + { + "id": "29120", + "ident": "EGCS", + "type": "small_airport", + "name": "Sturgate Airfield", + "latitude_deg": "53.381099700927734", + "longitude_deg": "-0.6852779984474182", + "elevation_ft": "58", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "EGCS", + "home_link": "http://www.lincolnaeroclub.co.uk/airfield.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sturgate_Airfield", + "keywords": "RAF Sturgate" + }, + { + "id": "29121", + "ident": "EGCT", + "type": "small_airport", + "name": "Tilstock Airfield", + "latitude_deg": "52.93080139160156", + "longitude_deg": "-2.646389961242676", + "elevation_ft": "301", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Whitchurch", + "scheduled_service": "no", + "gps_code": "EGCT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tilstock_Airfield", + "keywords": "RAF Whitchurch Heath, RAF Tilstock" + }, + { + "id": "29122", + "ident": "EGCV", + "type": "small_airport", + "name": "Sleap Airport", + "latitude_deg": "52.833900451699996", + "longitude_deg": "-2.77167010307", + "elevation_ft": "275", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Shrewsbury", + "scheduled_service": "no", + "gps_code": "EGCV", + "home_link": "http://www.shropshireaeroclub.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sleap_Airfield", + "keywords": "RAF Sleap" + }, + { + "id": "2402", + "ident": "EGCW", + "type": "small_airport", + "name": "Welshpool Airport", + "latitude_deg": "52.62860107421875", + "longitude_deg": "-3.153330087661743", + "elevation_ft": "233", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Welshpool", + "scheduled_service": "no", + "gps_code": "EGCW", + "home_link": "http://www.welshpoolairport.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Welshpool_Airport", + "keywords": "Mid-Wales" + }, + { + "id": "299895", + "ident": "EGDA", + "type": "closed", + "name": "RAF Brawdy", + "latitude_deg": "51.88375", + "longitude_deg": "-5.119972", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no", + "gps_code": "EGDA", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Brawdy" + }, + { + "id": "2403", + "ident": "EGDC", + "type": "medium_airport", + "name": "Royal Marines Base Chivenor Airport", + "latitude_deg": "51.08720016479492", + "longitude_deg": "-4.1503400802612305", + "elevation_ft": "27", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Chivenor", + "scheduled_service": "no", + "gps_code": "EGDC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Royal_Marines_Base_Chivenor" + }, + { + "id": "29701", + "ident": "EGDD", + "type": "small_airport", + "name": "Bicester Airfield", + "latitude_deg": "51.91669845581055", + "longitude_deg": "-1.1319400072097778", + "elevation_ft": "266", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bicester", + "scheduled_service": "no", + "gps_code": "EGDD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bicester_Airfield", + "keywords": "RAF Bicester" + }, + { + "id": "29123", + "ident": "EGDJ", + "type": "small_airport", + "name": "Upavon Aerodrome", + "latitude_deg": "51.2862014771", + "longitude_deg": "-1.7820199728", + "elevation_ft": "574", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Upavon", + "scheduled_service": "no", + "gps_code": "EGDJ", + "iata_code": "UPV", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Upavon", + "keywords": "RAF Upavon, Trenchard Lines, Salisbury Plain" + }, + { + "id": "2405", + "ident": "EGDL", + "type": "closed", + "name": "RAF Lyneham", + "latitude_deg": "51.5051", + "longitude_deg": "-1.99343", + "elevation_ft": "513", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lyneham", + "scheduled_service": "no", + "gps_code": "EGDL", + "iata_code": "LYE", + "home_link": "http://www.raf.mod.uk/raflyneham/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Lyneham" + }, + { + "id": "2406", + "ident": "EGDM", + "type": "medium_airport", + "name": "MoD Boscombe Down Airport", + "latitude_deg": "51.152199", + "longitude_deg": "-1.74741", + "elevation_ft": "407", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Amesbury", + "scheduled_service": "no", + "gps_code": "EGDM", + "wikipedia_link": "https://en.wikipedia.org/wiki/MoD_Boscombe_Down", + "keywords": "RAF Boscombe Down" + }, + { + "id": "29124", + "ident": "EGDN", + "type": "small_airport", + "name": "Netheravon Airfield", + "latitude_deg": "51.247200012200004", + "longitude_deg": "-1.7542500495900002", + "elevation_ft": "456", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Netheravon", + "scheduled_service": "no", + "gps_code": "EGDN" + }, + { + "id": "2407", + "ident": "EGDO", + "type": "small_airport", + "name": "RNAS Predannack Air Base", + "latitude_deg": "50.001202", + "longitude_deg": "-5.23083", + "elevation_ft": "295", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Predannack Wollas", + "scheduled_service": "no", + "gps_code": "EGDO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Predannack_Airfield" + }, + { + "id": "29125", + "ident": "EGDP", + "type": "heliport", + "name": "RNAS Portland Heliport", + "latitude_deg": "50.56809997558594", + "longitude_deg": "-2.4497199058532715", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "EGDP" + }, + { + "id": "2408", + "ident": "EGDR", + "type": "medium_airport", + "name": "RNAS Culdrose", + "latitude_deg": "50.08610153198242", + "longitude_deg": "-5.255710124969482", + "elevation_ft": "267", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Helston", + "scheduled_service": "no", + "gps_code": "EGDR", + "wikipedia_link": "https://en.wikipedia.org/wiki/RNAS_Culdrose_(HMS_Seahawk)" + }, + { + "id": "30571", + "ident": "EGDT", + "type": "closed", + "name": "Wroughton Airfield", + "latitude_deg": "51.5061", + "longitude_deg": "-1.80194", + "elevation_ft": "656", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Wroughton", + "scheduled_service": "no", + "gps_code": "EGDT", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Wroughton", + "keywords": "RAF Wroughton" + }, + { + "id": "307906", + "ident": "EGDV", + "type": "small_airport", + "name": "Hullavington Airfield", + "latitude_deg": "51.526732", + "longitude_deg": "-2.141555", + "elevation_ft": "327", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hullavington", + "scheduled_service": "no", + "gps_code": "EGDV", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Hullavington", + "keywords": "RAF Hullavington" + }, + { + "id": "30133", + "ident": "EGDW", + "type": "small_airport", + "name": "Merryfield RNAS Air Base", + "latitude_deg": "50.962502", + "longitude_deg": "-2.93556", + "elevation_ft": "151", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Ilminster", + "scheduled_service": "no", + "gps_code": "EGDW", + "wikipedia_link": "https://en.wikipedia.org/wiki/RNAS_Merryfield", + "keywords": "RAF Merryfield, RAF Isle Abbots, HMS Heron" + }, + { + "id": "2409", + "ident": "EGDX", + "type": "medium_airport", + "name": "St. Athan Airport", + "latitude_deg": "51.4048", + "longitude_deg": "-3.43575", + "elevation_ft": "163", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "St. Athan", + "scheduled_service": "no", + "gps_code": "EGSY", + "wikipedia_link": "https://en.wikipedia.org/wiki/MOD_St_Athan" + }, + { + "id": "2410", + "ident": "EGDY", + "type": "medium_airport", + "name": "RNAS Yeovilton", + "latitude_deg": "51.0093994140625", + "longitude_deg": "-2.638819932937622", + "elevation_ft": "75", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Yeovil", + "scheduled_service": "no", + "gps_code": "EGDY", + "iata_code": "YEO", + "wikipedia_link": "https://en.wikipedia.org/wiki/RNAS_Yeovilton_(HMS_Heron)" + }, + { + "id": "44410", + "ident": "EGEA", + "type": "heliport", + "name": "Culter Heliport", + "latitude_deg": "57.1198600605", + "longitude_deg": "-2.32116490602", + "elevation_ft": "300", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no", + "gps_code": "EGEA", + "home_link": "http://www.hjshelicopters.co.uk/Culter%20Helipad.html" + }, + { + "id": "2411", + "ident": "EGEC", + "type": "medium_airport", + "name": "Campbeltown Airport", + "latitude_deg": "55.437198638916016", + "longitude_deg": "-5.686389923095703", + "elevation_ft": "42", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Campbeltown", + "scheduled_service": "yes", + "gps_code": "EGEC", + "iata_code": "CAL", + "home_link": "http://www.hial.co.uk/campbeltown-airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Campbeltown_Airport", + "keywords": "Kintyre, RAF Machrihanish, Kinlochkilkerran" + }, + { + "id": "29126", + "ident": "EGED", + "type": "medium_airport", + "name": "Eday Airport", + "latitude_deg": "59.19060134887695", + "longitude_deg": "-2.7722198963165283", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Eday", + "scheduled_service": "yes", + "gps_code": "EGED", + "iata_code": "EOI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eday_Airport", + "keywords": "London Airport" + }, + { + "id": "29127", + "ident": "EGEF", + "type": "small_airport", + "name": "Fair Isle Airport", + "latitude_deg": "59.535801", + "longitude_deg": "-1.62806", + "elevation_ft": "223", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Fair Isle", + "scheduled_service": "yes", + "gps_code": "EGEF", + "iata_code": "FIE", + "home_link": "http://www.fairisle.org.uk/egef/index.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fair_Isle_Airport" + }, + { + "id": "43213", + "ident": "EGEG", + "type": "heliport", + "name": "Glasgow City Heliport", + "latitude_deg": "55.86138916015625", + "longitude_deg": "-4.2969441413879395", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Glasgow", + "scheduled_service": "no", + "gps_code": "EGEG", + "home_link": "http://www.bondairservices.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Glasgow_City_Heliport" + }, + { + "id": "29128", + "ident": "EGEH", + "type": "small_airport", + "name": "Whalsay Airstrip", + "latitude_deg": "60.376835", + "longitude_deg": "-0.927229", + "elevation_ft": "100", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Whalsay, Shetlands", + "scheduled_service": "no", + "gps_code": "EGEH", + "iata_code": "WHS" + }, + { + "id": "44408", + "ident": "EGEL", + "type": "small_airport", + "name": "Coll Airport", + "latitude_deg": "56.6018981934", + "longitude_deg": "-6.61778020859", + "elevation_ft": "21", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Coll Island", + "scheduled_service": "no", + "gps_code": "EGEL", + "iata_code": "COL" + }, + { + "id": "29129", + "ident": "EGEN", + "type": "small_airport", + "name": "North Ronaldsay Airport", + "latitude_deg": "59.3675003052", + "longitude_deg": "-2.43443989754", + "elevation_ft": "40", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "North Ronaldsay", + "scheduled_service": "yes", + "gps_code": "EGEN", + "iata_code": "NRL", + "wikipedia_link": "https://en.wikipedia.org/wiki/North_Ronaldsay_Airport" + }, + { + "id": "2412", + "ident": "EGEO", + "type": "small_airport", + "name": "Oban Airport", + "latitude_deg": "56.4635009765625", + "longitude_deg": "-5.399670124053955", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "North Connel", + "scheduled_service": "no", + "gps_code": "EGEO", + "iata_code": "OBN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oban_Airport" + }, + { + "id": "29130", + "ident": "EGEP", + "type": "small_airport", + "name": "Papa Westray Airport", + "latitude_deg": "59.351699829100006", + "longitude_deg": "-2.9002799987800003", + "elevation_ft": "91", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Papa Westray", + "scheduled_service": "yes", + "gps_code": "EGEP", + "iata_code": "PPW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Papa_Westray_Airport", + "keywords": "Papay" + }, + { + "id": "29131", + "ident": "EGER", + "type": "small_airport", + "name": "Stronsay Airport", + "latitude_deg": "59.1553001404", + "longitude_deg": "-2.64139008522", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Stronsay", + "scheduled_service": "yes", + "gps_code": "EGER", + "iata_code": "SOY" + }, + { + "id": "29132", + "ident": "EGES", + "type": "small_airport", + "name": "Sanday Airport", + "latitude_deg": "59.250301361083984", + "longitude_deg": "-2.576669931411743", + "elevation_ft": "68", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Sanday", + "scheduled_service": "yes", + "gps_code": "EGES", + "iata_code": "NDY" + }, + { + "id": "29133", + "ident": "EGET", + "type": "small_airport", + "name": "Lerwick / Tingwall Airport", + "latitude_deg": "60.192199707", + "longitude_deg": "-1.24361002445", + "elevation_ft": "43", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Lerwick", + "scheduled_service": "yes", + "gps_code": "EGET", + "iata_code": "LWK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tingwall_Airport" + }, + { + "id": "29134", + "ident": "EGEW", + "type": "small_airport", + "name": "Westray Airport", + "latitude_deg": "59.3502998352", + "longitude_deg": "-2.95000004768", + "elevation_ft": "29", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Westray", + "scheduled_service": "yes", + "gps_code": "EGEW", + "iata_code": "WRY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Westray_Airport" + }, + { + "id": "44409", + "ident": "EGEY", + "type": "small_airport", + "name": "Colonsay Airstrip", + "latitude_deg": "56.057499", + "longitude_deg": "-6.24306", + "elevation_ft": "44", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Colonsay", + "scheduled_service": "no", + "gps_code": "EGEY", + "iata_code": "CSA", + "keywords": "Machrins" + }, + { + "id": "314581", + "ident": "EGEZ", + "type": "heliport", + "name": "Nesscliffe Camp Helipad", + "latitude_deg": "52.757778", + "longitude_deg": "-2.9275", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Nesscliffe", + "scheduled_service": "no", + "gps_code": "EGEZ" + }, + { + "id": "2413", + "ident": "EGFA", + "type": "small_airport", + "name": "Aberporth Airport", + "latitude_deg": "52.1152992249", + "longitude_deg": "-4.556940078739999", + "elevation_ft": "428", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Aberporth", + "scheduled_service": "no", + "gps_code": "EGFA", + "home_link": "http://www.wwaa.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aberporth_Airport", + "keywords": "RAF Blaenanerch" + }, + { + "id": "29135", + "ident": "EGFC", + "type": "heliport", + "name": "Cardiff Heliport", + "latitude_deg": "51.467498779299994", + "longitude_deg": "-3.13750004768", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Cardiff", + "scheduled_service": "no", + "gps_code": "EGFC", + "home_link": "http://www.veritair.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cardiff_Heliport", + "keywords": "Tremorfa Foreshore Heliport" + }, + { + "id": "2414", + "ident": "EGFE", + "type": "medium_airport", + "name": "Haverfordwest Airport", + "latitude_deg": "51.833099365234375", + "longitude_deg": "-4.9611101150512695", + "elevation_ft": "159", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Haverfordwest", + "scheduled_service": "no", + "gps_code": "EGFE", + "iata_code": "HAW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Haverfordwest_Aerodrome" + }, + { + "id": "2415", + "ident": "EGFF", + "type": "medium_airport", + "name": "Cardiff International Airport", + "latitude_deg": "51.396702", + "longitude_deg": "-3.34333", + "elevation_ft": "220", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Cardiff", + "scheduled_service": "yes", + "gps_code": "EGFF", + "iata_code": "CWL", + "home_link": "http://www.cwlfly.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cardiff_International_Airport", + "keywords": "Rhoose" + }, + { + "id": "2416", + "ident": "EGFH", + "type": "medium_airport", + "name": "Swansea Airport", + "latitude_deg": "51.60530090332031", + "longitude_deg": "-4.0678300857543945", + "elevation_ft": "299", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Swansea", + "scheduled_service": "no", + "gps_code": "EGFH", + "iata_code": "SWS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Swansea_Airport" + }, + { + "id": "29136", + "ident": "EGFP", + "type": "small_airport", + "name": "Pembrey Airport", + "latitude_deg": "51.71390151977539", + "longitude_deg": "-4.312220096588135", + "elevation_ft": "15", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Pembrey", + "scheduled_service": "no", + "gps_code": "EGFP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pembrey_Airport", + "keywords": "RAF Pembrey" + }, + { + "id": "2417", + "ident": "EGGD", + "type": "medium_airport", + "name": "Bristol Airport", + "latitude_deg": "51.382702", + "longitude_deg": "-2.71909", + "elevation_ft": "622", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bristol", + "scheduled_service": "yes", + "gps_code": "EGGD", + "iata_code": "BRS", + "home_link": "http://www.bristolairport.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bristol_International_Airport", + "keywords": "Lulsgate Bottom" + }, + { + "id": "2418", + "ident": "EGGP", + "type": "medium_airport", + "name": "Liverpool John Lennon Airport", + "latitude_deg": "53.333599", + "longitude_deg": "-2.84972", + "elevation_ft": "80", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Liverpool", + "scheduled_service": "yes", + "gps_code": "EGGP", + "iata_code": "LPL", + "home_link": "http://www.liverpoolairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Liverpool_John_Lennon_Airport" + }, + { + "id": "2419", + "ident": "EGGW", + "type": "large_airport", + "name": "London Luton Airport", + "latitude_deg": "51.874698638916016", + "longitude_deg": "-0.36833301186561584", + "elevation_ft": "526", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "London", + "scheduled_service": "yes", + "gps_code": "EGGW", + "iata_code": "LTN", + "home_link": "http://www.london-luton.co.uk/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/London_Luton_Airport", + "keywords": "LON" + }, + { + "id": "29137", + "ident": "EGHA", + "type": "small_airport", + "name": "Compton Abbas Aerodrome", + "latitude_deg": "50.967201232910156", + "longitude_deg": "-2.1536099910736084", + "elevation_ft": "811", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Shaftesbury", + "scheduled_service": "no", + "gps_code": "EGHA", + "home_link": "http://www.abbasair.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Compton_Abbas_Airfield" + }, + { + "id": "29138", + "ident": "EGHB", + "type": "closed", + "name": "Maypole Airfield", + "latitude_deg": "51.337508", + "longitude_deg": "1.155292", + "elevation_ft": "100", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Maypole", + "scheduled_service": "no", + "gps_code": "EGHB", + "home_link": "http://www.maypoleairfield.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maypole_Airfield" + }, + { + "id": "29139", + "ident": "EGHC", + "type": "small_airport", + "name": "Land's End Airport", + "latitude_deg": "50.102798", + "longitude_deg": "-5.67056", + "elevation_ft": "398", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Land's End", + "scheduled_service": "yes", + "gps_code": "EGHC", + "iata_code": "LEQ", + "home_link": "http://www.landsendairport.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Land%27s_End_Airport", + "keywords": "St. Just Airport" + }, + { + "id": "2420", + "ident": "EGHD", + "type": "closed", + "name": "Plymouth City Airport", + "latitude_deg": "50.422798", + "longitude_deg": "-4.10583", + "elevation_ft": "476", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "EGHD", + "iata_code": "PLH", + "home_link": "http://www.plymouthairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Plymouth_City_Airport" + }, + { + "id": "29140", + "ident": "EGHE", + "type": "small_airport", + "name": "St. Mary's Airport", + "latitude_deg": "49.9133", + "longitude_deg": "-6.29167", + "elevation_ft": "116", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "St. Mary's", + "scheduled_service": "yes", + "gps_code": "EGHE", + "iata_code": "ISC", + "home_link": "http://www.scilly.gov.uk/transport/airandsea/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Mary%27s_Airport_%28Isles_of_Scilly%29" + }, + { + "id": "29141", + "ident": "EGHF", + "type": "small_airport", + "name": "Solent Airport", + "latitude_deg": "50.814201", + "longitude_deg": "-1.20333", + "elevation_ft": "32", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lee-on-Solent", + "scheduled_service": "no", + "gps_code": "EGHF", + "home_link": "https://www.solentairport.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RNAS_Lee-on-Solent_%28HMS_Daedalus%29", + "keywords": "HMS Daedalus, HMS Ariel, EGUS" + }, + { + "id": "29142", + "ident": "EGHG", + "type": "small_airport", + "name": "Yeovil/Westland Aerodrome", + "latitude_deg": "50.939998626708984", + "longitude_deg": "-2.6586101055145264", + "elevation_ft": "202", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Yeovil", + "scheduled_service": "no", + "gps_code": "EGHG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yeovil/Westland_Airport" + }, + { + "id": "2421", + "ident": "EGHH", + "type": "medium_airport", + "name": "Bournemouth Airport", + "latitude_deg": "50.779999", + "longitude_deg": "-1.8425", + "elevation_ft": "38", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bournemouth", + "scheduled_service": "yes", + "gps_code": "EGHH", + "iata_code": "BOH", + "home_link": "http://www.bournemouthairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bournemouth_Airport", + "keywords": "RAF Hurn" + }, + { + "id": "2422", + "ident": "EGHI", + "type": "medium_airport", + "name": "Southampton Airport", + "latitude_deg": "50.950298", + "longitude_deg": "-1.3568", + "elevation_ft": "44", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Southampton", + "scheduled_service": "yes", + "gps_code": "EGHI", + "iata_code": "SOU", + "home_link": "http://www.southamptonairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Southampton_Airport", + "keywords": "RAF Eastleigh, RAF Southampton" + }, + { + "id": "29143", + "ident": "EGHJ", + "type": "small_airport", + "name": "Bembridge Airport", + "latitude_deg": "50.6781005859", + "longitude_deg": "-1.10943996906", + "elevation_ft": "53", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bembridge", + "scheduled_service": "no", + "gps_code": "EGHJ", + "iata_code": "BBP", + "home_link": "http://www.eghj.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bembridge_Airport", + "keywords": "Britten Norman" + }, + { + "id": "29144", + "ident": "EGHK", + "type": "closed", + "name": "Penzance Heliport", + "latitude_deg": "50.128101", + "longitude_deg": "-5.51845", + "elevation_ft": "14", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Penzance", + "scheduled_service": "no", + "gps_code": "EGHK", + "iata_code": "PZE", + "home_link": "http://www.brit-int.co.uk/Penzanceheliport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Penzance_Heliport" + }, + { + "id": "2423", + "ident": "EGHL", + "type": "medium_airport", + "name": "Lasham Airfield", + "latitude_deg": "51.187199", + "longitude_deg": "-1.0335", + "elevation_ft": "618", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lasham", + "scheduled_service": "no", + "gps_code": "EGHL", + "home_link": "http://www.lasham.org.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lasham_Airfield", + "keywords": "Basingstoke, RAF Lasham" + }, + { + "id": "29145", + "ident": "EGHN", + "type": "small_airport", + "name": "Isle of Wight / Sandown Airport", + "latitude_deg": "50.653099", + "longitude_deg": "-1.18221998", + "elevation_ft": "55", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Sandown", + "scheduled_service": "no", + "gps_code": "EGHN", + "home_link": "http://www.eghn.org.uk", + "wikipedia_link": "https://en.wikipedia.org/wiki/Isle_of_Wight/Sandown_Airport" + }, + { + "id": "29146", + "ident": "EGHO", + "type": "small_airport", + "name": "Thruxton Aerodrome", + "latitude_deg": "51.210601806640625", + "longitude_deg": "-1.600000023841858", + "elevation_ft": "319", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Andover", + "scheduled_service": "no", + "gps_code": "EGHO", + "home_link": "http://www.westernairthruxton.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thruxton_Aerodrome" + }, + { + "id": "29147", + "ident": "EGHP", + "type": "small_airport", + "name": "Popham Airfield", + "latitude_deg": "51.193901", + "longitude_deg": "-1.23472", + "elevation_ft": "550", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Basingstoke", + "scheduled_service": "no", + "gps_code": "EGHP", + "home_link": "http://www.popham-airfield.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Popham_Airfield" + }, + { + "id": "2404", + "ident": "EGHQ", + "type": "medium_airport", + "name": "Newquay Cornwall Airport", + "latitude_deg": "50.44060134887695", + "longitude_deg": "-4.995409965515137", + "elevation_ft": "390", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Newquay", + "scheduled_service": "yes", + "gps_code": "EGHQ", + "iata_code": "NQY", + "home_link": "http://www.newquaycornwallairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Newquay_Cornwall_Airport", + "keywords": "St Mawgan, EGDG" + }, + { + "id": "29148", + "ident": "EGHR", + "type": "small_airport", + "name": "Goodwood Aerodrome", + "latitude_deg": "50.859402", + "longitude_deg": "-0.759167", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Chichester", + "scheduled_service": "no", + "gps_code": "EGHR", + "iata_code": "QUG", + "home_link": "http://www.goodwood.co.uk/aviation/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chichester/Goodwood_Airport", + "keywords": "RAF Westhampnett" + }, + { + "id": "29149", + "ident": "EGHS", + "type": "small_airport", + "name": "Henstridge Airfield", + "latitude_deg": "50.98500061035156", + "longitude_deg": "-2.357219934463501", + "elevation_ft": "184", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Henstridge", + "scheduled_service": "no", + "gps_code": "EGHS", + "home_link": "http://www.henstridgeairfield.com/", + "keywords": "Lower Marsh, HMS Dipper" + }, + { + "id": "35157", + "ident": "EGHT", + "type": "heliport", + "name": "Tresco Heliport", + "latitude_deg": "49.94559860229492", + "longitude_deg": "-6.331389904022217", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Tresco", + "scheduled_service": "no", + "gps_code": "EGHT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tresco_Heliport" + }, + { + "id": "29150", + "ident": "EGHU", + "type": "small_airport", + "name": "Eaglescott Airfield", + "latitude_deg": "50.9286003112793", + "longitude_deg": "-3.9894399642944336", + "elevation_ft": "655", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Burrington", + "scheduled_service": "no", + "gps_code": "EGHU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eaglescott_Airfield" + }, + { + "id": "29151", + "ident": "EGHY", + "type": "small_airport", + "name": "Truro Airport", + "latitude_deg": "50.27840042114258", + "longitude_deg": "-5.142290115356445", + "elevation_ft": "127", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Truro", + "scheduled_service": "no", + "gps_code": "EGHY" + }, + { + "id": "2424", + "ident": "EGJA", + "type": "medium_airport", + "name": "Alderney Airport", + "latitude_deg": "49.706104", + "longitude_deg": "-2.21472", + "elevation_ft": "290", + "continent": "EU", + "iso_country": "GG", + "iso_region": "GG-U-A", + "municipality": "Saint Anne", + "scheduled_service": "yes", + "gps_code": "EGJA", + "iata_code": "ACI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alderney_Airport", + "keywords": "The Blaye, Channel Islands" + }, + { + "id": "2425", + "ident": "EGJB", + "type": "medium_airport", + "name": "Guernsey Airport", + "latitude_deg": "49.435001", + "longitude_deg": "-2.60197", + "elevation_ft": "336", + "continent": "EU", + "iso_country": "GG", + "iso_region": "GG-U-A", + "municipality": "Saint Peter Port", + "scheduled_service": "yes", + "gps_code": "EGJB", + "iata_code": "GCI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guernsey_Airport", + "keywords": "Channel Islands" + }, + { + "id": "2426", + "ident": "EGJJ", + "type": "medium_airport", + "name": "Jersey Airport", + "latitude_deg": "49.20790100097656", + "longitude_deg": "-2.195509910583496", + "elevation_ft": "277", + "continent": "EU", + "iso_country": "JE", + "iso_region": "JE-U-A", + "municipality": "Saint Helier", + "scheduled_service": "yes", + "gps_code": "EGJJ", + "iata_code": "JER", + "home_link": "http://www.jerseyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jersey_Airport", + "keywords": "Channel Islands" + }, + { + "id": "2427", + "ident": "EGKA", + "type": "medium_airport", + "name": "Shoreham Airport", + "latitude_deg": "50.835602", + "longitude_deg": "-0.297222", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Brighton", + "scheduled_service": "no", + "gps_code": "EGKA", + "iata_code": "ESH", + "home_link": "http://flybrighton.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shoreham_Airport" + }, + { + "id": "2428", + "ident": "EGKB", + "type": "medium_airport", + "name": "London Biggin Hill Airport", + "latitude_deg": "51.33079910279999", + "longitude_deg": "0.0324999988079", + "elevation_ft": "598", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "London", + "scheduled_service": "no", + "gps_code": "EGKB", + "iata_code": "BQH", + "home_link": "http://www.bigginhillairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/London_Biggin_Hill_Airport", + "keywords": "LON, RAF Biggin Hill" + }, + { + "id": "321690", + "ident": "EGKC", + "type": "small_airport", + "name": "Bognor Regis", + "latitude_deg": "50.801667", + "longitude_deg": "-0.658847", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "gps_code": "EGKC", + "home_link": "https://www.brgc.co.uk/location/" + }, + { + "id": "29152", + "ident": "EGKE", + "type": "small_airport", + "name": "Challock Airfield", + "latitude_deg": "51.20830154418945", + "longitude_deg": "0.8291670083999634", + "elevation_ft": "600", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Challock", + "scheduled_service": "no", + "gps_code": "EGKE" + }, + { + "id": "29153", + "ident": "EGKG", + "type": "heliport", + "name": "Goodwood Racecourse Heliport", + "latitude_deg": "50.90060043334961", + "longitude_deg": "-0.7397220134735107", + "elevation_ft": "510", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Chichester", + "scheduled_service": "no", + "gps_code": "EGKG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Goodwood_Racecourse_Heliport" + }, + { + "id": "29154", + "ident": "EGKH", + "type": "small_airport", + "name": "Headcorn Aerodrome", + "latitude_deg": "51.156898", + "longitude_deg": "0.641667", + "elevation_ft": "72", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Maidstone", + "scheduled_service": "no", + "gps_code": "EGKH", + "home_link": "http://www.headcornaerodrome.co.uk", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lashenden_%28Headcorn%29_Airfield", + "keywords": "RAF Lashenden, Lashenden (Headcorn) Airfield" + }, + { + "id": "2429", + "ident": "EGKK", + "type": "large_airport", + "name": "London Gatwick Airport", + "latitude_deg": "51.148102", + "longitude_deg": "-0.190278", + "elevation_ft": "202", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "London", + "scheduled_service": "yes", + "gps_code": "EGKK", + "iata_code": "LGW", + "home_link": "http://www.gatwickairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gatwick_Airport", + "keywords": "LON, Crawley, Charlwood" + }, + { + "id": "29822", + "ident": "EGKL", + "type": "small_airport", + "name": "Deanland Lewes Airfield", + "latitude_deg": "50.878899", + "longitude_deg": "0.156389", + "elevation_ft": "69", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lewes", + "scheduled_service": "no", + "gps_code": "EGKL" + }, + { + "id": "316475", + "ident": "EGKM", + "type": "closed", + "name": "RAF West Malling", + "latitude_deg": "51.27", + "longitude_deg": "0.4", + "elevation_ft": "308", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "West Malling", + "scheduled_service": "no", + "gps_code": "EGKM", + "iata_code": "WEM", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_West_Malling", + "keywords": "Maidstone Airport, Kingshill, Kings Hill" + }, + { + "id": "29155", + "ident": "EGKR", + "type": "small_airport", + "name": "Redhill Aerodrome", + "latitude_deg": "51.2136001587", + "longitude_deg": "-0.138611003757", + "elevation_ft": "222", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Redhill", + "scheduled_service": "no", + "gps_code": "EGKR", + "iata_code": "KRH", + "home_link": "http://www.redhillaerodrome.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Redhill_Aerodrome", + "keywords": "RAF Redhill" + }, + { + "id": "29156", + "ident": "EGLA", + "type": "small_airport", + "name": "Bodmin Airfield", + "latitude_deg": "50.499698638916016", + "longitude_deg": "-4.665830135345459", + "elevation_ft": "650", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bodmin", + "scheduled_service": "no", + "gps_code": "EGLA", + "home_link": "http://www.quantum-infotech.co.uk/cfc/CFC_Site_files/frame.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bodmin_Airfield" + }, + { + "id": "2430", + "ident": "EGLC", + "type": "medium_airport", + "name": "London City Airport", + "latitude_deg": "51.505299", + "longitude_deg": "0.055278", + "elevation_ft": "19", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "London", + "scheduled_service": "yes", + "gps_code": "EGLC", + "iata_code": "LCY", + "home_link": "http://www.londoncityairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/London_City_Airport", + "keywords": "LON" + }, + { + "id": "29157", + "ident": "EGLD", + "type": "small_airport", + "name": "Denham Aerodrome", + "latitude_deg": "51.5882987976", + "longitude_deg": "-0.513055980206", + "elevation_ft": "24", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Gerrards Cross", + "scheduled_service": "no", + "gps_code": "EGLD", + "home_link": "http://www.egld.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Denham_Aerodrome" + }, + { + "id": "2431", + "ident": "EGLF", + "type": "medium_airport", + "name": "Farnborough Airport", + "latitude_deg": "51.2757987976", + "longitude_deg": "-0.776332974434", + "elevation_ft": "238", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Farnborough", + "scheduled_service": "no", + "gps_code": "EGLF", + "iata_code": "FAB", + "home_link": "http://www.tagaviation.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Farnborough_Airfield", + "keywords": "TAG London Farnborough Airport, RAE Farnborough, EGUF" + }, + { + "id": "29158", + "ident": "EGLG", + "type": "closed", + "name": "Panshanger Aerodrome", + "latitude_deg": "51.80250167849999", + "longitude_deg": "-0.158056005836", + "elevation_ft": "249", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hertford", + "scheduled_service": "no", + "gps_code": "EGLG", + "home_link": "http://www.northlondonflyingschool.com/Pansanger/Pansanger.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Panshanger_Airport" + }, + { + "id": "2432", + "ident": "EGLJ", + "type": "small_airport", + "name": "Chalgrove Airport", + "latitude_deg": "51.67610168457031", + "longitude_deg": "-1.0808299779891968", + "elevation_ft": "240", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Chalgrove", + "scheduled_service": "no", + "gps_code": "EGLJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chalgrove_Airfield", + "keywords": "RAF Chalgrove" + }, + { + "id": "2433", + "ident": "EGLK", + "type": "medium_airport", + "name": "Blackbushe Airport", + "latitude_deg": "51.32389831542969", + "longitude_deg": "-0.8475000262260437", + "elevation_ft": "325", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Yateley", + "scheduled_service": "no", + "gps_code": "EGLK", + "iata_code": "BBS", + "home_link": "http://www.blackbusheairport.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Blackbushe_Airport", + "keywords": "RAF Hartford Bridge" + }, + { + "id": "2434", + "ident": "EGLL", + "type": "large_airport", + "name": "London Heathrow Airport", + "latitude_deg": "51.4706", + "longitude_deg": "-0.461941", + "elevation_ft": "83", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "London", + "scheduled_service": "yes", + "gps_code": "EGLL", + "iata_code": "LHR", + "home_link": "http://www.heathrowairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Heathrow_Airport", + "keywords": "LON, Londres" + }, + { + "id": "29159", + "ident": "EGLM", + "type": "small_airport", + "name": "White Waltham Airfield", + "latitude_deg": "51.500801086399996", + "longitude_deg": "-0.774443984032", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Maidenhead", + "scheduled_service": "no", + "gps_code": "EGLM", + "home_link": "http://www.wlac.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/White_Waltham_Airfield", + "keywords": "West London Aero Club" + }, + { + "id": "302294", + "ident": "EGLP", + "type": "small_airport", + "name": "Brimpton Airfield", + "latitude_deg": "51.383889", + "longitude_deg": "-1.169167", + "elevation_ft": "210", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "gps_code": "EGLP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brimpton_Airfield" + }, + { + "id": "29160", + "ident": "EGLS", + "type": "small_airport", + "name": "Old Sarum Airfield", + "latitude_deg": "51.0989", + "longitude_deg": "-1.78417", + "elevation_ft": "285", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Salisbury", + "scheduled_service": "no", + "gps_code": "EGLS", + "home_link": "http://www.goflyuk.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Old_Sarum_Airfield", + "keywords": "RAF Old Sarum" + }, + { + "id": "29161", + "ident": "EGLT", + "type": "heliport", + "name": "Ascot Racecourse Heliport", + "latitude_deg": "51.42639923095703", + "longitude_deg": "-0.6591669917106628", + "elevation_ft": "220", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Ascot Heath", + "scheduled_service": "no", + "gps_code": "EGLT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ascot_Racecourse_Heliport" + }, + { + "id": "43211", + "ident": "EGLW", + "type": "heliport", + "name": "London Heliport", + "latitude_deg": "51.46972274779999", + "longitude_deg": "-0.179444000125", + "elevation_ft": "18", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "London", + "scheduled_service": "no", + "gps_code": "EGLW", + "home_link": "http://www.londonheliport.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/London_Heliport" + }, + { + "id": "29162", + "ident": "EGMA", + "type": "small_airport", + "name": "Fowlmere Airfield", + "latitude_deg": "52.0774993896", + "longitude_deg": "0.0616669990122", + "elevation_ft": "124", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "EGMA", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Fowlmere", + "keywords": "RAF Fowlmere" + }, + { + "id": "2435", + "ident": "EGMC", + "type": "medium_airport", + "name": "Southend Airport", + "latitude_deg": "51.5714", + "longitude_deg": "0.695556", + "elevation_ft": "49", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "London", + "scheduled_service": "yes", + "gps_code": "EGMC", + "iata_code": "SEN", + "home_link": "http://www.southendairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/London_Southend_Airport", + "keywords": "RAF Rochford" + }, + { + "id": "2436", + "ident": "EGMD", + "type": "medium_airport", + "name": "Lydd Airport", + "latitude_deg": "50.9561", + "longitude_deg": "0.939167", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lydd, Ashford", + "scheduled_service": "no", + "gps_code": "EGMD", + "iata_code": "LYX", + "home_link": "http://www.lydd-airport.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/London_Ashford_Airport", + "keywords": "London Ashford" + }, + { + "id": "29163", + "ident": "EGMF", + "type": "small_airport", + "name": "Farthing Corner/Stoneacre Farm Airfield", + "latitude_deg": "51.332369", + "longitude_deg": "0.600126", + "elevation_ft": "420", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bredhurst", + "scheduled_service": "no", + "gps_code": "EGMF" + }, + { + "id": "2437", + "ident": "EGMH", + "type": "closed", + "name": "Kent International Airport (Manston)", + "latitude_deg": "51.342201", + "longitude_deg": "1.34611", + "elevation_ft": "178", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Manston", + "scheduled_service": "no", + "gps_code": "EGMH", + "iata_code": "MSE", + "home_link": "http://www.kentinternationalairport-manston.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kent_International_Airport", + "keywords": "RAF Manston, Ramsgate, EGUM, Manston Airport" + }, + { + "id": "29164", + "ident": "EGMJ", + "type": "small_airport", + "name": "Little Gransden Airfield", + "latitude_deg": "52.16669845581055", + "longitude_deg": "-0.153889000415802", + "elevation_ft": "250", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "St. Neot's", + "scheduled_service": "no", + "gps_code": "EGMJ", + "home_link": "http://www.skyline.flyer.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Little_Gransden_Airfield" + }, + { + "id": "313840", + "ident": "EGMK", + "type": "closed", + "name": "Lympne Airport", + "latitude_deg": "51.08", + "longitude_deg": "1.013", + "elevation_ft": "351", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Ashford", + "scheduled_service": "no", + "gps_code": "EGMK", + "iata_code": "LYM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lympne_Airport", + "keywords": "RAF Lympne" + }, + { + "id": "29815", + "ident": "EGML", + "type": "small_airport", + "name": "Damyns Hall Aerodrome", + "latitude_deg": "51.52859878540039", + "longitude_deg": "0.24555599689483643", + "elevation_ft": "59", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Upminster", + "scheduled_service": "no", + "gps_code": "EGML", + "wikipedia_link": "https://en.wikipedia.org/wiki/Damyns_Hall_Aerodrome" + }, + { + "id": "314586", + "ident": "EGMT", + "type": "small_airport", + "name": "Thurrock Airfield", + "latitude_deg": "51.537505", + "longitude_deg": "0.367634", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "gps_code": "EGMT", + "home_link": "http://www.aeroservices.co.uk/thurrock_airfield.html" + }, + { + "id": "29966", + "ident": "EGNA", + "type": "closed", + "name": "Hucknall Airfield", + "latitude_deg": "53.014400482178", + "longitude_deg": "-1.2183300256729", + "elevation_ft": "279", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Nottingham", + "scheduled_service": "no", + "gps_code": "EGNA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hucknall_Airfield" + }, + { + "id": "2438", + "ident": "EGNB", + "type": "closed", + "name": "Brough Airport", + "latitude_deg": "53.7197", + "longitude_deg": "-0.566333", + "elevation_ft": "12", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Brough", + "scheduled_service": "no", + "gps_code": "EGNB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brough_Aerodrome" + }, + { + "id": "2439", + "ident": "EGNC", + "type": "medium_airport", + "name": "Carlisle Airport", + "latitude_deg": "54.9375", + "longitude_deg": "-2.8091700077056885", + "elevation_ft": "190", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Carlisle", + "scheduled_service": "no", + "gps_code": "EGNC", + "iata_code": "CAX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carlisle_Airport" + }, + { + "id": "46641", + "ident": "EGND", + "type": "small_airport", + "name": "Crosland Moor Airfield", + "latitude_deg": "53.621667", + "longitude_deg": "-1.830278", + "elevation_ft": "825", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Huddersfield", + "scheduled_service": "no", + "gps_code": "EGND", + "home_link": "http://www.cmfc.me.uk/index.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Crosland_Moor_Airfield" + }, + { + "id": "2440", + "ident": "EGNE", + "type": "small_airport", + "name": "Retford Gamston Airport", + "latitude_deg": "53.280601501464844", + "longitude_deg": "-0.9513890147209167", + "elevation_ft": "91", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Gamston", + "scheduled_service": "no", + "gps_code": "EGNE", + "home_link": "http://www.gamstonairport.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Retford_Gamston_Airport", + "keywords": "RAF Gamston" + }, + { + "id": "29165", + "ident": "EGNF", + "type": "small_airport", + "name": "Netherthorpe Airfield", + "latitude_deg": "53.3168983459", + "longitude_deg": "-1.19639003277", + "elevation_ft": "250", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Worksop", + "scheduled_service": "no", + "gps_code": "EGNF", + "home_link": "http://www.sheffieldaeroclub.net/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Netherthorpe_Airfield" + }, + { + "id": "29679", + "ident": "EGNG", + "type": "small_airport", + "name": "Bagby Thirsk Prv Airport", + "latitude_deg": "54.211101532", + "longitude_deg": "-1.2899999618499998", + "elevation_ft": "161", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bagby", + "scheduled_service": "no", + "gps_code": "EGNG" + }, + { + "id": "2441", + "ident": "EGNH", + "type": "medium_airport", + "name": "Blackpool International Airport", + "latitude_deg": "53.77170181274414", + "longitude_deg": "-3.0286099910736084", + "elevation_ft": "34", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Blackpool", + "scheduled_service": "yes", + "gps_code": "EGNH", + "iata_code": "BLK", + "home_link": "http://www.blackpoolinternational.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Blackpool_International_Airport" + }, + { + "id": "28479", + "ident": "EGNI", + "type": "small_airport", + "name": "Skegness (Ingoldmells) Aerodrome", + "latitude_deg": "53.1716", + "longitude_deg": "0.3293749988", + "elevation_ft": "8", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Skegness", + "scheduled_service": "no", + "gps_code": "EGNI", + "home_link": "http://www.skegnessairfield.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Skegness#Airfield" + }, + { + "id": "2442", + "ident": "EGNJ", + "type": "medium_airport", + "name": "Humberside Airport", + "latitude_deg": "53.57440185546875", + "longitude_deg": "-0.350832998752594", + "elevation_ft": "121", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Grimsby", + "scheduled_service": "yes", + "gps_code": "EGNJ", + "iata_code": "HUY", + "home_link": "http://www.humbersideairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Humberside_Airport", + "keywords": "RAF Kirmington" + }, + { + "id": "2443", + "ident": "EGNL", + "type": "medium_airport", + "name": "Barrow Walney Island Airport", + "latitude_deg": "54.1286111", + "longitude_deg": "-3.2675", + "elevation_ft": "173", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Barrow-in-Furness", + "scheduled_service": "no", + "gps_code": "EGNL", + "iata_code": "BWF", + "home_link": "http://www.walneyairfield.multiservers.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barrow/Walney_Island_Airfield" + }, + { + "id": "2444", + "ident": "EGNM", + "type": "medium_airport", + "name": "Leeds Bradford Airport", + "latitude_deg": "53.865898", + "longitude_deg": "-1.66057", + "elevation_ft": "681", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Leeds", + "scheduled_service": "yes", + "gps_code": "EGNM", + "iata_code": "LBA", + "home_link": "http://www.lbia.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leeds_Bradford_International_Airport" + }, + { + "id": "2445", + "ident": "EGNO", + "type": "medium_airport", + "name": "Warton Aerodrome", + "latitude_deg": "53.745098", + "longitude_deg": "-2.88306", + "elevation_ft": "55", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Warton", + "scheduled_service": "no", + "gps_code": "EGNO", + "iata_code": "WRT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Warton_Aerodrome" + }, + { + "id": "314587", + "ident": "EGNP", + "type": "heliport", + "name": "Leeds Heliport", + "latitude_deg": "53.878175", + "longitude_deg": "-1.662477", + "elevation_ft": "670", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "gps_code": "EGNP" + }, + { + "id": "2446", + "ident": "EGNR", + "type": "medium_airport", + "name": "Hawarden Airport", + "latitude_deg": "53.178101", + "longitude_deg": "-2.97778", + "elevation_ft": "45", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Hawarden", + "scheduled_service": "no", + "gps_code": "EGNR", + "iata_code": "CEG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hawarden_Airport", + "keywords": "Chester" + }, + { + "id": "2447", + "ident": "EGNS", + "type": "medium_airport", + "name": "Isle of Man Airport", + "latitude_deg": "54.083302", + "longitude_deg": "-4.62389", + "elevation_ft": "52", + "continent": "EU", + "iso_country": "IM", + "iso_region": "IM-U-A", + "municipality": "Castletown", + "scheduled_service": "yes", + "gps_code": "EGNS", + "iata_code": "IOM", + "home_link": "http://www.iom-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Isle_of_Man_Airport", + "keywords": "Ronaldsway, Douglas" + }, + { + "id": "2448", + "ident": "EGNT", + "type": "medium_airport", + "name": "Newcastle Airport", + "latitude_deg": "55.037498", + "longitude_deg": "-1.69167", + "elevation_ft": "266", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Newcastle", + "scheduled_service": "yes", + "gps_code": "EGNT", + "iata_code": "NCL", + "home_link": "http://www.newcastleairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Newcastle_Airport" + }, + { + "id": "29166", + "ident": "EGNU", + "type": "small_airport", + "name": "Full Sutton Airfield", + "latitude_deg": "53.980598", + "longitude_deg": "-0.864722", + "elevation_ft": "86", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Full Sutton", + "scheduled_service": "no", + "gps_code": "EGNU", + "home_link": "http://www.fullsuttonairfield.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Full_Sutton_Airfield" + }, + { + "id": "2449", + "ident": "EGNV", + "type": "medium_airport", + "name": "Teesside International Airport", + "latitude_deg": "54.509201", + "longitude_deg": "-1.42941", + "elevation_ft": "120", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Darlington, Durham", + "scheduled_service": "yes", + "gps_code": "EGNV", + "iata_code": "MME", + "home_link": "https://www.teessideinternational.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Teesside_International_Airport", + "keywords": "Durham Tees Valley Airport, RAF Middleton St George, Tees-Side" + }, + { + "id": "29167", + "ident": "EGNW", + "type": "small_airport", + "name": "Wickenby Aerodrome", + "latitude_deg": "53.3166999817", + "longitude_deg": "-0.349721997976", + "elevation_ft": "63", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "EGNW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wickenby_Aerodrome", + "keywords": "RAF Wickenby" + }, + { + "id": "2450", + "ident": "EGNX", + "type": "medium_airport", + "name": "East Midlands Airport", + "latitude_deg": "52.8311", + "longitude_deg": "-1.32806", + "elevation_ft": "306", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Nottingham", + "scheduled_service": "yes", + "gps_code": "EGNX", + "iata_code": "EMA", + "home_link": "http://www.eastmidlandsairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/East_Midlands_Airport", + "keywords": "RAF Castle Donington" + }, + { + "id": "29168", + "ident": "EGNY", + "type": "small_airport", + "name": "Beverley/Linley Hill Airfield", + "latitude_deg": "53.8983", + "longitude_deg": "-0.361389", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Beverley", + "scheduled_service": "no", + "gps_code": "EGNY" + }, + { + "id": "2451", + "ident": "EGOD", + "type": "small_airport", + "name": "Llanbedr Airport", + "latitude_deg": "52.811698913574", + "longitude_deg": "-4.1235799789429", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Llanbedr", + "scheduled_service": "no", + "gps_code": "EGFD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Llanbedr_Airport" + }, + { + "id": "2452", + "ident": "EGOE", + "type": "small_airport", + "name": "RAF Ternhill", + "latitude_deg": "52.87120056152344", + "longitude_deg": "-2.533560037612915", + "elevation_ft": "272", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Ternhill", + "scheduled_service": "no", + "gps_code": "EGOE", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Ternhill" + }, + { + "id": "30991", + "ident": "EGOM", + "type": "medium_airport", + "name": "RAF Spadeadam", + "latitude_deg": "55.0499992371", + "longitude_deg": "-2.54999995232", + "elevation_ft": "1066", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Spadeadam", + "scheduled_service": "no", + "gps_code": "EGOM", + "home_link": "http://www.raf.mod.uk/rafspadeadam/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Spadeadam" + }, + { + "id": "3073", + "ident": "EGOQ", + "type": "small_airport", + "name": "RAF Mona", + "latitude_deg": "53.258598", + "longitude_deg": "-4.37355", + "elevation_ft": "202", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Holyhead Island", + "scheduled_service": "no", + "gps_code": "EGOQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Mona" + }, + { + "id": "2453", + "ident": "EGOS", + "type": "medium_airport", + "name": "RAF Shawbury", + "latitude_deg": "52.79819869995117", + "longitude_deg": "-2.6680400371551514", + "elevation_ft": "249", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Shawbury", + "scheduled_service": "no", + "gps_code": "EGOS", + "home_link": "http://www.raf.mod.uk/rafshawbury/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Shawbury", + "keywords": "Shrewsbury" + }, + { + "id": "2454", + "ident": "EGOV", + "type": "medium_airport", + "name": "Anglesey Airport", + "latitude_deg": "53.2481002808", + "longitude_deg": "-4.53533983231", + "elevation_ft": "37", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Angelsey", + "scheduled_service": "yes", + "gps_code": "EGOV", + "iata_code": "VLY", + "home_link": "http://www.angleseyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anglesey_Airport", + "keywords": "Maes Awyr Môn, RAF Valley" + }, + { + "id": "2455", + "ident": "EGOW", + "type": "small_airport", + "name": "RAF Woodvale", + "latitude_deg": "53.5816", + "longitude_deg": "-3.05552", + "elevation_ft": "37", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Southport", + "scheduled_service": "no", + "gps_code": "EGOW", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Woodvale" + }, + { + "id": "29170", + "ident": "EGOY", + "type": "closed", + "name": "RAF West Freugh", + "latitude_deg": "54.8511", + "longitude_deg": "-4.94778", + "elevation_ft": "55", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Wigtownshire", + "scheduled_service": "no", + "gps_code": "EGOY", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_West_Freugh" + }, + { + "id": "2456", + "ident": "EGPA", + "type": "medium_airport", + "name": "Kirkwall Airport", + "latitude_deg": "58.957801818847656", + "longitude_deg": "-2.9049999713897705", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Orkney Islands", + "scheduled_service": "yes", + "gps_code": "EGPA", + "iata_code": "KOI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kirkwall_Airport" + }, + { + "id": "2457", + "ident": "EGPB", + "type": "medium_airport", + "name": "Sumburgh Airport", + "latitude_deg": "59.87889862060547", + "longitude_deg": "-1.2955600023269653", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Lerwick", + "scheduled_service": "yes", + "gps_code": "EGPB", + "iata_code": "LSI", + "home_link": "http://www.hial.co.uk/sumburgh-airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sumburgh_Airport", + "keywords": "Shetlands" + }, + { + "id": "2458", + "ident": "EGPC", + "type": "medium_airport", + "name": "Wick Airport", + "latitude_deg": "58.458900451660156", + "longitude_deg": "-3.09306001663208", + "elevation_ft": "126", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Wick", + "scheduled_service": "yes", + "gps_code": "EGPC", + "iata_code": "WIC", + "home_link": "http://www.hial.co.uk/wick-airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wick_Airport" + }, + { + "id": "2459", + "ident": "EGPD", + "type": "medium_airport", + "name": "Aberdeen Dyce Airport", + "latitude_deg": "57.2019", + "longitude_deg": "-2.19778", + "elevation_ft": "215", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Aberdeen", + "scheduled_service": "yes", + "gps_code": "EGPD", + "iata_code": "ABZ", + "home_link": "http://www.aberdeenairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aberdeen_Airport" + }, + { + "id": "2460", + "ident": "EGPE", + "type": "medium_airport", + "name": "Inverness Airport", + "latitude_deg": "57.54249954223633", + "longitude_deg": "-4.047500133514404", + "elevation_ft": "31", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Inverness", + "scheduled_service": "yes", + "gps_code": "EGPE", + "iata_code": "INV", + "home_link": "http://www.hial.co.uk/inverness-airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Inverness_Airport" + }, + { + "id": "2461", + "ident": "EGPF", + "type": "large_airport", + "name": "Glasgow International Airport", + "latitude_deg": "55.871899", + "longitude_deg": "-4.43306", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Paisley, Renfrewshire", + "scheduled_service": "yes", + "gps_code": "EGPF", + "iata_code": "GLA", + "home_link": "http://www.glasgowairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Glasgow_International_Airport", + "keywords": "Port-adhair Eadar-nàiseanta Ghlaschu, RAF Abbotsinch, RAF Ayr" + }, + { + "id": "29171", + "ident": "EGPG", + "type": "small_airport", + "name": "Cumbernauld Airport", + "latitude_deg": "55.9747009277", + "longitude_deg": "-3.97555994987", + "elevation_ft": "350", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Cumbernauld", + "scheduled_service": "no", + "gps_code": "EGPG" + }, + { + "id": "2462", + "ident": "EGPH", + "type": "large_airport", + "name": "Edinburgh Airport", + "latitude_deg": "55.950145", + "longitude_deg": "-3.372288", + "elevation_ft": "135", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Edinburgh", + "scheduled_service": "yes", + "gps_code": "EGPH", + "iata_code": "EDI", + "home_link": "http://www.edinburghairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Edinburgh_Airport" + }, + { + "id": "2463", + "ident": "EGPI", + "type": "medium_airport", + "name": "Islay Airport", + "latitude_deg": "55.68190002441406", + "longitude_deg": "-6.256669998168945", + "elevation_ft": "56", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Port Ellen", + "scheduled_service": "yes", + "gps_code": "EGPI", + "iata_code": "ILY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Islay_Airport", + "keywords": "Glenegedale" + }, + { + "id": "29172", + "ident": "EGPJ", + "type": "small_airport", + "name": "Fife Airport", + "latitude_deg": "56.1833", + "longitude_deg": "-3.22028", + "elevation_ft": "399", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Glenrothes", + "scheduled_service": "no", + "gps_code": "EGPJ" + }, + { + "id": "2464", + "ident": "EGPK", + "type": "medium_airport", + "name": "Glasgow Prestwick Airport", + "latitude_deg": "55.502003", + "longitude_deg": "-4.587019", + "elevation_ft": "65", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Prestwick, South Ayrshire", + "scheduled_service": "yes", + "gps_code": "EGPK", + "iata_code": "PIK", + "home_link": "http://www.glasgowprestwick.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Glasgow_Prestwick_International_Airport" + }, + { + "id": "2465", + "ident": "EGPL", + "type": "medium_airport", + "name": "Benbecula Airport", + "latitude_deg": "57.48109817504883", + "longitude_deg": "-7.3627800941467285", + "elevation_ft": "19", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Balivanich", + "scheduled_service": "yes", + "gps_code": "EGPL", + "iata_code": "BEB", + "home_link": "http://www.hial.co.uk/benbecula-airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Benbecula_Airport" + }, + { + "id": "2466", + "ident": "EGPM", + "type": "medium_airport", + "name": "Scatsta Airport", + "latitude_deg": "60.43280029296875", + "longitude_deg": "-1.2961100339889526", + "elevation_ft": "81", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Shetland Islands", + "scheduled_service": "no", + "gps_code": "EGPM", + "iata_code": "SCS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Scatsta_Airport" + }, + { + "id": "2467", + "ident": "EGPN", + "type": "medium_airport", + "name": "Dundee Airport", + "latitude_deg": "56.45249938964844", + "longitude_deg": "-3.025830030441284", + "elevation_ft": "17", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Dundee", + "scheduled_service": "yes", + "gps_code": "EGPN", + "iata_code": "DND", + "home_link": "http://www.hial.co.uk/dundee-airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dundee_Airport" + }, + { + "id": "2468", + "ident": "EGPO", + "type": "medium_airport", + "name": "Stornoway Airport", + "latitude_deg": "58.215599", + "longitude_deg": "-6.33111", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Stornoway, Western Isles", + "scheduled_service": "yes", + "gps_code": "EGPO", + "iata_code": "SYY", + "home_link": "http://www.hial.co.uk/stornoway-airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stornoway_Airport", + "keywords": "Lewis" + }, + { + "id": "29173", + "ident": "EGPR", + "type": "medium_airport", + "name": "Barra Airport", + "latitude_deg": "57.0228", + "longitude_deg": "-7.44306", + "elevation_ft": "5", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Eoligarry", + "scheduled_service": "yes", + "gps_code": "EGPR", + "iata_code": "BRR", + "home_link": "http://www.hial.co.uk/barra-airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barra_Airport_(Scotland)", + "keywords": "Barra Eoligarry Airport, Barra Island" + }, + { + "id": "29174", + "ident": "EGPS", + "type": "small_airport", + "name": "Longside Airfield", + "latitude_deg": "57.516836", + "longitude_deg": "-1.864586", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Peterhead", + "scheduled_service": "no", + "gps_code": "EGPS" + }, + { + "id": "29175", + "ident": "EGPT", + "type": "small_airport", + "name": "Perth/Scone Airport", + "latitude_deg": "56.43920135498047", + "longitude_deg": "-3.372220039367676", + "elevation_ft": "397", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Perth", + "scheduled_service": "no", + "gps_code": "EGPT", + "iata_code": "PSL" + }, + { + "id": "2469", + "ident": "EGPU", + "type": "medium_airport", + "name": "Tiree Airport", + "latitude_deg": "56.49919891357422", + "longitude_deg": "-6.869170188903809", + "elevation_ft": "38", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Balemartine", + "scheduled_service": "yes", + "gps_code": "EGPU", + "iata_code": "TRE", + "home_link": "http://www.hial.co.uk/tiree-airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tiree_Airport", + "keywords": "Inner Hebrides" + }, + { + "id": "29176", + "ident": "EGPW", + "type": "small_airport", + "name": "Unst Airport", + "latitude_deg": "60.74720001220703", + "longitude_deg": "-0.8538500070571899", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Shetland Islands", + "scheduled_service": "no", + "gps_code": "EGPW", + "iata_code": "UNT" + }, + { + "id": "29177", + "ident": "EGPY", + "type": "closed", + "name": "Dounreay/Thurso Airport", + "latitude_deg": "58.5839", + "longitude_deg": "-3.72694", + "elevation_ft": "22", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Thurso", + "scheduled_service": "no", + "gps_code": "EGPY", + "keywords": "HMS Tern" + }, + { + "id": "29178", + "ident": "EGQB", + "type": "closed", + "name": "RAF Ballykelly Air Base (abandoned)", + "latitude_deg": "55.060299", + "longitude_deg": "-7.02028", + "elevation_ft": "85", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Ballykelly", + "scheduled_service": "no", + "gps_code": "EGQB", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Ballykelly", + "keywords": "RAF Ballykelly" + }, + { + "id": "2470", + "ident": "EGQK", + "type": "closed", + "name": "RAF Kinloss", + "latitude_deg": "57.649399", + "longitude_deg": "-3.56064", + "elevation_ft": "22", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Kinloss", + "scheduled_service": "no", + "gps_code": "EGQK", + "iata_code": "FSS", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Kinloss" + }, + { + "id": "2471", + "ident": "EGQL", + "type": "medium_airport", + "name": "Leuchars Station Airfield", + "latitude_deg": "56.37398", + "longitude_deg": "-2.868862", + "elevation_ft": "38", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Leuchars, Fife", + "scheduled_service": "no", + "gps_code": "EGQL", + "iata_code": "ADX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leuchars_Station" + }, + { + "id": "2472", + "ident": "EGQS", + "type": "medium_airport", + "name": "RAF Lossiemouth", + "latitude_deg": "57.7052001953125", + "longitude_deg": "-3.339169979095459", + "elevation_ft": "42", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Lossiemouth", + "scheduled_service": "no", + "gps_code": "EGQS", + "iata_code": "LMO", + "home_link": "http://www.raf.mod.uk/raflossiemouth/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Lossiemouth" + }, + { + "id": "29179", + "ident": "EGSA", + "type": "small_airport", + "name": "Shipdham Airfield", + "latitude_deg": "52.6293983459", + "longitude_deg": "0.9280560016630001", + "elevation_ft": "210", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "East Dereham", + "scheduled_service": "no", + "gps_code": "EGSA", + "home_link": "http://www.shipdhamaeroclub.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Shipdham", + "keywords": "RAF Shipdham" + }, + { + "id": "29180", + "ident": "EGSB", + "type": "closed", + "name": "Castle Mill Airfield", + "latitude_deg": "52.14329910279999", + "longitude_deg": "-0.406111001968", + "elevation_ft": "154", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bedford", + "scheduled_service": "no", + "gps_code": "EGSB" + }, + { + "id": "2473", + "ident": "EGSC", + "type": "medium_airport", + "name": "Cambridge Airport", + "latitude_deg": "52.205002", + "longitude_deg": "0.175", + "elevation_ft": "47", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "EGSC", + "iata_code": "CBG", + "home_link": "http://www.cambridgeairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cambridge_Airport", + "keywords": "Cambridge City,Cambridge" + }, + { + "id": "29181", + "ident": "EGSD", + "type": "closed", + "name": "Great Yarmouth - North Denes Airport", + "latitude_deg": "52.634626", + "longitude_deg": "1.722815", + "elevation_ft": "6", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Great Yarmouth", + "scheduled_service": "no", + "gps_code": "EGSD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Great_Yarmouth_-_North_Denes_Airport" + }, + { + "id": "2474", + "ident": "EGSF", + "type": "small_airport", + "name": "Peterborough Business Airport", + "latitude_deg": "52.468101501464844", + "longitude_deg": "-0.2511110007762909", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Conington", + "scheduled_service": "no", + "gps_code": "EGSF", + "home_link": "http://www.aerolease.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Peterborough_Business_Airport", + "keywords": "Conington Airport, RAF Glatton" + }, + { + "id": "29182", + "ident": "EGSG", + "type": "small_airport", + "name": "Stapleford Aerodrome", + "latitude_deg": "51.652500152600005", + "longitude_deg": "0.155833005905", + "elevation_ft": "183", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Stapleford Tawney", + "scheduled_service": "no", + "gps_code": "EGSG", + "home_link": "http://www.flysfc.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stapleford_Aerodrome", + "keywords": "Epping Forest, RAF Stapleford Tawney" + }, + { + "id": "2475", + "ident": "EGSH", + "type": "medium_airport", + "name": "Norwich International Airport", + "latitude_deg": "52.6758", + "longitude_deg": "1.28278", + "elevation_ft": "117", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Norwich", + "scheduled_service": "yes", + "gps_code": "EGSH", + "iata_code": "NWI", + "home_link": "http://www.norwichairport.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Norwich_International_Airport", + "keywords": "RAF Horsham St Faith" + }, + { + "id": "307882", + "ident": "EGSI", + "type": "small_airport", + "name": "Marshland Airfield", + "latitude_deg": "52.643611", + "longitude_deg": "0.295", + "elevation_ft": "-6", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Wisbech", + "scheduled_service": "no", + "gps_code": "EGSI" + }, + { + "id": "29183", + "ident": "EGSJ", + "type": "small_airport", + "name": "Seething Airfield", + "latitude_deg": "52.511100769", + "longitude_deg": "1.4172199964499999", + "elevation_ft": "130", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Seething", + "scheduled_service": "no", + "gps_code": "EGSJ", + "home_link": "http://www.seething-airfield.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Seething_Airfield", + "keywords": "RAF Seething" + }, + { + "id": "29184", + "ident": "EGSK", + "type": "closed", + "name": "RAF Hethel", + "latitude_deg": "52.562801361083984", + "longitude_deg": "1.1733299493789673", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hethel", + "scheduled_service": "no", + "gps_code": "EGSK", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Hethel" + }, + { + "id": "29185", + "ident": "EGSL", + "type": "small_airport", + "name": "Andrewsfield", + "latitude_deg": "51.895", + "longitude_deg": "0.449167", + "elevation_ft": "286", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Braintree", + "scheduled_service": "no", + "gps_code": "EGSL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Andrewsfield_Airport", + "keywords": "RAF Andrews Field" + }, + { + "id": "29186", + "ident": "EGSM", + "type": "small_airport", + "name": "Beccles Airfield", + "latitude_deg": "52.435299", + "longitude_deg": "1.61833", + "elevation_ft": "80", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Beccles", + "scheduled_service": "no", + "gps_code": "EGSM", + "home_link": "https://becclesaerodrome.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beccles_Airfield", + "keywords": "RAF Beccles" + }, + { + "id": "29187", + "ident": "EGSN", + "type": "small_airport", + "name": "Bourn Airfield", + "latitude_deg": "52.210602", + "longitude_deg": "-0.0425", + "elevation_ft": "226", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "EGSN", + "home_link": "http://www.rfcbourn.flyer.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bourn_Airport", + "keywords": "RAF Bourn" + }, + { + "id": "29188", + "ident": "EGSO", + "type": "small_airport", + "name": "Crowfield Airfield", + "latitude_deg": "52.17110061649999", + "longitude_deg": "1.111109972", + "elevation_ft": "201", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Stowmarket", + "scheduled_service": "no", + "gps_code": "EGSO", + "home_link": "http://www.crowfieldairfield.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Crowfield_Airfield" + }, + { + "id": "29189", + "ident": "EGSP", + "type": "small_airport", + "name": "Peterborough/Sibson Airport", + "latitude_deg": "52.5558013916", + "longitude_deg": "-0.386388987303", + "elevation_ft": "130", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Peterborough", + "scheduled_service": "no", + "gps_code": "EGSP", + "home_link": "http://www.nsof.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Peterborough/Sibson_Airport" + }, + { + "id": "29190", + "ident": "EGSQ", + "type": "small_airport", + "name": "Clacton Airfield", + "latitude_deg": "51.785", + "longitude_deg": "1.13", + "elevation_ft": "37", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Clacton-on-Sea", + "scheduled_service": "no", + "gps_code": "EGSQ", + "home_link": "http://www.clacton-aero-club.uk.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clacton_Airport" + }, + { + "id": "29191", + "ident": "EGSR", + "type": "small_airport", + "name": "Earls Colne Airfield", + "latitude_deg": "51.9143981934", + "longitude_deg": "0.682500004768", + "elevation_ft": "226", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Earles Colne", + "scheduled_service": "no", + "gps_code": "EGSR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Earls_Colne_Airfield", + "keywords": "RAF Earls Colne" + }, + { + "id": "2476", + "ident": "EGSS", + "type": "large_airport", + "name": "London Stansted Airport", + "latitude_deg": "51.8849983215", + "longitude_deg": "0.234999999404", + "elevation_ft": "348", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "London", + "scheduled_service": "yes", + "gps_code": "EGSS", + "iata_code": "STN", + "home_link": "http://www.stanstedairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/London_Stansted_Airport", + "keywords": "LON" + }, + { + "id": "29192", + "ident": "EGST", + "type": "small_airport", + "name": "Elmsett Airfield", + "latitude_deg": "52.077202", + "longitude_deg": "0.9775", + "elevation_ft": "246", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hadleigh", + "scheduled_service": "no", + "gps_code": "EGST" + }, + { + "id": "2477", + "ident": "EGSU", + "type": "small_airport", + "name": "Duxford Aerodrome", + "latitude_deg": "52.090801", + "longitude_deg": "0.131944", + "elevation_ft": "125", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Duxford", + "scheduled_service": "no", + "gps_code": "EGSU", + "home_link": "http://www.iwm.org.uk/pilots", + "wikipedia_link": "https://en.wikipedia.org/wiki/Duxford_Aerodrome", + "keywords": "RAF Duxford,Duxford,IWM Duxford" + }, + { + "id": "29193", + "ident": "EGSV", + "type": "small_airport", + "name": "Old Buckenham Airfield", + "latitude_deg": "52.497501", + "longitude_deg": "1.05194", + "elevation_ft": "194", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Old Buckenham", + "scheduled_service": "no", + "gps_code": "EGSV", + "home_link": "http://www.oldbuck.com/en/home/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Old_Buckenham_Airport", + "keywords": "RAF Old Buckenham" + }, + { + "id": "29194", + "ident": "EGSW", + "type": "small_airport", + "name": "Newmarket Heath Airfield", + "latitude_deg": "52.235147", + "longitude_deg": "0.350643", + "elevation_ft": "100", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Newmarket", + "scheduled_service": "no", + "gps_code": "EGSW", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Newmarket", + "keywords": "RAF Newmarket" + }, + { + "id": "2478", + "ident": "EGSX", + "type": "small_airport", + "name": "North Weald Airport", + "latitude_deg": "51.721698761", + "longitude_deg": "0.154166996479", + "elevation_ft": "321", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "North Weald Bassett", + "scheduled_service": "no", + "gps_code": "EGSX", + "home_link": "http://www.northwealdairfield.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/North_Weald_Airfield", + "keywords": "RAF North Weald, Epping Forest" + }, + { + "id": "2479", + "ident": "EGSY", + "type": "closed", + "name": "Sheffield City Heliport", + "latitude_deg": "53.394299", + "longitude_deg": "-1.38849", + "elevation_ft": "231", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Sheffield", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sheffield_City_Airport", + "keywords": "SZD, EGSY" + }, + { + "id": "29195", + "ident": "EGTA", + "type": "closed", + "name": "Aylesbury/Thame Airfield", + "latitude_deg": "51.775799", + "longitude_deg": "-0.940278", + "elevation_ft": "289", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Aylesbury", + "scheduled_service": "no", + "gps_code": "EGTA" + }, + { + "id": "29196", + "ident": "EGTB", + "type": "small_airport", + "name": "Wycombe Air Park", + "latitude_deg": "51.6116981506", + "longitude_deg": "-0.8083329796790001", + "elevation_ft": "515", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "High Wycombe", + "scheduled_service": "no", + "gps_code": "EGTB", + "iata_code": "HYC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wycombe_Air_Park", + "keywords": "RAF Booker" + }, + { + "id": "2480", + "ident": "EGTC", + "type": "medium_airport", + "name": "Cranfield Airport", + "latitude_deg": "52.072201", + "longitude_deg": "-0.616667", + "elevation_ft": "360", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Cranfield", + "scheduled_service": "no", + "gps_code": "EGTC", + "home_link": "http://www.cranfieldairport.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cranfield_Airport", + "keywords": "cranfield, milton keynes, bedford" + }, + { + "id": "29197", + "ident": "EGTD", + "type": "small_airport", + "name": "Dunsfold Aerodrome", + "latitude_deg": "51.1171989441", + "longitude_deg": "-0.535833001137", + "elevation_ft": "172", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Dunsfold", + "scheduled_service": "no", + "gps_code": "EGTD", + "home_link": "http://www.dunsfoldpark.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dunsfold_Aerodrome" + }, + { + "id": "2481", + "ident": "EGTE", + "type": "medium_airport", + "name": "Exeter International Airport", + "latitude_deg": "50.734402", + "longitude_deg": "-3.41389", + "elevation_ft": "102", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Exeter", + "scheduled_service": "yes", + "gps_code": "EGTE", + "iata_code": "EXT", + "home_link": "http://www.exeter-airport.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Exeter_International_Airport" + }, + { + "id": "29198", + "ident": "EGTF", + "type": "small_airport", + "name": "Fairoaks Airport", + "latitude_deg": "51.348099", + "longitude_deg": "-0.558889", + "elevation_ft": "80", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Woking", + "scheduled_service": "no", + "gps_code": "EGTF", + "home_link": "https://fairoaksairport.uk", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fairoaks_Airport" + }, + { + "id": "2482", + "ident": "EGTG", + "type": "closed", + "name": "Bristol Filton Airport", + "latitude_deg": "51.5194015503", + "longitude_deg": "-2.59083008766", + "elevation_ft": "226", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bristol", + "scheduled_service": "no", + "gps_code": "EGTG", + "iata_code": "FZO", + "home_link": "http://www.bristolfilton.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bristol_Filton_Airport", + "keywords": "RAF Filton" + }, + { + "id": "29199", + "ident": "EGTH", + "type": "small_airport", + "name": "Old Warden Airfield", + "latitude_deg": "52.087883", + "longitude_deg": "-0.318727", + "elevation_ft": "110", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Old Warden", + "scheduled_service": "no", + "gps_code": "EGTH", + "keywords": "Shuttleworth" + }, + { + "id": "30064", + "ident": "EGTI", + "type": "closed", + "name": "Leavesden Aerodrome", + "latitude_deg": "51.68920135498047", + "longitude_deg": "-0.4205560088157654", + "elevation_ft": "335", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Watford", + "scheduled_service": "no", + "gps_code": "EGTI" + }, + { + "id": "2483", + "ident": "EGTK", + "type": "medium_airport", + "name": "Oxford (Kidlington) Airport", + "latitude_deg": "51.8368988037", + "longitude_deg": "-1.32000005245", + "elevation_ft": "270", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Kidlington", + "scheduled_service": "no", + "gps_code": "EGTK", + "iata_code": "OXF", + "home_link": "http://www.oxfordairport.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oxford_Airport", + "keywords": "RAF Kidlington" + }, + { + "id": "29200", + "ident": "EGTO", + "type": "small_airport", + "name": "Rochester Airport", + "latitude_deg": "51.351898193359375", + "longitude_deg": "0.5033329725265503", + "elevation_ft": "436", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Rochester", + "scheduled_service": "no", + "gps_code": "EGTO", + "iata_code": "RCS", + "home_link": "http://www.rochesterairport.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rochester_Airport_%28England%29" + }, + { + "id": "2484", + "ident": "EGTP", + "type": "small_airport", + "name": "Perranporth Airfield", + "latitude_deg": "50.33169937133789", + "longitude_deg": "-5.177499771118164", + "elevation_ft": "330", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Perranporth", + "scheduled_service": "no", + "gps_code": "EGTP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Perranporth_Airfield", + "keywords": "RAF Perranporth" + }, + { + "id": "29201", + "ident": "EGTR", + "type": "small_airport", + "name": "Elstree Airfield", + "latitude_deg": "51.6557998657", + "longitude_deg": "-0.325832992792", + "elevation_ft": "332", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Watford", + "scheduled_service": "no", + "gps_code": "EGTR" + }, + { + "id": "2485", + "ident": "EGTU", + "type": "small_airport", + "name": "Dunkeswell Airport", + "latitude_deg": "50.86", + "longitude_deg": "-3.2347222", + "elevation_ft": "839", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Dunkeswell", + "scheduled_service": "no", + "gps_code": "EGTU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dunkeswell_Aerodrome" + }, + { + "id": "29202", + "ident": "EGTW", + "type": "small_airport", + "name": "Oaksey Park Airport", + "latitude_deg": "51.632198333699996", + "longitude_deg": "-2.01471996307", + "elevation_ft": "250", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Malmesbury", + "scheduled_service": "no", + "gps_code": "EGTW" + }, + { + "id": "30508", + "ident": "EGUA", + "type": "closed", + "name": "RAF Upper Heyford", + "latitude_deg": "51.9375", + "longitude_deg": "-1.2488900423", + "elevation_ft": "436", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Upper Heyford", + "scheduled_service": "no", + "gps_code": "EGUA", + "iata_code": "UHF", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Upper_Heyford" + }, + { + "id": "2486", + "ident": "EGUB", + "type": "medium_airport", + "name": "RAF Benson", + "latitude_deg": "51.616401672399995", + "longitude_deg": "-1.09582996368", + "elevation_ft": "226", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Benson", + "scheduled_service": "no", + "gps_code": "EGUB", + "iata_code": "BEX", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Benson" + }, + { + "id": "29642", + "ident": "EGUD", + "type": "small_airport", + "name": "RAF Abingdon", + "latitude_deg": "51.690299987799996", + "longitude_deg": "-1.3166699409500002", + "elevation_ft": "259", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Abingdon", + "scheduled_service": "no", + "gps_code": "EGUD", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Abingdon", + "keywords": "ABB" + }, + { + "id": "307983", + "ident": "EGUK", + "type": "closed", + "name": "Waterbeach Airfield", + "latitude_deg": "52.281742", + "longitude_deg": "0.184532", + "elevation_ft": "19", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Waterbeach", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Waterbeach", + "keywords": "RAF Waterbeach" + }, + { + "id": "2487", + "ident": "EGUL", + "type": "medium_airport", + "name": "RAF Lakenheath", + "latitude_deg": "52.409302", + "longitude_deg": "0.561", + "elevation_ft": "32", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lakenheath", + "scheduled_service": "no", + "gps_code": "EGUL", + "iata_code": "LKZ", + "home_link": "http://www.lakenheath.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Lakenheath" + }, + { + "id": "2488", + "ident": "EGUN", + "type": "medium_airport", + "name": "RAF Mildenhall", + "latitude_deg": "52.3619", + "longitude_deg": "0.486406", + "elevation_ft": "33", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Mildenhall", + "scheduled_service": "no", + "gps_code": "EGUN", + "iata_code": "MHZ", + "home_link": "http://www.mildenhall.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Mildenhall" + }, + { + "id": "2489", + "ident": "EGUO", + "type": "closed", + "name": "RAF Colerne Air Base", + "latitude_deg": "51.439098", + "longitude_deg": "-2.28639", + "elevation_ft": "593", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Colerne", + "scheduled_service": "no", + "gps_code": "EGUO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Colerne_Airfield", + "keywords": "RAF Colerne" + }, + { + "id": "30401", + "ident": "EGUP", + "type": "small_airport", + "name": "RAF Sculthorpe", + "latitude_deg": "52.84669876098633", + "longitude_deg": "0.766389012336731", + "elevation_ft": "213", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Fakeham", + "scheduled_service": "no", + "gps_code": "EGUP", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Sculthorpe" + }, + { + "id": "307985", + "ident": "EGUT", + "type": "closed", + "name": "RAF Tangmere", + "latitude_deg": "50.845833", + "longitude_deg": "-0.706389", + "elevation_ft": "41", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Tangmere", + "scheduled_service": "no", + "gps_code": "EGUT", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Tangmere" + }, + { + "id": "307989", + "ident": "EGUV", + "type": "closed", + "name": "RAF Thorney Island", + "latitude_deg": "50.816048", + "longitude_deg": "-0.9200336", + "elevation_ft": "12", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "West Thorney", + "scheduled_service": "no", + "gps_code": "EGUV", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Thorney_Island" + }, + { + "id": "2490", + "ident": "EGUW", + "type": "medium_airport", + "name": "Wattisham Airfield", + "latitude_deg": "52.127451", + "longitude_deg": "0.956189", + "elevation_ft": "284", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Stowmarket", + "scheduled_service": "no", + "gps_code": "EGUW", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Wattisham" + }, + { + "id": "2491", + "ident": "EGUY", + "type": "medium_airport", + "name": "RAF Wyton", + "latitude_deg": "52.3572006226", + "longitude_deg": "-0.107832998037", + "elevation_ft": "135", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "St. Ives", + "scheduled_service": "no", + "gps_code": "EGUY", + "iata_code": "QUY", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Wyton" + }, + { + "id": "2492", + "ident": "EGVA", + "type": "medium_airport", + "name": "RAF Fairford", + "latitude_deg": "51.682201", + "longitude_deg": "-1.79003", + "elevation_ft": "286", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Fairford", + "scheduled_service": "no", + "gps_code": "EGVA", + "iata_code": "FFD", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Fairford" + }, + { + "id": "29204", + "ident": "EGVF", + "type": "heliport", + "name": "Fleetlands Heliport", + "latitude_deg": "50.8353004456", + "longitude_deg": "-1.1691700220099999", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Gosport", + "scheduled_service": "no", + "gps_code": "EGVF", + "iata_code": "PME" + }, + { + "id": "30567", + "ident": "EGVG", + "type": "closed", + "name": "RAF Woodbridge", + "latitude_deg": "52.09000015258789", + "longitude_deg": "1.4058300256729126", + "elevation_ft": "95", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Woodbridge", + "scheduled_service": "no", + "gps_code": "EGVG", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Woodbridge" + }, + { + "id": "29697", + "ident": "EGVJ", + "type": "closed", + "name": "RAF Bentwaters", + "latitude_deg": "52.1274986267", + "longitude_deg": "1.43472003937", + "elevation_ft": "85", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Woodbridge", + "scheduled_service": "no", + "gps_code": "EGVJ", + "iata_code": "BWY", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bentwaters" + }, + { + "id": "314589", + "ident": "EGVL", + "type": "closed", + "name": "RAF Little Rissington", + "latitude_deg": "51.8675", + "longitude_deg": "-1.695333", + "elevation_ft": "730", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "gps_code": "EGVL", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Little_Rissington" + }, + { + "id": "2493", + "ident": "EGVN", + "type": "medium_airport", + "name": "RAF Brize Norton", + "latitude_deg": "51.75", + "longitude_deg": "-1.58362", + "elevation_ft": "288", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Brize Norton", + "scheduled_service": "no", + "gps_code": "EGVN", + "iata_code": "BZZ", + "home_link": "http://www.raf.mod.uk/rafbrizenorton/passengers/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Brize_Norton", + "keywords": "Royal Air Force" + }, + { + "id": "2494", + "ident": "EGVO", + "type": "medium_airport", + "name": "RAF Odiham", + "latitude_deg": "51.2341003418", + "longitude_deg": "-0.94282501936", + "elevation_ft": "405", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Odiham", + "scheduled_service": "no", + "gps_code": "EGVO", + "iata_code": "ODH", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Odiham" + }, + { + "id": "29205", + "ident": "EGVP", + "type": "small_airport", + "name": "Middle Wallop Airfield", + "latitude_deg": "51.1394004822", + "longitude_deg": "-1.56860995293", + "elevation_ft": "297", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Middle Wallop", + "scheduled_service": "no", + "gps_code": "EGVP" + }, + { + "id": "32687", + "ident": "EGVT", + "type": "small_airport", + "name": "Wethersfield Air Base", + "latitude_deg": "51.971901", + "longitude_deg": "0.509444", + "elevation_ft": "322", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Wethersfield", + "scheduled_service": "no", + "gps_code": "EGVT", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Wethersfield", + "keywords": "RAF Wethersfield" + }, + { + "id": "30618", + "ident": "EGWA", + "type": "heliport", + "name": "Andover Airfield", + "latitude_deg": "51.2079048157", + "longitude_deg": "-1.528236866", + "elevation_ft": "249", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Andover", + "scheduled_service": "no", + "gps_code": "EGWA", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Andover", + "keywords": "RAF Andover, ADV" + }, + { + "id": "2495", + "ident": "EGWC", + "type": "medium_airport", + "name": "DCAE Cosford Air Base", + "latitude_deg": "52.639999", + "longitude_deg": "-2.30558", + "elevation_ft": "272", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Cosford", + "scheduled_service": "no", + "gps_code": "EGWC", + "home_link": "http://www.raf.mod.uk/dcaecosford/", + "wikipedia_link": "https://en.wikipedia.org/wiki/DCAE_Cosford", + "keywords": "RAF Cosford" + }, + { + "id": "29206", + "ident": "EGWE", + "type": "small_airport", + "name": "RAF Henlow", + "latitude_deg": "52.0181999207", + "longitude_deg": "-0.303849995136", + "elevation_ft": "206", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Henlow", + "scheduled_service": "no", + "gps_code": "EGWE", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Henlow" + }, + { + "id": "29207", + "ident": "EGWN", + "type": "small_airport", + "name": "RAF Halton", + "latitude_deg": "51.7906990051", + "longitude_deg": "-0.7379720211030001", + "elevation_ft": "370", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Halton", + "scheduled_service": "no", + "gps_code": "EGWN", + "home_link": "http://www.raf.mod.uk/rafhalton/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Halton" + }, + { + "id": "2496", + "ident": "EGWU", + "type": "medium_airport", + "name": "RAF Northolt", + "latitude_deg": "51.553001403799996", + "longitude_deg": "-0.418166995049", + "elevation_ft": "124", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "London", + "scheduled_service": "no", + "gps_code": "EGWU", + "iata_code": "NHT", + "home_link": "http://www.raf.mod.uk/rafnortholt/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Northolt" + }, + { + "id": "29652", + "ident": "EGWZ", + "type": "closed", + "name": "RAF Alconbury", + "latitude_deg": "52.374401092499994", + "longitude_deg": "-0.219722002745", + "elevation_ft": "157", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Huntingdon", + "scheduled_service": "no", + "gps_code": "EGWZ", + "iata_code": "AYH", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Alconbury" + }, + { + "id": "307364", + "ident": "EGXA", + "type": "closed", + "name": "RAF Manby", + "latitude_deg": "53.3611111111", + "longitude_deg": "0.0861111111111", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Manby", + "scheduled_service": "no", + "gps_code": "EGXA", + "home_link": "http://www.pastscape.org.uk/hob.aspx?a=0&hob_id=1402569", + "keywords": "Manby Airfield" + }, + { + "id": "30597", + "ident": "EGXB", + "type": "closed", + "name": "Binbrook Airfield", + "latitude_deg": "53.4467010498", + "longitude_deg": "-0.209999993443", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Grimsby", + "scheduled_service": "no", + "gps_code": "EGXB", + "iata_code": "GSY", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Binbrook", + "keywords": "Waltham, RAF Binbrook" + }, + { + "id": "2497", + "ident": "EGXC", + "type": "medium_airport", + "name": "RAF Coningsby", + "latitude_deg": "53.0929985046", + "longitude_deg": "-0.166014000773", + "elevation_ft": "25", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Coningsby", + "scheduled_service": "no", + "gps_code": "EGXC", + "iata_code": "QCY", + "home_link": "http://www.raf.mod.uk/rafconingsby", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Coningsby" + }, + { + "id": "2498", + "ident": "EGXD", + "type": "medium_airport", + "name": "RAF Dishforth", + "latitude_deg": "54.1371994019", + "longitude_deg": "-1.42025005817", + "elevation_ft": "117", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Dishforth", + "scheduled_service": "no", + "gps_code": "EGXD", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Dishforth", + "keywords": "Royal Air Force" + }, + { + "id": "2499", + "ident": "EGXE", + "type": "medium_airport", + "name": "RAF Leeming Air Base", + "latitude_deg": "54.2924", + "longitude_deg": "-1.5354", + "elevation_ft": "132", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Leeming", + "scheduled_service": "no", + "gps_code": "EGXE", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Leeming" + }, + { + "id": "2500", + "ident": "EGXG", + "type": "medium_airport", + "name": "Leeds East Airport", + "latitude_deg": "53.834301", + "longitude_deg": "-1.1955", + "elevation_ft": "29", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Church Fenton", + "scheduled_service": "no", + "gps_code": "EGCM", + "home_link": "http://www.leedseastairport.co.uk", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leeds_East_Airport", + "keywords": "RAF Church Fenton" + }, + { + "id": "2501", + "ident": "EGXH", + "type": "medium_airport", + "name": "RAF Honington", + "latitude_deg": "52.34260177612305", + "longitude_deg": "0.7729390263557434", + "elevation_ft": "174", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Thetford", + "scheduled_service": "no", + "gps_code": "EGXH", + "iata_code": "BEQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Honington" + }, + { + "id": "2502", + "ident": "EGXJ", + "type": "closed", + "name": "RAF Cottesmore", + "latitude_deg": "52.735699", + "longitude_deg": "-0.648769", + "elevation_ft": "461", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Cottesmore", + "scheduled_service": "no", + "gps_code": "EGXJ", + "iata_code": "OKH", + "home_link": "http://www.raf.mod.uk/rafcottesmore/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Cottesmore" + }, + { + "id": "29208", + "ident": "EGXN", + "type": "closed", + "name": "RAF Newton", + "latitude_deg": "52.966400146484375", + "longitude_deg": "-0.9894440174102783", + "elevation_ft": "180", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "gps_code": "EGXN", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Newton" + }, + { + "id": "2503", + "ident": "EGXP", + "type": "medium_airport", + "name": "RAF Scampton", + "latitude_deg": "53.307800293", + "longitude_deg": "-0.550832986832", + "elevation_ft": "202", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Scampton", + "scheduled_service": "no", + "gps_code": "EGXP", + "iata_code": "SQZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Scampton" + }, + { + "id": "30594", + "ident": "EGXQ", + "type": "closed", + "name": "RAF Lindholme", + "latitude_deg": "53.549999", + "longitude_deg": "-0.967", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Doncaster", + "scheduled_service": "no", + "gps_code": "EGXQ", + "home_link": "http://www.wartimememories.co.uk/airfields/lindholme.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Lindholme", + "keywords": "RAF Hatfield Woodhouse" + }, + { + "id": "30452", + "ident": "EGXS", + "type": "closed", + "name": "RAF Swinderby", + "latitude_deg": "53.14970016479492", + "longitude_deg": "-0.6822220087051392", + "elevation_ft": "69", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Swinderby", + "scheduled_service": "no", + "gps_code": "EGXS", + "home_link": "http://www.raf.mod.uk/bombercommand/s80.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Swinderby" + }, + { + "id": "2504", + "ident": "EGXT", + "type": "medium_airport", + "name": "RAF Wittering", + "latitude_deg": "52.612598", + "longitude_deg": "-0.476453", + "elevation_ft": "273", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Wittering", + "scheduled_service": "no", + "gps_code": "EGXT", + "home_link": "http://www.raf.mod.uk/rafwittering/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Wittering" + }, + { + "id": "2505", + "ident": "EGXU", + "type": "medium_airport", + "name": "RAF Linton-On-Ouse", + "latitude_deg": "54.0489006042", + "longitude_deg": "-1.2527500391", + "elevation_ft": "53", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Linton-On-Ouse", + "scheduled_service": "no", + "gps_code": "EGXU", + "iata_code": "HRT", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Linton-on-Ouse" + }, + { + "id": "29209", + "ident": "EGXV", + "type": "closed", + "name": "RAF Leconfield", + "latitude_deg": "53.875801", + "longitude_deg": "-0.435", + "elevation_ft": "36", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Leconfield", + "scheduled_service": "no", + "gps_code": "EGXV", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Leconfield" + }, + { + "id": "2506", + "ident": "EGXW", + "type": "medium_airport", + "name": "RAF Waddington", + "latitude_deg": "53.1661987305", + "longitude_deg": "-0.523810982704", + "elevation_ft": "231", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Waddington", + "scheduled_service": "no", + "gps_code": "EGXW", + "iata_code": "WTN", + "home_link": "http://www.raf.mod.uk/rafwaddington", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Waddington" + }, + { + "id": "2507", + "ident": "EGXY", + "type": "small_airport", + "name": "RAF Syerston", + "latitude_deg": "53.02280044555664", + "longitude_deg": "-0.9111109972000122", + "elevation_ft": "228", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Newark", + "scheduled_service": "no", + "gps_code": "EGXY", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Syerston" + }, + { + "id": "2508", + "ident": "EGXZ", + "type": "medium_airport", + "name": "RAF Topcliffe", + "latitude_deg": "54.205501556399994", + "longitude_deg": "-1.3820899725", + "elevation_ft": "92", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Topcliffe", + "scheduled_service": "no", + "gps_code": "EGXZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Topcliffe" + }, + { + "id": "29210", + "ident": "EGYC", + "type": "closed", + "name": "RAF Coltishall", + "latitude_deg": "52.7547", + "longitude_deg": "1.35722", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Norwich", + "scheduled_service": "no", + "gps_code": "EGYC", + "iata_code": "CLF", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Coltishall" + }, + { + "id": "2509", + "ident": "EGYD", + "type": "medium_airport", + "name": "RAF Cranwell", + "latitude_deg": "53.0303001404", + "longitude_deg": "-0.48324200511", + "elevation_ft": "218", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Cranwell", + "scheduled_service": "no", + "gps_code": "EGYD", + "home_link": "http://www.raf.mod.uk/rafcranwell/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Cranwell" + }, + { + "id": "2510", + "ident": "EGYE", + "type": "medium_airport", + "name": "RAF Barkston Heath", + "latitude_deg": "52.962200164799995", + "longitude_deg": "-0.561625003815", + "elevation_ft": "367", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Grantham", + "scheduled_service": "no", + "gps_code": "EGYE", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Barkston_Heath" + }, + { + "id": "30595", + "ident": "EGYI", + "type": "small_airport", + "name": "Strubby Glider Field", + "latitude_deg": "53.30775", + "longitude_deg": "0.16737", + "elevation_ft": "46", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Strubby", + "scheduled_service": "no", + "home_link": "http://www.lincsgliding.org.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Strubby", + "keywords": "RAF Strubby, Lincolnshire Gliding Club" + }, + { + "id": "2511", + "ident": "EGYM", + "type": "medium_airport", + "name": "RAF Marham", + "latitude_deg": "52.648395", + "longitude_deg": "0.550692", + "elevation_ft": "75", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Marham", + "scheduled_service": "no", + "gps_code": "EGYM", + "iata_code": "KNF", + "home_link": "http://www.raf.mod.uk/rafmarham/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Marham", + "keywords": "King's Lynn" + }, + { + "id": "317476", + "ident": "EGYO", + "type": "small_airport", + "name": "North Coates", + "latitude_deg": "53.498", + "longitude_deg": "0.0625", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "gps_code": "EGYO", + "home_link": "http://www.northcoatesflyingclub.co.uk/" + }, + { + "id": "2512", + "ident": "EGYP", + "type": "medium_airport", + "name": "Mount Pleasant Airport", + "latitude_deg": "-51.82279968261719", + "longitude_deg": "-58.447200775146484", + "elevation_ft": "244", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Mount Pleasant", + "scheduled_service": "yes", + "gps_code": "EGYP", + "iata_code": "MPN", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Mount_Pleasant", + "keywords": "RAF Mount Pleasant" + }, + { + "id": "314595", + "ident": "EGZL", + "type": "small_airport", + "name": "Feshiebridge Glider Field", + "latitude_deg": "57.103667", + "longitude_deg": "-3.891667", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no", + "gps_code": "EGZL", + "home_link": "http://www.gliding.org/" + }, + { + "id": "314597", + "ident": "EGZV", + "type": "small_airport", + "name": "Lundy Island Airfield", + "latitude_deg": "51.170505", + "longitude_deg": "-4.670758", + "elevation_ft": "455", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "gps_code": "EGZV" + }, + { + "id": "318923", + "ident": "EH-0001", + "type": "small_airport", + "name": "Tifariti Airstrip", + "latitude_deg": "26.15126", + "longitude_deg": "-10.564245", + "elevation_ft": "1624", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Tifariti", + "scheduled_service": "no", + "keywords": "GSSM" + }, + { + "id": "347407", + "ident": "EH-0002", + "type": "heliport", + "name": "Aousserd Heliport", + "latitude_deg": "22.5636", + "longitude_deg": "-14.31462", + "elevation_ft": "1047", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Aousserd", + "scheduled_service": "no" + }, + { + "id": "347408", + "ident": "EH-0003", + "type": "heliport", + "name": "Tichla Heliport", + "latitude_deg": "21.63065", + "longitude_deg": "-14.89377", + "elevation_ft": "650", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Tichla", + "scheduled_service": "no" + }, + { + "id": "347409", + "ident": "EH-0004", + "type": "heliport", + "name": "Bir Anzarane Heliport", + "latitude_deg": "23.88641", + "longitude_deg": "-14.53183", + "elevation_ft": "640", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Bir Anzarane", + "scheduled_service": "no" + }, + { + "id": "347410", + "ident": "EH-0005", + "type": "small_airport", + "name": "Oum Dreyga Airfield", + "latitude_deg": "24.0917", + "longitude_deg": "-13.3113", + "elevation_ft": "948", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Oum Dreyga", + "scheduled_service": "no" + }, + { + "id": "347411", + "ident": "EH-0006", + "type": "heliport", + "name": "Oum Dreyga Heliport", + "latitude_deg": "24.109193", + "longitude_deg": "-13.327454", + "elevation_ft": "931", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Oum Dreyga", + "scheduled_service": "no" + }, + { + "id": "347412", + "ident": "EH-0007", + "type": "small_airport", + "name": "Al Mahbes UN Airstrip", + "latitude_deg": "27.418767", + "longitude_deg": "-9.171517", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Al Mahbes", + "scheduled_service": "no" + }, + { + "id": "347413", + "ident": "EH-0008", + "type": "small_airport", + "name": "Al Farssia Airstrip", + "latitude_deg": "27.24568", + "longitude_deg": "-9.47312", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Al Farssia", + "scheduled_service": "no" + }, + { + "id": "347414", + "ident": "EH-0009", + "type": "heliport", + "name": "Boujdour Military Heliport", + "latitude_deg": "26.10788", + "longitude_deg": "-14.48609", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Boujdour", + "scheduled_service": "no" + }, + { + "id": "347415", + "ident": "EH-0010", + "type": "heliport", + "name": "Gueltat Zemmour Heliport", + "latitude_deg": "25.15038", + "longitude_deg": "-12.36986", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Gueltat Zemmour", + "scheduled_service": "no" + }, + { + "id": "347416", + "ident": "EH-0011", + "type": "small_airport", + "name": "Boukraa Airport", + "latitude_deg": "26.35988", + "longitude_deg": "-12.84913", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Boukraa", + "scheduled_service": "no" + }, + { + "id": "347417", + "ident": "EH-0012", + "type": "heliport", + "name": "Dcheira Heliport", + "latitude_deg": "27.00162", + "longitude_deg": "-12.98781", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Dcheira", + "scheduled_service": "no" + }, + { + "id": "347418", + "ident": "EH-0013", + "type": "small_airport", + "name": "Agounit Airport", + "latitude_deg": "22.20343", + "longitude_deg": "-13.14609", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Agounit", + "scheduled_service": "no" + }, + { + "id": "347420", + "ident": "EH-0014", + "type": "heliport", + "name": "Bir Lehlou Heliport", + "latitude_deg": "26.32541", + "longitude_deg": "-9.54894", + "elevation_ft": "1545", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Bir Lehlou", + "scheduled_service": "no" + }, + { + "id": "347422", + "ident": "EH-0015", + "type": "heliport", + "name": "Mijek Heliport", + "latitude_deg": "23.44641", + "longitude_deg": "-12.81737", + "elevation_ft": "911", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Mijek", + "scheduled_service": "no" + }, + { + "id": "429801", + "ident": "EH-0016", + "type": "small_airport", + "name": "Aousserd MINURSO Airstrip", + "latitude_deg": "22.5831", + "longitude_deg": "-14.35505", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Aousserd", + "scheduled_service": "no" + }, + { + "id": "429802", + "ident": "EH-0017", + "type": "heliport", + "name": "Aousserd MINURSO Heliport", + "latitude_deg": "22.56279", + "longitude_deg": "-14.33507", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Aousserd", + "scheduled_service": "no" + }, + { + "id": "429803", + "ident": "EH-0018", + "type": "heliport", + "name": "El Argoub Heliport", + "latitude_deg": "23.60283", + "longitude_deg": "-15.87001", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "El Argoub", + "scheduled_service": "no" + }, + { + "id": "429804", + "ident": "EH-0019", + "type": "heliport", + "name": "Guerguerat Border Heliport", + "latitude_deg": "21.369", + "longitude_deg": "-16.95759", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Guerguerat", + "scheduled_service": "no" + }, + { + "id": "429805", + "ident": "EH-0020", + "type": "small_airport", + "name": "Guerguerat Airport", + "latitude_deg": "21.3915", + "longitude_deg": "-16.95683", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Guerguerat", + "scheduled_service": "no" + }, + { + "id": "429806", + "ident": "EH-0021", + "type": "heliport", + "name": "Bir Gandouz Heliport", + "latitude_deg": "21.61217", + "longitude_deg": "-16.46674", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Bir Gandouz", + "scheduled_service": "no" + }, + { + "id": "429807", + "ident": "EH-0022", + "type": "heliport", + "name": "Barbas Heliport", + "latitude_deg": "22.05675", + "longitude_deg": "-16.75565", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Barbas", + "scheduled_service": "no" + }, + { + "id": "429808", + "ident": "EH-0023", + "type": "heliport", + "name": "Barbas Heliport", + "latitude_deg": "22.05675", + "longitude_deg": "-16.75565", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Barbas", + "scheduled_service": "no" + }, + { + "id": "320814", + "ident": "EH58", + "type": "heliport", + "name": "Brunssum Joint Force Command Heliport", + "latitude_deg": "50.9437", + "longitude_deg": "6.0052", + "elevation_ft": "356", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-LI", + "municipality": "Brunssum", + "scheduled_service": "no", + "local_code": "EH58" + }, + { + "id": "340490", + "ident": "EHAD", + "type": "heliport", + "name": "Ameland Heliport", + "latitude_deg": "53.450925", + "longitude_deg": "5.682351", + "elevation_ft": "11", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-FR", + "municipality": "Ameland", + "scheduled_service": "no", + "gps_code": "EHAD", + "home_link": "https://www.ehal.nl/", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Ameland_Airport_Ballum" + }, + { + "id": "28120", + "ident": "EHAL", + "type": "small_airport", + "name": "Ameland Airfield", + "latitude_deg": "53.453612", + "longitude_deg": "5.678396", + "elevation_ft": "11", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-FR", + "municipality": "Ameland", + "scheduled_service": "no", + "gps_code": "EHAL", + "home_link": "http://www.ehal.nl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ameland_Airport", + "keywords": "Aachen" + }, + { + "id": "2513", + "ident": "EHAM", + "type": "large_airport", + "name": "Amsterdam Airport Schiphol", + "latitude_deg": "52.308601", + "longitude_deg": "4.76389", + "elevation_ft": "-11", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NH", + "municipality": "Amsterdam", + "scheduled_service": "yes", + "gps_code": "EHAM", + "iata_code": "AMS", + "home_link": "http://www.schiphol.nl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amsterdam_Airport_Schiphol" + }, + { + "id": "2514", + "ident": "EHBD", + "type": "medium_airport", + "name": "Budel Airfield Kempen", + "latitude_deg": "51.255299", + "longitude_deg": "5.60139", + "elevation_ft": "114", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NB", + "municipality": "Weert", + "scheduled_service": "no", + "gps_code": "EHBD", + "home_link": "http://www.kempenairport.nl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kempen_Airport", + "keywords": "Kempen Airport, Budel Aerodrome" + }, + { + "id": "2515", + "ident": "EHBK", + "type": "medium_airport", + "name": "Maastricht Aachen Airport", + "latitude_deg": "50.911701", + "longitude_deg": "5.77014", + "elevation_ft": "375", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-LI", + "municipality": "Maastricht", + "scheduled_service": "yes", + "gps_code": "EHBK", + "iata_code": "MST", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maastricht_Aachen_Airport" + }, + { + "id": "2516", + "ident": "EHDL", + "type": "medium_airport", + "name": "Deelen Air Base", + "latitude_deg": "52.0606", + "longitude_deg": "5.87306", + "elevation_ft": "158", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-GE", + "municipality": "Arnhem", + "scheduled_service": "no", + "gps_code": "EHDL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Deelen_Air_Base", + "keywords": "QAR" + }, + { + "id": "29211", + "ident": "EHDP", + "type": "medium_airport", + "name": "De Peel Air Base", + "latitude_deg": "51.51729965209961", + "longitude_deg": "5.855720043182373", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-LI", + "municipality": "Venray", + "scheduled_service": "no", + "gps_code": "EHDP", + "home_link": "http://www.defensie.nl/luchtmacht/luchtmachtbases/de_peel/", + "wikipedia_link": "https://en.wikipedia.org/wiki/De_Peel_Air_Base" + }, + { + "id": "2517", + "ident": "EHDR", + "type": "small_airport", + "name": "Drachten Airfield", + "latitude_deg": "53.117933", + "longitude_deg": "6.127324", + "elevation_ft": "14", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-FR", + "municipality": "Drachten", + "scheduled_service": "no", + "gps_code": "EHDR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Drachten_Airfield" + }, + { + "id": "299211", + "ident": "EHDS", + "type": "small_airport", + "name": "Aero Club Salland", + "latitude_deg": "52.4683333333", + "longitude_deg": "6.33333333333", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-OV", + "municipality": "Lemelerveld", + "scheduled_service": "no", + "gps_code": "EHDS", + "home_link": "http://aeroclubsalland.nl/", + "wikipedia_link": "http://nl.wikipedia.org/wiki/Aero_Club_Salland", + "keywords": "Dalfsen Gliders" + }, + { + "id": "2518", + "ident": "EHEH", + "type": "large_airport", + "name": "Eindhoven Airport", + "latitude_deg": "51.4500999451", + "longitude_deg": "5.37452983856", + "elevation_ft": "74", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NB", + "municipality": "Eindhoven", + "scheduled_service": "yes", + "gps_code": "EHEH", + "iata_code": "EIN", + "home_link": "http://www.eindhovenairport.nl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eindhoven_Airport", + "keywords": "Welschap Airport" + }, + { + "id": "2519", + "ident": "EHGG", + "type": "medium_airport", + "name": "Eelde Airport", + "latitude_deg": "53.1197013855", + "longitude_deg": "6.57944011688", + "elevation_ft": "17", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-DR", + "municipality": "Groningen", + "scheduled_service": "yes", + "gps_code": "EHGG", + "iata_code": "GRQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Groningen_Airport_Eelde" + }, + { + "id": "2520", + "ident": "EHGR", + "type": "medium_airport", + "name": "Gilze Rijen Air Base", + "latitude_deg": "51.56740188598633", + "longitude_deg": "4.931829929351807", + "elevation_ft": "49", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NB", + "municipality": "Breda", + "scheduled_service": "no", + "gps_code": "EHGR", + "iata_code": "GLZ", + "home_link": "http://www.defensie.nl/luchtmacht/luchtmachtbases/gilze-rijen/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gilze-Rijen_Air_Base" + }, + { + "id": "43207", + "ident": "EHHA", + "type": "heliport", + "name": "Amsterdam Heliport", + "latitude_deg": "52.4146250808", + "longitude_deg": "4.804801940920001", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NH", + "municipality": "Amsterdam", + "scheduled_service": "no", + "gps_code": "EHHA", + "home_link": "http://www.amsterdamheliport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amsterdam_Heliport" + }, + { + "id": "332213", + "ident": "EHHE", + "type": "heliport", + "name": "Eemshaven Heliport", + "latitude_deg": "53.461813", + "longitude_deg": "6.81437", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-GR", + "municipality": "Het Hogeland", + "scheduled_service": "no", + "gps_code": "EHHE", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Heliport_Eemshaven" + }, + { + "id": "28121", + "ident": "EHHO", + "type": "small_airport", + "name": "Hoogeveen Airfield", + "latitude_deg": "52.730801", + "longitude_deg": "6.51611", + "elevation_ft": "40", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-DR", + "municipality": "Hoogeveen", + "scheduled_service": "no", + "gps_code": "EHHO", + "home_link": "http://www.vliegveldhoogeveen.nl/pages/whiterings_indexpag.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hoogeveen_Airport" + }, + { + "id": "28122", + "ident": "EHHV", + "type": "small_airport", + "name": "Hilversum Airfield", + "latitude_deg": "52.191898", + "longitude_deg": "5.14694", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NH", + "municipality": "Hilversum", + "scheduled_service": "no", + "gps_code": "EHHV", + "home_link": "http://www.ehhv.nl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hilversum_Airport", + "keywords": "Gooi" + }, + { + "id": "322080", + "ident": "EHHW", + "type": "heliport", + "name": "Buitengaats / BG-OHVS2 Helipad", + "latitude_deg": "54.0369", + "longitude_deg": "6.041833", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-FR", + "municipality": "Gemini Wind Farm", + "scheduled_service": "no", + "gps_code": "EHHW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gemini_Wind_Farm" + }, + { + "id": "333830", + "ident": "EHJR", + "type": "heliport", + "name": "K13-A", + "latitude_deg": "53.217222", + "longitude_deg": "3.218889", + "elevation_ft": "125", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZH", + "scheduled_service": "no", + "gps_code": "EHJR", + "home_link": "https://www.wintershall-noordzee.nl/our-assets.html", + "wikipedia_link": "https://nl.wikipedia.org/wiki/K13A", + "keywords": "K13A, North Sea, Gas Platform" + }, + { + "id": "2521", + "ident": "EHKD", + "type": "medium_airport", + "name": "De Kooy Airport", + "latitude_deg": "52.92340087890625", + "longitude_deg": "4.780620098114014", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NH", + "municipality": "Den Helder", + "scheduled_service": "no", + "gps_code": "EHKD", + "iata_code": "DHR", + "wikipedia_link": "https://en.wikipedia.org/wiki/De_Kooy" + }, + { + "id": "2522", + "ident": "EHLE", + "type": "medium_airport", + "name": "Lelystad Airport", + "latitude_deg": "52.4603", + "longitude_deg": "5.52722", + "elevation_ft": "-13", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-FL", + "municipality": "Lelystad", + "scheduled_service": "yes", + "gps_code": "EHLE", + "iata_code": "LEY", + "home_link": "https://www.lelystadairport.nl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lelystad_Airport" + }, + { + "id": "2523", + "ident": "EHLW", + "type": "medium_airport", + "name": "Leeuwarden Air Base", + "latitude_deg": "53.228599548339844", + "longitude_deg": "5.760560035705566", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-FR", + "municipality": "Leeuwarden", + "scheduled_service": "no", + "gps_code": "EHLW", + "iata_code": "LWR", + "home_link": "http://www.defensie.nl/luchtmacht/luchtmachtbases/leeuwarden/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leeuwarden_Air_Base" + }, + { + "id": "29212", + "ident": "EHMC", + "type": "heliport", + "name": "Air Operations Control Station Nieuw Milligen", + "latitude_deg": "52.223172725400005", + "longitude_deg": "5.7678222656199996", + "elevation_ft": "171", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-GE", + "municipality": "Nieuw Milligen", + "scheduled_service": "no", + "gps_code": "EHMC", + "home_link": "http://www.defensie.nl/luchtmacht/luchtmachtbases/aocs_nieuw_milligen/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Air_Operations_Control_Station_Nieuw-Milligen" + }, + { + "id": "28123", + "ident": "EHMZ", + "type": "small_airport", + "name": "Midden-Zeeland Airfield", + "latitude_deg": "51.512199", + "longitude_deg": "3.73111", + "elevation_ft": "6", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZL", + "municipality": "Middelburg", + "scheduled_service": "no", + "gps_code": "EHMZ", + "home_link": "http://www.zeeland-airport.nl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Midden-Zeeland_Airport" + }, + { + "id": "316445", + "ident": "EHND", + "type": "small_airport", + "name": "Vliegveld Numansdorp", + "latitude_deg": "51.7530556", + "longitude_deg": "4.4552778", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZH", + "municipality": "Numansdorp", + "scheduled_service": "no", + "gps_code": "EHND" + }, + { + "id": "332661", + "ident": "EHNP", + "type": "closed", + "name": "Noordoostpolder / Emmeloord Aerodrome", + "latitude_deg": "52.73071", + "longitude_deg": "5.746676", + "elevation_ft": "-12", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-FL", + "scheduled_service": "no", + "gps_code": "EHNP", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Vliegveld_Noordoostpolder" + }, + { + "id": "46371", + "ident": "EHOW", + "type": "small_airport", + "name": "Oostwold Airfield", + "latitude_deg": "53.209758", + "longitude_deg": "7.036519", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-GR", + "scheduled_service": "no", + "gps_code": "EHOW", + "home_link": "http://www.oostwold-airport.nl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oostwold_Airport" + }, + { + "id": "2524", + "ident": "EHRD", + "type": "medium_airport", + "name": "Rotterdam The Hague Airport", + "latitude_deg": "51.956902", + "longitude_deg": "4.43722", + "elevation_ft": "-15", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZH", + "municipality": "Rotterdam", + "scheduled_service": "yes", + "gps_code": "EHRD", + "iata_code": "RTM", + "home_link": "https://www.rotterdamthehagueairport.nl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rotterdam_Airport", + "keywords": "Vliegveld Zestienhoven" + }, + { + "id": "333828", + "ident": "EHSA", + "type": "heliport", + "name": "Europlatform", + "latitude_deg": "51.99792", + "longitude_deg": "3.27481", + "elevation_ft": "62", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZH", + "scheduled_service": "no", + "gps_code": "EHSA", + "home_link": "https://www.windopzee.net/en/locations/europlatform/", + "keywords": "Europlatform, North Sea, Research Station" + }, + { + "id": "2525", + "ident": "EHSB", + "type": "closed", + "name": "Soesterberg Air Base", + "latitude_deg": "52.1273", + "longitude_deg": "5.27619", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-UT", + "municipality": "Soesterberg", + "scheduled_service": "no", + "gps_code": "EHSB", + "iata_code": "UTC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Soesterberg_Air_Base", + "keywords": "ACvZ, Amsterdamsche Club voor Zweefvliegen" + }, + { + "id": "333829", + "ident": "EHSC", + "type": "heliport", + "name": "Lichteiland Goeree", + "latitude_deg": "51.925", + "longitude_deg": "3.67", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZH", + "scheduled_service": "no", + "gps_code": "EHSC", + "home_link": "https://www.windopzee.net/en/locations/lichteiland-goeree/", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Lichtplatform_Goeree", + "keywords": "Lichteiland Goeree, North Sea, Research Station" + }, + { + "id": "28124", + "ident": "EHSE", + "type": "small_airport", + "name": "Seppe Airfield", + "latitude_deg": "51.554699", + "longitude_deg": "4.5525", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NB", + "municipality": "Hoeven", + "scheduled_service": "no", + "gps_code": "EHSE", + "home_link": "http://www.seppe-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Seppe_Airport" + }, + { + "id": "28125", + "ident": "EHST", + "type": "small_airport", + "name": "Stadskanaal Airfield", + "latitude_deg": "52.9986", + "longitude_deg": "7.02278", + "elevation_ft": "14", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-GR", + "municipality": "Stadskanaal", + "scheduled_service": "no", + "gps_code": "EHST", + "home_link": "http://www.ulv.nl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stadskanaal_Airfield" + }, + { + "id": "28126", + "ident": "EHTE", + "type": "small_airport", + "name": "Teuge Airport", + "latitude_deg": "52.2447013855", + "longitude_deg": "6.04666996002", + "elevation_ft": "17", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-GE", + "municipality": "Deventer", + "scheduled_service": "no", + "gps_code": "EHTE", + "home_link": "http://www.teuge-airport.nl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Teuge_Airport", + "keywords": "Teuge, Apeldoorn, Deventer" + }, + { + "id": "28127", + "ident": "EHTL", + "type": "small_airport", + "name": "Terlet Glider Field", + "latitude_deg": "52.057201", + "longitude_deg": "5.92444", + "elevation_ft": "276", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-GE", + "municipality": "Terlet", + "scheduled_service": "no", + "gps_code": "EHTL", + "home_link": "http://www.terlet.nl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Terlet_Airfield", + "keywords": "terlet, szt, gezc, Stichting Zweefvliegers Terlet, Gelderse Zweefvliegclub, De Thermiekbel" + }, + { + "id": "43209", + "ident": "EHTP", + "type": "heliport", + "name": "Maasvlakte Heliport", + "latitude_deg": "51.95940017700195", + "longitude_deg": "4.090000152587891", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZH", + "municipality": "Rotterdam", + "scheduled_service": "no", + "gps_code": "EHTP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maasvlakte_Heliport" + }, + { + "id": "2526", + "ident": "EHTW", + "type": "medium_airport", + "name": "Twente Airport", + "latitude_deg": "52.275833", + "longitude_deg": "6.889167", + "elevation_ft": "114", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-OV", + "municipality": "Enschede", + "scheduled_service": "no", + "gps_code": "EHTW", + "iata_code": "ENS", + "home_link": "https://www.twente-airport.nl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Enschede_Airport_Twente" + }, + { + "id": "28128", + "ident": "EHTX", + "type": "small_airport", + "name": "Texel Airfield", + "latitude_deg": "53.115299", + "longitude_deg": "4.83361", + "elevation_ft": "2", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NH", + "municipality": "Texel", + "scheduled_service": "no", + "gps_code": "EHTX", + "home_link": "http://www.texelairport.nl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Texel_International_Airport" + }, + { + "id": "347108", + "ident": "EHU", + "type": "closed", + "name": "Ezhou Huahu Airport (under construction)", + "latitude_deg": "30.341178", + "longitude_deg": "115.03926", + "elevation_ft": "86", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Ezhou", + "scheduled_service": "no", + "iata_code": "EHU" + }, + { + "id": "2527", + "ident": "EHVB", + "type": "closed", + "name": "Valkenburg Naval Air Base", + "latitude_deg": "52.166099548300004", + "longitude_deg": "4.41794013977", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZH", + "municipality": "Leiden", + "scheduled_service": "no", + "gps_code": "EHVB", + "iata_code": "LID", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valkenburg_Naval_Air_Base" + }, + { + "id": "2528", + "ident": "EHVK", + "type": "medium_airport", + "name": "Volkel Air Base", + "latitude_deg": "51.657222", + "longitude_deg": "5.7077778", + "elevation_ft": "72", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NB", + "municipality": "Uden", + "scheduled_service": "no", + "gps_code": "EHVK", + "home_link": "http://www.defensie.nl/luchtmacht/luchtmachtbases/volkel/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Volkel_Air_Base", + "keywords": "The Hague" + }, + { + "id": "43210", + "ident": "EHVL", + "type": "heliport", + "name": "Vlieland Heliport", + "latitude_deg": "53.296665", + "longitude_deg": "5.085833", + "elevation_ft": "37", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-FR", + "municipality": "Vlieland", + "scheduled_service": "no", + "gps_code": "EHVD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vlieland_Heliport" + }, + { + "id": "2529", + "ident": "EHWO", + "type": "medium_airport", + "name": "Woensdrecht Air Base", + "latitude_deg": "51.4491", + "longitude_deg": "4.34203", + "elevation_ft": "63", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NB", + "municipality": "Bergen Op Zoom", + "scheduled_service": "no", + "gps_code": "EHWO", + "iata_code": "WOE", + "home_link": "http://www.defensie.nl/luchtmacht/luchtmachtbases/woensdrecht/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Woensdrecht_Air_Base", + "keywords": "BZM" + }, + { + "id": "43208", + "ident": "EHYP", + "type": "heliport", + "name": "IJmuiden Heliport", + "latitude_deg": "52.469799", + "longitude_deg": "4.5933", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NH", + "municipality": "IJmuiden", + "scheduled_service": "no", + "gps_code": "EHYP", + "wikipedia_link": "https://en.wikipedia.org/wiki/IJmuiden_Heliport" + }, + { + "id": "29213", + "ident": "EIAB", + "type": "small_airport", + "name": "Abbeyshrule Aerodrome", + "latitude_deg": "53.59170150756836", + "longitude_deg": "-7.645559787750244", + "elevation_ft": "195", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-LD", + "municipality": "Abbeyshrule", + "scheduled_service": "no", + "gps_code": "EIAB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abbeyshrule_Aerodrome" + }, + { + "id": "30992", + "ident": "EIBA", + "type": "small_airport", + "name": "Ballyboughal Aerodrome", + "latitude_deg": "53.5055556", + "longitude_deg": "-6.2377778", + "elevation_ft": "180", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-D", + "municipality": "Fingal", + "scheduled_service": "no", + "gps_code": "EIBB", + "home_link": "http://www.eibb.ie" + }, + { + "id": "30993", + "ident": "EIBB", + "type": "closed", + "name": "Brittas Bay Airfield", + "latitude_deg": "52.858208", + "longitude_deg": "-6.06759", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-WW", + "municipality": "Brittas Bay", + "scheduled_service": "no", + "gps_code": "EIBB" + }, + { + "id": "29214", + "ident": "EIBN", + "type": "small_airport", + "name": "Bantry Aerodrome", + "latitude_deg": "51.6772", + "longitude_deg": "-9.487123", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-C", + "municipality": "Bantry", + "scheduled_service": "no", + "gps_code": "EIBN", + "iata_code": "BYT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bantry_Aerodrome", + "keywords": "Beanntraí" + }, + { + "id": "29215", + "ident": "EIBR", + "type": "small_airport", + "name": "Birr Aerodrome", + "latitude_deg": "53.07059860229492", + "longitude_deg": "-7.898330211639404", + "elevation_ft": "250", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-OY", + "municipality": "Birr", + "scheduled_service": "no", + "gps_code": "EIBR", + "home_link": "http://www.ormandflyingclub.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Birr_Aerodrome", + "keywords": "Biorra" + }, + { + "id": "29216", + "ident": "EIBT", + "type": "small_airport", + "name": "Belmullet Aerodrome", + "latitude_deg": "54.2228012085", + "longitude_deg": "-10.0307998657", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-MO", + "municipality": "Belmullet", + "scheduled_service": "no", + "gps_code": "EIBT", + "iata_code": "BLY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Belmullet_Aerodrome", + "keywords": "Béal an Mhuirthead" + }, + { + "id": "27309", + "ident": "EICA", + "type": "small_airport", + "name": "Connemara Regional Airport", + "latitude_deg": "53.23030090332031", + "longitude_deg": "-9.467780113220215", + "elevation_ft": "70", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-G", + "municipality": "Inverin", + "scheduled_service": "yes", + "gps_code": "EICA", + "iata_code": "NNR", + "home_link": "http://www.aerarannislands.ie/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aerfort_na_Minna", + "keywords": "Aerfort na Minna, Indreabhán" + }, + { + "id": "29217", + "ident": "EICB", + "type": "closed", + "name": "Castlebar Airport", + "latitude_deg": "53.8484", + "longitude_deg": "-9.28037", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-MO", + "municipality": "Castlebar", + "scheduled_service": "no", + "gps_code": "EICB", + "iata_code": "CLB", + "keywords": "CLB, EICB" + }, + { + "id": "44000", + "ident": "EICD", + "type": "closed", + "name": "Castlebridge Airport", + "latitude_deg": "52.369131", + "longitude_deg": "-6.451021", + "elevation_ft": "79", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-WX", + "municipality": "Wexford", + "scheduled_service": "no", + "keywords": "WEX, EICD" + }, + { + "id": "2530", + "ident": "EICK", + "type": "medium_airport", + "name": "Cork Airport", + "latitude_deg": "51.841301", + "longitude_deg": "-8.49111", + "elevation_ft": "502", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-C", + "municipality": "Cork", + "scheduled_service": "yes", + "gps_code": "EICK", + "iata_code": "ORK", + "home_link": "http://www.corkairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cork_Airport", + "keywords": "Aerfort Chorcaí" + }, + { + "id": "29218", + "ident": "EICL", + "type": "small_airport", + "name": "Clonbullogue Aerodrome", + "latitude_deg": "53.249656677246094", + "longitude_deg": "-7.122745513916016", + "elevation_ft": "240", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-OY", + "municipality": "Clonbullogue", + "scheduled_service": "no", + "gps_code": "EICL", + "home_link": "http://www.skydive.ie/about/location.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clonbullogue_Aerodrome" + }, + { + "id": "2531", + "ident": "EICM", + "type": "medium_airport", + "name": "Galway Airport", + "latitude_deg": "53.300201416015625", + "longitude_deg": "-8.941590309143066", + "elevation_ft": "81", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-G", + "municipality": "Galway", + "scheduled_service": "yes", + "gps_code": "EICM", + "iata_code": "GWY", + "home_link": "http://www.galwayairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Galway_Airport" + }, + { + "id": "29219", + "ident": "EICN", + "type": "small_airport", + "name": "Coonagh Aerodrome", + "latitude_deg": "52.666500091552734", + "longitude_deg": "-8.681830406188965", + "elevation_ft": "6", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-LK", + "municipality": "Limerick", + "scheduled_service": "no", + "gps_code": "EICN" + }, + { + "id": "30994", + "ident": "EICS", + "type": "closed", + "name": "Castleforbes Airport", + "latitude_deg": "53.778301", + "longitude_deg": "-7.83528", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-LD", + "municipality": "Castleforbes", + "scheduled_service": "no", + "gps_code": "EICS" + }, + { + "id": "2532", + "ident": "EIDL", + "type": "medium_airport", + "name": "Donegal Airport", + "latitude_deg": "55.0442008972168", + "longitude_deg": "-8.340999603271484", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-DL", + "municipality": "Donegal", + "scheduled_service": "yes", + "gps_code": "EIDL", + "iata_code": "CFN", + "home_link": "http://www.donegalairport.ie/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Donegal_Airport", + "keywords": "Gweedore" + }, + { + "id": "2533", + "ident": "EIDW", + "type": "large_airport", + "name": "Dublin Airport", + "latitude_deg": "53.421299", + "longitude_deg": "-6.27007", + "elevation_ft": "242", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-D", + "municipality": "Dublin", + "scheduled_service": "yes", + "gps_code": "EIDW", + "iata_code": "DUB", + "home_link": "http://www.dublinairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dublin_Airport", + "keywords": "Aerfort Bhaile Átha Cliath" + }, + { + "id": "43999", + "ident": "EIER", + "type": "small_airport", + "name": "Erinagh Airfield", + "latitude_deg": "52.8125", + "longitude_deg": "-8.282222", + "elevation_ft": "155", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-TA", + "municipality": "Nenagh", + "scheduled_service": "no", + "gps_code": "EIER" + }, + { + "id": "312096", + "ident": "EIFR", + "type": "heliport", + "name": "Finner Camp Heliport", + "latitude_deg": "54.49273", + "longitude_deg": "-8.24091", + "elevation_ft": "107", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-DL", + "municipality": "Ballyshannon", + "scheduled_service": "no", + "gps_code": "EIFR" + }, + { + "id": "29902", + "ident": "EIGM", + "type": "closed", + "name": "Gormanstown Aerodrome", + "latitude_deg": "53.6348", + "longitude_deg": "-6.2277", + "elevation_ft": "69", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-MH", + "municipality": "Gormanstown", + "scheduled_service": "no", + "gps_code": "EIGM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gormanston_Aerodrome" + }, + { + "id": "29906", + "ident": "EIGN", + "type": "small_airport", + "name": "Gowran Grange Aerodrome", + "latitude_deg": "53.1786003112793", + "longitude_deg": "-6.635280132293701", + "elevation_ft": "489", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-KE", + "municipality": "Swordlestown", + "scheduled_service": "no", + "gps_code": "EIGN" + }, + { + "id": "315675", + "ident": "EIHH", + "type": "small_airport", + "name": "Navan Airfield", + "latitude_deg": "53.695489", + "longitude_deg": "-6.654094", + "elevation_ft": "250", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-MH", + "municipality": "Navan", + "scheduled_service": "no", + "gps_code": "EIHH", + "home_link": "http://www.navanairfield.com/" + }, + { + "id": "29220", + "ident": "EIHN", + "type": "small_airport", + "name": "Hacketstown Aerodrome", + "latitude_deg": "52.85499954223633", + "longitude_deg": "-6.547220230102539", + "elevation_ft": "610", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-CW", + "municipality": "Hacketstown", + "scheduled_service": "no", + "gps_code": "EIHN", + "keywords": "Baile Haicéid" + }, + { + "id": "43996", + "ident": "EIIH", + "type": "small_airport", + "name": "Abbeyleix Airfield", + "latitude_deg": "52.892223", + "longitude_deg": "-7.262778", + "elevation_ft": "614", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-LS", + "municipality": "Abbeyleix", + "scheduled_service": "no", + "keywords": "Midland Microlight Centre" + }, + { + "id": "29221", + "ident": "EIIM", + "type": "small_airport", + "name": "Inishmore Aerodrome", + "latitude_deg": "53.1067008972168", + "longitude_deg": "-9.653610229492188", + "elevation_ft": "24", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-G", + "municipality": "Inis Mór", + "scheduled_service": "yes", + "gps_code": "EIIM", + "iata_code": "IOR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Inishmore_Aerodrome", + "keywords": "Aran Islands" + }, + { + "id": "29222", + "ident": "EIIR", + "type": "small_airport", + "name": "Inisheer Aerodrome", + "latitude_deg": "53.064701", + "longitude_deg": "-9.5109", + "elevation_ft": "40", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-G", + "municipality": "Inis Oírr", + "scheduled_service": "yes", + "gps_code": "EIIR", + "iata_code": "INQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Inisheer_Aerodrome", + "keywords": "Aran Islands" + }, + { + "id": "29223", + "ident": "EIKH", + "type": "small_airport", + "name": "Kildare Aerodrome", + "latitude_deg": "53.0635986328125", + "longitude_deg": "-6.855279922485352", + "elevation_ft": "260", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-KE", + "municipality": "Kilrush", + "scheduled_service": "no", + "gps_code": "EIKH" + }, + { + "id": "30997", + "ident": "EIKI", + "type": "closed", + "name": "Killenaule Airfield", + "latitude_deg": "52.634261", + "longitude_deg": "-7.635262", + "elevation_ft": "680", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-TA", + "municipality": "Killenaule", + "scheduled_service": "no", + "keywords": "EIKI" + }, + { + "id": "29224", + "ident": "EIKK", + "type": "small_airport", + "name": "Kilkenny Airport", + "latitude_deg": "52.65079879760742", + "longitude_deg": "-7.296110153198242", + "elevation_ft": "319", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-KK", + "municipality": "Kilkenny", + "scheduled_service": "no", + "gps_code": "EIKK", + "iata_code": "KKY", + "home_link": "http://www.kilkennyflying-glidingclub.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kilkenny_Airport", + "keywords": "EIKL" + }, + { + "id": "2534", + "ident": "EIKN", + "type": "medium_airport", + "name": "Ireland West Knock Airport", + "latitude_deg": "53.910301", + "longitude_deg": "-8.81849", + "elevation_ft": "665", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-MO", + "municipality": "Charlestown", + "scheduled_service": "yes", + "gps_code": "EIKN", + "iata_code": "NOC", + "home_link": "http://www.irelandwestairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ireland_West_Airport_Knock", + "keywords": "Connaught" + }, + { + "id": "2535", + "ident": "EIKY", + "type": "medium_airport", + "name": "Kerry Airport", + "latitude_deg": "52.180901", + "longitude_deg": "-9.52378", + "elevation_ft": "112", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-KY", + "municipality": "Killarney", + "scheduled_service": "yes", + "gps_code": "EIKY", + "iata_code": "KIR", + "home_link": "http://www.kerryairport.ie/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kerry_Airport" + }, + { + "id": "29225", + "ident": "EILT", + "type": "small_airport", + "name": "Letterkenny Airfield", + "latitude_deg": "54.951302", + "longitude_deg": "-7.67283", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-DL", + "municipality": "Letterkenny", + "scheduled_service": "no", + "gps_code": "EILT", + "iata_code": "LTR" + }, + { + "id": "2536", + "ident": "EIME", + "type": "medium_airport", + "name": "Casement Air Base", + "latitude_deg": "53.301700592", + "longitude_deg": "-6.451330184940001", + "elevation_ft": "319", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-D", + "municipality": "Baldonnel", + "scheduled_service": "no", + "gps_code": "EIME", + "wikipedia_link": "https://en.wikipedia.org/wiki/Casement_Aerodrome", + "keywords": "RAF Baldonnel" + }, + { + "id": "30998", + "ident": "EIMG", + "type": "closed", + "name": "Moneygall Aerodrome", + "latitude_deg": "52.849998", + "longitude_deg": "-7.983", + "elevation_ft": "450", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-OY", + "municipality": "Moneygall", + "scheduled_service": "no", + "gps_code": "EIMG", + "keywords": "Muine Gall" + }, + { + "id": "43997", + "ident": "EIMH", + "type": "small_airport", + "name": "Athboy Airfield", + "latitude_deg": "53.637779", + "longitude_deg": "-6.878611", + "elevation_ft": "230", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-MH", + "municipality": "Athboy", + "scheduled_service": "no", + "gps_code": "EIMH" + }, + { + "id": "29226", + "ident": "EIMN", + "type": "small_airport", + "name": "Inishmaan Aerodrome", + "latitude_deg": "53.09299850463867", + "longitude_deg": "-9.568059921264648", + "elevation_ft": "15", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-G", + "municipality": "Inis Meáin", + "scheduled_service": "yes", + "gps_code": "EIMN", + "iata_code": "IIA", + "keywords": "Aran Islands" + }, + { + "id": "321626", + "ident": "EIMS", + "type": "seaplane_base", + "name": "Mountshannon Seaplane Base", + "latitude_deg": "52.9305", + "longitude_deg": "-8.4245", + "elevation_ft": "103", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-CE", + "municipality": "Mountshannon", + "scheduled_service": "no", + "gps_code": "EIMS", + "home_link": "http://www.harbourflights.com" + }, + { + "id": "29227", + "ident": "EIMY", + "type": "closed", + "name": "Moyne Aerodrome", + "latitude_deg": "52.703098", + "longitude_deg": "-7.70528", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-TA", + "municipality": "Thurles", + "scheduled_service": "no", + "gps_code": "EIMY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moyne_Aerodrome", + "keywords": "Áth na nUrlainn" + }, + { + "id": "29228", + "ident": "EINC", + "type": "small_airport", + "name": "Newcastle Aerodrome", + "latitude_deg": "53.07109832763672", + "longitude_deg": "-6.0452799797058105", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-WW", + "municipality": "Newcastle", + "scheduled_service": "no", + "gps_code": "EINC" + }, + { + "id": "2537", + "ident": "EINN", + "type": "large_airport", + "name": "Shannon Airport", + "latitude_deg": "52.702", + "longitude_deg": "-8.92482", + "elevation_ft": "46", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-CE", + "municipality": "Shannon", + "scheduled_service": "yes", + "gps_code": "EINN", + "iata_code": "SNN", + "home_link": "http://www.shannonairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shannon_Airport" + }, + { + "id": "30999", + "ident": "EIPT", + "type": "closed", + "name": "Powerscourt Airfield", + "latitude_deg": "53.178301", + "longitude_deg": "-6.196495", + "elevation_ft": "470", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-WW", + "municipality": "Powerscourt", + "scheduled_service": "no", + "gps_code": "EIPT" + }, + { + "id": "29229", + "ident": "EIRT", + "type": "small_airport", + "name": "Rathcoole Aerodrome", + "latitude_deg": "52.10559844970703", + "longitude_deg": "-8.983329772949219", + "elevation_ft": "281", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-C", + "municipality": "Rathcoole", + "scheduled_service": "no", + "gps_code": "EIRT" + }, + { + "id": "2538", + "ident": "EISG", + "type": "medium_airport", + "name": "Sligo Airport", + "latitude_deg": "54.280200958252", + "longitude_deg": "-8.5992097854614", + "elevation_ft": "11", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-SO", + "municipality": "Sligo", + "scheduled_service": "no", + "gps_code": "EISG", + "iata_code": "SXL", + "home_link": "http://www.sligoairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sligo_Airport" + }, + { + "id": "29230", + "ident": "EISP", + "type": "small_airport", + "name": "Spanish Point Airfield", + "latitude_deg": "52.845839", + "longitude_deg": "-9.414876", + "elevation_ft": "75", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-CE", + "municipality": "Spanish Point", + "scheduled_service": "no", + "gps_code": "EISP" + }, + { + "id": "29231", + "ident": "EITM", + "type": "small_airport", + "name": "Trim Aerodrome", + "latitude_deg": "53.5746994019", + "longitude_deg": "-6.7386097908", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-MH", + "municipality": "Trim", + "scheduled_service": "no", + "gps_code": "EITM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trim_Aerodrome" + }, + { + "id": "43998", + "ident": "EITT", + "type": "closed", + "name": "Trevet Airfield", + "latitude_deg": "53.543611", + "longitude_deg": "-6.531944", + "elevation_ft": "385", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-MH", + "municipality": "Dunshaughlin", + "scheduled_service": "no", + "gps_code": "EITT", + "home_link": "http://www.trevetairfield.com/" + }, + { + "id": "2539", + "ident": "EIWF", + "type": "medium_airport", + "name": "Waterford Airport", + "latitude_deg": "52.187198638916016", + "longitude_deg": "-7.0869598388671875", + "elevation_ft": "119", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-WD", + "municipality": "Waterford", + "scheduled_service": "yes", + "gps_code": "EIWF", + "iata_code": "WAT", + "home_link": "http://flywaterford.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Waterford_Airport" + }, + { + "id": "27310", + "ident": "EIWT", + "type": "medium_airport", + "name": "Weston Airport", + "latitude_deg": "53.3521995544", + "longitude_deg": "-6.48611021042", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-KE", + "municipality": "Leixlip", + "scheduled_service": "no", + "gps_code": "EIWT", + "home_link": "http://www.westonairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Weston_Airport", + "keywords": "Dublin" + }, + { + "id": "314559", + "ident": "EJN", + "type": "small_airport", + "name": "Ejin Banner Taolai Airport", + "latitude_deg": "42.0155", + "longitude_deg": "101.0005", + "elevation_ft": "3077", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Ejin Banner", + "scheduled_service": "yes", + "gps_code": "ZBEN", + "iata_code": "EJN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ejin_Banner_Taolai_Airport" + }, + { + "id": "317874", + "ident": "EJT", + "type": "small_airport", + "name": "Enejit Airport", + "latitude_deg": "6.0404", + "longitude_deg": "171.9846", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-MIL", + "municipality": "Enejit Island", + "scheduled_service": "yes", + "iata_code": "EJT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Enejit_Airport", + "keywords": "Enajet" + }, + { + "id": "326142", + "ident": "EKAC", + "type": "seaplane_base", + "name": "Aarhus Seaplane Terminal", + "latitude_deg": "56.151717", + "longitude_deg": "10.248428", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Aarhus", + "scheduled_service": "no", + "gps_code": "EKAC" + }, + { + "id": "29647", + "ident": "EKAE", + "type": "small_airport", + "name": "Ærø Airfield", + "latitude_deg": "54.852798", + "longitude_deg": "10.4564", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Ærø", + "scheduled_service": "no", + "gps_code": "EKAE", + "keywords": "Aero, Aeroe" + }, + { + "id": "2540", + "ident": "EKAH", + "type": "medium_airport", + "name": "Aarhus Airport", + "latitude_deg": "56.303331", + "longitude_deg": "10.618286", + "elevation_ft": "82", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Aarhus", + "scheduled_service": "yes", + "gps_code": "EKAH", + "iata_code": "AAR", + "home_link": "http://www.aar.dk/default.asp?id=87", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aarhus_Airport" + }, + { + "id": "29233", + "ident": "EKAL", + "type": "closed", + "name": "Allerød Airport", + "latitude_deg": "55.870300293", + "longitude_deg": "12.3155002594", + "elevation_ft": "135", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-84", + "municipality": "Allerød", + "scheduled_service": "no", + "gps_code": "EKAL", + "keywords": "Allerod, Alleroed" + }, + { + "id": "44022", + "ident": "EKAR", + "type": "heliport", + "name": "South (Syd) Arne Helideck", + "latitude_deg": "56.08028030395508", + "longitude_deg": "4.23038911819458", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-XX", + "scheduled_service": "no", + "gps_code": "EKAR" + }, + { + "id": "29234", + "ident": "EKAT", + "type": "small_airport", + "name": "Anholt Flyveplads", + "latitude_deg": "56.698898", + "longitude_deg": "11.5559", + "elevation_ft": "23", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Anholt", + "scheduled_service": "no", + "gps_code": "EKAT", + "home_link": "http://www.anholt.dk/anholt_flyveplads.htm" + }, + { + "id": "31000", + "ident": "EKAV", + "type": "closed", + "name": "Avnø Air Base", + "latitude_deg": "55.083", + "longitude_deg": "11.783", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-85", + "municipality": "Avnø", + "scheduled_service": "no", + "gps_code": "EKAV", + "keywords": "Avno, Avnoe" + }, + { + "id": "318287", + "ident": "EKBH", + "type": "small_airport", + "name": "Svæveflyvecenter Arnborg", + "latitude_deg": "56.011944", + "longitude_deg": "9.0125", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Arnborg", + "scheduled_service": "no", + "gps_code": "EKAB", + "keywords": "Bolhede, Arnborg" + }, + { + "id": "2541", + "ident": "EKBI", + "type": "large_airport", + "name": "Billund Airport", + "latitude_deg": "55.7402992249", + "longitude_deg": "9.15178012848", + "elevation_ft": "247", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Billund", + "scheduled_service": "yes", + "gps_code": "EKBI", + "iata_code": "BLL", + "home_link": "http://www.billund-airport.dk/?sc_lang=en", + "wikipedia_link": "https://en.wikipedia.org/wiki/Billund_Airport" + }, + { + "id": "345938", + "ident": "EKCB", + "type": "heliport", + "name": "Arslev Heliport", + "latitude_deg": "56.134444", + "longitude_deg": "10.081111", + "elevation_ft": "132", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "scheduled_service": "no", + "gps_code": "EKCB" + }, + { + "id": "351549", + "ident": "EKCC", + "type": "seaplane_base", + "name": "København Vandflyveplads", + "latitude_deg": "55.69119", + "longitude_deg": "12.60009", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-84", + "scheduled_service": "no", + "gps_code": "EKCC" + }, + { + "id": "44008", + "ident": "EKCE", + "type": "heliport", + "name": "Cecilie Helideck", + "latitude_deg": "56.40211486816406", + "longitude_deg": "4.759611129760742", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-XX", + "scheduled_service": "no", + "gps_code": "EKCE" + }, + { + "id": "2542", + "ident": "EKCH", + "type": "large_airport", + "name": "Copenhagen Kastrup Airport", + "latitude_deg": "55.617900848389", + "longitude_deg": "12.656000137329", + "elevation_ft": "17", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-84", + "municipality": "Copenhagen", + "scheduled_service": "yes", + "gps_code": "EKCH", + "iata_code": "CPH", + "home_link": "http://www.cph.dk/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Copenhagen_Airport", + "keywords": "København, Malmö" + }, + { + "id": "317784", + "ident": "EKCR", + "type": "small_airport", + "name": "Christianshede", + "latitude_deg": "56.105", + "longitude_deg": "9.393056", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Silkeborg", + "scheduled_service": "no", + "gps_code": "EKCR", + "keywords": "Ekcr, Christianshede, Silkeborg flyveplads, Silkeborg flyveklub" + }, + { + "id": "44009", + "ident": "EKDB", + "type": "heliport", + "name": "Dan B Helideck", + "latitude_deg": "55.46903991699219", + "longitude_deg": "5.133056163787842", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-XX", + "scheduled_service": "no", + "gps_code": "EKDB" + }, + { + "id": "44010", + "ident": "EKDE", + "type": "heliport", + "name": "Dan E Helideck", + "latitude_deg": "55.48064041137695", + "longitude_deg": "5.116167068481445", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-XX", + "scheduled_service": "no", + "gps_code": "EKDE" + }, + { + "id": "44011", + "ident": "EKDF", + "type": "heliport", + "name": "Dan F Helideck", + "latitude_deg": "55.47809982299805", + "longitude_deg": "5.105527877807617", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-XX", + "scheduled_service": "no", + "gps_code": "EKDF" + }, + { + "id": "2543", + "ident": "EKEB", + "type": "medium_airport", + "name": "Esbjerg Airport", + "latitude_deg": "55.525902", + "longitude_deg": "8.5534", + "elevation_ft": "97", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Esbjerg", + "scheduled_service": "yes", + "gps_code": "EKEB", + "iata_code": "EBJ", + "home_link": "http://www.esbjerg-lufthavn.dk/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Esbjerg_Airport", + "keywords": "offshore, North Sea" + }, + { + "id": "29235", + "ident": "EKEL", + "type": "small_airport", + "name": "Endelave Airfield", + "latitude_deg": "55.756753", + "longitude_deg": "10.248697", + "elevation_ft": "15", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Endelave", + "scheduled_service": "no", + "gps_code": "EKEL", + "home_link": "http://www.toftair.dk/" + }, + { + "id": "44039", + "ident": "EKFA", + "type": "heliport", + "name": "Froðba Heliport", + "latitude_deg": "61.543701", + "longitude_deg": "-6.77442", + "elevation_ft": "77", + "continent": "EU", + "iso_country": "FO", + "iso_region": "FO-U-A", + "municipality": "Froðba", + "scheduled_service": "yes", + "gps_code": "EKFA" + }, + { + "id": "316647", + "ident": "EKFR", + "type": "small_airport", + "name": "Freerslev", + "latitude_deg": "55.898611", + "longitude_deg": "12.245", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-84", + "scheduled_service": "no", + "gps_code": "EKFR" + }, + { + "id": "317884", + "ident": "EKFS", + "type": "small_airport", + "name": "Vøjstrup Glider Field", + "latitude_deg": "55.2477778", + "longitude_deg": "10.2041667", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Vøjstrup", + "scheduled_service": "no", + "gps_code": "EKFS", + "keywords": "Broby, Vøjstrup" + }, + { + "id": "29884", + "ident": "EKFU", + "type": "small_airport", + "name": "Fur Airstrip", + "latitude_deg": "56.824886", + "longitude_deg": "8.987213", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Fur", + "scheduled_service": "no", + "gps_code": "EKFU", + "keywords": "Salling peninsula, Skive" + }, + { + "id": "44012", + "ident": "EKGC", + "type": "heliport", + "name": "Gorm C Helideck", + "latitude_deg": "55.57984924316406", + "longitude_deg": "4.758889198303223", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-XX", + "scheduled_service": "no", + "gps_code": "EKGC" + }, + { + "id": "2544", + "ident": "EKGH", + "type": "small_airport", + "name": "Grønholt Hillerød Airfield", + "latitude_deg": "55.941399", + "longitude_deg": "12.3822", + "elevation_ft": "97", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-84", + "municipality": "Grønholt", + "scheduled_service": "no", + "gps_code": "EKGH", + "keywords": "Gronholt, Groenholt, Hillerod, Hilleroed" + }, + { + "id": "320131", + "ident": "EKGL", + "type": "small_airport", + "name": "Gørløse Glider Field", + "latitude_deg": "55.8855556", + "longitude_deg": "12.2280556", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-84", + "municipality": "Gørløse", + "scheduled_service": "no", + "gps_code": "EKGL", + "home_link": "http://www.glider.dk/node/357" + }, + { + "id": "318289", + "ident": "EKGO", + "type": "small_airport", + "name": "Gørlev Flyveplads", + "latitude_deg": "55.5527778", + "longitude_deg": "11.1952778", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-85", + "municipality": "Gørlev", + "scheduled_service": "no", + "gps_code": "EKGO", + "keywords": "Gorlev" + }, + { + "id": "29916", + "ident": "EKGR", + "type": "small_airport", + "name": "Grenaa Airfield", + "latitude_deg": "56.442501", + "longitude_deg": "10.9306", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Grenaa", + "scheduled_service": "no", + "gps_code": "EKGR", + "keywords": "Grenå" + }, + { + "id": "44013", + "ident": "EKHA", + "type": "heliport", + "name": "Halfdan A Helideck", + "latitude_deg": "55.53085708618164", + "longitude_deg": "5.004167079925537", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-XX", + "scheduled_service": "no", + "gps_code": "EKHA" + }, + { + "id": "44014", + "ident": "EKHB", + "type": "heliport", + "name": "Halfdan B Helideck", + "latitude_deg": "55.538612365722656", + "longitude_deg": "5.033332824707031", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-XX", + "scheduled_service": "no", + "gps_code": "EKHB" + }, + { + "id": "44015", + "ident": "EKHD", + "type": "heliport", + "name": "Harald Helideck", + "latitude_deg": "56.344120025634766", + "longitude_deg": "4.27191686630249", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-XX", + "scheduled_service": "no", + "gps_code": "EKHD" + }, + { + "id": "318327", + "ident": "EKHE", + "type": "small_airport", + "name": "Annisse flyveplads", + "latitude_deg": "55.984722", + "longitude_deg": "12.214444", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-84", + "municipality": "Annisse", + "scheduled_service": "no", + "gps_code": "EKHE" + }, + { + "id": "29236", + "ident": "EKHG", + "type": "small_airport", + "name": "Herning Airfield", + "latitude_deg": "56.1847", + "longitude_deg": "9.04445", + "elevation_ft": "167", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Herning", + "scheduled_service": "no", + "gps_code": "EKHG" + }, + { + "id": "29237", + "ident": "EKHK", + "type": "small_airport", + "name": "Holbaek (Ny Hagested) Airfield", + "latitude_deg": "55.734083", + "longitude_deg": "11.602678", + "elevation_ft": "2", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-85", + "municipality": "Holbaek", + "scheduled_service": "no", + "gps_code": "EKHK" + }, + { + "id": "318902", + "ident": "EKHL", + "type": "heliport", + "name": "Holsted Helipad", + "latitude_deg": "55.496667", + "longitude_deg": "8.910833", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Holsted", + "scheduled_service": "no", + "gps_code": "EKHL", + "keywords": "Ben Air" + }, + { + "id": "318291", + "ident": "EKHM", + "type": "small_airport", + "name": "Hammer Glider Field", + "latitude_deg": "55.908195", + "longitude_deg": "9.446358", + "elevation_ft": "290", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "scheduled_service": "no", + "gps_code": "EKHM", + "home_link": "http://www.vsk.dk/", + "keywords": "Vejle Svæveflyveklub" + }, + { + "id": "44017", + "ident": "EKHN", + "type": "heliport", + "name": "Horns Rev B Helideck", + "latitude_deg": "55.60016632080078", + "longitude_deg": "7.623805999755859", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-XX", + "scheduled_service": "no", + "gps_code": "EKHN" + }, + { + "id": "31002", + "ident": "EKHO", + "type": "small_airport", + "name": "Lindtorp Flyvecenter", + "latitude_deg": "56.396702", + "longitude_deg": "8.44194", + "elevation_ft": "49", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Holstebro", + "scheduled_service": "no", + "gps_code": "EKHO" + }, + { + "id": "44016", + "ident": "EKHR", + "type": "heliport", + "name": "Horns Rev A Helideck", + "latitude_deg": "55.508949279785156", + "longitude_deg": "7.874917030334473", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-XX", + "scheduled_service": "no", + "gps_code": "EKHR" + }, + { + "id": "29238", + "ident": "EKHS", + "type": "closed", + "name": "Hadsund Airfield", + "latitude_deg": "56.755924", + "longitude_deg": "10.228829", + "elevation_ft": "8", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-81", + "municipality": "Hadsund", + "scheduled_service": "no", + "gps_code": "EKHS" + }, + { + "id": "2545", + "ident": "EKHV", + "type": "small_airport", + "name": "Haderslev Airport", + "latitude_deg": "55.30220031738281", + "longitude_deg": "9.522500038146973", + "elevation_ft": "81", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Haderslev", + "scheduled_service": "no", + "gps_code": "EKHV" + }, + { + "id": "2546", + "ident": "EKKA", + "type": "medium_airport", + "name": "Karup Airport", + "latitude_deg": "56.29750061035156", + "longitude_deg": "9.124629974365234", + "elevation_ft": "170", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Karup", + "scheduled_service": "yes", + "gps_code": "EKKA", + "iata_code": "KRP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Karup_Airport" + }, + { + "id": "29239", + "ident": "EKKL", + "type": "small_airport", + "name": "Kalundborg Airfield", + "latitude_deg": "55.700298", + "longitude_deg": "11.25", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-85", + "municipality": "Kalundborg", + "scheduled_service": "no", + "gps_code": "EKKL" + }, + { + "id": "30040", + "ident": "EKKO", + "type": "small_airport", + "name": "Korsør Airport", + "latitude_deg": "55.33689880371094", + "longitude_deg": "11.241700172424316", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-85", + "municipality": "Korsør", + "scheduled_service": "no", + "gps_code": "EKKO" + }, + { + "id": "318288", + "ident": "EKKS", + "type": "small_airport", + "name": "Kongsted Svæveflyveplads Glider", + "latitude_deg": "55.2522222", + "longitude_deg": "12.0627778", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-85", + "municipality": "Faxe", + "scheduled_service": "no", + "gps_code": "EKKS", + "keywords": "Kongsted" + }, + { + "id": "338481", + "ident": "EKKU", + "type": "heliport", + "name": "Kirkja Heliport", + "latitude_deg": "62.317141", + "longitude_deg": "-6.313314", + "elevation_ft": "93", + "continent": "EU", + "iso_country": "FO", + "iso_region": "FO-U-A", + "municipality": "Kirkja", + "scheduled_service": "yes", + "gps_code": "EKKU" + }, + { + "id": "44040", + "ident": "EKKV", + "type": "heliport", + "name": "Klaksvík Heliport", + "latitude_deg": "62.217619", + "longitude_deg": "-6.576274", + "elevation_ft": "263", + "continent": "EU", + "iso_country": "FO", + "iso_region": "FO-U-A", + "municipality": "Klaksvík", + "scheduled_service": "yes", + "gps_code": "EKKV", + "wikipedia_link": "http://no.wikipedia.org/wiki/Klaksv%C3%ADk_Heliport" + }, + { + "id": "2547", + "ident": "EKLS", + "type": "small_airport", + "name": "Læsø Airport", + "latitude_deg": "57.277198791503906", + "longitude_deg": "11.000100135803223", + "elevation_ft": "25", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-81", + "municipality": "Læsø", + "scheduled_service": "no", + "gps_code": "EKLS", + "iata_code": "BYR", + "keywords": "Laeso, Laesoe" + }, + { + "id": "29240", + "ident": "EKLV", + "type": "small_airport", + "name": "Lemvig Airport", + "latitude_deg": "56.50299835205078", + "longitude_deg": "8.31132984161377", + "elevation_ft": "97", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Lemvig", + "scheduled_service": "no", + "gps_code": "EKLV" + }, + { + "id": "2548", + "ident": "EKMB", + "type": "medium_airport", + "name": "Lolland Falster Maribo Airport", + "latitude_deg": "54.699299", + "longitude_deg": "11.4401", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-85", + "municipality": "Lolland Falster / Maribo", + "scheduled_service": "no", + "gps_code": "EKMB", + "iata_code": "MRW", + "home_link": "http://www.lollandfalsterairport.dk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lolland_Falster_Airport" + }, + { + "id": "30041", + "ident": "EKMN", + "type": "small_airport", + "name": "Kostervig Mon Airport", + "latitude_deg": "54.96545", + "longitude_deg": "12.196483", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-85", + "municipality": "Koster", + "scheduled_service": "no", + "gps_code": "EKMN", + "home_link": "http://www.ekmn.dk/" + }, + { + "id": "44041", + "ident": "EKMS", + "type": "heliport", + "name": "Mykines Heliport", + "latitude_deg": "62.102169", + "longitude_deg": "-7.645934", + "elevation_ft": "110", + "continent": "EU", + "iso_country": "FO", + "iso_region": "FO-U-A", + "municipality": "Mykines", + "scheduled_service": "yes", + "gps_code": "EKMS" + }, + { + "id": "44018", + "ident": "EKNI", + "type": "heliport", + "name": "Nini Helideck", + "latitude_deg": "56.640804290771484", + "longitude_deg": "5.32111120223999", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-XX", + "scheduled_service": "no", + "gps_code": "EKNI" + }, + { + "id": "29241", + "ident": "EKNM", + "type": "small_airport", + "name": "Morsø Airfield, Tødsø", + "latitude_deg": "56.824402", + "longitude_deg": "8.78667", + "elevation_ft": "53", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-81", + "municipality": "Morsø", + "scheduled_service": "no", + "gps_code": "EKNM", + "keywords": "Mors, Morso Airport Todso, Morsoe Airport Toedsoe" + }, + { + "id": "30179", + "ident": "EKNS", + "type": "closed", + "name": "Nakskov Airfield", + "latitude_deg": "54.8172", + "longitude_deg": "11.1308", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-85", + "municipality": "Nakskov", + "scheduled_service": "no", + "gps_code": "EKNS" + }, + { + "id": "2549", + "ident": "EKOD", + "type": "medium_airport", + "name": "Odense Airport", + "latitude_deg": "55.47669982910156", + "longitude_deg": "10.330900192260742", + "elevation_ft": "56", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Odense", + "scheduled_service": "yes", + "gps_code": "EKOD", + "iata_code": "ODE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Odense_Airport" + }, + { + "id": "2550", + "ident": "EKPB", + "type": "small_airport", + "name": "Kruså-Padborg Airfield", + "latitude_deg": "54.8703", + "longitude_deg": "9.27901", + "elevation_ft": "88", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Kruså / Padborg", + "scheduled_service": "no", + "gps_code": "EKPB" + }, + { + "id": "30324", + "ident": "EKRA", + "type": "small_airport", + "name": "Rarup Airfield", + "latitude_deg": "55.778599", + "longitude_deg": "9.93889", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Rarup", + "scheduled_service": "no", + "gps_code": "EKRA" + }, + { + "id": "29242", + "ident": "EKRD", + "type": "small_airport", + "name": "Randers Airfield", + "latitude_deg": "56.506599", + "longitude_deg": "10.0364", + "elevation_ft": "139", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Randers", + "scheduled_service": "no", + "gps_code": "EKRD" + }, + { + "id": "44019", + "ident": "EKRF", + "type": "heliport", + "name": "Rolf Helideck", + "latitude_deg": "55.60615539550781", + "longitude_deg": "4.4913330078125", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-XX", + "scheduled_service": "no", + "gps_code": "EKRF" + }, + { + "id": "2551", + "ident": "EKRK", + "type": "medium_airport", + "name": "Copenhagen Roskilde Airport", + "latitude_deg": "55.585601806640625", + "longitude_deg": "12.131400108337402", + "elevation_ft": "146", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-85", + "municipality": "Copenhagen", + "scheduled_service": "no", + "gps_code": "EKRK", + "iata_code": "RKE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roskilde_Airport", + "keywords": "København" + }, + { + "id": "2552", + "ident": "EKRN", + "type": "medium_airport", + "name": "Bornholm Airport", + "latitude_deg": "55.06330108642578", + "longitude_deg": "14.759599685668945", + "elevation_ft": "52", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-84", + "municipality": "Rønne", + "scheduled_service": "yes", + "gps_code": "EKRN", + "iata_code": "RNN", + "home_link": "http://www.bornholms-lufthavn.dk/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bornholm_Airport", + "keywords": "Roenne" + }, + { + "id": "29243", + "ident": "EKRR", + "type": "closed", + "name": "Ro Airport", + "latitude_deg": "55.2103004456", + "longitude_deg": "14.878600120500002", + "elevation_ft": "325", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-84", + "municipality": "Ro", + "scheduled_service": "no", + "gps_code": "EKRR" + }, + { + "id": "29244", + "ident": "EKRS", + "type": "small_airport", + "name": "Ringsted Airfield", + "latitude_deg": "55.4258", + "longitude_deg": "11.8067", + "elevation_ft": "113", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-85", + "municipality": "Ringsted", + "scheduled_service": "no", + "gps_code": "EKRS" + }, + { + "id": "29245", + "ident": "EKSA", + "type": "small_airport", + "name": "Sæby (Ottestrup) Airfield", + "latitude_deg": "57.346699", + "longitude_deg": "10.407", + "elevation_ft": "110", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-81", + "municipality": "Sæby", + "scheduled_service": "no", + "gps_code": "EKSA", + "keywords": "Saeby" + }, + { + "id": "2553", + "ident": "EKSB", + "type": "medium_airport", + "name": "Sønderborg Airport", + "latitude_deg": "54.96440124511719", + "longitude_deg": "9.791729927062988", + "elevation_ft": "24", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Sønderborg", + "scheduled_service": "yes", + "gps_code": "EKSB", + "iata_code": "SGD", + "wikipedia_link": "https://en.wikipedia.org/wiki/S%C3%B8nderborg_Airport", + "keywords": "Sonderborg, Soenderborg" + }, + { + "id": "44021", + "ident": "EKSC", + "type": "heliport", + "name": "Skjold Helideck", + "latitude_deg": "55.531593322753906", + "longitude_deg": "4.906667232513428", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-XX", + "scheduled_service": "no", + "gps_code": "EKSC" + }, + { + "id": "29246", + "ident": "EKSD", + "type": "small_airport", + "name": "Spjald Airfield", + "latitude_deg": "56.102699", + "longitude_deg": "8.51423", + "elevation_ft": "249", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Spjald", + "scheduled_service": "no", + "gps_code": "EKSD" + }, + { + "id": "316929", + "ident": "EKSG", + "type": "heliport", + "name": "Schelenburg God Heliport", + "latitude_deg": "55.543889", + "longitude_deg": "10.635833", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "scheduled_service": "no", + "gps_code": "EKSG" + }, + { + "id": "44020", + "ident": "EKSI", + "type": "heliport", + "name": "Siri Helideck", + "latitude_deg": "56.48271560668945", + "longitude_deg": "4.911110877990723", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-XX", + "scheduled_service": "no", + "gps_code": "EKSI" + }, + { + "id": "315603", + "ident": "EKSL", + "type": "small_airport", + "name": "Slaglille Svæveflyvecenter", + "latitude_deg": "55.452222", + "longitude_deg": "11.644722", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-85", + "scheduled_service": "no", + "gps_code": "EKSL" + }, + { + "id": "2554", + "ident": "EKSN", + "type": "medium_airport", + "name": "Sindal Airport", + "latitude_deg": "57.503502", + "longitude_deg": "10.2294", + "elevation_ft": "92", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-81", + "municipality": "Sindal", + "scheduled_service": "yes", + "gps_code": "EKSN", + "iata_code": "CNL", + "home_link": "http://www.eksn.dk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sindal_Airport" + }, + { + "id": "44044", + "ident": "EKSO", + "type": "heliport", + "name": "Svínoy Heliport", + "latitude_deg": "62.276632", + "longitude_deg": "-6.341524", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "FO", + "iso_region": "FO-U-A", + "municipality": "Svínoy", + "scheduled_service": "yes", + "gps_code": "EKSO" + }, + { + "id": "2555", + "ident": "EKSP", + "type": "medium_airport", + "name": "Skrydstrup Air Base", + "latitude_deg": "55.221048", + "longitude_deg": "9.26702", + "elevation_ft": "141", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Vojens", + "scheduled_service": "no", + "gps_code": "EKSP", + "iata_code": "SKS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fighter_Wing_Skrydstrup" + }, + { + "id": "44043", + "ident": "EKSR", + "type": "heliport", + "name": "Stóra Dímun Heliport", + "latitude_deg": "61.685308", + "longitude_deg": "-6.758497", + "elevation_ft": "305", + "continent": "EU", + "iso_country": "FO", + "iso_region": "FO-U-A", + "municipality": "Stóra Dímun", + "scheduled_service": "yes", + "gps_code": "EKSR" + }, + { + "id": "29247", + "ident": "EKSS", + "type": "small_airport", + "name": "Samsø Airfield", + "latitude_deg": "55.8895", + "longitude_deg": "10.6137", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Samsø", + "scheduled_service": "no", + "gps_code": "EKSS", + "keywords": "Samso, Samsoe" + }, + { + "id": "29248", + "ident": "EKST", + "type": "small_airport", + "name": "Sydfyn (Tasinge) Airfield", + "latitude_deg": "55.016602", + "longitude_deg": "10.5633", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Tasinge", + "scheduled_service": "no", + "gps_code": "EKST" + }, + { + "id": "2556", + "ident": "EKSV", + "type": "medium_airport", + "name": "Skive Airport", + "latitude_deg": "56.550201416015625", + "longitude_deg": "9.172980308532715", + "elevation_ft": "74", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Skive", + "scheduled_service": "no", + "gps_code": "EKSV", + "iata_code": "SQW" + }, + { + "id": "44042", + "ident": "EKSY", + "type": "heliport", + "name": "Skúvoy Heliport", + "latitude_deg": "61.769556", + "longitude_deg": "-6.80349", + "elevation_ft": "70", + "continent": "EU", + "iso_country": "FO", + "iso_region": "FO-U-A", + "municipality": "Skúvoy", + "scheduled_service": "yes", + "gps_code": "EKSY" + }, + { + "id": "44045", + "ident": "EKTB", + "type": "heliport", + "name": "Boðanes Heliport", + "latitude_deg": "62.021684", + "longitude_deg": "-6.757452", + "elevation_ft": "68", + "continent": "EU", + "iso_country": "FO", + "iso_region": "FO-U-A", + "municipality": "Tórshavn", + "scheduled_service": "yes", + "gps_code": "EKTB" + }, + { + "id": "29249", + "ident": "EKTD", + "type": "small_airport", + "name": "Tønder Airfield", + "latitude_deg": "54.929699", + "longitude_deg": "8.84057", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Tønder", + "scheduled_service": "no", + "gps_code": "EKTD", + "keywords": "Tonder, Toender" + }, + { + "id": "44023", + "ident": "EKTE", + "type": "heliport", + "name": "Tyra E Helideck", + "latitude_deg": "55.72152328491211", + "longitude_deg": "4.802055835723877", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-XX", + "scheduled_service": "no", + "gps_code": "EKTE" + }, + { + "id": "2557", + "ident": "EKTS", + "type": "medium_airport", + "name": "Thisted Airport", + "latitude_deg": "57.06880187988281", + "longitude_deg": "8.705220222473145", + "elevation_ft": "23", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-81", + "municipality": "Thisted", + "scheduled_service": "no", + "gps_code": "EKTS", + "iata_code": "TED", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thisted_Airport" + }, + { + "id": "44024", + "ident": "EKTW", + "type": "heliport", + "name": "Tyra W Helideck", + "latitude_deg": "55.716529846191406", + "longitude_deg": "4.750306129455566", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-XX", + "scheduled_service": "no", + "gps_code": "EKTW" + }, + { + "id": "29250", + "ident": "EKVA", + "type": "closed", + "name": "Vandel Air Base", + "latitude_deg": "55.701", + "longitude_deg": "9.21358", + "elevation_ft": "250", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Vandel", + "scheduled_service": "no", + "wikipedia_link": "https://da.wikipedia.org/wiki/Flyvestation_Vandel", + "keywords": "EKVA" + }, + { + "id": "29251", + "ident": "EKVB", + "type": "small_airport", + "name": "Viborg Airfield", + "latitude_deg": "56.41", + "longitude_deg": "9.4091", + "elevation_ft": "75", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Viborg", + "scheduled_service": "no", + "gps_code": "EKVB" + }, + { + "id": "2558", + "ident": "EKVD", + "type": "medium_airport", + "name": "Kolding Vamdrup Airfield", + "latitude_deg": "55.436298", + "longitude_deg": "9.33092", + "elevation_ft": "143", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-83", + "municipality": "Kolding / Vamdrup", + "scheduled_service": "no", + "gps_code": "EKVD" + }, + { + "id": "2559", + "ident": "EKVG", + "type": "medium_airport", + "name": "Vágar Airport", + "latitude_deg": "62.063256", + "longitude_deg": "-7.275782", + "elevation_ft": "280", + "continent": "EU", + "iso_country": "FO", + "iso_region": "FO-U-A", + "municipality": "Vágar", + "scheduled_service": "yes", + "gps_code": "EKVG", + "iata_code": "FAE", + "home_link": "http://www.floghavn.fo/", + "wikipedia_link": "https://en.wikipedia.org/wiki/V%C3%A1gar_Airport", + "keywords": "Faroes, RAF Vágar" + }, + { + "id": "2560", + "ident": "EKVH", + "type": "small_airport", + "name": "Vesthimmerlands Flyveplads", + "latitude_deg": "56.846901", + "longitude_deg": "9.45861", + "elevation_ft": "119", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-81", + "municipality": "Aars", + "scheduled_service": "no", + "gps_code": "EKVH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aars_Airport", + "keywords": "Vesthimmerland, Hornum" + }, + { + "id": "2561", + "ident": "EKVJ", + "type": "medium_airport", + "name": "Stauning Airport", + "latitude_deg": "55.9901008605957", + "longitude_deg": "8.353910446166992", + "elevation_ft": "17", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-82", + "municipality": "Skjern / Ringkøbing", + "scheduled_service": "no", + "gps_code": "EKVJ", + "iata_code": "STA" + }, + { + "id": "29252", + "ident": "EKVL", + "type": "closed", + "name": "Værløse Air Base", + "latitude_deg": "55.769501", + "longitude_deg": "12.3239", + "elevation_ft": "42", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-84", + "municipality": "Kirke Værløse", + "scheduled_service": "no", + "gps_code": "EKVL", + "wikipedia_link": "https://en.wikipedia.org/wiki/V%C3%A6rl%C3%B8se_Air_Base", + "keywords": "EKVL, Vaerlose" + }, + { + "id": "2562", + "ident": "EKYT", + "type": "medium_airport", + "name": "Aalborg Airport", + "latitude_deg": "57.092759", + "longitude_deg": "9.849243", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "DK", + "iso_region": "DK-81", + "municipality": "Aalborg", + "scheduled_service": "yes", + "gps_code": "EKYT", + "iata_code": "AAL", + "home_link": "http://www.aal.dk", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aalborg_Airport" + }, + { + "id": "2563", + "ident": "ELLX", + "type": "large_airport", + "name": "Luxembourg-Findel International Airport", + "latitude_deg": "49.6233333", + "longitude_deg": "6.2044444", + "elevation_ft": "1234", + "continent": "EU", + "iso_country": "LU", + "iso_region": "LU-L", + "municipality": "Luxembourg", + "scheduled_service": "yes", + "gps_code": "ELLX", + "iata_code": "LUX", + "home_link": "http://www.lux-airport.lu/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Luxembourg-Findel_International_Airport" + }, + { + "id": "30188", + "ident": "ELNT", + "type": "small_airport", + "name": "Noertrange Airfield", + "latitude_deg": "49.981098", + "longitude_deg": "5.91778", + "elevation_ft": "1522", + "continent": "EU", + "iso_country": "LU", + "iso_region": "LU-D", + "municipality": "Winseler", + "scheduled_service": "no", + "gps_code": "ELNT", + "home_link": "http://www.geocities.com/CapeCanaveral/Lab/3407/noertran.html" + }, + { + "id": "31003", + "ident": "ELUS", + "type": "small_airport", + "name": "Useldange Glider Field", + "latitude_deg": "49.7686", + "longitude_deg": "5.96556", + "elevation_ft": "928", + "continent": "EU", + "iso_country": "LU", + "iso_region": "LU-D", + "municipality": "Useldange", + "scheduled_service": "no", + "gps_code": "ELUS", + "home_link": "http://www.clvv.lu/index.php?locale=en&l1=elus1&menu=li6" + }, + { + "id": "333066", + "ident": "EMR", + "type": "heliport", + "name": "El Mirador Heliport", + "latitude_deg": "17.752077", + "longitude_deg": "-89.924916", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-PE", + "municipality": "El Mirador", + "scheduled_service": "no", + "iata_code": "EMR" + }, + { + "id": "29646", + "ident": "ENAE", + "type": "small_airport", + "name": "Æra Airfield", + "latitude_deg": "61.257401", + "longitude_deg": "11.6689", + "elevation_ft": "1621", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Åmot", + "scheduled_service": "no", + "gps_code": "ENAE", + "wikipedia_link": "https://no.wikipedia.org/wiki/%C3%98stre_%C3%86ra_flyplass" + }, + { + "id": "319096", + "ident": "ENAH", + "type": "heliport", + "name": "Ål Heliport, Medical Center", + "latitude_deg": "60.629958", + "longitude_deg": "8.567017", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Ål", + "scheduled_service": "no", + "gps_code": "ENAH", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%85l_Heliport,_Medical_Center" + }, + { + "id": "2564", + "ident": "ENAL", + "type": "medium_airport", + "name": "Ålesund Airport, Vigra", + "latitude_deg": "62.5625", + "longitude_deg": "6.1197", + "elevation_ft": "69", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-15", + "municipality": "Ålesund", + "scheduled_service": "yes", + "gps_code": "ENAL", + "iata_code": "AES", + "home_link": "http://www.avinor.no/lufthavn/alesund", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%85lesund_Airport%2C_Vigra", + "keywords": "Vigra" + }, + { + "id": "2565", + "ident": "ENAN", + "type": "medium_airport", + "name": "Andøya Airport, Andenes", + "latitude_deg": "69.292503", + "longitude_deg": "16.144199", + "elevation_ft": "43", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "municipality": "Andenes", + "scheduled_service": "yes", + "gps_code": "ENAN", + "iata_code": "ANX", + "home_link": "https://avinor.no/en/airport/andoya-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/And%C3%B8ya_Airport%2C_Andenes" + }, + { + "id": "319092", + "ident": "ENAR", + "type": "heliport", + "name": "Arendal Heliport, Hospital", + "latitude_deg": "58.467493", + "longitude_deg": "8.754001", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-42", + "municipality": "Arendal", + "scheduled_service": "no", + "gps_code": "ENAR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arendal_Heliport,_Hospital" + }, + { + "id": "31004", + "ident": "ENAS", + "type": "small_airport", + "name": "Ny-Ålesund Airport, Hamnerabben", + "latitude_deg": "78.927498", + "longitude_deg": "11.8743", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-21", + "municipality": "Ny-Ålesund", + "scheduled_service": "no", + "gps_code": "ENAS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ny-%C3%85lesund_Airport,_Hamnerabben", + "keywords": "Brøggerhalvøya Airport" + }, + { + "id": "2566", + "ident": "ENAT", + "type": "medium_airport", + "name": "Alta Airport", + "latitude_deg": "69.976097106934", + "longitude_deg": "23.371700286865", + "elevation_ft": "9", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Alta", + "scheduled_service": "yes", + "gps_code": "ENAT", + "iata_code": "ALF", + "home_link": "https://avinor.no/en/airport/alta-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alta_Airport" + }, + { + "id": "319091", + "ident": "ENAX", + "type": "heliport", + "name": "Ålesund Heliport, Hospital", + "latitude_deg": "62.462942", + "longitude_deg": "6.312435", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-15", + "municipality": "Ålesund", + "scheduled_service": "no", + "gps_code": "ENAX", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%85lesund_Heliport,_Hospital" + }, + { + "id": "319093", + "ident": "ENBA", + "type": "heliport", + "name": "Barentsburg Heliport, Heerodden", + "latitude_deg": "78.101318", + "longitude_deg": "14.195676", + "elevation_ft": "92", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-21", + "municipality": "Barentsburg", + "scheduled_service": "no", + "gps_code": "ENBA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barentsburg_Heliport,_Heerodden" + }, + { + "id": "29253", + "ident": "ENBE", + "type": "heliport", + "name": "Balder A Platform", + "latitude_deg": "59.190601", + "longitude_deg": "2.35806", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENBE" + }, + { + "id": "298358", + "ident": "ENBG", + "type": "heliport", + "name": "Grønneviksøren (Haukeland Sykehus) Heliport", + "latitude_deg": "60.37988", + "longitude_deg": "5.346029", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Bergen", + "scheduled_service": "no", + "gps_code": "ENBG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bergen_Heliport,_Gr%C3%B8nneviks%C3%B8ren" + }, + { + "id": "318215", + "ident": "ENBJ", + "type": "heliport", + "name": "Bjørnøya Heliport", + "latitude_deg": "74.5038889", + "longitude_deg": "19", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-21", + "municipality": "Herwighamna", + "scheduled_service": "no", + "gps_code": "ENBJ", + "keywords": "Bjørnøya" + }, + { + "id": "29254", + "ident": "ENBL", + "type": "small_airport", + "name": "Førde Airport, Bringeland", + "latitude_deg": "61.391102", + "longitude_deg": "5.75694", + "elevation_ft": "1046", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Førde", + "scheduled_service": "yes", + "gps_code": "ENBL", + "iata_code": "FDE", + "home_link": "https://avinor.no/en/airport/forde-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/F%C3%B8rde_Airport%2C_Bringeland", + "keywords": "bringeland" + }, + { + "id": "2567", + "ident": "ENBM", + "type": "small_airport", + "name": "Bømoen Airport", + "latitude_deg": "60.63890075683594", + "longitude_deg": "6.501500129699707", + "elevation_ft": "300", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Tjukkebygdi", + "scheduled_service": "no", + "gps_code": "ENBM" + }, + { + "id": "2568", + "ident": "ENBN", + "type": "medium_airport", + "name": "Brønnøysund Airport, Brønnøy", + "latitude_deg": "65.461098", + "longitude_deg": "12.2175", + "elevation_ft": "25", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "municipality": "Brønnøy", + "scheduled_service": "yes", + "gps_code": "ENBN", + "iata_code": "BNN", + "home_link": "https://avinor.no/en/airport/bronnoysund-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Br%C3%B8nn%C3%B8ysund_Airport%2C_Br%C3%B8nn%C3%B8y", + "keywords": "Bronnoy" + }, + { + "id": "2569", + "ident": "ENBO", + "type": "medium_airport", + "name": "Bodø Airport", + "latitude_deg": "67.269203", + "longitude_deg": "14.3653", + "elevation_ft": "42", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "municipality": "Bodø", + "scheduled_service": "yes", + "gps_code": "ENBO", + "iata_code": "BOO", + "home_link": "http://www.avinor.no/en/airport/bodo/frontpage", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bod%C3%B8_Airport", + "keywords": "Bodø Air Force Base, Bodø Main Air Station" + }, + { + "id": "2570", + "ident": "ENBR", + "type": "large_airport", + "name": "Bergen Airport, Flesland", + "latitude_deg": "60.2934", + "longitude_deg": "5.21814", + "elevation_ft": "170", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Bergen", + "scheduled_service": "yes", + "gps_code": "ENBR", + "iata_code": "BGO", + "home_link": "http://www.avinor.no/en/airport/bergen", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bergen_Airport%2C_Flesland" + }, + { + "id": "2571", + "ident": "ENBS", + "type": "medium_airport", + "name": "Båtsfjord Airport", + "latitude_deg": "70.60050201416", + "longitude_deg": "29.691400527954", + "elevation_ft": "490", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Båtsfjord", + "scheduled_service": "yes", + "gps_code": "ENBS", + "iata_code": "BJF", + "home_link": "https://avinor.no/en/airport/batsfjord-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/B%C3%A5tsfjord_Airport" + }, + { + "id": "29255", + "ident": "ENBV", + "type": "medium_airport", + "name": "Berlevåg Airport", + "latitude_deg": "70.871399", + "longitude_deg": "29.034201", + "elevation_ft": "42", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Berlevåg", + "scheduled_service": "yes", + "gps_code": "ENBV", + "iata_code": "BVG", + "home_link": "https://avinor.no/en/airport/berlevag-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Berlev%C3%A5g_Airport" + }, + { + "id": "2572", + "ident": "ENCN", + "type": "medium_airport", + "name": "Kristiansand Airport, Kjevik", + "latitude_deg": "58.204201", + "longitude_deg": "8.08537", + "elevation_ft": "57", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-42", + "municipality": "Kjevik", + "scheduled_service": "yes", + "gps_code": "ENCN", + "iata_code": "KRS", + "home_link": "http://www.avinor.no/en/airport/kristiansand", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kristiansand_Airport%2C_Kjevik" + }, + { + "id": "319089", + "ident": "ENDB", + "type": "heliport", + "name": "Dombås Heliport, Brunshaugen", + "latitude_deg": "62.068943", + "longitude_deg": "9.121084", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Dombås", + "scheduled_service": "no", + "gps_code": "ENDB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Domb%C3%A5s_Heliport,_Brunshaugen" + }, + { + "id": "319095", + "ident": "ENDH", + "type": "heliport", + "name": "Drammen Heliport, Hospital", + "latitude_deg": "59.747818", + "longitude_deg": "10.197439", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Drammen", + "scheduled_service": "no", + "gps_code": "ENDH" + }, + { + "id": "2573", + "ident": "ENDI", + "type": "small_airport", + "name": "Geilo Airport Dagali", + "latitude_deg": "60.417301177978516", + "longitude_deg": "8.518349647521973", + "elevation_ft": "2618", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Dagali", + "scheduled_service": "no", + "gps_code": "ENDI", + "iata_code": "DLD", + "home_link": "http://www.geilolufthavn.no/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Geilo_Airport%2C_Dagali" + }, + { + "id": "29827", + "ident": "ENDO", + "type": "small_airport", + "name": "Dokka Thomlevold Airfield", + "latitude_deg": "60.833302", + "longitude_deg": "9.91667", + "elevation_ft": "512", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Dokka", + "scheduled_service": "no", + "gps_code": "ENDO", + "wikipedia_link": "https://no.wikipedia.org/wiki/Dokka_flyplass,_Tomlevold" + }, + { + "id": "29256", + "ident": "ENDP", + "type": "heliport", + "name": "Draupner Platform", + "latitude_deg": "58.188099", + "longitude_deg": "2.47111", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENDP" + }, + { + "id": "2574", + "ident": "ENDU", + "type": "medium_airport", + "name": "Bardufoss Airport", + "latitude_deg": "69.055801391602", + "longitude_deg": "18.540399551392", + "elevation_ft": "252", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Målselv", + "scheduled_service": "yes", + "gps_code": "ENDU", + "iata_code": "BDU", + "home_link": "https://avinor.no/en/airport/bardufoss-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bardufoss_Airport" + }, + { + "id": "29257", + "ident": "ENEG", + "type": "small_airport", + "name": "Hønefoss Airport, Eggemoen", + "latitude_deg": "60.2173", + "longitude_deg": "10.3239", + "elevation_ft": "656", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Hønefoss", + "scheduled_service": "no", + "gps_code": "ENEG" + }, + { + "id": "319097", + "ident": "ENEL", + "type": "heliport", + "name": "Elverum Heliport, Innlandet Hospital", + "latitude_deg": "60.876961", + "longitude_deg": "11.569628", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Elverum", + "scheduled_service": "no", + "gps_code": "ENEL" + }, + { + "id": "324008", + "ident": "ENEN", + "type": "medium_airport", + "name": "Engeløy Airport", + "latitude_deg": "67.967222", + "longitude_deg": "14.9925", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "municipality": "Engeløy", + "scheduled_service": "no", + "gps_code": "ENEN", + "home_link": "http://www.engeloyflyplass.no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Engel%C3%B8y_Airport,_Gr%C3%A5dussan" + }, + { + "id": "2575", + "ident": "ENEV", + "type": "medium_airport", + "name": "Harstad/Narvik Airport, Evenes", + "latitude_deg": "68.491302490234", + "longitude_deg": "16.678100585938", + "elevation_ft": "84", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "municipality": "Evenes", + "scheduled_service": "yes", + "gps_code": "ENEV", + "iata_code": "EVE", + "home_link": "https://avinor.no/en/airport/harstadnarvik-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harstad/Narvik_Airport%2C_Evenes", + "keywords": "Harstad/Narvik lufthavn, Evenes" + }, + { + "id": "29258", + "ident": "ENFA", + "type": "small_airport", + "name": "Flatval Airport", + "latitude_deg": "63.700599670410156", + "longitude_deg": "8.76056957244873", + "elevation_ft": "152", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-50", + "municipality": "Frøya", + "scheduled_service": "no", + "gps_code": "ENFA" + }, + { + "id": "329176", + "ident": "ENFD", + "type": "heliport", + "name": "Førde Central Hospital Heliport", + "latitude_deg": "61.456302", + "longitude_deg": "5.890432", + "elevation_ft": "19", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Førde", + "scheduled_service": "no", + "gps_code": "ENFD", + "wikipedia_link": "https://en.wikipedia.org/wiki/F%C3%B8rde_Heliport,_Central_Hospital" + }, + { + "id": "2576", + "ident": "ENFG", + "type": "medium_airport", + "name": "Fagernes Airport, Leirin", + "latitude_deg": "61.015598", + "longitude_deg": "9.28806", + "elevation_ft": "2697", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Fagernes", + "scheduled_service": "no", + "gps_code": "ENFG", + "iata_code": "VDB", + "home_link": "https://avinor.no/en/airport/fagernes-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fagernes_Airport%2C_Leirin" + }, + { + "id": "319098", + "ident": "ENFJ", + "type": "heliport", + "name": "Fedje Heliport, Høgden", + "latitude_deg": "60.765738", + "longitude_deg": "4.733014", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Fedje", + "scheduled_service": "no", + "gps_code": "ENFJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fedje_Heliport,_H%C3%B8gden" + }, + { + "id": "2577", + "ident": "ENFL", + "type": "medium_airport", + "name": "Florø Airport", + "latitude_deg": "61.583599090576", + "longitude_deg": "5.0247201919556", + "elevation_ft": "37", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Florø", + "scheduled_service": "yes", + "gps_code": "ENFL", + "iata_code": "FRO", + "home_link": "https://avinor.no/en/airport/floro-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Flor%C3%B8_Airport", + "keywords": "Floro" + }, + { + "id": "29259", + "ident": "ENFR", + "type": "closed", + "name": "Frigg QP Platform", + "latitude_deg": "59.8782997131", + "longitude_deg": "2.06500005722", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENFR" + }, + { + "id": "28474", + "ident": "ENFY", + "type": "small_airport", + "name": "Fyresdal Airfield", + "latitude_deg": "59.2000007629", + "longitude_deg": "8.086669921879999", + "elevation_ft": "986", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-38", + "municipality": "Fyresdal", + "scheduled_service": "no", + "gps_code": "ENFY", + "home_link": "http://www.airparc.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vest-Telemark_airport%2C_Fyresdal", + "keywords": "Airparc Fyresdal" + }, + { + "id": "29927", + "ident": "ENGK", + "type": "small_airport", + "name": "Arendal Airport, Gullknapp", + "latitude_deg": "58.516701", + "longitude_deg": "8.7", + "elevation_ft": "390", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-42", + "scheduled_service": "no", + "gps_code": "ENGK", + "home_link": "http://www.gullknapp.no/web.aspx?page=112377" + }, + { + "id": "2578", + "ident": "ENGM", + "type": "large_airport", + "name": "Oslo Airport, Gardermoen", + "latitude_deg": "60.193901", + "longitude_deg": "11.1004", + "elevation_ft": "681", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Oslo", + "scheduled_service": "yes", + "gps_code": "ENGM", + "iata_code": "OSL", + "home_link": "https://avinor.no/en/airport/oslo-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oslo_Airport,_Gardermoen" + }, + { + "id": "29872", + "ident": "ENGN", + "type": "small_airport", + "name": "Folldal Grimsmoe Airfield", + "latitude_deg": "62.1175", + "longitude_deg": "10.1108", + "elevation_ft": "2260", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Folldal", + "scheduled_service": "no", + "gps_code": "ENGN" + }, + { + "id": "44873", + "ident": "ENGS", + "type": "small_airport", + "name": "Snåsa Airfield Grønøra", + "latitude_deg": "64.1835861", + "longitude_deg": "12.17147827", + "elevation_ft": "89", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-50", + "municipality": "Snåsa", + "scheduled_service": "no", + "gps_code": "ENGS" + }, + { + "id": "29260", + "ident": "ENHA", + "type": "small_airport", + "name": "Hamar Lufthavn, Stavsberg", + "latitude_deg": "60.8181", + "longitude_deg": "11.068", + "elevation_ft": "729", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Hamar", + "scheduled_service": "no", + "gps_code": "ENHA", + "iata_code": "HMR", + "home_link": "https://hamarlufthavn.no/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hamar_Airport%2C_Stafsberg" + }, + { + "id": "2579", + "ident": "ENHD", + "type": "medium_airport", + "name": "Haugesund Airport, Karmøy", + "latitude_deg": "59.345299", + "longitude_deg": "5.20836", + "elevation_ft": "86", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-11", + "municipality": "Karmøy", + "scheduled_service": "yes", + "gps_code": "ENHD", + "iata_code": "HAU", + "home_link": "https://flyhau.no/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Haugesund_Airport%2C_Karm%C3%B8y", + "keywords": "Karmoy" + }, + { + "id": "28115", + "ident": "ENHF", + "type": "medium_airport", + "name": "Hammerfest Airport", + "latitude_deg": "70.679702758789", + "longitude_deg": "23.668600082397", + "elevation_ft": "266", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Hammerfest", + "scheduled_service": "yes", + "gps_code": "ENHF", + "iata_code": "HFT", + "home_link": "https://avinor.no/en/airport/hammerfest-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hammerfest_Airport" + }, + { + "id": "2580", + "ident": "ENHK", + "type": "small_airport", + "name": "Hasvik Airport", + "latitude_deg": "70.486701965332", + "longitude_deg": "22.139699935913", + "elevation_ft": "21", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Hasvik", + "scheduled_service": "yes", + "gps_code": "ENHK", + "iata_code": "HAA", + "home_link": "https://avinor.no/en/airport/hasvik-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hasvik_Airport" + }, + { + "id": "355032", + "ident": "ENHL", + "type": "small_airport", + "name": "Jæren Mikroflyklubb Field", + "latitude_deg": "58.684171", + "longitude_deg": "5.584273", + "elevation_ft": "28", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-11", + "municipality": "Nærbø", + "scheduled_service": "no", + "gps_code": "ENHL", + "local_code": "4365", + "home_link": "http://www.jarenmfk.nlf.no/" + }, + { + "id": "29850", + "ident": "ENHN", + "type": "small_airport", + "name": "Elverum Starmoen Airport", + "latitude_deg": "60.880001", + "longitude_deg": "11.6731", + "elevation_ft": "659", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "scheduled_service": "no", + "gps_code": "ENSM", + "wikipedia_link": "https://no.wikipedia.org/wiki/Starmoen_flyplass,_Elverum" + }, + { + "id": "319105", + "ident": "ENHO", + "type": "heliport", + "name": "Hopen Heliport", + "latitude_deg": "76.508067", + "longitude_deg": "25.014337", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-21", + "scheduled_service": "no", + "gps_code": "ENHO" + }, + { + "id": "29955", + "ident": "ENHS", + "type": "small_airport", + "name": "Hokksund Airfield", + "latitude_deg": "59.759868", + "longitude_deg": "9.91856", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "scheduled_service": "no", + "gps_code": "ENHS", + "home_link": "https://enhs.no/home/flyplassen/", + "wikipedia_link": "https://no.wikipedia.org/wiki/Hokksund_flyplass" + }, + { + "id": "29939", + "ident": "ENHT", + "type": "small_airport", + "name": "Hattfjelldal Airport", + "latitude_deg": "65.5947036743164", + "longitude_deg": "13.9891996383667", + "elevation_ft": "689", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "municipality": "Hattfjelldal", + "scheduled_service": "no", + "gps_code": "ENHT" + }, + { + "id": "29261", + "ident": "ENHV", + "type": "medium_airport", + "name": "Honningsvåg Airport, Valan", + "latitude_deg": "71.009697", + "longitude_deg": "25.983601", + "elevation_ft": "44", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Honningsvåg", + "scheduled_service": "yes", + "gps_code": "ENHV", + "iata_code": "HVG", + "home_link": "https://avinor.no/en/airport/honningsvag-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valan_Airport" + }, + { + "id": "319103", + "ident": "ENHX", + "type": "heliport", + "name": "Haugesund Heliport, Haugesund Hospital", + "latitude_deg": "59.408763", + "longitude_deg": "5.279548", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-11", + "municipality": "Haugesund", + "scheduled_service": "no", + "gps_code": "ENHX" + }, + { + "id": "301115", + "ident": "ENJA", + "type": "small_airport", + "name": "Jan Mayensfield", + "latitude_deg": "70.9441166", + "longitude_deg": "-8.6520736", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-22", + "scheduled_service": "no", + "gps_code": "ENJA", + "home_link": "http://www.jan-mayen.no/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jan_Mayensfield", + "keywords": "Jan Mayen" + }, + { + "id": "29988", + "ident": "ENJB", + "type": "small_airport", + "name": "Jarlsberg Airfield", + "latitude_deg": "59.29999923706055", + "longitude_deg": "10.366700172424316", + "elevation_ft": "92", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-38", + "municipality": "Tønsberg", + "scheduled_service": "no", + "gps_code": "ENJB" + }, + { + "id": "29262", + "ident": "ENKA", + "type": "small_airport", + "name": "Kautokeino Air Base", + "latitude_deg": "69.040298", + "longitude_deg": "23.034", + "elevation_ft": "1165", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "scheduled_service": "no", + "gps_code": "ENKA" + }, + { + "id": "2581", + "ident": "ENKB", + "type": "medium_airport", + "name": "Kristiansund Airport, Kvernberget", + "latitude_deg": "63.111801", + "longitude_deg": "7.82452", + "elevation_ft": "204", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-15", + "municipality": "Kvernberget", + "scheduled_service": "yes", + "gps_code": "ENKB", + "iata_code": "KSU", + "home_link": "https://avinor.no/en/airport/kristiansund-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kristiansund_Airport%2C_Kvernberget", + "keywords": "Kristiansund lufthavn, Kvernberget" + }, + { + "id": "2582", + "ident": "ENKJ", + "type": "small_airport", + "name": "Lillestrøm Airport, Kjeller", + "latitude_deg": "59.969299", + "longitude_deg": "11.0361", + "elevation_ft": "354", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Kjeller", + "scheduled_service": "no", + "gps_code": "ENKJ", + "home_link": "http://www.kjellerflyplass.no/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kjeller_Airport", + "keywords": "Lillestrøm" + }, + { + "id": "30032", + "ident": "ENKL", + "type": "small_airport", + "name": "Gol Airport", + "latitude_deg": "60.791066", + "longitude_deg": "9.048672", + "elevation_ft": "2770", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Klanten flyplass", + "scheduled_service": "no", + "gps_code": "ENKL", + "iata_code": "GLL", + "home_link": "http://hallingdalflyklubb.no/wordpress/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gol_Airport,_Klanten" + }, + { + "id": "2583", + "ident": "ENKR", + "type": "medium_airport", + "name": "Kirkenes Airport, Høybuktmoen", + "latitude_deg": "69.7258", + "longitude_deg": "29.8913", + "elevation_ft": "283", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Kirkenes", + "scheduled_service": "yes", + "gps_code": "ENKR", + "iata_code": "KKN", + "home_link": "https://avinor.no/en/airport/kirkenes-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kirkenes_Airport%2C_H%C3%B8ybuktmoen" + }, + { + "id": "29263", + "ident": "ENLA", + "type": "heliport", + "name": "Ula Platform", + "latitude_deg": "57.111667", + "longitude_deg": "2.846667", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENLA" + }, + { + "id": "319109", + "ident": "ENLH", + "type": "heliport", + "name": "Lillehammer Heliport, Innlandet Hospital", + "latitude_deg": "61.11325", + "longitude_deg": "10.472165", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Lillehammer", + "scheduled_service": "no", + "gps_code": "ENLH" + }, + { + "id": "2584", + "ident": "ENLI", + "type": "small_airport", + "name": "Lista Airport", + "latitude_deg": "58.0994987487793", + "longitude_deg": "6.626049995422363", + "elevation_ft": "29", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-42", + "municipality": "Farsund", + "scheduled_service": "no", + "gps_code": "ENLI", + "iata_code": "FAN", + "home_link": "http://www.listalufthavn.no/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Farsund_Airport,_Lista", + "keywords": "Farsund lufthavn, Lista" + }, + { + "id": "29264", + "ident": "ENLK", + "type": "medium_airport", + "name": "Leknes Airport", + "latitude_deg": "68.152496337891", + "longitude_deg": "13.609399795532", + "elevation_ft": "78", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "municipality": "Leknes", + "scheduled_service": "yes", + "gps_code": "ENLK", + "iata_code": "LKN", + "home_link": "https://avinor.no/en/airport/leknes-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leknes_Airport", + "keywords": "Leknes lufthavn" + }, + { + "id": "30092", + "ident": "ENLU", + "type": "small_airport", + "name": "Lunde Nome Airfield", + "latitude_deg": "59.298099517822266", + "longitude_deg": "9.132729530334473", + "elevation_ft": "190", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-38", + "municipality": "Lunde Nome", + "scheduled_service": "no", + "gps_code": "ENLU" + }, + { + "id": "319110", + "ident": "ENLX", + "type": "heliport", + "name": "Lørenskog Heliport, Ahus", + "latitude_deg": "59.932138", + "longitude_deg": "10.986877", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Lørenskog", + "scheduled_service": "no", + "gps_code": "ENLX", + "wikipedia_link": "https://en.wikipedia.org/wiki/L%C3%B8renskog_Heliport,_Ahus" + }, + { + "id": "29265", + "ident": "ENMH", + "type": "medium_airport", + "name": "Mehamn Airport", + "latitude_deg": "71.02970123291", + "longitude_deg": "27.826700210571", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Mehamn", + "scheduled_service": "yes", + "gps_code": "ENMH", + "iata_code": "MEH", + "home_link": "https://avinor.no/en/airport/mehamn-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mehamn_Airport" + }, + { + "id": "2585", + "ident": "ENML", + "type": "medium_airport", + "name": "Molde Airport, Årø", + "latitude_deg": "62.744701", + "longitude_deg": "7.2625", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-15", + "municipality": "Årø", + "scheduled_service": "yes", + "gps_code": "ENML", + "iata_code": "MOL", + "home_link": "https://avinor.no/en/airport/molde-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Molde_Airport%2C_%C3%85r%C3%B8", + "keywords": "Aro" + }, + { + "id": "2586", + "ident": "ENMS", + "type": "medium_airport", + "name": "Mosjøen Airport, Kjærstad", + "latitude_deg": "65.783997", + "longitude_deg": "13.2149", + "elevation_ft": "237", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "municipality": "Mosjøen", + "scheduled_service": "yes", + "gps_code": "ENMS", + "iata_code": "MJF", + "home_link": "https://avinor.no/en/airport/mosjoen-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mosj%C3%B8en_Airport%2C_Kj%C3%A6rstad" + }, + { + "id": "2587", + "ident": "ENNA", + "type": "medium_airport", + "name": "Lakselv Airport, Banak", + "latitude_deg": "70.068802", + "longitude_deg": "24.973499", + "elevation_ft": "25", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Lakselv", + "scheduled_service": "yes", + "gps_code": "ENNA", + "iata_code": "LKL", + "home_link": "https://avinor.no/en/airport/lakselv-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lakselv_Airport%2C_Banak", + "keywords": "North Cape Airport" + }, + { + "id": "319142", + "ident": "ENNH", + "type": "heliport", + "name": "Namsos Heliport, Hospital", + "latitude_deg": "64.469981", + "longitude_deg": "11.504007", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-50", + "municipality": "Namsos", + "scheduled_service": "no", + "gps_code": "ENNH" + }, + { + "id": "29266", + "ident": "ENNK", + "type": "closed", + "name": "Narvik Framnes Airport", + "latitude_deg": "68.436897", + "longitude_deg": "17.3867", + "elevation_ft": "95", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "municipality": "Narvik", + "scheduled_service": "no", + "gps_code": "ENNK", + "iata_code": "NVK", + "home_link": "https://avinor.no/en/airport/narvik-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Narvik_Airport%2C_Framnes", + "keywords": "Narvik lufthavn, Framnes" + }, + { + "id": "29267", + "ident": "ENNM", + "type": "small_airport", + "name": "Namsos Airport", + "latitude_deg": "64.472198", + "longitude_deg": "11.5786", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-50", + "municipality": "Namsos", + "scheduled_service": "yes", + "gps_code": "ENNM", + "iata_code": "OSY", + "home_link": "https://avinor.no/en/airport/namsos-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Namsos_Airport%2C_H%C3%B8knes%C3%B8ra", + "keywords": "Namsos lufthavn, Høknesøra" + }, + { + "id": "2588", + "ident": "ENNO", + "type": "medium_airport", + "name": "Notodden Airport", + "latitude_deg": "59.565701", + "longitude_deg": "9.21222", + "elevation_ft": "63", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-38", + "municipality": "Notodden", + "scheduled_service": "yes", + "gps_code": "ENNO", + "iata_code": "NTB", + "home_link": "http://www.notodden-flyplass.no/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Notodden_Airport%2C_Tuven" + }, + { + "id": "29268", + "ident": "ENOA", + "type": "heliport", + "name": "Oseberg A Platform", + "latitude_deg": "60.491402", + "longitude_deg": "2.82556", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENOA" + }, + { + "id": "29269", + "ident": "ENOC", + "type": "heliport", + "name": "Oseberg C Platform", + "latitude_deg": "60.6078", + "longitude_deg": "2.77444", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENOC" + }, + { + "id": "2589", + "ident": "ENOL", + "type": "medium_airport", + "name": "Ørland Airport", + "latitude_deg": "63.69889831542969", + "longitude_deg": "9.604000091552734", + "elevation_ft": "28", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-50", + "municipality": "Ørland", + "scheduled_service": "yes", + "gps_code": "ENOL", + "iata_code": "OLA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brekstad_Airport%2C_%C3%98rland", + "keywords": "Orland" + }, + { + "id": "2590", + "ident": "ENOP", + "type": "small_airport", + "name": "Fagerhaug Airport", + "latitude_deg": "62.649898529052734", + "longitude_deg": "9.846739768981934", + "elevation_ft": "1830", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-50", + "scheduled_service": "no", + "gps_code": "ENOP" + }, + { + "id": "28114", + "ident": "ENOV", + "type": "medium_airport", + "name": "Ørsta-Volda Airport, Hovden", + "latitude_deg": "62.180000305176", + "longitude_deg": "6.0741000175476", + "elevation_ft": "243", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-15", + "municipality": "Ørsta", + "scheduled_service": "yes", + "gps_code": "ENOV", + "iata_code": "HOV", + "home_link": "https://avinor.no/en/airport/orsta-volda-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%98rsta-Volda_Airport%2C_Hovden" + }, + { + "id": "319146", + "ident": "ENPY", + "type": "heliport", + "name": "Pyramiden Heliport", + "latitude_deg": "78.652322", + "longitude_deg": "16.337208", + "elevation_ft": "6", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-21", + "municipality": "Pyramiden", + "scheduled_service": "no", + "gps_code": "ENPY" + }, + { + "id": "29270", + "ident": "ENQA", + "type": "heliport", + "name": "Troll A Platform", + "latitude_deg": "60.645", + "longitude_deg": "3.72472", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENQA" + }, + { + "id": "29271", + "ident": "ENQB", + "type": "heliport", + "name": "Troll B Platform", + "latitude_deg": "60.773899", + "longitude_deg": "3.50139", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENQB" + }, + { + "id": "29272", + "ident": "ENQC", + "type": "heliport", + "name": "Troll C Platform", + "latitude_deg": "60.885799", + "longitude_deg": "3.60972", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENQC" + }, + { + "id": "29273", + "ident": "ENQD", + "type": "heliport", + "name": "Brage A Platform", + "latitude_deg": "60.541901", + "longitude_deg": "3.04583", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENQD" + }, + { + "id": "29274", + "ident": "ENQE", + "type": "heliport", + "name": "Oseberg South Platform", + "latitude_deg": "60.389702", + "longitude_deg": "2.79556", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENQE" + }, + { + "id": "29275", + "ident": "ENQO", + "type": "heliport", + "name": "Oseberg East Platform", + "latitude_deg": "60.700001", + "longitude_deg": "2.93361", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENQO" + }, + { + "id": "29276", + "ident": "ENQU", + "type": "heliport", + "name": "Huldra Platform", + "latitude_deg": "60.855301", + "longitude_deg": "2.64861", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENQU" + }, + { + "id": "29277", + "ident": "ENRA", + "type": "medium_airport", + "name": "Mo i Rana Airport, Røssvoll", + "latitude_deg": "66.363899230957", + "longitude_deg": "14.301400184631", + "elevation_ft": "229", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "municipality": "Mo i Rana", + "scheduled_service": "yes", + "gps_code": "ENRA", + "iata_code": "MQN", + "home_link": "https://avinor.no/en/airport/mo-i-rana-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mo_i_Rana_Airport%2C_R%C3%B8ssvoll" + }, + { + "id": "30346", + "ident": "ENRG", + "type": "small_airport", + "name": "Rognan Airport", + "latitude_deg": "67.09829711914062", + "longitude_deg": "15.411100387573242", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "municipality": "Saltdal", + "scheduled_service": "no", + "gps_code": "ENRG" + }, + { + "id": "319143", + "ident": "ENRH", + "type": "heliport", + "name": "Oslo Heliport, Rikshospitalet", + "latitude_deg": "59.948467", + "longitude_deg": "10.716144", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-03", + "municipality": "Oslo", + "scheduled_service": "no", + "gps_code": "ENRH" + }, + { + "id": "29880", + "ident": "ENRI", + "type": "small_airport", + "name": "Ringebu Airfield Frya", + "latitude_deg": "61.545440673", + "longitude_deg": "10.061588287", + "elevation_ft": "571", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Frya", + "scheduled_service": "no", + "gps_code": "ENRI" + }, + { + "id": "30317", + "ident": "ENRK", + "type": "small_airport", + "name": "Rakkestad Astorp Airport", + "latitude_deg": "59.397499", + "longitude_deg": "11.3469", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Rakkestad", + "scheduled_service": "no", + "gps_code": "ENRK", + "home_link": "http://enrk.net/" + }, + { + "id": "29278", + "ident": "ENRM", + "type": "medium_airport", + "name": "Rørvik Airport, Ryum", + "latitude_deg": "64.838302612305", + "longitude_deg": "11.14610004425", + "elevation_ft": "14", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-50", + "municipality": "Rørvik", + "scheduled_service": "yes", + "gps_code": "ENRM", + "iata_code": "RVK", + "home_link": "https://avinor.no/en/airport/rorvik-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/R%C3%B8rvik_Airport%2C_Ryum" + }, + { + "id": "2591", + "ident": "ENRO", + "type": "medium_airport", + "name": "Røros Airport", + "latitude_deg": "62.578399658203", + "longitude_deg": "11.342300415039", + "elevation_ft": "2054", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-50", + "municipality": "Røros", + "scheduled_service": "yes", + "gps_code": "ENRO", + "iata_code": "RRS", + "home_link": "https://avinor.no/en/airport/roros-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/R%C3%B8ros_Airport", + "keywords": "Roros" + }, + { + "id": "29279", + "ident": "ENRS", + "type": "small_airport", + "name": "Røst Airport", + "latitude_deg": "67.527801513672", + "longitude_deg": "12.103300094604", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "scheduled_service": "yes", + "gps_code": "ENRS", + "iata_code": "RET", + "home_link": "https://avinor.no/en/airport/rost-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/R%C3%B8st_Airport", + "keywords": "Rost Airport" + }, + { + "id": "319152", + "ident": "ENRT", + "type": "heliport", + "name": "Trondheim Heliport, Rosten", + "latitude_deg": "63.368133", + "longitude_deg": "10.374015", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-50", + "municipality": "Trondheim", + "scheduled_service": "no", + "gps_code": "ENRT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trondheim_Heliport,_Rosten" + }, + { + "id": "30330", + "ident": "ENRV", + "type": "small_airport", + "name": "Reinsvoll Airfield", + "latitude_deg": "60.672199", + "longitude_deg": "10.5675", + "elevation_ft": "1381", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Reinsvoll", + "scheduled_service": "no", + "gps_code": "ENRV" + }, + { + "id": "319104", + "ident": "ENRX", + "type": "heliport", + "name": "Hønefoss Heliport, Ringerike Hospital", + "latitude_deg": "60.149111", + "longitude_deg": "10.255219", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Hønefoss", + "scheduled_service": "no", + "gps_code": "ENRX" + }, + { + "id": "2592", + "ident": "ENRY", + "type": "medium_airport", + "name": "Moss Airport, Rygge", + "latitude_deg": "59.378817", + "longitude_deg": "10.785439", + "elevation_ft": "174", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Oslo", + "scheduled_service": "no", + "gps_code": "ENRY", + "iata_code": "RYG", + "home_link": "http://www.en.ryg.no/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moss_Airport%2C_Rygge", + "keywords": "Moss lufthavn Rygge, Rygge Air Station" + }, + { + "id": "42222", + "ident": "ENSA", + "type": "small_airport", + "name": "Svea Airport", + "latitude_deg": "77.8969444", + "longitude_deg": "16.725", + "elevation_ft": "32", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-21", + "municipality": "Svea", + "scheduled_service": "no", + "gps_code": "ENSA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Svea_Airport" + }, + { + "id": "2593", + "ident": "ENSB", + "type": "medium_airport", + "name": "Svalbard Airport, Longyear", + "latitude_deg": "78.246101379395", + "longitude_deg": "15.465600013733", + "elevation_ft": "88", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-21", + "municipality": "Longyearbyen", + "scheduled_service": "yes", + "gps_code": "ENSB", + "iata_code": "LYR", + "home_link": "https://avinor.no/en/airport/svalbard-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Svalbard_Airport%2C_Longyear" + }, + { + "id": "29280", + "ident": "ENSD", + "type": "small_airport", + "name": "Sandane Airport, Anda", + "latitude_deg": "61.830002", + "longitude_deg": "6.10583", + "elevation_ft": "196", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Sandane", + "scheduled_service": "yes", + "gps_code": "ENSD", + "iata_code": "SDN", + "home_link": "https://avinor.no/en/airport/sandane-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sandane_Airport%2C_Anda" + }, + { + "id": "28116", + "ident": "ENSG", + "type": "small_airport", + "name": "Sogndal Airport, Haukåsen", + "latitude_deg": "61.156101", + "longitude_deg": "7.13778", + "elevation_ft": "1633", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Sogndal", + "scheduled_service": "yes", + "gps_code": "ENSG", + "iata_code": "SOG", + "home_link": "https://avinor.no/en/airport/sogndal-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sogndal_Airport,_Hauk%C3%A5sen", + "keywords": "Haukåsen" + }, + { + "id": "29281", + "ident": "ENSH", + "type": "medium_airport", + "name": "Svolvær Airport, Helle", + "latitude_deg": "68.243301", + "longitude_deg": "14.6692", + "elevation_ft": "27", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "municipality": "Svolvær", + "scheduled_service": "yes", + "gps_code": "ENSH", + "iata_code": "SVJ", + "home_link": "https://avinor.no/en/airport/svolvar-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Svolv%C3%A6r_Airport%2C_Helle", + "keywords": "Svolvær lufthavn, Helle" + }, + { + "id": "44897", + "ident": "ENSI", + "type": "small_airport", + "name": "Ski Airfield", + "latitude_deg": "59.706390380859375", + "longitude_deg": "10.88194465637207", + "elevation_ft": "350", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Ski", + "scheduled_service": "no", + "gps_code": "ENSI" + }, + { + "id": "29282", + "ident": "ENSK", + "type": "medium_airport", + "name": "Stokmarknes Airport, Skagen", + "latitude_deg": "68.578827", + "longitude_deg": "15.033417", + "elevation_ft": "11", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "municipality": "Hadsel", + "scheduled_service": "yes", + "gps_code": "ENSK", + "iata_code": "SKN", + "home_link": "https://avinor.no/en/airport/stokmarknes-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stokmarknes_Airport%2C_Skagen", + "keywords": "Stokmarknes lufthavn, Skagen" + }, + { + "id": "29283", + "ident": "ENSL", + "type": "heliport", + "name": "Sleipner A Platform", + "latitude_deg": "58.366699", + "longitude_deg": "1.90694", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENSL" + }, + { + "id": "2594", + "ident": "ENSN", + "type": "medium_airport", + "name": "Skien Airport", + "latitude_deg": "59.185001373291016", + "longitude_deg": "9.566940307617188", + "elevation_ft": "463", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-38", + "municipality": "Geiteryggen", + "scheduled_service": "no", + "gps_code": "ENSN", + "iata_code": "SKE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Skien_Airport%2C_Geiteryggen" + }, + { + "id": "2595", + "ident": "ENSO", + "type": "medium_airport", + "name": "Stord Airport, Sørstokken", + "latitude_deg": "59.791901", + "longitude_deg": "5.34085", + "elevation_ft": "160", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Leirvik", + "scheduled_service": "yes", + "gps_code": "ENSO", + "iata_code": "SRP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stord_Airport%2C_S%C3%B8rstokken", + "keywords": "Sorstokken, Sørstokken" + }, + { + "id": "2596", + "ident": "ENSR", + "type": "medium_airport", + "name": "Sørkjosen Airport", + "latitude_deg": "69.786796569824", + "longitude_deg": "20.959400177002", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Sørkjosen", + "scheduled_service": "yes", + "gps_code": "ENSR", + "iata_code": "SOJ", + "home_link": "https://avinor.no/en/airport/sorkjosen-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/S%C3%B8rkjosen_Airport" + }, + { + "id": "2597", + "ident": "ENSS", + "type": "medium_airport", + "name": "Vardø Airport, Svartnes", + "latitude_deg": "70.355400085449", + "longitude_deg": "31.044900894165", + "elevation_ft": "42", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Vardø", + "scheduled_service": "yes", + "gps_code": "ENSS", + "iata_code": "VAW", + "home_link": "https://avinor.no/en/airport/vardo-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vard%C3%B8_Airport%2C_Svartnes" + }, + { + "id": "2598", + "ident": "ENST", + "type": "medium_airport", + "name": "Sandnessjøen Airport, Stokka", + "latitude_deg": "65.956802", + "longitude_deg": "12.4689", + "elevation_ft": "56", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "municipality": "Alstahaug", + "scheduled_service": "yes", + "gps_code": "ENST", + "iata_code": "SSJ", + "home_link": "https://avinor.no/en/airport/sandnessjoen-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sandnessj%C3%B8en_Airport%2C_Stokka" + }, + { + "id": "30448", + "ident": "ENSU", + "type": "small_airport", + "name": "Vinnu Airport", + "latitude_deg": "62.65829849243164", + "longitude_deg": "8.664999961853027", + "elevation_ft": "249", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-15", + "municipality": "Sunndalsøra", + "scheduled_service": "no", + "gps_code": "ENSU" + }, + { + "id": "319147", + "ident": "ENSX", + "type": "heliport", + "name": "Stavanger Heliport, University Hospital", + "latitude_deg": "58.9521", + "longitude_deg": "5.730924", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-11", + "municipality": "Stavanger", + "scheduled_service": "no", + "gps_code": "ENSX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stavanger_Heliport,_University_Hospital" + }, + { + "id": "2599", + "ident": "ENTC", + "type": "large_airport", + "name": "Tromsø Airport, Langnes", + "latitude_deg": "69.683296", + "longitude_deg": "18.9189", + "elevation_ft": "31", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Tromsø", + "scheduled_service": "yes", + "gps_code": "ENTC", + "iata_code": "TOS", + "home_link": "http://www.avinor.no/en/airport/tromso", + "wikipedia_link": "https://en.wikipedia.org/wiki/Troms%C3%B8_Airport", + "keywords": "Langnes, Tromsøya, Tromso" + }, + { + "id": "329178", + "ident": "ENTE", + "type": "heliport", + "name": "Skien Hospital Heliport", + "latitude_deg": "59.190744", + "longitude_deg": "9.593279", + "elevation_ft": "91", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-38", + "municipality": "Skien", + "scheduled_service": "no", + "gps_code": "ENTE" + }, + { + "id": "2600", + "ident": "ENTO", + "type": "medium_airport", + "name": "Sandefjord Airport, Torp", + "latitude_deg": "59.1866989136", + "longitude_deg": "10.258600235", + "elevation_ft": "286", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-38", + "municipality": "Torp", + "scheduled_service": "yes", + "gps_code": "ENTO", + "iata_code": "TRF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sandefjord_Airport%2C_Torp" + }, + { + "id": "319088", + "ident": "ENTR", + "type": "heliport", + "name": "St Olav's Hospital Helipad", + "latitude_deg": "63.419894", + "longitude_deg": "10.385954", + "elevation_ft": "93", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-50", + "municipality": "Trondheim", + "scheduled_service": "no", + "gps_code": "ENTR", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Olav%27s_University_Hospital" + }, + { + "id": "30493", + "ident": "ENTS", + "type": "small_airport", + "name": "Trysil Sæteråsen Airport", + "latitude_deg": "61.229278564453125", + "longitude_deg": "12.266407012939453", + "elevation_ft": "1900", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "scheduled_service": "no", + "gps_code": "ENTS" + }, + { + "id": "30502", + "ident": "ENTY", + "type": "small_airport", + "name": "Tynset Airfield", + "latitude_deg": "62.256901", + "longitude_deg": "10.6694", + "elevation_ft": "1581", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Tynset", + "scheduled_service": "no", + "gps_code": "ENTY" + }, + { + "id": "319144", + "ident": "ENUH", + "type": "heliport", + "name": "Oslo Heliport, Ullevaal", + "latitude_deg": "59.936215", + "longitude_deg": "10.736541", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-03", + "municipality": "Oslo", + "scheduled_service": "no", + "gps_code": "ENUH" + }, + { + "id": "30225", + "ident": "ENUL", + "type": "small_airport", + "name": "Os Vaksinen Ulven Airport", + "latitude_deg": "60.1922", + "longitude_deg": "5.4225", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Ulven", + "scheduled_service": "no", + "gps_code": "ENUL", + "home_link": "http://www.osaeroklubb.no/?page_id=51" + }, + { + "id": "2601", + "ident": "ENVA", + "type": "large_airport", + "name": "Trondheim Airport, Værnes", + "latitude_deg": "63.457802", + "longitude_deg": "10.924", + "elevation_ft": "56", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-50", + "municipality": "Trondheim", + "scheduled_service": "yes", + "gps_code": "ENVA", + "iata_code": "TRD", + "home_link": "https://avinor.no/en/airport/trondheim-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trondheim_Airport%2C_V%C3%A6rnes" + }, + { + "id": "29284", + "ident": "ENVD", + "type": "medium_airport", + "name": "Vadsø Airport", + "latitude_deg": "70.065299987793", + "longitude_deg": "29.844699859619", + "elevation_ft": "127", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Vadsø", + "scheduled_service": "yes", + "gps_code": "ENVD", + "iata_code": "VDS", + "home_link": "https://avinor.no/en/airport/vadso-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vads%C3%B8_Airport" + }, + { + "id": "30520", + "ident": "ENVE", + "type": "small_airport", + "name": "Valle Airfield Åraksøyne", + "latitude_deg": "59.031723", + "longitude_deg": "7.554903", + "elevation_ft": "771", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-42", + "municipality": "Valle", + "scheduled_service": "no", + "gps_code": "ENVE", + "wikipedia_link": "http://no.wikipedia.org/wiki/Valle_flyplass,_Åraksøyne" + }, + { + "id": "29285", + "ident": "ENVF", + "type": "heliport", + "name": "Veslefrikk B Platform", + "latitude_deg": "60.7822", + "longitude_deg": "2.89611", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENVF" + }, + { + "id": "29286", + "ident": "ENVH", + "type": "heliport", + "name": "Valhall A Platform", + "latitude_deg": "56.278099060058594", + "longitude_deg": "3.392780065536499", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENVH" + }, + { + "id": "35127", + "ident": "ENVR", + "type": "heliport", + "name": "Værøy Heliport", + "latitude_deg": "67.654555", + "longitude_deg": "12.727257", + "elevation_ft": "12", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "municipality": "Værøy", + "scheduled_service": "yes", + "gps_code": "ENVR", + "iata_code": "VRY", + "home_link": "https://avinor.no/en/airport/varoy-heliport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/V%C3%A6r%C3%B8y_Heliport", + "keywords": "Værøy STOLport" + }, + { + "id": "30517", + "ident": "ENVY", + "type": "closed", + "name": "Værøy STOLport", + "latitude_deg": "67.68920135498047", + "longitude_deg": "12.680000305175781", + "elevation_ft": "36", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "municipality": "Værøy", + "scheduled_service": "no", + "gps_code": "ENVY", + "wikipedia_link": "https://en.wikipedia.org/wiki/V%C3%A6r%C3%B8y_Heliport" + }, + { + "id": "29287", + "ident": "ENXA", + "type": "heliport", + "name": "Ekofisk A Platform", + "latitude_deg": "56.520301818847656", + "longitude_deg": "3.2213900089263916", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXA" + }, + { + "id": "29288", + "ident": "ENXB", + "type": "heliport", + "name": "Eldfisk B Platform", + "latitude_deg": "56.41859817504883", + "longitude_deg": "3.216939926147461", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXB" + }, + { + "id": "29289", + "ident": "ENXC", + "type": "heliport", + "name": "Cod Platform", + "latitude_deg": "57.068901", + "longitude_deg": "2.43333", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXC" + }, + { + "id": "29290", + "ident": "ENXD", + "type": "heliport", + "name": "Ekofisk D Platform", + "latitude_deg": "56.5625", + "longitude_deg": "3.08417010307312", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXD" + }, + { + "id": "29291", + "ident": "ENXE", + "type": "heliport", + "name": "Edda Platform", + "latitude_deg": "56.46419906616211", + "longitude_deg": "3.103060007095337", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXE" + }, + { + "id": "29292", + "ident": "ENXF", + "type": "heliport", + "name": "Albuskjell F Platform", + "latitude_deg": "56.619998931884766", + "longitude_deg": "3.052500009536743", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXF" + }, + { + "id": "29293", + "ident": "ENXG", + "type": "heliport", + "name": "Gyda Platform", + "latitude_deg": "56.904202", + "longitude_deg": "3.08361", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXG" + }, + { + "id": "29294", + "ident": "ENXH", + "type": "heliport", + "name": "Hod Platform", + "latitude_deg": "56.1758", + "longitude_deg": "3.45861", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXH" + }, + { + "id": "29295", + "ident": "ENXJ", + "type": "heliport", + "name": "Valhall Flank South Platform", + "latitude_deg": "56.226898193359375", + "longitude_deg": "3.4358301162719727", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXJ" + }, + { + "id": "29296", + "ident": "ENXK", + "type": "heliport", + "name": "Ekofisk K Platform", + "latitude_deg": "56.56529998779297", + "longitude_deg": "3.2047200202941895", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXK" + }, + { + "id": "29297", + "ident": "ENXL", + "type": "heliport", + "name": "Eldfisk A Platform", + "latitude_deg": "56.3760986328125", + "longitude_deg": "3.2644400596618652", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXL" + }, + { + "id": "29298", + "ident": "ENXM", + "type": "heliport", + "name": "Embla Platform", + "latitude_deg": "56.33250045776367", + "longitude_deg": "3.2469398975372314", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXM" + }, + { + "id": "29299", + "ident": "ENXN", + "type": "heliport", + "name": "Jotun A Platform", + "latitude_deg": "59.4506", + "longitude_deg": "2.36528", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXN" + }, + { + "id": "29300", + "ident": "ENXO", + "type": "heliport", + "name": "Ringhorne Platform", + "latitude_deg": "59.266701", + "longitude_deg": "2.45", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXO" + }, + { + "id": "29301", + "ident": "ENXP", + "type": "heliport", + "name": "Petrojarl Varg Platform", + "latitude_deg": "58.0783", + "longitude_deg": "1.91", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXP" + }, + { + "id": "29302", + "ident": "ENXQ", + "type": "closed", + "name": "Frigg DP2 Platform", + "latitude_deg": "59.8856010437", + "longitude_deg": "2.07083010674", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXQ" + }, + { + "id": "29303", + "ident": "ENXR", + "type": "heliport", + "name": "Tambar Platform", + "latitude_deg": "56.983299255371094", + "longitude_deg": "2.958329916000366", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXR" + }, + { + "id": "29304", + "ident": "ENXS", + "type": "heliport", + "name": "Albuskjell A Platform", + "latitude_deg": "56.6422004699707", + "longitude_deg": "2.938610076904297", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXS" + }, + { + "id": "29305", + "ident": "ENXT", + "type": "heliport", + "name": "Tor Platform", + "latitude_deg": "56.64139938354492", + "longitude_deg": "3.3255600929260254", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXT" + }, + { + "id": "29306", + "ident": "ENXU", + "type": "heliport", + "name": "Jotun B Platform", + "latitude_deg": "59.4506", + "longitude_deg": "2.36528", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXU" + }, + { + "id": "29307", + "ident": "ENXV", + "type": "heliport", + "name": "Varg Platform", + "latitude_deg": "58.077202", + "longitude_deg": "1.88889", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXV" + }, + { + "id": "29308", + "ident": "ENXX", + "type": "closed", + "name": "ENOR FIR", + "latitude_deg": "57.6236", + "longitude_deg": "2.84722", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXX" + }, + { + "id": "29309", + "ident": "ENXZ", + "type": "heliport", + "name": "Sleipner B Platform", + "latitude_deg": "58.416698", + "longitude_deg": "1.71667", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-XX", + "scheduled_service": "no", + "gps_code": "ENXZ" + }, + { + "id": "336112", + "ident": "ENY", + "type": "medium_airport", + "name": "Yan'an Nanniwan Airport", + "latitude_deg": "36.479413", + "longitude_deg": "109.464083", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-61", + "municipality": "Yan'an (Baota)", + "scheduled_service": "yes", + "gps_code": "ZLYA", + "iata_code": "ENY", + "local_code": "ENY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yan%27an_Nanniwan_Airport" + }, + { + "id": "2602", + "ident": "ENZV", + "type": "large_airport", + "name": "Stavanger Airport, Sola", + "latitude_deg": "58.876701", + "longitude_deg": "5.63778", + "elevation_ft": "29", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-11", + "municipality": "Stavanger", + "scheduled_service": "yes", + "gps_code": "ENZV", + "iata_code": "SVG", + "home_link": "http://www.avinor.no/en/airport/stavanger/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stavanger_Airport,_Sola", + "keywords": "Sola Air Station, Stavanger lufthavn, Sola" + }, + { + "id": "17179", + "ident": "EOD", + "type": "heliport", + "name": "Sabre Army Airfield (Fort Campbell)", + "latitude_deg": "36.568199", + "longitude_deg": "-87.480797", + "elevation_ft": "593", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Fort Campbell(Clarksville)", + "scheduled_service": "no", + "gps_code": "KEOD", + "local_code": "EOD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sabre_Army_Heliport" + }, + { + "id": "31010", + "ident": "EPAR", + "type": "small_airport", + "name": "Arłamów Airport", + "latitude_deg": "49.657501", + "longitude_deg": "22.514298", + "elevation_ft": "1455", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PK", + "municipality": "Bircza", + "scheduled_service": "no", + "gps_code": "EPAR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ar%C5%82am%C3%B3w_Airport", + "keywords": "Krajna, Wola Korzeniecka" + }, + { + "id": "29702", + "ident": "EPBA", + "type": "small_airport", + "name": "Bielsko Biala Airport", + "latitude_deg": "49.80500030517578", + "longitude_deg": "19.00189971923828", + "elevation_ft": "1319", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-SL", + "scheduled_service": "no", + "gps_code": "EPBA" + }, + { + "id": "323850", + "ident": "EPBB", + "type": "small_airport", + "name": "Babięta", + "latitude_deg": "53.6696348", + "longitude_deg": "21.2527366", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Babięta", + "scheduled_service": "no", + "gps_code": "EPBB" + }, + { + "id": "2603", + "ident": "EPBC", + "type": "small_airport", + "name": "Babice Airport", + "latitude_deg": "52.26850128173828", + "longitude_deg": "20.910999298095703", + "elevation_ft": "352", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "scheduled_service": "no", + "gps_code": "EPBC" + }, + { + "id": "31011", + "ident": "EPBD", + "type": "small_airport", + "name": "Bydgoszcz Aeroklub Airfield", + "latitude_deg": "53.1031", + "longitude_deg": "17.955601", + "elevation_ft": "230", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-KP", + "municipality": "Bydgoszcz", + "scheduled_service": "no", + "home_link": "http://www.plb.pl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bydgoszcz_Ignacy_Jan_Paderewski_Airport" + }, + { + "id": "29700", + "ident": "EPBK", + "type": "small_airport", + "name": "Białystok-Krywlany Airport", + "latitude_deg": "53.101398", + "longitude_deg": "23.170601", + "elevation_ft": "502", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PD", + "municipality": "Białystok", + "scheduled_service": "no", + "gps_code": "EPBK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bia%C5%82ystok-Krywlany_Airport", + "keywords": "QYY" + }, + { + "id": "31012", + "ident": "EPBP", + "type": "closed", + "name": "Biała Podlaska Air Base", + "latitude_deg": "52.00078", + "longitude_deg": "23.132528", + "elevation_ft": "485", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LU", + "municipality": "Biała Podlaska", + "scheduled_service": "no", + "gps_code": "EPBP", + "iata_code": "BXP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bia%C5%82a_Podlaska_Airport", + "keywords": "Biała Podlaska Air Base" + }, + { + "id": "31013", + "ident": "EPBS", + "type": "small_airport", + "name": "Lotnisko Borne Sulinowo", + "latitude_deg": "53.576149", + "longitude_deg": "16.527729", + "elevation_ft": "469", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Borne Sulinowo", + "scheduled_service": "no" + }, + { + "id": "2604", + "ident": "EPBY", + "type": "medium_airport", + "name": "Bydgoszcz Ignacy Jan Paderewski Airport", + "latitude_deg": "53.096802", + "longitude_deg": "17.977699", + "elevation_ft": "235", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-KP", + "municipality": "Bydgoszcz", + "scheduled_service": "yes", + "gps_code": "EPBY", + "iata_code": "BZG", + "home_link": "http://www.plb.pl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bydgoszcz_Ignacy_Jan_Paderewski_Airport", + "keywords": "Szwederowo, Bromberg" + }, + { + "id": "319897", + "ident": "EPCD", + "type": "small_airport", + "name": "Depułtycze Królewskie Airport", + "latitude_deg": "51.082067", + "longitude_deg": "23.437014", + "elevation_ft": "712", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LU", + "scheduled_service": "no", + "gps_code": "EPCD", + "home_link": "http://cl.pwszchelm.pl/", + "wikipedia_link": "https://pl.wikipedia.org/wiki/Lotnisko_Che%C5%82m-Depu%C5%82tycze_Kr%C3%B3lewskie", + "keywords": "Chełm Depłutycze" + }, + { + "id": "2605", + "ident": "EPCE", + "type": "medium_airport", + "name": "Cewice Air Base", + "latitude_deg": "54.416", + "longitude_deg": "17.7633", + "elevation_ft": "495", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "municipality": "Lębork", + "scheduled_service": "no", + "gps_code": "EPCE" + }, + { + "id": "2606", + "ident": "EPCH", + "type": "small_airport", + "name": "Częstochowa-Rudniki", + "latitude_deg": "50.884998", + "longitude_deg": "19.2047", + "elevation_ft": "860", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-SL", + "municipality": "Częstochowa", + "scheduled_service": "no", + "gps_code": "EPRU", + "iata_code": "CZW" + }, + { + "id": "29818", + "ident": "EPDA", + "type": "small_airport", + "name": "Darłówek Naval Air Base", + "latitude_deg": "54.404701232910156", + "longitude_deg": "16.353099822998047", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Darłowo", + "scheduled_service": "no", + "gps_code": "EPDA", + "keywords": "Żukowo" + }, + { + "id": "2607", + "ident": "EPDE", + "type": "medium_airport", + "name": "Deblin Military Air Base", + "latitude_deg": "51.551399231", + "longitude_deg": "21.8936004639", + "elevation_ft": "392", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LU", + "municipality": "Dęblin", + "scheduled_service": "no", + "gps_code": "EPDE", + "keywords": "Wyższa Szkoła Oficerska Sił Powietrznych" + }, + { + "id": "337256", + "ident": "EPDK", + "type": "small_airport", + "name": "Debowa Klada Airfield", + "latitude_deg": "51.6126", + "longitude_deg": "23.0072", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LU", + "scheduled_service": "no", + "gps_code": "EPDK" + }, + { + "id": "31014", + "ident": "EPDR", + "type": "closed", + "name": "Drawsko Pomorskie Air Base", + "latitude_deg": "53.477798", + "longitude_deg": "15.7308", + "elevation_ft": "377", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Drawsko Pomorskie", + "scheduled_service": "no", + "gps_code": "EPDR" + }, + { + "id": "430565", + "ident": "EPDS", + "type": "small_airport", + "name": "Witkow Airfield", + "latitude_deg": "50.79686", + "longitude_deg": "16.11448", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "scheduled_service": "no", + "gps_code": "EPDS" + }, + { + "id": "29843", + "ident": "EPEL", + "type": "small_airport", + "name": "Elblag Airport", + "latitude_deg": "54.1408", + "longitude_deg": "19.4233", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Elbląg", + "scheduled_service": "no", + "gps_code": "EPEL" + }, + { + "id": "2608", + "ident": "EPGD", + "type": "large_airport", + "name": "Gdańsk Lech Wałęsa Airport", + "latitude_deg": "54.377601623535156", + "longitude_deg": "18.46619987487793", + "elevation_ft": "489", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "municipality": "Gdańsk", + "scheduled_service": "yes", + "gps_code": "EPGD", + "iata_code": "GDN", + "home_link": "http://www.airport.gdansk.pl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gda%C5%84sk_Lech_Wa%C5%82%C4%99sa_Airport", + "keywords": "Gdańsk-Rębiechowo" + }, + { + "id": "323950", + "ident": "EPGE", + "type": "small_airport", + "name": "Giże", + "latitude_deg": "53.982531", + "longitude_deg": "22.401796", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Giże", + "scheduled_service": "no", + "gps_code": "EPGE", + "home_link": "http://www.czteryzywioly.com/" + }, + { + "id": "29921", + "ident": "EPGI", + "type": "small_airport", + "name": "Grudziadz Lisie Airport", + "latitude_deg": "53.52439880371094", + "longitude_deg": "18.849199295043945", + "elevation_ft": "121", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-KP", + "scheduled_service": "no", + "gps_code": "EPGI" + }, + { + "id": "29897", + "ident": "EPGL", + "type": "small_airport", + "name": "Lotnisko Gliwice-Trynek", + "latitude_deg": "50.269402", + "longitude_deg": "18.6728", + "elevation_ft": "830", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-SL", + "municipality": "Gliwice", + "scheduled_service": "no", + "gps_code": "EPGL" + }, + { + "id": "323652", + "ident": "EPGM", + "type": "small_airport", + "name": "Giżycko-Mazury Residence", + "latitude_deg": "54.00645", + "longitude_deg": "21.81824", + "elevation_ft": "410", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Giżycko", + "scheduled_service": "no", + "gps_code": "EPGM", + "home_link": "http://www.mazuryresidence.pl" + }, + { + "id": "43162", + "ident": "EPGO", + "type": "closed", + "name": "Góraszka Airport", + "latitude_deg": "52.184441", + "longitude_deg": "21.281111", + "elevation_ft": "361", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Sulejówek", + "scheduled_service": "no", + "gps_code": "EPGO" + }, + { + "id": "43171", + "ident": "EPGR", + "type": "small_airport", + "name": "Łańsk / Gryźliny Airport", + "latitude_deg": "53.608059", + "longitude_deg": "20.34444", + "elevation_ft": "538", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Olsztynek", + "scheduled_service": "no", + "gps_code": "EPGR" + }, + { + "id": "346900", + "ident": "EPGS", + "type": "small_airport", + "name": "Grójec-Słomczyn Airfield", + "latitude_deg": "51.87549", + "longitude_deg": "20.93774", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Grójec", + "scheduled_service": "no", + "gps_code": "EPGS" + }, + { + "id": "319182", + "ident": "EPGY", + "type": "small_airport", + "name": "Grady Airport", + "latitude_deg": "52.837058", + "longitude_deg": "21.77633", + "elevation_ft": "407", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "scheduled_service": "no", + "gps_code": "EPGY", + "home_link": "http://naszelotnisko.pl/" + }, + { + "id": "324485", + "ident": "EPHN", + "type": "small_airport", + "name": "Narew", + "latitude_deg": "52.9087765", + "longitude_deg": "23.541338", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PD", + "municipality": "Narew", + "scheduled_service": "no", + "gps_code": "EPHN" + }, + { + "id": "29976", + "ident": "EPIN", + "type": "small_airport", + "name": "Inowroclaw Airfield", + "latitude_deg": "52.8064", + "longitude_deg": "18.285801", + "elevation_ft": "279", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-KP", + "scheduled_service": "no", + "gps_code": "EPIN", + "home_link": "http://www.aeroklub-kujawski.pl" + }, + { + "id": "29975", + "ident": "EPIR", + "type": "medium_airport", + "name": "Inowroclaw Military Air Base", + "latitude_deg": "52.8293991089", + "longitude_deg": "18.3306007385", + "elevation_ft": "259", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-KP", + "scheduled_service": "no", + "gps_code": "EPIR" + }, + { + "id": "29984", + "ident": "EPIW", + "type": "closed", + "name": "Iwonicz Airfield", + "latitude_deg": "49.657799", + "longitude_deg": "21.817499", + "elevation_ft": "971", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PK", + "municipality": "Krosno", + "scheduled_service": "no", + "gps_code": "EPIW" + }, + { + "id": "43164", + "ident": "EPJA", + "type": "small_airport", + "name": "Jastarnia Airport", + "latitude_deg": "54.71028137207031", + "longitude_deg": "18.645280838012695", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "municipality": "Jastarnia", + "scheduled_service": "no", + "gps_code": "EPJA" + }, + { + "id": "29991", + "ident": "EPJG", + "type": "small_airport", + "name": "Jelenia Góra Glider Field", + "latitude_deg": "50.898899", + "longitude_deg": "15.7856", + "elevation_ft": "1119", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "municipality": "Jelenia Góra", + "scheduled_service": "no", + "gps_code": "EPJG" + }, + { + "id": "319898", + "ident": "EPJL", + "type": "small_airport", + "name": "Laszki Field", + "latitude_deg": "50.008497", + "longitude_deg": "22.918897", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PK", + "scheduled_service": "no", + "gps_code": "EPJL", + "home_link": "http://www.aeroklub.jaroslaw.pl/wp/", + "wikipedia_link": "https://pl.wikipedia.org/wiki/L%C4%85dowisko_Laszki", + "keywords": "Jarosław Laszki" + }, + { + "id": "43166", + "ident": "EPJS", + "type": "small_airport", + "name": "Jeżów Sudecki Airport", + "latitude_deg": "50.94402778", + "longitude_deg": "15.76652778", + "elevation_ft": "1834", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "municipality": "Jelenia Góra", + "scheduled_service": "no", + "gps_code": "EPJS" + }, + { + "id": "30026", + "ident": "EPKA", + "type": "small_airport", + "name": "Kielce Maslow Airport", + "latitude_deg": "50.896702", + "longitude_deg": "20.731701", + "elevation_ft": "1010", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-SK", + "municipality": "Kielce", + "scheduled_service": "no", + "gps_code": "EPKA", + "home_link": "http://www.aeroklub.kielce.pl/index.php/lotnisko", + "wikipedia_link": "http://www.aeroklub.kielce.pl/index.php/lotnisko" + }, + { + "id": "30019", + "ident": "EPKB", + "type": "small_airport", + "name": "Kazimierz Biskup Airport", + "latitude_deg": "52.31999969482422", + "longitude_deg": "18.170000076293945", + "elevation_ft": "361", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "scheduled_service": "no", + "gps_code": "EPKB" + }, + { + "id": "319905", + "ident": "EPKC", + "type": "closed", + "name": "Kraków Rakowice-Czyżyny Airport", + "latitude_deg": "50.084353", + "longitude_deg": "19.99031", + "elevation_ft": "732", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MA", + "scheduled_service": "no", + "gps_code": "EPKC", + "home_link": "http://www.muzeumlotnictwa.pl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Krak%C3%B3w-Rakowice-Czy%C5%BCyny_Airport", + "keywords": "Polish Aviation Museum" + }, + { + "id": "30024", + "ident": "EPKE", + "type": "small_airport", + "name": "Kȩtrzyn-Wilamowo Airport", + "latitude_deg": "54.04359817504883", + "longitude_deg": "21.432199478149414", + "elevation_ft": "417", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Kȩtrzyn", + "scheduled_service": "no", + "gps_code": "EPKE" + }, + { + "id": "312402", + "ident": "EPKI", + "type": "small_airport", + "name": "Kikity", + "latitude_deg": "53.983056", + "longitude_deg": "20.877222", + "elevation_ft": "564", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "scheduled_service": "no", + "gps_code": "EPKI", + "home_link": "http://www.kikity.com.pl", + "keywords": "Agrotourism" + }, + { + "id": "2609", + "ident": "EPKK", + "type": "large_airport", + "name": "Kraków John Paul II International Airport", + "latitude_deg": "50.077702", + "longitude_deg": "19.7848", + "elevation_ft": "791", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MA", + "municipality": "Kraków", + "scheduled_service": "yes", + "gps_code": "EPKK", + "iata_code": "KRK", + "home_link": "http://www.krakowairport.pl/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kraków_John_Paul_II_International_Airport", + "keywords": "Krakov" + }, + { + "id": "319902", + "ident": "EPKL", + "type": "small_airport", + "name": "Krasocin Field", + "latitude_deg": "50.898824", + "longitude_deg": "20.127511", + "elevation_ft": "820", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-SK", + "scheduled_service": "no", + "gps_code": "EPKL", + "wikipedia_link": "https://pl.wikipedia.org/wiki/L%C4%85dowisko_Krasocin", + "keywords": "Krasocin Lipie" + }, + { + "id": "2610", + "ident": "EPKM", + "type": "small_airport", + "name": "Muchowiec Airport", + "latitude_deg": "50.23809814453125", + "longitude_deg": "19.03420066833496", + "elevation_ft": "909", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-SL", + "scheduled_service": "no", + "gps_code": "EPKM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Katowice-Muchowiec_Airport" + }, + { + "id": "2611", + "ident": "EPKN", + "type": "small_airport", + "name": "Kamien Slaski Airport", + "latitude_deg": "50.529202", + "longitude_deg": "18.0849", + "elevation_ft": "683", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-OP", + "scheduled_service": "no", + "gps_code": "EPKN", + "home_link": "http://www.opole.airport.aero" + }, + { + "id": "30272", + "ident": "EPKP", + "type": "small_airport", + "name": "Pobiednik Wielki Airport", + "latitude_deg": "50.089698791503906", + "longitude_deg": "20.20170021057129", + "elevation_ft": "650", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MA", + "municipality": "Kraków", + "scheduled_service": "no", + "gps_code": "EPKP" + }, + { + "id": "30050", + "ident": "EPKR", + "type": "small_airport", + "name": "Krosno Airfield", + "latitude_deg": "49.681099", + "longitude_deg": "21.7372", + "elevation_ft": "922", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PK", + "municipality": "Krosno", + "scheduled_service": "no", + "gps_code": "EPKR" + }, + { + "id": "2612", + "ident": "EPKS", + "type": "medium_airport", + "name": "Krzesiny Military Air Base", + "latitude_deg": "52.3316993713", + "longitude_deg": "16.9664001465", + "elevation_ft": "265", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "scheduled_service": "no", + "gps_code": "EPKS" + }, + { + "id": "2613", + "ident": "EPKT", + "type": "medium_airport", + "name": "Katowice International Airport", + "latitude_deg": "50.4743", + "longitude_deg": "19.08", + "elevation_ft": "995", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-SL", + "municipality": "Katowice", + "scheduled_service": "yes", + "gps_code": "EPKT", + "iata_code": "KTW", + "home_link": "http://katowice.airport.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Katowice_International_Airport", + "keywords": "Pyrzowice, Dąbrowa Górnicza, Katowice, Silesia, GOP, Silesia Metropolis, Gliwice, Piekary Śląskie, Bytom, Zabrze, Sosnowiec" + }, + { + "id": "44738", + "ident": "EPKW", + "type": "small_airport", + "name": "Bielsko-Bialo Kaniow Airfield", + "latitude_deg": "49.939999", + "longitude_deg": "19.021999", + "elevation_ft": "1316", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-SL", + "municipality": "Czechowice-Dziedzice", + "scheduled_service": "no", + "gps_code": "EPKW", + "home_link": "http://www.parklotniczy.pl/", + "keywords": "Czechowice-Dziedzice Airfield, Lotnisko Bielsko-Biała Kaniów" + }, + { + "id": "309484", + "ident": "EPLB", + "type": "medium_airport", + "name": "Lublin Airport", + "latitude_deg": "51.240278", + "longitude_deg": "22.713611", + "elevation_ft": "633", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LU", + "municipality": "Lublin", + "scheduled_service": "yes", + "gps_code": "EPLB", + "iata_code": "LUZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lublin_Airport" + }, + { + "id": "2614", + "ident": "EPLE", + "type": "closed", + "name": "Legnica Airport", + "latitude_deg": "51.1828", + "longitude_deg": "16.1782", + "elevation_ft": "407", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "scheduled_service": "no", + "gps_code": "EPLE" + }, + { + "id": "2615", + "ident": "EPLK", + "type": "medium_airport", + "name": "Lask Military Air Base", + "latitude_deg": "51.551700592", + "longitude_deg": "19.179100036599998", + "elevation_ft": "633", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "scheduled_service": "no", + "gps_code": "EPLK" + }, + { + "id": "2616", + "ident": "EPLL", + "type": "medium_airport", + "name": "Łódź Władysław Reymont Airport", + "latitude_deg": "51.721900939899996", + "longitude_deg": "19.3980998993", + "elevation_ft": "604", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "municipality": "Łódź", + "scheduled_service": "yes", + "gps_code": "EPLL", + "iata_code": "LCJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C5%81%C3%B3d%C5%BA_W%C5%82adys%C5%82aw_Reymont_Airport", + "keywords": "Lublinek" + }, + { + "id": "30088", + "ident": "EPLR", + "type": "small_airport", + "name": "Lublin Radwiec Airfield", + "latitude_deg": "51.221901", + "longitude_deg": "22.394699", + "elevation_ft": "791", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LU", + "scheduled_service": "no", + "gps_code": "EPLR" + }, + { + "id": "30072", + "ident": "EPLS", + "type": "medium_airport", + "name": "Leszno-Strzyzewice Airport", + "latitude_deg": "51.834999", + "longitude_deg": "16.5219", + "elevation_ft": "310", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Leszno", + "scheduled_service": "no", + "gps_code": "EPLS", + "home_link": "https://lotniskoleszno.pl/" + }, + { + "id": "2617", + "ident": "EPLU", + "type": "small_airport", + "name": "Lubin Airport", + "latitude_deg": "51.4230003357", + "longitude_deg": "16.1961994171", + "elevation_ft": "512", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "scheduled_service": "no", + "gps_code": "EPLU", + "home_link": "http://www.eplu.eu/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lubin-Obora_Airport" + }, + { + "id": "324058", + "ident": "EPLX", + "type": "heliport", + "name": "Lierneux / Centre Hospitalier Spécial l'Accueil Heliport", + "latitude_deg": "50.286812", + "longitude_deg": "5.788844", + "elevation_ft": "1411", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-WLG", + "municipality": "Lierneux", + "scheduled_service": "no", + "gps_code": "EBLX" + }, + { + "id": "31015", + "ident": "EPLY", + "type": "medium_airport", + "name": "Leczyca Military Air Base", + "latitude_deg": "52.004699707", + "longitude_deg": "19.1455993652", + "elevation_ft": "377", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "municipality": "Leczyca", + "scheduled_service": "no", + "gps_code": "EPLY" + }, + { + "id": "2618", + "ident": "EPMB", + "type": "medium_airport", + "name": "Malbork Military Air Base", + "latitude_deg": "54.0269012451", + "longitude_deg": "19.134199142499998", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "scheduled_service": "no", + "gps_code": "EPMB" + }, + { + "id": "2619", + "ident": "EPMI", + "type": "medium_airport", + "name": "Miroslawiec Military Air Base", + "latitude_deg": "53.395099639899996", + "longitude_deg": "16.0827999115", + "elevation_ft": "459", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Mirosławiec", + "scheduled_service": "no", + "gps_code": "EPMI", + "home_link": "http://www.12blot.pl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/12th_Air_Base", + "keywords": "12. Baza Lotnicza, Miroslawiec Airport" + }, + { + "id": "43173", + "ident": "EPMJ", + "type": "closed", + "name": "Mikołajki Airport", + "latitude_deg": "53.807781", + "longitude_deg": "21.55583", + "elevation_ft": "423", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Mikołajki", + "scheduled_service": "no", + "gps_code": "EPMJ" + }, + { + "id": "2620", + "ident": "EPML", + "type": "small_airport", + "name": "Mielec Airport", + "latitude_deg": "50.3223", + "longitude_deg": "21.462099", + "elevation_ft": "548", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PK", + "scheduled_service": "no", + "gps_code": "EPML", + "home_link": "https://www.lotniskomielec.pl/" + }, + { + "id": "2621", + "ident": "EPMM", + "type": "medium_airport", + "name": "Minsk Mazowiecki Military Air Base", + "latitude_deg": "52.1954994202", + "longitude_deg": "21.6558990479", + "elevation_ft": "604", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "scheduled_service": "no", + "gps_code": "EPMM" + }, + { + "id": "2622", + "ident": "EPMO", + "type": "medium_airport", + "name": "Modlin Airport", + "latitude_deg": "52.451099", + "longitude_deg": "20.6518", + "elevation_ft": "341", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Warsaw", + "scheduled_service": "yes", + "gps_code": "EPMO", + "iata_code": "WMI", + "home_link": "http://modlinairport.pl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Warsaw_Modlin_Airport", + "keywords": "Nowy Dwor Mazowiecki" + }, + { + "id": "30142", + "ident": "EPMR", + "type": "small_airport", + "name": "Mirosławice Private Airport", + "latitude_deg": "50.957801818847656", + "longitude_deg": "16.770299911499023", + "elevation_ft": "495", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "municipality": "Sobótka", + "scheduled_service": "no", + "gps_code": "EPMR" + }, + { + "id": "323830", + "ident": "EPMX", + "type": "small_airport", + "name": "Milewo", + "latitude_deg": "52.668142", + "longitude_deg": "20.428175", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Milewo", + "scheduled_service": "no", + "gps_code": "EPMX", + "home_link": "http://milewo.pl" + }, + { + "id": "323653", + "ident": "EPMY", + "type": "small_airport", + "name": "Myślibórz-Giżyn Airfield", + "latitude_deg": "52.9414134", + "longitude_deg": "15.030036", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Myślibórz", + "scheduled_service": "no", + "gps_code": "EPMY" + }, + { + "id": "329461", + "ident": "EPNA", + "type": "small_airport", + "name": "Nadarzyce Air Base", + "latitude_deg": "53.454885", + "longitude_deg": "16.48946", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "scheduled_service": "no", + "gps_code": "EPNA" + }, + { + "id": "30199", + "ident": "EPNL", + "type": "small_airport", + "name": "Nowy Sącz-Łososina Dolna Airport", + "latitude_deg": "49.7456016541", + "longitude_deg": "20.623600006100002", + "elevation_ft": "830", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MA", + "municipality": "Nowy Sącz", + "scheduled_service": "no", + "gps_code": "EPNL", + "home_link": "http://aph.org.pl", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nowy_S%C4%85cz-%C5%81ososina_Dolna_Airport" + }, + { + "id": "44736", + "ident": "EPNM", + "type": "small_airport", + "name": "Nowe Miasto nad Pilica Airfield", + "latitude_deg": "51.625", + "longitude_deg": "20.53499984741211", + "elevation_ft": "512", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Nowe Miasto nad Pilicą", + "scheduled_service": "no", + "gps_code": "EPNM", + "keywords": "Lotnisko Nowe Miasto nad Pilicą" + }, + { + "id": "30200", + "ident": "EPNT", + "type": "small_airport", + "name": "Nowy Targ Airport", + "latitude_deg": "49.462797", + "longitude_deg": "20.050304", + "elevation_ft": "2060", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MA", + "municipality": "Nowy Targ", + "scheduled_service": "no", + "gps_code": "EPNT", + "home_link": "http://www.aeroklub.nowytarg.pl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nowy_Targ_Airport", + "keywords": "QWS" + }, + { + "id": "30213", + "ident": "EPOD", + "type": "small_airport", + "name": "Lotnisko Olsztyn-Dajtki", + "latitude_deg": "53.77295", + "longitude_deg": "20.414486", + "elevation_ft": "440", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Olsztyn", + "scheduled_service": "no", + "gps_code": "EPOD", + "home_link": "http://www.aeroklub.olsztyn.pl/" + }, + { + "id": "2623", + "ident": "EPOK", + "type": "medium_airport", + "name": "Oksywie Military Air Base", + "latitude_deg": "54.5797", + "longitude_deg": "18.5172", + "elevation_ft": "144", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "municipality": "Gdynia", + "scheduled_service": "no", + "gps_code": "EPOK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gdynia-Kosakowo_Airport", + "keywords": "Oksywie Airport, Gdynia-Oksywie, Gdynia-Babie Doły, Gdynia-Kosakowo Airport" + }, + { + "id": "30224", + "ident": "EPOM", + "type": "small_airport", + "name": "Ostrów Wielkopolski Michałków Airport", + "latitude_deg": "51.700767", + "longitude_deg": "17.84663", + "elevation_ft": "476", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Ostrów Wielkopolski", + "scheduled_service": "no", + "gps_code": "EPOM", + "home_link": "http://michalkow.pl/pl/" + }, + { + "id": "30216", + "ident": "EPOP", + "type": "small_airport", + "name": "Opole-Polska Nowa Wieś Airport", + "latitude_deg": "50.633301", + "longitude_deg": "17.7817", + "elevation_ft": "620", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-OP", + "municipality": "Opole", + "scheduled_service": "no", + "gps_code": "EPOP" + }, + { + "id": "30263", + "ident": "EPPC", + "type": "small_airport", + "name": "Pińczów Airfield", + "latitude_deg": "50.518299", + "longitude_deg": "20.514999", + "elevation_ft": "610", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-SK", + "municipality": "Pińczów", + "scheduled_service": "no", + "gps_code": "EPPC" + }, + { + "id": "2624", + "ident": "EPPI", + "type": "small_airport", + "name": "Pila Airport", + "latitude_deg": "53.16999816894531", + "longitude_deg": "16.712499618530273", + "elevation_ft": "259", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "scheduled_service": "no", + "gps_code": "EPPI" + }, + { + "id": "30284", + "ident": "EPPK", + "type": "small_airport", + "name": "Poznań-Kobylnica Airport", + "latitude_deg": "52.43389892", + "longitude_deg": "17.044201", + "elevation_ft": "279", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Poznań", + "scheduled_service": "no", + "gps_code": "EPPK" + }, + { + "id": "30271", + "ident": "EPPL", + "type": "small_airport", + "name": "Plock Airport", + "latitude_deg": "52.562198638916016", + "longitude_deg": "19.721399307250977", + "elevation_ft": "331", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "scheduled_service": "no", + "gps_code": "EPPL" + }, + { + "id": "2625", + "ident": "EPPO", + "type": "medium_airport", + "name": "Poznań-Ławica Airport", + "latitude_deg": "52.421001", + "longitude_deg": "16.8263", + "elevation_ft": "308", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Poznań", + "scheduled_service": "yes", + "gps_code": "EPPO", + "iata_code": "POZ", + "home_link": "http://www.airport-poznan.com.pl/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pozna%C5%84-%C5%81awica_Airport" + }, + { + "id": "2626", + "ident": "EPPR", + "type": "small_airport", + "name": "Pruszcz Gdanski Air Base", + "latitude_deg": "54.248001", + "longitude_deg": "18.6716", + "elevation_ft": "21", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "scheduled_service": "no", + "gps_code": "EPPR" + }, + { + "id": "28149", + "ident": "EPPT", + "type": "small_airport", + "name": "Piotrków Trybunalski-Bujny Airport", + "latitude_deg": "51.3830986", + "longitude_deg": "19.688299", + "elevation_ft": "673", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "municipality": "Piotrków Trybunalski", + "scheduled_service": "no", + "gps_code": "EPPT" + }, + { + "id": "2627", + "ident": "EPPW", + "type": "medium_airport", + "name": "Powidz Military Air Base", + "latitude_deg": "52.379398", + "longitude_deg": "17.853901", + "elevation_ft": "371", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "scheduled_service": "no", + "gps_code": "EPPW" + }, + { + "id": "2628", + "ident": "EPRA", + "type": "medium_airport", + "name": "Radom Airport", + "latitude_deg": "51.389198", + "longitude_deg": "21.213301", + "elevation_ft": "610", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Radom", + "scheduled_service": "yes", + "gps_code": "EPRA", + "iata_code": "RDO", + "home_link": "http://lotnisko-radom.eu/pl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Radom_Airport", + "keywords": "Radom Military Air Base, Radom-Sadków Airport" + }, + { + "id": "30359", + "ident": "EPRG", + "type": "small_airport", + "name": "Rybnik-Gotarowice Glider Field", + "latitude_deg": "50.070801", + "longitude_deg": "18.6283", + "elevation_ft": "840", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-SL", + "municipality": "Rybnik", + "scheduled_service": "no", + "gps_code": "EPRG" + }, + { + "id": "30360", + "ident": "EPRJ", + "type": "small_airport", + "name": "Rzeszów Sports Airfield", + "latitude_deg": "50.105301", + "longitude_deg": "22.0481", + "elevation_ft": "655", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PK", + "municipality": "Rzeszów", + "scheduled_service": "no", + "gps_code": "EPRJ", + "home_link": "https://okl.prz.edu.pl/lotnisko", + "wikipedia_link": "https://pl.wikipedia.org/wiki/Lotnisko_Rzeszów", + "keywords": "OKL Rzeszow, Aeroklub Rzeszowski, Politechnika Rzeszowska," + }, + { + "id": "30314", + "ident": "EPRP", + "type": "small_airport", + "name": "Radom-Piastrów Glider Field", + "latitude_deg": "51.478901", + "longitude_deg": "21.110001", + "elevation_ft": "479", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Radom", + "scheduled_service": "no", + "gps_code": "EPRP" + }, + { + "id": "328252", + "ident": "EPRS", + "type": "small_airport", + "name": "Sochaczew-Rybno", + "latitude_deg": "52.242789", + "longitude_deg": "20.126579", + "elevation_ft": "280", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Rybno", + "scheduled_service": "no", + "gps_code": "EPRS" + }, + { + "id": "2629", + "ident": "EPRZ", + "type": "medium_airport", + "name": "Rzeszów-Jasionka Airport", + "latitude_deg": "50.110001", + "longitude_deg": "22.018999", + "elevation_ft": "693", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PK", + "municipality": "Rzeszów", + "scheduled_service": "yes", + "gps_code": "EPRZ", + "iata_code": "RZE", + "home_link": "https://www.rzeszowairport.pl", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rzesz%C3%B3w-Jasionka_Airport" + }, + { + "id": "2630", + "ident": "EPSC", + "type": "medium_airport", + "name": "Szczecin-Goleniów \"Solidarność\" Airport", + "latitude_deg": "53.584702", + "longitude_deg": "14.9022", + "elevation_ft": "154", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Goleniow", + "scheduled_service": "yes", + "gps_code": "EPSC", + "iata_code": "SZZ", + "home_link": "http://www.airport.com.pl/en/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Szczecin-Goleni%C3%B3w_%22Solidarno%C5%9B%C4%87%22_Airport" + }, + { + "id": "2631", + "ident": "EPSD", + "type": "small_airport", + "name": "Szczecin-Dąbie Airport", + "latitude_deg": "53.3921012878418", + "longitude_deg": "14.63379955291748", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Szczecin", + "scheduled_service": "no", + "gps_code": "EPSD" + }, + { + "id": "319906", + "ident": "EPSJ", + "type": "small_airport", + "name": "Sobienie Field", + "latitude_deg": "51.951142", + "longitude_deg": "21.35253", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "scheduled_service": "no", + "gps_code": "EPSJ" + }, + { + "id": "2632", + "ident": "EPSK", + "type": "closed", + "name": "Redzikowo Air Base", + "latitude_deg": "54.47890090942383", + "longitude_deg": "17.107500076293945", + "elevation_ft": "217", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "scheduled_service": "no", + "gps_code": "EPSK", + "iata_code": "OSP" + }, + { + "id": "2633", + "ident": "EPSN", + "type": "medium_airport", + "name": "Swidwin Military Air Base", + "latitude_deg": "53.790599823", + "longitude_deg": "15.826299667399999", + "elevation_ft": "385", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "scheduled_service": "no", + "gps_code": "EPSN" + }, + { + "id": "2634", + "ident": "EPSO", + "type": "small_airport", + "name": "Sochaczew Air Base", + "latitude_deg": "52.198601", + "longitude_deg": "20.292801", + "elevation_ft": "259", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "scheduled_service": "no" + }, + { + "id": "30423", + "ident": "EPSR", + "type": "small_airport", + "name": "Słupsk-Krȩpa Airfield", + "latitude_deg": "54.408298", + "longitude_deg": "17.0956", + "elevation_ft": "249", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "municipality": "Słupsk", + "scheduled_service": "no", + "gps_code": "EPSR" + }, + { + "id": "332193", + "ident": "EPSS", + "type": "small_airport", + "name": "Świdnica - Krzczonów Airstrip", + "latitude_deg": "50.8171823", + "longitude_deg": "16.5818641", + "elevation_ft": "833", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "scheduled_service": "no", + "gps_code": "EPSS" + }, + { + "id": "30434", + "ident": "EPST", + "type": "small_airport", + "name": "Stalowa Wola-Turbia Airport", + "latitude_deg": "50.626598", + "longitude_deg": "21.997848", + "elevation_ft": "489", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PK", + "municipality": "Stalowa Wola", + "scheduled_service": "no", + "gps_code": "EPST" + }, + { + "id": "30449", + "ident": "EPSU", + "type": "small_airport", + "name": "Suwałki Airfield", + "latitude_deg": "54.0728", + "longitude_deg": "22.8992", + "elevation_ft": "581", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PD", + "municipality": "Suwałki", + "scheduled_service": "no", + "gps_code": "EPSU" + }, + { + "id": "30451", + "ident": "EPSW", + "type": "small_airport", + "name": "Świdnik Airfield", + "latitude_deg": "51.231899", + "longitude_deg": "22.6903", + "elevation_ft": "659", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LU", + "municipality": "Lublin", + "scheduled_service": "no", + "gps_code": "EPSL" + }, + { + "id": "2635", + "ident": "EPSY", + "type": "medium_airport", + "name": "Olsztyn-Mazury Airport", + "latitude_deg": "53.481899", + "longitude_deg": "20.9377", + "elevation_ft": "463", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Olsztyn", + "scheduled_service": "yes", + "gps_code": "EPSY", + "iata_code": "SZY", + "home_link": "http://mazuryairport.pl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Olsztyn-Mazury_Airport" + }, + { + "id": "31016", + "ident": "EPTM", + "type": "medium_airport", + "name": "Tomaszow Mazowiecki Military Air Base", + "latitude_deg": "51.584400177", + "longitude_deg": "20.0977993011", + "elevation_ft": "571", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "municipality": "Tomaszów Mazowiecki", + "scheduled_service": "no", + "gps_code": "EPTM" + }, + { + "id": "2636", + "ident": "EPTO", + "type": "small_airport", + "name": "Torun Airport (Aeroklub Pomorski)", + "latitude_deg": "53.029202", + "longitude_deg": "18.5459", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-KP", + "municipality": "Toruń", + "scheduled_service": "no", + "gps_code": "EPTO", + "home_link": "http://www.aeroklubpomorski.pl/" + }, + { + "id": "2637", + "ident": "EPWA", + "type": "large_airport", + "name": "Warsaw Chopin Airport", + "latitude_deg": "52.1656990051", + "longitude_deg": "20.967100143399996", + "elevation_ft": "362", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Warsaw", + "scheduled_service": "yes", + "gps_code": "EPWA", + "iata_code": "WAW", + "home_link": "http://www.lotnisko-chopina.pl/?lang=en", + "wikipedia_link": "https://en.wikipedia.org/wiki/Warsaw_Frederic_Chopin_Airport", + "keywords": "Okęcie" + }, + { + "id": "30564", + "ident": "EPWK", + "type": "small_airport", + "name": "Włocławek-Kruszyn Airfield", + "latitude_deg": "52.584702", + "longitude_deg": "19.0156", + "elevation_ft": "220", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-KP", + "municipality": "Włocławek", + "scheduled_service": "no", + "gps_code": "EPWK" + }, + { + "id": "2638", + "ident": "EPWR", + "type": "medium_airport", + "name": "Copernicus Wrocław Airport", + "latitude_deg": "51.102699", + "longitude_deg": "16.885799", + "elevation_ft": "404", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "municipality": "Wrocław", + "scheduled_service": "yes", + "gps_code": "EPWR", + "iata_code": "WRO", + "home_link": "http://www.airport.wroclaw.pl/en/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Copernicus_Airport_Wroc%C5%82aw", + "keywords": "Strachowice, Breslau" + }, + { + "id": "30570", + "ident": "EPWS", + "type": "small_airport", + "name": "Wrocław-Szymanów Airport", + "latitude_deg": "51.20610046386719", + "longitude_deg": "16.998600006103516", + "elevation_ft": "390", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "municipality": "Wrocław", + "scheduled_service": "no", + "gps_code": "EPWS", + "keywords": "Szewce Airport" + }, + { + "id": "30577", + "ident": "EPZA", + "type": "small_airport", + "name": "Zamość-Mokre Airfield", + "latitude_deg": "50.701698", + "longitude_deg": "23.204399", + "elevation_ft": "751", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LU", + "municipality": "Zamość", + "scheduled_service": "no", + "gps_code": "EPZA" + }, + { + "id": "320302", + "ident": "EPZB", + "type": "small_airport", + "name": "Zborowo Airport", + "latitude_deg": "52.362056", + "longitude_deg": "16.638722", + "elevation_ft": "268", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Zborowo", + "scheduled_service": "no", + "gps_code": "EPZB", + "home_link": "http://www.zborowo.pl" + }, + { + "id": "2639", + "ident": "EPZG", + "type": "medium_airport", + "name": "Zielona Góra-Babimost Airport", + "latitude_deg": "52.138500213600004", + "longitude_deg": "15.7986001968", + "elevation_ft": "194", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LB", + "municipality": "Babimost", + "scheduled_service": "yes", + "gps_code": "EPZG", + "iata_code": "IEG", + "home_link": "http://www.lotnisko.zielonagora.pl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zielona_G%C3%B3ra_Airport" + }, + { + "id": "323063", + "ident": "EPZK", + "type": "small_airport", + "name": "Konopnica", + "latitude_deg": "51.3601786", + "longitude_deg": "18.8220574", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "municipality": "Konopnica", + "scheduled_service": "no", + "gps_code": "EPZK" + }, + { + "id": "31017", + "ident": "EPZN", + "type": "closed", + "name": "Zagan Air Base", + "latitude_deg": "51.627499", + "longitude_deg": "15.4083", + "elevation_ft": "459", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LB", + "municipality": "Zagan", + "scheduled_service": "no", + "gps_code": "EPZN" + }, + { + "id": "30582", + "ident": "EPZP", + "type": "small_airport", + "name": "Zielona Góra-Przylep Airfield", + "latitude_deg": "51.978901", + "longitude_deg": "15.4639", + "elevation_ft": "249", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LB", + "municipality": "Zielona Góra", + "scheduled_service": "no", + "gps_code": "EPZP" + }, + { + "id": "30578", + "ident": "EPZR", + "type": "small_airport", + "name": "Żar Airfield", + "latitude_deg": "49.771099", + "longitude_deg": "19.2181", + "elevation_ft": "1260", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-SL", + "municipality": "Międzybrodzie Żywieckie", + "scheduled_service": "no", + "gps_code": "EPZR", + "keywords": "Góra Żar" + }, + { + "id": "44869", + "ident": "ER-0001", + "type": "small_airport", + "name": "Dahlak South Airfield", + "latitude_deg": "15.68151", + "longitude_deg": "40.104431", + "continent": "AF", + "iso_country": "ER", + "iso_region": "ER-SK", + "municipality": "Dahlak Kebir", + "scheduled_service": "no" + }, + { + "id": "340217", + "ident": "ER-0002", + "type": "small_airport", + "name": "Dahlak Central Airfield", + "latitude_deg": "15.72753", + "longitude_deg": "40.07532", + "continent": "AF", + "iso_country": "ER", + "iso_region": "ER-SK", + "municipality": "Dhu Bellu", + "scheduled_service": "no" + }, + { + "id": "340218", + "ident": "ER-0003", + "type": "small_airport", + "name": "Dahlak West Airfield", + "latitude_deg": "15.75794", + "longitude_deg": "39.97046", + "continent": "AF", + "iso_country": "ER", + "iso_region": "ER-SK", + "municipality": "Melill", + "scheduled_service": "no" + }, + { + "id": "348864", + "ident": "ER-0004", + "type": "small_airport", + "name": "Omhajer Airport", + "latitude_deg": "14.32168", + "longitude_deg": "36.63028", + "elevation_ft": "1946", + "continent": "AF", + "iso_country": "ER", + "iso_region": "ER-GB", + "municipality": "Omhajer", + "scheduled_service": "no" + }, + { + "id": "17180", + "ident": "ERO", + "type": "heliport", + "name": "Eldred Rock Cg Heliport", + "latitude_deg": "58.971099853515625", + "longitude_deg": "-135.23699951171875", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Eldred Rock", + "scheduled_service": "no", + "gps_code": "ERO", + "local_code": "ERO" + }, + { + "id": "302496", + "ident": "ERT", + "type": "small_airport", + "name": "Erdenet Airport", + "latitude_deg": "48.9830555556", + "longitude_deg": "104.150555556", + "elevation_ft": "4200", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-035", + "municipality": "Erdenet", + "scheduled_service": "no", + "iata_code": "ERT" + }, + { + "id": "45168", + "ident": "ES-0001", + "type": "small_airport", + "name": "Trebujena Airfield", + "latitude_deg": "36.858888888900005", + "longitude_deg": "-6.13916666667", + "elevation_ft": "12", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Trebujena", + "scheduled_service": "no", + "gps_code": "LETJ" + }, + { + "id": "298473", + "ident": "ES-0002", + "type": "small_airport", + "name": "Vinaròs Airfield", + "latitude_deg": "40.519722222", + "longitude_deg": "0.390277778", + "elevation_ft": "364", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CS", + "municipality": "Vinaròs", + "scheduled_service": "no", + "home_link": "http://www.aeroclubmaestrat.com", + "keywords": "aeroclub maestrat, aerodrom vinaros, aeroclub vinaros, camp de vol vinaros" + }, + { + "id": "299646", + "ident": "ES-0003", + "type": "heliport", + "name": "Banco de España Helipad", + "latitude_deg": "40.4179131733", + "longitude_deg": "-3.69491994381", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Madrid", + "scheduled_service": "no", + "keywords": "Helipuerto Civil Madrid - Banco de España" + }, + { + "id": "299647", + "ident": "ES-0004", + "type": "heliport", + "name": "Huerta Otea Helipad", + "latitude_deg": "40.9644624297", + "longitude_deg": "-5.68368673325", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-SA", + "municipality": "Salamanca", + "scheduled_service": "no" + }, + { + "id": "299648", + "ident": "ES-0005", + "type": "heliport", + "name": "Salamanca Fire Station Helipad", + "latitude_deg": "40.9793128692", + "longitude_deg": "-5.66011816263", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-SA", + "municipality": "Salamanca", + "scheduled_service": "no" + }, + { + "id": "309915", + "ident": "ES-0006", + "type": "small_airport", + "name": "Rosinos de la Requejada Airfield", + "latitude_deg": "42.0981", + "longitude_deg": "-6.5262", + "elevation_ft": "3330", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-ZA", + "municipality": "Santiago de la Requejada", + "scheduled_service": "no" + }, + { + "id": "309916", + "ident": "ES-0007", + "type": "small_airport", + "name": "Torremocha de Jiloca Airfield", + "latitude_deg": "40.6032", + "longitude_deg": "-1.265", + "elevation_ft": "3346", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-TE", + "municipality": "Torremocha de Jiloca", + "scheduled_service": "no" + }, + { + "id": "309917", + "ident": "ES-0008", + "type": "small_airport", + "name": "Aeródromo de Herrera de Pisuerga", + "latitude_deg": "42.5923", + "longitude_deg": "-4.2902", + "elevation_ft": "2958", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-P", + "municipality": "Herrera de Pisuerga", + "scheduled_service": "no", + "home_link": "http://www.aeroperfils.com/escuela.html" + }, + { + "id": "309918", + "ident": "ES-0009", + "type": "small_airport", + "name": "Aeródromo de Villoldo", + "latitude_deg": "42.2655", + "longitude_deg": "-4.6479", + "elevation_ft": "2700", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-P", + "municipality": "Villoldo", + "scheduled_service": "no" + }, + { + "id": "309923", + "ident": "ES-0010", + "type": "small_airport", + "name": "Aeródromo de Antela", + "latitude_deg": "42.1045", + "longitude_deg": "-7.7118", + "elevation_ft": "2024", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-OR", + "municipality": "Xinzo de Limia", + "scheduled_service": "no" + }, + { + "id": "309925", + "ident": "ES-0011", + "type": "small_airport", + "name": "Chaira Airport", + "latitude_deg": "42.23282", + "longitude_deg": "-7.6448", + "elevation_ft": "1946", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-OR", + "municipality": "Baños de Molgas", + "scheduled_service": "no" + }, + { + "id": "309929", + "ident": "ES-0012", + "type": "small_airport", + "name": "Castriz/Cambe Airfield", + "latitude_deg": "43.102502", + "longitude_deg": "-8.7617", + "elevation_ft": "1200", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-C", + "municipality": "Santa Comba", + "scheduled_service": "no", + "keywords": "Aeroclub Cambre" + }, + { + "id": "309930", + "ident": "ES-0013", + "type": "small_airport", + "name": "Godos Airfield", + "latitude_deg": "42.5787", + "longitude_deg": "-8.6968", + "elevation_ft": "45", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-PO", + "municipality": "Caldas de Reis", + "scheduled_service": "no" + }, + { + "id": "309932", + "ident": "ES-0014", + "type": "small_airport", + "name": "Monforte Airport", + "latitude_deg": "42.547", + "longitude_deg": "-7.5191", + "elevation_ft": "1078", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-OR", + "municipality": "Monforte de Lemos", + "scheduled_service": "no" + }, + { + "id": "314988", + "ident": "ES-0015", + "type": "small_airport", + "name": "Pozo Cañada Airfield", + "latitude_deg": "38.798137", + "longitude_deg": "-1.726842", + "elevation_ft": "2700", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AB", + "municipality": "Pozo Cañada", + "scheduled_service": "no" + }, + { + "id": "315436", + "ident": "ES-0016", + "type": "small_airport", + "name": "Club Aernautic Catalunya", + "latitude_deg": "41.750278", + "longitude_deg": "2.611389", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-B", + "scheduled_service": "no" + }, + { + "id": "315437", + "ident": "ES-0017", + "type": "small_airport", + "name": "Aeroclub Cáceres", + "latitude_deg": "39.329167", + "longitude_deg": "-6.343611", + "elevation_ft": "1350", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-EX", + "municipality": "La Cervera", + "scheduled_service": "no" + }, + { + "id": "315438", + "ident": "ES-0018", + "type": "small_airport", + "name": "AeroSidonia", + "latitude_deg": "36.44026", + "longitude_deg": "-5.94093", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "scheduled_service": "no" + }, + { + "id": "315467", + "ident": "ES-0019", + "type": "small_airport", + "name": "Campo de Aviación de Ablitas", + "latitude_deg": "42.0032781", + "longitude_deg": "-1.6203155", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-NA", + "scheduled_service": "no" + }, + { + "id": "315469", + "ident": "ES-0020", + "type": "small_airport", + "name": "Aeròdrom de Pals", + "latitude_deg": "42.0069903", + "longitude_deg": "3.1519175", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "scheduled_service": "no" + }, + { + "id": "315470", + "ident": "ES-0021", + "type": "small_airport", + "name": "Aeròdrom d'Avinyonet", + "latitude_deg": "41.367985", + "longitude_deg": "1.766867", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Avinyó Nou", + "scheduled_service": "no" + }, + { + "id": "315474", + "ident": "ES-0022", + "type": "small_airport", + "name": "ULM de Dolores", + "latitude_deg": "38.1573628", + "longitude_deg": "-0.7779122", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-A", + "scheduled_service": "no" + }, + { + "id": "315661", + "ident": "ES-0023", + "type": "heliport", + "name": "Basa Aérea de Valencia-Bétera", + "latitude_deg": "39.62447", + "longitude_deg": "-0.472576", + "elevation_ft": "414", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Bétera", + "scheduled_service": "no", + "gps_code": "LEBT" + }, + { + "id": "315715", + "ident": "ES-0024", + "type": "small_airport", + "name": "Ultralight Aeroclub Müller", + "latitude_deg": "37.26076", + "longitude_deg": "-1.85236", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Vera", + "scheduled_service": "no" + }, + { + "id": "315858", + "ident": "ES-0025", + "type": "small_airport", + "name": "Aerodromo de Figueira dos Cavaleiros", + "latitude_deg": "38.077502", + "longitude_deg": "-8.235832", + "elevation_ft": "262", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-02", + "municipality": "Ferreira do Alentejo", + "scheduled_service": "no", + "gps_code": "LPFC", + "home_link": "http://www.samag.pt/" + }, + { + "id": "315868", + "ident": "ES-0026", + "type": "small_airport", + "name": "Camp de Vol de Palafolls", + "latitude_deg": "41.687222", + "longitude_deg": "2.748056", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GE", + "scheduled_service": "no" + }, + { + "id": "315895", + "ident": "ES-0027", + "type": "small_airport", + "name": "Aerodromo El Judio", + "latitude_deg": "37.840394", + "longitude_deg": "-4.7096584", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "scheduled_service": "no" + }, + { + "id": "315969", + "ident": "ES-0028", + "type": "small_airport", + "name": "AeroCieza", + "latitude_deg": "38.32305", + "longitude_deg": "-1.456967", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-MU", + "scheduled_service": "no" + }, + { + "id": "315972", + "ident": "ES-0029", + "type": "small_airport", + "name": "Fuenterrobles", + "latitude_deg": "39.56601", + "longitude_deg": "-1.36225", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "scheduled_service": "no" + }, + { + "id": "315976", + "ident": "ES-0030", + "type": "small_airport", + "name": "Valle Amblés", + "latitude_deg": "40.604722", + "longitude_deg": "-4.790278", + "elevation_ft": "3543", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "El Fresno", + "scheduled_service": "no", + "keywords": "Baixo Miño,El Salobral" + }, + { + "id": "315981", + "ident": "ES-0031", + "type": "small_airport", + "name": "La Segarra Airfield", + "latitude_deg": "41.681294", + "longitude_deg": "1.414266", + "elevation_ft": "2200", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-L", + "municipality": "Sant Guim de Freixenet", + "scheduled_service": "no" + }, + { + "id": "315992", + "ident": "ES-0032", + "type": "closed", + "name": "Aerodromo de Monteplano", + "latitude_deg": "42.493953", + "longitude_deg": "-1.700802", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-NA", + "municipality": "Tafalla", + "scheduled_service": "no", + "keywords": "Monteplano" + }, + { + "id": "316061", + "ident": "ES-0033", + "type": "small_airport", + "name": "Aerohíspalis", + "latitude_deg": "37.3297", + "longitude_deg": "-5.722783", + "elevation_ft": "140", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-SE", + "municipality": "Mairena del Alcor", + "scheduled_service": "no", + "gps_code": "LEAH", + "home_link": "http://www.aerohispalis.com/donde-estamos/", + "keywords": "Los Alcores" + }, + { + "id": "316062", + "ident": "ES-0034", + "type": "small_airport", + "name": "AeroNiebla", + "latitude_deg": "37.349722", + "longitude_deg": "-6.683889", + "elevation_ft": "100", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-H", + "municipality": "Niebla", + "scheduled_service": "no", + "home_link": "http://www.aeroniebla.com" + }, + { + "id": "316063", + "ident": "ES-0035", + "type": "small_airport", + "name": "Aeroclub Mar Menor", + "latitude_deg": "37.845278", + "longitude_deg": "-0.881111", + "elevation_ft": "289", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-MU", + "municipality": "San Javier", + "scheduled_service": "no", + "gps_code": "LELG", + "keywords": "Los Garranchos" + }, + { + "id": "316065", + "ident": "ES-0036", + "type": "small_airport", + "name": "Aeroclub Totana", + "latitude_deg": "37.753083", + "longitude_deg": "-1.4487", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-MU", + "municipality": "Totana", + "scheduled_service": "no" + }, + { + "id": "316682", + "ident": "ES-0037", + "type": "small_airport", + "name": "Aeroclub Alto Palancia", + "latitude_deg": "39.79781", + "longitude_deg": "-0.418318", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Sot de Ferrer", + "scheduled_service": "no" + }, + { + "id": "316683", + "ident": "ES-0038", + "type": "closed", + "name": "Berbinzana", + "latitude_deg": "42.5225", + "longitude_deg": "-1.803889", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-NA", + "scheduled_service": "no" + }, + { + "id": "319456", + "ident": "ES-0039", + "type": "small_airport", + "name": "Aeródromo de Alcazarén", + "latitude_deg": "41.3727778", + "longitude_deg": "-4.6958333", + "elevation_ft": "2526", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Alcazarén", + "scheduled_service": "no", + "home_link": "http://www.alcazarenvuelo.com", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aer%C3%B3dromo_de_Alcazar%C3%A9n" + }, + { + "id": "320136", + "ident": "ES-0040", + "type": "small_airport", + "name": "Zalduendo ULM", + "latitude_deg": "42.873599", + "longitude_deg": "-2.337437", + "elevation_ft": "1936", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-PV", + "municipality": "Zalduondo", + "scheduled_service": "no" + }, + { + "id": "320137", + "ident": "ES-0041", + "type": "small_airport", + "name": "Casas de Juan Gil Airfield", + "latitude_deg": "39.133", + "longitude_deg": "-1.2622", + "elevation_ft": "2723", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AB", + "municipality": "Carcelén", + "scheduled_service": "no" + }, + { + "id": "320138", + "ident": "ES-0042", + "type": "small_airport", + "name": "Las Cañadillas Airfield", + "latitude_deg": "38.501242", + "longitude_deg": "-2.270883", + "elevation_ft": "3675", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AB", + "municipality": "Molinicos", + "scheduled_service": "no" + }, + { + "id": "320139", + "ident": "ES-0043", + "type": "small_airport", + "name": "La Montaña Ultralightport", + "latitude_deg": "38.80213", + "longitude_deg": "-0.398417", + "elevation_ft": "1050", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-A", + "municipality": "Alcocer de Planes", + "scheduled_service": "no" + }, + { + "id": "320140", + "ident": "ES-0044", + "type": "small_airport", + "name": "Aeródromo de la Curiscada", + "latitude_deg": "43.3330166667", + "longitude_deg": "-6.3785", + "elevation_ft": "2241", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-O", + "municipality": "Tineo", + "scheduled_service": "no", + "keywords": "Tinéu" + }, + { + "id": "320141", + "ident": "ES-0045", + "type": "small_airport", + "name": "Base Aérea Las Navas", + "latitude_deg": "42.953642", + "longitude_deg": "-3.473773", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Medina de Pomar", + "scheduled_service": "no" + }, + { + "id": "320148", + "ident": "ES-0046", + "type": "small_airport", + "name": "Aeródromo de Trasmirás", + "latitude_deg": "42.0517681", + "longitude_deg": "-7.5986285", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GA", + "municipality": "Trasmirás", + "scheduled_service": "no" + }, + { + "id": "320149", + "ident": "ES-0047", + "type": "small_airport", + "name": "Aeródromo de Reboira", + "latitude_deg": "43.1782148", + "longitude_deg": "-7.0494408", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GA", + "municipality": "Reboira", + "scheduled_service": "no" + }, + { + "id": "320168", + "ident": "ES-0048", + "type": "small_airport", + "name": "Gérgal Aerodrome", + "latitude_deg": "37.12557", + "longitude_deg": "-2.595571", + "elevation_ft": "2559", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AL", + "municipality": "Gérgal", + "scheduled_service": "no", + "keywords": "LEGG, Aerödromo de Gérgal" + }, + { + "id": "320170", + "ident": "ES-0049", + "type": "small_airport", + "name": "Aerodrómo de Sanchidrián", + "latitude_deg": "40.89995", + "longitude_deg": "-4.609617", + "elevation_ft": "2789", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AV", + "municipality": "Sanchidrián", + "scheduled_service": "no" + }, + { + "id": "320185", + "ident": "ES-0050", + "type": "small_airport", + "name": "Aeródromo de Villaconejos", + "latitude_deg": "40.0969757", + "longitude_deg": "-3.5083487", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Villaconejos", + "scheduled_service": "no" + }, + { + "id": "320246", + "ident": "ES-0051", + "type": "small_airport", + "name": "Aeródromo de Binéfar", + "latitude_deg": "41.853613", + "longitude_deg": "0.254904", + "elevation_ft": "1312", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AR", + "municipality": "Binéfar", + "scheduled_service": "no", + "gps_code": "LEBF", + "home_link": "http://aeroclubbinefar.com" + }, + { + "id": "320272", + "ident": "ES-0052", + "type": "small_airport", + "name": "Viver Airfield", + "latitude_deg": "39.953679", + "longitude_deg": "-0.622487", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CS", + "municipality": "Viver", + "scheduled_service": "no" + }, + { + "id": "320411", + "ident": "ES-0053", + "type": "small_airport", + "name": "Base BRICA de Cártama", + "latitude_deg": "36.722785", + "longitude_deg": "-4.700446", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Cártama", + "scheduled_service": "no", + "keywords": "BRICA,RioGrande" + }, + { + "id": "320412", + "ident": "ES-0054", + "type": "small_airport", + "name": "Aerodromo de Villanueva de Gallego", + "latitude_deg": "41.7856", + "longitude_deg": "-0.8480333", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AR", + "municipality": "Villanueva de Gallego", + "scheduled_service": "no" + }, + { + "id": "320413", + "ident": "ES-0055", + "type": "small_airport", + "name": "Aeródromo de Antequera", + "latitude_deg": "37.10165", + "longitude_deg": "-4.5625667", + "elevation_ft": "1903", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Antequera", + "scheduled_service": "no" + }, + { + "id": "320414", + "ident": "ES-0056", + "type": "small_airport", + "name": "Aerodrómo de la Calderina", + "latitude_deg": "39.296287", + "longitude_deg": "-3.831152", + "elevation_ft": "3281", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "scheduled_service": "no" + }, + { + "id": "320422", + "ident": "ES-0057", + "type": "small_airport", + "name": "Ses Salines (S’Olivó) Airfield", + "latitude_deg": "39.346746", + "longitude_deg": "3.057199", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-PM", + "municipality": "Ses Salines", + "scheduled_service": "no" + }, + { + "id": "320423", + "ident": "ES-0058", + "type": "small_airport", + "name": "Petra - Pep Mercader Airfield", + "latitude_deg": "39.576801", + "longitude_deg": "3.124647", + "elevation_ft": "233", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-IB", + "municipality": "Manacor", + "scheduled_service": "no", + "keywords": "Vilafranca de Bonany-Es Cruce Airfield" + }, + { + "id": "320424", + "ident": "ES-0059", + "type": "small_airport", + "name": "Binissalem Airfield", + "latitude_deg": "39.68105", + "longitude_deg": "2.877281", + "elevation_ft": "361", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-IB", + "municipality": "Binissalem", + "scheduled_service": "no" + }, + { + "id": "320425", + "ident": "ES-0060", + "type": "seaplane_base", + "name": "Pollença Seaplane Base", + "latitude_deg": "39.908121", + "longitude_deg": "3.101912", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-IB", + "municipality": "Port de Pollença", + "scheduled_service": "no", + "gps_code": "LEPO" + }, + { + "id": "320426", + "ident": "ES-0061", + "type": "small_airport", + "name": "Son Albertí Airfield", + "latitude_deg": "39.400644", + "longitude_deg": "2.860621", + "elevation_ft": "300", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-IB", + "municipality": "Llucmajor", + "scheduled_service": "no" + }, + { + "id": "320442", + "ident": "ES-0062", + "type": "small_airport", + "name": "Aeródromo de Royanejos", + "latitude_deg": "38.979917", + "longitude_deg": "-6.345167", + "elevation_ft": "722", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-EX", + "scheduled_service": "no" + }, + { + "id": "320443", + "ident": "ES-0063", + "type": "small_airport", + "name": "Aeròdrom del Pla de Bages", + "latitude_deg": "41.777586", + "longitude_deg": "1.890361", + "elevation_ft": "886", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Sallent", + "scheduled_service": "no" + }, + { + "id": "320444", + "ident": "ES-0064", + "type": "small_airport", + "name": "Aerodromo Vistabella del Maestrat", + "latitude_deg": "40.33185", + "longitude_deg": "-0.300633", + "elevation_ft": "2953", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CS", + "municipality": "Vistabella del Maestrat", + "scheduled_service": "no" + }, + { + "id": "320471", + "ident": "ES-0065", + "type": "small_airport", + "name": "Aeródromo Aerópolis", + "latitude_deg": "40.020804", + "longitude_deg": "-4.558266", + "elevation_ft": "1509", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "El Casar de Escalona", + "scheduled_service": "no" + }, + { + "id": "320472", + "ident": "ES-0066", + "type": "small_airport", + "name": "Aeródromo Orce", + "latitude_deg": "37.73545", + "longitude_deg": "-2.36425", + "elevation_ft": "3245", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Orce", + "scheduled_service": "no" + }, + { + "id": "320474", + "ident": "ES-0067", + "type": "small_airport", + "name": "Aeródromo de Hiendelaencina-Alto Rey", + "latitude_deg": "41.10826667", + "longitude_deg": "-2.9859667", + "elevation_ft": "4101", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Hiendelaencina", + "scheduled_service": "no" + }, + { + "id": "320478", + "ident": "ES-0068", + "type": "closed", + "name": "Aeròdrom de Can Moragues", + "latitude_deg": "41.580987", + "longitude_deg": "2.100083", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-B", + "municipality": "Sabadell", + "scheduled_service": "no" + }, + { + "id": "320512", + "ident": "ES-0069", + "type": "small_airport", + "name": "Air Marugán", + "latitude_deg": "40.9111", + "longitude_deg": "-4.370917", + "elevation_ft": "3068", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-SG", + "municipality": "Marugán", + "scheduled_service": "no", + "gps_code": "LEIR" + }, + { + "id": "320513", + "ident": "ES-0070", + "type": "small_airport", + "name": "Aeródromo Alcalá del Río", + "latitude_deg": "37.553279", + "longitude_deg": "-5.980612", + "elevation_ft": "144", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-SE", + "municipality": "Alcalá del Río", + "scheduled_service": "no", + "home_link": "http://www.aeroilipamagna.com", + "keywords": "Ilipa Magna" + }, + { + "id": "320514", + "ident": "ES-0071", + "type": "small_airport", + "name": "Ronda", + "latitude_deg": "36.73786", + "longitude_deg": "-5.114125", + "elevation_ft": "2526", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Ronda", + "scheduled_service": "no", + "keywords": "ICONA" + }, + { + "id": "320515", + "ident": "ES-0072", + "type": "small_airport", + "name": "Aeródromo de Beariz", + "latitude_deg": "42.460951", + "longitude_deg": "-8.339674", + "elevation_ft": "2589", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-OR", + "municipality": "Beariz", + "scheduled_service": "no" + }, + { + "id": "320543", + "ident": "ES-0073", + "type": "small_airport", + "name": "Aeródromo de Caravaca de la Cruz", + "latitude_deg": "38.0468", + "longitude_deg": "-1.92201", + "elevation_ft": "2625", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-MU", + "scheduled_service": "no" + }, + { + "id": "320545", + "ident": "ES-0074", + "type": "small_airport", + "name": "Aeródromo el Maíllo", + "latitude_deg": "40.571167", + "longitude_deg": "-6.2188167", + "elevation_ft": "3396", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-SA", + "scheduled_service": "no" + }, + { + "id": "320546", + "ident": "ES-0075", + "type": "small_airport", + "name": "Aeródromo de Navianos de Valverde", + "latitude_deg": "41.959145", + "longitude_deg": "-5.835035", + "elevation_ft": "2395", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "scheduled_service": "no" + }, + { + "id": "320565", + "ident": "ES-0076", + "type": "small_airport", + "name": "AeroVeleta ULM", + "latitude_deg": "37.294754", + "longitude_deg": "-3.712869", + "elevation_ft": "2444", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Caparacena, Granada", + "scheduled_service": "no", + "home_link": "http://http://aeroveleta.es/" + }, + { + "id": "320566", + "ident": "ES-0077", + "type": "small_airport", + "name": "Aeródromo Pozuelo de Calatrava", + "latitude_deg": "38.905198", + "longitude_deg": "-3.852635", + "elevation_ft": "1847", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Pozuelo de Calatrava", + "scheduled_service": "no" + }, + { + "id": "320567", + "ident": "ES-0078", + "type": "small_airport", + "name": "Aeródromo de Sober", + "latitude_deg": "42.432403", + "longitude_deg": "-7.488721", + "elevation_ft": "1903", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-OR", + "municipality": "Sober", + "scheduled_service": "no" + }, + { + "id": "320568", + "ident": "ES-0079", + "type": "small_airport", + "name": "Aeródromo La Balanzona", + "latitude_deg": "37.9617333333", + "longitude_deg": "-4.80705", + "elevation_ft": "1969", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "scheduled_service": "no" + }, + { + "id": "320627", + "ident": "ES-0080", + "type": "small_airport", + "name": "Aeródromo de Valverde del Camino", + "latitude_deg": "37.5056", + "longitude_deg": "-6.70245", + "elevation_ft": "810", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Valverde del Camino", + "scheduled_service": "no" + }, + { + "id": "320628", + "ident": "ES-0081", + "type": "small_airport", + "name": "Aeródromo de Utrera", + "latitude_deg": "37.153417", + "longitude_deg": "-5.798882", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-SE", + "municipality": "Utrera", + "scheduled_service": "no", + "gps_code": "LEUT" + }, + { + "id": "320636", + "ident": "ES-0082", + "type": "small_airport", + "name": "Aeródromo La Loma", + "latitude_deg": "39.4886667", + "longitude_deg": "-0.9022167", + "elevation_ft": "2789", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Siete Aguas", + "scheduled_service": "no" + }, + { + "id": "320643", + "ident": "ES-0083", + "type": "small_airport", + "name": "Aeródromo forestal de La Yesa", + "latitude_deg": "39.909035", + "longitude_deg": "-0.948624", + "elevation_ft": "3675", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "La Yesa", + "scheduled_service": "no" + }, + { + "id": "320644", + "ident": "ES-0084", + "type": "small_airport", + "name": "Aeródromo forestal de Enguera", + "latitude_deg": "38.9431666667", + "longitude_deg": "-0.76915", + "elevation_ft": "1903", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Enguera", + "scheduled_service": "no" + }, + { + "id": "320645", + "ident": "ES-0085", + "type": "small_airport", + "name": "Aeródromo forestal de Ademuz", + "latitude_deg": "40.091464", + "longitude_deg": "-1.210474", + "elevation_ft": "3970", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Ademuz", + "scheduled_service": "no" + }, + { + "id": "320689", + "ident": "ES-0086", + "type": "small_airport", + "name": "Cocoll Firefighting Airstrip", + "latitude_deg": "38.73217", + "longitude_deg": "-0.144053", + "elevation_ft": "3019", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Castell de Castells", + "scheduled_service": "no" + }, + { + "id": "320690", + "ident": "ES-0087", + "type": "small_airport", + "name": "Don Benito", + "latitude_deg": "38.9784666667", + "longitude_deg": "-5.866", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-EX", + "scheduled_service": "no" + }, + { + "id": "320707", + "ident": "ES-0088", + "type": "small_airport", + "name": "Aeródromo Benagéber", + "latitude_deg": "39.735148", + "longitude_deg": "-1.139396", + "elevation_ft": "2871", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Benagéber", + "scheduled_service": "no" + }, + { + "id": "320708", + "ident": "ES-0089", + "type": "small_airport", + "name": "Alt Camp de Vallmoll", + "latitude_deg": "41.249924", + "longitude_deg": "1.241474", + "elevation_ft": "604", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "scheduled_service": "no", + "keywords": "Valmoll" + }, + { + "id": "320710", + "ident": "ES-0090", + "type": "small_airport", + "name": "Villamarco UL", + "latitude_deg": "42.45175", + "longitude_deg": "-5.287083", + "elevation_ft": "2800", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-LE", + "scheduled_service": "no", + "home_link": "http://ulmvillamarco.com", + "keywords": "Ultraligeros Léon" + }, + { + "id": "320711", + "ident": "ES-0091", + "type": "small_airport", + "name": "Base de Bomberos del Amogable", + "latitude_deg": "41.861768", + "longitude_deg": "-2.949889", + "elevation_ft": "3806", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Covaleda", + "scheduled_service": "no" + }, + { + "id": "320712", + "ident": "ES-0092", + "type": "small_airport", + "name": "Chozas de Abajo", + "latitude_deg": "42.497215", + "longitude_deg": "-5.682669", + "elevation_ft": "2953", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-LE", + "scheduled_service": "no" + }, + { + "id": "320729", + "ident": "ES-0093", + "type": "small_airport", + "name": "Alcalá de la Jovada Airstrip", + "latitude_deg": "38.786611", + "longitude_deg": "-0.231057", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Alcalá de la Jovada", + "scheduled_service": "no" + }, + { + "id": "320734", + "ident": "ES-0094", + "type": "small_airport", + "name": "Aeródromo de Sonseca", + "latitude_deg": "39.693244", + "longitude_deg": "-3.933074", + "elevation_ft": "2408", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Sonseca", + "scheduled_service": "no", + "keywords": "Villaverde" + }, + { + "id": "320735", + "ident": "ES-0095", + "type": "small_airport", + "name": "Aeródromo de Tudela", + "latitude_deg": "42.109262", + "longitude_deg": "-1.686976", + "elevation_ft": "778", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-NA", + "scheduled_service": "no", + "keywords": "Aguasalada,Agua Salada" + }, + { + "id": "320751", + "ident": "ES-0096", + "type": "small_airport", + "name": "Guadix", + "latitude_deg": "37.412624", + "longitude_deg": "-3.075759", + "elevation_ft": "3281", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "scheduled_service": "no", + "keywords": "Conejo" + }, + { + "id": "320752", + "ident": "ES-0097", + "type": "small_airport", + "name": "Campillos Airfield", + "latitude_deg": "39.941179", + "longitude_deg": "-1.53596", + "elevation_ft": "3937", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CU", + "municipality": "Campillos-Paravientos", + "scheduled_service": "no" + }, + { + "id": "320753", + "ident": "ES-0098", + "type": "small_airport", + "name": "Moià El Prat", + "latitude_deg": "41.800541", + "longitude_deg": "2.112188", + "elevation_ft": "2264", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Moià", + "scheduled_service": "no", + "home_link": "http://aeroesport.com" + }, + { + "id": "320754", + "ident": "ES-0099", + "type": "small_airport", + "name": "Moià Les Umbertes", + "latitude_deg": "41.7868167", + "longitude_deg": "2.129783", + "elevation_ft": "2231", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Moià", + "scheduled_service": "no", + "home_link": "http://www.volxerpa.com/" + }, + { + "id": "320761", + "ident": "ES-0100", + "type": "small_airport", + "name": "Aeródromo de Algodor", + "latitude_deg": "39.898329", + "longitude_deg": "-3.874655", + "elevation_ft": "1608", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Algodor (Toledo)", + "scheduled_service": "no", + "gps_code": "LETG", + "keywords": "Casarrubias" + }, + { + "id": "320762", + "ident": "ES-0101", + "type": "small_airport", + "name": "Aeródromo de la Guardia", + "latitude_deg": "39.770897", + "longitude_deg": "-3.604716", + "elevation_ft": "2097", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "La Guardia", + "scheduled_service": "no" + }, + { + "id": "320774", + "ident": "ES-0102", + "type": "small_airport", + "name": "Aerodromo de Sesma", + "latitude_deg": "42.425252", + "longitude_deg": "-2.027204", + "elevation_ft": "1476", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-NA", + "municipality": "Sesma", + "scheduled_service": "no" + }, + { + "id": "320775", + "ident": "ES-0103", + "type": "closed", + "name": "Cervera de Pisuerga", + "latitude_deg": "42.887425", + "longitude_deg": "-4.530838", + "elevation_ft": "3609", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Cervera de Pisuerga", + "scheduled_service": "no" + }, + { + "id": "320776", + "ident": "ES-0104", + "type": "small_airport", + "name": "Aerodromo El Busto", + "latitude_deg": "42.34463", + "longitude_deg": "-5.803481", + "elevation_ft": "2648", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Santa Maria del Páramo", + "scheduled_service": "no", + "keywords": "Aeroclub Esparver" + }, + { + "id": "320777", + "ident": "ES-0105", + "type": "small_airport", + "name": "Aeródromo de Lumbier", + "latitude_deg": "42.66565", + "longitude_deg": "-1.302383", + "elevation_ft": "1575", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-NA", + "municipality": "Lumbier", + "scheduled_service": "no", + "gps_code": "LEUM", + "home_link": "http://www.pyrineum.com", + "keywords": "Vuelo Lumbier,Gyro Club Pamplona" + }, + { + "id": "320787", + "ident": "ES-0106", + "type": "small_airport", + "name": "Olula del Río", + "latitude_deg": "37.362538", + "longitude_deg": "-2.331969", + "elevation_ft": "1860", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Olula del Río", + "scheduled_service": "no" + }, + { + "id": "320788", + "ident": "ES-0107", + "type": "small_airport", + "name": "Las Torres de Aliste", + "latitude_deg": "41.68315", + "longitude_deg": "-6.30767", + "elevation_ft": "2749", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "scheduled_service": "no" + }, + { + "id": "320824", + "ident": "ES-0108", + "type": "small_airport", + "name": "Campo de Vuelo Casimiro Patiño", + "latitude_deg": "38.705783", + "longitude_deg": "-6.9997499994", + "elevation_ft": "820", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-EX", + "municipality": "Valverde de Leganés", + "scheduled_service": "no" + }, + { + "id": "320825", + "ident": "ES-0109", + "type": "medium_airport", + "name": "Folgueroles Airfield", + "latitude_deg": "41.9527", + "longitude_deg": "2.3072", + "elevation_ft": "1670", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-B", + "municipality": "Folgueroles", + "scheduled_service": "no", + "keywords": "Osona" + }, + { + "id": "321029", + "ident": "ES-0110", + "type": "small_airport", + "name": "Aeródromo de Córdoba-Villarrubia", + "latitude_deg": "37.8367253", + "longitude_deg": "-4.8964369", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Villarrubia", + "scheduled_service": "no" + }, + { + "id": "321030", + "ident": "ES-0111", + "type": "small_airport", + "name": "Aeródromo Villanueva del Pardillo", + "latitude_deg": "40.5001069999", + "longitude_deg": "-3.9920997", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Villanueva del Pardillo", + "scheduled_service": "no" + }, + { + "id": "321032", + "ident": "ES-0112", + "type": "small_airport", + "name": "Camaleño-Artañin ULM", + "latitude_deg": "43.17817", + "longitude_deg": "-4.674958", + "elevation_ft": "2523", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-S", + "municipality": "Argüébanes", + "scheduled_service": "no" + }, + { + "id": "321036", + "ident": "ES-0113", + "type": "closed", + "name": "Aeródromo de La Lora", + "latitude_deg": "42.769601", + "longitude_deg": "-3.953427", + "elevation_ft": "3510", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-S", + "municipality": "Valderredible", + "scheduled_service": "no" + }, + { + "id": "321046", + "ident": "ES-0114", + "type": "small_airport", + "name": "Aeródromo \"Puente de Genave\"", + "latitude_deg": "38.3666778", + "longitude_deg": "-2.7941751", + "elevation_ft": "1837", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-J", + "scheduled_service": "no", + "keywords": "Hotel Don Juan" + }, + { + "id": "321047", + "ident": "ES-0115", + "type": "small_airport", + "name": "Aeròdrom de Viladamat", + "latitude_deg": "42.142843", + "longitude_deg": "3.051141", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GE", + "municipality": "Viladamat", + "scheduled_service": "no" + }, + { + "id": "321064", + "ident": "ES-0116", + "type": "small_airport", + "name": "Ager Altiport", + "latitude_deg": "42.02277", + "longitude_deg": "0.7491", + "elevation_ft": "2625", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "scheduled_service": "no" + }, + { + "id": "321065", + "ident": "ES-0117", + "type": "small_airport", + "name": "Alcolea Airstrip", + "latitude_deg": "37.9456192", + "longitude_deg": "-4.6154163", + "elevation_ft": "463", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Alcolea", + "scheduled_service": "no" + }, + { + "id": "321066", + "ident": "ES-0118", + "type": "small_airport", + "name": "Alcolea de Cinca", + "latitude_deg": "41.734222", + "longitude_deg": "0.10758333", + "elevation_ft": "722", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-HU", + "municipality": "Alcolea de la Cinca", + "scheduled_service": "no", + "home_link": "http://www.aerocinca.com/index.html" + }, + { + "id": "321067", + "ident": "ES-0119", + "type": "small_airport", + "name": "Campo de vuelo de Villanueva del Trabuco", + "latitude_deg": "37.0634284", + "longitude_deg": "-4.3303351", + "elevation_ft": "2123", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Villanueva del Trabuco", + "scheduled_service": "no" + }, + { + "id": "321068", + "ident": "ES-0120", + "type": "small_airport", + "name": "Villafranca de Cordoba", + "latitude_deg": "37.9367064", + "longitude_deg": "-4.5326323", + "elevation_ft": "656", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "scheduled_service": "no" + }, + { + "id": "321082", + "ident": "ES-0121", + "type": "small_airport", + "name": "Beteta Airfield", + "latitude_deg": "40.540575", + "longitude_deg": "-2.076845", + "elevation_ft": "4265", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CU", + "municipality": "Beteta", + "scheduled_service": "no" + }, + { + "id": "321083", + "ident": "ES-0122", + "type": "closed", + "name": "Huevar 2", + "latitude_deg": "37.386693", + "longitude_deg": "-6.250106", + "elevation_ft": "69", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Huevar", + "scheduled_service": "no" + }, + { + "id": "321093", + "ident": "ES-0123", + "type": "small_airport", + "name": "Aerodrom Tapioles", + "latitude_deg": "42.225478", + "longitude_deg": "2.615891", + "elevation_ft": "787", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GE", + "municipality": "Tortellà", + "scheduled_service": "no" + }, + { + "id": "321094", + "ident": "ES-0124", + "type": "small_airport", + "name": "Les Planes UL", + "latitude_deg": "40.620435", + "longitude_deg": "0.479976", + "elevation_ft": "425", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-T", + "municipality": "Ulldecona", + "scheduled_service": "no" + }, + { + "id": "321111", + "ident": "ES-0125", + "type": "small_airport", + "name": "Aeródromo de Villa María", + "latitude_deg": "37.9273008", + "longitude_deg": "-1.7751475", + "elevation_ft": "2740", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-MU", + "municipality": "Coy (Lorca)", + "scheduled_service": "no" + }, + { + "id": "321112", + "ident": "ES-0126", + "type": "small_airport", + "name": "Aires de Doñana", + "latitude_deg": "37.25689", + "longitude_deg": "-6.562895", + "elevation_ft": "213", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-H", + "municipality": "Almonte", + "scheduled_service": "no", + "home_link": "http://www.aeroclubdehuelva.es/" + }, + { + "id": "321113", + "ident": "ES-0127", + "type": "small_airport", + "name": "Aeroclub L’Estartit", + "latitude_deg": "42.0310336", + "longitude_deg": "3.1793314", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Estartit", + "scheduled_service": "no" + }, + { + "id": "321131", + "ident": "ES-0128", + "type": "small_airport", + "name": "Aeròdrom de Llabiá", + "latitude_deg": "42.011798", + "longitude_deg": "3.089483", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GE", + "municipality": "Llabiá", + "scheduled_service": "no" + }, + { + "id": "321132", + "ident": "ES-0129", + "type": "small_airport", + "name": "Aeródromo Juan Espadafor", + "latitude_deg": "37.0895027778", + "longitude_deg": "-3.7883222222", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GR", + "municipality": "Escúzar", + "scheduled_service": "no", + "home_link": "http://aerodromojuanespadafor.com/" + }, + { + "id": "321164", + "ident": "ES-0130", + "type": "small_airport", + "name": "Alcocer de Planes Airport", + "latitude_deg": "38.791395", + "longitude_deg": "-0.398591", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-A", + "municipality": "Alcocer de Planes", + "scheduled_service": "no", + "keywords": "Escuela de Pilotos La Montaña" + }, + { + "id": "321165", + "ident": "ES-0131", + "type": "small_airport", + "name": "Aeroclub de Barbastro", + "latitude_deg": "41.994251", + "longitude_deg": "0.092153", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AR", + "municipality": "Barbastro", + "scheduled_service": "no" + }, + { + "id": "321166", + "ident": "ES-0132", + "type": "small_airport", + "name": "Alats Club Bellvei", + "latitude_deg": "41.2443358", + "longitude_deg": "1.5632892", + "elevation_ft": "302", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Bellvei", + "scheduled_service": "no" + }, + { + "id": "321178", + "ident": "ES-0133", + "type": "closed", + "name": "Valdecebro Forestry Airstrip", + "latitude_deg": "40.353799", + "longitude_deg": "-1.013488", + "elevation_ft": "3822", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-TE", + "municipality": "Valdecebro", + "scheduled_service": "no" + }, + { + "id": "321179", + "ident": "ES-0134", + "type": "small_airport", + "name": "Aeródromo de Valdelaguna", + "latitude_deg": "40.15787", + "longitude_deg": "-3.38066", + "elevation_ft": "2549", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Valdelaguna", + "scheduled_service": "no" + }, + { + "id": "321180", + "ident": "ES-0135", + "type": "small_airport", + "name": "Valdepeñas", + "latitude_deg": "38.7923092", + "longitude_deg": "-3.3715367", + "elevation_ft": "2395", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "scheduled_service": "no", + "keywords": "Manuel Sanchez" + }, + { + "id": "321218", + "ident": "ES-0136", + "type": "small_airport", + "name": "Aeródromo de Sigüenza", + "latitude_deg": "41.044793", + "longitude_deg": "-2.629209", + "elevation_ft": "3445", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Sigüenza", + "scheduled_service": "no", + "home_link": "http://www.aeroclubseguntino.com/" + }, + { + "id": "321221", + "ident": "ES-0137", + "type": "small_airport", + "name": "Urda Agricultural Airstrip", + "latitude_deg": "39.405432", + "longitude_deg": "-3.829932", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Urda", + "scheduled_service": "no" + }, + { + "id": "321222", + "ident": "ES-0138", + "type": "small_airport", + "name": "Isla Cristina Agricultural Airstrip", + "latitude_deg": "37.242111", + "longitude_deg": "-7.317649", + "elevation_ft": "144", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-H", + "municipality": "Isla Cristina", + "scheduled_service": "no" + }, + { + "id": "321292", + "ident": "ES-0139", + "type": "small_airport", + "name": "Aeroclub Gregal", + "latitude_deg": "39.220457", + "longitude_deg": "-0.36825", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Albalat de la Ribera", + "scheduled_service": "no", + "home_link": "http://volarenvalencia.es" + }, + { + "id": "321293", + "ident": "ES-0140", + "type": "small_airport", + "name": "Albalat de la Ribera Airstrip", + "latitude_deg": "39.226157", + "longitude_deg": "-0.366584", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Albalat de la Ribera", + "scheduled_service": "no" + }, + { + "id": "321328", + "ident": "ES-0141", + "type": "small_airport", + "name": "Aeródromo de Valdeazores", + "latitude_deg": "39.490575", + "longitude_deg": "-4.661292", + "elevation_ft": "763", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Valdeazores", + "scheduled_service": "no" + }, + { + "id": "321329", + "ident": "ES-0142", + "type": "closed", + "name": "San Jeronimo Airfield", + "latitude_deg": "37.884932", + "longitude_deg": "-4.85157", + "elevation_ft": "525", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "San Jeronimo", + "scheduled_service": "no" + }, + { + "id": "321338", + "ident": "ES-0143", + "type": "small_airport", + "name": "Martinamatos Flight Field", + "latitude_deg": "40.099412", + "longitude_deg": "-4.295084", + "elevation_ft": "1978", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Santa Cruz del Retamar", + "scheduled_service": "no", + "home_link": "http://www.martinamatos.com/" + }, + { + "id": "321339", + "ident": "ES-0144", + "type": "small_airport", + "name": "Aeródromo de Tardienta - Monegros", + "latitude_deg": "41.9599129", + "longitude_deg": "-0.5434853", + "elevation_ft": "1296", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AR", + "scheduled_service": "no" + }, + { + "id": "321361", + "ident": "ES-0145", + "type": "small_airport", + "name": "Aeródromo Coscojuela de Sobrarbe", + "latitude_deg": "42.3487", + "longitude_deg": "0.18613", + "elevation_ft": "1788", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AR", + "municipality": "Ainsa", + "scheduled_service": "no" + }, + { + "id": "321362", + "ident": "ES-0146", + "type": "small_airport", + "name": "Aeródromo de San Torcuato", + "latitude_deg": "42.474227", + "longitude_deg": "-2.872739", + "elevation_ft": "2133", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-LO", + "municipality": "San Torcuato", + "scheduled_service": "no", + "home_link": "http://escueladevuelo.com" + }, + { + "id": "321380", + "ident": "ES-0147", + "type": "small_airport", + "name": "Villaumbrales UL", + "latitude_deg": "42.095282", + "longitude_deg": "-4.595404", + "elevation_ft": "2658", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-P", + "municipality": "Villaumbrales", + "scheduled_service": "no", + "keywords": "Liberty Air" + }, + { + "id": "321381", + "ident": "ES-0148", + "type": "small_airport", + "name": "Villanueva de la Cañada Airfield", + "latitude_deg": "40.436582", + "longitude_deg": "-4.024985", + "elevation_ft": "1985", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Villanueva de la Cañada", + "scheduled_service": "no" + }, + { + "id": "321382", + "ident": "ES-0149", + "type": "small_airport", + "name": "Aeródromo de Velada", + "latitude_deg": "40.01051", + "longitude_deg": "-4.946316", + "elevation_ft": "1427", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Velada", + "scheduled_service": "no", + "keywords": "El Baldío, Mejorada" + }, + { + "id": "321383", + "ident": "ES-0150", + "type": "small_airport", + "name": "Aeródromo Valdetorres", + "latitude_deg": "38.942651", + "longitude_deg": "-6.127169", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-EX", + "municipality": "Valdetorres", + "scheduled_service": "no" + }, + { + "id": "321390", + "ident": "ES-0151", + "type": "small_airport", + "name": "Aeródromo de Treviño", + "latitude_deg": "42.7212725", + "longitude_deg": "-2.6783924", + "elevation_ft": "1969", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-BU", + "municipality": "Treviño", + "scheduled_service": "no" + }, + { + "id": "321391", + "ident": "ES-0152", + "type": "small_airport", + "name": "Campo de Aviación de Peralveche", + "latitude_deg": "40.6025245", + "longitude_deg": "-2.4293518", + "elevation_ft": "3937", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GU", + "municipality": "Peralveche", + "scheduled_service": "no" + }, + { + "id": "321392", + "ident": "ES-0153", + "type": "small_airport", + "name": "Ororbia Airport", + "latitude_deg": "42.822214", + "longitude_deg": "-1.735109", + "elevation_ft": "1345", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-NA", + "municipality": "Ororbia", + "scheduled_service": "no" + }, + { + "id": "321393", + "ident": "ES-0154", + "type": "small_airport", + "name": "Aeródromo de Piedrahita", + "latitude_deg": "40.4798546", + "longitude_deg": "-5.3606761", + "elevation_ft": "3297", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CS", + "municipality": "Piedrahita", + "scheduled_service": "no" + }, + { + "id": "321397", + "ident": "ES-0155", + "type": "small_airport", + "name": "Aeródromo Tarancón", + "latitude_deg": "40.01248", + "longitude_deg": "-2.977939", + "elevation_ft": "2379", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Tarancón", + "scheduled_service": "no" + }, + { + "id": "321398", + "ident": "ES-0156", + "type": "small_airport", + "name": "Ruidera", + "latitude_deg": "39.0369546", + "longitude_deg": "-2.8946489", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CR", + "municipality": "Ruidera", + "scheduled_service": "no" + }, + { + "id": "321413", + "ident": "ES-0157", + "type": "small_airport", + "name": "Aeródromo de Ordis", + "latitude_deg": "42.2325", + "longitude_deg": "2.8869444", + "elevation_ft": "2231", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GE", + "municipality": "Ordis", + "scheduled_service": "no" + }, + { + "id": "321416", + "ident": "ES-0158", + "type": "small_airport", + "name": "Olocau Airfield", + "latitude_deg": "39.675517", + "longitude_deg": "-0.548855", + "elevation_ft": "680", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Olocau", + "scheduled_service": "no", + "home_link": "http://www.escuelaultraligero.es/", + "keywords": "Campo de Vuelo de Olocau, Escuela de Vuelo Olocau" + }, + { + "id": "321418", + "ident": "ES-0159", + "type": "small_airport", + "name": "Campo de Vuelo Moixent-Mogente", + "latitude_deg": "38.817024", + "longitude_deg": "-0.833138", + "elevation_ft": "1837", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Mogente / Moixent", + "scheduled_service": "no" + }, + { + "id": "321419", + "ident": "ES-0160", + "type": "small_airport", + "name": "Campo de Vuelo Yecla", + "latitude_deg": "38.58759", + "longitude_deg": "-1.105", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-MU", + "municipality": "Yecla", + "scheduled_service": "no" + }, + { + "id": "321425", + "ident": "ES-0161", + "type": "small_airport", + "name": "Campo de Vuelo Avial", + "latitude_deg": "42.077377", + "longitude_deg": "1.840227", + "elevation_ft": "2074", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Berga", + "scheduled_service": "no" + }, + { + "id": "321427", + "ident": "ES-0162", + "type": "small_airport", + "name": "Aeródromo Loring", + "latitude_deg": "40.6602", + "longitude_deg": "-3.59489", + "elevation_ft": "1903", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "El Molar", + "scheduled_service": "no", + "home_link": "http://aerodromo-loring.blogspot.be/" + }, + { + "id": "321430", + "ident": "ES-0163", + "type": "small_airport", + "name": "Aeroguillena", + "latitude_deg": "37.561238", + "longitude_deg": "-6.0308241", + "elevation_ft": "197", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-SE", + "municipality": "Guillena", + "scheduled_service": "no", + "home_link": "http://www.aeroguillena.com" + }, + { + "id": "321431", + "ident": "ES-0164", + "type": "small_airport", + "name": "Camp de vol La Puieda", + "latitude_deg": "41.9882928", + "longitude_deg": "2.2561665", + "elevation_ft": "1726", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Gurb", + "scheduled_service": "no" + }, + { + "id": "321432", + "ident": "ES-0165", + "type": "small_airport", + "name": "Aeródromo Gurrea de Gállego", + "latitude_deg": "42.035333", + "longitude_deg": "-0.746295", + "elevation_ft": "1116", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AR", + "municipality": "Gurrea de Gállego", + "scheduled_service": "no" + }, + { + "id": "321438", + "ident": "ES-0166", + "type": "small_airport", + "name": "Aeródromo de Loja", + "latitude_deg": "37.1377455", + "longitude_deg": "-4.2698489", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Loja", + "scheduled_service": "no" + }, + { + "id": "321439", + "ident": "ES-0167", + "type": "small_airport", + "name": "La Llosa Airfield", + "latitude_deg": "39.74979", + "longitude_deg": "-0.181346", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CS", + "municipality": "La Llosa", + "scheduled_service": "no", + "home_link": "http://clubulmlallosa.com/" + }, + { + "id": "321440", + "ident": "ES-0168", + "type": "small_airport", + "name": "Lebrija UL", + "latitude_deg": "36.896138", + "longitude_deg": "-6.0393716", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Lebrija", + "scheduled_service": "no" + }, + { + "id": "321441", + "ident": "ES-0169", + "type": "small_airport", + "name": "Aeródromo Fontioso", + "latitude_deg": "41.933305", + "longitude_deg": "-3.784808", + "elevation_ft": "3068", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Fontioso", + "scheduled_service": "no" + }, + { + "id": "321442", + "ident": "ES-0170", + "type": "small_airport", + "name": "Aeròdrom de Foixà", + "latitude_deg": "42.029933", + "longitude_deg": "2.990761", + "elevation_ft": "443", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Foixà", + "scheduled_service": "no" + }, + { + "id": "321460", + "ident": "ES-0171", + "type": "small_airport", + "name": "Ecija 2 private airfield", + "latitude_deg": "37.5142575", + "longitude_deg": "-5.1213502", + "elevation_ft": "574", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Ecija", + "scheduled_service": "no" + }, + { + "id": "321461", + "ident": "ES-0172", + "type": "small_airport", + "name": "Aeródromo de Écija", + "latitude_deg": "37.5802316", + "longitude_deg": "-5.171264", + "elevation_ft": "591", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Écija", + "scheduled_service": "no" + }, + { + "id": "321462", + "ident": "ES-0173", + "type": "small_airport", + "name": "Aeròdrom Municipal El Pla de Santa María", + "latitude_deg": "41.371467", + "longitude_deg": "1.30375", + "elevation_ft": "1345", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-T", + "municipality": "El Pla de Santa María", + "scheduled_service": "no", + "keywords": "Les Escarbones" + }, + { + "id": "321463", + "ident": "ES-0174", + "type": "small_airport", + "name": "Aeródromo de Cillamayor", + "latitude_deg": "42.851348", + "longitude_deg": "-4.279289", + "elevation_ft": "3215", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Cillamayor", + "scheduled_service": "no" + }, + { + "id": "321475", + "ident": "ES-0175", + "type": "small_airport", + "name": "Aeródromo Mazaricos", + "latitude_deg": "42.982329", + "longitude_deg": "-9.005002", + "elevation_ft": "960", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GA", + "municipality": "Fervenza", + "scheduled_service": "no", + "gps_code": "LEMZ", + "home_link": "https://naturmaz.com/aerodromo/" + }, + { + "id": "321476", + "ident": "ES-0176", + "type": "small_airport", + "name": "Aeródromo de Guadalix de la SIerra", + "latitude_deg": "40.7848296", + "longitude_deg": "-3.6397313", + "elevation_ft": "2756", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "El Vellón", + "scheduled_service": "no" + }, + { + "id": "321477", + "ident": "ES-0177", + "type": "small_airport", + "name": "Aeródromo Coria", + "latitude_deg": "39.984617", + "longitude_deg": "-6.554554", + "elevation_ft": "735", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-EX", + "municipality": "Coria", + "scheduled_service": "no" + }, + { + "id": "321478", + "ident": "ES-0178", + "type": "small_airport", + "name": "Aeródromo de Brunete", + "latitude_deg": "40.396556", + "longitude_deg": "-4.023712", + "elevation_ft": "1975", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Brunete", + "scheduled_service": "no" + }, + { + "id": "321479", + "ident": "ES-0179", + "type": "small_airport", + "name": "Benicolet Airfield", + "latitude_deg": "38.918703", + "longitude_deg": "-0.355677", + "elevation_ft": "807", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-A", + "municipality": "Benicolet", + "scheduled_service": "no", + "keywords": "Aeroclub Balica" + }, + { + "id": "321497", + "ident": "ES-0180", + "type": "closed", + "name": "Aeródromo de Zalla - Forestal", + "latitude_deg": "43.186232", + "longitude_deg": "-3.120631", + "elevation_ft": "1641", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-BI", + "municipality": "Zalla", + "scheduled_service": "no" + }, + { + "id": "321508", + "ident": "ES-0181", + "type": "small_airport", + "name": "Aeródromo de Fuente Obejuna", + "latitude_deg": "38.281802", + "longitude_deg": "-5.40184", + "elevation_ft": "2083", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Fuente Obejuna", + "scheduled_service": "no", + "keywords": "Ela Aviación" + }, + { + "id": "321509", + "ident": "ES-0182", + "type": "small_airport", + "name": "Aeródromo de Jaen - Las Infantas", + "latitude_deg": "37.908577", + "longitude_deg": "-3.800161", + "elevation_ft": "1034", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Jaen", + "scheduled_service": "no" + }, + { + "id": "321510", + "ident": "ES-0183", + "type": "small_airport", + "name": "Aeródromo Belvis de Monroy", + "latitude_deg": "39.8513634", + "longitude_deg": "-5.6015255", + "elevation_ft": "1017", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-EX", + "municipality": "Belvis de Monroy", + "scheduled_service": "no" + }, + { + "id": "321511", + "ident": "ES-0184", + "type": "small_airport", + "name": "Aeródromo Navalmoral de la Mata", + "latitude_deg": "39.91613", + "longitude_deg": "-5.53976", + "elevation_ft": "951", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-EX", + "municipality": "Navalmoral de la Mata", + "scheduled_service": "no" + }, + { + "id": "321513", + "ident": "ES-0185", + "type": "small_airport", + "name": "Aeródromo Pelayos de la Presa", + "latitude_deg": "40.3720107", + "longitude_deg": "-4.3826756", + "elevation_ft": "2215", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Pelayos de la Presa", + "scheduled_service": "no" + }, + { + "id": "321514", + "ident": "ES-0186", + "type": "small_airport", + "name": "Aeródromo de Almorox", + "latitude_deg": "40.2116282", + "longitude_deg": "-4.386763", + "elevation_ft": "1575", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Almorox", + "scheduled_service": "no" + }, + { + "id": "321517", + "ident": "ES-0187", + "type": "small_airport", + "name": "Fuentealamo Airfield", + "latitude_deg": "38.715499", + "longitude_deg": "-1.545093", + "elevation_ft": "2690", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AB", + "municipality": "Chinchilla de Montearagón", + "scheduled_service": "no" + }, + { + "id": "321518", + "ident": "ES-0188", + "type": "small_airport", + "name": "El Ejido UL", + "latitude_deg": "36.7441167", + "longitude_deg": "-2.7674833", + "elevation_ft": "157", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AL", + "municipality": "El Ejido", + "scheduled_service": "no" + }, + { + "id": "321526", + "ident": "ES-0189", + "type": "small_airport", + "name": "La Gineta Ultralightport", + "latitude_deg": "39.105766", + "longitude_deg": "-2.016283", + "elevation_ft": "2270", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AB", + "municipality": "La Gineta", + "scheduled_service": "no" + }, + { + "id": "321529", + "ident": "ES-0190", + "type": "small_airport", + "name": "Aeródromo Almendralejo", + "latitude_deg": "38.739954", + "longitude_deg": "-6.391888", + "elevation_ft": "1034", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-EX", + "municipality": "Almendralejo", + "scheduled_service": "no", + "home_link": "http://miaeroclub.es" + }, + { + "id": "321555", + "ident": "ES-0191", + "type": "small_airport", + "name": "El Bonillo Airfield", + "latitude_deg": "38.8727", + "longitude_deg": "-2.6733", + "elevation_ft": "3183", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AB", + "municipality": "El Bonillo", + "scheduled_service": "no" + }, + { + "id": "321557", + "ident": "ES-0192", + "type": "small_airport", + "name": "Aeródromo Tiurana", + "latitude_deg": "41.97416", + "longitude_deg": "1.257531", + "elevation_ft": "2133", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-L", + "scheduled_service": "no" + }, + { + "id": "321564", + "ident": "ES-0193", + "type": "small_airport", + "name": "Aeroclub Arnao UL", + "latitude_deg": "43.5531667", + "longitude_deg": "-7.0168", + "elevation_ft": "69", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-O", + "municipality": "Arnao", + "scheduled_service": "no" + }, + { + "id": "321571", + "ident": "ES-0194", + "type": "small_airport", + "name": "Aeródrome de Arcones", + "latitude_deg": "41.11453", + "longitude_deg": "-3.73378", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-SG", + "municipality": "Arcones", + "scheduled_service": "no" + }, + { + "id": "321572", + "ident": "ES-0195", + "type": "small_airport", + "name": "Pista Forestal Valdelamusa", + "latitude_deg": "37.7763167", + "longitude_deg": "-6.8826667", + "elevation_ft": "1135", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-H", + "municipality": "Valdelamusa", + "scheduled_service": "no" + }, + { + "id": "321574", + "ident": "ES-0196", + "type": "small_airport", + "name": "Tinajeros Airfield", + "latitude_deg": "39.09825", + "longitude_deg": "-1.72071", + "elevation_ft": "2822", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AB", + "municipality": "Tinajeros", + "scheduled_service": "no", + "keywords": "Aeroclub Albacete" + }, + { + "id": "321576", + "ident": "ES-0197", + "type": "small_airport", + "name": "Aeródromo de Espiel", + "latitude_deg": "38.2628667", + "longitude_deg": "-5.0442", + "elevation_ft": "2362", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Espiel", + "scheduled_service": "no" + }, + { + "id": "321577", + "ident": "ES-0198", + "type": "small_airport", + "name": "Aeródromo de La Vid de Bureba", + "latitude_deg": "42.632037", + "longitude_deg": "-3.311456", + "elevation_ft": "2297", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-BU", + "municipality": "La Vid de Bureba", + "scheduled_service": "no", + "keywords": "AeroLaVid" + }, + { + "id": "321580", + "ident": "ES-0199", + "type": "small_airport", + "name": "Aeródromo de Aldeacentenara", + "latitude_deg": "39.5609167", + "longitude_deg": "-5.6637222", + "elevation_ft": "1772", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CC", + "municipality": "Aldeacentenara", + "scheduled_service": "no" + }, + { + "id": "321581", + "ident": "ES-0200", + "type": "small_airport", + "name": "Xeraco Airfield", + "latitude_deg": "39.025781", + "longitude_deg": "-0.207753", + "elevation_ft": "23", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Xeraco", + "scheduled_service": "no" + }, + { + "id": "321582", + "ident": "ES-0201", + "type": "small_airport", + "name": "Cogullada", + "latitude_deg": "41.691623", + "longitude_deg": "-0.85157", + "elevation_ft": "673", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-Z", + "municipality": "Zaragoza", + "scheduled_service": "no" + }, + { + "id": "321583", + "ident": "ES-0202", + "type": "small_airport", + "name": "Aeródromo de Garrucha", + "latitude_deg": "37.197959", + "longitude_deg": "-1.830627", + "elevation_ft": "52", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "scheduled_service": "no" + }, + { + "id": "321584", + "ident": "ES-0203", + "type": "small_airport", + "name": "Aeródromo Lanzahita UL", + "latitude_deg": "40.186112", + "longitude_deg": "-4.946256", + "elevation_ft": "1329", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Lanzahita", + "scheduled_service": "no" + }, + { + "id": "321601", + "ident": "ES-0204", + "type": "small_airport", + "name": "Mollerussa UL", + "latitude_deg": "41.6122017", + "longitude_deg": "0.8541227", + "elevation_ft": "984", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Mollerussa", + "scheduled_service": "no", + "home_link": "http://www.clubaeri.net/" + }, + { + "id": "321603", + "ident": "ES-0205", + "type": "small_airport", + "name": "Castejón de Sos Airfield", + "latitude_deg": "42.522468", + "longitude_deg": "0.481114", + "elevation_ft": "2959", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-HU", + "municipality": "Castejón de Sos", + "scheduled_service": "no", + "home_link": "http://www.aviador.net" + }, + { + "id": "321607", + "ident": "ES-0206", + "type": "small_airport", + "name": "Aeródromo privado \"Villamartin2\"", + "latitude_deg": "36.827132", + "longitude_deg": "-5.603212", + "elevation_ft": "476", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Villamartin", + "scheduled_service": "no" + }, + { + "id": "321608", + "ident": "ES-0207", + "type": "small_airport", + "name": "Aeródromo Calzada de Valdunciel", + "latitude_deg": "41.07545", + "longitude_deg": "-5.7280355", + "elevation_ft": "2625", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-SA", + "municipality": "Calzada de Valdunciel", + "scheduled_service": "no" + }, + { + "id": "321609", + "ident": "ES-0208", + "type": "small_airport", + "name": "Aeródromo forestal \"Requena 2\"", + "latitude_deg": "39.4422585", + "longitude_deg": "-1.0493454", + "elevation_ft": "2740", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Requena", + "scheduled_service": "no" + }, + { + "id": "321610", + "ident": "ES-0209", + "type": "small_airport", + "name": "Aeródromo de Griñón", + "latitude_deg": "40.2237809995", + "longitude_deg": "-3.866911", + "elevation_ft": "2198", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Griñón", + "scheduled_service": "no", + "keywords": "Aeroclub Dhaguera" + }, + { + "id": "321624", + "ident": "ES-0210", + "type": "small_airport", + "name": "Palma del Rio 2 UL", + "latitude_deg": "37.668501", + "longitude_deg": "-5.262086", + "elevation_ft": "449", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Palma del Rio", + "scheduled_service": "no" + }, + { + "id": "321633", + "ident": "ES-0211", + "type": "small_airport", + "name": "Campo de Vuelo de Oteo", + "latitude_deg": "43.0168667", + "longitude_deg": "-3.3120333", + "elevation_ft": "2307", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Oteo", + "scheduled_service": "no" + }, + { + "id": "321660", + "ident": "ES-0212", + "type": "small_airport", + "name": "Hacienda de Orán", + "latitude_deg": "37.2000414", + "longitude_deg": "-5.8808531", + "elevation_ft": "72", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-SE", + "municipality": "Utrero", + "scheduled_service": "no" + }, + { + "id": "321661", + "ident": "ES-0213", + "type": "small_airport", + "name": "Campo de Vuelo de Astorga", + "latitude_deg": "42.50323", + "longitude_deg": "-6.026578", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-LE", + "municipality": "Astorga", + "scheduled_service": "no", + "gps_code": "LEAT", + "home_link": "http://campodevueloastorga.es/" + }, + { + "id": "321689", + "ident": "ES-0214", + "type": "small_airport", + "name": "Campo de Vuelo de Caspe", + "latitude_deg": "41.2287652", + "longitude_deg": "-0.085876", + "elevation_ft": "656", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-Z", + "municipality": "Caspe", + "scheduled_service": "no" + }, + { + "id": "321702", + "ident": "ES-0215", + "type": "small_airport", + "name": "Alhama de Granada Airfield", + "latitude_deg": "36.996999", + "longitude_deg": "-4.103608", + "elevation_ft": "3215", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Alhama de Granada", + "scheduled_service": "no" + }, + { + "id": "321703", + "ident": "ES-0216", + "type": "small_airport", + "name": "Aeròdrom de Cervera", + "latitude_deg": "41.687597", + "longitude_deg": "1.250494", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-L", + "municipality": "Cervera", + "scheduled_service": "no" + }, + { + "id": "321704", + "ident": "ES-0217", + "type": "small_airport", + "name": "Benejama UL", + "latitude_deg": "38.696193", + "longitude_deg": "-0.744936", + "elevation_ft": "1985", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-A", + "municipality": "Beneixama", + "scheduled_service": "no" + }, + { + "id": "321706", + "ident": "ES-0218", + "type": "small_airport", + "name": "Alto Vinalopó Biar Benejama", + "latitude_deg": "38.684431", + "longitude_deg": "-0.760295", + "elevation_ft": "1936", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-A", + "municipality": "Beneixama", + "scheduled_service": "no" + }, + { + "id": "321718", + "ident": "ES-0219", + "type": "small_airport", + "name": "Aeródromo de Camarenilla", + "latitude_deg": "40.024702", + "longitude_deg": "-4.0712017", + "elevation_ft": "1742", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Camarenilla", + "scheduled_service": "no", + "home_link": "http://www.volarenavioneta.es" + }, + { + "id": "321719", + "ident": "ES-0220", + "type": "small_airport", + "name": "Campo de Vuelo Bañeres de Mariola", + "latitude_deg": "38.671077", + "longitude_deg": "-0.631257", + "elevation_ft": "3117", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-A", + "municipality": "Banyeres de Mariola", + "scheduled_service": "no" + }, + { + "id": "321727", + "ident": "ES-0221", + "type": "small_airport", + "name": "Ruidera2", + "latitude_deg": "39.02495", + "longitude_deg": "-2.911927", + "elevation_ft": "2871", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CR", + "municipality": "Ruidera", + "scheduled_service": "no" + }, + { + "id": "321728", + "ident": "ES-0222", + "type": "small_airport", + "name": "Pista forestal de Fuencaliente", + "latitude_deg": "38.5264323", + "longitude_deg": "-4.389622", + "elevation_ft": "2674", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Fuencaliente", + "scheduled_service": "no" + }, + { + "id": "321741", + "ident": "ES-0223", + "type": "heliport", + "name": "Almagro Helicopter Airbase", + "latitude_deg": "38.952096", + "longitude_deg": "-3.741126", + "elevation_ft": "2067", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CR", + "municipality": "Almagro", + "scheduled_service": "no", + "gps_code": "LEAO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Spanish_Army_Airmobile_Force" + }, + { + "id": "321742", + "ident": "ES-0224", + "type": "small_airport", + "name": "Campo de Vuelo de Pozorrubio", + "latitude_deg": "39.825953", + "longitude_deg": "-2.95236", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CU", + "municipality": "Pozorrubio", + "scheduled_service": "no" + }, + { + "id": "321759", + "ident": "ES-0225", + "type": "small_airport", + "name": "Aeródromo Forestal \"Puebla de Don Rodrigo\"", + "latitude_deg": "39.066067", + "longitude_deg": "-4.488502", + "elevation_ft": "2067", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CR", + "municipality": "Puebla de Don Rodrigo", + "scheduled_service": "no" + }, + { + "id": "321793", + "ident": "ES-0226", + "type": "small_airport", + "name": "Aeródromo forestal de Herrera del Duque", + "latitude_deg": "39.2264442", + "longitude_deg": "-4.8863799", + "elevation_ft": "1394", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-EX", + "municipality": "Herrera del Duque", + "scheduled_service": "no" + }, + { + "id": "321794", + "ident": "ES-0227", + "type": "closed", + "name": "Dima Airfield", + "latitude_deg": "43.075701", + "longitude_deg": "-2.683326", + "elevation_ft": "1936", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-BI", + "scheduled_service": "no" + }, + { + "id": "321875", + "ident": "ES-0228", + "type": "closed", + "name": "Cortijo Grande", + "latitude_deg": "37.1351217", + "longitude_deg": "-1.9360369", + "elevation_ft": "495", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Turre", + "scheduled_service": "no" + }, + { + "id": "321890", + "ident": "ES-0229", + "type": "closed", + "name": "Villena", + "latitude_deg": "38.5868201", + "longitude_deg": "-0.8559465", + "elevation_ft": "1641", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-A", + "scheduled_service": "no" + }, + { + "id": "321952", + "ident": "ES-0230", + "type": "small_airport", + "name": "Sotillo de la Andrada", + "latitude_deg": "41.27115", + "longitude_deg": "-3.63005", + "elevation_ft": "722", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "scheduled_service": "no" + }, + { + "id": "331362", + "ident": "ES-0231", + "type": "small_airport", + "name": "Prádanos de Ojeda Airstrip", + "latitude_deg": "42.6921604", + "longitude_deg": "-4.3486359", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-P", + "scheduled_service": "no" + }, + { + "id": "324536", + "ident": "ES-0232", + "type": "small_airport", + "name": "Jarde Airport", + "latitude_deg": "28.391185", + "longitude_deg": "-13.982968", + "elevation_ft": "515", + "continent": "AF", + "iso_country": "ES", + "iso_region": "ES-CN", + "municipality": "Antigua", + "scheduled_service": "no", + "gps_code": "GCAT", + "keywords": "Aeródromo del Jarde" + }, + { + "id": "324773", + "ident": "ES-0233", + "type": "small_airport", + "name": "Aeródromo Forestal \"La Fonfría\"", + "latitude_deg": "42.3466117", + "longitude_deg": "-2.9109476", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-LO", + "municipality": "Villarejo", + "scheduled_service": "no" + }, + { + "id": "324795", + "ident": "ES-0234", + "type": "small_airport", + "name": "Cóbreces Airfield", + "latitude_deg": "43.388518", + "longitude_deg": "-4.207752", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-S", + "municipality": "Cóbreces", + "scheduled_service": "no" + }, + { + "id": "325234", + "ident": "ES-0235", + "type": "small_airport", + "name": "Santiago-Pontones Airstrip", + "latitude_deg": "38.0909891", + "longitude_deg": "-2.6484287", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "scheduled_service": "no" + }, + { + "id": "325396", + "ident": "ES-0236", + "type": "heliport", + "name": "Roses Aerial Military Radar Helipad", + "latitude_deg": "42.278272", + "longitude_deg": "3.233359", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Roses", + "scheduled_service": "no" + }, + { + "id": "326685", + "ident": "ES-0237", + "type": "heliport", + "name": "Estepona Airfield", + "latitude_deg": "36.495633", + "longitude_deg": "-5.17816", + "elevation_ft": "2033", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-MA", + "municipality": "Estepona", + "scheduled_service": "no" + }, + { + "id": "326987", + "ident": "ES-0238", + "type": "small_airport", + "name": "El Moral Airstrip", + "latitude_deg": "38.485842", + "longitude_deg": "-6.263409", + "elevation_ft": "1496", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-BA", + "scheduled_service": "no", + "home_link": "http://aerodromoelmoral.net/" + }, + { + "id": "327564", + "ident": "ES-0239", + "type": "heliport", + "name": "Base de Helicópteros de Guadramiro", + "latitude_deg": "41.011168", + "longitude_deg": "-6.477604", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-SA", + "municipality": "Guadramiro", + "scheduled_service": "no" + }, + { + "id": "329148", + "ident": "ES-0240", + "type": "heliport", + "name": "Heliactivo", + "latitude_deg": "38.5632993", + "longitude_deg": "-0.1511484", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-A", + "municipality": "Benidorm", + "scheduled_service": "no" + }, + { + "id": "329201", + "ident": "ES-0241", + "type": "heliport", + "name": "Lires Heliport", + "latitude_deg": "42.981544", + "longitude_deg": "-9.237198", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GA", + "scheduled_service": "no" + }, + { + "id": "329206", + "ident": "ES-0242", + "type": "heliport", + "name": "Guillade Heliport", + "latitude_deg": "42.170884", + "longitude_deg": "-8.43643", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GA", + "municipality": "Guillade", + "scheduled_service": "no" + }, + { + "id": "329228", + "ident": "ES-0243", + "type": "heliport", + "name": "Pitres Heliport", + "latitude_deg": "36.932903", + "longitude_deg": "-3.3404525", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "scheduled_service": "no" + }, + { + "id": "329235", + "ident": "ES-0244", + "type": "small_airport", + "name": "Club Fenix ULM", + "latitude_deg": "39.657599", + "longitude_deg": "-0.811627", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "scheduled_service": "no" + }, + { + "id": "329298", + "ident": "ES-0245", + "type": "small_airport", + "name": "Los Yébenes Airstrip", + "latitude_deg": "39.5094986", + "longitude_deg": "-4.0259661", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "scheduled_service": "no" + }, + { + "id": "331183", + "ident": "ES-0246", + "type": "heliport", + "name": "Camarinal Helicopter Base", + "latitude_deg": "36.082422", + "longitude_deg": "-5.796723", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Cadiz", + "scheduled_service": "no" + }, + { + "id": "331316", + "ident": "ES-0247", + "type": "closed", + "name": "Tomelloso Airstrip", + "latitude_deg": "39.11266", + "longitude_deg": "-2.94219", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "scheduled_service": "no" + }, + { + "id": "331329", + "ident": "ES-0248", + "type": "small_airport", + "name": "Atlas Center Vuelos de Drones", + "latitude_deg": "38.1392261", + "longitude_deg": "-3.1738682", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "scheduled_service": "no" + }, + { + "id": "331330", + "ident": "ES-0249", + "type": "small_airport", + "name": "Beuda Besalu Private Airstrip", + "latitude_deg": "42.2114675", + "longitude_deg": "2.7092805", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "scheduled_service": "no" + }, + { + "id": "331406", + "ident": "ES-0250", + "type": "small_airport", + "name": "Fresno de Losa Airstrip", + "latitude_deg": "42.9534667", + "longitude_deg": "-3.1531167", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "scheduled_service": "no" + }, + { + "id": "331408", + "ident": "ES-0251", + "type": "small_airport", + "name": "Pueblonuevo de Miramontes Airstrip", + "latitude_deg": "40.059082", + "longitude_deg": "-5.363341", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CC", + "municipality": "Pueblonuevo de Miramontes", + "scheduled_service": "no" + }, + { + "id": "331411", + "ident": "ES-0252", + "type": "closed", + "name": "Calamocha Airstrip", + "latitude_deg": "40.902364", + "longitude_deg": "-1.298009", + "elevation_ft": "2963", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-TE", + "municipality": "Calamocha", + "scheduled_service": "no", + "keywords": "LECH" + }, + { + "id": "331419", + "ident": "ES-0253", + "type": "closed", + "name": "El Robledo", + "latitude_deg": "39.2242833", + "longitude_deg": "-4.3076333", + "elevation_ft": "1772", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CR", + "scheduled_service": "no" + }, + { + "id": "331420", + "ident": "ES-0254", + "type": "closed", + "name": "Valdeperdices", + "latitude_deg": "39.403683", + "longitude_deg": "-4.918783", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CR", + "scheduled_service": "no" + }, + { + "id": "331421", + "ident": "ES-0255", + "type": "heliport", + "name": "Vigil de Quinones Military Hospital Heliport", + "latitude_deg": "37.3474", + "longitude_deg": "-5.9716", + "elevation_ft": "40", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Seville", + "scheduled_service": "no" + }, + { + "id": "331529", + "ident": "ES-0256", + "type": "small_airport", + "name": "Valdenuño-Fernandez Airstrip", + "latitude_deg": "40.766317", + "longitude_deg": "-3.35485", + "elevation_ft": "2887", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "scheduled_service": "no" + }, + { + "id": "331531", + "ident": "ES-0257", + "type": "small_airport", + "name": "Cabezas Rubias Airstrip", + "latitude_deg": "37.748234", + "longitude_deg": "-7.096699", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "scheduled_service": "no" + }, + { + "id": "331570", + "ident": "ES-0258", + "type": "heliport", + "name": "Helipuerto de Sahechores", + "latitude_deg": "42.62011", + "longitude_deg": "-5.19233", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "scheduled_service": "no" + }, + { + "id": "331716", + "ident": "ES-0259", + "type": "closed", + "name": "Piedrabuena - Los Jarales", + "latitude_deg": "39.05953", + "longitude_deg": "-4.23651", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CR", + "municipality": "Piedrabuena", + "scheduled_service": "no" + }, + { + "id": "331832", + "ident": "ES-0260", + "type": "heliport", + "name": "Illas Sisargas Heliport", + "latitude_deg": "43.3575972", + "longitude_deg": "-8.8440328", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-C", + "municipality": "Mapica", + "scheduled_service": "no" + }, + { + "id": "331923", + "ident": "ES-0261", + "type": "small_airport", + "name": "Sollana Agro Airstrip", + "latitude_deg": "39.270605", + "longitude_deg": "-0.364932", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Sollana", + "scheduled_service": "no" + }, + { + "id": "331924", + "ident": "ES-0262", + "type": "small_airport", + "name": "Base de aviones \"La Cerra\"", + "latitude_deg": "42.521305", + "longitude_deg": "-4.855477", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-VA", + "municipality": "Villanueva de Duero", + "scheduled_service": "no" + }, + { + "id": "331941", + "ident": "ES-0263", + "type": "closed", + "name": "El Barranco", + "latitude_deg": "38.03774", + "longitude_deg": "-3.76585", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GR", + "municipality": "Bailén (Granada)", + "scheduled_service": "no" + }, + { + "id": "331944", + "ident": "ES-0264", + "type": "small_airport", + "name": "Aeródromo Forestal Villaviciosa de Córdoba", + "latitude_deg": "38.05406", + "longitude_deg": "-5.04182", + "elevation_ft": "2067", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "scheduled_service": "no" + }, + { + "id": "332160", + "ident": "ES-0265", + "type": "small_airport", + "name": "Valdemorillo Airstrip", + "latitude_deg": "40.485591", + "longitude_deg": "-4.050783", + "elevation_ft": "2674", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Valdemorillo", + "scheduled_service": "no" + }, + { + "id": "332165", + "ident": "ES-0266", + "type": "small_airport", + "name": "La Font de la Figuera Airstrip", + "latitude_deg": "38.7867833", + "longitude_deg": "-0.8763", + "elevation_ft": "1969", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-Z", + "scheduled_service": "no" + }, + { + "id": "332321", + "ident": "ES-0267", + "type": "small_airport", + "name": "Santa Cruz de la Zarza Airstrip", + "latitude_deg": "39.976746", + "longitude_deg": "-3.197516", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "scheduled_service": "no" + }, + { + "id": "332333", + "ident": "ES-0268", + "type": "small_airport", + "name": "Riola Agro Airstrip", + "latitude_deg": "39.180737", + "longitude_deg": "-0.338459", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Riola", + "scheduled_service": "no" + }, + { + "id": "332462", + "ident": "ES-0269", + "type": "closed", + "name": "Enova Airstrip", + "latitude_deg": "39.03365", + "longitude_deg": "-0.47555", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "scheduled_service": "no" + }, + { + "id": "332469", + "ident": "ES-0270", + "type": "closed", + "name": "Torres Torres Airstrip", + "latitude_deg": "39.730145", + "longitude_deg": "-0.330234", + "elevation_ft": "394", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Estivella", + "scheduled_service": "no" + }, + { + "id": "332577", + "ident": "ES-0271", + "type": "small_airport", + "name": "Terrinches Agro Airstrip", + "latitude_deg": "38.61471", + "longitude_deg": "-2.85748", + "elevation_ft": "3366", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CR", + "municipality": "Terrinches", + "scheduled_service": "no" + }, + { + "id": "333942", + "ident": "ES-0272", + "type": "heliport", + "name": "Blancos del Coscojar Heliport", + "latitude_deg": "40.3216", + "longitude_deg": "-1.056629", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-TE", + "municipality": "Blancos del Coscojar", + "scheduled_service": "no" + }, + { + "id": "334915", + "ident": "ES-0273", + "type": "heliport", + "name": "San Fernando Helicopter Base", + "latitude_deg": "36.441879", + "longitude_deg": "-6.221244", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Cadiz", + "scheduled_service": "no" + }, + { + "id": "334993", + "ident": "ES-0274", + "type": "heliport", + "name": "Alborán Helistrip", + "latitude_deg": "35.93932", + "longitude_deg": "-3.03519", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Almería", + "scheduled_service": "no" + }, + { + "id": "336561", + "ident": "ES-0275", + "type": "small_airport", + "name": "Base de Helicópteros de Toén", + "latitude_deg": "42.265853", + "longitude_deg": "-7.944971", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-OR", + "municipality": "Trelle", + "scheduled_service": "no" + }, + { + "id": "337036", + "ident": "ES-0276", + "type": "small_airport", + "name": "La Cuesta Airfield (U.C.)", + "latitude_deg": "38.53092", + "longitude_deg": "-2.832511", + "elevation_ft": "2736", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "La Cuesta", + "scheduled_service": "no", + "gps_code": "LEDC" + }, + { + "id": "337380", + "ident": "ES-0277", + "type": "heliport", + "name": "Mofeta Helicopter Base", + "latitude_deg": "36.34737", + "longitude_deg": "-5.65463", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "scheduled_service": "no" + }, + { + "id": "337483", + "ident": "ES-0278", + "type": "small_airport", + "name": "Santa Eulària des Riu Airfield", + "latitude_deg": "38.990453", + "longitude_deg": "1.503496", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-IB", + "municipality": "Santa Eulària des Riu", + "scheduled_service": "no" + }, + { + "id": "340403", + "ident": "ES-0279", + "type": "heliport", + "name": "Formentera Heliport", + "latitude_deg": "38.707918", + "longitude_deg": "1.435214", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-IB", + "municipality": "Sant Francesc Xavier", + "scheduled_service": "no" + }, + { + "id": "340404", + "ident": "ES-0280", + "type": "heliport", + "name": "Isla de Tarifa Heliport", + "latitude_deg": "36.002875", + "longitude_deg": "-5.611176", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Tarifa", + "scheduled_service": "no" + }, + { + "id": "341521", + "ident": "ES-0281", + "type": "heliport", + "name": "A Coruña Fire Station Heliport", + "latitude_deg": "43.45399", + "longitude_deg": "-7.85429", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GA", + "municipality": "A Coruña", + "scheduled_service": "no" + }, + { + "id": "341987", + "ident": "ES-0282", + "type": "heliport", + "name": "Casas de Juan Núñez Heliport", + "latitude_deg": "39.1103", + "longitude_deg": "-1.5578", + "elevation_ft": "2291", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AB", + "municipality": "Casas de Juan Núñez", + "scheduled_service": "no", + "local_code": "CJN", + "keywords": "CM-CJN" + }, + { + "id": "341988", + "ident": "ES-0283", + "type": "heliport", + "name": "Montealegre del Castillo Heliport", + "latitude_deg": "38.7994", + "longitude_deg": "-1.3131", + "elevation_ft": "2663", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AB", + "municipality": "Montealegre del Castillo", + "scheduled_service": "no", + "local_code": "MAC", + "keywords": "CM-MAC" + }, + { + "id": "341989", + "ident": "ES-0284", + "type": "heliport", + "name": "La Roda Sescam Heliport", + "latitude_deg": "39.1907", + "longitude_deg": "-2.1486", + "elevation_ft": "2306", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AB", + "municipality": "La Roda", + "scheduled_service": "no" + }, + { + "id": "341990", + "ident": "ES-0285", + "type": "heliport", + "name": "Albacete University Hospital (FATO) Heliport", + "latitude_deg": "38.9823", + "longitude_deg": "-1.8444", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AB", + "municipality": "Albacete", + "scheduled_service": "no", + "local_code": "UAB", + "keywords": "CM-UAB" + }, + { + "id": "341991", + "ident": "ES-0286", + "type": "heliport", + "name": "Casas de Lázaro Heliport", + "latitude_deg": "38.7748", + "longitude_deg": "-2.2432", + "elevation_ft": "3087", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AB", + "municipality": "Casas de Lázaro", + "scheduled_service": "no", + "local_code": "CDL", + "keywords": "CM-CDL" + }, + { + "id": "342014", + "ident": "ES-0287", + "type": "heliport", + "name": "Los Santos de la Humosa Helipad", + "latitude_deg": "40.5072", + "longitude_deg": "-3.2526", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Los Santos de la Humosa", + "scheduled_service": "no" + }, + { + "id": "342015", + "ident": "ES-0288", + "type": "heliport", + "name": "Serracines Heliport", + "latitude_deg": "40.623", + "longitude_deg": "-3.3973", + "elevation_ft": "2277", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Serracines", + "scheduled_service": "no" + }, + { + "id": "342016", + "ident": "ES-0289", + "type": "heliport", + "name": "Ribatejada Heliport", + "latitude_deg": "40.6658", + "longitude_deg": "-3.3907", + "elevation_ft": "2480", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Ribatejada", + "scheduled_service": "no" + }, + { + "id": "342017", + "ident": "ES-0290", + "type": "heliport", + "name": "Guadalajara Heliport", + "latitude_deg": "40.6578", + "longitude_deg": "-3.1731", + "elevation_ft": "2100", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GU", + "municipality": "Guadalajara", + "scheduled_service": "no" + }, + { + "id": "342022", + "ident": "ES-0291", + "type": "heliport", + "name": "Las Rozas Firefighting Heliport", + "latitude_deg": "40.5204", + "longitude_deg": "-3.8829", + "elevation_ft": "2402", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Las Rozas de Madrid", + "scheduled_service": "no" + }, + { + "id": "342666", + "ident": "ES-0292", + "type": "heliport", + "name": "Helipuerto de Segovia", + "latitude_deg": "40.923444", + "longitude_deg": "-4.173464", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-SG", + "scheduled_service": "no" + }, + { + "id": "342862", + "ident": "ES-0293", + "type": "heliport", + "name": "Cartagena Helicopter Base", + "latitude_deg": "37.697502", + "longitude_deg": "-0.842058", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-MU", + "scheduled_service": "no" + }, + { + "id": "343207", + "ident": "ES-0294", + "type": "small_airport", + "name": "Portocristo Airstrip", + "latitude_deg": "39.55833", + "longitude_deg": "3.32024", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-IB", + "municipality": "Manacor", + "scheduled_service": "no" + }, + { + "id": "343208", + "ident": "ES-0295", + "type": "small_airport", + "name": "Beas Airstrip", + "latitude_deg": "37.41816", + "longitude_deg": "-6.76054", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "scheduled_service": "no" + }, + { + "id": "343803", + "ident": "ES-0296", + "type": "small_airport", + "name": "Aerodromo de Sevares", + "latitude_deg": "43.36372", + "longitude_deg": "-5.24199", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-O", + "municipality": "Piloña", + "scheduled_service": "no" + }, + { + "id": "349290", + "ident": "ES-0297", + "type": "heliport", + "name": "La Línea de la Concepción District Hospital Heliport", + "latitude_deg": "36.17512", + "longitude_deg": "-5.35255", + "elevation_ft": "40", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CA", + "municipality": "La Línea de la Concepción", + "scheduled_service": "no" + }, + { + "id": "349291", + "ident": "ES-0298", + "type": "heliport", + "name": "Punta de Europa Hospital Heliport", + "latitude_deg": "36.11066", + "longitude_deg": "-5.44163", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CA", + "municipality": "Algeciras", + "scheduled_service": "no" + }, + { + "id": "349292", + "ident": "ES-0299", + "type": "heliport", + "name": "Algeciras Caravan Park Helipad", + "latitude_deg": "36.13568", + "longitude_deg": "-5.44475", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CA", + "municipality": "Algeciras", + "scheduled_service": "no" + }, + { + "id": "349441", + "ident": "ES-0300", + "type": "heliport", + "name": "Ronda Helicopter Base", + "latitude_deg": "36.76178", + "longitude_deg": "-5.17335", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "scheduled_service": "no" + }, + { + "id": "350740", + "ident": "ES-0301", + "type": "small_airport", + "name": "Ondara Airstrip", + "latitude_deg": "38.810743", + "longitude_deg": "0.002661", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Ondara", + "scheduled_service": "no" + }, + { + "id": "355230", + "ident": "ES-0302", + "type": "heliport", + "name": "Base Naval de Rota Heliport", + "latitude_deg": "36.639673", + "longitude_deg": "-6.329609", + "elevation_ft": "23", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CA", + "municipality": "Cadiz", + "scheduled_service": "no" + }, + { + "id": "355318", + "ident": "ES-0303", + "type": "heliport", + "name": "Parc Taulí Heliport", + "latitude_deg": "41.55803", + "longitude_deg": "2.10875", + "elevation_ft": "649", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-B", + "municipality": "Sabadell", + "scheduled_service": "no" + }, + { + "id": "355319", + "ident": "ES-0304", + "type": "heliport", + "name": "Pulpí Helipad", + "latitude_deg": "37.401077", + "longitude_deg": "-1.746113", + "elevation_ft": "616", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AL", + "municipality": "Pulpí", + "scheduled_service": "no" + }, + { + "id": "355320", + "ident": "ES-0305", + "type": "heliport", + "name": "Vilaller Heliport", + "latitude_deg": "42.47221", + "longitude_deg": "0.71262", + "elevation_ft": "3172", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-L", + "municipality": "Vilaller", + "scheduled_service": "no" + }, + { + "id": "355321", + "ident": "ES-0306", + "type": "heliport", + "name": "Vielha Heliport", + "latitude_deg": "42.6971", + "longitude_deg": "0.80157", + "elevation_ft": "3372", + "continent": "AF", + "iso_country": "ES", + "iso_region": "ES-L", + "municipality": "Carrèr deth Taro", + "scheduled_service": "no", + "gps_code": "LEVH" + }, + { + "id": "355323", + "ident": "ES-0307", + "type": "heliport", + "name": "Los Llanos Helipad", + "latitude_deg": "28.65657", + "longitude_deg": "-17.9159", + "elevation_ft": "1233", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-TF", + "municipality": "38768 Los Llanos", + "scheduled_service": "no" + }, + { + "id": "355325", + "ident": "ES-0308", + "type": "heliport", + "name": "Tejeda Heliport", + "latitude_deg": "27.99362", + "longitude_deg": "-15.60982", + "elevation_ft": "3887", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GC", + "municipality": "35369 Tejeda", + "scheduled_service": "no" + }, + { + "id": "355327", + "ident": "ES-0309", + "type": "heliport", + "name": "Cadalso de los Vidrios Heliport", + "latitude_deg": "40.30569", + "longitude_deg": "-4.44328", + "elevation_ft": "2690", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "28640 Cadalso de los Vidrios", + "scheduled_service": "no" + }, + { + "id": "429745", + "ident": "ES-0310", + "type": "heliport", + "name": "Mateu Órfila Hospital Heliport", + "latitude_deg": "39.88274", + "longitude_deg": "4.25225", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-IB", + "municipality": "Mahón (Maó)", + "scheduled_service": "no" + }, + { + "id": "429746", + "ident": "ES-0311", + "type": "heliport", + "name": "Son Morell Heliport and R/C Field", + "latitude_deg": "40.04684", + "longitude_deg": "3.86701", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-IB", + "municipality": "Cala Morell", + "scheduled_service": "no" + }, + { + "id": "429747", + "ident": "ES-0312", + "type": "heliport", + "name": "Esporles Private Helipad", + "latitude_deg": "39.67124", + "longitude_deg": "2.55311", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-IB", + "municipality": "Esporles", + "scheduled_service": "no" + }, + { + "id": "429748", + "ident": "ES-0313", + "type": "heliport", + "name": "Son Espases Heliport", + "latitude_deg": "39.6093", + "longitude_deg": "2.64565", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-IB", + "municipality": "Palma de Mallorca", + "scheduled_service": "no" + }, + { + "id": "429749", + "ident": "ES-0314", + "type": "heliport", + "name": "Bunyola Private Heliport", + "latitude_deg": "39.65771", + "longitude_deg": "2.72726", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-IB", + "municipality": "Marratxí", + "scheduled_service": "no" + }, + { + "id": "429751", + "ident": "ES-0315", + "type": "heliport", + "name": "Platges de Muro Rescue Heliport", + "latitude_deg": "39.79278", + "longitude_deg": "3.12514", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-IB", + "municipality": "Muro", + "scheduled_service": "no" + }, + { + "id": "429752", + "ident": "ES-0316", + "type": "heliport", + "name": "Xàbia Heliport", + "latitude_deg": "38.77313", + "longitude_deg": "0.17734", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-A", + "municipality": "Xàbia", + "scheduled_service": "no" + }, + { + "id": "429753", + "ident": "ES-0317", + "type": "heliport", + "name": "Montanejos Heliport", + "latitude_deg": "40.06123", + "longitude_deg": "-0.53067", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CS", + "municipality": "Montanejos", + "scheduled_service": "no" + }, + { + "id": "429754", + "ident": "ES-0318", + "type": "heliport", + "name": "Los Calpes Heliport", + "latitude_deg": "40.07269", + "longitude_deg": "-0.58777", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CS", + "municipality": "Los Calpes", + "scheduled_service": "no" + }, + { + "id": "429756", + "ident": "ES-0319", + "type": "heliport", + "name": "Cella Emergency Heliport", + "latitude_deg": "40.45859", + "longitude_deg": "-1.28498", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-TE", + "municipality": "Cella", + "scheduled_service": "no" + }, + { + "id": "429757", + "ident": "ES-0320", + "type": "heliport", + "name": "Santa Eulalia Emergency Heliport", + "latitude_deg": "40.57215", + "longitude_deg": "-1.32151", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-TE", + "municipality": "Santa Eulalia", + "scheduled_service": "no" + }, + { + "id": "429758", + "ident": "ES-0321", + "type": "heliport", + "name": "Utrillas Heliport", + "latitude_deg": "40.80985", + "longitude_deg": "-0.84746", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-TE", + "municipality": "Utrillas", + "scheduled_service": "no" + }, + { + "id": "429759", + "ident": "ES-0322", + "type": "closed", + "name": "Plenas Airfield", + "latitude_deg": "41.10997", + "longitude_deg": "-0.94941", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-Z", + "municipality": "Plenas", + "scheduled_service": "no" + }, + { + "id": "429760", + "ident": "ES-0323", + "type": "heliport", + "name": "Daroca Heliport", + "latitude_deg": "41.13216", + "longitude_deg": "-1.41989", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-Z", + "municipality": "Daroca", + "scheduled_service": "no" + }, + { + "id": "429793", + "ident": "ES-0324", + "type": "heliport", + "name": "Melilla Heliport", + "latitude_deg": "35.3021", + "longitude_deg": "-2.94448", + "continent": "AF", + "iso_country": "ES", + "iso_region": "ES-ML", + "municipality": "Melilla", + "scheduled_service": "no" + }, + { + "id": "429799", + "ident": "ES-0325", + "type": "heliport", + "name": "Morro Jable Heliport", + "latitude_deg": "28.05214", + "longitude_deg": "-14.36124", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CN", + "municipality": "Morro Jable", + "scheduled_service": "no" + }, + { + "id": "430537", + "ident": "ES-0326", + "type": "heliport", + "name": "Coll de Rates Helipad", + "latitude_deg": "38.723737", + "longitude_deg": "-0.061191", + "elevation_ft": "2061", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-A", + "municipality": "Parcent", + "scheduled_service": "no" + }, + { + "id": "430635", + "ident": "ES-0327", + "type": "heliport", + "name": "Grossa Helipad", + "latitude_deg": "39.898227", + "longitude_deg": "0.684122", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Castellon", + "scheduled_service": "no" + }, + { + "id": "430636", + "ident": "ES-0328", + "type": "heliport", + "name": "Cabrera Helipad", + "latitude_deg": "39.142996", + "longitude_deg": "2.937596", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-IB", + "scheduled_service": "no" + }, + { + "id": "430645", + "ident": "ES-0329", + "type": "small_airport", + "name": "Capdepera Aerodrom", + "latitude_deg": "39.692111", + "longitude_deg": "3.406375", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-IB", + "scheduled_service": "no" + }, + { + "id": "430646", + "ident": "ES-0330", + "type": "heliport", + "name": "Punta de l'Avançada Heliport", + "latitude_deg": "39.905053", + "longitude_deg": "3.109839", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-PM", + "municipality": "Pollença", + "scheduled_service": "no" + }, + { + "id": "430647", + "ident": "ES-0331", + "type": "heliport", + "name": "La Graciosa Heliport", + "latitude_deg": "29.229606", + "longitude_deg": "-13.510984", + "continent": "AF", + "iso_country": "ES", + "iso_region": "ES-CN", + "scheduled_service": "no" + }, + { + "id": "2643", + "ident": "ESCF", + "type": "medium_airport", + "name": "Malmen Air Base", + "latitude_deg": "58.40230178833008", + "longitude_deg": "15.525699615478516", + "elevation_ft": "308", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-E", + "municipality": "Linköping", + "scheduled_service": "no", + "gps_code": "ESCF" + }, + { + "id": "2644", + "ident": "ESCK", + "type": "closed", + "name": "Bråvalla Air Base", + "latitude_deg": "58.61090087890625", + "longitude_deg": "16.103599548339844", + "elevation_ft": "90", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-E", + "municipality": "Norrköping", + "scheduled_service": "no", + "gps_code": "ESCK" + }, + { + "id": "2645", + "ident": "ESCM", + "type": "small_airport", + "name": "Uppsala Airport", + "latitude_deg": "59.897300720214844", + "longitude_deg": "17.588600158691406", + "elevation_ft": "68", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-C", + "scheduled_service": "no", + "gps_code": "ESCM", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%84rna" + }, + { + "id": "30439", + "ident": "ESCN", + "type": "closed", + "name": "Stockholm Tullinge Airport", + "latitude_deg": "59.17940139770508", + "longitude_deg": "17.907800674438477", + "elevation_ft": "180", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AB", + "municipality": "Stockholm", + "scheduled_service": "no", + "gps_code": "ESCN" + }, + { + "id": "31020", + "ident": "ESCY", + "type": "closed", + "name": "Nyge Airport", + "latitude_deg": "58.7456016541", + "longitude_deg": "17.0489006042", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-D", + "municipality": "Nyköping", + "scheduled_service": "no", + "gps_code": "ESCY" + }, + { + "id": "2646", + "ident": "ESDF", + "type": "medium_airport", + "name": "Ronneby Airport", + "latitude_deg": "56.266701", + "longitude_deg": "15.265", + "elevation_ft": "191", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-K", + "municipality": "Ronneby", + "scheduled_service": "yes", + "gps_code": "ESDF", + "iata_code": "RNB", + "home_link": "https://www.swedavia.com/ronneby/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ronneby_Airport" + }, + { + "id": "300955", + "ident": "ESEM", + "type": "heliport", + "name": "Lund Hospital Heliport", + "latitude_deg": "55.711812312300005", + "longitude_deg": "13.1986892223", + "elevation_ft": "352", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "municipality": "Lund", + "scheduled_service": "no", + "gps_code": "ESEM" + }, + { + "id": "29311", + "ident": "ESFA", + "type": "small_airport", + "name": "Hässleholm Bokeberg Airfield", + "latitude_deg": "56.134407", + "longitude_deg": "13.875647", + "elevation_ft": "105", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "municipality": "Hässleholm", + "scheduled_service": "no", + "gps_code": "ESFA", + "home_link": "http://www.hlmfk.se" + }, + { + "id": "29312", + "ident": "ESFH", + "type": "closed", + "name": "Hasslosa Air Base", + "latitude_deg": "58.409698486328", + "longitude_deg": "13.26309967041", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Hasslosa", + "scheduled_service": "no", + "gps_code": "ESFH" + }, + { + "id": "29313", + "ident": "ESFI", + "type": "closed", + "name": "Knislinge Air Base", + "latitude_deg": "56.18719863889999", + "longitude_deg": "14.136300087", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "municipality": "Knislinge", + "scheduled_service": "no", + "gps_code": "ESFI" + }, + { + "id": "29314", + "ident": "ESFJ", + "type": "closed", + "name": "Sjöbo Air Base", + "latitude_deg": "55.64899826049805", + "longitude_deg": "13.626099586486816", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "municipality": "Sjöbo", + "scheduled_service": "no", + "gps_code": "ESFJ" + }, + { + "id": "29315", + "ident": "ESFM", + "type": "closed", + "name": "Moholm Air Base", + "latitude_deg": "58.5975", + "longitude_deg": "14.1109", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Moholm", + "scheduled_service": "no", + "gps_code": "ESFM", + "wikipedia_link": "http://sv.wikipedia.org/Moholm-Bällefors_flygbas" + }, + { + "id": "29316", + "ident": "ESFQ", + "type": "closed", + "name": "Kosta Air Base", + "latitude_deg": "56.8445014954", + "longitude_deg": "15.4527997971", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-G", + "municipality": "Kosta", + "scheduled_service": "no", + "gps_code": "ESFQ", + "wikipedia_link": "http://sv.wikipedia.org/wiki/Kosta_flygbas" + }, + { + "id": "2647", + "ident": "ESFR", + "type": "medium_airport", + "name": "Råda Air Base", + "latitude_deg": "58.49810028076172", + "longitude_deg": "13.053199768066406", + "elevation_ft": "230", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Råda", + "scheduled_service": "no", + "gps_code": "ESFR" + }, + { + "id": "29317", + "ident": "ESFS", + "type": "small_airport", + "name": "Sandvik Airport", + "latitude_deg": "57.06809997558594", + "longitude_deg": "16.861299514770508", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-H", + "municipality": "Sandvik", + "scheduled_service": "no", + "gps_code": "ESFS", + "keywords": "Öland" + }, + { + "id": "29318", + "ident": "ESFU", + "type": "closed", + "name": "Urasa Air Base", + "latitude_deg": "56.6814002991", + "longitude_deg": "14.946700096099999", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-G", + "municipality": "Växjö", + "scheduled_service": "no", + "gps_code": "ESFU", + "wikipedia_link": "http://sv.wikipedia.org/wiki/Ur%C3%A5sa_flygbas" + }, + { + "id": "29319", + "ident": "ESFY", + "type": "closed", + "name": "Byholma Air Base", + "latitude_deg": "56.7834014893", + "longitude_deg": "13.6014003754", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-G", + "municipality": "Byholma", + "scheduled_service": "no", + "gps_code": "ESFY", + "wikipedia_link": "http://sv.wikipedia.org/wiki/Byholma_flygbas" + }, + { + "id": "29320", + "ident": "ESGA", + "type": "small_airport", + "name": "Backamo Airport", + "latitude_deg": "58.17720031738281", + "longitude_deg": "11.97350025177002", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Uddevalla", + "scheduled_service": "no", + "gps_code": "ESGA" + }, + { + "id": "29321", + "ident": "ESGC", + "type": "small_airport", + "name": "Ålleberg Airport", + "latitude_deg": "58.134498596191406", + "longitude_deg": "13.60260009765625", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Ålleberg", + "scheduled_service": "no", + "gps_code": "ESGC" + }, + { + "id": "29322", + "ident": "ESGD", + "type": "small_airport", + "name": "Bämmelshed Airport", + "latitude_deg": "58.19179916381836", + "longitude_deg": "13.995699882507324", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Tidaholm", + "scheduled_service": "no", + "gps_code": "ESGD" + }, + { + "id": "29323", + "ident": "ESGE", + "type": "small_airport", + "name": "Borås Airport", + "latitude_deg": "57.695935", + "longitude_deg": "12.845002", + "elevation_ft": "588", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Borås", + "scheduled_service": "no", + "gps_code": "ESGE", + "home_link": "http://www.borasflygplats.se", + "wikipedia_link": "https://sv.wikipedia.org/wiki/Bor%C3%A5s_flygplats", + "keywords": "Viared" + }, + { + "id": "29324", + "ident": "ESGF", + "type": "small_airport", + "name": "Morup Airport", + "latitude_deg": "56.97129821777344", + "longitude_deg": "12.389100074768066", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-N", + "municipality": "Falkenberg", + "scheduled_service": "no", + "gps_code": "ESGF" + }, + { + "id": "2648", + "ident": "ESGG", + "type": "large_airport", + "name": "Gothenburg-Landvetter Airport", + "latitude_deg": "57.662799835205", + "longitude_deg": "12.279800415039", + "elevation_ft": "506", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Gothenburg", + "scheduled_service": "yes", + "gps_code": "ESGG", + "iata_code": "GOT", + "home_link": "https://www.swedavia.com/landvetter/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gothenburg-Landvetter_Airport", + "keywords": "Göteborg-Landvetter" + }, + { + "id": "29325", + "ident": "ESGH", + "type": "small_airport", + "name": "Herrljunga Airport", + "latitude_deg": "58.029300689697266", + "longitude_deg": "13.108200073242188", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Herrljunga", + "scheduled_service": "no", + "gps_code": "ESGH" + }, + { + "id": "29326", + "ident": "ESGI", + "type": "small_airport", + "name": "Alingsås Airfield", + "latitude_deg": "57.948888", + "longitude_deg": "12.575827", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Alingsås", + "scheduled_service": "no", + "gps_code": "ESGI" + }, + { + "id": "2649", + "ident": "ESGJ", + "type": "medium_airport", + "name": "Jönköping Airport", + "latitude_deg": "57.757598876953125", + "longitude_deg": "14.068699836730957", + "elevation_ft": "741", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-F", + "municipality": "Jönköping", + "scheduled_service": "yes", + "gps_code": "ESGJ", + "iata_code": "JKG", + "home_link": "http://www.lfv.se/templates/LFV_AirportStartPage____1672.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/J%C3%B6nk%C3%B6ping_Airport" + }, + { + "id": "2650", + "ident": "ESGK", + "type": "small_airport", + "name": "Falköping Airport", + "latitude_deg": "58.1697998046875", + "longitude_deg": "13.587800025939941", + "elevation_ft": "785", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Falköping", + "scheduled_service": "no", + "gps_code": "ESGK" + }, + { + "id": "2651", + "ident": "ESGL", + "type": "small_airport", + "name": "Lidköping-Hovby Airport", + "latitude_deg": "58.4655", + "longitude_deg": "13.1744", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Lidköping", + "scheduled_service": "no", + "gps_code": "ESGL", + "iata_code": "LDK", + "home_link": "http://www.lidkopingairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lidk%C3%B6ping-Hovby_Airport" + }, + { + "id": "29327", + "ident": "ESGM", + "type": "small_airport", + "name": "Öresten Airport", + "latitude_deg": "57.4453010559082", + "longitude_deg": "12.64900016784668", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Öresten", + "scheduled_service": "no", + "gps_code": "ESGM", + "keywords": "Oreste Airport" + }, + { + "id": "29904", + "ident": "ESGN", + "type": "small_airport", + "name": "Brännebrona Airport", + "latitude_deg": "58.5786018371582", + "longitude_deg": "13.610600471496582", + "elevation_ft": "259", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Götene", + "scheduled_service": "no", + "gps_code": "ESGN" + }, + { + "id": "30522", + "ident": "ESGO", + "type": "small_airport", + "name": "Vårgårda Airport", + "latitude_deg": "58.039398193359375", + "longitude_deg": "12.788900375366211", + "elevation_ft": "328", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Vårgårda", + "scheduled_service": "no", + "gps_code": "ESGO" + }, + { + "id": "2652", + "ident": "ESGP", + "type": "medium_airport", + "name": "Gothenburg City Airport", + "latitude_deg": "57.7747", + "longitude_deg": "11.8704", + "elevation_ft": "59", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Gothenburg", + "scheduled_service": "no", + "gps_code": "ESGP", + "iata_code": "GSE", + "home_link": "https://www.saveflygplats.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gothenburg_City_Airport", + "keywords": "Säve Airport, Göteborg City Airport" + }, + { + "id": "2653", + "ident": "ESGR", + "type": "medium_airport", + "name": "Skövde Airport", + "latitude_deg": "58.45640182495117", + "longitude_deg": "13.972700119018555", + "elevation_ft": "324", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Skövde", + "scheduled_service": "no", + "gps_code": "ESGR", + "iata_code": "KVB" + }, + { + "id": "29328", + "ident": "ESGS", + "type": "small_airport", + "name": "Näsinge Airport", + "latitude_deg": "59.0167999268", + "longitude_deg": "11.3437004089", + "elevation_ft": "115", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Strömstad", + "scheduled_service": "no", + "gps_code": "ESGS" + }, + { + "id": "2654", + "ident": "ESGT", + "type": "medium_airport", + "name": "Trollhättan-Vänersborg Airport", + "latitude_deg": "58.31809997558594", + "longitude_deg": "12.345000267028809", + "elevation_ft": "137", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Trollhättan", + "scheduled_service": "yes", + "gps_code": "ESGT", + "iata_code": "THN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trollh%C3%A4ttan-V%C3%A4nersborg_Airport" + }, + { + "id": "29329", + "ident": "ESGU", + "type": "small_airport", + "name": "Rörkärr Airport", + "latitude_deg": "58.36759948730469", + "longitude_deg": "11.775400161743164", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Uddevalla", + "scheduled_service": "no", + "gps_code": "ESGU" + }, + { + "id": "29330", + "ident": "ESGV", + "type": "small_airport", + "name": "Varberg Getterön airfield", + "latitude_deg": "57.1245994568", + "longitude_deg": "12.228300094600002", + "elevation_ft": "5", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-N", + "municipality": "Varberg", + "scheduled_service": "no", + "gps_code": "ESGV" + }, + { + "id": "29331", + "ident": "ESGY", + "type": "small_airport", + "name": "Säffle Airport", + "latitude_deg": "59.09120178222656", + "longitude_deg": "12.958600044250488", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-S", + "municipality": "Säffle", + "scheduled_service": "no", + "gps_code": "ESGY" + }, + { + "id": "355418", + "ident": "ESHB", + "type": "heliport", + "name": "SU Östra Hospital Helipad", + "latitude_deg": "57.72097", + "longitude_deg": "12.04779", + "elevation_ft": "134", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Gothenburg", + "scheduled_service": "no", + "gps_code": "ESHB" + }, + { + "id": "2655", + "ident": "ESIA", + "type": "small_airport", + "name": "Karlsborg Air Base", + "latitude_deg": "58.51380157470703", + "longitude_deg": "14.507100105285645", + "elevation_ft": "308", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Karlsborg", + "scheduled_service": "no", + "gps_code": "ESIA" + }, + { + "id": "2656", + "ident": "ESIB", + "type": "medium_airport", + "name": "Såtenäs Air Base", + "latitude_deg": "58.42639923095703", + "longitude_deg": "12.714400291442871", + "elevation_ft": "181", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Såtenäs", + "scheduled_service": "no", + "gps_code": "ESIB" + }, + { + "id": "29332", + "ident": "ESKA", + "type": "small_airport", + "name": "Gimo Air Base", + "latitude_deg": "60.1328010559082", + "longitude_deg": "18.104900360107422", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-C", + "municipality": "Gimo", + "scheduled_service": "no", + "gps_code": "ESKA" + }, + { + "id": "2657", + "ident": "ESKB", + "type": "closed", + "name": "Barkarby Airport", + "latitude_deg": "59.4144743644", + "longitude_deg": "17.8821372986", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AB", + "municipality": "Stockholm", + "scheduled_service": "no", + "gps_code": "ESKB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barkarby_Airport" + }, + { + "id": "29333", + "ident": "ESKC", + "type": "small_airport", + "name": "Sundbro Airport", + "latitude_deg": "59.922698974609375", + "longitude_deg": "17.536800384521484", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-C", + "scheduled_service": "no", + "gps_code": "ESKC" + }, + { + "id": "29334", + "ident": "ESKD", + "type": "small_airport", + "name": "Dala Järna Airport", + "latitude_deg": "60.55609893798828", + "longitude_deg": "14.377099990844727", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-W", + "municipality": "Dala Järna", + "scheduled_service": "no", + "gps_code": "ESKD" + }, + { + "id": "29335", + "ident": "ESKG", + "type": "small_airport", + "name": "Gryttjom Airport", + "latitude_deg": "60.2869987487793", + "longitude_deg": "17.42169952392578", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-C", + "municipality": "Gryttjom", + "scheduled_service": "no", + "gps_code": "ESKG" + }, + { + "id": "29336", + "ident": "ESKH", + "type": "small_airport", + "name": "Ekshärad Airport", + "latitude_deg": "60.15480041503906", + "longitude_deg": "13.528599739074707", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-S", + "municipality": "Ekshärad", + "scheduled_service": "no", + "gps_code": "ESKH" + }, + { + "id": "2658", + "ident": "ESKK", + "type": "medium_airport", + "name": "Karlskoga Airport", + "latitude_deg": "59.34590148925781", + "longitude_deg": "14.49590015411377", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-T", + "scheduled_service": "no", + "gps_code": "ESKK", + "iata_code": "KSK" + }, + { + "id": "2659", + "ident": "ESKM", + "type": "medium_airport", + "name": "Mora Airport", + "latitude_deg": "60.957901", + "longitude_deg": "14.5114", + "elevation_ft": "634", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-W", + "municipality": "Mora", + "scheduled_service": "yes", + "gps_code": "ESKM", + "iata_code": "MXX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mora-Siljan_Airport" + }, + { + "id": "2660", + "ident": "ESKN", + "type": "medium_airport", + "name": "Stockholm Skavsta Airport", + "latitude_deg": "58.788601", + "longitude_deg": "16.912201", + "elevation_ft": "140", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-D", + "municipality": "Nyköping", + "scheduled_service": "yes", + "gps_code": "ESKN", + "iata_code": "NYO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stockholm-Skavsta_Airport" + }, + { + "id": "29337", + "ident": "ESKO", + "type": "small_airport", + "name": "Munkfors Airport", + "latitude_deg": "59.79880142211914", + "longitude_deg": "13.490699768066406", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-S", + "municipality": "Munkfors", + "scheduled_service": "no", + "gps_code": "ESKO" + }, + { + "id": "316498", + "ident": "ESKS", + "type": "medium_airport", + "name": "Scandinavian Mountains Airport", + "latitude_deg": "61.158393", + "longitude_deg": "12.842503", + "elevation_ft": "1608", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-W", + "municipality": "Sälen / Trysil", + "scheduled_service": "yes", + "gps_code": "ESKS", + "iata_code": "SCR", + "home_link": "https://scandinavianmountains.se/en/home/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Scandinavian_Mountains_Airport", + "keywords": "Sälens Flygplats" + }, + { + "id": "29339", + "ident": "ESKT", + "type": "closed", + "name": "Tierp Air Base", + "latitude_deg": "60.345001220703", + "longitude_deg": "17.421899795532", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-C", + "municipality": "Tierp", + "scheduled_service": "no", + "gps_code": "ESKT" + }, + { + "id": "29340", + "ident": "ESKU", + "type": "small_airport", + "name": "Sunne Airport", + "latitude_deg": "59.860198974609375", + "longitude_deg": "13.112899780273438", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-S", + "scheduled_service": "no", + "gps_code": "ESKU" + }, + { + "id": "2661", + "ident": "ESKV", + "type": "small_airport", + "name": "Arvika Airport", + "latitude_deg": "59.6759", + "longitude_deg": "12.6394", + "elevation_ft": "237", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-S", + "municipality": "Arvika", + "scheduled_service": "no", + "gps_code": "ESKV", + "home_link": "https://www.arvikaflygklubb.se" + }, + { + "id": "29341", + "ident": "ESKX", + "type": "medium_airport", + "name": "Björkvik Air Base", + "latitude_deg": "58.79079818725586", + "longitude_deg": "16.571199417114258", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-D", + "municipality": "Björkvik", + "scheduled_service": "no", + "gps_code": "ESKX" + }, + { + "id": "2662", + "ident": "ESMA", + "type": "closed", + "name": "Emmaboda Airfield", + "latitude_deg": "56.610802", + "longitude_deg": "15.6048", + "elevation_ft": "442", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-H", + "municipality": "Emmaboda", + "scheduled_service": "no", + "gps_code": "ESMA" + }, + { + "id": "29342", + "ident": "ESMB", + "type": "small_airport", + "name": "Borglanda Airport", + "latitude_deg": "56.8629989624", + "longitude_deg": "16.6560993195", + "elevation_ft": "118", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-H", + "municipality": "Borglanda", + "scheduled_service": "no", + "gps_code": "ESMB", + "home_link": "http://www.borglanda.se", + "keywords": "Öland" + }, + { + "id": "29343", + "ident": "ESMC", + "type": "small_airport", + "name": "Ränneslätt Airport", + "latitude_deg": "57.670600891099994", + "longitude_deg": "14.9429998398", + "elevation_ft": "720", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-F", + "municipality": "Eksjö", + "scheduled_service": "no", + "gps_code": "ESMC", + "home_link": "http://norrasmalandsfk.se" + }, + { + "id": "29938", + "ident": "ESMD", + "type": "closed", + "name": "Hässleholm Vankivar Airport", + "latitude_deg": "56.18470001220703", + "longitude_deg": "13.750300407409668", + "elevation_ft": "180", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "municipality": "Hässleholm", + "scheduled_service": "no", + "gps_code": "ESMD" + }, + { + "id": "29344", + "ident": "ESME", + "type": "small_airport", + "name": "Eslöv Airport", + "latitude_deg": "55.848300933800004", + "longitude_deg": "13.328300476099999", + "elevation_ft": "296", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "municipality": "Eslöv", + "scheduled_service": "no", + "gps_code": "ESME", + "wikipedia_link": "http://sv.wikipedia.org/wiki/Esl%C3%B6vs_flygplats" + }, + { + "id": "29345", + "ident": "ESMF", + "type": "small_airport", + "name": "Fagerhult Airport", + "latitude_deg": "56.3879013062", + "longitude_deg": "13.4706001282", + "elevation_ft": "378", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "municipality": "Fagerhult", + "scheduled_service": "no", + "gps_code": "ESMF" + }, + { + "id": "2663", + "ident": "ESMG", + "type": "small_airport", + "name": "Feringe Airport", + "latitude_deg": "56.9502983093", + "longitude_deg": "13.921699523900001", + "elevation_ft": "538", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-G", + "municipality": "Ljungby", + "scheduled_service": "no", + "gps_code": "ESMG", + "home_link": "http://www.feringefk.se/" + }, + { + "id": "29346", + "ident": "ESMH", + "type": "small_airport", + "name": "Höganäs Airport", + "latitude_deg": "56.1847991943", + "longitude_deg": "12.576100349399999", + "elevation_ft": "21", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "municipality": "Höganäs", + "scheduled_service": "no", + "gps_code": "ESMH" + }, + { + "id": "29347", + "ident": "ESMI", + "type": "small_airport", + "name": "Sjöbo/Sövde Airport", + "latitude_deg": "55.598201751699996", + "longitude_deg": "13.6746997833", + "elevation_ft": "118", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "municipality": "Sövdeborg", + "scheduled_service": "no", + "gps_code": "ESMI", + "home_link": "http://www.sjoboflyg.se/esmi.php" + }, + { + "id": "29348", + "ident": "ESMJ", + "type": "small_airport", + "name": "Kågeröd Simmelsberga Airport", + "latitude_deg": "55.994701", + "longitude_deg": "13.0509", + "elevation_ft": "276", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "municipality": "Kågeröd", + "scheduled_service": "no", + "gps_code": "ESMJ" + }, + { + "id": "2664", + "ident": "ESMK", + "type": "medium_airport", + "name": "Kristianstad Airport", + "latitude_deg": "55.92169952392578", + "longitude_deg": "14.08549976348877", + "elevation_ft": "76", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "municipality": "Kristianstad", + "scheduled_service": "yes", + "gps_code": "ESMK", + "iata_code": "KID", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kristianstad_Airport" + }, + { + "id": "2665", + "ident": "ESML", + "type": "small_airport", + "name": "Landskrona Airport", + "latitude_deg": "55.945999", + "longitude_deg": "12.87", + "elevation_ft": "194", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "municipality": "Landskrona", + "scheduled_service": "no", + "gps_code": "ESML", + "home_link": "http://landskronaflygklubb.se" + }, + { + "id": "30091", + "ident": "ESMN", + "type": "closed", + "name": "Lund Airport", + "latitude_deg": "55.6843986511", + "longitude_deg": "13.210800170899999", + "elevation_ft": "79", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "municipality": "Lund", + "scheduled_service": "no", + "gps_code": "ESMN", + "home_link": "http://www.lundsflygklubb.se/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lund_Airport", + "keywords": "Hasslanda Airport" + }, + { + "id": "2666", + "ident": "ESMO", + "type": "small_airport", + "name": "Oskarshamn Airport", + "latitude_deg": "57.350498", + "longitude_deg": "16.497999", + "elevation_ft": "96", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-H", + "scheduled_service": "no", + "gps_code": "ESMO", + "iata_code": "OSK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oskarshamn_Airport" + }, + { + "id": "2667", + "ident": "ESMP", + "type": "small_airport", + "name": "Anderstorp Airport", + "latitude_deg": "57.264198303222656", + "longitude_deg": "13.59939956665039", + "elevation_ft": "507", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-F", + "municipality": "Anderstorp", + "scheduled_service": "no", + "gps_code": "ESMP" + }, + { + "id": "2668", + "ident": "ESMQ", + "type": "medium_airport", + "name": "Kalmar Airport", + "latitude_deg": "56.685501", + "longitude_deg": "16.2876", + "elevation_ft": "17", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-H", + "municipality": "Kalmar", + "scheduled_service": "yes", + "gps_code": "ESMQ", + "iata_code": "KLR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kalmar_Airport" + }, + { + "id": "29349", + "ident": "ESMR", + "type": "closed", + "name": "Trelleborg Airport", + "latitude_deg": "55.3833007812", + "longitude_deg": "13.0310001373", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "municipality": "Trelleborg", + "scheduled_service": "no", + "gps_code": "ESMR", + "keywords": "Maglarp Airport" + }, + { + "id": "2669", + "ident": "ESMS", + "type": "medium_airport", + "name": "Malmö Sturup Airport", + "latitude_deg": "55.536305", + "longitude_deg": "13.376198", + "elevation_ft": "236", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "municipality": "Malmö", + "scheduled_service": "yes", + "gps_code": "ESMS", + "iata_code": "MMX", + "home_link": "http://www.swedavia.com/malmo/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Malm%C3%B6_Airport" + }, + { + "id": "2670", + "ident": "ESMT", + "type": "medium_airport", + "name": "Halmstad Airport", + "latitude_deg": "56.69110107421875", + "longitude_deg": "12.820199966430664", + "elevation_ft": "101", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-N", + "municipality": "Halmstad", + "scheduled_service": "yes", + "gps_code": "ESMT", + "iata_code": "HAD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Halmstad_Airport" + }, + { + "id": "29350", + "ident": "ESMU", + "type": "small_airport", + "name": "Möckeln Airport", + "latitude_deg": "56.570701599100005", + "longitude_deg": "14.166500091600001", + "elevation_ft": "480", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-G", + "municipality": "Älmhult", + "scheduled_service": "no", + "gps_code": "ESMU" + }, + { + "id": "2671", + "ident": "ESMV", + "type": "small_airport", + "name": "Hagshult Air Base", + "latitude_deg": "57.292198", + "longitude_deg": "14.1372", + "elevation_ft": "556", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-F", + "scheduled_service": "no", + "gps_code": "ESMV", + "home_link": "http://www.flygklubb.se/medlem/index.cfm?klubb=001&user=999&password=demo", + "wikipedia_link": "https://sv.wikipedia.org/wiki/Hagshult_flygbas" + }, + { + "id": "29351", + "ident": "ESMW", + "type": "closed", + "name": "Tingsryd Airport", + "latitude_deg": "56.53310012817383", + "longitude_deg": "14.964099884033203", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-G", + "municipality": "Tingsryd", + "scheduled_service": "no", + "gps_code": "ESMW" + }, + { + "id": "2672", + "ident": "ESMX", + "type": "medium_airport", + "name": "Växjö Kronoberg Airport", + "latitude_deg": "56.929100036621094", + "longitude_deg": "14.727999687194824", + "elevation_ft": "610", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-G", + "municipality": "Växjö", + "scheduled_service": "yes", + "gps_code": "ESMX", + "iata_code": "VXO", + "wikipedia_link": "https://en.wikipedia.org/wiki/V%C3%A4xj%C3%B6_Airport" + }, + { + "id": "29352", + "ident": "ESMY", + "type": "small_airport", + "name": "Smålandsstenar Smålanda Airport", + "latitude_deg": "57.168598175", + "longitude_deg": "13.440199852", + "elevation_ft": "540", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-F", + "municipality": "Smålandsstenar", + "scheduled_service": "no", + "gps_code": "ESMY" + }, + { + "id": "29353", + "ident": "ESMZ", + "type": "small_airport", + "name": "Ölanda Airport", + "latitude_deg": "57.3282356084", + "longitude_deg": "17.0505237579", + "elevation_ft": "27", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-H", + "municipality": "Ölanda", + "scheduled_service": "no", + "gps_code": "ESMZ", + "home_link": "http://www.ölanda.se/", + "keywords": "Öland" + }, + { + "id": "2673", + "ident": "ESNA", + "type": "small_airport", + "name": "Hallviken Airport", + "latitude_deg": "63.7383", + "longitude_deg": "15.4583", + "elevation_ft": "1119", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Z", + "municipality": "Hallviken", + "scheduled_service": "no", + "gps_code": "ESNA" + }, + { + "id": "29354", + "ident": "ESNB", + "type": "small_airport", + "name": "Sollefteå/Långsele Airport", + "latitude_deg": "63.1712", + "longitude_deg": "16.985201", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Y", + "municipality": "Långsele", + "scheduled_service": "no", + "gps_code": "ESNB" + }, + { + "id": "2674", + "ident": "ESNC", + "type": "small_airport", + "name": "Hedlanda Airport", + "latitude_deg": "62.40890121459999", + "longitude_deg": "13.747200012199999", + "elevation_ft": "1460", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Z", + "municipality": "Hede", + "scheduled_service": "no", + "gps_code": "ESNC", + "wikipedia_link": "http://sv.wikipedia.org/wiki/Hedlanda_flygplats" + }, + { + "id": "2675", + "ident": "ESND", + "type": "medium_airport", + "name": "Sveg Airport", + "latitude_deg": "62.047798", + "longitude_deg": "14.4229", + "elevation_ft": "1178", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Z", + "municipality": "Sveg", + "scheduled_service": "yes", + "gps_code": "ESND", + "iata_code": "EVG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sveg_Airport" + }, + { + "id": "29355", + "ident": "ESNE", + "type": "small_airport", + "name": "Överkalix Airport", + "latitude_deg": "66.52870178222656", + "longitude_deg": "22.350000381469727", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "municipality": "Överkalix", + "scheduled_service": "no", + "gps_code": "ESNE", + "keywords": "Ylikainuu" + }, + { + "id": "29356", + "ident": "ESNF", + "type": "closed", + "name": "Färila Air Base", + "latitude_deg": "61.897998809814", + "longitude_deg": "15.705300331116", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-X", + "municipality": "Färila", + "scheduled_service": "no", + "gps_code": "ESNF" + }, + { + "id": "2676", + "ident": "ESNG", + "type": "medium_airport", + "name": "Gällivare Airport", + "latitude_deg": "67.13240051269531", + "longitude_deg": "20.814599990844727", + "elevation_ft": "1027", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "municipality": "Gällivare", + "scheduled_service": "yes", + "gps_code": "ESNG", + "iata_code": "GEV", + "wikipedia_link": "https://en.wikipedia.org/wiki/G%C3%A4llivare_Airport" + }, + { + "id": "2677", + "ident": "ESNH", + "type": "closed", + "name": "Hudiksvall Airport", + "latitude_deg": "61.7681007385", + "longitude_deg": "17.0806999207", + "elevation_ft": "95", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-X", + "municipality": "Hudiksvall", + "scheduled_service": "no", + "gps_code": "ESNH", + "iata_code": "HUV" + }, + { + "id": "29357", + "ident": "ESNI", + "type": "closed", + "name": "Kubbe Air Base", + "latitude_deg": "63.632499694824", + "longitude_deg": "17.936000823975", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Y", + "municipality": "Kubbe", + "scheduled_service": "no", + "gps_code": "ESNI" + }, + { + "id": "2678", + "ident": "ESNJ", + "type": "small_airport", + "name": "Jokkmokk Airport", + "latitude_deg": "66.49620056152344", + "longitude_deg": "20.147199630737305", + "elevation_ft": "904", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "scheduled_service": "no", + "gps_code": "ESNJ" + }, + { + "id": "2679", + "ident": "ESNK", + "type": "medium_airport", + "name": "Kramfors-Sollefteå Höga Kusten Airport", + "latitude_deg": "63.048599", + "longitude_deg": "17.7689", + "elevation_ft": "34", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Y", + "municipality": "Nyland", + "scheduled_service": "yes", + "gps_code": "ESNK", + "iata_code": "KRF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kramfors_Airport" + }, + { + "id": "2680", + "ident": "ESNL", + "type": "medium_airport", + "name": "Lycksele Airport", + "latitude_deg": "64.548302", + "longitude_deg": "18.7162", + "elevation_ft": "705", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AC", + "municipality": "Lycksele", + "scheduled_service": "yes", + "gps_code": "ESNL", + "iata_code": "LYC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lycksele_Airport" + }, + { + "id": "2681", + "ident": "ESNM", + "type": "small_airport", + "name": "Optand Airport", + "latitude_deg": "63.12860107421875", + "longitude_deg": "14.802800178527832", + "elevation_ft": "1236", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Z", + "scheduled_service": "no", + "gps_code": "ESNM" + }, + { + "id": "2682", + "ident": "ESNN", + "type": "medium_airport", + "name": "Sundsvall-Härnösand Airport", + "latitude_deg": "62.528099060058594", + "longitude_deg": "17.443899154663086", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Y", + "municipality": "Sundsvall/ Härnösand", + "scheduled_service": "yes", + "gps_code": "ESNN", + "iata_code": "SDL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sundsvall-H%C3%A4rn%C3%B6sand_Airport" + }, + { + "id": "2683", + "ident": "ESNO", + "type": "medium_airport", + "name": "Örnsköldsvik Airport", + "latitude_deg": "63.40829849243164", + "longitude_deg": "18.989999771118164", + "elevation_ft": "354", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Y", + "municipality": "Örnsköldsvik", + "scheduled_service": "yes", + "gps_code": "ESNO", + "iata_code": "OER", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%96rnsk%C3%B6ldsvik_Airport" + }, + { + "id": "2684", + "ident": "ESNP", + "type": "small_airport", + "name": "Piteå Airport", + "latitude_deg": "65.39830017089844", + "longitude_deg": "21.260799407958984", + "elevation_ft": "43", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "municipality": "Piteå", + "scheduled_service": "no", + "gps_code": "ESNP" + }, + { + "id": "2685", + "ident": "ESNQ", + "type": "medium_airport", + "name": "Kiruna Airport", + "latitude_deg": "67.821998596191", + "longitude_deg": "20.336799621582", + "elevation_ft": "1508", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "municipality": "Kiruna", + "scheduled_service": "yes", + "gps_code": "ESNQ", + "iata_code": "KRN", + "home_link": "https://www.swedavia.com/kiruna/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kiruna_Airport" + }, + { + "id": "2686", + "ident": "ESNR", + "type": "small_airport", + "name": "Orsa Airport", + "latitude_deg": "61.189998626708984", + "longitude_deg": "14.712599754333496", + "elevation_ft": "683", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-W", + "scheduled_service": "no", + "gps_code": "ESNR" + }, + { + "id": "2687", + "ident": "ESNS", + "type": "medium_airport", + "name": "Skellefteå Airport", + "latitude_deg": "64.62480163574219", + "longitude_deg": "21.076900482177734", + "elevation_ft": "157", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AC", + "municipality": "Skellefteå", + "scheduled_service": "yes", + "gps_code": "ESNS", + "iata_code": "SFT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Skellefte%C3%A5_Airport" + }, + { + "id": "2688", + "ident": "ESNT", + "type": "closed", + "name": "Sättna Airport", + "latitude_deg": "62.4814", + "longitude_deg": "17.002899", + "elevation_ft": "886", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Y", + "scheduled_service": "no", + "gps_code": "ESNT" + }, + { + "id": "2689", + "ident": "ESNU", + "type": "medium_airport", + "name": "Umeå Airport", + "latitude_deg": "63.791801452637", + "longitude_deg": "20.282800674438", + "elevation_ft": "24", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AC", + "municipality": "Umeå", + "scheduled_service": "yes", + "gps_code": "ESNU", + "iata_code": "UME", + "home_link": "https://www.swedavia.com/umea/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ume%C3%A5_Airport" + }, + { + "id": "2690", + "ident": "ESNV", + "type": "medium_airport", + "name": "Vilhelmina South Lapland Airport", + "latitude_deg": "64.579102", + "longitude_deg": "16.833599", + "elevation_ft": "1140", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AC", + "municipality": "Vilhelmina", + "scheduled_service": "yes", + "gps_code": "ESNV", + "iata_code": "VHM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vilhelmina_Airport" + }, + { + "id": "2691", + "ident": "ESNX", + "type": "medium_airport", + "name": "Arvidsjaur Airport", + "latitude_deg": "65.59030151367188", + "longitude_deg": "19.28190040588379", + "elevation_ft": "1245", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "municipality": "Arvidsjaur", + "scheduled_service": "yes", + "gps_code": "ESNX", + "iata_code": "AJR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arvidsjaur_Airport" + }, + { + "id": "2692", + "ident": "ESNY", + "type": "medium_airport", + "name": "Söderhamn Airport", + "latitude_deg": "61.26150131225586", + "longitude_deg": "17.09910011291504", + "elevation_ft": "88", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-X", + "municipality": "Söderhamn", + "scheduled_service": "no", + "gps_code": "ESNY", + "iata_code": "SOO" + }, + { + "id": "29358", + "ident": "ESNZ", + "type": "medium_airport", + "name": "Åre Östersund Airport", + "latitude_deg": "63.194400787354", + "longitude_deg": "14.50030040741", + "elevation_ft": "1233", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Z", + "municipality": "Östersund", + "scheduled_service": "yes", + "gps_code": "ESNZ", + "iata_code": "OSD", + "home_link": "https://www.swedavia.com/ostersund/", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%85re_%C3%96stersund_Airport", + "keywords": "F4 Frösön Air Base, ESPC" + }, + { + "id": "2693", + "ident": "ESOE", + "type": "medium_airport", + "name": "Örebro Airport", + "latitude_deg": "59.22370147705078", + "longitude_deg": "15.038000106811523", + "elevation_ft": "188", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-T", + "municipality": "Örebro", + "scheduled_service": "yes", + "gps_code": "ESOE", + "iata_code": "ORB", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%96rebro_Airport" + }, + { + "id": "2694", + "ident": "ESOH", + "type": "medium_airport", + "name": "Hagfors Airport", + "latitude_deg": "60.0201", + "longitude_deg": "13.5789", + "elevation_ft": "474", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-S", + "municipality": "Råda", + "scheduled_service": "yes", + "gps_code": "ESOH", + "iata_code": "HFS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hagfors_Airport" + }, + { + "id": "2695", + "ident": "ESOK", + "type": "medium_airport", + "name": "Karlstad Airport", + "latitude_deg": "59.444698333699996", + "longitude_deg": "13.337400436400001", + "elevation_ft": "352", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-S", + "municipality": "Karlstad", + "scheduled_service": "yes", + "gps_code": "ESOK", + "iata_code": "KSD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Karlstad_Airport" + }, + { + "id": "29359", + "ident": "ESOL", + "type": "small_airport", + "name": "Lemstanas Airport", + "latitude_deg": "60.58789825439453", + "longitude_deg": "16.58679962158203", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-X", + "municipality": "Storvik", + "scheduled_service": "no", + "gps_code": "ESOL" + }, + { + "id": "2696", + "ident": "ESOW", + "type": "medium_airport", + "name": "Stockholm Västerås Airport", + "latitude_deg": "59.58940124511719", + "longitude_deg": "16.63360023498535", + "elevation_ft": "21", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-U", + "municipality": "Stockholm / Västerås", + "scheduled_service": "yes", + "gps_code": "ESOW", + "iata_code": "VST", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stockholm-V%C3%A4ster%C3%A5s_Airport" + }, + { + "id": "312879", + "ident": "ESP", + "type": "closed", + "name": "Birchwood-Pocono Airport", + "latitude_deg": "41.0643", + "longitude_deg": "-75.2521", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "East Stroudsburg", + "scheduled_service": "no", + "iata_code": "ESP", + "keywords": "ESP, KESP" + }, + { + "id": "2697", + "ident": "ESPA", + "type": "medium_airport", + "name": "Luleå Airport", + "latitude_deg": "65.5438", + "longitude_deg": "22.122", + "elevation_ft": "65", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "municipality": "Luleå", + "scheduled_service": "yes", + "gps_code": "ESPA", + "iata_code": "LLA", + "home_link": "https://www.swedavia.com/lulea/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lule%C3%A5_Airport", + "keywords": "Kallax Air Base" + }, + { + "id": "2699", + "ident": "ESPE", + "type": "small_airport", + "name": "Vidsel Air Base", + "latitude_deg": "65.87529754638672", + "longitude_deg": "20.149900436401367", + "elevation_ft": "597", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "municipality": "Vidsel", + "scheduled_service": "no", + "gps_code": "ESPE" + }, + { + "id": "29360", + "ident": "ESPG", + "type": "closed", + "name": "Boden Army Air Base", + "latitude_deg": "65.810302734375", + "longitude_deg": "21.691299438477", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "municipality": "Boden", + "scheduled_service": "no", + "gps_code": "ESPG" + }, + { + "id": "29361", + "ident": "ESPJ", + "type": "closed", + "name": "Hede Air Base", + "latitude_deg": "65.838302612305", + "longitude_deg": "21.468799591064", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "scheduled_service": "no", + "gps_code": "ESPJ" + }, + { + "id": "2700", + "ident": "ESQO", + "type": "small_airport", + "name": "Arboga Airfield", + "latitude_deg": "59.3866", + "longitude_deg": "15.9241", + "elevation_ft": "33", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-U", + "scheduled_service": "no", + "gps_code": "ESQO" + }, + { + "id": "29362", + "ident": "ESQP", + "type": "heliport", + "name": "Berga Heliport", + "latitude_deg": "59.0702018738", + "longitude_deg": "18.1170005798", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AB", + "municipality": "Berga Naval Base", + "scheduled_service": "no", + "gps_code": "ESQP" + }, + { + "id": "2701", + "ident": "ESSA", + "type": "large_airport", + "name": "Stockholm-Arlanda Airport", + "latitude_deg": "59.651901245117", + "longitude_deg": "17.918600082397", + "elevation_ft": "137", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AB", + "municipality": "Stockholm", + "scheduled_service": "yes", + "gps_code": "ESSA", + "iata_code": "ARN", + "home_link": "http://www.swedavia.se/arlanda/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stockholm-Arlanda_Airport" + }, + { + "id": "2702", + "ident": "ESSB", + "type": "medium_airport", + "name": "Stockholm-Bromma Airport", + "latitude_deg": "59.354400634765625", + "longitude_deg": "17.941699981689453", + "elevation_ft": "47", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AB", + "municipality": "Stockholm", + "scheduled_service": "yes", + "gps_code": "ESSB", + "iata_code": "BMA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stockholm-Bromma_Airport" + }, + { + "id": "29363", + "ident": "ESSC", + "type": "small_airport", + "name": "Ekeby Airfield", + "latitude_deg": "59.3839", + "longitude_deg": "16.4419", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-D", + "municipality": "Eskilstuna", + "scheduled_service": "no", + "gps_code": "ESSC" + }, + { + "id": "2703", + "ident": "ESSD", + "type": "medium_airport", + "name": "Dala Airport", + "latitude_deg": "60.422001", + "longitude_deg": "15.5152", + "elevation_ft": "503", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-W", + "municipality": "Borlange", + "scheduled_service": "yes", + "gps_code": "ESSD", + "iata_code": "BLE", + "home_link": "https://www.dalaflyget.se/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Borl%C3%A4nge_Airport" + }, + { + "id": "29364", + "ident": "ESSE", + "type": "small_airport", + "name": "Skå-Edeby Airport", + "latitude_deg": "59.34510040283203", + "longitude_deg": "17.74049949645996", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AB", + "municipality": "Stockholm", + "scheduled_service": "no", + "gps_code": "ESSE" + }, + { + "id": "2704", + "ident": "ESSF", + "type": "small_airport", + "name": "Hultsfred Airport", + "latitude_deg": "57.525799", + "longitude_deg": "15.8233", + "elevation_ft": "366", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-H", + "scheduled_service": "no", + "gps_code": "ESSF", + "iata_code": "HLF", + "home_link": "http://www.hultsfredairport.se/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hultsfred_Airport" + }, + { + "id": "29365", + "ident": "ESSG", + "type": "small_airport", + "name": "Ludvika Airport", + "latitude_deg": "60.08829879760742", + "longitude_deg": "15.096400260925293", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-W", + "municipality": "Ludvika", + "scheduled_service": "no", + "gps_code": "ESSG" + }, + { + "id": "29366", + "ident": "ESSH", + "type": "small_airport", + "name": "Laxå Airport", + "latitude_deg": "58.97869873046875", + "longitude_deg": "14.666199684143066", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-T", + "municipality": "Laxå", + "scheduled_service": "no", + "gps_code": "ESSH" + }, + { + "id": "29367", + "ident": "ESSI", + "type": "small_airport", + "name": "Visingsö Airport", + "latitude_deg": "58.0984001159668", + "longitude_deg": "14.402600288391113", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-F", + "municipality": "Visingsö", + "scheduled_service": "no", + "gps_code": "ESSI" + }, + { + "id": "2705", + "ident": "ESSK", + "type": "medium_airport", + "name": "Gävle Sandviken Airport", + "latitude_deg": "60.593299865722656", + "longitude_deg": "16.951400756835938", + "elevation_ft": "224", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-X", + "municipality": "Gävle / Sandviken", + "scheduled_service": "no", + "gps_code": "ESSK", + "iata_code": "GVX" + }, + { + "id": "2706", + "ident": "ESSL", + "type": "medium_airport", + "name": "Linköping City Airport", + "latitude_deg": "58.4062004089", + "longitude_deg": "15.680500030500001", + "elevation_ft": "172", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-E", + "municipality": "Linköping", + "scheduled_service": "yes", + "gps_code": "ESSL", + "iata_code": "LPI", + "home_link": "http://www.linkopingsflygplats.se/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Link%C3%B6ping_SAAB_Airport" + }, + { + "id": "29368", + "ident": "ESSM", + "type": "small_airport", + "name": "Brattforshede Airport", + "latitude_deg": "59.6083984375", + "longitude_deg": "13.912300109863281", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-S", + "municipality": "Lindfors", + "scheduled_service": "no", + "gps_code": "ESSM" + }, + { + "id": "30191", + "ident": "ESSN", + "type": "small_airport", + "name": "Norrtälje Airport", + "latitude_deg": "59.7327995300293", + "longitude_deg": "18.696399688720703", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AB", + "municipality": "Norrtälje", + "scheduled_service": "no", + "gps_code": "ESSN" + }, + { + "id": "2707", + "ident": "ESSP", + "type": "medium_airport", + "name": "Norrköping Airport", + "latitude_deg": "58.586299896240234", + "longitude_deg": "16.250600814819336", + "elevation_ft": "32", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-E", + "municipality": "Norrköping", + "scheduled_service": "yes", + "gps_code": "ESSP", + "iata_code": "NRK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Norrk%C3%B6ping_Airport", + "keywords": "Kungsangen" + }, + { + "id": "30015", + "ident": "ESSQ", + "type": "closed", + "name": "Karlstad South Airport", + "latitude_deg": "59.359199523899996", + "longitude_deg": "13.4660997391", + "elevation_ft": "148", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-S", + "municipality": "Karlstad", + "scheduled_service": "no", + "gps_code": "ESSQ" + }, + { + "id": "2708", + "ident": "ESST", + "type": "medium_airport", + "name": "Torsby Airport", + "latitude_deg": "60.1576", + "longitude_deg": "12.9913", + "elevation_ft": "393", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-S", + "municipality": "Torsby", + "scheduled_service": "yes", + "gps_code": "ESST", + "iata_code": "TYF", + "home_link": "http://www.torsbyflygplats.se", + "wikipedia_link": "https://en.wikipedia.org/wiki/Torsby_Airport" + }, + { + "id": "2709", + "ident": "ESSU", + "type": "medium_airport", + "name": "Eskilstuna Airport", + "latitude_deg": "59.35110092163086", + "longitude_deg": "16.70840072631836", + "elevation_ft": "139", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-D", + "municipality": "Eskilstuna", + "scheduled_service": "no", + "gps_code": "ESSU", + "iata_code": "EKT" + }, + { + "id": "2710", + "ident": "ESSV", + "type": "medium_airport", + "name": "Visby Airport", + "latitude_deg": "57.662799835205", + "longitude_deg": "18.346200942993", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-I", + "municipality": "Visby", + "scheduled_service": "yes", + "gps_code": "ESSV", + "iata_code": "VBY", + "home_link": "https://www.swedavia.com/visby/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Visby_Airport" + }, + { + "id": "29369", + "ident": "ESSW", + "type": "small_airport", + "name": "Västervik Airport", + "latitude_deg": "57.779999", + "longitude_deg": "16.5236", + "elevation_ft": "118", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-H", + "municipality": "Västervik", + "scheduled_service": "no", + "gps_code": "ESSW", + "iata_code": "VVK", + "home_link": "http://www.essw.se", + "wikipedia_link": "https://sv.wikipedia.org/wiki/V%C3%A4sterviks_flygplats", + "keywords": "Vastervik,essw,Västervik" + }, + { + "id": "29370", + "ident": "ESSX", + "type": "small_airport", + "name": "Johannisberg Airport", + "latitude_deg": "59.575801849365234", + "longitude_deg": "16.50320053100586", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-U", + "municipality": "Västerås", + "scheduled_service": "no", + "gps_code": "ESSX" + }, + { + "id": "29371", + "ident": "ESSZ", + "type": "small_airport", + "name": "Vängsö Airport", + "latitude_deg": "59.10110092163086", + "longitude_deg": "17.21109962463379", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-D", + "municipality": "Vängsö", + "scheduled_service": "no", + "gps_code": "ESSZ" + }, + { + "id": "2711", + "ident": "ESTA", + "type": "medium_airport", + "name": "Ängelholm-Helsingborg Airport", + "latitude_deg": "56.29610061645508", + "longitude_deg": "12.847100257873535", + "elevation_ft": "68", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "municipality": "Ängelholm", + "scheduled_service": "yes", + "gps_code": "ESTA", + "iata_code": "AGH", + "home_link": "http://www.lfv.se/templates/LFV_AirportStartPage____4777.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%84ngelholm-Helsingborg_Airport", + "keywords": "ESDB, Ängelholm Air Base" + }, + { + "id": "29869", + "ident": "ESTF", + "type": "small_airport", + "name": "Fjällbacka Anra Airport", + "latitude_deg": "58.630008697509766", + "longitude_deg": "11.314458847045898", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Fjällbacka", + "scheduled_service": "no", + "gps_code": "ESTF" + }, + { + "id": "29920", + "ident": "ESTG", + "type": "closed", + "name": "Grönhögen Airport", + "latitude_deg": "56.275002", + "longitude_deg": "16.42", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-H", + "municipality": "Grönhögen", + "scheduled_service": "no", + "gps_code": "ESTG", + "keywords": "Öland" + }, + { + "id": "2712", + "ident": "ESTL", + "type": "medium_airport", + "name": "Ljungbyhed Airport", + "latitude_deg": "56.082801818847656", + "longitude_deg": "13.212499618530273", + "elevation_ft": "140", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "municipality": "Ljungbyhed", + "scheduled_service": "no", + "gps_code": "ESTL" + }, + { + "id": "29372", + "ident": "ESTO", + "type": "closed", + "name": "Tomelilla Airfield", + "latitude_deg": "55.543301", + "longitude_deg": "14.0009", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "municipality": "Tomelilla", + "scheduled_service": "no", + "gps_code": "ESTO" + }, + { + "id": "30525", + "ident": "ESTT", + "type": "small_airport", + "name": "Vellinge Airfield", + "latitude_deg": "55.3912021148", + "longitude_deg": "13.0221033096", + "elevation_ft": "12", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "municipality": "Vellinge", + "scheduled_service": "no", + "gps_code": "ESTT", + "home_link": "http://www.estt.se/front/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vellinge_Airport", + "keywords": "Vellinge/Söderslätt Airfield" + }, + { + "id": "29373", + "ident": "ESUA", + "type": "closed", + "name": "Åmsele Air Base", + "latitude_deg": "64.570602416992", + "longitude_deg": "19.314100265503", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AC", + "municipality": "Åmsele", + "scheduled_service": "no", + "gps_code": "ESUA" + }, + { + "id": "29374", + "ident": "ESUB", + "type": "small_airport", + "name": "Arbrå Airport", + "latitude_deg": "61.51250076293945", + "longitude_deg": "16.372499465942383", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-X", + "municipality": "Arbrå", + "scheduled_service": "no", + "gps_code": "ESUB" + }, + { + "id": "2713", + "ident": "ESUD", + "type": "medium_airport", + "name": "Storuman Airport", + "latitude_deg": "64.960899", + "longitude_deg": "17.6966", + "elevation_ft": "915", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AC", + "municipality": "Storuman", + "scheduled_service": "yes", + "gps_code": "ESUD", + "iata_code": "SQO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Storuman_Airport" + }, + { + "id": "29375", + "ident": "ESUE", + "type": "small_airport", + "name": "Idre Airport", + "latitude_deg": "61.86970138549805", + "longitude_deg": "12.689399719238281", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-W", + "municipality": "Idre", + "scheduled_service": "no", + "gps_code": "ESUE", + "iata_code": "IDB" + }, + { + "id": "29376", + "ident": "ESUF", + "type": "closed", + "name": "Fällfors Air Base", + "latitude_deg": "65.107597351074", + "longitude_deg": "20.761100769043", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AC", + "municipality": "Fällfors", + "scheduled_service": "no", + "gps_code": "ESUF" + }, + { + "id": "29377", + "ident": "ESUG", + "type": "small_airport", + "name": "Gargnäs Airport", + "latitude_deg": "65.3052978515625", + "longitude_deg": "17.975500106811523", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AC", + "municipality": "Gargnäs", + "scheduled_service": "no", + "gps_code": "ESUG" + }, + { + "id": "29378", + "ident": "ESUH", + "type": "small_airport", + "name": "Myran Airport", + "latitude_deg": "62.632469177246094", + "longitude_deg": "17.981700897216797", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Y", + "municipality": "Härnösand", + "scheduled_service": "no", + "gps_code": "ESUH" + }, + { + "id": "30129", + "ident": "ESUI", + "type": "small_airport", + "name": "Mellansel Airport", + "latitude_deg": "63.391806", + "longitude_deg": "18.319471", + "elevation_ft": "269", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Y", + "municipality": "Mellansel", + "scheduled_service": "no", + "gps_code": "ESUI" + }, + { + "id": "29379", + "ident": "ESUJ", + "type": "small_airport", + "name": "Tälje Airport", + "latitude_deg": "62.56529998779297", + "longitude_deg": "15.834699630737305", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Y", + "municipality": "Ånge", + "scheduled_service": "no", + "gps_code": "ESUJ" + }, + { + "id": "2714", + "ident": "ESUK", + "type": "small_airport", + "name": "Kalixfors Airfield", + "latitude_deg": "67.764801", + "longitude_deg": "20.2572", + "elevation_ft": "1549", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "scheduled_service": "no", + "gps_code": "ESUK" + }, + { + "id": "29380", + "ident": "ESUL", + "type": "small_airport", + "name": "Ljusdal Airport", + "latitude_deg": "61.81700134277344", + "longitude_deg": "16.00429916381836", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-X", + "municipality": "Ljusdal", + "scheduled_service": "no", + "gps_code": "ESUL" + }, + { + "id": "29381", + "ident": "ESUM", + "type": "small_airport", + "name": "Mohed Airport", + "latitude_deg": "61.29119873046875", + "longitude_deg": "16.84630012512207", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-X", + "municipality": "Mohed", + "scheduled_service": "no", + "gps_code": "ESUM" + }, + { + "id": "29909", + "ident": "ESUO", + "type": "small_airport", + "name": "Graftavallen Airport", + "latitude_deg": "63.04169845581055", + "longitude_deg": "14.001399993896484", + "elevation_ft": "1640", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Z", + "municipality": "Graftavallen", + "scheduled_service": "no", + "gps_code": "ESUO" + }, + { + "id": "2715", + "ident": "ESUP", + "type": "medium_airport", + "name": "Pajala Airport", + "latitude_deg": "67.24559783935547", + "longitude_deg": "23.068899154663086", + "elevation_ft": "542", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "scheduled_service": "no", + "gps_code": "ESUP", + "iata_code": "PJA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pajala_Airport" + }, + { + "id": "29382", + "ident": "ESUR", + "type": "small_airport", + "name": "Ramsele Airfield", + "latitude_deg": "63.490299", + "longitude_deg": "16.4834", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Y", + "municipality": "Sollefteå", + "scheduled_service": "no", + "gps_code": "ESUR" + }, + { + "id": "29383", + "ident": "ESUS", + "type": "small_airport", + "name": "Åsele Airport", + "latitude_deg": "64.155938", + "longitude_deg": "17.285045", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AC", + "municipality": "Åsele", + "scheduled_service": "no", + "gps_code": "ESUS" + }, + { + "id": "2716", + "ident": "ESUT", + "type": "medium_airport", + "name": "Hemavan Airport", + "latitude_deg": "65.806099", + "longitude_deg": "15.0828", + "elevation_ft": "1503", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AC", + "municipality": "Hemavan", + "scheduled_service": "yes", + "gps_code": "ESUT", + "iata_code": "HMV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hemavan_Airport" + }, + { + "id": "29384", + "ident": "ESUV", + "type": "small_airport", + "name": "Älvsbyn Airport", + "latitude_deg": "65.64569854736328", + "longitude_deg": "21.061100006103516", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "municipality": "Älvsbyn", + "scheduled_service": "no", + "gps_code": "ESUV", + "keywords": "Alvsby" + }, + { + "id": "29385", + "ident": "ESUY", + "type": "small_airport", + "name": "Edsby Flygplats", + "latitude_deg": "61.387001", + "longitude_deg": "15.8334", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-X", + "municipality": "Edsbyn", + "scheduled_service": "no", + "gps_code": "ESUY" + }, + { + "id": "29386", + "ident": "ESVA", + "type": "small_airport", + "name": "Avesta Airport", + "latitude_deg": "60.18040084838867", + "longitude_deg": "16.122800827026367", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-W", + "municipality": "Avesta", + "scheduled_service": "no", + "gps_code": "ESVA" + }, + { + "id": "29739", + "ident": "ESVB", + "type": "small_airport", + "name": "Bunge Private Airport", + "latitude_deg": "57.849700927734375", + "longitude_deg": "19.03499984741211", + "elevation_ft": "69", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-I", + "municipality": "Bunge", + "scheduled_service": "no", + "gps_code": "ESVB" + }, + { + "id": "29387", + "ident": "ESVG", + "type": "small_airport", + "name": "Gagnef Airport", + "latitude_deg": "60.551700592041016", + "longitude_deg": "15.081600189208984", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-W", + "municipality": "Djurås", + "scheduled_service": "no", + "gps_code": "ESVG" + }, + { + "id": "29388", + "ident": "ESVH", + "type": "small_airport", + "name": "Hällefors Airport", + "latitude_deg": "59.867401123046875", + "longitude_deg": "14.42389965057373", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-T", + "municipality": "Hällefors", + "scheduled_service": "no", + "gps_code": "ESVH" + }, + { + "id": "29389", + "ident": "ESVK", + "type": "small_airport", + "name": "Katrineholm Airfield", + "latitude_deg": "59.022301", + "longitude_deg": "16.220301", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-D", + "municipality": "Katrineholm", + "scheduled_service": "no", + "gps_code": "ESVK" + }, + { + "id": "29390", + "ident": "ESVM", + "type": "small_airport", + "name": "Skinnlanda Airport", + "latitude_deg": "60.65879821777344", + "longitude_deg": "13.72659969329834", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-W", + "municipality": "Malung", + "scheduled_service": "no", + "gps_code": "ESVM" + }, + { + "id": "29391", + "ident": "ESVQ", + "type": "small_airport", + "name": "Köping/Gålby flygfält", + "latitude_deg": "59.5275", + "longitude_deg": "15.9697", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-U", + "municipality": "Köping", + "scheduled_service": "no", + "gps_code": "ESVQ" + }, + { + "id": "29392", + "ident": "ESVS", + "type": "small_airport", + "name": "Siljansnäs Air Park", + "latitude_deg": "60.785099", + "longitude_deg": "14.8272", + "elevation_ft": "611", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-W", + "municipality": "Siljansnäs", + "scheduled_service": "no", + "gps_code": "ESVS", + "home_link": "http://www.siljansnasfk.com", + "wikipedia_link": "http://sv.wikipedia.org/wiki/Siljan_airpark" + }, + { + "id": "313315", + "ident": "ET-0001", + "type": "closed", + "name": "Old Jijiga Airport", + "latitude_deg": "9.3615", + "longitude_deg": "42.7887", + "elevation_ft": "5500", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-SO", + "municipality": "Jijiga", + "scheduled_service": "no", + "keywords": "JIJ" + }, + { + "id": "315283", + "ident": "ET-0002", + "type": "small_airport", + "name": "Kibbish Wells Airport", + "latitude_deg": "5.296", + "longitude_deg": "35.8682", + "elevation_ft": "1403", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-SN", + "municipality": "Kibbish Wells", + "scheduled_service": "no", + "keywords": "Kibish Wells" + }, + { + "id": "319229", + "ident": "ET-0003", + "type": "small_airport", + "name": "Ganada Airport", + "latitude_deg": "5.337166", + "longitude_deg": "37.022991", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-SN", + "scheduled_service": "no" + }, + { + "id": "336999", + "ident": "ET-0004", + "type": "closed", + "name": "(Old) Awasa Airport", + "latitude_deg": "7.066667", + "longitude_deg": "38.490278", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-XSD", + "municipality": "Awasa", + "scheduled_service": "no", + "keywords": "AWA, HALA" + }, + { + "id": "341720", + "ident": "ET-0005", + "type": "heliport", + "name": "African Union Heliport", + "latitude_deg": "8.999475", + "longitude_deg": "38.742503", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-AA", + "municipality": "Addis Ababa", + "scheduled_service": "no" + }, + { + "id": "356141", + "ident": "ET-0006", + "type": "small_airport", + "name": "Bameza - Grand Ethiopian Renaissance Dam Airport", + "latitude_deg": "11.1269", + "longitude_deg": "35.04396", + "elevation_ft": "2047", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-BE", + "municipality": "Bameza", + "scheduled_service": "no" + }, + { + "id": "356228", + "ident": "ET-0007", + "type": "small_airport", + "name": "Dolo Airport", + "latitude_deg": "4.17489", + "longitude_deg": "42.03296", + "elevation_ft": "630", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-SO", + "municipality": "Dolo", + "scheduled_service": "no" + }, + { + "id": "356229", + "ident": "ET-0008", + "type": "small_airport", + "name": "Omorate Airport", + "latitude_deg": "4.80059", + "longitude_deg": "36.12643", + "elevation_ft": "1243", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-SN", + "municipality": "Omorate", + "scheduled_service": "no" + }, + { + "id": "31534", + "ident": "ET-GLC", + "type": "small_airport", + "name": "Geladi Airport", + "latitude_deg": "6.984439849849999", + "longitude_deg": "46.4213981628", + "elevation_ft": "1383", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-SO", + "municipality": "Geladi", + "scheduled_service": "no", + "gps_code": "HAGL", + "iata_code": "GLC" + }, + { + "id": "32294", + "ident": "ET-SHC", + "type": "small_airport", + "name": "Shire Inda Selassie Airport", + "latitude_deg": "14.075699", + "longitude_deg": "38.273592", + "elevation_ft": "6207", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-TI", + "municipality": "Shire Inda Selassie", + "scheduled_service": "yes", + "gps_code": "HASC", + "iata_code": "SHC", + "keywords": "Indaselassie, Indasilase" + }, + { + "id": "300112", + "ident": "ET31", + "type": "heliport", + "name": "Sheridan Barracks Landing Area", + "latitude_deg": "47.482778", + "longitude_deg": "11.066944", + "elevation_ft": "2362", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Garmisch-Partenkirchen", + "scheduled_service": "no" + }, + { + "id": "300114", + "ident": "ET39", + "type": "heliport", + "name": "Hohenfels Hospital Army Helipad", + "latitude_deg": "49.224167", + "longitude_deg": "11.834722", + "elevation_ft": "1432", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Hohenfels", + "scheduled_service": "no" + }, + { + "id": "2717", + "ident": "ETAD", + "type": "medium_airport", + "name": "Spangdahlem Air Base", + "latitude_deg": "49.9726982117", + "longitude_deg": "6.69250011444", + "elevation_ft": "1197", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Trier", + "scheduled_service": "no", + "gps_code": "ETAD", + "iata_code": "SPM", + "home_link": "http://www.spangdahlem.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Spangdahlem_Air_Base" + }, + { + "id": "2718", + "ident": "ETAR", + "type": "medium_airport", + "name": "Ramstein Air Base", + "latitude_deg": "49.436901", + "longitude_deg": "7.60028", + "elevation_ft": "776", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Ramstein", + "scheduled_service": "no", + "gps_code": "ETAR", + "iata_code": "RMS", + "home_link": "http://www.ramstein.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ramstein_Air_Base", + "keywords": "Landstuhl Air Base" + }, + { + "id": "314608", + "ident": "ETAS", + "type": "closed", + "name": "Sembach Air Base", + "latitude_deg": "49.507", + "longitude_deg": "7.866", + "elevation_ft": "1050", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Sembach", + "scheduled_service": "no", + "gps_code": "ETAS", + "iata_code": "SEX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sembach_Kaserne" + }, + { + "id": "29393", + "ident": "ETEB", + "type": "heliport", + "name": "Ansbach Army Heliport", + "latitude_deg": "49.30820083618164", + "longitude_deg": "10.638699531555176", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no", + "gps_code": "ETEB" + }, + { + "id": "300113", + "ident": "ETED", + "type": "heliport", + "name": "Kaiserslautern Depot Army Heliport", + "latitude_deg": "49.4477777778", + "longitude_deg": "7.83972222222", + "elevation_ft": "950", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Kaiserslautern", + "scheduled_service": "no", + "gps_code": "ETED" + }, + { + "id": "29394", + "ident": "ETEK", + "type": "small_airport", + "name": "Baumholder Army Air Field", + "latitude_deg": "49.650299072265625", + "longitude_deg": "7.300069808959961", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "scheduled_service": "no", + "gps_code": "ETEK" + }, + { + "id": "29395", + "ident": "ETHA", + "type": "small_airport", + "name": "Altenstadt Army Airfield", + "latitude_deg": "47.8354988098", + "longitude_deg": "10.871199607800001", + "elevation_ft": "2425", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Altenstadt", + "scheduled_service": "no", + "gps_code": "ETHA", + "wikipedia_link": "http://de.wikipedia.org/wiki/Heeresflugplatz_Altenstadt", + "keywords": "Heeresflugplatz Altenstadt" + }, + { + "id": "2721", + "ident": "ETHB", + "type": "medium_airport", + "name": "Bückeburg Air Base", + "latitude_deg": "52.2785", + "longitude_deg": "9.08217", + "elevation_ft": "230", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "scheduled_service": "no", + "gps_code": "ETHB", + "wikipedia_link": "https://en.wikipedia.org/wiki/B%C3%BCckeburg_Air_Base" + }, + { + "id": "2722", + "ident": "ETHC", + "type": "medium_airport", + "name": "Celle Army Airfield", + "latitude_deg": "52.591202", + "longitude_deg": "10.0221", + "elevation_ft": "129", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "scheduled_service": "no", + "gps_code": "ETHC" + }, + { + "id": "2723", + "ident": "ETHE", + "type": "closed", + "name": "Rheine Bentlage Air Base", + "latitude_deg": "52.291199", + "longitude_deg": "7.387", + "elevation_ft": "129", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "scheduled_service": "no", + "gps_code": "ETHE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rheine-Bentlage_Air_Base" + }, + { + "id": "2724", + "ident": "ETHF", + "type": "medium_airport", + "name": "Fritzlar Army Airfield", + "latitude_deg": "51.1146", + "longitude_deg": "9.286", + "elevation_ft": "1345", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Fritzlar", + "scheduled_service": "no", + "gps_code": "ETHF", + "iata_code": "FRZ", + "keywords": "Heeresflugplatz Fritzlar" + }, + { + "id": "29396", + "ident": "ETHH", + "type": "heliport", + "name": "Bonn-Hardthoehe Air Base", + "latitude_deg": "50.6963005066", + "longitude_deg": "7.044330120090001", + "elevation_ft": "522", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "scheduled_service": "no", + "gps_code": "ETHH" + }, + { + "id": "2725", + "ident": "ETHL", + "type": "medium_airport", + "name": "Laupheim Air Base", + "latitude_deg": "48.220299", + "longitude_deg": "9.91002", + "elevation_ft": "1766", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Laupheim", + "scheduled_service": "no", + "gps_code": "ETHL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Laupheim_Air_Base" + }, + { + "id": "2726", + "ident": "ETHM", + "type": "small_airport", + "name": "Mendig Airfield", + "latitude_deg": "50.366001", + "longitude_deg": "7.31533", + "elevation_ft": "597", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "scheduled_service": "no", + "gps_code": "EDRE" + }, + { + "id": "2727", + "ident": "ETHN", + "type": "medium_airport", + "name": "Niederstetten Army Air Base", + "latitude_deg": "49.391945", + "longitude_deg": "9.958889", + "elevation_ft": "1339", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Niederstetten", + "scheduled_service": "no", + "gps_code": "ETHN" + }, + { + "id": "2728", + "ident": "ETHR", + "type": "small_airport", + "name": "Sonderlandeplatz Roth", + "latitude_deg": "49.217499", + "longitude_deg": "11.1002", + "elevation_ft": "1268", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Roth", + "scheduled_service": "no", + "gps_code": "ETSR", + "home_link": "https://bwfsg.de/flugplatz/" + }, + { + "id": "2729", + "ident": "ETHS", + "type": "medium_airport", + "name": "Fassberg Air Base", + "latitude_deg": "52.919399", + "longitude_deg": "10.185827", + "elevation_ft": "245", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "scheduled_service": "no", + "gps_code": "ETHS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fa%C3%9Fberg_Air_Base", + "keywords": "Faßberg" + }, + { + "id": "29398", + "ident": "ETHT", + "type": "closed", + "name": "Cottbus Army Airfield", + "latitude_deg": "51.767899", + "longitude_deg": "14.292", + "elevation_ft": "220", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "scheduled_service": "no", + "gps_code": "ETHT", + "home_link": "http://www.flugplatzmuseumcottbus.de/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cottbus_Air_Base" + }, + { + "id": "2730", + "ident": "ETIC", + "type": "medium_airport", + "name": "Grafenwohr Army Air Field", + "latitude_deg": "49.698699951171875", + "longitude_deg": "11.940199851989746", + "elevation_ft": "1363", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no", + "gps_code": "ETIC" + }, + { + "id": "2731", + "ident": "ETID", + "type": "closed", + "name": "Hanau Army Air Field", + "latitude_deg": "50.169201", + "longitude_deg": "8.96159", + "elevation_ft": "368", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "scheduled_service": "no", + "gps_code": "ETID" + }, + { + "id": "2732", + "ident": "ETIH", + "type": "medium_airport", + "name": "Hohenfels Army Air Field", + "latitude_deg": "49.218101501464844", + "longitude_deg": "11.836099624633789", + "elevation_ft": "1455", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no", + "gps_code": "ETIH" + }, + { + "id": "29972", + "ident": "ETIK", + "type": "heliport", + "name": "Illesheim Air Base", + "latitude_deg": "49.473899841299996", + "longitude_deg": "10.3880996704", + "elevation_ft": "1079", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Storck Barracks", + "scheduled_service": "no", + "gps_code": "ETIK", + "iata_code": "ILH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Storck_Barracks" + }, + { + "id": "2733", + "ident": "ETIN", + "type": "small_airport", + "name": "Flugplatz Kitzingen", + "latitude_deg": "49.743099", + "longitude_deg": "10.2006", + "elevation_ft": "689", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Kitzingen", + "scheduled_service": "no", + "gps_code": "EDGY", + "iata_code": "KZG", + "home_link": "https://www.flugplatz-kitzingen.de/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kitzingen_Airport", + "keywords": "ETIN, EDIN, Kitzingen AAF" + }, + { + "id": "300110", + "ident": "ETIP", + "type": "heliport", + "name": "Landstuhl Army Heliport", + "latitude_deg": "49.4030555556", + "longitude_deg": "7.53611111111", + "elevation_ft": "1176", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Landstuhl", + "scheduled_service": "no", + "gps_code": "ETIP" + }, + { + "id": "300111", + "ident": "ETIY", + "type": "heliport", + "name": "Landstuhl Regional Medical Center Helipad", + "latitude_deg": "49.4025", + "longitude_deg": "7.55861111111", + "elevation_ft": "1136", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "municipality": "Landstuhl", + "scheduled_service": "no", + "gps_code": "ETIY" + }, + { + "id": "308718", + "ident": "ETJB", + "type": "heliport", + "name": "Schonewald CRC Helipad", + "latitude_deg": "53.509955", + "longitude_deg": "13.43567", + "elevation_ft": "271", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Cölpin", + "scheduled_service": "no", + "gps_code": "ETJB" + }, + { + "id": "29400", + "ident": "ETME", + "type": "closed", + "name": "Eggebeck Air Base", + "latitude_deg": "54.624802", + "longitude_deg": "9.346", + "elevation_ft": "65", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "scheduled_service": "no", + "gps_code": "ETME" + }, + { + "id": "2734", + "ident": "ETMN", + "type": "medium_airport", + "name": "Nordholz Naval Airbase", + "latitude_deg": "53.7677001953", + "longitude_deg": "8.658499717709999", + "elevation_ft": "74", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Cuxhaven", + "scheduled_service": "no", + "gps_code": "ETMN", + "iata_code": "FCN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nordholz_Naval_Airbase", + "keywords": "Fliegerhorst Nordholz" + }, + { + "id": "31022", + "ident": "ETNA", + "type": "closed", + "name": "Ahlhorn Air Force Base", + "latitude_deg": "52.882999", + "longitude_deg": "8.233", + "elevation_ft": "162", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Ahlhorn", + "scheduled_service": "no", + "gps_code": "ETNA" + }, + { + "id": "2735", + "ident": "ETND", + "type": "medium_airport", + "name": "Diepholz Air Base", + "latitude_deg": "52.585556", + "longitude_deg": "8.342222", + "elevation_ft": "128", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "municipality": "Diepholz", + "scheduled_service": "no", + "gps_code": "ETND", + "keywords": "Diepholz,Dümmerland" + }, + { + "id": "2736", + "ident": "ETNG", + "type": "medium_airport", + "name": "Geilenkirchen Air Base", + "latitude_deg": "50.9608", + "longitude_deg": "6.04242", + "elevation_ft": "296", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "scheduled_service": "no", + "gps_code": "ETNG", + "iata_code": "GKE" + }, + { + "id": "2737", + "ident": "ETNH", + "type": "medium_airport", + "name": "Hohn Air Base", + "latitude_deg": "54.312199", + "longitude_deg": "9.53817", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "scheduled_service": "no", + "gps_code": "ETNH", + "wikipedia_link": "https://de.wikipedia.org/wiki/Fliegerhorst_Hohn" + }, + { + "id": "2738", + "ident": "ETNJ", + "type": "closed", + "name": "Jever Air Base", + "latitude_deg": "53.533501", + "longitude_deg": "7.88867", + "elevation_ft": "24", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "scheduled_service": "no", + "gps_code": "ETNJ", + "wikipedia_link": "https://de.wikipedia.org/wiki/Flugplatz_Jever" + }, + { + "id": "2739", + "ident": "ETNL", + "type": "medium_airport", + "name": "Rostock-Laage Airport", + "latitude_deg": "53.9182014465", + "longitude_deg": "12.278300285299999", + "elevation_ft": "138", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-MV", + "municipality": "Rostock", + "scheduled_service": "yes", + "gps_code": "ETNL", + "iata_code": "RLG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rostock-Laage_Airport" + }, + { + "id": "2740", + "ident": "ETNN", + "type": "medium_airport", + "name": "Nörvenich Air Base", + "latitude_deg": "50.8312", + "longitude_deg": "6.65817", + "elevation_ft": "386", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "scheduled_service": "no", + "gps_code": "ETNN" + }, + { + "id": "29401", + "ident": "ETNP", + "type": "closed", + "name": "Hopsten Air Base", + "latitude_deg": "52.33869934082031", + "longitude_deg": "7.541329860687256", + "elevation_ft": "423", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Hopsten", + "scheduled_service": "no", + "gps_code": "ETNP", + "keywords": "Airport Dreierwalde" + }, + { + "id": "2741", + "ident": "ETNS", + "type": "medium_airport", + "name": "Schleswig Air Base", + "latitude_deg": "54.459301", + "longitude_deg": "9.51633", + "elevation_ft": "70", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-SH", + "municipality": "Jagel", + "scheduled_service": "no", + "gps_code": "ETNS", + "iata_code": "WBG" + }, + { + "id": "2742", + "ident": "ETNT", + "type": "medium_airport", + "name": "Wittmundhafen Air Base", + "latitude_deg": "53.547798", + "longitude_deg": "7.66733", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "scheduled_service": "no", + "gps_code": "ETNT" + }, + { + "id": "2744", + "ident": "ETNW", + "type": "medium_airport", + "name": "Wunstorf Air Base", + "latitude_deg": "52.457298", + "longitude_deg": "9.42717", + "elevation_ft": "187", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "scheduled_service": "no", + "gps_code": "ETNW" + }, + { + "id": "29402", + "ident": "ETOA", + "type": "heliport", + "name": "Schweinfurt Army Heliport", + "latitude_deg": "50.0471992493", + "longitude_deg": "10.170800209", + "elevation_ft": "738", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "USAG Schweinfurt", + "scheduled_service": "no", + "gps_code": "ETOA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Schweinfurt_Army_Heliport", + "keywords": "ZPW" + }, + { + "id": "2745", + "ident": "ETOI", + "type": "small_airport", + "name": "Vilseck Army Air Field", + "latitude_deg": "49.63359832763672", + "longitude_deg": "11.767200469970703", + "elevation_ft": "1353", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no", + "gps_code": "ETOI" + }, + { + "id": "2746", + "ident": "ETOR", + "type": "closed", + "name": "Coleman Army Air Field", + "latitude_deg": "49.563599", + "longitude_deg": "8.46339", + "elevation_ft": "309", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "scheduled_service": "no", + "gps_code": "ETOR" + }, + { + "id": "2747", + "ident": "ETOU", + "type": "medium_airport", + "name": "Wiesbaden Army Airfield", + "latitude_deg": "50.049800872802734", + "longitude_deg": "8.325400352478027", + "elevation_ft": "461", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HE", + "municipality": "Wiesbaden", + "scheduled_service": "no", + "gps_code": "ETOU", + "iata_code": "WIE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wiesbaden_Army_Airfield" + }, + { + "id": "2748", + "ident": "ETSA", + "type": "closed", + "name": "Landsberg Lech Air Base", + "latitude_deg": "48.070599", + "longitude_deg": "10.906", + "elevation_ft": "2044", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "scheduled_service": "no", + "gps_code": "ETSA" + }, + { + "id": "2749", + "ident": "ETSB", + "type": "medium_airport", + "name": "Büchel Air Base", + "latitude_deg": "50.1738014221", + "longitude_deg": "7.06333017349", + "elevation_ft": "1568", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "scheduled_service": "no", + "gps_code": "ETSB", + "wikipedia_link": "https://en.wikipedia.org/wiki/B%C3%BCchel_Air_Base" + }, + { + "id": "2750", + "ident": "ETSE", + "type": "closed", + "name": "Erding Air Base", + "latitude_deg": "48.3223", + "longitude_deg": "11.9487", + "elevation_ft": "1515", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Erding", + "scheduled_service": "no", + "gps_code": "ETSE", + "wikipedia_link": "https://de.wikipedia.org/wiki/Fliegerhorst_Erding", + "keywords": "Fliegerhorst Erding" + }, + { + "id": "2751", + "ident": "ETSF", + "type": "closed", + "name": "Fürstenfeldbruck Air Base", + "latitude_deg": "48.205555", + "longitude_deg": "11.266944", + "elevation_ft": "1703", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Fürstenfeldbruck", + "scheduled_service": "no", + "gps_code": "ETSF", + "iata_code": "FEL", + "wikipedia_link": "https://en.wikipedia.org/wiki/F%C3%BCrstenfeldbruck_Air_Base" + }, + { + "id": "2752", + "ident": "ETSH", + "type": "medium_airport", + "name": "Holzdorf Air Base", + "latitude_deg": "51.767799", + "longitude_deg": "13.1677", + "elevation_ft": "265", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BR", + "scheduled_service": "no", + "gps_code": "ETSH" + }, + { + "id": "2753", + "ident": "ETSI", + "type": "medium_airport", + "name": "Ingolstadt Manching Airport", + "latitude_deg": "48.7156982421875", + "longitude_deg": "11.534000396728516", + "elevation_ft": "1202", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Manching", + "scheduled_service": "no", + "gps_code": "ETSI", + "iata_code": "IGS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ingolstadt_Manching_Airport" + }, + { + "id": "2754", + "ident": "ETSL", + "type": "medium_airport", + "name": "Lechfeld Air Base", + "latitude_deg": "48.185504", + "longitude_deg": "10.8612", + "elevation_ft": "1822", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Lagerlechfeld", + "scheduled_service": "no", + "gps_code": "ETSL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lechfeld_Air_Base" + }, + { + "id": "2755", + "ident": "ETSN", + "type": "medium_airport", + "name": "Neuburg AFB", + "latitude_deg": "48.710999", + "longitude_deg": "11.2115", + "elevation_ft": "1249", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Neuburg (Donau)", + "scheduled_service": "no", + "gps_code": "ETSN" + }, + { + "id": "331422", + "ident": "ETSP", + "type": "closed", + "name": "Pferdsfeld Air Base", + "latitude_deg": "49.855", + "longitude_deg": "7.603333", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-RP", + "scheduled_service": "no", + "gps_code": "ETSP", + "wikipedia_link": "https://de.wikipedia.org/wiki/Fliegerhorst_Pferdsfeld" + }, + { + "id": "309402", + "ident": "ETT1", + "type": "small_airport", + "name": "Etting-Adelmannsberg Glider Field", + "latitude_deg": "48.81028", + "longitude_deg": "11.42096", + "elevation_ft": "1253", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Ingolstadt", + "scheduled_service": "no", + "home_link": "http://www.aero-club-ingolstadt.de/" + }, + { + "id": "2756", + "ident": "ETUO", + "type": "closed", + "name": "Gütersloh Air Base", + "latitude_deg": "51.922798", + "longitude_deg": "8.30633", + "elevation_ft": "236", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "Gütersloh", + "scheduled_service": "no", + "gps_code": "ETUO", + "iata_code": "GUT", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_G%C3%BCtersloh", + "keywords": "RAF Gütersloh, Princess Royal Barracks Gütersloh" + }, + { + "id": "29404", + "ident": "ETUR", + "type": "closed", + "name": "Brüggen Air Base", + "latitude_deg": "51.199699", + "longitude_deg": "6.13208", + "elevation_ft": "248", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "scheduled_service": "no", + "gps_code": "ETUR", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bruggen" + }, + { + "id": "29405", + "ident": "ETWM", + "type": "small_airport", + "name": "Meppen Air Base", + "latitude_deg": "52.723202", + "longitude_deg": "7.32633", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NI", + "scheduled_service": "no", + "gps_code": "ETWM" + }, + { + "id": "44007", + "ident": "EVAD", + "type": "small_airport", + "name": "Ādaži Airfield", + "latitude_deg": "57.098598", + "longitude_deg": "24.2658", + "elevation_ft": "8", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-011", + "municipality": "Ādaži", + "scheduled_service": "no", + "gps_code": "EVAD", + "home_link": "http://airfield-adazi.lv", + "keywords": "Carnicava Airfield" + }, + { + "id": "308832", + "ident": "EVAH", + "type": "small_airport", + "name": "Langaci-Limbaži Airfield", + "latitude_deg": "57.4849", + "longitude_deg": "24.672126", + "elevation_ft": "211", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-054", + "municipality": "Limbaži", + "scheduled_service": "no", + "gps_code": "EVLI", + "home_link": "http://langaci.wordpress.com/" + }, + { + "id": "308833", + "ident": "EVAP", + "type": "heliport", + "name": "AMO Plant Heliport", + "latitude_deg": "56.6656", + "longitude_deg": "23.7792", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-JEL", + "municipality": "Jelgava", + "scheduled_service": "no", + "gps_code": "EVAP" + }, + { + "id": "44005", + "ident": "EVCA", + "type": "small_airport", + "name": "Cesis \"old\" airfield", + "latitude_deg": "57.32379", + "longitude_deg": "25.323229", + "elevation_ft": "367", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-022", + "municipality": "Cesis", + "scheduled_service": "no" + }, + { + "id": "44006", + "ident": "EVDA", + "type": "medium_airport", + "name": "Daugavpils International Airport", + "latitude_deg": "55.944721", + "longitude_deg": "26.665001", + "elevation_ft": "398", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-111", + "municipality": "Daugavpils", + "scheduled_service": "no", + "gps_code": "EVDA", + "iata_code": "DGP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Daugavpils_International_Airport" + }, + { + "id": "31026", + "ident": "EVEA", + "type": "small_airport", + "name": "Jelgava Airfield", + "latitude_deg": "56.672798", + "longitude_deg": "23.679199", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-JEL", + "municipality": "Jelgava", + "scheduled_service": "no", + "gps_code": "EVEA" + }, + { + "id": "31027", + "ident": "EVFA", + "type": "closed", + "name": "Vaiņode Air Base", + "latitude_deg": "56.405602", + "longitude_deg": "21.8869", + "elevation_ft": "518", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-112", + "municipality": "Vaiņode", + "scheduled_service": "no", + "gps_code": "EVFA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vai%C5%86ode_Air_Base" + }, + { + "id": "31028", + "ident": "EVGA", + "type": "small_airport", + "name": "Lielvarde Air Base", + "latitude_deg": "56.778301", + "longitude_deg": "24.853901", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-067", + "municipality": "Lielvarde", + "scheduled_service": "no", + "gps_code": "EVGA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lielv%C4%81rde_Air_Base" + }, + { + "id": "324015", + "ident": "EVHB", + "type": "heliport", + "name": "Baltijas Helikopters Heliport", + "latitude_deg": "56.607936", + "longitude_deg": "23.458431", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-041", + "municipality": "Nākotne", + "scheduled_service": "no", + "gps_code": "EVHB" + }, + { + "id": "308827", + "ident": "EVIA", + "type": "closed", + "name": "Cīrava Airport", + "latitude_deg": "56.738062", + "longitude_deg": "21.359786", + "elevation_ft": "75", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-112", + "municipality": "Cīrava", + "scheduled_service": "no", + "gps_code": "EVIA" + }, + { + "id": "308829", + "ident": "EVJC", + "type": "heliport", + "name": "Nākotne Centra Jaunzemji Heliport", + "latitude_deg": "56.606284", + "longitude_deg": "23.452138", + "elevation_ft": "46", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-041", + "municipality": "Nākotne", + "scheduled_service": "no", + "gps_code": "EVJC" + }, + { + "id": "31029", + "ident": "EVKA", + "type": "medium_airport", + "name": "Jēkabpils Air Base", + "latitude_deg": "56.534698", + "longitude_deg": "25.8925", + "elevation_ft": "289", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-042", + "municipality": "Jēkabpils", + "scheduled_service": "no", + "gps_code": "EVKA", + "wikipedia_link": "https://en.wikipedia.org/wiki/J%C4%93kabpils_(air_base)", + "keywords": "Yekabpils, Krustpils" + }, + { + "id": "2757", + "ident": "EVLA", + "type": "medium_airport", + "name": "Liepāja International Airport", + "latitude_deg": "56.51750183105469", + "longitude_deg": "21.096900939941406", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-112", + "municipality": "Liepāja", + "scheduled_service": "yes", + "gps_code": "EVLA", + "iata_code": "LPX", + "home_link": "http://www.liepaja-airport.lv/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Liep%C4%81ja_International_Airport" + }, + { + "id": "318286", + "ident": "EVLU", + "type": "heliport", + "name": "Ludza Helipad", + "latitude_deg": "56.521111", + "longitude_deg": "27.694167", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-058", + "municipality": "Ludza", + "scheduled_service": "no", + "gps_code": "EVLU" + }, + { + "id": "324016", + "ident": "EVMA", + "type": "closed", + "name": "Augstkalne Airfield", + "latitude_deg": "56.41318", + "longitude_deg": "23.319409", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-026", + "municipality": "Augstkalne", + "scheduled_service": "no", + "gps_code": "EVMA" + }, + { + "id": "324017", + "ident": "EVNA", + "type": "closed", + "name": "Rēzekne Airfield", + "latitude_deg": "56.556389", + "longitude_deg": "27.212778", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-077", + "municipality": "Rēzekne", + "scheduled_service": "no", + "gps_code": "EVNA" + }, + { + "id": "29971", + "ident": "EVPA", + "type": "small_airport", + "name": "Ikshkile Airfield", + "latitude_deg": "56.814999", + "longitude_deg": "24.5278", + "elevation_ft": "64", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-067", + "municipality": "Ikshkile", + "scheduled_service": "no", + "gps_code": "EVPA" + }, + { + "id": "2758", + "ident": "EVRA", + "type": "large_airport", + "name": "Riga International Airport", + "latitude_deg": "56.923599", + "longitude_deg": "23.9711", + "elevation_ft": "36", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-062", + "municipality": "Riga", + "scheduled_service": "yes", + "gps_code": "EVRA", + "iata_code": "RIX", + "home_link": "http://www.riga-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Riga_International_Airport" + }, + { + "id": "31030", + "ident": "EVRS", + "type": "small_airport", + "name": "Spilve Aerodrome", + "latitude_deg": "56.991100311299995", + "longitude_deg": "24.0750007629", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-RIX", + "municipality": "Riga", + "scheduled_service": "no", + "gps_code": "EVRS", + "home_link": "http://www.spilve.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Spilve_Airport" + }, + { + "id": "317835", + "ident": "EVSM", + "type": "heliport", + "name": "M-Sola Heliport", + "latitude_deg": "56.665556", + "longitude_deg": "24.903056", + "elevation_ft": "141", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-067", + "municipality": "Lielvārde", + "scheduled_service": "no", + "gps_code": "EVSM", + "keywords": "GM Helicopters,Lielvārde" + }, + { + "id": "31031", + "ident": "EVTA", + "type": "medium_airport", + "name": "Jūrmala Airport", + "latitude_deg": "56.9422", + "longitude_deg": "23.2239", + "elevation_ft": "220", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-099", + "municipality": "Tukums", + "scheduled_service": "no", + "gps_code": "EVJA", + "wikipedia_link": "https://en.wikipedia.org/wiki/J%C5%ABrmala_Airport" + }, + { + "id": "46346", + "ident": "EVTE", + "type": "small_airport", + "name": "Talsi Airfield", + "latitude_deg": "57.254398449099995", + "longitude_deg": "22.5662183762", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-097", + "municipality": "Talsi", + "scheduled_service": "no", + "gps_code": "EVTE" + }, + { + "id": "2759", + "ident": "EVVA", + "type": "medium_airport", + "name": "Ventspils International Airport", + "latitude_deg": "57.35779953", + "longitude_deg": "21.5442008972", + "elevation_ft": "19", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-VEN", + "municipality": "Ventspils", + "scheduled_service": "yes", + "gps_code": "EVVA", + "iata_code": "VNT", + "home_link": "http://www.airport.ventspils.lv/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ventspils_International_Airport" + }, + { + "id": "312885", + "ident": "EWY", + "type": "closed", + "name": "RAF Greenham Common", + "latitude_deg": "51.379", + "longitude_deg": "-1.281", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Berkshire", + "scheduled_service": "no", + "gps_code": "EGVI", + "iata_code": "EWY", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Greenham_Common" + }, + { + "id": "17184", + "ident": "EXI", + "type": "seaplane_base", + "name": "Excursion Inlet Seaplane Base", + "latitude_deg": "58.420502", + "longitude_deg": "-135.449005", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Excursion Inlet", + "scheduled_service": "yes", + "iata_code": "EXI", + "local_code": "EXI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Excursion_Inlet_Seaplane_Base" + }, + { + "id": "29658", + "ident": "EYAL", + "type": "small_airport", + "name": "Alytus Airfield", + "latitude_deg": "54.412525", + "longitude_deg": "24.059929", + "elevation_ft": "269", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-AL", + "municipality": "Alytus", + "scheduled_service": "no", + "gps_code": "EYAL" + }, + { + "id": "29708", + "ident": "EYBI", + "type": "small_airport", + "name": "Biržai Airfield", + "latitude_deg": "56.1758", + "longitude_deg": "24.7603", + "elevation_ft": "190", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-PN", + "municipality": "Biržai", + "scheduled_service": "no", + "gps_code": "EYBI" + }, + { + "id": "29829", + "ident": "EYDR", + "type": "small_airport", + "name": "Druskininkai Airfield", + "latitude_deg": "54.015301", + "longitude_deg": "23.9431", + "elevation_ft": "302", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-AL", + "municipality": "Druskininkai", + "scheduled_service": "no", + "gps_code": "EYDR" + }, + { + "id": "315602", + "ident": "EYIG", + "type": "small_airport", + "name": "Ignalina", + "latitude_deg": "55.244167", + "longitude_deg": "26.172222", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-UT", + "scheduled_service": "no", + "gps_code": "EYIG" + }, + { + "id": "43204", + "ident": "EYJB", + "type": "small_airport", + "name": "Jurbarkas Aerodromas", + "latitude_deg": "55.118049621", + "longitude_deg": "22.7648735", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-TA", + "municipality": "Jurbarkas", + "scheduled_service": "no", + "gps_code": "EYJB" + }, + { + "id": "2760", + "ident": "EYKA", + "type": "medium_airport", + "name": "Kaunas International Airport", + "latitude_deg": "54.96390151977539", + "longitude_deg": "24.084800720214844", + "elevation_ft": "256", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-KU", + "municipality": "Kaunas", + "scheduled_service": "yes", + "gps_code": "EYKA", + "iata_code": "KUN", + "home_link": "http://www.kaunasair.lt/index.php?lang=2&m=2&p=210", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kaunas_Airport", + "keywords": "Kauno tarptautinis Oro Uostas" + }, + { + "id": "30020", + "ident": "EYKD", + "type": "medium_airport", + "name": "Kėdainiai Air Base", + "latitude_deg": "55.31169891357422", + "longitude_deg": "23.95639991760254", + "elevation_ft": "171", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-KU", + "municipality": "Kėdainiai", + "scheduled_service": "no", + "gps_code": "EYKD", + "wikipedia_link": "https://en.wikipedia.org/wiki/K%C4%97dainiai_(air_base)", + "keywords": "Kedaynyay" + }, + { + "id": "30018", + "ident": "EYKG", + "type": "closed", + "name": "Kaunas Gamykla Airfield", + "latitude_deg": "54.880001", + "longitude_deg": "23.9072", + "elevation_ft": "249", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-KU", + "municipality": "Kaunas", + "scheduled_service": "no", + "gps_code": "EYKG" + }, + { + "id": "30031", + "ident": "EYKL", + "type": "small_airport", + "name": "Klaipėda Airfield", + "latitude_deg": "55.712021", + "longitude_deg": "21.242892", + "elevation_ft": "59", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-KL", + "municipality": "Klaipėda", + "scheduled_service": "no", + "gps_code": "EYKL", + "home_link": "http://www.airportklaipeda.lt/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Klaip%C4%97da_Airport", + "keywords": "KLJ, Klaipėdos oro uostas" + }, + { + "id": "31033", + "ident": "EYKR", + "type": "closed", + "name": "Kazlų Rūda Air Base", + "latitude_deg": "54.80559921", + "longitude_deg": "23.5331001", + "elevation_ft": "243", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-MR", + "municipality": "Kazlų Rūda", + "scheduled_service": "no", + "gps_code": "EYKR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kazlu_Ruda_airbase" + }, + { + "id": "2761", + "ident": "EYKS", + "type": "small_airport", + "name": "S. Darius and S. Girėnas Airfield", + "latitude_deg": "54.879799", + "longitude_deg": "23.8815", + "elevation_ft": "246", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-KU", + "municipality": "Kaunas", + "scheduled_service": "no", + "gps_code": "EYKS", + "wikipedia_link": "https://en.wikipedia.org/wiki/S._Darius_and_S._Gir%C4%97nas_Airport" + }, + { + "id": "30011", + "ident": "EYKT", + "type": "small_airport", + "name": "Kartena Airfield", + "latitude_deg": "55.9203", + "longitude_deg": "21.5672", + "elevation_ft": "259", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-KL", + "municipality": "Kartena", + "scheduled_service": "no", + "gps_code": "EYKT" + }, + { + "id": "30521", + "ident": "EYLN", + "type": "small_airport", + "name": "Valenčiūnai Airfield", + "latitude_deg": "55.0214", + "longitude_deg": "22.9739", + "elevation_ft": "171", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-MR", + "municipality": "Valenčiūnai", + "scheduled_service": "no", + "gps_code": "EYLN" + }, + { + "id": "30486", + "ident": "EYMA", + "type": "small_airport", + "name": "Tirkšliai Airfield", + "latitude_deg": "56.230598", + "longitude_deg": "22.259399", + "elevation_ft": "259", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-TE", + "municipality": "Tirkšliai / Mažeikiai", + "scheduled_service": "no", + "gps_code": "EYMA" + }, + { + "id": "30397", + "ident": "EYMM", + "type": "small_airport", + "name": "Sasnava Airfield", + "latitude_deg": "54.663101", + "longitude_deg": "23.453899", + "elevation_ft": "240", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-MR", + "municipality": "Sasnava", + "scheduled_service": "no", + "gps_code": "EYMM" + }, + { + "id": "30150", + "ident": "EYMO", + "type": "small_airport", + "name": "Molėtai Airfield", + "latitude_deg": "55.112801", + "longitude_deg": "25.336399", + "elevation_ft": "650", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-UT", + "municipality": "Molėtai", + "scheduled_service": "no", + "gps_code": "EYMO" + }, + { + "id": "29650", + "ident": "EYNA", + "type": "small_airport", + "name": "Akmenė Airfield", + "latitude_deg": "56.242199", + "longitude_deg": "22.733101", + "elevation_ft": "259", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-SA", + "municipality": "Akmenė", + "scheduled_service": "no", + "gps_code": "EYNA" + }, + { + "id": "43205", + "ident": "EYND", + "type": "small_airport", + "name": "Nida Airfield", + "latitude_deg": "55.327778", + "longitude_deg": "21.045834", + "elevation_ft": "6", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-KL", + "municipality": "Nida", + "scheduled_service": "no", + "gps_code": "EYNI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nida_Airfield" + }, + { + "id": "324054", + "ident": "EYNE", + "type": "heliport", + "name": "Nemirseta Heliport", + "latitude_deg": "55.861276", + "longitude_deg": "21.07831", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-KL", + "municipality": "Nemirseta", + "scheduled_service": "no", + "gps_code": "EYNE" + }, + { + "id": "2762", + "ident": "EYPA", + "type": "medium_airport", + "name": "Palanga International Airport", + "latitude_deg": "55.973201751708984", + "longitude_deg": "21.093900680541992", + "elevation_ft": "33", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-KL", + "municipality": "Palanga", + "scheduled_service": "yes", + "gps_code": "EYPA", + "iata_code": "PLQ", + "home_link": "http://www.palanga-airport.lt/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palanga_International_Airport" + }, + { + "id": "331448", + "ident": "EYPH", + "type": "heliport", + "name": "Paluknys Heli Base", + "latitude_deg": "54.486807", + "longitude_deg": "24.997326", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-VL", + "scheduled_service": "no", + "gps_code": "EYPH" + }, + { + "id": "30237", + "ident": "EYPI", + "type": "small_airport", + "name": "Panevėžys Istra Airfield", + "latitude_deg": "55.827499", + "longitude_deg": "24.358299", + "elevation_ft": "171", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-PN", + "municipality": "Panevėžys / Istra", + "scheduled_service": "no", + "gps_code": "EYPI" + }, + { + "id": "30238", + "ident": "EYPN", + "type": "small_airport", + "name": "Panevėžys Airfield", + "latitude_deg": "55.709512", + "longitude_deg": "24.345188", + "elevation_ft": "171", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-PN", + "municipality": "Panevėžys", + "scheduled_service": "no", + "gps_code": "EYPN" + }, + { + "id": "2763", + "ident": "EYPP", + "type": "medium_airport", + "name": "Panevėžys Air Base", + "latitude_deg": "55.729400634765625", + "longitude_deg": "24.460800170898438", + "elevation_ft": "197", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-PN", + "municipality": "Panevėžys", + "scheduled_service": "no", + "gps_code": "EYPP", + "iata_code": "PNV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Panev%C4%97%C5%BEys_Air_Base", + "keywords": "Pajuostis, Tulpė" + }, + { + "id": "30273", + "ident": "EYPR", + "type": "small_airport", + "name": "Pociūnai Airfield", + "latitude_deg": "54.649399", + "longitude_deg": "24.061899", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-KU", + "municipality": "Pociūnai", + "scheduled_service": "no", + "gps_code": "EYPR", + "home_link": "http://www.pociunai.lt/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Poci%C5%ABnai_Airport" + }, + { + "id": "30353", + "ident": "EYRD", + "type": "small_airport", + "name": "Rūdiškės Airfield", + "latitude_deg": "54.495602", + "longitude_deg": "24.717501", + "elevation_ft": "522", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-VL", + "municipality": "Rūdiškės", + "scheduled_service": "no", + "gps_code": "EYRD" + }, + { + "id": "30348", + "ident": "EYRK", + "type": "small_airport", + "name": "Rokiškio aerodromas", + "latitude_deg": "55.971924", + "longitude_deg": "25.604239", + "elevation_ft": "459", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-PN", + "municipality": "Rokiškis", + "scheduled_service": "no", + "gps_code": "EYRK" + }, + { + "id": "30347", + "ident": "EYRO", + "type": "small_airport", + "name": "Rojūnai Airfield", + "latitude_deg": "55.610802", + "longitude_deg": "24.2208", + "elevation_ft": "180", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-PN", + "municipality": "Rojūnai", + "scheduled_service": "no", + "gps_code": "EYRO" + }, + { + "id": "34994", + "ident": "EYRU", + "type": "closed", + "name": "Jonava Air Base", + "latitude_deg": "55.009998", + "longitude_deg": "24.3633", + "elevation_ft": "246", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-KU", + "municipality": "Jonava", + "scheduled_service": "no", + "gps_code": "EYRU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jonava_Airport", + "keywords": "Rukla" + }, + { + "id": "2764", + "ident": "EYSA", + "type": "medium_airport", + "name": "Šiauliai International Airport", + "latitude_deg": "55.89390182495117", + "longitude_deg": "23.395000457763672", + "elevation_ft": "443", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-SA", + "municipality": "Šiauliai", + "scheduled_service": "no", + "gps_code": "EYSA", + "iata_code": "SQQ", + "home_link": "http://www.airport.siauliai.lt/", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C5%A0iauliai_International_Airport", + "keywords": "Zokniai Airport, Zoknių oro uostas" + }, + { + "id": "2765", + "ident": "EYSB", + "type": "medium_airport", + "name": "Barysiai Airfield", + "latitude_deg": "56.070599", + "longitude_deg": "23.5581", + "elevation_ft": "270", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-SA", + "municipality": "Šiauliai", + "scheduled_service": "no", + "gps_code": "EYSB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barysiai_Airport", + "keywords": "HLJ" + }, + { + "id": "30403", + "ident": "EYSE", + "type": "small_airport", + "name": "Šeduva Airfield", + "latitude_deg": "55.746399", + "longitude_deg": "23.804701", + "elevation_ft": "259", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-SA", + "municipality": "Šeduva / Šiauliai", + "scheduled_service": "no", + "gps_code": "EYSE", + "home_link": "http://www.siauliuaeroklubas.lt/" + }, + { + "id": "30415", + "ident": "EYSI", + "type": "small_airport", + "name": "Šilute Air Base", + "latitude_deg": "55.33689880371094", + "longitude_deg": "21.53059959411621", + "elevation_ft": "59", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-KL", + "municipality": "Šilute", + "scheduled_service": "no", + "gps_code": "EYSI" + }, + { + "id": "30479", + "ident": "EYTL", + "type": "small_airport", + "name": "Telšiai Airfield", + "latitude_deg": "55.986401", + "longitude_deg": "22.2878", + "elevation_ft": "410", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-TE", + "municipality": "Telšiai", + "scheduled_service": "no", + "gps_code": "EYTL" + }, + { + "id": "30514", + "ident": "EYUT", + "type": "small_airport", + "name": "Utena Airfield", + "latitude_deg": "55.490002", + "longitude_deg": "25.7169", + "elevation_ft": "620", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-UT", + "municipality": "Utena", + "scheduled_service": "no", + "gps_code": "EYUT" + }, + { + "id": "2766", + "ident": "EYVI", + "type": "large_airport", + "name": "Vilnius International Airport", + "latitude_deg": "54.634102", + "longitude_deg": "25.285801", + "elevation_ft": "648", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-VL", + "municipality": "Vilnius", + "scheduled_service": "yes", + "gps_code": "EYVI", + "iata_code": "VNO", + "home_link": "http://www.vilnius-airport.lt/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vilnius_International_Airport" + }, + { + "id": "30053", + "ident": "EYVK", + "type": "small_airport", + "name": "Kyviškes Airfield", + "latitude_deg": "54.66830062866211", + "longitude_deg": "25.51580047607422", + "elevation_ft": "541", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-VL", + "municipality": "Kyviškes", + "scheduled_service": "no", + "gps_code": "EYVK" + }, + { + "id": "30236", + "ident": "EYVP", + "type": "small_airport", + "name": "Paluknys Airfield", + "latitude_deg": "54.484848", + "longitude_deg": "24.987373", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-VL", + "municipality": "Paluknys", + "scheduled_service": "no", + "gps_code": "EYVP", + "home_link": "http://sklandymas.lt/" + }, + { + "id": "30579", + "ident": "EYZA", + "type": "small_airport", + "name": "Zarasai Airfield", + "latitude_deg": "55.752499", + "longitude_deg": "26.256901", + "elevation_ft": "541", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-UT", + "municipality": "Zarasai", + "scheduled_service": "no", + "gps_code": "EYZA" + }, + { + "id": "17185", + "ident": "F04", + "type": "closed", + "name": "Saginaw Airport", + "latitude_deg": "32.862597", + "longitude_deg": "-97.378098", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "keywords": "F04" + }, + { + "id": "17186", + "ident": "F09", + "type": "small_airport", + "name": "Olustee Municipal Airport", + "latitude_deg": "34.51259994506836", + "longitude_deg": "-99.42949676513672", + "elevation_ft": "1346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Olustee", + "scheduled_service": "no", + "gps_code": "F09", + "local_code": "F09" + }, + { + "id": "17187", + "ident": "F13", + "type": "small_airport", + "name": "Shell Creek Airpark", + "latitude_deg": "26.968900680541992", + "longitude_deg": "-81.91560363769531", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Punta Gorda", + "scheduled_service": "no", + "gps_code": "F13", + "local_code": "F13" + }, + { + "id": "17188", + "ident": "F23", + "type": "small_airport", + "name": "Ranger Municipal Airport", + "latitude_deg": "32.4525985718", + "longitude_deg": "-98.682800293", + "elevation_ft": "1470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ranger", + "scheduled_service": "no", + "gps_code": "F23", + "iata_code": "RGR", + "local_code": "F23" + }, + { + "id": "17189", + "ident": "F25", + "type": "small_airport", + "name": "Brownsville Airpark", + "latitude_deg": "39.4552", + "longitude_deg": "-121.292", + "elevation_ft": "2120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Brownsville", + "scheduled_service": "no", + "gps_code": "2CL1", + "local_code": "2CL1", + "keywords": "Aero Pines, F25" + }, + { + "id": "17190", + "ident": "F50", + "type": "closed", + "name": "Lake Whitney State Park Airport", + "latitude_deg": "31.9252", + "longitude_deg": "-97.3647", + "elevation_ft": "564", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Whitney", + "scheduled_service": "no", + "gps_code": "KF50", + "local_code": "F50" + }, + { + "id": "17191", + "ident": "F57", + "type": "seaplane_base", + "name": "Jack Browns Seaplane Base", + "latitude_deg": "28.0575008392334", + "longitude_deg": "-81.76280212402344", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Winter Haven", + "scheduled_service": "no", + "gps_code": "F57", + "local_code": "F57" + }, + { + "id": "17192", + "ident": "F78", + "type": "small_airport", + "name": "Horseshoe Bend Airport", + "latitude_deg": "32.572898864746094", + "longitude_deg": "-97.87249755859375", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no", + "gps_code": "F78", + "local_code": "F78" + }, + { + "id": "17193", + "ident": "F81", + "type": "closed", + "name": "Okemah Flying Field", + "latitude_deg": "35.43108", + "longitude_deg": "-96.28284", + "elevation_ft": "867", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Okemah", + "scheduled_service": "no", + "keywords": "F81" + }, + { + "id": "17194", + "ident": "F92", + "type": "small_airport", + "name": "Kingfisher Airport", + "latitude_deg": "35.875099182128906", + "longitude_deg": "-97.95249938964844", + "elevation_ft": "1067", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Kingfisher", + "scheduled_service": "no", + "gps_code": "F92", + "local_code": "F92" + }, + { + "id": "17195", + "ident": "F95", + "type": "small_airport", + "name": "Calhoun County Airport", + "latitude_deg": "30.486900329589844", + "longitude_deg": "-85.11399841308594", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Blountstown", + "scheduled_service": "no", + "gps_code": "F95", + "local_code": "F95" + }, + { + "id": "322808", + "ident": "FA00", + "type": "heliport", + "name": "Advent Health Winter Garden ER Heliport", + "latitude_deg": "28.523111", + "longitude_deg": "-81.589028", + "elevation_ft": "127", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Winter Garden", + "scheduled_service": "no", + "gps_code": "FA00", + "local_code": "FA00", + "keywords": "Florida Hospital Winter Garden" + }, + { + "id": "17196", + "ident": "FA01", + "type": "heliport", + "name": "St Joseph Hospital Heliport", + "latitude_deg": "26.993659", + "longitude_deg": "-82.095235", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Port Charlotte", + "scheduled_service": "no", + "gps_code": "FA01", + "local_code": "FA01" + }, + { + "id": "17197", + "ident": "FA03", + "type": "closed", + "name": "Southfork Airport", + "latitude_deg": "27.603901", + "longitude_deg": "-82.192903", + "elevation_ft": "109", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Duette", + "scheduled_service": "no", + "keywords": "FA03" + }, + { + "id": "17198", + "ident": "FA04", + "type": "heliport", + "name": "Mease Hospital Emergency Heliport", + "latitude_deg": "28.01420021057129", + "longitude_deg": "-82.78199768066406", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Dunedin", + "scheduled_service": "no", + "gps_code": "FA04", + "local_code": "FA04" + }, + { + "id": "17199", + "ident": "FA05", + "type": "seaplane_base", + "name": "Holiday Isle Seaplane Base", + "latitude_deg": "24.934900283813477", + "longitude_deg": "-80.60089874267578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Islamorada", + "scheduled_service": "no", + "gps_code": "FA05", + "local_code": "FA05" + }, + { + "id": "17200", + "ident": "FA06", + "type": "heliport", + "name": "Pinellas County Sheriff's Building Heliport", + "latitude_deg": "27.891399383544922", + "longitude_deg": "-82.78929901123047", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Largo", + "scheduled_service": "no", + "gps_code": "FA06", + "local_code": "FA06" + }, + { + "id": "321936", + "ident": "FA07", + "type": "seaplane_base", + "name": "Orlando Seaplane Base", + "latitude_deg": "28.621111", + "longitude_deg": "-81.639167", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "local_code": "FL5", + "keywords": "FA07" + }, + { + "id": "17201", + "ident": "FA08", + "type": "small_airport", + "name": "Orlampa Inc Airport / Fantasy of Flight", + "latitude_deg": "28.166763", + "longitude_deg": "-81.809603", + "elevation_ft": "139", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Polk City", + "scheduled_service": "no", + "gps_code": "FA08", + "local_code": "FA08", + "keywords": "fantasy of flight" + }, + { + "id": "17202", + "ident": "FA09", + "type": "small_airport", + "name": "Arliss M Airport", + "latitude_deg": "29.34079933166504", + "longitude_deg": "-82.26370239257812", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "FA09", + "local_code": "FA09" + }, + { + "id": "17203", + "ident": "FA10", + "type": "closed", + "name": "BSO Public Safety Helistop", + "latitude_deg": "26.124546", + "longitude_deg": "-80.176543", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Lauderdale", + "scheduled_service": "no", + "keywords": "FA10" + }, + { + "id": "17204", + "ident": "FA11", + "type": "small_airport", + "name": "Bird Field", + "latitude_deg": "30.622400283813477", + "longitude_deg": "-83.2593002319336", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jennings", + "scheduled_service": "no", + "gps_code": "FA11", + "local_code": "FA11" + }, + { + "id": "17205", + "ident": "FA12", + "type": "heliport", + "name": "Shands Helistop", + "latitude_deg": "29.63909912109375", + "longitude_deg": "-82.34539794921875", + "elevation_ft": "334", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Gainesville", + "scheduled_service": "no", + "gps_code": "FA12", + "local_code": "FA12" + }, + { + "id": "346974", + "ident": "FA13", + "type": "seaplane_base", + "name": "Treasure Lagoon Seaplane Base", + "latitude_deg": "28.4475", + "longitude_deg": "-80.722361", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Cocoa", + "scheduled_service": "no", + "gps_code": "FA13", + "local_code": "FA13" + }, + { + "id": "17206", + "ident": "FA14", + "type": "heliport", + "name": "Broadway Helicopters Heliport", + "latitude_deg": "30.3976993560791", + "longitude_deg": "-86.59410095214844", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Walton Beach", + "scheduled_service": "no", + "gps_code": "FA14", + "local_code": "FA14" + }, + { + "id": "17207", + "ident": "FA15", + "type": "heliport", + "name": "Hamilton Helistop", + "latitude_deg": "30.523300170898438", + "longitude_deg": "-82.95649719238281", + "elevation_ft": "152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jasper", + "scheduled_service": "no", + "gps_code": "FA15", + "local_code": "FA15" + }, + { + "id": "17208", + "ident": "FA16", + "type": "heliport", + "name": "Jay Hospital Heliport", + "latitude_deg": "30.949899673461914", + "longitude_deg": "-87.15080261230469", + "elevation_ft": "252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jay", + "scheduled_service": "no", + "gps_code": "FA16", + "local_code": "FA16" + }, + { + "id": "17209", + "ident": "FA17", + "type": "seaplane_base", + "name": "Kissimmee Seaplane Base", + "latitude_deg": "28.289441", + "longitude_deg": "-81.404995", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Kissimmee", + "scheduled_service": "no", + "gps_code": "FA17", + "local_code": "FA17" + }, + { + "id": "17210", + "ident": "FA18", + "type": "small_airport", + "name": "Devils Garden Strip", + "latitude_deg": "28.451099395751953", + "longitude_deg": "-81.00029754638672", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "La Belle", + "scheduled_service": "no", + "gps_code": "FA18", + "local_code": "FA18" + }, + { + "id": "17211", + "ident": "FA19", + "type": "heliport", + "name": "Palms West Hospital Helistop", + "latitude_deg": "26.680599212646484", + "longitude_deg": "-80.8405990600586", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Loxahatchee", + "scheduled_service": "no", + "gps_code": "FA19", + "local_code": "FA19" + }, + { + "id": "17212", + "ident": "FA20", + "type": "heliport", + "name": "Post Electric Inc Heliport", + "latitude_deg": "30.20800018310547", + "longitude_deg": "-85.67579650878906", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City", + "scheduled_service": "no", + "gps_code": "FA20", + "local_code": "FA20" + }, + { + "id": "17213", + "ident": "FA21", + "type": "heliport", + "name": "Memorial Hospital West Helistop", + "latitude_deg": "26.014299392700195", + "longitude_deg": "-80.3114013671875", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pembroke Pines", + "scheduled_service": "no", + "gps_code": "FA21", + "local_code": "FA21" + }, + { + "id": "17214", + "ident": "FA22", + "type": "heliport", + "name": "Dove Heliport", + "latitude_deg": "27.33340072631836", + "longitude_deg": "-82.43009948730469", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sarasota", + "scheduled_service": "no", + "gps_code": "FA22", + "local_code": "FA22" + }, + { + "id": "17215", + "ident": "FA23", + "type": "heliport", + "name": "Sarasota Memorial Hospital Heliport", + "latitude_deg": "27.317800521850586", + "longitude_deg": "-82.52980041503906", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sarasota", + "scheduled_service": "no", + "gps_code": "FA23", + "local_code": "FA23" + }, + { + "id": "17216", + "ident": "FA24", + "type": "small_airport", + "name": "Horseshoe Acres Airpark", + "latitude_deg": "27.093299865722656", + "longitude_deg": "-80.61219787597656", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Indiantown", + "scheduled_service": "no", + "gps_code": "FA24", + "local_code": "FA24" + }, + { + "id": "45344", + "ident": "FA25", + "type": "small_airport", + "name": "Black Creek Pass Airport", + "latitude_deg": "30.50095", + "longitude_deg": "-84.0781", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tallahasse", + "scheduled_service": "no", + "gps_code": "FA25", + "local_code": "FA25" + }, + { + "id": "17217", + "ident": "FA26", + "type": "small_airport", + "name": "Dogwood Farm Airport", + "latitude_deg": "30.537200927734375", + "longitude_deg": "-84.45189666748047", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Havana", + "scheduled_service": "no", + "gps_code": "FA26", + "local_code": "FA26" + }, + { + "id": "17218", + "ident": "FA27", + "type": "closed", + "name": "Ellsworth Field", + "latitude_deg": "27.205838", + "longitude_deg": "-81.780617", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Arcadia", + "scheduled_service": "no", + "keywords": "FA27" + }, + { + "id": "17219", + "ident": "FA29", + "type": "small_airport", + "name": "Lumar Field", + "latitude_deg": "30.130800247192383", + "longitude_deg": "-83.54940032958984", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Perry", + "scheduled_service": "no", + "gps_code": "FA29", + "local_code": "FA29" + }, + { + "id": "17220", + "ident": "FA30", + "type": "small_airport", + "name": "Redtail Airstrip", + "latitude_deg": "29.2791996002", + "longitude_deg": "-82.5", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Morriston", + "scheduled_service": "no", + "gps_code": "FA30", + "local_code": "FA30" + }, + { + "id": "17221", + "ident": "FA31", + "type": "heliport", + "name": "Cypress Gardens Heliport", + "latitude_deg": "27.989700317382812", + "longitude_deg": "-81.69309997558594", + "elevation_ft": "151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Winter Haven", + "scheduled_service": "no", + "gps_code": "FA31", + "local_code": "FA31" + }, + { + "id": "17222", + "ident": "FA32", + "type": "small_airport", + "name": "Circle P Airport", + "latitude_deg": "30.103300094604492", + "longitude_deg": "-83.45030212402344", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Perry", + "scheduled_service": "no", + "gps_code": "FA32", + "local_code": "FA32" + }, + { + "id": "17223", + "ident": "FA33", + "type": "heliport", + "name": "Mosquito Ctl Heliport", + "latitude_deg": "27.272499084472656", + "longitude_deg": "-82.36609649658203", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sarasota", + "scheduled_service": "no", + "gps_code": "FA33", + "local_code": "FA33" + }, + { + "id": "17224", + "ident": "FA34", + "type": "heliport", + "name": "Beach Mosquito Control District Heliport", + "latitude_deg": "30.207999", + "longitude_deg": "-85.82924", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City Beach", + "scheduled_service": "no", + "gps_code": "FA34", + "local_code": "FA34" + }, + { + "id": "17225", + "ident": "FA35", + "type": "small_airport", + "name": "Lindbergh's Landing Airport", + "latitude_deg": "25.61949920654297", + "longitude_deg": "-80.48870086669922", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "FA35", + "local_code": "FA35" + }, + { + "id": "17226", + "ident": "FA36", + "type": "small_airport", + "name": "White Farms Airport", + "latitude_deg": "29.512699127197266", + "longitude_deg": "-82.87480163574219", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Chiefland", + "scheduled_service": "no", + "gps_code": "FA36", + "local_code": "FA36" + }, + { + "id": "17227", + "ident": "FA37", + "type": "small_airport", + "name": "Wing South Airpark", + "latitude_deg": "26.11680030822754", + "longitude_deg": "-81.7031021118164", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Naples", + "scheduled_service": "no", + "gps_code": "FA37", + "local_code": "FA37" + }, + { + "id": "17228", + "ident": "FA38", + "type": "small_airport", + "name": "Woods and Lakes Airpark", + "latitude_deg": "29.123600006103516", + "longitude_deg": "-81.88700103759766", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Oklawaha", + "scheduled_service": "no", + "gps_code": "FA38", + "local_code": "FA38" + }, + { + "id": "17229", + "ident": "FA39", + "type": "closed", + "name": "Veterans Administration Medical Center Heliport", + "latitude_deg": "29.637199", + "longitude_deg": "-82.362", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Gainesville", + "scheduled_service": "no", + "keywords": "FA39" + }, + { + "id": "17230", + "ident": "FA40", + "type": "small_airport", + "name": "Hidden Lake Airport", + "latitude_deg": "28.282499313354492", + "longitude_deg": "-82.64569854736328", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "New Port Richey", + "scheduled_service": "no", + "gps_code": "FA40", + "local_code": "FA40" + }, + { + "id": "17231", + "ident": "FA41", + "type": "heliport", + "name": "Mosquito Control Heliport", + "latitude_deg": "30.441099166870117", + "longitude_deg": "-81.47730255126953", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "FA41", + "local_code": "FA41" + }, + { + "id": "17232", + "ident": "FA42", + "type": "small_airport", + "name": "Sheets Airport", + "latitude_deg": "28.532899856567383", + "longitude_deg": "-81.8467025756836", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Groveland", + "scheduled_service": "no", + "gps_code": "FA42", + "local_code": "FA42" + }, + { + "id": "17233", + "ident": "FA43", + "type": "small_airport", + "name": "Dog Island Airport", + "latitude_deg": "29.810698", + "longitude_deg": "-84.588508", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Carrabelle", + "scheduled_service": "no", + "gps_code": "FA43", + "local_code": "FA43" + }, + { + "id": "17234", + "ident": "FA44", + "type": "small_airport", + "name": "Willis Gliderport", + "latitude_deg": "26.548099517822266", + "longitude_deg": "-80.21479797363281", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Boynton Beach", + "scheduled_service": "no", + "gps_code": "FA44", + "local_code": "FA44" + }, + { + "id": "17235", + "ident": "FA45", + "type": "heliport", + "name": "Lake Wales Heliport", + "latitude_deg": "27.91634", + "longitude_deg": "-81.548982", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Wales", + "scheduled_service": "no", + "gps_code": "FA45", + "local_code": "FA45" + }, + { + "id": "17236", + "ident": "FA46", + "type": "small_airport", + "name": "Henderson Field", + "latitude_deg": "28.626647", + "longitude_deg": "-81.707039", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Minneola", + "scheduled_service": "no", + "gps_code": "FA46", + "local_code": "FA46" + }, + { + "id": "17237", + "ident": "FA47", + "type": "heliport", + "name": "Doris Ison Health Center Heliport", + "latitude_deg": "25.56618", + "longitude_deg": "-80.35818", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Homestead", + "scheduled_service": "no", + "gps_code": "FA47", + "local_code": "FA47", + "keywords": "South Dade Community Health Center Heliport" + }, + { + "id": "17238", + "ident": "FA48", + "type": "heliport", + "name": "Four Points Sheraton Lakeside Heliport", + "latitude_deg": "28.339500427246094", + "longitude_deg": "-81.59539794921875", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Kissimmee", + "scheduled_service": "no", + "gps_code": "FA48", + "local_code": "FA48" + }, + { + "id": "17239", + "ident": "FA49", + "type": "small_airport", + "name": "Shady International Airport", + "latitude_deg": "29.096099853515625", + "longitude_deg": "-82.17900085449219", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ocala", + "scheduled_service": "no", + "gps_code": "FA49", + "local_code": "FA49" + }, + { + "id": "17240", + "ident": "FA50", + "type": "small_airport", + "name": "Wings-N-Wheels Airport", + "latitude_deg": "29.3614006042", + "longitude_deg": "-82.1498031616", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Reddick", + "scheduled_service": "no", + "gps_code": "FA50", + "local_code": "FA50" + }, + { + "id": "17241", + "ident": "FA51", + "type": "small_airport", + "name": "Sky Manor Airport", + "latitude_deg": "26.739", + "longitude_deg": "-81.506203", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "La Belle", + "scheduled_service": "no", + "gps_code": "FA51", + "local_code": "FA51", + "keywords": "William's Sky Manor" + }, + { + "id": "17242", + "ident": "FA52", + "type": "heliport", + "name": "AdventHealth Sebring Heliport", + "latitude_deg": "27.538057", + "longitude_deg": "-81.509274", + "elevation_ft": "154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sebring", + "scheduled_service": "no", + "gps_code": "FA52", + "local_code": "FA52", + "keywords": "Florida Hospital-Sebring" + }, + { + "id": "17243", + "ident": "FA53", + "type": "heliport", + "name": "Eagles Nest Heliport", + "latitude_deg": "28.043899536132812", + "longitude_deg": "-81.84860229492188", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Auburndale", + "scheduled_service": "no", + "gps_code": "FA53", + "local_code": "FA53" + }, + { + "id": "17244", + "ident": "FA54", + "type": "small_airport", + "name": "Coral Creek Airport", + "latitude_deg": "26.85449981689453", + "longitude_deg": "-82.2511978149414", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Placida", + "scheduled_service": "no", + "gps_code": "FA54", + "local_code": "FA54" + }, + { + "id": "17245", + "ident": "FA55", + "type": "small_airport", + "name": "Garnair Airport", + "latitude_deg": "30.779699325561523", + "longitude_deg": "-85.76830291748047", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bonifay", + "scheduled_service": "no", + "gps_code": "FA55", + "local_code": "FA55" + }, + { + "id": "17246", + "ident": "FA56", + "type": "heliport", + "name": "North Florida Regional Medical Center Heliport", + "latitude_deg": "29.661500930786133", + "longitude_deg": "-82.41210174560547", + "elevation_ft": "143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Gainesville", + "scheduled_service": "no", + "gps_code": "FA56", + "local_code": "FA56" + }, + { + "id": "17247", + "ident": "FA57", + "type": "heliport", + "name": "Archer Emergency Heliport", + "latitude_deg": "29.53420066833496", + "longitude_deg": "-82.52439880371094", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Archer", + "scheduled_service": "no", + "gps_code": "FA57", + "local_code": "FA57" + }, + { + "id": "17248", + "ident": "FA58", + "type": "closed", + "name": "AdventHealth North Pinellas Heliport", + "latitude_deg": "28.13264", + "longitude_deg": "-82.758417", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tarpon Springs", + "scheduled_service": "no", + "gps_code": "FA58", + "local_code": "FA58", + "keywords": "Helen Ellis Hospital" + }, + { + "id": "17249", + "ident": "FA59", + "type": "heliport", + "name": "Nitv Heliport", + "latitude_deg": "26.634000778198242", + "longitude_deg": "-80.22419738769531", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Wellington", + "scheduled_service": "no", + "gps_code": "FA59", + "local_code": "FA59" + }, + { + "id": "17250", + "ident": "FA60", + "type": "small_airport", + "name": "Vince's Condominium Association Airport", + "latitude_deg": "27.23889923095703", + "longitude_deg": "-81.38590240478516", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Placid", + "scheduled_service": "no", + "gps_code": "FA60", + "local_code": "FA60" + }, + { + "id": "17251", + "ident": "FA61", + "type": "heliport", + "name": "UF Health Jacksonville Heliport", + "latitude_deg": "30.349533", + "longitude_deg": "-81.665481", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "FA61", + "local_code": "FA61", + "keywords": "Shands Jacksonville Hospital Heliport" + }, + { + "id": "17252", + "ident": "FA62", + "type": "small_airport", + "name": "Santa Fe River Ranch Airport", + "latitude_deg": "29.916900634766", + "longitude_deg": "-82.483200073242", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Alachua", + "scheduled_service": "no", + "gps_code": "FA62", + "local_code": "FA62", + "keywords": "9J2" + }, + { + "id": "17253", + "ident": "FA63", + "type": "closed", + "name": "Leffler Airport", + "latitude_deg": "28.976279", + "longitude_deg": "-81.118211", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Alamana", + "scheduled_service": "no", + "keywords": "X76, FA63" + }, + { + "id": "17254", + "ident": "FA64", + "type": "small_airport", + "name": "Montgomery Ranch Airport", + "latitude_deg": "27.074499130249023", + "longitude_deg": "-81.58650207519531", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Arcadia", + "scheduled_service": "no", + "gps_code": "FA64", + "local_code": "FA64" + }, + { + "id": "17255", + "ident": "FA65", + "type": "heliport", + "name": "Memorial Hospital Jacksonville Heliport", + "latitude_deg": "30.289331", + "longitude_deg": "-81.601429", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "FA65", + "local_code": "FA65", + "keywords": "Memorial Medical Center of Jacksonville Heliport" + }, + { + "id": "17256", + "ident": "FA66", + "type": "closed", + "name": "Travel Lodge Heliport", + "latitude_deg": "30.3241", + "longitude_deg": "-81.411797", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Neptune Beach", + "scheduled_service": "no", + "gps_code": "FA66", + "local_code": "FA66" + }, + { + "id": "17257", + "ident": "FA67", + "type": "closed", + "name": "Walker Memorial Medical Center Heliport", + "latitude_deg": "27.6325", + "longitude_deg": "-81.518402", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Avon Park", + "scheduled_service": "no", + "gps_code": "FA67", + "local_code": "FA67" + }, + { + "id": "17258", + "ident": "FA69", + "type": "small_airport", + "name": "Duda Airstrip", + "latitude_deg": "26.587799072265625", + "longitude_deg": "-80.63729858398438", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Belle Glade", + "scheduled_service": "no", + "gps_code": "FA69", + "local_code": "FA69" + }, + { + "id": "46306", + "ident": "FA70", + "type": "heliport", + "name": "Saint Joseph's Hospital North Heliport", + "latitude_deg": "28.130569", + "longitude_deg": "-82.509252", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lutz", + "scheduled_service": "no", + "gps_code": "FA70", + "local_code": "FA70" + }, + { + "id": "17259", + "ident": "FA71", + "type": "small_airport", + "name": "The Cedars Airfield", + "latitude_deg": "29.22800064086914", + "longitude_deg": "-82.9437026977539", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Cedar Key", + "scheduled_service": "no", + "gps_code": "FA71", + "local_code": "FA71" + }, + { + "id": "17260", + "ident": "FA72", + "type": "closed", + "name": "Acres of Diamonds Airpark", + "latitude_deg": "30.886299", + "longitude_deg": "-85.163803", + "elevation_ft": "134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Greenwood", + "scheduled_service": "no", + "keywords": "FA72" + }, + { + "id": "17261", + "ident": "FA73", + "type": "seaplane_base", + "name": "Oak Harbor Seaplane Base", + "latitude_deg": "28.1289005279541", + "longitude_deg": "-81.68789672851562", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Haines City", + "scheduled_service": "no", + "gps_code": "FA73", + "local_code": "FA73" + }, + { + "id": "17262", + "ident": "FA74", + "type": "small_airport", + "name": "Romor Ranch Airport", + "latitude_deg": "25.98564", + "longitude_deg": "-81.041733", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ochopee", + "scheduled_service": "no", + "gps_code": "FA74", + "local_code": "FA74" + }, + { + "id": "17263", + "ident": "FA75", + "type": "closed", + "name": "Flying Bonefish Seaplane Base", + "latitude_deg": "24.768498", + "longitude_deg": "-80.946198", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Marathon", + "scheduled_service": "no", + "keywords": "FA75" + }, + { + "id": "17264", + "ident": "FA76", + "type": "heliport", + "name": "Nicklaus Childrens Hospital Heliport", + "latitude_deg": "25.7409301", + "longitude_deg": "-80.294641", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "FA76", + "local_code": "FA76", + "keywords": "Miami Childrens Hospital" + }, + { + "id": "17265", + "ident": "FA77", + "type": "small_airport", + "name": "Lowe's Airport", + "latitude_deg": "27.330900192260742", + "longitude_deg": "-82.29060363769531", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sarasota", + "scheduled_service": "no", + "gps_code": "FA77", + "local_code": "FA77" + }, + { + "id": "45357", + "ident": "FA78", + "type": "seaplane_base", + "name": "Robinestte Seaplane Base", + "latitude_deg": "28.333", + "longitude_deg": "-81.25", + "elevation_ft": "58", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St Cloud", + "scheduled_service": "no", + "gps_code": "FA78", + "local_code": "FA78" + }, + { + "id": "17266", + "ident": "FA79", + "type": "heliport", + "name": "Doan Heliport", + "latitude_deg": "29.16550064086914", + "longitude_deg": "-81.02729797363281", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "South Daytona", + "scheduled_service": "no", + "gps_code": "FA79", + "local_code": "FA79" + }, + { + "id": "17267", + "ident": "FA80", + "type": "closed", + "name": "Lost Horn Ranch Airport", + "latitude_deg": "25.9681", + "longitude_deg": "-81.081497", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ochopee", + "scheduled_service": "no", + "gps_code": "FA80", + "local_code": "FA80" + }, + { + "id": "17268", + "ident": "FA81", + "type": "small_airport", + "name": "Tavernaero Park Airport", + "latitude_deg": "25.004848", + "longitude_deg": "-80.533279", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tavernier", + "scheduled_service": "no", + "gps_code": "FA81", + "local_code": "FA81" + }, + { + "id": "17269", + "ident": "FA82", + "type": "closed", + "name": "Good Samaritan Medical Center Heliport", + "latitude_deg": "26.725199", + "longitude_deg": "-80.055705", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "West Palm Beach", + "scheduled_service": "no", + "keywords": "FA82" + }, + { + "id": "17270", + "ident": "FA83", + "type": "small_airport", + "name": "Orlando North Airpark", + "latitude_deg": "28.72156", + "longitude_deg": "-81.654825", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Zellwood", + "scheduled_service": "no", + "gps_code": "FA83", + "local_code": "FA83" + }, + { + "id": "345473", + "ident": "FA84", + "type": "seaplane_base", + "name": "Lake Tarpon Seaplane Base", + "latitude_deg": "28.125", + "longitude_deg": "-82.726944", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Palm Harbor", + "scheduled_service": "no", + "gps_code": "FA84", + "local_code": "FA84" + }, + { + "id": "341067", + "ident": "FA86", + "type": "small_airport", + "name": "Early Bird Airport", + "latitude_deg": "29.21464", + "longitude_deg": "-82.371656", + "elevation_ft": "71", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ocala", + "scheduled_service": "no", + "gps_code": "FA86", + "local_code": "FA86" + }, + { + "id": "325451", + "ident": "FA87", + "type": "heliport", + "name": "Sarasota Memorial Hospital North Port ER Heliport", + "latitude_deg": "27.056666", + "longitude_deg": "-82.159444", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "North Port", + "scheduled_service": "no", + "gps_code": "FA87", + "local_code": "FA87" + }, + { + "id": "45356", + "ident": "FA88", + "type": "small_airport", + "name": "Pittman Oaks Airport", + "latitude_deg": "30.425042", + "longitude_deg": "-83.048469", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Live Oak", + "scheduled_service": "no", + "gps_code": "FA88", + "local_code": "FA88" + }, + { + "id": "321980", + "ident": "FA90", + "type": "heliport", + "name": "Port Canaveral Heliport", + "latitude_deg": "28.4052556", + "longitude_deg": "-80.6186694", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Port Canaveral", + "scheduled_service": "no", + "gps_code": "FA90", + "local_code": "FA90" + }, + { + "id": "326257", + "ident": "FA91", + "type": "heliport", + "name": "Orange County Convention Center Heliport", + "latitude_deg": "28.430844", + "longitude_deg": "-81.456296", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "FA91", + "local_code": "FA91", + "keywords": "Peabody Heliport" + }, + { + "id": "328036", + "ident": "FA94", + "type": "seaplane_base", + "name": "ONeals Seaplane Base", + "latitude_deg": "28.231111", + "longitude_deg": "-81.234444", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St Cloud", + "scheduled_service": "no", + "gps_code": "FA94", + "local_code": "FA94" + }, + { + "id": "322490", + "ident": "FA95", + "type": "heliport", + "name": "Advent Health Lake Mary ER Heliport", + "latitude_deg": "28.783739", + "longitude_deg": "-81.348728", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Mary", + "scheduled_service": "no", + "gps_code": "FA95", + "local_code": "FA95", + "keywords": "Florida Hospital Lake Mary" + }, + { + "id": "324747", + "ident": "FA96", + "type": "heliport", + "name": "HCA Florida Oviedo Hospital Heliport", + "latitude_deg": "28.658047", + "longitude_deg": "-81.228452", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Oviedo", + "scheduled_service": "no", + "gps_code": "FA96", + "local_code": "FA96", + "keywords": "Oviedo Medical Center Heliport" + }, + { + "id": "325807", + "ident": "FA97", + "type": "heliport", + "name": "Indian River County Sheriff's Office Heliport", + "latitude_deg": "27.665992", + "longitude_deg": "-80.425021", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Vero Beach", + "scheduled_service": "no", + "gps_code": "FA97", + "local_code": "FA97" + }, + { + "id": "324603", + "ident": "FA98", + "type": "heliport", + "name": "North Collier Hospital Heliport", + "latitude_deg": "26.273841", + "longitude_deg": "-81.787872", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Naples", + "scheduled_service": "no", + "gps_code": "FA98", + "local_code": "FA98" + }, + { + "id": "45912", + "ident": "FA99", + "type": "small_airport", + "name": "Fantasy Field Airstrip", + "latitude_deg": "46.587833", + "longitude_deg": "-122.865778", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Chehalis", + "scheduled_service": "no", + "gps_code": "FA99", + "local_code": "FA99" + }, + { + "id": "2767", + "ident": "FAAB", + "type": "medium_airport", + "name": "Alexander Bay Airport", + "latitude_deg": "-28.575001", + "longitude_deg": "16.5333", + "elevation_ft": "98", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Alexander Bay", + "scheduled_service": "no", + "gps_code": "FAAB", + "iata_code": "ALJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alexander_Bay_Airport", + "keywords": "Kortdoorn" + }, + { + "id": "29645", + "ident": "FAAD", + "type": "closed", + "name": "Adelaide Airport", + "latitude_deg": "-32.6831016541", + "longitude_deg": "26.2942008972", + "elevation_ft": "1955", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Adelaide", + "scheduled_service": "no", + "gps_code": "FAAD" + }, + { + "id": "29643", + "ident": "FAAE", + "type": "small_airport", + "name": "Aberdeen Airport", + "latitude_deg": "-32.46670150756836", + "longitude_deg": "24.066699981689453", + "elevation_ft": "2461", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Aberdeen", + "scheduled_service": "no", + "gps_code": "FAAE" + }, + { + "id": "41296", + "ident": "FAAF", + "type": "small_airport", + "name": "Andrew's Field Airport", + "latitude_deg": "-34.76288986206055", + "longitude_deg": "20.034915924072266", + "elevation_ft": "30", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Struisbaai", + "scheduled_service": "no", + "gps_code": "FAAF" + }, + { + "id": "2768", + "ident": "FAAG", + "type": "medium_airport", + "name": "Aggeneys Airport", + "latitude_deg": "-29.28179931640625", + "longitude_deg": "18.813899993896484", + "elevation_ft": "2648", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Aggeneys", + "scheduled_service": "no", + "gps_code": "FAAG", + "iata_code": "AGZ" + }, + { + "id": "2769", + "ident": "FAAL", + "type": "small_airport", + "name": "Alldays Airport", + "latitude_deg": "-22.6790008545", + "longitude_deg": "29.0555000305", + "elevation_ft": "2600", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Alldays", + "scheduled_service": "no", + "gps_code": "FAAL", + "iata_code": "ADY" + }, + { + "id": "41198", + "ident": "FAAM", + "type": "small_airport", + "name": "Amsterdam Airport", + "latitude_deg": "-26.633333206176758", + "longitude_deg": "30.600000381469727", + "elevation_ft": "4310", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Amsterdam", + "scheduled_service": "no", + "gps_code": "FAAM" + }, + { + "id": "27277", + "ident": "FAAN", + "type": "small_airport", + "name": "Aliwal North Airport", + "latitude_deg": "-30.681072", + "longitude_deg": "26.730141", + "elevation_ft": "4405", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Aliwal North", + "scheduled_service": "no", + "gps_code": "FAAN" + }, + { + "id": "29669", + "ident": "FAAP", + "type": "small_airport", + "name": "Arnot Power Station Airport", + "latitude_deg": "-25.941099166900003", + "longitude_deg": "29.810300827", + "elevation_ft": "5594", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Arnot Power Station", + "scheduled_service": "no" + }, + { + "id": "41298", + "ident": "FAAS", + "type": "small_airport", + "name": "Ashton Airport", + "latitude_deg": "-33.81666564941406", + "longitude_deg": "20.066667556762695", + "elevation_ft": "525", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Ashton", + "scheduled_service": "no", + "gps_code": "FAAS" + }, + { + "id": "31035", + "ident": "FABA", + "type": "small_airport", + "name": "Microland Flight Park", + "latitude_deg": "-25.976255771599998", + "longitude_deg": "28.3890151978", + "elevation_ft": "5476", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Bapsfontein", + "scheduled_service": "no", + "gps_code": "FABA" + }, + { + "id": "2770", + "ident": "FABB", + "type": "small_airport", + "name": "Brakpan Airport", + "latitude_deg": "-26.23859977722168", + "longitude_deg": "28.301799774169922", + "elevation_ft": "5300", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Brakpan", + "scheduled_service": "no", + "gps_code": "FABB" + }, + { + "id": "29740", + "ident": "FABD", + "type": "small_airport", + "name": "Burghersdorp Airport", + "latitude_deg": "-30.977500915527344", + "longitude_deg": "26.3080997467041", + "elevation_ft": "4734", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Burgersdorp", + "scheduled_service": "no", + "gps_code": "FABD" + }, + { + "id": "2771", + "ident": "FABE", + "type": "medium_airport", + "name": "Bisho Airport", + "latitude_deg": "-32.8970985413", + "longitude_deg": "27.279100418099997", + "elevation_ft": "1950", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Bisho", + "scheduled_service": "no", + "gps_code": "FABE", + "iata_code": "BIY" + }, + { + "id": "41164", + "ident": "FABF", + "type": "small_airport", + "name": "Barkly East Airport", + "latitude_deg": "-30.966667175299996", + "longitude_deg": "27.604166030900004", + "elevation_ft": "5940", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Barkly East", + "scheduled_service": "no", + "gps_code": "FABF" + }, + { + "id": "308160", + "ident": "FABG", + "type": "small_airport", + "name": "Buffelshoek Airport", + "latitude_deg": "-24.702464", + "longitude_deg": "31.587875", + "elevation_ft": "1347", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "scheduled_service": "no", + "gps_code": "FABG" + }, + { + "id": "29699", + "ident": "FABH", + "type": "small_airport", + "name": "Belfast Aerodrome", + "latitude_deg": "-25.6587417378", + "longitude_deg": "30.041577816", + "elevation_ft": "6250", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Belfast", + "scheduled_service": "no", + "gps_code": "FABH" + }, + { + "id": "29713", + "ident": "FABK", + "type": "small_airport", + "name": "Bushmans Kloof Airport", + "latitude_deg": "-32.035", + "longitude_deg": "19.0435", + "elevation_ft": "1050", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Bushman's Kloof", + "scheduled_service": "no", + "gps_code": "FABK" + }, + { + "id": "2772", + "ident": "FABL", + "type": "medium_airport", + "name": "Bram Fischer International Airport", + "latitude_deg": "-29.092699", + "longitude_deg": "26.302401", + "elevation_ft": "4457", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Bloemfontain", + "scheduled_service": "yes", + "gps_code": "FABL", + "iata_code": "BFN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bloemfontein_Airport" + }, + { + "id": "2773", + "ident": "FABM", + "type": "small_airport", + "name": "Bethlehem Airport", + "latitude_deg": "-28.2483997345", + "longitude_deg": "28.3360996246", + "elevation_ft": "5561", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Bethlehem", + "scheduled_service": "no", + "gps_code": "FABM" + }, + { + "id": "29685", + "ident": "FABN", + "type": "closed", + "name": "Barberton Municipal Airfield", + "latitude_deg": "-25.778600692699996", + "longitude_deg": "31.017499923699997", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Barberton", + "scheduled_service": "no" + }, + { + "id": "2774", + "ident": "FABO", + "type": "small_airport", + "name": "Hendrik Potgieter Airport", + "latitude_deg": "-27.36680030822754", + "longitude_deg": "26.629199981689453", + "elevation_ft": "4236", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Bothaville", + "scheduled_service": "no", + "gps_code": "FABO" + }, + { + "id": "29738", + "ident": "FABP", + "type": "small_airport", + "name": "Black Rock Airport", + "latitude_deg": "-27.129724", + "longitude_deg": "22.846255", + "elevation_ft": "3450", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Santoy", + "scheduled_service": "no", + "gps_code": "FABP" + }, + { + "id": "46533", + "ident": "FABR", + "type": "medium_airport", + "name": "Barberton Airport", + "latitude_deg": "-25.716869", + "longitude_deg": "30.97518", + "elevation_ft": "2250", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Umjindi (Barberton)", + "scheduled_service": "no", + "gps_code": "FABR", + "local_code": "ABR", + "home_link": "http://www.barbertonairport.co.za", + "keywords": "FABN, FABR, bush air, barberton valley, bush pilots, CC Pocock" + }, + { + "id": "27279", + "ident": "FABS", + "type": "small_airport", + "name": "Brits Airport", + "latitude_deg": "-25.53230094909668", + "longitude_deg": "27.77589988708496", + "elevation_ft": "3756", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Brits", + "scheduled_service": "no", + "gps_code": "FABS" + }, + { + "id": "41156", + "ident": "FABT", + "type": "small_airport", + "name": "Bethesda Road Airport", + "latitude_deg": "-31.873199462890625", + "longitude_deg": "24.796899795532227", + "elevation_ft": "4630", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Bethesda", + "scheduled_service": "no", + "gps_code": "FABT" + }, + { + "id": "41152", + "ident": "FABU", + "type": "small_airport", + "name": "Bultfontein Airport", + "latitude_deg": "-28.273369", + "longitude_deg": "26.135835", + "elevation_ft": "4400", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Bultfontein", + "scheduled_service": "no", + "gps_code": "FABU", + "iata_code": "UTE" + }, + { + "id": "29726", + "ident": "FABV", + "type": "small_airport", + "name": "Brandviei Airport", + "latitude_deg": "-30.466699600219727", + "longitude_deg": "20.466699600219727", + "elevation_ft": "2999", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Brandviei", + "scheduled_service": "no", + "gps_code": "FABV" + }, + { + "id": "27278", + "ident": "FABW", + "type": "small_airport", + "name": "Beaufort West Airport", + "latitude_deg": "-32.29999923706055", + "longitude_deg": "22.670000076293945", + "elevation_ft": "2941", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Beaufort West", + "scheduled_service": "no", + "gps_code": "FABW" + }, + { + "id": "29688", + "ident": "FABX", + "type": "small_airport", + "name": "Beatrix Airport", + "latitude_deg": "-28.2450008392334", + "longitude_deg": "26.771900177001953", + "elevation_ft": "4518", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Virginia", + "scheduled_service": "no", + "gps_code": "FABX" + }, + { + "id": "29709", + "ident": "FABZ", + "type": "small_airport", + "name": "Bizana Airport", + "latitude_deg": "-30.860300064086914", + "longitude_deg": "29.86389923095703", + "elevation_ft": "2740", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Bizana", + "scheduled_service": "no", + "gps_code": "FABZ" + }, + { + "id": "31036", + "ident": "FACA", + "type": "small_airport", + "name": "Monte Carlo Airport", + "latitude_deg": "-28.799999237060547", + "longitude_deg": "27.41699981689453", + "elevation_ft": "4995", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Monte Carlo", + "scheduled_service": "no", + "gps_code": "FACA" + }, + { + "id": "29792", + "ident": "FACB", + "type": "small_airport", + "name": "Colesberg Airport", + "latitude_deg": "-30.73390007019043", + "longitude_deg": "25.065000534057617", + "elevation_ft": "4639", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Colesberg", + "scheduled_service": "no", + "gps_code": "FACB" + }, + { + "id": "41263", + "ident": "FACC", + "type": "small_airport", + "name": "Arathusa Safari Lodge Airport", + "latitude_deg": "-24.744165", + "longitude_deg": "31.522499", + "elevation_ft": "1289", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Arathusa", + "scheduled_service": "no", + "gps_code": "FAAR", + "iata_code": "ASS", + "home_link": "http://arathusa.co.za/getting-to-arathusa-by-scheduled-flight/", + "wikipedia_link": "https://ceb.wikipedia.org/wiki/Arathusa_Safari_Lodge_Airport", + "keywords": "FACC" + }, + { + "id": "29908", + "ident": "FACD", + "type": "small_airport", + "name": "Cradock Airport", + "latitude_deg": "-32.1567001343", + "longitude_deg": "25.6455993652", + "elevation_ft": "3110", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Cradock", + "scheduled_service": "no", + "gps_code": "FACD", + "iata_code": "CDO" + }, + { + "id": "41304", + "ident": "FACE", + "type": "small_airport", + "name": "Ceres Airport", + "latitude_deg": "-33.316594", + "longitude_deg": "19.426676", + "elevation_ft": "1519", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Ceres", + "scheduled_service": "no", + "gps_code": "FACE" + }, + { + "id": "29755", + "ident": "FACF", + "type": "small_airport", + "name": "St Francis Airfield", + "latitude_deg": "-34.186901", + "longitude_deg": "24.834999", + "elevation_ft": "131", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "St Francis Bay", + "scheduled_service": "no", + "gps_code": "FACF", + "home_link": "https://stfrancisfield.com/26-2/" + }, + { + "id": "326496", + "ident": "FACG", + "type": "small_airport", + "name": "Caledon Airfield", + "latitude_deg": "-34.259523", + "longitude_deg": "19.416214", + "elevation_ft": "936", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Caledon", + "scheduled_service": "no", + "gps_code": "FACG" + }, + { + "id": "41148", + "ident": "FACH", + "type": "small_airport", + "name": "Cookhouse Airport", + "latitude_deg": "-32.74470138549805", + "longitude_deg": "25.796300888061523", + "elevation_ft": "1893", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Cookhouse", + "scheduled_service": "no", + "gps_code": "FACH" + }, + { + "id": "41307", + "ident": "FACI", + "type": "small_airport", + "name": "Citrusdal Airport", + "latitude_deg": "-32.61968", + "longitude_deg": "19.00384", + "elevation_ft": "532", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Citrusdal", + "scheduled_service": "no", + "gps_code": "FACI" + }, + { + "id": "27280", + "ident": "FACK", + "type": "small_airport", + "name": "Christiana Airport", + "latitude_deg": "-27.877192", + "longitude_deg": "25.204376", + "elevation_ft": "3978", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Christiana", + "scheduled_service": "no", + "gps_code": "FACK" + }, + { + "id": "29757", + "ident": "FACL", + "type": "small_airport", + "name": "Carolina Airport", + "latitude_deg": "-26.078100204467773", + "longitude_deg": "30.092500686645508", + "elevation_ft": "5420", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Carolina", + "scheduled_service": "no", + "gps_code": "FACL" + }, + { + "id": "29756", + "ident": "FACN", + "type": "small_airport", + "name": "Carnarvon Airport", + "latitude_deg": "-30.98859977722168", + "longitude_deg": "22.13170051574707", + "elevation_ft": "4160", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Carnarvon", + "scheduled_service": "no", + "gps_code": "FACN" + }, + { + "id": "29653", + "ident": "FACO", + "type": "small_airport", + "name": "Alkantpan Copper Airport", + "latitude_deg": "-29.906400680541992", + "longitude_deg": "22.316699981689453", + "elevation_ft": "3589", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Cooperton", + "scheduled_service": "no", + "gps_code": "FACO" + }, + { + "id": "41186", + "ident": "FACR", + "type": "small_airport", + "name": "Carltonville Airport", + "latitude_deg": "-26.366666793823242", + "longitude_deg": "27.34666633605957", + "elevation_ft": "5000", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Carltonville", + "scheduled_service": "no", + "gps_code": "FACR" + }, + { + "id": "2775", + "ident": "FACT", + "type": "large_airport", + "name": "Cape Town International Airport", + "latitude_deg": "-33.9648017883", + "longitude_deg": "18.6016998291", + "elevation_ft": "151", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Cape Town", + "scheduled_service": "yes", + "gps_code": "FACT", + "iata_code": "CPT", + "home_link": "http://www.airports.co.za/home.asp?pid=229", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cape_Town_International_Airport", + "keywords": "Kaapstad Internasionale Lughawe, CTIA, DF Malan Airport" + }, + { + "id": "2776", + "ident": "FACV", + "type": "small_airport", + "name": "Calvinia Airport", + "latitude_deg": "-31.50029945373535", + "longitude_deg": "19.725900650024414", + "elevation_ft": "3250", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Calvinia", + "scheduled_service": "no", + "gps_code": "FACV" + }, + { + "id": "31037", + "ident": "FACW", + "type": "small_airport", + "name": "Clanwilliam Airport", + "latitude_deg": "-32.177", + "longitude_deg": "18.8819", + "elevation_ft": "416", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Clanwilliam", + "scheduled_service": "no", + "gps_code": "FACW" + }, + { + "id": "41153", + "ident": "FACX", + "type": "small_airport", + "name": "Cathcart Airport", + "latitude_deg": "-32.28710174560547", + "longitude_deg": "27.1387996673584", + "elevation_ft": "3959", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Cathcart", + "scheduled_service": "no", + "gps_code": "FACX" + }, + { + "id": "41297", + "ident": "FACY", + "type": "small_airport", + "name": "Stilbaai Airport", + "latitude_deg": "-34.3517990112", + "longitude_deg": "21.424800872800002", + "elevation_ft": "266", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Stilbaai", + "scheduled_service": "no", + "gps_code": "FACY" + }, + { + "id": "29821", + "ident": "FADA", + "type": "small_airport", + "name": "De Aar Airport", + "latitude_deg": "-30.69219970703125", + "longitude_deg": "24.020599365234375", + "elevation_ft": "4154", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "De Aar", + "scheduled_service": "no", + "gps_code": "FADA" + }, + { + "id": "29837", + "ident": "FADB", + "type": "small_airport", + "name": "Dwaalboom Airport", + "latitude_deg": "-24.807199478149414", + "longitude_deg": "26.829700469970703", + "elevation_ft": "3652", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Dwaalboom", + "scheduled_service": "no", + "gps_code": "FADB" + }, + { + "id": "331855", + "ident": "FADC", + "type": "small_airport", + "name": "Douglas Cape Airport", + "latitude_deg": "-29.0746", + "longitude_deg": "23.8009", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Douglas", + "scheduled_service": "no", + "gps_code": "FADC" + }, + { + "id": "29833", + "ident": "FADD", + "type": "small_airport", + "name": "Dundee Airport", + "latitude_deg": "-28.1830997467041", + "longitude_deg": "30.22249984741211", + "elevation_ft": "4219", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Dundee", + "scheduled_service": "no", + "gps_code": "FADD" + }, + { + "id": "41204", + "ident": "FADE", + "type": "small_airport", + "name": "Delmas Airport", + "latitude_deg": "-26.141666412353516", + "longitude_deg": "28.691667556762695", + "elevation_ft": "5075", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Delmas", + "scheduled_service": "no", + "gps_code": "FADE" + }, + { + "id": "41158", + "ident": "FADG", + "type": "small_airport", + "name": "Dordrecht Airport", + "latitude_deg": "-31.383333206176758", + "longitude_deg": "27.03333282470703", + "elevation_ft": "5200", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Dordrecht", + "scheduled_service": "no", + "gps_code": "FADG" + }, + { + "id": "31038", + "ident": "FADH", + "type": "small_airport", + "name": "Durnacol Airport", + "latitude_deg": "-28.046100616455078", + "longitude_deg": "30.006399154663086", + "elevation_ft": "4317", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Durnacol", + "scheduled_service": "no", + "gps_code": "FADH" + }, + { + "id": "2777", + "ident": "FADK", + "type": "small_airport", + "name": "Mubatuba Airport", + "latitude_deg": "-28.36840057373047", + "longitude_deg": "32.24810028076172", + "elevation_ft": "210", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Mubatuba", + "scheduled_service": "no", + "gps_code": "FADK", + "iata_code": "DUK", + "local_code": "FA65" + }, + { + "id": "29823", + "ident": "FADL", + "type": "small_airport", + "name": "Delareyville Airport", + "latitude_deg": "-26.67919921875", + "longitude_deg": "25.474700927734375", + "elevation_ft": "4469", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Delareyville", + "scheduled_service": "no", + "gps_code": "FADL" + }, + { + "id": "41234", + "ident": "FADM", + "type": "small_airport", + "name": "Kokstad Airport", + "latitude_deg": "-30.556499481201172", + "longitude_deg": "29.408199310302734", + "elevation_ft": "4084", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Kokstad", + "scheduled_service": "no", + "gps_code": "FADM" + }, + { + "id": "2778", + "ident": "FADN", + "type": "small_airport", + "name": "Air Force Base Durban", + "latitude_deg": "-29.9701", + "longitude_deg": "30.9505", + "elevation_ft": "33", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Durban", + "scheduled_service": "no", + "gps_code": "FADN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Durban_International_Airport", + "keywords": "Louis Botha International Airport, DUR, Durban International Airport" + }, + { + "id": "29825", + "ident": "FADO", + "type": "small_airport", + "name": "Dendron Airport", + "latitude_deg": "-23.380599975585938", + "longitude_deg": "29.32080078125", + "elevation_ft": "3399", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Dendron", + "scheduled_service": "no", + "gps_code": "FADO" + }, + { + "id": "41146", + "ident": "FADP", + "type": "small_airport", + "name": "Darlington Dam Lodge Airport", + "latitude_deg": "-33.18320083618164", + "longitude_deg": "25.193199157714844", + "elevation_ft": "847", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Port Elizabeth", + "scheduled_service": "no", + "gps_code": "FADP" + }, + { + "id": "32185", + "ident": "FADQ", + "type": "small_airport", + "name": "Zulu Inyala Airport", + "latitude_deg": "-27.84939956665039", + "longitude_deg": "32.30970001220703", + "elevation_ft": "160", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Phinda", + "scheduled_service": "no", + "gps_code": "FADQ", + "iata_code": "PZL" + }, + { + "id": "41189", + "ident": "FADR", + "type": "small_airport", + "name": "Dunnottar Airfield", + "latitude_deg": "-26.3543156175", + "longitude_deg": "28.466791153", + "elevation_ft": "5241", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Dunnottar", + "scheduled_service": "no" + }, + { + "id": "41303", + "ident": "FADS", + "type": "small_airport", + "name": "De Doorns Airport", + "latitude_deg": "-33.455557", + "longitude_deg": "19.684493", + "elevation_ft": "1626", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "De Doorns", + "scheduled_service": "no", + "gps_code": "FADS" + }, + { + "id": "299617", + "ident": "FADU", + "type": "small_airport", + "name": "Walkersons Field", + "latitude_deg": "-25.36278", + "longitude_deg": "30.18778", + "elevation_ft": "6041", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "scheduled_service": "no", + "gps_code": "FADU", + "local_code": "FADU", + "home_link": "http://www.walkersons.co.za/", + "keywords": "Lodge,Resort,Fly-inn" + }, + { + "id": "41187", + "ident": "FADV", + "type": "small_airport", + "name": "Devon Airport", + "latitude_deg": "-26.358999252319336", + "longitude_deg": "28.78969955444336", + "elevation_ft": "5460", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Devon", + "scheduled_service": "no", + "gps_code": "FADV" + }, + { + "id": "41301", + "ident": "FADX", + "type": "small_airport", + "name": "Delta 200 Airstrip", + "latitude_deg": "-33.6494935368", + "longitude_deg": "18.471879959099997", + "elevation_ft": "220", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Koeberg", + "scheduled_service": "no", + "gps_code": "FADX" + }, + { + "id": "41215", + "ident": "FADY", + "type": "small_airport", + "name": "De Aar Military Airport", + "latitude_deg": "-30.63650894165039", + "longitude_deg": "23.91972541809082", + "elevation_ft": "4037", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "De Aar", + "scheduled_service": "no", + "gps_code": "FADY" + }, + { + "id": "41240", + "ident": "FADZ", + "type": "small_airport", + "name": "Drakensberg Gardens Airport", + "latitude_deg": "-29.75", + "longitude_deg": "29.25", + "elevation_ft": "5948", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Drakensberg Gardens", + "scheduled_service": "no", + "gps_code": "FADZ" + }, + { + "id": "29860", + "ident": "FAEC", + "type": "small_airport", + "name": "Estcourt Airport", + "latitude_deg": "-29.047199249267578", + "longitude_deg": "29.910600662231445", + "elevation_ft": "4262", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Estcourt", + "scheduled_service": "no", + "gps_code": "FAEC" + }, + { + "id": "41168", + "ident": "FAED", + "type": "small_airport", + "name": "Edenburg Airport", + "latitude_deg": "-29.75", + "longitude_deg": "25.899999618530273", + "elevation_ft": "4509", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Edenburg", + "scheduled_service": "no", + "gps_code": "FAED" + }, + { + "id": "31039", + "ident": "FAEG", + "type": "small_airport", + "name": "Egnep Airport", + "latitude_deg": "-24.566999435424805", + "longitude_deg": "30.316999435424805", + "elevation_ft": "2299", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Egnep", + "scheduled_service": "no", + "gps_code": "FAEG" + }, + { + "id": "2779", + "ident": "FAEL", + "type": "medium_airport", + "name": "Ben Schoeman Airport", + "latitude_deg": "-33.035599", + "longitude_deg": "27.825899", + "elevation_ft": "435", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "East London", + "scheduled_service": "yes", + "gps_code": "FAEL", + "iata_code": "ELS", + "home_link": "http://www.airports.co.za/home.asp?pid=415", + "wikipedia_link": "https://en.wikipedia.org/wiki/East_London_Airport" + }, + { + "id": "27281", + "ident": "FAEM", + "type": "small_airport", + "name": "Empangeni Airport", + "latitude_deg": "-28.719999313354492", + "longitude_deg": "31.889999389648438", + "elevation_ft": "251", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Empangeni", + "scheduled_service": "no", + "gps_code": "FAEM", + "iata_code": "EMG" + }, + { + "id": "345668", + "ident": "FAEN", + "type": "small_airport", + "name": "Entabeni Airstrip", + "latitude_deg": "-24.1933", + "longitude_deg": "28.735", + "elevation_ft": "3890", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Entabeni", + "scheduled_service": "no", + "gps_code": "FAEN" + }, + { + "id": "2780", + "ident": "FAEO", + "type": "medium_airport", + "name": "Ermelo Airport", + "latitude_deg": "-26.4955997467041", + "longitude_deg": "29.979799270629883", + "elevation_ft": "5700", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Ermelo", + "scheduled_service": "no", + "gps_code": "FAEO" + }, + { + "id": "29846", + "ident": "FAER", + "type": "small_airport", + "name": "Ellisras Matimba Airport", + "latitude_deg": "-23.726699829101562", + "longitude_deg": "27.68829917907715", + "elevation_ft": "2799", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Ellisras", + "scheduled_service": "no", + "gps_code": "FAER", + "iata_code": "ELL" + }, + { + "id": "29857", + "ident": "FAES", + "type": "small_airport", + "name": "Eshowe Airport", + "latitude_deg": "-28.880199432373047", + "longitude_deg": "31.45490074157715", + "elevation_ft": "1601", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Eshowe", + "scheduled_service": "no", + "gps_code": "FAES" + }, + { + "id": "41159", + "ident": "FAET", + "type": "small_airport", + "name": "Elliot Airport", + "latitude_deg": "-31.306900024414062", + "longitude_deg": "27.84950065612793", + "elevation_ft": "5028", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Elliot", + "scheduled_service": "no", + "gps_code": "FAET" + }, + { + "id": "2781", + "ident": "FAFB", + "type": "medium_airport", + "name": "Ficksburg Sentraoes Airport", + "latitude_deg": "-28.82309913635254", + "longitude_deg": "27.908899307250977", + "elevation_ft": "5315", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Ficksburg", + "scheduled_service": "no", + "gps_code": "FAFB", + "iata_code": "FCB" + }, + { + "id": "41182", + "ident": "FAFF", + "type": "small_airport", + "name": "Frankfort Airport", + "latitude_deg": "-27.285400390625", + "longitude_deg": "28.515300750732422", + "elevation_ft": "5176", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Frankfort", + "scheduled_service": "no", + "gps_code": "FAFF" + }, + { + "id": "41217", + "ident": "FAFG", + "type": "small_airport", + "name": "Flamingo Vlei Airport", + "latitude_deg": "-30.490999221801758", + "longitude_deg": "21.121700286865234", + "elevation_ft": "3248", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Flamingo Vlei", + "scheduled_service": "no", + "gps_code": "FAFG" + }, + { + "id": "27282", + "ident": "FAFK", + "type": "small_airport", + "name": "Fisantekraal Airport", + "latitude_deg": "-33.77", + "longitude_deg": "18.74", + "elevation_ft": "399", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Fisantekraal", + "scheduled_service": "no", + "gps_code": "FAFK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fisantekraal_Airfield" + }, + { + "id": "29871", + "ident": "FAFO", + "type": "small_airport", + "name": "Fort Beaufort Airport", + "latitude_deg": "-32.79050064086914", + "longitude_deg": "26.577699661254883", + "elevation_ft": "1581", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Fort Beaufort", + "scheduled_service": "no", + "gps_code": "FAFO" + }, + { + "id": "29878", + "ident": "FAFR", + "type": "small_airport", + "name": "Fraserburg Airport", + "latitude_deg": "-31.933900833129883", + "longitude_deg": "21.502500534057617", + "elevation_ft": "4180", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Fraseburg", + "scheduled_service": "no", + "gps_code": "FAFR" + }, + { + "id": "31040", + "ident": "FAFU", + "type": "small_airport", + "name": "Fraaiuitzicht Airport", + "latitude_deg": "-27.316999435424805", + "longitude_deg": "27.25", + "elevation_ft": "4841", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Fraaiuitzicht", + "scheduled_service": "no", + "gps_code": "FAFU" + }, + { + "id": "29879", + "ident": "FAFW", + "type": "small_airport", + "name": "Freeway Airport", + "latitude_deg": "-25.47719955444336", + "longitude_deg": "28.290000915527344", + "elevation_ft": "3819", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Kromdraai", + "scheduled_service": "no", + "gps_code": "FAFW" + }, + { + "id": "31042", + "ident": "FAGA", + "type": "small_airport", + "name": "Grange Airport", + "latitude_deg": "-30.267000198364258", + "longitude_deg": "29.966999053955078", + "elevation_ft": "2600", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Umzimkulu", + "scheduled_service": "no", + "gps_code": "FAGA" + }, + { + "id": "2782", + "ident": "FAGC", + "type": "medium_airport", + "name": "Grand Central Airport", + "latitude_deg": "-25.986299514799995", + "longitude_deg": "28.1401004791", + "elevation_ft": "5325", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Midrand", + "scheduled_service": "no", + "gps_code": "FAGC", + "iata_code": "GCJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Central_Airport" + }, + { + "id": "2783", + "ident": "FAGG", + "type": "medium_airport", + "name": "George Airport", + "latitude_deg": "-34.0056", + "longitude_deg": "22.378902", + "elevation_ft": "648", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "George", + "scheduled_service": "yes", + "gps_code": "FAGG", + "iata_code": "GRJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/George_Airport", + "keywords": "PW Botha Airport" + }, + { + "id": "41248", + "ident": "FAGH", + "type": "small_airport", + "name": "Glen Grey Airport", + "latitude_deg": "-28.83333396911621", + "longitude_deg": "29.46666717529297", + "elevation_ft": "3500", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Emmaus", + "scheduled_service": "no", + "gps_code": "FAGH" + }, + { + "id": "27283", + "ident": "FAGI", + "type": "small_airport", + "name": "Giyani Airport", + "latitude_deg": "-23.283300399780273", + "longitude_deg": "30.649999618530273", + "elevation_ft": "1584", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Giyani", + "scheduled_service": "no", + "gps_code": "FAGI", + "iata_code": "GIY" + }, + { + "id": "29893", + "ident": "FAGJ", + "type": "small_airport", + "name": "Gifvlei Airport", + "latitude_deg": "-30.38330078125", + "longitude_deg": "20.033300399780273", + "elevation_ft": "3199", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Gifvlei", + "scheduled_service": "no", + "gps_code": "FAGJ" + }, + { + "id": "29919", + "ident": "FAGL", + "type": "small_airport", + "name": "Groblersdal Kob Airport", + "latitude_deg": "-25.186899", + "longitude_deg": "29.403299", + "elevation_ft": "3051", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Groblersdal", + "scheduled_service": "no", + "gps_code": "FAGL" + }, + { + "id": "2784", + "ident": "FAGM", + "type": "medium_airport", + "name": "Rand Airport", + "latitude_deg": "-26.2425", + "longitude_deg": "28.151199", + "elevation_ft": "5483", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Johannesburg", + "scheduled_service": "no", + "gps_code": "FAGM", + "iata_code": "QRA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rand_Airport" + }, + { + "id": "29907", + "ident": "FAGO", + "type": "small_airport", + "name": "Gowrie Airport", + "latitude_deg": "-24.737165303599998", + "longitude_deg": "31.5602874756", + "elevation_ft": "1200", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "scheduled_service": "no", + "gps_code": "FAGO" + }, + { + "id": "2785", + "ident": "FAGR", + "type": "small_airport", + "name": "Graaff Reinet Airport", + "latitude_deg": "-32.193599700927734", + "longitude_deg": "24.541400909423828", + "elevation_ft": "2604", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Graaff-Reinet", + "scheduled_service": "no", + "gps_code": "FAGR" + }, + { + "id": "29892", + "ident": "FAGS", + "type": "closed", + "name": "Giants Castle Airport", + "latitude_deg": "-29.269699", + "longitude_deg": "29.566099", + "elevation_ft": "6086", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Giant'S Castle Game Reserve", + "scheduled_service": "no", + "gps_code": "FAGS" + }, + { + "id": "2786", + "ident": "FAGT", + "type": "small_airport", + "name": "Grahamstown Airport", + "latitude_deg": "-33.284698486328125", + "longitude_deg": "26.49810028076172", + "elevation_ft": "2135", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Grahamstown", + "scheduled_service": "no", + "gps_code": "FAGT" + }, + { + "id": "29912", + "ident": "FAGV", + "type": "small_airport", + "name": "Gravelotte Airport", + "latitude_deg": "-23.91670036315918", + "longitude_deg": "30.700000762939453", + "elevation_ft": "1650", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Gravelotte", + "scheduled_service": "no", + "gps_code": "FAGV" + }, + { + "id": "31043", + "ident": "FAGW", + "type": "small_airport", + "name": "Magwa Airport", + "latitude_deg": "-31.39394187927246", + "longitude_deg": "29.693470001220703", + "elevation_ft": "1823", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Magwa", + "scheduled_service": "no", + "gps_code": "FAGW" + }, + { + "id": "2787", + "ident": "FAGY", + "type": "small_airport", + "name": "Greytown Airport", + "latitude_deg": "-29.1219997406", + "longitude_deg": "30.586700439499996", + "elevation_ft": "3531", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Greytown", + "scheduled_service": "no", + "gps_code": "FAGY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greytown_Airport" + }, + { + "id": "2788", + "ident": "FAHA", + "type": "small_airport", + "name": "Harmony Airport", + "latitude_deg": "-28.078699111938477", + "longitude_deg": "26.8612003326416", + "elevation_ft": "4399", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Virginia", + "scheduled_service": "no", + "gps_code": "FAHA" + }, + { + "id": "41269", + "ident": "FAHB", + "type": "small_airport", + "name": "Hartebeespoortdam Airport", + "latitude_deg": "-24.502399444580078", + "longitude_deg": "28.079099655151367", + "elevation_ft": "3740", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Hartebeespoort", + "scheduled_service": "no", + "gps_code": "FAHB" + }, + { + "id": "29964", + "ident": "FAHC", + "type": "small_airport", + "name": "Howick Airport", + "latitude_deg": "-29.552799224853516", + "longitude_deg": "30.21109962463379", + "elevation_ft": "3619", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Howick", + "scheduled_service": "no", + "gps_code": "FAHC" + }, + { + "id": "41139", + "ident": "FAHD", + "type": "small_airport", + "name": "Humansdorp Airport", + "latitude_deg": "-34.036598205566406", + "longitude_deg": "24.78890037536621", + "elevation_ft": "345", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Humansdorp", + "scheduled_service": "no", + "gps_code": "FAHD" + }, + { + "id": "30302", + "ident": "FAHE", + "type": "small_airport", + "name": "Pullenshope Hendrina Airport", + "latitude_deg": "-25.977800369262695", + "longitude_deg": "29.618900299072266", + "elevation_ft": "5171", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Hendrina", + "scheduled_service": "no", + "gps_code": "FAHE" + }, + { + "id": "29945", + "ident": "FAHF", + "type": "small_airport", + "name": "Henrys Flats Airport", + "latitude_deg": "-33.04610061645508", + "longitude_deg": "25.716899871826172", + "elevation_ft": "1709", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Henry'S Flats", + "scheduled_service": "no", + "gps_code": "FAHF" + }, + { + "id": "27284", + "ident": "FAHG", + "type": "small_airport", + "name": "Heidelburg Airport", + "latitude_deg": "-26.510000228881836", + "longitude_deg": "28.389999389648438", + "elevation_ft": "5089", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Heidelburg", + "scheduled_service": "no", + "gps_code": "FAHG" + }, + { + "id": "27285", + "ident": "FAHH", + "type": "small_airport", + "name": "Hibberdene Airport", + "latitude_deg": "-30.583947", + "longitude_deg": "30.558562", + "elevation_ft": "89", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Hibberdene", + "scheduled_service": "no", + "gps_code": "FAHH" + }, + { + "id": "29935", + "ident": "FAHI", + "type": "small_airport", + "name": "Halfweg Airport", + "latitude_deg": "-30.0132999420166", + "longitude_deg": "20.13920021057129", + "elevation_ft": "3159", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Halfweg", + "scheduled_service": "no", + "gps_code": "FAHI" + }, + { + "id": "29937", + "ident": "FAHJ", + "type": "small_airport", + "name": "Harding Airport", + "latitude_deg": "-30.574533", + "longitude_deg": "29.90565", + "elevation_ft": "2890", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Harding", + "scheduled_service": "no", + "gps_code": "FAHJ" + }, + { + "id": "29932", + "ident": "FAHK", + "type": "small_airport", + "name": "Haakdoornboom Airport", + "latitude_deg": "-25.587200164794922", + "longitude_deg": "28.115800857543945", + "elevation_ft": "4055", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Haakdoornboom", + "scheduled_service": "no", + "gps_code": "FAHK" + }, + { + "id": "29948", + "ident": "FAHL", + "type": "small_airport", + "name": "Hluhluwe Airport", + "latitude_deg": "-28.0166049887", + "longitude_deg": "32.2751712799", + "elevation_ft": "249", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Hluhluwe", + "scheduled_service": "no", + "gps_code": "FAHL", + "iata_code": "HLW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hluhluwe_Airport" + }, + { + "id": "31045", + "ident": "FAHM", + "type": "closed", + "name": "Hermanus Airport", + "latitude_deg": "-34.415276", + "longitude_deg": "19.184074", + "elevation_ft": "72", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Hermanus", + "scheduled_service": "no", + "gps_code": "FAHM" + }, + { + "id": "29943", + "ident": "FAHO", + "type": "small_airport", + "name": "Heilbron Airport", + "latitude_deg": "-27.278600692749023", + "longitude_deg": "27.9955997467041", + "elevation_ft": "5200", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Heilbron", + "scheduled_service": "no", + "gps_code": "FAHO" + }, + { + "id": "29959", + "ident": "FAHP", + "type": "small_airport", + "name": "Hoopstad Airport", + "latitude_deg": "-27.821699142456055", + "longitude_deg": "25.916900634765625", + "elevation_ft": "4131", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Hoopstad", + "scheduled_service": "no", + "gps_code": "FAHP" + }, + { + "id": "2789", + "ident": "FAHR", + "type": "medium_airport", + "name": "Harrismith Airport", + "latitude_deg": "-28.23509979248047", + "longitude_deg": "29.106199264526367", + "elevation_ft": "5585", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Harrismith", + "scheduled_service": "no", + "gps_code": "FAHR", + "iata_code": "HRS" + }, + { + "id": "2790", + "ident": "FAHS", + "type": "small_airport", + "name": "Hoedspruit Air Force Base Airport", + "latitude_deg": "-24.368600845299998", + "longitude_deg": "31.0487003326", + "elevation_ft": "1743", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Hoedspruit", + "scheduled_service": "yes", + "gps_code": "FAHS", + "iata_code": "HDS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hoedspruit_Airport#Eastgate_Airport" + }, + { + "id": "29953", + "ident": "FAHT", + "type": "small_airport", + "name": "Hoedspruit Airport", + "latitude_deg": "-24.351699829101562", + "longitude_deg": "30.949399948120117", + "elevation_ft": "1801", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Hoedspruit", + "scheduled_service": "no", + "gps_code": "FAHT" + }, + { + "id": "29950", + "ident": "FAHU", + "type": "small_airport", + "name": "H M S Bastard Memorial Airport", + "latitude_deg": "-30.542499542236328", + "longitude_deg": "29.499000549316406", + "elevation_ft": "4701", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "H.M.S.Bastard Memorial", + "scheduled_service": "no", + "gps_code": "FAHU" + }, + { + "id": "2791", + "ident": "FAHV", + "type": "small_airport", + "name": "Gariep Dam Airport", + "latitude_deg": "-30.562111", + "longitude_deg": "25.529343", + "elevation_ft": "4176", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Gariepdam", + "scheduled_service": "no", + "gps_code": "FAHV" + }, + { + "id": "41254", + "ident": "FAIA", + "type": "small_airport", + "name": "Itala Airport", + "latitude_deg": "-27.4867000579834", + "longitude_deg": "31.171100616455078", + "elevation_ft": "2665", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Itala", + "scheduled_service": "no", + "gps_code": "FAIA" + }, + { + "id": "29970", + "ident": "FAID", + "type": "small_airport", + "name": "Idutywa Airport", + "latitude_deg": "-32.099998474121094", + "longitude_deg": "28.316699981689453", + "elevation_ft": "2530", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Idutywa", + "scheduled_service": "no", + "gps_code": "FAID" + }, + { + "id": "31046", + "ident": "FAIO", + "type": "closed", + "name": "Odi Airport", + "latitude_deg": "-25.5499992371", + "longitude_deg": "27.933000564599997", + "elevation_ft": "3862", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Lerulaneng", + "scheduled_service": "no", + "gps_code": "FAIO" + }, + { + "id": "41245", + "ident": "FAIS", + "type": "small_airport", + "name": "Isithebe Airport", + "latitude_deg": "-29.10555648803711", + "longitude_deg": "31.407499313354492", + "elevation_ft": "313", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Nyoni", + "scheduled_service": "no", + "gps_code": "FAIS" + }, + { + "id": "41257", + "ident": "FAIV", + "type": "small_airport", + "name": "Ingwavuma Airport", + "latitude_deg": "-27.11709976196289", + "longitude_deg": "32.00870132446289", + "elevation_ft": "2100", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Ingwavuma", + "scheduled_service": "no", + "gps_code": "FAIV" + }, + { + "id": "31047", + "ident": "FAIW", + "type": "small_airport", + "name": "Indwe Airport", + "latitude_deg": "-31.483333587646484", + "longitude_deg": "27.350000381469727", + "elevation_ft": "4167", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Indwe", + "scheduled_service": "no", + "gps_code": "FAIW" + }, + { + "id": "345667", + "ident": "FAJC", + "type": "small_airport", + "name": "Jackalberry Airstrip", + "latitude_deg": "-24.508666", + "longitude_deg": "31.142142", + "elevation_ft": "1850", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "scheduled_service": "no", + "gps_code": "FAJC" + }, + { + "id": "41167", + "ident": "FAJF", + "type": "small_airport", + "name": "Jagersfontain Airport", + "latitude_deg": "-29.762500762939453", + "longitude_deg": "25.433000564575195", + "elevation_ft": "4714", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Jagersfontain", + "scheduled_service": "no", + "gps_code": "FAJF" + }, + { + "id": "41142", + "ident": "FAJP", + "type": "small_airport", + "name": "Joubertina Airport", + "latitude_deg": "-33.830747", + "longitude_deg": "23.827908", + "elevation_ft": "2007", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Joubertina", + "scheduled_service": "no", + "gps_code": "FAJP" + }, + { + "id": "41147", + "ident": "FAJV", + "type": "small_airport", + "name": "Jansenville Airport", + "latitude_deg": "-32.9390983581543", + "longitude_deg": "24.670700073242188", + "elevation_ft": "1430", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Jansenville", + "scheduled_service": "no", + "gps_code": "FAJV" + }, + { + "id": "41258", + "ident": "FAKB", + "type": "small_airport", + "name": "Kosibaai Airport", + "latitude_deg": "-27.018262", + "longitude_deg": "32.750399", + "elevation_ft": "140", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Kosi Bay", + "scheduled_service": "no", + "gps_code": "FAKB" + }, + { + "id": "2793", + "ident": "FAKD", + "type": "medium_airport", + "name": "P C Pelser Airport", + "latitude_deg": "-26.8710994720459", + "longitude_deg": "26.718000411987305", + "elevation_ft": "4444", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Klerksdorp", + "scheduled_service": "no", + "gps_code": "FAKD", + "iata_code": "KXE" + }, + { + "id": "27287", + "ident": "FAKE", + "type": "small_airport", + "name": "Keimouth Airport", + "latitude_deg": "-32.697337", + "longitude_deg": "28.356291", + "elevation_ft": "222", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Keimouth", + "scheduled_service": "no", + "gps_code": "FAKE" + }, + { + "id": "41155", + "ident": "FAKF", + "type": "small_airport", + "name": "Koffee Bay Airport", + "latitude_deg": "-31.957335", + "longitude_deg": "29.174543", + "elevation_ft": "10", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Koffee Bay", + "scheduled_service": "no", + "gps_code": "FAKF" + }, + { + "id": "30036", + "ident": "FAKG", + "type": "small_airport", + "name": "Komati Power Station Airport", + "latitude_deg": "-26.093299865722656", + "longitude_deg": "29.45560073852539", + "elevation_ft": "5289", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Komati Power Station", + "scheduled_service": "no", + "gps_code": "FAKG" + }, + { + "id": "30023", + "ident": "FAKH", + "type": "small_airport", + "name": "Kenhardt Airport", + "latitude_deg": "-29.32670021057129", + "longitude_deg": "21.188600540161133", + "elevation_ft": "2723", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Kenhardt", + "scheduled_service": "no", + "gps_code": "FAKH" + }, + { + "id": "31048", + "ident": "FAKI", + "type": "small_airport", + "name": "Kobb Inn Airport", + "latitude_deg": "-32.433799", + "longitude_deg": "28.683467", + "elevation_ft": "147", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Kobb Inn", + "scheduled_service": "no", + "gps_code": "FAKI", + "home_link": "http://www.kobinn.co.za/", + "keywords": "Resort,Lodge,Fly-inn" + }, + { + "id": "31049", + "ident": "FAKK", + "type": "small_airport", + "name": "Kakamas Airport", + "latitude_deg": "-28.808598", + "longitude_deg": "20.644936", + "elevation_ft": "2322", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Kakamas", + "scheduled_service": "no", + "gps_code": "FAKK" + }, + { + "id": "30045", + "ident": "FAKL", + "type": "small_airport", + "name": "Kriel Airport", + "latitude_deg": "-26.251100540161133", + "longitude_deg": "29.194700241088867", + "elevation_ft": "5262", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Kriel", + "scheduled_service": "no", + "gps_code": "FAKL" + }, + { + "id": "2794", + "ident": "FAKM", + "type": "medium_airport", + "name": "Kimberley Airport", + "latitude_deg": "-28.802799224900003", + "longitude_deg": "24.7651996613", + "elevation_ft": "3950", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Kimberley", + "scheduled_service": "yes", + "gps_code": "FAKM", + "iata_code": "KIM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kimberley_Airport" + }, + { + "id": "2795", + "ident": "FAKN", + "type": "medium_airport", + "name": "Kruger Mpumalanga International Airport", + "latitude_deg": "-25.3831996918", + "longitude_deg": "31.1056003571", + "elevation_ft": "2829", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Mpumalanga", + "scheduled_service": "yes", + "gps_code": "FAKN", + "iata_code": "MQP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kruger_Mpumalanga_International_Airport" + }, + { + "id": "30037", + "ident": "FAKO", + "type": "small_airport", + "name": "Komga Airport", + "latitude_deg": "-32.59280014038086", + "longitude_deg": "27.87579917907715", + "elevation_ft": "2178", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Komga", + "scheduled_service": "no", + "gps_code": "FAKO" + }, + { + "id": "30038", + "ident": "FAKP", + "type": "small_airport", + "name": "Komatipoort Airport", + "latitude_deg": "-25.44029998779297", + "longitude_deg": "31.93000030517578", + "elevation_ft": "541", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Komatipoort", + "scheduled_service": "no", + "gps_code": "FAKP", + "iata_code": "KOF" + }, + { + "id": "2796", + "ident": "FAKR", + "type": "small_airport", + "name": "Krugersdorp Airport", + "latitude_deg": "-26.080826", + "longitude_deg": "27.725915", + "elevation_ft": "5499", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Krugersdorp", + "scheduled_service": "no", + "gps_code": "FAKR", + "home_link": "http://www.fakr.co.za", + "keywords": "Jack Taylor" + }, + { + "id": "2797", + "ident": "FAKS", + "type": "small_airport", + "name": "Kroonstad Airport", + "latitude_deg": "-27.660600662231445", + "longitude_deg": "27.315799713134766", + "elevation_ft": "4700", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Kroonstad", + "scheduled_service": "no", + "gps_code": "FAKS" + }, + { + "id": "27288", + "ident": "FAKT", + "type": "small_airport", + "name": "Kitty Hawk Airport", + "latitude_deg": "-25.860000610399997", + "longitude_deg": "28.4500007629", + "elevation_ft": "4619", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Boschkop", + "scheduled_service": "no", + "gps_code": "FAKT", + "home_link": "http://www.fakt.co.za" + }, + { + "id": "2798", + "ident": "FAKU", + "type": "medium_airport", + "name": "Johan Pienaar Airport", + "latitude_deg": "-27.45669937133789", + "longitude_deg": "23.411399841308594", + "elevation_ft": "4382", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Kuruman", + "scheduled_service": "no", + "gps_code": "FAKU", + "iata_code": "KMH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Johan_Pienaar_Airport" + }, + { + "id": "30034", + "ident": "FAKV", + "type": "small_airport", + "name": "Koffyfontein Min Airport", + "latitude_deg": "-29.43939971923828", + "longitude_deg": "24.98859977722168", + "elevation_ft": "3996", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Koffyfontein", + "scheduled_service": "no", + "gps_code": "FAKV" + }, + { + "id": "41140", + "ident": "FAKW", + "type": "small_airport", + "name": "Kareedouw Airport", + "latitude_deg": "-33.96666717529297", + "longitude_deg": "24.299999237060547", + "elevation_ft": "1050", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Kareedouw", + "scheduled_service": "no", + "gps_code": "FAKW" + }, + { + "id": "41143", + "ident": "FAKX", + "type": "small_airport", + "name": "Kenton on Sea Airport", + "latitude_deg": "-33.670329", + "longitude_deg": "26.630593", + "elevation_ft": "172", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Kenton On Sea", + "scheduled_service": "no", + "gps_code": "FAKX", + "keywords": "Boesmansrivermond Airfield, Bushman's River Mouth" + }, + { + "id": "2799", + "ident": "FAKZ", + "type": "medium_airport", + "name": "Kleinsee Airport", + "latitude_deg": "-29.6884002686", + "longitude_deg": "17.093999862700002", + "elevation_ft": "270", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Kleinsee", + "scheduled_service": "no", + "gps_code": "FAKZ", + "iata_code": "KLZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kleinzee_Airport" + }, + { + "id": "312922", + "ident": "FAL", + "type": "closed", + "name": "Falcon State Airport", + "latitude_deg": "26.5856", + "longitude_deg": "-99.13985", + "elevation_ft": "358", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Roma", + "scheduled_service": "no", + "iata_code": "FAL" + }, + { + "id": "2800", + "ident": "FALA", + "type": "medium_airport", + "name": "Lanseria International Airport", + "latitude_deg": "-25.938499", + "longitude_deg": "27.9261", + "elevation_ft": "4517", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Johannesburg", + "scheduled_service": "yes", + "gps_code": "FALA", + "iata_code": "HLA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lanseria_Airport" + }, + { + "id": "30056", + "ident": "FALB", + "type": "small_airport", + "name": "Ladybrand Af Airport", + "latitude_deg": "-29.181100845336914", + "longitude_deg": "27.45359992980957", + "elevation_ft": "5180", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Ladybrand", + "scheduled_service": "no", + "gps_code": "FALB" + }, + { + "id": "2801", + "ident": "FALC", + "type": "medium_airport", + "name": "Lime Acres Finsch Mine Airport", + "latitude_deg": "-28.36009979248047", + "longitude_deg": "23.43910026550293", + "elevation_ft": "4900", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Lime Acres", + "scheduled_service": "no", + "gps_code": "FALC", + "iata_code": "LMR" + }, + { + "id": "41262", + "ident": "FALD", + "type": "small_airport", + "name": "Londolozi Airport", + "latitude_deg": "-24.7478", + "longitude_deg": "31.4743", + "elevation_ft": "1300", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Londolozi", + "scheduled_service": "no", + "gps_code": "FALD", + "iata_code": "LDZ" + }, + { + "id": "300795", + "ident": "FALE", + "type": "large_airport", + "name": "King Shaka International Airport", + "latitude_deg": "-29.6144444444", + "longitude_deg": "31.1197222222", + "elevation_ft": "295", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Durban", + "scheduled_service": "yes", + "gps_code": "FALE", + "iata_code": "DUR", + "wikipedia_link": "https://en.wikipedia.org/wiki/King_Shaka_International_Airport", + "keywords": "La Mercy Airport" + }, + { + "id": "31050", + "ident": "FALF", + "type": "small_airport", + "name": "Loeriesfontein Airport", + "latitude_deg": "-30.906400680541992", + "longitude_deg": "19.42530059814453", + "elevation_ft": "2997", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Loeriesfontein", + "scheduled_service": "no", + "gps_code": "FALF" + }, + { + "id": "41228", + "ident": "FALH", + "type": "small_airport", + "name": "Lohathla Military Airport", + "latitude_deg": "-28.036800384521484", + "longitude_deg": "23.09869956970215", + "elevation_ft": "4500", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Lohathla", + "scheduled_service": "no", + "gps_code": "FALH" + }, + { + "id": "2802", + "ident": "FALI", + "type": "small_airport", + "name": "Lichtenburg Airport", + "latitude_deg": "-26.17569923400879", + "longitude_deg": "26.184600830078125", + "elevation_ft": "4875", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Lichtenburg", + "scheduled_service": "no", + "gps_code": "FALI" + }, + { + "id": "30093", + "ident": "FALK", + "type": "small_airport", + "name": "Lusikisiki Airport", + "latitude_deg": "-31.36669921875", + "longitude_deg": "29.58329963684082", + "elevation_ft": "1831", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Lusikisiki", + "scheduled_service": "no", + "gps_code": "FALK", + "iata_code": "LUJ" + }, + { + "id": "30095", + "ident": "FALL", + "type": "small_airport", + "name": "Lydenburg Airport", + "latitude_deg": "-25.103300094604492", + "longitude_deg": "30.414199829101562", + "elevation_ft": "4882", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Lydenburg", + "scheduled_service": "no", + "gps_code": "FALL" + }, + { + "id": "2803", + "ident": "FALM", + "type": "small_airport", + "name": "Makhado Air Force Base Airport", + "latitude_deg": "-23.159900665283203", + "longitude_deg": "29.696500778198242", + "elevation_ft": "3069", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Louis Trichardt Southwest", + "scheduled_service": "no", + "gps_code": "FALM" + }, + { + "id": "2804", + "ident": "FALO", + "type": "small_airport", + "name": "Louis Trichardt Airport", + "latitude_deg": "-23.061899185180664", + "longitude_deg": "29.864700317382812", + "elevation_ft": "3025", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Louis Trichardt", + "scheduled_service": "no", + "gps_code": "FALO", + "iata_code": "LCD" + }, + { + "id": "41247", + "ident": "FALQ", + "type": "small_airport", + "name": "El Mirador Airport", + "latitude_deg": "-28.98611068725586", + "longitude_deg": "29.47972297668457", + "elevation_ft": "3897", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Ardmore", + "scheduled_service": "no", + "gps_code": "FALQ" + }, + { + "id": "41144", + "ident": "FALR", + "type": "small_airport", + "name": "Steytlerville Airport", + "latitude_deg": "-33.33700180053711", + "longitude_deg": "24.321399688720703", + "elevation_ft": "1450", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Steytlerville", + "scheduled_service": "no", + "gps_code": "FALR" + }, + { + "id": "41305", + "ident": "FALS", + "type": "small_airport", + "name": "Somersveld Airport", + "latitude_deg": "-33.2462272644043", + "longitude_deg": "18.479997634887695", + "elevation_ft": "196", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Somersveld", + "scheduled_service": "no", + "gps_code": "FALS" + }, + { + "id": "2805", + "ident": "FALW", + "type": "medium_airport", + "name": "Langebaanweg Airport", + "latitude_deg": "-32.968898773199996", + "longitude_deg": "18.1602993011", + "elevation_ft": "108", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Langebaanweg", + "scheduled_service": "no", + "gps_code": "FALW", + "iata_code": "SDB", + "wikipedia_link": "https://en.wikipedia.org/wiki/AFB_Langebaanweg" + }, + { + "id": "2806", + "ident": "FALY", + "type": "medium_airport", + "name": "Ladysmith Airport", + "latitude_deg": "-28.5816993713", + "longitude_deg": "29.749700546299998", + "elevation_ft": "3548", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Ladysmith", + "scheduled_service": "no", + "gps_code": "FALY", + "iata_code": "LAY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ladysmith_Airport" + }, + { + "id": "31051", + "ident": "FAMA", + "type": "small_airport", + "name": "Matatiele Airport", + "latitude_deg": "-30.322200775146484", + "longitude_deg": "28.794200897216797", + "elevation_ft": "4762", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Matatiele", + "scheduled_service": "no", + "gps_code": "FAMA" + }, + { + "id": "2807", + "ident": "FAMB", + "type": "small_airport", + "name": "Middelburg Airport", + "latitude_deg": "-25.684799194335938", + "longitude_deg": "29.440200805664062", + "elevation_ft": "4886", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Middelburg", + "scheduled_service": "no", + "gps_code": "FAMB" + }, + { + "id": "30136", + "ident": "FAMC", + "type": "small_airport", + "name": "Middelburg 2 Airport", + "latitude_deg": "-31.547199249267578", + "longitude_deg": "25.029399871826172", + "elevation_ft": "4022", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Cape Town", + "scheduled_service": "no", + "gps_code": "FAMC" + }, + { + "id": "2808", + "ident": "FAMD", + "type": "medium_airport", + "name": "Malamala Airport", + "latitude_deg": "-24.818099975585938", + "longitude_deg": "31.544599533081055", + "elevation_ft": "1124", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Malamala", + "scheduled_service": "yes", + "gps_code": "FAMD", + "iata_code": "AAM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mala_Mala_Airport" + }, + { + "id": "31052", + "ident": "FAMF", + "type": "small_airport", + "name": "Malabar Airport", + "latitude_deg": "-29.010929", + "longitude_deg": "23.849489", + "elevation_ft": "3348", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Malabar", + "scheduled_service": "no", + "gps_code": "FAMF" + }, + { + "id": "2809", + "ident": "FAMG", + "type": "medium_airport", + "name": "Margate Airport", + "latitude_deg": "-30.8574008942", + "longitude_deg": "30.343000412", + "elevation_ft": "495", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Margate", + "scheduled_service": "yes", + "gps_code": "FAMG", + "iata_code": "MGH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Margate_Airport" + }, + { + "id": "41285", + "ident": "FAMH", + "type": "small_airport", + "name": "Musina(Messina) Airport", + "latitude_deg": "-22.356000900299996", + "longitude_deg": "29.9862003326", + "elevation_ft": "1904", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Musina", + "scheduled_service": "no", + "gps_code": "FAMH", + "iata_code": "MEZ" + }, + { + "id": "2810", + "ident": "FAMI", + "type": "small_airport", + "name": "Marble Hall Airport", + "latitude_deg": "-24.9891", + "longitude_deg": "29.2831", + "elevation_ft": "2980", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Marble Hall", + "scheduled_service": "no", + "gps_code": "FAMI" + }, + { + "id": "2811", + "ident": "FAMJ", + "type": "small_airport", + "name": "Majuba Power Station Airport", + "latitude_deg": "-27.079299926799997", + "longitude_deg": "29.7784996033", + "elevation_ft": "5600", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Amerspoort", + "scheduled_service": "no", + "gps_code": "FAMJ" + }, + { + "id": "41289", + "ident": "FAMK", + "type": "small_airport", + "name": "Mafeking Airport", + "latitude_deg": "-25.816667556762695", + "longitude_deg": "25.616666793823242", + "elevation_ft": "4201", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Mafeking", + "scheduled_service": "no", + "gps_code": "FAMK" + }, + { + "id": "30111", + "ident": "FAML", + "type": "small_airport", + "name": "Manyani Game Lodge Airport", + "latitude_deg": "-25.816699981689453", + "longitude_deg": "25.716699600219727", + "elevation_ft": "4383", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Mafeking", + "scheduled_service": "no", + "gps_code": "FAML" + }, + { + "id": "2812", + "ident": "FAMM", + "type": "medium_airport", + "name": "Mmabatho International Airport", + "latitude_deg": "-25.798400878900004", + "longitude_deg": "25.548000335699996", + "elevation_ft": "4181", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Mafeking", + "scheduled_service": "yes", + "gps_code": "FAMM", + "iata_code": "MBD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mmabatho_International_Airport", + "keywords": "Mafikeng" + }, + { + "id": "2813", + "ident": "FAMN", + "type": "medium_airport", + "name": "Riverside Airport", + "latitude_deg": "-25.4300003052", + "longitude_deg": "31.5767002106", + "elevation_ft": "1024", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Malelane", + "scheduled_service": "no", + "gps_code": "FAMN", + "iata_code": "LLE" + }, + { + "id": "30164", + "ident": "FAMO", + "type": "small_airport", + "name": "Mossel Bay Airport", + "latitude_deg": "-34.158746", + "longitude_deg": "22.055676", + "elevation_ft": "531", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Mossel Bay", + "scheduled_service": "no", + "gps_code": "FAMO", + "iata_code": "MZY", + "home_link": "http://www.mosselbayaero.com/wmenu.php" + }, + { + "id": "41284", + "ident": "FAMP", + "type": "small_airport", + "name": "Madimbo Airport", + "latitude_deg": "-22.37470054626465", + "longitude_deg": "30.88159942626953", + "elevation_ft": "2116", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Matshakatini", + "scheduled_service": "no", + "gps_code": "FAMP" + }, + { + "id": "41163", + "ident": "FAMQ", + "type": "small_airport", + "name": "Maclear Airport", + "latitude_deg": "-31.072201", + "longitude_deg": "28.376141", + "elevation_ft": "4106", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Nqanqarhu (Maclear)", + "scheduled_service": "no", + "gps_code": "FAMQ" + }, + { + "id": "2814", + "ident": "FAMS", + "type": "medium_airport", + "name": "Morningside Farm Airport", + "latitude_deg": "-25.7045001984", + "longitude_deg": "26.9090003967", + "elevation_ft": "4251", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Silveroaks", + "scheduled_service": "no", + "gps_code": "FAMS" + }, + { + "id": "41157", + "ident": "FAMT", + "type": "small_airport", + "name": "Molteno Airport", + "latitude_deg": "-31.38960075378418", + "longitude_deg": "26.348400115966797", + "elevation_ft": "5254", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Molteno", + "scheduled_service": "no", + "gps_code": "FAMT" + }, + { + "id": "2815", + "ident": "FAMU", + "type": "medium_airport", + "name": "Mkuze Airport", + "latitude_deg": "-27.626100540161133", + "longitude_deg": "32.0443000793457", + "elevation_ft": "400", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Mkuze", + "scheduled_service": "no", + "gps_code": "FAMU", + "iata_code": "MZQ" + }, + { + "id": "41265", + "ident": "FAMV", + "type": "closed", + "name": "Montrose Airport", + "latitude_deg": "-24.625", + "longitude_deg": "30.186111", + "elevation_ft": "2690", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Montrose", + "scheduled_service": "no", + "keywords": "FAMV" + }, + { + "id": "41255", + "ident": "FAMX", + "type": "small_airport", + "name": "Mbazwana Airport", + "latitude_deg": "-27.481399536132812", + "longitude_deg": "32.59389877319336", + "elevation_ft": "195", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Mbazwana", + "scheduled_service": "no", + "gps_code": "FAMX" + }, + { + "id": "30104", + "ident": "FAMY", + "type": "small_airport", + "name": "Malmesbury Airport", + "latitude_deg": "-33.46189880371094", + "longitude_deg": "18.7007999420166", + "elevation_ft": "971", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Mammesbury", + "scheduled_service": "no", + "gps_code": "FAMY" + }, + { + "id": "31053", + "ident": "FAMZ", + "type": "small_airport", + "name": "Msauli Airport", + "latitude_deg": "-26.049999237060547", + "longitude_deg": "31.017000198364258", + "elevation_ft": "2548", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Msauli", + "scheduled_service": "no", + "gps_code": "FAMZ" + }, + { + "id": "41253", + "ident": "FANA", + "type": "small_airport", + "name": "Nongoma Airport", + "latitude_deg": "-27.913999557495117", + "longitude_deg": "31.656200408935547", + "elevation_ft": "2596", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Nongoma", + "scheduled_service": "no", + "gps_code": "FANA" + }, + { + "id": "2816", + "ident": "FANC", + "type": "medium_airport", + "name": "Newcastle Airport", + "latitude_deg": "-27.7705993652", + "longitude_deg": "29.976900100699996", + "elevation_ft": "4074", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Newcastle", + "scheduled_service": "no", + "gps_code": "FANC", + "iata_code": "NCS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Newcastle_Airport_(South_Africa)" + }, + { + "id": "41271", + "ident": "FANG", + "type": "small_airport", + "name": "Ngala Airport", + "latitude_deg": "-24.389", + "longitude_deg": "31.326", + "elevation_ft": "3357", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Ngala", + "scheduled_service": "no", + "gps_code": "FANG", + "iata_code": "NGL" + }, + { + "id": "41243", + "ident": "FANH", + "type": "small_airport", + "name": "New Hanover Airport", + "latitude_deg": "-29.356000900268555", + "longitude_deg": "30.518400192260742", + "elevation_ft": "2490", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "New Hanover", + "scheduled_service": "no", + "gps_code": "FANH" + }, + { + "id": "41205", + "ident": "FANL", + "type": "small_airport", + "name": "New Largo Airport", + "latitude_deg": "-25.978500366210938", + "longitude_deg": "28.984399795532227", + "elevation_ft": "5038", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Witbank", + "scheduled_service": "no", + "gps_code": "FANL" + }, + { + "id": "27289", + "ident": "FANS", + "type": "small_airport", + "name": "Nelspruit Airport", + "latitude_deg": "-25.5", + "longitude_deg": "30.9137992859", + "elevation_ft": "2875", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Nelspruit", + "scheduled_service": "no", + "gps_code": "FANS", + "iata_code": "NLP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nelspruit_Airport" + }, + { + "id": "41214", + "ident": "FANV", + "type": "small_airport", + "name": "Nieuwoudtville Airfield", + "latitude_deg": "-31.350000381469727", + "longitude_deg": "19.116666793823242", + "elevation_ft": "1890", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Nieuwoudtville", + "scheduled_service": "no", + "gps_code": "FANV" + }, + { + "id": "2817", + "ident": "FANY", + "type": "small_airport", + "name": "Nylstroom Airfield", + "latitude_deg": "-24.686100006103516", + "longitude_deg": "28.434900283813477", + "elevation_ft": "3900", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Modimolle", + "scheduled_service": "no", + "gps_code": "FANY" + }, + { + "id": "2818", + "ident": "FAOB", + "type": "small_airport", + "name": "Overberg Airport", + "latitude_deg": "-34.563474", + "longitude_deg": "20.252438", + "elevation_ft": "52", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Overberg", + "scheduled_service": "no", + "gps_code": "FAOB", + "iata_code": "OVG", + "wikipedia_link": "https://en.wikipedia.org/wiki/AFB_Overberg" + }, + { + "id": "41178", + "ident": "FAOD", + "type": "small_airport", + "name": "Odendaalsrus Airport", + "latitude_deg": "-27.871000289916992", + "longitude_deg": "26.69339942932129", + "elevation_ft": "1340", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Odendaalsrus", + "scheduled_service": "no", + "gps_code": "FAOD" + }, + { + "id": "30210", + "ident": "FAOF", + "type": "small_airport", + "name": "Jack Duvenhage Airport", + "latitude_deg": "-27.961700439453125", + "longitude_deg": "22.71660041809082", + "elevation_ft": "4216", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Olifantshoek", + "scheduled_service": "no", + "gps_code": "FAOF" + }, + { + "id": "2819", + "ident": "FAOH", + "type": "medium_airport", + "name": "Oudtshoorn Airport", + "latitude_deg": "-33.6069984436", + "longitude_deg": "22.188999176", + "elevation_ft": "1063", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Oudtshoorn", + "scheduled_service": "no", + "gps_code": "FAOH", + "iata_code": "OUH", + "local_code": "FAOH" + }, + { + "id": "30219", + "ident": "FAOI", + "type": "small_airport", + "name": "Orient Glider Airport", + "latitude_deg": "-26.039400100708008", + "longitude_deg": "27.595600128173828", + "elevation_ft": "5102", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Orient", + "scheduled_service": "no", + "gps_code": "FAOI" + }, + { + "id": "31054", + "ident": "FAOL", + "type": "small_airport", + "name": "Othawa Airport", + "latitude_deg": "-24.732999801635742", + "longitude_deg": "31.399999618530273", + "elevation_ft": "1098", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Otthawa", + "scheduled_service": "no", + "gps_code": "FAOL" + }, + { + "id": "30222", + "ident": "FAON", + "type": "small_airport", + "name": "Ornate Lake - St Lucia Airport", + "latitude_deg": "-28.044900894165", + "longitude_deg": "32.425399780273", + "elevation_ft": "128", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Hluhluwe", + "scheduled_service": "no", + "gps_code": "FAON", + "keywords": "Hell's Gate Airport" + }, + { + "id": "31055", + "ident": "FAOR", + "type": "large_airport", + "name": "OR Tambo International Airport", + "latitude_deg": "-26.1392", + "longitude_deg": "28.246", + "elevation_ft": "5558", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Johannesburg", + "scheduled_service": "yes", + "gps_code": "FAOR", + "iata_code": "JNB", + "keywords": "Johannesburg International Airport" + }, + { + "id": "41286", + "ident": "FAOT", + "type": "small_airport", + "name": "Ottosdal Airport", + "latitude_deg": "-26.79829978942871", + "longitude_deg": "26.00029945373535", + "elevation_ft": "4860", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Ottosdal", + "scheduled_service": "no", + "gps_code": "FAOT" + }, + { + "id": "30220", + "ident": "FAOY", + "type": "small_airport", + "name": "Orkney Airport", + "latitude_deg": "-26.98390007019043", + "longitude_deg": "26.651399612426758", + "elevation_ft": "4265", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Orkney", + "scheduled_service": "no", + "gps_code": "FAOY" + }, + { + "id": "27290", + "ident": "FAPA", + "type": "small_airport", + "name": "Port Alfred Airport", + "latitude_deg": "-33.5541992188", + "longitude_deg": "26.877700805699998", + "elevation_ft": "275", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Port Alfred", + "scheduled_service": "no", + "gps_code": "FAPA", + "iata_code": "AFD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Alfred_Airport" + }, + { + "id": "30294", + "ident": "FAPC", + "type": "small_airport", + "name": "Prince Albert Airport", + "latitude_deg": "-33.20249938964844", + "longitude_deg": "22.03219985961914", + "elevation_ft": "2001", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Prince Albert", + "scheduled_service": "no", + "gps_code": "FAPC" + }, + { + "id": "30275", + "ident": "FAPD", + "type": "small_airport", + "name": "Pofadder Airport", + "latitude_deg": "-29.141700744628906", + "longitude_deg": "19.41309928894043", + "elevation_ft": "3241", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Pofadder", + "scheduled_service": "no", + "gps_code": "FAPD" + }, + { + "id": "2820", + "ident": "FAPE", + "type": "medium_airport", + "name": "Chief Dawid Stuurman International Airport", + "latitude_deg": "-33.984901", + "longitude_deg": "25.6173", + "elevation_ft": "226", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Gqeberha (Port Elizabeth)", + "scheduled_service": "yes", + "gps_code": "FAPE", + "iata_code": "PLZ", + "home_link": "http://www.acsa.co.za/home.asp?pid=236", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chief_Dawid_Stuurman_International_Airport", + "keywords": "H F Verwoerd Airport, Port Elizabeth International Airport" + }, + { + "id": "30258", + "ident": "FAPF", + "type": "small_airport", + "name": "Piet Retief Airport", + "latitude_deg": "-26.9969005585", + "longitude_deg": "30.840799331699998", + "elevation_ft": "4423", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Piet Retief", + "scheduled_service": "no", + "gps_code": "FAPF" + }, + { + "id": "2821", + "ident": "FAPG", + "type": "medium_airport", + "name": "Plettenberg Bay Airport", + "latitude_deg": "-34.08816", + "longitude_deg": "23.328723", + "elevation_ft": "465", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Plettenberg Bay", + "scheduled_service": "yes", + "gps_code": "FAPG", + "iata_code": "PBZ" + }, + { + "id": "2822", + "ident": "FAPH", + "type": "medium_airport", + "name": "Hendrik Van Eck Airport", + "latitude_deg": "-23.937200546299998", + "longitude_deg": "31.1553993225", + "elevation_ft": "1432", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Phalaborwa", + "scheduled_service": "yes", + "gps_code": "FAPH", + "iata_code": "PHW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hendrik_Van_Eck_Airport" + }, + { + "id": "2823", + "ident": "FAPI", + "type": "medium_airport", + "name": "Pietersburg Municipal Airport", + "latitude_deg": "-23.9260997772", + "longitude_deg": "29.4843997955", + "elevation_ft": "4354", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Polokwane", + "scheduled_service": "yes", + "gps_code": "FAPI", + "keywords": "PTG" + }, + { + "id": "2824", + "ident": "FAPJ", + "type": "medium_airport", + "name": "Port St Johns Airport", + "latitude_deg": "-31.60612", + "longitude_deg": "29.52175", + "elevation_ft": "1227", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Port St Johns", + "scheduled_service": "no", + "gps_code": "FAPJ", + "iata_code": "JOH" + }, + { + "id": "30291", + "ident": "FAPK", + "type": "small_airport", + "name": "Prieska Airport", + "latitude_deg": "-29.6835994720459", + "longitude_deg": "22.770599365234375", + "elevation_ft": "3100", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Prieska", + "scheduled_service": "no", + "gps_code": "FAPK", + "iata_code": "PRK" + }, + { + "id": "30278", + "ident": "FAPL", + "type": "small_airport", + "name": "Pongola Airport", + "latitude_deg": "-27.3622", + "longitude_deg": "31.606701", + "elevation_ft": "942", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Pongola", + "scheduled_service": "no", + "gps_code": "FAPL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pongola_Airport" + }, + { + "id": "2825", + "ident": "FAPM", + "type": "medium_airport", + "name": "Pietermaritzburg Airport", + "latitude_deg": "-29.649000167799997", + "longitude_deg": "30.3987007141", + "elevation_ft": "2423", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Pietermaritzburg", + "scheduled_service": "yes", + "gps_code": "FAPM", + "iata_code": "PZB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pietermaritzburg_Airport" + }, + { + "id": "2826", + "ident": "FAPN", + "type": "small_airport", + "name": "Pilanesberg International Airport", + "latitude_deg": "-25.333799", + "longitude_deg": "27.173401", + "elevation_ft": "3412", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Pilanesberg", + "scheduled_service": "yes", + "gps_code": "FAPN", + "iata_code": "NTY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pilanesberg_International_Airport" + }, + { + "id": "30262", + "ident": "FAPO", + "type": "small_airport", + "name": "Pilgrims Rest Airport", + "latitude_deg": "-24.785147", + "longitude_deg": "30.791899", + "elevation_ft": "3802", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Mankolehlotlo", + "scheduled_service": "no", + "gps_code": "FAPO" + }, + { + "id": "2827", + "ident": "FAPP", + "type": "medium_airport", + "name": "Polokwane International Airport", + "latitude_deg": "-23.845269", + "longitude_deg": "29.458615", + "elevation_ft": "4076", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Polokwane", + "scheduled_service": "yes", + "gps_code": "FAPP", + "iata_code": "PTG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Polokwane_International_Airport", + "keywords": "FAPB, AFB Pietersburg, Pietersburg International Airport, Gateway International Airport" + }, + { + "id": "31056", + "ident": "FAPQ", + "type": "small_airport", + "name": "Punda Maria(Malia) Airport", + "latitude_deg": "-22.77", + "longitude_deg": "31.0108", + "elevation_ft": "1500", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Kruger National Park", + "scheduled_service": "no", + "gps_code": "FAPQ" + }, + { + "id": "2828", + "ident": "FAPS", + "type": "medium_airport", + "name": "Potchefstroom Airport", + "latitude_deg": "-26.670999527", + "longitude_deg": "27.0818996429", + "elevation_ft": "4520", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Potchefstroom", + "scheduled_service": "no", + "gps_code": "FAPS", + "iata_code": "PCF" + }, + { + "id": "30283", + "ident": "FAPT", + "type": "small_airport", + "name": "Posmasburg Soil Airport", + "latitude_deg": "-28.338600158691406", + "longitude_deg": "23.079700469970703", + "elevation_ft": "4301", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Postmasburg", + "scheduled_service": "no", + "gps_code": "FAPT" + }, + { + "id": "41302", + "ident": "FAPU", + "type": "small_airport", + "name": "Paarl East Airport", + "latitude_deg": "-33.710766666699996", + "longitude_deg": "19.024388888900003", + "elevation_ft": "596", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Paarl", + "scheduled_service": "no", + "gps_code": "FAPU" + }, + { + "id": "31057", + "ident": "FAPV", + "type": "small_airport", + "name": "Petrusville Airport", + "latitude_deg": "-30.08180046081543", + "longitude_deg": "24.67959976196289", + "elevation_ft": "4116", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Petrusville", + "scheduled_service": "no", + "gps_code": "FAPV" + }, + { + "id": "30257", + "ident": "FAPW", + "type": "small_airport", + "name": "Pietersrus Airport", + "latitude_deg": "-26.60610008239746", + "longitude_deg": "29.329200744628906", + "elevation_ft": "5472", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Pietersrus", + "scheduled_service": "no", + "gps_code": "FAPW" + }, + { + "id": "41138", + "ident": "FAPX", + "type": "small_airport", + "name": "Paradise Beach Airport", + "latitude_deg": "-34.10133", + "longitude_deg": "24.884352", + "elevation_ft": "15", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Jeffreys Bay", + "scheduled_service": "no", + "gps_code": "FAPX" + }, + { + "id": "2829", + "ident": "FAPY", + "type": "small_airport", + "name": "Parys Airport", + "latitude_deg": "-26.889299392700195", + "longitude_deg": "27.503400802612305", + "elevation_ft": "4740", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Parys", + "scheduled_service": "no", + "gps_code": "FAPY" + }, + { + "id": "27291", + "ident": "FAPZ", + "type": "small_airport", + "name": "Progress Airport", + "latitude_deg": "-33.926448", + "longitude_deg": "25.371916", + "elevation_ft": "748", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Sunlands", + "scheduled_service": "no", + "gps_code": "FAPZ" + }, + { + "id": "308194", + "ident": "FAQF", + "type": "small_airport", + "name": "Pomfret Airport", + "latitude_deg": "-25.847700119", + "longitude_deg": "23.537300109900002", + "elevation_ft": "3817", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Pomfret", + "scheduled_service": "no", + "gps_code": "FAQF" + }, + { + "id": "41273", + "ident": "FAQR", + "type": "closed", + "name": "Potgietersrus Airport", + "latitude_deg": "-24.233334", + "longitude_deg": "28.983334", + "elevation_ft": "3500", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Potgietersus", + "scheduled_service": "no", + "gps_code": "FAQR", + "keywords": "\"Potties\", Potgietersrus Mine" + }, + { + "id": "2830", + "ident": "FAQT", + "type": "medium_airport", + "name": "Queenstown Airport", + "latitude_deg": "-31.92020034790039", + "longitude_deg": "26.882200241088867", + "elevation_ft": "3637", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Queenstown", + "scheduled_service": "no", + "gps_code": "FAQT", + "iata_code": "UTW" + }, + { + "id": "41190", + "ident": "FARA", + "type": "small_airport", + "name": "Petit Airport", + "latitude_deg": "-26.0845963451", + "longitude_deg": "28.390386581399998", + "elevation_ft": "5460", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Daveyton", + "scheduled_service": "no", + "gps_code": "FARA" + }, + { + "id": "2831", + "ident": "FARB", + "type": "medium_airport", + "name": "Richards Bay Airport", + "latitude_deg": "-28.740999221800003", + "longitude_deg": "32.0920982361", + "elevation_ft": "109", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Richards Bay", + "scheduled_service": "yes", + "gps_code": "FARB", + "iata_code": "RCB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Richards_Bay_Airport" + }, + { + "id": "30344", + "ident": "FARD", + "type": "small_airport", + "name": "Riversdale Airport", + "latitude_deg": "-34.111698150634766", + "longitude_deg": "21.262800216674805", + "elevation_ft": "591", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Riversdale", + "scheduled_service": "no", + "gps_code": "FARD" + }, + { + "id": "2832", + "ident": "FARG", + "type": "medium_airport", + "name": "Rustenburg Airport", + "latitude_deg": "-25.6443004608", + "longitude_deg": "27.271099090599996", + "elevation_ft": "3700", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Rustenburg", + "scheduled_service": "no", + "gps_code": "FARG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rustenburg_Airfield" + }, + { + "id": "30329", + "ident": "FARI", + "type": "small_airport", + "name": "Reivilo Airport", + "latitude_deg": "-27.547199249267578", + "longitude_deg": "24.172500610351562", + "elevation_ft": "4715", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Reivilo", + "scheduled_service": "no", + "gps_code": "FARI", + "iata_code": "RVO" + }, + { + "id": "41213", + "ident": "FARM", + "type": "small_airport", + "name": "Richmond Airport", + "latitude_deg": "-31.423500061035156", + "longitude_deg": "23.978200912475586", + "elevation_ft": "4731", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "FARM" + }, + { + "id": "41261", + "ident": "FARO", + "type": "small_airport", + "name": "Rooiberg Airport", + "latitude_deg": "-24.7777888889", + "longitude_deg": "27.7523361111", + "elevation_ft": "3811", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Rooiberg", + "scheduled_service": "no", + "gps_code": "FARO" + }, + { + "id": "2833", + "ident": "FARS", + "type": "medium_airport", + "name": "Robertson Airport", + "latitude_deg": "-33.812198638916016", + "longitude_deg": "19.902799606323242", + "elevation_ft": "640", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Robertson", + "scheduled_service": "no", + "gps_code": "FARS", + "iata_code": "ROD" + }, + { + "id": "30328", + "ident": "FARZ", + "type": "small_airport", + "name": "Reitz Airport", + "latitude_deg": "-22.78420066833496", + "longitude_deg": "28.430299758911133", + "elevation_ft": "5331", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Maasstroom", + "scheduled_service": "no", + "gps_code": "FARZ" + }, + { + "id": "41241", + "ident": "FASA", + "type": "closed", + "name": "Sani Pass Airport", + "latitude_deg": "-29.6572", + "longitude_deg": "29.447701", + "elevation_ft": "5933", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Sani Pass", + "scheduled_service": "no", + "gps_code": "FASA" + }, + { + "id": "2834", + "ident": "FASB", + "type": "medium_airport", + "name": "Springbok Airport", + "latitude_deg": "-29.689300537109375", + "longitude_deg": "17.939599990844727", + "elevation_ft": "2690", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Springbok", + "scheduled_service": "no", + "gps_code": "FASB", + "iata_code": "SBU" + }, + { + "id": "2835", + "ident": "FASC", + "type": "medium_airport", + "name": "Secunda Airport", + "latitude_deg": "-26.52409935", + "longitude_deg": "29.170099258399997", + "elevation_ft": "5250", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Secunda", + "scheduled_service": "no", + "gps_code": "FASC", + "iata_code": "ZEC" + }, + { + "id": "2836", + "ident": "FASD", + "type": "medium_airport", + "name": "Saldanha/Vredenburg Airport", + "latitude_deg": "-32.9641", + "longitude_deg": "17.969299", + "elevation_ft": "50", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Saldanha-Vredenburg", + "scheduled_service": "no", + "gps_code": "FASD" + }, + { + "id": "41210", + "ident": "FASE", + "type": "small_airport", + "name": "Sabi Sabi Airport", + "latitude_deg": "-24.947375434199998", + "longitude_deg": "31.4488477707", + "elevation_ft": "1276", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Belfast", + "scheduled_service": "no", + "gps_code": "FASE", + "iata_code": "GSS" + }, + { + "id": "30400", + "ident": "FASG", + "type": "small_airport", + "name": "Schweizer Reneke Airport", + "latitude_deg": "-27.16309928894043", + "longitude_deg": "25.286100387573242", + "elevation_ft": "4373", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Schweizer Reneke", + "scheduled_service": "no", + "gps_code": "FASG" + }, + { + "id": "27295", + "ident": "FASH", + "type": "small_airport", + "name": "Stellenbosch Airport", + "latitude_deg": "-33.980983", + "longitude_deg": "18.822327", + "elevation_ft": "295", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Stellenbosch", + "scheduled_service": "no", + "gps_code": "FASH", + "home_link": "http://www.stelfly.co.za/", + "keywords": "Stellenbosch Flying Club" + }, + { + "id": "2837", + "ident": "FASI", + "type": "small_airport", + "name": "Springs Airfield", + "latitude_deg": "-26.2494004736", + "longitude_deg": "28.3982715607", + "elevation_ft": "5340", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Del Fouche", + "scheduled_service": "no", + "gps_code": "FASI" + }, + { + "id": "27292", + "ident": "FASJ", + "type": "small_airport", + "name": "Saffier Airport", + "latitude_deg": "-26.760000228881836", + "longitude_deg": "27.760000228881836", + "elevation_ft": "4700", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Saffier", + "scheduled_service": "no", + "gps_code": "FASJ" + }, + { + "id": "2838", + "ident": "FASK", + "type": "small_airport", + "name": "Swartkop Air Force Base", + "latitude_deg": "-25.8097000122", + "longitude_deg": "28.164600372299997", + "elevation_ft": "4780", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Pretoria", + "scheduled_service": "no", + "gps_code": "FASK", + "wikipedia_link": "https://en.wikipedia.org/wiki/AFB_Swartkop" + }, + { + "id": "31059", + "ident": "FASL", + "type": "small_airport", + "name": "Sutherland Airport", + "latitude_deg": "-32.48820114135742", + "longitude_deg": "20.697099685668945", + "elevation_ft": "5247", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Sutherland", + "scheduled_service": "no", + "gps_code": "FASL" + }, + { + "id": "30419", + "ident": "FASM", + "type": "small_airport", + "name": "Siteka Airport", + "latitude_deg": "-29.325000762939453", + "longitude_deg": "30.149200439453125", + "elevation_ft": "4400", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Siteka", + "scheduled_service": "no", + "gps_code": "FASM" + }, + { + "id": "30407", + "ident": "FASN", + "type": "small_airport", + "name": "Senekal Airport", + "latitude_deg": "-28.31220054626465", + "longitude_deg": "27.646099090576172", + "elevation_ft": "4849", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Senekal", + "scheduled_service": "no", + "gps_code": "FASN" + }, + { + "id": "27294", + "ident": "FASR", + "type": "small_airport", + "name": "Standerton Airport", + "latitude_deg": "-26.927000045776367", + "longitude_deg": "29.209999084472656", + "elevation_ft": "5200", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Standerton", + "scheduled_service": "no", + "gps_code": "FASR" + }, + { + "id": "2839", + "ident": "FASS", + "type": "medium_airport", + "name": "Sishen Airport", + "latitude_deg": "-27.6485996246", + "longitude_deg": "22.9993000031", + "elevation_ft": "3848", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Sishen", + "scheduled_service": "no", + "gps_code": "FASS", + "iata_code": "SIS" + }, + { + "id": "30428", + "ident": "FAST", + "type": "small_airport", + "name": "Somerset East Airport", + "latitude_deg": "-32.75019836425781", + "longitude_deg": "25.594999313354492", + "elevation_ft": "2349", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Somerset East", + "scheduled_service": "no", + "gps_code": "FAST" + }, + { + "id": "30365", + "ident": "FASU", + "type": "small_airport", + "name": "Sace Airport", + "latitude_deg": "-25.956899642944336", + "longitude_deg": "29.211700439453125", + "elevation_ft": "5151", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Sace", + "scheduled_service": "no", + "gps_code": "FASU" + }, + { + "id": "30424", + "ident": "FASW", + "type": "small_airport", + "name": "Slurry Airport", + "latitude_deg": "-25.81559944152832", + "longitude_deg": "25.88640022277832", + "elevation_ft": "4692", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Slurry", + "scheduled_service": "no", + "gps_code": "FASW" + }, + { + "id": "2840", + "ident": "FASX", + "type": "small_airport", + "name": "Hendrik Swellengrebel Airport", + "latitude_deg": "-34.04819869995117", + "longitude_deg": "20.474599838256836", + "elevation_ft": "407", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Swellendam", + "scheduled_service": "no", + "gps_code": "FASX" + }, + { + "id": "30453", + "ident": "FASY", + "type": "small_airport", + "name": "Baragwanath Aerodrome", + "latitude_deg": "-26.349199", + "longitude_deg": "27.7794", + "elevation_ft": "5420", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Hiltonia", + "scheduled_service": "no", + "local_code": "5407", + "keywords": "FASY, Sylerfontein Airport" + }, + { + "id": "2841", + "ident": "FASZ", + "type": "medium_airport", + "name": "Skukuza Airport", + "latitude_deg": "-24.960899353", + "longitude_deg": "31.5886993408", + "elevation_ft": "1020", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Skukuza", + "scheduled_service": "no", + "gps_code": "FASZ", + "iata_code": "SZK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Skukuza_Airport" + }, + { + "id": "41188", + "ident": "FATA", + "type": "small_airport", + "name": "Tedderfield Air Park", + "latitude_deg": "-26.352037738499998", + "longitude_deg": "27.9681630135", + "elevation_ft": "5198", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Tedderfield", + "scheduled_service": "no", + "gps_code": "FATA" + }, + { + "id": "41270", + "ident": "FATB", + "type": "small_airport", + "name": "Thorny Bush Game Lodge Airport", + "latitude_deg": "-24.416086", + "longitude_deg": "31.164232", + "elevation_ft": "1900", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Hoedspruit", + "scheduled_service": "no", + "gps_code": "FATB" + }, + { + "id": "2842", + "ident": "FATF", + "type": "small_airport", + "name": "Tommys Field Airport", + "latitude_deg": "-28.260000228881836", + "longitude_deg": "22.993200302124023", + "elevation_ft": "4360", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Beeshoek", + "scheduled_service": "no", + "gps_code": "FATF" + }, + { + "id": "345670", + "ident": "FATG", + "type": "small_airport", + "name": "Thaba Tholo Airport", + "latitude_deg": "-24.2811", + "longitude_deg": "27.2294", + "elevation_ft": "3200", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "scheduled_service": "no", + "gps_code": "FATG" + }, + { + "id": "30485", + "ident": "FATH", + "type": "small_airport", + "name": "Thohoyandou Airport", + "latitude_deg": "-23.076900482177734", + "longitude_deg": "30.38360023498535", + "elevation_ft": "2021", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Thohoyandou", + "scheduled_service": "no", + "gps_code": "FATH", + "iata_code": "THY" + }, + { + "id": "41266", + "ident": "FATI", + "type": "small_airport", + "name": "Thabazimbi Airport", + "latitude_deg": "-24.5760850299", + "longitude_deg": "27.4196863174", + "elevation_ft": "3225", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Thabazimbi", + "scheduled_service": "no", + "gps_code": "FATI" + }, + { + "id": "30496", + "ident": "FATK", + "type": "closed", + "name": "Tsitsikama Fly Airport", + "latitude_deg": "-34.084702", + "longitude_deg": "24.2897", + "elevation_ft": "381", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Tsitsikama", + "scheduled_service": "no", + "gps_code": "FATK" + }, + { + "id": "41150", + "ident": "FATM", + "type": "small_airport", + "name": "Stutterheim Airport", + "latitude_deg": "-32.56666564941406", + "longitude_deg": "27.450000762939453", + "elevation_ft": "2675", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Stutterheim", + "scheduled_service": "no", + "gps_code": "FATM" + }, + { + "id": "30482", + "ident": "FATN", + "type": "small_airport", + "name": "Thaba Nchu Tar Airport", + "latitude_deg": "-29.317800521850586", + "longitude_deg": "26.822799682617188", + "elevation_ft": "4941", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Homeward", + "scheduled_service": "no", + "gps_code": "FATN", + "iata_code": "TCU" + }, + { + "id": "2843", + "ident": "FATP", + "type": "small_airport", + "name": "New Tempe Airport", + "latitude_deg": "-29.035109", + "longitude_deg": "26.16268", + "elevation_ft": "4547", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Bloemfontein", + "scheduled_service": "no", + "gps_code": "FATP" + }, + { + "id": "27296", + "ident": "FATR", + "type": "small_airport", + "name": "Trennery's Airport", + "latitude_deg": "-32.639682", + "longitude_deg": "28.422969", + "elevation_ft": "114", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Qolora", + "scheduled_service": "no", + "gps_code": "FATR" + }, + { + "id": "2844", + "ident": "FATT", + "type": "small_airport", + "name": "Tutuka Power Station Airport", + "latitude_deg": "-26.775128", + "longitude_deg": "29.337542", + "elevation_ft": "5313", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Standerton", + "scheduled_service": "no", + "gps_code": "FATT" + }, + { + "id": "30563", + "ident": "FATW", + "type": "small_airport", + "name": "Witberg Tswalu Airport", + "latitude_deg": "-27.204999923706055", + "longitude_deg": "22.48189926147461", + "elevation_ft": "3921", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Tswalo Game Reserve", + "scheduled_service": "no", + "gps_code": "FATW" + }, + { + "id": "2845", + "ident": "FATZ", + "type": "medium_airport", + "name": "Tzaneen Airport", + "latitude_deg": "-23.8243999481", + "longitude_deg": "30.329299926799997", + "elevation_ft": "1914", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Tzaneen", + "scheduled_service": "no", + "gps_code": "FATZ", + "iata_code": "LTA" + }, + { + "id": "41237", + "ident": "FAUB", + "type": "small_airport", + "name": "Underberg Airport", + "latitude_deg": "-29.788400650024414", + "longitude_deg": "29.498300552368164", + "elevation_ft": "5057", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Underberg", + "scheduled_service": "no", + "gps_code": "FAUB" + }, + { + "id": "41225", + "ident": "FAUC", + "type": "small_airport", + "name": "Ulco Airport", + "latitude_deg": "-28.35449981689453", + "longitude_deg": "24.22909927368164", + "elevation_ft": "3512", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Ulco", + "scheduled_service": "no", + "gps_code": "FAUC" + }, + { + "id": "41162", + "ident": "FAUG", + "type": "small_airport", + "name": "Ugie Airport", + "latitude_deg": "-31.219999313354492", + "longitude_deg": "28.209999084472656", + "elevation_ft": "4580", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Ugie", + "scheduled_service": "no", + "gps_code": "FAUG" + }, + { + "id": "30504", + "ident": "FAUH", + "type": "small_airport", + "name": "Uitenhage Airport", + "latitude_deg": "-33.785301208496094", + "longitude_deg": "25.38330078125", + "elevation_ft": "289", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Uitenhage", + "scheduled_service": "no", + "gps_code": "FAUH" + }, + { + "id": "2846", + "ident": "FAUL", + "type": "medium_airport", + "name": "Prince Mangosuthu Buthelezi Airport", + "latitude_deg": "-28.3206005096", + "longitude_deg": "31.4165000916", + "elevation_ft": "1720", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Ulundi", + "scheduled_service": "no", + "gps_code": "FAUL", + "iata_code": "ULD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ulundi_Airport" + }, + { + "id": "2847", + "ident": "FAUP", + "type": "medium_airport", + "name": "Pierre Van Ryneveld Airport", + "latitude_deg": "-28.39909935", + "longitude_deg": "21.260200500499998", + "elevation_ft": "2782", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Upington", + "scheduled_service": "yes", + "gps_code": "FAUP", + "iata_code": "UTN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Upington_Airport" + }, + { + "id": "30515", + "ident": "FAUR", + "type": "small_airport", + "name": "Utrecht Airport", + "latitude_deg": "-27.680500030517578", + "longitude_deg": "30.31679916381836", + "elevation_ft": "4101", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Utrecht", + "scheduled_service": "no", + "gps_code": "FAUR" + }, + { + "id": "2848", + "ident": "FAUT", + "type": "medium_airport", + "name": "K. D. Matanzima Airport", + "latitude_deg": "-31.546363184900002", + "longitude_deg": "28.6733551025", + "elevation_ft": "2400", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Mthatha", + "scheduled_service": "yes", + "gps_code": "FAUT", + "iata_code": "UTT", + "wikipedia_link": "https://en.wikipedia.org/wiki/K.D._Matanzima_Airport", + "keywords": "Umtata" + }, + { + "id": "30516", + "ident": "FAVA", + "type": "small_airport", + "name": "Vaalputs Airport", + "latitude_deg": "-30.134199142456055", + "longitude_deg": "18.52669906616211", + "elevation_ft": "3340", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Vaalputs", + "scheduled_service": "no", + "gps_code": "FAVA" + }, + { + "id": "2849", + "ident": "FAVB", + "type": "medium_airport", + "name": "Vryburg Airport", + "latitude_deg": "-26.9824008942", + "longitude_deg": "24.7287998199", + "elevation_ft": "3920", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Vyrburg", + "scheduled_service": "no", + "gps_code": "FAVB", + "iata_code": "VRU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vryburg_Airport" + }, + { + "id": "30540", + "ident": "FAVD", + "type": "small_airport", + "name": "Vrede Airport", + "latitude_deg": "-27.44029998779297", + "longitude_deg": "29.153099060058594", + "elevation_ft": "5499", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Vrede", + "scheduled_service": "no", + "gps_code": "FAVD" + }, + { + "id": "41288", + "ident": "FAVE", + "type": "small_airport", + "name": "Ventersdorp Airport", + "latitude_deg": "-26.300899505615234", + "longitude_deg": "26.814199447631836", + "elevation_ft": "4917", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Ventersdorp", + "scheduled_service": "no", + "gps_code": "FAVE" + }, + { + "id": "30528", + "ident": "FAVF", + "type": "small_airport", + "name": "Verborgenfontei Airport", + "latitude_deg": "-31.165800094604492", + "longitude_deg": "23.80940055847168", + "elevation_ft": "4360", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Verborgenfontein", + "scheduled_service": "no", + "gps_code": "FAVF" + }, + { + "id": "2850", + "ident": "FAVG", + "type": "medium_airport", + "name": "Virginia Airport", + "latitude_deg": "-29.770599365234375", + "longitude_deg": "31.058399200439453", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Durban", + "scheduled_service": "no", + "gps_code": "FAVG", + "iata_code": "VIR" + }, + { + "id": "41180", + "ident": "FAVI", + "type": "small_airport", + "name": "Von Abo's Villa Airport", + "latitude_deg": "-27.610599517822266", + "longitude_deg": "26.683500289916992", + "elevation_ft": "4304", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Von Abo's Villa", + "scheduled_service": "no", + "gps_code": "FAVI" + }, + { + "id": "2851", + "ident": "FAVM", + "type": "small_airport", + "name": "Venetia Airport", + "latitude_deg": "-22.4480991364", + "longitude_deg": "29.337699890099998", + "elevation_ft": "2333", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Venetia Mine", + "scheduled_service": "no", + "gps_code": "FAVM" + }, + { + "id": "27297", + "ident": "FAVP", + "type": "small_airport", + "name": "Vanderbijlpark Airport", + "latitude_deg": "-26.69029998779297", + "longitude_deg": "27.777099609375", + "elevation_ft": "4861", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Vanderbijlpark", + "scheduled_service": "no", + "gps_code": "FAVP" + }, + { + "id": "2852", + "ident": "FAVR", + "type": "medium_airport", + "name": "Vredendal Airport", + "latitude_deg": "-31.641000747680664", + "longitude_deg": "18.5447998046875", + "elevation_ft": "330", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Vredendal", + "scheduled_service": "no", + "gps_code": "FAVR", + "iata_code": "VRE" + }, + { + "id": "41231", + "ident": "FAVS", + "type": "small_airport", + "name": "Vastrap Airport", + "latitude_deg": "-27.841388702392578", + "longitude_deg": "21.634166717529297", + "elevation_ft": "3245", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Upington", + "scheduled_service": "no", + "gps_code": "FAVS" + }, + { + "id": "30538", + "ident": "FAVU", + "type": "small_airport", + "name": "Volksrust Airport", + "latitude_deg": "-27.37689971923828", + "longitude_deg": "29.860000610351562", + "elevation_ft": "5610", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Volksrust", + "scheduled_service": "no", + "gps_code": "FAVU" + }, + { + "id": "2853", + "ident": "FAVV", + "type": "medium_airport", + "name": "Vereeniging Airport", + "latitude_deg": "-26.566400528", + "longitude_deg": "27.9608001709", + "elevation_ft": "4846", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Vereeniging", + "scheduled_service": "no", + "gps_code": "FAVV" + }, + { + "id": "30529", + "ident": "FAVW", + "type": "small_airport", + "name": "Victoria West Airport", + "latitude_deg": "-31.39940071105957", + "longitude_deg": "23.156400680541992", + "elevation_ft": "4124", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Victoria West", + "scheduled_service": "no", + "gps_code": "FAVW" + }, + { + "id": "30542", + "ident": "FAVY", + "type": "small_airport", + "name": "Vryheid Airport", + "latitude_deg": "-27.78689956665039", + "longitude_deg": "30.79640007019043", + "elevation_ft": "3799", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Vryheid", + "scheduled_service": "no", + "gps_code": "FAVY", + "iata_code": "VYD" + }, + { + "id": "27298", + "ident": "FAWA", + "type": "small_airport", + "name": "Warmbaths Airport", + "latitude_deg": "-24.90999984741211", + "longitude_deg": "28.299999237060547", + "elevation_ft": "3655", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Warmbaths", + "scheduled_service": "no", + "gps_code": "FAWA" + }, + { + "id": "2854", + "ident": "FAWB", + "type": "medium_airport", + "name": "Wonderboom Airport", + "latitude_deg": "-25.6539", + "longitude_deg": "28.224199", + "elevation_ft": "4095", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Pretoria", + "scheduled_service": "no", + "gps_code": "FAWB", + "iata_code": "PRY", + "home_link": "http://www.wonderboomairport.co.za/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wonderboom_Airport" + }, + { + "id": "30569", + "ident": "FAWC", + "type": "small_airport", + "name": "Worcester Glider Airport", + "latitude_deg": "-33.66310119628906", + "longitude_deg": "19.415300369262695", + "elevation_ft": "673", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Worcester", + "scheduled_service": "no", + "gps_code": "FAWC" + }, + { + "id": "27299", + "ident": "FAWD", + "type": "small_airport", + "name": "Wolmeransstad Airport", + "latitude_deg": "-27.170000076293945", + "longitude_deg": "25.979999542236328", + "elevation_ft": "4513", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Wolmeransstad", + "scheduled_service": "no", + "gps_code": "FAWD" + }, + { + "id": "331856", + "ident": "FAWE", + "type": "small_airport", + "name": "Welgevonden Reserve", + "latitude_deg": "-24.2046", + "longitude_deg": "27.9", + "elevation_ft": "3609", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "scheduled_service": "no", + "gps_code": "FAWE" + }, + { + "id": "2855", + "ident": "FAWI", + "type": "small_airport", + "name": "Witbank Airport", + "latitude_deg": "-25.832300186199998", + "longitude_deg": "29.1919994354", + "elevation_ft": "5078", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Witbank", + "scheduled_service": "no", + "gps_code": "FAWI" + }, + { + "id": "2856", + "ident": "FAWK", + "type": "medium_airport", + "name": "Waterkloof Air Force Base", + "latitude_deg": "-25.829999923699997", + "longitude_deg": "28.222499847399998", + "elevation_ft": "4940", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Pretoria", + "scheduled_service": "no", + "gps_code": "FAWK", + "iata_code": "WKF", + "wikipedia_link": "https://en.wikipedia.org/wiki/AFB_Waterkloof", + "keywords": "AFB" + }, + { + "id": "30562", + "ident": "FAWL", + "type": "small_airport", + "name": "Williston Airport", + "latitude_deg": "-31.38360023498535", + "longitude_deg": "20.93280029296875", + "elevation_ft": "3484", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Williston", + "scheduled_service": "no", + "gps_code": "FAWL" + }, + { + "id": "2857", + "ident": "FAWM", + "type": "small_airport", + "name": "Welkom Airport", + "latitude_deg": "-27.996824511099998", + "longitude_deg": "26.663333892799997", + "elevation_ft": "4421", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Welkom", + "scheduled_service": "no", + "gps_code": "FAWM" + }, + { + "id": "31060", + "ident": "FAWN", + "type": "small_airport", + "name": "Winburg Airport", + "latitude_deg": "-28.5", + "longitude_deg": "27.016666412353516", + "elevation_ft": "4800", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Winburg", + "scheduled_service": "no", + "gps_code": "FAWN" + }, + { + "id": "30561", + "ident": "FAWO", + "type": "small_airport", + "name": "Willowmore Airport", + "latitude_deg": "-33.263301849365234", + "longitude_deg": "23.4906005859375", + "elevation_ft": "2608", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Willowmore", + "scheduled_service": "no", + "gps_code": "FAWO" + }, + { + "id": "31061", + "ident": "FAWP", + "type": "small_airport", + "name": "Wepener Airport", + "latitude_deg": "-29.742399215698242", + "longitude_deg": "27.022600173950195", + "elevation_ft": "4755", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Wepener", + "scheduled_service": "no", + "gps_code": "FAWP" + }, + { + "id": "30555", + "ident": "FAWR", + "type": "small_airport", + "name": "Wavecrest Airport", + "latitude_deg": "-32.589906", + "longitude_deg": "28.518491", + "elevation_ft": "89", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Wavecrest", + "scheduled_service": "no", + "gps_code": "FAWR" + }, + { + "id": "30558", + "ident": "FAWS", + "type": "small_airport", + "name": "Wesselbronn Af Airport", + "latitude_deg": "-27.84670066833496", + "longitude_deg": "26.35059928894043", + "elevation_ft": "4301", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Wesselsbron", + "scheduled_service": "no", + "gps_code": "FAWS" + }, + { + "id": "299605", + "ident": "FAWT", + "type": "small_airport", + "name": "Winterveldt Mine Airport", + "latitude_deg": "-24.660091", + "longitude_deg": "30.180422", + "elevation_ft": "3000", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Doornbosch", + "scheduled_service": "no", + "gps_code": "FAWT", + "local_code": "FAWT" + }, + { + "id": "349373", + "ident": "FAWV", + "type": "small_airport", + "name": "White River Mercy Air", + "latitude_deg": "-25.319676", + "longitude_deg": "30.970782", + "elevation_ft": "2932", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "White River", + "scheduled_service": "no", + "gps_code": "FAWV", + "home_link": "https://www.mercyair.co.za/about-us" + }, + { + "id": "2858", + "ident": "FAYP", + "type": "medium_airport", + "name": "Ysterplaat Air Force Base", + "latitude_deg": "-33.90019989013672", + "longitude_deg": "18.498300552368164", + "elevation_ft": "52", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Cape Town", + "scheduled_service": "no", + "gps_code": "FAYP", + "home_link": "http://www.af.mil.za/bases/afb_ysterplaat/", + "wikipedia_link": "https://en.wikipedia.org/wiki/AFB_Ysterplaat", + "keywords": "Maitland Aerodrome, AFS Brooklyn" + }, + { + "id": "31063", + "ident": "FAZA", + "type": "closed", + "name": "Zastron Airport", + "latitude_deg": "-30.30619", + "longitude_deg": "27.106854", + "elevation_ft": "4265", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Zastron", + "scheduled_service": "no", + "gps_code": "FAZA" + }, + { + "id": "41151", + "ident": "FAZP", + "type": "small_airport", + "name": "Mazeppa Bay Airport", + "latitude_deg": "-32.472152", + "longitude_deg": "28.65052", + "elevation_ft": "13", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Mazeppa Bay", + "scheduled_service": "no", + "gps_code": "FAZP", + "keywords": "Kob Inn Airstrip" + }, + { + "id": "30436", + "ident": "FAZQ", + "type": "small_airport", + "name": "Star Airport", + "latitude_deg": "-26.89310073852539", + "longitude_deg": "27.690000534057617", + "elevation_ft": "4754", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Star", + "scheduled_service": "no", + "gps_code": "FAZQ" + }, + { + "id": "2859", + "ident": "FAZR", + "type": "small_airport", + "name": "Zeerust Airport", + "latitude_deg": "-25.599000930786133", + "longitude_deg": "26.042299270629883", + "elevation_ft": "4258", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Zeerust", + "scheduled_service": "no", + "gps_code": "FAZR" + }, + { + "id": "317601", + "ident": "FBAB", + "type": "small_airport", + "name": "Abu Airport", + "latitude_deg": "-19.4159", + "longitude_deg": "22.5526", + "elevation_ft": "3170", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Abu's Camp", + "scheduled_service": "no", + "gps_code": "FBAB", + "keywords": "FB00" + }, + { + "id": "317503", + "ident": "FBBP", + "type": "small_airport", + "name": "Bottle Pan Airport", + "latitude_deg": "-18.7704", + "longitude_deg": "25.2458", + "elevation_ft": "3395", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CH", + "municipality": "Bottle Pan", + "scheduled_service": "no", + "gps_code": "FBBP", + "keywords": "FB04" + }, + { + "id": "317502", + "ident": "FBBS", + "type": "small_airport", + "name": "Bokspits Airport", + "latitude_deg": "-26.8881", + "longitude_deg": "20.6921", + "elevation_ft": "2815", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-KG", + "municipality": "Bokspits", + "scheduled_service": "no", + "gps_code": "FBBS", + "keywords": "FB03" + }, + { + "id": "317559", + "ident": "FBCH", + "type": "small_airport", + "name": "Chobe Airport", + "latitude_deg": "-18.53402", + "longitude_deg": "23.659027", + "elevation_ft": "3113", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "scheduled_service": "no", + "gps_code": "FBCH", + "keywords": "FB08" + }, + { + "id": "317504", + "ident": "FBCM", + "type": "small_airport", + "name": "Cement Airport", + "latitude_deg": "-19.541", + "longitude_deg": "22.591", + "elevation_ft": "3155", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Cement", + "scheduled_service": "no", + "gps_code": "FBCM", + "keywords": "FB05" + }, + { + "id": "31064", + "ident": "FBCO", + "type": "small_airport", + "name": "Camp Okavango Airport", + "latitude_deg": "-19.131115", + "longitude_deg": "23.102505", + "elevation_ft": "3158", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Camp Okavango", + "scheduled_service": "no", + "gps_code": "FBCO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_Okavango_Airport" + }, + { + "id": "317560", + "ident": "FBDT", + "type": "small_airport", + "name": "Delta Camp Airport", + "latitude_deg": "-19.5323", + "longitude_deg": "23.0925", + "elevation_ft": "3140", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Delta Camp", + "scheduled_service": "no", + "gps_code": "FBDT", + "keywords": "FB11" + }, + { + "id": "317561", + "ident": "FBDV", + "type": "small_airport", + "name": "Deception Valley Airport", + "latitude_deg": "-20.9866", + "longitude_deg": "23.6576", + "elevation_ft": "3185", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Deception Valley Lodge", + "scheduled_service": "no", + "gps_code": "FBDV", + "keywords": "FB10" + }, + { + "id": "2860", + "ident": "FBFT", + "type": "medium_airport", + "name": "P G Matante Intl", + "latitude_deg": "-21.15914", + "longitude_deg": "27.468545", + "elevation_ft": "3283", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-FR", + "municipality": "Francistown", + "scheduled_service": "yes", + "gps_code": "FBPM", + "iata_code": "FRW", + "home_link": "https://www.caab.co.bw/p-g-matante-international-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Francistown_Airport", + "keywords": "FBFT" + }, + { + "id": "317562", + "ident": "FBGD", + "type": "small_airport", + "name": "Gundingwa Airport", + "latitude_deg": "-18.61649", + "longitude_deg": "22.915932", + "elevation_ft": "3165", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Gundingwa", + "scheduled_service": "no", + "gps_code": "FBGD", + "keywords": "FB20, Gudigwa, Gudingwa" + }, + { + "id": "317615", + "ident": "FBGH", + "type": "small_airport", + "name": "Goodhope Airport", + "latitude_deg": "-25.4329", + "longitude_deg": "25.4092", + "elevation_ft": "4250", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-SO", + "municipality": "Goodhope", + "scheduled_service": "no", + "gps_code": "FBGH" + }, + { + "id": "31066", + "ident": "FBGM", + "type": "small_airport", + "name": "Gumare Airport", + "latitude_deg": "-19.338", + "longitude_deg": "22.1544", + "elevation_ft": "3177", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Gumare", + "scheduled_service": "no", + "gps_code": "FBGM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gumare_Airport", + "keywords": "Gomare" + }, + { + "id": "317616", + "ident": "FBGP", + "type": "small_airport", + "name": "Gope Airport", + "latitude_deg": "-22.6523", + "longitude_deg": "24.7536", + "elevation_ft": "3340", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-GH", + "municipality": "Gope", + "scheduled_service": "no", + "gps_code": "FBGP", + "keywords": "FB16" + }, + { + "id": "317565", + "ident": "FBGS", + "type": "small_airport", + "name": "Grassland Airport", + "latitude_deg": "-21.7255", + "longitude_deg": "22.362657", + "elevation_ft": "3495", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-GH", + "municipality": "Grassland Lodge", + "scheduled_service": "no", + "gps_code": "FBGS", + "keywords": "FB18" + }, + { + "id": "317568", + "ident": "FBGU", + "type": "small_airport", + "name": "Guma Airport", + "latitude_deg": "-18.953997", + "longitude_deg": "22.367073", + "elevation_ft": "3220", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Guma", + "scheduled_service": "no", + "gps_code": "FBGU", + "keywords": "Nguma, FB21" + }, + { + "id": "317570", + "ident": "FBGW", + "type": "small_airport", + "name": "Gweta Airport", + "latitude_deg": "-20.1987", + "longitude_deg": "25.2187", + "elevation_ft": "3050", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "municipality": "Gweta", + "scheduled_service": "no", + "gps_code": "FBGW", + "keywords": "FB22" + }, + { + "id": "317658", + "ident": "FBGY", + "type": "small_airport", + "name": "Grundy's Airport", + "latitude_deg": "-21.40437", + "longitude_deg": "27.694864", + "elevation_ft": "3055", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NE", + "municipality": "Grundy's Lodge", + "scheduled_service": "no", + "gps_code": "FBGY", + "keywords": "FB19" + }, + { + "id": "29891", + "ident": "FBGZ", + "type": "small_airport", + "name": "Ghanzi Airport", + "latitude_deg": "-21.6924991607666", + "longitude_deg": "21.658100128173828", + "elevation_ft": "3730", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-GH", + "municipality": "Ghanzi", + "scheduled_service": "yes", + "gps_code": "FBGZ", + "iata_code": "GNZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ghanzi_Airport" + }, + { + "id": "317575", + "ident": "FBHU", + "type": "small_airport", + "name": "Hunda Airport", + "latitude_deg": "-19.2765", + "longitude_deg": "22.475646", + "elevation_ft": "3195", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Tubu Tree Camp", + "scheduled_service": "no", + "gps_code": "FBHU", + "keywords": "FB25" + }, + { + "id": "317572", + "ident": "FBHV", + "type": "small_airport", + "name": "Haina Ventures Airport", + "latitude_deg": "-20.9524", + "longitude_deg": "23.669184", + "elevation_ft": "3185", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Hainaveld", + "scheduled_service": "no", + "gps_code": "FBHV", + "keywords": "FB23" + }, + { + "id": "317577", + "ident": "FBJA", + "type": "small_airport", + "name": "Jao Airport", + "latitude_deg": "-19.3163", + "longitude_deg": "22.5951", + "elevation_ft": "3175", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Jao Camp", + "scheduled_service": "no", + "gps_code": "FBJA", + "keywords": "FB26" + }, + { + "id": "317578", + "ident": "FBJC", + "type": "small_airport", + "name": "Tsigaro Airport", + "latitude_deg": "-20.4563", + "longitude_deg": "25.1507", + "elevation_ft": "3000", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "municipality": "Jack's Camp", + "scheduled_service": "no", + "gps_code": "FBJC", + "keywords": "FB81" + }, + { + "id": "2861", + "ident": "FBJW", + "type": "medium_airport", + "name": "Jwaneng Airport", + "latitude_deg": "-24.602301", + "longitude_deg": "24.691", + "elevation_ft": "3900", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-JW", + "municipality": "Jwaneng", + "scheduled_service": "yes", + "gps_code": "FBJW", + "iata_code": "JWA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jwaneng_Airport" + }, + { + "id": "317659", + "ident": "FBKA", + "type": "small_airport", + "name": "Kaa Airport", + "latitude_deg": "-24.330635", + "longitude_deg": "20.635671", + "elevation_ft": "3645", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-KG", + "municipality": "Kaa", + "scheduled_service": "no", + "gps_code": "FBKA", + "keywords": "FB28, Kaa Pan" + }, + { + "id": "317674", + "ident": "FBKD", + "type": "small_airport", + "name": "Kwando - Lagoon Airport", + "latitude_deg": "-18.209087", + "longitude_deg": "23.387197", + "elevation_ft": "3150", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Lagoon Camp", + "scheduled_service": "no", + "gps_code": "FBKD" + }, + { + "id": "2862", + "ident": "FBKE", + "type": "medium_airport", + "name": "Kasane Airport", + "latitude_deg": "-17.832899", + "longitude_deg": "25.162399", + "elevation_ft": "3289", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CH", + "municipality": "Kasane", + "scheduled_service": "yes", + "gps_code": "FBKE", + "iata_code": "BBK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kasane_Airport" + }, + { + "id": "30006", + "ident": "FBKG", + "type": "small_airport", + "name": "Kang Airport", + "latitude_deg": "-23.683300018310547", + "longitude_deg": "22.816699981689453", + "elevation_ft": "3520", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-KG", + "scheduled_service": "no", + "gps_code": "FBKG" + }, + { + "id": "317673", + "ident": "FBKI", + "type": "small_airport", + "name": "Kiri Airport", + "latitude_deg": "-19.616197", + "longitude_deg": "23.042473", + "elevation_ft": "3135", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Kiri Camp", + "scheduled_service": "no", + "gps_code": "FBKI", + "keywords": "FB34" + }, + { + "id": "317660", + "ident": "FBKK", + "type": "small_airport", + "name": "Kanana Airport", + "latitude_deg": "-19.5688", + "longitude_deg": "22.875575", + "elevation_ft": "3140", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Kanana Camp", + "scheduled_service": "no", + "gps_code": "FBKK", + "keywords": "FB29" + }, + { + "id": "317672", + "ident": "FBKP", + "type": "small_airport", + "name": "Kings Pool Airport", + "latitude_deg": "-18.441959", + "longitude_deg": "23.688716", + "elevation_ft": "3100", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Kings Pool", + "scheduled_service": "no", + "gps_code": "FBKP", + "keywords": "FB33" + }, + { + "id": "31751", + "ident": "FBKR", + "type": "small_airport", + "name": "Khwai River Lodge Airport", + "latitude_deg": "-19.149999618530273", + "longitude_deg": "23.783000946044922", + "elevation_ft": "3000", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Khwai River Lodge", + "scheduled_service": "no", + "gps_code": "FBKR", + "iata_code": "KHW" + }, + { + "id": "317675", + "ident": "FBKW", + "type": "small_airport", + "name": "Kwando - Lebala Airport", + "latitude_deg": "-18.360992", + "longitude_deg": "23.530495", + "elevation_ft": "3125", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Lebala Camp", + "scheduled_service": "no", + "gps_code": "FBKW", + "keywords": "FB38" + }, + { + "id": "30008", + "ident": "FBKY", + "type": "small_airport", + "name": "Kanye Airport", + "latitude_deg": "-25.049999237060547", + "longitude_deg": "25.316699981689453", + "elevation_ft": "4199", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-SO", + "municipality": "Kanye", + "scheduled_service": "no", + "gps_code": "FBKY" + }, + { + "id": "317579", + "ident": "FBLL", + "type": "small_airport", + "name": "Limpopo-Lipadi Airport", + "latitude_deg": "-22.55153", + "longitude_deg": "28.492105", + "elevation_ft": "2460", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "municipality": "Limpopo-Lipadi", + "scheduled_service": "no", + "gps_code": "FBLL", + "keywords": "Zanzibar" + }, + { + "id": "313926", + "ident": "FBLO", + "type": "small_airport", + "name": "Lobatse Airport", + "latitude_deg": "-25.1981", + "longitude_deg": "25.7139", + "elevation_ft": "3823", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-LO", + "municipality": "Lobatse", + "scheduled_service": "no", + "gps_code": "FBLO", + "iata_code": "LOQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lobatse_Airport" + }, + { + "id": "31067", + "ident": "FBMG", + "type": "small_airport", + "name": "Machaneng Airport", + "latitude_deg": "-23.18455", + "longitude_deg": "27.501029", + "elevation_ft": "2900", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "municipality": "Machaneng", + "scheduled_service": "no", + "gps_code": "FBMG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Machaneng_Airport" + }, + { + "id": "31068", + "ident": "FBML", + "type": "closed", + "name": "Molepolole Airport", + "latitude_deg": "-24.389444444", + "longitude_deg": "25.498611111", + "elevation_ft": "3790", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-KW", + "municipality": "Molepolole", + "scheduled_service": "no", + "gps_code": "FBML" + }, + { + "id": "31069", + "ident": "FBMM", + "type": "closed", + "name": "Makalamabedi Airport", + "latitude_deg": "-20.310863", + "longitude_deg": "23.907795", + "elevation_ft": "3100", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "municipality": "Makalamabedi", + "scheduled_service": "no", + "gps_code": "FBMM" + }, + { + "id": "2863", + "ident": "FBMN", + "type": "medium_airport", + "name": "Maun Airport", + "latitude_deg": "-19.97260093688965", + "longitude_deg": "23.431100845336914", + "elevation_ft": "3093", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Maun", + "scheduled_service": "yes", + "gps_code": "FBMN", + "iata_code": "MUB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maun_Airport" + }, + { + "id": "317716", + "ident": "FBMU", + "type": "small_airport", + "name": "Mamuno Airport", + "latitude_deg": "-22.268095", + "longitude_deg": "20.031092", + "elevation_ft": "4155", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-GH", + "municipality": "Mamuno", + "scheduled_service": "no", + "gps_code": "FBMU", + "keywords": "FB45" + }, + { + "id": "317702", + "ident": "FBNB", + "type": "small_airport", + "name": "Nxabega Airport", + "latitude_deg": "-19.4902", + "longitude_deg": "22.789192", + "elevation_ft": "3155", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Nxabega", + "scheduled_service": "no", + "gps_code": "FBNB", + "keywords": "FB57" + }, + { + "id": "31070", + "ident": "FBNN", + "type": "small_airport", + "name": "Nokaneng Airport", + "latitude_deg": "-19.6802", + "longitude_deg": "22.1996", + "elevation_ft": "3145", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Nokaneng", + "scheduled_service": "no", + "gps_code": "FBNN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nokaneng_Airport" + }, + { + "id": "31071", + "ident": "FBNT", + "type": "small_airport", + "name": "Nata Airport", + "latitude_deg": "-20.216100692749023", + "longitude_deg": "26.158899307250977", + "elevation_ft": "2690", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "municipality": "Nata", + "scheduled_service": "no", + "gps_code": "FBNT" + }, + { + "id": "317701", + "ident": "FBNW", + "type": "small_airport", + "name": "Ntswi Airport", + "latitude_deg": "-19.52899", + "longitude_deg": "23.139408", + "elevation_ft": "3140", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Gunn's Camp", + "scheduled_service": "no", + "gps_code": "FBNW", + "keywords": "FB56" + }, + { + "id": "317690", + "ident": "FBNX", + "type": "small_airport", + "name": "Nxamaseri Airport", + "latitude_deg": "-18.5992", + "longitude_deg": "22.0696", + "elevation_ft": "3245", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Nxamaseri Lodge", + "scheduled_service": "no", + "gps_code": "FBNX", + "keywords": "Nxamasire" + }, + { + "id": "317603", + "ident": "FBOD", + "type": "small_airport", + "name": "Oakdene Airport", + "latitude_deg": "-21.4578", + "longitude_deg": "21.8057", + "elevation_ft": "3810", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-GH", + "municipality": "Oakdene", + "scheduled_service": "no", + "gps_code": "FBOD", + "keywords": "FB58" + }, + { + "id": "31073", + "ident": "FBOK", + "type": "small_airport", + "name": "Okwa Airport", + "latitude_deg": "-23.08300018310547", + "longitude_deg": "21.882999420166016", + "elevation_ft": "3500", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-GH", + "municipality": "Okwa", + "scheduled_service": "no", + "gps_code": "FBOK" + }, + { + "id": "317703", + "ident": "FBOM", + "type": "small_airport", + "name": "Omdop Airport", + "latitude_deg": "-19.0175", + "longitude_deg": "22.703", + "elevation_ft": "3194", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Duba Plains Camp", + "scheduled_service": "no", + "gps_code": "FBOM", + "keywords": "FB60, 6262" + }, + { + "id": "30218", + "ident": "FBOR", + "type": "small_airport", + "name": "Orapa Airport", + "latitude_deg": "-21.265901", + "longitude_deg": "25.319667", + "elevation_ft": "3100", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "municipality": "Orapa", + "scheduled_service": "yes", + "gps_code": "FBOR", + "iata_code": "ORP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orapa_Airport" + }, + { + "id": "317488", + "ident": "FBPA", + "type": "small_airport", + "name": "Pandamatenga Airport", + "latitude_deg": "-18.5312", + "longitude_deg": "25.6516", + "elevation_ft": "3505", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CH", + "municipality": "Pandamatenga", + "scheduled_service": "no", + "gps_code": "FBPA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pandamatenga_Airport" + }, + { + "id": "32191", + "ident": "FBPY", + "type": "small_airport", + "name": "Palapye Airport", + "latitude_deg": "-22.564087", + "longitude_deg": "27.136745", + "elevation_ft": "3000", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "municipality": "Palapye", + "scheduled_service": "no", + "gps_code": "FBPY", + "iata_code": "QPH" + }, + { + "id": "31074", + "ident": "FBRK", + "type": "closed", + "name": "Rakops Airport", + "latitude_deg": "-21", + "longitude_deg": "24.333", + "elevation_ft": "3000", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "municipality": "Rakops", + "scheduled_service": "no", + "gps_code": "FBRK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rakops_Airport" + }, + { + "id": "317590", + "ident": "FBSI", + "type": "small_airport", + "name": "Saile Airport", + "latitude_deg": "-18.1357", + "longitude_deg": "24.067", + "elevation_ft": "3085", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CH", + "municipality": "Saile", + "scheduled_service": "no", + "gps_code": "FBSI", + "keywords": "FB64" + }, + { + "id": "2864", + "ident": "FBSK", + "type": "large_airport", + "name": "Sir Seretse Khama International Airport", + "latitude_deg": "-24.555201", + "longitude_deg": "25.9182", + "elevation_ft": "3299", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-GA", + "municipality": "Gaborone", + "scheduled_service": "yes", + "gps_code": "FBSK", + "iata_code": "GBE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sir_Seretse_Khama_International_Airport" + }, + { + "id": "317589", + "ident": "FBSL", + "type": "small_airport", + "name": "Selinda Airport", + "latitude_deg": "-18.579181", + "longitude_deg": "23.483757", + "elevation_ft": "3105", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Selinda", + "scheduled_service": "no", + "gps_code": "FBSL", + "keywords": "FB70" + }, + { + "id": "2865", + "ident": "FBSN", + "type": "medium_airport", + "name": "Sua Pan Airport", + "latitude_deg": "-20.5534", + "longitude_deg": "26.115801", + "elevation_ft": "2985", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-ST", + "municipality": "Sowa", + "scheduled_service": "no", + "gps_code": "FBSN", + "iata_code": "SXN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sua_Pan_Airport" + }, + { + "id": "2866", + "ident": "FBSP", + "type": "medium_airport", + "name": "Selebi Phikwe Airport", + "latitude_deg": "-22.0583", + "longitude_deg": "27.8288", + "elevation_ft": "2925", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-SP", + "municipality": "Selebi Phikwe", + "scheduled_service": "yes", + "gps_code": "FBSP", + "iata_code": "PKW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Selebi-Phikwe_Airport" + }, + { + "id": "31075", + "ident": "FBSR", + "type": "closed", + "name": "Serowe Airport", + "latitude_deg": "-22.423299789399998", + "longitude_deg": "26.7567005157", + "elevation_ft": "3800", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "municipality": "Serowe", + "scheduled_service": "no", + "gps_code": "FBSR" + }, + { + "id": "31076", + "ident": "FBSV", + "type": "small_airport", + "name": "Savuti Airport", + "latitude_deg": "-18.518475", + "longitude_deg": "24.077687", + "elevation_ft": "3150", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CH", + "municipality": "Savuti", + "scheduled_service": "no", + "gps_code": "FBSV", + "iata_code": "SVT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Savuti_Airport" + }, + { + "id": "30411", + "ident": "FBSW", + "type": "small_airport", + "name": "Shakawe Airport", + "latitude_deg": "-18.373899459838867", + "longitude_deg": "21.832599639892578", + "elevation_ft": "3379", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Shakawe", + "scheduled_service": "yes", + "gps_code": "FBSW", + "iata_code": "SWX", + "home_link": "http://www.dca.gov.bw/index.php?sectid=248", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shakawe_Airport" + }, + { + "id": "31077", + "ident": "FBTE", + "type": "closed", + "name": "Tshane Airport", + "latitude_deg": "-24.0170001984", + "longitude_deg": "21.8829994202", + "elevation_ft": "3700", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-KG", + "municipality": "Tshane", + "scheduled_service": "no", + "gps_code": "FBTE" + }, + { + "id": "317588", + "ident": "FBTH", + "type": "small_airport", + "name": "Tsodilo Hills Airport", + "latitude_deg": "-18.7804", + "longitude_deg": "21.7416", + "elevation_ft": "3288", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Tsodilo", + "scheduled_service": "no", + "gps_code": "FBTH", + "keywords": "FB82" + }, + { + "id": "30077", + "ident": "FBTL", + "type": "small_airport", + "name": "Limpopo Valley Airport", + "latitude_deg": "-22.189199447599997", + "longitude_deg": "29.126899719199997", + "elevation_ft": "1772", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "municipality": "Tuli Lodge", + "scheduled_service": "yes", + "gps_code": "FBLV", + "iata_code": "TLD" + }, + { + "id": "317586", + "ident": "FBTN", + "type": "small_airport", + "name": "Tonunga Airport", + "latitude_deg": "-19.5085", + "longitude_deg": "25.0781", + "elevation_ft": "3145", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-CE", + "municipality": "Tonunga", + "scheduled_service": "no", + "gps_code": "FBTN", + "keywords": "FB78" + }, + { + "id": "2867", + "ident": "FBTP", + "type": "small_airport", + "name": "Thebephatshwa Airport", + "latitude_deg": "-24.221099853515625", + "longitude_deg": "25.347299575805664", + "elevation_ft": "3750", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-KW", + "scheduled_service": "no", + "gps_code": "FBTP" + }, + { + "id": "30494", + "ident": "FBTS", + "type": "small_airport", + "name": "Tshabong Airport", + "latitude_deg": "-26.034524", + "longitude_deg": "22.401252", + "elevation_ft": "3179", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-KG", + "municipality": "Tshabong", + "scheduled_service": "no", + "gps_code": "FBTS", + "iata_code": "TBY", + "keywords": "Tsabong" + }, + { + "id": "317584", + "ident": "FBVM", + "type": "small_airport", + "name": "Vumbura Airport", + "latitude_deg": "-18.955395", + "longitude_deg": "22.814533", + "elevation_ft": "3185", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Vumbura", + "scheduled_service": "no", + "gps_code": "FBVM", + "keywords": "FB88" + }, + { + "id": "317582", + "ident": "FBXA", + "type": "small_airport", + "name": "Xai Xai Airport", + "latitude_deg": "-19.877718", + "longitude_deg": "21.075295", + "elevation_ft": "3655", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Xaxa", + "scheduled_service": "no", + "gps_code": "FBXA", + "keywords": "FB91" + }, + { + "id": "27306", + "ident": "FBXB", + "type": "small_airport", + "name": "Xaxaba Airport", + "latitude_deg": "-19.550500869750977", + "longitude_deg": "23.054800033569336", + "elevation_ft": "3100", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Xaxaba", + "scheduled_service": "no", + "gps_code": "FBXB" + }, + { + "id": "27305", + "ident": "FBXG", + "type": "small_airport", + "name": "Xugana Airport", + "latitude_deg": "-19.049999237060547", + "longitude_deg": "23.09000015258789", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "scheduled_service": "no", + "gps_code": "FBXG" + }, + { + "id": "317581", + "ident": "FBXI", + "type": "small_airport", + "name": "Xigera Airport", + "latitude_deg": "-19.385485", + "longitude_deg": "22.737648", + "elevation_ft": "3170", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Xigera", + "scheduled_service": "no", + "gps_code": "FBXI", + "keywords": "FB95" + }, + { + "id": "317580", + "ident": "FBXR", + "type": "small_airport", + "name": "Xorogom Airport", + "latitude_deg": "-18.7068", + "longitude_deg": "23.0937", + "elevation_ft": "3150", + "continent": "AF", + "iso_country": "BW", + "iso_region": "BW-NW", + "municipality": "Xorogom", + "scheduled_service": "no", + "gps_code": "FBXR", + "keywords": "FB96" + }, + { + "id": "31078", + "ident": "FCBA", + "type": "small_airport", + "name": "La Louila Airport", + "latitude_deg": "-4.083000183105469", + "longitude_deg": "14.232999801635742", + "elevation_ft": "984", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-12", + "municipality": "La Louila", + "scheduled_service": "no", + "gps_code": "FCBA" + }, + { + "id": "2868", + "ident": "FCBB", + "type": "medium_airport", + "name": "Maya-Maya Airport", + "latitude_deg": "-4.251699924468994", + "longitude_deg": "15.253000259399414", + "elevation_ft": "1048", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-12", + "municipality": "Brazzaville", + "scheduled_service": "yes", + "gps_code": "FCBB", + "iata_code": "BZV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maya-Maya_Airport" + }, + { + "id": "30921", + "ident": "FCBD", + "type": "small_airport", + "name": "Djambala Airport", + "latitude_deg": "-2.516883", + "longitude_deg": "14.754403", + "elevation_ft": "2595", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-14", + "municipality": "Djambala", + "scheduled_service": "no", + "gps_code": "FCBD", + "iata_code": "DJM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Djambala_Airport" + }, + { + "id": "31763", + "ident": "FCBK", + "type": "small_airport", + "name": "Kindamba Airport", + "latitude_deg": "-3.950000047683716", + "longitude_deg": "14.517000198364258", + "elevation_ft": "1460", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-12", + "municipality": "Kindamba", + "scheduled_service": "no", + "gps_code": "FCBK", + "iata_code": "KNJ" + }, + { + "id": "31798", + "ident": "FCBL", + "type": "small_airport", + "name": "Lague Airport", + "latitude_deg": "-2.450000047683716", + "longitude_deg": "14.532999992370605", + "elevation_ft": "2756", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-14", + "municipality": "Lague", + "scheduled_service": "no", + "gps_code": "FCBL", + "iata_code": "LCO" + }, + { + "id": "31971", + "ident": "FCBM", + "type": "small_airport", + "name": "Mouyondzi Airport", + "latitude_deg": "-4.01487398147583", + "longitude_deg": "13.96611213684082", + "elevation_ft": "1670", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-11", + "municipality": "Mouyondzi", + "scheduled_service": "no", + "gps_code": "FCBM", + "iata_code": "MUY" + }, + { + "id": "31079", + "ident": "FCBP", + "type": "small_airport", + "name": "M'passa Airport", + "latitude_deg": "-4.367000102996826", + "longitude_deg": "14.149999618530273", + "elevation_ft": "1115", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-12", + "municipality": "M'passa", + "scheduled_service": "no", + "gps_code": "FCBP" + }, + { + "id": "32300", + "ident": "FCBS", + "type": "small_airport", + "name": "Sibiti Airport", + "latitude_deg": "-3.683000087738037", + "longitude_deg": "13.350000381469727", + "elevation_ft": "1883", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-2", + "municipality": "Sibiti", + "scheduled_service": "no", + "gps_code": "FCBS", + "iata_code": "SIB" + }, + { + "id": "31080", + "ident": "FCBT", + "type": "small_airport", + "name": "Loutete Airport", + "latitude_deg": "-4.2829999923706055", + "longitude_deg": "13.866999626159668", + "elevation_ft": "656", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-11", + "municipality": "Loutete", + "scheduled_service": "no", + "gps_code": "FCBT" + }, + { + "id": "31081", + "ident": "FCBU", + "type": "small_airport", + "name": "Aubeville Airport", + "latitude_deg": "-4.267000198364258", + "longitude_deg": "13.532999992370605", + "elevation_ft": "1148", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-11", + "municipality": "Aubeville", + "scheduled_service": "no", + "gps_code": "FCBU" + }, + { + "id": "32036", + "ident": "FCBY", + "type": "small_airport", + "name": "Yokangassi Airport", + "latitude_deg": "-4.223077", + "longitude_deg": "13.286347", + "elevation_ft": "541", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-11", + "municipality": "Nkayi", + "scheduled_service": "no", + "gps_code": "FCBY", + "iata_code": "NKY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yokangassi_Airport" + }, + { + "id": "30645", + "ident": "FCBZ", + "type": "small_airport", + "name": "Zanaga Airport", + "latitude_deg": "-2.8499999046325684", + "longitude_deg": "13.817000389099121", + "elevation_ft": "1870", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-2", + "municipality": "Zanaga", + "scheduled_service": "no", + "gps_code": "FCBZ", + "iata_code": "ANJ" + }, + { + "id": "31082", + "ident": "FCMA", + "type": "small_airport", + "name": "Mavinza Airport", + "latitude_deg": "-2.450000047683716", + "longitude_deg": "11.649999618530273", + "elevation_ft": "509", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-9", + "municipality": "Mavinza", + "scheduled_service": "no", + "gps_code": "FCMA" + }, + { + "id": "31083", + "ident": "FCMB", + "type": "small_airport", + "name": "N'Ziba Airport", + "latitude_deg": "-2.7170000076293945", + "longitude_deg": "12.532999992370605", + "elevation_ft": "2149", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-9", + "municipality": "N'Ziba", + "scheduled_service": "no", + "gps_code": "FCMB" + }, + { + "id": "31084", + "ident": "FCMD", + "type": "small_airport", + "name": "Sidetra Airport", + "latitude_deg": "-2.867000102996826", + "longitude_deg": "12.866999626159668", + "elevation_ft": "2133", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-9", + "municipality": "Sidetra", + "scheduled_service": "no", + "gps_code": "FCMD" + }, + { + "id": "31085", + "ident": "FCMF", + "type": "small_airport", + "name": "Loufoula Airport", + "latitude_deg": "-3", + "longitude_deg": "12", + "elevation_ft": "650", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-9", + "municipality": "Loufoula", + "scheduled_service": "no", + "gps_code": "FCMF" + }, + { + "id": "31086", + "ident": "FCMG", + "type": "small_airport", + "name": "Gokango Airport", + "latitude_deg": "-3.0329999923706055", + "longitude_deg": "12.133000373840332", + "elevation_ft": "820", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-9", + "municipality": "Gokango", + "scheduled_service": "no", + "gps_code": "FCMG" + }, + { + "id": "31087", + "ident": "FCMI", + "type": "small_airport", + "name": "Irogo Airport", + "latitude_deg": "-2.7170000076293945", + "longitude_deg": "11.883000373840332", + "elevation_ft": "919", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-9", + "municipality": "Irogo", + "scheduled_service": "no", + "gps_code": "FCMI" + }, + { + "id": "31088", + "ident": "FCMK", + "type": "small_airport", + "name": "Kele Kibangou Airport", + "latitude_deg": "-3.316999912261963", + "longitude_deg": "12.616999626159668", + "elevation_ft": "902", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-9", + "municipality": "Kele Kibangou", + "scheduled_service": "no", + "gps_code": "FCMK" + }, + { + "id": "31089", + "ident": "FCML", + "type": "small_airport", + "name": "Leboulou Airport", + "latitude_deg": "-2.9000000953674316", + "longitude_deg": "12.366999626159668", + "elevation_ft": "886", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-9", + "municipality": "Leboulou", + "scheduled_service": "no", + "gps_code": "FCML" + }, + { + "id": "31959", + "ident": "FCMM", + "type": "small_airport", + "name": "Mossendjo Airport", + "latitude_deg": "-2.950000047683716", + "longitude_deg": "12.699999809265137", + "elevation_ft": "1519", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-9", + "municipality": "Mossendjo", + "scheduled_service": "no", + "gps_code": "FCMM", + "iata_code": "MSX" + }, + { + "id": "31090", + "ident": "FCMN", + "type": "small_airport", + "name": "N'gongo Airport", + "latitude_deg": "-2.9830000400543213", + "longitude_deg": "12.199999809265137", + "elevation_ft": "906", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-9", + "municipality": "N'gongo", + "scheduled_service": "no", + "gps_code": "FCMN" + }, + { + "id": "31091", + "ident": "FCMO", + "type": "small_airport", + "name": "Mandoro Airport", + "latitude_deg": "-2.6500000953674316", + "longitude_deg": "12.883000373840332", + "elevation_ft": "1772", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-9", + "municipality": "Mandoro", + "scheduled_service": "no", + "gps_code": "FCMO" + }, + { + "id": "31092", + "ident": "FCMR", + "type": "small_airport", + "name": "Marala Airport", + "latitude_deg": "-2.9000000953674316", + "longitude_deg": "12.633000373840332", + "elevation_ft": "1535", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-9", + "municipality": "Marala", + "scheduled_service": "no", + "gps_code": "FCMR" + }, + { + "id": "31093", + "ident": "FCMS", + "type": "small_airport", + "name": "Nyanga Airport", + "latitude_deg": "-2.867000102996826", + "longitude_deg": "11.949999809265137", + "elevation_ft": "558", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-9", + "municipality": "Nyanga", + "scheduled_service": "no", + "gps_code": "FCMS" + }, + { + "id": "31094", + "ident": "FCMY", + "type": "small_airport", + "name": "Legala Airport", + "latitude_deg": "-2.2170000076293945", + "longitude_deg": "12.833000183105469", + "elevation_ft": "2152", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-9", + "municipality": "Legala", + "scheduled_service": "no", + "gps_code": "FCMY" + }, + { + "id": "31095", + "ident": "FCMZ", + "type": "small_airport", + "name": "N'Zabi Airport", + "latitude_deg": "-3.1670000553131104", + "longitude_deg": "12.866999626159668", + "elevation_ft": "1640", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-9", + "municipality": "N'Zabi", + "scheduled_service": "no", + "gps_code": "FCMZ" + }, + { + "id": "30784", + "ident": "FCOB", + "type": "small_airport", + "name": "Boundji Airport", + "latitude_deg": "-1.0329999923706055", + "longitude_deg": "15.383000373840332", + "elevation_ft": "1247", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-8", + "municipality": "Boundji", + "scheduled_service": "no", + "gps_code": "FCOB", + "iata_code": "BOE" + }, + { + "id": "323021", + "ident": "FCOD", + "type": "medium_airport", + "name": "Oyo Ollombo Airport", + "latitude_deg": "-1.226666", + "longitude_deg": "15.91", + "elevation_ft": "1073", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-14", + "municipality": "Oyo", + "scheduled_service": "no", + "gps_code": "FCOD", + "iata_code": "OLL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oyo_Ollombo_Airport", + "keywords": "Denis Sassou Nguesso Airport" + }, + { + "id": "31032", + "ident": "FCOE", + "type": "small_airport", + "name": "Ewo Airport", + "latitude_deg": "-0.8830000162124634", + "longitude_deg": "14.800000190734863", + "elevation_ft": "1503", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-8", + "municipality": "Ewo", + "scheduled_service": "no", + "gps_code": "FCOE", + "iata_code": "EWO" + }, + { + "id": "31543", + "ident": "FCOG", + "type": "small_airport", + "name": "Gamboma Airport", + "latitude_deg": "-1.829403", + "longitude_deg": "15.885237", + "elevation_ft": "1509", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-14", + "municipality": "Gamboma", + "scheduled_service": "no", + "gps_code": "FCOG", + "iata_code": "GMM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gamboma_Airport" + }, + { + "id": "31680", + "ident": "FCOI", + "type": "small_airport", + "name": "Impfondo Airport", + "latitude_deg": "1.6169999837875366", + "longitude_deg": "18.066999435424805", + "elevation_ft": "1099", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-7", + "municipality": "Impfondo", + "scheduled_service": "no", + "gps_code": "FCOI", + "iata_code": "ION" + }, + { + "id": "31740", + "ident": "FCOK", + "type": "small_airport", + "name": "Kelle Airport", + "latitude_deg": "-0.08299999684095383", + "longitude_deg": "14.532999992370605", + "elevation_ft": "1526", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-8", + "municipality": "Kelle", + "scheduled_service": "no", + "gps_code": "FCOK", + "iata_code": "KEE" + }, + { + "id": "31917", + "ident": "FCOM", + "type": "small_airport", + "name": "Makoua Airport", + "latitude_deg": "-0.017000000923871994", + "longitude_deg": "15.583000183105469", + "elevation_ft": "1293", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-8", + "municipality": "Makoua", + "scheduled_service": "no", + "gps_code": "FCOM", + "iata_code": "MKJ" + }, + { + "id": "2869", + "ident": "FCOO", + "type": "medium_airport", + "name": "Owando Airport", + "latitude_deg": "-0.5313500165939331", + "longitude_deg": "15.95009994506836", + "elevation_ft": "1214", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-8", + "municipality": "Owando", + "scheduled_service": "no", + "gps_code": "FCOO", + "iata_code": "FTX" + }, + { + "id": "32344", + "ident": "FCOS", + "type": "small_airport", + "name": "Souanke Airport", + "latitude_deg": "2.066999912261963", + "longitude_deg": "14.133000373840332", + "elevation_ft": "1722", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-13", + "municipality": "Souanke", + "scheduled_service": "no", + "gps_code": "FCOS", + "iata_code": "SOE" + }, + { + "id": "30798", + "ident": "FCOT", + "type": "small_airport", + "name": "Betou Airport", + "latitude_deg": "3.057593", + "longitude_deg": "18.514433", + "elevation_ft": "1168", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-7", + "municipality": "Betou", + "scheduled_service": "no", + "gps_code": "FCOT", + "iata_code": "BTB" + }, + { + "id": "2870", + "ident": "FCOU", + "type": "medium_airport", + "name": "Ouesso Airport", + "latitude_deg": "1.6159900426899998", + "longitude_deg": "16.0379009247", + "elevation_ft": "1158", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-13", + "scheduled_service": "no", + "gps_code": "FCOU", + "iata_code": "OUE" + }, + { + "id": "31760", + "ident": "FCPA", + "type": "small_airport", + "name": "Makabana Airport", + "latitude_deg": "-3.4830000400543213", + "longitude_deg": "12.616999626159668", + "elevation_ft": "495", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-9", + "municipality": "Makabana", + "scheduled_service": "no", + "gps_code": "FCPA", + "iata_code": "KMK" + }, + { + "id": "31096", + "ident": "FCPB", + "type": "small_airport", + "name": "Bangamba Airport", + "latitude_deg": "-3.683000087738037", + "longitude_deg": "13.199999809265137", + "elevation_ft": "1312", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-2", + "municipality": "Bangamba", + "scheduled_service": "no", + "gps_code": "FCPB" + }, + { + "id": "31097", + "ident": "FCPE", + "type": "small_airport", + "name": "Leganda Airport", + "latitude_deg": "-3.433000087738037", + "longitude_deg": "12.932999610900879", + "elevation_ft": "1198", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-2", + "municipality": "Leganda", + "scheduled_service": "no", + "gps_code": "FCPE" + }, + { + "id": "31098", + "ident": "FCPG", + "type": "small_airport", + "name": "Kibangou Airport", + "latitude_deg": "-3.4830000400543213", + "longitude_deg": "12.300000190734863", + "elevation_ft": "427", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-9", + "municipality": "Kibangou", + "scheduled_service": "no", + "gps_code": "FCPG" + }, + { + "id": "31099", + "ident": "FCPI", + "type": "small_airport", + "name": "Loubetsi Airport", + "latitude_deg": "-3.700000047683716", + "longitude_deg": "12.133000373840332", + "elevation_ft": "328", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-9", + "municipality": "Loubetsi", + "scheduled_service": "no", + "gps_code": "FCPI" + }, + { + "id": "31100", + "ident": "FCPK", + "type": "small_airport", + "name": "N'komo Airport", + "latitude_deg": "-3.93999", + "longitude_deg": "11.30887", + "elevation_ft": "98", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-5", + "municipality": "N'zambi", + "scheduled_service": "no", + "gps_code": "FCPK" + }, + { + "id": "30920", + "ident": "FCPL", + "type": "medium_airport", + "name": "Ngot Nzoungou Airport", + "latitude_deg": "-4.20635", + "longitude_deg": "12.6599", + "elevation_ft": "1079", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-9", + "municipality": "Dolisie", + "scheduled_service": "yes", + "gps_code": "FCPD", + "iata_code": "DIS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dolisie_Airport", + "keywords": "Dolisie" + }, + { + "id": "31101", + "ident": "FCPN", + "type": "small_airport", + "name": "Noumbi Airport", + "latitude_deg": "-4.144149", + "longitude_deg": "11.383476", + "elevation_ft": "39", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-5", + "municipality": "Noumbi", + "scheduled_service": "no", + "gps_code": "FCPN" + }, + { + "id": "31102", + "ident": "FCPO", + "type": "small_airport", + "name": "Pemo Airport", + "latitude_deg": "-2.867000102996826", + "longitude_deg": "12.532999992370605", + "elevation_ft": "1686", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-9", + "municipality": "Pemo", + "scheduled_service": "no", + "gps_code": "FCPO" + }, + { + "id": "2871", + "ident": "FCPP", + "type": "medium_airport", + "name": "Antonio Agostinho-Neto International Airport", + "latitude_deg": "-4.81603", + "longitude_deg": "11.8866", + "elevation_ft": "55", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-5", + "municipality": "Pointe Noire", + "scheduled_service": "yes", + "gps_code": "FCPP", + "iata_code": "PNR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Agostinho-Neto_International_Airport", + "keywords": "Pointe Noire" + }, + { + "id": "31103", + "ident": "FCPY", + "type": "small_airport", + "name": "Loukanyi Airport", + "latitude_deg": "-4.048475", + "longitude_deg": "11.521568", + "elevation_ft": "295", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-5", + "municipality": "Loukanyi", + "scheduled_service": "no", + "gps_code": "FCPY" + }, + { + "id": "17271", + "ident": "FD00", + "type": "heliport", + "name": "Dade County Mosquito Control Heliport", + "latitude_deg": "25.827339963900002", + "longitude_deg": "-80.3424784541", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Medley", + "scheduled_service": "no", + "gps_code": "FD00", + "local_code": "FD00" + }, + { + "id": "17272", + "ident": "FD01", + "type": "closed", + "name": "Hidden Acres Airpark", + "latitude_deg": "30.2796", + "longitude_deg": "-84.048797", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Monticello", + "scheduled_service": "no", + "keywords": "FD01" + }, + { + "id": "17273", + "ident": "FD02", + "type": "small_airport", + "name": "Patch O Blue Airport", + "latitude_deg": "29.485001", + "longitude_deg": "-82.022003", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orange Springs", + "scheduled_service": "no", + "gps_code": "FD02", + "local_code": "FD02", + "keywords": "85th Avenue Airstrip" + }, + { + "id": "17274", + "ident": "FD03", + "type": "small_airport", + "name": "The Funny Farm Airport", + "latitude_deg": "30.800199508666992", + "longitude_deg": "-86.43550109863281", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Crestview", + "scheduled_service": "no", + "gps_code": "FD03", + "local_code": "FD03" + }, + { + "id": "17275", + "ident": "FD04", + "type": "small_airport", + "name": "Leeward Air Ranch Airport", + "latitude_deg": "29.0841007232666", + "longitude_deg": "-82.03230285644531", + "elevation_ft": "86", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ocala/Belleview", + "scheduled_service": "no", + "gps_code": "FD04", + "local_code": "FD04" + }, + { + "id": "17276", + "ident": "FD05", + "type": "heliport", + "name": "Mariners Hospital Heliport", + "latitude_deg": "25.00693", + "longitude_deg": "-80.52233", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tavernier", + "scheduled_service": "no", + "gps_code": "FD05", + "local_code": "FD05" + }, + { + "id": "17277", + "ident": "FD06", + "type": "heliport", + "name": "Lake Bird Heliport", + "latitude_deg": "28.18090057373047", + "longitude_deg": "-82.45559692382812", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lutz", + "scheduled_service": "no", + "gps_code": "FD06", + "local_code": "FD06" + }, + { + "id": "17278", + "ident": "FD07", + "type": "heliport", + "name": "Johnson Heliport", + "latitude_deg": "27.98699951171875", + "longitude_deg": "-82.71869659423828", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Safety Harbor", + "scheduled_service": "no", + "gps_code": "FD07", + "local_code": "FD07" + }, + { + "id": "17279", + "ident": "FD08", + "type": "small_airport", + "name": "Antiquers Aerodrome", + "latitude_deg": "26.46540069580078", + "longitude_deg": "-80.1498031616211", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Delray Beach", + "scheduled_service": "no", + "gps_code": "FD08", + "local_code": "FD08" + }, + { + "id": "17280", + "ident": "FD09", + "type": "small_airport", + "name": "Rlm Farms Airport", + "latitude_deg": "27.809999465942383", + "longitude_deg": "-80.85890197753906", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Kenansville", + "scheduled_service": "no", + "gps_code": "FD09", + "local_code": "FD09" + }, + { + "id": "17281", + "ident": "FD10", + "type": "closed", + "name": "Ringhaver Heliport", + "latitude_deg": "28.631701", + "longitude_deg": "-82.422302", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Brooksville", + "scheduled_service": "no", + "keywords": "FD10" + }, + { + "id": "17282", + "ident": "FD11", + "type": "heliport", + "name": "FPC Heliport", + "latitude_deg": "30.32382", + "longitude_deg": "-81.66744", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "FD11", + "local_code": "FD11", + "keywords": "Florida Publishing Company" + }, + { + "id": "17283", + "ident": "FD12", + "type": "seaplane_base", + "name": "Toho Seaplane Base", + "latitude_deg": "28.25029945373535", + "longitude_deg": "-81.3915023803711", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Kissimmee", + "scheduled_service": "no", + "gps_code": "FD12", + "local_code": "FD12" + }, + { + "id": "17284", + "ident": "FD13", + "type": "heliport", + "name": "Cleveland Clinic Florida Hospital Heliport", + "latitude_deg": "26.088899612426758", + "longitude_deg": "-80.36579895019531", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Weston", + "scheduled_service": "no", + "gps_code": "FD13", + "local_code": "FD13" + }, + { + "id": "17285", + "ident": "FD14", + "type": "small_airport", + "name": "Paniola Air Ranch Airport", + "latitude_deg": "29.37529945373535", + "longitude_deg": "-82.05809783935547", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Citra", + "scheduled_service": "no", + "gps_code": "FD14", + "local_code": "FD14" + }, + { + "id": "17286", + "ident": "FD15", + "type": "small_airport", + "name": "Tailwinds Airport", + "latitude_deg": "26.97949981689453", + "longitude_deg": "-80.21869659423828", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jupiter", + "scheduled_service": "no", + "gps_code": "FD15", + "local_code": "FD15" + }, + { + "id": "17287", + "ident": "FD16", + "type": "small_airport", + "name": "Flying C Farm Airport", + "latitude_deg": "29.96579933166504", + "longitude_deg": "-82.872802734375", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Branford", + "scheduled_service": "no", + "gps_code": "FD16", + "local_code": "FD16" + }, + { + "id": "17288", + "ident": "FD17", + "type": "heliport", + "name": "Motorsports Complex VIP Heliport", + "latitude_deg": "25.448601", + "longitude_deg": "-80.410004", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Homestead", + "scheduled_service": "no", + "gps_code": "FD17", + "local_code": "FD17" + }, + { + "id": "17289", + "ident": "FD18", + "type": "heliport", + "name": "Tallahassee Memorial Hospital Heliport", + "latitude_deg": "30.457577", + "longitude_deg": "-84.260405", + "elevation_ft": "279", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tallahassee", + "scheduled_service": "no", + "gps_code": "FD18", + "local_code": "FD18" + }, + { + "id": "17290", + "ident": "FD19", + "type": "heliport", + "name": "Lawnwood Medical Center Heliport", + "latitude_deg": "27.432888", + "longitude_deg": "-80.346037", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Pierce", + "scheduled_service": "no", + "gps_code": "FD19", + "local_code": "FD19" + }, + { + "id": "17291", + "ident": "FD20", + "type": "small_airport", + "name": "Sundance Farms Airport", + "latitude_deg": "26.80030059814453", + "longitude_deg": "-81.48509979248047", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "La Belle", + "scheduled_service": "no", + "gps_code": "FD20", + "local_code": "FD20" + }, + { + "id": "17292", + "ident": "FD21", + "type": "heliport", + "name": "Doctors Memorial Hospital Heliport", + "latitude_deg": "30.12768", + "longitude_deg": "-83.5788255", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Perry", + "scheduled_service": "no", + "keywords": "FD21" + }, + { + "id": "17293", + "ident": "FD22", + "type": "small_airport", + "name": "Melrose Landing Airport", + "latitude_deg": "29.666997", + "longitude_deg": "-81.952734", + "elevation_ft": "159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Hawthorne", + "scheduled_service": "no", + "gps_code": "FD22", + "local_code": "FD22" + }, + { + "id": "17294", + "ident": "FD23", + "type": "heliport", + "name": "Fisher Island Heliport", + "latitude_deg": "25.76420021057129", + "longitude_deg": "-80.13870239257812", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "FD23", + "local_code": "FD23" + }, + { + "id": "17295", + "ident": "FD24", + "type": "small_airport", + "name": "Southern Fruit Groves Airport", + "latitude_deg": "27.221200942993164", + "longitude_deg": "-80.52059936523438", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Port St. Lucie", + "scheduled_service": "no", + "gps_code": "FD24", + "local_code": "FD24" + }, + { + "id": "17296", + "ident": "FD25", + "type": "small_airport", + "name": "Fly In Ranches Airport", + "latitude_deg": "27.5625", + "longitude_deg": "-80.49980163574219", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Vero Beach", + "scheduled_service": "no", + "gps_code": "FD25", + "local_code": "FD25" + }, + { + "id": "17297", + "ident": "FD26", + "type": "small_airport", + "name": "Kirkland Airport", + "latitude_deg": "30.981800079345703", + "longitude_deg": "-85.49240112304688", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Graceville", + "scheduled_service": "no", + "gps_code": "FD26", + "local_code": "FD26" + }, + { + "id": "17298", + "ident": "FD27", + "type": "small_airport", + "name": "Cuyler Field", + "latitude_deg": "30.362699508666992", + "longitude_deg": "-82.2261962890625", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Glen St Mary", + "scheduled_service": "no", + "gps_code": "FD27", + "local_code": "FD27" + }, + { + "id": "17299", + "ident": "FD28", + "type": "heliport", + "name": "Orlando Regional Medical Center Heliport", + "latitude_deg": "28.525176", + "longitude_deg": "-81.377165", + "elevation_ft": "157", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "FD28", + "local_code": "FD28" + }, + { + "id": "17300", + "ident": "FD29", + "type": "small_airport", + "name": "Flying Dutchman Ranch Airport", + "latitude_deg": "29.130800247192383", + "longitude_deg": "-82.11930084228516", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ocala", + "scheduled_service": "no", + "gps_code": "FD29", + "local_code": "FD29" + }, + { + "id": "17301", + "ident": "FD30", + "type": "small_airport", + "name": "Southeastern Airport", + "latitude_deg": "27.411399841308594", + "longitude_deg": "-80.52619934082031", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Pierce", + "scheduled_service": "no", + "gps_code": "FD30", + "local_code": "FD30" + }, + { + "id": "17302", + "ident": "FD31", + "type": "small_airport", + "name": "Bradley Airport", + "latitude_deg": "29.92799949645996", + "longitude_deg": "-82.70120239257812", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort White", + "scheduled_service": "no", + "gps_code": "FD31", + "local_code": "FD31" + }, + { + "id": "17303", + "ident": "FD32", + "type": "closed", + "name": "Lake Gibson High School Heliport", + "latitude_deg": "28.1336", + "longitude_deg": "-81.942903", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lakeland", + "scheduled_service": "no", + "keywords": "FD32" + }, + { + "id": "17304", + "ident": "FD33", + "type": "small_airport", + "name": "Green Swamp Aerodrome", + "latitude_deg": "28.211700439453125", + "longitude_deg": "-81.99870300292969", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lakeland", + "scheduled_service": "no", + "gps_code": "FD33", + "local_code": "FD33" + }, + { + "id": "17305", + "ident": "FD34", + "type": "heliport", + "name": "Motorsports Complex EMS Heliport", + "latitude_deg": "25.453985", + "longitude_deg": "-80.407115", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Homestead", + "scheduled_service": "no", + "gps_code": "FD34", + "local_code": "FD34" + }, + { + "id": "17306", + "ident": "FD35", + "type": "small_airport", + "name": "Redhead Airport", + "latitude_deg": "30.49049949645996", + "longitude_deg": "-85.83940124511719", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ebro", + "scheduled_service": "no", + "gps_code": "FD35", + "local_code": "FD35" + }, + { + "id": "17307", + "ident": "FD36", + "type": "heliport", + "name": "Advent Health East Orlando Heliport", + "latitude_deg": "28.541224", + "longitude_deg": "-81.279941", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "FD36", + "local_code": "FD36", + "keywords": "Florida Hospital East Orlando" + }, + { + "id": "17308", + "ident": "FD37", + "type": "small_airport", + "name": "Gentry Airport", + "latitude_deg": "28.13719940185547", + "longitude_deg": "-81.26339721679688", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St Cloud", + "scheduled_service": "no", + "gps_code": "FD37", + "local_code": "FD37" + }, + { + "id": "17309", + "ident": "FD38", + "type": "small_airport", + "name": "Wellington Aero Club Airport", + "latitude_deg": "26.646499633789062", + "longitude_deg": "-80.29419708251953", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "West Palm Beach", + "scheduled_service": "no", + "gps_code": "FD38", + "local_code": "FD38" + }, + { + "id": "17310", + "ident": "FD39", + "type": "small_airport", + "name": "Flying Cow Air Ranch Airport", + "latitude_deg": "27.1556", + "longitude_deg": "-80.691704", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Okeechobee", + "scheduled_service": "no", + "gps_code": "FD39", + "local_code": "FD39", + "keywords": "Baggett Airpark" + }, + { + "id": "17311", + "ident": "FD40", + "type": "closed", + "name": "Gardner Airport", + "latitude_deg": "27.3445", + "longitude_deg": "-81.792296", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Gardner", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gardner_Airport_(Florida)", + "keywords": "FD40" + }, + { + "id": "17312", + "ident": "FD41", + "type": "heliport", + "name": "Grand Cypress Resort Heliport", + "latitude_deg": "28.38149", + "longitude_deg": "-81.515508", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "FD41", + "local_code": "FD41" + }, + { + "id": "17313", + "ident": "FD42", + "type": "small_airport", + "name": "Cooksey Brothers Airport", + "latitude_deg": "30.211599349975586", + "longitude_deg": "-83.05460357666016", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Live Oak", + "scheduled_service": "no", + "gps_code": "FD42", + "local_code": "FD42" + }, + { + "id": "17314", + "ident": "FD43", + "type": "closed", + "name": "Oaks Helistop", + "latitude_deg": "27.2064", + "longitude_deg": "-82.488197", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Venice", + "scheduled_service": "no", + "keywords": "FD43" + }, + { + "id": "17315", + "ident": "FD44", + "type": "small_airport", + "name": "Eagles Nest Aerodrome", + "latitude_deg": "29.4269444", + "longitude_deg": "-81.6041667", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Crescent City", + "scheduled_service": "no", + "gps_code": "FD44", + "local_code": "FD44" + }, + { + "id": "17316", + "ident": "FD45", + "type": "heliport", + "name": "HCA Florida Fort Walton-Destin Hospital Heliport", + "latitude_deg": "30.455208", + "longitude_deg": "-86.632621", + "elevation_ft": "47", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Walton Beach", + "scheduled_service": "no", + "gps_code": "FD45", + "local_code": "FD45", + "keywords": "Fort Walton Beach Medical Center Heliport" + }, + { + "id": "17317", + "ident": "FD46", + "type": "seaplane_base", + "name": "Goddard Seadrome Seaplane Base", + "latitude_deg": "27.755300521850586", + "longitude_deg": "-81.51399993896484", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Frostproof", + "scheduled_service": "no", + "gps_code": "FD46", + "local_code": "FD46" + }, + { + "id": "17318", + "ident": "FD47", + "type": "heliport", + "name": "Gulf Breeze Hospital Heliport", + "latitude_deg": "30.36066", + "longitude_deg": "-87.156245", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Gulf Breeze", + "scheduled_service": "no", + "gps_code": "FD47", + "local_code": "FD47" + }, + { + "id": "17319", + "ident": "FD48", + "type": "small_airport", + "name": "Deep Forest Airport", + "latitude_deg": "30.241899490356445", + "longitude_deg": "-81.44979858398438", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "FD48", + "local_code": "FD48" + }, + { + "id": "17320", + "ident": "FD49", + "type": "small_airport", + "name": "Montgomery's Flying M Ranch Airport", + "latitude_deg": "28.77359962463379", + "longitude_deg": "-82.13040161132812", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Panasoffkee", + "scheduled_service": "no", + "gps_code": "FD49", + "local_code": "FD49" + }, + { + "id": "17321", + "ident": "FD50", + "type": "small_airport", + "name": "The Trails Airport", + "latitude_deg": "30.109100341796875", + "longitude_deg": "-83.1886978149414", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Mayo", + "scheduled_service": "no", + "gps_code": "FD50", + "local_code": "FD50" + }, + { + "id": "17322", + "ident": "FD51", + "type": "small_airport", + "name": "Summerland Key Cove Airport", + "latitude_deg": "24.658796", + "longitude_deg": "-81.445341", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Summerland Key", + "scheduled_service": "no", + "gps_code": "FD51", + "local_code": "FD51" + }, + { + "id": "17323", + "ident": "FD52", + "type": "heliport", + "name": "Orlando Health St Cloud Hospital Heliport", + "latitude_deg": "28.24389", + "longitude_deg": "-81.303454", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St Cloud", + "scheduled_service": "no", + "gps_code": "FD52", + "local_code": "FD52" + }, + { + "id": "17324", + "ident": "FD53", + "type": "small_airport", + "name": "Cub Haven Airport", + "latitude_deg": "28.4533", + "longitude_deg": "-82.214996", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Dade City", + "scheduled_service": "no", + "gps_code": "FD53", + "local_code": "FD53", + "keywords": "STOLport" + }, + { + "id": "17325", + "ident": "FD54", + "type": "closed", + "name": "Former Orlando Helitours Heliport", + "latitude_deg": "28.3345", + "longitude_deg": "-81.503765", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Kissimmee", + "scheduled_service": "no", + "gps_code": "FD54", + "local_code": "FD54", + "keywords": "kissimmee, gold eagle, orlando helitours" + }, + { + "id": "17326", + "ident": "FD55", + "type": "small_airport", + "name": "Rutten Dusting Strip", + "latitude_deg": "30.679399490356445", + "longitude_deg": "-84.36910247802734", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Havana", + "scheduled_service": "no", + "gps_code": "FD55", + "local_code": "FD55" + }, + { + "id": "17327", + "ident": "FD56", + "type": "heliport", + "name": "Inhome Medical Landing Heliport", + "latitude_deg": "29.45439910888672", + "longitude_deg": "-81.51920318603516", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Crescent City", + "scheduled_service": "no", + "gps_code": "FD56", + "local_code": "FD56" + }, + { + "id": "17328", + "ident": "FD57", + "type": "small_airport", + "name": "Baggett STOLport", + "latitude_deg": "27.46980094909668", + "longitude_deg": "-80.41639709472656", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Pierce", + "scheduled_service": "no", + "gps_code": "FD57", + "local_code": "FD57" + }, + { + "id": "17329", + "ident": "FD58", + "type": "heliport", + "name": "Ascension St. Vincent's Southside Heliport", + "latitude_deg": "30.25492", + "longitude_deg": "-81.583078", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "FD58", + "local_code": "FD58", + "keywords": "St Luke's Hospital" + }, + { + "id": "17330", + "ident": "FD59", + "type": "closed", + "name": "Babcock H.Q. Airport", + "latitude_deg": "26.869499", + "longitude_deg": "-81.717598", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Punta Gorda", + "scheduled_service": "no", + "keywords": "FD59" + }, + { + "id": "17331", + "ident": "FD60", + "type": "heliport", + "name": "Calhoun Sheriff's Heliport", + "latitude_deg": "30.58690071105957", + "longitude_deg": "-85.10379791259766", + "elevation_ft": "214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Altha", + "scheduled_service": "no", + "gps_code": "FD60", + "local_code": "FD60" + }, + { + "id": "17332", + "ident": "FD61", + "type": "small_airport", + "name": "Wright Farms Airport", + "latitude_deg": "30.176599502563477", + "longitude_deg": "-82.9979019165039", + "elevation_ft": "104", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Live Oak", + "scheduled_service": "no", + "gps_code": "FD61", + "local_code": "FD61" + }, + { + "id": "45362", + "ident": "FD62", + "type": "heliport", + "name": "Waters Heliport", + "latitude_deg": "27.780083", + "longitude_deg": "-81.643278", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Meade", + "scheduled_service": "no", + "gps_code": "FD62", + "local_code": "FD62" + }, + { + "id": "17333", + "ident": "FD63", + "type": "small_airport", + "name": "Squires Aviation Ranch Airport", + "latitude_deg": "30.512800216674805", + "longitude_deg": "-83.19830322265625", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jasper", + "scheduled_service": "no", + "gps_code": "FD63", + "local_code": "FD63" + }, + { + "id": "17334", + "ident": "FD64", + "type": "heliport", + "name": "Bay Pines Veterans Administration Heliport", + "latitude_deg": "27.8080997467041", + "longitude_deg": "-82.77449798583984", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St Petersburg", + "scheduled_service": "no", + "gps_code": "FD64", + "local_code": "FD64" + }, + { + "id": "17335", + "ident": "FD65", + "type": "heliport", + "name": "Bartow High School Heliport", + "latitude_deg": "27.8799991607666", + "longitude_deg": "-81.84120178222656", + "elevation_ft": "116", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bartow", + "scheduled_service": "no", + "gps_code": "FD65", + "local_code": "FD65" + }, + { + "id": "17336", + "ident": "FD66", + "type": "heliport", + "name": "Cape Coral Hospital Heliport", + "latitude_deg": "26.638648", + "longitude_deg": "-81.94137", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Cape Coral", + "scheduled_service": "no", + "gps_code": "FD66", + "local_code": "FD66" + }, + { + "id": "17337", + "ident": "FD67", + "type": "heliport", + "name": "Lee Memorial Hospital Emergency Heliport", + "latitude_deg": "26.628744", + "longitude_deg": "-81.874731", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Myers", + "scheduled_service": "no", + "gps_code": "FD67", + "local_code": "FD67" + }, + { + "id": "17338", + "ident": "FD68", + "type": "closed", + "name": "Wakulla Club Airport", + "latitude_deg": "30.195601", + "longitude_deg": "-84.246594", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St. Marks", + "scheduled_service": "no", + "keywords": "FD68" + }, + { + "id": "321924", + "ident": "FD69", + "type": "seaplane_base", + "name": "Lake Apopka South Seaplane Base", + "latitude_deg": "28.5734722", + "longitude_deg": "-81.5949445", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Winter Garden", + "scheduled_service": "no", + "gps_code": "FD69", + "local_code": "FD69" + }, + { + "id": "17339", + "ident": "FD70", + "type": "small_airport", + "name": "River Acres Airport", + "latitude_deg": "27.325300216674805", + "longitude_deg": "-81.02870178222656", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Okeechobee", + "scheduled_service": "no", + "gps_code": "FD70", + "local_code": "FD70" + }, + { + "id": "17340", + "ident": "FD71", + "type": "small_airport", + "name": "O'Brien Airpark East/West Airport", + "latitude_deg": "30.04829979", + "longitude_deg": "-82.98390198", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Branford", + "scheduled_service": "no", + "gps_code": "FD71", + "local_code": "FD71" + }, + { + "id": "17341", + "ident": "FD72", + "type": "small_airport", + "name": "Kings Port Airport", + "latitude_deg": "27.18280029296875", + "longitude_deg": "-81.3906021118164", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Placid", + "scheduled_service": "no", + "gps_code": "FD72", + "local_code": "FD72" + }, + { + "id": "17342", + "ident": "FD73", + "type": "closed", + "name": "Los Olas Center Heliport", + "latitude_deg": "26.1187", + "longitude_deg": "-80.138702", + "elevation_ft": "198", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Lauderdale", + "scheduled_service": "no", + "keywords": "FD73" + }, + { + "id": "17343", + "ident": "FD74", + "type": "small_airport", + "name": "Gamebird Groves Airstrip", + "latitude_deg": "28.066814", + "longitude_deg": "-80.902536", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St Cloud", + "scheduled_service": "no", + "gps_code": "FD74", + "local_code": "FD74" + }, + { + "id": "17344", + "ident": "FD75", + "type": "closed", + "name": "Gulf Aerospace Heliport", + "latitude_deg": "28.0411", + "longitude_deg": "-82.655098", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Oldsmar", + "scheduled_service": "no", + "keywords": "FD75" + }, + { + "id": "45359", + "ident": "FD76", + "type": "heliport", + "name": "Thomas Contracting Heliport", + "latitude_deg": "30.157778", + "longitude_deg": "-81.537778", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "FD76", + "local_code": "FD76" + }, + { + "id": "17345", + "ident": "FD77", + "type": "small_airport", + "name": "Wimauma Air Park", + "latitude_deg": "27.711999893188477", + "longitude_deg": "-82.28289794921875", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Wimauma", + "scheduled_service": "no", + "gps_code": "FD77", + "local_code": "FD77" + }, + { + "id": "17346", + "ident": "FD78", + "type": "seaplane_base", + "name": "Kennedy Seaplane Base", + "latitude_deg": "28.603099822998047", + "longitude_deg": "-81.84950256347656", + "elevation_ft": "94", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Groveland", + "scheduled_service": "no", + "gps_code": "FD78", + "local_code": "FD78" + }, + { + "id": "17347", + "ident": "FD79", + "type": "seaplane_base", + "name": "Jordan Seaplane Base", + "latitude_deg": "29.01409912109375", + "longitude_deg": "-81.97810363769531", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Belleview", + "scheduled_service": "no", + "gps_code": "FD79", + "local_code": "FD79" + }, + { + "id": "17348", + "ident": "FD80", + "type": "seaplane_base", + "name": "Manatee Seaplane Base", + "latitude_deg": "29.505800247192383", + "longitude_deg": "-82.98390197753906", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Old Town", + "scheduled_service": "no", + "gps_code": "FD80", + "local_code": "FD80" + }, + { + "id": "17349", + "ident": "FD81", + "type": "small_airport", + "name": "Gleim Field", + "latitude_deg": "29.702699661254883", + "longitude_deg": "-82.42569732666016", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Gainesville", + "scheduled_service": "no", + "gps_code": "FD81", + "local_code": "FD81" + }, + { + "id": "17350", + "ident": "FD82", + "type": "closed", + "name": "Porter Airport", + "latitude_deg": "30.839218", + "longitude_deg": "-87.102999", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jay", + "scheduled_service": "no", + "keywords": "FD82, Porter STOLport" + }, + { + "id": "17351", + "ident": "FD83", + "type": "small_airport", + "name": "Stout Airport", + "latitude_deg": "28.25860023498535", + "longitude_deg": "-81.38400268554688", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Kissimmee", + "scheduled_service": "no", + "gps_code": "FD83", + "local_code": "FD83" + }, + { + "id": "17352", + "ident": "FD84", + "type": "small_airport", + "name": "Delta Airport", + "latitude_deg": "30.125200271606445", + "longitude_deg": "-82.6636962890625", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake City", + "scheduled_service": "no", + "gps_code": "FD84", + "local_code": "FD84" + }, + { + "id": "17353", + "ident": "FD85", + "type": "heliport", + "name": "DeSoto Memorial Hospital Heliport", + "latitude_deg": "27.227924", + "longitude_deg": "-81.849732", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Arcadia", + "scheduled_service": "no", + "gps_code": "FD85", + "local_code": "FD85" + }, + { + "id": "17354", + "ident": "FD86", + "type": "small_airport", + "name": "Deep Woods Ranch Airport", + "latitude_deg": "29.03030014038086", + "longitude_deg": "-81.4469985961914", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Deland", + "scheduled_service": "no", + "gps_code": "FD86", + "local_code": "FD86" + }, + { + "id": "17355", + "ident": "FD87", + "type": "heliport", + "name": "Jacksonville John E Good Pre-Trial Detention Facility Heliport", + "latitude_deg": "30.325752", + "longitude_deg": "-81.650906", + "elevation_ft": "162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "FD87", + "local_code": "FD87" + }, + { + "id": "17356", + "ident": "FD88", + "type": "small_airport", + "name": "Aero Acres Airport", + "latitude_deg": "27.341999053955078", + "longitude_deg": "-80.52200317382812", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Pierce", + "scheduled_service": "no", + "gps_code": "FD88", + "local_code": "FD88" + }, + { + "id": "17357", + "ident": "FD89", + "type": "small_airport", + "name": "Collier/Pine Barren Airpark", + "latitude_deg": "30.82710075378418", + "longitude_deg": "-87.3582992553711", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Century", + "scheduled_service": "no", + "gps_code": "FD89", + "local_code": "FD89" + }, + { + "id": "17358", + "ident": "FD90", + "type": "small_airport", + "name": "Lafayette Landings Airport", + "latitude_deg": "29.16860008239746", + "longitude_deg": "-81.26480102539062", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "De Leon Springs", + "scheduled_service": "no", + "gps_code": "FD90", + "local_code": "FD90" + }, + { + "id": "17359", + "ident": "FD91", + "type": "heliport", + "name": "Baptist Medical Center of Nassau Heliport", + "latitude_deg": "30.65369987487793", + "longitude_deg": "-81.44819641113281", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fernandina Beach", + "scheduled_service": "no", + "gps_code": "FD91", + "local_code": "FD91" + }, + { + "id": "17360", + "ident": "FD92", + "type": "small_airport", + "name": "Southerland Strip", + "latitude_deg": "28.732799530029297", + "longitude_deg": "-81.07869720458984", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Geneva", + "scheduled_service": "no", + "gps_code": "FD92", + "local_code": "FD92" + }, + { + "id": "17361", + "ident": "FD93", + "type": "small_airport", + "name": "Yellow River Airstrip", + "latitude_deg": "30.68549919128418", + "longitude_deg": "-86.74720001220703", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Holt", + "scheduled_service": "no", + "gps_code": "FD93", + "local_code": "FD93" + }, + { + "id": "17362", + "ident": "FD94", + "type": "small_airport", + "name": "Hartzog Field", + "latitude_deg": "30.718900680541992", + "longitude_deg": "-85.60669708251953", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Chipley", + "scheduled_service": "no", + "gps_code": "FD94", + "local_code": "FD94" + }, + { + "id": "17363", + "ident": "FD95", + "type": "closed", + "name": "Goose Nest Seaplane Base", + "latitude_deg": "30.3988", + "longitude_deg": "-86.188904", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Santa Rosa Beach", + "scheduled_service": "no", + "keywords": "FD95" + }, + { + "id": "17364", + "ident": "FD96", + "type": "small_airport", + "name": "Hilliard's Private Airport", + "latitude_deg": "26.832599639892578", + "longitude_deg": "-81.0801010131836", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Moore Haven", + "scheduled_service": "no", + "gps_code": "FD96", + "local_code": "FD96" + }, + { + "id": "17365", + "ident": "FD97", + "type": "heliport", + "name": "NCH Downtown Hospital Heliport", + "latitude_deg": "26.151028", + "longitude_deg": "-81.797769", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Naples", + "scheduled_service": "no", + "gps_code": "FD97", + "local_code": "FD97", + "keywords": "Naples Community Hospital Heliport" + }, + { + "id": "17366", + "ident": "FD98", + "type": "seaplane_base", + "name": "Ferguson Seaplane Base", + "latitude_deg": "28.71470069885254", + "longitude_deg": "-81.27010345458984", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Winter Springs", + "scheduled_service": "no", + "gps_code": "FD98", + "local_code": "FD98" + }, + { + "id": "17367", + "ident": "FD99", + "type": "heliport", + "name": "Dr. P. Phillips Hospital Heliport", + "latitude_deg": "28.429591", + "longitude_deg": "-81.477099", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "FD99", + "local_code": "FD99", + "keywords": "Sand Lake Health Center" + }, + { + "id": "31105", + "ident": "FDBM", + "type": "small_airport", + "name": "Matata Airport", + "latitude_deg": "-26.867000579833984", + "longitude_deg": "31.933000564575195", + "elevation_ft": "500", + "continent": "AF", + "iso_country": "SZ", + "iso_region": "SZ-LU", + "municipality": "Big Bend", + "scheduled_service": "no", + "gps_code": "FDBM" + }, + { + "id": "29704", + "ident": "FDBS", + "type": "small_airport", + "name": "Big Bend Sugar E Airport", + "latitude_deg": "-26.799999237060547", + "longitude_deg": "31.899999618530273", + "elevation_ft": "541", + "continent": "AF", + "iso_country": "SZ", + "iso_region": "SZ-LU", + "municipality": "Big Bend", + "scheduled_service": "no", + "gps_code": "FDBS" + }, + { + "id": "31106", + "ident": "FDBT", + "type": "small_airport", + "name": "Tambuti Airport", + "latitude_deg": "-26.735200881958008", + "longitude_deg": "31.77589988708496", + "elevation_ft": "595", + "continent": "AF", + "iso_country": "SZ", + "iso_region": "SZ-LU", + "municipality": "Big Bend", + "scheduled_service": "no", + "gps_code": "FDBT" + }, + { + "id": "41310", + "ident": "FDGL", + "type": "small_airport", + "name": "Lavumisa Airport", + "latitude_deg": "-27.320100784301758", + "longitude_deg": "31.889799118041992", + "elevation_ft": "563", + "continent": "AF", + "iso_country": "SZ", + "iso_region": "SZ-SH", + "municipality": "Lavumisa", + "scheduled_service": "no", + "gps_code": "FDGL" + }, + { + "id": "41311", + "ident": "FDKB", + "type": "small_airport", + "name": "Kubuta Airport", + "latitude_deg": "-26.881528", + "longitude_deg": "31.488889", + "elevation_ft": "1555", + "continent": "AF", + "iso_country": "SZ", + "iso_region": "SZ-SH", + "municipality": "Kubuta B", + "scheduled_service": "no", + "gps_code": "FDKB" + }, + { + "id": "30135", + "ident": "FDMH", + "type": "small_airport", + "name": "Mhlume Airport", + "latitude_deg": "-26.024200439453125", + "longitude_deg": "31.809999465942383", + "elevation_ft": "926", + "continent": "AF", + "iso_country": "SZ", + "iso_region": "SZ-LU", + "municipality": "Mhlume", + "scheduled_service": "no", + "gps_code": "FDMH" + }, + { + "id": "2872", + "ident": "FDMS", + "type": "medium_airport", + "name": "Matsapha Airport", + "latitude_deg": "-26.528999", + "longitude_deg": "31.307501", + "elevation_ft": "2075", + "continent": "AF", + "iso_country": "SZ", + "iso_region": "SZ-MA", + "municipality": "Manzini", + "scheduled_service": "no", + "gps_code": "FDMS", + "iata_code": "MTS", + "home_link": "http://www.eswacaa.co.sz/airports/matsapha/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Matsapha_Airport" + }, + { + "id": "30259", + "ident": "FDNG", + "type": "small_airport", + "name": "Piggs Peak Airport", + "latitude_deg": "-25.766666412353516", + "longitude_deg": "31.366666793823242", + "elevation_ft": "1410", + "continent": "AF", + "iso_country": "SZ", + "iso_region": "SZ-HH", + "municipality": "Ngonini", + "scheduled_service": "no", + "gps_code": "FDNG" + }, + { + "id": "30185", + "ident": "FDNH", + "type": "small_airport", + "name": "Nhlangano Airport", + "latitude_deg": "-27.119494", + "longitude_deg": "31.212118", + "elevation_ft": "3522", + "continent": "AF", + "iso_country": "SZ", + "iso_region": "SZ-SH", + "municipality": "Nhlangano", + "scheduled_service": "no", + "gps_code": "FDNH" + }, + { + "id": "31108", + "ident": "FDNS", + "type": "small_airport", + "name": "Nsoko Airport", + "latitude_deg": "-26.987222", + "longitude_deg": "31.937222", + "elevation_ft": "614", + "continent": "AF", + "iso_country": "SZ", + "iso_region": "SZ-LU", + "municipality": "Nsoko", + "scheduled_service": "no", + "gps_code": "FDNS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nsoko_Airfield" + }, + { + "id": "308033", + "ident": "FDSK", + "type": "large_airport", + "name": "King Mswati III International Airport", + "latitude_deg": "-26.358611", + "longitude_deg": "31.716944", + "elevation_ft": "1092", + "continent": "AF", + "iso_country": "SZ", + "iso_region": "SZ-LU", + "municipality": "Mpaka", + "scheduled_service": "yes", + "gps_code": "FDSK", + "iata_code": "SHO", + "home_link": "http://www.eswacaa.co.sz/airports/kingmswatiIII/", + "wikipedia_link": "https://en.wikipedia.org/wiki/King_Mswati_III_International_Airport", + "keywords": "Sikhuphe International Airport" + }, + { + "id": "30416", + "ident": "FDSM", + "type": "small_airport", + "name": "Simunye Airport", + "latitude_deg": "-26.200000762939453", + "longitude_deg": "31.933332443237305", + "elevation_ft": "673", + "continent": "AF", + "iso_country": "SZ", + "iso_region": "SZ-LU", + "municipality": "Simunye", + "scheduled_service": "no", + "gps_code": "FDSM" + }, + { + "id": "31109", + "ident": "FDST", + "type": "small_airport", + "name": "Siteki Airport", + "latitude_deg": "-26.471957", + "longitude_deg": "31.942567", + "elevation_ft": "2220", + "continent": "AF", + "iso_country": "SZ", + "iso_region": "SZ-LU", + "municipality": "Siteki", + "scheduled_service": "no", + "gps_code": "FDST" + }, + { + "id": "30466", + "ident": "FDTM", + "type": "small_airport", + "name": "Tambankulu Airport", + "latitude_deg": "-26.106429", + "longitude_deg": "31.919489", + "elevation_ft": "811", + "continent": "AF", + "iso_country": "SZ", + "iso_region": "SZ-LU", + "municipality": "Tambankulu", + "scheduled_service": "no", + "gps_code": "FDTM" + }, + { + "id": "30495", + "ident": "FDTS", + "type": "small_airport", + "name": "Tshaneni Airport", + "latitude_deg": "-25.983334", + "longitude_deg": "31.200001", + "elevation_ft": "1020", + "continent": "AF", + "iso_country": "SZ", + "iso_region": "SZ-HH", + "municipality": "Tshaneni", + "scheduled_service": "no", + "gps_code": "FDTS" + }, + { + "id": "41312", + "ident": "FDUB", + "type": "small_airport", + "name": "Ubombo Ranches Airport", + "latitude_deg": "-26.77079963684082", + "longitude_deg": "31.936399459838867", + "continent": "AF", + "iso_country": "SZ", + "iso_region": "SZ-LU", + "municipality": "Big Bend", + "scheduled_service": "no", + "gps_code": "FDUB" + }, + { + "id": "300713", + "ident": "FEA", + "type": "small_airport", + "name": "Fetlar Airport", + "latitude_deg": "60.603333", + "longitude_deg": "-0.872778", + "elevation_ft": "263", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Fetlar Island", + "scheduled_service": "no", + "gps_code": "EG39", + "iata_code": "FEA" + }, + { + "id": "31111", + "ident": "FEFA", + "type": "small_airport", + "name": "Alindao Airport", + "latitude_deg": "5.022184", + "longitude_deg": "21.198635", + "elevation_ft": "1470", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-BK", + "municipality": "Alindao", + "scheduled_service": "no", + "gps_code": "FEFA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alindao_Airport" + }, + { + "id": "46207", + "ident": "FEFB", + "type": "small_airport", + "name": "Poste Airport", + "latitude_deg": "5.403889", + "longitude_deg": "26.487222", + "elevation_ft": "2137", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-HM", + "municipality": "Obo", + "scheduled_service": "no", + "gps_code": "FEFB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Poste_Airport" + }, + { + "id": "30850", + "ident": "FEFC", + "type": "small_airport", + "name": "Carnot Airport", + "latitude_deg": "4.936999797821045", + "longitude_deg": "15.894000053405762", + "elevation_ft": "1985", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-HS", + "municipality": "Carnot", + "scheduled_service": "no", + "gps_code": "FEFC", + "iata_code": "CRF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carnot_Airport" + }, + { + "id": "31112", + "ident": "FEFD", + "type": "small_airport", + "name": "Damara Airport", + "latitude_deg": "4.949999809265137", + "longitude_deg": "18.700000762939453", + "elevation_ft": "1427", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-MP", + "municipality": "Damara", + "scheduled_service": "no", + "gps_code": "FEFD" + }, + { + "id": "31113", + "ident": "FEFE", + "type": "small_airport", + "name": "Mobaye Mbanga Airport", + "latitude_deg": "4.374650001525879", + "longitude_deg": "21.131900787353516", + "elevation_ft": "1332", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-BK", + "municipality": "Mobaye Mbanga", + "scheduled_service": "no", + "gps_code": "FEFE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mobaye_Mbanga_Airport" + }, + { + "id": "2873", + "ident": "FEFF", + "type": "medium_airport", + "name": "Bangui M'Poko International Airport", + "latitude_deg": "4.39847993850708", + "longitude_deg": "18.518800735473633", + "elevation_ft": "1208", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-MP", + "municipality": "Bangui", + "scheduled_service": "yes", + "gps_code": "FEFF", + "iata_code": "BGF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bangui_M'Poko_International_Airport" + }, + { + "id": "30703", + "ident": "FEFG", + "type": "small_airport", + "name": "Bangassou Airport", + "latitude_deg": "4.784999847412109", + "longitude_deg": "22.7810001373291", + "elevation_ft": "1706", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-MB", + "municipality": "Bangassou", + "scheduled_service": "no", + "gps_code": "FEFG", + "iata_code": "BGU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bangassou_Airport" + }, + { + "id": "31687", + "ident": "FEFI", + "type": "small_airport", + "name": "Birao Airport", + "latitude_deg": "10.23639965057373", + "longitude_deg": "22.716899871826172", + "elevation_ft": "1696", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-VR", + "municipality": "Birao", + "scheduled_service": "no", + "gps_code": "FEFI", + "iata_code": "IRO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Birao_Airport" + }, + { + "id": "31114", + "ident": "FEFK", + "type": "small_airport", + "name": "Kembé Airport", + "latitude_deg": "4.599999904632568", + "longitude_deg": "21.867000579833984", + "elevation_ft": "1913", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-BK", + "municipality": "Kembé", + "scheduled_service": "no", + "gps_code": "FEFK" + }, + { + "id": "30695", + "ident": "FEFL", + "type": "closed", + "name": "Bossembélé Airport", + "latitude_deg": "5.267002", + "longitude_deg": "17.632999", + "elevation_ft": "2231", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-MP", + "municipality": "Bossembélé", + "scheduled_service": "no", + "gps_code": "FEFL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bossemb%C3%A9l%C3%A9_Airport", + "keywords": "BEM" + }, + { + "id": "30684", + "ident": "FEFM", + "type": "small_airport", + "name": "Bambari Airport", + "latitude_deg": "5.847012", + "longitude_deg": "20.64992", + "elevation_ft": "1549", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-UK", + "municipality": "Bambari", + "scheduled_service": "no", + "gps_code": "FEFM", + "iata_code": "BBY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bambari_Airport" + }, + { + "id": "32016", + "ident": "FEFN", + "type": "small_airport", + "name": "N'Délé Airport", + "latitude_deg": "8.427206039428711", + "longitude_deg": "20.635156631469727", + "elevation_ft": "1631", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-BB", + "municipality": "N'Délé", + "scheduled_service": "no", + "gps_code": "FEFN", + "iata_code": "NDL", + "wikipedia_link": "https://en.wikipedia.org/wiki/N%27D%C3%A9l%C3%A9_Airport", + "keywords": "Ndele" + }, + { + "id": "30785", + "ident": "FEFO", + "type": "small_airport", + "name": "Bouar Airport", + "latitude_deg": "5.958000183105469", + "longitude_deg": "15.63700008392334", + "elevation_ft": "3360", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-NM", + "municipality": "Bouar", + "scheduled_service": "no", + "gps_code": "FEFO", + "iata_code": "BOP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bouar_Airport" + }, + { + "id": "31115", + "ident": "FEFP", + "type": "small_airport", + "name": "Paoua Airport", + "latitude_deg": "7.25", + "longitude_deg": "16.433000564575195", + "elevation_ft": "2037", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-OP", + "municipality": "Paoua", + "scheduled_service": "no", + "gps_code": "FEFP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paoua_Airport" + }, + { + "id": "31116", + "ident": "FEFQ", + "type": "small_airport", + "name": "Kaga-Bandoro Airport", + "latitude_deg": "6.982999801635742", + "longitude_deg": "19.183000564575195", + "elevation_ft": "1476", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-KB", + "municipality": "Kaga-Bandoro", + "scheduled_service": "no", + "gps_code": "FEFQ" + }, + { + "id": "30756", + "ident": "FEFR", + "type": "small_airport", + "name": "Bria Airport", + "latitude_deg": "6.527780055999756", + "longitude_deg": "21.98940086364746", + "elevation_ft": "1975", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-HK", + "municipality": "Bria", + "scheduled_service": "no", + "gps_code": "FEFR", + "iata_code": "BIV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bria_Airport" + }, + { + "id": "30794", + "ident": "FEFS", + "type": "small_airport", + "name": "Bossangoa Airport", + "latitude_deg": "6.492000102996826", + "longitude_deg": "17.429000854492188", + "elevation_ft": "1637", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-AC", + "municipality": "Bossangoa", + "scheduled_service": "no", + "gps_code": "FEFS", + "iata_code": "BSN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bossangoa_Airport" + }, + { + "id": "2874", + "ident": "FEFT", + "type": "medium_airport", + "name": "Berbérati Airport", + "latitude_deg": "4.2215800285339355", + "longitude_deg": "15.786399841308594", + "elevation_ft": "1929", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-HS", + "municipality": "Berbérati", + "scheduled_service": "no", + "gps_code": "FEFT", + "iata_code": "BBT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Berb%C3%A9rati_Airport" + }, + { + "id": "31117", + "ident": "FEFU", + "type": "small_airport", + "name": "Sibut Airport", + "latitude_deg": "5.732999801635742", + "longitude_deg": "19.08300018310547", + "elevation_ft": "1411", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-KG", + "municipality": "Sibut", + "scheduled_service": "no", + "gps_code": "FEFU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sibut_Airport" + }, + { + "id": "32083", + "ident": "FEFW", + "type": "small_airport", + "name": "Ouadda Airport", + "latitude_deg": "8.010560035705566", + "longitude_deg": "22.39859962463379", + "elevation_ft": "2461", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-HK", + "municipality": "Ouadda", + "scheduled_service": "no", + "gps_code": "FEFW", + "iata_code": "ODA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ouadda_Airport" + }, + { + "id": "30626", + "ident": "FEFY", + "type": "small_airport", + "name": "Yalinga Airport", + "latitude_deg": "6.519999980926514", + "longitude_deg": "23.260000228881836", + "elevation_ft": "1975", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-HK", + "municipality": "Yalinga", + "scheduled_service": "no", + "gps_code": "FEFY", + "iata_code": "AIG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yalinga_Airport" + }, + { + "id": "31676", + "ident": "FEFZ", + "type": "small_airport", + "name": "Zemio Airport", + "latitude_deg": "5.002226", + "longitude_deg": "25.101857", + "elevation_ft": "1995", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-HM", + "municipality": "Zemio", + "scheduled_service": "no", + "gps_code": "FEFZ", + "iata_code": "IMO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zemio_Airport" + }, + { + "id": "31119", + "ident": "FEGB", + "type": "small_airport", + "name": "Bambouli Airport", + "latitude_deg": "5.433000087738037", + "longitude_deg": "27.216999053955078", + "elevation_ft": "2264", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-HM", + "municipality": "Bambouli", + "scheduled_service": "no", + "gps_code": "FEGB" + }, + { + "id": "31120", + "ident": "FEGC", + "type": "small_airport", + "name": "Bocaranga Airport", + "latitude_deg": "6.916999816894531", + "longitude_deg": "15.616999626159668", + "elevation_ft": "3464", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-OP", + "municipality": "Bocaranga", + "scheduled_service": "no", + "gps_code": "FEGC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bocaranga_Airport" + }, + { + "id": "31121", + "ident": "FEGD", + "type": "small_airport", + "name": "Dekoa Airport", + "latitude_deg": "6.300000190734863", + "longitude_deg": "19.08300018310547", + "elevation_ft": "1804", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-KG", + "municipality": "Dekoa", + "scheduled_service": "no", + "gps_code": "FEGD" + }, + { + "id": "31916", + "ident": "FEGE", + "type": "small_airport", + "name": "M'Boki Airport", + "latitude_deg": "5.33301019669", + "longitude_deg": "25.931900024399997", + "elevation_ft": "1969", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-HM", + "municipality": "Mboki", + "scheduled_service": "no", + "gps_code": "FEGE", + "iata_code": "MKI", + "wikipedia_link": "https://en.wikipedia.org/wiki/M%27Boki_Airport" + }, + { + "id": "30800", + "ident": "FEGF", + "type": "small_airport", + "name": "Batangafo Airport", + "latitude_deg": "7.314109802246094", + "longitude_deg": "18.308799743652344", + "elevation_ft": "1378", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-AC", + "municipality": "Batangafo", + "scheduled_service": "no", + "gps_code": "FEGF", + "iata_code": "BTG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Batangafo_Airport" + }, + { + "id": "31122", + "ident": "FEGG", + "type": "small_airport", + "name": "Gamboula Airport", + "latitude_deg": "4.132999897003174", + "longitude_deg": "15.149999618530273", + "elevation_ft": "2001", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-HS", + "municipality": "Gamboula", + "scheduled_service": "no", + "gps_code": "FEGG" + }, + { + "id": "31123", + "ident": "FEGI", + "type": "small_airport", + "name": "Grimari Airport", + "latitude_deg": "5.683000087738037", + "longitude_deg": "20.049999237060547", + "elevation_ft": "1312", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-UK", + "municipality": "Grimari", + "scheduled_service": "no", + "gps_code": "FEGI" + }, + { + "id": "31124", + "ident": "FEGL", + "type": "small_airport", + "name": "Gordil Airport", + "latitude_deg": "9.581117", + "longitude_deg": "21.728172", + "elevation_ft": "1427", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-BB", + "municipality": "Melle", + "scheduled_service": "no", + "gps_code": "FEGL", + "iata_code": "GDI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gordil_Airport", + "keywords": "Gourdil, Manovo-Gounda St. Floris National Park" + }, + { + "id": "30775", + "ident": "FEGM", + "type": "small_airport", + "name": "Bakouma Airport", + "latitude_deg": "5.693999767303467", + "longitude_deg": "22.801000595092773", + "elevation_ft": "1640", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-MB", + "municipality": "Bakouma", + "scheduled_service": "no", + "gps_code": "FEGM", + "iata_code": "BMF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bakouma_Airport" + }, + { + "id": "32084", + "ident": "FEGO", + "type": "small_airport", + "name": "Ouanda Djallé Airport", + "latitude_deg": "8.899999618530273", + "longitude_deg": "22.783000946044922", + "elevation_ft": "1985", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-VR", + "municipality": "Ouanda Djallé", + "scheduled_service": "no", + "gps_code": "FEGO", + "iata_code": "ODJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ouanda_Djall%C3%A9_Airport" + }, + { + "id": "32204", + "ident": "FEGR", + "type": "small_airport", + "name": "Rafaï Airport", + "latitude_deg": "4.988609790802002", + "longitude_deg": "23.927799224853516", + "elevation_ft": "1759", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-MB", + "municipality": "Rafaï", + "scheduled_service": "no", + "gps_code": "FEGR", + "iata_code": "RFA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rafa%C3%AF_Airport" + }, + { + "id": "30686", + "ident": "FEGU", + "type": "small_airport", + "name": "Bouca Airport", + "latitude_deg": "6.517000198364258", + "longitude_deg": "18.267000198364258", + "elevation_ft": "1532", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-AC", + "municipality": "Bouca", + "scheduled_service": "no", + "gps_code": "FEGU", + "iata_code": "BCF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bouca_Airport" + }, + { + "id": "30787", + "ident": "FEGZ", + "type": "small_airport", + "name": "Bozoum Airport", + "latitude_deg": "6.344170093536377", + "longitude_deg": "16.3218994140625", + "elevation_ft": "2215", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-OP", + "municipality": "Bozoum", + "scheduled_service": "no", + "gps_code": "FEGZ", + "iata_code": "BOZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bozoum_Airport" + }, + { + "id": "17368", + "ident": "FEW", + "type": "heliport", + "name": "Francis E Warren Air Force Base", + "latitude_deg": "41.133302", + "longitude_deg": "-104.866997", + "elevation_ft": "6160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Cheyenne", + "scheduled_service": "no", + "gps_code": "KFEW", + "local_code": "FEW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Francis_E._Warren_Air_Force_Base" + }, + { + "id": "313672", + "ident": "FGAB", + "type": "small_airport", + "name": "Annobón Airport", + "latitude_deg": "-1.410277", + "longitude_deg": "5.621944", + "elevation_ft": "82", + "continent": "AF", + "iso_country": "GQ", + "iso_region": "GQ-AN", + "municipality": "San Antonio de Palé", + "scheduled_service": "yes", + "gps_code": "FGAB", + "iata_code": "NBN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Annob%C3%B3n_Airport", + "keywords": "San Antonio de Palé Airport, FGAB ?, FGAN ?" + }, + { + "id": "2875", + "ident": "FGBT", + "type": "medium_airport", + "name": "Bata Airport", + "latitude_deg": "1.90547", + "longitude_deg": "9.80568", + "elevation_ft": "13", + "continent": "AF", + "iso_country": "GQ", + "iso_region": "GQ-LI", + "municipality": "Bata", + "scheduled_service": "yes", + "gps_code": "FGBT", + "iata_code": "BSG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bata_Airport" + }, + { + "id": "318497", + "ident": "FGMY", + "type": "small_airport", + "name": "President Obiang Nguema International Airport", + "latitude_deg": "1.685334", + "longitude_deg": "11.024394", + "elevation_ft": "2165", + "continent": "AF", + "iso_country": "GQ", + "iso_region": "GQ-WN", + "municipality": "Mengomeyén", + "scheduled_service": "no", + "gps_code": "FGMY", + "iata_code": "GEM", + "wikipedia_link": "https://en.wikipedia.org/wiki/President_Obiang_Nguema_International_Airport" + }, + { + "id": "2876", + "ident": "FGSL", + "type": "medium_airport", + "name": "Malabo Airport", + "latitude_deg": "3.755270004272461", + "longitude_deg": "8.708720207214355", + "elevation_ft": "76", + "continent": "AF", + "iso_country": "GQ", + "iso_region": "GQ-BN", + "municipality": "Malabo", + "scheduled_service": "yes", + "gps_code": "FGSL", + "iata_code": "SSG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Malabo_International_Airport", + "keywords": "Fernando Poo" + }, + { + "id": "2877", + "ident": "FHAW", + "type": "medium_airport", + "name": "RAF Ascension Island", + "latitude_deg": "-7.9696", + "longitude_deg": "-14.3937", + "elevation_ft": "278", + "continent": "AF", + "iso_country": "SH", + "iso_region": "SH-AC", + "municipality": "Cat Hill", + "scheduled_service": "yes", + "gps_code": "FHAW", + "iata_code": "ASI", + "home_link": "http://www.raf.mod.uk/organisation/stations.cfm?selectStation=9DEB5257-FDEF-6850-8B1CFF5050616CC1#cgi.script_name#", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Ascension_Island", + "keywords": "Wideawake Airfield, Ascension Island Auxiliary Field" + }, + { + "id": "46307", + "ident": "FHB", + "type": "small_airport", + "name": "Fernandina Beach Muni Airport", + "latitude_deg": "30.611811", + "longitude_deg": "-81.461186", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fernandina Beach", + "scheduled_service": "no", + "gps_code": "FHB", + "local_code": "FHB" + }, + { + "id": "17369", + "ident": "FHK", + "type": "heliport", + "name": "Knox Army Heliport", + "latitude_deg": "31.31679916381836", + "longitude_deg": "-85.6666030883789", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker/Ozark", + "scheduled_service": "no", + "gps_code": "FHK", + "local_code": "FHK" + }, + { + "id": "318444", + "ident": "FHSH", + "type": "small_airport", + "name": "Saint Helena Airport", + "latitude_deg": "-15.957725", + "longitude_deg": "-5.645943", + "elevation_ft": "1017", + "continent": "AF", + "iso_country": "SH", + "iso_region": "SH-SH", + "municipality": "Longwood", + "scheduled_service": "yes", + "gps_code": "FHSH", + "iata_code": "HLE", + "home_link": "http://sthelenaairport.com/", + "wikipedia_link": "https://en.m.wikipedia.org/wiki/Saint_Helena_Airport#" + }, + { + "id": "316406", + "ident": "FI-0001", + "type": "small_airport", + "name": "Pistohiekan Glider Field", + "latitude_deg": "61.567659", + "longitude_deg": "28.01329", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-04", + "municipality": "Hirvensalo", + "scheduled_service": "no" + }, + { + "id": "316474", + "ident": "FI-0002", + "type": "small_airport", + "name": "Ummeljoki KW Ultralight Airfield", + "latitude_deg": "60.75732", + "longitude_deg": "26.734313", + "elevation_ft": "135", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-09", + "municipality": "Myllykoski", + "scheduled_service": "no", + "home_link": "http://www.ummeljoki.com/index.php?p=1_9_Ummeljoki-KW" + }, + { + "id": "317427", + "ident": "FI-0003", + "type": "small_airport", + "name": "Nummijärvi Airfield", + "latitude_deg": "62.308695", + "longitude_deg": "22.518812", + "elevation_ft": "558", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-03", + "municipality": "Nummijärvi", + "scheduled_service": "no" + }, + { + "id": "317995", + "ident": "FI-0004", + "type": "small_airport", + "name": "Ähtäri Airfield", + "latitude_deg": "62.513442", + "longitude_deg": "24.068282", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-03", + "municipality": "Ähtäri", + "scheduled_service": "no" + }, + { + "id": "324292", + "ident": "FI-0005", + "type": "small_airport", + "name": "Mänttä - Sassi Airfield", + "latitude_deg": "62.028", + "longitude_deg": "24.664", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-11", + "municipality": "Mänttä", + "scheduled_service": "no", + "home_link": "http://sassiin.fi/" + }, + { + "id": "345032", + "ident": "FI-0006", + "type": "small_airport", + "name": "Taivalkoski", + "latitude_deg": "65.34774", + "longitude_deg": "28.34182", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-14", + "scheduled_service": "no" + }, + { + "id": "346791", + "ident": "FI-0007", + "type": "small_airport", + "name": "Parkano Airfield", + "latitude_deg": "62.01534", + "longitude_deg": "23.05801", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-11", + "scheduled_service": "no" + }, + { + "id": "347090", + "ident": "FI-0008", + "type": "small_airport", + "name": "Soini Airfield", + "latitude_deg": "62.861405", + "longitude_deg": "24.165115", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-03", + "scheduled_service": "no" + }, + { + "id": "347255", + "ident": "FI-0009", + "type": "closed", + "name": "Hangasjärvi Airstrip", + "latitude_deg": "66.75258", + "longitude_deg": "28.71291", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-10", + "scheduled_service": "no" + }, + { + "id": "353459", + "ident": "FI-0010", + "type": "small_airport", + "name": "Sitikkala Airstrip", + "latitude_deg": "60.934393", + "longitude_deg": "26.235523", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-09", + "scheduled_service": "no" + }, + { + "id": "429721", + "ident": "FI-0011", + "type": "closed", + "name": "Katajanokka Airport", + "latitude_deg": "60.164123", + "longitude_deg": "24.975121", + "elevation_ft": "0", + "continent": "EU", + "iso_country": "FI", + "iso_region": "FI-18", + "municipality": "Helsinki", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Katajanokka_Airport" + }, + { + "id": "2878", + "ident": "FIMP", + "type": "large_airport", + "name": "Sir Seewoosagur Ramgoolam International Airport", + "latitude_deg": "-20.430201", + "longitude_deg": "57.683601", + "elevation_ft": "186", + "continent": "AF", + "iso_country": "MU", + "iso_region": "MU-GP", + "municipality": "Plaine Magnein", + "scheduled_service": "yes", + "gps_code": "FIMP", + "iata_code": "MRU", + "home_link": "http://aml.mru.aero/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sir_Seewoosagur_Ramgoolam_International_Airport", + "keywords": "Plaisance International Airport" + }, + { + "id": "2879", + "ident": "FIMR", + "type": "medium_airport", + "name": "Sir Charles Gaetan Duval Airport", + "latitude_deg": "-19.7577", + "longitude_deg": "63.361", + "elevation_ft": "95", + "continent": "AF", + "iso_country": "MU", + "iso_region": "MU-VP", + "municipality": "Port Mathurin", + "scheduled_service": "yes", + "gps_code": "FIMR", + "iata_code": "RRG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rodrigues_Island_Airport", + "keywords": "Plaine Corail" + }, + { + "id": "46177", + "ident": "FIN", + "type": "small_airport", + "name": "Finschhafen Airport", + "latitude_deg": "-6.621750109", + "longitude_deg": "147.85405", + "elevation_ft": "60", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Buki", + "scheduled_service": "no", + "gps_code": "AYFI", + "iata_code": "FIN", + "local_code": "FIN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Finschhafen_Airport" + }, + { + "id": "316625", + "ident": "FJ-0001", + "type": "small_airport", + "name": "Taunovo Airstrip", + "latitude_deg": "-18.2553", + "longitude_deg": "178.0492", + "elevation_ft": "21", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-C", + "municipality": "Nanuku Auberge Resort", + "scheduled_service": "no" + }, + { + "id": "352637", + "ident": "FJ-0002", + "type": "heliport", + "name": "Vomo Heliport", + "latitude_deg": "-17.5014", + "longitude_deg": "177.27288", + "elevation_ft": "46", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-W", + "municipality": "Vomo", + "scheduled_service": "no" + }, + { + "id": "353598", + "ident": "FJ-0003", + "type": "heliport", + "name": "Matamanoa Island Heliport", + "latitude_deg": "-17.63799", + "longitude_deg": "177.06631", + "elevation_ft": "190", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-W", + "municipality": "Nadi", + "scheduled_service": "no" + }, + { + "id": "2880", + "ident": "FJDG", + "type": "medium_airport", + "name": "Diego Garcia Naval Support Facility", + "latitude_deg": "-7.31327", + "longitude_deg": "72.411102", + "elevation_ft": "9", + "continent": "AS", + "iso_country": "IO", + "iso_region": "IO-U-A", + "municipality": "Diego Garcia", + "scheduled_service": "no", + "gps_code": "FJDG", + "iata_code": "NKW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Diego_Garcia", + "keywords": "Chagos" + }, + { + "id": "41526", + "ident": "FK-0001", + "type": "small_airport", + "name": "Fox Bay Clay Airstrip", + "latitude_deg": "-51.933694", + "longitude_deg": "-60.061595", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Fox Bay", + "scheduled_service": "no" + }, + { + "id": "41527", + "ident": "FK-0002", + "type": "small_airport", + "name": "Pebble Island Landing Strip", + "latitude_deg": "-51.30978775024414", + "longitude_deg": "-59.60877227783203", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Pebble Island Settlement", + "scheduled_service": "no" + }, + { + "id": "41528", + "ident": "FK-0003", + "type": "small_airport", + "name": "Sea Lion Lodge Airstrip", + "latitude_deg": "-52.428215", + "longitude_deg": "-59.077744", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Sea Lion Island", + "scheduled_service": "no" + }, + { + "id": "41529", + "ident": "FK-0004", + "type": "small_airport", + "name": "West Point Island Landing Strip", + "latitude_deg": "-51.345611572265625", + "longitude_deg": "-60.6839714050293", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "West Point Island", + "scheduled_service": "no" + }, + { + "id": "41530", + "ident": "FK-0005", + "type": "small_airport", + "name": "Goose Green Airfield", + "latitude_deg": "-51.819282", + "longitude_deg": "-58.980893", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Goose Green", + "scheduled_service": "no" + }, + { + "id": "41531", + "ident": "FK-0006", + "type": "small_airport", + "name": "Roy Cove Landing Strip", + "latitude_deg": "-51.539398193359375", + "longitude_deg": "-60.35639953613281", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Roy Cove", + "scheduled_service": "no" + }, + { + "id": "41532", + "ident": "FK-0007", + "type": "small_airport", + "name": "Spring Point Landing Strip", + "latitude_deg": "-51.82929992675781", + "longitude_deg": "-60.45140075683594", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Spring Point Settlement", + "scheduled_service": "no" + }, + { + "id": "41533", + "ident": "FK-0008", + "type": "small_airport", + "name": "Port San Carlos Landing Strip", + "latitude_deg": "-51.50166702270508", + "longitude_deg": "-59.00361251831055", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Port San Carlos", + "scheduled_service": "no" + }, + { + "id": "43039", + "ident": "FK-0009", + "type": "small_airport", + "name": "Port Howard Purvis Pond Airstrip", + "latitude_deg": "-51.5681", + "longitude_deg": "-59.533699", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Port Howard Settlement", + "scheduled_service": "no" + }, + { + "id": "43040", + "ident": "FK-0010", + "type": "small_airport", + "name": "Saunders Island Landing Strip", + "latitude_deg": "-51.37810134887695", + "longitude_deg": "-60.091609954833984", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Saunders Island Settlement", + "scheduled_service": "no" + }, + { + "id": "43041", + "ident": "FK-0011", + "type": "small_airport", + "name": "Carcass Island Landing Strip", + "latitude_deg": "-51.263671875", + "longitude_deg": "-60.592079162597656", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Carcass Island", + "scheduled_service": "no" + }, + { + "id": "322393", + "ident": "FK-0012", + "type": "small_airport", + "name": "Port Stephens Airport", + "latitude_deg": "-52.09473", + "longitude_deg": "-60.852379", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Port Stephens", + "scheduled_service": "no" + }, + { + "id": "322394", + "ident": "FK-0013", + "type": "small_airport", + "name": "Port Abermarle Airport", + "latitude_deg": "-52.205532", + "longitude_deg": "-60.535062", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Port Abermarle", + "scheduled_service": "no" + }, + { + "id": "322395", + "ident": "FK-0014", + "type": "small_airport", + "name": "Dunnose Head Airport", + "latitude_deg": "-51.753339", + "longitude_deg": "-60.415834", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Dunnose Head", + "scheduled_service": "no" + }, + { + "id": "322396", + "ident": "FK-0015", + "type": "small_airport", + "name": "Shallow Harbour Airport", + "latitude_deg": "-51.755735", + "longitude_deg": "-60.534498", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Shallow Harbour", + "scheduled_service": "no" + }, + { + "id": "322397", + "ident": "FK-0016", + "type": "small_airport", + "name": "Hill Cove Airport", + "latitude_deg": "-51.504427", + "longitude_deg": "-60.144435", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Hill Cove", + "scheduled_service": "no" + }, + { + "id": "322398", + "ident": "FK-0017", + "type": "small_airport", + "name": "Chartres Airport", + "latitude_deg": "-51.719307", + "longitude_deg": "-60.062361", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Chartres", + "scheduled_service": "no" + }, + { + "id": "322399", + "ident": "FK-0018", + "type": "small_airport", + "name": "New Island Airport", + "latitude_deg": "-51.746491", + "longitude_deg": "-61.281616", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "New Island", + "scheduled_service": "no" + }, + { + "id": "322400", + "ident": "FK-0019", + "type": "small_airport", + "name": "North Arm Airport", + "latitude_deg": "-52.123295", + "longitude_deg": "-59.370239", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "North Arm", + "scheduled_service": "no" + }, + { + "id": "322401", + "ident": "FK-0020", + "type": "small_airport", + "name": "Salvador Airport", + "latitude_deg": "-51.436639", + "longitude_deg": "-58.378874", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Salvador", + "scheduled_service": "no" + }, + { + "id": "322402", + "ident": "FK-0021", + "type": "closed", + "name": "San Carlos Airport", + "latitude_deg": "-51.575581", + "longitude_deg": "-59.041846", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "San Carlos", + "scheduled_service": "no" + }, + { + "id": "322403", + "ident": "FK-0022", + "type": "small_airport", + "name": "Lively Island Airport", + "latitude_deg": "-51.995626", + "longitude_deg": "-58.459238", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Lively", + "scheduled_service": "no" + }, + { + "id": "322404", + "ident": "FK-0023", + "type": "small_airport", + "name": "George Island Airport", + "latitude_deg": "-52.349583", + "longitude_deg": "-59.758717", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "George Island House", + "scheduled_service": "no" + }, + { + "id": "322405", + "ident": "FK-0024", + "type": "small_airport", + "name": "Douglas Station Airport", + "latitude_deg": "-51.459942", + "longitude_deg": "-58.612131", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Douglas", + "scheduled_service": "no" + }, + { + "id": "322406", + "ident": "FK-0025", + "type": "closed", + "name": "Walker Creek Airport", + "latitude_deg": "-51.964171", + "longitude_deg": "-58.787408", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Walker Creek", + "scheduled_service": "no" + }, + { + "id": "322407", + "ident": "FK-0026", + "type": "small_airport", + "name": "Speedwell Island Airport", + "latitude_deg": "-52.2299", + "longitude_deg": "-59.744502", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Speedwell Island", + "scheduled_service": "no" + }, + { + "id": "322419", + "ident": "FK-0027", + "type": "small_airport", + "name": "Bleaker Island Airport", + "latitude_deg": "-52.181403", + "longitude_deg": "-58.858788", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Bleaker Island", + "scheduled_service": "no" + }, + { + "id": "322420", + "ident": "FK-0028", + "type": "small_airport", + "name": "Weddell Island Airport", + "latitude_deg": "-51.875659", + "longitude_deg": "-60.90601", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Weddell Island", + "scheduled_service": "no" + }, + { + "id": "322421", + "ident": "FK-0029", + "type": "small_airport", + "name": "Beaver Island Airport", + "latitude_deg": "-51.84025", + "longitude_deg": "-61.23365", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Beaver Island", + "scheduled_service": "no" + }, + { + "id": "322424", + "ident": "FK-0030", + "type": "closed", + "name": "Golding Island Airport", + "latitude_deg": "-51.365478", + "longitude_deg": "-59.691389", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Golding Island", + "scheduled_service": "no" + }, + { + "id": "322425", + "ident": "FK-0031", + "type": "closed", + "name": "Dunbar Airport", + "latitude_deg": "-51.420879", + "longitude_deg": "-60.422927", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Dunbar", + "scheduled_service": "no" + }, + { + "id": "322495", + "ident": "FK-0032", + "type": "small_airport", + "name": "Port Edgar Airport", + "latitude_deg": "-52.090803", + "longitude_deg": "-60.282682", + "elevation_ft": "65", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Port Edgar", + "scheduled_service": "no" + }, + { + "id": "322500", + "ident": "FK-0033", + "type": "small_airport", + "name": "Port Howard Airstrip", + "latitude_deg": "-51.613225", + "longitude_deg": "-59.516675", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Port Howard", + "scheduled_service": "no" + }, + { + "id": "322501", + "ident": "FK-0034", + "type": "small_airport", + "name": "Sea Lion Island Airstrip", + "latitude_deg": "-52.441146", + "longitude_deg": "-59.127616", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Sea Lion Island", + "scheduled_service": "no" + }, + { + "id": "322502", + "ident": "FK-0035", + "type": "small_airport", + "name": "Fox Bay East Airstrip", + "latitude_deg": "-51.955049", + "longitude_deg": "-60.06315", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Fox Bay East", + "scheduled_service": "no" + }, + { + "id": "322504", + "ident": "FK-0036", + "type": "small_airport", + "name": "Pebble Island Beach Airstrip", + "latitude_deg": "-51.310931", + "longitude_deg": "-59.566162", + "elevation_ft": "1", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Pebble Island", + "scheduled_service": "no" + }, + { + "id": "322579", + "ident": "FK-0037", + "type": "closed", + "name": "Fox Bay Helipad", + "latitude_deg": "-51.948893", + "longitude_deg": "-60.066041", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Fox Bay East", + "scheduled_service": "no" + }, + { + "id": "31130", + "ident": "FKAB", + "type": "small_airport", + "name": "Banyo Airport", + "latitude_deg": "6.774990081787109", + "longitude_deg": "11.807000160217285", + "elevation_ft": "3642", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-AD", + "municipality": "Banyo", + "scheduled_service": "no", + "gps_code": "FKAB" + }, + { + "id": "31131", + "ident": "FKAF", + "type": "small_airport", + "name": "Bafia Airport", + "latitude_deg": "4.767000198364258", + "longitude_deg": "11.217000007629395", + "elevation_ft": "1591", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-CE", + "municipality": "Bafia", + "scheduled_service": "no", + "gps_code": "FKAF" + }, + { + "id": "31132", + "ident": "FKAG", + "type": "small_airport", + "name": "Abong M'bang Airport", + "latitude_deg": "3.9670000076293945", + "longitude_deg": "13.199999809265137", + "elevation_ft": "2297", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-ES", + "municipality": "Abong M'bang", + "scheduled_service": "no", + "gps_code": "FKAG" + }, + { + "id": "32034", + "ident": "FKAN", + "type": "closed", + "name": "Nkongsamba Airport", + "latitude_deg": "4.95", + "longitude_deg": "9.933", + "elevation_ft": "2641", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-LT", + "municipality": "Nkongsamba", + "scheduled_service": "no", + "gps_code": "FKAN", + "iata_code": "NKS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nkongsamba_Airport" + }, + { + "id": "31133", + "ident": "FKAO", + "type": "small_airport", + "name": "Bétaré Oya Airport", + "latitude_deg": "5.504169940948486", + "longitude_deg": "14.098299980163574", + "elevation_ft": "3002", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-ES", + "municipality": "Bétaré Oya", + "scheduled_service": "no", + "gps_code": "FKAO" + }, + { + "id": "342880", + "ident": "FKBJ", + "type": "small_airport", + "name": "M'Bandjock Airport", + "latitude_deg": "4.435338", + "longitude_deg": "11.925884", + "elevation_ft": "1640", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-CE", + "municipality": "M'Bandjock", + "scheduled_service": "no", + "gps_code": "FKBJ", + "keywords": "FKP2, FK09, Mbandjock" + }, + { + "id": "31725", + "ident": "FKKB", + "type": "small_airport", + "name": "Kribi Airport", + "latitude_deg": "2.8738899231", + "longitude_deg": "9.9777803421", + "elevation_ft": "148", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-SU", + "municipality": "Kribi", + "scheduled_service": "no", + "gps_code": "FKKB", + "iata_code": "KBI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kribi_Airport" + }, + { + "id": "2881", + "ident": "FKKC", + "type": "medium_airport", + "name": "Tiko Airport", + "latitude_deg": "4.08919000626", + "longitude_deg": "9.360529899600001", + "elevation_ft": "151", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-SW", + "municipality": "Tiko", + "scheduled_service": "no", + "gps_code": "FKKC", + "iata_code": "TKC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tiko_Airport" + }, + { + "id": "2882", + "ident": "FKKD", + "type": "medium_airport", + "name": "Douala International Airport", + "latitude_deg": "4.0060801506", + "longitude_deg": "9.719479560849999", + "elevation_ft": "33", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-LT", + "municipality": "Douala", + "scheduled_service": "yes", + "gps_code": "FKKD", + "iata_code": "DLA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Douala_International_Airport" + }, + { + "id": "31134", + "ident": "FKKE", + "type": "small_airport", + "name": "Eseka Airport", + "latitude_deg": "3.642129", + "longitude_deg": "10.79093", + "elevation_ft": "738", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-CE", + "municipality": "Eseka", + "scheduled_service": "no", + "gps_code": "FKKE" + }, + { + "id": "31921", + "ident": "FKKF", + "type": "small_airport", + "name": "Mamfe Airport", + "latitude_deg": "5.704170227050781", + "longitude_deg": "9.306389808654785", + "elevation_ft": "413", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-SW", + "municipality": "Mamfe", + "scheduled_service": "no", + "gps_code": "FKKF", + "iata_code": "MMF" + }, + { + "id": "302411", + "ident": "FKKG", + "type": "small_airport", + "name": "Bali Airport", + "latitude_deg": "5.89527777778", + "longitude_deg": "10.0338888889", + "elevation_ft": "4465", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-NW", + "municipality": "Bali", + "scheduled_service": "no", + "gps_code": "FKKG", + "iata_code": "BLC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bali_Airport" + }, + { + "id": "31757", + "ident": "FKKH", + "type": "small_airport", + "name": "Kaélé Airport", + "latitude_deg": "10.092499732971191", + "longitude_deg": "14.445599555969238", + "elevation_ft": "1276", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-EN", + "municipality": "Kaélé", + "scheduled_service": "no", + "gps_code": "FKKH", + "iata_code": "KLE" + }, + { + "id": "32133", + "ident": "FKKI", + "type": "small_airport", + "name": "Batouri Airport", + "latitude_deg": "4.474999904632568", + "longitude_deg": "14.362500190734863", + "elevation_ft": "2152", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-ES", + "municipality": "Batouri", + "scheduled_service": "no", + "gps_code": "FKKI", + "iata_code": "OUR" + }, + { + "id": "31561", + "ident": "FKKJ", + "type": "small_airport", + "name": "Yagoua Airport", + "latitude_deg": "10.356100082397461", + "longitude_deg": "15.237199783325195", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-EN", + "municipality": "Yagoua", + "scheduled_service": "no", + "gps_code": "FKKJ", + "iata_code": "GXX" + }, + { + "id": "2883", + "ident": "FKKL", + "type": "medium_airport", + "name": "Salak Airport", + "latitude_deg": "10.451399803161621", + "longitude_deg": "14.257399559020996", + "elevation_ft": "1390", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-EN", + "municipality": "Maroua", + "scheduled_service": "yes", + "gps_code": "FKKL", + "iata_code": "MVR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salak_Airport" + }, + { + "id": "2884", + "ident": "FKKM", + "type": "medium_airport", + "name": "Foumban Nkounja Airport", + "latitude_deg": "5.636919975280762", + "longitude_deg": "10.750800132751465", + "elevation_ft": "3963", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-OU", + "municipality": "Foumban", + "scheduled_service": "no", + "gps_code": "FKKM", + "iata_code": "FOM" + }, + { + "id": "2885", + "ident": "FKKN", + "type": "medium_airport", + "name": "N'Gaoundéré Airport", + "latitude_deg": "7.3570098876953125", + "longitude_deg": "13.559200286865234", + "elevation_ft": "3655", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-AD", + "municipality": "N'Gaoundéré", + "scheduled_service": "yes", + "gps_code": "FKKN", + "iata_code": "NGE", + "wikipedia_link": "https://en.wikipedia.org/wiki/N'Gaound%C3%A9r%C3%A9_Airport", + "keywords": "Ngaoundere" + }, + { + "id": "30797", + "ident": "FKKO", + "type": "small_airport", + "name": "Bertoua Airport", + "latitude_deg": "4.548610210418701", + "longitude_deg": "13.726099967956543", + "elevation_ft": "2133", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-ES", + "municipality": "Bertoua", + "scheduled_service": "no", + "gps_code": "FKKO", + "iata_code": "BTA" + }, + { + "id": "2886", + "ident": "FKKR", + "type": "medium_airport", + "name": "Garoua International Airport", + "latitude_deg": "9.33588981628418", + "longitude_deg": "13.370100021362305", + "elevation_ft": "794", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-NO", + "municipality": "Garoua", + "scheduled_service": "yes", + "gps_code": "FKKR", + "iata_code": "GOU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Garoua_International_Airport" + }, + { + "id": "30947", + "ident": "FKKS", + "type": "small_airport", + "name": "Dschang Airport", + "latitude_deg": "5.449999809265137", + "longitude_deg": "10.067000389099121", + "elevation_ft": "4593", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-OU", + "municipality": "Dschang", + "scheduled_service": "no", + "gps_code": "FKKS", + "iata_code": "DSC" + }, + { + "id": "31135", + "ident": "FKKT", + "type": "small_airport", + "name": "Tibati Airport", + "latitude_deg": "6.482999801635742", + "longitude_deg": "12.633000373840332", + "elevation_ft": "2854", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-AD", + "municipality": "Tibati", + "scheduled_service": "no", + "gps_code": "FKKT" + }, + { + "id": "2887", + "ident": "FKKU", + "type": "medium_airport", + "name": "Bafoussam Airport", + "latitude_deg": "5.536920070650001", + "longitude_deg": "10.354599952700001", + "elevation_ft": "4347", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-OU", + "municipality": "Bafoussam", + "scheduled_service": "no", + "gps_code": "FKKU", + "iata_code": "BFX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bafoussam_Airport" + }, + { + "id": "2888", + "ident": "FKKV", + "type": "medium_airport", + "name": "Bamenda Airport", + "latitude_deg": "6.039239883422852", + "longitude_deg": "10.122599601745605", + "elevation_ft": "4065", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-NW", + "municipality": "Bamenda", + "scheduled_service": "no", + "gps_code": "FKKV", + "iata_code": "BPC" + }, + { + "id": "30978", + "ident": "FKKW", + "type": "small_airport", + "name": "Ebolowa Airport", + "latitude_deg": "2.875999927520752", + "longitude_deg": "11.1850004196167", + "elevation_ft": "1975", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-SU", + "municipality": "Ebolowa", + "scheduled_service": "no", + "gps_code": "FKKW", + "iata_code": "EBW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ebolowa_Airport" + }, + { + "id": "2889", + "ident": "FKKY", + "type": "medium_airport", + "name": "Yaoundé Airport", + "latitude_deg": "3.8360400199890137", + "longitude_deg": "11.523500442504883", + "elevation_ft": "2464", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-CE", + "municipality": "Yaoundé", + "scheduled_service": "yes", + "gps_code": "FKKY", + "iata_code": "YAO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yaound%C3%A9_Airport", + "keywords": "Yaoundé Ville Airport" + }, + { + "id": "2890", + "ident": "FKYS", + "type": "medium_airport", + "name": "Yaoundé Nsimalen International Airport", + "latitude_deg": "3.722559928894043", + "longitude_deg": "11.553299903869629", + "elevation_ft": "2278", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-CE", + "municipality": "Yaoundé", + "scheduled_service": "yes", + "gps_code": "FKYS", + "iata_code": "NSI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yaound%C3%A9_Nsimalen_International_Airport" + }, + { + "id": "17371", + "ident": "FL00", + "type": "small_airport", + "name": "Griffins Peace River Ranch Airport", + "latitude_deg": "27.418899536132812", + "longitude_deg": "-81.83260345458984", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Zolfo Springs", + "scheduled_service": "no", + "gps_code": "FL00", + "local_code": "FL00" + }, + { + "id": "17372", + "ident": "FL01", + "type": "small_airport", + "name": "Crews Homestead Ranch Airport", + "latitude_deg": "27.6210994720459", + "longitude_deg": "-81.61060333251953", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Avon Park", + "scheduled_service": "no", + "gps_code": "FL01", + "local_code": "FL01" + }, + { + "id": "17373", + "ident": "FL02", + "type": "small_airport", + "name": "Fox Field", + "latitude_deg": "29.889400482177734", + "longitude_deg": "-82.79869842529297", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Branford", + "scheduled_service": "no", + "gps_code": "FL02", + "local_code": "FL02" + }, + { + "id": "17374", + "ident": "FL03", + "type": "small_airport", + "name": "Department of Corrections Field", + "latitude_deg": "29.991899490356445", + "longitude_deg": "-82.36650085449219", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Butler", + "scheduled_service": "no", + "gps_code": "FL03", + "local_code": "FL03" + }, + { + "id": "17375", + "ident": "FL04", + "type": "seaplane_base", + "name": "Pate Lake Seaplane Base", + "latitude_deg": "30.692100524902344", + "longitude_deg": "-85.75689697265625", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Caryville", + "scheduled_service": "no", + "gps_code": "FL04", + "local_code": "FL04" + }, + { + "id": "17376", + "ident": "FL05", + "type": "closed", + "name": "Hill Landing Strip", + "latitude_deg": "30.175501", + "longitude_deg": "-82.606499", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake City", + "scheduled_service": "no", + "keywords": "FL05" + }, + { + "id": "17377", + "ident": "FL06", + "type": "closed", + "name": "Golden Harvest Flying Svc Inc Airport", + "latitude_deg": "30.903", + "longitude_deg": "-87.0439", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jay", + "scheduled_service": "no", + "keywords": "FL06" + }, + { + "id": "17378", + "ident": "FL07", + "type": "small_airport", + "name": "Wings N Sunsets LLC Airport", + "latitude_deg": "30.250200271599997", + "longitude_deg": "-82.92400360110001", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Live Oak", + "scheduled_service": "no", + "gps_code": "FL07", + "local_code": "FL07" + }, + { + "id": "17379", + "ident": "FL08", + "type": "small_airport", + "name": "Florida Sheriffs Boys Ranch Airport", + "latitude_deg": "30.41550064086914", + "longitude_deg": "-83.0165023803711", + "elevation_ft": "93", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Live Oak", + "scheduled_service": "no", + "gps_code": "FL08", + "local_code": "FL08" + }, + { + "id": "17380", + "ident": "FL09", + "type": "small_airport", + "name": "Kittyhawk Estates Airport", + "latitude_deg": "30.33880043029785", + "longitude_deg": "-83.14430236816406", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Live Oak", + "scheduled_service": "no", + "gps_code": "FL09", + "local_code": "FL09" + }, + { + "id": "17381", + "ident": "FL10", + "type": "small_airport", + "name": "Little River Airport", + "latitude_deg": "30.114999771118164", + "longitude_deg": "-82.90899658203125", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Mc Alpin", + "scheduled_service": "no", + "gps_code": "FL10", + "local_code": "FL10" + }, + { + "id": "17382", + "ident": "FL11", + "type": "small_airport", + "name": "Thrifts Airport", + "latitude_deg": "30.34939956665039", + "longitude_deg": "-82.12090301513672", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Macclenny", + "scheduled_service": "no", + "gps_code": "FL11", + "local_code": "FL11" + }, + { + "id": "17383", + "ident": "FL12", + "type": "small_airport", + "name": "Ingalls Field", + "latitude_deg": "30.590499877929688", + "longitude_deg": "-84.03040313720703", + "elevation_ft": "183", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miccosukee", + "scheduled_service": "no", + "gps_code": "FL12", + "local_code": "FL12" + }, + { + "id": "17384", + "ident": "FL13", + "type": "small_airport", + "name": "Spencer's Airpark", + "latitude_deg": "30.068599700927734", + "longitude_deg": "-81.96070098876953", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Middleburg", + "scheduled_service": "no", + "gps_code": "FL13", + "local_code": "FL13" + }, + { + "id": "17385", + "ident": "FL14", + "type": "closed", + "name": "Vosika's Airport", + "latitude_deg": "30.7799", + "longitude_deg": "-85.598", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Chipley", + "scheduled_service": "no", + "keywords": "FL14" + }, + { + "id": "17386", + "ident": "FL15", + "type": "closed", + "name": "Steep Head Farm Airport", + "latitude_deg": "30.420635", + "longitude_deg": "-85.299246", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Clarksville", + "scheduled_service": "no", + "keywords": "FL15" + }, + { + "id": "17387", + "ident": "FL16", + "type": "small_airport", + "name": "Market World Airport", + "latitude_deg": "28.0585994720459", + "longitude_deg": "-81.81649780273438", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Auburndale", + "scheduled_service": "no", + "gps_code": "FL16", + "local_code": "FL16" + }, + { + "id": "17388", + "ident": "FL17", + "type": "small_airport", + "name": "Ruckel Airport", + "latitude_deg": "30.51959991455078", + "longitude_deg": "-86.43830108642578", + "elevation_ft": "67", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Niceville", + "scheduled_service": "no", + "gps_code": "FL17", + "local_code": "FL17" + }, + { + "id": "17389", + "ident": "FL18", + "type": "small_airport", + "name": "Suwannee Farms Airport", + "latitude_deg": "30.090499877929688", + "longitude_deg": "-83.05460357666016", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "O'Brien", + "scheduled_service": "no", + "gps_code": "FL18", + "local_code": "FL18" + }, + { + "id": "17390", + "ident": "FL19", + "type": "small_airport", + "name": "Crosswind Farm Airport", + "latitude_deg": "29.24530029296875", + "longitude_deg": "-82.35369873046875", + "elevation_ft": "74", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ocala", + "scheduled_service": "no", + "gps_code": "FL19", + "local_code": "FL19" + }, + { + "id": "345324", + "ident": "FL20", + "type": "heliport", + "name": "The Villages Regional Hospital Heliport", + "latitude_deg": "28.949711", + "longitude_deg": "-81.959891", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "The Villages", + "scheduled_service": "no", + "gps_code": "FL20", + "local_code": "FL20" + }, + { + "id": "17391", + "ident": "FL21", + "type": "heliport", + "name": "Berlin Heliport", + "latitude_deg": "30.46299934387207", + "longitude_deg": "-81.61509704589844", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Oceanway", + "scheduled_service": "no", + "gps_code": "FL21", + "local_code": "FL21" + }, + { + "id": "17392", + "ident": "FL22", + "type": "heliport", + "name": "Saint Lucie Medical Center Heliport", + "latitude_deg": "27.288434", + "longitude_deg": "-80.292856", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Port Saint Lucie", + "scheduled_service": "no", + "gps_code": "FL22", + "local_code": "FL22" + }, + { + "id": "17393", + "ident": "FL23", + "type": "closed", + "name": "Strazzulla Groves Airport", + "latitude_deg": "27.4975", + "longitude_deg": "-80.53487", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Pierce", + "scheduled_service": "no", + "keywords": "FL23" + }, + { + "id": "17394", + "ident": "FL24", + "type": "heliport", + "name": "West Florida Regional Medical Center Heliport", + "latitude_deg": "30.500200271606445", + "longitude_deg": "-87.25", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pensacola", + "scheduled_service": "no", + "gps_code": "FL24", + "local_code": "FL24" + }, + { + "id": "17395", + "ident": "FL25", + "type": "closed", + "name": "Fudruckers Heliport", + "latitude_deg": "30.391001", + "longitude_deg": "-86.4533", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Destin", + "scheduled_service": "no", + "keywords": "FL25" + }, + { + "id": "17396", + "ident": "FL26", + "type": "closed", + "name": "Kitching Cove Seaplane Base", + "latitude_deg": "27.250299", + "longitude_deg": "-80.322247", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Port St Lucie", + "scheduled_service": "no", + "keywords": "FL26" + }, + { + "id": "17397", + "ident": "FL27", + "type": "small_airport", + "name": "Lake City Airpark", + "latitude_deg": "30.043800354003906", + "longitude_deg": "-82.60399627685547", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake City", + "scheduled_service": "no", + "gps_code": "FL27", + "local_code": "FL27" + }, + { + "id": "17398", + "ident": "FL28", + "type": "small_airport", + "name": "State Prison Field", + "latitude_deg": "30.05579948425293", + "longitude_deg": "-82.17230224609375", + "elevation_ft": "123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Raiford", + "scheduled_service": "no", + "gps_code": "FL28", + "local_code": "FL28" + }, + { + "id": "17399", + "ident": "FL29", + "type": "small_airport", + "name": "Hales 700 Airport", + "latitude_deg": "27.3612003326416", + "longitude_deg": "-80.5708999633789", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Pierce", + "scheduled_service": "no", + "gps_code": "FL29", + "local_code": "FL29" + }, + { + "id": "17400", + "ident": "FL30", + "type": "heliport", + "name": "HCA New Port Richey Hospital Heliport", + "latitude_deg": "28.235162", + "longitude_deg": "-82.722374", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "New Port Richey", + "scheduled_service": "no", + "gps_code": "FL30", + "local_code": "FL30" + }, + { + "id": "17401", + "ident": "FL31", + "type": "small_airport", + "name": "Mjd STOLport", + "latitude_deg": "25.55459976196289", + "longitude_deg": "-80.55390167236328", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "FL31", + "local_code": "FL31" + }, + { + "id": "17402", + "ident": "FL32", + "type": "heliport", + "name": "HCA Florida Bayonet Point Hospital Heliport", + "latitude_deg": "28.362416", + "longitude_deg": "-82.688025", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Hudson", + "scheduled_service": "no", + "gps_code": "FL32", + "local_code": "FL32", + "keywords": "Regional Medical Center Bayonet Point Heliport" + }, + { + "id": "17403", + "ident": "FL33", + "type": "small_airport", + "name": "Watson Flight Strip", + "latitude_deg": "29.66830062866211", + "longitude_deg": "-82.82620239257812", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Trenton", + "scheduled_service": "no", + "gps_code": "FL33", + "local_code": "FL33" + }, + { + "id": "17404", + "ident": "FL34", + "type": "small_airport", + "name": "Eglin Test Site B6 Airport", + "latitude_deg": "30.631900787353516", + "longitude_deg": "-86.74720001220703", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Valparaiso", + "scheduled_service": "no", + "gps_code": "FL34", + "local_code": "FL34" + }, + { + "id": "43042", + "ident": "FL35", + "type": "small_airport", + "name": "Geraci Airpark", + "latitude_deg": "28.174999237060547", + "longitude_deg": "-82.48777770996094", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lutz", + "scheduled_service": "no", + "gps_code": "FL35", + "local_code": "FL35" + }, + { + "id": "45361", + "ident": "FL36", + "type": "closed", + "name": "Tocoi Airport", + "latitude_deg": "29.867472", + "longitude_deg": "-81.367361", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St. Augustine", + "scheduled_service": "no", + "keywords": "FL36" + }, + { + "id": "17406", + "ident": "FL37", + "type": "small_airport", + "name": "Treasure Coast Airpark", + "latitude_deg": "27.238399505615234", + "longitude_deg": "-80.49140167236328", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Pierce", + "scheduled_service": "no", + "gps_code": "FL37", + "local_code": "FL37" + }, + { + "id": "17407", + "ident": "FL38", + "type": "heliport", + "name": "Care Flight Heliport", + "latitude_deg": "27.982466", + "longitude_deg": "-82.493799", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tampa", + "scheduled_service": "no", + "gps_code": "FL38", + "local_code": "FL38" + }, + { + "id": "17408", + "ident": "FL39", + "type": "heliport", + "name": "Wellington Medical Center Heliport", + "latitude_deg": "26.63759994506836", + "longitude_deg": "-80.20449829101562", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "West Palm Beach", + "scheduled_service": "no", + "gps_code": "FL39", + "local_code": "FL39" + }, + { + "id": "17409", + "ident": "FL40", + "type": "small_airport", + "name": "Graham Landing Strip - Moore Haven Airport", + "latitude_deg": "26.8409004211", + "longitude_deg": "-81.1517028809", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Moore Haven", + "scheduled_service": "no", + "gps_code": "FL40", + "local_code": "FL40" + }, + { + "id": "17410", + "ident": "FL41", + "type": "small_airport", + "name": "Okeelanta Airport", + "latitude_deg": "26.581199645996094", + "longitude_deg": "-80.75589752197266", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "South Bay", + "scheduled_service": "no", + "gps_code": "FL41", + "local_code": "FL41" + }, + { + "id": "17411", + "ident": "FL42", + "type": "seaplane_base", + "name": "King Seaaero Seaplane Base", + "latitude_deg": "28.03860092163086", + "longitude_deg": "-81.75370025634766", + "elevation_ft": "133", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Winter Haven", + "scheduled_service": "no", + "gps_code": "FL42", + "local_code": "FL42" + }, + { + "id": "17412", + "ident": "FL43", + "type": "small_airport", + "name": "Burntwood Ranch Airport", + "latitude_deg": "28.258100509643555", + "longitude_deg": "-81.93060302734375", + "elevation_ft": "119", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lakeland", + "scheduled_service": "no", + "gps_code": "FL43", + "local_code": "FL43" + }, + { + "id": "17413", + "ident": "FL44", + "type": "heliport", + "name": "Smokey's Heliport", + "latitude_deg": "29.23080062866211", + "longitude_deg": "-81.0280990600586", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Daytona Beach", + "scheduled_service": "no", + "gps_code": "FL44", + "local_code": "FL44" + }, + { + "id": "17414", + "ident": "FL45", + "type": "heliport", + "name": "Manatee Memorial Hospital Heliport", + "latitude_deg": "27.49575", + "longitude_deg": "-82.562537", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bradenton", + "scheduled_service": "no", + "gps_code": "FL45", + "local_code": "FL45" + }, + { + "id": "45365", + "ident": "FL46", + "type": "closed", + "name": "Bartram Farms Air Park", + "latitude_deg": "29.821178", + "longitude_deg": "-81.497058", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Elkton", + "scheduled_service": "no", + "keywords": "FL46" + }, + { + "id": "17415", + "ident": "FL47", + "type": "closed", + "name": "Ashley Field", + "latitude_deg": "28.8925", + "longitude_deg": "-81.5569", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Eustis", + "scheduled_service": "no", + "keywords": "FL47" + }, + { + "id": "17416", + "ident": "FL48", + "type": "small_airport", + "name": "Sierra Airpark", + "latitude_deg": "28.882200241088867", + "longitude_deg": "-82.42970275878906", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Worthington Springs", + "scheduled_service": "no", + "gps_code": "FL48", + "local_code": "FL48" + }, + { + "id": "17417", + "ident": "FL49", + "type": "heliport", + "name": "Bernie Little Heliport", + "latitude_deg": "29.169700622558594", + "longitude_deg": "-82.14949798583984", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ocala", + "scheduled_service": "no", + "gps_code": "FL49", + "local_code": "FL49" + }, + { + "id": "17418", + "ident": "FL50", + "type": "small_airport", + "name": "Rossi Field", + "latitude_deg": "30.1466007232666", + "longitude_deg": "-82.57230377197266", + "elevation_ft": "183", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake City", + "scheduled_service": "no", + "gps_code": "FL50", + "local_code": "FL50" + }, + { + "id": "17419", + "ident": "FL51", + "type": "heliport", + "name": "WPTV Heliport", + "latitude_deg": "26.71407", + "longitude_deg": "-80.063884", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "West Palm Beach", + "scheduled_service": "no", + "gps_code": "FL51", + "local_code": "FL51" + }, + { + "id": "17420", + "ident": "FL52", + "type": "small_airport", + "name": "Angel's Field", + "latitude_deg": "30.4810009", + "longitude_deg": "-84.08679962", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tallahassee", + "scheduled_service": "no", + "gps_code": "FL52", + "local_code": "FL52" + }, + { + "id": "17421", + "ident": "FL53", + "type": "heliport", + "name": "Joey Anderson Heliport", + "latitude_deg": "30.734600067138672", + "longitude_deg": "-85.18489837646484", + "elevation_ft": "114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Marianna", + "scheduled_service": "no", + "gps_code": "FL53", + "local_code": "FL53" + }, + { + "id": "17422", + "ident": "FL54", + "type": "small_airport", + "name": "Flying Tiger Field", + "latitude_deg": "29.93549919128418", + "longitude_deg": "-82.41069793701172", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Worthington", + "scheduled_service": "no", + "gps_code": "FL54", + "local_code": "FL54" + }, + { + "id": "17423", + "ident": "FL55", + "type": "seaplane_base", + "name": "Sanford Seaplane Base", + "latitude_deg": "28.822799682617188", + "longitude_deg": "-81.26329803466797", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sanford", + "scheduled_service": "no", + "gps_code": "FL55", + "local_code": "FL55" + }, + { + "id": "17424", + "ident": "FL56", + "type": "closed", + "name": "Williams Hawgwild Airport", + "latitude_deg": "27.410157", + "longitude_deg": "-80.429342", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Pierce", + "scheduled_service": "no", + "keywords": "FL56" + }, + { + "id": "17425", + "ident": "FL57", + "type": "small_airport", + "name": "Carter Airport", + "latitude_deg": "28.618900299072266", + "longitude_deg": "-81.50869750976562", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Apopka", + "scheduled_service": "no", + "gps_code": "FL57", + "local_code": "FL57" + }, + { + "id": "17426", + "ident": "FL58", + "type": "small_airport", + "name": "Johary Airport", + "latitude_deg": "29.026399612426758", + "longitude_deg": "-81.98789978027344", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Belleview", + "scheduled_service": "no", + "gps_code": "FL58", + "local_code": "FL58" + }, + { + "id": "17427", + "ident": "FL59", + "type": "small_airport", + "name": "Buckingham Field", + "latitude_deg": "26.643400192260742", + "longitude_deg": "-81.71040344238281", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Myers", + "scheduled_service": "no", + "gps_code": "FL59", + "local_code": "FL59" + }, + { + "id": "17428", + "ident": "FL60", + "type": "small_airport", + "name": "Reynolds Airpark", + "latitude_deg": "29.97249984741211", + "longitude_deg": "-81.66089630126953", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Green Cove Springs", + "scheduled_service": "no", + "gps_code": "FL60", + "local_code": "FL60" + }, + { + "id": "17429", + "ident": "FL61", + "type": "small_airport", + "name": "Mc Ginley Airport", + "latitude_deg": "29.0261001587", + "longitude_deg": "-82.2123031616", + "elevation_ft": "84", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ocala", + "scheduled_service": "no", + "gps_code": "FL61", + "local_code": "FL61" + }, + { + "id": "17430", + "ident": "FL62", + "type": "small_airport", + "name": "Bradshaw Tree Farm Airport", + "latitude_deg": "28.948601", + "longitude_deg": "-81.413101", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Deland", + "scheduled_service": "no", + "gps_code": "FL62", + "local_code": "FL62", + "keywords": "Bradshaw Farm Airport" + }, + { + "id": "17431", + "ident": "FL63", + "type": "closed", + "name": "Idle Wild Airport", + "latitude_deg": "29.289101", + "longitude_deg": "-82.322305", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ocala", + "scheduled_service": "no", + "keywords": "FL63" + }, + { + "id": "17432", + "ident": "FL64", + "type": "closed", + "name": "Hardrives Delta Number 3 Helistop", + "latitude_deg": "26.4328", + "longitude_deg": "-80.093597", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Delray Beach", + "scheduled_service": "no", + "keywords": "FL64" + }, + { + "id": "17433", + "ident": "FL65", + "type": "closed", + "name": "Mac-Ivor & Friends Airstrip", + "latitude_deg": "26.0448", + "longitude_deg": "-80.373398", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Hollywood", + "scheduled_service": "no", + "keywords": "FL65" + }, + { + "id": "17434", + "ident": "FL66", + "type": "small_airport", + "name": "Peach Orchard Airport", + "latitude_deg": "29.55970001220703", + "longitude_deg": "-82.49949645996094", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Archer", + "scheduled_service": "no", + "gps_code": "FL66", + "local_code": "FL66" + }, + { + "id": "17435", + "ident": "FL67", + "type": "small_airport", + "name": "Evans Properties Inc Airport", + "latitude_deg": "27.277799606323242", + "longitude_deg": "-80.58589935302734", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Pierce", + "scheduled_service": "no", + "gps_code": "FL67", + "local_code": "FL67" + }, + { + "id": "17436", + "ident": "FL68", + "type": "heliport", + "name": "Sheriff's South Multi District Office Heliport", + "latitude_deg": "29.10580062866211", + "longitude_deg": "-82.09089660644531", + "elevation_ft": "71", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ocala", + "scheduled_service": "no", + "gps_code": "FL68", + "local_code": "FL68" + }, + { + "id": "17437", + "ident": "FL69", + "type": "heliport", + "name": "Grande Oaks Golf Club Heliport", + "latitude_deg": "26.07979965209961", + "longitude_deg": "-80.25479888916016", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Davie", + "scheduled_service": "no", + "gps_code": "FL69", + "local_code": "FL69" + }, + { + "id": "17438", + "ident": "FL70", + "type": "heliport", + "name": "Wfla-Tv 8 Heliport", + "latitude_deg": "27.943899154663086", + "longitude_deg": "-82.46170043945312", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tampa", + "scheduled_service": "no", + "gps_code": "FL70", + "local_code": "FL70" + }, + { + "id": "17439", + "ident": "FL71", + "type": "heliport", + "name": "Pennington Heliport", + "latitude_deg": "30.374399185180664", + "longitude_deg": "-86.17939758300781", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "De Funiak Springs", + "scheduled_service": "no", + "gps_code": "FL71", + "local_code": "FL71" + }, + { + "id": "17440", + "ident": "FL72", + "type": "seaplane_base", + "name": "Mezrah Seaplane Base", + "latitude_deg": "27.947500228881836", + "longitude_deg": "-82.39089965820312", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tampa", + "scheduled_service": "no", + "gps_code": "FL72", + "local_code": "FL72" + }, + { + "id": "17441", + "ident": "FL73", + "type": "closed", + "name": "Lykes Palmdale Airport", + "latitude_deg": "26.9478", + "longitude_deg": "-81.318703", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Palmdale", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lykes_Palmdale_Airport", + "keywords": "FL73" + }, + { + "id": "17442", + "ident": "FL74", + "type": "small_airport", + "name": "Indian River Aerodrome", + "latitude_deg": "27.598600387573242", + "longitude_deg": "-80.50199890136719", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Vero Beach", + "scheduled_service": "no", + "gps_code": "FL74", + "local_code": "FL74" + }, + { + "id": "17443", + "ident": "FL75", + "type": "small_airport", + "name": "Indian Hammock Airport", + "latitude_deg": "27.54199981689453", + "longitude_deg": "-80.83309936523438", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Drum", + "scheduled_service": "no", + "gps_code": "FL75", + "local_code": "FL75" + }, + { + "id": "17444", + "ident": "FL76", + "type": "small_airport", + "name": "Seven Springs Ranch Airport", + "latitude_deg": "28.963899612426758", + "longitude_deg": "-82.21949768066406", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ocala", + "scheduled_service": "no", + "gps_code": "FL76", + "local_code": "FL76" + }, + { + "id": "17445", + "ident": "FL77", + "type": "small_airport", + "name": "Calusa Ranch Airport", + "latitude_deg": "26.05578", + "longitude_deg": "-81.06318", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miles City", + "scheduled_service": "no", + "gps_code": "FL77", + "local_code": "FL77" + }, + { + "id": "17446", + "ident": "FL78", + "type": "small_airport", + "name": "Lewis Airport", + "latitude_deg": "27.89859962463379", + "longitude_deg": "-82.18260192871094", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Brandon", + "scheduled_service": "no", + "gps_code": "FL78", + "local_code": "FL78" + }, + { + "id": "45353", + "ident": "FL79", + "type": "closed", + "name": "Lockheed Martin-Ocala Heliport", + "latitude_deg": "29.085814", + "longitude_deg": "-81.984253", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ocala", + "scheduled_service": "no", + "keywords": "FL79" + }, + { + "id": "17447", + "ident": "FL80", + "type": "small_airport", + "name": "Lee Farms Airport", + "latitude_deg": "29.334699630737305", + "longitude_deg": "-82.16680145263672", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lowell", + "scheduled_service": "no", + "gps_code": "FL80", + "local_code": "FL80" + }, + { + "id": "17448", + "ident": "FL81", + "type": "small_airport", + "name": "Triple B Airpark", + "latitude_deg": "30.78190040588379", + "longitude_deg": "-86.46720123291016", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Crestview", + "scheduled_service": "no", + "gps_code": "FL81", + "local_code": "FL81" + }, + { + "id": "17449", + "ident": "FL82", + "type": "small_airport", + "name": "Oak Ridge Airport", + "latitude_deg": "29.580536", + "longitude_deg": "-81.861181", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Interlachen", + "scheduled_service": "no", + "gps_code": "FL82", + "local_code": "FL82" + }, + { + "id": "17450", + "ident": "FL83", + "type": "closed", + "name": "WSVN Television Channel 7 Heliport", + "latitude_deg": "25.850356", + "longitude_deg": "-80.154464", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "keywords": "FL83" + }, + { + "id": "17451", + "ident": "FL84", + "type": "small_airport", + "name": "Flying-A-Ranch Airport", + "latitude_deg": "30.60110092163086", + "longitude_deg": "-81.57039642333984", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fernandina Beach", + "scheduled_service": "no", + "gps_code": "FL84", + "local_code": "FL84" + }, + { + "id": "17452", + "ident": "FL85", + "type": "heliport", + "name": "Baptist Hospital Heliport", + "latitude_deg": "30.429399490356445", + "longitude_deg": "-87.2311019897461", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pensacola", + "scheduled_service": "no", + "gps_code": "FL85", + "local_code": "FL85" + }, + { + "id": "17453", + "ident": "FL86", + "type": "small_airport", + "name": "Woodstock Airport", + "latitude_deg": "26.582599639892578", + "longitude_deg": "-82.09839630126953", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Myers", + "scheduled_service": "no", + "gps_code": "FL86", + "local_code": "FL86" + }, + { + "id": "17454", + "ident": "FL87", + "type": "heliport", + "name": "Intra Coastal Police Sub-Station Heliport", + "latitude_deg": "25.91699981689453", + "longitude_deg": "-80.1498031616211", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "North Miami Beach", + "scheduled_service": "no", + "gps_code": "FL87", + "local_code": "FL87" + }, + { + "id": "17455", + "ident": "FL88", + "type": "small_airport", + "name": "Bob Paul Airport", + "latitude_deg": "26.683700561523438", + "longitude_deg": "-81.44979858398438", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "La Belle", + "scheduled_service": "no", + "gps_code": "FL88", + "local_code": "FL88" + }, + { + "id": "17456", + "ident": "FL89", + "type": "closed", + "name": "Triple M Airport", + "latitude_deg": "27.554199", + "longitude_deg": "-80.439796", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Vero Beach", + "scheduled_service": "no", + "keywords": "FL89" + }, + { + "id": "17457", + "ident": "FL90", + "type": "small_airport", + "name": "Salty Approach Airport", + "latitude_deg": "26.6033992767", + "longitude_deg": "-82.2201004028", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Myers", + "scheduled_service": "no", + "gps_code": "FL90", + "local_code": "FL90" + }, + { + "id": "17458", + "ident": "FL91", + "type": "small_airport", + "name": "Counter Terrorism Advanced Training Center Airport", + "latitude_deg": "26.309799", + "longitude_deg": "-81.227303", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sunniland", + "scheduled_service": "no", + "gps_code": "FA02", + "local_code": "FA02", + "keywords": "FL91, Hendry Correctional Institution" + }, + { + "id": "17459", + "ident": "FL92", + "type": "heliport", + "name": "L M Hughey Heliport", + "latitude_deg": "27.9414005279541", + "longitude_deg": "-82.535400390625", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tampa", + "scheduled_service": "no", + "gps_code": "FL92", + "local_code": "FL92" + }, + { + "id": "17460", + "ident": "FL93", + "type": "heliport", + "name": "Mount Sinai Medical Center Heliport", + "latitude_deg": "25.81450080871582", + "longitude_deg": "-80.14119720458984", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami Beach", + "scheduled_service": "no", + "gps_code": "FL93", + "local_code": "FL93" + }, + { + "id": "17461", + "ident": "FL94", + "type": "heliport", + "name": "Florida Power & Light County Heliport", + "latitude_deg": "25.7682331637", + "longitude_deg": "-80.34499235450001", + "elevation_ft": "107", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "FL94", + "local_code": "FL94" + }, + { + "id": "17462", + "ident": "FL95", + "type": "small_airport", + "name": "Broocke Air Patch Airport", + "latitude_deg": "27.708599090576172", + "longitude_deg": "-80.45279693603516", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Winter Beach", + "scheduled_service": "no", + "gps_code": "FL95", + "local_code": "FL95" + }, + { + "id": "17463", + "ident": "FL96", + "type": "closed", + "name": "Jay Airport", + "latitude_deg": "30.9557", + "longitude_deg": "-87.130501", + "elevation_ft": "254", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jay", + "scheduled_service": "no", + "keywords": "FL96" + }, + { + "id": "17464", + "ident": "FL97", + "type": "small_airport", + "name": "Tangerine Airport", + "latitude_deg": "28.760299682617188", + "longitude_deg": "-81.60590362548828", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Zellwood", + "scheduled_service": "no", + "gps_code": "FL97", + "local_code": "FL97" + }, + { + "id": "17465", + "ident": "FL98", + "type": "heliport", + "name": "Kelly Tractor Company Heliport", + "latitude_deg": "25.826578", + "longitude_deg": "-80.333485", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "FL98", + "local_code": "FL98" + }, + { + "id": "17466", + "ident": "FL99", + "type": "small_airport", + "name": "Flying-H Airport", + "latitude_deg": "28.876100540161133", + "longitude_deg": "-81.88899993896484", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fruitland Park", + "scheduled_service": "no", + "gps_code": "FL99", + "local_code": "FL99" + }, + { + "id": "354502", + "ident": "FLAA", + "type": "small_airport", + "name": "Kawa Airport", + "latitude_deg": "-13.704573", + "longitude_deg": "29.510608", + "elevation_ft": "4364", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-02", + "scheduled_service": "no", + "gps_code": "FLAA" + }, + { + "id": "354501", + "ident": "FLAI", + "type": "small_airport", + "name": "Amelia Airport", + "latitude_deg": "-13.755705", + "longitude_deg": "29.338077", + "elevation_ft": "4206", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-02", + "municipality": "Mkushi", + "scheduled_service": "no", + "gps_code": "FLAI" + }, + { + "id": "31136", + "ident": "FLAT", + "type": "small_airport", + "name": "Katete Airport", + "latitude_deg": "-14.12030029296875", + "longitude_deg": "32.06439971923828", + "elevation_ft": "3520", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-03", + "municipality": "Katete", + "scheduled_service": "no", + "gps_code": "FLAT" + }, + { + "id": "31922", + "ident": "FLBA", + "type": "small_airport", + "name": "Mbala Airport", + "latitude_deg": "-8.859169960021973", + "longitude_deg": "31.33639907836914", + "elevation_ft": "5454", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-05", + "municipality": "Mbala", + "scheduled_service": "no", + "gps_code": "FLBA", + "iata_code": "MMQ" + }, + { + "id": "31137", + "ident": "FLCC", + "type": "small_airport", + "name": "Chocha Airport", + "latitude_deg": "-8.428730010986328", + "longitude_deg": "29.80590057373047", + "elevation_ft": "3270", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-05", + "municipality": "Chocha", + "scheduled_service": "no", + "gps_code": "FLCC" + }, + { + "id": "31138", + "ident": "FLCH", + "type": "closed", + "name": "Choma Airport", + "latitude_deg": "-16.783001", + "longitude_deg": "27", + "elevation_ft": "4300", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Choma", + "scheduled_service": "no", + "gps_code": "FLCH" + }, + { + "id": "29781", + "ident": "FLCP", + "type": "small_airport", + "name": "Chipata Airport", + "latitude_deg": "-13.558300018310547", + "longitude_deg": "32.58720016479492", + "elevation_ft": "3360", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-03", + "municipality": "Chipata", + "scheduled_service": "yes", + "gps_code": "FLCP", + "iata_code": "CIP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chipata_Airport" + }, + { + "id": "31139", + "ident": "FLCS", + "type": "small_airport", + "name": "Chinsali Airport", + "latitude_deg": "-10.532999992370605", + "longitude_deg": "32.06700134277344", + "elevation_ft": "4350", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-05", + "municipality": "Chinsali", + "scheduled_service": "no", + "gps_code": "FLCS" + }, + { + "id": "318932", + "ident": "FLCU", + "type": "small_airport", + "name": "Chunga Airport", + "latitude_deg": "-15.053957", + "longitude_deg": "25.985673", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-02", + "scheduled_service": "no", + "gps_code": "FLCU" + }, + { + "id": "312913", + "ident": "FLE", + "type": "closed", + "name": "Fort Lee Army Airfield", + "latitude_deg": "37.284", + "longitude_deg": "-77.3448", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fort Lee", + "scheduled_service": "no", + "iata_code": "FLE" + }, + { + "id": "31140", + "ident": "FLEA", + "type": "small_airport", + "name": "East One Airport", + "latitude_deg": "-11.635700225830078", + "longitude_deg": "29.73590087890625", + "elevation_ft": "3900", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-04", + "municipality": "Bwambwa", + "scheduled_service": "no", + "gps_code": "FLEA" + }, + { + "id": "31141", + "ident": "FLEB", + "type": "small_airport", + "name": "East Two Airport", + "latitude_deg": "-11.1034002304", + "longitude_deg": "30.3381996155", + "elevation_ft": "3900", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-05", + "municipality": "Mofu", + "scheduled_service": "no", + "gps_code": "FLEB" + }, + { + "id": "31142", + "ident": "FLEC", + "type": "small_airport", + "name": "East Three Airport", + "latitude_deg": "-14.1134996414", + "longitude_deg": "30.1294994354", + "elevation_ft": "2300", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-02", + "municipality": "Luano", + "scheduled_service": "no", + "gps_code": "FLEC" + }, + { + "id": "31143", + "ident": "FLED", + "type": "small_airport", + "name": "East Four Airport", + "latitude_deg": "-14.833000183105469", + "longitude_deg": "30.08300018310547", + "elevation_ft": "1880", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-09", + "municipality": "Mululowera", + "scheduled_service": "no", + "gps_code": "FLED" + }, + { + "id": "30605", + "ident": "FLEE", + "type": "small_airport", + "name": "East Five Airport", + "latitude_deg": "-10.535699844360352", + "longitude_deg": "33.40719985961914", + "elevation_ft": "4200", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-05", + "municipality": "Chidulka", + "scheduled_service": "no", + "gps_code": "FLEE" + }, + { + "id": "31144", + "ident": "FLEF", + "type": "small_airport", + "name": "East Six Airport", + "latitude_deg": "-11.134200096099999", + "longitude_deg": "30.01720047", + "elevation_ft": "3800", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-05", + "municipality": "Chiwanangala", + "scheduled_service": "no", + "gps_code": "FLEF" + }, + { + "id": "31145", + "ident": "FLEG", + "type": "small_airport", + "name": "East Seven Airport", + "latitude_deg": "-12.449999809265137", + "longitude_deg": "29.482999801635742", + "elevation_ft": "4000", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-04", + "municipality": "Kanshela", + "scheduled_service": "no", + "gps_code": "FLEG" + }, + { + "id": "31146", + "ident": "FLEH", + "type": "small_airport", + "name": "East Eight Airport", + "latitude_deg": "-12.116999626159668", + "longitude_deg": "29.450000762939453", + "elevation_ft": "4000", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-04", + "municipality": "Kapu", + "scheduled_service": "no", + "gps_code": "FLEH" + }, + { + "id": "354504", + "ident": "FLFW", + "type": "small_airport", + "name": "Fiwila Airport", + "latitude_deg": "-13.975102", + "longitude_deg": "29.6259", + "elevation_ft": "3983", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-02", + "municipality": "Fiwila", + "scheduled_service": "no", + "gps_code": "FLFW" + }, + { + "id": "31148", + "ident": "FLIK", + "type": "small_airport", + "name": "Isoka Airport", + "latitude_deg": "-10.116999626159668", + "longitude_deg": "32.632999420166016", + "elevation_ft": "4462", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-05", + "municipality": "Isoka", + "scheduled_service": "no", + "gps_code": "FLIK" + }, + { + "id": "316480", + "ident": "FLJK", + "type": "small_airport", + "name": "Jeki Airport", + "latitude_deg": "-15.6334", + "longitude_deg": "29.6036", + "elevation_ft": "1165", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-09", + "municipality": "Jeki", + "scheduled_service": "no", + "gps_code": "FLJK", + "iata_code": "JEK" + }, + { + "id": "31149", + "ident": "FLKB", + "type": "small_airport", + "name": "Kawambwa Airport", + "latitude_deg": "-9.798060417175293", + "longitude_deg": "29.091699600219727", + "elevation_ft": "4640", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-04", + "municipality": "Kawambwa", + "scheduled_service": "no", + "gps_code": "FLKB" + }, + { + "id": "2891", + "ident": "FLKE", + "type": "medium_airport", + "name": "Kasompe Airport", + "latitude_deg": "-12.572799682617", + "longitude_deg": "27.893899917603", + "elevation_ft": "4636", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-08", + "municipality": "Chingola", + "scheduled_service": "no", + "gps_code": "FLKE", + "iata_code": "CGJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kasompe_Airport" + }, + { + "id": "31150", + "ident": "FLKG", + "type": "small_airport", + "name": "Kalengwa Airport", + "latitude_deg": "-13.474100112915039", + "longitude_deg": "25.01409912109375", + "elevation_ft": "4093", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-06", + "municipality": "Kalengwa", + "scheduled_service": "no", + "gps_code": "FLKG" + }, + { + "id": "31151", + "ident": "FLKJ", + "type": "small_airport", + "name": "Kanja Airport", + "latitude_deg": "-16.450000762939453", + "longitude_deg": "23.367000579833984", + "elevation_ft": "3370", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-01", + "municipality": "Kanja", + "scheduled_service": "no", + "gps_code": "FLKJ" + }, + { + "id": "31756", + "ident": "FLKL", + "type": "small_airport", + "name": "Kalabo Airport", + "latitude_deg": "-14.998818", + "longitude_deg": "22.648372", + "elevation_ft": "3450", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-01", + "municipality": "Kalabo", + "scheduled_service": "no", + "gps_code": "FLKL", + "iata_code": "KLB" + }, + { + "id": "31762", + "ident": "FLKO", + "type": "small_airport", + "name": "Kaoma Airport", + "latitude_deg": "-14.800000190734863", + "longitude_deg": "24.783000946044922", + "elevation_ft": "3670", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-01", + "municipality": "Kaoma", + "scheduled_service": "no", + "gps_code": "FLKO", + "iata_code": "KMZ" + }, + { + "id": "30012", + "ident": "FLKS", + "type": "small_airport", + "name": "Kasama Airport", + "latitude_deg": "-10.216699600219727", + "longitude_deg": "31.13330078125", + "elevation_ft": "4541", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-05", + "municipality": "Kasama", + "scheduled_service": "no", + "gps_code": "FLKS", + "iata_code": "KAA" + }, + { + "id": "31152", + "ident": "FLKU", + "type": "small_airport", + "name": "Kanyau Airport", + "latitude_deg": "-16.5", + "longitude_deg": "22.41699981689453", + "elevation_ft": "3448", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-01", + "municipality": "Kanyau", + "scheduled_service": "no", + "gps_code": "FLKU" + }, + { + "id": "31153", + "ident": "FLKW", + "type": "small_airport", + "name": "Milliken Airport", + "latitude_deg": "-14.4506", + "longitude_deg": "28.3792", + "elevation_ft": "3920", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-02", + "municipality": "Kabwe", + "scheduled_service": "no", + "gps_code": "FLKW" + }, + { + "id": "32746", + "ident": "FLKY", + "type": "small_airport", + "name": "Kasaba Bay Airport", + "latitude_deg": "-8.524999618530273", + "longitude_deg": "30.663000106811523", + "elevation_ft": "2780", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-05", + "municipality": "Kasaba Bay", + "scheduled_service": "no", + "gps_code": "FLKY", + "iata_code": "ZKB" + }, + { + "id": "30090", + "ident": "FLKZ", + "type": "small_airport", + "name": "Lukuzi Airport", + "latitude_deg": "-12.81190013885498", + "longitude_deg": "32.06489944458008", + "elevation_ft": "1801", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-03", + "municipality": "Nansolo", + "scheduled_service": "no", + "gps_code": "FLKZ" + }, + { + "id": "30087", + "ident": "FLLA", + "type": "small_airport", + "name": "Luanshya Zambia Airport", + "latitude_deg": "-13.143052", + "longitude_deg": "28.426517", + "elevation_ft": "4101", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-08", + "municipality": "Luanshya", + "scheduled_service": "no", + "gps_code": "FLLA" + }, + { + "id": "2892", + "ident": "FLLC", + "type": "medium_airport", + "name": "Lusaka City Airport", + "latitude_deg": "-15.4138002396", + "longitude_deg": "28.3306999207", + "elevation_ft": "4200", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-09", + "municipality": "Lusaka", + "scheduled_service": "no", + "gps_code": "FLLC" + }, + { + "id": "31154", + "ident": "FLLD", + "type": "small_airport", + "name": "Lundazi Airport", + "latitude_deg": "-12.28600025177002", + "longitude_deg": "33.18600082397461", + "elevation_ft": "3750", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-03", + "municipality": "Lundazi", + "scheduled_service": "no", + "gps_code": "FLLD" + }, + { + "id": "31155", + "ident": "FLLG", + "type": "small_airport", + "name": "Luwingu Airport", + "latitude_deg": "-10.24530029296875", + "longitude_deg": "29.913999557495117", + "elevation_ft": "4650", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-05", + "municipality": "Luwingu", + "scheduled_service": "no", + "gps_code": "FLLG" + }, + { + "id": "2893", + "ident": "FLLI", + "type": "medium_airport", + "name": "Harry Mwanga Nkumbula International Airport", + "latitude_deg": "-17.8218", + "longitude_deg": "25.822701", + "elevation_ft": "3302", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Livingstone", + "scheduled_service": "yes", + "gps_code": "FLHN", + "iata_code": "LVI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harry_Mwanga_Nkumbula_International_Airport", + "keywords": "FLLI" + }, + { + "id": "31869", + "ident": "FLLK", + "type": "small_airport", + "name": "Lukulu Airport", + "latitude_deg": "-14.375891", + "longitude_deg": "23.248648", + "elevation_ft": "3480", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-01", + "municipality": "Lukulu", + "scheduled_service": "no", + "gps_code": "FLLK", + "iata_code": "LXU" + }, + { + "id": "31156", + "ident": "FLLO", + "type": "small_airport", + "name": "Kalomo Airport", + "latitude_deg": "-16.982999801635742", + "longitude_deg": "26.482999801635742", + "elevation_ft": "4100", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Kalomo", + "scheduled_service": "no", + "gps_code": "FLLO" + }, + { + "id": "2894", + "ident": "FLLS", + "type": "large_airport", + "name": "Kenneth Kaunda International Airport", + "latitude_deg": "-15.330833", + "longitude_deg": "28.452722", + "elevation_ft": "3779", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-09", + "municipality": "Lusaka", + "scheduled_service": "yes", + "gps_code": "FLKK", + "iata_code": "LUN", + "home_link": "http://www.nacl.co.zm/?page_id=336", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kenneth_Kaunda_International_Airport" + }, + { + "id": "30110", + "ident": "FLMA", + "type": "small_airport", + "name": "Mansa Airport", + "latitude_deg": "-11.13700008392334", + "longitude_deg": "28.872600555419922", + "elevation_ft": "4101", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-04", + "municipality": "Mansa", + "scheduled_service": "no", + "gps_code": "FLMA", + "iata_code": "MNS" + }, + { + "id": "31158", + "ident": "FLMB", + "type": "small_airport", + "name": "Maamba Airport", + "latitude_deg": "-17.367401", + "longitude_deg": "27.185162", + "elevation_ft": "2050", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Maamba", + "scheduled_service": "no", + "gps_code": "FLMB" + }, + { + "id": "2895", + "ident": "FLMF", + "type": "medium_airport", + "name": "Mfuwe Airport", + "latitude_deg": "-13.258899688720703", + "longitude_deg": "31.936599731445312", + "elevation_ft": "1853", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-03", + "municipality": "Mfuwe", + "scheduled_service": "yes", + "gps_code": "FLMF", + "iata_code": "MFU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mfuwe_Airport" + }, + { + "id": "2896", + "ident": "FLMG", + "type": "medium_airport", + "name": "Mongu Airport", + "latitude_deg": "-15.254500389099121", + "longitude_deg": "23.16230010986328", + "elevation_ft": "3488", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-01", + "municipality": "Mongu", + "scheduled_service": "no", + "gps_code": "FLMG", + "iata_code": "MNR" + }, + { + "id": "31159", + "ident": "FLMK", + "type": "small_airport", + "name": "Mkushi Airport", + "latitude_deg": "-13.621716", + "longitude_deg": "29.38492", + "elevation_ft": "4195", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-02", + "municipality": "Mkushi", + "scheduled_service": "no", + "gps_code": "FLMK" + }, + { + "id": "30170", + "ident": "FLML", + "type": "small_airport", + "name": "Mufulira Airport", + "latitude_deg": "-12.565199851989746", + "longitude_deg": "28.294300079345703", + "elevation_ft": "4350", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-08", + "municipality": "Mufulira", + "scheduled_service": "no", + "gps_code": "FLML" + }, + { + "id": "31160", + "ident": "FLMO", + "type": "small_airport", + "name": "Monze Airport", + "latitude_deg": "-16.288073", + "longitude_deg": "27.505367", + "elevation_ft": "3700", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Monze", + "scheduled_service": "no", + "gps_code": "FLMO" + }, + { + "id": "31161", + "ident": "FLMP", + "type": "small_airport", + "name": "Mpika Airport", + "latitude_deg": "-11.899200439453125", + "longitude_deg": "31.43470001220703", + "elevation_ft": "4600", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-05", + "municipality": "Mpika", + "scheduled_service": "no", + "gps_code": "FLMP" + }, + { + "id": "31162", + "ident": "FLMU", + "type": "small_airport", + "name": "Mulobezi Airport", + "latitude_deg": "-16.776633", + "longitude_deg": "25.185803", + "elevation_ft": "3175", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-01", + "municipality": "Mulobezi", + "scheduled_service": "no", + "gps_code": "FLMU" + }, + { + "id": "31163", + "ident": "FLMW", + "type": "small_airport", + "name": "Mwinilunga Airport", + "latitude_deg": "-11.654000282287598", + "longitude_deg": "24.430999755859375", + "elevation_ft": "4524", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-06", + "municipality": "Mwinilunga", + "scheduled_service": "no", + "gps_code": "FLMW" + }, + { + "id": "31164", + "ident": "FLMZ", + "type": "small_airport", + "name": "Mazabuka Airport", + "latitude_deg": "-15.861332", + "longitude_deg": "27.828324", + "elevation_ft": "3450", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Mazabuka", + "scheduled_service": "no", + "gps_code": "FLMZ" + }, + { + "id": "32742", + "ident": "FLNA", + "type": "small_airport", + "name": "Ngoma Airport", + "latitude_deg": "-15.9658", + "longitude_deg": "25.9333", + "elevation_ft": "3400", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Ngoma", + "scheduled_service": "no", + "gps_code": "FLNA", + "iata_code": "ZGM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ngoma_Airport" + }, + { + "id": "2897", + "ident": "FLND", + "type": "medium_airport", + "name": "Simon Mwansa Kapwepwe International Airport", + "latitude_deg": "-12.998512", + "longitude_deg": "28.664047", + "elevation_ft": "4167", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-08", + "municipality": "Ndola", + "scheduled_service": "yes", + "gps_code": "FLSK", + "iata_code": "NLA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ndola_Airport", + "keywords": "FLND, Ndola Airport" + }, + { + "id": "31165", + "ident": "FLNL", + "type": "small_airport", + "name": "Namwala Airport", + "latitude_deg": "-15.765000343322754", + "longitude_deg": "26.431900024414062", + "elevation_ft": "3200", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Namwala", + "scheduled_service": "no", + "gps_code": "FLNL" + }, + { + "id": "31166", + "ident": "FLNY", + "type": "small_airport", + "name": "Nyimba Airport", + "latitude_deg": "-14.568599700927734", + "longitude_deg": "30.8341007232666", + "elevation_ft": "2600", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-03", + "municipality": "Nyimba", + "scheduled_service": "no", + "gps_code": "FLNY" + }, + { + "id": "354498", + "ident": "FLOT", + "type": "small_airport", + "name": "Otago", + "latitude_deg": "-14.945391", + "longitude_deg": "28.115654", + "elevation_ft": "3900", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-U-A", + "scheduled_service": "no", + "gps_code": "FLOT" + }, + { + "id": "31167", + "ident": "FLPA", + "type": "small_airport", + "name": "Kasempa Airport", + "latitude_deg": "-13.4399995803833", + "longitude_deg": "25.785999298095703", + "elevation_ft": "4150", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-06", + "municipality": "Kasempa", + "scheduled_service": "no", + "gps_code": "FLPA" + }, + { + "id": "31168", + "ident": "FLPE", + "type": "small_airport", + "name": "Petauke Airport", + "latitude_deg": "-14.2167", + "longitude_deg": "31.2256", + "elevation_ft": "3217", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-03", + "municipality": "Petauke", + "scheduled_service": "no", + "gps_code": "FLPE" + }, + { + "id": "31169", + "ident": "FLPK", + "type": "small_airport", + "name": "Mporokoso Airport", + "latitude_deg": "-9.3697", + "longitude_deg": "30.128", + "elevation_ft": "4787", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-05", + "municipality": "Mporokoso", + "scheduled_service": "no", + "gps_code": "FLPK" + }, + { + "id": "31170", + "ident": "FLPO", + "type": "small_airport", + "name": "Kabompo Airport", + "latitude_deg": "-13.576000213623047", + "longitude_deg": "24.229999542236328", + "elevation_ft": "3535", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-06", + "municipality": "Kabompo", + "scheduled_service": "no", + "gps_code": "FLPO" + }, + { + "id": "31171", + "ident": "FLRO", + "type": "small_airport", + "name": "Rosa Airport", + "latitude_deg": "-9.526829719543457", + "longitude_deg": "31.237499237060547", + "elevation_ft": "5000", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-05", + "municipality": "Rosa", + "scheduled_service": "no", + "gps_code": "FLRO" + }, + { + "id": "31172", + "ident": "FLRU", + "type": "small_airport", + "name": "Rufansa Airport", + "latitude_deg": "-15.083000183105469", + "longitude_deg": "29.632999420166016", + "elevation_ft": "3000", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-09", + "municipality": "Rufansa", + "scheduled_service": "no", + "gps_code": "FLRU" + }, + { + "id": "312366", + "ident": "FLRZ", + "type": "small_airport", + "name": "Royal Zambezi Lodge Airstrip", + "latitude_deg": "-15.724789", + "longitude_deg": "29.303541", + "elevation_ft": "1243", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-09", + "municipality": "Lower Zambezi River", + "scheduled_service": "no", + "gps_code": "FLRZ", + "iata_code": "RYL", + "home_link": "http://www.royalzambezilodge.com/" + }, + { + "id": "31173", + "ident": "FLSE", + "type": "small_airport", + "name": "Serenje Airport", + "latitude_deg": "-13.198", + "longitude_deg": "30.2398", + "elevation_ft": "4650", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-02", + "municipality": "Serenje", + "scheduled_service": "no", + "gps_code": "FLSE" + }, + { + "id": "31174", + "ident": "FLSH", + "type": "small_airport", + "name": "Shiwa n'gandu Airport", + "latitude_deg": "-11.200900077819824", + "longitude_deg": "31.748199462890625", + "elevation_ft": "4600", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-05", + "municipality": "Shiwa n'gandu", + "scheduled_service": "no", + "gps_code": "FLSH" + }, + { + "id": "31175", + "ident": "FLSJ", + "type": "small_airport", + "name": "Sakeji Airport", + "latitude_deg": "-11.23270034790039", + "longitude_deg": "24.3164005279541", + "elevation_ft": "4500", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-06", + "municipality": "Sakeji", + "scheduled_service": "no", + "gps_code": "FLSJ" + }, + { + "id": "32405", + "ident": "FLSN", + "type": "small_airport", + "name": "Senanga Airport", + "latitude_deg": "-16.113", + "longitude_deg": "23.2982", + "elevation_ft": "3347", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-01", + "municipality": "Senanga", + "scheduled_service": "no", + "gps_code": "FLSN", + "iata_code": "SXG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Senanga_Airport" + }, + { + "id": "2898", + "ident": "FLSO", + "type": "medium_airport", + "name": "Southdowns Airport", + "latitude_deg": "-12.900500297546387", + "longitude_deg": "28.149900436401367", + "elevation_ft": "4145", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-08", + "municipality": "Kitwe", + "scheduled_service": "no", + "gps_code": "FLSO", + "iata_code": "KIW" + }, + { + "id": "32304", + "ident": "FLSS", + "type": "small_airport", + "name": "Sesheke Airport", + "latitude_deg": "-17.47632", + "longitude_deg": "24.306089", + "elevation_ft": "3100", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-01", + "municipality": "Sesheke", + "scheduled_service": "no", + "gps_code": "FLSS", + "iata_code": "SJQ" + }, + { + "id": "30427", + "ident": "FLSW", + "type": "small_airport", + "name": "Solwesi Airport", + "latitude_deg": "-12.173700332641602", + "longitude_deg": "26.365100860595703", + "elevation_ft": "4551", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-06", + "municipality": "Solwesi", + "scheduled_service": "yes", + "gps_code": "FLSW", + "iata_code": "SLI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Solwezi_Airport", + "keywords": "Solwezi Airport" + }, + { + "id": "17467", + "ident": "FLT", + "type": "small_airport", + "name": "Flat Airport", + "latitude_deg": "62.452598571799996", + "longitude_deg": "-157.988998413", + "elevation_ft": "309", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Flat", + "scheduled_service": "no", + "gps_code": "FLT", + "iata_code": "FLT", + "local_code": "FLT" + }, + { + "id": "31176", + "ident": "FLWA", + "type": "small_airport", + "name": "West One Airport", + "latitude_deg": "-12.854900360107422", + "longitude_deg": "27.072200775146484", + "elevation_ft": "4000", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-08", + "municipality": "Chinka", + "scheduled_service": "no", + "gps_code": "FLWA" + }, + { + "id": "31177", + "ident": "FLWB", + "type": "small_airport", + "name": "West Two Airport", + "latitude_deg": "-13.766400337219238", + "longitude_deg": "27.51729965209961", + "elevation_ft": "3760", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-08", + "municipality": "Metamba", + "scheduled_service": "no", + "gps_code": "FLWB" + }, + { + "id": "31178", + "ident": "FLWC", + "type": "small_airport", + "name": "West Three Airport", + "latitude_deg": "-13.353499", + "longitude_deg": "26.600031", + "elevation_ft": "3650", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-06", + "municipality": "Nyoka", + "scheduled_service": "no", + "gps_code": "FLWC" + }, + { + "id": "31179", + "ident": "FLWD", + "type": "small_airport", + "name": "West Four Airport", + "latitude_deg": "-13.645400047302246", + "longitude_deg": "25.421899795532227", + "elevation_ft": "3400", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-06", + "municipality": "West Four", + "scheduled_service": "no", + "gps_code": "FLWD" + }, + { + "id": "31180", + "ident": "FLWE", + "type": "small_airport", + "name": "West Five Airport", + "latitude_deg": "-13.9642000198", + "longitude_deg": "24.4605998993", + "elevation_ft": "3550", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-01", + "municipality": "Lipanda", + "scheduled_service": "no", + "gps_code": "FLWE" + }, + { + "id": "31181", + "ident": "FLWF", + "type": "small_airport", + "name": "West Six Airport", + "latitude_deg": "-12.218362", + "longitude_deg": "27.488995", + "elevation_ft": "4000", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-06", + "municipality": "Kauni", + "scheduled_service": "no", + "gps_code": "FLWF" + }, + { + "id": "31182", + "ident": "FLWG", + "type": "small_airport", + "name": "West Seven Airport", + "latitude_deg": "-11.912699699401855", + "longitude_deg": "25.68440055847168", + "elevation_ft": "4000", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-06", + "municipality": "Chanika", + "scheduled_service": "no", + "gps_code": "FLWG" + }, + { + "id": "31183", + "ident": "FLWW", + "type": "small_airport", + "name": "Waka Waka Airport", + "latitude_deg": "-12.450400352478027", + "longitude_deg": "32.25699996948242", + "elevation_ft": "1800", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-03", + "municipality": "Waka Waka", + "scheduled_service": "no", + "gps_code": "FLWW" + }, + { + "id": "31184", + "ident": "FLYA", + "type": "small_airport", + "name": "Samfya Airport", + "latitude_deg": "-11.365300178527832", + "longitude_deg": "29.548099517822266", + "elevation_ft": "3800", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-04", + "municipality": "Samfya", + "scheduled_service": "no", + "gps_code": "FLYA" + }, + { + "id": "30685", + "ident": "FLZB", + "type": "small_airport", + "name": "Zambezi Airport", + "latitude_deg": "-13.535996", + "longitude_deg": "23.10559", + "elevation_ft": "3538", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-06", + "municipality": "Zambezi", + "scheduled_service": "no", + "gps_code": "FLZB", + "iata_code": "BBZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zambezi_Airport" + }, + { + "id": "44078", + "ident": "FM-0001", + "type": "small_airport", + "name": "Woleai Atoll Airport", + "latitude_deg": "7.376259803771973", + "longitude_deg": "143.9080047607422", + "continent": "OC", + "iso_country": "FM", + "iso_region": "FM-YAP", + "municipality": "Woleai Atoll", + "scheduled_service": "no" + }, + { + "id": "354381", + "ident": "FM-0002", + "type": "small_airport", + "name": "HOUK (PULUSUK) CIVIL AIRFIELD", + "latitude_deg": "6.675669", + "longitude_deg": "149.299543", + "continent": "OC", + "iso_country": "FM", + "iso_region": "FM-TRK", + "municipality": "Houk Island", + "scheduled_service": "no" + }, + { + "id": "32538", + "ident": "FM-ULI", + "type": "small_airport", + "name": "Ulithi Airport", + "latitude_deg": "10.0198", + "longitude_deg": "139.789993", + "elevation_ft": "6", + "continent": "OC", + "iso_country": "FM", + "iso_region": "FM-YAP", + "municipality": "Falalop Island", + "scheduled_service": "no", + "iata_code": "ULI", + "local_code": "TT02", + "home_link": "http://www.ict.fm/civilaviation/ulithi.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ulithi_Airport", + "keywords": "Ulithi Airport, TT02" + }, + { + "id": "4641", + "ident": "FM43", + "type": "small_airport", + "name": "Antsiranana Andrakaka Airport", + "latitude_deg": "-12.2561", + "longitude_deg": "49.2542", + "elevation_ft": "200", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-D", + "scheduled_service": "no", + "gps_code": "FMNK", + "local_code": "FM43" + }, + { + "id": "300253", + "ident": "FMBI", + "type": "small_airport", + "name": "Betainomby Airport", + "latitude_deg": "-18.1958013864", + "longitude_deg": "49.348526001", + "elevation_ft": "40", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-A", + "municipality": "Betainomby", + "scheduled_service": "no", + "gps_code": "FMFZ", + "local_code": "MBI" + }, + { + "id": "2901", + "ident": "FMCH", + "type": "medium_airport", + "name": "Prince Said Ibrahim International Airport", + "latitude_deg": "-11.5337", + "longitude_deg": "43.2719", + "elevation_ft": "93", + "continent": "AF", + "iso_country": "KM", + "iso_region": "KM-G", + "municipality": "Moroni", + "scheduled_service": "yes", + "gps_code": "FMCH", + "iata_code": "HAH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Prince_Said_Ibrahim_International_Airport", + "keywords": "Hahaia" + }, + { + "id": "2902", + "ident": "FMCI", + "type": "medium_airport", + "name": "Mohéli Bandar Es Eslam Airport", + "latitude_deg": "-12.2981", + "longitude_deg": "43.766399", + "elevation_ft": "46", + "continent": "AF", + "iso_country": "KM", + "iso_region": "KM-M", + "municipality": "Fomboni", + "scheduled_service": "yes", + "gps_code": "FMCI", + "iata_code": "NWA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moh%C3%A9li_Bandar_Es_Eslam_Airport", + "keywords": "Mwali, Bandaressalam" + }, + { + "id": "32737", + "ident": "FMCN", + "type": "closed", + "name": "Iconi Airport", + "latitude_deg": "-11.7108", + "longitude_deg": "43.2439", + "elevation_ft": "33", + "continent": "AF", + "iso_country": "KM", + "iso_region": "KM-G", + "municipality": "Moroni", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iconi_Airport", + "keywords": "FMCN, YVA" + }, + { + "id": "2903", + "ident": "FMCV", + "type": "medium_airport", + "name": "Ouani Airport", + "latitude_deg": "-12.131047", + "longitude_deg": "44.430044", + "elevation_ft": "62", + "continent": "AF", + "iso_country": "KM", + "iso_region": "KM-A", + "municipality": "Ouani", + "scheduled_service": "yes", + "gps_code": "FMCV", + "iata_code": "AJN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ouani_Airport" + }, + { + "id": "2904", + "ident": "FMCZ", + "type": "medium_airport", + "name": "Dzaoudzi Pamandzi International Airport", + "latitude_deg": "-12.809319", + "longitude_deg": "45.281815", + "elevation_ft": "23", + "continent": "AF", + "iso_country": "YT", + "iso_region": "YT-U-A", + "municipality": "Dzaoudzi", + "scheduled_service": "yes", + "gps_code": "FMCZ", + "iata_code": "DZA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dzaoudzi_Pamandzi_International_Airport" + }, + { + "id": "2905", + "ident": "FMEE", + "type": "large_airport", + "name": "Roland Garros Airport", + "latitude_deg": "-20.8871", + "longitude_deg": "55.5103", + "elevation_ft": "66", + "continent": "AF", + "iso_country": "RE", + "iso_region": "RE-U-A", + "municipality": "St Denis", + "scheduled_service": "yes", + "gps_code": "FMEE", + "iata_code": "RUN", + "home_link": "http://www.reunion.aeroport.fr/index.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roland_Garros_Airport", + "keywords": "Gillot Airport" + }, + { + "id": "2906", + "ident": "FMEP", + "type": "medium_airport", + "name": "Pierrefonds Airport", + "latitude_deg": "-21.320899963378906", + "longitude_deg": "55.42499923706055", + "elevation_ft": "59", + "continent": "AF", + "iso_country": "RE", + "iso_region": "RE-U-A", + "municipality": "St Pierre", + "scheduled_service": "yes", + "gps_code": "FMEP", + "iata_code": "ZSE", + "home_link": "http://www.grandsudreunion.org/FR2004/aeroport.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pierrefonds_Airport", + "keywords": "Aéroport de Saint-Pierre - Pierrefonds" + }, + { + "id": "2907", + "ident": "FMMA", + "type": "small_airport", + "name": "Antananarivo Arivonimamo Airport", + "latitude_deg": "-19.028999", + "longitude_deg": "47.171799", + "elevation_ft": "4757", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-T", + "municipality": "Arivonimamo", + "scheduled_service": "no", + "gps_code": "FMMA" + }, + { + "id": "32671", + "ident": "FMMC", + "type": "small_airport", + "name": "Malaimbandy Airport", + "latitude_deg": "-20.355390292099997", + "longitude_deg": "45.5433726311", + "elevation_ft": "597", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Malaimbandy", + "scheduled_service": "no", + "gps_code": "FMMC", + "iata_code": "WML" + }, + { + "id": "30656", + "ident": "FMME", + "type": "small_airport", + "name": "Antsirabe Airport", + "latitude_deg": "-19.8392214824", + "longitude_deg": "47.063713073699994", + "elevation_ft": "4997", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-T", + "municipality": "Antsirabe", + "scheduled_service": "no", + "gps_code": "FMME", + "iata_code": "ATJ" + }, + { + "id": "32633", + "ident": "FMMG", + "type": "small_airport", + "name": "Antsalova Airport", + "latitude_deg": "-18.701273", + "longitude_deg": "44.614921", + "elevation_ft": "551", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Antsalova", + "scheduled_service": "yes", + "gps_code": "FMMG", + "iata_code": "WAQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Antsalova_Airport" + }, + { + "id": "32604", + "ident": "FMMH", + "type": "small_airport", + "name": "Mahanoro Airport", + "latitude_deg": "-19.83300018310547", + "longitude_deg": "48.79999923706055", + "elevation_ft": "16", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-A", + "municipality": "Mahanoro", + "scheduled_service": "no", + "gps_code": "FMMH", + "iata_code": "VVB" + }, + { + "id": "2908", + "ident": "FMMI", + "type": "large_airport", + "name": "Ivato Airport", + "latitude_deg": "-18.7969", + "longitude_deg": "47.478802", + "elevation_ft": "4198", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-T", + "municipality": "Antananarivo", + "scheduled_service": "yes", + "gps_code": "FMMI", + "iata_code": "TNR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ivato_Airport" + }, + { + "id": "31185", + "ident": "FMMJ", + "type": "small_airport", + "name": "Ambohijanahary Airport", + "latitude_deg": "-17.4644789611", + "longitude_deg": "48.3267116547", + "elevation_ft": "2496", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-A", + "municipality": "Ambohijanahary", + "scheduled_service": "no", + "gps_code": "FMMJ" + }, + { + "id": "31715", + "ident": "FMMK", + "type": "small_airport", + "name": "Ankavandra Airport", + "latitude_deg": "-18.80501", + "longitude_deg": "45.273467", + "elevation_ft": "427", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Ankavandra", + "scheduled_service": "yes", + "gps_code": "FMMK", + "iata_code": "JVA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ankavandra_Airport" + }, + { + "id": "30774", + "ident": "FMML", + "type": "small_airport", + "name": "Belo sur Tsiribihina Airport", + "latitude_deg": "-19.6867008209", + "longitude_deg": "44.541900634799994", + "elevation_ft": "154", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Belo sur Tsiribihina", + "scheduled_service": "yes", + "gps_code": "FMML", + "iata_code": "BMD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Belo_sur_Tsiribihina_Airport" + }, + { + "id": "2909", + "ident": "FMMN", + "type": "medium_airport", + "name": "Miandrivazo Airport", + "latitude_deg": "-19.562799", + "longitude_deg": "45.450802", + "elevation_ft": "203", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Miandrivazo", + "scheduled_service": "yes", + "gps_code": "FMMN", + "iata_code": "ZVA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miandrivazo_Airport" + }, + { + "id": "31982", + "ident": "FMMO", + "type": "small_airport", + "name": "Maintirano Airport", + "latitude_deg": "-18.049999", + "longitude_deg": "44.033001", + "elevation_ft": "95", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Maintirano", + "scheduled_service": "yes", + "gps_code": "FMMO", + "iata_code": "MXT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maintirano_Airport" + }, + { + "id": "31186", + "ident": "FMMP", + "type": "small_airport", + "name": "Amparafaravola Airport", + "latitude_deg": "-17.6545730219", + "longitude_deg": "48.2144451141", + "elevation_ft": "2576", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-A", + "municipality": "Amparafaravola", + "scheduled_service": "no", + "gps_code": "FMMP" + }, + { + "id": "31672", + "ident": "FMMQ", + "type": "small_airport", + "name": "Atsinanana Airport", + "latitude_deg": "-19.58300018310547", + "longitude_deg": "48.803001403808594", + "elevation_ft": "33", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-A", + "municipality": "Ilaka", + "scheduled_service": "no", + "gps_code": "FMMQ", + "iata_code": "ILK" + }, + { + "id": "32484", + "ident": "FMMR", + "type": "small_airport", + "name": "Morafenobe Airport", + "latitude_deg": "-17.850083", + "longitude_deg": "44.920467", + "elevation_ft": "748", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Morafenobe", + "scheduled_service": "yes", + "gps_code": "FMMR", + "iata_code": "TVA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Morafenobe_Airport" + }, + { + "id": "2910", + "ident": "FMMS", + "type": "medium_airport", + "name": "Sainte Marie Airport", + "latitude_deg": "-17.093901", + "longitude_deg": "49.8158", + "elevation_ft": "7", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-A", + "municipality": "Vohilava", + "scheduled_service": "yes", + "gps_code": "FMMS", + "iata_code": "SMS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saints_Marie_Airport" + }, + { + "id": "2911", + "ident": "FMMT", + "type": "medium_airport", + "name": "Toamasina Ambalamanasy Airport", + "latitude_deg": "-18.109501", + "longitude_deg": "49.392502", + "elevation_ft": "22", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-A", + "municipality": "Toamasina", + "scheduled_service": "yes", + "gps_code": "FMMT", + "iata_code": "TMM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toamasina_Airport" + }, + { + "id": "32678", + "ident": "FMMU", + "type": "small_airport", + "name": "Tambohorano Airport", + "latitude_deg": "-17.47610092163086", + "longitude_deg": "43.972801208496094", + "elevation_ft": "23", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Tambohorano", + "scheduled_service": "yes", + "gps_code": "FMMU", + "iata_code": "WTA" + }, + { + "id": "2912", + "ident": "FMMV", + "type": "medium_airport", + "name": "Morondava Airport", + "latitude_deg": "-20.2847", + "longitude_deg": "44.3176", + "elevation_ft": "30", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Morondava", + "scheduled_service": "yes", + "gps_code": "FMMV", + "iata_code": "MOQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Morondava_Airport" + }, + { + "id": "32682", + "ident": "FMMX", + "type": "small_airport", + "name": "Tsiroanomandidy Airport", + "latitude_deg": "-18.759677", + "longitude_deg": "46.054065", + "elevation_ft": "2776", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-T", + "municipality": "Tsiroanomandidy", + "scheduled_service": "yes", + "gps_code": "FMMX", + "iata_code": "WTS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tsiroanomandidy_Airport" + }, + { + "id": "32566", + "ident": "FMMY", + "type": "small_airport", + "name": "Vatomandry Airport", + "latitude_deg": "-19.383333", + "longitude_deg": "48.95", + "elevation_ft": "39", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-A", + "municipality": "Vatomandry", + "scheduled_service": "no", + "gps_code": "FMMY", + "iata_code": "VAT" + }, + { + "id": "32630", + "ident": "FMMZ", + "type": "small_airport", + "name": "Ambatondrazaka Airport", + "latitude_deg": "-17.795378", + "longitude_deg": "48.442583", + "elevation_ft": "2513", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-A", + "municipality": "Ambatondrazaka", + "scheduled_service": "yes", + "gps_code": "FMMZ", + "iata_code": "WAM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ambatondrazaka_Airport" + }, + { + "id": "2913", + "ident": "FMNA", + "type": "medium_airport", + "name": "Arrachart Airport", + "latitude_deg": "-12.3494", + "longitude_deg": "49.291698", + "elevation_ft": "374", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-D", + "municipality": "Antisiranana", + "scheduled_service": "yes", + "gps_code": "FMNA", + "iata_code": "DIE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arrachart_Airport", + "keywords": "Diego-Suárez" + }, + { + "id": "332232", + "ident": "FMNB", + "type": "small_airport", + "name": "Ankaizina Airport", + "latitude_deg": "-14.544277", + "longitude_deg": "48.691413", + "elevation_ft": "3675", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Bealanana", + "scheduled_service": "no", + "gps_code": "FMNB", + "iata_code": "WBE" + }, + { + "id": "2914", + "ident": "FMNC", + "type": "medium_airport", + "name": "Mananara Nord Airport", + "latitude_deg": "-16.16390037536621", + "longitude_deg": "49.773799896240234", + "elevation_ft": "9", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-A", + "municipality": "Mananara Nord", + "scheduled_service": "yes", + "gps_code": "FMNC", + "iata_code": "WMR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mananara_Nord_Airport", + "keywords": "Avaratra Airport" + }, + { + "id": "2915", + "ident": "FMND", + "type": "medium_airport", + "name": "Andapa Airport", + "latitude_deg": "-14.651700019836426", + "longitude_deg": "49.620601654052734", + "elevation_ft": "1552", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-D", + "scheduled_service": "no", + "gps_code": "FMND", + "iata_code": "ZWA" + }, + { + "id": "2916", + "ident": "FMNE", + "type": "small_airport", + "name": "Ambilobe Airport", + "latitude_deg": "-13.188400268554688", + "longitude_deg": "48.987998962402344", + "elevation_ft": "72", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-D", + "scheduled_service": "no", + "gps_code": "FMNE", + "iata_code": "AMB" + }, + { + "id": "32636", + "ident": "FMNF", + "type": "small_airport", + "name": "Avaratra Airport", + "latitude_deg": "-15.199999809265137", + "longitude_deg": "48.483001708984375", + "elevation_ft": "820", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Befandriana", + "scheduled_service": "no", + "gps_code": "FMNF", + "iata_code": "WBD" + }, + { + "id": "32673", + "ident": "FMNG", + "type": "small_airport", + "name": "Port Bergé Airport", + "latitude_deg": "-15.584286", + "longitude_deg": "47.623587", + "elevation_ft": "213", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Port Bergé", + "scheduled_service": "yes", + "gps_code": "FMNG", + "iata_code": "WPB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Bergé_Airport" + }, + { + "id": "2917", + "ident": "FMNH", + "type": "medium_airport", + "name": "Antsirabe Airport", + "latitude_deg": "-14.9994", + "longitude_deg": "50.320202", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-D", + "municipality": "Antsirabe", + "scheduled_service": "yes", + "gps_code": "FMNH", + "iata_code": "ANM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Antsirabato_Airport" + }, + { + "id": "31688", + "ident": "FMNJ", + "type": "closed", + "name": "Ambanja Airport", + "latitude_deg": "-13.644528", + "longitude_deg": "48.456595", + "elevation_ft": "36", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-D", + "municipality": "Ambanja", + "scheduled_service": "yes", + "keywords": "FMNJ" + }, + { + "id": "2918", + "ident": "FMNL", + "type": "medium_airport", + "name": "Analalava Airport", + "latitude_deg": "-14.629514", + "longitude_deg": "47.763555", + "elevation_ft": "345", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Analalava", + "scheduled_service": "yes", + "gps_code": "FMNL", + "iata_code": "HVA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Analalava_Airport" + }, + { + "id": "2919", + "ident": "FMNM", + "type": "medium_airport", + "name": "Amborovy Airport", + "latitude_deg": "-15.666842", + "longitude_deg": "46.351233", + "elevation_ft": "87", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Mahajanga", + "scheduled_service": "yes", + "gps_code": "FMNM", + "iata_code": "MJN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amborovy_Airport", + "keywords": "Philibert Tsiranana Airport, Mahajanga" + }, + { + "id": "2920", + "ident": "FMNN", + "type": "medium_airport", + "name": "Fascene Airport", + "latitude_deg": "-13.3121", + "longitude_deg": "48.3148", + "elevation_ft": "36", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-D", + "municipality": "Nosy Be", + "scheduled_service": "yes", + "gps_code": "FMNN", + "iata_code": "NOS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fascene_Airport" + }, + { + "id": "30951", + "ident": "FMNO", + "type": "small_airport", + "name": "Soalala Airport", + "latitude_deg": "-16.10169", + "longitude_deg": "45.358837", + "elevation_ft": "141", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Soalala", + "scheduled_service": "yes", + "gps_code": "FMNO", + "iata_code": "DWB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Soalala_Airport" + }, + { + "id": "35210", + "ident": "FMNP", + "type": "small_airport", + "name": "Mampikony Airport", + "latitude_deg": "-16.0722693402", + "longitude_deg": "47.644164562200004", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Mampikony", + "scheduled_service": "yes", + "gps_code": "FMNP", + "iata_code": "WMP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mampikony_Airport" + }, + { + "id": "2921", + "ident": "FMNQ", + "type": "medium_airport", + "name": "Besalampy Airport", + "latitude_deg": "-16.74453", + "longitude_deg": "44.482484", + "elevation_ft": "125", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Besalampy", + "scheduled_service": "yes", + "gps_code": "FMNQ", + "iata_code": "BPY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Besalampy_Airport" + }, + { + "id": "2922", + "ident": "FMNR", + "type": "medium_airport", + "name": "Maroantsetra Airport", + "latitude_deg": "-15.437742", + "longitude_deg": "49.689081", + "elevation_ft": "9", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-A", + "municipality": "Maroantsetra", + "scheduled_service": "yes", + "gps_code": "FMNR", + "iata_code": "WMN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maroantsetra_Airport" + }, + { + "id": "2923", + "ident": "FMNS", + "type": "medium_airport", + "name": "Sambava Airport", + "latitude_deg": "-14.2786", + "longitude_deg": "50.174702", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-D", + "municipality": "Sambava", + "scheduled_service": "yes", + "gps_code": "FMNS", + "iata_code": "SVB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sambava_Airport" + }, + { + "id": "32481", + "ident": "FMNT", + "type": "small_airport", + "name": "Tsaratanana Airport", + "latitude_deg": "-16.751064", + "longitude_deg": "47.619016", + "elevation_ft": "1073", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Tsaratanana", + "scheduled_service": "yes", + "gps_code": "FMNT", + "iata_code": "TTS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tsaratanana_Airport" + }, + { + "id": "2924", + "ident": "FMNV", + "type": "medium_airport", + "name": "Vohemar Airport", + "latitude_deg": "-13.3758", + "longitude_deg": "50.0028", + "elevation_ft": "19", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-D", + "municipality": "Vohemar", + "scheduled_service": "yes", + "gps_code": "FMNV", + "iata_code": "VOH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vohemar_Airport" + }, + { + "id": "2925", + "ident": "FMNW", + "type": "medium_airport", + "name": "Ambalabe Airport", + "latitude_deg": "-14.898799896240234", + "longitude_deg": "47.993900299072266", + "elevation_ft": "92", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Antsohihy", + "scheduled_service": "yes", + "gps_code": "FMNW", + "iata_code": "WAI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ambalabe_Airport" + }, + { + "id": "32659", + "ident": "FMNX", + "type": "small_airport", + "name": "Mandritsara Airport", + "latitude_deg": "-15.845992", + "longitude_deg": "48.834718", + "elevation_ft": "1007", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Mandritsara", + "scheduled_service": "yes", + "gps_code": "FMNX", + "iata_code": "WMA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mandritsara_Airport" + }, + { + "id": "2926", + "ident": "FMNZ", + "type": "small_airport", + "name": "Ampampamena Airport", + "latitude_deg": "-13.484816", + "longitude_deg": "48.632702", + "elevation_ft": "49", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-D", + "scheduled_service": "no", + "gps_code": "FMNZ", + "iata_code": "IVA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ampampamena_Airport" + }, + { + "id": "31187", + "ident": "FMSA", + "type": "small_airport", + "name": "Ambalavao Airport", + "latitude_deg": "-21.814891018799997", + "longitude_deg": "46.914024353", + "elevation_ft": "3189", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-F", + "municipality": "Ambalavao", + "scheduled_service": "no", + "gps_code": "FMSA" + }, + { + "id": "32644", + "ident": "FMSB", + "type": "small_airport", + "name": "Antsoa Airport", + "latitude_deg": "-21.606983764699997", + "longitude_deg": "45.136020183599996", + "elevation_ft": "820", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Beroroha", + "scheduled_service": "no", + "gps_code": "FMSB", + "iata_code": "WBO" + }, + { + "id": "32670", + "ident": "FMSC", + "type": "small_airport", + "name": "Mandabe Airport", + "latitude_deg": "-21.0463049303", + "longitude_deg": "44.9404120445", + "elevation_ft": "951", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Mandabe", + "scheduled_service": "no", + "gps_code": "FMSC", + "iata_code": "WMD" + }, + { + "id": "2927", + "ident": "FMSD", + "type": "medium_airport", + "name": "Tôlanaro Airport", + "latitude_deg": "-25.038099", + "longitude_deg": "46.9561", + "elevation_ft": "29", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Tôlanaro", + "scheduled_service": "yes", + "gps_code": "FMSD", + "iata_code": "FTU", + "wikipedia_link": "https://en.wikipedia.org/wiki/T%C3%B4lanaro_Airport", + "keywords": "Tolagnaro Airport, Marillac Airport, Fort-Dauphin" + }, + { + "id": "31188", + "ident": "FMSE", + "type": "small_airport", + "name": "Betroka Airport", + "latitude_deg": "-23.274307848299998", + "longitude_deg": "46.12498283389999", + "elevation_ft": "2841", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Betroka", + "scheduled_service": "no", + "gps_code": "FMSE" + }, + { + "id": "2928", + "ident": "FMSF", + "type": "medium_airport", + "name": "Fianarantsoa Airport", + "latitude_deg": "-21.441601", + "longitude_deg": "47.111698", + "elevation_ft": "3658", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-F", + "municipality": "Fianarantsoa", + "scheduled_service": "yes", + "gps_code": "FMSF", + "iata_code": "WFI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fianarantsoa_Airport" + }, + { + "id": "2929", + "ident": "FMSG", + "type": "small_airport", + "name": "Farafangana Airport", + "latitude_deg": "-22.8053", + "longitude_deg": "47.820599", + "elevation_ft": "26", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-F", + "municipality": "Farafangana", + "scheduled_service": "yes", + "gps_code": "FMSG", + "iata_code": "RVA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Farafangana_Airport" + }, + { + "id": "31668", + "ident": "FMSI", + "type": "small_airport", + "name": "Ihosy Airport", + "latitude_deg": "-22.404720202399997", + "longitude_deg": "46.1649370193", + "elevation_ft": "2500", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-F", + "municipality": "Ihosy", + "scheduled_service": "no", + "gps_code": "FMSI", + "iata_code": "IHO" + }, + { + "id": "31912", + "ident": "FMSJ", + "type": "small_airport", + "name": "Manja Airport", + "latitude_deg": "-21.426105", + "longitude_deg": "44.316509", + "elevation_ft": "787", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Manja", + "scheduled_service": "yes", + "gps_code": "FMSJ", + "iata_code": "MJA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manja_Airport" + }, + { + "id": "2930", + "ident": "FMSK", + "type": "medium_airport", + "name": "Manakara Airport", + "latitude_deg": "-22.119699", + "longitude_deg": "48.021702", + "elevation_ft": "33", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-F", + "municipality": "Manakara", + "scheduled_service": "yes", + "gps_code": "FMSK", + "iata_code": "WVK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manakara_Airport" + }, + { + "id": "32136", + "ident": "FMSL", + "type": "small_airport", + "name": "Bekily Airport", + "latitude_deg": "-24.235694754699995", + "longitude_deg": "45.3045272827", + "elevation_ft": "1270", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Bekily", + "scheduled_service": "no", + "gps_code": "FMSL", + "iata_code": "OVA" + }, + { + "id": "2931", + "ident": "FMSM", + "type": "medium_airport", + "name": "Mananjary Airport", + "latitude_deg": "-21.201799", + "longitude_deg": "48.358299", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-F", + "municipality": "Mananjary", + "scheduled_service": "yes", + "gps_code": "FMSM", + "iata_code": "MNJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mananjary_Airport" + }, + { + "id": "32431", + "ident": "FMSN", + "type": "small_airport", + "name": "Samangoky Airport", + "latitude_deg": "-21.700000762939453", + "longitude_deg": "43.733001708984375", + "elevation_ft": "89", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Tanandava", + "scheduled_service": "no", + "gps_code": "FMSN", + "iata_code": "TDV" + }, + { + "id": "2932", + "ident": "FMSR", + "type": "medium_airport", + "name": "Morombe Airport", + "latitude_deg": "-21.753837", + "longitude_deg": "43.374753", + "elevation_ft": "16", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Morombe", + "scheduled_service": "yes", + "gps_code": "FMSR", + "iata_code": "MXM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Morombe_Airport" + }, + { + "id": "2933", + "ident": "FMST", + "type": "medium_airport", + "name": "Toliara Airport", + "latitude_deg": "-23.3834", + "longitude_deg": "43.7285", + "elevation_ft": "29", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Toliara", + "scheduled_service": "yes", + "gps_code": "FMST", + "iata_code": "TLE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toliara_Airport" + }, + { + "id": "41919", + "ident": "FMSU", + "type": "small_airport", + "name": "Vangaindrano Airport", + "latitude_deg": "-23.350766591499998", + "longitude_deg": "47.581701278699995", + "elevation_ft": "45", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-F", + "municipality": "Vangaindrano", + "scheduled_service": "no", + "gps_code": "FMSU", + "iata_code": "VND" + }, + { + "id": "30766", + "ident": "FMSV", + "type": "small_airport", + "name": "Betioky Airport", + "latitude_deg": "-23.732999801635742", + "longitude_deg": "44.388999938964844", + "elevation_ft": "919", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Betioky", + "scheduled_service": "no", + "gps_code": "FMSV", + "iata_code": "BKU" + }, + { + "id": "30642", + "ident": "FMSY", + "type": "small_airport", + "name": "Ampanihy Airport", + "latitude_deg": "-24.69969940185547", + "longitude_deg": "44.73419952392578", + "elevation_ft": "771", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Ampanihy", + "scheduled_service": "no", + "gps_code": "FMSY", + "iata_code": "AMP" + }, + { + "id": "32628", + "ident": "FMSZ", + "type": "small_airport", + "name": "Ankazoabo Airport", + "latitude_deg": "-22.2964423522", + "longitude_deg": "44.5315361023", + "elevation_ft": "1411", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Ankazoabo", + "scheduled_service": "no", + "gps_code": "FMSZ", + "iata_code": "WAK" + }, + { + "id": "313725", + "ident": "FMZJ", + "type": "small_airport", + "name": "Juan de Nova Airstrip", + "latitude_deg": "-17.05396", + "longitude_deg": "42.7193", + "elevation_ft": "3", + "continent": "AF", + "iso_country": "TF", + "iso_region": "TF-U-A", + "municipality": "Juan de Nova", + "scheduled_service": "no", + "gps_code": "FMZJ" + }, + { + "id": "35324", + "ident": "FN17", + "type": "small_airport", + "name": "Cahama Airport", + "latitude_deg": "-16.238399505615234", + "longitude_deg": "14.326000213623047", + "elevation_ft": "3970", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CNN", + "municipality": "Cahama", + "scheduled_service": "no", + "gps_code": "FN17" + }, + { + "id": "9", + "ident": "FN18", + "type": "small_airport", + "name": "Matala Airport", + "latitude_deg": "-14.727499961853027", + "longitude_deg": "15.013999938964844", + "elevation_ft": "4120", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-HUI", + "municipality": "Matala", + "scheduled_service": "no", + "gps_code": "FN18", + "local_code": "FN18" + }, + { + "id": "10", + "ident": "FN19", + "type": "small_airport", + "name": "Cabo Ledo Air Base", + "latitude_deg": "-9.65305", + "longitude_deg": "13.2606", + "elevation_ft": "360", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-LUA", + "municipality": "Cabo Ledo", + "scheduled_service": "no", + "gps_code": "FN19", + "local_code": "FN19" + }, + { + "id": "30674", + "ident": "FNAM", + "type": "small_airport", + "name": "Ambriz Airport", + "latitude_deg": "-7.86221981048584", + "longitude_deg": "13.116100311279297", + "elevation_ft": "144", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-BGO", + "municipality": "Ambriz", + "scheduled_service": "no", + "gps_code": "FNAM", + "iata_code": "AZZ" + }, + { + "id": "2934", + "ident": "FNBC", + "type": "medium_airport", + "name": "Mbanza Congo Airport", + "latitude_deg": "-6.269899845123291", + "longitude_deg": "14.246999740600586", + "elevation_ft": "1860", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-ZAI", + "municipality": "Mbanza Congo", + "scheduled_service": "yes", + "gps_code": "FNBC", + "iata_code": "SSY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mbanza_Congo_Airport" + }, + { + "id": "2935", + "ident": "FNBG", + "type": "medium_airport", + "name": "Benguela 17th of September Airport", + "latitude_deg": "-12.609", + "longitude_deg": "13.4037", + "elevation_ft": "118", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-BGU", + "municipality": "Benguela", + "scheduled_service": "no", + "gps_code": "FNBG", + "iata_code": "BUG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Benguela_Airport", + "keywords": "Aeroporto 17 de Setembro, Gen. V. Deslandes Airport" + }, + { + "id": "318482", + "ident": "FNBL", + "type": "small_airport", + "name": "Lumbala Airport", + "latitude_deg": "-14.105106", + "longitude_deg": "21.45083", + "elevation_ft": "3700", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-MOX", + "municipality": "Lumbala N'guimbo", + "scheduled_service": "no", + "gps_code": "FNBL", + "iata_code": "GGC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lumbala_Airport" + }, + { + "id": "2936", + "ident": "FNCA", + "type": "medium_airport", + "name": "Cabinda Airport", + "latitude_deg": "-5.59699010848999", + "longitude_deg": "12.188400268554688", + "elevation_ft": "66", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CAB", + "municipality": "Cabinda", + "scheduled_service": "yes", + "gps_code": "FNCA", + "iata_code": "CAB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cabinda_Airport" + }, + { + "id": "31189", + "ident": "FNCB", + "type": "small_airport", + "name": "Camembe Airport", + "latitude_deg": "-8.133000373840332", + "longitude_deg": "14.5", + "elevation_ft": "2264", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-BGO", + "municipality": "Camembe", + "scheduled_service": "no", + "gps_code": "FNCB" + }, + { + "id": "31190", + "ident": "FNCC", + "type": "small_airport", + "name": "Cacolo Airport", + "latitude_deg": "-10.110278", + "longitude_deg": "19.287304", + "elevation_ft": "4400", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-LSU", + "municipality": "Cacolo", + "scheduled_service": "no", + "gps_code": "FNCC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cacolo_Airport" + }, + { + "id": "30821", + "ident": "FNCF", + "type": "small_airport", + "name": "Cafunfo Airport", + "latitude_deg": "-8.783610343933105", + "longitude_deg": "17.989700317382812", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-LNO", + "municipality": "Cafunfo", + "scheduled_service": "no", + "gps_code": "FNCF", + "iata_code": "CFF" + }, + { + "id": "32157", + "ident": "FNCH", + "type": "small_airport", + "name": "Chitato Airport", + "latitude_deg": "-7.358890056610107", + "longitude_deg": "20.80470085144043", + "elevation_ft": "2500", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-LNO", + "municipality": "Chitato", + "scheduled_service": "no", + "gps_code": "FNCH", + "iata_code": "PGI" + }, + { + "id": "31191", + "ident": "FNCM", + "type": "small_airport", + "name": "Camabatela Airport", + "latitude_deg": "-8.217000007629395", + "longitude_deg": "15.366999626159668", + "elevation_ft": "410", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CNO", + "municipality": "Camabatela", + "scheduled_service": "no", + "gps_code": "FNCM" + }, + { + "id": "30813", + "ident": "FNCT", + "type": "medium_airport", + "name": "Catumbela Airport", + "latitude_deg": "-12.4792", + "longitude_deg": "13.4869", + "elevation_ft": "23", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-BGU", + "municipality": "Catumbela", + "scheduled_service": "yes", + "gps_code": "FNCT", + "iata_code": "CBT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Catumbela_Airport" + }, + { + "id": "30857", + "ident": "FNCV", + "type": "small_airport", + "name": "Cuito Cuanavale Airport", + "latitude_deg": "-15.160300254821777", + "longitude_deg": "19.156099319458008", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CCU", + "municipality": "Cuito Cuanavale", + "scheduled_service": "no", + "gps_code": "FNCV", + "iata_code": "CTI" + }, + { + "id": "30864", + "ident": "FNCX", + "type": "small_airport", + "name": "Camaxilo Airport", + "latitude_deg": "-8.37360954284668", + "longitude_deg": "18.923599243164062", + "elevation_ft": "3957", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-LNO", + "municipality": "Camaxilo", + "scheduled_service": "no", + "gps_code": "FNCX", + "iata_code": "CXM" + }, + { + "id": "30811", + "ident": "FNCZ", + "type": "small_airport", + "name": "Cazombo Airport", + "latitude_deg": "-11.893099784851074", + "longitude_deg": "22.916400909423828", + "elevation_ft": "3700", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-MOX", + "municipality": "Cazombo", + "scheduled_service": "no", + "gps_code": "FNCZ", + "iata_code": "CAV" + }, + { + "id": "336106", + "ident": "FND", + "type": "small_airport", + "name": "Funadhoo Airport", + "latitude_deg": "6.162443", + "longitude_deg": "73.28752", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-24", + "municipality": "Funadhoo", + "scheduled_service": "yes", + "iata_code": "FND", + "local_code": "FND" + }, + { + "id": "31192", + "ident": "FNDB", + "type": "small_airport", + "name": "Damba Airport", + "latitude_deg": "-6.900000095367432", + "longitude_deg": "15.133000373840332", + "elevation_ft": "3648", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-UIG", + "municipality": "Damba", + "scheduled_service": "no", + "gps_code": "FNDB" + }, + { + "id": "2937", + "ident": "FNDU", + "type": "medium_airport", + "name": "Dundo Airport", + "latitude_deg": "-7.400889873504639", + "longitude_deg": "20.818500518798828", + "elevation_ft": "2451", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-LNO", + "municipality": "Chitato", + "scheduled_service": "yes", + "gps_code": "FNDU", + "iata_code": "DUE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dundo_Airport" + }, + { + "id": "307150", + "ident": "FNE", + "type": "small_airport", + "name": "Fane Airport", + "latitude_deg": "-8.54927777778", + "longitude_deg": "147.085833333", + "elevation_ft": "4500", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Fane Mission", + "scheduled_service": "no", + "gps_code": "AYFA", + "iata_code": "FNE", + "local_code": "FANE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fane_Airport" + }, + { + "id": "2938", + "ident": "FNGI", + "type": "medium_airport", + "name": "Ngjiva Pereira Airport", + "latitude_deg": "-17.0435009003", + "longitude_deg": "15.683799743700002", + "elevation_ft": "3566", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CNN", + "municipality": "Ngiva", + "scheduled_service": "yes", + "gps_code": "FNGI", + "iata_code": "VPE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ondjiva_Pereira_Airport", + "keywords": "Ngiva Airport, NGV, Ondjiva, 11 de Novembro" + }, + { + "id": "2939", + "ident": "FNHU", + "type": "medium_airport", + "name": "Nova Lisboa Airport", + "latitude_deg": "-12.808899879455566", + "longitude_deg": "15.760499954223633", + "elevation_ft": "5587", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-HUA", + "municipality": "Huambo", + "scheduled_service": "yes", + "gps_code": "FNHU", + "iata_code": "NOV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nova_Lisboa_Airport", + "keywords": "Nova Lisbo Airport" + }, + { + "id": "2940", + "ident": "FNKU", + "type": "medium_airport", + "name": "Kuito Airport", + "latitude_deg": "-12.404600143433", + "longitude_deg": "16.947399139404", + "elevation_ft": "5618", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-BIE", + "municipality": "Kuito", + "scheduled_service": "no", + "gps_code": "FNKU", + "iata_code": "SVP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kuito_Airport" + }, + { + "id": "2941", + "ident": "FNLB", + "type": "small_airport", + "name": "Lobito Airport", + "latitude_deg": "-12.3712", + "longitude_deg": "13.5366", + "elevation_ft": "10", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-BGU", + "municipality": "Lobito", + "scheduled_service": "no", + "gps_code": "FNLB", + "iata_code": "LLT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lobito_Airport" + }, + { + "id": "43321", + "ident": "FNLK", + "type": "small_airport", + "name": "Lucapa Airport", + "latitude_deg": "-8.445727348330001", + "longitude_deg": "20.7320861816", + "elevation_ft": "3029", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-LNO", + "municipality": "Lucapa", + "scheduled_service": "no", + "gps_code": "FNLK", + "iata_code": "LBZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lucapa_Airport" + }, + { + "id": "2942", + "ident": "FNLU", + "type": "large_airport", + "name": "Quatro de Fevereiro International Airport", + "latitude_deg": "-8.85837", + "longitude_deg": "13.2312", + "elevation_ft": "243", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-LUA", + "municipality": "Luanda", + "scheduled_service": "yes", + "gps_code": "FNLU", + "iata_code": "LAD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quatro_de_Fevereiro_Airport", + "keywords": "4 de Fevereiro" + }, + { + "id": "2943", + "ident": "FNLZ", + "type": "small_airport", + "name": "Luzamba Airport", + "latitude_deg": "-9.11596012115", + "longitude_deg": "18.049299240099998", + "elevation_ft": "2904", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-LNO", + "municipality": "Luzamba", + "scheduled_service": "no", + "gps_code": "FNLZ", + "iata_code": "LZM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cuango-Luzamba_Airport", + "keywords": "Cuango" + }, + { + "id": "2944", + "ident": "FNMA", + "type": "medium_airport", + "name": "Malanje Airport", + "latitude_deg": "-9.525090217590332", + "longitude_deg": "16.312400817871094", + "elevation_ft": "3868", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-MAL", + "municipality": "Malanje", + "scheduled_service": "yes", + "gps_code": "FNMA", + "iata_code": "MEG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Malanje_Airport" + }, + { + "id": "2945", + "ident": "FNME", + "type": "medium_airport", + "name": "Menongue Airport", + "latitude_deg": "-14.657600402832031", + "longitude_deg": "17.71980094909668", + "elevation_ft": "4469", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CCU", + "municipality": "Menongue", + "scheduled_service": "yes", + "gps_code": "FNME", + "iata_code": "SPP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Menongue_Airport" + }, + { + "id": "2946", + "ident": "FNMO", + "type": "medium_airport", + "name": "Welwitschia Mirabilis International Airport", + "latitude_deg": "-15.2612", + "longitude_deg": "12.1468", + "elevation_ft": "210", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-NAM", + "municipality": "Moçâmedes", + "scheduled_service": "yes", + "gps_code": "FNMO", + "iata_code": "MSZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Welwitschia_Mirabilis_Airport", + "keywords": "Moçâmedes, Namibe, Yuri Gagarin" + }, + { + "id": "31196", + "ident": "FNMQ", + "type": "small_airport", + "name": "Maquela do Zombo Airport", + "latitude_deg": "-6.030280113220215", + "longitude_deg": "15.136899948120117", + "elevation_ft": "3051", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-UIG", + "municipality": "Maquela do Zombo", + "scheduled_service": "no", + "gps_code": "FNMQ" + }, + { + "id": "2947", + "ident": "FNNG", + "type": "medium_airport", + "name": "Negage Airport", + "latitude_deg": "-7.754509925842285", + "longitude_deg": "15.287699699401855", + "elevation_ft": "4105", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-UIG", + "municipality": "Negage", + "scheduled_service": "yes", + "gps_code": "FNNG", + "iata_code": "GXG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Negage_Airport" + }, + { + "id": "2948", + "ident": "FNPA", + "type": "medium_airport", + "name": "Porto Amboim Airport", + "latitude_deg": "-10.722000122070312", + "longitude_deg": "13.76550006866455", + "elevation_ft": "16", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CUS", + "municipality": "Port Amboim", + "scheduled_service": "no", + "gps_code": "FNPA", + "iata_code": "PBN" + }, + { + "id": "31197", + "ident": "FNPB", + "type": "small_airport", + "name": "Sanza Pombo Airport", + "latitude_deg": "-7.300000190734863", + "longitude_deg": "15.932999610900879", + "elevation_ft": "3251", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-UIG", + "municipality": "Sanza Pombo", + "scheduled_service": "no", + "gps_code": "FNPB" + }, + { + "id": "2949", + "ident": "FNSA", + "type": "medium_airport", + "name": "Saurimo Airport", + "latitude_deg": "-9.689069747924805", + "longitude_deg": "20.431900024414062", + "elevation_ft": "3584", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-LSU", + "municipality": "Saurimo", + "scheduled_service": "no", + "gps_code": "FNSA", + "iata_code": "VHC" + }, + { + "id": "2950", + "ident": "FNSO", + "type": "medium_airport", + "name": "Soyo Airport", + "latitude_deg": "-6.141089916229248", + "longitude_deg": "12.371800422668457", + "elevation_ft": "15", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-ZAI", + "municipality": "Soyo", + "scheduled_service": "yes", + "gps_code": "FNSO", + "iata_code": "SZA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Soyo_Airport" + }, + { + "id": "2951", + "ident": "FNSU", + "type": "medium_airport", + "name": "Sumbe Airport", + "latitude_deg": "-11.167900085449219", + "longitude_deg": "13.84749984741211", + "elevation_ft": "36", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CUS", + "municipality": "Sumbe", + "scheduled_service": "no", + "gps_code": "FNSU", + "iata_code": "NDD" + }, + { + "id": "31198", + "ident": "FNTO", + "type": "small_airport", + "name": "Toto Airport", + "latitude_deg": "-7.146389961242676", + "longitude_deg": "14.248600006103516", + "elevation_ft": "1775", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-UIG", + "municipality": "Toto", + "scheduled_service": "no", + "gps_code": "FNTO" + }, + { + "id": "32498", + "ident": "FNUA", + "type": "small_airport", + "name": "Luau Airport", + "latitude_deg": "-10.715800285339355", + "longitude_deg": "22.23110008239746", + "elevation_ft": "3609", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-MOX", + "municipality": "Luau", + "scheduled_service": "no", + "gps_code": "FNUA", + "iata_code": "UAL" + }, + { + "id": "2952", + "ident": "FNUB", + "type": "medium_airport", + "name": "Lubango Airport", + "latitude_deg": "-14.924699783325195", + "longitude_deg": "13.574999809265137", + "elevation_ft": "5778", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-HUI", + "municipality": "Lubango", + "scheduled_service": "yes", + "gps_code": "FNUB", + "iata_code": "SDD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lubango_Airport" + }, + { + "id": "2953", + "ident": "FNUE", + "type": "medium_airport", + "name": "Luena Airport", + "latitude_deg": "-11.768099784851074", + "longitude_deg": "19.8976993560791", + "elevation_ft": "4360", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-MOX", + "municipality": "Luena", + "scheduled_service": "no", + "gps_code": "FNUE", + "iata_code": "LUO" + }, + { + "id": "2954", + "ident": "FNUG", + "type": "medium_airport", + "name": "Uige Airport", + "latitude_deg": "-7.60306978225708", + "longitude_deg": "15.027799606323242", + "elevation_ft": "2720", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-UIG", + "municipality": "Uige", + "scheduled_service": "no", + "gps_code": "FNUG", + "iata_code": "UGO" + }, + { + "id": "30820", + "ident": "FNWK", + "type": "small_airport", + "name": "Waco Kungo Airport", + "latitude_deg": "-11.426400184631348", + "longitude_deg": "15.101400375366211", + "elevation_ft": "4324", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CUS", + "municipality": "Waco Kungo", + "scheduled_service": "no", + "gps_code": "FNWK", + "iata_code": "CEO" + }, + { + "id": "2955", + "ident": "FNXA", + "type": "medium_airport", + "name": "Xangongo Airport", + "latitude_deg": "-16.755399703979492", + "longitude_deg": "14.965299606323242", + "elevation_ft": "3635", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-CNN", + "municipality": "Xangongo", + "scheduled_service": "no", + "gps_code": "FNXA", + "iata_code": "XGN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Xangongo_Airport" + }, + { + "id": "30653", + "ident": "FNZE", + "type": "small_airport", + "name": "N'zeto Airport", + "latitude_deg": "-7.259439945220947", + "longitude_deg": "12.863100051879883", + "elevation_ft": "69", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-ZAI", + "municipality": "N'zeto", + "scheduled_service": "no", + "gps_code": "FNZE", + "iata_code": "ARZ" + }, + { + "id": "2956", + "ident": "FNZG", + "type": "small_airport", + "name": "Nzagi Airport", + "latitude_deg": "-7.716939926149999", + "longitude_deg": "21.358200073200003", + "elevation_ft": "2431", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-LNO", + "municipality": "Nzagi", + "scheduled_service": "no", + "gps_code": "FNZG", + "iata_code": "NZA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nzagi_Airport" + }, + { + "id": "338479", + "ident": "FO-0001", + "type": "heliport", + "name": "Hattarvík Heliport", + "latitude_deg": "62.33025", + "longitude_deg": "-6.27658", + "continent": "EU", + "iso_country": "FO", + "iso_region": "FO-U-A", + "municipality": "Hattarvík", + "scheduled_service": "no", + "gps_code": "EKHI" + }, + { + "id": "338482", + "ident": "FO-0002", + "type": "heliport", + "name": "Koltur Heliport", + "latitude_deg": "61.984601", + "longitude_deg": "-6.963484", + "continent": "EU", + "iso_country": "FO", + "iso_region": "FO-U-A", + "municipality": "Koltur", + "scheduled_service": "yes" + }, + { + "id": "338483", + "ident": "FO-0003", + "type": "heliport", + "name": "Skopun Heliport", + "latitude_deg": "61.904545", + "longitude_deg": "-6.884192", + "continent": "EU", + "iso_country": "FO", + "iso_region": "FO-U-A", + "municipality": "Skopun", + "scheduled_service": "no" + }, + { + "id": "338484", + "ident": "FO-0004", + "type": "heliport", + "name": "Faroe Islands National Hospital Helipad", + "latitude_deg": "62.001588", + "longitude_deg": "-6.774736", + "continent": "EU", + "iso_country": "FO", + "iso_region": "FO-U-A", + "municipality": "Tórshavn", + "scheduled_service": "no" + }, + { + "id": "338486", + "ident": "FO-0005", + "type": "closed", + "name": "Trøllanes Heliport", + "latitude_deg": "62.362427", + "longitude_deg": "-6.788021", + "continent": "EU", + "iso_country": "FO", + "iso_region": "FO-U-A", + "municipality": "Trøllanes", + "scheduled_service": "no" + }, + { + "id": "338487", + "ident": "FO-0006", + "type": "closed", + "name": "Gásadalur Heliport", + "latitude_deg": "62.108372", + "longitude_deg": "-7.434793", + "continent": "EU", + "iso_country": "FO", + "iso_region": "FO-U-A", + "municipality": "Gásadalur", + "scheduled_service": "no" + }, + { + "id": "338488", + "ident": "FO-0007", + "type": "closed", + "name": "Múli Heliport", + "latitude_deg": "62.349895", + "longitude_deg": "-6.582285", + "continent": "EU", + "iso_country": "FO", + "iso_region": "FO-U-A", + "municipality": "Múli", + "scheduled_service": "no" + }, + { + "id": "30698", + "ident": "FOGB", + "type": "small_airport", + "name": "Booue Airport", + "latitude_deg": "-0.1075", + "longitude_deg": "11.9438", + "elevation_ft": "604", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-6", + "municipality": "Booue", + "scheduled_service": "no", + "gps_code": "FOGB", + "iata_code": "BGB" + }, + { + "id": "31737", + "ident": "FOGE", + "type": "small_airport", + "name": "Ndende Airport", + "latitude_deg": "-2.4", + "longitude_deg": "11.367", + "elevation_ft": "417", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-4", + "municipality": "Ndende", + "scheduled_service": "no", + "gps_code": "FOGE", + "iata_code": "KDN", + "keywords": "FOND" + }, + { + "id": "31202", + "ident": "FOGF", + "type": "small_airport", + "name": "Fougamou Airport", + "latitude_deg": "-1.278325", + "longitude_deg": "10.612497", + "elevation_ft": "263", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-4", + "municipality": "Fougamou", + "scheduled_service": "no", + "gps_code": "FOGF", + "iata_code": "FOU" + }, + { + "id": "31880", + "ident": "FOGG", + "type": "small_airport", + "name": "M'Bigou Airport", + "latitude_deg": "-1.8830000162124634", + "longitude_deg": "11.932999610900879", + "elevation_ft": "2346", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-4", + "municipality": "M'Bigou", + "scheduled_service": "no", + "gps_code": "FOGG", + "iata_code": "MBC" + }, + { + "id": "31902", + "ident": "FOGI", + "type": "small_airport", + "name": "Moabi Airport", + "latitude_deg": "-2.455187", + "longitude_deg": "10.9358", + "elevation_ft": "787", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-5", + "municipality": "Moabi", + "scheduled_service": "no", + "gps_code": "FOGI", + "iata_code": "MGX" + }, + { + "id": "31736", + "ident": "FOGJ", + "type": "small_airport", + "name": "Ville Airport", + "latitude_deg": "-0.18299999833106995", + "longitude_deg": "10.75", + "elevation_ft": "164", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-3", + "municipality": "N'Djolé", + "scheduled_service": "no", + "gps_code": "FOGJ", + "iata_code": "KDJ" + }, + { + "id": "2957", + "ident": "FOGK", + "type": "medium_airport", + "name": "Koulamoutou Mabimbi Airport", + "latitude_deg": "-1.1846100091934", + "longitude_deg": "12.441300392151", + "elevation_ft": "1070", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-7", + "municipality": "Koulamoutou", + "scheduled_service": "yes", + "gps_code": "FOGK", + "iata_code": "KOU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Koula_Moutou_Airport", + "keywords": "Koula Moutou, FO23, Koulamouton/Mabimbi" + }, + { + "id": "2958", + "ident": "FOGM", + "type": "medium_airport", + "name": "Mouilla Ville Airport", + "latitude_deg": "-1.845139980316162", + "longitude_deg": "11.056699752807617", + "elevation_ft": "295", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-4", + "municipality": "Mouila", + "scheduled_service": "yes", + "gps_code": "FOGM", + "iata_code": "MJL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mouila_Airport" + }, + { + "id": "2959", + "ident": "FOGO", + "type": "medium_airport", + "name": "Oyem Airport", + "latitude_deg": "1.5431100130081177", + "longitude_deg": "11.581399917602539", + "elevation_ft": "2158", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-9", + "municipality": "Oyem", + "scheduled_service": "yes", + "gps_code": "FOGO", + "iata_code": "OYE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oyem_Airport" + }, + { + "id": "2960", + "ident": "FOGQ", + "type": "medium_airport", + "name": "Okondja Airport", + "latitude_deg": "-0.6652140021324158", + "longitude_deg": "13.673100471496582", + "elevation_ft": "1325", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-2", + "municipality": "Okondja", + "scheduled_service": "no", + "gps_code": "FOGQ", + "iata_code": "OKN" + }, + { + "id": "2961", + "ident": "FOGR", + "type": "medium_airport", + "name": "Lambarene Airport", + "latitude_deg": "-0.7043889760971069", + "longitude_deg": "10.245699882507324", + "elevation_ft": "82", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-3", + "municipality": "Lambarene", + "scheduled_service": "no", + "gps_code": "FOGR", + "iata_code": "LBQ" + }, + { + "id": "31976", + "ident": "FOGV", + "type": "small_airport", + "name": "Minvoul Airport", + "latitude_deg": "2.1500000953674316", + "longitude_deg": "12.133000373840332", + "elevation_ft": "1969", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-9", + "municipality": "Minvoul", + "scheduled_service": "no", + "gps_code": "FOGV", + "iata_code": "MVX" + }, + { + "id": "2962", + "ident": "FOOB", + "type": "medium_airport", + "name": "Bitam Airport", + "latitude_deg": "2.0756399631500244", + "longitude_deg": "11.493200302124023", + "elevation_ft": "1969", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-9", + "municipality": "Bitam", + "scheduled_service": "no", + "gps_code": "FOOB", + "iata_code": "BMM" + }, + { + "id": "31201", + "ident": "FOOC", + "type": "closed", + "name": "Cocobeach Airport", + "latitude_deg": "0.980448", + "longitude_deg": "9.571932", + "elevation_ft": "69", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-1", + "municipality": "Cocobeach", + "scheduled_service": "no", + "gps_code": "FOOC" + }, + { + "id": "31894", + "ident": "FOOD", + "type": "small_airport", + "name": "Moanda Airport", + "latitude_deg": "-1.53299999237", + "longitude_deg": "13.2670001984", + "elevation_ft": "1877", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-2", + "municipality": "Moanda", + "scheduled_service": "no", + "gps_code": "FOOD", + "iata_code": "MFF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moanda_Airport" + }, + { + "id": "31915", + "ident": "FOOE", + "type": "small_airport", + "name": "Mekambo Airport", + "latitude_deg": "1.0169999599456787", + "longitude_deg": "13.932999610900879", + "elevation_ft": "1686", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-6", + "municipality": "Mekambo", + "scheduled_service": "no", + "gps_code": "FOOE", + "iata_code": "MKB" + }, + { + "id": "2963", + "ident": "FOOG", + "type": "medium_airport", + "name": "Port Gentil Airport", + "latitude_deg": "-0.7117390036582947", + "longitude_deg": "8.754380226135254", + "elevation_ft": "13", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-8", + "municipality": "Port Gentil", + "scheduled_service": "yes", + "gps_code": "FOOG", + "iata_code": "POG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port-Gentil_International_Airport" + }, + { + "id": "2964", + "ident": "FOOH", + "type": "medium_airport", + "name": "Omboue Hospital Airport", + "latitude_deg": "-1.57473", + "longitude_deg": "9.26269", + "elevation_ft": "33", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-8", + "municipality": "Omboue", + "scheduled_service": "no", + "gps_code": "FOOH", + "iata_code": "OMB" + }, + { + "id": "311974", + "ident": "FOOI", + "type": "small_airport", + "name": "Tchongorove Airport", + "latitude_deg": "-1.930801", + "longitude_deg": "9.319577", + "elevation_ft": "48", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-8", + "municipality": "Iguela", + "scheduled_service": "no", + "gps_code": "FOOI", + "iata_code": "IGE" + }, + { + "id": "2965", + "ident": "FOOK", + "type": "medium_airport", + "name": "Makokou Airport", + "latitude_deg": "0.5792109966278076", + "longitude_deg": "12.890899658203125", + "elevation_ft": "1726", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-6", + "municipality": "Makokou", + "scheduled_service": "yes", + "gps_code": "FOOK", + "iata_code": "MKU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Makokou_Airport" + }, + { + "id": "2966", + "ident": "FOOL", + "type": "medium_airport", + "name": "Libreville Leon M'ba International Airport", + "latitude_deg": "0.458600014448", + "longitude_deg": "9.412280082699999", + "elevation_ft": "39", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-1", + "municipality": "Libreville", + "scheduled_service": "yes", + "gps_code": "FOOL", + "iata_code": "LBV", + "home_link": "http://www.adlgabon.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Libreville_International_Airport" + }, + { + "id": "31999", + "ident": "FOOM", + "type": "small_airport", + "name": "Mitzic Airport", + "latitude_deg": "0.7829999923706055", + "longitude_deg": "11.550000190734863", + "elevation_ft": "1913", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-9", + "municipality": "Mitzic", + "scheduled_service": "no", + "gps_code": "FOOM", + "iata_code": "MZC" + }, + { + "id": "2967", + "ident": "FOON", + "type": "medium_airport", + "name": "M'Vengue El Hadj Omar Bongo Ondimba International Airport", + "latitude_deg": "-1.6561599969863892", + "longitude_deg": "13.437999725341797", + "elevation_ft": "1450", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-2", + "municipality": "Franceville", + "scheduled_service": "yes", + "gps_code": "FOON", + "iata_code": "MVB", + "wikipedia_link": "https://en.wikipedia.org/wiki/M'Vengue_El_Hadj_Omar_Bongo_Ondimba_International_Airport" + }, + { + "id": "31857", + "ident": "FOOR", + "type": "small_airport", + "name": "Lastourville Airport", + "latitude_deg": "-0.8266670107841492", + "longitude_deg": "12.748600006103516", + "elevation_ft": "1585", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-7", + "municipality": "Lastourville", + "scheduled_service": "no", + "gps_code": "FOOR", + "iata_code": "LTL" + }, + { + "id": "32747", + "ident": "FOOS", + "type": "small_airport", + "name": "Sette Cama Airport", + "latitude_deg": "-2.53732", + "longitude_deg": "9.76386", + "elevation_ft": "10", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-8", + "municipality": "Sette Cama", + "scheduled_service": "no", + "gps_code": "FOOS", + "keywords": "ZKM" + }, + { + "id": "32428", + "ident": "FOOT", + "type": "small_airport", + "name": "Tchibanga Airport", + "latitude_deg": "-2.88848", + "longitude_deg": "10.955429", + "elevation_ft": "269", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-5", + "municipality": "Tchibanga", + "scheduled_service": "yes", + "gps_code": "FOOT", + "iata_code": "TCH" + }, + { + "id": "31984", + "ident": "FOOY", + "type": "small_airport", + "name": "Mayumba Airport", + "latitude_deg": "-3.458372", + "longitude_deg": "10.676539", + "elevation_ft": "13", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-5", + "municipality": "Mayumba", + "scheduled_service": "no", + "gps_code": "FOOY", + "iata_code": "MYB", + "keywords": "Mayoumba" + }, + { + "id": "312910", + "ident": "FOY", + "type": "small_airport", + "name": "Foya Airport", + "latitude_deg": "8.3513", + "longitude_deg": "-10.2269", + "elevation_ft": "1480", + "continent": "AF", + "iso_country": "LR", + "iso_region": "LR-LO", + "municipality": "Foya", + "scheduled_service": "no", + "iata_code": "FOY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foya_Airport" + }, + { + "id": "2968", + "ident": "FPPR", + "type": "medium_airport", + "name": "Principe Airport", + "latitude_deg": "1.66294", + "longitude_deg": "7.41174", + "elevation_ft": "591", + "continent": "AF", + "iso_country": "ST", + "iso_region": "ST-P", + "municipality": "São Tomé & Príncipe", + "scheduled_service": "yes", + "gps_code": "FPPR", + "iata_code": "PCP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pr%C3%ADncipe_Airport" + }, + { + "id": "2969", + "ident": "FPST", + "type": "medium_airport", + "name": "São Tomé International Airport", + "latitude_deg": "0.378175", + "longitude_deg": "6.71215", + "elevation_ft": "33", + "continent": "AF", + "iso_country": "ST", + "iso_region": "ST-01", + "municipality": "São Tomé", + "scheduled_service": "yes", + "gps_code": "FPST", + "iata_code": "TMS", + "wikipedia_link": "https://en.wikipedia.org/wiki/S%C3%A3o_Tom%C3%A9_International_Airport" + }, + { + "id": "4955", + "ident": "FQ49", + "type": "small_airport", + "name": "Vila Franca do Save Airport", + "latitude_deg": "-21.164499282836914", + "longitude_deg": "34.560699462890625", + "elevation_ft": "98", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-I", + "municipality": "Vila Franca do Save", + "scheduled_service": "no", + "gps_code": "FQ49", + "local_code": "FQ49" + }, + { + "id": "29661", + "ident": "FQAG", + "type": "small_airport", + "name": "Angoche Airport", + "latitude_deg": "-16.181869506835938", + "longitude_deg": "39.94521713256836", + "elevation_ft": "121", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-N", + "municipality": "Angoche", + "scheduled_service": "no", + "gps_code": "FQAG", + "iata_code": "ANO" + }, + { + "id": "29706", + "ident": "FQBI", + "type": "small_airport", + "name": "Bilene Airport", + "latitude_deg": "-25.2659854888916", + "longitude_deg": "33.23859786987305", + "elevation_ft": "118", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-G", + "municipality": "Bilene", + "scheduled_service": "no", + "gps_code": "FQBI" + }, + { + "id": "2970", + "ident": "FQBR", + "type": "medium_airport", + "name": "Beira Airport", + "latitude_deg": "-19.79640007019043", + "longitude_deg": "34.90760040283203", + "elevation_ft": "33", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-S", + "municipality": "Beira", + "scheduled_service": "yes", + "gps_code": "FQBR", + "iata_code": "BEW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beira_Airport" + }, + { + "id": "29811", + "ident": "FQCB", + "type": "small_airport", + "name": "Cuamba Airport", + "latitude_deg": "-14.815", + "longitude_deg": "36.529999", + "elevation_ft": "1919", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-A", + "municipality": "Cuamba", + "scheduled_service": "no", + "gps_code": "FQCB", + "iata_code": "FXO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cuamba_Airport" + }, + { + "id": "2971", + "ident": "FQCH", + "type": "medium_airport", + "name": "Chimoio Airport", + "latitude_deg": "-19.15130043029785", + "longitude_deg": "33.42900085449219", + "elevation_ft": "2287", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-B", + "municipality": "Chimoio", + "scheduled_service": "yes", + "gps_code": "FQCH", + "iata_code": "VPY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chimoio_Airport" + }, + { + "id": "31203", + "ident": "FQFU", + "type": "small_airport", + "name": "Furancungo Airport", + "latitude_deg": "-14.918600082397461", + "longitude_deg": "33.628299713134766", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-T", + "municipality": "Furancungo", + "scheduled_service": "no", + "gps_code": "FQFU" + }, + { + "id": "29974", + "ident": "FQIA", + "type": "small_airport", + "name": "Inhaca Airport", + "latitude_deg": "-25.9971446991", + "longitude_deg": "32.929351806599996", + "elevation_ft": "10", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-L", + "municipality": "Inhaca", + "scheduled_service": "no", + "gps_code": "FQIA", + "iata_code": "IHC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Inhaca_Airport" + }, + { + "id": "2972", + "ident": "FQIN", + "type": "medium_airport", + "name": "Inhambane Airport", + "latitude_deg": "-23.8764", + "longitude_deg": "35.408501", + "elevation_ft": "30", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-I", + "municipality": "Inhambane", + "scheduled_service": "yes", + "gps_code": "FQIN", + "iata_code": "INH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Inhambane_Airport" + }, + { + "id": "2973", + "ident": "FQLC", + "type": "medium_airport", + "name": "Lichinga Airport", + "latitude_deg": "-13.274", + "longitude_deg": "35.2663", + "elevation_ft": "4505", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-A", + "municipality": "Lichinga", + "scheduled_service": "yes", + "gps_code": "FQLC", + "iata_code": "VXC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lichinga_Airport" + }, + { + "id": "2974", + "ident": "FQLU", + "type": "small_airport", + "name": "Lumbo Airport", + "latitude_deg": "-15.0331001282", + "longitude_deg": "40.671699523899996", + "elevation_ft": "33", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-N", + "municipality": "Lumbo", + "scheduled_service": "no", + "gps_code": "FQLU", + "iata_code": "LFB" + }, + { + "id": "2975", + "ident": "FQMA", + "type": "large_airport", + "name": "Maputo Airport", + "latitude_deg": "-25.920799", + "longitude_deg": "32.572601", + "elevation_ft": "145", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-MPM", + "municipality": "Maputo", + "scheduled_service": "yes", + "gps_code": "FQMA", + "iata_code": "MPM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maputo_International_Airport" + }, + { + "id": "2976", + "ident": "FQMD", + "type": "medium_airport", + "name": "Mueda Airport", + "latitude_deg": "-11.672900199890137", + "longitude_deg": "39.5630989074707", + "elevation_ft": "2789", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-P", + "municipality": "Mueda", + "scheduled_service": "no", + "gps_code": "FQMD", + "iata_code": "MUD" + }, + { + "id": "2977", + "ident": "FQMP", + "type": "medium_airport", + "name": "Mocímboa da Praia Airport", + "latitude_deg": "-11.361800193786621", + "longitude_deg": "40.35490036010742", + "elevation_ft": "89", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-P", + "municipality": "Mocímboa da Praia", + "scheduled_service": "no", + "gps_code": "FQMP", + "iata_code": "MZB" + }, + { + "id": "2978", + "ident": "FQMR", + "type": "small_airport", + "name": "Marrupa Airport", + "latitude_deg": "-13.225099563598633", + "longitude_deg": "37.552101135253906", + "elevation_ft": "2480", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-A", + "municipality": "Marrupa", + "scheduled_service": "no", + "gps_code": "FQMR" + }, + { + "id": "2979", + "ident": "FQNC", + "type": "small_airport", + "name": "Nacala Airport", + "latitude_deg": "-14.488200187683105", + "longitude_deg": "40.71220016479492", + "elevation_ft": "410", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-N", + "municipality": "Nacala", + "scheduled_service": "no", + "gps_code": "FQNC", + "iata_code": "MNC" + }, + { + "id": "2980", + "ident": "FQNP", + "type": "medium_airport", + "name": "Nampula Airport", + "latitude_deg": "-15.105600357055664", + "longitude_deg": "39.28179931640625", + "elevation_ft": "1444", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-N", + "municipality": "Nampula", + "scheduled_service": "yes", + "gps_code": "FQNP", + "iata_code": "APL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nampula_Airport" + }, + { + "id": "2981", + "ident": "FQPB", + "type": "medium_airport", + "name": "Pemba Airport", + "latitude_deg": "-12.991762161254883", + "longitude_deg": "40.52401351928711", + "elevation_ft": "331", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-P", + "municipality": "Pemba / Porto Amelia", + "scheduled_service": "yes", + "gps_code": "FQPB", + "iata_code": "POL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pemba_Airport" + }, + { + "id": "30279", + "ident": "FQPO", + "type": "small_airport", + "name": "Ponta do Ouro Airport", + "latitude_deg": "-26.826913", + "longitude_deg": "32.838444", + "elevation_ft": "92", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-L", + "municipality": "Ponta do Ouro", + "scheduled_service": "no", + "gps_code": "FQPO", + "iata_code": "PDD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ponta_do_Ouro_Airport" + }, + { + "id": "2982", + "ident": "FQQL", + "type": "medium_airport", + "name": "Quelimane Airport", + "latitude_deg": "-17.855499267578125", + "longitude_deg": "36.86909866333008", + "elevation_ft": "36", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-Q", + "municipality": "Quelimane", + "scheduled_service": "yes", + "gps_code": "FQQL", + "iata_code": "UEL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quelimane_Airport" + }, + { + "id": "2983", + "ident": "FQSG", + "type": "small_airport", + "name": "Songo Airport", + "latitude_deg": "-15.6027", + "longitude_deg": "32.773201", + "elevation_ft": "2904", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-T", + "municipality": "Songo", + "scheduled_service": "no", + "gps_code": "FQSG" + }, + { + "id": "2984", + "ident": "FQTT", + "type": "medium_airport", + "name": "Chingozi Airport", + "latitude_deg": "-16.104799270629883", + "longitude_deg": "33.640201568603516", + "elevation_ft": "525", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-T", + "municipality": "Tete", + "scheduled_service": "yes", + "gps_code": "FQTT", + "iata_code": "TET", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chingozi_Airport" + }, + { + "id": "2985", + "ident": "FQUG", + "type": "small_airport", + "name": "Ulongwe Airport", + "latitude_deg": "-14.70460033416748", + "longitude_deg": "34.35240173339844", + "elevation_ft": "4265", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-T", + "municipality": "Ulongwe", + "scheduled_service": "no", + "gps_code": "FQUG" + }, + { + "id": "2986", + "ident": "FQVL", + "type": "medium_airport", + "name": "Vilankulo Airport", + "latitude_deg": "-22.018400192260742", + "longitude_deg": "35.31330108642578", + "elevation_ft": "46", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-I", + "municipality": "Vilanculo", + "scheduled_service": "yes", + "gps_code": "FQVL", + "iata_code": "VNX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vilankulo_Airport", + "keywords": "Vilanculos Airport" + }, + { + "id": "32579", + "ident": "FQXA", + "type": "small_airport", + "name": "Xai-Xai Airport", + "latitude_deg": "-25.037799835205078", + "longitude_deg": "33.62739944458008", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-G", + "municipality": "Xai-Xai", + "scheduled_service": "no", + "gps_code": "FQXA", + "iata_code": "VJB" + }, + { + "id": "43341", + "ident": "FR-0001", + "type": "heliport", + "name": "Centre Hospitalier De Moenchsberg Heliport", + "latitude_deg": "47.725276947021484", + "longitude_deg": "7.34499979019165", + "elevation_ft": "1081", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Mulhouse", + "scheduled_service": "no" + }, + { + "id": "43342", + "ident": "FR-0002", + "type": "heliport", + "name": "Centre Hospitalier Hautepierre Heliport", + "latitude_deg": "48.59333419799805", + "longitude_deg": "7.704999923706055", + "elevation_ft": "487", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Strasbourg", + "scheduled_service": "no" + }, + { + "id": "43343", + "ident": "FR-0003", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "48.79777908325195", + "longitude_deg": "7.776944160461426", + "elevation_ft": "530", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Haguenau", + "scheduled_service": "no" + }, + { + "id": "43344", + "ident": "FR-0004", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "48.872501373291016", + "longitude_deg": "7.48638916015625", + "elevation_ft": "659", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Ingwiller", + "scheduled_service": "no" + }, + { + "id": "43345", + "ident": "FR-0005", + "type": "heliport", + "name": "Centre Hospitalier Sainte Catherine Heliport", + "latitude_deg": "48.74555587768555", + "longitude_deg": "7.351110935211182", + "elevation_ft": "672", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Saverne", + "scheduled_service": "no" + }, + { + "id": "43346", + "ident": "FR-0006", + "type": "heliport", + "name": "Graffenstaden Centre Hospitalier Heliport", + "latitude_deg": "48.53724670410156", + "longitude_deg": "7.721718788146973", + "elevation_ft": "515", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Illkirch-Graffenstaden", + "scheduled_service": "no" + }, + { + "id": "43347", + "ident": "FR-0007", + "type": "heliport", + "name": "Hôpital Pasteur Heliport", + "latitude_deg": "48.07500076293945", + "longitude_deg": "7.3380560874938965", + "elevation_ft": "660", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Colmar", + "scheduled_service": "no" + }, + { + "id": "43348", + "ident": "FR-0008", + "type": "heliport", + "name": "N.H.C Heliport", + "latitude_deg": "48.57583236694336", + "longitude_deg": "7.740555763244629", + "elevation_ft": "540", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Strasbourg", + "scheduled_service": "no" + }, + { + "id": "350567", + "ident": "FR-0009", + "type": "small_airport", + "name": "Altisurface Notre-Dame-des-Neiges-Abbaye", + "latitude_deg": "44.601293", + "longitude_deg": "3.927773", + "elevation_ft": "3760", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Saint-Laurent-les-Bains", + "scheduled_service": "no", + "local_code": "LF0723" + }, + { + "id": "43350", + "ident": "FR-0010", + "type": "heliport", + "name": "Castets Heliport", + "latitude_deg": "43.91666793823242", + "longitude_deg": "-1.1569440364837646", + "elevation_ft": "184", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Dax", + "scheduled_service": "no" + }, + { + "id": "43351", + "ident": "FR-0011", + "type": "heliport", + "name": "Centre Hospitalier De La Côte Basque Heliport", + "latitude_deg": "43.483055114746094", + "longitude_deg": "-1.4777779579162598", + "elevation_ft": "75", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Bayonne", + "scheduled_service": "no" + }, + { + "id": "43352", + "ident": "FR-0012", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "44.63138961791992", + "longitude_deg": "-1.1627780199050903", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "La Teste De Buch", + "scheduled_service": "no" + }, + { + "id": "43353", + "ident": "FR-0013", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "43.712501525878906", + "longitude_deg": "-1.0402779579162598", + "elevation_ft": "31", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Dax", + "scheduled_service": "no" + }, + { + "id": "43354", + "ident": "FR-0014", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "43.893333435058594", + "longitude_deg": "-0.48611098527908325", + "elevation_ft": "197", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Mont De Marsan", + "scheduled_service": "no" + }, + { + "id": "43355", + "ident": "FR-0015", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "45.19175338745117", + "longitude_deg": "0.7315620183944702", + "elevation_ft": "502", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Perigueux", + "scheduled_service": "no" + }, + { + "id": "43356", + "ident": "FR-0016", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "43.32706069946289", + "longitude_deg": "-0.3298969864845276", + "elevation_ft": "709", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Pau", + "scheduled_service": "no" + }, + { + "id": "43357", + "ident": "FR-0017", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "43.19633865356445", + "longitude_deg": "-0.6160079836845398", + "elevation_ft": "758", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Oloron Sainte Marie", + "scheduled_service": "no" + }, + { + "id": "43358", + "ident": "FR-0018", + "type": "heliport", + "name": "Centre Hospitalier Saint Nicolas De Blay Heliport", + "latitude_deg": "45.135780334472656", + "longitude_deg": "-0.6595829725265503", + "elevation_ft": "81", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Blaye", + "scheduled_service": "no" + }, + { + "id": "43359", + "ident": "FR-0019", + "type": "heliport", + "name": "Clinique Du Medoc Heliport", + "latitude_deg": "45.30278778076172", + "longitude_deg": "-0.9378859996795654", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Lesparre", + "scheduled_service": "no" + }, + { + "id": "43360", + "ident": "FR-0020", + "type": "small_airport", + "name": "Escary Aramits", + "latitude_deg": "43.121208", + "longitude_deg": "-0.742491", + "elevation_ft": "1076", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Aramits", + "scheduled_service": "no", + "local_code": "LF6428" + }, + { + "id": "43361", + "ident": "FR-0021", + "type": "closed", + "name": "Aérodrome de Herm", + "latitude_deg": "43.821646", + "longitude_deg": "-1.103475", + "elevation_ft": "253", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Dax", + "scheduled_service": "no" + }, + { + "id": "43362", + "ident": "FR-0022", + "type": "heliport", + "name": "La Canéda Centre Hospitalier Heliport", + "latitude_deg": "44.90024948120117", + "longitude_deg": "1.2231240272521973", + "elevation_ft": "656", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Sarlat", + "scheduled_service": "no" + }, + { + "id": "43363", + "ident": "FR-0023", + "type": "heliport", + "name": "Le Huga Heliport", + "latitude_deg": "45.00694274902344", + "longitude_deg": "-1.164721965789795", + "elevation_ft": "52", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Lacanau", + "scheduled_service": "no" + }, + { + "id": "43364", + "ident": "FR-0024", + "type": "heliport", + "name": "Pellegrin Centre Hospitalier Heliport", + "latitude_deg": "44.82749938964844", + "longitude_deg": "-0.6044440269470215", + "elevation_ft": "344", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Bordeaux", + "scheduled_service": "no" + }, + { + "id": "43365", + "ident": "FR-0025", + "type": "heliport", + "name": "Pontonx Heliport", + "latitude_deg": "43.77777862548828", + "longitude_deg": "-0.9194440245628357", + "elevation_ft": "53", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Dax", + "scheduled_service": "no" + }, + { + "id": "43366", + "ident": "FR-0026", + "type": "heliport", + "name": "Relais De Margaux Heliport", + "latitude_deg": "45.052955627441406", + "longitude_deg": "-0.6622499823570251", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Margaux", + "scheduled_service": "no" + }, + { + "id": "43367", + "ident": "FR-0027", + "type": "heliport", + "name": "Robert Piqué Hôpital Militaire Heliport", + "latitude_deg": "44.79999923706055", + "longitude_deg": "-0.574167013168335", + "elevation_ft": "62", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Bordeaux", + "scheduled_service": "no" + }, + { + "id": "43368", + "ident": "FR-0028", + "type": "heliport", + "name": "Tinon Heliport", + "latitude_deg": "43.733333587646484", + "longitude_deg": "-1.1777780055999756", + "elevation_ft": "151", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Dax", + "scheduled_service": "no" + }, + { + "id": "43369", + "ident": "FR-0029", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "46.56666564941406", + "longitude_deg": "3.3333330154418945", + "elevation_ft": "686", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Moulins", + "scheduled_service": "no" + }, + { + "id": "43370", + "ident": "FR-0030", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "45.75694274902344", + "longitude_deg": "3.0919439792633057", + "elevation_ft": "1366", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Clermont-Ferrand", + "scheduled_service": "no" + }, + { + "id": "43371", + "ident": "FR-0031", + "type": "heliport", + "name": "Centre De Secours Principal Heliport", + "latitude_deg": "48.19194412231445", + "longitude_deg": "3.306389093399048", + "elevation_ft": "266", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Sens", + "scheduled_service": "no" + }, + { + "id": "43372", + "ident": "FR-0032", + "type": "heliport", + "name": "Centre d'Etude du C.E.A. Heliport", + "latitude_deg": "47.58333206176758", + "longitude_deg": "4.900000095367432", + "elevation_ft": "1611", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Valduc", + "scheduled_service": "no" + }, + { + "id": "43373", + "ident": "FR-0033", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "47.25", + "longitude_deg": "4.066667079925537", + "elevation_ft": "407", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Troyes", + "scheduled_service": "no" + }, + { + "id": "43374", + "ident": "FR-0034", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "47.804443359375", + "longitude_deg": "3.5577778816223145", + "elevation_ft": "528", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Auxerre", + "scheduled_service": "no" + }, + { + "id": "43375", + "ident": "FR-0035", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "46.31444549560547", + "longitude_deg": "4.812222003936768", + "elevation_ft": "727", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Macon", + "scheduled_service": "no" + }, + { + "id": "43376", + "ident": "FR-0036", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "46.981388092041016", + "longitude_deg": "3.1222219467163086", + "elevation_ft": "736", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Nevers", + "scheduled_service": "no" + }, + { + "id": "43377", + "ident": "FR-0037", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "47.862220764160156", + "longitude_deg": "4.558055877685547", + "elevation_ft": "792", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Chatillon Sur Seine", + "scheduled_service": "no" + }, + { + "id": "43378", + "ident": "FR-0038", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "46.46500015258789", + "longitude_deg": "4.109722137451172", + "elevation_ft": "824", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Paray Le Monial", + "scheduled_service": "no" + }, + { + "id": "43379", + "ident": "FR-0039", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "47.49555587768555", + "longitude_deg": "4.3444437980651855", + "elevation_ft": "957", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Semur-En-Auxois", + "scheduled_service": "no" + }, + { + "id": "43380", + "ident": "FR-0040", + "type": "heliport", + "name": "Centre Hospitalier Hotel Dieu Heliport", + "latitude_deg": "46.80500030517578", + "longitude_deg": "4.448888778686523", + "elevation_ft": "1180", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Le Creusot", + "scheduled_service": "no" + }, + { + "id": "43381", + "ident": "FR-0041", + "type": "heliport", + "name": "Centre Hospitalier J. Bouveri Heliport", + "latitude_deg": "46.650001525878906", + "longitude_deg": "4.333889007568359", + "elevation_ft": "957", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Montceau Les Mines", + "scheduled_service": "no" + }, + { + "id": "43382", + "ident": "FR-0042", + "type": "heliport", + "name": "Centre Hospitalier Régional Heliport", + "latitude_deg": "47.317222595214844", + "longitude_deg": "5.026944160461426", + "elevation_ft": "781", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Dijon", + "scheduled_service": "no" + }, + { + "id": "43383", + "ident": "FR-0043", + "type": "heliport", + "name": "Centre Hospitalier W. Morey Heliport", + "latitude_deg": "46.7783317565918", + "longitude_deg": "4.859167098999023", + "elevation_ft": "631", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Chalons-Sur-Saone", + "scheduled_service": "no" + }, + { + "id": "43384", + "ident": "FR-0044", + "type": "heliport", + "name": "Circuit Automobile de Nevers Magny-Cours Heliport", + "latitude_deg": "46.856388092041016", + "longitude_deg": "3.1541669368743896", + "elevation_ft": "751", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Magny Cours", + "scheduled_service": "no" + }, + { + "id": "43385", + "ident": "FR-0045", + "type": "heliport", + "name": "Le Port Heliport", + "latitude_deg": "47.981109619140625", + "longitude_deg": "3.386667013168335", + "elevation_ft": "254", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Joigny", + "scheduled_service": "no" + }, + { + "id": "43386", + "ident": "FR-0046", + "type": "heliport", + "name": "Amirauté Heliport", + "latitude_deg": "48.38055419921875", + "longitude_deg": "-4.491666793823242", + "elevation_ft": "8", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Brest", + "scheduled_service": "no" + }, + { + "id": "43387", + "ident": "FR-0047", + "type": "heliport", + "name": "Scorff Hospital Heliport", + "latitude_deg": "47.753644", + "longitude_deg": "-3.356066", + "elevation_ft": "79", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Lorient", + "scheduled_service": "no", + "keywords": "Bretagne Sud Centre Hospital Heliport" + }, + { + "id": "43388", + "ident": "FR-0048", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "48.63888931274414", + "longitude_deg": "-2.0083329677581787", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Saint-Malo", + "scheduled_service": "no" + }, + { + "id": "43389", + "ident": "FR-0049", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "48.7227783203125", + "longitude_deg": "-3.465277910232544", + "elevation_ft": "92", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Lannion", + "scheduled_service": "no" + }, + { + "id": "43390", + "ident": "FR-0050", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "48.4908332824707", + "longitude_deg": "-2.7511110305786133", + "elevation_ft": "354", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Saint-Brieuc", + "scheduled_service": "no" + }, + { + "id": "43391", + "ident": "FR-0051", + "type": "heliport", + "name": "Chubert Centre Hospitalier Heliport", + "latitude_deg": "47.66611099243164", + "longitude_deg": "-2.7472219467163086", + "elevation_ft": "33", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Vannes", + "scheduled_service": "no" + }, + { + "id": "43392", + "ident": "FR-0052", + "type": "heliport", + "name": "Cornouailles Heliport", + "latitude_deg": "47.98527526855469", + "longitude_deg": "-4.096109867095947", + "elevation_ft": "177", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Quimper", + "scheduled_service": "no" + }, + { + "id": "43393", + "ident": "FR-0053", + "type": "heliport", + "name": "La Cavale Blanche Centre Hospitalier Heliport", + "latitude_deg": "48.40353012084961", + "longitude_deg": "-4.529566764831543", + "elevation_ft": "121", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Brest", + "scheduled_service": "no" + }, + { + "id": "43394", + "ident": "FR-0054", + "type": "heliport", + "name": "Mairie Heliport", + "latitude_deg": "48.20277786254883", + "longitude_deg": "-3.8205559253692627", + "elevation_ft": "495", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Chateauneuf Du Faou", + "scheduled_service": "no" + }, + { + "id": "43395", + "ident": "FR-0055", + "type": "heliport", + "name": "Pont Chaillou Heliport", + "latitude_deg": "48.12305450439453", + "longitude_deg": "-1.6961109638214111", + "elevation_ft": "148", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Rennes", + "scheduled_service": "no" + }, + { + "id": "43396", + "ident": "FR-0056", + "type": "heliport", + "name": "Centre Hospitalier de l'agglomeration Montargeoise Heliport", + "latitude_deg": "47.996665954589844", + "longitude_deg": "2.774444103240967", + "elevation_ft": "353", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Amilly", + "scheduled_service": "no" + }, + { + "id": "43397", + "ident": "FR-0057", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "47.360557556152344", + "longitude_deg": "1.731943964958191", + "elevation_ft": "293", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Romorantin", + "scheduled_service": "no" + }, + { + "id": "43398", + "ident": "FR-0058", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "47.60472106933594", + "longitude_deg": "1.3424999713897705", + "elevation_ft": "355", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Blois", + "scheduled_service": "no" + }, + { + "id": "43399", + "ident": "FR-0059", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "47.08416748046875", + "longitude_deg": "2.4352779388427734", + "elevation_ft": "445", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Bourges", + "scheduled_service": "no" + }, + { + "id": "43400", + "ident": "FR-0060", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "48.727500915527344", + "longitude_deg": "1.3847219944000244", + "elevation_ft": "451", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Dreux", + "scheduled_service": "no" + }, + { + "id": "43401", + "ident": "FR-0061", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "48.41999816894531", + "longitude_deg": "1.504721999168396", + "elevation_ft": "488", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Chartres", + "scheduled_service": "no" + }, + { + "id": "43402", + "ident": "FR-0062", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "46.799442291259766", + "longitude_deg": "1.6974999904632568", + "elevation_ft": "558", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Chateauroux", + "scheduled_service": "no" + }, + { + "id": "43403", + "ident": "FR-0063", + "type": "heliport", + "name": "La Source Heliport", + "latitude_deg": "47.834999084472656", + "longitude_deg": "1.918889045715332", + "elevation_ft": "355", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Orleans", + "scheduled_service": "no" + }, + { + "id": "43404", + "ident": "FR-0064", + "type": "heliport", + "name": "Trousseau Chu Heliport", + "latitude_deg": "47.3488883972168", + "longitude_deg": "0.7091670036315918", + "elevation_ft": "274", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Tours", + "scheduled_service": "no" + }, + { + "id": "43405", + "ident": "FR-0065", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "48.9738883972168", + "longitude_deg": "4.369443893432617", + "elevation_ft": "304", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Chalons-En-Champagne", + "scheduled_service": "no" + }, + { + "id": "43406", + "ident": "FR-0066", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "48.71666717529297", + "longitude_deg": "4.6019439697265625", + "elevation_ft": "359", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Vitry-Le-Francois", + "scheduled_service": "no" + }, + { + "id": "43407", + "ident": "FR-0067", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "48.63166809082031", + "longitude_deg": "4.949443817138672", + "elevation_ft": "460", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Saint-Dizier", + "scheduled_service": "no" + }, + { + "id": "43408", + "ident": "FR-0068", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "49.76250076293945", + "longitude_deg": "4.697500228881836", + "elevation_ft": "579", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Charleville Mezieres", + "scheduled_service": "no" + }, + { + "id": "43409", + "ident": "FR-0069", + "type": "heliport", + "name": "Centre Hospitalier Régional Heliport", + "latitude_deg": "49.225833892822266", + "longitude_deg": "4.018610954284668", + "elevation_ft": "339", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Reims", + "scheduled_service": "no" + }, + { + "id": "43410", + "ident": "FR-0070", + "type": "heliport", + "name": "Centre Vinicole Heliport", + "latitude_deg": "49.02333450317383", + "longitude_deg": "3.984999895095825", + "elevation_ft": "466", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Chouilly", + "scheduled_service": "no" + }, + { + "id": "43411", + "ident": "FR-0071", + "type": "heliport", + "name": "Hôtel Florotel Heliport", + "latitude_deg": "48.724998474121094", + "longitude_deg": "3.8333330154418945", + "elevation_ft": "341", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Saint-Loup", + "scheduled_service": "no" + }, + { + "id": "43412", + "ident": "FR-0072", + "type": "heliport", + "name": "Hôtellerie La Briquetterie Heliport", + "latitude_deg": "49.025001525878906", + "longitude_deg": "3.9069440364837646", + "elevation_ft": "328", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Vinay", + "scheduled_service": "no" + }, + { + "id": "43413", + "ident": "FR-0073", + "type": "heliport", + "name": "Laboratoires Boehringer Heliport", + "latitude_deg": "49.275245666503906", + "longitude_deg": "4.0112810134887695", + "elevation_ft": "253", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Reims", + "scheduled_service": "no" + }, + { + "id": "43414", + "ident": "FR-0074", + "type": "heliport", + "name": "Travaux Aeriens Bouquemont Heliport", + "latitude_deg": "48.85166549682617", + "longitude_deg": "3.967221975326538", + "elevation_ft": "483", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Coligny", + "scheduled_service": "no" + }, + { + "id": "43415", + "ident": "FR-0075", + "type": "heliport", + "name": "Centre Hospitalier de Lons le Saunier Heliport", + "latitude_deg": "46.677223205566406", + "longitude_deg": "5.548288822174072", + "elevation_ft": "896", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Lons Le Saunier", + "scheduled_service": "no" + }, + { + "id": "43416", + "ident": "FR-0076", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "47.08333206176758", + "longitude_deg": "5.472221851348877", + "elevation_ft": "870", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Dole", + "scheduled_service": "no" + }, + { + "id": "43417", + "ident": "FR-0077", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "46.90055465698242", + "longitude_deg": "6.359722137451172", + "elevation_ft": "2766", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Pontarlier", + "scheduled_service": "no" + }, + { + "id": "43418", + "ident": "FR-0078", + "type": "heliport", + "name": "Hôpital Jean Minjoz Heliport", + "latitude_deg": "47.225833892822266", + "longitude_deg": "5.96416711807251", + "elevation_ft": "934", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Besancon", + "scheduled_service": "no" + }, + { + "id": "43419", + "ident": "FR-0079", + "type": "heliport", + "name": "Centre Hospitalier F. Quesnay Heliport", + "latitude_deg": "48.999168395996094", + "longitude_deg": "1.6749999523162842", + "elevation_ft": "92", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Mantes La Jolie", + "scheduled_service": "no" + }, + { + "id": "43420", + "ident": "FR-0080", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "48.9177131652832", + "longitude_deg": "2.023252010345459", + "elevation_ft": "233", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Poissy", + "scheduled_service": "no" + }, + { + "id": "43421", + "ident": "FR-0081", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "48.59555435180664", + "longitude_deg": "2.4811110496520996", + "elevation_ft": "255", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Corbeil", + "scheduled_service": "no" + }, + { + "id": "43422", + "ident": "FR-0082", + "type": "heliport", + "name": "Centre Hospitalier Henri Mondor Heliport", + "latitude_deg": "48.79888916015625", + "longitude_deg": "2.453610897064209", + "elevation_ft": "160", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Creteil", + "scheduled_service": "no" + }, + { + "id": "43423", + "ident": "FR-0083", + "type": "heliport", + "name": "Centre Hospitalier Intercommunal Robert Ballanger Heliport", + "latitude_deg": "48.955555", + "longitude_deg": "2.520833", + "elevation_ft": "190", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Aulnay Sous Bois", + "scheduled_service": "no" + }, + { + "id": "43424", + "ident": "FR-0084", + "type": "heliport", + "name": "Centre Hospitalier La Pitié Salpétrière Heliport", + "latitude_deg": "48.837223052978516", + "longitude_deg": "2.361388921737671", + "elevation_ft": "255", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Paris", + "scheduled_service": "no" + }, + { + "id": "43425", + "ident": "FR-0085", + "type": "heliport", + "name": "Centre Hospitalier Lariboisière Heliport", + "latitude_deg": "48.88277816772461", + "longitude_deg": "2.3544440269470215", + "elevation_ft": "262", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Paris", + "scheduled_service": "no" + }, + { + "id": "43426", + "ident": "FR-0086", + "type": "heliport", + "name": "Centre Hospitalier René Dubos Heliport", + "latitude_deg": "49.066871643066406", + "longitude_deg": "2.096982002258301", + "elevation_ft": "266", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Pontoise", + "scheduled_service": "no" + }, + { + "id": "43427", + "ident": "FR-0087", + "type": "heliport", + "name": "Flins Heliport", + "latitude_deg": "48.9819450378418", + "longitude_deg": "1.8638889789581299", + "elevation_ft": "82", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Flins-sur-Seine", + "scheduled_service": "no" + }, + { + "id": "43428", + "ident": "FR-0088", + "type": "heliport", + "name": "Hôpital D'Instruction Des Armées De Percy Heliport", + "latitude_deg": "48.81420135498047", + "longitude_deg": "2.253890037536621", + "elevation_ft": "333", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Clamart", + "scheduled_service": "no" + }, + { + "id": "43429", + "ident": "FR-0089", + "type": "heliport", + "name": "Hôpital Raymond Poincaré Heliport", + "latitude_deg": "48.83944320678711", + "longitude_deg": "2.1702780723571777", + "elevation_ft": "446", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Garches", + "scheduled_service": "no" + }, + { + "id": "43430", + "ident": "FR-0090", + "type": "heliport", + "name": "Les Sangliers Heliport", + "latitude_deg": "48.783538818359375", + "longitude_deg": "2.0716500282287598", + "elevation_ft": "518", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Guyancourt", + "scheduled_service": "no" + }, + { + "id": "43431", + "ident": "FR-0091", + "type": "heliport", + "name": "Saint-Ouen L'Aumone Heliport", + "latitude_deg": "49.057777404785156", + "longitude_deg": "2.1447219848632812", + "elevation_ft": "135", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Saint-Ouen L'Aumone", + "scheduled_service": "no" + }, + { + "id": "43432", + "ident": "FR-0092", + "type": "heliport", + "name": "Toussus Le Noble Heliport", + "latitude_deg": "48.749610900878906", + "longitude_deg": "2.1040709018707275", + "elevation_ft": "538", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Toussus Le Noble", + "scheduled_service": "no" + }, + { + "id": "43433", + "ident": "FR-0093", + "type": "heliport", + "name": "Centre Medical du Cap Peyrefite Heliport", + "latitude_deg": "42.45888900756836", + "longitude_deg": "3.1600000858306885", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Cerbere", + "scheduled_service": "no" + }, + { + "id": "43434", + "ident": "FR-0094", + "type": "heliport", + "name": "Gayraud Centre Hospitalier Heliport", + "latitude_deg": "43.19111251831055", + "longitude_deg": "2.341110944747925", + "elevation_ft": "475", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Carcassonne", + "scheduled_service": "no" + }, + { + "id": "43435", + "ident": "FR-0095", + "type": "heliport", + "name": "Hôpital Montimaran Heliport", + "latitude_deg": "43.34138870239258", + "longitude_deg": "3.255000114440918", + "elevation_ft": "176", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Beziers", + "scheduled_service": "no" + }, + { + "id": "43436", + "ident": "FR-0096", + "type": "heliport", + "name": "Le Corum Heliport", + "latitude_deg": "43.613609313964844", + "longitude_deg": "3.8822219371795654", + "elevation_ft": "176", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Montpellier", + "scheduled_service": "no" + }, + { + "id": "43437", + "ident": "FR-0097", + "type": "heliport", + "name": "Montpellier Chr Heliport", + "latitude_deg": "43.630001068115234", + "longitude_deg": "3.849721908569336", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Montpellier", + "scheduled_service": "no" + }, + { + "id": "43438", + "ident": "FR-0098", + "type": "small_airport", + "name": "Narbonne", + "latitude_deg": "43.194168", + "longitude_deg": "3.051667", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Narbonne", + "scheduled_service": "no", + "gps_code": "LFNN" + }, + { + "id": "43439", + "ident": "FR-0099", + "type": "heliport", + "name": "St Crescent Heliport", + "latitude_deg": "43.173611", + "longitude_deg": "2.990833", + "elevation_ft": "31", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Narbonne", + "scheduled_service": "no" + }, + { + "id": "43440", + "ident": "FR-0100", + "type": "heliport", + "name": "Centre Hospitalier La Perche Heliport", + "latitude_deg": "45.516387939453125", + "longitude_deg": "1.20305597782135", + "elevation_ft": "1178", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Saint-Yrieix", + "scheduled_service": "no" + }, + { + "id": "43441", + "ident": "FR-0101", + "type": "heliport", + "name": "Brive-La Gaillarde Centre Hospitalier Heliport", + "latitude_deg": "45.1702766418457", + "longitude_deg": "1.5341670513153076", + "elevation_ft": "522", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Brive-La Gaillarde", + "scheduled_service": "no" + }, + { + "id": "43442", + "ident": "FR-0102", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "45.266666412353516", + "longitude_deg": "1.7666670083999634", + "elevation_ft": "794", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Tulle", + "scheduled_service": "no" + }, + { + "id": "43443", + "ident": "FR-0103", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "45.81388854980469", + "longitude_deg": "1.2377779483795166", + "elevation_ft": "899", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Limoges", + "scheduled_service": "no" + }, + { + "id": "43444", + "ident": "FR-0104", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "45.95500183105469", + "longitude_deg": "1.7513890266418457", + "elevation_ft": "1476", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Bourganeuf", + "scheduled_service": "no" + }, + { + "id": "43445", + "ident": "FR-0105", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "45.54277801513672", + "longitude_deg": "2.3122220039367676", + "elevation_ft": "2148", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Ussel", + "scheduled_service": "no" + }, + { + "id": "43446", + "ident": "FR-0106", + "type": "heliport", + "name": "Centre Médical Heliport", + "latitude_deg": "46.133331298828125", + "longitude_deg": "1.8833329677581787", + "elevation_ft": "1542", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Saint-Feyre", + "scheduled_service": "no" + }, + { + "id": "43447", + "ident": "FR-0107", + "type": "heliport", + "name": "Château Castel Novel Heliport", + "latitude_deg": "45.18333435058594", + "longitude_deg": "1.4500000476837158", + "elevation_ft": "344", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Varetz", + "scheduled_service": "no" + }, + { + "id": "43448", + "ident": "FR-0108", + "type": "heliport", + "name": "Chateau De Saint Maixant Heliport", + "latitude_deg": "45.99361038208008", + "longitude_deg": "2.2088890075683594", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Saint Maixant", + "scheduled_service": "no" + }, + { + "id": "43449", + "ident": "FR-0109", + "type": "heliport", + "name": "Brabois Centre Hospitalier Heliport", + "latitude_deg": "48.64472198486328", + "longitude_deg": "6.151389122009277", + "elevation_ft": "1335", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Nancy", + "scheduled_service": "no" + }, + { + "id": "43450", + "ident": "FR-0110", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "48.67070770263672", + "longitude_deg": "5.9293107986450195", + "elevation_ft": "755", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Dommartin Les Toul", + "scheduled_service": "no" + }, + { + "id": "43451", + "ident": "FR-0111", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "49.112220764160156", + "longitude_deg": "6.7216668128967285", + "elevation_ft": "854", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Saint-Avold", + "scheduled_service": "no" + }, + { + "id": "43452", + "ident": "FR-0112", + "type": "heliport", + "name": "Etablissement Public Heliport", + "latitude_deg": "49.531286", + "longitude_deg": "5.785929", + "elevation_ft": "875", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Longwy", + "scheduled_service": "no" + }, + { + "id": "43453", + "ident": "FR-0113", + "type": "heliport", + "name": "Hôpital Central Heliport", + "latitude_deg": "48.685279846191406", + "longitude_deg": "6.192500114440918", + "elevation_ft": "749", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Nancy", + "scheduled_service": "no" + }, + { + "id": "43454", + "ident": "FR-0114", + "type": "heliport", + "name": "Technopole 2000 Heliport", + "latitude_deg": "49.09111022949219", + "longitude_deg": "6.231389045715332", + "elevation_ft": "722", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Metz", + "scheduled_service": "no" + }, + { + "id": "43455", + "ident": "FR-0115", + "type": "heliport", + "name": "Arbouix Heliport", + "latitude_deg": "43.002777099609375", + "longitude_deg": "-0.08333300054073334", + "elevation_ft": "1312", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Ayros", + "scheduled_service": "no" + }, + { + "id": "43456", + "ident": "FR-0116", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "43.63138961791992", + "longitude_deg": "0.5733330249786377", + "elevation_ft": "597", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Auch", + "scheduled_service": "no" + }, + { + "id": "43457", + "ident": "FR-0117", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "43.60388946533203", + "longitude_deg": "2.2391669750213623", + "elevation_ft": "642", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Castres", + "scheduled_service": "no" + }, + { + "id": "43458", + "ident": "FR-0118", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "42.95277786254883", + "longitude_deg": "1.611111044883728", + "elevation_ft": "1476", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Foix", + "scheduled_service": "no" + }, + { + "id": "43459", + "ident": "FR-0119", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "44.358890533447266", + "longitude_deg": "2.5519440174102783", + "elevation_ft": "1951", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Rodez Bourran", + "scheduled_service": "no" + }, + { + "id": "43460", + "ident": "FR-0120", + "type": "heliport", + "name": "Centre Hospitalier Intercommunal du Val d'Ariege Heliport", + "latitude_deg": "43.02527618408203", + "longitude_deg": "1.6174999475479126", + "elevation_ft": "1151", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Foix", + "scheduled_service": "no" + }, + { + "id": "43461", + "ident": "FR-0121", + "type": "heliport", + "name": "Centre Hospitalier Régional Heliport", + "latitude_deg": "43.61305618286133", + "longitude_deg": "1.399999976158142", + "elevation_ft": "531", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Toulouse-Purpan", + "scheduled_service": "no" + }, + { + "id": "43462", + "ident": "FR-0122", + "type": "heliport", + "name": "Renneville Heliport", + "latitude_deg": "43.3738899230957", + "longitude_deg": "1.7255560159683228", + "elevation_ft": "623", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Renneville", + "scheduled_service": "no" + }, + { + "id": "43463", + "ident": "FR-0123", + "type": "heliport", + "name": "Toulouse Rangueil Pech David Heliport", + "latitude_deg": "43.5613899230957", + "longitude_deg": "1.4486110210418701", + "elevation_ft": "793", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Toulouse Rangueil Pech David", + "scheduled_service": "no" + }, + { + "id": "43464", + "ident": "FR-0124", + "type": "heliport", + "name": "Boulogne Sur Mer Centre Hospitalier Heliport", + "latitude_deg": "50.72305679321289", + "longitude_deg": "1.6288889646530151", + "elevation_ft": "279", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Boulogne Sur Mer", + "scheduled_service": "no" + }, + { + "id": "43465", + "ident": "FR-0125", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "50.418331146240234", + "longitude_deg": "1.5641670227050781", + "elevation_ft": "42", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Berck-Sur-Mer", + "scheduled_service": "no" + }, + { + "id": "43466", + "ident": "FR-0126", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "51.037498474121094", + "longitude_deg": "2.396667003631592", + "elevation_ft": "55", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Dunkerque", + "scheduled_service": "no" + }, + { + "id": "43467", + "ident": "FR-0127", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "50.41444396972656", + "longitude_deg": "1.6630560159683228", + "elevation_ft": "152", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Rang Du Fliers", + "scheduled_service": "no" + }, + { + "id": "43468", + "ident": "FR-0128", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "50.703609466552734", + "longitude_deg": "2.2547221183776855", + "elevation_ft": "276", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Saint-Omer", + "scheduled_service": "no" + }, + { + "id": "43469", + "ident": "FR-0129", + "type": "heliport", + "name": "Centre Hospitalier Régional Heliport", + "latitude_deg": "50.60416793823242", + "longitude_deg": "3.0344440937042236", + "elevation_ft": "89", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Lille", + "scheduled_service": "no" + }, + { + "id": "43470", + "ident": "FR-0130", + "type": "heliport", + "name": "Coquelles Eurotunnel Heliport", + "latitude_deg": "50.91805648803711", + "longitude_deg": "1.7949999570846558", + "elevation_ft": "31", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Coquelles", + "scheduled_service": "no" + }, + { + "id": "43471", + "ident": "FR-0131", + "type": "heliport", + "name": "Polyclinique Du Ternois Heliport", + "latitude_deg": "50.38833236694336", + "longitude_deg": "2.336944103240967", + "elevation_ft": "417", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Saint Pol Sur Ternoise", + "scheduled_service": "no" + }, + { + "id": "43472", + "ident": "FR-0132", + "type": "heliport", + "name": "Polyclinique Heliport", + "latitude_deg": "50.37540817260742", + "longitude_deg": "2.9097089767456055", + "elevation_ft": "203", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Bois Bernard", + "scheduled_service": "no" + }, + { + "id": "43473", + "ident": "FR-0133", + "type": "heliport", + "name": "Usine Renault Heliport", + "latitude_deg": "50.362220764160156", + "longitude_deg": "3.037777900695801", + "elevation_ft": "95", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Douai", + "scheduled_service": "no" + }, + { + "id": "43474", + "ident": "FR-0134", + "type": "heliport", + "name": "Arsenal-Premar Heliport", + "latitude_deg": "49.65388870239258", + "longitude_deg": "-1.6399999856948853", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Cherbourg", + "scheduled_service": "no" + }, + { + "id": "43475", + "ident": "FR-0135", + "type": "heliport", + "name": "Avranches Heliport", + "latitude_deg": "48.692501068115234", + "longitude_deg": "-1.342221975326538", + "elevation_ft": "36", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Avranches", + "scheduled_service": "no" + }, + { + "id": "43476", + "ident": "FR-0136", + "type": "heliport", + "name": "Centre Hospitalie Heliport", + "latitude_deg": "49.20628356933594", + "longitude_deg": "-0.3550119996070862", + "elevation_ft": "220", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Caen", + "scheduled_service": "no" + }, + { + "id": "43477", + "ident": "FR-0137", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "49.63888931274414", + "longitude_deg": "-1.611111044883728", + "elevation_ft": "62", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Cherbourg", + "scheduled_service": "no" + }, + { + "id": "43478", + "ident": "FR-0138", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "49.041236877441406", + "longitude_deg": "-1.44343900680542", + "elevation_ft": "128", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Coutances", + "scheduled_service": "no" + }, + { + "id": "43479", + "ident": "FR-0139", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "48.42527770996094", + "longitude_deg": "0.08388900011777878", + "elevation_ft": "443", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Alencon", + "scheduled_service": "no" + }, + { + "id": "43480", + "ident": "FR-0140", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "48.746665954589844", + "longitude_deg": "-0.017777999863028526", + "elevation_ft": "596", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Argentan", + "scheduled_service": "no" + }, + { + "id": "43481", + "ident": "FR-0141", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "48.767051696777344", + "longitude_deg": "0.6103230118751526", + "elevation_ft": "764", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "L'Aigle", + "scheduled_service": "no" + }, + { + "id": "43482", + "ident": "FR-0142", + "type": "heliport", + "name": "Centre Hospitalier J. Monod Heliport", + "latitude_deg": "48.849998474121094", + "longitude_deg": "-1.5833330154418945", + "elevation_ft": "167", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Granville", + "scheduled_service": "no" + }, + { + "id": "43483", + "ident": "FR-0143", + "type": "heliport", + "name": "Crossma Heliport", + "latitude_deg": "49.685123443603516", + "longitude_deg": "-1.9099539518356323", + "elevation_ft": "482", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Jobourg", + "scheduled_service": "no" + }, + { + "id": "43484", + "ident": "FR-0144", + "type": "heliport", + "name": "Donville-Les-Bains Heliport", + "latitude_deg": "48.8663330078125", + "longitude_deg": "-1.5757219791412354", + "elevation_ft": "33", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Donville-Les-Bains", + "scheduled_service": "no" + }, + { + "id": "43485", + "ident": "FR-0145", + "type": "heliport", + "name": "Flamanville Heliport", + "latitude_deg": "49.533355712890625", + "longitude_deg": "-1.8817059993743896", + "elevation_ft": "269", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Flamanville", + "scheduled_service": "no" + }, + { + "id": "43486", + "ident": "FR-0146", + "type": "heliport", + "name": "Hôpital de Saint-Lo Heliport", + "latitude_deg": "49.10527801513672", + "longitude_deg": "-1.1061110496520996", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Saint-Lo", + "scheduled_service": "no" + }, + { + "id": "43487", + "ident": "FR-0147", + "type": "heliport", + "name": "La Ferme Saint Siméon Heliport", + "latitude_deg": "49.424686431884766", + "longitude_deg": "0.22359499335289001", + "elevation_ft": "102", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Honfleur", + "scheduled_service": "no" + }, + { + "id": "43488", + "ident": "FR-0148", + "type": "heliport", + "name": "Casino Heliport", + "latitude_deg": "49.599998474121094", + "longitude_deg": "1.5333329439163208", + "elevation_ft": "492", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Forges Les Eaux", + "scheduled_service": "no" + }, + { + "id": "43489", + "ident": "FR-0149", + "type": "heliport", + "name": "Center Parc Heliport", + "latitude_deg": "48.724998474121094", + "longitude_deg": "0.8361110091209412", + "elevation_ft": "643", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Verneuil", + "scheduled_service": "no" + }, + { + "id": "43490", + "ident": "FR-0150", + "type": "heliport", + "name": "Centrale Nucléaire Heliport", + "latitude_deg": "49.85359191894531", + "longitude_deg": "0.6312599778175354", + "elevation_ft": "305", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Paluel", + "scheduled_service": "no" + }, + { + "id": "43491", + "ident": "FR-0151", + "type": "heliport", + "name": "Centrale Nucléaire Heliport", + "latitude_deg": "49.97222137451172", + "longitude_deg": "1.2138890027999878", + "elevation_ft": "322", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Penly", + "scheduled_service": "no" + }, + { + "id": "43492", + "ident": "FR-0152", + "type": "heliport", + "name": "Centre Hospitalier de Verneuil Heliport", + "latitude_deg": "48.74444580078125", + "longitude_deg": "0.8916670083999634", + "elevation_ft": "597", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Verneuil Sur Avre", + "scheduled_service": "no" + }, + { + "id": "43493", + "ident": "FR-0153", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "49.44060134887695", + "longitude_deg": "1.111109972000122", + "elevation_ft": "145", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Rouen", + "scheduled_service": "no" + }, + { + "id": "43494", + "ident": "FR-0154", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "49.74305725097656", + "longitude_deg": "0.38555601239204407", + "elevation_ft": "318", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Fecamp", + "scheduled_service": "no" + }, + { + "id": "43495", + "ident": "FR-0155", + "type": "heliport", + "name": "Grand Couronne Heliport", + "latitude_deg": "49.3502311706543", + "longitude_deg": "0.9805819988250732", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Rouen", + "scheduled_service": "no" + }, + { + "id": "43496", + "ident": "FR-0156", + "type": "heliport", + "name": "Hopital Jacques Monod Heliport", + "latitude_deg": "49.524723052978516", + "longitude_deg": "0.18472200632095337", + "elevation_ft": "40", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Le Havre", + "scheduled_service": "no" + }, + { + "id": "43497", + "ident": "FR-0157", + "type": "heliport", + "name": "Usine Renault Heliport", + "latitude_deg": "49.47666549682617", + "longitude_deg": "0.30250000953674316", + "elevation_ft": "17", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Sandouville", + "scheduled_service": "no" + }, + { + "id": "43498", + "ident": "FR-0158", + "type": "heliport", + "name": "Beauvoir-Sur-Mer Fromentine Heliport", + "latitude_deg": "46.890148", + "longitude_deg": "-2.088156", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Beauvoir-Sur-Mer", + "scheduled_service": "no", + "gps_code": "LFFO" + }, + { + "id": "43499", + "ident": "FR-0159", + "type": "heliport", + "name": "Centre Hospitalier Cholet Heliport", + "latitude_deg": "47.04222106933594", + "longitude_deg": "-0.8958330154418945", + "elevation_ft": "351", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Cholet", + "scheduled_service": "no" + }, + { + "id": "43500", + "ident": "FR-0160", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "47.27583312988281", + "longitude_deg": "-2.2366669178009033", + "elevation_ft": "62", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Saint-Nazaire", + "scheduled_service": "no" + }, + { + "id": "43501", + "ident": "FR-0161", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "47.49027633666992", + "longitude_deg": "-0.5541669726371765", + "elevation_ft": "149", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Angers", + "scheduled_service": "no" + }, + { + "id": "43502", + "ident": "FR-0162", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "47.24555587768555", + "longitude_deg": "-0.05944399908185005", + "elevation_ft": "272", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Saumur", + "scheduled_service": "no" + }, + { + "id": "43503", + "ident": "FR-0163", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "48.06666564941406", + "longitude_deg": "-0.7833330035209656", + "elevation_ft": "279", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Laval", + "scheduled_service": "no" + }, + { + "id": "43504", + "ident": "FR-0164", + "type": "heliport", + "name": "Challans Heliport", + "latitude_deg": "46.853729248046875", + "longitude_deg": "-1.8305690288543701", + "elevation_ft": "130", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Challans", + "scheduled_service": "no" + }, + { + "id": "43505", + "ident": "FR-0165", + "type": "heliport", + "name": "Ile D'Yeu Port Joinville Heliport", + "latitude_deg": "46.7282257", + "longitude_deg": "-2.35029888", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Port Joinville (Ile D'Yeu)", + "scheduled_service": "no" + }, + { + "id": "43506", + "ident": "FR-0166", + "type": "heliport", + "name": "Quai Moncousu Heliport", + "latitude_deg": "47.20897674560547", + "longitude_deg": "-1.5534069538116455", + "elevation_ft": "77", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Nantes", + "scheduled_service": "no" + }, + { + "id": "43507", + "ident": "FR-0167", + "type": "heliport", + "name": "Camas Heliport", + "latitude_deg": "49.73249816894531", + "longitude_deg": "3.21476411819458", + "elevation_ft": "220", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Jussy", + "scheduled_service": "no" + }, + { + "id": "43508", + "ident": "FR-0168", + "type": "heliport", + "name": "Abbeville Medical Center Heliport", + "latitude_deg": "50.101535", + "longitude_deg": "1.831298", + "elevation_ft": "82", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Abbeville", + "scheduled_service": "no" + }, + { + "id": "43509", + "ident": "FR-0169", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "49.38972091674805", + "longitude_deg": "2.79555606842041", + "elevation_ft": "108", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Compiegne", + "scheduled_service": "no" + }, + { + "id": "43510", + "ident": "FR-0170", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "49.369998931884766", + "longitude_deg": "3.335278034210205", + "elevation_ft": "172", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Soissons", + "scheduled_service": "no" + }, + { + "id": "43511", + "ident": "FR-0171", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "49.6261100769043", + "longitude_deg": "3.237499952316284", + "elevation_ft": "180", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Chauny", + "scheduled_service": "no" + }, + { + "id": "43512", + "ident": "FR-0172", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "50.15388870239258", + "longitude_deg": "2.353332996368408", + "elevation_ft": "236", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Doullens", + "scheduled_service": "no" + }, + { + "id": "43513", + "ident": "FR-0173", + "type": "heliport", + "name": "Centre Hospitalier Laënnec Heliport", + "latitude_deg": "49.247222900390625", + "longitude_deg": "2.4580559730529785", + "elevation_ft": "238", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Creil", + "scheduled_service": "no" + }, + { + "id": "43514", + "ident": "FR-0174", + "type": "heliport", + "name": "Centre Hospitalier Sud Heliport", + "latitude_deg": "49.872779846191406", + "longitude_deg": "2.2536110877990723", + "elevation_ft": "199", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Amiens", + "scheduled_service": "no" + }, + { + "id": "43515", + "ident": "FR-0175", + "type": "heliport", + "name": "Centre Hospitalier De Poitiers Heliport", + "latitude_deg": "46.56055450439453", + "longitude_deg": "0.38277798891067505", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Poitiers", + "scheduled_service": "no" + }, + { + "id": "43516", + "ident": "FR-0176", + "type": "heliport", + "name": "Centre Hospitalier de Saintongues Heliport", + "latitude_deg": "45.747779846191406", + "longitude_deg": "-0.6549999713897705", + "elevation_ft": "135", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Saintes", + "scheduled_service": "no" + }, + { + "id": "43517", + "ident": "FR-0177", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "45.633331298828125", + "longitude_deg": "-1.0608329772949219", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Royan", + "scheduled_service": "no" + }, + { + "id": "43518", + "ident": "FR-0178", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "46.159000396728516", + "longitude_deg": "-1.142591953277588", + "elevation_ft": "49", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "La Rochelle", + "scheduled_service": "no" + }, + { + "id": "43519", + "ident": "FR-0179", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "46.31611251831055", + "longitude_deg": "-0.45833298563957214", + "elevation_ft": "108", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Niort", + "scheduled_service": "no" + }, + { + "id": "43520", + "ident": "FR-0180", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "45.6341667175293", + "longitude_deg": "0.1177780032157898", + "elevation_ft": "151", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Angouleme", + "scheduled_service": "no" + }, + { + "id": "43521", + "ident": "FR-0181", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "46.83416748046875", + "longitude_deg": "0.5555559992790222", + "elevation_ft": "275", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Chatellerault", + "scheduled_service": "no" + }, + { + "id": "43522", + "ident": "FR-0182", + "type": "seaplane_base", + "name": "Berre/Marignane Seaplane Base", + "latitude_deg": "43.450001", + "longitude_deg": "5.216667", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Marseille", + "scheduled_service": "no", + "gps_code": "LFTB" + }, + { + "id": "331649", + "ident": "FR-0183", + "type": "small_airport", + "name": "Aérodrome de Monhoudou", + "latitude_deg": "48.2758993", + "longitude_deg": "0.3257194", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "scheduled_service": "no" + }, + { + "id": "43524", + "ident": "FR-0184", + "type": "heliport", + "name": "Centre De Secours Heliport", + "latitude_deg": "43.42250061035156", + "longitude_deg": "5.048056125640869", + "elevation_ft": "136", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Martigues", + "scheduled_service": "no" + }, + { + "id": "43525", + "ident": "FR-0185", + "type": "heliport", + "name": "Centre De Secours Heliport", + "latitude_deg": "44.04666519165039", + "longitude_deg": "5.0258331298828125", + "elevation_ft": "285", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Carpentras", + "scheduled_service": "no" + }, + { + "id": "43526", + "ident": "FR-0186", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "43.9202766418457", + "longitude_deg": "4.79888916015625", + "elevation_ft": "69", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Avignon", + "scheduled_service": "no" + }, + { + "id": "43527", + "ident": "FR-0187", + "type": "heliport", + "name": "Pays d'Aix Medical Center Heliport", + "latitude_deg": "43.534721", + "longitude_deg": "5.442222", + "elevation_ft": "728", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Aix-en-Provence", + "scheduled_service": "no", + "keywords": "Heliport Centre Hospitalier du Pays d'Aix" + }, + { + "id": "43528", + "ident": "FR-0188", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "44.90638732910156", + "longitude_deg": "6.632778167724609", + "elevation_ft": "4372", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Briancon", + "scheduled_service": "no" + }, + { + "id": "43529", + "ident": "FR-0189", + "type": "heliport", + "name": "Hôpital Bonnet Heliport", + "latitude_deg": "43.439720153808594", + "longitude_deg": "6.751667022705078", + "elevation_ft": "69", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Frejus", + "scheduled_service": "no" + }, + { + "id": "43530", + "ident": "FR-0190", + "type": "heliport", + "name": "Hôpital Clavary Heliport", + "latitude_deg": "43.619720458984375", + "longitude_deg": "6.92888879776001", + "elevation_ft": "552", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Grasse", + "scheduled_service": "no" + }, + { + "id": "43531", + "ident": "FR-0191", + "type": "heliport", + "name": "Hôpital Heliport", + "latitude_deg": "43.11861038208008", + "longitude_deg": "6.111944198608398", + "elevation_ft": "88", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Hyeres", + "scheduled_service": "no" + }, + { + "id": "43532", + "ident": "FR-0192", + "type": "heliport", + "name": "Hôpital Heliport", + "latitude_deg": "44.557498931884766", + "longitude_deg": "6.073332786560059", + "elevation_ft": "2490", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Gap", + "scheduled_service": "no" + }, + { + "id": "43533", + "ident": "FR-0193", + "type": "heliport", + "name": "Hôpital Jean Marcel Heliport", + "latitude_deg": "43.40305709838867", + "longitude_deg": "6.066389083862305", + "elevation_ft": "753", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Brignoles", + "scheduled_service": "no" + }, + { + "id": "43534", + "ident": "FR-0194", + "type": "heliport", + "name": "Hôpital L'Archet 2 Heliport", + "latitude_deg": "43.6974983215332", + "longitude_deg": "7.226110935211182", + "elevation_ft": "608", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Nice", + "scheduled_service": "no" + }, + { + "id": "43535", + "ident": "FR-0195", + "type": "heliport", + "name": "Hôpital La Timone Heliport", + "latitude_deg": "43.28944396972656", + "longitude_deg": "5.403889179229736", + "elevation_ft": "138", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Marseille", + "scheduled_service": "no" + }, + { + "id": "43536", + "ident": "FR-0196", + "type": "heliport", + "name": "Hôpital Lenval Heliport", + "latitude_deg": "43.68944549560547", + "longitude_deg": "7.241666793823242", + "elevation_ft": "115", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Nice", + "scheduled_service": "no" + }, + { + "id": "43537", + "ident": "FR-0197", + "type": "heliport", + "name": "Milhaud Heliport", + "latitude_deg": "43.11333465576172", + "longitude_deg": "5.8980560302734375", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Toulon", + "scheduled_service": "no" + }, + { + "id": "43538", + "ident": "FR-0198", + "type": "heliport", + "name": "Nord Heliport", + "latitude_deg": "43.38055419921875", + "longitude_deg": "5.364999771118164", + "elevation_ft": "613", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Marseille-Hôpital", + "scheduled_service": "no" + }, + { + "id": "43539", + "ident": "FR-0199", + "type": "heliport", + "name": "Port Vauban Heliport", + "latitude_deg": "43.58805465698242", + "longitude_deg": "7.1322221755981445", + "elevation_ft": "22", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Antibes", + "scheduled_service": "no" + }, + { + "id": "43540", + "ident": "FR-0200", + "type": "heliport", + "name": "Quai du Large Heliport", + "latitude_deg": "43.545088", + "longitude_deg": "7.0169", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Cannes", + "scheduled_service": "no", + "gps_code": "LFTL" + }, + { + "id": "43541", + "ident": "FR-0201", + "type": "heliport", + "name": "Sarl R.C.E Heliport", + "latitude_deg": "43.26777648925781", + "longitude_deg": "6.551943778991699", + "elevation_ft": "21", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Grimaud", + "scheduled_service": "no" + }, + { + "id": "43542", + "ident": "FR-0202", + "type": "heliport", + "name": "Societe Europeenne de Propulsion Heliport", + "latitude_deg": "43.543888092041016", + "longitude_deg": "4.951943874359131", + "elevation_ft": "72", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Istres", + "scheduled_service": "no" + }, + { + "id": "43543", + "ident": "FR-0203", + "type": "heliport", + "name": "Sophia Antépolis Heliport", + "latitude_deg": "43.622779846191406", + "longitude_deg": "7.0283331871032715", + "elevation_ft": "772", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Valbonne", + "scheduled_service": "no" + }, + { + "id": "43544", + "ident": "FR-0204", + "type": "heliport", + "name": "Toulon Sainte Anne Heliport", + "latitude_deg": "43.133331298828125", + "longitude_deg": "5.929999828338623", + "elevation_ft": "226", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Toulon Sainte Anne", + "scheduled_service": "no" + }, + { + "id": "43545", + "ident": "FR-0205", + "type": "heliport", + "name": "Zi Les Paluds Heliport", + "latitude_deg": "43.28666687011719", + "longitude_deg": "5.603888988494873", + "elevation_ft": "379", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Aubagne", + "scheduled_service": "no" + }, + { + "id": "43546", + "ident": "FR-0206", + "type": "heliport", + "name": "Centre de Secours de Courchevel Heliport", + "latitude_deg": "45.415000915527344", + "longitude_deg": "6.633056163787842", + "elevation_ft": "5799", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Courchevel", + "scheduled_service": "no" + }, + { + "id": "43547", + "ident": "FR-0207", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "44.91444396972656", + "longitude_deg": "4.904167175292969", + "elevation_ft": "486", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Valence", + "scheduled_service": "no" + }, + { + "id": "43548", + "ident": "FR-0208", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "45.04194259643555", + "longitude_deg": "5.021944046020508", + "elevation_ft": "526", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Romans", + "scheduled_service": "no" + }, + { + "id": "43549", + "ident": "FR-0209", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "44.614166259765625", + "longitude_deg": "4.397500038146973", + "elevation_ft": "731", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Aubenas", + "scheduled_service": "no" + }, + { + "id": "43550", + "ident": "FR-0210", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "46.00555419921875", + "longitude_deg": "4.693056106567383", + "elevation_ft": "765", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Villefranche", + "scheduled_service": "no" + }, + { + "id": "43551", + "ident": "FR-0211", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "45.56416702270508", + "longitude_deg": "5.913332939147949", + "elevation_ft": "1047", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Chambery", + "scheduled_service": "no" + }, + { + "id": "43552", + "ident": "FR-0212", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "45.6694450378418", + "longitude_deg": "6.368610858917236", + "elevation_ft": "1100", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Albertville", + "scheduled_service": "no" + }, + { + "id": "43553", + "ident": "FR-0213", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "45.476112365722656", + "longitude_deg": "4.5155558586120605", + "elevation_ft": "1249", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Saint Chamond", + "scheduled_service": "no" + }, + { + "id": "43554", + "ident": "FR-0214", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "45.241668701171875", + "longitude_deg": "4.665832996368408", + "elevation_ft": "1364", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Annonay", + "scheduled_service": "no" + }, + { + "id": "43555", + "ident": "FR-0215", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "45.89555740356445", + "longitude_deg": "6.131667137145996", + "elevation_ft": "1591", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Annecy", + "scheduled_service": "no" + }, + { + "id": "43556", + "ident": "FR-0216", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "45.483612060546875", + "longitude_deg": "6.535555839538574", + "elevation_ft": "1621", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Moutiers", + "scheduled_service": "no" + }, + { + "id": "43557", + "ident": "FR-0217", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "45.934722900390625", + "longitude_deg": "6.641666889190674", + "elevation_ft": "1791", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Sallanches", + "scheduled_service": "no" + }, + { + "id": "43558", + "ident": "FR-0218", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "45.91444396972656", + "longitude_deg": "6.863056182861328", + "elevation_ft": "3399", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Chamonix", + "scheduled_service": "no" + }, + { + "id": "43559", + "ident": "FR-0219", + "type": "heliport", + "name": "Château De Pézay Heliport", + "latitude_deg": "46.13694381713867", + "longitude_deg": "4.701666831970215", + "elevation_ft": "764", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Saint Jean D'Ardieres", + "scheduled_service": "no" + }, + { + "id": "43560", + "ident": "FR-0220", + "type": "heliport", + "name": "Clinique Pneumologique des rieux Heliport", + "latitude_deg": "44.358055114746094", + "longitude_deg": "5.149722099304199", + "elevation_ft": "1035", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Nyons", + "scheduled_service": "no" + }, + { + "id": "43561", + "ident": "FR-0221", + "type": "heliport", + "name": "Croix De Lognan Heliport", + "latitude_deg": "45.970001220703125", + "longitude_deg": "6.944444179534912", + "elevation_ft": "6368", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Chamonix", + "scheduled_service": "no" + }, + { + "id": "43562", + "ident": "FR-0222", + "type": "heliport", + "name": "Crs Alpes Heliport", + "latitude_deg": "45.656944274902344", + "longitude_deg": "6.376111030578613", + "elevation_ft": "1084", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Albertville", + "scheduled_service": "no" + }, + { + "id": "43563", + "ident": "FR-0223", + "type": "heliport", + "name": "Flaine-Ete Heliport", + "latitude_deg": "46.003334045410156", + "longitude_deg": "6.696667194366455", + "elevation_ft": "5299", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Flaine", + "scheduled_service": "no" + }, + { + "id": "43564", + "ident": "FR-0224", + "type": "heliport", + "name": "Flaine-Hiver Heliport", + "latitude_deg": "46.00388717651367", + "longitude_deg": "6.690278053283691", + "elevation_ft": "5153", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Flaine", + "scheduled_service": "no" + }, + { + "id": "43565", + "ident": "FR-0225", + "type": "heliport", + "name": "Grand Colombier Heliport", + "latitude_deg": "45.88138961791992", + "longitude_deg": "5.757500171661377", + "elevation_ft": "4716", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Grand Colombier", + "scheduled_service": "no" + }, + { + "id": "43566", + "ident": "FR-0226", + "type": "heliport", + "name": "Hôpital Bellevue Heliport", + "latitude_deg": "45.4113883972168", + "longitude_deg": "4.391666889190674", + "elevation_ft": "1952", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Saint-Etienne", + "scheduled_service": "no" + }, + { + "id": "43567", + "ident": "FR-0227", + "type": "heliport", + "name": "Hôpital Edouard-Herriot Heliport", + "latitude_deg": "45.74422073364258", + "longitude_deg": "4.884532928466797", + "elevation_ft": "653", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Lyon", + "scheduled_service": "no" + }, + { + "id": "43568", + "ident": "FR-0228", + "type": "heliport", + "name": "Hôpital Nord Heliport", + "latitude_deg": "45.20083236694336", + "longitude_deg": "5.745555877685547", + "elevation_ft": "716", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Grenoble", + "scheduled_service": "no" + }, + { + "id": "43569", + "ident": "FR-0229", + "type": "heliport", + "name": "Hôtel Ariana Heliport", + "latitude_deg": "45.67388916015625", + "longitude_deg": "5.908888816833496", + "elevation_ft": "810", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Aix-Les-Bains", + "scheduled_service": "no" + }, + { + "id": "43570", + "ident": "FR-0230", + "type": "heliport", + "name": "Hôtel Du Château Heliport", + "latitude_deg": "46.358055114746094", + "longitude_deg": "6.132500171661377", + "elevation_ft": "1678", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Divonne", + "scheduled_service": "no" + }, + { + "id": "43571", + "ident": "FR-0231", + "type": "heliport", + "name": "Hôtel Georges Blanc Heliport", + "latitude_deg": "46.22083282470703", + "longitude_deg": "4.988889217376709", + "elevation_ft": "653", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Vonnas", + "scheduled_service": "no" + }, + { + "id": "43572", + "ident": "FR-0232", + "type": "heliport", + "name": "Hôtel Le Château Heliport", + "latitude_deg": "45.59000015258789", + "longitude_deg": "5.5369439125061035", + "elevation_ft": "1271", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Faverges De La Tour", + "scheduled_service": "no" + }, + { + "id": "43573", + "ident": "FR-0233", + "type": "heliport", + "name": "Hôtel Royal Heliport", + "latitude_deg": "46.39666748046875", + "longitude_deg": "6.595555782318115", + "elevation_ft": "1540", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Evian-les-Bains", + "scheduled_service": "no" + }, + { + "id": "43574", + "ident": "FR-0234", + "type": "heliport", + "name": "La Daille Heliport", + "latitude_deg": "45.45722198486328", + "longitude_deg": "6.967778205871582", + "elevation_ft": "5912", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Val D'Isere", + "scheduled_service": "no" + }, + { + "id": "43575", + "ident": "FR-0235", + "type": "heliport", + "name": "Les Deux Alpes Heliport", + "latitude_deg": "45.025001525878906", + "longitude_deg": "6.121110916137695", + "elevation_ft": "5190", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Mont De Lans", + "scheduled_service": "no" + }, + { + "id": "43576", + "ident": "FR-0236", + "type": "heliport", + "name": "Magland Heliport", + "latitude_deg": "45.983333587646484", + "longitude_deg": "6.716667175292969", + "elevation_ft": "7546", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Magland", + "scheduled_service": "no" + }, + { + "id": "43577", + "ident": "FR-0237", + "type": "heliport", + "name": "Malacussy Heliport", + "latitude_deg": "45.42416763305664", + "longitude_deg": "4.371388912200928", + "elevation_ft": "2148", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Saint-Etienne", + "scheduled_service": "no" + }, + { + "id": "43578", + "ident": "FR-0238", + "type": "heliport", + "name": "Quartier-Reynies Heliport", + "latitude_deg": "45.099998474121094", + "longitude_deg": "5.683332920074463", + "elevation_ft": "722", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Varces", + "scheduled_service": "no" + }, + { + "id": "43579", + "ident": "FR-0239", + "type": "heliport", + "name": "Refuge Du Requin Heliport", + "latitude_deg": "45.88472366333008", + "longitude_deg": "6.930555820465088", + "elevation_ft": "8255", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Chamonix", + "scheduled_service": "no" + }, + { + "id": "43580", + "ident": "FR-0240", + "type": "heliport", + "name": "Relais Du Soleil Heliport", + "latitude_deg": "44.90972137451172", + "longitude_deg": "5.022500038146973", + "elevation_ft": "724", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Chabeuil", + "scheduled_service": "no" + }, + { + "id": "43581", + "ident": "FR-0241", + "type": "heliport", + "name": "Remontées Mécaniques Heliport", + "latitude_deg": "46.14860916137695", + "longitude_deg": "6.581943988800049", + "elevation_ft": "4933", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Le Praz De Lys", + "scheduled_service": "no" + }, + { + "id": "43582", + "ident": "FR-0242", + "type": "small_airport", + "name": "Saint Rémy de Maurienne", + "latitude_deg": "45.376718", + "longitude_deg": "6.27692", + "elevation_ft": "1399", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFKR" + }, + { + "id": "43583", + "ident": "FR-0243", + "type": "heliport", + "name": "Sécurité Heliport", + "latitude_deg": "45.93888854980469", + "longitude_deg": "6.8958330154418945", + "elevation_ft": "3532", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Chamonix", + "scheduled_service": "no" + }, + { + "id": "43584", + "ident": "FR-0244", + "type": "heliport", + "name": "Societe des Eaux Minerales D'Evian Heliport", + "latitude_deg": "46.39083480834961", + "longitude_deg": "6.511943817138672", + "elevation_ft": "1271", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Amphion", + "scheduled_service": "no" + }, + { + "id": "43585", + "ident": "FR-0245", + "type": "heliport", + "name": "Tête De Solaise Heliport", + "latitude_deg": "45.432777404785156", + "longitude_deg": "6.991666793823242", + "elevation_ft": "8366", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Val D'Isere", + "scheduled_service": "no" + }, + { + "id": "43588", + "ident": "FR-0246", + "type": "small_airport", + "name": "Altisurface d'Aleu", + "latitude_deg": "42.900002", + "longitude_deg": "1.275", + "elevation_ft": "3445", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Aleu", + "scheduled_service": "no", + "local_code": "LF0921" + }, + { + "id": "43589", + "ident": "FR-0247", + "type": "small_airport", + "name": "Artigues Airstrip", + "latitude_deg": "43.076942", + "longitude_deg": "0.001944", + "elevation_ft": "2428", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Artigues", + "scheduled_service": "no", + "local_code": "LF6527" + }, + { + "id": "43590", + "ident": "FR-0248", + "type": "small_airport", + "name": "Bacaneres Altiport", + "latitude_deg": "42.838229", + "longitude_deg": "0.658901", + "elevation_ft": "6476", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Gouaux-de-Luchon", + "scheduled_service": "no", + "local_code": "LF3138" + }, + { + "id": "43591", + "ident": "FR-0249", + "type": "small_airport", + "name": "Altisurface de Balesta Nature", + "latitude_deg": "43.153646", + "longitude_deg": "0.995063", + "elevation_ft": "1394", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Roquefort-sur-Garonne", + "scheduled_service": "no", + "local_code": "LF3153" + }, + { + "id": "43592", + "ident": "FR-0250", + "type": "small_airport", + "name": "Cabaliros Altiport", + "latitude_deg": "42.952496", + "longitude_deg": "-0.133166", + "elevation_ft": "5750", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "D'Argeles Gazost", + "scheduled_service": "no", + "local_code": "LF6521", + "home_link": "http://www.aero-hesbaye.be/vac/ULM/LF6521.pdf" + }, + { + "id": "43593", + "ident": "FR-0251", + "type": "small_airport", + "name": "Altisurface de Cap De Barres", + "latitude_deg": "42.864034", + "longitude_deg": "0.516347", + "elevation_ft": "5798", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Cirès", + "scheduled_service": "no", + "local_code": "LF3131", + "home_link": "http://www.aero-hesbaye.be/vac/ULM/LF3131.pdf" + }, + { + "id": "43594", + "ident": "FR-0252", + "type": "small_airport", + "name": "Altisurface de Cap De Pouy", + "latitude_deg": "42.784721", + "longitude_deg": "0.545", + "elevation_ft": "5905", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Castillon-de-Larboust", + "scheduled_service": "no", + "local_code": "LF3132", + "home_link": "https://map.aerobreak.com/data/ficheffplum/LF3132.pdf" + }, + { + "id": "43595", + "ident": "FR-0253", + "type": "small_airport", + "name": "Altisurface de Castillon De La Laquette", + "latitude_deg": "42.895557", + "longitude_deg": "0.100556", + "elevation_ft": "5413", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Barèges", + "scheduled_service": "no", + "local_code": "LF6528", + "home_link": "https://basulm.ffplum.fr/PDF/LF6528.pdf" + }, + { + "id": "43596", + "ident": "FR-0254", + "type": "small_airport", + "name": "Cipieres Alpes Dazur ULM", + "latitude_deg": "43.779275", + "longitude_deg": "6.864824", + "elevation_ft": "3789", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Cipieres", + "scheduled_service": "no", + "local_code": "LF0652" + }, + { + "id": "43597", + "ident": "FR-0255", + "type": "closed", + "name": "Altisurface de Clamensane", + "latitude_deg": "44.313889", + "longitude_deg": "6.074444", + "elevation_ft": "2933", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Clamensane", + "scheduled_service": "no", + "local_code": "LF0421", + "keywords": "Trois Fontaines" + }, + { + "id": "43598", + "ident": "FR-0256", + "type": "closed", + "name": "Altiport de la Croix Rosier", + "latitude_deg": "46.078056", + "longitude_deg": "4.547222", + "elevation_ft": "2461", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Claveisolles", + "scheduled_service": "no", + "local_code": "LF6921" + }, + { + "id": "43599", + "ident": "FR-0257", + "type": "small_airport", + "name": "Altisurface du Clos de Legua", + "latitude_deg": "42.654167", + "longitude_deg": "2.038889", + "elevation_ft": "7874", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Fontrabiouse", + "scheduled_service": "no", + "local_code": "LF6624" + }, + { + "id": "43600", + "ident": "FR-0258", + "type": "small_airport", + "name": "Altiport du Col De Belledonne", + "latitude_deg": "45.166668", + "longitude_deg": "5.9875", + "elevation_ft": "9186", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Pic Croix de Belledonne", + "scheduled_service": "no", + "local_code": "LF3821" + }, + { + "id": "43601", + "ident": "FR-0259", + "type": "small_airport", + "name": "Altiport du Col de Cenise", + "latitude_deg": "46.020832", + "longitude_deg": "6.45", + "elevation_ft": "5656", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Brison", + "scheduled_service": "no", + "local_code": "LF7421" + }, + { + "id": "43602", + "ident": "FR-0260", + "type": "closed", + "name": "Col De La Fenetre Altiport", + "latitude_deg": "45.351391", + "longitude_deg": "6.488889", + "elevation_ft": "7251", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Saint-Martin-de-Belleville", + "scheduled_service": "no" + }, + { + "id": "43603", + "ident": "FR-0261", + "type": "small_airport", + "name": "Altiport du Col de la Marrano", + "latitude_deg": "42.662498", + "longitude_deg": "2.166667", + "elevation_ft": "6562", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Puyvalador", + "scheduled_service": "no", + "local_code": "LF6622" + }, + { + "id": "43604", + "ident": "FR-0262", + "type": "small_airport", + "name": "Altiport du Col de Sarenne", + "latitude_deg": "45.087502", + "longitude_deg": "6.145833", + "elevation_ft": "6496", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Clavans-le-Haut", + "scheduled_service": "no", + "local_code": "LF3825" + }, + { + "id": "43605", + "ident": "FR-0263", + "type": "small_airport", + "name": "Col du Béal Altiport", + "latitude_deg": "45.680777", + "longitude_deg": "3.789052", + "elevation_ft": "4823", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Chalmazel", + "scheduled_service": "no", + "local_code": "LF4221" + }, + { + "id": "43606", + "ident": "FR-0264", + "type": "closed", + "name": "Altiport de Col Saint Jean", + "latitude_deg": "44.413891", + "longitude_deg": "6.373056", + "elevation_ft": "6201", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Saint Jean", + "scheduled_service": "no" + }, + { + "id": "43607", + "ident": "FR-0265", + "type": "small_airport", + "name": "Altisurface de Coste Del Palm", + "latitude_deg": "42.60833", + "longitude_deg": "2.011111", + "elevation_ft": "7710", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Formiguères", + "scheduled_service": "no", + "local_code": "LF6621", + "home_link": "http://www.aero-hesbaye.be/vac/ULM/LF6621.pdf" + }, + { + "id": "43608", + "ident": "FR-0266", + "type": "small_airport", + "name": "Altisurface de Coumely", + "latitude_deg": "42.762501", + "longitude_deg": "0.022222", + "elevation_ft": "6562", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Gèdre", + "scheduled_service": "no", + "local_code": "LF6523" + }, + { + "id": "43609", + "ident": "FR-0267", + "type": "closed", + "name": "Crete De Brouffiers Altiport", + "latitude_deg": "45.34111", + "longitude_deg": "5.886111", + "elevation_ft": "7251", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "La Morte Alpe de Serre", + "scheduled_service": "no" + }, + { + "id": "43610", + "ident": "FR-0268", + "type": "small_airport", + "name": "Altisurface Dôme de la Lauze", + "latitude_deg": "44.998611", + "longitude_deg": "6.245833", + "elevation_ft": "11647", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Mont de Lans", + "scheduled_service": "no", + "local_code": "LF3823" + }, + { + "id": "43611", + "ident": "FR-0269", + "type": "small_airport", + "name": "Altisurface de Ferrère Batmale", + "latitude_deg": "42.888332", + "longitude_deg": "0.498889", + "elevation_ft": "5249", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Ferrère", + "scheduled_service": "no", + "local_code": "LF6524", + "home_link": "http://www.aero-hesbaye.be/vac/ULM/LF6524.pdf" + }, + { + "id": "43612", + "ident": "FR-0270", + "type": "small_airport", + "name": "Glacier d'Argentière Altiport", + "latitude_deg": "45.941666", + "longitude_deg": "7", + "elevation_ft": "9350", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Chamonix", + "scheduled_service": "no", + "local_code": "LF7422" + }, + { + "id": "43613", + "ident": "FR-0271", + "type": "small_airport", + "name": "Altisurface du Glacier de la Barbaratre", + "latitude_deg": "45.160557", + "longitude_deg": "6.138889", + "elevation_ft": "9869", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Vaujany", + "scheduled_service": "no", + "local_code": "LF3824" + }, + { + "id": "43614", + "ident": "FR-0272", + "type": "small_airport", + "name": "Altisurface du Glacier de la Chiaupe", + "latitude_deg": "45.491669", + "longitude_deg": "6.775", + "elevation_ft": "10170", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Champagny", + "scheduled_service": "no" + }, + { + "id": "43615", + "ident": "FR-0273", + "type": "small_airport", + "name": "Altiport du Glacier De La Grande Motte", + "latitude_deg": "45.424999", + "longitude_deg": "6.894444", + "elevation_ft": "9564", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Tignes", + "scheduled_service": "no", + "local_code": "LF7324" + }, + { + "id": "43616", + "ident": "FR-0274", + "type": "small_airport", + "name": "Altisurface du Glacier de l'Étendard", + "latitude_deg": "45.162498", + "longitude_deg": "6.166667", + "elevation_ft": "9514", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "St Sorlin D'Arves", + "scheduled_service": "no", + "local_code": "LF7322" + }, + { + "id": "43617", + "ident": "FR-0275", + "type": "small_airport", + "name": "Glacier de Talèfre Altiport", + "latitude_deg": "45.908333", + "longitude_deg": "6.983333", + "elevation_ft": "9121", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Chamonix", + "scheduled_service": "no", + "local_code": "LF7423" + }, + { + "id": "43618", + "ident": "FR-0276", + "type": "small_airport", + "name": "Altisurface du Glacier Du Dome Du Gouter", + "latitude_deg": "45.845833", + "longitude_deg": "6.85", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Chamonix", + "scheduled_service": "no", + "local_code": "LF7424" + }, + { + "id": "43619", + "ident": "FR-0277", + "type": "small_airport", + "name": "Altisurface du Glacier Du Tacul", + "latitude_deg": "45.891666", + "longitude_deg": "6.9375", + "elevation_ft": "7382", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Chamonix", + "scheduled_service": "no", + "local_code": "LF7425" + }, + { + "id": "43620", + "ident": "FR-0278", + "type": "small_airport", + "name": "Altisurface du Glacier Du Tour", + "latitude_deg": "45.984552", + "longitude_deg": "7.014522", + "elevation_ft": "10170", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Chamonix", + "scheduled_service": "no", + "local_code": "LF7426" + }, + { + "id": "43621", + "ident": "FR-0279", + "type": "small_airport", + "name": "Altisurface du Glacier Lombard", + "latitude_deg": "45.108334", + "longitude_deg": "6.322222", + "elevation_ft": "10695", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "La Grave", + "scheduled_service": "no", + "local_code": "LF0523" + }, + { + "id": "43622", + "ident": "FR-0280", + "type": "small_airport", + "name": "Altisurface du Grand Terrus", + "latitude_deg": "44.422779", + "longitude_deg": "5.644167", + "elevation_ft": "2871", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Montclus", + "scheduled_service": "no", + "local_code": "LF0524" + }, + { + "id": "43623", + "ident": "FR-0281", + "type": "small_airport", + "name": "Altisurface d'Hautacam", + "latitude_deg": "42.99387", + "longitude_deg": "-0.012569", + "elevation_ft": "5512", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Bordes", + "scheduled_service": "no", + "local_code": "LF6529", + "home_link": "http://www.aero-hesbaye.be/vac/ULM/LF6529.pdf" + }, + { + "id": "43624", + "ident": "FR-0282", + "type": "small_airport", + "name": "Altisurface de l'Hippopotame", + "latitude_deg": "42.473988", + "longitude_deg": "2.049004", + "elevation_ft": "4921", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Saillagouse", + "scheduled_service": "no", + "local_code": "LF6625" + }, + { + "id": "43625", + "ident": "FR-0283", + "type": "small_airport", + "name": "Altisurface de Honteyde", + "latitude_deg": "42.837223", + "longitude_deg": "0.502222", + "elevation_ft": "6234", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Cathervieille", + "scheduled_service": "no", + "local_code": "LF3133", + "home_link": "http://www.aero-hesbaye.be/vac/ULM/LF3133.pdf" + }, + { + "id": "43626", + "ident": "FR-0284", + "type": "small_airport", + "name": "Altisurface d'Isola 2000", + "latitude_deg": "44.171665", + "longitude_deg": "7.163056", + "elevation_ft": "8202", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Saint Sauveur de Tinée", + "scheduled_service": "no", + "local_code": "LF0621" + }, + { + "id": "43627", + "ident": "FR-0285", + "type": "closed", + "name": "Altisurface de La Clusaz", + "latitude_deg": "45.873611", + "longitude_deg": "6.425", + "elevation_ft": "4954", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "La Clusaz", + "scheduled_service": "no" + }, + { + "id": "43628", + "ident": "FR-0286", + "type": "small_airport", + "name": "Altisurface de la Jasserie", + "latitude_deg": "45.389115", + "longitude_deg": "4.579091", + "elevation_ft": "4528", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "La Jasserie", + "scheduled_service": "no", + "local_code": "LF4222" + }, + { + "id": "43629", + "ident": "FR-0287", + "type": "small_airport", + "name": "Altisurface de la Plagne-Bouirex", + "latitude_deg": "42.866669", + "longitude_deg": "1.138333", + "elevation_ft": "5249", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Sentenac-d'Oust", + "scheduled_service": "no", + "local_code": "LF0924", + "home_link": "http://www.aero-hesbaye.be/vac/ULM/LF0924.pdf", + "keywords": "bouyrex,bouirex" + }, + { + "id": "43630", + "ident": "FR-0288", + "type": "small_airport", + "name": "Altisurface de Notre-Dame-de-la-Salette", + "latitude_deg": "44.836666", + "longitude_deg": "5.9625", + "elevation_ft": "5184", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "La Salette", + "scheduled_service": "no", + "local_code": "LF3826" + }, + { + "id": "43631", + "ident": "FR-0289", + "type": "small_airport", + "name": "La Serre D'aulon Altiport", + "latitude_deg": "42.836109", + "longitude_deg": "0.272222", + "elevation_ft": "6562", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Aulon", + "scheduled_service": "no", + "local_code": "LF6525" + }, + { + "id": "43632", + "ident": "FR-0290", + "type": "small_airport", + "name": "Altisurface de La Taillade", + "latitude_deg": "44.891666", + "longitude_deg": "2.956944", + "elevation_ft": "2913", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "La Taillade", + "scheduled_service": "no" + }, + { + "id": "43633", + "ident": "FR-0291", + "type": "small_airport", + "name": "La Tête Des Champs Altiport", + "latitude_deg": "47.916668", + "longitude_deg": "6.830556", + "elevation_ft": "3182", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Le Ménil", + "scheduled_service": "no", + "local_code": "LF8821" + }, + { + "id": "43634", + "ident": "FR-0292", + "type": "closed", + "name": "Altisurface de La Toussuire", + "latitude_deg": "45.272221", + "longitude_deg": "6.266667", + "elevation_ft": "5413", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "La Toussuire", + "scheduled_service": "no" + }, + { + "id": "43635", + "ident": "FR-0293", + "type": "small_airport", + "name": "Altiport de la Tovière", + "latitude_deg": "45.465557", + "longitude_deg": "6.934722", + "elevation_ft": "7349", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Tignes", + "scheduled_service": "no", + "local_code": "LF7325" + }, + { + "id": "43636", + "ident": "FR-0294", + "type": "small_airport", + "name": "Altisurface de l'Escoulin", + "latitude_deg": "44.825001", + "longitude_deg": "5.233333", + "elevation_ft": "2165", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "L'Escoulin", + "scheduled_service": "no", + "local_code": "LF2624" + }, + { + "id": "43637", + "ident": "FR-0295", + "type": "small_airport", + "name": "Chateau de Montmeilleur", + "latitude_deg": "44.793611", + "longitude_deg": "5.761667", + "elevation_ft": "2789", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Mens", + "scheduled_service": "no", + "gps_code": "LFKK", + "keywords": "Montmeilleur" + }, + { + "id": "43638", + "ident": "FR-0296", + "type": "small_airport", + "name": "Mont Llaret Pic d'Aude Airfield", + "latitude_deg": "42.575001", + "longitude_deg": "2.038889", + "elevation_ft": "7628", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Les Angles", + "scheduled_service": "no", + "local_code": "LF6623" + }, + { + "id": "43639", + "ident": "FR-0297", + "type": "small_airport", + "name": "Mont Llaret Roc d'Aude Airfield", + "latitude_deg": "42.580555", + "longitude_deg": "2.025", + "elevation_ft": "7710", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Les Angles", + "scheduled_service": "no", + "local_code": "LF6626" + }, + { + "id": "43640", + "ident": "FR-0298", + "type": "small_airport", + "name": "Altisurface de Morzine-Avoriaz", + "latitude_deg": "46.190277", + "longitude_deg": "6.7625", + "elevation_ft": "5709", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Avoriaz", + "scheduled_service": "no", + "local_code": "LF7427" + }, + { + "id": "43641", + "ident": "FR-0299", + "type": "small_airport", + "name": "Pene De Soulit Altisurface", + "latitude_deg": "42.793056", + "longitude_deg": "0.4625", + "elevation_ft": "6365", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Garin", + "scheduled_service": "no", + "local_code": "LF3129" + }, + { + "id": "43642", + "ident": "FR-0300", + "type": "closed", + "name": "Altiport du Plateau de la Calme", + "latitude_deg": "42.530556", + "longitude_deg": "2.004167", + "elevation_ft": "6988", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Font Romeu-Odeillo", + "scheduled_service": "no", + "local_code": "LF6627" + }, + { + "id": "43643", + "ident": "FR-0301", + "type": "small_airport", + "name": "Altisurface de la Pointe de l'Ouillon", + "latitude_deg": "45.241669", + "longitude_deg": "6.216667", + "elevation_ft": "7808", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "St Sorlin D'Arves", + "scheduled_service": "no" + }, + { + "id": "43644", + "ident": "FR-0302", + "type": "small_airport", + "name": "Altisurface de Praz Sauge et Pré Vernay", + "latitude_deg": "45.189795", + "longitude_deg": "6.252379", + "elevation_ft": "5958", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "St Jean D'Arves", + "scheduled_service": "no", + "local_code": "LF7331", + "keywords": "LFTU" + }, + { + "id": "43645", + "ident": "FR-0303", + "type": "small_airport", + "name": "Altisurface des Quatre Veziaux - La Hourquette d'Ancizan", + "latitude_deg": "42.898532", + "longitude_deg": "0.297144", + "elevation_ft": "5643", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Ancizan", + "scheduled_service": "no", + "local_code": "LF6526", + "home_link": "http://www.aero-hesbaye.be/vac/ULM/LF6526.pdf" + }, + { + "id": "43646", + "ident": "FR-0304", + "type": "small_airport", + "name": "Altisurface de Saint-Roch Mayères", + "latitude_deg": "45.950001", + "longitude_deg": "6.586111", + "elevation_ft": "5118", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Sallanche", + "scheduled_service": "no", + "local_code": "LF7430" + }, + { + "id": "43647", + "ident": "FR-0305", + "type": "small_airport", + "name": "Altisurface de Thorame--Haute Chamatte", + "latitude_deg": "44.139721", + "longitude_deg": "6.548333", + "elevation_ft": "6827", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Thorame-Haute", + "scheduled_service": "no", + "local_code": "LF0458" + }, + { + "id": "43649", + "ident": "FR-0306", + "type": "small_airport", + "name": "Altisurface de Thorame--Haute Les Serres", + "latitude_deg": "44.123055", + "longitude_deg": "6.56", + "elevation_ft": "6129", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Thorame-Haute", + "scheduled_service": "no", + "local_code": "LF0426" + }, + { + "id": "43650", + "ident": "FR-0307", + "type": "small_airport", + "name": "Altisurface de Thorame--Haute Les Serres (2)", + "latitude_deg": "44.115002", + "longitude_deg": "6.538611", + "elevation_ft": "6398", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Thorame-Haute", + "scheduled_service": "no", + "local_code": "LF0434" + }, + { + "id": "43651", + "ident": "FR-0308", + "type": "small_airport", + "name": "Altisurface Uls", + "latitude_deg": "42.851944", + "longitude_deg": "0.848889", + "elevation_ft": "6562", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Melles", + "scheduled_service": "no", + "local_code": "LF3130", + "home_link": "http://www.aero-hesbaye.be/vac/ULM/LF3130.pdf" + }, + { + "id": "43652", + "ident": "FR-0309", + "type": "small_airport", + "name": "Altiport de Val Thorens", + "latitude_deg": "45.281944", + "longitude_deg": "6.573611", + "elevation_ft": "8022", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Saint--Martin-de-Belleville", + "scheduled_service": "no", + "local_code": "LF7327" + }, + { + "id": "43653", + "ident": "FR-0310", + "type": "small_airport", + "name": "Altisurface de Valloire - Bonnenuit", + "latitude_deg": "45.121113", + "longitude_deg": "6.419444", + "elevation_ft": "5512", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Valloire", + "scheduled_service": "no", + "local_code": "LF7332" + }, + { + "id": "43654", + "ident": "FR-0311", + "type": "small_airport", + "name": "Altisurface de Valmorel", + "latitude_deg": "45.455", + "longitude_deg": "6.41306", + "elevation_ft": "6332", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Les Avanchers", + "scheduled_service": "no", + "local_code": "LF7328" + }, + { + "id": "43655", + "ident": "FR-0312", + "type": "small_airport", + "name": "Altiport de Vaugellaz", + "latitude_deg": "45.607224", + "longitude_deg": "6.709722", + "elevation_ft": "6627", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Les Chapelles", + "scheduled_service": "no", + "local_code": "LF7329" + }, + { + "id": "43656", + "ident": "FR-0313", + "type": "small_airport", + "name": "Vers Le Col Du Palet Altiport", + "latitude_deg": "45.450558", + "longitude_deg": "6.883333", + "elevation_ft": "8005", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Tignes", + "scheduled_service": "no", + "local_code": "LF7333" + }, + { + "id": "44902", + "ident": "FR-0314", + "type": "small_airport", + "name": "Europa Island Airstrip", + "latitude_deg": "-22.3486995697", + "longitude_deg": "40.3515014648", + "continent": "AF", + "iso_country": "TF", + "iso_region": "TF-U-A", + "municipality": "Europa Island", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Europa_Island", + "keywords": "Île Europa" + }, + { + "id": "308839", + "ident": "FR-0315", + "type": "heliport", + "name": "Centre Hospitalier Universitaire Nord Heliport", + "latitude_deg": "49.906744", + "longitude_deg": "2.295928", + "elevation_ft": "162", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Amiens", + "scheduled_service": "no" + }, + { + "id": "308840", + "ident": "FR-0316", + "type": "heliport", + "name": "Centre Hospitalier Heliport", + "latitude_deg": "49.449339", + "longitude_deg": "2.068497", + "elevation_ft": "301", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Beauvais", + "scheduled_service": "no" + }, + { + "id": "308842", + "ident": "FR-0317", + "type": "heliport", + "name": "Centre Hospitalier Sud Francilien Heliport", + "latitude_deg": "48.620279", + "longitude_deg": "2.457238", + "elevation_ft": "256", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Corbeil - Essonnes", + "scheduled_service": "no" + }, + { + "id": "308845", + "ident": "FR-0318", + "type": "heliport", + "name": "Centre Hospitalier Bicêtre Heliport", + "latitude_deg": "48.809506", + "longitude_deg": "2.35622", + "elevation_ft": "269", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Kremlin-Bicêtre", + "scheduled_service": "no" + }, + { + "id": "308847", + "ident": "FR-0319", + "type": "heliport", + "name": "Hôtel La Coquillade Heliport", + "latitude_deg": "43.880125", + "longitude_deg": "5.319045", + "elevation_ft": "818", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Perrotet", + "scheduled_service": "no" + }, + { + "id": "308849", + "ident": "FR-0320", + "type": "small_airport", + "name": "Luçon - Chasnais Aerodrome", + "latitude_deg": "46.461913", + "longitude_deg": "-1.241447", + "elevation_ft": "32", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Luçon", + "scheduled_service": "no", + "local_code": "LF8523", + "home_link": "http://www.atlanticairpark.com/old/aap_club_fr.htm", + "keywords": "Atlantic Air Park" + }, + { + "id": "333576", + "ident": "FR-0321", + "type": "small_airport", + "name": "Mens Airstrip", + "latitude_deg": "44.805057", + "longitude_deg": "5.7544", + "elevation_ft": "2800", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Mens", + "scheduled_service": "no", + "local_code": "LF3828" + }, + { + "id": "315458", + "ident": "FR-0322", + "type": "small_airport", + "name": "Col de Lèques", + "latitude_deg": "43.86661", + "longitude_deg": "6.463966", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Castellane", + "scheduled_service": "no" + }, + { + "id": "315461", + "ident": "FR-0323", + "type": "small_airport", + "name": "Mont sur Meurthe", + "latitude_deg": "48.543823", + "longitude_deg": "6.441912", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "local_code": "LF5421" + }, + { + "id": "315606", + "ident": "FR-0324", + "type": "small_airport", + "name": "Verchocq Airpark", + "latitude_deg": "50.541124", + "longitude_deg": "2.033945", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "scheduled_service": "no", + "local_code": "LF6252", + "home_link": "http://www.aero-delahaye.com", + "keywords": "Aero Delahaye," + }, + { + "id": "315629", + "ident": "FR-0325", + "type": "closed", + "name": "Aire sur la Lys Airfield", + "latitude_deg": "50.6232", + "longitude_deg": "2.4161", + "elevation_ft": "75", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Aire-sur-la-Lys", + "scheduled_service": "no", + "local_code": "LF6222", + "keywords": "LF6222" + }, + { + "id": "315736", + "ident": "FR-0326", + "type": "small_airport", + "name": "Base ULM de Saint Maurice", + "latitude_deg": "45.96559", + "longitude_deg": "0.739478", + "elevation_ft": "755", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "local_code": "LF1627" + }, + { + "id": "315954", + "ident": "FR-0327", + "type": "small_airport", + "name": "Crottet-Le Bief ULM", + "latitude_deg": "46.285127", + "longitude_deg": "4.88604", + "elevation_ft": "597", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "local_code": "LF0152" + }, + { + "id": "315955", + "ident": "FR-0328", + "type": "small_airport", + "name": "ULM La Flamengrie", + "latitude_deg": "50.00025", + "longitude_deg": "3.94482", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "scheduled_service": "no", + "local_code": "LF0258" + }, + { + "id": "315956", + "ident": "FR-0329", + "type": "small_airport", + "name": "Ulmodrome de Limoux", + "latitude_deg": "43.05666", + "longitude_deg": "2.22633", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Limoux", + "scheduled_service": "no", + "local_code": "LF1153" + }, + { + "id": "315957", + "ident": "FR-0330", + "type": "small_airport", + "name": "Base ULM de Kerfot", + "latitude_deg": "48.723882", + "longitude_deg": "-3.027055", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "scheduled_service": "no", + "local_code": "LF2221" + }, + { + "id": "315958", + "ident": "FR-0331", + "type": "small_airport", + "name": "Base ULM de Javerlhac", + "latitude_deg": "45.553817", + "longitude_deg": "0.5585", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "local_code": "LF2428" + }, + { + "id": "315959", + "ident": "FR-0332", + "type": "small_airport", + "name": "Club ULM Haut Doubs", + "latitude_deg": "47.177725", + "longitude_deg": "6.813583", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "local_code": "LF2553" + }, + { + "id": "315965", + "ident": "FR-0333", + "type": "small_airport", + "name": "Envol ULM Alsace", + "latitude_deg": "48.151278", + "longitude_deg": "7.537673", + "elevation_ft": "576", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Marckolsheim", + "scheduled_service": "no", + "local_code": "LF6754" + }, + { + "id": "315968", + "ident": "FR-0334", + "type": "small_airport", + "name": "Verneuil en Bourbonnais", + "latitude_deg": "46.359444", + "longitude_deg": "3.268056", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "local_code": "LF0354" + }, + { + "id": "316142", + "ident": "FR-0335", + "type": "small_airport", + "name": "Doucier ULM", + "latitude_deg": "46.663693", + "longitude_deg": "5.761492", + "elevation_ft": "1735", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "local_code": "LF3951", + "home_link": "http://www.alize-ulm.com" + }, + { + "id": "316145", + "ident": "FR-0336", + "type": "closed", + "name": "Plessé ULM", + "latitude_deg": "47.52591", + "longitude_deg": "-1.841293", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "scheduled_service": "no", + "local_code": "LF4422" + }, + { + "id": "316146", + "ident": "FR-0337", + "type": "small_airport", + "name": "Cabrerets ULM", + "latitude_deg": "44.51415", + "longitude_deg": "1.592503", + "elevation_ft": "1177", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "local_code": "LF4629" + }, + { + "id": "316147", + "ident": "FR-0338", + "type": "closed", + "name": "Biguès Carlucet ULM", + "latitude_deg": "44.744167", + "longitude_deg": "1.618333", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "local_code": "LF4630" + }, + { + "id": "316148", + "ident": "FR-0339", + "type": "small_airport", + "name": "Saint Sigismond ULM", + "latitude_deg": "47.439444", + "longitude_deg": "-0.935833", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "scheduled_service": "no", + "local_code": "LF4923" + }, + { + "id": "316187", + "ident": "FR-0340", + "type": "small_airport", + "name": "Ramonchamp ULM", + "latitude_deg": "47.895556", + "longitude_deg": "6.755278", + "elevation_ft": "1893", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "local_code": "LF8851" + }, + { + "id": "320052", + "ident": "FR-0341", + "type": "small_airport", + "name": "La Tranclière Private Airstrip", + "latitude_deg": "46.0957591958", + "longitude_deg": "5.2860195", + "elevation_ft": "820", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "La Tranclière", + "scheduled_service": "no", + "local_code": "LF0121" + }, + { + "id": "320053", + "ident": "FR-0342", + "type": "small_airport", + "name": "Lavours", + "latitude_deg": "45.7957181", + "longitude_deg": "5.77395432", + "elevation_ft": "768", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Lavours", + "scheduled_service": "no", + "local_code": "LF0125" + }, + { + "id": "320249", + "ident": "FR-0343", + "type": "closed", + "name": "Rocroi RCAF Air Base", + "latitude_deg": "49.9154166", + "longitude_deg": "4.4266285", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Rocroi", + "scheduled_service": "no" + }, + { + "id": "332510", + "ident": "FR-0344", + "type": "small_airport", + "name": "Base ULM de Saint Quentin", + "latitude_deg": "49.852505", + "longitude_deg": "3.336229", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Saint Quentin", + "scheduled_service": "no" + }, + { + "id": "320617", + "ident": "FR-0345", + "type": "closed", + "name": "Vouziers-Séchault Air Base", + "latitude_deg": "49.2768694", + "longitude_deg": "4.7554409", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Vouziers", + "scheduled_service": "no" + }, + { + "id": "320621", + "ident": "FR-0346", + "type": "closed", + "name": "Grostenquin Air Base", + "latitude_deg": "49.0214762", + "longitude_deg": "6.7143418", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Grostenquin", + "scheduled_service": "no" + }, + { + "id": "321209", + "ident": "FR-0347", + "type": "small_airport", + "name": "Base ULM de Mellac", + "latitude_deg": "47.9115647", + "longitude_deg": "-3.5677212", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "scheduled_service": "no" + }, + { + "id": "321891", + "ident": "FR-0348", + "type": "small_airport", + "name": "La Motte du Caire Glider Field", + "latitude_deg": "44.32286", + "longitude_deg": "6.03128556", + "elevation_ft": "2132", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "scheduled_service": "no", + "local_code": "LF0431" + }, + { + "id": "322006", + "ident": "FR-0349", + "type": "small_airport", + "name": "Aérodrome de Saint-Aubin La Plaine", + "latitude_deg": "46.515876", + "longitude_deg": "-1.051669", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Saint-Aubin La Plaine", + "scheduled_service": "no", + "local_code": "LF8571" + }, + { + "id": "322108", + "ident": "FR-0350", + "type": "seaplane_base", + "name": "Base Hydro-ULM Juan Les Pins", + "latitude_deg": "43.565548", + "longitude_deg": "7.1024686", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Juan-les-Pins", + "scheduled_service": "no", + "local_code": "LF0651" + }, + { + "id": "322119", + "ident": "FR-0351", + "type": "seaplane_base", + "name": "Base Hydro-ULM Rhône Lavours", + "latitude_deg": "45.8108763", + "longitude_deg": "5.78132", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Lavours", + "scheduled_service": "no", + "local_code": "LF0158" + }, + { + "id": "322120", + "ident": "FR-0352", + "type": "seaplane_base", + "name": "Base Hydro-ULM de Montrevel-en-Bresse", + "latitude_deg": "46.34499", + "longitude_deg": "5.142219", + "elevation_ft": "620", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Montrevel-en-Bresse", + "scheduled_service": "no", + "local_code": "LF0159" + }, + { + "id": "322121", + "ident": "FR-0353", + "type": "small_airport", + "name": "Base ULM du Val de l'Ailette", + "latitude_deg": "49.567443", + "longitude_deg": "3.230307", + "elevation_ft": "184", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Pierremande", + "scheduled_service": "no", + "local_code": "LF0259" + }, + { + "id": "322152", + "ident": "FR-0354", + "type": "balloonport", + "name": "Cérizols Balloonport", + "latitude_deg": "43.128889", + "longitude_deg": "1.069444", + "elevation_ft": "1312", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Cérizols", + "scheduled_service": "no", + "local_code": "LF0926", + "home_link": "http://www.ballon-bleu-horizon.fr/" + }, + { + "id": "322153", + "ident": "FR-0355", + "type": "small_airport", + "name": "Troye d'Ariège ULM", + "latitude_deg": "43.0200429348", + "longitude_deg": "1.8775087595", + "elevation_ft": "1377", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Troye d'Ariège", + "scheduled_service": "no", + "local_code": "LF0927", + "home_link": "https://partagair.jimdo.com/" + }, + { + "id": "322154", + "ident": "FR-0356", + "type": "small_airport", + "name": "Seyne les Alpes Glider Field", + "latitude_deg": "44.341944", + "longitude_deg": "6.372778", + "elevation_ft": "3937", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "scheduled_service": "no", + "local_code": "LF0430" + }, + { + "id": "322162", + "ident": "FR-0357", + "type": "seaplane_base", + "name": "Base Hydro-ULM d'Amance", + "latitude_deg": "48.3508333333", + "longitude_deg": "4.505", + "elevation_ft": "430", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Amance", + "scheduled_service": "no", + "local_code": "LF1056" + }, + { + "id": "322200", + "ident": "FR-0358", + "type": "seaplane_base", + "name": "Base Hydro-ULM \"Henri Fabre\"", + "latitude_deg": "43.420833", + "longitude_deg": "5.077778", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Martigues", + "scheduled_service": "no", + "local_code": "LF1301" + }, + { + "id": "322201", + "ident": "FR-0359", + "type": "seaplane_base", + "name": "Base Hydro-ULM de La Ciotat", + "latitude_deg": "43.1737172", + "longitude_deg": "5.641389", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "La Ciotat", + "scheduled_service": "no", + "local_code": "LF1353" + }, + { + "id": "322202", + "ident": "FR-0360", + "type": "seaplane_base", + "name": "Base Hydro-ULM du Barrage de Pareloup", + "latitude_deg": "44.207865", + "longitude_deg": "2.722807", + "elevation_ft": "2635", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "local_code": "LF1255" + }, + { + "id": "322260", + "ident": "FR-0361", + "type": "seaplane_base", + "name": "Marseille Hydro", + "latitude_deg": "43.29909", + "longitude_deg": "5.347612", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Marseille", + "scheduled_service": "no", + "local_code": "LF1355" + }, + { + "id": "332511", + "ident": "FR-0362", + "type": "closed", + "name": "Base ULM de Fresnoy le Grand", + "latitude_deg": "49.947375", + "longitude_deg": "3.393068", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Fresnoy-le-Grand", + "scheduled_service": "no" + }, + { + "id": "326072", + "ident": "FR-0363", + "type": "closed", + "name": "Soustons", + "latitude_deg": "43.7132299", + "longitude_deg": "-1.305385", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Soustons", + "scheduled_service": "no", + "local_code": "LF4021" + }, + { + "id": "326075", + "ident": "FR-0364", + "type": "closed", + "name": "Aerodrome de Aubiet", + "latitude_deg": "43.6332139", + "longitude_deg": "0.7639122", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Aubiet", + "scheduled_service": "no" + }, + { + "id": "326130", + "ident": "FR-0365", + "type": "heliport", + "name": "Cavallo Helistrip", + "latitude_deg": "41.368431", + "longitude_deg": "9.264111", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-COR", + "municipality": "Ile Cavallo", + "scheduled_service": "no" + }, + { + "id": "326175", + "ident": "FR-0366", + "type": "seaplane_base", + "name": "Base Hydro-ULM de St Tropez", + "latitude_deg": "43.272776", + "longitude_deg": "6.608889", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Golfe de Saint Tropez", + "scheduled_service": "no", + "local_code": "LF8361" + }, + { + "id": "326250", + "ident": "FR-0367", + "type": "closed", + "name": "Ulmodrome des Landes", + "latitude_deg": "44.944215", + "longitude_deg": "1.646743", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Saint-Denis-lès-Martel", + "scheduled_service": "no" + }, + { + "id": "326251", + "ident": "FR-0368", + "type": "closed", + "name": "Buzet sur Tarn Aerodrome", + "latitude_deg": "43.768147", + "longitude_deg": "1.60426", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Buzet sur Tarn", + "scheduled_service": "no" + }, + { + "id": "326393", + "ident": "FR-0369", + "type": "seaplane_base", + "name": "Base Hydro-ULM La Salanque Latécoère", + "latitude_deg": "42.81667", + "longitude_deg": "3", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Saint-Laurent-de-la-Salanque", + "scheduled_service": "no", + "local_code": "LF6659" + }, + { + "id": "326619", + "ident": "FR-0370", + "type": "small_airport", + "name": "Gaussan ULM", + "latitude_deg": "43.219115", + "longitude_deg": "0.473498", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Gaussan", + "scheduled_service": "no" + }, + { + "id": "326702", + "ident": "FR-0371", + "type": "small_airport", + "name": "Fromissard ULM", + "latitude_deg": "44.003856", + "longitude_deg": "1.229357", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no" + }, + { + "id": "328585", + "ident": "FR-0372", + "type": "heliport", + "name": "Ile du Levant Helicopter Base", + "latitude_deg": "43.021514", + "longitude_deg": "6.460228", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "scheduled_service": "no" + }, + { + "id": "329036", + "ident": "FR-0373", + "type": "closed", + "name": "Base ULM de Meyrargues", + "latitude_deg": "43.6527318", + "longitude_deg": "5.5252254", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "scheduled_service": "no" + }, + { + "id": "329110", + "ident": "FR-0374", + "type": "small_airport", + "name": "Corbonod-Seyssel Private", + "latitude_deg": "45.9618", + "longitude_deg": "5.8178", + "elevation_ft": "1175", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Seyssel", + "scheduled_service": "no", + "local_code": "LF0151" + }, + { + "id": "329117", + "ident": "FR-0375", + "type": "heliport", + "name": "Mont Blanc Hélicoptères", + "latitude_deg": "45.57524", + "longitude_deg": "6.83133", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no" + }, + { + "id": "329129", + "ident": "FR-0376", + "type": "closed", + "name": "Aerodrome d'Esperce", + "latitude_deg": "43.316192", + "longitude_deg": "1.404468", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no" + }, + { + "id": "329135", + "ident": "FR-0377", + "type": "closed", + "name": "Laon-Couvron Air Base", + "latitude_deg": "49.6330564", + "longitude_deg": "3.5425026", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "wikipedia_link": "https://fr.wikipedia.org/wiki/Base_a%C3%A9rienne_de_Laon-Couvron" + }, + { + "id": "329815", + "ident": "FR-0378", + "type": "closed", + "name": "Clipperton Island Landing Strip", + "latitude_deg": "10.313828", + "longitude_deg": "-109.230497", + "elevation_ft": "11", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-U-A", + "municipality": "Île de Clipperton", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clipperton_Island" + }, + { + "id": "330629", + "ident": "FR-0379", + "type": "heliport", + "name": "Vars Helistrip", + "latitude_deg": "44.548963", + "longitude_deg": "6.701518", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "scheduled_service": "no" + }, + { + "id": "330775", + "ident": "FR-0380", + "type": "small_airport", + "name": "Base ULM des Bories", + "latitude_deg": "44.5113533", + "longitude_deg": "3.2709963", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "local_code": "LF4864" + }, + { + "id": "330785", + "ident": "FR-0381", + "type": "small_airport", + "name": "Base ULM de Fontaine les Clerval", + "latitude_deg": "47.4208887", + "longitude_deg": "6.4593714", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "local_code": "LF2556" + }, + { + "id": "330786", + "ident": "FR-0382", + "type": "closed", + "name": "Base ULM du Petit Fay", + "latitude_deg": "48.247629", + "longitude_deg": "3.194275", + "elevation_ft": "607", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "local_code": "LF8926" + }, + { + "id": "330835", + "ident": "FR-0383", + "type": "small_airport", + "name": "Base ULM d'Aghione Casone", + "latitude_deg": "42.1018478", + "longitude_deg": "9.4156253", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-COR", + "scheduled_service": "no", + "local_code": "LF2023" + }, + { + "id": "330836", + "ident": "FR-0384", + "type": "small_airport", + "name": "Base ULM du Forez", + "latitude_deg": "45.638413", + "longitude_deg": "4.061288", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no" + }, + { + "id": "331099", + "ident": "FR-0385", + "type": "closed", + "name": "Aerodrome des Salles", + "latitude_deg": "45.741212", + "longitude_deg": "0.669841", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "local_code": "LF8723" + }, + { + "id": "331100", + "ident": "FR-0386", + "type": "closed", + "name": "Aigrefeuille d'Aunis ULM", + "latitude_deg": "46.12722", + "longitude_deg": "-0.95167", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "local_code": "LF1752" + }, + { + "id": "331101", + "ident": "FR-0387", + "type": "closed", + "name": "Base ULM Les Châteaux", + "latitude_deg": "47.335432", + "longitude_deg": "1.274904", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "local_code": "LF4152" + }, + { + "id": "331105", + "ident": "FR-0388", + "type": "closed", + "name": "ZTN Air ULM", + "latitude_deg": "49.0139", + "longitude_deg": "0.03611", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Boissey", + "scheduled_service": "no", + "local_code": "LF1457" + }, + { + "id": "331137", + "ident": "FR-0389", + "type": "closed", + "name": "Polminhac ULM", + "latitude_deg": "44.94278", + "longitude_deg": "2.577", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "local_code": "LF1525" + }, + { + "id": "332530", + "ident": "FR-0390", + "type": "small_airport", + "name": "Saint Suffren private UL strip", + "latitude_deg": "43.644951", + "longitude_deg": "5.312621", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Saint-Suffren", + "scheduled_service": "no" + }, + { + "id": "332571", + "ident": "FR-0391", + "type": "closed", + "name": "Aérodrome d'Aynac ULM", + "latitude_deg": "44.796911", + "longitude_deg": "1.836498", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Aynac", + "scheduled_service": "no", + "home_link": "https://www.giteduquie.fr/", + "keywords": "Gite, Quié" + }, + { + "id": "333578", + "ident": "FR-0392", + "type": "small_airport", + "name": "Col de Bacchus Airstrip", + "latitude_deg": "44.8531", + "longitude_deg": "5.168788", + "elevation_ft": "3200", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Col de Bacchus", + "scheduled_service": "no", + "local_code": "LF2623" + }, + { + "id": "333580", + "ident": "FR-0393", + "type": "small_airport", + "name": "Aérodrome de Loupiac", + "latitude_deg": "44.831328", + "longitude_deg": "1.474571", + "elevation_ft": "895", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Loupiac", + "scheduled_service": "no", + "local_code": "LF4624" + }, + { + "id": "333581", + "ident": "FR-0394", + "type": "small_airport", + "name": "Aérodrome de Lacave le Frau", + "latitude_deg": "44.841835", + "longitude_deg": "1.58879", + "elevation_ft": "980", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Lacave", + "scheduled_service": "no", + "local_code": "LF4623" + }, + { + "id": "333583", + "ident": "FR-0395", + "type": "small_airport", + "name": "Aérodrome de Peyrillac", + "latitude_deg": "44.889715", + "longitude_deg": "1.416185", + "elevation_ft": "899", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Peyrillac", + "scheduled_service": "no", + "local_code": "LF2443" + }, + { + "id": "333744", + "ident": "FR-0396", + "type": "heliport", + "name": "Centre Hospitalier de Rambouillet", + "latitude_deg": "48.651925", + "longitude_deg": "1.826976", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Rambouillet", + "scheduled_service": "no" + }, + { + "id": "333778", + "ident": "FR-0397", + "type": "closed", + "name": "Boucali Airbase", + "latitude_deg": "43.567021", + "longitude_deg": "-1.494055", + "elevation_ft": "33", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Boucau", + "scheduled_service": "no" + }, + { + "id": "333882", + "ident": "FR-0398", + "type": "small_airport", + "name": "St Laurent de la Salanque Airbase", + "latitude_deg": "42.79729", + "longitude_deg": "3.002915", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Saint-Laurent-de-la-Salanque", + "scheduled_service": "no", + "local_code": "LF6628" + }, + { + "id": "333883", + "ident": "FR-0399", + "type": "small_airport", + "name": "Base ULM Corneilla de la Rivière", + "latitude_deg": "42.690858", + "longitude_deg": "2.730124", + "elevation_ft": "230", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Corneilla-la-Rivière", + "scheduled_service": "no", + "local_code": "LF6631" + }, + { + "id": "333884", + "ident": "FR-0400", + "type": "small_airport", + "name": "Base ULM Saint Génis", + "latitude_deg": "42.546575", + "longitude_deg": "2.908942", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Saint-Génis-des-Fontaines", + "scheduled_service": "no", + "local_code": "LF6632" + }, + { + "id": "333886", + "ident": "FR-0401", + "type": "small_airport", + "name": "Sadournin Airfield", + "latitude_deg": "43.32606", + "longitude_deg": "0.415109", + "elevation_ft": "918", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Sadournin", + "scheduled_service": "no", + "local_code": "LF6530" + }, + { + "id": "333888", + "ident": "FR-0402", + "type": "small_airport", + "name": "Base ULM de Larreule", + "latitude_deg": "43.44217", + "longitude_deg": "0.039654", + "elevation_ft": "606", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Larreule", + "scheduled_service": "no", + "local_code": "LF6540" + }, + { + "id": "333890", + "ident": "FR-0403", + "type": "small_airport", + "name": "Sauveterre Airfield", + "latitude_deg": "43.47417", + "longitude_deg": "0.078181", + "elevation_ft": "587", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Sauveterre", + "scheduled_service": "no", + "local_code": "LF6532" + }, + { + "id": "333891", + "ident": "FR-0404", + "type": "small_airport", + "name": "Sarriac Bigorre Airfield", + "latitude_deg": "43.382794", + "longitude_deg": "0.134009", + "elevation_ft": "718", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Sarriac-Bigorre", + "scheduled_service": "no", + "local_code": "LF6534" + }, + { + "id": "333894", + "ident": "FR-0405", + "type": "small_airport", + "name": "Aérodrome de L'Isle-en-Dodon", + "latitude_deg": "43.380657", + "longitude_deg": "0.851848", + "elevation_ft": "918", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "L'Isle en Dodon", + "scheduled_service": "no", + "local_code": "LF3134", + "home_link": "https://basulm.ffplum.fr/PDF/LF3134.pdf" + }, + { + "id": "333895", + "ident": "FR-0406", + "type": "small_airport", + "name": "Vallon des Bergons", + "latitude_deg": "43.020745", + "longitude_deg": "-0.178995", + "elevation_ft": "3445", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "local_code": "LF6536", + "home_link": "https://basulm.ffplum.fr/PDF/LF6536.pdf", + "keywords": "bergons" + }, + { + "id": "333900", + "ident": "FR-0407", + "type": "closed", + "name": "Fabas Bordeneuve", + "latitude_deg": "43.109722", + "longitude_deg": "1.117222", + "elevation_ft": "1300", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Fabas", + "scheduled_service": "no", + "local_code": "LF0952", + "home_link": "http://www.aero-hesbaye.be/vac/ULM/LF0952.pdf" + }, + { + "id": "333901", + "ident": "FR-0408", + "type": "small_airport", + "name": "Torre-Blanc Llauro", + "latitude_deg": "42.550278", + "longitude_deg": "2.731389", + "elevation_ft": "1510", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "local_code": "LF6658", + "home_link": "http://www.aero-hesbaye.be/vac/ULM/LF6658.pdf" + }, + { + "id": "333902", + "ident": "FR-0409", + "type": "small_airport", + "name": "Super Bareges - Plateau de Monhaillat", + "latitude_deg": "42.911111", + "longitude_deg": "0.125556", + "elevation_ft": "6100", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Bareges", + "scheduled_service": "no", + "local_code": "LF6555", + "home_link": "http://www.aero-hesbaye.be/vac/ULM/LF6555.pdf" + }, + { + "id": "333904", + "ident": "FR-0410", + "type": "small_airport", + "name": "Villeneuve du Latou Airfield", + "latitude_deg": "43.20358", + "longitude_deg": "1.418663", + "elevation_ft": "1330", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Villeneuve-du-Latou", + "scheduled_service": "no", + "local_code": "LF0925" + }, + { + "id": "333916", + "ident": "FR-0411", + "type": "small_airport", + "name": "Montpezat d'Agenais", + "latitude_deg": "44.364167", + "longitude_deg": "0.491389", + "elevation_ft": "120", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Montpezat", + "scheduled_service": "no", + "local_code": "LF4724", + "home_link": "https://basulm.ffplum.fr/PDF/LF4724.pdf" + }, + { + "id": "333918", + "ident": "FR-0412", + "type": "small_airport", + "name": "Base ULM du Sarrat", + "latitude_deg": "43.208593", + "longitude_deg": "1.708594", + "elevation_ft": "846", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Belpech", + "scheduled_service": "no", + "local_code": "LF0951" + }, + { + "id": "333919", + "ident": "FR-0413", + "type": "small_airport", + "name": "Altiport d'Ustou", + "latitude_deg": "42.78137", + "longitude_deg": "1.22577", + "elevation_ft": "5896", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Pouech d'Ardio", + "scheduled_service": "no", + "local_code": "LF0953" + }, + { + "id": "333923", + "ident": "FR-0414", + "type": "small_airport", + "name": "Base ULM du Fousseret", + "latitude_deg": "43.268889", + "longitude_deg": "1.053889", + "elevation_ft": "820", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Le Fousseret", + "scheduled_service": "no", + "local_code": "LF3151" + }, + { + "id": "333925", + "ident": "FR-0415", + "type": "small_airport", + "name": "Aerodrome de Bois de la Pierre", + "latitude_deg": "43.342596", + "longitude_deg": "1.14202", + "elevation_ft": "840", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Bois-de-la-Pierre", + "scheduled_service": "no", + "local_code": "LF3128" + }, + { + "id": "333966", + "ident": "FR-0416", + "type": "small_airport", + "name": "Aérodrome de Sabonnères", + "latitude_deg": "43.455707", + "longitude_deg": "1.07548", + "elevation_ft": "1050", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "local_code": "LF3126" + }, + { + "id": "333969", + "ident": "FR-0417", + "type": "small_airport", + "name": "Base ULM de Labastide St Sernin", + "latitude_deg": "43.73298", + "longitude_deg": "1.459293", + "elevation_ft": "500", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Labastide-Saint-Sernin", + "scheduled_service": "no", + "local_code": "LF3154" + }, + { + "id": "333970", + "ident": "FR-0418", + "type": "small_airport", + "name": "Marmouzet Airfield", + "latitude_deg": "43.245547", + "longitude_deg": "1.231971", + "elevation_ft": "1050", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Rieux-Volvestre", + "scheduled_service": "no", + "local_code": "LF3155" + }, + { + "id": "333971", + "ident": "FR-0419", + "type": "small_airport", + "name": "Base ULM Le Tucoulet", + "latitude_deg": "43.201258", + "longitude_deg": "0.547353", + "elevation_ft": "1627", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Balesta", + "scheduled_service": "no", + "local_code": "LF3156" + }, + { + "id": "336353", + "ident": "FR-0420", + "type": "small_airport", + "name": "Altisurface de Valberg", + "latitude_deg": "44.106039", + "longitude_deg": "6.940602", + "elevation_ft": "2240", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "local_code": "LF0654" + }, + { + "id": "335360", + "ident": "FR-0421", + "type": "small_airport", + "name": "LF2621 - Altisurface de Faucon", + "latitude_deg": "44.535942", + "longitude_deg": "5.308027", + "elevation_ft": "3300", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Chalancon", + "scheduled_service": "no", + "local_code": "LF2621" + }, + { + "id": "335586", + "ident": "FR-0422", + "type": "heliport", + "name": "Helisudcorse", + "latitude_deg": "41.5799", + "longitude_deg": "9.27696", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-COR", + "municipality": "Porto Vecchio", + "scheduled_service": "no" + }, + { + "id": "336355", + "ident": "FR-0423", + "type": "small_airport", + "name": "Base ULM du Burgaud", + "latitude_deg": "43.816327", + "longitude_deg": "1.13966", + "elevation_ft": "600", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Le Burgaud", + "scheduled_service": "no", + "local_code": "LF3157" + }, + { + "id": "337340", + "ident": "FR-0424", + "type": "small_airport", + "name": "Bazas Cazats", + "latitude_deg": "44.462263", + "longitude_deg": "-0.187844", + "elevation_ft": "300", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-U-A", + "municipality": "Bazas", + "scheduled_service": "no", + "local_code": "LF3321", + "home_link": "https://basulm.ffplum.fr/bases/liste-des-terrains/details/59/9187.html", + "keywords": "bazas,cazats,lf3321" + }, + { + "id": "337341", + "ident": "FR-0425", + "type": "small_airport", + "name": "La Tranche sur Mer", + "latitude_deg": "46.361582", + "longitude_deg": "-1.426886", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-U-A", + "municipality": "La Tranche sur Mer", + "scheduled_service": "no", + "local_code": "LF8522", + "home_link": "http://www.aclatranchesurmer.fr/", + "keywords": "tranche,sur,mer,lf8522" + }, + { + "id": "337372", + "ident": "FR-0426", + "type": "small_airport", + "name": "Aérodrome du Girouard", + "latitude_deg": "46.578838", + "longitude_deg": "-1.606048", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Le Girouard", + "scheduled_service": "no", + "local_code": "LF8524" + }, + { + "id": "337374", + "ident": "FR-0427", + "type": "small_airport", + "name": "Talmont Vendée Air Park", + "latitude_deg": "46.493761", + "longitude_deg": "-1.576506", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Talmont-Saint-Hilaire", + "scheduled_service": "no", + "local_code": "LF8521" + }, + { + "id": "337375", + "ident": "FR-0428", + "type": "small_airport", + "name": "Base ULM Thollon les Mémises", + "latitude_deg": "46.396667", + "longitude_deg": "6.716667", + "elevation_ft": "2996", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Thollon-les-Mémises", + "scheduled_service": "no", + "local_code": "LF7431" + }, + { + "id": "337376", + "ident": "FR-0429", + "type": "small_airport", + "name": "Base ULM de Fontrailles", + "latitude_deg": "43.345961", + "longitude_deg": "0.361649", + "elevation_ft": "900", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Fontrailles", + "scheduled_service": "no", + "local_code": "LF6554" + }, + { + "id": "337486", + "ident": "FR-0430", + "type": "small_airport", + "name": "Pressignac Vicq Rebeyrotte", + "latitude_deg": "44.90117", + "longitude_deg": "0.74781", + "elevation_ft": "643", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Pressignac-Vicq", + "scheduled_service": "no", + "local_code": "LF2432", + "home_link": "https://basulm.ffplum.fr/PDF/LF2432.pdf" + }, + { + "id": "337488", + "ident": "FR-0431", + "type": "small_airport", + "name": "Base ULM Azur", + "latitude_deg": "49.461033", + "longitude_deg": "3.848283", + "elevation_ft": "240", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Corbeny", + "scheduled_service": "no", + "local_code": "LF0221", + "home_link": "https://www.azur-ulm.fr/" + }, + { + "id": "338099", + "ident": "FR-0432", + "type": "small_airport", + "name": "Base ULM de Mosloy", + "latitude_deg": "49.174858", + "longitude_deg": "3.153967", + "elevation_ft": "453", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Mosloy", + "scheduled_service": "no", + "local_code": "LF0223" + }, + { + "id": "338100", + "ident": "FR-0433", + "type": "small_airport", + "name": "Base ULM de Ployart", + "latitude_deg": "49.50491", + "longitude_deg": "3.739729", + "elevation_ft": "580", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Ployart-et-Vaurseine", + "scheduled_service": "no", + "local_code": "LF0225" + }, + { + "id": "338103", + "ident": "FR-0434", + "type": "small_airport", + "name": "Aérodrome de Brochot", + "latitude_deg": "48.976587", + "longitude_deg": "3.373087", + "elevation_ft": "574", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Chézy-sur-Marne", + "scheduled_service": "no", + "local_code": "LF0226" + }, + { + "id": "339741", + "ident": "FR-0435", + "type": "small_airport", + "name": "Aérodrome privé de Cesseville Ferme des Moulins", + "latitude_deg": "49.17793", + "longitude_deg": "0.9953", + "elevation_ft": "485", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "scheduled_service": "no", + "local_code": "LF2752", + "home_link": "http://fermedesmoulins.pagesperso-orange.fr" + }, + { + "id": "339742", + "ident": "FR-0436", + "type": "small_airport", + "name": "Base ULM de Val de Reuil", + "latitude_deg": "49.28184", + "longitude_deg": "1.23177", + "elevation_ft": "33", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "scheduled_service": "no", + "local_code": "LF2753", + "home_link": "http://www.calhn.free.fr" + }, + { + "id": "339743", + "ident": "FR-0437", + "type": "small_airport", + "name": "Base ULM Les Noyers", + "latitude_deg": "49.25944", + "longitude_deg": "1.65973", + "elevation_ft": "328", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "scheduled_service": "no", + "local_code": "LF2751" + }, + { + "id": "339744", + "ident": "FR-0438", + "type": "small_airport", + "name": "Champrond le Petit Bois Landry base ULM", + "latitude_deg": "48.39361", + "longitude_deg": "1.05753", + "elevation_ft": "853", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "scheduled_service": "no", + "local_code": "LF2822" + }, + { + "id": "339747", + "ident": "FR-0439", + "type": "small_airport", + "name": "Base ULM de Sury en Vaux", + "latitude_deg": "47.38084", + "longitude_deg": "2.78308", + "elevation_ft": "1000", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Sury en Vaux", + "scheduled_service": "no", + "local_code": "LF1826", + "home_link": "http://aeroplumsancerrois.wixsite.com/ulm-sancerre" + }, + { + "id": "339748", + "ident": "FR-0440", + "type": "small_airport", + "name": "Base ULM de Saint Secondin", + "latitude_deg": "46.34685", + "longitude_deg": "0.51751", + "elevation_ft": "443", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "local_code": "LF8626", + "home_link": "https://www.guynemairulm.com" + }, + { + "id": "339749", + "ident": "FR-0441", + "type": "small_airport", + "name": "Base ULM de Frossay", + "latitude_deg": "47.23817", + "longitude_deg": "-1.87807", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "scheduled_service": "no", + "local_code": "LF4451", + "home_link": "http://www.randkar.fr" + }, + { + "id": "339750", + "ident": "FR-0442", + "type": "small_airport", + "name": "Base ULM Grange Dieu Levroux", + "latitude_deg": "46.95981", + "longitude_deg": "1.65979", + "elevation_ft": "540", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Levroux", + "scheduled_service": "no", + "local_code": "LF3624", + "home_link": "http://aviation.grangedieu.com" + }, + { + "id": "339751", + "ident": "FR-0443", + "type": "small_airport", + "name": "Base ULM de Beaulieu-sur-Loire", + "latitude_deg": "47.55844", + "longitude_deg": "2.8242", + "elevation_ft": "443", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "scheduled_service": "no", + "local_code": "LF4554", + "home_link": "http://basedebeaulieu.com/index.php/fr/" + }, + { + "id": "339761", + "ident": "FR-0444", + "type": "small_airport", + "name": "Base ULM de Courseulles sur mer", + "latitude_deg": "49.314", + "longitude_deg": "-0.45317", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Courseulles", + "scheduled_service": "no", + "local_code": "LF1451" + }, + { + "id": "350576", + "ident": "FR-0445", + "type": "small_airport", + "name": "Altiport du Bez", + "latitude_deg": "44.63415", + "longitude_deg": "4.046499", + "elevation_ft": "4320", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Le Bez", + "scheduled_service": "no", + "local_code": "LF0725" + }, + { + "id": "339763", + "ident": "FR-0446", + "type": "small_airport", + "name": "Base ULM de Plouarzel", + "latitude_deg": "48.42257", + "longitude_deg": "-4.69713", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "scheduled_service": "no", + "local_code": "LF2921" + }, + { + "id": "339764", + "ident": "FR-0447", + "type": "small_airport", + "name": "Base ULM de Ploballanec", + "latitude_deg": "47.81841", + "longitude_deg": "-4.24896", + "elevation_ft": "49", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "scheduled_service": "no", + "local_code": "LF2923" + }, + { + "id": "339766", + "ident": "FR-0448", + "type": "small_airport", + "name": "Base ULM Le Pommier", + "latitude_deg": "46.19701", + "longitude_deg": "1.45252", + "elevation_ft": "1140", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "La Souterraine", + "scheduled_service": "no", + "local_code": "LF2351" + }, + { + "id": "339784", + "ident": "FR-0449", + "type": "small_airport", + "name": "Base ULM de St Benoit sur Loire", + "latitude_deg": "47.79157", + "longitude_deg": "2.33751", + "elevation_ft": "367", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "scheduled_service": "no", + "local_code": "LF4552", + "home_link": "http://www.ulm-club-du-val-de-loire.fr/" + }, + { + "id": "339785", + "ident": "FR-0450", + "type": "small_airport", + "name": "Base ULM La Collancelle", + "latitude_deg": "47.19121", + "longitude_deg": "3.644", + "elevation_ft": "985", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "local_code": "LF5852" + }, + { + "id": "339786", + "ident": "FR-0451", + "type": "small_airport", + "name": "Aerodrome de Fougères-sur-Bièvre", + "latitude_deg": "47.45769", + "longitude_deg": "1.36382", + "elevation_ft": "335", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "scheduled_service": "no", + "local_code": "LF4128" + }, + { + "id": "339787", + "ident": "FR-0452", + "type": "small_airport", + "name": "Aérodrome privé Le Quilloux", + "latitude_deg": "47.59963", + "longitude_deg": "-1.9143", + "elevation_ft": "120", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Pléssé", + "scheduled_service": "no", + "local_code": "LF4454", + "home_link": "http://lequilloux.monsite-orange.fr" + }, + { + "id": "339788", + "ident": "FR-0453", + "type": "small_airport", + "name": "Base ULM de Flavacourt", + "latitude_deg": "49.35105", + "longitude_deg": "1.81304", + "elevation_ft": "456", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "scheduled_service": "no", + "local_code": "LF6026", + "home_link": "http://www.gite-de-la-loge.com" + }, + { + "id": "340045", + "ident": "FR-0454", + "type": "small_airport", + "name": "Base ULM de Arbis", + "latitude_deg": "44.68066", + "longitude_deg": "-0.25683", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Cadillac", + "scheduled_service": "no", + "local_code": "LF3352", + "home_link": "http://www.ulm-aquitaine.com/" + }, + { + "id": "340046", + "ident": "FR-0455", + "type": "small_airport", + "name": "Base ULM de Saint Pierre de Bat", + "latitude_deg": "44.66716", + "longitude_deg": "-0.21962", + "elevation_ft": "158", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Cadillac", + "scheduled_service": "no", + "local_code": "LF3322" + }, + { + "id": "340067", + "ident": "FR-0456", + "type": "small_airport", + "name": "Siersthal Airstrip", + "latitude_deg": "49.05275", + "longitude_deg": "7.36527", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no" + }, + { + "id": "340400", + "ident": "FR-0457", + "type": "heliport", + "name": "Casa del Mare Helipad", + "latitude_deg": "43.760464", + "longitude_deg": "7.460265", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Roquebrune-Cap-Martin", + "scheduled_service": "no" + }, + { + "id": "340401", + "ident": "FR-0458", + "type": "heliport", + "name": "Avenue Impératrice Eugénie Heliport", + "latitude_deg": "43.755492", + "longitude_deg": "7.469818", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Roquebrune-Cap-Martin", + "scheduled_service": "no" + }, + { + "id": "340402", + "ident": "FR-0459", + "type": "heliport", + "name": "Avenue Douine Heliport", + "latitude_deg": "43.750243", + "longitude_deg": "7.480216", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Roquebrune-Cap-Martin", + "scheduled_service": "no" + }, + { + "id": "340427", + "ident": "FR-0460", + "type": "heliport", + "name": "Le Palais Rescue Center Heliport", + "latitude_deg": "47.341907", + "longitude_deg": "-3.173543", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Le Palais", + "scheduled_service": "no", + "keywords": "Héliport du Centre de Secours Le Palais" + }, + { + "id": "340428", + "ident": "FR-0461", + "type": "heliport", + "name": "Glénan Heliport", + "latitude_deg": "47.723504", + "longitude_deg": "-4.003029", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Fouesnant", + "scheduled_service": "no" + }, + { + "id": "340429", + "ident": "FR-0462", + "type": "heliport", + "name": "Île-de-Sein Heliport", + "latitude_deg": "48.035473", + "longitude_deg": "-4.854028", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Île-de-Sein", + "scheduled_service": "no" + }, + { + "id": "340430", + "ident": "FR-0463", + "type": "heliport", + "name": "Île-Molène Heliport", + "latitude_deg": "48.399964", + "longitude_deg": "-4.959996", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Île-Molène", + "scheduled_service": "no" + }, + { + "id": "340431", + "ident": "FR-0464", + "type": "heliport", + "name": "Chausey Heliport", + "latitude_deg": "48.870166", + "longitude_deg": "-1.822713", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Granville", + "scheduled_service": "no" + }, + { + "id": "342295", + "ident": "FR-0465", + "type": "small_airport", + "name": "Base ULM Neuflieux", + "latitude_deg": "49.611111", + "longitude_deg": "3.148611", + "elevation_ft": "195", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Neuflieux", + "scheduled_service": "no", + "local_code": "LF0253" + }, + { + "id": "342298", + "ident": "FR-0466", + "type": "small_airport", + "name": "Base ULM de Corbeny", + "latitude_deg": "49.457382", + "longitude_deg": "3.854544", + "elevation_ft": "230", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Corbeny", + "scheduled_service": "no", + "local_code": "LF0256" + }, + { + "id": "342300", + "ident": "FR-0467", + "type": "small_airport", + "name": "Base ULM de Taillefontaine", + "latitude_deg": "49.307868", + "longitude_deg": "3.06599", + "elevation_ft": "475", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Taillefontaine", + "scheduled_service": "no", + "local_code": "LF0257" + }, + { + "id": "342315", + "ident": "FR-0468", + "type": "small_airport", + "name": "Altisurface du Glacier du Passon \"du haut\"", + "latitude_deg": "45.98044", + "longitude_deg": "6.979303", + "elevation_ft": "9750", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no" + }, + { + "id": "342321", + "ident": "FR-0469", + "type": "small_airport", + "name": "Club ULM de Kogenheim", + "latitude_deg": "48.322866", + "longitude_deg": "7.535108", + "elevation_ft": "528", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-U-A", + "municipality": "Kogenheim", + "scheduled_service": "no", + "local_code": "LF6715" + }, + { + "id": "342323", + "ident": "FR-0470", + "type": "small_airport", + "name": "Aérodrome d'Albé - Val de Villé", + "latitude_deg": "48.349158", + "longitude_deg": "7.330171", + "elevation_ft": "1247", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Albé", + "scheduled_service": "no", + "local_code": "LF6721" + }, + { + "id": "342325", + "ident": "FR-0471", + "type": "small_airport", + "name": "Base ULM de Salmbach", + "latitude_deg": "48.967949", + "longitude_deg": "8.070563", + "elevation_ft": "508", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Salmbach", + "scheduled_service": "no", + "local_code": "LF6723" + }, + { + "id": "342326", + "ident": "FR-0472", + "type": "small_airport", + "name": "Base ULM de Wissembourg", + "latitude_deg": "48.9925", + "longitude_deg": "7.975833", + "elevation_ft": "574", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Wissembour", + "scheduled_service": "no", + "local_code": "LF6724" + }, + { + "id": "342327", + "ident": "FR-0473", + "type": "small_airport", + "name": "Base ULM de Batzendorf", + "latitude_deg": "48.803016", + "longitude_deg": "7.726527", + "elevation_ft": "560", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Batzendorf", + "scheduled_service": "no", + "local_code": "LF6751" + }, + { + "id": "342519", + "ident": "FR-0474", + "type": "small_airport", + "name": "Aérodrome de l'Emonière", + "latitude_deg": "47.05997", + "longitude_deg": "-1.35325", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "scheduled_service": "no" + }, + { + "id": "342525", + "ident": "FR-0475", + "type": "small_airport", + "name": "Aérodrome d'Évaux", + "latitude_deg": "46.168657", + "longitude_deg": "2.432184", + "elevation_ft": "1512", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Évaux-les-Bains", + "scheduled_service": "no", + "local_code": "LF2321" + }, + { + "id": "342646", + "ident": "FR-0476", + "type": "closed", + "name": "Ancien Aérodrome de Soustons", + "latitude_deg": "43.80543", + "longitude_deg": "-1.25603", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Léon", + "scheduled_service": "no" + }, + { + "id": "342658", + "ident": "FR-0477", + "type": "small_airport", + "name": "Base ULM Vol d'oiseau", + "latitude_deg": "45.690818", + "longitude_deg": "-1.005464", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no" + }, + { + "id": "343347", + "ident": "FR-0478", + "type": "small_airport", + "name": "Aérodrome de Cossé le Vivien", + "latitude_deg": "47.97263", + "longitude_deg": "-0.91864", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "scheduled_service": "no" + }, + { + "id": "345349", + "ident": "FR-0479", + "type": "small_airport", + "name": "Base ULM de Joigny", + "latitude_deg": "47.16895", + "longitude_deg": "2.75894", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "scheduled_service": "no" + }, + { + "id": "346267", + "ident": "FR-0480", + "type": "small_airport", + "name": "Cizay-la-Madeleine UL", + "latitude_deg": "47.17962", + "longitude_deg": "-0.15915", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "scheduled_service": "no" + }, + { + "id": "346433", + "ident": "FR-0481", + "type": "small_airport", + "name": "Piste privée de La Cornélie", + "latitude_deg": "46.84447", + "longitude_deg": "-1.77088", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "scheduled_service": "no" + }, + { + "id": "347477", + "ident": "FR-0482", + "type": "heliport", + "name": "Villa Salmanazar Helipad", + "latitude_deg": "43.20087", + "longitude_deg": "6.6593", + "elevation_ft": "331", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Ramatuelle", + "scheduled_service": "no" + }, + { + "id": "347602", + "ident": "FR-0483", + "type": "closed", + "name": "Villard Notre Dame", + "latitude_deg": "45.018056", + "longitude_deg": "6.037778", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-U-A", + "scheduled_service": "no", + "local_code": "LF3829" + }, + { + "id": "347603", + "ident": "FR-0484", + "type": "closed", + "name": "Nossage Le Priora", + "latitude_deg": "44.311944", + "longitude_deg": "5.744167", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-U-A", + "scheduled_service": "no", + "local_code": "LF0521" + }, + { + "id": "347604", + "ident": "FR-0485", + "type": "small_airport", + "name": "Saint Martin de Castillon", + "latitude_deg": "43.85309", + "longitude_deg": "5.545446", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-U-A", + "scheduled_service": "no", + "local_code": "LF8421" + }, + { + "id": "347605", + "ident": "FR-0486", + "type": "closed", + "name": "Lac Fourchu", + "latitude_deg": "45.058056", + "longitude_deg": "5.933056", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-U-A", + "scheduled_service": "no", + "local_code": "LF3827" + }, + { + "id": "348515", + "ident": "FR-0487", + "type": "small_airport", + "name": "Altisurface de Banon", + "latitude_deg": "44.072222", + "longitude_deg": "5.639166", + "elevation_ft": "3723", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Banon", + "scheduled_service": "no", + "local_code": "LF0456", + "home_link": "http://www.cabane-haute-provence.com" + }, + { + "id": "348581", + "ident": "FR-0488", + "type": "small_airport", + "name": "Chélan", + "latitude_deg": "43.341597", + "longitude_deg": "0.530219", + "elevation_ft": "865", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Chélan", + "scheduled_service": "no", + "local_code": "LF3261" + }, + { + "id": "349121", + "ident": "FR-0489", + "type": "small_airport", + "name": "Chaillé-les-Marais Private Airstrip", + "latitude_deg": "46.40527", + "longitude_deg": "-1.03049", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "scheduled_service": "no" + }, + { + "id": "350584", + "ident": "FR-0490", + "type": "small_airport", + "name": "Base ULM Avaux - Les Bourdons", + "latitude_deg": "49.480697", + "longitude_deg": "4.074769", + "elevation_ft": "374", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Avaux", + "scheduled_service": "no", + "local_code": "LF0851" + }, + { + "id": "350586", + "ident": "FR-0491", + "type": "small_airport", + "name": "Base ULM de Régat", + "latitude_deg": "42.98382", + "longitude_deg": "1.894069", + "elevation_ft": "1341", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Régat", + "scheduled_service": "no", + "local_code": "LF0928" + }, + { + "id": "354000", + "ident": "FR-0492", + "type": "small_airport", + "name": "Base ULM de Treigny", + "latitude_deg": "47.550607", + "longitude_deg": "3.196549", + "elevation_ft": "918", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Treigny", + "scheduled_service": "no", + "local_code": "LF8929", + "home_link": "https://www.facebook.com/ULMtreigny89/" + }, + { + "id": "354009", + "ident": "FR-0493", + "type": "small_airport", + "name": "Base ULM de Perreux", + "latitude_deg": "47.874976", + "longitude_deg": "3.135556", + "elevation_ft": "610", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Perreux", + "scheduled_service": "no", + "local_code": "LF8928" + }, + { + "id": "354018", + "ident": "FR-0494", + "type": "small_airport", + "name": "Base ULM de Genevrelle à Maisse", + "latitude_deg": "48.387512", + "longitude_deg": "2.349953", + "elevation_ft": "420", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Maisse", + "scheduled_service": "no", + "local_code": "LF9151" + }, + { + "id": "354020", + "ident": "FR-0495", + "type": "small_airport", + "name": "Base Paramoteurs de Boigny-Méréville", + "latitude_deg": "48.329414", + "longitude_deg": "2.088829", + "elevation_ft": "436", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Méréville", + "scheduled_service": "no", + "local_code": "LF9152" + }, + { + "id": "354021", + "ident": "FR-0496", + "type": "small_airport", + "name": "Base Paramoteurs d' Avernes", + "latitude_deg": "49.10568", + "longitude_deg": "1.87907", + "elevation_ft": "456", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-U-A", + "municipality": "Avernes", + "scheduled_service": "no", + "local_code": "LF9551" + }, + { + "id": "354023", + "ident": "FR-0497", + "type": "closed", + "name": "Base ULM de La Grosse Ferme Florimont", + "latitude_deg": "47.551216", + "longitude_deg": "7.057021", + "elevation_ft": "1279", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Florimont", + "scheduled_service": "no", + "local_code": "LF9021" + }, + { + "id": "354052", + "ident": "FR-0498", + "type": "heliport", + "name": "La Fullie", + "latitude_deg": "45.63665", + "longitude_deg": "6.13621", + "elevation_ft": "4573", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "ECOLE", + "scheduled_service": "no" + }, + { + "id": "355191", + "ident": "FR-0499", + "type": "small_airport", + "name": "Les Ailes d'Eure et Loir", + "latitude_deg": "48.59244", + "longitude_deg": "1.53759", + "elevation_ft": "480", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Néron", + "scheduled_service": "no", + "local_code": "LF2834" + }, + { + "id": "355195", + "ident": "FR-0500", + "type": "small_airport", + "name": "Écrosnes Ultralightport", + "latitude_deg": "48.561187", + "longitude_deg": "1.730196", + "elevation_ft": "520", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Écrosnes", + "scheduled_service": "no", + "local_code": "LF2830", + "keywords": "Base ULM d'Écrosnes" + }, + { + "id": "355202", + "ident": "FR-0501", + "type": "small_airport", + "name": "Base ULM du Le Gault-Saint-Denis", + "latitude_deg": "48.218818", + "longitude_deg": "1.496185", + "elevation_ft": "446", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Le Gault-Saint-Denis", + "scheduled_service": "no", + "local_code": "LF2853" + }, + { + "id": "356274", + "ident": "FR-0502", + "type": "small_airport", + "name": "Zoufftgen Airfield", + "latitude_deg": "49.449166", + "longitude_deg": "6.125555", + "elevation_ft": "750", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Zoufftgen", + "scheduled_service": "no", + "local_code": "LF5755", + "home_link": "https://aeroplume.lu/" + }, + { + "id": "356278", + "ident": "FR-0503", + "type": "small_airport", + "name": "MOUY", + "latitude_deg": "49.3146", + "longitude_deg": "2.30019", + "elevation_ft": "371", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "scheduled_service": "no", + "local_code": "LF6051" + }, + { + "id": "429762", + "ident": "FR-0504", + "type": "small_airport", + "name": "Base ULM de La Trétoire", + "latitude_deg": "48.86822", + "longitude_deg": "3.24902", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "scheduled_service": "no" + }, + { + "id": "429767", + "ident": "FR-0505", + "type": "heliport", + "name": "Le Plantis Heliport", + "latitude_deg": "48.602347", + "longitude_deg": "0.391484", + "elevation_ft": "600", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Le Plantis", + "scheduled_service": "no", + "local_code": "LF6154" + }, + { + "id": "429770", + "ident": "FR-0506", + "type": "small_airport", + "name": "Chevry-Cossigny Paramotor Field", + "latitude_deg": "48.708408", + "longitude_deg": "2.645881", + "elevation_ft": "328", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Chevry-Cossigny", + "scheduled_service": "no", + "local_code": "LF7758", + "keywords": "Lfvz" + }, + { + "id": "429985", + "ident": "FR-0507", + "type": "small_airport", + "name": "Boulogne-sur-Mer - Alprech Aerodrome", + "latitude_deg": "50.69512", + "longitude_deg": "1.56871", + "elevation_ft": "187", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Le Portel", + "scheduled_service": "no" + }, + { + "id": "430487", + "ident": "FR-0508", + "type": "heliport", + "name": "Ter Clinic Heliport", + "latitude_deg": "47.73604", + "longitude_deg": "-3.39855", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Ploemeur", + "scheduled_service": "no" + }, + { + "id": "35155", + "ident": "FR-JCA", + "type": "heliport", + "name": "Croisette Heliport", + "latitude_deg": "43.5359992980957", + "longitude_deg": "7.037360191345215", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Cannes", + "scheduled_service": "yes", + "iata_code": "JCA", + "keywords": "Palm Beach" + }, + { + "id": "2990", + "ident": "FSAL", + "type": "small_airport", + "name": "Alphonse Airport", + "latitude_deg": "-7.00478", + "longitude_deg": "52.7262", + "elevation_ft": "10", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-15", + "municipality": "Alphonse Island", + "scheduled_service": "yes", + "gps_code": "FSAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alphonse_Airport" + }, + { + "id": "2991", + "ident": "FSAS", + "type": "small_airport", + "name": "Assumption Island Airport", + "latitude_deg": "-9.7422199993", + "longitude_deg": "46.506802", + "elevation_ft": "10", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-U-A", + "municipality": "Assumption Island", + "scheduled_service": "no", + "gps_code": "FSAS", + "keywords": "assumption airport, assumption island" + }, + { + "id": "31205", + "ident": "FSDA", + "type": "small_airport", + "name": "Darros Airport", + "latitude_deg": "-5.417354", + "longitude_deg": "53.295536", + "elevation_ft": "10", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-15", + "municipality": "Darros Island", + "scheduled_service": "no", + "gps_code": "FSDA", + "wikipedia_link": "https://en.wikipedia.org/wiki/D'Arros_Island_Airport" + }, + { + "id": "30886", + "ident": "FSDR", + "type": "small_airport", + "name": "Desroches Airport", + "latitude_deg": "-5.6967", + "longitude_deg": "53.6558", + "elevation_ft": "10", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-15", + "municipality": "Desroches Island", + "scheduled_service": "no", + "gps_code": "FSDR", + "iata_code": "DES", + "wikipedia_link": "https://en.wikipedia.org/wiki/Desroches_Airport" + }, + { + "id": "2992", + "ident": "FSFA", + "type": "small_airport", + "name": "Farquhar Airport", + "latitude_deg": "-10.1096", + "longitude_deg": "51.176102", + "elevation_ft": "10", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-15", + "municipality": "Farquhar Group", + "scheduled_service": "no", + "gps_code": "FSFA" + }, + { + "id": "2993", + "ident": "FSIA", + "type": "large_airport", + "name": "Seychelles International Airport", + "latitude_deg": "-4.67434", + "longitude_deg": "55.521801", + "elevation_ft": "10", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-20", + "municipality": "Mahe Island", + "scheduled_service": "yes", + "gps_code": "FSIA", + "iata_code": "SEZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Seychelles_International_Airport" + }, + { + "id": "312943", + "ident": "FSL", + "type": "small_airport", + "name": "Fossil Downs Airport", + "latitude_deg": "-18.1321", + "longitude_deg": "125.7873", + "elevation_ft": "414", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Fossil Downs Station", + "scheduled_service": "no", + "iata_code": "FSL" + }, + { + "id": "31206", + "ident": "FSMA", + "type": "small_airport", + "name": "Marie-Louise Airport", + "latitude_deg": "-6.17416", + "longitude_deg": "53.144402", + "elevation_ft": "9", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-15", + "municipality": "Marie-Louise Island", + "scheduled_service": "no", + "gps_code": "FSMA" + }, + { + "id": "312904", + "ident": "FSN", + "type": "closed", + "name": "Haley Army Airfield", + "latitude_deg": "42.221", + "longitude_deg": "-87.817", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Fort Sheridan", + "scheduled_service": "no", + "iata_code": "FSN" + }, + { + "id": "31207", + "ident": "FSPL", + "type": "small_airport", + "name": "Platte Airport", + "latitude_deg": "-5.85916", + "longitude_deg": "55.383301", + "elevation_ft": "9", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-15", + "municipality": "Platte Island", + "scheduled_service": "no", + "gps_code": "FSPL" + }, + { + "id": "2994", + "ident": "FSPP", + "type": "medium_airport", + "name": "Praslin Airport", + "latitude_deg": "-4.31929", + "longitude_deg": "55.691399", + "elevation_ft": "10", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-14", + "municipality": "Grand Anse", + "scheduled_service": "yes", + "gps_code": "FSPP", + "iata_code": "PRI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Praslin_Island_Airport" + }, + { + "id": "324057", + "ident": "FSSA", + "type": "small_airport", + "name": "Astove Island Airport", + "latitude_deg": "-10.061373", + "longitude_deg": "47.749765", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-U-A", + "municipality": "Astove Island", + "scheduled_service": "no", + "gps_code": "FSSA" + }, + { + "id": "30691", + "ident": "FSSB", + "type": "small_airport", + "name": "Bird Island Airport", + "latitude_deg": "-3.72472", + "longitude_deg": "55.205299", + "elevation_ft": "6", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-15", + "municipality": "Bird Island", + "scheduled_service": "no", + "gps_code": "FSSB", + "iata_code": "BDI" + }, + { + "id": "2995", + "ident": "FSSC", + "type": "small_airport", + "name": "Coetivy Airport", + "latitude_deg": "-7.13457", + "longitude_deg": "56.278198", + "elevation_ft": "10", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-15", + "municipality": "Coetivy Island", + "scheduled_service": "no", + "gps_code": "FSSC" + }, + { + "id": "30884", + "ident": "FSSD", + "type": "small_airport", + "name": "Denis Island Airport", + "latitude_deg": "-3.80222", + "longitude_deg": "55.666901", + "elevation_ft": "10", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-15", + "municipality": "Denis Island", + "scheduled_service": "no", + "gps_code": "FSSD", + "iata_code": "DEI" + }, + { + "id": "31204", + "ident": "FSSF", + "type": "small_airport", + "name": "Frégate Island Airport", + "latitude_deg": "-4.582785", + "longitude_deg": "55.944928", + "elevation_ft": "610", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-15", + "municipality": "Frégate Island", + "scheduled_service": "no", + "gps_code": "FSSF", + "iata_code": "FRK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fr%C3%A9gate_Island_Airport" + }, + { + "id": "31208", + "ident": "FSSR", + "type": "small_airport", + "name": "Remire Island Airport", + "latitude_deg": "-5.11722", + "longitude_deg": "53.312199", + "elevation_ft": "9", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-15", + "municipality": "Remire Island", + "scheduled_service": "no", + "gps_code": "FSSR" + }, + { + "id": "32383", + "ident": "FTTA", + "type": "small_airport", + "name": "Sarh Airport", + "latitude_deg": "9.14444", + "longitude_deg": "18.374399", + "elevation_ft": "1198", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-MC", + "municipality": "Sarh", + "scheduled_service": "yes", + "gps_code": "FTTA", + "iata_code": "SRH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sarh_Airport" + }, + { + "id": "32099", + "ident": "FTTB", + "type": "small_airport", + "name": "Bongor Airport", + "latitude_deg": "10.288345", + "longitude_deg": "15.379561", + "elevation_ft": "1076", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-ME", + "municipality": "Bongor", + "scheduled_service": "no", + "gps_code": "FTTB", + "iata_code": "OGR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bongor_Airport" + }, + { + "id": "2996", + "ident": "FTTC", + "type": "medium_airport", + "name": "Abeche Airport", + "latitude_deg": "13.847", + "longitude_deg": "20.844299", + "elevation_ft": "1788", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-OD", + "municipality": "Abeche", + "scheduled_service": "yes", + "gps_code": "FTTC", + "iata_code": "AEH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ab%C3%A9ch%C3%A9_Airport" + }, + { + "id": "2997", + "ident": "FTTD", + "type": "medium_airport", + "name": "Moundou Airport", + "latitude_deg": "8.62441", + "longitude_deg": "16.0714", + "elevation_ft": "1407", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-LO", + "municipality": "Moundou", + "scheduled_service": "yes", + "gps_code": "FTTD", + "iata_code": "MQQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moundou_Airport" + }, + { + "id": "31210", + "ident": "FTTE", + "type": "small_airport", + "name": "Biltine Airport", + "latitude_deg": "14.551908", + "longitude_deg": "20.841834", + "elevation_ft": "1680", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-WF", + "municipality": "Biltine", + "scheduled_service": "no", + "gps_code": "FTTE" + }, + { + "id": "31211", + "ident": "FTTF", + "type": "small_airport", + "name": "Fada Airport", + "latitude_deg": "17.19126", + "longitude_deg": "21.50353", + "elevation_ft": "1788", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-EO", + "municipality": "Fada", + "scheduled_service": "no", + "gps_code": "FTTF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fada_Airport" + }, + { + "id": "31212", + "ident": "FTTG", + "type": "small_airport", + "name": "Goz-Beida Airport", + "latitude_deg": "12.210946", + "longitude_deg": "21.458472", + "elevation_ft": "1765", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-SI", + "municipality": "Goz-Beida", + "scheduled_service": "no", + "gps_code": "FTTG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Goz_Be%C3%AFda_Airport" + }, + { + "id": "31855", + "ident": "FTTH", + "type": "small_airport", + "name": "Lai Airport", + "latitude_deg": "9.3979", + "longitude_deg": "16.3125", + "elevation_ft": "1171", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-TA", + "municipality": "Lai", + "scheduled_service": "no", + "gps_code": "FTTH", + "iata_code": "LTC", + "wikipedia_link": "https://en.wikipedia.org/wiki/La%C3%AF_Airport" + }, + { + "id": "30658", + "ident": "FTTI", + "type": "small_airport", + "name": "Ati Airport", + "latitude_deg": "13.239778", + "longitude_deg": "18.315893", + "elevation_ft": "1089", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-BA", + "municipality": "Ati", + "scheduled_service": "no", + "gps_code": "FTTI", + "iata_code": "ATV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ati_Airport" + }, + { + "id": "2998", + "ident": "FTTJ", + "type": "large_airport", + "name": "N'Djamena International Airport", + "latitude_deg": "12.1337", + "longitude_deg": "15.034", + "elevation_ft": "968", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-ND", + "municipality": "N'Djamena", + "scheduled_service": "yes", + "gps_code": "FTTJ", + "iata_code": "NDJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/N'Djamena_International_Airport", + "keywords": "Ndjamena Hassan Djamous" + }, + { + "id": "30765", + "ident": "FTTK", + "type": "small_airport", + "name": "Bokoro Airport", + "latitude_deg": "12.385511", + "longitude_deg": "17.070989", + "elevation_ft": "984", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-HL", + "municipality": "Bokoro", + "scheduled_service": "no", + "gps_code": "FTTK", + "iata_code": "BKR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bokoro_Airport" + }, + { + "id": "32130", + "ident": "FTTL", + "type": "small_airport", + "name": "Bol-Berim Airport", + "latitude_deg": "13.443574", + "longitude_deg": "14.739254", + "elevation_ft": "955", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-LC", + "municipality": "Bol", + "scheduled_service": "no", + "gps_code": "FTTL", + "iata_code": "OTC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bol-B%C3%A9rim_Airport" + }, + { + "id": "31975", + "ident": "FTTM", + "type": "small_airport", + "name": "Mongo Airport", + "latitude_deg": "12.17048", + "longitude_deg": "18.675642", + "elevation_ft": "1414", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-GR", + "municipality": "Mongo", + "scheduled_service": "no", + "gps_code": "FTTM", + "iata_code": "MVO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mongo_Airport" + }, + { + "id": "30639", + "ident": "FTTN", + "type": "small_airport", + "name": "Am Timan Airport", + "latitude_deg": "11.0340003967", + "longitude_deg": "20.274000167799997", + "elevation_ft": "1420", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-SA", + "municipality": "Am Timan", + "scheduled_service": "no", + "gps_code": "FTTN", + "iata_code": "AMC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Am_Timan_Airport" + }, + { + "id": "32163", + "ident": "FTTP", + "type": "small_airport", + "name": "Pala Airport", + "latitude_deg": "9.378060340881348", + "longitude_deg": "14.925000190734863", + "elevation_ft": "1532", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-MO", + "municipality": "Pala", + "scheduled_service": "no", + "gps_code": "FTTP", + "iata_code": "PLF" + }, + { + "id": "31213", + "ident": "FTTR", + "type": "small_airport", + "name": "Zouar Airport", + "latitude_deg": "20.44813", + "longitude_deg": "16.57185", + "elevation_ft": "2655", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-TI", + "municipality": "Zouar", + "scheduled_service": "no", + "gps_code": "FTTR" + }, + { + "id": "32134", + "ident": "FTTS", + "type": "small_airport", + "name": "Bousso Airport", + "latitude_deg": "10.482999801635742", + "longitude_deg": "16.716999053955078", + "elevation_ft": "1099", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-CB", + "municipality": "Bousso", + "scheduled_service": "no", + "gps_code": "FTTS", + "iata_code": "OUT" + }, + { + "id": "30641", + "ident": "FTTU", + "type": "small_airport", + "name": "Mao Airport", + "latitude_deg": "14.145600318908691", + "longitude_deg": "15.314399719238281", + "elevation_ft": "1072", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-KA", + "municipality": "Mao", + "scheduled_service": "no", + "gps_code": "FTTU", + "iata_code": "AMO" + }, + { + "id": "2999", + "ident": "FTTY", + "type": "medium_airport", + "name": "Faya Largeau Airport", + "latitude_deg": "17.917101", + "longitude_deg": "19.111099", + "elevation_ft": "771", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-BO", + "scheduled_service": "no", + "gps_code": "FTTY", + "iata_code": "FYT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Faya-Largeau_Airport" + }, + { + "id": "31214", + "ident": "FTTZ", + "type": "small_airport", + "name": "Bardai Zougra Airport", + "latitude_deg": "21.448426", + "longitude_deg": "17.053271", + "elevation_ft": "3524", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-TI", + "municipality": "Bardai Zougra", + "scheduled_service": "no", + "gps_code": "FTTZ" + }, + { + "id": "312835", + "ident": "FUB", + "type": "small_airport", + "name": "Fulleborn Airport", + "latitude_deg": "-6.1518", + "longitude_deg": "150.6264", + "elevation_ft": "36", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WBK", + "municipality": "Fulleborn", + "scheduled_service": "no", + "iata_code": "FUB", + "local_code": "FUL" + }, + { + "id": "27232", + "ident": "FV76", + "type": "small_airport", + "name": "Kwekwe East Airport", + "latitude_deg": "-19.010799", + "longitude_deg": "30.0252", + "elevation_ft": "4025", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MI", + "municipality": "Kwekwe", + "scheduled_service": "no", + "gps_code": "FV76", + "local_code": "FV76" + }, + { + "id": "27233", + "ident": "FV77", + "type": "small_airport", + "name": "Mhangura Airport", + "latitude_deg": "-16.910101", + "longitude_deg": "30.2423", + "elevation_ft": "4078", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "scheduled_service": "no", + "gps_code": "FVGM", + "keywords": "FV77, Mangula" + }, + { + "id": "31216", + "ident": "FVAB", + "type": "small_airport", + "name": "Aberdeen Airport", + "latitude_deg": "-18.195092", + "longitude_deg": "32.675326", + "elevation_ft": "4495", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MA", + "municipality": "Aberdeen", + "scheduled_service": "no", + "gps_code": "FVAB" + }, + { + "id": "31217", + "ident": "FVAE", + "type": "small_airport", + "name": "Braebourne Airport", + "latitude_deg": "-16.66699981689453", + "longitude_deg": "31.232999801635742", + "elevation_ft": "3600", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MC", + "municipality": "Braebourne", + "scheduled_service": "no", + "gps_code": "FVAE" + }, + { + "id": "29690", + "ident": "FVBB", + "type": "small_airport", + "name": "Beitbridge Airport", + "latitude_deg": "-22.197617", + "longitude_deg": "30.012774", + "elevation_ft": "1509", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MS", + "municipality": "Beitbridge", + "scheduled_service": "no", + "gps_code": "FVBB" + }, + { + "id": "31218", + "ident": "FVBI", + "type": "small_airport", + "name": "Binga Airport", + "latitude_deg": "-17.647513", + "longitude_deg": "27.316859", + "elevation_ft": "1950", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Binga", + "scheduled_service": "no", + "gps_code": "FVBI" + }, + { + "id": "31219", + "ident": "FVBL", + "type": "small_airport", + "name": "Mabalauta Airport", + "latitude_deg": "-21.91699981689453", + "longitude_deg": "31.466999053955078", + "elevation_ft": "950", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MV", + "municipality": "Mabalauta", + "scheduled_service": "no", + "gps_code": "FVBL" + }, + { + "id": "31220", + "ident": "FVBM", + "type": "small_airport", + "name": "Bumi Hills Airport", + "latitude_deg": "-16.816485", + "longitude_deg": "28.344786", + "elevation_ft": "1650", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Bumi", + "scheduled_service": "no", + "gps_code": "FVBM", + "iata_code": "BZH" + }, + { + "id": "31221", + "ident": "FVBO", + "type": "small_airport", + "name": "Bosbury Airport", + "latitude_deg": "-18.216999053955078", + "longitude_deg": "30.132999420166016", + "elevation_ft": "3940", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Bosbury", + "scheduled_service": "no", + "gps_code": "FVBO" + }, + { + "id": "3000", + "ident": "FVBU", + "type": "medium_airport", + "name": "Joshua Mqabuko Nkomo International Airport", + "latitude_deg": "-20.017401", + "longitude_deg": "28.617901", + "elevation_ft": "4359", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-BU", + "municipality": "Bulawayo", + "scheduled_service": "yes", + "gps_code": "FVJN", + "iata_code": "BUQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Joshua_Mqabuko_Nkomo_International_Airport" + }, + { + "id": "31222", + "ident": "FVCC", + "type": "small_airport", + "name": "C.C. Strip", + "latitude_deg": "-17.433000564575195", + "longitude_deg": "30.299999237060547", + "elevation_ft": "4050", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "C.C. Strip", + "scheduled_service": "no", + "gps_code": "FVCC" + }, + { + "id": "31223", + "ident": "FVCD", + "type": "small_airport", + "name": "Chirundu Airport", + "latitude_deg": "-15.998082", + "longitude_deg": "28.899056", + "elevation_ft": "1310", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Chirundu", + "scheduled_service": "no", + "gps_code": "FVCD" + }, + { + "id": "31224", + "ident": "FVCE", + "type": "small_airport", + "name": "Celina Airport", + "latitude_deg": "-17.517000198364258", + "longitude_deg": "30.850000381469727", + "elevation_ft": "4058", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MC", + "municipality": "Celina", + "scheduled_service": "no", + "gps_code": "FVCE" + }, + { + "id": "30828", + "ident": "FVCH", + "type": "small_airport", + "name": "Chipinge Airport", + "latitude_deg": "-20.20669937133789", + "longitude_deg": "32.628299713134766", + "elevation_ft": "3720", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MA", + "municipality": "Chipinge", + "scheduled_service": "no", + "gps_code": "FVCH", + "iata_code": "CHJ" + }, + { + "id": "31225", + "ident": "FVCM", + "type": "small_airport", + "name": "Cam+Motor Airport", + "latitude_deg": "-18.299999", + "longitude_deg": "29.979444", + "elevation_ft": "3720", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Cam+Motor", + "scheduled_service": "no", + "gps_code": "FVCM" + }, + { + "id": "3001", + "ident": "FVCN", + "type": "small_airport", + "name": "Centenary Airport", + "latitude_deg": "-16.734100341796875", + "longitude_deg": "31.121999740600586", + "elevation_ft": "4058", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MC", + "scheduled_service": "no", + "gps_code": "FVCN" + }, + { + "id": "3002", + "ident": "FVCP", + "type": "small_airport", + "name": "Charles Prince Airport", + "latitude_deg": "-17.75160026550293", + "longitude_deg": "30.924699783325195", + "elevation_ft": "4845", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-HA", + "municipality": "Harare", + "scheduled_service": "no", + "gps_code": "FVCP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Charles_Prince_Airport" + }, + { + "id": "31226", + "ident": "FVCR", + "type": "small_airport", + "name": "Chizarira Airport", + "latitude_deg": "-17.683000564575195", + "longitude_deg": "27.899999618530273", + "elevation_ft": "3280", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Chizarira", + "scheduled_service": "no", + "gps_code": "FVCR" + }, + { + "id": "31227", + "ident": "FVCV", + "type": "small_airport", + "name": "Chivu Airport", + "latitude_deg": "-19.033000946044922", + "longitude_deg": "30.899999618530273", + "elevation_ft": "4790", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MI", + "municipality": "Chivu", + "scheduled_service": "no", + "gps_code": "FVCV" + }, + { + "id": "3003", + "ident": "FVCZ", + "type": "medium_airport", + "name": "Buffalo Range Airport", + "latitude_deg": "-21.008101", + "longitude_deg": "31.5786", + "elevation_ft": "1421", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MV", + "municipality": "Chiredzi", + "scheduled_service": "no", + "gps_code": "FVCZ", + "iata_code": "BFO", + "home_link": "https://www.caaz.co.zw/buffalo-range-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buffalo_Range_Airport" + }, + { + "id": "31228", + "ident": "FVDA", + "type": "small_airport", + "name": "Dawsons Airport", + "latitude_deg": "-17.0049", + "longitude_deg": "30.8961", + "elevation_ft": "4762", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MC", + "municipality": "Mvurwi", + "scheduled_service": "no", + "gps_code": "FVDA" + }, + { + "id": "31229", + "ident": "FVDE", + "type": "small_airport", + "name": "Deka Airport", + "latitude_deg": "-18.093208", + "longitude_deg": "26.714038", + "elevation_ft": "1750", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Deka", + "scheduled_service": "no", + "gps_code": "FVDE" + }, + { + "id": "31230", + "ident": "FVDU", + "type": "small_airport", + "name": "Dudley Airport", + "latitude_deg": "-18.283000946044922", + "longitude_deg": "31.482999801635742", + "elevation_ft": "4986", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-ME", + "municipality": "Dudley", + "scheduled_service": "no", + "gps_code": "FVDU" + }, + { + "id": "31231", + "ident": "FVED", + "type": "small_airport", + "name": "Eduan Airport", + "latitude_deg": "-18.767000198364258", + "longitude_deg": "29.783000946044922", + "elevation_ft": "3900", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MI", + "municipality": "Eduan", + "scheduled_service": "no", + "gps_code": "FVED" + }, + { + "id": "3004", + "ident": "FVFA", + "type": "medium_airport", + "name": "Victoria Falls International Airport", + "latitude_deg": "-18.09589958190918", + "longitude_deg": "25.839000701904297", + "elevation_ft": "3490", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Victoria Falls", + "scheduled_service": "yes", + "gps_code": "FVFA", + "iata_code": "VFA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Victoria_Falls_Airport" + }, + { + "id": "31232", + "ident": "FVFG", + "type": "small_airport", + "name": "Fothergill Airport", + "latitude_deg": "-16.704523", + "longitude_deg": "28.660112", + "elevation_ft": "1630", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Fothergill", + "scheduled_service": "no", + "gps_code": "FVFG" + }, + { + "id": "31233", + "ident": "FVFI", + "type": "small_airport", + "name": "Filabusi Airport", + "latitude_deg": "-20.535814", + "longitude_deg": "29.256185", + "elevation_ft": "3525", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MS", + "municipality": "Filabusi", + "scheduled_service": "no", + "gps_code": "FVFI" + }, + { + "id": "317037", + "ident": "FVGB", + "type": "small_airport", + "name": "Gombera Airport", + "latitude_deg": "-16.958341", + "longitude_deg": "30.358828", + "elevation_ft": "3294", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Gombera Ranch", + "scheduled_service": "no", + "gps_code": "FVGB" + }, + { + "id": "31234", + "ident": "FVGD", + "type": "small_airport", + "name": "Gwanda Airport", + "latitude_deg": "-20.899999618530273", + "longitude_deg": "29", + "elevation_ft": "3328", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MS", + "municipality": "Gwanda", + "scheduled_service": "no", + "gps_code": "FVGD" + }, + { + "id": "329803", + "ident": "FVGG", + "type": "small_airport", + "name": "Gachegache Airport", + "latitude_deg": "-16.748077", + "longitude_deg": "28.930312", + "elevation_ft": "1665", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Gache Gache", + "scheduled_service": "no", + "gps_code": "FVGG" + }, + { + "id": "29900", + "ident": "FVGO", + "type": "small_airport", + "name": "Gokwe Airport", + "latitude_deg": "-18.238705", + "longitude_deg": "28.96625", + "elevation_ft": "4199", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MI", + "municipality": "Gokwe", + "scheduled_service": "no", + "gps_code": "FVGO" + }, + { + "id": "30176", + "ident": "FVGR", + "type": "small_airport", + "name": "Grand Reef Airport", + "latitude_deg": "-18.9775", + "longitude_deg": "32.450802", + "elevation_ft": "3333", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MA", + "municipality": "Mutare", + "scheduled_service": "no", + "gps_code": "FVGR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Reef_Airport" + }, + { + "id": "31235", + "ident": "FVGT", + "type": "small_airport", + "name": "Gaths Mine Airport", + "latitude_deg": "-19.982999801635742", + "longitude_deg": "30.5", + "elevation_ft": "3454", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MV", + "municipality": "Gaths Mine", + "scheduled_service": "no", + "gps_code": "FVGT" + }, + { + "id": "31236", + "ident": "FVGW", + "type": "small_airport", + "name": "Gweru Airport", + "latitude_deg": "-19.549362", + "longitude_deg": "29.735388", + "elevation_ft": "4660", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MI", + "municipality": "Gweru", + "scheduled_service": "no", + "gps_code": "FVGW" + }, + { + "id": "3005", + "ident": "FVHA", + "type": "large_airport", + "name": "Robert Gabriel Mugabe International Airport", + "latitude_deg": "-17.931801", + "longitude_deg": "31.0928", + "elevation_ft": "4887", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-HA", + "municipality": "Harare", + "scheduled_service": "yes", + "gps_code": "FVRG", + "iata_code": "HRE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harare_International_Airport", + "keywords": "FVHA,Harare" + }, + { + "id": "31237", + "ident": "FVHP", + "type": "small_airport", + "name": "Home Park Airport", + "latitude_deg": "-18.200000762939453", + "longitude_deg": "31.732999801635742", + "elevation_ft": "5150", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-ME", + "municipality": "Home Park", + "scheduled_service": "no", + "gps_code": "FVHP" + }, + { + "id": "31238", + "ident": "FVHY", + "type": "small_airport", + "name": "Hippo Valley Airport", + "latitude_deg": "-21.049999237060547", + "longitude_deg": "31.66699981689453", + "elevation_ft": "1420", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MV", + "municipality": "Chiredzi", + "scheduled_service": "no", + "gps_code": "FVHY" + }, + { + "id": "31239", + "ident": "FVIN", + "type": "small_airport", + "name": "Induna Airport", + "latitude_deg": "-20.08300018310547", + "longitude_deg": "28.700000762939453", + "elevation_ft": "4489", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Induna", + "scheduled_service": "no", + "gps_code": "FVIN" + }, + { + "id": "317019", + "ident": "FVIP", + "type": "small_airport", + "name": "Impinge Airport", + "latitude_deg": "-16.9071", + "longitude_deg": "30.8003", + "elevation_ft": "4800", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MC", + "municipality": "Impinge Ranch", + "scheduled_service": "no", + "gps_code": "FVIP" + }, + { + "id": "31240", + "ident": "FVIT", + "type": "small_airport", + "name": "Itafa Airport", + "latitude_deg": "-18.299999237060547", + "longitude_deg": "29.882999420166016", + "elevation_ft": "3800", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Itafa", + "scheduled_service": "no", + "gps_code": "FVIT" + }, + { + "id": "3006", + "ident": "FVKB", + "type": "medium_airport", + "name": "Kariba International Airport", + "latitude_deg": "-16.5198", + "longitude_deg": "28.885", + "elevation_ft": "1706", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Kariba", + "scheduled_service": "no", + "gps_code": "FVKB", + "iata_code": "KAB", + "home_link": "https://www.caaz.co.zw/kariba-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kariba_Airport" + }, + { + "id": "31241", + "ident": "FVKK", + "type": "small_airport", + "name": "Kwekwe Airport", + "latitude_deg": "-18.933300018310547", + "longitude_deg": "29.84280014038086", + "elevation_ft": "4000", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MI", + "municipality": "Kwekwe", + "scheduled_service": "no", + "gps_code": "FVKK" + }, + { + "id": "31242", + "ident": "FVKW", + "type": "small_airport", + "name": "Mkwasine Airport", + "latitude_deg": "-20.799999237060547", + "longitude_deg": "31.816999435424805", + "elevation_ft": "1620", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MV", + "municipality": "Mkwasine", + "scheduled_service": "no", + "gps_code": "FVKW" + }, + { + "id": "31243", + "ident": "FVKZ", + "type": "small_airport", + "name": "Kezi Airport", + "latitude_deg": "-20.91699981689453", + "longitude_deg": "28.482999801635742", + "elevation_ft": "3300", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MS", + "municipality": "Kezi", + "scheduled_service": "no", + "gps_code": "FVKZ" + }, + { + "id": "31244", + "ident": "FVLA", + "type": "small_airport", + "name": "Langford Airport", + "latitude_deg": "-17.933000564575195", + "longitude_deg": "30.950000762939453", + "elevation_ft": "4600", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-ME", + "municipality": "Langford", + "scheduled_service": "no", + "gps_code": "FVLA" + }, + { + "id": "31245", + "ident": "FVLG", + "type": "small_airport", + "name": "Longuiel Airport", + "latitude_deg": "-17", + "longitude_deg": "29.632999420166016", + "elevation_ft": "4200", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Longuiel", + "scheduled_service": "no", + "gps_code": "FVLG" + }, + { + "id": "345666", + "ident": "FVLK", + "type": "small_airport", + "name": "Airport of Linkwasha", + "latitude_deg": "-19.1233", + "longitude_deg": "27.2014", + "elevation_ft": "3200", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Linkwasha", + "scheduled_service": "no", + "gps_code": "FVLK" + }, + { + "id": "325143", + "ident": "FVLS", + "type": "small_airport", + "name": "Lonestar Airfield", + "latitude_deg": "-21.061103", + "longitude_deg": "31.889759", + "elevation_ft": "1303", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MV", + "municipality": "Chiredzi", + "scheduled_service": "no", + "gps_code": "FVLS", + "local_code": "FVLS", + "keywords": "Lonestar, Pamushana, Malilangwe, Chiredzi" + }, + { + "id": "31246", + "ident": "FVLU", + "type": "small_airport", + "name": "Lusulu Airport", + "latitude_deg": "-18.08300018310547", + "longitude_deg": "27.867000579833984", + "elevation_ft": "3240", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Lusulu", + "scheduled_service": "no", + "gps_code": "FVLU" + }, + { + "id": "31247", + "ident": "FVMA", + "type": "small_airport", + "name": "Marondera Airport", + "latitude_deg": "-18.183000564575195", + "longitude_deg": "31.466999053955078", + "elevation_ft": "5370", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-ME", + "municipality": "Marondera", + "scheduled_service": "no", + "gps_code": "FVMA" + }, + { + "id": "31248", + "ident": "FVMB", + "type": "small_airport", + "name": "Mashumbi Airport", + "latitude_deg": "-16.16699981689453", + "longitude_deg": "30.566999435424805", + "elevation_ft": "1240", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MC", + "municipality": "Mashumbi", + "scheduled_service": "no", + "gps_code": "FVMB" + }, + { + "id": "325148", + "ident": "FVMC", + "type": "small_airport", + "name": "Hwange Main Camp Airfield", + "latitude_deg": "-18.724765", + "longitude_deg": "26.956472", + "elevation_ft": "3485", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "scheduled_service": "no", + "gps_code": "FVMC", + "keywords": "Hwange, Hwange Main, Hwange Main Camp" + }, + { + "id": "3007", + "ident": "FVMD", + "type": "small_airport", + "name": "Mount Darwin Airport", + "latitude_deg": "-16.76919937133789", + "longitude_deg": "31.559799194335938", + "elevation_ft": "3240", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MC", + "scheduled_service": "no", + "gps_code": "FVMD" + }, + { + "id": "31249", + "ident": "FVMF", + "type": "small_airport", + "name": "Mabikwa Airport", + "latitude_deg": "-18.732999801635742", + "longitude_deg": "27.533000946044922", + "elevation_ft": "3450", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Mabikwa", + "scheduled_service": "no", + "gps_code": "FVMF" + }, + { + "id": "314044", + "ident": "FVMH", + "type": "small_airport", + "name": "Mahenye Airport", + "latitude_deg": "-21.231", + "longitude_deg": "32.3336", + "elevation_ft": "930", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MA", + "municipality": "Gonarezhou National Park", + "scheduled_service": "no", + "gps_code": "FVMH", + "iata_code": "MJW" + }, + { + "id": "31250", + "ident": "FVMK", + "type": "small_airport", + "name": "Mkonono Airport", + "latitude_deg": "-17.716999053955078", + "longitude_deg": "30.41699981689453", + "elevation_ft": "4650", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Mkonono", + "scheduled_service": "no", + "gps_code": "FVMK" + }, + { + "id": "317598", + "ident": "FVML", + "type": "small_airport", + "name": "Mlibizi Airstrip", + "latitude_deg": "-17.9604", + "longitude_deg": "27.1184", + "elevation_ft": "1980", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Mlibizi", + "scheduled_service": "no", + "gps_code": "FVML", + "keywords": "Mibizi" + }, + { + "id": "31251", + "ident": "FVMN", + "type": "small_airport", + "name": "Mana Pools Airport", + "latitude_deg": "-15.768735", + "longitude_deg": "29.385617", + "elevation_ft": "1300", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Hurungwe", + "scheduled_service": "no", + "gps_code": "FVMN" + }, + { + "id": "31252", + "ident": "FVMS", + "type": "small_airport", + "name": "Middle Sabi Airport", + "latitude_deg": "-20.216999053955078", + "longitude_deg": "32.367000579833984", + "elevation_ft": "1510", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MA", + "municipality": "Middle Sabi", + "scheduled_service": "no", + "gps_code": "FVMS" + }, + { + "id": "3008", + "ident": "FVMT", + "type": "medium_airport", + "name": "Mutoko Airport", + "latitude_deg": "-17.431900024414062", + "longitude_deg": "32.18450164794922", + "elevation_ft": "3950", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-ME", + "municipality": "Mutoko", + "scheduled_service": "no", + "gps_code": "FVMT", + "keywords": "Mtoko" + }, + { + "id": "3009", + "ident": "FVMU", + "type": "small_airport", + "name": "Mutare Airport", + "latitude_deg": "-18.997499465942", + "longitude_deg": "32.627201080322", + "elevation_ft": "3410", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MA", + "municipality": "Mutare", + "scheduled_service": "no", + "gps_code": "FVMU", + "iata_code": "UTA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mutare_Airport" + }, + { + "id": "3010", + "ident": "FVMV", + "type": "medium_airport", + "name": "Masvingo International Airport", + "latitude_deg": "-20.055299758911133", + "longitude_deg": "30.859100341796875", + "elevation_ft": "3595", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MV", + "municipality": "Masvingo", + "scheduled_service": "no", + "gps_code": "FVMV", + "iata_code": "MVZ" + }, + { + "id": "31253", + "ident": "FVMW", + "type": "small_airport", + "name": "Murewa Airport", + "latitude_deg": "-17.649999618530273", + "longitude_deg": "31.799999237060547", + "elevation_ft": "4579", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-ME", + "municipality": "Murewa", + "scheduled_service": "no", + "gps_code": "FVMW" + }, + { + "id": "31254", + "ident": "FVNY", + "type": "small_airport", + "name": "Nyanyadzi Airport", + "latitude_deg": "-19.732999801635742", + "longitude_deg": "32.43299865722656", + "elevation_ft": "1850", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MA", + "municipality": "Nyanyadzi", + "scheduled_service": "no", + "gps_code": "FVNY" + }, + { + "id": "3011", + "ident": "FVOT", + "type": "small_airport", + "name": "Kotwa Airport", + "latitude_deg": "-16.984800338745117", + "longitude_deg": "32.672698974609375", + "elevation_ft": "2450", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-ME", + "scheduled_service": "no", + "gps_code": "FVOT" + }, + { + "id": "31255", + "ident": "FVPL", + "type": "small_airport", + "name": "Plumtree Airport", + "latitude_deg": "-20.482999801635742", + "longitude_deg": "27.783000946044922", + "elevation_ft": "4527", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MS", + "municipality": "Plumtree", + "scheduled_service": "no", + "gps_code": "FVPL" + }, + { + "id": "31256", + "ident": "FVRA", + "type": "small_airport", + "name": "Ratelshoek Airport", + "latitude_deg": "-20.234513", + "longitude_deg": "32.79753", + "elevation_ft": "3250", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MA", + "municipality": "Ratelshoek", + "scheduled_service": "no", + "gps_code": "FVRA" + }, + { + "id": "325147", + "ident": "FVRB", + "type": "small_airport", + "name": "Barberton Lodge Airfield", + "latitude_deg": "-21.12863", + "longitude_deg": "29.871943", + "elevation_ft": "2650", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MI", + "municipality": "Mwenezi", + "scheduled_service": "no", + "gps_code": "FVRB", + "keywords": "Barberton, Barberton Lodge, Bubiana Conservancy Zimbabwe" + }, + { + "id": "31257", + "ident": "FVRE", + "type": "small_airport", + "name": "Renroc Airport", + "latitude_deg": "-16.966999053955078", + "longitude_deg": "29.566999435424805", + "elevation_ft": "4200", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Renroc", + "scheduled_service": "no", + "gps_code": "FVRE" + }, + { + "id": "325151", + "ident": "FVRF", + "type": "small_airport", + "name": "Rifa Airstrip", + "latitude_deg": "-16.31318", + "longitude_deg": "28.898235", + "elevation_ft": "1350", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Hurungwe", + "scheduled_service": "no", + "gps_code": "FVRF", + "keywords": "A Camp, Sharu" + }, + { + "id": "325149", + "ident": "FVRI", + "type": "small_airport", + "name": "Kipling's Rukari Airstrip", + "latitude_deg": "-16.855422", + "longitude_deg": "28.427034", + "elevation_ft": "1660", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "scheduled_service": "no", + "gps_code": "FVRI" + }, + { + "id": "31258", + "ident": "FVRT", + "type": "small_airport", + "name": "Rutenga Airport", + "latitude_deg": "-21.232999801635742", + "longitude_deg": "30.732999801635742", + "elevation_ft": "1825", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MV", + "municipality": "Rutenga", + "scheduled_service": "no", + "gps_code": "FVRT" + }, + { + "id": "30583", + "ident": "FVSC", + "type": "small_airport", + "name": "Sencol Airport", + "latitude_deg": "-17.602694", + "longitude_deg": "28.264259", + "elevation_ft": "2350", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MI", + "municipality": "Sencol", + "scheduled_service": "no", + "gps_code": "FVSC" + }, + { + "id": "31260", + "ident": "FVSE", + "type": "small_airport", + "name": "Sanyati Estate Airport", + "latitude_deg": "-17.973835", + "longitude_deg": "29.226615", + "elevation_ft": "2790", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Sanyati Estate", + "scheduled_service": "no", + "gps_code": "FVSE", + "keywords": "Chigaware" + }, + { + "id": "3012", + "ident": "FVSH", + "type": "small_airport", + "name": "Zvishavane Airport", + "latitude_deg": "-20.289499", + "longitude_deg": "30.0882", + "elevation_ft": "3012", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MI", + "municipality": "Zvishavane", + "scheduled_service": "no", + "gps_code": "FVSH" + }, + { + "id": "31261", + "ident": "FVSN", + "type": "small_airport", + "name": "Sun Yet Sen Airport", + "latitude_deg": "-21.33300018310547", + "longitude_deg": "28.517000198364258", + "elevation_ft": "2891", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MS", + "municipality": "Sun Yet Sen", + "scheduled_service": "no", + "gps_code": "FVSN" + }, + { + "id": "31262", + "ident": "FVSV", + "type": "closed", + "name": "Spray View Airport", + "latitude_deg": "-17.917", + "longitude_deg": "25.816999", + "elevation_ft": "3210", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Spray View", + "scheduled_service": "no", + "gps_code": "FVSV" + }, + { + "id": "31263", + "ident": "FVSX", + "type": "small_airport", + "name": "Sengwa Gorge Airport", + "latitude_deg": "-18.16699981689453", + "longitude_deg": "28.850000381469727", + "elevation_ft": "2900", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MI", + "municipality": "Sengwa Gorge", + "scheduled_service": "no", + "gps_code": "FVSX" + }, + { + "id": "31264", + "ident": "FVSY", + "type": "small_airport", + "name": "Siyalima Airport", + "latitude_deg": "-16.632999420166016", + "longitude_deg": "30.649999618530273", + "elevation_ft": "4540", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MC", + "municipality": "Siyalima", + "scheduled_service": "no", + "gps_code": "FVSY" + }, + { + "id": "31265", + "ident": "FVTA", + "type": "small_airport", + "name": "Tashinga Airport", + "latitude_deg": "-16.824147", + "longitude_deg": "28.443215", + "elevation_ft": "1630", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Tashinga", + "scheduled_service": "no", + "gps_code": "FVTA" + }, + { + "id": "317597", + "ident": "FVTB", + "type": "small_airport", + "name": "Tiger Bay Airstrip", + "latitude_deg": "-16.911231", + "longitude_deg": "28.426079", + "elevation_ft": "1720", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Kariba", + "scheduled_service": "no", + "gps_code": "FVTB" + }, + { + "id": "31266", + "ident": "FVTD", + "type": "small_airport", + "name": "Tinfields Airport", + "latitude_deg": "-19.950000762939453", + "longitude_deg": "31.433000564575195", + "elevation_ft": "3600", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MV", + "municipality": "Tinfields", + "scheduled_service": "no", + "gps_code": "FVTD" + }, + { + "id": "31267", + "ident": "FVTE", + "type": "small_airport", + "name": "Tengwe Airport", + "latitude_deg": "-17.117000579833984", + "longitude_deg": "29.617000579833984", + "elevation_ft": "4000", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Tengwe", + "scheduled_service": "no", + "gps_code": "FVTE" + }, + { + "id": "31268", + "ident": "FVTJ", + "type": "closed", + "name": "Tonje Airport", + "latitude_deg": "-20.316999", + "longitude_deg": "32.349998", + "elevation_ft": "1500", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MA", + "municipality": "Tonje", + "scheduled_service": "no", + "gps_code": "FVTJ" + }, + { + "id": "3013", + "ident": "FVTL", + "type": "medium_airport", + "name": "Gweru - Thornhill Air Base", + "latitude_deg": "-19.436718", + "longitude_deg": "29.861945", + "elevation_ft": "4680", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MI", + "municipality": "Gweru", + "scheduled_service": "no", + "gps_code": "FVTL", + "iata_code": "GWE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gweru-Thornhill_Air_Base" + }, + { + "id": "31269", + "ident": "FVTS", + "type": "small_airport", + "name": "Tsholothso Airport", + "latitude_deg": "-19.765526", + "longitude_deg": "27.766464", + "elevation_ft": "3580", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Tsholothso", + "scheduled_service": "no", + "gps_code": "FVTS" + }, + { + "id": "31270", + "ident": "FVTU", + "type": "small_airport", + "name": "Tuli Airport", + "latitude_deg": "-21.934925079345703", + "longitude_deg": "29.196338653564453", + "elevation_ft": "1940", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MS", + "municipality": "Tuli", + "scheduled_service": "no", + "gps_code": "FVTU" + }, + { + "id": "31271", + "ident": "FVWD", + "type": "small_airport", + "name": "Wedza Airport", + "latitude_deg": "-18.617000579833984", + "longitude_deg": "31.58300018310547", + "elevation_ft": "4600", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-ME", + "municipality": "Wedza", + "scheduled_service": "no", + "gps_code": "FVWD" + }, + { + "id": "3014", + "ident": "FVWN", + "type": "medium_airport", + "name": "Hwange National Park Airport", + "latitude_deg": "-18.629899978637695", + "longitude_deg": "27.020999908447266", + "elevation_ft": "3543", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Hwange", + "scheduled_service": "no", + "gps_code": "FVWN", + "iata_code": "HWN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hwange_National_Park_Airport" + }, + { + "id": "32656", + "ident": "FVWT", + "type": "small_airport", + "name": "Hwange (Town) Airport", + "latitude_deg": "-18.362967", + "longitude_deg": "26.519791", + "elevation_ft": "2500", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Hwange", + "scheduled_service": "no", + "gps_code": "FVWT", + "iata_code": "WKI" + }, + { + "id": "317036", + "ident": "FVYB", + "type": "small_airport", + "name": "Yomba Airport", + "latitude_deg": "-16.946664", + "longitude_deg": "30.400914", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Yomba", + "scheduled_service": "no", + "gps_code": "FVYB" + }, + { + "id": "31272", + "ident": "FVYT", + "type": "small_airport", + "name": "Inyati Airport", + "latitude_deg": "-19.700000762939453", + "longitude_deg": "28.850000381469727", + "elevation_ft": "4400", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Inyati", + "scheduled_service": "no", + "gps_code": "FVYT" + }, + { + "id": "31273", + "ident": "FVZC", + "type": "small_airport", + "name": "Zisco Airport", + "latitude_deg": "-19.029", + "longitude_deg": "29.721901", + "elevation_ft": "3975", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MI", + "municipality": "Zisco", + "scheduled_service": "no", + "gps_code": "FVZC" + }, + { + "id": "31274", + "ident": "FVZK", + "type": "small_airport", + "name": "Zaka Airport", + "latitude_deg": "-20.335499", + "longitude_deg": "31.451845", + "elevation_ft": "2550", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MV", + "municipality": "Zaka", + "scheduled_service": "no", + "gps_code": "FVZK" + }, + { + "id": "46308", + "ident": "FWB", + "type": "small_airport", + "name": "Branson West Airport", + "latitude_deg": "36.698497", + "longitude_deg": "-93.402249", + "elevation_ft": "1348", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Branson West", + "scheduled_service": "no", + "gps_code": "KFWB", + "local_code": "FWB" + }, + { + "id": "29684", + "ident": "FWBG", + "type": "small_airport", + "name": "Bangula Airport", + "latitude_deg": "-16.578408", + "longitude_deg": "35.116148", + "elevation_ft": "302", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-NS", + "municipality": "Bangula", + "scheduled_service": "no", + "gps_code": "FWBG" + }, + { + "id": "29780", + "ident": "FWCB", + "type": "small_airport", + "name": "Chilumba Private Airport", + "latitude_deg": "-10.439073", + "longitude_deg": "34.246055", + "elevation_ft": "1611", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-KR", + "municipality": "Chilumba", + "scheduled_service": "no", + "gps_code": "FWCB" + }, + { + "id": "29779", + "ident": "FWCD", + "type": "small_airport", + "name": "Chelinda Malawi Airport", + "latitude_deg": "-10.5500001907", + "longitude_deg": "33.799999237099996", + "elevation_ft": "7759", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-RU", + "scheduled_service": "no", + "gps_code": "FWCD", + "iata_code": "CEH" + }, + { + "id": "3015", + "ident": "FWCL", + "type": "medium_airport", + "name": "Chileka International Airport", + "latitude_deg": "-15.679100036621094", + "longitude_deg": "34.9739990234375", + "elevation_ft": "2555", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-BL", + "municipality": "Blantyre", + "scheduled_service": "yes", + "gps_code": "FWCL", + "iata_code": "BLZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chileka_International_Airport" + }, + { + "id": "30835", + "ident": "FWCM", + "type": "small_airport", + "name": "Club Makokola Airport", + "latitude_deg": "-14.306483", + "longitude_deg": "35.131477", + "elevation_ft": "1587", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-MG", + "municipality": "Club Makokola", + "scheduled_service": "yes", + "gps_code": "FWCM", + "iata_code": "CMK" + }, + { + "id": "30201", + "ident": "FWCS", + "type": "small_airport", + "name": "Ntchisi Airport", + "latitude_deg": "-13.375800132751465", + "longitude_deg": "33.864498138427734", + "elevation_ft": "4301", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-NI", + "municipality": "Ntchisi", + "scheduled_service": "no", + "gps_code": "FWCS" + }, + { + "id": "31275", + "ident": "FWCT", + "type": "small_airport", + "name": "Chitipa Airport", + "latitude_deg": "-9.699999809265137", + "longitude_deg": "33.266998291015625", + "elevation_ft": "4270", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-CT", + "municipality": "Chitipa", + "scheduled_service": "no", + "gps_code": "FWCT" + }, + { + "id": "30602", + "ident": "FWDW", + "type": "medium_airport", + "name": "Dwangwa Airport", + "latitude_deg": "-12.517527", + "longitude_deg": "34.131877", + "elevation_ft": "1605", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-NK", + "municipality": "Dwangwa", + "scheduled_service": "no", + "gps_code": "FWDW", + "iata_code": "DWA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dwanga_Airport" + }, + { + "id": "31276", + "ident": "FWDZ", + "type": "closed", + "name": "Dedza Airport", + "latitude_deg": "-14.383", + "longitude_deg": "34.317001", + "elevation_ft": "5240", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-DE", + "municipality": "Dedza", + "scheduled_service": "no", + "gps_code": "FWDZ" + }, + { + "id": "3016", + "ident": "FWKA", + "type": "medium_airport", + "name": "Karonga Airport", + "latitude_deg": "-9.953570365905762", + "longitude_deg": "33.893001556396484", + "elevation_ft": "1765", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-KR", + "municipality": "Karonga", + "scheduled_service": "no", + "gps_code": "FWKA", + "iata_code": "KGJ" + }, + { + "id": "30604", + "ident": "FWKB", + "type": "closed", + "name": "Katumbi Airport", + "latitude_deg": "-10.830489", + "longitude_deg": "33.508844", + "elevation_ft": "3986", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-RU", + "municipality": "Katumbi", + "scheduled_service": "no", + "gps_code": "FWKB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Katumbi_Airport" + }, + { + "id": "3017", + "ident": "FWKG", + "type": "small_airport", + "name": "Kasungu Airport", + "latitude_deg": "-13.014599800109863", + "longitude_deg": "33.46860122680664", + "elevation_ft": "3470", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-KS", + "municipality": "Kasungu", + "scheduled_service": "no", + "gps_code": "FWKG", + "iata_code": "KBQ" + }, + { + "id": "3018", + "ident": "FWKI", + "type": "medium_airport", + "name": "Lilongwe International Airport", + "latitude_deg": "-13.7894001007", + "longitude_deg": "33.78099823", + "elevation_ft": "4035", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-LI", + "municipality": "Lilongwe", + "scheduled_service": "yes", + "gps_code": "FWKI", + "iata_code": "LLW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lilongwe_International_Airport", + "keywords": "FWLI, Kamuzu International Airport" + }, + { + "id": "31277", + "ident": "FWKK", + "type": "small_airport", + "name": "Nkhota Kota Airport", + "latitude_deg": "-12.916999816894531", + "longitude_deg": "34.266998291015625", + "elevation_ft": "1720", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-NK", + "municipality": "Nkhota Kota", + "scheduled_service": "no", + "gps_code": "FWKK" + }, + { + "id": "3019", + "ident": "FWLE", + "type": "small_airport", + "name": "Old Lilongwe Airport", + "latitude_deg": "-13.9659996033", + "longitude_deg": "33.7018013", + "elevation_ft": "3722", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-LI", + "municipality": "Lilongwe", + "scheduled_service": "no", + "gps_code": "FWLE" + }, + { + "id": "31826", + "ident": "FWLK", + "type": "small_airport", + "name": "Likoma Island Airport", + "latitude_deg": "-12.079787", + "longitude_deg": "34.736253", + "elevation_ft": "1600", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-LK", + "municipality": "Likoma Island", + "scheduled_service": "no", + "gps_code": "FWLK", + "iata_code": "LIX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Likoma_Airport" + }, + { + "id": "31278", + "ident": "FWLP", + "type": "small_airport", + "name": "Lifupa Airport", + "latitude_deg": "-13.050000190734863", + "longitude_deg": "33.150001525878906", + "elevation_ft": "3326", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-KS", + "municipality": "Lifupa", + "scheduled_service": "no", + "gps_code": "FWLP" + }, + { + "id": "30126", + "ident": "FWMC", + "type": "small_airport", + "name": "Mchinji Airport", + "latitude_deg": "-13.800000190734863", + "longitude_deg": "32.900001525878906", + "elevation_ft": "3901", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-MC", + "municipality": "Mchinji", + "scheduled_service": "no", + "gps_code": "FWMC" + }, + { + "id": "30603", + "ident": "FWMG", + "type": "medium_airport", + "name": "Mangochi Airport", + "latitude_deg": "-14.482999801635742", + "longitude_deg": "35.266998291015625", + "elevation_ft": "1580", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-MG", + "municipality": "Mangochi", + "scheduled_service": "no", + "gps_code": "FWMG", + "iata_code": "MAI" + }, + { + "id": "31998", + "ident": "FWMY", + "type": "small_airport", + "name": "Monkey Bay Airport", + "latitude_deg": "-14.083600044299999", + "longitude_deg": "34.9197006226", + "elevation_ft": "1580", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-MG", + "municipality": "Monkey Bay", + "scheduled_service": "no", + "gps_code": "FWMY", + "iata_code": "MYZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monkey_Bay_Airport" + }, + { + "id": "31279", + "ident": "FWMZ", + "type": "small_airport", + "name": "Mzimba Airport", + "latitude_deg": "-11.883000373840332", + "longitude_deg": "33.617000579833984", + "elevation_ft": "4440", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-MZ", + "municipality": "Mzimba", + "scheduled_service": "no", + "gps_code": "FWMZ" + }, + { + "id": "31280", + "ident": "FWNB", + "type": "small_airport", + "name": "Ngabu Airport", + "latitude_deg": "-16.498324", + "longitude_deg": "34.864218", + "elevation_ft": "450", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-CK", + "municipality": "Ngabu", + "scheduled_service": "no", + "gps_code": "FWNB" + }, + { + "id": "31281", + "ident": "FWSJ", + "type": "small_airport", + "name": "Nsanje Airport", + "latitude_deg": "-16.921115", + "longitude_deg": "35.25269", + "elevation_ft": "200", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-NS", + "municipality": "Nsanje", + "scheduled_service": "no", + "gps_code": "FWSJ" + }, + { + "id": "31833", + "ident": "FWSM", + "type": "small_airport", + "name": "Salima Airport", + "latitude_deg": "-13.755892702500002", + "longitude_deg": "34.5841884613", + "elevation_ft": "1688", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-SA", + "municipality": "Salima", + "scheduled_service": "no", + "gps_code": "FWSM", + "iata_code": "LMB", + "keywords": "Salima, Sengabay" + }, + { + "id": "30183", + "ident": "FWSU", + "type": "small_airport", + "name": "Nchalo Sucoma Airport", + "latitude_deg": "-16.269338", + "longitude_deg": "34.877216", + "elevation_ft": "230", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-CK", + "municipality": "Nchalo", + "scheduled_service": "no", + "gps_code": "FWSU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sucoma_Airport" + }, + { + "id": "31282", + "ident": "FWTK", + "type": "small_airport", + "name": "Mtakatata Airport", + "latitude_deg": "-14.217000007629395", + "longitude_deg": "34.53300094604492", + "elevation_ft": "1725", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-DE", + "municipality": "Mtakatata", + "scheduled_service": "no", + "gps_code": "FWTK" + }, + { + "id": "3020", + "ident": "FWUU", + "type": "medium_airport", + "name": "Mzuzu Airport", + "latitude_deg": "-11.444700241088867", + "longitude_deg": "34.01179885864258", + "elevation_ft": "4115", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-MZ", + "municipality": "Mzuzu", + "scheduled_service": "yes", + "gps_code": "FWUU", + "iata_code": "ZZU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mzuzu_Airport" + }, + { + "id": "3021", + "ident": "FWZA", + "type": "small_airport", + "name": "Zomba Airport", + "latitude_deg": "-15.386309", + "longitude_deg": "35.383575", + "elevation_ft": "2650", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-ZO", + "municipality": "Zomba", + "scheduled_service": "no", + "gps_code": "FWZA" + }, + { + "id": "31283", + "ident": "FXBB", + "type": "small_airport", + "name": "Bobete Airport", + "latitude_deg": "-29.424999237060547", + "longitude_deg": "28.66699981689453", + "elevation_ft": "7100", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-K", + "municipality": "Bobete", + "scheduled_service": "no", + "gps_code": "FXBB" + }, + { + "id": "30017", + "ident": "FXKA", + "type": "small_airport", + "name": "Katse Airport", + "latitude_deg": "-29.36370086669922", + "longitude_deg": "28.527299880981445", + "elevation_ft": "7000", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-K", + "municipality": "Katse", + "scheduled_service": "no", + "gps_code": "FXKA" + }, + { + "id": "31284", + "ident": "FXKB", + "type": "small_airport", + "name": "Kolberg Airport", + "latitude_deg": "-29.380300521850586", + "longitude_deg": "28.490699768066406", + "elevation_ft": "7000", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-K", + "municipality": "Kolberg", + "scheduled_service": "no", + "gps_code": "FXKB" + }, + { + "id": "31806", + "ident": "FXLK", + "type": "small_airport", + "name": "Lebakeng Airport", + "latitude_deg": "-29.89080047607422", + "longitude_deg": "28.65559959411621", + "elevation_ft": "6000", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-H", + "municipality": "Lebakeng", + "scheduled_service": "no", + "gps_code": "FXLK", + "iata_code": "LEF" + }, + { + "id": "30070", + "ident": "FXLR", + "type": "small_airport", + "name": "Leribe Airport", + "latitude_deg": "-28.855600357055664", + "longitude_deg": "28.052799224853516", + "elevation_ft": "5350", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-C", + "municipality": "Leribe", + "scheduled_service": "no", + "gps_code": "FXLR", + "iata_code": "LRB" + }, + { + "id": "31808", + "ident": "FXLS", + "type": "small_airport", + "name": "Lesobeng Airport", + "latitude_deg": "-29.755583", + "longitude_deg": "28.357054", + "elevation_ft": "7130", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-F", + "municipality": "Lesobeng", + "scheduled_service": "no", + "gps_code": "FXLS", + "iata_code": "LES" + }, + { + "id": "30075", + "ident": "FXLT", + "type": "small_airport", + "name": "Letseng Airport", + "latitude_deg": "-29.009300231933594", + "longitude_deg": "28.854700088500977", + "elevation_ft": "10400", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-J", + "municipality": "Letseng", + "scheduled_service": "no", + "gps_code": "FXLT" + }, + { + "id": "312899", + "ident": "FXM", + "type": "small_airport", + "name": "Flaxman Island Airstrip", + "latitude_deg": "70.1895", + "longitude_deg": "-146.020904", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Flaxman Island", + "scheduled_service": "no", + "keywords": "FXM" + }, + { + "id": "31285", + "ident": "FXMA", + "type": "small_airport", + "name": "Matsaile Airport", + "latitude_deg": "-29.840562", + "longitude_deg": "28.77668", + "elevation_ft": "6200", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-K", + "municipality": "Matsaile", + "scheduled_service": "no", + "gps_code": "FXMA", + "local_code": "MSG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Matsaile_Airport" + }, + { + "id": "30097", + "ident": "FXMF", + "type": "small_airport", + "name": "Mafeteng Airport", + "latitude_deg": "-29.80109977722168", + "longitude_deg": "27.243600845336914", + "elevation_ft": "5350", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-E", + "municipality": "Mafeteng", + "scheduled_service": "no", + "gps_code": "FXMF", + "iata_code": "MFC" + }, + { + "id": "31286", + "ident": "FXMH", + "type": "small_airport", + "name": "Mohale's Hoek Airport", + "latitude_deg": "-30.144500732421875", + "longitude_deg": "27.470800399780273", + "elevation_ft": "5146", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-F", + "municipality": "Mohale's Hoek", + "scheduled_service": "no", + "gps_code": "FXMH" + }, + { + "id": "30149", + "ident": "FXMK", + "type": "small_airport", + "name": "Mokhotlong Airport", + "latitude_deg": "-29.28179931640625", + "longitude_deg": "29.072799682617188", + "elevation_ft": "7200", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-J", + "municipality": "Mokhotlong", + "scheduled_service": "no", + "gps_code": "FXMK", + "iata_code": "MKH" + }, + { + "id": "31287", + "ident": "FXML", + "type": "small_airport", + "name": "Malefiloane Airstrip", + "latitude_deg": "-29.335500717163086", + "longitude_deg": "29.185300827026367", + "elevation_ft": "8267", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-J", + "municipality": "Malefiloane", + "scheduled_service": "no", + "gps_code": "FXML" + }, + { + "id": "3022", + "ident": "FXMM", + "type": "medium_airport", + "name": "Moshoeshoe I International Airport", + "latitude_deg": "-29.462299346923828", + "longitude_deg": "27.552499771118164", + "elevation_ft": "5348", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-A", + "municipality": "Maseru", + "scheduled_service": "yes", + "gps_code": "FXMM", + "iata_code": "MSU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moshoeshoe_I_International_Airport" + }, + { + "id": "31288", + "ident": "FXMN", + "type": "small_airport", + "name": "Mantsonyane Airport", + "latitude_deg": "-29.54515", + "longitude_deg": "28.270569", + "elevation_ft": "7100", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-K", + "municipality": "Mantsonyane", + "scheduled_service": "no", + "gps_code": "FXMN" + }, + { + "id": "31289", + "ident": "FXMP", + "type": "small_airport", + "name": "Mohlanapeng Airport", + "latitude_deg": "-29.58300018310547", + "longitude_deg": "28.683000564575195", + "elevation_ft": "7294", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-K", + "municipality": "Mohlanapeng", + "scheduled_service": "no", + "gps_code": "FXMP" + }, + { + "id": "31290", + "ident": "FXMS", + "type": "small_airport", + "name": "Mashai Store Airport", + "latitude_deg": "-29.678025", + "longitude_deg": "28.805082", + "elevation_ft": "7300", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-K", + "municipality": "Mashai Store", + "scheduled_service": "no", + "gps_code": "FXMS" + }, + { + "id": "31291", + "ident": "FXMT", + "type": "small_airport", + "name": "Matabeng Store Airport", + "latitude_deg": "-29.783000946044922", + "longitude_deg": "28.767000198364258", + "elevation_ft": "6300", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-K", + "municipality": "Matabeng Store", + "scheduled_service": "no", + "gps_code": "FXMT" + }, + { + "id": "3023", + "ident": "FXMU", + "type": "small_airport", + "name": "Mejametalana Airbase", + "latitude_deg": "-29.304100036621094", + "longitude_deg": "27.50349998474121", + "elevation_ft": "5105", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-A", + "municipality": "Maseru", + "scheduled_service": "no", + "gps_code": "FXMU" + }, + { + "id": "31292", + "ident": "FXMV", + "type": "small_airport", + "name": "Matabeng Village Airport", + "latitude_deg": "-29.814699172973633", + "longitude_deg": "28.80820083618164", + "elevation_ft": "6150", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-K", + "municipality": "Matabeng Village", + "scheduled_service": "no", + "gps_code": "FXMV" + }, + { + "id": "31293", + "ident": "FXNH", + "type": "small_airport", + "name": "Nohanas Airport", + "latitude_deg": "-30.066999435424805", + "longitude_deg": "27.867000579833984", + "elevation_ft": "5400", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-F", + "municipality": "Nohanas", + "scheduled_service": "no", + "gps_code": "FXNH" + }, + { + "id": "32035", + "ident": "FXNK", + "type": "small_airport", + "name": "Nkaus Airport", + "latitude_deg": "-30.021699905396", + "longitude_deg": "28.196899414062", + "elevation_ft": "5621", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-F", + "municipality": "Nkaus", + "scheduled_service": "no", + "gps_code": "FXNK", + "iata_code": "NKU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nkaus_Airport", + "keywords": "Nkau" + }, + { + "id": "32151", + "ident": "FXPG", + "type": "small_airport", + "name": "Pelaneng Airport", + "latitude_deg": "-29.1206", + "longitude_deg": "28.505301", + "elevation_ft": "7200", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-C", + "municipality": "Pelaneng", + "scheduled_service": "no", + "gps_code": "FXPG", + "iata_code": "PEL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pelaneng_Airport" + }, + { + "id": "32557", + "ident": "FXQG", + "type": "small_airport", + "name": "Quthing Airport", + "latitude_deg": "-30.407499313354492", + "longitude_deg": "27.693300247192383", + "elevation_ft": "5350", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-G", + "municipality": "Quthing", + "scheduled_service": "no", + "gps_code": "FXQG", + "iata_code": "UTG" + }, + { + "id": "30309", + "ident": "FXQN", + "type": "small_airport", + "name": "Qacha's Nek Airport", + "latitude_deg": "-30.1117000579834", + "longitude_deg": "28.671899795532227", + "elevation_ft": "6100", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-H", + "municipality": "Qacha's Nek", + "scheduled_service": "no", + "gps_code": "FXQN", + "iata_code": "UNE" + }, + { + "id": "31294", + "ident": "FXSE", + "type": "small_airport", + "name": "Sehlabathebe Airport", + "latitude_deg": "-29.915800094604492", + "longitude_deg": "29.038799285888672", + "elevation_ft": "7300", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-H", + "municipality": "Sehlabathebe", + "scheduled_service": "no", + "gps_code": "FXSE" + }, + { + "id": "30404", + "ident": "FXSH", + "type": "small_airport", + "name": "Sehonghong Airport", + "latitude_deg": "-29.731088", + "longitude_deg": "28.767945", + "elevation_ft": "6500", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-K", + "municipality": "Sehonghong", + "scheduled_service": "no", + "gps_code": "FXSH", + "iata_code": "SHK" + }, + { + "id": "32317", + "ident": "FXSK", + "type": "small_airport", + "name": "Sekakes Airport", + "latitude_deg": "-30.03890037536621", + "longitude_deg": "28.37030029296875", + "elevation_ft": "5700", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-H", + "municipality": "Sekakes", + "scheduled_service": "no", + "gps_code": "FXSK", + "iata_code": "SKQ" + }, + { + "id": "30405", + "ident": "FXSM", + "type": "small_airport", + "name": "Semonkong Airport", + "latitude_deg": "-29.838600158691406", + "longitude_deg": "28.059999465942383", + "elevation_ft": "7200", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-A", + "municipality": "Semonkong", + "scheduled_service": "no", + "gps_code": "FXSM", + "iata_code": "SOK" + }, + { + "id": "32298", + "ident": "FXSS", + "type": "small_airport", + "name": "Seshutes Airport", + "latitude_deg": "-29.26759910583496", + "longitude_deg": "28.55229949951172", + "elevation_ft": "7000", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-C", + "municipality": "Seshutes", + "scheduled_service": "no", + "gps_code": "FXSS", + "iata_code": "SHZ" + }, + { + "id": "31295", + "ident": "FXST", + "type": "small_airport", + "name": "St. Theresa Airport", + "latitude_deg": "-29.617000579833984", + "longitude_deg": "28.783000946044922", + "elevation_ft": "6800", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-K", + "municipality": "St. Theresa", + "scheduled_service": "no", + "gps_code": "FXST" + }, + { + "id": "32442", + "ident": "FXTA", + "type": "small_airport", + "name": "Thaba-Tseka Airport", + "latitude_deg": "-29.52280044555664", + "longitude_deg": "28.615800857543945", + "elevation_ft": "7500", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-K", + "municipality": "Thaba-Tseka", + "scheduled_service": "no", + "gps_code": "FXTA", + "iata_code": "THB" + }, + { + "id": "31296", + "ident": "FXTB", + "type": "small_airport", + "name": "Tebellong Airport", + "latitude_deg": "-30.049999237060547", + "longitude_deg": "28.433000564575195", + "elevation_ft": "5600", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-H", + "municipality": "Tebellong", + "scheduled_service": "no", + "gps_code": "FXTB" + }, + { + "id": "32453", + "ident": "FXTK", + "type": "small_airport", + "name": "Tlokoeng Airport", + "latitude_deg": "-29.232999801635742", + "longitude_deg": "28.882999420166016", + "elevation_ft": "7000", + "continent": "AF", + "iso_country": "LS", + "iso_region": "LS-J", + "municipality": "Tlokoeng", + "scheduled_service": "no", + "gps_code": "FXTK", + "iata_code": "TKO" + }, + { + "id": "315385", + "ident": "FYAA", + "type": "small_airport", + "name": "Ai-Ais Airport", + "latitude_deg": "-27.995", + "longitude_deg": "17.5966", + "elevation_ft": "2000", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Ai-Ais", + "scheduled_service": "no", + "gps_code": "FYAA", + "iata_code": "AIW" + }, + { + "id": "29539", + "ident": "FYAB", + "type": "small_airport", + "name": "Aroab B Airport", + "latitude_deg": "-26.776100158691406", + "longitude_deg": "19.633100509643555", + "elevation_ft": "3235", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Aroab", + "scheduled_service": "no", + "gps_code": "FYAB" + }, + { + "id": "315405", + "ident": "FYAK", + "type": "small_airport", + "name": "Aussenkehr Airport", + "latitude_deg": "-28.4587", + "longitude_deg": "17.4645", + "elevation_ft": "970", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Aussenkehr", + "scheduled_service": "no", + "gps_code": "FYAK" + }, + { + "id": "29534", + "ident": "FYAM", + "type": "small_airport", + "name": "Aminuis Airstrip", + "latitude_deg": "-23.655799865722656", + "longitude_deg": "19.351699829101562", + "elevation_ft": "4012", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "municipality": "Aminuis", + "scheduled_service": "no", + "gps_code": "FYAM" + }, + { + "id": "3024", + "ident": "FYAR", + "type": "medium_airport", + "name": "Arandis Airport", + "latitude_deg": "-22.461875", + "longitude_deg": "14.979322", + "elevation_ft": "1905", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ER", + "municipality": "Arandis", + "scheduled_service": "no", + "gps_code": "FYAR", + "iata_code": "ADI" + }, + { + "id": "29541", + "ident": "FYAS", + "type": "small_airport", + "name": "Aus Airport", + "latitude_deg": "-26.693899154663086", + "longitude_deg": "16.318899154663086", + "elevation_ft": "4856", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Aus", + "scheduled_service": "no", + "gps_code": "FYAS" + }, + { + "id": "29667", + "ident": "FYAV", + "type": "small_airport", + "name": "Ariamsvley Airport", + "latitude_deg": "-28.118900299072266", + "longitude_deg": "19.833900451660156", + "elevation_ft": "2549", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Ariamsvley", + "scheduled_service": "no", + "gps_code": "FYAV" + }, + { + "id": "29698", + "ident": "FYBC", + "type": "small_airport", + "name": "Bethanien Airport", + "latitude_deg": "-26.5448", + "longitude_deg": "17.1816", + "elevation_ft": "3260", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Bethanien", + "scheduled_service": "no", + "gps_code": "FYBC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bethanien_Airport" + }, + { + "id": "29545", + "ident": "FYBJ", + "type": "small_airport", + "name": "Bitterwasser Lodge & Flying Club Airfield", + "latitude_deg": "-23.875", + "longitude_deg": "17.9911003113", + "elevation_ft": "4167", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Bitterwasser", + "scheduled_service": "no", + "gps_code": "FYBJ", + "home_link": "http://www.bitterwasser.com", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Bitterwasser" + }, + { + "id": "345673", + "ident": "FYDN", + "type": "small_airport", + "name": "Doro Nawas Airstrip", + "latitude_deg": "-20.4475", + "longitude_deg": "14.2931", + "elevation_ft": "1525", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KU", + "scheduled_service": "no", + "gps_code": "FYDN" + }, + { + "id": "29853", + "ident": "FYEK", + "type": "small_airport", + "name": "Epukiro Airport", + "latitude_deg": "-21.786699295043945", + "longitude_deg": "19.10610008239746", + "elevation_ft": "4892", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "municipality": "Epukiro", + "scheduled_service": "no", + "gps_code": "FYEK" + }, + { + "id": "3025", + "ident": "FYEN", + "type": "small_airport", + "name": "Eenhana Airport", + "latitude_deg": "-17.482999801635742", + "longitude_deg": "16.32200050354004", + "elevation_ft": "3660", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OW", + "municipality": "Eenhana", + "scheduled_service": "no", + "gps_code": "FYEN" + }, + { + "id": "29555", + "ident": "FYGB", + "type": "small_airport", + "name": "Gobabis Airport", + "latitude_deg": "-22.5044", + "longitude_deg": "18.973101", + "elevation_ft": "4731", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "municipality": "Gobabis", + "scheduled_service": "no", + "gps_code": "FYGB", + "iata_code": "GOG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gobabis_Airport" + }, + { + "id": "29556", + "ident": "FYGC", + "type": "small_airport", + "name": "Gochas Airstrip", + "latitude_deg": "-24.856399536132812", + "longitude_deg": "18.817800521850586", + "elevation_ft": "3714", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Gochas", + "scheduled_service": "no", + "gps_code": "FYGC" + }, + { + "id": "3026", + "ident": "FYGF", + "type": "medium_airport", + "name": "Grootfontein Airport", + "latitude_deg": "-19.60219955444336", + "longitude_deg": "18.122699737548828", + "elevation_ft": "4636", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OD", + "municipality": "Grootfontein", + "scheduled_service": "no", + "gps_code": "FYGF", + "iata_code": "GFY" + }, + { + "id": "28486", + "ident": "FYGK", + "type": "small_airport", + "name": "Farm Whitwater East Landing Strip", + "latitude_deg": "-24.629999", + "longitude_deg": "15.9392", + "elevation_ft": "857", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Desert Homestead", + "scheduled_service": "no", + "gps_code": "FYGK" + }, + { + "id": "29603", + "ident": "FYGL", + "type": "small_airport", + "name": "Omaruru Game Lodge Airport", + "latitude_deg": "-21.326099395751953", + "longitude_deg": "16.089399337768555", + "elevation_ft": "4226", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ER", + "municipality": "Omaruru", + "scheduled_service": "no", + "gps_code": "FYGL" + }, + { + "id": "342730", + "ident": "FYGO", + "type": "small_airport", + "name": "Gobabeb Airport", + "latitude_deg": "-23.5443", + "longitude_deg": "15.04492", + "elevation_ft": "1381", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ER", + "municipality": "Gobabeb", + "scheduled_service": "no", + "gps_code": "FYGO" + }, + { + "id": "29911", + "ident": "FYGV", + "type": "small_airport", + "name": "Gravenstein Prv Airport", + "latitude_deg": "-23.458900451660156", + "longitude_deg": "17.497800827026367", + "elevation_ft": "4370", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "scheduled_service": "no", + "gps_code": "FYGV" + }, + { + "id": "29944", + "ident": "FYHH", + "type": "small_airport", + "name": "Helmeringhausen Airport", + "latitude_deg": "-25.863300323486328", + "longitude_deg": "16.809999465942383", + "elevation_ft": "4603", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Helmeringhausen", + "scheduled_service": "no", + "gps_code": "FYHH" + }, + { + "id": "312717", + "ident": "FYHI", + "type": "small_airport", + "name": "Halali Airport", + "latitude_deg": "-19.0285", + "longitude_deg": "16.4585", + "elevation_ft": "3639", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OT", + "municipality": "Halali", + "scheduled_service": "yes", + "gps_code": "FYHI", + "iata_code": "HAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Halali_Airport" + }, + { + "id": "340282", + "ident": "FYHN", + "type": "small_airport", + "name": "Henties Bay Airport", + "latitude_deg": "-22.10345", + "longitude_deg": "14.3025", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ER", + "municipality": "Henties Bay", + "scheduled_service": "no", + "gps_code": "FYHN" + }, + { + "id": "345677", + "ident": "FYHO", + "type": "small_airport", + "name": "Hoanib Airstrip", + "latitude_deg": "-19.3864", + "longitude_deg": "13.1327", + "elevation_ft": "936", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KU", + "scheduled_service": "no", + "gps_code": "FYHO" + }, + { + "id": "29951", + "ident": "FYHS", + "type": "small_airport", + "name": "Hobas Airport", + "latitude_deg": "-27.624399185180664", + "longitude_deg": "17.693300247192383", + "elevation_ft": "2313", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Hobas", + "scheduled_service": "no", + "gps_code": "FYHS" + }, + { + "id": "345671", + "ident": "FYHV", + "type": "small_airport", + "name": "Hartmann Valley Airstrip", + "latitude_deg": "-17.377134", + "longitude_deg": "12.254745", + "elevation_ft": "2045", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KU", + "scheduled_service": "no", + "gps_code": "FYHV" + }, + { + "id": "29562", + "ident": "FYIA", + "type": "small_airport", + "name": "Intu Africa Pan Airport", + "latitude_deg": "-24.088300704956055", + "longitude_deg": "17.95170021057129", + "elevation_ft": "4012", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no", + "gps_code": "FYIA" + }, + { + "id": "29571", + "ident": "FYKA", + "type": "small_airport", + "name": "Karibib Airport", + "latitude_deg": "-21.84779930114746", + "longitude_deg": "15.902799606323242", + "elevation_ft": "3829", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ER", + "municipality": "Karibib", + "scheduled_service": "no", + "gps_code": "FYKA" + }, + { + "id": "312737", + "ident": "FYKB", + "type": "small_airport", + "name": "Karasburg Airport", + "latitude_deg": "-28.0297", + "longitude_deg": "18.7385", + "elevation_ft": "3275", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Karasburg", + "scheduled_service": "no", + "gps_code": "FYKB", + "iata_code": "KAS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Karasburg_Airport" + }, + { + "id": "29566", + "ident": "FYKD", + "type": "small_airport", + "name": "Kalkfeld Airport", + "latitude_deg": "-20.901399612426758", + "longitude_deg": "16.207799911499023", + "elevation_ft": "5059", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OD", + "municipality": "Kalkfeld", + "scheduled_service": "no", + "gps_code": "FYKD" + }, + { + "id": "29565", + "ident": "FYKE", + "type": "small_airport", + "name": "Kalahari Game Lodge Airport", + "latitude_deg": "-25.651100158691406", + "longitude_deg": "19.87809944152832", + "elevation_ft": "3182", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no", + "gps_code": "FYKE" + }, + { + "id": "29568", + "ident": "FYKJ", + "type": "small_airport", + "name": "Kamanjab Airport", + "latitude_deg": "-19.520599365234375", + "longitude_deg": "14.8233003616333", + "elevation_ft": "4259", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KU", + "municipality": "Kamanjab", + "scheduled_service": "no", + "gps_code": "FYKJ" + }, + { + "id": "3027", + "ident": "FYKM", + "type": "small_airport", + "name": "Katima Mulilo Airport", + "latitude_deg": "-17.634399", + "longitude_deg": "24.176701", + "elevation_ft": "3144", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-CA", + "municipality": "Mpacha", + "scheduled_service": "no", + "gps_code": "FYKM", + "iata_code": "MPA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Katima_Mulilo_Airport" + }, + { + "id": "345674", + "ident": "FYKN", + "type": "small_airport", + "name": "Okonjima Airport", + "latitude_deg": "-20.86535", + "longitude_deg": "16.6403", + "elevation_ft": "5357", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OD", + "scheduled_service": "no", + "gps_code": "FYKN" + }, + { + "id": "3028", + "ident": "FYKT", + "type": "medium_airport", + "name": "Keetmanshoop Airport", + "latitude_deg": "-26.5398006439209", + "longitude_deg": "18.111400604248047", + "elevation_ft": "3506", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Keetmanshoop", + "scheduled_service": "no", + "gps_code": "FYKT", + "iata_code": "KMP" + }, + { + "id": "29579", + "ident": "FYLS", + "type": "small_airport", + "name": "Lianshulu Airport", + "latitude_deg": "-18.116495", + "longitude_deg": "23.39346", + "elevation_ft": "3143", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-CA", + "municipality": "Lianshulu Lodge", + "scheduled_service": "no", + "gps_code": "FYLS", + "iata_code": "LHU", + "keywords": "Muneambuanas" + }, + { + "id": "3029", + "ident": "FYLZ", + "type": "medium_airport", + "name": "Luderitz Airport", + "latitude_deg": "-26.687400817871094", + "longitude_deg": "15.242899894714355", + "elevation_ft": "457", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Luderitz", + "scheduled_service": "yes", + "gps_code": "FYLZ", + "iata_code": "LUD", + "wikipedia_link": "https://en.wikipedia.org/wiki/L%C3%BCderitz_Airport" + }, + { + "id": "31297", + "ident": "FYMB", + "type": "small_airport", + "name": "Meob Bay Landing Site", + "latitude_deg": "-24.617235", + "longitude_deg": "14.697224", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Meob Bay", + "scheduled_service": "no", + "gps_code": "FYMB" + }, + { + "id": "29592", + "ident": "FYME", + "type": "small_airport", + "name": "Mount Etjo Airport", + "latitude_deg": "-21.0233001709", + "longitude_deg": "16.4528007507", + "elevation_ft": "5000", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OD", + "municipality": "Mount Etjo Safari Lodge", + "scheduled_service": "no", + "gps_code": "FYME", + "iata_code": "MJO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mount_Etjo_Airport" + }, + { + "id": "314120", + "ident": "FYMG", + "type": "small_airport", + "name": "Midgard Airport", + "latitude_deg": "-22.0106", + "longitude_deg": "17.37", + "elevation_ft": "5125", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OD", + "municipality": "Midgard", + "scheduled_service": "no", + "gps_code": "FYMG", + "iata_code": "MQG" + }, + { + "id": "29587", + "ident": "FYMH", + "type": "small_airport", + "name": "Maltahoehe Airstrip", + "latitude_deg": "-24.771900177001953", + "longitude_deg": "16.979400634765625", + "elevation_ft": "4511", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Maltahoehe", + "scheduled_service": "no", + "gps_code": "FYMH" + }, + { + "id": "3030", + "ident": "FYML", + "type": "medium_airport", + "name": "Mariental Airport", + "latitude_deg": "-24.60540008544922", + "longitude_deg": "17.925399780273438", + "elevation_ft": "3650", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Mariental", + "scheduled_service": "no", + "gps_code": "FYML" + }, + { + "id": "29590", + "ident": "FYMO", + "type": "small_airport", + "name": "Mokuti Lodge Airport", + "latitude_deg": "-18.81279945373535", + "longitude_deg": "17.05940055847168", + "elevation_ft": "3665", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OT", + "municipality": "Mokuti Lodge", + "scheduled_service": "no", + "gps_code": "FYMO", + "iata_code": "OKU" + }, + { + "id": "345675", + "ident": "FYMW", + "type": "small_airport", + "name": "Moewe Bay Airport", + "latitude_deg": "-19.392", + "longitude_deg": "12.7422", + "elevation_ft": "30", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KU", + "scheduled_service": "no", + "gps_code": "FYMW" + }, + { + "id": "29596", + "ident": "FYNA", + "type": "small_airport", + "name": "Namutoni Airport", + "latitude_deg": "-18.8064", + "longitude_deg": "16.9272", + "elevation_ft": "3579", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OT", + "municipality": "Namutoni", + "scheduled_service": "no", + "gps_code": "FYNA", + "iata_code": "NNI" + }, + { + "id": "3031", + "ident": "FYOA", + "type": "medium_airport", + "name": "Ondangwa Airport", + "latitude_deg": "-17.878201", + "longitude_deg": "15.9526", + "elevation_ft": "3599", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ON", + "municipality": "Ondangwa", + "scheduled_service": "yes", + "gps_code": "FYOA", + "iata_code": "OND", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ondangwa_Airport" + }, + { + "id": "29605", + "ident": "FYOE", + "type": "small_airport", + "name": "Omega Airport", + "latitude_deg": "-18.0303", + "longitude_deg": "22.189699", + "elevation_ft": "3346", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KE", + "municipality": "Omega", + "scheduled_service": "no", + "gps_code": "FYOE", + "iata_code": "OMG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Omega_Airport" + }, + { + "id": "3032", + "ident": "FYOG", + "type": "medium_airport", + "name": "Oranjemund Airport", + "latitude_deg": "-28.5847", + "longitude_deg": "16.446699", + "elevation_ft": "14", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Oranjemund", + "scheduled_service": "yes", + "gps_code": "FYOG", + "iata_code": "OMD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oranjemund_Airport" + }, + { + "id": "324059", + "ident": "FYOH", + "type": "small_airport", + "name": "Okahao Airport", + "latitude_deg": "-17.881279", + "longitude_deg": "15.075491", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OS", + "municipality": "Okahao", + "scheduled_service": "no", + "gps_code": "FYOH" + }, + { + "id": "29611", + "ident": "FYOJ", + "type": "small_airport", + "name": "Outjo Airport", + "latitude_deg": "-20.075300216675", + "longitude_deg": "16.124700546265", + "elevation_ft": "4334", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KU", + "municipality": "Outjo", + "scheduled_service": "no", + "gps_code": "FYOJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Outjo_Airport" + }, + { + "id": "29602", + "ident": "FYOM", + "type": "small_airport", + "name": "Omaruru Airport", + "latitude_deg": "-21.415000915527344", + "longitude_deg": "15.93809986114502", + "elevation_ft": "3993", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ER", + "municipality": "Omaruru", + "scheduled_service": "no", + "gps_code": "FYOM" + }, + { + "id": "29599", + "ident": "FYON", + "type": "small_airport", + "name": "Okahandja Airstrip", + "latitude_deg": "-22.013900756835938", + "longitude_deg": "16.897499084472656", + "elevation_ft": "4321", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OD", + "municipality": "Okahandja", + "scheduled_service": "no", + "gps_code": "FYON" + }, + { + "id": "29600", + "ident": "FYOO", + "type": "small_airport", + "name": "Okaukuejo Airport", + "latitude_deg": "-19.149200439453125", + "longitude_deg": "15.91189956665039", + "elevation_ft": "3911", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KU", + "municipality": "Okaukuejo", + "scheduled_service": "no", + "gps_code": "FYOO", + "iata_code": "OKF" + }, + { + "id": "318394", + "ident": "FYOP", + "type": "small_airport", + "name": "Opuwa Airport", + "latitude_deg": "-18.061424", + "longitude_deg": "13.85047", + "elevation_ft": "3770", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KU", + "municipality": "Opuwa", + "scheduled_service": "no", + "gps_code": "FYOP", + "iata_code": "OPW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Opuwa_Airport" + }, + { + "id": "315376", + "ident": "FYOS", + "type": "small_airport", + "name": "Oshakati Airport", + "latitude_deg": "-17.797", + "longitude_deg": "15.6993", + "elevation_ft": "3616", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ON", + "municipality": "Oshakati", + "scheduled_service": "no", + "gps_code": "FYOS", + "iata_code": "OHI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oshakati_Airport" + }, + { + "id": "29608", + "ident": "FYOU", + "type": "small_airport", + "name": "Operet Airport", + "latitude_deg": "-18.609399795532227", + "longitude_deg": "17.149700164794922", + "elevation_ft": "3625", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OT", + "municipality": "Operet", + "scheduled_service": "no", + "gps_code": "FYOU" + }, + { + "id": "29610", + "ident": "FYOW", + "type": "small_airport", + "name": "Otjiwarongo Airport", + "latitude_deg": "-20.4347", + "longitude_deg": "16.660801", + "elevation_ft": "4859", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OD", + "municipality": "Otjiwarongo", + "scheduled_service": "no", + "gps_code": "FYOW", + "iata_code": "OTJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Otjiwarongo_Airport" + }, + { + "id": "29612", + "ident": "FYPO", + "type": "small_airport", + "name": "Pokweni Glider Airport", + "latitude_deg": "-23.649999618530273", + "longitude_deg": "17.729999542236328", + "elevation_ft": "4177", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no", + "gps_code": "FYPO" + }, + { + "id": "3033", + "ident": "FYRC", + "type": "small_airport", + "name": "Ruacana Airport", + "latitude_deg": "-17.420601", + "longitude_deg": "14.3717", + "elevation_ft": "3765", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KU", + "municipality": "Ruacana", + "scheduled_service": "no", + "gps_code": "FYRC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ruacana_Airport" + }, + { + "id": "3034", + "ident": "FYRP", + "type": "closed", + "name": "Rosh Pinah Airport", + "latitude_deg": "-27.9643", + "longitude_deg": "16.753901", + "elevation_ft": "1274", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Rosh Pinah", + "scheduled_service": "no", + "gps_code": "FYRP" + }, + { + "id": "30316", + "ident": "FYRR", + "type": "small_airport", + "name": "Rag Rock Airport", + "latitude_deg": "-20.53809928894043", + "longitude_deg": "14.433099746704102", + "elevation_ft": "2100", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KU", + "scheduled_service": "no", + "gps_code": "FYRR" + }, + { + "id": "3035", + "ident": "FYRU", + "type": "medium_airport", + "name": "Rundu Airport", + "latitude_deg": "-17.956499099731", + "longitude_deg": "19.719400405884", + "elevation_ft": "3627", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KE", + "municipality": "Rundu", + "scheduled_service": "yes", + "gps_code": "FYRU", + "iata_code": "NDU", + "wikipedia_link": "http://ourairports.com/airports/FYRU/#lat=-17.956499099731445,lon=19.71940040588379,zoom=13,type=Satellite,airport=FYRU" + }, + { + "id": "29620", + "ident": "FYSA", + "type": "small_airport", + "name": "Skorpion Mine Airport", + "latitude_deg": "-27.8763999939", + "longitude_deg": "16.6478004456", + "elevation_ft": "1870", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Rosh Pinah", + "scheduled_service": "no", + "gps_code": "FYSA", + "iata_code": "RHN" + }, + { + "id": "345672", + "ident": "FYSF", + "type": "small_airport", + "name": "Sesfontein Airport", + "latitude_deg": "-19.10185", + "longitude_deg": "13.64785", + "elevation_ft": "1800", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KU", + "scheduled_service": "no", + "gps_code": "FYSF" + }, + { + "id": "29623", + "ident": "FYSL", + "type": "small_airport", + "name": "Sossusvlei Mountain Lodge Airport", + "latitude_deg": "-24.803300857544", + "longitude_deg": "15.89109992981", + "elevation_ft": "2844", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Sossusvlei Desert Lodge", + "scheduled_service": "no", + "gps_code": "FYSL" + }, + { + "id": "29627", + "ident": "FYSM", + "type": "small_airport", + "name": "Swakopmund Municipal Aerodrome", + "latitude_deg": "-22.6619", + "longitude_deg": "14.5681", + "elevation_ft": "207", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ER", + "municipality": "Swakopmund", + "scheduled_service": "yes", + "gps_code": "FYSM", + "iata_code": "SWP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Swakopmund_Airport" + }, + { + "id": "29609", + "ident": "FYSN", + "type": "small_airport", + "name": "Osona Airstrip", + "latitude_deg": "-22.107799530029297", + "longitude_deg": "16.979700088500977", + "elevation_ft": "4449", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OD", + "municipality": "Osona", + "scheduled_service": "no", + "gps_code": "FYSN" + }, + { + "id": "29621", + "ident": "FYSO", + "type": "small_airport", + "name": "Solitaire Airport", + "latitude_deg": "-23.900800704956055", + "longitude_deg": "16.00469970703125", + "elevation_ft": "3488", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "municipality": "Solitaire", + "scheduled_service": "no", + "gps_code": "FYSO" + }, + { + "id": "29624", + "ident": "FYSP", + "type": "small_airport", + "name": "Stampriet Pan Airport", + "latitude_deg": "-24.35219955444336", + "longitude_deg": "18.433300018310547", + "elevation_ft": "3819", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Stampriet", + "scheduled_service": "no", + "gps_code": "FYSP" + }, + { + "id": "29619", + "ident": "FYSS", + "type": "small_airport", + "name": "Sesriem Airstrip", + "latitude_deg": "-24.512800216675", + "longitude_deg": "15.746700286865", + "elevation_ft": "2454", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no", + "gps_code": "FYSS", + "iata_code": "SZM" + }, + { + "id": "29626", + "ident": "FYST", + "type": "small_airport", + "name": "Strate Airport", + "latitude_deg": "-23.96780014038086", + "longitude_deg": "18.548900604248047", + "elevation_ft": "4019", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no", + "gps_code": "FYST" + }, + { + "id": "309424", + "ident": "FYTE", + "type": "small_airport", + "name": "Terrace Bay Airport", + "latitude_deg": "-19.9713", + "longitude_deg": "13.0249", + "elevation_ft": "32", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KU", + "municipality": "Terrace Bay", + "scheduled_service": "no", + "gps_code": "FYTE", + "iata_code": "TCY" + }, + { + "id": "29630", + "ident": "FYTK", + "type": "small_airport", + "name": "Tsumkwe Airport", + "latitude_deg": "-19.584999084473", + "longitude_deg": "20.452800750732", + "elevation_ft": "3780", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OD", + "municipality": "Tsumkwe", + "scheduled_service": "no", + "gps_code": "FYTK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tsumkwe_Airport" + }, + { + "id": "3036", + "ident": "FYTM", + "type": "medium_airport", + "name": "Tsumeb Airport", + "latitude_deg": "-19.26189994812", + "longitude_deg": "17.732500076294", + "elevation_ft": "4353", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OT", + "municipality": "Tsumeb", + "scheduled_service": "no", + "gps_code": "FYTM", + "iata_code": "TSB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tsumeb_Airport" + }, + { + "id": "29631", + "ident": "FYUS", + "type": "small_airport", + "name": "Uis Mine Airport", + "latitude_deg": "-21.229999542236328", + "longitude_deg": "14.867199897766113", + "elevation_ft": "2644", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ER", + "municipality": "Uis Mine", + "scheduled_service": "no", + "gps_code": "FYUS" + }, + { + "id": "3037", + "ident": "FYWB", + "type": "medium_airport", + "name": "Walvis Bay Airport", + "latitude_deg": "-22.9799", + "longitude_deg": "14.6453", + "elevation_ft": "299", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ER", + "municipality": "Walvis Bay", + "scheduled_service": "yes", + "gps_code": "FYWB", + "iata_code": "WVB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Walvis_Bay_Airport" + }, + { + "id": "29638", + "ident": "FYWD", + "type": "small_airport", + "name": "Wolwedans Airport", + "latitude_deg": "-25.116899490356445", + "longitude_deg": "16.000600814819336", + "elevation_ft": "3271", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no", + "gps_code": "FYWD" + }, + { + "id": "3038", + "ident": "FYWE", + "type": "medium_airport", + "name": "Eros Airport", + "latitude_deg": "-22.612199783325195", + "longitude_deg": "17.080400466918945", + "elevation_ft": "5575", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "municipality": "Windhoek", + "scheduled_service": "yes", + "gps_code": "FYWE", + "iata_code": "ERS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eros_Airport" + }, + { + "id": "3039", + "ident": "FYWH", + "type": "large_airport", + "name": "Hosea Kutako International Airport", + "latitude_deg": "-22.4799", + "longitude_deg": "17.4709", + "elevation_ft": "5640", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "municipality": "Windhoek", + "scheduled_service": "yes", + "gps_code": "FYWH", + "iata_code": "WDH", + "home_link": "http://airports.com.na/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Windhoek_Hosea_Kutako_International_Airport", + "keywords": "J.G. Strijdom Airport" + }, + { + "id": "29635", + "ident": "FYWI", + "type": "small_airport", + "name": "Witvlei Airport", + "latitude_deg": "-22.40530014038086", + "longitude_deg": "18.459199905395508", + "elevation_ft": "4800", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "municipality": "Witvlei", + "scheduled_service": "no", + "gps_code": "FYWI" + }, + { + "id": "29548", + "ident": "FYXX", + "type": "small_airport", + "name": "Canon Lodge Airport", + "latitude_deg": "-27.659700393676758", + "longitude_deg": "17.837799072265625", + "elevation_ft": "3058", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "scheduled_service": "no", + "gps_code": "FYXX" + }, + { + "id": "3040", + "ident": "FZAA", + "type": "large_airport", + "name": "Ndjili International Airport", + "latitude_deg": "-4.38575", + "longitude_deg": "15.4446", + "elevation_ft": "1027", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KN", + "municipality": "Kinshasa", + "scheduled_service": "yes", + "gps_code": "FZAA", + "iata_code": "FIH", + "wikipedia_link": "https://en.wikipedia.org/wiki/N%27djili_Airport" + }, + { + "id": "3041", + "ident": "FZAB", + "type": "medium_airport", + "name": "Ndolo Airport", + "latitude_deg": "-4.32666015625", + "longitude_deg": "15.327500343323", + "elevation_ft": "915", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KN", + "municipality": "N'dolo", + "scheduled_service": "no", + "gps_code": "FZAB", + "iata_code": "NLO", + "wikipedia_link": "https://en.wikipedia.org/wiki/N%27Dolo_Airport", + "keywords": "N'Dolo Airport" + }, + { + "id": "31299", + "ident": "FZAD", + "type": "small_airport", + "name": "Celo Zongo Airport", + "latitude_deg": "-4.790881", + "longitude_deg": "14.905695", + "elevation_ft": "1660", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BC", + "municipality": "Celo Zongo", + "scheduled_service": "no", + "gps_code": "FZAD" + }, + { + "id": "31300", + "ident": "FZAE", + "type": "small_airport", + "name": "Kimpoko Airport", + "latitude_deg": "-4.2170000076293945", + "longitude_deg": "15.567000389099121", + "elevation_ft": "1017", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KN", + "municipality": "Kimpoko", + "scheduled_service": "no", + "gps_code": "FZAE" + }, + { + "id": "31301", + "ident": "FZAF", + "type": "small_airport", + "name": "Nsangi Airport", + "latitude_deg": "-5.599999904632568", + "longitude_deg": "15.317000389099121", + "elevation_ft": "2297", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BC", + "municipality": "Nsangi", + "scheduled_service": "no", + "gps_code": "FZAF" + }, + { + "id": "3042", + "ident": "FZAG", + "type": "small_airport", + "name": "Muanda Airport", + "latitude_deg": "-5.930637", + "longitude_deg": "12.351334", + "elevation_ft": "89", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BC", + "municipality": "Muanda", + "scheduled_service": "yes", + "gps_code": "FZAG", + "iata_code": "MNB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Muanda_Airport" + }, + { + "id": "31302", + "ident": "FZAH", + "type": "small_airport", + "name": "Tshela Airport", + "latitude_deg": "-4.982999801635742", + "longitude_deg": "12.932999610900879", + "elevation_ft": "361", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BC", + "municipality": "Tshela", + "scheduled_service": "no", + "gps_code": "FZAH" + }, + { + "id": "3043", + "ident": "FZAI", + "type": "closed", + "name": "Kitona Air Base", + "latitude_deg": "-5.918629", + "longitude_deg": "12.446136", + "elevation_ft": "394", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BC", + "municipality": "Kitona", + "scheduled_service": "no", + "gps_code": "FZAI" + }, + { + "id": "30783", + "ident": "FZAJ", + "type": "small_airport", + "name": "Boma Airport", + "latitude_deg": "-5.854", + "longitude_deg": "13.064", + "elevation_ft": "26", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BC", + "municipality": "Boma", + "scheduled_service": "yes", + "gps_code": "FZAJ", + "iata_code": "BOA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boma_Airport" + }, + { + "id": "31875", + "ident": "FZAL", + "type": "small_airport", + "name": "Luozi Airport", + "latitude_deg": "-4.943881", + "longitude_deg": "14.123337", + "elevation_ft": "722", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BC", + "municipality": "Luozi", + "scheduled_service": "no", + "gps_code": "FZAL", + "iata_code": "LZI" + }, + { + "id": "31877", + "ident": "FZAM", + "type": "small_airport", + "name": "Tshimpi Airport", + "latitude_deg": "-5.799610137939453", + "longitude_deg": "13.440400123596191", + "elevation_ft": "1115", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BC", + "municipality": "Matadi", + "scheduled_service": "yes", + "gps_code": "FZAM", + "iata_code": "MAT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tshimpi_Airport" + }, + { + "id": "31303", + "ident": "FZAN", + "type": "small_airport", + "name": "Inga Airport", + "latitude_deg": "-5.530681", + "longitude_deg": "13.578766", + "elevation_ft": "741", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BC", + "municipality": "Inga", + "scheduled_service": "no", + "gps_code": "FZAN" + }, + { + "id": "31304", + "ident": "FZAP", + "type": "small_airport", + "name": "Lukala Airport", + "latitude_deg": "-5.517000198364258", + "longitude_deg": "14.5", + "elevation_ft": "1312", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BC", + "municipality": "Lukala", + "scheduled_service": "no", + "gps_code": "FZAP" + }, + { + "id": "32033", + "ident": "FZAR", + "type": "small_airport", + "name": "N'Kolo-Fuma Airport", + "latitude_deg": "-5.421", + "longitude_deg": "14.8169", + "elevation_ft": "1476", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BC", + "municipality": "N'Kolo-Fuma", + "scheduled_service": "no", + "gps_code": "FZAR", + "iata_code": "NKL", + "keywords": "Kolo Fuma" + }, + { + "id": "31305", + "ident": "FZAS", + "type": "small_airport", + "name": "Inkisi Airport", + "latitude_deg": "-5.166999816894531", + "longitude_deg": "15", + "elevation_ft": "1968", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BC", + "municipality": "Inkisi", + "scheduled_service": "no", + "gps_code": "FZAS" + }, + { + "id": "31306", + "ident": "FZAU", + "type": "small_airport", + "name": "Konde Airport", + "latitude_deg": "-5.769707", + "longitude_deg": "12.250986", + "elevation_ft": "7", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BC", + "municipality": "Konde", + "scheduled_service": "no", + "gps_code": "FZAU" + }, + { + "id": "31307", + "ident": "FZAW", + "type": "small_airport", + "name": "Kwilu-Ngongo Airport", + "latitude_deg": "-5.5", + "longitude_deg": "14.699999809265137", + "elevation_ft": "1296", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BC", + "municipality": "Kwilu-Ngongo", + "scheduled_service": "no", + "gps_code": "FZAW" + }, + { + "id": "31308", + "ident": "FZAX", + "type": "small_airport", + "name": "Luheki Airport", + "latitude_deg": "-4.849999904632568", + "longitude_deg": "13.767000198364258", + "elevation_ft": "984", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BC", + "municipality": "Luheki", + "scheduled_service": "no", + "gps_code": "FZAX" + }, + { + "id": "31309", + "ident": "FZAY", + "type": "small_airport", + "name": "Mvula Sanda Airport", + "latitude_deg": "-5.62788", + "longitude_deg": "13.423684", + "elevation_ft": "1148", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BC", + "municipality": "Mvula Sanda", + "scheduled_service": "no", + "gps_code": "FZAY" + }, + { + "id": "31679", + "ident": "FZBA", + "type": "small_airport", + "name": "Inongo Airport", + "latitude_deg": "-1.947219967842102", + "longitude_deg": "18.28580093383789", + "elevation_ft": "1040", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Inongo", + "scheduled_service": "yes", + "gps_code": "FZBA", + "iata_code": "INO" + }, + { + "id": "31310", + "ident": "FZBB", + "type": "small_airport", + "name": "Bongimba Airport", + "latitude_deg": "-3.382999897003174", + "longitude_deg": "20", + "elevation_ft": "1476", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Bongimba", + "scheduled_service": "no", + "gps_code": "FZBB" + }, + { + "id": "31311", + "ident": "FZBC", + "type": "small_airport", + "name": "Bikoro Airport", + "latitude_deg": "-0.7329999804496765", + "longitude_deg": "18.132999420166016", + "elevation_ft": "1312", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Bikoro", + "scheduled_service": "no", + "gps_code": "FZBC" + }, + { + "id": "31312", + "ident": "FZBD", + "type": "small_airport", + "name": "Oshwe Airport", + "latitude_deg": "-3.423012", + "longitude_deg": "19.419662", + "elevation_ft": "1150", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Oshwe", + "scheduled_service": "no", + "gps_code": "FZBD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oshwe_Airport" + }, + { + "id": "31313", + "ident": "FZBE", + "type": "small_airport", + "name": "Beno Airport", + "latitude_deg": "-3.5999999046325684", + "longitude_deg": "17.783000946044922", + "elevation_ft": "1345", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Beno", + "scheduled_service": "no", + "gps_code": "FZBE" + }, + { + "id": "31314", + "ident": "FZBF", + "type": "small_airport", + "name": "Bonkita Airport", + "latitude_deg": "-3.0999999046325684", + "longitude_deg": "18.732999801635742", + "elevation_ft": "931", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Bonkita", + "scheduled_service": "no", + "gps_code": "FZBF" + }, + { + "id": "31315", + "ident": "FZBG", + "type": "small_airport", + "name": "Kempa Airport", + "latitude_deg": "-2.933000087738037", + "longitude_deg": "18.399999618530273", + "elevation_ft": "1148", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Kempa", + "scheduled_service": "no", + "gps_code": "FZBG" + }, + { + "id": "31316", + "ident": "FZBH", + "type": "small_airport", + "name": "Isongo Airport", + "latitude_deg": "-1.399999976158142", + "longitude_deg": "18.399999618530273", + "elevation_ft": "1020", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Isongo", + "scheduled_service": "no", + "gps_code": "FZBH" + }, + { + "id": "32030", + "ident": "FZBI", + "type": "small_airport", + "name": "Nioki Airport", + "latitude_deg": "-2.7174999713897705", + "longitude_deg": "17.68470001220703", + "elevation_ft": "1043", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Nioki", + "scheduled_service": "yes", + "gps_code": "FZBI", + "iata_code": "NIO" + }, + { + "id": "31317", + "ident": "FZBJ", + "type": "small_airport", + "name": "Mushie Airport", + "latitude_deg": "-3", + "longitude_deg": "16.933000564575195", + "elevation_ft": "1214", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Mushie", + "scheduled_service": "no", + "gps_code": "FZBJ" + }, + { + "id": "31318", + "ident": "FZBK", + "type": "small_airport", + "name": "Boshwe Airport", + "latitude_deg": "-3.066659927368164", + "longitude_deg": "18.641700744628906", + "elevation_ft": "1181", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Boshwe", + "scheduled_service": "no", + "gps_code": "FZBK" + }, + { + "id": "31319", + "ident": "FZBL", + "type": "small_airport", + "name": "Djokele Airport", + "latitude_deg": "-3.049999952316284", + "longitude_deg": "17.100000381469727", + "elevation_ft": "1007", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Djokele", + "scheduled_service": "no", + "gps_code": "FZBL" + }, + { + "id": "31320", + "ident": "FZBN", + "type": "small_airport", + "name": "Malebo Airport", + "latitude_deg": "-2.46461", + "longitude_deg": "16.48034", + "elevation_ft": "1411", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Malebo", + "scheduled_service": "no", + "gps_code": "FZBN" + }, + { + "id": "3044", + "ident": "FZBO", + "type": "medium_airport", + "name": "Bandundu Airport", + "latitude_deg": "-3.31132", + "longitude_deg": "17.381701", + "elevation_ft": "1063", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Bandundu", + "scheduled_service": "yes", + "gps_code": "FZBO", + "iata_code": "FDU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bandundu_Airport" + }, + { + "id": "31321", + "ident": "FZBP", + "type": "small_airport", + "name": "Bolongonkele Airport", + "latitude_deg": "-2.799989938735962", + "longitude_deg": "19.908300399780273", + "elevation_ft": "1158", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Bolongonkele", + "scheduled_service": "no", + "gps_code": "FZBP" + }, + { + "id": "31322", + "ident": "FZBQ", + "type": "small_airport", + "name": "Bindja Airport", + "latitude_deg": "-3.3833301067352295", + "longitude_deg": "19.659700393676758", + "elevation_ft": "1201", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Bindja", + "scheduled_service": "no", + "gps_code": "FZBQ" + }, + { + "id": "31323", + "ident": "FZBS", + "type": "small_airport", + "name": "Semendua Airport", + "latitude_deg": "-3.183000087738037", + "longitude_deg": "18.08300018310547", + "elevation_ft": "1148", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Semendua", + "scheduled_service": "no", + "gps_code": "FZBS" + }, + { + "id": "31775", + "ident": "FZBT", + "type": "small_airport", + "name": "Basango Mboliasa Airport", + "latitude_deg": "-1.434999942779541", + "longitude_deg": "19.02400016784668", + "elevation_ft": "1013", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Kiri", + "scheduled_service": "yes", + "gps_code": "FZBT", + "iata_code": "KRZ" + }, + { + "id": "31324", + "ident": "FZBU", + "type": "small_airport", + "name": "Ipeke Airport", + "latitude_deg": "-2.4830000400543213", + "longitude_deg": "18.25", + "elevation_ft": "1017", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Ipeke", + "scheduled_service": "no", + "gps_code": "FZBU" + }, + { + "id": "31325", + "ident": "FZBV", + "type": "small_airport", + "name": "Kempile Airport", + "latitude_deg": "-2.7170000076293945", + "longitude_deg": "18.132999420166016", + "elevation_ft": "984", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Kempile", + "scheduled_service": "no", + "gps_code": "FZBV" + }, + { + "id": "31326", + "ident": "FZBW", + "type": "small_airport", + "name": "Basengele Airport", + "latitude_deg": "-1.9170000553131104", + "longitude_deg": "17.91699981689453", + "elevation_ft": "1309", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Basengele", + "scheduled_service": "no", + "gps_code": "FZBW" + }, + { + "id": "3045", + "ident": "FZCA", + "type": "medium_airport", + "name": "Kikwit Airport", + "latitude_deg": "-5.03577", + "longitude_deg": "18.785601", + "elevation_ft": "1572", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Kikwit", + "scheduled_service": "yes", + "gps_code": "FZCA", + "iata_code": "KKW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kikwit_Airport" + }, + { + "id": "31665", + "ident": "FZCB", + "type": "small_airport", + "name": "Idiofa Airport", + "latitude_deg": "-5", + "longitude_deg": "19.600000381469727", + "elevation_ft": "2299", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Idiofa", + "scheduled_service": "no", + "gps_code": "FZCB", + "iata_code": "IDF" + }, + { + "id": "31327", + "ident": "FZCD", + "type": "small_airport", + "name": "Vanga Airport", + "latitude_deg": "-4.400000095367432", + "longitude_deg": "18.466999053955078", + "elevation_ft": "1312", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Vanga", + "scheduled_service": "no", + "gps_code": "FZCD" + }, + { + "id": "31863", + "ident": "FZCE", + "type": "small_airport", + "name": "Lusanga Airport", + "latitude_deg": "-4.800000190734863", + "longitude_deg": "18.716999053955078", + "elevation_ft": "1365", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Lusanga", + "scheduled_service": "no", + "gps_code": "FZCE", + "iata_code": "LUS" + }, + { + "id": "31328", + "ident": "FZCF", + "type": "small_airport", + "name": "Kahemba Airport", + "latitude_deg": "-7.333000183105469", + "longitude_deg": "19.017000198364258", + "elevation_ft": "3425", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Kahemba", + "scheduled_service": "no", + "gps_code": "FZCF" + }, + { + "id": "31329", + "ident": "FZCI", + "type": "small_airport", + "name": "Banga Airport", + "latitude_deg": "-5.458965", + "longitude_deg": "20.462208", + "elevation_ft": "2493", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Banga", + "scheduled_service": "no", + "gps_code": "FZCI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Banga_Airport" + }, + { + "id": "31330", + "ident": "FZCK", + "type": "small_airport", + "name": "Kajiji Airport", + "latitude_deg": "-7.617000102996826", + "longitude_deg": "18.549999237060547", + "elevation_ft": "3510", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Kajiji", + "scheduled_service": "no", + "gps_code": "FZCK" + }, + { + "id": "31331", + "ident": "FZCL", + "type": "small_airport", + "name": "Banza Lute Airport", + "latitude_deg": "-4.199999809265137", + "longitude_deg": "17.83300018310547", + "elevation_ft": "1476", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Banza Lute", + "scheduled_service": "no", + "gps_code": "FZCL" + }, + { + "id": "31332", + "ident": "FZCM", + "type": "small_airport", + "name": "Mangai Ii Airport", + "latitude_deg": "-4.083000183105469", + "longitude_deg": "19.5", + "elevation_ft": "1410", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Mangai Ii", + "scheduled_service": "no", + "gps_code": "FZCM" + }, + { + "id": "31333", + "ident": "FZCO", + "type": "small_airport", + "name": "Boko Airport", + "latitude_deg": "-5.300000190734863", + "longitude_deg": "16.850000381469727", + "elevation_ft": "2297", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Boko", + "scheduled_service": "no", + "gps_code": "FZCO" + }, + { + "id": "31334", + "ident": "FZCP", + "type": "small_airport", + "name": "Popokabaka Airport", + "latitude_deg": "-5.699999809265137", + "longitude_deg": "16.58300018310547", + "elevation_ft": "1575", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Popokabaka", + "scheduled_service": "no", + "gps_code": "FZCP" + }, + { + "id": "31335", + "ident": "FZCR", + "type": "small_airport", + "name": "Busala Airport", + "latitude_deg": "-4.132999897003174", + "longitude_deg": "18.716999053955078", + "elevation_ft": "1312", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Busala", + "scheduled_service": "no", + "gps_code": "FZCR" + }, + { + "id": "31336", + "ident": "FZCS", + "type": "small_airport", + "name": "Kenge Airport", + "latitude_deg": "-4.838890075683594", + "longitude_deg": "17.029199600219727", + "elevation_ft": "1808", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Kenge", + "scheduled_service": "no", + "gps_code": "FZCS" + }, + { + "id": "31337", + "ident": "FZCT", + "type": "small_airport", + "name": "Fatundu Airport", + "latitude_deg": "-4.132999897003174", + "longitude_deg": "17.299999237060547", + "elevation_ft": "1526", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Fatundu", + "scheduled_service": "no", + "gps_code": "FZCT" + }, + { + "id": "31338", + "ident": "FZCU", + "type": "small_airport", + "name": "Ito Airport", + "latitude_deg": "-3.3329999446868896", + "longitude_deg": "17.466999053955078", + "elevation_ft": "1148", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Ito", + "scheduled_service": "no", + "gps_code": "FZCU" + }, + { + "id": "31957", + "ident": "FZCV", + "type": "small_airport", + "name": "Masi Manimba Airport", + "latitude_deg": "-4.7829999923706055", + "longitude_deg": "17.850000381469727", + "elevation_ft": "1952", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Masi Manimba", + "scheduled_service": "no", + "gps_code": "FZCV", + "iata_code": "MSM" + }, + { + "id": "31339", + "ident": "FZCW", + "type": "small_airport", + "name": "Kikongo Sur Wamba Airport", + "latitude_deg": "-4.267000198364258", + "longitude_deg": "17.267000198364258", + "elevation_ft": "1312", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Kikongo Sur Wamba", + "scheduled_service": "no", + "gps_code": "FZCW" + }, + { + "id": "31340", + "ident": "FZCX", + "type": "small_airport", + "name": "Kimafu Airport", + "latitude_deg": "-4.599999904632568", + "longitude_deg": "17.58300018310547", + "elevation_ft": "1312", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Kimafu", + "scheduled_service": "no", + "gps_code": "FZCX" + }, + { + "id": "31341", + "ident": "FZCY", + "type": "small_airport", + "name": "Yuki Airport", + "latitude_deg": "-4.083000183105469", + "longitude_deg": "19.433000564575195", + "elevation_ft": "1398", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Yuki", + "scheduled_service": "no", + "gps_code": "FZCY" + }, + { + "id": "31342", + "ident": "FZDA", + "type": "small_airport", + "name": "Malanga Airport", + "latitude_deg": "-5.5329999923706055", + "longitude_deg": "14.850000381469727", + "elevation_ft": "1247", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BC", + "municipality": "Malanga", + "scheduled_service": "no", + "gps_code": "FZDA" + }, + { + "id": "31343", + "ident": "FZDB", + "type": "small_airport", + "name": "Kimbau Airport", + "latitude_deg": "-5.617000102996826", + "longitude_deg": "17.600000381469727", + "elevation_ft": "1640", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Kimbau", + "scheduled_service": "no", + "gps_code": "FZDB" + }, + { + "id": "31344", + "ident": "FZDD", + "type": "small_airport", + "name": "Wamba Luadi Airport", + "latitude_deg": "-6.550000190734863", + "longitude_deg": "17.399999618530273", + "elevation_ft": "2297", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Wamba Luadi", + "scheduled_service": "no", + "gps_code": "FZDD" + }, + { + "id": "31345", + "ident": "FZDE", + "type": "small_airport", + "name": "Tono Airport", + "latitude_deg": "-6.550000190734863", + "longitude_deg": "18.200000762939453", + "elevation_ft": "2461", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Tono", + "scheduled_service": "no", + "gps_code": "FZDE" + }, + { + "id": "31346", + "ident": "FZDF", + "type": "small_airport", + "name": "Nzamba Airport", + "latitude_deg": "-6.833000183105469", + "longitude_deg": "17.66699981689453", + "elevation_ft": "2953", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Nzamba", + "scheduled_service": "no", + "gps_code": "FZDF" + }, + { + "id": "31347", + "ident": "FZDG", + "type": "small_airport", + "name": "Nyanga Airport", + "latitude_deg": "-5.9670000076293945", + "longitude_deg": "20.41699981689453", + "elevation_ft": "2231", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Nyanga", + "scheduled_service": "no", + "gps_code": "FZDG" + }, + { + "id": "31348", + "ident": "FZDH", + "type": "small_airport", + "name": "Ngi Airport", + "latitude_deg": "-4.416999816894531", + "longitude_deg": "17.16699981689453", + "elevation_ft": "1509", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Ngi", + "scheduled_service": "no", + "gps_code": "FZDH" + }, + { + "id": "31349", + "ident": "FZDJ", + "type": "small_airport", + "name": "Mutena Airport", + "latitude_deg": "-6.767000198364258", + "longitude_deg": "21.149999618530273", + "elevation_ft": "2395", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Mutena", + "scheduled_service": "no", + "gps_code": "FZDJ" + }, + { + "id": "31350", + "ident": "FZDK", + "type": "small_airport", + "name": "Kipata Katika Airport", + "latitude_deg": "-5.0329999923706055", + "longitude_deg": "17.649999618530273", + "elevation_ft": "2133", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Kipata Katika", + "scheduled_service": "no", + "gps_code": "FZDK" + }, + { + "id": "31351", + "ident": "FZDL", + "type": "small_airport", + "name": "Kolokoso Airport", + "latitude_deg": "-4.449999809265137", + "longitude_deg": "17.41699981689453", + "elevation_ft": "1312", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Kolokoso", + "scheduled_service": "no", + "gps_code": "FZDL" + }, + { + "id": "31352", + "ident": "FZDM", + "type": "small_airport", + "name": "Masamuna Airport", + "latitude_deg": "-4.800000190734863", + "longitude_deg": "17.58300018310547", + "elevation_ft": "1476", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Masamuna", + "scheduled_service": "no", + "gps_code": "FZDM" + }, + { + "id": "31353", + "ident": "FZDN", + "type": "small_airport", + "name": "Mongo Wa Kenda Airport", + "latitude_deg": "-6.900000095367432", + "longitude_deg": "16.950000762939453", + "elevation_ft": "1804", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Mongo Wa Kenda", + "scheduled_service": "no", + "gps_code": "FZDN" + }, + { + "id": "31354", + "ident": "FZDO", + "type": "small_airport", + "name": "Moanza Airport", + "latitude_deg": "-5.5329999923706055", + "longitude_deg": "17.617000579833984", + "elevation_ft": "2297", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Moanza", + "scheduled_service": "no", + "gps_code": "FZDO" + }, + { + "id": "31355", + "ident": "FZDP", + "type": "small_airport", + "name": "Mukedi Airport", + "latitude_deg": "-5.699999809265137", + "longitude_deg": "19.767000198364258", + "elevation_ft": "1804", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Mukedi", + "scheduled_service": "no", + "gps_code": "FZDP" + }, + { + "id": "31356", + "ident": "FZDQ", + "type": "small_airport", + "name": "Mazelele Airport", + "latitude_deg": "-7.2829999923706055", + "longitude_deg": "17.033000946044922", + "elevation_ft": "1650", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Mazelele", + "scheduled_service": "no", + "gps_code": "FZDQ" + }, + { + "id": "31357", + "ident": "FZDR", + "type": "small_airport", + "name": "Bokela Airport", + "latitude_deg": "-1.149999976158142", + "longitude_deg": "21.899999618530273", + "elevation_ft": "1210", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Bokela", + "scheduled_service": "no", + "gps_code": "FZDR" + }, + { + "id": "31358", + "ident": "FZDS", + "type": "small_airport", + "name": "Yasa Bongo Airport", + "latitude_deg": "-4.449999809265137", + "longitude_deg": "17.783000946044922", + "elevation_ft": "2008", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Yasa Bongo", + "scheduled_service": "no", + "gps_code": "FZDS" + }, + { + "id": "31359", + "ident": "FZDT", + "type": "small_airport", + "name": "Matari Airport", + "latitude_deg": "-6.199999809265137", + "longitude_deg": "17.649999618530273", + "elevation_ft": "2559", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Matari", + "scheduled_service": "no", + "gps_code": "FZDT" + }, + { + "id": "31360", + "ident": "FZDU", + "type": "small_airport", + "name": "Kimpangu Airport", + "latitude_deg": "-5.833000183105469", + "longitude_deg": "15", + "elevation_ft": "2133", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BC", + "municipality": "Kimpangu", + "scheduled_service": "no", + "gps_code": "FZDU" + }, + { + "id": "31361", + "ident": "FZDY", + "type": "small_airport", + "name": "Missayi Airport", + "latitude_deg": "-3.882999897003174", + "longitude_deg": "17.350000381469727", + "elevation_ft": "1280", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Missayi", + "scheduled_service": "no", + "gps_code": "FZDY" + }, + { + "id": "3046", + "ident": "FZEA", + "type": "medium_airport", + "name": "Mbandaka Airport", + "latitude_deg": "0.0226000007242", + "longitude_deg": "18.2887001038", + "elevation_ft": "1040", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Mbandaka", + "scheduled_service": "yes", + "gps_code": "FZEA", + "iata_code": "MDK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mbandaka_Airport" + }, + { + "id": "31362", + "ident": "FZEB", + "type": "small_airport", + "name": "Monieka Airport", + "latitude_deg": "-0.06700000166893005", + "longitude_deg": "19.982999801635742", + "elevation_ft": "1253", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Monieka", + "scheduled_service": "no", + "gps_code": "FZEB" + }, + { + "id": "31363", + "ident": "FZEI", + "type": "small_airport", + "name": "Ingende Airport", + "latitude_deg": "0.25", + "longitude_deg": "18.933000564575195", + "elevation_ft": "1246", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Ingende", + "scheduled_service": "no", + "gps_code": "FZEI" + }, + { + "id": "31364", + "ident": "FZEM", + "type": "small_airport", + "name": "Yembe Moke Airport", + "latitude_deg": "-4.683000087738037", + "longitude_deg": "18.216999053955078", + "elevation_ft": "1220", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-BN", + "municipality": "Yembe Moke", + "scheduled_service": "no", + "gps_code": "FZEM" + }, + { + "id": "30796", + "ident": "FZEN", + "type": "small_airport", + "name": "Basankusu Airport", + "latitude_deg": "1.22472", + "longitude_deg": "19.7889", + "elevation_ft": "1217", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Basankusu", + "scheduled_service": "yes", + "gps_code": "FZEN", + "iata_code": "BSU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Basankusu_Airport" + }, + { + "id": "31365", + "ident": "FZEO", + "type": "small_airport", + "name": "Beongo Airport", + "latitude_deg": "1.0169999599456787", + "longitude_deg": "20.600000381469727", + "elevation_ft": "1279", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Beongo", + "scheduled_service": "no", + "gps_code": "FZEO" + }, + { + "id": "31366", + "ident": "FZEP", + "type": "small_airport", + "name": "Mentole Airport", + "latitude_deg": "1.3170000314712524", + "longitude_deg": "20.700000762939453", + "elevation_ft": "1295", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Mentole", + "scheduled_service": "no", + "gps_code": "FZEP" + }, + { + "id": "31367", + "ident": "FZER", + "type": "small_airport", + "name": "Kodoro Airport", + "latitude_deg": "1.2829999923706055", + "longitude_deg": "20.33300018310547", + "elevation_ft": "1312", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Kodoro", + "scheduled_service": "no", + "gps_code": "FZER" + }, + { + "id": "31368", + "ident": "FZES", + "type": "small_airport", + "name": "Ngumu Airport", + "latitude_deg": "1.4670000076293945", + "longitude_deg": "20.299999237060547", + "elevation_ft": "1227", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Ngumu", + "scheduled_service": "no", + "gps_code": "FZES" + }, + { + "id": "31825", + "ident": "FZFA", + "type": "small_airport", + "name": "Libenge Airport", + "latitude_deg": "3.632999897003174", + "longitude_deg": "18.632999420166016", + "elevation_ft": "1125", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Libenge", + "scheduled_service": "no", + "gps_code": "FZFA", + "iata_code": "LIE" + }, + { + "id": "31369", + "ident": "FZFB", + "type": "small_airport", + "name": "Imesse Airport", + "latitude_deg": "2.5169999599456787", + "longitude_deg": "18.283000946044922", + "elevation_ft": "1110", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Imesse", + "scheduled_service": "no", + "gps_code": "FZFB" + }, + { + "id": "31370", + "ident": "FZFC", + "type": "small_airport", + "name": "Engengele Airport", + "latitude_deg": "2.0999999046325684", + "longitude_deg": "22.697200775146484", + "elevation_ft": "1279", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Engengele", + "scheduled_service": "no", + "gps_code": "FZFC" + }, + { + "id": "3047", + "ident": "FZFD", + "type": "medium_airport", + "name": "Gbadolite Airport", + "latitude_deg": "4.25321", + "longitude_deg": "20.9753", + "elevation_ft": "1509", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Gbadolite", + "scheduled_service": "yes", + "gps_code": "FZFD", + "iata_code": "BDT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gbadolite_Airport" + }, + { + "id": "31371", + "ident": "FZFE", + "type": "small_airport", + "name": "Abumumbazi Airport", + "latitude_deg": "3.695793", + "longitude_deg": "22.150068", + "elevation_ft": "1499", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Abumumbazi", + "scheduled_service": "no", + "gps_code": "FZFE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abumumbazi_Airport" + }, + { + "id": "31372", + "ident": "FZFF", + "type": "small_airport", + "name": "Bau Airport", + "latitude_deg": "3.7330000400543213", + "longitude_deg": "19.08300018310547", + "elevation_ft": "1640", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Bau", + "scheduled_service": "no", + "gps_code": "FZFF" + }, + { + "id": "31373", + "ident": "FZFG", + "type": "small_airport", + "name": "Bokada Airport", + "latitude_deg": "4.117000102996826", + "longitude_deg": "19.41699981689453", + "elevation_ft": "1647", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Bokada", + "scheduled_service": "no", + "gps_code": "FZFG" + }, + { + "id": "31374", + "ident": "FZFH", + "type": "small_airport", + "name": "Mokaria-Yamoleka Airport", + "latitude_deg": "2.117000102996826", + "longitude_deg": "23.283000946044922", + "elevation_ft": "1378", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Mokaria-Yamoleka", + "scheduled_service": "no", + "gps_code": "FZFH" + }, + { + "id": "31375", + "ident": "FZFJ", + "type": "small_airport", + "name": "Goyongo Airport", + "latitude_deg": "4.183000087738037", + "longitude_deg": "19.783000946044922", + "elevation_ft": "1640", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Goyongo", + "scheduled_service": "no", + "gps_code": "FZFJ" + }, + { + "id": "3048", + "ident": "FZFK", + "type": "medium_airport", + "name": "Gemena Airport", + "latitude_deg": "3.2353699207299997", + "longitude_deg": "19.771299362199997", + "elevation_ft": "1378", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Gemena", + "scheduled_service": "yes", + "gps_code": "FZFK", + "iata_code": "GMA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gemena_Airport" + }, + { + "id": "31376", + "ident": "FZFL", + "type": "small_airport", + "name": "Kala Airport", + "latitude_deg": "3.383611111", + "longitude_deg": "18.654722222", + "elevation_ft": "1640", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Kala", + "scheduled_service": "no", + "gps_code": "FZFL" + }, + { + "id": "31377", + "ident": "FZFN", + "type": "small_airport", + "name": "Lombo Airport", + "latitude_deg": "4.438889980316162", + "longitude_deg": "19.53890037536621", + "elevation_ft": "2331", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Lombo", + "scheduled_service": "no", + "gps_code": "FZFN" + }, + { + "id": "3049", + "ident": "FZFP", + "type": "small_airport", + "name": "Kotakoli Airport", + "latitude_deg": "4.157639980316162", + "longitude_deg": "21.65089988708496", + "elevation_ft": "1801", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "scheduled_service": "no", + "gps_code": "FZFP", + "iata_code": "KLI" + }, + { + "id": "31378", + "ident": "FZFQ", + "type": "small_airport", + "name": "Mpaka Airport", + "latitude_deg": "4.117000102996826", + "longitude_deg": "19.216999053955078", + "elevation_ft": "1969", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Mpaka", + "scheduled_service": "no", + "gps_code": "FZFQ" + }, + { + "id": "31379", + "ident": "FZFR", + "type": "small_airport", + "name": "Mombongo Airport", + "latitude_deg": "1.649999976158142", + "longitude_deg": "23.149999618530273", + "elevation_ft": "1476", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Mombongo", + "scheduled_service": "no", + "gps_code": "FZFR" + }, + { + "id": "31380", + "ident": "FZFS", + "type": "small_airport", + "name": "Karawa Airport", + "latitude_deg": "3.367000102996826", + "longitude_deg": "20.299999237060547", + "elevation_ft": "1640", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Karawa", + "scheduled_service": "no", + "gps_code": "FZFS" + }, + { + "id": "31381", + "ident": "FZFT", + "type": "small_airport", + "name": "Tandala Airport", + "latitude_deg": "2.97758451856", + "longitude_deg": "19.3514084816", + "elevation_ft": "1640", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Tandala", + "scheduled_service": "no", + "gps_code": "FZFT" + }, + { + "id": "30773", + "ident": "FZFU", + "type": "small_airport", + "name": "Bumbar Airport", + "latitude_deg": "2.18278", + "longitude_deg": "22.481701", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Bumbar", + "scheduled_service": "no", + "gps_code": "FZFU", + "iata_code": "BMB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bumba_Airport" + }, + { + "id": "31382", + "ident": "FZFV", + "type": "small_airport", + "name": "Gbado Airport", + "latitude_deg": "3.882999897003174", + "longitude_deg": "20.783000946044922", + "elevation_ft": "1476", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Gbado", + "scheduled_service": "no", + "gps_code": "FZFV" + }, + { + "id": "31383", + "ident": "FZFW", + "type": "small_airport", + "name": "Gwaka Airport", + "latitude_deg": "2.4670000076293945", + "longitude_deg": "20.100000381469727", + "elevation_ft": "1476", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Gwaka", + "scheduled_service": "no", + "gps_code": "FZFW" + }, + { + "id": "3050", + "ident": "FZGA", + "type": "medium_airport", + "name": "Lisala Airport", + "latitude_deg": "2.17066", + "longitude_deg": "21.496901", + "elevation_ft": "1509", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "scheduled_service": "no", + "gps_code": "FZGA", + "iata_code": "LIQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lisala_Airport" + }, + { + "id": "31384", + "ident": "FZGB", + "type": "small_airport", + "name": "Bosondjo Airport", + "latitude_deg": "1.8669999837875366", + "longitude_deg": "21.783000946044922", + "elevation_ft": "1312", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Bosondjo", + "scheduled_service": "no", + "gps_code": "FZGB" + }, + { + "id": "31385", + "ident": "FZGC", + "type": "small_airport", + "name": "Bolila Airport", + "latitude_deg": "1.850000023841858", + "longitude_deg": "23.117000579833984", + "elevation_ft": "1279", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Bolila", + "scheduled_service": "no", + "gps_code": "FZGC" + }, + { + "id": "31386", + "ident": "FZGE", + "type": "small_airport", + "name": "Binga Airport", + "latitude_deg": "2.433000087738037", + "longitude_deg": "20.5", + "elevation_ft": "1476", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Binga", + "scheduled_service": "no", + "gps_code": "FZGE" + }, + { + "id": "31387", + "ident": "FZGF", + "type": "small_airport", + "name": "Bokungu Airport", + "latitude_deg": "-0.6830000281333923", + "longitude_deg": "22.33300018310547", + "elevation_ft": "1214", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Bokungu", + "scheduled_service": "no", + "gps_code": "FZGF" + }, + { + "id": "31388", + "ident": "FZGG", + "type": "small_airport", + "name": "Mondombe Airport", + "latitude_deg": "-0.8830000162124634", + "longitude_deg": "22.816999435424805", + "elevation_ft": "1457", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Mondombe", + "scheduled_service": "no", + "gps_code": "FZGG" + }, + { + "id": "31389", + "ident": "FZGH", + "type": "small_airport", + "name": "Wema Airport", + "latitude_deg": "-0.43299999833106995", + "longitude_deg": "21.649999618530273", + "elevation_ft": "1368", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Wema", + "scheduled_service": "no", + "gps_code": "FZGH" + }, + { + "id": "31390", + "ident": "FZGI", + "type": "small_airport", + "name": "Yalingimba Airport", + "latitude_deg": "2.2829999923706055", + "longitude_deg": "22.850000381469727", + "elevation_ft": "1427", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Yalingimba", + "scheduled_service": "no", + "gps_code": "FZGI" + }, + { + "id": "30779", + "ident": "FZGN", + "type": "small_airport", + "name": "Boende Airport", + "latitude_deg": "-0.21699999272823334", + "longitude_deg": "20.850000381469727", + "elevation_ft": "1168", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Boende", + "scheduled_service": "no", + "gps_code": "FZGN", + "iata_code": "BNB" + }, + { + "id": "31391", + "ident": "FZGT", + "type": "small_airport", + "name": "Boteka Airport", + "latitude_deg": "-0.31700000166893005", + "longitude_deg": "19.066999435424805", + "elevation_ft": "1247", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Boteka", + "scheduled_service": "no", + "gps_code": "FZGT" + }, + { + "id": "31671", + "ident": "FZGV", + "type": "small_airport", + "name": "Ikela Airport", + "latitude_deg": "-1.048109", + "longitude_deg": "23.372501", + "elevation_ft": "1283", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Ikela", + "scheduled_service": "no", + "gps_code": "FZGV", + "iata_code": "IKL" + }, + { + "id": "31392", + "ident": "FZGX", + "type": "small_airport", + "name": "Monkoto Airport", + "latitude_deg": "-1.600000023841858", + "longitude_deg": "20.649999618530273", + "elevation_ft": "1282", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Monkoto", + "scheduled_service": "no", + "gps_code": "FZGX" + }, + { + "id": "31393", + "ident": "FZGY", + "type": "small_airport", + "name": "Yemo Airport", + "latitude_deg": "-0.46700000762939453", + "longitude_deg": "21.933000564575195", + "elevation_ft": "1525", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-EQ", + "municipality": "Yemo", + "scheduled_service": "no", + "gps_code": "FZGY" + }, + { + "id": "3051", + "ident": "FZIA", + "type": "small_airport", + "name": "Kisangani Simisini Airport", + "latitude_deg": "0.5174999833106995", + "longitude_deg": "25.155000686645508", + "elevation_ft": "1289", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "scheduled_service": "no", + "gps_code": "FZIA" + }, + { + "id": "3052", + "ident": "FZIC", + "type": "medium_airport", + "name": "Bangoka International Airport", + "latitude_deg": "0.481638997793", + "longitude_deg": "25.3379993439", + "elevation_ft": "1417", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Kisangani", + "scheduled_service": "yes", + "gps_code": "FZIC", + "iata_code": "FKI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bangoka_International_Airport" + }, + { + "id": "31394", + "ident": "FZIG", + "type": "small_airport", + "name": "KM 95 CFL Airport", + "latitude_deg": "-0.15000000596046448", + "longitude_deg": "25.350000381469727", + "elevation_ft": "1591", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "KM 95 CFL", + "scheduled_service": "no", + "gps_code": "FZIG" + }, + { + "id": "31395", + "ident": "FZIK", + "type": "small_airport", + "name": "Katende Airport", + "latitude_deg": "0.3330000042915344", + "longitude_deg": "25.5", + "elevation_ft": "1476", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Katende", + "scheduled_service": "no", + "gps_code": "FZIK" + }, + { + "id": "32716", + "ident": "FZIR", + "type": "small_airport", + "name": "Yangambi Airport", + "latitude_deg": "0.7829999923706055", + "longitude_deg": "24.466999053955078", + "elevation_ft": "1378", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Yangambi", + "scheduled_service": "no", + "gps_code": "FZIR", + "iata_code": "YAN" + }, + { + "id": "31396", + "ident": "FZIZ", + "type": "small_airport", + "name": "Lokutu Airport", + "latitude_deg": "1.131052", + "longitude_deg": "23.602301", + "elevation_ft": "1214", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Lokutu", + "scheduled_service": "no", + "gps_code": "FZIZ" + }, + { + "id": "42424", + "ident": "FZJA", + "type": "closed", + "name": "Isiro-Ville", + "latitude_deg": "2.782219886779785", + "longitude_deg": "27.62579917907715", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "scheduled_service": "no", + "gps_code": "FZJA" + }, + { + "id": "31397", + "ident": "FZJB", + "type": "small_airport", + "name": "Doko Airport", + "latitude_deg": "3.2330000400543213", + "longitude_deg": "29.566999435424805", + "elevation_ft": "2874", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Doko", + "scheduled_service": "no", + "gps_code": "FZJB" + }, + { + "id": "31398", + "ident": "FZJC", + "type": "small_airport", + "name": "Dungu-Uye Airport", + "latitude_deg": "3.597484", + "longitude_deg": "28.57674", + "elevation_ft": "2378", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Dungu", + "scheduled_service": "no", + "gps_code": "FZJC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dungu-Uye_Airport" + }, + { + "id": "31399", + "ident": "FZJD", + "type": "small_airport", + "name": "Doruma Airport", + "latitude_deg": "4.717158", + "longitude_deg": "27.691089", + "elevation_ft": "2378", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Doruma", + "scheduled_service": "no", + "gps_code": "FZJD" + }, + { + "id": "31400", + "ident": "FZJF", + "type": "small_airport", + "name": "Aba Airport", + "latitude_deg": "3.860187", + "longitude_deg": "30.255747", + "elevation_ft": "3051", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Aba", + "scheduled_service": "no", + "gps_code": "FZJF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aba_Airport" + }, + { + "id": "3053", + "ident": "FZJH", + "type": "medium_airport", + "name": "Matari Airport", + "latitude_deg": "2.8276100158691406", + "longitude_deg": "27.588300704956055", + "elevation_ft": "2438", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "scheduled_service": "yes", + "gps_code": "FZJH", + "iata_code": "IRP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Matari_Airport" + }, + { + "id": "31401", + "ident": "FZJI", + "type": "small_airport", + "name": "Watsa Airport", + "latitude_deg": "3.016940116882324", + "longitude_deg": "29.559200286865234", + "elevation_ft": "3199", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Watsa", + "scheduled_service": "no", + "gps_code": "FZJI" + }, + { + "id": "31402", + "ident": "FZJK", + "type": "small_airport", + "name": "Faradje Airport", + "latitude_deg": "3.7330000400543213", + "longitude_deg": "29.700000762939453", + "elevation_ft": "2690", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Faradje", + "scheduled_service": "no", + "gps_code": "FZJK" + }, + { + "id": "31403", + "ident": "FZJN", + "type": "small_airport", + "name": "Luniemu Airport", + "latitude_deg": "-8.199999809265137", + "longitude_deg": "24.732999801635742", + "elevation_ft": "3272", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Luniemu", + "scheduled_service": "no", + "gps_code": "FZJN" + }, + { + "id": "31404", + "ident": "FZJR", + "type": "small_airport", + "name": "Kere Kere Airport", + "latitude_deg": "2.7330000400543213", + "longitude_deg": "30.533000946044922", + "elevation_ft": "4429", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Kere Kere", + "scheduled_service": "no", + "gps_code": "FZJR" + }, + { + "id": "3054", + "ident": "FZKA", + "type": "medium_airport", + "name": "Bunia Airport", + "latitude_deg": "1.5657199621200562", + "longitude_deg": "30.220800399780273", + "elevation_ft": "4045", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "scheduled_service": "yes", + "gps_code": "FZKA", + "iata_code": "BUX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bunia_Airport" + }, + { + "id": "31405", + "ident": "FZKB", + "type": "small_airport", + "name": "Bambili-Dingila Airport", + "latitude_deg": "3.6500000953674316", + "longitude_deg": "26.117000579833984", + "elevation_ft": "2050", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Bambili-Dingila", + "scheduled_service": "no", + "gps_code": "FZKB" + }, + { + "id": "31406", + "ident": "FZKC", + "type": "small_airport", + "name": "Mahagi Airport", + "latitude_deg": "2.1670000553131104", + "longitude_deg": "31.149999618530273", + "elevation_ft": "2555", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Mahagi", + "scheduled_service": "no", + "gps_code": "FZKC" + }, + { + "id": "31407", + "ident": "FZKF", + "type": "small_airport", + "name": "Kilomines Airport", + "latitude_deg": "1.8170000314712524", + "longitude_deg": "30.232999801635742", + "elevation_ft": "4593", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Kilomines", + "scheduled_service": "no", + "gps_code": "FZKF" + }, + { + "id": "31408", + "ident": "FZKI", + "type": "small_airport", + "name": "Yedi Airport", + "latitude_deg": "2.0329999923706055", + "longitude_deg": "24.799999237060547", + "elevation_ft": "3642", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Yedi", + "scheduled_service": "no", + "gps_code": "FZKI" + }, + { + "id": "3055", + "ident": "FZKJ", + "type": "medium_airport", + "name": "Buta Zega Airport", + "latitude_deg": "2.818350076675415", + "longitude_deg": "24.793699264526367", + "elevation_ft": "1378", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "scheduled_service": "no", + "gps_code": "FZKJ", + "iata_code": "BZU" + }, + { + "id": "31409", + "ident": "FZKN", + "type": "small_airport", + "name": "Aketi Airport", + "latitude_deg": "2.730399", + "longitude_deg": "23.793468", + "elevation_ft": "1230", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Aketi", + "scheduled_service": "no", + "gps_code": "FZKN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aketi_Airport" + }, + { + "id": "31410", + "ident": "FZKO", + "type": "small_airport", + "name": "Ango Airport", + "latitude_deg": "4.0289998054504395", + "longitude_deg": "25.86199951171875", + "elevation_ft": "2133", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-OR", + "municipality": "Ango", + "scheduled_service": "no", + "gps_code": "FZKO" + }, + { + "id": "3056", + "ident": "FZMA", + "type": "medium_airport", + "name": "Bukavu Kavumu Airport", + "latitude_deg": "-2.3089799880981445", + "longitude_deg": "28.808799743652344", + "elevation_ft": "5643", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-SK", + "scheduled_service": "no", + "gps_code": "FZMA", + "iata_code": "BKY" + }, + { + "id": "308150", + "ident": "FZMB", + "type": "small_airport", + "name": "Rughenda Airfield", + "latitude_deg": "0.117142", + "longitude_deg": "29.312992", + "elevation_ft": "5757", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-NK", + "municipality": "Butembo", + "scheduled_service": "no", + "gps_code": "FZMB", + "iata_code": "RUE" + }, + { + "id": "31411", + "ident": "FZMC", + "type": "small_airport", + "name": "Mulungu Airport", + "latitude_deg": "-2.9830000400543213", + "longitude_deg": "27.850000381469727", + "elevation_ft": "2400", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-SK", + "municipality": "Mulungu", + "scheduled_service": "no", + "gps_code": "FZMC" + }, + { + "id": "31412", + "ident": "FZMD", + "type": "small_airport", + "name": "Nzovu Airport", + "latitude_deg": "-2.5829999446868896", + "longitude_deg": "27.982999801635742", + "elevation_ft": "1970", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-SK", + "municipality": "Nzovu", + "scheduled_service": "no", + "gps_code": "FZMD" + }, + { + "id": "31413", + "ident": "FZMK", + "type": "small_airport", + "name": "Bulongo Kigogo Airport", + "latitude_deg": "-2.6670000553131104", + "longitude_deg": "28.799999237060547", + "elevation_ft": "5249", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-SK", + "municipality": "Bulongo Kigogo", + "scheduled_service": "no", + "gps_code": "FZMK" + }, + { + "id": "31414", + "ident": "FZMP", + "type": "small_airport", + "name": "Kimano Ii Airport", + "latitude_deg": "-4.382999897003174", + "longitude_deg": "28.350000381469727", + "elevation_ft": "2461", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-MA", + "municipality": "Kimano Ii", + "scheduled_service": "no", + "gps_code": "FZMP" + }, + { + "id": "31415", + "ident": "FZMW", + "type": "small_airport", + "name": "Shabunda Airport", + "latitude_deg": "-2.683000087738037", + "longitude_deg": "27.33300018310547", + "elevation_ft": "1837", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-SK", + "municipality": "Shabunda", + "scheduled_service": "no", + "gps_code": "FZMW" + }, + { + "id": "3057", + "ident": "FZNA", + "type": "medium_airport", + "name": "Goma International Airport", + "latitude_deg": "-1.6708099842071533", + "longitude_deg": "29.238500595092773", + "elevation_ft": "5089", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-NK", + "municipality": "Goma", + "scheduled_service": "yes", + "gps_code": "FZNA", + "iata_code": "GOM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Goma_International_Airport" + }, + { + "id": "31416", + "ident": "FZNB", + "type": "small_airport", + "name": "Katale Airport", + "latitude_deg": "-1.3047200441360474", + "longitude_deg": "29.373899459838867", + "elevation_ft": "4589", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-NK", + "municipality": "Katale", + "scheduled_service": "no", + "gps_code": "FZNB" + }, + { + "id": "31417", + "ident": "FZNC", + "type": "small_airport", + "name": "Rutshuru Airport", + "latitude_deg": "-1.1670000553131104", + "longitude_deg": "29.41699981689453", + "elevation_ft": "3707", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-NK", + "municipality": "Rutshuru", + "scheduled_service": "no", + "gps_code": "FZNC" + }, + { + "id": "31418", + "ident": "FZNF", + "type": "small_airport", + "name": "Lubero Airport", + "latitude_deg": "-0.13300000131130219", + "longitude_deg": "29.25", + "elevation_ft": "5906", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-NK", + "municipality": "Lubero", + "scheduled_service": "no", + "gps_code": "FZNF" + }, + { + "id": "31419", + "ident": "FZNI", + "type": "small_airport", + "name": "Ishasha Airport", + "latitude_deg": "-0.7415", + "longitude_deg": "29.6245", + "elevation_ft": "3390", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-NK", + "municipality": "Ishasha", + "scheduled_service": "no", + "gps_code": "FZNI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ishasha_Airport_(Democratic_Republic_of_the_Congo)" + }, + { + "id": "31420", + "ident": "FZNK", + "type": "small_airport", + "name": "Katanda Rusthuru Airport", + "latitude_deg": "-0.800000011920929", + "longitude_deg": "29.367000579833984", + "elevation_ft": "2297", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-NK", + "municipality": "Katanda Rusthuru", + "scheduled_service": "no", + "gps_code": "FZNK" + }, + { + "id": "30780", + "ident": "FZNP", + "type": "small_airport", + "name": "Beni Airport", + "latitude_deg": "0.575", + "longitude_deg": "29.4739", + "elevation_ft": "3517", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-NK", + "municipality": "Beni", + "scheduled_service": "no", + "gps_code": "FZNP", + "iata_code": "BNC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beni_Airport" + }, + { + "id": "31421", + "ident": "FZNQ", + "type": "small_airport", + "name": "Obaye Airport", + "latitude_deg": "-1.3329999446868896", + "longitude_deg": "27.732999801635742", + "elevation_ft": "2000", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-NK", + "municipality": "Obaye", + "scheduled_service": "no", + "gps_code": "FZNQ" + }, + { + "id": "31422", + "ident": "FZNR", + "type": "small_airport", + "name": "Rwindi Airport", + "latitude_deg": "-0.7902780175209045", + "longitude_deg": "29.274999618530273", + "elevation_ft": "3412", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-NK", + "municipality": "Rwindi", + "scheduled_service": "no", + "gps_code": "FZNR" + }, + { + "id": "3058", + "ident": "FZOA", + "type": "medium_airport", + "name": "Kindu Airport", + "latitude_deg": "-2.91917991638", + "longitude_deg": "25.915399551399997", + "elevation_ft": "1630", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-MA", + "municipality": "Kindu", + "scheduled_service": "yes", + "gps_code": "FZOA", + "iata_code": "KND", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kindu_Airport" + }, + { + "id": "31423", + "ident": "FZOB", + "type": "small_airport", + "name": "Tingi-Tingi Airport", + "latitude_deg": "-0.762499988079071", + "longitude_deg": "26.609699249267578", + "elevation_ft": "862", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-MA", + "municipality": "Tingi-Tingi", + "scheduled_service": "no", + "gps_code": "FZOB" + }, + { + "id": "42425", + "ident": "FZOC", + "type": "small_airport", + "name": "Kamisuku Airport", + "latitude_deg": "-2.549999952316284", + "longitude_deg": "26.616666793823242", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-MA", + "municipality": "Kalima", + "scheduled_service": "no", + "gps_code": "FZOC" + }, + { + "id": "31759", + "ident": "FZOD", + "type": "small_airport", + "name": "Kinkungwa Airport", + "latitude_deg": "-2.578000068664551", + "longitude_deg": "26.733999252319336", + "elevation_ft": "1808", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-MA", + "municipality": "Kalima", + "scheduled_service": "no", + "gps_code": "FZOD", + "iata_code": "KLY" + }, + { + "id": "31424", + "ident": "FZOE", + "type": "small_airport", + "name": "Kampene Airport", + "latitude_deg": "-3.5829999446868896", + "longitude_deg": "26.700000762939453", + "elevation_ft": "2034", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-MA", + "municipality": "Kampene", + "scheduled_service": "no", + "gps_code": "FZOE" + }, + { + "id": "31425", + "ident": "FZOF", + "type": "small_airport", + "name": "Kiapupe Airport", + "latitude_deg": "-2.9000000953674316", + "longitude_deg": "27.299999237060547", + "elevation_ft": "3281", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-SK", + "municipality": "Kiapupe", + "scheduled_service": "no", + "gps_code": "FZOF" + }, + { + "id": "31426", + "ident": "FZOG", + "type": "small_airport", + "name": "Lulingu Tshionka Airport", + "latitude_deg": "-2.316999912261963", + "longitude_deg": "27.549999237060547", + "elevation_ft": "1968", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-SK", + "municipality": "Lulingu Tshionka", + "scheduled_service": "no", + "gps_code": "FZOG" + }, + { + "id": "31427", + "ident": "FZOH", + "type": "small_airport", + "name": "Moga Airport", + "latitude_deg": "-2.4670000076293945", + "longitude_deg": "26.799999237060547", + "elevation_ft": "2018", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-MA", + "municipality": "Moga", + "scheduled_service": "no", + "gps_code": "FZOH" + }, + { + "id": "31428", + "ident": "FZOJ", + "type": "small_airport", + "name": "Obokote Airport", + "latitude_deg": "-0.8500000238418579", + "longitude_deg": "26.33300018310547", + "elevation_ft": "1378", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-MA", + "municipality": "Obokote", + "scheduled_service": "no", + "gps_code": "FZOJ" + }, + { + "id": "31429", + "ident": "FZOK", + "type": "small_airport", + "name": "Kasongo Airport", + "latitude_deg": "-4.524032", + "longitude_deg": "26.60023", + "elevation_ft": "1785", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-MA", + "municipality": "Kasongo", + "scheduled_service": "no", + "gps_code": "FZOK" + }, + { + "id": "31430", + "ident": "FZOO", + "type": "small_airport", + "name": "Kailo Airport", + "latitude_deg": "-2.632999897003174", + "longitude_deg": "26.100000381469727", + "elevation_ft": "1804", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-MA", + "municipality": "Kailo", + "scheduled_service": "no", + "gps_code": "FZOO" + }, + { + "id": "32178", + "ident": "FZOP", + "type": "small_airport", + "name": "Punia Airport", + "latitude_deg": "-1.3669999837875366", + "longitude_deg": "26.33300018310547", + "elevation_ft": "1742", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-MA", + "municipality": "Punia", + "scheduled_service": "no", + "gps_code": "FZOP", + "iata_code": "PUN" + }, + { + "id": "31431", + "ident": "FZOQ", + "type": "small_airport", + "name": "Punia-Basenge Airport", + "latitude_deg": "-1.483139", + "longitude_deg": "26.44018", + "elevation_ft": "1738", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-MA", + "municipality": "Punia-Basenge", + "scheduled_service": "no", + "gps_code": "FZOQ" + }, + { + "id": "31432", + "ident": "FZOR", + "type": "small_airport", + "name": "Saulia Airport", + "latitude_deg": "-1.5329999923706055", + "longitude_deg": "26.533000946044922", + "elevation_ft": "1870", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-MA", + "municipality": "Saulia", + "scheduled_service": "no", + "gps_code": "FZOR" + }, + { + "id": "31433", + "ident": "FZOS", + "type": "small_airport", + "name": "Kasese Airport", + "latitude_deg": "-1.6330000162124634", + "longitude_deg": "27.049999237060547", + "elevation_ft": "1863", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-MA", + "municipality": "Kasese", + "scheduled_service": "no", + "gps_code": "FZOS" + }, + { + "id": "31434", + "ident": "FZOT", + "type": "small_airport", + "name": "Phibraki Airport", + "latitude_deg": "-2.933000087738037", + "longitude_deg": "27.533000946044922", + "elevation_ft": "2100", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-SK", + "municipality": "Phibraki", + "scheduled_service": "no", + "gps_code": "FZOT" + }, + { + "id": "31435", + "ident": "FZPB", + "type": "small_airport", + "name": "Kamituga Airport", + "latitude_deg": "-3.0329999923706055", + "longitude_deg": "28.117000579833984", + "elevation_ft": "3871", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-SK", + "municipality": "Kamituga", + "scheduled_service": "no", + "gps_code": "FZPB" + }, + { + "id": "31436", + "ident": "FZPC", + "type": "small_airport", + "name": "Lugushwa Airport", + "latitude_deg": "-3.316999912261963", + "longitude_deg": "27.882999420166016", + "elevation_ft": "2300", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-SK", + "municipality": "Lugushwa", + "scheduled_service": "no", + "gps_code": "FZPC" + }, + { + "id": "3059", + "ident": "FZQA", + "type": "medium_airport", + "name": "Lubumbashi International Airport", + "latitude_deg": "-11.5913000107", + "longitude_deg": "27.5308990479", + "elevation_ft": "4295", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Lubumbashi", + "scheduled_service": "yes", + "gps_code": "FZQA", + "iata_code": "FBM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lubumbashi_International_Airport" + }, + { + "id": "32182", + "ident": "FZQC", + "type": "small_airport", + "name": "Pweto Airport", + "latitude_deg": "-8.467000007629395", + "longitude_deg": "28.882999420166016", + "elevation_ft": "3425", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Pweto", + "scheduled_service": "no", + "gps_code": "FZQC", + "iata_code": "PWO" + }, + { + "id": "31437", + "ident": "FZQD", + "type": "small_airport", + "name": "Mulungwishi Airport", + "latitude_deg": "-10.75", + "longitude_deg": "26.632999420166016", + "elevation_ft": "3500", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Mulungwishi", + "scheduled_service": "no", + "gps_code": "FZQD" + }, + { + "id": "31438", + "ident": "FZQF", + "type": "small_airport", + "name": "Fungurume Airport", + "latitude_deg": "-10.533300399780273", + "longitude_deg": "26.325000762939453", + "elevation_ft": "3855", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Fungurume", + "scheduled_service": "no", + "gps_code": "FZQF" + }, + { + "id": "31739", + "ident": "FZQG", + "type": "small_airport", + "name": "Kasenga Airport", + "latitude_deg": "-10.350000381469727", + "longitude_deg": "28.632999420166016", + "elevation_ft": "3146", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Kasenga", + "scheduled_service": "no", + "gps_code": "FZQG", + "iata_code": "KEC" + }, + { + "id": "31439", + "ident": "FZQH", + "type": "small_airport", + "name": "Katwe Airport", + "latitude_deg": "-10.550000190734863", + "longitude_deg": "27.850000381469727", + "elevation_ft": "5577", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Katwe", + "scheduled_service": "no", + "gps_code": "FZQH" + }, + { + "id": "31440", + "ident": "FZQI", + "type": "small_airport", + "name": "Kamatanda Airport", + "latitude_deg": "-10.833000183105469", + "longitude_deg": "26.75", + "elevation_ft": "4261", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Kamatanda", + "scheduled_service": "no", + "gps_code": "FZQI" + }, + { + "id": "31441", + "ident": "FZQJ", + "type": "small_airport", + "name": "Mwadingusha Airport", + "latitude_deg": "-10.756564", + "longitude_deg": "27.215524", + "elevation_ft": "3707", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Mwadingusha", + "scheduled_service": "no", + "gps_code": "FZQJ" + }, + { + "id": "3060", + "ident": "FZQM", + "type": "medium_airport", + "name": "Kolwezi Airport", + "latitude_deg": "-10.765899658203125", + "longitude_deg": "25.505699157714844", + "elevation_ft": "5007", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "scheduled_service": "yes", + "gps_code": "FZQM", + "iata_code": "KWZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kolwezi_Airport" + }, + { + "id": "31442", + "ident": "FZQN", + "type": "small_airport", + "name": "Mutshatsha Airport", + "latitude_deg": "-10.567000389099121", + "longitude_deg": "24.399999618530273", + "elevation_ft": "3806", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Mutshatsha", + "scheduled_service": "no", + "gps_code": "FZQN" + }, + { + "id": "31443", + "ident": "FZQP", + "type": "small_airport", + "name": "Kisenge Airport", + "latitude_deg": "-10.666999816894531", + "longitude_deg": "23.16699981689453", + "elevation_ft": "3412", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Kisenge", + "scheduled_service": "no", + "gps_code": "FZQP" + }, + { + "id": "31444", + "ident": "FZQU", + "type": "small_airport", + "name": "Lubudi Airport", + "latitude_deg": "-9.932999610900879", + "longitude_deg": "26", + "elevation_ft": "4541", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Lubudi", + "scheduled_service": "no", + "gps_code": "FZQU" + }, + { + "id": "31445", + "ident": "FZQV", + "type": "small_airport", + "name": "Mitwaba Airport", + "latitude_deg": "-8.645000457763672", + "longitude_deg": "27.344999313354492", + "elevation_ft": "5240", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Mitwaba", + "scheduled_service": "no", + "gps_code": "FZQV" + }, + { + "id": "31929", + "ident": "FZRA", + "type": "small_airport", + "name": "Manono Airport", + "latitude_deg": "-7.2888898849487305", + "longitude_deg": "27.394399642944336", + "elevation_ft": "2077", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Manono", + "scheduled_service": "no", + "gps_code": "FZRA", + "iata_code": "MNO" + }, + { + "id": "30693", + "ident": "FZRB", + "type": "small_airport", + "name": "Moba Airport", + "latitude_deg": "-7.066999912261963", + "longitude_deg": "29.783000946044922", + "elevation_ft": "2953", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Moba", + "scheduled_service": "no", + "gps_code": "FZRB", + "iata_code": "BDV" + }, + { + "id": "31446", + "ident": "FZRC", + "type": "small_airport", + "name": "Mukoy Airport", + "latitude_deg": "-7.5329999923706055", + "longitude_deg": "28.700000762939453", + "elevation_ft": "5249", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Mukoy", + "scheduled_service": "no", + "gps_code": "FZRC" + }, + { + "id": "31447", + "ident": "FZRD", + "type": "small_airport", + "name": "Kabombo Airport", + "latitude_deg": "-7.349999904632568", + "longitude_deg": "28.033000946044922", + "elevation_ft": "1969", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Kabombo", + "scheduled_service": "no", + "gps_code": "FZRD" + }, + { + "id": "31448", + "ident": "FZRE", + "type": "small_airport", + "name": "Bukena Airport", + "latitude_deg": "-7.75", + "longitude_deg": "27.200000762939453", + "elevation_ft": "3868", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Bukena", + "scheduled_service": "no", + "gps_code": "FZRE" + }, + { + "id": "3061", + "ident": "FZRF", + "type": "medium_airport", + "name": "Kalemie Airport", + "latitude_deg": "-5.8755598068237305", + "longitude_deg": "29.25", + "elevation_ft": "2569", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "scheduled_service": "yes", + "gps_code": "FZRF", + "iata_code": "FMI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kalemie_Airport" + }, + { + "id": "31449", + "ident": "FZRG", + "type": "small_airport", + "name": "Sominka Airport", + "latitude_deg": "-7.416999816894531", + "longitude_deg": "27.149999618530273", + "elevation_ft": "2066", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Sominka", + "scheduled_service": "no", + "gps_code": "FZRG" + }, + { + "id": "31450", + "ident": "FZRJ", + "type": "small_airport", + "name": "Pepa Airport", + "latitude_deg": "-7.7170000076293945", + "longitude_deg": "29.799999237060547", + "elevation_ft": "6562", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Pepa", + "scheduled_service": "no", + "gps_code": "FZRJ" + }, + { + "id": "31451", + "ident": "FZRK", + "type": "small_airport", + "name": "Kansimba Airport", + "latitude_deg": "-7.316999912261963", + "longitude_deg": "29.16699981689453", + "elevation_ft": "5413", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Kansimba", + "scheduled_service": "no", + "gps_code": "FZRK" + }, + { + "id": "31452", + "ident": "FZRL", + "type": "small_airport", + "name": "Lusinga Airport", + "latitude_deg": "-8.932999610900879", + "longitude_deg": "27.183000564575195", + "elevation_ft": "5840", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Lusinga", + "scheduled_service": "no", + "gps_code": "FZRL" + }, + { + "id": "31727", + "ident": "FZRM", + "type": "small_airport", + "name": "Kabalo Airport", + "latitude_deg": "-6.083000183105469", + "longitude_deg": "26.91699981689453", + "elevation_ft": "1840", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Kabalo", + "scheduled_service": "no", + "gps_code": "FZRM", + "iata_code": "KBO" + }, + { + "id": "31453", + "ident": "FZRN", + "type": "small_airport", + "name": "Nyunzu Airport", + "latitude_deg": "-5.933000087738037", + "longitude_deg": "28", + "elevation_ft": "2297", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Nyunzu", + "scheduled_service": "no", + "gps_code": "FZRN" + }, + { + "id": "31454", + "ident": "FZRO", + "type": "small_airport", + "name": "Luvua Airport", + "latitude_deg": "-7.933000087738037", + "longitude_deg": "28.533000946044922", + "elevation_ft": "4298", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Luvua", + "scheduled_service": "no", + "gps_code": "FZRO" + }, + { + "id": "31767", + "ident": "FZRQ", + "type": "small_airport", + "name": "Kongolo Airport", + "latitude_deg": "-5.39444", + "longitude_deg": "26.99", + "elevation_ft": "1850", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Kongolo", + "scheduled_service": "no", + "gps_code": "FZRQ", + "iata_code": "KOO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kongolo_Airport" + }, + { + "id": "3062", + "ident": "FZSA", + "type": "medium_airport", + "name": "Kamina Air Base", + "latitude_deg": "-8.64202", + "longitude_deg": "25.252899", + "elevation_ft": "3543", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Kamina", + "scheduled_service": "no", + "gps_code": "FZSA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kamina_Air_Base" + }, + { + "id": "31455", + "ident": "FZSB", + "type": "small_airport", + "name": "Kamina Ville Airport", + "latitude_deg": "-8.72861", + "longitude_deg": "24.9914", + "elevation_ft": "3475", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Kamina", + "scheduled_service": "yes", + "gps_code": "FZSB", + "iata_code": "KMN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kamina_Airport" + }, + { + "id": "31456", + "ident": "FZSC", + "type": "small_airport", + "name": "Songa Airport", + "latitude_deg": "-8.100000381469727", + "longitude_deg": "25.033000946044922", + "elevation_ft": "3526", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Songa", + "scheduled_service": "no", + "gps_code": "FZSC" + }, + { + "id": "31457", + "ident": "FZSD", + "type": "small_airport", + "name": "Sandoa Airport", + "latitude_deg": "-9.633000373840332", + "longitude_deg": "22.850000381469727", + "elevation_ft": "3022", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Sandoa", + "scheduled_service": "no", + "gps_code": "FZSD" + }, + { + "id": "31458", + "ident": "FZSE", + "type": "small_airport", + "name": "Kanene Airport", + "latitude_deg": "-9.300000190734863", + "longitude_deg": "24.66699981689453", + "elevation_ft": "3707", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Kanene", + "scheduled_service": "no", + "gps_code": "FZSE" + }, + { + "id": "31459", + "ident": "FZSI", + "type": "small_airport", + "name": "Dilolo Airport", + "latitude_deg": "-10.717000007629395", + "longitude_deg": "22.350000381469727", + "elevation_ft": "3378", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Dilolo", + "scheduled_service": "no", + "gps_code": "FZSI" + }, + { + "id": "31460", + "ident": "FZSJ", + "type": "small_airport", + "name": "Kasaji Airport", + "latitude_deg": "-10.350000381469727", + "longitude_deg": "23.41699981689453", + "elevation_ft": "3297", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Kasaji", + "scheduled_service": "no", + "gps_code": "FZSJ" + }, + { + "id": "31716", + "ident": "FZSK", + "type": "small_airport", + "name": "Kapanga Airport", + "latitude_deg": "-8.350000381469727", + "longitude_deg": "22.58300018310547", + "elevation_ft": "3025", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Kapanga", + "scheduled_service": "no", + "gps_code": "FZSK", + "iata_code": "KAP" + }, + { + "id": "31764", + "ident": "FZTK", + "type": "small_airport", + "name": "Kaniama Airport", + "latitude_deg": "-7.583000183105469", + "longitude_deg": "24.149999618530273", + "elevation_ft": "2772", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Kaniama", + "scheduled_service": "no", + "gps_code": "FZTK", + "iata_code": "KNM" + }, + { + "id": "31461", + "ident": "FZTL", + "type": "small_airport", + "name": "Luena Airport", + "latitude_deg": "-9.467000007629395", + "longitude_deg": "25.75", + "elevation_ft": "2349", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Luena", + "scheduled_service": "no", + "gps_code": "FZTL" + }, + { + "id": "31462", + "ident": "FZTS", + "type": "small_airport", + "name": "Kaniama Airport", + "latitude_deg": "-7.699999809265137", + "longitude_deg": "24.049999237060547", + "elevation_ft": "2871", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Kaniama", + "scheduled_service": "no", + "gps_code": "FZTS" + }, + { + "id": "3063", + "ident": "FZUA", + "type": "medium_airport", + "name": "Kananga Airport", + "latitude_deg": "-5.90005016327", + "longitude_deg": "22.4692001343", + "elevation_ft": "2139", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Kananga", + "scheduled_service": "yes", + "gps_code": "FZUA", + "iata_code": "KGA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kananga_Airport" + }, + { + "id": "31463", + "ident": "FZUE", + "type": "small_airport", + "name": "Lubondaie Airport", + "latitude_deg": "-6.583000183105469", + "longitude_deg": "22.5", + "elevation_ft": "2657", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Lubondaie", + "scheduled_service": "no", + "gps_code": "FZUE" + }, + { + "id": "31464", + "ident": "FZUF", + "type": "small_airport", + "name": "Kasonga Airport", + "latitude_deg": "-6.650000095367432", + "longitude_deg": "22.382999420166016", + "elevation_ft": "2707", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Kasonga", + "scheduled_service": "no", + "gps_code": "FZUF" + }, + { + "id": "31873", + "ident": "FZUG", + "type": "small_airport", + "name": "Luiza Airport", + "latitude_deg": "-7.183000087738037", + "longitude_deg": "22.399999618530273", + "elevation_ft": "2890", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Luiza", + "scheduled_service": "no", + "gps_code": "FZUG", + "iata_code": "LZA" + }, + { + "id": "31465", + "ident": "FZUH", + "type": "small_airport", + "name": "Moma Airport", + "latitude_deg": "-7.232999801635742", + "longitude_deg": "22.600000381469727", + "elevation_ft": "2789", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Moma", + "scheduled_service": "no", + "gps_code": "FZUH" + }, + { + "id": "31466", + "ident": "FZUI", + "type": "small_airport", + "name": "Mboi Airport", + "latitude_deg": "-6.833000183105469", + "longitude_deg": "22", + "elevation_ft": "2789", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Mboi", + "scheduled_service": "no", + "gps_code": "FZUI" + }, + { + "id": "31467", + "ident": "FZUJ", + "type": "small_airport", + "name": "Muambi Airport", + "latitude_deg": "-6.683000087738037", + "longitude_deg": "22.533000946044922", + "elevation_ft": "2493", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Muambi", + "scheduled_service": "no", + "gps_code": "FZUJ" + }, + { + "id": "32478", + "ident": "FZUK", + "type": "small_airport", + "name": "Tshikapa Airport", + "latitude_deg": "-6.43833", + "longitude_deg": "20.794701", + "elevation_ft": "1595", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Tshikapa", + "scheduled_service": "yes", + "gps_code": "FZUK", + "iata_code": "TSH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tshikapa_Airport" + }, + { + "id": "31468", + "ident": "FZUL", + "type": "small_airport", + "name": "Bulape Airport", + "latitude_deg": "-4.617000102996826", + "longitude_deg": "21.600000381469727", + "elevation_ft": "1640", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Bulape", + "scheduled_service": "no", + "gps_code": "FZUL" + }, + { + "id": "31469", + "ident": "FZUM", + "type": "small_airport", + "name": "Mutoto Airport", + "latitude_deg": "-5.699999809265137", + "longitude_deg": "23.716999053955078", + "elevation_ft": "2297", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Mutoto", + "scheduled_service": "no", + "gps_code": "FZUM" + }, + { + "id": "31470", + "ident": "FZUN", + "type": "small_airport", + "name": "Luebo Airport", + "latitude_deg": "-5.349999904632568", + "longitude_deg": "21.33300018310547", + "elevation_ft": "1640", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Luebo", + "scheduled_service": "no", + "gps_code": "FZUN" + }, + { + "id": "31471", + "ident": "FZUO", + "type": "small_airport", + "name": "Musese Airport", + "latitude_deg": "-5.5", + "longitude_deg": "21.433000564575195", + "elevation_ft": "1870", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Musese", + "scheduled_service": "no", + "gps_code": "FZUO" + }, + { + "id": "31472", + "ident": "FZUP", + "type": "small_airport", + "name": "Diboko Airport", + "latitude_deg": "-7.003610134124756", + "longitude_deg": "21.244199752807617", + "elevation_ft": "2431", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Diboko", + "scheduled_service": "no", + "gps_code": "FZUP" + }, + { + "id": "31473", + "ident": "FZUR", + "type": "small_airport", + "name": "Tshibala Airport", + "latitude_deg": "-6.933000087738037", + "longitude_deg": "22", + "elevation_ft": "2287", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Tshibala", + "scheduled_service": "no", + "gps_code": "FZUR" + }, + { + "id": "31474", + "ident": "FZUS", + "type": "small_airport", + "name": "Tshikaji Airport", + "latitude_deg": "-5.9670000076293945", + "longitude_deg": "22.41699981689453", + "elevation_ft": "2287", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Tshikaji", + "scheduled_service": "no", + "gps_code": "FZUS" + }, + { + "id": "31475", + "ident": "FZUT", + "type": "small_airport", + "name": "Katubwe Airport", + "latitude_deg": "-6.050000190734863", + "longitude_deg": "22.600000381469727", + "elevation_ft": "2461", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Katubwe", + "scheduled_service": "no", + "gps_code": "FZUT" + }, + { + "id": "31476", + "ident": "FZUU", + "type": "small_airport", + "name": "Lutshatsha Airport", + "latitude_deg": "-6.2170000076293945", + "longitude_deg": "22.08300018310547", + "elevation_ft": "2329", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Lutshatsha", + "scheduled_service": "no", + "gps_code": "FZUU" + }, + { + "id": "31477", + "ident": "FZUV", + "type": "small_airport", + "name": "Kalonda Airport", + "latitude_deg": "-6.4670000076293945", + "longitude_deg": "20.799999237060547", + "elevation_ft": "1873", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Kalonda", + "scheduled_service": "no", + "gps_code": "FZUV" + }, + { + "id": "31827", + "ident": "FZVA", + "type": "small_airport", + "name": "Lodja Airport", + "latitude_deg": "-3.462745", + "longitude_deg": "23.615162", + "elevation_ft": "1647", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Lodja", + "scheduled_service": "yes", + "gps_code": "FZVA", + "iata_code": "LJA" + }, + { + "id": "31478", + "ident": "FZVC", + "type": "small_airport", + "name": "Kole Sur Lukenie Airport", + "latitude_deg": "-3.4000000953674316", + "longitude_deg": "22.533000946044922", + "elevation_ft": "1542", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Kole Sur Lukenie", + "scheduled_service": "no", + "gps_code": "FZVC" + }, + { + "id": "31479", + "ident": "FZVD", + "type": "small_airport", + "name": "Dingele Airport", + "latitude_deg": "-3.5999999046325684", + "longitude_deg": "24.58300018310547", + "elevation_ft": "1985", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Dingele", + "scheduled_service": "no", + "gps_code": "FZVD" + }, + { + "id": "31480", + "ident": "FZVE", + "type": "small_airport", + "name": "Lomela Airport", + "latitude_deg": "-2.299999952316284", + "longitude_deg": "23.267000198364258", + "elevation_ft": "1434", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Lomela", + "scheduled_service": "no", + "gps_code": "FZVE" + }, + { + "id": "31481", + "ident": "FZVF", + "type": "small_airport", + "name": "Kutusongo Airport", + "latitude_deg": "-2.6670000553131104", + "longitude_deg": "23.16699981689453", + "elevation_ft": "1722", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Kutusongo", + "scheduled_service": "no", + "gps_code": "FZVF" + }, + { + "id": "31482", + "ident": "FZVG", + "type": "small_airport", + "name": "Katako'kombe Airport", + "latitude_deg": "-3.4670000076293945", + "longitude_deg": "24.433000564575195", + "elevation_ft": "1978", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Katako'kombe", + "scheduled_service": "no", + "gps_code": "FZVG" + }, + { + "id": "31483", + "ident": "FZVH", + "type": "small_airport", + "name": "Shongamba Airport", + "latitude_deg": "-4.349999904632568", + "longitude_deg": "21.283000946044922", + "elevation_ft": "2133", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Shongamba", + "scheduled_service": "no", + "gps_code": "FZVH" + }, + { + "id": "31797", + "ident": "FZVI", + "type": "small_airport", + "name": "Lusambo Airport", + "latitude_deg": "-4.961669921875", + "longitude_deg": "23.378299713134766", + "elevation_ft": "1407", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Lusambo", + "scheduled_service": "no", + "gps_code": "FZVI", + "iata_code": "LBO" + }, + { + "id": "31484", + "ident": "FZVJ", + "type": "small_airport", + "name": "Tshumbe Airport", + "latitude_deg": "-4.099999904632568", + "longitude_deg": "24.367000579833984", + "elevation_ft": "1804", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Tshumbe", + "scheduled_service": "yes", + "gps_code": "FZVJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tshombe_Airport", + "keywords": "Tshombe" + }, + { + "id": "31485", + "ident": "FZVK", + "type": "small_airport", + "name": "Lukombe-Batwa Airport", + "latitude_deg": "-4.333000183105469", + "longitude_deg": "22.08300018310547", + "elevation_ft": "1640", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Lukombe-Batwa", + "scheduled_service": "no", + "gps_code": "FZVK" + }, + { + "id": "31486", + "ident": "FZVL", + "type": "small_airport", + "name": "Wasolo Airport", + "latitude_deg": "-3.950000047683716", + "longitude_deg": "22.517000198364258", + "elevation_ft": "1673", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Wasolo", + "scheduled_service": "no", + "gps_code": "FZVL" + }, + { + "id": "31891", + "ident": "FZVM", + "type": "small_airport", + "name": "Mweka Airport", + "latitude_deg": "-4.849999904632568", + "longitude_deg": "21.549999237060547", + "elevation_ft": "1968", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Mweka", + "scheduled_service": "no", + "gps_code": "FZVM", + "iata_code": "MEW" + }, + { + "id": "31487", + "ident": "FZVN", + "type": "small_airport", + "name": "Wembo-Nyama Airport", + "latitude_deg": "-4.482999801635742", + "longitude_deg": "24.450000762939453", + "elevation_ft": "1801", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Wembo-Nyama", + "scheduled_service": "no", + "gps_code": "FZVN" + }, + { + "id": "31488", + "ident": "FZVO", + "type": "small_airport", + "name": "Bena-Dibele Airport", + "latitude_deg": "-4.072623", + "longitude_deg": "22.841091", + "elevation_ft": "1738", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Bena-Dibele", + "scheduled_service": "no", + "gps_code": "FZVO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beni-Dibele_Airport" + }, + { + "id": "31489", + "ident": "FZVP", + "type": "small_airport", + "name": "Dikungu Airport", + "latitude_deg": "-4.0329999923706055", + "longitude_deg": "24.466999053955078", + "elevation_ft": "1833", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Dikungu", + "scheduled_service": "no", + "gps_code": "FZVP" + }, + { + "id": "30676", + "ident": "FZVR", + "type": "small_airport", + "name": "Basongo Airport", + "latitude_deg": "-4.315802", + "longitude_deg": "20.414891", + "elevation_ft": "1640", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Basongo", + "scheduled_service": "no", + "gps_code": "FZVR", + "iata_code": "BAN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Basongo_Airport" + }, + { + "id": "32156", + "ident": "FZVS", + "type": "small_airport", + "name": "Ilebo Airport", + "latitude_deg": "-4.329919", + "longitude_deg": "20.590124", + "elevation_ft": "1450", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Ilebo", + "scheduled_service": "yes", + "gps_code": "FZVS", + "iata_code": "PFR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ilebo_Airport" + }, + { + "id": "31490", + "ident": "FZVT", + "type": "small_airport", + "name": "Dekese Airport", + "latitude_deg": "-3.4670000076293945", + "longitude_deg": "21.433000564575195", + "elevation_ft": "1279", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Dekese", + "scheduled_service": "no", + "gps_code": "FZVT" + }, + { + "id": "31491", + "ident": "FZVU", + "type": "small_airport", + "name": "Idumbe Airport", + "latitude_deg": "-3.9170000553131104", + "longitude_deg": "21.58300018310547", + "elevation_ft": "1847", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Idumbe", + "scheduled_service": "no", + "gps_code": "FZVU" + }, + { + "id": "3064", + "ident": "FZWA", + "type": "medium_airport", + "name": "Mbuji Mayi Airport", + "latitude_deg": "-6.121240139010001", + "longitude_deg": "23.569000244099996", + "elevation_ft": "2221", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Mbuji Mayi", + "scheduled_service": "yes", + "gps_code": "FZWA", + "iata_code": "MJM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mbuji_Mayi_Airport" + }, + { + "id": "31492", + "ident": "FZWB", + "type": "small_airport", + "name": "Bibanga Airport", + "latitude_deg": "-6.25336", + "longitude_deg": "23.945979", + "elevation_ft": "2953", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Bibanga", + "scheduled_service": "no", + "gps_code": "FZWB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bibanga_Airport" + }, + { + "id": "31521", + "ident": "FZWC", + "type": "small_airport", + "name": "Gandajika Airport", + "latitude_deg": "-6.733", + "longitude_deg": "23.950001", + "elevation_ft": "2618", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Gandajika", + "scheduled_service": "no", + "gps_code": "FZWC", + "iata_code": "GDJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gandajika_Airport" + }, + { + "id": "31493", + "ident": "FZWE", + "type": "small_airport", + "name": "Mwene-Ditu Airport", + "latitude_deg": "-6.982999801635742", + "longitude_deg": "23.08300018310547", + "elevation_ft": "3198", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Mwene-Ditu", + "scheduled_service": "no", + "gps_code": "FZWE" + }, + { + "id": "31494", + "ident": "FZWF", + "type": "small_airport", + "name": "Kipushi Airport", + "latitude_deg": "-6.166999816894531", + "longitude_deg": "25.183000564575195", + "elevation_ft": "2953", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Kipushi", + "scheduled_service": "no", + "gps_code": "FZWF" + }, + { + "id": "31495", + "ident": "FZWI", + "type": "small_airport", + "name": "Kashia Airport", + "latitude_deg": "-7.2170000076293945", + "longitude_deg": "23.75", + "elevation_ft": "2887", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Kashia", + "scheduled_service": "no", + "gps_code": "FZWI" + }, + { + "id": "31496", + "ident": "FZWL", + "type": "small_airport", + "name": "Munkamba Airport", + "latitude_deg": "-5.767000198364258", + "longitude_deg": "23.049999237060547", + "elevation_ft": "2230", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KW", + "municipality": "Munkamba", + "scheduled_service": "no", + "gps_code": "FZWL" + }, + { + "id": "31497", + "ident": "FZWR", + "type": "small_airport", + "name": "Kisengwa Airport", + "latitude_deg": "-6.017000198364258", + "longitude_deg": "25.882999420166016", + "elevation_ft": "2428", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Kisengwa", + "scheduled_service": "no", + "gps_code": "FZWR" + }, + { + "id": "31498", + "ident": "FZWS", + "type": "small_airport", + "name": "Lubao Airport", + "latitude_deg": "-5.300000190734863", + "longitude_deg": "25.732999801635742", + "elevation_ft": "2625", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Lubao", + "scheduled_service": "no", + "gps_code": "FZWS" + }, + { + "id": "31726", + "ident": "FZWT", + "type": "small_airport", + "name": "Tunta Airport", + "latitude_deg": "-6.132999897", + "longitude_deg": "24.4829998016", + "elevation_ft": "2766", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KE", + "municipality": "Kabinda", + "scheduled_service": "no", + "gps_code": "FZWT", + "iata_code": "KBN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tunta_Airport", + "keywords": "Tunda" + }, + { + "id": "17472", + "ident": "G05", + "type": "small_airport", + "name": "Finleyville Airpark", + "latitude_deg": "40.24589920043945", + "longitude_deg": "-80.01229858398438", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Finleyville", + "scheduled_service": "no", + "gps_code": "G05", + "local_code": "G05" + }, + { + "id": "316479", + "ident": "GA-0001", + "type": "small_airport", + "name": "Koulamoutou Airport", + "latitude_deg": "-1.106", + "longitude_deg": "12.503", + "elevation_ft": "1100", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-7", + "municipality": "Koulamoutou", + "scheduled_service": "no", + "keywords": "FOKO, KOU, Koulamouton" + }, + { + "id": "318562", + "ident": "GA-0002", + "type": "small_airport", + "name": "Amvémé Airport", + "latitude_deg": "0.287176", + "longitude_deg": "11.386303", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-9", + "municipality": "Amvémé", + "scheduled_service": "no" + }, + { + "id": "340288", + "ident": "GA-0003", + "type": "small_airport", + "name": "Gavilo Lodge Airstrip", + "latitude_deg": "-1.895675", + "longitude_deg": "9.31777", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-8", + "municipality": "Iguela", + "scheduled_service": "no" + }, + { + "id": "340289", + "ident": "GA-0004", + "type": "small_airport", + "name": "Batanga Airstrip", + "latitude_deg": "-1.442", + "longitude_deg": "9.1188", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-8", + "municipality": "Batanga", + "scheduled_service": "no" + }, + { + "id": "340291", + "ident": "GA-0005", + "type": "small_airport", + "name": "Nkan Airstrip", + "latitude_deg": "0.3843", + "longitude_deg": "9.75364", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-1", + "municipality": "Ntoum", + "scheduled_service": "no" + }, + { + "id": "30633", + "ident": "GA-AKE", + "type": "small_airport", + "name": "Akieni Airport", + "latitude_deg": "-1.13967001438", + "longitude_deg": "13.9035997391", + "elevation_ft": "1660", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-2", + "municipality": "Akieni", + "scheduled_service": "no", + "gps_code": "FOGA", + "iata_code": "AKE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Akieni_Airport" + }, + { + "id": "35322", + "ident": "GA-GAX", + "type": "small_airport", + "name": "Gamba Airport", + "latitude_deg": "-2.785278", + "longitude_deg": "10.047222", + "elevation_ft": "30", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-8", + "municipality": "Gamba", + "scheduled_service": "yes", + "gps_code": "FOGX", + "iata_code": "GAX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gamba_Airport" + }, + { + "id": "17473", + "ident": "GA00", + "type": "small_airport", + "name": "Kintail Farm Airport", + "latitude_deg": "33.825599670410156", + "longitude_deg": "-83.63970184326172", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "GA00", + "local_code": "GA00" + }, + { + "id": "17474", + "ident": "GA01", + "type": "closed", + "name": "Flying H Ranch Inc Airport", + "latitude_deg": "33.1978", + "longitude_deg": "-84.084396", + "elevation_ft": "722", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Jackson", + "scheduled_service": "no", + "keywords": "GA01" + }, + { + "id": "17475", + "ident": "GA02", + "type": "closed", + "name": "Howard Private Airport", + "latitude_deg": "33.357008", + "longitude_deg": "-83.963442", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Jackson", + "scheduled_service": "no", + "keywords": "GA02" + }, + { + "id": "17476", + "ident": "GA03", + "type": "small_airport", + "name": "Wilson Airport", + "latitude_deg": "34.86949920654297", + "longitude_deg": "-85.19969940185547", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Ringgold", + "scheduled_service": "no", + "gps_code": "GA03", + "local_code": "GA03" + }, + { + "id": "17477", + "ident": "GA04", + "type": "small_airport", + "name": "Mallards Landing Airport", + "latitude_deg": "33.364574", + "longitude_deg": "-84.168249", + "elevation_ft": "837", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Locust Grove", + "scheduled_service": "no", + "gps_code": "GA04", + "local_code": "GA04" + }, + { + "id": "17478", + "ident": "GA05", + "type": "heliport", + "name": "Ramada Inn Antebellum Heliport", + "latitude_deg": "33.55350112915039", + "longitude_deg": "-83.47160339355469", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "GA05", + "local_code": "GA05" + }, + { + "id": "17479", + "ident": "GA06", + "type": "small_airport", + "name": "Monticello Sky Ranch Airport", + "latitude_deg": "33.33250045776367", + "longitude_deg": "-83.72689819335938", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Monticello", + "scheduled_service": "no", + "gps_code": "GA06", + "local_code": "GA06" + }, + { + "id": "17480", + "ident": "GA07", + "type": "closed", + "name": "Crawford Hendrix Farm Airport", + "latitude_deg": "32.239672", + "longitude_deg": "-81.640434", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Statesboro", + "scheduled_service": "no", + "keywords": "GA07" + }, + { + "id": "17481", + "ident": "GA08", + "type": "closed", + "name": "Jumpin J Airport", + "latitude_deg": "32.691724", + "longitude_deg": "-84.497209", + "elevation_ft": "659", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Talbotton", + "scheduled_service": "no", + "keywords": "GA08" + }, + { + "id": "17482", + "ident": "GA09", + "type": "small_airport", + "name": "Fly-N-S Ranch Airport", + "latitude_deg": "34.451698303222656", + "longitude_deg": "-83.7885971069336", + "elevation_ft": "1330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Clermont", + "scheduled_service": "no", + "gps_code": "GA09", + "local_code": "GA09" + }, + { + "id": "17483", + "ident": "GA10", + "type": "small_airport", + "name": "Ridgeview Farm Airport", + "latitude_deg": "33.080396", + "longitude_deg": "-84.359121", + "elevation_ft": "854", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Zebulon", + "scheduled_service": "no", + "gps_code": "GA10", + "local_code": "GA10" + }, + { + "id": "17484", + "ident": "GA11", + "type": "heliport", + "name": "Childrens Health Care Atl At Scottish Rite Heliport", + "latitude_deg": "33.90719985961914", + "longitude_deg": "-84.35420227050781", + "elevation_ft": "1158", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "GA11", + "local_code": "GA11" + }, + { + "id": "17485", + "ident": "GA12", + "type": "closed", + "name": "Tallassee Plantation Airport", + "latitude_deg": "31.5835", + "longitude_deg": "-84.390503", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Albany", + "scheduled_service": "no", + "keywords": "GA12" + }, + { + "id": "17486", + "ident": "GA13", + "type": "closed", + "name": "Double 'O' Farm Airport", + "latitude_deg": "31.534901", + "longitude_deg": "-84.002096", + "elevation_ft": "297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Albany", + "scheduled_service": "no", + "keywords": "GA13" + }, + { + "id": "17487", + "ident": "GA14", + "type": "small_airport", + "name": "Pinebloom Plantation Airport", + "latitude_deg": "31.402999877929688", + "longitude_deg": "-84.32270050048828", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "GA14", + "local_code": "GA14" + }, + { + "id": "17488", + "ident": "GA15", + "type": "closed", + "name": "Klockner Airport", + "latitude_deg": "33.708698", + "longitude_deg": "-83.579101", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Bostwick", + "scheduled_service": "no", + "keywords": "GA15" + }, + { + "id": "17489", + "ident": "GA16", + "type": "small_airport", + "name": "Taylor Field", + "latitude_deg": "33.724300384521484", + "longitude_deg": "-83.56680297851562", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Bostwick", + "scheduled_service": "no", + "gps_code": "GA16", + "local_code": "GA16" + }, + { + "id": "17490", + "ident": "GA17", + "type": "small_airport", + "name": "Flint River Nursery Airport", + "latitude_deg": "32.168800354003906", + "longitude_deg": "-83.97350311279297", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Byromville", + "scheduled_service": "no", + "gps_code": "GA17", + "local_code": "GA17" + }, + { + "id": "17491", + "ident": "GA18", + "type": "small_airport", + "name": "Big Creek Flying Ranch Airport", + "latitude_deg": "34.832381", + "longitude_deg": "-83.409226", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Clayton", + "scheduled_service": "no", + "gps_code": "GA18", + "local_code": "GA18", + "keywords": "Rickman Airfield" + }, + { + "id": "17492", + "ident": "GA19", + "type": "closed", + "name": "Hearn Airport", + "latitude_deg": "32.15691", + "longitude_deg": "-81.888442", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Claxton", + "scheduled_service": "no", + "keywords": "GA19" + }, + { + "id": "4684", + "ident": "GA1A", + "type": "small_airport", + "name": "Kayes Airport", + "latitude_deg": "14.431300163269043", + "longitude_deg": "-11.43970012664795", + "elevation_ft": "161", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-1", + "scheduled_service": "no", + "gps_code": "GA1A", + "local_code": "GA1A" + }, + { + "id": "17493", + "ident": "GA2", + "type": "small_airport", + "name": "Peach State Aerodrome", + "latitude_deg": "33.183534", + "longitude_deg": "-84.377997", + "elevation_ft": "926", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Williamson", + "scheduled_service": "no", + "local_code": "GA2", + "home_link": "https://www.peachstateaero.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Peach_State_Airport", + "keywords": "Alexander Memorial Airport, Peach State Airport, Candler Field, Antique Acres" + }, + { + "id": "17494", + "ident": "GA20", + "type": "small_airport", + "name": "Stafford Airport", + "latitude_deg": "30.811100006103516", + "longitude_deg": "-81.46279907226562", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Cumberland Island", + "scheduled_service": "no", + "gps_code": "GA20", + "local_code": "GA20" + }, + { + "id": "17495", + "ident": "GA21", + "type": "small_airport", + "name": "Patterson Island Airport", + "latitude_deg": "31.461299896240234", + "longitude_deg": "-81.33869934082031", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Darien", + "scheduled_service": "no", + "gps_code": "GA21", + "local_code": "GA21" + }, + { + "id": "17496", + "ident": "GA22", + "type": "small_airport", + "name": "Jordans Airport", + "latitude_deg": "31.438499450683594", + "longitude_deg": "-84.70829772949219", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "GA22", + "local_code": "GA22" + }, + { + "id": "17497", + "ident": "GA23", + "type": "small_airport", + "name": "Wyatt Airport", + "latitude_deg": "34.57830047607422", + "longitude_deg": "-85.38390350341797", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Summerville", + "scheduled_service": "no", + "gps_code": "GA23", + "local_code": "GA23" + }, + { + "id": "17498", + "ident": "GA24", + "type": "heliport", + "name": "Monroe County Hospital Heliport", + "latitude_deg": "33.030902", + "longitude_deg": "-83.945049", + "elevation_ft": "1620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Forsyth", + "scheduled_service": "no", + "gps_code": "GA24", + "local_code": "GA24" + }, + { + "id": "17499", + "ident": "GA25", + "type": "small_airport", + "name": "Fargo Airport", + "latitude_deg": "30.691299438476562", + "longitude_deg": "-82.56759643554688", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fargo", + "scheduled_service": "no", + "gps_code": "GA25", + "local_code": "GA25" + }, + { + "id": "17500", + "ident": "GA26", + "type": "heliport", + "name": "Fort Gordon Hqs Helipad Heliport", + "latitude_deg": "33.4203987121582", + "longitude_deg": "-82.13960266113281", + "elevation_ft": "458", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fort Gordon(Augusta)", + "scheduled_service": "no", + "gps_code": "GA26", + "local_code": "GA26" + }, + { + "id": "17501", + "ident": "GA27", + "type": "closed", + "name": "Mathis Airport", + "latitude_deg": "34.1012", + "longitude_deg": "-84.161003", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Cumming", + "scheduled_service": "no", + "gps_code": "GA27", + "local_code": "GA27" + }, + { + "id": "17502", + "ident": "GA28", + "type": "heliport", + "name": "East Georgia Regional Medical Center Heliport", + "latitude_deg": "32.40530014038086", + "longitude_deg": "-81.76830291748047", + "elevation_ft": "212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Statesboro", + "scheduled_service": "no", + "gps_code": "GA28", + "local_code": "GA28" + }, + { + "id": "17503", + "ident": "GA29", + "type": "small_airport", + "name": "Wellers Landing Airport", + "latitude_deg": "33.156087", + "longitude_deg": "-84.431201", + "elevation_ft": "843", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Hollonville", + "scheduled_service": "no", + "gps_code": "GA29", + "local_code": "GA29", + "keywords": "B & L Strip" + }, + { + "id": "17504", + "ident": "GA30", + "type": "closed", + "name": "Eliott Barrow Airport", + "latitude_deg": "33.2001", + "longitude_deg": "-82.266502", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Matthews", + "scheduled_service": "no", + "keywords": "GA30" + }, + { + "id": "17505", + "ident": "GA31", + "type": "small_airport", + "name": "Two Rocks Airport", + "latitude_deg": "33.469422", + "longitude_deg": "-84.669026", + "elevation_ft": "964", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Palmetto", + "scheduled_service": "no", + "gps_code": "GA31", + "local_code": "GA31" + }, + { + "id": "17506", + "ident": "GA32", + "type": "heliport", + "name": "Candler County Hospital Heliport", + "latitude_deg": "32.407555", + "longitude_deg": "-82.065178", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Metter", + "scheduled_service": "no", + "gps_code": "GA32", + "local_code": "GA32" + }, + { + "id": "17507", + "ident": "GA33", + "type": "heliport", + "name": "West Georgia Medical Center Heliport", + "latitude_deg": "33.03120040893555", + "longitude_deg": "-85.05580139160156", + "elevation_ft": "756", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Lagrange", + "scheduled_service": "no", + "gps_code": "GA33", + "local_code": "GA33" + }, + { + "id": "17508", + "ident": "GA34", + "type": "closed", + "name": "Tootle Airport", + "latitude_deg": "32.032028", + "longitude_deg": "-82.044178", + "elevation_ft": "202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Reidsville", + "scheduled_service": "no", + "keywords": "GA34" + }, + { + "id": "17509", + "ident": "GA35", + "type": "small_airport", + "name": "Cypress Lakes Airport", + "latitude_deg": "32.157501220703125", + "longitude_deg": "-81.39669799804688", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Savannah", + "scheduled_service": "no", + "gps_code": "GA35", + "local_code": "GA35" + }, + { + "id": "17510", + "ident": "GA36", + "type": "closed", + "name": "Foothills-Holcomb Airport", + "latitude_deg": "34.391701", + "longitude_deg": "-84.241699", + "elevation_ft": "1425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Marble Hill", + "scheduled_service": "no", + "keywords": "GA36" + }, + { + "id": "17511", + "ident": "GA37", + "type": "heliport", + "name": "Memorial Hospital Heliport", + "latitude_deg": "32.02109909057617", + "longitude_deg": "-81.0802993774414", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Savannah", + "scheduled_service": "no", + "gps_code": "GA37", + "local_code": "GA37" + }, + { + "id": "17512", + "ident": "GA38", + "type": "heliport", + "name": "Walton County Hospital Heliport", + "latitude_deg": "33.78319931", + "longitude_deg": "-83.71790314", + "elevation_ft": "869", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "GA38", + "local_code": "GA38" + }, + { + "id": "17513", + "ident": "GA39", + "type": "small_airport", + "name": "Hodges Airpark", + "latitude_deg": "31.984399795532227", + "longitude_deg": "-81.24620056152344", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Savannah", + "scheduled_service": "no", + "gps_code": "GA39", + "local_code": "GA39" + }, + { + "id": "17514", + "ident": "GA40", + "type": "heliport", + "name": "Beaver Trail Heliport", + "latitude_deg": "34.25419998168945", + "longitude_deg": "-83.96849822998047", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Gainesville", + "scheduled_service": "no", + "gps_code": "GA40", + "local_code": "GA40" + }, + { + "id": "17515", + "ident": "GA41", + "type": "small_airport", + "name": "Daniels Airport", + "latitude_deg": "32.61410140991211", + "longitude_deg": "-82.2970962524414", + "elevation_ft": "288", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Swainsboro", + "scheduled_service": "no", + "gps_code": "GA41", + "local_code": "GA41" + }, + { + "id": "17516", + "ident": "GA42", + "type": "closed", + "name": "Crowe Airport", + "latitude_deg": "31.6168", + "longitude_deg": "-83.883202", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Sylvester", + "scheduled_service": "no", + "keywords": "GA42" + }, + { + "id": "17517", + "ident": "GA43", + "type": "small_airport", + "name": "Briggs Field", + "latitude_deg": "32.3213996887207", + "longitude_deg": "-81.42669677734375", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Guyton", + "scheduled_service": "no", + "gps_code": "GA43", + "local_code": "GA43" + }, + { + "id": "17518", + "ident": "GA44", + "type": "small_airport", + "name": "Richards Airport", + "latitude_deg": "33.081113", + "longitude_deg": "-85.018559", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Lagrange", + "scheduled_service": "no", + "gps_code": "GA44", + "local_code": "GA44" + }, + { + "id": "17519", + "ident": "GA45", + "type": "small_airport", + "name": "Townsend Air Strip", + "latitude_deg": "31.54330062866211", + "longitude_deg": "-81.53479766845703", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Townsend", + "scheduled_service": "no", + "gps_code": "GA45", + "local_code": "GA45" + }, + { + "id": "17521", + "ident": "GA47", + "type": "small_airport", + "name": "Bivins Airport", + "latitude_deg": "31.184121", + "longitude_deg": "-82.271421", + "elevation_ft": "134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Waycross", + "scheduled_service": "no", + "gps_code": "GA47", + "local_code": "GA47" + }, + { + "id": "45372", + "ident": "GA48", + "type": "small_airport", + "name": "Mclendon Airport", + "latitude_deg": "31.586111", + "longitude_deg": "-84.790556", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Edison", + "scheduled_service": "no", + "gps_code": "GA48", + "local_code": "GA48" + }, + { + "id": "17522", + "ident": "GA49", + "type": "closed", + "name": "Thistle Field", + "latitude_deg": "32.927898", + "longitude_deg": "-84.141296", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Yatesville", + "scheduled_service": "no", + "keywords": "GA49" + }, + { + "id": "17523", + "ident": "GA50", + "type": "small_airport", + "name": "Dream Team Airport", + "latitude_deg": "33.59682", + "longitude_deg": "-83.519469", + "elevation_ft": "604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "GA50", + "local_code": "GA50" + }, + { + "id": "17524", + "ident": "GA51", + "type": "heliport", + "name": "Vogtle Electric Generating Plant Heliport", + "latitude_deg": "33.12519836425781", + "longitude_deg": "-81.74539947509766", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Waynesboro", + "scheduled_service": "no", + "gps_code": "GA51", + "local_code": "GA51" + }, + { + "id": "17525", + "ident": "GA52", + "type": "heliport", + "name": "Saint Joseph's Hospital Heliport", + "latitude_deg": "33.91080093383789", + "longitude_deg": "-84.35079956054688", + "elevation_ft": "1035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "GA52", + "local_code": "GA52" + }, + { + "id": "17526", + "ident": "GA53", + "type": "closed", + "name": "Rollins Airport", + "latitude_deg": "33.81514", + "longitude_deg": "-84.369923", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "GA53", + "local_code": "GA53", + "keywords": "Rollins STOLport" + }, + { + "id": "17527", + "ident": "GA54", + "type": "heliport", + "name": "Interstate North Heliport", + "latitude_deg": "33.900901794433594", + "longitude_deg": "-84.46920013427734", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "GA54", + "local_code": "GA54" + }, + { + "id": "17528", + "ident": "GA55", + "type": "heliport", + "name": "Northside Hospital Heliport", + "latitude_deg": "33.90950012207031", + "longitude_deg": "-84.35269927978516", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "GA55", + "local_code": "GA55" + }, + { + "id": "17529", + "ident": "GA56", + "type": "heliport", + "name": "The Coca Cola Company Heliport", + "latitude_deg": "33.77090072631836", + "longitude_deg": "-84.3988037109375", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "GA56", + "local_code": "GA56" + }, + { + "id": "17530", + "ident": "GA57", + "type": "heliport", + "name": "Roswell Animal Hospital Heliport", + "latitude_deg": "34.03089904785156", + "longitude_deg": "-84.35600280761719", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Roswell", + "scheduled_service": "no", + "gps_code": "GA57", + "local_code": "GA57" + }, + { + "id": "17531", + "ident": "GA58", + "type": "heliport", + "name": "Dekalb Police Dept Heliport", + "latitude_deg": "33.7773017883", + "longitude_deg": "-84.242401123", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Avondale Estates", + "scheduled_service": "no", + "gps_code": "GA58", + "local_code": "GA58" + }, + { + "id": "17532", + "ident": "GA59", + "type": "small_airport", + "name": "Antique Acres Airport", + "latitude_deg": "33.100101470947266", + "longitude_deg": "-84.05850219726562", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Barnesville", + "scheduled_service": "no", + "gps_code": "GA59", + "local_code": "GA59" + }, + { + "id": "17533", + "ident": "GA60", + "type": "heliport", + "name": "Memorial Satilla Health Heliport", + "latitude_deg": "31.224215", + "longitude_deg": "-82.347642", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Waycross", + "scheduled_service": "no", + "gps_code": "GA60", + "local_code": "GA60", + "keywords": "Satilla Regional Medical Center" + }, + { + "id": "17534", + "ident": "GA61", + "type": "small_airport", + "name": "Kenley Field", + "latitude_deg": "33.269234", + "longitude_deg": "-84.497624", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Brooks", + "scheduled_service": "no", + "gps_code": "GA61", + "local_code": "GA61", + "keywords": "Abernathy Field" + }, + { + "id": "17535", + "ident": "GA62", + "type": "small_airport", + "name": "Cedar Ridge Airport", + "latitude_deg": "33.25510025024414", + "longitude_deg": "-84.40019989013672", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Griffin", + "scheduled_service": "no", + "gps_code": "GA62", + "local_code": "GA62" + }, + { + "id": "17536", + "ident": "GA63", + "type": "closed", + "name": "Byromville Aerodrome", + "latitude_deg": "32.17933", + "longitude_deg": "-83.899901", + "elevation_ft": "354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Byromville", + "scheduled_service": "no", + "keywords": "GA63" + }, + { + "id": "17537", + "ident": "GA64", + "type": "heliport", + "name": "Crawford W. Long Memorial Hospital Heliport", + "latitude_deg": "33.76869965", + "longitude_deg": "-84.38629913", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "GA64", + "local_code": "GA64" + }, + { + "id": "17538", + "ident": "GA65", + "type": "closed", + "name": "Mercer Airfield", + "latitude_deg": "34.437", + "longitude_deg": "-84.919702", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Calhoun", + "scheduled_service": "no", + "keywords": "GA65" + }, + { + "id": "17539", + "ident": "GA66", + "type": "heliport", + "name": "Bridge Building Heliport", + "latitude_deg": "33.809669", + "longitude_deg": "-84.39515", + "elevation_ft": "939", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "GA66", + "local_code": "GA66" + }, + { + "id": "17540", + "ident": "GA67", + "type": "small_airport", + "name": "King Sky Ranch Airport", + "latitude_deg": "34.7681999206543", + "longitude_deg": "-83.59290313720703", + "elevation_ft": "1840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Clarkesville", + "scheduled_service": "no", + "gps_code": "GA67", + "local_code": "GA67" + }, + { + "id": "17541", + "ident": "GA68", + "type": "small_airport", + "name": "Flying H Ranch Airport", + "latitude_deg": "33.11285", + "longitude_deg": "-84.450366", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "GA68", + "local_code": "GA68" + }, + { + "id": "17542", + "ident": "GA69", + "type": "closed", + "name": "Paulding Memorial Hospital Heliport", + "latitude_deg": "33.9198", + "longitude_deg": "-84.852699", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "GA69", + "local_code": "GA69" + }, + { + "id": "17543", + "ident": "GA70", + "type": "heliport", + "name": "Hamilton Medical Center Heliport", + "latitude_deg": "34.78900146484375", + "longitude_deg": "-84.97270202636719", + "elevation_ft": "727", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Dalton", + "scheduled_service": "no", + "gps_code": "GA70", + "local_code": "GA70" + }, + { + "id": "17544", + "ident": "GA71", + "type": "heliport", + "name": "South Fulton Medical Center Heliport", + "latitude_deg": "33.67959976196289", + "longitude_deg": "-84.4271011352539", + "elevation_ft": "952", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "East Point", + "scheduled_service": "no", + "gps_code": "GA71", + "local_code": "GA71" + }, + { + "id": "17545", + "ident": "GA72", + "type": "small_airport", + "name": "Pratermill Flight Park Airport", + "latitude_deg": "34.88169860839844", + "longitude_deg": "-84.88970184326172", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Dalton", + "scheduled_service": "no", + "gps_code": "GA72", + "local_code": "GA72" + }, + { + "id": "17546", + "ident": "GA73", + "type": "small_airport", + "name": "Shade Tree Airport", + "latitude_deg": "33.16283", + "longitude_deg": "-84.445239", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "GA73", + "local_code": "GA73" + }, + { + "id": "17547", + "ident": "GA74", + "type": "small_airport", + "name": "Takle Field", + "latitude_deg": "33.04180145263672", + "longitude_deg": "-84.41239929199219", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "GA74", + "local_code": "GA74" + }, + { + "id": "17548", + "ident": "GA75", + "type": "small_airport", + "name": "Meadowlark Airport", + "latitude_deg": "33.08729934692383", + "longitude_deg": "-84.40519714355469", + "elevation_ft": "784", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "GA75", + "local_code": "GA75" + }, + { + "id": "17549", + "ident": "GA76", + "type": "small_airport", + "name": "Broken Ranch Airport", + "latitude_deg": "33.15489959716797", + "longitude_deg": "-83.8988037109375", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Forsyth", + "scheduled_service": "no", + "gps_code": "GA76", + "local_code": "GA76" + }, + { + "id": "17550", + "ident": "GA77", + "type": "closed", + "name": "Wallace Field", + "latitude_deg": "34.135798", + "longitude_deg": "-85.112197", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Rome", + "scheduled_service": "no", + "keywords": "GA77" + }, + { + "id": "17551", + "ident": "GA78", + "type": "heliport", + "name": "Appling General Hospital Heliport", + "latitude_deg": "31.768800735473633", + "longitude_deg": "-82.34850311279297", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Baxley", + "scheduled_service": "no", + "gps_code": "GA78", + "local_code": "GA78" + }, + { + "id": "17552", + "ident": "GA79", + "type": "small_airport", + "name": "Dresden Airport", + "latitude_deg": "33.34479904174805", + "longitude_deg": "-84.91130065917969", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Newnan", + "scheduled_service": "no", + "gps_code": "GA79", + "local_code": "GA79" + }, + { + "id": "17553", + "ident": "GA80", + "type": "small_airport", + "name": "Whispering Pines Airport", + "latitude_deg": "33.78229904174805", + "longitude_deg": "-83.98880004882812", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Conyers", + "scheduled_service": "no", + "gps_code": "GA80", + "local_code": "GA80" + }, + { + "id": "17554", + "ident": "GA81", + "type": "small_airport", + "name": "Cameron Field", + "latitude_deg": "32.549836", + "longitude_deg": "-83.827425", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fort Valley", + "scheduled_service": "no", + "gps_code": "GA81", + "local_code": "GA81" + }, + { + "id": "17555", + "ident": "GA82", + "type": "closed", + "name": "Morgan Farm Field", + "latitude_deg": "33.595901", + "longitude_deg": "-83.804102", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Covington", + "scheduled_service": "no", + "keywords": "GA82" + }, + { + "id": "17556", + "ident": "GA83", + "type": "small_airport", + "name": "Windy Hill Airport", + "latitude_deg": "33.54679870605469", + "longitude_deg": "-83.80549621582031", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Covington", + "scheduled_service": "no", + "gps_code": "GA83", + "local_code": "GA83" + }, + { + "id": "17557", + "ident": "GA84", + "type": "heliport", + "name": "Mc Donald Heliport", + "latitude_deg": "34.203536", + "longitude_deg": "-84.051787", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Cumming", + "scheduled_service": "no", + "gps_code": "GA84", + "local_code": "GA84" + }, + { + "id": "17558", + "ident": "GA85", + "type": "heliport", + "name": "State Capital Parking Lot Heliport", + "latitude_deg": "33.7484016418457", + "longitude_deg": "-84.38739776611328", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "GA85", + "local_code": "GA85" + }, + { + "id": "17559", + "ident": "GA86", + "type": "small_airport", + "name": "Little Tobesofkee Creek Ranch Airport", + "latitude_deg": "32.9838981628418", + "longitude_deg": "-84.09559631347656", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Barnesville", + "scheduled_service": "no", + "gps_code": "GA86", + "local_code": "GA86" + }, + { + "id": "17560", + "ident": "GA87", + "type": "small_airport", + "name": "High Valley Airpark", + "latitude_deg": "34.69810104370117", + "longitude_deg": "-84.01270294189453", + "elevation_ft": "2800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Suches", + "scheduled_service": "no", + "gps_code": "GA87", + "local_code": "GA87" + }, + { + "id": "17561", + "ident": "GA88", + "type": "closed", + "name": "Wade Plantation Airport", + "latitude_deg": "32.9771", + "longitude_deg": "-81.5362", + "elevation_ft": "146", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Sylvania", + "scheduled_service": "no", + "keywords": "GA88" + }, + { + "id": "17562", + "ident": "GA89", + "type": "small_airport", + "name": "Diamond S Airport", + "latitude_deg": "33.475799560546875", + "longitude_deg": "-84.27690124511719", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Lovejoy", + "scheduled_service": "no", + "gps_code": "GA89", + "local_code": "GA89" + }, + { + "id": "17563", + "ident": "GA90", + "type": "small_airport", + "name": "Walker Field", + "latitude_deg": "33.451329", + "longitude_deg": "-84.408624", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "GA90", + "local_code": "GA90" + }, + { + "id": "17564", + "ident": "GA91", + "type": "closed", + "name": "Adams Airport", + "latitude_deg": "33.397099", + "longitude_deg": "-84.460197", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fayetteville", + "scheduled_service": "no", + "keywords": "GA91" + }, + { + "id": "17565", + "ident": "GA92", + "type": "small_airport", + "name": "Beck Field", + "latitude_deg": "33.52123", + "longitude_deg": "-84.510211", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "GA92", + "local_code": "GA92" + }, + { + "id": "17566", + "ident": "GA93", + "type": "closed", + "name": "Bishops Airport", + "latitude_deg": "33.445301", + "longitude_deg": "-84.4067", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fayetteville", + "scheduled_service": "no", + "keywords": "GA93" + }, + { + "id": "17567", + "ident": "GA94", + "type": "small_airport", + "name": "McLendon Airport", + "latitude_deg": "33.491501", + "longitude_deg": "-84.489403", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "GA94", + "local_code": "GA94" + }, + { + "id": "17568", + "ident": "GA95", + "type": "small_airport", + "name": "Coleman Field", + "latitude_deg": "33.526199", + "longitude_deg": "-84.502197", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "GA95", + "local_code": "GA95" + }, + { + "id": "17569", + "ident": "GA96", + "type": "heliport", + "name": "Fort Mcpherson Heliport", + "latitude_deg": "33.712501525878906", + "longitude_deg": "-84.43060302734375", + "elevation_ft": "1052", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fort Mcpherson", + "scheduled_service": "no", + "gps_code": "GA96", + "local_code": "GA96" + }, + { + "id": "17570", + "ident": "GA97", + "type": "closed", + "name": "Joseph G Lapointe(Martin Army Hospital) Heliport", + "latitude_deg": "32.383499", + "longitude_deg": "-84.933296", + "elevation_ft": "405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fort Benning(Columbus)", + "scheduled_service": "no", + "keywords": "GA97" + }, + { + "id": "17571", + "ident": "GA98", + "type": "small_airport", + "name": "Grayhill Airport", + "latitude_deg": "32.9489021301", + "longitude_deg": "-85.05052948", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "LaGrange", + "scheduled_service": "no", + "gps_code": "GA98", + "local_code": "GA98" + }, + { + "id": "17572", + "ident": "GA99", + "type": "small_airport", + "name": "Miami Valley Farm Airport", + "latitude_deg": "32.547414", + "longitude_deg": "-83.801177", + "elevation_ft": "468", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fort Valley", + "scheduled_service": "no", + "gps_code": "GA99", + "local_code": "GA99" + }, + { + "id": "31499", + "ident": "GAAO", + "type": "small_airport", + "name": "Ansongo Airport", + "latitude_deg": "15.700633", + "longitude_deg": "0.494052", + "elevation_ft": "853", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-7", + "municipality": "Ansongo", + "scheduled_service": "no", + "gps_code": "GAAO" + }, + { + "id": "17573", + "ident": "GAB", + "type": "small_airport", + "name": "Gabbs Airport", + "latitude_deg": "38.923173", + "longitude_deg": "-117.9572", + "elevation_ft": "4700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Gabbs", + "scheduled_service": "no", + "gps_code": "KGAB", + "iata_code": "GAB", + "local_code": "GAB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gabbs_Airport" + }, + { + "id": "31500", + "ident": "GABD", + "type": "small_airport", + "name": "Bandiagara Airport", + "latitude_deg": "14.336931", + "longitude_deg": "-3.609778", + "elevation_ft": "1312", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-5", + "municipality": "Bandiagara", + "scheduled_service": "no", + "gps_code": "GABD" + }, + { + "id": "31501", + "ident": "GABF", + "type": "small_airport", + "name": "Bafoulabé Airport", + "latitude_deg": "13.80694", + "longitude_deg": "-10.84779", + "elevation_ft": "380", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-1", + "municipality": "Bafoulabé", + "scheduled_service": "no", + "gps_code": "GABF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bafoulab%C3%A9_Airport" + }, + { + "id": "31502", + "ident": "GABG", + "type": "small_airport", + "name": "Bougouni Airport", + "latitude_deg": "11.441892", + "longitude_deg": "-7.506888", + "elevation_ft": "1139", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-3", + "municipality": "Bougouni", + "scheduled_service": "no", + "gps_code": "GABG" + }, + { + "id": "31503", + "ident": "GABR", + "type": "small_airport", + "name": "Bourem Airport", + "latitude_deg": "17.0262", + "longitude_deg": "-0.4063", + "elevation_ft": "941", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-7", + "municipality": "Bourem", + "scheduled_service": "no", + "gps_code": "GABR" + }, + { + "id": "3066", + "ident": "GABS", + "type": "large_airport", + "name": "Modibo Keita International Airport", + "latitude_deg": "12.5335", + "longitude_deg": "-7.94994", + "elevation_ft": "1247", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-2", + "municipality": "Bamako", + "scheduled_service": "yes", + "gps_code": "GABS", + "iata_code": "BKO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bamako%E2%80%93S%C3%A9nou_International_Airport", + "keywords": "Senou Airport" + }, + { + "id": "31504", + "ident": "GADA", + "type": "small_airport", + "name": "Dioila Airport", + "latitude_deg": "12.511918", + "longitude_deg": "-6.801277", + "elevation_ft": "1050", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-2", + "municipality": "Dioila", + "scheduled_service": "no", + "gps_code": "GADA" + }, + { + "id": "31505", + "ident": "GADZ", + "type": "small_airport", + "name": "Douentza Airport", + "latitude_deg": "15", + "longitude_deg": "-2.9170000553131104", + "elevation_ft": "984", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-5", + "municipality": "Douentza", + "scheduled_service": "no", + "gps_code": "GADZ" + }, + { + "id": "31506", + "ident": "GAFD", + "type": "small_airport", + "name": "Faladie Airport", + "latitude_deg": "13.15064", + "longitude_deg": "-8.333459", + "elevation_ft": "1115", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-2", + "municipality": "Faladie", + "scheduled_service": "no", + "gps_code": "GAFD" + }, + { + "id": "31555", + "ident": "GAGM", + "type": "small_airport", + "name": "Goundam Airport", + "latitude_deg": "16.358426", + "longitude_deg": "-3.604536", + "elevation_ft": "866", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-6", + "municipality": "Goundam", + "scheduled_service": "no", + "gps_code": "GAGM", + "iata_code": "GUD" + }, + { + "id": "3067", + "ident": "GAGO", + "type": "medium_airport", + "name": "Gao Airport", + "latitude_deg": "16.2484", + "longitude_deg": "-0.005456", + "elevation_ft": "870", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-7", + "scheduled_service": "yes", + "gps_code": "GAGO", + "iata_code": "GAQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gao_International_Airport" + }, + { + "id": "31765", + "ident": "GAKA", + "type": "small_airport", + "name": "Kenieba Airport", + "latitude_deg": "12.833000183105469", + "longitude_deg": "-11.25", + "elevation_ft": "449", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-1", + "municipality": "Kenieba", + "scheduled_service": "no", + "gps_code": "GAKA", + "iata_code": "KNZ" + }, + { + "id": "31507", + "ident": "GAKL", + "type": "small_airport", + "name": "Kidal Airport", + "latitude_deg": "18.4330005646", + "longitude_deg": "1.4170000553100002", + "elevation_ft": "1496", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-8", + "municipality": "Kidal", + "scheduled_service": "no", + "gps_code": "GAKL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kidal_Airport" + }, + { + "id": "31508", + "ident": "GAKM", + "type": "closed", + "name": "Ke-Macina Airport", + "latitude_deg": "13.966876", + "longitude_deg": "-5.382999", + "elevation_ft": "902", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-4", + "municipality": "Ke-Macina", + "scheduled_service": "no", + "gps_code": "GAKM" + }, + { + "id": "31509", + "ident": "GAKN", + "type": "small_airport", + "name": "Kolokani Airport", + "latitude_deg": "13.532999992370605", + "longitude_deg": "-8.050000190734863", + "elevation_ft": "1457", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-2", + "municipality": "Kolokani", + "scheduled_service": "no", + "gps_code": "GAKN" + }, + { + "id": "31783", + "ident": "GAKO", + "type": "small_airport", + "name": "Koutiala Airport", + "latitude_deg": "12.383000373840332", + "longitude_deg": "-5.4670000076293945", + "elevation_ft": "1240", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-3", + "municipality": "Koutiala", + "scheduled_service": "no", + "gps_code": "GAKO", + "iata_code": "KTX" + }, + { + "id": "31510", + "ident": "GAKT", + "type": "small_airport", + "name": "Kita Airport", + "latitude_deg": "13.067000389099121", + "longitude_deg": "-9.482999801635742", + "elevation_ft": "1122", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-1", + "municipality": "Kita", + "scheduled_service": "no", + "gps_code": "GAKT" + }, + { + "id": "3068", + "ident": "GAKY", + "type": "medium_airport", + "name": "Kayes Dag Dag Airport", + "latitude_deg": "14.4812", + "longitude_deg": "-11.4044", + "elevation_ft": "164", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-1", + "scheduled_service": "yes", + "gps_code": "GAKD", + "iata_code": "KYS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kayes_Airport" + }, + { + "id": "31511", + "ident": "GAMA", + "type": "closed", + "name": "Markala Airport", + "latitude_deg": "13.7", + "longitude_deg": "-6.067", + "elevation_ft": "1251", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-4", + "municipality": "Markala", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Markala_Airport", + "keywords": "GAMA" + }, + { + "id": "3069", + "ident": "GAMB", + "type": "medium_airport", + "name": "Mopti Ambodédjo International Airport", + "latitude_deg": "14.5128", + "longitude_deg": "-4.07956", + "elevation_ft": "906", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-5", + "municipality": "Sévaré", + "scheduled_service": "yes", + "gps_code": "GAMB", + "iata_code": "MZI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mopti_Airport", + "keywords": "Ambodedjo Airport" + }, + { + "id": "31512", + "ident": "GAMK", + "type": "small_airport", + "name": "Menaka Airport", + "latitude_deg": "15.929102", + "longitude_deg": "2.346997", + "elevation_ft": "899", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-7", + "municipality": "Menaka", + "scheduled_service": "no", + "gps_code": "GAMK", + "wikipedia_link": "https://en.wikipedia.org/wiki/M%C3%A9naka_Airport" + }, + { + "id": "31513", + "ident": "GANF", + "type": "small_airport", + "name": "Niafunke Airport", + "latitude_deg": "15.924035", + "longitude_deg": "-4.007727", + "elevation_ft": "866", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-6", + "municipality": "Niafunke", + "scheduled_service": "no", + "gps_code": "GANF" + }, + { + "id": "32046", + "ident": "GANK", + "type": "small_airport", + "name": "Nara Airport", + "latitude_deg": "15.217000007629395", + "longitude_deg": "-7.267000198364258", + "elevation_ft": "889", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-2", + "municipality": "Nara", + "scheduled_service": "no", + "gps_code": "GANK", + "iata_code": "NRM" + }, + { + "id": "32031", + "ident": "GANR", + "type": "small_airport", + "name": "Nioro du Sahel Airport", + "latitude_deg": "15.238100051879883", + "longitude_deg": "-9.576109886169434", + "elevation_ft": "778", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-1", + "municipality": "Nioro du Sahel", + "scheduled_service": "no", + "gps_code": "GANR", + "iata_code": "NIX" + }, + { + "id": "31778", + "ident": "GASK", + "type": "small_airport", + "name": "Sikasso Airport", + "latitude_deg": "11.328611", + "longitude_deg": "-5.684722", + "elevation_ft": "1378", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-3", + "municipality": "Sikasso", + "scheduled_service": "no", + "gps_code": "GASK", + "iata_code": "KSS", + "keywords": "KSS" + }, + { + "id": "3070", + "ident": "GASO", + "type": "small_airport", + "name": "Dignangan Airport", + "latitude_deg": "11.598", + "longitude_deg": "-5.79971", + "elevation_ft": "1301", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-3", + "municipality": "Sikasso", + "scheduled_service": "no", + "gps_code": "GASO", + "local_code": "KSS" + }, + { + "id": "3071", + "ident": "GATB", + "type": "medium_airport", + "name": "Timbuktu Airport", + "latitude_deg": "16.730499", + "longitude_deg": "-3.00758", + "elevation_ft": "863", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-7", + "municipality": "Timbuktu", + "scheduled_service": "yes", + "gps_code": "GATB", + "iata_code": "TOM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Timbuktu_Airport", + "keywords": "Timbuctoo Airport, Tombouctou Airport, Tumbutu Airport, Tombouktou Airport" + }, + { + "id": "3072", + "ident": "GATS", + "type": "small_airport", + "name": "Tessalit Airport", + "latitude_deg": "20.243000030517578", + "longitude_deg": "0.9773079752922058", + "elevation_ft": "1621", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-7", + "scheduled_service": "no", + "gps_code": "GATS" + }, + { + "id": "31034", + "ident": "GAYE", + "type": "small_airport", + "name": "Yélimané Airport", + "latitude_deg": "15.133000373840332", + "longitude_deg": "-10.567000389099121", + "elevation_ft": "325", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-1", + "municipality": "Yélimané", + "scheduled_service": "no", + "gps_code": "GAYE", + "iata_code": "EYL" + }, + { + "id": "307735", + "ident": "GAZ", + "type": "small_airport", + "name": "Guasopa Airport", + "latitude_deg": "-9.225918", + "longitude_deg": "152.944352", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Woodlark (Muyua) Island", + "scheduled_service": "no", + "gps_code": "AYGJ", + "iata_code": "GAZ", + "local_code": "GPA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guasopa_Airport", + "keywords": "Woodlark Airfield, Narewa Airfield" + }, + { + "id": "32757", + "ident": "GB-0001", + "type": "closed", + "name": "RAF Barford St. John", + "latitude_deg": "52.004798889160156", + "longitude_deg": "-1.3575400114059448", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "35132", + "ident": "GB-0002", + "type": "small_airport", + "name": "Fishburn Airfield", + "latitude_deg": "54.686798095703125", + "longitude_deg": "-1.4583100080490112", + "elevation_ft": "377", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Sedgefield", + "scheduled_service": "no", + "home_link": "http://www.erudite.co.uk/fishburn/" + }, + { + "id": "35149", + "ident": "GB-0003", + "type": "closed", + "name": "Alexandra Park Aerodrome", + "latitude_deg": "53.4364013671875", + "longitude_deg": "-2.250200033187866", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Manchester", + "scheduled_service": "no" + }, + { + "id": "39560", + "ident": "GB-0004", + "type": "closed", + "name": "RAF Molesworth", + "latitude_deg": "52.38381576538086", + "longitude_deg": "-0.41705000400543213", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Molesworth", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Molesworth" + }, + { + "id": "42268", + "ident": "GB-0005", + "type": "small_airport", + "name": "Kirkbride Airfield", + "latitude_deg": "54.882", + "longitude_deg": "-3.2006", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Kirkbride", + "scheduled_service": "no", + "gps_code": "EGZF", + "home_link": "http://kirkbrideairfield.weebly.com/", + "keywords": "RAF Kirkbride" + }, + { + "id": "44081", + "ident": "GB-0006", + "type": "small_airport", + "name": "Draycott Farm", + "latitude_deg": "51.4934005737", + "longitude_deg": "-1.74381995201", + "elevation_ft": "498", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Swindon", + "scheduled_service": "no" + }, + { + "id": "45167", + "ident": "GB-0007", + "type": "small_airport", + "name": "Enstone Aerodrome", + "latitude_deg": "51.928166666699994", + "longitude_deg": "-1.4285", + "elevation_ft": "550", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Oxfordshire", + "scheduled_service": "no", + "gps_code": "EGTN", + "home_link": "http://www.enstoneaerodrome.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Enstone_Airfield" + }, + { + "id": "46501", + "ident": "GB-0008", + "type": "small_airport", + "name": "Causeway Airfield", + "latitude_deg": "55.05811", + "longitude_deg": "-6.5834", + "elevation_ft": "33", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Coleraine", + "scheduled_service": "no" + }, + { + "id": "299582", + "ident": "GB-0009", + "type": "small_airport", + "name": "Aboyne Airfield", + "latitude_deg": "57.075556", + "longitude_deg": "-2.839444", + "elevation_ft": "463", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Aboyne", + "scheduled_service": "no", + "gps_code": "EGZM" + }, + { + "id": "298592", + "ident": "GB-0010", + "type": "closed", + "name": "Spanhoe", + "latitude_deg": "52.558221", + "longitude_deg": "-0.620191", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "299583", + "ident": "GB-0011", + "type": "small_airport", + "name": "Aston Down Airfield", + "latitude_deg": "51.7080555556", + "longitude_deg": "-2.13055555556", + "elevation_ft": "598", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Minchinhampton", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aston_Down", + "keywords": "RAF Aston Down" + }, + { + "id": "299584", + "ident": "GB-0012", + "type": "closed", + "name": "Benone Strand/Londerry Airfield", + "latitude_deg": "55.166667", + "longitude_deg": "-6.859167", + "elevation_ft": "4", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Benone", + "scheduled_service": "no" + }, + { + "id": "299585", + "ident": "GB-0013", + "type": "small_airport", + "name": "Bidford Airfield", + "latitude_deg": "52.1377777778", + "longitude_deg": "-1.85027777778", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bidford on Avon", + "scheduled_service": "no", + "home_link": "http://bidfordglidingflyingclub.intuitwebsites.com/index.html" + }, + { + "id": "299586", + "ident": "GB-0014", + "type": "small_airport", + "name": "Blease Hall", + "latitude_deg": "54.2936111111", + "longitude_deg": "-2.69361111111", + "elevation_ft": "315", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Old Hutton", + "scheduled_service": "no" + }, + { + "id": "299587", + "ident": "GB-0015", + "type": "small_airport", + "name": "Brent Tor Glider Field", + "latitude_deg": "50.5925", + "longitude_deg": "-4.145278", + "elevation_ft": "851", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Tavistock", + "scheduled_service": "no", + "home_link": "https://www.dartmoorgliding.co.uk/", + "keywords": "Dartmoor Gliding Society" + }, + { + "id": "299588", + "ident": "GB-0016", + "type": "small_airport", + "name": "Bryngwyn Bach Airfield", + "latitude_deg": "53.27", + "longitude_deg": "-3.35611111111", + "elevation_ft": "650", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Rhuallt", + "scheduled_service": "no" + }, + { + "id": "299589", + "ident": "GB-0017", + "type": "small_airport", + "name": "Burn Airfield", + "latitude_deg": "53.745833333300006", + "longitude_deg": "-1.08444444444", + "elevation_ft": "25", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Selby", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Burn", + "keywords": "RAF Burn" + }, + { + "id": "299590", + "ident": "GB-0018", + "type": "small_airport", + "name": "Camphill Airfield", + "latitude_deg": "53.305", + "longitude_deg": "-1.73138888889", + "elevation_ft": "1300", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Great Hucklow", + "scheduled_service": "no", + "home_link": "http://www.dlgc.org.uk/" + }, + { + "id": "299591", + "ident": "GB-0019", + "type": "closed", + "name": "Carlton Moor Airfield", + "latitude_deg": "54.411111", + "longitude_deg": "-1.200556", + "elevation_ft": "1234", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Ashbourne", + "scheduled_service": "no", + "home_link": "http://www.caltonmoorflyers.co.uk/information.html" + }, + { + "id": "299896", + "ident": "GB-0020", + "type": "closed", + "name": "RAF St. David's", + "latitude_deg": "51.886134", + "longitude_deg": "-5.216221", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no" + }, + { + "id": "299593", + "ident": "GB-0021", + "type": "closed", + "name": "RAF Catterick", + "latitude_deg": "54.3665084231", + "longitude_deg": "-1.61808013916", + "elevation_ft": "172", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Catterick", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Catterick" + }, + { + "id": "299897", + "ident": "GB-0022", + "type": "small_airport", + "name": "Bristol and Gloucestershire Gliding Club", + "latitude_deg": "51.713682", + "longitude_deg": "-2.283697", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.bggc.co.uk/", + "keywords": "Gliding" + }, + { + "id": "299900", + "ident": "GB-0023", + "type": "small_airport", + "name": "Shenstone Hall Farm Airstrip", + "latitude_deg": "52.640056", + "longitude_deg": "-1.823226", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Shenstone", + "scheduled_service": "no" + }, + { + "id": "307266", + "ident": "GB-0024", + "type": "small_airport", + "name": "Croft Farm Airfield", + "latitude_deg": "52.0856666667", + "longitude_deg": "-2.13572222222", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Defford", + "scheduled_service": "no", + "home_link": "http://www.defford-croftfarm.co.uk/airfield.htm" + }, + { + "id": "307268", + "ident": "GB-0025", + "type": "small_airport", + "name": "Dorset Gliding Club (Eyres Field)", + "latitude_deg": "50.708933", + "longitude_deg": "-2.219496", + "elevation_ft": "100", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "307269", + "ident": "GB-0026", + "type": "small_airport", + "name": "Newton Peveril Airfield", + "latitude_deg": "50.7950039633", + "longitude_deg": "-2.09641456604", + "elevation_ft": "120", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "307341", + "ident": "GB-0027", + "type": "small_airport", + "name": "Stancombe Farm Airstrip (Private)", + "latitude_deg": "50.7245301059", + "longitude_deg": "-2.6344656944300002", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Litton Cheney", + "scheduled_service": "no" + }, + { + "id": "307342", + "ident": "GB-0028", + "type": "heliport", + "name": "Morn Farm Helipad (Private)", + "latitude_deg": "50.6251751577", + "longitude_deg": "-2.51304209232", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Chickerell", + "scheduled_service": "no" + }, + { + "id": "316925", + "ident": "GB-0029", + "type": "small_airport", + "name": "Melbury Airstrip", + "latitude_deg": "50.8794545", + "longitude_deg": "-2.6180083", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Melbury", + "scheduled_service": "no" + }, + { + "id": "316993", + "ident": "GB-0030", + "type": "small_airport", + "name": "Langar Airfield", + "latitude_deg": "52.89593", + "longitude_deg": "-0.90101", + "elevation_ft": "121", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Langar", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Langar", + "keywords": "Langar,RAF Langar" + }, + { + "id": "307361", + "ident": "GB-0031", + "type": "small_airport", + "name": "Middle Pymore Farm Airstrip (Private)", + "latitude_deg": "50.7512824893", + "longitude_deg": "-2.75954246521", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Pymore Bridport", + "scheduled_service": "no" + }, + { + "id": "307362", + "ident": "GB-0032", + "type": "small_airport", + "name": "Bath Wilts & North Dorset Gliding Club", + "latitude_deg": "51.12889923349999", + "longitude_deg": "-2.2460174560499997", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Kingston Deverill", + "scheduled_service": "no" + }, + { + "id": "307373", + "ident": "GB-0033", + "type": "small_airport", + "name": "Heywood Farm Airstrip", + "latitude_deg": "51.003871789499996", + "longitude_deg": "-3.24156761169", + "elevation_ft": "217", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Taunton", + "scheduled_service": "no" + }, + { + "id": "307375", + "ident": "GB-0034", + "type": "small_airport", + "name": "Cottage Farm Airstrip UL", + "latitude_deg": "52.669857", + "longitude_deg": "-1.520657", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Norton-Juxta-Twycross", + "scheduled_service": "no", + "keywords": "Measham" + }, + { + "id": "307377", + "ident": "GB-0035", + "type": "small_airport", + "name": "Old Park Farm Airstrip", + "latitude_deg": "51.547269127499995", + "longitude_deg": "-3.71732711792", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Port Talbot", + "scheduled_service": "no" + }, + { + "id": "322712", + "ident": "GB-0036", + "type": "small_airport", + "name": "Horse Leys Farm Airstrip", + "latitude_deg": "52.784969", + "longitude_deg": "-1.096687", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Burton-on-the-Wolds", + "scheduled_service": "no" + }, + { + "id": "307379", + "ident": "GB-0037", + "type": "small_airport", + "name": "White Ox Mead Airstrip", + "latitude_deg": "51.319831", + "longitude_deg": "-2.400856", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Peasdown St John", + "scheduled_service": "no" + }, + { + "id": "307382", + "ident": "GB-0038", + "type": "small_airport", + "name": "Eshott Airfield", + "latitude_deg": "55.280484", + "longitude_deg": "-1.714897", + "elevation_ft": "197", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Eshott, Northumberland", + "scheduled_service": "no", + "home_link": "http://eshottairfield.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eshott_Airfield" + }, + { + "id": "307387", + "ident": "GB-0039", + "type": "closed", + "name": "Brunton Airfield", + "latitude_deg": "55.5245496174", + "longitude_deg": "-1.67790412903", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Brunton", + "scheduled_service": "no", + "keywords": "RAF Brunton" + }, + { + "id": "307623", + "ident": "GB-0040", + "type": "closed", + "name": "Northrepps International Airport", + "latitude_deg": "52.901659", + "longitude_deg": "1.328642", + "elevation_ft": "165", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Cromer", + "scheduled_service": "no", + "home_link": "http://www.northreppsinternationalairport.co.uk/" + }, + { + "id": "307389", + "ident": "GB-0041", + "type": "heliport", + "name": "RAF Boulmer", + "latitude_deg": "55.421025", + "longitude_deg": "-1.600571", + "elevation_ft": "77", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Boulmer", + "scheduled_service": "no", + "gps_code": "EGQM", + "home_link": "http://www.raf.mod.uk/rafboulmer/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Boulmer", + "keywords": "RAF Boulmer" + }, + { + "id": "307392", + "ident": "GB-0042", + "type": "small_airport", + "name": "Lower Upham Airfield", + "latitude_deg": "50.972508", + "longitude_deg": "-1.248493", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bishops Waltham", + "scheduled_service": "no", + "keywords": "Phoenix Farm" + }, + { + "id": "331364", + "ident": "GB-0043", + "type": "closed", + "name": "RAF Dallachy Air Base", + "latitude_deg": "57.656957", + "longitude_deg": "-3.065902", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "307395", + "ident": "GB-0044", + "type": "small_airport", + "name": "Lower Upham Farm Airfield", + "latitude_deg": "51.4966945187", + "longitude_deg": "-1.71270847321", + "elevation_ft": "450", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Malborough", + "scheduled_service": "no" + }, + { + "id": "307401", + "ident": "GB-0045", + "type": "small_airport", + "name": "Clench Common Airfield", + "latitude_deg": "51.389941", + "longitude_deg": "-1.733522", + "elevation_ft": "623", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Marlborough", + "scheduled_service": "no", + "home_link": "https://www.gsaviation.co.uk/airfield-information/" + }, + { + "id": "307406", + "ident": "GB-0046", + "type": "small_airport", + "name": "Keyston Airfield", + "latitude_deg": "52.367424311", + "longitude_deg": "-0.47833442688", + "elevation_ft": "230", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Huntingdon", + "scheduled_service": "no" + }, + { + "id": "307624", + "ident": "GB-0047", + "type": "small_airport", + "name": "Cromer/Northrepps Aerodrome", + "latitude_deg": "52.893807", + "longitude_deg": "1.32106", + "elevation_ft": "181", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Cromer", + "scheduled_service": "no", + "home_link": "http://www.northreppsaerodrome.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Northrepps_Aerodrome" + }, + { + "id": "307412", + "ident": "GB-0048", + "type": "small_airport", + "name": "Easter Airfield", + "latitude_deg": "57.753343", + "longitude_deg": "-3.94279", + "elevation_ft": "22", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Tain, Ross", + "scheduled_service": "no" + }, + { + "id": "307417", + "ident": "GB-0049", + "type": "small_airport", + "name": "Bowerswaine Farm Airfield", + "latitude_deg": "50.8898779146", + "longitude_deg": "-1.98431968689", + "elevation_ft": "135", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Wimbourne", + "scheduled_service": "no" + }, + { + "id": "307420", + "ident": "GB-0050", + "type": "small_airport", + "name": "Wing Farm Airfield", + "latitude_deg": "51.1634405793", + "longitude_deg": "-2.20859527588", + "elevation_ft": "435", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Longbridge Deveril", + "scheduled_service": "no" + }, + { + "id": "307423", + "ident": "GB-0051", + "type": "small_airport", + "name": "Colemore Farm Airfield", + "latitude_deg": "51.0609257603", + "longitude_deg": "-1.0107421875", + "elevation_ft": "610", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Faringdon", + "scheduled_service": "no" + }, + { + "id": "307438", + "ident": "GB-0052", + "type": "small_airport", + "name": "Eggesford Airfield", + "latitude_deg": "50.866929123", + "longitude_deg": "-3.86366844177", + "elevation_ft": "576", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Chulmleigh", + "scheduled_service": "no" + }, + { + "id": "307441", + "ident": "GB-0053", + "type": "small_airport", + "name": "Lower Manor Farm Airstrip", + "latitude_deg": "50.627714", + "longitude_deg": "-2.517672", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Chickerell", + "scheduled_service": "no" + }, + { + "id": "307464", + "ident": "GB-0054", + "type": "small_airport", + "name": "Yatesbury Airfield", + "latitude_deg": "51.4319391135", + "longitude_deg": "-1.9127368927", + "elevation_ft": "525", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Malborough", + "scheduled_service": "no" + }, + { + "id": "307468", + "ident": "GB-0055", + "type": "small_airport", + "name": "Milton Airfield", + "latitude_deg": "52.5840688827", + "longitude_deg": "-0.32735824585", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Peterborough", + "scheduled_service": "no" + }, + { + "id": "307469", + "ident": "GB-0056", + "type": "small_airport", + "name": "Roche Barton Farm Airstrip", + "latitude_deg": "50.419898", + "longitude_deg": "-4.805596", + "elevation_ft": "439", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "307470", + "ident": "GB-0057", + "type": "small_airport", + "name": "Walton Wood Airfield", + "latitude_deg": "53.6307962719", + "longitude_deg": "-1.26145362854", + "elevation_ft": "180", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Wrangbrook", + "scheduled_service": "no" + }, + { + "id": "307471", + "ident": "GB-0058", + "type": "small_airport", + "name": "Boston Aerodrome", + "latitude_deg": "52.9745654966", + "longitude_deg": "-0.0707674026489", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Boston", + "scheduled_service": "no", + "home_link": "http://www.bostonaeroclub.co.uk/" + }, + { + "id": "331390", + "ident": "GB-0059", + "type": "small_airport", + "name": "Steventon Private Airstrip", + "latitude_deg": "51.621133", + "longitude_deg": "-1.333915", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "307485", + "ident": "GB-0060", + "type": "small_airport", + "name": "Porthtowan Airfield", + "latitude_deg": "50.284211608300005", + "longitude_deg": "-5.2298784256", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Porthtowan", + "scheduled_service": "no" + }, + { + "id": "307487", + "ident": "GB-0061", + "type": "closed", + "name": "Manstage Airfield", + "latitude_deg": "50.729461", + "longitude_deg": "-4.124357", + "elevation_ft": "800", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Oakhampton", + "scheduled_service": "no" + }, + { + "id": "307508", + "ident": "GB-0062", + "type": "small_airport", + "name": "Branscombe Airfield", + "latitude_deg": "50.697959515899996", + "longitude_deg": "-3.15502882004", + "elevation_ft": "500", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Branscombe", + "scheduled_service": "no", + "home_link": "http://www.branscombeairfield.co.uk/page2.htm" + }, + { + "id": "307511", + "ident": "GB-0063", + "type": "small_airport", + "name": "Farway Common Airfield", + "latitude_deg": "50.737107", + "longitude_deg": "-3.179255", + "elevation_ft": "771", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Sidford", + "scheduled_service": "no" + }, + { + "id": "307528", + "ident": "GB-0064", + "type": "small_airport", + "name": "Ashcroft Airfield", + "latitude_deg": "53.1644238046", + "longitude_deg": "-2.57217407227", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Winsford", + "scheduled_service": "no", + "gps_code": "EGCR" + }, + { + "id": "307536", + "ident": "GB-0065", + "type": "small_airport", + "name": "Audley End Airfield", + "latitude_deg": "52.009137", + "longitude_deg": "0.224276", + "elevation_ft": "283", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Safron Waldon", + "scheduled_service": "no" + }, + { + "id": "317040", + "ident": "GB-0066", + "type": "small_airport", + "name": "Eddsfield Airfield", + "latitude_deg": "54.111371", + "longitude_deg": "-0.4617264", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Eddsfield", + "scheduled_service": "no" + }, + { + "id": "307544", + "ident": "GB-0067", + "type": "closed", + "name": "Canterbury Airfield", + "latitude_deg": "51.291875", + "longitude_deg": "0.999584", + "elevation_ft": "300", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Canterbury", + "scheduled_service": "no", + "local_code": "EG11" + }, + { + "id": "307565", + "ident": "GB-0068", + "type": "small_airport", + "name": "Gigha Airfield", + "latitude_deg": "55.6551708463", + "longitude_deg": "-5.75503349304", + "elevation_ft": "35", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Gigha Island", + "scheduled_service": "no", + "gps_code": "EGEJ" + }, + { + "id": "307568", + "ident": "GB-0069", + "type": "small_airport", + "name": "Egerton Airfield", + "latitude_deg": "51.1913670406", + "longitude_deg": "0.6884908676150001", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Egerton", + "scheduled_service": "no" + }, + { + "id": "307572", + "ident": "GB-0070", + "type": "closed", + "name": "Hoy/Longhope Airfield", + "latitude_deg": "58.791779", + "longitude_deg": "-3.216076", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Orkney Isle", + "scheduled_service": "no", + "iata_code": "HOY" + }, + { + "id": "307573", + "ident": "GB-0071", + "type": "small_airport", + "name": "High Easter Airfield", + "latitude_deg": "51.8062266163", + "longitude_deg": "0.34083366394", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "High Easter", + "scheduled_service": "no" + }, + { + "id": "307575", + "ident": "GB-0072", + "type": "small_airport", + "name": "Hibaldstow Airfield", + "latitude_deg": "53.4956029923", + "longitude_deg": "-0.517730712891", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hibaldstow", + "scheduled_service": "no" + }, + { + "id": "307576", + "ident": "GB-0073", + "type": "small_airport", + "name": "Hinton-in-the-Hedges Airfield", + "latitude_deg": "52.028717", + "longitude_deg": "-1.207157", + "elevation_ft": "505", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hinton-in-the-Hedges", + "scheduled_service": "no", + "home_link": "http://www.hintonairfield.co.uk/index.shtml", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hinton-in-the-Hedges_Airfield" + }, + { + "id": "307635", + "ident": "GB-0074", + "type": "closed", + "name": "RAF Bottesford", + "latitude_deg": "52.963904", + "longitude_deg": "-0.779926", + "elevation_ft": "104", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Normanton", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bottesford" + }, + { + "id": "307740", + "ident": "GB-0075", + "type": "small_airport", + "name": "Elvington Airfield", + "latitude_deg": "53.9231444281", + "longitude_deg": "-0.991344451904", + "elevation_ft": "48", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "York", + "scheduled_service": "no", + "gps_code": "EGYK", + "home_link": "http://www.elvingtonairfield.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Elvington", + "keywords": "RAF Elvington" + }, + { + "id": "317041", + "ident": "GB-0076", + "type": "small_airport", + "name": "Lane Farm Airstrip", + "latitude_deg": "52.115335", + "longitude_deg": "-3.197891", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no" + }, + { + "id": "307751", + "ident": "GB-0077", + "type": "small_airport", + "name": "Finmere Aerodrome", + "latitude_deg": "51.984985860799995", + "longitude_deg": "-1.06515884399", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Buckingham", + "scheduled_service": "no" + }, + { + "id": "307764", + "ident": "GB-0078", + "type": "small_airport", + "name": "Great Massingham Airfield", + "latitude_deg": "52.7817928573", + "longitude_deg": "0.679607391357", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "317131", + "ident": "GB-0079", + "type": "small_airport", + "name": "Manor Farm Airstrip", + "latitude_deg": "51.3078209", + "longitude_deg": "-1.6735274", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Manor Farm" + }, + { + "id": "307890", + "ident": "GB-0080", + "type": "closed", + "name": "RNAS Arbroath / HMS Condor / RM Condor Air Base", + "latitude_deg": "56.581045", + "longitude_deg": "-2.615604", + "elevation_ft": "161", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Arbroath", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RM_Condor" + }, + { + "id": "307892", + "ident": "GB-0081", + "type": "closed", + "name": "RAF Nutts Corner / Belfast-Nutts Corner Airport", + "latitude_deg": "54.630282206699995", + "longitude_deg": "-6.1545753479", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Nutts_Corner" + }, + { + "id": "307893", + "ident": "GB-0082", + "type": "closed", + "name": "RAF Methold", + "latitude_deg": "52.5119377023", + "longitude_deg": "0.548801422119", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Methwold" + }, + { + "id": "307895", + "ident": "GB-0083", + "type": "closed", + "name": "RNAS/RAF Donibristle / HMS Merlin", + "latitude_deg": "56.0341708219", + "longitude_deg": "-3.35366249084", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Donibristle" + }, + { + "id": "307908", + "ident": "GB-0084", + "type": "closed", + "name": "Redlands airfield", + "latitude_deg": "51.560833", + "longitude_deg": "-1.704444", + "elevation_ft": "320", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Swindon, Wiltshire, UK", + "scheduled_service": "no", + "home_link": "http://redlandsairfield.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Redlands_Airfield" + }, + { + "id": "307916", + "ident": "GB-0085", + "type": "closed", + "name": "RAF Hixon", + "latitude_deg": "52.837410030899996", + "longitude_deg": "-2.00852394104", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Staffordshire", + "scheduled_service": "no", + "local_code": "HX", + "home_link": "http://www.hixonairfieldservices.co.uk/" + }, + { + "id": "307917", + "ident": "GB-0086", + "type": "closed", + "name": "RAF Abbots Bromley", + "latitude_deg": "52.8250683", + "longitude_deg": "-1.8915796", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Staffordshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Abbots_Bromley" + }, + { + "id": "307918", + "ident": "GB-0087", + "type": "closed", + "name": "RAF Acaster Malbis", + "latitude_deg": "53.879806506", + "longitude_deg": "-1.11983299255", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "North Yorkshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Acaster_Malbis" + }, + { + "id": "307919", + "ident": "GB-0088", + "type": "closed", + "name": "RFCS Southfields / RAF Acklington", + "latitude_deg": "55.296111", + "longitude_deg": "-1.634444", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Northumberland", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Acklington" + }, + { + "id": "307920", + "ident": "GB-0089", + "type": "closed", + "name": "RAF Akeman Street", + "latitude_deg": "51.823889", + "longitude_deg": "-1.515556", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Oxfordshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Akeman_Street" + }, + { + "id": "307921", + "ident": "GB-0090", + "type": "closed", + "name": "RAF Aldermaston", + "latitude_deg": "51.3702532906", + "longitude_deg": "-1.14137649536", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Berkshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Aldermaston" + }, + { + "id": "307922", + "ident": "GB-0091", + "type": "closed", + "name": "RFC All Hallows / RAF All Hallows", + "latitude_deg": "51.4657720416", + "longitude_deg": "0.6348466873169999", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Kent", + "scheduled_service": "no" + }, + { + "id": "307923", + "ident": "GB-0092", + "type": "closed", + "name": "RAF Alness / RAF Invergordon", + "latitude_deg": "57.68202", + "longitude_deg": "-4.260309", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Ross and Cromarty", + "scheduled_service": "no" + }, + { + "id": "331391", + "ident": "GB-0093", + "type": "small_airport", + "name": "Staindrop Private Airstrip", + "latitude_deg": "54.57053", + "longitude_deg": "-1.792738", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "307925", + "ident": "GB-0094", + "type": "closed", + "name": "RAF Andrews Field / RAF Great Saling", + "latitude_deg": "51.8975", + "longitude_deg": "0.460278", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Essex", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Andrews_Field" + }, + { + "id": "307926", + "ident": "GB-0095", + "type": "closed", + "name": "RAF Ansty", + "latitude_deg": "52.429167", + "longitude_deg": "-1.408611", + "elevation_ft": "381", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Warwickshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Ansty" + }, + { + "id": "307927", + "ident": "GB-0096", + "type": "closed", + "name": "HMS Goldcrest / RAF Angle / RNAS Angle", + "latitude_deg": "51.672954", + "longitude_deg": "-5.095575", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Pembrokeshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Angle" + }, + { + "id": "307928", + "ident": "GB-0097", + "type": "closed", + "name": "RFC Anwick / RAF Anwick", + "latitude_deg": "53.047742", + "longitude_deg": "-0.349897", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lincolnshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Anwick" + }, + { + "id": "307929", + "ident": "GB-0098", + "type": "closed", + "name": "RAF Appledram", + "latitude_deg": "50.8091890506", + "longitude_deg": "-0.807495117188", + "elevation_ft": "15", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "West Sussex", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Appledram", + "keywords": "Apuldram" + }, + { + "id": "307930", + "ident": "GB-0099", + "type": "closed", + "name": "RAF Ashbourne", + "latitude_deg": "53.006944", + "longitude_deg": "-1.706944", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Derbyshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Ashbourne" + }, + { + "id": "307931", + "ident": "GB-0100", + "type": "closed", + "name": "RAF Ashford", + "latitude_deg": "51.125278", + "longitude_deg": "0.816111", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Kent", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Ashford" + }, + { + "id": "307932", + "ident": "GB-0101", + "type": "closed", + "name": "RAF Atcham", + "latitude_deg": "52.690278", + "longitude_deg": "-2.636667", + "elevation_ft": "190", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Shropshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Atcham" + }, + { + "id": "307933", + "ident": "GB-0102", + "type": "closed", + "name": "RAF Atherstone", + "latitude_deg": "52.161111", + "longitude_deg": "-1.686667", + "elevation_ft": "193", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Warwickshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Atherstone" + }, + { + "id": "307934", + "ident": "GB-0103", + "type": "closed", + "name": "RAF Attlebridge", + "latitude_deg": "52.6924336379", + "longitude_deg": "1.1127948761", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Norfolk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Attlebridge" + }, + { + "id": "307935", + "ident": "GB-0104", + "type": "closed", + "name": "RAF Babdown Farm", + "latitude_deg": "51.6443087221", + "longitude_deg": "-2.2237014770499997", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Gloucestershire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Babdown_Farm" + }, + { + "id": "307936", + "ident": "GB-0105", + "type": "closed", + "name": "RAF Bacton", + "latitude_deg": "52.838", + "longitude_deg": "1.479", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Norfolk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bacton" + }, + { + "id": "307937", + "ident": "GB-0106", + "type": "closed", + "name": "RAF Balado Bridge", + "latitude_deg": "56.211944", + "longitude_deg": "-3.462222", + "elevation_ft": "424", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Tayside", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Balado_Bridge" + }, + { + "id": "307938", + "ident": "GB-0107", + "type": "closed", + "name": "RAF Balderton", + "latitude_deg": "53.036389", + "longitude_deg": "-0.785833", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Nottinghamshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Balderton" + }, + { + "id": "307939", + "ident": "GB-0108", + "type": "closed", + "name": "RAF Ballyhalbert", + "latitude_deg": "54.496764", + "longitude_deg": "-5.478058", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Newtownards, County Down", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Ballyhalbert" + }, + { + "id": "307940", + "ident": "GB-0109", + "type": "closed", + "name": "RAF Banff", + "latitude_deg": "57.663582", + "longitude_deg": "-2.6441", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Aberdeenshire", + "scheduled_service": "no" + }, + { + "id": "307941", + "ident": "GB-0110", + "type": "closed", + "name": "RAF Bardney", + "latitude_deg": "53.225278", + "longitude_deg": "-0.291944", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lincolnshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bardney" + }, + { + "id": "307942", + "ident": "GB-0111", + "type": "closed", + "name": "RAF Barton Bendish", + "latitude_deg": "52.61", + "longitude_deg": "0.54", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Norfolk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Barton_Bendish" + }, + { + "id": "307943", + "ident": "GB-0112", + "type": "closed", + "name": "RAF Bassingbourn", + "latitude_deg": "52.0964087747", + "longitude_deg": "-0.0534725189209", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hertfordshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bassingbourn" + }, + { + "id": "307944", + "ident": "GB-0113", + "type": "closed", + "name": "RAF Bircotes", + "latitude_deg": "53.4338273019", + "longitude_deg": "-1.0375213623", + "elevation_ft": "108", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "South Yorkshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bircotes", + "keywords": "RAF Bawtry" + }, + { + "id": "307945", + "ident": "GB-0114", + "type": "closed", + "name": "RAF Beaulieu", + "latitude_deg": "50.80615168869999", + "longitude_deg": "-1.5046119689900002", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hampshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Beaulieu" + }, + { + "id": "307946", + "ident": "GB-0115", + "type": "closed", + "name": "RAF Bekesbourne", + "latitude_deg": "51.252397", + "longitude_deg": "1.160015", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Kent", + "scheduled_service": "no" + }, + { + "id": "307947", + "ident": "GB-0116", + "type": "closed", + "name": "RAF Bempton", + "latitude_deg": "54.1499", + "longitude_deg": "-0.1778", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Yorkshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bempton", + "keywords": "RAF Flamborough Head" + }, + { + "id": "307948", + "ident": "GB-0117", + "type": "closed", + "name": "RAF Bibury", + "latitude_deg": "51.781389", + "longitude_deg": "-1.836111", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Gloucestershire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bibury" + }, + { + "id": "307949", + "ident": "GB-0118", + "type": "closed", + "name": "RAF Birch", + "latitude_deg": "51.8425", + "longitude_deg": "0.780556", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Essex", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Birch" + }, + { + "id": "307950", + "ident": "GB-0119", + "type": "closed", + "name": "RAF Bircham Newton", + "latitude_deg": "52.875", + "longitude_deg": "0.657", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Norfolk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bircham_Newton" + }, + { + "id": "307951", + "ident": "GB-0120", + "type": "closed", + "name": "RAF Bishopscourt", + "latitude_deg": "54.3074102846", + "longitude_deg": "-5.57547569275", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "County Down", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bishopscourt" + }, + { + "id": "307952", + "ident": "GB-0121", + "type": "closed", + "name": "RAF Bisterne", + "latitude_deg": "50.818333", + "longitude_deg": "-1.780556", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hampshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bisterne" + }, + { + "id": "307953", + "ident": "GB-0122", + "type": "closed", + "name": "RAF Bitteswell", + "latitude_deg": "52.459444", + "longitude_deg": "-1.246111", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Leicestershire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bitteswell" + }, + { + "id": "307954", + "ident": "GB-0123", + "type": "closed", + "name": "RAF Blakehill Farm", + "latitude_deg": "51.622226452099994", + "longitude_deg": "-1.88921928406", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Wiltshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Blakehill_Farm" + }, + { + "id": "307955", + "ident": "GB-0124", + "type": "closed", + "name": "RAF Blyton", + "latitude_deg": "53.451111", + "longitude_deg": "-0.693611", + "elevation_ft": "79", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lincolnshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Blyton" + }, + { + "id": "307956", + "ident": "GB-0125", + "type": "closed", + "name": "RAF Bodney", + "latitude_deg": "52.5616384552", + "longitude_deg": "0.714712142944", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Norfolk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bodney" + }, + { + "id": "307957", + "ident": "GB-0126", + "type": "closed", + "name": "RAF Bognor", + "latitude_deg": "50.796205", + "longitude_deg": "-0.702928", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "West Sussex", + "scheduled_service": "no" + }, + { + "id": "307958", + "ident": "GB-0127", + "type": "small_airport", + "name": "Bolt Head", + "latitude_deg": "50.223845", + "longitude_deg": "-3.801613", + "elevation_ft": "430", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Salcombe (Devon)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bolt_Head" + }, + { + "id": "307959", + "ident": "GB-0128", + "type": "closed", + "name": "RAF Bottisham", + "latitude_deg": "52.2138", + "longitude_deg": "0.2571", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Cambridgeshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bottisham" + }, + { + "id": "307960", + "ident": "GB-0129", + "type": "closed", + "name": "RAF Boulmer", + "latitude_deg": "55.411053", + "longitude_deg": "-1.594505", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Alnwick, Northumberland", + "scheduled_service": "no", + "home_link": "http://www.raf.mod.uk/rafboulmer/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Boulmer" + }, + { + "id": "307961", + "ident": "GB-0130", + "type": "closed", + "name": "RAF Bovingdon", + "latitude_deg": "51.726944", + "longitude_deg": "-0.543333", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hertfordshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bovingdon" + }, + { + "id": "307962", + "ident": "GB-0131", + "type": "closed", + "name": "RAF Boxted", + "latitude_deg": "51.937778", + "longitude_deg": "0.931944", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Essex", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Boxted" + }, + { + "id": "307963", + "ident": "GB-0132", + "type": "closed", + "name": "RAF Bracebridge Heath", + "latitude_deg": "53.19244", + "longitude_deg": "-0.523584", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lincolnshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bracebridge_Heath" + }, + { + "id": "307964", + "ident": "GB-0133", + "type": "closed", + "name": "RAF Bradwell Bay", + "latitude_deg": "51.735278", + "longitude_deg": "0.901667", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Essex", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bradwell_Bay" + }, + { + "id": "307965", + "ident": "GB-0134", + "type": "closed", + "name": "RAF Bramcote / HMS Gamecock", + "latitude_deg": "52.489722", + "longitude_deg": "-1.399167", + "elevation_ft": "354", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Warwickshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bramcote" + }, + { + "id": "307966", + "ident": "GB-0135", + "type": "closed", + "name": "RAF Bratton", + "latitude_deg": "52.730919", + "longitude_deg": "-2.540863", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Shropshire", + "scheduled_service": "no" + }, + { + "id": "307967", + "ident": "GB-0136", + "type": "closed", + "name": "RAF Talbenny", + "latitude_deg": "51.758239", + "longitude_deg": "-5.141378", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Pembrokeshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Talbenny" + }, + { + "id": "307968", + "ident": "GB-0137", + "type": "closed", + "name": "RAF Breighton", + "latitude_deg": "53.80642923679999", + "longitude_deg": "-0.907573699951", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Yorkshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Breighton" + }, + { + "id": "307969", + "ident": "GB-0138", + "type": "closed", + "name": "RAF Brenzett", + "latitude_deg": "51.014444", + "longitude_deg": "0.879167", + "elevation_ft": "5", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Kent", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Brenzett" + }, + { + "id": "307970", + "ident": "GB-0139", + "type": "closed", + "name": "RAF Broadwell", + "latitude_deg": "51.7595529887", + "longitude_deg": "-1.6412544250499999", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Oxfordshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Broadwell" + }, + { + "id": "307971", + "ident": "GB-0140", + "type": "closed", + "name": "RAF Brooklands", + "latitude_deg": "51.348608", + "longitude_deg": "-0.470326", + "elevation_ft": "54", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Surrey", + "scheduled_service": "no", + "gps_code": "EGLB" + }, + { + "id": "307972", + "ident": "GB-0141", + "type": "closed", + "name": "RAF Buckminster", + "latitude_deg": "52.801834", + "longitude_deg": "-0.67396", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lincolnshire", + "scheduled_service": "no" + }, + { + "id": "307973", + "ident": "GB-0142", + "type": "closed", + "name": "RAF North Witham", + "latitude_deg": "52.7936797412", + "longitude_deg": "-0.598154067993", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lincolnshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_North_Witham" + }, + { + "id": "307974", + "ident": "GB-0143", + "type": "closed", + "name": "RAF Bungay / RAF Flixton", + "latitude_deg": "52.4300596218", + "longitude_deg": "1.41835212708", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Suffolk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bungay" + }, + { + "id": "307975", + "ident": "GB-0144", + "type": "closed", + "name": "RAF Burgh Castle", + "latitude_deg": "52.584806", + "longitude_deg": "1.668789", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Norfolk", + "scheduled_service": "no" + }, + { + "id": "307976", + "ident": "GB-0145", + "type": "closed", + "name": "RAF Burtonwood", + "latitude_deg": "53.410415", + "longitude_deg": "-2.654348", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Warrington", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Burtonwood" + }, + { + "id": "307977", + "ident": "GB-0146", + "type": "small_airport", + "name": "Rougham Airfield / RAF Bury St Edmunds", + "latitude_deg": "52.245828", + "longitude_deg": "0.767756", + "elevation_ft": "207", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Suffolk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Bury_St_Edmunds" + }, + { + "id": "307978", + "ident": "GB-0147", + "type": "closed", + "name": "RAF Caistor", + "latitude_deg": "53.502778", + "longitude_deg": "-0.363889", + "elevation_ft": "85", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lincolnshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Caistor" + }, + { + "id": "307990", + "ident": "GB-0148", + "type": "closed", + "name": "RAF Chilbolton", + "latitude_deg": "51.14495", + "longitude_deg": "-1.439", + "elevation_ft": "272", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Chilbolton" + }, + { + "id": "308015", + "ident": "GB-0149", + "type": "closed", + "name": "RAF Charmy Down", + "latitude_deg": "51.428380519", + "longitude_deg": "-2.34540939331", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Somerset", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Charmy_Down" + }, + { + "id": "308246", + "ident": "GB-0150", + "type": "small_airport", + "name": "Knockrome Airstrip", + "latitude_deg": "55.8724818818", + "longitude_deg": "-5.9216308593800004", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no", + "keywords": "Jura" + }, + { + "id": "310506", + "ident": "GB-0151", + "type": "small_airport", + "name": "Oxenhope Airfield", + "latitude_deg": "53.813771", + "longitude_deg": "-1.933444", + "elevation_ft": "1080", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Oxenhope", + "scheduled_service": "no" + }, + { + "id": "314330", + "ident": "GB-0152", + "type": "closed", + "name": "RAF Mullaghmore", + "latitude_deg": "55.034", + "longitude_deg": "-6.5987", + "elevation_ft": "43", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Ballymoney", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Mullaghmore", + "keywords": "Aghadowey Aerodrome" + }, + { + "id": "314331", + "ident": "GB-0153", + "type": "small_airport", + "name": "Wigtown Airfield", + "latitude_deg": "54.8527", + "longitude_deg": "-4.442", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Machars", + "scheduled_service": "no", + "home_link": "http://www.secretscotland.org.uk/index.php/Secrets/RAFWigtown", + "keywords": "Baldoon Airfield" + }, + { + "id": "314332", + "ident": "GB-0154", + "type": "closed", + "name": "Silloth Airfiefd", + "latitude_deg": "54.8698", + "longitude_deg": "-3.366", + "elevation_ft": "23", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Silloth", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Silloth" + }, + { + "id": "314333", + "ident": "GB-0155", + "type": "closed", + "name": "RAF Maghaberry", + "latitude_deg": "54.5156", + "longitude_deg": "-6.1783", + "elevation_ft": "328", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Maghaberry", + "scheduled_service": "no" + }, + { + "id": "314355", + "ident": "GB-0156", + "type": "closed", + "name": "Cricklewood Aerodrome", + "latitude_deg": "51.565", + "longitude_deg": "-0.213", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "London", + "scheduled_service": "no" + }, + { + "id": "314367", + "ident": "GB-0157", + "type": "closed", + "name": "Chiltern Park Aerodrome", + "latitude_deg": "51.550392", + "longitude_deg": "-1.101773", + "elevation_ft": "180", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.chiltern.aero/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chiltern_Park_Aerodrome" + }, + { + "id": "314592", + "ident": "GB-0158", + "type": "closed", + "name": "RAF North Luffenham", + "latitude_deg": "52.632", + "longitude_deg": "-0.61", + "elevation_ft": "358", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "North Luffenham", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_North_Luffenham", + "keywords": "EGVL" + }, + { + "id": "314752", + "ident": "GB-0159", + "type": "closed", + "name": "RAF Millom", + "latitude_deg": "54.200349115282", + "longitude_deg": "-3.325037688082", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "314753", + "ident": "GB-0160", + "type": "closed", + "name": "RAF Great Orton", + "latitude_deg": "54.874393495708", + "longitude_deg": "-3.0757531822383", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Wiggonby" + }, + { + "id": "314754", + "ident": "GB-0161", + "type": "closed", + "name": "Royal Naval Air Station Anthorn", + "latitude_deg": "54.911597931141", + "longitude_deg": "-3.2785354256794", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anthorn_Radio_Station", + "keywords": "RAF Anthorn, HMS Nuthatch, Anthorn Radio Station," + }, + { + "id": "314755", + "ident": "GB-0162", + "type": "closed", + "name": "RAF Wath Head airfield", + "latitude_deg": "54.817778", + "longitude_deg": "-3.111111", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "RAF, No. 10 SLG" + }, + { + "id": "314756", + "ident": "GB-0163", + "type": "closed", + "name": "RAF Hutton in the Forest", + "latitude_deg": "54.731524844591", + "longitude_deg": "-2.883455962074", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "RAF,No. 8 SLG" + }, + { + "id": "314757", + "ident": "GB-0164", + "type": "closed", + "name": "RAF Brayton Park", + "latitude_deg": "54.773889", + "longitude_deg": "-3.301111", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "RAF,No. 39 SLG" + }, + { + "id": "314758", + "ident": "GB-0165", + "type": "closed", + "name": "RAF Hornby Hall", + "latitude_deg": "54.6566965", + "longitude_deg": "-2.6538934", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "RAF,No. 9 SLG,Brougham" + }, + { + "id": "314759", + "ident": "GB-0166", + "type": "small_airport", + "name": "Glassonby Airfield", + "latitude_deg": "54.737994", + "longitude_deg": "-2.651861", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.therowleyestates.com/services/airfield/" + }, + { + "id": "314760", + "ident": "GB-0167", + "type": "closed", + "name": "Longtown airfield", + "latitude_deg": "55.005191", + "longitude_deg": "-2.920267", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Longtown", + "keywords": "RAF Longtown" + }, + { + "id": "314761", + "ident": "GB-0168", + "type": "small_airport", + "name": "Berrier Airstrip", + "latitude_deg": "54.656504", + "longitude_deg": "-2.93365", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "314762", + "ident": "GB-0169", + "type": "small_airport", + "name": "Bedlands Gate airstrip", + "latitude_deg": "54.570822", + "longitude_deg": "-2.671125", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "314763", + "ident": "GB-0170", + "type": "closed", + "name": "RAF Burnfoot", + "latitude_deg": "54.987096827426", + "longitude_deg": "-2.9843628088202", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "314764", + "ident": "GB-0171", + "type": "closed", + "name": "Plumpton airstrip", + "latitude_deg": "54.760444", + "longitude_deg": "-2.793339", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "314765", + "ident": "GB-0172", + "type": "closed", + "name": "Lingcroft Grass Airstrip", + "latitude_deg": "54.591769", + "longitude_deg": "-3.43303", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "315059", + "ident": "GB-0173", + "type": "closed", + "name": "RAF Llandow Air Base", + "latitude_deg": "51.43523", + "longitude_deg": "-3.49816", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Llandow" + }, + { + "id": "315384", + "ident": "GB-0174", + "type": "heliport", + "name": "Lorn and Islands District General Hospital Helipad", + "latitude_deg": "56.3995", + "longitude_deg": "-5.4746", + "elevation_ft": "59", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Oban", + "scheduled_service": "no" + }, + { + "id": "315465", + "ident": "GB-0175", + "type": "small_airport", + "name": "Channel Gliding Club", + "latitude_deg": "51.175685", + "longitude_deg": "1.277503", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Whitfield", + "scheduled_service": "no" + }, + { + "id": "315670", + "ident": "GB-0176", + "type": "small_airport", + "name": "Jackrells Farm", + "latitude_deg": "51.0323677", + "longitude_deg": "-0.3302872", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "horsham", + "scheduled_service": "no", + "keywords": "horsham,sussex" + }, + { + "id": "315672", + "ident": "GB-0177", + "type": "small_airport", + "name": "Great Oakley", + "latitude_deg": "51.912244", + "longitude_deg": "1.18207", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "315685", + "ident": "GB-0178", + "type": "closed", + "name": "Sproston Green Airfield", + "latitude_deg": "53.1864591", + "longitude_deg": "-2.3822782", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "315686", + "ident": "GB-0179", + "type": "small_airport", + "name": "Wombleton", + "latitude_deg": "54.2369039", + "longitude_deg": "-0.97116", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "315788", + "ident": "GB-0180", + "type": "small_airport", + "name": "Strathaven Airfield", + "latitude_deg": "55.680333", + "longitude_deg": "-4.115", + "elevation_ft": "847", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no", + "home_link": "http://www.strathavenairfield.co.uk" + }, + { + "id": "315912", + "ident": "GB-0181", + "type": "small_airport", + "name": "East Fortune Airfield", + "latitude_deg": "56.0008488", + "longitude_deg": "-2.7353237", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no", + "home_link": "http://www.eosm.co.uk" + }, + { + "id": "315913", + "ident": "GB-0182", + "type": "small_airport", + "name": "East Kirkby", + "latitude_deg": "53.1382264", + "longitude_deg": "0.0025685", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "315929", + "ident": "GB-0183", + "type": "small_airport", + "name": "Willow Farm Airstrip", + "latitude_deg": "53.4218606", + "longitude_deg": "-0.91015", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "315930", + "ident": "GB-0184", + "type": "small_airport", + "name": "Weybourne Airstrip", + "latitude_deg": "52.9478238", + "longitude_deg": "1.1232003", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "315931", + "ident": "GB-0185", + "type": "small_airport", + "name": "Wadswick Farm Airstrip", + "latitude_deg": "51.410892", + "longitude_deg": "-2.220077", + "elevation_ft": "450", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Wadswick", + "scheduled_service": "no", + "home_link": "https://www.wadswick.co.uk/wadswick-airfield" + }, + { + "id": "315998", + "ident": "GB-0186", + "type": "small_airport", + "name": "Bellarena", + "latitude_deg": "55.1397141", + "longitude_deg": "-6.9690032", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "scheduled_service": "no" + }, + { + "id": "315999", + "ident": "GB-0187", + "type": "small_airport", + "name": "Boones Farm Airstrip", + "latitude_deg": "51.9119794", + "longitude_deg": "0.5896978", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316001", + "ident": "GB-0188", + "type": "small_airport", + "name": "Black Spring Farm Airstrip", + "latitude_deg": "52.780521", + "longitude_deg": "-0.5279459", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Castle Bytham" + }, + { + "id": "316002", + "ident": "GB-0189", + "type": "small_airport", + "name": "Caunton Airstrip", + "latitude_deg": "53.119877", + "longitude_deg": "-0.891481", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Knapworth,Knapworth Lodge" + }, + { + "id": "316004", + "ident": "GB-0190", + "type": "small_airport", + "name": "Cuckoo Tye Farm Airstrip", + "latitude_deg": "52.0682234", + "longitude_deg": "0.7362014", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316006", + "ident": "GB-0191", + "type": "small_airport", + "name": "Cruglas Synod Inn Airstrip", + "latitude_deg": "52.1296089", + "longitude_deg": "-4.3664332", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no" + }, + { + "id": "316007", + "ident": "GB-0192", + "type": "small_airport", + "name": "Ditton Priors Airstrip", + "latitude_deg": "52.50358", + "longitude_deg": "-2.562562", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316009", + "ident": "GB-0193", + "type": "small_airport", + "name": "Bourne Park Airfield", + "latitude_deg": "51.2643784", + "longitude_deg": "-1.4656348", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Doles Wood" + }, + { + "id": "316013", + "ident": "GB-0194", + "type": "small_airport", + "name": "East Winch Airstrip", + "latitude_deg": "52.7237397", + "longitude_deg": "0.524189", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316015", + "ident": "GB-0195", + "type": "small_airport", + "name": "Easton Maudit Airstrip", + "latitude_deg": "52.2136163", + "longitude_deg": "-0.7014104", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316028", + "ident": "GB-0196", + "type": "small_airport", + "name": "Midland Glider Club", + "latitude_deg": "52.518231", + "longitude_deg": "-2.8796", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Long Mynd", + "scheduled_service": "no" + }, + { + "id": "316030", + "ident": "GB-0197", + "type": "small_airport", + "name": "Park Farm Airstrip", + "latitude_deg": "51.8822801", + "longitude_deg": "-0.6071886", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316038", + "ident": "GB-0198", + "type": "small_airport", + "name": "Tibenham Priory Farm Airstrip", + "latitude_deg": "52.4492811", + "longitude_deg": "1.1298679", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316039", + "ident": "GB-0199", + "type": "small_airport", + "name": "Sittles Farm Airstrip", + "latitude_deg": "52.7071274", + "longitude_deg": "-1.7500554", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316041", + "ident": "GB-0200", + "type": "small_airport", + "name": "Hanley Farm Airstrip", + "latitude_deg": "52.2990979", + "longitude_deg": "-2.4698229", + "elevation_ft": "645", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.hwas.orangehome.co.uk/" + }, + { + "id": "316100", + "ident": "GB-0201", + "type": "small_airport", + "name": "Glenswinton Farm Airstrip", + "latitude_deg": "55.0475833333", + "longitude_deg": "-4.0317666667", + "elevation_ft": "520", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Castle Douglas", + "scheduled_service": "no", + "home_link": "http://www.glenswinton.co.uk/", + "keywords": "Glenswinton" + }, + { + "id": "316248", + "ident": "GB-0202", + "type": "small_airport", + "name": "Insch", + "latitude_deg": "57.3113333333", + "longitude_deg": "-2.6466666667", + "elevation_ft": "500", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Insch", + "scheduled_service": "no", + "keywords": "Aberdeenshire, Aberdeen CTR" + }, + { + "id": "316270", + "ident": "GB-0203", + "type": "small_airport", + "name": "Westonzoyland Microlight", + "latitude_deg": "51.1077398", + "longitude_deg": "-2.911336", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bridgewater", + "scheduled_service": "no" + }, + { + "id": "316275", + "ident": "GB-0204", + "type": "small_airport", + "name": "Plaistows Airfield", + "latitude_deg": "51.7290068", + "longitude_deg": "-0.3801541", + "elevation_ft": "395", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316328", + "ident": "GB-0205", + "type": "small_airport", + "name": "Nantclwyd Airstrip", + "latitude_deg": "53.0632694", + "longitude_deg": "-3.3232823", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no" + }, + { + "id": "316382", + "ident": "GB-0206", + "type": "small_airport", + "name": "Wingland Airfield", + "latitude_deg": "52.8138048", + "longitude_deg": "0.1148968", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316387", + "ident": "GB-0207", + "type": "closed", + "name": "Wallis International", + "latitude_deg": "52.579011", + "longitude_deg": "-0.113704", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316396", + "ident": "GB-0208", + "type": "small_airport", + "name": "Thornborough Grounds Airstrip", + "latitude_deg": "52.005743", + "longitude_deg": "-0.935664", + "elevation_ft": "270", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bourton", + "scheduled_service": "no" + }, + { + "id": "316404", + "ident": "GB-0209", + "type": "small_airport", + "name": "Watchford Farm Airstrip", + "latitude_deg": "50.9023839", + "longitude_deg": "-3.0981345", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316405", + "ident": "GB-0210", + "type": "small_airport", + "name": "Twycross (Gopsall House) Airstrip", + "latitude_deg": "52.6431941", + "longitude_deg": "-1.4717717", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Twycross", + "scheduled_service": "no", + "keywords": "Gopsall House" + }, + { + "id": "316428", + "ident": "GB-0211", + "type": "small_airport", + "name": "Stow Longa", + "latitude_deg": "52.31454", + "longitude_deg": "-0.3611127", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Kimbolton", + "scheduled_service": "no" + }, + { + "id": "316431", + "ident": "GB-0212", + "type": "small_airport", + "name": "Whitehill Farm Airstrip", + "latitude_deg": "52.0970531", + "longitude_deg": "0.0164536", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Meldreth", + "scheduled_service": "no" + }, + { + "id": "316433", + "ident": "GB-0213", + "type": "small_airport", + "name": "Pear Tree Farm Airstrip", + "latitude_deg": "51.9031372", + "longitude_deg": "-1.0760824", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316434", + "ident": "GB-0214", + "type": "small_airport", + "name": "Jericho Farm Airstrip", + "latitude_deg": "53.010297", + "longitude_deg": "-1.057039", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lambley", + "scheduled_service": "no" + }, + { + "id": "316435", + "ident": "GB-0215", + "type": "small_airport", + "name": "Jubilee Farm Airstrip", + "latitude_deg": "52.6308036", + "longitude_deg": "0.0643512", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316451", + "ident": "GB-0216", + "type": "small_airport", + "name": "Ashley's Field Airstrip", + "latitude_deg": "53.2190693", + "longitude_deg": "0.2705275", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316452", + "ident": "GB-0217", + "type": "small_airport", + "name": "Clutton Hill Airstrip", + "latitude_deg": "51.3414043", + "longitude_deg": "-2.522437", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316453", + "ident": "GB-0218", + "type": "closed", + "name": "Battleflat Farm Airstrip", + "latitude_deg": "52.698443", + "longitude_deg": "-1.352372", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316468", + "ident": "GB-0219", + "type": "small_airport", + "name": "Rayne Hall Farm Airstrip", + "latitude_deg": "51.885975", + "longitude_deg": "0.5201017", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316469", + "ident": "GB-0220", + "type": "small_airport", + "name": "Spence Airfield", + "latitude_deg": "51.8386485", + "longitude_deg": "-2.5914762", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316470", + "ident": "GB-0221", + "type": "small_airport", + "name": "Sandhill Farm Airstrip", + "latitude_deg": "51.6051516", + "longitude_deg": "-1.6747292", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316481", + "ident": "GB-0222", + "type": "small_airport", + "name": "Tower Farm Airstrip", + "latitude_deg": "52.2593728", + "longitude_deg": "-0.6556195", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316482", + "ident": "GB-0223", + "type": "small_airport", + "name": "Pent Farm Airstrip", + "latitude_deg": "51.1096929", + "longitude_deg": "1.0543112", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "https://tigerclub.co.uk", + "keywords": "Tiger Club" + }, + { + "id": "316484", + "ident": "GB-0224", + "type": "small_airport", + "name": "Holly Meadow Farm Airstrip", + "latitude_deg": "53.0049", + "longitude_deg": "-1.657016", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bradley", + "scheduled_service": "no" + }, + { + "id": "316490", + "ident": "GB-0225", + "type": "small_airport", + "name": "Stoodleigh Barton Private Airstrip", + "latitude_deg": "50.9572712", + "longitude_deg": "-3.5301848", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316491", + "ident": "GB-0226", + "type": "small_airport", + "name": "Talybont Airstrip", + "latitude_deg": "52.6124101", + "longitude_deg": "-4.0750378", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no" + }, + { + "id": "316492", + "ident": "GB-0227", + "type": "small_airport", + "name": "Low Hill Farm Airstrip", + "latitude_deg": "53.534129", + "longitude_deg": "-0.6848", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Messingham", + "scheduled_service": "no", + "keywords": "Talybont, North Moor" + }, + { + "id": "316493", + "ident": "GB-0228", + "type": "small_airport", + "name": "Redmoor Farm Airstrip", + "latitude_deg": "53.8404059", + "longitude_deg": "-0.9719151", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316494", + "ident": "GB-0229", + "type": "closed", + "name": "Kirkbymoorside", + "latitude_deg": "54.251", + "longitude_deg": "-0.941274", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Slingsby" + }, + { + "id": "316497", + "ident": "GB-0230", + "type": "small_airport", + "name": "Oaklands Farm Airstrip", + "latitude_deg": "51.8471331", + "longitude_deg": "-1.4397248", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316516", + "ident": "GB-0231", + "type": "small_airport", + "name": "Berrow Airstrip", + "latitude_deg": "52.0009216", + "longitude_deg": "-2.3568692", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316517", + "ident": "GB-0232", + "type": "small_airport", + "name": "Stoney Lane Farm Airstrip", + "latitude_deg": "52.332001", + "longitude_deg": "-1.993326", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Broad Green", + "scheduled_service": "no" + }, + { + "id": "316529", + "ident": "GB-0233", + "type": "small_airport", + "name": "Old Hay Airfield", + "latitude_deg": "51.1787584", + "longitude_deg": "0.4256228", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.oldhayairfield.co.uk/" + }, + { + "id": "316530", + "ident": "GB-0234", + "type": "small_airport", + "name": "Laddingford Aerodrome", + "latitude_deg": "51.1908", + "longitude_deg": "0.4128", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316531", + "ident": "GB-0235", + "type": "small_airport", + "name": "High Cross Airstrip", + "latitude_deg": "51.850213", + "longitude_deg": "-0.003691", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316541", + "ident": "GB-0236", + "type": "small_airport", + "name": "Kingsmuir Airfield", + "latitude_deg": "56.2691557", + "longitude_deg": "-2.7508106", + "elevation_ft": "387", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Kingsmuir", + "scheduled_service": "no" + }, + { + "id": "316542", + "ident": "GB-0237", + "type": "small_airport", + "name": "Little Chase Farm Airstrip", + "latitude_deg": "52.357319", + "longitude_deg": "-1.6209368", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316632", + "ident": "GB-0238", + "type": "small_airport", + "name": "Wild Geese Skydive Centre", + "latitude_deg": "54.9870612", + "longitude_deg": "-6.6437758", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "scheduled_service": "no" + }, + { + "id": "316633", + "ident": "GB-0239", + "type": "small_airport", + "name": "Whiterashes Farm Airstrip", + "latitude_deg": "57.318996", + "longitude_deg": "-2.248859", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Aberdeen", + "scheduled_service": "no", + "keywords": "Pittrichie" + }, + { + "id": "316634", + "ident": "GB-0240", + "type": "small_airport", + "name": "Grove Farm Airstrip", + "latitude_deg": "53.3140457", + "longitude_deg": "-0.8662693", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316635", + "ident": "GB-0241", + "type": "small_airport", + "name": "Taw Mill Airstrip", + "latitude_deg": "50.7764813", + "longitude_deg": "-3.9040791", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316636", + "ident": "GB-0242", + "type": "small_airport", + "name": "Nuthampstead", + "latitude_deg": "51.9952935", + "longitude_deg": "0.0701442", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "RAF Nuthampstead" + }, + { + "id": "316638", + "ident": "GB-0243", + "type": "small_airport", + "name": "Melrose Farm Airstrip", + "latitude_deg": "53.868434", + "longitude_deg": "-0.837945", + "elevation_ft": "36", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Melbourne, York", + "scheduled_service": "no", + "keywords": "Melbourne" + }, + { + "id": "302271", + "ident": "GB-0244", + "type": "closed", + "name": "RAF Cammeringham / RAF Ingham", + "latitude_deg": "53.3408413998", + "longitude_deg": "-0.548758506775", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lincolnshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Cammeringham" + }, + { + "id": "316746", + "ident": "GB-0245", + "type": "small_airport", + "name": "Peterlee Airfield", + "latitude_deg": "54.7668378", + "longitude_deg": "-1.3843768", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316805", + "ident": "GB-0246", + "type": "small_airport", + "name": "Wharf Farm Airstrip", + "latitude_deg": "52.6273132", + "longitude_deg": "-1.4184066", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316806", + "ident": "GB-0247", + "type": "closed", + "name": "Low Farm Airstrip", + "latitude_deg": "52.672011", + "longitude_deg": "1.515898", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "316818", + "ident": "GB-0248", + "type": "small_airport", + "name": "Rufforth East", + "latitude_deg": "53.95188", + "longitude_deg": "-1.17562", + "elevation_ft": "65", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.yorkflyingclub.co.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Rufforth" + }, + { + "id": "317045", + "ident": "GB-0249", + "type": "small_airport", + "name": "Monewden Airstrip", + "latitude_deg": "52.168089", + "longitude_deg": "1.260251", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Mowenden", + "scheduled_service": "no" + }, + { + "id": "317134", + "ident": "GB-0250", + "type": "small_airport", + "name": "Shacklewell Lodge Farm Airstrip", + "latitude_deg": "52.652464", + "longitude_deg": "-0.57099", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Empingham", + "scheduled_service": "no" + }, + { + "id": "317378", + "ident": "GB-0251", + "type": "small_airport", + "name": "Chirk", + "latitude_deg": "52.9474365", + "longitude_deg": "-3.0460473", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no", + "home_link": "http://chirkairfield.wix.com/chirk-airfield#!" + }, + { + "id": "317379", + "ident": "GB-0252", + "type": "small_airport", + "name": "Crowland Glider Field", + "latitude_deg": "52.7095466", + "longitude_deg": "-0.1396686", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Peterborough", + "scheduled_service": "no", + "home_link": "http://www.psgc.co.uk/" + }, + { + "id": "317443", + "ident": "GB-0253", + "type": "small_airport", + "name": "Manor Farm Airstrip", + "latitude_deg": "52.9126035", + "longitude_deg": "0.952548", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Binham", + "scheduled_service": "no" + }, + { + "id": "317445", + "ident": "GB-0254", + "type": "small_airport", + "name": "Gutchpool Farm Airstrip", + "latitude_deg": "51.0572904", + "longitude_deg": "-2.2334969", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "317446", + "ident": "GB-0255", + "type": "small_airport", + "name": "Gorrel Farm Airstrip", + "latitude_deg": "50.9438009", + "longitude_deg": "-4.386336", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "317450", + "ident": "GB-0256", + "type": "small_airport", + "name": "Swanton Morley Airfield", + "latitude_deg": "52.734804", + "longitude_deg": "0.962011", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Dereham", + "scheduled_service": "no" + }, + { + "id": "317451", + "ident": "GB-0257", + "type": "small_airport", + "name": "Stones Farm Airstrip", + "latitude_deg": "51.9891623", + "longitude_deg": "0.65789", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "317452", + "ident": "GB-0258", + "type": "small_airport", + "name": "Clipgate Farm Airstrip", + "latitude_deg": "51.1870367", + "longitude_deg": "1.153392", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "317533", + "ident": "GB-0259", + "type": "small_airport", + "name": "Charlton Park Airstrip", + "latitude_deg": "51.5996654", + "longitude_deg": "-2.078113", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Malmesbury Wiltshire", + "scheduled_service": "no", + "home_link": "http://charltonparkestate.com/airstrip.html" + }, + { + "id": "317536", + "ident": "GB-0260", + "type": "small_airport", + "name": "Felixkirk Airstrip", + "latitude_deg": "54.2518757", + "longitude_deg": "-1.2949511", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Thirsk", + "scheduled_service": "no" + }, + { + "id": "317573", + "ident": "GB-0261", + "type": "small_airport", + "name": "Top Farm Airfield", + "latitude_deg": "52.1225417", + "longitude_deg": "-0.117631", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "317574", + "ident": "GB-0262", + "type": "small_airport", + "name": "Griffin's Farm Airstrip", + "latitude_deg": "53.0772962", + "longitude_deg": "-0.511852", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Temple Bruer" + }, + { + "id": "317576", + "ident": "GB-0263", + "type": "small_airport", + "name": "Peplow Airstrip", + "latitude_deg": "52.8028279", + "longitude_deg": "-2.5019638", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Child's Ercall", + "scheduled_service": "no" + }, + { + "id": "317591", + "ident": "GB-0264", + "type": "small_airport", + "name": "Long Stratton Airstrip", + "latitude_deg": "52.4881514", + "longitude_deg": "1.2165196", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Long Stratton", + "scheduled_service": "no" + }, + { + "id": "317592", + "ident": "GB-0265", + "type": "small_airport", + "name": "Lower Withial Fram Airstrip", + "latitude_deg": "51.1253177", + "longitude_deg": "-2.5965937", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "317631", + "ident": "GB-0266", + "type": "closed", + "name": "Upper Harford Airstrip", + "latitude_deg": "51.888876", + "longitude_deg": "-1.817316", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Upper Harford", + "scheduled_service": "no" + }, + { + "id": "317632", + "ident": "GB-0267", + "type": "small_airport", + "name": "Rosemarket Airstrip", + "latitude_deg": "51.74526", + "longitude_deg": "-4.9642344", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no" + }, + { + "id": "317634", + "ident": "GB-0268", + "type": "small_airport", + "name": "Westover Farm Airstrip", + "latitude_deg": "50.8421544", + "longitude_deg": "-4.1670387", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Sheepwash", + "scheduled_service": "no" + }, + { + "id": "317665", + "ident": "GB-0269", + "type": "small_airport", + "name": "Ince Blundell Microlight", + "latitude_deg": "53.5355556", + "longitude_deg": "-3.0297222", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.wlms.co.uk", + "keywords": "West Lancashire Microlight School" + }, + { + "id": "317693", + "ident": "GB-0270", + "type": "small_airport", + "name": "Mitchell's Farm Airstrip", + "latitude_deg": "52.337386", + "longitude_deg": "0.182883", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Wilburton", + "scheduled_service": "no" + }, + { + "id": "317694", + "ident": "GB-0271", + "type": "small_airport", + "name": "Kingfisher's Bridge Airstrip", + "latitude_deg": "52.3305139", + "longitude_deg": "0.2681335", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "317729", + "ident": "GB-0272", + "type": "small_airport", + "name": "Newnham Airstrip", + "latitude_deg": "52.0198602", + "longitude_deg": "-0.1677845", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Newnham", + "scheduled_service": "no" + }, + { + "id": "317731", + "ident": "GB-0273", + "type": "small_airport", + "name": "Mount Airey Airstrip", + "latitude_deg": "53.7723222", + "longitude_deg": "-0.5759365", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "South Cave", + "scheduled_service": "no", + "keywords": "Mount Airey" + }, + { + "id": "317738", + "ident": "GB-0274", + "type": "small_airport", + "name": "Little Staughton Airfield", + "latitude_deg": "52.242757", + "longitude_deg": "-0.3633024", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "317739", + "ident": "GB-0275", + "type": "small_airport", + "name": "Lydeway field", + "latitude_deg": "51.3309604", + "longitude_deg": "-1.9289392", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "317740", + "ident": "GB-0276", + "type": "small_airport", + "name": "Lower Grounds Farm Airstrip", + "latitude_deg": "52.735708", + "longitude_deg": "-2.601444", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Sherlowe", + "scheduled_service": "no" + }, + { + "id": "317744", + "ident": "GB-0277", + "type": "small_airport", + "name": "Stow Airstrip", + "latitude_deg": "53.3215692", + "longitude_deg": "-0.6781382", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Stow", + "scheduled_service": "no" + }, + { + "id": "323657", + "ident": "GB-0278", + "type": "small_airport", + "name": "Niden Manor Farm Airstrip", + "latitude_deg": "52.1258096", + "longitude_deg": "-1.1700706", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Moreton Pinkney", + "scheduled_service": "no" + }, + { + "id": "317885", + "ident": "GB-0279", + "type": "small_airport", + "name": "Stoke Golding Airfield", + "latitude_deg": "52.5800833", + "longitude_deg": "-1.4313333", + "elevation_ft": "300", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Stoke Golding", + "scheduled_service": "no" + }, + { + "id": "317925", + "ident": "GB-0280", + "type": "small_airport", + "name": "Deenethorpe", + "latitude_deg": "52.5062705", + "longitude_deg": "-0.589011", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "317926", + "ident": "GB-0281", + "type": "small_airport", + "name": "Lyveden Glider Field", + "latitude_deg": "52.4653179", + "longitude_deg": "-0.5748077", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lyveden", + "scheduled_service": "no" + }, + { + "id": "317927", + "ident": "GB-0282", + "type": "small_airport", + "name": "Newnham Grounds Airstrip", + "latitude_deg": "52.2376234", + "longitude_deg": "-1.1416561", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "317928", + "ident": "GB-0283", + "type": "small_airport", + "name": "Lark Engine Farmhouse Airstrip", + "latitude_deg": "52.4226804", + "longitude_deg": "0.3776757", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "317943", + "ident": "GB-0284", + "type": "small_airport", + "name": "Haxey Airstrip", + "latitude_deg": "53.4924766", + "longitude_deg": "-0.8143633", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Haxey", + "scheduled_service": "no" + }, + { + "id": "317944", + "ident": "GB-0285", + "type": "small_airport", + "name": "Hatton Airstrip", + "latitude_deg": "57.4067508", + "longitude_deg": "-1.9115685", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Hatton", + "scheduled_service": "no" + }, + { + "id": "349897", + "ident": "GB-0286", + "type": "small_airport", + "name": "The Hall Farm Airstrip", + "latitude_deg": "53.300953", + "longitude_deg": "0.274894", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Sutton-on-Sea", + "scheduled_service": "no" + }, + { + "id": "317974", + "ident": "GB-0287", + "type": "small_airport", + "name": "Charterhall Airfield", + "latitude_deg": "55.7075978", + "longitude_deg": "-2.3785037", + "elevation_ft": "350", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no", + "home_link": "http://www.mortonhall.co.uk/charterhall/charterhall-airfield/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Charterhall" + }, + { + "id": "317979", + "ident": "GB-0288", + "type": "small_airport", + "name": "Castle Kennedy Airfield", + "latitude_deg": "54.897551", + "longitude_deg": "-4.936961", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no", + "home_link": "http://www.castlekennedyairfield.co.uk" + }, + { + "id": "317996", + "ident": "GB-0289", + "type": "small_airport", + "name": "Finningley Village Airstrip", + "latitude_deg": "53.5081624", + "longitude_deg": "-0.9409418", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Finningley", + "scheduled_service": "no" + }, + { + "id": "317997", + "ident": "GB-0290", + "type": "small_airport", + "name": "Garforth Airstrip", + "latitude_deg": "53.7937923", + "longitude_deg": "-1.3569498", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Garforth", + "scheduled_service": "no" + }, + { + "id": "317999", + "ident": "GB-0291", + "type": "small_airport", + "name": "Midlem Airstrip", + "latitude_deg": "55.540033", + "longitude_deg": "-2.74271", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Midlem", + "scheduled_service": "no" + }, + { + "id": "318001", + "ident": "GB-0292", + "type": "small_airport", + "name": "Milden Airstrip", + "latitude_deg": "52.0697469", + "longitude_deg": "0.8570614", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Milden", + "scheduled_service": "no" + }, + { + "id": "318002", + "ident": "GB-0293", + "type": "small_airport", + "name": "Little Down Farm Airstrip", + "latitude_deg": "52.361555", + "longitude_deg": "-2.545782", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Milson", + "scheduled_service": "no" + }, + { + "id": "318003", + "ident": "GB-0294", + "type": "small_airport", + "name": "Upwood Glider Field", + "latitude_deg": "52.43219", + "longitude_deg": "-0.147435", + "elevation_ft": "72", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Upwood", + "scheduled_service": "no", + "keywords": "Nene Valley Gliding Club,RAF Upwood" + }, + { + "id": "318005", + "ident": "GB-0295", + "type": "small_airport", + "name": "Ranston Airstrip", + "latitude_deg": "50.9151165", + "longitude_deg": "-2.1853714", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "318008", + "ident": "GB-0296", + "type": "small_airport", + "name": "East Lochlane Farm Airstrip", + "latitude_deg": "56.3678531", + "longitude_deg": "-3.8722739", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "318010", + "ident": "GB-0297", + "type": "small_airport", + "name": "Hallwell Airstrip", + "latitude_deg": "50.3651272", + "longitude_deg": "-3.7068994", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "318012", + "ident": "GB-0298", + "type": "small_airport", + "name": "Green Farm Airstrip", + "latitude_deg": "52.1600872", + "longitude_deg": "-1.5481724", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "318073", + "ident": "GB-0299", + "type": "closed", + "name": "RAF Winfield", + "latitude_deg": "55.7496625", + "longitude_deg": "-2.1643404", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Winfield", + "scheduled_service": "no" + }, + { + "id": "318074", + "ident": "GB-0300", + "type": "small_airport", + "name": "Nayland Airstrip", + "latitude_deg": "51.974486", + "longitude_deg": "0.849895", + "elevation_ft": "160", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Nayland", + "scheduled_service": "no", + "home_link": "http://www.naylandairfield.co.uk/" + }, + { + "id": "318075", + "ident": "GB-0301", + "type": "small_airport", + "name": "Great Ashfield Airstrip", + "latitude_deg": "52.2572538", + "longitude_deg": "0.9372999", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Great Ashfield", + "scheduled_service": "no" + }, + { + "id": "318076", + "ident": "GB-0302", + "type": "small_airport", + "name": "Claybrooke Farm Airstrip", + "latitude_deg": "52.509143", + "longitude_deg": "-1.279523", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "318142", + "ident": "GB-0303", + "type": "small_airport", + "name": "Croft Airstrip", + "latitude_deg": "53.1231227", + "longitude_deg": "0.2522559", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Croft", + "scheduled_service": "no" + }, + { + "id": "318143", + "ident": "GB-0304", + "type": "small_airport", + "name": "Craysmarsh Airstrip", + "latitude_deg": "51.363649", + "longitude_deg": "-2.090858", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Melksham", + "scheduled_service": "no" + }, + { + "id": "318144", + "ident": "GB-0305", + "type": "closed", + "name": "Lyminge Airstrip", + "latitude_deg": "51.146177", + "longitude_deg": "1.046066", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "318145", + "ident": "GB-0306", + "type": "closed", + "name": "Lymm Dam Airstrip", + "latitude_deg": "53.368838", + "longitude_deg": "-2.47641", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lymm", + "scheduled_service": "no" + }, + { + "id": "318149", + "ident": "GB-0307", + "type": "closed", + "name": "RAF Spitalgate Air Base", + "latitude_deg": "52.9009328", + "longitude_deg": "-0.5983483", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Grantham", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Spitalgate" + }, + { + "id": "318165", + "ident": "GB-0308", + "type": "small_airport", + "name": "Streethay Farm Airstrip", + "latitude_deg": "52.691874", + "longitude_deg": "-1.785665", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lichfield", + "scheduled_service": "no" + }, + { + "id": "318166", + "ident": "GB-0309", + "type": "small_airport", + "name": "Haydock Park Airstrip", + "latitude_deg": "53.478357", + "longitude_deg": "-2.622433", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Ashton-In-Makerfield", + "scheduled_service": "no" + }, + { + "id": "318167", + "ident": "GB-0310", + "type": "small_airport", + "name": "Bryn Gates Airfield", + "latitude_deg": "53.513189", + "longitude_deg": "-2.625593", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Wigan", + "scheduled_service": "no" + }, + { + "id": "318683", + "ident": "GB-0311", + "type": "small_airport", + "name": "Rush Green Airstrip", + "latitude_deg": "51.9042754", + "longitude_deg": "-0.248437", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hitchin", + "scheduled_service": "no", + "keywords": "Rush Green Aviation" + }, + { + "id": "318860", + "ident": "GB-0312", + "type": "closed", + "name": "RNAS Stretton", + "latitude_deg": "53.34524", + "longitude_deg": "-2.522535", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Stretton", + "scheduled_service": "no" + }, + { + "id": "318861", + "ident": "GB-0313", + "type": "closed", + "name": "RAF Lichfield", + "latitude_deg": "52.716804", + "longitude_deg": "-1.784323", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lichfield", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Lichfield" + }, + { + "id": "318862", + "ident": "GB-0314", + "type": "small_airport", + "name": "Otherton Airfield", + "latitude_deg": "52.709484", + "longitude_deg": "-2.092081", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Otherton", + "scheduled_service": "no", + "home_link": "http://www.othertonairfield.co.uk/" + }, + { + "id": "318918", + "ident": "GB-0315", + "type": "small_airport", + "name": "RAF Kirknewton Air Base", + "latitude_deg": "55.8766667", + "longitude_deg": "-3.3994444", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Kirknewton", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Kirknewton" + }, + { + "id": "319032", + "ident": "GB-0316", + "type": "small_airport", + "name": "Napps Field Airstrip", + "latitude_deg": "51.65625", + "longitude_deg": "0.42067", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Billericay", + "scheduled_service": "no" + }, + { + "id": "319061", + "ident": "GB-0317", + "type": "small_airport", + "name": "Abergavenny Airstrip", + "latitude_deg": "51.795023", + "longitude_deg": "-2.994372", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Abergavenny", + "scheduled_service": "no" + }, + { + "id": "319062", + "ident": "GB-0318", + "type": "small_airport", + "name": "Allensmore Airfield", + "latitude_deg": "51.989967", + "longitude_deg": "-2.781699", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Allensmore", + "scheduled_service": "no" + }, + { + "id": "319063", + "ident": "GB-0319", + "type": "small_airport", + "name": "Archerfield Airstrip", + "latitude_deg": "56.043574", + "longitude_deg": "-2.801755", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "319064", + "ident": "GB-0320", + "type": "closed", + "name": "Arclid Airfield", + "latitude_deg": "53.14197", + "longitude_deg": "-2.318138", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Arclid", + "scheduled_service": "no", + "home_link": "http://www.cheshiremicrolights.co.uk/" + }, + { + "id": "319065", + "ident": "GB-0321", + "type": "small_airport", + "name": "Woodview Airfield", + "latitude_deg": "54.370158", + "longitude_deg": "-6.59167", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Armagh", + "scheduled_service": "no" + }, + { + "id": "319066", + "ident": "GB-0322", + "type": "heliport", + "name": "Arran Heliport", + "latitude_deg": "55.57663", + "longitude_deg": "-5.134378", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Arran", + "scheduled_service": "no" + }, + { + "id": "319067", + "ident": "GB-0323", + "type": "small_airport", + "name": "Bakersfield Airstrip", + "latitude_deg": "52.48487", + "longitude_deg": "-0.618103", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Corby", + "scheduled_service": "no" + }, + { + "id": "319068", + "ident": "GB-0324", + "type": "small_airport", + "name": "Baxterley Aerodrome", + "latitude_deg": "52.56877", + "longitude_deg": "-1.614299", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Baxterley", + "scheduled_service": "no" + }, + { + "id": "319069", + "ident": "GB-0325", + "type": "small_airport", + "name": "Beeches Farm Airstrip", + "latitude_deg": "53.159269", + "longitude_deg": "-0.725236", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "South Scarle", + "scheduled_service": "no" + }, + { + "id": "319070", + "ident": "GB-0326", + "type": "small_airport", + "name": "Belle Vue Airfield", + "latitude_deg": "50.976851", + "longitude_deg": "-4.097184", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Huntshaw Cross", + "scheduled_service": "no" + }, + { + "id": "319071", + "ident": "GB-0327", + "type": "small_airport", + "name": "Benington Airfield", + "latitude_deg": "51.883113", + "longitude_deg": "-0.123301", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Benington", + "scheduled_service": "no" + }, + { + "id": "319072", + "ident": "GB-0328", + "type": "small_airport", + "name": "Binstead Airfield", + "latitude_deg": "50.722077", + "longitude_deg": "-1.204915", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Binstead", + "scheduled_service": "no" + }, + { + "id": "319073", + "ident": "GB-0329", + "type": "small_airport", + "name": "Blair Atholl Airfield", + "latitude_deg": "56.763509", + "longitude_deg": "-3.825599", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Blair Atholl", + "scheduled_service": "no" + }, + { + "id": "319074", + "ident": "GB-0330", + "type": "small_airport", + "name": "Boughton North Airfield", + "latitude_deg": "52.590886", + "longitude_deg": "0.517013", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Boughton", + "scheduled_service": "no" + }, + { + "id": "319075", + "ident": "GB-0331", + "type": "small_airport", + "name": "Stoke Ferry Airfield", + "latitude_deg": "52.584145", + "longitude_deg": "0.515755", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Boughton", + "scheduled_service": "no" + }, + { + "id": "319076", + "ident": "GB-0332", + "type": "small_airport", + "name": "Bowerchalke Airfield", + "latitude_deg": "50.983648", + "longitude_deg": "-1.991682", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bowerchalke", + "scheduled_service": "no" + }, + { + "id": "319077", + "ident": "GB-0333", + "type": "small_airport", + "name": "Bowldown Farm Airstrip", + "latitude_deg": "51.628872", + "longitude_deg": "-2.237254", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "319078", + "ident": "GB-0334", + "type": "small_airport", + "name": "Breidden Airfield", + "latitude_deg": "52.702036", + "longitude_deg": "-3.092449", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Welshpool", + "scheduled_service": "no" + }, + { + "id": "319079", + "ident": "GB-0335", + "type": "small_airport", + "name": "Bridlington Airfield", + "latitude_deg": "54.120749", + "longitude_deg": "-0.236527", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bridlington", + "scheduled_service": "no" + }, + { + "id": "319080", + "ident": "GB-0336", + "type": "small_airport", + "name": "Bucknall Airfield", + "latitude_deg": "53.19988", + "longitude_deg": "-0.253972", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bucknall", + "scheduled_service": "no" + }, + { + "id": "319081", + "ident": "GB-0337", + "type": "small_airport", + "name": "Calcot Airfield", + "latitude_deg": "51.794453", + "longitude_deg": "-1.835485", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Calcot", + "scheduled_service": "no" + }, + { + "id": "319087", + "ident": "GB-0338", + "type": "heliport", + "name": "Essex Police Heliport", + "latitude_deg": "51.781395", + "longitude_deg": "0.52142", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Boreham", + "scheduled_service": "no" + }, + { + "id": "319099", + "ident": "GB-0339", + "type": "small_airport", + "name": "Chipping Airfield", + "latitude_deg": "53.885042", + "longitude_deg": "-2.620864", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Chipping", + "scheduled_service": "no" + }, + { + "id": "319134", + "ident": "GB-0340", + "type": "small_airport", + "name": "Skelling Farm Glider Field", + "latitude_deg": "54.697922", + "longitude_deg": "-2.584196", + "elevation_ft": "560", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Skirwith, Penrith", + "scheduled_service": "no", + "keywords": "Eden Soaring Gliding Club" + }, + { + "id": "319137", + "ident": "GB-0341", + "type": "small_airport", + "name": "Garton Field Airstrip", + "latitude_deg": "53.7965455", + "longitude_deg": "-0.0911538", + "elevation_ft": "40", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "319153", + "ident": "GB-0342", + "type": "heliport", + "name": "Vanguard Heliport", + "latitude_deg": "51.490626", + "longitude_deg": "-0.025373", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "London", + "scheduled_service": "no" + }, + { + "id": "319154", + "ident": "GB-0343", + "type": "heliport", + "name": "The Royal London Hospital Helipad", + "latitude_deg": "51.517868", + "longitude_deg": "-0.058343", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "London", + "scheduled_service": "no" + }, + { + "id": "319156", + "ident": "GB-0344", + "type": "heliport", + "name": "Wythenshawe Hospital Helipad", + "latitude_deg": "53.388414", + "longitude_deg": "-2.289633", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Manchester", + "scheduled_service": "no" + }, + { + "id": "319157", + "ident": "GB-0345", + "type": "heliport", + "name": "Royal Stoke University Hospital Helipad", + "latitude_deg": "53.002633", + "longitude_deg": "-2.210636", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Stoke-on-Trent", + "scheduled_service": "no" + }, + { + "id": "319158", + "ident": "GB-0346", + "type": "heliport", + "name": "Queen Elizabeth Hospital Helipad", + "latitude_deg": "52.452751", + "longitude_deg": "-1.944705", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Birmingham", + "scheduled_service": "no" + }, + { + "id": "319159", + "ident": "GB-0347", + "type": "heliport", + "name": "Lundy Island Helipad", + "latitude_deg": "51.164763", + "longitude_deg": "-4.666801", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lundy Island", + "scheduled_service": "no" + }, + { + "id": "319160", + "ident": "GB-0348", + "type": "heliport", + "name": "Bristol Royal Infirmary Helipad", + "latitude_deg": "51.458895", + "longitude_deg": "-2.596294", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bristol", + "scheduled_service": "no" + }, + { + "id": "319161", + "ident": "GB-0349", + "type": "heliport", + "name": "Royal Bournemouth Hospital Helipad", + "latitude_deg": "50.746805", + "longitude_deg": "-1.819998", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bournemouth", + "scheduled_service": "no" + }, + { + "id": "319162", + "ident": "GB-0350", + "type": "heliport", + "name": "Queen Alexandra Hospital Heliport", + "latitude_deg": "50.851178", + "longitude_deg": "-1.069046", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Portsmouth", + "scheduled_service": "no" + }, + { + "id": "319163", + "ident": "GB-0351", + "type": "heliport", + "name": "Southampton University Hospital Helipad", + "latitude_deg": "50.933522", + "longitude_deg": "-1.432187", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Southampton", + "scheduled_service": "no" + }, + { + "id": "319164", + "ident": "GB-0352", + "type": "heliport", + "name": "St Mary's Hospital Helipad", + "latitude_deg": "50.711058", + "longitude_deg": "-1.298346", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Newport (IoW)", + "scheduled_service": "no" + }, + { + "id": "319221", + "ident": "GB-0353", + "type": "small_airport", + "name": "Glebe Farm Airstrip", + "latitude_deg": "53.006495", + "longitude_deg": "-0.690165", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hougham", + "scheduled_service": "no" + }, + { + "id": "319222", + "ident": "GB-0354", + "type": "small_airport", + "name": "Grangewood Airstrip", + "latitude_deg": "52.7325119", + "longitude_deg": "-1.582376", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "319346", + "ident": "GB-0355", + "type": "small_airport", + "name": "Dunnyvadden Airstrip", + "latitude_deg": "54.8487273", + "longitude_deg": "-6.2069651", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "scheduled_service": "no" + }, + { + "id": "319347", + "ident": "GB-0356", + "type": "small_airport", + "name": "Chilsfold Farm Airstrip", + "latitude_deg": "51.0600362", + "longitude_deg": "-0.5936162", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "319348", + "ident": "GB-0357", + "type": "small_airport", + "name": "Bute Airfield", + "latitude_deg": "55.7567765", + "longitude_deg": "-5.0479623", + "elevation_ft": "46", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "319351", + "ident": "GB-0358", + "type": "small_airport", + "name": "Springfield Farm Airstrip", + "latitude_deg": "52.1496201", + "longitude_deg": "-1.6172333", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Ettington", + "scheduled_service": "no" + }, + { + "id": "319353", + "ident": "GB-0359", + "type": "small_airport", + "name": "Sandford Hall Airstrip", + "latitude_deg": "52.804565", + "longitude_deg": "-2.990793", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Knocking", + "scheduled_service": "no" + }, + { + "id": "319365", + "ident": "GB-0360", + "type": "small_airport", + "name": "Brook Farm Airstrip", + "latitude_deg": "52.9192308", + "longitude_deg": "-1.7375729", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Boylestone", + "scheduled_service": "no" + }, + { + "id": "319418", + "ident": "GB-0361", + "type": "small_airport", + "name": "Cliffe Airstrip", + "latitude_deg": "53.7857965", + "longitude_deg": "-0.9998435", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "319419", + "ident": "GB-0362", + "type": "small_airport", + "name": "Castlerock Airstrip", + "latitude_deg": "55.1582291", + "longitude_deg": "-6.7915365", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Castlerock (Ulster)", + "scheduled_service": "no" + }, + { + "id": "319446", + "ident": "GB-0363", + "type": "small_airport", + "name": "Exning Airstrip", + "latitude_deg": "52.2901671", + "longitude_deg": "0.3698329", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "319447", + "ident": "GB-0364", + "type": "small_airport", + "name": "Cottered Airstrip", + "latitude_deg": "51.9481015", + "longitude_deg": "-0.0981913", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "319943", + "ident": "GB-0365", + "type": "small_airport", + "name": "Holmbeck Farm Airfield", + "latitude_deg": "51.9103045", + "longitude_deg": "-0.7286654", + "elevation_ft": "420", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Wing (Bucks)", + "scheduled_service": "no", + "home_link": "http://www.users.globalnet.co.uk/~dartdirx/holmbeck_farm_airfield.html" + }, + { + "id": "320049", + "ident": "GB-0366", + "type": "small_airport", + "name": "Stoke Airfield", + "latitude_deg": "51.4456", + "longitude_deg": "0.633467", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Stoke", + "scheduled_service": "no", + "home_link": "http://www.ravenmad.co.uk/findus.htm", + "keywords": "Medway" + }, + { + "id": "320071", + "ident": "GB-0367", + "type": "small_airport", + "name": "Chatteris Airfield", + "latitude_deg": "52.4873", + "longitude_deg": "0.0891111", + "elevation_ft": "5", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Chatteris", + "scheduled_service": "no" + }, + { + "id": "320072", + "ident": "GB-0368", + "type": "small_airport", + "name": "Long Acres Farm", + "latitude_deg": "52.129787", + "longitude_deg": "-0.310853", + "elevation_ft": "80", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Sandy", + "scheduled_service": "no", + "keywords": "Longacre Farm, Bedford Microlight" + }, + { + "id": "320075", + "ident": "GB-0369", + "type": "small_airport", + "name": "Darley Moor Airfield", + "latitude_deg": "52.9693", + "longitude_deg": "-1.74868", + "elevation_ft": "580", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.airways-airsports.com" + }, + { + "id": "320078", + "ident": "GB-0370", + "type": "small_airport", + "name": "Derryogue", + "latitude_deg": "54.0517", + "longitude_deg": "-6.029625", + "elevation_ft": "68", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Derryogue", + "scheduled_service": "no" + }, + { + "id": "320079", + "ident": "GB-0371", + "type": "small_airport", + "name": "Decoy Farm Airstrip", + "latitude_deg": "52.8654", + "longitude_deg": "-0.306622", + "elevation_ft": "9", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320089", + "ident": "GB-0372", + "type": "small_airport", + "name": "Shifnal Airfield", + "latitude_deg": "52.6668", + "longitude_deg": "-2.4", + "elevation_ft": "420", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Shifnal", + "scheduled_service": "no", + "home_link": "http://www.wrekinmfc.co.uk", + "keywords": "wrekin,shaw lane" + }, + { + "id": "320144", + "ident": "GB-0373", + "type": "small_airport", + "name": "Forest Farm Airstrip", + "latitude_deg": "52.669214", + "longitude_deg": "-3.0299325", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320145", + "ident": "GB-0374", + "type": "small_airport", + "name": "Viewfield Airstrip", + "latitude_deg": "57.6641249", + "longitude_deg": "-3.188644", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "320146", + "ident": "GB-0375", + "type": "small_airport", + "name": "Falgunzeon Glider Airfield", + "latitude_deg": "54.9445493", + "longitude_deg": "-3.7393838", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Kirkgunzeon by Dalbeattie", + "scheduled_service": "no", + "home_link": "http://www.dumfriesanddistrictglidingclub.co.uk", + "keywords": "Dumfries and District Cliding Club" + }, + { + "id": "320153", + "ident": "GB-0376", + "type": "small_airport", + "name": "Yorkshire Gliding Club", + "latitude_deg": "54.2306616", + "longitude_deg": "-1.2111429", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320188", + "ident": "GB-0377", + "type": "small_airport", + "name": "Croughton Manor Farm Airstrip", + "latitude_deg": "51.9878923", + "longitude_deg": "-1.2071769", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320198", + "ident": "GB-0378", + "type": "small_airport", + "name": "Barling Airfield", + "latitude_deg": "51.5684", + "longitude_deg": "0.794664", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Barling", + "scheduled_service": "no", + "keywords": "http://www.airfieldcards.com/php/courtesy_card.php?id=19" + }, + { + "id": "320200", + "ident": "GB-0379", + "type": "small_airport", + "name": "Latch Farm Airstrip", + "latitude_deg": "55.8742", + "longitude_deg": "-3.45464", + "elevation_ft": "640", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "320253", + "ident": "GB-0380", + "type": "small_airport", + "name": "North Hill Glider Field", + "latitude_deg": "50.851586", + "longitude_deg": "-3.274816", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Devon and Somerset Gliding Club" + }, + { + "id": "320265", + "ident": "GB-0381", + "type": "small_airport", + "name": "Walkeridge Farm Airstrip", + "latitude_deg": "51.2922274", + "longitude_deg": "-1.2482383", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320267", + "ident": "GB-0382", + "type": "small_airport", + "name": "Seighford Glider Field", + "latitude_deg": "52.827545", + "longitude_deg": "-2.208165", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Staffordshire Gliding Club" + }, + { + "id": "320275", + "ident": "GB-0383", + "type": "small_airport", + "name": "North Wales Gliding Club", + "latitude_deg": "53.043229", + "longitude_deg": "-3.2219454", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no" + }, + { + "id": "320276", + "ident": "GB-0384", + "type": "small_airport", + "name": "Kenley Aerodrome", + "latitude_deg": "51.3054288", + "longitude_deg": "-0.0959572", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Kenley", + "scheduled_service": "no" + }, + { + "id": "320282", + "ident": "GB-0385", + "type": "small_airport", + "name": "Abbots Bromley Airfield", + "latitude_deg": "52.818469", + "longitude_deg": "-1.902386", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "332324", + "ident": "GB-0386", + "type": "closed", + "name": "RAF Ouston Air Base", + "latitude_deg": "55.024541", + "longitude_deg": "-1.874803", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Ouston" + }, + { + "id": "320284", + "ident": "GB-0387", + "type": "small_airport", + "name": "Hollym Airfield", + "latitude_deg": "53.7157", + "longitude_deg": "0.049669", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.hollymairfield.metsite.com/", + "keywords": "Cliff Top, Hollym East" + }, + { + "id": "320285", + "ident": "GB-0388", + "type": "small_airport", + "name": "Pitsford Water", + "latitude_deg": "52.3153", + "longitude_deg": "-0.871944", + "elevation_ft": "330", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Moulton Grange Farm" + }, + { + "id": "320287", + "ident": "GB-0389", + "type": "small_airport", + "name": "Sutton Meadows Airfield", + "latitude_deg": "52.38711", + "longitude_deg": "0.06061", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.cambsmicrolightclub.co.uk/", + "keywords": "Airplay Aviation" + }, + { + "id": "320289", + "ident": "GB-0390", + "type": "small_airport", + "name": "Coleman Green Airstrip", + "latitude_deg": "51.7918157", + "longitude_deg": "-0.274944", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320292", + "ident": "GB-0391", + "type": "small_airport", + "name": "Pocklington Airfield", + "latitude_deg": "53.9264016", + "longitude_deg": "-0.794634", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320297", + "ident": "GB-0392", + "type": "small_airport", + "name": "South Wales Gliding Club", + "latitude_deg": "51.7193476", + "longitude_deg": "-2.8487476", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no", + "home_link": "http://www.uskgc.co.uk" + }, + { + "id": "320305", + "ident": "GB-0393", + "type": "small_airport", + "name": "Currock Hill Glider Field", + "latitude_deg": "54.9331", + "longitude_deg": "-1.84681", + "elevation_ft": "800", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.northumbria-gliding-club.co.uk/", + "keywords": "Northumbria Gliding Club" + }, + { + "id": "320365", + "ident": "GB-0394", + "type": "small_airport", + "name": "Little Snoring Airfield", + "latitude_deg": "52.860285", + "longitude_deg": "0.903092", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.mcaullyflyinggroup.org/little-snoring-flying-in.aspx" + }, + { + "id": "320366", + "ident": "GB-0395", + "type": "small_airport", + "name": "Main Hall Farm Airfield", + "latitude_deg": "52.2719444444", + "longitude_deg": "-0.0708333333", + "elevation_ft": "63", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331472", + "ident": "GB-0396", + "type": "heliport", + "name": "Ysbyty Gwynedd Hospital Heliport", + "latitude_deg": "53.208729", + "longitude_deg": "-4.15706", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no" + }, + { + "id": "320407", + "ident": "GB-0397", + "type": "small_airport", + "name": "Chilbolton", + "latitude_deg": "51.1377", + "longitude_deg": "-1.41801", + "elevation_ft": "292", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://chilboltonflyingclub.co.uk" + }, + { + "id": "320408", + "ident": "GB-0398", + "type": "small_airport", + "name": "St Michaels", + "latitude_deg": "53.8518", + "longitude_deg": "-2.79346", + "elevation_ft": "28", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.northernmicrolights.co.uk/" + }, + { + "id": "320409", + "ident": "GB-0399", + "type": "small_airport", + "name": "Chase Farm Airstrip", + "latitude_deg": "51.5681", + "longitude_deg": "-2.38754", + "elevation_ft": "325", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320410", + "ident": "GB-0400", + "type": "small_airport", + "name": "Lamb Holm Airfield", + "latitude_deg": "58.8876", + "longitude_deg": "-2.89184", + "elevation_ft": "65", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "320445", + "ident": "GB-0401", + "type": "small_airport", + "name": "Graveley Airstrip", + "latitude_deg": "51.9407", + "longitude_deg": "-0.203425", + "elevation_ft": "334", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Graveley", + "scheduled_service": "no" + }, + { + "id": "320446", + "ident": "GB-0402", + "type": "small_airport", + "name": "Knockbain Farm Airstrip", + "latitude_deg": "57.589189", + "longitude_deg": "-4.466958", + "elevation_ft": "596", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Dingwall, Highland", + "scheduled_service": "no" + }, + { + "id": "320448", + "ident": "GB-0403", + "type": "small_airport", + "name": "Crockham Hill Airfield", + "latitude_deg": "51.233604", + "longitude_deg": "0.08001", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Orchard House" + }, + { + "id": "320449", + "ident": "GB-0404", + "type": "small_airport", + "name": "Norwood Lodge Airstrip", + "latitude_deg": "51.834839", + "longitude_deg": "1.11391", + "elevation_ft": "90", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Clacton-on-Sea", + "scheduled_service": "no" + }, + { + "id": "320464", + "ident": "GB-0405", + "type": "small_airport", + "name": "Hardwicke Airstrip", + "latitude_deg": "52.0853", + "longitude_deg": "-3.06163", + "elevation_ft": "500", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hardwicke", + "scheduled_service": "no" + }, + { + "id": "320465", + "ident": "GB-0406", + "type": "small_airport", + "name": "Harringe Airfield", + "latitude_deg": "51.0924", + "longitude_deg": "0.988694", + "elevation_ft": "275", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.kentmicrolightclub.co.uk" + }, + { + "id": "320467", + "ident": "GB-0407", + "type": "small_airport", + "name": "Yearby Airstrip", + "latitude_deg": "54.5847", + "longitude_deg": "-1.06953", + "elevation_ft": "89", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.acro.co.uk", + "keywords": "Turners Arms" + }, + { + "id": "320479", + "ident": "GB-0408", + "type": "small_airport", + "name": "Southdown Gliding Club", + "latitude_deg": "50.9240525", + "longitude_deg": "-0.4747526", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320499", + "ident": "GB-0409", + "type": "small_airport", + "name": "Skydive Strathallan", + "latitude_deg": "56.3253071", + "longitude_deg": "-3.7492998", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no", + "home_link": "http://skydivestrathallan.co.uk" + }, + { + "id": "320500", + "ident": "GB-0410", + "type": "small_airport", + "name": "Tandragee Airstrip", + "latitude_deg": "54.3865651", + "longitude_deg": "-6.4001751", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Craigavon", + "scheduled_service": "no", + "home_link": "http://kernanaviation.co.uk" + }, + { + "id": "320506", + "ident": "GB-0411", + "type": "small_airport", + "name": "Husbands Bosworth Airfield", + "latitude_deg": "52.4392898", + "longitude_deg": "-1.0416094", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320507", + "ident": "GB-0412", + "type": "small_airport", + "name": "Membury Airfield", + "latitude_deg": "51.479812", + "longitude_deg": "-1.560453", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Membury", + "scheduled_service": "no" + }, + { + "id": "320508", + "ident": "GB-0413", + "type": "small_airport", + "name": "Nether Huntlywood Airstrip", + "latitude_deg": "55.676638", + "longitude_deg": "-2.60787", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "320548", + "ident": "GB-0414", + "type": "small_airport", + "name": "RAF Weston-on-the-Green", + "latitude_deg": "51.8787124", + "longitude_deg": "-1.2187748", + "elevation_ft": "282", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Weston-on-the-Green" + }, + { + "id": "320551", + "ident": "GB-0415", + "type": "small_airport", + "name": "RAF Keevil", + "latitude_deg": "51.3129023", + "longitude_deg": "-2.111585", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Keevil", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Keevil" + }, + { + "id": "320552", + "ident": "GB-0416", + "type": "small_airport", + "name": "Shenington Gliding Club", + "latitude_deg": "52.0843451", + "longitude_deg": "-1.4735737", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Shenington", + "scheduled_service": "no" + }, + { + "id": "320553", + "ident": "GB-0417", + "type": "small_airport", + "name": "Slay Barn private airstrip", + "latitude_deg": "51.7306856", + "longitude_deg": "-1.1438319", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Cuddesdon, Oxford", + "scheduled_service": "no" + }, + { + "id": "320554", + "ident": "GB-0418", + "type": "small_airport", + "name": "Wishangar Farm private Airstrip", + "latitude_deg": "51.1504806", + "longitude_deg": "-0.808142", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Frensham", + "scheduled_service": "no" + }, + { + "id": "320610", + "ident": "GB-0419", + "type": "small_airport", + "name": "Banbury Airfield", + "latitude_deg": "52.100634", + "longitude_deg": "-1.381742", + "elevation_ft": "525", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Shotteswell", + "scheduled_service": "no", + "keywords": "Church Farm" + }, + { + "id": "320611", + "ident": "GB-0420", + "type": "small_airport", + "name": "Norfolk Glider Club", + "latitude_deg": "52.4579", + "longitude_deg": "1.15495", + "elevation_ft": "183", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Tibenham", + "scheduled_service": "no" + }, + { + "id": "320612", + "ident": "GB-0421", + "type": "small_airport", + "name": "Stratford-upon-Avon Gliding Club", + "latitude_deg": "52.2354901", + "longitude_deg": "-1.7177869", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Stratford-upon-Avon", + "scheduled_service": "no", + "home_link": "http://www.stratfordgliding.co.uk/" + }, + { + "id": "320631", + "ident": "GB-0422", + "type": "small_airport", + "name": "Hook Norton Airstrip", + "latitude_deg": "52.0093", + "longitude_deg": "-1.4896", + "elevation_ft": "591", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331473", + "ident": "GB-0423", + "type": "heliport", + "name": "Thornbury Castle Hotel Helipad", + "latitude_deg": "51.613936", + "longitude_deg": "-2.530866", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320640", + "ident": "GB-0424", + "type": "small_airport", + "name": "Jenkins Farm Airstrip", + "latitude_deg": "51.6404", + "longitude_deg": "0.202711", + "elevation_ft": "250", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320641", + "ident": "GB-0425", + "type": "small_airport", + "name": "Burnham Airstrip", + "latitude_deg": "52.938004", + "longitude_deg": "0.772644", + "elevation_ft": "125", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320642", + "ident": "GB-0426", + "type": "small_airport", + "name": "Felthorpe Airfield", + "latitude_deg": "52.7059", + "longitude_deg": "1.19449", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://felthorpe.net" + }, + { + "id": "320686", + "ident": "GB-0427", + "type": "small_airport", + "name": "Askern Airfield", + "latitude_deg": "53.6104", + "longitude_deg": "-1.13324", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.southyorkshiremicrolightclub.org.uk" + }, + { + "id": "320687", + "ident": "GB-0428", + "type": "small_airport", + "name": "Drayton St. Leonard", + "latitude_deg": "51.6641", + "longitude_deg": "-1.12693", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320703", + "ident": "GB-0429", + "type": "small_airport", + "name": "Lleweni Parc Glyndwr Soaring Club", + "latitude_deg": "53.210445", + "longitude_deg": "-3.3855523", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no" + }, + { + "id": "320706", + "ident": "GB-0430", + "type": "closed", + "name": "Hook Airstrip", + "latitude_deg": "51.276115", + "longitude_deg": "-0.9407369", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320721", + "ident": "GB-0431", + "type": "small_airport", + "name": "Barnards Farm", + "latitude_deg": "51.564", + "longitude_deg": "0.355231", + "elevation_ft": "80", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "West Horndon", + "scheduled_service": "no", + "home_link": "http://www.barnardsfarm.eu/" + }, + { + "id": "320749", + "ident": "GB-0432", + "type": "small_airport", + "name": "Brook Farm Airstrip UL", + "latitude_deg": "53.897788", + "longitude_deg": "-2.902233", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Pilling, Lancs", + "scheduled_service": "no" + }, + { + "id": "320750", + "ident": "GB-0433", + "type": "small_airport", + "name": "Tillingham Airstrip", + "latitude_deg": "51.6928", + "longitude_deg": "0.872767", + "elevation_ft": "60", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Stowes Farm" + }, + { + "id": "320763", + "ident": "GB-0434", + "type": "small_airport", + "name": "Ludham Airfield", + "latitude_deg": "52.7185", + "longitude_deg": "1.55172", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.ludhamairfield.org/" + }, + { + "id": "320764", + "ident": "GB-0435", + "type": "small_airport", + "name": "Eye Kettleby Airstrip", + "latitude_deg": "52.7405", + "longitude_deg": "-0.906744", + "elevation_ft": "323", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320766", + "ident": "GB-0436", + "type": "small_airport", + "name": "Charlton Mires Airstrip", + "latitude_deg": "55.478947", + "longitude_deg": "-1.726299", + "elevation_ft": "300", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Alnwick, Northumberland", + "scheduled_service": "no" + }, + { + "id": "320773", + "ident": "GB-0437", + "type": "closed", + "name": "Ayton Castle Airstrip", + "latitude_deg": "55.8512", + "longitude_deg": "-2.11824", + "elevation_ft": "217", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320791", + "ident": "GB-0438", + "type": "small_airport", + "name": "Baxby-Husthwaite Airfield", + "latitude_deg": "54.1689", + "longitude_deg": "-1.22665", + "elevation_ft": "130", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.baxbyairsports.co.uk", + "keywords": "Baxby,Husthwaite" + }, + { + "id": "320792", + "ident": "GB-0439", + "type": "small_airport", + "name": "Headon Microlight", + "latitude_deg": "53.2826", + "longitude_deg": "-0.871947", + "elevation_ft": "136", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Retford", + "scheduled_service": "no", + "home_link": "http://microflight.co.uk" + }, + { + "id": "320793", + "ident": "GB-0440", + "type": "small_airport", + "name": "Tarn Farm Airfield (Rossall Field)", + "latitude_deg": "53.9354", + "longitude_deg": "-2.8432", + "elevation_ft": "15", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "https://bayflying.wordpress.com/club-info/", + "keywords": "Tarn Farm,Rossall Field, Bay Flying Club" + }, + { + "id": "320821", + "ident": "GB-0441", + "type": "small_airport", + "name": "Easterton Glider Field", + "latitude_deg": "57.5874", + "longitude_deg": "-3.30685", + "elevation_ft": "360", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Easterton", + "scheduled_service": "no", + "home_link": "http://www.highglide.co.uk/", + "keywords": "Highland Gliding Club" + }, + { + "id": "320822", + "ident": "GB-0442", + "type": "small_airport", + "name": "Fort Augustus Airstrip", + "latitude_deg": "57.127577", + "longitude_deg": "-4.670706", + "elevation_ft": "460", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Glendoe", + "scheduled_service": "no", + "keywords": "Glendoe Estate" + }, + { + "id": "320839", + "ident": "GB-0443", + "type": "small_airport", + "name": "Forwood Farm Airstrip", + "latitude_deg": "53.3026", + "longitude_deg": "-0.85115", + "elevation_ft": "135", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320840", + "ident": "GB-0444", + "type": "closed", + "name": "Alcester Airfield", + "latitude_deg": "52.2292", + "longitude_deg": "-1.87714", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Alcester", + "scheduled_service": "no", + "keywords": "King's Coughton" + }, + { + "id": "320841", + "ident": "GB-0445", + "type": "small_airport", + "name": "Park Hall Airstrip", + "latitude_deg": "52.9824", + "longitude_deg": "-1.37108", + "elevation_ft": "390", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.ramairmicrolights.co.uk/" + }, + { + "id": "320845", + "ident": "GB-0446", + "type": "small_airport", + "name": "Woodlow Farm Private Airstrip", + "latitude_deg": "52.1061", + "longitude_deg": "-2.45333", + "elevation_ft": "360", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bosbury", + "scheduled_service": "no", + "home_link": "http://www.woodlowfarm.co.uk/" + }, + { + "id": "320846", + "ident": "GB-0447", + "type": "small_airport", + "name": "Manton Airfield", + "latitude_deg": "51.4237", + "longitude_deg": "-1.77079", + "elevation_ft": "585", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.pmaviation.co.uk/" + }, + { + "id": "320852", + "ident": "GB-0448", + "type": "small_airport", + "name": "Slieve Croob Airfield", + "latitude_deg": "54.329596", + "longitude_deg": "-5.945292", + "elevation_ft": "800", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "scheduled_service": "no" + }, + { + "id": "320853", + "ident": "GB-0449", + "type": "small_airport", + "name": "Swanborough Farm Airstrip", + "latitude_deg": "50.8539", + "longitude_deg": "0.00256389", + "elevation_ft": "25", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320869", + "ident": "GB-0450", + "type": "small_airport", + "name": "Witherenden Airstrip", + "latitude_deg": "51.0046", + "longitude_deg": "0.621697", + "elevation_ft": "35", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320870", + "ident": "GB-0451", + "type": "small_airport", + "name": "Eastchurch Airfield", + "latitude_deg": "51.403", + "longitude_deg": "0.845842", + "elevation_ft": "60", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320893", + "ident": "GB-0452", + "type": "small_airport", + "name": "Mendlesham Airstrip", + "latitude_deg": "52.2295", + "longitude_deg": "1.12393", + "elevation_ft": "181", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320895", + "ident": "GB-0453", + "type": "small_airport", + "name": "Willingale Airstrip", + "latitude_deg": "51.7292", + "longitude_deg": "0.286556", + "elevation_ft": "250", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320918", + "ident": "GB-0454", + "type": "small_airport", + "name": "Mitton Airstrip", + "latitude_deg": "52.732917", + "longitude_deg": "-2.185017", + "elevation_ft": "300", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "320919", + "ident": "GB-0455", + "type": "small_airport", + "name": "Brooklands Farm Airstrip", + "latitude_deg": "52.3575", + "longitude_deg": "-0.242917", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.paramotorsuk.co.uk" + }, + { + "id": "320928", + "ident": "GB-0456", + "type": "small_airport", + "name": "Stonehill Farm Airstrip", + "latitude_deg": "55.4669", + "longitude_deg": "-3.84473", + "elevation_ft": "890", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "320929", + "ident": "GB-0457", + "type": "small_airport", + "name": "Spilsteads Farm Airstrip", + "latitude_deg": "50.937", + "longitude_deg": "0.52078", + "elevation_ft": "115", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Sedlescombe", + "scheduled_service": "no", + "home_link": "http://www.coleaviation.co.uk" + }, + { + "id": "331500", + "ident": "GB-0458", + "type": "closed", + "name": "RAF Stoney Cross Air Base", + "latitude_deg": "50.9117206", + "longitude_deg": "-1.6548675", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Stoney_Cross" + }, + { + "id": "321026", + "ident": "GB-0459", + "type": "small_airport", + "name": "Broadmeadow Farm Airstrip", + "latitude_deg": "52.0258", + "longitude_deg": "-2.76321", + "elevation_ft": "325", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Haywood", + "scheduled_service": "no" + }, + { + "id": "321027", + "ident": "GB-0460", + "type": "small_airport", + "name": "Woonton Airstrip", + "latitude_deg": "52.1626", + "longitude_deg": "-2.9462", + "elevation_ft": "399", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Woonton", + "scheduled_service": "no" + }, + { + "id": "321054", + "ident": "GB-0461", + "type": "small_airport", + "name": "Gransden Lodge Glider Field", + "latitude_deg": "52.181597", + "longitude_deg": "-0.112033", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.camgliding.uk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gransden_Lodge_Airfield" + }, + { + "id": "321057", + "ident": "GB-0462", + "type": "small_airport", + "name": "Octon Airstrip", + "latitude_deg": "54.1266", + "longitude_deg": "-0.430369", + "elevation_ft": "227", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "321058", + "ident": "GB-0463", + "type": "small_airport", + "name": "Davidstow Moor", + "latitude_deg": "50.6363", + "longitude_deg": "-4.6134", + "elevation_ft": "965", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "321059", + "ident": "GB-0464", + "type": "small_airport", + "name": "Hunsdon Airfield", + "latitude_deg": "51.8078", + "longitude_deg": "0.069644", + "elevation_ft": "244", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.hunsdonmicrolightclub.info" + }, + { + "id": "321069", + "ident": "GB-0465", + "type": "small_airport", + "name": "Culbokie Airstrip", + "latitude_deg": "57.586843", + "longitude_deg": "-4.31636", + "elevation_ft": "550", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "321080", + "ident": "GB-0466", + "type": "small_airport", + "name": "London Colney", + "latitude_deg": "51.7056", + "longitude_deg": "-0.274931", + "elevation_ft": "295", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.hertsmicrolightclub.co.uk", + "keywords": "The Dell" + }, + { + "id": "321081", + "ident": "GB-0467", + "type": "small_airport", + "name": "Pound Green Airfield UL", + "latitude_deg": "52.403623", + "longitude_deg": "-2.355366", + "elevation_ft": "360", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bewdley", + "scheduled_service": "no" + }, + { + "id": "321123", + "ident": "GB-0468", + "type": "small_airport", + "name": "Ewesley Airstrip", + "latitude_deg": "55.2205", + "longitude_deg": "-1.92621", + "elevation_ft": "278", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "321124", + "ident": "GB-0469", + "type": "small_airport", + "name": "Calton Moor Airfield", + "latitude_deg": "53.0328", + "longitude_deg": "-1.83495", + "elevation_ft": "990", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.caltonmoorflyers.co.uk/" + }, + { + "id": "321186", + "ident": "GB-0470", + "type": "small_airport", + "name": "Watnall Airfield", + "latitude_deg": "53.0286", + "longitude_deg": "-1.25577", + "elevation_ft": "410", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.microlight.flyer.co.uk" + }, + { + "id": "321187", + "ident": "GB-0471", + "type": "small_airport", + "name": "Roserrow Airstrip", + "latitude_deg": "50.5617", + "longitude_deg": "-4.89654", + "elevation_ft": "410", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.roserrow.co.uk" + }, + { + "id": "321188", + "ident": "GB-0472", + "type": "small_airport", + "name": "Titsey Airstrip", + "latitude_deg": "51.2756", + "longitude_deg": "0.0267556", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "321223", + "ident": "GB-0473", + "type": "small_airport", + "name": "Over Farm Microlight", + "latitude_deg": "51.8761", + "longitude_deg": "-2.28139", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://overfarmmicrolights.co.uk" + }, + { + "id": "321224", + "ident": "GB-0474", + "type": "small_airport", + "name": "Middlebank Top Farm Airstrip", + "latitude_deg": "53.7237", + "longitude_deg": "-2.25557", + "elevation_ft": "968", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lumb-in-Rossendale", + "scheduled_service": "no" + }, + { + "id": "321225", + "ident": "GB-0475", + "type": "small_airport", + "name": "Osbaston Lodge Farm Airstrip", + "latitude_deg": "52.6367", + "longitude_deg": "-1.39051", + "elevation_ft": "371", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Osbaston", + "scheduled_service": "no" + }, + { + "id": "321273", + "ident": "GB-0476", + "type": "small_airport", + "name": "Brookfield Farm Airstrip", + "latitude_deg": "53.4288", + "longitude_deg": "-0.347583", + "elevation_ft": "108", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "321274", + "ident": "GB-0477", + "type": "small_airport", + "name": "Onecoat Morridge Airstrip", + "latitude_deg": "53.1154", + "longitude_deg": "-1.94472", + "elevation_ft": "1386", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "321276", + "ident": "GB-0478", + "type": "small_airport", + "name": "Rathfriland Airstrip", + "latitude_deg": "54.253246", + "longitude_deg": "-6.229055", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Rathfriland", + "scheduled_service": "no" + }, + { + "id": "321298", + "ident": "GB-0479", + "type": "small_airport", + "name": "Rhedyn Coch Farm Airstrip", + "latitude_deg": "53.2833", + "longitude_deg": "-3.36713", + "elevation_ft": "615", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no" + }, + { + "id": "321299", + "ident": "GB-0480", + "type": "small_airport", + "name": "Kemeys Commander Airstrip", + "latitude_deg": "51.7362", + "longitude_deg": "-2.93729", + "elevation_ft": "130", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "321313", + "ident": "GB-0481", + "type": "small_airport", + "name": "Viners Airstrip", + "latitude_deg": "52.4806", + "longitude_deg": "-1.34255", + "elevation_ft": "375", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "321319", + "ident": "GB-0482", + "type": "small_airport", + "name": "Thornhill Airfield", + "latitude_deg": "56.14888", + "longitude_deg": "-4.18588", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Thornhill", + "scheduled_service": "no" + }, + { + "id": "321356", + "ident": "GB-0483", + "type": "small_airport", + "name": "High Flats Farm Airstrip", + "latitude_deg": "54.8697", + "longitude_deg": "-1.59656", + "elevation_ft": "220", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "321357", + "ident": "GB-0484", + "type": "small_airport", + "name": "Birds Edge Airstrip", + "latitude_deg": "53.567", + "longitude_deg": "-1.68403", + "elevation_ft": "253", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "321358", + "ident": "GB-0485", + "type": "closed", + "name": "Egton Airstrip", + "latitude_deg": "54.4606", + "longitude_deg": "-0.743481", + "elevation_ft": "700", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "321363", + "ident": "GB-0486", + "type": "small_airport", + "name": "Crossmaglen Airstrip", + "latitude_deg": "54.062915", + "longitude_deg": "-6.55901", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "scheduled_service": "no" + }, + { + "id": "321364", + "ident": "GB-0487", + "type": "closed", + "name": "Loughbrickland Airstrip", + "latitude_deg": "54.326685", + "longitude_deg": "-6.291239", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Banbridge", + "scheduled_service": "no" + }, + { + "id": "323667", + "ident": "GB-0488", + "type": "small_airport", + "name": "St Mellion Airstrip", + "latitude_deg": "50.4752449", + "longitude_deg": "-4.3084034", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bealbury", + "scheduled_service": "no" + }, + { + "id": "321542", + "ident": "GB-0489", + "type": "small_airport", + "name": "Redrock Airstrip", + "latitude_deg": "54.302863", + "longitude_deg": "-6.585688", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Redrock", + "scheduled_service": "no" + }, + { + "id": "321684", + "ident": "GB-0490", + "type": "small_airport", + "name": "Oakley Microlight", + "latitude_deg": "51.7832811", + "longitude_deg": "-1.074364", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Oakley", + "scheduled_service": "no", + "home_link": "https://www.bucks-microlight-club.org.uk", + "keywords": "Buckinghamshire Microlight Club" + }, + { + "id": "321835", + "ident": "GB-0491", + "type": "small_airport", + "name": "Dunnamanagh Airstrip", + "latitude_deg": "54.889695", + "longitude_deg": "-7.266047", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "scheduled_service": "no" + }, + { + "id": "321864", + "ident": "GB-0492", + "type": "small_airport", + "name": "Rattlesden", + "latitude_deg": "52.170757", + "longitude_deg": "0.872081", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Rattlesden", + "scheduled_service": "no", + "home_link": "https://www.rattlesdengliding.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Rattlesden", + "keywords": "RAF Rattlesden" + }, + { + "id": "321943", + "ident": "GB-0493", + "type": "small_airport", + "name": "Blackhill Airstrip", + "latitude_deg": "54.8042209", + "longitude_deg": "-6.7556928", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "scheduled_service": "no" + }, + { + "id": "322438", + "ident": "GB-0494", + "type": "small_airport", + "name": "Avon Lane Airfield", + "latitude_deg": "51.4102105", + "longitude_deg": "-2.4477922", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Saltford", + "scheduled_service": "no" + }, + { + "id": "322713", + "ident": "GB-0495", + "type": "small_airport", + "name": "Red House Farm Airstrip", + "latitude_deg": "52.178085", + "longitude_deg": "-1.176136", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Preston Capes", + "scheduled_service": "no" + }, + { + "id": "322722", + "ident": "GB-0496", + "type": "heliport", + "name": "Rotorspan", + "latitude_deg": "52.285500001", + "longitude_deg": "-2.1823", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Droitwich", + "scheduled_service": "no" + }, + { + "id": "322762", + "ident": "GB-0497", + "type": "small_airport", + "name": "Kirton-in-Lindsey Glider Field", + "latitude_deg": "53.4622", + "longitude_deg": "-0.5769", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://tvgc.org.uk" + }, + { + "id": "322818", + "ident": "GB-0498", + "type": "small_airport", + "name": "Wold Lodge Airstrip", + "latitude_deg": "52.3682214", + "longitude_deg": "-0.6335391", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Finedon", + "scheduled_service": "no" + }, + { + "id": "322881", + "ident": "GB-0499", + "type": "small_airport", + "name": "Windsor Farm Airstrip", + "latitude_deg": "53.1973943", + "longitude_deg": "0.0379326", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hagworthingham", + "scheduled_service": "no" + }, + { + "id": "322882", + "ident": "GB-0500", + "type": "small_airport", + "name": "Lindens Farm Airstrip", + "latitude_deg": "53.561574", + "longitude_deg": "-0.204035", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Riby", + "scheduled_service": "no" + }, + { + "id": "322883", + "ident": "GB-0501", + "type": "small_airport", + "name": "Northorpe Fen Airstrip", + "latitude_deg": "52.7454779", + "longitude_deg": "-0.3423425", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "322884", + "ident": "GB-0502", + "type": "small_airport", + "name": "Poplars Farm Airstrip", + "latitude_deg": "52.234596", + "longitude_deg": "-1.4206706", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Deppers Bridge", + "scheduled_service": "no" + }, + { + "id": "322886", + "ident": "GB-0503", + "type": "small_airport", + "name": "Glebe Farm Airstrip", + "latitude_deg": "52.2007", + "longitude_deg": "-1.3651", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Southam", + "scheduled_service": "no" + }, + { + "id": "323212", + "ident": "GB-0504", + "type": "small_airport", + "name": "Salterford Farm Airfield", + "latitude_deg": "53.0617449", + "longitude_deg": "-1.0942177", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Calverton", + "scheduled_service": "no" + }, + { + "id": "323344", + "ident": "GB-0505", + "type": "small_airport", + "name": "Rookery Farm UL", + "latitude_deg": "51.4734676", + "longitude_deg": "-2.4032447", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Doynton", + "scheduled_service": "no" + }, + { + "id": "323443", + "ident": "GB-0506", + "type": "small_airport", + "name": "Englefield Airstrip", + "latitude_deg": "51.4262846", + "longitude_deg": "-1.1114557", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Theale", + "scheduled_service": "no" + }, + { + "id": "323511", + "ident": "GB-0507", + "type": "small_airport", + "name": "Lodge Farm Airstrip", + "latitude_deg": "52.2348172", + "longitude_deg": "-1.0144367", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Upper Heyford", + "scheduled_service": "no" + }, + { + "id": "323605", + "ident": "GB-0508", + "type": "small_airport", + "name": "Mill Farm Airstrip", + "latitude_deg": "52.5835", + "longitude_deg": "-2.637706", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hughley", + "scheduled_service": "no" + }, + { + "id": "323632", + "ident": "GB-0509", + "type": "small_airport", + "name": "Bycross Farm Airstrip", + "latitude_deg": "52.077944", + "longitude_deg": "-2.9074406", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Moccas", + "scheduled_service": "no" + }, + { + "id": "323981", + "ident": "GB-0510", + "type": "closed", + "name": "Doncaster Airfield", + "latitude_deg": "53.513889", + "longitude_deg": "-1.11", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Doncaster", + "scheduled_service": "no" + }, + { + "id": "324005", + "ident": "GB-0511", + "type": "closed", + "name": "RNAS Ford", + "latitude_deg": "50.817216", + "longitude_deg": "-0.590155", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Ford", + "scheduled_service": "no" + }, + { + "id": "324006", + "ident": "GB-0512", + "type": "closed", + "name": "Ipswich Airport", + "latitude_deg": "52.030797", + "longitude_deg": "1.197901", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Ipswich", + "scheduled_service": "no", + "keywords": "EGSE" + }, + { + "id": "324207", + "ident": "GB-0513", + "type": "small_airport", + "name": "Firs Farm Airstrip", + "latitude_deg": "51.4722204", + "longitude_deg": "-1.3633204", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "324345", + "ident": "GB-0514", + "type": "small_airport", + "name": "Roddige Airfield", + "latitude_deg": "52.715263", + "longitude_deg": "-1.745357", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lichfield", + "scheduled_service": "no" + }, + { + "id": "324443", + "ident": "GB-0515", + "type": "heliport", + "name": "Weston-super-Mare Heliport", + "latitude_deg": "51.3389", + "longitude_deg": "-2.9326", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "324444", + "ident": "GB-0516", + "type": "closed", + "name": "RNAS St. Merryn", + "latitude_deg": "50.503964", + "longitude_deg": "-4.979277", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RNAS_St_Merryn_(HMS_Vulture)", + "keywords": "HMS Vulture" + }, + { + "id": "324484", + "ident": "GB-0517", + "type": "small_airport", + "name": "Glebe Farm Airstrip", + "latitude_deg": "51.133265", + "longitude_deg": "-2.034948", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Stockton", + "scheduled_service": "no" + }, + { + "id": "331545", + "ident": "GB-0518", + "type": "small_airport", + "name": "Talgarth Glider Field", + "latitude_deg": "51.980947", + "longitude_deg": "-3.205374", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no", + "keywords": "Black Mountains" + }, + { + "id": "331546", + "ident": "GB-0519", + "type": "closed", + "name": "RAF Faldingworth Air Base", + "latitude_deg": "53.3557506", + "longitude_deg": "-0.4478305", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Faldingworth" + }, + { + "id": "331549", + "ident": "GB-0520", + "type": "small_airport", + "name": "Whittles Farm Airstrip", + "latitude_deg": "51.5004847", + "longitude_deg": "-1.0357571", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331553", + "ident": "GB-0521", + "type": "small_airport", + "name": "Woodditton Airstrip", + "latitude_deg": "52.1988831", + "longitude_deg": "0.4424435", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "324810", + "ident": "GB-0522", + "type": "small_airport", + "name": "Wood Farm Airstrip", + "latitude_deg": "52.1216274", + "longitude_deg": "-0.6948611", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331556", + "ident": "GB-0523", + "type": "small_airport", + "name": "Westfield Farm Airstrip", + "latitude_deg": "50.846933", + "longitude_deg": "0.2802561", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "324984", + "ident": "GB-0524", + "type": "small_airport", + "name": "Tempest Airstrip", + "latitude_deg": "50.179428", + "longitude_deg": "-5.449931", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Trevethoe" + }, + { + "id": "324985", + "ident": "GB-0525", + "type": "small_airport", + "name": "Pilmuir Farm Airstrip", + "latitude_deg": "56.2240212", + "longitude_deg": "-2.9776945", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "324999", + "ident": "GB-0526", + "type": "small_airport", + "name": "North Moreton Airstrip", + "latitude_deg": "51.603506", + "longitude_deg": "-1.184651", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Melhuish Farm" + }, + { + "id": "325000", + "ident": "GB-0527", + "type": "small_airport", + "name": "Metropolitan Police Air Support Unit", + "latitude_deg": "51.6538182", + "longitude_deg": "0.0171705", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "325091", + "ident": "GB-0528", + "type": "heliport", + "name": "Nissan Helipad", + "latitude_deg": "54.90891", + "longitude_deg": "-1.483143", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Sunderland", + "scheduled_service": "no" + }, + { + "id": "325306", + "ident": "GB-0529", + "type": "small_airport", + "name": "Earwig Farm Airstrip", + "latitude_deg": "52.1850211", + "longitude_deg": "-0.5159565", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331568", + "ident": "GB-0530", + "type": "small_airport", + "name": "Wormingford Glider Field", + "latitude_deg": "51.941419", + "longitude_deg": "0.789459", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://esgc.co.uk", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Wormingford#Current_use", + "keywords": "Essex Suffolk Gliding Club" + }, + { + "id": "325630", + "ident": "GB-0531", + "type": "small_airport", + "name": "Orchardleigh Private Airstrip", + "latitude_deg": "51.2540766", + "longitude_deg": "-2.3247905", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "near Frome", + "scheduled_service": "no" + }, + { + "id": "325679", + "ident": "GB-0532", + "type": "small_airport", + "name": "Grange Farm private Airstrip", + "latitude_deg": "53.3227085", + "longitude_deg": "-0.2576933", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.thegrange-lincolnshire.co.uk/" + }, + { + "id": "325932", + "ident": "GB-0533", + "type": "small_airport", + "name": "Rendcomb Airfield", + "latitude_deg": "51.78252", + "longitude_deg": "-1.95159", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Rendcomb", + "scheduled_service": "no" + }, + { + "id": "325933", + "ident": "GB-0534", + "type": "closed", + "name": "Chedworth RAF Air Base", + "latitude_deg": "51.816307", + "longitude_deg": "-1.940015", + "elevation_ft": "807", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Chedworth", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Chedworth" + }, + { + "id": "326073", + "ident": "GB-0535", + "type": "small_airport", + "name": "Luxter Farm Airstrip", + "latitude_deg": "51.59597", + "longitude_deg": "-0.8928645", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331583", + "ident": "GB-0536", + "type": "small_airport", + "name": "Woodwalton Private Airstrip", + "latitude_deg": "52.4211117", + "longitude_deg": "-0.2485964", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331584", + "ident": "GB-0537", + "type": "small_airport", + "name": "New Orchard Farm Airstrip", + "latitude_deg": "51.3147996", + "longitude_deg": "0.7651069", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331585", + "ident": "GB-0538", + "type": "small_airport", + "name": "Ridgewell Glider Field", + "latitude_deg": "52.0492464", + "longitude_deg": "0.5582719", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "https://www.essexgliding.com/" + }, + { + "id": "326356", + "ident": "GB-0539", + "type": "small_airport", + "name": "Achnasheen Airstrip", + "latitude_deg": "57.5708442", + "longitude_deg": "-5.1888389", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no", + "keywords": "achnasheen, lubmore" + }, + { + "id": "326357", + "ident": "GB-0540", + "type": "small_airport", + "name": "Ballone Castle Airstrip", + "latitude_deg": "57.83218", + "longitude_deg": "-3.808523", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Tain, Ross", + "scheduled_service": "no", + "keywords": "EGYR" + }, + { + "id": "326358", + "ident": "GB-0541", + "type": "small_airport", + "name": "Glensanda Airstrip", + "latitude_deg": "56.5610514", + "longitude_deg": "-5.5474649", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "326382", + "ident": "GB-0542", + "type": "small_airport", + "name": "Forfar Airstrip", + "latitude_deg": "56.6533631", + "longitude_deg": "-2.8327751", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Forfar", + "scheduled_service": "no" + }, + { + "id": "331603", + "ident": "GB-0543", + "type": "small_airport", + "name": "Rothwell Lodge Farm Airstrip", + "latitude_deg": "52.41156", + "longitude_deg": "-0.790025", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Rothwell", + "scheduled_service": "no" + }, + { + "id": "326703", + "ident": "GB-0544", + "type": "small_airport", + "name": "Rectory Farm Airstrip", + "latitude_deg": "53.086138", + "longitude_deg": "-0.848486", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Averham", + "scheduled_service": "no" + }, + { + "id": "326704", + "ident": "GB-0545", + "type": "small_airport", + "name": "Portmoak Glider Field", + "latitude_deg": "56.191031", + "longitude_deg": "-3.328505", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Portmoak", + "scheduled_service": "no" + }, + { + "id": "326705", + "ident": "GB-0546", + "type": "small_airport", + "name": "Carrickmore Airstrip", + "latitude_deg": "54.572102", + "longitude_deg": "-7.044873", + "elevation_ft": "541", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Carrickmore", + "scheduled_service": "no", + "home_link": "http://www.c-moreflyingschool.com/" + }, + { + "id": "326746", + "ident": "GB-0547", + "type": "small_airport", + "name": "Pear Tree Farm Airstrip", + "latitude_deg": "53.279333", + "longitude_deg": "-2.297641", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Marthall", + "scheduled_service": "no" + }, + { + "id": "326753", + "ident": "GB-0548", + "type": "small_airport", + "name": "Lukesfield Airstrip", + "latitude_deg": "51.178559", + "longitude_deg": "0.526992", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "326754", + "ident": "GB-0549", + "type": "closed", + "name": "Annies Field Microlight Site", + "latitude_deg": "51.751637", + "longitude_deg": "0.699028", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "326755", + "ident": "GB-0550", + "type": "small_airport", + "name": "Lower Botrea", + "latitude_deg": "50.112244", + "longitude_deg": "-5.629731", + "elevation_ft": "500", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "326756", + "ident": "GB-0551", + "type": "small_airport", + "name": "Sackville Farm Airstrip", + "latitude_deg": "52.262422", + "longitude_deg": "-0.486598", + "elevation_ft": "250", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "RISELEY Bedfordshire", + "scheduled_service": "no", + "home_link": "http://www.sackvilleflyingclub.co.uk/" + }, + { + "id": "326757", + "ident": "GB-0552", + "type": "small_airport", + "name": "Meppershall", + "latitude_deg": "52.02053", + "longitude_deg": "-0.355031", + "elevation_ft": "160", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.brinkleyaviation.com/" + }, + { + "id": "326763", + "ident": "GB-0553", + "type": "small_airport", + "name": "Raydon Wings", + "latitude_deg": "52.018658", + "longitude_deg": "1.007259", + "elevation_ft": "170", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "326802", + "ident": "GB-0554", + "type": "small_airport", + "name": "Carr Valley", + "latitude_deg": "53.688505", + "longitude_deg": "-2.796592", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "326803", + "ident": "GB-0555", + "type": "small_airport", + "name": "Brown Shutters Farm Airstrip", + "latitude_deg": "51.311381", + "longitude_deg": "-2.308502", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "326804", + "ident": "GB-0556", + "type": "small_airport", + "name": "Blooms Farm Airstrip", + "latitude_deg": "51.994166", + "longitude_deg": "0.556438", + "elevation_ft": "243", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "326805", + "ident": "GB-0557", + "type": "small_airport", + "name": "Saltby Glider Field", + "latitude_deg": "52.829667", + "longitude_deg": "-0.7125", + "elevation_ft": "480", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Saltby", + "scheduled_service": "no", + "home_link": "http://www.buckminstergc.co.uk" + }, + { + "id": "326821", + "ident": "GB-0558", + "type": "small_airport", + "name": "Tarsan Lane Microlights", + "latitude_deg": "54.457555", + "longitude_deg": "-6.436968", + "elevation_ft": "40", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Portadown", + "scheduled_service": "no", + "home_link": "http://www.flyni.co.uk" + }, + { + "id": "326848", + "ident": "GB-0559", + "type": "small_airport", + "name": "Aughrim Airstrip", + "latitude_deg": "54.093811", + "longitude_deg": "-6.045952", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "scheduled_service": "no" + }, + { + "id": "326881", + "ident": "GB-0560", + "type": "small_airport", + "name": "Horham Airstrip", + "latitude_deg": "52.309167", + "longitude_deg": "1.2255", + "elevation_ft": "180", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Horham", + "scheduled_service": "no" + }, + { + "id": "326887", + "ident": "GB-0561", + "type": "small_airport", + "name": "Cae Mawr Tyddyn Hen", + "latitude_deg": "53.157273", + "longitude_deg": "-4.235529", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no" + }, + { + "id": "327471", + "ident": "GB-0562", + "type": "small_airport", + "name": "Stow Maries Great War Aerodrome", + "latitude_deg": "51.66948", + "longitude_deg": "0.632684", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "327472", + "ident": "GB-0563", + "type": "closed", + "name": "RAF Watton Air Base", + "latitude_deg": "52.5621892", + "longitude_deg": "0.865384", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Watton", + "scheduled_service": "no" + }, + { + "id": "328560", + "ident": "GB-0564", + "type": "small_airport", + "name": "Chalksole Green Airstrip", + "latitude_deg": "51.144824", + "longitude_deg": "1.209165", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Alkham", + "scheduled_service": "no" + }, + { + "id": "328588", + "ident": "GB-0565", + "type": "closed", + "name": "South Moor Farm Airstrip", + "latitude_deg": "54.299574", + "longitude_deg": "-0.606567", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Dalby Forest", + "scheduled_service": "no", + "home_link": "https://www.southmoorfarm.co.uk/dalby-airfield/" + }, + { + "id": "329133", + "ident": "GB-0566", + "type": "closed", + "name": "RAF North Killingholme", + "latitude_deg": "53.636089", + "longitude_deg": "-0.291481", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "329144", + "ident": "GB-0567", + "type": "closed", + "name": "RAF Stanton Harcourt Air Base", + "latitude_deg": "51.7462103", + "longitude_deg": "-1.4014872", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Stanton_Harcourt" + }, + { + "id": "329159", + "ident": "GB-0568", + "type": "closed", + "name": "RAF Denborough Air Base", + "latitude_deg": "52.469213", + "longitude_deg": "-0.797611", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "329160", + "ident": "GB-0569", + "type": "small_airport", + "name": "Rivar Hill Glider Field", + "latitude_deg": "51.3414659", + "longitude_deg": "-1.541894", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://shalbournegliding.co.uk" + }, + { + "id": "329161", + "ident": "GB-0570", + "type": "closed", + "name": "Wisley Airfield", + "latitude_deg": "51.3068085", + "longitude_deg": "-0.4541691", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wisley_Airfield" + }, + { + "id": "329166", + "ident": "GB-0571", + "type": "closed", + "name": "RAF Poulton", + "latitude_deg": "53.129618", + "longitude_deg": "-2.892399", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "329211", + "ident": "GB-0572", + "type": "heliport", + "name": "Nottingham Heliport", + "latitude_deg": "52.8389925", + "longitude_deg": "-1.0315114", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://www.nottinghamheliport.co.uk/" + }, + { + "id": "329229", + "ident": "GB-0573", + "type": "closed", + "name": "RAF Skaebrae Air Base", + "latitude_deg": "59.063901", + "longitude_deg": "-3.269179", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Orkney", + "scheduled_service": "no" + }, + { + "id": "329230", + "ident": "GB-0574", + "type": "closed", + "name": "RNAS HMS Tern Air Base", + "latitude_deg": "59.0887808", + "longitude_deg": "-3.2846396", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Twatt", + "scheduled_service": "no" + }, + { + "id": "329239", + "ident": "GB-0575", + "type": "closed", + "name": "RAF Errol (closed) Air Base", + "latitude_deg": "56.4034864", + "longitude_deg": "-3.1850436", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Errol", + "scheduled_service": "no" + }, + { + "id": "329258", + "ident": "GB-0576", + "type": "closed", + "name": "Former Drumshade Glider Field", + "latitude_deg": "56.644171", + "longitude_deg": "-3.025844", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Drumshade", + "scheduled_service": "no" + }, + { + "id": "329259", + "ident": "GB-0577", + "type": "small_airport", + "name": "Kirriemuir Farm Strip", + "latitude_deg": "56.650081", + "longitude_deg": "-3.027775", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "329262", + "ident": "GB-0578", + "type": "closed", + "name": "RAF East Moor Air Base", + "latitude_deg": "54.0695132", + "longitude_deg": "-1.0830345", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "329297", + "ident": "GB-0579", + "type": "closed", + "name": "RNAS Dale Air Base", + "latitude_deg": "51.714807", + "longitude_deg": "-5.194209", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Dale", + "scheduled_service": "no", + "keywords": "HMS Goldcrest" + }, + { + "id": "331610", + "ident": "GB-0580", + "type": "heliport", + "name": "Carden Park Hotel Helistrip", + "latitude_deg": "53.073103", + "longitude_deg": "-2.809839", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "330333", + "ident": "GB-0581", + "type": "small_airport", + "name": "Winkwood Farm Airstrip", + "latitude_deg": "51.1449", + "longitude_deg": "-0.6650901", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "330411", + "ident": "GB-0582", + "type": "closed", + "name": "Windrush Airstrip", + "latitude_deg": "51.804794", + "longitude_deg": "-1.737599", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "330547", + "ident": "GB-0583", + "type": "closed", + "name": "RAF Croft", + "latitude_deg": "54.45547", + "longitude_deg": "-1.558772", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Croft", + "scheduled_service": "no" + }, + { + "id": "330577", + "ident": "GB-0584", + "type": "small_airport", + "name": "Yoxford Airstrip", + "latitude_deg": "52.277934", + "longitude_deg": "1.50909", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "330578", + "ident": "GB-0585", + "type": "small_airport", + "name": "Yafford House Private Airstrip", + "latitude_deg": "50.63144", + "longitude_deg": "-1.36393", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Isle of Wight", + "scheduled_service": "no" + }, + { + "id": "330579", + "ident": "GB-0586", + "type": "heliport", + "name": "Cricklade Hotel Heliport", + "latitude_deg": "51.636387", + "longitude_deg": "-1.874226", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "330630", + "ident": "GB-0587", + "type": "small_airport", + "name": "Norton Malreward Airstrip", + "latitude_deg": "51.38254", + "longitude_deg": "-2.56879", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "330631", + "ident": "GB-0588", + "type": "closed", + "name": "RAF Warboys Air Base", + "latitude_deg": "52.3951", + "longitude_deg": "-0.0931", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Huntingdon", + "scheduled_service": "no" + }, + { + "id": "330664", + "ident": "GB-0589", + "type": "heliport", + "name": "Worcester-Royal-Hospital Heliport", + "latitude_deg": "52.189661", + "longitude_deg": "-2.177204", + "elevation_ft": "233", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Worcester", + "scheduled_service": "no" + }, + { + "id": "330666", + "ident": "GB-0590", + "type": "closed", + "name": "RAF Woolfox Lodge Air Base", + "latitude_deg": "52.707621", + "longitude_deg": "-0.574625", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331612", + "ident": "GB-0591", + "type": "small_airport", + "name": "Warren Farm Airstrip", + "latitude_deg": "51.290216", + "longitude_deg": "-2.719748", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331613", + "ident": "GB-0592", + "type": "small_airport", + "name": "Wentworth Private Airstrip", + "latitude_deg": "53.474569", + "longitude_deg": "-1.419034", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331626", + "ident": "GB-0593", + "type": "small_airport", + "name": "Topcroft Farm Airstrip", + "latitude_deg": "52.465464", + "longitude_deg": "1.330176", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "332336", + "ident": "GB-0594", + "type": "small_airport", + "name": "Barcombe-North Airstrip", + "latitude_deg": "50.935009", + "longitude_deg": "0.031887", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Burtenshaw Farm" + }, + { + "id": "330855", + "ident": "GB-0595", + "type": "closed", + "name": "RAF Throckmorton Air Base", + "latitude_deg": "52.144318", + "longitude_deg": "-2.037167", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "332337", + "ident": "GB-0596", + "type": "small_airport", + "name": "Palmer Moor Farm Airstrip", + "latitude_deg": "52.899582", + "longitude_deg": "-1.801554", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Doveridge", + "scheduled_service": "no" + }, + { + "id": "331627", + "ident": "GB-0597", + "type": "small_airport", + "name": "Waits Farm Airstrip", + "latitude_deg": "52.034118", + "longitude_deg": "0.640343", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331039", + "ident": "GB-0598", + "type": "heliport", + "name": "Waterloo Hotel Helistrip", + "latitude_deg": "53.086877", + "longitude_deg": "-3.797174", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331057", + "ident": "GB-0599", + "type": "small_airport", + "name": "Bagber Farm Airstrip", + "latitude_deg": "50.796899", + "longitude_deg": "-2.265683", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331058", + "ident": "GB-0600", + "type": "small_airport", + "name": "Freshwater Fruit Farm Airstrip", + "latitude_deg": "50.6809309995", + "longitude_deg": "-1.492285", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Isle of Wight", + "scheduled_service": "no" + }, + { + "id": "331087", + "ident": "GB-0601", + "type": "small_airport", + "name": "Cadwell Park Farm Airstrip", + "latitude_deg": "53.316481", + "longitude_deg": "-0.072552", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331641", + "ident": "GB-0602", + "type": "small_airport", + "name": "Bankwood Farm Airstrip", + "latitude_deg": "53.045801", + "longitude_deg": "-0.997581", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Thurgarton", + "scheduled_service": "no" + }, + { + "id": "331169", + "ident": "GB-0603", + "type": "closed", + "name": "Upottery Air Base", + "latitude_deg": "50.885745", + "longitude_deg": "-3.160606", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Smeatharpe" + }, + { + "id": "331202", + "ident": "GB-0604", + "type": "closed", + "name": "RAF Tuddenham Air Base", + "latitude_deg": "52.317637", + "longitude_deg": "0.573844", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Tuddenham", + "scheduled_service": "no" + }, + { + "id": "331213", + "ident": "GB-0605", + "type": "heliport", + "name": "Tunbridge Wells Hospital Helipad", + "latitude_deg": "51.149036", + "longitude_deg": "0.307619", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331226", + "ident": "GB-0606", + "type": "small_airport", + "name": "Wortham Airstrip", + "latitude_deg": "52.345236", + "longitude_deg": "1.064814", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331265", + "ident": "GB-0607", + "type": "closed", + "name": "RAF Tholthorpe Air Base", + "latitude_deg": "54.105959", + "longitude_deg": "-1.264926", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331307", + "ident": "GB-0608", + "type": "closed", + "name": "RAF Templeton Air Base", + "latitude_deg": "51.7648", + "longitude_deg": "-4.754015", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Templeton" + }, + { + "id": "331321", + "ident": "GB-0609", + "type": "balloonport", + "name": "Black Horse Ballooning Club", + "latitude_deg": "51.710142", + "longitude_deg": "-0.712451", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Great Missenden, Bucks", + "scheduled_service": "no", + "home_link": "https://www.bhbc.club" + }, + { + "id": "331331", + "ident": "GB-0610", + "type": "closed", + "name": "RAF Stradishall Air Base", + "latitude_deg": "52.130551", + "longitude_deg": "0.520487", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Stradishall" + }, + { + "id": "331645", + "ident": "GB-0611", + "type": "small_airport", + "name": "Cockerham", + "latitude_deg": "53.965074", + "longitude_deg": "-2.831491", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "https://www.bkpc.co.uk" + }, + { + "id": "331342", + "ident": "GB-0612", + "type": "closed", + "name": "RAF Thorpe Abbotts Air Base", + "latitude_deg": "52.383357", + "longitude_deg": "1.211918", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Thorpe_Abbotts" + }, + { + "id": "331343", + "ident": "GB-0613", + "type": "heliport", + "name": "Torbay Daddyhole Plain", + "latitude_deg": "50.455712", + "longitude_deg": "-3.514665", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Torquay", + "scheduled_service": "no", + "home_link": "https://www.torbay.gov.uk/roads/helicopters/" + }, + { + "id": "331648", + "ident": "GB-0614", + "type": "small_airport", + "name": "Ringmer Glider Field", + "latitude_deg": "50.907978", + "longitude_deg": "0.105314", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://sussexgliding.co.uk" + }, + { + "id": "331679", + "ident": "GB-0615", + "type": "small_airport", + "name": "London Gliding Club", + "latitude_deg": "51.868549", + "longitude_deg": "-0.545165", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Dunstable", + "scheduled_service": "no", + "home_link": "http://www.londonglidingclub.co.uk" + }, + { + "id": "331711", + "ident": "GB-0616", + "type": "small_airport", + "name": "Darlton Gliding Club", + "latitude_deg": "53.244587", + "longitude_deg": "-0.859207", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "http://darltonglidingclub.co.uk" + }, + { + "id": "331714", + "ident": "GB-0617", + "type": "heliport", + "name": "Ysbyty Glan Clywd Hospital Heliport", + "latitude_deg": "53.273738", + "longitude_deg": "-3.498112", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no" + }, + { + "id": "331715", + "ident": "GB-0618", + "type": "heliport", + "name": "Great North Air Ambulance", + "latitude_deg": "54.6916425", + "longitude_deg": "-2.6621042", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Langwathby", + "scheduled_service": "no" + }, + { + "id": "331723", + "ident": "GB-0619", + "type": "small_airport", + "name": "Stanton Farm Airstrip", + "latitude_deg": "51.33876", + "longitude_deg": "-1.873359", + "elevation_ft": "361", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Stanton St Bernard, Wiltshire", + "scheduled_service": "no" + }, + { + "id": "331747", + "ident": "GB-0620", + "type": "small_airport", + "name": "Truleigh Manor Farm Airstrip", + "latitude_deg": "50.898506", + "longitude_deg": "-0.254678", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331762", + "ident": "GB-0621", + "type": "small_airport", + "name": "Tongham Airstrip", + "latitude_deg": "51.227645", + "longitude_deg": "-0.728329", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331802", + "ident": "GB-0622", + "type": "small_airport", + "name": "Dairy House Farm Airfield", + "latitude_deg": "53.106477", + "longitude_deg": "-2.5037106", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331815", + "ident": "GB-0623", + "type": "heliport", + "name": "Aberdeen Royal Infirmary Helistrip", + "latitude_deg": "57.152453", + "longitude_deg": "-2.134904", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Aberdeen", + "scheduled_service": "no" + }, + { + "id": "331816", + "ident": "GB-0624", + "type": "small_airport", + "name": "Sparr Farm Airstrip", + "latitude_deg": "51.035749", + "longitude_deg": "-0.512273", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331831", + "ident": "GB-0625", + "type": "heliport", + "name": "Aintree University Hospital Heliport", + "latitude_deg": "53.4647107", + "longitude_deg": "-2.9284169", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331846", + "ident": "GB-0626", + "type": "small_airport", + "name": "North Reston Hall Farm Airstrip", + "latitude_deg": "53.325299", + "longitude_deg": "0.070853", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Louth", + "scheduled_service": "no" + }, + { + "id": "331847", + "ident": "GB-0627", + "type": "small_airport", + "name": "Louth Airstrip", + "latitude_deg": "53.3579863", + "longitude_deg": "0.0326153", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331848", + "ident": "GB-0628", + "type": "small_airport", + "name": "Eastfield Farm Airstrip", + "latitude_deg": "53.365413", + "longitude_deg": "0.12078", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331849", + "ident": "GB-0629", + "type": "small_airport", + "name": "Hold Farm Airstrip", + "latitude_deg": "52.342384", + "longitude_deg": "-0.782441", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331850", + "ident": "GB-0630", + "type": "small_airport", + "name": "Hulcote Farm Airstrip", + "latitude_deg": "52.036706", + "longitude_deg": "-0.621314", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331853", + "ident": "GB-0631", + "type": "small_airport", + "name": "Royal Glamorgan Hospital Heliport", + "latitude_deg": "51.546332", + "longitude_deg": "-3.394245", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no" + }, + { + "id": "331857", + "ident": "GB-0632", + "type": "small_airport", + "name": "Debach Airfield", + "latitude_deg": "52.1341341", + "longitude_deg": "1.2659579", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331869", + "ident": "GB-0633", + "type": "heliport", + "name": "Torquay Go-Kart circuit helipad", + "latitude_deg": "50.394339", + "longitude_deg": "-3.551301", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331870", + "ident": "GB-0634", + "type": "small_airport", + "name": "Southery Airstrip", + "latitude_deg": "52.53854", + "longitude_deg": "0.382986", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331917", + "ident": "GB-0635", + "type": "closed", + "name": "Bounds Farm Airstrip", + "latitude_deg": "51.9245", + "longitude_deg": "1.009167", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Ardleigh", + "scheduled_service": "no" + }, + { + "id": "331918", + "ident": "GB-0636", + "type": "heliport", + "name": "Raemoir House Hotel Helipad", + "latitude_deg": "57.08511", + "longitude_deg": "-2.505362", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Banchory", + "scheduled_service": "no" + }, + { + "id": "331955", + "ident": "GB-0637", + "type": "closed", + "name": "Clothall Common Airstrip", + "latitude_deg": "51.985385", + "longitude_deg": "-0.164144", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "331989", + "ident": "GB-0638", + "type": "small_airport", + "name": "Shelsley-Beauchamp Airstrip", + "latitude_deg": "52.2603384", + "longitude_deg": "-2.39192", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "332001", + "ident": "GB-0639", + "type": "small_airport", + "name": "Ranksborough Farm Airstrip", + "latitude_deg": "52.688977", + "longitude_deg": "-0.775251", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Langham", + "scheduled_service": "no" + }, + { + "id": "332054", + "ident": "GB-0640", + "type": "closed", + "name": "RAF Portreath", + "latitude_deg": "50.271389", + "longitude_deg": "-5.263333", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Portreath", + "scheduled_service": "no", + "wikipedia_link": "https://en.m.wikipedia.org/wiki/RRH_Portreath" + }, + { + "id": "332057", + "ident": "GB-0641", + "type": "closed", + "name": "RAF St Eval", + "latitude_deg": "50.47822", + "longitude_deg": "-4.99953", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "St Eval", + "scheduled_service": "no", + "wikipedia_link": "https://en.m.wikipedia.org/wiki/RAF_St_Eval" + }, + { + "id": "332059", + "ident": "GB-0642", + "type": "heliport", + "name": "Liskeard Heliport", + "latitude_deg": "50.414315", + "longitude_deg": "-4.394102", + "elevation_ft": "100", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Liskeard", + "scheduled_service": "no" + }, + { + "id": "332060", + "ident": "GB-0643", + "type": "closed", + "name": "RAF Winkleigh", + "latitude_deg": "50.868134", + "longitude_deg": "-3.960743", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Winkleigh", + "scheduled_service": "no" + }, + { + "id": "332061", + "ident": "GB-0644", + "type": "heliport", + "name": "Lake Heliport Abbotsham", + "latitude_deg": "51.032554", + "longitude_deg": "-4.251607", + "elevation_ft": "270", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bideford", + "scheduled_service": "no" + }, + { + "id": "332069", + "ident": "GB-0645", + "type": "heliport", + "name": "Norton Manor Camp Helistrip", + "latitude_deg": "51.0344817", + "longitude_deg": "-3.1593028", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "332070", + "ident": "GB-0646", + "type": "closed", + "name": "RAF Culmhead", + "latitude_deg": "50.930143", + "longitude_deg": "-3.128958", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Culmhead", + "scheduled_service": "no", + "wikipedia_link": "https://en.m.wikipedia.org/wiki/RAF_Culmhead" + }, + { + "id": "332094", + "ident": "GB-0647", + "type": "heliport", + "name": "Prince Charles Hospital Helipad", + "latitude_deg": "51.763496", + "longitude_deg": "-3.386852", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Merthyr Tydfil", + "scheduled_service": "no" + }, + { + "id": "332166", + "ident": "GB-0648", + "type": "heliport", + "name": "Croft Heliport", + "latitude_deg": "52.554172", + "longitude_deg": "-1.231451", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "332319", + "ident": "GB-0649", + "type": "small_airport", + "name": "Ramsdean private airstrip", + "latitude_deg": "50.992342", + "longitude_deg": "-0.993607", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Twentyways, Twenty Ways Farm" + }, + { + "id": "332320", + "ident": "GB-0650", + "type": "closed", + "name": "RAF Plain Heath Air Base", + "latitude_deg": "50.788437", + "longitude_deg": "-1.696773", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Holmsey", + "scheduled_service": "no" + }, + { + "id": "332373", + "ident": "GB-0651", + "type": "small_airport", + "name": "Lennox Plunton Airstrip", + "latitude_deg": "54.841753", + "longitude_deg": "-4.15884", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Kirkcudbright", + "scheduled_service": "no" + }, + { + "id": "332377", + "ident": "GB-0652", + "type": "small_airport", + "name": "Pauncefoot Farm Airstrip", + "latitude_deg": "50.976818", + "longitude_deg": "-1.520684", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "332382", + "ident": "GB-0653", + "type": "small_airport", + "name": "Pitlands Farm Airstrip", + "latitude_deg": "50.906077", + "longitude_deg": "-0.865023", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "332385", + "ident": "GB-0654", + "type": "small_airport", + "name": "Pencraig Airstrip", + "latitude_deg": "52.833151", + "longitude_deg": "-3.419661", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no" + }, + { + "id": "332460", + "ident": "GB-0655", + "type": "closed", + "name": "RAF Oulton Air Base", + "latitude_deg": "52.798818", + "longitude_deg": "1.181889", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Oulton, Norfolk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Oulton" + }, + { + "id": "332461", + "ident": "GB-0656", + "type": "closed", + "name": "RAF Ossington Air Base", + "latitude_deg": "53.176843", + "longitude_deg": "-0.888472", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Ossington, Nottinghamshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Ossington" + }, + { + "id": "349731", + "ident": "GB-0657", + "type": "closed", + "name": "RAF Wing", + "latitude_deg": "51.903056", + "longitude_deg": "-0.748333", + "elevation_ft": "469", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Wing", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Wing", + "keywords": "RAF" + }, + { + "id": "332500", + "ident": "GB-0658", + "type": "heliport", + "name": "Norfolk and Norwich University Hospital Helipad", + "latitude_deg": "52.619178", + "longitude_deg": "1.220813", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Norwich", + "scheduled_service": "no" + }, + { + "id": "332508", + "ident": "GB-0659", + "type": "closed", + "name": "RAF North Pickenham Air Base", + "latitude_deg": "52.627378", + "longitude_deg": "0.732724", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_North_Pickenham" + }, + { + "id": "332509", + "ident": "GB-0660", + "type": "small_airport", + "name": "North Rigton Private Airstrip", + "latitude_deg": "53.940831", + "longitude_deg": "-1.552205", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "332514", + "ident": "GB-0661", + "type": "small_airport", + "name": "New Model Farm Airstrip", + "latitude_deg": "51.673899", + "longitude_deg": "-0.490286", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Sarratt, Herts", + "scheduled_service": "no" + }, + { + "id": "332548", + "ident": "GB-0662", + "type": "small_airport", + "name": "Swinmore Farm Airstrip", + "latitude_deg": "52.07441", + "longitude_deg": "-2.478361", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Munsley (Herefordshire)", + "scheduled_service": "no", + "keywords": "Munsley, Ledbury, Swinmore" + }, + { + "id": "332552", + "ident": "GB-0663", + "type": "heliport", + "name": "Morriston Hospital Helipad", + "latitude_deg": "51.684048", + "longitude_deg": "-3.937201", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no" + }, + { + "id": "332555", + "ident": "GB-0664", + "type": "closed", + "name": "RAF Montford Bridge Air Base", + "latitude_deg": "52.748477", + "longitude_deg": "-2.843399", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Montford Bridge (Shropshire)", + "scheduled_service": "no" + }, + { + "id": "332558", + "ident": "GB-0665", + "type": "small_airport", + "name": "Middle West Farm Airstrip", + "latitude_deg": "52.619908", + "longitude_deg": "-0.155396", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "332562", + "ident": "GB-0666", + "type": "heliport", + "name": "Maydown Heliport", + "latitude_deg": "55.031915", + "longitude_deg": "-7.23381", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Maydown, Co. Derry", + "scheduled_service": "no" + }, + { + "id": "332606", + "ident": "GB-0667", + "type": "small_airport", + "name": "Park Farm Airstrip", + "latitude_deg": "54.287538", + "longitude_deg": "-1.831541", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Middleham", + "scheduled_service": "no" + }, + { + "id": "332607", + "ident": "GB-0668", + "type": "small_airport", + "name": "Middle Chinnock Airstrip", + "latitude_deg": "50.915318", + "longitude_deg": "-2.736626", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "332611", + "ident": "GB-0669", + "type": "small_airport", + "name": "Michaelwood Airstrip", + "latitude_deg": "51.654733", + "longitude_deg": "-2.408098", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "332615", + "ident": "GB-0670", + "type": "small_airport", + "name": "Mayfield Farm Airstrip", + "latitude_deg": "55.645872", + "longitude_deg": "-4.764698", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "332655", + "ident": "GB-0671", + "type": "small_airport", + "name": "Thankerton private airstrip", + "latitude_deg": "55.624192", + "longitude_deg": "-3.618665", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "332681", + "ident": "GB-0672", + "type": "closed", + "name": "London Red Bull Airport", + "latitude_deg": "51.50729", + "longitude_deg": "0.056734", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "London", + "scheduled_service": "no", + "keywords": "Red Bull Air Race" + }, + { + "id": "332683", + "ident": "GB-0673", + "type": "closed", + "name": "RAF Down Ampney", + "latitude_deg": "51.666944", + "longitude_deg": "-1.839444", + "elevation_ft": "270", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Down_Ampney" + }, + { + "id": "332684", + "ident": "GB-0674", + "type": "closed", + "name": "Hendon Aerodrome", + "latitude_deg": "51.601", + "longitude_deg": "-0.245", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hendon_Aerodrome" + }, + { + "id": "332685", + "ident": "GB-0675", + "type": "closed", + "name": "RAF Moreton in Marsh", + "latitude_deg": "51.995", + "longitude_deg": "-1.68", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Moreton-in-Marsh" + }, + { + "id": "332686", + "ident": "GB-0676", + "type": "closed", + "name": "RAF Leiston", + "latitude_deg": "52.2207", + "longitude_deg": "1.554995", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Leiston, Suffolk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Leiston" + }, + { + "id": "332687", + "ident": "GB-0677", + "type": "closed", + "name": "RAF Halesworth", + "latitude_deg": "52.364097", + "longitude_deg": "1.531005", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Halesworth, Suffolk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Halesworth" + }, + { + "id": "332689", + "ident": "GB-0678", + "type": "small_airport", + "name": "Marsh Hill Farm Airstrip", + "latitude_deg": "51.774904", + "longitude_deg": "-0.832815", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "332691", + "ident": "GB-0679", + "type": "small_airport", + "name": "Marsh Court Manor Private Airstrip", + "latitude_deg": "51.098725", + "longitude_deg": "-1.495085", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "332711", + "ident": "GB-0680", + "type": "small_airport", + "name": "Manor Farm Airstrip", + "latitude_deg": "52.468717", + "longitude_deg": "-0.312767", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Glatton (Cambs)", + "scheduled_service": "no" + }, + { + "id": "332712", + "ident": "GB-0681", + "type": "small_airport", + "name": "Manor Farm Airstrip", + "latitude_deg": "52.540136", + "longitude_deg": "-0.867233", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Slawston (Leicestershire)", + "scheduled_service": "no" + }, + { + "id": "332718", + "ident": "GB-0682", + "type": "balloonport", + "name": "Lydiard Park", + "latitude_deg": "51.561725", + "longitude_deg": "-1.85193", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "332721", + "ident": "GB-0683", + "type": "seaplane_base", + "name": "Luss Seaplane Terminal", + "latitude_deg": "56.120657", + "longitude_deg": "-4.650422", + "elevation_ft": "-1", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "332734", + "ident": "GB-0684", + "type": "closed", + "name": "Glasgow Seaplane Terminal", + "latitude_deg": "55.85831", + "longitude_deg": "-4.294882", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Glasgow", + "scheduled_service": "no" + }, + { + "id": "332844", + "ident": "GB-0685", + "type": "small_airport", + "name": "Athey's Moor Airfield", + "latitude_deg": "55.316961", + "longitude_deg": "-1.785493", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Longframlington", + "scheduled_service": "no" + }, + { + "id": "332848", + "ident": "GB-0686", + "type": "small_airport", + "name": "Old Manor Farm Airstrip", + "latitude_deg": "53.0443", + "longitude_deg": "-0.3328", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Anwick", + "scheduled_service": "no" + }, + { + "id": "332850", + "ident": "GB-0687", + "type": "small_airport", + "name": "Bitteswell Farm Airstrip", + "latitude_deg": "52.475", + "longitude_deg": "-1.2076", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bitteswell", + "scheduled_service": "no" + }, + { + "id": "332851", + "ident": "GB-0688", + "type": "small_airport", + "name": "Hoe Farm Airstrip", + "latitude_deg": "52.077079", + "longitude_deg": "-2.386909", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Colwall", + "scheduled_service": "no" + }, + { + "id": "332859", + "ident": "GB-0689", + "type": "small_airport", + "name": "Brine Pits Farm Airstrip", + "latitude_deg": "52.2893", + "longitude_deg": "-2.1336", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Droitwich", + "scheduled_service": "no" + }, + { + "id": "332860", + "ident": "GB-0690", + "type": "heliport", + "name": "Costock Heliport", + "latitude_deg": "52.8218", + "longitude_deg": "-1.1478", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Costock", + "scheduled_service": "no", + "home_link": "https://eastmidlandshelicopters.com" + }, + { + "id": "332862", + "ident": "GB-0691", + "type": "small_airport", + "name": "Crosbie Field UL", + "latitude_deg": "52.0127", + "longitude_deg": "0.7475", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Little Cornard", + "scheduled_service": "no" + }, + { + "id": "332863", + "ident": "GB-0692", + "type": "small_airport", + "name": "Manor Farm Airstrip", + "latitude_deg": "52.715343", + "longitude_deg": "-0.402031", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Braceborough", + "scheduled_service": "no" + }, + { + "id": "332864", + "ident": "GB-0693", + "type": "small_airport", + "name": "Bericote Farm Airstrip", + "latitude_deg": "52.32719", + "longitude_deg": "-1.547935", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Blackdown / Ashow", + "scheduled_service": "no" + }, + { + "id": "332865", + "ident": "GB-0694", + "type": "small_airport", + "name": "Camp Farm Airstrip", + "latitude_deg": "52.473919", + "longitude_deg": "-1.446033", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bedworth", + "scheduled_service": "no" + }, + { + "id": "332867", + "ident": "GB-0695", + "type": "small_airport", + "name": "Blackmoor Farm Airstrip", + "latitude_deg": "53.157708", + "longitude_deg": "-0.586567", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Aubourn", + "scheduled_service": "no" + }, + { + "id": "332871", + "ident": "GB-0696", + "type": "small_airport", + "name": "Manor House Farm Airstrip UL", + "latitude_deg": "52.9726", + "longitude_deg": "-0.7157", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Foston", + "scheduled_service": "no" + }, + { + "id": "332884", + "ident": "GB-0697", + "type": "small_airport", + "name": "Green Acres Airstrip", + "latitude_deg": "52.2136", + "longitude_deg": "-3.0696", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Kington", + "scheduled_service": "no" + }, + { + "id": "332885", + "ident": "GB-0698", + "type": "small_airport", + "name": "Stitchin's Hill Farm Airstrip", + "latitude_deg": "52.1669", + "longitude_deg": "-2.3499", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Leigh Sinton", + "scheduled_service": "no" + }, + { + "id": "332886", + "ident": "GB-0699", + "type": "small_airport", + "name": "Drayton Hone Farm Airstrip", + "latitude_deg": "52.4087", + "longitude_deg": "-0.596", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lowick, Slipton", + "scheduled_service": "no" + }, + { + "id": "332887", + "ident": "GB-0700", + "type": "small_airport", + "name": "Northfield Farm Airstrip", + "latitude_deg": "53.1848", + "longitude_deg": "0.0263", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Mavis Enderby", + "scheduled_service": "no" + }, + { + "id": "332888", + "ident": "GB-0701", + "type": "small_airport", + "name": "Riding Bank Farm Airstrip", + "latitude_deg": "52.821429", + "longitude_deg": "-1.447728", + "elevation_ft": "283", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Melbourne, Derby", + "scheduled_service": "no" + }, + { + "id": "332889", + "ident": "GB-0702", + "type": "small_airport", + "name": "Whaley Farm Airstrip", + "latitude_deg": "53.067137", + "longitude_deg": "-0.148616", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "New York", + "scheduled_service": "no" + }, + { + "id": "332911", + "ident": "GB-0703", + "type": "small_airport", + "name": "Glebe Farm (Sibson) Airstrip", + "latitude_deg": "52.606", + "longitude_deg": "-1.4621", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Sibson", + "scheduled_service": "no" + }, + { + "id": "332912", + "ident": "GB-0704", + "type": "small_airport", + "name": "Crumpton Oaks Farm Airstrip", + "latitude_deg": "52.1336", + "longitude_deg": "-2.344", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Storridge", + "scheduled_service": "no" + }, + { + "id": "332913", + "ident": "GB-0705", + "type": "small_airport", + "name": "Sulby Airstrip", + "latitude_deg": "52.4332", + "longitude_deg": "-1.0399", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "332914", + "ident": "GB-0706", + "type": "small_airport", + "name": "Butterfield Farm Airstrip", + "latitude_deg": "53.0799", + "longitude_deg": "-1.4035", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Swanwick (Derby)", + "scheduled_service": "no" + }, + { + "id": "332915", + "ident": "GB-0707", + "type": "small_airport", + "name": "Carr Farm Airstrip", + "latitude_deg": "53.2331", + "longitude_deg": "-0.7303", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Thorney", + "scheduled_service": "no" + }, + { + "id": "332928", + "ident": "GB-0708", + "type": "small_airport", + "name": "Hanbeck Farm Airstrip", + "latitude_deg": "52.9767", + "longitude_deg": "-0.4887", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Wilsford", + "scheduled_service": "no" + }, + { + "id": "332929", + "ident": "GB-0709", + "type": "small_airport", + "name": "Prospect Farm Airstrip UL", + "latitude_deg": "52.2657", + "longitude_deg": "-0.6721", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Wollaston", + "scheduled_service": "no" + }, + { + "id": "332953", + "ident": "GB-0710", + "type": "small_airport", + "name": "Knettishall Airstrip", + "latitude_deg": "52.376512", + "longitude_deg": "0.88908", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Knettishall" + }, + { + "id": "332971", + "ident": "GB-0711", + "type": "small_airport", + "name": "Kilkerran UL", + "latitude_deg": "55.299005", + "longitude_deg": "-4.674436", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Kilkerran (Ayrshire)", + "scheduled_service": "no" + }, + { + "id": "333002", + "ident": "GB-0712", + "type": "small_airport", + "name": "Causey Park Airstrip UL", + "latitude_deg": "55.2547", + "longitude_deg": "-1.7126", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333003", + "ident": "GB-0713", + "type": "small_airport", + "name": "Croft Farm Airstrip", + "latitude_deg": "54.4579", + "longitude_deg": "-1.5608", + "elevation_ft": "-1", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Darlington", + "scheduled_service": "no" + }, + { + "id": "333004", + "ident": "GB-0714", + "type": "small_airport", + "name": "Gilrudding Grange Airstrip", + "latitude_deg": "53.8936", + "longitude_deg": "-1.0676", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Deighton", + "scheduled_service": "no" + }, + { + "id": "333005", + "ident": "GB-0715", + "type": "small_airport", + "name": "Acaster Malbis Airstrip", + "latitude_deg": "53.881324", + "longitude_deg": "-1.121635", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "York", + "scheduled_service": "no" + }, + { + "id": "333043", + "ident": "GB-0716", + "type": "heliport", + "name": "YAA Nostell Helicopter Port", + "latitude_deg": "53.6556", + "longitude_deg": "-1.3971", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Foulby, Nostell, Yorkshire", + "scheduled_service": "no", + "keywords": "YAA,Yorkshire Air Ambulance" + }, + { + "id": "333044", + "ident": "GB-0717", + "type": "small_airport", + "name": "Lodge Field House Airstrip", + "latitude_deg": "54.194", + "longitude_deg": "-1.0671", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Gilling East, Yorkshire", + "scheduled_service": "no" + }, + { + "id": "333047", + "ident": "GB-0718", + "type": "small_airport", + "name": "Inglesham Private Airstrip", + "latitude_deg": "51.669934", + "longitude_deg": "-1.716056", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333048", + "ident": "GB-0719", + "type": "small_airport", + "name": "Bridge Cottage Airstrip", + "latitude_deg": "53.6787", + "longitude_deg": "-1.1017", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Great Heck", + "scheduled_service": "no" + }, + { + "id": "333049", + "ident": "GB-0720", + "type": "heliport", + "name": "Newcastle City Heliport", + "latitude_deg": "54.9615", + "longitude_deg": "-1.6274", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Newcastle-upon-Tyne", + "scheduled_service": "no" + }, + { + "id": "333050", + "ident": "GB-0721", + "type": "small_airport", + "name": "Newton-on-Rawcliffe Airstrip", + "latitude_deg": "54.29", + "longitude_deg": "-0.7443", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333055", + "ident": "GB-0722", + "type": "small_airport", + "name": "Meonstoke Airstrip", + "latitude_deg": "50.97394", + "longitude_deg": "-1.147556", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333076", + "ident": "GB-0723", + "type": "small_airport", + "name": "Birchwood Lodge Airstrip", + "latitude_deg": "53.818", + "longitude_deg": "-1.0146", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "North Duffield", + "scheduled_service": "no" + }, + { + "id": "333077", + "ident": "GB-0724", + "type": "small_airport", + "name": "Newgate Farm Airstrip", + "latitude_deg": "54.3293", + "longitude_deg": "-0.6838", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Saltergate", + "scheduled_service": "no" + }, + { + "id": "333078", + "ident": "GB-0725", + "type": "small_airport", + "name": "Selby House Farm Airstrip", + "latitude_deg": "55.203059", + "longitude_deg": "-1.80046", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Stanton, Northumbria", + "scheduled_service": "no" + }, + { + "id": "333079", + "ident": "GB-0726", + "type": "small_airport", + "name": "Thornton Watlass Airstrip UL", + "latitude_deg": "54.2617", + "longitude_deg": "-1.6389", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333082", + "ident": "GB-0727", + "type": "closed", + "name": "Field House Farm Airstrip UL", + "latitude_deg": "54.8093", + "longitude_deg": "-1.4946", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "West Rainton", + "scheduled_service": "no" + }, + { + "id": "333083", + "ident": "GB-0728", + "type": "small_airport", + "name": "Greenhills Farm Airstrip", + "latitude_deg": "54.7482", + "longitude_deg": "-1.3914", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Wheatley Hill", + "scheduled_service": "no", + "keywords": "East Durham Microlights" + }, + { + "id": "333116", + "ident": "GB-0729", + "type": "small_airport", + "name": "Burton-Constable Airstrip", + "latitude_deg": "53.808811", + "longitude_deg": "-0.193634", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333146", + "ident": "GB-0730", + "type": "small_airport", + "name": "Ings Farm Airstrip", + "latitude_deg": "54.2049", + "longitude_deg": "-0.616", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Yedingham", + "scheduled_service": "no" + }, + { + "id": "333147", + "ident": "GB-0731", + "type": "small_airport", + "name": "Frandley House Airstrip", + "latitude_deg": "53.3047", + "longitude_deg": "-2.5442", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Frandley", + "scheduled_service": "no" + }, + { + "id": "333148", + "ident": "GB-0732", + "type": "small_airport", + "name": "Higher Barn Farm Airstrip", + "latitude_deg": "53.7451", + "longitude_deg": "-2.6059", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hoghton", + "scheduled_service": "no" + }, + { + "id": "333149", + "ident": "GB-0733", + "type": "small_airport", + "name": "Fern Farm Airstrip UL", + "latitude_deg": "53.2074", + "longitude_deg": "-2.2528", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Marton", + "scheduled_service": "no" + }, + { + "id": "333150", + "ident": "GB-0734", + "type": "small_airport", + "name": "Kenyon Hall Farm Airstrip", + "latitude_deg": "53.4542", + "longitude_deg": "-2.5813", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Warrington, Cheshire", + "scheduled_service": "no", + "home_link": "http://www.lancsaeroclub.co.uk/", + "keywords": "Lancashire Aero Club" + }, + { + "id": "333157", + "ident": "GB-0735", + "type": "heliport", + "name": "Wesham House Farm Heliport", + "latitude_deg": "53.798278", + "longitude_deg": "-2.886604", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "huey helicopters" + }, + { + "id": "333158", + "ident": "GB-0736", + "type": "small_airport", + "name": "Warrington Airstrip", + "latitude_deg": "53.4101", + "longitude_deg": "-2.5093", + "elevation_ft": "-1", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333159", + "ident": "GB-0737", + "type": "small_airport", + "name": "Ash House Farm Airstrip", + "latitude_deg": "53.1669", + "longitude_deg": "-2.56666", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Ashcroft", + "scheduled_service": "no" + }, + { + "id": "333198", + "ident": "GB-0738", + "type": "heliport", + "name": "Dunroaming Heliport", + "latitude_deg": "56.070928", + "longitude_deg": "-4.378363", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no", + "keywords": "Skyhook Helicopters,Stratharden House" + }, + { + "id": "333300", + "ident": "GB-0739", + "type": "small_airport", + "name": "Balado Park Airstrip UL", + "latitude_deg": "56.216752", + "longitude_deg": "-3.460264", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "333301", + "ident": "GB-0740", + "type": "small_airport", + "name": "Balgrummo Steading Airstrip", + "latitude_deg": "56.2178", + "longitude_deg": "-3.0207", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Bonnybank", + "scheduled_service": "no" + }, + { + "id": "333302", + "ident": "GB-0741", + "type": "small_airport", + "name": "Nethershields Farm Airstrip", + "latitude_deg": "55.712329", + "longitude_deg": "-4.075713", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Chapelton (Lanarkshire)", + "scheduled_service": "no" + }, + { + "id": "333306", + "ident": "GB-0742", + "type": "heliport", + "name": "Dalcross Heliport", + "latitude_deg": "57.542328", + "longitude_deg": "-4.068916", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "333308", + "ident": "GB-0743", + "type": "heliport", + "name": "Glasgow Clyde Heliport", + "latitude_deg": "55.86776", + "longitude_deg": "-4.33312", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Glasco", + "scheduled_service": "no" + }, + { + "id": "333476", + "ident": "GB-0744", + "type": "small_airport", + "name": "Cornbury House Airstrip", + "latitude_deg": "51.857548", + "longitude_deg": "-1.496929", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Charlbury", + "scheduled_service": "no" + }, + { + "id": "333333", + "ident": "GB-0745", + "type": "seaplane_base", + "name": "Cameron House Hotel Seaplane Base", + "latitude_deg": "56.014", + "longitude_deg": "-4.6059", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no", + "keywords": "Duck Bay" + }, + { + "id": "333334", + "ident": "GB-0746", + "type": "small_airport", + "name": "Shempston Farm Airstrip", + "latitude_deg": "57.6958", + "longitude_deg": "-3.3661", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "333336", + "ident": "GB-0747", + "type": "small_airport", + "name": "Broomhill Farm Airstrip", + "latitude_deg": "55.843928", + "longitude_deg": "-3.534551", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "West Calder", + "scheduled_service": "no" + }, + { + "id": "333354", + "ident": "GB-0748", + "type": "small_airport", + "name": "Hadfold Farm Airstrip UL", + "latitude_deg": "51.0022", + "longitude_deg": "-0.4606", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Adversane", + "scheduled_service": "no" + }, + { + "id": "333361", + "ident": "GB-0749", + "type": "small_airport", + "name": "Fridd Farm Airstrip", + "latitude_deg": "51.1423", + "longitude_deg": "0.7585", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bethersden", + "scheduled_service": "no" + }, + { + "id": "333384", + "ident": "GB-0750", + "type": "small_airport", + "name": "Bossington Airstrip", + "latitude_deg": "51.0766", + "longitude_deg": "-1.5389", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333385", + "ident": "GB-0751", + "type": "small_airport", + "name": "Bovingdon Airstrip", + "latitude_deg": "51.7281", + "longitude_deg": "-0.5474", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333388", + "ident": "GB-0752", + "type": "small_airport", + "name": "Cardington Airstrip", + "latitude_deg": "52.1061", + "longitude_deg": "-0.4171", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333389", + "ident": "GB-0753", + "type": "small_airport", + "name": "Hamilton Farm Airstrip", + "latitude_deg": "51.093609", + "longitude_deg": "0.88829", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333408", + "ident": "GB-0754", + "type": "small_airport", + "name": "Easter Nether Cabra Farm Airstrip", + "latitude_deg": "57.560563", + "longitude_deg": "-2.0301", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "333409", + "ident": "GB-0755", + "type": "small_airport", + "name": "Hill Farm Airstrip", + "latitude_deg": "53.840338", + "longitude_deg": "-0.211895", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333426", + "ident": "GB-0756", + "type": "small_airport", + "name": "Cheddington Airstrip", + "latitude_deg": "51.8328", + "longitude_deg": "-0.6704", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Marsworth" + }, + { + "id": "333427", + "ident": "GB-0757", + "type": "small_airport", + "name": "Chelworth House Airstrip", + "latitude_deg": "51.0493", + "longitude_deg": "0.0142", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Chelwood Gate", + "scheduled_service": "no" + }, + { + "id": "333441", + "ident": "GB-0758", + "type": "small_airport", + "name": "Rushett Farm", + "latitude_deg": "51.3364", + "longitude_deg": "-0.3144", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Chessington (Surrey)", + "scheduled_service": "no" + }, + { + "id": "333504", + "ident": "GB-0759", + "type": "small_airport", + "name": "Danehill Airstrip", + "latitude_deg": "51.0264", + "longitude_deg": "-0.0121", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333505", + "ident": "GB-0760", + "type": "small_airport", + "name": "Hill Farm Airstrip", + "latitude_deg": "50.9343", + "longitude_deg": "-1.2658", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Durley", + "scheduled_service": "no" + }, + { + "id": "333524", + "ident": "GB-0761", + "type": "small_airport", + "name": "Manor Farm Airstrip", + "latitude_deg": "51.4957", + "longitude_deg": "-1.4822", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "East Garston", + "scheduled_service": "no" + }, + { + "id": "333526", + "ident": "GB-0762", + "type": "small_airport", + "name": "Edington Airstrip", + "latitude_deg": "51.267796", + "longitude_deg": "-2.101908", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Edington (Wilts)", + "scheduled_service": "no" + }, + { + "id": "333528", + "ident": "GB-0763", + "type": "small_airport", + "name": "Farley Farm Airstrip", + "latitude_deg": "51.04818", + "longitude_deg": "-1.444627", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Farley Chamberlain++", + "scheduled_service": "no" + }, + { + "id": "333554", + "ident": "GB-0764", + "type": "small_airport", + "name": "Hawksview Airstrip", + "latitude_deg": "53.342349", + "longitude_deg": "-2.52458", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333555", + "ident": "GB-0765", + "type": "small_airport", + "name": "Folly Farm Airstrip", + "latitude_deg": "50.904454", + "longitude_deg": "-0.228803", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Fulking", + "scheduled_service": "no" + }, + { + "id": "333568", + "ident": "GB-0766", + "type": "small_airport", + "name": "Baynard's Park Airstrip", + "latitude_deg": "51.118295", + "longitude_deg": "-0.442193", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333569", + "ident": "GB-0767", + "type": "heliport", + "name": "Gamlingay Helicopter Strip", + "latitude_deg": "52.1482", + "longitude_deg": "-0.2141", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Gamlingay", + "scheduled_service": "no", + "keywords": "Five Acres" + }, + { + "id": "333570", + "ident": "GB-0768", + "type": "small_airport", + "name": "Landead Farm Airstrip", + "latitude_deg": "51.649", + "longitude_deg": "-1.3722", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Garford", + "scheduled_service": "no" + }, + { + "id": "333584", + "ident": "GB-0769", + "type": "small_airport", + "name": "Manor House Farm Airstrip", + "latitude_deg": "51.1768", + "longitude_deg": "-1.6216", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Grateley (Hamps)", + "scheduled_service": "no" + }, + { + "id": "333585", + "ident": "GB-0770", + "type": "small_airport", + "name": "Armshold Farm Airstrip", + "latitude_deg": "52.1746", + "longitude_deg": "-0.0197", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Great Eversden, Cambridgeshire", + "scheduled_service": "no" + }, + { + "id": "335830", + "ident": "GB-0771", + "type": "small_airport", + "name": "Valley Farm Airstrip", + "latitude_deg": "52.76239", + "longitude_deg": "-2.12734", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Dunston Heath", + "scheduled_service": "no" + }, + { + "id": "333587", + "ident": "GB-0772", + "type": "small_airport", + "name": "Holly Hill Farm Airstrip", + "latitude_deg": "52.806", + "longitude_deg": "0.9585", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333592", + "ident": "GB-0773", + "type": "small_airport", + "name": "White Fen Farm Airstrip", + "latitude_deg": "52.51564", + "longitude_deg": "-0.005399", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333593", + "ident": "GB-0774", + "type": "small_airport", + "name": "Haddenham Backstable Airstrip", + "latitude_deg": "51.772", + "longitude_deg": "-0.9101", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Haddenham (Bucks)", + "scheduled_service": "no" + }, + { + "id": "333594", + "ident": "GB-0775", + "type": "small_airport", + "name": "Manor Farm (Haddenham) Airstrip", + "latitude_deg": "51.7634", + "longitude_deg": "-0.9381", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Haddenham (Bucks)", + "scheduled_service": "no" + }, + { + "id": "333595", + "ident": "GB-0776", + "type": "small_airport", + "name": "Furze Farm Airstrip", + "latitude_deg": "52.5275", + "longitude_deg": "-0.3528", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Haddon (Cambs)", + "scheduled_service": "no" + }, + { + "id": "333596", + "ident": "GB-0777", + "type": "small_airport", + "name": "Palmers Farm Airstrip", + "latitude_deg": "50.8735", + "longitude_deg": "0.2303", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hailsham (Sussex)", + "scheduled_service": "no" + }, + { + "id": "333601", + "ident": "GB-0778", + "type": "small_airport", + "name": "Hill Top Farm Airstrip", + "latitude_deg": "51.141744", + "longitude_deg": "-0.621929", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hambledon", + "scheduled_service": "no" + }, + { + "id": "333604", + "ident": "GB-0779", + "type": "small_airport", + "name": "Haw Farm Airstrip", + "latitude_deg": "51.491055", + "longitude_deg": "-1.2141", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333629", + "ident": "GB-0780", + "type": "small_airport", + "name": "Nut Tree Farm Airstrip", + "latitude_deg": "52.447065", + "longitude_deg": "1.300228", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hardwick", + "scheduled_service": "no" + }, + { + "id": "333633", + "ident": "GB-0781", + "type": "small_airport", + "name": "Harpsden Park Airstrip", + "latitude_deg": "51.5197", + "longitude_deg": "-0.8969", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333663", + "ident": "GB-0782", + "type": "small_airport", + "name": "East Haxted Farm Airstrip", + "latitude_deg": "51.187884", + "longitude_deg": "0.038667", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333667", + "ident": "GB-0783", + "type": "small_airport", + "name": "Pond Farm Airstrip", + "latitude_deg": "52.562552", + "longitude_deg": "1.453457", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333680", + "ident": "GB-0784", + "type": "small_airport", + "name": "Blue Tile Farm Airstrip", + "latitude_deg": "52.8276", + "longitude_deg": "1.0037", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hindolveston", + "scheduled_service": "no" + }, + { + "id": "333685", + "ident": "GB-0785", + "type": "small_airport", + "name": "Oakland Farm Airstrip", + "latitude_deg": "51.04", + "longitude_deg": "-0.3309", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Horsham (Sussex)", + "scheduled_service": "no" + }, + { + "id": "333712", + "ident": "GB-0786", + "type": "heliport", + "name": "Hulcote Helimech", + "latitude_deg": "52.0312", + "longitude_deg": "-0.6143", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hulcote", + "scheduled_service": "no", + "home_link": "http://www.helimech.co.uk/", + "keywords": "Brooke Farm" + }, + { + "id": "333713", + "ident": "GB-0787", + "type": "small_airport", + "name": "Shrove Furlong Farm Airstrip", + "latitude_deg": "51.7475", + "longitude_deg": "-0.9084", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Kingsey", + "scheduled_service": "no" + }, + { + "id": "333714", + "ident": "GB-0788", + "type": "small_airport", + "name": "Bensons Farm Airstrip", + "latitude_deg": "51.5937", + "longitude_deg": "0.4445", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Laindon", + "scheduled_service": "no", + "keywords": "Barleylands" + }, + { + "id": "333726", + "ident": "GB-0789", + "type": "small_airport", + "name": "Langham Airstrip", + "latitude_deg": "52.9355", + "longitude_deg": "0.9545", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Langham (Norfolk)", + "scheduled_service": "no" + }, + { + "id": "333727", + "ident": "GB-0790", + "type": "small_airport", + "name": "Batchley Farm Airstrip", + "latitude_deg": "50.75577", + "longitude_deg": "-1.59035", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hordle (Hampshire)", + "scheduled_service": "no" + }, + { + "id": "333728", + "ident": "GB-0791", + "type": "small_airport", + "name": "Sutton Airstrip", + "latitude_deg": "50.923813", + "longitude_deg": "-0.614376", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Sutton (Sussex)", + "scheduled_service": "no" + }, + { + "id": "333729", + "ident": "GB-0792", + "type": "small_airport", + "name": "Welcross Farm Airstrip", + "latitude_deg": "51.0589", + "longitude_deg": "-0.3791", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333732", + "ident": "GB-0793", + "type": "heliport", + "name": "Field Farm Helistrip", + "latitude_deg": "51.913581", + "longitude_deg": "-1.098268", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Launton", + "scheduled_service": "no", + "home_link": "https://freshair-uk.com", + "keywords": "Fresh Air" + }, + { + "id": "333735", + "ident": "GB-0794", + "type": "small_airport", + "name": "Ventfield Farm Airstrip", + "latitude_deg": "51.80892", + "longitude_deg": "-1.156054", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Horton-cum-Studley", + "scheduled_service": "no" + }, + { + "id": "333736", + "ident": "GB-0795", + "type": "small_airport", + "name": "Wisbridge Farm Airstrip", + "latitude_deg": "51.999414", + "longitude_deg": "-0.009313", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333745", + "ident": "GB-0796", + "type": "small_airport", + "name": "Lavenham Airstrip", + "latitude_deg": "52.132909", + "longitude_deg": "0.773785", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333746", + "ident": "GB-0797", + "type": "small_airport", + "name": "Retreat Farm Airstrip", + "latitude_deg": "51.746416", + "longitude_deg": "0.596738", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333760", + "ident": "GB-0798", + "type": "small_airport", + "name": "Radley Farm Airstrip", + "latitude_deg": "51.435778", + "longitude_deg": "-1.465924", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333761", + "ident": "GB-0799", + "type": "small_airport", + "name": "Rankins Farm", + "latitude_deg": "51.2052", + "longitude_deg": "0.5102", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Linton (Kent)", + "scheduled_service": "no" + }, + { + "id": "333767", + "ident": "GB-0800", + "type": "small_airport", + "name": "Bedwell Hey Farm Airstrip", + "latitude_deg": "52.3728", + "longitude_deg": "0.2249", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Little Thetford", + "scheduled_service": "no" + }, + { + "id": "333768", + "ident": "GB-0801", + "type": "small_airport", + "name": "Baileys Fram Airstrip", + "latitude_deg": "51.7789", + "longitude_deg": "-1.0192", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Long Crendon (Bucks)", + "scheduled_service": "no", + "home_link": "http://www.zulu-glasstek.co.uk/", + "keywords": "Zulu Glasstek" + }, + { + "id": "333772", + "ident": "GB-0802", + "type": "small_airport", + "name": "Roughay Farm Airfield", + "latitude_deg": "50.988908", + "longitude_deg": "-1.253471", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Lower Upham", + "scheduled_service": "no" + }, + { + "id": "333779", + "ident": "GB-0803", + "type": "small_airport", + "name": "Inglenook Farm Airstrip", + "latitude_deg": "51.1856", + "longitude_deg": "1.3156", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Maydensole", + "scheduled_service": "no" + }, + { + "id": "333803", + "ident": "GB-0804", + "type": "small_airport", + "name": "Grove Farm Airstrip", + "latitude_deg": "52.3871", + "longitude_deg": "1.2561", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Needham", + "scheduled_service": "no" + }, + { + "id": "333816", + "ident": "GB-0805", + "type": "small_airport", + "name": "Newton Hall Farm Airstrip", + "latitude_deg": "52.03433", + "longitude_deg": "0.804234", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333817", + "ident": "GB-0806", + "type": "small_airport", + "name": "Bere Farm Airstrip", + "latitude_deg": "50.8848", + "longitude_deg": "-1.1571", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "North Boarhunt (Hamps)", + "scheduled_service": "no" + }, + { + "id": "333818", + "ident": "GB-0807", + "type": "small_airport", + "name": "Elmham Lodge Airstrip", + "latitude_deg": "52.744866", + "longitude_deg": "0.933151", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Foxburrow Farm" + }, + { + "id": "333819", + "ident": "GB-0808", + "type": "small_airport", + "name": "New Lane Farm Airstrip", + "latitude_deg": "52.77046", + "longitude_deg": "0.93137", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "North Elmham (Norfolk)", + "scheduled_service": "no" + }, + { + "id": "333820", + "ident": "GB-0809", + "type": "small_airport", + "name": "Little Haugh Hall Private Airstrip", + "latitude_deg": "52.2603", + "longitude_deg": "0.8502", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Norton", + "scheduled_service": "no" + }, + { + "id": "333821", + "ident": "GB-0810", + "type": "small_airport", + "name": "Ivy Farm Airstrip", + "latitude_deg": "52.91066", + "longitude_deg": "1.34007", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Overstrand (Norfolk)", + "scheduled_service": "no" + }, + { + "id": "333822", + "ident": "GB-0811", + "type": "small_airport", + "name": "South Longwood Farm Airstrip", + "latitude_deg": "51.0189", + "longitude_deg": "-1.2641", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Owslebury", + "scheduled_service": "no" + }, + { + "id": "333853", + "ident": "GB-0812", + "type": "small_airport", + "name": "Piltdown Airstrip", + "latitude_deg": "50.9814", + "longitude_deg": "0.0425", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333859", + "ident": "GB-0813", + "type": "small_airport", + "name": "Podington Airstrip", + "latitude_deg": "52.228246", + "longitude_deg": "-0.605278", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333877", + "ident": "GB-0814", + "type": "small_airport", + "name": "Grove Farm Airstrip", + "latitude_deg": "52.5", + "longitude_deg": "1.5398", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Raveningham", + "scheduled_service": "no" + }, + { + "id": "333878", + "ident": "GB-0815", + "type": "small_airport", + "name": "Kitty Hawk Farm Airstrip", + "latitude_deg": "50.8693", + "longitude_deg": "0.1166", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Ripe", + "scheduled_service": "no" + }, + { + "id": "333903", + "ident": "GB-0816", + "type": "small_airport", + "name": "Notley Green Airstrip", + "latitude_deg": "51.9934", + "longitude_deg": "-0.0637", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Sandon", + "scheduled_service": "no" + }, + { + "id": "333932", + "ident": "GB-0817", + "type": "small_airport", + "name": "Church Farm Airstrip", + "latitude_deg": "52.4532", + "longitude_deg": "1.5019", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Shipmeadow (Suffolk)", + "scheduled_service": "no" + }, + { + "id": "333943", + "ident": "GB-0818", + "type": "small_airport", + "name": "North Honer Farm Airstrip", + "latitude_deg": "50.785183", + "longitude_deg": "-0.752521", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333950", + "ident": "GB-0819", + "type": "small_airport", + "name": "Wildings Farm Airstrip", + "latitude_deg": "52.029499", + "longitude_deg": "0.448358", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Steeple Bumpstead", + "scheduled_service": "no" + }, + { + "id": "333960", + "ident": "GB-0820", + "type": "small_airport", + "name": "Fisherwick Airfield", + "latitude_deg": "52.672908", + "longitude_deg": "-1.723502", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Fisherwick (Staffordshire)", + "scheduled_service": "no", + "home_link": "https://microlightschool.org.uk" + }, + { + "id": "333968", + "ident": "GB-0821", + "type": "small_airport", + "name": "Lodge Farm Airstrip", + "latitude_deg": "51.7965", + "longitude_deg": "1.1059", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "St. Osyth (Essex)", + "scheduled_service": "no" + }, + { + "id": "333972", + "ident": "GB-0822", + "type": "small_airport", + "name": "Great Friars Thornes Farm Airstrip", + "latitude_deg": "52.658476", + "longitude_deg": "0.64167", + "elevation_ft": "-3", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Swaffham (Norfolk)", + "scheduled_service": "no" + }, + { + "id": "333976", + "ident": "GB-0823", + "type": "small_airport", + "name": "Pentlow Airstrip", + "latitude_deg": "52.077436", + "longitude_deg": "0.623796", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Pentlow (Essex)", + "scheduled_service": "no" + }, + { + "id": "333978", + "ident": "GB-0824", + "type": "small_airport", + "name": "Gerpins Farm Airstrip", + "latitude_deg": "51.5313", + "longitude_deg": "0.231", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Upminster", + "scheduled_service": "no" + }, + { + "id": "333980", + "ident": "GB-0825", + "type": "small_airport", + "name": "Frieslands Farm Airstrip", + "latitude_deg": "50.895", + "longitude_deg": "-0.4045", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Washington (Sussex)", + "scheduled_service": "no" + }, + { + "id": "333983", + "ident": "GB-0826", + "type": "small_airport", + "name": "Berry Grove Farm Airstrip", + "latitude_deg": "51.052914", + "longitude_deg": "-0.896695", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Liss", + "scheduled_service": "no" + }, + { + "id": "333984", + "ident": "GB-0827", + "type": "small_airport", + "name": "West Tisted Airfield", + "latitude_deg": "51.0474", + "longitude_deg": "-1.0567", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "333991", + "ident": "GB-0828", + "type": "small_airport", + "name": "Loadman Farm Airstrip", + "latitude_deg": "54.941689", + "longitude_deg": "-2.143493", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hexham (Northumbria)", + "scheduled_service": "no" + }, + { + "id": "333999", + "ident": "GB-0829", + "type": "small_airport", + "name": "Whitehall Farm Airstrip", + "latitude_deg": "51.9682", + "longitude_deg": "0.5224", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Wethersfield (Essex)", + "scheduled_service": "no" + }, + { + "id": "334000", + "ident": "GB-0830", + "type": "small_airport", + "name": "Stockbridge Airstrip", + "latitude_deg": "50.6043", + "longitude_deg": "-1.2709", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Whitwell (IoW)", + "scheduled_service": "no" + }, + { + "id": "334009", + "ident": "GB-0831", + "type": "small_airport", + "name": "Coldharbour Farm Airstrip", + "latitude_deg": "52.3077", + "longitude_deg": "0.0404", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Willingham (Cambs)", + "scheduled_service": "no" + }, + { + "id": "334010", + "ident": "GB-0832", + "type": "small_airport", + "name": "Dalkeith Farm Airstrip", + "latitude_deg": "52.4151", + "longitude_deg": "-0.3886", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Winwick", + "scheduled_service": "no" + }, + { + "id": "334011", + "ident": "GB-0833", + "type": "small_airport", + "name": "Valley Farm Airstrip", + "latitude_deg": "52.4138", + "longitude_deg": "-0.3647", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Winwick", + "scheduled_service": "no" + }, + { + "id": "334025", + "ident": "GB-0834", + "type": "small_airport", + "name": "Little Engeham Farm Airstrip", + "latitude_deg": "51.1003", + "longitude_deg": "0.7789", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Woodchurch (Kent)", + "scheduled_service": "no" + }, + { + "id": "334026", + "ident": "GB-0835", + "type": "small_airport", + "name": "Little Robhurst Airstrip", + "latitude_deg": "51.079836", + "longitude_deg": "0.740408", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Woodchurch (Kent)", + "scheduled_service": "no" + }, + { + "id": "334027", + "ident": "GB-0836", + "type": "small_airport", + "name": "Fir Grove Airstrip", + "latitude_deg": "52.5506", + "longitude_deg": "1.1736", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Wreningham", + "scheduled_service": "no" + }, + { + "id": "334028", + "ident": "GB-0837", + "type": "small_airport", + "name": "Lamberhurst Farm Airstrip", + "latitude_deg": "51.321836", + "longitude_deg": "0.996376", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Yorkletts (Kent)", + "scheduled_service": "no" + }, + { + "id": "334043", + "ident": "GB-0838", + "type": "heliport", + "name": "Almondsbury Helicopter Base", + "latitude_deg": "51.5519", + "longitude_deg": "-2.5577", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "334056", + "ident": "GB-0839", + "type": "small_airport", + "name": "Bowden Farm Airstrip", + "latitude_deg": "51.3619", + "longitude_deg": "-1.6873", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Burbage", + "scheduled_service": "no" + }, + { + "id": "334057", + "ident": "GB-0840", + "type": "small_airport", + "name": "Orange Grove Barn Airstrip", + "latitude_deg": "51.6677", + "longitude_deg": "-2.1962", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Chavenage Green", + "scheduled_service": "no" + }, + { + "id": "334128", + "ident": "GB-0841", + "type": "small_airport", + "name": "Home Farm Airstrip", + "latitude_deg": "52.0533", + "longitude_deg": "-1.729", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Ebrington (Glos)", + "scheduled_service": "no" + }, + { + "id": "334129", + "ident": "GB-0842", + "type": "small_airport", + "name": "Manor Farm Airstrip", + "latitude_deg": "51.09764", + "longitude_deg": "-1.969303", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Dinton (Wilts)", + "scheduled_service": "no" + }, + { + "id": "334150", + "ident": "GB-0843", + "type": "small_airport", + "name": "Westacott Farm Airstrip", + "latitude_deg": "50.8488", + "longitude_deg": "-3.8699", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Coldridge", + "scheduled_service": "no" + }, + { + "id": "334151", + "ident": "GB-0844", + "type": "small_airport", + "name": "New Farm Airstrip", + "latitude_deg": "51.391", + "longitude_deg": "-2.677", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Felton", + "scheduled_service": "no" + }, + { + "id": "334211", + "ident": "GB-0845", + "type": "small_airport", + "name": "Halesland Glider Field", + "latitude_deg": "51.262", + "longitude_deg": "-2.7319", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Mendip", + "scheduled_service": "no", + "home_link": "http://www.mendipgliding.co.uk/" + }, + { + "id": "334212", + "ident": "GB-0846", + "type": "small_airport", + "name": "Hawling Manor Farm Airstrip", + "latitude_deg": "51.9036", + "longitude_deg": "-1.9144", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "334215", + "ident": "GB-0847", + "type": "small_airport", + "name": "Langport Airstrip", + "latitude_deg": "51.0789", + "longitude_deg": "-2.8269", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "High Ham", + "scheduled_service": "no" + }, + { + "id": "334254", + "ident": "GB-0848", + "type": "small_airport", + "name": "Garston Farm Airstrip", + "latitude_deg": "51.4606", + "longitude_deg": "-2.3012", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Marshfield", + "scheduled_service": "no" + }, + { + "id": "334266", + "ident": "GB-0849", + "type": "small_airport", + "name": "Oldbury on Severn Airstrip", + "latitude_deg": "51.6308", + "longitude_deg": "-2.5593", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Oldbury on Severn (Glos)", + "scheduled_service": "no" + }, + { + "id": "334267", + "ident": "GB-0850", + "type": "small_airport", + "name": "Middlegate Farm Airstrip", + "latitude_deg": "51.0621", + "longitude_deg": "-2.7969", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Pitney (Somerset)", + "scheduled_service": "no" + }, + { + "id": "334285", + "ident": "GB-0851", + "type": "small_airport", + "name": "South Cerney Airfield", + "latitude_deg": "51.6872", + "longitude_deg": "-1.9204", + "elevation_ft": "364", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "South Cerney (Glos)", + "scheduled_service": "no", + "gps_code": "EGCY", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_South_Cerney", + "keywords": "RAF South Cerney, Duke of Gloucester Barracks" + }, + { + "id": "334287", + "ident": "GB-0852", + "type": "small_airport", + "name": "South Wraxall private Airstrip", + "latitude_deg": "51.3853", + "longitude_deg": "-2.255", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "South Wraxall (Wiltshire)", + "scheduled_service": "no" + }, + { + "id": "334289", + "ident": "GB-0853", + "type": "small_airport", + "name": "Bath 'Charmy Down' airstrip", + "latitude_deg": "51.4266", + "longitude_deg": "-2.3511", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Charmy Down", + "scheduled_service": "no" + }, + { + "id": "334290", + "ident": "GB-0854", + "type": "small_airport", + "name": "Great House Farm Airstrip", + "latitude_deg": "50.983593", + "longitude_deg": "-2.259858", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Stour Row (Dorset)", + "scheduled_service": "no" + }, + { + "id": "334292", + "ident": "GB-0855", + "type": "small_airport", + "name": "Lotmead Farm Airstrip", + "latitude_deg": "51.57274", + "longitude_deg": "-1.71289", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Wanborough (Wilts)", + "scheduled_service": "no" + }, + { + "id": "334301", + "ident": "GB-0856", + "type": "heliport", + "name": "Wiltshire Air Ambulance", + "latitude_deg": "51.35198", + "longitude_deg": "-2.14116", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "334304", + "ident": "GB-0857", + "type": "small_airport", + "name": "Brookside Farm Private Airstrip", + "latitude_deg": "51.177984", + "longitude_deg": "-3.527255", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Wootton Courtenay", + "scheduled_service": "no" + }, + { + "id": "334325", + "ident": "GB-0858", + "type": "small_airport", + "name": "Upfield Farm Airstrip", + "latitude_deg": "51.5516", + "longitude_deg": "-2.8917", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Whitson", + "scheduled_service": "no" + }, + { + "id": "334353", + "ident": "GB-0859", + "type": "small_airport", + "name": "Hinderclay Meadows Glider Field", + "latitude_deg": "52.344475", + "longitude_deg": "0.975893", + "elevation_ft": "100", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "https://suffolksoaring.com/airfield-information" + }, + { + "id": "334354", + "ident": "GB-0860", + "type": "small_airport", + "name": "Kimberley Hall Airstrip", + "latitude_deg": "52.59823", + "longitude_deg": "1.09269", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "334359", + "ident": "GB-0861", + "type": "heliport", + "name": "Infantry Battle School Helicopter Base", + "latitude_deg": "51.942783", + "longitude_deg": "-3.3601", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Brecon (Powys)", + "scheduled_service": "no" + }, + { + "id": "334381", + "ident": "GB-0862", + "type": "heliport", + "name": "Hirta Heliport", + "latitude_deg": "57.810266", + "longitude_deg": "-8.571737", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "St. Kilda", + "scheduled_service": "no" + }, + { + "id": "334394", + "ident": "GB-0863", + "type": "small_airport", + "name": "Llangarron Private Airstrip", + "latitude_deg": "51.883035", + "longitude_deg": "-2.699869", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no" + }, + { + "id": "334708", + "ident": "GB-0864", + "type": "small_airport", + "name": "Hatchgate Farm Airstrip", + "latitude_deg": "51.341149", + "longitude_deg": "-0.924697", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "334826", + "ident": "GB-0865", + "type": "small_airport", + "name": "Grange Farm Private Airstrip", + "latitude_deg": "53.194762", + "longitude_deg": "-0.809994", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Grassthorpe (Newark)", + "scheduled_service": "no" + }, + { + "id": "349741", + "ident": "GB-0866", + "type": "small_airport", + "name": "Blair Drummond Private Airstrip", + "latitude_deg": "56.15093", + "longitude_deg": "-4.04451", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "334939", + "ident": "GB-0867", + "type": "small_airport", + "name": "Kylarrick House Airstrip", + "latitude_deg": "57.817058", + "longitude_deg": "-4.174075", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Edderton", + "scheduled_service": "no" + }, + { + "id": "334940", + "ident": "GB-0868", + "type": "small_airport", + "name": "Hollym West", + "latitude_deg": "53.711034", + "longitude_deg": "0.036907", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "334994", + "ident": "GB-0869", + "type": "small_airport", + "name": "Hermitage Airstrip", + "latitude_deg": "50.86621", + "longitude_deg": "-2.48844", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Sherborne", + "scheduled_service": "no" + }, + { + "id": "335043", + "ident": "GB-0870", + "type": "small_airport", + "name": "Mosside Farm Airstrip", + "latitude_deg": "55.741982", + "longitude_deg": "-3.810046", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "335081", + "ident": "GB-0871", + "type": "small_airport", + "name": "Deptford Airstrip", + "latitude_deg": "51.1476", + "longitude_deg": "-1.971", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "335082", + "ident": "GB-0872", + "type": "small_airport", + "name": "Deptford 'Farm' Airstrip", + "latitude_deg": "51.16246", + "longitude_deg": "-1.97636", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Deptford (Wilts)", + "scheduled_service": "no" + }, + { + "id": "335113", + "ident": "GB-0873", + "type": "small_airport", + "name": "Coetir Bach Farm Airstrip", + "latitude_deg": "51.824692", + "longitude_deg": "-4.082623", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Cefneithin, Maesybont, Carmarthenshire", + "scheduled_service": "no" + }, + { + "id": "335129", + "ident": "GB-0874", + "type": "small_airport", + "name": "Burdon Head Farm Airstrip", + "latitude_deg": "53.88781", + "longitude_deg": "-1.55512", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "335130", + "ident": "GB-0875", + "type": "small_airport", + "name": "Curry Rivel Airstrip", + "latitude_deg": "51.013215", + "longitude_deg": "-2.883267", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "335232", + "ident": "GB-0876", + "type": "small_airport", + "name": "Buttermilk Hall Farm", + "latitude_deg": "52.15371", + "longitude_deg": "-0.92815", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Blisworth", + "scheduled_service": "no", + "keywords": "Stoke Bruerne" + }, + { + "id": "335269", + "ident": "GB-0877", + "type": "small_airport", + "name": "The Moy Airstrip", + "latitude_deg": "54.43514", + "longitude_deg": "-6.67659", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Charlemont, Co Armagh", + "scheduled_service": "no" + }, + { + "id": "335279", + "ident": "GB-0878", + "type": "small_airport", + "name": "Coalisland Airstrip", + "latitude_deg": "54.53012", + "longitude_deg": "-6.65808", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "scheduled_service": "no" + }, + { + "id": "335369", + "ident": "GB-0879", + "type": "small_airport", + "name": "Slemish Airfield", + "latitude_deg": "54.902845", + "longitude_deg": "-6.135285", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Buckna (Co Antrim)", + "scheduled_service": "no" + }, + { + "id": "335386", + "ident": "GB-0880", + "type": "heliport", + "name": "Whitehouse Farm Helicopter Base", + "latitude_deg": "50.881905", + "longitude_deg": "-2.859213", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Purtington-Chard (Somerset)", + "scheduled_service": "no", + "home_link": "https://www.historichelicopters.com" + }, + { + "id": "335453", + "ident": "GB-0881", + "type": "small_airport", + "name": "New Farm Airfield", + "latitude_deg": "52.175419", + "longitude_deg": "-0.830905", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Piddington", + "scheduled_service": "no" + }, + { + "id": "335479", + "ident": "GB-0882", + "type": "closed", + "name": "RNAS Crail", + "latitude_deg": "56.268619", + "longitude_deg": "-2.606592", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Anstruther, Fife", + "scheduled_service": "no" + }, + { + "id": "335485", + "ident": "GB-0883", + "type": "small_airport", + "name": "Longford Airstrip", + "latitude_deg": "52.892833", + "longitude_deg": "-2.531167", + "elevation_ft": "275", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "335486", + "ident": "GB-0884", + "type": "small_airport", + "name": "Tiffenden Airstrip", + "latitude_deg": "51.094475", + "longitude_deg": "0.740868", + "elevation_ft": "106", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "335487", + "ident": "GB-0885", + "type": "small_airport", + "name": "Mullaglass", + "latitude_deg": "54.216441", + "longitude_deg": "-6.401272", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "scheduled_service": "no", + "keywords": "Mullaghglass" + }, + { + "id": "335507", + "ident": "GB-0886", + "type": "small_airport", + "name": "Batch End Farm Airstrip", + "latitude_deg": "51.2975", + "longitude_deg": "-2.95579", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "335631", + "ident": "GB-0887", + "type": "closed", + "name": "Newhall Mains Airfield", + "latitude_deg": "57.661186", + "longitude_deg": "-4.192057", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no", + "home_link": "https://www.newhallmains.com/text-page/airfield" + }, + { + "id": "307912", + "ident": "GB-0888", + "type": "closed", + "name": "Heston Aerodrome", + "latitude_deg": "51.491815", + "longitude_deg": "-0.393909", + "elevation_ft": "105", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "London", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Heston_Aerodrome", + "keywords": "RAF Heston, Heston Air Park, Heston Airport" + }, + { + "id": "335860", + "ident": "GB-0889", + "type": "small_airport", + "name": "Grove Field Airstrip", + "latitude_deg": "52.229", + "longitude_deg": "-1.61853", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "335870", + "ident": "GB-0890", + "type": "small_airport", + "name": "Wickhambrook Airstrip", + "latitude_deg": "52.175037", + "longitude_deg": "0.536485", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "335880", + "ident": "GB-0891", + "type": "small_airport", + "name": "Rydinghurst Farm Airstrip", + "latitude_deg": "51.146765", + "longitude_deg": "-0.525563", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "335892", + "ident": "GB-0892", + "type": "small_airport", + "name": "Whilton Airstrip", + "latitude_deg": "52.275223", + "longitude_deg": "-1.075908", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "335895", + "ident": "GB-0893", + "type": "small_airport", + "name": "Rhoshirwaun", + "latitude_deg": "52.84753", + "longitude_deg": "-4.68153", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no", + "keywords": "Trefgraig" + }, + { + "id": "335896", + "ident": "GB-0894", + "type": "small_airport", + "name": "Dinas Farm Private Airstrip", + "latitude_deg": "52.897419", + "longitude_deg": "-4.572135", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Dinas", + "scheduled_service": "no" + }, + { + "id": "335902", + "ident": "GB-0895", + "type": "small_airport", + "name": "Polpidnick Farm Airstrip", + "latitude_deg": "50.0585", + "longitude_deg": "-5.12772", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Helston, Cornwall", + "scheduled_service": "no" + }, + { + "id": "335903", + "ident": "GB-0896", + "type": "small_airport", + "name": "Wateringhill Farm Airstrip", + "latitude_deg": "52.51163", + "longitude_deg": "0.18349", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "335993", + "ident": "GB-0897", + "type": "small_airport", + "name": "Wolves Hall Airstrip", + "latitude_deg": "51.886226", + "longitude_deg": "1.126405", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Tendring" + }, + { + "id": "336070", + "ident": "GB-0898", + "type": "small_airport", + "name": "Trench Farm Airstrip", + "latitude_deg": "52.95193", + "longitude_deg": "-2.92244", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "336128", + "ident": "GB-0899", + "type": "small_airport", + "name": "Spite Hall Farm Airstrip", + "latitude_deg": "54.52297", + "longitude_deg": "-1.11655", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Pinchinthorpe", + "scheduled_service": "no" + }, + { + "id": "336129", + "ident": "GB-0900", + "type": "small_airport", + "name": "Wathstones Farm Airstrip", + "latitude_deg": "54.28966", + "longitude_deg": "-1.44706", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Newby Wiske", + "scheduled_service": "no" + }, + { + "id": "336151", + "ident": "GB-0901", + "type": "small_airport", + "name": "Park Farm Airstrip", + "latitude_deg": "51.62191", + "longitude_deg": "-2.98625", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Newport (South Wales)", + "scheduled_service": "no", + "keywords": "Pen-y-Parc" + }, + { + "id": "336163", + "ident": "GB-0902", + "type": "small_airport", + "name": "Siege Cross Farm Airstrip", + "latitude_deg": "51.40496", + "longitude_deg": "-1.23323", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Thatcham", + "scheduled_service": "no" + }, + { + "id": "336164", + "ident": "GB-0903", + "type": "small_airport", + "name": "Colthrop Manor Farm Airstrip", + "latitude_deg": "51.404346", + "longitude_deg": "-1.228065", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "336166", + "ident": "GB-0904", + "type": "small_airport", + "name": "New Grimmet Farm Airstrip", + "latitude_deg": "55.361009", + "longitude_deg": "-4.643065", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "336168", + "ident": "GB-0905", + "type": "small_airport", + "name": "Tracy Island Airstrip", + "latitude_deg": "50.86442", + "longitude_deg": "-2.91118", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "336169", + "ident": "GB-0906", + "type": "small_airport", + "name": "Netherley Private Airstrip", + "latitude_deg": "57.05228", + "longitude_deg": "-2.2652", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Aberdeen", + "scheduled_service": "no" + }, + { + "id": "336170", + "ident": "GB-0907", + "type": "small_airport", + "name": "Ravensworth Private Airstrip", + "latitude_deg": "54.46977", + "longitude_deg": "-1.79088", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "336189", + "ident": "GB-0908", + "type": "closed", + "name": "Tockwith Airfield", + "latitude_deg": "53.96191", + "longitude_deg": "-1.29964", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Marston_Moor" + }, + { + "id": "336334", + "ident": "GB-0909", + "type": "small_airport", + "name": "Laurel Farm Airstrip", + "latitude_deg": "52.37791", + "longitude_deg": "1.30868", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Weybread, Suffolk", + "scheduled_service": "no" + }, + { + "id": "336335", + "ident": "GB-0910", + "type": "small_airport", + "name": "Hopkiln Farm Airstrip", + "latitude_deg": "51.41115", + "longitude_deg": "-0.9976", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "336351", + "ident": "GB-0911", + "type": "small_airport", + "name": "Horsey Island Airfield", + "latitude_deg": "51.876289", + "longitude_deg": "1.23064", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Thorpe-le-Soken, Essex", + "scheduled_service": "no" + }, + { + "id": "336363", + "ident": "GB-0912", + "type": "small_airport", + "name": "Rhigos Airstrip", + "latitude_deg": "51.74571", + "longitude_deg": "-3.58662", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no", + "keywords": "Vale of Neath Gliding Club" + }, + { + "id": "336367", + "ident": "GB-0913", + "type": "small_airport", + "name": "Rectory Farm Airstrip", + "latitude_deg": "52.201024", + "longitude_deg": "-0.194012", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Abbotsley", + "scheduled_service": "no" + }, + { + "id": "336445", + "ident": "GB-0914", + "type": "small_airport", + "name": "Elan Valley Airstrip", + "latitude_deg": "52.28452", + "longitude_deg": "-3.53961", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no" + }, + { + "id": "336530", + "ident": "GB-0915", + "type": "small_airport", + "name": "Bernwood Farm Airstrip", + "latitude_deg": "51.911807", + "longitude_deg": "-0.935533", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "East Claydon, Buckingham", + "scheduled_service": "no" + }, + { + "id": "336552", + "ident": "GB-0916", + "type": "small_airport", + "name": "Kitcombe Airstrip", + "latitude_deg": "51.10314", + "longitude_deg": "-0.99593", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "336553", + "ident": "GB-0917", + "type": "small_airport", + "name": "Lamberhurst Airstrip", + "latitude_deg": "51.10897", + "longitude_deg": "0.41914", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "336562", + "ident": "GB-0918", + "type": "small_airport", + "name": "Little Shelford Airstrip", + "latitude_deg": "52.13167", + "longitude_deg": "0.124326", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Little Shelford, Cambridgeshire", + "scheduled_service": "no" + }, + { + "id": "336570", + "ident": "GB-0919", + "type": "small_airport", + "name": "Throstle Nest Farm Airstrip", + "latitude_deg": "54.529774", + "longitude_deg": "-0.927207", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "336795", + "ident": "GB-0920", + "type": "small_airport", + "name": "Willington Court Airstrip", + "latitude_deg": "51.91507", + "longitude_deg": "-2.24028", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Sandhurst (Glos)", + "scheduled_service": "no" + }, + { + "id": "336796", + "ident": "GB-0921", + "type": "small_airport", + "name": "Home Farm Airstrip", + "latitude_deg": "52.10795", + "longitude_deg": "-1.71938", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Admington (Warwickshire)", + "scheduled_service": "no" + }, + { + "id": "336857", + "ident": "GB-0922", + "type": "small_airport", + "name": "Cottage Farm Airstrip", + "latitude_deg": "53.0556", + "longitude_deg": "-0.42789", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bloxholm", + "scheduled_service": "no" + }, + { + "id": "336865", + "ident": "GB-0923", + "type": "small_airport", + "name": "Druridge Bay Airstrip", + "latitude_deg": "55.29918", + "longitude_deg": "-1.56631", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "336911", + "ident": "GB-0924", + "type": "small_airport", + "name": "Bonnington Airstrip", + "latitude_deg": "51.05891", + "longitude_deg": "0.94806", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bonnington", + "scheduled_service": "no" + }, + { + "id": "336912", + "ident": "GB-0925", + "type": "small_airport", + "name": "Frinsted Airstrip", + "latitude_deg": "51.27758", + "longitude_deg": "0.70572", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "336947", + "ident": "GB-0926", + "type": "small_airport", + "name": "Pointon Airstrip", + "latitude_deg": "52.87266", + "longitude_deg": "-0.35822", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "336948", + "ident": "GB-0927", + "type": "small_airport", + "name": "Romney Street Airstrip", + "latitude_deg": "51.335465", + "longitude_deg": "0.223031", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Sevenoaks", + "scheduled_service": "no" + }, + { + "id": "336957", + "ident": "GB-0928", + "type": "small_airport", + "name": "Croes-Carn-Einion Farm", + "latitude_deg": "51.56951", + "longitude_deg": "-3.07669", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "municipality": "Bassaleg (Monmouthshire)", + "scheduled_service": "no" + }, + { + "id": "336958", + "ident": "GB-0929", + "type": "small_airport", + "name": "Brickwall Farm Airstrip", + "latitude_deg": "52.09289", + "longitude_deg": "0.52848", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Hundon (Suffolk)", + "scheduled_service": "no" + }, + { + "id": "336976", + "ident": "GB-0930", + "type": "small_airport", + "name": "Shear Down Farm Airstrip", + "latitude_deg": "51.27719", + "longitude_deg": "-1.18798", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "336977", + "ident": "GB-0931", + "type": "small_airport", + "name": "Gunton Park Airstrip", + "latitude_deg": "52.855009", + "longitude_deg": "1.322994", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "336978", + "ident": "GB-0932", + "type": "closed", + "name": "Droppingwells Farm Airstrip", + "latitude_deg": "52.36763", + "longitude_deg": "-2.28267", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bewdley", + "scheduled_service": "no" + }, + { + "id": "336980", + "ident": "GB-0933", + "type": "small_airport", + "name": "Chalk Pyt Farm Airstrip", + "latitude_deg": "51.03121", + "longitude_deg": "-1.95191", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "337009", + "ident": "GB-0934", + "type": "small_airport", + "name": "Acthorpe Top Farm Airstrip", + "latitude_deg": "53.373703", + "longitude_deg": "-0.037165", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "South Elkington", + "scheduled_service": "no" + }, + { + "id": "337015", + "ident": "GB-0935", + "type": "small_airport", + "name": "Abbotts Hill Farm Airstrip", + "latitude_deg": "51.729314", + "longitude_deg": "-0.439657", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "337016", + "ident": "GB-0936", + "type": "small_airport", + "name": "Meadow Farm Airstrip", + "latitude_deg": "51.06561", + "longitude_deg": "0.87312", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Ruckinge", + "scheduled_service": "no" + }, + { + "id": "337019", + "ident": "GB-0937", + "type": "small_airport", + "name": "Benston Farm Airstrip", + "latitude_deg": "55.41649", + "longitude_deg": "-4.23027", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Cumnock (East Ayrshire)", + "scheduled_service": "no" + }, + { + "id": "337038", + "ident": "GB-0938", + "type": "small_airport", + "name": "Cherry Willingham Airstrip", + "latitude_deg": "53.232191", + "longitude_deg": "-0.449066", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "337040", + "ident": "GB-0939", + "type": "small_airport", + "name": "Poplar Farm Airstrip", + "latitude_deg": "52.604", + "longitude_deg": "0.34632", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Downham West", + "scheduled_service": "no" + }, + { + "id": "337053", + "ident": "GB-0940", + "type": "small_airport", + "name": "Balgone Airstrip", + "latitude_deg": "56.02625", + "longitude_deg": "-2.69635", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "337059", + "ident": "GB-0941", + "type": "small_airport", + "name": "Field Farm Airstrip", + "latitude_deg": "51.83822", + "longitude_deg": "-0.95433", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Westcott", + "scheduled_service": "no" + }, + { + "id": "337061", + "ident": "GB-0942", + "type": "small_airport", + "name": "Homestead Farm Airstrip", + "latitude_deg": "51.24093", + "longitude_deg": "-0.64909", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "337065", + "ident": "GB-0943", + "type": "small_airport", + "name": "Barton Ashes Airstrip", + "latitude_deg": "51.12826", + "longitude_deg": "-1.37068", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Crawley Down", + "scheduled_service": "no" + }, + { + "id": "337066", + "ident": "GB-0944", + "type": "small_airport", + "name": "Arden Heath Farm Airstrip", + "latitude_deg": "52.18639", + "longitude_deg": "-1.67465", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "337085", + "ident": "GB-0945", + "type": "small_airport", + "name": "Bridge Farm Airstrip", + "latitude_deg": "52.64829", + "longitude_deg": "1.57163", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Acle Bridge", + "scheduled_service": "no" + }, + { + "id": "337093", + "ident": "GB-0946", + "type": "small_airport", + "name": "Tilney-St-Lawrence Airstrip", + "latitude_deg": "52.70379", + "longitude_deg": "0.31321", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Kings-Lynn", + "scheduled_service": "no" + }, + { + "id": "337099", + "ident": "GB-0947", + "type": "small_airport", + "name": "Bradleys Lawn Airstrip UL", + "latitude_deg": "50.98873", + "longitude_deg": "0.2476", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "home_link": "https://www.voliamo.co.uk/" + }, + { + "id": "337379", + "ident": "GB-0948", + "type": "small_airport", + "name": "West Bergholt Airstrip", + "latitude_deg": "51.91779", + "longitude_deg": "0.860624", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "337443", + "ident": "GB-0949", + "type": "small_airport", + "name": "Tain Ultralight Airstrip", + "latitude_deg": "57.81513", + "longitude_deg": "-3.969569", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Tain, Ross", + "scheduled_service": "no" + }, + { + "id": "337468", + "ident": "GB-0950", + "type": "small_airport", + "name": "Newry private Airstrip", + "latitude_deg": "54.14446", + "longitude_deg": "-6.31402", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "scheduled_service": "no" + }, + { + "id": "337577", + "ident": "GB-0951", + "type": "small_airport", + "name": "The Plassey Airstrip", + "latitude_deg": "53.004592", + "longitude_deg": "-2.974098", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "337592", + "ident": "GB-0952", + "type": "small_airport", + "name": "West Newland Farm Airstrip", + "latitude_deg": "51.69029", + "longitude_deg": "0.820906", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Steeple (Essex)", + "scheduled_service": "no" + }, + { + "id": "337727", + "ident": "GB-0953", + "type": "small_airport", + "name": "Woods Farm Airstrip", + "latitude_deg": "52.39349", + "longitude_deg": "-1.839674", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "337821", + "ident": "GB-0954", + "type": "small_airport", + "name": "South Weald Private Airstrip", + "latitude_deg": "51.62295", + "longitude_deg": "0.26135", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "337967", + "ident": "GB-0955", + "type": "small_airport", + "name": "Sears-Crossing Airstrip", + "latitude_deg": "51.89257", + "longitude_deg": "-0.672483", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "338031", + "ident": "GB-0956", + "type": "small_airport", + "name": "Tinnel Farm Airstrip", + "latitude_deg": "50.45598", + "longitude_deg": "-4.21859", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "338065", + "ident": "GB-0957", + "type": "small_airport", + "name": "Ripple Airstrip", + "latitude_deg": "51.204759", + "longitude_deg": "1.366682", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Ripple, Kent", + "scheduled_service": "no" + }, + { + "id": "338098", + "ident": "GB-0958", + "type": "small_airport", + "name": "Pittodrie-House", + "latitude_deg": "57.309118", + "longitude_deg": "-2.488232", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "338472", + "ident": "GB-0959", + "type": "heliport", + "name": "North Rona Heliport", + "latitude_deg": "59.12089", + "longitude_deg": "-5.81469", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "North Rona", + "scheduled_service": "no" + }, + { + "id": "338473", + "ident": "GB-0960", + "type": "heliport", + "name": "Sule Skerry Heliport", + "latitude_deg": "59.08498", + "longitude_deg": "-4.40659", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Orkney", + "scheduled_service": "no" + }, + { + "id": "338475", + "ident": "GB-0961", + "type": "heliport", + "name": "Western Isles Hospital Helipad", + "latitude_deg": "58.22178", + "longitude_deg": "-6.3816", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Stornoway", + "scheduled_service": "no" + }, + { + "id": "338476", + "ident": "GB-0962", + "type": "closed", + "name": "Stroma Airstrip", + "latitude_deg": "58.67286", + "longitude_deg": "-3.12724", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Orkney", + "scheduled_service": "no" + }, + { + "id": "338478", + "ident": "GB-0963", + "type": "heliport", + "name": "Muckle Flugga Helipad", + "latitude_deg": "60.85556", + "longitude_deg": "-0.88521", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Shetland", + "scheduled_service": "no" + }, + { + "id": "338664", + "ident": "GB-0964", + "type": "small_airport", + "name": "Ponton-Heath-Farm Airstrip", + "latitude_deg": "52.859217", + "longitude_deg": "-0.657898", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "340043", + "ident": "GB-0965", + "type": "small_airport", + "name": "Morley-St-Botolph Private Airstrip", + "latitude_deg": "52.56161", + "longitude_deg": "1.0427", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Morley-St-Botolph, Norfolk", + "scheduled_service": "no" + }, + { + "id": "340065", + "ident": "GB-0966", + "type": "small_airport", + "name": "Nairns Mains Airstrip", + "latitude_deg": "55.937592", + "longitude_deg": "-2.849793", + "elevation_ft": "-1", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "340068", + "ident": "GB-0967", + "type": "small_airport", + "name": "Moxon's Farm Private Airstrip", + "latitude_deg": "52.526274", + "longitude_deg": "-1.402892", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "340854", + "ident": "GB-0968", + "type": "small_airport", + "name": "Langmoor Farm Airstrip", + "latitude_deg": "52.775816", + "longitude_deg": "0.859442", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Horningtoft, Dereham, Norfolk", + "scheduled_service": "no" + }, + { + "id": "341289", + "ident": "GB-0969", + "type": "small_airport", + "name": "Brook Farm Airstrip", + "latitude_deg": "50.97849", + "longitude_deg": "-0.79718", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "341504", + "ident": "GB-0970", + "type": "small_airport", + "name": "Lunsden Farm Ultralight Airstrip", + "latitude_deg": "50.37829", + "longitude_deg": "-3.94406", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "341616", + "ident": "GB-0971", + "type": "small_airport", + "name": "Denford Manor Airstrip", + "latitude_deg": "51.423163", + "longitude_deg": "-1.50135", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Folly Farm" + }, + { + "id": "342013", + "ident": "GB-0972", + "type": "small_airport", + "name": "Orchard House Airstrip", + "latitude_deg": "52.498341", + "longitude_deg": "0.278199", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "342178", + "ident": "GB-0973", + "type": "small_airport", + "name": "Brown Farm Airstrip", + "latitude_deg": "52.13445", + "longitude_deg": "0.878702", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "342281", + "ident": "GB-0974", + "type": "small_airport", + "name": "Hickstead Airstrip", + "latitude_deg": "50.95668", + "longitude_deg": "-0.195185", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "342435", + "ident": "GB-0975", + "type": "small_airport", + "name": "Peter Hall Farm Airstrip", + "latitude_deg": "52.422032", + "longitude_deg": "-1.394438", + "elevation_ft": "-2", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "342460", + "ident": "GB-0976", + "type": "small_airport", + "name": "Hall Farm Airstrip", + "latitude_deg": "52.05445", + "longitude_deg": "-0.96432", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "342611", + "ident": "GB-0977", + "type": "small_airport", + "name": "Hutton Grange Farm Airstrip", + "latitude_deg": "54.4061", + "longitude_deg": "-1.44796", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "342648", + "ident": "GB-0978", + "type": "small_airport", + "name": "Greenlease Farm Airstrip", + "latitude_deg": "50.7484", + "longitude_deg": "-0.76941", + "elevation_ft": "15", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Selsey", + "scheduled_service": "no" + }, + { + "id": "342649", + "ident": "GB-0979", + "type": "small_airport", + "name": "Goldstone Farm Airstrip", + "latitude_deg": "51.266869", + "longitude_deg": "-0.377655", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "342814", + "ident": "GB-0980", + "type": "small_airport", + "name": "Radwell Lodge Ultralight Airstrip", + "latitude_deg": "52.005332", + "longitude_deg": "-0.215757", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Baldock, Hertfordshire", + "scheduled_service": "no" + }, + { + "id": "342816", + "ident": "GB-0981", + "type": "small_airport", + "name": "Conaglen House Airstrip", + "latitude_deg": "56.77091", + "longitude_deg": "-5.2371", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "343231", + "ident": "GB-0982", + "type": "small_airport", + "name": "Ginge-Farm Airstrip", + "latitude_deg": "51.569481", + "longitude_deg": "-1.344409", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "343247", + "ident": "GB-0983", + "type": "small_airport", + "name": "Ringstead Private Airstrip", + "latitude_deg": "52.363769", + "longitude_deg": "-0.538888", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Ringstead", + "scheduled_service": "no" + }, + { + "id": "343348", + "ident": "GB-0984", + "type": "small_airport", + "name": "Lower Park Farm Airstrip", + "latitude_deg": "54.24363", + "longitude_deg": "-0.6288", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "343387", + "ident": "GB-0985", + "type": "heliport", + "name": "Addenbrooke's Hospital Helipad", + "latitude_deg": "52.1708", + "longitude_deg": "0.1397", + "elevation_ft": "54", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Trumpington, Cambridgeshire", + "scheduled_service": "no" + }, + { + "id": "343397", + "ident": "GB-0986", + "type": "small_airport", + "name": "Godney Airstrip", + "latitude_deg": "51.197526", + "longitude_deg": "-2.754478", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "343534", + "ident": "GB-0987", + "type": "heliport", + "name": "Sandscale Park Helipad", + "latitude_deg": "54.151247", + "longitude_deg": "-3.234297", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Barrow-In-Furness", + "scheduled_service": "no", + "keywords": "Helipad, Barrow, Walney Extension, West of Duddon Sands, Windfarm, Ørsted" + }, + { + "id": "343556", + "ident": "GB-0988", + "type": "small_airport", + "name": "Bonnallack Airstrip", + "latitude_deg": "50.09776", + "longitude_deg": "-5.18582", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "343804", + "ident": "GB-0989", + "type": "small_airport", + "name": "Witherenden Airstrip", + "latitude_deg": "51.00694", + "longitude_deg": "0.35273", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "343859", + "ident": "GB-0990", + "type": "small_airport", + "name": "Woolaston Airstrip", + "latitude_deg": "51.689113", + "longitude_deg": "-2.598588", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "343904", + "ident": "GB-0991", + "type": "small_airport", + "name": "Durleighmarsh Farm Airstrip", + "latitude_deg": "51.014862", + "longitude_deg": "-0.872469", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no", + "keywords": "Carrolls Copse, Carrols Cottage" + }, + { + "id": "343946", + "ident": "GB-0992", + "type": "small_airport", + "name": "Chesham Vale Airstrip", + "latitude_deg": "51.73334", + "longitude_deg": "-0.60826", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "344098", + "ident": "GB-0993", + "type": "small_airport", + "name": "Fen-End-Farm Airstrip", + "latitude_deg": "52.313779", + "longitude_deg": "0.122867", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "344099", + "ident": "GB-0994", + "type": "small_airport", + "name": "Pillows Barn Airstrip", + "latitude_deg": "51.97252", + "longitude_deg": "-2.298592", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Eldersfield", + "scheduled_service": "no" + }, + { + "id": "344219", + "ident": "GB-0995", + "type": "small_airport", + "name": "Acton Farm Airstrip", + "latitude_deg": "51.02204", + "longitude_deg": "0.721062", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Ebony (Kent)", + "scheduled_service": "no" + }, + { + "id": "344826", + "ident": "GB-0996", + "type": "small_airport", + "name": "Moor Farm Airstrip", + "latitude_deg": "54.14229", + "longitude_deg": "-0.54942", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Weaverthorpe", + "scheduled_service": "no" + }, + { + "id": "345029", + "ident": "GB-0997", + "type": "small_airport", + "name": "Marldon Airstrip", + "latitude_deg": "50.46088", + "longitude_deg": "-3.60782", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "345033", + "ident": "GB-0998", + "type": "small_airport", + "name": "Dysons Osiers Airstrip", + "latitude_deg": "51.69443", + "longitude_deg": "-0.08695", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Cuffley", + "scheduled_service": "no" + }, + { + "id": "345070", + "ident": "GB-0999", + "type": "small_airport", + "name": "Cowbit Airstrip", + "latitude_deg": "52.757061", + "longitude_deg": "-0.140913", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "345075", + "ident": "GB-1000", + "type": "small_airport", + "name": "Donnydeade Airstrip", + "latitude_deg": "54.47681", + "longitude_deg": "-6.74402", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "scheduled_service": "no" + }, + { + "id": "345229", + "ident": "GB-1001", + "type": "small_airport", + "name": "Clees Hall Airstrip", + "latitude_deg": "51.977221", + "longitude_deg": "0.739625", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "345348", + "ident": "GB-1002", + "type": "small_airport", + "name": "Clotton airstrip UL", + "latitude_deg": "53.16963", + "longitude_deg": "-2.69955", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "345395", + "ident": "GB-1003", + "type": "small_airport", + "name": "Hamilton House Airstrip", + "latitude_deg": "51.663785", + "longitude_deg": "-1.446633", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Charney", + "scheduled_service": "no" + }, + { + "id": "345413", + "ident": "GB-1004", + "type": "small_airport", + "name": "Chipstead Private Airstrip", + "latitude_deg": "51.291025", + "longitude_deg": "-0.166131", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Coulsdon, Greater London", + "scheduled_service": "no" + }, + { + "id": "345676", + "ident": "GB-1005", + "type": "small_airport", + "name": "Plains Airstrip", + "latitude_deg": "55.014073", + "longitude_deg": "-6.540256", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "Killymaddy", + "scheduled_service": "no" + }, + { + "id": "345861", + "ident": "GB-1006", + "type": "small_airport", + "name": "Kilfinichen Airstrip", + "latitude_deg": "56.38648", + "longitude_deg": "-6.05542", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "346224", + "ident": "GB-1007", + "type": "small_airport", + "name": "Bowford Farm Airstrip", + "latitude_deg": "50.952993", + "longitude_deg": "-0.396152", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "346362", + "ident": "GB-1008", + "type": "small_airport", + "name": "Brockwood Bottom Farm Airstrip", + "latitude_deg": "51.03488", + "longitude_deg": "-1.11519", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Brockwood", + "scheduled_service": "no" + }, + { + "id": "346432", + "ident": "GB-1009", + "type": "small_airport", + "name": "Bethesda", + "latitude_deg": "51.832357", + "longitude_deg": "-4.763131", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-WLS", + "scheduled_service": "no" + }, + { + "id": "346455", + "ident": "GB-1010", + "type": "small_airport", + "name": "Bennetsfield Private Airstrip", + "latitude_deg": "57.55888", + "longitude_deg": "-4.19959", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "346513", + "ident": "GB-1011", + "type": "small_airport", + "name": "Tansterne Grange Airstrip", + "latitude_deg": "53.818186", + "longitude_deg": "-0.141921", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "346828", + "ident": "GB-1012", + "type": "small_airport", + "name": "Glebe Farm Airstrip", + "latitude_deg": "51.078818", + "longitude_deg": "-3.285738", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "346983", + "ident": "GB-1013", + "type": "small_airport", + "name": "Montrose Airstrip", + "latitude_deg": "56.727913", + "longitude_deg": "-2.500514", + "elevation_ft": "46", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Montrose", + "scheduled_service": "no" + }, + { + "id": "346988", + "ident": "GB-1014", + "type": "small_airport", + "name": "Fingland", + "latitude_deg": "55.324701", + "longitude_deg": "-3.204789", + "elevation_ft": "720", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Eskdalemuir", + "scheduled_service": "no" + }, + { + "id": "347169", + "ident": "GB-1015", + "type": "small_airport", + "name": "Spire-View Airstrip", + "latitude_deg": "51.020503", + "longitude_deg": "-1.860466", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "347364", + "ident": "GB-1016", + "type": "closed", + "name": "Swingate Airfield", + "latitude_deg": "51.13596", + "longitude_deg": "1.34055", + "elevation_ft": "407", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Swingate", + "scheduled_service": "no" + }, + { + "id": "347694", + "ident": "GB-1017", + "type": "small_airport", + "name": "South View Farm Airstrip", + "latitude_deg": "52.93291", + "longitude_deg": "-0.28453", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "347695", + "ident": "GB-1018", + "type": "small_airport", + "name": "Millfield Farm Airstrip", + "latitude_deg": "52.98598", + "longitude_deg": "-0.31241", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "348682", + "ident": "GB-1019", + "type": "small_airport", + "name": "Little Farm Airstrip", + "latitude_deg": "53.314117", + "longitude_deg": "-0.446697", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "348838", + "ident": "GB-1020", + "type": "small_airport", + "name": "Lower-Durston Airstrip", + "latitude_deg": "51.051996", + "longitude_deg": "-3.00549", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "349423", + "ident": "GB-1021", + "type": "closed", + "name": "RAF Tain", + "latitude_deg": "57.8115", + "longitude_deg": "-3.97394", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Tain, Ross", + "scheduled_service": "no" + }, + { + "id": "349424", + "ident": "GB-1022", + "type": "closed", + "name": "Evanton Airfield", + "latitude_deg": "57.66644", + "longitude_deg": "-4.3075", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Evanton, Highland", + "scheduled_service": "no" + }, + { + "id": "349425", + "ident": "GB-1023", + "type": "heliport", + "name": "Isle of May Heliport", + "latitude_deg": "56.18548", + "longitude_deg": "-2.5552", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Anstruther, Fife", + "scheduled_service": "no" + }, + { + "id": "349886", + "ident": "GB-1024", + "type": "small_airport", + "name": "Boyndie Airstrip", + "latitude_deg": "57.666802", + "longitude_deg": "-2.639594", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Boyndie", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Banff#Current_use" + }, + { + "id": "349900", + "ident": "GB-1025", + "type": "small_airport", + "name": "Biss Brook Farm Airstrip", + "latitude_deg": "51.236731", + "longitude_deg": "-2.202587", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "349976", + "ident": "GB-1026", + "type": "small_airport", + "name": "Langley House Airstrip", + "latitude_deg": "51.48283", + "longitude_deg": "-2.10134", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "350976", + "ident": "GB-1027", + "type": "small_airport", + "name": "Churchlands Farm Airstrip UL", + "latitude_deg": "50.824117", + "longitude_deg": "0.338101", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Pevensey, Kent", + "scheduled_service": "no", + "keywords": "Rickney" + }, + { + "id": "351547", + "ident": "GB-1028", + "type": "small_airport", + "name": "Bywell Airstrip", + "latitude_deg": "54.95719", + "longitude_deg": "-1.92062", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "351782", + "ident": "GB-1029", + "type": "small_airport", + "name": "North-Fen-Farm Airstrip", + "latitude_deg": "53.42797", + "longitude_deg": "0.109692", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "351853", + "ident": "GB-1030", + "type": "small_airport", + "name": "West-Burton Airstrip", + "latitude_deg": "53.362942", + "longitude_deg": "-0.828925", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "351904", + "ident": "GB-1031", + "type": "small_airport", + "name": "Eccles Newton Farm Airstrip", + "latitude_deg": "55.65838", + "longitude_deg": "-2.354529", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "353057", + "ident": "GB-1032", + "type": "small_airport", + "name": "Low Moor Farm Airstrip", + "latitude_deg": "54.182606", + "longitude_deg": "-0.731792", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "353064", + "ident": "GB-1033", + "type": "small_airport", + "name": "Settrington Airstrip", + "latitude_deg": "54.127995", + "longitude_deg": "-0.736513", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "353293", + "ident": "GB-1034", + "type": "closed", + "name": "Montrose Air Station", + "latitude_deg": "56.72925", + "longitude_deg": "-2.45244", + "elevation_ft": "34", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Montrose", + "scheduled_service": "no" + }, + { + "id": "353488", + "ident": "GB-1035", + "type": "small_airport", + "name": "Greenhill-Down Airstrip", + "latitude_deg": "51.54933", + "longitude_deg": "-1.454659", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "353602", + "ident": "GB-1036", + "type": "small_airport", + "name": "Bell Bar Airstrip", + "latitude_deg": "51.734437", + "longitude_deg": "-0.19519", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Newham Green", + "scheduled_service": "no" + }, + { + "id": "354146", + "ident": "GB-1037", + "type": "small_airport", + "name": "Top Farm Airstrip", + "latitude_deg": "52.1304", + "longitude_deg": "-0.54649", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Stagsden", + "scheduled_service": "no" + }, + { + "id": "354221", + "ident": "GB-1038", + "type": "small_airport", + "name": "Broadmarsh Farm Airstrip", + "latitude_deg": "52.5262", + "longitude_deg": "0.98177", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Great Ellingham", + "scheduled_service": "no" + }, + { + "id": "354348", + "ident": "GB-1039", + "type": "small_airport", + "name": "Tullochgribban-High Airstrip", + "latitude_deg": "57.307125", + "longitude_deg": "-3.749256", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Dulnain Bridge", + "scheduled_service": "no" + }, + { + "id": "354387", + "ident": "GB-1040", + "type": "small_airport", + "name": "Idsworth Airstrip", + "latitude_deg": "50.92723", + "longitude_deg": "-0.95384", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "354631", + "ident": "GB-1041", + "type": "small_airport", + "name": "Lempitlaw Farm Airstrip", + "latitude_deg": "55.585485", + "longitude_deg": "-2.328248", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "355027", + "ident": "GB-1042", + "type": "small_airport", + "name": "Barnfield Farm Airstrip", + "latitude_deg": "52.359721", + "longitude_deg": "-0.012274", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "355049", + "ident": "GB-1043", + "type": "small_airport", + "name": "Altamuskin", + "latitude_deg": "54.522128", + "longitude_deg": "-7.083564", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "scheduled_service": "no", + "keywords": "Hilltop Flying Club" + }, + { + "id": "355704", + "ident": "GB-1044", + "type": "small_airport", + "name": "Corston Airstrip", + "latitude_deg": "59.052331", + "longitude_deg": "-3.19069", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "scheduled_service": "no" + }, + { + "id": "356012", + "ident": "GB-1045", + "type": "closed", + "name": "RAF Chipping Norton", + "latitude_deg": "51.923976", + "longitude_deg": "-1.532249", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Chipping Norton", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Chipping_Norton", + "keywords": "Chipping norton,oxford,raf" + }, + { + "id": "356023", + "ident": "GB-1046", + "type": "small_airport", + "name": "Lutton-Garngate Airstrip", + "latitude_deg": "52.778003", + "longitude_deg": "0.093813", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "356037", + "ident": "GB-1047", + "type": "small_airport", + "name": "Bury-Farm Airstrip", + "latitude_deg": "51.847497", + "longitude_deg": "0.314867", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "429720", + "ident": "GB-1048", + "type": "closed", + "name": "RNAS Caldale", + "latitude_deg": "58.978", + "longitude_deg": "-3.02", + "elevation_ft": "115", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Orkney", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RNAS_Caldale" + }, + { + "id": "430018", + "ident": "GB-1049", + "type": "balloonport", + "name": "York Racecourse Balloonport", + "latitude_deg": "53.94787", + "longitude_deg": "-1.09914", + "elevation_ft": "49", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "York", + "scheduled_service": "no" + }, + { + "id": "430591", + "ident": "GB-1050", + "type": "small_airport", + "name": "Dungannon Airstrip", + "latitude_deg": "54.56089", + "longitude_deg": "-6.8171", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "scheduled_service": "no" + }, + { + "id": "430592", + "ident": "GB-1051", + "type": "small_airport", + "name": "Knoll Airstrip", + "latitude_deg": "52.40254", + "longitude_deg": "-2.16059", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "430621", + "ident": "GB-1052", + "type": "small_airport", + "name": "Walk Farm Airstrip", + "latitude_deg": "53.51865", + "longitude_deg": "-0.1766", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "scheduled_service": "no" + }, + { + "id": "30935", + "ident": "GB-DOC", + "type": "small_airport", + "name": "Dornoch Airfield", + "latitude_deg": "57.868999", + "longitude_deg": "-4.023", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Dornoch, Sunderland", + "scheduled_service": "no", + "gps_code": "EGZJ", + "iata_code": "DOC", + "home_link": "http://www.dornochairfield.com/", + "keywords": "EG08" + }, + { + "id": "31147", + "ident": "GB-FLH", + "type": "small_airport", + "name": "Flotta Isle Airport", + "latitude_deg": "58.825801849365", + "longitude_deg": "-3.1427800655365", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Flotta Isle", + "scheduled_service": "no", + "gps_code": "EGZR", + "iata_code": "FLH" + }, + { + "id": "31199", + "ident": "GB-FOA", + "type": "small_airport", + "name": "Foula Airfield", + "latitude_deg": "60.121725", + "longitude_deg": "-2.053202", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Foula", + "scheduled_service": "yes", + "gps_code": "EGFO", + "iata_code": "FOA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foula_Airfield" + }, + { + "id": "35156", + "ident": "GB-OUK", + "type": "small_airport", + "name": "Out Skerries Airfield", + "latitude_deg": "60.4252", + "longitude_deg": "-0.75", + "elevation_ft": "76", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Grunay Island", + "scheduled_service": "no", + "gps_code": "EGOU", + "iata_code": "OUK", + "keywords": "Out Skerries, Housay, Bruray, Grunay" + }, + { + "id": "32175", + "ident": "GB-PSV", + "type": "small_airport", + "name": "Papa Stour Airport", + "latitude_deg": "60.321701", + "longitude_deg": "-1.69306", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Papa Stour Island", + "scheduled_service": "yes", + "gps_code": "EGSZ", + "iata_code": "PSV" + }, + { + "id": "29640", + "ident": "GB-ULL", + "type": "small_airport", + "name": "Glenforsa Airfield", + "latitude_deg": "56.517502", + "longitude_deg": "-5.91417", + "elevation_ft": "15", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Glenforsa", + "scheduled_service": "no", + "gps_code": "EGZU", + "home_link": "http://www.glenforsaairfield.co.uk/1.html" + }, + { + "id": "319712", + "ident": "GBM", + "type": "small_airport", + "name": "Garbaharey Airport", + "latitude_deg": "3.32294", + "longitude_deg": "42.21309", + "elevation_ft": "755", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-GE", + "municipality": "Garbaharey", + "scheduled_service": "no", + "iata_code": "GBM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Garbaharey_Airport", + "keywords": "Garbahaareey, Garba Harre" + }, + { + "id": "3076", + "ident": "GBYD", + "type": "large_airport", + "name": "Banjul International Airport", + "latitude_deg": "13.338", + "longitude_deg": "-16.652201", + "elevation_ft": "95", + "continent": "AF", + "iso_country": "GM", + "iso_region": "GM-W", + "municipality": "Banjul", + "scheduled_service": "yes", + "gps_code": "GBYD", + "iata_code": "BJL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Banjul_International_Airport", + "keywords": "Yundum international Airport" + }, + { + "id": "3077", + "ident": "GCFV", + "type": "large_airport", + "name": "Fuerteventura Airport", + "latitude_deg": "28.4527", + "longitude_deg": "-13.8638", + "elevation_ft": "85", + "continent": "AF", + "iso_country": "ES", + "iso_region": "ES-CN", + "municipality": "El Matorral", + "scheduled_service": "yes", + "gps_code": "GCFV", + "iata_code": "FUE", + "home_link": "https://www.aena.es/en/fuerteventura.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fuerteventura_Airport" + }, + { + "id": "3078", + "ident": "GCGM", + "type": "small_airport", + "name": "La Gomera Airport", + "latitude_deg": "28.0296", + "longitude_deg": "-17.2146", + "elevation_ft": "716", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CN", + "municipality": "Alajero, La Gomera Island", + "scheduled_service": "yes", + "gps_code": "GCGM", + "iata_code": "GMZ", + "home_link": "https://www.aena.es/en/la-gomera.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Gomera_Airport" + }, + { + "id": "43297", + "ident": "GCGO", + "type": "heliport", + "name": "San Sebastián De La Gomera Heliport", + "latitude_deg": "28.097200393676758", + "longitude_deg": "-17.102399826049805", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CN", + "municipality": "La Gomera Island", + "scheduled_service": "no", + "gps_code": "GCGO" + }, + { + "id": "3079", + "ident": "GCHI", + "type": "medium_airport", + "name": "El Hierro Airport", + "latitude_deg": "27.8148", + "longitude_deg": "-17.8871", + "elevation_ft": "103", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CN", + "municipality": "El Hierro Island", + "scheduled_service": "yes", + "gps_code": "GCHI", + "iata_code": "VDE", + "home_link": "https://www.aena.es/en/el-hierro.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Hierro_Airport", + "keywords": "Hierro,El Hierro" + }, + { + "id": "43272", + "ident": "GCHU", + "type": "heliport", + "name": "Hospital Universitario De Canarias Heliport", + "latitude_deg": "28.456199645996094", + "longitude_deg": "-16.29210090637207", + "elevation_ft": "1080", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CN", + "municipality": "Tenerife Island", + "scheduled_service": "no", + "gps_code": "GCHU" + }, + { + "id": "3080", + "ident": "GCLA", + "type": "medium_airport", + "name": "La Palma Airport", + "latitude_deg": "28.626499", + "longitude_deg": "-17.7556", + "elevation_ft": "107", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CN", + "municipality": "Sta Cruz de la Palma, La Palma Island", + "scheduled_service": "yes", + "gps_code": "GCLA", + "iata_code": "SPC", + "home_link": "https://www.aena.es/en/la-palma.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Palma_Airport" + }, + { + "id": "29842", + "ident": "GCLB", + "type": "small_airport", + "name": "El Berriel Aeroc Airport", + "latitude_deg": "27.782499313354492", + "longitude_deg": "-15.507200241088867", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CN", + "municipality": "Gran Canaria Island", + "scheduled_service": "no", + "gps_code": "GCLB" + }, + { + "id": "3081", + "ident": "GCLP", + "type": "large_airport", + "name": "Gran Canaria Airport", + "latitude_deg": "27.9319", + "longitude_deg": "-15.3866", + "elevation_ft": "78", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CN", + "municipality": "Gran Canaria Island", + "scheduled_service": "yes", + "gps_code": "GCLP", + "iata_code": "LPA", + "home_link": "https://www.aena.es/en/gran-canaria.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gran_Canaria_Airport", + "keywords": "Canary Islands, Las Palmas Airport, Gando Airport" + }, + { + "id": "3082", + "ident": "GCRR", + "type": "large_airport", + "name": "César Manrique-Lanzarote Airport", + "latitude_deg": "28.945499", + "longitude_deg": "-13.6052", + "elevation_ft": "46", + "continent": "AF", + "iso_country": "ES", + "iso_region": "ES-CN", + "municipality": "San Bartolomé", + "scheduled_service": "yes", + "gps_code": "GCRR", + "iata_code": "ACE", + "home_link": "https://www.aena.es/en/cesar-manrique-lanzarote.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lanzarote_Airport", + "keywords": "Arrecife Airport" + }, + { + "id": "3083", + "ident": "GCTS", + "type": "large_airport", + "name": "Tenerife Sur Airport", + "latitude_deg": "28.0445", + "longitude_deg": "-16.5725", + "elevation_ft": "209", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CN", + "municipality": "Tenerife", + "scheduled_service": "yes", + "gps_code": "GCTS", + "iata_code": "TFS", + "home_link": "https://www.aena.es/en/tenerife-sur.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tenerife%E2%80%93South_Airport", + "keywords": "Canary Islands, Reina Sofía, TCI, Tenerife South" + }, + { + "id": "309152", + "ident": "GCV", + "type": "small_airport", + "name": "Gravatai Airport", + "latitude_deg": "-29.9494", + "longitude_deg": "-50.98505", + "elevation_ft": "25", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Gravatai", + "scheduled_service": "no", + "iata_code": "GCV", + "keywords": "Gravatahy" + }, + { + "id": "3084", + "ident": "GCXO", + "type": "medium_airport", + "name": "Tenerife Norte-Ciudad de La Laguna Airport", + "latitude_deg": "28.4827", + "longitude_deg": "-16.341499", + "elevation_ft": "2076", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CN", + "municipality": "Tenerife", + "scheduled_service": "yes", + "gps_code": "GCXO", + "iata_code": "TFN", + "home_link": "https://www.aena.es/en/tenerife-norte-ciudad-de-la-laguna.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Los_Rodeos_Airport", + "keywords": "Canary Islands, Los Rodeos, TCI" + }, + { + "id": "330395", + "ident": "GDA", + "type": "closed", + "name": "Gounda Airport", + "latitude_deg": "9.316703", + "longitude_deg": "21.185", + "elevation_ft": "1378", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-BB", + "municipality": "Gounda", + "scheduled_service": "no", + "iata_code": "GDA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gounda_Airport" + }, + { + "id": "17577", + "ident": "GDY", + "type": "small_airport", + "name": "Grundy Municipal Airport", + "latitude_deg": "37.2323989868", + "longitude_deg": "-82.125", + "elevation_ft": "2304", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Grundy", + "scheduled_service": "no", + "gps_code": "KGDY", + "local_code": "GDY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grundy_Municipal_Airport" + }, + { + "id": "43229", + "ident": "GE-0001", + "type": "closed", + "name": "Telavi Air Base", + "latitude_deg": "41.96204376220703", + "longitude_deg": "45.5380744934082", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-KA", + "municipality": "Telavi", + "scheduled_service": "no" + }, + { + "id": "43230", + "ident": "GE-0002", + "type": "closed", + "name": "Zugdidi Airport", + "latitude_deg": "42.489200592041016", + "longitude_deg": "41.81869888305664", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-SZ", + "municipality": "Zugdidi", + "scheduled_service": "no" + }, + { + "id": "44324", + "ident": "GE-0003", + "type": "closed", + "name": "Tskhinvali Air Base", + "latitude_deg": "42.1899986267", + "longitude_deg": "43.9399986267", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-SK", + "municipality": "Tskhinval", + "scheduled_service": "no", + "keywords": "Аэродром Цхинвали" + }, + { + "id": "44325", + "ident": "GE-0004", + "type": "closed", + "name": "Akhalkalaki Airport", + "latitude_deg": "41.37699890136719", + "longitude_deg": "43.47999954223633", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-SJ", + "municipality": "Akhalkalaki", + "scheduled_service": "no", + "keywords": "Ahalkalaki Airport, Аэропорт Ахалкалаки" + }, + { + "id": "44552", + "ident": "GE-0005", + "type": "closed", + "name": "Tskhinvali South Air Field", + "latitude_deg": "42.13130187989999", + "longitude_deg": "43.925201416", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-SK", + "municipality": "Tskhinval", + "scheduled_service": "no" + }, + { + "id": "44553", + "ident": "GE-0006", + "type": "small_airport", + "name": "Kobuleti Airfield", + "latitude_deg": "41.840599", + "longitude_deg": "41.799461", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-AJ", + "municipality": "Kobuleti", + "scheduled_service": "no" + }, + { + "id": "44554", + "ident": "GE-0007", + "type": "medium_airport", + "name": "Ozurgeti Air Base", + "latitude_deg": "41.9291", + "longitude_deg": "41.863499", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-GU", + "municipality": "Ozurgeti", + "scheduled_service": "no", + "keywords": "Meria Airport" + }, + { + "id": "44675", + "ident": "GE-0008", + "type": "heliport", + "name": "Tsalka Helipad", + "latitude_deg": "41.59339904785156", + "longitude_deg": "44.07619857788086", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-KK", + "municipality": "Tsalka", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Цалка" + }, + { + "id": "44937", + "ident": "GE-0009", + "type": "closed", + "name": "Poti International Airport", + "latitude_deg": "42.162902", + "longitude_deg": "41.705807", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-SZ", + "municipality": "Poti", + "scheduled_service": "no", + "gps_code": "UGSP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Poti_International_Airport", + "keywords": "UGSP" + }, + { + "id": "44938", + "ident": "GE-0010", + "type": "medium_airport", + "name": "Senaki Air Base", + "latitude_deg": "42.2403057198", + "longitude_deg": "42.0454931259", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-SZ", + "municipality": "Senaki", + "scheduled_service": "no" + }, + { + "id": "44939", + "ident": "GE-0011", + "type": "small_airport", + "name": "Lagodekhi Airfield", + "latitude_deg": "41.8150179007", + "longitude_deg": "46.234159469599994", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-KA", + "scheduled_service": "no" + }, + { + "id": "44940", + "ident": "GE-0012", + "type": "closed", + "name": "Signakhi Airport", + "latitude_deg": "41.634417415", + "longitude_deg": "46.0128879547", + "elevation_ft": "735", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-KA", + "municipality": "Tsnori", + "scheduled_service": "no", + "gps_code": "UGGN" + }, + { + "id": "340315", + "ident": "GE-0013", + "type": "small_airport", + "name": "Sedmoye Nebo Airstrip", + "latitude_deg": "43.1812", + "longitude_deg": "40.3011", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-AB", + "municipality": "Inkiti", + "scheduled_service": "no", + "keywords": "UGBC, Bich'vinta, Seventh Heaven" + }, + { + "id": "46138", + "ident": "GE-0014", + "type": "heliport", + "name": "Isani-Samgori Heliport", + "latitude_deg": "41.651019", + "longitude_deg": "44.870111", + "elevation_ft": "1939", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-TB", + "municipality": "Isani-Samgori", + "scheduled_service": "no" + }, + { + "id": "46585", + "ident": "GE-0015", + "type": "small_airport", + "name": "Pskhu Airport", + "latitude_deg": "43.385152", + "longitude_deg": "40.816355", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-AB", + "municipality": "Pskhu", + "scheduled_service": "no" + }, + { + "id": "342232", + "ident": "GE-0016", + "type": "heliport", + "name": "Pichori Heliport", + "latitude_deg": "42.43698", + "longitude_deg": "41.54572", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-AB", + "municipality": "Pichori", + "scheduled_service": "no" + }, + { + "id": "342882", + "ident": "GE-0017", + "type": "closed", + "name": "Ochamchire Airport", + "latitude_deg": "42.75681", + "longitude_deg": "41.53069", + "elevation_ft": "105", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-AB", + "municipality": "Beslakhuba", + "scheduled_service": "no" + }, + { + "id": "355273", + "ident": "GE-0018", + "type": "closed", + "name": "Inkiti Lake Airport", + "latitude_deg": "43.177093", + "longitude_deg": "40.323395", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-AB", + "municipality": "Inkiti", + "scheduled_service": "no", + "keywords": "UGBI" + }, + { + "id": "355274", + "ident": "GE-0019", + "type": "heliport", + "name": "Ochamchire Base Heliport", + "latitude_deg": "42.666106", + "longitude_deg": "41.484162", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-AB", + "municipality": "Ochamchire", + "scheduled_service": "no" + }, + { + "id": "17578", + "ident": "GE00", + "type": "seaplane_base", + "name": "Morris Seaplane Base", + "latitude_deg": "33.60969924926758", + "longitude_deg": "-82.13580322265625", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Evans", + "scheduled_service": "no", + "gps_code": "GE00", + "local_code": "GE00" + }, + { + "id": "17579", + "ident": "GE01", + "type": "small_airport", + "name": "Christians Folly Airport", + "latitude_deg": "30.930423", + "longitude_deg": "-83.079386", + "elevation_ft": "208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Naylor", + "scheduled_service": "no", + "gps_code": "GE01", + "local_code": "GE01" + }, + { + "id": "17580", + "ident": "GE02", + "type": "heliport", + "name": "Adventhealth Gordon Heliport", + "latitude_deg": "34.51035", + "longitude_deg": "-84.927729", + "elevation_ft": "711", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Calhoun", + "scheduled_service": "no", + "gps_code": "GE02", + "local_code": "GE02", + "keywords": "Gordon Hospital" + }, + { + "id": "17581", + "ident": "GE03", + "type": "heliport", + "name": "Lanier Heliport", + "latitude_deg": "34.1688995361", + "longitude_deg": "-84.17109680179999", + "elevation_ft": "1225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Cumming", + "scheduled_service": "no", + "gps_code": "GE03", + "local_code": "GE03" + }, + { + "id": "45378", + "ident": "GE04", + "type": "small_airport", + "name": "Mclendon Field", + "latitude_deg": "32.666944", + "longitude_deg": "-84.965556", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Mulberry Grove", + "scheduled_service": "no", + "gps_code": "GE04", + "local_code": "GE04" + }, + { + "id": "17582", + "ident": "GE05", + "type": "small_airport", + "name": "Gibson Field", + "latitude_deg": "34.6156005859375", + "longitude_deg": "-85.34310150146484", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "GE05", + "local_code": "GE05" + }, + { + "id": "17583", + "ident": "GE11", + "type": "small_airport", + "name": "Hogjowl Airport", + "latitude_deg": "34.60580062866211", + "longitude_deg": "-85.46189880371094", + "elevation_ft": "1790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Layfayette", + "scheduled_service": "no", + "gps_code": "GE11", + "local_code": "GE11" + }, + { + "id": "17584", + "ident": "GE12", + "type": "small_airport", + "name": "Richter Airpark", + "latitude_deg": "31.748600006103516", + "longitude_deg": "-83.57360076904297", + "elevation_ft": "357", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Ashburn", + "scheduled_service": "no", + "gps_code": "GE12", + "local_code": "GE12" + }, + { + "id": "349527", + "ident": "GE13", + "type": "heliport", + "name": "FMC Heliport", + "latitude_deg": "34.259997", + "longitude_deg": "-85.180322", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Rome", + "scheduled_service": "no", + "gps_code": "GE13", + "local_code": "GE13" + }, + { + "id": "45367", + "ident": "GE14", + "type": "heliport", + "name": "Elite Helicopters Heliport", + "latitude_deg": "31.518333", + "longitude_deg": "-83.1325", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Ocilla", + "scheduled_service": "no", + "gps_code": "GE14", + "local_code": "GE14" + }, + { + "id": "345157", + "ident": "GE15", + "type": "heliport", + "name": "Rabit Hole III Heliport", + "latitude_deg": "33.612327", + "longitude_deg": "-83.650498", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Rutledge", + "scheduled_service": "no", + "gps_code": "GE15", + "local_code": "GE15" + }, + { + "id": "346218", + "ident": "GE21", + "type": "small_airport", + "name": "Anderson Airport", + "latitude_deg": "31.018681", + "longitude_deg": "-84.392917", + "elevation_ft": "138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Bainbridge", + "scheduled_service": "no", + "gps_code": "GE21", + "local_code": "GE21" + }, + { + "id": "17585", + "ident": "GE22", + "type": "heliport", + "name": "Graham Heliport", + "latitude_deg": "32.528900146484375", + "longitude_deg": "-82.82170104980469", + "elevation_ft": "237", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "East Dublin", + "scheduled_service": "no", + "gps_code": "GE22", + "local_code": "GE22" + }, + { + "id": "17586", + "ident": "GE23", + "type": "closed", + "name": "Winge Farms Airport", + "latitude_deg": "32.192466", + "longitude_deg": "-82.288657", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Lyons", + "scheduled_service": "no", + "keywords": "GE23" + }, + { + "id": "17587", + "ident": "GE24", + "type": "heliport", + "name": "Se Georgia Health System-Brunswick Heliport", + "latitude_deg": "31.17530059814453", + "longitude_deg": "-81.48529815673828", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Brunswick", + "scheduled_service": "no", + "gps_code": "GE24", + "local_code": "GE24" + }, + { + "id": "17588", + "ident": "GE25", + "type": "small_airport", + "name": "Hutto Farm Airport", + "latitude_deg": "32.681106", + "longitude_deg": "-83.856109", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fort Valley", + "scheduled_service": "no", + "gps_code": "GE25", + "local_code": "GE25" + }, + { + "id": "45379", + "ident": "GE26", + "type": "small_airport", + "name": "Duke Strip 2", + "latitude_deg": "32.381667", + "longitude_deg": "-83.059722", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Dublin", + "scheduled_service": "no", + "gps_code": "GE26", + "local_code": "GE26" + }, + { + "id": "17589", + "ident": "GE27", + "type": "small_airport", + "name": "Smith Field", + "latitude_deg": "32.60219955444336", + "longitude_deg": "-83.75420379638672", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Byron", + "scheduled_service": "no", + "gps_code": "GE27", + "local_code": "GE27" + }, + { + "id": "17590", + "ident": "GE28", + "type": "heliport", + "name": "Emory Johns Creek Hospital Heliport", + "latitude_deg": "34.067501068115234", + "longitude_deg": "-84.17749786376953", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Duluth", + "scheduled_service": "no", + "gps_code": "GE28", + "local_code": "GE28" + }, + { + "id": "17591", + "ident": "GE30", + "type": "small_airport", + "name": "Sandy Hill Airport", + "latitude_deg": "33.221099853515625", + "longitude_deg": "-81.99530029296875", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Waynesboro", + "scheduled_service": "no", + "gps_code": "GE30", + "local_code": "GE30" + }, + { + "id": "45374", + "ident": "GE33", + "type": "small_airport", + "name": "River Bend Airport", + "latitude_deg": "33.304319", + "longitude_deg": "-84.136798", + "elevation_ft": "718", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Locust Grove", + "scheduled_service": "no", + "gps_code": "GE33", + "local_code": "GE33" + }, + { + "id": "45376", + "ident": "GE34", + "type": "heliport", + "name": "Stone Mountain Park Public Safety Heliport", + "latitude_deg": "33.818889", + "longitude_deg": "-84.150556", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Stone Mountain", + "scheduled_service": "no", + "gps_code": "GE34", + "local_code": "GE34" + }, + { + "id": "45375", + "ident": "GE35", + "type": "small_airport", + "name": "Southern Oaks Airport", + "latitude_deg": "33.731389", + "longitude_deg": "-83.469722", + "elevation_ft": "121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Bostwick", + "scheduled_service": "no", + "gps_code": "GE35", + "local_code": "GE35" + }, + { + "id": "348265", + "ident": "GE53", + "type": "small_airport", + "name": "Chigger Hill Airport", + "latitude_deg": "33.316745", + "longitude_deg": "-84.150612", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Locust Grove", + "scheduled_service": "no", + "gps_code": "GE53", + "local_code": "GE53" + }, + { + "id": "334275", + "ident": "GE88", + "type": "heliport", + "name": "Floyd County Sheriffs Office Heliport", + "latitude_deg": "34.281389", + "longitude_deg": "-85.141944", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Rome", + "scheduled_service": "no", + "gps_code": "GE88", + "local_code": "GE88" + }, + { + "id": "350767", + "ident": "GE92", + "type": "heliport", + "name": "Rabbit Hole II Heliport", + "latitude_deg": "33.49961", + "longitude_deg": "-83.320635", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Buckhead", + "scheduled_service": "no", + "gps_code": "GE92", + "local_code": "GE92" + }, + { + "id": "17592", + "ident": "GE99", + "type": "small_airport", + "name": "Heaven's Landing Airport", + "latitude_deg": "34.914398193400004", + "longitude_deg": "-83.4597015381", + "elevation_ft": "2724", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Clayton", + "scheduled_service": "no", + "gps_code": "GE99", + "local_code": "GE99" + }, + { + "id": "35151", + "ident": "GECE", + "type": "heliport", + "name": "Ceuta Heliport", + "latitude_deg": "35.892657", + "longitude_deg": "-5.306321", + "elevation_ft": "8", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CE", + "municipality": "Ceuta", + "scheduled_service": "yes", + "gps_code": "GECE", + "iata_code": "JCU", + "home_link": "https://www.aena.es/en/ceuta.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ceuta_Heliport", + "keywords": "GECT" + }, + { + "id": "3093", + "ident": "GEML", + "type": "medium_airport", + "name": "Melilla Airport", + "latitude_deg": "35.2798", + "longitude_deg": "-2.95626", + "elevation_ft": "156", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-ML", + "municipality": "Melilla", + "scheduled_service": "yes", + "gps_code": "GEML", + "iata_code": "MLN", + "home_link": "https://www.aena.es/en/melilla.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Melilla_Airport" + }, + { + "id": "309161", + "ident": "GEW", + "type": "small_airport", + "name": "Gewoia Airport", + "latitude_deg": "-9.2263", + "longitude_deg": "148.4949", + "elevation_ft": "340", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "municipality": "Gewoia", + "scheduled_service": "no", + "gps_code": "AYGC", + "iata_code": "GEW", + "local_code": "GEW", + "keywords": "Gewoya Airstrip" + }, + { + "id": "41524", + "ident": "GF-0001", + "type": "small_airport", + "name": "Kourou Airport", + "latitude_deg": "5.176046", + "longitude_deg": "-52.694206", + "elevation_ft": "47", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-CY", + "municipality": "Kourou", + "scheduled_service": "no", + "gps_code": "SOOK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kourou_Airport", + "keywords": "QKR Kourou Off-line Point" + }, + { + "id": "41525", + "ident": "GF-0002", + "type": "small_airport", + "name": "Ouanary Airport", + "latitude_deg": "4.21009", + "longitude_deg": "-51.667702", + "elevation_ft": "40", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-CY", + "municipality": "Ouanary", + "scheduled_service": "no", + "keywords": "AG1657" + }, + { + "id": "318335", + "ident": "GF-0003", + "type": "small_airport", + "name": "Saint-Élie Airport", + "latitude_deg": "4.816117", + "longitude_deg": "-53.289505", + "elevation_ft": "440", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-CY", + "municipality": "Saint-Élie", + "scheduled_service": "no" + }, + { + "id": "318337", + "ident": "GF-0004", + "type": "small_airport", + "name": "Camopi Airport", + "latitude_deg": "3.172847", + "longitude_deg": "-52.336142", + "elevation_ft": "220", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-CY", + "municipality": "Camopi", + "scheduled_service": "no", + "gps_code": "SOOC", + "iata_code": "OYC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camopi_Airport", + "keywords": "Vila Brasil" + }, + { + "id": "340912", + "ident": "GF-0005", + "type": "heliport", + "name": "Guiana Space Centre West Heliport", + "latitude_deg": "5.168398", + "longitude_deg": "-52.688847", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-CY", + "municipality": "Kourou", + "scheduled_service": "no" + }, + { + "id": "340913", + "ident": "GF-0006", + "type": "heliport", + "name": "Guiana Space Centre East Heliport", + "latitude_deg": "5.168633", + "longitude_deg": "-52.682549", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-CY", + "municipality": "Kourou", + "scheduled_service": "no" + }, + { + "id": "340914", + "ident": "GF-0007", + "type": "heliport", + "name": "Île Royale Heliport", + "latitude_deg": "5.287424", + "longitude_deg": "-52.591953", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-CY", + "municipality": "Kourou", + "scheduled_service": "no" + }, + { + "id": "340915", + "ident": "GF-0008", + "type": "heliport", + "name": "Rosemond Hospital Helipad", + "latitude_deg": "4.922635", + "longitude_deg": "-52.321762", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-CY", + "municipality": "Cayenne", + "scheduled_service": "no" + }, + { + "id": "348614", + "ident": "GF-0009", + "type": "seaplane_base", + "name": "Camp Maripas Seaplane Base", + "latitude_deg": "5.04285", + "longitude_deg": "-52.68906", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-CY", + "municipality": "Kourou", + "scheduled_service": "no" + }, + { + "id": "348615", + "ident": "GF-0010", + "type": "small_airport", + "name": "Mana Airport", + "latitude_deg": "5.66342", + "longitude_deg": "-53.76469", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-SL", + "municipality": "Mana", + "scheduled_service": "no" + }, + { + "id": "348616", + "ident": "GF-0011", + "type": "seaplane_base", + "name": "Guyane Ultralight Seaplane Base", + "latitude_deg": "5.66061", + "longitude_deg": "-53.7764", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-SL", + "municipality": "Mana", + "scheduled_service": "no" + }, + { + "id": "348617", + "ident": "GF-0012", + "type": "small_airport", + "name": "Kouachinana Airport", + "latitude_deg": "5.6185", + "longitude_deg": "-53.68631", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-SL", + "municipality": "Mana", + "scheduled_service": "no" + }, + { + "id": "349348", + "ident": "GF-0013", + "type": "seaplane_base", + "name": "Montsinery Seaplane Base", + "latitude_deg": "4.89211", + "longitude_deg": "-52.49146", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-CY", + "municipality": "Montsinery", + "scheduled_service": "no", + "keywords": "LF97302" + }, + { + "id": "429769", + "ident": "GF-0014", + "type": "seaplane_base", + "name": "Terre Rouge Seaplane Base", + "latitude_deg": "5.449567", + "longitude_deg": "-54.054022", + "elevation_ft": "19", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-SL", + "municipality": "Saint-Laurent-du-Maroni", + "scheduled_service": "no", + "keywords": "LF97304" + }, + { + "id": "30799", + "ident": "GFBN", + "type": "closed", + "name": "Sherbro International Airport", + "latitude_deg": "7.53242", + "longitude_deg": "-12.5189", + "elevation_ft": "14", + "continent": "AF", + "iso_country": "SL", + "iso_region": "SL-S", + "municipality": "Bonthe", + "scheduled_service": "yes", + "gps_code": "GFBN", + "iata_code": "BTE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sherbro_International_Airport", + "keywords": "Bonthe Airport" + }, + { + "id": "31728", + "ident": "GFBO", + "type": "medium_airport", + "name": "Bo Airport", + "latitude_deg": "7.9444", + "longitude_deg": "-11.761", + "elevation_ft": "328", + "continent": "AF", + "iso_country": "SL", + "iso_region": "SL-S", + "municipality": "Bo", + "scheduled_service": "yes", + "gps_code": "GFBO", + "iata_code": "KBS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bo_Airport" + }, + { + "id": "17594", + "ident": "GFD", + "type": "small_airport", + "name": "Pope Field", + "latitude_deg": "39.790298461899994", + "longitude_deg": "-85.7360992432", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Greenfield", + "scheduled_service": "no", + "gps_code": "KGFD", + "iata_code": "GFD", + "local_code": "GFD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pope_Field_(Indiana)" + }, + { + "id": "31517", + "ident": "GFGK", + "type": "small_airport", + "name": "Gbangbatok Airport", + "latitude_deg": "7.812535", + "longitude_deg": "-12.377815", + "elevation_ft": "75", + "continent": "AF", + "iso_country": "SL", + "iso_region": "SL-S", + "municipality": "Gbangbatok", + "scheduled_service": "no", + "gps_code": "GFGK", + "iata_code": "GBK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gbangbatok_Airport" + }, + { + "id": "31525", + "ident": "GFHA", + "type": "small_airport", + "name": "Hastings Airport", + "latitude_deg": "8.394348", + "longitude_deg": "-13.128891", + "elevation_ft": "60", + "continent": "AF", + "iso_country": "SL", + "iso_region": "SL-W", + "municipality": "Freetown", + "scheduled_service": "no", + "gps_code": "GFHA", + "iata_code": "HGS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hastings_Airport" + }, + { + "id": "31721", + "ident": "GFKB", + "type": "small_airport", + "name": "Kabala Airport", + "latitude_deg": "9.638322913429999", + "longitude_deg": "-11.5155601501", + "elevation_ft": "1012", + "continent": "AF", + "iso_country": "SL", + "iso_region": "SL-N", + "municipality": "Kabala", + "scheduled_service": "no", + "gps_code": "GFKB", + "iata_code": "KBA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kabala_Airport" + }, + { + "id": "31741", + "ident": "GFKE", + "type": "medium_airport", + "name": "Kenema Airport", + "latitude_deg": "7.896364", + "longitude_deg": "-11.174126", + "elevation_ft": "485", + "continent": "AF", + "iso_country": "SL", + "iso_region": "SL-E", + "municipality": "Kenema", + "scheduled_service": "yes", + "gps_code": "GFKE", + "iata_code": "KEN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kenema_Airport" + }, + { + "id": "3095", + "ident": "GFLL", + "type": "large_airport", + "name": "Lungi International Airport", + "latitude_deg": "8.61644", + "longitude_deg": "-13.1955", + "elevation_ft": "84", + "continent": "AF", + "iso_country": "SL", + "iso_region": "SL-N", + "municipality": "Freetown (Lungi-Town)", + "scheduled_service": "yes", + "gps_code": "GFLL", + "iata_code": "FNA", + "home_link": "http://www.freetownairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lungi_International_Airport" + }, + { + "id": "31526", + "ident": "GFTO", + "type": "small_airport", + "name": "Tongo Airport", + "latitude_deg": "8.217000007629395", + "longitude_deg": "-11.067000389099121", + "elevation_ft": "750", + "continent": "AF", + "iso_country": "SL", + "iso_region": "SL-E", + "municipality": "Tongo", + "scheduled_service": "no", + "gps_code": "GFTO" + }, + { + "id": "32689", + "ident": "GFYE", + "type": "medium_airport", + "name": "Yengema Airport", + "latitude_deg": "8.610469818115234", + "longitude_deg": "-11.04539966583252", + "elevation_ft": "1300", + "continent": "AF", + "iso_country": "SL", + "iso_region": "SL-E", + "municipality": "Yengema", + "scheduled_service": "yes", + "gps_code": "GFYE", + "iata_code": "WYE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yengema_Airport" + }, + { + "id": "319196", + "ident": "GG-0001", + "type": "closed", + "name": "L'Erée Aerodrome", + "latitude_deg": "49.456424", + "longitude_deg": "-2.648456", + "continent": "EU", + "iso_country": "GG", + "iso_region": "GG-U-A", + "municipality": "L'Erée", + "scheduled_service": "no" + }, + { + "id": "3156", + "ident": "GG64", + "type": "small_airport", + "name": "Quebo Airport", + "latitude_deg": "11.536858", + "longitude_deg": "-14.761904", + "elevation_ft": "165", + "continent": "AF", + "iso_country": "GW", + "iso_region": "GW-TO", + "municipality": "Quebo", + "scheduled_service": "no", + "gps_code": "GG64", + "local_code": "GG64", + "keywords": "Aldeia" + }, + { + "id": "39588", + "ident": "GGBF", + "type": "small_airport", + "name": "Bafatá Airport", + "latitude_deg": "12.176437", + "longitude_deg": "-14.657811", + "elevation_ft": "144", + "continent": "AF", + "iso_country": "GW", + "iso_region": "GW-BA", + "municipality": "Bafatá", + "scheduled_service": "no", + "gps_code": "GGBF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bafatá_Airport" + }, + { + "id": "39587", + "ident": "GGBU", + "type": "small_airport", + "name": "Bubaque Airport", + "latitude_deg": "11.297355651855469", + "longitude_deg": "-15.838079452514648", + "continent": "AF", + "iso_country": "GW", + "iso_region": "GW-BL", + "municipality": "Bubaque", + "scheduled_service": "no", + "gps_code": "GGBU", + "iata_code": "BQE" + }, + { + "id": "3096", + "ident": "GGCF", + "type": "small_airport", + "name": "Cufar Airport", + "latitude_deg": "11.2878999710083", + "longitude_deg": "-15.180500030517578", + "elevation_ft": "65", + "continent": "AF", + "iso_country": "GW", + "iso_region": "GW-TO", + "municipality": "Cufar", + "scheduled_service": "no", + "gps_code": "GGCF" + }, + { + "id": "318892", + "ident": "GGGB", + "type": "small_airport", + "name": "Gabu Airport", + "latitude_deg": "12.292002", + "longitude_deg": "-14.236044", + "elevation_ft": "223", + "continent": "AF", + "iso_country": "GW", + "iso_region": "GW-GA", + "municipality": "Gabu", + "scheduled_service": "no", + "gps_code": "GGGB" + }, + { + "id": "3097", + "ident": "GGOV", + "type": "medium_airport", + "name": "Osvaldo Vieira International Airport", + "latitude_deg": "11.894800186157227", + "longitude_deg": "-15.65369987487793", + "elevation_ft": "129", + "continent": "AF", + "iso_country": "GW", + "iso_region": "GW-BS", + "municipality": "Bissau", + "scheduled_service": "yes", + "gps_code": "GGOV", + "iata_code": "OXB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Osvaldo_Vieira_International_Airport" + }, + { + "id": "322506", + "ident": "GH-0001", + "type": "small_airport", + "name": "Kpong Airfield", + "latitude_deg": "6.114864", + "longitude_deg": "0.057761", + "elevation_ft": "89", + "continent": "AF", + "iso_country": "GH", + "iso_region": "GH-EP", + "municipality": "Kpong", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kpong_Airfield" + }, + { + "id": "331006", + "ident": "GH-0002", + "type": "small_airport", + "name": "Ajena Airstrip", + "latitude_deg": "6.322619", + "longitude_deg": "0.087893", + "elevation_ft": "485", + "continent": "AF", + "iso_country": "GH", + "iso_region": "GH-EP", + "municipality": "Ajena", + "scheduled_service": "no" + }, + { + "id": "341704", + "ident": "GH-0003", + "type": "heliport", + "name": "37 Military Hospital Helipad", + "latitude_deg": "5.592844", + "longitude_deg": "-0.185487", + "continent": "AF", + "iso_country": "GH", + "iso_region": "GH-AA", + "municipality": "Accra", + "scheduled_service": "no" + }, + { + "id": "341705", + "ident": "GH-0004", + "type": "heliport", + "name": "Ghana Police Headquarters Heliport", + "latitude_deg": "5.571424", + "longitude_deg": "-0.187866", + "continent": "AF", + "iso_country": "GH", + "iso_region": "GH-AA", + "municipality": "Accra", + "scheduled_service": "no" + }, + { + "id": "341706", + "ident": "GH-0005", + "type": "heliport", + "name": "Presidential Villa Heliport", + "latitude_deg": "5.578062", + "longitude_deg": "-0.189073", + "continent": "AF", + "iso_country": "GH", + "iso_region": "GH-AA", + "municipality": "Accra", + "scheduled_service": "no" + }, + { + "id": "341707", + "ident": "GH-0006", + "type": "heliport", + "name": "Anglogold Ashanti Obuasi Mine Helipad", + "latitude_deg": "6.171862", + "longitude_deg": "-1.693507", + "continent": "AF", + "iso_country": "GH", + "iso_region": "GH-AH", + "municipality": "Obuasi", + "scheduled_service": "no" + }, + { + "id": "341708", + "ident": "GH-0007", + "type": "heliport", + "name": "White Sands Resort Helipad", + "latitude_deg": "5.427377", + "longitude_deg": "-0.468884", + "continent": "AF", + "iso_country": "GH", + "iso_region": "GH-CP", + "municipality": "Gomoa Fetteh", + "scheduled_service": "no" + }, + { + "id": "341709", + "ident": "GH-0008", + "type": "heliport", + "name": "Octagon Helipad", + "latitude_deg": "5.552162", + "longitude_deg": "-0.203391", + "continent": "AF", + "iso_country": "GH", + "iso_region": "GH-CP", + "municipality": "Accra", + "scheduled_service": "no" + }, + { + "id": "341710", + "ident": "GH-0009", + "type": "heliport", + "name": "Komfo Anokye Hospital Helipad", + "latitude_deg": "6.695823", + "longitude_deg": "-1.627837", + "continent": "AF", + "iso_country": "GH", + "iso_region": "GH-AH", + "municipality": "Kumasi", + "scheduled_service": "no" + }, + { + "id": "309162", + "ident": "GHE", + "type": "small_airport", + "name": "Garachiné Airport", + "latitude_deg": "8.0644", + "longitude_deg": "-78.3673", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-5", + "municipality": "Garachiné", + "scheduled_service": "no", + "iata_code": "GHE" + }, + { + "id": "308082", + "ident": "GIG", + "type": "small_airport", + "name": "Black Diamond/Flying R Ranch Airport", + "latitude_deg": "50.645", + "longitude_deg": "-114.203", + "elevation_ft": "4060", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-AB", + "scheduled_service": "no", + "gps_code": "CBD8", + "local_code": "CBD8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Black_Diamond/Flying_R_Ranch_Aerodrome" + }, + { + "id": "299108", + "ident": "GL-0001", + "type": "small_airport", + "name": "NEEM Camp Skiway", + "latitude_deg": "79.45", + "longitude_deg": "-51.006", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/NEEM_Camp" + }, + { + "id": "44053", + "ident": "GL-0002", + "type": "small_airport", + "name": "Gisp Ice Landing Strip", + "latitude_deg": "72.59619", + "longitude_deg": "-38.42145", + "elevation_ft": "10545", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Summit Station", + "scheduled_service": "no", + "keywords": "GISGA" + }, + { + "id": "44064", + "ident": "GL-0003", + "type": "small_airport", + "name": "North Grip Ice Landingstrip", + "latitude_deg": "75.0999984741211", + "longitude_deg": "-42.31666564941406", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "scheduled_service": "no", + "keywords": "GIRPA" + }, + { + "id": "44067", + "ident": "GL-0004", + "type": "heliport", + "name": "Raven Ice Landingstrip", + "latitude_deg": "66.31666564941406", + "longitude_deg": "-46.28333282470703", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "scheduled_service": "no", + "keywords": "RABVA" + }, + { + "id": "44071", + "ident": "GL-0005", + "type": "small_airport", + "name": "Sødalen Landingstrip", + "latitude_deg": "68.16666412353516", + "longitude_deg": "-31.516666412353516", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Sodalen", + "scheduled_service": "no", + "keywords": "SUDUL" + }, + { + "id": "44073", + "ident": "GL-0006", + "type": "small_airport", + "name": "Summit Ice Landing Strip", + "latitude_deg": "72.616669", + "longitude_deg": "-38.5", + "elevation_ft": "10523", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Summit Station", + "scheduled_service": "no", + "keywords": "SUMUD" + }, + { + "id": "44077", + "ident": "GL-0007", + "type": "small_airport", + "name": "Zackenberg Airport", + "latitude_deg": "74.46925", + "longitude_deg": "-20.56234", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Zackenberg", + "scheduled_service": "no", + "keywords": "BERSO" + }, + { + "id": "314700", + "ident": "GL-0008", + "type": "closed", + "name": "Camp Tuto Airport", + "latitude_deg": "76.4288", + "longitude_deg": "-68.3378", + "elevation_ft": "1664", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_TUTO" + }, + { + "id": "324834", + "ident": "GL-0009", + "type": "small_airport", + "name": "Kraulshavn Icestrip", + "latitude_deg": "74.10251", + "longitude_deg": "-57.40493", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "scheduled_service": "no" + }, + { + "id": "349352", + "ident": "GL-0010", + "type": "closed", + "name": "Brønlundhus Seaplane Base", + "latitude_deg": "82.180635", + "longitude_deg": "-31.164313", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Peary Land", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Br%C3%B8nlundhus" + }, + { + "id": "356244", + "ident": "GL-0011", + "type": "small_airport", + "name": "Ikateq Airport", + "latitude_deg": "65.939055", + "longitude_deg": "-36.677856", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Iqateq", + "scheduled_service": "no", + "keywords": "Bluie East Two" + }, + { + "id": "429724", + "ident": "GL-0012", + "type": "closed", + "name": "Qaqortoq Airport (under construction)", + "latitude_deg": "60.76383", + "longitude_deg": "-46.05973", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Qaqortoq", + "scheduled_service": "no" + }, + { + "id": "429725", + "ident": "GL-0013", + "type": "closed", + "name": "Teague Field", + "latitude_deg": "63.4319", + "longitude_deg": "-51.1533", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Sermersooq", + "scheduled_service": "no", + "keywords": "Bluie West Four, Marraq" + }, + { + "id": "35287", + "ident": "GL-JGR", + "type": "heliport", + "name": "Groennedal Heliport", + "latitude_deg": "61.233299", + "longitude_deg": "-48.099998", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Groennedal", + "scheduled_service": "yes", + "iata_code": "JGR" + }, + { + "id": "35284", + "ident": "GL-QCU", + "type": "heliport", + "name": "Akunaq Heliport", + "latitude_deg": "68.7442728315", + "longitude_deg": "-52.340369224499995", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "scheduled_service": "yes", + "gps_code": "BGAK", + "iata_code": "QCU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Akunnaaq_Heliport", + "keywords": "Akunnaaq" + }, + { + "id": "35288", + "ident": "GL-QFI", + "type": "heliport", + "name": "Iginniarfik Heliport", + "latitude_deg": "68.699997", + "longitude_deg": "-52.966702", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "scheduled_service": "no" + }, + { + "id": "31533", + "ident": "GLBU", + "type": "small_airport", + "name": "Buchanan Airport", + "latitude_deg": "5.905503", + "longitude_deg": "-10.058262", + "elevation_ft": "41", + "continent": "AF", + "iso_country": "LR", + "iso_region": "LR-GB", + "municipality": "Buchanan", + "scheduled_service": "no", + "gps_code": "GLBU", + "iata_code": "UCN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buchanan_Airport" + }, + { + "id": "31535", + "ident": "GLCM", + "type": "closed", + "name": "Robertsport/Cape Mount Airport", + "latitude_deg": "6.755241", + "longitude_deg": "-11.3554", + "elevation_ft": "10", + "continent": "AF", + "iso_country": "LR", + "iso_region": "LR-CM", + "municipality": "Robertsport/Cape Mount", + "scheduled_service": "no", + "gps_code": "GLCM" + }, + { + "id": "30844", + "ident": "GLCP", + "type": "small_airport", + "name": "Cape Palmas Airport", + "latitude_deg": "4.3790202140808105", + "longitude_deg": "-7.6969499588012695", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "LR", + "iso_region": "LR-MY", + "municipality": "Harper", + "scheduled_service": "no", + "gps_code": "GLCP", + "iata_code": "CPA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cape_Palmas_Airport", + "keywords": "A. Tubman Airport" + }, + { + "id": "32335", + "ident": "GLGE", + "type": "small_airport", + "name": "Greenville/Sinoe Airport", + "latitude_deg": "5.032124", + "longitude_deg": "-9.064236", + "elevation_ft": "10", + "continent": "AF", + "iso_country": "LR", + "iso_region": "LR-SI", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "GLGE", + "iata_code": "SNI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greenville/Sinoe_Airport", + "keywords": "R E Murray" + }, + { + "id": "31538", + "ident": "GLLB", + "type": "small_airport", + "name": "Lamco Airport", + "latitude_deg": "5.856911", + "longitude_deg": "-10.021473", + "elevation_ft": "30", + "continent": "AF", + "iso_country": "LR", + "iso_region": "LR-GB", + "municipality": "Buchanan", + "scheduled_service": "no", + "gps_code": "GLLB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lamco_Airport" + }, + { + "id": "3098", + "ident": "GLMR", + "type": "medium_airport", + "name": "Spriggs Payne Airport", + "latitude_deg": "6.289060115814209", + "longitude_deg": "-10.758700370788574", + "elevation_ft": "25", + "continent": "AF", + "iso_country": "LR", + "iso_region": "LR-MO", + "municipality": "Monrovia", + "scheduled_service": "yes", + "gps_code": "GLMR", + "iata_code": "MLW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Spriggs_Payne_Airport" + }, + { + "id": "32028", + "ident": "GLNA", + "type": "small_airport", + "name": "Nimba Airport", + "latitude_deg": "7.494459", + "longitude_deg": "-8.584514", + "elevation_ft": "1632", + "continent": "AF", + "iso_country": "LR", + "iso_region": "LR-NI", + "municipality": "Nimba", + "scheduled_service": "no", + "gps_code": "GLNA", + "iata_code": "NIA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nimba_Airport" + }, + { + "id": "309179", + "ident": "GLP", + "type": "small_airport", + "name": "Gulgubip Airport", + "latitude_deg": "-5.2808", + "longitude_deg": "141.5411", + "elevation_ft": "4900", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Gulgubip", + "scheduled_service": "no", + "gps_code": "AYUP", + "iata_code": "GLP", + "local_code": "GUP" + }, + { + "id": "3099", + "ident": "GLRB", + "type": "large_airport", + "name": "Roberts International Airport", + "latitude_deg": "6.23379", + "longitude_deg": "-10.3623", + "elevation_ft": "31", + "continent": "AF", + "iso_country": "LR", + "iso_region": "LR-MG", + "municipality": "Monrovia", + "scheduled_service": "yes", + "gps_code": "GLRB", + "iata_code": "ROB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roberts_International_Airport" + }, + { + "id": "43203", + "ident": "GLST", + "type": "small_airport", + "name": "Sasstown Airport", + "latitude_deg": "4.681845", + "longitude_deg": "-8.434668", + "elevation_ft": "6", + "continent": "AF", + "iso_country": "LR", + "iso_region": "LR-GK", + "municipality": "Sasstown", + "scheduled_service": "no", + "gps_code": "GLST", + "iata_code": "SAZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sasstown_Airport" + }, + { + "id": "32443", + "ident": "GLTN", + "type": "small_airport", + "name": "Tchien Airport", + "latitude_deg": "6.04565", + "longitude_deg": "-8.138723", + "elevation_ft": "790", + "continent": "AF", + "iso_country": "LR", + "iso_region": "LR-GG", + "municipality": "Zwedru", + "scheduled_service": "no", + "gps_code": "GLTN", + "iata_code": "THC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tchien_Airport" + }, + { + "id": "32590", + "ident": "GLVA", + "type": "small_airport", + "name": "Voinjama Airport", + "latitude_deg": "8.32347", + "longitude_deg": "-9.769249", + "elevation_ft": "1400", + "continent": "AF", + "iso_country": "LR", + "iso_region": "LR-LO", + "municipality": "Voinjama", + "scheduled_service": "no", + "gps_code": "GLVA", + "iata_code": "VOI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Voinjama_Airport" + }, + { + "id": "3100", + "ident": "GMAA", + "type": "small_airport", + "name": "Inezgane Airport", + "latitude_deg": "30.381399", + "longitude_deg": "-9.54631", + "elevation_ft": "89", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-AGD", + "municipality": "Inezgane", + "scheduled_service": "no", + "gps_code": "GMAA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Inezgane_Airport", + "keywords": "Agadir-Inezgane Airport, Inezgane Air Base" + }, + { + "id": "3101", + "ident": "GMAD", + "type": "medium_airport", + "name": "Al Massira Airport", + "latitude_deg": "30.322478", + "longitude_deg": "-9.412003", + "elevation_ft": "250", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-AGD", + "municipality": "Agadir (Temsia)", + "scheduled_service": "yes", + "gps_code": "GMAD", + "iata_code": "AGA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Al_Massira_Airport" + }, + { + "id": "332605", + "ident": "GMAR", + "type": "small_airport", + "name": "Al Mahbes Airstrip", + "latitude_deg": "27.409695", + "longitude_deg": "-9.073016", + "elevation_ft": "1520", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Al Mahbes", + "scheduled_service": "no", + "local_code": "AG5964" + }, + { + "id": "3102", + "ident": "GMAT", + "type": "medium_airport", + "name": "Tan Tan Airport", + "latitude_deg": "28.448200225830078", + "longitude_deg": "-11.161299705505371", + "elevation_ft": "653", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-TNT", + "municipality": "Tan Tan", + "scheduled_service": "yes", + "gps_code": "GMAT", + "iata_code": "TTA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tan_Tan_Airport", + "keywords": "Plage Blanche Airport" + }, + { + "id": "30573", + "ident": "GMAZ", + "type": "small_airport", + "name": "Zagora Airport", + "latitude_deg": "30.320299", + "longitude_deg": "-5.86667", + "elevation_ft": "2631", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-TIZ", + "municipality": "Zagora", + "scheduled_service": "no" + }, + { + "id": "30228", + "ident": "GMFA", + "type": "small_airport", + "name": "Ouezzane Airport", + "latitude_deg": "34.793361", + "longitude_deg": "-5.635986", + "elevation_ft": "571", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-TET", + "municipality": "Beni Malek", + "scheduled_service": "no", + "gps_code": "GMFA" + }, + { + "id": "300605", + "ident": "GMFB", + "type": "medium_airport", + "name": "Bouarfa Airport", + "latitude_deg": "32.5143055556", + "longitude_deg": "-1.98305555556", + "elevation_ft": "3630", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-FIG", + "municipality": "Bouarfa", + "scheduled_service": "no", + "gps_code": "GMFB", + "iata_code": "UAR" + }, + { + "id": "3103", + "ident": "GMFF", + "type": "medium_airport", + "name": "Fes Saïss International Airport", + "latitude_deg": "33.927299", + "longitude_deg": "-4.97796", + "elevation_ft": "1900", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-FES", + "municipality": "Saïss", + "scheduled_service": "yes", + "gps_code": "GMFF", + "iata_code": "FEZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sa%C3%AFss_Airport" + }, + { + "id": "3104", + "ident": "GMFI", + "type": "small_airport", + "name": "Ifran Airport", + "latitude_deg": "33.505299", + "longitude_deg": "-5.1529", + "elevation_ft": "5459", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-IFR", + "municipality": "Ifran", + "scheduled_service": "no", + "gps_code": "GMFI" + }, + { + "id": "3105", + "ident": "GMFK", + "type": "medium_airport", + "name": "Moulay Ali Cherif Airport", + "latitude_deg": "31.9475002289", + "longitude_deg": "-4.39833021164", + "elevation_ft": "3428", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-ERR", + "municipality": "Errachidia", + "scheduled_service": "yes", + "gps_code": "GMFK", + "iata_code": "ERH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moulay_Ali_Cherif_Airport" + }, + { + "id": "3106", + "ident": "GMFM", + "type": "medium_airport", + "name": "Bassatine Airport", + "latitude_deg": "33.87910079956055", + "longitude_deg": "-5.515120029449463", + "elevation_ft": "1890", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-MEK", + "municipality": "Meknes", + "scheduled_service": "no", + "gps_code": "GMFM", + "iata_code": "MEK" + }, + { + "id": "31541", + "ident": "GMFN", + "type": "closed", + "name": "Taouima Nador Airport", + "latitude_deg": "35.152986", + "longitude_deg": "-2.918673", + "elevation_ft": "10", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-NAD", + "municipality": "Nador", + "scheduled_service": "no", + "keywords": "GMFN" + }, + { + "id": "3107", + "ident": "GMFO", + "type": "medium_airport", + "name": "Oujda Angads Airport", + "latitude_deg": "34.789558", + "longitude_deg": "-1.926041", + "elevation_ft": "1535", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-OUJ", + "municipality": "Ahl Angad", + "scheduled_service": "yes", + "gps_code": "GMFO", + "iata_code": "OUD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Angads_Airport", + "keywords": "Oujda Airfield" + }, + { + "id": "29867", + "ident": "GMFU", + "type": "closed", + "name": "Fes Sefrou Airport", + "latitude_deg": "34.008099", + "longitude_deg": "-4.96556", + "elevation_ft": "1539", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-FES", + "municipality": "Fes", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sefrou_Airport", + "keywords": "GMFU" + }, + { + "id": "30474", + "ident": "GMFZ", + "type": "small_airport", + "name": "Taza Airport", + "latitude_deg": "34.231887", + "longitude_deg": "-3.94701", + "elevation_ft": "1890", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-TAZ", + "municipality": "Taza", + "scheduled_service": "no", + "gps_code": "GMFZ" + }, + { + "id": "3108", + "ident": "GMMA", + "type": "medium_airport", + "name": "Smara Airport", + "latitude_deg": "26.731987", + "longitude_deg": "-11.683655", + "elevation_ft": "350", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Smara", + "scheduled_service": "yes", + "gps_code": "GMMA", + "iata_code": "SMW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Smara_Airport", + "keywords": "GSMA, Semara" + }, + { + "id": "31544", + "ident": "GMMB", + "type": "small_airport", + "name": "Ben Slimane Airport", + "latitude_deg": "33.655399", + "longitude_deg": "-7.22145", + "elevation_ft": "627", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-CAS", + "municipality": "Ben Slimane", + "scheduled_service": "no", + "gps_code": "GMMB", + "iata_code": "GMD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ben_Slimane_Airport" + }, + { + "id": "29758", + "ident": "GMMC", + "type": "closed", + "name": "Anfa Airport", + "latitude_deg": "33.5532989502", + "longitude_deg": "-7.661389827730001", + "elevation_ft": "200", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-CAS", + "municipality": "Casablanca", + "scheduled_service": "no", + "gps_code": "GMMC", + "iata_code": "CAS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Casablanca-Anfa_Airport" + }, + { + "id": "29694", + "ident": "GMMD", + "type": "small_airport", + "name": "Beni Mellal Airport", + "latitude_deg": "32.401895", + "longitude_deg": "-6.315905", + "elevation_ft": "1694", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-BEM", + "municipality": "Oulad Yaich", + "scheduled_service": "yes", + "gps_code": "GMMD", + "iata_code": "BEM", + "home_link": "http://ww.onda.ma", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beni_Mellal_Airport" + }, + { + "id": "3109", + "ident": "GMME", + "type": "medium_airport", + "name": "Rabat-Salé Airport", + "latitude_deg": "34.051498", + "longitude_deg": "-6.75152", + "elevation_ft": "276", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-RBA", + "municipality": "Rabat", + "scheduled_service": "yes", + "gps_code": "GMME", + "iata_code": "RBA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sale_Airport" + }, + { + "id": "30412", + "ident": "GMMF", + "type": "closed", + "name": "Sidi Ifni Airport", + "latitude_deg": "29.368889", + "longitude_deg": "-10.180278", + "elevation_ft": "190", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-BAH", + "municipality": "Sidi Ifni", + "scheduled_service": "no", + "gps_code": "GMMF", + "iata_code": "SII", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sidi_Ifni_Airport" + }, + { + "id": "3110", + "ident": "GMMH", + "type": "medium_airport", + "name": "Dakhla Airport", + "latitude_deg": "23.7183", + "longitude_deg": "-15.932", + "elevation_ft": "36", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "Dakhla", + "scheduled_service": "yes", + "gps_code": "GMMH", + "iata_code": "VIL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dakhla_Airport", + "keywords": "GSVO, Villa Cisneros, Dajla, Oued Ed-Dahab" + }, + { + "id": "3111", + "ident": "GMMI", + "type": "medium_airport", + "name": "Essaouira-Mogador Airport", + "latitude_deg": "31.397499", + "longitude_deg": "-9.68167", + "elevation_ft": "384", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-ESI", + "municipality": "Essaouira", + "scheduled_service": "yes", + "gps_code": "GMMI", + "iata_code": "ESU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Essaouira-Mogador_Airport" + }, + { + "id": "29845", + "ident": "GMMJ", + "type": "closed", + "name": "El Jadida Airport", + "latitude_deg": "33.233299", + "longitude_deg": "-8.51667", + "elevation_ft": "92", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-JDI", + "municipality": "El Jadida", + "scheduled_service": "no", + "gps_code": "GMMJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Jadida_Airport" + }, + { + "id": "3112", + "ident": "GMML", + "type": "medium_airport", + "name": "Hassan I Airport", + "latitude_deg": "27.142467", + "longitude_deg": "-13.224947", + "elevation_ft": "207", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "El Aaiún", + "scheduled_service": "yes", + "gps_code": "GMML", + "iata_code": "EUN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hassan_Airport", + "keywords": "GSAI, Laâyoune" + }, + { + "id": "3113", + "ident": "GMMN", + "type": "large_airport", + "name": "Mohammed V International Airport", + "latitude_deg": "33.36750030517578", + "longitude_deg": "-7.589970111846924", + "elevation_ft": "656", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-CAS", + "municipality": "Casablanca", + "scheduled_service": "yes", + "gps_code": "GMMN", + "iata_code": "CMN", + "home_link": "http://www.onda.ma/ONDA/Fr/Espaces/EspacePassagers/LeReseauAeroportuaireONDA/Lesaeroports/Fiches+d%E2%80%99identit%C3%A9+par+a%C", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mohammed_V_International_Airport", + "keywords": "CAS, Casabianca, Nouasseur" + }, + { + "id": "30472", + "ident": "GMMO", + "type": "small_airport", + "name": "Taroudant Airport", + "latitude_deg": "30.503487", + "longitude_deg": "-8.821549", + "elevation_ft": "869", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-TAR", + "municipality": "Taroudant", + "scheduled_service": "no", + "gps_code": "GMMO", + "wikipedia_link": "https://en.m.wikipedia.org/wiki/Taroudannt_Airport" + }, + { + "id": "30369", + "ident": "GMMS", + "type": "closed", + "name": "Safi Airport", + "latitude_deg": "32.275414", + "longitude_deg": "-9.234266", + "elevation_ft": "171", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-TIZ", + "municipality": "Safi", + "scheduled_service": "no", + "gps_code": "GMMS", + "iata_code": "SFI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Safi_Airport" + }, + { + "id": "29759", + "ident": "GMMT", + "type": "small_airport", + "name": "Casablanca Tit Mellil Airport", + "latitude_deg": "33.5975", + "longitude_deg": "-7.465", + "elevation_ft": "322", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-CAS", + "municipality": "Casablanca", + "scheduled_service": "no", + "gps_code": "GMMT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Casablanca_Tit_Mellil_Airport" + }, + { + "id": "3114", + "ident": "GMMW", + "type": "medium_airport", + "name": "Nador Al Aaroui International Airport", + "latitude_deg": "34.9888", + "longitude_deg": "-3.02821", + "elevation_ft": "574", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-NAD", + "municipality": "Al Aaroui", + "scheduled_service": "yes", + "gps_code": "GMMW", + "iata_code": "NDR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nador_International_Airport", + "keywords": "Al Aroui International Airport, Arwi" + }, + { + "id": "3115", + "ident": "GMMX", + "type": "medium_airport", + "name": "Menara Airport", + "latitude_deg": "31.606899261499997", + "longitude_deg": "-8.03629970551", + "elevation_ft": "1545", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-MAR", + "municipality": "Marrakech", + "scheduled_service": "yes", + "gps_code": "GMMX", + "iata_code": "RAK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Menara_International_Airport", + "keywords": "Marakesh, Marrakesh" + }, + { + "id": "3116", + "ident": "GMMY", + "type": "medium_airport", + "name": "Kenitra Air Base", + "latitude_deg": "34.298901", + "longitude_deg": "-6.59588", + "elevation_ft": "16", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-KEN", + "municipality": "Kenitra", + "scheduled_service": "no", + "gps_code": "GMMY", + "iata_code": "NNA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kenitra_Air_Base", + "keywords": "Craw Field, Naval Air Station Port Lyautey" + }, + { + "id": "3117", + "ident": "GMMZ", + "type": "medium_airport", + "name": "Ouarzazate Airport", + "latitude_deg": "30.9391002655", + "longitude_deg": "-6.909430027010001", + "elevation_ft": "3782", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-OUA", + "municipality": "Ouarzazate", + "scheduled_service": "yes", + "gps_code": "GMMZ", + "iata_code": "OZZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ouarzazate_Airport" + }, + { + "id": "319715", + "ident": "GMQ", + "type": "medium_airport", + "name": "Golog Maqên Airport", + "latitude_deg": "34.418066", + "longitude_deg": "100.301144", + "elevation_ft": "12426", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-63", + "municipality": "Golog (Maqên)", + "scheduled_service": "yes", + "gps_code": "ZLGL", + "iata_code": "GMQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Golog_Maqin_Airport", + "keywords": "Guoluo Maqin, Maqên, Maqin" + }, + { + "id": "3118", + "ident": "GMSL", + "type": "small_airport", + "name": "Sidi Slimane Airport", + "latitude_deg": "34.2305984497", + "longitude_deg": "-6.05013990402", + "elevation_ft": "179", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-KEN", + "municipality": "Sidi Slimane", + "scheduled_service": "no", + "gps_code": "GMSL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sidi_Slimane_Air_Base", + "keywords": "Sidi Slimane Air Base" + }, + { + "id": "3119", + "ident": "GMTA", + "type": "medium_airport", + "name": "Cherif Al Idrissi Airport", + "latitude_deg": "35.177101135253906", + "longitude_deg": "-3.83951997756958", + "elevation_ft": "95", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-HOC", + "municipality": "Al Hoceima", + "scheduled_service": "yes", + "gps_code": "GMTA", + "iata_code": "AHU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cherif_Al_Idrissi_Airport" + }, + { + "id": "3120", + "ident": "GMTN", + "type": "medium_airport", + "name": "Sania Ramel Airport", + "latitude_deg": "35.594299", + "longitude_deg": "-5.32002", + "elevation_ft": "10", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-TET", + "municipality": "Tétouan", + "scheduled_service": "no", + "gps_code": "GMTN", + "iata_code": "TTU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sania_Ramel_Airport", + "keywords": "Saniat R'mel, Saniet R'mel" + }, + { + "id": "3121", + "ident": "GMTT", + "type": "medium_airport", + "name": "Tangier Ibn Battuta Airport", + "latitude_deg": "35.731741", + "longitude_deg": "-5.921459", + "elevation_ft": "62", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-TNG", + "municipality": "Tangier", + "scheduled_service": "yes", + "gps_code": "GMTT", + "iata_code": "TNG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tangier_Ibn_Battouta_Airport", + "keywords": "Tanger-Boukhalef Airport, Aéroport de Tanger-Ibn Battouta" + }, + { + "id": "318900", + "ident": "GN-0001", + "type": "small_airport", + "name": "Kiniéro Airport", + "latitude_deg": "10.42242", + "longitude_deg": "-9.77592", + "elevation_ft": "1375", + "continent": "AF", + "iso_country": "GN", + "iso_region": "GN-K", + "municipality": "Kiniéro", + "scheduled_service": "no", + "local_code": "GUNE" + }, + { + "id": "353584", + "ident": "GN-0002", + "type": "heliport", + "name": "Île Tamara Heliport", + "latitude_deg": "9.47995", + "longitude_deg": "-13.83193", + "elevation_ft": "364", + "continent": "AF", + "iso_country": "GN", + "iso_region": "GN-C", + "municipality": "Île Tamara", + "scheduled_service": "no" + }, + { + "id": "332662", + "ident": "GNE", + "type": "closed", + "name": "Sint-Denijs-Westrem Airport", + "latitude_deg": "51.025956", + "longitude_deg": "3.688231", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "BE", + "iso_region": "BE-VOV", + "municipality": "Gent", + "scheduled_service": "no", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Vliegveld_Sint-Denijs-Westrem", + "keywords": "GNE, EBGT" + }, + { + "id": "17596", + "ident": "GNI", + "type": "seaplane_base", + "name": "Grand Isle Seaplane Base", + "latitude_deg": "29.262699", + "longitude_deg": "-89.961197", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Grand Isle", + "scheduled_service": "no", + "gps_code": "KGNI", + "local_code": "GNI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Isle_Seaplane_Base" + }, + { + "id": "17597", + "ident": "GNU", + "type": "small_airport", + "name": "Goodnews Airport", + "latitude_deg": "59.117401123", + "longitude_deg": "-161.57699585", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Goodnews", + "scheduled_service": "no", + "gps_code": "GNU", + "iata_code": "GNU", + "local_code": "GNU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Goodnews_Airport" + }, + { + "id": "6196", + "ident": "GO66", + "type": "small_airport", + "name": "Dodji Airport", + "latitude_deg": "15.543899536132812", + "longitude_deg": "-14.95829963684082", + "elevation_ft": "66", + "continent": "AF", + "iso_country": "SN", + "iso_region": "SN-LG", + "municipality": "Dodji", + "scheduled_service": "no", + "gps_code": "GO66", + "local_code": "GO66" + }, + { + "id": "322380", + "ident": "GOAD", + "type": "small_airport", + "name": "Goads field", + "latitude_deg": "35.41423", + "longitude_deg": "-91.402483", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Bradford", + "scheduled_service": "no", + "gps_code": "GOAD" + }, + { + "id": "325736", + "ident": "GOBD", + "type": "large_airport", + "name": "Blaise Diagne International Airport", + "latitude_deg": "14.67", + "longitude_deg": "-17.073333", + "elevation_ft": "290", + "continent": "AF", + "iso_country": "SN", + "iso_region": "SN-DK", + "municipality": "Dakar", + "scheduled_service": "yes", + "gps_code": "GOBD", + "iata_code": "DSS", + "home_link": "http://www.dakaraeroport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Blaise_Diagne_International_Airport", + "keywords": "dakar,new dakar airport, dakar airport, diass airport" + }, + { + "id": "309180", + "ident": "GOC", + "type": "small_airport", + "name": "Gora Airstrip", + "latitude_deg": "-9.0021", + "longitude_deg": "148.2364", + "elevation_ft": "2497", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "municipality": "Gora", + "scheduled_service": "no", + "gps_code": "AYGX", + "iata_code": "GOC", + "local_code": "GORA" + }, + { + "id": "6197", + "ident": "GODK", + "type": "small_airport", + "name": "Kolda North Airport", + "latitude_deg": "12.898500442504883", + "longitude_deg": "-14.968099594116211", + "elevation_ft": "33", + "continent": "AF", + "iso_country": "SN", + "iso_region": "SN-KD", + "municipality": "Kolda", + "scheduled_service": "no", + "gps_code": "GODK", + "iata_code": "KDA", + "local_code": "GODK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kolda_North_Airport" + }, + { + "id": "3122", + "ident": "GOGG", + "type": "medium_airport", + "name": "Ziguinchor Airport", + "latitude_deg": "12.5556", + "longitude_deg": "-16.281799", + "elevation_ft": "75", + "continent": "AF", + "iso_country": "SN", + "iso_region": "SN-ZG", + "municipality": "Ziguinchor", + "scheduled_service": "yes", + "gps_code": "GOGG", + "iata_code": "ZIG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ziguinchor_Airport", + "keywords": "Basse Casamance" + }, + { + "id": "3123", + "ident": "GOGS", + "type": "medium_airport", + "name": "Cap Skirring Airport", + "latitude_deg": "12.39533", + "longitude_deg": "-16.748", + "elevation_ft": "52", + "continent": "AF", + "iso_country": "SN", + "iso_region": "SN-ZG", + "municipality": "Cap Skirring", + "scheduled_service": "yes", + "gps_code": "GOGS", + "iata_code": "CSK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cap_Skirring_Airport" + }, + { + "id": "3124", + "ident": "GOOK", + "type": "medium_airport", + "name": "Kaolack Airport", + "latitude_deg": "14.146900177001953", + "longitude_deg": "-16.051300048828125", + "elevation_ft": "26", + "continent": "AF", + "iso_country": "SN", + "iso_region": "SN-FK", + "municipality": "Kaolack", + "scheduled_service": "no", + "gps_code": "GOOK", + "iata_code": "KLC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kaolack_Airport" + }, + { + "id": "3125", + "ident": "GOOY", + "type": "medium_airport", + "name": "Léopold Sédar Senghor International Airport", + "latitude_deg": "14.7397", + "longitude_deg": "-17.4902", + "elevation_ft": "85", + "continent": "AF", + "iso_country": "SN", + "iso_region": "SN-DK", + "municipality": "Dakar", + "scheduled_service": "no", + "gps_code": "GOOY", + "iata_code": "DKR", + "home_link": "http://www.aeroportdakar.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dakar-Yoff-L%C3%A9opold_S%C3%A9dar_Senghor_International_Airport" + }, + { + "id": "31879", + "ident": "GOSM", + "type": "medium_airport", + "name": "Ouro Sogui Airport", + "latitude_deg": "15.5936", + "longitude_deg": "-13.3228", + "elevation_ft": "85", + "continent": "AF", + "iso_country": "SN", + "iso_region": "SN-MT", + "municipality": "Ouro Sogui", + "scheduled_service": "yes", + "gps_code": "GOSM", + "iata_code": "MAX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ouro_Sogui_Airport" + }, + { + "id": "32169", + "ident": "GOSP", + "type": "small_airport", + "name": "Podor Airport", + "latitude_deg": "16.678155", + "longitude_deg": "-14.964957", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "SN", + "iso_region": "SN-SL", + "municipality": "Podor", + "scheduled_service": "no", + "gps_code": "GOSP", + "iata_code": "POD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Podor_Airport" + }, + { + "id": "32202", + "ident": "GOSR", + "type": "small_airport", + "name": "Richard Toll Airport", + "latitude_deg": "16.437816", + "longitude_deg": "-15.656376", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "SN", + "iso_region": "SN-SL", + "municipality": "Richard Toll", + "scheduled_service": "no", + "gps_code": "GOSR", + "iata_code": "RDT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Richard_Toll_Airport" + }, + { + "id": "3126", + "ident": "GOSS", + "type": "medium_airport", + "name": "Saint Louis Airport", + "latitude_deg": "16.049814", + "longitude_deg": "-16.461039", + "elevation_ft": "9", + "continent": "AF", + "iso_country": "SN", + "iso_region": "SN-SL", + "municipality": "Saint Louis", + "scheduled_service": "yes", + "gps_code": "GOSS", + "iata_code": "XLS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saint_Louis_Airport" + }, + { + "id": "3127", + "ident": "GOTB", + "type": "medium_airport", + "name": "Bakel Airport", + "latitude_deg": "14.847299575805664", + "longitude_deg": "-12.468299865722656", + "elevation_ft": "98", + "continent": "AF", + "iso_country": "SN", + "iso_region": "SN-TC", + "municipality": "Bakel", + "scheduled_service": "no", + "gps_code": "GOTB", + "iata_code": "BXE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bakel_Airport" + }, + { + "id": "3128", + "ident": "GOTK", + "type": "medium_airport", + "name": "Kédougou Airport", + "latitude_deg": "12.57229995727539", + "longitude_deg": "-12.22029972076416", + "elevation_ft": "584", + "continent": "AF", + "iso_country": "SN", + "iso_region": "SN-TC", + "municipality": "Kédougou", + "scheduled_service": "no", + "gps_code": "GOTK", + "iata_code": "KGG", + "wikipedia_link": "https://en.wikipedia.org/wiki/K%C3%A9dougou_Airport" + }, + { + "id": "32332", + "ident": "GOTS", + "type": "small_airport", + "name": "Simenti Airport", + "latitude_deg": "13.046799659729004", + "longitude_deg": "-13.29539966583252", + "elevation_ft": "171", + "continent": "AF", + "iso_country": "SN", + "iso_region": "SN-TC", + "municipality": "Simenti", + "scheduled_service": "no", + "gps_code": "GOTS", + "iata_code": "SMY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Simenti_Airport" + }, + { + "id": "3129", + "ident": "GOTT", + "type": "medium_airport", + "name": "Tambacounda Airport", + "latitude_deg": "13.736800193786621", + "longitude_deg": "-13.65310001373291", + "elevation_ft": "161", + "continent": "AF", + "iso_country": "SN", + "iso_region": "SN-TC", + "municipality": "Tambacounda", + "scheduled_service": "yes", + "gps_code": "GOTT", + "iata_code": "TUD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tambacounda_Airport" + }, + { + "id": "347929", + "ident": "GP-0001", + "type": "heliport", + "name": "Guadeloupe University Hospital Heliport", + "latitude_deg": "16.23614", + "longitude_deg": "-61.52393", + "elevation_ft": "58", + "continent": "NA", + "iso_country": "GP", + "iso_region": "GP-U-A", + "municipality": "Les Abymes", + "scheduled_service": "no" + }, + { + "id": "347930", + "ident": "GP-0002", + "type": "seaplane_base", + "name": "Le Gosier Ultralight Seaplane Base", + "latitude_deg": "16.20949", + "longitude_deg": "-61.50821", + "continent": "NA", + "iso_country": "GP", + "iso_region": "GP-U-A", + "municipality": "Le Gosier", + "scheduled_service": "no", + "keywords": "LF97102" + }, + { + "id": "429768", + "ident": "GP-0003", + "type": "seaplane_base", + "name": "Sainte Rose Ultralight Seaplane Base", + "latitude_deg": "16.336078", + "longitude_deg": "-61.701279", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "GP", + "iso_region": "GP-U-A", + "municipality": "Sainte Rose", + "scheduled_service": "no", + "keywords": "LF97103" + }, + { + "id": "318498", + "ident": "GQ-0001", + "type": "small_airport", + "name": "Mongomo Airport", + "latitude_deg": "1.636607", + "longitude_deg": "11.302458", + "continent": "AF", + "iso_country": "GQ", + "iso_region": "GQ-WN", + "municipality": "Mongomo", + "scheduled_service": "no" + }, + { + "id": "3130", + "ident": "GQNA", + "type": "small_airport", + "name": "Aioun el Atrouss Airport", + "latitude_deg": "16.711299896240234", + "longitude_deg": "-9.637880325317383", + "elevation_ft": "951", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-02", + "municipality": "Aioun El Atrouss", + "scheduled_service": "no", + "gps_code": "GQNA", + "iata_code": "AEO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aioun_el_Atrouss_Airport" + }, + { + "id": "32131", + "ident": "GQNB", + "type": "small_airport", + "name": "Boutilimit Airport", + "latitude_deg": "17.52832", + "longitude_deg": "-14.71412", + "elevation_ft": "121", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-06", + "municipality": "Boutilimit", + "scheduled_service": "no", + "gps_code": "GQNB", + "iata_code": "OTL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boutilimit_Airport" + }, + { + "id": "32444", + "ident": "GQNC", + "type": "small_airport", + "name": "Tichitt Airport", + "latitude_deg": "18.450000762939453", + "longitude_deg": "-9.517000198364258", + "elevation_ft": "561", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-09", + "municipality": "Tichitt", + "scheduled_service": "no", + "gps_code": "GQNC", + "iata_code": "THI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tichitt_Airport" + }, + { + "id": "3131", + "ident": "GQND", + "type": "small_airport", + "name": "Tidjikja Airport", + "latitude_deg": "18.570101", + "longitude_deg": "-11.4235", + "elevation_ft": "1342", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-09", + "municipality": "Tidjikja", + "scheduled_service": "no", + "gps_code": "GQND", + "iata_code": "TIY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tidjikja_Airport" + }, + { + "id": "30699", + "ident": "GQNE", + "type": "small_airport", + "name": "Abbaye Airport", + "latitude_deg": "16.63331413269043", + "longitude_deg": "-14.200000762939453", + "elevation_ft": "66", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-05", + "municipality": "Boghe", + "scheduled_service": "no", + "gps_code": "GQNE", + "iata_code": "BGH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abbaye_Airport" + }, + { + "id": "3132", + "ident": "GQNF", + "type": "small_airport", + "name": "Kiffa Airport", + "latitude_deg": "16.59", + "longitude_deg": "-11.4062", + "elevation_ft": "430", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-03", + "municipality": "Kiffa", + "scheduled_service": "no", + "gps_code": "GQNF", + "iata_code": "KFA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kiffa_Airport" + }, + { + "id": "32461", + "ident": "GQNH", + "type": "small_airport", + "name": "Timbedra Airport", + "latitude_deg": "16.233671", + "longitude_deg": "-8.163464", + "elevation_ft": "692", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-01", + "municipality": "Timbedra", + "scheduled_service": "no", + "gps_code": "GQNH", + "iata_code": "TMD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Timbedra_Airport" + }, + { + "id": "3133", + "ident": "GQNI", + "type": "small_airport", + "name": "Néma Airport", + "latitude_deg": "16.622", + "longitude_deg": "-7.3166", + "elevation_ft": "745", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-01", + "municipality": "Néma", + "scheduled_service": "no", + "gps_code": "GQNI", + "iata_code": "EMN", + "wikipedia_link": "https://en.wikipedia.org/wiki/N%C3%A9ma_Airport" + }, + { + "id": "30630", + "ident": "GQNJ", + "type": "small_airport", + "name": "Akjoujt Airport", + "latitude_deg": "19.727998", + "longitude_deg": "-14.377214", + "elevation_ft": "403", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-12", + "municipality": "Akjoujt", + "scheduled_service": "no", + "gps_code": "GQNJ", + "iata_code": "AJJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Akjoujt_Airport" + }, + { + "id": "3134", + "ident": "GQNK", + "type": "small_airport", + "name": "Kaédi Airport", + "latitude_deg": "16.1595", + "longitude_deg": "-13.5076", + "elevation_ft": "75", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-04", + "municipality": "Kaédi", + "scheduled_service": "no", + "gps_code": "GQNK", + "iata_code": "KED", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ka%C3%A9di_Airport" + }, + { + "id": "31934", + "ident": "GQNL", + "type": "small_airport", + "name": "Letfotar Airport", + "latitude_deg": "17.75", + "longitude_deg": "-12.5", + "elevation_ft": "256", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-05", + "municipality": "Moudjeria", + "scheduled_service": "no", + "gps_code": "GQNL", + "iata_code": "MOM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Letfotar_Airport" + }, + { + "id": "31548", + "ident": "GQNM", + "type": "small_airport", + "name": "Dahara Airport", + "latitude_deg": "16.299999237060547", + "longitude_deg": "-8.050000190734863", + "elevation_ft": "722", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-01", + "municipality": "Timbreda", + "scheduled_service": "no", + "gps_code": "GQNM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dahara_Airport" + }, + { + "id": "3135", + "ident": "GQNN", + "type": "closed", + "name": "Nouakchott International Airport", + "latitude_deg": "18.09754", + "longitude_deg": "-15.948222", + "elevation_ft": "13", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-NKC", + "municipality": "Nouakchott", + "scheduled_service": "no", + "gps_code": "GQNN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nouakchott_International_Airport" + }, + { + "id": "323315", + "ident": "GQNO", + "type": "large_airport", + "name": "Nouakchott–Oumtounsy International Airport", + "latitude_deg": "18.31", + "longitude_deg": "-15.9697222", + "elevation_ft": "9", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-NKC", + "municipality": "Nouakchott", + "scheduled_service": "yes", + "gps_code": "GQNO", + "iata_code": "NKC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nouakchott%E2%80%93Oumtounsy_International_Airport", + "keywords": "Nouakchott,Oumtounsy" + }, + { + "id": "3136", + "ident": "GQNS", + "type": "small_airport", + "name": "Sélibaby Airport", + "latitude_deg": "15.179699897766113", + "longitude_deg": "-12.207300186157227", + "elevation_ft": "219", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-10", + "municipality": "Sélibaby", + "scheduled_service": "no", + "gps_code": "GQNS", + "iata_code": "SEY", + "wikipedia_link": "https://en.wikipedia.org/wiki/S%C3%A9libaby_Airport", + "keywords": "Selibabi" + }, + { + "id": "32446", + "ident": "GQNT", + "type": "small_airport", + "name": "Tamchakett Airport", + "latitude_deg": "17.23157", + "longitude_deg": "-10.77923", + "elevation_ft": "620", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-02", + "municipality": "Tamchakett", + "scheduled_service": "no", + "gps_code": "GQNT", + "iata_code": "THT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tamchakett_Airport" + }, + { + "id": "3137", + "ident": "GQPA", + "type": "medium_airport", + "name": "Atar International Airport", + "latitude_deg": "20.506799697875977", + "longitude_deg": "-13.04319953918457", + "elevation_ft": "734", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-07", + "municipality": "Atar", + "scheduled_service": "no", + "gps_code": "GQPA", + "iata_code": "ATR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atar_International_Airport" + }, + { + "id": "31126", + "ident": "GQPF", + "type": "small_airport", + "name": "Fderik Airport", + "latitude_deg": "22.673551", + "longitude_deg": "-12.729262", + "elevation_ft": "961", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-11", + "municipality": "Fderik", + "scheduled_service": "no", + "gps_code": "GQPF", + "iata_code": "FGD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fderik_Airport" + }, + { + "id": "3138", + "ident": "GQPP", + "type": "medium_airport", + "name": "Nouadhibou International Airport", + "latitude_deg": "20.9330997467041", + "longitude_deg": "-17.030000686645508", + "elevation_ft": "24", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-08", + "municipality": "Nouadhibou", + "scheduled_service": "yes", + "gps_code": "GQPP", + "iata_code": "NDB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nouadhibou_International_Airport" + }, + { + "id": "3139", + "ident": "GQPT", + "type": "small_airport", + "name": "Bir Moghrein Airport", + "latitude_deg": "25.183531", + "longitude_deg": "-11.609001", + "elevation_ft": "1148", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-11", + "municipality": "Bir Moghrein", + "scheduled_service": "no", + "gps_code": "GQPT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bir_Moghrein_Airport" + }, + { + "id": "32135", + "ident": "GQPZ", + "type": "small_airport", + "name": "Tazadit Airport", + "latitude_deg": "22.757345", + "longitude_deg": "-12.482228", + "elevation_ft": "1119", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-11", + "municipality": "Zouérate", + "scheduled_service": "no", + "gps_code": "GQPZ", + "iata_code": "OUZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tazadit_Airport" + }, + { + "id": "42451", + "ident": "GR-0001", + "type": "small_airport", + "name": "Arnissa Airport", + "latitude_deg": "40.8409569", + "longitude_deg": "21.826057", + "elevation_ft": "2071", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-B", + "municipality": "Edessa", + "scheduled_service": "no" + }, + { + "id": "42452", + "ident": "GR-0002", + "type": "small_airport", + "name": "Dhokimion Airport", + "latitude_deg": "38.613696", + "longitude_deg": "21.392955", + "elevation_ft": "154", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-G", + "municipality": "Agrinion", + "scheduled_service": "no", + "keywords": "AG1666" + }, + { + "id": "42453", + "ident": "GR-0003", + "type": "small_airport", + "name": "Florina Airfield", + "latitude_deg": "40.804194", + "longitude_deg": "21.433211", + "elevation_ft": "2109", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-C", + "municipality": "Florina", + "scheduled_service": "no" + }, + { + "id": "42454", + "ident": "GR-0004", + "type": "closed", + "name": "Nea Kavala Polykastro Airfield", + "latitude_deg": "40.984402", + "longitude_deg": "22.626301", + "elevation_ft": "76", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-B", + "municipality": "Nea Kavala", + "scheduled_service": "no" + }, + { + "id": "42455", + "ident": "GR-0005", + "type": "closed", + "name": "Spetsai Airport", + "latitude_deg": "37.3489", + "longitude_deg": "23.254", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-J", + "municipality": "Spetsai", + "scheduled_service": "no" + }, + { + "id": "42461", + "ident": "GR-0006", + "type": "small_airport", + "name": "Komotini Airfield", + "latitude_deg": "41.112123", + "longitude_deg": "25.322385", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-A", + "municipality": "Komotini", + "scheduled_service": "no" + }, + { + "id": "42462", + "ident": "GR-0007", + "type": "closed", + "name": "Polichnitos", + "latitude_deg": "39.08680725097656", + "longitude_deg": "26.195405960083008", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-K", + "scheduled_service": "no" + }, + { + "id": "315592", + "ident": "GR-0008", + "type": "small_airport", + "name": "Missolonghi Aerodrome", + "latitude_deg": "38.35648", + "longitude_deg": "21.47889", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-G", + "municipality": "Missolonghi", + "scheduled_service": "no", + "local_code": "LG01" + }, + { + "id": "315593", + "ident": "GR-0009", + "type": "small_airport", + "name": "Kopaida Dimitra Airfield", + "latitude_deg": "38.456202", + "longitude_deg": "23.134546", + "elevation_ft": "302", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-H", + "municipality": "Kopaida", + "scheduled_service": "no" + }, + { + "id": "315594", + "ident": "GR-0010", + "type": "small_airport", + "name": "Thiva Aeropark", + "latitude_deg": "38.37548", + "longitude_deg": "23.25761", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-H", + "municipality": "Thebes", + "scheduled_service": "no" + }, + { + "id": "315687", + "ident": "GR-0011", + "type": "small_airport", + "name": "Maleme Air Base", + "latitude_deg": "35.5295502", + "longitude_deg": "23.8330614", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-M", + "scheduled_service": "no" + }, + { + "id": "315688", + "ident": "GR-0012", + "type": "small_airport", + "name": "Larissa Aeroclub", + "latitude_deg": "39.653506", + "longitude_deg": "22.341098", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-E", + "municipality": "Larissa", + "scheduled_service": "no" + }, + { + "id": "317522", + "ident": "GR-0013", + "type": "closed", + "name": "Kopaida Moschonis (Ikaros) Airfield", + "latitude_deg": "38.431698", + "longitude_deg": "23.134922", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-H", + "municipality": "Kopaida", + "scheduled_service": "no", + "keywords": "Ikaros, Moschonis" + }, + { + "id": "320182", + "ident": "GR-0014", + "type": "small_airport", + "name": "Myrini - Karditsa Airport", + "latitude_deg": "39.407445", + "longitude_deg": "21.995921", + "elevation_ft": "315", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-E", + "municipality": "Karditsa", + "scheduled_service": "no" + }, + { + "id": "320184", + "ident": "GR-0015", + "type": "small_airport", + "name": "Molos Airfield", + "latitude_deg": "38.826175", + "longitude_deg": "22.661959", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-H", + "municipality": "Molos", + "scheduled_service": "no" + }, + { + "id": "320613", + "ident": "GR-0016", + "type": "small_airport", + "name": "Dounis Airfield", + "latitude_deg": "38.02401", + "longitude_deg": "23.30371", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-I", + "municipality": "Megara", + "scheduled_service": "no" + }, + { + "id": "321104", + "ident": "GR-0017", + "type": "small_airport", + "name": "Kolhiko Airfield", + "latitude_deg": "40.745241", + "longitude_deg": "23.122964", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-B", + "municipality": "Langadas", + "scheduled_service": "no" + }, + { + "id": "321408", + "ident": "GR-0018", + "type": "small_airport", + "name": "Serres / Hortero Airfield", + "latitude_deg": "41.227475", + "longitude_deg": "23.363828", + "elevation_ft": "187", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-B", + "municipality": "Khortero", + "scheduled_service": "no", + "home_link": "http://www.serresairclub.gr/", + "keywords": "chortero,hortero,serres,χορτερό,σέρρες" + }, + { + "id": "334187", + "ident": "GR-0019", + "type": "small_airport", + "name": "Zalaggo Airstrip", + "latitude_deg": "39.124745", + "longitude_deg": "20.696149", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-D", + "scheduled_service": "no" + }, + { + "id": "326168", + "ident": "GR-0020", + "type": "small_airport", + "name": "Serres Emmanuel Pappas Airfield", + "latitude_deg": "41.083282", + "longitude_deg": "23.589499", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-B", + "municipality": "Serres", + "scheduled_service": "no", + "keywords": "Εμμανουήλ Παππάς, Emmanuel Pappas" + }, + { + "id": "328022", + "ident": "GR-0021", + "type": "small_airport", + "name": "Silata Airfield", + "latitude_deg": "40.330824", + "longitude_deg": "23.150805", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-B", + "municipality": "Nea Silata", + "scheduled_service": "no" + }, + { + "id": "329131", + "ident": "GR-0022", + "type": "heliport", + "name": "Schinousa Heliport", + "latitude_deg": "36.868106", + "longitude_deg": "25.514434", + "elevation_ft": "316", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Schinousa", + "scheduled_service": "no" + }, + { + "id": "329200", + "ident": "GR-0023", + "type": "heliport", + "name": "Andros Heliport", + "latitude_deg": "37.8364707", + "longitude_deg": "24.9484637", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "scheduled_service": "no" + }, + { + "id": "335669", + "ident": "GR-0024", + "type": "heliport", + "name": "Gavdos Helistrip", + "latitude_deg": "34.86012", + "longitude_deg": "24.08756", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-M", + "scheduled_service": "no" + }, + { + "id": "336426", + "ident": "GR-0025", + "type": "heliport", + "name": "Don Mansion Private Helipad", + "latitude_deg": "36.397874", + "longitude_deg": "28.174288", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Ialysos, Rhodes", + "scheduled_service": "no" + }, + { + "id": "336569", + "ident": "GR-0026", + "type": "heliport", + "name": "Othoni Heliport", + "latitude_deg": "39.860692", + "longitude_deg": "19.42056", + "elevation_ft": "425", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-F", + "municipality": "Othoni", + "scheduled_service": "no" + }, + { + "id": "340334", + "ident": "GR-0027", + "type": "small_airport", + "name": "Neos Zigos Aerodrome", + "latitude_deg": "41.116", + "longitude_deg": "24.9211", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-A", + "municipality": "Neos Zigos", + "scheduled_service": "no" + }, + { + "id": "340335", + "ident": "GR-0028", + "type": "closed", + "name": "Argos Airport", + "latitude_deg": "37.65919", + "longitude_deg": "22.704", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-J", + "municipality": "Argos", + "scheduled_service": "no" + }, + { + "id": "342169", + "ident": "GR-0029", + "type": "small_airport", + "name": "Eordaea Airfield", + "latitude_deg": "40.57211", + "longitude_deg": "21.582899", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-C", + "municipality": "Ptolemaida", + "scheduled_service": "no" + }, + { + "id": "342883", + "ident": "GR-0030", + "type": "heliport", + "name": "Skopelos Heliport", + "latitude_deg": "39.09338", + "longitude_deg": "23.72818", + "elevation_ft": "768", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-E", + "municipality": "Skopelos", + "scheduled_service": "no" + }, + { + "id": "342884", + "ident": "GR-0031", + "type": "heliport", + "name": "Alonnisos Heliport", + "latitude_deg": "39.15046", + "longitude_deg": "23.87839", + "elevation_ft": "168", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-E", + "municipality": "Votsi", + "scheduled_service": "no" + }, + { + "id": "342885", + "ident": "GR-0032", + "type": "heliport", + "name": "Patmos Heliport", + "latitude_deg": "37.33534", + "longitude_deg": "26.54751", + "elevation_ft": "262", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Skala", + "scheduled_service": "no" + }, + { + "id": "342886", + "ident": "GR-0033", + "type": "heliport", + "name": "Tinos Heliport", + "latitude_deg": "37.52942", + "longitude_deg": "25.1834", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Agios Fokas", + "scheduled_service": "no" + }, + { + "id": "342887", + "ident": "GR-0034", + "type": "heliport", + "name": "Antiparos Heliport", + "latitude_deg": "37.03245", + "longitude_deg": "25.07673", + "elevation_ft": "122", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Antiparos", + "scheduled_service": "no" + }, + { + "id": "342888", + "ident": "GR-0035", + "type": "heliport", + "name": "Ios Heliport", + "latitude_deg": "36.71758", + "longitude_deg": "25.27169", + "elevation_ft": "256", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Chora", + "scheduled_service": "no" + }, + { + "id": "342889", + "ident": "GR-0036", + "type": "heliport", + "name": "Sikinos Heliport", + "latitude_deg": "36.69987", + "longitude_deg": "25.13073", + "elevation_ft": "1001", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Sikinos", + "scheduled_service": "no" + }, + { + "id": "342890", + "ident": "GR-0037", + "type": "heliport", + "name": "Folegandros Heliport", + "latitude_deg": "36.62112", + "longitude_deg": "24.91912", + "elevation_ft": "935", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Folegandros", + "scheduled_service": "no" + }, + { + "id": "342891", + "ident": "GR-0038", + "type": "heliport", + "name": "Thirasia Heliport", + "latitude_deg": "36.4337", + "longitude_deg": "25.3426", + "elevation_ft": "583", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Manolas", + "scheduled_service": "no" + }, + { + "id": "342892", + "ident": "GR-0039", + "type": "closed", + "name": "Anafi Airport (under construction)", + "latitude_deg": "36.3658", + "longitude_deg": "25.73322", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Anafi", + "scheduled_service": "no" + }, + { + "id": "342893", + "ident": "GR-0040", + "type": "heliport", + "name": "Anafi Heliport", + "latitude_deg": "36.35641", + "longitude_deg": "25.77269", + "elevation_ft": "973", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Anafi", + "scheduled_service": "no" + }, + { + "id": "342894", + "ident": "GR-0041", + "type": "heliport", + "name": "Amorgos Heliport", + "latitude_deg": "36.83189", + "longitude_deg": "25.89374", + "elevation_ft": "997", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Chora", + "scheduled_service": "no" + }, + { + "id": "342895", + "ident": "GR-0042", + "type": "heliport", + "name": "Koufonisi Heliport", + "latitude_deg": "36.93606", + "longitude_deg": "25.60122", + "elevation_ft": "72", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Koufonisia", + "scheduled_service": "no" + }, + { + "id": "342896", + "ident": "GR-0043", + "type": "heliport", + "name": "Iraklia Heliport", + "latitude_deg": "36.86276", + "longitude_deg": "25.47286", + "elevation_ft": "190", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Iraklia", + "scheduled_service": "no" + }, + { + "id": "342897", + "ident": "GR-0044", + "type": "heliport", + "name": "Donousa Heliport", + "latitude_deg": "37.09432", + "longitude_deg": "25.79898", + "elevation_ft": "82", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Donousa", + "scheduled_service": "no" + }, + { + "id": "343555", + "ident": "GR-0045", + "type": "heliport", + "name": "Agathonisi Heliport", + "latitude_deg": "37.4605", + "longitude_deg": "26.97632", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "scheduled_service": "no" + }, + { + "id": "346808", + "ident": "GR-0046", + "type": "small_airport", + "name": "Agios Pavlos Airfield", + "latitude_deg": "40.36756", + "longitude_deg": "23.05164", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-B", + "scheduled_service": "no" + }, + { + "id": "346980", + "ident": "GR-0047", + "type": "small_airport", + "name": "Sitagroi Airstrip", + "latitude_deg": "41.12784", + "longitude_deg": "24.01459", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-A", + "scheduled_service": "no", + "keywords": "Σιταγροί" + }, + { + "id": "346982", + "ident": "GR-0048", + "type": "small_airport", + "name": "Lechaio Airfield", + "latitude_deg": "37.92649", + "longitude_deg": "22.859559", + "elevation_ft": "46", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-J", + "municipality": "Lechaio", + "scheduled_service": "no" + }, + { + "id": "346989", + "ident": "GR-0049", + "type": "small_airport", + "name": "Margariti Airstrip UL", + "latitude_deg": "39.37243", + "longitude_deg": "20.4139", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-D", + "scheduled_service": "no" + }, + { + "id": "349429", + "ident": "GR-0050", + "type": "small_airport", + "name": "Hellenic Sport Aviation Airstrip", + "latitude_deg": "38.47819", + "longitude_deg": "23.16007", + "elevation_ft": "305", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-H", + "municipality": "Orchomenus", + "scheduled_service": "no" + }, + { + "id": "349434", + "ident": "GR-0051", + "type": "heliport", + "name": "Alexandroupoli University Hospital Heliport", + "latitude_deg": "40.86366", + "longitude_deg": "25.80518", + "elevation_ft": "228", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-A", + "municipality": "Alexandroupoli", + "scheduled_service": "no" + }, + { + "id": "349443", + "ident": "GR-0052", + "type": "closed", + "name": "Litochoro Airport", + "latitude_deg": "40.12212", + "longitude_deg": "22.53513", + "continent": "AS", + "iso_country": "GR", + "iso_region": "GR-B", + "municipality": "Litochoro", + "scheduled_service": "no" + }, + { + "id": "352786", + "ident": "GR-0053", + "type": "heliport", + "name": "Promachi Heliport", + "latitude_deg": "41.01365", + "longitude_deg": "22.02631", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-B", + "municipality": "Almopia", + "scheduled_service": "no" + }, + { + "id": "353645", + "ident": "GR-0054", + "type": "heliport", + "name": "Chalki Heliport (Ελικοδρόμιο Χάλκης)", + "latitude_deg": "36.217439", + "longitude_deg": "27.61084", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Chalki", + "scheduled_service": "no", + "wikipedia_link": "https://avinfo.greekhelicopters.gr/?p=1566" + }, + { + "id": "353646", + "ident": "GR-0055", + "type": "heliport", + "name": "Lindos Military Area Heliport", + "latitude_deg": "36.117715", + "longitude_deg": "28.062136", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Lindos", + "scheduled_service": "no" + }, + { + "id": "354087", + "ident": "GR-0056", + "type": "closed", + "name": "Gadouras Airfield", + "latitude_deg": "36.143088", + "longitude_deg": "28.068028", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Archaggelos", + "scheduled_service": "no" + }, + { + "id": "354088", + "ident": "GR-0057", + "type": "heliport", + "name": "Gadouras Helipad", + "latitude_deg": "36.138093", + "longitude_deg": "28.070957", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Archaggelos", + "scheduled_service": "no" + }, + { + "id": "354089", + "ident": "GR-0058", + "type": "heliport", + "name": "Tsairi Military Hospital Helipad", + "latitude_deg": "36.389901", + "longitude_deg": "28.201941", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Tsairi", + "scheduled_service": "no" + }, + { + "id": "354321", + "ident": "GR-0059", + "type": "small_airport", + "name": "Arachthos Airfield", + "latitude_deg": "39.08907", + "longitude_deg": "20.97091", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-D", + "municipality": "Arta", + "scheduled_service": "no" + }, + { + "id": "354850", + "ident": "GR-0060", + "type": "heliport", + "name": "Tilos Heliport", + "latitude_deg": "36.448705", + "longitude_deg": "27.354014", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Megalo Chorio", + "scheduled_service": "no" + }, + { + "id": "354851", + "ident": "GR-0061", + "type": "heliport", + "name": "Nisiros Heliport", + "latitude_deg": "36.603829", + "longitude_deg": "27.131556", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Nisiros", + "scheduled_service": "no" + }, + { + "id": "355237", + "ident": "GR-0062", + "type": "heliport", + "name": "Superior Air Helipad", + "latitude_deg": "37.946873", + "longitude_deg": "23.9033", + "elevation_ft": "100", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-I", + "municipality": "Spata", + "scheduled_service": "no" + }, + { + "id": "355238", + "ident": "GR-0063", + "type": "heliport", + "name": "Superior Air Santorini Helipad", + "latitude_deg": "36.372263", + "longitude_deg": "25.426028", + "elevation_ft": "173", + "continent": "AS", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Santorini", + "scheduled_service": "no" + }, + { + "id": "429734", + "ident": "GR-0064", + "type": "small_airport", + "name": "Kilkis Airfield", + "latitude_deg": "40.9798", + "longitude_deg": "22.86422", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-B", + "scheduled_service": "no" + }, + { + "id": "430142", + "ident": "GR-0065", + "type": "heliport", + "name": "Leptokarya Military Heliport", + "latitude_deg": "40.07228", + "longitude_deg": "22.56698", + "continent": "AS", + "iso_country": "GR", + "iso_region": "GR-B", + "municipality": "Leptokarya", + "scheduled_service": "no" + }, + { + "id": "430201", + "ident": "GR-0066", + "type": "heliport", + "name": "Private Helipad", + "latitude_deg": "37.44137", + "longitude_deg": "25.41084", + "elevation_ft": "213", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Kalafati", + "scheduled_service": "no" + }, + { + "id": "311387", + "ident": "GRC", + "type": "small_airport", + "name": "Grand Cess Airport", + "latitude_deg": "4.571", + "longitude_deg": "-8.2076", + "elevation_ft": "28", + "continent": "AF", + "iso_country": "LR", + "iso_region": "LR-GK", + "municipality": "Grand Cess", + "scheduled_service": "no", + "iata_code": "GRC" + }, + { + "id": "319725", + "ident": "GRH", + "type": "closed", + "name": "Garuahi Airport", + "latitude_deg": "-10.225149", + "longitude_deg": "150.487667", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Garuahi", + "scheduled_service": "no", + "iata_code": "GRH", + "keywords": "Taupota Mission" + }, + { + "id": "342429", + "ident": "GS-0001", + "type": "heliport", + "name": "Grytviken Emergency Helipad", + "latitude_deg": "-54.2824", + "longitude_deg": "-36.5095", + "elevation_ft": "27", + "continent": "AN", + "iso_country": "GS", + "iso_region": "GS-U-A", + "municipality": "Grytviken", + "scheduled_service": "no" + }, + { + "id": "17599", + "ident": "GSZ", + "type": "small_airport", + "name": "Granite Mountain Air Station", + "latitude_deg": "65.40209961", + "longitude_deg": "-161.2810059", + "elevation_ft": "1313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Granite Mountain", + "scheduled_service": "no", + "gps_code": "PAGZ", + "iata_code": "GMT", + "local_code": "GSZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Granite_Mountain_Air_Station" + }, + { + "id": "42230", + "ident": "GT-0001", + "type": "small_airport", + "name": "Chiquimula Airport", + "latitude_deg": "14.83092", + "longitude_deg": "-89.520938", + "elevation_ft": "1484", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-CQ", + "municipality": "Chiquimula", + "scheduled_service": "no", + "gps_code": "MGCQ", + "iata_code": "CIQ" + }, + { + "id": "42231", + "ident": "GT-0002", + "type": "small_airport", + "name": "Dos Lagunas Airport", + "latitude_deg": "17.6124000549", + "longitude_deg": "-89.6884002686", + "elevation_ft": "1057", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-PE", + "municipality": "Dos Lagunas", + "scheduled_service": "no", + "gps_code": "MGDL", + "iata_code": "DON" + }, + { + "id": "42232", + "ident": "GT-0003", + "type": "small_airport", + "name": "El Naranjo Airport", + "latitude_deg": "14.106931", + "longitude_deg": "-90.817496", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-ES", + "municipality": "El Naranjo", + "scheduled_service": "no", + "iata_code": "ENJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Naranjo_Airport" + }, + { + "id": "42233", + "ident": "GT-0004", + "type": "small_airport", + "name": "Paso Caballos Airport", + "latitude_deg": "17.2639007568", + "longitude_deg": "-90.25630187990001", + "elevation_ft": "213", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-PE", + "municipality": "Paso Caballos", + "scheduled_service": "no", + "gps_code": "MGPC", + "iata_code": "PCG" + }, + { + "id": "318933", + "ident": "GT-0005", + "type": "small_airport", + "name": "El Naranjo Airport", + "latitude_deg": "17.228442", + "longitude_deg": "-90.811659", + "elevation_ft": "386", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-PE", + "municipality": "El Naranjo", + "scheduled_service": "no" + }, + { + "id": "42235", + "ident": "GT-0006", + "type": "small_airport", + "name": "El Petén Airport", + "latitude_deg": "17.226388931274414", + "longitude_deg": "-89.6050033569336", + "elevation_ft": "774", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-PE", + "municipality": "Tikal", + "scheduled_service": "no", + "iata_code": "TKM" + }, + { + "id": "42236", + "ident": "GT-0007", + "type": "small_airport", + "name": "Uaxactun Airport", + "latitude_deg": "17.3938884735", + "longitude_deg": "-89.63274383539999", + "elevation_ft": "573", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-PE", + "municipality": "Uaxactun", + "scheduled_service": "no", + "gps_code": "MGUX", + "iata_code": "UAX" + }, + { + "id": "45195", + "ident": "GT-0008", + "type": "small_airport", + "name": "SANTIAGO", + "latitude_deg": "14.609280294500001", + "longitude_deg": "-91.24419093130001", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-SO", + "scheduled_service": "no" + }, + { + "id": "45196", + "ident": "GT-0009", + "type": "small_airport", + "name": "Nebaj", + "latitude_deg": "15.447310102700001", + "longitude_deg": "-91.162147522", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-QC", + "scheduled_service": "no" + }, + { + "id": "45197", + "ident": "GT-0010", + "type": "small_airport", + "name": "Chajul Airport", + "latitude_deg": "15.477177", + "longitude_deg": "-91.034684", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-QC", + "municipality": "Chajul", + "scheduled_service": "no", + "keywords": "AG1673" + }, + { + "id": "45198", + "ident": "GT-0011", + "type": "closed", + "name": "Barillas", + "latitude_deg": "15.8029075281", + "longitude_deg": "-91.32273674010001", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-HU", + "scheduled_service": "no" + }, + { + "id": "45199", + "ident": "GT-0012", + "type": "small_airport", + "name": "Barillas upper", + "latitude_deg": "15.8162861226", + "longitude_deg": "-91.2969017029", + "elevation_ft": "5800", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-HU", + "scheduled_service": "no" + }, + { + "id": "45200", + "ident": "GT-0013", + "type": "small_airport", + "name": "San Luis Ixcan Valle Uno Candelaria", + "latitude_deg": "15.798943330199998", + "longitude_deg": "-91.087474823", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-QC", + "scheduled_service": "no" + }, + { + "id": "45201", + "ident": "GT-0014", + "type": "small_airport", + "name": "Rancho Pal", + "latitude_deg": "15.8751579288", + "longitude_deg": "-91.14309310910001", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-HU", + "scheduled_service": "no" + }, + { + "id": "45202", + "ident": "GT-0015", + "type": "small_airport", + "name": "Xalbal", + "latitude_deg": "15.8692137295", + "longitude_deg": "-90.99838256839999", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-QC", + "scheduled_service": "no" + }, + { + "id": "45203", + "ident": "GT-0016", + "type": "small_airport", + "name": "Flore del Norte Airport", + "latitude_deg": "16.0227158087", + "longitude_deg": "-91.1113786697", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-QC", + "municipality": "Flore del Norte", + "scheduled_service": "no" + }, + { + "id": "45204", + "ident": "GT-0017", + "type": "small_airport", + "name": "Los Angeles Airstrip", + "latitude_deg": "16.043668785199998", + "longitude_deg": "-91.06678962710001", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-QC", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "45205", + "ident": "GT-0018", + "type": "small_airport", + "name": "Cuarto Pueblo Airport", + "latitude_deg": "16.0401217826", + "longitude_deg": "-90.9766244888", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-QC", + "municipality": "Carto Pueblo", + "scheduled_service": "no" + }, + { + "id": "45206", + "ident": "GT-0019", + "type": "small_airport", + "name": "Ixquisis Airport", + "latitude_deg": "16.0622276524", + "longitude_deg": "-91.4198112488", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-HU", + "municipality": "Ixquisis", + "scheduled_service": "no" + }, + { + "id": "45207", + "ident": "GT-0020", + "type": "small_airport", + "name": "Nueva Generación Maya Airport", + "latitude_deg": "15.9803081736", + "longitude_deg": "-91.18000030520001", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-HU", + "municipality": "Nueva Generación Maya", + "scheduled_service": "no" + }, + { + "id": "45208", + "ident": "GT-0021", + "type": "small_airport", + "name": "Jayabaj Airport", + "latitude_deg": "14.9892915638", + "longitude_deg": "-90.7983756065", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-QC", + "municipality": "Jayabaj", + "scheduled_service": "no" + }, + { + "id": "45209", + "ident": "GT-0022", + "type": "small_airport", + "name": "Zacualpa Airport", + "latitude_deg": "15.0155103165", + "longitude_deg": "-90.8985185623", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-QC", + "municipality": "Zacualpa", + "scheduled_service": "no" + }, + { + "id": "45210", + "ident": "GT-0023", + "type": "small_airport", + "name": "Canilla Airport", + "latitude_deg": "15.170063", + "longitude_deg": "-90.858736", + "elevation_ft": "3973", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-QC", + "municipality": "Canillá", + "scheduled_service": "no", + "gps_code": "MGCA", + "keywords": "Rio Seco" + }, + { + "id": "45211", + "ident": "GT-0024", + "type": "small_airport", + "name": "Uspantan Airport", + "latitude_deg": "15.342547366900002", + "longitude_deg": "-90.8727264404", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-QC", + "municipality": "Uspantan", + "scheduled_service": "no" + }, + { + "id": "45212", + "ident": "GT-0025", + "type": "small_airport", + "name": "Chisec Airport", + "latitude_deg": "15.816203", + "longitude_deg": "-90.275688", + "elevation_ft": "722", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-AV", + "municipality": "Chisec", + "scheduled_service": "no", + "gps_code": "MGCS", + "keywords": "Xuctul" + }, + { + "id": "45213", + "ident": "GT-0026", + "type": "small_airport", + "name": "San Pedro Cotija Airport", + "latitude_deg": "15.7038619663", + "longitude_deg": "-90.88834762569999", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-QC", + "municipality": "San Pedro Cotija", + "scheduled_service": "no" + }, + { + "id": "318934", + "ident": "GT-0027", + "type": "small_airport", + "name": "Sayaxché Airport", + "latitude_deg": "16.52184", + "longitude_deg": "-90.195258", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-PE", + "municipality": "Sayaxché", + "scheduled_service": "no" + }, + { + "id": "318935", + "ident": "GT-0028", + "type": "small_airport", + "name": "El Estor Airport", + "latitude_deg": "15.517008", + "longitude_deg": "-89.368374", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-IZ", + "municipality": "El Estor", + "scheduled_service": "no" + }, + { + "id": "346863", + "ident": "GT-0029", + "type": "small_airport", + "name": "Champerico Airport", + "latitude_deg": "14.30694", + "longitude_deg": "-91.89955", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-RE", + "municipality": "Champerico", + "scheduled_service": "no", + "gps_code": "MGCP" + }, + { + "id": "346864", + "ident": "GT-0030", + "type": "small_airport", + "name": "La Noria Airport", + "latitude_deg": "14.26308", + "longitude_deg": "-91.35761", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-ES", + "municipality": "Tiquisate", + "scheduled_service": "no" + }, + { + "id": "346865", + "ident": "GT-0031", + "type": "small_airport", + "name": "Tiquisate Airport", + "latitude_deg": "14.27213", + "longitude_deg": "-91.34686", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-ES", + "municipality": "Tiquisate", + "scheduled_service": "no" + }, + { + "id": "346866", + "ident": "GT-0032", + "type": "small_airport", + "name": "Finca El Alamo Airport", + "latitude_deg": "14.61875", + "longitude_deg": "-92.15506", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-SM", + "municipality": "Ayutla Tecun Uman", + "scheduled_service": "no" + }, + { + "id": "356298", + "ident": "GT-0033", + "type": "small_airport", + "name": "Macanche Airport", + "latitude_deg": "16.96356", + "longitude_deg": "-89.6214", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-PE", + "municipality": "Macanche", + "scheduled_service": "no" + }, + { + "id": "356299", + "ident": "GT-0034", + "type": "heliport", + "name": "Palmas del Ixcan Heliport", + "latitude_deg": "16.22273", + "longitude_deg": "-90.36325", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-PE", + "municipality": "La Soledad", + "scheduled_service": "no" + }, + { + "id": "356300", + "ident": "GT-0035", + "type": "small_airport", + "name": "Tikindustrias Airport", + "latitude_deg": "16.37362", + "longitude_deg": "-90.28819", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-PE", + "municipality": "Las Pozas", + "scheduled_service": "no" + }, + { + "id": "356301", + "ident": "GT-0036", + "type": "small_airport", + "name": "Industria Chuquibul Airport", + "latitude_deg": "16.03465", + "longitude_deg": "-90.39241", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-AV", + "municipality": "Playitas", + "scheduled_service": "no" + }, + { + "id": "356307", + "ident": "GT-0037", + "type": "closed", + "name": "El Zapote Airstrip", + "latitude_deg": "17.038803", + "longitude_deg": "-89.647343", + "elevation_ft": "1345", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-PE", + "municipality": "El Caoba", + "scheduled_service": "no" + }, + { + "id": "356309", + "ident": "GT-0038", + "type": "closed", + "name": "Chinaja Airstrip", + "latitude_deg": "16.042884", + "longitude_deg": "-90.231271", + "elevation_ft": "2359", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-AV", + "scheduled_service": "no" + }, + { + "id": "356311", + "ident": "GT-0039", + "type": "closed", + "name": "Santa Amelia Southeast Airstrip", + "latitude_deg": "16.231312", + "longitude_deg": "-90.025299", + "elevation_ft": "462", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-PE", + "municipality": "Santa Amelia", + "scheduled_service": "no" + }, + { + "id": "356314", + "ident": "GT-0040", + "type": "closed", + "name": "Santa Amelia Airstrip", + "latitude_deg": "16.267003", + "longitude_deg": "-90.048838", + "elevation_ft": "427", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-PE", + "municipality": "Santa Amelia", + "scheduled_service": "no" + }, + { + "id": "356315", + "ident": "GT-0041", + "type": "closed", + "name": "La Balsa Airstrip", + "latitude_deg": "16.016901", + "longitude_deg": "-89.600801", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-PE", + "municipality": "La Palma", + "scheduled_service": "no" + }, + { + "id": "356318", + "ident": "GT-0042", + "type": "closed", + "name": "San Fernando Airstrip", + "latitude_deg": "16.775288", + "longitude_deg": "-90.770245", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-PE", + "municipality": "San Fernando", + "scheduled_service": "no" + }, + { + "id": "32161", + "ident": "GT-PKJ", + "type": "small_airport", + "name": "Playa Grande Airport", + "latitude_deg": "15.997500419600001", + "longitude_deg": "-90.74169921880001", + "elevation_ft": "577", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-QC", + "municipality": "Playa Grande", + "scheduled_service": "no", + "gps_code": "MGPG", + "iata_code": "PKJ", + "keywords": "Morales" + }, + { + "id": "300757", + "ident": "GTZ", + "type": "small_airport", + "name": "Kirawira B Aerodrome", + "latitude_deg": "-2.160833", + "longitude_deg": "34.225556", + "elevation_ft": "3970", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-13", + "municipality": "Grumeti Game Reserve", + "scheduled_service": "no", + "gps_code": "HTGR", + "iata_code": "GTZ", + "keywords": "Serengeti National Park" + }, + { + "id": "354980", + "ident": "GU-0001", + "type": "small_airport", + "name": "Northwest Field", + "latitude_deg": "13.624787", + "longitude_deg": "144.857358", + "continent": "OC", + "iso_country": "GU", + "iso_region": "GU-U-A", + "municipality": "Dededo", + "scheduled_service": "no" + }, + { + "id": "354981", + "ident": "GU-0002", + "type": "closed", + "name": "Orote Field", + "latitude_deg": "13.438096", + "longitude_deg": "144.641971", + "continent": "OC", + "iso_country": "GU", + "iso_region": "GU-U-A", + "municipality": "Agat", + "scheduled_service": "no" + }, + { + "id": "354982", + "ident": "GU-0003", + "type": "heliport", + "name": "US Naval Hospital Heliport", + "latitude_deg": "13.474643", + "longitude_deg": "144.74103", + "continent": "OC", + "iso_country": "GU", + "iso_region": "GU-U-A", + "municipality": "Agana Heights", + "scheduled_service": "no" + }, + { + "id": "316855", + "ident": "GUBE", + "type": "small_airport", + "name": "Beyla Airport", + "latitude_deg": "8.697222", + "longitude_deg": "-8.713889", + "elevation_ft": "2190", + "continent": "AF", + "iso_country": "GN", + "iso_region": "GN-N", + "municipality": "Beyla", + "scheduled_service": "no", + "gps_code": "GUBE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beyla_Airport" + }, + { + "id": "3146", + "ident": "GUCY", + "type": "medium_airport", + "name": "Conakry International Airport", + "latitude_deg": "9.57689", + "longitude_deg": "-13.612", + "elevation_ft": "72", + "continent": "AF", + "iso_country": "GN", + "iso_region": "GN-C", + "municipality": "Conakry", + "scheduled_service": "yes", + "gps_code": "GUCY", + "iata_code": "CKY", + "home_link": "http://www.aeroport-conakry.com/aeroport_international_de_conakry.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Conakry_International_Airport", + "keywords": "Gbessia International Airport" + }, + { + "id": "308224", + "ident": "GUE", + "type": "small_airport", + "name": "Guriaso (Keraso) Airport", + "latitude_deg": "-3.583167", + "longitude_deg": "141.5895", + "elevation_ft": "400", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Guriaso", + "scheduled_service": "no", + "iata_code": "GUE", + "local_code": "KSO", + "keywords": "Kiraso" + }, + { + "id": "3147", + "ident": "GUFA", + "type": "small_airport", + "name": "Fria Airport", + "latitude_deg": "10.3506", + "longitude_deg": "-13.5692", + "elevation_ft": "499", + "continent": "AF", + "iso_country": "GN", + "iso_region": "GN-B", + "municipality": "Fria", + "scheduled_service": "no", + "gps_code": "GUFA", + "iata_code": "FIG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fria_Airport" + }, + { + "id": "3148", + "ident": "GUFH", + "type": "small_airport", + "name": "Faranah Airport", + "latitude_deg": "10.0354995728", + "longitude_deg": "-10.7698001862", + "elevation_ft": "1476", + "continent": "AF", + "iso_country": "GN", + "iso_region": "GN-F", + "municipality": "Faranah", + "scheduled_service": "no", + "gps_code": "GUFH", + "iata_code": "FAA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Faranah_Airport" + }, + { + "id": "31556", + "ident": "GUGO", + "type": "small_airport", + "name": "Gbenko Airport", + "latitude_deg": "9.24284", + "longitude_deg": "-9.29997", + "elevation_ft": "2133", + "continent": "AF", + "iso_country": "GN", + "iso_region": "GN-F", + "municipality": "Banankoro", + "scheduled_service": "no", + "gps_code": "GUGO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gbenko_Airport" + }, + { + "id": "31557", + "ident": "GUKR", + "type": "small_airport", + "name": "Kawass Airport", + "latitude_deg": "10.657484", + "longitude_deg": "-14.532337", + "elevation_ft": "36", + "continent": "AF", + "iso_country": "GN", + "iso_region": "GN-B", + "municipality": "Port Kamsar", + "scheduled_service": "no", + "gps_code": "GUKR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kawass_Airport" + }, + { + "id": "31777", + "ident": "GUKU", + "type": "small_airport", + "name": "Kissidougou Airport", + "latitude_deg": "9.1605596542358", + "longitude_deg": "-10.124400138855", + "elevation_ft": "1808", + "continent": "AF", + "iso_country": "GN", + "iso_region": "GN-F", + "municipality": "Kissidougou", + "scheduled_service": "no", + "gps_code": "GUKU", + "iata_code": "KSI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kissidougou_Airport" + }, + { + "id": "3149", + "ident": "GULB", + "type": "small_airport", + "name": "Tata Airport", + "latitude_deg": "11.337512", + "longitude_deg": "-12.290869", + "elevation_ft": "3396", + "continent": "AF", + "iso_country": "GN", + "iso_region": "GN-L", + "municipality": "Labé", + "scheduled_service": "no", + "gps_code": "GULB", + "iata_code": "LEK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tata_Airport" + }, + { + "id": "31886", + "ident": "GUMA", + "type": "small_airport", + "name": "Macenta Airport", + "latitude_deg": "8.481456", + "longitude_deg": "-9.526048", + "elevation_ft": "1690", + "continent": "AF", + "iso_country": "GN", + "iso_region": "GN-N", + "municipality": "Macenta", + "scheduled_service": "no", + "gps_code": "GUMA", + "iata_code": "MCA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Macenta_Airport" + }, + { + "id": "32069", + "ident": "GUNZ", + "type": "small_airport", + "name": "Nzérékoré Airport", + "latitude_deg": "7.810413", + "longitude_deg": "-8.702073", + "elevation_ft": "1657", + "continent": "AF", + "iso_country": "GN", + "iso_region": "GN-N", + "municipality": "Nzérékoré", + "scheduled_service": "no", + "gps_code": "GUNZ", + "iata_code": "NZE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nz%C3%A9r%C3%A9kor%C3%A9_Airport" + }, + { + "id": "30763", + "ident": "GUOK", + "type": "small_airport", + "name": "Boké Baralande Airport", + "latitude_deg": "10.9658", + "longitude_deg": "-14.2811", + "elevation_ft": "164", + "continent": "AF", + "iso_country": "GN", + "iso_region": "GN-B", + "municipality": "Boké", + "scheduled_service": "no", + "gps_code": "GUOK", + "iata_code": "BKJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bok%C3%A9_Baralande_Airport" + }, + { + "id": "31558", + "ident": "GUSA", + "type": "small_airport", + "name": "Sangarédi Airport", + "latitude_deg": "11.114558", + "longitude_deg": "-13.815834", + "elevation_ft": "686", + "continent": "AF", + "iso_country": "GN", + "iso_region": "GN-B", + "municipality": "Sangarédi", + "scheduled_service": "no", + "gps_code": "GUSA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sangar%C3%A9di_Airport" + }, + { + "id": "32250", + "ident": "GUSB", + "type": "small_airport", + "name": "Sambailo Airport", + "latitude_deg": "12.575315", + "longitude_deg": "-13.363349", + "elevation_ft": "295", + "continent": "AF", + "iso_country": "GN", + "iso_region": "GN-B", + "municipality": "Koundara", + "scheduled_service": "no", + "gps_code": "GUSB", + "iata_code": "SBI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sambailo_Airport" + }, + { + "id": "31530", + "ident": "GUSI", + "type": "small_airport", + "name": "Siguiri Airport", + "latitude_deg": "11.399833", + "longitude_deg": "-9.18841", + "elevation_ft": "1296", + "continent": "AF", + "iso_country": "GN", + "iso_region": "GN-K", + "municipality": "Siguiri", + "scheduled_service": "no", + "gps_code": "GUSI", + "iata_code": "GII", + "wikipedia_link": "https://en.wikipedia.org/wiki/Siguiri_Airport" + }, + { + "id": "44577", + "ident": "GUXN", + "type": "small_airport", + "name": "Kankan Airport", + "latitude_deg": "10.448438", + "longitude_deg": "-9.228757", + "elevation_ft": "1234", + "continent": "AF", + "iso_country": "GN", + "iso_region": "GN-K", + "municipality": "Kankan", + "scheduled_service": "no", + "gps_code": "GUXN", + "iata_code": "KNN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kankan_Airport" + }, + { + "id": "3150", + "ident": "GVAC", + "type": "large_airport", + "name": "Amílcar Cabral International Airport", + "latitude_deg": "16.7414", + "longitude_deg": "-22.9494", + "elevation_ft": "177", + "continent": "AF", + "iso_country": "CV", + "iso_region": "CV-B", + "municipality": "Espargos", + "scheduled_service": "yes", + "gps_code": "GVAC", + "iata_code": "SID", + "wikipedia_link": "https://en.wikipedia.org/wiki/Am%C3%ADlcar_Cabral_International_Airport", + "keywords": "Sal Island" + }, + { + "id": "31560", + "ident": "GVAN", + "type": "small_airport", + "name": "Agostinho Neto Airport", + "latitude_deg": "17.202800750732422", + "longitude_deg": "-25.090599060058594", + "elevation_ft": "32", + "continent": "AF", + "iso_country": "CV", + "iso_region": "CV-B", + "municipality": "Ponta do Sol", + "scheduled_service": "no", + "gps_code": "GVAN", + "iata_code": "NTO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Agostinho_Neto_Airport", + "keywords": "Santo Antao Island" + }, + { + "id": "3151", + "ident": "GVBA", + "type": "medium_airport", + "name": "Rabil Airport", + "latitude_deg": "16.136499404907227", + "longitude_deg": "-22.888900756835938", + "elevation_ft": "69", + "continent": "AF", + "iso_country": "CV", + "iso_region": "CV-B", + "municipality": "Rabil", + "scheduled_service": "yes", + "gps_code": "GVBA", + "iata_code": "BVC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rabil_Airport", + "keywords": "Boa Vista Island" + }, + { + "id": "17600", + "ident": "GVE", + "type": "small_airport", + "name": "Gordonsville Municipal Airport", + "latitude_deg": "38.15599823", + "longitude_deg": "-78.165802002", + "elevation_ft": "454", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Gordonsville", + "scheduled_service": "no", + "gps_code": "KGVE", + "iata_code": "GVE", + "local_code": "GVE", + "home_link": "http://www.townofgordonsville.org/index.aspx?nid=125" + }, + { + "id": "3152", + "ident": "GVMA", + "type": "medium_airport", + "name": "Maio Airport", + "latitude_deg": "15.155900001525879", + "longitude_deg": "-23.213699340820312", + "elevation_ft": "36", + "continent": "AF", + "iso_country": "CV", + "iso_region": "CV-S", + "municipality": "Vila do Maio", + "scheduled_service": "yes", + "gps_code": "GVMA", + "iata_code": "MMO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maio_Airport", + "keywords": "Maio Island" + }, + { + "id": "31961", + "ident": "GVMT", + "type": "small_airport", + "name": "Mosteiros Airport", + "latitude_deg": "15.045000076293945", + "longitude_deg": "-24.33919906616211", + "elevation_ft": "66", + "continent": "AF", + "iso_country": "CV", + "iso_region": "CV-S", + "municipality": "Vila do Mosteiros", + "scheduled_service": "no", + "gps_code": "GVMT", + "iata_code": "MTI", + "keywords": "Fogo Island" + }, + { + "id": "3153", + "ident": "GVNP", + "type": "medium_airport", + "name": "Praia International Airport", + "latitude_deg": "14.924500465393066", + "longitude_deg": "-23.493499755859375", + "elevation_ft": "230", + "continent": "AF", + "iso_country": "CV", + "iso_region": "CV-S", + "municipality": "Praia", + "scheduled_service": "yes", + "gps_code": "GVNP", + "iata_code": "RAI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Francisco_Mendes_International_Airport", + "keywords": "Santiago Island" + }, + { + "id": "32287", + "ident": "GVSF", + "type": "small_airport", + "name": "São Filipe Airport", + "latitude_deg": "14.8850002289", + "longitude_deg": "-24.4799995422", + "elevation_ft": "617", + "continent": "AF", + "iso_country": "CV", + "iso_region": "CV-S", + "municipality": "São Filipe", + "scheduled_service": "yes", + "gps_code": "GVSF", + "iata_code": "SFL", + "wikipedia_link": "https://en.wikipedia.org/wiki/S%C3%A3o_Filipe_Airport", + "keywords": "Fogo Island" + }, + { + "id": "3154", + "ident": "GVSN", + "type": "medium_airport", + "name": "Preguiça Airport", + "latitude_deg": "16.588852", + "longitude_deg": "-24.284132", + "elevation_ft": "669", + "continent": "AF", + "iso_country": "CV", + "iso_region": "CV-B", + "municipality": "Preguiça", + "scheduled_service": "yes", + "gps_code": "GVSN", + "iata_code": "SNE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pregui%C3%A7a_Airport", + "keywords": "Sao Nicolau Island" + }, + { + "id": "3155", + "ident": "GVSV", + "type": "medium_airport", + "name": "São Pedro Airport", + "latitude_deg": "16.8332", + "longitude_deg": "-25.0553", + "elevation_ft": "66", + "continent": "AF", + "iso_country": "CV", + "iso_region": "CV-B", + "municipality": "São Pedro", + "scheduled_service": "yes", + "gps_code": "GVSV", + "iata_code": "VXE", + "wikipedia_link": "https://en.wikipedia.org/wiki/S%C3%A3o_Pedro_Airport", + "keywords": "São Vicente Island" + }, + { + "id": "318893", + "ident": "GW-0001", + "type": "small_airport", + "name": "Piche Airport", + "latitude_deg": "12.32008", + "longitude_deg": "-13.958281", + "elevation_ft": "236", + "continent": "AF", + "iso_country": "GW", + "iso_region": "GW-GA", + "municipality": "Piche", + "scheduled_service": "no" + }, + { + "id": "312857", + "ident": "GWN", + "type": "closed", + "name": "Gnarowein Airport", + "latitude_deg": "-6.555", + "longitude_deg": "146.248", + "elevation_ft": "525", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Gnarowein", + "scheduled_service": "no", + "iata_code": "GWN" + }, + { + "id": "34923", + "ident": "GWW", + "type": "closed", + "name": "Gatow Airport", + "latitude_deg": "52.4744", + "longitude_deg": "13.1381", + "elevation_ft": "161", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BE", + "municipality": "Spandau", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gatow_Airport", + "keywords": "GWW, EDBG, General-Steinhoff Kaserne, Luftwaffenmuseum der Bundeswehr, RAF Gatow" + }, + { + "id": "313734", + "ident": "GY-0001", + "type": "closed", + "name": "Gunns Airstrip", + "latitude_deg": "1.826", + "longitude_deg": "-58.584", + "elevation_ft": "800", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-UT", + "scheduled_service": "no" + }, + { + "id": "342238", + "ident": "GY-0002", + "type": "small_airport", + "name": "Krishna Sankar Airport", + "latitude_deg": "7.3121", + "longitude_deg": "-58.4873", + "elevation_ft": "4", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-PM", + "municipality": "Anna Regina", + "scheduled_service": "no", + "gps_code": "SYHC", + "keywords": "Hampton Court Airstrip" + }, + { + "id": "342239", + "ident": "GY-0003", + "type": "small_airport", + "name": "Spring Garden Airstrip", + "latitude_deg": "6.9851", + "longitude_deg": "-58.5005", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-PM", + "municipality": "Supenaam", + "scheduled_service": "no" + }, + { + "id": "342240", + "ident": "GY-0004", + "type": "small_airport", + "name": "Fort Wellington Airport", + "latitude_deg": "6.37616", + "longitude_deg": "-57.606478", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-MA", + "municipality": "Fort Wellington", + "scheduled_service": "no" + }, + { + "id": "347852", + "ident": "GY-0005", + "type": "small_airport", + "name": "Kako Mountain Airstrip", + "latitude_deg": "4.628142", + "longitude_deg": "-60.056977", + "elevation_ft": "1738", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-PT", + "municipality": "Kako Mountain", + "scheduled_service": "no" + }, + { + "id": "348622", + "ident": "GY-0006", + "type": "small_airport", + "name": "Neville Airport", + "latitude_deg": "6.15153", + "longitude_deg": "-57.22611", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-EB", + "municipality": "Joppa-Macedonia", + "scheduled_service": "no" + }, + { + "id": "348637", + "ident": "GY-0007", + "type": "small_airport", + "name": "Baiabu Airstrip", + "latitude_deg": "6.55935", + "longitude_deg": "-57.87218", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-MA", + "municipality": "Baiabu", + "scheduled_service": "no" + }, + { + "id": "41500", + "ident": "GY-BCG", + "type": "small_airport", + "name": "Bemichi Airport", + "latitude_deg": "7.640212", + "longitude_deg": "-58.961786", + "elevation_ft": "94", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-BA", + "municipality": "Kumaka", + "scheduled_service": "no", + "gps_code": "SYBE", + "iata_code": "BCG" + }, + { + "id": "41501", + "ident": "GY-BTO", + "type": "small_airport", + "name": "Botopasi Airport", + "latitude_deg": "4.21751109352", + "longitude_deg": "-55.4470539093", + "elevation_ft": "242", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Botopasi", + "scheduled_service": "yes", + "gps_code": "SMBO", + "iata_code": "BTO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Botopassi_Airstrip" + }, + { + "id": "41502", + "ident": "GY-DOE", + "type": "small_airport", + "name": "Djumu-Djomoe Airport", + "latitude_deg": "4.00571261057", + "longitude_deg": "-55.4816436768", + "elevation_ft": "290", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Djumu-Djomoe", + "scheduled_service": "yes", + "gps_code": "SMDJ", + "iata_code": "DOE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Djoemoe_Airstrip" + }, + { + "id": "41503", + "ident": "GY-LDO", + "type": "small_airport", + "name": "Ladouanie Airport", + "latitude_deg": "4.37610828345", + "longitude_deg": "-55.407056808499995", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Aurora", + "scheduled_service": "yes", + "gps_code": "SMDO", + "iata_code": "LDO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Laduani_Airstrip", + "keywords": "Aurora Airstrip" + }, + { + "id": "41504", + "ident": "GY-WSO", + "type": "small_airport", + "name": "Washabo Airport", + "latitude_deg": "5.215277", + "longitude_deg": "-57.185302", + "elevation_ft": "68", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Washabo", + "scheduled_service": "no", + "gps_code": "SMWS", + "iata_code": "WSO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Washabo_Airport" + }, + { + "id": "341235", + "ident": "GZI", + "type": "small_airport", + "name": "Ghazni Airport", + "latitude_deg": "33.487853", + "longitude_deg": "68.525243", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-GHA", + "municipality": "Ghazni", + "scheduled_service": "no", + "gps_code": "OAGN", + "iata_code": "GZI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ghazni_Airport" + }, + { + "id": "17601", + "ident": "H07", + "type": "small_airport", + "name": "Highland-Winet Airport", + "latitude_deg": "38.779300689697266", + "longitude_deg": "-89.6404037475586", + "elevation_ft": "537", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Highland", + "scheduled_service": "no", + "gps_code": "H07", + "local_code": "H07" + }, + { + "id": "17602", + "ident": "H11", + "type": "seaplane_base", + "name": "Sunbury Seaplane Base", + "latitude_deg": "40.91310119628906", + "longitude_deg": "-76.73300170898438", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Sunbury", + "scheduled_service": "no", + "gps_code": "H11", + "local_code": "H11" + }, + { + "id": "17603", + "ident": "H27", + "type": "small_airport", + "name": "Gainesville Memorial Airport", + "latitude_deg": "36.61259841918945", + "longitude_deg": "-92.39990234375", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Gainesville", + "scheduled_service": "no", + "gps_code": "H27", + "local_code": "H27" + }, + { + "id": "17604", + "ident": "H28", + "type": "small_airport", + "name": "Whetstone International Airport", + "latitude_deg": "48.998198", + "longitude_deg": "-112.789222", + "elevation_ft": "4336", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Port of Del Bonita", + "scheduled_service": "no", + "local_code": "H28", + "wikipedia_link": "https://en.wikipedia.org/wiki/Whetstone_International_Airport" + }, + { + "id": "17605", + "ident": "H31", + "type": "closed", + "name": "Lost Dutchman Heliport", + "latitude_deg": "33.425711", + "longitude_deg": "-111.544587", + "elevation_ft": "1760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Apache Junction", + "scheduled_service": "no", + "keywords": "H31, AZ28" + }, + { + "id": "17606", + "ident": "H43", + "type": "heliport", + "name": "Haverstraw Heliport", + "latitude_deg": "41.210983", + "longitude_deg": "-73.969792", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Haverstraw", + "scheduled_service": "no", + "local_code": "H43" + }, + { + "id": "17607", + "ident": "H47", + "type": "small_airport", + "name": "Hyampom Airport", + "latitude_deg": "40.627601623535156", + "longitude_deg": "-123.47100067138672", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hyampom", + "scheduled_service": "no", + "gps_code": "H47", + "local_code": "H47", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hyampom_Airport" + }, + { + "id": "17608", + "ident": "H49", + "type": "small_airport", + "name": "Sackman Field", + "latitude_deg": "38.450599670410156", + "longitude_deg": "-90.23590087890625", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "H49", + "local_code": "H49" + }, + { + "id": "17609", + "ident": "H57", + "type": "small_airport", + "name": "Bismarck Memorial Airport", + "latitude_deg": "37.75419998168945", + "longitude_deg": "-90.6167984008789", + "elevation_ft": "1038", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Bismarck", + "scheduled_service": "no", + "gps_code": "H57", + "local_code": "H57" + }, + { + "id": "17610", + "ident": "H63", + "type": "seaplane_base", + "name": "Harlan County Lake Seaplane Base", + "latitude_deg": "40.04309844970703", + "longitude_deg": "-99.25090026855469", + "elevation_ft": "1946", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Alma", + "scheduled_service": "no", + "gps_code": "H63", + "local_code": "H63" + }, + { + "id": "17611", + "ident": "H66", + "type": "small_airport", + "name": "Nowata Municipal Airport", + "latitude_deg": "36.72090148925781", + "longitude_deg": "-95.62529754638672", + "elevation_ft": "679", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Nowata", + "scheduled_service": "no", + "gps_code": "H66", + "local_code": "H66" + }, + { + "id": "17612", + "ident": "H75", + "type": "small_airport", + "name": "Hernando Village Airpark, Inc Airport", + "latitude_deg": "34.79819869995117", + "longitude_deg": "-90.03700256347656", + "elevation_ft": "242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Hernando", + "scheduled_service": "no", + "gps_code": "H75", + "local_code": "H75" + }, + { + "id": "17613", + "ident": "H77", + "type": "seaplane_base", + "name": "Bridge Bay Resort Seaplane Base", + "latitude_deg": "40.757598876953125", + "longitude_deg": "-122.322998046875", + "elevation_ft": "1065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Redding", + "scheduled_service": "no", + "gps_code": "H77", + "local_code": "H77" + }, + { + "id": "17614", + "ident": "H80", + "type": "small_airport", + "name": "Field of Dreams Airport", + "latitude_deg": "44.3650016784668", + "longitude_deg": "-83.76249694824219", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Hale", + "scheduled_service": "no", + "gps_code": "H80", + "local_code": "H80" + }, + { + "id": "316236", + "ident": "H81", + "type": "small_airport", + "name": "River Falls Airport", + "latitude_deg": "35.0825", + "longitude_deg": "-101.7541", + "elevation_ft": "3588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Amarillo", + "scheduled_service": "no", + "gps_code": "H81", + "local_code": "H81", + "home_link": "http://riverfalls.tc/Airport.html", + "keywords": "81XA" + }, + { + "id": "17615", + "ident": "H97", + "type": "small_airport", + "name": "Pawnee Municipal Airport", + "latitude_deg": "36.377209", + "longitude_deg": "-96.805285", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Pawnee", + "scheduled_service": "no", + "local_code": "H97" + }, + { + "id": "3157", + "ident": "HAAB", + "type": "large_airport", + "name": "Addis Ababa Bole International Airport", + "latitude_deg": "8.97789", + "longitude_deg": "38.799301", + "elevation_ft": "7630", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-AA", + "municipality": "Addis Ababa", + "scheduled_service": "yes", + "gps_code": "HAAB", + "iata_code": "ADD", + "home_link": "http://www.ethiopianairports.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bole_International_Airport", + "keywords": "Haile Selassie I, Bole International Airport" + }, + { + "id": "31564", + "ident": "HAAD", + "type": "small_airport", + "name": "Adaba Airport", + "latitude_deg": "7.022953", + "longitude_deg": "39.273162", + "elevation_ft": "7896", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-OR", + "municipality": "Adaba", + "scheduled_service": "no", + "gps_code": "HAAD" + }, + { + "id": "3158", + "ident": "HAAL", + "type": "small_airport", + "name": "Lideta Army Airport", + "latitude_deg": "9.003685", + "longitude_deg": "38.725498", + "elevation_ft": "7749", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-AA", + "municipality": "Addis Ababa", + "scheduled_service": "no", + "gps_code": "HAAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lideta_Army_Airport" + }, + { + "id": "3159", + "ident": "HAAM", + "type": "medium_airport", + "name": "Arba Minch Airport", + "latitude_deg": "6.0393900871276855", + "longitude_deg": "37.59049987792969", + "elevation_ft": "3901", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-SN", + "scheduled_service": "yes", + "gps_code": "HAAM", + "iata_code": "AMH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arba_Minch_Airport", + "keywords": "Gantar,Minghi" + }, + { + "id": "3160", + "ident": "HAAX", + "type": "medium_airport", + "name": "Axum Airport", + "latitude_deg": "14.1468", + "longitude_deg": "38.7728", + "elevation_ft": "6959", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-TI", + "municipality": "Axum", + "scheduled_service": "yes", + "gps_code": "HAAX", + "iata_code": "AXU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Axum_Airport", + "keywords": "Aksum, Emperor Yohannes IV Airport" + }, + { + "id": "28119", + "ident": "HABC", + "type": "small_airport", + "name": "Baco Airport", + "latitude_deg": "5.78287", + "longitude_deg": "36.562", + "elevation_ft": "4580", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-SN", + "municipality": "Baco", + "scheduled_service": "no", + "gps_code": "HABC", + "iata_code": "BCO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baco_Airport", + "keywords": "Jinka" + }, + { + "id": "3161", + "ident": "HABD", + "type": "medium_airport", + "name": "Bahir Dar Airport", + "latitude_deg": "11.6081", + "longitude_deg": "37.321602", + "elevation_ft": "5978", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-AM", + "municipality": "Bahir Dar", + "scheduled_service": "yes", + "gps_code": "HABD", + "iata_code": "BJR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bahir_Dar_Airport", + "keywords": "Dejazmach Belay Zeleke" + }, + { + "id": "30694", + "ident": "HABE", + "type": "small_airport", + "name": "Beica Airport", + "latitude_deg": "9.38639", + "longitude_deg": "34.5219", + "elevation_ft": "5410", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-OR", + "municipality": "Beica", + "scheduled_service": "yes", + "gps_code": "HABE", + "iata_code": "BEI" + }, + { + "id": "17616", + "ident": "HAD", + "type": "small_airport", + "name": "Harford Field", + "latitude_deg": "42.923686", + "longitude_deg": "-106.310111", + "elevation_ft": "5370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Casper", + "scheduled_service": "no", + "gps_code": "KHAD", + "local_code": "HAD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harford_Field" + }, + { + "id": "316528", + "ident": "HADB", + "type": "closed", + "name": "Degah Bur Airport", + "latitude_deg": "8.234", + "longitude_deg": "43.5673", + "elevation_ft": "3550", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-SO", + "municipality": "Degah Bur", + "scheduled_service": "no", + "gps_code": "HADB", + "iata_code": "DGC" + }, + { + "id": "30949", + "ident": "HADC", + "type": "small_airport", + "name": "Combolcha Airport", + "latitude_deg": "11.082500457763672", + "longitude_deg": "39.71139907836914", + "elevation_ft": "6117", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-AM", + "municipality": "Dessie", + "scheduled_service": "yes", + "gps_code": "HADC", + "iata_code": "DSE" + }, + { + "id": "30885", + "ident": "HADD", + "type": "small_airport", + "name": "Dembidollo Airport", + "latitude_deg": "8.554", + "longitude_deg": "34.858002", + "elevation_ft": "5200", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-OR", + "municipality": "Dembidollo", + "scheduled_service": "yes", + "gps_code": "HADD", + "iata_code": "DEM" + }, + { + "id": "30882", + "ident": "HADM", + "type": "small_airport", + "name": "Debra Marcos Airport", + "latitude_deg": "10.350000381469727", + "longitude_deg": "37.71699905395508", + "elevation_ft": "8136", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-AM", + "municipality": "Debra Marcos", + "scheduled_service": "no", + "gps_code": "HADM", + "iata_code": "DBM" + }, + { + "id": "31565", + "ident": "HADO", + "type": "small_airport", + "name": "Dodola Airport", + "latitude_deg": "7.020559787750244", + "longitude_deg": "39.05110168457031", + "elevation_ft": "8234", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-OR", + "municipality": "Dodola", + "scheduled_service": "no", + "gps_code": "HADO" + }, + { + "id": "3162", + "ident": "HADR", + "type": "medium_airport", + "name": "Aba Tenna Dejazmach Yilma International Airport", + "latitude_deg": "9.624699592590332", + "longitude_deg": "41.85419845581055", + "elevation_ft": "3827", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-DD", + "municipality": "Dire Dawa", + "scheduled_service": "yes", + "gps_code": "HADR", + "iata_code": "DIR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aba_Tenna_Dejazmach_Yilma_International_Airport" + }, + { + "id": "30883", + "ident": "HADT", + "type": "small_airport", + "name": "Debre Tabor Airport", + "latitude_deg": "11.967000007629395", + "longitude_deg": "38", + "elevation_ft": "8490", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-AM", + "municipality": "Debre Tabor", + "scheduled_service": "no", + "gps_code": "HADT", + "iata_code": "DBT" + }, + { + "id": "31195", + "ident": "HAFN", + "type": "small_airport", + "name": "Fincha Airport", + "latitude_deg": "9.583000183105469", + "longitude_deg": "37.349998474121094", + "elevation_ft": "7600", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-OR", + "municipality": "Fincha", + "scheduled_service": "no", + "gps_code": "HAFN", + "iata_code": "FNH" + }, + { + "id": "31546", + "ident": "HAGB", + "type": "small_airport", + "name": "Robe Airport", + "latitude_deg": "7.119033", + "longitude_deg": "40.045166", + "elevation_ft": "7892", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-OR", + "municipality": "Goba", + "scheduled_service": "no", + "gps_code": "HAGB", + "iata_code": "GOB" + }, + { + "id": "31545", + "ident": "HAGH", + "type": "small_airport", + "name": "Ghinnir Airport", + "latitude_deg": "7.15000009537", + "longitude_deg": "40.716999054", + "elevation_ft": "6499", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-OR", + "municipality": "Ghinnir", + "scheduled_service": "no", + "gps_code": "HAGH", + "iata_code": "GNN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ghinnir_Airport" + }, + { + "id": "3163", + "ident": "HAGM", + "type": "medium_airport", + "name": "Gambela Airport", + "latitude_deg": "8.12876", + "longitude_deg": "34.563099", + "elevation_ft": "1614", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-GA", + "municipality": "Gambela", + "scheduled_service": "yes", + "gps_code": "HAGM", + "iata_code": "GMB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gambela_Airport", + "keywords": "Gambela National Park" + }, + { + "id": "3164", + "ident": "HAGN", + "type": "medium_airport", + "name": "Gondar Airport", + "latitude_deg": "12.5199", + "longitude_deg": "37.433998", + "elevation_ft": "6449", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-AM", + "municipality": "Azezo", + "scheduled_service": "yes", + "gps_code": "HAGN", + "iata_code": "GDQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gondar_Airport", + "keywords": "Atse Tewodros,, Emperor Tewodros" + }, + { + "id": "3165", + "ident": "HAGO", + "type": "medium_airport", + "name": "Gode Airport", + "latitude_deg": "5.93513011932", + "longitude_deg": "43.5786018372", + "elevation_ft": "834", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-SO", + "municipality": "Gode", + "scheduled_service": "yes", + "gps_code": "HAGO", + "iata_code": "GDE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gode_Airport", + "keywords": "Iddiole" + }, + { + "id": "31547", + "ident": "HAGR", + "type": "small_airport", + "name": "Gore Airport", + "latitude_deg": "8.1614", + "longitude_deg": "35.5529", + "elevation_ft": "6580", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-OR", + "municipality": "Gore", + "scheduled_service": "yes", + "gps_code": "HAGR", + "iata_code": "GOR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gore_Airport" + }, + { + "id": "300239", + "ident": "HAHM", + "type": "medium_airport", + "name": "Harar Meda Airport", + "latitude_deg": "8.7163", + "longitude_deg": "39.0059", + "elevation_ft": "6201", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-OR", + "municipality": "Debre Zeyit", + "scheduled_service": "no", + "gps_code": "HAHM", + "iata_code": "QHR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harar_Meda_Airport", + "keywords": "አባጤናደጃ ደጃደጃ" + }, + { + "id": "31653", + "ident": "HAHU", + "type": "small_airport", + "name": "Humera Airport", + "latitude_deg": "13.83012", + "longitude_deg": "36.88237", + "elevation_ft": "1930", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-TI", + "municipality": "Akwi", + "scheduled_service": "no", + "gps_code": "HAHU", + "iata_code": "HUE", + "keywords": "Himera, Himora" + }, + { + "id": "313314", + "ident": "HAJJ", + "type": "medium_airport", + "name": "Wilwal International Airport", + "latitude_deg": "9.3325", + "longitude_deg": "42.9121", + "elevation_ft": "5954", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-SO", + "municipality": "Jijiga", + "scheduled_service": "yes", + "gps_code": "HAJJ", + "iata_code": "JIJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jijiga_Airport", + "keywords": "Garaad Wiil-Waal" + }, + { + "id": "3166", + "ident": "HAJM", + "type": "medium_airport", + "name": "Jimma Airport", + "latitude_deg": "7.66609001159668", + "longitude_deg": "36.81660079956055", + "elevation_ft": "5500", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-OR", + "municipality": "Jimma", + "scheduled_service": "yes", + "gps_code": "HAJM", + "iata_code": "JIM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aba_Segud_Airport" + }, + { + "id": "30612", + "ident": "HAKD", + "type": "medium_airport", + "name": "Kebri Dahar Airport", + "latitude_deg": "6.732577", + "longitude_deg": "44.241339", + "elevation_ft": "1800", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-SO", + "municipality": "Kebri Dahar", + "scheduled_service": "yes", + "gps_code": "HAKD", + "iata_code": "ABK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kabri_Dar_Airport", + "keywords": "Kabri Dar" + }, + { + "id": "31815", + "ident": "HAKL", + "type": "small_airport", + "name": "Kelafo East Airport", + "latitude_deg": "5.6570000648498535", + "longitude_deg": "44.349998474121094", + "elevation_ft": "1730", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-SO", + "municipality": "Kelafo", + "scheduled_service": "no", + "gps_code": "HAKL", + "iata_code": "LFO" + }, + { + "id": "30664", + "ident": "HALA", + "type": "medium_airport", + "name": "Hawassa International Airport", + "latitude_deg": "7.099869", + "longitude_deg": "38.396187", + "elevation_ft": "5450", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-XSD", + "municipality": "Hawassa", + "scheduled_service": "no", + "gps_code": "HALA", + "iata_code": "AWA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Awasa_Airport", + "keywords": "Awasa" + }, + { + "id": "3167", + "ident": "HALL", + "type": "small_airport", + "name": "Lalibella Airport", + "latitude_deg": "11.975000381469727", + "longitude_deg": "38.97999954223633", + "elevation_ft": "6506", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-AM", + "municipality": "Lalibela", + "scheduled_service": "no", + "gps_code": "HALL", + "iata_code": "LLI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lalibela_Airport" + }, + { + "id": "314046", + "ident": "HAMA", + "type": "small_airport", + "name": "Mekane Selam Airport", + "latitude_deg": "10.7254", + "longitude_deg": "38.7415", + "elevation_ft": "8405", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-AM", + "municipality": "Mekane Selam", + "scheduled_service": "no", + "gps_code": "HAMA", + "iata_code": "MKS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mekane_Selam_Airport" + }, + { + "id": "31566", + "ident": "HAMJ", + "type": "small_airport", + "name": "Tume Airport", + "latitude_deg": "5.833", + "longitude_deg": "35.533001", + "elevation_ft": "2500", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-SW", + "municipality": "Maji", + "scheduled_service": "no", + "gps_code": "HAMJ" + }, + { + "id": "3168", + "ident": "HAMK", + "type": "medium_airport", + "name": "Mekele Airport", + "latitude_deg": "13.467399597167969", + "longitude_deg": "39.53350067138672", + "elevation_ft": "7396", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-TI", + "scheduled_service": "no", + "gps_code": "HAMK", + "iata_code": "MQX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alula_Aba_Airport" + }, + { + "id": "31567", + "ident": "HAML", + "type": "closed", + "name": "Masslo Airport", + "latitude_deg": "6.408491", + "longitude_deg": "39.722443", + "elevation_ft": "4180", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-OR", + "municipality": "Masslo", + "scheduled_service": "no", + "keywords": "HAML" + }, + { + "id": "31568", + "ident": "HAMM", + "type": "small_airport", + "name": "Metema Airport", + "latitude_deg": "12.932999610899998", + "longitude_deg": "36.1669998169", + "elevation_ft": "2650", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-AM", + "municipality": "Metema", + "scheduled_service": "no", + "gps_code": "HAMM", + "iata_code": "ETE" + }, + { + "id": "32017", + "ident": "HAMN", + "type": "small_airport", + "name": "Mendi Airport", + "latitude_deg": "9.767", + "longitude_deg": "35.099998", + "elevation_ft": "5500", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-OR", + "municipality": "Mendi", + "scheduled_service": "no", + "gps_code": "HAMN", + "iata_code": "NDM" + }, + { + "id": "313177", + "ident": "HAMR", + "type": "small_airport", + "name": "Mui River Airport", + "latitude_deg": "5.8646", + "longitude_deg": "35.7485", + "elevation_ft": "1834", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-SW", + "municipality": "Omo National Park", + "scheduled_service": "no", + "gps_code": "HAMR", + "iata_code": "MUJ" + }, + { + "id": "31960", + "ident": "HAMT", + "type": "small_airport", + "name": "Mizan Teferi Airport", + "latitude_deg": "6.9571", + "longitude_deg": "35.5547", + "elevation_ft": "4396", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-SW", + "municipality": "Mizan Teferi", + "scheduled_service": "yes", + "gps_code": "HAMT", + "iata_code": "MTF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mizan_Teferi_Airport" + }, + { + "id": "312841", + "ident": "HANG", + "type": "small_airport", + "name": "Negele Airport", + "latitude_deg": "5.2897", + "longitude_deg": "39.7023", + "elevation_ft": "5230", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-OR", + "municipality": "Negele Borana", + "scheduled_service": "no", + "gps_code": "HANG", + "iata_code": "EGL", + "keywords": "Neghelle" + }, + { + "id": "32021", + "ident": "HANJ", + "type": "small_airport", + "name": "Nejjo Airport", + "latitude_deg": "9.55", + "longitude_deg": "35.466995", + "elevation_ft": "6150", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-OR", + "municipality": "Nejo", + "scheduled_service": "no", + "gps_code": "HANJ", + "iata_code": "NEJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nejjo_Airport" + }, + { + "id": "32022", + "ident": "HANK", + "type": "small_airport", + "name": "Nekemte Airport", + "latitude_deg": "9.050000190734863", + "longitude_deg": "36.599998474121094", + "elevation_ft": "6500", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-OR", + "municipality": "Nekemte", + "scheduled_service": "no", + "gps_code": "HANK", + "iata_code": "NEK" + }, + { + "id": "316689", + "ident": "HAPW", + "type": "small_airport", + "name": "Beles Airport", + "latitude_deg": "11.3126", + "longitude_deg": "36.4164", + "elevation_ft": "3695", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-BE", + "municipality": "Pawe", + "scheduled_service": "no", + "gps_code": "HAPW", + "iata_code": "PWI", + "keywords": "Pawi" + }, + { + "id": "32409", + "ident": "HASD", + "type": "small_airport", + "name": "Soddu Airport", + "latitude_deg": "6.80281", + "longitude_deg": "37.68622", + "elevation_ft": "6400", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-OR", + "municipality": "Soddu", + "scheduled_service": "no", + "gps_code": "HASD", + "iata_code": "SXU" + }, + { + "id": "31569", + "ident": "HASH", + "type": "small_airport", + "name": "Sheikh Hussein Airport", + "latitude_deg": "7.74175", + "longitude_deg": "40.69557", + "elevation_ft": "6500", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-OR", + "municipality": "Sheikh Hussein", + "scheduled_service": "no", + "gps_code": "HASH" + }, + { + "id": "316765", + "ident": "HASK", + "type": "small_airport", + "name": "Shakiso Airport", + "latitude_deg": "5.6923", + "longitude_deg": "38.9764", + "elevation_ft": "5815", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-OR", + "municipality": "Shakiso", + "scheduled_service": "no", + "gps_code": "HASK", + "iata_code": "SKR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shakiso_Airport" + }, + { + "id": "314658", + "ident": "HASM", + "type": "small_airport", + "name": "Semera Airport", + "latitude_deg": "11.7875", + "longitude_deg": "40.9915", + "elevation_ft": "1390", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-AF", + "municipality": "Semera", + "scheduled_service": "yes", + "gps_code": "HASM", + "iata_code": "SZE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Semera_Airport" + }, + { + "id": "3169", + "ident": "HASO", + "type": "medium_airport", + "name": "Asosa Airport", + "latitude_deg": "10.018500328063965", + "longitude_deg": "34.586299896240234", + "elevation_ft": "5100", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-BE", + "municipality": "Asosa", + "scheduled_service": "yes", + "gps_code": "HASO", + "iata_code": "ASO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Asosa_Airport" + }, + { + "id": "32448", + "ident": "HATP", + "type": "small_airport", + "name": "Tippi Airport", + "latitude_deg": "7.2024", + "longitude_deg": "35.415", + "elevation_ft": "1100", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-SW", + "municipality": "Tippi", + "scheduled_service": "yes", + "gps_code": "HATP", + "iata_code": "TIE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tippi_Airport" + }, + { + "id": "32627", + "ident": "HAWC", + "type": "closed", + "name": "Waca Airport", + "latitude_deg": "7.167", + "longitude_deg": "37.167", + "elevation_ft": "4200", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-SW", + "municipality": "Waca", + "scheduled_service": "no", + "gps_code": "HAWC", + "iata_code": "WAC" + }, + { + "id": "308934", + "ident": "HAWR", + "type": "small_airport", + "name": "Warder Airport", + "latitude_deg": "6.9724", + "longitude_deg": "45.3334", + "elevation_ft": "1850", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-SO", + "municipality": "Warder", + "scheduled_service": "no", + "gps_code": "HAWR", + "iata_code": "WRA" + }, + { + "id": "17618", + "ident": "HAY", + "type": "small_airport", + "name": "Haycock Airport", + "latitude_deg": "65.20099639889999", + "longitude_deg": "-161.156997681", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Haycock", + "scheduled_service": "no", + "gps_code": "HAY", + "iata_code": "HAY", + "local_code": "HAY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Haycock_Airport" + }, + { + "id": "312681", + "ident": "HAZ", + "type": "small_airport", + "name": "Hatzfeldhaven Airport", + "latitude_deg": "-4.4033", + "longitude_deg": "145.2056", + "elevation_ft": "26", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Hatzfeldhaven", + "scheduled_service": "no", + "iata_code": "HAZ", + "local_code": "HTZ" + }, + { + "id": "3170", + "ident": "HBBA", + "type": "medium_airport", + "name": "Bujumbura Melchior Ndadaye International Airport", + "latitude_deg": "-3.32402", + "longitude_deg": "29.318501", + "elevation_ft": "2582", + "continent": "AF", + "iso_country": "BI", + "iso_region": "BI-BM", + "municipality": "Bujumbura", + "scheduled_service": "yes", + "gps_code": "HBBA", + "iata_code": "BJM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bujumbura_International_Airport" + }, + { + "id": "31529", + "ident": "HBBE", + "type": "small_airport", + "name": "Gitega Airport", + "latitude_deg": "-3.417209", + "longitude_deg": "29.911308", + "elevation_ft": "5741", + "continent": "AF", + "iso_country": "BI", + "iso_region": "BI-GI", + "municipality": "Gitega", + "scheduled_service": "no", + "gps_code": "HBBE", + "iata_code": "GID", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gitega_Airport", + "keywords": "Kitega" + }, + { + "id": "310972", + "ident": "HBBK", + "type": "small_airport", + "name": "Gihohi Airport", + "latitude_deg": "-4.0342", + "longitude_deg": "30.1318", + "elevation_ft": "4065", + "continent": "AF", + "iso_country": "BI", + "iso_region": "BI-RT", + "municipality": "Gihohi", + "scheduled_service": "no", + "gps_code": "HBBK" + }, + { + "id": "318984", + "ident": "HBBL", + "type": "closed", + "name": "Nyanza-Lac Airport", + "latitude_deg": "-4.339434", + "longitude_deg": "29.598245", + "elevation_ft": "2559", + "continent": "AF", + "iso_country": "BI", + "iso_region": "BI-MA", + "municipality": "Nyanza-Lac", + "scheduled_service": "no", + "gps_code": "HBBL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nyanza-Lac_Airport" + }, + { + "id": "307094", + "ident": "HBBO", + "type": "small_airport", + "name": "Kirundo Airport", + "latitude_deg": "-2.544772", + "longitude_deg": "30.094575", + "elevation_ft": "4511", + "continent": "AF", + "iso_country": "BI", + "iso_region": "BI-KI", + "municipality": "Kirundo", + "scheduled_service": "yes", + "gps_code": "HBBO", + "iata_code": "KRE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kirundo_Airport" + }, + { + "id": "333096", + "ident": "HBQ", + "type": "small_airport", + "name": "Haibei Qilian Airport", + "latitude_deg": "38.008068", + "longitude_deg": "100.645065", + "elevation_ft": "10377", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-63", + "municipality": "Haibei (Qilian)", + "scheduled_service": "yes", + "gps_code": "ZLHB", + "iata_code": "HBQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qilian_Airport" + }, + { + "id": "318151", + "ident": "HBT", + "type": "seaplane_base", + "name": "Hambantota Seaplane Base", + "latitude_deg": "6.124043", + "longitude_deg": "81.103", + "elevation_ft": "0", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-3", + "municipality": "Hambantota", + "scheduled_service": "yes", + "iata_code": "HBT" + }, + { + "id": "30638", + "ident": "HCMA", + "type": "small_airport", + "name": "Caluula Airport", + "latitude_deg": "11.9582", + "longitude_deg": "50.748", + "elevation_ft": "6", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-BR", + "municipality": "Caluula", + "scheduled_service": "no", + "gps_code": "HCMA", + "iata_code": "ALU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alula_Airport", + "keywords": "Alula" + }, + { + "id": "30711", + "ident": "HCMB", + "type": "small_airport", + "name": "Baidoa Airport", + "latitude_deg": "3.10192", + "longitude_deg": "43.627137", + "elevation_ft": "1820", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-BY", + "municipality": "Baidoa", + "scheduled_service": "no", + "gps_code": "HCMB", + "iata_code": "BIB" + }, + { + "id": "30865", + "ident": "HCMC", + "type": "small_airport", + "name": "Qandala Airport", + "latitude_deg": "11.495627", + "longitude_deg": "49.909816", + "elevation_ft": "30", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-BR", + "municipality": "Qandala", + "scheduled_service": "no", + "gps_code": "HCMC", + "iata_code": "CXN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Candala_Airport", + "keywords": "Candala" + }, + { + "id": "302296", + "ident": "HCMD", + "type": "small_airport", + "name": "Baardheere Airport", + "latitude_deg": "2.330195", + "longitude_deg": "42.311802", + "elevation_ft": "396", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-GE", + "municipality": "Baardheere", + "scheduled_service": "no", + "gps_code": "HCMD", + "iata_code": "BSY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bardera_Airport", + "keywords": "Bardera" + }, + { + "id": "31571", + "ident": "HCME", + "type": "small_airport", + "name": "Eil Airport", + "latitude_deg": "8.104", + "longitude_deg": "49.82", + "elevation_ft": "879", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-NU", + "municipality": "Eyl", + "scheduled_service": "no", + "gps_code": "HCME", + "iata_code": "HCM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eyl_Airport", + "keywords": "Eyl" + }, + { + "id": "30792", + "ident": "HCMF", + "type": "small_airport", + "name": "Bosaso / Bender Qassim International Airport", + "latitude_deg": "11.275235", + "longitude_deg": "49.139231", + "elevation_ft": "3", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-BR", + "municipality": "Bosaso", + "scheduled_service": "yes", + "gps_code": "HCMF", + "iata_code": "BSA" + }, + { + "id": "31552", + "ident": "HCMG", + "type": "small_airport", + "name": "Gardo Airport", + "latitude_deg": "9.517000198364258", + "longitude_deg": "49.08300018310547", + "elevation_ft": "2632", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-BR", + "municipality": "Gardo", + "scheduled_service": "no", + "gps_code": "HCMG", + "iata_code": "GSR" + }, + { + "id": "3171", + "ident": "HCMH", + "type": "medium_airport", + "name": "Egal International Airport", + "latitude_deg": "9.513207", + "longitude_deg": "44.082389", + "elevation_ft": "4471", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-WO", + "municipality": "Hargeisa", + "scheduled_service": "yes", + "gps_code": "HCMH", + "iata_code": "HGA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hargeisa_International_Airport", + "keywords": "Madaarka Caalamiga a ee Cigaal, مطار هرجيسا إيغال الدولية‎)" + }, + { + "id": "3172", + "ident": "HCMI", + "type": "medium_airport", + "name": "Berbera Airport", + "latitude_deg": "10.385035", + "longitude_deg": "44.936723", + "elevation_ft": "30", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-WO", + "municipality": "Berbera", + "scheduled_service": "yes", + "gps_code": "HCMI", + "iata_code": "BBO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Berbera_Airport" + }, + { + "id": "313906", + "ident": "HCMJ", + "type": "small_airport", + "name": "Lugh Ganane Airport", + "latitude_deg": "3.8124", + "longitude_deg": "42.5459", + "elevation_ft": "507", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-GE", + "municipality": "Luuq", + "scheduled_service": "no", + "gps_code": "HCMJ", + "iata_code": "LGX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lugh_Ganane_Airport", + "keywords": "Luuq Ganaane" + }, + { + "id": "3173", + "ident": "HCMK", + "type": "medium_airport", + "name": "Kismayo Airport", + "latitude_deg": "-0.377353", + "longitude_deg": "42.459202", + "elevation_ft": "49", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-JH", + "municipality": "Kismayo", + "scheduled_service": "no", + "gps_code": "HCMK", + "iata_code": "KMU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kismayo_Airport", + "keywords": "Kisimayu, كيسمايو المطار" + }, + { + "id": "31899", + "ident": "HCMM", + "type": "medium_airport", + "name": "Aden Adde International Airport", + "latitude_deg": "2.0144400596618652", + "longitude_deg": "45.3046989440918", + "elevation_ft": "29", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-BN", + "municipality": "Mogadishu", + "scheduled_service": "yes", + "gps_code": "HCMM", + "iata_code": "MGQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aden_Adde_International_Airport", + "keywords": "HCCM" + }, + { + "id": "31572", + "ident": "HCMN", + "type": "small_airport", + "name": "Beledweyne Airport", + "latitude_deg": "4.766976", + "longitude_deg": "45.2388", + "elevation_ft": "559", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-HI", + "municipality": "Beledweyne", + "scheduled_service": "yes", + "gps_code": "HCMN", + "iata_code": "BLW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beledweyne_Airport", + "keywords": "Belet Uen, Beletweyn, Duqow Ahmed Fiidow, Beletwene" + }, + { + "id": "30836", + "ident": "HCMO", + "type": "small_airport", + "name": "Hobyo Airport", + "latitude_deg": "5.358003", + "longitude_deg": "48.515281", + "elevation_ft": "65", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-GA", + "municipality": "Hobyo", + "scheduled_service": "no", + "gps_code": "HCMO", + "iata_code": "CMO", + "keywords": "Obbia" + }, + { + "id": "31536", + "ident": "HCMR", + "type": "small_airport", + "name": "Galcaio Airport", + "latitude_deg": "6.78082990646", + "longitude_deg": "47.45470047", + "elevation_ft": "975", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-MU", + "municipality": "Galcaio", + "scheduled_service": "yes", + "gps_code": "HCMR", + "iata_code": "GLK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Galkacyo_Airport", + "keywords": "Galkacyo Airport" + }, + { + "id": "30837", + "ident": "HCMS", + "type": "small_airport", + "name": "Iskushuban Airport", + "latitude_deg": "10.3", + "longitude_deg": "50.233002", + "elevation_ft": "1121", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-BR", + "municipality": "Iskushuban", + "scheduled_service": "no", + "gps_code": "HCMS", + "iata_code": "CMS", + "keywords": "Scusciuban" + }, + { + "id": "31018", + "ident": "HCMU", + "type": "small_airport", + "name": "Erigavo Airport", + "latitude_deg": "10.642050549", + "longitude_deg": "47.3879814148", + "elevation_ft": "5720", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-SA", + "municipality": "Erigavo", + "scheduled_service": "no", + "gps_code": "HCMU", + "iata_code": "ERA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ceerigaabo_Airport" + }, + { + "id": "30802", + "ident": "HCMV", + "type": "small_airport", + "name": "Burao Airport", + "latitude_deg": "9.5275", + "longitude_deg": "45.5549", + "elevation_ft": "3400", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-TO", + "municipality": "Burao", + "scheduled_service": "no", + "gps_code": "HCMV", + "iata_code": "BUO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Burao_Airport" + }, + { + "id": "319714", + "ident": "HCMW", + "type": "small_airport", + "name": "Garowe Airport", + "latitude_deg": "8.457942", + "longitude_deg": "48.567407", + "elevation_ft": "1465", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-NU", + "municipality": "Garowe", + "scheduled_service": "yes", + "gps_code": "HCGR", + "iata_code": "GGR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Garowe_Airport", + "keywords": "HCMW, Puntland, General Mohamed Abshir" + }, + { + "id": "39581", + "ident": "HDAG", + "type": "small_airport", + "name": "Assa-Gueyla Airport", + "latitude_deg": "12.188882", + "longitude_deg": "42.637494", + "elevation_ft": "2050", + "continent": "AF", + "iso_country": "DJ", + "iso_region": "DJ-TA", + "municipality": "Assa-Gueyla", + "scheduled_service": "no", + "gps_code": "HDAG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Assa-Gueyla_Airport" + }, + { + "id": "3174", + "ident": "HDAM", + "type": "large_airport", + "name": "Djibouti-Ambouli Airport", + "latitude_deg": "11.5473", + "longitude_deg": "43.1595", + "elevation_ft": "49", + "continent": "AF", + "iso_country": "DJ", + "iso_region": "DJ-DJ", + "municipality": "Djibouti City", + "scheduled_service": "yes", + "gps_code": "HDAM", + "iata_code": "JIB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Djibouti-Ambouli_International_Airport", + "keywords": "Camp Lemonnier" + }, + { + "id": "39580", + "ident": "HDAS", + "type": "small_airport", + "name": "Ali-Sabieh Airport", + "latitude_deg": "11.146889", + "longitude_deg": "42.72", + "elevation_ft": "2313", + "continent": "AF", + "iso_country": "DJ", + "iso_region": "DJ-AS", + "municipality": "Ali-Sabieh", + "scheduled_service": "no", + "gps_code": "HDAS", + "iata_code": "AII", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ali-Sabieh_Airport" + }, + { + "id": "31574", + "ident": "HDCH", + "type": "small_airport", + "name": "Chabelley Airport", + "latitude_deg": "11.516799926757812", + "longitude_deg": "43.0614013671875", + "elevation_ft": "279", + "continent": "AF", + "iso_country": "DJ", + "iso_region": "DJ-AR", + "municipality": "Chabelley", + "scheduled_service": "no", + "gps_code": "HDCH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chabelley_Airport" + }, + { + "id": "39582", + "ident": "HDDK", + "type": "small_airport", + "name": "Dikhil Airport", + "latitude_deg": "11.097958", + "longitude_deg": "42.350556", + "elevation_ft": "1520", + "continent": "AF", + "iso_country": "DJ", + "iso_region": "DJ-DI", + "municipality": "Dikhil", + "scheduled_service": "no", + "gps_code": "HDDK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dikhil_Airport" + }, + { + "id": "39583", + "ident": "HDHE", + "type": "small_airport", + "name": "Herkale Airport", + "latitude_deg": "12.4449", + "longitude_deg": "43.292575", + "elevation_ft": "38", + "continent": "AF", + "iso_country": "DJ", + "iso_region": "DJ-OB", + "municipality": "Herkale", + "scheduled_service": "no", + "gps_code": "HDHE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Herkale_Airport" + }, + { + "id": "39584", + "ident": "HDMO", + "type": "small_airport", + "name": "Moucha Airport", + "latitude_deg": "11.72975", + "longitude_deg": "43.209559", + "continent": "AF", + "iso_country": "DJ", + "iso_region": "DJ-DJ", + "municipality": "Moucha Island", + "scheduled_service": "no", + "gps_code": "HDMO", + "iata_code": "MHI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moucha_Airport" + }, + { + "id": "32082", + "ident": "HDOB", + "type": "small_airport", + "name": "Obock Airport", + "latitude_deg": "11.967000007629395", + "longitude_deg": "43.266998291015625", + "elevation_ft": "69", + "continent": "AF", + "iso_country": "DJ", + "iso_region": "DJ-OB", + "municipality": "Obock", + "scheduled_service": "no", + "gps_code": "HDOB", + "iata_code": "OBC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Obock_Airport" + }, + { + "id": "32430", + "ident": "HDTJ", + "type": "small_airport", + "name": "Tadjoura Airport", + "latitude_deg": "11.787037", + "longitude_deg": "42.917376", + "elevation_ft": "246", + "continent": "AF", + "iso_country": "DJ", + "iso_region": "DJ-TA", + "municipality": "Tadjoura", + "scheduled_service": "no", + "gps_code": "HDTJ", + "iata_code": "TDJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tadjoura_Airport" + }, + { + "id": "2354", + "ident": "HE11", + "type": "small_airport", + "name": "Badr El Din Airport", + "latitude_deg": "29.867554", + "longitude_deg": "27.946558", + "elevation_ft": "-69", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-MT", + "scheduled_service": "no" + }, + { + "id": "2355", + "ident": "HE12", + "type": "small_airport", + "name": "Inshas Air Base", + "latitude_deg": "30.332373", + "longitude_deg": "31.448109", + "elevation_ft": "115", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-SHR", + "municipality": "Inshas", + "scheduled_service": "no" + }, + { + "id": "42473", + "ident": "HE15", + "type": "small_airport", + "name": "Hulwan Airfield", + "latitude_deg": "29.8225", + "longitude_deg": "31.3309", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-GZ", + "municipality": "Helwan", + "scheduled_service": "no", + "gps_code": "HE15" + }, + { + "id": "42471", + "ident": "HE16", + "type": "medium_airport", + "name": "Birma Air Base", + "latitude_deg": "30.836599", + "longitude_deg": "30.936001", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-GH", + "municipality": "Tanta", + "scheduled_service": "no", + "gps_code": "HE16" + }, + { + "id": "2358", + "ident": "HE17", + "type": "small_airport", + "name": "Abu Rahal Well Airport", + "latitude_deg": "24.998663", + "longitude_deg": "33.494289", + "elevation_ft": "761", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-BA", + "scheduled_service": "no" + }, + { + "id": "2359", + "ident": "HE18", + "type": "small_airport", + "name": "Habata Airport", + "latitude_deg": "31.108875", + "longitude_deg": "25.456717", + "elevation_ft": "673", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-MT", + "municipality": "Sidi El Barrani", + "scheduled_service": "no" + }, + { + "id": "2360", + "ident": "HE19", + "type": "small_airport", + "name": "As Sallum Airport", + "latitude_deg": "31.464013", + "longitude_deg": "25.278039", + "elevation_ft": "49", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-MT", + "municipality": "As Sallum", + "scheduled_service": "no", + "keywords": "As Sallum, Salum, Salloum, Sallum" + }, + { + "id": "2361", + "ident": "HE20", + "type": "small_airport", + "name": "El Zeit Mountain Airport", + "latitude_deg": "27.828317", + "longitude_deg": "33.534415", + "elevation_ft": "39", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-BA", + "municipality": "Shokeir Cape", + "scheduled_service": "no", + "keywords": "Ras Jimsah New Airport" + }, + { + "id": "2362", + "ident": "HE21", + "type": "small_airport", + "name": "Shokeir Cape New Airport", + "latitude_deg": "28.188943", + "longitude_deg": "33.210576", + "elevation_ft": "46", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-BA", + "municipality": "Shokeir Cape", + "scheduled_service": "no" + }, + { + "id": "2363", + "ident": "HE22", + "type": "small_airport", + "name": "Baluza Airport", + "latitude_deg": "30.99799", + "longitude_deg": "32.555988", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "EG", + "iso_region": "EG-SIN", + "municipality": "Ramana Department", + "scheduled_service": "no" + }, + { + "id": "2364", + "ident": "HE23", + "type": "small_airport", + "name": "Darau Airport", + "latitude_deg": "24.414914", + "longitude_deg": "32.951667", + "elevation_ft": "315", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-ASN", + "municipality": "Darau", + "scheduled_service": "no" + }, + { + "id": "2366", + "ident": "HE25", + "type": "small_airport", + "name": "El Minya Airport", + "latitude_deg": "28.090509", + "longitude_deg": "30.738738", + "elevation_ft": "135", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-MN", + "municipality": "El Minya", + "scheduled_service": "no", + "gps_code": "HEMN", + "iata_code": "EMY", + "keywords": "HE25" + }, + { + "id": "42475", + "ident": "HE26", + "type": "small_airport", + "name": "Abu Shahat Valley Air Base", + "latitude_deg": "26.55239", + "longitude_deg": "33.128543", + "elevation_ft": "1175", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-BA", + "municipality": "Safaja", + "scheduled_service": "no", + "gps_code": "HE26" + }, + { + "id": "2367", + "ident": "HE27", + "type": "small_airport", + "name": "Osman Air Base", + "latitude_deg": "29.552626", + "longitude_deg": "25.584583", + "elevation_ft": "427", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-MT", + "municipality": "Siwa Oasis", + "scheduled_service": "no" + }, + { + "id": "2368", + "ident": "HE28", + "type": "medium_airport", + "name": "Gebel El Basur Air Base", + "latitude_deg": "30.540501", + "longitude_deg": "30.5602", + "elevation_ft": "85", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-BH", + "municipality": "Markaz Ad Delingat", + "scheduled_service": "no" + }, + { + "id": "2370", + "ident": "HE30", + "type": "small_airport", + "name": "Kawm Ushim Airport", + "latitude_deg": "29.543146", + "longitude_deg": "30.897374", + "elevation_ft": "-13", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-FYM", + "municipality": "Tamiya", + "scheduled_service": "no" + }, + { + "id": "2371", + "ident": "HE31", + "type": "small_airport", + "name": "Malan Frein Airport", + "latitude_deg": "29.80532", + "longitude_deg": "28.55263", + "elevation_ft": "213", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-MT", + "scheduled_service": "no", + "keywords": "Abu El Gharadiq Airport" + }, + { + "id": "2372", + "ident": "HE32", + "type": "medium_airport", + "name": "Al Mansurah Airbase", + "latitude_deg": "30.9676", + "longitude_deg": "31.4342", + "elevation_ft": "13", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-DK", + "municipality": "Mansoura", + "scheduled_service": "no" + }, + { + "id": "2373", + "ident": "HE33", + "type": "small_airport", + "name": "Deir El Gill Airport", + "latitude_deg": "30.725679", + "longitude_deg": "27.025702", + "elevation_ft": "673", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-MT", + "municipality": "Marsa Matruh", + "scheduled_service": "no", + "keywords": "South Matruh Airport" + }, + { + "id": "2374", + "ident": "HE34", + "type": "small_airport", + "name": "Kibrit Airport", + "latitude_deg": "30.24690055847168", + "longitude_deg": "32.4922981262207", + "elevation_ft": "22", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-SUZ", + "municipality": "Kibrit", + "scheduled_service": "no" + }, + { + "id": "2375", + "ident": "HE35", + "type": "medium_airport", + "name": "Abu Suwayr Air Base", + "latitude_deg": "30.57270050048828", + "longitude_deg": "32.095298767089844", + "elevation_ft": "49", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-IS", + "municipality": "Abu Suwayr", + "scheduled_service": "no" + }, + { + "id": "2376", + "ident": "HE36", + "type": "medium_airport", + "name": "Jafjafa Well Airfield", + "latitude_deg": "30.420182", + "longitude_deg": "33.163594", + "elevation_ft": "1024", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-SIN", + "municipality": "El Hassana", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bir_Gifgafa_Airfield" + }, + { + "id": "2377", + "ident": "HE37", + "type": "medium_airport", + "name": "Bilbeis Air Base", + "latitude_deg": "30.394899", + "longitude_deg": "31.6014", + "elevation_ft": "90", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-SHR", + "municipality": "Bilbeis", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Egyptian_Air_Academy", + "keywords": "Bilbays, Belbeis" + }, + { + "id": "2378", + "ident": "HE38", + "type": "small_airport", + "name": "Abu Rish Valley Airport", + "latitude_deg": "28.968086", + "longitude_deg": "31.701586", + "elevation_ft": "1050", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-BNS", + "scheduled_service": "no" + }, + { + "id": "2379", + "ident": "HE39", + "type": "small_airport", + "name": "As Salihiyah Airport", + "latitude_deg": "30.7952", + "longitude_deg": "32.044102", + "elevation_ft": "16", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-SHR", + "municipality": "El Husseiniya", + "scheduled_service": "no" + }, + { + "id": "2380", + "ident": "HE40", + "type": "small_airport", + "name": "Sidi EL Barrani Airport", + "latitude_deg": "31.47201", + "longitude_deg": "25.879272", + "elevation_ft": "282", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-MT", + "municipality": "Sidi El Barrani", + "scheduled_service": "no", + "gps_code": "HE40", + "iata_code": "SQK", + "keywords": "HE40" + }, + { + "id": "2381", + "ident": "HE41", + "type": "small_airport", + "name": "Misheifa Airport", + "latitude_deg": "31.032399", + "longitude_deg": "25.854349", + "elevation_ft": "702", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-MT", + "municipality": "Sidi El Barrani", + "scheduled_service": "no" + }, + { + "id": "2382", + "ident": "HE42", + "type": "medium_airport", + "name": "Quesna Airport", + "latitude_deg": "30.579", + "longitude_deg": "31.1292", + "elevation_ft": "33", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-MNF", + "municipality": "Quesna", + "scheduled_service": "no", + "keywords": "Quweisna, قويسنا" + }, + { + "id": "42474", + "ident": "HE45", + "type": "small_airport", + "name": "Sedr Cape Airport", + "latitude_deg": "29.602995", + "longitude_deg": "32.69012", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "EG", + "iso_region": "EG-JS", + "municipality": "Sedr Cape", + "scheduled_service": "no", + "gps_code": "HE45" + }, + { + "id": "2384", + "ident": "HE46", + "type": "small_airport", + "name": "El Sharqi Airport", + "latitude_deg": "30.0276", + "longitude_deg": "32.974734", + "elevation_ft": "1544", + "continent": "AS", + "iso_country": "EG", + "iso_region": "EG-SIN", + "municipality": "Nekhel", + "scheduled_service": "no" + }, + { + "id": "3175", + "ident": "HEAL", + "type": "medium_airport", + "name": "El Alamein International Airport", + "latitude_deg": "30.930326", + "longitude_deg": "28.463076", + "elevation_ft": "154", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-MT", + "municipality": "El Alamein", + "scheduled_service": "yes", + "gps_code": "HEAL", + "iata_code": "DBB", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Alamein_International_Airport", + "keywords": "Al Alamain, Al Alamayn, العلمين‎" + }, + { + "id": "3176", + "ident": "HEAR", + "type": "medium_airport", + "name": "El Arish International Airport", + "latitude_deg": "31.078565", + "longitude_deg": "33.836791", + "elevation_ft": "118", + "continent": "AS", + "iso_country": "EG", + "iso_region": "EG-SIN", + "municipality": "El Arish", + "scheduled_service": "yes", + "gps_code": "HEAR", + "iata_code": "AAC", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Arish_International_Airport" + }, + { + "id": "3177", + "ident": "HEAT", + "type": "medium_airport", + "name": "Asyut International Airport", + "latitude_deg": "27.050818", + "longitude_deg": "31.016309", + "elevation_ft": "748", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-AST", + "municipality": "Asyut", + "scheduled_service": "yes", + "gps_code": "HEAT", + "iata_code": "ATZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Assiut_Airport", + "keywords": "Asyut" + }, + { + "id": "3178", + "ident": "HEAX", + "type": "closed", + "name": "El Nuzha Airport", + "latitude_deg": "31.181681", + "longitude_deg": "29.94629", + "elevation_ft": "-6", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-ALX", + "municipality": "Alexandria", + "scheduled_service": "no", + "gps_code": "HEAX", + "iata_code": "ALY", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Nouzha_Airport", + "keywords": "Alexandria International Airport" + }, + { + "id": "3179", + "ident": "HEAZ", + "type": "medium_airport", + "name": "Almaza Air Force Base", + "latitude_deg": "30.091800689697266", + "longitude_deg": "31.360000610351562", + "elevation_ft": "300", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-C", + "municipality": "Cairo", + "scheduled_service": "no", + "gps_code": "HEAZ" + }, + { + "id": "3180", + "ident": "HEBA", + "type": "medium_airport", + "name": "Borj El Arab International Airport", + "latitude_deg": "30.93249", + "longitude_deg": "29.696437", + "elevation_ft": "171", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-ALX", + "municipality": "Alexandria", + "scheduled_service": "yes", + "gps_code": "HEBA", + "iata_code": "HBE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Borg_El_Arab_Airport" + }, + { + "id": "3181", + "ident": "HEBL", + "type": "medium_airport", + "name": "Abu Simbel Airport", + "latitude_deg": "22.367657", + "longitude_deg": "31.609962", + "elevation_ft": "614", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-ASN", + "municipality": "Abu Simbel", + "scheduled_service": "yes", + "gps_code": "HEBL", + "iata_code": "ABS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abu_Simbel_Airport" + }, + { + "id": "3182", + "ident": "HEBS", + "type": "medium_airport", + "name": "Bani Sweif Air Base", + "latitude_deg": "29.20224", + "longitude_deg": "31.013471", + "elevation_ft": "102", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-BNS", + "municipality": "Bani Sweif", + "scheduled_service": "no", + "gps_code": "HEBS" + }, + { + "id": "3183", + "ident": "HECA", + "type": "large_airport", + "name": "Cairo International Airport", + "latitude_deg": "30.12190055847168", + "longitude_deg": "31.40559959411621", + "elevation_ft": "382", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-C", + "municipality": "Cairo", + "scheduled_service": "yes", + "gps_code": "HECA", + "iata_code": "CAI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cairo_International_Airport" + }, + { + "id": "2356", + "ident": "HECP", + "type": "medium_airport", + "name": "Capital International Airport", + "latitude_deg": "30.074293", + "longitude_deg": "31.84296", + "elevation_ft": "761", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-C", + "municipality": "New Cairo", + "scheduled_service": "no", + "gps_code": "HECP", + "iata_code": "CCE", + "home_link": "http://www.avit.com.eg/index.php/projects/item/138-katameya-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Capital_International_Airport_(Egypt)", + "keywords": "HECP" + }, + { + "id": "3184", + "ident": "HECW", + "type": "medium_airport", + "name": "Cairo West Air Base", + "latitude_deg": "30.1164", + "longitude_deg": "30.9154", + "elevation_ft": "550", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-GZ", + "municipality": "Cairo", + "scheduled_service": "no", + "gps_code": "HECW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cairo_West_Air_Base", + "keywords": "CWE" + }, + { + "id": "3185", + "ident": "HEDK", + "type": "small_airport", + "name": "Ad Dakhla Airport", + "latitude_deg": "25.420898", + "longitude_deg": "29.001031", + "elevation_ft": "551", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-WAD", + "municipality": "Dakhla Oases", + "scheduled_service": "no", + "gps_code": "HEDK", + "iata_code": "DAK" + }, + { + "id": "29895", + "ident": "HEEM", + "type": "closed", + "name": "Giza Embaba Airport", + "latitude_deg": "30.074699", + "longitude_deg": "31.191401", + "elevation_ft": "59", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-C", + "municipality": "Cairo", + "scheduled_service": "no", + "gps_code": "HEEM" + }, + { + "id": "3186", + "ident": "HEGN", + "type": "large_airport", + "name": "Hurghada International Airport", + "latitude_deg": "27.180325", + "longitude_deg": "33.807292", + "elevation_ft": "32", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-BA", + "municipality": "Hurghada", + "scheduled_service": "yes", + "gps_code": "HEGN", + "iata_code": "HRG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hurghada_International_Airport", + "keywords": "Al Ghardaqah, الغردقة" + }, + { + "id": "3187", + "ident": "HEGO", + "type": "small_airport", + "name": "El Jona Airport", + "latitude_deg": "27.368529", + "longitude_deg": "33.668761", + "elevation_ft": "39", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-BA", + "municipality": "El Jona", + "scheduled_service": "no", + "gps_code": "HEGO" + }, + { + "id": "3188", + "ident": "HEGR", + "type": "medium_airport", + "name": "El Jora Airport", + "latitude_deg": "31.078138", + "longitude_deg": "34.153131", + "elevation_ft": "331", + "continent": "AS", + "iso_country": "EG", + "iso_region": "EG-SIN", + "municipality": "El Jora", + "scheduled_service": "no", + "gps_code": "HEGR", + "iata_code": "EGH", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Gora_Airport" + }, + { + "id": "3189", + "ident": "HEGS", + "type": "medium_airport", + "name": "Jiyanklis Air Base", + "latitude_deg": "30.819799", + "longitude_deg": "30.1912", + "elevation_ft": "49", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-BH", + "municipality": "Abu El Matamir", + "scheduled_service": "no", + "gps_code": "HEGS" + }, + { + "id": "2383", + "ident": "HEIS", + "type": "medium_airport", + "name": "Al Ismailiya Air Base", + "latitude_deg": "30.59591", + "longitude_deg": "32.245678", + "elevation_ft": "43", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-IS", + "municipality": "Al Ismailiya", + "scheduled_service": "no", + "gps_code": "HEIS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ismailia_Air_Base", + "keywords": "RAF Ismailia, القوات الجوية المصرية‎" + }, + { + "id": "3190", + "ident": "HEKG", + "type": "small_airport", + "name": "El Kharja Airport", + "latitude_deg": "25.471483", + "longitude_deg": "30.588491", + "elevation_ft": "194", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-WAD", + "municipality": "Kharja Oases", + "scheduled_service": "no", + "gps_code": "HEKG", + "iata_code": "UVL" + }, + { + "id": "3191", + "ident": "HELX", + "type": "medium_airport", + "name": "Luxor International Airport", + "latitude_deg": "25.674629", + "longitude_deg": "32.700012", + "elevation_ft": "276", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-LX", + "municipality": "Luxor", + "scheduled_service": "yes", + "gps_code": "HELX", + "iata_code": "LXR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Luxor_International_Airport" + }, + { + "id": "3192", + "ident": "HEMA", + "type": "medium_airport", + "name": "Marsa Alam International Airport", + "latitude_deg": "25.555548", + "longitude_deg": "34.59245", + "elevation_ft": "213", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-BA", + "municipality": "Marsa Alam", + "scheduled_service": "yes", + "gps_code": "HEMA", + "iata_code": "RMF", + "home_link": "http://www.marsa-alam-airport.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marsa_Alam_International_Airport" + }, + { + "id": "3193", + "ident": "HEMM", + "type": "medium_airport", + "name": "Marsa Matruh International Airport", + "latitude_deg": "31.338225", + "longitude_deg": "27.217577", + "elevation_ft": "75", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-MT", + "municipality": "Marsa Matruh", + "scheduled_service": "yes", + "gps_code": "HEMM", + "iata_code": "MUH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mersa_Matruh_Airport" + }, + { + "id": "307695", + "ident": "HEO", + "type": "small_airport", + "name": "Haelogo Airport", + "latitude_deg": "-9.13658", + "longitude_deg": "147.598434", + "elevation_ft": "3217", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Haelogo", + "scheduled_service": "no", + "gps_code": "AYHG", + "iata_code": "HEO", + "local_code": "HLG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Haelogo_Airport", + "keywords": "Haelago" + }, + { + "id": "3194", + "ident": "HEOC", + "type": "small_airport", + "name": "October Airport", + "latitude_deg": "29.812099", + "longitude_deg": "30.8234", + "elevation_ft": "807", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-C", + "municipality": "6th of October City", + "scheduled_service": "no", + "gps_code": "HEOC" + }, + { + "id": "3195", + "ident": "HEOW", + "type": "small_airport", + "name": "El Owainat East International Airport", + "latitude_deg": "22.584256", + "longitude_deg": "28.721609", + "elevation_ft": "843", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-WAD", + "municipality": "Sharq El Owainat", + "scheduled_service": "no", + "gps_code": "HEOW", + "iata_code": "GSQ" + }, + { + "id": "3196", + "ident": "HEPS", + "type": "medium_airport", + "name": "Port Said International Airport", + "latitude_deg": "31.280348", + "longitude_deg": "32.246032", + "elevation_ft": "10", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-PTS", + "municipality": "Port Said", + "scheduled_service": "no", + "gps_code": "HEPS", + "iata_code": "PSD", + "home_link": "http://en.wikipedia.org/wiki/Port_Said_Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Said_Airport", + "keywords": "El Gamil" + }, + { + "id": "3197", + "ident": "HESC", + "type": "medium_airport", + "name": "Saint Catherine International Airport", + "latitude_deg": "28.682729", + "longitude_deg": "34.060503", + "elevation_ft": "4402", + "continent": "AS", + "iso_country": "EG", + "iso_region": "EG-JS", + "municipality": "Saint Catherine", + "scheduled_service": "no", + "gps_code": "HESC", + "iata_code": "SKV", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Catherine_International_Airport" + }, + { + "id": "300893", + "ident": "HESG", + "type": "medium_airport", + "name": "Suhaj Mubarak International Airport", + "latitude_deg": "26.339115", + "longitude_deg": "31.737624", + "elevation_ft": "322", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-SHG", + "municipality": "Suhaj", + "scheduled_service": "yes", + "gps_code": "HESG", + "iata_code": "HMB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sohag_International_Airport", + "keywords": "Mubarak International Airport" + }, + { + "id": "3198", + "ident": "HESH", + "type": "large_airport", + "name": "Sharm El Sheikh International Airport", + "latitude_deg": "27.978902", + "longitude_deg": "34.385598", + "elevation_ft": "191", + "continent": "AS", + "iso_country": "EG", + "iso_region": "EG-JS", + "municipality": "Sharm El Sheikh", + "scheduled_service": "yes", + "gps_code": "HESH", + "iata_code": "SSH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sharm_el-Sheikh_International_Airport" + }, + { + "id": "3199", + "ident": "HESN", + "type": "medium_airport", + "name": "Aswan International Airport", + "latitude_deg": "23.9643993378", + "longitude_deg": "32.8199996948", + "elevation_ft": "662", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-ASN", + "municipality": "Aswan", + "scheduled_service": "yes", + "gps_code": "HESN", + "iata_code": "ASW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aswan_International_Airport" + }, + { + "id": "32285", + "ident": "HESW", + "type": "small_airport", + "name": "Siwa Oasis North Airport", + "latitude_deg": "29.3389", + "longitude_deg": "25.51285", + "elevation_ft": "289", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-MT", + "municipality": "Siwa Oasis", + "scheduled_service": "yes", + "gps_code": "HESW", + "iata_code": "SEW", + "keywords": "HE24" + }, + { + "id": "335334", + "ident": "HESX", + "type": "medium_airport", + "name": "Sphinx International Airport", + "latitude_deg": "30.108148", + "longitude_deg": "30.89569", + "elevation_ft": "553", + "continent": "AF", + "iso_country": "EG", + "iso_region": "EG-GZ", + "municipality": "Giza", + "scheduled_service": "no", + "gps_code": "HESX", + "iata_code": "SPX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sphinx_International_Airport" + }, + { + "id": "3200", + "ident": "HETB", + "type": "medium_airport", + "name": "Taba International Airport", + "latitude_deg": "29.594496", + "longitude_deg": "34.775752", + "elevation_ft": "2425", + "continent": "AS", + "iso_country": "EG", + "iso_region": "EG-JS", + "municipality": "Taba", + "scheduled_service": "yes", + "gps_code": "HETB", + "iata_code": "TCP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taba_International_Airport" + }, + { + "id": "3201", + "ident": "HETR", + "type": "small_airport", + "name": "El Tor Airport", + "latitude_deg": "28.215116", + "longitude_deg": "33.635395", + "elevation_ft": "52", + "continent": "AS", + "iso_country": "EG", + "iso_region": "EG-JS", + "municipality": "El Tor", + "scheduled_service": "no", + "gps_code": "HETR", + "iata_code": "ELT" + }, + { + "id": "17620", + "ident": "HEY", + "type": "heliport", + "name": "Hanchey Army (Fort Rucker) Heliport", + "latitude_deg": "31.34600067", + "longitude_deg": "-85.65429688", + "elevation_ft": "317", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker Ozark", + "scheduled_service": "no", + "gps_code": "KHEY", + "iata_code": "HEY", + "local_code": "HEY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hanchey_Army_Heliport" + }, + { + "id": "17622", + "ident": "HGT", + "type": "heliport", + "name": "Tusi (Hunter Liggett) Army Heliport", + "latitude_deg": "35.9935", + "longitude_deg": "-121.237", + "elevation_ft": "1017", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Jolon", + "scheduled_service": "no", + "gps_code": "KHGT", + "iata_code": "HGT", + "local_code": "HGT" + }, + { + "id": "324060", + "ident": "HHAG", + "type": "small_airport", + "name": "Agordat Airport", + "latitude_deg": "15.53783", + "longitude_deg": "37.855481", + "continent": "AF", + "iso_country": "ER", + "iso_region": "ER-GB", + "municipality": "Agordat", + "scheduled_service": "no", + "gps_code": "HHAG" + }, + { + "id": "3202", + "ident": "HHAS", + "type": "medium_airport", + "name": "Asmara International Airport", + "latitude_deg": "15.291899681091309", + "longitude_deg": "38.910701751708984", + "elevation_ft": "7661", + "continent": "AF", + "iso_country": "ER", + "iso_region": "ER-SK", + "municipality": "Asmara", + "scheduled_service": "yes", + "gps_code": "HHAS", + "iata_code": "ASM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Asmara_International_Airport" + }, + { + "id": "341734", + "ident": "HHBA", + "type": "small_airport", + "name": "Barentu Airport", + "latitude_deg": "15.122394", + "longitude_deg": "37.614335", + "continent": "AF", + "iso_country": "ER", + "iso_region": "ER-GB", + "municipality": "Barentu", + "scheduled_service": "no", + "gps_code": "HHBA" + }, + { + "id": "355231", + "ident": "HHBG", + "type": "heliport", + "name": "Christoph Hansa ADAC Helipad", + "latitude_deg": "53.507971", + "longitude_deg": "10.173382", + "elevation_ft": "136", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-HH", + "municipality": "Hamburg", + "scheduled_service": "no", + "wikipedia_link": "https://de.wikipedia.org/wiki/Christoph_Hansa", + "keywords": "HHBG, BG Klinikum Boberg" + }, + { + "id": "3203", + "ident": "HHMS", + "type": "medium_airport", + "name": "Massawa International Airport", + "latitude_deg": "15.670000076293945", + "longitude_deg": "39.37009811401367", + "elevation_ft": "194", + "continent": "AF", + "iso_country": "ER", + "iso_region": "ER-SK", + "municipality": "Massawa", + "scheduled_service": "yes", + "gps_code": "HHMS", + "iata_code": "MSW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Massawa_International_Airport" + }, + { + "id": "3204", + "ident": "HHSB", + "type": "medium_airport", + "name": "Assab International Airport", + "latitude_deg": "13.071800231933594", + "longitude_deg": "42.64500045776367", + "elevation_ft": "46", + "continent": "AF", + "iso_country": "ER", + "iso_region": "ER-DK", + "municipality": "Asab", + "scheduled_service": "yes", + "gps_code": "HHSB", + "iata_code": "ASA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Asseb_International_Airport" + }, + { + "id": "32435", + "ident": "HHTS", + "type": "small_airport", + "name": "Tessenei Airport", + "latitude_deg": "15.104322", + "longitude_deg": "36.681711", + "elevation_ft": "2018", + "continent": "AF", + "iso_country": "ER", + "iso_region": "ER-GB", + "municipality": "Tessenei", + "scheduled_service": "no", + "gps_code": "HHTS", + "iata_code": "TES" + }, + { + "id": "17623", + "ident": "HI01", + "type": "small_airport", + "name": "Princeville Airport", + "latitude_deg": "22.209313", + "longitude_deg": "-159.44515", + "elevation_ft": "344", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Hanalei", + "scheduled_service": "no", + "gps_code": "HI01", + "iata_code": "HPV", + "local_code": "HI01", + "wikipedia_link": "https://en.wikipedia.org/wiki/Princeville_Airport" + }, + { + "id": "17624", + "ident": "HI02", + "type": "closed", + "name": "Peleau Airport", + "latitude_deg": "19.902201", + "longitude_deg": "-155.16601", + "elevation_ft": "1088", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Hakalau", + "scheduled_service": "no", + "keywords": "HI02" + }, + { + "id": "17625", + "ident": "HI03", + "type": "small_airport", + "name": "Hanamaulu Airstrip", + "latitude_deg": "22.041896", + "longitude_deg": "-159.388746", + "elevation_ft": "404", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Hanamaulu", + "scheduled_service": "no", + "gps_code": "HI03", + "local_code": "HI03" + }, + { + "id": "17626", + "ident": "HI04", + "type": "heliport", + "name": "Hilo Medical Center Heliport", + "latitude_deg": "19.718464", + "longitude_deg": "-155.114422", + "elevation_ft": "487", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Hilo", + "scheduled_service": "no", + "gps_code": "HI04", + "local_code": "HI04" + }, + { + "id": "17627", + "ident": "HI05", + "type": "small_airport", + "name": "Honokaa Airstrip", + "latitude_deg": "20.083599", + "longitude_deg": "-155.501999", + "elevation_ft": "1440", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Honokaa", + "scheduled_service": "no", + "gps_code": "HI05", + "local_code": "HI05" + }, + { + "id": "325441", + "ident": "HI06", + "type": "closed", + "name": "Koele Heliport", + "latitude_deg": "20.840227", + "longitude_deg": "-156.920986", + "elevation_ft": "1756", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Lanai", + "scheduled_service": "no", + "keywords": "HI06" + }, + { + "id": "17628", + "ident": "HI07", + "type": "heliport", + "name": "Waikoloa Heliport", + "latitude_deg": "19.920546", + "longitude_deg": "-155.860628", + "elevation_ft": "119", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Waikoloa Village", + "scheduled_service": "no", + "gps_code": "HI07", + "iata_code": "WKL", + "local_code": "HI07" + }, + { + "id": "17629", + "ident": "HI09", + "type": "heliport", + "name": "Honolulu Municipal Building Heliport", + "latitude_deg": "21.304213", + "longitude_deg": "-157.854802", + "elevation_ft": "231", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Honolulu", + "scheduled_service": "no", + "gps_code": "HI09", + "local_code": "HI09" + }, + { + "id": "17630", + "ident": "HI12", + "type": "closed", + "name": "Kahuku Medical Center Heliport", + "latitude_deg": "21.676988", + "longitude_deg": "-157.955129", + "elevation_ft": "40", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kahuku", + "scheduled_service": "no", + "keywords": "HI12" + }, + { + "id": "17631", + "ident": "HI13", + "type": "closed", + "name": "Puu Waa Waa Ranch Airport", + "latitude_deg": "19.792041", + "longitude_deg": "-155.848041", + "elevation_ft": "2250", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kailua-Kona", + "scheduled_service": "no", + "gps_code": "HI13", + "local_code": "HI13" + }, + { + "id": "17632", + "ident": "HI18", + "type": "heliport", + "name": "Lucy Henriques Medical Center Heliport", + "latitude_deg": "20.02174", + "longitude_deg": "-155.663466", + "elevation_ft": "2707", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Waimea (Kamuela)", + "scheduled_service": "no", + "gps_code": "HI18", + "local_code": "HI18" + }, + { + "id": "4780", + "ident": "HI22", + "type": "heliport", + "name": "Tinian Heliport", + "latitude_deg": "14.963692", + "longitude_deg": "145.627127", + "elevation_ft": "75", + "continent": "OC", + "iso_country": "MP", + "iso_region": "MP-U-A", + "municipality": "San Jose, Tinian", + "scheduled_service": "no", + "gps_code": "HI22", + "local_code": "HI22" + }, + { + "id": "17633", + "ident": "HI23", + "type": "small_airport", + "name": "Mountain View Airstrip", + "latitude_deg": "19.546359", + "longitude_deg": "-155.108116", + "elevation_ft": "1500", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Mountain View", + "scheduled_service": "no", + "gps_code": "HI23", + "local_code": "HI23" + }, + { + "id": "17634", + "ident": "HI24", + "type": "heliport", + "name": "Heco-Waiau Heliport", + "latitude_deg": "21.3908", + "longitude_deg": "-157.964996", + "elevation_ft": "6", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Honolulu", + "scheduled_service": "no", + "gps_code": "HI24", + "local_code": "HI24" + }, + { + "id": "17635", + "ident": "HI25", + "type": "small_airport", + "name": "Kaalaiki Airstrip", + "latitude_deg": "19.122507", + "longitude_deg": "-155.578398", + "elevation_ft": "1964", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Naalehu", + "scheduled_service": "no", + "gps_code": "HI25", + "local_code": "HI25" + }, + { + "id": "17636", + "ident": "HI27", + "type": "small_airport", + "name": "Upper Paauilo Airstrip", + "latitude_deg": "20.028196", + "longitude_deg": "-155.388162", + "elevation_ft": "1520", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Paauilo", + "scheduled_service": "no", + "gps_code": "HI27", + "local_code": "HI27" + }, + { + "id": "17637", + "ident": "HI28", + "type": "small_airport", + "name": "Pahala Airstrip", + "latitude_deg": "19.215392", + "longitude_deg": "-155.468559", + "elevation_ft": "1195", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Pahala", + "scheduled_service": "no", + "gps_code": "HI28", + "local_code": "HI28" + }, + { + "id": "17638", + "ident": "HI29", + "type": "closed", + "name": "Upper Paauau Airport", + "latitude_deg": "19.227478", + "longitude_deg": "-155.506234", + "elevation_ft": "2600", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Pahala", + "scheduled_service": "no", + "keywords": "HI29" + }, + { + "id": "17639", + "ident": "HI31", + "type": "closed", + "name": "Mauna Kea-Honolii Airport", + "latitude_deg": "19.764024", + "longitude_deg": "-155.139525", + "elevation_ft": "1400", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Papaikou", + "scheduled_service": "no", + "gps_code": "HI31", + "local_code": "HI31" + }, + { + "id": "17640", + "ident": "HI32", + "type": "small_airport", + "name": "Pepeekeo Airstrip", + "latitude_deg": "19.846582", + "longitude_deg": "-155.106872", + "elevation_ft": "675", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Pepeekeo", + "scheduled_service": "no", + "gps_code": "HI32", + "local_code": "HI32" + }, + { + "id": "17641", + "ident": "HI33", + "type": "small_airport", + "name": "Haiku Airstrip", + "latitude_deg": "21.966071", + "longitude_deg": "-159.426963", + "elevation_ft": "385", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Lihue", + "scheduled_service": "no", + "gps_code": "HI33", + "local_code": "HI33", + "keywords": "Puhi Airstrip" + }, + { + "id": "17642", + "ident": "HI38", + "type": "heliport", + "name": "The Queen's Medical Center Heliport", + "latitude_deg": "21.308197", + "longitude_deg": "-157.853645", + "elevation_ft": "102", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Honolulu", + "scheduled_service": "no", + "gps_code": "HI38", + "local_code": "HI38" + }, + { + "id": "17643", + "ident": "HI40", + "type": "heliport", + "name": "Kuakini Medical Center Heliport", + "latitude_deg": "21.32111", + "longitude_deg": "-157.85669", + "elevation_ft": "175", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Honolulu", + "scheduled_service": "no", + "gps_code": "HI40", + "local_code": "HI40" + }, + { + "id": "17644", + "ident": "HI46", + "type": "small_airport", + "name": "HI 23 (Puhi) Airstrip", + "latitude_deg": "21.944914", + "longitude_deg": "-159.439831", + "elevation_ft": "480", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Puhi", + "scheduled_service": "no", + "gps_code": "HI46", + "local_code": "HI46" + }, + { + "id": "3145", + "ident": "HI47", + "type": "heliport", + "name": "Big Eye Heliport", + "latitude_deg": "13.4981", + "longitude_deg": "144.804993", + "elevation_ft": "80", + "continent": "OC", + "iso_country": "GU", + "iso_region": "GU-U-A", + "municipality": "Hagatña", + "scheduled_service": "no", + "gps_code": "HI47", + "local_code": "HI47" + }, + { + "id": "17645", + "ident": "HI49", + "type": "small_airport", + "name": "Panda Airport", + "latitude_deg": "21.148991", + "longitude_deg": "-157.258432", + "elevation_ft": "250", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kaunakakai", + "scheduled_service": "no", + "gps_code": "HI49", + "local_code": "HI49" + }, + { + "id": "17646", + "ident": "HI50", + "type": "heliport", + "name": "Hyatt Regency Maui Hotel Heliport", + "latitude_deg": "20.912204", + "longitude_deg": "-156.691287", + "elevation_ft": "102", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Lahaina", + "scheduled_service": "no", + "gps_code": "HI50", + "local_code": "HI50" + }, + { + "id": "17647", + "ident": "HI52", + "type": "heliport", + "name": "Rainshed Heliport", + "latitude_deg": "19.433268", + "longitude_deg": "-155.25991", + "elevation_ft": "4000", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Volcano Village", + "scheduled_service": "no", + "gps_code": "HI52", + "local_code": "HI52" + }, + { + "id": "17648", + "ident": "HI53", + "type": "heliport", + "name": "Kalalau Beach Heliport", + "latitude_deg": "22.17451", + "longitude_deg": "-159.655375", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Haena", + "scheduled_service": "no", + "gps_code": "HI53", + "local_code": "HI53" + }, + { + "id": "17649", + "ident": "HI55", + "type": "heliport", + "name": "Moanalua Medical Center Heliport", + "latitude_deg": "21.3641", + "longitude_deg": "-157.899002", + "elevation_ft": "18", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Honolulu", + "scheduled_service": "no", + "gps_code": "HI55", + "local_code": "HI55" + }, + { + "id": "17650", + "ident": "HI56", + "type": "closed", + "name": "Kualoa Ranch Heliport", + "latitude_deg": "21.520605", + "longitude_deg": "-157.841981", + "elevation_ft": "125", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kaneohe", + "scheduled_service": "no", + "keywords": "HI56" + }, + { + "id": "17651", + "ident": "HI57", + "type": "heliport", + "name": "Kahuku Fire & Police Station Heliport", + "latitude_deg": "21.674228", + "longitude_deg": "-157.946414", + "elevation_ft": "11", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kahuku", + "scheduled_service": "no", + "gps_code": "HI57", + "local_code": "HI57" + }, + { + "id": "17652", + "ident": "HI58", + "type": "heliport", + "name": "Turtle Bay Resort Heliport", + "latitude_deg": "21.703852", + "longitude_deg": "-157.995384", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kahuku", + "scheduled_service": "no", + "gps_code": "HI58", + "local_code": "HI58" + }, + { + "id": "4781", + "ident": "HI63", + "type": "heliport", + "name": "Coral Ocean Point Pro-Shop Heliport", + "latitude_deg": "15.114978", + "longitude_deg": "145.701649", + "elevation_ft": "125", + "continent": "OC", + "iso_country": "MP", + "iso_region": "MP-U-A", + "municipality": "Koblerville, Saipan", + "scheduled_service": "no", + "gps_code": "HI63", + "local_code": "HI63" + }, + { + "id": "4782", + "ident": "HI64", + "type": "heliport", + "name": "Tinian Dynasty Heliport", + "latitude_deg": "14.962748", + "longitude_deg": "145.629863", + "elevation_ft": "175", + "continent": "OC", + "iso_country": "MP", + "iso_region": "MP-U-A", + "municipality": "San Jose, Tinian", + "scheduled_service": "no", + "gps_code": "HI64", + "local_code": "HI64", + "keywords": "Tinian Star Heliport" + }, + { + "id": "300863", + "ident": "HIA", + "type": "medium_airport", + "name": "Huai'an Lianshui International Airport", + "latitude_deg": "33.790833", + "longitude_deg": "119.125", + "elevation_ft": "28", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Huai'an", + "scheduled_service": "yes", + "gps_code": "ZSSH", + "iata_code": "HIA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Huai'an_Lianshui_International_Airport" + }, + { + "id": "28145", + "ident": "HIL", + "type": "small_airport", + "name": "Shilavo Airport", + "latitude_deg": "6.077545", + "longitude_deg": "44.763736", + "elevation_ft": "1296", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-SO", + "municipality": "Shilavo", + "scheduled_service": "yes", + "gps_code": "HASL", + "iata_code": "HIL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shilavo_Airport", + "keywords": "Shillavo, Shilabo, Scilave, ሺላቮ" + }, + { + "id": "3247", + "ident": "HJJJ", + "type": "large_airport", + "name": "Juba International Airport", + "latitude_deg": "4.87201", + "longitude_deg": "31.601101", + "elevation_ft": "1513", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-17", + "municipality": "Juba", + "scheduled_service": "yes", + "gps_code": "HJJJ", + "iata_code": "JUB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Juba_Airport", + "keywords": "JIA, HSSJ" + }, + { + "id": "354107", + "ident": "HJKJ", + "type": "small_airport", + "name": "Kawjok Airport", + "latitude_deg": "8.279625", + "longitude_deg": "27.955828", + "elevation_ft": "1424", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-21", + "municipality": "Kaujok", + "scheduled_service": "no", + "gps_code": "HJKJ", + "keywords": "Kuacjok" + }, + { + "id": "354108", + "ident": "HJKR", + "type": "small_airport", + "name": "Kuron Airstrip", + "latitude_deg": "5.714049", + "longitude_deg": "34.52724", + "elevation_ft": "1713", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-19", + "municipality": "Kuron", + "scheduled_service": "no", + "gps_code": "HJKR", + "keywords": "Peace Village" + }, + { + "id": "43191", + "ident": "HK-0001", + "type": "closed", + "name": "Sha Tin Airfield", + "latitude_deg": "22.380238", + "longitude_deg": "114.189835", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Sha Tin, New Territories", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sha_Tin_Airfield", + "keywords": "RAF Shatin" + }, + { + "id": "43193", + "ident": "HK-0002", + "type": "closed", + "name": "Heli-Tours Helipad", + "latitude_deg": "22.298906", + "longitude_deg": "114.156815", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Yau Tsim Mong, Kowloon", + "scheduled_service": "no" + }, + { + "id": "43194", + "ident": "HK-0003", + "type": "heliport", + "name": "Peninsula Hotel Heliport", + "latitude_deg": "22.29539", + "longitude_deg": "114.171816", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Yau Tsim Mong, Kowloon", + "scheduled_service": "no" + }, + { + "id": "43195", + "ident": "HK-0004", + "type": "heliport", + "name": "Ping Chau Helipad", + "latitude_deg": "22.547742", + "longitude_deg": "114.428353", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tai Po, New Territories", + "scheduled_service": "no" + }, + { + "id": "43196", + "ident": "HK-0005", + "type": "heliport", + "name": "Cheung Chau Helipad", + "latitude_deg": "22.207958", + "longitude_deg": "114.033526", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no" + }, + { + "id": "337696", + "ident": "HK-0006", + "type": "heliport", + "name": "Shui Long Wo Helipad", + "latitude_deg": "22.40305", + "longitude_deg": "114.27703", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Sai Kung, New Territories", + "scheduled_service": "no" + }, + { + "id": "337718", + "ident": "HK-0007", + "type": "heliport", + "name": "Stanley Helipad", + "latitude_deg": "22.219076", + "longitude_deg": "114.215286", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Southern, Hong Kong Island", + "scheduled_service": "no" + }, + { + "id": "339142", + "ident": "HK-0008", + "type": "closed", + "name": "Fanling Airstrip", + "latitude_deg": "22.49456", + "longitude_deg": "114.11534", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "North, New Territories", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fanling_Airstrip", + "keywords": "粉嶺機場, Fanling Airstrip" + }, + { + "id": "339143", + "ident": "HK-0009", + "type": "heliport", + "name": "Man Kam To Helipad", + "latitude_deg": "22.537957", + "longitude_deg": "114.126577", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "North, New Territories", + "scheduled_service": "no" + }, + { + "id": "339144", + "ident": "HK-0010", + "type": "heliport", + "name": "Kadoorie Base Heliport", + "latitude_deg": "22.431", + "longitude_deg": "114.1106", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Yuen Long, New Territories", + "scheduled_service": "no" + }, + { + "id": "339145", + "ident": "HK-0011", + "type": "heliport", + "name": "Hong Kong Golf Club Helipad", + "latitude_deg": "22.50086", + "longitude_deg": "114.11614", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "North, New Territories", + "scheduled_service": "no" + }, + { + "id": "339146", + "ident": "HK-0012", + "type": "heliport", + "name": "Sha Ling Helipad", + "latitude_deg": "22.53301", + "longitude_deg": "114.11995", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "North, New Territories", + "scheduled_service": "no" + }, + { + "id": "339147", + "ident": "HK-0013", + "type": "heliport", + "name": "Deep Bay Link Helipad", + "latitude_deg": "22.449334", + "longitude_deg": "113.976299", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Yuen Long, New Territories", + "scheduled_service": "no" + }, + { + "id": "339148", + "ident": "HK-0014", + "type": "heliport", + "name": "Black Point Power Station Helipad", + "latitude_deg": "22.41326", + "longitude_deg": "113.908782", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tuen Mun, New Territories", + "scheduled_service": "no" + }, + { + "id": "339149", + "ident": "HK-0015", + "type": "heliport", + "name": "Black Point Helipad", + "latitude_deg": "22.406496", + "longitude_deg": "113.906604", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tuen Mun, New Territories", + "scheduled_service": "no" + }, + { + "id": "339150", + "ident": "HK-0016", + "type": "heliport", + "name": "Castle Peak Power Station Heliport", + "latitude_deg": "22.378437", + "longitude_deg": "113.91729", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tuen Mun, New Territories", + "scheduled_service": "no" + }, + { + "id": "339151", + "ident": "HK-0017", + "type": "heliport", + "name": "Tuen Mun Hospital Helipad", + "latitude_deg": "22.407091", + "longitude_deg": "113.975226", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tuen Mun, New Territories", + "scheduled_service": "no" + }, + { + "id": "339152", + "ident": "HK-0018", + "type": "heliport", + "name": "Twisk Helipad", + "latitude_deg": "22.407686", + "longitude_deg": "114.100651", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Yuen Long, New Territories", + "scheduled_service": "no" + }, + { + "id": "339153", + "ident": "HK-0019", + "type": "heliport", + "name": "Yuen Tsuen Helipad", + "latitude_deg": "22.39678", + "longitude_deg": "114.0486", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tuen Mun, New Territories", + "scheduled_service": "no" + }, + { + "id": "339154", + "ident": "HK-0020", + "type": "heliport", + "name": "Hong Kong Maritime Service Training Institute Helipad", + "latitude_deg": "22.36011", + "longitude_deg": "114.0184", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tuen Mun, New Territories", + "scheduled_service": "no" + }, + { + "id": "339155", + "ident": "HK-0021", + "type": "heliport", + "name": "Yuen Ng Fan Helipad", + "latitude_deg": "22.37986", + "longitude_deg": "114.33768", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Sai Kung, New Territories", + "scheduled_service": "no" + }, + { + "id": "339156", + "ident": "HK-0022", + "type": "heliport", + "name": "Sai Wan Helipad", + "latitude_deg": "22.39835", + "longitude_deg": "114.36995", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Sai Kung, New Territories", + "scheduled_service": "no" + }, + { + "id": "339157", + "ident": "HK-0023", + "type": "heliport", + "name": "Ham Tin Helipad", + "latitude_deg": "22.411623", + "longitude_deg": "114.374564", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Sai Kung, New Territories", + "scheduled_service": "no" + }, + { + "id": "339158", + "ident": "HK-0024", + "type": "heliport", + "name": "Hau Tong Kai Helipad", + "latitude_deg": "22.44106", + "longitude_deg": "114.32785", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tai Po, New Territories", + "scheduled_service": "no" + }, + { + "id": "339160", + "ident": "HK-0025", + "type": "heliport", + "name": "People's Liberation Army Garrison Hospital Helipad", + "latitude_deg": "22.30628", + "longitude_deg": "114.17433", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Yau Tsim Mong, Kowloon", + "scheduled_service": "no" + }, + { + "id": "339161", + "ident": "HK-0026", + "type": "heliport", + "name": "Peng Chau Helipad", + "latitude_deg": "22.290208", + "longitude_deg": "114.03642", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no" + }, + { + "id": "339162", + "ident": "HK-0027", + "type": "heliport", + "name": "Discovery Bay Marina Heliport", + "latitude_deg": "22.29215", + "longitude_deg": "114.02367", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no" + }, + { + "id": "339163", + "ident": "HK-0028", + "type": "heliport", + "name": "Hei Ling Chau/Nei Kwu Heliport", + "latitude_deg": "22.248", + "longitude_deg": "114.04213", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no" + }, + { + "id": "339164", + "ident": "HK-0029", + "type": "heliport", + "name": "Hei Ling Chau/Lai Sun Heliport", + "latitude_deg": "22.25619", + "longitude_deg": "114.03075", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no" + }, + { + "id": "339171", + "ident": "HK-0030", + "type": "heliport", + "name": "Sha Tin Fire Station Helipad", + "latitude_deg": "22.391", + "longitude_deg": "114.19973", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Sha Tin, New Territories", + "scheduled_service": "no" + }, + { + "id": "339173", + "ident": "HK-0031", + "type": "heliport", + "name": "Pamela Youde Nethersole Eastern Hospital Helipad", + "latitude_deg": "22.269411", + "longitude_deg": "114.236398", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Eastern, Hong Kong Island", + "scheduled_service": "no" + }, + { + "id": "339174", + "ident": "HK-0032", + "type": "heliport", + "name": "Lamma Island/Yung Shue Wan Helipad", + "latitude_deg": "22.2249", + "longitude_deg": "114.1087", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no" + }, + { + "id": "339175", + "ident": "HK-0033", + "type": "heliport", + "name": "Lamma Power Station Helipad", + "latitude_deg": "22.219353", + "longitude_deg": "114.103807", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no" + }, + { + "id": "339176", + "ident": "HK-0034", + "type": "heliport", + "name": "Lamma Island/Mo Tat Helipad", + "latitude_deg": "22.202254", + "longitude_deg": "114.146236", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no" + }, + { + "id": "339177", + "ident": "HK-0035", + "type": "heliport", + "name": "Lamma Island/Nga Kau Wan Helipad", + "latitude_deg": "22.2296", + "longitude_deg": "114.10976", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no" + }, + { + "id": "339178", + "ident": "HK-0036", + "type": "heliport", + "name": "Lead Mine Pass Helipad", + "latitude_deg": "22.41201", + "longitude_deg": "114.15855", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tsuen Wan, New Territories", + "scheduled_service": "no" + }, + { + "id": "339179", + "ident": "HK-0037", + "type": "heliport", + "name": "Marine North Division Police Station Helipad", + "latitude_deg": "22.41043", + "longitude_deg": "114.21418", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Sha Tin, New Territories", + "scheduled_service": "no" + }, + { + "id": "339180", + "ident": "HK-0038", + "type": "heliport", + "name": "Nam Long Shan (Brick Hill) Helipad", + "latitude_deg": "22.24053", + "longitude_deg": "114.1731", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Southern, Hong Kong Island", + "scheduled_service": "no" + }, + { + "id": "339181", + "ident": "HK-0039", + "type": "heliport", + "name": "Pui To Shan (Castle Peak) Helipad", + "latitude_deg": "22.38947", + "longitude_deg": "113.95305", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tuen Mun, New Territories", + "scheduled_service": "no" + }, + { + "id": "339182", + "ident": "HK-0040", + "type": "heliport", + "name": "Kau Keng Shan Helipad", + "latitude_deg": "22.38884", + "longitude_deg": "113.99524", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tuen Mun, New Territories", + "scheduled_service": "no" + }, + { + "id": "339183", + "ident": "HK-0041", + "type": "heliport", + "name": "Fei Ngo Shan (Kowloon Peak) Helipad", + "latitude_deg": "22.34098", + "longitude_deg": "114.22318", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Wong Tai Sin, Kowloon", + "scheduled_service": "no" + }, + { + "id": "339184", + "ident": "HK-0042", + "type": "heliport", + "name": "Island House Helipad", + "latitude_deg": "22.44537", + "longitude_deg": "114.17942", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tai Po, New Territories", + "scheduled_service": "no" + }, + { + "id": "339185", + "ident": "HK-0043", + "type": "heliport", + "name": "Lo Fu Kei Shek Helipad", + "latitude_deg": "22.43555", + "longitude_deg": "114.30572", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tai Po, New Territories", + "scheduled_service": "no" + }, + { + "id": "339186", + "ident": "HK-0044", + "type": "heliport", + "name": "Luk Keng Heliport", + "latitude_deg": "22.51143", + "longitude_deg": "114.21176", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "North, New Territories", + "scheduled_service": "no" + }, + { + "id": "339187", + "ident": "HK-0045", + "type": "heliport", + "name": "Lung Kwu Chau Helipad", + "latitude_deg": "22.3773", + "longitude_deg": "113.88287", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tuen Mun, New Territories", + "scheduled_service": "no" + }, + { + "id": "339188", + "ident": "HK-0046", + "type": "heliport", + "name": "Marine East Division Police Station Helipad", + "latitude_deg": "22.37512", + "longitude_deg": "114.27429", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Sai Kung, New Territories", + "scheduled_service": "no" + }, + { + "id": "339189", + "ident": "HK-0047", + "type": "heliport", + "name": "Mui Wo Heliport", + "latitude_deg": "22.2608", + "longitude_deg": "114.00622", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no", + "local_code": "MWO" + }, + { + "id": "339190", + "ident": "HK-0048", + "type": "heliport", + "name": "Pennys Bay Power Station Helipad", + "latitude_deg": "22.32095", + "longitude_deg": "114.04086", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tsuen Wan, New Territories", + "scheduled_service": "no" + }, + { + "id": "339191", + "ident": "HK-0049", + "type": "heliport", + "name": "Pak Fa Shan Helipad", + "latitude_deg": "22.55807", + "longitude_deg": "114.16324", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "North, New Territories", + "scheduled_service": "no" + }, + { + "id": "339192", + "ident": "HK-0050", + "type": "heliport", + "name": "Tak Wu Ling Helipad", + "latitude_deg": "22.558024", + "longitude_deg": "114.161769", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "North, New Territories", + "scheduled_service": "no" + }, + { + "id": "339193", + "ident": "HK-0051", + "type": "heliport", + "name": "Robins Nest Helipad", + "latitude_deg": "22.5399", + "longitude_deg": "114.18718", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "North, New Territories", + "scheduled_service": "no" + }, + { + "id": "339194", + "ident": "HK-0052", + "type": "heliport", + "name": "Strafford House Heliport", + "latitude_deg": "22.43938", + "longitude_deg": "114.18048", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tai Po, New Territories", + "scheduled_service": "no" + }, + { + "id": "339195", + "ident": "HK-0053", + "type": "heliport", + "name": "Island Resort Tower 1 Helipad", + "latitude_deg": "22.26666", + "longitude_deg": "114.25025", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Eastern, Hong Kong Island", + "scheduled_service": "no" + }, + { + "id": "339196", + "ident": "HK-0054", + "type": "heliport", + "name": "Island Resort Tower 2 Helipad", + "latitude_deg": "22.266425", + "longitude_deg": "114.249995", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Eastern, Hong Kong Island", + "scheduled_service": "no" + }, + { + "id": "339197", + "ident": "HK-0055", + "type": "heliport", + "name": "Island Resort Tower 3 Helipad", + "latitude_deg": "22.26556", + "longitude_deg": "114.25131", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Eastern, Hong Kong Island", + "scheduled_service": "no" + }, + { + "id": "339198", + "ident": "HK-0056", + "type": "heliport", + "name": "Island Resort Tower 5 Helipad", + "latitude_deg": "22.265776", + "longitude_deg": "114.251521", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Eastern, Hong Kong Island", + "scheduled_service": "no" + }, + { + "id": "339199", + "ident": "HK-0057", + "type": "heliport", + "name": "Island Resort Tower 6 Helipad", + "latitude_deg": "22.266113", + "longitude_deg": "114.251632", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Eastern, Hong Kong Island", + "scheduled_service": "no" + }, + { + "id": "339200", + "ident": "HK-0058", + "type": "heliport", + "name": "Island Resort Tower 7 Helipad", + "latitude_deg": "22.26632", + "longitude_deg": "114.251371", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Eastern, Hong Kong Island", + "scheduled_service": "no" + }, + { + "id": "339201", + "ident": "HK-0059", + "type": "heliport", + "name": "Island Resort Tower 8 Helipad", + "latitude_deg": "22.266647", + "longitude_deg": "114.251022", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Eastern, Hong Kong Island", + "scheduled_service": "no" + }, + { + "id": "339202", + "ident": "HK-0060", + "type": "heliport", + "name": "Island Resort Tower 9 Helipad", + "latitude_deg": "22.266887", + "longitude_deg": "114.250733", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Eastern, Hong Kong Island", + "scheduled_service": "no" + }, + { + "id": "339203", + "ident": "HK-0061", + "type": "heliport", + "name": "Sha Chau Helipad", + "latitude_deg": "22.345611", + "longitude_deg": "113.889741", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tuen Mun, New Territories", + "scheduled_service": "no" + }, + { + "id": "339204", + "ident": "HK-0062", + "type": "heliport", + "name": "Shek Kwu Chau Helipad", + "latitude_deg": "22.194483", + "longitude_deg": "113.993546", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no" + }, + { + "id": "339206", + "ident": "HK-0063", + "type": "heliport", + "name": "Sha Tau Kok Heliport", + "latitude_deg": "22.54461", + "longitude_deg": "114.21992", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "North, New Territories", + "scheduled_service": "no" + }, + { + "id": "339207", + "ident": "HK-0064", + "type": "heliport", + "name": "Shui Hau Heliport", + "latitude_deg": "22.22287", + "longitude_deg": "113.90872", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no" + }, + { + "id": "339208", + "ident": "HK-0065", + "type": "heliport", + "name": "Tung Lung Chau Helipad", + "latitude_deg": "22.248277", + "longitude_deg": "114.29194", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Sai Kung, New Territories", + "scheduled_service": "no" + }, + { + "id": "339209", + "ident": "HK-0066", + "type": "heliport", + "name": "Tai Mo Shan Helipad", + "latitude_deg": "22.41235", + "longitude_deg": "114.12516", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tsuen Wan, New Territories", + "scheduled_service": "no" + }, + { + "id": "339210", + "ident": "HK-0067", + "type": "heliport", + "name": "Tai Mei Tuk Helipad", + "latitude_deg": "22.46838", + "longitude_deg": "114.23462", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tai Po, New Territories", + "scheduled_service": "no" + }, + { + "id": "339211", + "ident": "HK-0068", + "type": "heliport", + "name": "Tai Po Helipad", + "latitude_deg": "22.45263", + "longitude_deg": "114.18928", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tai Po, New Territories", + "scheduled_service": "no" + }, + { + "id": "339212", + "ident": "HK-0069", + "type": "heliport", + "name": "Town Island Helipad", + "latitude_deg": "22.33125", + "longitude_deg": "114.36261", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Sai Kung, New Territories", + "scheduled_service": "no" + }, + { + "id": "339213", + "ident": "HK-0070", + "type": "heliport", + "name": "Tai A Chau Landing #2 Helipad", + "latitude_deg": "22.16771", + "longitude_deg": "113.90877", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no" + }, + { + "id": "339214", + "ident": "HK-0071", + "type": "heliport", + "name": "Tai A Chau Helipad", + "latitude_deg": "22.16357", + "longitude_deg": "113.91086", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no" + }, + { + "id": "339215", + "ident": "HK-0072", + "type": "heliport", + "name": "Wan Tsai West Helipad", + "latitude_deg": "22.46581", + "longitude_deg": "114.33769", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tai Po, New Territories", + "scheduled_service": "no" + }, + { + "id": "339216", + "ident": "HK-0073", + "type": "heliport", + "name": "Tap Mun Helipad", + "latitude_deg": "22.47199", + "longitude_deg": "114.36306", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tai Po, New Territories", + "scheduled_service": "no" + }, + { + "id": "339218", + "ident": "HK-0074", + "type": "heliport", + "name": "Waglan Helipad", + "latitude_deg": "22.18283", + "longitude_deg": "114.30401", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no" + }, + { + "id": "344087", + "ident": "HK-0075", + "type": "heliport", + "name": "CLP Tsing Yi Base Helipad", + "latitude_deg": "22.32783", + "longitude_deg": "114.09899", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Kwai Tsing, New Territories", + "scheduled_service": "no" + }, + { + "id": "344088", + "ident": "HK-0076", + "type": "heliport", + "name": "Northwest Tsing Yi Interchange Helipad", + "latitude_deg": "22.35282", + "longitude_deg": "114.08419", + "elevation_ft": "184", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Kwai Tsing, New Territories", + "scheduled_service": "no" + }, + { + "id": "344725", + "ident": "HK-0077", + "type": "heliport", + "name": "Chi Ma Wan Heliport", + "latitude_deg": "22.23393", + "longitude_deg": "114.0011", + "elevation_ft": "243", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no" + }, + { + "id": "344726", + "ident": "HK-0078", + "type": "heliport", + "name": "Sea Ranch Heliport", + "latitude_deg": "22.21343", + "longitude_deg": "113.98862", + "elevation_ft": "131", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no" + }, + { + "id": "345122", + "ident": "HK-0079", + "type": "closed", + "name": "Kai Tak Hong Kong Flying Club Heliport", + "latitude_deg": "22.32463", + "longitude_deg": "114.19064", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Kowloon City, Kowloon", + "scheduled_service": "no" + }, + { + "id": "345123", + "ident": "HK-0080", + "type": "heliport", + "name": "Kadoorie Farm Helipad", + "latitude_deg": "22.43316", + "longitude_deg": "114.12094", + "elevation_ft": "947", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tai Po, New Territories", + "scheduled_service": "no" + }, + { + "id": "345124", + "ident": "HK-0081", + "type": "closed", + "name": "Kwai Chung Workshop Helipad", + "latitude_deg": "22.34254", + "longitude_deg": "114.13185", + "elevation_ft": "95", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tsuen Wan, New Territories", + "scheduled_service": "no" + }, + { + "id": "345145", + "ident": "HK-0082", + "type": "heliport", + "name": "Tsim Bei Tsui Helipad", + "latitude_deg": "22.48616", + "longitude_deg": "114.0115", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Yuen Long, New Territories", + "scheduled_service": "no" + }, + { + "id": "349890", + "ident": "HK-0083", + "type": "heliport", + "name": "Kau Yi Chau Helipad", + "latitude_deg": "22.284103", + "longitude_deg": "114.075903", + "elevation_ft": "348", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no" + }, + { + "id": "349929", + "ident": "HK-0084", + "type": "heliport", + "name": "Chung Hau Heliport", + "latitude_deg": "22.22028", + "longitude_deg": "113.88933", + "elevation_ft": "75", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no" + }, + { + "id": "349930", + "ident": "HK-0085", + "type": "heliport", + "name": "Tai O Barracks Heliport", + "latitude_deg": "22.25562", + "longitude_deg": "113.85336", + "elevation_ft": "276", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no" + }, + { + "id": "349931", + "ident": "HK-0086", + "type": "heliport", + "name": "North Lantau Island Launching Station Helipad", + "latitude_deg": "22.31461", + "longitude_deg": "114.00631", + "elevation_ft": "872", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no" + }, + { + "id": "349932", + "ident": "HK-0087", + "type": "heliport", + "name": "Tai Chuen Helipad", + "latitude_deg": "22.33782", + "longitude_deg": "114.04841", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no" + }, + { + "id": "349933", + "ident": "HK-0088", + "type": "heliport", + "name": "Jockey Club Kau Sai Chau Golf Course South Helipad", + "latitude_deg": "22.36649", + "longitude_deg": "114.30794", + "elevation_ft": "94", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Sai Kung, New Territories", + "scheduled_service": "no" + }, + { + "id": "349934", + "ident": "HK-0089", + "type": "heliport", + "name": "Jockey Club Kau Sai Chau Golf Course North Helipad", + "latitude_deg": "22.37066", + "longitude_deg": "114.312", + "elevation_ft": "121", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Sai Kung, New Territories", + "scheduled_service": "no" + }, + { + "id": "351188", + "ident": "HK-0090", + "type": "heliport", + "name": "Edinburgh Tower Helipad", + "latitude_deg": "22.2809", + "longitude_deg": "114.15773", + "elevation_ft": "530", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Central and Western, Hong Kong Island", + "scheduled_service": "no" + }, + { + "id": "351189", + "ident": "HK-0091", + "type": "heliport", + "name": "Gloucester Tower Helipad", + "latitude_deg": "22.28157", + "longitude_deg": "114.15783", + "elevation_ft": "530", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Central and Western, Hong Kong Island", + "scheduled_service": "no" + }, + { + "id": "351191", + "ident": "HK-0092", + "type": "heliport", + "name": "Kowloon Hills Heliport", + "latitude_deg": "22.34638", + "longitude_deg": "114.15287", + "elevation_ft": "719", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Tai Wai, New Territories", + "scheduled_service": "no", + "local_code": "KL06" + }, + { + "id": "355817", + "ident": "HK-0093", + "type": "heliport", + "name": "Government Flying Service Kai Tak Division Heliport", + "latitude_deg": "22.30336", + "longitude_deg": "114.21576", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Kowloon City, Kowloon", + "scheduled_service": "no" + }, + { + "id": "339159", + "ident": "HK07", + "type": "heliport", + "name": "HKGFS New Wan Chai Heliport", + "latitude_deg": "22.285086", + "longitude_deg": "114.174289", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Wan Chai, Hong Kong Island", + "scheduled_service": "no", + "gps_code": "HK07", + "local_code": "HK07" + }, + { + "id": "28481", + "ident": "HKAM", + "type": "medium_airport", + "name": "Amboseli Airport", + "latitude_deg": "-2.645050048828125", + "longitude_deg": "37.25310134887695", + "elevation_ft": "3755", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Amboseli National Park", + "scheduled_service": "yes", + "gps_code": "HKAM", + "iata_code": "ASV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amboseli_Airport", + "keywords": "Maasai Amboseli Game Reserve" + }, + { + "id": "313211", + "ident": "HKB", + "type": "small_airport", + "name": "Healy Lake Airport", + "latitude_deg": "63.9958", + "longitude_deg": "-144.6926", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Healy Lake", + "scheduled_service": "yes", + "iata_code": "HKB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Healy_Lake_Airport" + }, + { + "id": "42530", + "ident": "HKBA", + "type": "small_airport", + "name": "Busia Airport", + "latitude_deg": "0.4570850133895874", + "longitude_deg": "34.130279541015625", + "elevation_ft": "3989", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-900", + "municipality": "Busia", + "scheduled_service": "no" + }, + { + "id": "31579", + "ident": "HKBR", + "type": "small_airport", + "name": "Bura East Airport", + "latitude_deg": "-1.100000023841858", + "longitude_deg": "39.95000076293945", + "elevation_ft": "345", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Bura", + "scheduled_service": "no", + "gps_code": "HKBR" + }, + { + "id": "42531", + "ident": "HKBU", + "type": "small_airport", + "name": "Bungoma Airport", + "latitude_deg": "0.5762079954147339", + "longitude_deg": "34.55345153808594", + "elevation_ft": "4726", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-900", + "municipality": "Bungoma", + "scheduled_service": "no" + }, + { + "id": "42532", + "ident": "HKED", + "type": "small_airport", + "name": "Eldoret Boma Airport", + "latitude_deg": "0.536926", + "longitude_deg": "35.280518", + "elevation_ft": "7050", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Eldoret", + "scheduled_service": "no" + }, + { + "id": "3205", + "ident": "HKEL", + "type": "medium_airport", + "name": "Eldoret International Airport", + "latitude_deg": "0.4044579863548279", + "longitude_deg": "35.23889923095703", + "elevation_ft": "6941", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Eldoret", + "scheduled_service": "yes", + "gps_code": "HKEL", + "iata_code": "EDL", + "home_link": "http://www.kenyaairports.co.ke/kaa/airports/eldoret/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eldoret_International_Airport", + "keywords": "HKED" + }, + { + "id": "31580", + "ident": "HKEM", + "type": "small_airport", + "name": "Embu Airport", + "latitude_deg": "-0.57327", + "longitude_deg": "37.49726", + "elevation_ft": "4150", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Embu", + "scheduled_service": "no", + "gps_code": "HKEM" + }, + { + "id": "28480", + "ident": "HKES", + "type": "small_airport", + "name": "Eliye Springs Airport", + "latitude_deg": "3.23635", + "longitude_deg": "35.97664", + "elevation_ft": "1395", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Eliye Springs", + "scheduled_service": "no", + "gps_code": "HKES", + "iata_code": "EYS", + "keywords": "Ille Springs" + }, + { + "id": "346598", + "ident": "HKEW", + "type": "small_airport", + "name": "El Wak Airport", + "latitude_deg": "2.732842", + "longitude_deg": "40.927505", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-500", + "municipality": "El Wak", + "scheduled_service": "no", + "gps_code": "HKEW" + }, + { + "id": "31758", + "ident": "HKFG", + "type": "small_airport", + "name": "Kalokol Airport", + "latitude_deg": "3.49161", + "longitude_deg": "35.836777", + "elevation_ft": "1245", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kalokol", + "scheduled_service": "no", + "gps_code": "HKFG", + "iata_code": "KLK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kalokol_Airport", + "keywords": "FER, Ferguson's Gulf" + }, + { + "id": "31514", + "ident": "HKGA", + "type": "small_airport", + "name": "Garissa Airport", + "latitude_deg": "-0.4635080099105835", + "longitude_deg": "39.64830017089844", + "elevation_ft": "475", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-500", + "municipality": "Garissa", + "scheduled_service": "no", + "gps_code": "HKGA", + "iata_code": "GAS" + }, + { + "id": "31582", + "ident": "HKGT", + "type": "small_airport", + "name": "Garba Tula Airport", + "latitude_deg": "0.533333", + "longitude_deg": "38.516667", + "elevation_ft": "2000", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Garba Tula", + "scheduled_service": "no", + "gps_code": "HKGT" + }, + { + "id": "31583", + "ident": "HKHB", + "type": "small_airport", + "name": "Homa Bay Airport", + "latitude_deg": "-0.6000000238418579", + "longitude_deg": "34.46699905395508", + "elevation_ft": "4280", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-600", + "municipality": "Homa Bay", + "scheduled_service": "no", + "gps_code": "HKHB" + }, + { + "id": "31611", + "ident": "HKHO", + "type": "small_airport", + "name": "Hola Airport", + "latitude_deg": "-1.5219999551773071", + "longitude_deg": "40.00400161743164", + "elevation_ft": "195", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Hola", + "scheduled_service": "no", + "gps_code": "HKHO", + "iata_code": "HOA" + }, + { + "id": "31584", + "ident": "HKIS", + "type": "small_airport", + "name": "Isiolo Airport", + "latitude_deg": "0.33817094564437866", + "longitude_deg": "37.59169387817383", + "elevation_ft": "3495", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Isiolo", + "scheduled_service": "no", + "gps_code": "HKIS" + }, + { + "id": "3206", + "ident": "HKJK", + "type": "large_airport", + "name": "Jomo Kenyatta International Airport", + "latitude_deg": "-1.31923997402", + "longitude_deg": "36.9277992249", + "elevation_ft": "5330", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-110", + "municipality": "Nairobi", + "scheduled_service": "yes", + "gps_code": "HKJK", + "iata_code": "NBO", + "home_link": "http://www.kenyaairports.com/jkia/IndexJkia.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jomo_Kenyatta_International_Airport", + "keywords": "Jkia Airport, Embakasi Airport, Nairobi International Airport" + }, + { + "id": "31586", + "ident": "HKKB", + "type": "small_airport", + "name": "Kiambere Airport", + "latitude_deg": "-0.6330000162124634", + "longitude_deg": "37.882999420166016", + "elevation_ft": "2450", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Kiambere", + "scheduled_service": "no", + "gps_code": "HKKB", + "keywords": "6022" + }, + { + "id": "31587", + "ident": "HKKE", + "type": "small_airport", + "name": "Keekorok Airport", + "latitude_deg": "-1.586345", + "longitude_deg": "35.257455", + "elevation_ft": "5800", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Keekorok", + "scheduled_service": "no", + "gps_code": "HKKE", + "iata_code": "KEU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Keekorok_Airport" + }, + { + "id": "3207", + "ident": "HKKG", + "type": "small_airport", + "name": "Kakamega Airport", + "latitude_deg": "0.271342009306", + "longitude_deg": "34.7873001099", + "elevation_ft": "5020", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-900", + "municipality": "Kakamega", + "scheduled_service": "no", + "gps_code": "HKKG", + "iata_code": "GGM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kakamega_Airport" + }, + { + "id": "3208", + "ident": "HKKI", + "type": "medium_airport", + "name": "Kisumu Airport", + "latitude_deg": "-0.0861390009522438", + "longitude_deg": "34.72890090942383", + "elevation_ft": "3734", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-600", + "municipality": "Kisumu", + "scheduled_service": "yes", + "gps_code": "HKKI", + "iata_code": "KIS", + "home_link": "http://www.kenyaairports.co.ke/kaa/airports/kisumu/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kisumu_Airport" + }, + { + "id": "31673", + "ident": "HKKL", + "type": "small_airport", + "name": "Kilaguni Airport", + "latitude_deg": "-2.9106099605560303", + "longitude_deg": "38.06520080566406", + "elevation_ft": "2750", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Kilaguni", + "scheduled_service": "no", + "gps_code": "HKKL", + "iata_code": "ILU" + }, + { + "id": "31743", + "ident": "HKKR", + "type": "small_airport", + "name": "Kericho Airport", + "latitude_deg": "-0.3899", + "longitude_deg": "35.242093", + "elevation_ft": "6446", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kericho", + "scheduled_service": "no", + "gps_code": "HKKR", + "iata_code": "KEY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kericho_Airport" + }, + { + "id": "31588", + "ident": "HKKS", + "type": "small_airport", + "name": "Kisii Airport", + "latitude_deg": "-0.6669999957084656", + "longitude_deg": "34.70000076293945", + "elevation_ft": "4905", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-600", + "municipality": "Kisii", + "scheduled_service": "no", + "gps_code": "HKKS" + }, + { + "id": "3209", + "ident": "HKKT", + "type": "medium_airport", + "name": "Kitale Airport", + "latitude_deg": "0.9719889760017395", + "longitude_deg": "34.95859909057617", + "elevation_ft": "6070", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kitale", + "scheduled_service": "no", + "gps_code": "HKKT", + "iata_code": "KTL" + }, + { + "id": "31589", + "ident": "HKKU", + "type": "small_airport", + "name": "Kitui Airport", + "latitude_deg": "-1.372789978981018", + "longitude_deg": "37.97809982299805", + "elevation_ft": "3790", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Kitui", + "scheduled_service": "no", + "gps_code": "HKKU", + "keywords": "6575" + }, + { + "id": "31590", + "ident": "HKLG", + "type": "small_airport", + "name": "Lokitaung Airport", + "latitude_deg": "4.319205", + "longitude_deg": "35.688641", + "elevation_ft": "1805", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Lokitaung", + "scheduled_service": "no", + "gps_code": "HKLG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lokitaung_Airport" + }, + { + "id": "3210", + "ident": "HKLK", + "type": "medium_airport", + "name": "Lokichoggio Airport", + "latitude_deg": "4.20412015914917", + "longitude_deg": "34.348201751708984", + "elevation_ft": "2074", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Lokichoggio", + "scheduled_service": "yes", + "gps_code": "HKLK", + "iata_code": "LKG", + "home_link": "http://www.kenyaairports.co.ke/kaa/airports/loki/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lokichogio_Airport" + }, + { + "id": "3211", + "ident": "HKLO", + "type": "medium_airport", + "name": "Lodwar Airport", + "latitude_deg": "3.1219699382781982", + "longitude_deg": "35.608699798583984", + "elevation_ft": "1715", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Lodwar", + "scheduled_service": "no", + "gps_code": "HKLO", + "iata_code": "LOK" + }, + { + "id": "42533", + "ident": "HKLT", + "type": "small_airport", + "name": "Loitokitok Airport", + "latitude_deg": "-2.9098849296569824", + "longitude_deg": "37.52610778808594", + "elevation_ft": "5320", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Loitokitok", + "scheduled_service": "no" + }, + { + "id": "3212", + "ident": "HKLU", + "type": "medium_airport", + "name": "Manda Airport", + "latitude_deg": "-2.252431", + "longitude_deg": "40.912892", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Lamu", + "scheduled_service": "yes", + "gps_code": "HKLU", + "iata_code": "LAU", + "home_link": "http://www.kenyaairports.co.ke/kaa/airports/airstrips/manda_intro.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manda_Airport" + }, + { + "id": "31842", + "ident": "HKLY", + "type": "small_airport", + "name": "Loyengalani Airport", + "latitude_deg": "2.75", + "longitude_deg": "36.71699905395508", + "elevation_ft": "1195", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Loyengalani", + "scheduled_service": "no", + "gps_code": "HKLY", + "iata_code": "LOY" + }, + { + "id": "32014", + "ident": "HKMA", + "type": "small_airport", + "name": "Mandera Airport", + "latitude_deg": "3.933000087738037", + "longitude_deg": "41.849998474121094", + "elevation_ft": "805", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-500", + "municipality": "Mandera", + "scheduled_service": "no", + "gps_code": "HKMA", + "iata_code": "NDE" + }, + { + "id": "32198", + "ident": "HKMB", + "type": "small_airport", + "name": "Marsabit Airport", + "latitude_deg": "2.344254", + "longitude_deg": "37.999996", + "elevation_ft": "4395", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Marsabit", + "scheduled_service": "no", + "gps_code": "HKMB", + "iata_code": "RBT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marsabit_Airport", + "keywords": "6122" + }, + { + "id": "42534", + "ident": "HKMG", + "type": "small_airport", + "name": "Magadi Airport", + "latitude_deg": "-1.9480570554733276", + "longitude_deg": "36.28333282470703", + "elevation_ft": "1955", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Magadi", + "scheduled_service": "no" + }, + { + "id": "31591", + "ident": "HKMI", + "type": "small_airport", + "name": "Maralal (Kisima) Airport", + "latitude_deg": "0.949999988079071", + "longitude_deg": "36.79999923706055", + "elevation_ft": "5940", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Maralal", + "scheduled_service": "no", + "gps_code": "HKMI" + }, + { + "id": "42703", + "ident": "HKMK", + "type": "small_airport", + "name": "Mulika Lodge Airport", + "latitude_deg": "0.165083", + "longitude_deg": "38.195141", + "elevation_ft": "2000", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Meru-Kinna", + "scheduled_service": "yes", + "gps_code": "HKMK", + "iata_code": "JJM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mulika_Lodge_Airport", + "keywords": "Meru National Park" + }, + { + "id": "31988", + "ident": "HKML", + "type": "medium_airport", + "name": "Malindi Airport", + "latitude_deg": "-3.2293100357055664", + "longitude_deg": "40.10169982910156", + "elevation_ft": "80", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Malindi", + "scheduled_service": "yes", + "gps_code": "HKML", + "iata_code": "MYD", + "home_link": "http://www.kenyaairports.co.ke/kaa/airports/malindi/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Malindi_Airport" + }, + { + "id": "31593", + "ident": "HKMM", + "type": "small_airport", + "name": "Migori Airport", + "latitude_deg": "-1.1169999837875366", + "longitude_deg": "34.483001708984375", + "elevation_ft": "4575", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-600", + "municipality": "Migori", + "scheduled_service": "no", + "gps_code": "HKMM", + "keywords": "6645" + }, + { + "id": "3213", + "ident": "HKMO", + "type": "large_airport", + "name": "Moi International Airport", + "latitude_deg": "-4.03483", + "longitude_deg": "39.5942", + "elevation_ft": "200", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Mombasa", + "scheduled_service": "yes", + "gps_code": "HKMO", + "iata_code": "MBA", + "home_link": "http://www.kenyaairports.co.ke/kaa/airports/moi/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moi_International_Airport", + "keywords": "Mombasa, Port Reitz" + }, + { + "id": "42535", + "ident": "HKMR", + "type": "small_airport", + "name": "Mackinnon Road Airport", + "latitude_deg": "-3.735685110092163", + "longitude_deg": "39.033329010009766", + "elevation_ft": "1443", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Mackinnon Road", + "scheduled_service": "no" + }, + { + "id": "31594", + "ident": "HKMS", + "type": "medium_airport", + "name": "Mara Serena Lodge Airstrip", + "latitude_deg": "-1.406111", + "longitude_deg": "35.008057", + "elevation_ft": "5200", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Masai Mara", + "scheduled_service": "yes", + "gps_code": "HKMS", + "iata_code": "MRE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mara_Serena_Airport", + "keywords": "6100" + }, + { + "id": "42536", + "ident": "HKMT", + "type": "small_airport", + "name": "Mtito Andei Airport", + "latitude_deg": "-2.7170820236206055", + "longitude_deg": "38.197566986083984", + "elevation_ft": "2397", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Mtito", + "scheduled_service": "no" + }, + { + "id": "42537", + "ident": "HKMU", + "type": "small_airport", + "name": "Makindu Airport", + "latitude_deg": "-2.289713", + "longitude_deg": "37.828621", + "elevation_ft": "3513", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Makindu", + "scheduled_service": "no", + "gps_code": "HKMU" + }, + { + "id": "32141", + "ident": "HKMY", + "type": "small_airport", + "name": "Moyale Airport", + "latitude_deg": "3.46972", + "longitude_deg": "39.101398", + "elevation_ft": "2790", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Moyale (Lower)", + "scheduled_service": "no", + "gps_code": "HKMY", + "iata_code": "OYL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moyale_Airport" + }, + { + "id": "32065", + "ident": "HKNI", + "type": "small_airport", + "name": "Nyeri Airport", + "latitude_deg": "-0.3644140064716339", + "longitude_deg": "36.978485107421875", + "elevation_ft": "5830", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-200", + "municipality": "Nyeri", + "scheduled_service": "no", + "gps_code": "HKNI", + "iata_code": "NYE" + }, + { + "id": "28485", + "ident": "HKNK", + "type": "small_airport", + "name": "Nakuru Airport", + "latitude_deg": "-0.298067", + "longitude_deg": "36.159302", + "elevation_ft": "6234", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Nakuru", + "scheduled_service": "yes", + "gps_code": "HKNK", + "iata_code": "NUU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nakuru_Airport" + }, + { + "id": "31595", + "ident": "HKNO", + "type": "small_airport", + "name": "Narok Airport", + "latitude_deg": "-1.128103", + "longitude_deg": "35.785685", + "elevation_ft": "6311", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Narok", + "scheduled_service": "no", + "gps_code": "HKNO" + }, + { + "id": "3214", + "ident": "HKNV", + "type": "small_airport", + "name": "Naivasha Airport", + "latitude_deg": "-0.787953", + "longitude_deg": "36.433494", + "elevation_ft": "6380", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Naivasha", + "scheduled_service": "no", + "gps_code": "HKNV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naivasha_Airport", + "keywords": "Naivasha South" + }, + { + "id": "3215", + "ident": "HKNW", + "type": "medium_airport", + "name": "Nairobi Wilson Airport", + "latitude_deg": "-1.321720004081726", + "longitude_deg": "36.81480026245117", + "elevation_ft": "5536", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-110", + "municipality": "Nairobi", + "scheduled_service": "yes", + "gps_code": "HKNW", + "iata_code": "WIL", + "home_link": "http://www.kenyaairports.co.ke/kaa/airports/wilson/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wilson_Airport", + "keywords": "WLN" + }, + { + "id": "32066", + "ident": "HKNY", + "type": "medium_airport", + "name": "Nanyuki Airport", + "latitude_deg": "-0.062399", + "longitude_deg": "37.041008", + "elevation_ft": "6250", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-200", + "municipality": "Nanyuki", + "scheduled_service": "yes", + "gps_code": "HKNL", + "iata_code": "NYK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nanyuki_Airport" + }, + { + "id": "3216", + "ident": "HKRE", + "type": "medium_airport", + "name": "Moi Air Base", + "latitude_deg": "-1.2772699594499999", + "longitude_deg": "36.8623008728", + "elevation_ft": "5336", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-110", + "municipality": "Nairobi", + "scheduled_service": "no", + "gps_code": "HKRE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moi_Air_Base", + "keywords": "RAF Eastleigh, Eastleigh Airport" + }, + { + "id": "42538", + "ident": "HKSA", + "type": "small_airport", + "name": "Embakasi Airport", + "latitude_deg": "-1.2982189655303955", + "longitude_deg": "36.91554641723633", + "elevation_ft": "5357", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-110", + "municipality": "Embakasi", + "scheduled_service": "no" + }, + { + "id": "32500", + "ident": "HKSB", + "type": "small_airport", + "name": "Samburu Airport", + "latitude_deg": "0.534069", + "longitude_deg": "37.531991", + "elevation_ft": "3295", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Samburu", + "scheduled_service": "no", + "gps_code": "HKSB", + "iata_code": "UAS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Samburu_Airport", + "keywords": "Buffalo Spring" + }, + { + "id": "325692", + "ident": "HKTW", + "type": "small_airport", + "name": "Tawi airfield", + "latitude_deg": "-2.73", + "longitude_deg": "37.427", + "elevation_ft": "3800", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-900", + "municipality": "Tawi", + "scheduled_service": "no", + "gps_code": "HKTW" + }, + { + "id": "31596", + "ident": "HKUK", + "type": "small_airport", + "name": "Ukunda Airstrip", + "latitude_deg": "-4.29333", + "longitude_deg": "39.571098", + "elevation_ft": "98", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Ukunda", + "scheduled_service": "no", + "gps_code": "HKUK", + "iata_code": "UKA", + "home_link": "http://www.kenyaairports.co.ke/kaa/airports/airstrips/ukunda_intro.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ukunda_Airport", + "keywords": "HKKA,6643" + }, + { + "id": "31598", + "ident": "HKVO", + "type": "small_airport", + "name": "Voi Airport", + "latitude_deg": "-3.3745388984680176", + "longitude_deg": "38.53474807739258", + "elevation_ft": "1900", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Voi", + "scheduled_service": "no", + "gps_code": "HKVO" + }, + { + "id": "31599", + "ident": "HKWE", + "type": "small_airport", + "name": "Webuye Airport", + "latitude_deg": "0.6169999837875366", + "longitude_deg": "34.78300094604492", + "elevation_ft": "4300", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-900", + "municipality": "Webuye", + "scheduled_service": "no", + "gps_code": "HKWE", + "keywords": "6577" + }, + { + "id": "3217", + "ident": "HKWJ", + "type": "medium_airport", + "name": "Wajir Airport", + "latitude_deg": "1.73324", + "longitude_deg": "40.091599", + "elevation_ft": "770", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-500", + "municipality": "Wajir", + "scheduled_service": "yes", + "gps_code": "HKWJ", + "iata_code": "WJR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wajir_Airport" + }, + { + "id": "45235", + "ident": "HL2", + "type": "seaplane_base", + "name": "Hubbard Landing Seaplane Base", + "latitude_deg": "31.063611", + "longitude_deg": "-87.87", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Stockton", + "scheduled_service": "no", + "gps_code": "HL2", + "local_code": "HL2" + }, + { + "id": "4576", + "ident": "HL50", + "type": "small_airport", + "name": "Zelten Sw New Airport", + "latitude_deg": "28.587099075317383", + "longitude_deg": "19.30340003967285", + "elevation_ft": "550", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-WA", + "scheduled_service": "no", + "gps_code": "HL50", + "local_code": "HL50" + }, + { + "id": "4579", + "ident": "HL53", + "type": "small_airport", + "name": "Abu Aisha Agricultural Aviation Airport", + "latitude_deg": "32.495112", + "longitude_deg": "13.289911", + "elevation_ft": "490", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-TB", + "municipality": "Ghashir", + "scheduled_service": "no", + "keywords": "Sidi Salih Airport" + }, + { + "id": "4580", + "ident": "HL54", + "type": "small_airport", + "name": "Bani Waled Airport", + "latitude_deg": "31.739201", + "longitude_deg": "13.954", + "elevation_ft": "985", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-MI", + "municipality": "Bani Waled", + "scheduled_service": "no", + "gps_code": "HL54", + "local_code": "HL54", + "keywords": "Beni Walid" + }, + { + "id": "4582", + "ident": "HL56", + "type": "medium_airport", + "name": "Matan al-Sarra Air Base", + "latitude_deg": "21.687700271606445", + "longitude_deg": "21.830900192260742", + "elevation_ft": "1722", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-KF", + "scheduled_service": "no", + "gps_code": "HL56", + "local_code": "HL56", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maaten_al-Sarra_Air_Base" + }, + { + "id": "4583", + "ident": "HL57", + "type": "small_airport", + "name": "Al Wigh Airport", + "latitude_deg": "24.178316", + "longitude_deg": "14.542894", + "elevation_ft": "1558", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-MQ", + "municipality": "Al Wigh", + "scheduled_service": "no", + "gps_code": "HL57", + "local_code": "HL57" + }, + { + "id": "4584", + "ident": "HL58", + "type": "small_airport", + "name": "Ajdabiya Airport", + "latitude_deg": "30.7651", + "longitude_deg": "20.191401", + "elevation_ft": "50", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-WA", + "municipality": "Ajdabiya", + "scheduled_service": "no", + "gps_code": "HL58", + "local_code": "HL58", + "keywords": "Adschdabiya, Agedabia" + }, + { + "id": "4585", + "ident": "HL59", + "type": "small_airport", + "name": "Al Khadim Airport", + "latitude_deg": "31.998501", + "longitude_deg": "21.191799", + "elevation_ft": "800", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-MJ", + "municipality": "Charruba", + "scheduled_service": "no", + "gps_code": "HL59", + "local_code": "HL59" + }, + { + "id": "4586", + "ident": "HL60", + "type": "small_airport", + "name": "Al Marj Airport", + "latitude_deg": "32.525299072265625", + "longitude_deg": "20.875099182128906", + "elevation_ft": "950", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-MJ", + "municipality": "Al Marj", + "scheduled_service": "no", + "keywords": "HL60" + }, + { + "id": "4590", + "ident": "HL64", + "type": "small_airport", + "name": "Benghazi Aviation Club Airport", + "latitude_deg": "31.9757", + "longitude_deg": "20.026899", + "elevation_ft": "85", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-BA", + "municipality": "Benghazi", + "scheduled_service": "no", + "gps_code": "HL64", + "local_code": "HL64", + "keywords": "Qaryat Al Karmal Airport, Tika Agricultural Airstrip" + }, + { + "id": "4592", + "ident": "HL66", + "type": "small_airport", + "name": "Tamanhint Airport", + "latitude_deg": "27.240101", + "longitude_deg": "14.6563", + "elevation_ft": "1325", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-SB", + "municipality": "Tamanhint", + "scheduled_service": "no", + "gps_code": "HL66", + "local_code": "HL66" + }, + { + "id": "4594", + "ident": "HL68", + "type": "medium_airport", + "name": "Bombah Airport", + "latitude_deg": "32.4529", + "longitude_deg": "23.118601", + "elevation_ft": "33", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-DR", + "municipality": "Bombah", + "scheduled_service": "no", + "keywords": "Al Bunbah North Air Base" + }, + { + "id": "4595", + "ident": "HL69", + "type": "small_airport", + "name": "Al Jufra Airport", + "latitude_deg": "29.19809913635254", + "longitude_deg": "16.000999450683594", + "elevation_ft": "846", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-JU", + "scheduled_service": "no", + "gps_code": "HL69", + "local_code": "HL69" + }, + { + "id": "4596", + "ident": "HL70", + "type": "small_airport", + "name": "Al Khuwaymat Airport", + "latitude_deg": "27.257299423217773", + "longitude_deg": "21.618099212646484", + "elevation_ft": "500", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-WA", + "scheduled_service": "no", + "gps_code": "HL70", + "local_code": "HL70" + }, + { + "id": "4597", + "ident": "HL71", + "type": "small_airport", + "name": "Bir Umran Airport", + "latitude_deg": "26.332399368286133", + "longitude_deg": "13.422100067138672", + "elevation_ft": "1400", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-SH", + "scheduled_service": "no", + "gps_code": "HL71", + "local_code": "HL71" + }, + { + "id": "4598", + "ident": "HL72", + "type": "small_airport", + "name": "Waddan Airport", + "latitude_deg": "29.1392", + "longitude_deg": "16.160299", + "elevation_ft": "910", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-JU", + "scheduled_service": "no", + "gps_code": "HL72", + "local_code": "HL72", + "wikipedia_link": "https://en.wikipedia.org/wiki/Waddan_Airport" + }, + { + "id": "4602", + "ident": "HL77", + "type": "medium_airport", + "name": "Okba Ibn Nafa Air Base", + "latitude_deg": "32.473400116", + "longitude_deg": "11.897899627700001", + "elevation_ft": "253", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-NQ", + "scheduled_service": "no" + }, + { + "id": "4603", + "ident": "HL78", + "type": "small_airport", + "name": "Habit Awlad Muhammad Airport", + "latitude_deg": "30.701900482177734", + "longitude_deg": "12.484000205993652", + "elevation_ft": "2000", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-JG", + "scheduled_service": "no", + "gps_code": "HL78", + "local_code": "HL78" + }, + { + "id": "4604", + "ident": "HL79", + "type": "small_airport", + "name": "Waw Al Kabir Airport", + "latitude_deg": "25.356800079345703", + "longitude_deg": "16.809999465942383", + "elevation_ft": "1465", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-MQ", + "scheduled_service": "no", + "gps_code": "HL79", + "local_code": "HL79" + }, + { + "id": "4605", + "ident": "HL80", + "type": "small_airport", + "name": "Sidra Airport", + "latitude_deg": "30.643", + "longitude_deg": "18.320801", + "elevation_ft": "100", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-SR", + "municipality": "Sidra", + "scheduled_service": "no", + "gps_code": "HL80", + "local_code": "HL80", + "keywords": "Matratin Airport" + }, + { + "id": "4606", + "ident": "HL81", + "type": "small_airport", + "name": "Al Hamada Con 66 East Airport", + "latitude_deg": "29.531099319458008", + "longitude_deg": "12.943699836730957", + "elevation_ft": "2090", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-JG", + "scheduled_service": "no", + "gps_code": "HL81", + "local_code": "HL81" + }, + { + "id": "4607", + "ident": "HL82", + "type": "small_airport", + "name": "Ghani Field Airport", + "latitude_deg": "28.961901", + "longitude_deg": "17.5881", + "elevation_ft": "381", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-JU", + "municipality": "Zillah", + "scheduled_service": "no", + "gps_code": "HL82", + "local_code": "HL82", + "keywords": "Wadi Buzanad Southwest Airport" + }, + { + "id": "4608", + "ident": "HL83", + "type": "small_airport", + "name": "Nanur Airport", + "latitude_deg": "31.7052", + "longitude_deg": "14.9116", + "elevation_ft": "185", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-SR", + "municipality": "Bani Waled", + "scheduled_service": "no", + "gps_code": "HL83", + "local_code": "HL83" + }, + { + "id": "4609", + "ident": "HL84", + "type": "small_airport", + "name": "Sarir Nw Airport", + "latitude_deg": "27.97570037841797", + "longitude_deg": "22.35740089416504", + "elevation_ft": "330", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-WA", + "scheduled_service": "no", + "gps_code": "HL84", + "local_code": "HL84" + }, + { + "id": "31600", + "ident": "HLAM", + "type": "small_airport", + "name": "Amal V12 Airport", + "latitude_deg": "29.47949981689453", + "longitude_deg": "21.122400283813477", + "elevation_ft": "145", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-WA", + "municipality": "Amal V12", + "scheduled_service": "no", + "gps_code": "HLAM" + }, + { + "id": "31601", + "ident": "HLBD", + "type": "small_airport", + "name": "Beda (M-3) Airport", + "latitude_deg": "28.503299713134766", + "longitude_deg": "19.00279998779297", + "elevation_ft": "499", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-WA", + "municipality": "Beda M3", + "scheduled_service": "no", + "gps_code": "HLBD" + }, + { + "id": "347939", + "ident": "HLBS", + "type": "small_airport", + "name": "Booster Airport", + "latitude_deg": "29.9124", + "longitude_deg": "23.287275", + "elevation_ft": "151", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-BU", + "scheduled_service": "no", + "gps_code": "HLBS" + }, + { + "id": "3218", + "ident": "HLFL", + "type": "small_airport", + "name": "Bu Attifel Airport", + "latitude_deg": "28.795400619506836", + "longitude_deg": "22.080900192260742", + "elevation_ft": "161", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-WA", + "scheduled_service": "no", + "gps_code": "HLFL" + }, + { + "id": "3219", + "ident": "HLGD", + "type": "medium_airport", + "name": "Sirt International Airport / Ghardabiya Airbase", + "latitude_deg": "31.063499", + "longitude_deg": "16.594999", + "elevation_ft": "267", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-SR", + "municipality": "Sirt", + "scheduled_service": "yes", + "gps_code": "HLGD", + "iata_code": "SRX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ghardabiya_Airbase", + "keywords": "Gardabiya, Sirte" + }, + { + "id": "3220", + "ident": "HLGL", + "type": "small_airport", + "name": "Warehouse 59e Airport", + "latitude_deg": "28.638500213623047", + "longitude_deg": "21.437999725341797", + "elevation_ft": "325", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-WA", + "scheduled_service": "no", + "gps_code": "HLGL" + }, + { + "id": "3221", + "ident": "HLGT", + "type": "medium_airport", + "name": "Ghat Airport", + "latitude_deg": "25.1455993652", + "longitude_deg": "10.142600059500001", + "elevation_ft": "2296", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-GT", + "municipality": "Ghat", + "scheduled_service": "yes", + "gps_code": "HLGT", + "iata_code": "GHT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ghat_Airport" + }, + { + "id": "3222", + "ident": "HLKF", + "type": "medium_airport", + "name": "Kufra Airport", + "latitude_deg": "24.178699493408203", + "longitude_deg": "23.31399917602539", + "elevation_ft": "1367", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-KF", + "municipality": "Kufra", + "scheduled_service": "yes", + "gps_code": "HLKF", + "iata_code": "AKF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kufra_Airport" + }, + { + "id": "3223", + "ident": "HLLB", + "type": "medium_airport", + "name": "Benina International Airport", + "latitude_deg": "32.096802", + "longitude_deg": "20.269501", + "elevation_ft": "433", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-BA", + "municipality": "Benina", + "scheduled_service": "yes", + "gps_code": "HLLB", + "iata_code": "BEN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Benina_International_Airport", + "keywords": "Benghazi, Soluch Airfield" + }, + { + "id": "3224", + "ident": "HLLM", + "type": "large_airport", + "name": "Mitiga International Airport", + "latitude_deg": "32.89177", + "longitude_deg": "13.287878", + "elevation_ft": "36", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-TB", + "municipality": "Tripoli", + "scheduled_service": "yes", + "gps_code": "HLLM", + "iata_code": "MJI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mitiga_International_Airport", + "keywords": "Mellaha Army Airfield, Okba Ben Nafi Air Base, Wheelus Air Force Base" + }, + { + "id": "3225", + "ident": "HLLQ", + "type": "medium_airport", + "name": "Al Abraq International Airport", + "latitude_deg": "32.7887", + "longitude_deg": "21.9643", + "elevation_ft": "2157", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-JA", + "municipality": "Al Albraq", + "scheduled_service": "yes", + "gps_code": "HLLQ", + "iata_code": "LAQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Al_Abraq_International_Airport", + "keywords": "Al Bayda, Beida" + }, + { + "id": "3226", + "ident": "HLLS", + "type": "medium_airport", + "name": "Sabha Airport", + "latitude_deg": "26.992452", + "longitude_deg": "14.466162", + "elevation_ft": "1427", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-SB", + "municipality": "Sabha", + "scheduled_service": "yes", + "gps_code": "HLLS", + "iata_code": "SEB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sabha_Airport", + "keywords": "Sebha" + }, + { + "id": "3227", + "ident": "HLLT", + "type": "closed", + "name": "Tripoli International Airport", + "latitude_deg": "32.663502", + "longitude_deg": "13.159", + "elevation_ft": "263", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-TB", + "municipality": "Tripoli", + "scheduled_service": "no", + "gps_code": "HLLT", + "iata_code": "TIP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tripoli_International_Airport", + "keywords": "Tripoli-Castel Benito Airport, RAF Castel Benito, RAF Idris" + }, + { + "id": "3228", + "ident": "HLMB", + "type": "medium_airport", + "name": "Marsa al Brega Airport", + "latitude_deg": "30.378099", + "longitude_deg": "19.576401", + "elevation_ft": "50", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-WA", + "municipality": "Marsa al Brega", + "scheduled_service": "no", + "gps_code": "HLMB", + "iata_code": "LMQ" + }, + { + "id": "3229", + "ident": "HLNF", + "type": "small_airport", + "name": "Ras Lanuf Airport", + "latitude_deg": "30.5", + "longitude_deg": "18.527201", + "elevation_ft": "42", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-SR", + "municipality": "Ras Lanuf", + "scheduled_service": "no", + "gps_code": "HLNF", + "keywords": "Ras Lanuf Oil Airport" + }, + { + "id": "31602", + "ident": "HLNR", + "type": "small_airport", + "name": "Nafurah 1 Airport", + "latitude_deg": "29.2132", + "longitude_deg": "21.5924", + "elevation_ft": "125", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-WA", + "municipality": "Nafurah 1", + "scheduled_service": "no", + "gps_code": "HLNR", + "iata_code": "NFR" + }, + { + "id": "3230", + "ident": "HLON", + "type": "small_airport", + "name": "Hon Airport", + "latitude_deg": "29.1101", + "longitude_deg": "15.9656", + "elevation_ft": "919", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-JU", + "scheduled_service": "no", + "gps_code": "HLON", + "iata_code": "HUQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hun_Airport" + }, + { + "id": "3231", + "ident": "HLRA", + "type": "small_airport", + "name": "Dahra Airport", + "latitude_deg": "29.47117", + "longitude_deg": "17.929354", + "elevation_ft": "1050", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-SR", + "municipality": "Dahra", + "scheduled_service": "no", + "gps_code": "HLRA" + }, + { + "id": "31604", + "ident": "HLSA", + "type": "small_airport", + "name": "Sarir (C-4) Airport", + "latitude_deg": "27.662399291992188", + "longitude_deg": "22.50860023498535", + "elevation_ft": "400", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-WA", + "municipality": "Sarir", + "scheduled_service": "no", + "gps_code": "HLSA" + }, + { + "id": "29859", + "ident": "HLSD", + "type": "closed", + "name": "Former Sidra Airport", + "latitude_deg": "30.632622", + "longitude_deg": "18.322921", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-SR", + "municipality": "Sidra", + "scheduled_service": "no", + "gps_code": "HLSD", + "keywords": "Essider" + }, + { + "id": "3232", + "ident": "HLTD", + "type": "medium_airport", + "name": "Ghadames East Airport", + "latitude_deg": "30.15169906616211", + "longitude_deg": "9.715310096740723", + "elevation_ft": "1122", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-NL", + "municipality": "Ghadames", + "scheduled_service": "yes", + "gps_code": "HLTD", + "iata_code": "LTD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ghadames_Airport" + }, + { + "id": "32467", + "ident": "HLTQ", + "type": "small_airport", + "name": "Tobruk International Airport", + "latitude_deg": "31.861", + "longitude_deg": "23.907", + "elevation_ft": "519", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-BU", + "municipality": "Adam", + "scheduled_service": "yes", + "gps_code": "HLTQ", + "iata_code": "TOB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tobruk_Airport", + "keywords": "Gamal Abdel Nasser" + }, + { + "id": "31607", + "ident": "HLWA", + "type": "small_airport", + "name": "Warehouse 59A Airport", + "latitude_deg": "28.322399139404297", + "longitude_deg": "19.93000030517578", + "elevation_ft": "488", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-WA", + "municipality": "Warehouse 59A", + "scheduled_service": "no", + "gps_code": "HLWA" + }, + { + "id": "3233", + "ident": "HLZA", + "type": "small_airport", + "name": "Zella 74 Airport", + "latitude_deg": "28.587462", + "longitude_deg": "17.298746", + "elevation_ft": "1085", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-JU", + "municipality": "Zillah", + "scheduled_service": "no", + "gps_code": "HLZA" + }, + { + "id": "31608", + "ident": "HLZG", + "type": "small_airport", + "name": "Oxy A 103 Airport", + "latitude_deg": "29.00629997253418", + "longitude_deg": "20.786100387573242", + "elevation_ft": "318", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-WA", + "municipality": "Oxy A 103", + "scheduled_service": "no", + "gps_code": "HLZG" + }, + { + "id": "323222", + "ident": "HLZN", + "type": "small_airport", + "name": "Alzintan Airport", + "latitude_deg": "31.774878", + "longitude_deg": "12.25006", + "elevation_ft": "2080", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-JG", + "municipality": "Zintan", + "scheduled_service": "no", + "gps_code": "HLZN", + "iata_code": "ZIS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alzintan_Airport" + }, + { + "id": "4588", + "ident": "HLZU", + "type": "small_airport", + "name": "Zuetina Airport", + "latitude_deg": "30.870199", + "longitude_deg": "20.0755", + "elevation_ft": "16", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-WA", + "municipality": "Ajdabiya", + "scheduled_service": "no", + "gps_code": "HLZU", + "keywords": "Az-Zuwaytinah, Zueitina" + }, + { + "id": "3234", + "ident": "HLZW", + "type": "small_airport", + "name": "Zuwarah International Airport", + "latitude_deg": "32.952301", + "longitude_deg": "12.0155", + "elevation_ft": "9", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-NQ", + "municipality": "Zuwarah", + "scheduled_service": "no", + "gps_code": "HLZW", + "iata_code": "WAX", + "local_code": "HL75", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zuwarah_Airport" + }, + { + "id": "42154", + "ident": "HN-0001", + "type": "small_airport", + "name": "Agropecuaria Lepaguare Airport", + "latitude_deg": "14.596943855285645", + "longitude_deg": "-86.50749969482422", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-OL", + "municipality": "La Lima", + "scheduled_service": "no" + }, + { + "id": "42155", + "ident": "HN-0002", + "type": "small_airport", + "name": "Bonito Oriental Airport", + "latitude_deg": "15.745400428771973", + "longitude_deg": "-85.722900390625", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CL", + "municipality": "Corocito", + "scheduled_service": "no" + }, + { + "id": "42156", + "ident": "HN-0003", + "type": "small_airport", + "name": "Ministerios Cristo Te Quiere Airport", + "latitude_deg": "14.087192", + "longitude_deg": "-86.649427", + "elevation_ft": "852", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-EP", + "municipality": "Danli", + "scheduled_service": "no", + "gps_code": "MHCQ" + }, + { + "id": "42157", + "ident": "HN-0004", + "type": "closed", + "name": "El Pentágono Airport", + "latitude_deg": "15.583333015442", + "longitude_deg": "-87.393058776855", + "elevation_ft": "93", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-AT", + "municipality": "El Retiro", + "scheduled_service": "no", + "gps_code": "MHEP" + }, + { + "id": "42158", + "ident": "HN-0005", + "type": "heliport", + "name": "Ficohsa Heliport", + "latitude_deg": "15.508610725402832", + "longitude_deg": "-88.01944732666016", + "elevation_ft": "247", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CR", + "municipality": "San Pedro Sula", + "scheduled_service": "no" + }, + { + "id": "42159", + "ident": "HN-0006", + "type": "small_airport", + "name": "Yodeco Airport", + "latitude_deg": "15.183333396911621", + "longitude_deg": "-87.06944274902344", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-YO", + "municipality": "El Caulote", + "scheduled_service": "no" + }, + { + "id": "338054", + "ident": "HN-0007", + "type": "closed", + "name": "Savannah Bight Airport", + "latitude_deg": "16.4943", + "longitude_deg": "-85.865868", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-IB", + "municipality": "Isla de Guanaja", + "scheduled_service": "no" + }, + { + "id": "42024", + "ident": "HN-MIG", + "type": "small_airport", + "name": "Higuerito Central Airport", + "latitude_deg": "15.188332557678223", + "longitude_deg": "-87.93861389160156", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CR", + "municipality": "Higuerito", + "scheduled_service": "no" + }, + { + "id": "42025", + "ident": "HN-MOP", + "type": "small_airport", + "name": "Los Pollos Airport", + "latitude_deg": "13.0600004196167", + "longitude_deg": "-86.9574966430664", + "elevation_ft": "126", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CH", + "municipality": "El Limón", + "scheduled_service": "no" + }, + { + "id": "42026", + "ident": "HN-MOR", + "type": "small_airport", + "name": "Mocoron Airport", + "latitude_deg": "15.02970027923584", + "longitude_deg": "-84.279296875", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Mocorón", + "scheduled_service": "no" + }, + { + "id": "42027", + "ident": "HN-MSF", + "type": "small_airport", + "name": "San Francisco De La Paz Airport", + "latitude_deg": "14.876943588256836", + "longitude_deg": "-86.19139099121094", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-OL", + "municipality": "San Francisco de La Paz", + "scheduled_service": "no" + }, + { + "id": "42028", + "ident": "HN-MST", + "type": "small_airport", + "name": "El Tesoro Airport", + "latitude_deg": "13.239167213439941", + "longitude_deg": "-87.00555419921875", + "elevation_ft": "1318", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CH", + "municipality": "Aguacatal", + "scheduled_service": "no" + }, + { + "id": "42029", + "ident": "HN-MUG", + "type": "small_airport", + "name": "Erandique Airport", + "latitude_deg": "14.235833", + "longitude_deg": "-88.437225", + "elevation_ft": "4199", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-LE", + "municipality": "Erandique", + "scheduled_service": "no", + "gps_code": "MHGU", + "iata_code": "EDQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Erandique_Airport", + "keywords": "Gualguire Airport" + }, + { + "id": "17653", + "ident": "HNE", + "type": "closed", + "name": "Tahneta Pass Airport", + "latitude_deg": "61.90059", + "longitude_deg": "-147.309022", + "elevation_ft": "2960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tahneta Pass Lodge", + "scheduled_service": "no", + "keywords": "PAHE, HNE" + }, + { + "id": "313231", + "ident": "HOO", + "type": "small_airport", + "name": "Nhon Co Airfield", + "latitude_deg": "11.9787", + "longitude_deg": "107.5638", + "elevation_ft": "2270", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-CH", + "municipality": "Đăk R'Lấp", + "scheduled_service": "no", + "iata_code": "HOO" + }, + { + "id": "322364", + "ident": "HOPA", + "type": "small_airport", + "name": "Hoppe Airspray", + "latitude_deg": "42.257036", + "longitude_deg": "-92.835475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Beaman", + "scheduled_service": "no", + "local_code": "HOPA" + }, + { + "id": "316068", + "ident": "HR-0001", + "type": "small_airport", + "name": "Daruvar", + "latitude_deg": "45.585", + "longitude_deg": "17.211389", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-07", + "scheduled_service": "no", + "gps_code": "LDVR" + }, + { + "id": "317595", + "ident": "HR-0002", + "type": "closed", + "name": "KORČULA Vela Luka Seaplane Terminal", + "latitude_deg": "42.959075", + "longitude_deg": "16.710156", + "elevation_ft": "-1", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-19", + "municipality": "Vela Luka", + "scheduled_service": "no", + "gps_code": "LDSL", + "keywords": "Korçula,ECA" + }, + { + "id": "320255", + "ident": "HR-0003", + "type": "closed", + "name": "Rijeka Seaplane Terminal", + "latitude_deg": "45.326054", + "longitude_deg": "14.438421", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-08", + "municipality": "Rijeka", + "scheduled_service": "no", + "gps_code": "LDRP" + }, + { + "id": "320476", + "ident": "HR-0004", + "type": "small_airport", + "name": "Nova Rača Airfield", + "latitude_deg": "45.78696", + "longitude_deg": "16.96387", + "elevation_ft": "426", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-07", + "municipality": "Nova Rača", + "scheduled_service": "no", + "home_link": "http://www.aeroklub.nova-raca.hr/zracnopristaniste.html" + }, + { + "id": "320945", + "ident": "HR-0005", + "type": "small_airport", + "name": "Gradac Airstrip", + "latitude_deg": "45.310897", + "longitude_deg": "17.821682", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-11", + "municipality": "Pleternica", + "scheduled_service": "no" + }, + { + "id": "327858", + "ident": "HR-0006", + "type": "small_airport", + "name": "Pisarovina Airfield", + "latitude_deg": "45.618117", + "longitude_deg": "15.79348", + "elevation_ft": "377", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-01", + "municipality": "Bratina", + "scheduled_service": "no", + "gps_code": "LDZR", + "home_link": "https://pan-avia.com/airport/", + "keywords": "Panavia" + }, + { + "id": "329520", + "ident": "HR-0007", + "type": "closed", + "name": "Lastovo/Ubli Seaplane Terminal", + "latitude_deg": "42.745734", + "longitude_deg": "16.82386", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-19", + "municipality": "Ubli", + "scheduled_service": "no", + "gps_code": "LDSU" + }, + { + "id": "329521", + "ident": "HR-0008", + "type": "closed", + "name": "Mali-Losinj Seaplane Terminal", + "latitude_deg": "44.537284", + "longitude_deg": "14.456934", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-08", + "scheduled_service": "no", + "gps_code": "LDLM" + }, + { + "id": "329915", + "ident": "HR-0009", + "type": "small_airport", + "name": "Lila Airstrip", + "latitude_deg": "45.553", + "longitude_deg": "18.110166", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-14", + "scheduled_service": "no" + }, + { + "id": "330932", + "ident": "HR-0010", + "type": "small_airport", + "name": "Mirkovac Airstrip", + "latitude_deg": "45.7310129", + "longitude_deg": "18.7884716", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-14", + "scheduled_service": "no" + }, + { + "id": "337113", + "ident": "HR-0011", + "type": "closed", + "name": "Heliport Palagruža island", + "latitude_deg": "42.393077", + "longitude_deg": "16.257534", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-17", + "municipality": "Comisa", + "scheduled_service": "no" + }, + { + "id": "340336", + "ident": "HR-0012", + "type": "heliport", + "name": "Dubrovnik General Hospital Helipad", + "latitude_deg": "42.646146", + "longitude_deg": "18.07784", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-19", + "municipality": "Dubrovnik", + "scheduled_service": "no" + }, + { + "id": "340337", + "ident": "HR-0013", + "type": "heliport", + "name": "Selca/Novo Selo Heliport", + "latitude_deg": "43.306488", + "longitude_deg": "16.850538", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-17", + "municipality": "Novo Selo", + "scheduled_service": "no" + }, + { + "id": "340338", + "ident": "HR-0014", + "type": "heliport", + "name": "Osejava Heliport", + "latitude_deg": "43.283997", + "longitude_deg": "17.029197", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-17", + "municipality": "Makarska", + "scheduled_service": "no" + }, + { + "id": "340365", + "ident": "HR-0015", + "type": "closed", + "name": "Vis Airfield", + "latitude_deg": "43.034992", + "longitude_deg": "16.187377", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-17", + "municipality": "Plisko Polje", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#Vis_Airfield" + }, + { + "id": "345457", + "ident": "HR-0016", + "type": "small_airport", + "name": "Letjelište \"Marina\"", + "latitude_deg": "46.32439", + "longitude_deg": "16.60041", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-20", + "scheduled_service": "no" + }, + { + "id": "345855", + "ident": "HR-0017", + "type": "closed", + "name": "Željava Air Base", + "latitude_deg": "44.84589", + "longitude_deg": "15.774307", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-09", + "scheduled_service": "no" + }, + { + "id": "346618", + "ident": "HR-0018", + "type": "small_airport", + "name": "Nedelišće Airstrip", + "latitude_deg": "46.36444", + "longitude_deg": "16.3865", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-20", + "scheduled_service": "no" + }, + { + "id": "322017", + "ident": "HR-0019", + "type": "closed", + "name": "Novalja Seaplane Terminal", + "latitude_deg": "44.5527", + "longitude_deg": "14.8838", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-09", + "municipality": "Novalja", + "scheduled_service": "no", + "keywords": "LDZN" + }, + { + "id": "321953", + "ident": "HR-0020", + "type": "closed", + "name": "Hvar/Jelsa Seaplane Base", + "latitude_deg": "43.172778", + "longitude_deg": "16.700172", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-17", + "municipality": "Hvar", + "scheduled_service": "no", + "keywords": "LDSJ" + }, + { + "id": "328982", + "ident": "HR-0021", + "type": "closed", + "name": "Split Seaplane City", + "latitude_deg": "43.499875", + "longitude_deg": "16.438172", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-17", + "municipality": "Split", + "scheduled_service": "no", + "keywords": "LDST" + }, + { + "id": "321536", + "ident": "HR-0022", + "type": "closed", + "name": "Split-Resnik Seaplane Base", + "latitude_deg": "43.529313", + "longitude_deg": "16.301927", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-17", + "municipality": "Split", + "scheduled_service": "no", + "keywords": "LDSR" + }, + { + "id": "313249", + "ident": "HRC", + "type": "small_airport", + "name": "Sary Su Airport", + "latitude_deg": "48.3974", + "longitude_deg": "70.1915", + "elevation_ft": "1307", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ULY", + "municipality": "Zhayrem", + "scheduled_service": "no", + "iata_code": "HRC", + "keywords": "Zhairem, Жайрем" + }, + { + "id": "313252", + "ident": "HRN", + "type": "heliport", + "name": "Heron Island Helipad", + "latitude_deg": "-23.441765", + "longitude_deg": "151.911416", + "elevation_ft": "8", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Heron Island", + "scheduled_service": "no", + "gps_code": "YHRN", + "local_code": "YHRN", + "keywords": "HRN" + }, + { + "id": "3236", + "ident": "HRYG", + "type": "medium_airport", + "name": "Gisenyi Airport", + "latitude_deg": "-1.6771999597549438", + "longitude_deg": "29.258899688720703", + "elevation_ft": "5082", + "continent": "AF", + "iso_country": "RW", + "iso_region": "RW-04", + "municipality": "Gisenyi", + "scheduled_service": "no", + "gps_code": "HRYG", + "iata_code": "GYI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grayson_County_Airport" + }, + { + "id": "30801", + "ident": "HRYI", + "type": "small_airport", + "name": "Butare Airport", + "latitude_deg": "-2.595829963684082", + "longitude_deg": "29.7367000579834", + "elevation_ft": "5801", + "continent": "AF", + "iso_country": "RW", + "iso_region": "RW-05", + "municipality": "Butare", + "scheduled_service": "no", + "gps_code": "HRYI", + "iata_code": "BTQ" + }, + { + "id": "31612", + "ident": "HRYN", + "type": "small_airport", + "name": "Nemba Airport", + "latitude_deg": "-2.33299994469", + "longitude_deg": "30.2000007629", + "elevation_ft": "4905", + "continent": "AF", + "iso_country": "RW", + "iso_region": "RW-02", + "municipality": "Nemba", + "scheduled_service": "no", + "gps_code": "HRYN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nemba_Airport" + }, + { + "id": "31613", + "ident": "HRYO", + "type": "small_airport", + "name": "Gabiro Airport", + "latitude_deg": "-1.5499999523162842", + "longitude_deg": "30.382999420166016", + "elevation_ft": "4806", + "continent": "AF", + "iso_country": "RW", + "iso_region": "RW-02", + "municipality": "Gabiro", + "scheduled_service": "no", + "gps_code": "HRYO" + }, + { + "id": "3237", + "ident": "HRYR", + "type": "large_airport", + "name": "Kigali International Airport", + "latitude_deg": "-1.96863", + "longitude_deg": "30.1395", + "elevation_ft": "4859", + "continent": "AF", + "iso_country": "RW", + "iso_region": "RW-01", + "municipality": "Kigali", + "scheduled_service": "yes", + "gps_code": "HRYR", + "iata_code": "KGL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kigali_International_Airport", + "keywords": "Gregoire Kayibanda International Airport, Kanombe International Airport" + }, + { + "id": "32208", + "ident": "HRYU", + "type": "small_airport", + "name": "Ruhengeri Airport", + "latitude_deg": "-1.496873", + "longitude_deg": "29.631343", + "elevation_ft": "6102", + "continent": "AF", + "iso_country": "RW", + "iso_region": "RW-03", + "municipality": "Ruhengeri", + "scheduled_service": "no", + "gps_code": "HRYU", + "iata_code": "RHG" + }, + { + "id": "3238", + "ident": "HRZA", + "type": "medium_airport", + "name": "Kamembe Airport", + "latitude_deg": "-2.462239980697632", + "longitude_deg": "28.907899856567383", + "elevation_ft": "5192", + "continent": "AF", + "iso_country": "RW", + "iso_region": "RW-04", + "municipality": "Kamembe", + "scheduled_service": "yes", + "gps_code": "HRZA", + "iata_code": "KME", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kamembe_Airport" + }, + { + "id": "43976", + "ident": "HSAK", + "type": "small_airport", + "name": "Akobo Airport", + "latitude_deg": "7.7779", + "longitude_deg": "33.0027", + "elevation_ft": "1352", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Akobo", + "scheduled_service": "no", + "gps_code": "HJAK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Akobo_Airport", + "keywords": "HSAK, Ahobo" + }, + { + "id": "30654", + "ident": "HSAT", + "type": "small_airport", + "name": "Atbara Airport", + "latitude_deg": "17.710344314575195", + "longitude_deg": "34.0570182800293", + "elevation_ft": "1181", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-04", + "municipality": "Atbara", + "scheduled_service": "yes", + "gps_code": "HSAT", + "iata_code": "ATB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atbara_Airport" + }, + { + "id": "31614", + "ident": "HSAW", + "type": "small_airport", + "name": "Aweil Airport", + "latitude_deg": "8.791383", + "longitude_deg": "27.360151", + "elevation_ft": "1394", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-15", + "municipality": "Aweil", + "scheduled_service": "no", + "gps_code": "HJAW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aweil_Airport", + "keywords": "HSAW" + }, + { + "id": "31615", + "ident": "HSBR", + "type": "small_airport", + "name": "Bor Airport", + "latitude_deg": "6.191942", + "longitude_deg": "31.600408", + "elevation_ft": "1394", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Bor", + "scheduled_service": "no", + "gps_code": "HJBR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bor_Airport_(Sudan)", + "keywords": "HSBR" + }, + { + "id": "31616", + "ident": "HSBT", + "type": "small_airport", + "name": "Bentiu Airport", + "latitude_deg": "9.308488", + "longitude_deg": "29.787316", + "elevation_ft": "2000", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-22", + "municipality": "Rubkona", + "scheduled_service": "no", + "gps_code": "HJBT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bentu_Airport", + "keywords": "HSBT" + }, + { + "id": "31617", + "ident": "HSCG", + "type": "small_airport", + "name": "Carthago Airport", + "latitude_deg": "18.751389", + "longitude_deg": "36.991667", + "elevation_ft": "3230", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-26", + "municipality": "Carthago", + "scheduled_service": "no", + "gps_code": "HSCG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carthago_Airport" + }, + { + "id": "30980", + "ident": "HSDB", + "type": "small_airport", + "name": "Al Dabbah Airport", + "latitude_deg": "18.0146", + "longitude_deg": "30.9595", + "elevation_ft": "843", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-01", + "municipality": "Al Dabbah", + "scheduled_service": "no", + "gps_code": "HSDB", + "iata_code": "EDB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Al_Dabbah_Airport", + "keywords": "El Debba" + }, + { + "id": "31618", + "ident": "HSDL", + "type": "small_airport", + "name": "Dilling Airport", + "latitude_deg": "11.990599632263184", + "longitude_deg": "29.673200607299805", + "elevation_ft": "2206", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-13", + "municipality": "Dilling", + "scheduled_service": "no", + "gps_code": "HSDL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dilling_Airport" + }, + { + "id": "3239", + "ident": "HSDN", + "type": "medium_airport", + "name": "Dongola Airport", + "latitude_deg": "19.153900146499996", + "longitude_deg": "30.430099487299998", + "elevation_ft": "772", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-01", + "municipality": "Dongola", + "scheduled_service": "yes", + "gps_code": "HSDN", + "iata_code": "DOG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dongola_Airport" + }, + { + "id": "3240", + "ident": "HSDZ", + "type": "small_airport", + "name": "Damazin Airport", + "latitude_deg": "11.7859", + "longitude_deg": "34.3367", + "elevation_ft": "1582", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-24", + "municipality": "Ad Damazin", + "scheduled_service": "no", + "gps_code": "HSDZ", + "iata_code": "RSS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Damazin_Airport" + }, + { + "id": "300862", + "ident": "HSFA", + "type": "medium_airport", + "name": "Paloich Airport", + "latitude_deg": "10.529167", + "longitude_deg": "32.500556", + "elevation_ft": "1290", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-23", + "municipality": "Higleig", + "scheduled_service": "no", + "gps_code": "HJPH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paloich_Airport", + "keywords": "HSFA, Palouge, DPOC" + }, + { + "id": "3241", + "ident": "HSFS", + "type": "medium_airport", + "name": "El Fasher Airport", + "latitude_deg": "13.614899635314941", + "longitude_deg": "25.324600219726562", + "elevation_ft": "2393", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-02", + "municipality": "El Fasher", + "scheduled_service": "yes", + "gps_code": "HSFS", + "iata_code": "ELF", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Fasher_Airport", + "keywords": "El Fashir Airport" + }, + { + "id": "31553", + "ident": "HSGF", + "type": "closed", + "name": "Azaza Airport", + "latitude_deg": "14.121428", + "longitude_deg": "35.311861", + "elevation_ft": "1640", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-06", + "municipality": "Al Qadarif", + "scheduled_service": "no", + "gps_code": "HSGF", + "iata_code": "GSU" + }, + { + "id": "30932", + "ident": "HSGG", + "type": "small_airport", + "name": "Galegu Airport", + "latitude_deg": "12.532999992370605", + "longitude_deg": "35.06700134277344", + "elevation_ft": "1640", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-25", + "municipality": "Dinder", + "scheduled_service": "no", + "gps_code": "HSGG", + "iata_code": "DNX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Galegu_Airport" + }, + { + "id": "30990", + "ident": "HSGN", + "type": "small_airport", + "name": "Geneina Airport", + "latitude_deg": "13.481882", + "longitude_deg": "22.467119", + "elevation_ft": "2651", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-12", + "municipality": "Geneina", + "scheduled_service": "no", + "gps_code": "HSGN", + "iata_code": "EGN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Geneina_Airport" + }, + { + "id": "31619", + "ident": "HSGO", + "type": "small_airport", + "name": "Gogrial Airport", + "latitude_deg": "18.867000579833984", + "longitude_deg": "28.117000579833984", + "elevation_ft": "1640", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-01", + "municipality": "Gogrial", + "scheduled_service": "no", + "gps_code": "HSGO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gogrial_Airport" + }, + { + "id": "308038", + "ident": "HSHG", + "type": "small_airport", + "name": "Heglig Airport", + "latitude_deg": "9.994933", + "longitude_deg": "29.397718", + "elevation_ft": "1325", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-13", + "municipality": "Heglig Oilfield", + "scheduled_service": "no", + "gps_code": "HSHG", + "iata_code": "HEG" + }, + { + "id": "319812", + "ident": "HSJ", + "type": "small_airport", + "name": "Zhengzhou Shangjie Airport", + "latitude_deg": "34.842153", + "longitude_deg": "113.273983", + "elevation_ft": "450", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-41", + "municipality": "Zhengzhou", + "scheduled_service": "no", + "iata_code": "HSJ" + }, + { + "id": "3242", + "ident": "HSKA", + "type": "medium_airport", + "name": "Kassala Airport", + "latitude_deg": "15.387499809265137", + "longitude_deg": "36.328800201416016", + "elevation_ft": "1671", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-05", + "municipality": "Kassala", + "scheduled_service": "yes", + "gps_code": "HSKA", + "iata_code": "KSL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kassala_Airport" + }, + { + "id": "31518", + "ident": "HSKG", + "type": "small_airport", + "name": "Khashm El Girba Airport", + "latitude_deg": "14.925000190734863", + "longitude_deg": "35.87799835205078", + "elevation_ft": "1560", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-06", + "municipality": "Khashm El Girba", + "scheduled_service": "no", + "gps_code": "HSKG", + "iata_code": "GBU" + }, + { + "id": "31779", + "ident": "HSKI", + "type": "closed", + "name": "Kosti Airport", + "latitude_deg": "13.183", + "longitude_deg": "32.733002", + "elevation_ft": "1289", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-08", + "municipality": "Rabak", + "scheduled_service": "no", + "gps_code": "HSKI", + "iata_code": "KST" + }, + { + "id": "31620", + "ident": "HSKJ", + "type": "small_airport", + "name": "Kajo Keji Airport", + "latitude_deg": "3.85754", + "longitude_deg": "31.65652", + "elevation_ft": "2500", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-17", + "municipality": "Kajo Keji", + "scheduled_service": "no", + "gps_code": "HJKK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kago_Kaju_Airport", + "keywords": "HSKJ, Kago Kaju" + }, + { + "id": "351449", + "ident": "HSKN", + "type": "small_airport", + "name": "Kenana Airport", + "latitude_deg": "13.05343", + "longitude_deg": "32.90732", + "elevation_ft": "1291", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-08", + "municipality": "Sifeiya", + "scheduled_service": "no", + "gps_code": "HSKN" + }, + { + "id": "31621", + "ident": "HSKP", + "type": "small_airport", + "name": "Kapoeta Airport", + "latitude_deg": "4.780812", + "longitude_deg": "33.586278", + "elevation_ft": "2220", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-19", + "municipality": "Kapoeta", + "scheduled_service": "no", + "gps_code": "HJKP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kapoeta_Airport", + "keywords": "HSKP" + }, + { + "id": "3243", + "ident": "HSLI", + "type": "small_airport", + "name": "Kadugli Airport", + "latitude_deg": "11.137999534600002", + "longitude_deg": "29.7010993958", + "elevation_ft": "1848", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-13", + "municipality": "Kadugli", + "scheduled_service": "no", + "gps_code": "HSLI", + "iata_code": "KDX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kadugli_Airport" + }, + { + "id": "31622", + "ident": "HSMD", + "type": "small_airport", + "name": "Marida Airport", + "latitude_deg": "4.902851", + "longitude_deg": "29.443263", + "elevation_ft": "1901", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-16", + "municipality": "Marida", + "scheduled_service": "no", + "gps_code": "HJMD", + "keywords": "HSMD" + }, + { + "id": "31623", + "ident": "HSMK", + "type": "small_airport", + "name": "Rumbek Airport", + "latitude_deg": "6.831074", + "longitude_deg": "29.669073", + "elevation_ft": "1378", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-18", + "municipality": "Rumbek", + "scheduled_service": "yes", + "gps_code": "HJRB", + "iata_code": "RBX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rumbek_Airport", + "keywords": "HSMK" + }, + { + "id": "300673", + "ident": "HSMN", + "type": "medium_airport", + "name": "Merowe Airport", + "latitude_deg": "18.443333", + "longitude_deg": "31.843333", + "elevation_ft": "897", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-01", + "municipality": "Merowe", + "scheduled_service": "no", + "gps_code": "HSMN", + "iata_code": "MWE", + "keywords": "Merowe International" + }, + { + "id": "31978", + "ident": "HSMR", + "type": "small_airport", + "name": "Merowe Town Airport", + "latitude_deg": "18.455", + "longitude_deg": "31.8185", + "elevation_ft": "864", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-01", + "municipality": "Merowe", + "scheduled_service": "no", + "gps_code": "HSMR" + }, + { + "id": "31625", + "ident": "HSND", + "type": "closed", + "name": "Shendi Airport", + "latitude_deg": "16.67426", + "longitude_deg": "33.44956", + "elevation_ft": "1181", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-04", + "municipality": "Shendi", + "scheduled_service": "no", + "gps_code": "HSND" + }, + { + "id": "32054", + "ident": "HSNH", + "type": "small_airport", + "name": "En Nahud Airport", + "latitude_deg": "12.666999816894531", + "longitude_deg": "28.33300018310547", + "elevation_ft": "1955", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-09", + "municipality": "En Nahud", + "scheduled_service": "no", + "gps_code": "HSNH", + "iata_code": "NUD", + "wikipedia_link": "https://en.wikipedia.org/wiki/En_Nahud_Airport" + }, + { + "id": "31626", + "ident": "HSNM", + "type": "small_airport", + "name": "Nimule Airport", + "latitude_deg": "3.597659", + "longitude_deg": "32.090278", + "elevation_ft": "2059", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-19", + "municipality": "Nimule", + "scheduled_service": "no", + "gps_code": "HJNM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nimule_Airport", + "keywords": "HSNM" + }, + { + "id": "3244", + "ident": "HSNN", + "type": "medium_airport", + "name": "Nyala Airport", + "latitude_deg": "12.0535", + "longitude_deg": "24.9562", + "elevation_ft": "2106", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-11", + "municipality": "Nyala", + "scheduled_service": "yes", + "gps_code": "HSNN", + "iata_code": "UYL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nyala_Airport" + }, + { + "id": "32027", + "ident": "HSNW", + "type": "small_airport", + "name": "New Halfa Airport", + "latitude_deg": "15.3556", + "longitude_deg": "35.727798", + "elevation_ft": "1480", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-05", + "municipality": "New Halfa", + "scheduled_service": "no", + "gps_code": "HSNW", + "iata_code": "NHF", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Halfa_Airport" + }, + { + "id": "3245", + "ident": "HSOB", + "type": "medium_airport", + "name": "El Obeid Airport", + "latitude_deg": "13.153200149536133", + "longitude_deg": "30.23270034790039", + "elevation_ft": "1927", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-09", + "municipality": "Al-Ubayyid", + "scheduled_service": "yes", + "gps_code": "HSOB", + "iata_code": "EBD", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Obeid_Airport" + }, + { + "id": "31627", + "ident": "HSPA", + "type": "small_airport", + "name": "Pochalla Airport", + "latitude_deg": "7.178563", + "longitude_deg": "34.097359", + "elevation_ft": "2000", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Pochalla", + "scheduled_service": "no", + "gps_code": "HJPO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pochalla_Airport", + "keywords": "HSPA, Pachella" + }, + { + "id": "299485", + "ident": "HSPI", + "type": "small_airport", + "name": "Pibor Airport", + "latitude_deg": "6.798561", + "longitude_deg": "33.125904", + "elevation_ft": "1377", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Pibor Post", + "scheduled_service": "no", + "gps_code": "HJPB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pibor_Airport", + "keywords": "HSPI" + }, + { + "id": "3246", + "ident": "HSPN", + "type": "medium_airport", + "name": "Port Sudan New International Airport", + "latitude_deg": "19.4335994720459", + "longitude_deg": "37.234100341796875", + "elevation_ft": "135", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-26", + "municipality": "Port Sudan", + "scheduled_service": "yes", + "gps_code": "HSPN", + "iata_code": "PZU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Sudan_New_International_Airport" + }, + { + "id": "31628", + "ident": "HSRJ", + "type": "small_airport", + "name": "Raga Airport", + "latitude_deg": "8.461110115050001", + "longitude_deg": "25.681100845299998", + "elevation_ft": "1788", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-14", + "municipality": "Raga", + "scheduled_service": "no", + "gps_code": "HSRJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Raga_Airport" + }, + { + "id": "299486", + "ident": "HSRN", + "type": "small_airport", + "name": "Renk Airport", + "latitude_deg": "11.644773", + "longitude_deg": "32.81045", + "elevation_ft": "1278", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-23", + "municipality": "Renk", + "scheduled_service": "no", + "gps_code": "HSRN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Renk_Airport", + "keywords": "Renk City" + }, + { + "id": "347295", + "ident": "HSSG", + "type": "medium_airport", + "name": "Sabera Geneina Airport", + "latitude_deg": "13.4774", + "longitude_deg": "22.53722", + "elevation_ft": "2633", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-12", + "municipality": "Geneina", + "scheduled_service": "no", + "gps_code": "HSSG" + }, + { + "id": "3249", + "ident": "HSSK", + "type": "large_airport", + "name": "Khartoum International Airport", + "latitude_deg": "15.5895", + "longitude_deg": "32.5532", + "elevation_ft": "1265", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-03", + "municipality": "Khartoum", + "scheduled_service": "yes", + "gps_code": "HSSK", + "iata_code": "KRT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khartoum_International_Airport", + "keywords": "HSSS" + }, + { + "id": "3248", + "ident": "HSSM", + "type": "medium_airport", + "name": "Malakal Airport", + "latitude_deg": "9.55897", + "longitude_deg": "31.652201", + "elevation_ft": "1291", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-23", + "municipality": "Malakal", + "scheduled_service": "yes", + "gps_code": "HJMK", + "iata_code": "MAK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Malakal_Airport", + "keywords": "HSSM" + }, + { + "id": "31629", + "ident": "HSSP", + "type": "small_airport", + "name": "Port Sudan Air Base", + "latitude_deg": "19.576499938964844", + "longitude_deg": "37.21590042114258", + "elevation_ft": "10", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-26", + "municipality": "Port Sudan", + "scheduled_service": "no", + "gps_code": "HSSP" + }, + { + "id": "32648", + "ident": "HSSW", + "type": "small_airport", + "name": "Wadi Halfa Airport", + "latitude_deg": "21.802698", + "longitude_deg": "31.521578", + "elevation_ft": "933", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-01", + "municipality": "Wadi Halfa", + "scheduled_service": "yes", + "gps_code": "HSSW", + "iata_code": "WHF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wadi_Halfa_Airport" + }, + { + "id": "31630", + "ident": "HSTO", + "type": "small_airport", + "name": "Tong Airport", + "latitude_deg": "7.267000198364258", + "longitude_deg": "28.982999801635742", + "elevation_ft": "1413", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-21", + "municipality": "Tong", + "scheduled_service": "no", + "gps_code": "HSTO" + }, + { + "id": "31631", + "ident": "HSTR", + "type": "small_airport", + "name": "Torit Airport", + "latitude_deg": "4.416769", + "longitude_deg": "32.575707", + "elevation_ft": "2050", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-19", + "municipality": "Torit", + "scheduled_service": "no", + "gps_code": "HJTR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Torit_Airport", + "keywords": "HSTR" + }, + { + "id": "31632", + "ident": "HSTU", + "type": "small_airport", + "name": "Tumbura Airport", + "latitude_deg": "5.602137", + "longitude_deg": "27.473212", + "elevation_ft": "2230", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-16", + "municipality": "Tumbura", + "scheduled_service": "no", + "gps_code": "HJTB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tumbura_Airport", + "keywords": "HSTU" + }, + { + "id": "318069", + "ident": "HSWD", + "type": "closed", + "name": "Wad Medani Airport", + "latitude_deg": "14.383451", + "longitude_deg": "33.526679", + "elevation_ft": "1350", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-07", + "municipality": "Wad Medani", + "scheduled_service": "no", + "gps_code": "HSWD", + "iata_code": "DNI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wad_Medani_Airport" + }, + { + "id": "30553", + "ident": "HSWW", + "type": "medium_airport", + "name": "Wau Airport", + "latitude_deg": "7.72583", + "longitude_deg": "27.975", + "elevation_ft": "1529", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-14", + "municipality": "Wau", + "scheduled_service": "yes", + "gps_code": "HJWW", + "iata_code": "WUU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wau_Airport" + }, + { + "id": "31633", + "ident": "HSYA", + "type": "small_airport", + "name": "Yambio Airport", + "latitude_deg": "4.567066", + "longitude_deg": "28.424106", + "elevation_ft": "2375", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-16", + "municipality": "Yambio", + "scheduled_service": "no", + "gps_code": "HJYB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yambio_Airport", + "keywords": "HSYA" + }, + { + "id": "31634", + "ident": "HSYE", + "type": "small_airport", + "name": "Yei Airport", + "latitude_deg": "4.128965", + "longitude_deg": "30.731817", + "elevation_ft": "2000", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-17", + "municipality": "Yei", + "scheduled_service": "no", + "gps_code": "HJYE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yei_Airport", + "keywords": "HSYE" + }, + { + "id": "31635", + "ident": "HSYL", + "type": "small_airport", + "name": "Yirol Airport", + "latitude_deg": "6.561571", + "longitude_deg": "30.509892", + "elevation_ft": "1424", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-18", + "municipality": "Yirol", + "scheduled_service": "no", + "gps_code": "HJYL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yirol_Airport", + "keywords": "HSYL" + }, + { + "id": "31636", + "ident": "HSZA", + "type": "small_airport", + "name": "Zalingei Airport", + "latitude_deg": "12.9437", + "longitude_deg": "23.5631", + "elevation_ft": "2953", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-12", + "municipality": "Zalingei", + "scheduled_service": "no", + "gps_code": "HSZA", + "iata_code": "ZLX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zalingei_Airport", + "keywords": "Zalengei Airport" + }, + { + "id": "42314", + "ident": "HT-0001", + "type": "closed", + "name": "Chancerelles Airport / Bowen Field", + "latitude_deg": "18.560801", + "longitude_deg": "-72.327797", + "elevation_ft": "74", + "continent": "NA", + "iso_country": "HT", + "iso_region": "HT-OU", + "municipality": "Port-au-Prince", + "scheduled_service": "no" + }, + { + "id": "46449", + "ident": "HT-0002", + "type": "small_airport", + "name": "Anse-a-Galets Airport", + "latitude_deg": "18.841212", + "longitude_deg": "-72.880232", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "HT", + "iso_region": "HT-OU", + "municipality": "Anse-a-Galets", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anse-%C3%A0-Galets_Airport", + "keywords": "MTAN" + }, + { + "id": "338039", + "ident": "HT-0003", + "type": "small_airport", + "name": "Hinche Airport", + "latitude_deg": "19.13874", + "longitude_deg": "-72.016", + "continent": "NA", + "iso_country": "HT", + "iso_region": "HT-CE", + "municipality": "Hinche", + "scheduled_service": "no" + }, + { + "id": "338040", + "ident": "HT-0004", + "type": "small_airport", + "name": "Île-à-Vache International Airport", + "latitude_deg": "18.07058", + "longitude_deg": "-73.59194", + "continent": "NA", + "iso_country": "HT", + "iso_region": "HT-SD", + "municipality": "Pradel", + "scheduled_service": "no" + }, + { + "id": "338041", + "ident": "HT-0005", + "type": "small_airport", + "name": "Anse-Rouge Airport", + "latitude_deg": "19.66631", + "longitude_deg": "-73.07227", + "continent": "NA", + "iso_country": "HT", + "iso_region": "HT-AR", + "municipality": "Anse-Rouge", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anse-Rouge_Airport", + "keywords": "MTAS" + }, + { + "id": "338042", + "ident": "HT-0006", + "type": "closed", + "name": "Belladère Airport", + "latitude_deg": "18.85264", + "longitude_deg": "-71.8171", + "continent": "NA", + "iso_country": "HT", + "iso_region": "HT-CE", + "municipality": "Belladère", + "scheduled_service": "no" + }, + { + "id": "338043", + "ident": "HT-0007", + "type": "small_airport", + "name": "Dame-Marie Airport", + "latitude_deg": "18.616667", + "longitude_deg": "-74.416667", + "continent": "NA", + "iso_country": "HT", + "iso_region": "HT-GA", + "municipality": "Dame-Marie", + "scheduled_service": "no", + "local_code": "DMM" + }, + { + "id": "338044", + "ident": "HT-0008", + "type": "small_airport", + "name": "Fond-des-Blancs Airport", + "latitude_deg": "18.286235", + "longitude_deg": "-73.111922", + "continent": "NA", + "iso_country": "HT", + "iso_region": "HT-SD", + "municipality": "Fond-des-Blancs", + "scheduled_service": "no" + }, + { + "id": "338045", + "ident": "HT-0009", + "type": "small_airport", + "name": "Môle-Saint-Nicolas Airport", + "latitude_deg": "19.834269", + "longitude_deg": "-73.358116", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "HT", + "iso_region": "HT-NO", + "municipality": "Môle-Saint-Nicolas", + "scheduled_service": "no" + }, + { + "id": "338046", + "ident": "HT-0010", + "type": "small_airport", + "name": "Ouanaminthe Airport", + "latitude_deg": "19.5375", + "longitude_deg": "-71.72861", + "continent": "NA", + "iso_country": "HT", + "iso_region": "HT-NE", + "municipality": "Ouanaminthe", + "scheduled_service": "no", + "local_code": "OAN" + }, + { + "id": "338047", + "ident": "HT-0011", + "type": "small_airport", + "name": "Phaeton Airport", + "latitude_deg": "19.68055", + "longitude_deg": "-71.90555", + "continent": "NA", + "iso_country": "HT", + "iso_region": "HT-NE", + "municipality": "Phaeton", + "scheduled_service": "no", + "local_code": "FLT" + }, + { + "id": "338048", + "ident": "HT-0012", + "type": "small_airport", + "name": "Pignon Airport", + "latitude_deg": "19.32361", + "longitude_deg": "-72.11666", + "continent": "NA", + "iso_country": "HT", + "iso_region": "HT-ND", + "municipality": "Pignon", + "scheduled_service": "no" + }, + { + "id": "338049", + "ident": "HT-0013", + "type": "small_airport", + "name": "Port-Salut Airport", + "latitude_deg": "18.06444", + "longitude_deg": "-73.9125", + "continent": "NA", + "iso_country": "HT", + "iso_region": "HT-SD", + "municipality": "Port-Salut", + "scheduled_service": "no" + }, + { + "id": "338052", + "ident": "HT-0014", + "type": "closed", + "name": "Île de la Tortue Airstrip", + "latitude_deg": "20.055979", + "longitude_deg": "-72.948623", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "HT", + "iso_region": "HT-NO", + "municipality": "Pointe Ti Bois", + "scheduled_service": "no" + }, + { + "id": "349417", + "ident": "HT-0015", + "type": "heliport", + "name": "Cacor Heliport", + "latitude_deg": "18.09656", + "longitude_deg": "-73.70234", + "continent": "NA", + "iso_country": "HT", + "iso_region": "HT-SD", + "municipality": "Cacor", + "scheduled_service": "no" + }, + { + "id": "308201", + "ident": "HTAG", + "type": "small_airport", + "name": "Amani Beach Airport", + "latitude_deg": "-6.957292", + "longitude_deg": "39.505588", + "elevation_ft": "114", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-02", + "municipality": "Somangira", + "scheduled_service": "no", + "gps_code": "HTAG", + "keywords": "Amani Gomvu" + }, + { + "id": "3250", + "ident": "HTAR", + "type": "medium_airport", + "name": "Arusha Airport", + "latitude_deg": "-3.3677899837493896", + "longitude_deg": "36.63330078125", + "elevation_ft": "4550", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-01", + "municipality": "Arusha", + "scheduled_service": "yes", + "gps_code": "HTAR", + "iata_code": "ARK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arusha_Airport" + }, + { + "id": "308202", + "ident": "HTBB", + "type": "small_airport", + "name": "Kibambawe Airstrip", + "latitude_deg": "-7.748241", + "longitude_deg": "38.001833", + "elevation_ft": "485", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-19", + "municipality": "Selous Game Reserve", + "scheduled_service": "no", + "gps_code": "HTBB" + }, + { + "id": "308203", + "ident": "HTBS", + "type": "small_airport", + "name": "Mbesa Airport", + "latitude_deg": "-11.331675", + "longitude_deg": "37.067816", + "elevation_ft": "1980", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-21", + "municipality": "Mbesa Mission", + "scheduled_service": "no", + "gps_code": "HTBS" + }, + { + "id": "30767", + "ident": "HTBU", + "type": "small_airport", + "name": "Bukoba Airport", + "latitude_deg": "-1.332", + "longitude_deg": "31.8212", + "elevation_ft": "3784", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-05", + "municipality": "Bukoba", + "scheduled_service": "yes", + "gps_code": "HTBU", + "iata_code": "BKZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bukoba_Airport" + }, + { + "id": "31637", + "ident": "HTCH", + "type": "small_airport", + "name": "Chunya Airport", + "latitude_deg": "-8.558318", + "longitude_deg": "33.436368", + "elevation_ft": "5000", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-14", + "municipality": "Chunya", + "scheduled_service": "no", + "gps_code": "HTCH" + }, + { + "id": "3251", + "ident": "HTDA", + "type": "large_airport", + "name": "Julius Nyerere International Airport", + "latitude_deg": "-6.87811", + "longitude_deg": "39.202599", + "elevation_ft": "182", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-02", + "municipality": "Dar es Salaam", + "scheduled_service": "yes", + "gps_code": "HTDA", + "iata_code": "DAR", + "home_link": "http://www.tanzaniairports.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Julius_Nyerere_International_Airport", + "keywords": "HTJN, Mwalimu Julius K. Nyerere, Dar es Salaam International Airport" + }, + { + "id": "3252", + "ident": "HTDO", + "type": "medium_airport", + "name": "Dodoma Airport", + "latitude_deg": "-6.17044", + "longitude_deg": "35.752602", + "elevation_ft": "3673", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-03", + "municipality": "Dodoma", + "scheduled_service": "yes", + "gps_code": "HTDO", + "iata_code": "DOD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dodoma_Airport" + }, + { + "id": "318927", + "ident": "HTEN", + "type": "small_airport", + "name": "Endulen Airport", + "latitude_deg": "-3.194243", + "longitude_deg": "35.26315", + "elevation_ft": "5442", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-01", + "municipality": "Endulen", + "scheduled_service": "no", + "gps_code": "HTEN" + }, + { + "id": "318875", + "ident": "HTGW", + "type": "medium_airport", + "name": "Songwe Airport", + "latitude_deg": "-8.919942", + "longitude_deg": "33.273981", + "elevation_ft": "4412", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-14", + "municipality": "Mbeya", + "scheduled_service": "yes", + "gps_code": "HTGW", + "iata_code": "MBI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Songwe_Airport" + }, + { + "id": "3253", + "ident": "HTIR", + "type": "medium_airport", + "name": "Iringa Airport", + "latitude_deg": "-7.668630123138428", + "longitude_deg": "35.75210189819336", + "elevation_ft": "4678", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-04", + "municipality": "Nduli", + "scheduled_service": "no", + "gps_code": "HTIR", + "iata_code": "IRI" + }, + { + "id": "42476", + "ident": "HTIY", + "type": "small_airport", + "name": "Inyonga Airport", + "latitude_deg": "-6.719232", + "longitude_deg": "32.062657", + "elevation_ft": "3790", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-20", + "municipality": "Inyonga", + "scheduled_service": "no", + "gps_code": "HTIY" + }, + { + "id": "32454", + "ident": "HTKA", + "type": "small_airport", + "name": "Kigoma Airport", + "latitude_deg": "-4.8862", + "longitude_deg": "29.6709", + "elevation_ft": "2700", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-08", + "municipality": "Kigoma", + "scheduled_service": "yes", + "gps_code": "HTKA", + "iata_code": "TKQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kigoma_Airport" + }, + { + "id": "42477", + "ident": "HTKB", + "type": "small_airport", + "name": "Kibondo Airport", + "latitude_deg": "-3.525979995727539", + "longitude_deg": "30.650400161743164", + "elevation_ft": "4262", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-08", + "municipality": "Kibondo", + "scheduled_service": "no", + "gps_code": "HTKB" + }, + { + "id": "42478", + "ident": "HTKD", + "type": "small_airport", + "name": "Kondoa Airport", + "latitude_deg": "-4.893710136413574", + "longitude_deg": "35.7682991027832", + "elevation_ft": "4578", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-03", + "municipality": "Kondoa", + "scheduled_service": "no", + "gps_code": "HTKD" + }, + { + "id": "31754", + "ident": "HTKI", + "type": "small_airport", + "name": "Kilwa Airport", + "latitude_deg": "-8.91123", + "longitude_deg": "39.508619", + "elevation_ft": "50", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-12", + "municipality": "Kilwa Masoko", + "scheduled_service": "no", + "gps_code": "HTKI", + "iata_code": "KIY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kilwa_Masoko_Airport" + }, + { + "id": "3254", + "ident": "HTKJ", + "type": "medium_airport", + "name": "Kilimanjaro International Airport", + "latitude_deg": "-3.42941", + "longitude_deg": "37.074501", + "elevation_ft": "2932", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-01", + "municipality": "Arusha", + "scheduled_service": "yes", + "gps_code": "HTKJ", + "iata_code": "JRO", + "home_link": "http://www.kilimanjaroairport.co.tz/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kilimanjaro_International_Airport" + }, + { + "id": "42479", + "ident": "HTKL", + "type": "small_airport", + "name": "Kirondatal Airport", + "latitude_deg": "-4.312575", + "longitude_deg": "34.346453", + "elevation_ft": "5033", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-23", + "municipality": "Kirondatal", + "scheduled_service": "no", + "gps_code": "HTKL" + }, + { + "id": "31638", + "ident": "HTKO", + "type": "small_airport", + "name": "Kongwa Airport", + "latitude_deg": "-6.150000095367432", + "longitude_deg": "36.41699981689453", + "elevation_ft": "3300", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-03", + "municipality": "Kongwa", + "scheduled_service": "no", + "gps_code": "HTKO" + }, + { + "id": "42480", + "ident": "HTKS", + "type": "small_airport", + "name": "Kilosa Airport", + "latitude_deg": "-6.864605", + "longitude_deg": "37.00845", + "elevation_ft": "1567", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-16", + "municipality": "Kilosa", + "scheduled_service": "no", + "gps_code": "HTKS" + }, + { + "id": "31639", + "ident": "HTKT", + "type": "small_airport", + "name": "Kilimatinde Airport", + "latitude_deg": "-5.831378", + "longitude_deg": "34.966387", + "elevation_ft": "3300", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-23", + "municipality": "Kilimatinde", + "scheduled_service": "no", + "gps_code": "HTKT" + }, + { + "id": "42481", + "ident": "HTLD", + "type": "small_airport", + "name": "Loliondo Airport", + "latitude_deg": "-2.069689989089966", + "longitude_deg": "35.54570007324219", + "elevation_ft": "6620", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-01", + "municipality": "Loliondo", + "scheduled_service": "no", + "gps_code": "HTLD" + }, + { + "id": "31801", + "ident": "HTLI", + "type": "small_airport", + "name": "Lindi Airport", + "latitude_deg": "-9.851005", + "longitude_deg": "39.75911", + "elevation_ft": "100", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-12", + "municipality": "Lindi", + "scheduled_service": "yes", + "gps_code": "HTLI", + "iata_code": "LDI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lindi_Airport", + "keywords": "Kikwetu Airport" + }, + { + "id": "42482", + "ident": "HTLL", + "type": "small_airport", + "name": "Liuli Airport", + "latitude_deg": "-11.116399765014648", + "longitude_deg": "34.652198791503906", + "elevation_ft": "1667", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-21", + "municipality": "Liuli", + "scheduled_service": "no", + "gps_code": "HTLL" + }, + { + "id": "3255", + "ident": "HTLM", + "type": "medium_airport", + "name": "Lake Manyara Airport", + "latitude_deg": "-3.376310110092163", + "longitude_deg": "35.81829833984375", + "elevation_ft": "4150", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-26", + "municipality": "Lake Manyara National Park", + "scheduled_service": "no", + "gps_code": "HTLM", + "iata_code": "LKY" + }, + { + "id": "308210", + "ident": "HTM", + "type": "small_airport", + "name": "Khatgal Airport", + "latitude_deg": "50.435988", + "longitude_deg": "100.139532", + "elevation_ft": "5500", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-041", + "municipality": "Hatgal", + "scheduled_service": "no", + "gps_code": "ZMHG", + "iata_code": "HTM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khatgal_Airport" + }, + { + "id": "31893", + "ident": "HTMA", + "type": "small_airport", + "name": "Mafia Airport", + "latitude_deg": "-7.917478", + "longitude_deg": "39.668502", + "elevation_ft": "60", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-19", + "municipality": "Kilindoni", + "scheduled_service": "no", + "gps_code": "HTMA", + "iata_code": "MFA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mafia_Airport" + }, + { + "id": "31881", + "ident": "HTMB", + "type": "small_airport", + "name": "Mbeya Airport", + "latitude_deg": "-8.919444", + "longitude_deg": "33.463889", + "elevation_ft": "5600", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-14", + "municipality": "Mbeya", + "scheduled_service": "no", + "gps_code": "HTMB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mbeya_Airport" + }, + { + "id": "31979", + "ident": "HTMD", + "type": "small_airport", + "name": "Mwadui Airport", + "latitude_deg": "-3.521332", + "longitude_deg": "33.615542", + "elevation_ft": "3970", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-22", + "municipality": "Mwadui", + "scheduled_service": "no", + "gps_code": "HTMD", + "iata_code": "MWN" + }, + { + "id": "42483", + "ident": "HTMF", + "type": "small_airport", + "name": "Mufindi Airport", + "latitude_deg": "-8.732040405273438", + "longitude_deg": "35.3026008605957", + "elevation_ft": "4175", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-04", + "municipality": "Mufindi", + "scheduled_service": "no", + "gps_code": "HTMF" + }, + { + "id": "31640", + "ident": "HTMG", + "type": "small_airport", + "name": "Morogoro Airport", + "latitude_deg": "-6.797220230102539", + "longitude_deg": "37.653099060058594", + "elevation_ft": "1676", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-16", + "municipality": "Morogoro", + "scheduled_service": "no", + "gps_code": "HTMG" + }, + { + "id": "32707", + "ident": "HTMI", + "type": "small_airport", + "name": "Masasi Airport", + "latitude_deg": "-10.732999801635742", + "longitude_deg": "38.766998291015625", + "elevation_ft": "1700", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-17", + "municipality": "Masasi", + "scheduled_service": "no", + "gps_code": "HTMI", + "iata_code": "XMI" + }, + { + "id": "42484", + "ident": "HTMK", + "type": "small_airport", + "name": "Mikumi Airport", + "latitude_deg": "-7.333427906036377", + "longitude_deg": "37.11635971069336", + "elevation_ft": "1737", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-16", + "municipality": "Mikumi", + "scheduled_service": "no", + "gps_code": "HTMK" + }, + { + "id": "42485", + "ident": "HTML", + "type": "small_airport", + "name": "Mahale Airstrip", + "latitude_deg": "-6.012913", + "longitude_deg": "29.766937", + "elevation_ft": "2561", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-08", + "municipality": "Mahale", + "scheduled_service": "no", + "gps_code": "HTML" + }, + { + "id": "31641", + "ident": "HTMO", + "type": "small_airport", + "name": "Mombo Airport", + "latitude_deg": "-4.882999897003174", + "longitude_deg": "38.28300094604492", + "elevation_ft": "1350", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-25", + "municipality": "Mombo", + "scheduled_service": "no", + "gps_code": "HTMO" + }, + { + "id": "31642", + "ident": "HTMP", + "type": "small_airport", + "name": "Mpanda Airport", + "latitude_deg": "-6.355374", + "longitude_deg": "31.084116", + "elevation_ft": "3520", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-20", + "municipality": "Mpanda", + "scheduled_service": "no", + "gps_code": "HTMP", + "iata_code": "NPY" + }, + { + "id": "32194", + "ident": "HTMS", + "type": "small_airport", + "name": "Moshi Airport", + "latitude_deg": "-3.3633298873901367", + "longitude_deg": "37.326900482177734", + "elevation_ft": "2801", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-09", + "municipality": "Moshi", + "scheduled_service": "no", + "gps_code": "HTMS", + "iata_code": "QSI" + }, + { + "id": "3256", + "ident": "HTMT", + "type": "medium_airport", + "name": "Mtwara Airport", + "latitude_deg": "-10.336204", + "longitude_deg": "40.181997", + "elevation_ft": "371", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-17", + "municipality": "Mtwara", + "scheduled_service": "yes", + "gps_code": "HTMT", + "iata_code": "MYW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mtwara_Airport" + }, + { + "id": "31972", + "ident": "HTMU", + "type": "small_airport", + "name": "Musoma Airport", + "latitude_deg": "-1.503", + "longitude_deg": "33.8021", + "elevation_ft": "3806", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-13", + "municipality": "Musoma", + "scheduled_service": "yes", + "gps_code": "HTMU", + "iata_code": "MUZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Musoma_Airport" + }, + { + "id": "3257", + "ident": "HTMW", + "type": "medium_airport", + "name": "Mwanza Airport", + "latitude_deg": "-2.4444899559020996", + "longitude_deg": "32.932701110839844", + "elevation_ft": "3763", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-18", + "municipality": "Mwanza", + "scheduled_service": "yes", + "gps_code": "HTMW", + "iata_code": "MWZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mwanza_Airport" + }, + { + "id": "31643", + "ident": "HTMX", + "type": "small_airport", + "name": "Mpwapwa Airport", + "latitude_deg": "-6.349999904632568", + "longitude_deg": "36.483001708984375", + "elevation_ft": "3240", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-03", + "municipality": "Mpwapwa", + "scheduled_service": "no", + "gps_code": "HTMX" + }, + { + "id": "32009", + "ident": "HTNA", + "type": "small_airport", + "name": "Nachingwea Airport", + "latitude_deg": "-10.357500076293945", + "longitude_deg": "38.77920150756836", + "elevation_ft": "1400", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-12", + "municipality": "Nachingwea", + "scheduled_service": "no", + "gps_code": "HTNA", + "iata_code": "NCH" + }, + { + "id": "318775", + "ident": "HTNG", + "type": "small_airport", + "name": "Ngerengere Air Force Base", + "latitude_deg": "-6.717083", + "longitude_deg": "38.153944", + "elevation_ft": "738", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-16", + "municipality": "Ngerengere", + "scheduled_service": "no", + "gps_code": "HTNG", + "home_link": "http://www.tpdf.mil.tz/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ngerengere_Air_Force_Base" + }, + { + "id": "31708", + "ident": "HTNJ", + "type": "small_airport", + "name": "Njombe Airport", + "latitude_deg": "-9.350000381469727", + "longitude_deg": "34.79999923706055", + "elevation_ft": "6400", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-04", + "municipality": "Njombe", + "scheduled_service": "no", + "gps_code": "HTNJ", + "iata_code": "JOM" + }, + { + "id": "42486", + "ident": "HTNR", + "type": "small_airport", + "name": "Ngara Airport", + "latitude_deg": "-2.541790008544922", + "longitude_deg": "30.703100204467773", + "elevation_ft": "5030", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-05", + "municipality": "Ngara", + "scheduled_service": "no", + "gps_code": "HTNR" + }, + { + "id": "42487", + "ident": "HTOL", + "type": "small_airport", + "name": "Oltipesi Airport", + "latitude_deg": "-4.287732", + "longitude_deg": "36.616115", + "elevation_ft": "4668", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-26", + "scheduled_service": "no", + "gps_code": "HTOL" + }, + { + "id": "3258", + "ident": "HTPE", + "type": "medium_airport", + "name": "Pemba Airport", + "latitude_deg": "-5.25726", + "longitude_deg": "39.811401", + "elevation_ft": "80", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-25", + "municipality": "Chake Chake", + "scheduled_service": "no", + "gps_code": "HTPE", + "iata_code": "PMA", + "keywords": "Chake Chake, Karume, Thabit Kombo Jecha, Wawi" + }, + { + "id": "31645", + "ident": "HTSD", + "type": "small_airport", + "name": "Singida Airport", + "latitude_deg": "-4.810928", + "longitude_deg": "34.724762", + "elevation_ft": "5000", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-23", + "municipality": "Singida", + "scheduled_service": "no", + "gps_code": "HTSD" + }, + { + "id": "31646", + "ident": "HTSE", + "type": "small_airport", + "name": "Same Airport", + "latitude_deg": "-4.053634", + "longitude_deg": "37.789462", + "elevation_ft": "3000", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-09", + "municipality": "Same", + "scheduled_service": "no", + "gps_code": "HTSE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Same_Airstrip" + }, + { + "id": "31647", + "ident": "HTSH", + "type": "small_airport", + "name": "Mafinga Airport", + "latitude_deg": "-8.350000381469727", + "longitude_deg": "35.29999923706055", + "elevation_ft": "6300", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-04", + "municipality": "Mafinga", + "scheduled_service": "no", + "gps_code": "HTSH" + }, + { + "id": "32283", + "ident": "HTSN", + "type": "small_airport", + "name": "Seronera Airport", + "latitude_deg": "-2.45806", + "longitude_deg": "34.822498", + "elevation_ft": "5080", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-13", + "municipality": "Seronera", + "scheduled_service": "no", + "gps_code": "HTSN", + "iata_code": "SEU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Seronera_Airstrip" + }, + { + "id": "32293", + "ident": "HTSO", + "type": "small_airport", + "name": "Songea Airport", + "latitude_deg": "-10.682999610900879", + "longitude_deg": "35.58300018310547", + "elevation_ft": "3445", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-21", + "municipality": "Songea", + "scheduled_service": "no", + "gps_code": "HTSO", + "iata_code": "SGX" + }, + { + "id": "32392", + "ident": "HTSU", + "type": "small_airport", + "name": "Sumbawanga Airport", + "latitude_deg": "-7.948889", + "longitude_deg": "31.610278", + "elevation_ft": "5960", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-20", + "municipality": "Sumbawanga", + "scheduled_service": "no", + "gps_code": "HTSU", + "iata_code": "SUT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sumbawanga_Airport" + }, + { + "id": "32297", + "ident": "HTSY", + "type": "small_airport", + "name": "Shinyanga Airport", + "latitude_deg": "-3.6093", + "longitude_deg": "33.5035", + "elevation_ft": "3800", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-22", + "municipality": "Shinyanga", + "scheduled_service": "yes", + "gps_code": "HTSY", + "iata_code": "SHY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shinyanga_Airport" + }, + { + "id": "32426", + "ident": "HTTB", + "type": "small_airport", + "name": "Tabora Airport", + "latitude_deg": "-5.076389789581299", + "longitude_deg": "32.83330154418945", + "elevation_ft": "3868", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-24", + "municipality": "Tabora", + "scheduled_service": "yes", + "gps_code": "HTTB", + "iata_code": "TBO" + }, + { + "id": "3259", + "ident": "HTTG", + "type": "medium_airport", + "name": "Tanga Airport", + "latitude_deg": "-5.09236", + "longitude_deg": "39.071201", + "elevation_ft": "129", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-25", + "municipality": "Tanga", + "scheduled_service": "yes", + "gps_code": "HTTG", + "iata_code": "TGT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tanga_Airport" + }, + { + "id": "31648", + "ident": "HTTU", + "type": "small_airport", + "name": "Tunduru Airport", + "latitude_deg": "-11.100000381469727", + "longitude_deg": "37.367000579833984", + "elevation_ft": "2200", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-21", + "municipality": "Tunduru", + "scheduled_service": "no", + "gps_code": "HTTU" + }, + { + "id": "42488", + "ident": "HTUK", + "type": "small_airport", + "name": "Nansio Airport", + "latitude_deg": "-2.043529987335205", + "longitude_deg": "33.06439971923828", + "elevation_ft": "4010", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-13", + "municipality": "Ukerewe", + "scheduled_service": "no", + "gps_code": "HTUK" + }, + { + "id": "31649", + "ident": "HTUR", + "type": "small_airport", + "name": "Urambo Airport", + "latitude_deg": "-5.075635", + "longitude_deg": "32.079868", + "elevation_ft": "3600", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-24", + "municipality": "Urambo", + "scheduled_service": "no", + "gps_code": "HTUR" + }, + { + "id": "42489", + "ident": "HTUT", + "type": "small_airport", + "name": "Utete Airport", + "latitude_deg": "-7.999667", + "longitude_deg": "38.760234", + "elevation_ft": "208", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-19", + "municipality": "Utete", + "scheduled_service": "no", + "gps_code": "HTUT" + }, + { + "id": "42490", + "ident": "HTUV", + "type": "small_airport", + "name": "Uvinza Airport", + "latitude_deg": "-5.090771", + "longitude_deg": "30.406772", + "elevation_ft": "563", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-08", + "municipality": "Uvinza", + "scheduled_service": "no", + "gps_code": "HTUV" + }, + { + "id": "31650", + "ident": "HTWK", + "type": "small_airport", + "name": "West Kilimanjaro Airport", + "latitude_deg": "-3.049999952316284", + "longitude_deg": "37", + "elevation_ft": "4300", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-09", + "municipality": "West Kilimanjaro", + "scheduled_service": "no", + "gps_code": "HTWK" + }, + { + "id": "3260", + "ident": "HTZA", + "type": "large_airport", + "name": "Abeid Amani Karume International Airport", + "latitude_deg": "-6.22202", + "longitude_deg": "39.224899", + "elevation_ft": "54", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-07", + "municipality": "Zanzibar", + "scheduled_service": "yes", + "gps_code": "HTZA", + "iata_code": "ZNZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zanzibar_International_Airport", + "keywords": "HTAK, Zanzibar Airport, Kiembi Samaki" + }, + { + "id": "43981", + "ident": "HU-0001", + "type": "small_airport", + "name": "Kákahalom Airfield", + "latitude_deg": "46.803936", + "longitude_deg": "20.527838", + "elevation_ft": "256", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BE", + "municipality": "Szarvas", + "scheduled_service": "no", + "gps_code": "LHSV", + "wikipedia_link": "https://hu.wikipedia.org/wiki/K%C3%A1kai-Szarvasi_rep%C3%BCl%C5%91t%C3%A9r", + "keywords": "Szarvas-Káka" + }, + { + "id": "43983", + "ident": "HU-0002", + "type": "medium_airport", + "name": "Kalocsa/Foktő Airfield", + "latitude_deg": "46.549613", + "longitude_deg": "18.942421", + "elevation_ft": "284", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BK", + "municipality": "Kalocsa/Foktő", + "scheduled_service": "no", + "gps_code": "LHKA", + "home_link": "http://www.aeroportkalocsa.hu" + }, + { + "id": "43985", + "ident": "HU-0003", + "type": "small_airport", + "name": "Matkópuszta Airfield", + "latitude_deg": "46.800343", + "longitude_deg": "19.68257", + "elevation_ft": "367", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BK", + "municipality": "Matkópuszta", + "scheduled_service": "no", + "gps_code": "LHMP", + "home_link": "http://www.matkoairport.hu/" + }, + { + "id": "43986", + "ident": "HU-0004", + "type": "closed", + "name": "Mezőkövesd Air Base", + "latitude_deg": "47.812222", + "longitude_deg": "20.632221", + "elevation_ft": "357", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BZ", + "municipality": "Mezokovesd", + "scheduled_service": "no" + }, + { + "id": "43987", + "ident": "HU-0005", + "type": "closed", + "name": "Hódmezővásárhely Airport", + "latitude_deg": "46.456257", + "longitude_deg": "20.392963", + "elevation_ft": "259", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-CS", + "municipality": "Hódmezővásárhely", + "scheduled_service": "no" + }, + { + "id": "43988", + "ident": "HU-0006", + "type": "small_airport", + "name": "Szatymaz Airfield", + "latitude_deg": "46.322651", + "longitude_deg": "20.053209", + "elevation_ft": "251", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-CS", + "municipality": "Szatymaz", + "scheduled_service": "no", + "gps_code": "LHST" + }, + { + "id": "43989", + "ident": "HU-0007", + "type": "small_airport", + "name": "Börgönd Airfield", + "latitude_deg": "47.12795", + "longitude_deg": "18.50014", + "elevation_ft": "392", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-FE", + "municipality": "Székesfehérvár", + "scheduled_service": "no", + "gps_code": "LHBD" + }, + { + "id": "43990", + "ident": "HU-0008", + "type": "small_airport", + "name": "Pusztacsalád Airfield", + "latitude_deg": "47.493935", + "longitude_deg": "16.897216", + "elevation_ft": "497", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-GS", + "municipality": "Pusztacsalád", + "scheduled_service": "no", + "gps_code": "LHPC" + }, + { + "id": "43991", + "ident": "HU-0009", + "type": "closed", + "name": "Kenderes Airfield", + "latitude_deg": "47.269824", + "longitude_deg": "20.689702", + "elevation_ft": "268", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-JN", + "municipality": "Kenderes", + "scheduled_service": "no" + }, + { + "id": "43992", + "ident": "HU-0010", + "type": "small_airport", + "name": "Kunmadaras Air Base", + "latitude_deg": "47.390839", + "longitude_deg": "20.785009", + "elevation_ft": "279", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-JN", + "municipality": "Kunmadaras", + "scheduled_service": "no", + "gps_code": "LHKM" + }, + { + "id": "44911", + "ident": "HU-0011", + "type": "closed", + "name": "Tokorcs Airfield", + "latitude_deg": "47.273391", + "longitude_deg": "17.106593", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-VA", + "scheduled_service": "no", + "gps_code": "LHTK" + }, + { + "id": "44986", + "ident": "HU-0012", + "type": "small_airport", + "name": "Héviz Airfield", + "latitude_deg": "46.809114", + "longitude_deg": "17.19974", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-ZA", + "municipality": "Héviz", + "scheduled_service": "no" + }, + { + "id": "309443", + "ident": "HU-0013", + "type": "small_airport", + "name": "Baja Airfield", + "latitude_deg": "46.1455", + "longitude_deg": "19.0428", + "elevation_ft": "378", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BK", + "municipality": "Baja", + "scheduled_service": "no" + }, + { + "id": "309444", + "ident": "HU-0014", + "type": "small_airport", + "name": "Balatonkeresztúr Airfield", + "latitude_deg": "46.6933", + "longitude_deg": "17.3974", + "elevation_ft": "337", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-SO", + "municipality": "Balatonkeresztúr", + "scheduled_service": "no", + "gps_code": "LHBK", + "home_link": "http://balatonflugplatz.com/" + }, + { + "id": "309445", + "ident": "HU-0015", + "type": "small_airport", + "name": "Dáka Airfield", + "latitude_deg": "47.271801", + "longitude_deg": "17.4105", + "elevation_ft": "492", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-VE", + "municipality": "Dáka", + "scheduled_service": "no", + "gps_code": "LHDA" + }, + { + "id": "309447", + "ident": "HU-0016", + "type": "small_airport", + "name": "Ballószög Airfield", + "latitude_deg": "46.8618", + "longitude_deg": "19.5566", + "elevation_ft": "393", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BK", + "municipality": "Ballószög", + "scheduled_service": "no", + "gps_code": "LHBL" + }, + { + "id": "309452", + "ident": "HU-0017", + "type": "small_airport", + "name": "Gyõrszentiván-Bõny Airfield", + "latitude_deg": "47.6672", + "longitude_deg": "17.784801", + "elevation_ft": "490", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-GS", + "municipality": "Gyõrszentiván/Bõny", + "scheduled_service": "no", + "gps_code": "LHBY" + }, + { + "id": "315487", + "ident": "HU-0018", + "type": "small_airport", + "name": "Balatonfőkajár Repülőtér", + "latitude_deg": "47.0077226", + "longitude_deg": "18.2098861", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-VE", + "scheduled_service": "no" + }, + { + "id": "315662", + "ident": "HU-0019", + "type": "small_airport", + "name": "Bátonyterenye-Világosipuszta sportreptér", + "latitude_deg": "48.025531", + "longitude_deg": "19.805066", + "elevation_ft": "869", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-NO", + "scheduled_service": "no", + "gps_code": "LHBT" + }, + { + "id": "315679", + "ident": "HU-0020", + "type": "small_airport", + "name": "Rétság reptér", + "latitude_deg": "47.9321175", + "longitude_deg": "19.1246144", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-NO", + "scheduled_service": "no" + }, + { + "id": "316170", + "ident": "HU-0021", + "type": "small_airport", + "name": "Papkutapuszta", + "latitude_deg": "46.870577", + "longitude_deg": "18.041413", + "elevation_ft": "459", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-SO", + "municipality": "Papkutapuszta", + "scheduled_service": "no", + "gps_code": "LHPK" + }, + { + "id": "316466", + "ident": "HU-0022", + "type": "heliport", + "name": "Pécs Hospital Heliport", + "latitude_deg": "46.0750033", + "longitude_deg": "18.20536", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-PS", + "scheduled_service": "no" + }, + { + "id": "316485", + "ident": "HU-0023", + "type": "small_airport", + "name": "Hódmezővásárhelyi Airfield", + "latitude_deg": "46.384444", + "longitude_deg": "20.308333", + "elevation_ft": "262", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-CS", + "municipality": "Hódmezővásárhelyi", + "scheduled_service": "no", + "gps_code": "LHHM" + }, + { + "id": "317133", + "ident": "HU-0024", + "type": "small_airport", + "name": "Pusztaszer", + "latitude_deg": "46.57687", + "longitude_deg": "19.99022", + "elevation_ft": "292", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-CS", + "municipality": "Pusztaszer", + "scheduled_service": "no", + "gps_code": "LHPS" + }, + { + "id": "317421", + "ident": "HU-0025", + "type": "small_airport", + "name": "Balatonlelle sárkány repülőtér", + "latitude_deg": "46.760356", + "longitude_deg": "17.690682", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-SO", + "municipality": "Balatonlelle", + "scheduled_service": "no" + }, + { + "id": "317444", + "ident": "HU-0026", + "type": "small_airport", + "name": "Dány", + "latitude_deg": "47.50083", + "longitude_deg": "19.50529", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-PE", + "scheduled_service": "no" + }, + { + "id": "317447", + "ident": "HU-0027", + "type": "small_airport", + "name": "Zalacsány", + "latitude_deg": "46.8009556", + "longitude_deg": "17.110511", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-ZA", + "scheduled_service": "no" + }, + { + "id": "317535", + "ident": "HU-0028", + "type": "small_airport", + "name": "Pásztó-Hasznos repülőtér", + "latitude_deg": "47.9327379", + "longitude_deg": "19.7747449", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-NO", + "municipality": "Pásztó", + "scheduled_service": "no" + }, + { + "id": "317630", + "ident": "HU-0029", + "type": "small_airport", + "name": "Atkár Margit-kút", + "latitude_deg": "47.7228611", + "longitude_deg": "19.902642", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-HE", + "scheduled_service": "no" + }, + { + "id": "317695", + "ident": "HU-0030", + "type": "small_airport", + "name": "Tapolca", + "latitude_deg": "46.8671914", + "longitude_deg": "17.4063802", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-VE", + "scheduled_service": "no", + "wikipedia_link": "https://hu.wikipedia.org/wiki/Tapolcai_rep%C3%BCl%C5%91t%C3%A9r" + }, + { + "id": "317696", + "ident": "HU-0031", + "type": "small_airport", + "name": "Balatonederics", + "latitude_deg": "46.78503", + "longitude_deg": "17.37905", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-VE", + "scheduled_service": "no" + }, + { + "id": "317730", + "ident": "HU-0032", + "type": "small_airport", + "name": "Mezőhegyes", + "latitude_deg": "46.296989", + "longitude_deg": "20.813389", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-CS", + "scheduled_service": "no" + }, + { + "id": "318134", + "ident": "HU-0033", + "type": "small_airport", + "name": "Hajmáskér repülőtér", + "latitude_deg": "47.141868", + "longitude_deg": "17.998214", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-VE", + "municipality": "Hajmáskér", + "scheduled_service": "no", + "gps_code": "LHHK" + }, + { + "id": "318221", + "ident": "HU-0034", + "type": "closed", + "name": "Aranyos", + "latitude_deg": "48.297055", + "longitude_deg": "21.222908", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BZ", + "scheduled_service": "no", + "keywords": "Abaújkér,Aranyospuszta" + }, + { + "id": "319486", + "ident": "HU-0035", + "type": "small_airport", + "name": "Aeroglobus", + "latitude_deg": "47.7740525", + "longitude_deg": "19.0615739", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-PE", + "municipality": "Dunabogdány", + "scheduled_service": "no", + "home_link": "http://www.aeroglobus.hu/" + }, + { + "id": "319722", + "ident": "HU-0036", + "type": "small_airport", + "name": "Sárospatak Airfield", + "latitude_deg": "48.318035", + "longitude_deg": "21.586117", + "elevation_ft": "315", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BZ", + "municipality": "Sárospatak", + "scheduled_service": "no" + }, + { + "id": "320183", + "ident": "HU-0037", + "type": "closed", + "name": "Kerekharaszt", + "latitude_deg": "47.678889", + "longitude_deg": "19.644167", + "elevation_ft": "407", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-HE", + "municipality": "Hatvan", + "scheduled_service": "no", + "gps_code": "LHKZ", + "local_code": "LHKZ" + }, + { + "id": "320203", + "ident": "HU-0038", + "type": "small_airport", + "name": "Inárcs Airfield", + "latitude_deg": "47.263641", + "longitude_deg": "19.313225", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-PE", + "municipality": "Inárcs", + "scheduled_service": "no", + "gps_code": "LHIN" + }, + { + "id": "320501", + "ident": "HU-0039", + "type": "small_airport", + "name": "Gyomaendrőd", + "latitude_deg": "46.9112958", + "longitude_deg": "20.7615195", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BE", + "scheduled_service": "no" + }, + { + "id": "320510", + "ident": "HU-0040", + "type": "small_airport", + "name": "Kiskunhalas-Füzespuszta", + "latitude_deg": "46.368333", + "longitude_deg": "19.478889", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BK", + "municipality": "Kiskunhalas", + "scheduled_service": "no", + "gps_code": "LHKF" + }, + { + "id": "320902", + "ident": "HU-0041", + "type": "small_airport", + "name": "Felsőráda Airstrip", + "latitude_deg": "47.264102", + "longitude_deg": "19.173974", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-PE", + "municipality": "Felsőráda", + "scheduled_service": "no" + }, + { + "id": "321512", + "ident": "HU-0042", + "type": "small_airport", + "name": "Pusztaszer West", + "latitude_deg": "46.546667", + "longitude_deg": "19.96", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-CS", + "municipality": "Pusztaszer", + "scheduled_service": "no", + "gps_code": "LHPW" + }, + { + "id": "324738", + "ident": "HU-0043", + "type": "small_airport", + "name": "Mórahalom Airstrip", + "latitude_deg": "46.251378", + "longitude_deg": "19.949197", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-CS", + "municipality": "Domaszék", + "scheduled_service": "no" + }, + { + "id": "328592", + "ident": "HU-0044", + "type": "small_airport", + "name": "Dévaványa Airfield", + "latitude_deg": "47.011512", + "longitude_deg": "20.982331", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BE", + "municipality": "Dévaványa", + "scheduled_service": "no", + "keywords": "Füves repülőtér" + }, + { + "id": "329132", + "ident": "HU-0045", + "type": "heliport", + "name": "Bácsbokod Border Police Heliport", + "latitude_deg": "46.1083234", + "longitude_deg": "19.1576028", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BK", + "scheduled_service": "no" + }, + { + "id": "331871", + "ident": "HU-0046", + "type": "small_airport", + "name": "Mezőgazdasági repülőtér", + "latitude_deg": "47.5218568", + "longitude_deg": "20.1625702", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-HE", + "scheduled_service": "no" + }, + { + "id": "337925", + "ident": "HU-0047", + "type": "small_airport", + "name": "Csikéria Airstrip", + "latitude_deg": "46.11381", + "longitude_deg": "19.48895", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BK", + "municipality": "Csikéria", + "scheduled_service": "no" + }, + { + "id": "339205", + "ident": "HU-0048", + "type": "heliport", + "name": "Mátyásföldi Heliport", + "latitude_deg": "47.50095", + "longitude_deg": "19.201027", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BU", + "municipality": "Budapest", + "scheduled_service": "no" + }, + { + "id": "346048", + "ident": "HU-0049", + "type": "small_airport", + "name": "Kislőd Airstrip", + "latitude_deg": "47.13329", + "longitude_deg": "17.63988", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-VE", + "scheduled_service": "no" + }, + { + "id": "346205", + "ident": "HU-0050", + "type": "small_airport", + "name": "Balatonszőlős Airstrip", + "latitude_deg": "46.96852", + "longitude_deg": "17.84473", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-VE", + "scheduled_service": "no" + }, + { + "id": "346260", + "ident": "HU-0051", + "type": "small_airport", + "name": "Soltvadkert Sports Aerodrome", + "latitude_deg": "46.57223", + "longitude_deg": "19.42941", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BK", + "scheduled_service": "no" + }, + { + "id": "346357", + "ident": "HU-0052", + "type": "small_airport", + "name": "Becsehely Airstrip", + "latitude_deg": "46.43592", + "longitude_deg": "16.77868", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-ZA", + "scheduled_service": "no" + }, + { + "id": "346361", + "ident": "HU-0053", + "type": "small_airport", + "name": "Lentikápolna Airstrip", + "latitude_deg": "46.65352", + "longitude_deg": "16.53428", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-ZA", + "municipality": "Lenti", + "scheduled_service": "no" + }, + { + "id": "346381", + "ident": "HU-0054", + "type": "small_airport", + "name": "Tótvázsony repülőtér", + "latitude_deg": "47.03787", + "longitude_deg": "17.78407", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-VE", + "municipality": "Kövesgyűrpuszta", + "scheduled_service": "no" + }, + { + "id": "346382", + "ident": "HU-0055", + "type": "small_airport", + "name": "Zirc-Tündérmajor Repülőtér", + "latitude_deg": "47.259864", + "longitude_deg": "17.838192", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-VE", + "scheduled_service": "no" + }, + { + "id": "347168", + "ident": "HU-0056", + "type": "small_airport", + "name": "Geszteréd Airstrip", + "latitude_deg": "47.76961", + "longitude_deg": "21.80731", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-HB", + "scheduled_service": "no" + }, + { + "id": "353953", + "ident": "HU-0057", + "type": "closed", + "name": "Alsónémedi Recreational Airfield", + "latitude_deg": "47.286706", + "longitude_deg": "19.183848", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-PE", + "municipality": "Alsónémedi", + "scheduled_service": "no" + }, + { + "id": "355338", + "ident": "HU-0058", + "type": "heliport", + "name": "Hungaroring GoKart Center Heliport", + "latitude_deg": "47.5783", + "longitude_deg": "19.25113", + "elevation_ft": "767", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-PE", + "municipality": "Mogyoród", + "scheduled_service": "no" + }, + { + "id": "355339", + "ident": "HU-0059", + "type": "heliport", + "name": "Merényi Gusztàv Kórhàz Heliport", + "latitude_deg": "47.4657", + "longitude_deg": "19.09962", + "elevation_ft": "380", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BU", + "municipality": "Budapest", + "scheduled_service": "no" + }, + { + "id": "355340", + "ident": "HU-0060", + "type": "heliport", + "name": "Szent János és a Kútvölgyi kórhàzi Heliport", + "latitude_deg": "47.510335", + "longitude_deg": "19.001117", + "elevation_ft": "593", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BU", + "municipality": "Budapest", + "scheduled_service": "no" + }, + { + "id": "356009", + "ident": "HU-0061", + "type": "small_airport", + "name": "Telekgerendás Airfield", + "latitude_deg": "46.65295", + "longitude_deg": "20.96272", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BE", + "scheduled_service": "no" + }, + { + "id": "430379", + "ident": "HU-0062", + "type": "small_airport", + "name": "ESRE Glider Field", + "latitude_deg": "47.43479", + "longitude_deg": "18.78092", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-FE", + "scheduled_service": "no" + }, + { + "id": "3262", + "ident": "HUAJ", + "type": "small_airport", + "name": "Adjumani Airport", + "latitude_deg": "3.339239", + "longitude_deg": "31.763854", + "elevation_ft": "2611", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-N", + "municipality": "Adjumani", + "scheduled_service": "no", + "gps_code": "HUAJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Adjumani_Airport" + }, + { + "id": "32234", + "ident": "HUAR", + "type": "medium_airport", + "name": "Arua Airport", + "latitude_deg": "3.049152", + "longitude_deg": "30.911714", + "elevation_ft": "3951", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-N", + "municipality": "Arua", + "scheduled_service": "yes", + "gps_code": "HUAR", + "iata_code": "RUA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arua_Airport" + }, + { + "id": "318929", + "ident": "HUBU", + "type": "small_airport", + "name": "Bundibugyo Airport", + "latitude_deg": "0.67349", + "longitude_deg": "30.025483", + "elevation_ft": "3100", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-W", + "municipality": "Bundibugyo", + "scheduled_service": "no", + "gps_code": "HUBU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bundibugyo_Airport" + }, + { + "id": "3263", + "ident": "HUEN", + "type": "large_airport", + "name": "Entebbe International Airport", + "latitude_deg": "0.042386", + "longitude_deg": "32.443501", + "elevation_ft": "3782", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-C", + "municipality": "Kampala", + "scheduled_service": "yes", + "gps_code": "HUEN", + "iata_code": "EBB", + "home_link": "https://entebbe-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Entebbe_International_Airport" + }, + { + "id": "315268", + "ident": "HUFP", + "type": "small_airport", + "name": "Fort Portal Airport", + "latitude_deg": "0.7063", + "longitude_deg": "30.2493", + "elevation_ft": "5255", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-W", + "municipality": "Fort Portal", + "scheduled_service": "no", + "gps_code": "HUFP", + "local_code": "HUFP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Portal_Airport" + }, + { + "id": "3264", + "ident": "HUGU", + "type": "medium_airport", + "name": "Gulu Airport", + "latitude_deg": "2.8055601119995117", + "longitude_deg": "32.27180099487305", + "elevation_ft": "3510", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-N", + "municipality": "Gulu", + "scheduled_service": "yes", + "gps_code": "HUGU", + "iata_code": "ULU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gulu_Airport" + }, + { + "id": "31702", + "ident": "HUJI", + "type": "small_airport", + "name": "Jinja Airport", + "latitude_deg": "0.449999988079", + "longitude_deg": "33.200000762900004", + "elevation_ft": "3855", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-E", + "municipality": "Jinja", + "scheduled_service": "no", + "gps_code": "HUJI", + "iata_code": "JIN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jinja_Airport" + }, + { + "id": "302298", + "ident": "HUKB", + "type": "small_airport", + "name": "Kabale Airport", + "latitude_deg": "-1.226111", + "longitude_deg": "29.96", + "elevation_ft": "6000", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-W", + "scheduled_service": "no", + "gps_code": "HUKB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kabale_Airport" + }, + { + "id": "313430", + "ident": "HUKC", + "type": "closed", + "name": "Kololo Airstrip", + "latitude_deg": "0.3262", + "longitude_deg": "32.594", + "elevation_ft": "3939", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-C", + "municipality": "Kampala", + "scheduled_service": "no", + "gps_code": "HUKC", + "iata_code": "KLA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kampala_Airport", + "keywords": "Kampala Airport" + }, + { + "id": "315270", + "ident": "HUKD", + "type": "small_airport", + "name": "Kidepo Airport", + "latitude_deg": "3.7176", + "longitude_deg": "33.7487", + "elevation_ft": "4033", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-N", + "municipality": "Kidepo Valley National Park", + "scheduled_service": "no", + "gps_code": "HUKD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kidepo_Airport", + "keywords": "Kipepo" + }, + { + "id": "31724", + "ident": "HUKF", + "type": "small_airport", + "name": "Kabalega Falls Airport", + "latitude_deg": "2.326563", + "longitude_deg": "31.497698", + "elevation_ft": "2365", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-W", + "municipality": "Pakuba", + "scheduled_service": "no", + "gps_code": "HUPA", + "iata_code": "PAF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pakuba_Airfield" + }, + { + "id": "313431", + "ident": "HUKJ", + "type": "small_airport", + "name": "Kajjansi Airfield", + "latitude_deg": "0.1968", + "longitude_deg": "32.55297", + "elevation_ft": "3743", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-C", + "municipality": "Kampala", + "scheduled_service": "no", + "gps_code": "HUKJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kajjansi_Airfield" + }, + { + "id": "315269", + "ident": "HUKK", + "type": "small_airport", + "name": "Kakira Airport", + "latitude_deg": "0.4933", + "longitude_deg": "33.281", + "elevation_ft": "3962", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-E", + "municipality": "Kakira", + "scheduled_service": "no", + "gps_code": "HUKK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kakira_Airport" + }, + { + "id": "315273", + "ident": "HUKO", + "type": "small_airport", + "name": "Kotido Airport", + "latitude_deg": "2.953", + "longitude_deg": "34.1232", + "elevation_ft": "4020", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-N", + "municipality": "Kotido", + "scheduled_service": "no", + "gps_code": "HUKO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kotido_Airport" + }, + { + "id": "31776", + "ident": "HUKS", + "type": "small_airport", + "name": "Kasese Airport", + "latitude_deg": "0.18299999833106995", + "longitude_deg": "30.100000381469727", + "elevation_ft": "3146", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-W", + "municipality": "Kasese", + "scheduled_service": "no", + "gps_code": "HUKS", + "iata_code": "KSE" + }, + { + "id": "315272", + "ident": "HUKT", + "type": "small_airport", + "name": "Kitgum Airport", + "latitude_deg": "3.2817", + "longitude_deg": "32.8882", + "elevation_ft": "3130", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-N", + "municipality": "Kitgum", + "scheduled_service": "no", + "gps_code": "HUKT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kitgum_Airport" + }, + { + "id": "31655", + "ident": "HULI", + "type": "small_airport", + "name": "Lira Airport", + "latitude_deg": "2.25", + "longitude_deg": "32.9169998169", + "elevation_ft": "3580", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-N", + "municipality": "Lira", + "scheduled_service": "no", + "gps_code": "HULI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lira_Airport" + }, + { + "id": "31884", + "ident": "HUMA", + "type": "small_airport", + "name": "Mbarara Airport", + "latitude_deg": "-0.555278", + "longitude_deg": "30.5994", + "elevation_ft": "4600", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-W", + "municipality": "Mbarara", + "scheduled_service": "no", + "gps_code": "HUMA", + "iata_code": "MBQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mbarara_Airport", + "keywords": "Nyakisharara Airport" + }, + { + "id": "31733", + "ident": "HUMI", + "type": "small_airport", + "name": "Masindi Airport", + "latitude_deg": "1.7580599784851074", + "longitude_deg": "31.7367000579834", + "elevation_ft": "3850", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-W", + "municipality": "Masindi", + "scheduled_service": "no", + "gps_code": "HUMI", + "iata_code": "KCU" + }, + { + "id": "315274", + "ident": "HUMO", + "type": "small_airport", + "name": "Moroto Airport", + "latitude_deg": "2.5051", + "longitude_deg": "34.5946", + "elevation_ft": "4170", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-N", + "municipality": "Moroto", + "scheduled_service": "no", + "gps_code": "HUMO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moroto_Airport" + }, + { + "id": "315277", + "ident": "HUMW", + "type": "small_airport", + "name": "Mweya Airport", + "latitude_deg": "-0.194", + "longitude_deg": "29.8941", + "elevation_ft": "3160", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-W", + "municipality": "Mweya", + "scheduled_service": "no", + "gps_code": "HUMW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mweya_Airport" + }, + { + "id": "302288", + "ident": "HUPA", + "type": "small_airport", + "name": "Bugungu Airport", + "latitude_deg": "2.202788", + "longitude_deg": "31.554341", + "elevation_ft": "2472", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-W", + "municipality": "Bujenje", + "scheduled_service": "no", + "gps_code": "HUGG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bugungu_Airstrip" + }, + { + "id": "3265", + "ident": "HUSO", + "type": "medium_airport", + "name": "Soroti Airport", + "latitude_deg": "1.7276899814605713", + "longitude_deg": "33.622798919677734", + "elevation_ft": "3697", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-E", + "municipality": "Soroti", + "scheduled_service": "yes", + "gps_code": "HUSO", + "iata_code": "SRT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Soroti_Airport" + }, + { + "id": "32476", + "ident": "HUTO", + "type": "small_airport", + "name": "Tororo Airport", + "latitude_deg": "0.6830000281333923", + "longitude_deg": "34.16699981689453", + "elevation_ft": "3840", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-E", + "municipality": "Tororo", + "scheduled_service": "no", + "gps_code": "HUTO", + "iata_code": "TRY" + }, + { + "id": "307891", + "ident": "HWA", + "type": "small_airport", + "name": "Hawabango Airport", + "latitude_deg": "-7.392994", + "longitude_deg": "146.003487", + "elevation_ft": "4563", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Hawabango", + "scheduled_service": "no", + "gps_code": "AYHU", + "iata_code": "HWA", + "local_code": "HBA", + "keywords": "Hauwabaga" + }, + { + "id": "17657", + "ident": "HWI", + "type": "seaplane_base", + "name": "Hawk Inlet Seaplane Base", + "latitude_deg": "58.12739944458008", + "longitude_deg": "-134.75599670410156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Hawk Inlet", + "scheduled_service": "no", + "gps_code": "HWI", + "local_code": "HWI" + }, + { + "id": "333482", + "ident": "HYB", + "type": "heliport", + "name": "Helipuerto Metropolitan", + "latitude_deg": "19.027753", + "longitude_deg": "-98.237375", + "elevation_ft": "6965", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "San Andres Cholula", + "scheduled_service": "no", + "local_code": "HYB", + "keywords": "Metropolitan, helipuerto metropolitan, hyb" + }, + { + "id": "17659", + "ident": "HYL", + "type": "seaplane_base", + "name": "Hollis Clark Bay Seaplane Base", + "latitude_deg": "55.4816017151", + "longitude_deg": "-132.645996094", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Hollis", + "scheduled_service": "yes", + "gps_code": "HYL", + "iata_code": "HYL", + "local_code": "HYL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hollis_Seaplane_Base" + }, + { + "id": "351149", + "ident": "HZU", + "type": "medium_airport", + "name": "Chengdu Huaizhou Airport", + "latitude_deg": "30.677339", + "longitude_deg": "104.529397", + "elevation_ft": "1453", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Chengdu (Jintang)", + "scheduled_service": "no", + "iata_code": "HZU" + }, + { + "id": "17660", + "ident": "I01", + "type": "heliport", + "name": "Empress River Casino Heliport", + "latitude_deg": "41.48030090332031", + "longitude_deg": "-88.14399719238281", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Joliet", + "scheduled_service": "no", + "gps_code": "I01", + "local_code": "I01" + }, + { + "id": "17661", + "ident": "I04", + "type": "seaplane_base", + "name": "Quad-City Seaplane Base", + "latitude_deg": "41.459999084472656", + "longitude_deg": "-90.4928970336914", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Moline", + "scheduled_service": "no", + "gps_code": "I04", + "local_code": "I04" + }, + { + "id": "17662", + "ident": "I08", + "type": "small_airport", + "name": "Cabin Creek US Forest Service Airport", + "latitude_deg": "45.1435012817", + "longitude_deg": "-114.929000854", + "elevation_ft": "4289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Big Creek Ranger Station", + "scheduled_service": "no", + "gps_code": "I08", + "local_code": "I08" + }, + { + "id": "20124", + "ident": "I19", + "type": "small_airport", + "name": "Greene County-Lewis A. Jackson Regional Airport", + "latitude_deg": "39.690807", + "longitude_deg": "-83.992585", + "elevation_ft": "949", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Xenia", + "scheduled_service": "no", + "gps_code": "KI19", + "local_code": "I19", + "home_link": "http://www.i19airport.com/", + "keywords": "Dayton" + }, + { + "id": "17663", + "ident": "I25", + "type": "small_airport", + "name": "Welch Municipal Airport", + "latitude_deg": "37.418719", + "longitude_deg": "-81.531064", + "elevation_ft": "2118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Welch", + "scheduled_service": "no", + "gps_code": "KI25", + "local_code": "I25" + }, + { + "id": "17664", + "ident": "I27", + "type": "small_airport", + "name": "Elkader Airport", + "latitude_deg": "42.846900939941406", + "longitude_deg": "-91.38069915771484", + "elevation_ft": "932", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Elkader", + "scheduled_service": "no", + "gps_code": "I27", + "local_code": "I27" + }, + { + "id": "17665", + "ident": "I32", + "type": "closed", + "name": "Old Morehead-Rowan County Airport", + "latitude_deg": "38.133399963379", + "longitude_deg": "-83.53800201416", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Morehead", + "scheduled_service": "no", + "local_code": "I32" + }, + { + "id": "17666", + "ident": "I38", + "type": "closed", + "name": "Action Airpark", + "latitude_deg": "39.136428", + "longitude_deg": "-84.829531", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lawrenceburg", + "scheduled_service": "no", + "keywords": "I38" + }, + { + "id": "17667", + "ident": "I41", + "type": "small_airport", + "name": "Robert Newlon Field", + "latitude_deg": "38.457000732421875", + "longitude_deg": "-82.31379699707031", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Huntington", + "scheduled_service": "no", + "gps_code": "I41", + "local_code": "I41" + }, + { + "id": "17668", + "ident": "I42", + "type": "small_airport", + "name": "Paoli Municipal Airport", + "latitude_deg": "38.584471", + "longitude_deg": "-86.465149", + "elevation_ft": "817", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Paoli", + "scheduled_service": "no", + "gps_code": "KI42", + "local_code": "I42" + }, + { + "id": "17669", + "ident": "I44", + "type": "small_airport", + "name": "Dahio Trotwood Airport", + "latitude_deg": "39.7658996582", + "longitude_deg": "-84.3432998657", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dayton", + "scheduled_service": "no", + "gps_code": "I44", + "local_code": "I44" + }, + { + "id": "17670", + "ident": "I61", + "type": "small_airport", + "name": "Hagerstown Airport", + "latitude_deg": "39.889198303222656", + "longitude_deg": "-85.16329956054688", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hagerstown", + "scheduled_service": "no", + "gps_code": "I61", + "local_code": "I61", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hagerstown_Airport" + }, + { + "id": "17671", + "ident": "I62", + "type": "small_airport", + "name": "Schaney's Lair Airport", + "latitude_deg": "39.859839", + "longitude_deg": "-84.435192", + "elevation_ft": "1037", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Brookville", + "scheduled_service": "no", + "gps_code": "OH46", + "local_code": "OH46", + "keywords": "I62, Brookville Air-Park" + }, + { + "id": "17672", + "ident": "I72", + "type": "small_airport", + "name": "Westfield Airport", + "latitude_deg": "40.04890060424805", + "longitude_deg": "-86.15779876708984", + "elevation_ft": "932", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Westfield", + "scheduled_service": "no", + "gps_code": "I72", + "local_code": "I72" + }, + { + "id": "17673", + "ident": "I80", + "type": "small_airport", + "name": "Noblesville Airport", + "latitude_deg": "40.003601074219", + "longitude_deg": "-85.964698791504", + "elevation_ft": "821", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Noblesville", + "scheduled_service": "no", + "gps_code": "I80", + "local_code": "I80", + "wikipedia_link": "https://en.wikipedia.org/wiki/Noblesville_Airport", + "keywords": "23II" + }, + { + "id": "17674", + "ident": "I83", + "type": "small_airport", + "name": "Salem Municipal Airport", + "latitude_deg": "38.60200119018555", + "longitude_deg": "-86.13999938964844", + "elevation_ft": "822", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "I83", + "local_code": "I83" + }, + { + "id": "17675", + "ident": "I84", + "type": "closed", + "name": "Crooksville Airport", + "latitude_deg": "39.737", + "longitude_deg": "-82.098503", + "elevation_ft": "777", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Crooksville", + "scheduled_service": "no", + "keywords": "I84" + }, + { + "id": "17676", + "ident": "I91", + "type": "small_airport", + "name": "Boonville Airport", + "latitude_deg": "38.04249954223633", + "longitude_deg": "-87.31780242919922", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Boonville", + "scheduled_service": "no", + "gps_code": "I91", + "local_code": "I91" + }, + { + "id": "17677", + "ident": "I96", + "type": "small_airport", + "name": "Columbia-Adair Co. Airport", + "latitude_deg": "37.08530044555664", + "longitude_deg": "-85.34719848632812", + "elevation_ft": "818", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "I96", + "local_code": "I96" + }, + { + "id": "17678", + "ident": "I99", + "type": "small_airport", + "name": "Alexandria Airport", + "latitude_deg": "40.23249816894531", + "longitude_deg": "-85.63749694824219", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Alexandria", + "scheduled_service": "no", + "gps_code": "I99", + "local_code": "I99" + }, + { + "id": "17679", + "ident": "IA00", + "type": "small_airport", + "name": "Jukam's Landing Airport", + "latitude_deg": "41.52000045776367", + "longitude_deg": "-94.36270141601562", + "elevation_ft": "1230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Menlo", + "scheduled_service": "no", + "gps_code": "IA00", + "local_code": "IA00" + }, + { + "id": "17680", + "ident": "IA01", + "type": "small_airport", + "name": "Ridge Airport", + "latitude_deg": "41.35139846801758", + "longitude_deg": "-95.46640014648438", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Oakland", + "scheduled_service": "no", + "gps_code": "IA01", + "local_code": "IA01" + }, + { + "id": "17681", + "ident": "IA02", + "type": "closed", + "name": "Hoff Airport", + "latitude_deg": "42.262001", + "longitude_deg": "-90.580101", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Bellevue", + "scheduled_service": "no", + "keywords": "IA02" + }, + { + "id": "17682", + "ident": "IA03", + "type": "closed", + "name": "Lemons Airport", + "latitude_deg": "42.522052", + "longitude_deg": "-92.492148", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Cedar Falls", + "scheduled_service": "no", + "keywords": "IA03" + }, + { + "id": "17683", + "ident": "IA04", + "type": "heliport", + "name": "Winneshiek Medical Center Heliport", + "latitude_deg": "43.29410172", + "longitude_deg": "-91.77449799", + "elevation_ft": "892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Decorah", + "scheduled_service": "no", + "gps_code": "IA04", + "local_code": "IA04" + }, + { + "id": "17684", + "ident": "IA05", + "type": "closed", + "name": "Rathbun Lake Airport", + "latitude_deg": "40.8517", + "longitude_deg": "-92.8585", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Centerville", + "scheduled_service": "no", + "keywords": "IA05" + }, + { + "id": "17685", + "ident": "IA06", + "type": "closed", + "name": "Sig-Nor Airport", + "latitude_deg": "41.3833", + "longitude_deg": "-92.183502", + "elevation_ft": "818", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Sigourney", + "scheduled_service": "no", + "keywords": "IA06" + }, + { + "id": "17686", + "ident": "IA07", + "type": "closed", + "name": "Grismore Airport", + "latitude_deg": "40.766701", + "longitude_deg": "-93.300201", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Corydon", + "scheduled_service": "no", + "keywords": "IA07" + }, + { + "id": "17687", + "ident": "IA08", + "type": "small_airport", + "name": "Riedesel Private Airport", + "latitude_deg": "42.278099060058594", + "longitude_deg": "-94.55169677734375", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Lohrville", + "scheduled_service": "no", + "gps_code": "IA08", + "local_code": "IA08" + }, + { + "id": "17688", + "ident": "IA09", + "type": "heliport", + "name": "Grinnell Regional Medical Center Heliport", + "latitude_deg": "41.725799560546875", + "longitude_deg": "-92.70349884033203", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Grinnell", + "scheduled_service": "no", + "gps_code": "IA09", + "local_code": "IA09" + }, + { + "id": "17689", + "ident": "IA10", + "type": "heliport", + "name": "MercyOne Dubuque Medical Center Heliport", + "latitude_deg": "42.49165", + "longitude_deg": "-90.675864", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Dubuque", + "scheduled_service": "no", + "gps_code": "IA10", + "local_code": "IA10", + "keywords": "Mercy Health Center" + }, + { + "id": "17690", + "ident": "IA11", + "type": "small_airport", + "name": "Too Short Airport", + "latitude_deg": "41.29389953613281", + "longitude_deg": "-93.66549682617188", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Indianola", + "scheduled_service": "no", + "gps_code": "IA11", + "local_code": "IA11" + }, + { + "id": "17691", + "ident": "IA12", + "type": "closed", + "name": "Lloyd's Field", + "latitude_deg": "43.097197", + "longitude_deg": "-93.402199", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Clear Lake", + "scheduled_service": "no", + "keywords": "IA12" + }, + { + "id": "17692", + "ident": "IA13", + "type": "heliport", + "name": "Cherokee Regional Medical Center Heliport", + "latitude_deg": "42.0853004456", + "longitude_deg": "-95.56999969479999", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Cherokee", + "scheduled_service": "no", + "gps_code": "IA13", + "local_code": "IA13" + }, + { + "id": "17693", + "ident": "IA14", + "type": "closed", + "name": "Walters Heliport", + "latitude_deg": "42.805801", + "longitude_deg": "-91.118202", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Guttenberg", + "scheduled_service": "no", + "keywords": "IA14" + }, + { + "id": "17694", + "ident": "IA15", + "type": "small_airport", + "name": "Hawk Field", + "latitude_deg": "42.88690185546875", + "longitude_deg": "-91.93609619140625", + "elevation_ft": "1115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Hawkeye", + "scheduled_service": "no", + "gps_code": "IA15", + "local_code": "IA15" + }, + { + "id": "17695", + "ident": "IA16", + "type": "small_airport", + "name": "Picayune Airport", + "latitude_deg": "41.70830154418945", + "longitude_deg": "-91.50019836425781", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Iowa City", + "scheduled_service": "no", + "gps_code": "IA16", + "local_code": "IA16" + }, + { + "id": "17696", + "ident": "IA17", + "type": "small_airport", + "name": "Bluebird Airport", + "latitude_deg": "42.622064", + "longitude_deg": "-92.501033", + "elevation_ft": "924", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Cedar Falls", + "scheduled_service": "no", + "gps_code": "IA17", + "local_code": "IA17" + }, + { + "id": "17697", + "ident": "IA18", + "type": "closed", + "name": "Poyner Airport", + "latitude_deg": "42.470798", + "longitude_deg": "-92.088501", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Jesup", + "scheduled_service": "no", + "keywords": "IA18" + }, + { + "id": "17698", + "ident": "IA19", + "type": "heliport", + "name": "Lucas County Health Center Heliport", + "latitude_deg": "41.02750015258789", + "longitude_deg": "-93.30239868164062", + "elevation_ft": "1049", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Chariton", + "scheduled_service": "no", + "gps_code": "IA19", + "local_code": "IA19" + }, + { + "id": "345232", + "ident": "IA20", + "type": "closed", + "name": "Loess Hills Landing", + "latitude_deg": "40.760309", + "longitude_deg": "-95.708792", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Sidney", + "scheduled_service": "no", + "keywords": "IA20" + }, + { + "id": "17699", + "ident": "IA21", + "type": "closed", + "name": "Schurr Airport", + "latitude_deg": "41.599998", + "longitude_deg": "-90.383499", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Leclaire", + "scheduled_service": "no", + "keywords": "IA21" + }, + { + "id": "17700", + "ident": "IA22", + "type": "closed", + "name": "Orr-Port Airport", + "latitude_deg": "40.9384", + "longitude_deg": "-91.403503", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "New London", + "scheduled_service": "no", + "keywords": "IA22" + }, + { + "id": "17701", + "ident": "IA23", + "type": "small_airport", + "name": "GAA Private (Abels Island) Airport", + "latitude_deg": "42.808899", + "longitude_deg": "-91.098198", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Guttenberg", + "scheduled_service": "no", + "gps_code": "IA23", + "local_code": "IA23" + }, + { + "id": "17702", + "ident": "IA24", + "type": "small_airport", + "name": "Green Castle Airport", + "latitude_deg": "41.755001068115234", + "longitude_deg": "-91.72769927978516", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Oxford", + "scheduled_service": "no", + "gps_code": "IA24", + "local_code": "IA24" + }, + { + "id": "17703", + "ident": "IA25", + "type": "small_airport", + "name": "Bartlett Field", + "latitude_deg": "41.80059814453125", + "longitude_deg": "-91.43990325927734", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Solon", + "scheduled_service": "no", + "gps_code": "IA25", + "local_code": "IA25" + }, + { + "id": "17704", + "ident": "IA26", + "type": "closed", + "name": "Carter Field", + "latitude_deg": "40.808399", + "longitude_deg": "-91.808502", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Stockport", + "scheduled_service": "no", + "keywords": "IA26" + }, + { + "id": "17705", + "ident": "IA27", + "type": "small_airport", + "name": "Antique Airfield", + "latitude_deg": "40.97779846191406", + "longitude_deg": "-92.58769989013672", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Blakesburg", + "scheduled_service": "no", + "gps_code": "IA27", + "local_code": "IA27" + }, + { + "id": "17706", + "ident": "IA28", + "type": "small_airport", + "name": "Sherman Airport", + "latitude_deg": "42.05830001831055", + "longitude_deg": "-91.69020080566406", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Hiawatha", + "scheduled_service": "no", + "gps_code": "IA28", + "local_code": "IA28" + }, + { + "id": "17707", + "ident": "IA29", + "type": "heliport", + "name": "Allen Memorial Hospital Heliport", + "latitude_deg": "42.52690124511719", + "longitude_deg": "-92.339599609375", + "elevation_ft": "899", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Waterloo", + "scheduled_service": "no", + "gps_code": "IA29", + "local_code": "IA29" + }, + { + "id": "17708", + "ident": "IA30", + "type": "small_airport", + "name": "Kleis Airport", + "latitude_deg": "42.29999923706055", + "longitude_deg": "-90.7500991821289", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Zwingle", + "scheduled_service": "no", + "gps_code": "IA30", + "local_code": "IA30" + }, + { + "id": "17709", + "ident": "IA31", + "type": "small_airport", + "name": "Beeds Lake Airport", + "latitude_deg": "42.7666015625", + "longitude_deg": "-93.24600219726562", + "elevation_ft": "1148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Hampton", + "scheduled_service": "no", + "gps_code": "IA31", + "local_code": "IA31" + }, + { + "id": "17710", + "ident": "IA32", + "type": "small_airport", + "name": "Pierson Field", + "latitude_deg": "41.32500076293945", + "longitude_deg": "-92.71710205078125", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Oskaloosa", + "scheduled_service": "no", + "gps_code": "IA32", + "local_code": "IA32" + }, + { + "id": "17711", + "ident": "IA33", + "type": "small_airport", + "name": "Dad's Field", + "latitude_deg": "43.01190185546875", + "longitude_deg": "-93.24240112304688", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Rockwell", + "scheduled_service": "no", + "gps_code": "IA33", + "local_code": "IA33" + }, + { + "id": "17712", + "ident": "IA34", + "type": "heliport", + "name": "Mahaska County Hospital Heliport", + "latitude_deg": "41.300498962402344", + "longitude_deg": "-93.62989807128906", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Oskaloosa", + "scheduled_service": "no", + "gps_code": "IA34", + "local_code": "IA34" + }, + { + "id": "17713", + "ident": "IA35", + "type": "small_airport", + "name": "Ruckl Airport", + "latitude_deg": "41.187198638916016", + "longitude_deg": "-95.9041976928711", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Council Bluffs", + "scheduled_service": "no", + "gps_code": "IA35", + "local_code": "IA35" + }, + { + "id": "17714", + "ident": "IA36", + "type": "closed", + "name": "Mercer Field", + "latitude_deg": "41.075003", + "longitude_deg": "-94.426903", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Creston", + "scheduled_service": "no", + "keywords": "IA36" + }, + { + "id": "17715", + "ident": "IA37", + "type": "heliport", + "name": "Horn Memorial Hospital Heliport", + "latitude_deg": "42.33890151977539", + "longitude_deg": "-95.45999908447266", + "elevation_ft": "1325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Ida Grove", + "scheduled_service": "no", + "gps_code": "IA37", + "local_code": "IA37" + }, + { + "id": "17716", + "ident": "IA38", + "type": "closed", + "name": "De Louis Field", + "latitude_deg": "41.5481", + "longitude_deg": "-93.429199", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Des Moines", + "scheduled_service": "no", + "keywords": "IA38" + }, + { + "id": "17717", + "ident": "IA39", + "type": "closed", + "name": "Anamosa Community Hospital Heliport", + "latitude_deg": "42.1128", + "longitude_deg": "-91.288201", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Anamosa", + "scheduled_service": "no", + "keywords": "IA39" + }, + { + "id": "17718", + "ident": "IA40", + "type": "heliport", + "name": "Osceola Community Hospital Heliport", + "latitude_deg": "43.40999984741211", + "longitude_deg": "-95.74250030517578", + "elevation_ft": "1537", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Sibley", + "scheduled_service": "no", + "gps_code": "IA40", + "local_code": "IA40" + }, + { + "id": "17719", + "ident": "IA41", + "type": "small_airport", + "name": "Laverty Field", + "latitude_deg": "41.41529846191406", + "longitude_deg": "-93.5613021850586", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Indianola", + "scheduled_service": "no", + "gps_code": "IA41", + "local_code": "IA41" + }, + { + "id": "17720", + "ident": "IA42", + "type": "closed", + "name": "Sielaff Helo Pad", + "latitude_deg": "42.472198", + "longitude_deg": "-93.304398", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Iowa Falls", + "scheduled_service": "no", + "keywords": "IA42" + }, + { + "id": "17721", + "ident": "IA43", + "type": "closed", + "name": "Strawberry Point Medical Center Heliport", + "latitude_deg": "42.691898", + "longitude_deg": "-91.533203", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Strawberry Point", + "scheduled_service": "no", + "keywords": "IA43" + }, + { + "id": "17722", + "ident": "IA44", + "type": "small_airport", + "name": "Solly's Strip Ultralightport", + "latitude_deg": "40.65140151977539", + "longitude_deg": "-93.96080017089844", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Lamoni", + "scheduled_service": "no", + "gps_code": "IA44", + "local_code": "IA44" + }, + { + "id": "17723", + "ident": "IA45", + "type": "closed", + "name": "Willie's Bomber Patch Airport", + "latitude_deg": "42.775002", + "longitude_deg": "-95.846102", + "elevation_ft": "1446", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Marcus", + "scheduled_service": "no", + "keywords": "IA45" + }, + { + "id": "17724", + "ident": "IA46", + "type": "heliport", + "name": "Wayne County Hospital Heliport", + "latitude_deg": "40.7578010559082", + "longitude_deg": "-93.31849670410156", + "elevation_ft": "1093", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Corydon", + "scheduled_service": "no", + "gps_code": "IA46", + "local_code": "IA46" + }, + { + "id": "17725", + "ident": "IA47", + "type": "closed", + "name": "Day Field", + "latitude_deg": "41.640202", + "longitude_deg": "-93.8088", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Grimes", + "scheduled_service": "no", + "keywords": "IA47" + }, + { + "id": "17726", + "ident": "IA48", + "type": "small_airport", + "name": "Kern Field", + "latitude_deg": "41.74169921875", + "longitude_deg": "-93.7251968383789", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Polk City", + "scheduled_service": "no", + "gps_code": "IA48", + "local_code": "IA48" + }, + { + "id": "17727", + "ident": "IA49", + "type": "closed", + "name": "Jirak Airport", + "latitude_deg": "43.145", + "longitude_deg": "-92.053497", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Fort Atkinson", + "scheduled_service": "no", + "keywords": "IA49" + }, + { + "id": "17728", + "ident": "IA50", + "type": "closed", + "name": "Sigourney Iowa Airport", + "latitude_deg": "41.290798", + "longitude_deg": "-92.188004", + "elevation_ft": "697", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Sigourney", + "scheduled_service": "no", + "keywords": "IA50" + }, + { + "id": "17729", + "ident": "IA51", + "type": "closed", + "name": "De Soto Airport", + "latitude_deg": "41.541698", + "longitude_deg": "-94.008597", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "De Soto", + "scheduled_service": "no", + "keywords": "IA51" + }, + { + "id": "17730", + "ident": "IA52", + "type": "closed", + "name": "Freedom Field", + "latitude_deg": "43.443001", + "longitude_deg": "-94.848", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Estherville", + "scheduled_service": "no", + "keywords": "IA52" + }, + { + "id": "347085", + "ident": "IA53", + "type": "heliport", + "name": "MercyOne Dyersville Heliport", + "latitude_deg": "42.476711", + "longitude_deg": "-91.130117", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Dyersville", + "scheduled_service": "no", + "gps_code": "IA53", + "local_code": "IA53" + }, + { + "id": "17731", + "ident": "IA54", + "type": "small_airport", + "name": "Anderson Airport", + "latitude_deg": "42.50175", + "longitude_deg": "-90.84218", + "elevation_ft": "1135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Dubuque", + "scheduled_service": "no", + "gps_code": "IA54", + "local_code": "IA54" + }, + { + "id": "17732", + "ident": "IA55", + "type": "heliport", + "name": "Myrtue Memorial Hospital Heliport", + "latitude_deg": "41.649200439453125", + "longitude_deg": "-95.32420349121094", + "elevation_ft": "1231", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Harlan", + "scheduled_service": "no", + "gps_code": "IA55", + "local_code": "IA55" + }, + { + "id": "17733", + "ident": "IA56", + "type": "small_airport", + "name": "Farrar Airport", + "latitude_deg": "41.78049850463867", + "longitude_deg": "-93.37940216064453", + "elevation_ft": "916", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Farrar", + "scheduled_service": "no", + "gps_code": "IA56", + "local_code": "IA56" + }, + { + "id": "17734", + "ident": "IA57", + "type": "heliport", + "name": "Mercy Hospital Heliport", + "latitude_deg": "42.67390060424805", + "longitude_deg": "-91.90180206298828", + "elevation_ft": "1119", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Oelwein", + "scheduled_service": "no", + "gps_code": "IA57", + "local_code": "IA57" + }, + { + "id": "17735", + "ident": "IA58", + "type": "small_airport", + "name": "B-8 Farms Airport", + "latitude_deg": "42.1150016784668", + "longitude_deg": "-96.1719970703125", + "elevation_ft": "1063", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Whiting", + "scheduled_service": "no", + "gps_code": "IA58", + "local_code": "IA58" + }, + { + "id": "17736", + "ident": "IA59", + "type": "closed", + "name": "Bickel Airport", + "latitude_deg": "40.391701", + "longitude_deg": "-91.416801", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Keokuk", + "scheduled_service": "no", + "keywords": "IA59" + }, + { + "id": "17737", + "ident": "IA60", + "type": "closed", + "name": "Iowa Army Natl Guard Heliport", + "latitude_deg": "42.554406", + "longitude_deg": "-92.38477", + "elevation_ft": "866", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Waterloo", + "scheduled_service": "no", + "keywords": "IA60" + }, + { + "id": "17738", + "ident": "IA61", + "type": "closed", + "name": "Estle Field", + "latitude_deg": "41.07982", + "longitude_deg": "-91.946039", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Fairfield", + "scheduled_service": "no", + "keywords": "IA61" + }, + { + "id": "17739", + "ident": "IA62", + "type": "closed", + "name": "Wheatley Farms Airport", + "latitude_deg": "41.533298", + "longitude_deg": "-95.075302", + "elevation_ft": "1310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Elkhorn", + "scheduled_service": "no", + "keywords": "IA62" + }, + { + "id": "17740", + "ident": "IA63", + "type": "small_airport", + "name": "Edgren Airport", + "latitude_deg": "41.25830078125", + "longitude_deg": "-92.55159759521484", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Oskaloosa", + "scheduled_service": "no", + "gps_code": "IA63", + "local_code": "IA63" + }, + { + "id": "17741", + "ident": "IA64", + "type": "heliport", + "name": "Iowa Methodist Medical Center Heliport", + "latitude_deg": "41.58940124511719", + "longitude_deg": "-93.63310241699219", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Des Moines", + "scheduled_service": "no", + "gps_code": "IA64", + "local_code": "IA64" + }, + { + "id": "17742", + "ident": "IA65", + "type": "closed", + "name": "Donnellson Airport", + "latitude_deg": "40.620899", + "longitude_deg": "-91.541801", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Donnellson", + "scheduled_service": "no", + "keywords": "IA65" + }, + { + "id": "17743", + "ident": "IA66", + "type": "small_airport", + "name": "Nash Field Indianola Airport", + "latitude_deg": "41.303902", + "longitude_deg": "-93.567703", + "elevation_ft": "991", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Indianola", + "scheduled_service": "no", + "local_code": "6Z6", + "keywords": "IA66" + }, + { + "id": "17744", + "ident": "IA67", + "type": "heliport", + "name": "Cass County Memorial Hospital Heliport", + "latitude_deg": "41.401100158691406", + "longitude_deg": "-94.99189758300781", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Atlantic", + "scheduled_service": "no", + "gps_code": "IA67", + "local_code": "IA67" + }, + { + "id": "17745", + "ident": "IA68", + "type": "closed", + "name": "Freedom Field", + "latitude_deg": "42.266701", + "longitude_deg": "-90.6007", + "elevation_ft": "1055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "La Motte", + "scheduled_service": "no", + "keywords": "IA68" + }, + { + "id": "17746", + "ident": "IA69", + "type": "small_airport", + "name": "Sand Field Airport", + "latitude_deg": "42.8736000061", + "longitude_deg": "-95.8031005859", + "elevation_ft": "1520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Marcus", + "scheduled_service": "no", + "gps_code": "IA69", + "local_code": "IA69" + }, + { + "id": "17747", + "ident": "IA70", + "type": "small_airport", + "name": "Friesenborg & Larson Airport", + "latitude_deg": "43.42580032348633", + "longitude_deg": "-93.83580017089844", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Buffalo Center", + "scheduled_service": "no", + "gps_code": "IA70", + "local_code": "IA70" + }, + { + "id": "17748", + "ident": "IA71", + "type": "heliport", + "name": "Indianola Heliport", + "latitude_deg": "41.35969924926758", + "longitude_deg": "-93.55909729003906", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Indianola", + "scheduled_service": "no", + "gps_code": "IA71", + "local_code": "IA71" + }, + { + "id": "17749", + "ident": "IA72", + "type": "heliport", + "name": "Mercy Hospital Heliport", + "latitude_deg": "41.978599548339844", + "longitude_deg": "-91.65519714355469", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Cedar Rapids", + "scheduled_service": "no", + "gps_code": "IA72", + "local_code": "IA72" + }, + { + "id": "17750", + "ident": "IA73", + "type": "heliport", + "name": "St Lukes Hospital Emergency Heliport", + "latitude_deg": "41.98469924926758", + "longitude_deg": "-91.6615982055664", + "elevation_ft": "759", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Cedar Rapids", + "scheduled_service": "no", + "gps_code": "IA73", + "local_code": "IA73" + }, + { + "id": "17751", + "ident": "IA74", + "type": "heliport", + "name": "Trinity Regional Medical Center Heliport", + "latitude_deg": "42.4925003052", + "longitude_deg": "-94.1919021606", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Fort Dodge", + "scheduled_service": "no", + "gps_code": "IA74", + "local_code": "IA74" + }, + { + "id": "17752", + "ident": "IA75", + "type": "closed", + "name": "Mays Island Helistop", + "latitude_deg": "41.9758", + "longitude_deg": "-91.670197", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Cedar Rapids", + "scheduled_service": "no", + "keywords": "IA75" + }, + { + "id": "17753", + "ident": "IA76", + "type": "closed", + "name": "Cobb Farm Airport", + "latitude_deg": "40.7281", + "longitude_deg": "-93.3433", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Corydon", + "scheduled_service": "no", + "keywords": "IA76" + }, + { + "id": "17754", + "ident": "IA77", + "type": "closed", + "name": "Keitzer Field", + "latitude_deg": "41.026402", + "longitude_deg": "-91.1418", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Mediapolis", + "scheduled_service": "no", + "gps_code": "IA77", + "local_code": "IA77" + }, + { + "id": "17755", + "ident": "IA78", + "type": "heliport", + "name": "Virginia Gay Hospital Heliport", + "latitude_deg": "42.17359924", + "longitude_deg": "-92.01239777", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Vinton", + "scheduled_service": "no", + "gps_code": "IA78", + "local_code": "IA78" + }, + { + "id": "17756", + "ident": "IA79", + "type": "heliport", + "name": "Palo Alto County Hospital Heliport", + "latitude_deg": "43.101898193359375", + "longitude_deg": "-94.70469665527344", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Emmetsburg", + "scheduled_service": "no", + "gps_code": "IA79", + "local_code": "IA79" + }, + { + "id": "46309", + "ident": "IA8", + "type": "small_airport", + "name": "Dyersville Area Airport", + "latitude_deg": "42.496105", + "longitude_deg": "-91.179859", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Dyersville", + "scheduled_service": "no", + "gps_code": "IA8", + "local_code": "IA8" + }, + { + "id": "17757", + "ident": "IA80", + "type": "small_airport", + "name": "Dyersville Area Airport", + "latitude_deg": "42.496101", + "longitude_deg": "-91.179901", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Dyersville", + "scheduled_service": "no", + "local_code": "IA8", + "keywords": "IA80" + }, + { + "id": "17758", + "ident": "IA81", + "type": "heliport", + "name": "Genesis Medical Center West Campus Heliport", + "latitude_deg": "41.54280090332031", + "longitude_deg": "-90.59239959716797", + "elevation_ft": "169", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Davenport", + "scheduled_service": "no", + "gps_code": "IA81", + "local_code": "IA81" + }, + { + "id": "17759", + "ident": "IA82", + "type": "heliport", + "name": "Mercy Hospital Medical Center Private Heliport", + "latitude_deg": "41.599998474121094", + "longitude_deg": "-93.62100219726562", + "elevation_ft": "894", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Des Moines", + "scheduled_service": "no", + "gps_code": "IA82", + "local_code": "IA82" + }, + { + "id": "17760", + "ident": "IA83", + "type": "small_airport", + "name": "Kohlhaas Airport", + "latitude_deg": "42.95389938354492", + "longitude_deg": "-94.1677017211914", + "elevation_ft": "1153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Livermore", + "scheduled_service": "no", + "gps_code": "IA83", + "local_code": "IA83" + }, + { + "id": "17761", + "ident": "IA84", + "type": "small_airport", + "name": "Lawton Airport", + "latitude_deg": "42.483299255371094", + "longitude_deg": "-96.20030212402344", + "elevation_ft": "1235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Lawton", + "scheduled_service": "no", + "gps_code": "IA84", + "local_code": "IA84" + }, + { + "id": "17762", + "ident": "IA85", + "type": "small_airport", + "name": "Tuinstra Airfield", + "latitude_deg": "41.43510055541992", + "longitude_deg": "-93.54049682617188", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Indianola", + "scheduled_service": "no", + "gps_code": "IA85", + "local_code": "IA85" + }, + { + "id": "17763", + "ident": "IA86", + "type": "small_airport", + "name": "Hedgewood Landing Airport", + "latitude_deg": "41.266700744628906", + "longitude_deg": "-93.5093994140625", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Indianola", + "scheduled_service": "no", + "gps_code": "IA86", + "local_code": "IA86" + }, + { + "id": "17764", + "ident": "IA87", + "type": "closed", + "name": "Robel Field", + "latitude_deg": "41.657501", + "longitude_deg": "-93.821097", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Grimes", + "scheduled_service": "no", + "keywords": "IA87" + }, + { + "id": "17765", + "ident": "IA88", + "type": "heliport", + "name": "Quiet Valley Heliport", + "latitude_deg": "41.704200744628906", + "longitude_deg": "-90.46820068359375", + "elevation_ft": "504", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Mc Causland", + "scheduled_service": "no", + "gps_code": "IA88", + "local_code": "IA88" + }, + { + "id": "17766", + "ident": "IA89", + "type": "heliport", + "name": "Woodward State Hospital Heliport", + "latitude_deg": "41.871700286865234", + "longitude_deg": "-93.91439819335938", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Woodward", + "scheduled_service": "no", + "gps_code": "IA89", + "local_code": "IA89" + }, + { + "id": "17767", + "ident": "IA90", + "type": "heliport", + "name": "Humboldt County Memorial Hospital Heliport", + "latitude_deg": "42.733001708984375", + "longitude_deg": "-94.23159790039062", + "elevation_ft": "1102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Humboldt", + "scheduled_service": "no", + "gps_code": "IA90", + "local_code": "IA90" + }, + { + "id": "17768", + "ident": "IA91", + "type": "heliport", + "name": "Montgomery County Memorial Heliport", + "latitude_deg": "41.027198791503906", + "longitude_deg": "-95.21479797363281", + "elevation_ft": "1181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Red Oak", + "scheduled_service": "no", + "gps_code": "IA91", + "local_code": "IA91" + }, + { + "id": "17769", + "ident": "IA92", + "type": "heliport", + "name": "University of Iowa Hospitals & Clinic No2 Heliport", + "latitude_deg": "41.66749954223633", + "longitude_deg": "-91.6001968383789", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Iowa City", + "scheduled_service": "no", + "gps_code": "IA92", + "local_code": "IA92" + }, + { + "id": "17770", + "ident": "IA93", + "type": "small_airport", + "name": "Olsen Airport", + "latitude_deg": "41.61280059814453", + "longitude_deg": "-95.89559936523438", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Missouri Valley", + "scheduled_service": "no", + "gps_code": "IA93", + "local_code": "IA93" + }, + { + "id": "17771", + "ident": "IA94", + "type": "closed", + "name": "Nesler Field", + "latitude_deg": "42.4333", + "longitude_deg": "-94.2836", + "elevation_ft": "1147", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Moorland", + "scheduled_service": "no", + "keywords": "IA94" + }, + { + "id": "17772", + "ident": "IA95", + "type": "heliport", + "name": "Hcph Heliport", + "latitude_deg": "42.458900451660156", + "longitude_deg": "-93.82379913330078", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Webster City", + "scheduled_service": "no", + "gps_code": "IA95", + "local_code": "IA95" + }, + { + "id": "17773", + "ident": "IA96", + "type": "heliport", + "name": "Mercy One Primghar Medical Center Heliport", + "latitude_deg": "43.088299", + "longitude_deg": "-95.623901", + "elevation_ft": "1520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Primghar", + "scheduled_service": "no", + "gps_code": "IA96", + "local_code": "IA96", + "keywords": "Baum-Harmon Memorial Hospital" + }, + { + "id": "17774", + "ident": "IA97", + "type": "small_airport", + "name": "Nichols Airport", + "latitude_deg": "42.31669998168945", + "longitude_deg": "-92.28350067138672", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "La Porte City", + "scheduled_service": "no", + "gps_code": "IA97", + "local_code": "IA97" + }, + { + "id": "17775", + "ident": "IA98", + "type": "heliport", + "name": "Iowa Lutheran Hospital Life Flight Heliport", + "latitude_deg": "41.60219955444336", + "longitude_deg": "-93.6104965209961", + "elevation_ft": "856", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Des Moines", + "scheduled_service": "no", + "gps_code": "IA98", + "local_code": "IA98" + }, + { + "id": "17776", + "ident": "IA99", + "type": "heliport", + "name": "Dickinson County Memorial Hospital Heliport", + "latitude_deg": "43.41749954223633", + "longitude_deg": "-95.1239013671875", + "elevation_ft": "1455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Spirit Lake", + "scheduled_service": "no", + "gps_code": "IA99", + "local_code": "IA99" + }, + { + "id": "312933", + "ident": "IBI", + "type": "small_airport", + "name": "Iboki Airport", + "latitude_deg": "-5.5536", + "longitude_deg": "149.19", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WBK", + "municipality": "Iboki", + "scheduled_service": "no", + "iata_code": "IBI", + "local_code": "IBK", + "keywords": "Iaboki" + }, + { + "id": "27302", + "ident": "IBL", + "type": "medium_airport", + "name": "Indigo Bay Lodge Airport", + "latitude_deg": "-21.708", + "longitude_deg": "35.452801", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-I", + "municipality": "Bazaruto Island", + "scheduled_service": "no", + "iata_code": "IBL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Indigo_Bay_Lodge_Airport" + }, + { + "id": "17777", + "ident": "IBN", + "type": "small_airport", + "name": "Devils Mountain Lodge Airport", + "latitude_deg": "62.399731", + "longitude_deg": "-142.995365", + "elevation_ft": "2880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nabesna", + "scheduled_service": "no", + "gps_code": "PABN", + "local_code": "IBN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Devils_Mountain_Lodge_Airport", + "keywords": "AK21" + }, + { + "id": "309145", + "ident": "ICO", + "type": "small_airport", + "name": "Sicogon Airstrip", + "latitude_deg": "11.4595", + "longitude_deg": "123.2506", + "elevation_ft": "25", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ILI", + "municipality": "Carles", + "scheduled_service": "no", + "iata_code": "ICO" + }, + { + "id": "38199", + "ident": "ID-0001", + "type": "closed", + "name": "Namber Airfield", + "latitude_deg": "-1.0733499527", + "longitude_deg": "134.830993652", + "elevation_ft": "64", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Namber-Numfoor Island", + "scheduled_service": "no" + }, + { + "id": "38200", + "ident": "ID-0002", + "type": "closed", + "name": "Kamiri Airfield", + "latitude_deg": "-0.9715039730070001", + "longitude_deg": "134.809005737", + "elevation_ft": "54", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Kamiri-Numfoor Island", + "scheduled_service": "no" + }, + { + "id": "41492", + "ident": "ID-0003", + "type": "small_airport", + "name": "Pulau Panjang Airport", + "latitude_deg": "-5.644444", + "longitude_deg": "106.5625", + "elevation_ft": "155", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JB", + "municipality": "Jakarta", + "scheduled_service": "no", + "gps_code": "WIHG", + "iata_code": "PPJ", + "keywords": "WIIG, Panjang Island" + }, + { + "id": "350462", + "ident": "ID-0004", + "type": "small_airport", + "name": "Okpahik Airstrip", + "latitude_deg": "-4.697855", + "longitude_deg": "140.770547", + "elevation_ft": "6300", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Okpahik", + "scheduled_service": "yes" + }, + { + "id": "41494", + "ident": "ID-0005", + "type": "small_airport", + "name": "Ketapang Airport", + "latitude_deg": "-6.899862766265869", + "longitude_deg": "113.28289031982422", + "elevation_ft": "170", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Ketapang-Madura Island", + "scheduled_service": "no" + }, + { + "id": "46586", + "ident": "ID-0006", + "type": "small_airport", + "name": "Notohadinegoro Airport", + "latitude_deg": "-8.242494", + "longitude_deg": "113.693476", + "elevation_ft": "281", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Jember", + "scheduled_service": "yes", + "gps_code": "WARE", + "iata_code": "JBB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Notohadinegoro_Airport", + "keywords": "Jember, Jenggawah" + }, + { + "id": "41496", + "ident": "ID-0007", + "type": "heliport", + "name": "Malinau Heliport", + "latitude_deg": "3.55264", + "longitude_deg": "116.6256", + "elevation_ft": "86", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KU", + "municipality": "Malinau-Borneo Island", + "scheduled_service": "no" + }, + { + "id": "41497", + "ident": "ID-0008", + "type": "small_airport", + "name": "Berau Airport", + "latitude_deg": "2.16350007057", + "longitude_deg": "117.68699646", + "elevation_ft": "39", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KI", + "municipality": "Sokan-Borneo Island", + "scheduled_service": "no" + }, + { + "id": "41498", + "ident": "ID-0009", + "type": "heliport", + "name": "Dili Heliport", + "latitude_deg": "-8.54854011536", + "longitude_deg": "125.519996643", + "elevation_ft": "154", + "continent": "AS", + "iso_country": "TL", + "iso_region": "TL-DI", + "municipality": "Dili", + "scheduled_service": "no", + "keywords": "DIC" + }, + { + "id": "46490", + "ident": "ID-0010", + "type": "small_airport", + "name": "Jatiwangi Airport", + "latitude_deg": "-6.678375", + "longitude_deg": "108.252219444", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JB", + "scheduled_service": "no", + "keywords": "sugiri sukani, SKI" + }, + { + "id": "46587", + "ident": "ID-0011", + "type": "small_airport", + "name": "Banyuwangi International Airport", + "latitude_deg": "-8.31015", + "longitude_deg": "114.3401", + "elevation_ft": "112", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Banyuwangi", + "scheduled_service": "yes", + "gps_code": "WADY", + "iata_code": "BWX", + "local_code": "BWI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Banyuwangi_International_Airport", + "keywords": "Blimbingsari, Sukojati, WARB" + }, + { + "id": "301955", + "ident": "ID-0012", + "type": "small_airport", + "name": "Lasondre Airport", + "latitude_deg": "-0.01924", + "longitude_deg": "98.30097", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SU", + "municipality": "Pulau-Pulau Batu", + "scheduled_service": "yes", + "gps_code": "WIMO", + "local_code": "LSE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lasondre_Airport", + "keywords": "Bandar Udara Lasondre" + }, + { + "id": "46589", + "ident": "ID-0013", + "type": "small_airport", + "name": "Letkol Wisnu Airstrip", + "latitude_deg": "-8.14055555556", + "longitude_deg": "114.616666667", + "elevation_ft": "66", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-BA", + "municipality": "Pemuteran", + "scheduled_service": "yes", + "local_code": "BIFA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lt.Col._Wisnu_Airfield", + "keywords": "Grokgak Airport, Buleleng Airport" + }, + { + "id": "46593", + "ident": "ID-0014", + "type": "heliport", + "name": "BAT Private Helipad", + "latitude_deg": "-8.71777777778", + "longitude_deg": "115.205277778", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-BA", + "scheduled_service": "no" + }, + { + "id": "46594", + "ident": "ID-0015", + "type": "heliport", + "name": "Discovery Helipad", + "latitude_deg": "-8.728055555560001", + "longitude_deg": "115.166111111", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-BA", + "scheduled_service": "yes" + }, + { + "id": "46597", + "ident": "ID-0016", + "type": "heliport", + "name": "Grand Inna Bali Beach Heliport", + "latitude_deg": "-8.676952", + "longitude_deg": "115.265071", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-BA", + "municipality": "Denpasar", + "scheduled_service": "no" + }, + { + "id": "349721", + "ident": "ID-0017", + "type": "closed", + "name": "Samarinda Temingdun Airport", + "latitude_deg": "-0.481389", + "longitude_deg": "117.155833", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KI", + "municipality": "Samarinda", + "scheduled_service": "no", + "wikipedia_link": "https://en.m.wikipedia.org/wiki/Temindung_Airport", + "keywords": "SRI, WALS" + }, + { + "id": "316780", + "ident": "ID-0018", + "type": "closed", + "name": "Selaru Airstrip", + "latitude_deg": "-8.256", + "longitude_deg": "130.842", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MA", + "municipality": "Selaru Island", + "scheduled_service": "no", + "keywords": "Lingat" + }, + { + "id": "302358", + "ident": "ID-0019", + "type": "heliport", + "name": "Paiton Power Helipad", + "latitude_deg": "-7.7169054", + "longitude_deg": "113.597366", + "elevation_ft": "5", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Bhinar", + "scheduled_service": "no", + "local_code": "PRO" + }, + { + "id": "302359", + "ident": "ID-0020", + "type": "heliport", + "name": "Karyadibya Helipad", + "latitude_deg": "-7.76384709931", + "longitude_deg": "112.737796605", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Purwosari", + "scheduled_service": "no" + }, + { + "id": "302360", + "ident": "ID-0021", + "type": "heliport", + "name": "Pandaan Helipad", + "latitude_deg": "-7.7683326", + "longitude_deg": "112.7391373", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Purwosari", + "scheduled_service": "no", + "local_code": "UNK" + }, + { + "id": "310158", + "ident": "ID-0022", + "type": "small_airport", + "name": "Aboge Airstrip", + "latitude_deg": "-6.0634", + "longitude_deg": "139.267", + "elevation_ft": "53", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Aboge", + "scheduled_service": "no" + }, + { + "id": "310161", + "ident": "ID-0023", + "type": "small_airport", + "name": "Aboyi Airstrip", + "latitude_deg": "-4.288741", + "longitude_deg": "140.640664", + "elevation_ft": "828", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Aboyi", + "scheduled_service": "no", + "local_code": "ABY" + }, + { + "id": "310167", + "ident": "ID-0024", + "type": "small_airport", + "name": "Amazu Airstrip", + "latitude_deg": "-5.6119", + "longitude_deg": "139.6234", + "elevation_ft": "58", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Amazu", + "scheduled_service": "no", + "local_code": "AMZ" + }, + { + "id": "310169", + "ident": "ID-0025", + "type": "small_airport", + "name": "Ambisibil Airstrip", + "latitude_deg": "-4.6712", + "longitude_deg": "140.5746", + "elevation_ft": "6425", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Ambisibil", + "scheduled_service": "no" + }, + { + "id": "310171", + "ident": "ID-0026", + "type": "small_airport", + "name": "Angguruk Airstrip", + "latitude_deg": "-4.200167", + "longitude_deg": "139.432554", + "elevation_ft": "4820", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Angguruk", + "scheduled_service": "no", + "local_code": "ANG", + "keywords": "Anggruk" + }, + { + "id": "310173", + "ident": "ID-0027", + "type": "small_airport", + "name": "Arsbol Airstrip", + "latitude_deg": "-3.6941", + "longitude_deg": "138.9372", + "elevation_ft": "2800", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Arsbol", + "scheduled_service": "no", + "local_code": "ARS" + }, + { + "id": "310248", + "ident": "ID-0028", + "type": "small_airport", + "name": "Bentiang Airstrip", + "latitude_deg": "0.9196", + "longitude_deg": "109.9155", + "elevation_ft": "2390", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Bentiang", + "scheduled_service": "no", + "local_code": "BTG" + }, + { + "id": "310250", + "ident": "ID-0029", + "type": "small_airport", + "name": "Beoga Airport", + "latitude_deg": "-3.8165", + "longitude_deg": "137.4252", + "elevation_ft": "6238", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Nungai Beoga", + "scheduled_service": "no" + }, + { + "id": "310258", + "ident": "ID-0030", + "type": "small_airport", + "name": "Bime Airstrip", + "latitude_deg": "-4.48558", + "longitude_deg": "140.219843", + "elevation_ft": "4600", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Bime", + "scheduled_service": "no" + }, + { + "id": "310260", + "ident": "ID-0031", + "type": "small_airport", + "name": "Diphikin Airstrip", + "latitude_deg": "-4.725525", + "longitude_deg": "140.792284", + "elevation_ft": "5568", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Binsari", + "scheduled_service": "yes" + }, + { + "id": "310263", + "ident": "ID-0032", + "type": "small_airport", + "name": "Binuang Airstrip", + "latitude_deg": "3.7147", + "longitude_deg": "115.8517", + "elevation_ft": "2675", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KU", + "municipality": "Binuang", + "scheduled_service": "no" + }, + { + "id": "310265", + "ident": "ID-0033", + "type": "small_airport", + "name": "Biri Airstrip", + "latitude_deg": "-2.87793", + "longitude_deg": "137.76816", + "elevation_ft": "415", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Biri", + "scheduled_service": "no", + "local_code": "BIR" + }, + { + "id": "310267", + "ident": "ID-0034", + "type": "small_airport", + "name": "Bomela Airport", + "latitude_deg": "-4.693634", + "longitude_deg": "139.912707", + "elevation_ft": "5050", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Bomela", + "scheduled_service": "no", + "local_code": "BML", + "keywords": "WX48" + }, + { + "id": "310270", + "ident": "ID-0035", + "type": "small_airport", + "name": "Bomoani Airstrip", + "latitude_deg": "-3.960942", + "longitude_deg": "135.939631", + "elevation_ft": "4966", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Bomomani", + "scheduled_service": "no", + "local_code": "BMO" + }, + { + "id": "310271", + "ident": "ID-0036", + "type": "small_airport", + "name": "Borme Airstrip", + "latitude_deg": "-4.394362", + "longitude_deg": "140.436348", + "elevation_ft": "3270", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Borme", + "scheduled_service": "no", + "local_code": "BOR" + }, + { + "id": "310273", + "ident": "ID-0037", + "type": "small_airport", + "name": "Buduk Kabul Airstrip", + "latitude_deg": "3.7978", + "longitude_deg": "115.7065", + "elevation_ft": "3260", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KU", + "municipality": "Buduk Kabul", + "scheduled_service": "no", + "local_code": "BDK" + }, + { + "id": "310275", + "ident": "ID-0038", + "type": "small_airport", + "name": "Bugalaga Airstrip", + "latitude_deg": "-3.6235", + "longitude_deg": "136.5963", + "elevation_ft": "6360", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Bugalaga", + "scheduled_service": "no", + "gps_code": "WX53", + "local_code": "GBL", + "keywords": "WX53" + }, + { + "id": "310281", + "ident": "ID-0039", + "type": "closed", + "name": "Calang Airstrip", + "latitude_deg": "4.612323", + "longitude_deg": "95.623534", + "elevation_ft": "32", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-AC", + "municipality": "Calang", + "scheduled_service": "no" + }, + { + "id": "310291", + "ident": "ID-0040", + "type": "small_airport", + "name": "Comoro Airstrip", + "latitude_deg": "-5.926349", + "longitude_deg": "138.631461", + "elevation_ft": "21", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Comoro", + "scheduled_service": "no", + "local_code": "COM" + }, + { + "id": "310293", + "ident": "ID-0041", + "type": "small_airport", + "name": "Dagai Airport", + "latitude_deg": "-3.305757", + "longitude_deg": "137.94366", + "elevation_ft": "347", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Dagai", + "scheduled_service": "no", + "local_code": "DAG", + "keywords": "WX59" + }, + { + "id": "310295", + "ident": "ID-0042", + "type": "small_airport", + "name": "Datah Dian Airstrip", + "latitude_deg": "2.0062", + "longitude_deg": "115.152", + "elevation_ft": "1800", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KU", + "municipality": "Pertamina Oil & Gas Corp.", + "scheduled_service": "no", + "local_code": "DAT" + }, + { + "id": "310297", + "ident": "ID-0043", + "type": "small_airport", + "name": "Daufo Airfield", + "latitude_deg": "-3.1737", + "longitude_deg": "137.2544", + "elevation_ft": "500", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Daufo", + "scheduled_service": "no", + "local_code": "DOF" + }, + { + "id": "310313", + "ident": "ID-0044", + "type": "small_airport", + "name": "Derapos Airstrip", + "latitude_deg": "-2.9737", + "longitude_deg": "137.2234", + "elevation_ft": "433", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Derapos", + "scheduled_service": "no", + "local_code": "DEP", + "keywords": "WX68" + }, + { + "id": "310319", + "ident": "ID-0045", + "type": "small_airport", + "name": "Dou Airstrip", + "latitude_deg": "-3.2625", + "longitude_deg": "138.1484", + "elevation_ft": "299", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Dou", + "scheduled_service": "no", + "local_code": "DOU" + }, + { + "id": "310321", + "ident": "ID-0046", + "type": "small_airport", + "name": "Doyo Baru Airport", + "latitude_deg": "-2.538781", + "longitude_deg": "140.464293", + "elevation_ft": "385", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Doyo Baru", + "scheduled_service": "no", + "local_code": "DOB" + }, + { + "id": "310323", + "ident": "ID-0047", + "type": "small_airport", + "name": "Eaopoto Airstrip", + "latitude_deg": "-3.9497", + "longitude_deg": "136.3383", + "elevation_ft": "5900", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Eaopoto", + "scheduled_service": "no", + "local_code": "EPO", + "keywords": "WX75" + }, + { + "id": "310326", + "ident": "ID-0048", + "type": "small_airport", + "name": "Engkadik Airstrip", + "latitude_deg": "0.9797", + "longitude_deg": "110.0282", + "elevation_ft": "2190", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Engkadik", + "scheduled_service": "no", + "local_code": "ENK", + "keywords": "WX79" + }, + { + "id": "310330", + "ident": "ID-0049", + "type": "small_airport", + "name": "Eri Airstrip", + "latitude_deg": "-2.6308", + "longitude_deg": "138.1094", + "elevation_ft": "440", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Eri", + "scheduled_service": "no", + "local_code": "ERI", + "keywords": "WX83" + }, + { + "id": "310332", + "ident": "ID-0050", + "type": "small_airport", + "name": "Faowi Airstrip", + "latitude_deg": "-3.2301", + "longitude_deg": "137.7262", + "elevation_ft": "333", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Faowi", + "scheduled_service": "no", + "local_code": "FAO", + "keywords": "WX84" + }, + { + "id": "310333", + "ident": "ID-0051", + "type": "closed", + "name": "Fef Airport", + "latitude_deg": "-0.8103", + "longitude_deg": "132.4326", + "elevation_ft": "1406", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Fef", + "scheduled_service": "no", + "local_code": "FEF", + "keywords": "WX85" + }, + { + "id": "310334", + "ident": "ID-0052", + "type": "small_airport", + "name": "Foao Airstrip", + "latitude_deg": "-3.066", + "longitude_deg": "139.099", + "elevation_ft": "241", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Foao", + "scheduled_service": "no", + "local_code": "FOA", + "keywords": "WX86" + }, + { + "id": "310338", + "ident": "ID-0053", + "type": "small_airport", + "name": "Fruata Airstrip", + "latitude_deg": "-2.9858", + "longitude_deg": "133.5001", + "elevation_ft": "192", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Fruata", + "scheduled_service": "no", + "local_code": "FRU", + "keywords": "WX87" + }, + { + "id": "310342", + "ident": "ID-0054", + "type": "small_airport", + "name": "Geyarek Airstrip", + "latitude_deg": "-4.650391", + "longitude_deg": "138.752389", + "elevation_ft": "248", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Geyarek", + "scheduled_service": "no", + "local_code": "GEA", + "keywords": "WX92" + }, + { + "id": "310344", + "ident": "ID-0055", + "type": "small_airport", + "name": "Gilgal Airstrip", + "latitude_deg": "0.458", + "longitude_deg": "111.0707", + "elevation_ft": "108", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Gilgal", + "scheduled_service": "no", + "local_code": "GIL", + "keywords": "WX93" + }, + { + "id": "310347", + "ident": "ID-0056", + "type": "small_airport", + "name": "Gusimawa Airstrip", + "latitude_deg": "-3.0423", + "longitude_deg": "133.8779", + "elevation_ft": "131", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Gusimawa", + "scheduled_service": "no", + "keywords": "WX97" + }, + { + "id": "310349", + "ident": "ID-0057", + "type": "small_airport", + "name": "Haya Airstrip", + "latitude_deg": "-2.8156", + "longitude_deg": "138.1099", + "elevation_ft": "250", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Haya", + "scheduled_service": "no", + "local_code": "HAY", + "keywords": "WX98" + }, + { + "id": "310351", + "ident": "ID-0058", + "type": "small_airport", + "name": "Hing Airstrip", + "latitude_deg": "-1.233", + "longitude_deg": "133.9478", + "elevation_ft": "6700", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Hing", + "scheduled_service": "no", + "keywords": "WZ02" + }, + { + "id": "310353", + "ident": "ID-0059", + "type": "small_airport", + "name": "Hitadipa Airport", + "latitude_deg": "-3.734325", + "longitude_deg": "137.116992", + "elevation_ft": "5061", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Hitadipa", + "scheduled_service": "no", + "local_code": "HIT", + "keywords": "WZ03" + }, + { + "id": "310355", + "ident": "ID-0060", + "type": "small_airport", + "name": "Holuwon Airstrip", + "latitude_deg": "-4.480541", + "longitude_deg": "139.273998", + "elevation_ft": "3770", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Holuwon", + "scheduled_service": "no", + "local_code": "HOL", + "keywords": "WZ07" + }, + { + "id": "310358", + "ident": "ID-0061", + "type": "small_airport", + "name": "Hubliki Airstrip", + "latitude_deg": "-3.732237", + "longitude_deg": "139.286263", + "elevation_ft": "1970", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Hubliki", + "scheduled_service": "no", + "local_code": "HUB", + "keywords": "WZ04" + }, + { + "id": "310360", + "ident": "ID-0062", + "type": "small_airport", + "name": "Hulu Atas Airstrip", + "latitude_deg": "-3.6799", + "longitude_deg": "140.22955", + "elevation_ft": "568", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Hulu Atas", + "scheduled_service": "no", + "local_code": "HUL", + "keywords": "WZ05" + }, + { + "id": "310362", + "ident": "ID-0063", + "type": "small_airport", + "name": "Ibele Airstrip", + "latitude_deg": "-4.052", + "longitude_deg": "138.796", + "elevation_ft": "6320", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Ibele", + "scheduled_service": "no", + "keywords": "WT90" + }, + { + "id": "310397", + "ident": "ID-0064", + "type": "small_airport", + "name": "Kaiy Airstrip", + "latitude_deg": "-2.9871", + "longitude_deg": "138.1062", + "elevation_ft": "195", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Kaiy", + "scheduled_service": "no", + "local_code": "KAI", + "keywords": "WZ25" + }, + { + "id": "310399", + "ident": "ID-0065", + "type": "closed", + "name": "Kaesah Airstrip", + "latitude_deg": "-7.1088", + "longitude_deg": "140.1265", + "elevation_ft": "53", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Kaesah", + "scheduled_service": "no", + "local_code": "KAH", + "keywords": "WZ24" + }, + { + "id": "310406", + "ident": "ID-0066", + "type": "small_airport", + "name": "Illaga III Airport", + "latitude_deg": "-3.9993", + "longitude_deg": "137.65317", + "elevation_ft": "7673", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Illaga", + "scheduled_service": "no", + "keywords": "WZ11" + }, + { + "id": "310409", + "ident": "ID-0067", + "type": "small_airport", + "name": "Ilugwa/Antara Airport", + "latitude_deg": "-3.835894", + "longitude_deg": "138.921683", + "elevation_ft": "6500", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Ilugwa", + "scheduled_service": "no", + "local_code": "ILG", + "keywords": "WZ12" + }, + { + "id": "310412", + "ident": "ID-0068", + "type": "small_airport", + "name": "Iratoi Airstrip", + "latitude_deg": "-3.2389", + "longitude_deg": "137.3339", + "elevation_ft": "352", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Iratoi", + "scheduled_service": "no", + "local_code": "IRA", + "keywords": "WZ14" + }, + { + "id": "310414", + "ident": "ID-0069", + "type": "small_airport", + "name": "Iray Airstrip", + "latitude_deg": "-1.3297", + "longitude_deg": "133.9115", + "elevation_ft": "6464", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Iray", + "scheduled_service": "no", + "local_code": "IRY", + "keywords": "WZ15" + }, + { + "id": "310416", + "ident": "ID-0070", + "type": "small_airport", + "name": "Iwur Airstrip", + "latitude_deg": "-5.139139", + "longitude_deg": "140.717638", + "elevation_ft": "820", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Iwur", + "scheduled_service": "yes", + "local_code": "IWR", + "keywords": "WZ17" + }, + { + "id": "310422", + "ident": "ID-0071", + "type": "small_airport", + "name": "Jila Airstrip", + "latitude_deg": "-4.24677", + "longitude_deg": "137.59563", + "elevation_ft": "4390", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Jila", + "scheduled_service": "no", + "local_code": "JIL", + "keywords": "WZ20" + }, + { + "id": "310425", + "ident": "ID-0072", + "type": "small_airport", + "name": "Jita Airstrip", + "latitude_deg": "-4.8564", + "longitude_deg": "137.7019", + "elevation_ft": "40", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Jita", + "scheduled_service": "no", + "local_code": "JIT", + "keywords": "WZ21" + }, + { + "id": "310427", + "ident": "ID-0073", + "type": "small_airport", + "name": "Kanggime Airstrip", + "latitude_deg": "-3.665978", + "longitude_deg": "138.361559", + "elevation_ft": "4990", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Kanggime", + "scheduled_service": "no", + "local_code": "KAN", + "keywords": "WZ28" + }, + { + "id": "310443", + "ident": "ID-0074", + "type": "small_airport", + "name": "Kasonaweja Airstrip", + "latitude_deg": "-2.3007", + "longitude_deg": "138.0327", + "elevation_ft": "88", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Kasonaweja", + "scheduled_service": "no", + "local_code": "KAS", + "keywords": "WZ31" + }, + { + "id": "310445", + "ident": "ID-0075", + "type": "small_airport", + "name": "Kaure Airstrip", + "latitude_deg": "-3.469809", + "longitude_deg": "140.362085", + "elevation_ft": "700", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Kaure", + "scheduled_service": "no", + "local_code": "KAU", + "keywords": "Aurina, WZ32" + }, + { + "id": "310449", + "ident": "ID-0076", + "type": "small_airport", + "name": "Kedembak Airstrip", + "latitude_deg": "0.5906", + "longitude_deg": "111.302", + "elevation_ft": "170", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Kedembak", + "scheduled_service": "no", + "keywords": "WZ36" + }, + { + "id": "310452", + "ident": "ID-0077", + "type": "small_airport", + "name": "Kelansam Airstrip", + "latitude_deg": "0.1228", + "longitude_deg": "111.4197", + "elevation_ft": "96", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Kelansam", + "scheduled_service": "no", + "local_code": "KEL", + "keywords": "WZ39" + }, + { + "id": "310455", + "ident": "ID-0078", + "type": "small_airport", + "name": "Keneyan Airstrip", + "latitude_deg": "-4.5995", + "longitude_deg": "138.3844", + "elevation_ft": "449", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Keneyan", + "scheduled_service": "no", + "local_code": "KEN", + "keywords": "WZ41, Kenyem, Kenyam" + }, + { + "id": "310458", + "ident": "ID-0079", + "type": "small_airport", + "name": "Kerapak Airstrip", + "latitude_deg": "0.0939", + "longitude_deg": "111.9083", + "elevation_ft": "157", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Kerapak", + "scheduled_service": "no", + "local_code": "KRA", + "keywords": "WZ42" + }, + { + "id": "310463", + "ident": "ID-0080", + "type": "small_airport", + "name": "Kiwi Airstrip", + "latitude_deg": "-4.697841", + "longitude_deg": "140.722425", + "elevation_ft": "5260", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Kiwi", + "scheduled_service": "yes", + "local_code": "KIW" + }, + { + "id": "310465", + "ident": "ID-0081", + "type": "small_airport", + "name": "Kobagma Airport", + "latitude_deg": "-3.666539", + "longitude_deg": "139.058758", + "elevation_ft": "3195", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Kobagma", + "scheduled_service": "no", + "keywords": "WZ44" + }, + { + "id": "310468", + "ident": "ID-0082", + "type": "small_airport", + "name": "Komopa Airstrip", + "latitude_deg": "-3.7998", + "longitude_deg": "136.4775", + "elevation_ft": "5822", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Komopa", + "scheduled_service": "no", + "local_code": "KOM", + "keywords": "WZ45" + }, + { + "id": "310470", + "ident": "ID-0083", + "type": "small_airport", + "name": "Koropun Airstrip", + "latitude_deg": "-4.479226", + "longitude_deg": "139.649894", + "elevation_ft": "5900", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Koropun", + "scheduled_service": "no", + "local_code": "KOR", + "keywords": "WZ48" + }, + { + "id": "310474", + "ident": "ID-0084", + "type": "small_airport", + "name": "Kuala Kurun", + "latitude_deg": "-1.1277", + "longitude_deg": "113.8746", + "elevation_ft": "145", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KT", + "municipality": "Kuala Kurun", + "scheduled_service": "no", + "keywords": "WT81" + }, + { + "id": "310478", + "ident": "ID-0085", + "type": "small_airport", + "name": "Kuala Randau Airstrip", + "latitude_deg": "-0.5824", + "longitude_deg": "110.4728", + "elevation_ft": "240", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Kuala Randau", + "scheduled_service": "no", + "keywords": "WZ54" + }, + { + "id": "310480", + "ident": "ID-0086", + "type": "small_airport", + "name": "Kustera Airstrip", + "latitude_deg": "-2.7467", + "longitude_deg": "137.92", + "elevation_ft": "350", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Kustera", + "scheduled_service": "no", + "local_code": "KUS", + "keywords": "WZ57" + }, + { + "id": "310482", + "ident": "ID-0087", + "type": "small_airport", + "name": "Kwerba Airstrip", + "latitude_deg": "-2.6434", + "longitude_deg": "138.4087", + "elevation_ft": "247", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Kwerba", + "scheduled_service": "no", + "local_code": "KWE", + "keywords": "WZ59" + }, + { + "id": "310484", + "ident": "ID-0088", + "type": "small_airport", + "name": "Kwijawagi", + "latitude_deg": "-4.0256", + "longitude_deg": "138.2046", + "elevation_ft": "9288", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Kwijawagi", + "scheduled_service": "no", + "local_code": "KWI", + "keywords": "WZ60, Kwiyawagi" + }, + { + "id": "310490", + "ident": "ID-0089", + "type": "small_airport", + "name": "Lake Holmes Airstrip", + "latitude_deg": "-2.4716", + "longitude_deg": "137.9879", + "elevation_ft": "1300", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Danau Bira", + "scheduled_service": "no", + "local_code": "LAH", + "keywords": "WZ61" + }, + { + "id": "310492", + "ident": "ID-0090", + "type": "small_airport", + "name": "Landikma Airstrip", + "latitude_deg": "-3.8212", + "longitude_deg": "139.2423", + "elevation_ft": "3345", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Landikma", + "scheduled_service": "no", + "local_code": "LAN", + "keywords": "WZ64" + }, + { + "id": "310494", + "ident": "ID-0091", + "type": "small_airport", + "name": "Langda Airstrip", + "latitude_deg": "-4.6785", + "longitude_deg": "139.9745", + "elevation_ft": "6480", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Langda", + "scheduled_service": "no", + "local_code": "LGD", + "keywords": "WZ65" + }, + { + "id": "310500", + "ident": "ID-0092", + "type": "small_airport", + "name": "Lokok Airstrip", + "latitude_deg": "1.0215", + "longitude_deg": "110.0505", + "elevation_ft": "1855", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Lokok", + "scheduled_service": "no", + "keywords": "WZ70" + }, + { + "id": "310502", + "ident": "ID-0093", + "type": "small_airport", + "name": "Long Alango Airstrip", + "latitude_deg": "2.9304", + "longitude_deg": "115.8512", + "elevation_ft": "1292", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KU", + "municipality": "Long Alango", + "scheduled_service": "no", + "keywords": "WZ71" + }, + { + "id": "310513", + "ident": "ID-0094", + "type": "small_airport", + "name": "Long Rungan", + "latitude_deg": "3.5994", + "longitude_deg": "115.8418", + "elevation_ft": "2880", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KU", + "municipality": "Long Rungan", + "scheduled_service": "yes", + "keywords": "WZ86, Long Rongan" + }, + { + "id": "310515", + "ident": "ID-0095", + "type": "small_airport", + "name": "Long Segar Airstrip", + "latitude_deg": "0.7981", + "longitude_deg": "116.8157", + "elevation_ft": "120", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KI", + "municipality": "Long Segar", + "scheduled_service": "no", + "keywords": "WZ87" + }, + { + "id": "310518", + "ident": "ID-0096", + "type": "small_airport", + "name": "Luban Airstrip", + "latitude_deg": "-4.213917", + "longitude_deg": "140.559755", + "elevation_ft": "840", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Luban", + "scheduled_service": "no", + "local_code": "LUB", + "keywords": "WZ91" + }, + { + "id": "310521", + "ident": "ID-0097", + "type": "small_airport", + "name": "Lumbis Airstrip", + "latitude_deg": "4.3038", + "longitude_deg": "116.2175", + "elevation_ft": "575", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KU", + "municipality": "Lumbis", + "scheduled_service": "no", + "keywords": "WZ94" + }, + { + "id": "310523", + "ident": "ID-0098", + "type": "small_airport", + "name": "Madya Raya Airstrip", + "latitude_deg": "-0.865", + "longitude_deg": "111.6637", + "elevation_ft": "380", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Madya Raya", + "scheduled_service": "no", + "keywords": "WZ96" + }, + { + "id": "310525", + "ident": "ID-0099", + "type": "small_airport", + "name": "Magoda Airstrip", + "latitude_deg": "-3.9906", + "longitude_deg": "135.8532", + "elevation_ft": "5260", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Magoda", + "scheduled_service": "no", + "local_code": "MGD", + "keywords": "WZ98" + }, + { + "id": "310606", + "ident": "ID-0100", + "type": "small_airport", + "name": "Oklip Airstrip", + "latitude_deg": "-4.762095", + "longitude_deg": "140.780554", + "elevation_ft": "6300", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Oklip", + "scheduled_service": "yes", + "local_code": "OKL", + "keywords": "WW43" + }, + { + "id": "310679", + "ident": "ID-0101", + "type": "small_airport", + "name": "Nalca Airstrip", + "latitude_deg": "-4.3636", + "longitude_deg": "139.8351", + "elevation_ft": "5250", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Kalca", + "scheduled_service": "no", + "keywords": "WW22" + }, + { + "id": "310682", + "ident": "ID-0102", + "type": "small_airport", + "name": "Nanga Labang Airstrip", + "latitude_deg": "0.228", + "longitude_deg": "111.65084", + "elevation_ft": "83", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Nanga Labang", + "scheduled_service": "no", + "keywords": "WW24" + }, + { + "id": "310692", + "ident": "ID-0103", + "type": "small_airport", + "name": "Nanga Mawong Airstrip", + "latitude_deg": "-0.4322", + "longitude_deg": "112.3271", + "elevation_ft": "286", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Nanga Mawong", + "scheduled_service": "no", + "keywords": "WW26" + }, + { + "id": "310695", + "ident": "ID-0104", + "type": "small_airport", + "name": "Nanga Merakai Airstrip", + "latitude_deg": "0.7024", + "longitude_deg": "111.5225", + "elevation_ft": "112", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Nanga Merakai", + "scheduled_service": "no", + "local_code": "MER", + "keywords": "WW52" + }, + { + "id": "310697", + "ident": "ID-0105", + "type": "small_airport", + "name": "Nanga Nyabu Airstrip", + "latitude_deg": "1.0152", + "longitude_deg": "112.714", + "elevation_ft": "146", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Nanga Nyabu", + "scheduled_service": "no", + "keywords": "WW27" + }, + { + "id": "310699", + "ident": "ID-0106", + "type": "small_airport", + "name": "Nanga Ruan Airstrip", + "latitude_deg": "0.6283", + "longitude_deg": "113.1753", + "elevation_ft": "278", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Nanga Ruan", + "scheduled_service": "no", + "keywords": "WW29" + }, + { + "id": "310701", + "ident": "ID-0107", + "type": "small_airport", + "name": "Nenei Airstrip", + "latitude_deg": "-1.492", + "longitude_deg": "133.9956", + "elevation_ft": "2864", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Nenei", + "scheduled_service": "no", + "local_code": "NEN", + "keywords": "WW31" + }, + { + "id": "310703", + "ident": "ID-0108", + "type": "small_airport", + "name": "Nain Baru Airstrip", + "latitude_deg": "1.4032", + "longitude_deg": "115.3267", + "elevation_ft": "1783", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KU", + "municipality": "Nian Baru", + "scheduled_service": "no", + "keywords": "WT78" + }, + { + "id": "310705", + "ident": "ID-0109", + "type": "small_airport", + "name": "Nania Airstrip", + "latitude_deg": "-4.362913", + "longitude_deg": "139.30244", + "elevation_ft": "7060", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Nania", + "scheduled_service": "no", + "local_code": "NIN", + "keywords": "WW34" + }, + { + "id": "310838", + "ident": "ID-0110", + "type": "small_airport", + "name": "Nipsan Airstrip", + "latitude_deg": "-4.116755", + "longitude_deg": "139.647303", + "elevation_ft": "6000", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Nipsan", + "scheduled_service": "no", + "local_code": "NIP", + "keywords": "WW35" + }, + { + "id": "310841", + "ident": "ID-0111", + "type": "small_airport", + "name": "Okyap Airstrip", + "latitude_deg": "-4.743448", + "longitude_deg": "140.848267", + "elevation_ft": "4370", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Okyap", + "scheduled_service": "yes", + "local_code": "OKY", + "keywords": "WW44, Okyop" + }, + { + "id": "310843", + "ident": "ID-0112", + "type": "small_airport", + "name": "Omban Airstrip", + "latitude_deg": "-4.368741", + "longitude_deg": "140.392535", + "elevation_ft": "3078", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Omban", + "scheduled_service": "no", + "local_code": "OMB", + "keywords": "WW45" + }, + { + "id": "310844", + "ident": "ID-0113", + "type": "small_airport", + "name": "Onondowa/Rampi Airport", + "latitude_deg": "-2.1254", + "longitude_deg": "120.2967", + "elevation_ft": "3230", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SN", + "municipality": "Rampi", + "scheduled_service": "no", + "keywords": "WW46" + }, + { + "id": "310887", + "ident": "ID-0114", + "type": "small_airport", + "name": "Padang Pagai Airstrip", + "latitude_deg": "-2.857831", + "longitude_deg": "100.214446", + "elevation_ft": "141", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SB", + "municipality": "Pulau Pagai-Selatan", + "scheduled_service": "no", + "keywords": "WW48, Bandara Minas" + }, + { + "id": "310889", + "ident": "ID-0115", + "type": "small_airport", + "name": "Pagai Airstrip", + "latitude_deg": "-3.5362", + "longitude_deg": "139.7826", + "elevation_ft": "305", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Pagai", + "scheduled_service": "no", + "local_code": "PAG", + "keywords": "WW49" + }, + { + "id": "310890", + "ident": "ID-0116", + "type": "small_airport", + "name": "Panggema/Hasan Airport", + "latitude_deg": "-4.135396", + "longitude_deg": "139.377151", + "elevation_ft": "4860", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Panggema", + "scheduled_service": "no", + "keywords": "WW51" + }, + { + "id": "310892", + "ident": "ID-0117", + "type": "small_airport", + "name": "Papasena Airstrip", + "latitude_deg": "-2.915", + "longitude_deg": "138.5876", + "elevation_ft": "224", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Papasena", + "scheduled_service": "no", + "local_code": "PAP", + "keywords": "WW53" + }, + { + "id": "310898", + "ident": "ID-0118", + "type": "small_airport", + "name": "Pass Valley Airstrip", + "latitude_deg": "-3.85876", + "longitude_deg": "139.100268", + "elevation_ft": "6500", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Pass Valley", + "scheduled_service": "no", + "local_code": "PAV", + "keywords": "WW56" + }, + { + "id": "310900", + "ident": "ID-0119", + "type": "small_airport", + "name": "Piramid Airstrip", + "latitude_deg": "-3.901493", + "longitude_deg": "138.764276", + "elevation_ft": "5630", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Piramid", + "scheduled_service": "no", + "local_code": "PYR", + "keywords": "WW65, Pyramid Airstrip" + }, + { + "id": "310903", + "ident": "ID-0120", + "type": "small_airport", + "name": "Pit River Airstrip", + "latitude_deg": "-3.9819", + "longitude_deg": "138.5338", + "elevation_ft": "7090", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Pit", + "scheduled_service": "no", + "keywords": "WW66" + }, + { + "id": "310904", + "ident": "ID-0121", + "type": "small_airport", + "name": "Pogapa Airstrip", + "latitude_deg": "-3.752", + "longitude_deg": "136.8457", + "elevation_ft": "6460", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Pogapa", + "scheduled_service": "no", + "gps_code": "WAYS", + "local_code": "POG", + "keywords": "WW68" + }, + { + "id": "310905", + "ident": "ID-0122", + "type": "small_airport", + "name": "Polimo Airstrip", + "latitude_deg": "-4.219223", + "longitude_deg": "139.034607", + "elevation_ft": "5550", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Polimo", + "scheduled_service": "no", + "local_code": "POL", + "keywords": "WW69" + }, + { + "id": "310908", + "ident": "ID-0123", + "type": "small_airport", + "name": "Poga Airstrip", + "latitude_deg": "-3.801567", + "longitude_deg": "138.587449", + "elevation_ft": "7352", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Poga", + "scheduled_service": "no", + "local_code": "PGA", + "keywords": "WW67" + }, + { + "id": "310909", + "ident": "ID-0124", + "type": "small_airport", + "name": "Prongkoli Airstrip", + "latitude_deg": "-4.188308", + "longitude_deg": "139.342232", + "elevation_ft": "6385", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Prongkoli", + "scheduled_service": "no", + "local_code": "PRO", + "keywords": "WW70" + }, + { + "id": "310963", + "ident": "ID-0125", + "type": "closed", + "name": "Owi Airfield", + "latitude_deg": "-1.2455", + "longitude_deg": "136.2091", + "elevation_ft": "83", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Owi Island", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Owi_Airfield" + }, + { + "id": "310979", + "ident": "ID-0126", + "type": "small_airport", + "name": "Puldamat Airstrip", + "latitude_deg": "-4.3196", + "longitude_deg": "139.8704", + "elevation_ft": "5450", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Puldamat", + "scheduled_service": "no", + "local_code": "PUL", + "keywords": "WW71" + }, + { + "id": "310981", + "ident": "ID-0127", + "type": "small_airport", + "name": "Rantau Prapat/Padang Halaban Airport", + "latitude_deg": "2.3154", + "longitude_deg": "99.8277", + "elevation_ft": "74", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SU", + "municipality": "Rantau Prapat/Padang Halaban", + "scheduled_service": "no", + "keywords": "WW76" + }, + { + "id": "310985", + "ident": "ID-0128", + "type": "small_airport", + "name": "Riam Sejawak Airstrip", + "latitude_deg": "0.9717", + "longitude_deg": "111.0994", + "elevation_ft": "140", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Riam Sejawak", + "scheduled_service": "no", + "keywords": "WW79" + }, + { + "id": "310987", + "ident": "ID-0129", + "type": "small_airport", + "name": "Ros Bori Airstrip", + "latitude_deg": "-1.6586", + "longitude_deg": "136.102", + "elevation_ft": "67", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Ros Bori - Yapen Island", + "scheduled_service": "no", + "local_code": "ROS", + "keywords": "WW82, Japen Island" + }, + { + "id": "311002", + "ident": "ID-0130", + "type": "small_airport", + "name": "Samboka Airstrip", + "latitude_deg": "-4.836839", + "longitude_deg": "139.714615", + "elevation_ft": "560", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Samboka", + "scheduled_service": "no", + "local_code": "SAM", + "keywords": "WW88, Samboga" + }, + { + "id": "311005", + "ident": "ID-0131", + "type": "small_airport", + "name": "Sape Airstrip", + "latitude_deg": "-4.7655", + "longitude_deg": "140.5054", + "elevation_ft": "6885", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Sape", + "scheduled_service": "yes", + "local_code": "SAP", + "keywords": "WW89" + }, + { + "id": "353599", + "ident": "ID-0132", + "type": "heliport", + "name": "Tahuna Heliport", + "latitude_deg": "3.60957", + "longitude_deg": "125.50709", + "elevation_ft": "43", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SA", + "municipality": "Tahuna", + "scheduled_service": "no" + }, + { + "id": "311019", + "ident": "ID-0133", + "type": "small_airport", + "name": "Sela Airstrip", + "latitude_deg": "-4.550661", + "longitude_deg": "139.734453", + "elevation_ft": "6545", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Sela", + "scheduled_service": "no", + "local_code": "SEL", + "keywords": "WW93" + }, + { + "id": "311141", + "ident": "ID-0134", + "type": "small_airport", + "name": "Seradala Airstrip", + "latitude_deg": "-4.9797", + "longitude_deg": "139.9035", + "elevation_ft": "452", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Seradala", + "scheduled_service": "no", + "keywords": "WT14" + }, + { + "id": "311142", + "ident": "ID-0135", + "type": "small_airport", + "name": "Serimbu Airstrip", + "latitude_deg": "0.741", + "longitude_deg": "110.123", + "elevation_ft": "244", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Serimbu", + "scheduled_service": "no", + "local_code": "SER", + "keywords": "WT01" + }, + { + "id": "311145", + "ident": "ID-0136", + "type": "small_airport", + "name": "Serukam", + "latitude_deg": "0.797", + "longitude_deg": "109.3317", + "elevation_ft": "190", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Serukam", + "scheduled_service": "no", + "keywords": "WT02" + }, + { + "id": "311148", + "ident": "ID-0137", + "type": "small_airport", + "name": "Sikari Airstrip", + "latitude_deg": "-2.7616", + "longitude_deg": "138.3859", + "elevation_ft": "217", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Sikari", + "scheduled_service": "no", + "local_code": "SIK", + "keywords": "WT04" + }, + { + "id": "311149", + "ident": "ID-0138", + "type": "small_airport", + "name": "Silimo Airstrip", + "latitude_deg": "-4.466012", + "longitude_deg": "138.943062", + "elevation_ft": "5760", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Silimo", + "scheduled_service": "no" + }, + { + "id": "311154", + "ident": "ID-0139", + "type": "small_airport", + "name": "Syekh Hamzah Fansyuri Airport", + "latitude_deg": "2.2695", + "longitude_deg": "97.9666", + "elevation_ft": "17", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-AC", + "municipality": "Singkil", + "scheduled_service": "yes", + "wikipedia_link": "https://en.wikipedia.org/wiki/Syekh_Hamzah_Fansyuri_Airport", + "keywords": "WT13" + }, + { + "id": "311168", + "ident": "ID-0140", + "type": "heliport", + "name": "Santosa Hospital Helipad", + "latitude_deg": "-6.915161", + "longitude_deg": "107.600124", + "elevation_ft": "2430", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JB", + "municipality": "Bandung", + "scheduled_service": "no" + }, + { + "id": "311170", + "ident": "ID-0141", + "type": "small_airport", + "name": "Siriwo Airstrip", + "latitude_deg": "-3.5388", + "longitude_deg": "135.948971", + "elevation_ft": "533", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Siriwo", + "scheduled_service": "no", + "local_code": "SIW", + "keywords": "WT17" + }, + { + "id": "311172", + "ident": "ID-0142", + "type": "small_airport", + "name": "Soba Airstrip", + "latitude_deg": "-4.345427", + "longitude_deg": "139.179196", + "elevation_ft": "6125", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Soba", + "scheduled_service": "no", + "local_code": "SOB", + "keywords": "WT20" + }, + { + "id": "311210", + "ident": "ID-0143", + "type": "small_airport", + "name": "Sumo Airstrip", + "latitude_deg": "-4.750469", + "longitude_deg": "139.353338", + "elevation_ft": "210", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Sumo", + "scheduled_service": "no", + "keywords": "WT22" + }, + { + "id": "311212", + "ident": "ID-0144", + "type": "small_airport", + "name": "Sumtamon Airstrip", + "latitude_deg": "-4.8083", + "longitude_deg": "140.1715", + "elevation_ft": "4640", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Sumtamon", + "scheduled_service": "yes", + "local_code": "SMT", + "keywords": "WT23" + }, + { + "id": "311215", + "ident": "ID-0145", + "type": "small_airport", + "name": "Sungai Tontang Airstrip", + "latitude_deg": "-0.731052", + "longitude_deg": "110.376967", + "elevation_ft": "145", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Sungai Tontang", + "scheduled_service": "no", + "keywords": "WT26" + }, + { + "id": "311218", + "ident": "ID-0146", + "type": "closed", + "name": "Suswa Airstrip", + "latitude_deg": "-0.942", + "longitude_deg": "132.298", + "elevation_ft": "583", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Suswa", + "scheduled_service": "no", + "local_code": "SUS", + "keywords": "WT28" + }, + { + "id": "311221", + "ident": "ID-0147", + "type": "closed", + "name": "Synopi Airstrip", + "latitude_deg": "-0.842054", + "longitude_deg": "132.926191", + "elevation_ft": "1648", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Synopi", + "scheduled_service": "no", + "keywords": "WT30" + }, + { + "id": "311226", + "ident": "ID-0148", + "type": "small_airport", + "name": "Taige Airstrip", + "latitude_deg": "-1.3105", + "longitude_deg": "133.8517", + "elevation_ft": "6248", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Taige", + "scheduled_service": "no", + "local_code": "TGE", + "keywords": "WT32" + }, + { + "id": "311231", + "ident": "ID-0149", + "type": "small_airport", + "name": "Taiyeve Airstrip", + "latitude_deg": "-3.2331", + "longitude_deg": "138.4458", + "elevation_ft": "176", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Taiyeve", + "scheduled_service": "no", + "local_code": "TAV", + "keywords": "WT34" + }, + { + "id": "311233", + "ident": "ID-0150", + "type": "small_airport", + "name": "Takar Airstrip", + "latitude_deg": "-2.0375", + "longitude_deg": "139.113", + "elevation_ft": "55", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Takar", + "scheduled_service": "no", + "keywords": "WT35" + }, + { + "id": "311235", + "ident": "ID-0151", + "type": "small_airport", + "name": "Tangma Airstrip", + "latitude_deg": "-4.25981", + "longitude_deg": "139.046631", + "elevation_ft": "5860", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Tangma", + "scheduled_service": "no", + "local_code": "TNG", + "keywords": "WT37" + }, + { + "id": "311285", + "ident": "ID-0152", + "type": "small_airport", + "name": "Tanjung Maju Airstrip", + "latitude_deg": "-0.7102", + "longitude_deg": "110.4991", + "elevation_ft": "175", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Tanjung Maju", + "scheduled_service": "no", + "local_code": "TJM", + "keywords": "WT40" + }, + { + "id": "311289", + "ident": "ID-0153", + "type": "small_airport", + "name": "Tayayi Airstrip", + "latitude_deg": "-3.0447", + "longitude_deg": "137.6217", + "elevation_ft": "246", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Tayayi", + "scheduled_service": "no", + "local_code": "TAI", + "keywords": "WT42" + }, + { + "id": "311290", + "ident": "ID-0154", + "type": "small_airport", + "name": "Testega Airstrip", + "latitude_deg": "-1.378076", + "longitude_deg": "133.594204", + "elevation_ft": "3750", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Testega", + "scheduled_service": "no", + "local_code": "TES", + "keywords": "WT46" + }, + { + "id": "311297", + "ident": "ID-0155", + "type": "small_airport", + "name": "Timepa Airstrip", + "latitude_deg": "-4.0047", + "longitude_deg": "135.7872", + "elevation_ft": "4940", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Timepa", + "scheduled_service": "no", + "local_code": "TIP", + "keywords": "WT48" + }, + { + "id": "311558", + "ident": "ID-0156", + "type": "small_airport", + "name": "Turmo Airstrip", + "latitude_deg": "-3.273581", + "longitude_deg": "137.558", + "elevation_ft": "286", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Turmo", + "scheduled_service": "no", + "local_code": "TUR", + "keywords": "WT51," + }, + { + "id": "311561", + "ident": "ID-0157", + "type": "small_airport", + "name": "Waff Airstrip", + "latitude_deg": "-2.3307", + "longitude_deg": "138.7489", + "elevation_ft": "255", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Waff", + "scheduled_service": "no", + "keywords": "WT55" + }, + { + "id": "311564", + "ident": "ID-0158", + "type": "small_airport", + "name": "Walerek Airstrip", + "latitude_deg": "-3.993361", + "longitude_deg": "139.491977", + "elevation_ft": "2420", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Walerek", + "scheduled_service": "no", + "local_code": "WEL", + "keywords": "WT58" + }, + { + "id": "311630", + "ident": "ID-0159", + "type": "small_airport", + "name": "Walma Airstrip", + "latitude_deg": "-4.217782", + "longitude_deg": "139.393555", + "elevation_ft": "6400", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Walma", + "scheduled_service": "no", + "local_code": "WAL" + }, + { + "id": "311632", + "ident": "ID-0160", + "type": "small_airport", + "name": "Wandama Airstrip", + "latitude_deg": "-4.5472", + "longitude_deg": "138.55225", + "elevation_ft": "761", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Wandama", + "scheduled_service": "no", + "keywords": "WT61" + }, + { + "id": "311634", + "ident": "ID-0161", + "type": "small_airport", + "name": "Wanggemalu Airstrip", + "latitude_deg": "-5.4974", + "longitude_deg": "139.9783", + "elevation_ft": "219", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Wanggemalu", + "scheduled_service": "no", + "local_code": "WNG", + "keywords": "WT62" + }, + { + "id": "311640", + "ident": "ID-0162", + "type": "small_airport", + "name": "Wolo Airstrip", + "latitude_deg": "-3.8505", + "longitude_deg": "138.8603", + "elevation_ft": "5870", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Wolo", + "scheduled_service": "no", + "local_code": "WOL", + "keywords": "WT68" + }, + { + "id": "311641", + "ident": "ID-0163", + "type": "small_airport", + "name": "Wunin Airstrip", + "latitude_deg": "-3.650771", + "longitude_deg": "138.554313", + "elevation_ft": "5385", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Wunin", + "scheduled_service": "no", + "local_code": "WUN", + "keywords": "WT70" + }, + { + "id": "311643", + "ident": "ID-0164", + "type": "small_airport", + "name": "Yaniruma Airstrip", + "latitude_deg": "-5.4206", + "longitude_deg": "139.8197", + "elevation_ft": "155", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Yaniruma", + "scheduled_service": "no", + "keywords": "WT71" + }, + { + "id": "311645", + "ident": "ID-0165", + "type": "small_airport", + "name": "Yapil Airstrip", + "latitude_deg": "-4.540447", + "longitude_deg": "140.565691", + "elevation_ft": "4470", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Yapil", + "scheduled_service": "yes", + "local_code": "YAP", + "keywords": "WT73" + }, + { + "id": "311647", + "ident": "ID-0166", + "type": "small_airport", + "name": "Yigi Airstrip", + "latitude_deg": "-4.228468", + "longitude_deg": "138.393778", + "elevation_ft": "6100", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Yigi", + "scheduled_service": "no", + "local_code": "YIG", + "keywords": "WT74" + }, + { + "id": "311649", + "ident": "ID-0167", + "type": "small_airport", + "name": "Yogosem Airstrip", + "latitude_deg": "-4.247695", + "longitude_deg": "139.168977", + "elevation_ft": "8200", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Yogosem", + "scheduled_service": "no", + "keywords": "WT75" + }, + { + "id": "311832", + "ident": "ID-0168", + "type": "small_airport", + "name": "Alama Airstrip", + "latitude_deg": "-4.2631", + "longitude_deg": "137.892387", + "elevation_ft": "3350", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Alama", + "scheduled_service": "no", + "keywords": "WX04" + }, + { + "id": "311868", + "ident": "ID-0169", + "type": "small_airport", + "name": "Bawean - Harun Thohir Airport", + "latitude_deg": "-5.723628", + "longitude_deg": "112.678889", + "elevation_ft": "93", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Bawean", + "scheduled_service": "yes", + "gps_code": "WARW", + "iata_code": "BXW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bawean_Airport", + "keywords": "Harun Thohir Airport" + }, + { + "id": "311869", + "ident": "ID-0170", + "type": "closed", + "name": "Kangean Island Airport (planned)", + "latitude_deg": "-6.86", + "longitude_deg": "115.299", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Arjasa", + "scheduled_service": "no" + }, + { + "id": "311870", + "ident": "ID-0171", + "type": "small_airport", + "name": "Aideralma Airstrip", + "latitude_deg": "-4.3341", + "longitude_deg": "137.8316", + "elevation_ft": "2730", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Aideralma", + "scheduled_service": "no", + "keywords": "WX03" + }, + { + "id": "311871", + "ident": "ID-0172", + "type": "small_airport", + "name": "Enggano Airport", + "latitude_deg": "-5.305621", + "longitude_deg": "102.189546", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-BE", + "municipality": "Enggano", + "scheduled_service": "no", + "gps_code": "WIGE" + }, + { + "id": "311872", + "ident": "ID-0173", + "type": "small_airport", + "name": "Apowo Airstrip", + "latitude_deg": "-4.063248", + "longitude_deg": "135.560018", + "elevation_ft": "5250", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Apowo", + "scheduled_service": "no", + "keywords": "WX15" + }, + { + "id": "311873", + "ident": "ID-0174", + "type": "small_airport", + "name": "Aurimi Wzil Airstrip", + "latitude_deg": "-2.182", + "longitude_deg": "138.4343", + "elevation_ft": "290", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Aurimi Wzil", + "scheduled_service": "no", + "keywords": "WX18" + }, + { + "id": "325373", + "ident": "ID-0175", + "type": "small_airport", + "name": "Bareri Airport", + "latitude_deg": "-2.981793", + "longitude_deg": "137.782715", + "elevation_ft": "300", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Bareri", + "scheduled_service": "no", + "local_code": "BAR" + }, + { + "id": "325374", + "ident": "ID-0176", + "type": "small_airport", + "name": "Bari Airport", + "latitude_deg": "-3.959166", + "longitude_deg": "139.901563", + "elevation_ft": "1660", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Bari", + "scheduled_service": "no", + "local_code": "BRI" + }, + { + "id": "325377", + "ident": "ID-0177", + "type": "small_airport", + "name": "Basiem Airport", + "latitude_deg": "-6.058573", + "longitude_deg": "138.383542", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Basiem", + "scheduled_service": "no", + "local_code": "BAS" + }, + { + "id": "325386", + "ident": "ID-0178", + "type": "small_airport", + "name": "Awimbon Airstrip", + "latitude_deg": "-5.165884", + "longitude_deg": "140.381568", + "elevation_ft": "492", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Awimbon", + "scheduled_service": "yes", + "local_code": "AWI", + "keywords": "Awinbon" + }, + { + "id": "329576", + "ident": "ID-0179", + "type": "small_airport", + "name": "Anik Airstrip", + "latitude_deg": "0.537465", + "longitude_deg": "109.742062", + "elevation_ft": "139", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Anik", + "scheduled_service": "no", + "local_code": "ANI" + }, + { + "id": "329620", + "ident": "ID-0180", + "type": "small_airport", + "name": "Yaosakor Airstrip", + "latitude_deg": "-5.603899", + "longitude_deg": "138.46525", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Yaosakor", + "scheduled_service": "no", + "local_code": "YAO" + }, + { + "id": "329625", + "ident": "ID-0181", + "type": "small_airport", + "name": "Weda Bay Airport", + "latitude_deg": "0.468328", + "longitude_deg": "127.945101", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MU", + "scheduled_service": "no" + }, + { + "id": "337306", + "ident": "ID-0182", + "type": "heliport", + "name": "Pemping Helipad", + "latitude_deg": "1.103007", + "longitude_deg": "103.797455", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-RI", + "municipality": "Batam City", + "scheduled_service": "no" + }, + { + "id": "342202", + "ident": "ID-0183", + "type": "heliport", + "name": "Landasan Heliport", + "latitude_deg": "-6.14067", + "longitude_deg": "106.1983", + "elevation_ft": "89", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-BT", + "municipality": "Serang", + "scheduled_service": "no" + }, + { + "id": "345105", + "ident": "ID-0184", + "type": "heliport", + "name": "Arjasa Laok Heliport", + "latitude_deg": "-6.87013", + "longitude_deg": "115.2864", + "elevation_ft": "75", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Arjasa", + "scheduled_service": "no" + }, + { + "id": "345106", + "ident": "ID-0185", + "type": "heliport", + "name": "Pertamina Heliport", + "latitude_deg": "-7.15784", + "longitude_deg": "115.78948", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Sapeken", + "scheduled_service": "no" + }, + { + "id": "347112", + "ident": "ID-0186", + "type": "small_airport", + "name": "Tanjung Lesung Airport", + "latitude_deg": "-6.49155", + "longitude_deg": "105.66967", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-BT", + "municipality": "Pandeglang", + "scheduled_service": "no" + }, + { + "id": "347113", + "ident": "ID-0187", + "type": "heliport", + "name": "Amandaratu Heliport", + "latitude_deg": "-7.37058", + "longitude_deg": "106.48564", + "elevation_ft": "112", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JB", + "municipality": "Sukabumi", + "scheduled_service": "no" + }, + { + "id": "347151", + "ident": "ID-0188", + "type": "heliport", + "name": "Aceh Indonesian National Police Headquarters Heliport", + "latitude_deg": "5.57766", + "longitude_deg": "95.34874", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-AC", + "municipality": "Banda Aceh", + "scheduled_service": "no" + }, + { + "id": "347152", + "ident": "ID-0189", + "type": "heliport", + "name": "Takengon Indonesian National Police Heliport", + "latitude_deg": "4.624121", + "longitude_deg": "96.843241", + "elevation_ft": "4158", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-AC", + "municipality": "Takengon", + "scheduled_service": "no" + }, + { + "id": "347153", + "ident": "ID-0190", + "type": "small_airport", + "name": "Sorake Airport", + "latitude_deg": "0.58884", + "longitude_deg": "97.71899", + "elevation_ft": "125", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SU", + "municipality": "Teluk Dalam", + "scheduled_service": "no" + }, + { + "id": "347154", + "ident": "ID-0191", + "type": "small_airport", + "name": "Tambling Airport", + "latitude_deg": "-5.92113", + "longitude_deg": "104.55816", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-LA", + "municipality": "Hutan", + "scheduled_service": "no" + }, + { + "id": "348330", + "ident": "ID-0192", + "type": "closed", + "name": "Sorido Airfield", + "latitude_deg": "-1.17363", + "longitude_deg": "136.05894", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Biak", + "scheduled_service": "no" + }, + { + "id": "348750", + "ident": "ID-0193", + "type": "small_airport", + "name": "Kubibkop Airport", + "latitude_deg": "-4.79436", + "longitude_deg": "140.69447", + "elevation_ft": "7470", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Kubibkop", + "scheduled_service": "yes", + "keywords": "Kubipkop" + }, + { + "id": "348821", + "ident": "ID-0194", + "type": "small_airport", + "name": "Korowai Batu Danowage Airport", + "latitude_deg": "-5.2127", + "longitude_deg": "140.017582", + "elevation_ft": "371", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Danowage", + "scheduled_service": "no" + }, + { + "id": "350463", + "ident": "ID-0195", + "type": "small_airport", + "name": "Molding Airstrip", + "latitude_deg": "-4.891004", + "longitude_deg": "140.74213", + "elevation_ft": "4100", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Pegunungan Bintang", + "scheduled_service": "yes", + "keywords": "Peper" + }, + { + "id": "350464", + "ident": "ID-0196", + "type": "small_airport", + "name": "Tarup Airstrip", + "latitude_deg": "-5.097671", + "longitude_deg": "140.821627", + "elevation_ft": "2000", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Tarup", + "scheduled_service": "yes" + }, + { + "id": "350465", + "ident": "ID-0197", + "type": "small_airport", + "name": "Tinibil Airstrip", + "latitude_deg": "-4.824475", + "longitude_deg": "140.87378", + "elevation_ft": "5400", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Pegunungan Bintang", + "scheduled_service": "yes", + "keywords": "Tin" + }, + { + "id": "350466", + "ident": "ID-0198", + "type": "small_airport", + "name": "Denom Airstrip", + "latitude_deg": "-5.144915", + "longitude_deg": "140.967065", + "elevation_ft": "2200", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Denom", + "scheduled_service": "no" + }, + { + "id": "350467", + "ident": "ID-0199", + "type": "small_airport", + "name": "Okbab Airstrip", + "latitude_deg": "-4.586015", + "longitude_deg": "140.499844", + "elevation_ft": "6000", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Okbab", + "scheduled_service": "yes" + }, + { + "id": "350468", + "ident": "ID-0200", + "type": "small_airport", + "name": "Alemson Airstrip", + "latitude_deg": "-4.816571", + "longitude_deg": "140.222819", + "elevation_ft": "5200", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Alemson", + "scheduled_service": "yes" + }, + { + "id": "350485", + "ident": "ID-0201", + "type": "small_airport", + "name": "Kotyobakon Airstrip", + "latitude_deg": "-4.638376", + "longitude_deg": "140.654907", + "elevation_ft": "5100", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Pegunungan Bintang Regency", + "scheduled_service": "yes" + }, + { + "id": "350486", + "ident": "ID-0202", + "type": "small_airport", + "name": "Mipol Airstrip", + "latitude_deg": "-4.605771", + "longitude_deg": "140.634806", + "elevation_ft": "4800", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Pegunungan Bintang Regency", + "scheduled_service": "yes" + }, + { + "id": "350487", + "ident": "ID-0203", + "type": "small_airport", + "name": "Binban Airstrip", + "latitude_deg": "-4.585309", + "longitude_deg": "140.533962", + "elevation_ft": "5200", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Binban", + "scheduled_service": "yes" + }, + { + "id": "350488", + "ident": "ID-0204", + "type": "small_airport", + "name": "Kaklup Airstrip", + "latitude_deg": "-4.620771", + "longitude_deg": "140.531688", + "elevation_ft": "6500", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Kaklup", + "scheduled_service": "yes" + }, + { + "id": "350489", + "ident": "ID-0205", + "type": "small_airport", + "name": "Maksum Airstrip", + "latitude_deg": "-4.58066", + "longitude_deg": "140.515995", + "elevation_ft": "5500", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Pegunungan Bintang Regency", + "scheduled_service": "yes" + }, + { + "id": "350490", + "ident": "ID-0206", + "type": "small_airport", + "name": "Maksum Airstrip", + "latitude_deg": "-4.632613", + "longitude_deg": "140.497466", + "elevation_ft": "6900", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Pegunungan Bintang Regency", + "scheduled_service": "no", + "keywords": "Markum" + }, + { + "id": "350498", + "ident": "ID-0207", + "type": "small_airport", + "name": "Pedam Airstrip", + "latitude_deg": "-4.539485", + "longitude_deg": "140.462018", + "elevation_ft": "6400", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Pegunungan Bintang Regency", + "scheduled_service": "yes" + }, + { + "id": "350517", + "ident": "ID-0208", + "type": "small_airport", + "name": "Dumpasik Airstrip", + "latitude_deg": "-4.455194", + "longitude_deg": "140.508871", + "elevation_ft": "4200", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Dumpasik", + "scheduled_service": "yes" + }, + { + "id": "350518", + "ident": "ID-0209", + "type": "small_airport", + "name": "Bordamban Airport", + "latitude_deg": "-4.439924", + "longitude_deg": "140.484527", + "elevation_ft": "3000", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Bordamban", + "scheduled_service": "yes" + }, + { + "id": "350520", + "ident": "ID-0210", + "type": "small_airport", + "name": "Kirimu Airstrip", + "latitude_deg": "-4.464786", + "longitude_deg": "140.393016", + "elevation_ft": "6400", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Pegunungan Bintang Regency", + "scheduled_service": "yes" + }, + { + "id": "350539", + "ident": "ID-0211", + "type": "small_airport", + "name": "Hangmata Airstrip", + "latitude_deg": "-4.49226", + "longitude_deg": "140.657322", + "elevation_ft": "3300", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Hangmata", + "scheduled_service": "yes" + }, + { + "id": "41422", + "ident": "ID-0212", + "type": "closed", + "name": "Arso Airport", + "latitude_deg": "-2.933333", + "longitude_deg": "140.78334", + "elevation_ft": "208", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Arso", + "scheduled_service": "no", + "keywords": "WAJA, ARJ" + }, + { + "id": "32626", + "ident": "ID-0213", + "type": "closed", + "name": "Biak Manuhua Airport", + "latitude_deg": "-1.173038", + "longitude_deg": "136.081181", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Biak", + "scheduled_service": "no", + "keywords": "WABU" + }, + { + "id": "352224", + "ident": "ID-0214", + "type": "small_airport", + "name": "Blangkejeren Airport", + "latitude_deg": "3.94548", + "longitude_deg": "97.35968", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-AC", + "municipality": "Kabupaten Gayo Lues", + "scheduled_service": "no", + "iata_code": "GYO" + }, + { + "id": "354033", + "ident": "ID-0215", + "type": "small_airport", + "name": "Bobkamu Airstrip", + "latitude_deg": "-4.463818", + "longitude_deg": "140.262414", + "elevation_ft": "4685", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Pegunungan Bintang Regency", + "scheduled_service": "no" + }, + { + "id": "354034", + "ident": "ID-0216", + "type": "small_airport", + "name": "Weime Airstrip", + "latitude_deg": "-4.354141", + "longitude_deg": "140.260381", + "elevation_ft": "4888", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Pegunungan Bintang Regency", + "scheduled_service": "no" + }, + { + "id": "354035", + "ident": "ID-0217", + "type": "small_airport", + "name": "Tumdungbon Airstrip", + "latitude_deg": "-5.179406", + "longitude_deg": "140.520099", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Pegunungan Bintang Regency", + "scheduled_service": "no", + "keywords": "Tungdunbon" + }, + { + "id": "354036", + "ident": "ID-0218", + "type": "small_airport", + "name": "Kawor Airstrip", + "latitude_deg": "-5.232712", + "longitude_deg": "140.519992", + "elevation_ft": "469", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Kawor", + "scheduled_service": "no" + }, + { + "id": "354037", + "ident": "ID-0219", + "type": "small_airport", + "name": "Dewok Airport", + "latitude_deg": "-5.278326", + "longitude_deg": "140.681963", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Boven Digoel Regency", + "scheduled_service": "no" + }, + { + "id": "354038", + "ident": "ID-0220", + "type": "small_airport", + "name": "Manggelum Airport", + "latitude_deg": "-5.416371", + "longitude_deg": "140.436231", + "elevation_ft": "217", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Boven Digoel Regency", + "scheduled_service": "no", + "gps_code": "WAJT", + "keywords": "Mangelum" + }, + { + "id": "354206", + "ident": "ID-0221", + "type": "closed", + "name": "Hollandia Airfield", + "latitude_deg": "-2.561139", + "longitude_deg": "140.479302", + "elevation_ft": "331", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Sentani", + "scheduled_service": "no" + }, + { + "id": "354209", + "ident": "ID-0222", + "type": "small_airport", + "name": "Begowre Airstrip", + "latitude_deg": "-2.982106", + "longitude_deg": "140.925279", + "elevation_ft": "360", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Begowre", + "scheduled_service": "no" + }, + { + "id": "354215", + "ident": "ID-0223", + "type": "small_airport", + "name": "Ideduna Airstrip", + "latitude_deg": "-3.961954", + "longitude_deg": "135.482025", + "elevation_ft": "6001", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Ideduna", + "scheduled_service": "no" + }, + { + "id": "354216", + "ident": "ID-0224", + "type": "small_airport", + "name": "Bias Airstrip", + "latitude_deg": "-3.999569", + "longitude_deg": "140.82041", + "elevation_ft": "397", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Bias", + "scheduled_service": "no" + }, + { + "id": "354217", + "ident": "ID-0225", + "type": "small_airport", + "name": "Walibaru Airstrip", + "latitude_deg": "-5.39973", + "longitude_deg": "140.198652", + "elevation_ft": "154", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Walibaru", + "scheduled_service": "no", + "keywords": "Biwange I, Boven Digoel" + }, + { + "id": "354218", + "ident": "ID-0226", + "type": "small_airport", + "name": "Taria Airstrip", + "latitude_deg": "-3.410527", + "longitude_deg": "138.895308", + "elevation_ft": "348", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Taria", + "scheduled_service": "no", + "keywords": "Mamberamo Raya" + }, + { + "id": "354223", + "ident": "ID-0227", + "type": "small_airport", + "name": "Dadou Airstrip", + "latitude_deg": "-3.686435", + "longitude_deg": "136.063217", + "elevation_ft": "4679", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Dadou", + "scheduled_service": "no", + "keywords": "Paniai" + }, + { + "id": "354226", + "ident": "ID-0228", + "type": "small_airport", + "name": "Daboto Airstrip", + "latitude_deg": "-3.295335", + "longitude_deg": "136.408213", + "elevation_ft": "2575", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Daboto", + "scheduled_service": "no", + "keywords": "Intan Jaya" + }, + { + "id": "354227", + "ident": "ID-0229", + "type": "small_airport", + "name": "Zotadi Airstrip", + "latitude_deg": "-3.67449", + "longitude_deg": "136.56833", + "elevation_ft": "5160", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Zotadi", + "scheduled_service": "no", + "keywords": "Intan Jaya" + }, + { + "id": "354228", + "ident": "ID-0230", + "type": "small_airport", + "name": "Pagamba Airstrip", + "latitude_deg": "-3.64307", + "longitude_deg": "136.67854", + "elevation_ft": "5690", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Pagamba", + "scheduled_service": "no", + "keywords": "Intan Jaya" + }, + { + "id": "354279", + "ident": "ID-0231", + "type": "closed", + "name": "Kemayoran Airport", + "latitude_deg": "-6.147222", + "longitude_deg": "106.85", + "elevation_ft": "12", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JK", + "municipality": "Jakarta", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kemayoran_Airport", + "keywords": "JKT, WIID" + }, + { + "id": "354547", + "ident": "ID-0232", + "type": "closed", + "name": "Yeimu Airstrip", + "latitude_deg": "-4.551057", + "longitude_deg": "139.336805", + "elevation_ft": "2400", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Yeimu", + "scheduled_service": "no" + }, + { + "id": "354548", + "ident": "ID-0233", + "type": "small_airport", + "name": "Supugi Airstrip", + "latitude_deg": "-4.328303", + "longitude_deg": "139.098995", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Supugi", + "scheduled_service": "no" + }, + { + "id": "354550", + "ident": "ID-0234", + "type": "closed", + "name": "Unggulpalek Airstrip", + "latitude_deg": "-4.351211", + "longitude_deg": "139.158046", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Unggulpalek", + "scheduled_service": "no" + }, + { + "id": "355269", + "ident": "ID-0235", + "type": "heliport", + "name": "NA Air Service Helipad", + "latitude_deg": "-0.02287", + "longitude_deg": "109.33571", + "elevation_ft": "4", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Kota Pontianak", + "scheduled_service": "no" + }, + { + "id": "356381", + "ident": "ID-0236", + "type": "heliport", + "name": "Tongas Heliport", + "latitude_deg": "-7.75999", + "longitude_deg": "113.10563", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Tongas", + "scheduled_service": "no" + }, + { + "id": "356382", + "ident": "ID-0237", + "type": "small_airport", + "name": "Grati Airport", + "latitude_deg": "-7.67253", + "longitude_deg": "113.03682", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Lekok", + "scheduled_service": "no" + }, + { + "id": "356383", + "ident": "ID-0238", + "type": "heliport", + "name": "Pandanwangi Air Force Heliport", + "latitude_deg": "-8.263041", + "longitude_deg": "113.192074", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Lumajang", + "scheduled_service": "no" + }, + { + "id": "356384", + "ident": "ID-0239", + "type": "heliport", + "name": "Jatimulyo Air Force Heliport", + "latitude_deg": "-8.27823", + "longitude_deg": "113.2216", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Jatimulyo", + "scheduled_service": "no" + }, + { + "id": "356385", + "ident": "ID-0240", + "type": "small_airport", + "name": "Pasirian Airfield", + "latitude_deg": "-8.27881", + "longitude_deg": "113.21208", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Jatimulyo", + "scheduled_service": "no" + }, + { + "id": "356432", + "ident": "ID-0241", + "type": "closed", + "name": "Gorda Airfield", + "latitude_deg": "-6.14007", + "longitude_deg": "106.34389", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-BT", + "municipality": "Binuang", + "scheduled_service": "no" + }, + { + "id": "356433", + "ident": "ID-0242", + "type": "small_airport", + "name": "Citeurup Paraglider Airport", + "latitude_deg": "-6.50814", + "longitude_deg": "106.87836", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JB", + "municipality": "Citeurup", + "scheduled_service": "no" + }, + { + "id": "356434", + "ident": "ID-0243", + "type": "small_airport", + "name": "Lido Airstrip", + "latitude_deg": "-6.75333", + "longitude_deg": "106.81171", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JB", + "municipality": "Cigombong", + "scheduled_service": "no" + }, + { + "id": "356435", + "ident": "ID-0244", + "type": "small_airport", + "name": "Cikembar Airport", + "latitude_deg": "-6.96924", + "longitude_deg": "106.78866", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JB", + "municipality": "Cikembar", + "scheduled_service": "no" + }, + { + "id": "429972", + "ident": "ID-0245", + "type": "heliport", + "name": "Garongkong Heliport", + "latitude_deg": "-4.37642", + "longitude_deg": "119.61364", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SN", + "municipality": "Garongkong", + "scheduled_service": "no" + }, + { + "id": "430306", + "ident": "ID-0246", + "type": "small_airport", + "name": "Asua Airport", + "latitude_deg": "-4.686881", + "longitude_deg": "140.789845", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Asua", + "scheduled_service": "no" + }, + { + "id": "430307", + "ident": "ID-0247", + "type": "small_airport", + "name": "Mewengde Airstrip", + "latitude_deg": "-4.820969", + "longitude_deg": "140.237545", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Mewengde", + "scheduled_service": "no" + }, + { + "id": "430308", + "ident": "ID-0248", + "type": "small_airport", + "name": "Eragayam Airport", + "latitude_deg": "-3.733891", + "longitude_deg": "138.747881", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Eragayam", + "scheduled_service": "no" + }, + { + "id": "430336", + "ident": "ID-0249", + "type": "small_airport", + "name": "Mamit Airstrip", + "latitude_deg": "-3.589005", + "longitude_deg": "138.396857", + "elevation_ft": "4726", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Mamit", + "scheduled_service": "no", + "keywords": "Manit" + }, + { + "id": "430369", + "ident": "ID-0250", + "type": "small_airport", + "name": "Yobesorum Airstrip", + "latitude_deg": "-4.285211", + "longitude_deg": "140.026433", + "elevation_ft": "3414", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Yobesorum", + "scheduled_service": "no", + "keywords": "WXR8, Eipomek Valley" + }, + { + "id": "430371", + "ident": "ID-0251", + "type": "small_airport", + "name": "Bolakna Airstrip", + "latitude_deg": "-4.23424", + "longitude_deg": "140.000619", + "elevation_ft": "3435", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Bolakna", + "scheduled_service": "no", + "keywords": "WX30" + }, + { + "id": "430478", + "ident": "ID-0252", + "type": "closed", + "name": "Manggar Airfield", + "latitude_deg": "-1.200426", + "longitude_deg": "116.97577", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KI", + "municipality": "Balikpapan", + "scheduled_service": "no", + "iata_code": "BPP", + "keywords": "Mangar, Manggarbesar" + }, + { + "id": "430481", + "ident": "ID-0253", + "type": "closed", + "name": "bontang selatan aerodrome", + "latitude_deg": "0.034898", + "longitude_deg": "117.478783", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KI", + "municipality": "Bontang selatan", + "scheduled_service": "no" + }, + { + "id": "430515", + "ident": "ID-0254", + "type": "closed", + "name": "Cyclops Airfield", + "latitude_deg": "-2.57347", + "longitude_deg": "140.52553", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Sentani", + "scheduled_service": "no" + }, + { + "id": "430516", + "ident": "ID-0255", + "type": "small_airport", + "name": "Baya Biru Airport", + "latitude_deg": "-3.618606", + "longitude_deg": "136.267033", + "elevation_ft": "2697", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Baya Biru", + "scheduled_service": "no" + }, + { + "id": "430517", + "ident": "ID-0256", + "type": "small_airport", + "name": "Supleyu Airstrip", + "latitude_deg": "-4.43285", + "longitude_deg": "140.16682", + "elevation_ft": "5610", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Supleyu", + "scheduled_service": "no" + }, + { + "id": "430518", + "ident": "ID-0257", + "type": "small_airport", + "name": "Tanime Airstrip", + "latitude_deg": "-4.45145", + "longitude_deg": "140.13042", + "elevation_ft": "5187", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Tanime", + "scheduled_service": "no" + }, + { + "id": "430519", + "ident": "ID-0258", + "type": "small_airport", + "name": "Suaka Airstrip", + "latitude_deg": "-4.464786", + "longitude_deg": "140.099008", + "elevation_ft": "5525", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Suaka", + "scheduled_service": "no" + }, + { + "id": "430520", + "ident": "ID-0259", + "type": "small_airport", + "name": "Eipomek Airstrip", + "latitude_deg": "-4.45584", + "longitude_deg": "140.02531", + "elevation_ft": "6155", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Eipomek", + "scheduled_service": "no", + "keywords": "Eipumek" + }, + { + "id": "430521", + "ident": "ID-0260", + "type": "small_airport", + "name": "Famek Airstrip", + "latitude_deg": "-4.425722", + "longitude_deg": "140.021954", + "elevation_ft": "6204", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Famek", + "scheduled_service": "no" + }, + { + "id": "430522", + "ident": "ID-0261", + "type": "small_airport", + "name": "Soya Airstrip", + "latitude_deg": "-4.37183", + "longitude_deg": "139.91673", + "elevation_ft": "6709", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Soya", + "scheduled_service": "no" + }, + { + "id": "430523", + "ident": "ID-0262", + "type": "small_airport", + "name": "Aksal Airstrip", + "latitude_deg": "-4.34395", + "longitude_deg": "139.88754", + "elevation_ft": "5374", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Aksal", + "scheduled_service": "no" + }, + { + "id": "430524", + "ident": "ID-0263", + "type": "small_airport", + "name": "Kalbok Airstrip", + "latitude_deg": "-4.30181", + "longitude_deg": "139.80474", + "elevation_ft": "6138", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Kalbok", + "scheduled_service": "no" + }, + { + "id": "430525", + "ident": "ID-0264", + "type": "small_airport", + "name": "Kono Airstrip", + "latitude_deg": "-4.275826", + "longitude_deg": "139.735794", + "elevation_ft": "6437", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Kono", + "scheduled_service": "no" + }, + { + "id": "430526", + "ident": "ID-0265", + "type": "small_airport", + "name": "Trison Airstrip", + "latitude_deg": "-4.26309", + "longitude_deg": "139.68456", + "elevation_ft": "7920", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Trison", + "scheduled_service": "no" + }, + { + "id": "430527", + "ident": "ID-0266", + "type": "small_airport", + "name": "Muhumu Airstrip", + "latitude_deg": "-4.21977", + "longitude_deg": "139.41273", + "elevation_ft": "6119", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Muhumu", + "scheduled_service": "no" + }, + { + "id": "430528", + "ident": "ID-0267", + "type": "small_airport", + "name": "Waniyok Airport", + "latitude_deg": "-4.21672", + "longitude_deg": "139.42436", + "elevation_ft": "6440", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Waniyok", + "scheduled_service": "no" + }, + { + "id": "430529", + "ident": "ID-0268", + "type": "small_airport", + "name": "Asotipo Airstrip", + "latitude_deg": "-4.17695", + "longitude_deg": "138.99303", + "elevation_ft": "5778", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Asotipo", + "scheduled_service": "no" + }, + { + "id": "41361", + "ident": "ID-AAS", + "type": "small_airport", + "name": "Apalapsili Airport", + "latitude_deg": "-3.882495", + "longitude_deg": "139.310932", + "elevation_ft": "3100", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Apalapsili", + "scheduled_service": "no", + "iata_code": "AAS", + "local_code": "APA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Apalapsili_Airport" + }, + { + "id": "41362", + "ident": "ID-AGD", + "type": "small_airport", + "name": "Anggi Airport", + "latitude_deg": "-1.3858", + "longitude_deg": "133.8737", + "elevation_ft": "6644", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Anggi-Papua Island", + "scheduled_service": "no", + "gps_code": "WASG", + "iata_code": "AGD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anggi_Airport" + }, + { + "id": "43978", + "ident": "ID-AHI", + "type": "small_airport", + "name": "Mina Wanam Airport", + "latitude_deg": "-7.540726", + "longitude_deg": "139.110916", + "elevation_ft": "22", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Wanam", + "scheduled_service": "no", + "keywords": "WT82" + }, + { + "id": "41363", + "ident": "ID-AKQ", + "type": "small_airport", + "name": "Gunung Batin Airport", + "latitude_deg": "-4.61113977432251", + "longitude_deg": "105.23200225830078", + "elevation_ft": "99", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-LA", + "municipality": "Astraksetra-Sumatra Island", + "scheduled_service": "no", + "iata_code": "AKQ" + }, + { + "id": "41365", + "ident": "ID-AYW", + "type": "small_airport", + "name": "Ayawasi Airport", + "latitude_deg": "-1.159779", + "longitude_deg": "132.464082", + "elevation_ft": "1560", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Ayawasi", + "scheduled_service": "no", + "gps_code": "WASA", + "iata_code": "AYW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ayawasi_Airport" + }, + { + "id": "41366", + "ident": "ID-BJG", + "type": "small_airport", + "name": "Boalang Airport", + "latitude_deg": "-0.9728959798812866", + "longitude_deg": "122.1449966430664", + "elevation_ft": "146", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-ST", + "municipality": "Boalang-Celebes Island", + "scheduled_service": "no", + "iata_code": "BJG" + }, + { + "id": "41367", + "ident": "ID-BXM", + "type": "small_airport", + "name": "Batom Airport", + "latitude_deg": "-4.442687", + "longitude_deg": "140.883565", + "elevation_ft": "396", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Batom", + "scheduled_service": "no", + "gps_code": "WAJG", + "iata_code": "BXM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Batom_Airport" + }, + { + "id": "41368", + "ident": "ID-DRH", + "type": "small_airport", + "name": "Dabra Airport", + "latitude_deg": "-3.27061", + "longitude_deg": "138.613433", + "elevation_ft": "208", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Dabra", + "scheduled_service": "no", + "gps_code": "WAJC", + "iata_code": "DRH" + }, + { + "id": "41369", + "ident": "ID-ELR", + "type": "small_airport", + "name": "Elelim Airport", + "latitude_deg": "-3.785922", + "longitude_deg": "139.384497", + "elevation_ft": "1490", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Elelim", + "scheduled_service": "no", + "gps_code": "WAJN", + "iata_code": "ELR" + }, + { + "id": "41370", + "ident": "ID-EWE", + "type": "small_airport", + "name": "Ewer Asmat Airport", + "latitude_deg": "-5.496185", + "longitude_deg": "138.078361", + "elevation_ft": "27", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Agats", + "scheduled_service": "no", + "iata_code": "EWE" + }, + { + "id": "31515", + "ident": "ID-GAV", + "type": "small_airport", + "name": "Gag Island Airport", + "latitude_deg": "-0.4005559980869293", + "longitude_deg": "129.89500427246094", + "elevation_ft": "1", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Gag Island", + "scheduled_service": "no", + "iata_code": "GAV" + }, + { + "id": "41371", + "ident": "ID-IUL", + "type": "small_airport", + "name": "Ilu Airport", + "latitude_deg": "-3.7051", + "longitude_deg": "138.2002", + "elevation_ft": "6408", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Ilu", + "scheduled_service": "no", + "gps_code": "WABE", + "iata_code": "IUL" + }, + { + "id": "41372", + "ident": "ID-KBF", + "type": "small_airport", + "name": "Karubaga Airport", + "latitude_deg": "-3.684615", + "longitude_deg": "138.479018", + "elevation_ft": "5200", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Karubaga", + "scheduled_service": "no", + "gps_code": "WABK", + "iata_code": "KBF" + }, + { + "id": "41373", + "ident": "ID-KBX", + "type": "small_airport", + "name": "Kambuaya Airport", + "latitude_deg": "-1.316815", + "longitude_deg": "132.286987", + "elevation_ft": "1422", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Kambuaya-Papua Island", + "scheduled_service": "no", + "gps_code": "WASU", + "iata_code": "KBX", + "keywords": "Ayamaru" + }, + { + "id": "41374", + "ident": "ID-KCD", + "type": "small_airport", + "name": "Kamur Airport", + "latitude_deg": "-6.1851", + "longitude_deg": "138.6372", + "elevation_ft": "25", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Kamur", + "scheduled_service": "no", + "gps_code": "WAKM", + "iata_code": "KCD" + }, + { + "id": "41375", + "ident": "ID-KCI", + "type": "small_airport", + "name": "Kon Airport", + "latitude_deg": "-8.349193", + "longitude_deg": "127.050793", + "elevation_ft": "150", + "continent": "AS", + "iso_country": "TL", + "iso_region": "TL-LA", + "municipality": "Kon", + "scheduled_service": "no", + "iata_code": "KCI", + "keywords": "Kon, Kun" + }, + { + "id": "41376", + "ident": "ID-KEA", + "type": "closed", + "name": "Keisah Airport", + "latitude_deg": "-7.66667", + "longitude_deg": "140.5", + "elevation_ft": "81", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Keisah", + "scheduled_service": "no", + "keywords": "KEA" + }, + { + "id": "41378", + "ident": "ID-KOD", + "type": "small_airport", + "name": "Kotabangun Airport", + "latitude_deg": "-0.266669988632", + "longitude_deg": "116.583335876", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KI", + "municipality": "Kotabangun-Borneo Island", + "scheduled_service": "no", + "iata_code": "KOD" + }, + { + "id": "41379", + "ident": "ID-KRC", + "type": "small_airport", + "name": "Departi Parbo Airport", + "latitude_deg": "-2.093", + "longitude_deg": "101.4683", + "elevation_ft": "2600", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JA", + "municipality": "Sungai Penuh", + "scheduled_service": "yes", + "gps_code": "WIPH", + "iata_code": "KRC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Depati_Parbo_Airport", + "keywords": "Kerinci" + }, + { + "id": "41381", + "ident": "ID-LLN", + "type": "small_airport", + "name": "Kelila Airport", + "latitude_deg": "-3.728968", + "longitude_deg": "138.710117", + "elevation_ft": "9092", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Kelila", + "scheduled_service": "no", + "gps_code": "WAJV", + "iata_code": "LLN" + }, + { + "id": "41382", + "ident": "ID-LWE", + "type": "small_airport", + "name": "Lewoleba Airport", + "latitude_deg": "-8.3629", + "longitude_deg": "123.438", + "elevation_ft": "25", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NT", + "municipality": "Lewoleba-Lembata Island", + "scheduled_service": "no", + "gps_code": "WATW", + "iata_code": "LWE" + }, + { + "id": "41383", + "ident": "ID-LYK", + "type": "small_airport", + "name": "Lunyuk Airport", + "latitude_deg": "-8.9889", + "longitude_deg": "117.2158", + "elevation_ft": "44", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NB", + "municipality": "Lunyuk-Simbawa Island", + "scheduled_service": "no", + "gps_code": "WADU", + "iata_code": "LYK", + "wikipedia_link": "http://id.wikipedia.org/wiki/Bandar_Udara_Lunyuk", + "keywords": "WRRU" + }, + { + "id": "41384", + "ident": "ID-MJY", + "type": "closed", + "name": "Mangun Jaya Airport", + "latitude_deg": "-2.73333", + "longitude_deg": "103.567001", + "elevation_ft": "76", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SS", + "municipality": "Mangun Jaya", + "scheduled_service": "no", + "iata_code": "MJY" + }, + { + "id": "41386", + "ident": "ID-MSI", + "type": "small_airport", + "name": "Masalembo Airport", + "latitude_deg": "-5.583330154418945", + "longitude_deg": "114.43299865722656", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Masalembo Island", + "scheduled_service": "no", + "iata_code": "MSI" + }, + { + "id": "41387", + "ident": "ID-MUF", + "type": "closed", + "name": "Muting Airport", + "latitude_deg": "-7.3147", + "longitude_deg": "140.5668", + "elevation_ft": "70", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Muting", + "scheduled_service": "no", + "iata_code": "MUF", + "keywords": "WW21" + }, + { + "id": "41388", + "ident": "ID-NAF", + "type": "small_airport", + "name": "Banaina Airport", + "latitude_deg": "2.72305011749", + "longitude_deg": "117.125999451", + "elevation_ft": "60", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KU", + "municipality": "Banaina-Borneo Island", + "scheduled_service": "no", + "iata_code": "NAF" + }, + { + "id": "41391", + "ident": "ID-OBD", + "type": "small_airport", + "name": "Obano Airport", + "latitude_deg": "-3.9106", + "longitude_deg": "136.2306", + "elevation_ft": "5800", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Obano", + "scheduled_service": "no", + "gps_code": "WAYO", + "iata_code": "OBD", + "keywords": "WABR" + }, + { + "id": "41393", + "ident": "ID-PPJ", + "type": "small_airport", + "name": "Unknown Airport", + "latitude_deg": "-0.63333", + "longitude_deg": "103.300003", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-RI", + "municipality": "Paritsialing-Sumatra Island", + "scheduled_service": "no", + "keywords": "Pasanggerahan, Kampungbenteng" + }, + { + "id": "41394", + "ident": "ID-PUM", + "type": "small_airport", + "name": "Pomala Airport", + "latitude_deg": "-4.1810898780823", + "longitude_deg": "121.61799621582", + "elevation_ft": "88", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SG", + "municipality": "Kolaka", + "scheduled_service": "no", + "gps_code": "WAWP", + "iata_code": "PUM", + "keywords": "WAAP" + }, + { + "id": "41395", + "ident": "ID-PWL", + "type": "small_airport", + "name": "Jenderal Besar Soedirman Airport", + "latitude_deg": "-7.461342", + "longitude_deg": "109.414612", + "elevation_ft": "225", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JT", + "municipality": "Purwokerto-Java Island", + "scheduled_service": "no", + "gps_code": "WAHP", + "iata_code": "PWL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Purwokerto_Airport", + "keywords": "WICP, WIAP, Wirasaba, Purbalingga" + }, + { + "id": "41396", + "ident": "ID-RAQ", + "type": "small_airport", + "name": "Sugimanuru Airport", + "latitude_deg": "-4.763298", + "longitude_deg": "122.566352", + "elevation_ft": "132", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SG", + "municipality": "Raha", + "scheduled_service": "no", + "gps_code": "WAWR", + "iata_code": "RAQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sugimanuru_Airport", + "keywords": "WAAR" + }, + { + "id": "41397", + "ident": "ID-RKI", + "type": "small_airport", + "name": "Rokot Airport", + "latitude_deg": "-0.949999988079071", + "longitude_deg": "100.75", + "elevation_ft": "4975", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SB", + "municipality": "Rokot-Sumatra Island", + "scheduled_service": "no", + "iata_code": "RKI" + }, + { + "id": "41398", + "ident": "ID-RTI", + "type": "small_airport", + "name": "Roti Airport", + "latitude_deg": "-10.484299659729004", + "longitude_deg": "123.3740005493164", + "elevation_ft": "65", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NT", + "municipality": "Roti-Rote Island", + "scheduled_service": "no", + "iata_code": "RTI" + }, + { + "id": "41399", + "ident": "ID-RUF", + "type": "closed", + "name": "Yuruf Airport", + "latitude_deg": "-3.628919", + "longitude_deg": "140.953689", + "elevation_ft": "1844", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Amgotro", + "scheduled_service": "no", + "gps_code": "WAJE", + "iata_code": "RUF" + }, + { + "id": "41400", + "ident": "ID-RZS", + "type": "closed", + "name": "Sawan Airport", + "latitude_deg": "-8.13278", + "longitude_deg": "115.172997", + "elevation_ft": "680", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-BA", + "municipality": "Sawan", + "scheduled_service": "no", + "iata_code": "RZS" + }, + { + "id": "41401", + "ident": "ID-SAE", + "type": "small_airport", + "name": "Sangir Airport", + "latitude_deg": "-8.366669654846191", + "longitude_deg": "118.33335876464844", + "elevation_ft": "175", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NB", + "municipality": "Sangir-Simbawa Island", + "scheduled_service": "no", + "iata_code": "SAE" + }, + { + "id": "41402", + "ident": "ID-TBM", + "type": "small_airport", + "name": "Tumbang Samba Airport", + "latitude_deg": "-1.4694", + "longitude_deg": "113.0833", + "elevation_ft": "160", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KT", + "municipality": "Tumbang Samba-Borneo Island", + "scheduled_service": "yes", + "gps_code": "WAOW", + "iata_code": "TBM", + "wikipedia_link": "http://id.wikipedia.org/wiki/Bandar_Udara_Tumbang_Samba", + "keywords": "WRBW" + }, + { + "id": "41403", + "ident": "ID-TMY", + "type": "small_airport", + "name": "Tiom Airport", + "latitude_deg": "-3.9256", + "longitude_deg": "138.4555", + "elevation_ft": "6931", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Tiom-Papua Island", + "scheduled_service": "no", + "gps_code": "WABH", + "iata_code": "TMY", + "local_code": "TMI", + "home_link": "http://server-aplikasi.dephub.go.id/?id/bandara/detail/138", + "keywords": "WAJH" + }, + { + "id": "3266", + "ident": "ID-WA19", + "type": "small_airport", + "name": "Pagerungan Airport", + "latitude_deg": "-6.956610202789999", + "longitude_deg": "115.930999756", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Pagerungan Island", + "scheduled_service": "no", + "keywords": "West Java Islands, Pagerungan Besar, Torohhiga" + }, + { + "id": "3271", + "ident": "ID-WA98", + "type": "small_airport", + "name": "Kobok Airport", + "latitude_deg": "1.101889967918396", + "longitude_deg": "127.7030029296875", + "elevation_ft": "114", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MU", + "municipality": "Modjid-Celebes Island", + "scheduled_service": "no", + "gps_code": "WA98", + "local_code": "WA98" + }, + { + "id": "41408", + "ident": "ID-ZEG", + "type": "small_airport", + "name": "Senggo Airport", + "latitude_deg": "-5.6908", + "longitude_deg": "139.3502", + "elevation_ft": "52", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Senggo-Papua Island", + "scheduled_service": "no", + "gps_code": "WAKQ", + "iata_code": "ZEG", + "wikipedia_link": "http://id.wikipedia.org/wiki/Bandar_Udara_Senggo" + }, + { + "id": "29639", + "ident": "ID-ZGP", + "type": "medium_airport", + "name": "Bilogai-Sugapa Airport", + "latitude_deg": "-3.739503", + "longitude_deg": "137.031183", + "elevation_ft": "7348", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Sugapa", + "scheduled_service": "yes", + "gps_code": "WAYB", + "iata_code": "UGU", + "local_code": "ZGP", + "home_link": "https://flightaware.com/live/airport/WAYB", + "keywords": "WABV, Zugapa" + }, + { + "id": "17778", + "ident": "ID00", + "type": "small_airport", + "name": "Hubler Field", + "latitude_deg": "43.695701599121094", + "longitude_deg": "-116.63800048828125", + "elevation_ft": "2385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Caldwell", + "scheduled_service": "no", + "gps_code": "ID00", + "local_code": "ID00" + }, + { + "id": "17779", + "ident": "ID01", + "type": "small_airport", + "name": "CX Ranch Number 1 Airport", + "latitude_deg": "48.137957", + "longitude_deg": "-116.196681", + "elevation_ft": "2071", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Clark Fork", + "scheduled_service": "no", + "gps_code": "ID01", + "local_code": "ID01" + }, + { + "id": "17780", + "ident": "ID02", + "type": "heliport", + "name": "Coeur D'Alene Resort Heliport", + "latitude_deg": "47.67210006713867", + "longitude_deg": "-116.78399658203125", + "elevation_ft": "2174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Coeur D'Alene", + "scheduled_service": "no", + "gps_code": "ID02", + "local_code": "ID02" + }, + { + "id": "17781", + "ident": "ID03", + "type": "heliport", + "name": "Kootenai Medical Center Heliport", + "latitude_deg": "47.69599914550781", + "longitude_deg": "-116.79499816894531", + "elevation_ft": "2230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Coeur D'Alene", + "scheduled_service": "no", + "gps_code": "ID03", + "local_code": "ID03" + }, + { + "id": "17782", + "ident": "ID04", + "type": "closed", + "name": "J-Lazy-M Ranch Airport", + "latitude_deg": "42.028926", + "longitude_deg": "-111.41289", + "elevation_ft": "6190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Fish Haven", + "scheduled_service": "no", + "keywords": "ID04" + }, + { + "id": "17783", + "ident": "ID05", + "type": "small_airport", + "name": "Hackney Airpark", + "latitude_deg": "47.9567985534668", + "longitude_deg": "-116.677001953125", + "elevation_ft": "2445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Athol", + "scheduled_service": "no", + "gps_code": "ID05", + "local_code": "ID05" + }, + { + "id": "17784", + "ident": "ID06", + "type": "closed", + "name": "Ranch Aero Airport", + "latitude_deg": "47.8288", + "longitude_deg": "-116.783997", + "elevation_ft": "2315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Hayden Lake", + "scheduled_service": "no", + "keywords": "ID06" + }, + { + "id": "17785", + "ident": "ID07", + "type": "small_airport", + "name": "Nichols Ranch Airport", + "latitude_deg": "47.6781005859375", + "longitude_deg": "-117.0250015258789", + "elevation_ft": "2430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Post Falls", + "scheduled_service": "no", + "gps_code": "ID07", + "local_code": "ID07" + }, + { + "id": "17786", + "ident": "ID08", + "type": "closed", + "name": "Mc Call Memorial Hospital Heliport", + "latitude_deg": "44.9091", + "longitude_deg": "-116.110001", + "elevation_ft": "5018", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Mc Call", + "scheduled_service": "no", + "keywords": "ID08" + }, + { + "id": "17787", + "ident": "ID09", + "type": "closed", + "name": "Otterson Ranch Airport", + "latitude_deg": "47.7402", + "longitude_deg": "-116.998001", + "elevation_ft": "2150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Post Falls", + "scheduled_service": "no", + "keywords": "ID09" + }, + { + "id": "17788", + "ident": "ID10", + "type": "closed", + "name": "Anderson-Plummer Airport", + "latitude_deg": "46.924301", + "longitude_deg": "-116.958", + "elevation_ft": "2580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Potlatch", + "scheduled_service": "no", + "keywords": "ID10" + }, + { + "id": "17789", + "ident": "ID11", + "type": "closed", + "name": "Wood Brothers Ranch Airport", + "latitude_deg": "46.382094", + "longitude_deg": "-116.513001", + "elevation_ft": "3400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Reubens", + "scheduled_service": "no", + "keywords": "ID11" + }, + { + "id": "17790", + "ident": "ID12", + "type": "small_airport", + "name": "Russell W Anderson Strip", + "latitude_deg": "43.184399", + "longitude_deg": "-112.466003", + "elevation_ft": "4450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Riverside", + "scheduled_service": "no", + "gps_code": "ID12", + "local_code": "ID12" + }, + { + "id": "17791", + "ident": "ID13", + "type": "small_airport", + "name": "Sky Island Ranch Airport", + "latitude_deg": "47.32210159301758", + "longitude_deg": "-116.63999938964844", + "elevation_ft": "2880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "St Maries", + "scheduled_service": "no", + "gps_code": "ID13", + "local_code": "ID13" + }, + { + "id": "17792", + "ident": "ID14", + "type": "heliport", + "name": "Benewah Community Hospital Heliport", + "latitude_deg": "47.3140983581543", + "longitude_deg": "-116.56700134277344", + "elevation_ft": "2235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "St Maries", + "scheduled_service": "no", + "gps_code": "ID14", + "local_code": "ID14" + }, + { + "id": "17793", + "ident": "ID15", + "type": "closed", + "name": "Wallace Ranger Station Heliport", + "latitude_deg": "47.493523", + "longitude_deg": "-115.959862", + "elevation_ft": "2720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Silverton", + "scheduled_service": "no", + "keywords": "ID15" + }, + { + "id": "17794", + "ident": "ID16", + "type": "small_airport", + "name": "Sluder Airstrip", + "latitude_deg": "43.403499603271484", + "longitude_deg": "-114.27300262451172", + "elevation_ft": "5017", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Bellevue", + "scheduled_service": "no", + "gps_code": "ID16", + "local_code": "ID16" + }, + { + "id": "17795", + "ident": "ID17", + "type": "small_airport", + "name": "Seven Devils Airport", + "latitude_deg": "45.01100158691406", + "longitude_deg": "-116.68900299072266", + "elevation_ft": "4487", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Council", + "scheduled_service": "no", + "gps_code": "ID17", + "local_code": "ID17" + }, + { + "id": "17796", + "ident": "ID18", + "type": "heliport", + "name": "Eirmc Heliport", + "latitude_deg": "43.47100067138672", + "longitude_deg": "-111.99199676513672", + "elevation_ft": "4713", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Idaho Falls", + "scheduled_service": "no", + "gps_code": "ID18", + "local_code": "ID18" + }, + { + "id": "17797", + "ident": "ID19", + "type": "small_airport", + "name": "Bird Nr 2 Airport", + "latitude_deg": "48.23099899291992", + "longitude_deg": "-116.38899993896484", + "elevation_ft": "2192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Sandpoint", + "scheduled_service": "no", + "gps_code": "ID19", + "local_code": "ID19" + }, + { + "id": "17798", + "ident": "ID20", + "type": "heliport", + "name": "Hubof's Heliport", + "latitude_deg": "47.733001708984375", + "longitude_deg": "-117", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Post Falls", + "scheduled_service": "no", + "gps_code": "ID20", + "local_code": "ID20" + }, + { + "id": "17799", + "ident": "ID21", + "type": "small_airport", + "name": "Smith Ranch Airport", + "latitude_deg": "47.75630187988281", + "longitude_deg": "-117.02400207519531", + "elevation_ft": "2370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Hauser Lake", + "scheduled_service": "no", + "gps_code": "ID21", + "local_code": "ID21" + }, + { + "id": "17800", + "ident": "ID22", + "type": "small_airport", + "name": "Treeport Airport", + "latitude_deg": "47.97800064086914", + "longitude_deg": "-116.79299926757812", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Spirit Lake", + "scheduled_service": "no", + "gps_code": "ID22", + "local_code": "ID22" + }, + { + "id": "17801", + "ident": "ID23", + "type": "small_airport", + "name": "Rock Creek Farm Airport", + "latitude_deg": "47.392398834228516", + "longitude_deg": "-116.87300109863281", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Worley", + "scheduled_service": "no", + "gps_code": "ID23", + "local_code": "ID23" + }, + { + "id": "17802", + "ident": "ID24", + "type": "small_airport", + "name": "Timber Basin Airpark Inc Airport", + "latitude_deg": "48.2234992980957", + "longitude_deg": "-116.43900299072266", + "elevation_ft": "2220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Sagle", + "scheduled_service": "no", + "gps_code": "ID24", + "local_code": "ID24" + }, + { + "id": "17803", + "ident": "ID25", + "type": "small_airport", + "name": "Olmstead Sky Ranch Airport", + "latitude_deg": "48.350799560546875", + "longitude_deg": "-116.55400085449219", + "elevation_ft": "2140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Sandpoint", + "scheduled_service": "no", + "gps_code": "ID25", + "local_code": "ID25" + }, + { + "id": "45399", + "ident": "ID26", + "type": "small_airport", + "name": "P and R Field", + "latitude_deg": "43.233474", + "longitude_deg": "-115.939673", + "elevation_ft": "3125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Mayfield", + "scheduled_service": "no", + "gps_code": "ID26", + "local_code": "ID26" + }, + { + "id": "17804", + "ident": "ID27", + "type": "small_airport", + "name": "Hawk Haven Airport", + "latitude_deg": "47.75550079", + "longitude_deg": "-116.8590012", + "elevation_ft": "2333", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Coeur d Alene", + "scheduled_service": "no", + "gps_code": "ID27", + "local_code": "ID27" + }, + { + "id": "17805", + "ident": "ID28", + "type": "small_airport", + "name": "Mackay Bar Airport", + "latitude_deg": "45.3798", + "longitude_deg": "-115.505924", + "elevation_ft": "2172", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Dixie", + "scheduled_service": "no", + "gps_code": "ID28", + "local_code": "ID28" + }, + { + "id": "17806", + "ident": "ID29", + "type": "small_airport", + "name": "Big Island Airport", + "latitude_deg": "46.6973991394043", + "longitude_deg": "-115.98400115966797", + "elevation_ft": "2249", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Orofino", + "scheduled_service": "no", + "gps_code": "ID29", + "local_code": "ID29" + }, + { + "id": "17807", + "ident": "ID30", + "type": "heliport", + "name": "Everett II Heliport", + "latitude_deg": "43.774039", + "longitude_deg": "-114.408612", + "elevation_ft": "6165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Ketchum", + "scheduled_service": "no", + "gps_code": "ID30", + "local_code": "ID30" + }, + { + "id": "17808", + "ident": "ID31", + "type": "heliport", + "name": "Young Heliport", + "latitude_deg": "43.71659851074219", + "longitude_deg": "-116.38899993896484", + "elevation_ft": "2625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Eagle", + "scheduled_service": "no", + "gps_code": "ID31", + "local_code": "ID31" + }, + { + "id": "17809", + "ident": "ID32", + "type": "small_airport", + "name": "Tuka STOLport", + "latitude_deg": "48.105499267578125", + "longitude_deg": "-116.13700103759766", + "elevation_ft": "2086", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Clark Fork", + "scheduled_service": "no", + "gps_code": "ID32", + "local_code": "ID32" + }, + { + "id": "17810", + "ident": "ID33", + "type": "small_airport", + "name": "Stocking Meadows Airport", + "latitude_deg": "46.93600082397461", + "longitude_deg": "-115.86499786376953", + "elevation_ft": "3850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Clarkia", + "scheduled_service": "no", + "gps_code": "ID33", + "local_code": "ID33" + }, + { + "id": "17811", + "ident": "ID34", + "type": "closed", + "name": "Granite Airport", + "latitude_deg": "47.9846", + "longitude_deg": "-116.682999", + "elevation_ft": "2260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Athol", + "scheduled_service": "no", + "keywords": "ID34" + }, + { + "id": "17812", + "ident": "ID35", + "type": "small_airport", + "name": "High Valley Airport", + "latitude_deg": "44.239327", + "longitude_deg": "-116.144629", + "elevation_ft": "4883", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cascade", + "scheduled_service": "no", + "gps_code": "ID35", + "local_code": "ID35", + "keywords": "High Valley Swanson Airport" + }, + { + "id": "45174", + "ident": "ID36", + "type": "small_airport", + "name": "King Mountain Glider Park", + "latitude_deg": "43.762908", + "longitude_deg": "-113.344722", + "elevation_ft": "5500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Moore", + "scheduled_service": "no", + "gps_code": "ID36", + "local_code": "ID36" + }, + { + "id": "17814", + "ident": "ID37", + "type": "heliport", + "name": "St Joseph's Regional Medical Center Heliport", + "latitude_deg": "46.41320037841797", + "longitude_deg": "-117.01699829101562", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Lewiston", + "scheduled_service": "no", + "gps_code": "ID37", + "local_code": "ID37" + }, + { + "id": "17815", + "ident": "ID38", + "type": "heliport", + "name": "Sutherland Heliport", + "latitude_deg": "47.77989959716797", + "longitude_deg": "-117.01000213623047", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Hauser Lake", + "scheduled_service": "no", + "gps_code": "ID38", + "local_code": "ID38" + }, + { + "id": "17816", + "ident": "ID39", + "type": "closed", + "name": "Owen Ranches Inc Airport", + "latitude_deg": "42.7957", + "longitude_deg": "-115.734001", + "elevation_ft": "2620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Bruneau", + "scheduled_service": "no", + "keywords": "ID39" + }, + { + "id": "17817", + "ident": "ID40", + "type": "small_airport", + "name": "Sunrise Skypark Airport", + "latitude_deg": "43.41780090332031", + "longitude_deg": "-116.70600128173828", + "elevation_ft": "2240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Marsing", + "scheduled_service": "no", + "gps_code": "ID40", + "local_code": "ID40" + }, + { + "id": "17818", + "ident": "ID41", + "type": "small_airport", + "name": "Stibnite Airport", + "latitude_deg": "44.899898529052734", + "longitude_deg": "-115.33300018310547", + "elevation_ft": "6539", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Yellow Pine", + "scheduled_service": "no", + "gps_code": "ID41", + "local_code": "ID41" + }, + { + "id": "17819", + "ident": "ID42", + "type": "closed", + "name": "Shoshone BLM Heliport", + "latitude_deg": "42.931901", + "longitude_deg": "-114.413001", + "elevation_ft": "3980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Shoshone", + "scheduled_service": "no", + "keywords": "ID42" + }, + { + "id": "17820", + "ident": "ID43", + "type": "small_airport", + "name": "Carlin Bay Airport", + "latitude_deg": "47.551300048828125", + "longitude_deg": "-116.76399993896484", + "elevation_ft": "2702", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Coeur D'Alene", + "scheduled_service": "no", + "gps_code": "ID43", + "local_code": "ID43" + }, + { + "id": "17821", + "ident": "ID44", + "type": "small_airport", + "name": "Hidden Lakes Airport", + "latitude_deg": "44.225297", + "longitude_deg": "-116.179508", + "elevation_ft": "4845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cascade", + "scheduled_service": "no", + "gps_code": "ID44", + "local_code": "ID44", + "keywords": "High Valley Hills Airport" + }, + { + "id": "17822", + "ident": "ID45", + "type": "closed", + "name": "Magic Valley Regional Medical Center Heliport", + "latitude_deg": "42.564602", + "longitude_deg": "-114.495003", + "elevation_ft": "3675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Twin Falls", + "scheduled_service": "no", + "keywords": "ID45" + }, + { + "id": "17823", + "ident": "ID46", + "type": "heliport", + "name": "Dworshak Heliport", + "latitude_deg": "46.51210021972656", + "longitude_deg": "-116.29299926757812", + "elevation_ft": "1615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Ahsahka", + "scheduled_service": "no", + "gps_code": "ID46", + "local_code": "ID46" + }, + { + "id": "17824", + "ident": "ID47", + "type": "heliport", + "name": "Whelan's Heliport", + "latitude_deg": "43.59709930419922", + "longitude_deg": "-116.78199768066406", + "elevation_ft": "2565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Huston", + "scheduled_service": "no", + "gps_code": "ID47", + "local_code": "ID47" + }, + { + "id": "17825", + "ident": "ID48", + "type": "small_airport", + "name": "Western Spur Airport", + "latitude_deg": "47.92879867553711", + "longitude_deg": "-116.71099853515625", + "elevation_ft": "2350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Athol", + "scheduled_service": "no", + "gps_code": "ID48", + "local_code": "ID48" + }, + { + "id": "17826", + "ident": "ID49", + "type": "heliport", + "name": "St Luke's Boise Medical Center Heliport", + "latitude_deg": "43.612701416", + "longitude_deg": "-116.192001343", + "elevation_ft": "2863", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Boise", + "scheduled_service": "no", + "gps_code": "ID49", + "local_code": "ID49" + }, + { + "id": "17827", + "ident": "ID50", + "type": "closed", + "name": "QB One Airport", + "latitude_deg": "43.601299", + "longitude_deg": "-112.242996", + "elevation_ft": "4875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Idaho Falls", + "scheduled_service": "no", + "keywords": "ID50" + }, + { + "id": "17828", + "ident": "ID51", + "type": "heliport", + "name": "Welburn Heliport", + "latitude_deg": "47.783199310302734", + "longitude_deg": "-116.68399810791016", + "elevation_ft": "2250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Hayden Lake", + "scheduled_service": "no", + "gps_code": "ID51", + "local_code": "ID51" + }, + { + "id": "17829", + "ident": "ID52", + "type": "closed", + "name": "Bowman Field", + "latitude_deg": "43.993", + "longitude_deg": "-111.551003", + "elevation_ft": "5100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Chester", + "scheduled_service": "no", + "keywords": "ID52" + }, + { + "id": "17830", + "ident": "ID53", + "type": "heliport", + "name": "Minidoka Memorial Hospital Heliport", + "latitude_deg": "42.62099838259999", + "longitude_deg": "-113.685997009", + "elevation_ft": "4156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Rupert", + "scheduled_service": "no", + "gps_code": "ID53", + "local_code": "ID53" + }, + { + "id": "17831", + "ident": "ID54", + "type": "seaplane_base", + "name": "Bottle Bay Seaplane Base", + "latitude_deg": "48.47909927368164", + "longitude_deg": "-116.44499969482422", + "elevation_ft": "2063", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Sandpoint", + "scheduled_service": "no", + "gps_code": "ID54", + "local_code": "ID54" + }, + { + "id": "17832", + "ident": "ID55", + "type": "heliport", + "name": "Valley County Hospital Heliport", + "latitude_deg": "44.518798828125", + "longitude_deg": "-116.0479965209961", + "elevation_ft": "4800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cascade", + "scheduled_service": "no", + "gps_code": "ID55", + "local_code": "ID55" + }, + { + "id": "17833", + "ident": "ID56", + "type": "small_airport", + "name": "Star S Ranch Airport", + "latitude_deg": "43.981899", + "longitude_deg": "-114.043999", + "elevation_ft": "6660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Mackay", + "scheduled_service": "no", + "gps_code": "ID56", + "local_code": "ID56" + }, + { + "id": "17834", + "ident": "ID57", + "type": "closed", + "name": "University of Idaho Heliport", + "latitude_deg": "46.7271", + "longitude_deg": "-117.023792", + "elevation_ft": "2604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Moscow", + "scheduled_service": "no", + "keywords": "ID57" + }, + { + "id": "17835", + "ident": "ID58", + "type": "heliport", + "name": "Nampa Valley Heliport", + "latitude_deg": "43.590999603271484", + "longitude_deg": "-116.2770004272461", + "elevation_ft": "2690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Boise", + "scheduled_service": "no", + "gps_code": "ID58", + "local_code": "ID58" + }, + { + "id": "17836", + "ident": "ID59", + "type": "small_airport", + "name": "Flying A Ranch Airport", + "latitude_deg": "44.81760025024414", + "longitude_deg": "-116.06800079345703", + "elevation_ft": "4918", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Lake Fork", + "scheduled_service": "no", + "gps_code": "ID59", + "local_code": "ID59" + }, + { + "id": "17837", + "ident": "ID60", + "type": "small_airport", + "name": "Fountains Airport", + "latitude_deg": "46.713199615478516", + "longitude_deg": "-116.99700164794922", + "elevation_ft": "2550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "ID60", + "local_code": "ID60" + }, + { + "id": "17838", + "ident": "ID61", + "type": "small_airport", + "name": "Valenov Ranch Airport", + "latitude_deg": "48.296600341796875", + "longitude_deg": "-117.01499938964844", + "elevation_ft": "2425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Priest River", + "scheduled_service": "no", + "gps_code": "ID61", + "local_code": "ID61" + }, + { + "id": "17839", + "ident": "ID62", + "type": "small_airport", + "name": "Simpson Airport", + "latitude_deg": "42.608299255371094", + "longitude_deg": "-111.72899627685547", + "elevation_ft": "5598", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Grace", + "scheduled_service": "no", + "gps_code": "ID62", + "local_code": "ID62" + }, + { + "id": "17840", + "ident": "ID63", + "type": "small_airport", + "name": "Richards Airport", + "latitude_deg": "43.67100143432617", + "longitude_deg": "-117.0250015258789", + "elevation_ft": "2290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Homedale", + "scheduled_service": "no", + "gps_code": "ID63", + "local_code": "ID63" + }, + { + "id": "17841", + "ident": "ID64", + "type": "heliport", + "name": "Portneuf Medical Center Heliport", + "latitude_deg": "42.87447", + "longitude_deg": "-112.42228", + "elevation_ft": "4550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Pocatello", + "scheduled_service": "no", + "gps_code": "ID64", + "local_code": "ID64" + }, + { + "id": "17842", + "ident": "ID65", + "type": "small_airport", + "name": "Driftwood Air Ranch Airport", + "latitude_deg": "47.581244", + "longitude_deg": "-116.771997", + "elevation_ft": "2775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Coeur D'Alene", + "scheduled_service": "no", + "gps_code": "ID65", + "local_code": "ID65", + "keywords": "Pisch's Place" + }, + { + "id": "17843", + "ident": "ID66", + "type": "heliport", + "name": "Clearwater Valley Hospital Heliport", + "latitude_deg": "46.48659896850586", + "longitude_deg": "-116.25", + "elevation_ft": "1005", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Orofino", + "scheduled_service": "no", + "gps_code": "ID66", + "local_code": "ID66" + }, + { + "id": "17844", + "ident": "ID67", + "type": "small_airport", + "name": "Lower Loon Creek Airport", + "latitude_deg": "44.808200836182", + "longitude_deg": "-114.80899810791", + "elevation_ft": "4200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Challis", + "scheduled_service": "no", + "gps_code": "C53", + "local_code": "C53", + "keywords": "ID67" + }, + { + "id": "17845", + "ident": "ID68", + "type": "small_airport", + "name": "Green Acres Airport", + "latitude_deg": "43.48460006713867", + "longitude_deg": "-116.45899963378906", + "elevation_ft": "2865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Kuna", + "scheduled_service": "no", + "gps_code": "ID68", + "local_code": "ID68" + }, + { + "id": "17846", + "ident": "ID69", + "type": "heliport", + "name": "Sun Valley Gun Club Heliport", + "latitude_deg": "42.705501556396484", + "longitude_deg": "-114.3489990234375", + "elevation_ft": "6000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Sun Valley", + "scheduled_service": "no", + "gps_code": "ID69", + "local_code": "ID69" + }, + { + "id": "17847", + "ident": "ID70", + "type": "closed", + "name": "Gulch Trust Heliport", + "latitude_deg": "43.704601", + "longitude_deg": "-114.377998", + "elevation_ft": "5915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Ketchum", + "scheduled_service": "no", + "keywords": "ID70" + }, + { + "id": "17848", + "ident": "ID71", + "type": "heliport", + "name": "Big Country Heliport", + "latitude_deg": "47.69309997558594", + "longitude_deg": "-116.78399658203125", + "elevation_ft": "2223", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Coeur D'Alene", + "scheduled_service": "no", + "gps_code": "ID71", + "local_code": "ID71" + }, + { + "id": "17849", + "ident": "ID72", + "type": "small_airport", + "name": "Huskey Airport", + "latitude_deg": "43.41740036010742", + "longitude_deg": "-111.28500366210938", + "elevation_ft": "5200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Irwin", + "scheduled_service": "no", + "gps_code": "ID72", + "local_code": "ID72" + }, + { + "id": "17850", + "ident": "ID73", + "type": "heliport", + "name": "Rockford Bay Heliport", + "latitude_deg": "47.50680160522461", + "longitude_deg": "-116.89199829101562", + "elevation_ft": "2132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Coeur D Alene", + "scheduled_service": "no", + "gps_code": "ID73", + "local_code": "ID73" + }, + { + "id": "17851", + "ident": "ID74", + "type": "small_airport", + "name": "Sulphur Creek Ranch Airport", + "latitude_deg": "44.537881", + "longitude_deg": "-115.367282", + "elevation_ft": "5835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cascade", + "scheduled_service": "no", + "gps_code": "ID74", + "local_code": "ID74" + }, + { + "id": "17852", + "ident": "ID75", + "type": "small_airport", + "name": "Riverlake Airport", + "latitude_deg": "48.125999450683594", + "longitude_deg": "-116.16500091552734", + "elevation_ft": "2076", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Clark Fork", + "scheduled_service": "no", + "gps_code": "ID75", + "local_code": "ID75" + }, + { + "id": "17853", + "ident": "ID76", + "type": "small_airport", + "name": "Wilson Bar US Forest Service Airport", + "latitude_deg": "45.396994", + "longitude_deg": "-115.485306", + "elevation_ft": "2250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Dixie", + "scheduled_service": "no", + "local_code": "C48", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wilson_Bar_USFS_Airport", + "keywords": "ID76" + }, + { + "id": "17854", + "ident": "ID77", + "type": "small_airport", + "name": "Cuddy Meadows Airport", + "latitude_deg": "44.705299377441406", + "longitude_deg": "-116.80699920654297", + "elevation_ft": "4580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "ID77", + "local_code": "ID77" + }, + { + "id": "17855", + "ident": "ID78", + "type": "small_airport", + "name": "CX Ranch Number 2 Airport", + "latitude_deg": "48.141602", + "longitude_deg": "-116.181999", + "elevation_ft": "2070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Clark Fork", + "scheduled_service": "no", + "gps_code": "ID78", + "local_code": "ID78" + }, + { + "id": "17856", + "ident": "ID79", + "type": "small_airport", + "name": "Sky Ranch South Airport", + "latitude_deg": "43.5083007812", + "longitude_deg": "-116.667999268", + "elevation_ft": "2750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Nampa", + "scheduled_service": "no", + "gps_code": "ID79", + "local_code": "ID79" + }, + { + "id": "17857", + "ident": "ID80", + "type": "heliport", + "name": "West Valley Hospital Heliport", + "latitude_deg": "43.654167", + "longitude_deg": "-116.986000061", + "elevation_ft": "2384", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Caldwell", + "scheduled_service": "no", + "gps_code": "ID80", + "local_code": "ID80" + }, + { + "id": "17858", + "ident": "ID82", + "type": "small_airport", + "name": "Picabo Airport", + "latitude_deg": "43.308201", + "longitude_deg": "-114.063003", + "elevation_ft": "4828", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Picabo", + "scheduled_service": "no", + "gps_code": "ID82", + "local_code": "ID82", + "keywords": "1U8" + }, + { + "id": "17859", + "ident": "ID83", + "type": "heliport", + "name": "Saint Alphonsus Medical Center Heliport", + "latitude_deg": "43.554029", + "longitude_deg": "-116.568696", + "elevation_ft": "2535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Nampa", + "scheduled_service": "no", + "keywords": "ID83, Mercy Heliport" + }, + { + "id": "17860", + "ident": "ID84", + "type": "small_airport", + "name": "Cptpa Headquarters Airport", + "latitude_deg": "46.61709976196289", + "longitude_deg": "-115.80000305175781", + "elevation_ft": "3314", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Headquarters", + "scheduled_service": "no", + "gps_code": "ID84", + "local_code": "ID84" + }, + { + "id": "17861", + "ident": "ID85", + "type": "small_airport", + "name": "Elk River Airport", + "latitude_deg": "46.78739929199219", + "longitude_deg": "-116.16799926757812", + "elevation_ft": "2827", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Elk River", + "scheduled_service": "no", + "gps_code": "ID85", + "local_code": "ID85" + }, + { + "id": "17862", + "ident": "ID86", + "type": "small_airport", + "name": "Deadwood Dam Airstrip", + "latitude_deg": "44.29779815673828", + "longitude_deg": "-115.64099884033203", + "elevation_ft": "5489", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cascade", + "scheduled_service": "no", + "gps_code": "ID86", + "local_code": "ID86" + }, + { + "id": "17863", + "ident": "ID87", + "type": "small_airport", + "name": "Rainbow Ranch Airport", + "latitude_deg": "43.406898498535156", + "longitude_deg": "-111.9739990234375", + "elevation_ft": "4750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Idaho Falls", + "scheduled_service": "no", + "gps_code": "ID87", + "local_code": "ID87" + }, + { + "id": "17864", + "ident": "ID88", + "type": "small_airport", + "name": "Tracy Ranch Airport", + "latitude_deg": "43.286469", + "longitude_deg": "-115.08073", + "elevation_ft": "5071", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Hill City", + "scheduled_service": "no", + "gps_code": "ID88", + "local_code": "ID88", + "keywords": "U95" + }, + { + "id": "17865", + "ident": "ID89", + "type": "heliport", + "name": "Boise Plaza Heliport", + "latitude_deg": "43.653198242200006", + "longitude_deg": "-116.206001282", + "elevation_ft": "2890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Boise", + "scheduled_service": "no", + "gps_code": "ID89", + "local_code": "ID89" + }, + { + "id": "17866", + "ident": "ID90", + "type": "closed", + "name": "Spencer Ranch Landing Strip", + "latitude_deg": "45.85276", + "longitude_deg": "-116.66811", + "elevation_ft": "4284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Keuterville", + "scheduled_service": "no", + "gps_code": "ID90", + "local_code": "ID90" + }, + { + "id": "17867", + "ident": "ID91", + "type": "heliport", + "name": "St Alphonsus Heliport", + "latitude_deg": "43.61429977416992", + "longitude_deg": "-116.26399993896484", + "elevation_ft": "2800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Boise", + "scheduled_service": "no", + "gps_code": "ID91", + "local_code": "ID91" + }, + { + "id": "17868", + "ident": "ID92", + "type": "small_airport", + "name": "Foster Field - Dzone Skydiving Airport", + "latitude_deg": "43.728802", + "longitude_deg": "-116.523003", + "elevation_ft": "2550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Star", + "scheduled_service": "no", + "gps_code": "ID92", + "local_code": "ID92", + "keywords": "Snake River Skydiving" + }, + { + "id": "17869", + "ident": "ID93", + "type": "small_airport", + "name": "Reed Ranch Airport", + "latitude_deg": "44.894298553467", + "longitude_deg": "-115.71299743652", + "elevation_ft": "4153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Yellow Pine", + "scheduled_service": "no", + "gps_code": "I92", + "local_code": "I92", + "wikipedia_link": "https://en.wikipedia.org/wiki/Reed_Ranch_Airport", + "keywords": "87U, ID93" + }, + { + "id": "17870", + "ident": "ID94", + "type": "small_airport", + "name": "White Pine Flats Ranch LLC Airport", + "latitude_deg": "46.776667", + "longitude_deg": "-116.691389", + "elevation_ft": "2860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "ID94", + "local_code": "ID94", + "keywords": "Friendly Persuasion Farm" + }, + { + "id": "17871", + "ident": "ID95", + "type": "small_airport", + "name": "Loomis Airport", + "latitude_deg": "43.861000061035156", + "longitude_deg": "-116.24099731445312", + "elevation_ft": "4180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Horseshoe Bend", + "scheduled_service": "no", + "gps_code": "ID95", + "local_code": "ID95" + }, + { + "id": "17872", + "ident": "ID96", + "type": "small_airport", + "name": "Bear Air Airport", + "latitude_deg": "44.78519821166992", + "longitude_deg": "-116.06700134277344", + "elevation_ft": "4904", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Donnelly", + "scheduled_service": "no", + "gps_code": "ID96", + "local_code": "ID96" + }, + { + "id": "17873", + "ident": "ID97", + "type": "closed", + "name": "Hangman Creek Ranch Airport", + "latitude_deg": "47.107101", + "longitude_deg": "-116.810997", + "elevation_ft": "2635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Tensed", + "scheduled_service": "no", + "keywords": "ID97, Gopher Gultch Field" + }, + { + "id": "17874", + "ident": "ID98", + "type": "heliport", + "name": "Scanlon Heliport", + "latitude_deg": "42.56740188598633", + "longitude_deg": "-117.49500274658203", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Coeur D'Alene", + "scheduled_service": "no", + "gps_code": "ID98", + "local_code": "ID98" + }, + { + "id": "17875", + "ident": "ID99", + "type": "heliport", + "name": "MVRMC Number 2 Heliport", + "latitude_deg": "42.567626", + "longitude_deg": "-114.495456", + "elevation_ft": "3680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Twin Falls", + "scheduled_service": "no", + "gps_code": "ID99", + "local_code": "ID99" + }, + { + "id": "309146", + "ident": "IDN", + "type": "small_airport", + "name": "Indagen Airport", + "latitude_deg": "-6.22663", + "longitude_deg": "147.244", + "elevation_ft": "5788", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Indagen", + "scheduled_service": "no", + "gps_code": "AYID", + "iata_code": "IDN", + "local_code": "IGN" + }, + { + "id": "316000", + "ident": "IE-0001", + "type": "small_airport", + "name": "Brittas House Airstrip", + "latitude_deg": "52.603908", + "longitude_deg": "-8.417588", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-TA", + "municipality": "Brittas", + "scheduled_service": "no" + }, + { + "id": "308317", + "ident": "IE-0003", + "type": "closed", + "name": "Mallow International Airport", + "latitude_deg": "52.131802", + "longitude_deg": "-8.68804", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-C", + "municipality": "Mallow", + "scheduled_service": "no" + }, + { + "id": "316745", + "ident": "IE-0004", + "type": "small_airport", + "name": "Dolly's Grove Airfield", + "latitude_deg": "53.422536", + "longitude_deg": "-6.546149", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-MH", + "municipality": "Staffordstown", + "scheduled_service": "no" + }, + { + "id": "317046", + "ident": "IE-0005", + "type": "small_airport", + "name": "Eyne Airfield", + "latitude_deg": "53.082764", + "longitude_deg": "-7.277601", + "elevation_ft": "265", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-LS", + "municipality": "Eyne", + "scheduled_service": "no", + "keywords": "Ridge Aviation" + }, + { + "id": "317525", + "ident": "IE-0006", + "type": "closed", + "name": "Clifden Alcock & Brown Airport", + "latitude_deg": "53.54106", + "longitude_deg": "-10.08394", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-G", + "municipality": "Laghtanabba", + "scheduled_service": "no", + "gps_code": "EICD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clifden#Airport" + }, + { + "id": "317526", + "ident": "IE-0007", + "type": "closed", + "name": "Inishbofin Airfield", + "latitude_deg": "53.6196", + "longitude_deg": "-10.21085", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-G", + "municipality": "Middlequarter", + "scheduled_service": "no" + }, + { + "id": "319345", + "ident": "IE-0008", + "type": "small_airport", + "name": "Lough Conn Airstrip", + "latitude_deg": "54.044059", + "longitude_deg": "-9.216109", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-MO", + "municipality": "Cloghans", + "scheduled_service": "no" + }, + { + "id": "320225", + "ident": "IE-0009", + "type": "small_airport", + "name": "Dowth Hall Airfield", + "latitude_deg": "53.709054", + "longitude_deg": "-6.438029", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-MH", + "municipality": "Dowth", + "scheduled_service": "no" + }, + { + "id": "320368", + "ident": "IE-0010", + "type": "small_airport", + "name": "ILAS Wexford Airfield", + "latitude_deg": "52.2981", + "longitude_deg": "-6.68194", + "elevation_ft": "125", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-WX", + "municipality": "Taghmon", + "scheduled_service": "no", + "keywords": "Irish Light Aviation Society, Taghmon" + }, + { + "id": "320593", + "ident": "IE-0011", + "type": "small_airport", + "name": "Limetree Airfield", + "latitude_deg": "53.1155", + "longitude_deg": "-7.2443", + "elevation_ft": "210", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-LS", + "municipality": "Limetree", + "scheduled_service": "no" + }, + { + "id": "320772", + "ident": "IE-0012", + "type": "closed", + "name": "Ballinvally Farm Airstrip", + "latitude_deg": "52.5709", + "longitude_deg": "-6.31754", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-WH", + "municipality": "Court", + "scheduled_service": "no" + }, + { + "id": "321136", + "ident": "IE-0013", + "type": "small_airport", + "name": "Ashfield - Russell's field UL", + "latitude_deg": "54.989617", + "longitude_deg": "-7.738113", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-DL", + "municipality": "Coolboy Little", + "scheduled_service": "no" + }, + { + "id": "321137", + "ident": "IE-0014", + "type": "small_airport", + "name": "Finn Valley Airfield UL", + "latitude_deg": "54.846529", + "longitude_deg": "-7.658548", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-DL", + "municipality": "Carrickbrack", + "scheduled_service": "no", + "home_link": "http://www.finnvalleyflyingclub.com" + }, + { + "id": "321138", + "ident": "IE-0015", + "type": "small_airport", + "name": "Ruskey Airstrip", + "latitude_deg": "54.8405299", + "longitude_deg": "-7.6547115", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-DL", + "scheduled_service": "no", + "home_link": "http://www.RuskeyAirfield.com" + }, + { + "id": "321139", + "ident": "IE-0016", + "type": "small_airport", + "name": "Drumavish Airstrip", + "latitude_deg": "54.78812", + "longitude_deg": "-7.724356", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-DL", + "scheduled_service": "no" + }, + { + "id": "321140", + "ident": "IE-0017", + "type": "small_airport", + "name": "Coulters Airstrip", + "latitude_deg": "54.82439", + "longitude_deg": "-7.62959", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-DL", + "municipality": "Carnowen", + "scheduled_service": "no" + }, + { + "id": "321161", + "ident": "IE-0018", + "type": "small_airport", + "name": "Abbeyfeale Airfield", + "latitude_deg": "52.396374", + "longitude_deg": "-9.338401", + "elevation_ft": "300", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-KY", + "municipality": "Abbeyfeale", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abbeyfeale_Aerodrome", + "keywords": "EIRE" + }, + { + "id": "321162", + "ident": "IE-0019", + "type": "small_airport", + "name": "Ballyjamesduff Airstrip", + "latitude_deg": "53.864439", + "longitude_deg": "-7.214957", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-CN", + "municipality": "Ballyjamesduff", + "scheduled_service": "no" + }, + { + "id": "321181", + "ident": "IE-0020", + "type": "small_airport", + "name": "Tibohine Airfield", + "latitude_deg": "53.884757", + "longitude_deg": "-8.488176", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-RN", + "municipality": "Tibohine", + "scheduled_service": "no" + }, + { + "id": "321197", + "ident": "IE-0021", + "type": "small_airport", + "name": "Eniskeane Airfield", + "latitude_deg": "51.737526", + "longitude_deg": "-8.863843", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-C", + "municipality": "Eniskeane", + "scheduled_service": "no" + }, + { + "id": "321226", + "ident": "IE-0022", + "type": "small_airport", + "name": "Morriscastle Airstrip", + "latitude_deg": "52.516621", + "longitude_deg": "-6.26371", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-WH", + "municipality": "Morriscastle", + "scheduled_service": "no" + }, + { + "id": "321275", + "ident": "IE-0023", + "type": "small_airport", + "name": "Ardfert Airstrip", + "latitude_deg": "52.34653", + "longitude_deg": "-9.76285", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-KY", + "municipality": "Ardfert", + "scheduled_service": "no" + }, + { + "id": "321314", + "ident": "IE-0024", + "type": "small_airport", + "name": "Killamaster Airstrip", + "latitude_deg": "52.866546", + "longitude_deg": "-6.810249", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-CW", + "municipality": "Killamaster", + "scheduled_service": "no" + }, + { + "id": "321320", + "ident": "IE-0025", + "type": "small_airport", + "name": "The Forge Airstrip", + "latitude_deg": "52.81052", + "longitude_deg": "-8.13732", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-TA", + "municipality": "Nenagh", + "scheduled_service": "no" + }, + { + "id": "321342", + "ident": "IE-0026", + "type": "small_airport", + "name": "Ballina Airfield", + "latitude_deg": "54.089209", + "longitude_deg": "-9.160676", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-MO", + "municipality": "Ballina", + "scheduled_service": "no" + }, + { + "id": "321343", + "ident": "IE-0027", + "type": "small_airport", + "name": "Allenwood Airstrip", + "latitude_deg": "53.267785", + "longitude_deg": "-6.839772", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-KE", + "municipality": "Robertstown", + "scheduled_service": "no" + }, + { + "id": "321344", + "ident": "IE-0028", + "type": "small_airport", + "name": "Ballyboe Airstrip", + "latitude_deg": "52.383923", + "longitude_deg": "-7.618068", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-TA", + "municipality": "Gammonsfield", + "scheduled_service": "no" + }, + { + "id": "321350", + "ident": "IE-0029", + "type": "small_airport", + "name": "Borris-in-Ossory Airstrip", + "latitude_deg": "52.92613", + "longitude_deg": "-7.65352", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-LS", + "municipality": "Borris-in-Ossory", + "scheduled_service": "no" + }, + { + "id": "321351", + "ident": "IE-0030", + "type": "small_airport", + "name": "Bunnyconnellan Airstrip", + "latitude_deg": "54.094487", + "longitude_deg": "-9.034681", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-MO", + "municipality": "Bunnyconnellan", + "scheduled_service": "no" + }, + { + "id": "321414", + "ident": "IE-0031", + "type": "small_airport", + "name": "Granard Airfield", + "latitude_deg": "53.74978", + "longitude_deg": "-7.53327", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-LD", + "municipality": "Granard", + "scheduled_service": "no" + }, + { + "id": "321415", + "ident": "IE-0032", + "type": "small_airport", + "name": "Gowran Airstrip", + "latitude_deg": "52.64263", + "longitude_deg": "-7.12033", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-KK", + "municipality": "Gowran", + "scheduled_service": "no", + "keywords": "Rathcast" + }, + { + "id": "321482", + "ident": "IE-0033", + "type": "small_airport", + "name": "Stradbally Airstrip", + "latitude_deg": "53.04556", + "longitude_deg": "-7.163937", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-LS", + "municipality": "Stradbally", + "scheduled_service": "no" + }, + { + "id": "321483", + "ident": "IE-0034", + "type": "small_airport", + "name": "Ballyvalloo Airstrip", + "latitude_deg": "52.414439", + "longitude_deg": "-6.363058", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-WX", + "municipality": "Enniscorthy", + "scheduled_service": "no" + }, + { + "id": "321540", + "ident": "IE-0035", + "type": "small_airport", + "name": "Taggarts Airstrip", + "latitude_deg": "53.44808", + "longitude_deg": "-7.04839", + "elevation_ft": "243", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-MH", + "municipality": "Clonard", + "scheduled_service": "no" + }, + { + "id": "321541", + "ident": "IE-0036", + "type": "small_airport", + "name": "Spollens Airstrip", + "latitude_deg": "53.2934", + "longitude_deg": "-7.530334", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-OY", + "municipality": "Tullamore", + "scheduled_service": "no", + "keywords": "Silverbrook Airfield" + }, + { + "id": "321594", + "ident": "IE-0037", + "type": "small_airport", + "name": "Gay Tracy Airstrip", + "latitude_deg": "52.991607", + "longitude_deg": "-7.892731", + "elevation_ft": "230", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-OY", + "municipality": "Brosna", + "scheduled_service": "no" + }, + { + "id": "321596", + "ident": "IE-0038", + "type": "small_airport", + "name": "O'Loughlin Airstrip", + "latitude_deg": "53.17023", + "longitude_deg": "-7.019048", + "elevation_ft": "260", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-KE", + "municipality": "Monasterevin", + "scheduled_service": "no" + }, + { + "id": "321598", + "ident": "IE-0039", + "type": "small_airport", + "name": "Crossmolina Airstrip", + "latitude_deg": "54.134279", + "longitude_deg": "-9.366467", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-MO", + "municipality": "Crossmolina", + "scheduled_service": "no" + }, + { + "id": "321611", + "ident": "IE-0040", + "type": "small_airport", + "name": "Dorans Airstrip", + "latitude_deg": "53.51968", + "longitude_deg": "-7.67858", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-WH", + "municipality": "Shinglis", + "scheduled_service": "no" + }, + { + "id": "321685", + "ident": "IE-0041", + "type": "small_airport", + "name": "Warrens Airstrip", + "latitude_deg": "52.640212", + "longitude_deg": "-6.298816", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-WX", + "municipality": "Gorey", + "scheduled_service": "no" + }, + { + "id": "321723", + "ident": "IE-0042", + "type": "small_airport", + "name": "Laytown Airstrip", + "latitude_deg": "53.690727", + "longitude_deg": "-6.272178", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-MH", + "municipality": "Sevitsland", + "scheduled_service": "no" + }, + { + "id": "321724", + "ident": "IE-0043", + "type": "small_airport", + "name": "Whites Airstrip", + "latitude_deg": "53.66317", + "longitude_deg": "-8.63488", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-G", + "municipality": "Ballymaglancy", + "scheduled_service": "no" + }, + { + "id": "321832", + "ident": "IE-0044", + "type": "small_airport", + "name": "Ballyvarry Airstrip", + "latitude_deg": "53.892707", + "longitude_deg": "-9.122479", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-MO", + "municipality": "Loughkeeran", + "scheduled_service": "no" + }, + { + "id": "321836", + "ident": "IE-0045", + "type": "small_airport", + "name": "Maganey Airstrip", + "latitude_deg": "52.898174", + "longitude_deg": "-6.928672", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-KE", + "municipality": "Maganey Lower", + "scheduled_service": "no" + }, + { + "id": "321990", + "ident": "IE-0046", + "type": "small_airport", + "name": "Clonakilty Airstrip", + "latitude_deg": "51.6258872", + "longitude_deg": "-8.916197", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-C", + "scheduled_service": "no" + }, + { + "id": "322003", + "ident": "IE-0047", + "type": "small_airport", + "name": "Fethard Airstrip", + "latitude_deg": "52.471738", + "longitude_deg": "-7.734409", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-TA", + "municipality": "Fethard", + "scheduled_service": "no" + }, + { + "id": "322072", + "ident": "IE-0048", + "type": "small_airport", + "name": "Camus Airstrip", + "latitude_deg": "53.17147", + "longitude_deg": "-8.11363", + "elevation_ft": "108", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-G", + "municipality": "Friarsland", + "scheduled_service": "no" + }, + { + "id": "322163", + "ident": "IE-0049", + "type": "small_airport", + "name": "Millicent Airfield", + "latitude_deg": "53.271783", + "longitude_deg": "-6.68574", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-KE", + "municipality": "Millicent", + "scheduled_service": "no" + }, + { + "id": "322164", + "ident": "IE-0050", + "type": "small_airport", + "name": "Milltownpass Airfield", + "latitude_deg": "53.452082", + "longitude_deg": "-7.237543", + "elevation_ft": "281", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-WH", + "municipality": "Milltownpass", + "scheduled_service": "no" + }, + { + "id": "322258", + "ident": "IE-0051", + "type": "small_airport", + "name": "Carrigart Airstrip", + "latitude_deg": "55.161563", + "longitude_deg": "-7.710258", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-DL", + "municipality": "Devlinmore", + "scheduled_service": "no", + "keywords": "John Parke" + }, + { + "id": "324511", + "ident": "IE-0052", + "type": "small_airport", + "name": "Lough Sheelin Airstrip", + "latitude_deg": "53.7964", + "longitude_deg": "-7.28455", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-CN", + "municipality": "Aghnaskeagh", + "scheduled_service": "no" + }, + { + "id": "333195", + "ident": "IE-0053", + "type": "small_airport", + "name": "Carstown Ultralight Airstrip", + "latitude_deg": "53.7668", + "longitude_deg": "-6.3257", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-MH", + "municipality": "Ballymakenny", + "scheduled_service": "no" + }, + { + "id": "333196", + "ident": "IE-0054", + "type": "small_airport", + "name": "Craughwell Airfield", + "latitude_deg": "53.2461", + "longitude_deg": "-8.688", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-G", + "municipality": "Ballynageeragh", + "scheduled_service": "no" + }, + { + "id": "333197", + "ident": "IE-0055", + "type": "heliport", + "name": "Knocksedan Heliport", + "latitude_deg": "53.4543", + "longitude_deg": "-6.2656", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-D", + "municipality": "Knocksedan, Dublin", + "scheduled_service": "no", + "home_link": "https://irishhelicopters.com" + }, + { + "id": "333212", + "ident": "IE-0056", + "type": "small_airport", + "name": "Cregboy Airstrip", + "latitude_deg": "53.329", + "longitude_deg": "-8.9605", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-G", + "municipality": "Cregboy", + "scheduled_service": "no" + }, + { + "id": "333213", + "ident": "IE-0057", + "type": "small_airport", + "name": "Ellistown Airstrip", + "latitude_deg": "53.5364", + "longitude_deg": "-6.2593", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-D", + "municipality": "Ballyboughal", + "scheduled_service": "no" + }, + { + "id": "333217", + "ident": "IE-0058", + "type": "heliport", + "name": "Citywest Heliport", + "latitude_deg": "53.2856", + "longitude_deg": "-6.4456", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-D", + "municipality": "Dublin", + "scheduled_service": "no" + }, + { + "id": "333219", + "ident": "IE-0059", + "type": "small_airport", + "name": "Kilbrook Airstrip", + "latitude_deg": "53.423", + "longitude_deg": "-6.7785", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-KE", + "municipality": "Kilbrook", + "scheduled_service": "no" + }, + { + "id": "333220", + "ident": "IE-0060", + "type": "small_airport", + "name": "Dunslaughlin Airstrip", + "latitude_deg": "53.5192", + "longitude_deg": "-6.6001", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-MH", + "municipality": "Moorestown", + "scheduled_service": "no" + }, + { + "id": "333221", + "ident": "IE-0061", + "type": "small_airport", + "name": "Moyglare Airfield", + "latitude_deg": "53.4044", + "longitude_deg": "-6.6362", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-MH", + "municipality": "Moyglare", + "scheduled_service": "no", + "keywords": "Newtownmoyaghy UL" + }, + { + "id": "333223", + "ident": "IE-0062", + "type": "small_airport", + "name": "Pallas West Airstrip", + "latitude_deg": "52.8601", + "longitude_deg": "-8.0498", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-TA", + "municipality": "Toomyvara", + "scheduled_service": "no" + }, + { + "id": "333395", + "ident": "IE-0063", + "type": "small_airport", + "name": "Lickfinn Airstrip", + "latitude_deg": "52.591353", + "longitude_deg": "-7.643436", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-TA", + "municipality": "Killenaule", + "scheduled_service": "no" + }, + { + "id": "341233", + "ident": "IE-0064", + "type": "heliport", + "name": "Tory Island Helistrip", + "latitude_deg": "55.26521", + "longitude_deg": "-8.23405", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-DL", + "scheduled_service": "no" + }, + { + "id": "342612", + "ident": "IE-0065", + "type": "small_airport", + "name": "Tobertaskin Airstrip", + "latitude_deg": "53.60988", + "longitude_deg": "-6.26595", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-D", + "municipality": "Grangemount", + "scheduled_service": "no" + }, + { + "id": "343905", + "ident": "IE-0066", + "type": "heliport", + "name": "Skellig Michael Heliport", + "latitude_deg": "51.77029", + "longitude_deg": "-10.53799", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-KY", + "municipality": "Portmagee", + "scheduled_service": "no" + }, + { + "id": "343945", + "ident": "IE-0067", + "type": "small_airport", + "name": "Feohanagh Airstrip", + "latitude_deg": "52.387396", + "longitude_deg": "-8.973234", + "continent": "EU", + "iso_country": "IE", + "iso_region": "IE-KY", + "municipality": "Feohanagh", + "scheduled_service": "no" + }, + { + "id": "17877", + "ident": "IG00", + "type": "heliport", + "name": "Cameron Hospital Heliport", + "latitude_deg": "41.6338996887207", + "longitude_deg": "-84.99469757080078", + "elevation_ft": "1073", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Angola", + "scheduled_service": "no", + "gps_code": "IG00", + "local_code": "IG00" + }, + { + "id": "17878", + "ident": "IG01", + "type": "heliport", + "name": "Iwc Heliport", + "latitude_deg": "39.78369903564453", + "longitude_deg": "-87.18360137939453", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "IG01", + "local_code": "IG01" + }, + { + "id": "17879", + "ident": "IG02", + "type": "closed", + "name": "Ratcliff Airport", + "latitude_deg": "40.273102", + "longitude_deg": "-86.907501", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lafayette", + "scheduled_service": "no", + "keywords": "IG02" + }, + { + "id": "17880", + "ident": "IG03", + "type": "small_airport", + "name": "Bluebird Airport", + "latitude_deg": "39.391348", + "longitude_deg": "-86.597103", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Paragon", + "scheduled_service": "no", + "gps_code": "IG03", + "local_code": "IG03" + }, + { + "id": "17881", + "ident": "IG04", + "type": "small_airport", + "name": "Litzinger Ultralightport", + "latitude_deg": "39.046101", + "longitude_deg": "-85.1567", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Milan", + "scheduled_service": "no", + "gps_code": "IG04", + "local_code": "IG04" + }, + { + "id": "46310", + "ident": "IG05", + "type": "small_airport", + "name": "Wheeler Airport", + "latitude_deg": "41.189763", + "longitude_deg": "-86.606956", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Knox", + "scheduled_service": "no", + "gps_code": "IG05", + "local_code": "IG05" + }, + { + "id": "17882", + "ident": "IG06", + "type": "heliport", + "name": "Wolfelt Heliport", + "latitude_deg": "40.48809814453125", + "longitude_deg": "-86.85189819335938", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "IG06", + "local_code": "IG06" + }, + { + "id": "17883", + "ident": "IG07", + "type": "small_airport", + "name": "Josephs Field", + "latitude_deg": "39.05690002441406", + "longitude_deg": "-85.03559875488281", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Moores Hill", + "scheduled_service": "no", + "gps_code": "IG07", + "local_code": "IG07" + }, + { + "id": "42774", + "ident": "IG22", + "type": "seaplane_base", + "name": "Lake Maxinkuckee Seaplane Base", + "latitude_deg": "41.20611191", + "longitude_deg": "-86.40444183", + "elevation_ft": "733", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Culver", + "scheduled_service": "no", + "gps_code": "01H", + "local_code": "01H", + "keywords": "IG22" + }, + { + "id": "17886", + "ident": "II00", + "type": "heliport", + "name": "Dammon Heliport", + "latitude_deg": "40.50640106201172", + "longitude_deg": "-86.86280059814453", + "elevation_ft": "664", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Battle Ground", + "scheduled_service": "no", + "gps_code": "II00", + "local_code": "II00" + }, + { + "id": "17887", + "ident": "II01", + "type": "small_airport", + "name": "Grandlienard-Hogg Airport", + "latitude_deg": "40.75619888305664", + "longitude_deg": "-85.25050354003906", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bluffton", + "scheduled_service": "no", + "gps_code": "II01", + "local_code": "II01" + }, + { + "id": "17888", + "ident": "II02", + "type": "small_airport", + "name": "Kline Field", + "latitude_deg": "41.38560104370117", + "longitude_deg": "-84.82689666748047", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Butler", + "scheduled_service": "no", + "gps_code": "II02", + "local_code": "II02" + }, + { + "id": "17889", + "ident": "II03", + "type": "small_airport", + "name": "Buell Airport", + "latitude_deg": "39.19860076904297", + "longitude_deg": "-85.13639831542969", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Milan", + "scheduled_service": "no", + "gps_code": "II03", + "local_code": "II03" + }, + { + "id": "17890", + "ident": "II04", + "type": "small_airport", + "name": "North West Indiana Air Airport", + "latitude_deg": "40.8838996887207", + "longitude_deg": "-87.36920166015625", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Brook", + "scheduled_service": "no", + "gps_code": "II04", + "local_code": "II04" + }, + { + "id": "17891", + "ident": "II05", + "type": "closed", + "name": "Woodcock Airport", + "latitude_deg": "41.074201", + "longitude_deg": "-86.064201", + "elevation_ft": "858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Akron", + "scheduled_service": "no", + "keywords": "II05" + }, + { + "id": "17892", + "ident": "II06", + "type": "small_airport", + "name": "Ferrell Airport", + "latitude_deg": "39.970001220703125", + "longitude_deg": "-85.4708023071289", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Cadiz", + "scheduled_service": "no", + "gps_code": "II06", + "local_code": "II06" + }, + { + "id": "17893", + "ident": "II07", + "type": "small_airport", + "name": "Clover Knoll Airport", + "latitude_deg": "39.532418", + "longitude_deg": "-86.832404", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Cloverdale", + "scheduled_service": "no", + "gps_code": "II07", + "local_code": "II07" + }, + { + "id": "17894", + "ident": "II08", + "type": "small_airport", + "name": "Rheude Airport", + "latitude_deg": "40.6609001159668", + "longitude_deg": "-87.439697265625", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Earl Park", + "scheduled_service": "no", + "gps_code": "II08", + "local_code": "II08" + }, + { + "id": "17895", + "ident": "II09", + "type": "small_airport", + "name": "Patrum Field", + "latitude_deg": "39.573113", + "longitude_deg": "-86.618671", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Stilesville", + "scheduled_service": "no", + "gps_code": "II09", + "local_code": "II09" + }, + { + "id": "17896", + "ident": "II10", + "type": "closed", + "name": "Rockey's Air Strip", + "latitude_deg": "40.582", + "longitude_deg": "-86.167503", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Galveston", + "scheduled_service": "no", + "keywords": "II10" + }, + { + "id": "17897", + "ident": "II11", + "type": "small_airport", + "name": "Pelz Port Airport", + "latitude_deg": "41.210601806640625", + "longitude_deg": "-84.98609924316406", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Grabill", + "scheduled_service": "no", + "gps_code": "II11", + "local_code": "II11" + }, + { + "id": "17898", + "ident": "II12", + "type": "small_airport", + "name": "Dague Strip", + "latitude_deg": "40.964500427246094", + "longitude_deg": "-86.37190246582031", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Grass Creek", + "scheduled_service": "no", + "gps_code": "II12", + "local_code": "II12" + }, + { + "id": "45418", + "ident": "II13", + "type": "small_airport", + "name": "Sugar Creek Air Park", + "latitude_deg": "39.920278", + "longitude_deg": "-85.598611", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Markleville", + "scheduled_service": "no", + "gps_code": "II13", + "local_code": "II13" + }, + { + "id": "17899", + "ident": "II14", + "type": "small_airport", + "name": "Beck Private Airport", + "latitude_deg": "40.96120071411133", + "longitude_deg": "-85.5625", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Huntington", + "scheduled_service": "no", + "gps_code": "II14", + "local_code": "II14" + }, + { + "id": "17900", + "ident": "II15", + "type": "closed", + "name": "Friedrich Airport", + "latitude_deg": "40.993698", + "longitude_deg": "-86.341698", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Kewanna", + "scheduled_service": "no", + "keywords": "II15" + }, + { + "id": "17901", + "ident": "II16", + "type": "small_airport", + "name": "Pigeon Airport", + "latitude_deg": "41.637001037597656", + "longitude_deg": "-84.94940185546875", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Angola", + "scheduled_service": "no", + "gps_code": "II16", + "local_code": "II16" + }, + { + "id": "17902", + "ident": "II17", + "type": "closed", + "name": "Bickel's Cow Patch Airport", + "latitude_deg": "41.268101", + "longitude_deg": "-86.559502", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Knox", + "scheduled_service": "no", + "keywords": "II17" + }, + { + "id": "17903", + "ident": "II18", + "type": "small_airport", + "name": "Lou Abbett Farms Airport", + "latitude_deg": "41.335601806640625", + "longitude_deg": "-86.92859649658203", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "La Crosse", + "scheduled_service": "no", + "gps_code": "II18", + "local_code": "II18" + }, + { + "id": "17904", + "ident": "II19", + "type": "small_airport", + "name": "Etter Airport", + "latitude_deg": "40.40610122680664", + "longitude_deg": "-86.75360107421875", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "II19", + "local_code": "II19" + }, + { + "id": "17905", + "ident": "II20", + "type": "small_airport", + "name": "Mossburg Airport", + "latitude_deg": "40.67369842529297", + "longitude_deg": "-85.26329803466797", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Liberty Center", + "scheduled_service": "no", + "gps_code": "II20", + "local_code": "II20" + }, + { + "id": "17906", + "ident": "II21", + "type": "small_airport", + "name": "Zollinger Strip", + "latitude_deg": "41.47529983520508", + "longitude_deg": "-85.6947021484375", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Ligonier", + "scheduled_service": "no", + "gps_code": "II21", + "local_code": "II21" + }, + { + "id": "17907", + "ident": "II22", + "type": "closed", + "name": "Antonian Airport", + "latitude_deg": "41.102001", + "longitude_deg": "-86.932198", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Medaryville", + "scheduled_service": "no", + "keywords": "II22" + }, + { + "id": "17908", + "ident": "II23", + "type": "heliport", + "name": "HSHS Good Shepherd Hospital Heliport", + "latitude_deg": "39.406136", + "longitude_deg": "-88.808855", + "elevation_ft": "628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Shelbyville", + "scheduled_service": "no", + "gps_code": "II23", + "local_code": "II23", + "keywords": "Shelby Memorial Hospital Heliport" + }, + { + "id": "17909", + "ident": "II25", + "type": "closed", + "name": "Timber Trails Airport", + "latitude_deg": "39.337299", + "longitude_deg": "-86.779701", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Spencer", + "scheduled_service": "no", + "keywords": "II25" + }, + { + "id": "17910", + "ident": "II26", + "type": "small_airport", + "name": "Ashby Airport", + "latitude_deg": "40.70389938354492", + "longitude_deg": "-87.18779754638672", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Remington", + "scheduled_service": "no", + "gps_code": "II26", + "local_code": "II26" + }, + { + "id": "17911", + "ident": "II27", + "type": "small_airport", + "name": "Ward Airport", + "latitude_deg": "40.16669845581055", + "longitude_deg": "-85.94080352783203", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Arcadia", + "scheduled_service": "no", + "gps_code": "II27", + "local_code": "II27" + }, + { + "id": "17912", + "ident": "II28", + "type": "small_airport", + "name": "Stettler Strip", + "latitude_deg": "41.210683", + "longitude_deg": "-85.063098", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Leo", + "scheduled_service": "no", + "gps_code": "II28", + "local_code": "II28" + }, + { + "id": "17913", + "ident": "II29", + "type": "small_airport", + "name": "Owens Field", + "latitude_deg": "39.61090087890625", + "longitude_deg": "-86.756103515625", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Greencastle", + "scheduled_service": "no", + "gps_code": "II29", + "local_code": "II29" + }, + { + "id": "17914", + "ident": "II30", + "type": "small_airport", + "name": "Ridgway Flying Service Airport", + "latitude_deg": "38.912045", + "longitude_deg": "-87.406697", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Carlisle", + "scheduled_service": "no", + "gps_code": "II30", + "local_code": "II30" + }, + { + "id": "17915", + "ident": "II31", + "type": "small_airport", + "name": "Jurassic Landings Ultralightport", + "latitude_deg": "41.18790054321289", + "longitude_deg": "-88.16709899902344", + "elevation_ft": "585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Essex", + "scheduled_service": "no", + "gps_code": "II31", + "local_code": "II31" + }, + { + "id": "17916", + "ident": "II32", + "type": "small_airport", + "name": "Raceway Airport", + "latitude_deg": "38.049198150634766", + "longitude_deg": "-87.38140106201172", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Chandler", + "scheduled_service": "no", + "gps_code": "II32", + "local_code": "II32" + }, + { + "id": "17917", + "ident": "II33", + "type": "small_airport", + "name": "Eickholtz Airport", + "latitude_deg": "38.460899353027344", + "longitude_deg": "-87.65499877929688", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Charleston", + "scheduled_service": "no", + "gps_code": "II33", + "local_code": "II33" + }, + { + "id": "17918", + "ident": "II34", + "type": "closed", + "name": "Booe Airport", + "latitude_deg": "39.273102", + "longitude_deg": "-87.122233", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Clay City", + "scheduled_service": "no", + "keywords": "II34" + }, + { + "id": "17919", + "ident": "II35", + "type": "small_airport", + "name": "Lindley Private Airport", + "latitude_deg": "39.80870056152344", + "longitude_deg": "-86.49559783935547", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "II35", + "local_code": "II35" + }, + { + "id": "17920", + "ident": "II36", + "type": "small_airport", + "name": "Mc Neil Field", + "latitude_deg": "39.665298461899994", + "longitude_deg": "-85.81670379639999", + "elevation_ft": "862", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Fountaintown", + "scheduled_service": "no", + "gps_code": "II36", + "local_code": "II36" + }, + { + "id": "17921", + "ident": "II37", + "type": "small_airport", + "name": "Arthur Airport", + "latitude_deg": "39.74639892578125", + "longitude_deg": "-85.77469635009766", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Greenfield", + "scheduled_service": "no", + "gps_code": "II37", + "local_code": "II37" + }, + { + "id": "17922", + "ident": "II38", + "type": "small_airport", + "name": "Sherk Field", + "latitude_deg": "41.42639923095703", + "longitude_deg": "-86.31639862060547", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lapaz", + "scheduled_service": "no", + "gps_code": "II38", + "local_code": "II38" + }, + { + "id": "17923", + "ident": "II39", + "type": "small_airport", + "name": "Hollingsworth Airport", + "latitude_deg": "38.336201", + "longitude_deg": "-87.467795", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Francisco", + "scheduled_service": "no", + "keywords": "II39" + }, + { + "id": "17924", + "ident": "II40", + "type": "small_airport", + "name": "Hopkins Farms Airport", + "latitude_deg": "38.30839920043945", + "longitude_deg": "-87.40859985351562", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Francisco", + "scheduled_service": "no", + "gps_code": "II40", + "local_code": "II40" + }, + { + "id": "17925", + "ident": "II41", + "type": "heliport", + "name": "Clinton Power Station Heliport", + "latitude_deg": "40.17169952392578", + "longitude_deg": "-88.8375015258789", + "elevation_ft": "737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "II41", + "local_code": "II41" + }, + { + "id": "17926", + "ident": "II42", + "type": "small_airport", + "name": "Creekside Farm Airport", + "latitude_deg": "40.068599700927734", + "longitude_deg": "-85.92220306396484", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Noblesville", + "scheduled_service": "no", + "gps_code": "II42", + "local_code": "II42" + }, + { + "id": "17927", + "ident": "II43", + "type": "small_airport", + "name": "C. V. Airport", + "latitude_deg": "41.75", + "longitude_deg": "-86.19219970703125", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Granger", + "scheduled_service": "no", + "gps_code": "II43", + "local_code": "II43" + }, + { + "id": "17928", + "ident": "II44", + "type": "heliport", + "name": "Starke Memorial Hospital Heliport", + "latitude_deg": "41.28730010986328", + "longitude_deg": "-86.62249755859375", + "elevation_ft": "717", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Knox", + "scheduled_service": "no", + "gps_code": "II44", + "local_code": "II44" + }, + { + "id": "17929", + "ident": "II45", + "type": "small_airport", + "name": "Renshaw Airport", + "latitude_deg": "37.89250183105469", + "longitude_deg": "-87.19000244140625", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hatfield", + "scheduled_service": "no", + "gps_code": "II45", + "local_code": "II45" + }, + { + "id": "17930", + "ident": "II46", + "type": "closed", + "name": "Carlson Farms Heliport", + "latitude_deg": "41.388302", + "longitude_deg": "-87.213898", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hebron", + "scheduled_service": "no", + "keywords": "II46" + }, + { + "id": "17931", + "ident": "II47", + "type": "heliport", + "name": "St Joseph's Hospital Heliport", + "latitude_deg": "38.317298889160156", + "longitude_deg": "-86.95780181884766", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Huntingburg", + "scheduled_service": "no", + "gps_code": "II47", + "local_code": "II47" + }, + { + "id": "17932", + "ident": "II48", + "type": "heliport", + "name": "Channel 13 Heliport", + "latitude_deg": "39.78120040893555", + "longitude_deg": "-86.1583023071289", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "II48", + "local_code": "II48" + }, + { + "id": "17933", + "ident": "II49", + "type": "small_airport", + "name": "Foertsch Airport", + "latitude_deg": "38.0369987487793", + "longitude_deg": "-86.91110229492188", + "elevation_ft": "476", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lamar", + "scheduled_service": "no", + "gps_code": "II49", + "local_code": "II49" + }, + { + "id": "17934", + "ident": "II50", + "type": "small_airport", + "name": "Jack Oak Airport", + "latitude_deg": "39.4827995300293", + "longitude_deg": "-86.6769027709961", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lewisville", + "scheduled_service": "no", + "gps_code": "II50", + "local_code": "II50" + }, + { + "id": "17935", + "ident": "II51", + "type": "small_airport", + "name": "Hull Airport", + "latitude_deg": "41.484798431396484", + "longitude_deg": "-85.59300231933594", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Ligonier", + "scheduled_service": "no", + "gps_code": "II51", + "local_code": "II51" + }, + { + "id": "17936", + "ident": "II52", + "type": "small_airport", + "name": "Haffner Airport", + "latitude_deg": "39.877498626708984", + "longitude_deg": "-86.52780151367188", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lizton", + "scheduled_service": "no", + "gps_code": "II52", + "local_code": "II52" + }, + { + "id": "17937", + "ident": "II53", + "type": "closed", + "name": "Burke's Airport", + "latitude_deg": "38.770302", + "longitude_deg": "-85.484703", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Madison", + "scheduled_service": "no", + "keywords": "II53" + }, + { + "id": "17938", + "ident": "II54", + "type": "small_airport", + "name": "Giltner Airport", + "latitude_deg": "38.81589889526367", + "longitude_deg": "-85.44640350341797", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "II54", + "local_code": "II54" + }, + { + "id": "17939", + "ident": "II55", + "type": "small_airport", + "name": "Hodges Airport", + "latitude_deg": "39.527000427246094", + "longitude_deg": "-86.30030059814453", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Martinsville", + "scheduled_service": "no", + "gps_code": "II55", + "local_code": "II55" + }, + { + "id": "17940", + "ident": "II56", + "type": "heliport", + "name": "Regional Haelth System Heliport", + "latitude_deg": "40.447299957300004", + "longitude_deg": "-86.12550354", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Kokomo", + "scheduled_service": "no", + "gps_code": "II56", + "local_code": "II56" + }, + { + "id": "17941", + "ident": "II57", + "type": "heliport", + "name": "Nipsco Southlake Complex Heliport", + "latitude_deg": "41.463401794433594", + "longitude_deg": "-87.32360076904297", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Merrillville", + "scheduled_service": "no", + "gps_code": "II57", + "local_code": "II57" + }, + { + "id": "17942", + "ident": "II59", + "type": "small_airport", + "name": "Strip Airport", + "latitude_deg": "39.84000015258789", + "longitude_deg": "-87.39360046386719", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "II59", + "local_code": "II59" + }, + { + "id": "17943", + "ident": "II61", + "type": "closed", + "name": "Fayette Memorial Hospital Heliport", + "latitude_deg": "39.656693", + "longitude_deg": "-85.13139", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Connersville", + "scheduled_service": "no", + "keywords": "II61" + }, + { + "id": "17944", + "ident": "II62", + "type": "small_airport", + "name": "Berger Airport", + "latitude_deg": "41.38779830932617", + "longitude_deg": "-86.25859832763672", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "II62", + "local_code": "II62" + }, + { + "id": "17945", + "ident": "II64", + "type": "heliport", + "name": "Universal Mine Heliport", + "latitude_deg": "39.61389923095703", + "longitude_deg": "-87.46199798583984", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Universal", + "scheduled_service": "no", + "gps_code": "II64", + "local_code": "II64" + }, + { + "id": "17946", + "ident": "II65", + "type": "small_airport", + "name": "Gilmore Airport", + "latitude_deg": "40.88750076293945", + "longitude_deg": "-87.12359619140625", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Rensselaer", + "scheduled_service": "no", + "gps_code": "II65", + "local_code": "II65" + }, + { + "id": "17947", + "ident": "II66", + "type": "heliport", + "name": "Heck Heliport", + "latitude_deg": "40.751399993896484", + "longitude_deg": "-85.9175033569336", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Rich Valley", + "scheduled_service": "no", + "gps_code": "II66", + "local_code": "II66" + }, + { + "id": "17948", + "ident": "II67", + "type": "small_airport", + "name": "Hickory Hills Airport", + "latitude_deg": "40.427349", + "longitude_deg": "-85.373694", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hartford City", + "scheduled_service": "no", + "gps_code": "II67", + "local_code": "II67" + }, + { + "id": "17949", + "ident": "II68", + "type": "small_airport", + "name": "Durham Airport", + "latitude_deg": "39.855", + "longitude_deg": "-86.959198", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Russellville", + "scheduled_service": "no", + "gps_code": "II68", + "local_code": "II68" + }, + { + "id": "17950", + "ident": "II69", + "type": "small_airport", + "name": "Harrod/Rose Airport", + "latitude_deg": "38.718101501464844", + "longitude_deg": "-85.76020050048828", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Scottsburg", + "scheduled_service": "no", + "gps_code": "II69", + "local_code": "II69" + }, + { + "id": "17951", + "ident": "II70", + "type": "small_airport", + "name": "Salsbery Airport", + "latitude_deg": "40.384498596191406", + "longitude_deg": "-86.06330108642578", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Sharpsville", + "scheduled_service": "no", + "gps_code": "II70", + "local_code": "II70" + }, + { + "id": "17952", + "ident": "II71", + "type": "small_airport", + "name": "Smith Airport", + "latitude_deg": "39.386398315399994", + "longitude_deg": "-85.6172027588", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "St. Paul", + "scheduled_service": "no", + "gps_code": "II71", + "local_code": "II71" + }, + { + "id": "17953", + "ident": "II72", + "type": "small_airport", + "name": "Anderson Airport", + "latitude_deg": "39.19580078125", + "longitude_deg": "-85.20559692382812", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Sunman", + "scheduled_service": "no", + "gps_code": "II72", + "local_code": "II72" + }, + { + "id": "17954", + "ident": "II73", + "type": "small_airport", + "name": "Good Earth Farm Strip", + "latitude_deg": "40.226200103759766", + "longitude_deg": "-84.83499908447266", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Union City", + "scheduled_service": "no", + "gps_code": "II73", + "local_code": "II73" + }, + { + "id": "17955", + "ident": "II74", + "type": "small_airport", + "name": "Eby Field", + "latitude_deg": "41.55979919433594", + "longitude_deg": "-86.0531005859375", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Wakarusa", + "scheduled_service": "no", + "gps_code": "II74", + "local_code": "II74" + }, + { + "id": "17956", + "ident": "II75", + "type": "small_airport", + "name": "Daugherty Field", + "latitude_deg": "40.67919921875", + "longitude_deg": "-85.41529846191406", + "elevation_ft": "839", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Warren", + "scheduled_service": "no", + "gps_code": "II75", + "local_code": "II75" + }, + { + "id": "17957", + "ident": "II76", + "type": "small_airport", + "name": "Clay Hill Farms Airport", + "latitude_deg": "38.85070037841797", + "longitude_deg": "-86.13680267333984", + "elevation_ft": "528", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Medora", + "scheduled_service": "no", + "gps_code": "II76", + "local_code": "II76" + }, + { + "id": "17958", + "ident": "II77", + "type": "small_airport", + "name": "Finney's Airpark", + "latitude_deg": "40.259498596191406", + "longitude_deg": "-85.260498046875", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "II77", + "local_code": "II77" + }, + { + "id": "17959", + "ident": "II78", + "type": "small_airport", + "name": "Wallace Field", + "latitude_deg": "39.8583984375", + "longitude_deg": "-85.60160064697266", + "elevation_ft": "995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Wilkinson", + "scheduled_service": "no", + "gps_code": "II78", + "local_code": "II78" + }, + { + "id": "17960", + "ident": "II79", + "type": "small_airport", + "name": "Sommers Airport", + "latitude_deg": "41.07699966430664", + "longitude_deg": "-86.72450256347656", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Winamac", + "scheduled_service": "no", + "gps_code": "II79", + "local_code": "II79" + }, + { + "id": "17961", + "ident": "II81", + "type": "small_airport", + "name": "Richardson Field", + "latitude_deg": "38.38059997558594", + "longitude_deg": "-87.22059631347656", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Winslow", + "scheduled_service": "no", + "gps_code": "II81", + "local_code": "II81" + }, + { + "id": "17962", + "ident": "II82", + "type": "small_airport", + "name": "Meadors Field", + "latitude_deg": "39.7942008972168", + "longitude_deg": "-86.57779693603516", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "II82", + "local_code": "II82" + }, + { + "id": "17963", + "ident": "II83", + "type": "closed", + "name": "Bramble Airport", + "latitude_deg": "39.834202", + "longitude_deg": "-86.434196", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Brownsburg", + "scheduled_service": "no", + "keywords": "II83" + }, + { + "id": "17964", + "ident": "II84", + "type": "small_airport", + "name": "Hilakos Airport", + "latitude_deg": "37.93199920654297", + "longitude_deg": "-87.77140045166016", + "elevation_ft": "381", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "II84", + "local_code": "II84" + }, + { + "id": "17965", + "ident": "II85", + "type": "small_airport", + "name": "Blomenberg Airport", + "latitude_deg": "40.89619827270508", + "longitude_deg": "-85.04910278320312", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Decatur", + "scheduled_service": "no", + "gps_code": "II85", + "local_code": "II85" + }, + { + "id": "17966", + "ident": "II86", + "type": "small_airport", + "name": "Poole Airport", + "latitude_deg": "40.01559829711914", + "longitude_deg": "-85.88749694824219", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Noblesville", + "scheduled_service": "no", + "gps_code": "II86", + "local_code": "II86" + }, + { + "id": "17967", + "ident": "II87", + "type": "small_airport", + "name": "Twelve Oaks Airport", + "latitude_deg": "39.45140075683594", + "longitude_deg": "-86.32830047607422", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Martinsville", + "scheduled_service": "no", + "gps_code": "II87", + "local_code": "II87" + }, + { + "id": "45413", + "ident": "II88", + "type": "heliport", + "name": "St. Joseph Hospital Heliport", + "latitude_deg": "40.484444", + "longitude_deg": "-86.157778", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Kokomo", + "scheduled_service": "no", + "gps_code": "II88", + "local_code": "II88" + }, + { + "id": "17968", + "ident": "II89", + "type": "small_airport", + "name": "Yelverton Airport", + "latitude_deg": "38.08700180053711", + "longitude_deg": "-87.68170166015625", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "St Wendel", + "scheduled_service": "no", + "gps_code": "II89", + "local_code": "II89" + }, + { + "id": "17969", + "ident": "II90", + "type": "small_airport", + "name": "Crawford Field", + "latitude_deg": "41.199798583984375", + "longitude_deg": "-86.8364028930664", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "North Judson", + "scheduled_service": "no", + "gps_code": "II90", + "local_code": "II90" + }, + { + "id": "17970", + "ident": "II91", + "type": "small_airport", + "name": "Dunbar Field", + "latitude_deg": "39.84389877319336", + "longitude_deg": "-86.50530242919922", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Pittsboro", + "scheduled_service": "no", + "gps_code": "II91", + "local_code": "II91" + }, + { + "id": "17971", + "ident": "II92", + "type": "heliport", + "name": "Layden Heliport", + "latitude_deg": "41.74169921875", + "longitude_deg": "-86.58360290527344", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Rolling Prairie", + "scheduled_service": "no", + "gps_code": "II92", + "local_code": "II92" + }, + { + "id": "17972", + "ident": "II93", + "type": "small_airport", + "name": "Bronson Airport", + "latitude_deg": "39.4838981628418", + "longitude_deg": "-86.22689819335938", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bargersville", + "scheduled_service": "no", + "gps_code": "II93", + "local_code": "II93" + }, + { + "id": "17973", + "ident": "II94", + "type": "small_airport", + "name": "Irion Airport", + "latitude_deg": "40.12839889526367", + "longitude_deg": "-85.88610076904297", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Noblesville", + "scheduled_service": "no", + "gps_code": "II94", + "local_code": "II94" + }, + { + "id": "17974", + "ident": "II95", + "type": "small_airport", + "name": "Rust's Landing Airport", + "latitude_deg": "41.364498138427734", + "longitude_deg": "-86.06330108642578", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bourbon", + "scheduled_service": "no", + "gps_code": "II95", + "local_code": "II95" + }, + { + "id": "17975", + "ident": "II96", + "type": "small_airport", + "name": "Buchta Airport", + "latitude_deg": "38.492801666259766", + "longitude_deg": "-86.93309783935547", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Haysville", + "scheduled_service": "no", + "gps_code": "II96", + "local_code": "II96" + }, + { + "id": "17976", + "ident": "II97", + "type": "small_airport", + "name": "Solenberg Airport", + "latitude_deg": "39.47779846191406", + "longitude_deg": "-85.88330078125", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Shelbyville", + "scheduled_service": "no", + "gps_code": "II97", + "local_code": "II97" + }, + { + "id": "17977", + "ident": "II98", + "type": "small_airport", + "name": "Shrum Field", + "latitude_deg": "39.04389953613281", + "longitude_deg": "-87.4219970703125", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Sullivan", + "scheduled_service": "no", + "gps_code": "II98", + "local_code": "II98" + }, + { + "id": "17978", + "ident": "II99", + "type": "small_airport", + "name": "Drake Field", + "latitude_deg": "41.4364013671875", + "longitude_deg": "-86.4708023071289", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Walkerton", + "scheduled_service": "no", + "gps_code": "II99", + "local_code": "II99" + }, + { + "id": "45011", + "ident": "IL-0001", + "type": "small_airport", + "name": "Kefar Gallim Highway Strip", + "latitude_deg": "32.7617093312", + "longitude_deg": "34.9535393715", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-HA", + "scheduled_service": "no" + }, + { + "id": "45012", + "ident": "IL-0002", + "type": "small_airport", + "name": "Mishmar Ayalon Highway Strip H", + "latitude_deg": "31.883434", + "longitude_deg": "34.948411", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-M", + "municipality": "Kfar Shmu'el", + "scheduled_service": "no" + }, + { + "id": "340306", + "ident": "IL-0003", + "type": "small_airport", + "name": "Gvulot Airstrip", + "latitude_deg": "31.2277", + "longitude_deg": "34.4604", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-D", + "municipality": "Gvulot", + "scheduled_service": "no" + }, + { + "id": "340307", + "ident": "IL-0004", + "type": "small_airport", + "name": "Talmei Yosef Airstrip", + "latitude_deg": "31.1252", + "longitude_deg": "34.3777", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-D", + "municipality": "Talmei Yosef", + "scheduled_service": "no" + }, + { + "id": "340308", + "ident": "IL-0005", + "type": "small_airport", + "name": "Palmahim South Airstrip", + "latitude_deg": "31.8692", + "longitude_deg": "34.6907", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-M", + "municipality": "Palmahim", + "scheduled_service": "no" + }, + { + "id": "340309", + "ident": "IL-0006", + "type": "small_airport", + "name": "Naan Airstrip", + "latitude_deg": "31.8851", + "longitude_deg": "34.8862", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-M", + "municipality": "Azaria", + "scheduled_service": "no" + }, + { + "id": "340310", + "ident": "IL-0007", + "type": "small_airport", + "name": "Israeli Center for Sport Aviation", + "latitude_deg": "31.9672", + "longitude_deg": "34.7536", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-M", + "municipality": "Rishon LeTsiyon", + "scheduled_service": "no" + }, + { + "id": "340311", + "ident": "IL-0008", + "type": "small_airport", + "name": "Ein Vered Airfield", + "latitude_deg": "32.2636", + "longitude_deg": "34.9511", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-M", + "municipality": "Lev haSharon", + "scheduled_service": "no" + }, + { + "id": "340585", + "ident": "IL-0009", + "type": "heliport", + "name": "Meir Medical Center Helipad", + "latitude_deg": "32.183686", + "longitude_deg": "34.894935", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-M", + "municipality": "Kefar Sava", + "scheduled_service": "no" + }, + { + "id": "340584", + "ident": "IL-0010", + "type": "heliport", + "name": "Hadassah Heliport", + "latitude_deg": "31.800017", + "longitude_deg": "35.240433", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-JM", + "municipality": "West Jerusalem", + "scheduled_service": "no" + }, + { + "id": "351599", + "ident": "IL-0011", + "type": "small_airport", + "name": "Kedma Airport", + "latitude_deg": "31.69692", + "longitude_deg": "34.76821", + "elevation_ft": "322", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-D", + "municipality": "Kedma", + "scheduled_service": "no" + }, + { + "id": "352055", + "ident": "IL-0012", + "type": "small_airport", + "name": "Dimona Airport", + "latitude_deg": "31.06104", + "longitude_deg": "35.01049", + "elevation_ft": "1798", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-D", + "municipality": "Dimona", + "scheduled_service": "no" + }, + { + "id": "355229", + "ident": "IL-0013", + "type": "heliport", + "name": "Assuta Helipad", + "latitude_deg": "31.778345", + "longitude_deg": "34.65511", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-M", + "municipality": "Ashdod", + "scheduled_service": "no" + }, + { + "id": "17981", + "ident": "IL00", + "type": "heliport", + "name": "Welch Heliport", + "latitude_deg": "40.099700927734375", + "longitude_deg": "-87.57440185546875", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "IL00", + "local_code": "IL00" + }, + { + "id": "17982", + "ident": "IL01", + "type": "small_airport", + "name": "Wolford's Airport", + "latitude_deg": "40.7925", + "longitude_deg": "-90.438202", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Abingdon", + "scheduled_service": "no", + "gps_code": "IL01", + "local_code": "IL01" + }, + { + "id": "17983", + "ident": "IL02", + "type": "small_airport", + "name": "Herbert C. Maas Airport", + "latitude_deg": "42.472198486328125", + "longitude_deg": "-87.90840148925781", + "elevation_ft": "719", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Zion", + "scheduled_service": "no", + "gps_code": "IL02", + "local_code": "IL02" + }, + { + "id": "17984", + "ident": "IL03", + "type": "heliport", + "name": "Columbia Hoffman Estates Medical Center Heliport", + "latitude_deg": "42.052799224853516", + "longitude_deg": "-88.14009857177734", + "elevation_ft": "807", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hoffman Estates", + "scheduled_service": "no", + "gps_code": "IL03", + "local_code": "IL03" + }, + { + "id": "17985", + "ident": "IL04", + "type": "heliport", + "name": "Methodist Medical Center of Illinois Heliport", + "latitude_deg": "40.700599670410156", + "longitude_deg": "-89.59480285644531", + "elevation_ft": "631", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Peoria", + "scheduled_service": "no", + "gps_code": "IL04", + "local_code": "IL04" + }, + { + "id": "17986", + "ident": "IL05", + "type": "small_airport", + "name": "Bingham Airport", + "latitude_deg": "42.44029998779297", + "longitude_deg": "-88.48899841308594", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Alden", + "scheduled_service": "no", + "gps_code": "IL05", + "local_code": "IL05" + }, + { + "id": "345328", + "ident": "IL06", + "type": "heliport", + "name": "Hopedale Medical Complex Heliport", + "latitude_deg": "40.417535", + "longitude_deg": "-89.41619", + "elevation_ft": "643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hopedale", + "scheduled_service": "no", + "gps_code": "IL06", + "local_code": "IL06" + }, + { + "id": "17987", + "ident": "IL07", + "type": "small_airport", + "name": "Taylor Airport", + "latitude_deg": "41.72359848022461", + "longitude_deg": "-89.29180145263672", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Amboy", + "scheduled_service": "no", + "gps_code": "IL07", + "local_code": "IL07" + }, + { + "id": "17988", + "ident": "IL08", + "type": "heliport", + "name": "Good Shepherd Hospital Heliport", + "latitude_deg": "42.195899963378906", + "longitude_deg": "-88.17289733886719", + "elevation_ft": "793", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Barrington", + "scheduled_service": "no", + "gps_code": "IL08", + "local_code": "IL08" + }, + { + "id": "17989", + "ident": "IL09", + "type": "closed", + "name": "Albrecht /2/ Airport", + "latitude_deg": "41.631401", + "longitude_deg": "-89.405098", + "elevation_ft": "802", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Amboy", + "scheduled_service": "no", + "keywords": "IL09" + }, + { + "id": "17990", + "ident": "IL11", + "type": "small_airport", + "name": "Donald Alfred Gade Airport", + "latitude_deg": "42.465301513671875", + "longitude_deg": "-88.04039764404297", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Antioch", + "scheduled_service": "no", + "gps_code": "IL11", + "local_code": "IL11" + }, + { + "id": "17991", + "ident": "IL12", + "type": "small_airport", + "name": "Kinsey Airport", + "latitude_deg": "39.880001", + "longitude_deg": "-90.465103", + "elevation_ft": "455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Arenzville", + "scheduled_service": "no", + "gps_code": "IL12", + "local_code": "IL12", + "keywords": "Kinsey RLA" + }, + { + "id": "17992", + "ident": "IL13", + "type": "small_airport", + "name": "Funfsinn Airport", + "latitude_deg": "41.47079849243164", + "longitude_deg": "-89.18080139160156", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "IL13", + "local_code": "IL13" + }, + { + "id": "17993", + "ident": "IL14", + "type": "heliport", + "name": "Stark Heliport", + "latitude_deg": "40.47999954223633", + "longitude_deg": "-89.02169799804688", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Bloomington", + "scheduled_service": "no", + "gps_code": "IL14", + "local_code": "IL14" + }, + { + "id": "17994", + "ident": "IL15", + "type": "small_airport", + "name": "Runyan Aviation Airport", + "latitude_deg": "40.569400787353516", + "longitude_deg": "-90.54869842529297", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Bushnell", + "scheduled_service": "no", + "gps_code": "IL15", + "local_code": "IL15" + }, + { + "id": "17995", + "ident": "IL16", + "type": "small_airport", + "name": "Houseman Airport", + "latitude_deg": "37.54010009765625", + "longitude_deg": "-89.12259674072266", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Cobden", + "scheduled_service": "no", + "gps_code": "IL16", + "local_code": "IL16" + }, + { + "id": "17996", + "ident": "IL17", + "type": "closed", + "name": "Center Point Heliport", + "latitude_deg": "41.849701", + "longitude_deg": "-87.9272", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Oak Brook", + "scheduled_service": "no", + "keywords": "IL17" + }, + { + "id": "17997", + "ident": "IL18", + "type": "closed", + "name": "Crook Restricted Landing Area", + "latitude_deg": "38.387001", + "longitude_deg": "-90.191803", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Columbia", + "scheduled_service": "no", + "keywords": "IL18" + }, + { + "id": "17998", + "ident": "IL19", + "type": "heliport", + "name": "Shawnee Community College Heliport", + "latitude_deg": "37.2672004699707", + "longitude_deg": "-89.0322036743164", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Ullin", + "scheduled_service": "no", + "gps_code": "IL19", + "local_code": "IL19" + }, + { + "id": "17999", + "ident": "IL20", + "type": "heliport", + "name": "Il Emergency Operations Center Heliport", + "latitude_deg": "39.61140060424805", + "longitude_deg": "-89.60440063476562", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "IL20", + "local_code": "IL20" + }, + { + "id": "18000", + "ident": "IL21", + "type": "heliport", + "name": "Presence Mercy Medical Center Heliport", + "latitude_deg": "41.785811", + "longitude_deg": "-88.324533", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Aurora", + "scheduled_service": "no", + "gps_code": "IL21", + "local_code": "IL21", + "keywords": "Mercy Center For Health Care Services Heliport" + }, + { + "id": "18001", + "ident": "IL22", + "type": "closed", + "name": "Heeg Airport", + "latitude_deg": "41.007111", + "longitude_deg": "-90.882896", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Oquawka", + "scheduled_service": "no", + "keywords": "IL22" + }, + { + "id": "18002", + "ident": "IL23", + "type": "small_airport", + "name": "Ellis Airport", + "latitude_deg": "42.441984", + "longitude_deg": "-89.450201", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Cedarville", + "scheduled_service": "no", + "gps_code": "IL23", + "local_code": "IL23" + }, + { + "id": "18003", + "ident": "IL24", + "type": "small_airport", + "name": "Richardson Airport", + "latitude_deg": "39.70750045776367", + "longitude_deg": "-89.88310241699219", + "elevation_ft": "653", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "New Berlin", + "scheduled_service": "no", + "gps_code": "IL24", + "local_code": "IL24" + }, + { + "id": "18004", + "ident": "IL25", + "type": "heliport", + "name": "Bromenn Hospital Heliport", + "latitude_deg": "40.49639892578125", + "longitude_deg": "-88.99079895019531", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Normal", + "scheduled_service": "no", + "gps_code": "IL25", + "local_code": "IL25" + }, + { + "id": "18005", + "ident": "IL26", + "type": "heliport", + "name": "Fayette County Hospital Heliport", + "latitude_deg": "38.969200134277344", + "longitude_deg": "-89.09609985351562", + "elevation_ft": "521", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Vandalia", + "scheduled_service": "no", + "gps_code": "IL26", + "local_code": "IL26" + }, + { + "id": "18006", + "ident": "IL27", + "type": "closed", + "name": "Landis Plastics Heliport", + "latitude_deg": "41.678601", + "longitude_deg": "-87.762497", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Alsip", + "scheduled_service": "no", + "keywords": "IL27" + }, + { + "id": "18007", + "ident": "IL29", + "type": "closed", + "name": "Von Alvens Airview Airport", + "latitude_deg": "41.300475", + "longitude_deg": "-87.654634", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Beecher", + "scheduled_service": "no", + "keywords": "IL29" + }, + { + "id": "18008", + "ident": "IL31", + "type": "small_airport", + "name": "Cooch Landing Area Airport", + "latitude_deg": "39.843299865722656", + "longitude_deg": "-88.45330047607422", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Atwood", + "scheduled_service": "no", + "gps_code": "IL31", + "local_code": "IL31" + }, + { + "id": "18009", + "ident": "IL32", + "type": "small_airport", + "name": "Adkisson Airport", + "latitude_deg": "39.78329849243164", + "longitude_deg": "-88.62139892578125", + "elevation_ft": "669", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hammond", + "scheduled_service": "no", + "gps_code": "IL32", + "local_code": "IL32" + }, + { + "id": "18010", + "ident": "IL33", + "type": "closed", + "name": "Sherman Hospital Heliport", + "latitude_deg": "42.054684", + "longitude_deg": "-88.280666", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Elgin", + "scheduled_service": "no", + "keywords": "IL33" + }, + { + "id": "18011", + "ident": "IL34", + "type": "small_airport", + "name": "Henderson Field", + "latitude_deg": "42.2145", + "longitude_deg": "-88.757004", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Belvidere", + "scheduled_service": "no", + "gps_code": "IL34", + "local_code": "IL34" + }, + { + "id": "18012", + "ident": "IL35", + "type": "closed", + "name": "Redpath Restricted Landing Area", + "latitude_deg": "38.181999", + "longitude_deg": "-89.808403", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Baldwin", + "scheduled_service": "no", + "keywords": "IL35" + }, + { + "id": "18013", + "ident": "IL36", + "type": "small_airport", + "name": "Bob Walberg Field", + "latitude_deg": "42.320899963378906", + "longitude_deg": "-88.7583999633789", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Belvidere", + "scheduled_service": "no", + "gps_code": "IL36", + "local_code": "IL36" + }, + { + "id": "18014", + "ident": "IL38", + "type": "small_airport", + "name": "J Maddock Airport", + "latitude_deg": "41.766998", + "longitude_deg": "-88.531998", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Big Rock", + "scheduled_service": "no", + "gps_code": "IL38", + "local_code": "IL38" + }, + { + "id": "323333", + "ident": "IL39", + "type": "small_airport", + "name": "Perry RLA Airport", + "latitude_deg": "39.480255", + "longitude_deg": "-87.8445778", + "elevation_ft": "691", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Kansas", + "scheduled_service": "no", + "gps_code": "IL39", + "local_code": "IL39" + }, + { + "id": "18015", + "ident": "IL40", + "type": "heliport", + "name": "St Joseph Medical Center - Bloomington Heliport", + "latitude_deg": "40.4822998047", + "longitude_deg": "-88.9564971924", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Bloomington", + "scheduled_service": "no", + "gps_code": "IL40", + "local_code": "IL40" + }, + { + "id": "18016", + "ident": "IL41", + "type": "heliport", + "name": "Rochelle Community Hospital Heliport", + "latitude_deg": "41.92829895019531", + "longitude_deg": "-89.0635986328125", + "elevation_ft": "817", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rochelle", + "scheduled_service": "no", + "gps_code": "IL41", + "local_code": "IL41" + }, + { + "id": "18017", + "ident": "IL42", + "type": "heliport", + "name": "Centegra Hospital - Woodstock Heliport", + "latitude_deg": "42.276198", + "longitude_deg": "-88.402703", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Woodstock", + "scheduled_service": "no", + "gps_code": "IL42", + "local_code": "IL42", + "keywords": "Memorial Medical Center - Woodstock Heliport" + }, + { + "id": "18018", + "ident": "IL43", + "type": "heliport", + "name": "Rural King Supply Heliport", + "latitude_deg": "39.492801666259766", + "longitude_deg": "-88.41220092773438", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mattoon", + "scheduled_service": "no", + "gps_code": "IL43", + "local_code": "IL43" + }, + { + "id": "18019", + "ident": "IL44", + "type": "heliport", + "name": "Arrow Heliport", + "latitude_deg": "42.40340042114258", + "longitude_deg": "-88.1875991821289", + "elevation_ft": "738", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Fox Lake", + "scheduled_service": "no", + "gps_code": "IL44", + "local_code": "IL44" + }, + { + "id": "18020", + "ident": "IL45", + "type": "closed", + "name": "Busboom Airport", + "latitude_deg": "40.3111", + "longitude_deg": "-88.015297", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Gifford", + "scheduled_service": "no", + "keywords": "IL45" + }, + { + "id": "18021", + "ident": "IL46", + "type": "small_airport", + "name": "Brooks Ranch Airport", + "latitude_deg": "40.46670150756836", + "longitude_deg": "-91.03350067138672", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Burnside", + "scheduled_service": "no", + "gps_code": "IL46", + "local_code": "IL46" + }, + { + "id": "18022", + "ident": "IL47", + "type": "heliport", + "name": "Lincoln Land Community College Heliport", + "latitude_deg": "39.72309875488281", + "longitude_deg": "-89.60430145263672", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "IL47", + "local_code": "IL47" + }, + { + "id": "18023", + "ident": "IL49", + "type": "closed", + "name": "Braidwood National Park Service Heliport", + "latitude_deg": "41.241695", + "longitude_deg": "-88.230301", + "elevation_ft": "602", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Godley", + "scheduled_service": "no", + "keywords": "IL49" + }, + { + "id": "13313", + "ident": "IL50", + "type": "heliport", + "name": "Memorial Hospital Heliport", + "latitude_deg": "40.4092108", + "longitude_deg": "-91.1334756", + "elevation_ft": "653", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Carthage", + "scheduled_service": "no", + "gps_code": "IL50", + "local_code": "IL50" + }, + { + "id": "18024", + "ident": "IL51", + "type": "small_airport", + "name": "Aero Acres Airport", + "latitude_deg": "41.03810119628906", + "longitude_deg": "-88.3375015258789", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Campus", + "scheduled_service": "no", + "gps_code": "IL51", + "local_code": "IL51" + }, + { + "id": "18025", + "ident": "IL52", + "type": "small_airport", + "name": "Williams Airport", + "latitude_deg": "40.43920135498047", + "longitude_deg": "-91.14399719238281", + "elevation_ft": "679", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Carthage", + "scheduled_service": "no", + "gps_code": "IL52", + "local_code": "IL52" + }, + { + "id": "18026", + "ident": "IL53", + "type": "closed", + "name": "Lung Restricted Landing Area", + "latitude_deg": "40.461201", + "longitude_deg": "-91.073799", + "elevation_ft": "617", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Carthage", + "scheduled_service": "no", + "keywords": "IL53" + }, + { + "id": "18027", + "ident": "IL54", + "type": "small_airport", + "name": "Richmond Airport", + "latitude_deg": "40.344200134277344", + "longitude_deg": "-90.44280242919922", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Table Grove", + "scheduled_service": "no", + "gps_code": "IL54", + "local_code": "IL54" + }, + { + "id": "18028", + "ident": "IL55", + "type": "closed", + "name": "Andrew RLA Restricted Landing Area Airport", + "latitude_deg": "40.160301", + "longitude_deg": "-88.304497", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Champaign", + "scheduled_service": "no", + "keywords": "IL55" + }, + { + "id": "18029", + "ident": "IL56", + "type": "small_airport", + "name": "Mc Culley Airport", + "latitude_deg": "40.220298767100005", + "longitude_deg": "-88.25370025630001", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Champaign", + "scheduled_service": "no", + "gps_code": "IL56", + "local_code": "IL56" + }, + { + "id": "18030", + "ident": "IL57", + "type": "small_airport", + "name": "Cottonwood Airport", + "latitude_deg": "40.422000885009766", + "longitude_deg": "-89.02059936523438", + "elevation_ft": "765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Bloomington", + "scheduled_service": "no", + "gps_code": "IL57", + "local_code": "IL57" + }, + { + "id": "18031", + "ident": "IL58", + "type": "closed", + "name": "Aero Four Airport", + "latitude_deg": "41.4361", + "longitude_deg": "-88.248702", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Channahon", + "scheduled_service": "no", + "keywords": "IL58" + }, + { + "id": "18032", + "ident": "IL59", + "type": "small_airport", + "name": "Chicago Glider Club Gliderport", + "latitude_deg": "41.43199921", + "longitude_deg": "-88.24729919", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Channahon", + "scheduled_service": "no", + "gps_code": "IL59", + "local_code": "IL59" + }, + { + "id": "18033", + "ident": "IL60", + "type": "closed", + "name": "Chatsworth Restricted Landing Area", + "latitude_deg": "40.743099", + "longitude_deg": "-88.291198", + "elevation_ft": "742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chatsworth", + "scheduled_service": "no", + "keywords": "IL60" + }, + { + "id": "18034", + "ident": "IL61", + "type": "heliport", + "name": "Vienna Correctional Center Heliport", + "latitude_deg": "37.39759826660156", + "longitude_deg": "-88.77420043945312", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Grantsburg", + "scheduled_service": "no", + "gps_code": "IL61", + "local_code": "IL61" + }, + { + "id": "18035", + "ident": "IL62", + "type": "closed", + "name": "Munch Heliport", + "latitude_deg": "42.422001", + "longitude_deg": "-88.730698", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chemung", + "scheduled_service": "no", + "keywords": "IL62" + }, + { + "id": "18036", + "ident": "IL63", + "type": "small_airport", + "name": "Mays Aviation Airport", + "latitude_deg": "40.70000076293945", + "longitude_deg": "-88.67510223388672", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chenoa", + "scheduled_service": "no", + "gps_code": "IL63", + "local_code": "IL63" + }, + { + "id": "18037", + "ident": "IL64", + "type": "small_airport", + "name": "Martin Airport", + "latitude_deg": "40.180599212646484", + "longitude_deg": "-89.5000991821289", + "elevation_ft": "558", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "IL64", + "local_code": "IL64" + }, + { + "id": "18038", + "ident": "IL65", + "type": "small_airport", + "name": "M.A.M Trail Airport", + "latitude_deg": "40.999001", + "longitude_deg": "-90.718001", + "elevation_ft": "605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Little York", + "scheduled_service": "no", + "gps_code": "IL65", + "local_code": "IL65" + }, + { + "id": "18039", + "ident": "IL67", + "type": "heliport", + "name": "Big Muddy Correctional Facility Heliport", + "latitude_deg": "38.129798889160156", + "longitude_deg": "-88.90480041503906", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Ina", + "scheduled_service": "no", + "gps_code": "IL67", + "local_code": "IL67" + }, + { + "id": "18040", + "ident": "IL68", + "type": "closed", + "name": "Mill Rose Farm Restricted Landing Area", + "latitude_deg": "42.077202", + "longitude_deg": "-88.159798", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago/Barrington", + "scheduled_service": "no", + "keywords": "IL68" + }, + { + "id": "18041", + "ident": "IL69", + "type": "heliport", + "name": "First Area Police Hdqtrs Heliport", + "latitude_deg": "41.79999923706055", + "longitude_deg": "-87.62779998779297", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "no", + "gps_code": "IL69", + "local_code": "IL69" + }, + { + "id": "18042", + "ident": "IL70", + "type": "heliport", + "name": "Wgn-Tv Heliport", + "latitude_deg": "41.948299407958984", + "longitude_deg": "-87.69329833984375", + "elevation_ft": "591", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "no", + "gps_code": "IL70", + "local_code": "IL70" + }, + { + "id": "18043", + "ident": "IL71", + "type": "small_airport", + "name": "Dury Estates Airport", + "latitude_deg": "37.81919861", + "longitude_deg": "-89.15219879", + "elevation_ft": "395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hurst", + "scheduled_service": "no", + "gps_code": "IL71", + "local_code": "IL71" + }, + { + "id": "18044", + "ident": "IL72", + "type": "closed", + "name": "Entwistle Airport", + "latitude_deg": "41.115601", + "longitude_deg": "-89.0448", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lostant", + "scheduled_service": "no", + "keywords": "IL72" + }, + { + "id": "18045", + "ident": "IL73", + "type": "heliport", + "name": "St Elizabeth's Hospital Heliport", + "latitude_deg": "38.509683", + "longitude_deg": "-89.988515", + "elevation_ft": "564", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Belleville", + "scheduled_service": "no", + "keywords": "IL73" + }, + { + "id": "18046", + "ident": "IL74", + "type": "closed", + "name": "Rose Packing County Heliport", + "latitude_deg": "41.802799", + "longitude_deg": "-87.766196", + "elevation_ft": "613", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "no", + "keywords": "IL74" + }, + { + "id": "18047", + "ident": "IL75", + "type": "heliport", + "name": "John H. Stroger Hospital of Cook County Heliport", + "latitude_deg": "41.87480163574219", + "longitude_deg": "-87.67340087890625", + "elevation_ft": "593", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "no", + "gps_code": "IL75", + "local_code": "IL75" + }, + { + "id": "18048", + "ident": "IL76", + "type": "closed", + "name": "Marcor Heliport", + "latitude_deg": "41.896098", + "longitude_deg": "-87.642303", + "elevation_ft": "1047", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "no", + "keywords": "IL76" + }, + { + "id": "18049", + "ident": "IL77", + "type": "heliport", + "name": "Advocate Christ Medical Center Heliport", + "latitude_deg": "41.723174", + "longitude_deg": "-87.73276", + "elevation_ft": "619", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago (Oak Lawn)", + "scheduled_service": "no", + "gps_code": "IL77", + "local_code": "IL77" + }, + { + "id": "18050", + "ident": "IL78", + "type": "small_airport", + "name": "Benoit Airport", + "latitude_deg": "41.131099700927734", + "longitude_deg": "-87.79229736328125", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Kankakee", + "scheduled_service": "no", + "gps_code": "IL78", + "local_code": "IL78" + }, + { + "id": "18051", + "ident": "IL79", + "type": "heliport", + "name": "Presence Resurrection Medical Center Heliport", + "latitude_deg": "41.986354", + "longitude_deg": "-87.814996", + "elevation_ft": "663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "no", + "gps_code": "IL79", + "local_code": "IL79" + }, + { + "id": "323224", + "ident": "IL80", + "type": "small_airport", + "name": "Flying Illini Airport", + "latitude_deg": "40.108167", + "longitude_deg": "-88.683132", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "De Land", + "scheduled_service": "no", + "gps_code": "IL80", + "local_code": "IL80" + }, + { + "id": "18053", + "ident": "IL81", + "type": "small_airport", + "name": "Berns Airport", + "latitude_deg": "40.937026", + "longitude_deg": "-88.045958", + "elevation_ft": "658", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Clifton", + "scheduled_service": "no", + "gps_code": "IL81", + "local_code": "IL81" + }, + { + "id": "18054", + "ident": "IL82", + "type": "small_airport", + "name": "Martin RLA Restricted Landing Area", + "latitude_deg": "40.109500885", + "longitude_deg": "-88.82869720459999", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "IL82", + "local_code": "IL82" + }, + { + "id": "18055", + "ident": "IL83", + "type": "closed", + "name": "Mulderink Heliport", + "latitude_deg": "41.4786", + "longitude_deg": "-87.589798", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "South Chicago Heights", + "scheduled_service": "no", + "keywords": "IL83" + }, + { + "id": "18056", + "ident": "IL84", + "type": "small_airport", + "name": "Douglas Airport", + "latitude_deg": "40.57640075683594", + "longitude_deg": "-91.10289764404297", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Colusa", + "scheduled_service": "no", + "gps_code": "IL84", + "local_code": "IL84" + }, + { + "id": "18057", + "ident": "IL85", + "type": "closed", + "name": "Midwestern Regional Medical Center Heliport", + "latitude_deg": "42.448634", + "longitude_deg": "-87.827979", + "elevation_ft": "711", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Zion", + "scheduled_service": "no", + "keywords": "IL85" + }, + { + "id": "18058", + "ident": "IL86", + "type": "small_airport", + "name": "Krohe Airport", + "latitude_deg": "39.93619918823242", + "longitude_deg": "-90.466796875", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Beardstown", + "scheduled_service": "no", + "gps_code": "IL86", + "local_code": "IL86" + }, + { + "id": "18059", + "ident": "IL87", + "type": "small_airport", + "name": "W Davis Airport", + "latitude_deg": "41.71110153198242", + "longitude_deg": "-89.11229705810547", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Compton", + "scheduled_service": "no", + "gps_code": "IL87", + "local_code": "IL87" + }, + { + "id": "18060", + "ident": "IL88", + "type": "small_airport", + "name": "Earl Barnickel Airport", + "latitude_deg": "41.67499923706055", + "longitude_deg": "-89.1167984008789", + "elevation_ft": "929", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Compton", + "scheduled_service": "no", + "gps_code": "IL88", + "local_code": "IL88" + }, + { + "id": "18061", + "ident": "IL89", + "type": "heliport", + "name": "St Mary Medical Center - Galesburg Heliport", + "latitude_deg": "40.9866981506", + "longitude_deg": "-90.3613967896", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Galesburg", + "scheduled_service": "no", + "gps_code": "IL89", + "local_code": "IL89" + }, + { + "id": "18062", + "ident": "IL90", + "type": "heliport", + "name": "Nordic Heliport", + "latitude_deg": "42.358299255371094", + "longitude_deg": "-87.88749694824219", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Gurnee", + "scheduled_service": "no", + "gps_code": "IL90", + "local_code": "IL90" + }, + { + "id": "18063", + "ident": "IL91", + "type": "closed", + "name": "Testoni Farms Airport", + "latitude_deg": "41.020901", + "longitude_deg": "-88.653397", + "elevation_ft": "688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Cornell", + "scheduled_service": "no", + "keywords": "IL91" + }, + { + "id": "18064", + "ident": "IL92", + "type": "heliport", + "name": "UChicago Medicine Ingalls Memorial Heliport", + "latitude_deg": "41.605726", + "longitude_deg": "-87.659967", + "elevation_ft": "608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Harvey", + "scheduled_service": "no", + "gps_code": "IL92", + "local_code": "IL92", + "keywords": "Ingalls Memorial Hospital" + }, + { + "id": "18065", + "ident": "IL93", + "type": "small_airport", + "name": "Hendrickson Flying Service Airport", + "latitude_deg": "41.9453010559082", + "longitude_deg": "-88.92400360107422", + "elevation_ft": "889", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Creston", + "scheduled_service": "no", + "gps_code": "IL93", + "local_code": "IL93" + }, + { + "id": "18066", + "ident": "IL94", + "type": "small_airport", + "name": "Hoblit Farms Airport", + "latitude_deg": "40.2262992859", + "longitude_deg": "-89.2428970337", + "elevation_ft": "623", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "IL94", + "local_code": "IL94" + }, + { + "id": "18067", + "ident": "IL95", + "type": "small_airport", + "name": "Corn Field", + "latitude_deg": "41.22309875488281", + "longitude_deg": "-88.14530181884766", + "elevation_ft": "585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Custer Park", + "scheduled_service": "no", + "gps_code": "IL95", + "local_code": "IL95" + }, + { + "id": "18068", + "ident": "IL96", + "type": "heliport", + "name": "Kaiser Heliport", + "latitude_deg": "41.385101318359375", + "longitude_deg": "-87.72029876708984", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Monee", + "scheduled_service": "no", + "gps_code": "IL96", + "local_code": "IL96" + }, + { + "id": "18069", + "ident": "IL97", + "type": "small_airport", + "name": "Springfield Southwest Airpark", + "latitude_deg": "39.73699951171875", + "longitude_deg": "-89.80979919433594", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "New Berlin", + "scheduled_service": "no", + "gps_code": "IL97", + "local_code": "IL97" + }, + { + "id": "18070", + "ident": "IL98", + "type": "heliport", + "name": "Chicagoland Speedway Heliport", + "latitude_deg": "41.479772", + "longitude_deg": "-88.058388", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Joliet", + "scheduled_service": "no", + "gps_code": "IL98", + "local_code": "IL98" + }, + { + "id": "18071", + "ident": "IL99", + "type": "small_airport", + "name": "B & C Airport", + "latitude_deg": "41.59280014038086", + "longitude_deg": "-88.96730041503906", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Earlville", + "scheduled_service": "no", + "gps_code": "IL99", + "local_code": "IL99" + }, + { + "id": "313285", + "ident": "ILX", + "type": "closed", + "name": "Ileg Airport", + "latitude_deg": "-5.4917", + "longitude_deg": "145.8022", + "elevation_ft": "60", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Ileg", + "scheduled_service": "no", + "iata_code": "ILX" + }, + { + "id": "299581", + "ident": "IM-0001", + "type": "small_airport", + "name": "Andreas Airfield", + "latitude_deg": "54.371111", + "longitude_deg": "-4.423333", + "elevation_ft": "97", + "continent": "EU", + "iso_country": "IM", + "iso_region": "IM-U-A", + "municipality": "Andreas", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Andreas", + "keywords": "RAF Andreas, EGZU" + }, + { + "id": "314319", + "ident": "IM-0002", + "type": "closed", + "name": "RAF Jurby", + "latitude_deg": "54.354", + "longitude_deg": "-4.5238", + "elevation_ft": "84", + "continent": "EU", + "iso_country": "IM", + "iso_region": "IM-U-A", + "municipality": "Jurby", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Jurby" + }, + { + "id": "318011", + "ident": "IM-0003", + "type": "small_airport", + "name": "Mount Rule Farm Airstrip", + "latitude_deg": "54.182127", + "longitude_deg": "-4.51311", + "elevation_ft": "316", + "continent": "EU", + "iso_country": "IM", + "iso_region": "IM-U-A", + "municipality": "Braddan", + "scheduled_service": "no" + }, + { + "id": "332857", + "ident": "IM-0004", + "type": "small_airport", + "name": "Andreas-Ballavoddan House Airstrip", + "latitude_deg": "54.356006", + "longitude_deg": "-4.438477", + "continent": "EU", + "iso_country": "IM", + "iso_region": "IM-U-A", + "municipality": "Andreas", + "scheduled_service": "no", + "keywords": "AG8404" + }, + { + "id": "329109", + "ident": "IM-0005", + "type": "heliport", + "name": "Noble's Hospital Heliport", + "latitude_deg": "54.1703682", + "longitude_deg": "-4.507838", + "continent": "EU", + "iso_country": "IM", + "iso_region": "IM-U-A", + "municipality": "Douglas", + "scheduled_service": "no" + }, + { + "id": "348799", + "ident": "IM-0006", + "type": "closed", + "name": "Hall Caine Airport", + "latitude_deg": "54.33583", + "longitude_deg": "-4.4375", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "IM", + "iso_region": "IM-U-A", + "municipality": "Ramsey", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hall_Caine_Airport", + "keywords": "Close Lake" + }, + { + "id": "312936", + "ident": "IMA", + "type": "small_airport", + "name": "Iamalele Airport", + "latitude_deg": "-9.5107", + "longitude_deg": "150.5246", + "elevation_ft": "40", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Iamalele, Fergusson Island", + "scheduled_service": "no", + "iata_code": "IMA", + "local_code": "IAM" + }, + { + "id": "311990", + "ident": "IMG", + "type": "small_airport", + "name": "Inhaminga Airport", + "latitude_deg": "-18.41", + "longitude_deg": "35.0045", + "elevation_ft": "1072", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-S", + "municipality": "Inhaminga", + "scheduled_service": "no", + "iata_code": "IMG" + }, + { + "id": "35129", + "ident": "IN-0001", + "type": "heliport", + "name": "Siachen Base Camp Heliport", + "latitude_deg": "35.194275", + "longitude_deg": "77.213051", + "elevation_ft": "11693", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Nubra", + "scheduled_service": "no" + }, + { + "id": "35130", + "ident": "IN-0002", + "type": "heliport", + "name": "Tawang Air Force Station", + "latitude_deg": "27.58846092224121", + "longitude_deg": "91.87769317626953", + "elevation_ft": "8756", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "scheduled_service": "no" + }, + { + "id": "42716", + "ident": "IN-0003", + "type": "small_airport", + "name": "Daulat Beg Oldi Advanced Landing Ground", + "latitude_deg": "35.396467", + "longitude_deg": "77.928965", + "elevation_ft": "16200", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Nubra", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Daulat_Beg_Oldi_Advanced_Landing_Ground" + }, + { + "id": "42717", + "ident": "IN-0004", + "type": "heliport", + "name": "Leh Heliport", + "latitude_deg": "34.129295", + "longitude_deg": "77.537205", + "elevation_ft": "10682", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Leh", + "scheduled_service": "no" + }, + { + "id": "42721", + "ident": "IN-0005", + "type": "closed", + "name": "Kayathar Airstrip", + "latitude_deg": "8.970609", + "longitude_deg": "77.816847", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Ahilandapuram", + "scheduled_service": "no" + }, + { + "id": "42722", + "ident": "IN-0006", + "type": "closed", + "name": "Chettinad Airstrip", + "latitude_deg": "10.164996", + "longitude_deg": "78.79377", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Kanadukathan", + "scheduled_service": "no" + }, + { + "id": "42724", + "ident": "IN-0007", + "type": "heliport", + "name": "Minicoy Heliport", + "latitude_deg": "8.27363", + "longitude_deg": "73.022301", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LD", + "municipality": "Minicoy", + "scheduled_service": "no", + "keywords": "Maliku" + }, + { + "id": "42729", + "ident": "IN-0008", + "type": "heliport", + "name": "Kavaratti Helipad", + "latitude_deg": "10.541667938232422", + "longitude_deg": "72.61604309082031", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LD", + "scheduled_service": "no" + }, + { + "id": "42730", + "ident": "IN-0009", + "type": "heliport", + "name": "Gangtok Helipad", + "latitude_deg": "27.355736", + "longitude_deg": "88.614156", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-SK", + "municipality": "Gangtok", + "scheduled_service": "no" + }, + { + "id": "42731", + "ident": "IN-0010", + "type": "small_airport", + "name": "Walong Advanced Landing Ground", + "latitude_deg": "28.12967300415", + "longitude_deg": "97.019660949707", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Walong" + }, + { + "id": "43966", + "ident": "IN-0011", + "type": "medium_airport", + "name": "Jakkur Aerodrome", + "latitude_deg": "13.07674", + "longitude_deg": "77.597645", + "elevation_ft": "3013", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Bengaluru", + "scheduled_service": "no", + "gps_code": "VOJK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jakkur_Aerodrome" + }, + { + "id": "44362", + "ident": "IN-0012", + "type": "small_airport", + "name": "Pakyong Airport", + "latitude_deg": "27.2313", + "longitude_deg": "88.587196", + "elevation_ft": "4590", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-SK", + "municipality": "Pakyong", + "scheduled_service": "no", + "gps_code": "VEPY", + "iata_code": "PYG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pakyong_Airport" + }, + { + "id": "44908", + "ident": "IN-0013", + "type": "small_airport", + "name": "Nadirgul Airport", + "latitude_deg": "17.306142", + "longitude_deg": "78.561004", + "elevation_ft": "1811", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TG", + "municipality": "Hyderabad", + "scheduled_service": "no", + "home_link": "http://www.aai.aero/allAirports/nadirgul.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nadirgul_Airport", + "keywords": "NDGL, Nadergul" + }, + { + "id": "44475", + "ident": "IN-0014", + "type": "closed", + "name": "Koirengei Airstrip", + "latitude_deg": "24.872459411621094", + "longitude_deg": "93.9256820678711", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MN", + "scheduled_service": "no" + }, + { + "id": "44582", + "ident": "IN-0015", + "type": "small_airport", + "name": "Baljek Airport", + "latitude_deg": "25.661487579345703", + "longitude_deg": "90.34503936767578", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-ML", + "scheduled_service": "yes" + }, + { + "id": "46282", + "ident": "IN-0016", + "type": "closed", + "name": "Ledo Airfield", + "latitude_deg": "27.302441", + "longitude_deg": "95.737031", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AS", + "municipality": "Ledo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ledo_Airfield" + }, + { + "id": "46283", + "ident": "IN-0017", + "type": "closed", + "name": "Dudhkundi Airfield", + "latitude_deg": "22.3245915688", + "longitude_deg": "87.10741996770001", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dudhkundi_Airfield" + }, + { + "id": "46284", + "ident": "IN-0018", + "type": "closed", + "name": "Piardoba Airfield", + "latitude_deg": "22.9895085468", + "longitude_deg": "87.2995948792", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Piardoba_Airfield" + }, + { + "id": "46285", + "ident": "IN-0019", + "type": "heliport", + "name": "Dinjan Air Force Station", + "latitude_deg": "27.544598", + "longitude_deg": "95.238011", + "elevation_ft": "376", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AS", + "municipality": "Muluk Gaon", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dinjan_Airfield" + }, + { + "id": "46287", + "ident": "IN-0020", + "type": "closed", + "name": "Ulundurpet Airstrip", + "latitude_deg": "11.688549", + "longitude_deg": "79.321375", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Villupuram", + "scheduled_service": "no" + }, + { + "id": "46376", + "ident": "IN-0021", + "type": "heliport", + "name": "Shikra Naval Helibase", + "latitude_deg": "18.913345681200003", + "longitude_deg": "72.8292113543", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Mumbai", + "scheduled_service": "no" + }, + { + "id": "46377", + "ident": "IN-0022", + "type": "heliport", + "name": "Kunjali Helipad", + "latitude_deg": "18.895273369", + "longitude_deg": "72.8084939718", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Mimbai", + "scheduled_service": "no" + }, + { + "id": "46481", + "ident": "IN-0023", + "type": "small_airport", + "name": "Amreli Airport", + "latitude_deg": "21.621416", + "longitude_deg": "71.226309", + "elevation_ft": "428", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Amreli", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amreli_Airport", + "keywords": "XAM" + }, + { + "id": "46518", + "ident": "IN-0024", + "type": "small_airport", + "name": "Baramati Airport", + "latitude_deg": "18.226944", + "longitude_deg": "74.590833", + "elevation_ft": "1978", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Pune", + "scheduled_service": "yes", + "local_code": "BMT" + }, + { + "id": "46512", + "ident": "IN-0025", + "type": "small_airport", + "name": "Faizabad Airport", + "latitude_deg": "26.7511282", + "longitude_deg": "82.1543651", + "elevation_ft": "350", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Faizabad", + "scheduled_service": "yes" + }, + { + "id": "46515", + "ident": "IN-0026", + "type": "small_airport", + "name": "Korba Airport", + "latitude_deg": "22.414166666699998", + "longitude_deg": "82.7194444444", + "elevation_ft": "1200", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-CT", + "municipality": "Rumgara", + "scheduled_service": "no" + }, + { + "id": "46550", + "ident": "IN-0027", + "type": "heliport", + "name": "Thuampui Helipad", + "latitude_deg": "23.745644", + "longitude_deg": "92.736828", + "elevation_ft": "3214", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MZ", + "municipality": "Aizawl", + "scheduled_service": "no", + "keywords": "Zemabawk Helipad" + }, + { + "id": "46551", + "ident": "IN-0028", + "type": "heliport", + "name": "Pukpui Helipad", + "latitude_deg": "22.942266666699997", + "longitude_deg": "92.76885", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MZ", + "scheduled_service": "no", + "keywords": "Lunglei,helipad" + }, + { + "id": "46552", + "ident": "IN-0029", + "type": "heliport", + "name": "Sethlun Heliport", + "latitude_deg": "22.868383", + "longitude_deg": "92.7633", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MZ", + "municipality": "Lunglei", + "scheduled_service": "no" + }, + { + "id": "46553", + "ident": "IN-0030", + "type": "heliport", + "name": "Serchhip Helipad", + "latitude_deg": "23.32875", + "longitude_deg": "92.85606666670002", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MZ", + "municipality": "Serchhip", + "scheduled_service": "no" + }, + { + "id": "46554", + "ident": "IN-0031", + "type": "heliport", + "name": "Vairengte Helipad", + "latitude_deg": "24.478916666699998", + "longitude_deg": "92.7539333333", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MZ", + "scheduled_service": "no" + }, + { + "id": "46555", + "ident": "IN-0032", + "type": "heliport", + "name": "Saiha Helipad", + "latitude_deg": "22.4885833333", + "longitude_deg": "92.98695", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MZ", + "municipality": "Saiha", + "scheduled_service": "yes" + }, + { + "id": "46556", + "ident": "IN-0033", + "type": "small_airport", + "name": "Aamby Valley Airport", + "latitude_deg": "18.609617", + "longitude_deg": "73.377583", + "elevation_ft": "2262", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Aamby Valley City", + "scheduled_service": "no", + "gps_code": "VAAV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aamby_Valley_Airport" + }, + { + "id": "46557", + "ident": "IN-0034", + "type": "small_airport", + "name": "Vijay Nagar Airport", + "latitude_deg": "19.8841", + "longitude_deg": "73.84056666670001", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Vijay Nagar", + "scheduled_service": "no" + }, + { + "id": "46558", + "ident": "IN-0035", + "type": "heliport", + "name": "Sevoke Road Indian Army Heliport", + "latitude_deg": "26.7744", + "longitude_deg": "88.4523166667", + "elevation_ft": "472", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "municipality": "Salugara", + "scheduled_service": "no" + }, + { + "id": "46559", + "ident": "IN-0036", + "type": "heliport", + "name": "Pelling Helipad", + "latitude_deg": "27.3005", + "longitude_deg": "88.23085", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-SK", + "municipality": "Pelling City", + "scheduled_service": "no" + }, + { + "id": "46560", + "ident": "IN-0037", + "type": "heliport", + "name": "Namchi Helipad", + "latitude_deg": "27.156733", + "longitude_deg": "88.322067", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-SK", + "municipality": "Nayabazar", + "scheduled_service": "no", + "keywords": "Assangthang Helipad" + }, + { + "id": "46561", + "ident": "IN-0038", + "type": "heliport", + "name": "Upper Tadong Indian Army Helipad", + "latitude_deg": "27.306716666699998", + "longitude_deg": "88.59965", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-SK", + "municipality": "Upper Tadong", + "scheduled_service": "no" + }, + { + "id": "46562", + "ident": "IN-0039", + "type": "heliport", + "name": "Lebong Helipad", + "latitude_deg": "27.0590833333", + "longitude_deg": "88.2777333333", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "municipality": "Lebong", + "scheduled_service": "no" + }, + { + "id": "46563", + "ident": "IN-0040", + "type": "heliport", + "name": "Pedong Helipad", + "latitude_deg": "27.1559333333", + "longitude_deg": "88.61065", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-SK", + "municipality": "Pedong", + "scheduled_service": "no" + }, + { + "id": "46564", + "ident": "IN-0041", + "type": "heliport", + "name": "HQ Eastern Air Command Helipad", + "latitude_deg": "25.538183333299997", + "longitude_deg": "91.82655", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-ML", + "municipality": "Myliem", + "scheduled_service": "no" + }, + { + "id": "46565", + "ident": "IN-0042", + "type": "heliport", + "name": "Shillong Indian Army Helipad", + "latitude_deg": "25.54425", + "longitude_deg": "91.8817166667", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-ML", + "municipality": "Shillong", + "scheduled_service": "no" + }, + { + "id": "46566", + "ident": "IN-0043", + "type": "heliport", + "name": "STC BSF Indian Army Helipad", + "latitude_deg": "24.3267", + "longitude_deg": "93.67546666670002", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MN", + "municipality": "Gangpimual", + "scheduled_service": "no" + }, + { + "id": "46567", + "ident": "IN-0044", + "type": "heliport", + "name": "PAP Complex Heliport", + "latitude_deg": "31.2920833333", + "longitude_deg": "75.6072", + "elevation_ft": "766", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-PB", + "municipality": "Jalandhar", + "scheduled_service": "no" + }, + { + "id": "46568", + "ident": "IN-0045", + "type": "heliport", + "name": "Catholic Medical Centre Helipad", + "latitude_deg": "24.8062", + "longitude_deg": "93.94275", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MN", + "municipality": "Kangla", + "scheduled_service": "no" + }, + { + "id": "46569", + "ident": "IN-0046", + "type": "heliport", + "name": "Butcher Island Helipad", + "latitude_deg": "18.9623", + "longitude_deg": "72.9030833333", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Mumbai", + "scheduled_service": "no" + }, + { + "id": "46570", + "ident": "IN-0047", + "type": "heliport", + "name": "Mahalaxmi Race Course Helipad", + "latitude_deg": "18.9820333333", + "longitude_deg": "72.8215666667", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Mumbai", + "scheduled_service": "no", + "keywords": "Bombay" + }, + { + "id": "46571", + "ident": "IN-0048", + "type": "heliport", + "name": "Rajbhavan Helipad", + "latitude_deg": "18.94265", + "longitude_deg": "72.794017", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Mumbai", + "scheduled_service": "no" + }, + { + "id": "46572", + "ident": "IN-0049", + "type": "heliport", + "name": "Kohima Helipad", + "latitude_deg": "25.663066666699997", + "longitude_deg": "94.1139333333", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-NL", + "municipality": "Kohima", + "scheduled_service": "no" + }, + { + "id": "46573", + "ident": "IN-0050", + "type": "heliport", + "name": "Phalodi Airfield", + "latitude_deg": "27.1128333333", + "longitude_deg": "72.389", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "municipality": "Phalodi", + "scheduled_service": "no" + }, + { + "id": "46574", + "ident": "IN-0051", + "type": "heliport", + "name": "Aviation Research Centre RAW Headquarters Helipad", + "latitude_deg": "30.706042", + "longitude_deg": "77.861524", + "elevation_ft": "7234", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Chakrata", + "scheduled_service": "no" + }, + { + "id": "46575", + "ident": "IN-0052", + "type": "heliport", + "name": "Mathura Heliport", + "latitude_deg": "27.464233333299997", + "longitude_deg": "77.68241666670001", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Mathura", + "scheduled_service": "no" + }, + { + "id": "46581", + "ident": "IN-0053", + "type": "small_airport", + "name": "INS Kohassa", + "latitude_deg": "13.236316", + "longitude_deg": "93.049731", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AN", + "municipality": "Diglipur", + "scheduled_service": "no", + "gps_code": "VODX", + "wikipedia_link": "https://en.wikipedia.org/wiki/INS_Kohassa" + }, + { + "id": "46606", + "ident": "IN-0054", + "type": "closed", + "name": "Charra Airfield", + "latitude_deg": "23.3657772896", + "longitude_deg": "86.43673896790001", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "municipality": "Purulia", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Charra_Airfield" + }, + { + "id": "46607", + "ident": "IN-0055", + "type": "closed", + "name": "Kanchrapara Airfield", + "latitude_deg": "22.922932987499998", + "longitude_deg": "88.4599292278", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "municipality": "Kanchrapara", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kanchrapara_Airfield", + "keywords": "Calcutta" + }, + { + "id": "46608", + "ident": "IN-0056", + "type": "closed", + "name": "Kalyan Airstrip", + "latitude_deg": "19.17922", + "longitude_deg": "73.139184", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Kalyan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kalyan_International_Airport" + }, + { + "id": "46609", + "ident": "IN-0057", + "type": "closed", + "name": "Rasgovindpur Airstrip", + "latitude_deg": "21.8050895155", + "longitude_deg": "87.0469093323", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Rasgovindpur", + "scheduled_service": "no" + }, + { + "id": "46610", + "ident": "IN-0058", + "type": "closed", + "name": "Dhubulia Airstrip", + "latitude_deg": "23.4929846863", + "longitude_deg": "88.4540176392", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "municipality": "Dhubulia", + "scheduled_service": "no", + "keywords": "Dhubalia" + }, + { + "id": "46611", + "ident": "IN-0059", + "type": "closed", + "name": "Digri Airstrip", + "latitude_deg": "22.7854403333", + "longitude_deg": "87.36225128170001", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "municipality": "Digri", + "scheduled_service": "no" + }, + { + "id": "46623", + "ident": "IN-0060", + "type": "small_airport", + "name": "Khargon Govt. Airstrip", + "latitude_deg": "21.810030194599996", + "longitude_deg": "75.55443763730001", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "scheduled_service": "no", + "keywords": "Khargon, Khargone, Khargoan" + }, + { + "id": "46624", + "ident": "IN-0061", + "type": "small_airport", + "name": "Khandwa Airport", + "latitude_deg": "21.857117459599998", + "longitude_deg": "76.3369560242", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "municipality": "Khandwa", + "scheduled_service": "no" + }, + { + "id": "46625", + "ident": "IN-0062", + "type": "small_airport", + "name": "Shirpur Airport", + "latitude_deg": "21.3239987933", + "longitude_deg": "74.9567341805", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Shirpur", + "scheduled_service": "no", + "keywords": "Shirpur, Dhule" + }, + { + "id": "46628", + "ident": "IN-0063", + "type": "closed", + "name": "Cholavaram Airstrip", + "latitude_deg": "13.210242", + "longitude_deg": "80.152345", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Sembilivaram", + "scheduled_service": "no" + }, + { + "id": "46640", + "ident": "IN-0064", + "type": "small_airport", + "name": "Umaria Air Field", + "latitude_deg": "23.5325139099", + "longitude_deg": "80.80821990970001", + "elevation_ft": "1510", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "municipality": "Umaria", + "scheduled_service": "no" + }, + { + "id": "299082", + "ident": "IN-0065", + "type": "small_airport", + "name": "Amravati (Belora) Airstrip", + "latitude_deg": "20.813348511599997", + "longitude_deg": "77.71790742870002", + "elevation_ft": "1125", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Amravati", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amravati_Airport" + }, + { + "id": "300448", + "ident": "IN-0066", + "type": "small_airport", + "name": "Madhubani Airport", + "latitude_deg": "26.329167", + "longitude_deg": "86.06", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-BR", + "municipality": "Madhubani", + "scheduled_service": "no" + }, + { + "id": "300449", + "ident": "IN-0067", + "type": "small_airport", + "name": "Ulao Aerodrome", + "latitude_deg": "25.42788", + "longitude_deg": "86.08819", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-BR", + "municipality": "Begusarai", + "scheduled_service": "no" + }, + { + "id": "299921", + "ident": "IN-0068", + "type": "small_airport", + "name": "Birwa Airstrip", + "latitude_deg": "22.092639", + "longitude_deg": "80.595531", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "municipality": "Baihar", + "scheduled_service": "no" + }, + { + "id": "300715", + "ident": "IN-0069", + "type": "small_airport", + "name": "Sultanpur Airport", + "latitude_deg": "26.2475", + "longitude_deg": "82.0425", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Sultanpur", + "scheduled_service": "yes", + "gps_code": "VESL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amhat_Airstrip", + "keywords": "VISL, Amhat Airstrip" + }, + { + "id": "301040", + "ident": "IN-0070", + "type": "small_airport", + "name": "Jindal Vijaynagar Airport", + "latitude_deg": "15.175921", + "longitude_deg": "76.63303", + "elevation_ft": "1670", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Toranagallu", + "scheduled_service": "no", + "gps_code": "VOJV", + "iata_code": "VDY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jindal_Vijaynagar_Airport", + "keywords": "JSW, Vidyanagar, Vijayanagar" + }, + { + "id": "301043", + "ident": "IN-0071", + "type": "heliport", + "name": "Gadag Government Estate Heliport", + "latitude_deg": "15.419947", + "longitude_deg": "75.611361", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Gadag", + "scheduled_service": "no" + }, + { + "id": "301046", + "ident": "IN-0072", + "type": "small_airport", + "name": "Raigarh Airport (JSPL)", + "latitude_deg": "21.9352805556", + "longitude_deg": "83.3502138889", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-CT", + "scheduled_service": "no" + }, + { + "id": "301049", + "ident": "IN-0073", + "type": "small_airport", + "name": "Savitri Jindal Airport", + "latitude_deg": "20.910055", + "longitude_deg": "85.036669", + "elevation_ft": "623", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Angul", + "scheduled_service": "no" + }, + { + "id": "301051", + "ident": "IN-0074", + "type": "small_airport", + "name": "Barbil Tonto Airstrip", + "latitude_deg": "22.045829", + "longitude_deg": "85.373468", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Bhusugaon", + "scheduled_service": "no", + "gps_code": "VEBL" + }, + { + "id": "301058", + "ident": "IN-0075", + "type": "heliport", + "name": "Itanagar (Naharlagun) Heliport", + "latitude_deg": "27.111675", + "longitude_deg": "93.696106", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Itanagar", + "scheduled_service": "no" + }, + { + "id": "301059", + "ident": "IN-0076", + "type": "heliport", + "name": "Itanagar (Naharlagun) Heliport", + "latitude_deg": "27.111675", + "longitude_deg": "93.696106", + "elevation_ft": "466", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Itanagar", + "scheduled_service": "no" + }, + { + "id": "301145", + "ident": "IN-0077", + "type": "small_airport", + "name": "Bhagalpur Airport", + "latitude_deg": "25.249535", + "longitude_deg": "87.011976", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-BR", + "municipality": "Bhagalpur", + "scheduled_service": "no" + }, + { + "id": "302122", + "ident": "IN-0078", + "type": "closed", + "name": "Bishnupur Airfield", + "latitude_deg": "23.0339266917", + "longitude_deg": "87.35486984250001", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "scheduled_service": "no" + }, + { + "id": "302134", + "ident": "IN-0079", + "type": "closed", + "name": "Guskhara Airfield", + "latitude_deg": "23.471667", + "longitude_deg": "87.794167", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guskhara_Airfield" + }, + { + "id": "302135", + "ident": "IN-0080", + "type": "closed", + "name": "Pandaveswar Airfield", + "latitude_deg": "23.641300520900003", + "longitude_deg": "87.348690033", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pandaveswar_Airfield" + }, + { + "id": "306912", + "ident": "IN-0081", + "type": "heliport", + "name": "Annadale Helipad", + "latitude_deg": "31.111405", + "longitude_deg": "77.157015", + "elevation_ft": "6120", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HP", + "municipality": "Shimla", + "scheduled_service": "no" + }, + { + "id": "306913", + "ident": "IN-0082", + "type": "heliport", + "name": "Ajog Heliport", + "latitude_deg": "32.921925", + "longitude_deg": "76.457747", + "elevation_ft": "7460", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HP", + "municipality": "Ajog", + "scheduled_service": "no" + }, + { + "id": "306915", + "ident": "IN-0083", + "type": "heliport", + "name": "Bilaspur Helipad", + "latitude_deg": "31.345138888900003", + "longitude_deg": "76.75675", + "elevation_ft": "1685", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HP", + "municipality": "Bilaspur", + "scheduled_service": "no" + }, + { + "id": "308280", + "ident": "IN-0084", + "type": "closed", + "name": "Salwas", + "latitude_deg": "26.141647", + "longitude_deg": "73.097062", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "scheduled_service": "no" + }, + { + "id": "308281", + "ident": "IN-0085", + "type": "small_airport", + "name": "Fury Airport", + "latitude_deg": "26.434072", + "longitude_deg": "73.101472", + "elevation_ft": "768", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "municipality": "Karwar, Jodhpur", + "scheduled_service": "no", + "gps_code": "VAJO" + }, + { + "id": "309587", + "ident": "IN-0086", + "type": "small_airport", + "name": "CHINDWARA AIRFIELD", + "latitude_deg": "22", + "longitude_deg": "78.93", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "scheduled_service": "no" + }, + { + "id": "309591", + "ident": "IN-0087", + "type": "small_airport", + "name": "Gauchar Airstrip", + "latitude_deg": "30.284585", + "longitude_deg": "79.161665", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UT", + "municipality": "Gauchar", + "scheduled_service": "no", + "keywords": "Gaucher" + }, + { + "id": "311989", + "ident": "IN-0088", + "type": "small_airport", + "name": "Poonch Airport", + "latitude_deg": "33.76875", + "longitude_deg": "74.083753", + "elevation_ft": "3219", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-JK", + "municipality": "Poonch", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Poonch_Airport", + "keywords": "Punch" + }, + { + "id": "309944", + "ident": "IN-0089", + "type": "small_airport", + "name": "Noamundi Airport", + "latitude_deg": "22.192222", + "longitude_deg": "85.548889", + "elevation_ft": "1402", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-JH", + "municipality": "Itarbalijor", + "scheduled_service": "no" + }, + { + "id": "312234", + "ident": "IN-0090", + "type": "small_airport", + "name": "Deoghar Airport", + "latitude_deg": "24.446842", + "longitude_deg": "86.704955", + "elevation_ft": "361", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-JH", + "scheduled_service": "no", + "iata_code": "DGH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Deoghar_Airport" + }, + { + "id": "311047", + "ident": "IN-0091", + "type": "small_airport", + "name": "Saharsa Airport", + "latitude_deg": "25.892205", + "longitude_deg": "86.583016", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-BR", + "municipality": "Saharsa", + "scheduled_service": "no", + "keywords": "Saharsha" + }, + { + "id": "311049", + "ident": "IN-0092", + "type": "closed", + "name": "Sukinda Airstrip", + "latitude_deg": "21.031944", + "longitude_deg": "85.753889", + "elevation_ft": "400", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Kaliapani", + "scheduled_service": "no" + }, + { + "id": "311106", + "ident": "IN-0093", + "type": "small_airport", + "name": "Vedanta Lanjigarh Airstrip", + "latitude_deg": "19.7194444444", + "longitude_deg": "83.3936111111", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "scheduled_service": "no" + }, + { + "id": "312280", + "ident": "IN-0094", + "type": "closed", + "name": "no airport", + "latitude_deg": "20.46668667", + "longitude_deg": "83.48333056", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "scheduled_service": "no" + }, + { + "id": "315328", + "ident": "IN-0095", + "type": "heliport", + "name": "Kuttikayam Helipad", + "latitude_deg": "9.3539", + "longitude_deg": "76.86489", + "elevation_ft": "207", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Mampara", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Perunad#Heliport", + "keywords": "Perunad Heliport, Sabarimala Helipad" + }, + { + "id": "317900", + "ident": "IN-0096", + "type": "small_airport", + "name": "Akli Airport", + "latitude_deg": "25.8077", + "longitude_deg": "70.2943", + "elevation_ft": "230", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "municipality": "Akli", + "scheduled_service": "no" + }, + { + "id": "317980", + "ident": "IN-0097", + "type": "small_airport", + "name": "Surichua Air Base", + "latitude_deg": "24.18824", + "longitude_deg": "87.701722", + "elevation_ft": "280", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "municipality": "Rampurhat", + "scheduled_service": "no", + "keywords": "Rampur Hat" + }, + { + "id": "317981", + "ident": "IN-0098", + "type": "heliport", + "name": "Maithon Heliport", + "latitude_deg": "23.785", + "longitude_deg": "86.7935", + "elevation_ft": "529", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-JH", + "municipality": "Maithon", + "scheduled_service": "no", + "keywords": "Gogna Colony" + }, + { + "id": "317983", + "ident": "IN-0099", + "type": "small_airport", + "name": "Durgapur Steel Plant Airport", + "latitude_deg": "23.58331", + "longitude_deg": "87.339787", + "elevation_ft": "290", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "municipality": "Durgapur", + "scheduled_service": "no" + }, + { + "id": "317984", + "ident": "IN-0100", + "type": "small_airport", + "name": "Sido Kanhu Airport", + "latitude_deg": "24.231185", + "longitude_deg": "87.269989", + "elevation_ft": "470", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-JH", + "municipality": "Dumka", + "scheduled_service": "no", + "keywords": "Anasol" + }, + { + "id": "319166", + "ident": "IN-0101", + "type": "small_airport", + "name": "Vanasthali Airport", + "latitude_deg": "26.407627", + "longitude_deg": "75.870128", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "municipality": "Vanasthali", + "scheduled_service": "no" + }, + { + "id": "336938", + "ident": "IN-0102", + "type": "small_airport", + "name": "Mandla Airstrip", + "latitude_deg": "22.500929", + "longitude_deg": "80.331195", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "municipality": "Dhenko", + "scheduled_service": "no" + }, + { + "id": "339986", + "ident": "IN-0103", + "type": "heliport", + "name": "Parva Helipad", + "latitude_deg": "22.08627", + "longitude_deg": "92.64987", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MZ", + "municipality": "Parva II", + "scheduled_service": "no" + }, + { + "id": "340004", + "ident": "IN-0104", + "type": "heliport", + "name": "Kalyani BSF Helipad", + "latitude_deg": "23.02589", + "longitude_deg": "88.87582", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "municipality": "Petrapole", + "scheduled_service": "no" + }, + { + "id": "340005", + "ident": "IN-0105", + "type": "closed", + "name": "Ashoknagar Airfield", + "latitude_deg": "22.83809", + "longitude_deg": "88.61521", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "municipality": "Ashoknagar", + "scheduled_service": "no" + }, + { + "id": "331217", + "ident": "IN-0106", + "type": "small_airport", + "name": "Mithapur Airport", + "latitude_deg": "22.412068", + "longitude_deg": "68.993632", + "elevation_ft": "11", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Mithapur", + "scheduled_service": "no", + "keywords": "VA86" + }, + { + "id": "331218", + "ident": "IN-0107", + "type": "small_airport", + "name": "Sindhudurg Airport", + "latitude_deg": "16.002552", + "longitude_deg": "73.529846", + "elevation_ft": "203", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Chipi", + "scheduled_service": "yes", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sindhudurg_Airport", + "keywords": "VA85" + }, + { + "id": "340006", + "ident": "IN-0108", + "type": "heliport", + "name": "Digha Heliport", + "latitude_deg": "21.62606", + "longitude_deg": "87.501056", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "municipality": "Digha", + "scheduled_service": "no" + }, + { + "id": "340007", + "ident": "IN-0109", + "type": "heliport", + "name": "Naraj Heliport", + "latitude_deg": "20.48082", + "longitude_deg": "85.77965", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Narajmarthapur", + "scheduled_service": "no" + }, + { + "id": "340008", + "ident": "IN-0110", + "type": "heliport", + "name": "Puri Heliport", + "latitude_deg": "19.81035", + "longitude_deg": "85.84752", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Puri", + "scheduled_service": "no" + }, + { + "id": "340010", + "ident": "IN-0111", + "type": "heliport", + "name": "Rangeilunda Heliport", + "latitude_deg": "19.293808", + "longitude_deg": "84.876959", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Berhampur (Brahmapur)", + "scheduled_service": "no" + }, + { + "id": "340011", + "ident": "IN-0112", + "type": "heliport", + "name": "Tata Steel Helipad", + "latitude_deg": "19.33095", + "longitude_deg": "84.91073", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Sindhigan", + "scheduled_service": "no" + }, + { + "id": "340012", + "ident": "IN-0113", + "type": "heliport", + "name": "Buragam Heliport", + "latitude_deg": "18.73454", + "longitude_deg": "84.07501", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Buragam", + "scheduled_service": "no" + }, + { + "id": "340013", + "ident": "IN-0114", + "type": "heliport", + "name": "Srikakulam Heliport", + "latitude_deg": "18.27207", + "longitude_deg": "83.90325", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Srikakulam", + "scheduled_service": "no" + }, + { + "id": "340014", + "ident": "IN-0115", + "type": "heliport", + "name": "GMR Institute of Technology Helipad", + "latitude_deg": "18.46648", + "longitude_deg": "83.66081", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Razam", + "scheduled_service": "no" + }, + { + "id": "340015", + "ident": "IN-0116", + "type": "heliport", + "name": "Suvarnakuteer Phase II Helipad", + "latitude_deg": "17.89855", + "longitude_deg": "83.26756", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Visakhapatnam", + "scheduled_service": "no" + }, + { + "id": "340016", + "ident": "IN-0117", + "type": "heliport", + "name": "HAL Heliport", + "latitude_deg": "18.7365", + "longitude_deg": "82.83861", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Sunabeda", + "scheduled_service": "no" + }, + { + "id": "340017", + "ident": "IN-0118", + "type": "heliport", + "name": "Rushikonda Beach Heliport", + "latitude_deg": "17.77966", + "longitude_deg": "83.38549", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Visakhapatnam", + "scheduled_service": "no" + }, + { + "id": "340018", + "ident": "IN-0119", + "type": "heliport", + "name": "Oxygen Towers Helipad", + "latitude_deg": "17.73999", + "longitude_deg": "83.31414", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Visakhapatnam", + "scheduled_service": "no" + }, + { + "id": "340121", + "ident": "IN-0120", + "type": "heliport", + "name": "Kakinada Beach Navy Heliport", + "latitude_deg": "17.02268", + "longitude_deg": "82.29039", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Kakinada", + "scheduled_service": "no" + }, + { + "id": "340122", + "ident": "IN-0121", + "type": "heliport", + "name": "Jawaharlal Nehru Technological University Heliport", + "latitude_deg": "16.98158", + "longitude_deg": "82.23949", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Kakinada", + "scheduled_service": "no" + }, + { + "id": "340123", + "ident": "IN-0122", + "type": "heliport", + "name": "Dhirubhai Ambani Heliport", + "latitude_deg": "16.74354", + "longitude_deg": "82.29191", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-PY", + "municipality": "Gadimoga", + "scheduled_service": "no" + }, + { + "id": "340124", + "ident": "IN-0123", + "type": "heliport", + "name": "Yanam Heliport", + "latitude_deg": "16.7261", + "longitude_deg": "82.20674", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-PY", + "municipality": "Yanam", + "scheduled_service": "no" + }, + { + "id": "340125", + "ident": "IN-0124", + "type": "heliport", + "name": "Pondicherry Heliport", + "latitude_deg": "11.9631", + "longitude_deg": "79.81498", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-PY", + "municipality": "Puducherry (Pondicherry)", + "scheduled_service": "no" + }, + { + "id": "340126", + "ident": "IN-0125", + "type": "heliport", + "name": "Pondicherry Harbour Heliport", + "latitude_deg": "11.91806", + "longitude_deg": "79.82697", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-PY", + "municipality": "Puducherry (Pondicherry)", + "scheduled_service": "no" + }, + { + "id": "340127", + "ident": "IN-0126", + "type": "heliport", + "name": "Anaparthi Heliport", + "latitude_deg": "16.94338", + "longitude_deg": "81.95439", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Anaparthi", + "scheduled_service": "no" + }, + { + "id": "340128", + "ident": "IN-0127", + "type": "heliport", + "name": "Tenali Market Heliport", + "latitude_deg": "16.2431", + "longitude_deg": "80.63092", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Tenali", + "scheduled_service": "no" + }, + { + "id": "340129", + "ident": "IN-0128", + "type": "heliport", + "name": "Guntur Police Parade Ground Heliport", + "latitude_deg": "16.29632", + "longitude_deg": "80.4325", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Guntur", + "scheduled_service": "no" + }, + { + "id": "340130", + "ident": "IN-0129", + "type": "heliport", + "name": "Amaravati Heliport", + "latitude_deg": "16.54477", + "longitude_deg": "80.52135", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Amaravati", + "scheduled_service": "no" + }, + { + "id": "340131", + "ident": "IN-0130", + "type": "heliport", + "name": "Krishnapatnam North Heliport", + "latitude_deg": "14.27386", + "longitude_deg": "80.09823", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Nellore", + "scheduled_service": "no" + }, + { + "id": "340132", + "ident": "IN-0131", + "type": "heliport", + "name": "Narayana Medical College Heliport", + "latitude_deg": "14.43095", + "longitude_deg": "80.01121", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Nellore", + "scheduled_service": "no" + }, + { + "id": "340133", + "ident": "IN-0132", + "type": "closed", + "name": "Nellore Airport", + "latitude_deg": "14.69388", + "longitude_deg": "79.94277", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Dagadarthi", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nellore_Airport" + }, + { + "id": "340134", + "ident": "IN-0133", + "type": "heliport", + "name": "ABM Junior College Heliport", + "latitude_deg": "15.49844", + "longitude_deg": "80.05503", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Ongole", + "scheduled_service": "no" + }, + { + "id": "340135", + "ident": "IN-0134", + "type": "heliport", + "name": "Ongole Police Training College Heliport", + "latitude_deg": "15.51774", + "longitude_deg": "80.02776", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Ongole", + "scheduled_service": "no" + }, + { + "id": "340136", + "ident": "IN-0135", + "type": "heliport", + "name": "Sri City Heliport", + "latitude_deg": "13.57462", + "longitude_deg": "80.03822", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Sri City", + "scheduled_service": "no" + }, + { + "id": "340137", + "ident": "IN-0136", + "type": "heliport", + "name": "Air 16 Heliport", + "latitude_deg": "13.4375", + "longitude_deg": "79.97665", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Chedilpakkam", + "scheduled_service": "no" + }, + { + "id": "340138", + "ident": "IN-0137", + "type": "heliport", + "name": "Sriharikota Heliport", + "latitude_deg": "13.67567", + "longitude_deg": "80.19056", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Sriharikota", + "scheduled_service": "no" + }, + { + "id": "340139", + "ident": "IN-0138", + "type": "heliport", + "name": "Vallur Camp Heliport", + "latitude_deg": "13.2556", + "longitude_deg": "80.27623", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Minjur", + "scheduled_service": "no" + }, + { + "id": "340140", + "ident": "IN-0139", + "type": "heliport", + "name": "Chettinad Health City Helipad", + "latitude_deg": "12.79598", + "longitude_deg": "80.22006", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Kelambakkam", + "scheduled_service": "no" + }, + { + "id": "340141", + "ident": "IN-0140", + "type": "heliport", + "name": "ECR Heliport", + "latitude_deg": "12.77042", + "longitude_deg": "80.24574", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Kunnakkadu", + "scheduled_service": "no" + }, + { + "id": "340142", + "ident": "IN-0141", + "type": "heliport", + "name": "Anna Stadium Heliport", + "latitude_deg": "11.75417", + "longitude_deg": "79.76703", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Cuddalore", + "scheduled_service": "no" + }, + { + "id": "340143", + "ident": "IN-0142", + "type": "heliport", + "name": "AVC Polytechnic College Heliport", + "latitude_deg": "11.103012", + "longitude_deg": "79.692989", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Mannampandal", + "scheduled_service": "no" + }, + { + "id": "340144", + "ident": "IN-0143", + "type": "heliport", + "name": "MARG Heliport", + "latitude_deg": "10.83343", + "longitude_deg": "79.84245", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-PY", + "municipality": "Karaikal", + "scheduled_service": "no" + }, + { + "id": "340145", + "ident": "IN-0144", + "type": "heliport", + "name": "Nagapattinam Heliport", + "latitude_deg": "10.78938", + "longitude_deg": "79.83942", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Nagapattinam", + "scheduled_service": "no" + }, + { + "id": "340147", + "ident": "IN-0145", + "type": "closed", + "name": "Badangi Airstrip", + "latitude_deg": "18.4884", + "longitude_deg": "83.3829", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Badangi", + "scheduled_service": "no" + }, + { + "id": "340148", + "ident": "IN-0146", + "type": "closed", + "name": "Tadepalligudem Airstrip", + "latitude_deg": "16.83321", + "longitude_deg": "81.53099", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Tadepalligudem", + "scheduled_service": "no" + }, + { + "id": "340149", + "ident": "IN-0147", + "type": "heliport", + "name": "INS Parundu Heliport", + "latitude_deg": "9.28061", + "longitude_deg": "79.13578", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Mandapam", + "scheduled_service": "no" + }, + { + "id": "340150", + "ident": "IN-0148", + "type": "heliport", + "name": "Ramanathapuram Heliport", + "latitude_deg": "9.36241", + "longitude_deg": "78.85934", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Ramanathapuram", + "scheduled_service": "no" + }, + { + "id": "340151", + "ident": "IN-0149", + "type": "heliport", + "name": "Kanyakumari Heliport", + "latitude_deg": "8.07972", + "longitude_deg": "77.54877", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Kanyakumari", + "scheduled_service": "no" + }, + { + "id": "340152", + "ident": "IN-0150", + "type": "heliport", + "name": "Varkala Helipad", + "latitude_deg": "8.73564", + "longitude_deg": "76.70461", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Varkala", + "scheduled_service": "no" + }, + { + "id": "340153", + "ident": "IN-0151", + "type": "heliport", + "name": "Ashramam Helipad", + "latitude_deg": "8.89486", + "longitude_deg": "76.59155", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Kollam", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quilon_Aerodrome", + "keywords": "Quilon Aerodrome, Kollam Airport" + }, + { + "id": "340154", + "ident": "IN-0152", + "type": "heliport", + "name": "Alappuzha Heliport", + "latitude_deg": "9.49414", + "longitude_deg": "76.31942", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Alappuzha", + "scheduled_service": "no" + }, + { + "id": "340156", + "ident": "IN-0153", + "type": "heliport", + "name": "Indian Naval Academy Heliport", + "latitude_deg": "12.0376", + "longitude_deg": "75.19671", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Ezhimala", + "scheduled_service": "no" + }, + { + "id": "340157", + "ident": "IN-0154", + "type": "heliport", + "name": "Kalpeni Heliport", + "latitude_deg": "10.089713", + "longitude_deg": "73.648893", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LD", + "municipality": "Kalpeni", + "scheduled_service": "no" + }, + { + "id": "340158", + "ident": "IN-0155", + "type": "heliport", + "name": "Kiltan Heliport", + "latitude_deg": "11.496", + "longitude_deg": "72.99814", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LD", + "municipality": "Kiltan", + "scheduled_service": "no" + }, + { + "id": "340159", + "ident": "IN-0156", + "type": "heliport", + "name": "Chetlat Heliport", + "latitude_deg": "11.68159", + "longitude_deg": "72.70606", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LD", + "municipality": "Chetlat", + "scheduled_service": "no" + }, + { + "id": "340160", + "ident": "IN-0157", + "type": "heliport", + "name": "Bitra Heliport", + "latitude_deg": "11.60039", + "longitude_deg": "72.18541", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LD", + "municipality": "Bitra", + "scheduled_service": "no" + }, + { + "id": "340161", + "ident": "IN-0158", + "type": "heliport", + "name": "Kadmat Heliport", + "latitude_deg": "11.18231", + "longitude_deg": "72.76175", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LD", + "municipality": "Kadmat", + "scheduled_service": "no" + }, + { + "id": "340162", + "ident": "IN-0159", + "type": "heliport", + "name": "Amini Helipad", + "latitude_deg": "11.13496", + "longitude_deg": "72.73172", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LD", + "municipality": "Amini", + "scheduled_service": "no" + }, + { + "id": "340163", + "ident": "IN-0160", + "type": "heliport", + "name": "Bangaram Heliport", + "latitude_deg": "10.94592", + "longitude_deg": "72.28765", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LD", + "municipality": "Bangaram", + "scheduled_service": "no" + }, + { + "id": "340165", + "ident": "IN-0161", + "type": "heliport", + "name": "Andrott Heliport", + "latitude_deg": "10.81316", + "longitude_deg": "73.69946", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LD", + "municipality": "Andrott", + "scheduled_service": "no" + }, + { + "id": "340166", + "ident": "IN-0162", + "type": "heliport", + "name": "Suheli Par Heliport", + "latitude_deg": "10.04794", + "longitude_deg": "72.28857", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LD", + "municipality": "Suheli Par", + "scheduled_service": "no" + }, + { + "id": "340167", + "ident": "IN-0163", + "type": "heliport", + "name": "Minicoy Fire Station Heliport", + "latitude_deg": "8.27937", + "longitude_deg": "73.05178", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LD", + "municipality": "Minicoy", + "scheduled_service": "no" + }, + { + "id": "340168", + "ident": "IN-0164", + "type": "heliport", + "name": "Adiudupi Heliport", + "latitude_deg": "13.3488", + "longitude_deg": "74.73095", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Adiudupi", + "scheduled_service": "no" + }, + { + "id": "340169", + "ident": "IN-0165", + "type": "heliport", + "name": "Koteshwara Heliport", + "latitude_deg": "13.59634", + "longitude_deg": "74.71365", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Koteshwara", + "scheduled_service": "no" + }, + { + "id": "340170", + "ident": "IN-0166", + "type": "heliport", + "name": "Mavalli Helipad", + "latitude_deg": "14.10027", + "longitude_deg": "74.50855", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Mavalli", + "scheduled_service": "no" + }, + { + "id": "340171", + "ident": "IN-0167", + "type": "heliport", + "name": "Areshiroor Helipad", + "latitude_deg": "13.82919", + "longitude_deg": "74.74877", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Areshiroor", + "scheduled_service": "no" + }, + { + "id": "340172", + "ident": "IN-0168", + "type": "heliport", + "name": "INS Kadamba Heliport", + "latitude_deg": "14.76987", + "longitude_deg": "74.15487", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Arga", + "scheduled_service": "no" + }, + { + "id": "340173", + "ident": "IN-0169", + "type": "heliport", + "name": "Raj Bhavan Heliport", + "latitude_deg": "15.45962", + "longitude_deg": "73.79463", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GA", + "municipality": "Dona Paula", + "scheduled_service": "no" + }, + { + "id": "340174", + "ident": "IN-0170", + "type": "heliport", + "name": "Sequirem Heliport", + "latitude_deg": "15.49526", + "longitude_deg": "73.77516", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GA", + "municipality": "Candolim", + "scheduled_service": "no" + }, + { + "id": "340175", + "ident": "IN-0171", + "type": "heliport", + "name": "Ella Heliport", + "latitude_deg": "15.5114", + "longitude_deg": "73.92381", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GA", + "municipality": "Ella", + "scheduled_service": "no" + }, + { + "id": "340176", + "ident": "IN-0172", + "type": "heliport", + "name": "Vagator Helipad", + "latitude_deg": "15.59946", + "longitude_deg": "73.73368", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GA", + "municipality": "Anjuna", + "scheduled_service": "no" + }, + { + "id": "340177", + "ident": "IN-0173", + "type": "heliport", + "name": "Quitol Heliport", + "latitude_deg": "15.13299", + "longitude_deg": "73.96594", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GA", + "municipality": "Quitol", + "scheduled_service": "no" + }, + { + "id": "340178", + "ident": "IN-0174", + "type": "heliport", + "name": "Dwarkadhish Heliport", + "latitude_deg": "22.25044", + "longitude_deg": "68.95358", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Dwarka", + "scheduled_service": "no" + }, + { + "id": "340179", + "ident": "IN-0175", + "type": "heliport", + "name": "Dwarkashish Heliport", + "latitude_deg": "22.25463", + "longitude_deg": "68.96182", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Dwarka", + "scheduled_service": "no" + }, + { + "id": "340180", + "ident": "IN-0176", + "type": "small_airport", + "name": "Mandvi Airport", + "latitude_deg": "22.83932", + "longitude_deg": "69.30498", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Mandvi", + "scheduled_service": "no" + }, + { + "id": "340181", + "ident": "IN-0177", + "type": "small_airport", + "name": "Mehsana Airport", + "latitude_deg": "23.60118", + "longitude_deg": "72.37399", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Mehsana", + "scheduled_service": "no" + }, + { + "id": "340556", + "ident": "IN-0178", + "type": "heliport", + "name": "Jaigaon Heliport", + "latitude_deg": "26.822651", + "longitude_deg": "89.391989", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "municipality": "Jaigaon", + "scheduled_service": "no" + }, + { + "id": "340557", + "ident": "IN-0179", + "type": "heliport", + "name": "Dalapchand Heliport", + "latitude_deg": "27.193387", + "longitude_deg": "88.675583", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-SK", + "municipality": "Aritar", + "scheduled_service": "no" + }, + { + "id": "340559", + "ident": "IN-0180", + "type": "heliport", + "name": "Shoktsen Heliport", + "latitude_deg": "27.724741", + "longitude_deg": "91.703814", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Shoktsen", + "scheduled_service": "no" + }, + { + "id": "341666", + "ident": "IN-0181", + "type": "heliport", + "name": "Sito Gunno Helipad", + "latitude_deg": "30.02882", + "longitude_deg": "74.36395", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-PB", + "municipality": "Sito Gunno", + "scheduled_service": "no" + }, + { + "id": "341667", + "ident": "IN-0182", + "type": "heliport", + "name": "Abohar Heliport", + "latitude_deg": "30.16081", + "longitude_deg": "74.1768", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-PB", + "municipality": "Abohar", + "scheduled_service": "no" + }, + { + "id": "341711", + "ident": "IN-0183", + "type": "heliport", + "name": "Bhainsdehi Helipad", + "latitude_deg": "21.645885", + "longitude_deg": "77.623711", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "municipality": "Bhainsdehi", + "scheduled_service": "no" + }, + { + "id": "341712", + "ident": "IN-0184", + "type": "heliport", + "name": "Mozari Point Helipad", + "latitude_deg": "21.391405", + "longitude_deg": "77.321496", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Chikhaldara", + "scheduled_service": "no" + }, + { + "id": "341743", + "ident": "IN-0185", + "type": "closed", + "name": "Adilabad Airfield", + "latitude_deg": "19.664765", + "longitude_deg": "78.549511", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TG", + "municipality": "Adilabad", + "scheduled_service": "no" + }, + { + "id": "341744", + "ident": "IN-0186", + "type": "heliport", + "name": "Shanti Nagar Heliport", + "latitude_deg": "19.662823", + "longitude_deg": "78.538564", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TG", + "municipality": "Adilabad", + "scheduled_service": "no" + }, + { + "id": "341745", + "ident": "IN-0187", + "type": "heliport", + "name": "Adilabad Heliport", + "latitude_deg": "19.662494", + "longitude_deg": "78.548462", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TG", + "municipality": "Adilabad", + "scheduled_service": "no" + }, + { + "id": "341746", + "ident": "IN-0188", + "type": "heliport", + "name": "Dimna Lake Helipad", + "latitude_deg": "22.861472", + "longitude_deg": "86.241374", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-JH", + "municipality": "Jamshedpur", + "scheduled_service": "no" + }, + { + "id": "341748", + "ident": "IN-0189", + "type": "heliport", + "name": "SAP Camp Helipad", + "latitude_deg": "15.82762", + "longitude_deg": "78.022942", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Kurnool", + "scheduled_service": "no" + }, + { + "id": "341749", + "ident": "IN-0190", + "type": "heliport", + "name": "Manjunath Huded Helipad", + "latitude_deg": "15.36992", + "longitude_deg": "76.504243", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Basavana Durga", + "scheduled_service": "no" + }, + { + "id": "341750", + "ident": "IN-0191", + "type": "heliport", + "name": "Gulbarga Heliport", + "latitude_deg": "17.326028", + "longitude_deg": "76.843368", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Gulbarga", + "scheduled_service": "no" + }, + { + "id": "341751", + "ident": "IN-0192", + "type": "heliport", + "name": "Kia Factory Heliport", + "latitude_deg": "14.163568", + "longitude_deg": "77.616621", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Duddebanda", + "scheduled_service": "no" + }, + { + "id": "341752", + "ident": "IN-0193", + "type": "heliport", + "name": "Sundipenta Helipiort", + "latitude_deg": "16.06663", + "longitude_deg": "78.9142", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Sundipenta", + "scheduled_service": "no" + }, + { + "id": "341753", + "ident": "IN-0194", + "type": "heliport", + "name": "Davanagere Heliport", + "latitude_deg": "14.444823", + "longitude_deg": "75.923356", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Davanagere", + "scheduled_service": "no" + }, + { + "id": "341754", + "ident": "IN-0195", + "type": "heliport", + "name": "Kia Factory Helipad", + "latitude_deg": "14.160405", + "longitude_deg": "77.625947", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Duddebanda", + "scheduled_service": "no" + }, + { + "id": "341755", + "ident": "IN-0196", + "type": "heliport", + "name": "NTPC Kudgi Helipad", + "latitude_deg": "16.491748", + "longitude_deg": "75.833551", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Telgi", + "scheduled_service": "no" + }, + { + "id": "341756", + "ident": "IN-0197", + "type": "heliport", + "name": "Defence Research and Development Organization Helipad", + "latitude_deg": "17.335419", + "longitude_deg": "78.498922", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TG", + "municipality": "Hyderabad", + "scheduled_service": "no" + }, + { + "id": "341757", + "ident": "IN-0198", + "type": "heliport", + "name": "Bagalkot Heliport", + "latitude_deg": "16.167272", + "longitude_deg": "75.671748", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Bagalkot", + "scheduled_service": "no" + }, + { + "id": "341758", + "ident": "IN-0199", + "type": "heliport", + "name": "Sagar Helipad", + "latitude_deg": "14.157544", + "longitude_deg": "75.00186", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Sampalli", + "scheduled_service": "no" + }, + { + "id": "341759", + "ident": "IN-0200", + "type": "heliport", + "name": "Infosys Heliport", + "latitude_deg": "12.849384", + "longitude_deg": "77.661706", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Bengaluru", + "scheduled_service": "no" + }, + { + "id": "341760", + "ident": "IN-0201", + "type": "heliport", + "name": "Karimnagar Heliport", + "latitude_deg": "18.429549", + "longitude_deg": "79.125341", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TG", + "municipality": "Karimnagar", + "scheduled_service": "no" + }, + { + "id": "341761", + "ident": "IN-0202", + "type": "heliport", + "name": "Oterra Hotel Helipad", + "latitude_deg": "12.850085", + "longitude_deg": "77.660633", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Bengaluru", + "scheduled_service": "no" + }, + { + "id": "341762", + "ident": "IN-0203", + "type": "heliport", + "name": "Chikodi Helipad", + "latitude_deg": "16.427864", + "longitude_deg": "74.555727", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Belgaum", + "scheduled_service": "no" + }, + { + "id": "341763", + "ident": "IN-0204", + "type": "heliport", + "name": "Hadagali Helipad", + "latitude_deg": "15.025368", + "longitude_deg": "75.973912", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Hadagali", + "scheduled_service": "no" + }, + { + "id": "341767", + "ident": "IN-0205", + "type": "heliport", + "name": "Kakraban Heliport", + "latitude_deg": "23.477405", + "longitude_deg": "91.413509", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TR", + "municipality": "Kakraban", + "scheduled_service": "no" + }, + { + "id": "341768", + "ident": "IN-0206", + "type": "heliport", + "name": "Udaipur Helipad", + "latitude_deg": "23.56406", + "longitude_deg": "91.470621", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TR", + "municipality": "Radhakishorepur", + "scheduled_service": "no" + }, + { + "id": "341769", + "ident": "IN-0207", + "type": "heliport", + "name": "Paschim Jalefa Heliport", + "latitude_deg": "23.026273", + "longitude_deg": "91.706276", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TR", + "municipality": "Paschim Jalefa", + "scheduled_service": "no" + }, + { + "id": "341775", + "ident": "IN-0208", + "type": "heliport", + "name": "Agra Heliport", + "latitude_deg": "27.15727", + "longitude_deg": "78.117582", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Hingot Kheria", + "scheduled_service": "no" + }, + { + "id": "341776", + "ident": "IN-0209", + "type": "heliport", + "name": "Rohini Heliport", + "latitude_deg": "28.752659", + "longitude_deg": "77.058718", + "elevation_ft": "719", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-DL", + "municipality": "Rohini", + "scheduled_service": "no" + }, + { + "id": "341777", + "ident": "IN-0210", + "type": "heliport", + "name": "Kuttanellur Heliport", + "latitude_deg": "10.501753", + "longitude_deg": "76.254586", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Thrissur", + "scheduled_service": "no" + }, + { + "id": "341778", + "ident": "IN-0211", + "type": "heliport", + "name": "Jaypee Greens Helipad", + "latitude_deg": "28.46595", + "longitude_deg": "77.523169", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Greater Noida", + "scheduled_service": "no" + }, + { + "id": "341798", + "ident": "IN-0212", + "type": "heliport", + "name": "SVP Hospital Helipad", + "latitude_deg": "23.019684", + "longitude_deg": "72.571711", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Ahmedabad", + "scheduled_service": "no" + }, + { + "id": "341799", + "ident": "IN-0213", + "type": "heliport", + "name": "Sarkhej-Okaf Heliport", + "latitude_deg": "23.0023", + "longitude_deg": "72.46914", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Sarkhej-Okaf", + "scheduled_service": "no" + }, + { + "id": "341800", + "ident": "IN-0214", + "type": "heliport", + "name": "Koba Heliport", + "latitude_deg": "23.146389", + "longitude_deg": "72.635223", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Gandhinagar", + "scheduled_service": "no" + }, + { + "id": "341801", + "ident": "IN-0215", + "type": "heliport", + "name": "TELAV Helipad", + "latitude_deg": "22.985982", + "longitude_deg": "72.42063", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Gibpura", + "scheduled_service": "no" + }, + { + "id": "341802", + "ident": "IN-0216", + "type": "heliport", + "name": "Dholka Heliport", + "latitude_deg": "22.72097", + "longitude_deg": "72.459568", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Dholka", + "scheduled_service": "no" + }, + { + "id": "341803", + "ident": "IN-0217", + "type": "heliport", + "name": "Gujarat State Assembly Heliport", + "latitude_deg": "23.217949", + "longitude_deg": "72.65901", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Gandhinagar", + "scheduled_service": "no", + "keywords": "Vidhan Sabha" + }, + { + "id": "341804", + "ident": "IN-0218", + "type": "heliport", + "name": "Kalol Heliport", + "latitude_deg": "23.222579", + "longitude_deg": "72.498995", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Kalol", + "scheduled_service": "no" + }, + { + "id": "341805", + "ident": "IN-0219", + "type": "heliport", + "name": "United Phosphorus Helipad", + "latitude_deg": "20.337466", + "longitude_deg": "72.899429", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Nahuli", + "scheduled_service": "no" + }, + { + "id": "341806", + "ident": "IN-0220", + "type": "heliport", + "name": "Kawade Heliport", + "latitude_deg": "20.114043", + "longitude_deg": "72.88384", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Kawade", + "scheduled_service": "no" + }, + { + "id": "341807", + "ident": "IN-0221", + "type": "heliport", + "name": "Daman Heliport", + "latitude_deg": "20.433359", + "longitude_deg": "72.849382", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-DH", + "municipality": "Marwad", + "scheduled_service": "no" + }, + { + "id": "341808", + "ident": "IN-0222", + "type": "heliport", + "name": "MAA Foundation Helipad", + "latitude_deg": "20.403102", + "longitude_deg": "72.904262", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Vapi", + "scheduled_service": "no" + }, + { + "id": "341809", + "ident": "IN-0223", + "type": "heliport", + "name": "Sardar Patel Heliport", + "latitude_deg": "23.010427", + "longitude_deg": "71.229845", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Halvad", + "scheduled_service": "no" + }, + { + "id": "341810", + "ident": "IN-0224", + "type": "heliport", + "name": "Reliance Corporate Park Heliport", + "latitude_deg": "19.130282", + "longitude_deg": "73.011801", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Navi Mumbai", + "scheduled_service": "no" + }, + { + "id": "341811", + "ident": "IN-0225", + "type": "heliport", + "name": "Reliance Corporate Park North Heliport", + "latitude_deg": "19.132914", + "longitude_deg": "73.01128", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Navi Mumbai", + "scheduled_service": "no" + }, + { + "id": "341812", + "ident": "IN-0226", + "type": "heliport", + "name": "Mumbai University Heliport", + "latitude_deg": "19.066998", + "longitude_deg": "72.856918", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Mumbai", + "scheduled_service": "no" + }, + { + "id": "341813", + "ident": "IN-0227", + "type": "heliport", + "name": "Saily Police Training School Heliport", + "latitude_deg": "20.252858", + "longitude_deg": "73.035821", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-DH", + "municipality": "Alok", + "scheduled_service": "no" + }, + { + "id": "341814", + "ident": "IN-0228", + "type": "heliport", + "name": "Haveli Grounds Heliport", + "latitude_deg": "20.268076", + "longitude_deg": "72.984833", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-DH", + "municipality": "Silvassa", + "scheduled_service": "no" + }, + { + "id": "341816", + "ident": "IN-0229", + "type": "heliport", + "name": "CQAV Heliport", + "latitude_deg": "19.11263", + "longitude_deg": "74.740041", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Ahmednagar", + "scheduled_service": "no" + }, + { + "id": "341817", + "ident": "IN-0230", + "type": "heliport", + "name": "Ahmednagar Police Heliport", + "latitude_deg": "19.100453", + "longitude_deg": "74.73498", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Ahmednagar", + "scheduled_service": "no" + }, + { + "id": "341818", + "ident": "IN-0231", + "type": "heliport", + "name": "DMR Area Heliport", + "latitude_deg": "19.070711", + "longitude_deg": "74.787925", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Ahmednagar", + "scheduled_service": "no" + }, + { + "id": "341819", + "ident": "IN-0232", + "type": "heliport", + "name": "ACC&S Heliport", + "latitude_deg": "19.084887", + "longitude_deg": "74.777932", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Ahmednagar", + "scheduled_service": "no" + }, + { + "id": "341820", + "ident": "IN-0233", + "type": "heliport", + "name": "MIRC Heliport", + "latitude_deg": "19.05024", + "longitude_deg": "74.767188", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Wakodi", + "scheduled_service": "no" + }, + { + "id": "341836", + "ident": "IN-0234", + "type": "heliport", + "name": "Mizoram University Heliport", + "latitude_deg": "23.732843", + "longitude_deg": "92.65553", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MZ", + "municipality": "Aizawl", + "scheduled_service": "no" + }, + { + "id": "341837", + "ident": "IN-0235", + "type": "heliport", + "name": "Mualpui Helipot", + "latitude_deg": "23.715285", + "longitude_deg": "92.736057", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MZ", + "municipality": "Aizawl", + "scheduled_service": "no" + }, + { + "id": "341838", + "ident": "IN-0236", + "type": "heliport", + "name": "Luangpawl Heliport", + "latitude_deg": "23.894013", + "longitude_deg": "92.497234", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MZ", + "municipality": "Mamit", + "scheduled_service": "no" + }, + { + "id": "341839", + "ident": "IN-0237", + "type": "heliport", + "name": "Kawrtethawveng Heliport", + "latitude_deg": "23.873867", + "longitude_deg": "92.372788", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MZ", + "municipality": "Kawrtethawveng", + "scheduled_service": "no" + }, + { + "id": "341840", + "ident": "IN-0238", + "type": "heliport", + "name": "Kawnpui Helipad", + "latitude_deg": "24.046672", + "longitude_deg": "92.671347", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MZ", + "municipality": "Kawnpui", + "scheduled_service": "no" + }, + { + "id": "341841", + "ident": "IN-0239", + "type": "heliport", + "name": "Sialsuk Heliport", + "latitude_deg": "23.394918", + "longitude_deg": "92.753586", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MZ", + "municipality": "Sialsuk", + "scheduled_service": "no" + }, + { + "id": "341842", + "ident": "IN-0240", + "type": "heliport", + "name": "Saitual Heliport", + "latitude_deg": "23.693488", + "longitude_deg": "92.978364", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MZ", + "municipality": "Saitual", + "scheduled_service": "no" + }, + { + "id": "341843", + "ident": "IN-0241", + "type": "heliport", + "name": "Darlawn Chhimveng Heliport", + "latitude_deg": "24.010327", + "longitude_deg": "92.148375", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MZ", + "municipality": "Darlawn", + "scheduled_service": "no" + }, + { + "id": "341844", + "ident": "IN-0242", + "type": "heliport", + "name": "Tuipuibari Heliport", + "latitude_deg": "23.71351", + "longitude_deg": "92.327704", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MZ", + "municipality": "Tuipuibari", + "scheduled_service": "no" + }, + { + "id": "341845", + "ident": "IN-0243", + "type": "heliport", + "name": "Suangpuilawn Heliport", + "latitude_deg": "23.94864", + "longitude_deg": "93.032695", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MZ", + "municipality": "Suangpuilawn", + "scheduled_service": "no" + }, + { + "id": "341846", + "ident": "IN-0244", + "type": "heliport", + "name": "Champhai Heliport", + "latitude_deg": "23.469998", + "longitude_deg": "93.34356", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MZ", + "municipality": "Champhai", + "scheduled_service": "no" + }, + { + "id": "341886", + "ident": "IN-0245", + "type": "heliport", + "name": "Ghooghra Heliport Ajmer", + "latitude_deg": "26.509349", + "longitude_deg": "74.704718", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "municipality": "Ghooghra", + "scheduled_service": "no" + }, + { + "id": "341887", + "ident": "IN-0246", + "type": "heliport", + "name": "Pushkar Heliport", + "latitude_deg": "26.485927", + "longitude_deg": "74.543235", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "municipality": "Pushkar", + "scheduled_service": "no" + }, + { + "id": "341888", + "ident": "IN-0247", + "type": "heliport", + "name": "Kishanpura Goyla Heliport", + "latitude_deg": "26.476022", + "longitude_deg": "74.519229", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "municipality": "Kishanpura Goyla", + "scheduled_service": "no" + }, + { + "id": "341889", + "ident": "IN-0248", + "type": "heliport", + "name": "Tiloniya Heliport", + "latitude_deg": "26.646926", + "longitude_deg": "74.938877", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "municipality": "Tiloniya", + "scheduled_service": "no" + }, + { + "id": "341890", + "ident": "IN-0249", + "type": "heliport", + "name": "Pushkar Hotel Heliport", + "latitude_deg": "26.479509", + "longitude_deg": "74.518667", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "municipality": "Kishanpura Goyla", + "scheduled_service": "no" + }, + { + "id": "341891", + "ident": "IN-0250", + "type": "heliport", + "name": "Central University of Rajasthan Heliport", + "latitude_deg": "26.628069", + "longitude_deg": "75.028541", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "municipality": "Bandar Seendri", + "scheduled_service": "no" + }, + { + "id": "341898", + "ident": "IN-0251", + "type": "heliport", + "name": "HAL Heliport", + "latitude_deg": "26.21757", + "longitude_deg": "81.817293", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Korwa", + "scheduled_service": "no" + }, + { + "id": "341899", + "ident": "IN-0252", + "type": "heliport", + "name": "Mau Heliport", + "latitude_deg": "25.913982", + "longitude_deg": "83.561476", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Mau", + "scheduled_service": "no" + }, + { + "id": "341900", + "ident": "IN-0253", + "type": "heliport", + "name": "MMMUT Heliport", + "latitude_deg": "26.731111", + "longitude_deg": "83.435293", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Gorakhpur", + "scheduled_service": "no" + }, + { + "id": "341901", + "ident": "IN-0254", + "type": "heliport", + "name": "Prayagraj Army Helipad", + "latitude_deg": "25.486483", + "longitude_deg": "81.850521", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Prayagraj", + "scheduled_service": "no" + }, + { + "id": "341902", + "ident": "IN-0255", + "type": "heliport", + "name": "Fertilizer Colony Helipad", + "latitude_deg": "26.82455", + "longitude_deg": "83.376899", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Gorakhpur", + "scheduled_service": "no" + }, + { + "id": "341912", + "ident": "IN-0256", + "type": "heliport", + "name": "Shegaon Heliport", + "latitude_deg": "20.779141", + "longitude_deg": "76.692378", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Shegaon", + "scheduled_service": "no" + }, + { + "id": "341913", + "ident": "IN-0257", + "type": "heliport", + "name": "Bhokardan Heliport", + "latitude_deg": "20.234464", + "longitude_deg": "75.768429", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Bhokardan", + "scheduled_service": "no" + }, + { + "id": "341914", + "ident": "IN-0258", + "type": "heliport", + "name": "ACC Heliport", + "latitude_deg": "21.940413", + "longitude_deg": "80.047809", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "municipality": "Lalbarra", + "scheduled_service": "no" + }, + { + "id": "341915", + "ident": "IN-0259", + "type": "heliport", + "name": "BKT Heliport", + "latitude_deg": "17.971592", + "longitude_deg": "73.043761", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Narayannagar", + "scheduled_service": "no" + }, + { + "id": "341970", + "ident": "IN-0260", + "type": "heliport", + "name": "Chennai Military Hospital Helipad", + "latitude_deg": "13.0196", + "longitude_deg": "80.1976", + "elevation_ft": "52", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Chennai", + "scheduled_service": "no" + }, + { + "id": "341972", + "ident": "IN-0261", + "type": "heliport", + "name": "Chethy Beach Helipad", + "latitude_deg": "9.624", + "longitude_deg": "76.2966", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Mararikkulam North", + "scheduled_service": "no" + }, + { + "id": "341973", + "ident": "IN-0262", + "type": "heliport", + "name": "Devaswam Board Pampa College Helipad", + "latitude_deg": "9.3235", + "longitude_deg": "76.5354", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Nirmalapuram", + "scheduled_service": "no" + }, + { + "id": "341974", + "ident": "IN-0263", + "type": "heliport", + "name": "Manjinikkara Helipad", + "latitude_deg": "9.2481", + "longitude_deg": "76.7469", + "elevation_ft": "55", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Pathanamthitta", + "scheduled_service": "no" + }, + { + "id": "341975", + "ident": "IN-0264", + "type": "heliport", + "name": "Kottayam Police Heliport", + "latitude_deg": "9.5911", + "longitude_deg": "76.5337", + "elevation_ft": "128", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Kottayam", + "scheduled_service": "no" + }, + { + "id": "341976", + "ident": "IN-0265", + "type": "heliport", + "name": "KSEB Heliport", + "latitude_deg": "9.7855", + "longitude_deg": "76.8503", + "elevation_ft": "515", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Moolamattom", + "scheduled_service": "no" + }, + { + "id": "341977", + "ident": "IN-0266", + "type": "heliport", + "name": "Lakeshore Hospital Helipad", + "latitude_deg": "9.9188", + "longitude_deg": "76.319", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Ernakulam", + "scheduled_service": "no" + }, + { + "id": "341978", + "ident": "IN-0267", + "type": "heliport", + "name": "Sabarimala Nilakkal Heliport", + "latitude_deg": "9.3863", + "longitude_deg": "77.0102", + "elevation_ft": "1270", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Perunad", + "scheduled_service": "no" + }, + { + "id": "341979", + "ident": "IN-0268", + "type": "heliport", + "name": "Amrita Heliport", + "latitude_deg": "10.0366", + "longitude_deg": "76.2996", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Ernakulam", + "scheduled_service": "no" + }, + { + "id": "341980", + "ident": "IN-0269", + "type": "heliport", + "name": "Bolgatty / Lulu Grand Hyatt Heliport", + "latitude_deg": "9.9899", + "longitude_deg": "76.264", + "elevation_ft": "1", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Ernakulam", + "scheduled_service": "no" + }, + { + "id": "341981", + "ident": "IN-0270", + "type": "heliport", + "name": "Jatayu-Chipsan Aviation Heliport", + "latitude_deg": "8.8634", + "longitude_deg": "76.8661", + "elevation_ft": "478", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Kollam", + "scheduled_service": "no" + }, + { + "id": "341982", + "ident": "IN-0271", + "type": "heliport", + "name": "Ayiranalloor Heliport", + "latitude_deg": "8.9858", + "longitude_deg": "76.9729", + "elevation_ft": "586", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Ayiranalloor", + "scheduled_service": "no" + }, + { + "id": "341983", + "ident": "IN-0272", + "type": "heliport", + "name": "Chipsan-Orange Hills Heliport", + "latitude_deg": "9.6348", + "longitude_deg": "77.1308", + "elevation_ft": "3754", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Pathumury", + "scheduled_service": "no" + }, + { + "id": "341984", + "ident": "IN-0273", + "type": "heliport", + "name": "Prakrithisakthi Helipad", + "latitude_deg": "9.5293", + "longitude_deg": "76.9786", + "elevation_ft": "2726", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Panchalimedu", + "scheduled_service": "no" + }, + { + "id": "341985", + "ident": "IN-0274", + "type": "heliport", + "name": "Ottakathatla Helipad", + "latitude_deg": "9.6367", + "longitude_deg": "77.1545", + "elevation_ft": "3996", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Chakkuppallam", + "scheduled_service": "no" + }, + { + "id": "341986", + "ident": "IN-0275", + "type": "heliport", + "name": "Aster Hospital Helipad", + "latitude_deg": "10.0445", + "longitude_deg": "76.2767", + "elevation_ft": "14", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Kochi", + "scheduled_service": "no" + }, + { + "id": "342093", + "ident": "IN-0276", + "type": "closed", + "name": "Navi Mumbai International Airport (under construction)", + "latitude_deg": "18.9918", + "longitude_deg": "73.063", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Navi Mumbai", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Navi_Mumbai_International_Airport" + }, + { + "id": "342094", + "ident": "IN-0277", + "type": "closed", + "name": "Mopa International Airport (under construction)", + "latitude_deg": "15.743514", + "longitude_deg": "73.859625", + "elevation_ft": "586", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GA", + "municipality": "Mopa", + "scheduled_service": "no", + "gps_code": "VOGA", + "iata_code": "GOX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mopa_Airport" + }, + { + "id": "342196", + "ident": "IN-0278", + "type": "heliport", + "name": "Nyoma Heliport", + "latitude_deg": "33.193", + "longitude_deg": "78.6417", + "elevation_ft": "13594", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Nyoma", + "scheduled_service": "no" + }, + { + "id": "342197", + "ident": "IN-0279", + "type": "small_airport", + "name": "Chushul Airstrip", + "latitude_deg": "33.55493", + "longitude_deg": "78.72214", + "elevation_ft": "14213", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Chushul", + "scheduled_service": "no" + }, + { + "id": "342198", + "ident": "IN-0280", + "type": "heliport", + "name": "Tangtse Heliport", + "latitude_deg": "34.06786", + "longitude_deg": "78.13719", + "elevation_ft": "12851", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Tangtse", + "scheduled_service": "no" + }, + { + "id": "342199", + "ident": "IN-0281", + "type": "heliport", + "name": "Surtok Heliport", + "latitude_deg": "33.966779", + "longitude_deg": "78.418908", + "elevation_ft": "13944", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Surtok", + "scheduled_service": "no" + }, + { + "id": "342200", + "ident": "IN-0282", + "type": "heliport", + "name": "Man Heliport", + "latitude_deg": "33.85732", + "longitude_deg": "78.52398", + "elevation_ft": "14127", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Man", + "scheduled_service": "no" + }, + { + "id": "342873", + "ident": "IN-0283", + "type": "small_airport", + "name": "Therubali Aerodrome", + "latitude_deg": "19.34564", + "longitude_deg": "83.43444", + "elevation_ft": "830", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Deopur", + "scheduled_service": "no" + }, + { + "id": "347130", + "ident": "IN-0284", + "type": "heliport", + "name": "Aerial Bay Heliport", + "latitude_deg": "13.27495", + "longitude_deg": "93.02323", + "elevation_ft": "25", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AN", + "municipality": "Diglipur", + "scheduled_service": "no" + }, + { + "id": "347136", + "ident": "IN-0285", + "type": "heliport", + "name": "Diglipur Heliport", + "latitude_deg": "13.25542", + "longitude_deg": "93.00137", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AN", + "municipality": "Diglipur", + "scheduled_service": "no", + "keywords": "Diglipur Helicopter Terminal" + }, + { + "id": "347137", + "ident": "IN-0286", + "type": "heliport", + "name": "Mayabunder Heliport", + "latitude_deg": "12.91375", + "longitude_deg": "92.8976", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AN", + "municipality": "Mayabunder", + "scheduled_service": "no", + "keywords": "Mayabunder Helicopter Terminal" + }, + { + "id": "347138", + "ident": "IN-0287", + "type": "heliport", + "name": "Rangat Heliport", + "latitude_deg": "12.50765", + "longitude_deg": "92.96071", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AN", + "municipality": "Rangat", + "scheduled_service": "no" + }, + { + "id": "347139", + "ident": "IN-0288", + "type": "heliport", + "name": "Havelock Heliport", + "latitude_deg": "12.03744", + "longitude_deg": "92.98318", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AN", + "municipality": "Govind Nagar", + "scheduled_service": "no" + }, + { + "id": "347140", + "ident": "IN-0289", + "type": "heliport", + "name": "Neil Island Heliport", + "latitude_deg": "11.84177", + "longitude_deg": "93.01838", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AN", + "municipality": "Lakshmanpur", + "scheduled_service": "no" + }, + { + "id": "347141", + "ident": "IN-0290", + "type": "heliport", + "name": "Ross Island Heliport", + "latitude_deg": "11.67722", + "longitude_deg": "92.76022", + "elevation_ft": "1", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AN", + "municipality": "Port Blair", + "scheduled_service": "no" + }, + { + "id": "347142", + "ident": "IN-0291", + "type": "heliport", + "name": "Chidiya Tapu Heliport", + "latitude_deg": "11.50879", + "longitude_deg": "92.70187", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AN", + "municipality": "Port Blair", + "scheduled_service": "no" + }, + { + "id": "347143", + "ident": "IN-0292", + "type": "heliport", + "name": "Hut Bay Heliport", + "latitude_deg": "10.60307", + "longitude_deg": "92.53432", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AN", + "municipality": "Kwate-tu-kwage (Hut Bay)", + "scheduled_service": "no" + }, + { + "id": "347144", + "ident": "IN-0293", + "type": "seaplane_base", + "name": "Hut Bay Seaplane Base", + "latitude_deg": "10.58975", + "longitude_deg": "92.55899", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AN", + "municipality": "Kwate-tu-kwage (Hut Bay)", + "scheduled_service": "no" + }, + { + "id": "347145", + "ident": "IN-0294", + "type": "heliport", + "name": "Chowra Island Heliport", + "latitude_deg": "8.46046", + "longitude_deg": "93.04432", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AN", + "municipality": "Nancowry", + "scheduled_service": "no" + }, + { + "id": "347146", + "ident": "IN-0295", + "type": "heliport", + "name": "Tarasa Dwip Island Heliport", + "latitude_deg": "8.30196", + "longitude_deg": "93.1247", + "elevation_ft": "60", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AN", + "municipality": "Nancowry", + "scheduled_service": "no" + }, + { + "id": "347147", + "ident": "IN-0296", + "type": "heliport", + "name": "Kamorta Heliport", + "latitude_deg": "8.03703", + "longitude_deg": "93.54899", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AN", + "municipality": "Nancowry", + "scheduled_service": "no" + }, + { + "id": "347148", + "ident": "IN-0297", + "type": "heliport", + "name": "Goaltekery Heliport", + "latitude_deg": "8.06716", + "longitude_deg": "93.54712", + "elevation_ft": "154", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AN", + "municipality": "Nancowry", + "scheduled_service": "no" + }, + { + "id": "347149", + "ident": "IN-0298", + "type": "heliport", + "name": "Champin Heliport", + "latitude_deg": "8.02424", + "longitude_deg": "93.54499", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AN", + "municipality": "Nancowry", + "scheduled_service": "no" + }, + { + "id": "347150", + "ident": "IN-0299", + "type": "heliport", + "name": "Katchal Heliport", + "latitude_deg": "7.99756", + "longitude_deg": "93.37938", + "elevation_ft": "125", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AN", + "municipality": "Nancowry", + "scheduled_service": "no" + }, + { + "id": "348753", + "ident": "IN-0300", + "type": "small_airport", + "name": "Viraf Airstrip", + "latitude_deg": "17.728462", + "longitude_deg": "78.700909", + "elevation_ft": "2010", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TG", + "municipality": "Mamidiyal", + "scheduled_service": "no" + }, + { + "id": "354545", + "ident": "IN-0301", + "type": "closed", + "name": "Shivamogga Greenfield Airport", + "latitude_deg": "13.856664", + "longitude_deg": "75.613747", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Shivamogga", + "scheduled_service": "no" + }, + { + "id": "350876", + "ident": "IN-0302", + "type": "small_airport", + "name": "Nyoma Airstrip", + "latitude_deg": "33.16913", + "longitude_deg": "78.72971", + "elevation_ft": "13589", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Nyoma", + "scheduled_service": "no" + }, + { + "id": "350878", + "ident": "IN-0303", + "type": "heliport", + "name": "Kargil Heliport", + "latitude_deg": "34.5577", + "longitude_deg": "76.13505", + "elevation_ft": "9154", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Kargil", + "scheduled_service": "no" + }, + { + "id": "350879", + "ident": "IN-0304", + "type": "heliport", + "name": "Nimmoo Basgo Hydroelectric Plant Heliport", + "latitude_deg": "34.211296", + "longitude_deg": "77.185811", + "elevation_ft": "10289", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Khaltsi", + "scheduled_service": "no" + }, + { + "id": "350880", + "ident": "IN-0305", + "type": "heliport", + "name": "Nimmoo Heliport", + "latitude_deg": "34.19983", + "longitude_deg": "77.31903", + "elevation_ft": "10253", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Nimmoo", + "scheduled_service": "no" + }, + { + "id": "350881", + "ident": "IN-0306", + "type": "heliport", + "name": "Khaltsi Heliport", + "latitude_deg": "34.31879", + "longitude_deg": "76.90241", + "elevation_ft": "9829", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Khaltsi", + "scheduled_service": "no" + }, + { + "id": "350890", + "ident": "IN-0307", + "type": "small_airport", + "name": "Tuting Advanced Landing Ground", + "latitude_deg": "28.98876", + "longitude_deg": "94.89863", + "elevation_ft": "1562", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Tuting", + "scheduled_service": "no", + "gps_code": "VETU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tuting_Advanced_Landing_Ground", + "keywords": "Tuting Airport and Heliport" + }, + { + "id": "354546", + "ident": "IN-0308", + "type": "medium_airport", + "name": "Itanagar Donyi Polo Hollongi Airport", + "latitude_deg": "26.96683", + "longitude_deg": "93.638792", + "elevation_ft": "328", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Hollongi", + "scheduled_service": "no", + "gps_code": "VEHO", + "iata_code": "HGI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Itanagar_Airport" + }, + { + "id": "355261", + "ident": "IN-0309", + "type": "heliport", + "name": "HeliTaxii Heliport", + "latitude_deg": "12.84305", + "longitude_deg": "77.668188", + "elevation_ft": "3005", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Bengaluru", + "scheduled_service": "no" + }, + { + "id": "355262", + "ident": "IN-0310", + "type": "heliport", + "name": "Chandimandir Helipad", + "latitude_deg": "30.73473", + "longitude_deg": "76.88139", + "elevation_ft": "1410", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HR", + "municipality": "Panchkula", + "scheduled_service": "no" + }, + { + "id": "355263", + "ident": "IN-0311", + "type": "heliport", + "name": "Pilani Helipad", + "latitude_deg": "28.349677", + "longitude_deg": "75.591104", + "elevation_ft": "974", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "municipality": "Pilani", + "scheduled_service": "no" + }, + { + "id": "355265", + "ident": "IN-0312", + "type": "heliport", + "name": "ICAT Helipad", + "latitude_deg": "28.36925", + "longitude_deg": "76.87712", + "elevation_ft": "790", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HR", + "municipality": "Gurugram", + "scheduled_service": "no" + }, + { + "id": "355266", + "ident": "IN-0313", + "type": "heliport", + "name": "EON Helipad", + "latitude_deg": "18.545464", + "longitude_deg": "73.96432", + "elevation_ft": "1774", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Pune", + "scheduled_service": "no" + }, + { + "id": "355267", + "ident": "IN-0314", + "type": "heliport", + "name": "Ganga Helipad", + "latitude_deg": "11.09489", + "longitude_deg": "76.95603", + "elevation_ft": "1417", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Coimbatore", + "scheduled_service": "no" + }, + { + "id": "355268", + "ident": "IN-0315", + "type": "heliport", + "name": "RPSCL Private Helipad", + "latitude_deg": "27.83428", + "longitude_deg": "79.92742", + "elevation_ft": "501", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Shahjahanpur", + "scheduled_service": "no" + }, + { + "id": "355270", + "ident": "IN-0316", + "type": "heliport", + "name": "Varanasi Police Line Helipad", + "latitude_deg": "25.34819", + "longitude_deg": "82.98752", + "elevation_ft": "255", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Varanasi", + "scheduled_service": "no" + }, + { + "id": "356024", + "ident": "IN-0317", + "type": "heliport", + "name": "Kiari Heliport", + "latitude_deg": "33.47621", + "longitude_deg": "78.12866", + "elevation_ft": "12641", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Kiari", + "scheduled_service": "no" + }, + { + "id": "356025", + "ident": "IN-0318", + "type": "heliport", + "name": "Chumathang Heliport", + "latitude_deg": "33.36284", + "longitude_deg": "78.31326", + "elevation_ft": "13402", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Chumathang", + "scheduled_service": "no" + }, + { + "id": "356026", + "ident": "IN-0319", + "type": "heliport", + "name": "Karu Heliport", + "latitude_deg": "33.91257", + "longitude_deg": "77.74465", + "elevation_ft": "10961", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Karu", + "scheduled_service": "no" + }, + { + "id": "356027", + "ident": "IN-0320", + "type": "heliport", + "name": "Upshi Heliport", + "latitude_deg": "33.82395", + "longitude_deg": "77.82194", + "elevation_ft": "11187", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Upshi", + "scheduled_service": "no" + }, + { + "id": "356104", + "ident": "IN-0321", + "type": "heliport", + "name": "Jhakri SJVN Heliport", + "latitude_deg": "31.4899", + "longitude_deg": "77.70754", + "elevation_ft": "4420", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HP", + "municipality": "Shimla", + "scheduled_service": "no" + }, + { + "id": "356105", + "ident": "IN-0322", + "type": "heliport", + "name": "Rampur Bushahr Heliport", + "latitude_deg": "31.41727", + "longitude_deg": "77.62826", + "elevation_ft": "4111", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HP", + "municipality": "Shimla", + "scheduled_service": "no" + }, + { + "id": "356106", + "ident": "IN-0323", + "type": "heliport", + "name": "Tharu Heliport", + "latitude_deg": "31.3337", + "longitude_deg": "77.55919", + "elevation_ft": "6943", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HP", + "municipality": "Shimla", + "scheduled_service": "no" + }, + { + "id": "356107", + "ident": "IN-0324", + "type": "heliport", + "name": "Bithal Heliport", + "latitude_deg": "31.3534", + "longitude_deg": "77.49121", + "elevation_ft": "2874", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HP", + "municipality": "Shimla", + "scheduled_service": "no" + }, + { + "id": "356109", + "ident": "IN-0325", + "type": "heliport", + "name": "Kumharsain Heliport", + "latitude_deg": "31.33025", + "longitude_deg": "77.44237", + "elevation_ft": "4475", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HP", + "municipality": "Shimla", + "scheduled_service": "no" + }, + { + "id": "356110", + "ident": "IN-0326", + "type": "heliport", + "name": "Kalpa Heliport", + "latitude_deg": "31.5392", + "longitude_deg": "78.2723", + "elevation_ft": "7615", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HP", + "municipality": "Kalpa", + "scheduled_service": "no" + }, + { + "id": "356111", + "ident": "IN-0327", + "type": "heliport", + "name": "Rukling Heliport", + "latitude_deg": "31.6015", + "longitude_deg": "78.43633", + "elevation_ft": "8081", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HP", + "municipality": "Morang", + "scheduled_service": "no" + }, + { + "id": "356112", + "ident": "IN-0328", + "type": "heliport", + "name": "Pooh Heliport", + "latitude_deg": "31.75225", + "longitude_deg": "78.57191", + "elevation_ft": "8781", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HP", + "municipality": "Pooh", + "scheduled_service": "no" + }, + { + "id": "356114", + "ident": "IN-0329", + "type": "heliport", + "name": "Chango Heliport", + "latitude_deg": "31.96923", + "longitude_deg": "78.59328", + "elevation_ft": "10630", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HP", + "municipality": "Chango", + "scheduled_service": "no" + }, + { + "id": "356115", + "ident": "IN-0330", + "type": "heliport", + "name": "Kaurik Heliport", + "latitude_deg": "32.09448", + "longitude_deg": "78.67575", + "elevation_ft": "12231", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HP", + "municipality": "Spiti", + "scheduled_service": "no" + }, + { + "id": "356116", + "ident": "IN-0331", + "type": "heliport", + "name": "Khuldo Heliport", + "latitude_deg": "32.77295", + "longitude_deg": "78.98563", + "elevation_ft": "13980", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Khuldo", + "scheduled_service": "no" + }, + { + "id": "356118", + "ident": "IN-0332", + "type": "heliport", + "name": "Nako Heliport", + "latitude_deg": "31.8861", + "longitude_deg": "78.62787", + "elevation_ft": "11826", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HP", + "municipality": "Nako", + "scheduled_service": "no" + }, + { + "id": "356120", + "ident": "IN-0333", + "type": "heliport", + "name": "Judi Heliport", + "latitude_deg": "30.57862", + "longitude_deg": "78.45075", + "elevation_ft": "7232", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UT", + "municipality": "Mukhem Renge", + "scheduled_service": "no" + }, + { + "id": "356128", + "ident": "IN-0334", + "type": "heliport", + "name": "Jindal Heliport", + "latitude_deg": "20.96598", + "longitude_deg": "86.04235", + "elevation_ft": "207", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Gadapur", + "scheduled_service": "no" + }, + { + "id": "356129", + "ident": "IN-0335", + "type": "heliport", + "name": "Tata Steel Gadapur Heliport", + "latitude_deg": "20.96803", + "longitude_deg": "86.03998", + "elevation_ft": "201", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Gadapur", + "scheduled_service": "no" + }, + { + "id": "356130", + "ident": "IN-0336", + "type": "heliport", + "name": "Tata Steel Bamnipal Heliport", + "latitude_deg": "21.12438", + "longitude_deg": "85.92252", + "elevation_ft": "289", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Bamnipal", + "scheduled_service": "no" + }, + { + "id": "356131", + "ident": "IN-0337", + "type": "heliport", + "name": "Bamnipal Heliport", + "latitude_deg": "21.12157", + "longitude_deg": "85.92059", + "elevation_ft": "316", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Bamnipal", + "scheduled_service": "no" + }, + { + "id": "356132", + "ident": "IN-0338", + "type": "small_airport", + "name": "Birasal Airport", + "latitude_deg": "20.98366", + "longitude_deg": "85.681622", + "elevation_ft": "240", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Rahani", + "scheduled_service": "no" + }, + { + "id": "356133", + "ident": "IN-0339", + "type": "heliport", + "name": "NOCCi Business Park Heliport", + "latitude_deg": "21.495281", + "longitude_deg": "86.883622", + "elevation_ft": "62", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Balasore", + "scheduled_service": "no" + }, + { + "id": "356134", + "ident": "IN-0340", + "type": "closed", + "name": "Bhograi Heliport", + "latitude_deg": "21.68382", + "longitude_deg": "87.41512", + "elevation_ft": "29", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Bhograi", + "scheduled_service": "no" + }, + { + "id": "356352", + "ident": "IN-0341", + "type": "small_airport", + "name": "Mohammadabad Airport", + "latitude_deg": "27.316258", + "longitude_deg": "79.451555", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Mohammadabad", + "scheduled_service": "no", + "keywords": "VAMH" + }, + { + "id": "429737", + "ident": "IN-0342", + "type": "small_airport", + "name": "Marhamtabad Airport", + "latitude_deg": "26.58182", + "longitude_deg": "79.96797", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Marhamtabad", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marhamtabad_Airstrip" + }, + { + "id": "429738", + "ident": "IN-0343", + "type": "small_airport", + "name": "Benti Airstrip", + "latitude_deg": "25.67292", + "longitude_deg": "81.49592", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Benti", + "scheduled_service": "no" + }, + { + "id": "429739", + "ident": "IN-0344", + "type": "closed", + "name": "Naini Airfield", + "latitude_deg": "25.32424", + "longitude_deg": "81.84179", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Iradatjanj", + "scheduled_service": "no", + "keywords": "Iradatganj" + }, + { + "id": "429740", + "ident": "IN-0345", + "type": "small_airport", + "name": "Andhau Airfield", + "latitude_deg": "25.6155", + "longitude_deg": "83.56064", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Biraich", + "scheduled_service": "no" + }, + { + "id": "429741", + "ident": "IN-0346", + "type": "small_airport", + "name": "Bihta Air Force Station", + "latitude_deg": "25.59124", + "longitude_deg": "84.88312", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-BR", + "municipality": "Patna", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bihta_Air_Force_Station" + }, + { + "id": "429833", + "ident": "IN-0347", + "type": "heliport", + "name": "Gelling Heliport", + "latitude_deg": "29.13306", + "longitude_deg": "94.97873", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Gelling", + "scheduled_service": "no" + }, + { + "id": "429834", + "ident": "IN-0348", + "type": "heliport", + "name": "Yingkiong Heliport", + "latitude_deg": "28.6393", + "longitude_deg": "95.0196", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Yingkiong", + "scheduled_service": "no", + "keywords": "Siang Heliport" + }, + { + "id": "429835", + "ident": "IN-0349", + "type": "heliport", + "name": "Jengging Heliport", + "latitude_deg": "28.53862", + "longitude_deg": "95.06795", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Jengging", + "scheduled_service": "no" + }, + { + "id": "429836", + "ident": "IN-0350", + "type": "heliport", + "name": "Boleng Heliport", + "latitude_deg": "28.31533", + "longitude_deg": "94.95583", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Boleng", + "scheduled_service": "no" + }, + { + "id": "429837", + "ident": "IN-0351", + "type": "heliport", + "name": "Pangin Heliport", + "latitude_deg": "28.20879", + "longitude_deg": "95.00239", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Pangin", + "scheduled_service": "no" + }, + { + "id": "429838", + "ident": "IN-0352", + "type": "heliport", + "name": "Duliajan Oil Heliport", + "latitude_deg": "27.36617", + "longitude_deg": "95.322951", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AS", + "municipality": "Duliajan", + "scheduled_service": "no" + }, + { + "id": "429839", + "ident": "IN-0353", + "type": "heliport", + "name": "Deomali Heliport", + "latitude_deg": "27.195513", + "longitude_deg": "95.467098", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AS", + "municipality": "Deomali", + "scheduled_service": "no" + }, + { + "id": "429842", + "ident": "IN-0354", + "type": "heliport", + "name": "Namsai Heliport", + "latitude_deg": "27.676474", + "longitude_deg": "95.853884", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Namsai", + "scheduled_service": "no" + }, + { + "id": "429849", + "ident": "IN-0355", + "type": "heliport", + "name": "Nampong Heliport", + "latitude_deg": "27.300864", + "longitude_deg": "96.112883", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Nampong", + "scheduled_service": "no" + }, + { + "id": "429850", + "ident": "IN-0356", + "type": "heliport", + "name": "Miao Heliport", + "latitude_deg": "27.492864", + "longitude_deg": "96.213954", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Miao", + "scheduled_service": "no" + }, + { + "id": "429851", + "ident": "IN-0357", + "type": "heliport", + "name": "Nalung Heliport", + "latitude_deg": "27.803726", + "longitude_deg": "95.999887", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Nalung", + "scheduled_service": "no" + }, + { + "id": "429852", + "ident": "IN-0358", + "type": "heliport", + "name": "Parsuram Kund Heliport", + "latitude_deg": "27.88058", + "longitude_deg": "96.35382", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Parsuram Kund", + "scheduled_service": "no" + }, + { + "id": "429853", + "ident": "IN-0359", + "type": "heliport", + "name": "Roing Heliport", + "latitude_deg": "28.14626", + "longitude_deg": "95.83937", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Roing", + "scheduled_service": "no" + }, + { + "id": "429854", + "ident": "IN-0360", + "type": "small_airport", + "name": "Dinjan Airfield", + "latitude_deg": "27.53606", + "longitude_deg": "95.2682", + "elevation_ft": "390", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Baghbari Gaon", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dinjan_Airfield" + }, + { + "id": "429855", + "ident": "IN-0361", + "type": "heliport", + "name": "Sivasagar Heliport", + "latitude_deg": "26.95124", + "longitude_deg": "94.59869", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AS", + "municipality": "Rudra Sagar", + "scheduled_service": "no" + }, + { + "id": "430015", + "ident": "IN-0362", + "type": "heliport", + "name": "Anachal Heliport / Southern Skies Balloonport", + "latitude_deg": "10.02322", + "longitude_deg": "77.03309", + "elevation_ft": "3035", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Anachal", + "scheduled_service": "no" + }, + { + "id": "31698", + "ident": "IN-JGB", + "type": "small_airport", + "name": "Jagdalpur Airport", + "latitude_deg": "19.074301", + "longitude_deg": "82.036797", + "elevation_ft": "1822", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-CT", + "municipality": "Jagdalpur", + "scheduled_service": "yes", + "iata_code": "JGB" + }, + { + "id": "42723", + "ident": "IN-NVY", + "type": "small_airport", + "name": "Neyveli Airport", + "latitude_deg": "11.6129560471", + "longitude_deg": "79.527381897", + "elevation_ft": "184", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Neyveli", + "scheduled_service": "no", + "gps_code": "VONV", + "iata_code": "NVY" + }, + { + "id": "32215", + "ident": "IN-RJI", + "type": "small_airport", + "name": "Rajouri Airport", + "latitude_deg": "33.377899169921875", + "longitude_deg": "74.31520080566406", + "elevation_ft": "3000", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-JK", + "municipality": "Rajouri", + "scheduled_service": "no", + "iata_code": "RJI", + "keywords": "Rajauri" + }, + { + "id": "32433", + "ident": "IN-TEI", + "type": "small_airport", + "name": "Tezu Airport", + "latitude_deg": "27.9412002563", + "longitude_deg": "96.1343994141", + "elevation_ft": "800", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Tezu", + "scheduled_service": "no", + "gps_code": "VETJ", + "iata_code": "TEI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tezu_Airport", + "keywords": "Teju New Airport" + }, + { + "id": "3302", + "ident": "IN-VA38", + "type": "small_airport", + "name": "Sirohi Airport", + "latitude_deg": "24.895099639892578", + "longitude_deg": "72.84590148925781", + "elevation_ft": "1000", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "scheduled_service": "no", + "gps_code": "VA38", + "local_code": "VA38" + }, + { + "id": "3303", + "ident": "IN-VA47", + "type": "small_airport", + "name": "Jalgaon Airport", + "latitude_deg": "20.962678", + "longitude_deg": "75.627492", + "elevation_ft": "818", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Jalgaon", + "scheduled_service": "yes", + "gps_code": "VAJL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jalgaon_Airport", + "keywords": "VA47" + }, + { + "id": "3304", + "ident": "IN-VA51", + "type": "small_airport", + "name": "Banswara Airport", + "latitude_deg": "23.58970069885254", + "longitude_deg": "74.31269836425781", + "elevation_ft": "700", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "scheduled_service": "no", + "gps_code": "VA51", + "local_code": "VA51" + }, + { + "id": "3305", + "ident": "IN-VA53", + "type": "small_airport", + "name": "Dhulia Airport", + "latitude_deg": "20.9265", + "longitude_deg": "74.737099", + "elevation_ft": "920", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "scheduled_service": "no", + "gps_code": "VA53", + "local_code": "VA53" + }, + { + "id": "3306", + "ident": "IN-VA74", + "type": "small_airport", + "name": "Abu Road Airport", + "latitude_deg": "24.494199752807617", + "longitude_deg": "72.78150177001953", + "elevation_ft": "875", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "scheduled_service": "no", + "gps_code": "VA74", + "local_code": "VA74" + }, + { + "id": "18072", + "ident": "IN00", + "type": "small_airport", + "name": "Sutton Airport", + "latitude_deg": "40.5452995300293", + "longitude_deg": "-87.05220031738281", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Montmorenci", + "scheduled_service": "no", + "gps_code": "IN00", + "local_code": "IN00" + }, + { + "id": "18073", + "ident": "IN01", + "type": "small_airport", + "name": "Kephart Field Airport", + "latitude_deg": "39.4861111", + "longitude_deg": "-86.1486111", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bargersville", + "scheduled_service": "no", + "gps_code": "IN01", + "local_code": "IN01" + }, + { + "id": "45408", + "ident": "IN02", + "type": "seaplane_base", + "name": "Hamilton Lake Seaplane Base", + "latitude_deg": "41.552222", + "longitude_deg": "-84.917222", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "01F", + "local_code": "01F", + "keywords": "IN02" + }, + { + "id": "18074", + "ident": "IN03", + "type": "small_airport", + "name": "Alford Airpark", + "latitude_deg": "38.46390151977539", + "longitude_deg": "-87.25", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Petersburg", + "scheduled_service": "no", + "gps_code": "IN03", + "local_code": "IN03" + }, + { + "id": "18075", + "ident": "IN04", + "type": "closed", + "name": "N'Meier Airport", + "latitude_deg": "38.846401", + "longitude_deg": "-87.240303", + "elevation_ft": "495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Westphalia", + "scheduled_service": "no", + "keywords": "IN04" + }, + { + "id": "18076", + "ident": "IN05", + "type": "small_airport", + "name": "Stevens Farms Airport", + "latitude_deg": "39.66059875488281", + "longitude_deg": "-85.54830169677734", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Rushville", + "scheduled_service": "no", + "gps_code": "IN05", + "local_code": "IN05" + }, + { + "id": "18077", + "ident": "IN06", + "type": "heliport", + "name": "Methodist Hospital Helistop", + "latitude_deg": "39.788700103759766", + "longitude_deg": "-86.16220092773438", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "IN06", + "local_code": "IN06" + }, + { + "id": "18078", + "ident": "IN07", + "type": "heliport", + "name": "Hook's Heliport", + "latitude_deg": "39.80500030517578", + "longitude_deg": "-86.03359985351562", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "IN07", + "local_code": "IN07" + }, + { + "id": "18079", + "ident": "IN08", + "type": "small_airport", + "name": "Shakamak Airport", + "latitude_deg": "39.169498443603516", + "longitude_deg": "-87.19029998779297", + "elevation_ft": "613", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Jasonville", + "scheduled_service": "no", + "gps_code": "IN08", + "local_code": "IN08" + }, + { + "id": "18080", + "ident": "IN09", + "type": "closed", + "name": "Clifton Airport", + "latitude_deg": "40.5242", + "longitude_deg": "-87.411903", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Boswell", + "scheduled_service": "no", + "keywords": "IN09" + }, + { + "id": "18081", + "ident": "IN10", + "type": "small_airport", + "name": "Plummer Airport", + "latitude_deg": "40.97589874267578", + "longitude_deg": "-86.41999816894531", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Kewanna", + "scheduled_service": "no", + "gps_code": "IN10", + "local_code": "IN10" + }, + { + "id": "18082", + "ident": "IN11", + "type": "small_airport", + "name": "Arrowhead Farm Airport", + "latitude_deg": "41.29280090332031", + "longitude_deg": "-86.07109832763672", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bourbon", + "scheduled_service": "no", + "gps_code": "IN11", + "local_code": "IN11" + }, + { + "id": "45411", + "ident": "IN12", + "type": "seaplane_base", + "name": "Lake Sylvan Seaplane Base", + "latitude_deg": "41.481944", + "longitude_deg": "-85.343611", + "elevation_ft": "916", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Kendallville", + "scheduled_service": "no" + }, + { + "id": "18083", + "ident": "IN13", + "type": "closed", + "name": "Lanesville Skyways Airport", + "latitude_deg": "38.223701", + "longitude_deg": "-85.974998", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lanesville", + "scheduled_service": "no", + "keywords": "IN13" + }, + { + "id": "18084", + "ident": "IN14", + "type": "small_airport", + "name": "Greenridge Restricted Landing Area", + "latitude_deg": "38.238998", + "longitude_deg": "-86.019402", + "elevation_ft": "858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lanesville", + "scheduled_service": "no", + "gps_code": "IN14", + "local_code": "IN14" + }, + { + "id": "18085", + "ident": "IN15", + "type": "small_airport", + "name": "T & T Airport", + "latitude_deg": "38.604875", + "longitude_deg": "-87.463315", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Vincennes", + "scheduled_service": "no", + "gps_code": "IN15", + "local_code": "IN15" + }, + { + "id": "45414", + "ident": "IN16", + "type": "seaplane_base", + "name": "Tippecanoe Seaplane Base", + "latitude_deg": "41.333056", + "longitude_deg": "-85.7675", + "elevation_ft": "836", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Warsaw", + "scheduled_service": "no", + "gps_code": "01B", + "local_code": "01B", + "keywords": "IN16" + }, + { + "id": "18086", + "ident": "IN17", + "type": "heliport", + "name": "Green County General Hospital Heliport", + "latitude_deg": "39.04029846191406", + "longitude_deg": "-87.12999725341797", + "elevation_ft": "542", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Linton", + "scheduled_service": "no", + "gps_code": "IN17", + "local_code": "IN17" + }, + { + "id": "18087", + "ident": "IN18", + "type": "small_airport", + "name": "Hook Field", + "latitude_deg": "41.27450180053711", + "longitude_deg": "-84.80500030517578", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Harlan", + "scheduled_service": "no", + "gps_code": "IN18", + "local_code": "IN18" + }, + { + "id": "18088", + "ident": "IN19", + "type": "closed", + "name": "Marshall Field", + "latitude_deg": "39.643101", + "longitude_deg": "-85.981697", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Acton", + "scheduled_service": "no", + "keywords": "IN19" + }, + { + "id": "18089", + "ident": "IN20", + "type": "small_airport", + "name": "Jungclaus Airport", + "latitude_deg": "39.45370101928711", + "longitude_deg": "-86.2802963256836", + "elevation_ft": "765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Martinsville", + "scheduled_service": "no", + "gps_code": "IN20", + "local_code": "IN20" + }, + { + "id": "18090", + "ident": "IN21", + "type": "closed", + "name": "Starkey's Airport", + "latitude_deg": "40.043098", + "longitude_deg": "-85.260498", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Mooreland", + "scheduled_service": "no", + "keywords": "IN21" + }, + { + "id": "18091", + "ident": "IN22", + "type": "heliport", + "name": "Berling Heliport", + "latitude_deg": "39.60369873046875", + "longitude_deg": "-86.44170379638672", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Mooresville", + "scheduled_service": "no", + "gps_code": "IN22", + "local_code": "IN22" + }, + { + "id": "18092", + "ident": "IN23", + "type": "small_airport", + "name": "Zeller Elev County Airport", + "latitude_deg": "37.90840148925781", + "longitude_deg": "-87.7583999633789", + "elevation_ft": "378", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "IN23", + "local_code": "IN23" + }, + { + "id": "18093", + "ident": "IN24", + "type": "heliport", + "name": "Franciscan Health Michigan City Heliport", + "latitude_deg": "41.705897", + "longitude_deg": "-86.9011", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Michigan City", + "scheduled_service": "no", + "gps_code": "IN24", + "local_code": "IN24", + "keywords": "St Anthony Hospital" + }, + { + "id": "18094", + "ident": "IN25", + "type": "small_airport", + "name": "Hood Field", + "latitude_deg": "39.99810028076172", + "longitude_deg": "-86.57720184326172", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Jamestown", + "scheduled_service": "no", + "gps_code": "IN25", + "local_code": "IN25" + }, + { + "id": "18095", + "ident": "IN26", + "type": "closed", + "name": "Archangels Landing Airport", + "latitude_deg": "41.261398", + "longitude_deg": "-86.872498", + "elevation_ft": "669", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "San Pierre", + "scheduled_service": "no", + "keywords": "IN26" + }, + { + "id": "18096", + "ident": "IN27", + "type": "closed", + "name": "Skyridge Airport", + "latitude_deg": "40.179203", + "longitude_deg": "-86.115799", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Arcadia", + "scheduled_service": "no", + "keywords": "IN27" + }, + { + "id": "18097", + "ident": "IN28", + "type": "heliport", + "name": "Community Hospital Heliport", + "latitude_deg": "41.549607", + "longitude_deg": "-87.50664", + "elevation_ft": "616", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Munster", + "scheduled_service": "no", + "gps_code": "IN28", + "local_code": "IN28" + }, + { + "id": "18098", + "ident": "IN29", + "type": "small_airport", + "name": "Durflinger Airport", + "latitude_deg": "40.57360076904297", + "longitude_deg": "-87.10359954833984", + "elevation_ft": "747", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Otterbein", + "scheduled_service": "no", + "gps_code": "IN29", + "local_code": "IN29" + }, + { + "id": "18099", + "ident": "IN30", + "type": "small_airport", + "name": "Hull Airport", + "latitude_deg": "38.40230178833008", + "longitude_deg": "-87.59950256347656", + "elevation_ft": "423", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Patoka", + "scheduled_service": "no", + "gps_code": "IN30", + "local_code": "IN30" + }, + { + "id": "18100", + "ident": "IN31", + "type": "small_airport", + "name": "Hanna Airport", + "latitude_deg": "40.022301", + "longitude_deg": "-85.753891", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Pendleton", + "scheduled_service": "no", + "gps_code": "IN31", + "local_code": "IN31", + "keywords": "North Lakeland, Huntzinger" + }, + { + "id": "18101", + "ident": "IN32", + "type": "closed", + "name": "Stephenson Airport", + "latitude_deg": "39.977299", + "longitude_deg": "-85.7444", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Pendleton", + "scheduled_service": "no", + "keywords": "IN32" + }, + { + "id": "18102", + "ident": "IN33", + "type": "small_airport", + "name": "Robison Airport", + "latitude_deg": "40.73619842529297", + "longitude_deg": "-86.11530303955078", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Peru", + "scheduled_service": "no", + "gps_code": "IN33", + "local_code": "IN33" + }, + { + "id": "18103", + "ident": "IN34", + "type": "small_airport", + "name": "Rush Strip", + "latitude_deg": "40.83449935913086", + "longitude_deg": "-86.05220031738281", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Peru", + "scheduled_service": "no", + "gps_code": "IN34", + "local_code": "IN34" + }, + { + "id": "18104", + "ident": "IN35", + "type": "small_airport", + "name": "Shinn Bone Lane Airport", + "latitude_deg": "40.65420150756836", + "longitude_deg": "-86.02279663085938", + "elevation_ft": "809", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Peru", + "scheduled_service": "no", + "gps_code": "IN35", + "local_code": "IN35" + }, + { + "id": "18105", + "ident": "IN36", + "type": "small_airport", + "name": "Plugger Airport", + "latitude_deg": "38.03559875488281", + "longitude_deg": "-87.7240982055664", + "elevation_ft": "426", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Evansville", + "scheduled_service": "no", + "gps_code": "IN36", + "local_code": "IN36" + }, + { + "id": "18106", + "ident": "IN37", + "type": "heliport", + "name": "Midwest Steel Heliport", + "latitude_deg": "41.6083984375", + "longitude_deg": "-87.17639923095703", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Portage", + "scheduled_service": "no", + "gps_code": "IN37", + "local_code": "IN37" + }, + { + "id": "18107", + "ident": "IN38", + "type": "small_airport", + "name": "Stewarts Green Acres Airport", + "latitude_deg": "41.5452995300293", + "longitude_deg": "-86.45279693603516", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "North Liberty", + "scheduled_service": "no", + "gps_code": "IN38", + "local_code": "IN38" + }, + { + "id": "18108", + "ident": "IN39", + "type": "closed", + "name": "Klopfenstein Airport", + "latitude_deg": "40.7673", + "longitude_deg": "-86.920799", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Reynolds", + "scheduled_service": "no", + "keywords": "IN39" + }, + { + "id": "18109", + "ident": "IN40", + "type": "closed", + "name": "Brauns Airport", + "latitude_deg": "37.91", + "longitude_deg": "-87.1828", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Richland", + "scheduled_service": "no", + "keywords": "IN40" + }, + { + "id": "18110", + "ident": "IN41", + "type": "closed", + "name": "Nuckols Airport", + "latitude_deg": "40.354801", + "longitude_deg": "-85.049103", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Redkey", + "scheduled_service": "no", + "keywords": "IN41" + }, + { + "id": "18111", + "ident": "IN42", + "type": "closed", + "name": "Hackbarth Airport", + "latitude_deg": "41.490299", + "longitude_deg": "-86.199401", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bremen", + "scheduled_service": "no", + "keywords": "IN42" + }, + { + "id": "18112", + "ident": "IN43", + "type": "small_airport", + "name": "Spring Lake Airport", + "latitude_deg": "38.475101470947266", + "longitude_deg": "-85.99720001220703", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Pekin", + "scheduled_service": "no", + "gps_code": "IN43", + "local_code": "IN43" + }, + { + "id": "18113", + "ident": "IN44", + "type": "small_airport", + "name": "Habermel Airport", + "latitude_deg": "38.564201", + "longitude_deg": "-86.057503", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "IN44", + "local_code": "IN44", + "keywords": "Hardin Airport" + }, + { + "id": "18114", + "ident": "IN45", + "type": "small_airport", + "name": "4 Winds Aerodrome", + "latitude_deg": "39.82500076293945", + "longitude_deg": "-86.88330078125", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Roachdale", + "scheduled_service": "no", + "gps_code": "IN45", + "local_code": "IN45" + }, + { + "id": "18115", + "ident": "IN46", + "type": "small_airport", + "name": "Butler Field", + "latitude_deg": "39.73889923095703", + "longitude_deg": "-87.21949768066406", + "elevation_ft": "687", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Rockville", + "scheduled_service": "no", + "gps_code": "IN46", + "local_code": "IN46" + }, + { + "id": "18116", + "ident": "IN47", + "type": "small_airport", + "name": "White Airport", + "latitude_deg": "39.77360153198242", + "longitude_deg": "-84.92279815673828", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "IN47", + "local_code": "IN47" + }, + { + "id": "18117", + "ident": "IN48", + "type": "heliport", + "name": "St. Vincent Clay Hospital Heliport", + "latitude_deg": "39.527801513671875", + "longitude_deg": "-87.11170196533203", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Brazil", + "scheduled_service": "no", + "gps_code": "IN48", + "local_code": "IN48" + }, + { + "id": "18118", + "ident": "IN49", + "type": "small_airport", + "name": "Pherigo Airport", + "latitude_deg": "39.48551", + "longitude_deg": "-85.80324", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Shelbyville", + "scheduled_service": "no", + "gps_code": "IN49", + "local_code": "IN49" + }, + { + "id": "18119", + "ident": "IN50", + "type": "closed", + "name": "Siefert Airport", + "latitude_deg": "39.4403", + "longitude_deg": "-85.765295", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Shelbyville", + "scheduled_service": "no", + "keywords": "IN50" + }, + { + "id": "18120", + "ident": "IN51", + "type": "small_airport", + "name": "Windy Knoll Airport", + "latitude_deg": "40.13999938964844", + "longitude_deg": "-86.15249633789062", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Sheridan", + "scheduled_service": "no", + "gps_code": "IN51", + "local_code": "IN51" + }, + { + "id": "18121", + "ident": "IN52", + "type": "heliport", + "name": "500 Heliport", + "latitude_deg": "39.782798767089844", + "longitude_deg": "-86.2332992553711", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Speedway", + "scheduled_service": "no", + "gps_code": "IN52", + "local_code": "IN52" + }, + { + "id": "18122", + "ident": "IN53", + "type": "small_airport", + "name": "Miller Airport", + "latitude_deg": "39.29238", + "longitude_deg": "-86.824231", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Spencer", + "scheduled_service": "no", + "gps_code": "IN53", + "local_code": "IN53" + }, + { + "id": "18123", + "ident": "IN54", + "type": "small_airport", + "name": "I & C Field", + "latitude_deg": "41.28369903564453", + "longitude_deg": "-86.46279907226562", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Culver", + "scheduled_service": "no", + "gps_code": "IN54", + "local_code": "IN54" + }, + { + "id": "18124", + "ident": "IN55", + "type": "small_airport", + "name": "Songer Airport", + "latitude_deg": "40.079200744628906", + "longitude_deg": "-87.26110076904297", + "elevation_ft": "652", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Veedersburg", + "scheduled_service": "no", + "gps_code": "IN55", + "local_code": "IN55" + }, + { + "id": "18125", + "ident": "IN56", + "type": "small_airport", + "name": "Carroll's Airpark", + "latitude_deg": "40.12689971923828", + "longitude_deg": "-85.43190002441406", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Muncie", + "scheduled_service": "no", + "gps_code": "IN56", + "local_code": "IN56" + }, + { + "id": "18126", + "ident": "IN57", + "type": "small_airport", + "name": "Shure Airport", + "latitude_deg": "39.26139831542969", + "longitude_deg": "-87.4208984375", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Farmersburg", + "scheduled_service": "no", + "gps_code": "IN57", + "local_code": "IN57" + }, + { + "id": "18127", + "ident": "IN58", + "type": "closed", + "name": "Sealscott Airport", + "latitude_deg": "40.903702", + "longitude_deg": "-84.847504", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Monroeville", + "scheduled_service": "no", + "keywords": "IN58" + }, + { + "id": "18128", + "ident": "IN59", + "type": "seaplane_base", + "name": "Jerry W. Humphrey Seaplane Base", + "latitude_deg": "37.94499969482422", + "longitude_deg": "-87.42449951171875", + "elevation_ft": "342", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Newburgh", + "scheduled_service": "no", + "gps_code": "IN59", + "local_code": "IN59" + }, + { + "id": "18129", + "ident": "IN60", + "type": "small_airport", + "name": "Wilderness Field", + "latitude_deg": "40.017799377441406", + "longitude_deg": "-86.1603012084961", + "elevation_ft": "908", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Westfield", + "scheduled_service": "no", + "gps_code": "IN60", + "local_code": "IN60" + }, + { + "id": "18130", + "ident": "IN61", + "type": "small_airport", + "name": "Flying J Airport", + "latitude_deg": "41.264198303222656", + "longitude_deg": "-87.1343994140625", + "elevation_ft": "653", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Wheatfield", + "scheduled_service": "no", + "gps_code": "IN61", + "local_code": "IN61" + }, + { + "id": "18131", + "ident": "IN62", + "type": "small_airport", + "name": "Tropria Airport", + "latitude_deg": "41.244801", + "longitude_deg": "-85.297501", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Churubusco", + "scheduled_service": "no", + "gps_code": "IN62", + "local_code": "IN62" + }, + { + "id": "18132", + "ident": "IN63", + "type": "closed", + "name": "Horizon Field", + "latitude_deg": "40.366699", + "longitude_deg": "-85.3386", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Eaton", + "scheduled_service": "no", + "gps_code": "IN63", + "local_code": "IN63", + "keywords": "IN63" + }, + { + "id": "18133", + "ident": "IN64", + "type": "small_airport", + "name": "Beck Airport", + "latitude_deg": "39.5609016418457", + "longitude_deg": "-86.2040023803711", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bargersville", + "scheduled_service": "no", + "gps_code": "IN64", + "local_code": "IN64" + }, + { + "id": "18134", + "ident": "IN65", + "type": "small_airport", + "name": "Wolfe Field", + "latitude_deg": "41.69139862060547", + "longitude_deg": "-85.59549713134766", + "elevation_ft": "896", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Shipshewana", + "scheduled_service": "no", + "gps_code": "IN65", + "local_code": "IN65" + }, + { + "id": "18135", + "ident": "IN66", + "type": "heliport", + "name": "Clear Lake Heliport", + "latitude_deg": "41.733299255371094", + "longitude_deg": "-84.85890197753906", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Clear Lake", + "scheduled_service": "no", + "gps_code": "IN66", + "local_code": "IN66" + }, + { + "id": "18136", + "ident": "IN67", + "type": "closed", + "name": "Greener Pastures Airport", + "latitude_deg": "38.937302", + "longitude_deg": "-85.737503", + "elevation_ft": "618", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "North Vernon", + "scheduled_service": "no", + "keywords": "IN67" + }, + { + "id": "18137", + "ident": "IN68", + "type": "closed", + "name": "Stewart Airport", + "latitude_deg": "38.138876", + "longitude_deg": "-86.017628", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Elizabeth", + "scheduled_service": "no", + "keywords": "IN68" + }, + { + "id": "18138", + "ident": "IN69", + "type": "closed", + "name": "Hatfield Airport", + "latitude_deg": "41.665601", + "longitude_deg": "-85.832197", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bristol", + "scheduled_service": "no", + "keywords": "IN69" + }, + { + "id": "18139", + "ident": "IN70", + "type": "small_airport", + "name": "Bodin Airport", + "latitude_deg": "41.63359832763672", + "longitude_deg": "-87.0270004272461", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Chesterton", + "scheduled_service": "no", + "gps_code": "IN70", + "local_code": "IN70" + }, + { + "id": "18140", + "ident": "IN71", + "type": "small_airport", + "name": "Plew Airport", + "latitude_deg": "41.18560028076172", + "longitude_deg": "-85.52159881591797", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Columbia City", + "scheduled_service": "no", + "gps_code": "IN71", + "local_code": "IN71" + }, + { + "id": "18141", + "ident": "IN72", + "type": "small_airport", + "name": "Mayer Airport", + "latitude_deg": "40.7859001159668", + "longitude_deg": "-85.24420166015625", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Union Dale", + "scheduled_service": "no", + "gps_code": "IN72", + "local_code": "IN72" + }, + { + "id": "18142", + "ident": "IN73", + "type": "closed", + "name": "Fleet Field", + "latitude_deg": "41.220945", + "longitude_deg": "-86.383653", + "elevation_ft": "821", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Culver", + "scheduled_service": "no", + "keywords": "IN73" + }, + { + "id": "18143", + "ident": "IN74", + "type": "small_airport", + "name": "H.J.Umbaugh Airport", + "latitude_deg": "41.30699920654297", + "longitude_deg": "-86.4375", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Culver", + "scheduled_service": "no", + "gps_code": "IN74", + "local_code": "IN74" + }, + { + "id": "18144", + "ident": "IN75", + "type": "closed", + "name": "Norwood Heliport", + "latitude_deg": "41.640301", + "longitude_deg": "-86.029404", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Elkhart", + "scheduled_service": "no", + "keywords": "IN75" + }, + { + "id": "18145", + "ident": "IN76", + "type": "small_airport", + "name": "Podell Airport", + "latitude_deg": "41.126399993896484", + "longitude_deg": "-86.69329833984375", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Denham", + "scheduled_service": "no", + "gps_code": "IN76", + "local_code": "IN76" + }, + { + "id": "18146", + "ident": "IN77", + "type": "closed", + "name": "St Joseph Regional Medical Center Heliport", + "latitude_deg": "41.680303", + "longitude_deg": "-86.240799", + "elevation_ft": "704", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "South Bend", + "scheduled_service": "no", + "keywords": "IN77" + }, + { + "id": "18147", + "ident": "IN78", + "type": "heliport", + "name": "Police Heliport", + "latitude_deg": "41.59109878540039", + "longitude_deg": "-87.33619689941406", + "elevation_ft": "591", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Gary", + "scheduled_service": "no", + "gps_code": "IN78", + "local_code": "IN78" + }, + { + "id": "18148", + "ident": "IN79", + "type": "heliport", + "name": "Northwest Family Hospital Heliport", + "latitude_deg": "41.59980010986328", + "longitude_deg": "-87.3488998413086", + "elevation_ft": "598", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Gary", + "scheduled_service": "no", + "gps_code": "IN79", + "local_code": "IN79" + }, + { + "id": "18149", + "ident": "IN80", + "type": "small_airport", + "name": "Roberson Airport", + "latitude_deg": "38.3213996887207", + "longitude_deg": "-86.49079895019531", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "English", + "scheduled_service": "no", + "gps_code": "IN80", + "local_code": "IN80" + }, + { + "id": "18150", + "ident": "IN81", + "type": "small_airport", + "name": "Small Field", + "latitude_deg": "39.75189971923828", + "longitude_deg": "-85.55750274658203", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Carthage", + "scheduled_service": "no", + "gps_code": "IN81", + "local_code": "IN81" + }, + { + "id": "18151", + "ident": "IN82", + "type": "small_airport", + "name": "Foos Field", + "latitude_deg": "41.7495002746582", + "longitude_deg": "-86.08809661865234", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Granger", + "scheduled_service": "no", + "gps_code": "IN82", + "local_code": "IN82" + }, + { + "id": "18152", + "ident": "IN83", + "type": "small_airport", + "name": "Lautzenhiser Airpark", + "latitude_deg": "41.50230026245117", + "longitude_deg": "-84.9301986694336", + "elevation_ft": "928", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "IN83", + "local_code": "IN83" + }, + { + "id": "18153", + "ident": "IN84", + "type": "closed", + "name": "Shamrock Airport", + "latitude_deg": "41.408104", + "longitude_deg": "-86.747202", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hanna", + "scheduled_service": "no", + "keywords": "IN84" + }, + { + "id": "18154", + "ident": "IN85", + "type": "small_airport", + "name": "Bowlin Airport", + "latitude_deg": "40.83729934692383", + "longitude_deg": "-85.48359680175781", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Huntington", + "scheduled_service": "no", + "gps_code": "IN85", + "local_code": "IN85" + }, + { + "id": "18155", + "ident": "IN86", + "type": "small_airport", + "name": "Wilson Airport", + "latitude_deg": "41.28030014038086", + "longitude_deg": "-86.63200378417969", + "elevation_ft": "714", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Knox", + "scheduled_service": "no", + "gps_code": "IN86", + "local_code": "IN86" + }, + { + "id": "18156", + "ident": "IN87", + "type": "small_airport", + "name": "Singleton's Landing Strip", + "latitude_deg": "41.35139846801758", + "longitude_deg": "-86.62640380859375", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Knox", + "scheduled_service": "no", + "gps_code": "IN87", + "local_code": "IN87" + }, + { + "id": "18157", + "ident": "IN88", + "type": "small_airport", + "name": "Sanders Gyroport Airport", + "latitude_deg": "39.514042", + "longitude_deg": "-86.764047", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Cloverdale", + "scheduled_service": "no", + "gps_code": "IN88", + "local_code": "IN88" + }, + { + "id": "18158", + "ident": "IN89", + "type": "closed", + "name": "Ligonier Airport", + "latitude_deg": "41.450102", + "longitude_deg": "-85.605499", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Ligonier", + "scheduled_service": "no", + "keywords": "IN89" + }, + { + "id": "18159", + "ident": "IN90", + "type": "small_airport", + "name": "Wietbrock Airport", + "latitude_deg": "41.25979995727539", + "longitude_deg": "-87.48139953613281", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lowell", + "scheduled_service": "no", + "gps_code": "IN90", + "local_code": "IN90" + }, + { + "id": "18160", + "ident": "IN91", + "type": "small_airport", + "name": "Valhalla Airport", + "latitude_deg": "41.00212", + "longitude_deg": "-84.994268", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Fort Wayne", + "scheduled_service": "no", + "gps_code": "IN91", + "local_code": "IN91" + }, + { + "id": "18161", + "ident": "IN92", + "type": "closed", + "name": "Klein Airport", + "latitude_deg": "38.652802", + "longitude_deg": "-87.563599", + "elevation_ft": "412", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Vincennes", + "scheduled_service": "no", + "keywords": "IN92" + }, + { + "id": "18162", + "ident": "IN93", + "type": "small_airport", + "name": "Hustons Airport", + "latitude_deg": "41.71200180053711", + "longitude_deg": "-86.43280029296875", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "New Carlisle", + "scheduled_service": "no", + "gps_code": "IN93", + "local_code": "IN93" + }, + { + "id": "18163", + "ident": "IN94", + "type": "heliport", + "name": "Dearborn County Hospital Heliport", + "latitude_deg": "39.111698150634766", + "longitude_deg": "-84.88410186767578", + "elevation_ft": "879", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lawrenceburg", + "scheduled_service": "no", + "gps_code": "IN94", + "local_code": "IN94" + }, + { + "id": "18164", + "ident": "IN95", + "type": "closed", + "name": "Long Airport", + "latitude_deg": "41.227501", + "longitude_deg": "-86.790298", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "North Judson", + "scheduled_service": "no", + "keywords": "IN95" + }, + { + "id": "18165", + "ident": "IN96", + "type": "heliport", + "name": "Memorial Hospital Heliport", + "latitude_deg": "40.76359939575195", + "longitude_deg": "-86.36109924316406", + "elevation_ft": "676", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Logansport", + "scheduled_service": "no", + "gps_code": "IN96", + "local_code": "IN96" + }, + { + "id": "18166", + "ident": "IN97", + "type": "heliport", + "name": "Mgt Station 2113 Heliport", + "latitude_deg": "39.01369857788086", + "longitude_deg": "-87.4072036743164", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Paxton", + "scheduled_service": "no", + "gps_code": "IN97", + "local_code": "IN97" + }, + { + "id": "18167", + "ident": "IN98", + "type": "small_airport", + "name": "Farm Strip", + "latitude_deg": "39.683101654052734", + "longitude_deg": "-85.84420013427734", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Finly", + "scheduled_service": "no", + "gps_code": "IN98", + "local_code": "IN98" + }, + { + "id": "18168", + "ident": "IN99", + "type": "small_airport", + "name": "Donica Field", + "latitude_deg": "39.407019", + "longitude_deg": "-86.305697", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Morgantown", + "scheduled_service": "no", + "gps_code": "IN99", + "local_code": "IN99" + }, + { + "id": "311991", + "ident": "INE", + "type": "small_airport", + "name": "Chinde Airport", + "latitude_deg": "-18.59", + "longitude_deg": "36.4489", + "elevation_ft": "22", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-Q", + "municipality": "Chinde", + "scheduled_service": "no", + "iata_code": "INE" + }, + { + "id": "313294", + "ident": "IOK", + "type": "small_airport", + "name": "Iokea Airport", + "latitude_deg": "-8.401", + "longitude_deg": "146.277", + "elevation_ft": "39", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Iokea", + "scheduled_service": "no", + "iata_code": "IOK", + "local_code": "IOK" + }, + { + "id": "313299", + "ident": "IOP", + "type": "small_airport", + "name": "Ioma Airport", + "latitude_deg": "-8.3614", + "longitude_deg": "147.84", + "elevation_ft": "95", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "municipality": "Ioma", + "scheduled_service": "no", + "iata_code": "IOP", + "local_code": "IOMA" + }, + { + "id": "44494", + "ident": "IQ-0001", + "type": "small_airport", + "name": "Al Fathah Air Base", + "latitude_deg": "35.135398864746094", + "longitude_deg": "43.72520065307617", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-TS", + "scheduled_service": "no" + }, + { + "id": "44495", + "ident": "IQ-0002", + "type": "small_airport", + "name": "Al Hayy Airport", + "latitude_deg": "32.125633239746094", + "longitude_deg": "45.7816162109375", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-WA", + "scheduled_service": "no" + }, + { + "id": "44496", + "ident": "IQ-0003", + "type": "small_airport", + "name": "Al Iskandariyah Airport", + "latitude_deg": "32.969193", + "longitude_deg": "44.271275", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-BB", + "municipality": "Al Iskandariyah", + "scheduled_service": "no", + "gps_code": "ORAI" + }, + { + "id": "44497", + "ident": "IQ-0004", + "type": "small_airport", + "name": "Al Mufrash Airport", + "latitude_deg": "30.226498", + "longitude_deg": "47.476536", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-BA", + "municipality": "Ar Rumaylah", + "scheduled_service": "no", + "keywords": "ORAZ" + }, + { + "id": "44498", + "ident": "IQ-0005", + "type": "small_airport", + "name": "Al Muhammadi Airport", + "latitude_deg": "33.44088", + "longitude_deg": "42.913307", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "municipality": "Abu Teban", + "scheduled_service": "no" + }, + { + "id": "44499", + "ident": "IQ-0006", + "type": "small_airport", + "name": "Amara New Air Base", + "latitude_deg": "31.81797218322754", + "longitude_deg": "47.07957077026367", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-MA", + "scheduled_service": "no" + }, + { + "id": "44500", + "ident": "IQ-0007", + "type": "small_airport", + "name": "An Numaniyah Air Base", + "latitude_deg": "32.504356", + "longitude_deg": "45.33306", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-WA", + "municipality": "An Numaniyah", + "scheduled_service": "no", + "gps_code": "ORAN" + }, + { + "id": "44501", + "ident": "IQ-0008", + "type": "closed", + "name": "Ar Rumaylah Southwest Air Base", + "latitude_deg": "30.354156", + "longitude_deg": "47.10854", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-BA", + "municipality": "Ar Rumaylah", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ar_Rumaylah_Southwest_Air_Base" + }, + { + "id": "44502", + "ident": "IQ-0009", + "type": "small_airport", + "name": "Ar Rutbah Highway Strip", + "latitude_deg": "33.059032", + "longitude_deg": "40.396641", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "scheduled_service": "no" + }, + { + "id": "44503", + "ident": "IQ-0010", + "type": "small_airport", + "name": "Ar Rutbah South Airport", + "latitude_deg": "32.831565856933594", + "longitude_deg": "40.33956527709961", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "scheduled_service": "no" + }, + { + "id": "44504", + "ident": "IQ-0011", + "type": "small_airport", + "name": "As Salman North Air Base", + "latitude_deg": "30.646995544433594", + "longitude_deg": "44.56970977783203", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-MU", + "scheduled_service": "no" + }, + { + "id": "44505", + "ident": "IQ-0012", + "type": "closed", + "name": "Baqubah Airport", + "latitude_deg": "33.794022", + "longitude_deg": "44.600473", + "elevation_ft": "157", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-DI", + "municipality": "Baqubah", + "scheduled_service": "no", + "keywords": "Camp Boom, XQV" + }, + { + "id": "44506", + "ident": "IQ-0013", + "type": "small_airport", + "name": "Bashiqah Airport", + "latitude_deg": "36.49066162109375", + "longitude_deg": "43.34629821777344", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-NI", + "scheduled_service": "no" + }, + { + "id": "44507", + "ident": "IQ-0014", + "type": "closed", + "name": "Basra Maqal Airport", + "latitude_deg": "30.568192", + "longitude_deg": "47.772053", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-BA", + "municipality": "Basra", + "scheduled_service": "no" + }, + { + "id": "44508", + "ident": "IQ-0015", + "type": "small_airport", + "name": "Ghalaysan New Air Base", + "latitude_deg": "30.913951873779297", + "longitude_deg": "43.67546081542969", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-NA", + "scheduled_service": "no" + }, + { + "id": "44509", + "ident": "IQ-0016", + "type": "medium_airport", + "name": "H1 New Air Base", + "latitude_deg": "33.816262", + "longitude_deg": "41.436712", + "elevation_ft": "1353", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "municipality": "Anah", + "scheduled_service": "no" + }, + { + "id": "44510", + "ident": "IQ-0017", + "type": "medium_airport", + "name": "H2 Air Base", + "latitude_deg": "33.36372375488281", + "longitude_deg": "40.5880241394043", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "scheduled_service": "no" + }, + { + "id": "44511", + "ident": "IQ-0018", + "type": "medium_airport", + "name": "H3 Air Base", + "latitude_deg": "32.92938232421875", + "longitude_deg": "39.74510192871094", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "scheduled_service": "no" + }, + { + "id": "44512", + "ident": "IQ-0019", + "type": "small_airport", + "name": "H3 Highway Strip", + "latitude_deg": "32.848533630371094", + "longitude_deg": "39.31089401245117", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "scheduled_service": "no" + }, + { + "id": "44513", + "ident": "IQ-0020", + "type": "medium_airport", + "name": "H3 Northwest AFB", + "latitude_deg": "33.07456970214844", + "longitude_deg": "39.59961700439453", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "scheduled_service": "no" + }, + { + "id": "44514", + "ident": "IQ-0021", + "type": "medium_airport", + "name": "H3 Southwest Air Base", + "latitude_deg": "32.74492645263672", + "longitude_deg": "39.59955596923828", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "scheduled_service": "no" + }, + { + "id": "44515", + "ident": "IQ-0022", + "type": "small_airport", + "name": "Habbaniyah Airport", + "latitude_deg": "33.37422561645508", + "longitude_deg": "43.564395904541016", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "scheduled_service": "no" + }, + { + "id": "44516", + "ident": "IQ-0023", + "type": "small_airport", + "name": "Injanah Air Field", + "latitude_deg": "34.44561767578125", + "longitude_deg": "44.595306396484375", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-DI", + "scheduled_service": "no" + }, + { + "id": "44517", + "ident": "IQ-0024", + "type": "medium_airport", + "name": "Jalibah Southeast Air Base", + "latitude_deg": "30.546518", + "longitude_deg": "46.602779", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-BA", + "municipality": "Jalibah", + "scheduled_service": "no", + "gps_code": "ORJA" + }, + { + "id": "44518", + "ident": "IQ-0025", + "type": "small_airport", + "name": "Juwarin Highway Strip", + "latitude_deg": "30.689334869384766", + "longitude_deg": "46.424102783203125", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-MU", + "scheduled_service": "no" + }, + { + "id": "44519", + "ident": "IQ-0026", + "type": "small_airport", + "name": "K1 Air Base", + "latitude_deg": "35.51319122314453", + "longitude_deg": "44.283626556396484", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-TS", + "scheduled_service": "no" + }, + { + "id": "44520", + "ident": "IQ-0027", + "type": "small_airport", + "name": "K2 Air Base", + "latitude_deg": "34.920650482177734", + "longitude_deg": "43.38473129272461", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-SD", + "scheduled_service": "no" + }, + { + "id": "44521", + "ident": "IQ-0028", + "type": "small_airport", + "name": "Karbala Northeast Airport", + "latitude_deg": "32.755466", + "longitude_deg": "44.127552", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-BB", + "municipality": "Karbala", + "scheduled_service": "no" + }, + { + "id": "44522", + "ident": "IQ-0029", + "type": "small_airport", + "name": "Khan Bani Saad Airport", + "latitude_deg": "33.591599", + "longitude_deg": "44.594937", + "elevation_ft": "150", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-DI", + "municipality": "Khan Bani Saad", + "scheduled_service": "no" + }, + { + "id": "44524", + "ident": "IQ-0030", + "type": "medium_airport", + "name": "Kut Al Hayy East Air Base", + "latitude_deg": "32.11684036254883", + "longitude_deg": "46.382240295410156", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-WA", + "scheduled_service": "no" + }, + { + "id": "44525", + "ident": "IQ-0031", + "type": "small_airport", + "name": "Markab Northeast Airport", + "latitude_deg": "33.252525329589844", + "longitude_deg": "43.59450149536133", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "scheduled_service": "no" + }, + { + "id": "44526", + "ident": "IQ-0032", + "type": "small_airport", + "name": "Mudaysis Air Base", + "latitude_deg": "32.4106712341", + "longitude_deg": "41.9474945068", + "elevation_ft": "1210", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "scheduled_service": "no", + "gps_code": "KQMG" + }, + { + "id": "341688", + "ident": "IQ-0033", + "type": "heliport", + "name": "Transportation Ministry Helipad", + "latitude_deg": "33.346906", + "longitude_deg": "44.443063", + "elevation_ft": "115", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-BG", + "municipality": "Baghdad", + "scheduled_service": "no" + }, + { + "id": "44528", + "ident": "IQ-0034", + "type": "medium_airport", + "name": "Qalat Salih Air Base", + "latitude_deg": "31.456581115722656", + "longitude_deg": "47.289791107177734", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-MA", + "scheduled_service": "no" + }, + { + "id": "44529", + "ident": "IQ-0035", + "type": "small_airport", + "name": "Qalat Sikar Air Base", + "latitude_deg": "31.83498191833496", + "longitude_deg": "46.304840087890625", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-DQ", + "scheduled_service": "no" + }, + { + "id": "44530", + "ident": "IQ-0036", + "type": "small_airport", + "name": "Qasr Tall Mihl Airport", + "latitude_deg": "33.306409", + "longitude_deg": "44.241753", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-BG", + "municipality": "Baghdad", + "scheduled_service": "no", + "gps_code": "ORQT" + }, + { + "id": "44531", + "ident": "IQ-0037", + "type": "small_airport", + "name": "Qayyarah South Airport", + "latitude_deg": "35.75707244873047", + "longitude_deg": "43.26463317871094", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-NI", + "scheduled_service": "no" + }, + { + "id": "44532", + "ident": "IQ-0038", + "type": "small_airport", + "name": "Radif Al Khafi Highway Strip", + "latitude_deg": "31.93083953857422", + "longitude_deg": "42.140594482421875", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "scheduled_service": "no" + }, + { + "id": "44533", + "ident": "IQ-0039", + "type": "medium_airport", + "name": "Rasheed Air Base", + "latitude_deg": "33.279327", + "longitude_deg": "44.493706", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-BG", + "municipality": "Baghdad", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rasheed_Air_Base", + "keywords": "RAF Hinaidi, Alsalam Air Base" + }, + { + "id": "44534", + "ident": "IQ-0040", + "type": "medium_airport", + "name": "Ruwayshid Air Base", + "latitude_deg": "32.40611267089844", + "longitude_deg": "39.12361145019531", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "scheduled_service": "no" + }, + { + "id": "44535", + "ident": "IQ-0041", + "type": "small_airport", + "name": "Safwan Airport", + "latitude_deg": "30.135675", + "longitude_deg": "47.649387", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-BA", + "municipality": "Safwan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Safwan_Air_Base", + "keywords": "OR1M" + }, + { + "id": "44536", + "ident": "IQ-0042", + "type": "medium_airport", + "name": "Sahl Sinjar Air Base", + "latitude_deg": "35.8592643737793", + "longitude_deg": "42.14213943481445", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-NI", + "scheduled_service": "no" + }, + { + "id": "44537", + "ident": "IQ-0043", + "type": "small_airport", + "name": "Salman Pak East Air Field", + "latitude_deg": "33.16069030761719", + "longitude_deg": "44.77409362792969", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-DI", + "scheduled_service": "no" + }, + { + "id": "44538", + "ident": "IQ-0044", + "type": "medium_airport", + "name": "Salum Air Base", + "latitude_deg": "34.1640739440918", + "longitude_deg": "44.7469482421875", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-DI", + "scheduled_service": "no" + }, + { + "id": "44539", + "ident": "IQ-0045", + "type": "medium_airport", + "name": "Samarra East Air Base / Dhuluiya Airport", + "latitude_deg": "34.16554", + "longitude_deg": "44.264304", + "elevation_ft": "203", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-SD", + "municipality": "Dhuluiya", + "scheduled_service": "no" + }, + { + "id": "44540", + "ident": "IQ-0046", + "type": "small_airport", + "name": "Samarra West Air Field", + "latitude_deg": "34.306312561035156", + "longitude_deg": "43.25982666015625", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-SD", + "scheduled_service": "no" + }, + { + "id": "44541", + "ident": "IQ-0047", + "type": "small_airport", + "name": "Shu'aiba Airport", + "latitude_deg": "30.426825", + "longitude_deg": "47.642235", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-BA", + "municipality": "Shu'aiba", + "scheduled_service": "no" + }, + { + "id": "44542", + "ident": "IQ-0048", + "type": "small_airport", + "name": "Shayka Mazhar Air Base", + "latitude_deg": "32.929039001464844", + "longitude_deg": "44.629791259765625", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-WA", + "scheduled_service": "no" + }, + { + "id": "44543", + "ident": "IQ-0049", + "type": "small_airport", + "name": "Shaykh Hantush Highway Strip", + "latitude_deg": "32.29306411743164", + "longitude_deg": "44.88743209838867", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-BB", + "scheduled_service": "no" + }, + { + "id": "44544", + "ident": "IQ-0050", + "type": "small_airport", + "name": "Subakhu Air Field", + "latitude_deg": "33.934475", + "longitude_deg": "45.101368", + "elevation_ft": "171", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-DI", + "municipality": "Muqdadiyah", + "scheduled_service": "no" + }, + { + "id": "44545", + "ident": "IQ-0051", + "type": "medium_airport", + "name": "Tal Ashtah New Air Base", + "latitude_deg": "35.139721", + "longitude_deg": "44.133888", + "elevation_ft": "611", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-TS", + "scheduled_service": "no" + }, + { + "id": "44546", + "ident": "IQ-0052", + "type": "small_airport", + "name": "Tikrit East Airport", + "latitude_deg": "34.608257", + "longitude_deg": "43.775711", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-SD", + "municipality": "Tikrit", + "scheduled_service": "no", + "gps_code": "ORTK" + }, + { + "id": "44547", + "ident": "IQ-0053", + "type": "small_airport", + "name": "Tikrit South Airport", + "latitude_deg": "34.534641", + "longitude_deg": "43.677574", + "elevation_ft": "356", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-SD", + "municipality": "Tikrit", + "scheduled_service": "no", + "gps_code": "ORTS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tikrit_South_Air_Base", + "keywords": "FOB Packhorse, FOB Remagen" + }, + { + "id": "44548", + "ident": "IQ-0054", + "type": "medium_airport", + "name": "Tuz Khurmatu Air Base", + "latitude_deg": "34.93722152709961", + "longitude_deg": "44.4827766418457", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-SD", + "scheduled_service": "no" + }, + { + "id": "44549", + "ident": "IQ-0055", + "type": "medium_airport", + "name": "Wadi Al Khirr New Air Base", + "latitude_deg": "31.417402267456055", + "longitude_deg": "43.1823616027832", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-NA", + "scheduled_service": "no" + }, + { + "id": "341689", + "ident": "IQ-0056", + "type": "heliport", + "name": "Adnan Khair Allah Hospital Helipad", + "latitude_deg": "33.343871", + "longitude_deg": "44.378074", + "elevation_ft": "128", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-BG", + "municipality": "Baghdad", + "scheduled_service": "no" + }, + { + "id": "341965", + "ident": "IQ-0057", + "type": "heliport", + "name": "Al-Faw Palace Heliport", + "latitude_deg": "33.2638", + "longitude_deg": "44.265", + "elevation_ft": "121", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-BG", + "municipality": "Baghdad", + "scheduled_service": "no" + }, + { + "id": "345156", + "ident": "IQ-0058", + "type": "heliport", + "name": "Tikrit Heliport", + "latitude_deg": "34.594751", + "longitude_deg": "43.691355", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-SD", + "municipality": "Tikrit", + "scheduled_service": "no" + }, + { + "id": "349451", + "ident": "IQ-0059", + "type": "closed", + "name": "H1 Old Air Base", + "latitude_deg": "33.79491", + "longitude_deg": "41.45194", + "elevation_ft": "1352", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "municipality": "Anah", + "scheduled_service": "no" + }, + { + "id": "349452", + "ident": "IQ-0060", + "type": "closed", + "name": "T1 Airport", + "latitude_deg": "34.23663", + "longitude_deg": "41.32865", + "elevation_ft": "1025", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "municipality": "Al-Qa'im", + "scheduled_service": "no" + }, + { + "id": "349456", + "ident": "IQ-0061", + "type": "heliport", + "name": "Rawah Heliport", + "latitude_deg": "34.46139", + "longitude_deg": "41.91218", + "elevation_ft": "533", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "municipality": "Rawah", + "scheduled_service": "no" + }, + { + "id": "351576", + "ident": "IQ-0062", + "type": "heliport", + "name": "Umm Qasr Naval Base Heliport", + "latitude_deg": "30.01682", + "longitude_deg": "47.94933", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-BA", + "municipality": "Umm Qasr", + "scheduled_service": "no" + }, + { + "id": "352476", + "ident": "IQ-0063", + "type": "heliport", + "name": "Camp Baharia Army Heliport", + "latitude_deg": "33.33409", + "longitude_deg": "43.84786", + "elevation_ft": "178", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "municipality": "Fallujah", + "scheduled_service": "no" + }, + { + "id": "352477", + "ident": "IQ-0064", + "type": "heliport", + "name": "Camp Baharia South Heliport", + "latitude_deg": "33.33267", + "longitude_deg": "43.84765", + "elevation_ft": "151", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "municipality": "Fallujah", + "scheduled_service": "no" + }, + { + "id": "355291", + "ident": "IQ-0065", + "type": "small_airport", + "name": "Arbat Airport", + "latitude_deg": "35.399367", + "longitude_deg": "45.634088", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-SW", + "municipality": "Khrabeh", + "scheduled_service": "no" + }, + { + "id": "42528", + "ident": "IR-0001", + "type": "small_airport", + "name": "Khaneh Airport", + "latitude_deg": "36.733341217", + "longitude_deg": "45.1500015259", + "elevation_ft": "4804", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-04", + "municipality": "Khaneh", + "scheduled_service": "no", + "gps_code": "OITH", + "iata_code": "KHA" + }, + { + "id": "43227", + "ident": "IR-0002", + "type": "small_airport", + "name": "Ahmadi Military Air Field", + "latitude_deg": "29.099199", + "longitude_deg": "51.035301", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-18", + "municipality": "Ahmadi", + "scheduled_service": "no" + }, + { + "id": "43228", + "ident": "IR-0003", + "type": "small_airport", + "name": "Darrahi Military Air Field", + "latitude_deg": "29.375799", + "longitude_deg": "51.067501", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-18", + "municipality": "Ab Pakhsh", + "scheduled_service": "no" + }, + { + "id": "44966", + "ident": "IR-0004", + "type": "small_airport", + "name": "Shahrokhi Highway Strip", + "latitude_deg": "35.234192", + "longitude_deg": "48.601653", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-13", + "municipality": "Hesar-e Qujeh Baghi", + "scheduled_service": "no" + }, + { + "id": "44967", + "ident": "IR-0005", + "type": "small_airport", + "name": "Shahid Nejad Rezaei Highway Strip", + "latitude_deg": "34.070489", + "longitude_deg": "46.597095", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-05", + "municipality": "Eslamabad-e-Gharb", + "scheduled_service": "no", + "keywords": "Shahabad Highway Strip" + }, + { + "id": "44968", + "ident": "IR-0006", + "type": "closed", + "name": "Andimeshk-Karkhe Dam Highway Strip", + "latitude_deg": "32.402755", + "longitude_deg": "48.181872", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-06", + "municipality": "Ghods", + "scheduled_service": "no", + "keywords": "باند قدیمی فرودگاه اندیمشک" + }, + { + "id": "44969", + "ident": "IR-0007", + "type": "small_airport", + "name": "Shadegan Airport", + "latitude_deg": "30.664429", + "longitude_deg": "48.644489", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-06", + "municipality": "Shadegan", + "scheduled_service": "no", + "keywords": "Shadgan" + }, + { + "id": "44972", + "ident": "IR-0008", + "type": "small_airport", + "name": "Goreh Airport", + "latitude_deg": "29.907236", + "longitude_deg": "50.427847", + "elevation_ft": "121", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-18", + "municipality": "Goreh", + "scheduled_service": "no" + }, + { + "id": "44973", + "ident": "IR-0009", + "type": "small_airport", + "name": "Behbehan Northwest Airport", + "latitude_deg": "30.731452", + "longitude_deg": "50.114114", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-06", + "municipality": "Southern Qalind Village", + "scheduled_service": "no" + }, + { + "id": "28487", + "ident": "IR-001", + "type": "small_airport", + "name": "Vayqan Air Base", + "latitude_deg": "38.071998596191406", + "longitude_deg": "45.72359848022461", + "elevation_ft": "4200", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-03", + "municipality": "Shabestar", + "scheduled_service": "no" + }, + { + "id": "44974", + "ident": "IR-0010", + "type": "small_airport", + "name": "Esfahan East Airport", + "latitude_deg": "32.582692", + "longitude_deg": "52.002218", + "elevation_ft": "4997", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-10", + "municipality": "Sejzi", + "scheduled_service": "no" + }, + { + "id": "44975", + "ident": "IR-0011", + "type": "small_airport", + "name": "Mansurabad North Airport", + "latitude_deg": "30.0358296188", + "longitude_deg": "52.8002715111", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-07", + "scheduled_service": "no" + }, + { + "id": "44976", + "ident": "IR-0012", + "type": "small_airport", + "name": "Tehran West Airport", + "latitude_deg": "35.7419667495", + "longitude_deg": "51.229226589199996", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "scheduled_service": "no" + }, + { + "id": "44977", + "ident": "IR-0013", + "type": "small_airport", + "name": "Sarvestan Airport", + "latitude_deg": "29.234994", + "longitude_deg": "53.128552", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-07", + "municipality": "Sarvestan", + "scheduled_service": "no" + }, + { + "id": "46542", + "ident": "IR-0014", + "type": "small_airport", + "name": "Ella North Airport", + "latitude_deg": "31.92180801", + "longitude_deg": "48.87751713", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-06", + "municipality": "Langar", + "scheduled_service": "no" + }, + { + "id": "308231", + "ident": "IR-0015", + "type": "small_airport", + "name": "Khar Rud Airport", + "latitude_deg": "35.943639", + "longitude_deg": "50.082056", + "elevation_ft": "3858", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-26", + "municipality": "Paypol-e-Vosta", + "scheduled_service": "no" + }, + { + "id": "308232", + "ident": "IR-0016", + "type": "small_airport", + "name": "Khāsh Airport", + "latitude_deg": "28.239227", + "longitude_deg": "61.180453", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-11", + "municipality": "Khash", + "scheduled_service": "no", + "local_code": "OIZK" + }, + { + "id": "312775", + "ident": "IR-0017", + "type": "closed", + "name": "Khour Airport", + "latitude_deg": "32.861727", + "longitude_deg": "58.424928", + "elevation_ft": "3588", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-29", + "municipality": "Birjand", + "scheduled_service": "no" + }, + { + "id": "340039", + "ident": "IR-0018", + "type": "small_airport", + "name": "Khomajin Airport", + "latitude_deg": "35.053018", + "longitude_deg": "49.18922", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-13", + "municipality": "Khomajin", + "scheduled_service": "no" + }, + { + "id": "340188", + "ident": "IR-0019", + "type": "small_airport", + "name": "Konarak Air Base", + "latitude_deg": "25.33187", + "longitude_deg": "60.35659", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-11", + "municipality": "Konarak", + "scheduled_service": "no" + }, + { + "id": "340189", + "ident": "IR-0020", + "type": "small_airport", + "name": "Gaz Airport", + "latitude_deg": "26.3901", + "longitude_deg": "57.13363", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Gaz", + "scheduled_service": "no" + }, + { + "id": "340190", + "ident": "IR-0021", + "type": "small_airport", + "name": "Hendorabi Airport", + "latitude_deg": "26.68653", + "longitude_deg": "53.60539", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Hendorabi", + "scheduled_service": "no" + }, + { + "id": "340191", + "ident": "IR-0022", + "type": "small_airport", + "name": "Bahregan Air Base", + "latitude_deg": "28.90889", + "longitude_deg": "50.85616", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-18", + "municipality": "Bushehr", + "scheduled_service": "no" + }, + { + "id": "340405", + "ident": "IR-0023", + "type": "small_airport", + "name": "Sepehr Airport", + "latitude_deg": "35.748152", + "longitude_deg": "51.602685", + "elevation_ft": "5217", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Tehran", + "scheduled_service": "no" + }, + { + "id": "340586", + "ident": "IR-0024", + "type": "heliport", + "name": "Bampour Heliport", + "latitude_deg": "27.200099", + "longitude_deg": "60.464098", + "elevation_ft": "1703", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-11", + "municipality": "Bampour", + "scheduled_service": "no" + }, + { + "id": "340587", + "ident": "IR-0025", + "type": "closed", + "name": "New Chabahar International Airport (under construction)", + "latitude_deg": "25.386937", + "longitude_deg": "60.777814", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-11", + "municipality": "Chabahar", + "scheduled_service": "no" + }, + { + "id": "341668", + "ident": "IR-0026", + "type": "heliport", + "name": "Farsi Island Heliport", + "latitude_deg": "27.992575", + "longitude_deg": "50.172131", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-18", + "municipality": "Farsi Island", + "scheduled_service": "no" + }, + { + "id": "341821", + "ident": "IR-0027", + "type": "heliport", + "name": "Ahvaz Air Defense Base heliport", + "latitude_deg": "31.375906", + "longitude_deg": "48.650704", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-06", + "municipality": "Ahvaz", + "scheduled_service": "no" + }, + { + "id": "341822", + "ident": "IR-0028", + "type": "heliport", + "name": "Camp Andimeshk West Heliport", + "latitude_deg": "32.413772", + "longitude_deg": "48.166992", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-06", + "municipality": "Ghods", + "scheduled_service": "no" + }, + { + "id": "341823", + "ident": "IR-0029", + "type": "heliport", + "name": "Camp Andimeshk East Heliport", + "latitude_deg": "32.416335", + "longitude_deg": "48.17769", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-06", + "municipality": "Ghods", + "scheduled_service": "no" + }, + { + "id": "342244", + "ident": "IR-0030", + "type": "small_airport", + "name": "Old Neyshabur Airport", + "latitude_deg": "36.09398", + "longitude_deg": "58.71059", + "elevation_ft": "3652", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-09", + "municipality": "Fath Abad", + "scheduled_service": "no" + }, + { + "id": "342245", + "ident": "IR-0031", + "type": "small_airport", + "name": "Neyshabur Gliderport", + "latitude_deg": "36.24626", + "longitude_deg": "58.9049", + "elevation_ft": "4560", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-09", + "municipality": "Neyshabur", + "scheduled_service": "no" + }, + { + "id": "342246", + "ident": "IR-0032", + "type": "small_airport", + "name": "Kashmar Ultralight Airport", + "latitude_deg": "35.26288", + "longitude_deg": "58.51793", + "elevation_ft": "3760", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-09", + "municipality": "Kashmar", + "scheduled_service": "no" + }, + { + "id": "342840", + "ident": "IR-0033", + "type": "closed", + "name": "Parsian Airport", + "latitude_deg": "27.22208", + "longitude_deg": "53.02638", + "elevation_ft": "174", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Parsian", + "scheduled_service": "no" + }, + { + "id": "343527", + "ident": "IR-0034", + "type": "heliport", + "name": "Amol Heliport", + "latitude_deg": "36.45814", + "longitude_deg": "52.35132", + "elevation_ft": "361", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-02", + "municipality": "Amol", + "scheduled_service": "no" + }, + { + "id": "349457", + "ident": "IR-0035", + "type": "small_airport", + "name": "Filestan Airport", + "latitude_deg": "35.43327", + "longitude_deg": "51.64057", + "elevation_ft": "3241", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Filestan", + "scheduled_service": "no" + }, + { + "id": "349458", + "ident": "IR-0036", + "type": "small_airport", + "name": "Fath Airport", + "latitude_deg": "35.7154", + "longitude_deg": "50.93407", + "elevation_ft": "3947", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-30", + "municipality": "Fardis", + "scheduled_service": "no" + }, + { + "id": "349459", + "ident": "IR-0037", + "type": "heliport", + "name": "Sonqor Heliport", + "latitude_deg": "34.78199", + "longitude_deg": "47.58784", + "elevation_ft": "5620", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-05", + "municipality": "Sonqor", + "scheduled_service": "no" + }, + { + "id": "349460", + "ident": "IR-0038", + "type": "small_airport", + "name": "Mirmiro Agricultural Airport", + "latitude_deg": "34.56826", + "longitude_deg": "45.82255", + "elevation_ft": "1752", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-05", + "municipality": "Mirmiro", + "scheduled_service": "no" + }, + { + "id": "350784", + "ident": "IR-0039", + "type": "small_airport", + "name": "Gonbad Kavus / Haji Balkan Airport", + "latitude_deg": "37.20101", + "longitude_deg": "55.26871", + "elevation_ft": "220", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-27", + "municipality": "Haji Balkan", + "scheduled_service": "no" + }, + { + "id": "351116", + "ident": "IR-0040", + "type": "heliport", + "name": "Mianeh Emergency Heliport", + "latitude_deg": "37.4417", + "longitude_deg": "47.71147", + "elevation_ft": "3747", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-03", + "municipality": "Mianeh", + "scheduled_service": "no" + }, + { + "id": "351117", + "ident": "IR-0041", + "type": "small_airport", + "name": "Khorramdarreh Airport", + "latitude_deg": "36.24192", + "longitude_deg": "49.22497", + "elevation_ft": "5449", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-19", + "municipality": "Khorramdarreh", + "scheduled_service": "no" + }, + { + "id": "351118", + "ident": "IR-0042", + "type": "small_airport", + "name": "Esfarvarin Airport", + "latitude_deg": "35.95323", + "longitude_deg": "49.59599", + "elevation_ft": "4321", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-26", + "municipality": "Nowdehak", + "scheduled_service": "no" + }, + { + "id": "351119", + "ident": "IR-0043", + "type": "small_airport", + "name": "Abhar Flight School Airport", + "latitude_deg": "36.13005", + "longitude_deg": "49.19908", + "elevation_ft": "5223", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-19", + "municipality": "Abhar", + "scheduled_service": "no" + }, + { + "id": "351121", + "ident": "IR-0044", + "type": "heliport", + "name": "Abhar Heliport", + "latitude_deg": "36.13321", + "longitude_deg": "49.1988", + "elevation_ft": "5197", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-19", + "municipality": "Abhar", + "scheduled_service": "no" + }, + { + "id": "351122", + "ident": "IR-0045", + "type": "heliport", + "name": "South Ghazal Heliport", + "latitude_deg": "36.25167", + "longitude_deg": "49.20246", + "elevation_ft": "5456", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-19", + "municipality": "Khorramdarreh", + "scheduled_service": "no" + }, + { + "id": "351123", + "ident": "IR-0046", + "type": "heliport", + "name": "Qazvin Provincial Hospital Heliport", + "latitude_deg": "36.3242", + "longitude_deg": "49.99643", + "elevation_ft": "4528", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-26", + "municipality": "Qazvin", + "scheduled_service": "no" + }, + { + "id": "351124", + "ident": "IR-0047", + "type": "small_airport", + "name": "Aradan Airport", + "latitude_deg": "35.23912", + "longitude_deg": "52.50806", + "elevation_ft": "2844", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-20", + "municipality": "Aradan", + "scheduled_service": "no" + }, + { + "id": "351126", + "ident": "IR-0048", + "type": "heliport", + "name": "Third Shaban Hospital Heliport", + "latitude_deg": "35.69557", + "longitude_deg": "52.03871", + "elevation_ft": "6388", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Damavand", + "scheduled_service": "no" + }, + { + "id": "351127", + "ident": "IR-0049", + "type": "heliport", + "name": "Shahid Sattari Hospital Heliport", + "latitude_deg": "35.44636", + "longitude_deg": "51.56062", + "elevation_ft": "3176", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Qarchak", + "scheduled_service": "no" + }, + { + "id": "351199", + "ident": "IR-0050", + "type": "small_airport", + "name": "Namakabrud Airport", + "latitude_deg": "36.68704", + "longitude_deg": "51.3089", + "elevation_ft": "-59", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-02", + "municipality": "Namakabrud", + "scheduled_service": "no", + "keywords": "Namakabroud, Shahrak-e Namak Abrud" + }, + { + "id": "351200", + "ident": "IR-0051", + "type": "small_airport", + "name": "Zibakenar Airport", + "latitude_deg": "37.45042", + "longitude_deg": "49.88422", + "elevation_ft": "-84", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-01", + "municipality": "Zibakenar", + "scheduled_service": "no", + "keywords": "Aliabad-e Ziba Kenar" + }, + { + "id": "351560", + "ident": "IR-0052", + "type": "heliport", + "name": "Gabd-Kumb Border Heliport", + "latitude_deg": "25.38261", + "longitude_deg": "61.65259", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-11", + "municipality": "Tamp Kuh", + "scheduled_service": "no" + }, + { + "id": "351561", + "ident": "IR-0053", + "type": "heliport", + "name": "Pasabandar Heliport", + "latitude_deg": "25.06605", + "longitude_deg": "61.40658", + "elevation_ft": "82", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-11", + "municipality": "Pasabandar", + "scheduled_service": "no" + }, + { + "id": "351562", + "ident": "IR-0054", + "type": "heliport", + "name": "Chabahar Ramin Beach Police Heliport", + "latitude_deg": "25.27305", + "longitude_deg": "60.74962", + "elevation_ft": "82", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-11", + "municipality": "Chabahar", + "scheduled_service": "no" + }, + { + "id": "351563", + "ident": "IR-0055", + "type": "heliport", + "name": "Konarak Naval Heliport", + "latitude_deg": "25.29913", + "longitude_deg": "60.4376", + "elevation_ft": "66", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-11", + "municipality": "Konarak", + "scheduled_service": "no" + }, + { + "id": "351569", + "ident": "IR-0056", + "type": "heliport", + "name": "Hazrat Abolfazl Hospital Heliport", + "latitude_deg": "27.11536", + "longitude_deg": "57.06621", + "elevation_ft": "75", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Minab", + "scheduled_service": "no" + }, + { + "id": "351570", + "ident": "IR-0057", + "type": "small_airport", + "name": "Qeshm Blue Sky Tourism Airport", + "latitude_deg": "26.93232", + "longitude_deg": "56.24459", + "elevation_ft": "125", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Qeshm", + "scheduled_service": "no" + }, + { + "id": "351571", + "ident": "IR-0058", + "type": "heliport", + "name": "Shohada Hospital Heliport", + "latitude_deg": "26.58171", + "longitude_deg": "54.9134", + "elevation_ft": "46", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Bandar Lengeh", + "scheduled_service": "no" + }, + { + "id": "351572", + "ident": "IR-0059", + "type": "small_airport", + "name": "Konartakhteh Airport", + "latitude_deg": "29.55221", + "longitude_deg": "51.39436", + "elevation_ft": "1644", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-07", + "municipality": "Konartakhteh", + "scheduled_service": "no" + }, + { + "id": "351573", + "ident": "IR-0060", + "type": "heliport", + "name": "Khark Oil Industry Hospital Heliport", + "latitude_deg": "29.25446", + "longitude_deg": "50.32023", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-18", + "municipality": "Khark", + "scheduled_service": "no" + }, + { + "id": "351574", + "ident": "IR-0061", + "type": "heliport", + "name": "Amir Al Momenin Hospital Heliport", + "latitude_deg": "29.59029", + "longitude_deg": "50.5584", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-18", + "municipality": "Bandar Ganaveh", + "scheduled_service": "no" + }, + { + "id": "351575", + "ident": "IR-0062", + "type": "heliport", + "name": "Hazrat Zeinab Hospital Heliport", + "latitude_deg": "30.00612", + "longitude_deg": "48.52599", + "elevation_ft": "1", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-06", + "municipality": "Abadan", + "scheduled_service": "no" + }, + { + "id": "351578", + "ident": "IR-0063", + "type": "heliport", + "name": "Qaem Hospital Heliport", + "latitude_deg": "28.83819", + "longitude_deg": "52.58915", + "elevation_ft": "4406", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-07", + "municipality": "Firuzabad", + "scheduled_service": "no" + }, + { + "id": "351579", + "ident": "IR-0064", + "type": "small_airport", + "name": "Karzin Airport", + "latitude_deg": "28.4315", + "longitude_deg": "53.0847", + "elevation_ft": "2287", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-07", + "municipality": "Karzin", + "scheduled_service": "no" + }, + { + "id": "351587", + "ident": "IR-0065", + "type": "heliport", + "name": "Shahid Moarebi Zadeh Hospital Heliport", + "latitude_deg": "30.66143", + "longitude_deg": "48.65149", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-06", + "municipality": "Shadegan", + "scheduled_service": "no" + }, + { + "id": "351588", + "ident": "IR-0066", + "type": "heliport", + "name": "Behbahan Valiasr Hospital Heliport", + "latitude_deg": "30.61104", + "longitude_deg": "50.20473", + "elevation_ft": "1038", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-06", + "municipality": "Behbahan", + "scheduled_service": "no" + }, + { + "id": "351723", + "ident": "IR-0067", + "type": "heliport", + "name": "Iranshahr Thermal Power Plant Heliport", + "latitude_deg": "27.22727", + "longitude_deg": "60.48923", + "elevation_ft": "1768", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-11", + "municipality": "Rig-e Kaput", + "scheduled_service": "no" + }, + { + "id": "351725", + "ident": "IR-0068", + "type": "small_airport", + "name": "Nikshahr Airport", + "latitude_deg": "26.25217", + "longitude_deg": "60.3439", + "elevation_ft": "1886", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-11", + "municipality": "Teherk", + "scheduled_service": "no" + }, + { + "id": "351737", + "ident": "IR-0069", + "type": "small_airport", + "name": "Gahkom Airport", + "latitude_deg": "28.1716", + "longitude_deg": "55.82397", + "elevation_ft": "2280", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Gahkom", + "scheduled_service": "no" + }, + { + "id": "351739", + "ident": "IR-0070", + "type": "heliport", + "name": "Khalij-e Fars (Persian Gulf) Hospital Heliport", + "latitude_deg": "27.21015", + "longitude_deg": "56.33501", + "elevation_ft": "138", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Bandar Abbas", + "scheduled_service": "no" + }, + { + "id": "351741", + "ident": "IR-0071", + "type": "heliport", + "name": "Shahid Mohammadi Hospital Heliport", + "latitude_deg": "27.19365", + "longitude_deg": "56.29807", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Bandar Abbas", + "scheduled_service": "no" + }, + { + "id": "351870", + "ident": "IR-0072", + "type": "small_airport", + "name": "Fin Agricultural Airport", + "latitude_deg": "27.61734", + "longitude_deg": "55.90797", + "elevation_ft": "1024", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Fin", + "scheduled_service": "no" + }, + { + "id": "351871", + "ident": "IR-0073", + "type": "heliport", + "name": "Khatam Anbiya Hospital Heliport", + "latitude_deg": "29.23665", + "longitude_deg": "56.57679", + "elevation_ft": "7444", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-08", + "municipality": "Baft", + "scheduled_service": "no" + }, + { + "id": "351872", + "ident": "IR-0074", + "type": "small_airport", + "name": "Afshid Airport", + "latitude_deg": "30.254498", + "longitude_deg": "57.212671", + "elevation_ft": "6001", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-08", + "municipality": "Kerman", + "scheduled_service": "no" + }, + { + "id": "351873", + "ident": "IR-0075", + "type": "heliport", + "name": "Zarand Emam Ali Hospital Heliport", + "latitude_deg": "30.80895", + "longitude_deg": "56.54502", + "elevation_ft": "5407", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-08", + "municipality": "Zarand", + "scheduled_service": "no" + }, + { + "id": "351874", + "ident": "IR-0076", + "type": "heliport", + "name": "Shahid Bahonar Hospital Heliport", + "latitude_deg": "30.28823", + "longitude_deg": "57.06837", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-08", + "municipality": "Kerman", + "scheduled_service": "no" + }, + { + "id": "351875", + "ident": "IR-0077", + "type": "heliport", + "name": "Afzalipour Hospital Heliport", + "latitude_deg": "30.2551", + "longitude_deg": "57.0998", + "elevation_ft": "5801", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-08", + "municipality": "Kerman", + "scheduled_service": "no" + }, + { + "id": "351876", + "ident": "IR-0078", + "type": "heliport", + "name": "Valiasr Hospital Heliport", + "latitude_deg": "31.60766", + "longitude_deg": "55.41862", + "elevation_ft": "3271", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-21", + "municipality": "Bafgh", + "scheduled_service": "no" + }, + { + "id": "351877", + "ident": "IR-0079", + "type": "heliport", + "name": "Shohadaye Kargar Hospital Heliport", + "latitude_deg": "31.86773", + "longitude_deg": "54.39786", + "elevation_ft": "4029", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-21", + "municipality": "Yazd", + "scheduled_service": "no" + }, + { + "id": "351878", + "ident": "IR-0080", + "type": "small_airport", + "name": "Meybod Airport", + "latitude_deg": "32.23082", + "longitude_deg": "53.95826", + "elevation_ft": "3675", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-21", + "municipality": "Meybod", + "scheduled_service": "no" + }, + { + "id": "351879", + "ident": "IR-0081", + "type": "heliport", + "name": "Imam Sadegh Hospital Heliport", + "latitude_deg": "32.22224", + "longitude_deg": "54.02164", + "elevation_ft": "3643", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-21", + "municipality": "Meybod", + "scheduled_service": "no" + }, + { + "id": "351895", + "ident": "IR-0082", + "type": "closed", + "name": "Tush Kuyeh Airport", + "latitude_deg": "28.129664", + "longitude_deg": "55.440938", + "elevation_ft": "2300", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Tūshkūyeh", + "scheduled_service": "no" + }, + { + "id": "351896", + "ident": "IR-0083", + "type": "small_airport", + "name": "Dar Airport", + "latitude_deg": "28.064918", + "longitude_deg": "55.845244", + "elevation_ft": "2133", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Sarchahan", + "scheduled_service": "no" + }, + { + "id": "351899", + "ident": "IR-0084", + "type": "small_airport", + "name": "Shamsabad Airport", + "latitude_deg": "29.527426", + "longitude_deg": "53.36493", + "elevation_ft": "5250", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-07", + "municipality": "Kherameh", + "scheduled_service": "no", + "keywords": "Seyāh Zār" + }, + { + "id": "352069", + "ident": "IR-0085", + "type": "small_airport", + "name": "Tonb-e Kuchak Airport", + "latitude_deg": "26.24331", + "longitude_deg": "55.14556", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Tonb-e Kuchak", + "scheduled_service": "no" + }, + { + "id": "352070", + "ident": "IR-0086", + "type": "small_airport", + "name": "Tonb-e Bozorg Airport", + "latitude_deg": "26.25836", + "longitude_deg": "55.31579", + "elevation_ft": "38", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Tonb-e Bozorg", + "scheduled_service": "no" + }, + { + "id": "354794", + "ident": "IR-0087", + "type": "heliport", + "name": "Amuk-e-pāyin Military Helipad", + "latitude_deg": "35.309329", + "longitude_deg": "51.139072", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Amuk-e-pāyin", + "scheduled_service": "no" + }, + { + "id": "354795", + "ident": "IR-0088", + "type": "heliport", + "name": "Military Helipads (2x)", + "latitude_deg": "35.529266", + "longitude_deg": "51.004323", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "scheduled_service": "no" + }, + { + "id": "354796", + "ident": "IR-0089", + "type": "small_airport", + "name": "Military Runway", + "latitude_deg": "35.545758", + "longitude_deg": "50.976434", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "scheduled_service": "no" + }, + { + "id": "354797", + "ident": "IR-0090", + "type": "small_airport", + "name": "Military Runway", + "latitude_deg": "35.578874", + "longitude_deg": "50.880347", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "scheduled_service": "no" + }, + { + "id": "354798", + "ident": "IR-0091", + "type": "heliport", + "name": "Military Heliport Runway (39x)", + "latitude_deg": "35.711762", + "longitude_deg": "50.934827", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "scheduled_service": "no" + }, + { + "id": "354852", + "ident": "IR-0092", + "type": "heliport", + "name": "Military Helipads (6x)", + "latitude_deg": "35.503671", + "longitude_deg": "51.015551", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Teheran", + "scheduled_service": "no" + }, + { + "id": "354853", + "ident": "IR-0093", + "type": "heliport", + "name": "Police Helipad", + "latitude_deg": "35.470064", + "longitude_deg": "51.014671", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Teheran", + "scheduled_service": "no" + }, + { + "id": "355275", + "ident": "IR-0094", + "type": "heliport", + "name": "Motamedi Hospital Garmsar Heliport", + "latitude_deg": "35.209278", + "longitude_deg": "52.367351", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-20", + "municipality": "Garmsār", + "scheduled_service": "no" + }, + { + "id": "355276", + "ident": "IR-0095", + "type": "small_airport", + "name": "Asgar Abad Airport", + "latitude_deg": "35.334787", + "longitude_deg": "51.666161", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Varamin", + "scheduled_service": "no" + }, + { + "id": "355277", + "ident": "IR-0096", + "type": "heliport", + "name": "15 Khordad Varamin Hospital Heliport", + "latitude_deg": "35.368149", + "longitude_deg": "51.61694", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Varamin", + "scheduled_service": "no" + }, + { + "id": "355278", + "ident": "IR-0097", + "type": "heliport", + "name": "Red Crescent Relief and Rescue Base Heliport", + "latitude_deg": "35.307931", + "longitude_deg": "51.178894", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Amuk-e-pāyin", + "scheduled_service": "no" + }, + { + "id": "355279", + "ident": "IR-0098", + "type": "heliport", + "name": "Shahid Beheshti Hospital Heliport", + "latitude_deg": "34.666357", + "longitude_deg": "50.882907", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-25", + "municipality": "Qom", + "scheduled_service": "no" + }, + { + "id": "355280", + "ident": "IR-0099", + "type": "heliport", + "name": "Imam Reza Hospital Heliport", + "latitude_deg": "34.599228", + "longitude_deg": "50.801519", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-25", + "municipality": "Qom", + "scheduled_service": "no" + }, + { + "id": "355292", + "ident": "IR-0100", + "type": "heliport", + "name": "Javanrūd Hospital Heliport", + "latitude_deg": "34.803571", + "longitude_deg": "46.502006", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-05", + "municipality": "Javanrūd", + "scheduled_service": "no" + }, + { + "id": "355293", + "ident": "IR-0101", + "type": "heliport", + "name": "Khosravi Heliport", + "latitude_deg": "34.368632", + "longitude_deg": "45.488651", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-05", + "municipality": "Khosravi", + "scheduled_service": "no" + }, + { + "id": "355294", + "ident": "IR-0102", + "type": "heliport", + "name": "Imam Reza Hospital Heliport", + "latitude_deg": "34.378947", + "longitude_deg": "47.131025", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-05", + "municipality": "Kermanshah", + "scheduled_service": "no" + }, + { + "id": "355295", + "ident": "IR-0103", + "type": "heliport", + "name": "Farshchian Cardiovascular Hospital Heliport", + "latitude_deg": "34.787449", + "longitude_deg": "48.483219", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-13", + "municipality": "Hamedan", + "scheduled_service": "no" + }, + { + "id": "355296", + "ident": "IR-0104", + "type": "heliport", + "name": "Rowan Power Plant Heliport", + "latitude_deg": "35.133543", + "longitude_deg": "48.85354", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-13", + "municipality": "Rowan", + "scheduled_service": "no" + }, + { + "id": "355297", + "ident": "IR-0105", + "type": "small_airport", + "name": "Shahid Tahmouresi Airfield", + "latitude_deg": "34.985667", + "longitude_deg": "50.371786", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-00", + "municipality": "Saveh", + "scheduled_service": "no" + }, + { + "id": "355298", + "ident": "IR-0106", + "type": "small_airport", + "name": "Jafarabad Agricultural Airport", + "latitude_deg": "34.786497", + "longitude_deg": "50.587244", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-25", + "municipality": "Qom", + "scheduled_service": "no" + }, + { + "id": "355299", + "ident": "IR-0107", + "type": "heliport", + "name": "Imam Reza Hospital Heliport", + "latitude_deg": "35.217661", + "longitude_deg": "48.730186", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-13", + "municipality": "Kabudarahang", + "scheduled_service": "no" + }, + { + "id": "355300", + "ident": "IR-0108", + "type": "heliport", + "name": "Minoo Heliport", + "latitude_deg": "36.202176", + "longitude_deg": "49.212288", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-19", + "municipality": "Khorramdarreh", + "scheduled_service": "no" + }, + { + "id": "355301", + "ident": "IR-0109", + "type": "small_airport", + "name": "Hezar Jolfa Airstrip", + "latitude_deg": "36.096559", + "longitude_deg": "50.243765", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-26", + "municipality": "Khatayan", + "scheduled_service": "no" + }, + { + "id": "355302", + "ident": "IR-0110", + "type": "heliport", + "name": "Qazvin Province Army Airfield", + "latitude_deg": "36.049396", + "longitude_deg": "50.484237", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-26", + "municipality": "Abyek-e Sofla", + "scheduled_service": "no" + }, + { + "id": "355303", + "ident": "IR-0111", + "type": "heliport", + "name": "Cheetgar Heliport", + "latitude_deg": "35.74959", + "longitude_deg": "51.20801", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Tehran", + "scheduled_service": "no" + }, + { + "id": "355304", + "ident": "IR-0112", + "type": "heliport", + "name": "Iran National Olympic Academy Heliport", + "latitude_deg": "35.780123", + "longitude_deg": "51.401709", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Tehran", + "scheduled_service": "no" + }, + { + "id": "355305", + "ident": "IR-0113", + "type": "heliport", + "name": "Milad Hospital Heliport", + "latitude_deg": "35.745993", + "longitude_deg": "51.380311", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Tehran", + "scheduled_service": "no" + }, + { + "id": "355306", + "ident": "IR-0114", + "type": "heliport", + "name": "Elahiyeh Heliport", + "latitude_deg": "35.788342", + "longitude_deg": "51.428875", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Tehran", + "scheduled_service": "no" + }, + { + "id": "355307", + "ident": "IR-0115", + "type": "heliport", + "name": "Tehran East Emergency Heliport", + "latitude_deg": "35.731478", + "longitude_deg": "51.638816", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Tehran", + "scheduled_service": "no" + }, + { + "id": "355308", + "ident": "IR-0116", + "type": "heliport", + "name": "Pardis Heliport", + "latitude_deg": "35.734343", + "longitude_deg": "51.834087", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Pardis", + "scheduled_service": "no" + }, + { + "id": "355309", + "ident": "IR-0117", + "type": "heliport", + "name": "Hazrat Mohammad Clinic Rudehen Heliport", + "latitude_deg": "35.73332", + "longitude_deg": "51.90557", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Rudehen", + "scheduled_service": "no" + }, + { + "id": "355310", + "ident": "IR-0118", + "type": "heliport", + "name": "Imam Khomeini Hospital Heliport", + "latitude_deg": "35.754165", + "longitude_deg": "52.737608", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Firuzkuh", + "scheduled_service": "no" + }, + { + "id": "355311", + "ident": "IR-0119", + "type": "small_airport", + "name": "Mayamey Airport", + "latitude_deg": "36.421453", + "longitude_deg": "55.675084", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-20", + "municipality": "Mayamey", + "scheduled_service": "no" + }, + { + "id": "355312", + "ident": "IR-0120", + "type": "small_airport", + "name": "Esfarayen Agricultural Airport", + "latitude_deg": "37.017635", + "longitude_deg": "57.564388", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-28", + "municipality": "Esfarayen", + "scheduled_service": "no" + }, + { + "id": "355313", + "ident": "IR-0121", + "type": "heliport", + "name": "Esfarayen Heliport", + "latitude_deg": "37.07381", + "longitude_deg": "57.527474", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-28", + "municipality": "Esfarayen", + "scheduled_service": "no" + }, + { + "id": "355314", + "ident": "IR-0122", + "type": "closed", + "name": "Khadem Anlu Airport", + "latitude_deg": "37.279504", + "longitude_deg": "58.827439", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-09", + "municipality": "Khadem Anlu", + "scheduled_service": "no" + }, + { + "id": "356028", + "ident": "IR-0123", + "type": "small_airport", + "name": "Qeshm Air Base", + "latitude_deg": "26.70306", + "longitude_deg": "55.9516", + "elevation_ft": "79", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Shib Deraz", + "scheduled_service": "no" + }, + { + "id": "3351", + "ident": "IR-OI21", + "type": "small_airport", + "name": "Semnan New Airport", + "latitude_deg": "35.389400482177734", + "longitude_deg": "53.6713981628418", + "elevation_ft": "3659", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-20", + "scheduled_service": "no", + "gps_code": "OI21", + "local_code": "OI21" + }, + { + "id": "3352", + "ident": "IR-OI24", + "type": "small_airport", + "name": "Gonbad-e Kavus Airport", + "latitude_deg": "37.246101", + "longitude_deg": "55.095901", + "elevation_ft": "107", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-27", + "municipality": "Gonbad-e Kavus", + "scheduled_service": "no", + "local_code": "OI24" + }, + { + "id": "317284", + "ident": "IRU", + "type": "seaplane_base", + "name": "Iranamadu Seaplane Base", + "latitude_deg": "9.299746", + "longitude_deg": "80.448627", + "elevation_ft": "102", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-4", + "municipality": "Iranamadu", + "scheduled_service": "no", + "iata_code": "IRU" + }, + { + "id": "314970", + "ident": "IS-0001", + "type": "small_airport", + "name": "Suðureyri Airstrip", + "latitude_deg": "66.1318", + "longitude_deg": "-23.544", + "elevation_ft": "92", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-4", + "municipality": "Suðureyri", + "scheduled_service": "no", + "local_code": "SUY", + "keywords": "SUY" + }, + { + "id": "343522", + "ident": "IS-0002", + "type": "heliport", + "name": "Hrauneyjarfoss Heliport", + "latitude_deg": "64.20043", + "longitude_deg": "-19.25403", + "elevation_ft": "1241", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Hella", + "scheduled_service": "no" + }, + { + "id": "356245", + "ident": "IS-0003", + "type": "small_airport", + "name": "Skaftafell Airport", + "latitude_deg": "63.99948", + "longitude_deg": "-16.94116", + "elevation_ft": "249", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-8", + "municipality": "Öræfi", + "scheduled_service": "no", + "gps_code": "BISL" + }, + { + "id": "356246", + "ident": "IS-0004", + "type": "small_airport", + "name": "Kárastaða Airport", + "latitude_deg": "64.57267", + "longitude_deg": "-21.89826", + "elevation_ft": "81", + "continent": "EU", + "iso_country": "IS", + "iso_region": "IS-3", + "municipality": "Borgarnes", + "scheduled_service": "no" + }, + { + "id": "18170", + "ident": "IS00", + "type": "small_airport", + "name": "Jay Schertz Farm Airport", + "latitude_deg": "40.84170150756836", + "longitude_deg": "-89.27449798583984", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lowpoint", + "scheduled_service": "no", + "gps_code": "IS00", + "local_code": "IS00" + }, + { + "id": "18171", + "ident": "IS01", + "type": "closed", + "name": "Denby Airport", + "latitude_deg": "39.268902", + "longitude_deg": "-89.903999", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Carlinville", + "scheduled_service": "no", + "keywords": "IS01" + }, + { + "id": "18172", + "ident": "IS02", + "type": "small_airport", + "name": "Dietchweiler Airport", + "latitude_deg": "40.7784", + "longitude_deg": "-87.791702", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Watseka", + "scheduled_service": "no", + "gps_code": "IS02", + "local_code": "IS02" + }, + { + "id": "18173", + "ident": "IS03", + "type": "closed", + "name": "Fox Lake Seaplane Base", + "latitude_deg": "42.416401", + "longitude_deg": "-88.155402", + "elevation_ft": "737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Fox Lake", + "scheduled_service": "no", + "keywords": "IS03" + }, + { + "id": "18174", + "ident": "IS08", + "type": "small_airport", + "name": "Curless Airport", + "latitude_deg": "40.263939", + "longitude_deg": "-90.23453", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Astoria", + "scheduled_service": "no", + "gps_code": "IS08", + "local_code": "IS08" + }, + { + "id": "18175", + "ident": "IS09", + "type": "heliport", + "name": "Glenoaks Medical Center Heliport", + "latitude_deg": "41.9144135612", + "longitude_deg": "-88.05564656850001", + "elevation_ft": "734", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Glendale Heights", + "scheduled_service": "no", + "gps_code": "IS09", + "local_code": "IS09" + }, + { + "id": "18176", + "ident": "IS11", + "type": "heliport", + "name": "Kenneth Hall Regional Hospital Heliport", + "latitude_deg": "38.62369918823242", + "longitude_deg": "-90.15679931640625", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "East St Louis", + "scheduled_service": "no", + "gps_code": "IS11", + "local_code": "IS11" + }, + { + "id": "18177", + "ident": "IS12", + "type": "heliport", + "name": "Urso Heliport", + "latitude_deg": "41.999698638916016", + "longitude_deg": "-88.20539855957031", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Bartlett", + "scheduled_service": "no", + "gps_code": "IS12", + "local_code": "IS12" + }, + { + "id": "18178", + "ident": "IS13", + "type": "closed", + "name": "Bussart Airport", + "latitude_deg": "39.579201", + "longitude_deg": "-87.848602", + "elevation_ft": "713", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Dudley", + "scheduled_service": "no", + "keywords": "IS13" + }, + { + "id": "18179", + "ident": "IS14", + "type": "heliport", + "name": "Addison Fire Department Station 3 Heliport", + "latitude_deg": "41.93000030517578", + "longitude_deg": "-88.04119873046875", + "elevation_ft": "728", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Addison", + "scheduled_service": "no", + "gps_code": "IS14", + "local_code": "IS14" + }, + { + "id": "18180", + "ident": "IS15", + "type": "small_airport", + "name": "Vodden Airport", + "latitude_deg": "42.032501220703125", + "longitude_deg": "-88.90260314941406", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Esmond", + "scheduled_service": "no", + "gps_code": "IS15", + "local_code": "IS15" + }, + { + "id": "18181", + "ident": "IS16", + "type": "closed", + "name": "Hartline Air Strip STOLport", + "latitude_deg": "37.466702", + "longitude_deg": "-89.228401", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Anna", + "scheduled_service": "no", + "keywords": "IS16" + }, + { + "id": "18182", + "ident": "IS17", + "type": "heliport", + "name": "Harvey Police Department Heliport", + "latitude_deg": "41.61220169067383", + "longitude_deg": "-87.66999816894531", + "elevation_ft": "605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Harvey", + "scheduled_service": "no", + "gps_code": "IS17", + "local_code": "IS17" + }, + { + "id": "18183", + "ident": "IS18", + "type": "closed", + "name": "Crystal Lake Holiday Inn Heliport", + "latitude_deg": "42.220151", + "longitude_deg": "-88.283", + "elevation_ft": "909", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Crystal Lake", + "scheduled_service": "no", + "keywords": "IS18" + }, + { + "id": "18184", + "ident": "IS19", + "type": "small_airport", + "name": "Carlson Restricted Landing Area", + "latitude_deg": "42.335434", + "longitude_deg": "-89.32366", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pecatonica", + "scheduled_service": "no", + "gps_code": "IS19", + "local_code": "IS19" + }, + { + "id": "18185", + "ident": "IS20", + "type": "heliport", + "name": "Presence St Joseph Hospital - Elgin Heliport", + "latitude_deg": "42.036543", + "longitude_deg": "-88.326448", + "elevation_ft": "846", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Elgin", + "scheduled_service": "no", + "gps_code": "IS20", + "local_code": "IS20" + }, + { + "id": "18186", + "ident": "IS21", + "type": "heliport", + "name": "Community Hospital of Staunton Heliport", + "latitude_deg": "39.015253", + "longitude_deg": "-89.788787", + "elevation_ft": "622", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Staunton", + "scheduled_service": "no", + "gps_code": "IS21", + "local_code": "IS21" + }, + { + "id": "18187", + "ident": "IS22", + "type": "heliport", + "name": "County Emerg Svcs/Disaster Agcy Heliport", + "latitude_deg": "40.111099243199995", + "longitude_deg": "-88.1845016479", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Urbana", + "scheduled_service": "no", + "gps_code": "IS22", + "local_code": "IS22" + }, + { + "id": "18188", + "ident": "IS23", + "type": "seaplane_base", + "name": "Turner Seaplane Base", + "latitude_deg": "42.0099983215332", + "longitude_deg": "-88.29109954833984", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "South Elgin", + "scheduled_service": "no", + "gps_code": "IS23", + "local_code": "IS23" + }, + { + "id": "45402", + "ident": "IS24", + "type": "small_airport", + "name": "Harris Airport", + "latitude_deg": "39.077778", + "longitude_deg": "-89.081667", + "elevation_ft": "551", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Ramsey", + "scheduled_service": "no", + "gps_code": "IS24", + "local_code": "IS24" + }, + { + "id": "18189", + "ident": "IS25", + "type": "heliport", + "name": "B & L Heliport", + "latitude_deg": "41.94139862060547", + "longitude_deg": "-87.8594970703125", + "elevation_ft": "649", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Franklin Park", + "scheduled_service": "no", + "gps_code": "IS25", + "local_code": "IS25" + }, + { + "id": "18190", + "ident": "IS26", + "type": "small_airport", + "name": "Niklaus RLA Restricted Landing Area", + "latitude_deg": "40.1833992004", + "longitude_deg": "-88.61530303960001", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Farmer City", + "scheduled_service": "no", + "gps_code": "IS26", + "local_code": "IS26" + }, + { + "id": "18191", + "ident": "IS27", + "type": "heliport", + "name": "Nokomis Community Memorial Park Heliport", + "latitude_deg": "38.30139923095703", + "longitude_deg": "-89.2936019897461", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Nokomis", + "scheduled_service": "no", + "gps_code": "IS27", + "local_code": "IS27" + }, + { + "id": "18192", + "ident": "IS29", + "type": "heliport", + "name": "OSF Center For Health - Streator Heliport", + "latitude_deg": "41.113372", + "longitude_deg": "-88.835163", + "elevation_ft": "639", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Streator", + "scheduled_service": "no", + "gps_code": "IS29", + "local_code": "IS29", + "keywords": "St Mary's Hospital - Streator" + }, + { + "id": "18193", + "ident": "IS30", + "type": "heliport", + "name": "Franciscan Health - Olympia Fields Heliport", + "latitude_deg": "41.523636", + "longitude_deg": "-87.709705", + "elevation_ft": "718", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Olympia Fields", + "scheduled_service": "no", + "gps_code": "IS30", + "local_code": "IS30", + "keywords": "St James Hospital and Health Center" + }, + { + "id": "18194", + "ident": "IS31", + "type": "heliport", + "name": "M G T Channahon Illinois Heliport", + "latitude_deg": "41.44889831542969", + "longitude_deg": "-88.14399719238281", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Channahon", + "scheduled_service": "no", + "gps_code": "IS31", + "local_code": "IS31" + }, + { + "id": "18195", + "ident": "IS33", + "type": "small_airport", + "name": "Willhoit Airport", + "latitude_deg": "39.04560089111328", + "longitude_deg": "-89.8406982421875", + "elevation_ft": "614", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Staunton", + "scheduled_service": "no", + "gps_code": "IS33", + "local_code": "IS33" + }, + { + "id": "18196", + "ident": "IS34", + "type": "small_airport", + "name": "Piper's Landing Airport", + "latitude_deg": "38.70669937133789", + "longitude_deg": "-87.6333999633789", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lawrenceville", + "scheduled_service": "no", + "gps_code": "IS34", + "local_code": "IS34" + }, + { + "id": "18197", + "ident": "IS37", + "type": "small_airport", + "name": "Stockton Airport", + "latitude_deg": "42.32389831542969", + "longitude_deg": "-89.9928970336914", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Stockton", + "scheduled_service": "no", + "gps_code": "IS37", + "local_code": "IS37" + }, + { + "id": "18198", + "ident": "IS38", + "type": "heliport", + "name": "St Joseph Memorial Hospital Heliport", + "latitude_deg": "37.765899658203125", + "longitude_deg": "-89.32510375976562", + "elevation_ft": "405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Murphysboro", + "scheduled_service": "no", + "gps_code": "IS38", + "local_code": "IS38" + }, + { + "id": "18199", + "ident": "IS39", + "type": "heliport", + "name": "Central Dupage Hospital Heliport", + "latitude_deg": "41.8745002746582", + "longitude_deg": "-88.15650177001953", + "elevation_ft": "734", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Winfield", + "scheduled_service": "no", + "gps_code": "IS39", + "local_code": "IS39" + }, + { + "id": "18200", + "ident": "IS40", + "type": "closed", + "name": "Eudy Airport", + "latitude_deg": "42.093648", + "longitude_deg": "-89.027567", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Monroe Center", + "scheduled_service": "no", + "keywords": "IS40" + }, + { + "id": "18201", + "ident": "IS41", + "type": "small_airport", + "name": "Vogen Restricted Landing Area", + "latitude_deg": "41.460899353027344", + "longitude_deg": "-88.59200286865234", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Newark", + "scheduled_service": "no", + "gps_code": "IS41", + "local_code": "IS41" + }, + { + "id": "18202", + "ident": "IS42", + "type": "heliport", + "name": "Lindstrom Heliport", + "latitude_deg": "40.6239013671875", + "longitude_deg": "-89.37310028076172", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Morton", + "scheduled_service": "no", + "gps_code": "IS42", + "local_code": "IS42" + }, + { + "id": "18203", + "ident": "IS43", + "type": "small_airport", + "name": "Riggins Farms Airport", + "latitude_deg": "39.869998931884766", + "longitude_deg": "-88.07499694824219", + "elevation_ft": "699", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Villa Glove", + "scheduled_service": "no", + "gps_code": "IS43", + "local_code": "IS43" + }, + { + "id": "18204", + "ident": "IS44", + "type": "heliport", + "name": "Illini Community Hospital Heliport", + "latitude_deg": "39.6072998046875", + "longitude_deg": "-90.81400299072266", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pittsfield", + "scheduled_service": "no", + "gps_code": "IS44", + "local_code": "IS44" + }, + { + "id": "18205", + "ident": "IS45", + "type": "small_airport", + "name": "Mast Field", + "latitude_deg": "39.97669982910156", + "longitude_deg": "-91.33399963378906", + "elevation_ft": "738", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Quincy", + "scheduled_service": "no", + "gps_code": "IS45", + "local_code": "IS45" + }, + { + "id": "18206", + "ident": "IS46", + "type": "heliport", + "name": "Cgh Medical Center Heliport", + "latitude_deg": "41.80479813", + "longitude_deg": "-89.69730377", + "elevation_ft": "707", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sterling", + "scheduled_service": "no", + "gps_code": "IS46", + "local_code": "IS46" + }, + { + "id": "18207", + "ident": "IS47", + "type": "small_airport", + "name": "Willis Airport", + "latitude_deg": "42.030601501464844", + "longitude_deg": "-88.70179748535156", + "elevation_ft": "856", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sycamore", + "scheduled_service": "no", + "gps_code": "IS47", + "local_code": "IS47" + }, + { + "id": "18208", + "ident": "IS48", + "type": "heliport", + "name": "Il State Police District 22 Heliport", + "latitude_deg": "37.271400451699996", + "longitude_deg": "-89.1647033691", + "elevation_ft": "335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Ullin", + "scheduled_service": "no", + "gps_code": "IS48", + "local_code": "IS48" + }, + { + "id": "18209", + "ident": "IS49", + "type": "heliport", + "name": "Illinois Valley Community Hospital Heliport", + "latitude_deg": "41.329200744628906", + "longitude_deg": "-89.12370300292969", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Peru", + "scheduled_service": "no", + "gps_code": "IS49", + "local_code": "IS49" + }, + { + "id": "18210", + "ident": "IS50", + "type": "heliport", + "name": "Rend Lake Conservancy District Heliport", + "latitude_deg": "38.082000732421875", + "longitude_deg": "-88.91699981689453", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Benton", + "scheduled_service": "no", + "gps_code": "IS50", + "local_code": "IS50" + }, + { + "id": "18211", + "ident": "IS51", + "type": "small_airport", + "name": "Schilson Field", + "latitude_deg": "40.45140075683594", + "longitude_deg": "-91.20379638671875", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Carthage", + "scheduled_service": "no", + "gps_code": "IS51", + "local_code": "IS51" + }, + { + "id": "18212", + "ident": "IS52", + "type": "small_airport", + "name": "Russell Airport", + "latitude_deg": "40.927799224853516", + "longitude_deg": "-87.62249755859375", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Donovan", + "scheduled_service": "no", + "gps_code": "IS52", + "local_code": "IS52" + }, + { + "id": "18213", + "ident": "IS54", + "type": "small_airport", + "name": "Mc Christy Airport", + "latitude_deg": "39.6431007385", + "longitude_deg": "-89.14450073239999", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Stonington", + "scheduled_service": "no", + "gps_code": "IS54", + "local_code": "IS54" + }, + { + "id": "18214", + "ident": "IS55", + "type": "small_airport", + "name": "Morton Airport", + "latitude_deg": "40.59090042114258", + "longitude_deg": "-90.94239807128906", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "La Harpe", + "scheduled_service": "no", + "gps_code": "IS55", + "local_code": "IS55" + }, + { + "id": "18215", + "ident": "IS56", + "type": "small_airport", + "name": "Herren Airport", + "latitude_deg": "40.08810043334961", + "longitude_deg": "-90.8853988647461", + "elevation_ft": "654", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Timewell", + "scheduled_service": "no", + "gps_code": "IS56", + "local_code": "IS56" + }, + { + "id": "18216", + "ident": "IS57", + "type": "small_airport", + "name": "Wind Rose Farm Airport", + "latitude_deg": "42.1796989440918", + "longitude_deg": "-88.63279724121094", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Marengo", + "scheduled_service": "no", + "gps_code": "IS57", + "local_code": "IS57" + }, + { + "id": "18217", + "ident": "IS58", + "type": "heliport", + "name": "Pecatonica Fire Protection District Heliport", + "latitude_deg": "42.30720138549805", + "longitude_deg": "-89.36250305175781", + "elevation_ft": "774", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pecatonica", + "scheduled_service": "no", + "gps_code": "IS58", + "local_code": "IS58" + }, + { + "id": "18218", + "ident": "IS59", + "type": "small_airport", + "name": "Rotstein Airport", + "latitude_deg": "42.1338996887207", + "longitude_deg": "-88.92420196533203", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Kirkland", + "scheduled_service": "no", + "gps_code": "IS59", + "local_code": "IS59" + }, + { + "id": "18219", + "ident": "IS60", + "type": "closed", + "name": "Nixon Airport", + "latitude_deg": "39.15497", + "longitude_deg": "-90.12362", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Medora", + "scheduled_service": "no", + "keywords": "IS60, Nixon RLA" + }, + { + "id": "18220", + "ident": "IS62", + "type": "small_airport", + "name": "John D Rennick Airport", + "latitude_deg": "40.8672981262207", + "longitude_deg": "-89.4531021118164", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Spring Bay", + "scheduled_service": "no", + "gps_code": "IS62", + "local_code": "IS62" + }, + { + "id": "18221", + "ident": "IS63", + "type": "closed", + "name": "Hoffman Airport", + "latitude_deg": "41.970299", + "longitude_deg": "-88.7509", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "De Kalb", + "scheduled_service": "no", + "keywords": "IS63" + }, + { + "id": "18222", + "ident": "IS64", + "type": "small_airport", + "name": "Kuntz Field", + "latitude_deg": "40.72309875488281", + "longitude_deg": "-88.86669921875", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Gridley", + "scheduled_service": "no", + "gps_code": "IS64", + "local_code": "IS64" + }, + { + "id": "18223", + "ident": "IS65", + "type": "small_airport", + "name": "Woodlake Landing Airport", + "latitude_deg": "41.63840103149414", + "longitude_deg": "-88.64450073242188", + "elevation_ft": "677", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sandwich", + "scheduled_service": "no", + "gps_code": "IS65", + "local_code": "IS65" + }, + { + "id": "18224", + "ident": "IS66", + "type": "small_airport", + "name": "Rhea Restricted Landing Area", + "latitude_deg": "40.59230041503906", + "longitude_deg": "-91.20149993896484", + "elevation_ft": "684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pontoosuc", + "scheduled_service": "no", + "gps_code": "IS66", + "local_code": "IS66" + }, + { + "id": "18225", + "ident": "IS67", + "type": "heliport", + "name": "Perry Memorial Hospital Heliport", + "latitude_deg": "41.367801666259766", + "longitude_deg": "-89.45680236816406", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "IS67", + "local_code": "IS67" + }, + { + "id": "18226", + "ident": "IS69", + "type": "small_airport", + "name": "Kloker Airport", + "latitude_deg": "39.91889953613281", + "longitude_deg": "-90.51100158691406", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Meredosia", + "scheduled_service": "no", + "gps_code": "IS69", + "local_code": "IS69" + }, + { + "id": "18227", + "ident": "IS71", + "type": "small_airport", + "name": "Koch Airport", + "latitude_deg": "42.45830154418945", + "longitude_deg": "-89.19499969482422", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Shirland", + "scheduled_service": "no", + "gps_code": "IS71", + "local_code": "IS71" + }, + { + "id": "18228", + "ident": "IS73", + "type": "small_airport", + "name": "Woodley Aerial Spray Airport", + "latitude_deg": "41.532501220703125", + "longitude_deg": "-89.70189666748047", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "New Bedford", + "scheduled_service": "no", + "gps_code": "IS73", + "local_code": "IS73" + }, + { + "id": "18229", + "ident": "IS74", + "type": "heliport", + "name": "Caterpillar Aurora Heliport", + "latitude_deg": "41.71699905395508", + "longitude_deg": "-88.35919952392578", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Montgomery", + "scheduled_service": "no", + "gps_code": "IS74", + "local_code": "IS74" + }, + { + "id": "18230", + "ident": "IS76", + "type": "heliport", + "name": "Sycamore Fire Department Heliport", + "latitude_deg": "41.996700286865234", + "longitude_deg": "-88.693603515625", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sycamore", + "scheduled_service": "no", + "gps_code": "IS76", + "local_code": "IS76" + }, + { + "id": "18231", + "ident": "IS77", + "type": "closed", + "name": "Hoehn RLA Restricted Landing Area", + "latitude_deg": "39.220798", + "longitude_deg": "-89.332802", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Witt", + "scheduled_service": "no", + "keywords": "IS77" + }, + { + "id": "18232", + "ident": "IS78", + "type": "small_airport", + "name": "Early-Merkel Field", + "latitude_deg": "42.36605", + "longitude_deg": "-89.235067", + "elevation_ft": "794", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pecatonica", + "scheduled_service": "no", + "gps_code": "IS78", + "local_code": "IS78" + }, + { + "id": "18233", + "ident": "IS79", + "type": "seaplane_base", + "name": "Jackson Seaplane Base", + "latitude_deg": "42.236698150634766", + "longitude_deg": "-88.35230255126953", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Crystal Lake", + "scheduled_service": "no", + "gps_code": "IS79", + "local_code": "IS79" + }, + { + "id": "18234", + "ident": "IS80", + "type": "small_airport", + "name": "Uncle Chuck's Airport", + "latitude_deg": "41.917801", + "longitude_deg": "-88.789299", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "DeKalb", + "scheduled_service": "no", + "gps_code": "IS80", + "local_code": "IS80" + }, + { + "id": "18235", + "ident": "IS81", + "type": "heliport", + "name": "Alsip Fire Department Heliport", + "latitude_deg": "41.67499923706055", + "longitude_deg": "-87.74949645996094", + "elevation_ft": "623", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Alsip", + "scheduled_service": "no", + "gps_code": "IS81", + "local_code": "IS81" + }, + { + "id": "18236", + "ident": "IS82", + "type": "closed", + "name": "Arras Restricted Landing Area", + "latitude_deg": "39.3381", + "longitude_deg": "-90.178101", + "elevation_ft": "598", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Greenfield", + "scheduled_service": "no", + "keywords": "IS82" + }, + { + "id": "18237", + "ident": "IS83", + "type": "small_airport", + "name": "Untied Acres Airport", + "latitude_deg": "42.227500915527344", + "longitude_deg": "-88.76719665527344", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Belvidere", + "scheduled_service": "no", + "gps_code": "IS83", + "local_code": "IS83" + }, + { + "id": "18238", + "ident": "IS85", + "type": "small_airport", + "name": "Newton Airport", + "latitude_deg": "39.504798889160156", + "longitude_deg": "-90.50540161132812", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Patterson", + "scheduled_service": "no", + "gps_code": "IS85", + "local_code": "IS85" + }, + { + "id": "18239", + "ident": "IS86", + "type": "small_airport", + "name": "Hendrix Airport", + "latitude_deg": "41.04169845581055", + "longitude_deg": "-88.19170379638672", + "elevation_ft": "656", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Buckingham", + "scheduled_service": "no", + "gps_code": "IS86", + "local_code": "IS86" + }, + { + "id": "18240", + "ident": "IS88", + "type": "small_airport", + "name": "Melody Field", + "latitude_deg": "40.14860153198242", + "longitude_deg": "-87.69450378417969", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "IS88", + "local_code": "IS88" + }, + { + "id": "18241", + "ident": "IS89", + "type": "heliport", + "name": "Iroquois Memorial Hospital Heliport", + "latitude_deg": "40.7661018372", + "longitude_deg": "-87.73139953610001", + "elevation_ft": "677", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Watseka", + "scheduled_service": "no", + "gps_code": "IS89", + "local_code": "IS89" + }, + { + "id": "18242", + "ident": "IS90", + "type": "heliport", + "name": "Honey Lake Heliport", + "latitude_deg": "42.19860076904297", + "longitude_deg": "-88.11900329589844", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lake Zurick", + "scheduled_service": "no", + "gps_code": "IS90", + "local_code": "IS90" + }, + { + "id": "18243", + "ident": "IS92", + "type": "heliport", + "name": "Olivers Heliport", + "latitude_deg": "42.0994344254", + "longitude_deg": "-88.3692115545", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Gilberts", + "scheduled_service": "no", + "gps_code": "IS92", + "local_code": "IS92" + }, + { + "id": "18244", + "ident": "IS93", + "type": "small_airport", + "name": "Sue Rock International Airport", + "latitude_deg": "42.443144", + "longitude_deg": "-89.504288", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rock City", + "scheduled_service": "no", + "gps_code": "IS93", + "local_code": "IS93" + }, + { + "id": "18245", + "ident": "IS94", + "type": "small_airport", + "name": "Johnson Airport", + "latitude_deg": "41.60559844970703", + "longitude_deg": "-88.66120147705078", + "elevation_ft": "667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sandwich", + "scheduled_service": "no", + "gps_code": "IS94", + "local_code": "IS94" + }, + { + "id": "18246", + "ident": "IS95", + "type": "closed", + "name": "Harrington Farms Airport", + "latitude_deg": "41.558601", + "longitude_deg": "-88.664497", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sheridan", + "scheduled_service": "no", + "keywords": "IS95" + }, + { + "id": "18247", + "ident": "IS96", + "type": "heliport", + "name": "Carle Hospital Heliport", + "latitude_deg": "40.11700058", + "longitude_deg": "-88.21499634", + "elevation_ft": "879", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Urbana", + "scheduled_service": "no", + "gps_code": "IS96", + "local_code": "IS96" + }, + { + "id": "18248", + "ident": "IS97", + "type": "heliport", + "name": "Trinity Medical Center Heliport", + "latitude_deg": "41.468101501464844", + "longitude_deg": "-90.53079986572266", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Moline", + "scheduled_service": "no", + "gps_code": "IS97", + "local_code": "IS97" + }, + { + "id": "18249", + "ident": "IS98", + "type": "closed", + "name": "Fabick Five Heliport", + "latitude_deg": "37.7295", + "longitude_deg": "-88.905098", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Marion", + "scheduled_service": "no", + "keywords": "IS98" + }, + { + "id": "18250", + "ident": "IS99", + "type": "heliport", + "name": "Ware-Wolf Lake Heliport", + "latitude_deg": "37.50749969482422", + "longitude_deg": "-89.43890380859375", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Wolf Lake", + "scheduled_service": "no", + "gps_code": "IS99", + "local_code": "IS99" + }, + { + "id": "327608", + "ident": "ISG", + "type": "medium_airport", + "name": "New Ishigaki Airport", + "latitude_deg": "24.396389", + "longitude_deg": "124.245", + "elevation_ft": "102", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Ishigaki", + "scheduled_service": "yes", + "gps_code": "ROIG", + "iata_code": "ISG", + "home_link": "https://www.ishigaki-airport.co.jp/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Ishigaki_Airport" + }, + { + "id": "46181", + "ident": "IT-0001", + "type": "small_airport", + "name": "Aviosuperficie Il Falco", + "latitude_deg": "45.268665", + "longitude_deg": "7.947943", + "elevation_ft": "768", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Mazzè (TO)", + "scheduled_service": "no", + "local_code": "TOMAZ", + "home_link": "http://www.aviosuperficieilfalco.it/", + "keywords": "PRATI NUOVI" + }, + { + "id": "46546", + "ident": "IT-0002", + "type": "small_airport", + "name": "Campo di Volo \"Senigallia Nord\"", + "latitude_deg": "43.738267", + "longitude_deg": "13.183208", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-57", + "municipality": "Senigallia", + "scheduled_service": "no", + "local_code": "ANSEN" + }, + { + "id": "46547", + "ident": "IT-0003", + "type": "small_airport", + "name": "Aviosuperficie Palazzolo Avio", + "latitude_deg": "43.55916", + "longitude_deg": "12.155903", + "elevation_ft": "1050", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "San Sepolcro (AR)", + "scheduled_service": "no", + "gps_code": "LIQF", + "local_code": "AR01", + "keywords": "Palazzolo Avio" + }, + { + "id": "298337", + "ident": "IT-0004", + "type": "small_airport", + "name": "Aviosuperficie Eremo della Giubiliana", + "latitude_deg": "36.861287", + "longitude_deg": "14.627008", + "elevation_ft": "1401", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Ragusa", + "scheduled_service": "no", + "local_code": "RGGIU", + "home_link": "http://www.eremodellagiubiliana.it/eng/air_service.htm", + "wikipedia_link": "http://it.wikipedia.org/wiki/Aviosuperficie_Giubiliana", + "keywords": "Eremo,Giubiliana" + }, + { + "id": "298689", + "ident": "IT-0005", + "type": "small_airport", + "name": "Aviosuperficie Bovarella", + "latitude_deg": "37.792694", + "longitude_deg": "12.845078", + "elevation_ft": "656", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Salemi", + "scheduled_service": "no", + "local_code": "TPBOV", + "home_link": "http://www.avioclubsalemi.it/", + "wikipedia_link": "http://it.wikipedia.org/wiki/Aviosuperficie_Bovarella" + }, + { + "id": "298691", + "ident": "IT-0006", + "type": "small_airport", + "name": "Campo di Volo Valbelice", + "latitude_deg": "37.674242", + "longitude_deg": "12.774611", + "elevation_ft": "541", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Castelvetrano (TP)", + "scheduled_service": "no", + "local_code": "TPCVE" + }, + { + "id": "298693", + "ident": "IT-0007", + "type": "closed", + "name": "Campo di Volo Assoro", + "latitude_deg": "37.56181", + "longitude_deg": "14.496374", + "elevation_ft": "237", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Assoro", + "scheduled_service": "no" + }, + { + "id": "298696", + "ident": "IT-0008", + "type": "small_airport", + "name": "Campo di Volo AvioClub Centro Sicilia", + "latitude_deg": "37.450962", + "longitude_deg": "13.923111", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Serra di Falco (CL)", + "scheduled_service": "no", + "local_code": "CLSDF", + "keywords": "Walter,Serradifalco" + }, + { + "id": "298698", + "ident": "IT-0009", + "type": "small_airport", + "name": "Campo di Volo Avioclub Caltagirone", + "latitude_deg": "37.19222", + "longitude_deg": "14.613297", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Grammichele (CT)", + "scheduled_service": "no", + "local_code": "CTGMM" + }, + { + "id": "298700", + "ident": "IT-0010", + "type": "small_airport", + "name": "Aviosuperficie Angelo D'Arrigo", + "latitude_deg": "37.799561", + "longitude_deg": "15.22775", + "elevation_ft": "197", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Calatabiano (CT)", + "scheduled_service": "no", + "local_code": "CTFFD", + "home_link": "http://www.triavio.eu", + "keywords": "Calatabiano,Etnavolo,Angelo D'Arrigo" + }, + { + "id": "298702", + "ident": "IT-0011", + "type": "small_airport", + "name": "Aviosuperficie Avioclub Paternò", + "latitude_deg": "37.553356", + "longitude_deg": "14.884435", + "elevation_ft": "377", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Paternò", + "scheduled_service": "no", + "keywords": "Paterno'" + }, + { + "id": "298704", + "ident": "IT-0012", + "type": "small_airport", + "name": "Aviosuperficie Rinaura", + "latitude_deg": "37.028647", + "longitude_deg": "15.243509", + "elevation_ft": "40", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Rinaura (SR)", + "scheduled_service": "no", + "gps_code": "SIR0", + "local_code": "SRSIR", + "home_link": "http://www.avioclubsiracusa.it", + "keywords": "Avio Club Siracusa" + }, + { + "id": "298706", + "ident": "IT-0013", + "type": "small_airport", + "name": "Aviosuperficie Minotaurus e Medusa", + "latitude_deg": "38.049105", + "longitude_deg": "14.541306", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Caronia", + "scheduled_service": "no", + "local_code": "MECAR", + "wikipedia_link": "http://it.wikipedia.org/wiki/Aviosuperficie_Minotaurus_e_Medusa" + }, + { + "id": "298708", + "ident": "IT-0014", + "type": "small_airport", + "name": "Aviosuperficie Oasi dei Re", + "latitude_deg": "36.72148", + "longitude_deg": "14.77365", + "elevation_ft": "128", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Marina di Modica (RG)", + "scheduled_service": "no", + "local_code": "RGMDM", + "home_link": "http://www.flymodica.it/" + }, + { + "id": "298711", + "ident": "IT-0015", + "type": "small_airport", + "name": "Aviosuperficie Ramacca", + "latitude_deg": "37.390652", + "longitude_deg": "14.620249", + "elevation_ft": "524", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Ramacca", + "scheduled_service": "no", + "local_code": "CTRAM", + "keywords": "Ramacca Margherito" + }, + { + "id": "298713", + "ident": "IT-0016", + "type": "small_airport", + "name": "Aviosuperficie Sorvoliamo", + "latitude_deg": "37.0084558926", + "longitude_deg": "14.5951116085", + "elevation_ft": "722", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Comiso", + "scheduled_service": "no", + "wikipedia_link": "http://it.wikipedia.org/wiki/Aviosuperficie_Sorvoliamo" + }, + { + "id": "298718", + "ident": "IT-0017", + "type": "small_airport", + "name": "Aviosuperficie Terranova", + "latitude_deg": "37.576623576500005", + "longitude_deg": "12.9444909096", + "elevation_ft": "9", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Menfi", + "scheduled_service": "no" + }, + { + "id": "298721", + "ident": "IT-0018", + "type": "small_airport", + "name": "Campo di Volo Capo d'Orlando", + "latitude_deg": "38.126421", + "longitude_deg": "14.707904", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Capo d'Orlando (ME)", + "scheduled_service": "no", + "local_code": "MECOR" + }, + { + "id": "298723", + "ident": "IT-0019", + "type": "small_airport", + "name": "Campo di Volo Cugno", + "latitude_deg": "37.432392118", + "longitude_deg": "14.6152496338", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Aidone", + "scheduled_service": "no", + "home_link": "http://www.quiaidone.it/aquiledeglierei/" + }, + { + "id": "298726", + "ident": "IT-0020", + "type": "small_airport", + "name": "Campo di Volo Camemi", + "latitude_deg": "37.263261", + "longitude_deg": "14.626579", + "elevation_ft": "361", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Mineo (CT)", + "scheduled_service": "no", + "local_code": "CTMIN", + "home_link": "http://www.camemi.it/" + }, + { + "id": "298729", + "ident": "IT-0021", + "type": "small_airport", + "name": "Campo di Volo Elpifly", + "latitude_deg": "36.810908171", + "longitude_deg": "14.5447719097", + "elevation_ft": "220", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Marina di Ragusa", + "scheduled_service": "no" + }, + { + "id": "298732", + "ident": "IT-0022", + "type": "small_airport", + "name": "Campo di Volo Marano", + "latitude_deg": "37.386467", + "longitude_deg": "14.143471", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Pietraperzia (EN)", + "scheduled_service": "no", + "local_code": "ENPIE", + "keywords": "Marano" + }, + { + "id": "298735", + "ident": "IT-0023", + "type": "closed", + "name": "Campo di Volo \"Il Cherubino\"", + "latitude_deg": "37.59441", + "longitude_deg": "14.880252", + "elevation_ft": "720", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Santa Maria di Licodia", + "scheduled_service": "no", + "local_code": "CTLIC" + }, + { + "id": "298738", + "ident": "IT-0024", + "type": "small_airport", + "name": "Campo di Volo Pachino Fly Dream", + "latitude_deg": "36.726571", + "longitude_deg": "15.033717", + "elevation_ft": "23", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Pachino (SR)", + "scheduled_service": "no", + "local_code": "SRPCH", + "home_link": "http://www.pachinoflydream.com/" + }, + { + "id": "298742", + "ident": "IT-0025", + "type": "small_airport", + "name": "Campo di Volo Albatros", + "latitude_deg": "37.972478", + "longitude_deg": "13.77335", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Termini Imerese (PA)", + "scheduled_service": "no", + "local_code": "PATER", + "home_link": "http://www.voloclubalbatros.com/" + }, + { + "id": "298746", + "ident": "IT-0026", + "type": "closed", + "name": "Campo di Volo Ali Val di Neto", + "latitude_deg": "39.184793", + "longitude_deg": "17.107129", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-78", + "municipality": "Bucchi (KR)", + "scheduled_service": "no", + "local_code": "KRBUC" + }, + { + "id": "298748", + "ident": "IT-0027", + "type": "small_airport", + "name": "Aviosuperficie Ali Calabria", + "latitude_deg": "38.619603", + "longitude_deg": "15.955968", + "elevation_ft": "1870", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-78", + "municipality": "Rombiolo", + "scheduled_service": "no", + "local_code": "VVROM" + }, + { + "id": "298750", + "ident": "IT-0028", + "type": "small_airport", + "name": "Aviosuperficie Cosenza", + "latitude_deg": "39.527877694699995", + "longitude_deg": "16.2298965454", + "elevation_ft": "180", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-78", + "municipality": "Bisignano", + "scheduled_service": "no", + "home_link": "http://www.aviosuperficiecosenza.it/" + }, + { + "id": "298753", + "ident": "IT-0029", + "type": "small_airport", + "name": "Aviosuperficie Franca", + "latitude_deg": "39.189857", + "longitude_deg": "16.670637", + "elevation_ft": "4393", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-78", + "municipality": "Cotronei (KR)", + "scheduled_service": "no", + "local_code": "KRCOT", + "keywords": "Franca" + }, + { + "id": "298755", + "ident": "IT-0030", + "type": "small_airport", + "name": "Aviosuperficie Aeroporto Scalea", + "latitude_deg": "39.776188", + "longitude_deg": "15.811343", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-78", + "municipality": "Scalea (CS)", + "scheduled_service": "no", + "gps_code": "LICK", + "local_code": "CS08", + "home_link": "http://www.aeroportoscalea.com" + }, + { + "id": "298758", + "ident": "IT-0031", + "type": "small_airport", + "name": "Campo di Volo Dragons Fly", + "latitude_deg": "39.738536", + "longitude_deg": "16.457015", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-78", + "municipality": "Sibari (CS)", + "scheduled_service": "no", + "local_code": "CSSIB", + "keywords": "Dragons Fly" + }, + { + "id": "298761", + "ident": "IT-0032", + "type": "small_airport", + "name": "Campo di Volo Il Grifo", + "latitude_deg": "38.637255", + "longitude_deg": "15.94775", + "elevation_ft": "630", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-78", + "municipality": "Zungri", + "scheduled_service": "no", + "local_code": "VVZUN", + "home_link": "http://www.aeroclubilgrifo.it" + }, + { + "id": "308290", + "ident": "IT-0033", + "type": "heliport", + "name": "Castel Gandolfo Heliport", + "latitude_deg": "41.732928", + "longitude_deg": "12.658055", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Castel Gandolfo", + "scheduled_service": "no" + }, + { + "id": "308668", + "ident": "IT-0034", + "type": "small_airport", + "name": "Aviosuperficie Giancarlo Filippi", + "latitude_deg": "44.409934", + "longitude_deg": "7.809992", + "elevation_ft": "1411", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Mondovì (CN)", + "scheduled_service": "no", + "local_code": "CN13", + "home_link": "http://www.gruppoaeromodellisticomonregalese.it/chi_siamo.htm" + }, + { + "id": "308671", + "ident": "IT-0035", + "type": "small_airport", + "name": "Aviosuperficie Ivrea Montalto Dora", + "latitude_deg": "45.487546", + "longitude_deg": "7.84323", + "elevation_ft": "807", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Montalto Dora (TO)", + "scheduled_service": "no", + "local_code": "TO10", + "home_link": "http://www.voloalto.altervista.org/" + }, + { + "id": "324597", + "ident": "IT-0036", + "type": "closed", + "name": "Cassibile Airfield", + "latitude_deg": "36.981791", + "longitude_deg": "15.239755", + "elevation_ft": "58", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Syracuse", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cassibile_Airfield" + }, + { + "id": "308673", + "ident": "IT-0037", + "type": "small_airport", + "name": "Aviosuperficie Merlo Romano", + "latitude_deg": "44.834433", + "longitude_deg": "7.363565", + "elevation_ft": "1000", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Garzigliana (TO)", + "scheduled_service": "no", + "local_code": "TOGAR", + "keywords": "Merlo Romano" + }, + { + "id": "308674", + "ident": "IT-0038", + "type": "small_airport", + "name": "Aviosuperficie Acqui Terme", + "latitude_deg": "44.677488", + "longitude_deg": "8.50124", + "elevation_ft": "430", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Acqui Terme (AL)", + "scheduled_service": "no", + "local_code": "ALACQ", + "home_link": "http://www.albatrospara.it/associazione/base.php", + "wikipedia_link": "https://it.wikipedia.org/wiki/Aviosuperficie_Acqui_Terme" + }, + { + "id": "308675", + "ident": "IT-0039", + "type": "small_airport", + "name": "Aviosuperficie di Meggiana", + "latitude_deg": "45.747211", + "longitude_deg": "8.040075", + "elevation_ft": "5344", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Piode (VC)", + "scheduled_service": "no", + "local_code": "VCMEG", + "home_link": "http://www.marc-ingegno.it/index.php?option=com_content&view=article&id=47&Itemid=92&lang=it" + }, + { + "id": "308676", + "ident": "IT-0040", + "type": "small_airport", + "name": "Aviosuperficie \"Marc Ingegno\"", + "latitude_deg": "45.778056", + "longitude_deg": "8.268611", + "elevation_ft": "1411", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Varallo (VC)", + "scheduled_service": "no", + "local_code": "VCVAR", + "home_link": "http://www.marc-ingegno.it/index.php?option=com_content&view=article&id=71&Itemid=91&lang=it", + "keywords": "Marc Ingegno" + }, + { + "id": "308677", + "ident": "IT-0041", + "type": "small_airport", + "name": "ANGIALE", + "latitude_deg": "44.8336111111", + "longitude_deg": "7.53055555556", + "elevation_ft": "843", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Vigone (TO)", + "scheduled_service": "no" + }, + { + "id": "308678", + "ident": "IT-0042", + "type": "small_airport", + "name": "Astigiana", + "latitude_deg": "44.888806", + "longitude_deg": "8.354867", + "elevation_ft": "469", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Castello D'Annone (AT)", + "scheduled_service": "no", + "local_code": "ATCAS", + "home_link": "http://www.scuolavolopegasus.com/dove-siamo" + }, + { + "id": "308679", + "ident": "IT-0043", + "type": "small_airport", + "name": "Aviosuperficie Boglietto", + "latitude_deg": "44.758611", + "longitude_deg": "8.183056", + "elevation_ft": "610", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Costigliole d'Asti (AT)", + "scheduled_service": "no", + "local_code": "ATBOG", + "home_link": "http://www.aviosuperficieboglietto.it/", + "keywords": "Boglietto" + }, + { + "id": "308680", + "ident": "IT-0044", + "type": "small_airport", + "name": "Campo di Volo Beltrutta", + "latitude_deg": "44.498333", + "longitude_deg": "7.723333", + "elevation_ft": "1174", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Pezzolo Valle Uzzone (CN)", + "scheduled_service": "no", + "local_code": "CN04" + }, + { + "id": "308681", + "ident": "IT-0045", + "type": "small_airport", + "name": "Aviosuperficie Cascina Colombare", + "latitude_deg": "45.496667", + "longitude_deg": "8.527167", + "elevation_ft": "558", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Casaleggio (NO)", + "scheduled_service": "no", + "local_code": "NOCAS" + }, + { + "id": "308682", + "ident": "IT-0046", + "type": "closed", + "name": "CASCINA GRECIA", + "latitude_deg": "45.35", + "longitude_deg": "7.783333", + "elevation_ft": "354", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Cuceglio (TO)", + "scheduled_service": "no" + }, + { + "id": "308683", + "ident": "IT-0047", + "type": "small_airport", + "name": "Aviosuperficie \"Cascina Valentino\"", + "latitude_deg": "44.6975", + "longitude_deg": "7.401944", + "elevation_ft": "280", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Envie (CN)", + "scheduled_service": "no", + "local_code": "CNENV", + "home_link": "http://www.aeromedia.it/envie.html", + "keywords": "http://moduliweb.enac.gov.it/Applicazioni/avioeli/Avio_04.asp?selaeroporto=879" + }, + { + "id": "308684", + "ident": "IT-0048", + "type": "small_airport", + "name": "Aviosuperficie Castelnuovo Don Bosco", + "latitude_deg": "45.024444", + "longitude_deg": "7.966389", + "elevation_ft": "730", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Castelnuovo Don Bosco (AT)", + "scheduled_service": "no", + "gps_code": "LILF", + "local_code": "AT06", + "home_link": "http://www.aviocastelnuovo.it/", + "keywords": "ICP" + }, + { + "id": "308685", + "ident": "IT-0049", + "type": "small_airport", + "name": "Aviosuperficie CHAVEZ-MARINI", + "latitude_deg": "46.134167", + "longitude_deg": "8.306333", + "elevation_ft": "912", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Masera (VB)", + "scheduled_service": "no", + "local_code": "VBMAS" + }, + { + "id": "308686", + "ident": "IT-0050", + "type": "closed", + "name": "Cossato", + "latitude_deg": "45.653333", + "longitude_deg": "8.204444", + "elevation_ft": "804", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Cossato (BI)", + "scheduled_service": "no" + }, + { + "id": "308687", + "ident": "IT-0051", + "type": "small_airport", + "name": "Aviosuperficie Cumiana", + "latitude_deg": "44.939043", + "longitude_deg": "7.428925", + "elevation_ft": "984", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Cumiana (TO)", + "scheduled_service": "no", + "local_code": "TOCUM", + "keywords": "Skydreamcenter" + }, + { + "id": "308688", + "ident": "IT-0052", + "type": "small_airport", + "name": "Aviosuperficie Francavilla Bisio", + "latitude_deg": "44.729868", + "longitude_deg": "8.730075", + "elevation_ft": "525", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Francavilla Bisio (AL)", + "scheduled_service": "no", + "local_code": "ALFVB" + }, + { + "id": "308689", + "ident": "IT-0053", + "type": "small_airport", + "name": "Aviosuperficie Gattinara", + "latitude_deg": "45.605662", + "longitude_deg": "8.324289", + "elevation_ft": "922", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Gattinara (VC)", + "scheduled_service": "no", + "local_code": "VCGAT" + }, + { + "id": "308690", + "ident": "IT-0054", + "type": "small_airport", + "name": "Aviosuperficie Il Picchio", + "latitude_deg": "45.708667", + "longitude_deg": "8.595667", + "elevation_ft": "699", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Borgo Ticino (NO)", + "scheduled_service": "no", + "local_code": "NOBRT", + "keywords": "Il Picchio" + }, + { + "id": "308691", + "ident": "IT-0055", + "type": "small_airport", + "name": "Aviosuperficie Pegasus 2000", + "latitude_deg": "45.30993", + "longitude_deg": "7.665453", + "elevation_ft": "1312", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Busano (TO)", + "scheduled_service": "no", + "local_code": "TOBUS", + "home_link": "http://www.scuolavolopegasus.com/dove-siamo", + "keywords": "Pegasus 2000" + }, + { + "id": "308692", + "ident": "IT-0056", + "type": "small_airport", + "name": "Aviosuperficie Alpi Marittime", + "latitude_deg": "44.391111", + "longitude_deg": "7.725556", + "elevation_ft": "1457", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Pianfei (CN)", + "scheduled_service": "no", + "local_code": "CNPIA", + "home_link": "http://www.alpimarittime.net/dove" + }, + { + "id": "308693", + "ident": "IT-0057", + "type": "small_airport", + "name": "Aviosuperficie Piovera", + "latitude_deg": "44.935833", + "longitude_deg": "8.749333", + "elevation_ft": "312", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Piovera (AL)", + "scheduled_service": "no", + "local_code": "ALASS", + "keywords": "Centro ULM Alessandria" + }, + { + "id": "308694", + "ident": "IT-0058", + "type": "small_airport", + "name": "Aviosuperficie Prealpi-Musinè", + "latitude_deg": "45.124499", + "longitude_deg": "7.521442", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Pianezza (TO)", + "scheduled_service": "no", + "local_code": "TOPIA", + "home_link": "http://www.scuolavolopegasus.com/dove-siamo", + "keywords": "GAP" + }, + { + "id": "308695", + "ident": "IT-0059", + "type": "small_airport", + "name": "Aviosuperficie \"Città di Tortona\"", + "latitude_deg": "44.938436", + "longitude_deg": "8.865881", + "elevation_ft": "315", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Tortona (AL)", + "scheduled_service": "no", + "local_code": "ALTRT" + }, + { + "id": "308696", + "ident": "IT-0060", + "type": "closed", + "name": "Aviosuperficie Valentino", + "latitude_deg": "44.437222", + "longitude_deg": "7.660556", + "elevation_ft": "1457", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Castelletto Stura (CN)", + "scheduled_service": "no", + "keywords": "Valentino" + }, + { + "id": "314853", + "ident": "IT-0061", + "type": "heliport", + "name": "Capitalia Heliport", + "latitude_deg": "41.824691", + "longitude_deg": "12.381729", + "elevation_ft": "116", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Rome", + "scheduled_service": "no", + "gps_code": "LIAD" + }, + { + "id": "308698", + "ident": "IT-0062", + "type": "small_airport", + "name": "Campo di Volo \"Bosio Guido\"", + "latitude_deg": "44.434194", + "longitude_deg": "7.632258", + "elevation_ft": "1499", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Castelletto Stura (CN)", + "scheduled_service": "no", + "local_code": "CNCST" + }, + { + "id": "308699", + "ident": "IT-0063", + "type": "small_airport", + "name": "Campo di Volo Country Fly", + "latitude_deg": "44.503056", + "longitude_deg": "7.821667", + "elevation_ft": "1350", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Bene Vagienna (CN)", + "scheduled_service": "no", + "local_code": "CN06", + "keywords": "Avio Langhe,Country Fly" + }, + { + "id": "308700", + "ident": "IT-0064", + "type": "small_airport", + "name": "Campo di volo Ploia", + "latitude_deg": "44.884167", + "longitude_deg": "8.780833", + "elevation_ft": "420", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "San Giuliano Vecchio (AL)", + "scheduled_service": "no", + "local_code": "ALTOR" + }, + { + "id": "308701", + "ident": "IT-0065", + "type": "small_airport", + "name": "Campo volo \"Il Laghetto\"", + "latitude_deg": "44.777333", + "longitude_deg": "8.1295", + "elevation_ft": "450", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Castagnole Lanze (AT)", + "scheduled_service": "no", + "local_code": "ATCAL", + "home_link": "http://www.trattorialaghetto.it/campo_volo.htm" + }, + { + "id": "308702", + "ident": "IT-0066", + "type": "closed", + "name": "Campo Volo Angela e Sara", + "latitude_deg": "45.163889", + "longitude_deg": "8.123333", + "elevation_ft": "427", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Verrua Savoia (TO)", + "scheduled_service": "no", + "local_code": "TOVER" + }, + { + "id": "308703", + "ident": "IT-0067", + "type": "small_airport", + "name": "Altiporto Chamois", + "latitude_deg": "45.833793", + "longitude_deg": "7.618504", + "elevation_ft": "5600", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-23", + "municipality": "Chamois (AO)", + "scheduled_service": "no", + "local_code": "AOCHA" + }, + { + "id": "308704", + "ident": "IT-0068", + "type": "small_airport", + "name": "Campo di Volo Chatelair", + "latitude_deg": "45.74", + "longitude_deg": "7.480556", + "elevation_ft": "1500", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-23", + "municipality": "Nus (AO)", + "scheduled_service": "no", + "local_code": "AONUS", + "home_link": "http://www.aeroclubcorradogex.com/" + }, + { + "id": "308705", + "ident": "IT-0069", + "type": "small_airport", + "name": "Campo Volo Falchi della Baraggia", + "latitude_deg": "45.446736", + "longitude_deg": "8.191519", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "fraz. SAN DAMIANO", + "scheduled_service": "no", + "local_code": "VCCAR", + "home_link": "http://www.flyclubvoyager.it/" + }, + { + "id": "308706", + "ident": "IT-0070", + "type": "closed", + "name": "Campo di Volo Malabaila", + "latitude_deg": "44.678889", + "longitude_deg": "7.818611", + "elevation_ft": "935", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Cherasco (CN)", + "scheduled_service": "no", + "local_code": "CNCHE", + "keywords": "Malabaila" + }, + { + "id": "308707", + "ident": "IT-0071", + "type": "small_airport", + "name": "Campo di Volo Sant'Elia", + "latitude_deg": "44.741963", + "longitude_deg": "7.70987", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Racconigi (CN)", + "scheduled_service": "no", + "local_code": "CNRAC", + "home_link": "http://www.flyingturtle.it/" + }, + { + "id": "308708", + "ident": "IT-0072", + "type": "small_airport", + "name": "Campo volo Val Triversa", + "latitude_deg": "44.906894", + "longitude_deg": "8.034096", + "elevation_ft": "574", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Cantarana (AT)", + "scheduled_service": "no", + "local_code": "ATCAN", + "home_link": "http://www.ulm.it/hangar/mix/valtriversa/" + }, + { + "id": "308709", + "ident": "IT-0073", + "type": "small_airport", + "name": "Campo di Volo Valsusa", + "latitude_deg": "45.1125", + "longitude_deg": "7.287222", + "elevation_ft": "1250", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Vaie (TO)", + "scheduled_service": "no", + "local_code": "TO26", + "home_link": "http://www.vaievola.it/" + }, + { + "id": "308710", + "ident": "IT-0074", + "type": "small_airport", + "name": "Campo di Volo Carolina", + "latitude_deg": "45.253154", + "longitude_deg": "7.898977", + "elevation_ft": "708", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Caluso (TO)", + "scheduled_service": "no", + "local_code": "TOCAL", + "keywords": "Airone,Carolina" + }, + { + "id": "308711", + "ident": "IT-0075", + "type": "small_airport", + "name": "Cerreto Castello", + "latitude_deg": "45.548056", + "longitude_deg": "8.161111", + "elevation_ft": "1000", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Cerreto Castello (BI)", + "scheduled_service": "no", + "local_code": "BICRR" + }, + { + "id": "308712", + "ident": "IT-0076", + "type": "small_airport", + "name": "Club Volo Ultraleggeri del Canavese", + "latitude_deg": "45.358333", + "longitude_deg": "7.719722", + "elevation_ft": "853", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Castellamonte (TO)", + "scheduled_service": "no", + "local_code": "TOCTM" + }, + { + "id": "308713", + "ident": "IT-0077", + "type": "closed", + "name": "Fly Igor", + "latitude_deg": "45.298056", + "longitude_deg": "8.0075", + "elevation_ft": "950", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Cigliano (VC)", + "scheduled_service": "no" + }, + { + "id": "315439", + "ident": "IT-0078", + "type": "small_airport", + "name": "Prosecco Airfield", + "latitude_deg": "45.703333", + "longitude_deg": "13.759722", + "elevation_ft": "820", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Trieste", + "scheduled_service": "no", + "keywords": "Aerocampo Prosecco" + }, + { + "id": "315440", + "ident": "IT-0079", + "type": "small_airport", + "name": "Aviosuperficie La Speziana", + "latitude_deg": "45.12847", + "longitude_deg": "9.36284", + "elevation_ft": "459", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Spessa Po (PV)", + "scheduled_service": "no", + "local_code": "PVSPO", + "home_link": "http://www.speziana.it", + "keywords": "Spessa Po" + }, + { + "id": "315441", + "ident": "IT-0080", + "type": "small_airport", + "name": "Mazarack Flying Field", + "latitude_deg": "45.639444", + "longitude_deg": "12.943611", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Caorle", + "scheduled_service": "no", + "local_code": "VECAO", + "keywords": "Campo di Volo Mazarack" + }, + { + "id": "315442", + "ident": "IT-0081", + "type": "small_airport", + "name": "Aviosuperficie Pradelle", + "latitude_deg": "45.49278", + "longitude_deg": "10.119883", + "elevation_ft": "341", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Torbole di Casaglia (BS)", + "scheduled_service": "no", + "local_code": "BSTOR", + "home_link": "http://www.volobrescia.it" + }, + { + "id": "315443", + "ident": "IT-0082", + "type": "small_airport", + "name": "Madonna di Loreto Airfield", + "latitude_deg": "43.43913", + "longitude_deg": "13.57054", + "elevation_ft": "47", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-57", + "municipality": "Recanati", + "scheduled_service": "no", + "local_code": "MCREC", + "keywords": "Loreto, Aviosuperficie \"Madonna di Loreto\"" + }, + { + "id": "315460", + "ident": "IT-0083", + "type": "small_airport", + "name": "La Tomasina", + "latitude_deg": "45.3283659", + "longitude_deg": "8.7974125", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "scheduled_service": "no" + }, + { + "id": "315492", + "ident": "IT-0084", + "type": "small_airport", + "name": "Campo di Volo Vervò", + "latitude_deg": "46.313801", + "longitude_deg": "11.111898", + "elevation_ft": "3080", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-32", + "municipality": "Vervò (TN)", + "scheduled_service": "no", + "local_code": "TNVER", + "home_link": "http://www.sportingavioclubvervo.it/" + }, + { + "id": "315520", + "ident": "IT-0085", + "type": "small_airport", + "name": "Campo di Volo Samolaco", + "latitude_deg": "46.23515", + "longitude_deg": "9.43206", + "elevation_ft": "689", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Samolaco (SO)", + "scheduled_service": "no", + "local_code": "SOSAM", + "keywords": "A.V.L.U." + }, + { + "id": "315595", + "ident": "IT-0086", + "type": "small_airport", + "name": "La Comina", + "latitude_deg": "45.987222", + "longitude_deg": "12.654444", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Pordenone (PN)", + "scheduled_service": "no", + "local_code": "PNCOM" + }, + { + "id": "315597", + "ident": "IT-0087", + "type": "small_airport", + "name": "Guglielmo Zamboni", + "latitude_deg": "44.475", + "longitude_deg": "11.541664", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Ozzano Emilia (BO)", + "scheduled_service": "no", + "gps_code": "LIKO", + "local_code": "BO05" + }, + { + "id": "315631", + "ident": "IT-0088", + "type": "small_airport", + "name": "Monti della Tolfa Airfield", + "latitude_deg": "42.0188", + "longitude_deg": "11.9827", + "elevation_ft": "46", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Tolfa (RM)", + "scheduled_service": "no", + "local_code": "RMMTF", + "keywords": "Tolfa,Monti della Tolfa" + }, + { + "id": "315656", + "ident": "IT-0089", + "type": "small_airport", + "name": "Aviosuperficie Castigliano del Lago", + "latitude_deg": "43.134212", + "longitude_deg": "12.03425", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Castigliano del Lago (PG)", + "scheduled_service": "no", + "local_code": "PGCST" + }, + { + "id": "315663", + "ident": "IT-0090", + "type": "small_airport", + "name": "Aviosuperfice Mensanello", + "latitude_deg": "43.372874", + "longitude_deg": "11.120749", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Colle di val d'Elsa (SI)", + "scheduled_service": "no", + "local_code": "SIMEN", + "keywords": "Mensanello" + }, + { + "id": "315769", + "ident": "IT-0091", + "type": "small_airport", + "name": "Termon Altiport", + "latitude_deg": "46.270833", + "longitude_deg": "11.025833", + "elevation_ft": "2231", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-32", + "municipality": "Campodenno (TN)", + "scheduled_service": "no", + "local_code": "TNCDN", + "keywords": "Campodenno" + }, + { + "id": "315771", + "ident": "IT-0092", + "type": "small_airport", + "name": "Centro Volo Campania", + "latitude_deg": "40.9515272", + "longitude_deg": "14.41188", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "scheduled_service": "no" + }, + { + "id": "315859", + "ident": "IT-0093", + "type": "small_airport", + "name": "Beppe Rascaglia Flying Field", + "latitude_deg": "38.515556", + "longitude_deg": "15.942222", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-78", + "municipality": "Nicotera (RC)", + "scheduled_service": "no", + "local_code": "RCNIC", + "keywords": "Campo di Volo \"Beppe Rascaglia\"" + }, + { + "id": "315862", + "ident": "IT-0094", + "type": "small_airport", + "name": "Aviosuperficie Macrì", + "latitude_deg": "40.054607", + "longitude_deg": "18.214738", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Supersano (LE)", + "scheduled_service": "no", + "local_code": "LESUP", + "home_link": "http://www.aviosuperficiemacri.it" + }, + { + "id": "315864", + "ident": "IT-0095", + "type": "small_airport", + "name": "Campo di Volo Umberto Nobile", + "latitude_deg": "41.235278", + "longitude_deg": "13.820556", + "elevation_ft": "22", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Sessa Aurunca (CE)", + "scheduled_service": "no", + "local_code": "CECES", + "keywords": "Le Cese" + }, + { + "id": "315865", + "ident": "IT-0096", + "type": "small_airport", + "name": "Aviosuperficie Sabaudia", + "latitude_deg": "41.333611", + "longitude_deg": "13.021389", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Sabaudia (LT)", + "scheduled_service": "no", + "local_code": "LTSAB" + }, + { + "id": "315866", + "ident": "IT-0097", + "type": "small_airport", + "name": "Campo di Volo \"Fly Club\"", + "latitude_deg": "41.10457", + "longitude_deg": "14.45698", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Sant'Agata de'Goti (BN)", + "scheduled_service": "no", + "local_code": "BNSAG", + "keywords": "Fly Club,Sant'Agata" + }, + { + "id": "315867", + "ident": "IT-0098", + "type": "small_airport", + "name": "Aviosuperficie Condor", + "latitude_deg": "41.415", + "longitude_deg": "12.979444", + "elevation_ft": "56", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Borgo San Michele (LT)", + "scheduled_service": "no", + "local_code": "LTLAT" + }, + { + "id": "315869", + "ident": "IT-0099", + "type": "small_airport", + "name": "Aviosuperficie \"Tuscania\"", + "latitude_deg": "42.410446", + "longitude_deg": "11.898665", + "elevation_ft": "591", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "San Lazzaro (VT)", + "scheduled_service": "no", + "local_code": "VTTUL" + }, + { + "id": "315871", + "ident": "IT-0100", + "type": "small_airport", + "name": "Aviosuperficie Alisoriano", + "latitude_deg": "42.433658", + "longitude_deg": "12.292147", + "elevation_ft": "985", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Soriano nel Cimino (VT)", + "scheduled_service": "no", + "local_code": "VTSOR", + "home_link": "http://www.alisoriano.it" + }, + { + "id": "315872", + "ident": "IT-0101", + "type": "small_airport", + "name": "Campo di Volo \"Aerolight Marche\"", + "latitude_deg": "43.512778", + "longitude_deg": "13.193611", + "elevation_ft": "328", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-57", + "municipality": "Jesi (AN)", + "scheduled_service": "no", + "local_code": "ANJES", + "keywords": "Delta Club Jesi" + }, + { + "id": "315873", + "ident": "IT-0102", + "type": "small_airport", + "name": "Campo di Volo Montefano", + "latitude_deg": "43.42075", + "longitude_deg": "13.39928", + "elevation_ft": "249", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-57", + "municipality": "Montefano (MC)", + "scheduled_service": "no", + "local_code": "MCMFA", + "keywords": "Flyclub Montefano" + }, + { + "id": "315874", + "ident": "IT-0103", + "type": "small_airport", + "name": "Ali di Classe Airfield", + "latitude_deg": "44.322803", + "longitude_deg": "12.308312", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Lido di Classe (RA)", + "scheduled_service": "no", + "local_code": "RACLA", + "home_link": "http://www.alidiclasse.info/", + "keywords": "Aviosuperficie Ali di Classe, Aviosuperficie Ennio Tarantola" + }, + { + "id": "315875", + "ident": "IT-0104", + "type": "small_airport", + "name": "Campo di Volo Villafranca", + "latitude_deg": "44.291111", + "longitude_deg": "12.026111", + "elevation_ft": "100", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Forlì", + "scheduled_service": "no", + "local_code": "FCVIF" + }, + { + "id": "315876", + "ident": "IT-0105", + "type": "small_airport", + "name": "Aviosuperficie \"LYRA 34\"", + "latitude_deg": "44.500278", + "longitude_deg": "11.944444", + "elevation_ft": "36", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Belricetto (RA)", + "scheduled_service": "no", + "local_code": "RABEL", + "home_link": "http://www.lyra34.com/", + "keywords": "LYRA 34" + }, + { + "id": "315877", + "ident": "IT-0106", + "type": "small_airport", + "name": "Campo di Volo \"Ali Filanti\"", + "latitude_deg": "44.582222", + "longitude_deg": "11.923056", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Alfonsine (FE)", + "scheduled_service": "no", + "local_code": "FE11", + "keywords": "Filo, Alifilanti" + }, + { + "id": "315878", + "ident": "IT-0107", + "type": "small_airport", + "name": "Campo di Volo \"Icaro Village\"", + "latitude_deg": "44.842996", + "longitude_deg": "11.485068", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Vigarano Mainarda (FE)", + "scheduled_service": "no", + "local_code": "FEVIG" + }, + { + "id": "315879", + "ident": "IT-0108", + "type": "small_airport", + "name": "Campo di Volo \"Le Merline\"", + "latitude_deg": "44.97287", + "longitude_deg": "9.479142", + "elevation_ft": "300", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Agazzano (PC)", + "scheduled_service": "no", + "local_code": "PCAGA" + }, + { + "id": "315880", + "ident": "IT-0109", + "type": "small_airport", + "name": "Campo di Volo \"Arbuschi\"", + "latitude_deg": "45.05", + "longitude_deg": "9.1625", + "elevation_ft": "223", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Robecco Pavese (PV)", + "scheduled_service": "no", + "local_code": "PVROB" + }, + { + "id": "315881", + "ident": "IT-0110", + "type": "small_airport", + "name": "Aviosuperficie Dovera", + "latitude_deg": "45.380525", + "longitude_deg": "9.534974", + "elevation_ft": "259", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Dovera (CR)", + "scheduled_service": "no", + "local_code": "CR01", + "keywords": "JFK Dovera" + }, + { + "id": "315882", + "ident": "IT-0111", + "type": "small_airport", + "name": "Aviosuperficie dei Navigli", + "latitude_deg": "45.414722", + "longitude_deg": "8.895", + "elevation_ft": "374", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Abbiategrasso", + "scheduled_service": "no", + "local_code": "MIABB" + }, + { + "id": "315883", + "ident": "IT-0112", + "type": "small_airport", + "name": "Campo di Volo \"Volo Club Milano\"", + "latitude_deg": "45.449444", + "longitude_deg": "8.998333", + "elevation_ft": "335", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Cisliano (MI)", + "scheduled_service": "no", + "local_code": "MICIS" + }, + { + "id": "315884", + "ident": "IT-0113", + "type": "small_airport", + "name": "Alicaorle Airfield", + "latitude_deg": "45.611944", + "longitude_deg": "12.814722", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Caorle (VE)", + "scheduled_service": "no", + "gps_code": "LIKE", + "local_code": "VE17", + "keywords": "Club Volo al Mare, Aviosuperficie Alicaorle" + }, + { + "id": "315885", + "ident": "IT-0114", + "type": "small_airport", + "name": "Aviosuperficie Zampieri", + "latitude_deg": "46.404444", + "longitude_deg": "12.8825", + "elevation_ft": "3281", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Enemonzo (UD)", + "scheduled_service": "no", + "local_code": "UDENE", + "home_link": "http://www.cvne.it" + }, + { + "id": "315888", + "ident": "IT-0115", + "type": "small_airport", + "name": "Sterzing / Vipiteno Airfield", + "latitude_deg": "46.883764", + "longitude_deg": "11.441338", + "elevation_ft": "3116", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-32", + "municipality": "Vipiteno", + "scheduled_service": "no", + "local_code": "BZVIP" + }, + { + "id": "315890", + "ident": "IT-0116", + "type": "small_airport", + "name": "Aviosuperficie \"Passo del Tonale\"", + "latitude_deg": "46.264722", + "longitude_deg": "10.599167", + "elevation_ft": "6550", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-32", + "municipality": "Vermiglio (BS)", + "scheduled_service": "no", + "local_code": "TNTON", + "home_link": "https://www.aeroportocaproni.com/it/17/aviosuperficie-tonale", + "keywords": "Tonale,Passo del Tonale" + }, + { + "id": "315903", + "ident": "IT-0117", + "type": "small_airport", + "name": "Aviosuperficie \"Il Nido delle Acquile\"", + "latitude_deg": "40.93769", + "longitude_deg": "16.497", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "scheduled_service": "no", + "local_code": "BAALT" + }, + { + "id": "315914", + "ident": "IT-0118", + "type": "small_airport", + "name": "Aviosuperficie Mezzana Bigli", + "latitude_deg": "45.065409", + "longitude_deg": "8.835176", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Mezzana Bigli (PV)", + "scheduled_service": "no", + "local_code": "PVMBI", + "keywords": "Nando Groppo,Club Astra" + }, + { + "id": "315970", + "ident": "IT-0119", + "type": "small_airport", + "name": "Aviosuperficie \"Sa Doda\"", + "latitude_deg": "39.361731", + "longitude_deg": "8.868309", + "elevation_ft": "88", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Decimoputzu (CA)", + "scheduled_service": "no", + "local_code": "CADEC", + "keywords": "XPTZ,Decimoputso,Decimoputzu,Sa Doda" + }, + { + "id": "315971", + "ident": "IT-0120", + "type": "small_airport", + "name": "Campo di Volo Sardegna", + "latitude_deg": "39.621944", + "longitude_deg": "9.101944", + "elevation_ft": "1118", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Gesico (CA)", + "scheduled_service": "no", + "local_code": "CAGES", + "keywords": "Argiolas Noas,Sardegna" + }, + { + "id": "315973", + "ident": "IT-0121", + "type": "small_airport", + "name": "Campo di Volo \"Oasi da Peppe\"", + "latitude_deg": "40.4525", + "longitude_deg": "15.001389", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Capaccio (SA)", + "scheduled_service": "no", + "local_code": "SACAP" + }, + { + "id": "315974", + "ident": "IT-0122", + "type": "small_airport", + "name": "Aviosuperficie Aerotre", + "latitude_deg": "40.449715", + "longitude_deg": "17.623776", + "elevation_ft": "256", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Manduria (TA)", + "scheduled_service": "no", + "local_code": "TAMAN" + }, + { + "id": "315975", + "ident": "IT-0123", + "type": "small_airport", + "name": "Campo di Volo \"Il Volo\"", + "latitude_deg": "40.421944", + "longitude_deg": "8.686667", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Pozzomaggiore (SS)", + "scheduled_service": "no", + "local_code": "SS01", + "keywords": "Putumajore,Il Volo" + }, + { + "id": "315977", + "ident": "IT-0124", + "type": "small_airport", + "name": "La Quercia", + "latitude_deg": "40.963053", + "longitude_deg": "16.633016", + "elevation_ft": "1181", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Toritto (BA)", + "scheduled_service": "no", + "local_code": "BATDQ" + }, + { + "id": "315978", + "ident": "IT-0125", + "type": "small_airport", + "name": "Campo di Volo Platamona", + "latitude_deg": "40.813333", + "longitude_deg": "8.470278", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Porto Torres (SS)", + "scheduled_service": "no", + "local_code": "SSPLA", + "keywords": "Platamona" + }, + { + "id": "315979", + "ident": "IT-0126", + "type": "small_airport", + "name": "Aviosuperficie \"Delta Club Napoli\"", + "latitude_deg": "41.065278", + "longitude_deg": "13.9625", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Castelvolturno", + "scheduled_service": "no", + "local_code": "CECVO", + "keywords": "Il Ranch" + }, + { + "id": "315980", + "ident": "IT-0127", + "type": "small_airport", + "name": "Pegaso Club 2000", + "latitude_deg": "41.35775", + "longitude_deg": "13.149013", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Pontinia (LT)", + "scheduled_service": "no", + "local_code": "LTPON" + }, + { + "id": "315985", + "ident": "IT-0128", + "type": "small_airport", + "name": "Campo di Volo Fiorano Wings", + "latitude_deg": "45.11933", + "longitude_deg": "9.705951", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "San Fiorano (LO)", + "scheduled_service": "no", + "local_code": "LOSFI", + "keywords": "Fiorano Wings" + }, + { + "id": "315987", + "ident": "IT-0129", + "type": "small_airport", + "name": "Aviosuperficie Caposile", + "latitude_deg": "45.564444", + "longitude_deg": "12.574722", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "San Donà di Piave", + "scheduled_service": "no", + "local_code": "VECAP", + "home_link": "http://www.aviosuperficiecaposile.it", + "keywords": "Caposile, Papere Vagabonde" + }, + { + "id": "315988", + "ident": "IT-0130", + "type": "small_airport", + "name": "Aviosuperficie \"Aquile Randagie\"", + "latitude_deg": "45.165668", + "longitude_deg": "11.035167", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Sorga (VR)", + "scheduled_service": "no", + "local_code": "VRNOG" + }, + { + "id": "315996", + "ident": "IT-0131", + "type": "small_airport", + "name": "Aviosuperficie Club Chiusdino", + "latitude_deg": "43.191012", + "longitude_deg": "11.143076", + "elevation_ft": "918", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Chiusdino (SI)", + "scheduled_service": "no", + "local_code": "SICHI" + }, + { + "id": "316064", + "ident": "IT-0132", + "type": "small_airport", + "name": "CdV \"38 N Fly Zone\"", + "latitude_deg": "37.9458", + "longitude_deg": "15.8836", + "elevation_ft": "160", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-78", + "municipality": "Condofuri Marina", + "scheduled_service": "no" + }, + { + "id": "316067", + "ident": "IT-0133", + "type": "small_airport", + "name": "CdV Ass.Sp. Parvolo", + "latitude_deg": "45.815556", + "longitude_deg": "12.752222", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Pramaggiore", + "scheduled_service": "no" + }, + { + "id": "316151", + "ident": "IT-0134", + "type": "small_airport", + "name": "Campo di Volo Careas", + "latitude_deg": "45.50668", + "longitude_deg": "9.66814", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Caravaggio (BG)", + "scheduled_service": "no", + "local_code": "BGMAS" + }, + { + "id": "316152", + "ident": "IT-0135", + "type": "small_airport", + "name": "Campo di Volo \"La Zappaglia\"", + "latitude_deg": "45.326667", + "longitude_deg": "10.378056", + "elevation_ft": "216", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Calvisano (BS)", + "scheduled_service": "no", + "local_code": "BSCLV" + }, + { + "id": "316153", + "ident": "IT-0136", + "type": "small_airport", + "name": "Aviosuperficie Vigarolo", + "latitude_deg": "45.2175", + "longitude_deg": "9.466667", + "elevation_ft": "220", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Borghetto Lodigiano (LO)", + "scheduled_service": "no", + "local_code": "LOVIG" + }, + { + "id": "316155", + "ident": "IT-0137", + "type": "small_airport", + "name": "Campo di Volo \"La Fenice\"", + "latitude_deg": "44.999827", + "longitude_deg": "10.71339", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Suzzara (MN)", + "scheduled_service": "no", + "local_code": "MN05", + "keywords": "La Fenice" + }, + { + "id": "316156", + "ident": "IT-0138", + "type": "small_airport", + "name": "Campo di Volo \"Air Folies\"", + "latitude_deg": "45.53297", + "longitude_deg": "8.90103", + "elevation_ft": "558", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Casorezzo (MI)", + "scheduled_service": "no", + "local_code": "MICAS" + }, + { + "id": "316157", + "ident": "IT-0139", + "type": "closed", + "name": "Aviosuperficie Airone", + "latitude_deg": "45.588056", + "longitude_deg": "9.003751", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Origgio (VA)", + "scheduled_service": "no", + "local_code": "VAORI" + }, + { + "id": "316158", + "ident": "IT-0140", + "type": "small_airport", + "name": "Aviosuperficie Pravisdomini", + "latitude_deg": "45.824167", + "longitude_deg": "12.685278", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Pravisdomini (PN)", + "scheduled_service": "no", + "local_code": "PNPRA", + "keywords": "Pordenone" + }, + { + "id": "316159", + "ident": "IT-0141", + "type": "small_airport", + "name": "Campo di Volo \"Ali Venete\"", + "latitude_deg": "45.666667", + "longitude_deg": "11.808333", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Galliera Veneta (PD)", + "scheduled_service": "no", + "local_code": "PDGAL" + }, + { + "id": "316160", + "ident": "IT-0142", + "type": "small_airport", + "name": "Campo di Volo \"Il Pioniero\"", + "latitude_deg": "45.083889", + "longitude_deg": "11.661667", + "elevation_ft": "36", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Lusia (RO)", + "scheduled_service": "no", + "local_code": "ROLUS" + }, + { + "id": "316161", + "ident": "IT-0143", + "type": "small_airport", + "name": "Aviosuperficie \"San Giuseppe\"", + "latitude_deg": "45.85649", + "longitude_deg": "12.06555", + "elevation_ft": "419", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Vidor (TV)", + "scheduled_service": "no", + "local_code": "TVBOS" + }, + { + "id": "316162", + "ident": "IT-0144", + "type": "small_airport", + "name": "Aviosuperfice \"Alla Colombara\"", + "latitude_deg": "45.755", + "longitude_deg": "11.694167", + "elevation_ft": "328", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Bassano del Grappa (VI)", + "scheduled_service": "no", + "local_code": "VIBAS" + }, + { + "id": "316199", + "ident": "IT-0145", + "type": "closed", + "name": "Il Fantasma Arcole Airfield", + "latitude_deg": "45.36", + "longitude_deg": "11.294444", + "elevation_ft": "56", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Arcole", + "scheduled_service": "no", + "keywords": "Campo di Volo Il Fantasma Arcole" + }, + { + "id": "316200", + "ident": "IT-0146", + "type": "small_airport", + "name": "A/S Cà del Conte", + "latitude_deg": "44.868889", + "longitude_deg": "9.938057", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Alseno", + "scheduled_service": "no", + "keywords": "Cortina di Alseno" + }, + { + "id": "316203", + "ident": "IT-0147", + "type": "small_airport", + "name": "Campo di Volo Borgotaro Albareto", + "latitude_deg": "44.464558", + "longitude_deg": "9.715806", + "elevation_ft": "1450", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Albareto (PR)", + "scheduled_service": "no", + "local_code": "PRALB", + "keywords": "Mauro Guerra,Borgotaro" + }, + { + "id": "316204", + "ident": "IT-0148", + "type": "small_airport", + "name": "Campo di Volo \"Flying Buttero\"", + "latitude_deg": "42.517352", + "longitude_deg": "11.319137", + "elevation_ft": "49", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Manciano (GR)", + "scheduled_service": "no", + "local_code": "GRMAR", + "keywords": "Flying Buttero" + }, + { + "id": "316436", + "ident": "IT-0149", + "type": "small_airport", + "name": "Campo di Volo \"Le Tartarughe Volanti\"", + "latitude_deg": "45.609722", + "longitude_deg": "9.486667", + "elevation_ft": "646", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Trezzo d'Adda (MI)", + "scheduled_service": "no", + "local_code": "MITRE" + }, + { + "id": "316612", + "ident": "IT-0150", + "type": "small_airport", + "name": "Aviosuperficie F. Baracca", + "latitude_deg": "45.838889", + "longitude_deg": "12.193889", + "elevation_ft": "269", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Nervesa della Battaglia", + "scheduled_service": "no", + "local_code": "TVNER", + "keywords": "Jonathan, Baracca, F. Baracca" + }, + { + "id": "316747", + "ident": "IT-0151", + "type": "small_airport", + "name": "Pegasus Flying Club", + "latitude_deg": "45.669654", + "longitude_deg": "13.0394509", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Lignano", + "scheduled_service": "no" + }, + { + "id": "316750", + "ident": "IT-0152", + "type": "small_airport", + "name": "Aviosuperficie Olivola", + "latitude_deg": "41.17751", + "longitude_deg": "14.74734", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Benevento (BN)", + "scheduled_service": "no", + "local_code": "BNBEN", + "home_link": "http://www.aeroclubbenevento.it", + "keywords": "Gen. Nicola COLLARILE" + }, + { + "id": "316751", + "ident": "IT-0153", + "type": "small_airport", + "name": "Volturno Fly Aviosuperficie", + "latitude_deg": "41.1575", + "longitude_deg": "14.3669444", + "elevation_ft": "63", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Limatolo", + "scheduled_service": "no", + "home_link": "http://www.volturnofly.it" + }, + { + "id": "316752", + "ident": "IT-0154", + "type": "small_airport", + "name": "Aviosuperficie Alituscia", + "latitude_deg": "42.229167", + "longitude_deg": "12.120833", + "elevation_ft": "1270", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Vejano (VT)", + "scheduled_service": "no", + "local_code": "VTVEJ", + "home_link": "http://www.alituscia.it" + }, + { + "id": "316753", + "ident": "IT-0155", + "type": "small_airport", + "name": "Campo di Volo Acquasparta", + "latitude_deg": "42.6841667", + "longitude_deg": "12.5527778", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Acquasparta", + "scheduled_service": "no" + }, + { + "id": "316798", + "ident": "IT-0156", + "type": "small_airport", + "name": "Aviosuperficie Terra del Sole", + "latitude_deg": "42.775534", + "longitude_deg": "11.157271", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Grosseto", + "scheduled_service": "no", + "local_code": "GRGRO" + }, + { + "id": "316802", + "ident": "IT-0157", + "type": "small_airport", + "name": "Campo di Volo \"Ali del Po\"", + "latitude_deg": "44.97213", + "longitude_deg": "10.293684", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Sissa (PR)", + "scheduled_service": "no", + "local_code": "PRSIS", + "keywords": "Prati di Sissa,Agroturismo,Al Cason" + }, + { + "id": "316923", + "ident": "IT-0158", + "type": "small_airport", + "name": "Campo di Volo Aerdomus", + "latitude_deg": "41.9419444", + "longitude_deg": "12.1402778", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Ladispoli", + "scheduled_service": "no", + "keywords": "Aerdomus" + }, + { + "id": "316924", + "ident": "IT-0159", + "type": "small_airport", + "name": "Campo di Volo Ondalba", + "latitude_deg": "44.776117", + "longitude_deg": "7.879334", + "elevation_ft": "1017", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Baldissero D'Alba (CN)", + "scheduled_service": "no", + "local_code": "CNBAL", + "keywords": "Ondalba" + }, + { + "id": "316926", + "ident": "IT-0160", + "type": "small_airport", + "name": "Campo di Volo Castel Caladan", + "latitude_deg": "45.461305", + "longitude_deg": "9.576677", + "elevation_ft": "46", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Arzago d'Adda (BG)", + "scheduled_service": "no", + "local_code": "BGARZ", + "keywords": "Castel Caladan" + }, + { + "id": "316927", + "ident": "IT-0161", + "type": "small_airport", + "name": "Volo Molise", + "latitude_deg": "41.45948", + "longitude_deg": "14.53799", + "elevation_ft": "1738", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-67", + "municipality": "Campochiaro (CB)", + "scheduled_service": "no", + "local_code": "CBCCH", + "home_link": "http://www.cozy.it/AVM/AVM.html", + "keywords": "Volo Molise" + }, + { + "id": "316961", + "ident": "IT-0162", + "type": "small_airport", + "name": "Aviosuperficie Blue Silo", + "latitude_deg": "45.8872222", + "longitude_deg": "12.6277778", + "elevation_ft": "31", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Visinale di Pasiano", + "scheduled_service": "no", + "keywords": "Podere dell'Angelo" + }, + { + "id": "316962", + "ident": "IT-0163", + "type": "small_airport", + "name": "Aviosuperficie del Sagrantino", + "latitude_deg": "42.890278", + "longitude_deg": "12.533056", + "elevation_ft": "900", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Gualdo Cattaneo (PG)", + "scheduled_service": "no", + "local_code": "PGGCT", + "keywords": "Sagrantino" + }, + { + "id": "316963", + "ident": "IT-0164", + "type": "closed", + "name": "AIRBAS Airfield", + "latitude_deg": "40.565556", + "longitude_deg": "16.5925", + "elevation_ft": "213", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-77", + "municipality": "Montescaglioso", + "scheduled_service": "no", + "keywords": "Airbas, Aviosuperficie AIRBAS" + }, + { + "id": "316984", + "ident": "IT-0165", + "type": "small_airport", + "name": "Aviosuperficie Renzo Storai", + "latitude_deg": "43.96583", + "longitude_deg": "11.458056", + "elevation_ft": "889", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Vicchio del Mugello (FI)", + "scheduled_service": "no", + "local_code": "FIVIC", + "home_link": "http://www.aviostorai.com", + "keywords": "Renzo Storai,AvioStorai" + }, + { + "id": "316985", + "ident": "IT-0166", + "type": "small_airport", + "name": "Campo di Volo Alicocco", + "latitude_deg": "41.655", + "longitude_deg": "13.226389", + "elevation_ft": "190", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Ferentino (FR)", + "scheduled_service": "no", + "local_code": "FRFER", + "keywords": "Cocco, AliCocco" + }, + { + "id": "316986", + "ident": "IT-0167", + "type": "small_airport", + "name": "Aviosuperficie Ceresara", + "latitude_deg": "45.263695", + "longitude_deg": "10.582549", + "elevation_ft": "138", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Ceresara (MN)", + "scheduled_service": "no", + "local_code": "MNSMA" + }, + { + "id": "316987", + "ident": "IT-0168", + "type": "small_airport", + "name": "Campo di Volo \"Cab Club\"", + "latitude_deg": "45.057833", + "longitude_deg": "8.066817", + "elevation_ft": "764", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Montiglio", + "scheduled_service": "no", + "local_code": "AT02", + "keywords": "Cab Club" + }, + { + "id": "316997", + "ident": "IT-0169", + "type": "small_airport", + "name": "Campo di Volo \"Flying Tigers\"", + "latitude_deg": "45.441708", + "longitude_deg": "7.935971", + "elevation_ft": "751", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Albiano d'Ivrea", + "scheduled_service": "no", + "local_code": "TOALB", + "keywords": "Ivrea" + }, + { + "id": "316999", + "ident": "IT-0170", + "type": "small_airport", + "name": "Aviosuperficie Kong", + "latitude_deg": "45.76161", + "longitude_deg": "9.44497", + "elevation_ft": "633", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Monte Marenzo (LC)", + "scheduled_service": "no", + "local_code": "LCMON", + "keywords": "Kong" + }, + { + "id": "317000", + "ident": "IT-0171", + "type": "small_airport", + "name": "Aviosuperficie Piancada", + "latitude_deg": "45.76417", + "longitude_deg": "13.07304", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Palazzolo della Stella (UD)", + "scheduled_service": "no", + "local_code": "UDPNC", + "keywords": "Piancada" + }, + { + "id": "317001", + "ident": "IT-0172", + "type": "small_airport", + "name": "Aviosuperficie Stella", + "latitude_deg": "44.95094", + "longitude_deg": "11.62722", + "elevation_ft": "6", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Fiesso Umbertiano (RO)", + "scheduled_service": "no", + "local_code": "ROFIE", + "keywords": "Stella" + }, + { + "id": "317002", + "ident": "IT-0173", + "type": "small_airport", + "name": "Ultralight Friuli Airfield", + "latitude_deg": "45.93098", + "longitude_deg": "13.362", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Trivignano (UD)", + "scheduled_service": "no", + "local_code": "UDTRI", + "keywords": "Ultralight Friuli, Aviosuperficie Ultralight Friuli" + }, + { + "id": "317003", + "ident": "IT-0174", + "type": "small_airport", + "name": "Ali Libere", + "latitude_deg": "42.829833", + "longitude_deg": "12.683383", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Castelritaldi (PG)", + "scheduled_service": "no", + "local_code": "PGCRT" + }, + { + "id": "317004", + "ident": "IT-0175", + "type": "small_airport", + "name": "Aviosuperficie Stintino", + "latitude_deg": "40.88295", + "longitude_deg": "8.25418", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Stintino (SS)", + "scheduled_service": "no", + "local_code": "SSSTI" + }, + { + "id": "317005", + "ident": "IT-0176", + "type": "small_airport", + "name": "Aviosuperficie La Filanda", + "latitude_deg": "43.4464", + "longitude_deg": "11.67414", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Pergine Valdarno (AR)", + "scheduled_service": "no", + "local_code": "AR10", + "home_link": "http://www.arturoghezzi.it/aviosuperficie/" + }, + { + "id": "317006", + "ident": "IT-0177", + "type": "small_airport", + "name": "Enrico Mattei Airfield", + "latitude_deg": "40.431896", + "longitude_deg": "16.5538", + "elevation_ft": "180", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-77", + "municipality": "Pisticci (MT)", + "scheduled_service": "no", + "local_code": "MTPIC", + "home_link": "http://www.basilicata-airport.eu/index.php?lang=en", + "wikipedia_link": "https://it.wikipedia.org/wiki/Aviosuperficie_Enrico_Mattei", + "keywords": "Basilicata Airport, Pisticci, Aviosuperficie Enrico Mattei, Matera" + }, + { + "id": "317007", + "ident": "IT-0178", + "type": "small_airport", + "name": "Pisticci Flying Field", + "latitude_deg": "40.399699", + "longitude_deg": "16.636972", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-77", + "municipality": "Pisticci (MT)", + "scheduled_service": "no", + "local_code": "MTPIS", + "keywords": "Campo di Volo Pisticci" + }, + { + "id": "317242", + "ident": "IT-0179", + "type": "small_airport", + "name": "Aviosuperficie Sibari Fly", + "latitude_deg": "39.757418", + "longitude_deg": "16.435418", + "elevation_ft": "35", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-78", + "municipality": "Sibari Scalo (CS)", + "scheduled_service": "no", + "local_code": "CSSIP" + }, + { + "id": "317363", + "ident": "IT-0180", + "type": "small_airport", + "name": "Aviosuperficie \"Il Gabbiano\"", + "latitude_deg": "43.051711", + "longitude_deg": "10.552012", + "elevation_ft": "43", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "San Vincenzo (LI)", + "scheduled_service": "no", + "local_code": "LISVC", + "keywords": "Gabbiano, Il Gabbiano" + }, + { + "id": "317365", + "ident": "IT-0181", + "type": "small_airport", + "name": "Aviosuperficie Aliscarlino", + "latitude_deg": "42.912222", + "longitude_deg": "10.816667", + "elevation_ft": "9", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Scarlino (GR)", + "scheduled_service": "no", + "local_code": "GRSCA" + }, + { + "id": "317368", + "ident": "IT-0182", + "type": "small_airport", + "name": "Campo di Volo \"San Felice\"", + "latitude_deg": "44.8325", + "longitude_deg": "11.120833", + "elevation_ft": "90", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "San Felice sul Panaro (MO)", + "scheduled_service": "no", + "local_code": "MOSFP" + }, + { + "id": "317371", + "ident": "IT-0183", + "type": "closed", + "name": "Molise Ultravolo Airfield", + "latitude_deg": "41.97547", + "longitude_deg": "15.02005", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-67", + "municipality": "Termoli (CB)", + "scheduled_service": "no", + "local_code": "CBTMO", + "keywords": "Aviosuperficie Molise Ultravolo" + }, + { + "id": "317372", + "ident": "IT-0184", + "type": "small_airport", + "name": "Arcora Flying Field", + "latitude_deg": "41.94428", + "longitude_deg": "15.04761", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-67", + "municipality": "Campomarina", + "scheduled_service": "no", + "keywords": "Campo di Volo Arcora" + }, + { + "id": "317373", + "ident": "IT-0185", + "type": "small_airport", + "name": "Aviosuperficie Pantano", + "latitude_deg": "40.56167", + "longitude_deg": "15.7599", + "elevation_ft": "2625", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-77", + "municipality": "Pignola", + "scheduled_service": "no", + "local_code": "PZPAN", + "home_link": "http://www.centroicaro.it/icaro/aviosuperficie.asp", + "keywords": "Pantano, Centro Icaro" + }, + { + "id": "317404", + "ident": "IT-0186", + "type": "small_airport", + "name": "Aviosuperficie Ali Nettuno", + "latitude_deg": "41.503775", + "longitude_deg": "12.701976", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Nettuno", + "scheduled_service": "no", + "gps_code": "RM07", + "local_code": "RMNTT", + "home_link": "http://www.alinettuno.it" + }, + { + "id": "317420", + "ident": "IT-0187", + "type": "small_airport", + "name": "Aviosuperficie Dorgali", + "latitude_deg": "40.348344", + "longitude_deg": "9.547495", + "elevation_ft": "587", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Dorgali", + "scheduled_service": "no", + "local_code": "NUDOR" + }, + { + "id": "317467", + "ident": "IT-0188", + "type": "small_airport", + "name": "Campo di Volo Thiesi", + "latitude_deg": "40.53542", + "longitude_deg": "8.6055", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Thiesi", + "scheduled_service": "no", + "keywords": "L'Aviatore" + }, + { + "id": "317479", + "ident": "IT-0189", + "type": "small_airport", + "name": "Aviosuperficie AVRO", + "latitude_deg": "46.235833", + "longitude_deg": "13.073333", + "elevation_ft": "557", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Osoppo (UD)", + "scheduled_service": "no", + "gps_code": "LIKH", + "local_code": "UD03", + "home_link": "http://www.avro.it", + "keywords": "Rivoli di Osoppo,AVRO,A.V.R.O." + }, + { + "id": "317499", + "ident": "IT-0190", + "type": "small_airport", + "name": "Aviosuperficie Baialupo", + "latitude_deg": "45.5529", + "longitude_deg": "9.50567", + "elevation_ft": "489", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Cassano d'Adda (MI)", + "scheduled_service": "no", + "local_code": "MICSS", + "home_link": "http://www.baialupo.com", + "keywords": "Baialupo" + }, + { + "id": "317563", + "ident": "IT-0191", + "type": "small_airport", + "name": "Campo di Volo L'ELIKA", + "latitude_deg": "44.88293", + "longitude_deg": "7.56105", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Castagnole Piemonte (TO)", + "scheduled_service": "no", + "local_code": "TOCAS", + "home_link": "http://www.scuolavoloicarus.it/contatti/", + "keywords": "L'Elika" + }, + { + "id": "317569", + "ident": "IT-0192", + "type": "small_airport", + "name": "Campo di Volo Le Streghe", + "latitude_deg": "45.395556", + "longitude_deg": "8.706389", + "elevation_ft": "410", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Sozzago (NO)", + "scheduled_service": "no", + "local_code": "NOSOZ", + "keywords": "Le Streghe" + }, + { + "id": "317571", + "ident": "IT-0193", + "type": "small_airport", + "name": "Campo di Volo Lucchina Fly Club\"", + "latitude_deg": "45.3236111", + "longitude_deg": "8.0008333", + "elevation_ft": "951", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Moncrivello", + "scheduled_service": "no", + "keywords": "Lucchina" + }, + { + "id": "317606", + "ident": "IT-0194", + "type": "small_airport", + "name": "Aviosuperficie \"Santa Lucia\"", + "latitude_deg": "45.484167", + "longitude_deg": "9.9525", + "elevation_ft": "357", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Cizzago (BS)", + "scheduled_service": "no", + "local_code": "BSCIZ", + "home_link": "http://www.vittorialata.com", + "keywords": "Santa Lucia, Aviare" + }, + { + "id": "317609", + "ident": "IT-0195", + "type": "small_airport", + "name": "Aviosuperficie Corry's", + "latitude_deg": "45.519444", + "longitude_deg": "10.38", + "elevation_ft": "541", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Nuvolera (BS)", + "scheduled_service": "no", + "local_code": "BSNUV", + "keywords": "Corry" + }, + { + "id": "317612", + "ident": "IT-0196", + "type": "small_airport", + "name": "Aviosuperficie \"Natale/Battistoni\"", + "latitude_deg": "45.334722", + "longitude_deg": "8.824722", + "elevation_ft": "357", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Vigevano (PV)", + "scheduled_service": "no", + "local_code": "PVVGB", + "home_link": "http://www.flying-circus.it", + "keywords": "Natale,Battistoni,Flying Circus" + }, + { + "id": "317624", + "ident": "IT-0197", + "type": "small_airport", + "name": "Aviosuperficie \"Il Borro\"", + "latitude_deg": "43.536111", + "longitude_deg": "11.705", + "elevation_ft": "900", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "San Giustino (AR)", + "scheduled_service": "no", + "local_code": "ARBOR", + "home_link": "http://www.compagniavolatori.com" + }, + { + "id": "317625", + "ident": "IT-0198", + "type": "small_airport", + "name": "Aviosuperficie \"Reno Air Club\"", + "latitude_deg": "44.61269", + "longitude_deg": "11.32424", + "elevation_ft": "125", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Argelato", + "scheduled_service": "no", + "local_code": "BOARG", + "home_link": "http://www.renoairclub.it", + "keywords": "Reno Air Club" + }, + { + "id": "317626", + "ident": "IT-0199", + "type": "closed", + "name": "Montegaldella Airfield", + "latitude_deg": "45.443407", + "longitude_deg": "11.651087", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Montegaldella (VI)", + "scheduled_service": "no", + "local_code": "VIMGA" + }, + { + "id": "317627", + "ident": "IT-0200", + "type": "small_airport", + "name": "Aviosuperficie Sassuolo", + "latitude_deg": "44.571667", + "longitude_deg": "10.78", + "elevation_ft": "311", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Sassuolo (MO)", + "scheduled_service": "no", + "local_code": "MO07", + "home_link": "http://www.aeroclubsassuolo.it" + }, + { + "id": "317633", + "ident": "IT-0201", + "type": "small_airport", + "name": "Aviosuperficie del Sole", + "latitude_deg": "40.624425", + "longitude_deg": "14.845842", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Salerno", + "scheduled_service": "no", + "local_code": "SAPON" + }, + { + "id": "317639", + "ident": "IT-0202", + "type": "heliport", + "name": "Venaria Reale / 34º Gruppo Squadroni AVES \"Toro\" [MIL]", + "latitude_deg": "45.133421", + "longitude_deg": "7.608827", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-U-A", + "municipality": "Venaria Reale", + "scheduled_service": "no", + "gps_code": "LILW", + "wikipedia_link": "https://it.wikipedia.org/wiki/Aeroporto_di_Venaria_Reale" + }, + { + "id": "317649", + "ident": "IT-0203", + "type": "small_airport", + "name": "Aviosuperficie Rovigo", + "latitude_deg": "45.031167", + "longitude_deg": "11.823667", + "elevation_ft": "22", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Rovigo (RO)", + "scheduled_service": "no", + "local_code": "ROROV", + "home_link": "http://www.aeroclubrovigo.it/", + "keywords": "Aeroclub Rovigo,Luciano Baldi" + }, + { + "id": "317652", + "ident": "IT-0204", + "type": "small_airport", + "name": "Campo di Volo Agroturismo Sasso d'Oro", + "latitude_deg": "46.181389", + "longitude_deg": "12.8225", + "elevation_ft": "780", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Sequals (PN)", + "scheduled_service": "no", + "local_code": "PNSEQ", + "home_link": "http://www.sassodoro.pn.it", + "keywords": "Solimbergo,Sassodoro" + }, + { + "id": "317666", + "ident": "IT-0205", + "type": "small_airport", + "name": "Aviosuperficie \"Cap. Pilota Saverio Tedesco\"", + "latitude_deg": "41.635", + "longitude_deg": "15.761667", + "elevation_ft": "380", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "San Giovanni Rotondo (FG)", + "scheduled_service": "no", + "local_code": "FGSGR", + "home_link": "http://www.garganovolo.it", + "keywords": "Gargano, Gargano Volo" + }, + { + "id": "317667", + "ident": "IT-0206", + "type": "small_airport", + "name": "Fondone Airfield", + "latitude_deg": "40.355883", + "longitude_deg": "18.232425", + "elevation_ft": "130", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Lecce", + "scheduled_service": "no", + "local_code": "LEFON", + "home_link": "http://www.vegaulm.it", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lecce_Airfield", + "keywords": "Vega, Vega ulm, Fondone, Aviosuperficie \"Fondone\", Lecce Airfield, Fondone Lecce Airfield" + }, + { + "id": "317719", + "ident": "IT-0207", + "type": "small_airport", + "name": "Aviosuperficie Pantalla", + "latitude_deg": "42.871167", + "longitude_deg": "12.383417", + "elevation_ft": "486", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Pantalla (PG)", + "scheduled_service": "no", + "local_code": "PGPNT", + "keywords": "Pantalla" + }, + { + "id": "317720", + "ident": "IT-0208", + "type": "small_airport", + "name": "Aviosuperficie Maccagno", + "latitude_deg": "44.42381", + "longitude_deg": "7.45917", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Maccagno (CN)", + "scheduled_service": "no", + "local_code": "CN11", + "keywords": "Caraglio,Maccagno" + }, + { + "id": "317722", + "ident": "IT-0209", + "type": "small_airport", + "name": "Aviosuperficie I Pinguini", + "latitude_deg": "43.87137", + "longitude_deg": "10.94651", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Quarrata (PT)", + "scheduled_service": "no", + "local_code": "PTQUA", + "home_link": "http://www.ipinguini.it" + }, + { + "id": "317728", + "ident": "IT-0210", + "type": "small_airport", + "name": "Aviosuperficie Pegaso Flying Club", + "latitude_deg": "41.541847", + "longitude_deg": "13.370451", + "elevation_ft": "360", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Ceccano (FR)", + "scheduled_service": "no", + "local_code": "FRCEC", + "home_link": "https://www.facebook.com/aviosuperficie.pegaso", + "keywords": "Pegaso, Pegaso Flying Club" + }, + { + "id": "317746", + "ident": "IT-0211", + "type": "small_airport", + "name": "Al Casale Airfield", + "latitude_deg": "45.984782", + "longitude_deg": "12.923537", + "elevation_ft": "148", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Codroipo (UD)", + "scheduled_service": "no", + "local_code": "UDCOD", + "home_link": "http://www.alcasale.eu", + "keywords": "Casali Loreto, Al Casale" + }, + { + "id": "317785", + "ident": "IT-0212", + "type": "small_airport", + "name": "Campo di Volo \"Air Patria\"", + "latitude_deg": "40.926943", + "longitude_deg": "14.061944", + "elevation_ft": "100", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Giuliano (NA)", + "scheduled_service": "no", + "local_code": "NAPAT", + "keywords": "Lago Patria" + }, + { + "id": "317786", + "ident": "IT-0213", + "type": "small_airport", + "name": "Aviosuperficie Aliquirra", + "latitude_deg": "39.678", + "longitude_deg": "9.46299", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Perdasdefogu (OG)", + "scheduled_service": "no", + "local_code": "OGPER", + "keywords": "Foghesu, Quirra, Aliquirra" + }, + { + "id": "317787", + "ident": "IT-0214", + "type": "small_airport", + "name": "Campo di Volo \"Peter Pan\"", + "latitude_deg": "42.97179", + "longitude_deg": "12.37247", + "elevation_ft": "574", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Marsciano (PG)", + "scheduled_service": "no", + "local_code": "PGMAR" + }, + { + "id": "317788", + "ident": "IT-0215", + "type": "small_airport", + "name": "Campo di Volo \"Aligubbio\"", + "latitude_deg": "43.3173", + "longitude_deg": "12.5731", + "elevation_ft": "1377", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Gubbio (PG)", + "scheduled_service": "no", + "local_code": "PGGUB", + "keywords": "Aligubbio" + }, + { + "id": "317814", + "ident": "IT-0216", + "type": "small_airport", + "name": "Aviosuperficie L'Aquila", + "latitude_deg": "42.300878", + "longitude_deg": "13.517175", + "elevation_ft": "1873", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-65", + "municipality": "Poggio Picenze (AQ)", + "scheduled_service": "no", + "local_code": "AQAQU", + "home_link": "http://www.aeroclublaquila.it/", + "keywords": "LI50,AQ10,aviosuperficie,laquila,aquila,fossa,poggiopicenze,aeroclublaquila,avio" + }, + { + "id": "317842", + "ident": "IT-0217", + "type": "small_airport", + "name": "Campo di Volo \"VolAvisio\"", + "latitude_deg": "46.27888", + "longitude_deg": "11.44837", + "elevation_ft": "2820", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-32", + "municipality": "Cavalese", + "scheduled_service": "no" + }, + { + "id": "317843", + "ident": "IT-0218", + "type": "small_airport", + "name": "Volopuro", + "latitude_deg": "45.56399", + "longitude_deg": "8.54139", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Momo (NO)", + "scheduled_service": "no", + "home_link": "http://www.volopuro.it" + }, + { + "id": "317853", + "ident": "IT-0219", + "type": "small_airport", + "name": "Campo di Volo Tuscany Flight", + "latitude_deg": "43.695333", + "longitude_deg": "10.800533", + "elevation_ft": "65", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "San Miniato (PI)", + "scheduled_service": "no", + "local_code": "PISMN", + "keywords": "Tuscany Flight" + }, + { + "id": "317854", + "ident": "IT-0220", + "type": "small_airport", + "name": "Aviosuperficie Avola-Gallina", + "latitude_deg": "36.945287", + "longitude_deg": "15.170774", + "elevation_ft": "114", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Avola (SR)", + "scheduled_service": "no", + "local_code": "SRAVO", + "keywords": "Galina" + }, + { + "id": "317888", + "ident": "IT-0221", + "type": "small_airport", + "name": "Aviosuperficie \"Avioclub Montagnana\"", + "latitude_deg": "45.24438", + "longitude_deg": "11.42567", + "elevation_ft": "32", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Montagnana (PD)", + "scheduled_service": "no", + "local_code": "PDMON", + "keywords": "Baschirotto" + }, + { + "id": "317889", + "ident": "IT-0222", + "type": "small_airport", + "name": "Aviosuperficie Divinangelo", + "latitude_deg": "41.471944", + "longitude_deg": "13.023611", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Sezze", + "scheduled_service": "no", + "local_code": "LT09", + "keywords": "Aeroclub Artena, Divinangelo, Sezze Scalo" + }, + { + "id": "317906", + "ident": "IT-0223", + "type": "small_airport", + "name": "K-Fly Flying Field", + "latitude_deg": "41.91128", + "longitude_deg": "15.81102", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Ischitella (FG)", + "scheduled_service": "no", + "local_code": "FGISC", + "home_link": "http://www.flylab.it/defaulte.htm", + "keywords": "Campo di Volo FlyLab, Campo di Volo K-Fly" + }, + { + "id": "317907", + "ident": "IT-0224", + "type": "small_airport", + "name": "Monticchio Airfield", + "latitude_deg": "40.377022", + "longitude_deg": "17.386017", + "elevation_ft": "124", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Pulsano (TA)", + "scheduled_service": "no", + "local_code": "TAPLS", + "keywords": "Monticchio, AirPulsano, Aviosuperficie Monticchio" + }, + { + "id": "317910", + "ident": "IT-0225", + "type": "small_airport", + "name": "Aviosuperficie Artena", + "latitude_deg": "41.673056", + "longitude_deg": "12.845556", + "elevation_ft": "649", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Artena (RM)", + "scheduled_service": "no", + "local_code": "RMART" + }, + { + "id": "317913", + "ident": "IT-0226", + "type": "small_airport", + "name": "Campo di Volo Villa Farsetti", + "latitude_deg": "45.49917", + "longitude_deg": "12.03139", + "elevation_ft": "22", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Santa Maria di Sala (VE)", + "scheduled_service": "no", + "local_code": "VESMS", + "keywords": "Ala Salese,Villa Farsetti" + }, + { + "id": "317916", + "ident": "IT-0227", + "type": "closed", + "name": "Campo di Volo Pozzilli", + "latitude_deg": "41.50223", + "longitude_deg": "14.08533", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-67", + "municipality": "Pozzilli", + "scheduled_service": "no", + "keywords": "Le Aquile" + }, + { + "id": "317917", + "ident": "IT-0228", + "type": "small_airport", + "name": "Campo di Volo Gianni Cerutti", + "latitude_deg": "45.34921", + "longitude_deg": "8.64632", + "elevation_ft": "393", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Vespolate (NO)", + "scheduled_service": "no", + "local_code": "NOVES", + "keywords": "Gianni Cerutti" + }, + { + "id": "317976", + "ident": "IT-0229", + "type": "small_airport", + "name": "Campo di Volo Natile", + "latitude_deg": "40.59059", + "longitude_deg": "16.769", + "elevation_ft": "974", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Ginosa (TA)", + "scheduled_service": "no", + "local_code": "TA05", + "keywords": "Natile" + }, + { + "id": "318087", + "ident": "IT-0230", + "type": "small_airport", + "name": "Campo di Volo Pietralunga", + "latitude_deg": "43.450539", + "longitude_deg": "12.401383", + "elevation_ft": "2263", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Pietralunga (PG)", + "scheduled_service": "no", + "local_code": "PGPLU" + }, + { + "id": "318090", + "ident": "IT-0231", + "type": "small_airport", + "name": "Campo di Volo Cavola", + "latitude_deg": "44.39646", + "longitude_deg": "10.53613", + "elevation_ft": "1768", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Toano (RE)", + "scheduled_service": "no", + "local_code": "RE05", + "keywords": "Cavola" + }, + { + "id": "318093", + "ident": "IT-0232", + "type": "small_airport", + "name": "Campo di Volo Santa Rita", + "latitude_deg": "42.75654", + "longitude_deg": "13.01628", + "elevation_ft": "2900", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Cascia (PG)", + "scheduled_service": "no", + "local_code": "PGCAS" + }, + { + "id": "318146", + "ident": "IT-0233", + "type": "small_airport", + "name": "Campo di Volo Cà Virginia", + "latitude_deg": "43.819065", + "longitude_deg": "12.677191", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-57", + "municipality": "Montecalvo in Foglia (PS)", + "scheduled_service": "no", + "local_code": "PUMON", + "keywords": "Cá Virginia,Virginia,Montecalvo" + }, + { + "id": "318147", + "ident": "IT-0234", + "type": "small_airport", + "name": "Campo di Volo Valdichiana", + "latitude_deg": "43.214021", + "longitude_deg": "11.823111", + "elevation_ft": "810", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Sinalunga (SI)", + "scheduled_service": "no", + "local_code": "SIVDC", + "keywords": "Valdichiana" + }, + { + "id": "318148", + "ident": "IT-0235", + "type": "small_airport", + "name": "Campo di Volo Ciannocio", + "latitude_deg": "43.122253", + "longitude_deg": "11.920488", + "elevation_ft": "826", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Castiglione del Lago (PG)", + "scheduled_service": "no", + "local_code": "PGCDL" + }, + { + "id": "318222", + "ident": "IT-0236", + "type": "small_airport", + "name": "Campo di Volo Policastro", + "latitude_deg": "40.114874", + "longitude_deg": "15.495315", + "elevation_ft": "95", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Santa Marina (SA)", + "scheduled_service": "no", + "local_code": "SA05", + "keywords": "Policastro,Bussentino,Santa Marina" + }, + { + "id": "318225", + "ident": "IT-0237", + "type": "closed", + "name": "Aviosuperficie Privata Teggiano", + "latitude_deg": "40.415529", + "longitude_deg": "15.53648", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Teggiano (SA)", + "scheduled_service": "no", + "local_code": "SA03" + }, + { + "id": "318284", + "ident": "IT-0238", + "type": "small_airport", + "name": "Campo di Volo \"Delta Condor\"", + "latitude_deg": "43.869653", + "longitude_deg": "10.301777", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Massarosa (LU)", + "scheduled_service": "no", + "local_code": "LUMSR", + "keywords": "Delta Condor, Girofly" + }, + { + "id": "318285", + "ident": "IT-0239", + "type": "small_airport", + "name": "Esperti Airfield", + "latitude_deg": "40.480095", + "longitude_deg": "17.885069", + "elevation_ft": "196", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Cellino San Marco (BR)", + "scheduled_service": "no", + "local_code": "BRCEL", + "home_link": "http://alimessapia.altervista.org/alimessapia/", + "keywords": "AliMessapia, Esperti, Aviosuperficie Esperti" + }, + { + "id": "318909", + "ident": "IT-0240", + "type": "small_airport", + "name": "Campo di Volo Monreale", + "latitude_deg": "39.583099", + "longitude_deg": "8.773265", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "San Gavino Monreale (CA)", + "scheduled_service": "no", + "local_code": "CASGA", + "home_link": "http://campo-volo-sangavino.webnode.it" + }, + { + "id": "318911", + "ident": "IT-0241", + "type": "small_airport", + "name": "Aviosuperficie Agrigento", + "latitude_deg": "37.247222", + "longitude_deg": "13.654722", + "elevation_ft": "167", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Agrigento", + "scheduled_service": "no", + "local_code": "AGFAV", + "home_link": "http://www.avioclubagrigento.it", + "keywords": "Valle dei Templi" + }, + { + "id": "318914", + "ident": "IT-0242", + "type": "small_airport", + "name": "Aviosuperficie Corte", + "latitude_deg": "40.10667", + "longitude_deg": "18.25833", + "elevation_ft": "262", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Melpignano (LE)", + "scheduled_service": "no", + "gps_code": "LINB", + "local_code": "LE12", + "home_link": "http://www.aviosuperficielecce.it" + }, + { + "id": "318917", + "ident": "IT-0243", + "type": "small_airport", + "name": "Campo di Volo \"Fly Sabina\"", + "latitude_deg": "42.1166667", + "longitude_deg": "12.7080556", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Montelibretti", + "scheduled_service": "no" + }, + { + "id": "324617", + "ident": "IT-0244", + "type": "small_airport", + "name": "Trike Team Cormorano", + "latitude_deg": "37.0994444", + "longitude_deg": "14.17", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Gela (CL)", + "scheduled_service": "no", + "local_code": "CLGRO" + }, + { + "id": "318979", + "ident": "IT-0245", + "type": "small_airport", + "name": "Val Vibrata Flying Field", + "latitude_deg": "42.809474", + "longitude_deg": "13.847142", + "elevation_ft": "269", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-65", + "municipality": "Corropoli (TE)", + "scheduled_service": "no", + "local_code": "TEVAL", + "keywords": "Campo di Volo \"Val Vibrata\", Avio Club Val Vibrata, Corropoli" + }, + { + "id": "319113", + "ident": "IT-0246", + "type": "small_airport", + "name": "Campo di Volo AliVara", + "latitude_deg": "44.227697", + "longitude_deg": "9.720077", + "elevation_ft": "311", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-42", + "municipality": "Borghetto Vara (SP)", + "scheduled_service": "no", + "local_code": "SPBRV", + "keywords": "AliVara" + }, + { + "id": "319114", + "ident": "IT-0247", + "type": "small_airport", + "name": "Aviosuperficie \"Ali sul Castello\"", + "latitude_deg": "41.061667", + "longitude_deg": "16.282222", + "elevation_ft": "984", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Andria (BA)", + "scheduled_service": "no", + "local_code": "BAAND" + }, + { + "id": "319125", + "ident": "IT-0248", + "type": "small_airport", + "name": "Agriturismo \"Podere Santa Apollonia\"", + "latitude_deg": "43.295278", + "longitude_deg": "11.907222", + "elevation_ft": "810", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Castiglion Fiorentino (AR)", + "scheduled_service": "no", + "local_code": "ARMON", + "keywords": "San Apollonia" + }, + { + "id": "319141", + "ident": "IT-0249", + "type": "small_airport", + "name": "Campo di Volo \"Willy il Coyote\"", + "latitude_deg": "44.772222", + "longitude_deg": "10.833333", + "elevation_ft": "88", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Carpi", + "scheduled_service": "no", + "local_code": "MOCRP" + }, + { + "id": "319145", + "ident": "IT-0250", + "type": "small_airport", + "name": "Campo di Volo \"Valerio Glorialanza\"", + "latitude_deg": "44.376111", + "longitude_deg": "9.290278", + "elevation_ft": "49", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-42", + "municipality": "Certenoli", + "scheduled_service": "no", + "local_code": "GECER", + "keywords": "Calvari" + }, + { + "id": "319167", + "ident": "IT-0251", + "type": "small_airport", + "name": "Campo di Volo \"San Dalmazio\"", + "latitude_deg": "44.4125", + "longitude_deg": "10.843611", + "elevation_ft": "1870", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "San Dalmazio", + "scheduled_service": "no", + "local_code": "MOSDM" + }, + { + "id": "319170", + "ident": "IT-0252", + "type": "small_airport", + "name": "Campo di Volo \"Delta Culture Club\"", + "latitude_deg": "44.571111", + "longitude_deg": "11.451667", + "elevation_ft": "115", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Granarolo Emilia (BO)", + "scheduled_service": "no", + "local_code": "BOGRA", + "keywords": "Delta Culture Club, Granarolo" + }, + { + "id": "319186", + "ident": "IT-0253", + "type": "small_airport", + "name": "Aviosuperficie Castellazzo", + "latitude_deg": "44.6833333", + "longitude_deg": "10.7397222", + "elevation_ft": "141", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Castellazzo", + "scheduled_service": "no", + "local_code": "RE04" + }, + { + "id": "319211", + "ident": "IT-0254", + "type": "small_airport", + "name": "Aviosuperficie Cassola", + "latitude_deg": "45.742222", + "longitude_deg": "11.807222", + "elevation_ft": "321", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Cassola", + "scheduled_service": "no", + "local_code": "VICAS" + }, + { + "id": "319213", + "ident": "IT-0255", + "type": "small_airport", + "name": "Aviosuperficie Molinella", + "latitude_deg": "44.5982", + "longitude_deg": "11.656286", + "elevation_ft": "22", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Molinella (BO)", + "scheduled_service": "no", + "local_code": "BOMOL" + }, + { + "id": "319216", + "ident": "IT-0256", + "type": "small_airport", + "name": "Aviosuperficie di Rubbiano", + "latitude_deg": "44.671947", + "longitude_deg": "10.060862", + "elevation_ft": "518", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Solignano", + "scheduled_service": "no", + "local_code": "PR06", + "keywords": "Rubbiano" + }, + { + "id": "319219", + "ident": "IT-0257", + "type": "small_airport", + "name": "Aviosuperficie \"Colli Euganei\"", + "latitude_deg": "45.203258", + "longitude_deg": "11.793658", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Pozzonovo", + "scheduled_service": "no", + "local_code": "PDPOZ" + }, + { + "id": "319288", + "ident": "IT-0258", + "type": "small_airport", + "name": "Campo di Volo Settecrociari", + "latitude_deg": "44.13595", + "longitude_deg": "12.18976", + "elevation_ft": "147", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Settecrociari", + "scheduled_service": "no", + "local_code": "FCCES" + }, + { + "id": "319291", + "ident": "IT-0259", + "type": "small_airport", + "name": "Campo di Volo Campogalliano", + "latitude_deg": "44.70355", + "longitude_deg": "10.85416", + "elevation_ft": "118", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Campogalliano", + "scheduled_service": "no", + "local_code": "MOCGL" + }, + { + "id": "319296", + "ident": "IT-0260", + "type": "small_airport", + "name": "Obiettivo Volare Aeroclub", + "latitude_deg": "44.888828", + "longitude_deg": "10.15991", + "elevation_ft": "141", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Fontanellato (PR)", + "scheduled_service": "no", + "local_code": "PRCAN", + "home_link": "http://www.obiettivovolare.it", + "keywords": "Aeroparco Pomì,Obiettivo Volare" + }, + { + "id": "319310", + "ident": "IT-0261", + "type": "small_airport", + "name": "Private Ultralight Field \"Achille\"", + "latitude_deg": "43.99883", + "longitude_deg": "12.10792", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Mercato Saraceno", + "scheduled_service": "no", + "local_code": "FC02" + }, + { + "id": "319312", + "ident": "IT-0262", + "type": "small_airport", + "name": "Campo di Volo Empoli", + "latitude_deg": "43.72512", + "longitude_deg": "10.98294", + "elevation_ft": "82", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Empoli", + "scheduled_service": "no", + "local_code": "FI01" + }, + { + "id": "319316", + "ident": "IT-0263", + "type": "small_airport", + "name": "Campo di Volo Tignes", + "latitude_deg": "46.15401", + "longitude_deg": "12.34751", + "elevation_ft": "1676", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Pieve d'Alpago", + "scheduled_service": "no", + "local_code": "BL09" + }, + { + "id": "319326", + "ident": "IT-0264", + "type": "small_airport", + "name": "Aviosuperficie Grumento Nova", + "latitude_deg": "40.27009", + "longitude_deg": "15.91363", + "elevation_ft": "2007", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-77", + "municipality": "Grumento Nova", + "scheduled_service": "no", + "local_code": "PZ02" + }, + { + "id": "319327", + "ident": "IT-0265", + "type": "small_airport", + "name": "Torre Sant'Andrea Airfield", + "latitude_deg": "40.24721", + "longitude_deg": "18.43611", + "elevation_ft": "72", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Melendugno (LE)", + "scheduled_service": "no", + "local_code": "LEMEL", + "home_link": "http://www.volaresalento.com", + "keywords": "Aviosuperficie \"Torre Sant'Andrea\", Aviosuperficie Melendugno" + }, + { + "id": "319330", + "ident": "IT-0266", + "type": "small_airport", + "name": "Aviosuperficie Valicella", + "latitude_deg": "42.21873", + "longitude_deg": "12.24846", + "elevation_ft": "862", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Sutri", + "scheduled_service": "no", + "local_code": "VTSUT" + }, + { + "id": "319360", + "ident": "IT-0267", + "type": "small_airport", + "name": "Aviosuperficie F. Rossi", + "latitude_deg": "43.34", + "longitude_deg": "12.826944", + "elevation_ft": "1348", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-57", + "municipality": "Fabriano", + "scheduled_service": "no", + "local_code": "ANFAB" + }, + { + "id": "319363", + "ident": "IT-0268", + "type": "small_airport", + "name": "Campo di Volo \"Banda Bassotti\"", + "latitude_deg": "44.924444", + "longitude_deg": "11.05", + "elevation_ft": "36", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Concordia sulla Secchia", + "scheduled_service": "no", + "local_code": "MOCON", + "keywords": "Banda Bassotti" + }, + { + "id": "319388", + "ident": "IT-0269", + "type": "small_airport", + "name": "Campo di Volo \"Rovasenda 2000\"", + "latitude_deg": "45.5444444", + "longitude_deg": "8.2791667", + "elevation_ft": "787", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Rovasenda", + "scheduled_service": "no" + }, + { + "id": "319398", + "ident": "IT-0270", + "type": "small_airport", + "name": "Campo di Volo \"Al Canale\"", + "latitude_deg": "40.8125", + "longitude_deg": "17.2330556", + "elevation_ft": "1100", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Alberobello", + "scheduled_service": "no" + }, + { + "id": "319399", + "ident": "IT-0271", + "type": "small_airport", + "name": "Campo di Volo Agnedo", + "latitude_deg": "46.0447222", + "longitude_deg": "11.5419444", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-32", + "municipality": "Agnedo", + "scheduled_service": "no" + }, + { + "id": "331601", + "ident": "IT-0272", + "type": "small_airport", + "name": "Aviosuperficie Costa d'Argento", + "latitude_deg": "42.495016", + "longitude_deg": "11.238771", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Orbetello", + "scheduled_service": "no", + "local_code": "GRORB", + "home_link": "http://alimaremma.it" + }, + { + "id": "319414", + "ident": "IT-0273", + "type": "small_airport", + "name": "Campo di Volo Luciano Borgonovi", + "latitude_deg": "45.18698", + "longitude_deg": "9.04292", + "elevation_ft": "203", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Zerbolò", + "scheduled_service": "no", + "local_code": "PV05", + "keywords": "Luciano Borgonovi" + }, + { + "id": "319415", + "ident": "IT-0274", + "type": "small_airport", + "name": "Aviosuperficie \"Villa Selva Air Park\"", + "latitude_deg": "42.79277", + "longitude_deg": "13.75146", + "elevation_ft": "551", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-65", + "municipality": "Civitella del Tronto (TE)", + "scheduled_service": "no", + "local_code": "TE09" + }, + { + "id": "319421", + "ident": "IT-0275", + "type": "small_airport", + "name": "Campo di Volo Arcobaleno", + "latitude_deg": "44.4969444", + "longitude_deg": "11.2436111", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Zola Predosa (BO)", + "scheduled_service": "no", + "local_code": "BO11" + }, + { + "id": "319422", + "ident": "IT-0276", + "type": "small_airport", + "name": "Campo di Volo \"Ali del Montello\"", + "latitude_deg": "45.76157", + "longitude_deg": "12.16361", + "elevation_ft": "226", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Volpago del Montello (TV)", + "scheduled_service": "no", + "local_code": "TVSDM", + "keywords": "TV06" + }, + { + "id": "319424", + "ident": "IT-0277", + "type": "small_airport", + "name": "Aviosuperficie La Selva", + "latitude_deg": "41.155556", + "longitude_deg": "14.21", + "elevation_ft": "196", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Vitulazio", + "scheduled_service": "no", + "local_code": "CEVIT", + "home_link": "http://www.laselvafly.it", + "keywords": "La Selva" + }, + { + "id": "319429", + "ident": "IT-0278", + "type": "small_airport", + "name": "Aviosuperficie Falcone", + "latitude_deg": "41.101343", + "longitude_deg": "15.871805", + "elevation_ft": "498", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-77", + "municipality": "Lavello (PZ)", + "scheduled_service": "no", + "local_code": "PZLAV" + }, + { + "id": "319431", + "ident": "IT-0279", + "type": "small_airport", + "name": "Aviosuperficie Celano", + "latitude_deg": "42.05167", + "longitude_deg": "13.55722", + "elevation_ft": "2234", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-65", + "municipality": "Celano (AQ)", + "scheduled_service": "no", + "local_code": "AQCEL", + "keywords": "AvioFucino" + }, + { + "id": "319435", + "ident": "IT-0280", + "type": "small_airport", + "name": "Cesare Rossi Airfield", + "latitude_deg": "43.102879", + "longitude_deg": "13.557816", + "elevation_ft": "492", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-57", + "municipality": "Montegiorgio (AP)", + "scheduled_service": "no", + "local_code": "AP02" + }, + { + "id": "319437", + "ident": "IT-0281", + "type": "small_airport", + "name": "Campo di Volo \"Piana 5 Miglia\"", + "latitude_deg": "41.879201", + "longitude_deg": "14.011133", + "elevation_ft": "4127", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-65", + "municipality": "Roccapia (AQ)", + "scheduled_service": "no", + "local_code": "AQROC" + }, + { + "id": "319439", + "ident": "IT-0282", + "type": "small_airport", + "name": "Campo di Volo Collerotondo", + "latitude_deg": "42.289182", + "longitude_deg": "13.745423", + "elevation_ft": "1345", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-65", + "municipality": "Ofena", + "scheduled_service": "no", + "local_code": "AQOFE", + "keywords": "Collerotondo" + }, + { + "id": "319442", + "ident": "IT-0283", + "type": "small_airport", + "name": "Aviosuperficie Carocci", + "latitude_deg": "42.247516", + "longitude_deg": "12.308311", + "elevation_ft": "784", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Nepi (VT)", + "scheduled_service": "no", + "local_code": "VT10" + }, + { + "id": "319444", + "ident": "IT-0284", + "type": "small_airport", + "name": "Campo di Volo Pegaso", + "latitude_deg": "45.318", + "longitude_deg": "12.05065", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Campolongo Maggiore (VE)", + "scheduled_service": "no", + "local_code": "VECGO" + }, + { + "id": "319450", + "ident": "IT-0285", + "type": "small_airport", + "name": "Aviosuperficie \"Parco Livenza\"", + "latitude_deg": "45.74", + "longitude_deg": "12.70393", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "San Stino di Livenza (VE)", + "scheduled_service": "no", + "local_code": "VESSL" + }, + { + "id": "319451", + "ident": "IT-0286", + "type": "small_airport", + "name": "Aviosuperficie \"Skydive Venice\"", + "latitude_deg": "45.700009", + "longitude_deg": "12.763909", + "elevation_ft": "21", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "San Stino di Livenza (VE)", + "scheduled_service": "no", + "local_code": "VE18", + "keywords": "Skydive Venice" + }, + { + "id": "319452", + "ident": "IT-0287", + "type": "small_airport", + "name": "Campo di Volo \"Banana\"", + "latitude_deg": "45.59759", + "longitude_deg": "12.303003", + "elevation_ft": "6", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Casale sul Sile (TV)", + "scheduled_service": "no", + "local_code": "TVCAS", + "keywords": "Banana" + }, + { + "id": "319455", + "ident": "IT-0288", + "type": "closed", + "name": "Aviosuperficie \"Il Ranch\"", + "latitude_deg": "45.5458333", + "longitude_deg": "11.7619444", + "elevation_ft": "56", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Piazzola sul Brenta (PD)", + "scheduled_service": "no", + "home_link": "http://www.scuolavolo.it/", + "keywords": "Il Ranch" + }, + { + "id": "319458", + "ident": "IT-0289", + "type": "closed", + "name": "Conca del Re", + "latitude_deg": "39.853525", + "longitude_deg": "16.197045", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-78", + "municipality": "Castrovillari (CS)", + "scheduled_service": "no", + "local_code": "CSCVI" + }, + { + "id": "319459", + "ident": "IT-0290", + "type": "small_airport", + "name": "Aviosuperficie \"Il Pratone\"", + "latitude_deg": "42.093703", + "longitude_deg": "13.042332", + "elevation_ft": "1893", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-65", + "municipality": "Carsoli (AQ)", + "scheduled_service": "no", + "local_code": "AQCAR", + "home_link": "http://www.avioclubcarsoli.it/", + "keywords": "Il Pratone" + }, + { + "id": "319462", + "ident": "IT-0291", + "type": "small_airport", + "name": "Campo di Volo \"Sky Ufita\"", + "latitude_deg": "41.046165", + "longitude_deg": "15.121532", + "elevation_ft": "1148", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Frigento (AV)", + "scheduled_service": "no", + "local_code": "AV01" + }, + { + "id": "319481", + "ident": "IT-0292", + "type": "small_airport", + "name": "Campo di Volo \"Blue Devil Centre\"", + "latitude_deg": "45.392554", + "longitude_deg": "10.128472", + "elevation_ft": "223", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Offlaga (BS)", + "scheduled_service": "no", + "local_code": "BSOFL" + }, + { + "id": "319482", + "ident": "IT-0293", + "type": "small_airport", + "name": "Campo di Volo \"Le Panizze\"", + "latitude_deg": "45.419094", + "longitude_deg": "10.557888", + "elevation_ft": "337", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Lonato (BS)", + "scheduled_service": "no", + "local_code": "BSCEN", + "keywords": "Le Panizze" + }, + { + "id": "319484", + "ident": "IT-0294", + "type": "closed", + "name": "Aviosuperficie di Lonato", + "latitude_deg": "45.394566", + "longitude_deg": "10.566931", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Lonato (BS)", + "scheduled_service": "no", + "local_code": "BSLON", + "home_link": "http://www.eroma-fly.it/", + "keywords": "Eroma" + }, + { + "id": "319487", + "ident": "IT-0295", + "type": "heliport", + "name": "Air Service Center", + "latitude_deg": "45.06828", + "longitude_deg": "9.37491", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Arena di Po (PV)", + "scheduled_service": "no", + "home_link": "http://www.airservicecenter.it" + }, + { + "id": "319488", + "ident": "IT-0296", + "type": "closed", + "name": "Campo di Volo Elio Zambrini", + "latitude_deg": "44.4323333", + "longitude_deg": "11.71815", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Imola (BO)", + "scheduled_service": "no", + "local_code": "BO03" + }, + { + "id": "319489", + "ident": "IT-0297", + "type": "small_airport", + "name": "Campo di Volo \"Ali della Libertà\"", + "latitude_deg": "44.516167", + "longitude_deg": "11.100083", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Bazzano (BO)", + "scheduled_service": "no", + "local_code": "BOBAZ" + }, + { + "id": "319490", + "ident": "IT-0298", + "type": "small_airport", + "name": "Campo di Volo Phoenix", + "latitude_deg": "44.74714", + "longitude_deg": "11.34161", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Pieve di Cento (BO)", + "scheduled_service": "no", + "local_code": "BO12" + }, + { + "id": "319491", + "ident": "IT-0299", + "type": "small_airport", + "name": "Campo di Volo \"Creva Air Club\"", + "latitude_deg": "44.737333", + "longitude_deg": "11.183633", + "elevation_ft": "29", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Crevalcore (BO)", + "scheduled_service": "no", + "local_code": "BO14" + }, + { + "id": "319492", + "ident": "IT-0300", + "type": "small_airport", + "name": "Campo di Volo \"Punto Volo\"", + "latitude_deg": "45.437987", + "longitude_deg": "9.60738", + "elevation_ft": "301", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Torlino Vimercata (CR)", + "scheduled_service": "no", + "local_code": "CR06" + }, + { + "id": "319496", + "ident": "IT-0301", + "type": "small_airport", + "name": "Agriturismo Turus Airfield", + "latitude_deg": "45.923709", + "longitude_deg": "13.541016", + "elevation_ft": "177", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Mossa (GO)", + "scheduled_service": "no", + "local_code": "GOMOS" + }, + { + "id": "319499", + "ident": "IT-0302", + "type": "small_airport", + "name": "Aviosuperficie AS77", + "latitude_deg": "45.95995", + "longitude_deg": "13.20564", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Mortegliano (UD)", + "scheduled_service": "no", + "local_code": "UD20" + }, + { + "id": "319500", + "ident": "IT-0303", + "type": "small_airport", + "name": "Campo di Volo \"La Fattoria\"", + "latitude_deg": "45.2916667", + "longitude_deg": "12.0675667", + "elevation_ft": "6", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Codevigo (PD)", + "scheduled_service": "no", + "local_code": "PD07" + }, + { + "id": "319502", + "ident": "IT-0304", + "type": "small_airport", + "name": "Aviosuperficie \"Base Bravo\"", + "latitude_deg": "45.392864", + "longitude_deg": "11.692645", + "elevation_ft": "45", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Cervarese Santa Croce (PD)", + "scheduled_service": "no", + "local_code": "PD13" + }, + { + "id": "319504", + "ident": "IT-0305", + "type": "small_airport", + "name": "Campo di Volo \"Da Domenico\"", + "latitude_deg": "45.232351", + "longitude_deg": "11.797808", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Monselice (PD)", + "scheduled_service": "no", + "local_code": "PD14" + }, + { + "id": "319506", + "ident": "IT-0306", + "type": "small_airport", + "name": "Campo di Volo Padova Sud", + "latitude_deg": "45.324676", + "longitude_deg": "11.872852", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Maserà di Padova (PD)", + "scheduled_service": "no", + "local_code": "PDMAS", + "keywords": "Padova Sud" + }, + { + "id": "319508", + "ident": "IT-0307", + "type": "small_airport", + "name": "Aviosuperficie \"Dominio di Bagnoli\"", + "latitude_deg": "45.188628", + "longitude_deg": "11.858303", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Bagnoli di Sopra", + "scheduled_service": "no", + "local_code": "PD19", + "keywords": "Dominio di Bagnoli" + }, + { + "id": "319509", + "ident": "IT-0308", + "type": "closed", + "name": "Campo di Volo \"Le Risare\"", + "latitude_deg": "45.574906", + "longitude_deg": "11.84464", + "elevation_ft": "78", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Campo San Martino (PD)", + "scheduled_service": "no", + "local_code": "PDCSM", + "keywords": "Le Risare" + }, + { + "id": "319511", + "ident": "IT-0309", + "type": "small_airport", + "name": "Aviosuperficie \"Avioclub Alanno\"", + "latitude_deg": "42.31458", + "longitude_deg": "14.000913", + "elevation_ft": "383", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-65", + "municipality": "Alanno (PE)", + "scheduled_service": "no", + "local_code": "PE04", + "keywords": "La porta delle Aquile,Avioclub Alanno" + }, + { + "id": "319513", + "ident": "IT-0310", + "type": "small_airport", + "name": "Campo di Volo \"Avioclub Elice\"", + "latitude_deg": "42.490357", + "longitude_deg": "13.997202", + "elevation_ft": "262", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-65", + "municipality": "Elice (PE)", + "scheduled_service": "no", + "local_code": "PEELI", + "keywords": "Avioclub Elice" + }, + { + "id": "319517", + "ident": "IT-0311", + "type": "small_airport", + "name": "Campo di Volo Bonsciano", + "latitude_deg": "43.355854", + "longitude_deg": "12.193534", + "elevation_ft": "882", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Bonsciano (PG)", + "scheduled_service": "no", + "local_code": "PGBON" + }, + { + "id": "319519", + "ident": "IT-0312", + "type": "small_airport", + "name": "Campo di Volo San Terenziano", + "latitude_deg": "42.85723", + "longitude_deg": "12.473179", + "elevation_ft": "1679", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Gualdo Cattaneo (PG)", + "scheduled_service": "no", + "local_code": "PGSTR" + }, + { + "id": "319522", + "ident": "IT-0313", + "type": "small_airport", + "name": "Campo di Volo Santa Maria Rossa", + "latitude_deg": "43.023963", + "longitude_deg": "12.387515", + "elevation_ft": "570", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Santa Maria Rossa (PG)", + "scheduled_service": "no", + "local_code": "PGSMR" + }, + { + "id": "319524", + "ident": "IT-0314", + "type": "small_airport", + "name": "Campo di Volo Montefalco", + "latitude_deg": "42.885358", + "longitude_deg": "12.693324", + "elevation_ft": "695", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Montefalco (PG)", + "scheduled_service": "no", + "local_code": "PGMFA" + }, + { + "id": "319527", + "ident": "IT-0315", + "type": "small_airport", + "name": "Campo di Volo Molinella", + "latitude_deg": "43.121511", + "longitude_deg": "12.20585", + "elevation_ft": "790", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Magione (PG)", + "scheduled_service": "no", + "local_code": "PGMAC", + "keywords": "Molinella" + }, + { + "id": "319557", + "ident": "IT-0316", + "type": "small_airport", + "name": "Campo di Volo Palosco", + "latitude_deg": "45.600679", + "longitude_deg": "9.821166", + "elevation_ft": "547", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Palosco (BG)", + "scheduled_service": "no", + "local_code": "BGPAL" + }, + { + "id": "319559", + "ident": "IT-0317", + "type": "small_airport", + "name": "Campo di Volo \"Fant Air Club\"", + "latitude_deg": "46.085023", + "longitude_deg": "12.068712", + "elevation_ft": "925", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Santa Giustina (BL)", + "scheduled_service": "no", + "local_code": "BLSGS", + "home_link": "http://www.clubfantair.com/index1.htm", + "keywords": "Fant Air" + }, + { + "id": "319561", + "ident": "IT-0318", + "type": "small_airport", + "name": "Campo di Volo Sedico", + "latitude_deg": "46.091613", + "longitude_deg": "12.089596", + "elevation_ft": "961", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Sedico (BL)", + "scheduled_service": "no", + "local_code": "BL11" + }, + { + "id": "319566", + "ident": "IT-0319", + "type": "small_airport", + "name": "Campo di Volo San Paolo", + "latitude_deg": "45.377553", + "longitude_deg": "10.037612", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Scarpizzolo (BS)", + "scheduled_service": "no", + "local_code": "BSSCR", + "keywords": "San Paolo" + }, + { + "id": "319593", + "ident": "IT-0320", + "type": "small_airport", + "name": "Campo di Volo AliMatese", + "latitude_deg": "41.323638", + "longitude_deg": "14.363949", + "elevation_ft": "370", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Alife (CE)", + "scheduled_service": "no", + "local_code": "CEALI" + }, + { + "id": "319595", + "ident": "IT-0321", + "type": "small_airport", + "name": "Vasto Flying Field", + "latitude_deg": "42.155381", + "longitude_deg": "14.699362", + "elevation_ft": "197", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-65", + "municipality": "Vasto (CH)", + "scheduled_service": "no", + "local_code": "CHVAS", + "keywords": "Associazione Sportiva Volo Vasto, Campo di Volo Vasto" + }, + { + "id": "319607", + "ident": "IT-0322", + "type": "small_airport", + "name": "Campo di Volo Aerlight Faenza", + "latitude_deg": "44.3353333", + "longitude_deg": "11.9178667", + "elevation_ft": "52", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Faenza (RA)", + "scheduled_service": "no", + "local_code": "RA01", + "wikipedia_link": "https://it.wikipedia.org/wiki/Campo_di_volo_Aerlight_Faenza", + "keywords": "Aerlight" + }, + { + "id": "319609", + "ident": "IT-0323", + "type": "small_airport", + "name": "Valle Gaffaro Airfield", + "latitude_deg": "44.834414", + "longitude_deg": "12.231261", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Codigoro (FE)", + "scheduled_service": "no", + "local_code": "FEVGA", + "home_link": "http://www.volodelta2000.net/", + "keywords": "Valle Gaffaro, Volo Delta 2000, Aviosuperficie Valle Gaffaro" + }, + { + "id": "319612", + "ident": "IT-0324", + "type": "small_airport", + "name": "Aviosuperficie Borgo Castelvecchio", + "latitude_deg": "43.0093333", + "longitude_deg": "11.7334667", + "elevation_ft": "1007", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Contignano (SI)", + "scheduled_service": "no", + "local_code": "SI06", + "home_link": "http://www.borgodicastelvecchio.com/offerte-speciali.html#offerte_1", + "keywords": "Borgo Castelvecchio" + }, + { + "id": "319625", + "ident": "IT-0325", + "type": "small_airport", + "name": "Aviosuperficie Città di Curtatone", + "latitude_deg": "45.101333", + "longitude_deg": "10.75005", + "elevation_ft": "68", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Curtatone", + "scheduled_service": "no", + "local_code": "MNSSV", + "keywords": "Aeroclub Mantova" + }, + { + "id": "319627", + "ident": "IT-0326", + "type": "closed", + "name": "Campo di Volo Zagavia", + "latitude_deg": "45.360102", + "longitude_deg": "10.657102", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Monzambano (MN)", + "scheduled_service": "no", + "local_code": "MNMON", + "keywords": "Zagavia" + }, + { + "id": "319628", + "ident": "IT-0327", + "type": "small_airport", + "name": "Campo di Volo Mantova Nord", + "latitude_deg": "45.172182", + "longitude_deg": "10.858224", + "elevation_ft": "75", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "San Giorgio (MN)", + "scheduled_service": "no", + "local_code": "MNMNN" + }, + { + "id": "319630", + "ident": "IT-0328", + "type": "small_airport", + "name": "Campo di Volo Roverbella", + "latitude_deg": "45.239484", + "longitude_deg": "10.889615", + "elevation_ft": "111", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Roverbella (MN", + "scheduled_service": "no", + "local_code": "MN13" + }, + { + "id": "319632", + "ident": "IT-0329", + "type": "closed", + "name": "Aviosuperficie Settefrati", + "latitude_deg": "45.201775", + "longitude_deg": "10.662813", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Rivalta sul Mincio (MN)", + "scheduled_service": "no", + "local_code": "MN21", + "home_link": "http://www.cortesettefrati.it" + }, + { + "id": "319638", + "ident": "IT-0330", + "type": "small_airport", + "name": "Campo di Volo \"Condor Men\"", + "latitude_deg": "43.224706", + "longitude_deg": "13.329554", + "elevation_ft": "629", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-57", + "municipality": "Tolentino (MC)", + "scheduled_service": "no", + "local_code": "MCTOL", + "keywords": "Condor Men" + }, + { + "id": "319641", + "ident": "IT-0331", + "type": "small_airport", + "name": "Aviosuperficie Santa Anna", + "latitude_deg": "43.366053", + "longitude_deg": "13.457496", + "elevation_ft": "393", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-57", + "municipality": "Montecassiano (MC)", + "scheduled_service": "no", + "local_code": "MCMSA", + "keywords": "Santa Ann" + }, + { + "id": "319643", + "ident": "IT-0332", + "type": "small_airport", + "name": "Campo di Volo Ali del Chienti", + "latitude_deg": "43.260263", + "longitude_deg": "13.518618", + "elevation_ft": "390", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-57", + "municipality": "Corridonia (MC)", + "scheduled_service": "no", + "local_code": "MCCOR", + "keywords": "Ali del Chienti" + }, + { + "id": "319645", + "ident": "IT-0333", + "type": "small_airport", + "name": "Campo di Volo AliPuglia", + "latitude_deg": "40.474421", + "longitude_deg": "17.609926", + "elevation_ft": "344", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Oria (BR)", + "scheduled_service": "no", + "local_code": "BRORI", + "keywords": "Ali Puglia" + }, + { + "id": "319647", + "ident": "IT-0334", + "type": "small_airport", + "name": "Aviosuperficie Antares", + "latitude_deg": "40.504649", + "longitude_deg": "17.965087", + "elevation_ft": "167", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "San Pietro Vernotico (BR)", + "scheduled_service": "no", + "local_code": "BRSPV", + "keywords": "Aeroclub Brindisi,Antares" + }, + { + "id": "319648", + "ident": "IT-0335", + "type": "small_airport", + "name": "Base Aerea Molise", + "latitude_deg": "41.474462", + "longitude_deg": "14.537457", + "elevation_ft": "1669", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-67", + "municipality": "Campochiaro (CB)", + "scheduled_service": "no", + "local_code": "CB05", + "keywords": "Protezione Civile Molise" + }, + { + "id": "319656", + "ident": "IT-0336", + "type": "small_airport", + "name": "Aviosuperficie Loelle", + "latitude_deg": "40.5701667", + "longitude_deg": "9.3173667", + "elevation_ft": "2598", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Buddusò (SS)", + "scheduled_service": "no", + "local_code": "SS09", + "keywords": "Loelle" + }, + { + "id": "319659", + "ident": "IT-0337", + "type": "small_airport", + "name": "Campo di Volo Valledoria", + "latitude_deg": "40.929768", + "longitude_deg": "8.812227", + "elevation_ft": "29", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Valledoria (SS)", + "scheduled_service": "no", + "local_code": "SS04" + }, + { + "id": "319663", + "ident": "IT-0338", + "type": "small_airport", + "name": "Pista Vasa Airfield", + "latitude_deg": "41.046634", + "longitude_deg": "8.997749", + "elevation_ft": "600", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Trinità d'Agultu e Vignola (SS)", + "scheduled_service": "no", + "local_code": "SS16", + "keywords": "Campo di Volo Pista Vasa" + }, + { + "id": "319670", + "ident": "IT-0339", + "type": "small_airport", + "name": "Campo di Volo \"Gli Aironi\"", + "latitude_deg": "44.462771", + "longitude_deg": "11.789613", + "elevation_ft": "22", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "scheduled_service": "no", + "local_code": "RA07", + "keywords": "Gli Aironi" + }, + { + "id": "319672", + "ident": "IT-0340", + "type": "small_airport", + "name": "Campo di Volo \"Delta club Conselice\"", + "latitude_deg": "44.541928", + "longitude_deg": "11.792177", + "elevation_ft": "9", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Conselice (RA)", + "scheduled_service": "no", + "local_code": "RA09", + "keywords": "Delta club Conselice" + }, + { + "id": "319682", + "ident": "IT-0341", + "type": "small_airport", + "name": "Campo di Volo Oasi", + "latitude_deg": "45.696556", + "longitude_deg": "8.826948", + "elevation_ft": "980", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Cassano Magnago (VA)", + "scheduled_service": "no", + "local_code": "VACMO", + "home_link": "http://www.agri-oasi.it" + }, + { + "id": "319684", + "ident": "IT-0342", + "type": "small_airport", + "name": "Aviosuperficie Umiltà", + "latitude_deg": "42.192111", + "longitude_deg": "12.331621", + "elevation_ft": "787", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Nepi (VT)", + "scheduled_service": "no", + "local_code": "VT15", + "keywords": "Umiltà" + }, + { + "id": "319686", + "ident": "IT-0343", + "type": "small_airport", + "name": "Aviosuperficie Santa Bruna", + "latitude_deg": "42.382873", + "longitude_deg": "12.344158", + "elevation_ft": "859", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Corchiano (VT)", + "scheduled_service": "no", + "local_code": "VTCOR", + "home_link": "http://www.agriturismosantabruna.it", + "keywords": "Santa Bruna" + }, + { + "id": "319688", + "ident": "IT-0344", + "type": "small_airport", + "name": "Campo di Volo Poggio Primavera", + "latitude_deg": "42.366412", + "longitude_deg": "11.796702", + "elevation_ft": "485", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Tuscania (VT)", + "scheduled_service": "no", + "local_code": "VT07", + "keywords": "Poggio Primavera" + }, + { + "id": "319690", + "ident": "IT-0345", + "type": "small_airport", + "name": "Campo di Volo Montalto di Castro", + "latitude_deg": "42.362738", + "longitude_deg": "11.656572", + "elevation_ft": "49", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Montalto di Castro (VT)", + "scheduled_service": "no", + "local_code": "VTMDC" + }, + { + "id": "319692", + "ident": "IT-0346", + "type": "small_airport", + "name": "Aviosuperficie San Teodoro", + "latitude_deg": "40.802484", + "longitude_deg": "9.65839", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "San Teodoro (OT)", + "scheduled_service": "no", + "local_code": "OTSTE", + "home_link": "http://www.santeodoroulm.it", + "keywords": "Lu Scupaglio" + }, + { + "id": "319716", + "ident": "IT-0347", + "type": "closed", + "name": "Campo di Volo Rovellasca", + "latitude_deg": "45.675833", + "longitude_deg": "9.064444", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Rovellasca (MB)", + "scheduled_service": "no", + "home_link": "http://alroccolo.it/servizi/", + "keywords": "Al Roccolo,Piolanti, Fattoria Piolanti" + }, + { + "id": "319717", + "ident": "IT-0348", + "type": "closed", + "name": "Aviosuperficie Cà Lunga", + "latitude_deg": "44.520924", + "longitude_deg": "8.188011", + "elevation_ft": "1175", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Pezzolo Valle Uzzone (CN)", + "scheduled_service": "no", + "local_code": "CNPEZ" + }, + { + "id": "319727", + "ident": "IT-0349", + "type": "small_airport", + "name": "Campo di Volo Verginese", + "latitude_deg": "44.690633", + "longitude_deg": "11.762535", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Portomaggiore (FE)", + "scheduled_service": "no", + "local_code": "FEPMA" + }, + { + "id": "319728", + "ident": "IT-0350", + "type": "small_airport", + "name": "Campo di Volo \"Fly and Go\"", + "latitude_deg": "41.344754", + "longitude_deg": "15.526474", + "elevation_ft": "416", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Foggia (FG)", + "scheduled_service": "no", + "local_code": "FGPAL", + "keywords": "Fly and Go, Ponte Albanito" + }, + { + "id": "319730", + "ident": "IT-0351", + "type": "small_airport", + "name": "Campo di Volo Vivoli", + "latitude_deg": "42.992253", + "longitude_deg": "10.806534", + "elevation_ft": "196", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Massa Marittima (GR)", + "scheduled_service": "no", + "local_code": "GRMSM", + "keywords": "Podere Ranieri,Vivoli" + }, + { + "id": "319736", + "ident": "IT-0352", + "type": "small_airport", + "name": "Aviosuperficie Aviodelta", + "latitude_deg": "44.706594", + "longitude_deg": "10.249517", + "elevation_ft": "524", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Felino (PR)", + "scheduled_service": "no", + "local_code": "PRFEL", + "keywords": "Aviodelta" + }, + { + "id": "319738", + "ident": "IT-0353", + "type": "small_airport", + "name": "Campo di Volo Campore", + "latitude_deg": "44.827864", + "longitude_deg": "10.010782", + "elevation_ft": "459", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Salsomaggiore Terme (PR)", + "scheduled_service": "no", + "local_code": "PR02", + "keywords": "Campore" + }, + { + "id": "319741", + "ident": "IT-0354", + "type": "small_airport", + "name": "Campo di Volo La Torretta", + "latitude_deg": "44.99341", + "longitude_deg": "10.060065", + "elevation_ft": "118", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Busseto (PR)", + "scheduled_service": "no", + "local_code": "PRBUS", + "keywords": "La Torretta" + }, + { + "id": "319743", + "ident": "IT-0355", + "type": "small_airport", + "name": "Aviosuperficie Vallesanta", + "latitude_deg": "42.427317", + "longitude_deg": "12.805221", + "elevation_ft": "1246", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Rieti (RI)", + "scheduled_service": "no", + "local_code": "RIVAL", + "home_link": "http://vallesanta.it", + "keywords": "Vallesanta" + }, + { + "id": "319745", + "ident": "IT-0356", + "type": "small_airport", + "name": "Giardini di Corcolle Airfield", + "latitude_deg": "41.900476", + "longitude_deg": "12.741902", + "elevation_ft": "324", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Roma", + "scheduled_service": "no", + "local_code": "RMGDC", + "keywords": "Giardini di Corcolle" + }, + { + "id": "319752", + "ident": "IT-0357", + "type": "small_airport", + "name": "Campo di Volo \"Air Ardara\"", + "latitude_deg": "40.625979", + "longitude_deg": "8.868129", + "elevation_ft": "734", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Ardara (SS)", + "scheduled_service": "no", + "local_code": "SSARD", + "home_link": "http://www.flyardara.netsons.org" + }, + { + "id": "319757", + "ident": "IT-0358", + "type": "small_airport", + "name": "Aviosuperficie Cornegliano", + "latitude_deg": "45.288893", + "longitude_deg": "9.491832", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Cornegliano Laudense (LO)", + "scheduled_service": "no", + "local_code": "LO03" + }, + { + "id": "319758", + "ident": "IT-0359", + "type": "small_airport", + "name": "Aviosuperficie Massalengo", + "latitude_deg": "45.275425", + "longitude_deg": "9.482934", + "elevation_ft": "239", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Massalengo (LO)", + "scheduled_service": "no", + "local_code": "LO04", + "keywords": "Cielo Blu" + }, + { + "id": "319760", + "ident": "IT-0360", + "type": "small_airport", + "name": "Campo di Volo Mezzana Casati", + "latitude_deg": "45.098258", + "longitude_deg": "9.735884", + "elevation_ft": "141", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "San Rocco al Porto", + "scheduled_service": "no", + "local_code": "LO05", + "keywords": "Mezzana Casati" + }, + { + "id": "319801", + "ident": "IT-0361", + "type": "closed", + "name": "Aviosuperficie Villa Fontana", + "latitude_deg": "44.51585", + "longitude_deg": "11.59218", + "elevation_ft": "56", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Medicina", + "scheduled_service": "no", + "local_code": "BOMED" + }, + { + "id": "319805", + "ident": "IT-0362", + "type": "small_airport", + "name": "Aviosuperficie Gragnano", + "latitude_deg": "45", + "longitude_deg": "9.581999", + "elevation_ft": "285", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Casaliggio di Gragnano (PC)", + "scheduled_service": "no", + "local_code": "PCGRA", + "keywords": "Aeroclub Piacenza" + }, + { + "id": "319806", + "ident": "IT-0363", + "type": "closed", + "name": "Aviosuperficie Il Gabbione", + "latitude_deg": "44.50326", + "longitude_deg": "11.81415", + "elevation_ft": "9", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Conselice", + "scheduled_service": "no" + }, + { + "id": "319808", + "ident": "IT-0364", + "type": "small_airport", + "name": "Aviosuperficie Aretusa Fly", + "latitude_deg": "37.03741", + "longitude_deg": "15.09536", + "elevation_ft": "1012", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Canicattini Bagni", + "scheduled_service": "no" + }, + { + "id": "319810", + "ident": "IT-0365", + "type": "small_airport", + "name": "Aviosuperficie Chiusa-Zerfaliu", + "latitude_deg": "39.989504", + "longitude_deg": "8.723266", + "elevation_ft": "190", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Zerfaliu", + "scheduled_service": "no" + }, + { + "id": "319837", + "ident": "IT-0366", + "type": "small_airport", + "name": "Aviosuperficie Bedizzole", + "latitude_deg": "45.51851", + "longitude_deg": "10.449577", + "elevation_ft": "623", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Bedizzole (BS)", + "scheduled_service": "no", + "local_code": "BSBED", + "keywords": "Calvagese,Silvio Scaroni" + }, + { + "id": "319839", + "ident": "IT-0367", + "type": "small_airport", + "name": "Bosco di Mezzo Airfield", + "latitude_deg": "37.1523", + "longitude_deg": "14.59928", + "elevation_ft": "1305", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Caltagirone (CT)", + "scheduled_service": "no", + "local_code": "CT13", + "keywords": "Bosco di Mezzo" + }, + { + "id": "319842", + "ident": "IT-0368", + "type": "small_airport", + "name": "Aviosuperficie \"Amici del Volo\"", + "latitude_deg": "41.676997", + "longitude_deg": "13.74285", + "elevation_ft": "1217", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Alvito (FR)", + "scheduled_service": "no", + "local_code": "FR09", + "keywords": "Amici del Volo" + }, + { + "id": "319854", + "ident": "IT-0369", + "type": "small_airport", + "name": "Campo di Volo \"Ass.Sp.Volo Leggero\"", + "latitude_deg": "45.261776", + "longitude_deg": "11.192901", + "elevation_ft": "62", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Casalino Isola Rizza (VR)", + "scheduled_service": "no", + "local_code": "VRCAS" + }, + { + "id": "319917", + "ident": "IT-0370", + "type": "small_airport", + "name": "Pica Airfield", + "latitude_deg": "42.696389", + "longitude_deg": "13.917222", + "elevation_ft": "246", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-65", + "municipality": "Notaresco (TE)", + "scheduled_service": "no", + "local_code": "TENOT", + "keywords": "Pica, Aviosuperficie Pica, Campo di Volo Pica" + }, + { + "id": "319924", + "ident": "IT-0371", + "type": "small_airport", + "name": "Campo di Volo \"Ca' Quinta di Sarego\"", + "latitude_deg": "45.432833", + "longitude_deg": "11.383333", + "elevation_ft": "114", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Sarego (VI)", + "scheduled_service": "no", + "local_code": "VISAR" + }, + { + "id": "319926", + "ident": "IT-0372", + "type": "small_airport", + "name": "Aviosuperficie \"San Mauro\"", + "latitude_deg": "46.068333", + "longitude_deg": "13.366883", + "elevation_ft": "351", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Premariacco (UD)", + "scheduled_service": "no", + "local_code": "UDPRE", + "keywords": "San Mauro" + }, + { + "id": "319952", + "ident": "IT-0373", + "type": "small_airport", + "name": "Aviosuperficie Serristori", + "latitude_deg": "43.332147", + "longitude_deg": "11.858067", + "elevation_ft": "859", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Castiglion Fiorentino (AR)", + "scheduled_service": "no", + "gps_code": "LIQQ", + "local_code": "AR04", + "home_link": "http://www.centroserristori.it", + "keywords": "Serristori,Centro di volo Serristori" + }, + { + "id": "319954", + "ident": "IT-0374", + "type": "small_airport", + "name": "Campo di Volo \"Asolo Flight\"", + "latitude_deg": "45.758333", + "longitude_deg": "11.896111", + "elevation_ft": "252", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Asolo (TV)", + "scheduled_service": "no", + "local_code": "TVASO", + "keywords": "Asolo Flight" + }, + { + "id": "319956", + "ident": "IT-0375", + "type": "small_airport", + "name": "Campo di Volo \"San Marco Volo\"", + "latitude_deg": "45.771043", + "longitude_deg": "11.996559", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Caerano San Marco (TV)", + "scheduled_service": "no", + "local_code": "TVCAE", + "keywords": "San Marco Volo" + }, + { + "id": "319958", + "ident": "IT-0376", + "type": "small_airport", + "name": "Aviosuperficie Montebelluna", + "latitude_deg": "45.748913", + "longitude_deg": "12.056902", + "elevation_ft": "275", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Montebelluna (TV)", + "scheduled_service": "no", + "local_code": "TVMBL" + }, + { + "id": "319975", + "ident": "IT-0377", + "type": "small_airport", + "name": "Campo di Volo \"Club Deltasport\"", + "latitude_deg": "44.653559", + "longitude_deg": "10.991591", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Castelfranco Emilia (MO)", + "scheduled_service": "no", + "local_code": "MOGAG", + "keywords": "Club Deltasport,Gaggio di Piano" + }, + { + "id": "319977", + "ident": "IT-0378", + "type": "small_airport", + "name": "Campo di Volo Ala Jonica", + "latitude_deg": "37.9371", + "longitude_deg": "15.320702", + "elevation_ft": "235", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Sant'Alessio Siculo", + "scheduled_service": "no", + "local_code": "MESAL" + }, + { + "id": "319978", + "ident": "IT-0379", + "type": "small_airport", + "name": "Aviosuperficie Rosangeles", + "latitude_deg": "45.362833", + "longitude_deg": "9.016683", + "elevation_ft": "360", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Rosate (MI)", + "scheduled_service": "no", + "local_code": "MIROS", + "keywords": "Rosangeles" + }, + { + "id": "319980", + "ident": "IT-0380", + "type": "small_airport", + "name": "Campo di Volo A.S. Ulcor", + "latitude_deg": "39.9787", + "longitude_deg": "8.6792", + "elevation_ft": "157", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Solarusa (OR)", + "scheduled_service": "no", + "local_code": "ORSOL" + }, + { + "id": "319981", + "ident": "IT-0381", + "type": "small_airport", + "name": "Campo di Volo Vallermosa", + "latitude_deg": "39.3561", + "longitude_deg": "8.7919", + "elevation_ft": "235", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Vallermosa (CA)", + "scheduled_service": "no", + "local_code": "CAVAL" + }, + { + "id": "319983", + "ident": "IT-0382", + "type": "small_airport", + "name": "Gemini Flying Field", + "latitude_deg": "39.8948", + "longitude_deg": "18.1904", + "elevation_ft": "323", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Ugento (LE)", + "scheduled_service": "no", + "local_code": "LEUGN", + "keywords": "Campo di Volo Gemini" + }, + { + "id": "319993", + "ident": "IT-0383", + "type": "small_airport", + "name": "Campo di Volo Giovanni Zaccini", + "latitude_deg": "41.560349", + "longitude_deg": "13.34412", + "elevation_ft": "492", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Ceccano (FR)", + "scheduled_service": "no", + "local_code": "FRCCC", + "keywords": "Giovanni Zaccini" + }, + { + "id": "319995", + "ident": "IT-0384", + "type": "small_airport", + "name": "Campo di Volo \"Il Grifo\"", + "latitude_deg": "41.671186", + "longitude_deg": "13.278646", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Ferentino (FR)", + "scheduled_service": "no", + "local_code": "FRFEG" + }, + { + "id": "319996", + "ident": "IT-0385", + "type": "small_airport", + "name": "Campo di Volo Rains", + "latitude_deg": "41.146", + "longitude_deg": "14.338803", + "elevation_ft": "97", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Caiazzo (CE)", + "scheduled_service": "no", + "local_code": "CECZZ" + }, + { + "id": "319999", + "ident": "IT-0386", + "type": "closed", + "name": "Volo Club Falchi Grigi", + "latitude_deg": "41.9101", + "longitude_deg": "16.0993", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Vieste (FG)", + "scheduled_service": "no" + }, + { + "id": "320006", + "ident": "IT-0387", + "type": "small_airport", + "name": "Aviosuperficie Delfina", + "latitude_deg": "42.842934", + "longitude_deg": "12.734494", + "elevation_ft": "708", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Trevi (PG)", + "scheduled_service": "no", + "local_code": "PGTRE", + "home_link": "http://www.scuoladivolo.com", + "keywords": "Delfina, AvioClub Trevi" + }, + { + "id": "320009", + "ident": "IT-0388", + "type": "small_airport", + "name": "Aviosuperficie Panicarola", + "latitude_deg": "43.064444", + "longitude_deg": "12.100556", + "elevation_ft": "902", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Panicale (PG)", + "scheduled_service": "no", + "local_code": "PGPNC", + "keywords": "Panicarola, Panicale" + }, + { + "id": "320011", + "ident": "IT-0389", + "type": "closed", + "name": "Aviosuperficie \"Bore di Chienti\"", + "latitude_deg": "43.261156", + "longitude_deg": "13.563302", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-57", + "municipality": "Corridonia (MC)", + "scheduled_service": "no", + "local_code": "MCBDC", + "keywords": "Armando di Tullio" + }, + { + "id": "320020", + "ident": "IT-0390", + "type": "small_airport", + "name": "Campo di Volo \"Delta Top Pegaso\"", + "latitude_deg": "42.224206", + "longitude_deg": "11.7948", + "elevation_ft": "351", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Tarquinia (VT)", + "scheduled_service": "no", + "local_code": "VTTAA", + "keywords": "Delta Top Pegaso" + }, + { + "id": "320022", + "ident": "IT-0391", + "type": "small_airport", + "name": "Tarquinia San Giorgio Airfield", + "latitude_deg": "42.192687", + "longitude_deg": "11.724573", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Tarquinia (VT)", + "scheduled_service": "no", + "local_code": "VTTAB", + "keywords": "San Giorgio" + }, + { + "id": "320025", + "ident": "IT-0392", + "type": "small_airport", + "name": "Montemelino Airfield", + "latitude_deg": "43.103", + "longitude_deg": "12.253", + "elevation_ft": "731", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Magione (PG)", + "scheduled_service": "no", + "local_code": "PGMAG", + "keywords": "Montemelino, Umbria Volo, Aviosuperficie Montemelino" + }, + { + "id": "320040", + "ident": "IT-0393", + "type": "closed", + "name": "Aviosuperficie \"Ali sul Graticolato\"", + "latitude_deg": "45.558333", + "longitude_deg": "11.973889", + "elevation_ft": "59", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Camposanpiero (PD)", + "scheduled_service": "no", + "local_code": "PD06", + "keywords": "Graticolato, Ali sul Gaticolato" + }, + { + "id": "320042", + "ident": "IT-0394", + "type": "small_airport", + "name": "Aviosuperficie \"Punta Ala\"", + "latitude_deg": "42.842172", + "longitude_deg": "10.82307", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Castiglione Della Pescaia (GR)", + "scheduled_service": "no", + "local_code": "GRALA", + "keywords": "Punta Ala" + }, + { + "id": "320066", + "ident": "IT-0395", + "type": "small_airport", + "name": "Aviosuperficie Collina", + "latitude_deg": "43.988371", + "longitude_deg": "11.389562", + "elevation_ft": "951", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Borgo San Lorenzo (FI)", + "scheduled_service": "no", + "local_code": "FI03", + "keywords": "Collina" + }, + { + "id": "320068", + "ident": "IT-0396", + "type": "closed", + "name": "Campo di Volo Dedalo", + "latitude_deg": "42.92801", + "longitude_deg": "10.840792", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Scarlino (GR)", + "scheduled_service": "no", + "local_code": "GRSCR", + "keywords": "Dedalo" + }, + { + "id": "320070", + "ident": "IT-0397", + "type": "small_airport", + "name": "Campo di Volo Ali Friuli", + "latitude_deg": "46.056493", + "longitude_deg": "13.426248", + "elevation_ft": "370", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Cividale del Friuli (UD)", + "scheduled_service": "no", + "local_code": "UDCIV", + "keywords": "Ali Friuli" + }, + { + "id": "320080", + "ident": "IT-0398", + "type": "small_airport", + "name": "Aviosuperficie Amici dell'Aria", + "latitude_deg": "39.327868", + "longitude_deg": "9.146871", + "elevation_ft": "472", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Settimo San Pietro (CA)", + "scheduled_service": "no", + "local_code": "CASET", + "keywords": "Amici dell'Aria" + }, + { + "id": "320084", + "ident": "IT-0399", + "type": "small_airport", + "name": "Campo di Volo Aliveneta", + "latitude_deg": "45.250934", + "longitude_deg": "11.036059", + "elevation_ft": "75", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Isola della Scala (VR)", + "scheduled_service": "no", + "local_code": "VRSGA", + "keywords": "Aliveneta" + }, + { + "id": "320100", + "ident": "IT-0400", + "type": "small_airport", + "name": "Campo di Volo \"Cavaliere d'Italia\"", + "latitude_deg": "45.156334", + "longitude_deg": "12.110272", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Cavarzere (VE)", + "scheduled_service": "no", + "local_code": "VECAV", + "keywords": "Cavaliere d'Italia" + }, + { + "id": "320102", + "ident": "IT-0401", + "type": "small_airport", + "name": "Campo di Volo \"Gli Acquilotti\"", + "latitude_deg": "45.138", + "longitude_deg": "12.2334", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Chioggia (VE)", + "scheduled_service": "no", + "local_code": "VECHI", + "keywords": "Gli Aquilotti" + }, + { + "id": "320104", + "ident": "IT-0402", + "type": "small_airport", + "name": "Campo di Volo \"Al Ranch\"", + "latitude_deg": "45.9235", + "longitude_deg": "13.033567", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Bertiolo (UD)", + "scheduled_service": "no", + "local_code": "UDBER" + }, + { + "id": "320105", + "ident": "IT-0403", + "type": "small_airport", + "name": "Campo di Volo Always", + "latitude_deg": "46.133883", + "longitude_deg": "13.278224", + "elevation_ft": "344", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Povoletto (UD)", + "scheduled_service": "no", + "local_code": "UDPOV", + "keywords": "Always" + }, + { + "id": "320107", + "ident": "IT-0404", + "type": "closed", + "name": "I Grifoni Flying Field", + "latitude_deg": "45.91347", + "longitude_deg": "13.371861", + "elevation_ft": "95", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "San Vito al Torre (UD)", + "scheduled_service": "no", + "local_code": "UDSVT", + "keywords": "Campo di Volo I Grifoni" + }, + { + "id": "320109", + "ident": "IT-0405", + "type": "small_airport", + "name": "Aviosuperficie Chiasiellis", + "latitude_deg": "45.944928", + "longitude_deg": "13.208403", + "elevation_ft": "118", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Mortegliano (UD)", + "scheduled_service": "no", + "local_code": "UDMOR", + "keywords": "Chiasiellis" + }, + { + "id": "320111", + "ident": "IT-0406", + "type": "small_airport", + "name": "Campo di Volo Fly Synthesis", + "latitude_deg": "45.968667", + "longitude_deg": "13.23355", + "elevation_ft": "167", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Mortegliano (UD)", + "scheduled_service": "no", + "local_code": "UDFLY", + "keywords": "Fly Synthesis" + }, + { + "id": "320126", + "ident": "IT-0407", + "type": "small_airport", + "name": "Fly Evolution Flying Field", + "latitude_deg": "45.981982", + "longitude_deg": "13.306923", + "elevation_ft": "187", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Pavia di Udine (UD)", + "scheduled_service": "no", + "local_code": "UDPAV", + "home_link": "http://www.sgflyevolution.it", + "keywords": "Fly Evolution, Campo di Volo Fly Evolution" + }, + { + "id": "320128", + "ident": "IT-0408", + "type": "small_airport", + "name": "Campo di Volo Pranovi", + "latitude_deg": "45.372", + "longitude_deg": "12.037703", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Fossò (VE)", + "scheduled_service": "no", + "local_code": "VEFOS", + "keywords": "Pranovi" + }, + { + "id": "320155", + "ident": "IT-0409", + "type": "small_airport", + "name": "Campo di Volo \"Maraclub Icamar\"", + "latitude_deg": "39.278216", + "longitude_deg": "9.25674", + "elevation_ft": "288", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Maracalagonis", + "scheduled_service": "no", + "local_code": "CAMAR", + "home_link": "http://www.maraclub.it", + "keywords": "Maraclub,Icamar" + }, + { + "id": "320158", + "ident": "IT-0410", + "type": "small_airport", + "name": "Aviosuperficie Aero Club Valdarno S.C.U.V.", + "latitude_deg": "43.53084", + "longitude_deg": "11.473086", + "elevation_ft": "1131", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Cavriglia (AR)", + "scheduled_service": "no", + "local_code": "ARCVP", + "keywords": "SCUV,Valle al Pero" + }, + { + "id": "320159", + "ident": "IT-0411", + "type": "small_airport", + "name": "Campo di Volo Massimo Costa", + "latitude_deg": "43.092714", + "longitude_deg": "10.556267", + "elevation_ft": "111", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "San Vincenzo (LI)", + "scheduled_service": "no", + "local_code": "LISVN", + "keywords": "Massimo Costa, Sky Sports Europe" + }, + { + "id": "320165", + "ident": "IT-0412", + "type": "closed", + "name": "Campo di Volo Condor", + "latitude_deg": "42.9691667", + "longitude_deg": "10.6197222", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Piombino", + "scheduled_service": "no", + "local_code": "LI08", + "keywords": "Condor" + }, + { + "id": "320166", + "ident": "IT-0413", + "type": "small_airport", + "name": "Aviosuperficie del Parteolla", + "latitude_deg": "39.400471", + "longitude_deg": "9.139151", + "elevation_ft": "433", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Serdiana", + "scheduled_service": "no", + "local_code": "CASER", + "home_link": "http://skydivesardegna.it", + "keywords": "Skydive Sardegna,Parteolla" + }, + { + "id": "320167", + "ident": "IT-0414", + "type": "small_airport", + "name": "Aviosuperficie \"La Tana del Volo\"", + "latitude_deg": "39.269133", + "longitude_deg": "8.771811", + "elevation_ft": "272", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Siliqua (CA)", + "scheduled_service": "no", + "local_code": "CASIL", + "home_link": "http://www.latanadelvolo.it/", + "keywords": "La Tana del Volo" + }, + { + "id": "320176", + "ident": "IT-0415", + "type": "small_airport", + "name": "Campo di Volo Scaligero", + "latitude_deg": "45.317999", + "longitude_deg": "10.708789", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Valeggio (VR)", + "scheduled_service": "no", + "local_code": "VRVAL", + "keywords": "Scaligero" + }, + { + "id": "320177", + "ident": "IT-0416", + "type": "small_airport", + "name": "Aviosuperficie Arcadia", + "latitude_deg": "45.501483", + "longitude_deg": "10.788964", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Pastrengo (VR)", + "scheduled_service": "no", + "local_code": "VR15", + "keywords": "Arcadia" + }, + { + "id": "320178", + "ident": "IT-0417", + "type": "closed", + "name": "Aviosuperficie Coraine", + "latitude_deg": "45.588562", + "longitude_deg": "10.755719", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Caprino Veronese (VR)", + "scheduled_service": "no", + "local_code": "VR16", + "keywords": "Coraine" + }, + { + "id": "320187", + "ident": "IT-0418", + "type": "heliport", + "name": "Marradi Fire Brigade Helipad", + "latitude_deg": "44.089273", + "longitude_deg": "11.634656", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Marradi (FI)", + "scheduled_service": "no" + }, + { + "id": "320195", + "ident": "IT-0419", + "type": "small_airport", + "name": "Campo di Volo San Sisto", + "latitude_deg": "44.847258", + "longitude_deg": "10.505502", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Poviglio (RE)", + "scheduled_service": "no", + "local_code": "REPOV", + "keywords": "San Sisto, San Sisto di Poviglia" + }, + { + "id": "320197", + "ident": "IT-0420", + "type": "small_airport", + "name": "Campo di Volo Top Gun", + "latitude_deg": "44.682302", + "longitude_deg": "10.568648", + "elevation_ft": "259", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Cavriago (RE), loc. Coviolo", + "scheduled_service": "no", + "local_code": "RECAV", + "keywords": "Top Gun" + }, + { + "id": "320204", + "ident": "IT-0421", + "type": "small_airport", + "name": "Campo di Volo \"Volo Libero Carnia\"", + "latitude_deg": "46.524053", + "longitude_deg": "13.004055", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Paluzza (UD)", + "scheduled_service": "no", + "local_code": "UDCER", + "keywords": "Volo Libero Carnia" + }, + { + "id": "320205", + "ident": "IT-0422", + "type": "closed", + "name": "Campo di Volo \"Pajaro Loco\"", + "latitude_deg": "45.867979", + "longitude_deg": "12.792206", + "elevation_ft": "197", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Sesto al Reghena (PN)", + "scheduled_service": "no", + "keywords": "Pajaro Loco" + }, + { + "id": "320209", + "ident": "IT-0423", + "type": "small_airport", + "name": "Bracciano Air Base", + "latitude_deg": "42.0822", + "longitude_deg": "12.07459", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Bracciano", + "scheduled_service": "no", + "keywords": "Oscar Savini, IDRA, LIIE" + }, + { + "id": "320222", + "ident": "IT-0424", + "type": "small_airport", + "name": "Aviosuperficie Mascioni", + "latitude_deg": "45.8991667", + "longitude_deg": "8.71735", + "elevation_ft": "898", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Cuvio (VA)", + "scheduled_service": "no", + "local_code": "VA05", + "keywords": "Umberto Mascioni" + }, + { + "id": "320224", + "ident": "IT-0425", + "type": "small_airport", + "name": "Campo di Volo Aeroteam", + "latitude_deg": "45.4362801", + "longitude_deg": "8.5770435", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Casalgiate (NO)", + "scheduled_service": "no", + "home_link": "http://www.aeroteam.it", + "keywords": "Aeroteam" + }, + { + "id": "320233", + "ident": "IT-0426", + "type": "small_airport", + "name": "Campo di Volo Rivoli", + "latitude_deg": "45.046818", + "longitude_deg": "7.536461", + "elevation_ft": "1000", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Rivoli (TO)", + "scheduled_service": "no", + "local_code": "TO25" + }, + { + "id": "320234", + "ident": "IT-0427", + "type": "small_airport", + "name": "Campo di Volo Andrea Bozzo", + "latitude_deg": "44.863742", + "longitude_deg": "7.407068", + "elevation_ft": "984", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Pinerolo Buriasco (TO)", + "scheduled_service": "no", + "local_code": "TO13", + "keywords": "Andrea Bozzo" + }, + { + "id": "320242", + "ident": "IT-0428", + "type": "small_airport", + "name": "Campo di Volo \"La Canonica\"", + "latitude_deg": "45.635467", + "longitude_deg": "12.340599", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Cendon di Silea (TV)", + "scheduled_service": "no", + "local_code": "TVCEN" + }, + { + "id": "320243", + "ident": "IT-0429", + "type": "small_airport", + "name": "Campo di Volo Albatros", + "latitude_deg": "45.770727", + "longitude_deg": "12.244068", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Spresiano (TV)", + "scheduled_service": "no", + "local_code": "TVSPR", + "keywords": "Albatros" + }, + { + "id": "320244", + "ident": "IT-0430", + "type": "small_airport", + "name": "Campo di Volo \"Dream Fly\"", + "latitude_deg": "45.930381", + "longitude_deg": "12.257512", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Vittorio Veneto (TV)", + "scheduled_service": "no", + "local_code": "TVVTV", + "keywords": "Dream Fly" + }, + { + "id": "320245", + "ident": "IT-0431", + "type": "small_airport", + "name": "Campo di Volo \"Butterfly 2\"", + "latitude_deg": "45.853", + "longitude_deg": "12.456949", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Codognè (TV)", + "scheduled_service": "no", + "local_code": "TVCOD", + "keywords": "Butterfly" + }, + { + "id": "320254", + "ident": "IT-0432", + "type": "closed", + "name": "Aviosuperficie \"Val Vibrata 2\"", + "latitude_deg": "42.80427", + "longitude_deg": "13.794678", + "elevation_ft": "433", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-65", + "municipality": "Sant'Omero (TE)", + "scheduled_service": "no", + "local_code": "TE03", + "keywords": "Val Vibrata" + }, + { + "id": "320268", + "ident": "IT-0433", + "type": "closed", + "name": "Aviosuperficie Deltaland", + "latitude_deg": "44.8714", + "longitude_deg": "10.9807", + "elevation_ft": "46", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "San Possidonia (MO)", + "scheduled_service": "no", + "local_code": "MOSPS" + }, + { + "id": "320277", + "ident": "IT-0434", + "type": "small_airport", + "name": "Campo di Volo L'Airone", + "latitude_deg": "45.153393", + "longitude_deg": "8.656568", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Valle Lomellina (PV)", + "scheduled_service": "no", + "local_code": "PVVLO" + }, + { + "id": "320278", + "ident": "IT-0435", + "type": "small_airport", + "name": "Aviosuperficie di Fucecchio", + "latitude_deg": "43.7514431", + "longitude_deg": "10.8073791", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "scheduled_service": "no" + }, + { + "id": "320279", + "ident": "IT-0436", + "type": "small_airport", + "name": "Aviosuperficie Antica Sardegna", + "latitude_deg": "39.270695", + "longitude_deg": "9.538871", + "elevation_ft": "206", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Castiadas (CA)", + "scheduled_service": "no", + "local_code": "CA09", + "keywords": "Antica Sardegna" + }, + { + "id": "320298", + "ident": "IT-0437", + "type": "small_airport", + "name": "Aviosuperficie Santo Stefano", + "latitude_deg": "42.072262", + "longitude_deg": "12.2628", + "elevation_ft": "725", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Anguillara Sabazia (RM)", + "scheduled_service": "no", + "local_code": "RMANG", + "home_link": "http://www.touchandgo.it", + "keywords": "Santo Stefano" + }, + { + "id": "320318", + "ident": "IT-0438", + "type": "small_airport", + "name": "Campo di Volo AliLafer", + "latitude_deg": "45.033682", + "longitude_deg": "9.791865", + "elevation_ft": "147", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Borghetto (PC)", + "scheduled_service": "no", + "local_code": "PCBOR", + "keywords": "AliLafer,Ali Lafer" + }, + { + "id": "320353", + "ident": "IT-0439", + "type": "small_airport", + "name": "Aviosuperficie Tucano", + "latitude_deg": "42.132373", + "longitude_deg": "12.627056", + "elevation_ft": "75", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Fiano Romano (RM)", + "scheduled_service": "no", + "local_code": "RMFRM", + "home_link": "http://www.aeroclubtucano.com/", + "keywords": "Tucano" + }, + { + "id": "320363", + "ident": "IT-0440", + "type": "small_airport", + "name": "Aviosuperficie Grecciano", + "latitude_deg": "43.628814", + "longitude_deg": "10.482438", + "elevation_ft": "6", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Grecciano (LI)", + "scheduled_service": "no", + "local_code": "LIGRE", + "keywords": "Grecciano" + }, + { + "id": "320364", + "ident": "IT-0441", + "type": "small_airport", + "name": "Campo di Volo Campiglia", + "latitude_deg": "43.019437", + "longitude_deg": "10.594659", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Campiglia Marittima", + "scheduled_service": "no", + "local_code": "LI11", + "keywords": "Campiglia,Venturina" + }, + { + "id": "320370", + "ident": "IT-0442", + "type": "small_airport", + "name": "Campo di Volo \"Air Country\"", + "latitude_deg": "42.806283", + "longitude_deg": "13.785007", + "elevation_ft": "456", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-65", + "municipality": "Sant'Omero (TE)", + "scheduled_service": "no", + "local_code": "TESOM", + "keywords": "Air Country" + }, + { + "id": "320380", + "ident": "IT-0443", + "type": "small_airport", + "name": "Costa del Monte Flying Field", + "latitude_deg": "42.733207", + "longitude_deg": "13.891703", + "elevation_ft": "498", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-65", + "municipality": "Mosciano Sant'Angelo (TE)", + "scheduled_service": "no", + "local_code": "TEMSA", + "keywords": "Costa del Monte, Mosciano, Campo di Volo \"Costa del Monte\"" + }, + { + "id": "320381", + "ident": "IT-0444", + "type": "small_airport", + "name": "Roma East Airfield", + "latitude_deg": "41.914691", + "longitude_deg": "12.769538", + "elevation_ft": "387", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Roma", + "scheduled_service": "no", + "local_code": "RM33", + "keywords": "Roma Est, Corcolle" + }, + { + "id": "320382", + "ident": "IT-0445", + "type": "small_airport", + "name": "Aviosuperficie Santarcangelo", + "latitude_deg": "44.032318", + "longitude_deg": "12.427928", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Santarcangelo di Romagna (RN)", + "scheduled_service": "no", + "local_code": "RNSAR", + "home_link": "http://www.aviosuperficiesantarcangelo.it", + "keywords": "Santarcangelo di Romagna" + }, + { + "id": "320383", + "ident": "IT-0446", + "type": "closed", + "name": "Campo di Volo Policoro", + "latitude_deg": "40.170967", + "longitude_deg": "16.6628", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-77", + "municipality": "Policoro (MT)", + "scheduled_service": "no", + "local_code": "MTPOL" + }, + { + "id": "320384", + "ident": "IT-0447", + "type": "small_airport", + "name": "Policoro Saline Flying Field", + "latitude_deg": "40.216161", + "longitude_deg": "16.731721", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-77", + "municipality": "Policoro (MT)", + "scheduled_service": "no", + "local_code": "MT05", + "keywords": "Saline, Policoro, Campo di Volo Policoro \"Saline\"" + }, + { + "id": "320415", + "ident": "IT-0448", + "type": "small_airport", + "name": "Campo di Volo MedFly", + "latitude_deg": "37.1055", + "longitude_deg": "14.220061", + "elevation_ft": "85", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Gela (CL)", + "scheduled_service": "no", + "local_code": "CL06", + "keywords": "MedFly" + }, + { + "id": "320417", + "ident": "IT-0449", + "type": "small_airport", + "name": "Campo di Volo Club Aeronautico Gela", + "latitude_deg": "37.11314", + "longitude_deg": "14.18929", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Gela (CL)", + "scheduled_service": "no", + "keywords": "Club Aeronautico Gela" + }, + { + "id": "320438", + "ident": "IT-0450", + "type": "small_airport", + "name": "Campo di Volo \"Palazzone di Narni\"", + "latitude_deg": "42.536609", + "longitude_deg": "12.553635", + "elevation_ft": "360", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Narni (TR)", + "scheduled_service": "no", + "local_code": "TR02" + }, + { + "id": "320439", + "ident": "IT-0451", + "type": "small_airport", + "name": "Campo di Volo Calledro", + "latitude_deg": "42.464848", + "longitude_deg": "12.428715", + "elevation_ft": "190", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Narni (TR)", + "scheduled_service": "no", + "local_code": "TR06", + "keywords": "Calledro" + }, + { + "id": "320441", + "ident": "IT-0452", + "type": "small_airport", + "name": "Aviosuperficie ARMA", + "latitude_deg": "41.464661", + "longitude_deg": "12.746693", + "elevation_ft": "59", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Nettuno (RM)", + "scheduled_service": "no", + "local_code": "RMNET", + "keywords": "ARMA" + }, + { + "id": "320451", + "ident": "IT-0453", + "type": "closed", + "name": "Aviosuperficie Roma-Nord", + "latitude_deg": "42.119945", + "longitude_deg": "12.604453", + "elevation_ft": "78", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Capena (RM)", + "scheduled_service": "no", + "local_code": "RMCAP", + "keywords": "Roma-Nord" + }, + { + "id": "320452", + "ident": "IT-0454", + "type": "small_airport", + "name": "Fly Roma Airfield", + "latitude_deg": "41.884894", + "longitude_deg": "12.718286", + "elevation_ft": "190", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Montecompatri (RM)", + "scheduled_service": "no", + "local_code": "RMOSA", + "home_link": "http://www.flyroma.it", + "keywords": "Aviosuperficie Fly Roma, Paracentro Roma" + }, + { + "id": "320461", + "ident": "IT-0455", + "type": "small_airport", + "name": "Campo di Volo Sangermano", + "latitude_deg": "41.991555", + "longitude_deg": "12.13791", + "elevation_ft": "337", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Cerveteri (RM)", + "scheduled_service": "no", + "local_code": "RMCER", + "keywords": "Sangermano,ACLI" + }, + { + "id": "320468", + "ident": "IT-0456", + "type": "small_airport", + "name": "Aviosuperficie Alfina", + "latitude_deg": "42.739667", + "longitude_deg": "11.983333", + "elevation_ft": "1811", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Torre Alfina (TR)", + "scheduled_service": "no", + "local_code": "TRSVS", + "keywords": "Alfina,Torre Alfina,Castelviscard" + }, + { + "id": "320469", + "ident": "IT-0457", + "type": "small_airport", + "name": "Aviosuperficie Ocria", + "latitude_deg": "42.427255", + "longitude_deg": "12.457864", + "elevation_ft": "147", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Otricolo/Orte", + "scheduled_service": "no", + "local_code": "TR09" + }, + { + "id": "320504", + "ident": "IT-0458", + "type": "closed", + "name": "Aviosuperficie Naviglio Grande", + "latitude_deg": "45.397222", + "longitude_deg": "8.97", + "elevation_ft": "370", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Vermezzo (MI)", + "scheduled_service": "no", + "local_code": "MIVER" + }, + { + "id": "320505", + "ident": "IT-0459", + "type": "small_airport", + "name": "Aviosuperficie Valcesano", + "latitude_deg": "43.70202", + "longitude_deg": "13.075323", + "elevation_ft": "167", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-57", + "municipality": "Monteporzio (PS)", + "scheduled_service": "no", + "local_code": "PUVCS", + "keywords": "Avio Club Fano" + }, + { + "id": "320527", + "ident": "IT-0460", + "type": "small_airport", + "name": "Aviosuperficie Pratello", + "latitude_deg": "43.55402", + "longitude_deg": "10.752517", + "elevation_ft": "173", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Peccioli (PI)", + "scheduled_service": "no", + "local_code": "PIPRA", + "keywords": "Pratello" + }, + { + "id": "320538", + "ident": "IT-0461", + "type": "small_airport", + "name": "Campo di Volo Groane", + "latitude_deg": "45.56612", + "longitude_deg": "9.109705", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Senago (MI)", + "scheduled_service": "no", + "local_code": "MISEN", + "keywords": "Groane,Senago" + }, + { + "id": "320539", + "ident": "IT-0462", + "type": "small_airport", + "name": "Campo di Volo Cogliate", + "latitude_deg": "45.640218", + "longitude_deg": "9.066056", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Cogliate (MI)", + "scheduled_service": "no", + "local_code": "MICOG" + }, + { + "id": "320555", + "ident": "IT-0463", + "type": "small_airport", + "name": "Campo di Volo Pasiano", + "latitude_deg": "45.832273", + "longitude_deg": "12.593565", + "elevation_ft": "19", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Pasiano (PN)", + "scheduled_service": "no", + "local_code": "PNPAS" + }, + { + "id": "320556", + "ident": "IT-0464", + "type": "small_airport", + "name": "Campo di Volo Cordovado", + "latitude_deg": "45.83657", + "longitude_deg": "12.892801", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Cordovado (PN)", + "scheduled_service": "no", + "local_code": "PNCDV" + }, + { + "id": "320592", + "ident": "IT-0465", + "type": "closed", + "name": "Campo di Volo Albatros", + "latitude_deg": "43.754752", + "longitude_deg": "12.954763", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-57", + "municipality": "Montemaggiore (PS)", + "scheduled_service": "no", + "local_code": "PS01" + }, + { + "id": "320598", + "ident": "IT-0466", + "type": "small_airport", + "name": "Campo di Volo Amyclae", + "latitude_deg": "41.314204", + "longitude_deg": "13.345913", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Fondi (LT)", + "scheduled_service": "no", + "local_code": "LTFON", + "keywords": "Amyclae,Red Baron" + }, + { + "id": "320599", + "ident": "IT-0467", + "type": "small_airport", + "name": "Campo di Volo Pontinia Eagles", + "latitude_deg": "41.372995", + "longitude_deg": "13.136783", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Pontinia (LT)", + "scheduled_service": "no", + "local_code": "LTPNT" + }, + { + "id": "320600", + "ident": "IT-0468", + "type": "small_airport", + "name": "Campo di Volo Avio Pontina Fly", + "latitude_deg": "41.380947", + "longitude_deg": "13.180648", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Pontinia (LT)", + "scheduled_service": "no", + "local_code": "LT07", + "keywords": "Avio Pontina Fly" + }, + { + "id": "320629", + "ident": "IT-0469", + "type": "small_airport", + "name": "Aviosuperficie La Celsetta", + "latitude_deg": "42.121667", + "longitude_deg": "12.360556", + "elevation_ft": "722", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Campagnano (RM)", + "scheduled_service": "no", + "local_code": "RMCMP", + "home_link": "http://www.scuolavolare.it/", + "keywords": "La Celsetta" + }, + { + "id": "320630", + "ident": "IT-0470", + "type": "small_airport", + "name": "Valmontone Airfield", + "latitude_deg": "41.765562", + "longitude_deg": "12.864436", + "elevation_ft": "1158", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Valmontone (RM)", + "scheduled_service": "no", + "local_code": "RM21", + "keywords": "Valmontone" + }, + { + "id": "320681", + "ident": "IT-0471", + "type": "small_airport", + "name": "Aviocaipoli Airfield", + "latitude_deg": "41.891615", + "longitude_deg": "12.783311", + "elevation_ft": "558", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Gallicano nel Lazio (RM)", + "scheduled_service": "no", + "local_code": "RMGAL", + "keywords": "Aviocaipoli, Nino Petrini" + }, + { + "id": "320682", + "ident": "IT-0472", + "type": "small_airport", + "name": "Air Classic Airfield", + "latitude_deg": "45.2883333", + "longitude_deg": "8.8", + "elevation_ft": "350", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Vigevano (PV)", + "scheduled_service": "no", + "local_code": "PVVGV", + "keywords": "Air Classic" + }, + { + "id": "320691", + "ident": "IT-0473", + "type": "small_airport", + "name": "Gallipoli Flying Field", + "latitude_deg": "40.016111", + "longitude_deg": "18.023889", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Gallipoli (LE)", + "scheduled_service": "no", + "local_code": "LEGAL", + "keywords": "Gallipoli, Campo di Volo Gallipoli" + }, + { + "id": "320736", + "ident": "IT-0474", + "type": "small_airport", + "name": "Aviosuperficie Fiano Romano", + "latitude_deg": "42.1447222", + "longitude_deg": "12.6333333", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Fiano Romano (RM)", + "scheduled_service": "no" + }, + { + "id": "320737", + "ident": "IT-0475", + "type": "small_airport", + "name": "Aviosuperficie Corfinio", + "latitude_deg": "42.108751", + "longitude_deg": "13.842901", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-65", + "municipality": "Corfinio (AQ)", + "scheduled_service": "no", + "local_code": "AQCOR" + }, + { + "id": "320806", + "ident": "IT-0476", + "type": "small_airport", + "name": "Aviosuperficie Carzago Riviera", + "latitude_deg": "45.516789", + "longitude_deg": "10.464759", + "elevation_ft": "639", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Calvagese della Riviera (BS)", + "scheduled_service": "no", + "local_code": "BSCAR", + "home_link": "http://www.sorlini.com/index.php?option=com_content&view=article&id=27&Itemid=154&lang=en", + "keywords": "Sorlini,Luciano Sorlini" + }, + { + "id": "320827", + "ident": "IT-0477", + "type": "small_airport", + "name": "Campo di Volo Delta Club", + "latitude_deg": "41.716433", + "longitude_deg": "13.094704", + "elevation_ft": "659", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Anagni (FR)", + "scheduled_service": "no", + "local_code": "FRAGN", + "keywords": "Delta Club Città dei Papi" + }, + { + "id": "320830", + "ident": "IT-0478", + "type": "small_airport", + "name": "Campo di Volo Azzanello", + "latitude_deg": "45.2938889", + "longitude_deg": "9.9205556", + "elevation_ft": "159", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Azzanello (CR)", + "scheduled_service": "no", + "local_code": "CRAZZ", + "keywords": "Sanel" + }, + { + "id": "320842", + "ident": "IT-0479", + "type": "small_airport", + "name": "Aviosuperficie Ali Umbre", + "latitude_deg": "43.27045", + "longitude_deg": "12.7422267", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Gualdo Tadino (PG)", + "scheduled_service": "no", + "local_code": "PGGUA" + }, + { + "id": "320847", + "ident": "IT-0480", + "type": "small_airport", + "name": "Campo di Volo Sturaro", + "latitude_deg": "45.1963889", + "longitude_deg": "12.0688889", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Cona (VE)", + "scheduled_service": "no" + }, + { + "id": "320865", + "ident": "IT-0481", + "type": "small_airport", + "name": "Campo di Volo I Quattro Cantoni", + "latitude_deg": "44.8030556", + "longitude_deg": "11.138333", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Camposanto (MO)", + "scheduled_service": "no", + "local_code": "MOCAM" + }, + { + "id": "320867", + "ident": "IT-0482", + "type": "small_airport", + "name": "Campo di Volo Carzeto", + "latitude_deg": "44.96", + "longitude_deg": "10.1838889", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Soragna (PR)", + "scheduled_service": "no", + "local_code": "PRSOR" + }, + { + "id": "320872", + "ident": "IT-0483", + "type": "small_airport", + "name": "Campo di Volo UFO", + "latitude_deg": "41.512595", + "longitude_deg": "13.283537", + "elevation_ft": "301", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Giuliano di Roma (FR)", + "scheduled_service": "no", + "local_code": "FR07" + }, + { + "id": "320898", + "ident": "IT-0484", + "type": "small_airport", + "name": "Campo di Volo Squadra Avvoltoi", + "latitude_deg": "45.241525", + "longitude_deg": "11.004096", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Isola della Scala (VR)", + "scheduled_service": "no", + "local_code": "VRISO" + }, + { + "id": "320899", + "ident": "IT-0485", + "type": "small_airport", + "name": "Campo di Volo Cianpioppo", + "latitude_deg": "45.015766", + "longitude_deg": "10.509881", + "elevation_ft": "82", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Sabbioneta (MN)", + "scheduled_service": "no", + "local_code": "MNSAB" + }, + { + "id": "320920", + "ident": "IT-0486", + "type": "closed", + "name": "Campo di Volo Corbetta", + "latitude_deg": "44.807691", + "longitude_deg": "12.105863", + "elevation_ft": "6", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Codigoro (FE)", + "scheduled_service": "no", + "local_code": "FECOD" + }, + { + "id": "320921", + "ident": "IT-0487", + "type": "small_airport", + "name": "Campo di Volo La Strozza", + "latitude_deg": "44.894653", + "longitude_deg": "11.669125", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Francolino (FE)", + "scheduled_service": "no", + "local_code": "FEFRA", + "home_link": "http://www.agriturismolastrozza.it/" + }, + { + "id": "321038", + "ident": "IT-0488", + "type": "small_airport", + "name": "Campo di Volo Francesco Cantelmo", + "latitude_deg": "42.4886111", + "longitude_deg": "11.7986111", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Tessenano (VT)", + "scheduled_service": "no", + "local_code": "VTTES" + }, + { + "id": "321039", + "ident": "IT-0489", + "type": "small_airport", + "name": "Campo di Volo Pellicano", + "latitude_deg": "44.8472222", + "longitude_deg": "7.5622222", + "elevation_ft": "813", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Virle (TO)", + "scheduled_service": "no", + "local_code": "TOVIR", + "keywords": "Pellicano" + }, + { + "id": "321040", + "ident": "IT-0490", + "type": "small_airport", + "name": "Aviosuperficie Torre Foghe", + "latitude_deg": "40.1833333", + "longitude_deg": "8.4694444", + "elevation_ft": "295", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Tresnuraghes (OR)", + "scheduled_service": "no", + "local_code": "ORTFO" + }, + { + "id": "321048", + "ident": "IT-0491", + "type": "small_airport", + "name": "Aviosuperficie San Felice", + "latitude_deg": "46.084723", + "longitude_deg": "12.121052", + "elevation_ft": "984", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Trichiana (BL)", + "scheduled_service": "no", + "local_code": "BLTRI" + }, + { + "id": "321084", + "ident": "IT-0492", + "type": "small_airport", + "name": "Aviosuperficie Vraglia", + "latitude_deg": "44.413209", + "longitude_deg": "11.747288", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Imola (BO)", + "scheduled_service": "no", + "local_code": "BOIMV" + }, + { + "id": "321092", + "ident": "IT-0493", + "type": "small_airport", + "name": "Aviosuperficie Fly Center", + "latitude_deg": "41.5472222", + "longitude_deg": "12.6708333", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Aprilia (LT)", + "scheduled_service": "no", + "local_code": "LTAPR" + }, + { + "id": "321108", + "ident": "IT-0494", + "type": "small_airport", + "name": "Campo di Volo \"Il Gruccione\"", + "latitude_deg": "43.605515", + "longitude_deg": "10.411837", + "elevation_ft": "15", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Collesalvetti (LI)", + "scheduled_service": "no", + "local_code": "LICOL" + }, + { + "id": "321109", + "ident": "IT-0495", + "type": "small_airport", + "name": "Campo di Volo privato Bigarello", + "latitude_deg": "45.170815", + "longitude_deg": "10.929061", + "elevation_ft": "70", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Bigarello (MN)", + "scheduled_service": "no", + "local_code": "MNBIG" + }, + { + "id": "321110", + "ident": "IT-0496", + "type": "small_airport", + "name": "Campo di Volo Pellizzario", + "latitude_deg": "45.2927778", + "longitude_deg": "10.4466667", + "elevation_ft": "140", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Castel Goffredo (MN)", + "scheduled_service": "no", + "local_code": "MNPEL" + }, + { + "id": "321167", + "ident": "IT-0497", + "type": "small_airport", + "name": "Campo di Volo AvioSciacca", + "latitude_deg": "37.5280556", + "longitude_deg": "13.0036111", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Sciacca (AG)", + "scheduled_service": "no", + "local_code": "AGSCI" + }, + { + "id": "321168", + "ident": "IT-0498", + "type": "small_airport", + "name": "Campo di Volo \"Girasole Vola\"", + "latitude_deg": "39.9566667", + "longitude_deg": "9.6452778", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Ogliastra", + "scheduled_service": "no", + "local_code": "OGGIR" + }, + { + "id": "321191", + "ident": "IT-0499", + "type": "small_airport", + "name": "Pietralata Flying Field", + "latitude_deg": "39.970654", + "longitude_deg": "18.381006", + "elevation_ft": "300", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Andrano (LE)", + "scheduled_service": "no", + "local_code": "LEAND", + "keywords": "Campo di Volo Pietralata" + }, + { + "id": "321192", + "ident": "IT-0500", + "type": "small_airport", + "name": "Aviosuperficie La Smeraldina", + "latitude_deg": "41.05793", + "longitude_deg": "9.433446", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Olbia (OT)", + "scheduled_service": "no", + "keywords": "Smeraldina,La Smeraldina" + }, + { + "id": "321193", + "ident": "IT-0501", + "type": "small_airport", + "name": "Campo di Volo Selva Negra", + "latitude_deg": "42.406825", + "longitude_deg": "11.396192", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Capalbio", + "scheduled_service": "no", + "local_code": "GRCAP" + }, + { + "id": "321194", + "ident": "IT-0502", + "type": "small_airport", + "name": "Campo di Volo Privato Curtatone", + "latitude_deg": "45.112207", + "longitude_deg": "10.705383", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Curtatone (MN)", + "scheduled_service": "no", + "local_code": "MNBUS" + }, + { + "id": "321229", + "ident": "IT-0503", + "type": "small_airport", + "name": "Campo di Volo \"Delta Team Lucca\"", + "latitude_deg": "43.784226", + "longitude_deg": "10.603388", + "elevation_ft": "24", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Capannori (LU)", + "scheduled_service": "no", + "local_code": "LUCAP" + }, + { + "id": "321271", + "ident": "IT-0504", + "type": "small_airport", + "name": "Campo di Volo Mantovana", + "latitude_deg": "44.728086", + "longitude_deg": "8.595741", + "elevation_ft": "738", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Predosa (AL)", + "scheduled_service": "no", + "local_code": "ALMAN" + }, + { + "id": "321272", + "ident": "IT-0505", + "type": "small_airport", + "name": "Campo di Volo Felonica", + "latitude_deg": "44.9666667", + "longitude_deg": "11.3541667", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Felonica (MN)", + "scheduled_service": "no", + "local_code": "MNFEL" + }, + { + "id": "321285", + "ident": "IT-0506", + "type": "small_airport", + "name": "Aviosuperficie Tabularia", + "latitude_deg": "44.84975", + "longitude_deg": "10.5662204", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Poviglio (RE)", + "scheduled_service": "no", + "local_code": "REPOT" + }, + { + "id": "321345", + "ident": "IT-0507", + "type": "small_airport", + "name": "Campo di Volo \"Oasi del Volo\"", + "latitude_deg": "39.407537", + "longitude_deg": "9.174867", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Serdiana (CA)", + "scheduled_service": "no" + }, + { + "id": "321424", + "ident": "IT-0508", + "type": "small_airport", + "name": "Gsiesertal / Valle di Casies", + "latitude_deg": "46.7657842", + "longitude_deg": "12.1556392", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-32", + "municipality": "Monguelfo (BZ)", + "scheduled_service": "no", + "local_code": "BZCAS" + }, + { + "id": "321450", + "ident": "IT-0509", + "type": "small_airport", + "name": "Campo di Volo Scortichino", + "latitude_deg": "44.8577778", + "longitude_deg": "11.3530556", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Scortichino", + "scheduled_service": "no", + "keywords": "AL50" + }, + { + "id": "321452", + "ident": "IT-0510", + "type": "closed", + "name": "Campo di Volo \"Amanti Volo Ultraleggero\"", + "latitude_deg": "44.326615", + "longitude_deg": "11.659263", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Imola (BO)", + "scheduled_service": "no", + "local_code": "BOIML" + }, + { + "id": "321496", + "ident": "IT-0511", + "type": "small_airport", + "name": "Aviosuperficie privata \"La Ceriella\"", + "latitude_deg": "45.220143", + "longitude_deg": "8.659543", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Castello d'Agogna (PV)", + "scheduled_service": "no", + "local_code": "PVCSA" + }, + { + "id": "321519", + "ident": "IT-0512", + "type": "small_airport", + "name": "Aviosuperficie Maletto Fly", + "latitude_deg": "37.845756", + "longitude_deg": "14.869846", + "elevation_ft": "2756", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Maletto (CT)", + "scheduled_service": "no", + "local_code": "CTMAL", + "keywords": "Nebrodi Volo" + }, + { + "id": "321525", + "ident": "IT-0513", + "type": "small_airport", + "name": "Campo di Volo privato \"Le Prata\"", + "latitude_deg": "43.74537", + "longitude_deg": "10.404967", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "San Giuliano Terme", + "scheduled_service": "no", + "local_code": "PISGT" + }, + { + "id": "321573", + "ident": "IT-0514", + "type": "small_airport", + "name": "Campo di Volo di Vallecamonica", + "latitude_deg": "45.855901", + "longitude_deg": "10.147571", + "elevation_ft": "673", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Artogne (BS)", + "scheduled_service": "no", + "local_code": "BSART" + }, + { + "id": "321599", + "ident": "IT-0515", + "type": "small_airport", + "name": "Campo di Volo Altavillafly", + "latitude_deg": "40.5458333", + "longitude_deg": "15.1019444", + "elevation_ft": "207", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Altavilla Silentina (SA)", + "scheduled_service": "no", + "local_code": "SAAVS" + }, + { + "id": "321600", + "ident": "IT-0516", + "type": "small_airport", + "name": "Campo di Volo Linnarta", + "latitude_deg": "40.412091", + "longitude_deg": "9.723621", + "elevation_ft": "210", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Orosei (NU)", + "scheduled_service": "no", + "local_code": "NUORS" + }, + { + "id": "321612", + "ident": "IT-0517", + "type": "small_airport", + "name": "Campo di Volo Titta", + "latitude_deg": "43.4912038", + "longitude_deg": "12.2428002", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Titta", + "scheduled_service": "no" + }, + { + "id": "321618", + "ident": "IT-0518", + "type": "small_airport", + "name": "Aviosuperficie Jonathan", + "latitude_deg": "45.783887", + "longitude_deg": "12.316765", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Grave di Papadopoli (TV)", + "scheduled_service": "no", + "local_code": "TVGRA", + "home_link": "https://sites.google.com/site/campojonathan30mo" + }, + { + "id": "321712", + "ident": "IT-0519", + "type": "small_airport", + "name": "Campo di Volo Ali Piacenza", + "latitude_deg": "45.0305556", + "longitude_deg": "9.6055556", + "elevation_ft": "213", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Piacenza", + "scheduled_service": "no", + "local_code": "PCPIA" + }, + { + "id": "321713", + "ident": "IT-0520", + "type": "closed", + "name": "Silvia-Giovanni", + "latitude_deg": "45.26142", + "longitude_deg": "10.535641", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Ceresara (MN)", + "scheduled_service": "no", + "local_code": "MNSMA" + }, + { + "id": "321714", + "ident": "IT-0521", + "type": "small_airport", + "name": "Campo di Volo Medole", + "latitude_deg": "45.339031", + "longitude_deg": "10.480944", + "elevation_ft": "230", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Castelgoffredo (MN)", + "scheduled_service": "no", + "local_code": "MNMED" + }, + { + "id": "321717", + "ident": "IT-0522", + "type": "small_airport", + "name": "Aviosuperficie Privata Avielsar", + "latitude_deg": "39.498207", + "longitude_deg": "9.612477", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "San Lorenzo di Villaputzu (CA)", + "scheduled_service": "no", + "local_code": "CASLO" + }, + { + "id": "321758", + "ident": "IT-0523", + "type": "closed", + "name": "San Pancrazio Air Base", + "latitude_deg": "40.437947", + "longitude_deg": "17.857062", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "San Pancrazio Salentino (BR)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Pancrazio_Airfield" + }, + { + "id": "321909", + "ident": "IT-0524", + "type": "small_airport", + "name": "Campo di Volo Avio Lao", + "latitude_deg": "39.780336", + "longitude_deg": "15.809989", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-78", + "municipality": "Scalea (CS)", + "scheduled_service": "no", + "local_code": "CSSCA", + "home_link": "http://www.geair.it" + }, + { + "id": "322460", + "ident": "IT-0525", + "type": "heliport", + "name": "Lingotto Heliport", + "latitude_deg": "45.030898", + "longitude_deg": "7.664602", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Turin", + "scheduled_service": "no" + }, + { + "id": "322576", + "ident": "IT-0526", + "type": "small_airport", + "name": "ASD Salento Fly", + "latitude_deg": "40.35", + "longitude_deg": "18.0611111", + "elevation_ft": "60", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Carmiano (LE)", + "scheduled_service": "no", + "local_code": "LECAR" + }, + { + "id": "324737", + "ident": "IT-0527", + "type": "small_airport", + "name": "Corte Bariani", + "latitude_deg": "45.033228", + "longitude_deg": "11.724291", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Arquà Polesine (RO)", + "scheduled_service": "no", + "local_code": "ROAPO" + }, + { + "id": "324808", + "ident": "IT-0528", + "type": "closed", + "name": "Dune Aeroclub Città Bianca \"Francesco Santoro\"", + "latitude_deg": "40.772189", + "longitude_deg": "17.637754", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Fasano", + "scheduled_service": "no", + "local_code": "BAFAS" + }, + { + "id": "326107", + "ident": "IT-0529", + "type": "heliport", + "name": "Base elicotteri corpo forestale di Villasalto", + "latitude_deg": "39.479449", + "longitude_deg": "9.385912", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Villasalto", + "scheduled_service": "no" + }, + { + "id": "331644", + "ident": "IT-0530", + "type": "small_airport", + "name": "Campo di Volo Casalfiumanese", + "latitude_deg": "44.28966", + "longitude_deg": "11.625632", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Casalfiumanese", + "scheduled_service": "no" + }, + { + "id": "326882", + "ident": "IT-0531", + "type": "small_airport", + "name": "Campo volo Apricena Fly ULM", + "latitude_deg": "41.79806", + "longitude_deg": "15.419932", + "elevation_ft": "443", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Apricena", + "scheduled_service": "no", + "local_code": "FGAPR" + }, + { + "id": "326883", + "ident": "IT-0532", + "type": "small_airport", + "name": "Campo di Volo Volare Un Po ULM", + "latitude_deg": "45.016807", + "longitude_deg": "10.09893", + "elevation_ft": "100", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Polesine Zibello", + "scheduled_service": "no", + "local_code": "PRPOL" + }, + { + "id": "327167", + "ident": "IT-0533", + "type": "small_airport", + "name": "Ali dello Stilaro Flying Field", + "latitude_deg": "38.435161", + "longitude_deg": "16.561698", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-78", + "municipality": "Monasterace (RC)", + "scheduled_service": "no", + "keywords": "Campo di Volo Ali dello Stilaro" + }, + { + "id": "328916", + "ident": "IT-0534", + "type": "small_airport", + "name": "Rivaltella", + "latitude_deg": "44.642004", + "longitude_deg": "10.591759", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "scheduled_service": "no" + }, + { + "id": "329141", + "ident": "IT-0535", + "type": "heliport", + "name": "Eliporto di Lanusei", + "latitude_deg": "39.890822", + "longitude_deg": "9.50585", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "scheduled_service": "no" + }, + { + "id": "329236", + "ident": "IT-0536", + "type": "heliport", + "name": "Eliporto di Gela", + "latitude_deg": "37.066235", + "longitude_deg": "14.282138", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "scheduled_service": "no" + }, + { + "id": "331691", + "ident": "IT-0537", + "type": "small_airport", + "name": "CdV Colibri", + "latitude_deg": "42.3008333", + "longitude_deg": "12.3797222", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Civita Castellana (VT)", + "scheduled_service": "no", + "local_code": "VTCCA" + }, + { + "id": "331158", + "ident": "IT-0538", + "type": "closed", + "name": "Campo Volo SAT Torino", + "latitude_deg": "44.889233", + "longitude_deg": "7.680422", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Carmagnola", + "scheduled_service": "no", + "home_link": "https://www.satvolo.org" + }, + { + "id": "331184", + "ident": "IT-0539", + "type": "heliport", + "name": "Elisoccorso Provincia di Como", + "latitude_deg": "45.771878", + "longitude_deg": "9.043403", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Como", + "scheduled_service": "no" + }, + { + "id": "331212", + "ident": "IT-0540", + "type": "heliport", + "name": "Celenza Valfortore Heliport", + "latitude_deg": "41.5648318", + "longitude_deg": "14.9988173", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-67", + "scheduled_service": "no" + }, + { + "id": "331692", + "ident": "IT-0541", + "type": "closed", + "name": "Aviosuperficie Santa Lucia", + "latitude_deg": "42.3583333", + "longitude_deg": "12.4277778", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Gallese (VT)", + "scheduled_service": "no", + "local_code": "VTGAL" + }, + { + "id": "331745", + "ident": "IT-0542", + "type": "small_airport", + "name": "Casa Bianca", + "latitude_deg": "45.466596", + "longitude_deg": "10.347943", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "scheduled_service": "no", + "home_link": "http://www.ristorantecasabianca.it/pista_aereomodellismo.php" + }, + { + "id": "331746", + "ident": "IT-0543", + "type": "small_airport", + "name": "Aviosuperficie Rotocenter", + "latitude_deg": "43.7152961", + "longitude_deg": "10.7439971", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "scheduled_service": "no" + }, + { + "id": "331763", + "ident": "IT-0544", + "type": "heliport", + "name": "Eliporto di Siracusa Pantanelli", + "latitude_deg": "37.061536", + "longitude_deg": "15.267566", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Siracusa", + "scheduled_service": "no" + }, + { + "id": "331764", + "ident": "IT-0545", + "type": "heliport", + "name": "Eliporto Giorgio La Pira", + "latitude_deg": "36.718499", + "longitude_deg": "14.826982", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Pozzallo", + "scheduled_service": "no" + }, + { + "id": "333200", + "ident": "IT-0546", + "type": "heliport", + "name": "Elibase Pegaso 1 (Santa Maria Annunziata Hospital)", + "latitude_deg": "43.730732", + "longitude_deg": "11.304224", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Bagno a Ripoli", + "scheduled_service": "no" + }, + { + "id": "333557", + "ident": "IT-0547", + "type": "heliport", + "name": "Elipadana Heliport", + "latitude_deg": "45.488697", + "longitude_deg": "9.196184", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Milan", + "scheduled_service": "no" + }, + { + "id": "333606", + "ident": "IT-0548", + "type": "heliport", + "name": "Fonte di Papa Heliport", + "latitude_deg": "42.047787", + "longitude_deg": "12.568338", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Rome", + "scheduled_service": "no", + "home_link": "http://www.elitaliana.eu/le-basi/fonte-di-papa.php", + "keywords": "Elitaliana" + }, + { + "id": "333668", + "ident": "IT-0549", + "type": "small_airport", + "name": "Campo di Volo Meda", + "latitude_deg": "45.676374", + "longitude_deg": "8.486462", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "scheduled_service": "no" + }, + { + "id": "333833", + "ident": "IT-0550", + "type": "heliport", + "name": "Helibase Pelikan 1", + "latitude_deg": "46.497639", + "longitude_deg": "11.30527", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-32", + "municipality": "Bolzano / Bozen", + "scheduled_service": "no" + }, + { + "id": "334196", + "ident": "IT-0551", + "type": "small_airport", + "name": "Aviosuperficie Club Ibis", + "latitude_deg": "43.022522", + "longitude_deg": "10.61157", + "elevation_ft": "49", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Campiglia Marittima (LI)", + "scheduled_service": "no", + "local_code": "LICMA" + }, + { + "id": "336430", + "ident": "IT-0552", + "type": "heliport", + "name": "Villa Las Tronas Helipad", + "latitude_deg": "40.549793", + "longitude_deg": "8.317852", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Alghero", + "scheduled_service": "no" + }, + { + "id": "336454", + "ident": "IT-0553", + "type": "closed", + "name": "San Leo Heliport", + "latitude_deg": "43.896713", + "longitude_deg": "12.350816", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "San Leo", + "scheduled_service": "no" + }, + { + "id": "336913", + "ident": "IT-0554", + "type": "small_airport", + "name": "Campo Di Volo Camerana (alta langa)", + "latitude_deg": "44.411152", + "longitude_deg": "8.120849", + "elevation_ft": "627", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Camerana", + "scheduled_service": "no", + "home_link": "https://voli-di-mare.business.site/", + "wikipedia_link": "https://www.google.it/maps/place/Campo+Volo+Camerana/@44.4109472,8.1212715,15z/data=!4m5!3m4!1s0x0:0x29f27b2599ca954a!8m2!3d44.4" + }, + { + "id": "336942", + "ident": "IT-0555", + "type": "closed", + "name": "Campo di volo L'Airone", + "latitude_deg": "40.972203", + "longitude_deg": "16.909364", + "elevation_ft": "673", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Bari", + "scheduled_service": "no" + }, + { + "id": "336943", + "ident": "IT-0556", + "type": "small_airport", + "name": "Campo volo di Montagna (altiporto) Pianon provincia di Belluno", + "latitude_deg": "46.145432", + "longitude_deg": "12.42808", + "elevation_ft": "3001", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Tambre", + "scheduled_service": "no", + "local_code": "BLTAM" + }, + { + "id": "336961", + "ident": "IT-0557", + "type": "closed", + "name": "Aviosuperficie Torre S.Emiliano", + "latitude_deg": "40.110195", + "longitude_deg": "18.49072", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Masseria autigne Otranto", + "scheduled_service": "no", + "home_link": "https://fr.reserving.com/hotels/europe/italie/pouilles/lecce/otranto/masseria-autigne" + }, + { + "id": "336964", + "ident": "IT-0558", + "type": "closed", + "name": "Campo di volo Cutrofiano", + "latitude_deg": "40.102031", + "longitude_deg": "18.243635", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Cutrofiano", + "scheduled_service": "no" + }, + { + "id": "336965", + "ident": "IT-0559", + "type": "closed", + "name": "Campo di volo Condor", + "latitude_deg": "40.242331", + "longitude_deg": "18.034047", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Copertino", + "scheduled_service": "no" + }, + { + "id": "336966", + "ident": "IT-0560", + "type": "closed", + "name": "Campo di volo La Fenice", + "latitude_deg": "40.377356", + "longitude_deg": "18.11211", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Lecce", + "scheduled_service": "no" + }, + { + "id": "336970", + "ident": "IT-0561", + "type": "small_airport", + "name": "Aviosuperficie S.Chiara", + "latitude_deg": "40.320012", + "longitude_deg": "17.812786", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Nardo' (Santa Chiara)", + "scheduled_service": "no", + "home_link": "https://www.porscheengineering.com/nardo/en/contact/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nard%C3%B2_Ring" + }, + { + "id": "336982", + "ident": "IT-0562", + "type": "closed", + "name": "Porto Cesareo", + "latitude_deg": "40.292833", + "longitude_deg": "17.834566", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Porto Cesareo", + "scheduled_service": "no" + }, + { + "id": "336983", + "ident": "IT-0563", + "type": "closed", + "name": "Campo di volo Area 51 Torre Santa Susanna", + "latitude_deg": "40.503056", + "longitude_deg": "17.7625", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Torre Santa Susanna", + "scheduled_service": "no" + }, + { + "id": "336996", + "ident": "IT-0564", + "type": "closed", + "name": "Campo di volo Area 51 2", + "latitude_deg": "40.5306", + "longitude_deg": "18.053026", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "San Pietro Vernotico (Campo di Mare)", + "scheduled_service": "no" + }, + { + "id": "337017", + "ident": "IT-0565", + "type": "small_airport", + "name": "Dune Airpark", + "latitude_deg": "40.794151", + "longitude_deg": "17.491959", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Ostuni (BR)", + "scheduled_service": "no", + "home_link": "https://www.instagram.com/dune.airpark", + "keywords": "Campo di Volo Dune Airpark" + }, + { + "id": "337018", + "ident": "IT-0566", + "type": "small_airport", + "name": "Campo di Volo Paretano Fly", + "latitude_deg": "40.82218", + "longitude_deg": "17.285711", + "elevation_ft": "1030", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Monopoli", + "scheduled_service": "no", + "wikipedia_link": "https://www.google.it/maps/place/Paretano+Fly/@40.8222616,17.2843802,15z/data=!4m5!3m4!1s0x0:0xeb4b719aa8151ea4!8m2!3d40.8222616" + }, + { + "id": "337020", + "ident": "IT-0567", + "type": "closed", + "name": "Campo di volo Pogliano Fly", + "latitude_deg": "41.00888", + "longitude_deg": "17.177821", + "elevation_ft": "85", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Polignano", + "scheduled_service": "no" + }, + { + "id": "337021", + "ident": "IT-0568", + "type": "closed", + "name": "Campo di volo Masseria Modesti", + "latitude_deg": "40.988856", + "longitude_deg": "16.407877", + "elevation_ft": "1575", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Ruvo di puglia", + "scheduled_service": "no" + }, + { + "id": "337022", + "ident": "IT-0569", + "type": "small_airport", + "name": "Campo di volo BATFLY", + "latitude_deg": "41.343401", + "longitude_deg": "16.213181", + "elevation_ft": "6", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Barletta", + "scheduled_service": "no", + "home_link": "https://www.facebook.com/pages/category/Sports-Team/BatFly-1186631891355795/" + }, + { + "id": "337024", + "ident": "IT-0570", + "type": "closed", + "name": "Mil Airport Orta Nova Borgo Mezzanone", + "latitude_deg": "41.40601", + "longitude_deg": "15.728517", + "elevation_ft": "124", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Manfredonia", + "scheduled_service": "no", + "gps_code": "LIBO", + "wikipedia_link": "https://it.wikipedia.org/wiki/Aeroporto_di_Borgo_Mezzanone" + }, + { + "id": "337025", + "ident": "IT-0571", + "type": "closed", + "name": "Campo di volo Marchese", + "latitude_deg": "41.407394", + "longitude_deg": "15.29284", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "scheduled_service": "no" + }, + { + "id": "337039", + "ident": "IT-0572", + "type": "heliport", + "name": "Alidaunia Foggia Heliport", + "latitude_deg": "41.423977", + "longitude_deg": "15.533971", + "elevation_ft": "278", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Foggia", + "scheduled_service": "no", + "home_link": "https://alidaunia.it/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alidaunia" + }, + { + "id": "337041", + "ident": "IT-0573", + "type": "heliport", + "name": "Eliporto S.G.Rotondo", + "latitude_deg": "41.693749", + "longitude_deg": "15.710771", + "elevation_ft": "1801", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "San Giovanni Rotondo", + "scheduled_service": "no", + "home_link": "https://alidaunia.it/helipad-posts/san-giovanni-rotondo", + "wikipedia_link": "https://www.google.it/maps/place/Elisuperficie+Alidaunia/@41.6937147,15.7107778,15z/data=!4m5!3m4!1s0x0:0x1eb4e345f78bde22!8m2!3" + }, + { + "id": "337045", + "ident": "IT-0574", + "type": "heliport", + "name": "Eliporto Peschici", + "latitude_deg": "41.9282", + "longitude_deg": "16.012654", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Peschici", + "scheduled_service": "no", + "home_link": "https://www.peschici.com/eliporto-elisccorso-peschici/porto-eleiporto-scuole-uffici-comunali/04/" + }, + { + "id": "337054", + "ident": "IT-0575", + "type": "closed", + "name": "Giannutri Airfield", + "latitude_deg": "42.254584", + "longitude_deg": "11.116147", + "elevation_ft": "46", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Isola del Giglio (GR)", + "scheduled_service": "no", + "gps_code": "GRXX", + "wikipedia_link": "https://it.wikipedia.org/wiki/Aviosuperficie_ed_elisuperficie_di_Giannutri", + "keywords": "Aviosuperficie di Giannutri" + }, + { + "id": "337056", + "ident": "IT-0576", + "type": "heliport", + "name": "Giannutri Heliport", + "latitude_deg": "42.25347", + "longitude_deg": "11.100215", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Isola del Giglio (GR)", + "scheduled_service": "no" + }, + { + "id": "337062", + "ident": "IT-0577", + "type": "heliport", + "name": "Eliporto Isola di S.Nicola", + "latitude_deg": "42.124193", + "longitude_deg": "15.510389", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "scheduled_service": "no" + }, + { + "id": "337084", + "ident": "IT-0578", + "type": "heliport", + "name": "Elifly International", + "latitude_deg": "45.906061", + "longitude_deg": "10.22406", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Sacca (Brescia)", + "scheduled_service": "no" + }, + { + "id": "337112", + "ident": "IT-0579", + "type": "heliport", + "name": "Eliporto Vico del Gargano", + "latitude_deg": "41.894802", + "longitude_deg": "15.964009", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Vico del Gargano", + "scheduled_service": "no" + }, + { + "id": "337114", + "ident": "IT-0580", + "type": "heliport", + "name": "Eliporto Militare Jactenente", + "latitude_deg": "41.821111", + "longitude_deg": "15.987275", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Vico del Gargano", + "scheduled_service": "no" + }, + { + "id": "337131", + "ident": "IT-0581", + "type": "heliport", + "name": "Eliporto", + "latitude_deg": "41.632838", + "longitude_deg": "15.389813", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "San Severo", + "scheduled_service": "no" + }, + { + "id": "337133", + "ident": "IT-0582", + "type": "heliport", + "name": "Eliporto", + "latitude_deg": "41.424399", + "longitude_deg": "15.639499", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Foggia", + "scheduled_service": "no" + }, + { + "id": "337134", + "ident": "IT-0583", + "type": "heliport", + "name": "Eliporto di soccorso", + "latitude_deg": "41.272759", + "longitude_deg": "15.917548", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Cerignola", + "scheduled_service": "no" + }, + { + "id": "337135", + "ident": "IT-0584", + "type": "heliport", + "name": "Eliporto di emergenza", + "latitude_deg": "41.314728", + "longitude_deg": "16.253457", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Barletta", + "scheduled_service": "no" + }, + { + "id": "337137", + "ident": "IT-0585", + "type": "heliport", + "name": "Eliporto Militare", + "latitude_deg": "41.253178", + "longitude_deg": "16.413456", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Trani", + "scheduled_service": "no" + }, + { + "id": "337138", + "ident": "IT-0586", + "type": "heliport", + "name": "Elisuperficie nido delle aquile", + "latitude_deg": "40.938208", + "longitude_deg": "16.495076", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Altamura", + "scheduled_service": "no" + }, + { + "id": "337140", + "ident": "IT-0587", + "type": "heliport", + "name": "Elisuperficie la Quercia", + "latitude_deg": "40.963263", + "longitude_deg": "16.632791", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Toritto", + "scheduled_service": "no" + }, + { + "id": "337141", + "ident": "IT-0588", + "type": "heliport", + "name": "Elisuperficie di emergenza", + "latitude_deg": "40.9009", + "longitude_deg": "16.620909", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Altamura", + "scheduled_service": "no" + }, + { + "id": "337142", + "ident": "IT-0589", + "type": "heliport", + "name": "Eliporto", + "latitude_deg": "40.819787", + "longitude_deg": "16.470737", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Altamura", + "scheduled_service": "no" + }, + { + "id": "337153", + "ident": "IT-0590", + "type": "heliport", + "name": "Bari Guardia di Finanza Heliport", + "latitude_deg": "41.138072", + "longitude_deg": "16.775689", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Bari", + "scheduled_service": "no" + }, + { + "id": "337156", + "ident": "IT-0591", + "type": "heliport", + "name": "Bari Fire Department Heliport", + "latitude_deg": "41.134553", + "longitude_deg": "16.760974", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Bari", + "scheduled_service": "no" + }, + { + "id": "337157", + "ident": "IT-0592", + "type": "heliport", + "name": "Bari Police Heliport", + "latitude_deg": "41.134322", + "longitude_deg": "16.760116", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Bari", + "scheduled_service": "no" + }, + { + "id": "337158", + "ident": "IT-0593", + "type": "heliport", + "name": "Bari Carabinieri Heliport", + "latitude_deg": "41.137914", + "longitude_deg": "16.781691", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Bari", + "scheduled_service": "no" + }, + { + "id": "337159", + "ident": "IT-0594", + "type": "heliport", + "name": "Bari Coast Guard Heliport", + "latitude_deg": "41.13808", + "longitude_deg": "16.847448", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Bari", + "scheduled_service": "no" + }, + { + "id": "337160", + "ident": "IT-0595", + "type": "heliport", + "name": "Eliporto Ospedale di Bari", + "latitude_deg": "41.112938", + "longitude_deg": "16.858177", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Bari", + "scheduled_service": "no" + }, + { + "id": "337161", + "ident": "IT-0596", + "type": "heliport", + "name": "Eliporto esercito italiano", + "latitude_deg": "41.096721", + "longitude_deg": "16.879592", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Bari", + "scheduled_service": "no" + }, + { + "id": "337164", + "ident": "IT-0597", + "type": "heliport", + "name": "Heliport Acquaviva hospital", + "latitude_deg": "40.864702", + "longitude_deg": "16.801379", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Acquaviva delle fonti", + "scheduled_service": "no" + }, + { + "id": "337173", + "ident": "IT-0598", + "type": "heliport", + "name": "Heliport Castellana grotte", + "latitude_deg": "40.883284", + "longitude_deg": "17.148167", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Castellana Grotte", + "scheduled_service": "no" + }, + { + "id": "337174", + "ident": "IT-0599", + "type": "heliport", + "name": "Eliporto il Melograno", + "latitude_deg": "40.922345", + "longitude_deg": "17.276983", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Monopoli", + "scheduled_service": "no", + "home_link": "https://www.melograno.com/en/" + }, + { + "id": "337184", + "ident": "IT-0600", + "type": "heliport", + "name": "Eliporto militare", + "latitude_deg": "40.447845", + "longitude_deg": "17.252242", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Taranto", + "scheduled_service": "no" + }, + { + "id": "337185", + "ident": "IT-0601", + "type": "heliport", + "name": "Eliporto militare", + "latitude_deg": "40.469739", + "longitude_deg": "17.27628", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Taranto", + "scheduled_service": "no" + }, + { + "id": "337196", + "ident": "IT-0602", + "type": "heliport", + "name": "Eliporto di Grottaglie", + "latitude_deg": "40.520956", + "longitude_deg": "17.39846", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Grottaglie", + "scheduled_service": "no" + }, + { + "id": "337197", + "ident": "IT-0603", + "type": "heliport", + "name": "Eliporto militare marina italiana", + "latitude_deg": "40.515606", + "longitude_deg": "17.408025", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Grottaglie", + "scheduled_service": "no" + }, + { + "id": "337198", + "ident": "IT-0604", + "type": "heliport", + "name": "Eliporto le dune", + "latitude_deg": "40.771296", + "longitude_deg": "17.637691", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Ostuni", + "scheduled_service": "no" + }, + { + "id": "337199", + "ident": "IT-0605", + "type": "heliport", + "name": "Eliporto aereotre", + "latitude_deg": "40.448041", + "longitude_deg": "17.622639", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Manduria", + "scheduled_service": "no" + }, + { + "id": "337200", + "ident": "IT-0606", + "type": "heliport", + "name": "Eliporto di mergenza ospedale antonio perrino", + "latitude_deg": "40.625189", + "longitude_deg": "17.915654", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "scheduled_service": "no" + }, + { + "id": "337202", + "ident": "IT-0607", + "type": "heliport", + "name": "Eliporto Leanorado SPA confindustria", + "latitude_deg": "40.673331", + "longitude_deg": "17.921813", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Brindisi", + "scheduled_service": "no" + }, + { + "id": "337206", + "ident": "IT-0608", + "type": "heliport", + "name": "Eliporto Sant'anna", + "latitude_deg": "40.322937", + "longitude_deg": "17.824878", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Santa Chiara", + "scheduled_service": "no" + }, + { + "id": "337218", + "ident": "IT-0609", + "type": "heliport", + "name": "Heliport Military", + "latitude_deg": "40.244985", + "longitude_deg": "18.136781", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Galatina", + "scheduled_service": "no" + }, + { + "id": "337220", + "ident": "IT-0610", + "type": "heliport", + "name": "Melendugno Heliport", + "latitude_deg": "40.246606", + "longitude_deg": "18.436303", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Melendugno (LE)", + "scheduled_service": "no" + }, + { + "id": "337221", + "ident": "IT-0611", + "type": "heliport", + "name": "Gallipoli Heliport", + "latitude_deg": "40.056785", + "longitude_deg": "17.982012", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Gallipoli", + "scheduled_service": "no" + }, + { + "id": "337222", + "ident": "IT-0612", + "type": "heliport", + "name": "Heliport turistic gallipoli", + "latitude_deg": "40.023905", + "longitude_deg": "18.022041", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Gallipoli", + "scheduled_service": "no" + }, + { + "id": "351162", + "ident": "IT-0613", + "type": "small_airport", + "name": "Altiporto Casera Razzo", + "latitude_deg": "46.47673", + "longitude_deg": "12.61495", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Vigo di Cadore (BL)", + "scheduled_service": "no" + }, + { + "id": "337224", + "ident": "IT-0614", + "type": "heliport", + "name": "Otranto Helicopter Base", + "latitude_deg": "40.116062", + "longitude_deg": "18.499716", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Otranto", + "scheduled_service": "no" + }, + { + "id": "337269", + "ident": "IT-0615", + "type": "heliport", + "name": "Helipad Paretano", + "latitude_deg": "40.822761", + "longitude_deg": "17.283141", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Monopoli", + "scheduled_service": "no", + "home_link": "http://www.agriturismoparetano.it/eng/services.html" + }, + { + "id": "337270", + "ident": "IT-0616", + "type": "heliport", + "name": "Helipad Masseria del Cardinale", + "latitude_deg": "40.801994", + "longitude_deg": "17.443864", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Fasano", + "scheduled_service": "no", + "home_link": "https://www.masseriarelaisdelcardinale.it/" + }, + { + "id": "337271", + "ident": "IT-0617", + "type": "heliport", + "name": "Helipad military", + "latitude_deg": "40.643136", + "longitude_deg": "17.206854", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Martina Franca", + "scheduled_service": "no" + }, + { + "id": "337272", + "ident": "IT-0618", + "type": "heliport", + "name": "Helipad Salento Helicopters", + "latitude_deg": "40.067439", + "longitude_deg": "18.002", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Gallipoli", + "scheduled_service": "no", + "home_link": "https://www.facebook.com/salentohelicopters", + "wikipedia_link": "https://www.pleis.it/Salento/Divertiti/Gallipoli_68/Salento_Helicopters" + }, + { + "id": "337926", + "ident": "IT-0619", + "type": "heliport", + "name": "San Raffaele Hospital Heliport", + "latitude_deg": "45.504324", + "longitude_deg": "9.260273", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Milano", + "scheduled_service": "no" + }, + { + "id": "337972", + "ident": "IT-0620", + "type": "small_airport", + "name": "Locher Field", + "latitude_deg": "46.600776", + "longitude_deg": "11.380098", + "elevation_ft": "3000", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-32", + "municipality": "Sarentino", + "scheduled_service": "no" + }, + { + "id": "340342", + "ident": "IT-0621", + "type": "closed", + "name": "Biferno Airfield", + "latitude_deg": "41.964724", + "longitude_deg": "15.054531", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Lido Campomarino (CB)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#Biferno_Airfield" + }, + { + "id": "340343", + "ident": "IT-0622", + "type": "closed", + "name": "Canne Airfield", + "latitude_deg": "41.932778", + "longitude_deg": "15.070556", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Campomarino (CB)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#Canne_Airfield" + }, + { + "id": "340344", + "ident": "IT-0623", + "type": "closed", + "name": "Castelluccio Airfield", + "latitude_deg": "41.319914", + "longitude_deg": "15.544642", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Ascoli Satriano (FG)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#Castelluccio_Airfield" + }, + { + "id": "340345", + "ident": "IT-0624", + "type": "closed", + "name": "Celone Airfield", + "latitude_deg": "41.551111", + "longitude_deg": "15.558889", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Foggia (FG)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#Celone_Airfield_(Foggia_#1)" + }, + { + "id": "340346", + "ident": "IT-0625", + "type": "closed", + "name": "Cerignola Airfield", + "latitude_deg": "41.242339", + "longitude_deg": "15.80525", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Cerignola (FG)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#Cerignola_Airfield" + }, + { + "id": "340347", + "ident": "IT-0626", + "type": "closed", + "name": "Giulia Airfield", + "latitude_deg": "41.304167", + "longitude_deg": "15.841667", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Cerignola (FG)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#Giulia_Airfield" + }, + { + "id": "340348", + "ident": "IT-0627", + "type": "closed", + "name": "Lesina Airfield", + "latitude_deg": "41.863333", + "longitude_deg": "15.311389", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Lesina (FG)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#Lesina_Airfield" + }, + { + "id": "340349", + "ident": "IT-0628", + "type": "closed", + "name": "Lucera Airfield", + "latitude_deg": "41.497978", + "longitude_deg": "15.419444", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Lucera (FG)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#Lucera_Airfield" + }, + { + "id": "340350", + "ident": "IT-0629", + "type": "closed", + "name": "Madna Airfield", + "latitude_deg": "41.922778", + "longitude_deg": "15.075278", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Campomarino (CB)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#Madna_Airfield" + }, + { + "id": "340351", + "ident": "IT-0630", + "type": "closed", + "name": "Pantanella Airfield", + "latitude_deg": "41.495833", + "longitude_deg": "15.791667", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Manfredonia (FG)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#Pantanella_Airfield" + }, + { + "id": "340352", + "ident": "IT-0631", + "type": "closed", + "name": "Ramitelli Airfield", + "latitude_deg": "41.908333", + "longitude_deg": "15.116667", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Campomarino (CB)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#Ramitelli_Airfield" + }, + { + "id": "340353", + "ident": "IT-0632", + "type": "closed", + "name": "Salsola Airfield", + "latitude_deg": "41.548333", + "longitude_deg": "15.4575", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Lucera (FG)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#Salsola_Airfield_(Foggia_Satellite_#3)" + }, + { + "id": "340354", + "ident": "IT-0633", + "type": "closed", + "name": "San Giovanni Airfield", + "latitude_deg": "41.239417", + "longitude_deg": "15.801825", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Cerignola (FG)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#San_Giovanni_Airfield" + }, + { + "id": "340355", + "ident": "IT-0634", + "type": "closed", + "name": "San Severo Airfield", + "latitude_deg": "41.7125", + "longitude_deg": "15.43", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "San Severo (FG)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#San_Severo_Airfield" + }, + { + "id": "340356", + "ident": "IT-0635", + "type": "closed", + "name": "Sinello Airfield", + "latitude_deg": "42.173611", + "longitude_deg": "14.6625", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-65", + "municipality": "Vasto (CH)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#Sinello_Airfield" + }, + { + "id": "340357", + "ident": "IT-0636", + "type": "closed", + "name": "Spinazzola Airfield", + "latitude_deg": "40.949167", + "longitude_deg": "16.229444", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Spinazzola (BT)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#Spinazzola_Airfield" + }, + { + "id": "340358", + "ident": "IT-0637", + "type": "closed", + "name": "Sterparone Airfield", + "latitude_deg": "41.601744", + "longitude_deg": "15.306667", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Torremaggiore (FG)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sterparone_Airfield" + }, + { + "id": "340359", + "ident": "IT-0638", + "type": "closed", + "name": "Stornara Airfield", + "latitude_deg": "41.290108", + "longitude_deg": "15.740617", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Stornara (FG)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#Stornara_Airfield" + }, + { + "id": "340360", + "ident": "IT-0639", + "type": "closed", + "name": "Torretto Airfield", + "latitude_deg": "41.181944", + "longitude_deg": "15.763889", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Cerignola (FG)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#Torretto_Airfield" + }, + { + "id": "340361", + "ident": "IT-0640", + "type": "closed", + "name": "Tortorella Airfield", + "latitude_deg": "41.484722", + "longitude_deg": "15.652778", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Foggia (FG)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tortorella_Airfield" + }, + { + "id": "340362", + "ident": "IT-0641", + "type": "closed", + "name": "Triolo Airfield", + "latitude_deg": "41.625", + "longitude_deg": "15.458333", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "San Severo (FG)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#Triolo_Airfield" + }, + { + "id": "340363", + "ident": "IT-0642", + "type": "closed", + "name": "Venosa Airfield", + "latitude_deg": "40.997028", + "longitude_deg": "15.873611", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-77", + "municipality": "Venosa (PZ)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#Venosa_Airfield" + }, + { + "id": "340364", + "ident": "IT-0643", + "type": "closed", + "name": "Vincenzo Airfield", + "latitude_deg": "41.411111", + "longitude_deg": "15.424444", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Lucera (FG)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex#Vincenzo_Airfield" + }, + { + "id": "340366", + "ident": "IT-0644", + "type": "heliport", + "name": "Vulcano Piano Emergency Heliport", + "latitude_deg": "38.382709", + "longitude_deg": "14.982693", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Vulcano Piano (ME)", + "scheduled_service": "no" + }, + { + "id": "340367", + "ident": "IT-0645", + "type": "heliport", + "name": "Vulcano Heliport", + "latitude_deg": "38.428187", + "longitude_deg": "14.95568", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Vulcanello (ME)", + "scheduled_service": "no" + }, + { + "id": "340368", + "ident": "IT-0646", + "type": "heliport", + "name": "Malfa Heliport", + "latitude_deg": "38.579772", + "longitude_deg": "14.827852", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Malfa (ME)", + "scheduled_service": "no" + }, + { + "id": "340369", + "ident": "IT-0647", + "type": "heliport", + "name": "Lipari City Hospital Helipad", + "latitude_deg": "38.462267", + "longitude_deg": "14.953542", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Lipari (ME)", + "scheduled_service": "no" + }, + { + "id": "340370", + "ident": "IT-0648", + "type": "heliport", + "name": "Panarea South Heliport", + "latitude_deg": "38.630278", + "longitude_deg": "15.070763", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Panarea (ME)", + "scheduled_service": "no" + }, + { + "id": "340371", + "ident": "IT-0649", + "type": "heliport", + "name": "Air Panarea Heliport", + "latitude_deg": "38.645999", + "longitude_deg": "15.07075", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Panarea (ME)", + "scheduled_service": "no" + }, + { + "id": "340372", + "ident": "IT-0650", + "type": "heliport", + "name": "Stromboli Heliport", + "latitude_deg": "38.799552", + "longitude_deg": "15.240425", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Stromboli (ME)", + "scheduled_service": "no" + }, + { + "id": "340373", + "ident": "IT-0651", + "type": "heliport", + "name": "Filicudi Porto Heliport", + "latitude_deg": "38.557854", + "longitude_deg": "14.582586", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Filicudi Porto (ME)", + "scheduled_service": "no" + }, + { + "id": "340374", + "ident": "IT-0652", + "type": "heliport", + "name": "Alicudi Porto Heliport", + "latitude_deg": "38.532211", + "longitude_deg": "14.359827", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Alicudi Porto (ME)", + "scheduled_service": "no" + }, + { + "id": "340375", + "ident": "IT-0653", + "type": "heliport", + "name": "Ustica Heliport", + "latitude_deg": "38.707215", + "longitude_deg": "13.177478", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Ustica (PA)", + "scheduled_service": "no" + }, + { + "id": "340376", + "ident": "IT-0654", + "type": "heliport", + "name": "Isola Formica Heliport", + "latitude_deg": "37.989091", + "longitude_deg": "12.424335", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Favignana (TP)", + "scheduled_service": "no" + }, + { + "id": "340377", + "ident": "IT-0655", + "type": "heliport", + "name": "Levanzo Heliport", + "latitude_deg": "37.992772", + "longitude_deg": "12.338437", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Favignana (TP)", + "scheduled_service": "no" + }, + { + "id": "340378", + "ident": "IT-0656", + "type": "heliport", + "name": "Marettimo Heliport", + "latitude_deg": "37.970069", + "longitude_deg": "12.070802", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Favignana (TP)", + "scheduled_service": "no" + }, + { + "id": "340379", + "ident": "IT-0657", + "type": "heliport", + "name": "Favignana Heliport", + "latitude_deg": "37.914543", + "longitude_deg": "12.318392", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Favignana (TP)", + "scheduled_service": "no" + }, + { + "id": "340380", + "ident": "IT-0658", + "type": "closed", + "name": "Trapani–Chinisia Airport / Borizzo Airfield", + "latitude_deg": "37.896458", + "longitude_deg": "12.53907", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Trapani (TP)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Borizzo_Airfield" + }, + { + "id": "340381", + "ident": "IT-0659", + "type": "heliport", + "name": "Linosa Heliport", + "latitude_deg": "35.862175", + "longitude_deg": "12.856205", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Linosa (AG)", + "scheduled_service": "no" + }, + { + "id": "340383", + "ident": "IT-0660", + "type": "heliport", + "name": "Anacapri Heliport", + "latitude_deg": "40.558608", + "longitude_deg": "14.201355", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Anacapri (NA)", + "scheduled_service": "no" + }, + { + "id": "340384", + "ident": "IT-0661", + "type": "heliport", + "name": "HeliSorrento Heliport", + "latitude_deg": "40.614109", + "longitude_deg": "14.362", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Sorrento (NA)", + "scheduled_service": "no" + }, + { + "id": "340385", + "ident": "IT-0662", + "type": "heliport", + "name": "Procida Heliport", + "latitude_deg": "40.750172", + "longitude_deg": "14.013681", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Procida (NA)", + "scheduled_service": "no" + }, + { + "id": "340387", + "ident": "IT-0663", + "type": "heliport", + "name": "Ischia Casamicciola Terme Heliport", + "latitude_deg": "40.750963", + "longitude_deg": "13.898701", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Casamicciola Terme (NA)", + "scheduled_service": "no" + }, + { + "id": "340388", + "ident": "IT-0664", + "type": "heliport", + "name": "Santo Stefano Heliport", + "latitude_deg": "40.789318", + "longitude_deg": "13.453112", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Ventotene (LT)", + "scheduled_service": "no" + }, + { + "id": "340389", + "ident": "IT-0665", + "type": "heliport", + "name": "Ventotene Heliport", + "latitude_deg": "40.800864", + "longitude_deg": "13.430235", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Ventotene (LT)", + "scheduled_service": "no" + }, + { + "id": "340390", + "ident": "IT-0666", + "type": "heliport", + "name": "Ponza Heliport", + "latitude_deg": "40.899427", + "longitude_deg": "12.948195", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Ponza (LT)", + "scheduled_service": "no" + }, + { + "id": "340391", + "ident": "IT-0667", + "type": "heliport", + "name": "Palmarola Helipad", + "latitude_deg": "40.939667", + "longitude_deg": "12.855194", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Ponza (LT)", + "scheduled_service": "no" + }, + { + "id": "340392", + "ident": "IT-0668", + "type": "heliport", + "name": "Giglio Heliport", + "latitude_deg": "42.365898", + "longitude_deg": "10.913201", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Isola del Giglio (GR)", + "scheduled_service": "no" + }, + { + "id": "340393", + "ident": "IT-0669", + "type": "heliport", + "name": "Portoferraio Hospital Heliport", + "latitude_deg": "42.815918", + "longitude_deg": "10.319657", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Portoferraio (LI)", + "scheduled_service": "no" + }, + { + "id": "340394", + "ident": "IT-0670", + "type": "heliport", + "name": "Palmaiola Heliport", + "latitude_deg": "42.865709", + "longitude_deg": "10.473906", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Rio (LI)", + "scheduled_service": "no" + }, + { + "id": "340395", + "ident": "IT-0671", + "type": "heliport", + "name": "Monte Capanne Heliport", + "latitude_deg": "42.77163", + "longitude_deg": "10.168296", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Marciana (LI)", + "scheduled_service": "no" + }, + { + "id": "340396", + "ident": "IT-0672", + "type": "heliport", + "name": "Capraia Heliport", + "latitude_deg": "43.046217", + "longitude_deg": "9.844325", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Capraia Isola (LI)", + "scheduled_service": "no" + }, + { + "id": "340397", + "ident": "IT-0673", + "type": "heliport", + "name": "Follonica Heliport", + "latitude_deg": "42.920684", + "longitude_deg": "10.764557", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Follonica (LI)", + "scheduled_service": "no" + }, + { + "id": "340398", + "ident": "IT-0674", + "type": "heliport", + "name": "Gorgona Heliport", + "latitude_deg": "43.425819", + "longitude_deg": "9.900663", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Gorgona Scalo (LI)", + "scheduled_service": "no" + }, + { + "id": "340425", + "ident": "IT-0675", + "type": "small_airport", + "name": "Campo di Volo Chiusi Scalo", + "latitude_deg": "42.972564", + "longitude_deg": "11.944301", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Chiusi Scalo", + "scheduled_service": "no" + }, + { + "id": "342938", + "ident": "IT-0676", + "type": "heliport", + "name": "SUEM Heliport Treviso", + "latitude_deg": "45.655313", + "longitude_deg": "12.263585", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Treviso", + "scheduled_service": "no" + }, + { + "id": "343250", + "ident": "IT-0677", + "type": "small_airport", + "name": "Ozzano private airfield", + "latitude_deg": "45.12039", + "longitude_deg": "8.35202", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Ozzano Monferrato", + "scheduled_service": "no" + }, + { + "id": "344638", + "ident": "IT-0678", + "type": "heliport", + "name": "ENI", + "latitude_deg": "44.47541", + "longitude_deg": "12.27168", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Ravenna", + "scheduled_service": "no" + }, + { + "id": "345227", + "ident": "IT-0679", + "type": "small_airport", + "name": "Barbarano Mossano Private Airstrip", + "latitude_deg": "45.398029", + "longitude_deg": "11.549892", + "elevation_ft": "-1", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Barbarano Vicentino", + "scheduled_service": "no", + "keywords": "Pista privata di Barbarano Mossano" + }, + { + "id": "345412", + "ident": "IT-0680", + "type": "closed", + "name": "Airbase Pantanella", + "latitude_deg": "41.136989", + "longitude_deg": "15.920187", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Canosa di Puglia", + "scheduled_service": "no", + "home_link": "https://www.forgottenairfields.com/airfield-pantanella-580.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_Airfield_Complex" + }, + { + "id": "346261", + "ident": "IT-0681", + "type": "small_airport", + "name": "Aviosuperfice Tronto", + "latitude_deg": "42.89005", + "longitude_deg": "13.87096", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-57", + "scheduled_service": "no" + }, + { + "id": "346292", + "ident": "IT-0682", + "type": "small_airport", + "name": "CdV Baia e Latina", + "latitude_deg": "41.29702", + "longitude_deg": "14.27219", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "scheduled_service": "no" + }, + { + "id": "346363", + "ident": "IT-0683", + "type": "small_airport", + "name": "CdV Serra de' Conti", + "latitude_deg": "43.55993", + "longitude_deg": "13.01976", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-57", + "scheduled_service": "no" + }, + { + "id": "346365", + "ident": "IT-0684", + "type": "heliport", + "name": "Ortona Heliport", + "latitude_deg": "42.327173", + "longitude_deg": "14.37252", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-65", + "municipality": "Ortona", + "scheduled_service": "no", + "keywords": "Micoperi" + }, + { + "id": "346435", + "ident": "IT-0685", + "type": "small_airport", + "name": "Musciano Private Airstrip", + "latitude_deg": "43.66433", + "longitude_deg": "10.72981", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Musciano", + "scheduled_service": "no", + "keywords": "Pista privata a Musciano" + }, + { + "id": "346456", + "ident": "IT-0686", + "type": "small_airport", + "name": "Campo di Volo \"Furiana\"", + "latitude_deg": "37.42709", + "longitude_deg": "14.02916", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Caltanissetta", + "scheduled_service": "no", + "local_code": "CLCAL" + }, + { + "id": "347613", + "ident": "IT-0687", + "type": "heliport", + "name": "Eliporto Imperia", + "latitude_deg": "43.8842", + "longitude_deg": "8.028549", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-42", + "scheduled_service": "no" + }, + { + "id": "351163", + "ident": "IT-0688", + "type": "heliport", + "name": "San Benedetto del Tronto Heliport", + "latitude_deg": "42.923231", + "longitude_deg": "13.889487", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-57", + "municipality": "San Benedetto del Tronto (Ascoli piceno) AP", + "scheduled_service": "no" + }, + { + "id": "351164", + "ident": "IT-0689", + "type": "heliport", + "name": "Elisuperficie Pennile di Sotto", + "latitude_deg": "42.8561", + "longitude_deg": "13.596429", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-57", + "municipality": "Ascoli Piceno AP", + "scheduled_service": "no" + }, + { + "id": "352430", + "ident": "IT-0690", + "type": "heliport", + "name": "Elisuperficie Arturo Santi", + "latitude_deg": "44.664704", + "longitude_deg": "8.298604", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "scheduled_service": "no" + }, + { + "id": "354240", + "ident": "IT-0691", + "type": "heliport", + "name": "Heliport Colli di san fermo", + "latitude_deg": "45.743134", + "longitude_deg": "9.940835", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Bergamo", + "scheduled_service": "no" + }, + { + "id": "354249", + "ident": "IT-0692", + "type": "heliport", + "name": "Ospedale \"Infermi\" di Rimini Heliport", + "latitude_deg": "44.045728", + "longitude_deg": "12.58962", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Rimini", + "scheduled_service": "no" + }, + { + "id": "354250", + "ident": "IT-0693", + "type": "heliport", + "name": "Fiera di Rimini Heliport", + "latitude_deg": "44.072447", + "longitude_deg": "12.519082", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Rimini", + "scheduled_service": "no" + }, + { + "id": "354251", + "ident": "IT-0694", + "type": "heliport", + "name": "Ospedale di Jesolo Helipad", + "latitude_deg": "45.509314", + "longitude_deg": "12.658936", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Jesolo", + "scheduled_service": "no" + }, + { + "id": "354436", + "ident": "IT-0695", + "type": "heliport", + "name": "Police Helipad", + "latitude_deg": "44.048416", + "longitude_deg": "8.132994", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-42", + "municipality": "Villanova d´Albenga", + "scheduled_service": "no" + }, + { + "id": "354934", + "ident": "IT-0696", + "type": "heliport", + "name": "Heliport la Sunrisa", + "latitude_deg": "40.714484", + "longitude_deg": "14.526114", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "San''t Antonio Abate", + "scheduled_service": "no" + }, + { + "id": "355343", + "ident": "IT-0697", + "type": "heliport", + "name": "Ceccano Heliport", + "latitude_deg": "41.53391", + "longitude_deg": "13.37462", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Castro dei Volsci FR", + "scheduled_service": "no" + }, + { + "id": "355345", + "ident": "IT-0698", + "type": "heliport", + "name": "Ospedale di Sora Heliport", + "latitude_deg": "41.72915", + "longitude_deg": "13.6321", + "elevation_ft": "1167", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Sora", + "scheduled_service": "no" + }, + { + "id": "355346", + "ident": "IT-0699", + "type": "heliport", + "name": "Elitaliana Pegaso 33 Heliport", + "latitude_deg": "42.44131", + "longitude_deg": "12.05924", + "elevation_ft": "984", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Viterbo", + "scheduled_service": "no" + }, + { + "id": "355347", + "ident": "IT-0700", + "type": "heliport", + "name": "Poliambulatorio di Ladispoli Helipad", + "latitude_deg": "41.96867", + "longitude_deg": "12.08137", + "elevation_ft": "29", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Poliambulatorio di Ladispoli", + "scheduled_service": "no" + }, + { + "id": "355348", + "ident": "IT-0701", + "type": "heliport", + "name": "Eliossola Heliport", + "latitude_deg": "41.3524", + "longitude_deg": "13.44381", + "elevation_ft": "187", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "04022 Fondi LT", + "scheduled_service": "no" + }, + { + "id": "355349", + "ident": "IT-0702", + "type": "heliport", + "name": "Ospedale Civile Helipad", + "latitude_deg": "42.66673", + "longitude_deg": "13.71704", + "elevation_ft": "961", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-65", + "municipality": "64100 Teramo TE", + "scheduled_service": "no" + }, + { + "id": "355351", + "ident": "IT-0703", + "type": "heliport", + "name": "Ospedale San Camillo", + "latitude_deg": "41.86757", + "longitude_deg": "12.45755", + "elevation_ft": "134", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Roma", + "scheduled_service": "no" + }, + { + "id": "355352", + "ident": "IT-0704", + "type": "heliport", + "name": "Protezione Civile Valtrigno", + "latitude_deg": "41.86637", + "longitude_deg": "14.53371", + "elevation_ft": "2942", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "66050 Torrebruna CH", + "scheduled_service": "no" + }, + { + "id": "356053", + "ident": "IT-0705", + "type": "heliport", + "name": "Bormio Heliport", + "latitude_deg": "46.45436", + "longitude_deg": "10.3653", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "scheduled_service": "no" + }, + { + "id": "356364", + "ident": "IT-0706", + "type": "heliport", + "name": "Elimast Temù Heliport", + "latitude_deg": "46.251233", + "longitude_deg": "10.488178", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Pontagna", + "scheduled_service": "no" + }, + { + "id": "430378", + "ident": "IT-0707", + "type": "heliport", + "name": "Elisuperficie Ospedale Madonna delle Grazie", + "latitude_deg": "40.65293", + "longitude_deg": "16.61362", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "scheduled_service": "no" + }, + { + "id": "35275", + "ident": "IT-TQR", + "type": "heliport", + "name": "San Domino Island Heliport", + "latitude_deg": "42.117775", + "longitude_deg": "15.490655", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Tremiti Islands", + "scheduled_service": "yes", + "gps_code": "LINI", + "iata_code": "TQR", + "wikipedia_link": "https://de.wikipedia.org/wiki/Heliport_San_Domino" + }, + { + "id": "308235", + "ident": "ITK", + "type": "small_airport", + "name": "Itokama Airport", + "latitude_deg": "-9.201527", + "longitude_deg": "148.264261", + "elevation_ft": "2563", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "municipality": "Itokama", + "scheduled_service": "no", + "gps_code": "AYIK", + "iata_code": "ITK", + "local_code": "ITK" + }, + { + "id": "312962", + "ident": "IUS", + "type": "closed", + "name": "Inus Airport", + "latitude_deg": "-5.7568", + "longitude_deg": "155.1498", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NSB", + "municipality": "Inus", + "scheduled_service": "no", + "iata_code": "IUS" + }, + { + "id": "313268", + "ident": "IVH", + "type": "closed", + "name": "Ivishak Airport", + "latitude_deg": "69.4066", + "longitude_deg": "-148.2881", + "elevation_ft": "677", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ivishak River", + "scheduled_service": "no", + "iata_code": "IVH" + }, + { + "id": "316549", + "ident": "IVI", + "type": "small_airport", + "name": "Viveros Island Airport", + "latitude_deg": "8.4693", + "longitude_deg": "-79.0016", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-8", + "municipality": "Isla Viveros", + "scheduled_service": "no", + "iata_code": "IVI" + }, + { + "id": "322359", + "ident": "JAMI", + "type": "small_airport", + "name": "Jamies", + "latitude_deg": "35.520465", + "longitude_deg": "-90.729075", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Harrisburg", + "scheduled_service": "no", + "gps_code": "JAMI" + }, + { + "id": "18252", + "ident": "JB01", + "type": "small_airport", + "name": "Clearwater Aero Estates Airport", + "latitude_deg": "43.757198333740234", + "longitude_deg": "-89.65260314941406", + "elevation_ft": "944", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wisconsin Dells", + "scheduled_service": "no", + "gps_code": "JB01", + "local_code": "JB01" + }, + { + "id": "301009", + "ident": "JGD", + "type": "medium_airport", + "name": "Jiagedaqi Airport", + "latitude_deg": "50.371389", + "longitude_deg": "124.1175", + "elevation_ft": "1205", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Jiagedaqi", + "scheduled_service": "yes", + "gps_code": "ZYJD", + "iata_code": "JGD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jiagedaqi_Airport", + "keywords": "Jagdaqi, Jiagedaqi" + }, + { + "id": "301010", + "ident": "JIC", + "type": "small_airport", + "name": "Jinchang Jinchuan Airport", + "latitude_deg": "38.542222", + "longitude_deg": "102.348333", + "elevation_ft": "4740", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "municipality": "Jinchang", + "scheduled_service": "yes", + "gps_code": "ZLJC", + "iata_code": "JIC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jinchang_Jinchuan_Airport" + }, + { + "id": "319816", + "ident": "JIO", + "type": "small_airport", + "name": "Jos Orno Imsula Airport", + "latitude_deg": "-8.140402", + "longitude_deg": "127.908758", + "elevation_ft": "43", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MA", + "municipality": "Tiakur", + "scheduled_service": "yes", + "iata_code": "JIO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jos_Orno_Imsula_Airport", + "keywords": "Moa Island, Leti Islands" + }, + { + "id": "300865", + "ident": "JIQ", + "type": "medium_airport", + "name": "Qianjiang Wulingshan Airport", + "latitude_deg": "29.5133333333", + "longitude_deg": "108.831111111", + "elevation_ft": "2075", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-50", + "municipality": "Qianjiang", + "scheduled_service": "yes", + "gps_code": "ZUQJ", + "iata_code": "JIQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qianjiang_Wulingshan_Airport", + "keywords": "Zhoubai" + }, + { + "id": "323221", + "ident": "JJD", + "type": "medium_airport", + "name": "Jericoacoara - Comandante Ariston Pessoa Regional Airport", + "latitude_deg": "-2.906425", + "longitude_deg": "-40.357338", + "elevation_ft": "89", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Cruz", + "scheduled_service": "yes", + "gps_code": "SBJE", + "iata_code": "JJD", + "local_code": "CE0003", + "home_link": "https://www-jericoacoara-com.translate.goog/br/lugar/como-chegar/aeroporto-de-jericoacoara?_x_tr_sl=pt&_x_tr_tl=en&_x_tr_hl=en&_", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jericoacoara_airport", + "keywords": "SSVV, Jericoacoara" + }, + { + "id": "18253", + "ident": "JLA", + "type": "small_airport", + "name": "Quartz Creek Airport", + "latitude_deg": "60.48270034789999", + "longitude_deg": "-149.718994141", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cooper Landing", + "scheduled_service": "no", + "gps_code": "JLA", + "iata_code": "JLA", + "local_code": "JLA" + }, + { + "id": "42315", + "ident": "JM-0001", + "type": "closed", + "name": "Gunters Hill Airport / Vernam Field", + "latitude_deg": "17.886", + "longitude_deg": "-77.303497", + "elevation_ft": "99", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-13", + "municipality": "Gimme-Me-Bit", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vernam_Field", + "keywords": "Vernam Field" + }, + { + "id": "46450", + "ident": "JM-0002", + "type": "small_airport", + "name": "Manchioneal Airstrip", + "latitude_deg": "18.054733", + "longitude_deg": "-76.283167", + "elevation_ft": "292", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-04", + "municipality": "Manchioneal", + "scheduled_service": "no" + }, + { + "id": "46451", + "ident": "JM-0003", + "type": "small_airport", + "name": "Tulloch Airstrip", + "latitude_deg": "18.104596899500002", + "longitude_deg": "-76.9878101349", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-14", + "municipality": "Bog Walk", + "scheduled_service": "no" + }, + { + "id": "46452", + "ident": "JM-0004", + "type": "small_airport", + "name": "Ewarton Airstrip", + "latitude_deg": "18.1739272531", + "longitude_deg": "-77.0685553551", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-14", + "municipality": "Ewarton", + "scheduled_service": "no" + }, + { + "id": "46453", + "ident": "JM-0005", + "type": "small_airport", + "name": "Worthy Park Airstrip", + "latitude_deg": "18.144975", + "longitude_deg": "-77.157884", + "elevation_ft": "1194", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-14", + "municipality": "Lluidas Vale", + "scheduled_service": "no" + }, + { + "id": "46454", + "ident": "JM-0006", + "type": "small_airport", + "name": "Port Esquivel Airstrip", + "latitude_deg": "17.891296", + "longitude_deg": "-77.136018", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-14", + "municipality": "Port Esquivel", + "scheduled_service": "no" + }, + { + "id": "46455", + "ident": "JM-0007", + "type": "small_airport", + "name": "Puerto Seco Airstrip", + "latitude_deg": "18.4666041204", + "longitude_deg": "-77.39469051360001", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-06", + "municipality": "Discovery Bay", + "scheduled_service": "no" + }, + { + "id": "46456", + "ident": "JM-0008", + "type": "small_airport", + "name": "Silent Hill Airstrip", + "latitude_deg": "18.196362", + "longitude_deg": "-77.492108", + "elevation_ft": "2940", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-12", + "municipality": "Christiana", + "scheduled_service": "no" + }, + { + "id": "46457", + "ident": "JM-0009", + "type": "small_airport", + "name": "Kirkvine Airstrip", + "latitude_deg": "18.07955", + "longitude_deg": "-77.478236", + "elevation_ft": "1368", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-12", + "municipality": "Williamsfield", + "scheduled_service": "no" + }, + { + "id": "46458", + "ident": "JM-0010", + "type": "small_airport", + "name": "Nain Airstrip", + "latitude_deg": "17.9770288591", + "longitude_deg": "-77.6070141792", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-11", + "scheduled_service": "no", + "keywords": "Alpart Airstrip" + }, + { + "id": "46459", + "ident": "JM-0011", + "type": "small_airport", + "name": "Mafoota Airstrip", + "latitude_deg": "18.371734", + "longitude_deg": "-77.89326", + "elevation_ft": "948", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-08", + "municipality": "Mafoota", + "scheduled_service": "no" + }, + { + "id": "313803", + "ident": "JM-0012", + "type": "small_airport", + "name": "Braco Airfield", + "latitude_deg": "18.47676", + "longitude_deg": "-77.489276", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-07", + "municipality": "Braco", + "scheduled_service": "no" + }, + { + "id": "314183", + "ident": "JM-0013", + "type": "closed", + "name": "Rocky Point Airstrip", + "latitude_deg": "17.777", + "longitude_deg": "-77.2602", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-13", + "municipality": "Rocky Point", + "scheduled_service": "no" + }, + { + "id": "314184", + "ident": "JM-0014", + "type": "heliport", + "name": "Up-Park Camp Heliport", + "latitude_deg": "17.9883", + "longitude_deg": "-76.7761", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-02", + "municipality": "Kingston", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Up-Park_Camp" + }, + { + "id": "314185", + "ident": "JM-0015", + "type": "small_airport", + "name": "Moneague Training Camp Airfield", + "latitude_deg": "18.2822", + "longitude_deg": "-77.1054", + "elevation_ft": "1088", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-06", + "municipality": "Moneague", + "scheduled_service": "no", + "home_link": "http://www.jdfmil.org/overview/bases/bases_home5.php" + }, + { + "id": "314186", + "ident": "JM-0016", + "type": "small_airport", + "name": "Bath Airfield", + "latitude_deg": "17.9405", + "longitude_deg": "-76.3075", + "elevation_ft": "84", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-03", + "municipality": "Bath", + "scheduled_service": "no" + }, + { + "id": "314187", + "ident": "JM-0017", + "type": "closed", + "name": "Lydford Airstrip", + "latitude_deg": "18.3341", + "longitude_deg": "-77.1349", + "elevation_ft": "1484", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-06", + "municipality": "Golden Grove", + "scheduled_service": "no" + }, + { + "id": "338037", + "ident": "JM-0018", + "type": "small_airport", + "name": "Lionel Densham Aerodrome", + "latitude_deg": "17.91763", + "longitude_deg": "-77.74671", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-11", + "municipality": "Watchwell", + "scheduled_service": "no" + }, + { + "id": "338038", + "ident": "JM-0019", + "type": "closed", + "name": "Caymanas Airfield", + "latitude_deg": "18.01444", + "longitude_deg": "-76.92416", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-14", + "municipality": "Spanish Town", + "scheduled_service": "no" + }, + { + "id": "351933", + "ident": "JM-0020", + "type": "heliport", + "name": "Silent Waters Villa Heliport", + "latitude_deg": "18.43997", + "longitude_deg": "-77.98411", + "elevation_ft": "571", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-08", + "municipality": "Unity Hall", + "scheduled_service": "no" + }, + { + "id": "43324", + "ident": "JMB", + "type": "small_airport", + "name": "Jamba Airport", + "latitude_deg": "-14.698193", + "longitude_deg": "16.070148", + "elevation_ft": "4912", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-HUI", + "municipality": "Jamba", + "scheduled_service": "no", + "iata_code": "JMB" + }, + { + "id": "18254", + "ident": "JMC", + "type": "heliport", + "name": "Commodore Center Heliport", + "latitude_deg": "37.87852", + "longitude_deg": "-122.51297", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mill Valley", + "scheduled_service": "no", + "gps_code": "KJMC", + "local_code": "JMC" + }, + { + "id": "339959", + "ident": "JNZ", + "type": "medium_airport", + "name": "Jinzhou Bay Airport", + "latitude_deg": "40.936032", + "longitude_deg": "121.277114", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Linghai, Jinzhou", + "scheduled_service": "yes", + "gps_code": "ZYJZ", + "iata_code": "JNZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jinzhou_Bay_Airport" + }, + { + "id": "30598", + "ident": "JO-0001", + "type": "heliport", + "name": "King Abdullah II Air Base", + "latitude_deg": "31.99799919128418", + "longitude_deg": "36.21950149536133", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-AZ", + "scheduled_service": "no" + }, + { + "id": "30599", + "ident": "JO-0002", + "type": "medium_airport", + "name": "King Feisal Air Base", + "latitude_deg": "30.3435", + "longitude_deg": "36.147701", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-MN", + "municipality": "Al-Jafr", + "scheduled_service": "no" + }, + { + "id": "30600", + "ident": "JO-0003", + "type": "small_airport", + "name": "Al Jafr 2 Air Base", + "latitude_deg": "30.01919937133789", + "longitude_deg": "36.12590026855469", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-MN", + "scheduled_service": "no" + }, + { + "id": "44987", + "ident": "JO-0004", + "type": "small_airport", + "name": "Azraq Highway Strip", + "latitude_deg": "32.0267062933", + "longitude_deg": "36.4086914062", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-AZ", + "scheduled_service": "no" + }, + { + "id": "44988", + "ident": "JO-0005", + "type": "small_airport", + "name": "Wadi El Murbah Highway Strip", + "latitude_deg": "32.730667612", + "longitude_deg": "38.9783120155", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-MA", + "scheduled_service": "no" + }, + { + "id": "44989", + "ident": "JO-0006", + "type": "small_airport", + "name": "Al Ghadaf Highway Strip", + "latitude_deg": "31.5965854628", + "longitude_deg": "36.923235654799996", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-AZ", + "scheduled_service": "no" + }, + { + "id": "45007", + "ident": "JO-0007", + "type": "small_airport", + "name": "Al Qatranah Highway Strip", + "latitude_deg": "31.251992", + "longitude_deg": "36.223211", + "elevation_ft": "2790", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-MN", + "scheduled_service": "no", + "local_code": "Z17G", + "wikipedia_link": "http://ms.wikipedia.org/wiki/Lapangan_Terbang_Al_Qatranah_Highway_Strip" + }, + { + "id": "45008", + "ident": "JO-0008", + "type": "small_airport", + "name": "Al Quwayrah Highway Strip", + "latitude_deg": "29.823993490499998", + "longitude_deg": "35.3279650211", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-AQ", + "scheduled_service": "no" + }, + { + "id": "45010", + "ident": "JO-0009", + "type": "small_airport", + "name": "Highway H Highway Strip", + "latitude_deg": "31.7856760596", + "longitude_deg": "36.2213230133", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-AM", + "scheduled_service": "no" + }, + { + "id": "348443", + "ident": "JO-0010", + "type": "heliport", + "name": "Prince Hamza Hospital Heliport", + "latitude_deg": "31.98392", + "longitude_deg": "35.93903", + "elevation_ft": "2874", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-AM", + "municipality": "Amman", + "scheduled_service": "no" + }, + { + "id": "352054", + "ident": "JO-0011", + "type": "heliport", + "name": "Prince Hashem bin Abdullah Military Hospital Heliport", + "latitude_deg": "29.57194", + "longitude_deg": "35.01945", + "elevation_ft": "256", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-AQ", + "municipality": "Aqaba", + "scheduled_service": "no" + }, + { + "id": "352479", + "ident": "JO-0012", + "type": "heliport", + "name": "Island West Heliport", + "latitude_deg": "29.54198", + "longitude_deg": "34.985", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-AQ", + "municipality": "Aqaba", + "scheduled_service": "no" + }, + { + "id": "352480", + "ident": "JO-0013", + "type": "heliport", + "name": "Island East Heliport", + "latitude_deg": "29.54052", + "longitude_deg": "34.98965", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-AQ", + "municipality": "Aqaba", + "scheduled_service": "no" + }, + { + "id": "355264", + "ident": "JO-0014", + "type": "heliport", + "name": "Jordan Hospital Helipad", + "latitude_deg": "31.96089", + "longitude_deg": "35.89877", + "elevation_ft": "2939", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-AM", + "municipality": "Amman", + "scheduled_service": "no" + }, + { + "id": "322367", + "ident": "JOEY", + "type": "small_airport", + "name": "Joeys", + "latitude_deg": "35.398494", + "longitude_deg": "-91.348252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Tupelo", + "scheduled_service": "no", + "gps_code": "JOEY" + }, + { + "id": "302154", + "ident": "JOP", + "type": "small_airport", + "name": "Josephstaal Airport", + "latitude_deg": "-4.74708333333", + "longitude_deg": "145.007083333", + "elevation_ft": "250", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Josephstaal", + "scheduled_service": "no", + "gps_code": "AYJS", + "iata_code": "JOP", + "local_code": "JSL" + }, + { + "id": "41849", + "ident": "JP-0001", + "type": "seaplane_base", + "name": "JMSDF Chichijima Airfield", + "latitude_deg": "27.090231", + "longitude_deg": "142.192032", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Ogasawara", + "scheduled_service": "no", + "gps_code": "RJAO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chichijima_Airfield", + "keywords": "rjao, chichijima" + }, + { + "id": "43212", + "ident": "JP-0002", + "type": "heliport", + "name": "Urayasu Heliport", + "latitude_deg": "35.623658", + "longitude_deg": "139.894506", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Urayasu", + "scheduled_service": "no" + }, + { + "id": "334222", + "ident": "JP-0003", + "type": "heliport", + "name": "Yagishiri Emergency Heliport", + "latitude_deg": "44.439286", + "longitude_deg": "141.400487", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Haboro", + "scheduled_service": "no" + }, + { + "id": "300237", + "ident": "JP-0004", + "type": "heliport", + "name": "Yokohama Heliport", + "latitude_deg": "35.3422222222", + "longitude_deg": "139.656388889", + "elevation_ft": "4", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "300238", + "ident": "JP-0005", + "type": "heliport", + "name": "Minatomirai Special Heliport", + "latitude_deg": "35.463204", + "longitude_deg": "139.637443", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "309677", + "ident": "JP-0006", + "type": "closed", + "name": "Kokura Airport", + "latitude_deg": "33.836736", + "longitude_deg": "130.946946", + "elevation_ft": "14", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Kitakyushu", + "scheduled_service": "no", + "keywords": "KKJ, RJFR, kyushu, kitakyushu, kokura" + }, + { + "id": "313630", + "ident": "JP-0007", + "type": "small_airport", + "name": "Oita Prefectural (Oitakenou) Airport", + "latitude_deg": "33.026331", + "longitude_deg": "131.505577", + "elevation_ft": "771", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Bungo-ono", + "scheduled_service": "no", + "gps_code": "ROIT", + "home_link": "http://www.pref.oita.jp/site/kenou/", + "wikipedia_link": "http://ja.wikipedia.org/wiki/%E5%A4%A7%E5%88%86%E7%9C%8C%E5%A4%AE%E9%A3%9B%E8%A1%8C%E5%A0%B4", + "keywords": "Hohi District Agricultural Airfield, Oita Central Airport" + }, + { + "id": "323774", + "ident": "JP-0008", + "type": "heliport", + "name": "Komagatake JGSDF Exercise Heliport", + "latitude_deg": "42.071688", + "longitude_deg": "140.763818", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Shikabe", + "scheduled_service": "no", + "keywords": "Komagatake, JGSDF, Shikabe" + }, + { + "id": "323775", + "ident": "JP-0009", + "type": "heliport", + "name": "JGSDF Camp Hakodate Heliport", + "latitude_deg": "41.777781", + "longitude_deg": "140.767307", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Hakodate", + "scheduled_service": "no", + "keywords": "Camp Hakodate, Hakodate, JGSDF" + }, + { + "id": "323777", + "ident": "JP-0010", + "type": "heliport", + "name": "Aidomari (Oshima) Heliport", + "latitude_deg": "41.49771", + "longitude_deg": "139.34505", + "elevation_ft": "364", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Matsumae", + "scheduled_service": "no", + "keywords": "Aidomari, Oshima, Lighthouse" + }, + { + "id": "323778", + "ident": "JP-0011", + "type": "heliport", + "name": "Oshima Heliport", + "latitude_deg": "41.507912", + "longitude_deg": "139.383006", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Matsumae", + "scheduled_service": "no", + "keywords": "Oshima" + }, + { + "id": "323780", + "ident": "JP-0012", + "type": "heliport", + "name": "Asahikawa Medical University Hospital Helipad", + "latitude_deg": "43.72755", + "longitude_deg": "142.38374", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Asahikawa", + "scheduled_service": "no" + }, + { + "id": "323781", + "ident": "JP-0013", + "type": "small_airport", + "name": "Fukagawa Gliderport", + "latitude_deg": "43.69892", + "longitude_deg": "142.03745", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Fukagawa", + "scheduled_service": "no" + }, + { + "id": "323799", + "ident": "JP-0014", + "type": "heliport", + "name": "JMSDF Wakkanai Base Heliport", + "latitude_deg": "45.437919", + "longitude_deg": "141.648231", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Wakkanai", + "scheduled_service": "no", + "keywords": "Wakkanai, JMSDF" + }, + { + "id": "323827", + "ident": "JP-0015", + "type": "heliport", + "name": "Okushiritou Sub Base JASDF Helipad", + "latitude_deg": "42.160978", + "longitude_deg": "139.443085", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Okushiritou", + "scheduled_service": "no", + "keywords": "Okushiritou, Okushiri" + }, + { + "id": "323829", + "ident": "JP-0016", + "type": "heliport", + "name": "Inaho-misaki Lighthouse Helipad", + "latitude_deg": "42.247163", + "longitude_deg": "139.557239", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Inaho", + "scheduled_service": "no", + "keywords": "Inaho-misaki Lighthouse, Okushiri" + }, + { + "id": "323831", + "ident": "JP-0017", + "type": "heliport", + "name": "Cape Inaho Lighthouse Helipad", + "latitude_deg": "42.247163", + "longitude_deg": "139.557239", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Okushiri", + "scheduled_service": "no", + "keywords": "Inaho-misaki Lighthouse, Okushiri" + }, + { + "id": "323833", + "ident": "JP-0018", + "type": "heliport", + "name": "JGSDF Camp Kutchan Heliport", + "latitude_deg": "42.878512", + "longitude_deg": "140.754262", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Kutchan", + "scheduled_service": "no", + "keywords": "Camp Kutchan, JGSDF" + }, + { + "id": "323834", + "ident": "JP-0019", + "type": "small_airport", + "name": "JGSDF Camp Horobetsu Airfield", + "latitude_deg": "42.40013", + "longitude_deg": "141.088906", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Noboribetsu", + "scheduled_service": "no", + "keywords": "Camp Horobetsu" + }, + { + "id": "323837", + "ident": "JP-0020", + "type": "heliport", + "name": "JGSDF Camp Horobetsu Heliport", + "latitude_deg": "42.400822", + "longitude_deg": "141.089323", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Noboribetsu", + "scheduled_service": "no", + "keywords": "Camp Horobetsu" + }, + { + "id": "323839", + "ident": "JP-0021", + "type": "heliport", + "name": "JGSDF Camp Shiraoi Heliport", + "latitude_deg": "42.602846", + "longitude_deg": "141.314301", + "elevation_ft": "154", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Shiraoi", + "scheduled_service": "no", + "keywords": "Camp Shiraoi" + }, + { + "id": "323844", + "ident": "JP-0022", + "type": "heliport", + "name": "JGSDF Vice-Camp Hayakita Heliport", + "latitude_deg": "42.788285", + "longitude_deg": "141.817864", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Abira", + "scheduled_service": "no", + "keywords": "Camp Hayakita, JGSDF" + }, + { + "id": "323845", + "ident": "JP-0023", + "type": "heliport", + "name": "JGSDF Camp Abira Heliport", + "latitude_deg": "42.815303", + "longitude_deg": "141.818339", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Abira", + "scheduled_service": "no", + "keywords": "Camp Abira" + }, + { + "id": "323846", + "ident": "JP-0024", + "type": "closed", + "name": "JGSDF Camp Higashichitose First Airfield", + "latitude_deg": "42.835475", + "longitude_deg": "141.719084", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Chitose", + "scheduled_service": "no", + "keywords": "Camp Chitose Higashi" + }, + { + "id": "323847", + "ident": "JP-0025", + "type": "closed", + "name": "JGSDF Camp Higashichitose Third Airfield", + "latitude_deg": "42.833933", + "longitude_deg": "141.731615", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Chitose", + "scheduled_service": "no", + "keywords": "Camp Chitose Higashi" + }, + { + "id": "323848", + "ident": "JP-0026", + "type": "closed", + "name": "JGSDF Camp Higashichitose Second Airfield", + "latitude_deg": "42.827261", + "longitude_deg": "141.734962", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Chitose", + "scheduled_service": "no", + "keywords": "Camp Chitose Higashi" + }, + { + "id": "323851", + "ident": "JP-0027", + "type": "heliport", + "name": "JGSDF Camp Minami-Eniwa Helipad", + "latitude_deg": "42.858049", + "longitude_deg": "141.57775", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Eniwa", + "scheduled_service": "no", + "keywords": "Camp Minami-Eniwa, JGSDF" + }, + { + "id": "323852", + "ident": "JP-0028", + "type": "heliport", + "name": "JGSDF Camp Higashichitose Heliport", + "latitude_deg": "42.833352", + "longitude_deg": "141.70951", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Chitose", + "scheduled_service": "no", + "keywords": "Camp Chitose Higashi" + }, + { + "id": "323853", + "ident": "JP-0029", + "type": "heliport", + "name": "JGSDF Camp Makomanai Heliport", + "latitude_deg": "43.004384", + "longitude_deg": "141.356857", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Sapporo", + "scheduled_service": "no", + "keywords": "Camp Makomakai, JGSDF, Sapporo" + }, + { + "id": "323877", + "ident": "JP-0030", + "type": "heliport", + "name": "JGSDF Camp Sapporo Heliport", + "latitude_deg": "43.023518", + "longitude_deg": "141.350013", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Sapporo", + "scheduled_service": "no", + "keywords": "Camp Sapporo, JGSDF" + }, + { + "id": "323892", + "ident": "JP-0031", + "type": "heliport", + "name": "JGSDF Vice Camp Naebo Heliport", + "latitude_deg": "43.071122", + "longitude_deg": "141.386455", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Sapporo", + "scheduled_service": "no", + "keywords": "Vice Camp Naebo, JGSDF" + }, + { + "id": "323894", + "ident": "JP-0032", + "type": "heliport", + "name": "JASDF Tobetsu Sub-Base Heliport", + "latitude_deg": "43.310284", + "longitude_deg": "141.522666", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Tobetsu", + "scheduled_service": "no", + "keywords": "Toubetsu, JASDF" + }, + { + "id": "323895", + "ident": "JP-0033", + "type": "heliport", + "name": "JGSDF Camp Bibai Heliport", + "latitude_deg": "43.305482", + "longitude_deg": "141.873791", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Bibai", + "scheduled_service": "no", + "keywords": "Camp Bibai, JGSDF" + }, + { + "id": "323896", + "ident": "JP-0034", + "type": "heliport", + "name": "JGSDF Camp Iwamizawa Helipad", + "latitude_deg": "43.213724", + "longitude_deg": "141.801213", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Iwamizawa", + "scheduled_service": "no", + "keywords": "Camp Iwamizawa, JGSDF" + }, + { + "id": "323897", + "ident": "JP-0035", + "type": "closed", + "name": "JGSDF Camp Iwamizawa Airfield", + "latitude_deg": "43.208233", + "longitude_deg": "141.812382", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Iwamizawa", + "scheduled_service": "no", + "keywords": "Camp Iwamikawa" + }, + { + "id": "323898", + "ident": "JP-0036", + "type": "closed", + "name": "JGSDF Camp Takikawa Airfield", + "latitude_deg": "43.576816", + "longitude_deg": "141.902225", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Takikawa", + "scheduled_service": "no", + "keywords": "Camp Takikawa" + }, + { + "id": "323899", + "ident": "JP-0037", + "type": "heliport", + "name": "JGSDF Camp Takikawa Heliport", + "latitude_deg": "43.574863", + "longitude_deg": "141.905027", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Takikawa", + "scheduled_service": "no", + "keywords": "Camp Takikawa, JGSDF" + }, + { + "id": "323901", + "ident": "JP-0038", + "type": "heliport", + "name": "JGSDF Camp Rumoi Heliport", + "latitude_deg": "43.932779", + "longitude_deg": "141.667504", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Rumoi", + "scheduled_service": "no", + "keywords": "Camp Rumoi, JGSDF" + }, + { + "id": "323902", + "ident": "JP-0039", + "type": "small_airport", + "name": "JGSDF Camp Nayoro Airfield and Heliport", + "latitude_deg": "44.384575", + "longitude_deg": "142.442508", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Nayoro", + "scheduled_service": "no", + "keywords": "Camp Nayoro, JGSDF, AG8450" + }, + { + "id": "323904", + "ident": "JP-0040", + "type": "heliport", + "name": "JGSDF Camp Engaru Heliport", + "latitude_deg": "44.054456", + "longitude_deg": "143.544855", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Engaru", + "scheduled_service": "no", + "keywords": "Camp Engaru, JGSDF" + }, + { + "id": "323905", + "ident": "JP-0041", + "type": "heliport", + "name": "JASDF Abashiri Sub Base Heliport", + "latitude_deg": "44.079566", + "longitude_deg": "144.230415", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Abashiri", + "scheduled_service": "no", + "keywords": "Abashiri, JASDF" + }, + { + "id": "323906", + "ident": "JP-0042", + "type": "heliport", + "name": "JGSDF Camp Bihoro Heliport", + "latitude_deg": "43.821135", + "longitude_deg": "144.161164", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Bihoro", + "scheduled_service": "no", + "keywords": "Camp Bihoro" + }, + { + "id": "323941", + "ident": "JP-0043", + "type": "heliport", + "name": "JGSDF Vice Camp Shibetsu Heliport", + "latitude_deg": "43.652708", + "longitude_deg": "145.12363", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Shibetsu", + "scheduled_service": "no", + "keywords": "Camp Shibetsu, JGSDF" + }, + { + "id": "323942", + "ident": "JP-0044", + "type": "heliport", + "name": "JASDF Camp Nemuro Sub Base Heliport", + "latitude_deg": "43.31777", + "longitude_deg": "145.603641", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Nemuro", + "scheduled_service": "no", + "keywords": "Camp Nemuro, JASDF" + }, + { + "id": "323943", + "ident": "JP-0045", + "type": "heliport", + "name": "JGSDF Yausubetsu Exercise Area Heliport", + "latitude_deg": "43.297435", + "longitude_deg": "144.989716", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Betsukai", + "scheduled_service": "no", + "keywords": "Yausubetsu, JGSDF" + }, + { + "id": "323944", + "ident": "JP-0046", + "type": "heliport", + "name": "JGSDF Camp Kushiro Heliport", + "latitude_deg": "43.013395", + "longitude_deg": "144.455393", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Kushiro", + "scheduled_service": "no", + "keywords": "Camp Kushiro, JGSDF" + }, + { + "id": "323948", + "ident": "JP-0047", + "type": "heliport", + "name": "JGSDF Vice-Camp Ashoro Heliport", + "latitude_deg": "43.248532", + "longitude_deg": "143.600197", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Ashoro", + "scheduled_service": "no", + "keywords": "Camp Ashoro. JGSDF" + }, + { + "id": "323949", + "ident": "JP-0048", + "type": "closed", + "name": "Ebetsu Airfield", + "latitude_deg": "43.11378", + "longitude_deg": "141.52145", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Ebetsu", + "scheduled_service": "no", + "keywords": "Oji Ebetsu Airfield" + }, + { + "id": "323953", + "ident": "JP-0049", + "type": "heliport", + "name": "JGSDF Camp Shikaoi Heliport", + "latitude_deg": "43.145508", + "longitude_deg": "142.996176", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Shikaoi", + "scheduled_service": "no", + "keywords": "Camp Shikaoi, JGSDF" + }, + { + "id": "323955", + "ident": "JP-0050", + "type": "heliport", + "name": "JGSDF Camp Tokachi Heliport", + "latitude_deg": "42.894592", + "longitude_deg": "143.164346", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Obihiro", + "scheduled_service": "no", + "keywords": "Tokachi, Camp Obihiro, JGSDF" + }, + { + "id": "323956", + "ident": "JP-0051", + "type": "heliport", + "name": "JASDF Erimo Sub-Base Heliport", + "latitude_deg": "41.960427", + "longitude_deg": "143.226607", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Erimo", + "scheduled_service": "no", + "keywords": "Erimo, JASDF" + }, + { + "id": "323957", + "ident": "JP-0052", + "type": "small_airport", + "name": "Hokkaido Spaceport", + "latitude_deg": "42.499971", + "longitude_deg": "143.441759", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Bisei", + "scheduled_service": "no", + "keywords": "Taeki, Taiki, Taiki Aerospace Research Airfield" + }, + { + "id": "323960", + "ident": "JP-0053", + "type": "heliport", + "name": "JGSDF Vice-Camp Hidaka Heliport", + "latitude_deg": "42.896362", + "longitude_deg": "142.519547", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Hidaka", + "scheduled_service": "no", + "keywords": "Camp Hidaka, JGSDF" + }, + { + "id": "323961", + "ident": "JP-0054", + "type": "heliport", + "name": "JGSDF Camp Shizunai South Heliport", + "latitude_deg": "42.306156", + "longitude_deg": "142.442058", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Shinhidaka", + "scheduled_service": "no", + "keywords": "Camp Shizunai, JGSDF" + }, + { + "id": "323962", + "ident": "JP-0055", + "type": "heliport", + "name": "JGSDF Camp Shizunai Main Heliport", + "latitude_deg": "42.309764", + "longitude_deg": "142.441667", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Shinhidaka", + "scheduled_service": "no", + "keywords": "Camp Shizunai, JGSDF" + }, + { + "id": "323963", + "ident": "JP-0056", + "type": "heliport", + "name": "JGSDF Camp Kita-Eniwa Heliport", + "latitude_deg": "42.89017", + "longitude_deg": "141.560911", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Eniwa", + "scheduled_service": "no", + "keywords": "Camp Kita-Eniwa, JGSDF" + }, + { + "id": "323964", + "ident": "JP-0057", + "type": "heliport", + "name": "JGSDF Eniwa Exercise Area Heliport", + "latitude_deg": "42.822809", + "longitude_deg": "141.614335", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Eniwa", + "scheduled_service": "no", + "keywords": "Eniwa, JGSDF" + }, + { + "id": "323965", + "ident": "JP-0058", + "type": "closed", + "name": "Eniwa Airfield", + "latitude_deg": "42.82191", + "longitude_deg": "141.615314", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Eniwa", + "scheduled_service": "no", + "keywords": "Eniwa" + }, + { + "id": "323966", + "ident": "JP-0059", + "type": "heliport", + "name": "JGSDF Camp Shimamatsu Heliport", + "latitude_deg": "42.911721", + "longitude_deg": "141.555209", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Eniwa", + "scheduled_service": "no", + "keywords": "Camp Shimamatsu, JGSDF" + }, + { + "id": "323976", + "ident": "JP-0060", + "type": "heliport", + "name": "Sapporo Dome Helipad", + "latitude_deg": "43.01395", + "longitude_deg": "141.40691", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Sapporo", + "scheduled_service": "no", + "keywords": "Sapporo Dome" + }, + { + "id": "323986", + "ident": "JP-0061", + "type": "heliport", + "name": "Hokkaido Medical Center for Child Health & Rehabilitation Helipad", + "latitude_deg": "43.1282367", + "longitude_deg": "141.2108203", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Sapporo", + "scheduled_service": "no", + "keywords": "Hokkaido Medical Center for Child Health & Rehabilitation" + }, + { + "id": "323987", + "ident": "JP-0062", + "type": "heliport", + "name": "Teine Keijinkai Hospital Helipad", + "latitude_deg": "43.121811", + "longitude_deg": "141.243681", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Sapporo", + "scheduled_service": "no", + "keywords": "Teine Keijinkai Hospital" + }, + { + "id": "323988", + "ident": "JP-0063", + "type": "heliport", + "name": "Sapporo Medical University Hospital Helipad", + "latitude_deg": "43.054774", + "longitude_deg": "141.333202", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Sapporo", + "scheduled_service": "no", + "keywords": "Sapporo Medical University Hospital" + }, + { + "id": "323990", + "ident": "JP-0064", + "type": "heliport", + "name": "Japan Red Cross Ashikawa Hospital Helipad", + "latitude_deg": "43.770178", + "longitude_deg": "142.348765", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Asahikawa", + "scheduled_service": "no", + "keywords": "Japanese Red Cross Ashikawa Hospital, Asahikawa" + }, + { + "id": "323991", + "ident": "JP-0065", + "type": "heliport", + "name": "Kitami Red Cross Hospital Helipad", + "latitude_deg": "43.808356", + "longitude_deg": "143.894965", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Kitami", + "scheduled_service": "no", + "keywords": "Kitami Red Cross Hospital, Kitami" + }, + { + "id": "323995", + "ident": "JP-0066", + "type": "heliport", + "name": "Aikoku Heliport", + "latitude_deg": "43.02899", + "longitude_deg": "144.401978", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Kushiro", + "scheduled_service": "no", + "keywords": "Aikoku" + }, + { + "id": "323996", + "ident": "JP-0067", + "type": "heliport", + "name": "Hakodate Municipal Hospital Helipad", + "latitude_deg": "41.805464", + "longitude_deg": "140.730255", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Hakodate", + "scheduled_service": "no", + "keywords": "Hakodate Municipal Hospital, Hakodate" + }, + { + "id": "323998", + "ident": "JP-0068", + "type": "heliport", + "name": "Kushiro City General Hospital Helipad", + "latitude_deg": "42.976295", + "longitude_deg": "144.403506", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Kushiro", + "scheduled_service": "no", + "keywords": "Kushiro City General Hospital, Kushiro" + }, + { + "id": "323999", + "ident": "JP-0069", + "type": "heliport", + "name": "Kushiro Senior Hospital Heliport", + "latitude_deg": "43.006038", + "longitude_deg": "144.385261", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Kushiro", + "scheduled_service": "no", + "keywords": "Kushiro Rosai Hospital, Kushiro" + }, + { + "id": "324000", + "ident": "JP-0070", + "type": "heliport", + "name": "Kushiro Kojinkai Memorial Hospital Heliport", + "latitude_deg": "43.029277", + "longitude_deg": "144.397256", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Kushiro", + "scheduled_service": "no", + "keywords": "Kushiro Kojinkai Memorial Hospital, Kushiro" + }, + { + "id": "324012", + "ident": "JP-0071", + "type": "small_airport", + "name": "Hokkaido University Yubari River Gliderport", + "latitude_deg": "43.10809", + "longitude_deg": "141.62755", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Ebetsu", + "scheduled_service": "no" + }, + { + "id": "324453", + "ident": "JP-0072", + "type": "heliport", + "name": "Taoka Hospital Helipad", + "latitude_deg": "34.065694", + "longitude_deg": "134.563654", + "elevation_ft": "90", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-36", + "municipality": "Tokushima", + "scheduled_service": "no", + "wikipedia_link": "https://ja.wikipedia.org/wiki/%E7%94%B0%E5%B2%A1%E7%97%85%E9%99%A2", + "keywords": "Taoka Hospital; Tokushima" + }, + { + "id": "324454", + "ident": "JP-0073", + "type": "heliport", + "name": "Tokushima Prefectural Central Hospital Helipad", + "latitude_deg": "34.075564", + "longitude_deg": "134.520477", + "elevation_ft": "156", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-36", + "municipality": "Tokushima", + "scheduled_service": "no", + "wikipedia_link": "https://ja.wikipedia.org/wiki/徳島県立中央病院", + "keywords": "Tokushima, Prefectural Central Hospital" + }, + { + "id": "324455", + "ident": "JP-0074", + "type": "heliport", + "name": "Kagawa University Hospital Helipad", + "latitude_deg": "34.291312", + "longitude_deg": "134.123937", + "elevation_ft": "184", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Miki", + "scheduled_service": "no", + "keywords": "Kagawa, Miki-cho" + }, + { + "id": "324456", + "ident": "JP-0075", + "type": "heliport", + "name": "Ryuichi Yokoyama Memorial Manga Museum Helipad", + "latitude_deg": "33.558237", + "longitude_deg": "133.546947", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kochi", + "scheduled_service": "no", + "keywords": "Yokoyama Ryu Memorial Comics Hall; Kochi" + }, + { + "id": "324458", + "ident": "JP-0076", + "type": "heliport", + "name": "Kochi Medical School Hospital Heliport", + "latitude_deg": "33.595289", + "longitude_deg": "133.615336", + "elevation_ft": "143", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Nankoku", + "scheduled_service": "no", + "keywords": "Kochi Medical School Hospital, Kochi" + }, + { + "id": "324459", + "ident": "JP-0077", + "type": "heliport", + "name": "Tokushima Municipal Hospital Heliport", + "latitude_deg": "34.08257", + "longitude_deg": "134.563091", + "elevation_ft": "170", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-36", + "municipality": "Tokushima", + "scheduled_service": "no", + "keywords": "Tokushima Municipal Hospital, Tokushima" + }, + { + "id": "324460", + "ident": "JP-0078", + "type": "heliport", + "name": "Hyogo Prefectural Awaji Medical Care Center Helipad", + "latitude_deg": "34.34699", + "longitude_deg": "134.895619", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Sumoto", + "scheduled_service": "no", + "keywords": "Sumoto" + }, + { + "id": "324461", + "ident": "JP-0079", + "type": "heliport", + "name": "Kagawa Prefectural Central Hospital Helipad", + "latitude_deg": "34.348769", + "longitude_deg": "134.0626", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Takamatsu", + "scheduled_service": "no", + "keywords": "Asahimachi, Takatsu-shi, Kagawa Prefectural Chuo Hospital" + }, + { + "id": "324462", + "ident": "JP-0080", + "type": "heliport", + "name": "Kagawa Prefectural Office Heliport", + "latitude_deg": "34.340293", + "longitude_deg": "134.042883", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Takamatsu", + "scheduled_service": "no", + "keywords": "Kagawa Prefectural Office Main Building, Tenjinmae, Takamatsu-shi" + }, + { + "id": "324495", + "ident": "JP-0081", + "type": "heliport", + "name": "Yoshima Helipad", + "latitude_deg": "34.394321", + "longitude_deg": "133.819549", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Yoshima", + "scheduled_service": "no", + "keywords": "Yoshima" + }, + { + "id": "324529", + "ident": "JP-0082", + "type": "heliport", + "name": "Ajicho Helipad", + "latitude_deg": "34.406633", + "longitude_deg": "134.106749", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Ajicho", + "scheduled_service": "no", + "keywords": "Ajicho, Oshima, Ooshima" + }, + { + "id": "324551", + "ident": "JP-0083", + "type": "heliport", + "name": "Tonosho East (Meguriike) Heliport", + "latitude_deg": "34.47594", + "longitude_deg": "134.181269", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Tonosho", + "scheduled_service": "no", + "keywords": "Tonosho Higashi, Meguriike, Shodoshima" + }, + { + "id": "324588", + "ident": "JP-0084", + "type": "heliport", + "name": "Umaki Heliport", + "latitude_deg": "34.472263", + "longitude_deg": "134.314669", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Shodoshima", + "scheduled_service": "no", + "keywords": "Umaki, Shodoshima" + }, + { + "id": "324659", + "ident": "JP-0085", + "type": "closed", + "name": "Nakajima Handa Aerodrome", + "latitude_deg": "34.901454", + "longitude_deg": "136.95636", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Handa", + "scheduled_service": "no", + "keywords": "Handa, Nakajima" + }, + { + "id": "324975", + "ident": "JP-0086", + "type": "heliport", + "name": "Niihama Heliport", + "latitude_deg": "33.950086", + "longitude_deg": "133.300058", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Niihama", + "scheduled_service": "no", + "keywords": "Niihama" + }, + { + "id": "334225", + "ident": "JP-0087", + "type": "heliport", + "name": "Teuri Emergency Heliport", + "latitude_deg": "44.423999", + "longitude_deg": "141.327852", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Haboro", + "scheduled_service": "no" + }, + { + "id": "334410", + "ident": "JP-0088", + "type": "heliport", + "name": "Sasayuri-ann Private Heliport", + "latitude_deg": "34.59201", + "longitude_deg": "136.04765", + "elevation_ft": "1135", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-29", + "municipality": "Uda", + "scheduled_service": "no" + }, + { + "id": "334411", + "ident": "JP-0089", + "type": "heliport", + "name": "Nara Prefectural Heliport", + "latitude_deg": "34.65621", + "longitude_deg": "135.88461", + "elevation_ft": "1470", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-29", + "municipality": "Nara", + "scheduled_service": "no" + }, + { + "id": "334412", + "ident": "JP-0090", + "type": "small_airport", + "name": "Toyosaka Airstrip", + "latitude_deg": "34.624044", + "longitude_deg": "132.795954", + "elevation_ft": "1952", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Akitakata", + "scheduled_service": "no" + }, + { + "id": "334413", + "ident": "JP-0091", + "type": "heliport", + "name": "Grand Prince Hotel Helipad", + "latitude_deg": "34.34259", + "longitude_deg": "132.46431", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "334417", + "ident": "JP-0092", + "type": "small_airport", + "name": "Otone Airfield", + "latitude_deg": "35.85937", + "longitude_deg": "140.241219", + "elevation_ft": "8", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Kawachi", + "scheduled_service": "no", + "gps_code": "RJA2", + "local_code": "RJA2", + "keywords": "otone, ohotone, rja2" + }, + { + "id": "334418", + "ident": "JP-0093", + "type": "small_airport", + "name": "Ryugasaki Airfield", + "latitude_deg": "35.906276", + "longitude_deg": "140.242152", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Ryugasaki", + "scheduled_service": "no", + "gps_code": "RJA3", + "local_code": "RJA3", + "keywords": "rja3, ryugasaki, ryuugasaki" + }, + { + "id": "334419", + "ident": "JP-0094", + "type": "closed", + "name": "Moriya Ultralight Airstrip", + "latitude_deg": "35.9176", + "longitude_deg": "139.993318", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Moriya", + "scheduled_service": "no" + }, + { + "id": "334420", + "ident": "JP-0095", + "type": "small_airport", + "name": "Moriya Airstrip", + "latitude_deg": "35.929944", + "longitude_deg": "139.974189", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Moriya", + "scheduled_service": "no" + }, + { + "id": "334421", + "ident": "JP-0096", + "type": "small_airport", + "name": "Bando Auxiliary Airfield", + "latitude_deg": "36.015713", + "longitude_deg": "139.873595", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Bando", + "scheduled_service": "no" + }, + { + "id": "334422", + "ident": "JP-0097", + "type": "small_airport", + "name": "Sekiyado Gliderport", + "latitude_deg": "36.015574", + "longitude_deg": "139.816561", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Noda", + "scheduled_service": "no" + }, + { + "id": "334423", + "ident": "JP-0098", + "type": "small_airport", + "name": "Hoshubana Gliderport", + "latitude_deg": "36.03903", + "longitude_deg": "139.81066", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kasukabe", + "scheduled_service": "no" + }, + { + "id": "334424", + "ident": "JP-0099", + "type": "small_airport", + "name": "Yomiuri Otone Gliderport", + "latitude_deg": "36.16458", + "longitude_deg": "139.67117", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kazo", + "scheduled_service": "no" + }, + { + "id": "334425", + "ident": "JP-0100", + "type": "small_airport", + "name": "Kazo Gliderport", + "latitude_deg": "36.1866", + "longitude_deg": "139.61748", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kazo", + "scheduled_service": "no" + }, + { + "id": "334426", + "ident": "JP-0101", + "type": "small_airport", + "name": "Hanyu Gliderport", + "latitude_deg": "36.19942", + "longitude_deg": "139.6031", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Hanyu", + "scheduled_service": "no" + }, + { + "id": "334427", + "ident": "JP-0102", + "type": "small_airport", + "name": "Menuma Gliderport", + "latitude_deg": "36.21338", + "longitude_deg": "139.41697", + "elevation_ft": "89", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kumagaya", + "scheduled_service": "no" + }, + { + "id": "334428", + "ident": "JP-0103", + "type": "small_airport", + "name": "Menuma Number 2 Gliderport", + "latitude_deg": "36.20044", + "longitude_deg": "139.43405", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kumagaya", + "scheduled_service": "no", + "keywords": "Kuzuwada Gliderport" + }, + { + "id": "334429", + "ident": "JP-0104", + "type": "small_airport", + "name": "Skyfield Watarase", + "latitude_deg": "36.251671", + "longitude_deg": "139.677944", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Tochigi", + "scheduled_service": "no" + }, + { + "id": "334430", + "ident": "JP-0105", + "type": "small_airport", + "name": "Itakura Gliderport", + "latitude_deg": "36.26616", + "longitude_deg": "139.63388", + "elevation_ft": "59", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Itakura", + "scheduled_service": "no" + }, + { + "id": "334431", + "ident": "JP-0106", + "type": "small_airport", + "name": "Makado Gliderport", + "latitude_deg": "36.2697", + "longitude_deg": "139.59103", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Sano", + "scheduled_service": "no" + }, + { + "id": "334432", + "ident": "JP-0107", + "type": "heliport", + "name": "Tochigi Heliport", + "latitude_deg": "36.55991", + "longitude_deg": "140.00607", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Haga", + "scheduled_service": "no" + }, + { + "id": "334433", + "ident": "JP-0108", + "type": "small_airport", + "name": "Kinugawa Gliderport", + "latitude_deg": "36.68102", + "longitude_deg": "139.94322", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Utsunomiya", + "scheduled_service": "no" + }, + { + "id": "334434", + "ident": "JP-0109", + "type": "small_airport", + "name": "Oyama Kinu Gliderport", + "latitude_deg": "36.30085", + "longitude_deg": "139.90523", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Oyama", + "scheduled_service": "no" + }, + { + "id": "334436", + "ident": "JP-0110", + "type": "small_airport", + "name": "Fujikawa Airstrip", + "latitude_deg": "35.12073", + "longitude_deg": "138.6318", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "334437", + "ident": "JP-0111", + "type": "small_airport", + "name": "Hamakita Gliderport", + "latitude_deg": "34.83975", + "longitude_deg": "137.82417", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Hamamatsu", + "scheduled_service": "no" + }, + { + "id": "334438", + "ident": "JP-0112", + "type": "small_airport", + "name": "Okazaki Gliderport", + "latitude_deg": "34.94533", + "longitude_deg": "137.14662", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Okazaki", + "scheduled_service": "no", + "home_link": "https://www.okazakiglider.jp/" + }, + { + "id": "334439", + "ident": "JP-0113", + "type": "small_airport", + "name": "Kasaoka Air Station", + "latitude_deg": "34.475925", + "longitude_deg": "133.489037", + "elevation_ft": "1", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Kasaoka", + "scheduled_service": "no", + "local_code": "RJKS", + "wikipedia_link": "https://ja.wikipedia.org/wiki/%E7%AC%A0%E5%B2%A1%E3%81%B5%E3%82%8C%E3%81%82%E3%81%84%E7%A9%BA%E6%B8%AF", + "keywords": "Kasaoka Agricultural Airfield, Kasaoka Community Airport" + }, + { + "id": "334440", + "ident": "JP-0114", + "type": "small_airport", + "name": "Suika Airport", + "latitude_deg": "35.4395", + "longitude_deg": "133.7043", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Hokuei", + "scheduled_service": "no", + "keywords": "Nishitakao Gliderport" + }, + { + "id": "334479", + "ident": "JP-0115", + "type": "closed", + "name": "Katori Naval Air Base", + "latitude_deg": "35.72935", + "longitude_deg": "140.61097", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Asahi", + "scheduled_service": "no" + }, + { + "id": "334480", + "ident": "JP-0116", + "type": "heliport", + "name": "Chiba Prefectural Sewage Plant Helipad", + "latitude_deg": "35.629684", + "longitude_deg": "140.048502", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Chiba", + "scheduled_service": "no" + }, + { + "id": "334481", + "ident": "JP-0117", + "type": "small_airport", + "name": "Urayasu Emergency Runway", + "latitude_deg": "35.638194", + "longitude_deg": "139.935061", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Urayasu", + "scheduled_service": "no" + }, + { + "id": "334482", + "ident": "JP-0118", + "type": "heliport", + "name": "Tokyo Rinkai Hospital Heliport", + "latitude_deg": "35.652502", + "longitude_deg": "139.853286", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Edogawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334483", + "ident": "JP-0119", + "type": "heliport", + "name": "Gate City Osaki South Park Tower Helipad", + "latitude_deg": "35.618281", + "longitude_deg": "139.732779", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334484", + "ident": "JP-0120", + "type": "heliport", + "name": "Gate City Osaki South Tower Helipad", + "latitude_deg": "35.61859", + "longitude_deg": "139.73191", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334485", + "ident": "JP-0121", + "type": "heliport", + "name": "Gate City Osaki North Tower Helipad", + "latitude_deg": "35.619406", + "longitude_deg": "139.730805", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334486", + "ident": "JP-0122", + "type": "heliport", + "name": "Osaki West City Towers East Helipad", + "latitude_deg": "35.616545", + "longitude_deg": "139.727839", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334487", + "ident": "JP-0123", + "type": "heliport", + "name": "Osaki West City Towers West Helipad", + "latitude_deg": "35.61672", + "longitude_deg": "139.727104", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334488", + "ident": "JP-0124", + "type": "heliport", + "name": "Osaki West City Towers West Helipad", + "latitude_deg": "35.61672", + "longitude_deg": "139.727104", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334489", + "ident": "JP-0125", + "type": "heliport", + "name": "Osaki Wiz City Helipad", + "latitude_deg": "35.616711", + "longitude_deg": "139.729861", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334490", + "ident": "JP-0126", + "type": "heliport", + "name": "Osaki ThinkPark Tower Helipad", + "latitude_deg": "35.618455", + "longitude_deg": "139.727442", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334491", + "ident": "JP-0127", + "type": "heliport", + "name": "Art Village Osaki Central Tower Helipad", + "latitude_deg": "35.622389", + "longitude_deg": "139.727334", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334492", + "ident": "JP-0128", + "type": "heliport", + "name": "The Park Tower Tokyo South Helipad", + "latitude_deg": "35.622803", + "longitude_deg": "139.72926", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334493", + "ident": "JP-0129", + "type": "heliport", + "name": "Proud Tower Higashi Gotanda Helipad", + "latitude_deg": "35.624617", + "longitude_deg": "139.72573", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334494", + "ident": "JP-0130", + "type": "heliport", + "name": "Park Tower GranSky Helipad", + "latitude_deg": "35.624176", + "longitude_deg": "139.727302", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334495", + "ident": "JP-0131", + "type": "heliport", + "name": "Osaki Forest Building Helipad", + "latitude_deg": "35.624477", + "longitude_deg": "139.729577", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334496", + "ident": "JP-0132", + "type": "heliport", + "name": "Sumitomo Takanawa Park Tower Helipad", + "latitude_deg": "35.62535", + "longitude_deg": "139.73062", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334497", + "ident": "JP-0133", + "type": "heliport", + "name": "Gakken Building Helipad", + "latitude_deg": "35.62728", + "longitude_deg": "139.72041", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334498", + "ident": "JP-0134", + "type": "heliport", + "name": "Residia Tower Meguro Fudomae Helipad", + "latitude_deg": "35.62596", + "longitude_deg": "139.71845", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334499", + "ident": "JP-0135", + "type": "heliport", + "name": "Famille Nishigotanda East Building Helipad", + "latitude_deg": "35.6274", + "longitude_deg": "139.71815", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334500", + "ident": "JP-0136", + "type": "heliport", + "name": "DNP Gotanda Building Helipad", + "latitude_deg": "35.62838", + "longitude_deg": "139.71866", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334501", + "ident": "JP-0137", + "type": "heliport", + "name": "Hotel Gajoen Tokyo Helipad", + "latitude_deg": "35.63158", + "longitude_deg": "139.71319", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Meguro, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334502", + "ident": "JP-0138", + "type": "heliport", + "name": "Meguro Hilltop Walk Helipad", + "latitude_deg": "35.63363", + "longitude_deg": "139.71467", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334503", + "ident": "JP-0139", + "type": "heliport", + "name": "Brillia Towers Meguro South Residence Helipad", + "latitude_deg": "35.63221", + "longitude_deg": "139.71688", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334504", + "ident": "JP-0140", + "type": "heliport", + "name": "Brillia Towers Meguro North Residence Helipad", + "latitude_deg": "35.63315", + "longitude_deg": "139.71672", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334505", + "ident": "JP-0141", + "type": "heliport", + "name": "Meguro Central Square Helipad", + "latitude_deg": "35.63334", + "longitude_deg": "139.71684", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334506", + "ident": "JP-0142", + "type": "heliport", + "name": "Ebisu Garden Place Helipad", + "latitude_deg": "35.64222", + "longitude_deg": "139.71342", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334507", + "ident": "JP-0143", + "type": "heliport", + "name": "Ebisu View Tower Helipad", + "latitude_deg": "35.64058", + "longitude_deg": "139.71411", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Meguro, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334508", + "ident": "JP-0144", + "type": "heliport", + "name": "Ebisu Garden Terrace Ichibankan Helipad", + "latitude_deg": "35.641", + "longitude_deg": "139.71492", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Meguro, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334509", + "ident": "JP-0145", + "type": "heliport", + "name": "Westin Tokyo Helipad", + "latitude_deg": "35.64163", + "longitude_deg": "139.7153", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Meguro, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334510", + "ident": "JP-0146", + "type": "heliport", + "name": "JR Ebisu Building Helipad", + "latitude_deg": "35.64642", + "longitude_deg": "139.71024", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334511", + "ident": "JP-0147", + "type": "heliport", + "name": "Cerulean Tower Helipad", + "latitude_deg": "35.65639", + "longitude_deg": "139.69964", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334512", + "ident": "JP-0148", + "type": "heliport", + "name": "Shibuya Stream Helipad", + "latitude_deg": "35.65746", + "longitude_deg": "139.70298", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334513", + "ident": "JP-0149", + "type": "heliport", + "name": "Shibuya Hikarie Helipad", + "latitude_deg": "35.65913", + "longitude_deg": "139.70383", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334514", + "ident": "JP-0150", + "type": "heliport", + "name": "Shibuya Mark City East Helipad", + "latitude_deg": "35.65869", + "longitude_deg": "139.69973", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334515", + "ident": "JP-0151", + "type": "heliport", + "name": "Shibuya Mark City West Helipad", + "latitude_deg": "35.65801", + "longitude_deg": "139.69839", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334516", + "ident": "JP-0152", + "type": "heliport", + "name": "Shintaiso Building Number 4 Helipad", + "latitude_deg": "35.65829", + "longitude_deg": "139.69782", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334517", + "ident": "JP-0153", + "type": "heliport", + "name": "Shibuya Post Office Helipad", + "latitude_deg": "35.66038", + "longitude_deg": "139.70401", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334518", + "ident": "JP-0154", + "type": "heliport", + "name": "Aoyama Park Tower Helipad", + "latitude_deg": "35.66215", + "longitude_deg": "139.70501", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334519", + "ident": "JP-0155", + "type": "heliport", + "name": "Takashimaya Times Square Helipad", + "latitude_deg": "35.68693", + "longitude_deg": "139.7022", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334520", + "ident": "JP-0156", + "type": "heliport", + "name": "Hotel Century Southern Tower Helipad", + "latitude_deg": "35.68646", + "longitude_deg": "139.7004", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334521", + "ident": "JP-0157", + "type": "heliport", + "name": "JR East Headquarters Building Helipad", + "latitude_deg": "35.68744", + "longitude_deg": "139.69989", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334522", + "ident": "JP-0158", + "type": "heliport", + "name": "JR Shinjuku Miraina Tower Helipad", + "latitude_deg": "35.688707", + "longitude_deg": "139.701869", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no", + "keywords": "shinjuku, jr shinjuku miraina tower" + }, + { + "id": "334523", + "ident": "JP-0159", + "type": "heliport", + "name": "Tokyo Metropolitan Government Building Helipad", + "latitude_deg": "35.68921", + "longitude_deg": "139.69171", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334524", + "ident": "JP-0160", + "type": "heliport", + "name": "Shinjuku First West Building Helipad", + "latitude_deg": "35.68968", + "longitude_deg": "139.69563", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334525", + "ident": "JP-0161", + "type": "heliport", + "name": "Shinjuku i-LAND Tower Helipad", + "latitude_deg": "35.69309", + "longitude_deg": "139.69294", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334526", + "ident": "JP-0162", + "type": "heliport", + "name": "Shinjuku Oak Tower Helipad", + "latitude_deg": "35.69391", + "longitude_deg": "139.69058", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334527", + "ident": "JP-0163", + "type": "heliport", + "name": "Shinjuku Green Tower Building Helipad", + "latitude_deg": "35.69235", + "longitude_deg": "139.68973", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334528", + "ident": "JP-0164", + "type": "heliport", + "name": "Shinjuku Square Tower Helipad", + "latitude_deg": "35.69408", + "longitude_deg": "139.68781", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334529", + "ident": "JP-0165", + "type": "heliport", + "name": "Nishishinjuku Mitsui Building Helipad", + "latitude_deg": "35.69502", + "longitude_deg": "139.68898", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334530", + "ident": "JP-0166", + "type": "heliport", + "name": "Shinjuku Front Tower Helipad", + "latitude_deg": "35.69601", + "longitude_deg": "139.68954", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334531", + "ident": "JP-0167", + "type": "heliport", + "name": "Shinjuku Grand Tower Helipad", + "latitude_deg": "35.69614", + "longitude_deg": "139.6906", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334532", + "ident": "JP-0168", + "type": "heliport", + "name": "Shinjuku Toho Building Helipad", + "latitude_deg": "35.69552", + "longitude_deg": "139.70231", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334533", + "ident": "JP-0169", + "type": "heliport", + "name": "Luminary Tower Ikebukuro Helipad", + "latitude_deg": "35.73396", + "longitude_deg": "139.70974", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Toshima, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334534", + "ident": "JP-0170", + "type": "heliport", + "name": "Diamond Gate Ikebukuro Helipad", + "latitude_deg": "35.72658", + "longitude_deg": "139.71051", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Toshima, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334535", + "ident": "JP-0171", + "type": "heliport", + "name": "Owl Tower Helipad", + "latitude_deg": "35.72764", + "longitude_deg": "139.71978", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Toshima, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334536", + "ident": "JP-0172", + "type": "heliport", + "name": "Vanguard Tower Helipad", + "latitude_deg": "35.73144", + "longitude_deg": "139.71996", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Toshima, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334537", + "ident": "JP-0173", + "type": "heliport", + "name": "Lions Tower Ikebukuro Helipad", + "latitude_deg": "35.7302", + "longitude_deg": "139.72107", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Toshima, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334538", + "ident": "JP-0174", + "type": "heliport", + "name": "Health Plaza Toshima Helipad", + "latitude_deg": "35.7347", + "longitude_deg": "139.7153", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Toshima, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334539", + "ident": "JP-0175", + "type": "heliport", + "name": "Station Garden Tower Helipad", + "latitude_deg": "35.729544", + "longitude_deg": "139.77128", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Arakawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334540", + "ident": "JP-0176", + "type": "heliport", + "name": "Station Plaza Tower Helipad", + "latitude_deg": "35.729774", + "longitude_deg": "139.770711", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Arakawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334541", + "ident": "JP-0177", + "type": "heliport", + "name": "Ueno East Tower Helipad", + "latitude_deg": "35.70914", + "longitude_deg": "139.77702", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Taito, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334542", + "ident": "JP-0178", + "type": "heliport", + "name": "Tokyo Times Tower Helipad", + "latitude_deg": "35.70144", + "longitude_deg": "139.77258", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334543", + "ident": "JP-0179", + "type": "heliport", + "name": "Akihabara UDX Building Helipad", + "latitude_deg": "35.70006", + "longitude_deg": "139.77255", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no", + "keywords": "akihabara udx, chiyoda, tokyo" + }, + { + "id": "334544", + "ident": "JP-0180", + "type": "heliport", + "name": "Akihabara Daibiru Building Helipad", + "latitude_deg": "35.69905", + "longitude_deg": "139.77208", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334545", + "ident": "JP-0181", + "type": "heliport", + "name": "Tokyo Medical and Dental University Helipad", + "latitude_deg": "35.70164", + "longitude_deg": "139.76424", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Bunkyo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334546", + "ident": "JP-0182", + "type": "heliport", + "name": "M&D Tower Helipad", + "latitude_deg": "35.70175", + "longitude_deg": "139.76362", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Bunkyo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334547", + "ident": "JP-0183", + "type": "heliport", + "name": "Juntendo University Hospital Heliport", + "latitude_deg": "35.70246", + "longitude_deg": "139.76244", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Bunkyo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334548", + "ident": "JP-0184", + "type": "heliport", + "name": "Roppongi Hills Mori Tower Helipad", + "latitude_deg": "35.66046", + "longitude_deg": "139.72927", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334549", + "ident": "JP-0185", + "type": "heliport", + "name": "Ark Hills Heliport", + "latitude_deg": "35.66713", + "longitude_deg": "139.74001", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334550", + "ident": "JP-0186", + "type": "heliport", + "name": "Toranomon Twin Building Helipad", + "latitude_deg": "35.6677", + "longitude_deg": "139.74509", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334551", + "ident": "JP-0187", + "type": "heliport", + "name": "Toranomon 2-chome Tower Heliport", + "latitude_deg": "35.66838", + "longitude_deg": "139.7469", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334553", + "ident": "JP-0188", + "type": "heliport", + "name": "Otemachi Place West Tower Helipad", + "latitude_deg": "35.68684", + "longitude_deg": "139.76685", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334554", + "ident": "JP-0189", + "type": "heliport", + "name": "Tokyo Sankei Building Helipad", + "latitude_deg": "35.68691", + "longitude_deg": "139.76534", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334555", + "ident": "JP-0190", + "type": "heliport", + "name": "Otemachi Financial City South Tower Helipad", + "latitude_deg": "35.68768", + "longitude_deg": "139.76582", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334556", + "ident": "JP-0191", + "type": "heliport", + "name": "Otemachi Financial City North Tower Helipad", + "latitude_deg": "35.68822", + "longitude_deg": "139.76593", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334557", + "ident": "JP-0192", + "type": "heliport", + "name": "Yomiuri Shinbun Building Helipad", + "latitude_deg": "35.68725", + "longitude_deg": "139.76438", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334558", + "ident": "JP-0193", + "type": "heliport", + "name": "Otemachi Financial City Grand Cube Helipad", + "latitude_deg": "35.68829", + "longitude_deg": "139.76443", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334559", + "ident": "JP-0194", + "type": "heliport", + "name": "JA Building Helipad", + "latitude_deg": "35.68872", + "longitude_deg": "139.76276", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334560", + "ident": "JP-0195", + "type": "heliport", + "name": "Nikkei Helipad", + "latitude_deg": "35.68862", + "longitude_deg": "139.76231", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334561", + "ident": "JP-0196", + "type": "heliport", + "name": "Tokyo Fire Department Headquarters Helipad", + "latitude_deg": "35.68879", + "longitude_deg": "139.76155", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334562", + "ident": "JP-0197", + "type": "heliport", + "name": "Otemon Tower Helipad", + "latitude_deg": "35.68608", + "longitude_deg": "139.76217", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334563", + "ident": "JP-0198", + "type": "heliport", + "name": "Otemachi Park Building Helipad", + "latitude_deg": "35.68658", + "longitude_deg": "139.76281", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334564", + "ident": "JP-0199", + "type": "heliport", + "name": "Otemachi First Square Helipad", + "latitude_deg": "35.68583", + "longitude_deg": "139.76421", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334565", + "ident": "JP-0200", + "type": "heliport", + "name": "Otemachi Tower Helipad", + "latitude_deg": "35.68518", + "longitude_deg": "139.76543", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334566", + "ident": "JP-0201", + "type": "heliport", + "name": "Otemachi Nomura Building Helipad", + "latitude_deg": "35.68526", + "longitude_deg": "139.76621", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334567", + "ident": "JP-0202", + "type": "heliport", + "name": "Marunouchi Kitaguchi Building Helipad", + "latitude_deg": "35.68374", + "longitude_deg": "139.76683", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334568", + "ident": "JP-0203", + "type": "heliport", + "name": "Shin Marunouchi Center Helipad", + "latitude_deg": "35.6842", + "longitude_deg": "139.76638", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334569", + "ident": "JP-0204", + "type": "heliport", + "name": "Nippon Life Insurance Marunouchi Building Helipad", + "latitude_deg": "35.68333", + "longitude_deg": "139.76551", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334570", + "ident": "JP-0205", + "type": "heliport", + "name": "Mitsubishi UFJ Trust and Banking Headquarters Building Helipad", + "latitude_deg": "35.68383", + "longitude_deg": "139.76446", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334571", + "ident": "JP-0206", + "type": "heliport", + "name": "Sumitomo Mitsui Trust Bank Head Office Helipad", + "latitude_deg": "35.68435", + "longitude_deg": "139.76492", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334572", + "ident": "JP-0207", + "type": "heliport", + "name": "Sumitomo Mitsui Bank East Tower Helipad", + "latitude_deg": "35.68467", + "longitude_deg": "139.76369", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334573", + "ident": "JP-0208", + "type": "heliport", + "name": "Sumitomo Mitsui Banking Corporation Head Office Building Helipad", + "latitude_deg": "35.68493", + "longitude_deg": "139.76247", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334574", + "ident": "JP-0209", + "type": "heliport", + "name": "Nippon Life Insurance Marunouchi Garden Tower Helipad", + "latitude_deg": "35.68458", + "longitude_deg": "139.76211", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334575", + "ident": "JP-0210", + "type": "heliport", + "name": "Palace Hotel Tokyo Helipad", + "latitude_deg": "35.68459", + "longitude_deg": "139.76168", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334576", + "ident": "JP-0211", + "type": "heliport", + "name": "Marunouchi Palace Building Helipad", + "latitude_deg": "35.6853", + "longitude_deg": "139.76162", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334577", + "ident": "JP-0212", + "type": "heliport", + "name": "Toyama Emergency Helipad", + "latitude_deg": "35.35524", + "longitude_deg": "137.95552", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Iida", + "scheduled_service": "no" + }, + { + "id": "334578", + "ident": "JP-0213", + "type": "heliport", + "name": "Sumatakyo Heliport", + "latitude_deg": "35.176948", + "longitude_deg": "138.125482", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Kawanehon", + "scheduled_service": "no" + }, + { + "id": "334579", + "ident": "JP-0214", + "type": "heliport", + "name": "Aoi Tower Helipad", + "latitude_deg": "34.972384", + "longitude_deg": "138.386723", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "334580", + "ident": "JP-0215", + "type": "heliport", + "name": "Suruga Sky Tower Helipad", + "latitude_deg": "34.970467", + "longitude_deg": "138.389314", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "334581", + "ident": "JP-0216", + "type": "heliport", + "name": "Espatio Helipad", + "latitude_deg": "34.970423", + "longitude_deg": "138.390436", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "334582", + "ident": "JP-0217", + "type": "heliport", + "name": "Imperial Palace Square Emergency Helipad", + "latitude_deg": "35.679923", + "longitude_deg": "139.755771", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no", + "keywords": "imperial palace" + }, + { + "id": "334583", + "ident": "JP-0218", + "type": "heliport", + "name": "Marunouchi Building Helipad", + "latitude_deg": "35.68065", + "longitude_deg": "139.76397", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334584", + "ident": "JP-0219", + "type": "heliport", + "name": "JP Tower Helipad", + "latitude_deg": "35.6798", + "longitude_deg": "139.76461", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334585", + "ident": "JP-0220", + "type": "heliport", + "name": "Tokyo Building TOKIA Helipad", + "latitude_deg": "35.67849", + "longitude_deg": "139.76483", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334586", + "ident": "JP-0221", + "type": "heliport", + "name": "Marunouchi Park Building Helipad", + "latitude_deg": "35.67896", + "longitude_deg": "139.76307", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334587", + "ident": "JP-0222", + "type": "heliport", + "name": "Marunouchi My Plaza Helipad", + "latitude_deg": "35.67897", + "longitude_deg": "139.76225", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334588", + "ident": "JP-0223", + "type": "heliport", + "name": "Marunouchi Nijubashi Building Helipad", + "latitude_deg": "35.67742", + "longitude_deg": "139.76148", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334589", + "ident": "JP-0224", + "type": "heliport", + "name": "Tokyo International Forum Helipad", + "latitude_deg": "35.676607", + "longitude_deg": "139.763335", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334590", + "ident": "JP-0225", + "type": "heliport", + "name": "DN Tower Helipad", + "latitude_deg": "35.67576", + "longitude_deg": "139.76116", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334591", + "ident": "JP-0226", + "type": "heliport", + "name": "The Peninsula Tokyo Helipad", + "latitude_deg": "35.67472", + "longitude_deg": "139.76066", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334592", + "ident": "JP-0227", + "type": "heliport", + "name": "Central Government Building 2 Heliport", + "latitude_deg": "35.67523", + "longitude_deg": "139.7511", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334593", + "ident": "JP-0228", + "type": "heliport", + "name": "Tokyo Metropolitan Police Headquarters Heliport", + "latitude_deg": "35.677", + "longitude_deg": "139.75227", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334594", + "ident": "JP-0229", + "type": "heliport", + "name": "Telecom Center Building Helipad", + "latitude_deg": "35.617396", + "longitude_deg": "139.780249", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334595", + "ident": "JP-0230", + "type": "heliport", + "name": "Aomi Frontier Building Helipad", + "latitude_deg": "35.61767", + "longitude_deg": "139.77838", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334596", + "ident": "JP-0231", + "type": "heliport", + "name": "Rinkai Fukutoshin Center Annex Helipad", + "latitude_deg": "35.61843", + "longitude_deg": "139.77796", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334597", + "ident": "JP-0232", + "type": "heliport", + "name": "Time 24 Building Helipad", + "latitude_deg": "35.61793", + "longitude_deg": "139.77696", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334598", + "ident": "JP-0233", + "type": "heliport", + "name": "Tokyo Port Joint Government Building Helipad", + "latitude_deg": "35.61648", + "longitude_deg": "139.77615", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334599", + "ident": "JP-0234", + "type": "heliport", + "name": "Hilton Tokyo Odaiba Helipad", + "latitude_deg": "35.62626", + "longitude_deg": "139.77045", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334600", + "ident": "JP-0235", + "type": "heliport", + "name": "Grand Nikko Hotel Tokyo Daiba Helipad", + "latitude_deg": "35.62502", + "longitude_deg": "139.77157", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334601", + "ident": "JP-0236", + "type": "heliport", + "name": "Fuji Television Building Helipad", + "latitude_deg": "35.62648", + "longitude_deg": "139.77388", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334602", + "ident": "JP-0237", + "type": "heliport", + "name": "Tradepia Odaiba Helipad", + "latitude_deg": "35.6278", + "longitude_deg": "139.77634", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334603", + "ident": "JP-0238", + "type": "heliport", + "name": "Daiba Frontier Building Helipad", + "latitude_deg": "35.62869", + "longitude_deg": "139.7779", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334604", + "ident": "JP-0239", + "type": "heliport", + "name": "Suntory Building Helipad", + "latitude_deg": "35.62896", + "longitude_deg": "139.77867", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334605", + "ident": "JP-0240", + "type": "heliport", + "name": "The Towers Daiba West Helipad", + "latitude_deg": "35.62982", + "longitude_deg": "139.78021", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334606", + "ident": "JP-0241", + "type": "heliport", + "name": "The Towers Daiba East Helipad", + "latitude_deg": "35.63008", + "longitude_deg": "139.78066", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334607", + "ident": "JP-0242", + "type": "heliport", + "name": "Searea Odaiba Sanbangai Building 4 Helipad", + "latitude_deg": "35.63138", + "longitude_deg": "139.77949", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334608", + "ident": "JP-0243", + "type": "heliport", + "name": "Searea Odaiba Sanbangai Building 2 Helipad", + "latitude_deg": "35.63193", + "longitude_deg": "139.77902", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334609", + "ident": "JP-0244", + "type": "heliport", + "name": "Searea Odaiba Ichibangai Building 2 Helipad", + "latitude_deg": "35.63451", + "longitude_deg": "139.77685", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334610", + "ident": "JP-0245", + "type": "heliport", + "name": "Searea Odaiba Ichibangai Building 1 Helipad", + "latitude_deg": "35.63451", + "longitude_deg": "139.77685", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334611", + "ident": "JP-0246", + "type": "heliport", + "name": "Brillia Ariake City Tower Helipad", + "latitude_deg": "35.63591", + "longitude_deg": "139.78266", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334612", + "ident": "JP-0247", + "type": "heliport", + "name": "Marunouchi Trust Tower North Building Helipad", + "latitude_deg": "35.6833", + "longitude_deg": "139.76986", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334613", + "ident": "JP-0248", + "type": "heliport", + "name": "Tekko Building Helipad", + "latitude_deg": "35.683", + "longitude_deg": "139.7702", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334614", + "ident": "JP-0249", + "type": "heliport", + "name": "Marunouchi Trust Tower Main Building Helipad", + "latitude_deg": "35.68261", + "longitude_deg": "139.76934", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334615", + "ident": "JP-0250", + "type": "heliport", + "name": "GranTokyo North Tower Helipad", + "latitude_deg": "35.68177", + "longitude_deg": "139.76911", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334616", + "ident": "JP-0251", + "type": "heliport", + "name": "GranTokyo South Tower Helipad", + "latitude_deg": "35.67877", + "longitude_deg": "139.76729", + "elevation_ft": "786", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334617", + "ident": "JP-0252", + "type": "heliport", + "name": "Pacific Century Place Marunouchi Helipad", + "latitude_deg": "35.67807", + "longitude_deg": "139.76699", + "elevation_ft": "553", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334618", + "ident": "JP-0253", + "type": "heliport", + "name": "Hibiya Mitsui Tower Helipad", + "latitude_deg": "35.67367", + "longitude_deg": "139.75917", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334619", + "ident": "JP-0254", + "type": "heliport", + "name": "Tokyo Takarazuka Tower Helipad", + "latitude_deg": "35.67301", + "longitude_deg": "139.75921", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334620", + "ident": "JP-0255", + "type": "heliport", + "name": "Tokyo Metropolitan Hibiya Park Emergency Helipad", + "latitude_deg": "35.67286", + "longitude_deg": "139.75641", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334621", + "ident": "JP-0256", + "type": "heliport", + "name": "Shinsaiwaibashi Building Heliport", + "latitude_deg": "35.66912", + "longitude_deg": "139.75732", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334622", + "ident": "JP-0257", + "type": "heliport", + "name": "Hibiya Park Front Helipad", + "latitude_deg": "35.6709", + "longitude_deg": "139.75366", + "elevation_ft": "548", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334623", + "ident": "JP-0258", + "type": "heliport", + "name": "Iino Building Helipad", + "latitude_deg": "35.67082", + "longitude_deg": "139.75287", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334624", + "ident": "JP-0259", + "type": "heliport", + "name": "Kasumigaseki Common Gate West Tower Helipad", + "latitude_deg": "35.67172", + "longitude_deg": "139.74813", + "elevation_ft": "800", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334625", + "ident": "JP-0260", + "type": "heliport", + "name": "JT Building Helipad", + "latitude_deg": "35.66968", + "longitude_deg": "139.74565", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334626", + "ident": "JP-0261", + "type": "heliport", + "name": "Toranomon Hills Mori Tower Helipad", + "latitude_deg": "35.66696", + "longitude_deg": "139.74917", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334627", + "ident": "JP-0262", + "type": "heliport", + "name": "Shiodome City Center Helipad", + "latitude_deg": "35.66518", + "longitude_deg": "139.76115", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334628", + "ident": "JP-0263", + "type": "heliport", + "name": "Royal Park Shiodome Tower Helipad", + "latitude_deg": "35.66442", + "longitude_deg": "139.76064", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334629", + "ident": "JP-0264", + "type": "heliport", + "name": "Nippon Television (NTV) Tower Helipad", + "latitude_deg": "35.66436", + "longitude_deg": "139.75986", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334630", + "ident": "JP-0265", + "type": "heliport", + "name": "Dentsu Building Helipad", + "latitude_deg": "35.6644", + "longitude_deg": "139.76228", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334631", + "ident": "JP-0266", + "type": "heliport", + "name": "Shiodome Media Tower Helipad", + "latitude_deg": "35.66327", + "longitude_deg": "139.75976", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334632", + "ident": "JP-0267", + "type": "heliport", + "name": "Shiodome Sumitomo Building Helipad", + "latitude_deg": "35.6621", + "longitude_deg": "139.76013", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334633", + "ident": "JP-0268", + "type": "heliport", + "name": "Tokyo Shiodome Building Helipad", + "latitude_deg": "35.66302", + "longitude_deg": "139.76122", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334634", + "ident": "JP-0269", + "type": "heliport", + "name": "Tokyo Twin Parks Left Tower Helipad", + "latitude_deg": "35.66121", + "longitude_deg": "139.75994", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334635", + "ident": "JP-0270", + "type": "heliport", + "name": "Tokyo Twin Parks Right Tower Helipad", + "latitude_deg": "35.66045", + "longitude_deg": "139.75976", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334636", + "ident": "JP-0271", + "type": "heliport", + "name": "Wins Shiodome Helipad", + "latitude_deg": "35.66141", + "longitude_deg": "139.75812", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334637", + "ident": "JP-0272", + "type": "heliport", + "name": "Park Court Hamarikyu Tower Helipad", + "latitude_deg": "35.65962", + "longitude_deg": "139.75715", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334638", + "ident": "JP-0273", + "type": "heliport", + "name": "Acty Shiodome Helipad", + "latitude_deg": "35.65795", + "longitude_deg": "139.75885", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334639", + "ident": "JP-0274", + "type": "heliport", + "name": "Shiodome Building Helipad", + "latitude_deg": "35.65707", + "longitude_deg": "139.75935", + "elevation_ft": "538", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334640", + "ident": "JP-0275", + "type": "heliport", + "name": "New Pier Takeshiba South Tower Helipad", + "latitude_deg": "35.65363", + "longitude_deg": "139.76233", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334641", + "ident": "JP-0276", + "type": "heliport", + "name": "Intercontinental Tokyo Bay Hotel Helipad", + "latitude_deg": "35.65286", + "longitude_deg": "139.76212", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334642", + "ident": "JP-0277", + "type": "heliport", + "name": "City Heights Shiba Helipad", + "latitude_deg": "35.65161", + "longitude_deg": "139.75563", + "elevation_ft": "410", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no", + "keywords": "Human Plaza" + }, + { + "id": "334643", + "ident": "JP-0278", + "type": "heliport", + "name": "Shibaura Heliport", + "latitude_deg": "35.637074", + "longitude_deg": "139.751909", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "334644", + "ident": "JP-0279", + "type": "heliport", + "name": "Tokai University Hospital Heliport", + "latitude_deg": "35.407779", + "longitude_deg": "139.313754", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Isehara", + "scheduled_service": "no" + }, + { + "id": "334645", + "ident": "JP-0280", + "type": "heliport", + "name": "Ashinoko Heliport", + "latitude_deg": "35.19584", + "longitude_deg": "138.99521", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Hakone", + "scheduled_service": "no" + }, + { + "id": "334646", + "ident": "JP-0281", + "type": "heliport", + "name": "Juntendo Shizuoka Heliport", + "latitude_deg": "35.042734", + "longitude_deg": "138.920091", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Izunokuni", + "scheduled_service": "no" + }, + { + "id": "334647", + "ident": "JP-0282", + "type": "heliport", + "name": "Suruga Bay Numazu Eastbound Service Area Heliport", + "latitude_deg": "35.155091", + "longitude_deg": "138.808522", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Numazu", + "scheduled_service": "no", + "keywords": "surugawan, numazu" + }, + { + "id": "334648", + "ident": "JP-0283", + "type": "heliport", + "name": "Shizuoka Heliport", + "latitude_deg": "35.02441", + "longitude_deg": "138.40877", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "334649", + "ident": "JP-0284", + "type": "heliport", + "name": "Shizuoka Emergency Heliport", + "latitude_deg": "35.01717", + "longitude_deg": "138.36998", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "334650", + "ident": "JP-0285", + "type": "heliport", + "name": "Shizuoka Prefectural General Hospital Helipad", + "latitude_deg": "35.003706", + "longitude_deg": "138.386015", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "334651", + "ident": "JP-0286", + "type": "heliport", + "name": "Shizuoka Prefectural Police Headquarters Helipad", + "latitude_deg": "34.976854", + "longitude_deg": "138.383746", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "334652", + "ident": "JP-0287", + "type": "heliport", + "name": "Matsuzakaya Shizuoka Helipad", + "latitude_deg": "34.973483", + "longitude_deg": "138.387898", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "334653", + "ident": "JP-0288", + "type": "heliport", + "name": "Southspot Shizuoka Helipad", + "latitude_deg": "34.971016", + "longitude_deg": "138.390811", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "334654", + "ident": "JP-0289", + "type": "heliport", + "name": "Marks the Tower Fujieda Helipad", + "latitude_deg": "34.850619", + "longitude_deg": "138.254963", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Fujieda", + "scheduled_service": "no" + }, + { + "id": "334655", + "ident": "JP-0290", + "type": "heliport", + "name": "Hamamatsu Act Tower Heliport", + "latitude_deg": "34.705604", + "longitude_deg": "137.737216", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Hamamatsu", + "scheduled_service": "no" + }, + { + "id": "334656", + "ident": "JP-0291", + "type": "heliport", + "name": "Premist Hamamatsu Central Tower Helipad", + "latitude_deg": "34.708982", + "longitude_deg": "137.737184", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Hamamatsu", + "scheduled_service": "no" + }, + { + "id": "334657", + "ident": "JP-0292", + "type": "heliport", + "name": "JA Shizuoka Koseiren Enshu Hospital Helipad", + "latitude_deg": "34.713025", + "longitude_deg": "137.734389", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Hamamatsu", + "scheduled_service": "no" + }, + { + "id": "334658", + "ident": "JP-0293", + "type": "heliport", + "name": "Seirei Hamamatsu General Hospital Helipad", + "latitude_deg": "34.730424", + "longitude_deg": "137.725071", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Hamamatsu", + "scheduled_service": "no" + }, + { + "id": "334659", + "ident": "JP-0294", + "type": "heliport", + "name": "Hiroshima Minato Park Helipad", + "latitude_deg": "34.35437", + "longitude_deg": "132.45543", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "334660", + "ident": "JP-0295", + "type": "heliport", + "name": "Hiroshima Prefectural Hospital Helipad", + "latitude_deg": "34.366974", + "longitude_deg": "132.466578", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "334661", + "ident": "JP-0296", + "type": "heliport", + "name": "Hiroshima University Hospital Helipad", + "latitude_deg": "34.378818", + "longitude_deg": "132.47838", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "334662", + "ident": "JP-0297", + "type": "heliport", + "name": "Hiroshima Red Cross Atomic Bomb Survivors Hospital Heliport", + "latitude_deg": "34.38093", + "longitude_deg": "132.454986", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "334663", + "ident": "JP-0298", + "type": "heliport", + "name": "Garden Garden South Tower Helipad", + "latitude_deg": "34.38143", + "longitude_deg": "132.456461", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "334664", + "ident": "JP-0299", + "type": "heliport", + "name": "Garden Garden North Tower Helipad", + "latitude_deg": "34.382205", + "longitude_deg": "132.456316", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "334665", + "ident": "JP-0300", + "type": "heliport", + "name": "Shishinyo Building Helipad", + "latitude_deg": "34.39283", + "longitude_deg": "132.457228", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "334666", + "ident": "JP-0301", + "type": "heliport", + "name": "NTT Credo Shirashima Building Helipad", + "latitude_deg": "34.404976", + "longitude_deg": "132.464186", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "334667", + "ident": "JP-0302", + "type": "heliport", + "name": "Hiroshima Garden City Hakushima Johoku East Tower Helipad", + "latitude_deg": "34.403975", + "longitude_deg": "132.463639", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "334668", + "ident": "JP-0303", + "type": "heliport", + "name": "Hiroshima Garden City Hakushima Johoku West Tower Helipad", + "latitude_deg": "34.403909", + "longitude_deg": "132.462587", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "334669", + "ident": "JP-0304", + "type": "heliport", + "name": "Otagawa Kabe Heliport", + "latitude_deg": "34.49034", + "longitude_deg": "132.513319", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "334670", + "ident": "JP-0305", + "type": "heliport", + "name": "Chudenko Helipad", + "latitude_deg": "34.392958", + "longitude_deg": "132.444826", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "334671", + "ident": "JP-0306", + "type": "heliport", + "name": "Iwakuni Clinical Center Helipad", + "latitude_deg": "34.143408", + "longitude_deg": "132.203186", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Iwakuni", + "scheduled_service": "no" + }, + { + "id": "334672", + "ident": "JP-0307", + "type": "heliport", + "name": "Sakugi Helipad", + "latitude_deg": "34.90022", + "longitude_deg": "132.70278", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Miyoshi", + "scheduled_service": "no" + }, + { + "id": "334673", + "ident": "JP-0308", + "type": "heliport", + "name": "Miyoshi Emergency Helipad", + "latitude_deg": "34.80891", + "longitude_deg": "132.86358", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Miyoshi", + "scheduled_service": "no" + }, + { + "id": "334674", + "ident": "JP-0309", + "type": "heliport", + "name": "Miyoshi Municipal Central Hospital Helipad", + "latitude_deg": "34.781681", + "longitude_deg": "132.866861", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Miyoshi", + "scheduled_service": "no" + }, + { + "id": "334675", + "ident": "JP-0310", + "type": "heliport", + "name": "Sanwa Heliport", + "latitude_deg": "34.69913", + "longitude_deg": "133.2542", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Jinsekikogen", + "scheduled_service": "no" + }, + { + "id": "334676", + "ident": "JP-0311", + "type": "heliport", + "name": "Shimane University Hospital Heliport", + "latitude_deg": "35.34585", + "longitude_deg": "132.75323", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Izumo", + "scheduled_service": "no" + }, + { + "id": "334677", + "ident": "JP-0312", + "type": "heliport", + "name": "Shimane Prefectural Central Hospital Helipad", + "latitude_deg": "35.374875", + "longitude_deg": "132.7549", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Izumo", + "scheduled_service": "no" + }, + { + "id": "334678", + "ident": "JP-0313", + "type": "heliport", + "name": "Matsue City Hospital Helipad", + "latitude_deg": "35.437885", + "longitude_deg": "133.056085", + "elevation_ft": "118", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Matsue", + "scheduled_service": "no" + }, + { + "id": "334679", + "ident": "JP-0314", + "type": "heliport", + "name": "Japan Red Cross Matsue Hospital Helipad", + "latitude_deg": "35.47079", + "longitude_deg": "133.05708", + "elevation_ft": "205", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Matsue", + "scheduled_service": "no" + }, + { + "id": "334680", + "ident": "JP-0315", + "type": "closed", + "name": "Yokosuka Oihama Naval Airfield", + "latitude_deg": "35.32541", + "longitude_deg": "139.64473", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokosuka", + "scheduled_service": "no" + }, + { + "id": "334709", + "ident": "JP-0316", + "type": "heliport", + "name": "JMSDF Kure Education Corps Helipad", + "latitude_deg": "34.24014", + "longitude_deg": "132.56001", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Kure", + "scheduled_service": "no" + }, + { + "id": "334710", + "ident": "JP-0317", + "type": "heliport", + "name": "Matsueda Hongawa Heliport", + "latitude_deg": "33.72805", + "longitude_deg": "133.32887", + "elevation_ft": "2151", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Ino", + "scheduled_service": "no" + }, + { + "id": "334711", + "ident": "JP-0318", + "type": "heliport", + "name": "Yasui Heliport", + "latitude_deg": "33.64083", + "longitude_deg": "133.19602", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Niyodogawa", + "scheduled_service": "no" + }, + { + "id": "334718", + "ident": "JP-0319", + "type": "closed", + "name": "Ami Airfield", + "latitude_deg": "36.023764", + "longitude_deg": "140.266657", + "elevation_ft": "78", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Ami", + "scheduled_service": "no", + "local_code": "RJAI", + "keywords": "ami, rja1, rjai" + }, + { + "id": "334719", + "ident": "JP-0320", + "type": "small_airport", + "name": "Honda Airport", + "latitude_deg": "35.97633", + "longitude_deg": "139.524125", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kawajima", + "scheduled_service": "no", + "local_code": "RJT1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Honda_Airport", + "keywords": "rjt1, rjoj, honda, kawataya, kawajima, okegawa" + }, + { + "id": "334761", + "ident": "JP-0321", + "type": "heliport", + "name": "Kachidoki Tower Helipad", + "latitude_deg": "35.656407", + "longitude_deg": "139.772664", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no", + "keywords": "chuo, tokyo, kachidoki, the tower" + }, + { + "id": "334762", + "ident": "JP-0322", + "type": "heliport", + "name": "Tokyo Towers Mid Tower Helipad", + "latitude_deg": "35.655867", + "longitude_deg": "139.773613", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no", + "keywords": "chuo, tokyo, tokyo towers mid tower" + }, + { + "id": "334763", + "ident": "JP-0323", + "type": "heliport", + "name": "Tokyo Towers Sea Tower Helipad", + "latitude_deg": "35.655126", + "longitude_deg": "139.774557", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no", + "keywords": "chuo, tokyo, tokyo towers sea tower" + }, + { + "id": "334764", + "ident": "JP-0324", + "type": "heliport", + "name": "Nishinoshima Heliport", + "latitude_deg": "36.09191", + "longitude_deg": "133.01486", + "elevation_ft": "105", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Nishinoshima", + "scheduled_service": "no" + }, + { + "id": "334765", + "ident": "JP-0325", + "type": "heliport", + "name": "Chiburijima Heliport", + "latitude_deg": "36.007972", + "longitude_deg": "133.061321", + "elevation_ft": "213", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Chibu", + "scheduled_service": "no" + }, + { + "id": "334766", + "ident": "JP-0326", + "type": "heliport", + "name": "Ama Municipal Heliport", + "latitude_deg": "36.10101", + "longitude_deg": "133.09593", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Ama", + "scheduled_service": "no", + "keywords": "ama, amacho, oki" + }, + { + "id": "334767", + "ident": "JP-0327", + "type": "heliport", + "name": "Nakatsu Helipad", + "latitude_deg": "35.37687", + "longitude_deg": "133.99304", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Misasa", + "scheduled_service": "no", + "keywords": "misasa, nakatsu" + }, + { + "id": "334937", + "ident": "JP-0328", + "type": "heliport", + "name": "Adachi Ward Office Helipad", + "latitude_deg": "35.774635", + "longitude_deg": "139.804512", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Adachi, Tokyo", + "scheduled_service": "no" + }, + { + "id": "335036", + "ident": "JP-0329", + "type": "small_airport", + "name": "Suginohaku Hobby Field Ultralightport", + "latitude_deg": "34.61506", + "longitude_deg": "132.27509", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Akiota", + "scheduled_service": "no" + }, + { + "id": "335037", + "ident": "JP-0330", + "type": "heliport", + "name": "JASDF Mishima Sub-Base Helipad", + "latitude_deg": "34.77037", + "longitude_deg": "131.13335", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Hagi", + "scheduled_service": "no" + }, + { + "id": "335114", + "ident": "JP-0331", + "type": "heliport", + "name": "Tokyo Midtown Helipad", + "latitude_deg": "35.665949", + "longitude_deg": "139.731391", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "336014", + "ident": "JP-0332", + "type": "heliport", + "name": "Takasaki Heliport", + "latitude_deg": "35.68958", + "longitude_deg": "140.24253", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Sakura", + "scheduled_service": "no" + }, + { + "id": "336015", + "ident": "JP-0333", + "type": "small_airport", + "name": "Makabe Gliderport", + "latitude_deg": "36.26608", + "longitude_deg": "140.07195", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Sakuragawa", + "scheduled_service": "no" + }, + { + "id": "336016", + "ident": "JP-0334", + "type": "small_airport", + "name": "Nirasaki Gliderport", + "latitude_deg": "35.69042", + "longitude_deg": "138.46484", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Nirasaki", + "scheduled_service": "no" + }, + { + "id": "336017", + "ident": "JP-0335", + "type": "small_airport", + "name": "Futaba Airport", + "latitude_deg": "35.68141", + "longitude_deg": "138.48345", + "elevation_ft": "1028", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Kai", + "scheduled_service": "no", + "keywords": "Japan Aviation High School, Futaba Airport, 双葉滑空場, 日本航空学園" + }, + { + "id": "336018", + "ident": "JP-0336", + "type": "heliport", + "name": "University of Yamanashi Hospital Helipad", + "latitude_deg": "35.60886", + "longitude_deg": "138.53994", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Kofu", + "scheduled_service": "no" + }, + { + "id": "336019", + "ident": "JP-0337", + "type": "heliport", + "name": "Kofu Municipal Hospital Helipad", + "latitude_deg": "35.633673", + "longitude_deg": "138.591446", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Kofu", + "scheduled_service": "no" + }, + { + "id": "336020", + "ident": "JP-0338", + "type": "heliport", + "name": "Fujinomiya Heliport", + "latitude_deg": "35.413886", + "longitude_deg": "138.592637", + "elevation_ft": "2963", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Fujinomiya", + "scheduled_service": "no" + }, + { + "id": "336021", + "ident": "JP-0339", + "type": "heliport", + "name": "Narusawa Helipad", + "latitude_deg": "35.38231", + "longitude_deg": "138.700992", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Narusawa", + "scheduled_service": "no" + }, + { + "id": "336028", + "ident": "JP-0340", + "type": "heliport", + "name": "Hotel Trusty Abeno Helipad", + "latitude_deg": "34.646157", + "longitude_deg": "135.512452", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "336029", + "ident": "JP-0341", + "type": "heliport", + "name": "Tennoji Mio Helipad", + "latitude_deg": "34.646899", + "longitude_deg": "135.514255", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "336030", + "ident": "JP-0342", + "type": "heliport", + "name": "Abeno Harukas Helipad", + "latitude_deg": "34.645698", + "longitude_deg": "135.513852", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "336031", + "ident": "JP-0343", + "type": "heliport", + "name": "Abeno Grantour Helipad", + "latitude_deg": "34.644723", + "longitude_deg": "135.510483", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "336032", + "ident": "JP-0344", + "type": "heliport", + "name": "Kyoto Station Heliport", + "latitude_deg": "34.985834", + "longitude_deg": "135.75899", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kyoto", + "scheduled_service": "no" + }, + { + "id": "336033", + "ident": "JP-0345", + "type": "heliport", + "name": "Kyoto Station West Heliport", + "latitude_deg": "34.985917", + "longitude_deg": "135.756115", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kyoto", + "scheduled_service": "no" + }, + { + "id": "336034", + "ident": "JP-0346", + "type": "heliport", + "name": "Kyoto Prefectural University Hospital Heliport", + "latitude_deg": "35.024778", + "longitude_deg": "135.770363", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kyoto", + "scheduled_service": "no" + }, + { + "id": "336035", + "ident": "JP-0347", + "type": "heliport", + "name": "Kyoto Prefectural Police Headquarters Heliport", + "latitude_deg": "35.020231", + "longitude_deg": "135.756866", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kyoto", + "scheduled_service": "no" + }, + { + "id": "336036", + "ident": "JP-0348", + "type": "heliport", + "name": "Atré Meguro 2 Helipad", + "latitude_deg": "35.63349", + "longitude_deg": "139.7154", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "336037", + "ident": "JP-0349", + "type": "heliport", + "name": "Grand Millennia Tower Helipad", + "latitude_deg": "35.72535", + "longitude_deg": "139.710587", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Toshima, Tokyo", + "scheduled_service": "no" + }, + { + "id": "336039", + "ident": "JP-0350", + "type": "heliport", + "name": "Fujisoft Akiba Plaza Helipad", + "latitude_deg": "35.700113", + "longitude_deg": "139.77393", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "336040", + "ident": "JP-0351", + "type": "heliport", + "name": "Hakone Town Hall Hayakawa Riverbed Emergency Helipad", + "latitude_deg": "35.233443", + "longitude_deg": "139.10665", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Hakone", + "scheduled_service": "no" + }, + { + "id": "336140", + "ident": "JP-0352", + "type": "heliport", + "name": "Rihga Royal Hotel Helipad", + "latitude_deg": "34.397124", + "longitude_deg": "132.457464", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "336141", + "ident": "JP-0353", + "type": "heliport", + "name": "Hiroshima City Hospital Helipad", + "latitude_deg": "34.397641", + "longitude_deg": "132.460388", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "336142", + "ident": "JP-0354", + "type": "heliport", + "name": "NHK Building Helipad", + "latitude_deg": "34.390599", + "longitude_deg": "132.455152", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "336143", + "ident": "JP-0355", + "type": "heliport", + "name": "Urban View Grand Tower Helipad", + "latitude_deg": "34.399284", + "longitude_deg": "132.464658", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "336385", + "ident": "JP-0356", + "type": "heliport", + "name": "Tower Court Kitashinagawa Helipad", + "latitude_deg": "35.61661", + "longitude_deg": "139.739091", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "336387", + "ident": "JP-0357", + "type": "heliport", + "name": "Park Court Aoyama The Tower Helipad", + "latitude_deg": "35.670665", + "longitude_deg": "139.723606", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "336391", + "ident": "JP-0358", + "type": "heliport", + "name": "New Otani Garden Tower", + "latitude_deg": "35.679427", + "longitude_deg": "139.735617", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "336394", + "ident": "JP-0359", + "type": "heliport", + "name": "Kojimachi Millennium Garden Helipad", + "latitude_deg": "35.684363", + "longitude_deg": "139.734861", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "336523", + "ident": "JP-0360", + "type": "heliport", + "name": "Iwabuchi Watergate Emergency Heliport", + "latitude_deg": "35.785857", + "longitude_deg": "139.734651", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Kita, Tokyo", + "scheduled_service": "no" + }, + { + "id": "336524", + "ident": "JP-0361", + "type": "small_airport", + "name": "Iwabuchi Watergate Auxiliary Airfield", + "latitude_deg": "35.782031", + "longitude_deg": "139.738133", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Kita, Tokyo", + "scheduled_service": "no" + }, + { + "id": "336525", + "ident": "JP-0362", + "type": "heliport", + "name": "Gunma Heliport", + "latitude_deg": "36.317904", + "longitude_deg": "139.106752", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Maebashi", + "scheduled_service": "no" + }, + { + "id": "336526", + "ident": "JP-0363", + "type": "small_airport", + "name": "Isesaki Auxiliary Airfield", + "latitude_deg": "36.298871", + "longitude_deg": "139.158261", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Isesaki", + "scheduled_service": "no" + }, + { + "id": "336527", + "ident": "JP-0364", + "type": "heliport", + "name": "Toride Heliport", + "latitude_deg": "35.886903", + "longitude_deg": "140.068742", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Toride", + "scheduled_service": "no" + }, + { + "id": "336528", + "ident": "JP-0365", + "type": "heliport", + "name": "Hatsushima Helipad", + "latitude_deg": "35.040011", + "longitude_deg": "139.168797", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Atami", + "scheduled_service": "no" + }, + { + "id": "336529", + "ident": "JP-0366", + "type": "heliport", + "name": "Shimoda Helipad", + "latitude_deg": "34.69022", + "longitude_deg": "138.89751", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shimoda", + "scheduled_service": "no" + }, + { + "id": "336600", + "ident": "JP-0367", + "type": "heliport", + "name": "Tsu City Isewan Heliport", + "latitude_deg": "34.672773", + "longitude_deg": "136.55581", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Tsu", + "scheduled_service": "no" + }, + { + "id": "336609", + "ident": "JP-0368", + "type": "heliport", + "name": "Sakurasanri Helipad", + "latitude_deg": "33.80277", + "longitude_deg": "132.93948", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Toon", + "scheduled_service": "no" + }, + { + "id": "336610", + "ident": "JP-0369", + "type": "heliport", + "name": "Kosei General Hospital Helipad", + "latitude_deg": "34.39249", + "longitude_deg": "133.07731", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Mihara", + "scheduled_service": "no" + }, + { + "id": "336611", + "ident": "JP-0370", + "type": "heliport", + "name": "Ashidagawa Helipad", + "latitude_deg": "34.455226", + "longitude_deg": "133.383754", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Fukuyama", + "scheduled_service": "no" + }, + { + "id": "336612", + "ident": "JP-0371", + "type": "closed", + "name": "Kakogawa Airfield", + "latitude_deg": "34.73415", + "longitude_deg": "134.82126", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kakogawa", + "scheduled_service": "no" + }, + { + "id": "336613", + "ident": "JP-0372", + "type": "heliport", + "name": "Muikaichi Hospital Helipad", + "latitude_deg": "34.35368", + "longitude_deg": "131.93649", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Yoshika", + "scheduled_service": "no" + }, + { + "id": "336614", + "ident": "JP-0373", + "type": "heliport", + "name": "Masuda Red Cross Hospital Helipad", + "latitude_deg": "34.684014", + "longitude_deg": "131.841409", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Masuda", + "scheduled_service": "no" + }, + { + "id": "336615", + "ident": "JP-0374", + "type": "heliport", + "name": "Yamaguchi University Hospital Heliport", + "latitude_deg": "33.95891", + "longitude_deg": "131.24967", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Ube", + "scheduled_service": "no" + }, + { + "id": "336616", + "ident": "JP-0375", + "type": "heliport", + "name": "NHO Kanmon Medical Center Helipad", + "latitude_deg": "33.98825", + "longitude_deg": "130.99362", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Shimonoseki", + "scheduled_service": "no" + }, + { + "id": "336617", + "ident": "JP-0376", + "type": "heliport", + "name": "Yamaguchi Prefectural Police Headquarters Helipad", + "latitude_deg": "34.18607", + "longitude_deg": "131.46951", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Yamaguchi", + "scheduled_service": "no" + }, + { + "id": "336618", + "ident": "JP-0377", + "type": "heliport", + "name": "Suooshima Heliport", + "latitude_deg": "33.90333", + "longitude_deg": "132.33811", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Suooshima", + "scheduled_service": "no" + }, + { + "id": "336619", + "ident": "JP-0378", + "type": "heliport", + "name": "Nogutsuna Helipad", + "latitude_deg": "33.97568", + "longitude_deg": "132.68815", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Matsuyama", + "scheduled_service": "no" + }, + { + "id": "336621", + "ident": "JP-0379", + "type": "heliport", + "name": "Ehime Hospital Helipad", + "latitude_deg": "33.832057", + "longitude_deg": "132.765082", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Matsuyama", + "scheduled_service": "no" + }, + { + "id": "336622", + "ident": "JP-0380", + "type": "heliport", + "name": "Nagahama Helipad", + "latitude_deg": "33.58875", + "longitude_deg": "132.53726", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Ozu", + "scheduled_service": "no" + }, + { + "id": "336623", + "ident": "JP-0381", + "type": "closed", + "name": "Koshigaya Army Airfield", + "latitude_deg": "35.90782", + "longitude_deg": "139.75109", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Koshigaya", + "scheduled_service": "no" + }, + { + "id": "336626", + "ident": "JP-0382", + "type": "heliport", + "name": "Kurashiki Central Hospital Helipad", + "latitude_deg": "34.60246", + "longitude_deg": "133.77612", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Kurashiki", + "scheduled_service": "no" + }, + { + "id": "336627", + "ident": "JP-0383", + "type": "heliport", + "name": "Hotel Granvia Okayama Helipad", + "latitude_deg": "34.664173", + "longitude_deg": "133.917688", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Okayama", + "scheduled_service": "no" + }, + { + "id": "336628", + "ident": "JP-0384", + "type": "heliport", + "name": "Seto Heliport", + "latitude_deg": "34.77183", + "longitude_deg": "134.08321", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Okayama", + "scheduled_service": "no" + }, + { + "id": "336629", + "ident": "JP-0385", + "type": "heliport", + "name": "Kitagishima Helipad", + "latitude_deg": "34.37665", + "longitude_deg": "133.54643", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Kasaoka", + "scheduled_service": "no" + }, + { + "id": "336630", + "ident": "JP-0386", + "type": "heliport", + "name": "Kawasaki Medical School Hospital Helipad", + "latitude_deg": "34.633183", + "longitude_deg": "133.809789", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Kurashiki", + "scheduled_service": "no" + }, + { + "id": "336631", + "ident": "JP-0387", + "type": "heliport", + "name": "Kamiyamasaka Park Emergency Helipad", + "latitude_deg": "34.56641", + "longitude_deg": "134.00686", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Tamano", + "scheduled_service": "no" + }, + { + "id": "336632", + "ident": "JP-0388", + "type": "heliport", + "name": "Nagataniike Helipad", + "latitude_deg": "34.57106", + "longitude_deg": "133.99423", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Tamano", + "scheduled_service": "no" + }, + { + "id": "336633", + "ident": "JP-0389", + "type": "heliport", + "name": "Okayama Red Cross Hospital Heliport", + "latitude_deg": "34.63458", + "longitude_deg": "133.92349", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Okayama", + "scheduled_service": "no" + }, + { + "id": "336634", + "ident": "JP-0390", + "type": "heliport", + "name": "Takamatsu Municipal Hospital Helipad", + "latitude_deg": "34.28269", + "longitude_deg": "134.04046", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Takamatsu", + "scheduled_service": "no" + }, + { + "id": "336635", + "ident": "JP-0391", + "type": "heliport", + "name": "Naoshima Helipad", + "latitude_deg": "34.44672", + "longitude_deg": "133.98334", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Naoshima", + "scheduled_service": "no" + }, + { + "id": "336636", + "ident": "JP-0392", + "type": "heliport", + "name": "Fukuyama City Hospital Helipad", + "latitude_deg": "34.51246", + "longitude_deg": "133.39998", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Fukuyama", + "scheduled_service": "no" + }, + { + "id": "336637", + "ident": "JP-0393", + "type": "heliport", + "name": "Akigase Heliport", + "latitude_deg": "35.83991", + "longitude_deg": "139.61389", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Saitama", + "scheduled_service": "no" + }, + { + "id": "336638", + "ident": "JP-0394", + "type": "small_airport", + "name": "Tokyo Flying Club Airstrip", + "latitude_deg": "36.03546", + "longitude_deg": "139.50088", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Konosu", + "scheduled_service": "no" + }, + { + "id": "336639", + "ident": "JP-0395", + "type": "small_airport", + "name": "Mint Airstrip", + "latitude_deg": "36.00216", + "longitude_deg": "139.498", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kawajima", + "scheduled_service": "no" + }, + { + "id": "336640", + "ident": "JP-0396", + "type": "heliport", + "name": "Yuhikoku Kawajima Helipad", + "latitude_deg": "36.01318", + "longitude_deg": "139.49881", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kawajima", + "scheduled_service": "no" + }, + { + "id": "336641", + "ident": "JP-0397", + "type": "small_airport", + "name": "Yuhikoku Kawajima Airstrip", + "latitude_deg": "36.011448", + "longitude_deg": "139.500289", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kawajima", + "scheduled_service": "no" + }, + { + "id": "336642", + "ident": "JP-0398", + "type": "heliport", + "name": "Tsuyama Central Hospital Helipad", + "latitude_deg": "35.06596", + "longitude_deg": "134.04109", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Tsuyama", + "scheduled_service": "no" + }, + { + "id": "336644", + "ident": "JP-0399", + "type": "small_airport", + "name": "Nakajima Airstrip", + "latitude_deg": "36.30815", + "longitude_deg": "139.14593", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Takasaki", + "scheduled_service": "no" + }, + { + "id": "336645", + "ident": "JP-0400", + "type": "small_airport", + "name": "Kamisato Gliderport", + "latitude_deg": "36.27324", + "longitude_deg": "139.1518", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kamisato", + "scheduled_service": "no" + }, + { + "id": "336646", + "ident": "JP-0401", + "type": "small_airport", + "name": "Air Wing Motor Paraglider School Osato Landing Area", + "latitude_deg": "36.08799", + "longitude_deg": "139.43146", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kumagaya", + "scheduled_service": "no" + }, + { + "id": "336647", + "ident": "JP-0402", + "type": "small_airport", + "name": "Fukiage Airstrip", + "latitude_deg": "36.0811", + "longitude_deg": "139.45908", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Konosu", + "scheduled_service": "no" + }, + { + "id": "336648", + "ident": "JP-0403", + "type": "small_airport", + "name": "Kumagaya Flying Club Osato Airfield", + "latitude_deg": "36.11246", + "longitude_deg": "139.4131", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kumagaya", + "scheduled_service": "no" + }, + { + "id": "336649", + "ident": "JP-0404", + "type": "heliport", + "name": "Proud Tower Musashiurawa Garden Heliport", + "latitude_deg": "35.842131", + "longitude_deg": "139.646566", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Saitama", + "scheduled_service": "no" + }, + { + "id": "336650", + "ident": "JP-0405", + "type": "heliport", + "name": "Live Tower Musashiurawa Helipad", + "latitude_deg": "35.845623", + "longitude_deg": "139.648186", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Saitama", + "scheduled_service": "no" + }, + { + "id": "336673", + "ident": "JP-0406", + "type": "heliport", + "name": "Aizu Central Heliport", + "latitude_deg": "37.51986", + "longitude_deg": "139.9442", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Aizuwakamatsu", + "scheduled_service": "no" + }, + { + "id": "336674", + "ident": "JP-0407", + "type": "heliport", + "name": "Fukushima Medical University Hospital Helipad", + "latitude_deg": "37.68941", + "longitude_deg": "140.47386", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Fukushima", + "scheduled_service": "no", + "keywords": "福島県立医科大学附属病院ヘリポート" + }, + { + "id": "336675", + "ident": "JP-0408", + "type": "closed", + "name": "Kanemaru Airfield", + "latitude_deg": "36.86433", + "longitude_deg": "140.07607", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Otawara", + "scheduled_service": "no" + }, + { + "id": "336676", + "ident": "JP-0409", + "type": "heliport", + "name": "Hunter Mountain Heliport", + "latitude_deg": "36.94181", + "longitude_deg": "139.7495", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Nasushiobara", + "scheduled_service": "no" + }, + { + "id": "336677", + "ident": "JP-0410", + "type": "heliport", + "name": "Edelweiss Ski Resort Heliport", + "latitude_deg": "36.92706", + "longitude_deg": "139.74865", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Nikko", + "scheduled_service": "no" + }, + { + "id": "336678", + "ident": "JP-0411", + "type": "heliport", + "name": "Mikamo Heliport", + "latitude_deg": "36.31964", + "longitude_deg": "139.62224", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Sano", + "scheduled_service": "no" + }, + { + "id": "336679", + "ident": "JP-0412", + "type": "heliport", + "name": "Okudo-cho Disaster Prevention Station Helipad", + "latitude_deg": "36.30067", + "longitude_deg": "139.51186", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Ashikaga", + "scheduled_service": "no" + }, + { + "id": "336680", + "ident": "JP-0413", + "type": "small_airport", + "name": "Kishigawa Airstrip", + "latitude_deg": "34.23008", + "longitude_deg": "135.33142", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Kinokawa", + "scheduled_service": "no" + }, + { + "id": "336681", + "ident": "JP-0414", + "type": "heliport", + "name": "Wakayama Medical University Hospital Heliport", + "latitude_deg": "34.18771", + "longitude_deg": "135.181757", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Wakayama", + "scheduled_service": "no" + }, + { + "id": "336682", + "ident": "JP-0415", + "type": "heliport", + "name": "Aridagawa Emergency Station Helipad", + "latitude_deg": "34.07057", + "longitude_deg": "135.19766", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Aridagawa", + "scheduled_service": "no" + }, + { + "id": "336683", + "ident": "JP-0416", + "type": "heliport", + "name": "Wakayama Red Cross Hospital Helipad", + "latitude_deg": "34.22055", + "longitude_deg": "135.16851", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Wakayama", + "scheduled_service": "no" + }, + { + "id": "336684", + "ident": "JP-0417", + "type": "heliport", + "name": "Wakayama Occupational Hospital Helipad", + "latitude_deg": "34.255673", + "longitude_deg": "135.121611", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Wakayama", + "scheduled_service": "no" + }, + { + "id": "336685", + "ident": "JP-0418", + "type": "closed", + "name": "Yura Army Airfield", + "latitude_deg": "34.31955", + "longitude_deg": "134.75484", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Minamiawaji", + "scheduled_service": "no" + }, + { + "id": "336686", + "ident": "JP-0419", + "type": "heliport", + "name": "Japan Red Cross Fukui Hospital Helipad", + "latitude_deg": "36.04748", + "longitude_deg": "136.21268", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Fukui", + "scheduled_service": "no" + }, + { + "id": "336687", + "ident": "JP-0420", + "type": "heliport", + "name": "Fukui Saisekai Hospital Helipad", + "latitude_deg": "36.04722", + "longitude_deg": "136.25201", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Fukui", + "scheduled_service": "no" + }, + { + "id": "336688", + "ident": "JP-0421", + "type": "heliport", + "name": "Fukui Prefectural Hospital Helipad", + "latitude_deg": "36.06897", + "longitude_deg": "136.23911", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Fukui", + "scheduled_service": "no" + }, + { + "id": "336689", + "ident": "JP-0422", + "type": "small_airport", + "name": "Kisogawa Gliderport", + "latitude_deg": "35.21016", + "longitude_deg": "136.67814", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Kaizu", + "scheduled_service": "no" + }, + { + "id": "336690", + "ident": "JP-0423", + "type": "small_airport", + "name": "Ono Gliderport", + "latitude_deg": "35.4492", + "longitude_deg": "136.60299", + "elevation_ft": "80", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Ono", + "scheduled_service": "no" + }, + { + "id": "336691", + "ident": "JP-0424", + "type": "small_airport", + "name": "Hida Airpark", + "latitude_deg": "36.17939", + "longitude_deg": "137.313573", + "elevation_ft": "2343", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Takayama", + "scheduled_service": "no", + "wikipedia_link": "https://ja.wikipedia.org/wiki/%E9%A3%9B%E9%A8%A8%E3%82%A8%E3%82%A2%E3%83%91%E3%83%BC%E3%82%AF", + "keywords": "Hida Agricultural Airfield" + }, + { + "id": "336692", + "ident": "JP-0425", + "type": "heliport", + "name": "Yoshino Heliport", + "latitude_deg": "34.38683", + "longitude_deg": "135.94675", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-29", + "municipality": "Higashiyoshino", + "scheduled_service": "no" + }, + { + "id": "336693", + "ident": "JP-0426", + "type": "heliport", + "name": "Oda Municipal Hospital Helipad", + "latitude_deg": "35.18099", + "longitude_deg": "132.50159", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Oda", + "scheduled_service": "no" + }, + { + "id": "336694", + "ident": "JP-0427", + "type": "heliport", + "name": "Tottori University Hospital Helipad", + "latitude_deg": "35.429038", + "longitude_deg": "133.323973", + "elevation_ft": "98", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Yonago", + "scheduled_service": "no" + }, + { + "id": "336695", + "ident": "JP-0428", + "type": "heliport", + "name": "JMSDF Yokosuka Heliport", + "latitude_deg": "35.28579", + "longitude_deg": "139.65525", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokosuka", + "scheduled_service": "no" + }, + { + "id": "336696", + "ident": "JP-0429", + "type": "heliport", + "name": "Yokosuka Base Water Treatment Plant Heliport", + "latitude_deg": "35.29497", + "longitude_deg": "139.6798", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokosuka", + "scheduled_service": "no" + }, + { + "id": "336697", + "ident": "JP-0430", + "type": "heliport", + "name": "Yokosuka Port Heliport", + "latitude_deg": "35.2846", + "longitude_deg": "139.67863", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokosuka", + "scheduled_service": "no" + }, + { + "id": "336698", + "ident": "JP-0431", + "type": "heliport", + "name": "Tower House Helipad", + "latitude_deg": "35.27324", + "longitude_deg": "139.67884", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokosuka", + "scheduled_service": "no" + }, + { + "id": "336699", + "ident": "JP-0432", + "type": "closed", + "name": "Negishi Airfield", + "latitude_deg": "35.411555", + "longitude_deg": "139.632512", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "336700", + "ident": "JP-0433", + "type": "heliport", + "name": "Shinagawa Central Heliport", + "latitude_deg": "35.60919", + "longitude_deg": "139.7271", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "336701", + "ident": "JP-0434", + "type": "heliport", + "name": "Tottori Fire Academy Heliport", + "latitude_deg": "35.42913", + "longitude_deg": "133.39578", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Yonago", + "scheduled_service": "no" + }, + { + "id": "336702", + "ident": "JP-0435", + "type": "heliport", + "name": "Sakaimachi Heliport", + "latitude_deg": "37.45708", + "longitude_deg": "138.80657", + "elevation_ft": "73", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Nagaoka", + "scheduled_service": "no" + }, + { + "id": "336703", + "ident": "JP-0436", + "type": "heliport", + "name": "Tohoku Electric Power Helipad", + "latitude_deg": "37.44934", + "longitude_deg": "138.89192", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Nagaoka", + "scheduled_service": "no" + }, + { + "id": "336704", + "ident": "JP-0437", + "type": "heliport", + "name": "Shinanogawa Right Bank Helipad", + "latitude_deg": "37.45308", + "longitude_deg": "138.83679", + "elevation_ft": "69", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Nagaoka", + "scheduled_service": "no" + }, + { + "id": "336705", + "ident": "JP-0438", + "type": "small_airport", + "name": "Tanaka Airstrip", + "latitude_deg": "37.10633", + "longitude_deg": "138.76491", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Tokamachi", + "scheduled_service": "no" + }, + { + "id": "336706", + "ident": "JP-0439", + "type": "heliport", + "name": "Uonuma Kikan Hospital Heliport", + "latitude_deg": "37.1711", + "longitude_deg": "138.93596", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Minamiuonuma", + "scheduled_service": "no" + }, + { + "id": "336707", + "ident": "JP-0440", + "type": "heliport", + "name": "Fujiwara Dam Helipad", + "latitude_deg": "36.80724", + "longitude_deg": "139.03823", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Minakami", + "scheduled_service": "no" + }, + { + "id": "336708", + "ident": "JP-0441", + "type": "heliport", + "name": "Katashina Helipad", + "latitude_deg": "36.78024", + "longitude_deg": "139.22996", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Katashina", + "scheduled_service": "no" + }, + { + "id": "336709", + "ident": "JP-0442", + "type": "heliport", + "name": "Marunuma Kogen Ski Resort Emergency Helipad", + "latitude_deg": "36.81268", + "longitude_deg": "139.33007", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Katashina", + "scheduled_service": "no" + }, + { + "id": "336710", + "ident": "JP-0443", + "type": "heliport", + "name": "Kawamata Helipad", + "latitude_deg": "36.87199", + "longitude_deg": "139.50553", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Nikko", + "scheduled_service": "no" + }, + { + "id": "336711", + "ident": "JP-0444", + "type": "heliport", + "name": "Tamozawa Emergency Helipad", + "latitude_deg": "36.8916", + "longitude_deg": "139.65946", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Nikko", + "scheduled_service": "no" + }, + { + "id": "336712", + "ident": "JP-0445", + "type": "heliport", + "name": "Kawaji Dam Helipad", + "latitude_deg": "36.89094", + "longitude_deg": "139.68344", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Nikko", + "scheduled_service": "no" + }, + { + "id": "336713", + "ident": "JP-0446", + "type": "closed", + "name": "Maebashi Airfield", + "latitude_deg": "36.38558", + "longitude_deg": "139.01209", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Takasaki", + "scheduled_service": "no" + }, + { + "id": "336714", + "ident": "JP-0447", + "type": "heliport", + "name": "Takasaki Heliport", + "latitude_deg": "36.32499", + "longitude_deg": "138.99352", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Takasaki", + "scheduled_service": "no" + }, + { + "id": "336715", + "ident": "JP-0448", + "type": "heliport", + "name": "Gunma University Hospital Helipad", + "latitude_deg": "36.40765", + "longitude_deg": "139.06318", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Maebashi", + "scheduled_service": "no" + }, + { + "id": "336716", + "ident": "JP-0449", + "type": "small_airport", + "name": "Ojima Skyport", + "latitude_deg": "36.23945", + "longitude_deg": "139.31917", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Ota", + "scheduled_service": "no" + }, + { + "id": "336717", + "ident": "JP-0450", + "type": "heliport", + "name": "Sawara Helipad", + "latitude_deg": "35.895971", + "longitude_deg": "140.504309", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Katori", + "scheduled_service": "no" + }, + { + "id": "336719", + "ident": "JP-0451", + "type": "heliport", + "name": "Bentenshita Helipad", + "latitude_deg": "35.89993", + "longitude_deg": "140.02655", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Kashiwa", + "scheduled_service": "no" + }, + { + "id": "336720", + "ident": "JP-0452", + "type": "heliport", + "name": "Kamishingo Emergency Station Helipad", + "latitude_deg": "36.18833", + "longitude_deg": "139.51158", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Hanyu", + "scheduled_service": "no" + }, + { + "id": "336721", + "ident": "JP-0453", + "type": "small_airport", + "name": "Yoichi Agricultural Airfield / Appleport Yoichi", + "latitude_deg": "43.17089", + "longitude_deg": "140.80753", + "elevation_ft": "139", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Yoichi", + "scheduled_service": "no" + }, + { + "id": "336722", + "ident": "JP-0454", + "type": "small_airport", + "name": "Izena Auxiliary Airfield", + "latitude_deg": "26.93657", + "longitude_deg": "127.91536", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Izena", + "scheduled_service": "no" + }, + { + "id": "336723", + "ident": "JP-0455", + "type": "small_airport", + "name": "Kakuda Airfield", + "latitude_deg": "38.01017", + "longitude_deg": "140.80282", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Kakuda", + "scheduled_service": "no" + }, + { + "id": "336724", + "ident": "JP-0456", + "type": "small_airport", + "name": "Kuju Gliderport", + "latitude_deg": "33.03444", + "longitude_deg": "131.23344", + "elevation_ft": "2625", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Taketa", + "scheduled_service": "no" + }, + { + "id": "336725", + "ident": "JP-0457", + "type": "small_airport", + "name": "Shiraoi Gliderport", + "latitude_deg": "42.536824", + "longitude_deg": "141.254919", + "elevation_ft": "43", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Shiraoi", + "scheduled_service": "no", + "keywords": "Shiraoi Flying Club" + }, + { + "id": "336726", + "ident": "JP-0458", + "type": "small_airport", + "name": "Shintoku Agricultural Airfield", + "latitude_deg": "43.07622", + "longitude_deg": "142.87658", + "elevation_ft": "692", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Shintoku", + "scheduled_service": "no", + "wikipedia_link": "https://ja.wikipedia.org/wiki/%E6%96%B0%E5%BE%97%E7%94%BA%E8%BE%B2%E9%81%93%E9%9B%A2%E7%9D%80%E9%99%B8%E5%A0%B4", + "keywords": "Shintoku Airfield" + }, + { + "id": "336727", + "ident": "JP-0459", + "type": "small_airport", + "name": "Skyport Bibai", + "latitude_deg": "43.38992", + "longitude_deg": "141.85892", + "elevation_ft": "65", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Bibai", + "scheduled_service": "no", + "local_code": "RJBI", + "wikipedia_link": "https://ja.wikipedia.org/wiki/%E3%82%B9%E3%82%AB%E3%82%A4%E3%83%9D%E3%83%BC%E3%83%88%E7%BE%8E%E5%94%84", + "keywords": "Bibai Municipal Agricultural Airfield, Nakasorachi District Agricultural Airfield" + }, + { + "id": "336728", + "ident": "JP-0460", + "type": "small_airport", + "name": "Kitami Agricultural Airfield / Skyport Kitami", + "latitude_deg": "43.77998", + "longitude_deg": "143.73064", + "elevation_ft": "609", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Kitami", + "scheduled_service": "no", + "wikipedia_link": "https://ja.wikipedia.org/wiki/%E3%82%B9%E3%82%AB%E3%82%A4%E3%83%9D%E3%83%BC%E3%83%88%E3%81%8D%E3%81%9F%E3%81%BF" + }, + { + "id": "336729", + "ident": "JP-0461", + "type": "small_airport", + "name": "Suwanose-jima Airport", + "latitude_deg": "29.60624", + "longitude_deg": "129.70221", + "elevation_ft": "351", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Toshima", + "scheduled_service": "no", + "local_code": "RJX8" + }, + { + "id": "336730", + "ident": "JP-0462", + "type": "small_airport", + "name": "Semine Airstrip", + "latitude_deg": "38.68017", + "longitude_deg": "141.02163", + "elevation_ft": "171", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Kuriyama", + "scheduled_service": "no" + }, + { + "id": "336731", + "ident": "JP-0463", + "type": "small_airport", + "name": "Takikawa Sky Park", + "latitude_deg": "43.549349", + "longitude_deg": "141.894103", + "elevation_ft": "75", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Takikawa", + "scheduled_service": "no" + }, + { + "id": "336732", + "ident": "JP-0464", + "type": "closed", + "name": "Japan Aviation Academy Chitose Airfield", + "latitude_deg": "42.779433", + "longitude_deg": "141.623211", + "elevation_ft": "180", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Chitose", + "scheduled_service": "no" + }, + { + "id": "336733", + "ident": "JP-0465", + "type": "small_airport", + "name": "Fukushima (Iizaka) Skypark", + "latitude_deg": "37.82322", + "longitude_deg": "140.38767", + "elevation_ft": "1318", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Ozaso", + "scheduled_service": "no", + "local_code": "RJFH", + "wikipedia_link": "https://ja.wikipedia.org/wiki/%E3%81%B5%E3%81%8F%E3%81%97%E3%81%BE%E3%82%B9%E3%82%AB%E3%82%A4%E3%83%91%E3%83%BC%E3%82%AF", + "keywords": "Fukushima Iizaka, Fukushima Municipal Agricultural Airfield" + }, + { + "id": "336734", + "ident": "JP-0466", + "type": "small_airport", + "name": "Betsukai Flight Park", + "latitude_deg": "43.47484", + "longitude_deg": "144.78309", + "elevation_ft": "407", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Betsukai", + "scheduled_service": "no", + "keywords": "Kenebetsu Airfield Number 1" + }, + { + "id": "336735", + "ident": "JP-0467", + "type": "small_airport", + "name": "Shirakawa Gliderport", + "latitude_deg": "32.77554", + "longitude_deg": "130.63478", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-43", + "municipality": "Kumamoto", + "scheduled_service": "no" + }, + { + "id": "336736", + "ident": "JP-0468", + "type": "small_airport", + "name": "Aso Auxiliary Airfield", + "latitude_deg": "33.00891", + "longitude_deg": "131.10005", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-43", + "municipality": "Aso", + "scheduled_service": "no" + }, + { + "id": "336737", + "ident": "JP-0469", + "type": "small_airport", + "name": "Hofu Gliderport", + "latitude_deg": "34.03937", + "longitude_deg": "131.54031", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Hofu", + "scheduled_service": "no" + }, + { + "id": "336738", + "ident": "JP-0470", + "type": "small_airport", + "name": "Nagano City Gliderport", + "latitude_deg": "36.63339", + "longitude_deg": "138.256073", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Nagano", + "scheduled_service": "no" + }, + { + "id": "336739", + "ident": "JP-0471", + "type": "small_airport", + "name": "Kirigamine Gliderport", + "latitude_deg": "36.09332", + "longitude_deg": "138.16283", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Suwa", + "scheduled_service": "no" + }, + { + "id": "336740", + "ident": "JP-0472", + "type": "small_airport", + "name": "Shinshinotsu Gliderport", + "latitude_deg": "43.2743", + "longitude_deg": "141.652436", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Iwamizawa", + "scheduled_service": "no" + }, + { + "id": "336741", + "ident": "JP-0473", + "type": "small_airport", + "name": "Toma Skypark Gliderport", + "latitude_deg": "43.87484", + "longitude_deg": "142.51119", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Toma", + "scheduled_service": "no", + "keywords": "Tohma" + }, + { + "id": "336742", + "ident": "JP-0474", + "type": "small_airport", + "name": "Biei Gliderport", + "latitude_deg": "43.53125", + "longitude_deg": "142.56389", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Biei", + "scheduled_service": "no" + }, + { + "id": "336743", + "ident": "JP-0475", + "type": "heliport", + "name": "Iwate Prefectural Chubu Hospital Helipad", + "latitude_deg": "39.33155", + "longitude_deg": "141.10576", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Kitakami", + "scheduled_service": "no" + }, + { + "id": "336744", + "ident": "JP-0476", + "type": "heliport", + "name": "Iwate Medical University Hospital Heliport", + "latitude_deg": "39.61479", + "longitude_deg": "141.16177", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Yahaba", + "scheduled_service": "no" + }, + { + "id": "336745", + "ident": "JP-0477", + "type": "heliport", + "name": "Iwate Prefectural Central Hospital Helipad", + "latitude_deg": "39.71541", + "longitude_deg": "141.14547", + "elevation_ft": "478", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Morioka", + "scheduled_service": "no" + }, + { + "id": "336746", + "ident": "JP-0478", + "type": "heliport", + "name": "Iwate Prefectural Iwai Hospital Helipad", + "latitude_deg": "38.93466", + "longitude_deg": "141.17082", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Ichinoseki", + "scheduled_service": "no" + }, + { + "id": "336747", + "ident": "JP-0479", + "type": "heliport", + "name": "Ogachi Central Hospital Helipad", + "latitude_deg": "39.14731", + "longitude_deg": "140.45374", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Yuzawa", + "scheduled_service": "no" + }, + { + "id": "336748", + "ident": "JP-0480", + "type": "heliport", + "name": "Hiraka General Hospital Helipad", + "latitude_deg": "39.31295", + "longitude_deg": "140.550929", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Yokote", + "scheduled_service": "no" + }, + { + "id": "336749", + "ident": "JP-0481", + "type": "heliport", + "name": "Akita University Hospital Heliport", + "latitude_deg": "39.729873", + "longitude_deg": "140.151075", + "elevation_ft": "87", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Akita", + "scheduled_service": "no" + }, + { + "id": "336750", + "ident": "JP-0482", + "type": "heliport", + "name": "Aichi Prefectural Police Heliport", + "latitude_deg": "35.180991", + "longitude_deg": "136.901268", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "336751", + "ident": "JP-0483", + "type": "heliport", + "name": "Tohoku Electric Power Aomori Helipad", + "latitude_deg": "40.767982", + "longitude_deg": "140.736156", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Aomori", + "scheduled_service": "no" + }, + { + "id": "336752", + "ident": "JP-0484", + "type": "small_airport", + "name": "Sengokudaira Auxiliary Airfield", + "latitude_deg": "36.10811", + "longitude_deg": "136.33646", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Eiheiji", + "scheduled_service": "no" + }, + { + "id": "336753", + "ident": "JP-0485", + "type": "heliport", + "name": "Fukuoka University Hospital Helipad", + "latitude_deg": "33.54886", + "longitude_deg": "130.36046", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Fukuoka", + "scheduled_service": "no" + }, + { + "id": "336754", + "ident": "JP-0486", + "type": "heliport", + "name": "Ohara General Hospital Helipad", + "latitude_deg": "37.75304", + "longitude_deg": "140.46927", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Fukushima", + "scheduled_service": "no" + }, + { + "id": "336755", + "ident": "JP-0487", + "type": "heliport", + "name": "Fukushima Red Cross Hospital Helipad", + "latitude_deg": "37.76895", + "longitude_deg": "140.48446", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Fukushima", + "scheduled_service": "no" + }, + { + "id": "336756", + "ident": "JP-0488", + "type": "heliport", + "name": "Gifu University Hospital Heliport", + "latitude_deg": "35.46777", + "longitude_deg": "136.7338", + "elevation_ft": "206", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Gifu", + "scheduled_service": "no" + }, + { + "id": "336757", + "ident": "JP-0489", + "type": "heliport", + "name": "Hegurajima Heliport", + "latitude_deg": "37.85202", + "longitude_deg": "136.91871", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-17", + "municipality": "Wajima", + "scheduled_service": "no" + }, + { + "id": "336758", + "ident": "JP-0490", + "type": "heliport", + "name": "Hakusan Heliport", + "latitude_deg": "36.5319", + "longitude_deg": "136.52635", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-17", + "municipality": "Hakusan", + "scheduled_service": "no" + }, + { + "id": "336759", + "ident": "JP-0491", + "type": "heliport", + "name": "Ishikawa Prefectural Central Hospital Heliport", + "latitude_deg": "36.59651", + "longitude_deg": "136.62971", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-17", + "municipality": "Kanazawa", + "scheduled_service": "no" + }, + { + "id": "336760", + "ident": "JP-0492", + "type": "heliport", + "name": "Kumamoto Prefectural Police Heliport", + "latitude_deg": "32.79039", + "longitude_deg": "130.7407", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-43", + "municipality": "Kumamoto", + "scheduled_service": "no" + }, + { + "id": "336761", + "ident": "JP-0493", + "type": "heliport", + "name": "Ise Heliport", + "latitude_deg": "34.48971", + "longitude_deg": "136.76472", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Ise", + "scheduled_service": "no" + }, + { + "id": "336762", + "ident": "JP-0494", + "type": "heliport", + "name": "Mie Heart Center Heliport", + "latitude_deg": "34.55729", + "longitude_deg": "136.65028", + "elevation_ft": "-3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Meiwa", + "scheduled_service": "no" + }, + { + "id": "336763", + "ident": "JP-0495", + "type": "heliport", + "name": "Mie Prefecture Emergency Heliport", + "latitude_deg": "34.73866", + "longitude_deg": "136.51647", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Tsu", + "scheduled_service": "no" + }, + { + "id": "336764", + "ident": "JP-0496", + "type": "heliport", + "name": "Miyazaki University Hospital Rooftop Helipad", + "latitude_deg": "31.8408", + "longitude_deg": "131.39741", + "elevation_ft": "130", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-45", + "municipality": "Miyazaki", + "scheduled_service": "no" + }, + { + "id": "336765", + "ident": "JP-0497", + "type": "heliport", + "name": "Miyazaki University Hospital Ground Helipad", + "latitude_deg": "31.83811", + "longitude_deg": "131.40229", + "elevation_ft": "112", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-45", + "municipality": "Miyazaki", + "scheduled_service": "no" + }, + { + "id": "336766", + "ident": "JP-0498", + "type": "heliport", + "name": "Nobeoka Hospital Heliport", + "latitude_deg": "32.56968", + "longitude_deg": "131.66598", + "elevation_ft": "61", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-45", + "municipality": "Nobeoka", + "scheduled_service": "no" + }, + { + "id": "336767", + "ident": "JP-0499", + "type": "heliport", + "name": "Nagano Heliport", + "latitude_deg": "36.61774", + "longitude_deg": "138.23351", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Nagano", + "scheduled_service": "no" + }, + { + "id": "336768", + "ident": "JP-0500", + "type": "heliport", + "name": "Soni Heliport", + "latitude_deg": "34.51292", + "longitude_deg": "136.12249", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-29", + "municipality": "Soni", + "scheduled_service": "no" + }, + { + "id": "336769", + "ident": "JP-0501", + "type": "heliport", + "name": "Minaminara General Medical Center Helipad", + "latitude_deg": "34.39303", + "longitude_deg": "135.75121", + "elevation_ft": "708", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-29", + "municipality": "Oyodo", + "scheduled_service": "no" + }, + { + "id": "336770", + "ident": "JP-0502", + "type": "heliport", + "name": "Oita University Hospital Heliport", + "latitude_deg": "33.20966", + "longitude_deg": "131.53373", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Yufu", + "scheduled_service": "no" + }, + { + "id": "336771", + "ident": "JP-0503", + "type": "heliport", + "name": "Beppu Medical Center Heliport", + "latitude_deg": "33.33267", + "longitude_deg": "131.48596", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Beppu", + "scheduled_service": "no" + }, + { + "id": "336772", + "ident": "JP-0504", + "type": "heliport", + "name": "Buai-so Heliport", + "latitude_deg": "33.315342", + "longitude_deg": "131.410875", + "elevation_ft": "2267", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Yufu", + "scheduled_service": "no" + }, + { + "id": "336773", + "ident": "JP-0505", + "type": "heliport", + "name": "Kanayama Harbor Heliport", + "latitude_deg": "33.24954", + "longitude_deg": "131.87203", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Oita", + "scheduled_service": "no" + }, + { + "id": "336774", + "ident": "JP-0506", + "type": "heliport", + "name": "Sekizaki Heliport", + "latitude_deg": "33.263747", + "longitude_deg": "131.881084", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Oita", + "scheduled_service": "no" + }, + { + "id": "336776", + "ident": "JP-0507", + "type": "heliport", + "name": "Anjo Kosei Hospital Rooftop Helipad", + "latitude_deg": "34.94", + "longitude_deg": "137.07829", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Anjo", + "scheduled_service": "no" + }, + { + "id": "336777", + "ident": "JP-0508", + "type": "heliport", + "name": "Anjo Kosei Hospital Ground Helipad", + "latitude_deg": "34.94124", + "longitude_deg": "137.07729", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Anjo", + "scheduled_service": "no" + }, + { + "id": "336778", + "ident": "JP-0509", + "type": "heliport", + "name": "Yamatogawa Water Park Helipad", + "latitude_deg": "34.56923", + "longitude_deg": "135.63939", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Kashiwara", + "scheduled_service": "no" + }, + { + "id": "336798", + "ident": "JP-0510", + "type": "heliport", + "name": "SolidSquare West Helipad", + "latitude_deg": "35.53547", + "longitude_deg": "139.699606", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "336799", + "ident": "JP-0511", + "type": "heliport", + "name": "SolidSquare East Helipad", + "latitude_deg": "35.535138", + "longitude_deg": "139.700185", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "336800", + "ident": "JP-0512", + "type": "heliport", + "name": "Lazona Kawasaki Central Tower Helipad", + "latitude_deg": "35.533405", + "longitude_deg": "139.698088", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "336801", + "ident": "JP-0513", + "type": "heliport", + "name": "Lazona Kawasaki Toshiba Building Helipad", + "latitude_deg": "35.532174", + "longitude_deg": "139.695062", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "336802", + "ident": "JP-0514", + "type": "heliport", + "name": "MUZA Kawasaki Helipad", + "latitude_deg": "35.531096", + "longitude_deg": "139.694617", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "336803", + "ident": "JP-0515", + "type": "heliport", + "name": "Iks Kawasaki The Tower Helipad", + "latitude_deg": "35.53086", + "longitude_deg": "139.693501", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "336804", + "ident": "JP-0516", + "type": "heliport", + "name": "Urbain Bio Kawasaki Helipad", + "latitude_deg": "35.53031", + "longitude_deg": "139.69349", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "336805", + "ident": "JP-0517", + "type": "heliport", + "name": "Ville Clair Kawasaki Tower Helipad", + "latitude_deg": "35.530375", + "longitude_deg": "139.69268", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "336806", + "ident": "JP-0518", + "type": "heliport", + "name": "Brillia Tower Kawasaki Helipad", + "latitude_deg": "35.529022", + "longitude_deg": "139.693115", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "336807", + "ident": "JP-0519", + "type": "heliport", + "name": "Kawasaki Saiwai Hospital Helipad", + "latitude_deg": "35.528468", + "longitude_deg": "139.692283", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "336808", + "ident": "JP-0520", + "type": "heliport", + "name": "Kawasaki Gate Tower Helipad", + "latitude_deg": "35.52804", + "longitude_deg": "139.692256", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "336809", + "ident": "JP-0521", + "type": "heliport", + "name": "Round-Cross Kawasaki Helipad", + "latitude_deg": "35.530471", + "longitude_deg": "139.696822", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "336810", + "ident": "JP-0522", + "type": "heliport", + "name": "Pacific Marks Kawasaki Helipad", + "latitude_deg": "35.531571", + "longitude_deg": "139.698994", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "336822", + "ident": "JP-0523", + "type": "heliport", + "name": "Tokyo Big Sight Helipad", + "latitude_deg": "35.629766", + "longitude_deg": "139.794073", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "336823", + "ident": "JP-0524", + "type": "heliport", + "name": "Grassland Square Emergency Heliport", + "latitude_deg": "35.63334", + "longitude_deg": "139.79557", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "336824", + "ident": "JP-0525", + "type": "heliport", + "name": "Tokyo Emergency Park Heliport", + "latitude_deg": "35.635966", + "longitude_deg": "139.796793", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "336825", + "ident": "JP-0526", + "type": "closed", + "name": "Shinonome Airfield", + "latitude_deg": "35.64123", + "longitude_deg": "139.79784", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "336826", + "ident": "JP-0527", + "type": "heliport", + "name": "Tochigi Medical Center Shimotsuga Helipad", + "latitude_deg": "36.365794", + "longitude_deg": "139.727007", + "elevation_ft": "230", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Tochigi", + "scheduled_service": "no" + }, + { + "id": "336842", + "ident": "JP-0528", + "type": "heliport", + "name": "Sea-Crane Helipad", + "latitude_deg": "35.507077", + "longitude_deg": "139.676855", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "336848", + "ident": "JP-0529", + "type": "heliport", + "name": "Yokohama Sky Building Helipad", + "latitude_deg": "35.464458", + "longitude_deg": "139.62452", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "336849", + "ident": "JP-0530", + "type": "heliport", + "name": "Yokohama Bay Sheraton Heliport", + "latitude_deg": "35.466704", + "longitude_deg": "139.620379", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "336850", + "ident": "JP-0531", + "type": "heliport", + "name": "Yokohama Towering Square West Helipad", + "latitude_deg": "35.459294", + "longitude_deg": "139.61502", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "336851", + "ident": "JP-0532", + "type": "heliport", + "name": "Yokohama Towering Square East Helipad", + "latitude_deg": "35.459403", + "longitude_deg": "139.615438", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "336852", + "ident": "JP-0533", + "type": "heliport", + "name": "Fukui Municipal Emergency Station Helipad", + "latitude_deg": "36.10151", + "longitude_deg": "136.18531", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Fukui", + "scheduled_service": "no" + }, + { + "id": "336853", + "ident": "JP-0534", + "type": "heliport", + "name": "Chiba Prefectural Government Heliport", + "latitude_deg": "35.604979", + "longitude_deg": "140.123282", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Chiba", + "scheduled_service": "no" + }, + { + "id": "336854", + "ident": "JP-0535", + "type": "closed", + "name": "Naruo Airfield", + "latitude_deg": "34.71098", + "longitude_deg": "135.36253", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Nishinomiya", + "scheduled_service": "no" + }, + { + "id": "336855", + "ident": "JP-0536", + "type": "heliport", + "name": "Osaka Maishima Heliport", + "latitude_deg": "34.67274", + "longitude_deg": "135.40259", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "336891", + "ident": "JP-0537", + "type": "heliport", + "name": "Yokohama Vivre Helipad", + "latitude_deg": "35.464777", + "longitude_deg": "139.617959", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "336892", + "ident": "JP-0538", + "type": "heliport", + "name": "Nissan Headquarters Helipad", + "latitude_deg": "35.463672", + "longitude_deg": "139.62629", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "336893", + "ident": "JP-0539", + "type": "heliport", + "name": "Yokohama Diamond Building Helipad", + "latitude_deg": "35.467106", + "longitude_deg": "139.626376", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "336933", + "ident": "JP-0540", + "type": "heliport", + "name": "Nabule Yokohama Tower Residence Helipad", + "latitude_deg": "35.466783", + "longitude_deg": "139.627401", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "336934", + "ident": "JP-0541", + "type": "heliport", + "name": "Park Tower Yokohama Portside Helipad", + "latitude_deg": "35.467888", + "longitude_deg": "139.62776", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "336935", + "ident": "JP-0542", + "type": "heliport", + "name": "Arte Yokohama Helipad", + "latitude_deg": "35.468063", + "longitude_deg": "139.631928", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "336936", + "ident": "JP-0543", + "type": "heliport", + "name": "Mitsubishi Heavy Industries Portside Building Helipad", + "latitude_deg": "35.467809", + "longitude_deg": "139.631016", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "336939", + "ident": "JP-0544", + "type": "heliport", + "name": "Shibukawa Medical Center Helipad", + "latitude_deg": "36.51032", + "longitude_deg": "139.01827", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Shibukawa", + "scheduled_service": "no" + }, + { + "id": "337070", + "ident": "JP-0545", + "type": "heliport", + "name": "Yokohama Towers West Helipad", + "latitude_deg": "35.4686", + "longitude_deg": "139.630855", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "337071", + "ident": "JP-0546", + "type": "heliport", + "name": "Yokohama Towers East Helipad", + "latitude_deg": "35.469011", + "longitude_deg": "139.631676", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "337072", + "ident": "JP-0547", + "type": "heliport", + "name": "Rohm Helipad", + "latitude_deg": "35.508518", + "longitude_deg": "139.615899", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "337073", + "ident": "JP-0548", + "type": "heliport", + "name": "Shin-Yokohama Square Heliport", + "latitude_deg": "35.507789", + "longitude_deg": "139.615288", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "337074", + "ident": "JP-0549", + "type": "heliport", + "name": "Tomozumi Shin-Yokohama 1-chome Building Helipad", + "latitude_deg": "35.50617", + "longitude_deg": "139.6153", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "337075", + "ident": "JP-0550", + "type": "heliport", + "name": "Cubic Plaza Shin-Yokohama Helipad", + "latitude_deg": "35.507715", + "longitude_deg": "139.617369", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "337309", + "ident": "JP-0551", + "type": "heliport", + "name": "Japan Red Cross Musashino Hospital Helipad", + "latitude_deg": "35.696402", + "longitude_deg": "139.548376", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Musashino", + "scheduled_service": "no" + }, + { + "id": "337310", + "ident": "JP-0552", + "type": "heliport", + "name": "Kawasaki Ekimae Tower Rebark Helipad", + "latitude_deg": "35.5321", + "longitude_deg": "139.69864", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "337505", + "ident": "JP-0553", + "type": "heliport", + "name": "Atre Kawasaki Helipad", + "latitude_deg": "35.53148", + "longitude_deg": "139.69781", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "337511", + "ident": "JP-0554", + "type": "heliport", + "name": "Clie Kawasaki Helipad", + "latitude_deg": "35.53196", + "longitude_deg": "139.6996", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "337512", + "ident": "JP-0555", + "type": "heliport", + "name": "Dice Helipad", + "latitude_deg": "35.531239", + "longitude_deg": "139.700175", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "337516", + "ident": "JP-0556", + "type": "heliport", + "name": "Nittochi Kawasaki Building Helipad", + "latitude_deg": "35.530227", + "longitude_deg": "139.701927", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "337517", + "ident": "JP-0557", + "type": "heliport", + "name": "Rurier Kawasaki Ekimae Building Helipad", + "latitude_deg": "35.529626", + "longitude_deg": "139.701269", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "337518", + "ident": "JP-0558", + "type": "heliport", + "name": "Pareil Mitsui Blue Building Helipad", + "latitude_deg": "35.529692", + "longitude_deg": "139.704038", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "337519", + "ident": "JP-0559", + "type": "heliport", + "name": "Brillia Ariake Sky Tower Helipad", + "latitude_deg": "35.63656", + "longitude_deg": "139.78635", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337520", + "ident": "JP-0560", + "type": "heliport", + "name": "Brillia Mare Ariake Tower and Garden Helipad", + "latitude_deg": "35.637209", + "longitude_deg": "139.787677", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337521", + "ident": "JP-0561", + "type": "heliport", + "name": "Horizon Mare Helipad", + "latitude_deg": "35.639274", + "longitude_deg": "139.791557", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337522", + "ident": "JP-0562", + "type": "heliport", + "name": "Galleria Grande Helipad", + "latitude_deg": "35.641673", + "longitude_deg": "139.79529", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337523", + "ident": "JP-0563", + "type": "heliport", + "name": "City Tower Ariake Helipad", + "latitude_deg": "35.64236", + "longitude_deg": "139.796012", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337524", + "ident": "JP-0564", + "type": "heliport", + "name": "Proud Tower Shinonome Canal Court Helipad", + "latitude_deg": "35.649602", + "longitude_deg": "139.804733", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337525", + "ident": "JP-0565", + "type": "heliport", + "name": "Beacon Tower Residence Helipad", + "latitude_deg": "35.648523", + "longitude_deg": "139.804743", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337526", + "ident": "JP-0566", + "type": "heliport", + "name": "Canal First Tower Helipad", + "latitude_deg": "35.647351", + "longitude_deg": "139.805163", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337527", + "ident": "JP-0567", + "type": "heliport", + "name": "Apple Tower Tokyo Canal Court Helipad", + "latitude_deg": "35.64661", + "longitude_deg": "139.805122", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337528", + "ident": "JP-0568", + "type": "heliport", + "name": "W Comfort Towers East Helipad", + "latitude_deg": "35.645388", + "longitude_deg": "139.805115", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337529", + "ident": "JP-0569", + "type": "heliport", + "name": "W Comfort Towers West Helipad", + "latitude_deg": "35.645084", + "longitude_deg": "139.803885", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337530", + "ident": "JP-0570", + "type": "heliport", + "name": "Park Tower Shinonome Helipad", + "latitude_deg": "35.645243", + "longitude_deg": "139.802505", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337531", + "ident": "JP-0571", + "type": "heliport", + "name": "Tomin Tower Shinonome Helipad", + "latitude_deg": "35.643563", + "longitude_deg": "139.80533", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337532", + "ident": "JP-0572", + "type": "heliport", + "name": "Tomin Shinonome Tower 2 Helipad", + "latitude_deg": "35.642847", + "longitude_deg": "139.80568", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337533", + "ident": "JP-0573", + "type": "heliport", + "name": "Wangan Tower Rex Garden Helipad", + "latitude_deg": "35.642368", + "longitude_deg": "139.801977", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337534", + "ident": "JP-0574", + "type": "heliport", + "name": "City Towers Tokyo Bay East Helipad", + "latitude_deg": "35.638041", + "longitude_deg": "139.794936", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337535", + "ident": "JP-0575", + "type": "heliport", + "name": "City Towers Tokyo Bay West Helipad", + "latitude_deg": "35.636782", + "longitude_deg": "139.792756", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337536", + "ident": "JP-0576", + "type": "heliport", + "name": "JFCR Cancer Institute Hospital Helipad", + "latitude_deg": "35.634322", + "longitude_deg": "139.794958", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337537", + "ident": "JP-0577", + "type": "heliport", + "name": "Ariake Central Tower Helipad", + "latitude_deg": "35.632129", + "longitude_deg": "139.793573", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337538", + "ident": "JP-0578", + "type": "heliport", + "name": "Ariake Park Building Helipad", + "latitude_deg": "35.632353", + "longitude_deg": "139.792805", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337539", + "ident": "JP-0579", + "type": "heliport", + "name": "Frontier Building Helipad", + "latitude_deg": "35.631644", + "longitude_deg": "139.791569", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337540", + "ident": "JP-0580", + "type": "heliport", + "name": "Sotetsu Grand Fresa Tokyo-Bay Ariake Helipad", + "latitude_deg": "35.632047", + "longitude_deg": "139.78945", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337541", + "ident": "JP-0581", + "type": "heliport", + "name": "TOC Ariake East Tower Helipad", + "latitude_deg": "35.632577", + "longitude_deg": "139.788522", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337542", + "ident": "JP-0582", + "type": "heliport", + "name": "TOC Ariake West Tower Helipad", + "latitude_deg": "35.632077", + "longitude_deg": "139.787614", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337543", + "ident": "JP-0583", + "type": "heliport", + "name": "Tokyo Baycourt Club Hotel & Spa Resort Helipad", + "latitude_deg": "35.628942", + "longitude_deg": "139.786802", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337544", + "ident": "JP-0584", + "type": "heliport", + "name": "Daiwa Roynet Hotel Tokyo Ariake Helipad", + "latitude_deg": "35.634065", + "longitude_deg": "139.792852", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337545", + "ident": "JP-0585", + "type": "heliport", + "name": "Toyosu Center Building Helipad", + "latitude_deg": "35.655884", + "longitude_deg": "139.796295", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337546", + "ident": "JP-0586", + "type": "heliport", + "name": "Toyosu Front Helipad", + "latitude_deg": "35.656944", + "longitude_deg": "139.795796", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337547", + "ident": "JP-0587", + "type": "heliport", + "name": "Toyosu Center Building Annex Helipad", + "latitude_deg": "35.655902", + "longitude_deg": "139.797172", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337548", + "ident": "JP-0588", + "type": "heliport", + "name": "Toyosu Foresia Helipad", + "latitude_deg": "35.657456", + "longitude_deg": "139.79458", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337549", + "ident": "JP-0589", + "type": "heliport", + "name": "Toyosu Cubic Garden Helipad", + "latitude_deg": "35.658311", + "longitude_deg": "139.794311", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337550", + "ident": "JP-0590", + "type": "heliport", + "name": "Toyosu IHI Building Helipad", + "latitude_deg": "35.658956", + "longitude_deg": "139.793347", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337595", + "ident": "JP-0591", + "type": "small_airport", + "name": "Juo Airfield", + "latitude_deg": "36.666323", + "longitude_deg": "140.66923", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Hitachi", + "scheduled_service": "no" + }, + { + "id": "337596", + "ident": "JP-0592", + "type": "small_airport", + "name": "Tokai Paraplane Airstrip", + "latitude_deg": "35.33082", + "longitude_deg": "137.34719", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Ena", + "scheduled_service": "no" + }, + { + "id": "337597", + "ident": "JP-0593", + "type": "heliport", + "name": "Nakatsugawa Heliport", + "latitude_deg": "35.4594", + "longitude_deg": "137.46551", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Nakatsugawa", + "scheduled_service": "no" + }, + { + "id": "337598", + "ident": "JP-0594", + "type": "closed", + "name": "Onahama Helipad", + "latitude_deg": "36.977341", + "longitude_deg": "140.946972", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Iwaki", + "scheduled_service": "no" + }, + { + "id": "337599", + "ident": "JP-0595", + "type": "heliport", + "name": "Tohoku Denryoku Iwaki Helipad", + "latitude_deg": "37.08965", + "longitude_deg": "140.95129", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Iwaki", + "scheduled_service": "no" + }, + { + "id": "337600", + "ident": "JP-0596", + "type": "small_airport", + "name": "Fukushima Robot Test Field Minamisoma Runway", + "latitude_deg": "37.632442", + "longitude_deg": "141.008363", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Minamisoma", + "scheduled_service": "no" + }, + { + "id": "337601", + "ident": "JP-0597", + "type": "small_airport", + "name": "Fukushima Robot Test Field Namie Runway", + "latitude_deg": "37.50672", + "longitude_deg": "141.032", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Namie", + "scheduled_service": "no" + }, + { + "id": "337604", + "ident": "JP-0598", + "type": "small_airport", + "name": "Rifu Morigo Auxiliary Airfield", + "latitude_deg": "38.35937", + "longitude_deg": "140.98477", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Rifu", + "scheduled_service": "no" + }, + { + "id": "337605", + "ident": "JP-0599", + "type": "small_airport", + "name": "Abukuma Flying Club Airstrip", + "latitude_deg": "37.86812", + "longitude_deg": "140.604283", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Date", + "scheduled_service": "no" + }, + { + "id": "337606", + "ident": "JP-0600", + "type": "small_airport", + "name": "Shirataka Aero Park / Mutsumi Airfield", + "latitude_deg": "38.16359", + "longitude_deg": "140.0619", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Shirataka", + "scheduled_service": "no" + }, + { + "id": "337607", + "ident": "JP-0601", + "type": "small_airport", + "name": "Inazawa Auxiliary Microlight Airport", + "latitude_deg": "39.6158", + "longitude_deg": "140.40957", + "elevation_ft": "381", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Daisen", + "scheduled_service": "no" + }, + { + "id": "337608", + "ident": "JP-0602", + "type": "small_airport", + "name": "Arakawa Airstrip", + "latitude_deg": "40.370013", + "longitude_deg": "140.735114", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Kosaka", + "scheduled_service": "no", + "keywords": "Kosaka Airstrip" + }, + { + "id": "337609", + "ident": "JP-0603", + "type": "heliport", + "name": "Kozushima Heliport", + "latitude_deg": "34.198812", + "longitude_deg": "139.126793", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Kozushima", + "scheduled_service": "no" + }, + { + "id": "337669", + "ident": "JP-0604", + "type": "heliport", + "name": "Perie Chiba Helipad", + "latitude_deg": "35.6131", + "longitude_deg": "140.11384", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Chiba", + "scheduled_service": "no" + }, + { + "id": "337690", + "ident": "JP-0605", + "type": "heliport", + "name": "Monnyu Helipad", + "latitude_deg": "35.67461", + "longitude_deg": "136.38466", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Ibigawa", + "scheduled_service": "no" + }, + { + "id": "337691", + "ident": "JP-0606", + "type": "heliport", + "name": "Nagoya Tokushukai Hospital Helipad", + "latitude_deg": "35.26509", + "longitude_deg": "137.03985", + "elevation_ft": "274", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "337698", + "ident": "JP-0607", + "type": "heliport", + "name": "Sato Memorial Hospital Helipad", + "latitude_deg": "35.02808", + "longitude_deg": "134.12759", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Mimasaka", + "scheduled_service": "no" + }, + { + "id": "337701", + "ident": "JP-0608", + "type": "heliport", + "name": "City Towers Toyosu The Symbol Helipad", + "latitude_deg": "35.659864", + "longitude_deg": "139.796406", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337702", + "ident": "JP-0609", + "type": "heliport", + "name": "Portside Place Helipad", + "latitude_deg": "35.467149", + "longitude_deg": "139.629211", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "337704", + "ident": "JP-0610", + "type": "closed", + "name": "Taisho Army Airfield", + "latitude_deg": "34.59867", + "longitude_deg": "135.58161", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Yao", + "scheduled_service": "no" + }, + { + "id": "337707", + "ident": "JP-0611", + "type": "closed", + "name": "Yokaichi Airfield", + "latitude_deg": "35.093062", + "longitude_deg": "136.209621", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Higashiomi", + "scheduled_service": "no" + }, + { + "id": "337709", + "ident": "JP-0612", + "type": "heliport", + "name": "Tokuyama Helipad", + "latitude_deg": "35.69095", + "longitude_deg": "136.48522", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Ibigawa", + "scheduled_service": "no" + }, + { + "id": "337710", + "ident": "JP-0613", + "type": "heliport", + "name": "Chichibu Seichi Park Helipad", + "latitude_deg": "36.0075", + "longitude_deg": "139.0984", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Chichibu", + "scheduled_service": "no" + }, + { + "id": "337711", + "ident": "JP-0614", + "type": "heliport", + "name": "Toyota Kosei Hospital Helipad", + "latitude_deg": "35.12008", + "longitude_deg": "137.13404", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyota", + "scheduled_service": "no" + }, + { + "id": "337712", + "ident": "JP-0615", + "type": "heliport", + "name": "Saigaitokimochi Helipad", + "latitude_deg": "35.6328", + "longitude_deg": "136.61277", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Motosu", + "scheduled_service": "no" + }, + { + "id": "337713", + "ident": "JP-0616", + "type": "heliport", + "name": "Ryogami Helipad", + "latitude_deg": "36.00357", + "longitude_deg": "138.97688", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Ogano", + "scheduled_service": "no" + }, + { + "id": "337714", + "ident": "JP-0617", + "type": "heliport", + "name": "Takanotsuji Helipad", + "latitude_deg": "34.17235", + "longitude_deg": "135.79485", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-29", + "municipality": "Gojo", + "scheduled_service": "no" + }, + { + "id": "337720", + "ident": "JP-0618", + "type": "heliport", + "name": "North Kanto Junkanki Hospital Helipad", + "latitude_deg": "36.45582", + "longitude_deg": "139.04995", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Shibukawa", + "scheduled_service": "no" + }, + { + "id": "337721", + "ident": "JP-0619", + "type": "heliport", + "name": "Isesaki Municipal Hospital Helipad", + "latitude_deg": "36.32356", + "longitude_deg": "139.17838", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Isesaki", + "scheduled_service": "no" + }, + { + "id": "337722", + "ident": "JP-0620", + "type": "heliport", + "name": "Otakashima Helipad", + "latitude_deg": "36.19155", + "longitude_deg": "139.62432", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kazo", + "scheduled_service": "no" + }, + { + "id": "337723", + "ident": "JP-0621", + "type": "heliport", + "name": "Kazo Helipark", + "latitude_deg": "36.18105", + "longitude_deg": "139.61476", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kazo", + "scheduled_service": "no" + }, + { + "id": "337724", + "ident": "JP-0622", + "type": "heliport", + "name": "Shinkawadori Helipad", + "latitude_deg": "36.1644", + "longitude_deg": "139.66711", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kazo", + "scheduled_service": "no" + }, + { + "id": "337764", + "ident": "JP-0623", + "type": "small_airport", + "name": "Niikappu Auxiliary Airfield", + "latitude_deg": "42.46307", + "longitude_deg": "142.45426", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Niikappu", + "scheduled_service": "no" + }, + { + "id": "337765", + "ident": "JP-0624", + "type": "closed", + "name": "Kawakita Airfield", + "latitude_deg": "43.68122", + "longitude_deg": "145.04861", + "elevation_ft": "144", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Shibetsu", + "scheduled_service": "no" + }, + { + "id": "337771", + "ident": "JP-0625", + "type": "closed", + "name": "Makinouchi Airfield", + "latitude_deg": "43.3617", + "longitude_deg": "145.64882", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Nemuro", + "scheduled_service": "no" + }, + { + "id": "337772", + "ident": "JP-0626", + "type": "small_airport", + "name": "Bihoro Air Park", + "latitude_deg": "43.81589", + "longitude_deg": "144.07879", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Bihoro", + "scheduled_service": "no" + }, + { + "id": "337906", + "ident": "JP-0627", + "type": "heliport", + "name": "Toyosu Tower Helipad", + "latitude_deg": "35.659179", + "longitude_deg": "139.797206", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337916", + "ident": "JP-0628", + "type": "heliport", + "name": "City Towers Toyosu Twin North Tower Helipad", + "latitude_deg": "35.657829", + "longitude_deg": "139.798822", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337917", + "ident": "JP-0629", + "type": "heliport", + "name": "City Towers Toyosu Twin South Tower Helipad", + "latitude_deg": "35.65727", + "longitude_deg": "139.799405", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337918", + "ident": "JP-0630", + "type": "closed", + "name": "Iwo Jima North Field", + "latitude_deg": "24.793666", + "longitude_deg": "141.324612", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Ogasawara", + "scheduled_service": "no" + }, + { + "id": "337919", + "ident": "JP-0631", + "type": "closed", + "name": "Iwo Jima South Field", + "latitude_deg": "24.762778", + "longitude_deg": "141.303611", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Ogasawara", + "scheduled_service": "no" + }, + { + "id": "337938", + "ident": "JP-0632", + "type": "heliport", + "name": "Tochigi Prefecture Fire Academy Helipad", + "latitude_deg": "36.67566", + "longitude_deg": "139.90432", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Utsunomiya", + "scheduled_service": "no" + }, + { + "id": "337939", + "ident": "JP-0633", + "type": "closed", + "name": "Uzurano Airfield", + "latitude_deg": "34.89058", + "longitude_deg": "134.86636", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kasai", + "scheduled_service": "no" + }, + { + "id": "337940", + "ident": "JP-0634", + "type": "small_airport", + "name": "JGSDF Shinodayama Airfield", + "latitude_deg": "34.49568", + "longitude_deg": "135.46242", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Izumi", + "scheduled_service": "no" + }, + { + "id": "337941", + "ident": "JP-0635", + "type": "small_airport", + "name": "JGSDF Aonogahara East Airstrip", + "latitude_deg": "34.89599", + "longitude_deg": "134.90918", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Ono", + "scheduled_service": "no" + }, + { + "id": "337942", + "ident": "JP-0636", + "type": "small_airport", + "name": "JGSDF Aonogahara West Airstrip", + "latitude_deg": "34.892392", + "longitude_deg": "134.904728", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Ono", + "scheduled_service": "no" + }, + { + "id": "337943", + "ident": "JP-0637", + "type": "heliport", + "name": "JGSDF Aibano Stagefield Heliport", + "latitude_deg": "35.38362", + "longitude_deg": "135.98443", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Takashima", + "scheduled_service": "no" + }, + { + "id": "337944", + "ident": "JP-0638", + "type": "small_airport", + "name": "Kisarazu Nakajima Auxiliary Airfield / Kisarazu Heliport", + "latitude_deg": "35.42106", + "longitude_deg": "139.91993", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Kisarazu", + "scheduled_service": "no" + }, + { + "id": "337948", + "ident": "JP-0639", + "type": "heliport", + "name": "Lions Tower Tsukishima Helipad", + "latitude_deg": "35.666137", + "longitude_deg": "139.784482", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337949", + "ident": "JP-0640", + "type": "heliport", + "name": "Sakanoshita Helipad", + "latitude_deg": "35.30403", + "longitude_deg": "139.53001", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kamakura", + "scheduled_service": "no" + }, + { + "id": "337950", + "ident": "JP-0641", + "type": "heliport", + "name": "Nippon Medical School Chiba Hokuso Hospital Heliport", + "latitude_deg": "35.77986", + "longitude_deg": "140.19703", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Inzai", + "scheduled_service": "no" + }, + { + "id": "337951", + "ident": "JP-0642", + "type": "heliport", + "name": "King Fields Golf Club Heliport", + "latitude_deg": "35.44068", + "longitude_deg": "140.17296", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Ichihara", + "scheduled_service": "no" + }, + { + "id": "337952", + "ident": "JP-0643", + "type": "heliport", + "name": "Chiba City Fire Department Heliport", + "latitude_deg": "35.54649", + "longitude_deg": "140.24283", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Chiba", + "scheduled_service": "no" + }, + { + "id": "337953", + "ident": "JP-0644", + "type": "heliport", + "name": "Kimitsu Central Hospital Helipad", + "latitude_deg": "35.35995", + "longitude_deg": "139.92288", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Kisarazu", + "scheduled_service": "no" + }, + { + "id": "337954", + "ident": "JP-0645", + "type": "heliport", + "name": "Chiba West General Hospital Helipad", + "latitude_deg": "35.803522", + "longitude_deg": "139.944717", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Matsudo", + "scheduled_service": "no" + }, + { + "id": "337955", + "ident": "JP-0646", + "type": "heliport", + "name": "Horin Country Club Helipad", + "latitude_deg": "35.3106", + "longitude_deg": "140.19259", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Ichihara", + "scheduled_service": "no" + }, + { + "id": "337958", + "ident": "JP-0647", + "type": "heliport", + "name": "Fujioshino Helipad", + "latitude_deg": "35.46529", + "longitude_deg": "138.84147", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Oshino", + "scheduled_service": "no" + }, + { + "id": "337959", + "ident": "JP-0648", + "type": "small_airport", + "name": "Oshino Sky Sports Club", + "latitude_deg": "35.4651", + "longitude_deg": "138.86428", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Oshino", + "scheduled_service": "no" + }, + { + "id": "337960", + "ident": "JP-0649", + "type": "heliport", + "name": "Fuji Speedway Heliport", + "latitude_deg": "35.36776", + "longitude_deg": "138.91837", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Oyama", + "scheduled_service": "no" + }, + { + "id": "337961", + "ident": "JP-0650", + "type": "heliport", + "name": "Fuji Speedway Emergency Heliport", + "latitude_deg": "35.369647", + "longitude_deg": "138.924129", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Oyama", + "scheduled_service": "no" + }, + { + "id": "337966", + "ident": "JP-0651", + "type": "heliport", + "name": "Makinohara Fire Department Helipad", + "latitude_deg": "34.68413", + "longitude_deg": "138.18961", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Makinohara", + "scheduled_service": "no" + }, + { + "id": "337968", + "ident": "JP-0652", + "type": "heliport", + "name": "Aichi Children's Health and Medical Center Heliport", + "latitude_deg": "34.99809", + "longitude_deg": "136.95318", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Obu", + "scheduled_service": "no" + }, + { + "id": "337995", + "ident": "JP-0653", + "type": "heliport", + "name": "Tokushima Miyoshi Municipal Hospital Helipad", + "latitude_deg": "34.02898", + "longitude_deg": "133.81757", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-36", + "municipality": "Miyoshi", + "scheduled_service": "no" + }, + { + "id": "337996", + "ident": "JP-0654", + "type": "heliport", + "name": "Nichinan Helipad", + "latitude_deg": "35.15567", + "longitude_deg": "133.325261", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Nichinan", + "scheduled_service": "no" + }, + { + "id": "337997", + "ident": "JP-0655", + "type": "heliport", + "name": "Yasugamori Campground Helipad", + "latitude_deg": "36.98523", + "longitude_deg": "139.59862", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Nikko", + "scheduled_service": "no" + }, + { + "id": "337998", + "ident": "JP-0656", + "type": "heliport", + "name": "Asahi Shinbun Helipad", + "latitude_deg": "35.66411", + "longitude_deg": "139.76658", + "elevation_ft": "1", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "337999", + "ident": "JP-0657", + "type": "heliport", + "name": "Senri Asahi Hankyu Building Helipad", + "latitude_deg": "34.807809", + "longitude_deg": "135.496101", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Toyonaka", + "scheduled_service": "no" + }, + { + "id": "338000", + "ident": "JP-0658", + "type": "heliport", + "name": "Asahi Central General Hospital Ground Helipad", + "latitude_deg": "35.71825", + "longitude_deg": "140.66621", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Asahi", + "scheduled_service": "no" + }, + { + "id": "338001", + "ident": "JP-0659", + "type": "heliport", + "name": "Asahi Central General Hospital Rooftop Helipad", + "latitude_deg": "35.717746", + "longitude_deg": "140.663559", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Asahi", + "scheduled_service": "no" + }, + { + "id": "338012", + "ident": "JP-0660", + "type": "heliport", + "name": "Toyota Headquarters Helipad", + "latitude_deg": "35.05547", + "longitude_deg": "137.15989", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyota", + "scheduled_service": "no" + }, + { + "id": "338013", + "ident": "JP-0661", + "type": "heliport", + "name": "Fujioka Helipad", + "latitude_deg": "35.17857", + "longitude_deg": "137.20054", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyota", + "scheduled_service": "no" + }, + { + "id": "338014", + "ident": "JP-0662", + "type": "heliport", + "name": "Oku-Mikawa Sogo Center Heliport", + "latitude_deg": "35.09441", + "longitude_deg": "137.57579", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Shitara", + "scheduled_service": "no" + }, + { + "id": "338015", + "ident": "JP-0663", + "type": "heliport", + "name": "Toei Heliport", + "latitude_deg": "35.07907", + "longitude_deg": "137.69511", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toei", + "scheduled_service": "no" + }, + { + "id": "338092", + "ident": "JP-0664", + "type": "heliport", + "name": "Misato Heliport", + "latitude_deg": "35.06996", + "longitude_deg": "132.59484", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Misato", + "scheduled_service": "no" + }, + { + "id": "338093", + "ident": "JP-0665", + "type": "heliport", + "name": "Akitakata Fire Heliport", + "latitude_deg": "34.67033", + "longitude_deg": "132.69265", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Akitakata", + "scheduled_service": "no", + "home_link": "https://www.akitakata.jp/ja/shisei/section/119/shoubouchousha/u452/" + }, + { + "id": "338094", + "ident": "JP-0666", + "type": "heliport", + "name": "Kasagatake Heliport", + "latitude_deg": "36.6739", + "longitude_deg": "138.47791", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Takayama", + "scheduled_service": "no" + }, + { + "id": "338095", + "ident": "JP-0667", + "type": "heliport", + "name": "Hamada Medical Center Helipad", + "latitude_deg": "34.90366", + "longitude_deg": "132.08717", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Hamada", + "scheduled_service": "no" + }, + { + "id": "338096", + "ident": "JP-0668", + "type": "heliport", + "name": "Ohchi Hospital Helipad", + "latitude_deg": "34.89629", + "longitude_deg": "132.45394", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Onan", + "scheduled_service": "no" + }, + { + "id": "338174", + "ident": "JP-0669", + "type": "heliport", + "name": "Fukuya Hiroshima Helipad", + "latitude_deg": "34.396504", + "longitude_deg": "132.473332", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "338175", + "ident": "JP-0670", + "type": "heliport", + "name": "City Tower Hiroshima Helipad", + "latitude_deg": "34.395875", + "longitude_deg": "132.475097", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "338176", + "ident": "JP-0671", + "type": "heliport", + "name": "Grand Cross Tower Hiroshima Helipad", + "latitude_deg": "34.395543", + "longitude_deg": "132.477297", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "338177", + "ident": "JP-0672", + "type": "heliport", + "name": "Okuizumo Heliport", + "latitude_deg": "35.19308", + "longitude_deg": "132.99648", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Okuizumo", + "scheduled_service": "no" + }, + { + "id": "338178", + "ident": "JP-0673", + "type": "heliport", + "name": "Hiroshima International University Helipad", + "latitude_deg": "34.396353", + "longitude_deg": "132.468225", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "338181", + "ident": "JP-0674", + "type": "heliport", + "name": "Higashihiroshima Medical Center Helipad", + "latitude_deg": "34.4478", + "longitude_deg": "132.72376", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Higashihiroshima", + "scheduled_service": "no" + }, + { + "id": "338182", + "ident": "JP-0675", + "type": "heliport", + "name": "Higashitanaka Helipad", + "latitude_deg": "35.28748", + "longitude_deg": "138.95313", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Gotenba", + "scheduled_service": "no" + }, + { + "id": "338183", + "ident": "JP-0676", + "type": "heliport", + "name": "Hitotsuya West Heliport", + "latitude_deg": "34.75561", + "longitude_deg": "135.55976", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Settsu", + "scheduled_service": "no" + }, + { + "id": "338184", + "ident": "JP-0677", + "type": "heliport", + "name": "Hitotsuya East Heliport", + "latitude_deg": "34.756387", + "longitude_deg": "135.561081", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Settsu", + "scheduled_service": "no" + }, + { + "id": "338185", + "ident": "JP-0678", + "type": "heliport", + "name": "Suita Tokushukai Hospital Helipad", + "latitude_deg": "34.79735", + "longitude_deg": "135.54189", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Suita", + "scheduled_service": "no" + }, + { + "id": "338186", + "ident": "JP-0679", + "type": "heliport", + "name": "Osaka University Hospital Helipad", + "latitude_deg": "34.81885", + "longitude_deg": "135.52824", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Suita", + "scheduled_service": "no", + "keywords": "Handai Hospital" + }, + { + "id": "338187", + "ident": "JP-0680", + "type": "heliport", + "name": "Senri Tower Helipad", + "latitude_deg": "34.811244", + "longitude_deg": "135.494492", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Toyonaka", + "scheduled_service": "no" + }, + { + "id": "338188", + "ident": "JP-0681", + "type": "heliport", + "name": "Seirei Mikatahara General Hospital Helipad", + "latitude_deg": "34.79248", + "longitude_deg": "137.69036", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Hamamatsu", + "scheduled_service": "no" + }, + { + "id": "338189", + "ident": "JP-0682", + "type": "heliport", + "name": "E Stage Hamamatsu Tower Helipad", + "latitude_deg": "34.711645", + "longitude_deg": "137.734898", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Hamamatsu", + "scheduled_service": "no" + }, + { + "id": "338190", + "ident": "JP-0683", + "type": "heliport", + "name": "Hamamatsu Medical Center Helipad", + "latitude_deg": "34.71595", + "longitude_deg": "137.70078", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Hamamatsu", + "scheduled_service": "no" + }, + { + "id": "338191", + "ident": "JP-0684", + "type": "heliport", + "name": "Japan Red Cross Hamamatsu Hospital Helipad", + "latitude_deg": "34.80526", + "longitude_deg": "137.78928", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Hamamatsu", + "scheduled_service": "no" + }, + { + "id": "338192", + "ident": "JP-0685", + "type": "heliport", + "name": "Haibara General Hospital Helipad", + "latitude_deg": "34.75549", + "longitude_deg": "138.23781", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Makinohara", + "scheduled_service": "no" + }, + { + "id": "338193", + "ident": "JP-0686", + "type": "heliport", + "name": "Fujieda Municipal General Hospital Helipad", + "latitude_deg": "34.86183", + "longitude_deg": "138.22919", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Fujieda", + "scheduled_service": "no" + }, + { + "id": "338194", + "ident": "JP-0687", + "type": "heliport", + "name": "Fujieda PA Inbound Helipad", + "latitude_deg": "34.9011", + "longitude_deg": "138.24404", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Fujieda", + "scheduled_service": "no" + }, + { + "id": "338195", + "ident": "JP-0688", + "type": "heliport", + "name": "Fujieda PA Outbound Helipad", + "latitude_deg": "34.89153", + "longitude_deg": "138.23177", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Fujieda", + "scheduled_service": "no" + }, + { + "id": "338196", + "ident": "JP-0689", + "type": "heliport", + "name": "Yaizu Heliport", + "latitude_deg": "34.83845", + "longitude_deg": "138.30424", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Yaizu", + "scheduled_service": "no" + }, + { + "id": "338199", + "ident": "JP-0690", + "type": "small_airport", + "name": "Fukuda Nishidai Airfield", + "latitude_deg": "34.50577", + "longitude_deg": "131.59634", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Abu", + "scheduled_service": "no" + }, + { + "id": "338231", + "ident": "JP-0691", + "type": "heliport", + "name": "River City 21 East Tower II Helipad", + "latitude_deg": "35.669752", + "longitude_deg": "139.786204", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338232", + "ident": "JP-0692", + "type": "heliport", + "name": "River City 21 Park Tower Helipad", + "latitude_deg": "35.670502", + "longitude_deg": "139.785726", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338233", + "ident": "JP-0693", + "type": "heliport", + "name": "Sky Light Tower Helipad", + "latitude_deg": "35.670145", + "longitude_deg": "139.784337", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338234", + "ident": "JP-0694", + "type": "heliport", + "name": "City Front Tower Helipad", + "latitude_deg": "35.669352", + "longitude_deg": "139.784326", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338235", + "ident": "JP-0695", + "type": "heliport", + "name": "The Crest Tower Helipad", + "latitude_deg": "35.666968", + "longitude_deg": "139.785603", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338236", + "ident": "JP-0696", + "type": "heliport", + "name": "Famille Tsukishima Grand Suite Tower Helipad", + "latitude_deg": "35.665377", + "longitude_deg": "139.785662", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338237", + "ident": "JP-0697", + "type": "heliport", + "name": "River City 21 Shinkawa Helipad", + "latitude_deg": "35.673047", + "longitude_deg": "139.783945", + "elevation_ft": "488", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338238", + "ident": "JP-0698", + "type": "heliport", + "name": "Shibusawa City Place Eitai Helipad", + "latitude_deg": "35.674664", + "longitude_deg": "139.791579", + "elevation_ft": "343", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338239", + "ident": "JP-0699", + "type": "heliport", + "name": "Shibaura Island Grove Tower Helipad", + "latitude_deg": "35.640784", + "longitude_deg": "139.75141", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338240", + "ident": "JP-0700", + "type": "heliport", + "name": "Shibaura Island Air Tower Helipad", + "latitude_deg": "35.641285", + "longitude_deg": "139.752338", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338241", + "ident": "JP-0701", + "type": "heliport", + "name": "Shibaura Island Bloom Tower Helipad", + "latitude_deg": "35.640003", + "longitude_deg": "139.752021", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338242", + "ident": "JP-0702", + "type": "heliport", + "name": "Shibaura Island Cape Tower Helipad", + "latitude_deg": "35.637231", + "longitude_deg": "139.750187", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338243", + "ident": "JP-0703", + "type": "heliport", + "name": "Barque Helipad", + "latitude_deg": "35.645361", + "longitude_deg": "139.758786", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338244", + "ident": "JP-0704", + "type": "heliport", + "name": "Ovest Utsunomiya Tower Helipad", + "latitude_deg": "36.557481", + "longitude_deg": "139.897129", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Utsunomiya", + "scheduled_service": "no" + }, + { + "id": "338245", + "ident": "JP-0705", + "type": "heliport", + "name": "Dokkyo Medical University Hospital Helipad", + "latitude_deg": "36.47146", + "longitude_deg": "139.82677", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Mibu", + "scheduled_service": "no" + }, + { + "id": "338246", + "ident": "JP-0706", + "type": "heliport", + "name": "Saiseikai Utsunomiya Hospital Heliport", + "latitude_deg": "36.5794", + "longitude_deg": "139.89613", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Utsunomiya", + "scheduled_service": "no" + }, + { + "id": "338247", + "ident": "JP-0707", + "type": "small_airport", + "name": "Utsunomiya Auxiliary Airfield", + "latitude_deg": "36.57566", + "longitude_deg": "139.96614", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Utsunomiya", + "scheduled_service": "no" + }, + { + "id": "338248", + "ident": "JP-0708", + "type": "heliport", + "name": "Kamitsuga General Hospital Helipad", + "latitude_deg": "36.56197", + "longitude_deg": "139.75101", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Kanuma", + "scheduled_service": "no" + }, + { + "id": "338249", + "ident": "JP-0709", + "type": "heliport", + "name": "Kuni Heliport", + "latitude_deg": "36.58516", + "longitude_deg": "138.62323", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Nakanojo", + "scheduled_service": "no" + }, + { + "id": "338250", + "ident": "JP-0710", + "type": "heliport", + "name": "Land Axis Tower Helipad", + "latitude_deg": "35.893352", + "longitude_deg": "139.632583", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Saitama", + "scheduled_service": "no" + }, + { + "id": "338251", + "ident": "JP-0711", + "type": "heliport", + "name": "Saitama Urban Kita-Yono Building Helipad", + "latitude_deg": "35.88865", + "longitude_deg": "139.62766", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Saitama", + "scheduled_service": "no" + }, + { + "id": "338252", + "ident": "JP-0712", + "type": "heliport", + "name": "Park House Saitama Shintoshin Mid Tower Helipad", + "latitude_deg": "35.892639", + "longitude_deg": "139.628978", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Saitama", + "scheduled_service": "no" + }, + { + "id": "338253", + "ident": "JP-0713", + "type": "heliport", + "name": "Japan Red Cross Saitama Hospital Helipad", + "latitude_deg": "35.891797", + "longitude_deg": "139.631424", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Saitama", + "scheduled_service": "no" + }, + { + "id": "338254", + "ident": "JP-0714", + "type": "heliport", + "name": "Saitama Shintoshin Joint Government Building #1 Helipad", + "latitude_deg": "35.892005", + "longitude_deg": "139.633462", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Saitama", + "scheduled_service": "no" + }, + { + "id": "338255", + "ident": "JP-0715", + "type": "heliport", + "name": "Saitama Shintoshin Joint Government Building #2 Helipad", + "latitude_deg": "35.891415", + "longitude_deg": "139.634171", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Saitama", + "scheduled_service": "no" + }, + { + "id": "338256", + "ident": "JP-0716", + "type": "heliport", + "name": "Japan Post Group Saitama Building Helipad", + "latitude_deg": "35.887895", + "longitude_deg": "139.636241", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Saitama", + "scheduled_service": "no" + }, + { + "id": "338257", + "ident": "JP-0717", + "type": "heliport", + "name": "Rafre Saitama Helipad", + "latitude_deg": "35.889419", + "longitude_deg": "139.634943", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Saitama", + "scheduled_service": "no" + }, + { + "id": "338258", + "ident": "JP-0718", + "type": "heliport", + "name": "Proud Tower Musashi Urawa Marks B2 Tower Helipad", + "latitude_deg": "35.845765", + "longitude_deg": "139.64505", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Saitama", + "scheduled_service": "no" + }, + { + "id": "338259", + "ident": "JP-0719", + "type": "heliport", + "name": "Lamza Tower Helipad", + "latitude_deg": "35.843835", + "longitude_deg": "139.646541", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Saitama", + "scheduled_service": "no" + }, + { + "id": "338260", + "ident": "JP-0720", + "type": "heliport", + "name": "Nalia Terrace Helipad", + "latitude_deg": "35.843739", + "longitude_deg": "139.645924", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Saitama", + "scheduled_service": "no" + }, + { + "id": "338261", + "ident": "JP-0721", + "type": "heliport", + "name": "Musashiurawa Sky&Garden Helipad", + "latitude_deg": "35.842439", + "longitude_deg": "139.647635", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Saitama", + "scheduled_service": "no" + }, + { + "id": "338262", + "ident": "JP-0722", + "type": "heliport", + "name": "First Tower Helipad", + "latitude_deg": "35.847017", + "longitude_deg": "139.648992", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Saitama", + "scheduled_service": "no" + }, + { + "id": "338263", + "ident": "JP-0723", + "type": "heliport", + "name": "Actopia Kita-Akabane Building 4 Helipad", + "latitude_deg": "35.78523", + "longitude_deg": "139.708757", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Kita, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338264", + "ident": "JP-0724", + "type": "heliport", + "name": "Tokyo North Medical Center Helipad", + "latitude_deg": "35.783921", + "longitude_deg": "139.711161", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Kita, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338265", + "ident": "JP-0725", + "type": "heliport", + "name": "Tabata Asuka Tower Helipad", + "latitude_deg": "35.737957", + "longitude_deg": "139.759355", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Kita, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338266", + "ident": "JP-0726", + "type": "heliport", + "name": "Lions Tower Yatsuka Helipad", + "latitude_deg": "35.813985", + "longitude_deg": "139.802452", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Soka", + "scheduled_service": "no" + }, + { + "id": "338267", + "ident": "JP-0727", + "type": "heliport", + "name": "Soka City Hospital Helipad", + "latitude_deg": "35.835437", + "longitude_deg": "139.796138", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Soka", + "scheduled_service": "no" + }, + { + "id": "338268", + "ident": "JP-0728", + "type": "heliport", + "name": "Lions Mansion Soka Ekimae Helipad", + "latitude_deg": "35.829366", + "longitude_deg": "139.805961", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Soka", + "scheduled_service": "no" + }, + { + "id": "338269", + "ident": "JP-0729", + "type": "heliport", + "name": "Kawai Building Helipad", + "latitude_deg": "35.828948", + "longitude_deg": "139.8058", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Soka", + "scheduled_service": "no" + }, + { + "id": "338270", + "ident": "JP-0730", + "type": "heliport", + "name": "Famille Plaza Soka Helipad", + "latitude_deg": "35.82741", + "longitude_deg": "139.80447", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Soka", + "scheduled_service": "no" + }, + { + "id": "338271", + "ident": "JP-0731", + "type": "heliport", + "name": "Lifepia Soka Grand Stage Helipad", + "latitude_deg": "35.82743", + "longitude_deg": "139.80208", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Soka", + "scheduled_service": "no" + }, + { + "id": "338272", + "ident": "JP-0732", + "type": "heliport", + "name": "Prime Building Helipad", + "latitude_deg": "35.7932", + "longitude_deg": "139.78985", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Adachi, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338273", + "ident": "JP-0733", + "type": "heliport", + "name": "Mildis I Building Helipad", + "latitude_deg": "35.751053", + "longitude_deg": "139.804598", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Adachi, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338274", + "ident": "JP-0734", + "type": "heliport", + "name": "Atlas Branz Tower Mikawashima Helipad", + "latitude_deg": "35.732644", + "longitude_deg": "139.778302", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Arakawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338275", + "ident": "JP-0735", + "type": "heliport", + "name": "Reedence Tower Helipad", + "latitude_deg": "35.726064", + "longitude_deg": "139.776301", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Arakawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338276", + "ident": "JP-0736", + "type": "heliport", + "name": "Acresty Minamisenju Helipad", + "latitude_deg": "35.733101", + "longitude_deg": "139.798198", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Arakawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338277", + "ident": "JP-0737", + "type": "heliport", + "name": "Royal Parks Tower Minamisenju Helipad", + "latitude_deg": "35.736311", + "longitude_deg": "139.801755", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Arakawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338278", + "ident": "JP-0738", + "type": "heliport", + "name": "Tomin Tower Minamisenju Helipad", + "latitude_deg": "35.736014", + "longitude_deg": "139.804006", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Arakawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338279", + "ident": "JP-0739", + "type": "heliport", + "name": "Toei Minamisenju 4-chome Apartment Building #3 Helipad", + "latitude_deg": "35.736953", + "longitude_deg": "139.804146", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Arakawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338280", + "ident": "JP-0740", + "type": "heliport", + "name": "Tokyo Metropolitan College of Industrial Technology Arakawa Campus Helipad", + "latitude_deg": "35.734449", + "longitude_deg": "139.809256", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Arakawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338281", + "ident": "JP-0741", + "type": "heliport", + "name": "Ukima Heliport", + "latitude_deg": "35.78967", + "longitude_deg": "139.70793", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Kita, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338282", + "ident": "JP-0742", + "type": "heliport", + "name": "Hayabusacho Residential Building Helipad", + "latitude_deg": "35.68291", + "longitude_deg": "139.74277", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338322", + "ident": "JP-0743", + "type": "small_airport", + "name": "Kuge Airstrip", + "latitude_deg": "36.10627", + "longitude_deg": "139.43258", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kumagaya", + "scheduled_service": "no" + }, + { + "id": "338323", + "ident": "JP-0744", + "type": "heliport", + "name": "Kamishima Heliport", + "latitude_deg": "34.5519", + "longitude_deg": "136.98104", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Toba", + "scheduled_service": "no" + }, + { + "id": "338324", + "ident": "JP-0745", + "type": "heliport", + "name": "Toba Observatory / Lions Club Heliport", + "latitude_deg": "34.42745", + "longitude_deg": "136.91381", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Toba", + "scheduled_service": "no" + }, + { + "id": "338325", + "ident": "JP-0746", + "type": "heliport", + "name": "Sakatejima Helipad", + "latitude_deg": "34.48244", + "longitude_deg": "136.85711", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Toba", + "scheduled_service": "no" + }, + { + "id": "338340", + "ident": "JP-0747", + "type": "heliport", + "name": "Unizo Shin-Yokohama Building Helipad", + "latitude_deg": "35.511122", + "longitude_deg": "139.620857", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338341", + "ident": "JP-0748", + "type": "heliport", + "name": "Innotek Building Helipad", + "latitude_deg": "35.511246", + "longitude_deg": "139.617968", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338342", + "ident": "JP-0749", + "type": "heliport", + "name": "Tomozumi Shin-Yokohama Building Helipad", + "latitude_deg": "35.51087", + "longitude_deg": "139.617584", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338343", + "ident": "JP-0750", + "type": "heliport", + "name": "Benex S-3 Helipad", + "latitude_deg": "35.511598", + "longitude_deg": "139.616375", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338344", + "ident": "JP-0751", + "type": "heliport", + "name": "LIVMO Rising Building Helipad", + "latitude_deg": "35.510475", + "longitude_deg": "139.616016", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338345", + "ident": "JP-0752", + "type": "heliport", + "name": "WINS Shin-Yokohama Helipad", + "latitude_deg": "35.510342", + "longitude_deg": "139.614643", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338346", + "ident": "JP-0753", + "type": "heliport", + "name": "Sumitomo Shin-Yokohama Building Helipad", + "latitude_deg": "35.509275", + "longitude_deg": "139.615219", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338348", + "ident": "JP-0754", + "type": "heliport", + "name": "Laguna Suite Shin-Yokohama Helipad", + "latitude_deg": "35.508296", + "longitude_deg": "139.614029", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338349", + "ident": "JP-0755", + "type": "heliport", + "name": "Kaneko #2 Building Helipad", + "latitude_deg": "35.507922", + "longitude_deg": "139.613916", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338350", + "ident": "JP-0756", + "type": "heliport", + "name": "Attend on Tower Helipad", + "latitude_deg": "35.506904", + "longitude_deg": "139.611987", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338351", + "ident": "JP-0757", + "type": "heliport", + "name": "Karimoku Furniture Shin-Yokohama Showroom Helipad", + "latitude_deg": "35.503917", + "longitude_deg": "139.611713", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338352", + "ident": "JP-0758", + "type": "heliport", + "name": "Arena Tower Helipad", + "latitude_deg": "35.51165", + "longitude_deg": "139.62196", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338438", + "ident": "JP-0759", + "type": "heliport", + "name": "Kosugi Tower Helipad", + "latitude_deg": "35.571519", + "longitude_deg": "139.662076", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "338439", + "ident": "JP-0760", + "type": "heliport", + "name": "Lieto Court Musashikosugi Classy Tower Helipad", + "latitude_deg": "35.571894", + "longitude_deg": "139.661078", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "338440", + "ident": "JP-0761", + "type": "heliport", + "name": "Lieto Court Musashikosugi East Tower Helipad", + "latitude_deg": "35.572431", + "longitude_deg": "139.662108", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "338441", + "ident": "JP-0762", + "type": "heliport", + "name": "Amatsubo Heliport", + "latitude_deg": "33.69229", + "longitude_deg": "133.6924", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Otoyo", + "scheduled_service": "no" + }, + { + "id": "338442", + "ident": "JP-0763", + "type": "heliport", + "name": "Kawaguchiminami Helipad", + "latitude_deg": "33.76878", + "longitude_deg": "133.65334", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Otoyo", + "scheduled_service": "no" + }, + { + "id": "338443", + "ident": "JP-0764", + "type": "heliport", + "name": "Toyonaga Helipad", + "latitude_deg": "33.79753", + "longitude_deg": "133.75885", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Otoyo", + "scheduled_service": "no" + }, + { + "id": "338444", + "ident": "JP-0765", + "type": "heliport", + "name": "Kito Heliport", + "latitude_deg": "33.77252", + "longitude_deg": "134.19536", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-36", + "municipality": "Naka", + "scheduled_service": "no" + }, + { + "id": "338445", + "ident": "JP-0766", + "type": "heliport", + "name": "Befu Heliport", + "latitude_deg": "33.76151", + "longitude_deg": "134.03313", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kami", + "scheduled_service": "no" + }, + { + "id": "338446", + "ident": "JP-0767", + "type": "heliport", + "name": "Okanouchi Heliport", + "latitude_deg": "33.72191", + "longitude_deg": "133.94081", + "elevation_ft": "1132", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kami", + "scheduled_service": "no" + }, + { + "id": "338447", + "ident": "JP-0768", + "type": "heliport", + "name": "Kitagawa Emergency Helipad", + "latitude_deg": "33.77386", + "longitude_deg": "134.10378", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-36", + "municipality": "Naka", + "scheduled_service": "no" + }, + { + "id": "338448", + "ident": "JP-0769", + "type": "heliport", + "name": "Japan Red Cross Tokushima Hospital Helipad", + "latitude_deg": "34.01223", + "longitude_deg": "134.58342", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-36", + "municipality": "Komatsushima", + "scheduled_service": "no" + }, + { + "id": "338449", + "ident": "JP-0770", + "type": "heliport", + "name": "Tebajima Heliport", + "latitude_deg": "33.63534", + "longitude_deg": "134.42333", + "elevation_ft": "72", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-36", + "municipality": "Mugi", + "scheduled_service": "no" + }, + { + "id": "338450", + "ident": "JP-0771", + "type": "heliport", + "name": "NHO Katsuura Hospital Helipad", + "latitude_deg": "33.93284", + "longitude_deg": "134.50618", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-36", + "municipality": "Katsuura", + "scheduled_service": "no" + }, + { + "id": "338451", + "ident": "JP-0772", + "type": "heliport", + "name": "Tokushima Prefectural Police Heliport", + "latitude_deg": "34.06497", + "longitude_deg": "134.5601", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-36", + "municipality": "Tokushima", + "scheduled_service": "no" + }, + { + "id": "338453", + "ident": "JP-0773", + "type": "heliport", + "name": "Goodo Heliport", + "latitude_deg": "33.74731", + "longitude_deg": "133.91042", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kami", + "scheduled_service": "no" + }, + { + "id": "338454", + "ident": "JP-0774", + "type": "heliport", + "name": "Odochi Heliport", + "latitude_deg": "33.69832", + "longitude_deg": "133.87409", + "elevation_ft": "636", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kami", + "scheduled_service": "no" + }, + { + "id": "338455", + "ident": "JP-0775", + "type": "heliport", + "name": "Nagase Dam Heliport", + "latitude_deg": "33.70597", + "longitude_deg": "133.85999", + "elevation_ft": "417", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kami", + "scheduled_service": "no" + }, + { + "id": "338456", + "ident": "JP-0776", + "type": "heliport", + "name": "Mitani Heliport", + "latitude_deg": "33.66932", + "longitude_deg": "133.79495", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kami", + "scheduled_service": "no" + }, + { + "id": "338457", + "ident": "JP-0777", + "type": "heliport", + "name": "Sameura Heliport", + "latitude_deg": "33.75509", + "longitude_deg": "133.5485", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Tosa", + "scheduled_service": "no" + }, + { + "id": "338462", + "ident": "JP-0778", + "type": "heliport", + "name": "Okinoshima Heliport", + "latitude_deg": "32.74005", + "longitude_deg": "132.56084", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Sukumo", + "scheduled_service": "no" + }, + { + "id": "338463", + "ident": "JP-0779", + "type": "heliport", + "name": "Otsuki-cho Hiromi Heliport", + "latitude_deg": "32.84071", + "longitude_deg": "132.7044", + "elevation_ft": "266", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Otsuki", + "scheduled_service": "no" + }, + { + "id": "338464", + "ident": "JP-0780", + "type": "heliport", + "name": "Tosashimizu Heliport", + "latitude_deg": "32.79383", + "longitude_deg": "132.96794", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Tosashimizu", + "scheduled_service": "no" + }, + { + "id": "338465", + "ident": "JP-0781", + "type": "heliport", + "name": "Hata Prefectural Hospital Heliport", + "latitude_deg": "32.96789", + "longitude_deg": "132.80606", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Sukumo", + "scheduled_service": "no" + }, + { + "id": "338466", + "ident": "JP-0782", + "type": "heliport", + "name": "Omiya Emergency Heliport", + "latitude_deg": "33.14157", + "longitude_deg": "132.73852", + "elevation_ft": "469", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Shimanto City", + "scheduled_service": "no" + }, + { + "id": "338467", + "ident": "JP-0783", + "type": "heliport", + "name": "Towa Heliport", + "latitude_deg": "33.21885", + "longitude_deg": "132.89149", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Shimanto Town", + "scheduled_service": "no" + }, + { + "id": "338468", + "ident": "JP-0784", + "type": "heliport", + "name": "Oyu Heliport", + "latitude_deg": "33.09907", + "longitude_deg": "132.96502", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Shimanto City", + "scheduled_service": "no" + }, + { + "id": "338469", + "ident": "JP-0785", + "type": "heliport", + "name": "Shimotsui Heliport", + "latitude_deg": "33.29164", + "longitude_deg": "132.94297", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Shimanto Town", + "scheduled_service": "no" + }, + { + "id": "338470", + "ident": "JP-0786", + "type": "heliport", + "name": "Uwajima Tokushukai Hospital Heliport", + "latitude_deg": "33.2292", + "longitude_deg": "132.55405", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Uwajima", + "scheduled_service": "no" + }, + { + "id": "338471", + "ident": "JP-0787", + "type": "heliport", + "name": "Shimagawa Heliport", + "latitude_deg": "33.43018", + "longitude_deg": "132.8669", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Yusuhara", + "scheduled_service": "no" + }, + { + "id": "338492", + "ident": "JP-0788", + "type": "heliport", + "name": "Osakana-kaido Helipad", + "latitude_deg": "33.123833", + "longitude_deg": "133.151946", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kuroshio", + "scheduled_service": "no" + }, + { + "id": "338493", + "ident": "JP-0789", + "type": "heliport", + "name": "Okitsu Heliport", + "latitude_deg": "33.175119", + "longitude_deg": "133.20174", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Shimanto Town", + "scheduled_service": "no" + }, + { + "id": "338494", + "ident": "JP-0790", + "type": "heliport", + "name": "Uragoshi Heliport", + "latitude_deg": "33.19793", + "longitude_deg": "132.948", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Shimanto Town", + "scheduled_service": "no" + }, + { + "id": "338495", + "ident": "JP-0791", + "type": "heliport", + "name": "Hayama Heliport", + "latitude_deg": "33.43586", + "longitude_deg": "133.21192", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Tsuno", + "scheduled_service": "no" + }, + { + "id": "338496", + "ident": "JP-0792", + "type": "heliport", + "name": "Chikazawa Heliport", + "latitude_deg": "33.52788", + "longitude_deg": "133.40951", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Ino", + "scheduled_service": "no" + }, + { + "id": "338497", + "ident": "JP-0793", + "type": "heliport", + "name": "Tokoroyama Heliport", + "latitude_deg": "33.56074", + "longitude_deg": "133.20616", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Ochi", + "scheduled_service": "no" + }, + { + "id": "338498", + "ident": "JP-0794", + "type": "heliport", + "name": "Yokobatake Heliport", + "latitude_deg": "33.56645", + "longitude_deg": "133.22112", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Ochi", + "scheduled_service": "no" + }, + { + "id": "338499", + "ident": "JP-0795", + "type": "heliport", + "name": "Teramura Heliport", + "latitude_deg": "33.57039", + "longitude_deg": "133.1923", + "elevation_ft": "719", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Niyodogawa", + "scheduled_service": "no" + }, + { + "id": "338500", + "ident": "JP-0796", + "type": "heliport", + "name": "Kuzuhara Heliport", + "latitude_deg": "33.57798", + "longitude_deg": "133.17417", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Niyodogawa", + "scheduled_service": "no" + }, + { + "id": "338501", + "ident": "JP-0797", + "type": "heliport", + "name": "Ninotaki Heliport", + "latitude_deg": "33.56473", + "longitude_deg": "133.12339", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Niyodogawa", + "scheduled_service": "no" + }, + { + "id": "338502", + "ident": "JP-0798", + "type": "heliport", + "name": "Odo Dam Heliport", + "latitude_deg": "33.54107", + "longitude_deg": "133.11156", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Niyodogawa", + "scheduled_service": "no" + }, + { + "id": "338503", + "ident": "JP-0799", + "type": "heliport", + "name": "Yasuba Heliport", + "latitude_deg": "33.54012", + "longitude_deg": "133.05454", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Nakatsu", + "scheduled_service": "no" + }, + { + "id": "338504", + "ident": "JP-0800", + "type": "heliport", + "name": "Nishidani Helipad", + "latitude_deg": "33.53075", + "longitude_deg": "132.97639", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kumakogen", + "scheduled_service": "no" + }, + { + "id": "338505", + "ident": "JP-0801", + "type": "heliport", + "name": "Yusuhara Heliport", + "latitude_deg": "33.386642", + "longitude_deg": "132.925275", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Yusuhara", + "scheduled_service": "no" + }, + { + "id": "338506", + "ident": "JP-0802", + "type": "heliport", + "name": "Matsubara Heliport", + "latitude_deg": "33.319616", + "longitude_deg": "132.970662", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Yusuhara", + "scheduled_service": "no" + }, + { + "id": "338508", + "ident": "JP-0803", + "type": "heliport", + "name": "Moji Tower Helipad", + "latitude_deg": "33.94849", + "longitude_deg": "130.96427", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Kitakyushu", + "scheduled_service": "no" + }, + { + "id": "338509", + "ident": "JP-0804", + "type": "heliport", + "name": "Kanmon Straits Helicopter Sightseeing Airfield", + "latitude_deg": "33.95216", + "longitude_deg": "130.94024", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Shimonoseki", + "scheduled_service": "no" + }, + { + "id": "338510", + "ident": "JP-0805", + "type": "heliport", + "name": "City Tower Musashikosugi Helipad", + "latitude_deg": "35.57295", + "longitude_deg": "139.66026", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "338511", + "ident": "JP-0806", + "type": "heliport", + "name": "Park City Musashikosugi Grandwing Tower Helipad", + "latitude_deg": "35.57468", + "longitude_deg": "139.65964", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "338512", + "ident": "JP-0807", + "type": "heliport", + "name": "Park City Musashikosugi Mid Sky Tower Helipad", + "latitude_deg": "35.57472", + "longitude_deg": "139.66074", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "338513", + "ident": "JP-0808", + "type": "heliport", + "name": "Brillia Musashikosugi Helipad", + "latitude_deg": "35.57631", + "longitude_deg": "139.66187", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "338514", + "ident": "JP-0809", + "type": "heliport", + "name": "Musashikosugi Tokyu Square Helipad", + "latitude_deg": "35.57597", + "longitude_deg": "139.65906", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "338515", + "ident": "JP-0810", + "type": "heliport", + "name": "Saint Square Musashikosugi Helipad", + "latitude_deg": "35.57504", + "longitude_deg": "139.65765", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "338516", + "ident": "JP-0811", + "type": "heliport", + "name": "Proud Tower Musashikosugi Helipad", + "latitude_deg": "35.57599", + "longitude_deg": "139.65653", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "338517", + "ident": "JP-0812", + "type": "heliport", + "name": "Park City Musashikosugi Garden Towers West Helipad", + "latitude_deg": "35.57751", + "longitude_deg": "139.65552", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "338518", + "ident": "JP-0813", + "type": "heliport", + "name": "Park City Musashikosugi Garden Towers East Helipad", + "latitude_deg": "35.57759", + "longitude_deg": "139.6569", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "338519", + "ident": "JP-0814", + "type": "heliport", + "name": "Musashikosugi Tower Place Helipad", + "latitude_deg": "35.57756", + "longitude_deg": "139.65822", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "338520", + "ident": "JP-0815", + "type": "heliport", + "name": "Showa University Fujigaoka Hospital Helipad", + "latitude_deg": "35.54492", + "longitude_deg": "139.52926", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "338521", + "ident": "JP-0816", + "type": "heliport", + "name": "Setagaya Business Square Tower Helipad", + "latitude_deg": "35.62673", + "longitude_deg": "139.63301", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Setagaya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338522", + "ident": "JP-0817", + "type": "heliport", + "name": "Carrot Tower Helipad", + "latitude_deg": "35.64355", + "longitude_deg": "139.66926", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Setagaya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338523", + "ident": "JP-0818", + "type": "heliport", + "name": "Prism Tower Helipad", + "latitude_deg": "35.6513", + "longitude_deg": "139.68647", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Meguro, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338524", + "ident": "JP-0819", + "type": "heliport", + "name": "Cross Air Tower Helipad", + "latitude_deg": "35.65166", + "longitude_deg": "139.68835", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Meguro, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338525", + "ident": "JP-0820", + "type": "heliport", + "name": "Shibuya Garden Tower Helipad", + "latitude_deg": "35.65398", + "longitude_deg": "139.69392", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338526", + "ident": "JP-0821", + "type": "heliport", + "name": "Shibuya Solasta Helipad", + "latitude_deg": "35.65646", + "longitude_deg": "139.69638", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338527", + "ident": "JP-0822", + "type": "heliport", + "name": "Odawara Dynacity West Helipad", + "latitude_deg": "35.28514", + "longitude_deg": "139.18559", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Odawara", + "scheduled_service": "no" + }, + { + "id": "338528", + "ident": "JP-0823", + "type": "heliport", + "name": "Yasuhigashi Fire Department Helipad", + "latitude_deg": "35.07916", + "longitude_deg": "136.04134", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Yasu", + "scheduled_service": "no" + }, + { + "id": "338529", + "ident": "JP-0824", + "type": "heliport", + "name": "Saiseikai Shiga Prefectural Hospital Helipad", + "latitude_deg": "35.034367", + "longitude_deg": "136.001758", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Ritto", + "scheduled_service": "no" + }, + { + "id": "338530", + "ident": "JP-0825", + "type": "heliport", + "name": "Shiga University Hospital Helipad", + "latitude_deg": "34.97442", + "longitude_deg": "135.95266", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Otsu", + "scheduled_service": "no" + }, + { + "id": "338531", + "ident": "JP-0826", + "type": "small_airport", + "name": "Locus Lake Biwa Flying Adventure / Lake Biwa MPPG Paraglider Airfield", + "latitude_deg": "35.08479", + "longitude_deg": "135.94852", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Moriyama", + "scheduled_service": "no" + }, + { + "id": "338532", + "ident": "JP-0827", + "type": "heliport", + "name": "Fukuchiyama Heliport", + "latitude_deg": "35.29055", + "longitude_deg": "135.11531", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Fukuchiyama", + "scheduled_service": "no" + }, + { + "id": "338533", + "ident": "JP-0828", + "type": "closed", + "name": "Fukuchiyama Air Base", + "latitude_deg": "35.30538", + "longitude_deg": "135.16967", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Fukuchiyama", + "scheduled_service": "no" + }, + { + "id": "338534", + "ident": "JP-0829", + "type": "small_airport", + "name": "JGSDF Osadano Airstrip", + "latitude_deg": "35.28523", + "longitude_deg": "135.18161", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Fukuchiyama", + "scheduled_service": "no" + }, + { + "id": "338535", + "ident": "JP-0830", + "type": "heliport", + "name": "Bridgestone Helipad", + "latitude_deg": "35.28393", + "longitude_deg": "135.15921", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Fukuchiyama", + "scheduled_service": "no" + }, + { + "id": "338538", + "ident": "JP-0831", + "type": "heliport", + "name": "Clacity Helipad", + "latitude_deg": "34.89387", + "longitude_deg": "136.92717", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Handa", + "scheduled_service": "no" + }, + { + "id": "338539", + "ident": "JP-0832", + "type": "heliport", + "name": "Handa City Hall Helipad", + "latitude_deg": "34.89172", + "longitude_deg": "136.93801", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Handa", + "scheduled_service": "no" + }, + { + "id": "338558", + "ident": "JP-0833", + "type": "heliport", + "name": "Yokohama Plaza Building Helipad", + "latitude_deg": "35.46746", + "longitude_deg": "139.62726", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338559", + "ident": "JP-0834", + "type": "heliport", + "name": "Good Open Airs MyX Helipad", + "latitude_deg": "35.46895", + "longitude_deg": "139.62859", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338560", + "ident": "JP-0835", + "type": "heliport", + "name": "Due Yokohama Ekimae Helipad", + "latitude_deg": "35.46981", + "longitude_deg": "139.62639", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338561", + "ident": "JP-0836", + "type": "heliport", + "name": "Yokohama Minato #1 Seimei Building Helipad", + "latitude_deg": "35.46902", + "longitude_deg": "139.62597", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338562", + "ident": "JP-0837", + "type": "heliport", + "name": "Sogo Yokohama Heliport", + "latitude_deg": "35.465737", + "longitude_deg": "139.624925", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338563", + "ident": "JP-0838", + "type": "closed", + "name": "Old Sogo Yokohama Helipad", + "latitude_deg": "35.465426", + "longitude_deg": "139.625647", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338564", + "ident": "JP-0839", + "type": "heliport", + "name": "Fuji Xerox R&D Square Helipad", + "latitude_deg": "35.463681", + "longitude_deg": "139.627553", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338565", + "ident": "JP-0840", + "type": "heliport", + "name": "Yokohama Mitsui Building Helipad", + "latitude_deg": "35.463187", + "longitude_deg": "139.625374", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338566", + "ident": "JP-0841", + "type": "heliport", + "name": "Park Tower Yokohama Station Premier Helipad", + "latitude_deg": "35.46232", + "longitude_deg": "139.62314", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338567", + "ident": "JP-0842", + "type": "heliport", + "name": "Hamabowl EAS Helipad", + "latitude_deg": "35.465855", + "longitude_deg": "139.617503", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338568", + "ident": "JP-0843", + "type": "heliport", + "name": "Yokohama Blue Avenue Helipad", + "latitude_deg": "35.460278", + "longitude_deg": "139.627409", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338569", + "ident": "JP-0844", + "type": "heliport", + "name": "Yokohama Nomura Building Helipad", + "latitude_deg": "35.459273", + "longitude_deg": "139.627193", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338570", + "ident": "JP-0845", + "type": "heliport", + "name": "Yokohama i-Mark Place Helipad", + "latitude_deg": "35.460229", + "longitude_deg": "139.628382", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338571", + "ident": "JP-0846", + "type": "heliport", + "name": "Yokohama Media Tower Helipad", + "latitude_deg": "35.459926", + "longitude_deg": "139.630146", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338572", + "ident": "JP-0847", + "type": "heliport", + "name": "Leaf Minatomirai Helipad", + "latitude_deg": "35.459193", + "longitude_deg": "139.62867", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338573", + "ident": "JP-0848", + "type": "heliport", + "name": "Minatomirai Grand Central Tower Heliport", + "latitude_deg": "35.458718", + "longitude_deg": "139.629225", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338574", + "ident": "JP-0849", + "type": "heliport", + "name": "Minatomirai Mid Square Tower Residence Helipad", + "latitude_deg": "35.458868", + "longitude_deg": "139.630736", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338575", + "ident": "JP-0850", + "type": "heliport", + "name": "Mitsubishi Yokohama Building Helipad", + "latitude_deg": "35.456088", + "longitude_deg": "139.629775", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338576", + "ident": "JP-0851", + "type": "heliport", + "name": "Yokohama Bank Building Helipad", + "latitude_deg": "35.45455", + "longitude_deg": "139.62938", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338577", + "ident": "JP-0852", + "type": "heliport", + "name": "FamilyMart MM Nisseki Building Helipad", + "latitude_deg": "35.453852", + "longitude_deg": "139.630097", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338578", + "ident": "JP-0853", + "type": "heliport", + "name": "Yokohama Landmark Tower Heliport", + "latitude_deg": "35.454559", + "longitude_deg": "139.631476", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "338585", + "ident": "JP-0854", + "type": "closed", + "name": "Mie Airfield", + "latitude_deg": "34.65095", + "longitude_deg": "136.54509", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Tsu", + "scheduled_service": "no" + }, + { + "id": "338586", + "ident": "JP-0855", + "type": "small_airport", + "name": "Ryu's Skypark", + "latitude_deg": "34.638053", + "longitude_deg": "136.545568", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Tsu", + "scheduled_service": "no", + "keywords": "Karasu Airfield" + }, + { + "id": "338587", + "ident": "JP-0856", + "type": "small_airport", + "name": "Kushidagawa Gliderport", + "latitude_deg": "34.59808", + "longitude_deg": "136.57514", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Matsusaka", + "scheduled_service": "no" + }, + { + "id": "338588", + "ident": "JP-0857", + "type": "closed", + "name": "Kasumigaura Naval Airfield", + "latitude_deg": "36.00448", + "longitude_deg": "140.37615", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Miho", + "scheduled_service": "no" + }, + { + "id": "338589", + "ident": "JP-0858", + "type": "heliport", + "name": "Oyama Heliport", + "latitude_deg": "36.004038", + "longitude_deg": "140.375801", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Miho", + "scheduled_service": "no" + }, + { + "id": "338590", + "ident": "JP-0859", + "type": "closed", + "name": "Karuno Gliderport", + "latitude_deg": "35.895278", + "longitude_deg": "140.694444", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Kamisu", + "scheduled_service": "no" + }, + { + "id": "338591", + "ident": "JP-0860", + "type": "small_airport", + "name": "Namiki Auxiliary Airfield", + "latitude_deg": "36.11309", + "longitude_deg": "140.48573", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Namegata", + "scheduled_service": "no" + }, + { + "id": "338592", + "ident": "JP-0861", + "type": "closed", + "name": "Kitaura Naval Airfield", + "latitude_deg": "36.00098", + "longitude_deg": "140.5613", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Itako", + "scheduled_service": "no" + }, + { + "id": "338593", + "ident": "JP-0862", + "type": "closed", + "name": "Hokota (Toyokashima) Airfield", + "latitude_deg": "36.15049", + "longitude_deg": "140.56296", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Hokota", + "scheduled_service": "no" + }, + { + "id": "338594", + "ident": "JP-0863", + "type": "closed", + "name": "Ishioka Air Base", + "latitude_deg": "36.19678", + "longitude_deg": "140.29081", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Ishioka", + "scheduled_service": "no" + }, + { + "id": "338595", + "ident": "JP-0864", + "type": "closed", + "name": "Tsukuba Naval Air Base / Tomobe Airfield", + "latitude_deg": "36.32672", + "longitude_deg": "140.31672", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Kasama", + "scheduled_service": "no" + }, + { + "id": "338596", + "ident": "JP-0865", + "type": "small_airport", + "name": "Akeno Auxiliary Airfield", + "latitude_deg": "36.22588", + "longitude_deg": "140.00184", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Chikusei", + "scheduled_service": "no" + }, + { + "id": "338597", + "ident": "JP-0866", + "type": "closed", + "name": "Shimodate Airfield", + "latitude_deg": "36.26094", + "longitude_deg": "139.95076", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Chikusei", + "scheduled_service": "no" + }, + { + "id": "338599", + "ident": "JP-0867", + "type": "closed", + "name": "Tamanohara Airfield", + "latitude_deg": "38.59764", + "longitude_deg": "140.45487", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Obanazawa", + "scheduled_service": "no" + }, + { + "id": "338600", + "ident": "JP-0868", + "type": "closed", + "name": "Highland Gliderport", + "latitude_deg": "40.193333", + "longitude_deg": "140.328611", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Kitaakita", + "scheduled_service": "no" + }, + { + "id": "338601", + "ident": "JP-0869", + "type": "closed", + "name": "Ogata Auxiliary Airfield", + "latitude_deg": "39.93824", + "longitude_deg": "139.99947", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Ogata", + "scheduled_service": "no" + }, + { + "id": "338602", + "ident": "JP-0870", + "type": "heliport", + "name": "Ogata Heliport", + "latitude_deg": "40.01541", + "longitude_deg": "139.94764", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Ogata", + "scheduled_service": "no" + }, + { + "id": "338603", + "ident": "JP-0871", + "type": "closed", + "name": "Yachimata Airfield", + "latitude_deg": "35.67915", + "longitude_deg": "140.33509", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Yachimata", + "scheduled_service": "no" + }, + { + "id": "338604", + "ident": "JP-0872", + "type": "closed", + "name": "Honda Airfield / Hirakawa Gliderport", + "latitude_deg": "35.54715", + "longitude_deg": "140.23814", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Chiba", + "scheduled_service": "no" + }, + { + "id": "338605", + "ident": "JP-0873", + "type": "closed", + "name": "Mobara Naval Air Base", + "latitude_deg": "35.43871", + "longitude_deg": "140.31114", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Mobara", + "scheduled_service": "no" + }, + { + "id": "338607", + "ident": "JP-0874", + "type": "small_airport", + "name": "Mito Flying Club Airfield", + "latitude_deg": "36.32147", + "longitude_deg": "140.51258", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Mito", + "scheduled_service": "no" + }, + { + "id": "338608", + "ident": "JP-0875", + "type": "closed", + "name": "Mito South Airfield", + "latitude_deg": "36.33209", + "longitude_deg": "140.47619", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Mito", + "scheduled_service": "no" + }, + { + "id": "338609", + "ident": "JP-0876", + "type": "small_airport", + "name": "Oarai Auxiliary Airfield", + "latitude_deg": "36.30517", + "longitude_deg": "140.50303", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Mito", + "scheduled_service": "no" + }, + { + "id": "338610", + "ident": "JP-0877", + "type": "closed", + "name": "Mito Army Airfield", + "latitude_deg": "36.38382", + "longitude_deg": "140.5899", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Hitachinaka", + "scheduled_service": "no" + }, + { + "id": "338611", + "ident": "JP-0878", + "type": "closed", + "name": "Mito North Airfield", + "latitude_deg": "36.45595", + "longitude_deg": "140.44113", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Naka", + "scheduled_service": "no" + }, + { + "id": "338612", + "ident": "JP-0879", + "type": "closed", + "name": "Maehara Airfield", + "latitude_deg": "36.79123", + "longitude_deg": "139.94118", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Yaita", + "scheduled_service": "no" + }, + { + "id": "338613", + "ident": "JP-0880", + "type": "closed", + "name": "Niragawa Airfield", + "latitude_deg": "36.37638", + "longitude_deg": "139.87111", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Shimotsuke", + "scheduled_service": "no" + }, + { + "id": "338614", + "ident": "JP-0881", + "type": "closed", + "name": "Fujioka (Shizuwa) Airfield", + "latitude_deg": "36.28977", + "longitude_deg": "139.6831", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Tochiigi", + "scheduled_service": "no" + }, + { + "id": "338615", + "ident": "JP-0882", + "type": "closed", + "name": "Yatomi Auxiliary Airfield", + "latitude_deg": "35.02494", + "longitude_deg": "136.78213", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Yatomi", + "scheduled_service": "no" + }, + { + "id": "338616", + "ident": "JP-0883", + "type": "closed", + "name": "Shinmaiko Seaplane Base", + "latitude_deg": "34.95098", + "longitude_deg": "136.82649", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Chita", + "scheduled_service": "no" + }, + { + "id": "338617", + "ident": "JP-0884", + "type": "closed", + "name": "Omihachiman Ultralightport", + "latitude_deg": "35.15184", + "longitude_deg": "136.07697", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Omihachiman", + "scheduled_service": "no" + }, + { + "id": "338618", + "ident": "JP-0885", + "type": "closed", + "name": "Maizuru Emergency Runway", + "latitude_deg": "35.47077", + "longitude_deg": "135.36566", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Maizuru", + "scheduled_service": "no" + }, + { + "id": "338619", + "ident": "JP-0886", + "type": "heliport", + "name": "Maizuru Training Heliport", + "latitude_deg": "35.482294", + "longitude_deg": "135.397421", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Maizuru", + "scheduled_service": "no", + "keywords": "Maizuru Training Airfield" + }, + { + "id": "338620", + "ident": "JP-0887", + "type": "closed", + "name": "JGSDF Aebano Airfield", + "latitude_deg": "35.40255", + "longitude_deg": "136.01126", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Takashima", + "scheduled_service": "no" + }, + { + "id": "338621", + "ident": "JP-0888", + "type": "heliport", + "name": "Takaoka Fishing Port Helipad", + "latitude_deg": "33.26712", + "longitude_deg": "134.18479", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Muroto", + "scheduled_service": "no" + }, + { + "id": "338622", + "ident": "JP-0889", + "type": "heliport", + "name": "Muroto City Fire Department Helipad", + "latitude_deg": "33.29463", + "longitude_deg": "134.16683", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Muroto", + "scheduled_service": "no" + }, + { + "id": "338623", + "ident": "JP-0890", + "type": "heliport", + "name": "Yukiata Ground Helipad", + "latitude_deg": "33.29511", + "longitude_deg": "134.11591", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Muroto", + "scheduled_service": "no" + }, + { + "id": "338624", + "ident": "JP-0891", + "type": "heliport", + "name": "Doi Heliport", + "latitude_deg": "33.51729", + "longitude_deg": "133.91595", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Aki", + "scheduled_service": "no" + }, + { + "id": "338625", + "ident": "JP-0892", + "type": "heliport", + "name": "Shima Heliport", + "latitude_deg": "33.54199", + "longitude_deg": "134.12041", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kitagawa", + "scheduled_service": "no" + }, + { + "id": "338626", + "ident": "JP-0893", + "type": "heliport", + "name": "Toyo Heliport", + "latitude_deg": "33.53558", + "longitude_deg": "134.28771", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Toyo", + "scheduled_service": "no" + }, + { + "id": "338627", + "ident": "JP-0894", + "type": "heliport", + "name": "Nahari Harbor Heliport", + "latitude_deg": "33.42575", + "longitude_deg": "134.01659", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Nahari", + "scheduled_service": "no" + }, + { + "id": "338630", + "ident": "JP-0895", + "type": "heliport", + "name": "Haboro Hospital Helipad", + "latitude_deg": "44.354", + "longitude_deg": "141.69392", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Haboro", + "scheduled_service": "no" + }, + { + "id": "338631", + "ident": "JP-0896", + "type": "heliport", + "name": "Shimukappu Heliport", + "latitude_deg": "43.05577", + "longitude_deg": "142.61777", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Shimukappu", + "scheduled_service": "no" + }, + { + "id": "338839", + "ident": "JP-0897", + "type": "heliport", + "name": "Aichi Medical University Hospital Helipad", + "latitude_deg": "35.19162", + "longitude_deg": "137.04958", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagakute", + "scheduled_service": "no" + }, + { + "id": "338840", + "ident": "JP-0898", + "type": "small_airport", + "name": "Izu Flying Club Airfield", + "latitude_deg": "34.99628", + "longitude_deg": "139.0045", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Izu", + "scheduled_service": "no" + }, + { + "id": "338841", + "ident": "JP-0899", + "type": "heliport", + "name": "Ito Municipal Hospital Helipad", + "latitude_deg": "34.96047", + "longitude_deg": "139.08803", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Ito", + "scheduled_service": "no" + }, + { + "id": "338842", + "ident": "JP-0900", + "type": "heliport", + "name": "Shuzenji Heliport", + "latitude_deg": "34.97525", + "longitude_deg": "138.90138", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Izu", + "scheduled_service": "no" + }, + { + "id": "338843", + "ident": "JP-0901", + "type": "heliport", + "name": "Juntendo University Shizuoka Hospital Helipad", + "latitude_deg": "35.02907", + "longitude_deg": "138.93521", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Izunokuni", + "scheduled_service": "no" + }, + { + "id": "338844", + "ident": "JP-0902", + "type": "heliport", + "name": "Shirata Heliport", + "latitude_deg": "34.80184", + "longitude_deg": "139.0624", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Higashiizu", + "scheduled_service": "no" + }, + { + "id": "338845", + "ident": "JP-0903", + "type": "heliport", + "name": "Shirahama Central Heliport", + "latitude_deg": "34.70182", + "longitude_deg": "138.97584", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shimoda", + "scheduled_service": "no" + }, + { + "id": "338846", + "ident": "JP-0904", + "type": "heliport", + "name": "Suzaki Heliport", + "latitude_deg": "34.66929", + "longitude_deg": "138.95951", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shimoda", + "scheduled_service": "no" + }, + { + "id": "338847", + "ident": "JP-0905", + "type": "closed", + "name": "Tatadohama Helipad", + "latitude_deg": "34.66295", + "longitude_deg": "138.93153", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shimoda", + "scheduled_service": "no" + }, + { + "id": "338848", + "ident": "JP-0906", + "type": "heliport", + "name": "Tsumekizaki Green Area Parking Lot Helipad", + "latitude_deg": "34.66426", + "longitude_deg": "138.98185", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shimoda", + "scheduled_service": "no" + }, + { + "id": "338869", + "ident": "JP-0907", + "type": "heliport", + "name": "Canon S Tower Helipad", + "latitude_deg": "35.625598", + "longitude_deg": "139.740145", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338870", + "ident": "JP-0908", + "type": "heliport", + "name": "Shinagawa V Tower Helipad", + "latitude_deg": "35.62511", + "longitude_deg": "139.740563", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338872", + "ident": "JP-0909", + "type": "heliport", + "name": "Shinagawa Intercity A Helipad", + "latitude_deg": "35.625253", + "longitude_deg": "139.742097", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338873", + "ident": "JP-0910", + "type": "heliport", + "name": "Shinagawa Tower Face Helipad", + "latitude_deg": "35.625737", + "longitude_deg": "139.745391", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338874", + "ident": "JP-0911", + "type": "heliport", + "name": "Shinagawa Intercity B Helipad", + "latitude_deg": "35.626357", + "longitude_deg": "139.742049", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338875", + "ident": "JP-0912", + "type": "heliport", + "name": "NBF Shinagawa Tower Helipad", + "latitude_deg": "35.62603", + "longitude_deg": "139.740686", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338876", + "ident": "JP-0913", + "type": "heliport", + "name": "Shinagawa Grand Central Tower Helipad", + "latitude_deg": "35.626696", + "longitude_deg": "139.740445", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338877", + "ident": "JP-0914", + "type": "heliport", + "name": "Taiyo Life Shinagawa Building Helipad", + "latitude_deg": "35.627176", + "longitude_deg": "139.740525", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338878", + "ident": "JP-0915", + "type": "heliport", + "name": "Shinagawa East One Tower Helipad", + "latitude_deg": "35.62763", + "longitude_deg": "139.740729", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338879", + "ident": "JP-0916", + "type": "heliport", + "name": "Shinagawa Intercity Tower Helipad", + "latitude_deg": "35.627617", + "longitude_deg": "139.742006", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338880", + "ident": "JP-0917", + "type": "heliport", + "name": "AReA Shinagawa Helipad", + "latitude_deg": "35.63001", + "longitude_deg": "139.74116", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338881", + "ident": "JP-0918", + "type": "heliport", + "name": "Shinagawa HEART Helipad", + "latitude_deg": "35.629858", + "longitude_deg": "139.744527", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338883", + "ident": "JP-0919", + "type": "heliport", + "name": "Shinagawa Front Building Helipad", + "latitude_deg": "35.629021", + "longitude_deg": "139.744179", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338884", + "ident": "JP-0920", + "type": "heliport", + "name": "Shibaura Crystal Shinagawa Konan Helipad", + "latitude_deg": "35.629631", + "longitude_deg": "139.745284", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338885", + "ident": "JP-0921", + "type": "heliport", + "name": "Sony City Helipad", + "latitude_deg": "35.631114", + "longitude_deg": "139.744002", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338886", + "ident": "JP-0922", + "type": "heliport", + "name": "NTT Shinagawa Twins Annex Building Helipad", + "latitude_deg": "35.63139", + "longitude_deg": "139.74259", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338887", + "ident": "JP-0923", + "type": "heliport", + "name": "City Tower Shinagawa Helipad", + "latitude_deg": "35.63119", + "longitude_deg": "139.74784", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338888", + "ident": "JP-0924", + "type": "heliport", + "name": "Cosmopolis Shinagawa Helipad", + "latitude_deg": "35.63191", + "longitude_deg": "139.74804", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338889", + "ident": "JP-0925", + "type": "heliport", + "name": "Favorich Tower Shinagawa Helipad", + "latitude_deg": "35.63177", + "longitude_deg": "139.74933", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338890", + "ident": "JP-0926", + "type": "heliport", + "name": "Kametomori Helipad", + "latitude_deg": "35.63299", + "longitude_deg": "139.74957", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "338891", + "ident": "JP-0927", + "type": "heliport", + "name": "Park Tower Shinagawa Bayward Helipad", + "latitude_deg": "35.63409", + "longitude_deg": "139.748", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "339029", + "ident": "JP-0928", + "type": "heliport", + "name": "Nissay Aroma Square Building Helipad", + "latitude_deg": "35.560933", + "longitude_deg": "139.718413", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Ota, Tokyo", + "scheduled_service": "no" + }, + { + "id": "339030", + "ident": "JP-0929", + "type": "heliport", + "name": "Tokyo University of Technology Kamata Campus Helipad", + "latitude_deg": "35.56452", + "longitude_deg": "139.7157", + "elevation_ft": "4", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Ota, Tokyo", + "scheduled_service": "no" + }, + { + "id": "339031", + "ident": "JP-0930", + "type": "heliport", + "name": "Osaki Garden Tower Helipad", + "latitude_deg": "35.61532", + "longitude_deg": "139.730843", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "339032", + "ident": "JP-0931", + "type": "heliport", + "name": "Takanawa Residence Helipad", + "latitude_deg": "35.636224", + "longitude_deg": "139.73185", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "339033", + "ident": "JP-0932", + "type": "heliport", + "name": "NTT Docomo Shinagawa Building Helipad", + "latitude_deg": "35.63268", + "longitude_deg": "139.7419", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "339034", + "ident": "JP-0933", + "type": "heliport", + "name": "Shinagawa Season Terrace Helipad", + "latitude_deg": "35.63273", + "longitude_deg": "139.74321", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "339035", + "ident": "JP-0934", + "type": "heliport", + "name": "Capital Mark Tower", + "latitude_deg": "35.64122", + "longitude_deg": "139.74654", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "339102", + "ident": "JP-0935", + "type": "heliport", + "name": "MM Towers West Helipad", + "latitude_deg": "35.460915", + "longitude_deg": "139.631875", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339103", + "ident": "JP-0936", + "type": "heliport", + "name": "MM Towers East Helipad", + "latitude_deg": "35.460757", + "longitude_deg": "139.63269", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339104", + "ident": "JP-0937", + "type": "heliport", + "name": "MM Towers South Helipad", + "latitude_deg": "35.460014", + "longitude_deg": "139.632626", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339105", + "ident": "JP-0938", + "type": "heliport", + "name": "MM Towers Foresis R Helipad", + "latitude_deg": "35.459818", + "longitude_deg": "139.631537", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339106", + "ident": "JP-0939", + "type": "heliport", + "name": "Keiyu Hospital Helipad", + "latitude_deg": "35.459451", + "longitude_deg": "139.633516", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339107", + "ident": "JP-0940", + "type": "heliport", + "name": "Minatomirai Business Square Helipad", + "latitude_deg": "35.458975", + "longitude_deg": "139.632363", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339108", + "ident": "JP-0941", + "type": "heliport", + "name": "Branz Tower Minatomirai Helipad", + "latitude_deg": "35.458643", + "longitude_deg": "139.634144", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339109", + "ident": "JP-0942", + "type": "heliport", + "name": "Wayslinks Helipad", + "latitude_deg": "35.458171", + "longitude_deg": "139.63416", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339110", + "ident": "JP-0943", + "type": "heliport", + "name": "Minatomirai Center Building Helipad", + "latitude_deg": "35.457743", + "longitude_deg": "139.633473", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339111", + "ident": "JP-0944", + "type": "heliport", + "name": "Queen Alice Yokohama Bay Hotel Tokyu Helipad", + "latitude_deg": "35.456851", + "longitude_deg": "139.635394", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339112", + "ident": "JP-0945", + "type": "heliport", + "name": "Queens Tower C Helipad", + "latitude_deg": "35.457144", + "longitude_deg": "139.63439", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339113", + "ident": "JP-0946", + "type": "heliport", + "name": "Queens Tower B Helipad", + "latitude_deg": "35.45651", + "longitude_deg": "139.633918", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339114", + "ident": "JP-0947", + "type": "heliport", + "name": "Queens Tower A Helipad", + "latitude_deg": "35.455838", + "longitude_deg": "139.633237", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339115", + "ident": "JP-0948", + "type": "heliport", + "name": "Yokohama Joint Government Building #2 Helipad", + "latitude_deg": "35.450698", + "longitude_deg": "139.63711", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339116", + "ident": "JP-0949", + "type": "heliport", + "name": "Yokohama Island Tower Helipad", + "latitude_deg": "35.450183", + "longitude_deg": "139.635168", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339117", + "ident": "JP-0950", + "type": "heliport", + "name": "Kanagawa Small Business Center Helipad", + "latitude_deg": "35.446997", + "longitude_deg": "139.633639", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339118", + "ident": "JP-0951", + "type": "heliport", + "name": "Yokohama City Tower Bashamichi Helipad", + "latitude_deg": "35.44597", + "longitude_deg": "139.634476", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339119", + "ident": "JP-0952", + "type": "heliport", + "name": "Brillia Grande Minatomirai Ocean Front Tower Helipad", + "latitude_deg": "35.46174", + "longitude_deg": "139.63235", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339120", + "ident": "JP-0953", + "type": "heliport", + "name": "Brillia Grande Minatomirai Park Front Tower Helipad", + "latitude_deg": "35.46174", + "longitude_deg": "139.631633", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339121", + "ident": "JP-0954", + "type": "heliport", + "name": "Pacific Royal Court MM Urban Tower Helipad", + "latitude_deg": "35.462496", + "longitude_deg": "139.631606", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339122", + "ident": "JP-0955", + "type": "heliport", + "name": "Pacific Royal Court MM Ocean Tower Helipad", + "latitude_deg": "35.462496", + "longitude_deg": "139.632347", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339123", + "ident": "JP-0956", + "type": "heliport", + "name": "Blue Harbor Tower Minatomirai Helipad", + "latitude_deg": "35.463322", + "longitude_deg": "139.632787", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339124", + "ident": "JP-0957", + "type": "heliport", + "name": "MM Towers Foresis L Helipad", + "latitude_deg": "35.460823", + "longitude_deg": "139.630743", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339125", + "ident": "JP-0958", + "type": "heliport", + "name": "Yokohama City University Hospital Helipad", + "latitude_deg": "35.43366", + "longitude_deg": "139.62515", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339126", + "ident": "JP-0959", + "type": "heliport", + "name": "Totsukawa Heliport", + "latitude_deg": "33.97199", + "longitude_deg": "135.71058", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-29", + "municipality": "Totsukawa", + "scheduled_service": "no" + }, + { + "id": "339222", + "ident": "JP-0960", + "type": "heliport", + "name": "Hanyu General Hospital Helipad", + "latitude_deg": "36.1606", + "longitude_deg": "139.52802", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Hanyu", + "scheduled_service": "no" + }, + { + "id": "339223", + "ident": "JP-0961", + "type": "heliport", + "name": "Japan Coast Guard School Helipad", + "latitude_deg": "35.49204", + "longitude_deg": "135.35359", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Maizuru", + "scheduled_service": "no" + }, + { + "id": "339225", + "ident": "JP-0962", + "type": "heliport", + "name": "Hasu Dam Helipad", + "latitude_deg": "34.37516", + "longitude_deg": "136.19591", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Matsusaka", + "scheduled_service": "no" + }, + { + "id": "339226", + "ident": "JP-0963", + "type": "heliport", + "name": "Seiwataki IC / Mie Prefectural Police Helipad", + "latitude_deg": "34.46142", + "longitude_deg": "136.5097", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Taki", + "scheduled_service": "no" + }, + { + "id": "339227", + "ident": "JP-0964", + "type": "heliport", + "name": "Takisawa Heliport", + "latitude_deg": "34.85225", + "longitude_deg": "137.72885", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Hamamatsu", + "scheduled_service": "no" + }, + { + "id": "339228", + "ident": "JP-0965", + "type": "heliport", + "name": "Takidaninomine Helipad", + "latitude_deg": "35.88423", + "longitude_deg": "138.99845", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Okutama", + "scheduled_service": "no" + }, + { + "id": "339229", + "ident": "JP-0966", + "type": "heliport", + "name": "Lake Okutama Heliport", + "latitude_deg": "35.79187", + "longitude_deg": "139.0479", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Okutama", + "scheduled_service": "no" + }, + { + "id": "339230", + "ident": "JP-0967", + "type": "heliport", + "name": "Otaba Heliport", + "latitude_deg": "35.85977", + "longitude_deg": "139.13781", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Okutama", + "scheduled_service": "no" + }, + { + "id": "339231", + "ident": "JP-0968", + "type": "heliport", + "name": "Okutama Fire Heliport", + "latitude_deg": "35.81257", + "longitude_deg": "139.08711", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Okutama", + "scheduled_service": "no" + }, + { + "id": "339232", + "ident": "JP-0969", + "type": "heliport", + "name": "Nasluck Company Helipad", + "latitude_deg": "35.35177", + "longitude_deg": "132.70134", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Izumo", + "scheduled_service": "no" + }, + { + "id": "339233", + "ident": "JP-0970", + "type": "heliport", + "name": "Kishiwada Service Area Helipad", + "latitude_deg": "34.40506", + "longitude_deg": "135.43559", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Kishiwada", + "scheduled_service": "no" + }, + { + "id": "339234", + "ident": "JP-0971", + "type": "heliport", + "name": "Kishiwada Tokushukai Hospital Helipad", + "latitude_deg": "34.47143", + "longitude_deg": "135.39215", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Kishiwada", + "scheduled_service": "no" + }, + { + "id": "339236", + "ident": "JP-0972", + "type": "closed", + "name": "Izumisano Airfield", + "latitude_deg": "34.39678", + "longitude_deg": "135.31634", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Izumisano", + "scheduled_service": "no" + }, + { + "id": "339238", + "ident": "JP-0973", + "type": "heliport", + "name": "Kinan Hospital Helipad", + "latitude_deg": "33.73014", + "longitude_deg": "135.40348", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Tanabe", + "scheduled_service": "no" + }, + { + "id": "339239", + "ident": "JP-0974", + "type": "heliport", + "name": "Gomasan Helipad", + "latitude_deg": "34.06214", + "longitude_deg": "135.56409", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Tanabe", + "scheduled_service": "no" + }, + { + "id": "339240", + "ident": "JP-0975", + "type": "heliport", + "name": "Hongu Helipad", + "latitude_deg": "33.83646", + "longitude_deg": "135.76942", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Tanabe", + "scheduled_service": "no" + }, + { + "id": "339242", + "ident": "JP-0976", + "type": "heliport", + "name": "Susami Sports Park Helipad", + "latitude_deg": "33.55488", + "longitude_deg": "135.48023", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Susami", + "scheduled_service": "no" + }, + { + "id": "339243", + "ident": "JP-0977", + "type": "heliport", + "name": "Susami Onsen Hotel Helipad", + "latitude_deg": "33.55375", + "longitude_deg": "135.48102", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Susami", + "scheduled_service": "no" + }, + { + "id": "339251", + "ident": "JP-0978", + "type": "heliport", + "name": "Kii-nagashima-manbo Roadside Station Helipad", + "latitude_deg": "34.21757", + "longitude_deg": "136.34763", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Kihoku", + "scheduled_service": "no" + }, + { + "id": "339252", + "ident": "JP-0979", + "type": "heliport", + "name": "Japan Red Cross Gifu Hospital Heliport", + "latitude_deg": "35.43369", + "longitude_deg": "136.75522", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Gifu", + "scheduled_service": "no" + }, + { + "id": "339253", + "ident": "JP-0980", + "type": "heliport", + "name": "NHO Yanai Medical Center Heliport", + "latitude_deg": "33.91266", + "longitude_deg": "132.12904", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Yanai", + "scheduled_service": "no" + }, + { + "id": "339254", + "ident": "JP-0981", + "type": "heliport", + "name": "Matsue North Fire Department East Branch Helipad", + "latitude_deg": "35.5356", + "longitude_deg": "133.16953", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Matsue", + "scheduled_service": "no" + }, + { + "id": "339256", + "ident": "JP-0982", + "type": "heliport", + "name": "Tokuyama Central Hospital Helipad", + "latitude_deg": "34.04681", + "longitude_deg": "131.834564", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Shunan", + "scheduled_service": "no" + }, + { + "id": "339257", + "ident": "JP-0983", + "type": "heliport", + "name": "Nagashima Helipad", + "latitude_deg": "33.82147", + "longitude_deg": "132.06996", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Kaminoseki", + "scheduled_service": "no" + }, + { + "id": "339273", + "ident": "JP-0984", + "type": "heliport", + "name": "Manze Heliport", + "latitude_deg": "34.87634", + "longitude_deg": "137.87118", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Iwata", + "scheduled_service": "no" + }, + { + "id": "339340", + "ident": "JP-0985", + "type": "heliport", + "name": "Tokai University Hachioji Hospital Helipad", + "latitude_deg": "35.67374", + "longitude_deg": "139.35704", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Hachioji", + "scheduled_service": "no" + }, + { + "id": "339341", + "ident": "JP-0986", + "type": "heliport", + "name": "Yugimachi First Aid Helipad", + "latitude_deg": "35.7969", + "longitude_deg": "139.19771", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Ome", + "scheduled_service": "no" + }, + { + "id": "339342", + "ident": "JP-0987", + "type": "heliport", + "name": "Nagaodaira Heliport", + "latitude_deg": "35.78056", + "longitude_deg": "139.15134", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Ome", + "scheduled_service": "no" + }, + { + "id": "339343", + "ident": "JP-0988", + "type": "heliport", + "name": "Ome Municipal General Hospital Helipad", + "latitude_deg": "35.7831", + "longitude_deg": "139.28066", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Ome", + "scheduled_service": "no" + }, + { + "id": "339344", + "ident": "JP-0989", + "type": "heliport", + "name": "Tokyo Medical University Hachioji Medical Care Center", + "latitude_deg": "35.63176", + "longitude_deg": "139.28795", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Hachioji", + "scheduled_service": "no" + }, + { + "id": "339345", + "ident": "JP-0990", + "type": "heliport", + "name": "Akiyama Heliport", + "latitude_deg": "35.57755", + "longitude_deg": "139.1032", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Uenohara", + "scheduled_service": "no" + }, + { + "id": "339346", + "ident": "JP-0991", + "type": "heliport", + "name": "Tokyo University Hospital Helipad", + "latitude_deg": "35.711025", + "longitude_deg": "139.76635", + "elevation_ft": "473", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Bunkyo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "339347", + "ident": "JP-0992", + "type": "heliport", + "name": "Wangan Nagashima IC Helipad", + "latitude_deg": "35.03775", + "longitude_deg": "136.72878", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Kuwana", + "scheduled_service": "no" + }, + { + "id": "339348", + "ident": "JP-0993", + "type": "heliport", + "name": "Nagasihima Heliport", + "latitude_deg": "35.07665", + "longitude_deg": "136.71137", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Kuwana", + "scheduled_service": "no" + }, + { + "id": "339350", + "ident": "JP-0994", + "type": "heliport", + "name": "Kuwaze Helipad", + "latitude_deg": "33.80522", + "longitude_deg": "133.27342", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Ino", + "scheduled_service": "no" + }, + { + "id": "339351", + "ident": "JP-0995", + "type": "heliport", + "name": "Yokkaichi-minami Heliport", + "latitude_deg": "34.95536", + "longitude_deg": "136.61254", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Yokkaichi", + "scheduled_service": "no" + }, + { + "id": "339352", + "ident": "JP-0996", + "type": "heliport", + "name": "Mie Prefectural General Medical Center Helipad", + "latitude_deg": "34.94296", + "longitude_deg": "136.58959", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Yokkaichi", + "scheduled_service": "no" + }, + { + "id": "339353", + "ident": "JP-0997", + "type": "heliport", + "name": "Suzumine Fire Station Helipad", + "latitude_deg": "34.94161", + "longitude_deg": "136.46985", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Suzuka", + "scheduled_service": "no" + }, + { + "id": "339354", + "ident": "JP-0998", + "type": "heliport", + "name": "Kasado Reservoir Heliport", + "latitude_deg": "34.89793", + "longitude_deg": "136.52596", + "elevation_ft": "154", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Suzuka", + "scheduled_service": "no" + }, + { + "id": "339355", + "ident": "JP-0999", + "type": "heliport", + "name": "Suzuka Circuit Auxiliary Helipad", + "latitude_deg": "34.84457", + "longitude_deg": "136.53797", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Suzuka", + "scheduled_service": "no" + }, + { + "id": "339356", + "ident": "JP-1000", + "type": "heliport", + "name": "Suzuka Circuit SRS Helipad", + "latitude_deg": "34.84337", + "longitude_deg": "136.5344", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Suzuka", + "scheduled_service": "no" + }, + { + "id": "339357", + "ident": "JP-1001", + "type": "heliport", + "name": "Suzuka Central General Hospital Heliport", + "latitude_deg": "34.86518", + "longitude_deg": "136.56879", + "elevation_ft": "46", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Suzuka", + "scheduled_service": "no" + }, + { + "id": "339358", + "ident": "JP-1002", + "type": "heliport", + "name": "Suzuka Riverside Emergency Heliport", + "latitude_deg": "34.88609", + "longitude_deg": "136.53539", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Suzuka", + "scheduled_service": "no" + }, + { + "id": "339359", + "ident": "JP-1003", + "type": "heliport", + "name": "Tsuchiyama SA Heliport", + "latitude_deg": "34.91147", + "longitude_deg": "136.29404", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Koka", + "scheduled_service": "no" + }, + { + "id": "339360", + "ident": "JP-1004", + "type": "heliport", + "name": "Kokawa Heliport", + "latitude_deg": "34.33634", + "longitude_deg": "135.41766", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Kinokawa", + "scheduled_service": "no" + }, + { + "id": "339361", + "ident": "JP-1005", + "type": "closed", + "name": "Kokawa Airfield", + "latitude_deg": "34.24779", + "longitude_deg": "135.36012", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Kinokawa", + "scheduled_service": "no" + }, + { + "id": "339362", + "ident": "JP-1006", + "type": "heliport", + "name": "Kyoto City Hospital Heliport", + "latitude_deg": "34.99726", + "longitude_deg": "135.73528", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kyoto", + "scheduled_service": "no" + }, + { + "id": "339363", + "ident": "JP-1007", + "type": "heliport", + "name": "Kyoto University Hospital Helipad", + "latitude_deg": "35.01921", + "longitude_deg": "135.77663", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kyoto", + "scheduled_service": "no" + }, + { + "id": "339364", + "ident": "JP-1008", + "type": "heliport", + "name": "Japan Red Cross Kyoto 1st Hospital Helipad", + "latitude_deg": "34.9812", + "longitude_deg": "135.77261", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kyoto", + "scheduled_service": "no" + }, + { + "id": "339365", + "ident": "JP-1009", + "type": "heliport", + "name": "JPD Kyoto Heliport", + "latitude_deg": "34.9144", + "longitude_deg": "135.74349", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kyoto", + "scheduled_service": "no" + }, + { + "id": "339366", + "ident": "JP-1010", + "type": "small_airport", + "name": "Kyoto Gliderport", + "latitude_deg": "34.91961", + "longitude_deg": "135.75576", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kyoto", + "scheduled_service": "no" + }, + { + "id": "339367", + "ident": "JP-1011", + "type": "heliport", + "name": "Kyoto City Fire Department Helipad", + "latitude_deg": "34.91816", + "longitude_deg": "135.73868", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kyoto", + "scheduled_service": "no" + }, + { + "id": "339368", + "ident": "JP-1012", + "type": "closed", + "name": "Kyoto Airfield / Kyoto Aircraft Training Crew Center", + "latitude_deg": "34.88287", + "longitude_deg": "135.75192", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kumiyama", + "scheduled_service": "no" + }, + { + "id": "339369", + "ident": "JP-1013", + "type": "heliport", + "name": "Keihoku Heliport", + "latitude_deg": "35.17584", + "longitude_deg": "135.6257", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kyoto", + "scheduled_service": "no" + }, + { + "id": "339370", + "ident": "JP-1014", + "type": "heliport", + "name": "Kyoto Okamoto Memorial Hospital Helipad", + "latitude_deg": "34.87382", + "longitude_deg": "135.74781", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kumiyama", + "scheduled_service": "no" + }, + { + "id": "339371", + "ident": "JP-1015", + "type": "heliport", + "name": "Kyoto Prefectural Police Air Base Heliport", + "latitude_deg": "34.89623", + "longitude_deg": "135.75602", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kumiyama", + "scheduled_service": "no" + }, + { + "id": "339372", + "ident": "JP-1016", + "type": "closed", + "name": "Kizugawa Airfield", + "latitude_deg": "34.62967", + "longitude_deg": "135.46049", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "339373", + "ident": "JP-1017", + "type": "closed", + "name": "Maishima Airfield", + "latitude_deg": "34.66777", + "longitude_deg": "135.39221", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "339505", + "ident": "JP-1018", + "type": "heliport", + "name": "Colette Mare Helipad", + "latitude_deg": "35.45263", + "longitude_deg": "139.630383", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339506", + "ident": "JP-1019", + "type": "heliport", + "name": "Prefectural Mutual Aid Building Helipad", + "latitude_deg": "35.453071", + "longitude_deg": "139.630952", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "339656", + "ident": "JP-1020", + "type": "heliport", + "name": "Otaru General Hospital Helipad", + "latitude_deg": "43.18544", + "longitude_deg": "141.00728", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Otaru", + "scheduled_service": "no" + }, + { + "id": "339657", + "ident": "JP-1021", + "type": "heliport", + "name": "Suttsu Heliport", + "latitude_deg": "42.78971", + "longitude_deg": "140.23064", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Suttsu", + "scheduled_service": "no" + }, + { + "id": "339658", + "ident": "JP-1022", + "type": "heliport", + "name": "Setana Heliport", + "latitude_deg": "42.45139", + "longitude_deg": "139.84834", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Setana", + "scheduled_service": "no" + }, + { + "id": "339659", + "ident": "JP-1023", + "type": "heliport", + "name": "Kafuka Harbor Heliport", + "latitude_deg": "45.29635", + "longitude_deg": "141.04496", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Rebun", + "scheduled_service": "no" + }, + { + "id": "339660", + "ident": "JP-1024", + "type": "heliport", + "name": "Tsunekami Heliport", + "latitude_deg": "35.63742", + "longitude_deg": "135.82335", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Wakasa", + "scheduled_service": "no" + }, + { + "id": "339661", + "ident": "JP-1025", + "type": "closed", + "name": "Hamaonishibetsu Airfield", + "latitude_deg": "45.329", + "longitude_deg": "142.16845", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Sarufutsu", + "scheduled_service": "no", + "keywords": "Asachino Number 2" + }, + { + "id": "339662", + "ident": "JP-1026", + "type": "closed", + "name": "Asajino Airfield", + "latitude_deg": "45.19299", + "longitude_deg": "142.2399", + "elevation_ft": "63", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Hamatonbetsu", + "scheduled_service": "no", + "wikipedia_link": "https://ja.wikipedia.org/wiki/%E6%B5%85%E8%8C%85%E9%87%8E%E9%A3%9B%E8%A1%8C%E5%A0%B4", + "keywords": "Asachino Number 1" + }, + { + "id": "339663", + "ident": "JP-1027", + "type": "heliport", + "name": "Rishiri Heliport", + "latitude_deg": "45.16183", + "longitude_deg": "141.14855", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Rishiri", + "scheduled_service": "no" + }, + { + "id": "339664", + "ident": "JP-1028", + "type": "heliport", + "name": "Toyotomi Heliport", + "latitude_deg": "45.10043", + "longitude_deg": "141.75893", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Toyotomi", + "scheduled_service": "no" + }, + { + "id": "339665", + "ident": "JP-1029", + "type": "heliport", + "name": "Mukawa-Hobetsu IC Heliport", + "latitude_deg": "42.91985", + "longitude_deg": "142.19611", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Mukawa", + "scheduled_service": "no" + }, + { + "id": "339666", + "ident": "JP-1030", + "type": "heliport", + "name": "Sunagawa Heliport", + "latitude_deg": "43.48304", + "longitude_deg": "141.87975", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Sunagawa", + "scheduled_service": "no" + }, + { + "id": "339667", + "ident": "JP-1031", + "type": "heliport", + "name": "Shintotsukawa Heliport", + "latitude_deg": "43.55311", + "longitude_deg": "141.86783", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Shintotsukawa", + "scheduled_service": "no" + }, + { + "id": "339668", + "ident": "JP-1032", + "type": "heliport", + "name": "Kyoei Heliport", + "latitude_deg": "44.65801", + "longitude_deg": "141.92491", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Enbetsu", + "scheduled_service": "no" + }, + { + "id": "339669", + "ident": "JP-1033", + "type": "heliport", + "name": "Kengyuchusha Park Heliport", + "latitude_deg": "44.67634", + "longitude_deg": "142.59382", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Esashi, Esashi District", + "scheduled_service": "no" + }, + { + "id": "339670", + "ident": "JP-1034", + "type": "heliport", + "name": "Fureppu Heliport", + "latitude_deg": "44.67145", + "longitude_deg": "142.61593", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Esashi, Esashi District", + "scheduled_service": "no" + }, + { + "id": "339671", + "ident": "JP-1035", + "type": "heliport", + "name": "Taisei Heliport", + "latitude_deg": "42.22635", + "longitude_deg": "139.82365", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Setana", + "scheduled_service": "no" + }, + { + "id": "339672", + "ident": "JP-1036", + "type": "heliport", + "name": "Chubetsu Dam Heliport", + "latitude_deg": "43.626", + "longitude_deg": "142.67807", + "elevation_ft": "1393", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Biei", + "scheduled_service": "no" + }, + { + "id": "339673", + "ident": "JP-1037", + "type": "heliport", + "name": "Sounkyo Heliport", + "latitude_deg": "43.64244", + "longitude_deg": "143.02086", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Kamikawa", + "scheduled_service": "no" + }, + { + "id": "339674", + "ident": "JP-1038", + "type": "heliport", + "name": "Takinoue Sightseeing Heliport", + "latitude_deg": "44.19714", + "longitude_deg": "143.07366", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Takinoe", + "scheduled_service": "no" + }, + { + "id": "339675", + "ident": "JP-1039", + "type": "heliport", + "name": "Nakashibetsu Heliport", + "latitude_deg": "43.61855", + "longitude_deg": "144.83075", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Nakashibetsu", + "scheduled_service": "no" + }, + { + "id": "339676", + "ident": "JP-1040", + "type": "heliport", + "name": "Shibecha Riverside Emergency Heliport", + "latitude_deg": "43.3057", + "longitude_deg": "144.60919", + "elevation_ft": "79", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Shibecha", + "scheduled_service": "no" + }, + { + "id": "339677", + "ident": "JP-1041", + "type": "heliport", + "name": "Ashoro Heliport", + "latitude_deg": "43.24034", + "longitude_deg": "143.5037", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Ashoro", + "scheduled_service": "no" + }, + { + "id": "339678", + "ident": "JP-1042", + "type": "heliport", + "name": "Tokachi Dam Heliport", + "latitude_deg": "43.23982", + "longitude_deg": "142.93629", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Shintoku", + "scheduled_service": "no" + }, + { + "id": "339679", + "ident": "JP-1043", + "type": "heliport", + "name": "Kanoko Dam Heliport", + "latitude_deg": "43.60611", + "longitude_deg": "143.38752", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Oketo", + "scheduled_service": "no" + }, + { + "id": "339680", + "ident": "JP-1044", + "type": "closed", + "name": "IJN Bihoro Airfield #3", + "latitude_deg": "43.8814", + "longitude_deg": "144.45938", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Koshimizu", + "scheduled_service": "no" + }, + { + "id": "339681", + "ident": "JP-1045", + "type": "small_airport", + "name": "JGDSF Camp Bihoro Airfield", + "latitude_deg": "43.82618", + "longitude_deg": "144.16707", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Bihoro", + "scheduled_service": "no", + "keywords": "IJN Bihoro Airfield #1" + }, + { + "id": "339682", + "ident": "JP-1046", + "type": "heliport", + "name": "Monbetsu Regional Hospital Helipad", + "latitude_deg": "44.36141", + "longitude_deg": "143.34743", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Monbetsu", + "scheduled_service": "no" + }, + { + "id": "339683", + "ident": "JP-1047", + "type": "heliport", + "name": "Ten'nei Heliport", + "latitude_deg": "43.00611", + "longitude_deg": "144.43325", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Kushiro", + "scheduled_service": "no" + }, + { + "id": "339684", + "ident": "JP-1048", + "type": "closed", + "name": "Yoshino Airfield", + "latitude_deg": "42.77076", + "longitude_deg": "143.59148", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Urahoro", + "scheduled_service": "no" + }, + { + "id": "339685", + "ident": "JP-1049", + "type": "closed", + "name": "MIC Toyokoro Airfield", + "latitude_deg": "42.79607", + "longitude_deg": "143.49195", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Toyokoro", + "scheduled_service": "no" + }, + { + "id": "339686", + "ident": "JP-1050", + "type": "heliport", + "name": "Tomiuchi Heliport", + "latitude_deg": "42.78445", + "longitude_deg": "142.22043", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Mukawa", + "scheduled_service": "no" + }, + { + "id": "339687", + "ident": "JP-1051", + "type": "closed", + "name": "Asahimachi Airfield", + "latitude_deg": "42.63154", + "longitude_deg": "141.60901", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Tomakomai", + "scheduled_service": "no", + "keywords": "Tomakomai Emergency Airfield" + }, + { + "id": "339688", + "ident": "JP-1052", + "type": "closed", + "name": "Numanohata Airfield", + "latitude_deg": "42.66466", + "longitude_deg": "141.70982", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Tomakomai", + "scheduled_service": "no" + }, + { + "id": "339689", + "ident": "JP-1053", + "type": "heliport", + "name": "Shiretoko Heliport", + "latitude_deg": "44.06846", + "longitude_deg": "145.00432", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Shari", + "scheduled_service": "no" + }, + { + "id": "339690", + "ident": "JP-1054", + "type": "heliport", + "name": "Shirahama Heliport", + "latitude_deg": "34.77869", + "longitude_deg": "134.71223", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Himeji", + "scheduled_service": "no" + }, + { + "id": "339691", + "ident": "JP-1055", + "type": "closed", + "name": "Tasoura Heliport", + "latitude_deg": "34.29245", + "longitude_deg": "136.68621", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Minamiise", + "scheduled_service": "no" + }, + { + "id": "339693", + "ident": "JP-1056", + "type": "heliport", + "name": "Kameoka Special Heliport", + "latitude_deg": "35.01184", + "longitude_deg": "135.60469", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kameoka", + "scheduled_service": "no" + }, + { + "id": "339694", + "ident": "JP-1057", + "type": "heliport", + "name": "Silo Observation Deck Special Heliport", + "latitude_deg": "42.62611", + "longitude_deg": "140.80074", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Toyako", + "scheduled_service": "no" + }, + { + "id": "339695", + "ident": "JP-1058", + "type": "heliport", + "name": "Higashimokoto Special Heliport", + "latitude_deg": "43.78265", + "longitude_deg": "144.31329", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Ozora", + "scheduled_service": "no" + }, + { + "id": "339696", + "ident": "JP-1059", + "type": "heliport", + "name": "Bandaisan 3D World Heliport", + "latitude_deg": "37.65875", + "longitude_deg": "140.07845", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Kitashiobara", + "scheduled_service": "no" + }, + { + "id": "339697", + "ident": "JP-1060", + "type": "closed", + "name": "Kashikojima Heliport", + "latitude_deg": "34.315731", + "longitude_deg": "136.819879", + "elevation_ft": "8", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Shima", + "scheduled_service": "no" + }, + { + "id": "339698", + "ident": "JP-1061", + "type": "heliport", + "name": "Oshamanbe Heliport", + "latitude_deg": "42.518406", + "longitude_deg": "140.366521", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Oshamanbe", + "scheduled_service": "no" + }, + { + "id": "339699", + "ident": "JP-1062", + "type": "heliport", + "name": "Kuromatsunai Heliport", + "latitude_deg": "42.682514", + "longitude_deg": "140.30292", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Kuromatsunai", + "scheduled_service": "no" + }, + { + "id": "339700", + "ident": "JP-1063", + "type": "heliport", + "name": "Kyoaikai Hospital Helipad", + "latitude_deg": "41.785153", + "longitude_deg": "140.740255", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Hakodate", + "scheduled_service": "no" + }, + { + "id": "339702", + "ident": "JP-1064", + "type": "heliport", + "name": "Rokkasho Municipal Medical Center Heliport", + "latitude_deg": "40.96942", + "longitude_deg": "141.37051", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Rokkasho", + "scheduled_service": "no" + }, + { + "id": "339703", + "ident": "JP-1065", + "type": "heliport", + "name": "Hachinohe Heliport", + "latitude_deg": "40.49237", + "longitude_deg": "141.51534", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Hachinohe", + "scheduled_service": "no" + }, + { + "id": "339704", + "ident": "JP-1066", + "type": "heliport", + "name": "Aomori Senior Hospital Heliport", + "latitude_deg": "40.51679", + "longitude_deg": "141.54492", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Hachinohe", + "scheduled_service": "no" + }, + { + "id": "339705", + "ident": "JP-1067", + "type": "heliport", + "name": "Kuji Hospital Heliport", + "latitude_deg": "40.19989", + "longitude_deg": "141.77999", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Kuji", + "scheduled_service": "no" + }, + { + "id": "339706", + "ident": "JP-1068", + "type": "heliport", + "name": "Iwate Prefectural Miyako Hospital Helipad", + "latitude_deg": "39.66052", + "longitude_deg": "141.95122", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Miyako", + "scheduled_service": "no" + }, + { + "id": "339707", + "ident": "JP-1069", + "type": "heliport", + "name": "Iwate Prefectural Ofunato Hospital Helipad", + "latitude_deg": "39.07173", + "longitude_deg": "141.7075", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Ofunato", + "scheduled_service": "no" + }, + { + "id": "339708", + "ident": "JP-1070", + "type": "heliport", + "name": "Rikuzentakata Heliport", + "latitude_deg": "39.027302", + "longitude_deg": "141.624252", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Rikuzentakata", + "scheduled_service": "no" + }, + { + "id": "339709", + "ident": "JP-1071", + "type": "heliport", + "name": "Kesennuma Municipal Hospital Helipad", + "latitude_deg": "38.88748", + "longitude_deg": "141.56481", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Kesennuma", + "scheduled_service": "no" + }, + { + "id": "339710", + "ident": "JP-1072", + "type": "heliport", + "name": "Ishinomaki Municipal Hospital Helipad", + "latitude_deg": "38.43495", + "longitude_deg": "141.30152", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Ishinomaki", + "scheduled_service": "no" + }, + { + "id": "339711", + "ident": "JP-1073", + "type": "heliport", + "name": "Japan Red Cross Ishinomaki Hospital Helipad", + "latitude_deg": "38.45976", + "longitude_deg": "141.28052", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Ishinomaki", + "scheduled_service": "no" + }, + { + "id": "339712", + "ident": "JP-1074", + "type": "heliport", + "name": "Sendai City Hospital Helipad", + "latitude_deg": "38.23197", + "longitude_deg": "140.88857", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Sendai", + "scheduled_service": "no" + }, + { + "id": "339713", + "ident": "JP-1075", + "type": "heliport", + "name": "Miyagi Prefectural Heliport", + "latitude_deg": "38.268574", + "longitude_deg": "140.872074", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Sendai", + "scheduled_service": "no" + }, + { + "id": "339714", + "ident": "JP-1076", + "type": "heliport", + "name": "Tohoku District Police Bureau Heliport", + "latitude_deg": "38.26743", + "longitude_deg": "140.87297", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Sendai", + "scheduled_service": "no" + }, + { + "id": "339715", + "ident": "JP-1077", + "type": "heliport", + "name": "Sendai Open Hospital", + "latitude_deg": "38.29444", + "longitude_deg": "140.91746", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Sendai", + "scheduled_service": "no" + }, + { + "id": "339716", + "ident": "JP-1078", + "type": "heliport", + "name": "Minamisoma Municipal General Hospital Helipad", + "latitude_deg": "37.63684", + "longitude_deg": "140.98535", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Minamisoma", + "scheduled_service": "no" + }, + { + "id": "339717", + "ident": "JP-1079", + "type": "heliport", + "name": "Futaba Medical Center Helipad", + "latitude_deg": "37.34653", + "longitude_deg": "141.00656", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Tomioka", + "scheduled_service": "no" + }, + { + "id": "339720", + "ident": "JP-1080", + "type": "heliport", + "name": "Awashima Heliport", + "latitude_deg": "38.468643", + "longitude_deg": "139.255402", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Awashimaura", + "scheduled_service": "no" + }, + { + "id": "339721", + "ident": "JP-1081", + "type": "heliport", + "name": "JASDF Sado Sub Base Heliport", + "latitude_deg": "38.07656", + "longitude_deg": "138.34872", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Sado", + "scheduled_service": "no" + }, + { + "id": "339722", + "ident": "JP-1082", + "type": "heliport", + "name": "Niigata University Medical & Dental Hospital Heliport", + "latitude_deg": "37.918874", + "longitude_deg": "139.036065", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Niigata", + "scheduled_service": "no" + }, + { + "id": "339723", + "ident": "JP-1083", + "type": "heliport", + "name": "Sado General Hospital Helipad", + "latitude_deg": "38.01919", + "longitude_deg": "138.36643", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Sado", + "scheduled_service": "no" + }, + { + "id": "339724", + "ident": "JP-1084", + "type": "heliport", + "name": "Ota Municipal Heliport", + "latitude_deg": "36.291336", + "longitude_deg": "139.375379", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Ota", + "scheduled_service": "no" + }, + { + "id": "339725", + "ident": "JP-1085", + "type": "heliport", + "name": "Japan Red Cross Ashikaga Hospital Heliport", + "latitude_deg": "36.33962", + "longitude_deg": "139.41971", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Ashikaga", + "scheduled_service": "no" + }, + { + "id": "339726", + "ident": "JP-1086", + "type": "heliport", + "name": "Japan Red Cross Fukaya Hospital Helipad", + "latitude_deg": "36.18334", + "longitude_deg": "139.29403", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Fukaya", + "scheduled_service": "no" + }, + { + "id": "339727", + "ident": "JP-1087", + "type": "heliport", + "name": "Hanno Geriatric Center Helipad", + "latitude_deg": "35.86488", + "longitude_deg": "139.33462", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Hanno", + "scheduled_service": "no" + }, + { + "id": "339728", + "ident": "JP-1088", + "type": "closed", + "name": "Yabuki Airfield", + "latitude_deg": "37.20638", + "longitude_deg": "140.34377", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Yabuki", + "scheduled_service": "no" + }, + { + "id": "339729", + "ident": "JP-1089", + "type": "closed", + "name": "Sakitama Airfield", + "latitude_deg": "36.95865", + "longitude_deg": "140.01437", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Nasushiobara", + "scheduled_service": "no" + }, + { + "id": "339730", + "ident": "JP-1090", + "type": "heliport", + "name": "Kanma Memorial Hospital", + "latitude_deg": "36.97132", + "longitude_deg": "140.04882", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Nasushiobara", + "scheduled_service": "no" + }, + { + "id": "339731", + "ident": "JP-1091", + "type": "heliport", + "name": "Japan Red Cross Nasu Hospital", + "latitude_deg": "36.88194", + "longitude_deg": "140.03765", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Otawara", + "scheduled_service": "no" + }, + { + "id": "339732", + "ident": "JP-1092", + "type": "heliport", + "name": "Otera Heliport", + "latitude_deg": "35.6767", + "longitude_deg": "137.27713", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Shirakawa", + "scheduled_service": "no" + }, + { + "id": "339733", + "ident": "JP-1093", + "type": "heliport", + "name": "Kurokawa Nakanodaira Heliport", + "latitude_deg": "35.59625", + "longitude_deg": "137.32637", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Shirakawa", + "scheduled_service": "no" + }, + { + "id": "339734", + "ident": "JP-1094", + "type": "heliport", + "name": "Sasahara Heliport", + "latitude_deg": "35.58541", + "longitude_deg": "137.23421", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Shirakawa", + "scheduled_service": "no" + }, + { + "id": "339735", + "ident": "JP-1095", + "type": "heliport", + "name": "Kitaibaraki Municipal Hospital Heliport", + "latitude_deg": "36.84422", + "longitude_deg": "140.77149", + "elevation_ft": "144", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Kitaibaraki", + "scheduled_service": "no" + }, + { + "id": "339736", + "ident": "JP-1096", + "type": "heliport", + "name": "Hitachi General Hospital Heliport", + "latitude_deg": "36.58992", + "longitude_deg": "140.64515", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Hitachi", + "scheduled_service": "no" + }, + { + "id": "339767", + "ident": "JP-1097", + "type": "heliport", + "name": "River Country Garden Kyobashi Helipad", + "latitude_deg": "34.696444", + "longitude_deg": "135.534563", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "339771", + "ident": "JP-1098", + "type": "heliport", + "name": "WBG Marive West Tower Helipad", + "latitude_deg": "35.648007", + "longitude_deg": "140.038309", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Chiba", + "scheduled_service": "no" + }, + { + "id": "339772", + "ident": "JP-1099", + "type": "heliport", + "name": "WBG Marive East Tower Helipad", + "latitude_deg": "35.64847", + "longitude_deg": "140.039189", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Chiba", + "scheduled_service": "no" + }, + { + "id": "339773", + "ident": "JP-1100", + "type": "heliport", + "name": "Makuhari New City Heliport", + "latitude_deg": "35.64741", + "longitude_deg": "140.02855", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Chiba", + "scheduled_service": "no" + }, + { + "id": "339774", + "ident": "JP-1101", + "type": "heliport", + "name": "Aeon Tower Annex Helipad", + "latitude_deg": "35.650179", + "longitude_deg": "140.040034", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Chiba", + "scheduled_service": "no" + }, + { + "id": "339775", + "ident": "JP-1102", + "type": "heliport", + "name": "Aeon Tower Helipad", + "latitude_deg": "35.651468", + "longitude_deg": "140.03828", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Chiba", + "scheduled_service": "no" + }, + { + "id": "339776", + "ident": "JP-1103", + "type": "heliport", + "name": "M Bay Point Makuhari Helipad", + "latitude_deg": "35.651875", + "longitude_deg": "140.039245", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Chiba", + "scheduled_service": "no" + }, + { + "id": "339777", + "ident": "JP-1104", + "type": "closed", + "name": "Narashino Airfield", + "latitude_deg": "35.6723", + "longitude_deg": "140.02687", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Narashino", + "scheduled_service": "no" + }, + { + "id": "339778", + "ident": "JP-1105", + "type": "heliport", + "name": "Chiba University Hospital Heliport", + "latitude_deg": "35.605188", + "longitude_deg": "140.136688", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Chiba", + "scheduled_service": "no" + }, + { + "id": "339779", + "ident": "JP-1106", + "type": "heliport", + "name": "Chiba Prefectural Police Heliport", + "latitude_deg": "35.60284", + "longitude_deg": "140.123136", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Chiba", + "scheduled_service": "no" + }, + { + "id": "339780", + "ident": "JP-1107", + "type": "heliport", + "name": "Seitetsu Memorial Hirohata Hospital Helipad", + "latitude_deg": "34.79687", + "longitude_deg": "134.63973", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Himeji", + "scheduled_service": "no" + }, + { + "id": "339781", + "ident": "JP-1108", + "type": "heliport", + "name": "Japan Red Cross Himeji Hospital", + "latitude_deg": "34.844", + "longitude_deg": "134.6473", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Himeji", + "scheduled_service": "no" + }, + { + "id": "339782", + "ident": "JP-1109", + "type": "heliport", + "name": "Yabu Heliport", + "latitude_deg": "35.40008", + "longitude_deg": "134.74222", + "elevation_ft": "639", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Yabu", + "scheduled_service": "no" + }, + { + "id": "339920", + "ident": "JP-1110", + "type": "closed", + "name": "Iwaki Army Airfield", + "latitude_deg": "37.41789", + "longitude_deg": "141.03006", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Okuma", + "scheduled_service": "no" + }, + { + "id": "339921", + "ident": "JP-1111", + "type": "heliport", + "name": "Iwaki City Medical Center Heliport", + "latitude_deg": "37.042456", + "longitude_deg": "140.869799", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Iwaki", + "scheduled_service": "no" + }, + { + "id": "339922", + "ident": "JP-1112", + "type": "heliport", + "name": "Takahashi Heliport", + "latitude_deg": "34.87964", + "longitude_deg": "133.66235", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Takahashi", + "scheduled_service": "no" + }, + { + "id": "339923", + "ident": "JP-1113", + "type": "heliport", + "name": "Mito Saiseikai Hospital Heliport", + "latitude_deg": "36.4017", + "longitude_deg": "140.39413", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Mito", + "scheduled_service": "no" + }, + { + "id": "339924", + "ident": "JP-1114", + "type": "heliport", + "name": "NHO Mito Medical Center Helipad", + "latitude_deg": "36.32632", + "longitude_deg": "140.41055", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Mito", + "scheduled_service": "no" + }, + { + "id": "339925", + "ident": "JP-1115", + "type": "heliport", + "name": "Namegata Community Medical Center Helipad", + "latitude_deg": "36.06859", + "longitude_deg": "140.45965", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Namegata", + "scheduled_service": "no" + }, + { + "id": "339926", + "ident": "JP-1116", + "type": "heliport", + "name": "Kashima Central Hotel Helipad", + "latitude_deg": "35.89872", + "longitude_deg": "140.6385", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Kamisu", + "scheduled_service": "no" + }, + { + "id": "339927", + "ident": "JP-1117", + "type": "closed", + "name": "Gonoike Air Base", + "latitude_deg": "35.88357", + "longitude_deg": "140.68884", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Kamisu", + "scheduled_service": "no" + }, + { + "id": "339928", + "ident": "JP-1118", + "type": "heliport", + "name": "Zenkoku Choson Kaikan (National Town Hall) Helipad", + "latitude_deg": "35.67887", + "longitude_deg": "139.741928", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "339929", + "ident": "JP-1119", + "type": "heliport", + "name": "Prefectural Assembly Hall Helipad", + "latitude_deg": "35.679368", + "longitude_deg": "139.738897", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "339930", + "ident": "JP-1120", + "type": "heliport", + "name": "Kameda Medical Center Heliport", + "latitude_deg": "35.11899", + "longitude_deg": "140.12588", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Kamogawa", + "scheduled_service": "no" + }, + { + "id": "339932", + "ident": "JP-1121", + "type": "heliport", + "name": "Awa Regional Medical Center Helipad", + "latitude_deg": "35.00078", + "longitude_deg": "139.89275", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Tateyama", + "scheduled_service": "no" + }, + { + "id": "339933", + "ident": "JP-1122", + "type": "heliport", + "name": "Teikyo University Chiba Medical Center Helipad", + "latitude_deg": "35.46582", + "longitude_deg": "140.06308", + "elevation_ft": "127", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Ichihara", + "scheduled_service": "no" + }, + { + "id": "340086", + "ident": "JP-1123", + "type": "heliport", + "name": "Tonosaki Heliport", + "latitude_deg": "34.66438", + "longitude_deg": "129.49141", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Tsushima", + "scheduled_service": "no" + }, + { + "id": "340087", + "ident": "JP-1124", + "type": "heliport", + "name": "Tsushima Heliport", + "latitude_deg": "34.20408", + "longitude_deg": "129.29854", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Tsushima", + "scheduled_service": "no" + }, + { + "id": "340088", + "ident": "JP-1125", + "type": "heliport", + "name": "Oronoshima Heliport", + "latitude_deg": "33.86441", + "longitude_deg": "130.03409", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Fukuoka", + "scheduled_service": "no" + }, + { + "id": "340089", + "ident": "JP-1126", + "type": "heliport", + "name": "Ainoshima Heliport", + "latitude_deg": "33.98779", + "longitude_deg": "130.82073", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Kitakyushu", + "scheduled_service": "no" + }, + { + "id": "340090", + "ident": "JP-1127", + "type": "heliport", + "name": "Kashima Heliport", + "latitude_deg": "31.78258", + "longitude_deg": "129.7916", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Satsumasendai", + "scheduled_service": "no" + }, + { + "id": "340091", + "ident": "JP-1128", + "type": "heliport", + "name": "Osato Heliport", + "latitude_deg": "30.83643", + "longitude_deg": "129.95158", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Mishima", + "scheduled_service": "no" + }, + { + "id": "340092", + "ident": "JP-1129", + "type": "heliport", + "name": "Katadomari Heliport", + "latitude_deg": "30.83232", + "longitude_deg": "129.90647", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Mishima", + "scheduled_service": "no" + }, + { + "id": "340093", + "ident": "JP-1130", + "type": "heliport", + "name": "Takeshima Heliport", + "latitude_deg": "30.81149", + "longitude_deg": "130.41792", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Mishima", + "scheduled_service": "no" + }, + { + "id": "340094", + "ident": "JP-1131", + "type": "small_airport", + "name": "Mageshima Airport", + "latitude_deg": "30.73569", + "longitude_deg": "130.851216", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Nishinoomote", + "scheduled_service": "no", + "keywords": "Taston Airport, Mageshima Air Base" + }, + { + "id": "340095", + "ident": "JP-1132", + "type": "heliport", + "name": "Kuchinoerabu Heliport", + "latitude_deg": "30.46853", + "longitude_deg": "130.19101", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Yakushima", + "scheduled_service": "no" + }, + { + "id": "340096", + "ident": "JP-1133", + "type": "heliport", + "name": "Kuchinoshima Heliport", + "latitude_deg": "29.98223", + "longitude_deg": "129.92577", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Toshima", + "scheduled_service": "no" + }, + { + "id": "340097", + "ident": "JP-1134", + "type": "heliport", + "name": "Nakanoshima Heliport", + "latitude_deg": "29.8447", + "longitude_deg": "129.84442", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Toshima", + "scheduled_service": "no" + }, + { + "id": "340098", + "ident": "JP-1135", + "type": "heliport", + "name": "Tairajima Heliport", + "latitude_deg": "29.684608", + "longitude_deg": "129.529359", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Toshima", + "scheduled_service": "no" + }, + { + "id": "340099", + "ident": "JP-1136", + "type": "heliport", + "name": "Akusekijima Heliport", + "latitude_deg": "29.44813", + "longitude_deg": "129.60173", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Toshima", + "scheduled_service": "no" + }, + { + "id": "340100", + "ident": "JP-1137", + "type": "heliport", + "name": "Kodakarajima Heliport", + "latitude_deg": "29.22317", + "longitude_deg": "129.32121", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Toshima", + "scheduled_service": "no" + }, + { + "id": "340101", + "ident": "JP-1138", + "type": "heliport", + "name": "Takarajima Heliport", + "latitude_deg": "29.1553", + "longitude_deg": "129.2195", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Toshima", + "scheduled_service": "no" + }, + { + "id": "340102", + "ident": "JP-1139", + "type": "heliport", + "name": "Oshima Hospital Heliport", + "latitude_deg": "28.36692", + "longitude_deg": "129.50024", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Amami", + "scheduled_service": "no" + }, + { + "id": "340103", + "ident": "JP-1140", + "type": "heliport", + "name": "Ukejima Heliport", + "latitude_deg": "28.03628", + "longitude_deg": "129.24828", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Setouchi", + "scheduled_service": "no" + }, + { + "id": "340104", + "ident": "JP-1141", + "type": "heliport", + "name": "Yoroshima Heliport", + "latitude_deg": "28.03652", + "longitude_deg": "129.15352", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Setouchi", + "scheduled_service": "no" + }, + { + "id": "340105", + "ident": "JP-1142", + "type": "heliport", + "name": "JASDF Okinoerabu Sub Base Heliport", + "latitude_deg": "27.36289", + "longitude_deg": "128.56595", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "China", + "scheduled_service": "no" + }, + { + "id": "340106", + "ident": "JP-1143", + "type": "closed", + "name": "Iheya Contact Airfield", + "latitude_deg": "27.03198", + "longitude_deg": "127.9609", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Iheya", + "scheduled_service": "no" + }, + { + "id": "340107", + "ident": "JP-1144", + "type": "heliport", + "name": "Tonakijima Heliport", + "latitude_deg": "26.3749", + "longitude_deg": "127.1393", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Tonaki", + "scheduled_service": "no" + }, + { + "id": "340108", + "ident": "JP-1145", + "type": "heliport", + "name": "Ukibaru Heliport", + "latitude_deg": "26.29973", + "longitude_deg": "127.9927", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Uruma", + "scheduled_service": "no" + }, + { + "id": "340109", + "ident": "JP-1146", + "type": "heliport", + "name": "Zamami Heliport", + "latitude_deg": "26.23247", + "longitude_deg": "127.30719", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Zamami", + "scheduled_service": "no" + }, + { + "id": "340110", + "ident": "JP-1147", + "type": "heliport", + "name": "Tokashiki Heliport", + "latitude_deg": "26.19601", + "longitude_deg": "127.36357", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Tokashiki", + "scheduled_service": "no" + }, + { + "id": "340111", + "ident": "JP-1148", + "type": "heliport", + "name": "Akajima Heliport", + "latitude_deg": "26.19567", + "longitude_deg": "127.28595", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Zamami", + "scheduled_service": "no" + }, + { + "id": "340112", + "ident": "JP-1149", + "type": "heliport", + "name": "Unjima Heliport", + "latitude_deg": "26.14362", + "longitude_deg": "127.34462", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Tokashiki", + "scheduled_service": "no" + }, + { + "id": "340113", + "ident": "JP-1150", + "type": "heliport", + "name": "Japan Coast Guard Minnajima Heliport", + "latitude_deg": "24.74753", + "longitude_deg": "124.70313", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Tarama", + "scheduled_service": "no" + }, + { + "id": "340114", + "ident": "JP-1151", + "type": "heliport", + "name": "Taketomi Heliport", + "latitude_deg": "24.33507", + "longitude_deg": "124.09197", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Taketomi", + "scheduled_service": "no" + }, + { + "id": "340115", + "ident": "JP-1152", + "type": "heliport", + "name": "Kuroshima Heliport", + "latitude_deg": "24.24074", + "longitude_deg": "123.99728", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Taketomi", + "scheduled_service": "no" + }, + { + "id": "340116", + "ident": "JP-1153", + "type": "heliport", + "name": "Hatoma Heliport", + "latitude_deg": "24.46843", + "longitude_deg": "123.82392", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Taketomi", + "scheduled_service": "no" + }, + { + "id": "340117", + "ident": "JP-1154", + "type": "heliport", + "name": "Ohara Heliport", + "latitude_deg": "24.27522", + "longitude_deg": "123.87656", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Taketomi", + "scheduled_service": "no" + }, + { + "id": "340118", + "ident": "JP-1155", + "type": "heliport", + "name": "Sumiyoshi Heliport", + "latitude_deg": "24.43268", + "longitude_deg": "123.76972", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Taketomi", + "scheduled_service": "no" + }, + { + "id": "340119", + "ident": "JP-1156", + "type": "heliport", + "name": "Aragusuku Heliport", + "latitude_deg": "24.23367", + "longitude_deg": "123.94066", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Taketomi", + "scheduled_service": "no" + }, + { + "id": "340474", + "ident": "JP-1157", + "type": "heliport", + "name": "Central Administration Main Building Helipad", + "latitude_deg": "35.13643", + "longitude_deg": "136.89417", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "340475", + "ident": "JP-1158", + "type": "heliport", + "name": "Aichi University Nagoya Campus Helipad", + "latitude_deg": "35.161735", + "longitude_deg": "136.885236", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "340476", + "ident": "JP-1159", + "type": "heliport", + "name": "Daiwa House Nagoya Building Helipad", + "latitude_deg": "35.162412", + "longitude_deg": "136.884086", + "elevation_ft": "296", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "340478", + "ident": "JP-1160", + "type": "heliport", + "name": "Umihotaru Heliport", + "latitude_deg": "35.46538", + "longitude_deg": "139.87358", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Kisarazu", + "scheduled_service": "no" + }, + { + "id": "340479", + "ident": "JP-1161", + "type": "heliport", + "name": "Yuki Heliport", + "latitude_deg": "36.28559", + "longitude_deg": "139.9032", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Yuki", + "scheduled_service": "no" + }, + { + "id": "340503", + "ident": "JP-1162", + "type": "heliport", + "name": "Hashimoto Heliport", + "latitude_deg": "37.50968", + "longitude_deg": "140.65356", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Tamura", + "scheduled_service": "no" + }, + { + "id": "340505", + "ident": "JP-1163", + "type": "heliport", + "name": "Japan Red Cross Nagahama Hospital Helipad", + "latitude_deg": "35.38331", + "longitude_deg": "136.27337", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Nagahama", + "scheduled_service": "no" + }, + { + "id": "340506", + "ident": "JP-1164", + "type": "heliport", + "name": "Koka Public Hospital Helipad", + "latitude_deg": "34.9823", + "longitude_deg": "136.17776", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Koka", + "scheduled_service": "no" + }, + { + "id": "340507", + "ident": "JP-1165", + "type": "heliport", + "name": "Sekigahara Meishin Expressway Heliport", + "latitude_deg": "35.35176", + "longitude_deg": "136.44696", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Sekigahara", + "scheduled_service": "no" + }, + { + "id": "340508", + "ident": "JP-1166", + "type": "heliport", + "name": "Nyukawa Heliport", + "latitude_deg": "36.17933", + "longitude_deg": "137.34758", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Takayama", + "scheduled_service": "no" + }, + { + "id": "340510", + "ident": "JP-1167", + "type": "heliport", + "name": "Suruga Bay Numazu Westbound Service Area Heliport", + "latitude_deg": "35.151782", + "longitude_deg": "138.812877", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Numazu", + "scheduled_service": "no" + }, + { + "id": "340511", + "ident": "JP-1168", + "type": "heliport", + "name": "Numazu City Hospital Helipad", + "latitude_deg": "35.11937", + "longitude_deg": "138.83397", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Numazu", + "scheduled_service": "no" + }, + { + "id": "340512", + "ident": "JP-1169", + "type": "heliport", + "name": "Aomori Prefectural Central Hospital Heliport", + "latitude_deg": "40.83106", + "longitude_deg": "140.79493", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Aomori", + "scheduled_service": "no" + }, + { + "id": "340513", + "ident": "JP-1170", + "type": "heliport", + "name": "Shimosotonosawa Heliport", + "latitude_deg": "41.06237", + "longitude_deg": "141.24627", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "340514", + "ident": "JP-1171", + "type": "heliport", + "name": "Tomisato Heliport", + "latitude_deg": "33.88377", + "longitude_deg": "133.47756", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Shikokuchuo", + "scheduled_service": "no" + }, + { + "id": "340515", + "ident": "JP-1172", + "type": "heliport", + "name": "Mishima (Iyo-Mishima Sports Park) Heliport", + "latitude_deg": "33.98059", + "longitude_deg": "133.52574", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Shikokuchuo", + "scheduled_service": "no" + }, + { + "id": "340516", + "ident": "JP-1173", + "type": "heliport", + "name": "Hoo Skyline Heliport", + "latitude_deg": "33.95037", + "longitude_deg": "133.5635", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Shikokuchuo", + "scheduled_service": "no" + }, + { + "id": "340597", + "ident": "JP-1174", + "type": "heliport", + "name": "Abashiri Fire Department South Station Heliport", + "latitude_deg": "43.99428", + "longitude_deg": "144.27072", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Abashiri", + "scheduled_service": "no" + }, + { + "id": "340598", + "ident": "JP-1175", + "type": "heliport", + "name": "Akabira Sky Sports Airport", + "latitude_deg": "43.572838", + "longitude_deg": "141.99087", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Akabira", + "scheduled_service": "no" + }, + { + "id": "340599", + "ident": "JP-1176", + "type": "heliport", + "name": "Asahikawa Emergency Heliport", + "latitude_deg": "43.728398", + "longitude_deg": "142.41347", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Asahikawa", + "scheduled_service": "no" + }, + { + "id": "340600", + "ident": "JP-1177", + "type": "heliport", + "name": "Nagayama Shinkawa Heliport", + "latitude_deg": "43.81566", + "longitude_deg": "142.45643", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Asahikawa", + "scheduled_service": "no" + }, + { + "id": "340601", + "ident": "JP-1178", + "type": "heliport", + "name": "Hokkaido Spinal Cord Injury Center Helipad", + "latitude_deg": "43.328549", + "longitude_deg": "141.869697", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Bibai", + "scheduled_service": "no" + }, + { + "id": "340602", + "ident": "JP-1179", + "type": "heliport", + "name": "Furano Kyokai Hospital Helipad", + "latitude_deg": "43.347736", + "longitude_deg": "142.391813", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Furano", + "scheduled_service": "no" + }, + { + "id": "340603", + "ident": "JP-1180", + "type": "heliport", + "name": "Nayoro City General Hospital", + "latitude_deg": "44.349287", + "longitude_deg": "142.451798", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Nayoro", + "scheduled_service": "no" + }, + { + "id": "340604", + "ident": "JP-1181", + "type": "heliport", + "name": "Rumoi Municipal Hospital Heliport", + "latitude_deg": "43.930948", + "longitude_deg": "141.677583", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Rumoi", + "scheduled_service": "no" + }, + { + "id": "340605", + "ident": "JP-1182", + "type": "heliport", + "name": "Hokkaido Central Hospital Helipad", + "latitude_deg": "43.716777", + "longitude_deg": "142.029608", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Fukagawa", + "scheduled_service": "no" + }, + { + "id": "340606", + "ident": "JP-1183", + "type": "heliport", + "name": "Sapporo General Hospital Helipad", + "latitude_deg": "43.070974", + "longitude_deg": "141.334411", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Sapporo", + "scheduled_service": "no" + }, + { + "id": "340607", + "ident": "JP-1184", + "type": "small_airport", + "name": "Kamishihoro Air Park", + "latitude_deg": "43.244787", + "longitude_deg": "143.277673", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Kamishihoro", + "scheduled_service": "no" + }, + { + "id": "340608", + "ident": "JP-1185", + "type": "small_airport", + "name": "Hopeland Airfield", + "latitude_deg": "42.859581", + "longitude_deg": "143.311721", + "elevation_ft": "144", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Makubetsu", + "scheduled_service": "no" + }, + { + "id": "340616", + "ident": "JP-1186", + "type": "small_airport", + "name": "Sarobetsu Flight Club Airfield", + "latitude_deg": "45.114106", + "longitude_deg": "141.654321", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Toyotomi", + "scheduled_service": "no" + }, + { + "id": "340617", + "ident": "JP-1187", + "type": "heliport", + "name": "Sunagawa City Medical Center Heliport", + "latitude_deg": "43.494355", + "longitude_deg": "141.90444", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Sunagawa", + "scheduled_service": "no" + }, + { + "id": "340618", + "ident": "JP-1188", + "type": "heliport", + "name": "Mashike Heliport", + "latitude_deg": "43.850904", + "longitude_deg": "141.50907", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Mashike", + "scheduled_service": "no" + }, + { + "id": "340619", + "ident": "JP-1189", + "type": "small_airport", + "name": "UFO Park Airfield", + "latitude_deg": "43.343161", + "longitude_deg": "141.435487", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Ishikari", + "scheduled_service": "no", + "keywords": "Wanwan Kyujotai" + }, + { + "id": "340620", + "ident": "JP-1190", + "type": "heliport", + "name": "Sapporo Fire Department Ishikari Heliport", + "latitude_deg": "43.210392", + "longitude_deg": "141.31776", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Ishikari", + "scheduled_service": "no", + "keywords": "Aero Asahi Ishikari Helicopter Base" + }, + { + "id": "340621", + "ident": "JP-1191", + "type": "closed", + "name": "Otaru Naval Airfield", + "latitude_deg": "43.1825", + "longitude_deg": "141.031389", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Otaru", + "scheduled_service": "no" + }, + { + "id": "340622", + "ident": "JP-1192", + "type": "closed", + "name": "Kabayama Airfield", + "latitude_deg": "41.3313", + "longitude_deg": "141.229122", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Mutsu", + "scheduled_service": "no" + }, + { + "id": "340623", + "ident": "JP-1193", + "type": "closed", + "name": "Tsukuba Naval Airfield", + "latitude_deg": "36.324167", + "longitude_deg": "140.318056", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Kasama", + "scheduled_service": "no" + }, + { + "id": "340624", + "ident": "JP-1194", + "type": "closed", + "name": "Kashima Airfield", + "latitude_deg": "36.004655", + "longitude_deg": "140.372829", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Miho", + "scheduled_service": "no" + }, + { + "id": "340625", + "ident": "JP-1195", + "type": "heliport", + "name": "Japan Red Cross Minato Hospital Helipad", + "latitude_deg": "35.436319", + "longitude_deg": "139.663737", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "340626", + "ident": "JP-1196", + "type": "closed", + "name": "Yokohama Naval (Tomioka) Airfield", + "latitude_deg": "35.378724", + "longitude_deg": "139.634275", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "340627", + "ident": "JP-1197", + "type": "closed", + "name": "Kure Naval Airfield", + "latitude_deg": "34.222366", + "longitude_deg": "132.607476", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Kure", + "scheduled_service": "no" + }, + { + "id": "340628", + "ident": "JP-1198", + "type": "closed", + "name": "Saiki Naval Airfield", + "latitude_deg": "32.968614", + "longitude_deg": "131.920052", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Saiki", + "scheduled_service": "no" + }, + { + "id": "340629", + "ident": "JP-1199", + "type": "heliport", + "name": "Saiki Heliport", + "latitude_deg": "32.965774", + "longitude_deg": "131.923251", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Saiki", + "scheduled_service": "no" + }, + { + "id": "340630", + "ident": "JP-1200", + "type": "heliport", + "name": "JMSDF Saiki Base Heliport", + "latitude_deg": "32.970222", + "longitude_deg": "131.914243", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Saiki", + "scheduled_service": "no" + }, + { + "id": "340631", + "ident": "JP-1201", + "type": "closed", + "name": "Sasebo Airfield", + "latitude_deg": "33.173929", + "longitude_deg": "129.65904", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Sasebo", + "scheduled_service": "no" + }, + { + "id": "340632", + "ident": "JP-1202", + "type": "heliport", + "name": "Sasebo Heliport", + "latitude_deg": "33.173243", + "longitude_deg": "129.655809", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Sasebo", + "scheduled_service": "no" + }, + { + "id": "340634", + "ident": "JP-1203", + "type": "closed", + "name": "IJN Bihoro Airfield #2", + "latitude_deg": "43.903092", + "longitude_deg": "144.163503", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Ozora", + "scheduled_service": "no" + }, + { + "id": "340635", + "ident": "JP-1204", + "type": "closed", + "name": "Nemuro Emergency Landing Ground", + "latitude_deg": "43.299509", + "longitude_deg": "145.59802", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Nemuro", + "scheduled_service": "no" + }, + { + "id": "340636", + "ident": "JP-1205", + "type": "closed", + "name": "Tsuchiura Naval Airfield", + "latitude_deg": "36.052625", + "longitude_deg": "140.220191", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Tsuchiura", + "scheduled_service": "no" + }, + { + "id": "340637", + "ident": "JP-1206", + "type": "closed", + "name": "Kochi Auxiliary Airfield #2", + "latitude_deg": "33.516005", + "longitude_deg": "133.582881", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kochi", + "scheduled_service": "no" + }, + { + "id": "340638", + "ident": "JP-1207", + "type": "closed", + "name": "Kochi Auxiliary Airfield #3", + "latitude_deg": "33.22897", + "longitude_deg": "133.129754", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Shimanto Town", + "scheduled_service": "no" + }, + { + "id": "340639", + "ident": "JP-1208", + "type": "closed", + "name": "Oita Airfield", + "latitude_deg": "33.252597", + "longitude_deg": "131.62784", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Oita", + "scheduled_service": "no" + }, + { + "id": "340640", + "ident": "JP-1209", + "type": "closed", + "name": "Hetsugi Airfield", + "latitude_deg": "33.162085", + "longitude_deg": "131.664724", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Oita", + "scheduled_service": "no" + }, + { + "id": "340641", + "ident": "JP-1210", + "type": "closed", + "name": "Kagoshima Naval Airfield", + "latitude_deg": "31.553704", + "longitude_deg": "130.557694", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Kagoshima", + "scheduled_service": "no" + }, + { + "id": "340642", + "ident": "JP-1211", + "type": "closed", + "name": "Tenpozan Naval Seaplane Base", + "latitude_deg": "31.572863", + "longitude_deg": "130.564819", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Kagoshima", + "scheduled_service": "no" + }, + { + "id": "340643", + "ident": "JP-1212", + "type": "closed", + "name": "Koniya Naval Airfield", + "latitude_deg": "28.151309", + "longitude_deg": "129.3006", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Setouchi", + "scheduled_service": "no" + }, + { + "id": "340644", + "ident": "JP-1213", + "type": "closed", + "name": "Minamidaito Airfield", + "latitude_deg": "25.843913", + "longitude_deg": "131.243946", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Minamidaito", + "scheduled_service": "no" + }, + { + "id": "340645", + "ident": "JP-1214", + "type": "closed", + "name": "Ishigaki Auxiliary Field #1", + "latitude_deg": "24.377973", + "longitude_deg": "124.194779", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Ishigaki", + "scheduled_service": "no" + }, + { + "id": "340651", + "ident": "JP-1215", + "type": "heliport", + "name": "Tanaka Hospital Helipad", + "latitude_deg": "36.064253", + "longitude_deg": "136.2241", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Fukui", + "scheduled_service": "no" + }, + { + "id": "340652", + "ident": "JP-1216", + "type": "heliport", + "name": "Tateishi Heliport", + "latitude_deg": "35.748166", + "longitude_deg": "136.027727", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Tsuruga", + "scheduled_service": "no" + }, + { + "id": "340653", + "ident": "JP-1217", + "type": "heliport", + "name": "Shiraki Heliport", + "latitude_deg": "35.732495", + "longitude_deg": "135.975361", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Tsuruga", + "scheduled_service": "no" + }, + { + "id": "340654", + "ident": "JP-1218", + "type": "heliport", + "name": "Kugushi Heliport", + "latitude_deg": "35.610644", + "longitude_deg": "135.909006", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Mihama", + "scheduled_service": "no" + }, + { + "id": "340655", + "ident": "JP-1219", + "type": "heliport", + "name": "Wakasa Heliport", + "latitude_deg": "35.490338", + "longitude_deg": "135.78553", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Obama", + "scheduled_service": "no" + }, + { + "id": "340656", + "ident": "JP-1220", + "type": "heliport", + "name": "Shiga Prefectural Hospital Helipad 2", + "latitude_deg": "35.034507", + "longitude_deg": "136.002659", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Ritto", + "scheduled_service": "no" + }, + { + "id": "340657", + "ident": "JP-1221", + "type": "heliport", + "name": "Ishikawa Prefectural Heliport", + "latitude_deg": "36.594699", + "longitude_deg": "136.625714", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-17", + "municipality": "Kanazawa", + "scheduled_service": "no" + }, + { + "id": "340658", + "ident": "JP-1222", + "type": "heliport", + "name": "Nomi Heliport", + "latitude_deg": "36.458885", + "longitude_deg": "136.553437", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-17", + "municipality": "Nomi", + "scheduled_service": "no" + }, + { + "id": "340659", + "ident": "JP-1223", + "type": "heliport", + "name": "Noto General Hospital Helipad", + "latitude_deg": "37.043228", + "longitude_deg": "136.946018", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-17", + "municipality": "Nanao", + "scheduled_service": "no" + }, + { + "id": "340660", + "ident": "JP-1224", + "type": "heliport", + "name": "Keiju Medical Center Helipad", + "latitude_deg": "37.051342", + "longitude_deg": "136.962043", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-17", + "municipality": "Nanao", + "scheduled_service": "no" + }, + { + "id": "340662", + "ident": "JP-1225", + "type": "heliport", + "name": "Kawakita Tedorigawa Heliport", + "latitude_deg": "36.463101", + "longitude_deg": "136.541422", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-17", + "municipality": "Kawakita", + "scheduled_service": "no" + }, + { + "id": "340663", + "ident": "JP-1226", + "type": "small_airport", + "name": "Yuri Airstrip", + "latitude_deg": "39.299205", + "longitude_deg": "140.054859", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Yurihonjo", + "scheduled_service": "no" + }, + { + "id": "340664", + "ident": "JP-1227", + "type": "closed", + "name": "Fujisawa Airfield", + "latitude_deg": "35.356667", + "longitude_deg": "139.463889", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Fujisawa", + "scheduled_service": "no" + }, + { + "id": "340665", + "ident": "JP-1228", + "type": "closed", + "name": "Kanegasaki Airfield", + "latitude_deg": "39.204167", + "longitude_deg": "141.049722", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Kanegasaki", + "scheduled_service": "no" + }, + { + "id": "340666", + "ident": "JP-1229", + "type": "heliport", + "name": "Saiseikai Fukuoka General Hospital Helipad", + "latitude_deg": "33.58964", + "longitude_deg": "130.40305", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Fukuoka", + "scheduled_service": "no" + }, + { + "id": "340667", + "ident": "JP-1230", + "type": "heliport", + "name": "Japan Red Cross Fukuoka Hospital Helipad", + "latitude_deg": "33.571523", + "longitude_deg": "130.414278", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Fukuoka", + "scheduled_service": "no" + }, + { + "id": "340668", + "ident": "JP-1231", + "type": "heliport", + "name": "Fukuoka Children's Hospital Helipad", + "latitude_deg": "33.662348", + "longitude_deg": "130.418157", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Fukuoka", + "scheduled_service": "no" + }, + { + "id": "340669", + "ident": "JP-1232", + "type": "heliport", + "name": "Fukuoka Wajiro Hospital Helipad", + "latitude_deg": "33.692319", + "longitude_deg": "130.433659", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Fukuoka", + "scheduled_service": "no" + }, + { + "id": "340670", + "ident": "JP-1233", + "type": "heliport", + "name": "Fukuoka Tokushukai Hospital Helipad", + "latitude_deg": "33.544089", + "longitude_deg": "130.446985", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Kasuga", + "scheduled_service": "no" + }, + { + "id": "340671", + "ident": "JP-1234", + "type": "heliport", + "name": "Kitakyushu General Hospital North Helipad", + "latitude_deg": "33.873616", + "longitude_deg": "130.88021", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Kitakyushu", + "scheduled_service": "no" + }, + { + "id": "340672", + "ident": "JP-1235", + "type": "heliport", + "name": "Kitakyushu General Hospital South Helipad", + "latitude_deg": "33.872897", + "longitude_deg": "130.880149", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Kitakyushu", + "scheduled_service": "no" + }, + { + "id": "340673", + "ident": "JP-1236", + "type": "heliport", + "name": "Kitakyushu City Yahata Hospital Helipad", + "latitude_deg": "33.86478", + "longitude_deg": "130.796671", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Kitakyushu", + "scheduled_service": "no" + }, + { + "id": "340674", + "ident": "JP-1237", + "type": "heliport", + "name": "JCHO Kyushu Hospital", + "latitude_deg": "33.857441", + "longitude_deg": "130.765518", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Kitakyushu", + "scheduled_service": "no" + }, + { + "id": "340675", + "ident": "JP-1238", + "type": "heliport", + "name": "Kyushu Senior Hospital", + "latitude_deg": "33.83728", + "longitude_deg": "130.938702", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Kitakyushu", + "scheduled_service": "no" + }, + { + "id": "340685", + "ident": "JP-1239", + "type": "heliport", + "name": "Japan Red Cross Kumamoto Hospital Helipad", + "latitude_deg": "32.80825", + "longitude_deg": "130.763722", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-43", + "municipality": "Kumamoto", + "scheduled_service": "no" + }, + { + "id": "340686", + "ident": "JP-1240", + "type": "heliport", + "name": "Kumamoto University Hospital Helipad", + "latitude_deg": "32.795789", + "longitude_deg": "130.7112", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-43", + "municipality": "Kumamoto", + "scheduled_service": "no" + }, + { + "id": "340687", + "ident": "JP-1241", + "type": "heliport", + "name": "Saiseikai Kumamoto Hospital Helipad", + "latitude_deg": "32.766166", + "longitude_deg": "130.701309", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-43", + "municipality": "Kumamoto", + "scheduled_service": "no" + }, + { + "id": "340688", + "ident": "JP-1242", + "type": "heliport", + "name": "NHO Kumamoto Medical Center Helipad", + "latitude_deg": "32.804206", + "longitude_deg": "130.701208", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-43", + "municipality": "Kumamoto", + "scheduled_service": "no" + }, + { + "id": "340689", + "ident": "JP-1243", + "type": "heliport", + "name": "Sojo University Heliport", + "latitude_deg": "32.835439", + "longitude_deg": "130.699251", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-43", + "municipality": "Kumamoto", + "scheduled_service": "no" + }, + { + "id": "340690", + "ident": "JP-1244", + "type": "heliport", + "name": "Aso Heliport", + "latitude_deg": "33.012216", + "longitude_deg": "131.098983", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-43", + "municipality": "Aso", + "scheduled_service": "no" + }, + { + "id": "340691", + "ident": "JP-1245", + "type": "heliport", + "name": "Lake Hanjaku Heliport", + "latitude_deg": "33.039109", + "longitude_deg": "130.853395", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-43", + "municipality": "Kikuchi", + "scheduled_service": "no" + }, + { + "id": "340692", + "ident": "JP-1246", + "type": "heliport", + "name": "Miyazaki Hospital Heliport", + "latitude_deg": "32.830324", + "longitude_deg": "130.002383", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Isahaya", + "scheduled_service": "no" + }, + { + "id": "340693", + "ident": "JP-1247", + "type": "heliport", + "name": "Saga Prefectural Medical Center Helipad", + "latitude_deg": "33.241691", + "longitude_deg": "130.268294", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-41", + "municipality": "Saga", + "scheduled_service": "no" + }, + { + "id": "340694", + "ident": "JP-1248", + "type": "heliport", + "name": "Saga University Hospital Helipad", + "latitude_deg": "33.283725", + "longitude_deg": "130.267426", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-41", + "municipality": "Saga", + "scheduled_service": "no" + }, + { + "id": "340695", + "ident": "JP-1249", + "type": "heliport", + "name": "Hamacho Heliport", + "latitude_deg": "31.601957", + "longitude_deg": "130.568684", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Kagoshima", + "scheduled_service": "no" + }, + { + "id": "340696", + "ident": "JP-1250", + "type": "heliport", + "name": "Taniyama Heliport", + "latitude_deg": "31.49404", + "longitude_deg": "130.534232", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Kagoshima", + "scheduled_service": "no" + }, + { + "id": "340697", + "ident": "JP-1251", + "type": "heliport", + "name": "Okawauchi Regional Heliport", + "latitude_deg": "32.364252", + "longitude_deg": "131.142751", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-45", + "municipality": "Shiiba", + "scheduled_service": "no" + }, + { + "id": "340698", + "ident": "JP-1252", + "type": "heliport", + "name": "Makurazaki Heliport", + "latitude_deg": "31.268255", + "longitude_deg": "130.357706", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Makurazaki", + "scheduled_service": "no" + }, + { + "id": "340699", + "ident": "JP-1253", + "type": "heliport", + "name": "Kagoshima City Hospital Helipad", + "latitude_deg": "31.57363", + "longitude_deg": "130.541985", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Kagoshima", + "scheduled_service": "no" + }, + { + "id": "340700", + "ident": "JP-1254", + "type": "heliport", + "name": "Yame Heliport Yabe", + "latitude_deg": "33.141888", + "longitude_deg": "130.84627", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Yame", + "scheduled_service": "no" + }, + { + "id": "340701", + "ident": "JP-1255", + "type": "closed", + "name": "Miyakonojo North Airfield", + "latitude_deg": "31.796917", + "longitude_deg": "131.072778", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-45", + "municipality": "Miyakonojo", + "scheduled_service": "no" + }, + { + "id": "340702", + "ident": "JP-1256", + "type": "closed", + "name": "Miyakonojo East Airfield", + "latitude_deg": "31.764413", + "longitude_deg": "131.108755", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-45", + "municipality": "Mimata", + "scheduled_service": "no" + }, + { + "id": "340703", + "ident": "JP-1257", + "type": "heliport", + "name": "River Walk Kitakyushu Heliport", + "latitude_deg": "33.886035", + "longitude_deg": "130.874495", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Kitakyushu", + "scheduled_service": "no" + }, + { + "id": "340704", + "ident": "JP-1258", + "type": "closed", + "name": "Bungo North Airfield", + "latitude_deg": "33.039741", + "longitude_deg": "131.609712", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Bungo-ono", + "scheduled_service": "no" + }, + { + "id": "340705", + "ident": "JP-1259", + "type": "closed", + "name": "Bungo South Airfield", + "latitude_deg": "32.988056", + "longitude_deg": "131.584722", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Bungo-ono", + "scheduled_service": "no" + }, + { + "id": "340706", + "ident": "JP-1260", + "type": "closed", + "name": "Nagasu Airfield", + "latitude_deg": "32.903056", + "longitude_deg": "130.47", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Nagasu", + "scheduled_service": "no" + }, + { + "id": "340707", + "ident": "JP-1261", + "type": "closed", + "name": "Yamaga Airfield", + "latitude_deg": "33.007778", + "longitude_deg": "130.6125", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-43", + "municipality": "Nagomi", + "scheduled_service": "no" + }, + { + "id": "340708", + "ident": "JP-1262", + "type": "seaplane_base", + "name": "Tsushima Seaplane Base", + "latitude_deg": "34.305833", + "longitude_deg": "129.304722", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Tsushima", + "scheduled_service": "no" + }, + { + "id": "340709", + "ident": "JP-1263", + "type": "closed", + "name": "Tsuyazaki Airfield", + "latitude_deg": "33.782997", + "longitude_deg": "130.476241", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Fukutsu", + "scheduled_service": "no", + "wikipedia_link": "https://ja.wikipedia.org/wiki/%E6%B4%A5%E5%B1%8B%E5%B4%8E%E9%A3%9B%E8%A1%8C%E5%A0%B4", + "keywords": "Fukuma Airfield" + }, + { + "id": "340710", + "ident": "JP-1264", + "type": "closed", + "name": "Kitakyushu Wakamatsu Auxiliary Airstrip", + "latitude_deg": "33.9275", + "longitude_deg": "130.788056", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Kitakyushu", + "scheduled_service": "no" + }, + { + "id": "340711", + "ident": "JP-1265", + "type": "closed", + "name": "Nakatsu Airfield", + "latitude_deg": "33.578056", + "longitude_deg": "131.175278", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Nakatsu", + "scheduled_service": "no" + }, + { + "id": "340712", + "ident": "JP-1266", + "type": "heliport", + "name": "Shin Yukuhashi Hospital Helipad", + "latitude_deg": "33.693446", + "longitude_deg": "131.012686", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Yukuhashi", + "scheduled_service": "no" + }, + { + "id": "340713", + "ident": "JP-1267", + "type": "small_airport", + "name": "Chiyoda Auxiliary Airstrip", + "latitude_deg": "36.142082", + "longitude_deg": "140.253211", + "elevation_ft": "59", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Kasumigaura", + "scheduled_service": "no", + "keywords": "Chiyoda Flying Club" + }, + { + "id": "340714", + "ident": "JP-1268", + "type": "closed", + "name": "Tanagura Airfield", + "latitude_deg": "37.139167", + "longitude_deg": "140.388611", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Ishikawa", + "scheduled_service": "no" + }, + { + "id": "340715", + "ident": "JP-1269", + "type": "closed", + "name": "Babadaira Airfield", + "latitude_deg": "37.578056", + "longitude_deg": "140.353611", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Otama", + "scheduled_service": "no" + }, + { + "id": "340716", + "ident": "JP-1270", + "type": "closed", + "name": "Ojojihara Airfield", + "latitude_deg": "38.500278", + "longitude_deg": "140.849167", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Ohira", + "scheduled_service": "no" + }, + { + "id": "340717", + "ident": "JP-1271", + "type": "small_airport", + "name": "Tashiro Nanohana Airfield", + "latitude_deg": "40.293173", + "longitude_deg": "140.469894", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Odate", + "scheduled_service": "no" + }, + { + "id": "340718", + "ident": "JP-1272", + "type": "closed", + "name": "Susaki Airstrip", + "latitude_deg": "27.0716", + "longitude_deg": "142.19062", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Ogasawara", + "scheduled_service": "no" + }, + { + "id": "340719", + "ident": "JP-1273", + "type": "closed", + "name": "Yokosu Airfield", + "latitude_deg": "34.003333", + "longitude_deg": "134.595", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-36", + "municipality": "Komatsushima", + "scheduled_service": "no" + }, + { + "id": "340720", + "ident": "JP-1274", + "type": "closed", + "name": "Kirai Airfield", + "latitude_deg": "34.336389", + "longitude_deg": "134.102222", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Takamatsu", + "scheduled_service": "no" + }, + { + "id": "340721", + "ident": "JP-1275", + "type": "closed", + "name": "Kokubu Airfield", + "latitude_deg": "34.301667", + "longitude_deg": "133.949444", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Takamatsu", + "scheduled_service": "no" + }, + { + "id": "340722", + "ident": "JP-1276", + "type": "closed", + "name": "Marugame Airfield", + "latitude_deg": "34.265556", + "longitude_deg": "133.850556", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Marugame", + "scheduled_service": "no" + }, + { + "id": "340723", + "ident": "JP-1277", + "type": "closed", + "name": "Kanonji Airfield", + "latitude_deg": "34.116944", + "longitude_deg": "133.670278", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Kanonji", + "scheduled_service": "no" + }, + { + "id": "340724", + "ident": "JP-1278", + "type": "closed", + "name": "Niihama Airport", + "latitude_deg": "33.98445", + "longitude_deg": "133.346959", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Niihama", + "scheduled_service": "no" + }, + { + "id": "340725", + "ident": "JP-1279", + "type": "closed", + "name": "Yokohama Airfield", + "latitude_deg": "33.529686", + "longitude_deg": "133.55936", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "340726", + "ident": "JP-1280", + "type": "closed", + "name": "Imanari Gliderport", + "latitude_deg": "33.539722", + "longitude_deg": "133.250556", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Ochi", + "scheduled_service": "no" + }, + { + "id": "340727", + "ident": "JP-1281", + "type": "closed", + "name": "Uwajima Airfield", + "latitude_deg": "33.381667", + "longitude_deg": "132.490556", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Seiyo", + "scheduled_service": "no" + }, + { + "id": "340728", + "ident": "JP-1282", + "type": "closed", + "name": "Yawatahama - Kawanoishi Seaplane Base", + "latitude_deg": "33.473333", + "longitude_deg": "132.396944", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Yawatahama", + "scheduled_service": "no" + }, + { + "id": "340729", + "ident": "JP-1283", + "type": "closed", + "name": "Ehime Airfield", + "latitude_deg": "33.795", + "longitude_deg": "132.770278", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Tobe", + "scheduled_service": "no" + }, + { + "id": "340730", + "ident": "JP-1284", + "type": "closed", + "name": "Matsuyama Airfield", + "latitude_deg": "33.860833", + "longitude_deg": "132.712222", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Matsuyama", + "scheduled_service": "no" + }, + { + "id": "340731", + "ident": "JP-1285", + "type": "closed", + "name": "Matsuyama Baishinji Airfield", + "latitude_deg": "33.876389", + "longitude_deg": "132.704722", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Matsuyama", + "scheduled_service": "no" + }, + { + "id": "340732", + "ident": "JP-1286", + "type": "closed", + "name": "Matsuyama West Airfield", + "latitude_deg": "33.810833", + "longitude_deg": "132.808889", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Matsuyama", + "scheduled_service": "no" + }, + { + "id": "340733", + "ident": "JP-1287", + "type": "closed", + "name": "Matsuyama East Airfield / Minara Gliderfield", + "latitude_deg": "33.795833", + "longitude_deg": "132.868056", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Toon", + "scheduled_service": "no" + }, + { + "id": "340734", + "ident": "JP-1288", + "type": "closed", + "name": "Nyugawa Airfield", + "latitude_deg": "33.905278", + "longitude_deg": "133.075278", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Saijo", + "scheduled_service": "no" + }, + { + "id": "340735", + "ident": "JP-1289", + "type": "closed", + "name": "Nagano Airstrip", + "latitude_deg": "33.873333", + "longitude_deg": "133.034444", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Saijo", + "scheduled_service": "no" + }, + { + "id": "340736", + "ident": "JP-1290", + "type": "closed", + "name": "Kanno Airstrip", + "latitude_deg": "34.786667", + "longitude_deg": "134.864722", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kakogawa", + "scheduled_service": "no" + }, + { + "id": "340738", + "ident": "JP-1291", + "type": "closed", + "name": "Shinwakaura Airstrip", + "latitude_deg": "34.185833", + "longitude_deg": "135.1575", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Wakayama", + "scheduled_service": "no" + }, + { + "id": "340739", + "ident": "JP-1292", + "type": "closed", + "name": "Shirahama Seaplane Base", + "latitude_deg": "33.688333", + "longitude_deg": "135.355556", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Shirahama", + "scheduled_service": "no" + }, + { + "id": "340740", + "ident": "JP-1293", + "type": "closed", + "name": "Katsuragawa Gliderfield", + "latitude_deg": "34.969722", + "longitude_deg": "135.720556", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kyoto", + "scheduled_service": "no" + }, + { + "id": "340741", + "ident": "JP-1294", + "type": "closed", + "name": "Nijo Castle Airstrip", + "latitude_deg": "35.013611", + "longitude_deg": "135.751389", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kyoto", + "scheduled_service": "no" + }, + { + "id": "340742", + "ident": "JP-1295", + "type": "closed", + "name": "Iwazu Airstrip", + "latitude_deg": "35.011944", + "longitude_deg": "137.165556", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Okazaki", + "scheduled_service": "no" + }, + { + "id": "340743", + "ident": "JP-1296", + "type": "closed", + "name": "Isshiki Auxiliary Airstrip", + "latitude_deg": "34.776389", + "longitude_deg": "137.044167", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nishio", + "scheduled_service": "no", + "keywords": "Issiki Airstrip" + }, + { + "id": "340744", + "ident": "JP-1297", + "type": "closed", + "name": "Atsugi Gliderfield", + "latitude_deg": "35.452778", + "longitude_deg": "139.371111", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Atsugi", + "scheduled_service": "no" + }, + { + "id": "340745", + "ident": "JP-1298", + "type": "closed", + "name": "Senju Soka Highway Airfield", + "latitude_deg": "35.783333", + "longitude_deg": "139.802778", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Adachi, Tokyo", + "scheduled_service": "no" + }, + { + "id": "340746", + "ident": "JP-1299", + "type": "closed", + "name": "Toko Gliderfield", + "latitude_deg": "35.738889", + "longitude_deg": "139.403889", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Musashimurayama", + "scheduled_service": "no" + }, + { + "id": "340747", + "ident": "JP-1300", + "type": "closed", + "name": "Arakawa Kahan Gliderfield", + "latitude_deg": "36.1425", + "longitude_deg": "139.361944", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kumagaya", + "scheduled_service": "no" + }, + { + "id": "340748", + "ident": "JP-1301", + "type": "closed", + "name": "Kawarago Gliderfield", + "latitude_deg": "36.540278", + "longitude_deg": "140.639444", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Hitachi", + "scheduled_service": "no" + }, + { + "id": "340749", + "ident": "JP-1302", + "type": "closed", + "name": "Minatomachi Gliderfield", + "latitude_deg": "36.339167", + "longitude_deg": "140.597222", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Hitachinaka", + "scheduled_service": "no" + }, + { + "id": "340751", + "ident": "JP-1303", + "type": "small_airport", + "name": "Taragi Auxiliary Airfield", + "latitude_deg": "32.276669", + "longitude_deg": "130.915607", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-43", + "municipality": "Taragi", + "scheduled_service": "no" + }, + { + "id": "340752", + "ident": "JP-1304", + "type": "closed", + "name": "Kiwaki Airfield", + "latitude_deg": "32.023889", + "longitude_deg": "131.346944", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-45", + "municipality": "Kunitomi", + "scheduled_service": "no" + }, + { + "id": "340753", + "ident": "JP-1305", + "type": "closed", + "name": "Kawasebaru Airfield", + "latitude_deg": "32.225", + "longitude_deg": "131.551111", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-45", + "municipality": "Kawaminami", + "scheduled_service": "no" + }, + { + "id": "340754", + "ident": "JP-1306", + "type": "heliport", + "name": "Higashisawa Helipad", + "latitude_deg": "36.45182", + "longitude_deg": "137.686616", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Omachi", + "scheduled_service": "no" + }, + { + "id": "340755", + "ident": "JP-1307", + "type": "heliport", + "name": "Ikeda Heliport", + "latitude_deg": "36.418234", + "longitude_deg": "137.887905", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Ikeda", + "scheduled_service": "no" + }, + { + "id": "340756", + "ident": "JP-1308", + "type": "heliport", + "name": "Yokokawa Service Area Helipad", + "latitude_deg": "36.342249", + "longitude_deg": "138.739031", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Annaka", + "scheduled_service": "no" + }, + { + "id": "340757", + "ident": "JP-1309", + "type": "heliport", + "name": "JA Nagano Koseiren Saku General Hospital and Medical Center Heliport", + "latitude_deg": "36.252107", + "longitude_deg": "138.472214", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Saku", + "scheduled_service": "no" + }, + { + "id": "340758", + "ident": "JP-1310", + "type": "heliport", + "name": "Nagano Municipal Hospital Helipad", + "latitude_deg": "36.668259", + "longitude_deg": "138.254027", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Nagano", + "scheduled_service": "no" + }, + { + "id": "340759", + "ident": "JP-1311", + "type": "heliport", + "name": "Japan Red Cross Nagano Hospital Heliport", + "latitude_deg": "36.626485", + "longitude_deg": "138.191439", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Nagano", + "scheduled_service": "no" + }, + { + "id": "340760", + "ident": "JP-1312", + "type": "heliport", + "name": "Nagano Matsushiro General Hospital Helipad", + "latitude_deg": "36.563451", + "longitude_deg": "138.199788", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Nagano", + "scheduled_service": "no" + }, + { + "id": "340761", + "ident": "JP-1313", + "type": "heliport", + "name": "Nagano Children's Hospital Helipad", + "latitude_deg": "36.284337", + "longitude_deg": "137.921486", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Azumino", + "scheduled_service": "no" + }, + { + "id": "340762", + "ident": "JP-1314", + "type": "heliport", + "name": "Aizawa Hospital Helipad", + "latitude_deg": "36.226765", + "longitude_deg": "137.97398", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Matsumoto", + "scheduled_service": "no" + }, + { + "id": "340763", + "ident": "JP-1315", + "type": "heliport", + "name": "Shinshu University Hospital Helipad", + "latitude_deg": "36.249079", + "longitude_deg": "137.978533", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Matsumoto", + "scheduled_service": "no" + }, + { + "id": "340764", + "ident": "JP-1316", + "type": "heliport", + "name": "Showa Inan General Hospital Heliport", + "latitude_deg": "35.738253", + "longitude_deg": "137.92009", + "elevation_ft": "2382", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Komagane", + "scheduled_service": "no" + }, + { + "id": "340765", + "ident": "JP-1317", + "type": "heliport", + "name": "Ina Central Hospital Helipad", + "latitude_deg": "35.856903", + "longitude_deg": "137.952829", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Ina", + "scheduled_service": "no" + }, + { + "id": "340766", + "ident": "JP-1318", + "type": "heliport", + "name": "Nagano Prefectural Kiso Hospital Heliport", + "latitude_deg": "35.8353", + "longitude_deg": "137.684654", + "elevation_ft": "2444", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Kiso", + "scheduled_service": "no" + }, + { + "id": "340767", + "ident": "JP-1319", + "type": "heliport", + "name": "Iida Municipal Hospital Heliport", + "latitude_deg": "35.499276", + "longitude_deg": "137.837548", + "elevation_ft": "1578", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Iida", + "scheduled_service": "no" + }, + { + "id": "340768", + "ident": "JP-1320", + "type": "heliport", + "name": "Nara Medical University Hospital Helipad", + "latitude_deg": "34.503396", + "longitude_deg": "135.79287", + "elevation_ft": "357", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-29", + "municipality": "Kashihara", + "scheduled_service": "no" + }, + { + "id": "340769", + "ident": "JP-1321", + "type": "heliport", + "name": "Port Island Hospital Helipad", + "latitude_deg": "34.668762", + "longitude_deg": "135.209067", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "340770", + "ident": "JP-1322", + "type": "heliport", + "name": "Osaka International Convention Center Heliport", + "latitude_deg": "34.689636", + "longitude_deg": "135.486113", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "340771", + "ident": "JP-1323", + "type": "heliport", + "name": "The Park House Nakanoshima Tower Helipad", + "latitude_deg": "34.688645", + "longitude_deg": "135.48538", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "340772", + "ident": "JP-1324", + "type": "heliport", + "name": "Megacity Towers East Helipad", + "latitude_deg": "34.620788", + "longitude_deg": "135.585631", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Yao", + "scheduled_service": "no" + }, + { + "id": "340773", + "ident": "JP-1325", + "type": "heliport", + "name": "Megacity Towers West Helipad", + "latitude_deg": "34.621434", + "longitude_deg": "135.584942", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Yao", + "scheduled_service": "no" + }, + { + "id": "340774", + "ident": "JP-1326", + "type": "closed", + "name": "Yanagimoto Airfield", + "latitude_deg": "34.566944", + "longitude_deg": "135.823333", + "elevation_ft": "187", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-29", + "municipality": "Tenri", + "scheduled_service": "no", + "keywords": "Yamato Airfield Number 1" + }, + { + "id": "340775", + "ident": "JP-1327", + "type": "closed", + "name": "Atamine Airfield", + "latitude_deg": "34.386622", + "longitude_deg": "135.744736", + "elevation_ft": "764", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-29", + "municipality": "Gojo", + "scheduled_service": "no", + "keywords": "阿太峯飛行場, Yamato Airfield Number 2" + }, + { + "id": "340776", + "ident": "JP-1328", + "type": "heliport", + "name": "Saga Prefectural Heliport", + "latitude_deg": "33.24941", + "longitude_deg": "130.298573", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-41", + "municipality": "Saga", + "scheduled_service": "no" + }, + { + "id": "340777", + "ident": "JP-1329", + "type": "heliport", + "name": "Japan Red Cross Karatsu Hospital Helipad", + "latitude_deg": "33.434267", + "longitude_deg": "129.974445", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-41", + "municipality": "Karatsu", + "scheduled_service": "no" + }, + { + "id": "340778", + "ident": "JP-1330", + "type": "heliport", + "name": "Takashima Heliport", + "latitude_deg": "33.41389", + "longitude_deg": "129.731837", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Matsuura", + "scheduled_service": "no" + }, + { + "id": "340779", + "ident": "JP-1331", + "type": "heliport", + "name": "Kyushu University Heliport", + "latitude_deg": "33.597098", + "longitude_deg": "130.216786", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Fukuoka", + "scheduled_service": "no" + }, + { + "id": "340780", + "ident": "JP-1332", + "type": "heliport", + "name": "Genkaijima Heliport", + "latitude_deg": "33.68338", + "longitude_deg": "130.231528", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Fukuoka", + "scheduled_service": "no" + }, + { + "id": "340781", + "ident": "JP-1333", + "type": "small_airport", + "name": "Kita-Ariake Auxiliary Airfield", + "latitude_deg": "33.148715", + "longitude_deg": "130.187592", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-41", + "municipality": "Shiroishi", + "scheduled_service": "no" + }, + { + "id": "340783", + "ident": "JP-1334", + "type": "small_airport", + "name": "Ubuyama Auxiliary Airfield", + "latitude_deg": "32.98732", + "longitude_deg": "131.209242", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-43", + "municipality": "Ubuyama", + "scheduled_service": "no" + }, + { + "id": "340784", + "ident": "JP-1335", + "type": "small_airport", + "name": "Imari Flying Club Airfield", + "latitude_deg": "33.318118", + "longitude_deg": "129.997357", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-41", + "municipality": "Imari", + "scheduled_service": "no" + }, + { + "id": "340785", + "ident": "JP-1336", + "type": "closed", + "name": "Chiran Airfield", + "latitude_deg": "31.362339", + "longitude_deg": "130.433224", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Minamikyushu", + "scheduled_service": "no" + }, + { + "id": "340786", + "ident": "JP-1337", + "type": "closed", + "name": "Mansei Airfield", + "latitude_deg": "31.4343", + "longitude_deg": "130.89807", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Hioki", + "scheduled_service": "no" + }, + { + "id": "340787", + "ident": "JP-1338", + "type": "closed", + "name": "Ibusuki Airfield", + "latitude_deg": "31.262916", + "longitude_deg": "130.662609", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Ibusuki", + "scheduled_service": "no" + }, + { + "id": "340788", + "ident": "JP-1339", + "type": "seaplane_base", + "name": "Setouchi Seaplanes Nakaumi Skyport", + "latitude_deg": "35.490226", + "longitude_deg": "133.134601", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Matsue", + "scheduled_service": "no" + }, + { + "id": "340789", + "ident": "JP-1340", + "type": "closed", + "name": "Tatetsu Airfield", + "latitude_deg": "34.687325", + "longitude_deg": "135.605683", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Higashiosaka", + "scheduled_service": "no" + }, + { + "id": "340877", + "ident": "JP-1341", + "type": "heliport", + "name": "Fuefukigawa Fruit Park Heliport", + "latitude_deg": "35.70212", + "longitude_deg": "138.6698", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Yamanashi", + "scheduled_service": "no" + }, + { + "id": "340878", + "ident": "JP-1342", + "type": "heliport", + "name": "Yamanashi Fire Academy Helipad", + "latitude_deg": "35.58792", + "longitude_deg": "138.50969", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Chuo", + "scheduled_service": "no" + }, + { + "id": "340879", + "ident": "JP-1343", + "type": "heliport", + "name": "Furuseki Heliport", + "latitude_deg": "35.47504", + "longitude_deg": "138.52245", + "elevation_ft": "1290", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Minobu", + "scheduled_service": "no" + }, + { + "id": "340880", + "ident": "JP-1344", + "type": "heliport", + "name": "Uenotaira Heliport", + "latitude_deg": "35.42429", + "longitude_deg": "138.47162", + "elevation_ft": "750", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Minobu", + "scheduled_service": "no" + }, + { + "id": "340881", + "ident": "JP-1345", + "type": "heliport", + "name": "Shinjo Heliport", + "latitude_deg": "35.18008", + "longitude_deg": "133.56571", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Shinjo", + "scheduled_service": "no" + }, + { + "id": "340882", + "ident": "JP-1346", + "type": "closed", + "name": "Takashiro Airfield", + "latitude_deg": "35.42274", + "longitude_deg": "133.7662", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Kurayoshi", + "scheduled_service": "no", + "keywords": "Kurayoshi Airfield" + }, + { + "id": "340883", + "ident": "JP-1347", + "type": "closed", + "name": "Kitanaraoka Airfield", + "latitude_deg": "39.49684", + "longitude_deg": "140.39238", + "elevation_ft": "59", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Daisen", + "scheduled_service": "no" + }, + { + "id": "340884", + "ident": "JP-1348", + "type": "closed", + "name": "Tottori Municipal Airport", + "latitude_deg": "35.52416", + "longitude_deg": "134.17749", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Tottori", + "scheduled_service": "no" + }, + { + "id": "340885", + "ident": "JP-1349", + "type": "heliport", + "name": "Hida Kawai Parking Area Heliport", + "latitude_deg": "36.22623", + "longitude_deg": "137.0038", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Hida", + "scheduled_service": "no" + }, + { + "id": "340886", + "ident": "JP-1350", + "type": "heliport", + "name": "Kanazawa Bessho Heliport", + "latitude_deg": "36.521772", + "longitude_deg": "136.67582", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-17", + "municipality": "Kanazawa", + "scheduled_service": "no" + }, + { + "id": "340887", + "ident": "JP-1351", + "type": "heliport", + "name": "Toyama-Fukuoka Heliport", + "latitude_deg": "36.712306", + "longitude_deg": "136.920428", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-16", + "municipality": "Takaoka", + "scheduled_service": "no" + }, + { + "id": "340888", + "ident": "JP-1352", + "type": "heliport", + "name": "Toyama Emergency Heliport", + "latitude_deg": "36.707097", + "longitude_deg": "137.277601", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-16", + "municipality": "Toyama", + "scheduled_service": "no", + "keywords": "Mizuhashi Irie" + }, + { + "id": "340889", + "ident": "JP-1353", + "type": "heliport", + "name": "Arimine Dam Heliport", + "latitude_deg": "36.490516", + "longitude_deg": "137.456337", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-16", + "municipality": "Toyama", + "scheduled_service": "no" + }, + { + "id": "340890", + "ident": "JP-1354", + "type": "heliport", + "name": "Shirakawago Interchange Heliport", + "latitude_deg": "36.26376", + "longitude_deg": "136.900347", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Shirakawa", + "scheduled_service": "no" + }, + { + "id": "340891", + "ident": "JP-1355", + "type": "heliport", + "name": "Hokuriku Electricity Heliport", + "latitude_deg": "36.364626", + "longitude_deg": "137.461006", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Hida", + "scheduled_service": "no" + }, + { + "id": "340892", + "ident": "JP-1356", + "type": "heliport", + "name": "Matate Dam Heliport", + "latitude_deg": "36.523602", + "longitude_deg": "137.387928", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-16", + "municipality": "Toyama", + "scheduled_service": "no" + }, + { + "id": "340893", + "ident": "JP-1357", + "type": "heliport", + "name": "Takayama-Nishi Interchange Heliport", + "latitude_deg": "36.137974", + "longitude_deg": "137.168859", + "elevation_ft": "2218", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Hida", + "scheduled_service": "no" + }, + { + "id": "340894", + "ident": "JP-1358", + "type": "heliport", + "name": "Terao Emergency Heliport", + "latitude_deg": "36.261656", + "longitude_deg": "136.903637", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Shirakawa", + "scheduled_service": "no" + }, + { + "id": "340895", + "ident": "JP-1359", + "type": "heliport", + "name": "Nabehira Emergency Heliport", + "latitude_deg": "36.268949", + "longitude_deg": "137.576123", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Takayama", + "scheduled_service": "no" + }, + { + "id": "340896", + "ident": "JP-1360", + "type": "closed", + "name": "Toyama Army Airfield", + "latitude_deg": "36.748483", + "longitude_deg": "137.184444", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-16", + "municipality": "Nunome", + "scheduled_service": "no", + "keywords": "Kuragaki Airfield" + }, + { + "id": "340897", + "ident": "JP-1361", + "type": "closed", + "name": "Datehara Airfield", + "latitude_deg": "37.099765", + "longitude_deg": "138.749964", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Tokamachi", + "scheduled_service": "no" + }, + { + "id": "340898", + "ident": "JP-1362", + "type": "heliport", + "name": "Toyama Fire Academy Heliport", + "latitude_deg": "36.619218", + "longitude_deg": "137.198308", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-16", + "municipality": "Toyama", + "scheduled_service": "no" + }, + { + "id": "340899", + "ident": "JP-1363", + "type": "heliport", + "name": "Toyama City Hospital Heliport", + "latitude_deg": "36.673148", + "longitude_deg": "137.212885", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-16", + "municipality": "Toyama", + "scheduled_service": "no" + }, + { + "id": "340900", + "ident": "JP-1364", + "type": "heliport", + "name": "Toyama University Hospital Heliport", + "latitude_deg": "36.679788", + "longitude_deg": "137.139306", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-16", + "municipality": "Toyama", + "scheduled_service": "no" + }, + { + "id": "340901", + "ident": "JP-1365", + "type": "heliport", + "name": "Toyama Prefectural Central Hospital Heliport", + "latitude_deg": "36.692762", + "longitude_deg": "137.237374", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-16", + "municipality": "Toyama", + "scheduled_service": "no" + }, + { + "id": "340902", + "ident": "JP-1366", + "type": "heliport", + "name": "Yamagata Prefectural Central Hospital Helipad", + "latitude_deg": "38.301325", + "longitude_deg": "140.346916", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Yamagata", + "scheduled_service": "no" + }, + { + "id": "340903", + "ident": "JP-1367", + "type": "heliport", + "name": "Yamagata Tokushukai Hospital Helipad", + "latitude_deg": "38.255507", + "longitude_deg": "140.311919", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Yamagata", + "scheduled_service": "no" + }, + { + "id": "340905", + "ident": "JP-1368", + "type": "heliport", + "name": "Yamagata Fire Academy Heliport", + "latitude_deg": "38.787978", + "longitude_deg": "139.848399", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Mikawa", + "scheduled_service": "no" + }, + { + "id": "340906", + "ident": "JP-1369", + "type": "closed", + "name": "Nippi Airfield", + "latitude_deg": "38.311944", + "longitude_deg": "140.359444", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Yamagata", + "scheduled_service": "no" + }, + { + "id": "340907", + "ident": "JP-1370", + "type": "closed", + "name": "Sagae Gliderfield", + "latitude_deg": "38.380833", + "longitude_deg": "140.266667", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Sagae", + "scheduled_service": "no" + }, + { + "id": "340908", + "ident": "JP-1371", + "type": "closed", + "name": "Yonaza Airstrip", + "latitude_deg": "38.3975", + "longitude_deg": "140.2375", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Sagae", + "scheduled_service": "no" + }, + { + "id": "340909", + "ident": "JP-1372", + "type": "closed", + "name": "Sanbonyoshi Seaplane Base", + "latitude_deg": "35.541389", + "longitude_deg": "139.759167", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "340910", + "ident": "JP-1373", + "type": "closed", + "name": "Ogi Airfield", + "latitude_deg": "33.2925", + "longitude_deg": "130.186389", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-41", + "municipality": "Ogi", + "scheduled_service": "no" + }, + { + "id": "340911", + "ident": "JP-1374", + "type": "closed", + "name": "Matsuura River Auxiliary Airfield", + "latitude_deg": "33.435278", + "longitude_deg": "129.995833", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-41", + "municipality": "Karatsu", + "scheduled_service": "no" + }, + { + "id": "340916", + "ident": "JP-1375", + "type": "heliport", + "name": "Hiroshima Parco New Building Helipad", + "latitude_deg": "34.39205", + "longitude_deg": "132.46268", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "340917", + "ident": "JP-1376", + "type": "heliport", + "name": "Hiroshima Parco Main Building Helipad", + "latitude_deg": "34.39215", + "longitude_deg": "132.46196", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "340918", + "ident": "JP-1377", + "type": "closed", + "name": "Kabe Airfield", + "latitude_deg": "34.60751", + "longitude_deg": "132.59762", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Akitakata", + "scheduled_service": "no" + }, + { + "id": "340993", + "ident": "JP-1378", + "type": "closed", + "name": "Tsukishima Airfield", + "latitude_deg": "35.652659", + "longitude_deg": "139.777924", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "340994", + "ident": "JP-1379", + "type": "heliport", + "name": "Bayside Tower Harumi Helipad", + "latitude_deg": "35.65399", + "longitude_deg": "139.77788", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "340995", + "ident": "JP-1380", + "type": "heliport", + "name": "Deux Tours West Tower Helipad", + "latitude_deg": "35.654554", + "longitude_deg": "139.777061", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "340996", + "ident": "JP-1381", + "type": "heliport", + "name": "Deux Tours East Tower Helipad", + "latitude_deg": "35.655267", + "longitude_deg": "139.778076", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "340997", + "ident": "JP-1382", + "type": "heliport", + "name": "Bay City Harumi Sky Link Tower Helipad", + "latitude_deg": "35.655803", + "longitude_deg": "139.778815", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "340998", + "ident": "JP-1383", + "type": "heliport", + "name": "Harumi Triton Square Office Tower Y Helipad", + "latitude_deg": "35.656435", + "longitude_deg": "139.781379", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "340999", + "ident": "JP-1384", + "type": "heliport", + "name": "Harumi Triton Square Office Tower Z Helipad", + "latitude_deg": "35.657199", + "longitude_deg": "139.7815", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341000", + "ident": "JP-1385", + "type": "heliport", + "name": "Harumi Triton Square Office Tower X Helipad", + "latitude_deg": "35.656391", + "longitude_deg": "139.782411", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341001", + "ident": "JP-1386", + "type": "heliport", + "name": "Harumi Triton Square Urban Tower Helipad", + "latitude_deg": "35.657359", + "longitude_deg": "139.78374", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341002", + "ident": "JP-1387", + "type": "heliport", + "name": "Harumi View Tower 1 Helipad", + "latitude_deg": "35.659267", + "longitude_deg": "139.78411", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341003", + "ident": "JP-1388", + "type": "heliport", + "name": "Parkhouse Harumi Towers Chrono Residence Helipad", + "latitude_deg": "35.655041", + "longitude_deg": "139.785309", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341004", + "ident": "JP-1389", + "type": "heliport", + "name": "Parkhouse Harumi Towers Tiaro Residence Helipad", + "latitude_deg": "35.655726", + "longitude_deg": "139.786339", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341006", + "ident": "JP-1390", + "type": "heliport", + "name": "Toyosu Ciel Tower Helipad", + "latitude_deg": "35.65352", + "longitude_deg": "139.79619", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341007", + "ident": "JP-1391", + "type": "heliport", + "name": "Park Home Toyosu Residence Helipad", + "latitude_deg": "35.65131", + "longitude_deg": "139.79687", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341008", + "ident": "JP-1392", + "type": "heliport", + "name": "Showa University Koto Toyosu Hospital Helipad", + "latitude_deg": "35.65065", + "longitude_deg": "139.79621", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341009", + "ident": "JP-1393", + "type": "heliport", + "name": "Bayz Tower & Garden Helipad", + "latitude_deg": "35.64839", + "longitude_deg": "139.79412", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341010", + "ident": "JP-1394", + "type": "heliport", + "name": "Sky City Toyosu Bayside Tower Helipad", + "latitude_deg": "35.66222", + "longitude_deg": "139.7929", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341011", + "ident": "JP-1395", + "type": "heliport", + "name": "Canal Wharf Towers West Helipad", + "latitude_deg": "35.66252", + "longitude_deg": "139.79342", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341012", + "ident": "JP-1396", + "type": "heliport", + "name": "Canal Wharf Towers East Helipad", + "latitude_deg": "35.6618", + "longitude_deg": "139.79442", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341013", + "ident": "JP-1397", + "type": "heliport", + "name": "Skyz Tower & Garden Helipad", + "latitude_deg": "35.64731", + "longitude_deg": "139.79308", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341014", + "ident": "JP-1398", + "type": "heliport", + "name": "Tepco Toyosu Building Helipad", + "latitude_deg": "35.6479", + "longitude_deg": "139.79125", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341015", + "ident": "JP-1399", + "type": "heliport", + "name": "Toyosu Market Helipad", + "latitude_deg": "35.64527", + "longitude_deg": "139.78804", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341016", + "ident": "JP-1400", + "type": "heliport", + "name": "Toyosu Wholesale Market Helipad", + "latitude_deg": "35.64261", + "longitude_deg": "139.78216", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341017", + "ident": "JP-1401", + "type": "heliport", + "name": "Urban Dock Park City Toyosu Tower B Helipad", + "latitude_deg": "35.65721", + "longitude_deg": "139.79104", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341018", + "ident": "JP-1402", + "type": "heliport", + "name": "Urban Dock Park City Toyosu Tower A Helipad", + "latitude_deg": "35.65802", + "longitude_deg": "139.7913", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341019", + "ident": "JP-1403", + "type": "heliport", + "name": "Nihon Unisys Helipad", + "latitude_deg": "35.66002", + "longitude_deg": "139.79081", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341183", + "ident": "JP-1404", + "type": "heliport", + "name": "Park Sky Tower Matsudo Helipad", + "latitude_deg": "35.787436", + "longitude_deg": "139.900919", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Matsudo", + "scheduled_service": "no" + }, + { + "id": "341184", + "ident": "JP-1405", + "type": "heliport", + "name": "Seitoku University Helipad", + "latitude_deg": "35.784683", + "longitude_deg": "139.901638", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Matsudo", + "scheduled_service": "no" + }, + { + "id": "341185", + "ident": "JP-1406", + "type": "heliport", + "name": "Tokyo Detention House Helipad", + "latitude_deg": "35.758652", + "longitude_deg": "139.81765", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Katsushika, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341188", + "ident": "JP-1407", + "type": "heliport", + "name": "Shizuoka Central Police Station Helipad", + "latitude_deg": "34.97604", + "longitude_deg": "138.38185", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "341189", + "ident": "JP-1408", + "type": "heliport", + "name": "Gofukucho Tower Helipad", + "latitude_deg": "34.975603", + "longitude_deg": "138.380432", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "341194", + "ident": "JP-1409", + "type": "heliport", + "name": "Osaka Prefectural Police Headquarters Heliport", + "latitude_deg": "34.68407", + "longitude_deg": "135.52079", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341195", + "ident": "JP-1410", + "type": "heliport", + "name": "Sumitomo Life OBP Shiromi Building Helipad", + "latitude_deg": "34.69189", + "longitude_deg": "135.53465", + "elevation_ft": "387", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341196", + "ident": "JP-1411", + "type": "heliport", + "name": "KDDI Osaka #2 Building Helipad", + "latitude_deg": "34.69291", + "longitude_deg": "135.533579", + "elevation_ft": "440", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341200", + "ident": "JP-1412", + "type": "heliport", + "name": "Dawn Center Helipad", + "latitude_deg": "34.68993", + "longitude_deg": "135.52077", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341201", + "ident": "JP-1413", + "type": "heliport", + "name": "Renaissa Nanba Tower Helipad", + "latitude_deg": "34.66446", + "longitude_deg": "135.49435", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341202", + "ident": "JP-1414", + "type": "heliport", + "name": "Nanba Central Plaza River Garden Helipad", + "latitude_deg": "34.66499", + "longitude_deg": "135.49455", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341203", + "ident": "JP-1415", + "type": "heliport", + "name": "Laurel Tower Nanba Helipad", + "latitude_deg": "34.665739", + "longitude_deg": "135.495779", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341204", + "ident": "JP-1416", + "type": "heliport", + "name": "Laurel Coiurt Nanba Helipad", + "latitude_deg": "34.66573", + "longitude_deg": "135.494414", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341205", + "ident": "JP-1417", + "type": "heliport", + "name": "Osaka Menseste Helipad", + "latitude_deg": "34.666116", + "longitude_deg": "135.494558", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341206", + "ident": "JP-1418", + "type": "heliport", + "name": "Maruito Nanba Building Helipad", + "latitude_deg": "34.66703", + "longitude_deg": "135.496252", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341207", + "ident": "JP-1419", + "type": "heliport", + "name": "Ajinomoto Group Osaka Building Helipad", + "latitude_deg": "34.68736", + "longitude_deg": "135.48534", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341208", + "ident": "JP-1420", + "type": "heliport", + "name": "Nakanoshima Intes Building Helipad", + "latitude_deg": "34.688176", + "longitude_deg": "135.484825", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341209", + "ident": "JP-1421", + "type": "heliport", + "name": "Sumitomo Hospital Helipad", + "latitude_deg": "34.68868", + "longitude_deg": "135.48718", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341210", + "ident": "JP-1422", + "type": "heliport", + "name": "N4 Tower Helipad", + "latitude_deg": "34.69144", + "longitude_deg": "135.49043", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341211", + "ident": "JP-1423", + "type": "heliport", + "name": "Grand Suite Nakanoshima Tower Helipad", + "latitude_deg": "34.69182", + "longitude_deg": "135.49261", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341212", + "ident": "JP-1424", + "type": "heliport", + "name": "Kansai Electric Building Helipad", + "latitude_deg": "34.692526", + "longitude_deg": "135.4925", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no", + "keywords": "Kanden Building" + }, + { + "id": "341213", + "ident": "JP-1425", + "type": "heliport", + "name": "Daibiru Headquarters Helipad", + "latitude_deg": "34.69318", + "longitude_deg": "135.492873", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341214", + "ident": "JP-1426", + "type": "heliport", + "name": "Nakanoshima Daibiru Building Helipad", + "latitude_deg": "34.693135", + "longitude_deg": "135.493604", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341215", + "ident": "JP-1427", + "type": "heliport", + "name": "Nakanoshima Mitsui Building Helipad", + "latitude_deg": "34.693153", + "longitude_deg": "135.49409", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341216", + "ident": "JP-1428", + "type": "heliport", + "name": "Mitsui Garden Hotel Osaka Premier Helipad", + "latitude_deg": "34.69224", + "longitude_deg": "135.4933", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341217", + "ident": "JP-1429", + "type": "heliport", + "name": "Nakanoshima Festival Tower West Helipad", + "latitude_deg": "34.69336", + "longitude_deg": "135.49548", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341218", + "ident": "JP-1430", + "type": "heliport", + "name": "Nakanoshima Festival Tower Helipad", + "latitude_deg": "34.69367", + "longitude_deg": "135.49672", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341219", + "ident": "JP-1431", + "type": "heliport", + "name": "Osaka Mitsui Bussan Building Helipad", + "latitude_deg": "34.693738", + "longitude_deg": "135.497306", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341220", + "ident": "JP-1432", + "type": "heliport", + "name": "Nakanoshima Central Tower Helipad", + "latitude_deg": "34.693817", + "longitude_deg": "135.498157", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341221", + "ident": "JP-1433", + "type": "heliport", + "name": "King Mansion Dojimagawa Helipad", + "latitude_deg": "34.68982", + "longitude_deg": "135.48418", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341222", + "ident": "JP-1434", + "type": "heliport", + "name": "Uniheim Nakanoshimado Shimakawa Tower Residence Helipad", + "latitude_deg": "34.69128", + "longitude_deg": "135.48567", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341223", + "ident": "JP-1435", + "type": "heliport", + "name": "Riverside Tower Nakanoshima Helipad", + "latitude_deg": "34.69185", + "longitude_deg": "135.48576", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341224", + "ident": "JP-1436", + "type": "heliport", + "name": "Crevia Tower Nakanoshima Helipad", + "latitude_deg": "34.69201", + "longitude_deg": "135.48608", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341225", + "ident": "JP-1437", + "type": "heliport", + "name": "Kansai Electric Power Hospital Helipad", + "latitude_deg": "34.69307", + "longitude_deg": "135.48748", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341226", + "ident": "JP-1438", + "type": "heliport", + "name": "JCHO Osaka Hospital Helipad", + "latitude_deg": "34.69191", + "longitude_deg": "135.48331", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341291", + "ident": "JP-1439", + "type": "heliport", + "name": "The Tower Osaka Helipad", + "latitude_deg": "34.69445", + "longitude_deg": "135.48916", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341292", + "ident": "JP-1440", + "type": "heliport", + "name": "Dojima River Forum Helipad", + "latitude_deg": "34.69409", + "longitude_deg": "135.48967", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341293", + "ident": "JP-1441", + "type": "heliport", + "name": "Asahi Broadcasting Helipad", + "latitude_deg": "34.69387", + "longitude_deg": "135.48812", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341294", + "ident": "JP-1442", + "type": "heliport", + "name": "Osaka Nakanoshima Joint Government Building Helipad", + "latitude_deg": "34.69453", + "longitude_deg": "135.49051", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341295", + "ident": "JP-1443", + "type": "heliport", + "name": "NTT Telepark Dojima No. 2 Building Helipad", + "latitude_deg": "34.6946", + "longitude_deg": "135.49203", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341296", + "ident": "JP-1444", + "type": "heliport", + "name": "Suntory Annex Helipad", + "latitude_deg": "34.69592", + "longitude_deg": "135.49488", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341297", + "ident": "JP-1445", + "type": "heliport", + "name": "Aloft Osaka Dojima Helipad", + "latitude_deg": "34.695512", + "longitude_deg": "135.495148", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341298", + "ident": "JP-1446", + "type": "heliport", + "name": "Shin-Fujita Building Helipad", + "latitude_deg": "34.6958", + "longitude_deg": "135.49295", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341299", + "ident": "JP-1447", + "type": "heliport", + "name": "Hotel Elsereine Osaka Helipad", + "latitude_deg": "34.69639", + "longitude_deg": "135.49584", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341300", + "ident": "JP-1448", + "type": "heliport", + "name": "Dojima Plaza Building Helipad", + "latitude_deg": "34.69627", + "longitude_deg": "135.4965", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341301", + "ident": "JP-1449", + "type": "heliport", + "name": "ManuLife Place Dojima Helipad", + "latitude_deg": "34.69563", + "longitude_deg": "135.49593", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341302", + "ident": "JP-1450", + "type": "heliport", + "name": "Aqua Dojima West Helipad", + "latitude_deg": "34.69514", + "longitude_deg": "135.49623", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341303", + "ident": "JP-1451", + "type": "heliport", + "name": "Aqua Dojima East Helipad", + "latitude_deg": "34.69526", + "longitude_deg": "135.49701", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341304", + "ident": "JP-1452", + "type": "heliport", + "name": "Dojima The Residence Helipad", + "latitude_deg": "34.696721", + "longitude_deg": "135.494526", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341305", + "ident": "JP-1453", + "type": "heliport", + "name": "Dojima Avanza Helipad", + "latitude_deg": "34.696935", + "longitude_deg": "135.496425", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341306", + "ident": "JP-1454", + "type": "heliport", + "name": "Shin Daibiru Building", + "latitude_deg": "34.695812", + "longitude_deg": "135.4993", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341307", + "ident": "JP-1455", + "type": "heliport", + "name": "Osaka High Court Helipad", + "latitude_deg": "34.696073", + "longitude_deg": "135.504036", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341308", + "ident": "JP-1456", + "type": "heliport", + "name": "Parknard Nakanoshima Park Rojuman Helipad", + "latitude_deg": "34.693279", + "longitude_deg": "135.512059", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341309", + "ident": "JP-1457", + "type": "heliport", + "name": "Genis Osaka East Helipad", + "latitude_deg": "34.693768", + "longitude_deg": "135.510856", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341310", + "ident": "JP-1458", + "type": "heliport", + "name": "Genis Osaka Emergency Center Helipad", + "latitude_deg": "34.69401", + "longitude_deg": "135.51045", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341311", + "ident": "JP-1459", + "type": "heliport", + "name": "Jin Orix Building Helipad", + "latitude_deg": "34.69397", + "longitude_deg": "135.50768", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341312", + "ident": "JP-1460", + "type": "heliport", + "name": "Viequ Tower Helipad", + "latitude_deg": "34.69423", + "longitude_deg": "135.50684", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341313", + "ident": "JP-1461", + "type": "heliport", + "name": "Osaka Bar Association Helipad", + "latitude_deg": "34.69446", + "longitude_deg": "135.50627", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341314", + "ident": "JP-1462", + "type": "heliport", + "name": "Itopia Nishitenma Soars Tower Helipad", + "latitude_deg": "34.69517", + "longitude_deg": "135.506", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341315", + "ident": "JP-1463", + "type": "heliport", + "name": "Herbis Plaza ENT Heliport", + "latitude_deg": "34.69969", + "longitude_deg": "135.4944", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341316", + "ident": "JP-1464", + "type": "heliport", + "name": "Breeze Tower Heliport", + "latitude_deg": "34.69875", + "longitude_deg": "135.49386", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341317", + "ident": "JP-1465", + "type": "heliport", + "name": "Shin-Sakurabashi Building", + "latitude_deg": "34.69874", + "longitude_deg": "135.49512", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341320", + "ident": "JP-1466", + "type": "heliport", + "name": "Diamor Osaka Helipad", + "latitude_deg": "34.69985", + "longitude_deg": "135.4977", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341321", + "ident": "JP-1467", + "type": "heliport", + "name": "Umeda Square Building Helipad", + "latitude_deg": "34.70033", + "longitude_deg": "135.49803", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341322", + "ident": "JP-1468", + "type": "heliport", + "name": "E-ma Helipad", + "latitude_deg": "34.70071", + "longitude_deg": "135.49848", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341323", + "ident": "JP-1469", + "type": "heliport", + "name": "Hanshin Department Store Umeda Helipad", + "latitude_deg": "34.70112", + "longitude_deg": "135.49863", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341324", + "ident": "JP-1470", + "type": "heliport", + "name": "Kitano Hospital Helipad", + "latitude_deg": "34.70524", + "longitude_deg": "135.50683", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341325", + "ident": "JP-1471", + "type": "heliport", + "name": "Park Tower Umeda Helipad", + "latitude_deg": "34.70524", + "longitude_deg": "135.50594", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341326", + "ident": "JP-1472", + "type": "heliport", + "name": "Logements Tower Umeda Helipad", + "latitude_deg": "34.70513", + "longitude_deg": "135.50442", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341327", + "ident": "JP-1473", + "type": "heliport", + "name": "Laurel Tower Umeda Helipad", + "latitude_deg": "34.70598", + "longitude_deg": "135.5048", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341328", + "ident": "JP-1474", + "type": "heliport", + "name": "Hepfive Helipad", + "latitude_deg": "34.70424", + "longitude_deg": "135.50071", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341329", + "ident": "JP-1475", + "type": "heliport", + "name": "OS Building Helipad", + "latitude_deg": "34.70282", + "longitude_deg": "135.50039", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341330", + "ident": "JP-1476", + "type": "heliport", + "name": "Osaka Prefectural Life Building Helipad", + "latitude_deg": "34.7023", + "longitude_deg": "135.50023", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341331", + "ident": "JP-1477", + "type": "heliport", + "name": "Seiwa-Umeda Building", + "latitude_deg": "34.70116", + "longitude_deg": "135.49982", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341332", + "ident": "JP-1478", + "type": "heliport", + "name": "Coffret Umeda Helipad", + "latitude_deg": "34.70085", + "longitude_deg": "135.50001", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341333", + "ident": "JP-1479", + "type": "heliport", + "name": "Umeda Nanairo Helipad", + "latitude_deg": "34.70326", + "longitude_deg": "135.50106", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341334", + "ident": "JP-1480", + "type": "heliport", + "name": "Yanmar Flying-Y Building Helipad", + "latitude_deg": "34.7052", + "longitude_deg": "135.49946", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341335", + "ident": "JP-1481", + "type": "heliport", + "name": "OIT Umeda Tower Helipad", + "latitude_deg": "34.70549", + "longitude_deg": "135.50022", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341336", + "ident": "JP-1482", + "type": "heliport", + "name": "Links Umeda Helipad", + "latitude_deg": "34.70378", + "longitude_deg": "135.49604", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341340", + "ident": "JP-1483", + "type": "heliport", + "name": "Osaka Station North Gate Building Office Tower Helipad", + "latitude_deg": "34.70259", + "longitude_deg": "135.49447", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341341", + "ident": "JP-1484", + "type": "heliport", + "name": "Grand Front Osaka South Building Tower A Helipad", + "latitude_deg": "34.70443", + "longitude_deg": "135.49487", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341342", + "ident": "JP-1485", + "type": "heliport", + "name": "Grand Front Osaka North Building Tower B Helipad", + "latitude_deg": "34.70538", + "longitude_deg": "135.49447", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341343", + "ident": "JP-1486", + "type": "heliport", + "name": "Mainichi Newspaper Building Helipad", + "latitude_deg": "34.6986", + "longitude_deg": "135.49026", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341344", + "ident": "JP-1487", + "type": "heliport", + "name": "Osaka Central Hospital Heliport", + "latitude_deg": "34.69923", + "longitude_deg": "135.49137", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341345", + "ident": "JP-1488", + "type": "heliport", + "name": "Meiji Yasuda Life Umeda Building Helipad", + "latitude_deg": "34.69869", + "longitude_deg": "135.49162", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341346", + "ident": "JP-1489", + "type": "heliport", + "name": "Umeda Daibiru Building Helipad", + "latitude_deg": "34.69913", + "longitude_deg": "135.49231", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341347", + "ident": "JP-1490", + "type": "heliport", + "name": "Hotel Monterey Helipad", + "latitude_deg": "34.69939", + "longitude_deg": "135.49196", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341348", + "ident": "JP-1491", + "type": "heliport", + "name": "Daiwa House Osaka Building Helipad", + "latitude_deg": "34.69961", + "longitude_deg": "135.49274", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341349", + "ident": "JP-1492", + "type": "heliport", + "name": "Osaka Mode Gakuen Helipad", + "latitude_deg": "34.69995", + "longitude_deg": "135.49301", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341350", + "ident": "JP-1493", + "type": "heliport", + "name": "Hilton Plaza West Osaka Helipad", + "latitude_deg": "34.6999", + "longitude_deg": "135.49532", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341351", + "ident": "JP-1494", + "type": "heliport", + "name": "Umeda Gate Tower Helipad", + "latitude_deg": "34.70676", + "longitude_deg": "135.5011", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341352", + "ident": "JP-1495", + "type": "heliport", + "name": "Harmonie Embrassee Osaka Helipad", + "latitude_deg": "34.70749", + "longitude_deg": "135.50018", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341353", + "ident": "JP-1496", + "type": "heliport", + "name": "NU Chayamachi Plus Helipad", + "latitude_deg": "34.70737", + "longitude_deg": "135.49953", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341354", + "ident": "JP-1497", + "type": "heliport", + "name": "Mainichi Broadcasting System Helipad", + "latitude_deg": "34.70876", + "longitude_deg": "135.5002", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341355", + "ident": "JP-1498", + "type": "heliport", + "name": "Osaka Umeda Senshu Ikeda Bank Building Helipad", + "latitude_deg": "34.70898", + "longitude_deg": "135.49973", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341356", + "ident": "JP-1499", + "type": "heliport", + "name": "Applause Tower (Hankyu Chayamachi Building) Helipad", + "latitude_deg": "34.70849", + "longitude_deg": "135.49857", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341357", + "ident": "JP-1500", + "type": "heliport", + "name": "Hankyu Headquarters Building Helipad", + "latitude_deg": "34.708812", + "longitude_deg": "135.497057", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341358", + "ident": "JP-1501", + "type": "heliport", + "name": "Grand Front Osaka Owners Tower Helipad", + "latitude_deg": "34.70715", + "longitude_deg": "135.49406", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341359", + "ident": "JP-1502", + "type": "heliport", + "name": "Grand Front Osaka Tower C Helipad", + "latitude_deg": "34.70646", + "longitude_deg": "135.49454", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341360", + "ident": "JP-1503", + "type": "heliport", + "name": "Osaka Saiseikai Nakatsu Hospital Helipad", + "latitude_deg": "34.70857", + "longitude_deg": "135.49513", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341361", + "ident": "JP-1504", + "type": "heliport", + "name": "Osaka City Staff Human Resources Development Center Helipad", + "latitude_deg": "34.64338", + "longitude_deg": "135.51008", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341363", + "ident": "JP-1505", + "type": "heliport", + "name": "City Tower Grand Tennoji Helipad", + "latitude_deg": "34.64382", + "longitude_deg": "135.51749", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341364", + "ident": "JP-1506", + "type": "heliport", + "name": "Osaka City University Hospital Helipad", + "latitude_deg": "34.64661", + "longitude_deg": "135.5088", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341365", + "ident": "JP-1507", + "type": "heliport", + "name": "Osaka City University Medical Faculty Helipad", + "latitude_deg": "34.64633", + "longitude_deg": "135.50979", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341366", + "ident": "JP-1508", + "type": "heliport", + "name": "Abeno Lucias Helipad", + "latitude_deg": "34.64665", + "longitude_deg": "135.511", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341367", + "ident": "JP-1509", + "type": "heliport", + "name": "Fuji Heliport", + "latitude_deg": "35.15389", + "longitude_deg": "138.69608", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Fuji", + "scheduled_service": "no" + }, + { + "id": "341385", + "ident": "JP-1510", + "type": "heliport", + "name": "Izumi Garden Tower Helipad", + "latitude_deg": "35.66442", + "longitude_deg": "139.73949", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341387", + "ident": "JP-1511", + "type": "heliport", + "name": "Prime Minister's Office Heliport", + "latitude_deg": "35.67304", + "longitude_deg": "139.7423", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341399", + "ident": "JP-1512", + "type": "heliport", + "name": "Roppongi Grand Tower Helipad", + "latitude_deg": "35.66475", + "longitude_deg": "139.73792", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341400", + "ident": "JP-1513", + "type": "heliport", + "name": "Capitol Hotel Tokyu Helipad", + "latitude_deg": "35.67403", + "longitude_deg": "139.74101", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341407", + "ident": "JP-1514", + "type": "heliport", + "name": "Roppongi T-Cube Helipad", + "latitude_deg": "35.665508", + "longitude_deg": "139.738239", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341415", + "ident": "JP-1515", + "type": "heliport", + "name": "Izumi Garden Residence Helipad", + "latitude_deg": "35.665368", + "longitude_deg": "139.740371", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341420", + "ident": "JP-1516", + "type": "heliport", + "name": "Kamiyacho MT Building Helipad", + "latitude_deg": "35.66361", + "longitude_deg": "139.74449", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341421", + "ident": "JP-1517", + "type": "heliport", + "name": "Shiroyama Trust Tower Helipad", + "latitude_deg": "35.66482", + "longitude_deg": "139.7431", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341422", + "ident": "JP-1518", + "type": "heliport", + "name": "Toranomon Towers Residence Helipad", + "latitude_deg": "35.66561", + "longitude_deg": "139.74436", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341423", + "ident": "JP-1519", + "type": "heliport", + "name": "Toranomon Kotohira Tower Helipad", + "latitude_deg": "35.66948", + "longitude_deg": "139.74836", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341424", + "ident": "JP-1520", + "type": "heliport", + "name": "Mizuhori Lease Building Helipad", + "latitude_deg": "35.6698", + "longitude_deg": "139.74867", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341425", + "ident": "JP-1521", + "type": "heliport", + "name": "Akasaka Intercity Helipad", + "latitude_deg": "35.66898", + "longitude_deg": "139.74256", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341426", + "ident": "JP-1522", + "type": "heliport", + "name": "Cotton Harbor Marina Gate Tower Helipad", + "latitude_deg": "35.47158", + "longitude_deg": "139.6379", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "341433", + "ident": "JP-1523", + "type": "heliport", + "name": "Akasaka Intercity AIR Helipad", + "latitude_deg": "35.67005", + "longitude_deg": "139.74286", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341434", + "ident": "JP-1524", + "type": "heliport", + "name": "Akasaka Garden City Building Helipad", + "latitude_deg": "35.67416", + "longitude_deg": "139.73155", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341435", + "ident": "JP-1525", + "type": "heliport", + "name": "Akasaka Civic Center Helipad", + "latitude_deg": "35.67479", + "longitude_deg": "139.7318", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341436", + "ident": "JP-1526", + "type": "heliport", + "name": "Akasaka Park Building Helipad", + "latitude_deg": "35.67218", + "longitude_deg": "139.73354", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341437", + "ident": "JP-1527", + "type": "heliport", + "name": "TBS Television Helipad", + "latitude_deg": "35.67184", + "longitude_deg": "139.73511", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341438", + "ident": "JP-1528", + "type": "heliport", + "name": "Central Government Building 8 Heliport", + "latitude_deg": "35.67262", + "longitude_deg": "139.74545", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341439", + "ident": "JP-1529", + "type": "heliport", + "name": "Cotton Harbor Towers Sea West Helipad", + "latitude_deg": "35.46927", + "longitude_deg": "139.63818", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "341440", + "ident": "JP-1530", + "type": "heliport", + "name": "Cotton Harbor Towers Bay West Helipad", + "latitude_deg": "35.46996", + "longitude_deg": "139.63786", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "341441", + "ident": "JP-1531", + "type": "heliport", + "name": "Cross Gate Helipad", + "latitude_deg": "35.45069", + "longitude_deg": "139.63265", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "341442", + "ident": "JP-1532", + "type": "heliport", + "name": "Fujisoft Building Helipad", + "latitude_deg": "35.45025", + "longitude_deg": "139.63231", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "341443", + "ident": "JP-1533", + "type": "heliport", + "name": "Yokohama Municipal Urafune Special Needs School Helipad", + "latitude_deg": "35.43438", + "longitude_deg": "139.62574", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "341444", + "ident": "JP-1534", + "type": "heliport", + "name": "Kanagawa Prefectural Police Helipad", + "latitude_deg": "35.4499", + "longitude_deg": "139.64111", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "341446", + "ident": "JP-1535", + "type": "heliport", + "name": "Sanno Park Tower Helipad", + "latitude_deg": "35.67304", + "longitude_deg": "139.74096", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341447", + "ident": "JP-1536", + "type": "heliport", + "name": "TS Plaza Building Helipad", + "latitude_deg": "35.46834", + "longitude_deg": "139.62148", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "341455", + "ident": "JP-1537", + "type": "heliport", + "name": "Asahi Kawagoe Heliport", + "latitude_deg": "35.95838", + "longitude_deg": "139.46721", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kawagoe", + "scheduled_service": "no" + }, + { + "id": "341456", + "ident": "JP-1538", + "type": "heliport", + "name": "Yamaguchi Prefectural Medical Center Helipad", + "latitude_deg": "34.06698", + "longitude_deg": "131.54131", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Hofu", + "scheduled_service": "no" + }, + { + "id": "341457", + "ident": "JP-1539", + "type": "closed", + "name": "Yamaguchi Airfield", + "latitude_deg": "34.15108", + "longitude_deg": "131.43578", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Yamaguchi", + "scheduled_service": "no" + }, + { + "id": "341458", + "ident": "JP-1540", + "type": "closed", + "name": "Oura Naval Seaplane Base", + "latitude_deg": "34.40225", + "longitude_deg": "130.94986", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Nagato", + "scheduled_service": "no" + }, + { + "id": "341460", + "ident": "JP-1541", + "type": "heliport", + "name": "First Members' Office Building of the House of Representatives Helipad", + "latitude_deg": "35.67429", + "longitude_deg": "139.74246", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341461", + "ident": "JP-1542", + "type": "heliport", + "name": "Second Members' Office Building of the House of Representatives Helipad", + "latitude_deg": "35.6754", + "longitude_deg": "139.74215", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341462", + "ident": "JP-1543", + "type": "heliport", + "name": "Third Members' Office Building of the House of Representatives Helipad", + "latitude_deg": "35.67654", + "longitude_deg": "139.74182", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341463", + "ident": "JP-1544", + "type": "heliport", + "name": "Defense Ministry East Helipad", + "latitude_deg": "35.69269", + "longitude_deg": "139.7291", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341464", + "ident": "JP-1545", + "type": "heliport", + "name": "Defense Ministry West Helipad", + "latitude_deg": "35.6928", + "longitude_deg": "139.72845", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341465", + "ident": "JP-1546", + "type": "heliport", + "name": "Iwai Heliport", + "latitude_deg": "36.04426", + "longitude_deg": "139.86194", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Bando", + "scheduled_service": "no" + }, + { + "id": "341512", + "ident": "JP-1547", + "type": "heliport", + "name": "Japan Red Cross Narita Hospital Heliport", + "latitude_deg": "35.76496", + "longitude_deg": "140.30259", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Narita", + "scheduled_service": "no" + }, + { + "id": "341513", + "ident": "JP-1548", + "type": "closed", + "name": "Inba Airfield", + "latitude_deg": "35.80095", + "longitude_deg": "140.16237", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Inzai", + "scheduled_service": "no" + }, + { + "id": "341514", + "ident": "JP-1549", + "type": "closed", + "name": "Shimoshizu Airfield", + "latitude_deg": "35.65165", + "longitude_deg": "140.14604", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Chiba", + "scheduled_service": "no" + }, + { + "id": "341515", + "ident": "JP-1550", + "type": "closed", + "name": "Kisarazu 2nd Airfield", + "latitude_deg": "35.40852", + "longitude_deg": "139.99666", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Kisarazu", + "scheduled_service": "no" + }, + { + "id": "341516", + "ident": "JP-1551", + "type": "closed", + "name": "Taito Airfield", + "latitude_deg": "35.30698", + "longitude_deg": "140.40091", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Isumi", + "scheduled_service": "no" + }, + { + "id": "341517", + "ident": "JP-1552", + "type": "closed", + "name": "Manna Airfield", + "latitude_deg": "35.47055", + "longitude_deg": "140.25689", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Nagara", + "scheduled_service": "no" + }, + { + "id": "341518", + "ident": "JP-1553", + "type": "closed", + "name": "Choshi Airfield", + "latitude_deg": "35.72555", + "longitude_deg": "140.80944", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Choshi", + "scheduled_service": "no" + }, + { + "id": "341530", + "ident": "JP-1554", + "type": "heliport", + "name": "Tokorozawa Communications Base Helipad", + "latitude_deg": "35.80608", + "longitude_deg": "139.47094", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Tokorozawa", + "scheduled_service": "no" + }, + { + "id": "341539", + "ident": "JP-1555", + "type": "heliport", + "name": "DNP Ichigaya Kagacho Building Helipad", + "latitude_deg": "35.6956", + "longitude_deg": "139.73107", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341540", + "ident": "JP-1556", + "type": "heliport", + "name": "DNP Ichigaya Sanaicho Building Helipad", + "latitude_deg": "35.69477", + "longitude_deg": "139.73236", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341541", + "ident": "JP-1557", + "type": "heliport", + "name": "Kawadacho Garden Helipad", + "latitude_deg": "35.69538", + "longitude_deg": "139.72109", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341542", + "ident": "JP-1558", + "type": "heliport", + "name": "JA Kyosai Building Helipad", + "latitude_deg": "35.68039", + "longitude_deg": "139.74026", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "341555", + "ident": "JP-1559", + "type": "heliport", + "name": "Shizuoka Concert Hall AOI Helipad", + "latitude_deg": "34.97146", + "longitude_deg": "138.38655", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "341556", + "ident": "JP-1560", + "type": "heliport", + "name": "Excel Word Shizuoka Building Helipad", + "latitude_deg": "34.97346", + "longitude_deg": "138.38899", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "341557", + "ident": "JP-1561", + "type": "heliport", + "name": "Shizuoka Gender Equality Center Helipad", + "latitude_deg": "34.968746", + "longitude_deg": "138.383173", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "341558", + "ident": "JP-1562", + "type": "heliport", + "name": "Agora Shizuoka Helipad", + "latitude_deg": "34.97434", + "longitude_deg": "138.38491", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "341559", + "ident": "JP-1563", + "type": "heliport", + "name": "Urbannet Shizuoka Otemachi Helipad", + "latitude_deg": "34.974901", + "longitude_deg": "138.384103", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "341561", + "ident": "JP-1564", + "type": "heliport", + "name": "Pegasert Building Helipad", + "latitude_deg": "34.974981", + "longitude_deg": "138.386111", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "341563", + "ident": "JP-1565", + "type": "heliport", + "name": "Hamamatsu Fire Heliport", + "latitude_deg": "34.84246", + "longitude_deg": "137.74343", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Hamamatsu", + "scheduled_service": "no" + }, + { + "id": "341564", + "ident": "JP-1566", + "type": "heliport", + "name": "Hamamatsu Service Area Helipad", + "latitude_deg": "34.84293", + "longitude_deg": "137.74887", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Hamamatsu", + "scheduled_service": "no" + }, + { + "id": "341565", + "ident": "JP-1567", + "type": "heliport", + "name": "D'Grafort Helipad", + "latitude_deg": "34.706413", + "longitude_deg": "137.732857", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Hamamatsu", + "scheduled_service": "no" + }, + { + "id": "341566", + "ident": "JP-1568", + "type": "heliport", + "name": "Sakumacho Helipad", + "latitude_deg": "35.06649", + "longitude_deg": "137.76061", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Hamamatsu", + "scheduled_service": "no" + }, + { + "id": "341567", + "ident": "JP-1569", + "type": "heliport", + "name": "Sakuma Fire Station Helipad", + "latitude_deg": "35.08563", + "longitude_deg": "137.79925", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Hamamatsu", + "scheduled_service": "no" + }, + { + "id": "341568", + "ident": "JP-1570", + "type": "heliport", + "name": "Nagashino-Shitaragahara Outbound Parking Area Heliport", + "latitude_deg": "34.92594", + "longitude_deg": "137.51341", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shinshiro", + "scheduled_service": "no" + }, + { + "id": "341569", + "ident": "JP-1571", + "type": "heliport", + "name": "Nagashino-Shitaragahara Inbound Parking Area Heliport", + "latitude_deg": "34.92439", + "longitude_deg": "137.50591", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shinshiro", + "scheduled_service": "no" + }, + { + "id": "341571", + "ident": "JP-1572", + "type": "heliport", + "name": "Okayama Saiseikai General Hospital Helipad", + "latitude_deg": "34.672565", + "longitude_deg": "133.919989", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Okayama", + "scheduled_service": "no" + }, + { + "id": "341572", + "ident": "JP-1573", + "type": "heliport", + "name": "Okayama University Hospital Helipad", + "latitude_deg": "34.64989", + "longitude_deg": "133.92047", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Okayama", + "scheduled_service": "no" + }, + { + "id": "341573", + "ident": "JP-1574", + "type": "heliport", + "name": "Famille Tower Plaza Helipad", + "latitude_deg": "34.673671", + "longitude_deg": "133.921372", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Okayama", + "scheduled_service": "no" + }, + { + "id": "341575", + "ident": "JP-1575", + "type": "closed", + "name": "Fukuyama Airfield", + "latitude_deg": "34.4799", + "longitude_deg": "133.43515", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Fukuyama", + "scheduled_service": "no" + }, + { + "id": "341576", + "ident": "JP-1576", + "type": "closed", + "name": "Mineyama Airfield", + "latitude_deg": "35.60232", + "longitude_deg": "135.08604", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kyotango", + "scheduled_service": "no" + }, + { + "id": "341577", + "ident": "JP-1577", + "type": "heliport", + "name": "Kyoto University of Medicine North Medical Center Helipad", + "latitude_deg": "35.56996", + "longitude_deg": "135.1672", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Yosano", + "scheduled_service": "no" + }, + { + "id": "341578", + "ident": "JP-1578", + "type": "closed", + "name": "Kurita Seaplane Base", + "latitude_deg": "35.55177", + "longitude_deg": "135.23731", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Miyazu", + "scheduled_service": "no" + }, + { + "id": "341770", + "ident": "JP-1579", + "type": "heliport", + "name": "Saitama Emergency Aviation Center", + "latitude_deg": "35.975044", + "longitude_deg": "139.517754", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kawajima", + "scheduled_service": "no" + }, + { + "id": "341771", + "ident": "JP-1580", + "type": "heliport", + "name": "Shobu General Branch Heliport", + "latitude_deg": "36.059057", + "longitude_deg": "139.600045", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kuki", + "scheduled_service": "no" + }, + { + "id": "341772", + "ident": "JP-1581", + "type": "heliport", + "name": "Niigata Public Hall Heliport", + "latitude_deg": "35.92098", + "longitude_deg": "139.799583", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Koshigaya", + "scheduled_service": "no" + }, + { + "id": "341773", + "ident": "JP-1582", + "type": "heliport", + "name": "Saitama Medical Center Heliport", + "latitude_deg": "35.935958", + "longitude_deg": "139.521148", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kawagoe", + "scheduled_service": "no" + }, + { + "id": "341774", + "ident": "JP-1583", + "type": "heliport", + "name": "Saitama Sekishinkai Hospital Helipad", + "latitude_deg": "35.863611", + "longitude_deg": "139.410307", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Sayama", + "scheduled_service": "no" + }, + { + "id": "341847", + "ident": "JP-1584", + "type": "heliport", + "name": "Asaka Parking Area Southbound Helipad", + "latitude_deg": "37.354659", + "longitude_deg": "140.322309", + "elevation_ft": "830", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Koriyama", + "scheduled_service": "no" + }, + { + "id": "341848", + "ident": "JP-1585", + "type": "heliport", + "name": "JGSDF Mizuhara Heliport", + "latitude_deg": "37.668902", + "longitude_deg": "140.343775", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Fukushima", + "scheduled_service": "no" + }, + { + "id": "341850", + "ident": "JP-1586", + "type": "heliport", + "name": "Ina Heliport Maruya", + "latitude_deg": "37.173927", + "longitude_deg": "139.524854", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Minamiaizu", + "scheduled_service": "no" + }, + { + "id": "341851", + "ident": "JP-1587", + "type": "heliport", + "name": "Miharu Northern District Heliport", + "latitude_deg": "37.48484", + "longitude_deg": "140.523794", + "elevation_ft": "1345", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Miharu", + "scheduled_service": "no", + "keywords": "Miharuhokubuchiiki Heliport" + }, + { + "id": "341852", + "ident": "JP-1588", + "type": "heliport", + "name": "Kaetsu Hospital Heliport", + "latitude_deg": "37.803134", + "longitude_deg": "139.146497", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Niigata", + "scheduled_service": "no" + }, + { + "id": "341853", + "ident": "JP-1589", + "type": "heliport", + "name": "Kido Hospital Heliport", + "latitude_deg": "37.915157", + "longitude_deg": "139.099048", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Niigata", + "scheduled_service": "no" + }, + { + "id": "341854", + "ident": "JP-1590", + "type": "heliport", + "name": "Ojikakogen Station Plaza Emergency Helipad", + "latitude_deg": "37.045522", + "longitude_deg": "139.72559", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Nikko", + "scheduled_service": "no" + }, + { + "id": "341855", + "ident": "JP-1591", + "type": "heliport", + "name": "Tainaigawa Dam Helipad", + "latitude_deg": "37.960672", + "longitude_deg": "139.538355", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Tainai", + "scheduled_service": "no" + }, + { + "id": "341856", + "ident": "JP-1592", + "type": "heliport", + "name": "Sendai City Fire Heliport", + "latitude_deg": "38.228455", + "longitude_deg": "140.984034", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Sendai", + "scheduled_service": "no" + }, + { + "id": "341857", + "ident": "JP-1593", + "type": "heliport", + "name": "Kawaba Denen Plaza Helipad", + "latitude_deg": "36.68844", + "longitude_deg": "139.109028", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Kawaba", + "scheduled_service": "no" + }, + { + "id": "341892", + "ident": "JP-1594", + "type": "heliport", + "name": "Hyogo Prefectural Kakogawa Health Center Helipad", + "latitude_deg": "34.774207", + "longitude_deg": "134.882995", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kakogawa", + "scheduled_service": "no" + }, + { + "id": "341893", + "ident": "JP-1595", + "type": "heliport", + "name": "Kakogawa Central City Hospital Helipad", + "latitude_deg": "34.771428", + "longitude_deg": "134.832514", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kakogawa", + "scheduled_service": "no" + }, + { + "id": "341894", + "ident": "JP-1596", + "type": "heliport", + "name": "Branz Tower Minamihorie Helipad", + "latitude_deg": "34.670566", + "longitude_deg": "135.496728", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "341895", + "ident": "JP-1597", + "type": "heliport", + "name": "Inagawa Heliport", + "latitude_deg": "34.842745", + "longitude_deg": "135.421982", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kawanishi", + "scheduled_service": "no" + }, + { + "id": "341896", + "ident": "JP-1598", + "type": "heliport", + "name": "Hyogo Medical University Sasayama Health Center Helipad", + "latitude_deg": "35.080703", + "longitude_deg": "135.216596", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Tanba-Sasayama", + "scheduled_service": "no" + }, + { + "id": "341897", + "ident": "JP-1599", + "type": "closed", + "name": "Akashi Airfield", + "latitude_deg": "34.659556", + "longitude_deg": "134.967694", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Akashi", + "scheduled_service": "no" + }, + { + "id": "341904", + "ident": "JP-1600", + "type": "heliport", + "name": "Tobishima Emergency Heliport", + "latitude_deg": "39.199926", + "longitude_deg": "139.560846", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Sakata", + "scheduled_service": "no" + }, + { + "id": "341905", + "ident": "JP-1601", + "type": "heliport", + "name": "Kitaakita Municipal Hospital Helipad", + "latitude_deg": "40.168333", + "longitude_deg": "140.355444", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Kitaakita", + "scheduled_service": "no" + }, + { + "id": "341906", + "ident": "JP-1602", + "type": "heliport", + "name": "Nihonkai General Hospital Helipad", + "latitude_deg": "38.890671", + "longitude_deg": "139.853337", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Sakata", + "scheduled_service": "no" + }, + { + "id": "341907", + "ident": "JP-1603", + "type": "heliport", + "name": "Tohoku Electric Power Sakata Helipad", + "latitude_deg": "38.893312", + "longitude_deg": "139.926082", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Sakata", + "scheduled_service": "no" + }, + { + "id": "341908", + "ident": "JP-1604", + "type": "heliport", + "name": "Hanaizumi Helipad", + "latitude_deg": "38.834922", + "longitude_deg": "141.167045", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Ichinoseki", + "scheduled_service": "no" + }, + { + "id": "341909", + "ident": "JP-1605", + "type": "heliport", + "name": "Tohoku University Hospital Helipad", + "latitude_deg": "38.272767", + "longitude_deg": "140.86055", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Sendai", + "scheduled_service": "no" + }, + { + "id": "341910", + "ident": "JP-1606", + "type": "heliport", + "name": "JR Sendai Hospital Heliport", + "latitude_deg": "38.255617", + "longitude_deg": "140.880824", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Sendai", + "scheduled_service": "no" + }, + { + "id": "341911", + "ident": "JP-1607", + "type": "heliport", + "name": "Osaki Municipal Hospital Helipad", + "latitude_deg": "38.565983", + "longitude_deg": "140.94377", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Osaki", + "scheduled_service": "no" + }, + { + "id": "342205", + "ident": "JP-1608", + "type": "heliport", + "name": "Kyobashi Edogrand Helipad", + "latitude_deg": "35.67741", + "longitude_deg": "139.76971", + "elevation_ft": "610", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "342206", + "ident": "JP-1609", + "type": "heliport", + "name": "Kyobashi Trust Tower Helipad", + "latitude_deg": "35.6779", + "longitude_deg": "139.7698", + "elevation_ft": "396", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "342207", + "ident": "JP-1610", + "type": "heliport", + "name": "Tokyo Square Garden Helipad", + "latitude_deg": "35.67585", + "longitude_deg": "139.76858", + "elevation_ft": "479", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "342243", + "ident": "JP-1611", + "type": "heliport", + "name": "Irifune Heliport", + "latitude_deg": "38.90947", + "longitude_deg": "139.82777", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Sakata", + "scheduled_service": "no" + }, + { + "id": "342351", + "ident": "JP-1612", + "type": "heliport", + "name": "NTT Medical Center Tokyo Helipad", + "latitude_deg": "35.63154", + "longitude_deg": "139.72558", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "342354", + "ident": "JP-1613", + "type": "heliport", + "name": "Ogaki Municipal Hospital Heliport", + "latitude_deg": "35.3527", + "longitude_deg": "136.622", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Ogaki", + "scheduled_service": "no" + }, + { + "id": "342355", + "ident": "JP-1614", + "type": "heliport", + "name": "Ogaki Tokushukai Hospital Helipad", + "latitude_deg": "35.37297", + "longitude_deg": "136.61755", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Ogaki", + "scheduled_service": "no" + }, + { + "id": "342356", + "ident": "JP-1615", + "type": "heliport", + "name": "Hashimoto Municipal Hospital Helipad", + "latitude_deg": "34.35541", + "longitude_deg": "135.63377", + "elevation_ft": "682", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Hashimoto", + "scheduled_service": "no" + }, + { + "id": "342387", + "ident": "JP-1616", + "type": "heliport", + "name": "Glorio Koshigaya Station Tower Helipad", + "latitude_deg": "35.889098", + "longitude_deg": "139.787389", + "elevation_ft": "391", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Koshigaya", + "scheduled_service": "no", + "keywords": "Koshigaya Twin City A City" + }, + { + "id": "342388", + "ident": "JP-1617", + "type": "heliport", + "name": "Kiyoken Main Store Building Helipad", + "latitude_deg": "35.46432", + "longitude_deg": "139.62307", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "342389", + "ident": "JP-1618", + "type": "heliport", + "name": "Suny Aeropark / Yokohama Nishi Heliport", + "latitude_deg": "35.44332", + "longitude_deg": "139.55863", + "elevation_ft": "272", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "342390", + "ident": "JP-1619", + "type": "heliport", + "name": "Glorio Tower Yokohama Motomachi Helipad", + "latitude_deg": "35.44268", + "longitude_deg": "139.65083", + "elevation_ft": "354", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "342391", + "ident": "JP-1620", + "type": "heliport", + "name": "Kanack Hall - Station Tower Higashi-Kanagawa Helipad", + "latitude_deg": "35.47733", + "longitude_deg": "139.63342", + "elevation_ft": "292", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "342392", + "ident": "JP-1621", + "type": "heliport", + "name": "Reedence Fort Yokohama Helipad", + "latitude_deg": "35.47776", + "longitude_deg": "139.63435", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "342393", + "ident": "JP-1622", + "type": "heliport", + "name": "Orto Yokohama View Tower Helipad", + "latitude_deg": "35.4868", + "longitude_deg": "139.65302", + "elevation_ft": "456", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "342394", + "ident": "JP-1623", + "type": "closed", + "name": "Funabashi Airfield (1958)", + "latitude_deg": "35.68556", + "longitude_deg": "139.9891", + "elevation_ft": "90", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Funabashi", + "scheduled_service": "no" + }, + { + "id": "342395", + "ident": "JP-1624", + "type": "closed", + "name": "Funabashi Airfield (1965)", + "latitude_deg": "35.68132", + "longitude_deg": "139.99082", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Funabashi", + "scheduled_service": "no" + }, + { + "id": "342400", + "ident": "JP-1625", + "type": "heliport", + "name": "JAL Buildng Heliport", + "latitude_deg": "35.61992", + "longitude_deg": "139.75121", + "elevation_ft": "403", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "342401", + "ident": "JP-1626", + "type": "heliport", + "name": "Tennozu View Tower Helipad", + "latitude_deg": "35.62092", + "longitude_deg": "139.74941", + "elevation_ft": "403", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "342402", + "ident": "JP-1627", + "type": "heliport", + "name": "Tennozu Parkside Building Helipad", + "latitude_deg": "35.62125", + "longitude_deg": "139.75038", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "342403", + "ident": "JP-1628", + "type": "heliport", + "name": "Tennozu Sphere Tower Helipad", + "latitude_deg": "35.62279", + "longitude_deg": "139.74972", + "elevation_ft": "518", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "342404", + "ident": "JP-1629", + "type": "heliport", + "name": "Tennozu Central Tower Helipad", + "latitude_deg": "35.62264", + "longitude_deg": "139.74877", + "elevation_ft": "484", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "342405", + "ident": "JP-1630", + "type": "heliport", + "name": "NYK Tennozu Building Helipad", + "latitude_deg": "35.62215", + "longitude_deg": "139.7503", + "elevation_ft": "487", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "342411", + "ident": "JP-1631", + "type": "heliport", + "name": "World City Towers Aqua Tower South Helipad", + "latitude_deg": "35.62649", + "longitude_deg": "139.75124", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "342412", + "ident": "JP-1632", + "type": "heliport", + "name": "World City Towers Aqua Tower North Helipad", + "latitude_deg": "35.626829", + "longitude_deg": "139.751653", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "342413", + "ident": "JP-1633", + "type": "heliport", + "name": "World City Towers Breeze Tower Helipad", + "latitude_deg": "35.62756", + "longitude_deg": "139.751744", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "342414", + "ident": "JP-1634", + "type": "heliport", + "name": "World City Towers Capital Tower Helipad", + "latitude_deg": "35.627752", + "longitude_deg": "139.750687", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "342468", + "ident": "JP-1635", + "type": "heliport", + "name": "JGSDF Narashino Heliport", + "latitude_deg": "35.7128", + "longitude_deg": "140.0627", + "elevation_ft": "195", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Narashino", + "scheduled_service": "no" + }, + { + "id": "342541", + "ident": "JP-1636", + "type": "heliport", + "name": "Shonai Kamakura General Hospital Helipad", + "latitude_deg": "35.34539", + "longitude_deg": "139.51521", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kamakura", + "scheduled_service": "no" + }, + { + "id": "342558", + "ident": "JP-1637", + "type": "heliport", + "name": "Tokyo Sea South Blanc Phare Helipad", + "latitude_deg": "35.62973", + "longitude_deg": "139.75098", + "elevation_ft": "465", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "342559", + "ident": "JP-1638", + "type": "heliport", + "name": "Tokyo Public Housing Konan 4-chome Helipad", + "latitude_deg": "35.63109", + "longitude_deg": "139.75101", + "elevation_ft": "392", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "342560", + "ident": "JP-1639", + "type": "heliport", + "name": "Bay Crest Tower Helipad", + "latitude_deg": "35.6317", + "longitude_deg": "139.75153", + "elevation_ft": "487", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "342566", + "ident": "JP-1640", + "type": "heliport", + "name": "Yushima DC Helipad", + "latitude_deg": "35.705", + "longitude_deg": "139.76904", + "elevation_ft": "334", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Bunkyo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "342567", + "ident": "JP-1641", + "type": "heliport", + "name": "Renaissance Tower Ueno Ikenohata Helipad", + "latitude_deg": "35.71414", + "longitude_deg": "139.76755", + "elevation_ft": "504", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Taito, Tokyo", + "scheduled_service": "no" + }, + { + "id": "342568", + "ident": "JP-1642", + "type": "heliport", + "name": "Bunkyo Green Court Helipad", + "latitude_deg": "35.72975", + "longitude_deg": "139.74737", + "elevation_ft": "472", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Bunkyo, Tokyo", + "scheduled_service": "no", + "keywords": "Center Office" + }, + { + "id": "342569", + "ident": "JP-1643", + "type": "heliport", + "name": "View Tower Honkagome B Helipad", + "latitude_deg": "35.72918", + "longitude_deg": "139.74725", + "elevation_ft": "425", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Bunkyo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "342570", + "ident": "JP-1644", + "type": "heliport", + "name": "Kodansha Building Helipad", + "latitude_deg": "35.71837", + "longitude_deg": "139.72741", + "elevation_ft": "475", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Bunkyo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "342571", + "ident": "JP-1645", + "type": "heliport", + "name": "Tane General Hospital Helipad", + "latitude_deg": "34.66872", + "longitude_deg": "135.4745", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "342572", + "ident": "JP-1646", + "type": "heliport", + "name": "Osaka Metro Head Office Building Helipad", + "latitude_deg": "34.66992", + "longitude_deg": "135.47449", + "elevation_ft": "353", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "342573", + "ident": "JP-1647", + "type": "heliport", + "name": "Rojuman Tower Osaka Helipad", + "latitude_deg": "34.69319", + "longitude_deg": "135.51881", + "elevation_ft": "300", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "342574", + "ident": "JP-1648", + "type": "heliport", + "name": "Hotel Monterey La Soeur Osaka Helipad", + "latitude_deg": "34.69385", + "longitude_deg": "135.53239", + "elevation_ft": "380", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no", + "keywords": "OBP Building" + }, + { + "id": "342575", + "ident": "JP-1649", + "type": "heliport", + "name": "Optage Building Helipad", + "latitude_deg": "34.69279", + "longitude_deg": "135.52948", + "elevation_ft": "456", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no", + "keywords": "K-Opticom Building" + }, + { + "id": "342576", + "ident": "JP-1650", + "type": "heliport", + "name": "Umeda Tower Helipad", + "latitude_deg": "34.70787", + "longitude_deg": "135.50127", + "elevation_ft": "547", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "342577", + "ident": "JP-1651", + "type": "heliport", + "name": "King Mansion Tenjinbashi 1 Helipad", + "latitude_deg": "34.70445", + "longitude_deg": "135.51214", + "elevation_ft": "311", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "342898", + "ident": "JP-1652", + "type": "small_airport", + "name": "Bekanbe Airfield", + "latitude_deg": "43.32851", + "longitude_deg": "144.7079", + "elevation_ft": "390", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Akkeshi", + "scheduled_service": "no", + "keywords": "Bekanbeushi" + }, + { + "id": "342899", + "ident": "JP-1653", + "type": "small_airport", + "name": "Yausubetsu Airfield", + "latitude_deg": "43.2872", + "longitude_deg": "144.9978", + "elevation_ft": "108", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Betsukai", + "scheduled_service": "no" + }, + { + "id": "342900", + "ident": "JP-1654", + "type": "closed", + "name": "Toyokoro Gliderport", + "latitude_deg": "42.80012", + "longitude_deg": "143.51154", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Toyokoro", + "scheduled_service": "no" + }, + { + "id": "342901", + "ident": "JP-1655", + "type": "closed", + "name": "Shiranuka Flight Park", + "latitude_deg": "42.94767", + "longitude_deg": "144.05825", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Shiranuka", + "scheduled_service": "no" + }, + { + "id": "342902", + "ident": "JP-1656", + "type": "closed", + "name": "Aikoku Kushiro Airfield", + "latitude_deg": "43.02663", + "longitude_deg": "144.3881", + "elevation_ft": "15", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Kushiro", + "scheduled_service": "no" + }, + { + "id": "342903", + "ident": "JP-1657", + "type": "closed", + "name": "Toyohashi Airfield", + "latitude_deg": "34.68333", + "longitude_deg": "137.35", + "elevation_ft": "89", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyohashi", + "scheduled_service": "no" + }, + { + "id": "342909", + "ident": "JP-1658", + "type": "closed", + "name": "Chiribetsu Airfield", + "latitude_deg": "42.372961", + "longitude_deg": "141.018121", + "elevation_ft": "489", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Muroran", + "scheduled_service": "no" + }, + { + "id": "342910", + "ident": "JP-1659", + "type": "closed", + "name": "Muroran Hatchodaira Airfield", + "latitude_deg": "42.367303", + "longitude_deg": "141.010756", + "elevation_ft": "436", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Muroran", + "scheduled_service": "no" + }, + { + "id": "342911", + "ident": "JP-1660", + "type": "small_airport", + "name": "Otaki Airfield", + "latitude_deg": "42.665802", + "longitude_deg": "141.101933", + "elevation_ft": "1621", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Date", + "scheduled_service": "no" + }, + { + "id": "342914", + "ident": "JP-1661", + "type": "closed", + "name": "Sabishiro (Miss Veedol) Airfield", + "latitude_deg": "40.7455", + "longitude_deg": "141.41536", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Misawa", + "scheduled_service": "no" + }, + { + "id": "342993", + "ident": "JP-1662", + "type": "heliport", + "name": "Ayabe Heliport", + "latitude_deg": "35.3281", + "longitude_deg": "135.28504", + "elevation_ft": "377", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Ayabe", + "scheduled_service": "no" + }, + { + "id": "343095", + "ident": "JP-1663", + "type": "heliport", + "name": "Tomihisa Cross Comfort Tower Helipad", + "latitude_deg": "35.69184", + "longitude_deg": "139.71385", + "elevation_ft": "731", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343128", + "ident": "JP-1664", + "type": "closed", + "name": "Kiyosu Airfield", + "latitude_deg": "35.20775", + "longitude_deg": "136.8232", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Kiyosu", + "scheduled_service": "no" + }, + { + "id": "343129", + "ident": "JP-1665", + "type": "heliport", + "name": "Tornare Nihonbashi Hamacho Residential Tower Helipad", + "latitude_deg": "35.6846", + "longitude_deg": "139.7881", + "elevation_ft": "586", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343130", + "ident": "JP-1666", + "type": "heliport", + "name": "Hamacho Center Building Helipad", + "latitude_deg": "35.6878", + "longitude_deg": "139.7871", + "elevation_ft": "377", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343325", + "ident": "JP-1667", + "type": "heliport", + "name": "Niseko Heliport", + "latitude_deg": "42.83268", + "longitude_deg": "140.67184", + "elevation_ft": "794", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Niseko", + "scheduled_service": "no" + }, + { + "id": "343326", + "ident": "JP-1668", + "type": "heliport", + "name": "Teshikaga Heliport", + "latitude_deg": "43.48077", + "longitude_deg": "144.437611", + "elevation_ft": "410", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Teshikaga", + "scheduled_service": "no" + }, + { + "id": "343327", + "ident": "JP-1669", + "type": "heliport", + "name": "Tokuma Heliport", + "latitude_deg": "35.21036", + "longitude_deg": "138.44837", + "elevation_ft": "720", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Nanbu", + "scheduled_service": "no" + }, + { + "id": "343328", + "ident": "JP-1670", + "type": "heliport", + "name": "Shikinejima Heliport", + "latitude_deg": "34.33434", + "longitude_deg": "139.21015", + "elevation_ft": "128", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shikinejima", + "scheduled_service": "no" + }, + { + "id": "343329", + "ident": "JP-1671", + "type": "heliport", + "name": "Toshima Heliport", + "latitude_deg": "34.530648", + "longitude_deg": "139.273297", + "elevation_ft": "112", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Toshima Village", + "scheduled_service": "no" + }, + { + "id": "343330", + "ident": "JP-1672", + "type": "heliport", + "name": "Okazaki Municipal Hospital Helipad", + "latitude_deg": "34.95051", + "longitude_deg": "137.20305", + "elevation_ft": "295", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Okazaki", + "scheduled_service": "no" + }, + { + "id": "343331", + "ident": "JP-1673", + "type": "closed", + "name": "Okazaki Airfield", + "latitude_deg": "34.99304", + "longitude_deg": "137.1252", + "elevation_ft": "85", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Okazaki", + "scheduled_service": "no" + }, + { + "id": "343332", + "ident": "JP-1674", + "type": "heliport", + "name": "Fujita Health University Nursing School Helipad", + "latitude_deg": "35.06956", + "longitude_deg": "137.00003", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyoake", + "scheduled_service": "no" + }, + { + "id": "343333", + "ident": "JP-1675", + "type": "heliport", + "name": "Fujita Health University Hospital Helipad", + "latitude_deg": "35.071207", + "longitude_deg": "137.002011", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyoake", + "scheduled_service": "no" + }, + { + "id": "343334", + "ident": "JP-1676", + "type": "heliport", + "name": "Toyohashi Municipal Hospital Helipad", + "latitude_deg": "34.76029", + "longitude_deg": "137.35087", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyohashi", + "scheduled_service": "no" + }, + { + "id": "343335", + "ident": "JP-1677", + "type": "heliport", + "name": "Toyohashi Municipal Hospital Rooftop Helipad", + "latitude_deg": "34.76041", + "longitude_deg": "137.34966", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyohashi", + "scheduled_service": "no" + }, + { + "id": "343336", + "ident": "JP-1678", + "type": "heliport", + "name": "Lake Hamana Service Area Heliport", + "latitude_deg": "34.784332", + "longitude_deg": "137.609224", + "elevation_ft": "45", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Hamamatsu", + "scheduled_service": "no" + }, + { + "id": "343337", + "ident": "JP-1679", + "type": "small_airport", + "name": "Soratomo Wind Park Gliderport", + "latitude_deg": "34.66842", + "longitude_deg": "137.18636", + "elevation_ft": "43", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Tahara", + "scheduled_service": "no" + }, + { + "id": "343338", + "ident": "JP-1680", + "type": "closed", + "name": "Takada Landing Field", + "latitude_deg": "37.09688", + "longitude_deg": "138.23547", + "elevation_ft": "69", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Joetsu", + "scheduled_service": "no" + }, + { + "id": "343339", + "ident": "JP-1681", + "type": "closed", + "name": "Toyokawa Airfield", + "latitude_deg": "34.83251", + "longitude_deg": "137.38201", + "elevation_ft": "62", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyokawa", + "scheduled_service": "no" + }, + { + "id": "343340", + "ident": "JP-1682", + "type": "heliport", + "name": "Global Gate West Tower Helipad", + "latitude_deg": "35.16189", + "longitude_deg": "136.88292", + "elevation_ft": "600", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343352", + "ident": "JP-1683", + "type": "closed", + "name": "Taisho Auxiliary Airfield", + "latitude_deg": "34.6401", + "longitude_deg": "135.59974", + "elevation_ft": "21", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Yao", + "scheduled_service": "no" + }, + { + "id": "343353", + "ident": "JP-1684", + "type": "heliport", + "name": "Chukyo Hospital Heliport", + "latitude_deg": "35.10991", + "longitude_deg": "136.90171", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343354", + "ident": "JP-1685", + "type": "heliport", + "name": "Sumitomo Seimei Nagoya Building Helipad", + "latitude_deg": "35.1654", + "longitude_deg": "136.88648", + "elevation_ft": "360", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343355", + "ident": "JP-1686", + "type": "heliport", + "name": "Sundai Yobiko Nagoya Helipad", + "latitude_deg": "35.16612", + "longitude_deg": "136.88505", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343356", + "ident": "JP-1687", + "type": "heliport", + "name": "Nippon Life Insurance Sasashima Building Helipad", + "latitude_deg": "35.16665", + "longitude_deg": "136.88501", + "elevation_ft": "272", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343357", + "ident": "JP-1688", + "type": "heliport", + "name": "Aki General Hospital Helipad", + "latitude_deg": "33.50658", + "longitude_deg": "133.89724", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Aki", + "scheduled_service": "no" + }, + { + "id": "343358", + "ident": "JP-1689", + "type": "heliport", + "name": "Hatase Heliport", + "latitude_deg": "33.79803", + "longitude_deg": "134.44849", + "elevation_ft": "361", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-36", + "municipality": "Naka", + "scheduled_service": "no" + }, + { + "id": "343359", + "ident": "JP-1690", + "type": "heliport", + "name": "Kusumoto Heliport", + "latitude_deg": "34.56148", + "longitude_deg": "135.00566", + "elevation_ft": "315", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Awaji", + "scheduled_service": "no" + }, + { + "id": "343360", + "ident": "JP-1691", + "type": "heliport", + "name": "Kakogawa Heliport", + "latitude_deg": "34.76794", + "longitude_deg": "134.81559", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kakogawa", + "scheduled_service": "no" + }, + { + "id": "343361", + "ident": "JP-1692", + "type": "heliport", + "name": "Miki Heliport", + "latitude_deg": "34.81767", + "longitude_deg": "134.97919", + "elevation_ft": "374", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Miki", + "scheduled_service": "no" + }, + { + "id": "343362", + "ident": "JP-1693", + "type": "heliport", + "name": "Ichimori Auxiliary Heliport", + "latitude_deg": "35.14035", + "longitude_deg": "135.43508", + "elevation_ft": "701", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kyotanba", + "scheduled_service": "no" + }, + { + "id": "343363", + "ident": "JP-1694", + "type": "heliport", + "name": "Kyoto Chubu Medical Center Helipad", + "latitude_deg": "35.06986", + "longitude_deg": "135.52927", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Nantan", + "scheduled_service": "no" + }, + { + "id": "343364", + "ident": "JP-1695", + "type": "closed", + "name": "Kurume Drill Ground Landing Field", + "latitude_deg": "33.29123", + "longitude_deg": "130.52272", + "elevation_ft": "62", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Kurume", + "scheduled_service": "no" + }, + { + "id": "343369", + "ident": "JP-1696", + "type": "closed", + "name": "Former Monbetsu Airport", + "latitude_deg": "44.25999", + "longitude_deg": "143.53256", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Monbetsu", + "scheduled_service": "no" + }, + { + "id": "343370", + "ident": "JP-1697", + "type": "closed", + "name": "Susaki Shiohama Airfield", + "latitude_deg": "35.66259", + "longitude_deg": "139.80601", + "elevation_ft": "40", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343371", + "ident": "JP-1698", + "type": "closed", + "name": "Susaki Toyosu Airfield", + "latitude_deg": "35.65819", + "longitude_deg": "139.79594", + "elevation_ft": "35", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343372", + "ident": "JP-1699", + "type": "closed", + "name": "Susaki Tatsumi Airfield", + "latitude_deg": "35.64986", + "longitude_deg": "139.81188", + "elevation_ft": "60", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343377", + "ident": "JP-1700", + "type": "heliport", + "name": "JGSDF Camp Takeyama Helipad", + "latitude_deg": "35.21538", + "longitude_deg": "139.62936", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokosuka", + "scheduled_service": "no" + }, + { + "id": "343378", + "ident": "JP-1701", + "type": "heliport", + "name": "JGSDF Yokosuka Recruit Training Center Helipad", + "latitude_deg": "35.218359", + "longitude_deg": "139.628886", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokosuka", + "scheduled_service": "no" + }, + { + "id": "343402", + "ident": "JP-1702", + "type": "closed", + "name": "Hiroshima East Training Airfield", + "latitude_deg": "34.39902", + "longitude_deg": "132.47992", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no", + "keywords": "Hiroshima Higashi Renpeijo" + }, + { + "id": "343411", + "ident": "JP-1703", + "type": "heliport", + "name": "Park Tower Harumi Helipad", + "latitude_deg": "35.65656", + "longitude_deg": "139.78734", + "elevation_ft": "602", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343432", + "ident": "JP-1704", + "type": "heliport", + "name": "Lions Station Tower Matsudo Helipad", + "latitude_deg": "35.78288", + "longitude_deg": "139.90201", + "elevation_ft": "460", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Matsudo", + "scheduled_service": "no" + }, + { + "id": "343433", + "ident": "JP-1705", + "type": "heliport", + "name": "Famille Square Matsudo Lyra Commons Helipad", + "latitude_deg": "35.78313", + "longitude_deg": "139.89808", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Matsudo", + "scheduled_service": "no" + }, + { + "id": "343434", + "ident": "JP-1706", + "type": "heliport", + "name": "Yomiuri Television HQ Helipad", + "latitude_deg": "34.69105", + "longitude_deg": "135.53163", + "elevation_ft": "362", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343435", + "ident": "JP-1707", + "type": "heliport", + "name": "Otemae Hospital Helipad", + "latitude_deg": "34.68925", + "longitude_deg": "135.51978", + "elevation_ft": "320", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343436", + "ident": "JP-1708", + "type": "heliport", + "name": "Osaka Dental University Hospital Helipad", + "latitude_deg": "34.69006", + "longitude_deg": "135.51956", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343440", + "ident": "JP-1709", + "type": "heliport", + "name": "Pacific Marks Nishi-Umeda Helipad", + "latitude_deg": "34.69731", + "longitude_deg": "135.49049", + "elevation_ft": "243", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343474", + "ident": "JP-1710", + "type": "closed", + "name": "Otofuke Airfield", + "latitude_deg": "42.99014", + "longitude_deg": "143.1915", + "elevation_ft": "262", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Otofuke", + "scheduled_service": "no" + }, + { + "id": "343475", + "ident": "JP-1711", + "type": "closed", + "name": "Akkeshi Airfield", + "latitude_deg": "43.03521", + "longitude_deg": "144.85001", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Akkeshi", + "scheduled_service": "no" + }, + { + "id": "343476", + "ident": "JP-1712", + "type": "small_airport", + "name": "Ashoro Meto Airfield", + "latitude_deg": "43.31811", + "longitude_deg": "143.43245", + "elevation_ft": "797", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Ashoro", + "scheduled_service": "no" + }, + { + "id": "343477", + "ident": "JP-1713", + "type": "heliport", + "name": "Umeda Hankyu Building Helipad", + "latitude_deg": "34.70224", + "longitude_deg": "135.49881", + "elevation_ft": "770", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343478", + "ident": "JP-1714", + "type": "heliport", + "name": "Kozuki Capital West Helipad", + "latitude_deg": "34.69943", + "longitude_deg": "135.50045", + "elevation_ft": "189", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343479", + "ident": "JP-1715", + "type": "heliport", + "name": "Umeshi Dai-ichi Life Building Helipad", + "latitude_deg": "34.69846", + "longitude_deg": "135.50108", + "elevation_ft": "414", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343480", + "ident": "JP-1716", + "type": "small_airport", + "name": "Atsuma Sky Park", + "latitude_deg": "42.64362", + "longitude_deg": "141.87865", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Atsuma", + "scheduled_service": "no" + }, + { + "id": "343484", + "ident": "JP-1717", + "type": "heliport", + "name": "Misosuji Frontier Helipad", + "latitude_deg": "34.69768", + "longitude_deg": "135.50035", + "elevation_ft": "337", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343485", + "ident": "JP-1718", + "type": "heliport", + "name": "Hotel Monterey Le Frere Osaka Helipad", + "latitude_deg": "34.69791", + "longitude_deg": "135.49967", + "elevation_ft": "251", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343486", + "ident": "JP-1719", + "type": "heliport", + "name": "Aioi Nissay Dowa Insurance Phoenix Tower Helipad", + "latitude_deg": "34.69783", + "longitude_deg": "135.50129", + "elevation_ft": "522", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343487", + "ident": "JP-1720", + "type": "heliport", + "name": "Shin-Osaka Trust Tower Helipad", + "latitude_deg": "34.73376", + "longitude_deg": "135.49581", + "elevation_ft": "484", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343488", + "ident": "JP-1721", + "type": "heliport", + "name": "Uemura Nissay Building Helipad", + "latitude_deg": "34.73306", + "longitude_deg": "135.49542", + "elevation_ft": "250", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343489", + "ident": "JP-1722", + "type": "heliport", + "name": "Karaksa Hotel Grande Shin-Osaka Tower Helipad", + "latitude_deg": "34.73304", + "longitude_deg": "135.49512", + "elevation_ft": "315", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343490", + "ident": "JP-1723", + "type": "heliport", + "name": "Nissay Shin-Osaka Building Helipad", + "latitude_deg": "34.73373", + "longitude_deg": "135.49663", + "elevation_ft": "350", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343491", + "ident": "JP-1724", + "type": "heliport", + "name": "MSE Building Helipad", + "latitude_deg": "34.73469", + "longitude_deg": "135.50002", + "elevation_ft": "266", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343492", + "ident": "JP-1725", + "type": "heliport", + "name": "Laxa Osaka Helipad", + "latitude_deg": "34.69688", + "longitude_deg": "135.48748", + "elevation_ft": "332", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no", + "keywords": "Hotel Hanshin Osaka" + }, + { + "id": "343493", + "ident": "JP-1726", + "type": "heliport", + "name": "Laxa Osaka Residences Helipad", + "latitude_deg": "34.697", + "longitude_deg": "135.4884", + "elevation_ft": "367", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343494", + "ident": "JP-1727", + "type": "heliport", + "name": "Sumitomo Real Estate Nishi-Umeda Building Helipad", + "latitude_deg": "34.69677", + "longitude_deg": "135.4892", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343495", + "ident": "JP-1728", + "type": "heliport", + "name": "City Tower Umeda Higashi Helipad", + "latitude_deg": "34.71067", + "longitude_deg": "135.50621", + "elevation_ft": "501", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343496", + "ident": "JP-1729", + "type": "heliport", + "name": "Adenium Tower East Umeda Square Helipad", + "latitude_deg": "34.71058", + "longitude_deg": "135.5071", + "elevation_ft": "382", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343497", + "ident": "JP-1730", + "type": "heliport", + "name": "Norden Tower Tenjinbashi Helipad", + "latitude_deg": "34.71103", + "longitude_deg": "135.51014", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343498", + "ident": "JP-1731", + "type": "heliport", + "name": "Osaka Municipal Housing Information Center Helipad", + "latitude_deg": "34.71044", + "longitude_deg": "135.51148", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343499", + "ident": "JP-1732", + "type": "heliport", + "name": "Geo Tower Tenroku Helipad", + "latitude_deg": "34.71127", + "longitude_deg": "135.51152", + "elevation_ft": "570", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343500", + "ident": "JP-1733", + "type": "heliport", + "name": "Famille Ogimachi Urban Stage Helipad", + "latitude_deg": "34.70216", + "longitude_deg": "135.51585", + "elevation_ft": "366", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343501", + "ident": "JP-1734", + "type": "heliport", + "name": "Takarazuka University Osaka Umeda Campus Helipad", + "latitude_deg": "34.70788", + "longitude_deg": "135.49709", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343502", + "ident": "JP-1735", + "type": "heliport", + "name": "Umeda Kita Place Helipad", + "latitude_deg": "34.70815", + "longitude_deg": "135.49692", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343503", + "ident": "JP-1736", + "type": "heliport", + "name": "Park Tower Abeno Grand Air Helipad", + "latitude_deg": "34.64247", + "longitude_deg": "135.50904", + "elevation_ft": "358", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343504", + "ident": "JP-1737", + "type": "heliport", + "name": "Proud Tower Abeno Helipad", + "latitude_deg": "34.64198", + "longitude_deg": "135.51224", + "elevation_ft": "364", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343505", + "ident": "JP-1738", + "type": "heliport", + "name": "Ark Hills Sengokuyama Mori Tower Helipad", + "latitude_deg": "35.66355", + "longitude_deg": "139.7418", + "elevation_ft": "793", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343506", + "ident": "JP-1739", + "type": "heliport", + "name": "Roppongi First Building Helipad", + "latitude_deg": "35.66329", + "longitude_deg": "139.7412", + "elevation_ft": "437", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343507", + "ident": "JP-1740", + "type": "heliport", + "name": "Sophia University Yotsuya Campus Helipad", + "latitude_deg": "35.68411", + "longitude_deg": "139.73156", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343508", + "ident": "JP-1741", + "type": "heliport", + "name": "Prince Gallery Tokyo Kioicho Helipad", + "latitude_deg": "35.67954", + "longitude_deg": "139.7369", + "elevation_ft": "645", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no", + "keywords": "Tokyo Garden Terrace Kioicho Tower" + }, + { + "id": "343509", + "ident": "JP-1742", + "type": "heliport", + "name": "Prudential Tower Helipad", + "latitude_deg": "35.67599", + "longitude_deg": "139.73868", + "elevation_ft": "574", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343510", + "ident": "JP-1743", + "type": "heliport", + "name": "Yurakucho Itocia Helipad", + "latitude_deg": "35.67424", + "longitude_deg": "139.76391", + "elevation_ft": "446", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343511", + "ident": "JP-1744", + "type": "heliport", + "name": "Yaesu First Financial Building Helipad", + "latitude_deg": "35.68275", + "longitude_deg": "139.77183", + "elevation_ft": "421", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343512", + "ident": "JP-1745", + "type": "closed", + "name": "Kenebetsu Airfield Number 2", + "latitude_deg": "43.45583", + "longitude_deg": "144.83805", + "elevation_ft": "361", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Betsukai", + "scheduled_service": "no" + }, + { + "id": "343519", + "ident": "JP-1746", + "type": "heliport", + "name": "Hahajima Heliport", + "latitude_deg": "26.62665", + "longitude_deg": "142.17954", + "elevation_ft": "255", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Ogasawara", + "scheduled_service": "no" + }, + { + "id": "343520", + "ident": "JP-1747", + "type": "heliport", + "name": "Aogashima Heliport", + "latitude_deg": "32.46788", + "longitude_deg": "139.76037", + "elevation_ft": "892", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Aogashima", + "scheduled_service": "no" + }, + { + "id": "343558", + "ident": "JP-1748", + "type": "heliport", + "name": "J Tower Nishioi Helipad", + "latitude_deg": "35.60121", + "longitude_deg": "139.72213", + "elevation_ft": "376", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343559", + "ident": "JP-1749", + "type": "heliport", + "name": "Granpark Tower Helipad", + "latitude_deg": "35.64361", + "longitude_deg": "139.74556", + "elevation_ft": "577", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343560", + "ident": "JP-1750", + "type": "heliport", + "name": "Granpark Heights Helipad", + "latitude_deg": "35.6435", + "longitude_deg": "139.7464", + "elevation_ft": "399", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343561", + "ident": "JP-1751", + "type": "heliport", + "name": "Mita Bellju Building", + "latitude_deg": "35.64479", + "longitude_deg": "139.74511", + "elevation_ft": "594", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343562", + "ident": "JP-1752", + "type": "heliport", + "name": "Catherina Mita Tower Helipad", + "latitude_deg": "35.64766", + "longitude_deg": "139.75103", + "elevation_ft": "532", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343563", + "ident": "JP-1753", + "type": "heliport", + "name": "Crest Prime Tower Shiba Helipad", + "latitude_deg": "35.65267", + "longitude_deg": "139.75539", + "elevation_ft": "535", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343564", + "ident": "JP-1754", + "type": "heliport", + "name": "Nippon Express Head Office Building Helipad", + "latitude_deg": "35.66171", + "longitude_deg": "139.76081", + "elevation_ft": "599", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343565", + "ident": "JP-1755", + "type": "heliport", + "name": "Nishi-Shinbashi Square Helipad", + "latitude_deg": "35.66912", + "longitude_deg": "139.75463", + "elevation_ft": "498", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343566", + "ident": "JP-1756", + "type": "heliport", + "name": "Daido Kasumigaseki Building Helipad", + "latitude_deg": "35.67046", + "longitude_deg": "139.7515", + "elevation_ft": "511", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343567", + "ident": "JP-1757", + "type": "heliport", + "name": "Kasumigaseki Common Gate East Tower Helipad", + "latitude_deg": "35.67138", + "longitude_deg": "139.74866", + "elevation_ft": "682", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343568", + "ident": "JP-1758", + "type": "heliport", + "name": "Japan Bar Association Hall Helipad", + "latitude_deg": "35.67424", + "longitude_deg": "139.75374", + "elevation_ft": "357", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343569", + "ident": "JP-1759", + "type": "heliport", + "name": "Tokyo Family Court Building Helipad", + "latitude_deg": "35.67462", + "longitude_deg": "139.75405", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343570", + "ident": "JP-1760", + "type": "heliport", + "name": "Japan Fair Trade Commission Building Helipad", + "latitude_deg": "35.67502", + "longitude_deg": "139.75432", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343571", + "ident": "JP-1761", + "type": "heliport", + "name": "Central Government Building 6A Heliport", + "latitude_deg": "35.67571", + "longitude_deg": "139.7546", + "elevation_ft": "471", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343572", + "ident": "JP-1762", + "type": "heliport", + "name": "Shin Marunouchi Building Helipad", + "latitude_deg": "35.68252", + "longitude_deg": "139.76438", + "elevation_ft": "850", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343573", + "ident": "JP-1763", + "type": "heliport", + "name": "Otemachi Place East Tower Helipad", + "latitude_deg": "35.68679", + "longitude_deg": "139.76805", + "elevation_ft": "575", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343574", + "ident": "JP-1764", + "type": "heliport", + "name": "Ueno Frontier Tower Helipad", + "latitude_deg": "35.70677", + "longitude_deg": "139.77303", + "elevation_ft": "478", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Taito, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343575", + "ident": "JP-1765", + "type": "heliport", + "name": "Sapia Tower Helipad", + "latitude_deg": "35.68356", + "longitude_deg": "139.76875", + "elevation_ft": "744", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343576", + "ident": "JP-1766", + "type": "heliport", + "name": "Tokyo Nihonbashi Tower Helipad", + "latitude_deg": "35.68177", + "longitude_deg": "139.7742", + "elevation_ft": "719", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343577", + "ident": "JP-1767", + "type": "heliport", + "name": "Nihonbashi Takashimaya Mitsui Building Helipad", + "latitude_deg": "35.68115", + "longitude_deg": "139.77401", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343578", + "ident": "JP-1768", + "type": "heliport", + "name": "Nihonbashi Dia Building", + "latitude_deg": "35.68396", + "longitude_deg": "139.77787", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343579", + "ident": "JP-1769", + "type": "heliport", + "name": "Coredo Nihonbashi Helipad", + "latitude_deg": "35.68243", + "longitude_deg": "139.77489", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343580", + "ident": "JP-1770", + "type": "heliport", + "name": "Taiyo Life Nihonbashi Building Helipad", + "latitude_deg": "35.68038", + "longitude_deg": "139.77449", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343581", + "ident": "JP-1771", + "type": "heliport", + "name": "Nihonbashi Mitsui Tower Helipad", + "latitude_deg": "35.68708", + "longitude_deg": "139.77296", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343582", + "ident": "JP-1772", + "type": "heliport", + "name": "Nihonbashi Muromachi Mitsui Tower Helipad", + "latitude_deg": "35.68773", + "longitude_deg": "139.77268", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343590", + "ident": "JP-1773", + "type": "heliport", + "name": "Asakusa Post Office Helipad", + "latitude_deg": "35.70997", + "longitude_deg": "139.79104", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Taito, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343591", + "ident": "JP-1774", + "type": "heliport", + "name": "Sagawa Express Heliport", + "latitude_deg": "35.26579", + "longitude_deg": "136.76413", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Ichinomiya", + "scheduled_service": "no" + }, + { + "id": "343592", + "ident": "JP-1775", + "type": "heliport", + "name": "Ichinomiya Municipal Hospital Heliport", + "latitude_deg": "35.3127", + "longitude_deg": "136.80586", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Ichinomiya", + "scheduled_service": "no" + }, + { + "id": "343593", + "ident": "JP-1776", + "type": "heliport", + "name": "Nagoya Prime Central Tower Helipad", + "latitude_deg": "35.17601", + "longitude_deg": "136.88539", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343594", + "ident": "JP-1777", + "type": "heliport", + "name": "Aichi Credit Guarantee Association Helipad", + "latitude_deg": "35.16947", + "longitude_deg": "136.88003", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343595", + "ident": "JP-1778", + "type": "heliport", + "name": "JR Gate Tower Helipad", + "latitude_deg": "35.17256", + "longitude_deg": "136.88208", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343596", + "ident": "JP-1779", + "type": "heliport", + "name": "JR Central Hotel Tower Helipad", + "latitude_deg": "35.17065", + "longitude_deg": "136.88291", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343597", + "ident": "JP-1780", + "type": "heliport", + "name": "Midland Square Helipad", + "latitude_deg": "35.17046", + "longitude_deg": "136.88518", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343598", + "ident": "JP-1781", + "type": "heliport", + "name": "Dai Nagoya Building Helipad", + "latitude_deg": "35.17206", + "longitude_deg": "136.88463", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343599", + "ident": "JP-1782", + "type": "heliport", + "name": "Matsuoka Building Helipad", + "latitude_deg": "35.17347", + "longitude_deg": "136.88353", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343600", + "ident": "JP-1783", + "type": "heliport", + "name": "Nagoya Lucent Tower Helipad", + "latitude_deg": "35.17486", + "longitude_deg": "136.88095", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343601", + "ident": "JP-1784", + "type": "heliport", + "name": "JR Central Office Tower Helipad", + "latitude_deg": "35.17157", + "longitude_deg": "136.88264", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343602", + "ident": "JP-1785", + "type": "heliport", + "name": "Symphony Toyota Building", + "latitude_deg": "35.1699", + "longitude_deg": "136.88685", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343603", + "ident": "JP-1786", + "type": "heliport", + "name": "Mode Gakuen Spiral Towers Helipad", + "latitude_deg": "35.16814", + "longitude_deg": "136.88584", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343604", + "ident": "JP-1787", + "type": "heliport", + "name": "Nagoya Mitsui Main Building Helipad", + "latitude_deg": "35.16756", + "longitude_deg": "136.88651", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343605", + "ident": "JP-1788", + "type": "heliport", + "name": "Aioi Nissay Dowa Insurance Nagoya Meieki Building Helipad", + "latitude_deg": "35.17584", + "longitude_deg": "136.88144", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343606", + "ident": "JP-1789", + "type": "heliport", + "name": "TKP Garden City Helipad", + "latitude_deg": "35.17222", + "longitude_deg": "136.87835", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343607", + "ident": "JP-1790", + "type": "heliport", + "name": "Daiwa Roynet Hotel Helipad", + "latitude_deg": "35.17189", + "longitude_deg": "136.87899", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343608", + "ident": "JP-1791", + "type": "heliport", + "name": "Chukyo TV Broadcasting Headquarters Helipad", + "latitude_deg": "35.16066", + "longitude_deg": "136.88272", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343609", + "ident": "JP-1792", + "type": "heliport", + "name": "Royal Parks ER Sasashima Helipad", + "latitude_deg": "35.1602", + "longitude_deg": "136.88163", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343610", + "ident": "JP-1793", + "type": "closed", + "name": "Itabashi Airfield", + "latitude_deg": "35.76122", + "longitude_deg": "139.68909", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Itabashi, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343611", + "ident": "JP-1794", + "type": "heliport", + "name": "Toshima Hospital Heliport", + "latitude_deg": "35.75272", + "longitude_deg": "139.70111", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Itabashi, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343612", + "ident": "JP-1795", + "type": "heliport", + "name": "Teikyo University Hospital Heliport", + "latitude_deg": "35.75889", + "longitude_deg": "139.71414", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Itabashi, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343613", + "ident": "JP-1796", + "type": "closed", + "name": "Yumachi Airstrip", + "latitude_deg": "35.4375", + "longitude_deg": "133.01251", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Matsue", + "scheduled_service": "no" + }, + { + "id": "343615", + "ident": "JP-1797", + "type": "closed", + "name": "Koshibara Airfield", + "latitude_deg": "35.44527", + "longitude_deg": "133.08083", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Matsue", + "scheduled_service": "no" + }, + { + "id": "343616", + "ident": "JP-1798", + "type": "closed", + "name": "Matsue Seaplane Base", + "latitude_deg": "35.46326", + "longitude_deg": "133.0527", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Matsue", + "scheduled_service": "no" + }, + { + "id": "343617", + "ident": "JP-1799", + "type": "closed", + "name": "Shimane Gliderfield", + "latitude_deg": "35.47166", + "longitude_deg": "133.06638", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Matsue", + "scheduled_service": "no" + }, + { + "id": "343618", + "ident": "JP-1800", + "type": "closed", + "name": "Taisha Airfield", + "latitude_deg": "35.37028", + "longitude_deg": "132.80483", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Izumo", + "scheduled_service": "no" + }, + { + "id": "343619", + "ident": "JP-1801", + "type": "closed", + "name": "JGSDF Camp Kaitaichi Airfield", + "latitude_deg": "34.35791", + "longitude_deg": "132.5265", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Kaita", + "scheduled_service": "no" + }, + { + "id": "343620", + "ident": "JP-1802", + "type": "heliport", + "name": "JGSDF Camp Kaitaichi Heliport", + "latitude_deg": "34.36062", + "longitude_deg": "132.53227", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Kaita", + "scheduled_service": "no" + }, + { + "id": "343621", + "ident": "JP-1803", + "type": "closed", + "name": "Yoshijima Airfield", + "latitude_deg": "34.36832", + "longitude_deg": "132.44427", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "343622", + "ident": "JP-1804", + "type": "closed", + "name": "Iwakuni Airfield", + "latitude_deg": "34.154", + "longitude_deg": "132.23539", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Iwakuni", + "scheduled_service": "no" + }, + { + "id": "343623", + "ident": "JP-1805", + "type": "heliport", + "name": "Chugoku Senior Hospital Heliport", + "latitude_deg": "34.23027", + "longitude_deg": "132.61305", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Kure", + "scheduled_service": "no" + }, + { + "id": "343624", + "ident": "JP-1806", + "type": "closed", + "name": "Tamatsukuri Seaplane Base", + "latitude_deg": "35.43144", + "longitude_deg": "132.98832", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Matsue", + "scheduled_service": "no" + }, + { + "id": "343625", + "ident": "JP-1807", + "type": "closed", + "name": "Naoe Airfield", + "latitude_deg": "35.39106", + "longitude_deg": "132.83787", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Izumo", + "scheduled_service": "no" + }, + { + "id": "343626", + "ident": "JP-1808", + "type": "heliport", + "name": "JGSDF Camp Izumo Heliport", + "latitude_deg": "35.36834", + "longitude_deg": "132.7094", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Izumo", + "scheduled_service": "no" + }, + { + "id": "343627", + "ident": "JP-1809", + "type": "closed", + "name": "Miyajima Seaplane Base", + "latitude_deg": "34.31736", + "longitude_deg": "132.31088", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hatsukaichi", + "scheduled_service": "no" + }, + { + "id": "343628", + "ident": "JP-1810", + "type": "closed", + "name": "Yamaguchi Gliderfield", + "latitude_deg": "34.05551", + "longitude_deg": "131.17707", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Sanyoonoda", + "scheduled_service": "no" + }, + { + "id": "343629", + "ident": "JP-1811", + "type": "closed", + "name": "Osaba Airstrip", + "latitude_deg": "34.1116", + "longitude_deg": "131.53451", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Yamaguchi", + "scheduled_service": "no" + }, + { + "id": "343630", + "ident": "JP-1812", + "type": "closed", + "name": "Sanbesan Gliderfield", + "latitude_deg": "35.12828", + "longitude_deg": "132.60361", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Oda", + "scheduled_service": "no" + }, + { + "id": "343631", + "ident": "JP-1813", + "type": "heliport", + "name": "Sanbesan Heliport", + "latitude_deg": "35.12793", + "longitude_deg": "132.60311", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Oda", + "scheduled_service": "no" + }, + { + "id": "343632", + "ident": "JP-1814", + "type": "heliport", + "name": "Tokyo Skytree East Tower Helipad", + "latitude_deg": "35.71019", + "longitude_deg": "139.81278", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Sumida, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343633", + "ident": "JP-1815", + "type": "closed", + "name": "Saigo Bay Seaplane Base", + "latitude_deg": "36.19945", + "longitude_deg": "133.33721", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Okinoshima", + "scheduled_service": "no" + }, + { + "id": "343634", + "ident": "JP-1816", + "type": "closed", + "name": "Kuroki Seaplane Base", + "latitude_deg": "36.10868", + "longitude_deg": "133.04173", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Nishinoshima", + "scheduled_service": "no" + }, + { + "id": "343635", + "ident": "JP-1817", + "type": "closed", + "name": "Sagami (Nakatsu) Airfield", + "latitude_deg": "35.51341", + "longitude_deg": "139.34257", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Aikawa", + "scheduled_service": "no" + }, + { + "id": "343636", + "ident": "JP-1818", + "type": "closed", + "name": "Isogo Airfield", + "latitude_deg": "35.41163", + "longitude_deg": "139.62721", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "343637", + "ident": "JP-1819", + "type": "closed", + "name": "Tatebayashi Airfield", + "latitude_deg": "36.23827", + "longitude_deg": "139.4927", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Ora", + "scheduled_service": "no" + }, + { + "id": "343638", + "ident": "JP-1820", + "type": "closed", + "name": "Ojima Airfield", + "latitude_deg": "36.24402", + "longitude_deg": "139.34507", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Kumagaya", + "scheduled_service": "no" + }, + { + "id": "343639", + "ident": "JP-1821", + "type": "closed", + "name": "Kiryu Airfield", + "latitude_deg": "36.38119", + "longitude_deg": "139.28075", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Midori", + "scheduled_service": "no" + }, + { + "id": "343640", + "ident": "JP-1822", + "type": "closed", + "name": "Makurazaki Airport", + "latitude_deg": "31.26616", + "longitude_deg": "130.35625", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Makurazaki", + "scheduled_service": "no", + "keywords": "RJX4" + }, + { + "id": "343641", + "ident": "JP-1823", + "type": "closed", + "name": "Anno Airfield", + "latitude_deg": "30.72669", + "longitude_deg": "131.07289", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Nishinoomote", + "scheduled_service": "no" + }, + { + "id": "343642", + "ident": "JP-1824", + "type": "closed", + "name": "Tanegashima Naval Airfield", + "latitude_deg": "30.55766", + "longitude_deg": "131.01311", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Nakatane", + "scheduled_service": "no" + }, + { + "id": "343644", + "ident": "JP-1825", + "type": "closed", + "name": "Kodonbaru Airfield", + "latitude_deg": "32.22503", + "longitude_deg": "130.91307", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-43", + "municipality": "Asagiri", + "scheduled_service": "no", + "keywords": "Koudonbaru" + }, + { + "id": "343645", + "ident": "JP-1826", + "type": "closed", + "name": "Ueki Gliderfield", + "latitude_deg": "32.88796", + "longitude_deg": "130.7293", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-43", + "municipality": "Koshi", + "scheduled_service": "no" + }, + { + "id": "343646", + "ident": "JP-1827", + "type": "closed", + "name": "Miyaji Airfield", + "latitude_deg": "32.93411", + "longitude_deg": "131.10998", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-43", + "municipality": "Aso", + "scheduled_service": "no" + }, + { + "id": "343647", + "ident": "JP-1828", + "type": "closed", + "name": "Hirosebashi Gliderfield", + "latitude_deg": "33.22022", + "longitude_deg": "131.61926", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Oita", + "scheduled_service": "no" + }, + { + "id": "343648", + "ident": "JP-1829", + "type": "closed", + "name": "Beppu Naval Seaplane Base", + "latitude_deg": "33.28448", + "longitude_deg": "131.50651", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Beppu", + "scheduled_service": "no" + }, + { + "id": "343649", + "ident": "JP-1830", + "type": "closed", + "name": "Kasagibaru Airstrip", + "latitude_deg": "33.31981", + "longitude_deg": "131.28278", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Kusu", + "scheduled_service": "no" + }, + { + "id": "343650", + "ident": "JP-1831", + "type": "closed", + "name": "Sengenbaru Airstrip", + "latitude_deg": "33.32499", + "longitude_deg": "131.29212", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Kusu", + "scheduled_service": "no" + }, + { + "id": "343651", + "ident": "JP-1832", + "type": "closed", + "name": "Senchomuta Airfield", + "latitude_deg": "33.15523", + "longitude_deg": "131.24974", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Kokonoe", + "scheduled_service": "no" + }, + { + "id": "343652", + "ident": "JP-1833", + "type": "closed", + "name": "Chikugogawa Emergency Landing Field", + "latitude_deg": "33.36731", + "longitude_deg": "130.72057", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Asakura", + "scheduled_service": "no" + }, + { + "id": "343653", + "ident": "JP-1834", + "type": "closed", + "name": "Amagi Gliderfield", + "latitude_deg": "33.40272", + "longitude_deg": "130.6685", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Asakura", + "scheduled_service": "no" + }, + { + "id": "343658", + "ident": "JP-1835", + "type": "heliport", + "name": "Higashiyama Heliport", + "latitude_deg": "34.9998", + "longitude_deg": "135.78911", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kyoto", + "scheduled_service": "no" + }, + { + "id": "343659", + "ident": "JP-1836", + "type": "heliport", + "name": "Osaka Fukushima Tower Helipad", + "latitude_deg": "34.69289", + "longitude_deg": "135.48134", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343660", + "ident": "JP-1837", + "type": "heliport", + "name": "Fukushima Gardens Tower Helipad", + "latitude_deg": "34.69612", + "longitude_deg": "135.47866", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343661", + "ident": "JP-1838", + "type": "heliport", + "name": "PIAS Tower Helipad", + "latitude_deg": "34.70961", + "longitude_deg": "135.4975", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343662", + "ident": "JP-1839", + "type": "heliport", + "name": "Fine Tower Umeda Toyosaki Helipad", + "latitude_deg": "34.71008", + "longitude_deg": "135.49668", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343663", + "ident": "JP-1840", + "type": "heliport", + "name": "Central Mark Tower Helipad", + "latitude_deg": "34.7107", + "longitude_deg": "135.49613", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343664", + "ident": "JP-1841", + "type": "heliport", + "name": "Hearton Hotel Kita Umeda Helipad", + "latitude_deg": "34.70987", + "longitude_deg": "135.49808", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343665", + "ident": "JP-1842", + "type": "heliport", + "name": "Geo Umeda Residence Helipad", + "latitude_deg": "34.70992", + "longitude_deg": "135.49865", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343666", + "ident": "JP-1843", + "type": "heliport", + "name": "Residence Umeda Laurel Tower Helipad", + "latitude_deg": "34.71292", + "longitude_deg": "135.50048", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343667", + "ident": "JP-1844", + "type": "heliport", + "name": "Shin-Osaka Brick Building Helipad", + "latitude_deg": "34.73547", + "longitude_deg": "135.49969", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343668", + "ident": "JP-1845", + "type": "heliport", + "name": "Kobe Kaisei Hospital Heliport", + "latitude_deg": "34.72439", + "longitude_deg": "135.2261", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "343669", + "ident": "JP-1846", + "type": "heliport", + "name": "G-Clef Shin-Kobe Tower Helipad", + "latitude_deg": "34.70591", + "longitude_deg": "135.19701", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "343670", + "ident": "JP-1847", + "type": "heliport", + "name": "Kobe Art Center Helipad", + "latitude_deg": "34.70432", + "longitude_deg": "135.19822", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "343671", + "ident": "JP-1848", + "type": "heliport", + "name": "Kobe Heliport", + "latitude_deg": "34.65884", + "longitude_deg": "135.20727", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "343672", + "ident": "JP-1849", + "type": "heliport", + "name": "Kobe University Hospital Heliport", + "latitude_deg": "34.68536", + "longitude_deg": "135.17145", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "343673", + "ident": "JP-1850", + "type": "heliport", + "name": "Okayama Convention Center Helipad", + "latitude_deg": "34.66655", + "longitude_deg": "133.91474", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Okayama", + "scheduled_service": "no" + }, + { + "id": "343674", + "ident": "JP-1851", + "type": "heliport", + "name": "Okayama Lit City Building Helipad", + "latitude_deg": "34.66664", + "longitude_deg": "133.9161", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Okayama", + "scheduled_service": "no" + }, + { + "id": "343675", + "ident": "JP-1852", + "type": "heliport", + "name": "Okayama Number 2 Joint Government Building Helipad", + "latitude_deg": "34.66132", + "longitude_deg": "133.91607", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Okayama", + "scheduled_service": "no" + }, + { + "id": "343676", + "ident": "JP-1853", + "type": "heliport", + "name": "Fukuchiyama City Hospital Heliport", + "latitude_deg": "35.30362", + "longitude_deg": "135.11232", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Fukuchiyama", + "scheduled_service": "no" + }, + { + "id": "343677", + "ident": "JP-1854", + "type": "heliport", + "name": "Dokkyo Medical University Nikko Medical Center Heliport", + "latitude_deg": "36.78303", + "longitude_deg": "139.70576", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Nikko", + "scheduled_service": "no" + }, + { + "id": "343678", + "ident": "JP-1855", + "type": "heliport", + "name": "NTT Shinjuku Head Office Building Helipad", + "latitude_deg": "35.68359", + "longitude_deg": "139.68796", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343679", + "ident": "JP-1856", + "type": "heliport", + "name": "Tokyo Opera City Tower", + "latitude_deg": "35.682871", + "longitude_deg": "139.686886", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343680", + "ident": "JP-1857", + "type": "heliport", + "name": "Frente Sasazuka Helipad", + "latitude_deg": "35.67352", + "longitude_deg": "139.66804", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343681", + "ident": "JP-1858", + "type": "heliport", + "name": "Bihoku Heliport", + "latitude_deg": "34.8428", + "longitude_deg": "133.00205", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Shobara", + "scheduled_service": "no" + }, + { + "id": "343682", + "ident": "JP-1859", + "type": "heliport", + "name": "Hotel Monterey Himeji Helipad", + "latitude_deg": "34.82718", + "longitude_deg": "134.69238", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Himeji", + "scheduled_service": "no" + }, + { + "id": "343684", + "ident": "JP-1860", + "type": "heliport", + "name": "Shin-Osaka Hankyu Building Helipad", + "latitude_deg": "34.734", + "longitude_deg": "135.50008", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343685", + "ident": "JP-1861", + "type": "heliport", + "name": "Westin Osaka Heliport", + "latitude_deg": "34.70444", + "longitude_deg": "135.48957", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343686", + "ident": "JP-1862", + "type": "heliport", + "name": "Acros Shin-Osaka Helipad", + "latitude_deg": "34.73526", + "longitude_deg": "135.49723", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343687", + "ident": "JP-1863", + "type": "heliport", + "name": "Ginza Mitsui Building Helipad", + "latitude_deg": "35.66698", + "longitude_deg": "139.76309", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no", + "keywords": "Mitsui Garden Hotel Ginza Premier" + }, + { + "id": "343688", + "ident": "JP-1864", + "type": "heliport", + "name": "Daiichi Hotel Tokyo Helipad", + "latitude_deg": "35.66883", + "longitude_deg": "139.75714", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343689", + "ident": "JP-1865", + "type": "heliport", + "name": "Prince Park Tower Tokyo Helipad", + "latitude_deg": "35.65541", + "longitude_deg": "139.74711", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343690", + "ident": "JP-1866", + "type": "heliport", + "name": "Sumitomo Real Estate Shiodome Hamarikyu Building Helipad", + "latitude_deg": "35.66424", + "longitude_deg": "139.76403", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343691", + "ident": "JP-1867", + "type": "heliport", + "name": "National Cancer Center Chuo Hospital Heliport", + "latitude_deg": "35.66547", + "longitude_deg": "139.76811", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343692", + "ident": "JP-1868", + "type": "heliport", + "name": "National Cancer Center Tsukiji Dormitory Heliport", + "latitude_deg": "35.66559", + "longitude_deg": "139.76682", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343693", + "ident": "JP-1869", + "type": "heliport", + "name": "Mitsubishi Corporate Building Helipad", + "latitude_deg": "35.6811", + "longitude_deg": "139.76246", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343694", + "ident": "JP-1870", + "type": "heliport", + "name": "National Center of Sciences Building Helipad", + "latitude_deg": "35.69251", + "longitude_deg": "139.75789", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343695", + "ident": "JP-1871", + "type": "heliport", + "name": "Tokyo Park Tower Helipad", + "latitude_deg": "35.69427", + "longitude_deg": "139.7591", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343696", + "ident": "JP-1872", + "type": "heliport", + "name": "Jinbocho Mitsui Building Helipad", + "latitude_deg": "35.69421", + "longitude_deg": "139.76018", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343697", + "ident": "JP-1873", + "type": "heliport", + "name": "Kyoritsu Women's University Helipad", + "latitude_deg": "35.69345", + "longitude_deg": "139.75794", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343698", + "ident": "JP-1874", + "type": "heliport", + "name": "Meiji University Liberty Tower Helipad", + "latitude_deg": "35.69764", + "longitude_deg": "139.76159", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343699", + "ident": "JP-1875", + "type": "heliport", + "name": "Belista Tower Fukushima Helipad", + "latitude_deg": "34.69356", + "longitude_deg": "135.48267", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343700", + "ident": "JP-1876", + "type": "heliport", + "name": "Japan Red Cross Nagoya Second Hospital Heliport", + "latitude_deg": "35.14536", + "longitude_deg": "136.96527", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343701", + "ident": "JP-1877", + "type": "heliport", + "name": "Japan Red Cross Nagoya First Hospital Heliport", + "latitude_deg": "35.17175", + "longitude_deg": "136.86227", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343702", + "ident": "JP-1878", + "type": "heliport", + "name": "Nagoya University Hospital Central Building Heliport", + "latitude_deg": "35.1582", + "longitude_deg": "136.92167", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343703", + "ident": "JP-1879", + "type": "heliport", + "name": "Nagoya University Hospital Research Building Heliport", + "latitude_deg": "35.15778", + "longitude_deg": "136.92228", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343704", + "ident": "JP-1880", + "type": "heliport", + "name": "Nagoya University Hospital Wards Building Heliport", + "latitude_deg": "35.15752", + "longitude_deg": "136.92087", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343705", + "ident": "JP-1881", + "type": "heliport", + "name": "Nagoya City University Hospital Heliport", + "latitude_deg": "35.13909", + "longitude_deg": "136.93575", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343706", + "ident": "JP-1882", + "type": "heliport", + "name": "Nagoya City University Hospital Research Building Heliport", + "latitude_deg": "35.13888", + "longitude_deg": "136.93462", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343707", + "ident": "JP-1883", + "type": "heliport", + "name": "Canon Research Building Helipad", + "latitude_deg": "35.56536", + "longitude_deg": "139.68118", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Ota, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343708", + "ident": "JP-1884", + "type": "heliport", + "name": "Canon Headquarters Building Helipad", + "latitude_deg": "35.56629", + "longitude_deg": "139.68201", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Ota, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343709", + "ident": "JP-1885", + "type": "heliport", + "name": "Ciels Garden Soleil Tower Helipad", + "latitude_deg": "35.56434", + "longitude_deg": "139.68197", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Ota, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343710", + "ident": "JP-1886", + "type": "heliport", + "name": "Ciels Garden Riviere Tower Helipad", + "latitude_deg": "35.56393", + "longitude_deg": "139.68255", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Ota, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343711", + "ident": "JP-1887", + "type": "heliport", + "name": "Park Square Plaza Yokohama Helipad", + "latitude_deg": "35.43981", + "longitude_deg": "139.64293", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "343712", + "ident": "JP-1888", + "type": "heliport", + "name": "Health Insurance Claims Review & Reimbursement Services Kanagawa Branch Helipad", + "latitude_deg": "35.44342", + "longitude_deg": "139.65034", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "343713", + "ident": "JP-1889", + "type": "heliport", + "name": "Proceed Yamashita-koen Tower Helipad", + "latitude_deg": "35.44523", + "longitude_deg": "139.64766", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "343714", + "ident": "JP-1890", + "type": "heliport", + "name": "Exte Yamashita-koen Cradle Tower Helipad", + "latitude_deg": "35.44482", + "longitude_deg": "139.64733", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "343715", + "ident": "JP-1891", + "type": "heliport", + "name": "Yokohama Euro Tower Helipad", + "latitude_deg": "35.44449", + "longitude_deg": "139.64674", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "343716", + "ident": "JP-1892", + "type": "heliport", + "name": "Park Court Yamashita-koen Helipad", + "latitude_deg": "35.44442", + "longitude_deg": "139.64891", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "343717", + "ident": "JP-1893", + "type": "heliport", + "name": "Primarina Yamashita-koen Helipad", + "latitude_deg": "35.44423", + "longitude_deg": "139.64842", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "343718", + "ident": "JP-1894", + "type": "heliport", + "name": "Metro Tower Yamashita-cho Helipad", + "latitude_deg": "35.44299", + "longitude_deg": "139.64923", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "343719", + "ident": "JP-1895", + "type": "heliport", + "name": "Yokohama Information & Cultural Center Helipad", + "latitude_deg": "35.44616", + "longitude_deg": "139.64296", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "343720", + "ident": "JP-1896", + "type": "heliport", + "name": "Park City Suginami Central Tower Helipad", + "latitude_deg": "35.68892", + "longitude_deg": "139.65558", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Suginami, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343721", + "ident": "JP-1897", + "type": "heliport", + "name": "Japan Red Cross Shibuya Medical Center Heliport", + "latitude_deg": "35.65433", + "longitude_deg": "139.71815", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343722", + "ident": "JP-1898", + "type": "heliport", + "name": "Sakae Heliport", + "latitude_deg": "35.85252", + "longitude_deg": "140.23244", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Sakae", + "scheduled_service": "no" + }, + { + "id": "343725", + "ident": "JP-1899", + "type": "heliport", + "name": "Goka Heliport", + "latitude_deg": "36.10134", + "longitude_deg": "139.77562", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Goka", + "scheduled_service": "no" + }, + { + "id": "343726", + "ident": "JP-1900", + "type": "small_airport", + "name": "JGSDF Narashino Airfield", + "latitude_deg": "35.71426", + "longitude_deg": "140.06481", + "elevation_ft": "95", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Funabashi", + "scheduled_service": "no" + }, + { + "id": "343757", + "ident": "JP-1901", + "type": "heliport", + "name": "Shonan Fujisawa Tokushukai Hospital Heliport", + "latitude_deg": "35.34116", + "longitude_deg": "139.44512", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Fujisawa", + "scheduled_service": "no" + }, + { + "id": "343758", + "ident": "JP-1902", + "type": "heliport", + "name": "Sertesitio Shonan Tsujido Helipad", + "latitude_deg": "35.34102", + "longitude_deg": "139.44344", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Chigasaki", + "scheduled_service": "no" + }, + { + "id": "343759", + "ident": "JP-1903", + "type": "heliport", + "name": "Crest Forum Shonan Tsujido Helipad", + "latitude_deg": "35.34177", + "longitude_deg": "139.44332", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Chigasaki", + "scheduled_service": "no" + }, + { + "id": "343760", + "ident": "JP-1904", + "type": "small_airport", + "name": "Yoshiigawa Eku Gliderport", + "latitude_deg": "34.6744", + "longitude_deg": "134.07234", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Setouchi", + "scheduled_service": "no" + }, + { + "id": "343843", + "ident": "JP-1905", + "type": "heliport", + "name": "Lions Mid Capital Tower Helipad", + "latitude_deg": "35.135", + "longitude_deg": "136.9098", + "elevation_ft": "597", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "343844", + "ident": "JP-1906", + "type": "heliport", + "name": "Nittochi Yamashita-cho Building Helipad", + "latitude_deg": "35.44637", + "longitude_deg": "139.64547", + "elevation_ft": "332", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "343845", + "ident": "JP-1907", + "type": "heliport", + "name": "Yamashita-cho SSK Building Helipad", + "latitude_deg": "35.4466", + "longitude_deg": "139.64484", + "elevation_ft": "308", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "343867", + "ident": "JP-1908", + "type": "heliport", + "name": "JGSDF Kashiwa Training Field Helipad", + "latitude_deg": "35.90732", + "longitude_deg": "139.9735", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Kashiwa", + "scheduled_service": "no" + }, + { + "id": "343868", + "ident": "JP-1909", + "type": "closed", + "name": "Obu Airfield", + "latitude_deg": "35.01644", + "longitude_deg": "136.93004", + "elevation_ft": "108", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Tokai", + "scheduled_service": "no" + }, + { + "id": "343870", + "ident": "JP-1910", + "type": "heliport", + "name": "Koisonohana Heliport", + "latitude_deg": "35.26049", + "longitude_deg": "139.57732", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Miura", + "scheduled_service": "no" + }, + { + "id": "343875", + "ident": "JP-1911", + "type": "heliport", + "name": "Lions Misatochuo Helipad", + "latitude_deg": "35.82518", + "longitude_deg": "139.87857", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Misato", + "scheduled_service": "no" + }, + { + "id": "343884", + "ident": "JP-1912", + "type": "heliport", + "name": "Senri Chuo River Garden North Helipad", + "latitude_deg": "34.80505", + "longitude_deg": "135.49097", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Toyonaka", + "scheduled_service": "no" + }, + { + "id": "343885", + "ident": "JP-1913", + "type": "heliport", + "name": "Senri Chuo River Garden South Helipad", + "latitude_deg": "34.80477", + "longitude_deg": "135.49135", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Toyonaka", + "scheduled_service": "no" + }, + { + "id": "343892", + "ident": "JP-1914", + "type": "heliport", + "name": "Urban Ace Higobashi Building Helipad", + "latitude_deg": "34.68982", + "longitude_deg": "135.49258", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343893", + "ident": "JP-1915", + "type": "heliport", + "name": "Mitsubishi Heavy Industries Osaka Building Helipad", + "latitude_deg": "34.69061", + "longitude_deg": "135.49348", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343894", + "ident": "JP-1916", + "type": "heliport", + "name": "Castalia Tower Higobashi Helipad", + "latitude_deg": "34.69177", + "longitude_deg": "135.4946", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343895", + "ident": "JP-1917", + "type": "heliport", + "name": "APA Hotel Osaka Higobashi Ekimae Helipad", + "latitude_deg": "34.69209", + "longitude_deg": "135.49534", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343896", + "ident": "JP-1918", + "type": "heliport", + "name": "Norden Tower Minamimorimachi Premium Helipad", + "latitude_deg": "34.69692", + "longitude_deg": "135.51581", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343897", + "ident": "JP-1919", + "type": "heliport", + "name": "Osaka Medical Center for Cancer and Cardiovascular Diseases Heliport", + "latitude_deg": "34.681", + "longitude_deg": "135.5352", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343898", + "ident": "JP-1920", + "type": "heliport", + "name": "Kintetsu Morinomiya Building Helipad", + "latitude_deg": "34.68191", + "longitude_deg": "135.53485", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no", + "keywords": "NLC Morinomiya Building" + }, + { + "id": "343899", + "ident": "JP-1921", + "type": "heliport", + "name": "Kyocera R&D Center Building Helipad", + "latitude_deg": "34.67659", + "longitude_deg": "135.53359", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343900", + "ident": "JP-1922", + "type": "heliport", + "name": "Springs Tower Osaka Helipad", + "latitude_deg": "34.67709", + "longitude_deg": "135.53354", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343901", + "ident": "JP-1923", + "type": "heliport", + "name": "Edo-Tokyo Museum Helipad", + "latitude_deg": "35.69638", + "longitude_deg": "139.79575", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Sumida, Tokyo", + "scheduled_service": "no" + }, + { + "id": "343902", + "ident": "JP-1924", + "type": "heliport", + "name": "Nara Prefecture General Medical Center Heliport", + "latitude_deg": "34.66257", + "longitude_deg": "135.76723", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-29", + "municipality": "Nara", + "scheduled_service": "no" + }, + { + "id": "343903", + "ident": "JP-1925", + "type": "heliport", + "name": "JASDF Air Officer Candidate School Heliport", + "latitude_deg": "34.70035", + "longitude_deg": "135.80514", + "elevation_ft": "272", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-29", + "municipality": "Nara", + "scheduled_service": "no" + }, + { + "id": "343909", + "ident": "JP-1926", + "type": "heliport", + "name": "Awaza Rise Towers Mark 20 Helipad", + "latitude_deg": "34.68134", + "longitude_deg": "135.48447", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343910", + "ident": "JP-1927", + "type": "heliport", + "name": "Awaza Rise Towers Flag 46 Helipad", + "latitude_deg": "34.68167", + "longitude_deg": "135.48389", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343936", + "ident": "JP-1928", + "type": "heliport", + "name": "Edobori Center Building Helipad", + "latitude_deg": "34.68779", + "longitude_deg": "135.49135", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343938", + "ident": "JP-1929", + "type": "heliport", + "name": "Hakone Sengokuhara Helipad", + "latitude_deg": "35.26674", + "longitude_deg": "138.99668", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Hakone", + "scheduled_service": "no" + }, + { + "id": "343939", + "ident": "JP-1930", + "type": "closed", + "name": "Ieshima Central Airfield", + "latitude_deg": "26.72199", + "longitude_deg": "127.77654", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Ie", + "scheduled_service": "no" + }, + { + "id": "343940", + "ident": "JP-1931", + "type": "small_airport", + "name": "Ieshima West (LHA) Airfield", + "latitude_deg": "26.72998", + "longitude_deg": "127.75647", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Ie", + "scheduled_service": "no" + }, + { + "id": "343970", + "ident": "JP-1932", + "type": "closed", + "name": "Ito Airport", + "latitude_deg": "35.66327", + "longitude_deg": "140.02905", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Narashino", + "scheduled_service": "no" + }, + { + "id": "343971", + "ident": "JP-1933", + "type": "closed", + "name": "Fuji Airfield", + "latitude_deg": "35.13295", + "longitude_deg": "138.64952", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Fuji", + "scheduled_service": "no" + }, + { + "id": "343972", + "ident": "JP-1934", + "type": "closed", + "name": "Inage Airfield", + "latitude_deg": "35.63442", + "longitude_deg": "140.07801", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Chiba", + "scheduled_service": "no" + }, + { + "id": "343973", + "ident": "JP-1935", + "type": "closed", + "name": "Oi Airfield", + "latitude_deg": "34.77114", + "longitude_deg": "138.14585", + "elevation_ft": "591", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Makinohara", + "scheduled_service": "no" + }, + { + "id": "343974", + "ident": "JP-1936", + "type": "closed", + "name": "Joto Airfield", + "latitude_deg": "34.68569", + "longitude_deg": "135.53734", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343976", + "ident": "JP-1937", + "type": "heliport", + "name": "Tosabori Dai Building Helipad", + "latitude_deg": "34.68861", + "longitude_deg": "135.49066", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343977", + "ident": "JP-1938", + "type": "heliport", + "name": "Park Tower Nakanoshima Front Helipad", + "latitude_deg": "34.68803", + "longitude_deg": "135.48933", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343978", + "ident": "JP-1939", + "type": "heliport", + "name": "Premist Edobori Helipad", + "latitude_deg": "34.68559", + "longitude_deg": "135.48651", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343979", + "ident": "JP-1940", + "type": "heliport", + "name": "Laurel Court Nakanoshima Helipad", + "latitude_deg": "34.68622", + "longitude_deg": "135.48723", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "343980", + "ident": "JP-1941", + "type": "heliport", + "name": "Hiratsuka City Hospital Helipad", + "latitude_deg": "35.33636", + "longitude_deg": "139.32497", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Hiratsuka", + "scheduled_service": "no" + }, + { + "id": "343981", + "ident": "JP-1942", + "type": "heliport", + "name": "Bosai-no-Oka Park Heliport", + "latitude_deg": "35.43493", + "longitude_deg": "139.3432", + "elevation_ft": "179", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Atsugi", + "scheduled_service": "no" + }, + { + "id": "343984", + "ident": "JP-1943", + "type": "heliport", + "name": "Okayama City Health and Welfare Hall Helipad", + "latitude_deg": "34.65466", + "longitude_deg": "133.91875", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Okayama", + "scheduled_service": "no" + }, + { + "id": "343986", + "ident": "JP-1944", + "type": "heliport", + "name": "Hakone-en Heliport", + "latitude_deg": "35.21067", + "longitude_deg": "139.02774", + "elevation_ft": "2901", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Hakone", + "scheduled_service": "no" + }, + { + "id": "343991", + "ident": "JP-1945", + "type": "heliport", + "name": "Hiroshima Prefectural Police Headquarters Helipad", + "latitude_deg": "34.3961", + "longitude_deg": "132.46125", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no" + }, + { + "id": "344113", + "ident": "JP-1946", + "type": "heliport", + "name": "Navios Yokohama Helipad", + "latitude_deg": "35.45294", + "longitude_deg": "139.63903", + "elevation_ft": "165", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "344114", + "ident": "JP-1947", + "type": "heliport", + "name": "Yokohama World Porters Helipad", + "latitude_deg": "35.45433", + "longitude_deg": "139.63836", + "elevation_ft": "263", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "344115", + "ident": "JP-1948", + "type": "heliport", + "name": "Nogecho 3-chome North District Building Helipad", + "latitude_deg": "35.44896", + "longitude_deg": "139.62913", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "344116", + "ident": "JP-1949", + "type": "heliport", + "name": "Kamiseya Communication Facility Heliport", + "latitude_deg": "35.48866", + "longitude_deg": "139.48224", + "elevation_ft": "233", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "344117", + "ident": "JP-1950", + "type": "closed", + "name": "Oyama Clandestine Airfield", + "latitude_deg": "35.47981", + "longitude_deg": "139.45041", + "elevation_ft": "236", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yamato", + "scheduled_service": "no", + "keywords": "Atsugi Airfield Number 2" + }, + { + "id": "344118", + "ident": "JP-1951", + "type": "closed", + "name": "Kashiwa Airfield", + "latitude_deg": "35.8982", + "longitude_deg": "139.94156", + "elevation_ft": "85", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Kashiwa", + "scheduled_service": "no" + }, + { + "id": "344119", + "ident": "JP-1952", + "type": "heliport", + "name": "Fuse Heliport", + "latitude_deg": "35.90046", + "longitude_deg": "140.00692", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Kashiwa", + "scheduled_service": "no" + }, + { + "id": "344120", + "ident": "JP-1953", + "type": "closed", + "name": "Narimasu Airfield", + "latitude_deg": "35.76062", + "longitude_deg": "139.62898", + "elevation_ft": "148", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Nerima, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344122", + "ident": "JP-1954", + "type": "heliport", + "name": "Tokyo Metropolitan Geriatric Hospital Heliport", + "latitude_deg": "35.75066", + "longitude_deg": "139.70198", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Toshima, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344132", + "ident": "JP-1955", + "type": "heliport", + "name": "D'Grafort Yokohama Cruising Tower Helipad", + "latitude_deg": "35.44911", + "longitude_deg": "139.63772", + "elevation_ft": "357", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "344133", + "ident": "JP-1956", + "type": "heliport", + "name": "Higashi-Shizuoka Railyard Helipad", + "latitude_deg": "34.98776", + "longitude_deg": "138.41734", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "344134", + "ident": "JP-1957", + "type": "heliport", + "name": "Granship Helipad", + "latitude_deg": "34.98561", + "longitude_deg": "138.41707", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "344135", + "ident": "JP-1958", + "type": "heliport", + "name": "River Garden Hirano Ekimae ECO Helipad", + "latitude_deg": "34.62998", + "longitude_deg": "135.55053", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344136", + "ident": "JP-1959", + "type": "heliport", + "name": "Megacity Towers West Helipad", + "latitude_deg": "34.62142", + "longitude_deg": "135.58497", + "elevation_ft": "495", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Yao", + "scheduled_service": "no" + }, + { + "id": "344137", + "ident": "JP-1960", + "type": "heliport", + "name": "Nanba Grand Masters Tower Helipad", + "latitude_deg": "34.65665", + "longitude_deg": "135.50144", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344138", + "ident": "JP-1961", + "type": "heliport", + "name": "Nankai Nanba First Building Helipad", + "latitude_deg": "34.65719", + "longitude_deg": "135.50171", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344139", + "ident": "JP-1962", + "type": "heliport", + "name": "Orc 200 Helipad", + "latitude_deg": "34.66939", + "longitude_deg": "135.4612", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344140", + "ident": "JP-1963", + "type": "heliport", + "name": "Orc Prior Tower Helipad", + "latitude_deg": "34.66972", + "longitude_deg": "135.45972", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344141", + "ident": "JP-1964", + "type": "heliport", + "name": "X-Tower Osaka Bay Helipad", + "latitude_deg": "34.66838", + "longitude_deg": "135.46051", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344142", + "ident": "JP-1965", + "type": "heliport", + "name": "Kosha Heights Benten Helipad", + "latitude_deg": "34.6681", + "longitude_deg": "135.45997", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344143", + "ident": "JP-1966", + "type": "heliport", + "name": "King Square Landlex Bay Resort Helipad", + "latitude_deg": "34.66423", + "longitude_deg": "135.46669", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344144", + "ident": "JP-1967", + "type": "heliport", + "name": "River Garden Osaka Fukushima Helipad", + "latitude_deg": "34.6844", + "longitude_deg": "135.47018", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344145", + "ident": "JP-1968", + "type": "heliport", + "name": "Marks the Tower Higashi-Shizuoka Helipad", + "latitude_deg": "34.98377", + "longitude_deg": "138.41593", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "344146", + "ident": "JP-1969", + "type": "heliport", + "name": "Lions Mansion Osaka Sky Tower Helipad", + "latitude_deg": "34.6769", + "longitude_deg": "135.49463", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344147", + "ident": "JP-1970", + "type": "heliport", + "name": "Sanctus Tower Shinsaibashi Milan Grande Helipad", + "latitude_deg": "34.67731", + "longitude_deg": "135.49548", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344148", + "ident": "JP-1971", + "type": "heliport", + "name": "City Tower Tennoji Sanadayama Helipad", + "latitude_deg": "34.67214", + "longitude_deg": "135.53187", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344156", + "ident": "JP-1972", + "type": "closed", + "name": "Ohara Airfield", + "latitude_deg": "34.25203", + "longitude_deg": "132.45045", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Etajima", + "scheduled_service": "no" + }, + { + "id": "344157", + "ident": "JP-1973", + "type": "heliport", + "name": "Etajima Heliport", + "latitude_deg": "34.25678", + "longitude_deg": "132.454", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Etajima", + "scheduled_service": "no" + }, + { + "id": "344158", + "ident": "JP-1974", + "type": "closed", + "name": "Fujikawa Airfield", + "latitude_deg": "34.17991", + "longitude_deg": "132.16751", + "elevation_ft": "40", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Iwakuni", + "scheduled_service": "no" + }, + { + "id": "344159", + "ident": "JP-1975", + "type": "heliport", + "name": "Osakimachi Heliport", + "latitude_deg": "36.03275", + "longitude_deg": "140.02621", + "elevation_ft": "53", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Joso", + "scheduled_service": "no" + }, + { + "id": "344185", + "ident": "JP-1976", + "type": "heliport", + "name": "Aviation Equipment Research Institute Heliport", + "latitude_deg": "36.03839", + "longitude_deg": "140.2513", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Ami", + "scheduled_service": "no" + }, + { + "id": "344186", + "ident": "JP-1977", + "type": "heliport", + "name": "Shinonome Residences Helipad", + "latitude_deg": "35.64701", + "longitude_deg": "139.8024", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344187", + "ident": "JP-1978", + "type": "closed", + "name": "Nagashima Temporary Helipad", + "latitude_deg": "35.17567", + "longitude_deg": "138.18815", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Kawanehon", + "scheduled_service": "no" + }, + { + "id": "344188", + "ident": "JP-1979", + "type": "heliport", + "name": "Kawanabe Heliport", + "latitude_deg": "34.25477", + "longitude_deg": "135.26821", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Wakayama", + "scheduled_service": "no" + }, + { + "id": "344189", + "ident": "JP-1980", + "type": "heliport", + "name": "Ogura Heliport", + "latitude_deg": "34.24044", + "longitude_deg": "135.29957", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Wakayama", + "scheduled_service": "no" + }, + { + "id": "344191", + "ident": "JP-1981", + "type": "heliport", + "name": "Koshigaya Heliport", + "latitude_deg": "35.8815", + "longitude_deg": "139.75681", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Koshigaya", + "scheduled_service": "no" + }, + { + "id": "344192", + "ident": "JP-1982", + "type": "closed", + "name": "Machinato Airfield", + "latitude_deg": "26.25483", + "longitude_deg": "127.70077", + "elevation_ft": "100", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Urasoe", + "scheduled_service": "no" + }, + { + "id": "344193", + "ident": "JP-1983", + "type": "closed", + "name": "Nishihara / Yonabaru Airfield", + "latitude_deg": "26.22835", + "longitude_deg": "127.77405", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Nishihara", + "scheduled_service": "no" + }, + { + "id": "344194", + "ident": "JP-1984", + "type": "closed", + "name": "Ishimine Airfield", + "latitude_deg": "26.23247", + "longitude_deg": "127.73072", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Naha", + "scheduled_service": "no" + }, + { + "id": "344195", + "ident": "JP-1985", + "type": "closed", + "name": "Yone Airfield", + "latitude_deg": "26.16049", + "longitude_deg": "127.6683", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Tomigusuku", + "scheduled_service": "no" + }, + { + "id": "344196", + "ident": "JP-1986", + "type": "closed", + "name": "Fukuji Airfield", + "latitude_deg": "26.09251", + "longitude_deg": "127.67697", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Itoman", + "scheduled_service": "no" + }, + { + "id": "344197", + "ident": "JP-1987", + "type": "closed", + "name": "Awase Airfield", + "latitude_deg": "26.31458", + "longitude_deg": "127.82365", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Okinawa", + "scheduled_service": "no" + }, + { + "id": "344198", + "ident": "JP-1988", + "type": "closed", + "name": "Zukeran Airfield", + "latitude_deg": "26.29981", + "longitude_deg": "127.76528", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Chatan", + "scheduled_service": "no" + }, + { + "id": "344199", + "ident": "JP-1989", + "type": "closed", + "name": "Hamby Airfield", + "latitude_deg": "26.30204", + "longitude_deg": "127.76005", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Chatan", + "scheduled_service": "no" + }, + { + "id": "344200", + "ident": "JP-1990", + "type": "heliport", + "name": "Naval Hospital Okinawa Heliport", + "latitude_deg": "26.29579", + "longitude_deg": "127.77348", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Chatan", + "scheduled_service": "no" + }, + { + "id": "344201", + "ident": "JP-1991", + "type": "closed", + "name": "Yomitan Airfield", + "latitude_deg": "26.39717", + "longitude_deg": "127.74617", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Yomitan", + "scheduled_service": "no" + }, + { + "id": "344202", + "ident": "JP-1992", + "type": "closed", + "name": "Yomitan Airfield", + "latitude_deg": "26.39717", + "longitude_deg": "127.74617", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Yomitan", + "scheduled_service": "no" + }, + { + "id": "344203", + "ident": "JP-1993", + "type": "closed", + "name": "Zanpa / Bolo Airfield", + "latitude_deg": "26.43351", + "longitude_deg": "127.72058", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Yomitan", + "scheduled_service": "no" + }, + { + "id": "344204", + "ident": "JP-1994", + "type": "closed", + "name": "Miyazato Airfield", + "latitude_deg": "26.59574", + "longitude_deg": "127.96912", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Nago", + "scheduled_service": "no" + }, + { + "id": "344205", + "ident": "JP-1995", + "type": "closed", + "name": "Beasley Field", + "latitude_deg": "26.7044", + "longitude_deg": "127.883", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Motobu", + "scheduled_service": "no" + }, + { + "id": "344206", + "ident": "JP-1996", + "type": "closed", + "name": "Motobu Airfield", + "latitude_deg": "26.68687", + "longitude_deg": "127.89139", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Motobu", + "scheduled_service": "no" + }, + { + "id": "344207", + "ident": "JP-1997", + "type": "heliport", + "name": "Health Plaza Hygeia East Heliport", + "latitude_deg": "35.69691", + "longitude_deg": "139.70154", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344209", + "ident": "JP-1998", + "type": "heliport", + "name": "Health Plaza Hygeia West Heliport", + "latitude_deg": "35.69642", + "longitude_deg": "139.7011", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344210", + "ident": "JP-1999", + "type": "heliport", + "name": "Central Park Tower La Tour Shinjuku Helipad", + "latitude_deg": "35.69222", + "longitude_deg": "139.68856", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344211", + "ident": "JP-2000", + "type": "heliport", + "name": "Concieria Nishishinjuku Towers Helipad", + "latitude_deg": "35.69256", + "longitude_deg": "139.68741", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344212", + "ident": "JP-2001", + "type": "heliport", + "name": "The Parkhouse Nishi-Shinjuku Tower 60 Helipad", + "latitude_deg": "35.69368", + "longitude_deg": "139.68657", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344261", + "ident": "JP-2002", + "type": "heliport", + "name": "Palette Gotenba Auxiliary Heliport", + "latitude_deg": "35.30943", + "longitude_deg": "138.94924", + "elevation_ft": "1440", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Gotenba", + "scheduled_service": "no" + }, + { + "id": "344262", + "ident": "JP-2003", + "type": "heliport", + "name": "Seto Heliport", + "latitude_deg": "34.768674", + "longitude_deg": "137.550573", + "elevation_ft": "145", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Hamamatsu", + "scheduled_service": "no" + }, + { + "id": "344263", + "ident": "JP-2004", + "type": "heliport", + "name": "Kongo Heliport", + "latitude_deg": "34.38354", + "longitude_deg": "135.6696", + "elevation_ft": "1650", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-29", + "municipality": "Gojo", + "scheduled_service": "no" + }, + { + "id": "344264", + "ident": "JP-2005", + "type": "heliport", + "name": "Kodera Medevac Heliport", + "latitude_deg": "34.55096", + "longitude_deg": "135.75513", + "elevation_ft": "157", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-29", + "municipality": "Koryo", + "scheduled_service": "no" + }, + { + "id": "344265", + "ident": "JP-2006", + "type": "heliport", + "name": "Koya Heliport", + "latitude_deg": "34.77402", + "longitude_deg": "135.90795", + "elevation_ft": "696", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Wazuka", + "scheduled_service": "no" + }, + { + "id": "344266", + "ident": "JP-2007", + "type": "heliport", + "name": "Matsunami General Hospital Heliport", + "latitude_deg": "35.36455", + "longitude_deg": "136.75714", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Kasamatsu", + "scheduled_service": "no" + }, + { + "id": "344267", + "ident": "JP-2008", + "type": "closed", + "name": "Makado Airfield", + "latitude_deg": "35.41779", + "longitude_deg": "139.64236", + "elevation_ft": "60", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "344268", + "ident": "JP-2009", + "type": "closed", + "name": "Isezakicho Airfield", + "latitude_deg": "35.44164", + "longitude_deg": "139.62793", + "elevation_ft": "35", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "344277", + "ident": "JP-2010", + "type": "heliport", + "name": "Osaka Stock Exchange Building Helipad", + "latitude_deg": "34.69124", + "longitude_deg": "135.50744", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344278", + "ident": "JP-2011", + "type": "closed", + "name": "Utsubo Airfield", + "latitude_deg": "34.68484", + "longitude_deg": "135.493", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344357", + "ident": "JP-2012", + "type": "heliport", + "name": "Kitahama Mid Tower Helipad", + "latitude_deg": "34.69153", + "longitude_deg": "135.50597", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344358", + "ident": "JP-2013", + "type": "heliport", + "name": "Yodoyabashi Square Helipad", + "latitude_deg": "34.6918", + "longitude_deg": "135.50407", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344359", + "ident": "JP-2014", + "type": "heliport", + "name": "D'Grafort Osaka NY Tower Higobashi Helipad", + "latitude_deg": "34.68986", + "longitude_deg": "135.49701", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344360", + "ident": "JP-2015", + "type": "heliport", + "name": "Kitasakacho Heliport", + "latitude_deg": "35.14093", + "longitude_deg": "136.27993", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Higashiomi", + "scheduled_service": "no" + }, + { + "id": "344362", + "ident": "JP-2016", + "type": "heliport", + "name": "Japan Red Cross Kobe Hospital Heliport", + "latitude_deg": "34.69656", + "longitude_deg": "135.21174", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344395", + "ident": "JP-2017", + "type": "heliport", + "name": "Urban Life Kobe Sannomiya Helipad", + "latitude_deg": "34.68691", + "longitude_deg": "135.19607", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344396", + "ident": "JP-2018", + "type": "heliport", + "name": "Verista Kobe Old Settlement Helipad", + "latitude_deg": "34.68626", + "longitude_deg": "135.19577", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344397", + "ident": "JP-2019", + "type": "heliport", + "name": "NTT Western Japan Kobe Central Building Helipad", + "latitude_deg": "34.68644", + "longitude_deg": "135.19399", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344398", + "ident": "JP-2020", + "type": "heliport", + "name": "Ship Kobe Kaigan Building Helipad", + "latitude_deg": "34.68656", + "longitude_deg": "135.1907", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344399", + "ident": "JP-2021", + "type": "heliport", + "name": "Kobe Asahi Building Helipad", + "latitude_deg": "34.6894", + "longitude_deg": "135.1924", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344400", + "ident": "JP-2022", + "type": "heliport", + "name": "D'Grafort Kobe Sannomiya Tower Helipad", + "latitude_deg": "34.69052", + "longitude_deg": "135.19702", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344401", + "ident": "JP-2023", + "type": "heliport", + "name": "Sannomiya Building South Helipad", + "latitude_deg": "34.69266", + "longitude_deg": "135.19654", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344402", + "ident": "JP-2024", + "type": "heliport", + "name": "Sannomiya Building North Helipad", + "latitude_deg": "34.69326", + "longitude_deg": "135.19619", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344403", + "ident": "JP-2025", + "type": "heliport", + "name": "City Tower Kobe Sannomiya Helipad", + "latitude_deg": "34.69668", + "longitude_deg": "135.19802", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344404", + "ident": "JP-2026", + "type": "heliport", + "name": "Brillia Tower Kobe Motomachi Helipad", + "latitude_deg": "34.68988", + "longitude_deg": "135.18252", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344405", + "ident": "JP-2027", + "type": "heliport", + "name": "Hyogo Prefectural Police Headquarters Heliport", + "latitude_deg": "34.69004", + "longitude_deg": "135.18388", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344406", + "ident": "JP-2028", + "type": "heliport", + "name": "Hyogo Prefectural Police Headquarters Annex Heliport", + "latitude_deg": "34.68997", + "longitude_deg": "135.18297", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344407", + "ident": "JP-2029", + "type": "heliport", + "name": "Hyogo Prefectural Office Building Number 3 Heliport", + "latitude_deg": "34.69252", + "longitude_deg": "135.18476", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344408", + "ident": "JP-2030", + "type": "heliport", + "name": "Toa Yamate Kobe Tower Building Helipad", + "latitude_deg": "34.69354", + "longitude_deg": "135.18762", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344409", + "ident": "JP-2031", + "type": "heliport", + "name": "Promena Kobe Helipad", + "latitude_deg": "34.67964", + "longitude_deg": "135.1809", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344410", + "ident": "JP-2032", + "type": "heliport", + "name": "Park Homes Kobe Residence Helipad", + "latitude_deg": "34.68213", + "longitude_deg": "135.18073", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344411", + "ident": "JP-2033", + "type": "heliport", + "name": "Residence Kobe Motomachidori Helipad", + "latitude_deg": "34.68277", + "longitude_deg": "135.18074", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344412", + "ident": "JP-2034", + "type": "heliport", + "name": "Kinoshita Memorial Corporation Kobe Student Hall Helipad", + "latitude_deg": "34.68296", + "longitude_deg": "135.18039", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344413", + "ident": "JP-2035", + "type": "heliport", + "name": "Urbanex Tower Kobe Motomachidori Helipad", + "latitude_deg": "34.68316", + "longitude_deg": "135.18098", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344414", + "ident": "JP-2036", + "type": "heliport", + "name": "Kobe Crystal Tower Helipad", + "latitude_deg": "34.68058", + "longitude_deg": "135.17996", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344415", + "ident": "JP-2037", + "type": "heliport", + "name": "Kobe Harbor Tower Helipad", + "latitude_deg": "34.68325", + "longitude_deg": "135.18271", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344416", + "ident": "JP-2038", + "type": "heliport", + "name": "Lions Tower Kobe Motomachi Helipad", + "latitude_deg": "34.68696", + "longitude_deg": "135.18572", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344417", + "ident": "JP-2039", + "type": "heliport", + "name": "Kobe Senior Hospital Helipad", + "latitude_deg": "34.71064", + "longitude_deg": "135.20666", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344425", + "ident": "JP-2040", + "type": "closed", + "name": "Odashukuno Seaplane Base", + "latitude_deg": "35.55985", + "longitude_deg": "135.2512", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Miyazu", + "scheduled_service": "no" + }, + { + "id": "344426", + "ident": "JP-2041", + "type": "heliport", + "name": "Wakohre City Kobe Sannomiya Helipad", + "latitude_deg": "34.68766", + "longitude_deg": "135.19898", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344427", + "ident": "JP-2042", + "type": "heliport", + "name": "Wakohre Kobe Sannomiya Trad Tower Helipad", + "latitude_deg": "34.68869", + "longitude_deg": "135.19838", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344428", + "ident": "JP-2043", + "type": "heliport", + "name": "Concordia Kobe Helipad", + "latitude_deg": "34.68888", + "longitude_deg": "135.1989", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344429", + "ident": "JP-2044", + "type": "heliport", + "name": "Museum Tower Helipad", + "latitude_deg": "34.68912", + "longitude_deg": "135.19788", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344430", + "ident": "JP-2045", + "type": "heliport", + "name": "Upper Towers Kobe Sannomiya Helipad", + "latitude_deg": "34.68891", + "longitude_deg": "135.19757", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344431", + "ident": "JP-2046", + "type": "heliport", + "name": "Kobe Coast Special Care Center Heliport", + "latitude_deg": "34.6909", + "longitude_deg": "135.20019", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344432", + "ident": "JP-2047", + "type": "heliport", + "name": "Hotel Sunroute Sopra Kobe Helipad", + "latitude_deg": "34.69089", + "longitude_deg": "135.19988", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344433", + "ident": "JP-2048", + "type": "heliport", + "name": "HAT Kobe Wakihama Building 18 Helipad", + "latitude_deg": "34.69685", + "longitude_deg": "135.20899", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344434", + "ident": "JP-2049", + "type": "heliport", + "name": "Sun City Tower Kobe Helipad", + "latitude_deg": "34.69848", + "longitude_deg": "135.21142", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344435", + "ident": "JP-2050", + "type": "heliport", + "name": "HAT Kobe Building 1 Helipad", + "latitude_deg": "34.70144", + "longitude_deg": "135.21832", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344436", + "ident": "JP-2051", + "type": "heliport", + "name": "HAT Kobe Building 2 Helipad", + "latitude_deg": "34.7016", + "longitude_deg": "135.21914", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344437", + "ident": "JP-2052", + "type": "heliport", + "name": "Kawasaki Medical University General Hospital Heliport", + "latitude_deg": "34.66006", + "longitude_deg": "133.92775", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Okayama", + "scheduled_service": "no" + }, + { + "id": "344438", + "ident": "JP-2053", + "type": "heliport", + "name": "Tochigi Prefectural Police Headquarters Heliport", + "latitude_deg": "36.60298", + "longitude_deg": "139.85934", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Utsunomiya", + "scheduled_service": "no" + }, + { + "id": "344439", + "ident": "JP-2054", + "type": "heliport", + "name": "Kawada Heliport", + "latitude_deg": "36.56222", + "longitude_deg": "140.00395", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Haga", + "scheduled_service": "no" + }, + { + "id": "344440", + "ident": "JP-2055", + "type": "heliport", + "name": "Tochigi Prefecture Office Helipad", + "latitude_deg": "36.56589", + "longitude_deg": "139.8836", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Utsunomiya", + "scheduled_service": "no" + }, + { + "id": "344441", + "ident": "JP-2056", + "type": "heliport", + "name": "Takehara Fire Station Heliport", + "latitude_deg": "34.33837", + "longitude_deg": "132.90089", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Takehara", + "scheduled_service": "no" + }, + { + "id": "344442", + "ident": "JP-2057", + "type": "heliport", + "name": "Atre Takeshiba Tower Helipad", + "latitude_deg": "35.65598", + "longitude_deg": "139.76289", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344443", + "ident": "JP-2058", + "type": "closed", + "name": "Takeyama Airfield", + "latitude_deg": "35.19768", + "longitude_deg": "139.61319", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokosuka", + "scheduled_service": "no" + }, + { + "id": "344444", + "ident": "JP-2059", + "type": "closed", + "name": "Kurosaki Airfield", + "latitude_deg": "35.1808", + "longitude_deg": "139.62579", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Miura", + "scheduled_service": "no" + }, + { + "id": "344445", + "ident": "JP-2060", + "type": "heliport", + "name": "Tokyo Metropolitan Tama Medical Center Heliport", + "latitude_deg": "35.69193", + "longitude_deg": "139.46205", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Fuchu", + "scheduled_service": "no" + }, + { + "id": "344458", + "ident": "JP-2061", + "type": "heliport", + "name": "Villeneuve Tower Yokohama Helipad", + "latitude_deg": "35.44202", + "longitude_deg": "139.64171", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "344459", + "ident": "JP-2062", + "type": "heliport", + "name": "Teikoku Kannai Building", + "latitude_deg": "35.44269", + "longitude_deg": "139.64212", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "344460", + "ident": "JP-2063", + "type": "heliport", + "name": "Next Site Yokohama Yamashita Building Helipad", + "latitude_deg": "35.44395", + "longitude_deg": "139.64285", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "344461", + "ident": "JP-2064", + "type": "heliport", + "name": "Kanagawa Labor Plaza Helipad", + "latitude_deg": "35.4399", + "longitude_deg": "139.64061", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "344471", + "ident": "JP-2065", + "type": "heliport", + "name": "Odate Municipal General Hospital Heliport", + "latitude_deg": "40.27365", + "longitude_deg": "140.55487", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Odate", + "scheduled_service": "no" + }, + { + "id": "344472", + "ident": "JP-2066", + "type": "closed", + "name": "Former Akita Airport", + "latitude_deg": "39.70248", + "longitude_deg": "140.06418", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Akita", + "scheduled_service": "no" + }, + { + "id": "344473", + "ident": "JP-2067", + "type": "heliport", + "name": "Akita Kosei Medical Center Heliport", + "latitude_deg": "39.76654", + "longitude_deg": "140.09271", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Akita", + "scheduled_service": "no" + }, + { + "id": "344474", + "ident": "JP-2068", + "type": "heliport", + "name": "Hanakawa Riverside Park Heliport", + "latitude_deg": "38.54263", + "longitude_deg": "140.84851", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Shikawa", + "scheduled_service": "no" + }, + { + "id": "344475", + "ident": "JP-2069", + "type": "closed", + "name": "Noshiro Airfield", + "latitude_deg": "40.2302", + "longitude_deg": "140.05442", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Noshiro", + "scheduled_service": "no" + }, + { + "id": "344476", + "ident": "JP-2070", + "type": "heliport", + "name": "Ainagata Heliport", + "latitude_deg": "39.75168", + "longitude_deg": "140.64232", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Senboku", + "scheduled_service": "no" + }, + { + "id": "344478", + "ident": "JP-2071", + "type": "heliport", + "name": "Akita Cerebrospinal and Cardiovascular Center Heliport", + "latitude_deg": "39.72048", + "longitude_deg": "140.1272", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Akita", + "scheduled_service": "no" + }, + { + "id": "344479", + "ident": "JP-2072", + "type": "heliport", + "name": "Aomori Prefectural Heliport", + "latitude_deg": "40.82537", + "longitude_deg": "140.74152", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Aomori", + "scheduled_service": "no" + }, + { + "id": "344480", + "ident": "JP-2073", + "type": "small_airport", + "name": "Hirosaki Fifteen Club Airstrip", + "latitude_deg": "40.70151", + "longitude_deg": "140.3239", + "elevation_ft": "935", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Hirosaki", + "scheduled_service": "no" + }, + { + "id": "344481", + "ident": "JP-2074", + "type": "heliport", + "name": "Hirosaki University Hospital Heliport", + "latitude_deg": "40.59934", + "longitude_deg": "140.46564", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Hirosaki", + "scheduled_service": "no" + }, + { + "id": "344482", + "ident": "JP-2075", + "type": "heliport", + "name": "Wadacho Heliport", + "latitude_deg": "40.6135", + "longitude_deg": "140.45871", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Hirosaki", + "scheduled_service": "no" + }, + { + "id": "344483", + "ident": "JP-2076", + "type": "heliport", + "name": "JASDF Camp Tohoku Town Sub Base Heliport", + "latitude_deg": "40.81249", + "longitude_deg": "141.20655", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Tohoku", + "scheduled_service": "no" + }, + { + "id": "344484", + "ident": "JP-2077", + "type": "heliport", + "name": "JGSDF Camp Aomori Heliport", + "latitude_deg": "40.8119", + "longitude_deg": "140.7063", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Aomori", + "scheduled_service": "no" + }, + { + "id": "344485", + "ident": "JP-2078", + "type": "heliport", + "name": "Kazuno Kosei Hospital Heliport", + "latitude_deg": "40.21909", + "longitude_deg": "140.78419", + "elevation_ft": "397", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Kazuno", + "scheduled_service": "no" + }, + { + "id": "344486", + "ident": "JP-2079", + "type": "small_airport", + "name": "Kawayo Green Ranch Airport", + "latitude_deg": "40.629479", + "longitude_deg": "141.37704", + "elevation_ft": "187", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Oirase", + "scheduled_service": "no" + }, + { + "id": "344487", + "ident": "JP-2080", + "type": "small_airport", + "name": "Shimodate Ultralightport", + "latitude_deg": "36.28572", + "longitude_deg": "139.907", + "elevation_ft": "115", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Yuki", + "scheduled_service": "no" + }, + { + "id": "344488", + "ident": "JP-2081", + "type": "small_airport", + "name": "Twin Ring Motegi South Runway", + "latitude_deg": "36.52311", + "longitude_deg": "140.22652", + "elevation_ft": "646", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Motegi", + "scheduled_service": "no" + }, + { + "id": "344489", + "ident": "JP-2082", + "type": "small_airport", + "name": "Skyfield Nasu", + "latitude_deg": "36.96241", + "longitude_deg": "139.97566", + "elevation_ft": "1130", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Nasushiobara", + "scheduled_service": "no" + }, + { + "id": "344490", + "ident": "JP-2083", + "type": "closed", + "name": "Sabae Airfield", + "latitude_deg": "35.98263", + "longitude_deg": "136.17882", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Sabae", + "scheduled_service": "no" + }, + { + "id": "344491", + "ident": "JP-2084", + "type": "closed", + "name": "Atago Airfield", + "latitude_deg": "35.93355", + "longitude_deg": "136.15389", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Echizen", + "scheduled_service": "no" + }, + { + "id": "344492", + "ident": "JP-2085", + "type": "heliport", + "name": "University of Fukui Hospital Heliport", + "latitude_deg": "36.10823", + "longitude_deg": "136.29663", + "elevation_ft": "130", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Eiheiji", + "scheduled_service": "no" + }, + { + "id": "344493", + "ident": "JP-2086", + "type": "closed", + "name": "Mikuni Airfield", + "latitude_deg": "36.24035", + "longitude_deg": "136.19082", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Awara", + "scheduled_service": "no" + }, + { + "id": "344494", + "ident": "JP-2087", + "type": "heliport", + "name": "Manahime Heliport", + "latitude_deg": "35.91286", + "longitude_deg": "136.54019", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Ono", + "scheduled_service": "no" + }, + { + "id": "344495", + "ident": "JP-2088", + "type": "heliport", + "name": "JGSDF Camp Sabae Heliport", + "latitude_deg": "35.99356", + "longitude_deg": "136.17173", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Sabae", + "scheduled_service": "no" + }, + { + "id": "344496", + "ident": "JP-2089", + "type": "small_airport", + "name": "JGSDF Mitsukojiyama Airstrip", + "latitude_deg": "36.5229", + "longitude_deg": "136.67166", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-17", + "municipality": "Kanazawa", + "scheduled_service": "no" + }, + { + "id": "344497", + "ident": "JP-2090", + "type": "closed", + "name": "Soma Airfield", + "latitude_deg": "37.02657", + "longitude_deg": "136.88815", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-17", + "municipality": "Nanao", + "scheduled_service": "no" + }, + { + "id": "344498", + "ident": "JP-2091", + "type": "heliport", + "name": "Matsumoto Heliport", + "latitude_deg": "36.23828", + "longitude_deg": "137.95493", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Matsumoto", + "scheduled_service": "no" + }, + { + "id": "344499", + "ident": "JP-2092", + "type": "heliport", + "name": "Geijutsu-mura Park Emergency Helipad", + "latitude_deg": "36.32548", + "longitude_deg": "138.32006", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Tomi", + "scheduled_service": "no" + }, + { + "id": "344500", + "ident": "JP-2093", + "type": "heliport", + "name": "Takasu Interchange Helipad", + "latitude_deg": "35.93689", + "longitude_deg": "136.87959", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Gujo", + "scheduled_service": "no" + }, + { + "id": "344501", + "ident": "JP-2094", + "type": "closed", + "name": "Kanazawa Airfield", + "latitude_deg": "36.64411", + "longitude_deg": "136.6629", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-17", + "municipality": "Kanazawa", + "scheduled_service": "no" + }, + { + "id": "344502", + "ident": "JP-2095", + "type": "closed", + "name": "Nashigahara Airfield", + "latitude_deg": "35.43224", + "longitude_deg": "138.82841", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Yamanakako", + "scheduled_service": "no" + }, + { + "id": "344503", + "ident": "JP-2096", + "type": "closed", + "name": "Skyport Fuji", + "latitude_deg": "35.46036", + "longitude_deg": "138.8707", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Oshino", + "scheduled_service": "no" + }, + { + "id": "344504", + "ident": "JP-2097", + "type": "closed", + "name": "Narusawa Airfield", + "latitude_deg": "35.47695", + "longitude_deg": "138.69021", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Narusawa", + "scheduled_service": "no" + }, + { + "id": "344505", + "ident": "JP-2098", + "type": "closed", + "name": "Yamanashi Airfield", + "latitude_deg": "35.63302", + "longitude_deg": "138.51517", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Kai", + "scheduled_service": "no" + }, + { + "id": "344506", + "ident": "JP-2099", + "type": "closed", + "name": "Motosu Airfield", + "latitude_deg": "35.46525", + "longitude_deg": "136.6871", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Motosu", + "scheduled_service": "no" + }, + { + "id": "344507", + "ident": "JP-2100", + "type": "closed", + "name": "Tatenogahara Airfield", + "latitude_deg": "36.51562", + "longitude_deg": "136.86166", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-16", + "municipality": "Nanto", + "scheduled_service": "no" + }, + { + "id": "344508", + "ident": "JP-2101", + "type": "closed", + "name": "Hannya Airfield", + "latitude_deg": "36.66272", + "longitude_deg": "137.00232", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-16", + "municipality": "Takaoka", + "scheduled_service": "no" + }, + { + "id": "344510", + "ident": "JP-2102", + "type": "closed", + "name": "Taga Airfield", + "latitude_deg": "35.23663", + "longitude_deg": "136.2884", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Taga", + "scheduled_service": "no" + }, + { + "id": "344511", + "ident": "JP-2103", + "type": "closed", + "name": "Tenko Airfield", + "latitude_deg": "35.00212", + "longitude_deg": "135.88319", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Otsu", + "scheduled_service": "no" + }, + { + "id": "344512", + "ident": "JP-2104", + "type": "closed", + "name": "Shiga Airfield", + "latitude_deg": "35.04168", + "longitude_deg": "135.86455", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Otsu", + "scheduled_service": "no" + }, + { + "id": "344513", + "ident": "JP-2105", + "type": "closed", + "name": "Otsu Seaplane Base", + "latitude_deg": "35.03611", + "longitude_deg": "135.8693", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Otsu", + "scheduled_service": "no" + }, + { + "id": "344514", + "ident": "JP-2106", + "type": "heliport", + "name": "JGSDF Camp Otsu Heliport", + "latitude_deg": "35.03486", + "longitude_deg": "135.86709", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Otsu", + "scheduled_service": "no" + }, + { + "id": "344515", + "ident": "JP-2107", + "type": "closed", + "name": "Funaki Airfield", + "latitude_deg": "35.32036", + "longitude_deg": "136.07568", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Takashima", + "scheduled_service": "no" + }, + { + "id": "344516", + "ident": "JP-2108", + "type": "closed", + "name": "Okubo Airfield", + "latitude_deg": "34.87811", + "longitude_deg": "135.77197", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Uji", + "scheduled_service": "no" + }, + { + "id": "344517", + "ident": "JP-2109", + "type": "heliport", + "name": "JGSDF Camp Okubo Heliport", + "latitude_deg": "34.877", + "longitude_deg": "135.77169", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Uji", + "scheduled_service": "no" + }, + { + "id": "344518", + "ident": "JP-2110", + "type": "heliport", + "name": "Uji Tokushukai Medical Center Heliport", + "latitude_deg": "34.9032", + "longitude_deg": "135.78718", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Uji", + "scheduled_service": "no" + }, + { + "id": "344519", + "ident": "JP-2111", + "type": "closed", + "name": "Takenaga Airfield", + "latitude_deg": "35.04327", + "longitude_deg": "136.52352", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Komono", + "scheduled_service": "no" + }, + { + "id": "344520", + "ident": "JP-2112", + "type": "closed", + "name": "Oiwake Airfield", + "latitude_deg": "34.93991", + "longitude_deg": "136.49298", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Suzuka", + "scheduled_service": "no" + }, + { + "id": "344521", + "ident": "JP-2113", + "type": "closed", + "name": "Kita-Ise Airfield", + "latitude_deg": "34.89504", + "longitude_deg": "136.4902", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Kameyama", + "scheduled_service": "no" + }, + { + "id": "344522", + "ident": "JP-2114", + "type": "small_airport", + "name": "Nishigawara Airfield", + "latitude_deg": "36.99445", + "longitude_deg": "137.86808", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Itoigawa", + "scheduled_service": "no" + }, + { + "id": "344523", + "ident": "JP-2115", + "type": "closed", + "name": "Nagano Airfield", + "latitude_deg": "36.62498", + "longitude_deg": "138.21138", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Nagano", + "scheduled_service": "no" + }, + { + "id": "344524", + "ident": "JP-2116", + "type": "closed", + "name": "Kowadahara Airfield", + "latitude_deg": "37.34302", + "longitude_deg": "138.79708", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Ojiya", + "scheduled_service": "no" + }, + { + "id": "344525", + "ident": "JP-2117", + "type": "heliport", + "name": "Nagaoka Central General Hospital Heliport", + "latitude_deg": "37.45265", + "longitude_deg": "138.87738", + "elevation_ft": "68", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Nagaoka", + "scheduled_service": "no" + }, + { + "id": "344526", + "ident": "JP-2118", + "type": "heliport", + "name": "Tachikawa General Hospital Heliport", + "latitude_deg": "37.42299", + "longitude_deg": "138.85811", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Nagaoka", + "scheduled_service": "no" + }, + { + "id": "344528", + "ident": "JP-2119", + "type": "heliport", + "name": "Sumitomo Osaka Cement Nanao Station Helipad", + "latitude_deg": "37.06173", + "longitude_deg": "136.95767", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-17", + "municipality": "Nanao", + "scheduled_service": "no" + }, + { + "id": "344529", + "ident": "JP-2120", + "type": "closed", + "name": "Awazu Airfield", + "latitude_deg": "36.35451", + "longitude_deg": "136.41883", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-17", + "municipality": "Komatsu", + "scheduled_service": "no" + }, + { + "id": "344530", + "ident": "JP-2121", + "type": "closed", + "name": "Nomura Gliderfield", + "latitude_deg": "36.53799", + "longitude_deg": "136.66884", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-17", + "municipality": "Kanazawa", + "scheduled_service": "no" + }, + { + "id": "344531", + "ident": "JP-2122", + "type": "closed", + "name": "Matsunami Gyrofield", + "latitude_deg": "37.34879", + "longitude_deg": "137.24292", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-17", + "municipality": "Matsunami", + "scheduled_service": "no" + }, + { + "id": "344532", + "ident": "JP-2123", + "type": "closed", + "name": "Daishoji Gliderfield", + "latitude_deg": "36.3087", + "longitude_deg": "136.31906", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-17", + "municipality": "Kaga", + "scheduled_service": "no" + }, + { + "id": "344533", + "ident": "JP-2124", + "type": "closed", + "name": "Torahime Gliderfield", + "latitude_deg": "35.41956", + "longitude_deg": "136.26708", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Nagahama", + "scheduled_service": "no" + }, + { + "id": "344534", + "ident": "JP-2125", + "type": "closed", + "name": "Miho Seaplane Base", + "latitude_deg": "35.01828", + "longitude_deg": "138.51651", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "344535", + "ident": "JP-2126", + "type": "closed", + "name": "Shimoda Seaplane Base", + "latitude_deg": "34.67237", + "longitude_deg": "138.94991", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shimoda", + "scheduled_service": "no" + }, + { + "id": "344538", + "ident": "JP-2127", + "type": "closed", + "name": "Jikkokutoge Gliderfield", + "latitude_deg": "35.12776", + "longitude_deg": "139.04121", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Kannami", + "scheduled_service": "no" + }, + { + "id": "344539", + "ident": "JP-2128", + "type": "closed", + "name": "Atsugi Emergency Airstrip", + "latitude_deg": "35.47578", + "longitude_deg": "139.4811", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "344540", + "ident": "JP-2129", + "type": "closed", + "name": "Kunitachi Airfield", + "latitude_deg": "35.6923", + "longitude_deg": "139.44712", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Kunitachi", + "scheduled_service": "no" + }, + { + "id": "344541", + "ident": "JP-2130", + "type": "closed", + "name": "Sakura Gliderfield", + "latitude_deg": "35.72433", + "longitude_deg": "140.23662", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Sakura", + "scheduled_service": "no" + }, + { + "id": "344542", + "ident": "JP-2131", + "type": "closed", + "name": "Toriizaki Gliderfield", + "latitude_deg": "35.38143", + "longitude_deg": "139.91391", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Kisarazu", + "scheduled_service": "no" + }, + { + "id": "344545", + "ident": "JP-2132", + "type": "closed", + "name": "Takasaki Airfield", + "latitude_deg": "36.32075", + "longitude_deg": "138.99745", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Takasaki", + "scheduled_service": "no" + }, + { + "id": "344546", + "ident": "JP-2133", + "type": "heliport", + "name": "Takasaki City Hall Helipad", + "latitude_deg": "36.32209", + "longitude_deg": "139.0035", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Takasaki", + "scheduled_service": "no" + }, + { + "id": "344547", + "ident": "JP-2134", + "type": "heliport", + "name": "Gunma Prefectural Government Building Heliport", + "latitude_deg": "36.39074", + "longitude_deg": "139.06038", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Maebashi", + "scheduled_service": "no" + }, + { + "id": "344548", + "ident": "JP-2135", + "type": "heliport", + "name": "Gunma Prefectural Police Headquarters Heliport", + "latitude_deg": "36.39207", + "longitude_deg": "139.06108", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Maebashi", + "scheduled_service": "no" + }, + { + "id": "344550", + "ident": "JP-2136", + "type": "heliport", + "name": "Japan Red Cross Maebashi Hospital Heliport", + "latitude_deg": "36.35931", + "longitude_deg": "139.09476", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Maebashi", + "scheduled_service": "no" + }, + { + "id": "344551", + "ident": "JP-2137", + "type": "small_airport", + "name": "Tsukuba Gliderport", + "latitude_deg": "36.23878", + "longitude_deg": "140.06", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Chikusei", + "scheduled_service": "no" + }, + { + "id": "344552", + "ident": "JP-2138", + "type": "heliport", + "name": "Tsukuba Circuit Heliport", + "latitude_deg": "36.15183", + "longitude_deg": "139.92178", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Shimotsuma", + "scheduled_service": "no" + }, + { + "id": "344553", + "ident": "JP-2139", + "type": "heliport", + "name": "Tsukuba Heliport", + "latitude_deg": "36.11757", + "longitude_deg": "140.13118", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Tsukuba", + "scheduled_service": "no" + }, + { + "id": "344554", + "ident": "JP-2140", + "type": "heliport", + "name": "University of Tsukuba Hospital Ground Heliport", + "latitude_deg": "36.09923", + "longitude_deg": "140.10241", + "elevation_ft": "92", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Tsukuba", + "scheduled_service": "no" + }, + { + "id": "344555", + "ident": "JP-2141", + "type": "closed", + "name": "Osone Airfield", + "latitude_deg": "36.13014", + "longitude_deg": "140.08301", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Tsukuba", + "scheduled_service": "no" + }, + { + "id": "344556", + "ident": "JP-2142", + "type": "closed", + "name": "Obatake Airfield", + "latitude_deg": "36.12802", + "longitude_deg": "140.17451", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Tsuchiura", + "scheduled_service": "no" + }, + { + "id": "344557", + "ident": "JP-2143", + "type": "closed", + "name": "Kumagaya South Airfield", + "latitude_deg": "36.10891", + "longitude_deg": "139.35147", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kumagaya", + "scheduled_service": "no" + }, + { + "id": "344558", + "ident": "JP-2144", + "type": "closed", + "name": "Miizugahara Airfield", + "latitude_deg": "36.16376", + "longitude_deg": "139.30126", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kumagaya", + "scheduled_service": "no" + }, + { + "id": "344559", + "ident": "JP-2145", + "type": "heliport", + "name": "JASDF Kumagaya Air Base Heliport", + "latitude_deg": "36.16444", + "longitude_deg": "139.30774", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kumagaya", + "scheduled_service": "no" + }, + { + "id": "344561", + "ident": "JP-2146", + "type": "closed", + "name": "Nanao Seaplane Base", + "latitude_deg": "37.04952", + "longitude_deg": "136.98478", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-17", + "municipality": "Nanao", + "scheduled_service": "no" + }, + { + "id": "344562", + "ident": "JP-2147", + "type": "heliport", + "name": "Tanago Heliport", + "latitude_deg": "33.78528", + "longitude_deg": "135.89581", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Shingu", + "scheduled_service": "no" + }, + { + "id": "344563", + "ident": "JP-2148", + "type": "small_airport", + "name": "Sekijo Ultralightport", + "latitude_deg": "36.27129", + "longitude_deg": "139.9059", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Chikusei", + "scheduled_service": "no" + }, + { + "id": "344564", + "ident": "JP-2149", + "type": "heliport", + "name": "Miyai First Aid Heliport", + "latitude_deg": "33.83699", + "longitude_deg": "135.84828", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Shingu", + "scheduled_service": "no" + }, + { + "id": "344565", + "ident": "JP-2150", + "type": "heliport", + "name": "Kinan Heliport", + "latitude_deg": "33.72461", + "longitude_deg": "136.00803", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Shingu", + "scheduled_service": "no" + }, + { + "id": "344566", + "ident": "JP-2151", + "type": "closed", + "name": "Iwate Army Airfield", + "latitude_deg": "39.33335", + "longitude_deg": "141.00048", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Kitakami", + "scheduled_service": "no" + }, + { + "id": "344568", + "ident": "JP-2152", + "type": "closed", + "name": "Oyama Airfield", + "latitude_deg": "39.10353", + "longitude_deg": "141.10268", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Oshu", + "scheduled_service": "no" + }, + { + "id": "344570", + "ident": "JP-2153", + "type": "heliport", + "name": "Suruga Bank Yokohama Branch Helipad", + "latitude_deg": "35.44733", + "longitude_deg": "139.63752", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "344571", + "ident": "JP-2154", + "type": "heliport", + "name": "Kannai Central Building Helipad", + "latitude_deg": "35.44435", + "longitude_deg": "139.63692", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "344575", + "ident": "JP-2155", + "type": "heliport", + "name": "Nippon Life Hospital Heliport", + "latitude_deg": "34.68249", + "longitude_deg": "135.48427", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344576", + "ident": "JP-2156", + "type": "heliport", + "name": "Osaka General Medical Center Heliport", + "latitude_deg": "34.61665", + "longitude_deg": "135.50483", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344577", + "ident": "JP-2157", + "type": "heliport", + "name": "Kansai Medical University Ground Heliport", + "latitude_deg": "34.81757", + "longitude_deg": "135.64371", + "elevation_ft": "44", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Hirakata", + "scheduled_service": "no" + }, + { + "id": "344578", + "ident": "JP-2158", + "type": "heliport", + "name": "Kansai Medical University Rooftop Heliport", + "latitude_deg": "34.8177", + "longitude_deg": "135.64486", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Hirakata", + "scheduled_service": "no" + }, + { + "id": "344579", + "ident": "JP-2159", + "type": "closed", + "name": "Ikoma Gliderfield", + "latitude_deg": "34.68163", + "longitude_deg": "135.67926", + "elevation_ft": "1916", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-29", + "municipality": "Ikoma", + "scheduled_service": "no", + "keywords": "Ikomayama Gliderfield" + }, + { + "id": "344580", + "ident": "JP-2160", + "type": "closed", + "name": "Fukunaga Airfield", + "latitude_deg": "34.66508", + "longitude_deg": "137.79763", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Iwata", + "scheduled_service": "no" + }, + { + "id": "344581", + "ident": "JP-2161", + "type": "closed", + "name": "Matsudo Airfield", + "latitude_deg": "35.78226", + "longitude_deg": "139.96571", + "elevation_ft": "103", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Matsudo", + "scheduled_service": "no" + }, + { + "id": "344582", + "ident": "JP-2162", + "type": "closed", + "name": "Narashino West Airfield", + "latitude_deg": "35.70589", + "longitude_deg": "140.06138", + "elevation_ft": "98", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Funabashi", + "scheduled_service": "no" + }, + { + "id": "344583", + "ident": "JP-2163", + "type": "closed", + "name": "Narashino East Airfield", + "latitude_deg": "35.70571", + "longitude_deg": "140.08288", + "elevation_ft": "85", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Funabashi", + "scheduled_service": "no" + }, + { + "id": "344584", + "ident": "JP-2164", + "type": "heliport", + "name": "Funabashi Heliport", + "latitude_deg": "35.72554", + "longitude_deg": "140.00317", + "elevation_ft": "41", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Funabashi", + "scheduled_service": "no" + }, + { + "id": "344585", + "ident": "JP-2165", + "type": "closed", + "name": "Mikatahara Airfield", + "latitude_deg": "34.77544", + "longitude_deg": "137.72953", + "elevation_ft": "190", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Hamamatsu", + "scheduled_service": "no" + }, + { + "id": "344586", + "ident": "JP-2166", + "type": "closed", + "name": "Tenryu Airfield", + "latitude_deg": "34.66457", + "longitude_deg": "137.82697", + "elevation_ft": "2", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Iwata", + "scheduled_service": "no" + }, + { + "id": "344587", + "ident": "JP-2167", + "type": "closed", + "name": "Yoshioka Airfield", + "latitude_deg": "34.7962", + "longitude_deg": "137.94439", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Kakegawa", + "scheduled_service": "no" + }, + { + "id": "344588", + "ident": "JP-2168", + "type": "heliport", + "name": "Excelsior Kakegawa Helipad", + "latitude_deg": "34.76742", + "longitude_deg": "138.01498", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Kakegawa", + "scheduled_service": "no" + }, + { + "id": "344589", + "ident": "JP-2169", + "type": "heliport", + "name": "Kakegawa Inbound Parking Area Heliport", + "latitude_deg": "34.84102", + "longitude_deg": "138.04066", + "elevation_ft": "482", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Kakegawa", + "scheduled_service": "no" + }, + { + "id": "344590", + "ident": "JP-2170", + "type": "heliport", + "name": "Kakegawa Outbound Parking Area Heliport", + "latitude_deg": "34.83945", + "longitude_deg": "138.03323", + "elevation_ft": "515", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Kakegawa", + "scheduled_service": "no" + }, + { + "id": "344591", + "ident": "JP-2171", + "type": "closed", + "name": "Toyohashi Naval Airfield", + "latitude_deg": "34.71252", + "longitude_deg": "137.31934", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyohashi", + "scheduled_service": "no" + }, + { + "id": "344592", + "ident": "JP-2172", + "type": "closed", + "name": "Takashigahara Airfield", + "latitude_deg": "34.72564", + "longitude_deg": "137.39052", + "elevation_ft": "88", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyohashi", + "scheduled_service": "no" + }, + { + "id": "344593", + "ident": "JP-2173", + "type": "closed", + "name": "Bato Airfield", + "latitude_deg": "34.92393", + "longitude_deg": "137.17558", + "elevation_ft": "128", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Okazaki", + "scheduled_service": "no" + }, + { + "id": "344594", + "ident": "JP-2174", + "type": "small_airport", + "name": "Nukata Auxiliary Airfield", + "latitude_deg": "34.89433", + "longitude_deg": "137.34113", + "elevation_ft": "768", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyokawa", + "scheduled_service": "no" + }, + { + "id": "344595", + "ident": "JP-2175", + "type": "closed", + "name": "Meiji Airfield", + "latitude_deg": "34.91261", + "longitude_deg": "137.03448", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Anjo", + "scheduled_service": "no" + }, + { + "id": "344596", + "ident": "JP-2176", + "type": "closed", + "name": "Oe Airfield", + "latitude_deg": "35.08708", + "longitude_deg": "136.89229", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "344597", + "ident": "JP-2177", + "type": "closed", + "name": "Nagoya Airfield", + "latitude_deg": "35.06359", + "longitude_deg": "136.84948", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "344598", + "ident": "JP-2178", + "type": "closed", + "name": "Aichi Nagatoku Seaplane Base", + "latitude_deg": "35.07813", + "longitude_deg": "136.84889", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "344599", + "ident": "JP-2179", + "type": "closed", + "name": "Nagoya International Airfield", + "latitude_deg": "35.07502", + "longitude_deg": "136.85927", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "344600", + "ident": "JP-2180", + "type": "heliport", + "name": "Asterio Kitahorie Building Helipad", + "latitude_deg": "34.67304", + "longitude_deg": "135.49701", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344601", + "ident": "JP-2181", + "type": "heliport", + "name": "Sanctus Tower Osaka Hibiki-no-machi Helipad", + "latitude_deg": "34.6785", + "longitude_deg": "135.49454", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344602", + "ident": "JP-2182", + "type": "heliport", + "name": "Trusco Glen Check Building Helipad", + "latitude_deg": "34.67833", + "longitude_deg": "135.49374", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344603", + "ident": "JP-2183", + "type": "heliport", + "name": "Geo Shinmachi Helipad", + "latitude_deg": "34.6781", + "longitude_deg": "135.49021", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344604", + "ident": "JP-2184", + "type": "heliport", + "name": "Sanmaison Shinsaibashi Celebrite Helipad", + "latitude_deg": "34.67407", + "longitude_deg": "135.49898", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344605", + "ident": "JP-2185", + "type": "heliport", + "name": "Laurel Tower Shinsaibashi Helipad", + "latitude_deg": "34.67461", + "longitude_deg": "135.4987", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344606", + "ident": "JP-2186", + "type": "heliport", + "name": "Shinsaibashi Opa Helipad", + "latitude_deg": "34.67337", + "longitude_deg": "135.49985", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344607", + "ident": "JP-2187", + "type": "heliport", + "name": "Elsa Grace Horie Riverfront Stage Helipad", + "latitude_deg": "34.66998", + "longitude_deg": "135.49299", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "344609", + "ident": "JP-2188", + "type": "heliport", + "name": "Proud Tower Kobe Kenchomae Helipad", + "latitude_deg": "34.69139", + "longitude_deg": "135.18539", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344610", + "ident": "JP-2189", + "type": "heliport", + "name": "Banchu Shinkin Bank Sannomiya Branch Helipad", + "latitude_deg": "34.69079", + "longitude_deg": "135.19411", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344611", + "ident": "JP-2190", + "type": "heliport", + "name": "Sannomiya Central Building Helipad", + "latitude_deg": "34.69088", + "longitude_deg": "135.19432", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344612", + "ident": "JP-2191", + "type": "heliport", + "name": "Kobe Municipal Fire Department Heliport", + "latitude_deg": "34.68974", + "longitude_deg": "135.19454", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344613", + "ident": "JP-2192", + "type": "heliport", + "name": "Higashimachi-Edomachi Building Helipad", + "latitude_deg": "34.68935", + "longitude_deg": "135.19459", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344614", + "ident": "JP-2193", + "type": "heliport", + "name": "Meiji Yasuda Life Kobe Building Helipad", + "latitude_deg": "34.69101", + "longitude_deg": "135.19595", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344615", + "ident": "JP-2194", + "type": "heliport", + "name": "Clefy Sannomiya Helipad", + "latitude_deg": "34.69107", + "longitude_deg": "135.19304", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344616", + "ident": "JP-2195", + "type": "heliport", + "name": "Mint Kobe Helipad", + "latitude_deg": "34.69449", + "longitude_deg": "135.19611", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344617", + "ident": "JP-2196", + "type": "heliport", + "name": "Central Fire Station Heliport", + "latitude_deg": "34.69556", + "longitude_deg": "135.20105", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344618", + "ident": "JP-2197", + "type": "heliport", + "name": "El Grace Kobe Sannomiya Tower Stage Helipad", + "latitude_deg": "34.69266", + "longitude_deg": "135.20146", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344619", + "ident": "JP-2198", + "type": "heliport", + "name": "Wakohre Kobe Nada Tower Helipad", + "latitude_deg": "34.70597", + "longitude_deg": "135.21511", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344620", + "ident": "JP-2199", + "type": "heliport", + "name": "Nissay Sannomiya Building Helipad", + "latitude_deg": "34.69509", + "longitude_deg": "135.19355", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "344621", + "ident": "JP-2200", + "type": "closed", + "name": "Imaichi Airfield", + "latitude_deg": "36.73973", + "longitude_deg": "139.77535", + "elevation_ft": "922", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Nikko", + "scheduled_service": "no" + }, + { + "id": "344622", + "ident": "JP-2201", + "type": "closed", + "name": "Kiyohara Airfield", + "latitude_deg": "36.54531", + "longitude_deg": "139.9832", + "elevation_ft": "420", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Utsunomiya", + "scheduled_service": "no" + }, + { + "id": "344623", + "ident": "JP-2202", + "type": "closed", + "name": "Onohara Airfield", + "latitude_deg": "36.47598", + "longitude_deg": "139.99099", + "elevation_ft": "310", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Mooka", + "scheduled_service": "no" + }, + { + "id": "344624", + "ident": "JP-2203", + "type": "closed", + "name": "Mibu Airfield", + "latitude_deg": "36.46194", + "longitude_deg": "139.83763", + "elevation_ft": "249", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Mibu", + "scheduled_service": "no" + }, + { + "id": "344692", + "ident": "JP-2204", + "type": "closed", + "name": "Mitakegahara Training Airfield", + "latitude_deg": "39.73879", + "longitude_deg": "141.12231", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Morioka", + "scheduled_service": "no" + }, + { + "id": "344693", + "ident": "JP-2205", + "type": "closed", + "name": "Oshuku Gliderfield", + "latitude_deg": "39.64261", + "longitude_deg": "140.94099", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Shizukuishi", + "scheduled_service": "no" + }, + { + "id": "344694", + "ident": "JP-2206", + "type": "heliport", + "name": "NHO Nanbucho Medical Center Heliport", + "latitude_deg": "40.428", + "longitude_deg": "141.33307", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Nanbu", + "scheduled_service": "no" + }, + { + "id": "344695", + "ident": "JP-2207", + "type": "heliport", + "name": "JGSDF Camp Moriyama Heliport", + "latitude_deg": "35.19812", + "longitude_deg": "136.95864", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "344706", + "ident": "JP-2208", + "type": "heliport", + "name": "JGSDF Camp Asaka Heliport", + "latitude_deg": "35.77931", + "longitude_deg": "139.59008", + "elevation_ft": "131", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Niiza", + "scheduled_service": "no" + }, + { + "id": "344707", + "ident": "JP-2209", + "type": "heliport", + "name": "JGSDF Camp Akita Heliport", + "latitude_deg": "39.76333", + "longitude_deg": "140.08458", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Akita", + "scheduled_service": "no" + }, + { + "id": "344708", + "ident": "JP-2210", + "type": "heliport", + "name": "JGSDF Camp Amami Heliport", + "latitude_deg": "28.4134", + "longitude_deg": "129.52466", + "elevation_ft": "607", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Amami", + "scheduled_service": "no" + }, + { + "id": "344709", + "ident": "JP-2211", + "type": "heliport", + "name": "JGSDF Camp Funaoka Heliport", + "latitude_deg": "38.04517", + "longitude_deg": "140.77279", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Shibata", + "scheduled_service": "no" + }, + { + "id": "344710", + "ident": "JP-2212", + "type": "closed", + "name": "Hisai Airfield", + "latitude_deg": "34.6718", + "longitude_deg": "136.47928", + "elevation_ft": "66", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Tsu", + "scheduled_service": "no" + }, + { + "id": "344711", + "ident": "JP-2213", + "type": "heliport", + "name": "JGSDF Camp Iizuka Heliport", + "latitude_deg": "33.67964", + "longitude_deg": "130.67619", + "elevation_ft": "98", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Iizuka", + "scheduled_service": "no" + }, + { + "id": "344713", + "ident": "JP-2214", + "type": "heliport", + "name": "JGSDF Camp Jinmachi Heliport", + "latitude_deg": "38.40263", + "longitude_deg": "140.39641", + "elevation_ft": "436", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Higashine", + "scheduled_service": "no" + }, + { + "id": "344715", + "ident": "JP-2215", + "type": "heliport", + "name": "JGSDF Camp Jujo Heliport", + "latitude_deg": "35.75544", + "longitude_deg": "139.72765", + "elevation_ft": "62", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Kita, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344716", + "ident": "JP-2216", + "type": "heliport", + "name": "JGSDF Camp Kamifurano Heliport", + "latitude_deg": "43.44774", + "longitude_deg": "142.4706", + "elevation_ft": "699", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Kamifurano", + "scheduled_service": "no" + }, + { + "id": "344717", + "ident": "JP-2217", + "type": "heliport", + "name": "Japan Red Cross Mito Hospital Heliport", + "latitude_deg": "36.37119", + "longitude_deg": "140.48704", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Mito", + "scheduled_service": "no" + }, + { + "id": "344718", + "ident": "JP-2218", + "type": "closed", + "name": "Hasegawa Airfield", + "latitude_deg": "36.20602", + "longitude_deg": "137.95135", + "elevation_ft": "1978", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Matsumoto", + "scheduled_service": "no" + }, + { + "id": "344719", + "ident": "JP-2219", + "type": "heliport", + "name": "JGSDF Camp Matsumoto Heliport", + "latitude_deg": "36.207", + "longitude_deg": "137.9522", + "elevation_ft": "1975", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Matsumoto", + "scheduled_service": "no" + }, + { + "id": "344720", + "ident": "JP-2220", + "type": "heliport", + "name": "Self Defense Forces Central Hospital Heliport", + "latitude_deg": "35.64514", + "longitude_deg": "139.68467", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Setagaya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344755", + "ident": "JP-2221", + "type": "heliport", + "name": "Nonaka Heliport", + "latitude_deg": "35.06488", + "longitude_deg": "135.22237", + "elevation_ft": "669", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Tanba-Sasayama", + "scheduled_service": "no" + }, + { + "id": "344756", + "ident": "JP-2222", + "type": "heliport", + "name": "Hyogo College of Medicine Sasayama Medical Center Helipad", + "latitude_deg": "35.0808", + "longitude_deg": "135.21629", + "elevation_ft": "705", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Tanba-Sasayama", + "scheduled_service": "no" + }, + { + "id": "344757", + "ident": "JP-2223", + "type": "heliport", + "name": "Okazaki Service Area Heliport", + "latitude_deg": "35.02969", + "longitude_deg": "137.22033", + "elevation_ft": "398", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Okazaki", + "scheduled_service": "no" + }, + { + "id": "344758", + "ident": "JP-2224", + "type": "heliport", + "name": "Maedacho Heliport", + "latitude_deg": "35.06028", + "longitude_deg": "137.1613", + "elevation_ft": "144", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyota", + "scheduled_service": "no" + }, + { + "id": "344759", + "ident": "JP-2225", + "type": "heliport", + "name": "Toyota City Fire Department Heliport", + "latitude_deg": "35.06919", + "longitude_deg": "137.16817", + "elevation_ft": "115", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyota", + "scheduled_service": "no" + }, + { + "id": "344760", + "ident": "JP-2226", + "type": "heliport", + "name": "Hotel Toyota Castle Helipad", + "latitude_deg": "35.08626", + "longitude_deg": "137.15809", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyota", + "scheduled_service": "no" + }, + { + "id": "344761", + "ident": "JP-2227", + "type": "closed", + "name": "Sayama Airfield", + "latitude_deg": "35.80883", + "longitude_deg": "139.36399", + "elevation_ft": "159", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Iruma", + "scheduled_service": "no" + }, + { + "id": "344762", + "ident": "JP-2228", + "type": "heliport", + "name": "Misawa Heliport", + "latitude_deg": "35.84614", + "longitude_deg": "139.48605", + "elevation_ft": "148", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Fujimino", + "scheduled_service": "no" + }, + { + "id": "344765", + "ident": "JP-2229", + "type": "heliport", + "name": "Suwatani Heliport", + "latitude_deg": "34.76724", + "longitude_deg": "133.68462", + "elevation_ft": "833", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Kibichuo", + "scheduled_service": "no" + }, + { + "id": "344766", + "ident": "JP-2230", + "type": "heliport", + "name": "Ieshima Heliport", + "latitude_deg": "34.67697", + "longitude_deg": "134.51232", + "elevation_ft": "207", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Himeji", + "scheduled_service": "no" + }, + { + "id": "344767", + "ident": "JP-2231", + "type": "heliport", + "name": "Bozejima Heliport", + "latitude_deg": "34.64919", + "longitude_deg": "134.51549", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Himeji", + "scheduled_service": "no" + }, + { + "id": "344768", + "ident": "JP-2232", + "type": "heliport", + "name": "Osakikamijima Heliport", + "latitude_deg": "34.27072", + "longitude_deg": "132.91599", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Osakikamijima", + "scheduled_service": "no" + }, + { + "id": "344769", + "ident": "JP-2233", + "type": "heliport", + "name": "Okamurajima Heliport", + "latitude_deg": "34.17878", + "longitude_deg": "132.88158", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Imabari", + "scheduled_service": "no" + }, + { + "id": "344770", + "ident": "JP-2234", + "type": "heliport", + "name": "Ogakicho Heliport", + "latitude_deg": "34.17005", + "longitude_deg": "132.4814", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Etajima", + "scheduled_service": "no" + }, + { + "id": "344771", + "ident": "JP-2235", + "type": "heliport", + "name": "Yamabe Heliport", + "latitude_deg": "35.01047", + "longitude_deg": "135.37496", + "elevation_ft": "1470", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Nose", + "scheduled_service": "no" + }, + { + "id": "344772", + "ident": "JP-2236", + "type": "heliport", + "name": "Kawaji Helipad", + "latitude_deg": "34.91048", + "longitude_deg": "137.52763", + "elevation_ft": "198", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Shinshiro", + "scheduled_service": "no" + }, + { + "id": "344773", + "ident": "JP-2237", + "type": "heliport", + "name": "Takano Heliport", + "latitude_deg": "35.0319", + "longitude_deg": "132.9065", + "elevation_ft": "1778", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Shobara", + "scheduled_service": "no" + }, + { + "id": "344775", + "ident": "JP-2238", + "type": "closed", + "name": "Tangajima Airstrip", + "latitude_deg": "34.6736", + "longitude_deg": "134.57269", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Himeji", + "scheduled_service": "no" + }, + { + "id": "344776", + "ident": "JP-2239", + "type": "heliport", + "name": "Nishijima Helipad", + "latitude_deg": "34.66723", + "longitude_deg": "134.49428", + "elevation_ft": "37", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Himeji", + "scheduled_service": "no" + }, + { + "id": "344793", + "ident": "JP-2240", + "type": "closed", + "name": "Toyonari Airfield", + "latitude_deg": "35.57392", + "longitude_deg": "140.41834", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Togane", + "scheduled_service": "no" + }, + { + "id": "344794", + "ident": "JP-2241", + "type": "heliport", + "name": "Chiba Prefectural Police Academy Heliport", + "latitude_deg": "35.57543", + "longitude_deg": "140.41291", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Togane", + "scheduled_service": "no" + }, + { + "id": "344795", + "ident": "JP-2242", + "type": "closed", + "name": "Yokoshiba Airfield", + "latitude_deg": "35.64219", + "longitude_deg": "140.50235", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Yokoshibahikari", + "scheduled_service": "no" + }, + { + "id": "344796", + "ident": "JP-2243", + "type": "closed", + "name": "Itazuma Airfield", + "latitude_deg": "35.29096", + "longitude_deg": "138.87993", + "elevation_ft": "1854", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Gotenba", + "scheduled_service": "no" + }, + { + "id": "344797", + "ident": "JP-2244", + "type": "closed", + "name": "Sakai Ohama Airfield", + "latitude_deg": "34.57434", + "longitude_deg": "135.42935", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Sakai", + "scheduled_service": "no" + }, + { + "id": "344798", + "ident": "JP-2245", + "type": "closed", + "name": "Koromogahara Airfield", + "latitude_deg": "35.06912", + "longitude_deg": "137.12938", + "elevation_ft": "210", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyota", + "scheduled_service": "no" + }, + { + "id": "344799", + "ident": "JP-2246", + "type": "closed", + "name": "Nagoya Air Base", + "latitude_deg": "35.12384", + "longitude_deg": "137.13798", + "elevation_ft": "299", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyota", + "scheduled_service": "no" + }, + { + "id": "344800", + "ident": "JP-2247", + "type": "closed", + "name": "Kowa Seaplane Base", + "latitude_deg": "34.76202", + "longitude_deg": "136.92767", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Mihama", + "scheduled_service": "no" + }, + { + "id": "344801", + "ident": "JP-2248", + "type": "closed", + "name": "Chita Flying Club Airstrip", + "latitude_deg": "34.93454", + "longitude_deg": "136.89471", + "elevation_ft": "123", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Agui", + "scheduled_service": "no" + }, + { + "id": "344837", + "ident": "JP-2249", + "type": "closed", + "name": "Nakanodai Airfield", + "latitude_deg": "35.98077", + "longitude_deg": "139.85093", + "elevation_ft": "55", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Noda", + "scheduled_service": "no" + }, + { + "id": "344845", + "ident": "JP-2250", + "type": "closed", + "name": "Koga Airfield", + "latitude_deg": "36.19998", + "longitude_deg": "139.7551", + "elevation_ft": "109", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Koga", + "scheduled_service": "no" + }, + { + "id": "344855", + "ident": "JP-2251", + "type": "heliport", + "name": "Kazuma Heliport", + "latitude_deg": "35.71772", + "longitude_deg": "139.07126", + "elevation_ft": "1903", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Hinohara", + "scheduled_service": "no" + }, + { + "id": "344856", + "ident": "JP-2252", + "type": "heliport", + "name": "Kobu Tunnel Heliport", + "latitude_deg": "35.69599", + "longitude_deg": "139.10326", + "elevation_ft": "2028", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Hinohara", + "scheduled_service": "no" + }, + { + "id": "344857", + "ident": "JP-2253", + "type": "heliport", + "name": "Kurakake Heliport", + "latitude_deg": "35.74206", + "longitude_deg": "139.06703", + "elevation_ft": "2710", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Hinohara", + "scheduled_service": "no" + }, + { + "id": "344858", + "ident": "JP-2254", + "type": "small_airport", + "name": "Shirosato Auxiliary Airfield", + "latitude_deg": "36.53145", + "longitude_deg": "140.35816", + "elevation_ft": "70", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Shirosato", + "scheduled_service": "no" + }, + { + "id": "344891", + "ident": "JP-2255", + "type": "heliport", + "name": "Brillia 1st Tower Helipad", + "latitude_deg": "35.66075", + "longitude_deg": "139.77694", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344892", + "ident": "JP-2256", + "type": "heliport", + "name": "Kachidoki View Tower Helipad", + "latitude_deg": "35.65965", + "longitude_deg": "139.77669", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344893", + "ident": "JP-2257", + "type": "heliport", + "name": "Plaza Tower Kachidoki Helipad", + "latitude_deg": "35.66042", + "longitude_deg": "139.77534", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344894", + "ident": "JP-2258", + "type": "heliport", + "name": "Sun City Ginza East Helipad", + "latitude_deg": "35.66143", + "longitude_deg": "139.77896", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344895", + "ident": "JP-2259", + "type": "heliport", + "name": "Capital Gate Place Tower Helipad", + "latitude_deg": "35.66425", + "longitude_deg": "139.78383", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344896", + "ident": "JP-2260", + "type": "heliport", + "name": "I-Mark Tower Helipad", + "latitude_deg": "35.66439", + "longitude_deg": "139.78326", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344897", + "ident": "JP-2261", + "type": "heliport", + "name": "Park Axis Aoyama 1-Chome Tower Helipad", + "latitude_deg": "35.67166", + "longitude_deg": "139.72539", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344898", + "ident": "JP-2262", + "type": "heliport", + "name": "Teikoku Databank Head Office Building Helipad", + "latitude_deg": "35.67202", + "longitude_deg": "139.72316", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344899", + "ident": "JP-2263", + "type": "heliport", + "name": "Jikei University School of Medicine Heliport", + "latitude_deg": "35.66383", + "longitude_deg": "139.75159", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344900", + "ident": "JP-2264", + "type": "heliport", + "name": "Motoazabu Hills Forest Tower Helipad", + "latitude_deg": "35.65366", + "longitude_deg": "139.73212", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344905", + "ident": "JP-2265", + "type": "heliport", + "name": "Sumitomo Real Estate Nishi-Shinjuku Building Helipad", + "latitude_deg": "35.69434", + "longitude_deg": "139.69557", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344906", + "ident": "JP-2266", + "type": "heliport", + "name": "Tokyo Metropolitan Bokuto Hospital Heliport", + "latitude_deg": "35.6946", + "longitude_deg": "139.8192", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Sumida, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344907", + "ident": "JP-2267", + "type": "heliport", + "name": "Laurel Court Shinjuku Tower Helipad", + "latitude_deg": "35.69216", + "longitude_deg": "139.71511", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344908", + "ident": "JP-2268", + "type": "heliport", + "name": "Tokyo Metropolitan Hiroo Hospital Heliport", + "latitude_deg": "35.64658", + "longitude_deg": "139.72202", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344910", + "ident": "JP-2269", + "type": "heliport", + "name": "Marui Group Helipad", + "latitude_deg": "35.70953", + "longitude_deg": "139.66445", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Nakano, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344911", + "ident": "JP-2270", + "type": "heliport", + "name": "Tokyo Metropolitan Police Hospital Heliport", + "latitude_deg": "35.70908", + "longitude_deg": "139.65911", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Nakano, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344913", + "ident": "JP-2271", + "type": "heliport", + "name": "Rise City Ikebukuro Helipad", + "latitude_deg": "35.72639", + "longitude_deg": "139.71894", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Toshima, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344915", + "ident": "JP-2272", + "type": "heliport", + "name": "Brillia Tower Ikebukuro Helipad", + "latitude_deg": "35.72604", + "longitude_deg": "139.71667", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Toshima, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344916", + "ident": "JP-2273", + "type": "heliport", + "name": "Keidanren Kaikan Helipad", + "latitude_deg": "35.68873", + "longitude_deg": "139.76369", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344917", + "ident": "JP-2274", + "type": "heliport", + "name": "Park City Chuo Minato Tower Helipad", + "latitude_deg": "35.67113", + "longitude_deg": "139.78068", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344918", + "ident": "JP-2275", + "type": "heliport", + "name": "Lieto Court Arx Tower Helipad", + "latitude_deg": "35.67051", + "longitude_deg": "139.77894", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344919", + "ident": "JP-2276", + "type": "heliport", + "name": "Daiwa River Gate Helipad", + "latitude_deg": "35.68045", + "longitude_deg": "139.78862", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "344935", + "ident": "JP-2277", + "type": "heliport", + "name": "Kunugi Heliport", + "latitude_deg": "35.9308", + "longitude_deg": "140.09889", + "elevation_ft": "38", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Toride", + "scheduled_service": "no" + }, + { + "id": "345019", + "ident": "JP-2278", + "type": "closed", + "name": "Kodama Airfield", + "latitude_deg": "36.21856", + "longitude_deg": "139.13222", + "elevation_ft": "292", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Honjo", + "scheduled_service": "no" + }, + { + "id": "345020", + "ident": "JP-2279", + "type": "heliport", + "name": "Ota Memorial Hospital Heliport", + "latitude_deg": "36.29867", + "longitude_deg": "139.36089", + "elevation_ft": "151", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Ota", + "scheduled_service": "no" + }, + { + "id": "345021", + "ident": "JP-2280", + "type": "heliport", + "name": "Otomi Heliport", + "latitude_deg": "35.53606", + "longitude_deg": "135.51329", + "elevation_ft": "65", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Takahama", + "scheduled_service": "no" + }, + { + "id": "345022", + "ident": "JP-2281", + "type": "heliport", + "name": "Kimino Heliport", + "latitude_deg": "34.15183", + "longitude_deg": "135.35428", + "elevation_ft": "483", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Kimino", + "scheduled_service": "no" + }, + { + "id": "345023", + "ident": "JP-2282", + "type": "heliport", + "name": "Koya Heliport", + "latitude_deg": "34.19767", + "longitude_deg": "135.56421", + "elevation_ft": "2556", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Koya", + "scheduled_service": "no" + }, + { + "id": "345024", + "ident": "JP-2283", + "type": "heliport", + "name": "Ibukijima Heliport", + "latitude_deg": "34.13073", + "longitude_deg": "133.53119", + "elevation_ft": "302", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Kanonji", + "scheduled_service": "no" + }, + { + "id": "345044", + "ident": "JP-2284", + "type": "heliport", + "name": "Nishi-Heigun Heliport", + "latitude_deg": "33.80178", + "longitude_deg": "132.19963", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Yanai", + "scheduled_service": "no" + }, + { + "id": "345045", + "ident": "JP-2285", + "type": "heliport", + "name": "Heigun Heliport", + "latitude_deg": "33.7789", + "longitude_deg": "132.26159", + "elevation_ft": "2", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Yanai", + "scheduled_service": "no" + }, + { + "id": "345046", + "ident": "JP-2286", + "type": "small_airport", + "name": "Tachibana Wind Park", + "latitude_deg": "33.89122", + "longitude_deg": "132.27028", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Suooshima", + "scheduled_service": "no" + }, + { + "id": "345048", + "ident": "JP-2287", + "type": "heliport", + "name": "Ibaraki Prefectural Central Hospital Heliport", + "latitude_deg": "36.35098", + "longitude_deg": "140.32073", + "elevation_ft": "163", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Kasama", + "scheduled_service": "no" + }, + { + "id": "345139", + "ident": "JP-2288", + "type": "heliport", + "name": "Gajajima Heliport", + "latitude_deg": "29.91158", + "longitude_deg": "129.53196", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Toshima", + "scheduled_service": "no" + }, + { + "id": "345140", + "ident": "JP-2289", + "type": "closed", + "name": "Former Tanegashima Airport", + "latitude_deg": "30.54531", + "longitude_deg": "130.95118", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Nakatane", + "scheduled_service": "no", + "keywords": "RJFG" + }, + { + "id": "345176", + "ident": "JP-2290", + "type": "heliport", + "name": "Maesawa Heliport", + "latitude_deg": "39.06772", + "longitude_deg": "141.09938", + "elevation_ft": "371", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Oshu", + "scheduled_service": "no" + }, + { + "id": "345177", + "ident": "JP-2291", + "type": "heliport", + "name": "Kitakami Heliport", + "latitude_deg": "39.20665", + "longitude_deg": "141.07646", + "elevation_ft": "349", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Kanegasaki", + "scheduled_service": "no" + }, + { + "id": "345178", + "ident": "JP-2292", + "type": "heliport", + "name": "Morioka Heliport", + "latitude_deg": "39.65827", + "longitude_deg": "141.17034", + "elevation_ft": "381", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Morioka", + "scheduled_service": "no" + }, + { + "id": "345191", + "ident": "JP-2293", + "type": "heliport", + "name": "Shijushida Dam Helipad", + "latitude_deg": "39.754341", + "longitude_deg": "141.14617", + "elevation_ft": "600", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Morioka", + "scheduled_service": "no" + }, + { + "id": "345192", + "ident": "JP-2294", + "type": "heliport", + "name": "Gosho Dam Heliport", + "latitude_deg": "39.69186", + "longitude_deg": "141.02587", + "elevation_ft": "633", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Morioka", + "scheduled_service": "no" + }, + { + "id": "345193", + "ident": "JP-2295", + "type": "heliport", + "name": "Yoshima Heliport", + "latitude_deg": "34.39432", + "longitude_deg": "133.81964", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Sakaide", + "scheduled_service": "no" + }, + { + "id": "345194", + "ident": "JP-2296", + "type": "heliport", + "name": "Honjima Heliport", + "latitude_deg": "34.37748", + "longitude_deg": "133.77573", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Marugame", + "scheduled_service": "no" + }, + { + "id": "345195", + "ident": "JP-2297", + "type": "heliport", + "name": "Sanuki-Hiroshima Heliport", + "latitude_deg": "34.36937", + "longitude_deg": "133.6898", + "elevation_ft": "5", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Marugame", + "scheduled_service": "no" + }, + { + "id": "345196", + "ident": "JP-2298", + "type": "heliport", + "name": "Kaisei Hospital Heliport", + "latitude_deg": "34.31784", + "longitude_deg": "133.86136", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Sakaide", + "scheduled_service": "no" + }, + { + "id": "345197", + "ident": "JP-2299", + "type": "heliport", + "name": "Shikoku Medical Center Heliport", + "latitude_deg": "34.22947", + "longitude_deg": "133.77162", + "elevation_ft": "95", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Zentsuji", + "scheduled_service": "no" + }, + { + "id": "345198", + "ident": "JP-2300", + "type": "heliport", + "name": "Kumamoto Senior Hospital", + "latitude_deg": "32.51791", + "longitude_deg": "130.62585", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-43", + "municipality": "Yatsushiro", + "scheduled_service": "no" + }, + { + "id": "345199", + "ident": "JP-2301", + "type": "heliport", + "name": "JCHO Kumamoto General Hospital", + "latitude_deg": "32.50712", + "longitude_deg": "130.60306", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-43", + "municipality": "Yatsushiro", + "scheduled_service": "no" + }, + { + "id": "345200", + "ident": "JP-2302", + "type": "closed", + "name": "Tomitaka Airfield", + "latitude_deg": "32.40748", + "longitude_deg": "131.63354", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-45", + "municipality": "Hyuga", + "scheduled_service": "no" + }, + { + "id": "345201", + "ident": "JP-2303", + "type": "heliport", + "name": "NHI Saigo Hospital Heliport", + "latitude_deg": "32.44001", + "longitude_deg": "131.42198", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-45", + "municipality": "Saigo", + "scheduled_service": "no" + }, + { + "id": "345202", + "ident": "JP-2304", + "type": "heliport", + "name": "Kawaminami Hospital Heliport", + "latitude_deg": "32.21717", + "longitude_deg": "131.51707", + "elevation_ft": "259", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-45", + "municipality": "Kawaminami", + "scheduled_service": "no" + }, + { + "id": "345696", + "ident": "JP-2305", + "type": "heliport", + "name": "Hodono Helipad", + "latitude_deg": "35.45825", + "longitude_deg": "138.01182", + "elevation_ft": "4656", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Iida", + "scheduled_service": "no" + }, + { + "id": "345697", + "ident": "JP-2306", + "type": "heliport", + "name": "Yaegouchi Heliport", + "latitude_deg": "35.31644", + "longitude_deg": "137.92359", + "elevation_ft": "1276", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Iida", + "scheduled_service": "no" + }, + { + "id": "345698", + "ident": "JP-2307", + "type": "heliport", + "name": "Tenryu Heliport", + "latitude_deg": "35.27669", + "longitude_deg": "137.85077", + "elevation_ft": "904", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Tenryu", + "scheduled_service": "no" + }, + { + "id": "345699", + "ident": "JP-2308", + "type": "heliport", + "name": "Sakuma Lake Helipad", + "latitude_deg": "35.18014", + "longitude_deg": "137.80266", + "elevation_ft": "951", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyone", + "scheduled_service": "no" + }, + { + "id": "345700", + "ident": "JP-2309", + "type": "heliport", + "name": "Tsugu Heliport", + "latitude_deg": "35.17171", + "longitude_deg": "137.61975", + "elevation_ft": "2274", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Shitara", + "scheduled_service": "no" + }, + { + "id": "345703", + "ident": "JP-2310", + "type": "heliport", + "name": "Mishima Heliport", + "latitude_deg": "35.12286", + "longitude_deg": "138.94456", + "elevation_ft": "259", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Mishima", + "scheduled_service": "no" + }, + { + "id": "345731", + "ident": "JP-2311", + "type": "heliport", + "name": "Nakaisaido Heliport", + "latitude_deg": "35.34205", + "longitude_deg": "139.22317", + "elevation_ft": "246", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Nakai", + "scheduled_service": "no" + }, + { + "id": "345796", + "ident": "JP-2312", + "type": "heliport", + "name": "Daikeien Heliport", + "latitude_deg": "35.76281", + "longitude_deg": "139.96881", + "elevation_ft": "102", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Ichikawa", + "scheduled_service": "no" + }, + { + "id": "345846", + "ident": "JP-2313", + "type": "heliport", + "name": "Moriya Service Area Heliport", + "latitude_deg": "35.9383", + "longitude_deg": "139.96879", + "elevation_ft": "39", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Moriya", + "scheduled_service": "no" + }, + { + "id": "345880", + "ident": "JP-2314", + "type": "small_airport", + "name": "Hikone Kojinyama Hangglider Park", + "latitude_deg": "35.23572", + "longitude_deg": "136.19201", + "elevation_ft": "289", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Hikone", + "scheduled_service": "no" + }, + { + "id": "345956", + "ident": "JP-2315", + "type": "heliport", + "name": "Hattabara Dam Heliport", + "latitude_deg": "34.60555", + "longitude_deg": "133.13488", + "elevation_ft": "830", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Sera", + "scheduled_service": "no" + }, + { + "id": "345957", + "ident": "JP-2316", + "type": "heliport", + "name": "Secom HD Center Nabari Heliport", + "latitude_deg": "34.60648", + "longitude_deg": "136.09127", + "elevation_ft": "738", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Nabari", + "scheduled_service": "no" + }, + { + "id": "345958", + "ident": "JP-2317", + "type": "heliport", + "name": "Nabari Municipal Hospital Heliport", + "latitude_deg": "34.60904", + "longitude_deg": "136.09673", + "elevation_ft": "846", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Nabari", + "scheduled_service": "no" + }, + { + "id": "345959", + "ident": "JP-2318", + "type": "closed", + "name": "Iga Airfield", + "latitude_deg": "34.76006", + "longitude_deg": "136.14661", + "elevation_ft": "540", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Iga", + "scheduled_service": "no" + }, + { + "id": "345960", + "ident": "JP-2319", + "type": "heliport", + "name": "Araki Heliport", + "latitude_deg": "34.75983", + "longitude_deg": "136.16478", + "elevation_ft": "593", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Iga", + "scheduled_service": "no" + }, + { + "id": "345961", + "ident": "JP-2320", + "type": "heliport", + "name": "Ueno General Hospital Heliport", + "latitude_deg": "34.74657", + "longitude_deg": "136.1319", + "elevation_ft": "561", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Iga", + "scheduled_service": "no" + }, + { + "id": "345962", + "ident": "JP-2321", + "type": "heliport", + "name": "Niimi Chiya Heliport", + "latitude_deg": "35.06507", + "longitude_deg": "133.46323", + "elevation_ft": "1300", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Niimi", + "scheduled_service": "no" + }, + { + "id": "345963", + "ident": "JP-2322", + "type": "heliport", + "name": "Takahashi Central Hospital Heliport", + "latitude_deg": "34.78746", + "longitude_deg": "133.61235", + "elevation_ft": "292", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Takahashi", + "scheduled_service": "no" + }, + { + "id": "345964", + "ident": "JP-2323", + "type": "heliport", + "name": "Shinnihon Helicopter Numata Heliport", + "latitude_deg": "36.66042", + "longitude_deg": "139.09255", + "elevation_ft": "1582", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Numata", + "scheduled_service": "no" + }, + { + "id": "345965", + "ident": "JP-2324", + "type": "heliport", + "name": "Sonohara Dam Heliport", + "latitude_deg": "36.6423", + "longitude_deg": "139.17787", + "elevation_ft": "2048", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Numata", + "scheduled_service": "no" + }, + { + "id": "345966", + "ident": "JP-2325", + "type": "heliport", + "name": "Numatagawa Heliport", + "latitude_deg": "34.39348", + "longitude_deg": "133.04941", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Mihara", + "scheduled_service": "no" + }, + { + "id": "345969", + "ident": "JP-2326", + "type": "heliport", + "name": "Enshu-Morimachi Inbound Parking Area Heliport", + "latitude_deg": "34.82672", + "longitude_deg": "137.90453", + "elevation_ft": "230", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Mori", + "scheduled_service": "no" + }, + { + "id": "345970", + "ident": "JP-2327", + "type": "heliport", + "name": "Enshu-Morimachi Outbound Parking Area Heliport", + "latitude_deg": "34.82404", + "longitude_deg": "137.90697", + "elevation_ft": "203", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Mori", + "scheduled_service": "no" + }, + { + "id": "345971", + "ident": "JP-2328", + "type": "heliport", + "name": "Iwata General Hospital Heliport", + "latitude_deg": "34.7676", + "longitude_deg": "137.85568", + "elevation_ft": "240", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Iwata", + "scheduled_service": "no" + }, + { + "id": "345975", + "ident": "JP-2329", + "type": "heliport", + "name": "Naramata Dam Heliport", + "latitude_deg": "36.88262", + "longitude_deg": "139.08677", + "elevation_ft": "3054", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Minakami", + "scheduled_service": "no" + }, + { + "id": "345976", + "ident": "JP-2330", + "type": "heliport", + "name": "Minakami Heliport", + "latitude_deg": "36.74448", + "longitude_deg": "138.94642", + "elevation_ft": "2507", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Minakami", + "scheduled_service": "no" + }, + { + "id": "345977", + "ident": "JP-2331", + "type": "heliport", + "name": "Tsukiyono Heliport", + "latitude_deg": "36.67854", + "longitude_deg": "138.99045", + "elevation_ft": "1211", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Minakami", + "scheduled_service": "no" + }, + { + "id": "345978", + "ident": "JP-2332", + "type": "heliport", + "name": "Nishi-Agatsuma Welfare Hospital Heliport", + "latitude_deg": "36.55705", + "longitude_deg": "138.60654", + "elevation_ft": "2539", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Naganohara", + "scheduled_service": "no" + }, + { + "id": "346022", + "ident": "JP-2333", + "type": "heliport", + "name": "JASDF Kasatoriyama Sub Base Heliport", + "latitude_deg": "34.72195", + "longitude_deg": "136.30317", + "elevation_ft": "2635", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Tsu", + "scheduled_service": "no" + }, + { + "id": "346029", + "ident": "JP-2334", + "type": "heliport", + "name": "Roadside Station Doshi Heliport", + "latitude_deg": "35.50378", + "longitude_deg": "138.98962", + "elevation_ft": "2306", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Doshi", + "scheduled_service": "no" + }, + { + "id": "346051", + "ident": "JP-2335", + "type": "heliport", + "name": "Hayakawa Heliport", + "latitude_deg": "35.48613", + "longitude_deg": "138.31605", + "elevation_ft": "2028", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Hayakawa", + "scheduled_service": "no" + }, + { + "id": "346052", + "ident": "JP-2336", + "type": "heliport", + "name": "Nishiyama Onsen Heliport", + "latitude_deg": "35.53702", + "longitude_deg": "138.30836", + "elevation_ft": "2293", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Hayakawa", + "scheduled_service": "no" + }, + { + "id": "346270", + "ident": "JP-2337", + "type": "heliport", + "name": "JMSDF Yura Naval Base Heliport", + "latitude_deg": "33.95815", + "longitude_deg": "135.11433", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Yura", + "scheduled_service": "no" + }, + { + "id": "346271", + "ident": "JP-2338", + "type": "heliport", + "name": "Yura Emergency Helipad", + "latitude_deg": "33.97161", + "longitude_deg": "135.11445", + "elevation_ft": "184", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Yura", + "scheduled_service": "no" + }, + { + "id": "346272", + "ident": "JP-2339", + "type": "heliport", + "name": "Ishii Riverside Emergency Station Heliport", + "latitude_deg": "34.09121", + "longitude_deg": "134.41465", + "elevation_ft": "59", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-36", + "municipality": "Ishii", + "scheduled_service": "no" + }, + { + "id": "346273", + "ident": "JP-2340", + "type": "heliport", + "name": "Roadside Station Itano Heliport", + "latitude_deg": "34.13636", + "longitude_deg": "134.47283", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-36", + "municipality": "Itano", + "scheduled_service": "no" + }, + { + "id": "346274", + "ident": "JP-2341", + "type": "heliport", + "name": "Hoetsu Hospital Heliport", + "latitude_deg": "34.06349", + "longitude_deg": "134.15665", + "elevation_ft": "141", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-36", + "municipality": "Mima", + "scheduled_service": "no" + }, + { + "id": "346275", + "ident": "JP-2342", + "type": "closed", + "name": "Miyakonojo West Airfield", + "latitude_deg": "31.73117", + "longitude_deg": "131.02544", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-45", + "municipality": "Miyakonojo", + "scheduled_service": "no" + }, + { + "id": "346276", + "ident": "JP-2343", + "type": "closed", + "name": "Kasanohara Airfield", + "latitude_deg": "31.37655", + "longitude_deg": "130.89372", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Kanoya", + "scheduled_service": "no" + }, + { + "id": "346277", + "ident": "JP-2344", + "type": "heliport", + "name": "Ebihara General Hospital Heliport", + "latitude_deg": "32.14697", + "longitude_deg": "131.50448", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-45", + "municipality": "Takanabe", + "scheduled_service": "no" + }, + { + "id": "346278", + "ident": "JP-2345", + "type": "heliport", + "name": "Medical City Tobu Hospital Heliport", + "latitude_deg": "31.73057", + "longitude_deg": "131.10437", + "elevation_ft": "617", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-45", + "municipality": "Miyakonojo", + "scheduled_service": "no" + }, + { + "id": "346279", + "ident": "JP-2346", + "type": "heliport", + "name": "Kobayashi Municipal Hospital Heliport", + "latitude_deg": "31.99005", + "longitude_deg": "130.98573", + "elevation_ft": "696", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-45", + "municipality": "Kobayashi", + "scheduled_service": "no" + }, + { + "id": "346280", + "ident": "JP-2347", + "type": "heliport", + "name": "Nankai Medical Center Heliport", + "latitude_deg": "32.96511", + "longitude_deg": "131.89896", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Saiki", + "scheduled_service": "no" + }, + { + "id": "346281", + "ident": "JP-2348", + "type": "heliport", + "name": "Miyakonojo City Gunishikai Hospital Heliport", + "latitude_deg": "31.78038", + "longitude_deg": "131.08698", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-45", + "municipality": "Miyakonojo", + "scheduled_service": "no" + }, + { + "id": "346282", + "ident": "JP-2349", + "type": "heliport", + "name": "Miyakonojo Shinsei Hospital Heliport", + "latitude_deg": "31.73304", + "longitude_deg": "131.05079", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-45", + "municipality": "Miyakonojo", + "scheduled_service": "no" + }, + { + "id": "346283", + "ident": "JP-2350", + "type": "heliport", + "name": "Nichinan Fire Heliport", + "latitude_deg": "31.61667", + "longitude_deg": "131.38084", + "elevation_ft": "46", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-45", + "municipality": "Nichinan", + "scheduled_service": "no" + }, + { + "id": "346299", + "ident": "JP-2351", + "type": "heliport", + "name": "NHO Nagasaki Kawatana Medical Center Heliport", + "latitude_deg": "33.06913", + "longitude_deg": "129.85493", + "elevation_ft": "107", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Kawatana", + "scheduled_service": "no" + }, + { + "id": "346300", + "ident": "JP-2352", + "type": "heliport", + "name": "NHO Nagasaki Medical Center Heliport", + "latitude_deg": "32.89525", + "longitude_deg": "129.97283", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Omura", + "scheduled_service": "no" + }, + { + "id": "346301", + "ident": "JP-2353", + "type": "heliport", + "name": "Nagasaki University Hospital Heliport", + "latitude_deg": "32.76983", + "longitude_deg": "129.86798", + "elevation_ft": "146", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Nagasaki", + "scheduled_service": "no" + }, + { + "id": "346302", + "ident": "JP-2354", + "type": "heliport", + "name": "Nagasaki Goto Central Hospital", + "latitude_deg": "32.68929", + "longitude_deg": "128.81734", + "elevation_ft": "141", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Goto", + "scheduled_service": "no" + }, + { + "id": "346303", + "ident": "JP-2355", + "type": "heliport", + "name": "Nagasaki Shinbun Heliport", + "latitude_deg": "32.76439", + "longitude_deg": "129.86306", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Nagasaki", + "scheduled_service": "no" + }, + { + "id": "346304", + "ident": "JP-2356", + "type": "heliport", + "name": "JCHO Isahaya General Hospital Heliport", + "latitude_deg": "32.85511", + "longitude_deg": "130.04282", + "elevation_ft": "206", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Isahaya", + "scheduled_service": "no" + }, + { + "id": "346305", + "ident": "JP-2357", + "type": "heliport", + "name": "JMSDF Sasebo Base Sakibe Heliport", + "latitude_deg": "33.12762", + "longitude_deg": "129.7267", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Sasebo", + "scheduled_service": "no" + }, + { + "id": "346306", + "ident": "JP-2358", + "type": "heliport", + "name": "Akasaki Heliport", + "latitude_deg": "33.14426", + "longitude_deg": "129.70602", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Sasebo", + "scheduled_service": "no" + }, + { + "id": "346307", + "ident": "JP-2359", + "type": "heliport", + "name": "Nosegawa Heliport", + "latitude_deg": "34.11132", + "longitude_deg": "135.63315", + "elevation_ft": "2033", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-29", + "municipality": "Nosegawa", + "scheduled_service": "no" + }, + { + "id": "346308", + "ident": "JP-2360", + "type": "heliport", + "name": "Fuki Heliport", + "latitude_deg": "34.26209", + "longitude_deg": "135.6932", + "elevation_ft": "1919", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Koya", + "scheduled_service": "no" + }, + { + "id": "346309", + "ident": "JP-2361", + "type": "heliport", + "name": "Akagi Helicopter Yoshino Base", + "latitude_deg": "34.3833", + "longitude_deg": "135.9469", + "elevation_ft": "705", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-29", + "municipality": "Higashiyoshino", + "scheduled_service": "no" + }, + { + "id": "346310", + "ident": "JP-2362", + "type": "heliport", + "name": "Sone Heliport", + "latitude_deg": "33.96421", + "longitude_deg": "136.20135", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Owase", + "scheduled_service": "no" + }, + { + "id": "346312", + "ident": "JP-2363", + "type": "heliport", + "name": "Nunome Dam Emergency Helicopter Landing Zone", + "latitude_deg": "34.7006", + "longitude_deg": "135.98091", + "elevation_ft": "919", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-29", + "municipality": "Nara", + "scheduled_service": "no" + }, + { + "id": "346313", + "ident": "JP-2364", + "type": "heliport", + "name": "Nara Velodrome Emergency Helipad", + "latitude_deg": "34.7053", + "longitude_deg": "135.77997", + "elevation_ft": "256", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-29", + "municipality": "Nara", + "scheduled_service": "no" + }, + { + "id": "346314", + "ident": "JP-2365", + "type": "heliport", + "name": "Kashihara Sports Park Emergency Helipad", + "latitude_deg": "34.49278", + "longitude_deg": "135.77414", + "elevation_ft": "217", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-29", + "municipality": "Kashihara", + "scheduled_service": "no" + }, + { + "id": "346316", + "ident": "JP-2366", + "type": "heliport", + "name": "Saga Horse Racetrack Emergency Helipad", + "latitude_deg": "33.34907", + "longitude_deg": "130.47045", + "elevation_ft": "98", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-41", + "municipality": "Tosu", + "scheduled_service": "no" + }, + { + "id": "346317", + "ident": "JP-2367", + "type": "heliport", + "name": "Yobuko Sports Center Emergency Helipad", + "latitude_deg": "33.53312", + "longitude_deg": "129.89573", + "elevation_ft": "177", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-41", + "municipality": "Karatsu", + "scheduled_service": "no" + }, + { + "id": "346318", + "ident": "JP-2368", + "type": "heliport", + "name": "Kitashigeyasu Athletic Field Emergency Helipad", + "latitude_deg": "33.3069", + "longitude_deg": "130.46004", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-41", + "municipality": "Miyaki", + "scheduled_service": "no" + }, + { + "id": "346319", + "ident": "JP-2369", + "type": "heliport", + "name": "Kamimine Central Park Emergency Helipad", + "latitude_deg": "33.31061", + "longitude_deg": "130.42514", + "elevation_ft": "8", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-41", + "municipality": "Kamimine", + "scheduled_service": "no" + }, + { + "id": "346320", + "ident": "JP-2370", + "type": "heliport", + "name": "Maruyama Baseball Field Emergency Helipad", + "latitude_deg": "33.35767", + "longitude_deg": "130.4049", + "elevation_ft": "130", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-41", + "municipality": "Yoshinogari", + "scheduled_service": "no" + }, + { + "id": "346321", + "ident": "JP-2371", + "type": "heliport", + "name": "Mine Athletic Field Emergency Helipad", + "latitude_deg": "33.29775", + "longitude_deg": "130.43104", + "elevation_ft": "1", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-41", + "municipality": "Miyaki", + "scheduled_service": "no" + }, + { + "id": "346322", + "ident": "JP-2372", + "type": "heliport", + "name": "Hinokuma Park Emergency Helipad", + "latitude_deg": "33.32839", + "longitude_deg": "130.3535", + "elevation_ft": "80", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-41", + "municipality": "Kanzaki", + "scheduled_service": "no" + }, + { + "id": "346323", + "ident": "JP-2373", + "type": "heliport", + "name": "Kasuga Sports Square Emergency Heliport", + "latitude_deg": "33.32253", + "longitude_deg": "130.28667", + "elevation_ft": "70", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-41", + "municipality": "Saga", + "scheduled_service": "no" + }, + { + "id": "346324", + "ident": "JP-2374", + "type": "heliport", + "name": "Saga City Kawasoe Sports Park Emergency Heliport", + "latitude_deg": "33.1936", + "longitude_deg": "130.31833", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-41", + "municipality": "Saga", + "scheduled_service": "no" + }, + { + "id": "346325", + "ident": "JP-2375", + "type": "heliport", + "name": "Ushizu Multipurpose Park Emergency Helipad", + "latitude_deg": "33.25175", + "longitude_deg": "130.18909", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-41", + "municipality": "Ogi", + "scheduled_service": "no" + }, + { + "id": "346326", + "ident": "JP-2376", + "type": "heliport", + "name": "Kurayoshi Emergency Heliport", + "latitude_deg": "35.43761", + "longitude_deg": "133.80561", + "elevation_ft": "56", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Kurayoshi", + "scheduled_service": "no" + }, + { + "id": "346327", + "ident": "JP-2377", + "type": "heliport", + "name": "Tottori Prefectural Central Hospital Heliport", + "latitude_deg": "35.52153", + "longitude_deg": "134.21231", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Tottori", + "scheduled_service": "no" + }, + { + "id": "346328", + "ident": "JP-2378", + "type": "heliport", + "name": "Tottori Riverside Heliport", + "latitude_deg": "35.52246", + "longitude_deg": "134.21006", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Tottori", + "scheduled_service": "no" + }, + { + "id": "346329", + "ident": "JP-2379", + "type": "closed", + "name": "Iwatsubo Heliport", + "latitude_deg": "35.42382", + "longitude_deg": "134.11741", + "elevation_ft": "696", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Iwatsubo", + "scheduled_service": "no" + }, + { + "id": "346330", + "ident": "JP-2380", + "type": "heliport", + "name": "Yumura Hot Springs Heliport", + "latitude_deg": "35.52965", + "longitude_deg": "134.49246", + "elevation_ft": "1040", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Shinonsen", + "scheduled_service": "no" + }, + { + "id": "346331", + "ident": "JP-2381", + "type": "heliport", + "name": "Ido Heliport", + "latitude_deg": "35.56569", + "longitude_deg": "134.48489", + "elevation_ft": "144", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Shinonsen", + "scheduled_service": "no" + }, + { + "id": "346332", + "ident": "JP-2382", + "type": "heliport", + "name": "Hatta Heliport", + "latitude_deg": "35.53464", + "longitude_deg": "134.44008", + "elevation_ft": "502", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Shinonsen", + "scheduled_service": "no" + }, + { + "id": "346333", + "ident": "JP-2383", + "type": "heliport", + "name": "Tono Dam Heliport", + "latitude_deg": "35.45182", + "longitude_deg": "134.34538", + "elevation_ft": "761", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Tottori", + "scheduled_service": "no" + }, + { + "id": "346335", + "ident": "JP-2384", + "type": "heliport", + "name": "Funaoka Bamboo Forest Park Emergency Helipad", + "latitude_deg": "35.37314", + "longitude_deg": "134.26782", + "elevation_ft": "324", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Yazu", + "scheduled_service": "no" + }, + { + "id": "346336", + "ident": "JP-2385", + "type": "heliport", + "name": "Hoki Municipal Multipurpose Sports Park Emergency Helipad", + "latitude_deg": "35.38343", + "longitude_deg": "133.46075", + "elevation_ft": "863", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Hoki", + "scheduled_service": "no" + }, + { + "id": "346337", + "ident": "JP-2386", + "type": "heliport", + "name": "Iwami Municipal Multipurpose Sports Field Emergency Helipad", + "latitude_deg": "35.57086", + "longitude_deg": "134.34282", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Iwami", + "scheduled_service": "no" + }, + { + "id": "346338", + "ident": "JP-2387", + "type": "heliport", + "name": "Kurayoshi Velodrome Emergency Helipad", + "latitude_deg": "35.42884", + "longitude_deg": "133.7023", + "elevation_ft": "646", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Kurayoshi", + "scheduled_service": "no" + }, + { + "id": "346339", + "ident": "JP-2388", + "type": "heliport", + "name": "Koge Athletic Field Emergency Helipad", + "latitude_deg": "35.4171", + "longitude_deg": "134.2607", + "elevation_ft": "226", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Yazu", + "scheduled_service": "no" + }, + { + "id": "346340", + "ident": "JP-2389", + "type": "heliport", + "name": "Koge Baseball Field Emergency Helipad", + "latitude_deg": "35.40749", + "longitude_deg": "134.25633", + "elevation_ft": "259", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Yazu", + "scheduled_service": "no" + }, + { + "id": "346341", + "ident": "JP-2390", + "type": "heliport", + "name": "Miho Park Emergency Helipad", + "latitude_deg": "35.48311", + "longitude_deg": "134.22468", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Tottori", + "scheduled_service": "no" + }, + { + "id": "346342", + "ident": "JP-2391", + "type": "heliport", + "name": "Takaoka Municipal Hospital Heliport", + "latitude_deg": "36.75622", + "longitude_deg": "137.02898", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-16", + "municipality": "Takaoka", + "scheduled_service": "no" + }, + { + "id": "346343", + "ident": "JP-2392", + "type": "heliport", + "name": "Kawahara Botanical Gardens Heliport", + "latitude_deg": "36.72093", + "longitude_deg": "137.20901", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-16", + "municipality": "Toyama", + "scheduled_service": "no" + }, + { + "id": "346344", + "ident": "JP-2393", + "type": "heliport", + "name": "Hokuriku Central Hospital Heliport", + "latitude_deg": "36.66653", + "longitude_deg": "136.89071", + "elevation_ft": "95", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-16", + "municipality": "Oyabe", + "scheduled_service": "no" + }, + { + "id": "346345", + "ident": "JP-2394", + "type": "heliport", + "name": "Tonami General Hospital Heliport", + "latitude_deg": "36.64027", + "longitude_deg": "136.95056", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-16", + "municipality": "Tonami", + "scheduled_service": "no" + }, + { + "id": "346346", + "ident": "JP-2395", + "type": "heliport", + "name": "Kurobe Municipal Hospital Heliport", + "latitude_deg": "36.8713", + "longitude_deg": "137.4407", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-16", + "municipality": "Kurobe", + "scheduled_service": "no" + }, + { + "id": "346347", + "ident": "JP-2396", + "type": "heliport", + "name": "Kamoshima Bridge Emergency Heliport", + "latitude_deg": "36.61608", + "longitude_deg": "136.89988", + "elevation_ft": "156", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-16", + "municipality": "Oyabe", + "scheduled_service": "no" + }, + { + "id": "346348", + "ident": "JP-2397", + "type": "heliport", + "name": "Tateyama Caldera Sabo Museum Heliport", + "latitude_deg": "36.58169", + "longitude_deg": "137.44573", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-16", + "municipality": "Tateyama", + "scheduled_service": "no" + }, + { + "id": "346349", + "ident": "JP-2398", + "type": "heliport", + "name": "Babajima Heliport", + "latitude_deg": "36.6471", + "longitude_deg": "137.5572", + "elevation_ft": "2507", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-16", + "municipality": "Kamiichi", + "scheduled_service": "no" + }, + { + "id": "346350", + "ident": "JP-2399", + "type": "heliport", + "name": "Mogami River Upstream Riverside Greenbelt Emergency Helipad", + "latitude_deg": "37.90848", + "longitude_deg": "140.12057", + "elevation_ft": "820", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Yonezawa", + "scheduled_service": "no" + }, + { + "id": "346351", + "ident": "JP-2400", + "type": "heliport", + "name": "Mizunobe Training Center Emergency Helipad", + "latitude_deg": "38.39582", + "longitude_deg": "140.31528", + "elevation_ft": "294", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Kahoku", + "scheduled_service": "no" + }, + { + "id": "346352", + "ident": "JP-2401", + "type": "heliport", + "name": "Tengendai Ski Resort Emergency Helipad", + "latitude_deg": "37.77635", + "longitude_deg": "140.13679", + "elevation_ft": "4266", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Yonezawa", + "scheduled_service": "no" + }, + { + "id": "346353", + "ident": "JP-2402", + "type": "heliport", + "name": "Yonezawa Heliport", + "latitude_deg": "37.91295", + "longitude_deg": "140.1661", + "elevation_ft": "862", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Yonezawa", + "scheduled_service": "no" + }, + { + "id": "346917", + "ident": "JP-2403", + "type": "closed", + "name": "Yashiro Airfield", + "latitude_deg": "34.91469", + "longitude_deg": "134.9816", + "elevation_ft": "323", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kato", + "scheduled_service": "no" + }, + { + "id": "346918", + "ident": "JP-2404", + "type": "closed", + "name": "Okayama Airfield", + "latitude_deg": "33.22611", + "longitude_deg": "130.53395", + "elevation_ft": "115", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Yame", + "scheduled_service": "no" + }, + { + "id": "346919", + "ident": "JP-2405", + "type": "closed", + "name": "Tachiarai Factory Airfield", + "latitude_deg": "33.40659", + "longitude_deg": "130.60343", + "elevation_ft": "82", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Tachiarai", + "scheduled_service": "no" + }, + { + "id": "346920", + "ident": "JP-2406", + "type": "closed", + "name": "Tachiarai East Airfield", + "latitude_deg": "33.405", + "longitude_deg": "130.70765", + "elevation_ft": "142", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Asakura", + "scheduled_service": "no" + }, + { + "id": "346921", + "ident": "JP-2407", + "type": "closed", + "name": "Tachiarai North Airfield", + "latitude_deg": "33.44284", + "longitude_deg": "130.59413", + "elevation_ft": "89", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Chikuzen", + "scheduled_service": "no" + }, + { + "id": "346923", + "ident": "JP-2408", + "type": "closed", + "name": "Saigawa Airfield", + "latitude_deg": "33.66607", + "longitude_deg": "130.94317", + "elevation_ft": "51", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Miyako", + "scheduled_service": "no" + }, + { + "id": "347079", + "ident": "JP-2409", + "type": "heliport", + "name": "Osaka City Juso Hospital Heliport", + "latitude_deg": "34.728568", + "longitude_deg": "135.477244", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "347080", + "ident": "JP-2410", + "type": "heliport", + "name": "Takeda Pharmaceuticals Helipad 1", + "latitude_deg": "34.72358", + "longitude_deg": "135.47889", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "347081", + "ident": "JP-2411", + "type": "heliport", + "name": "Takeda Pharmaceuticals Helipad 2", + "latitude_deg": "34.72467", + "longitude_deg": "135.4793", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "347213", + "ident": "JP-2412", + "type": "closed", + "name": "Sukumo Seaplane Base", + "latitude_deg": "32.92301", + "longitude_deg": "132.67226", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Sukumo", + "scheduled_service": "no" + }, + { + "id": "347214", + "ident": "JP-2413", + "type": "closed", + "name": "Kamimurashima Airfield", + "latitude_deg": "33.50599", + "longitude_deg": "132.60155", + "elevation_ft": "72", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Ozu", + "scheduled_service": "no" + }, + { + "id": "347326", + "ident": "JP-2414", + "type": "heliport", + "name": "Hikone Municipal Hospital Heliport", + "latitude_deg": "35.26234", + "longitude_deg": "136.22533", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Hikone", + "scheduled_service": "no" + }, + { + "id": "347327", + "ident": "JP-2415", + "type": "heliport", + "name": "Omihachiman Municipal Medical Center Heliport", + "latitude_deg": "35.12413", + "longitude_deg": "136.0857", + "elevation_ft": "295", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Omihachiman", + "scheduled_service": "no" + }, + { + "id": "347334", + "ident": "JP-2416", + "type": "heliport", + "name": "Sumiyoshikan View Tower Helipad", + "latitude_deg": "34.71986", + "longitude_deg": "135.26491", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "347335", + "ident": "JP-2417", + "type": "heliport", + "name": "Sumiyoshigawa Riverside Forums Residence Helipad", + "latitude_deg": "34.71968", + "longitude_deg": "135.2661", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "347336", + "ident": "JP-2418", + "type": "heliport", + "name": "Proud Tower Sumiyoshi Helipad", + "latitude_deg": "34.720283", + "longitude_deg": "135.26732", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "347337", + "ident": "JP-2419", + "type": "heliport", + "name": "Kilala Sumiyoshi Helipad", + "latitude_deg": "34.71862", + "longitude_deg": "135.26148", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "347338", + "ident": "JP-2420", + "type": "heliport", + "name": "Mikage Tower Residence Helipad", + "latitude_deg": "34.7164", + "longitude_deg": "135.25527", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "347339", + "ident": "JP-2421", + "type": "heliport", + "name": "JMSDF Hanshin Sub Base Heliport", + "latitude_deg": "34.70442", + "longitude_deg": "135.28735", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "347341", + "ident": "JP-2422", + "type": "heliport", + "name": "Amagasaki General Medical Center Heliport", + "latitude_deg": "34.73006", + "longitude_deg": "135.41373", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Amagasaki", + "scheduled_service": "no" + }, + { + "id": "347342", + "ident": "JP-2423", + "type": "heliport", + "name": "Kansai Senior Hospital Heliport", + "latitude_deg": "34.73618", + "longitude_deg": "135.38497", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Amagasaki", + "scheduled_service": "no" + }, + { + "id": "347399", + "ident": "JP-2424", + "type": "closed", + "name": "Former Hahajima Heliport", + "latitude_deg": "26.63429", + "longitude_deg": "142.16715", + "elevation_ft": "190", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Ogasawara", + "scheduled_service": "no", + "keywords": "Hyōgidaira" + }, + { + "id": "347401", + "ident": "JP-2425", + "type": "heliport", + "name": "Aizumisato Heliport", + "latitude_deg": "37.47301", + "longitude_deg": "139.857305", + "elevation_ft": "690", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Aizumisato", + "scheduled_service": "no" + }, + { + "id": "347402", + "ident": "JP-2426", + "type": "closed", + "name": "Yakejima Airfield", + "latitude_deg": "37.92985", + "longitude_deg": "139.07969", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Niigata", + "scheduled_service": "no" + }, + { + "id": "347403", + "ident": "JP-2427", + "type": "closed", + "name": "Bandaijima Airfield", + "latitude_deg": "37.92651", + "longitude_deg": "139.06034", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Niigata", + "scheduled_service": "no" + }, + { + "id": "347404", + "ident": "JP-2428", + "type": "heliport", + "name": "Sanjo Heliport", + "latitude_deg": "37.63438", + "longitude_deg": "138.94314", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Sanjo", + "scheduled_service": "no" + }, + { + "id": "347405", + "ident": "JP-2429", + "type": "closed", + "name": "Atagohara Airfield", + "latitude_deg": "37.69577", + "longitude_deg": "139.19542", + "elevation_ft": "138", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Gosen", + "scheduled_service": "no" + }, + { + "id": "347406", + "ident": "JP-2430", + "type": "heliport", + "name": "Japan Red Cross Nagaoka Hospital Heliport", + "latitude_deg": "37.46049", + "longitude_deg": "138.83039", + "elevation_ft": "84", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Nagaoka", + "scheduled_service": "no" + }, + { + "id": "347645", + "ident": "JP-2431", + "type": "heliport", + "name": "Toyooka Public Hospital Heliport", + "latitude_deg": "35.527", + "longitude_deg": "134.808", + "elevation_ft": "144", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Toyooka", + "scheduled_service": "no" + }, + { + "id": "347646", + "ident": "JP-2432", + "type": "heliport", + "name": "Mie Prefectural Fire Academy Heliport", + "latitude_deg": "34.90263", + "longitude_deg": "136.5532", + "elevation_ft": "129", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Suzuka", + "scheduled_service": "no" + }, + { + "id": "347647", + "ident": "JP-2433", + "type": "closed", + "name": "Takanoo Naval Air Base", + "latitude_deg": "34.7973", + "longitude_deg": "136.45701", + "elevation_ft": "141", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Suzuka", + "scheduled_service": "no" + }, + { + "id": "347648", + "ident": "JP-2434", + "type": "closed", + "name": "Suzuka Number 1 (Asahigaoka) Airfield", + "latitude_deg": "34.84564", + "longitude_deg": "136.57694", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Suzuka", + "scheduled_service": "no" + }, + { + "id": "347649", + "ident": "JP-2435", + "type": "closed", + "name": "Suzuka Number 2 (Tamagaki) Airfield", + "latitude_deg": "34.86151", + "longitude_deg": "136.57801", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Suzuka", + "scheduled_service": "no" + }, + { + "id": "347650", + "ident": "JP-2436", + "type": "heliport", + "name": "Tatsuta Heliport", + "latitude_deg": "35.0377", + "longitude_deg": "136.70652", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Kuwana", + "scheduled_service": "no" + }, + { + "id": "347651", + "ident": "JP-2437", + "type": "heliport", + "name": "Tatsuco Building Helipad", + "latitude_deg": "35.16767", + "longitude_deg": "136.90767", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "347652", + "ident": "JP-2438", + "type": "heliport", + "name": "Centirise Sakae Helipad", + "latitude_deg": "35.16805", + "longitude_deg": "136.90547", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "347653", + "ident": "JP-2439", + "type": "heliport", + "name": "Otsutsu Electric Building Helipad", + "latitude_deg": "35.16577", + "longitude_deg": "136.90665", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "347654", + "ident": "JP-2440", + "type": "heliport", + "name": "Grass City Sakae Helipad", + "latitude_deg": "35.16607", + "longitude_deg": "136.90282", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "347655", + "ident": "JP-2441", + "type": "heliport", + "name": "Tenryu Heliport", + "latitude_deg": "34.93786", + "longitude_deg": "137.71762", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Hamamatsu", + "scheduled_service": "no" + }, + { + "id": "347656", + "ident": "JP-2442", + "type": "heliport", + "name": "Furi Heliport", + "latitude_deg": "34.9856", + "longitude_deg": "137.53093", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Shinshiro", + "scheduled_service": "no" + }, + { + "id": "347657", + "ident": "JP-2443", + "type": "heliport", + "name": "Yuminokimoto Heliport", + "latitude_deg": "35.01834", + "longitude_deg": "137.53463", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Shinshiro", + "scheduled_service": "no" + }, + { + "id": "347658", + "ident": "JP-2444", + "type": "heliport", + "name": "Nagano Prefectural Anan Hospital Heliport", + "latitude_deg": "35.33364", + "longitude_deg": "137.83476", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Anan", + "scheduled_service": "no" + }, + { + "id": "347659", + "ident": "JP-2445", + "type": "heliport", + "name": "Amikake Tunnel East Entrance Helipad", + "latitude_deg": "35.45093", + "longitude_deg": "137.71516", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Achi", + "scheduled_service": "no" + }, + { + "id": "347660", + "ident": "JP-2446", + "type": "heliport", + "name": "Enasan Tunnel West Entrance Helipad", + "latitude_deg": "35.50233", + "longitude_deg": "137.59567", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Nakatsugawa", + "scheduled_service": "no" + }, + { + "id": "347661", + "ident": "JP-2447", + "type": "heliport", + "name": "Senzu Dam Heliport", + "latitude_deg": "35.21714", + "longitude_deg": "138.09096", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Kawanehon", + "scheduled_service": "no" + }, + { + "id": "347662", + "ident": "JP-2448", + "type": "heliport", + "name": "Obara Heliport", + "latitude_deg": "35.02955", + "longitude_deg": "138.15696", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shimada", + "scheduled_service": "no" + }, + { + "id": "347663", + "ident": "JP-2449", + "type": "heliport", + "name": "Tomiyama Emergency Helipad", + "latitude_deg": "35.18926", + "longitude_deg": "137.81305", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyone", + "scheduled_service": "no" + }, + { + "id": "347664", + "ident": "JP-2450", + "type": "heliport", + "name": "Toyone Heliport", + "latitude_deg": "35.141", + "longitude_deg": "137.6981", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyone", + "scheduled_service": "no" + }, + { + "id": "347666", + "ident": "JP-2451", + "type": "heliport", + "name": "Shimada General Medical Center Heliport", + "latitude_deg": "34.84541", + "longitude_deg": "138.18345", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shimada", + "scheduled_service": "no" + }, + { + "id": "347667", + "ident": "JP-2452", + "type": "heliport", + "name": "Chubu Electric Power Kawanehon Power Center Heliport", + "latitude_deg": "35.1133", + "longitude_deg": "138.13989", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Kawanehon", + "scheduled_service": "no" + }, + { + "id": "347668", + "ident": "JP-2453", + "type": "heliport", + "name": "Ikawa Heliport", + "latitude_deg": "35.22191", + "longitude_deg": "138.24465", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "347669", + "ident": "JP-2454", + "type": "heliport", + "name": "Nekko Heliport", + "latitude_deg": "35.49478", + "longitude_deg": "138.55059", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Minobu", + "scheduled_service": "no" + }, + { + "id": "347670", + "ident": "JP-2455", + "type": "heliport", + "name": "Yamanashi Prefectural Police Heliport", + "latitude_deg": "35.53365", + "longitude_deg": "138.46398", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Ichikawamisato", + "scheduled_service": "no" + }, + { + "id": "347671", + "ident": "JP-2456", + "type": "heliport", + "name": "Hirabayashi Heliport", + "latitude_deg": "35.57729", + "longitude_deg": "138.40743", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Fujikawa", + "scheduled_service": "no" + }, + { + "id": "347672", + "ident": "JP-2457", + "type": "heliport", + "name": "Chevron Japan Omaezaki Plant Heliport", + "latitude_deg": "34.61591", + "longitude_deg": "138.21144", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Omaezaki", + "scheduled_service": "no" + }, + { + "id": "347673", + "ident": "JP-2458", + "type": "heliport", + "name": "Omaezaki Municipal Hospital Heliport", + "latitude_deg": "34.64456", + "longitude_deg": "138.11943", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Omaezaki", + "scheduled_service": "no" + }, + { + "id": "347674", + "ident": "JP-2459", + "type": "heliport", + "name": "Otsuki Heliport", + "latitude_deg": "35.5972", + "longitude_deg": "138.91517", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Otsuki", + "scheduled_service": "no" + }, + { + "id": "347676", + "ident": "JP-2460", + "type": "heliport", + "name": "Ohsugo Heliport", + "latitude_deg": "37.43024", + "longitude_deg": "139.98028", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Aizuwakamatsu", + "scheduled_service": "no", + "keywords": "K-Zan Heliport" + }, + { + "id": "347677", + "ident": "JP-2461", + "type": "heliport", + "name": "Daigo Fire Department Heliport", + "latitude_deg": "36.77623", + "longitude_deg": "140.35781", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Daigo", + "scheduled_service": "no" + }, + { + "id": "347678", + "ident": "JP-2462", + "type": "heliport", + "name": "Hitachiomiya Roadside Station Heliport", + "latitude_deg": "36.59779", + "longitude_deg": "140.4085", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Hitachiomiya", + "scheduled_service": "no" + }, + { + "id": "347679", + "ident": "JP-2463", + "type": "heliport", + "name": "Noguchi Heliport", + "latitude_deg": "36.55666", + "longitude_deg": "140.3288", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Hitachiomiya", + "scheduled_service": "no" + }, + { + "id": "347776", + "ident": "JP-2464", + "type": "heliport", + "name": "Kasugai Municipal Hospital West Heliport", + "latitude_deg": "35.27133", + "longitude_deg": "136.96857", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Kasugai", + "scheduled_service": "no" + }, + { + "id": "347777", + "ident": "JP-2465", + "type": "heliport", + "name": "Kasugai Municipal Hospital East Heliport", + "latitude_deg": "35.271352", + "longitude_deg": "136.969729", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Kasugai", + "scheduled_service": "no" + }, + { + "id": "347778", + "ident": "JP-2466", + "type": "heliport", + "name": "Kasugai Interchange Heliport", + "latitude_deg": "35.26986", + "longitude_deg": "136.99507", + "elevation_ft": "161", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Kasugai", + "scheduled_service": "no" + }, + { + "id": "347780", + "ident": "JP-2467", + "type": "heliport", + "name": "Nagoya City University West Medical Center Heliport", + "latitude_deg": "35.20227", + "longitude_deg": "136.90139", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "347784", + "ident": "JP-2468", + "type": "heliport", + "name": "Shimoyama District Heliport", + "latitude_deg": "35.04104", + "longitude_deg": "137.3223", + "elevation_ft": "1348", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyota", + "scheduled_service": "no" + }, + { + "id": "347786", + "ident": "JP-2469", + "type": "heliport", + "name": "Koganezaki Crystal Park Emergency Heliport", + "latitude_deg": "34.8447", + "longitude_deg": "138.76876", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Nishiizu", + "scheduled_service": "no" + }, + { + "id": "347787", + "ident": "JP-2470", + "type": "heliport", + "name": "Anjo-misaki Community Park Emergency Heliport", + "latitude_deg": "34.77081", + "longitude_deg": "138.76963", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Nishiizu", + "scheduled_service": "no" + }, + { + "id": "347788", + "ident": "JP-2471", + "type": "heliport", + "name": "Ihama Heliport", + "latitude_deg": "34.68644", + "longitude_deg": "138.78516", + "elevation_ft": "915", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Minamiizu", + "scheduled_service": "no" + }, + { + "id": "347789", + "ident": "JP-2472", + "type": "heliport", + "name": "Miyagahara Heliport", + "latitude_deg": "34.82892", + "longitude_deg": "138.85261", + "elevation_ft": "1037", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Nishiizu", + "scheduled_service": "no" + }, + { + "id": "347791", + "ident": "JP-2473", + "type": "heliport", + "name": "Sumitomo Real Estate Korakuen Building Helipad", + "latitude_deg": "35.71033", + "longitude_deg": "139.75213", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Bunkyo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347792", + "ident": "JP-2474", + "type": "heliport", + "name": "Atlas Tower Koishikawa Helipad", + "latitude_deg": "35.71145", + "longitude_deg": "139.75206", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Bunkyo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347793", + "ident": "JP-2475", + "type": "heliport", + "name": "Tokyo Dome Hotel Helipad", + "latitude_deg": "35.70372", + "longitude_deg": "139.75328", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Bunkyo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347794", + "ident": "JP-2476", + "type": "heliport", + "name": "Japan Housing Finance Agency Building Helipad", + "latitude_deg": "35.70341", + "longitude_deg": "139.75072", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Bunkyo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347795", + "ident": "JP-2477", + "type": "heliport", + "name": "Court Resident Tower Helipad", + "latitude_deg": "35.70343", + "longitude_deg": "139.75014", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Bunkyo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347796", + "ident": "JP-2478", + "type": "heliport", + "name": "Koraku Mori Building Helipad", + "latitude_deg": "35.70355", + "longitude_deg": "139.74952", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Bunkyo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347797", + "ident": "JP-2479", + "type": "heliport", + "name": "Tokyo Kuseikan Helipad", + "latitude_deg": "35.70139", + "longitude_deg": "139.74743", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347798", + "ident": "JP-2480", + "type": "heliport", + "name": "Daiwa House Tokyo Building Helipad", + "latitude_deg": "35.70189", + "longitude_deg": "139.74992", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347799", + "ident": "JP-2481", + "type": "heliport", + "name": "Ochanomizu Sola City Academia Helipad", + "latitude_deg": "35.69856", + "longitude_deg": "139.76684", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347800", + "ident": "JP-2482", + "type": "heliport", + "name": "Waterras Tower Residence Helipad", + "latitude_deg": "35.6976", + "longitude_deg": "139.7673", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347802", + "ident": "JP-2483", + "type": "heliport", + "name": "Sumitomo Real Estate Akihabara Ekimae Building Helipad", + "latitude_deg": "35.70002", + "longitude_deg": "139.7748", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347803", + "ident": "JP-2484", + "type": "heliport", + "name": "Hitachi Software Towers A Helipad", + "latitude_deg": "35.60984", + "longitude_deg": "139.74927", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347804", + "ident": "JP-2485", + "type": "heliport", + "name": "Hitachi Software Towers B Helipad", + "latitude_deg": "35.61004", + "longitude_deg": "139.7493", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347805", + "ident": "JP-2486", + "type": "heliport", + "name": "Shinagawa Seaside East Tower Helipad", + "latitude_deg": "35.609", + "longitude_deg": "139.74889", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347806", + "ident": "JP-2487", + "type": "heliport", + "name": "Brillia Tower Shinagawa Seaside Helipad", + "latitude_deg": "35.60989", + "longitude_deg": "139.75022", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347808", + "ident": "JP-2488", + "type": "heliport", + "name": "Shinagawa Seaside View Tower 1 Helipad", + "latitude_deg": "35.60843", + "longitude_deg": "139.74881", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347809", + "ident": "JP-2489", + "type": "heliport", + "name": "Prime Parks Shinagawa Seaside Tower Helipad", + "latitude_deg": "35.60781", + "longitude_deg": "139.74817", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347810", + "ident": "JP-2490", + "type": "heliport", + "name": "Shinagawa Seaside South Tower Helipad", + "latitude_deg": "35.60834", + "longitude_deg": "139.74784", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347811", + "ident": "JP-2491", + "type": "heliport", + "name": "Crest Tower Shinagawa Seaside Helipad", + "latitude_deg": "35.60659", + "longitude_deg": "139.74995", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347812", + "ident": "JP-2492", + "type": "heliport", + "name": "Proud Tower Chiyoda Fujimi Helipad", + "latitude_deg": "35.70082", + "longitude_deg": "139.74505", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347813", + "ident": "JP-2493", + "type": "heliport", + "name": "Garden Air Tower Helipad", + "latitude_deg": "35.70035", + "longitude_deg": "139.75042", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347814", + "ident": "JP-2494", + "type": "heliport", + "name": "Tokyo Shigoto Center Helipad", + "latitude_deg": "35.70011", + "longitude_deg": "139.7499", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "347815", + "ident": "JP-2495", + "type": "heliport", + "name": "Komaki Interchange Heliport", + "latitude_deg": "35.30228", + "longitude_deg": "136.90917", + "elevation_ft": "66", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Komaki", + "scheduled_service": "no" + }, + { + "id": "347816", + "ident": "JP-2496", + "type": "heliport", + "name": "Aisai Heliport", + "latitude_deg": "35.2283", + "longitude_deg": "136.68507", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Aisai", + "scheduled_service": "no" + }, + { + "id": "347817", + "ident": "JP-2497", + "type": "heliport", + "name": "ACS Heliport", + "latitude_deg": "34.9619", + "longitude_deg": "137.06381", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Anjo", + "scheduled_service": "no" + }, + { + "id": "347819", + "ident": "JP-2498", + "type": "heliport", + "name": "Nagoya Medical Center Heliport", + "latitude_deg": "35.18355", + "longitude_deg": "136.9056", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "347820", + "ident": "JP-2499", + "type": "heliport", + "name": "Fushimi Life Plaza Helipad", + "latitude_deg": "35.16462", + "longitude_deg": "136.89735", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "347821", + "ident": "JP-2500", + "type": "heliport", + "name": "Shin-Yurigaoka General Hospital Heliport", + "latitude_deg": "35.6044", + "longitude_deg": "139.49824", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "347822", + "ident": "JP-2501", + "type": "heliport", + "name": "Gifu Prefectural General Medical Center Heliport", + "latitude_deg": "35.41051", + "longitude_deg": "136.79798", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Noisshiki", + "scheduled_service": "no" + }, + { + "id": "347823", + "ident": "JP-2502", + "type": "heliport", + "name": "Hassoyama Heliport", + "latitude_deg": "35.35678", + "longitude_deg": "137.0317", + "elevation_ft": "806", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Inuyama", + "scheduled_service": "no" + }, + { + "id": "347824", + "ident": "JP-2503", + "type": "heliport", + "name": "Asano Park Heliport", + "latitude_deg": "35.363", + "longitude_deg": "137.19388", + "elevation_ft": "443", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Toki", + "scheduled_service": "no" + }, + { + "id": "347825", + "ident": "JP-2504", + "type": "heliport", + "name": "Kakamigahara Heliport", + "latitude_deg": "35.3751", + "longitude_deg": "136.83937", + "elevation_ft": "68", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Kakamigahara", + "scheduled_service": "no", + "keywords": "Kakamigahara City General Athletic Park Emergency Heliport" + }, + { + "id": "347826", + "ident": "JP-2505", + "type": "heliport", + "name": "Nagaragawa Park Heliport", + "latitude_deg": "35.44055", + "longitude_deg": "136.7702", + "elevation_ft": "62", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Gifu", + "scheduled_service": "no" + }, + { + "id": "347828", + "ident": "JP-2506", + "type": "heliport", + "name": "Inazawa Heliport", + "latitude_deg": "35.21125", + "longitude_deg": "136.78908", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Inazawa", + "scheduled_service": "no" + }, + { + "id": "347830", + "ident": "JP-2507", + "type": "heliport", + "name": "Shimizu Parking Area Heliport", + "latitude_deg": "35.13282", + "longitude_deg": "138.51453", + "elevation_ft": "712", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "347831", + "ident": "JP-2508", + "type": "heliport", + "name": "Okueigenji Keiryunosato Rest Area Emergency Heliport", + "latitude_deg": "35.10516", + "longitude_deg": "136.37203", + "elevation_ft": "981", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-25", + "municipality": "Higashiomi", + "scheduled_service": "no" + }, + { + "id": "347832", + "ident": "JP-2509", + "type": "heliport", + "name": "Kainan Hospital Heliport", + "latitude_deg": "35.10868", + "longitude_deg": "136.72303", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Yatomi", + "scheduled_service": "no" + }, + { + "id": "347834", + "ident": "JP-2510", + "type": "heliport", + "name": "Yashima Heliport", + "latitude_deg": "33.73597", + "longitude_deg": "132.14668", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Kaminoseki", + "scheduled_service": "no" + }, + { + "id": "347835", + "ident": "JP-2511", + "type": "heliport", + "name": "Okushi Heliport", + "latitude_deg": "34.23673", + "longitude_deg": "132.84866", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Osakikamijima", + "scheduled_service": "no" + }, + { + "id": "347836", + "ident": "JP-2512", + "type": "heliport", + "name": "Nakano Welfare Hospital Heliport", + "latitude_deg": "35.49471", + "longitude_deg": "136.92197", + "elevation_ft": "260", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Seki", + "scheduled_service": "no" + }, + { + "id": "347961", + "ident": "JP-2513", + "type": "closed", + "name": "Yuzukami Airfield", + "latitude_deg": "36.80498", + "longitude_deg": "140.12285", + "elevation_ft": "466", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Otawara", + "scheduled_service": "no" + }, + { + "id": "347982", + "ident": "JP-2514", + "type": "heliport", + "name": "Ibaraki Prefectural Police Heliport", + "latitude_deg": "36.34081", + "longitude_deg": "140.44573", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Mito", + "scheduled_service": "no" + }, + { + "id": "348175", + "ident": "JP-2515", + "type": "heliport", + "name": "Mie North Medical Center Inabe General Hospital Heliport", + "latitude_deg": "35.14555", + "longitude_deg": "136.51525", + "elevation_ft": "266", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Inabe", + "scheduled_service": "no" + }, + { + "id": "348187", + "ident": "JP-2516", + "type": "heliport", + "name": "Kizawa Memorial Hospital Heliport", + "latitude_deg": "35.43793", + "longitude_deg": "137.02834", + "elevation_ft": "221", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Minokamo", + "scheduled_service": "no" + }, + { + "id": "348188", + "ident": "JP-2517", + "type": "heliport", + "name": "Kamiosu Dam Heliport", + "latitude_deg": "35.73897", + "longitude_deg": "136.66372", + "elevation_ft": "1677", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Motosu", + "scheduled_service": "no" + }, + { + "id": "348189", + "ident": "JP-2518", + "type": "heliport", + "name": "Kawaura Dam Heliport", + "latitude_deg": "35.73441", + "longitude_deg": "136.69093", + "elevation_ft": "3380", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Motosu", + "scheduled_service": "no" + }, + { + "id": "348190", + "ident": "JP-2519", + "type": "heliport", + "name": "Amehata Heliport", + "latitude_deg": "35.40541", + "longitude_deg": "138.32924", + "elevation_ft": "1493", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Hayakawa", + "scheduled_service": "no" + }, + { + "id": "348191", + "ident": "JP-2520", + "type": "heliport", + "name": "Jikkoku Heliport", + "latitude_deg": "35.50643", + "longitude_deg": "138.40056", + "elevation_ft": "1650", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Fujikawa", + "scheduled_service": "no" + }, + { + "id": "348192", + "ident": "JP-2521", + "type": "heliport", + "name": "Yamasaki Interchange Heliport", + "latitude_deg": "34.99955", + "longitude_deg": "134.54984", + "elevation_ft": "305", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Shiso", + "scheduled_service": "no" + }, + { + "id": "348193", + "ident": "JP-2522", + "type": "heliport", + "name": "Nishiki Heliport", + "latitude_deg": "34.21164", + "longitude_deg": "136.39837", + "elevation_ft": "292", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Taiki", + "scheduled_service": "no" + }, + { + "id": "348194", + "ident": "JP-2523", + "type": "heliport", + "name": "Arima Heliport", + "latitude_deg": "33.86963", + "longitude_deg": "136.07781", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Kumano", + "scheduled_service": "no" + }, + { + "id": "348195", + "ident": "JP-2524", + "type": "heliport", + "name": "Kumano Heliport", + "latitude_deg": "33.86457", + "longitude_deg": "136.06042", + "elevation_ft": "154", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Kumano", + "scheduled_service": "no" + }, + { + "id": "348196", + "ident": "JP-2525", + "type": "heliport", + "name": "Nachi Harbor Heliport", + "latitude_deg": "33.64585", + "longitude_deg": "135.9392", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Nachikatsuura", + "scheduled_service": "no" + }, + { + "id": "348197", + "ident": "JP-2526", + "type": "heliport", + "name": "Taiji Heliport", + "latitude_deg": "33.59582", + "longitude_deg": "135.94266", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Taiji", + "scheduled_service": "no" + }, + { + "id": "348198", + "ident": "JP-2527", + "type": "heliport", + "name": "Kushimoto Municipal Hospital Heliport", + "latitude_deg": "33.48534", + "longitude_deg": "135.78482", + "elevation_ft": "159", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Kushimoto", + "scheduled_service": "no" + }, + { + "id": "348199", + "ident": "JP-2528", + "type": "closed", + "name": "Kushimoto Seaplane Base", + "latitude_deg": "33.464", + "longitude_deg": "135.7827", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Kushimoto", + "scheduled_service": "no" + }, + { + "id": "348200", + "ident": "JP-2529", + "type": "closed", + "name": "Shionomisaki (Isade) Airfield", + "latitude_deg": "33.4487", + "longitude_deg": "135.75518", + "elevation_ft": "220", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Kushimoto", + "scheduled_service": "no" + }, + { + "id": "348218", + "ident": "JP-2530", + "type": "heliport", + "name": "Ashiyasuashikura Helipad", + "latitude_deg": "35.63621", + "longitude_deg": "138.35149", + "elevation_ft": "4439", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Minami-Alps", + "scheduled_service": "no" + }, + { + "id": "348219", + "ident": "JP-2531", + "type": "heliport", + "name": "Nirasaki Heliport", + "latitude_deg": "35.71043", + "longitude_deg": "138.44295", + "elevation_ft": "1188", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Nirasaki", + "scheduled_service": "no" + }, + { + "id": "348220", + "ident": "JP-2532", + "type": "heliport", + "name": "Yamanashi Prefectural General Hospital Heliport", + "latitude_deg": "35.67062", + "longitude_deg": "138.5504", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Kofu", + "scheduled_service": "no" + }, + { + "id": "348300", + "ident": "JP-2533", + "type": "heliport", + "name": "Kariyama Heliport", + "latitude_deg": "33.61285", + "longitude_deg": "133.19167", + "elevation_ft": "682", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Niyodogawa", + "scheduled_service": "no" + }, + { + "id": "348302", + "ident": "JP-2534", + "type": "heliport", + "name": "National Cerebral and Cardiovascular Center Heliport", + "latitude_deg": "34.77916", + "longitude_deg": "135.54117", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Suita", + "scheduled_service": "no" + }, + { + "id": "348692", + "ident": "JP-2535", + "type": "closed", + "name": "Bansei Airfield", + "latitude_deg": "31.43677", + "longitude_deg": "130.28963", + "elevation_ft": "15", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Minamisatsuma", + "scheduled_service": "no" + }, + { + "id": "348732", + "ident": "JP-2536", + "type": "heliport", + "name": "Jonohira Heliport", + "latitude_deg": "33.59367", + "longitude_deg": "133.46802", + "elevation_ft": "299", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kochi", + "scheduled_service": "no" + }, + { + "id": "348734", + "ident": "JP-2537", + "type": "heliport", + "name": "Yasui Heliport", + "latitude_deg": "33.857189", + "longitude_deg": "133.058592", + "elevation_ft": "311", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Saijo", + "scheduled_service": "no" + }, + { + "id": "348740", + "ident": "JP-2538", + "type": "heliport", + "name": "Haraizawa Heliport", + "latitude_deg": "35.96823", + "longitude_deg": "138.2312", + "elevation_ft": "3520", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Hara", + "scheduled_service": "no" + }, + { + "id": "348772", + "ident": "JP-2539", + "type": "heliport", + "name": "Chikamori Hospital Heliport", + "latitude_deg": "33.56456", + "longitude_deg": "133.54162", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kochi", + "scheduled_service": "no" + }, + { + "id": "348773", + "ident": "JP-2540", + "type": "heliport", + "name": "Kochi Health Sciences Center Heliport", + "latitude_deg": "33.53085", + "longitude_deg": "133.58729", + "elevation_ft": "58", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kochi", + "scheduled_service": "no" + }, + { + "id": "348774", + "ident": "JP-2541", + "type": "heliport", + "name": "Kochi Medical Center Heliport", + "latitude_deg": "33.53143", + "longitude_deg": "133.58536", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kochi", + "scheduled_service": "no" + }, + { + "id": "348776", + "ident": "JP-2542", + "type": "heliport", + "name": "Suwa Central Hospital Heliport", + "latitude_deg": "35.99135", + "longitude_deg": "138.17652", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Chino", + "scheduled_service": "no" + }, + { + "id": "348867", + "ident": "JP-2543", + "type": "small_airport", + "name": "Tatsuda Auxiliary Airfield", + "latitude_deg": "35.15797", + "longitude_deg": "136.68484", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Aisai", + "scheduled_service": "no" + }, + { + "id": "348872", + "ident": "JP-2544", + "type": "seaplane_base", + "name": "Setouchi Seaplanes Onomichi Seaplane Base", + "latitude_deg": "34.390397", + "longitude_deg": "133.283687", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Onomichi", + "scheduled_service": "no" + }, + { + "id": "348873", + "ident": "JP-2545", + "type": "seaplane_base", + "name": "Setouchi Seaplanes Beppu Seaplane Base", + "latitude_deg": "33.29861", + "longitude_deg": "131.50398", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Beppu", + "scheduled_service": "no" + }, + { + "id": "348913", + "ident": "JP-2546", + "type": "closed", + "name": "Yotsudanbara Airfield", + "latitude_deg": "38.63565", + "longitude_deg": "141.03272", + "elevation_ft": "95", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Kurihara", + "scheduled_service": "no" + }, + { + "id": "348915", + "ident": "JP-2547", + "type": "closed", + "name": "Minamiyama Airfield", + "latitude_deg": "38.66024", + "longitude_deg": "140.19909", + "elevation_ft": "869", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Tozawa", + "scheduled_service": "no" + }, + { + "id": "348916", + "ident": "JP-2548", + "type": "closed", + "name": "Mamurogawa Airfield", + "latitude_deg": "38.85062", + "longitude_deg": "140.27211", + "elevation_ft": "394", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Mamurogawa", + "scheduled_service": "no" + }, + { + "id": "349004", + "ident": "JP-2549", + "type": "closed", + "name": "Ina Airfield", + "latitude_deg": "35.8456", + "longitude_deg": "137.98661", + "elevation_ft": "2323", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Ina", + "scheduled_service": "no" + }, + { + "id": "349005", + "ident": "JP-2550", + "type": "heliport", + "name": "Ina Interchange Heliport", + "latitude_deg": "35.86397", + "longitude_deg": "137.94303", + "elevation_ft": "2477", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Ina", + "scheduled_service": "no" + }, + { + "id": "349006", + "ident": "JP-2551", + "type": "heliport", + "name": "Suwa Interchange Heliport", + "latitude_deg": "36.00474", + "longitude_deg": "138.12715", + "elevation_ft": "2526", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Nakasu", + "scheduled_service": "no" + }, + { + "id": "349007", + "ident": "JP-2552", + "type": "heliport", + "name": "Hoshi General Hospital Heliport", + "latitude_deg": "37.4023", + "longitude_deg": "140.39281", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Koriyama", + "scheduled_service": "no" + }, + { + "id": "349008", + "ident": "JP-2553", + "type": "heliport", + "name": "Kumotoriyama Heliport", + "latitude_deg": "35.83989", + "longitude_deg": "138.94937", + "elevation_ft": "5732", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Tabayama", + "scheduled_service": "no" + }, + { + "id": "349009", + "ident": "JP-2554", + "type": "heliport", + "name": "Kosuge Heliport", + "latitude_deg": "35.76363", + "longitude_deg": "138.94015", + "elevation_ft": "2448", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Kosuge", + "scheduled_service": "no" + }, + { + "id": "349010", + "ident": "JP-2555", + "type": "heliport", + "name": "Tabayama Heliport", + "latitude_deg": "35.79457", + "longitude_deg": "138.90772", + "elevation_ft": "2205", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Tabayama", + "scheduled_service": "no" + }, + { + "id": "349011", + "ident": "JP-2556", + "type": "heliport", + "name": "Gobo Heliport", + "latitude_deg": "33.8972", + "longitude_deg": "135.19229", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Gobo", + "scheduled_service": "no" + }, + { + "id": "349012", + "ident": "JP-2557", + "type": "heliport", + "name": "Ise Municipal General Hospital Heliport", + "latitude_deg": "34.48177", + "longitude_deg": "136.72784", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Ise", + "scheduled_service": "no" + }, + { + "id": "349013", + "ident": "JP-2558", + "type": "small_airport", + "name": "Ichishicho Gliderport", + "latitude_deg": "34.66876", + "longitude_deg": "136.42173", + "elevation_ft": "52", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Tsu", + "scheduled_service": "no" + }, + { + "id": "349014", + "ident": "JP-2559", + "type": "heliport", + "name": "Japan Red Cross Ise Hospital Heliport", + "latitude_deg": "34.50259", + "longitude_deg": "136.71132", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Ise", + "scheduled_service": "no" + }, + { + "id": "349015", + "ident": "JP-2560", + "type": "heliport", + "name": "Karasu Heliport", + "latitude_deg": "34.65236", + "longitude_deg": "136.53074", + "elevation_ft": "8", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Tsu", + "scheduled_service": "no" + }, + { + "id": "349016", + "ident": "JP-2561", + "type": "heliport", + "name": "Aridagawa Fire Department Heliport", + "latitude_deg": "34.05362", + "longitude_deg": "135.23945", + "elevation_ft": "205", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Aridagawa", + "scheduled_service": "no" + }, + { + "id": "349017", + "ident": "JP-2562", + "type": "heliport", + "name": "Nushima Heliport", + "latitude_deg": "34.16616", + "longitude_deg": "134.82169", + "elevation_ft": "85", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Minamiawaji", + "scheduled_service": "no" + }, + { + "id": "349018", + "ident": "JP-2563", + "type": "heliport", + "name": "Hodono Heliport", + "latitude_deg": "33.70313", + "longitude_deg": "133.3565", + "elevation_ft": "2336", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Ino", + "scheduled_service": "no" + }, + { + "id": "349019", + "ident": "JP-2564", + "type": "heliport", + "name": "Gohoku Heliport", + "latitude_deg": "33.62982", + "longitude_deg": "133.29086", + "elevation_ft": "312", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Ino", + "scheduled_service": "no" + }, + { + "id": "349021", + "ident": "JP-2565", + "type": "heliport", + "name": "Kamiike Heliport", + "latitude_deg": "33.72685", + "longitude_deg": "133.87755", + "elevation_ft": "1460", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kami", + "scheduled_service": "no" + }, + { + "id": "349022", + "ident": "JP-2566", + "type": "heliport", + "name": "Inono Heliport", + "latitude_deg": "33.70686", + "longitude_deg": "133.85765", + "elevation_ft": "727", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kami", + "scheduled_service": "no" + }, + { + "id": "349046", + "ident": "JP-2567", + "type": "heliport", + "name": "Tochimoto Heliport", + "latitude_deg": "35.94608", + "longitude_deg": "138.84865", + "elevation_ft": "3494", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Chichibu", + "scheduled_service": "no" + }, + { + "id": "349047", + "ident": "JP-2568", + "type": "heliport", + "name": "Hirahara Heliport", + "latitude_deg": "36.09285", + "longitude_deg": "138.81621", + "elevation_ft": "3507", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Kanna", + "scheduled_service": "no" + }, + { + "id": "349131", + "ident": "JP-2569", + "type": "closed", + "name": "Akago Airfield", + "latitude_deg": "34.29286", + "longitude_deg": "131.33705", + "elevation_ft": "702", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Mine", + "scheduled_service": "no" + }, + { + "id": "349164", + "ident": "JP-2570", + "type": "heliport", + "name": "Gujo Municipal Hospital Heliport", + "latitude_deg": "35.74756", + "longitude_deg": "136.9502", + "elevation_ft": "699", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Gujo", + "scheduled_service": "no" + }, + { + "id": "349165", + "ident": "JP-2571", + "type": "heliport", + "name": "Gifu Prefectural Gero Onsen Hospital", + "latitude_deg": "35.80804", + "longitude_deg": "137.25296", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Gero", + "scheduled_service": "no" + }, + { + "id": "349166", + "ident": "JP-2572", + "type": "heliport", + "name": "Iwaya Dam Heliport", + "latitude_deg": "35.76072", + "longitude_deg": "137.15923", + "elevation_ft": "1388", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Gero", + "scheduled_service": "no" + }, + { + "id": "349167", + "ident": "JP-2573", + "type": "heliport", + "name": "Kuzuryu Dam Heliport", + "latitude_deg": "35.88009", + "longitude_deg": "136.68352", + "elevation_ft": "1841", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Ono", + "scheduled_service": "no" + }, + { + "id": "349168", + "ident": "JP-2574", + "type": "heliport", + "name": "Kumiai Kosei Hospital Heliport", + "latitude_deg": "36.16792", + "longitude_deg": "137.23854", + "elevation_ft": "1824", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Takayama", + "scheduled_service": "no" + }, + { + "id": "349169", + "ident": "JP-2575", + "type": "heliport", + "name": "Okawara Helipad", + "latitude_deg": "35.56171", + "longitude_deg": "138.0347", + "elevation_ft": "2434", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Oshika", + "scheduled_service": "no" + }, + { + "id": "349170", + "ident": "JP-2576", + "type": "heliport", + "name": "Oshika Heliport", + "latitude_deg": "35.57813", + "longitude_deg": "138.0334", + "elevation_ft": "2191", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Oshika", + "scheduled_service": "no" + }, + { + "id": "349171", + "ident": "JP-2577", + "type": "heliport", + "name": "Japan Red Cross Suwa Hospital Heliport", + "latitude_deg": "36.04315", + "longitude_deg": "138.10582", + "elevation_ft": "2520", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Suwa", + "scheduled_service": "no" + }, + { + "id": "349172", + "ident": "JP-2578", + "type": "heliport", + "name": "Nagano Prefecture Saku Joint Government Building Helipad", + "latitude_deg": "36.22977", + "longitude_deg": "138.46036", + "elevation_ft": "2205", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Saku", + "scheduled_service": "no" + }, + { + "id": "349174", + "ident": "JP-2579", + "type": "heliport", + "name": "Saku General Hospital Heliport", + "latitude_deg": "36.19757", + "longitude_deg": "138.48049", + "elevation_ft": "2352", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Saku", + "scheduled_service": "no" + }, + { + "id": "349175", + "ident": "JP-2580", + "type": "heliport", + "name": "Makio Dam Heliport", + "latitude_deg": "35.82504", + "longitude_deg": "137.60695", + "elevation_ft": "2838", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Otaki", + "scheduled_service": "no" + }, + { + "id": "349176", + "ident": "JP-2581", + "type": "heliport", + "name": "Miura Dam Heliport", + "latitude_deg": "35.82333", + "longitude_deg": "137.39527", + "elevation_ft": "4344", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Otaki", + "scheduled_service": "no" + }, + { + "id": "349177", + "ident": "JP-2582", + "type": "heliport", + "name": "Sodegaura Forest Raceway Heliport", + "latitude_deg": "35.39583", + "longitude_deg": "140.08963", + "elevation_ft": "335", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Sodegaura", + "scheduled_service": "no" + }, + { + "id": "349178", + "ident": "JP-2583", + "type": "heliport", + "name": "Miki Heliport", + "latitude_deg": "35.56925", + "longitude_deg": "140.27862", + "elevation_ft": "236", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Chiba", + "scheduled_service": "no" + }, + { + "id": "349179", + "ident": "JP-2584", + "type": "heliport", + "name": "Eastern Chiba Medical Center Heliport", + "latitude_deg": "35.5569", + "longitude_deg": "140.30676", + "elevation_ft": "253", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Togane", + "scheduled_service": "no" + }, + { + "id": "349180", + "ident": "JP-2585", + "type": "heliport", + "name": "Mobara Twin Circuit Heliport", + "latitude_deg": "35.38202", + "longitude_deg": "140.28303", + "elevation_ft": "174", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Mobara", + "scheduled_service": "no" + }, + { + "id": "349181", + "ident": "JP-2586", + "type": "heliport", + "name": "Namerikawa Heliport", + "latitude_deg": "35.78298", + "longitude_deg": "137.7378", + "elevation_ft": "3632", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Agematsu", + "scheduled_service": "no" + }, + { + "id": "349182", + "ident": "JP-2587", + "type": "heliport", + "name": "Iida Interchange Heliport", + "latitude_deg": "35.5004", + "longitude_deg": "137.79517", + "elevation_ft": "1808", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Iida", + "scheduled_service": "no" + }, + { + "id": "349183", + "ident": "JP-2588", + "type": "heliport", + "name": "Iida Sports Park Heliport", + "latitude_deg": "35.48354", + "longitude_deg": "137.80136", + "elevation_ft": "1772", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Iida", + "scheduled_service": "no" + }, + { + "id": "349197", + "ident": "JP-2589", + "type": "closed", + "name": "Okuma Airfield", + "latitude_deg": "26.74014", + "longitude_deg": "128.16016", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Kunigami", + "scheduled_service": "no" + }, + { + "id": "349198", + "ident": "JP-2590", + "type": "closed", + "name": "Henoko Airfield", + "latitude_deg": "26.52185", + "longitude_deg": "128.04856", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Nago", + "scheduled_service": "no" + }, + { + "id": "349199", + "ident": "JP-2591", + "type": "closed", + "name": "Kin Airfield", + "latitude_deg": "26.4614", + "longitude_deg": "127.91921", + "elevation_ft": "180", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Kin", + "scheduled_service": "no" + }, + { + "id": "349200", + "ident": "JP-2592", + "type": "heliport", + "name": "Camp Hansen Heliport", + "latitude_deg": "26.46194", + "longitude_deg": "127.91607", + "elevation_ft": "177", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Kin", + "scheduled_service": "no" + }, + { + "id": "349201", + "ident": "JP-2593", + "type": "heliport", + "name": "LZ Magpie Heliport", + "latitude_deg": "26.46968", + "longitude_deg": "127.9121", + "elevation_ft": "276", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Kin", + "scheduled_service": "no" + }, + { + "id": "349202", + "ident": "JP-2594", + "type": "heliport", + "name": "Ena Interchange Heliport", + "latitude_deg": "35.45365", + "longitude_deg": "137.39621", + "elevation_ft": "951", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Ena", + "scheduled_service": "no" + }, + { + "id": "349203", + "ident": "JP-2595", + "type": "heliport", + "name": "Ena Municipal Hospital Heliport", + "latitude_deg": "35.46481", + "longitude_deg": "137.39349", + "elevation_ft": "1030", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Ena", + "scheduled_service": "no" + }, + { + "id": "349204", + "ident": "JP-2596", + "type": "heliport", + "name": "Fuefuki Heliport", + "latitude_deg": "35.62275", + "longitude_deg": "138.69202", + "elevation_ft": "1434", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Fuefuki", + "scheduled_service": "no" + }, + { + "id": "349205", + "ident": "JP-2597", + "type": "heliport", + "name": "Enzan Heliport", + "latitude_deg": "35.80211", + "longitude_deg": "138.82317", + "elevation_ft": "4449", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Koshu", + "scheduled_service": "no" + }, + { + "id": "349206", + "ident": "JP-2598", + "type": "heliport", + "name": "Higashi-Yamanashi Fire Department Heliport", + "latitude_deg": "35.69498", + "longitude_deg": "138.7219", + "elevation_ft": "1234", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Koshu", + "scheduled_service": "no" + }, + { + "id": "349207", + "ident": "JP-2599", + "type": "heliport", + "name": "Otaki Heliport", + "latitude_deg": "35.91192", + "longitude_deg": "138.81808", + "elevation_ft": "3442", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Chichibu", + "scheduled_service": "no" + }, + { + "id": "349212", + "ident": "JP-2600", + "type": "heliport", + "name": "Sumitomo Real Estate Shinjuku Garden Tower Helipad", + "latitude_deg": "35.70748", + "longitude_deg": "139.70325", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "349213", + "ident": "JP-2601", + "type": "heliport", + "name": "Dia Palace U Arena Helipad", + "latitude_deg": "35.83995", + "longitude_deg": "139.38749", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Iruma", + "scheduled_service": "no" + }, + { + "id": "349214", + "ident": "JP-2602", + "type": "heliport", + "name": "National Healthcare Organization Tachikawa Campus Heliport", + "latitude_deg": "35.70658", + "longitude_deg": "139.41076", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Tachikawa", + "scheduled_service": "no" + }, + { + "id": "349215", + "ident": "JP-2603", + "type": "heliport", + "name": "Chichibu Heliport", + "latitude_deg": "35.98105", + "longitude_deg": "139.04281", + "elevation_ft": "1325", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Chichibu", + "scheduled_service": "no" + }, + { + "id": "349216", + "ident": "JP-2604", + "type": "heliport", + "name": "Yoshida Torikata Multipurpose Park Heliport", + "latitude_deg": "36.0378", + "longitude_deg": "139.04347", + "elevation_ft": "600", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Chichibu", + "scheduled_service": "no" + }, + { + "id": "349222", + "ident": "JP-2605", + "type": "heliport", + "name": "Chichibu Hospital Heliport", + "latitude_deg": "35.98271", + "longitude_deg": "139.06418", + "elevation_ft": "794", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Chichibu", + "scheduled_service": "no" + }, + { + "id": "349223", + "ident": "JP-2606", + "type": "heliport", + "name": "Hiki District Fire Department Heliport", + "latitude_deg": "36.06979", + "longitude_deg": "139.27883", + "elevation_ft": "269", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Ogawa", + "scheduled_service": "no" + }, + { + "id": "349224", + "ident": "JP-2607", + "type": "heliport", + "name": "Otabe Heliport", + "latitude_deg": "36.11468", + "longitude_deg": "138.97266", + "elevation_ft": "1572", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Chichibu", + "scheduled_service": "no" + }, + { + "id": "349225", + "ident": "JP-2608", + "type": "heliport", + "name": "JGM Royal Golf Club Heliport", + "latitude_deg": "35.96358", + "longitude_deg": "139.28484", + "elevation_ft": "672", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Ogose", + "scheduled_service": "no" + }, + { + "id": "349226", + "ident": "JP-2609", + "type": "heliport", + "name": "Kaminaguri Helipad", + "latitude_deg": "35.87622", + "longitude_deg": "139.19068", + "elevation_ft": "1053", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Hanno", + "scheduled_service": "no" + }, + { + "id": "349227", + "ident": "JP-2610", + "type": "heliport", + "name": "Saitama Medical University International Medical Center Heliport", + "latitude_deg": "35.92151", + "longitude_deg": "139.32252", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Hidaka", + "scheduled_service": "no" + }, + { + "id": "349228", + "ident": "JP-2611", + "type": "heliport", + "name": "Hanno Green Country Club Heliport", + "latitude_deg": "35.8734", + "longitude_deg": "139.27299", + "elevation_ft": "728", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Hanno", + "scheduled_service": "no" + }, + { + "id": "349236", + "ident": "JP-2612", + "type": "heliport", + "name": "Urayasu Brighton Hotel Tokyo Bay Helipad", + "latitude_deg": "35.64995", + "longitude_deg": "139.91192", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Urayasu", + "scheduled_service": "no" + }, + { + "id": "349237", + "ident": "JP-2613", + "type": "heliport", + "name": "Air Residence Shin-Urayasu West Helipad", + "latitude_deg": "35.64797", + "longitude_deg": "139.91336", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Urayasu", + "scheduled_service": "no" + }, + { + "id": "349238", + "ident": "JP-2614", + "type": "heliport", + "name": "Air Residence Shin-Urayasu East Helipad", + "latitude_deg": "35.64797", + "longitude_deg": "139.91392", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Urayasu", + "scheduled_service": "no" + }, + { + "id": "349239", + "ident": "JP-2615", + "type": "heliport", + "name": "Aqua Town Nayabashi Office Building Helipad", + "latitude_deg": "35.16887", + "longitude_deg": "136.89111", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "349240", + "ident": "JP-2616", + "type": "heliport", + "name": "Green Building Helipad", + "latitude_deg": "35.16824", + "longitude_deg": "136.89316", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "349241", + "ident": "JP-2617", + "type": "heliport", + "name": "NEC Chubu Building Helipad", + "latitude_deg": "35.16905", + "longitude_deg": "136.89377", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "349242", + "ident": "JP-2618", + "type": "heliport", + "name": "Nagoya International Center Helipad", + "latitude_deg": "35.17269", + "longitude_deg": "136.89031", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "349243", + "ident": "JP-2619", + "type": "heliport", + "name": "Tokyo University Hakusan Campus Heliport", + "latitude_deg": "35.72326", + "longitude_deg": "139.75011", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Bunkyo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "349244", + "ident": "JP-2620", + "type": "heliport", + "name": "Nippon Medical School Hospital Heliport", + "latitude_deg": "35.72085", + "longitude_deg": "139.75901", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Bunkyo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "349245", + "ident": "JP-2621", + "type": "heliport", + "name": "Sun Claire Ikeshita Helipad", + "latitude_deg": "35.1672", + "longitude_deg": "136.94719", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "349246", + "ident": "JP-2622", + "type": "heliport", + "name": "Grande Maison Ikeshita Tower Helipad", + "latitude_deg": "35.1679", + "longitude_deg": "136.94736", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "349247", + "ident": "JP-2623", + "type": "heliport", + "name": "Fukiage Hall Helipad", + "latitude_deg": "35.15901", + "longitude_deg": "136.93024", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "349248", + "ident": "JP-2624", + "type": "heliport", + "name": "Alpen Marunouchi Tower Helipad", + "latitude_deg": "35.176", + "longitude_deg": "136.89715", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "349249", + "ident": "JP-2625", + "type": "heliport", + "name": "Token Corporation Building", + "latitude_deg": "35.17662", + "longitude_deg": "136.8971", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "349250", + "ident": "JP-2626", + "type": "heliport", + "name": "Taijuseimei Nagoya Building Helipad", + "latitude_deg": "35.17267", + "longitude_deg": "136.89657", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "349251", + "ident": "JP-2627", + "type": "heliport", + "name": "Orix Nagoya Nishiki Building Helipad", + "latitude_deg": "35.17143", + "longitude_deg": "136.89665", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "349252", + "ident": "JP-2628", + "type": "heliport", + "name": "MI Terrace Nagoya Fushimi Helipad", + "latitude_deg": "35.17077", + "longitude_deg": "136.89644", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "349253", + "ident": "JP-2629", + "type": "heliport", + "name": "Nagoya Intercity Helipad", + "latitude_deg": "35.16979", + "longitude_deg": "136.89676", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "349254", + "ident": "JP-2630", + "type": "heliport", + "name": "Misonoza Tower Helipad", + "latitude_deg": "35.16711", + "longitude_deg": "136.897", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "349255", + "ident": "JP-2631", + "type": "heliport", + "name": "Nagoya City Science Museum Helipad", + "latitude_deg": "35.16491", + "longitude_deg": "136.89914", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "349256", + "ident": "JP-2632", + "type": "heliport", + "name": "Daido Hospital Heliport", + "latitude_deg": "35.07458", + "longitude_deg": "136.90672", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "349257", + "ident": "JP-2633", + "type": "heliport", + "name": "Maeyama Heliport", + "latitude_deg": "36.20176", + "longitude_deg": "139.99801", + "elevation_ft": "70", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Shimotsuma", + "scheduled_service": "no" + }, + { + "id": "349258", + "ident": "JP-2634", + "type": "heliport", + "name": "MPA Marina Heliport", + "latitude_deg": "35.05547", + "longitude_deg": "136.75476", + "elevation_ft": "8", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Yatomi", + "scheduled_service": "no" + }, + { + "id": "349259", + "ident": "JP-2635", + "type": "heliport", + "name": "Yuge Heliport", + "latitude_deg": "34.25951", + "longitude_deg": "133.20011", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Kamijima", + "scheduled_service": "no" + }, + { + "id": "349260", + "ident": "JP-2636", + "type": "heliport", + "name": "Iwagi Heliport", + "latitude_deg": "34.24418", + "longitude_deg": "133.14665", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Kamijima", + "scheduled_service": "no" + }, + { + "id": "349261", + "ident": "JP-2637", + "type": "closed", + "name": "Ami Seaplane Base", + "latitude_deg": "36.03904", + "longitude_deg": "140.25158", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Ami", + "scheduled_service": "no" + }, + { + "id": "349263", + "ident": "JP-2638", + "type": "heliport", + "name": "Kannonyama Heliport", + "latitude_deg": "35.23031", + "longitude_deg": "137.88125", + "elevation_ft": "4619", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Tenryu", + "scheduled_service": "no" + }, + { + "id": "349264", + "ident": "JP-2639", + "type": "heliport", + "name": "Hotel Rosa Blanca Heliport", + "latitude_deg": "34.68", + "longitude_deg": "136.18007", + "elevation_ft": "692", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Iga", + "scheduled_service": "no" + }, + { + "id": "349265", + "ident": "JP-2640", + "type": "heliport", + "name": "Kamimise Heliport", + "latitude_deg": "34.39638", + "longitude_deg": "136.41671", + "elevation_ft": "271", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Odai", + "scheduled_service": "no" + }, + { + "id": "349293", + "ident": "JP-2641", + "type": "heliport", + "name": "Minamiise Municipal Hospital Heliport", + "latitude_deg": "34.35595", + "longitude_deg": "136.68835", + "elevation_ft": "312", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Minamiise", + "scheduled_service": "no" + }, + { + "id": "349294", + "ident": "JP-2642", + "type": "heliport", + "name": "Mie Prefectural Shima Hospital", + "latitude_deg": "34.33503", + "longitude_deg": "136.82009", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Shima", + "scheduled_service": "no" + }, + { + "id": "349295", + "ident": "JP-2643", + "type": "heliport", + "name": "Taso Shirahama Heliport", + "latitude_deg": "34.30082", + "longitude_deg": "136.71237", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Minamiise", + "scheduled_service": "no", + "keywords": "Ise-Shima Helicruising, Ninja Heli Shuttle" + }, + { + "id": "349296", + "ident": "JP-2644", + "type": "heliport", + "name": "Anou Service Area Heliport", + "latitude_deg": "34.77747", + "longitude_deg": "136.47192", + "elevation_ft": "135", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Tsu", + "scheduled_service": "no" + }, + { + "id": "349297", + "ident": "JP-2645", + "type": "heliport", + "name": "Ise Ninja Kingdom Heliport", + "latitude_deg": "34.4983", + "longitude_deg": "136.77618", + "elevation_ft": "46", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Ise", + "scheduled_service": "no" + }, + { + "id": "349298", + "ident": "JP-2646", + "type": "heliport", + "name": "FANUC Heliport", + "latitude_deg": "35.98705", + "longitude_deg": "138.24615", + "elevation_ft": "3747", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Chino", + "scheduled_service": "no" + }, + { + "id": "349299", + "ident": "JP-2647", + "type": "heliport", + "name": "Toyota Tateshina Heliport", + "latitude_deg": "36.05106", + "longitude_deg": "138.24771", + "elevation_ft": "3973", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Chino", + "scheduled_service": "no" + }, + { + "id": "349300", + "ident": "JP-2648", + "type": "heliport", + "name": "Yatsugatake-kogen Heliport", + "latitude_deg": "35.98984", + "longitude_deg": "138.43707", + "elevation_ft": "5222", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Minamimaki", + "scheduled_service": "no" + }, + { + "id": "349301", + "ident": "JP-2649", + "type": "heliport", + "name": "Yatsugatake Gyoja-goya Heliport", + "latitude_deg": "35.98012", + "longitude_deg": "138.36288", + "elevation_ft": "7608", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Chino", + "scheduled_service": "no" + }, + { + "id": "349302", + "ident": "JP-2650", + "type": "heliport", + "name": "Shimosuwa Heliport", + "latitude_deg": "36.05986", + "longitude_deg": "138.07929", + "elevation_ft": "2500", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Shimosuwa", + "scheduled_service": "no" + }, + { + "id": "349303", + "ident": "JP-2651", + "type": "heliport", + "name": "Aokimura Furusato Park Heliport", + "latitude_deg": "36.37173", + "longitude_deg": "138.14156", + "elevation_ft": "1738", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Aoki", + "scheduled_service": "no" + }, + { + "id": "349304", + "ident": "JP-2652", + "type": "heliport", + "name": "Hanka Heliport", + "latitude_deg": "36.40728", + "longitude_deg": "138.20586", + "elevation_ft": "1404", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Ueda", + "scheduled_service": "no" + }, + { + "id": "349305", + "ident": "JP-2653", + "type": "closed", + "name": "Ueda Airfield", + "latitude_deg": "36.40097", + "longitude_deg": "138.22606", + "elevation_ft": "1430", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Ueda", + "scheduled_service": "no" + }, + { + "id": "349306", + "ident": "JP-2654", + "type": "heliport", + "name": "Omi Heliport", + "latitude_deg": "36.44934", + "longitude_deg": "138.03038", + "elevation_ft": "2106", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Omi", + "scheduled_service": "no" + }, + { + "id": "349307", + "ident": "JP-2655", + "type": "heliport", + "name": "Nagano Prefecture Fire Academy Heliport", + "latitude_deg": "36.57156", + "longitude_deg": "138.17349", + "elevation_ft": "1162", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Nagano", + "scheduled_service": "no" + }, + { + "id": "349308", + "ident": "JP-2656", + "type": "heliport", + "name": "Nagano Interchange Heliport", + "latitude_deg": "36.57639", + "longitude_deg": "138.19887", + "elevation_ft": "1163", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Nagano", + "scheduled_service": "no" + }, + { + "id": "349309", + "ident": "JP-2657", + "type": "heliport", + "name": "Ohinata Heliport", + "latitude_deg": "36.15949", + "longitude_deg": "138.72362", + "elevation_ft": "1841", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Nanmoku", + "scheduled_service": "no" + }, + { + "id": "349310", + "ident": "JP-2658", + "type": "heliport", + "name": "Karuizawa Fire Department Heliport", + "latitude_deg": "36.3382", + "longitude_deg": "138.58958", + "elevation_ft": "3038", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Karuizawa", + "scheduled_service": "no" + }, + { + "id": "349311", + "ident": "JP-2659", + "type": "heliport", + "name": "Kita-Karuizawa Community Plaza Heliport", + "latitude_deg": "36.4734", + "longitude_deg": "138.58536", + "elevation_ft": "3497", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Naganohara", + "scheduled_service": "no" + }, + { + "id": "349312", + "ident": "JP-2660", + "type": "heliport", + "name": "Seibu Karuizawa Heliport", + "latitude_deg": "36.29933", + "longitude_deg": "138.63229", + "elevation_ft": "3625", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Karuizawa", + "scheduled_service": "no" + }, + { + "id": "349313", + "ident": "JP-2661", + "type": "heliport", + "name": "Oyama Tunnel Heliport", + "latitude_deg": "36.29043", + "longitude_deg": "138.67112", + "elevation_ft": "2575", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Annaka", + "scheduled_service": "no", + "keywords": "Nishinomaki, Usui-Karuizawa Interchange" + }, + { + "id": "349314", + "ident": "JP-2662", + "type": "heliport", + "name": "Shobu-an Heliport", + "latitude_deg": "36.3054", + "longitude_deg": "138.41697", + "elevation_ft": "2168", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Komoro", + "scheduled_service": "no" + }, + { + "id": "349315", + "ident": "JP-2663", + "type": "heliport", + "name": "Saku General Hospital Koumi Branch Heliport", + "latitude_deg": "36.09423", + "longitude_deg": "138.48377", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Koumi", + "scheduled_service": "no" + }, + { + "id": "349316", + "ident": "JP-2664", + "type": "heliport", + "name": "Happusan Tunnel Heliport", + "latitude_deg": "36.26684", + "longitude_deg": "138.57394", + "elevation_ft": "3031", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Saku", + "scheduled_service": "no" + }, + { + "id": "349338", + "ident": "JP-2665", + "type": "heliport", + "name": "Uwajima City Hospital Heliport", + "latitude_deg": "33.21535", + "longitude_deg": "132.56491", + "elevation_ft": "155", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Uwajima", + "scheduled_service": "no" + }, + { + "id": "349339", + "ident": "JP-2666", + "type": "heliport", + "name": "Oue Heliport", + "latitude_deg": "33.47872", + "longitude_deg": "133.10053", + "elevation_ft": "1430", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Niyodogawa", + "scheduled_service": "no" + }, + { + "id": "349340", + "ident": "JP-2667", + "type": "heliport", + "name": "Susaki Heliport", + "latitude_deg": "33.39059", + "longitude_deg": "133.27665", + "elevation_ft": "226", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Susaki", + "scheduled_service": "no" + }, + { + "id": "349357", + "ident": "JP-2668", + "type": "heliport", + "name": "Sendaimura Heliport", + "latitude_deg": "37.33657", + "longitude_deg": "140.80951", + "elevation_ft": "1359", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Kawauchi", + "scheduled_service": "no" + }, + { + "id": "349358", + "ident": "JP-2669", + "type": "heliport", + "name": "Koriyama Daiichi Building Helipad", + "latitude_deg": "37.39934", + "longitude_deg": "140.38293", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Koriyama", + "scheduled_service": "no" + }, + { + "id": "349359", + "ident": "JP-2670", + "type": "heliport", + "name": "Ogawa Heliport", + "latitude_deg": "36.9171", + "longitude_deg": "140.58228", + "elevation_ft": "1781", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Kitaibaraki", + "scheduled_service": "no" + }, + { + "id": "349360", + "ident": "JP-2671", + "type": "heliport", + "name": "Ishida Heliport", + "latitude_deg": "37.06548", + "longitude_deg": "140.84385", + "elevation_ft": "229", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Iwaki", + "scheduled_service": "no" + }, + { + "id": "349375", + "ident": "JP-2672", + "type": "heliport", + "name": "Tsuchiura Kyodo Hospital Heliport", + "latitude_deg": "36.08395", + "longitude_deg": "140.25997", + "elevation_ft": "75", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Tsuchiura", + "scheduled_service": "no" + }, + { + "id": "349407", + "ident": "JP-2673", + "type": "heliport", + "name": "University of Tsukuba Hospital Rooftop Heliport", + "latitude_deg": "36.09208", + "longitude_deg": "140.10195", + "elevation_ft": "248", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Tsukuba", + "scheduled_service": "no" + }, + { + "id": "349408", + "ident": "JP-2674", + "type": "heliport", + "name": "Tsukuba Medical Center Heliport", + "latitude_deg": "36.09162", + "longitude_deg": "140.1061", + "elevation_ft": "145", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Tsukuba", + "scheduled_service": "no" + }, + { + "id": "349654", + "ident": "JP-2675", + "type": "heliport", + "name": "NHI Biratori Municipal Hospital Heliport", + "latitude_deg": "42.58703", + "longitude_deg": "142.13972", + "elevation_ft": "85", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Biratori", + "scheduled_service": "no" + }, + { + "id": "349655", + "ident": "JP-2676", + "type": "heliport", + "name": "Kanayama Dam Heliport", + "latitude_deg": "43.13347", + "longitude_deg": "142.43738", + "elevation_ft": "961", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Minamifurano", + "scheduled_service": "no" + }, + { + "id": "349656", + "ident": "JP-2677", + "type": "heliport", + "name": "Kiyosato Dam Heliport", + "latitude_deg": "43.44057", + "longitude_deg": "142.28466", + "elevation_ft": "433", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Ashibetsu", + "scheduled_service": "no" + }, + { + "id": "349761", + "ident": "JP-2678", + "type": "closed", + "name": "Yotsugoya Gliderport", + "latitude_deg": "39.66154", + "longitude_deg": "140.12267", + "elevation_ft": "9", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Akita", + "scheduled_service": "no", + "keywords": "Hatenaki Yozora e" + }, + { + "id": "349762", + "ident": "JP-2679", + "type": "closed", + "name": "Rokugo Airfield", + "latitude_deg": "39.42949", + "longitude_deg": "140.53671", + "elevation_ft": "120", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Misato", + "scheduled_service": "no", + "wikipedia_link": "https://ja.wikipedia.org/wiki/%E5%85%AD%E9%83%B7%E9%A3%9B%E8%A1%8C%E5%A0%B4" + }, + { + "id": "349763", + "ident": "JP-2680", + "type": "closed", + "name": "Irifune-cho Seaplane Base", + "latitude_deg": "33.59577", + "longitude_deg": "130.38066", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Fukuoka", + "scheduled_service": "no", + "wikipedia_link": "https://ja.wikipedia.org/wiki/%E5%85%A5%E8%88%B9%E7%94%BA%E9%A3%9B%E8%A1%8C%E5%A0%B4" + }, + { + "id": "349764", + "ident": "JP-2681", + "type": "closed", + "name": "Sapporo Airfield", + "latitude_deg": "43.089639", + "longitude_deg": "141.337889", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Sapporo", + "scheduled_service": "no", + "wikipedia_link": "https://ja.wikipedia.org/wiki/%E6%9C%AD%E5%B9%8C%E9%A3%9B%E8%A1%8C%E5%A0%B4_(%E5%88%9D%E4%BB%A3)" + }, + { + "id": "349765", + "ident": "JP-2682", + "type": "closed", + "name": "Shikiu Airfield", + "latitude_deg": "42.52883", + "longitude_deg": "141.28966", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Shiraoi", + "scheduled_service": "no", + "wikipedia_link": "https://ja.wikipedia.org/wiki/%E6%95%B7%E7%94%9F%E9%A3%9B%E8%A1%8C%E5%A0%B4", + "keywords": "Shikifu" + }, + { + "id": "349766", + "ident": "JP-2683", + "type": "closed", + "name": "Wakkanai Naval Seaplane Base", + "latitude_deg": "45.38988", + "longitude_deg": "141.76728", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Wakkanai", + "scheduled_service": "no" + }, + { + "id": "350140", + "ident": "JP-2684", + "type": "heliport", + "name": "Daikata Heliport", + "latitude_deg": "35.77727", + "longitude_deg": "140.27391", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Narita", + "scheduled_service": "no" + }, + { + "id": "350155", + "ident": "JP-2685", + "type": "heliport", + "name": "Canon Marketing Japan Building Helipad", + "latitude_deg": "35.65452", + "longitude_deg": "140.040924", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Chiba", + "scheduled_service": "no" + }, + { + "id": "350156", + "ident": "JP-2686", + "type": "heliport", + "name": "Komatsugawa Heliport", + "latitude_deg": "35.68388", + "longitude_deg": "139.84861", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Edogawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "350159", + "ident": "JP-2687", + "type": "heliport", + "name": "Asics Japan Headquarters Heliport", + "latitude_deg": "35.66859", + "longitude_deg": "139.82953", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "350160", + "ident": "JP-2688", + "type": "heliport", + "name": "Cosmo Tokyo Bay Tower Helipad", + "latitude_deg": "35.65541", + "longitude_deg": "139.77064", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "350164", + "ident": "JP-2689", + "type": "heliport", + "name": "Tatsumi Studios Helipad", + "latitude_deg": "35.64418", + "longitude_deg": "139.81613", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "350165", + "ident": "JP-2690", + "type": "heliport", + "name": "Soho Odaiba Helipad", + "latitude_deg": "35.61824", + "longitude_deg": "139.77524", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Koto, Tokyo", + "scheduled_service": "no" + }, + { + "id": "350166", + "ident": "JP-2691", + "type": "heliport", + "name": "Tominheim Shibaura Sanchome Helipad", + "latitude_deg": "35.63914", + "longitude_deg": "139.75396", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "350167", + "ident": "JP-2692", + "type": "heliport", + "name": "Laguna Tower Shinagawa Helipad", + "latitude_deg": "35.61606", + "longitude_deg": "139.74812", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "350168", + "ident": "JP-2693", + "type": "heliport", + "name": "Shinagawa Seaside Park Tower Helipad", + "latitude_deg": "35.61034", + "longitude_deg": "139.74816", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "350169", + "ident": "JP-2694", + "type": "heliport", + "name": "Shinagawa Seaside TS Tower Helipad", + "latitude_deg": "35.60986", + "longitude_deg": "139.7481", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "350170", + "ident": "JP-2695", + "type": "heliport", + "name": "Shinagawa Seaside West Tower Helipad", + "latitude_deg": "35.60932", + "longitude_deg": "139.74787", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "350171", + "ident": "JP-2696", + "type": "heliport", + "name": "Osaki Bright Tower Helipad", + "latitude_deg": "35.62179", + "longitude_deg": "139.73054", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "350172", + "ident": "JP-2697", + "type": "heliport", + "name": "Park City Osaki Tower Helipad", + "latitude_deg": "35.62254", + "longitude_deg": "139.73166", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "350173", + "ident": "JP-2698", + "type": "heliport", + "name": "Tokyo Master Place Helipad", + "latitude_deg": "35.58431", + "longitude_deg": "139.73749", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Ota, Tokyo", + "scheduled_service": "no" + }, + { + "id": "350174", + "ident": "JP-2699", + "type": "heliport", + "name": "Omori Bell Port Helipad", + "latitude_deg": "35.58814", + "longitude_deg": "139.73223", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinagawa, Tokyo", + "scheduled_service": "no" + }, + { + "id": "350175", + "ident": "JP-2700", + "type": "heliport", + "name": "Eiju General Hospital Heliport", + "latitude_deg": "35.70973", + "longitude_deg": "139.77969", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Taito, Tokyo", + "scheduled_service": "no" + }, + { + "id": "350176", + "ident": "JP-2701", + "type": "heliport", + "name": "Tokyo Senior Hospital Heliport", + "latitude_deg": "35.5652", + "longitude_deg": "139.74712", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Ota, Tokyo", + "scheduled_service": "no" + }, + { + "id": "350177", + "ident": "JP-2702", + "type": "heliport", + "name": "Kawasaki Municipal Hospital Heliport", + "latitude_deg": "35.52669", + "longitude_deg": "139.70601", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "350249", + "ident": "JP-2703", + "type": "closed", + "name": "Otake Airfield", + "latitude_deg": "34.21389", + "longitude_deg": "132.23731", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Otake", + "scheduled_service": "no" + }, + { + "id": "350250", + "ident": "JP-2704", + "type": "heliport", + "name": "Ejiria Helipad", + "latitude_deg": "35.02379", + "longitude_deg": "138.48764", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "350251", + "ident": "JP-2705", + "type": "heliport", + "name": "Kyoto Hotel Okura Helipad", + "latitude_deg": "35.01178", + "longitude_deg": "135.76941", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kyoto", + "scheduled_service": "no" + }, + { + "id": "350255", + "ident": "JP-2706", + "type": "heliport", + "name": "Chigasaki City Hall Heliport", + "latitude_deg": "35.33394", + "longitude_deg": "139.40355", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Chigasaki", + "scheduled_service": "no" + }, + { + "id": "350256", + "ident": "JP-2707", + "type": "heliport", + "name": "List Residence Tsujido Tower Helipad", + "latitude_deg": "35.33621", + "longitude_deg": "139.44761", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Fujisawa", + "scheduled_service": "no" + }, + { + "id": "350257", + "ident": "JP-2708", + "type": "heliport", + "name": "Fujisawa City Hall Heliport", + "latitude_deg": "35.3388", + "longitude_deg": "139.49104", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Fujisawa", + "scheduled_service": "no" + }, + { + "id": "350258", + "ident": "JP-2709", + "type": "heliport", + "name": "Chigasaki Municipal Hospital Heliport", + "latitude_deg": "35.3398", + "longitude_deg": "139.41528", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Chigasaki", + "scheduled_service": "no" + }, + { + "id": "350260", + "ident": "JP-2710", + "type": "heliport", + "name": "Yokohama City Hall Heliport", + "latitude_deg": "35.45042", + "longitude_deg": "139.63419", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "350261", + "ident": "JP-2711", + "type": "heliport", + "name": "Tower Yokohama Kitanaka Helipad", + "latitude_deg": "35.45113", + "longitude_deg": "139.63594", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "350262", + "ident": "JP-2712", + "type": "heliport", + "name": "Hiratsuka City Hall Heliport", + "latitude_deg": "35.33504", + "longitude_deg": "139.34949", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Hiratsuka", + "scheduled_service": "no" + }, + { + "id": "350263", + "ident": "JP-2713", + "type": "heliport", + "name": "Toyohashi City Hall Heliport", + "latitude_deg": "34.76892", + "longitude_deg": "137.39212", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyohashi", + "scheduled_service": "no" + }, + { + "id": "350264", + "ident": "JP-2714", + "type": "heliport", + "name": "Aichi Prefecture Self Government Center Helipad", + "latitude_deg": "35.18137", + "longitude_deg": "136.90407", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "350265", + "ident": "JP-2715", + "type": "heliport", + "name": "Nagoya Joint Government Building Number 1 Helipad", + "latitude_deg": "35.18112", + "longitude_deg": "136.90324", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "350266", + "ident": "JP-2716", + "type": "heliport", + "name": "Meijo Hospital Heliport", + "latitude_deg": "35.18042", + "longitude_deg": "136.89944", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "350280", + "ident": "JP-2717", + "type": "heliport", + "name": "Toyota City Hall Heliport", + "latitude_deg": "35.08349", + "longitude_deg": "137.15703", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyota", + "scheduled_service": "no" + }, + { + "id": "350281", + "ident": "JP-2718", + "type": "heliport", + "name": "Gifu Municipal Hospital Heliport", + "latitude_deg": "35.41375", + "longitude_deg": "136.73358", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Gifu", + "scheduled_service": "no" + }, + { + "id": "350333", + "ident": "JP-2719", + "type": "heliport", + "name": "Mutsu City Hall Heliport", + "latitude_deg": "41.29345", + "longitude_deg": "141.1839", + "elevation_ft": "43", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Mutsu", + "scheduled_service": "no" + }, + { + "id": "350334", + "ident": "JP-2720", + "type": "heliport", + "name": "Higashidori Heliport", + "latitude_deg": "41.28069", + "longitude_deg": "141.33085", + "elevation_ft": "130", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Higashidori", + "scheduled_service": "no" + }, + { + "id": "350335", + "ident": "JP-2721", + "type": "heliport", + "name": "Hachinohe Municipal Hospital Heliport", + "latitude_deg": "40.49243", + "longitude_deg": "141.51382", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Hachinohe", + "scheduled_service": "no" + }, + { + "id": "350336", + "ident": "JP-2722", + "type": "heliport", + "name": "Aoba-dori Plaza Helipad", + "latitude_deg": "38.26015", + "longitude_deg": "140.87782", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Sendai", + "scheduled_service": "no" + }, + { + "id": "350362", + "ident": "JP-2723", + "type": "heliport", + "name": "Chutoen General Medical Center Heliport", + "latitude_deg": "34.75731", + "longitude_deg": "137.99723", + "elevation_ft": "210", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Kakegawa", + "scheduled_service": "no" + }, + { + "id": "350426", + "ident": "JP-2724", + "type": "heliport", + "name": "Ichinomiya General Hospital Heliport", + "latitude_deg": "35.30535", + "longitude_deg": "136.80618", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Ichinomiya", + "scheduled_service": "no" + }, + { + "id": "350427", + "ident": "JP-2725", + "type": "heliport", + "name": "Ichinomiya Nishi Hospital Heliport", + "latitude_deg": "35.31268", + "longitude_deg": "136.77792", + "elevation_ft": "46", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Ichinomiya", + "scheduled_service": "no" + }, + { + "id": "350692", + "ident": "JP-2726", + "type": "heliport", + "name": "Gifu Heart Center Heliport", + "latitude_deg": "35.39159", + "longitude_deg": "136.71787", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Gifu", + "scheduled_service": "no" + }, + { + "id": "350693", + "ident": "JP-2727", + "type": "heliport", + "name": "Gifu Prefectural Police Headquarters Heliport", + "latitude_deg": "35.39121", + "longitude_deg": "136.72043", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Gifu", + "scheduled_service": "no" + }, + { + "id": "350694", + "ident": "JP-2728", + "type": "heliport", + "name": "Gifu Prefectural Office Heliport", + "latitude_deg": "35.39268", + "longitude_deg": "136.72401", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Gifu", + "scheduled_service": "no" + }, + { + "id": "351238", + "ident": "JP-2729", + "type": "heliport", + "name": "Higashishirakawa Heliport", + "latitude_deg": "35.64575", + "longitude_deg": "137.32049", + "elevation_ft": "1422", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Shirakawa", + "scheduled_service": "no" + }, + { + "id": "351239", + "ident": "JP-2730", + "type": "heliport", + "name": "Kawanoe Heliport", + "latitude_deg": "33.99972", + "longitude_deg": "133.58592", + "elevation_ft": "52", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Shikokuchuo", + "scheduled_service": "no" + }, + { + "id": "351240", + "ident": "JP-2731", + "type": "heliport", + "name": "Shingu Heliport", + "latitude_deg": "33.92008", + "longitude_deg": "133.64517", + "elevation_ft": "1047", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Shikokuchuo", + "scheduled_service": "no" + }, + { + "id": "351315", + "ident": "JP-2732", + "type": "heliport", + "name": "Japanese Diet Akasaka Dormitory Helipad", + "latitude_deg": "35.67025", + "longitude_deg": "139.73956", + "elevation_ft": "150", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "351316", + "ident": "JP-2733", + "type": "heliport", + "name": "Akasaka Tower Residence Top of the Hill Heliport", + "latitude_deg": "35.66974", + "longitude_deg": "139.7386", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chiyoda, Tokyo", + "scheduled_service": "no" + }, + { + "id": "351317", + "ident": "JP-2734", + "type": "heliport", + "name": "Roppongi Tokyo Club Residence Helipad", + "latitude_deg": "35.66381", + "longitude_deg": "139.73494", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "351318", + "ident": "JP-2735", + "type": "heliport", + "name": "Sumitomo Real Estate Shibuya First Tower Helipad", + "latitude_deg": "35.65808", + "longitude_deg": "139.70865", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "351319", + "ident": "JP-2736", + "type": "heliport", + "name": "Shibuya Scramble Square Heliport", + "latitude_deg": "35.658327", + "longitude_deg": "139.702216", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "351320", + "ident": "JP-2737", + "type": "heliport", + "name": "Tokyu Plaza Shibuya Helipad", + "latitude_deg": "35.65745", + "longitude_deg": "139.70017", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shibuya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "351321", + "ident": "JP-2738", + "type": "heliport", + "name": "Sumitomo Real Estate Aobadai Tower Helipad", + "latitude_deg": "35.65264", + "longitude_deg": "139.69032", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Meguro, Tokyo", + "scheduled_service": "no" + }, + { + "id": "351323", + "ident": "JP-2739", + "type": "heliport", + "name": "Villeneuve Tower Komazawa Helipad", + "latitude_deg": "35.63478", + "longitude_deg": "139.66495", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Setagaya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "351324", + "ident": "JP-2740", + "type": "heliport", + "name": "Gotenba Service Area Heliport", + "latitude_deg": "35.31122", + "longitude_deg": "138.96435", + "elevation_ft": "1407", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Gotenba", + "scheduled_service": "no" + }, + { + "id": "351325", + "ident": "JP-2741", + "type": "heliport", + "name": "Shizuoka Prefectural Cancer Center Heliport", + "latitude_deg": "35.15882", + "longitude_deg": "138.8831", + "elevation_ft": "495", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Nagaizumi", + "scheduled_service": "no" + }, + { + "id": "351326", + "ident": "JP-2742", + "type": "heliport", + "name": "Shizuoka Prefectural Police East Driver's License Center Heliport", + "latitude_deg": "35.14804", + "longitude_deg": "138.85458", + "elevation_ft": "476", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Numazu", + "scheduled_service": "no" + }, + { + "id": "351327", + "ident": "JP-2743", + "type": "heliport", + "name": "Toyokawa Interchange Heliport", + "latitude_deg": "34.83782", + "longitude_deg": "137.41284", + "elevation_ft": "72", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Toyokawa", + "scheduled_service": "no" + }, + { + "id": "351352", + "ident": "JP-2744", + "type": "heliport", + "name": "JASDF Unishima Sub Base Heliport", + "latitude_deg": "34.70648", + "longitude_deg": "129.44038", + "elevation_ft": "79", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Tsushima", + "scheduled_service": "no" + }, + { + "id": "351353", + "ident": "JP-2745", + "type": "heliport", + "name": "JMSDF Kamitsushima Monitoring Station Heliport", + "latitude_deg": "34.68476", + "longitude_deg": "129.43036", + "elevation_ft": "361", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Tsushima", + "scheduled_service": "no" + }, + { + "id": "351388", + "ident": "JP-2746", + "type": "heliport", + "name": "Nata Heliport", + "latitude_deg": "33.67776", + "longitude_deg": "130.39177", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Fukuoka", + "scheduled_service": "no" + }, + { + "id": "351389", + "ident": "JP-2747", + "type": "heliport", + "name": "Kyushu University Hospital Heliport", + "latitude_deg": "33.60936", + "longitude_deg": "130.41585", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Fukuoka", + "scheduled_service": "no" + }, + { + "id": "351390", + "ident": "JP-2748", + "type": "heliport", + "name": "JMSDF Shimotsushima Observation Station Heliport", + "latitude_deg": "34.13724", + "longitude_deg": "129.27663", + "elevation_ft": "335", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Tsushima", + "scheduled_service": "no" + }, + { + "id": "351402", + "ident": "JP-2749", + "type": "heliport", + "name": "Meiji Yasuda Seimei Aoyama Palacio Helipad", + "latitude_deg": "35.66537", + "longitude_deg": "139.71119", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "351404", + "ident": "JP-2750", + "type": "heliport", + "name": "Ministry of Land, Infrastructure, Transport and Tourism Helipad", + "latitude_deg": "35.05436", + "longitude_deg": "136.85035", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "no" + }, + { + "id": "351405", + "ident": "JP-2751", + "type": "heliport", + "name": "6-chome-2-14 Kaigandori Helipad", + "latitude_deg": "34.683023", + "longitude_deg": "135.182451", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "351406", + "ident": "JP-2752", + "type": "heliport", + "name": "Canal Town East Helipad", + "latitude_deg": "34.66803", + "longitude_deg": "135.16557", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "351407", + "ident": "JP-2753", + "type": "heliport", + "name": "Canal Town West Helipad", + "latitude_deg": "34.66538", + "longitude_deg": "135.16129", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "351408", + "ident": "JP-2754", + "type": "heliport", + "name": "Canal Town Center Helipad", + "latitude_deg": "34.66713", + "longitude_deg": "135.16383", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "351411", + "ident": "JP-2755", + "type": "heliport", + "name": "Asuta Shinnagata Towers Helipad", + "latitude_deg": "34.6536", + "longitude_deg": "135.1475", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "351412", + "ident": "JP-2756", + "type": "heliport", + "name": "5-chome-3-1 Ohashicho Helipad", + "latitude_deg": "34.6554", + "longitude_deg": "135.14544", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "351413", + "ident": "JP-2757", + "type": "heliport", + "name": "Asuta Plaza West Helipad", + "latitude_deg": "34.65482", + "longitude_deg": "135.14488", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "no" + }, + { + "id": "351414", + "ident": "JP-2758", + "type": "heliport", + "name": "NHO Okayama Medical Center Heliport", + "latitude_deg": "34.70818", + "longitude_deg": "133.8995", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Okayama", + "scheduled_service": "no" + }, + { + "id": "351415", + "ident": "JP-2759", + "type": "heliport", + "name": "Ise Bay Typhoon Memorial Helipad", + "latitude_deg": "35.03274", + "longitude_deg": "136.72193", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Kuwana", + "scheduled_service": "no" + }, + { + "id": "351671", + "ident": "JP-2760", + "type": "closed", + "name": "Obihiro #2 Airfield", + "latitude_deg": "42.96648", + "longitude_deg": "143.19248", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Obihiro", + "scheduled_service": "no" + }, + { + "id": "351919", + "ident": "JP-2761", + "type": "heliport", + "name": "Mitsubishi Tanabe Pharmaceutical Helipad", + "latitude_deg": "34.68824", + "longitude_deg": "135.50328", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "351921", + "ident": "JP-2762", + "type": "heliport", + "name": "Honmachibashi Tower Helipad", + "latitude_deg": "34.68539", + "longitude_deg": "135.51138", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "351922", + "ident": "JP-2763", + "type": "heliport", + "name": "Kyowa Exio Osaka Uchihonmachi Building Helipad", + "latitude_deg": "34.68323", + "longitude_deg": "135.51363", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "351923", + "ident": "JP-2764", + "type": "heliport", + "name": "Be All Osaka Otemae Tower Heliport", + "latitude_deg": "34.68518", + "longitude_deg": "135.5164", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "351924", + "ident": "JP-2765", + "type": "heliport", + "name": "Chuo Odori FN Building Helipad", + "latitude_deg": "34.68199", + "longitude_deg": "135.51544", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "351925", + "ident": "JP-2766", + "type": "heliport", + "name": "Osaka International Cancer Institute Heliport", + "latitude_deg": "34.68474", + "longitude_deg": "135.51908", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "351926", + "ident": "JP-2767", + "type": "heliport", + "name": "New Annex South Building Helipad", + "latitude_deg": "34.68395", + "longitude_deg": "135.51843", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "351927", + "ident": "JP-2768", + "type": "heliport", + "name": "Hotel Keihan Tenmabashi Helipad", + "latitude_deg": "34.68959", + "longitude_deg": "135.5162", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "351928", + "ident": "JP-2769", + "type": "heliport", + "name": "Geo Tower Takatsuki Muse Front Heliport", + "latitude_deg": "34.8535", + "longitude_deg": "135.61973", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Takatsuki", + "scheduled_service": "no" + }, + { + "id": "351929", + "ident": "JP-2770", + "type": "heliport", + "name": "Geo Tower Takatsuki Muse Garden Heliport", + "latitude_deg": "34.85414", + "longitude_deg": "135.62087", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Takatsuki", + "scheduled_service": "no" + }, + { + "id": "351930", + "ident": "JP-2771", + "type": "heliport", + "name": "Geo Takatsuki Muse Residence Helipad", + "latitude_deg": "34.85469", + "longitude_deg": "135.62004", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Takatsuki", + "scheduled_service": "no" + }, + { + "id": "351931", + "ident": "JP-2772", + "type": "heliport", + "name": "4-1 Hakubaicho Helipad", + "latitude_deg": "34.85311", + "longitude_deg": "135.61909", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Takatsuki", + "scheduled_service": "no" + }, + { + "id": "351932", + "ident": "JP-2773", + "type": "heliport", + "name": "Laurel Square Takatsuki East Tower Helipad", + "latitude_deg": "34.85226", + "longitude_deg": "135.61708", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Takatsuki", + "scheduled_service": "no" + }, + { + "id": "351934", + "ident": "JP-2774", + "type": "heliport", + "name": "Laurel Square Takatsuki West Tower Helipad", + "latitude_deg": "34.85135", + "longitude_deg": "135.6159", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Takatsuki", + "scheduled_service": "no" + }, + { + "id": "351935", + "ident": "JP-2775", + "type": "heliport", + "name": "Yodoyabashi Apple Tower Residence Heliport", + "latitude_deg": "34.6894", + "longitude_deg": "135.50333", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "351936", + "ident": "JP-2776", + "type": "heliport", + "name": "Crevia Tower Osaka Honmachi Helipad", + "latitude_deg": "34.68622", + "longitude_deg": "135.50338", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "351937", + "ident": "JP-2777", + "type": "heliport", + "name": "Viale Osaka Helipad", + "latitude_deg": "34.68461", + "longitude_deg": "135.50312", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "351938", + "ident": "JP-2778", + "type": "heliport", + "name": "San Marion NBF Tower Helipad", + "latitude_deg": "34.68247", + "longitude_deg": "135.50385", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "351976", + "ident": "JP-2779", + "type": "heliport", + "name": "Nanba Skyo Helipad", + "latitude_deg": "34.66393", + "longitude_deg": "135.50081", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "351977", + "ident": "JP-2780", + "type": "heliport", + "name": "Nanba Marui Helipad", + "latitude_deg": "34.66554", + "longitude_deg": "135.50088", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "351978", + "ident": "JP-2781", + "type": "heliport", + "name": "JR Suita Station North Heliport", + "latitude_deg": "34.76493", + "longitude_deg": "135.52456", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Suita", + "scheduled_service": "no" + }, + { + "id": "352860", + "ident": "JP-2782", + "type": "heliport", + "name": "Koshibu Dam Heliport", + "latitude_deg": "35.605244", + "longitude_deg": "137.979108", + "elevation_ft": "2070", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Matsukawa", + "scheduled_service": "no" + }, + { + "id": "351980", + "ident": "JP-2783", + "type": "heliport", + "name": "Laurel Square Kento Residence West Helipad", + "latitude_deg": "34.7813", + "longitude_deg": "135.54348", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Settsu", + "scheduled_service": "no" + }, + { + "id": "351981", + "ident": "JP-2784", + "type": "heliport", + "name": "Laurel Square Kento Residence East Helipad", + "latitude_deg": "34.7822", + "longitude_deg": "135.5445", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Settsu", + "scheduled_service": "no" + }, + { + "id": "351982", + "ident": "JP-2785", + "type": "heliport", + "name": "Viera Kishibe Kento Helipad", + "latitude_deg": "34.77765", + "longitude_deg": "135.53968", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Suita", + "scheduled_service": "no" + }, + { + "id": "351983", + "ident": "JP-2786", + "type": "heliport", + "name": "Kansai University Takatsuki Muse Campus Helipad", + "latitude_deg": "34.85506", + "longitude_deg": "135.62302", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Takatsuki", + "scheduled_service": "no" + }, + { + "id": "351984", + "ident": "JP-2787", + "type": "heliport", + "name": "Nidec Corporation Head Office Building Heliport", + "latitude_deg": "34.95124", + "longitude_deg": "135.71602", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kyoto", + "scheduled_service": "no" + }, + { + "id": "351985", + "ident": "JP-2788", + "type": "heliport", + "name": "City Tower Higashi Umeda Park Front Helipad", + "latitude_deg": "34.70107", + "longitude_deg": "135.508", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "351994", + "ident": "JP-2789", + "type": "heliport", + "name": "Esty Maison Nishitenma Helipad", + "latitude_deg": "34.69856", + "longitude_deg": "135.5066", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "351995", + "ident": "JP-2790", + "type": "heliport", + "name": "Ujiden Building Helipad", + "latitude_deg": "34.69768", + "longitude_deg": "135.50438", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "351996", + "ident": "JP-2791", + "type": "heliport", + "name": "Umeda East City Tower Helipad", + "latitude_deg": "34.69691", + "longitude_deg": "135.50742", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "351997", + "ident": "JP-2792", + "type": "heliport", + "name": "Hotel Elcient Osaka Helipad", + "latitude_deg": "34.69837", + "longitude_deg": "135.50288", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "351998", + "ident": "JP-2793", + "type": "heliport", + "name": "Maison de Ville Umeda Helipad", + "latitude_deg": "34.69875", + "longitude_deg": "135.50231", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "351999", + "ident": "JP-2794", + "type": "heliport", + "name": "Osaka Amenity Park Tower Residence West Helipad", + "latitude_deg": "34.69911", + "longitude_deg": "135.51941", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352000", + "ident": "JP-2795", + "type": "heliport", + "name": "Osaka Amenity Park Tower Residence East Helipad", + "latitude_deg": "34.69912", + "longitude_deg": "135.52051", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352001", + "ident": "JP-2796", + "type": "heliport", + "name": "Osaka Amenity Park Tower Heliport", + "latitude_deg": "34.6999", + "longitude_deg": "135.51979", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352002", + "ident": "JP-2797", + "type": "heliport", + "name": "Imperial Hotel Osaka Heliport", + "latitude_deg": "34.70104", + "longitude_deg": "135.51952", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352003", + "ident": "JP-2798", + "type": "heliport", + "name": "Geo Tower Minamimorimachi Heliport", + "latitude_deg": "34.69799", + "longitude_deg": "135.5167", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352004", + "ident": "JP-2799", + "type": "heliport", + "name": "Laurel Tower Minamimorimachi Le Cinq Helipad", + "latitude_deg": "34.69774", + "longitude_deg": "135.51537", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352005", + "ident": "JP-2800", + "type": "heliport", + "name": "Elgrace Tower Osaka Doshin Helipad", + "latitude_deg": "34.70024", + "longitude_deg": "135.51625", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352009", + "ident": "JP-2801", + "type": "heliport", + "name": "Uniheim Yorikimachi Park Helipad", + "latitude_deg": "34.70035", + "longitude_deg": "135.51393", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352010", + "ident": "JP-2802", + "type": "heliport", + "name": "MUFG Bank Osaka Building Annex Helipad", + "latitude_deg": "34.68931", + "longitude_deg": "135.50238", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352011", + "ident": "JP-2803", + "type": "heliport", + "name": "Yodoyabashi Flex Tower Helipad", + "latitude_deg": "34.68956", + "longitude_deg": "135.50233", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352012", + "ident": "JP-2804", + "type": "heliport", + "name": "JA Osaka Center Building Helipad", + "latitude_deg": "34.68973", + "longitude_deg": "135.50209", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352013", + "ident": "JP-2805", + "type": "heliport", + "name": "City Tower Osaka The River and Parks Heliport", + "latitude_deg": "34.70796", + "longitude_deg": "135.51634", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352014", + "ident": "JP-2806", + "type": "heliport", + "name": "Osaka Municipal General Hospital Heliport", + "latitude_deg": "34.70752", + "longitude_deg": "135.52381", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352015", + "ident": "JP-2807", + "type": "heliport", + "name": "APA Villa Hotel Osaka Tanimachi Yonchome-Ekimae Helipad", + "latitude_deg": "34.68072", + "longitude_deg": "135.51657", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352016", + "ident": "JP-2808", + "type": "heliport", + "name": "Park House Tanimachi Gochome Helipad", + "latitude_deg": "34.67781", + "longitude_deg": "135.5181", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352017", + "ident": "JP-2809", + "type": "heliport", + "name": "Royal Tanimachi Tower Helipad", + "latitude_deg": "34.67685", + "longitude_deg": "135.5175", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352019", + "ident": "JP-2810", + "type": "heliport", + "name": "D'Grance Uemachidai High Residence Helipad", + "latitude_deg": "34.67833", + "longitude_deg": "135.52041", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352020", + "ident": "JP-2811", + "type": "heliport", + "name": "Grand Maison Uehonmachi Tower Heliport", + "latitude_deg": "34.67838", + "longitude_deg": "135.51989", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352021", + "ident": "JP-2812", + "type": "heliport", + "name": "King Mansion Tenjinbashi 2 Helipad", + "latitude_deg": "34.71326", + "longitude_deg": "135.51095", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352022", + "ident": "JP-2813", + "type": "heliport", + "name": "Grand Maison Shin-Umeda Tower Heliport", + "latitude_deg": "34.70146", + "longitude_deg": "135.4868", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352023", + "ident": "JP-2814", + "type": "heliport", + "name": "City Tower Nishi-Umeda Heliport", + "latitude_deg": "34.70006", + "longitude_deg": "135.48569", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352024", + "ident": "JP-2815", + "type": "heliport", + "name": "KM Nishi-Umeda Building Helipad", + "latitude_deg": "34.70007", + "longitude_deg": "135.48628", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352025", + "ident": "JP-2816", + "type": "heliport", + "name": "Livio Miyakojima Park Square Helipad", + "latitude_deg": "34.70309", + "longitude_deg": "135.52866", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352026", + "ident": "JP-2817", + "type": "heliport", + "name": "NTT West Japan New Kyobashi Building Helipad", + "latitude_deg": "34.69908", + "longitude_deg": "135.53086", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352027", + "ident": "JP-2818", + "type": "heliport", + "name": "Royal Tower Osaka Tanimachi Helipad", + "latitude_deg": "34.68084", + "longitude_deg": "135.51776", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352028", + "ident": "JP-2819", + "type": "heliport", + "name": "NHK Osaka Broadcasting Station Heliport", + "latitude_deg": "34.68271", + "longitude_deg": "135.52017", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352029", + "ident": "JP-2820", + "type": "heliport", + "name": "Osaka Museum of History Helipad", + "latitude_deg": "34.68272", + "longitude_deg": "135.52091", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352030", + "ident": "JP-2821", + "type": "heliport", + "name": "Grand Maison Uemachidai Residence Tower Heliport", + "latitude_deg": "34.67927", + "longitude_deg": "135.51369", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352031", + "ident": "JP-2822", + "type": "heliport", + "name": "Geo Tenroku Twin Towers East Helipad", + "latitude_deg": "34.71299", + "longitude_deg": "135.51381", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352032", + "ident": "JP-2823", + "type": "heliport", + "name": "Geo Tenroku Twin Towers West Helipad", + "latitude_deg": "34.7132", + "longitude_deg": "135.5128", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352033", + "ident": "JP-2824", + "type": "heliport", + "name": "Famille Tenjinbashi Green Avenue Helipad", + "latitude_deg": "34.71567", + "longitude_deg": "135.51355", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352034", + "ident": "JP-2825", + "type": "heliport", + "name": "Yodobashi Umeda Tower Heliport", + "latitude_deg": "34.70466", + "longitude_deg": "135.49601", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352035", + "ident": "JP-2826", + "type": "heliport", + "name": "Premist Umeda South Helipad", + "latitude_deg": "34.70632", + "longitude_deg": "135.50278", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352036", + "ident": "JP-2827", + "type": "heliport", + "name": "Premist Umeda North Helipad", + "latitude_deg": "34.70667", + "longitude_deg": "135.50261", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352037", + "ident": "JP-2828", + "type": "heliport", + "name": "Saint Place Grand Premio Helipad", + "latitude_deg": "34.71125", + "longitude_deg": "135.52645", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352038", + "ident": "JP-2829", + "type": "heliport", + "name": "Saint Place Tower Heliport", + "latitude_deg": "34.71263", + "longitude_deg": "135.52611", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352039", + "ident": "JP-2830", + "type": "heliport", + "name": "1-chome-2-1 Tomobuchicho Helipad", + "latitude_deg": "34.71405", + "longitude_deg": "135.52464", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352040", + "ident": "JP-2831", + "type": "heliport", + "name": "Laurel Square Miyakojima Helipad", + "latitude_deg": "34.71512", + "longitude_deg": "135.52588", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352041", + "ident": "JP-2832", + "type": "heliport", + "name": "Yomiuri Osaka Building Helipad", + "latitude_deg": "34.70004", + "longitude_deg": "135.50656", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352042", + "ident": "JP-2833", + "type": "heliport", + "name": "Hotel Intergate Osaka Umeda Helipad", + "latitude_deg": "34.69814", + "longitude_deg": "135.49325", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352043", + "ident": "JP-2834", + "type": "heliport", + "name": "TKP Gate Tower Building Heliport", + "latitude_deg": "34.6981", + "longitude_deg": "135.48954", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352044", + "ident": "JP-2835", + "type": "heliport", + "name": "River Garden Fukushima Komorebi-no-Oka South Helipad", + "latitude_deg": "34.69897", + "longitude_deg": "135.47688", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352045", + "ident": "JP-2836", + "type": "heliport", + "name": "River Garden Fukushima Komorebi-no-Oka North Helipad", + "latitude_deg": "34.70009", + "longitude_deg": "135.47667", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352046", + "ident": "JP-2837", + "type": "heliport", + "name": "Geo Fukushima Noda The Marks West Helipad", + "latitude_deg": "34.69679", + "longitude_deg": "135.47544", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352047", + "ident": "JP-2838", + "type": "heliport", + "name": "Geo Fukushima Noda The Marks East Helipad", + "latitude_deg": "34.69677", + "longitude_deg": "135.47668", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352048", + "ident": "JP-2839", + "type": "heliport", + "name": "Hanshin Noda Center Building Helipad", + "latitude_deg": "34.69569", + "longitude_deg": "135.47517", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352049", + "ident": "JP-2840", + "type": "heliport", + "name": "City Tower Osaka Fukushima Heliport", + "latitude_deg": "34.69752", + "longitude_deg": "135.47834", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352050", + "ident": "JP-2841", + "type": "heliport", + "name": "Osaka West Gate Tower Helipad", + "latitude_deg": "34.69118", + "longitude_deg": "135.47221", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352051", + "ident": "JP-2842", + "type": "heliport", + "name": "Fukushima Fire Station Heliport", + "latitude_deg": "34.69171", + "longitude_deg": "135.47274", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352052", + "ident": "JP-2843", + "type": "heliport", + "name": "Osaka Minato Central Hospital Heliport", + "latitude_deg": "34.66787", + "longitude_deg": "135.46222", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352117", + "ident": "JP-2844", + "type": "heliport", + "name": "Osaka Municipal Central Market Helipad", + "latitude_deg": "34.68285", + "longitude_deg": "135.47616", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352153", + "ident": "JP-2845", + "type": "heliport", + "name": "City Tower Takanawa Helipad", + "latitude_deg": "35.63799", + "longitude_deg": "139.73212", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "352154", + "ident": "JP-2846", + "type": "heliport", + "name": "Shirokane Tower Helipad", + "latitude_deg": "35.64448", + "longitude_deg": "139.73345", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "352155", + "ident": "JP-2847", + "type": "heliport", + "name": "NBF Platinum Tower Helipad", + "latitude_deg": "35.64464", + "longitude_deg": "139.73441", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "352156", + "ident": "JP-2848", + "type": "heliport", + "name": "Takanawa Community Center Helipad", + "latitude_deg": "35.64206", + "longitude_deg": "139.73404", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "352157", + "ident": "JP-2849", + "type": "heliport", + "name": "La Tour Shiba-Koen Helipad", + "latitude_deg": "35.65222", + "longitude_deg": "139.74726", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "352158", + "ident": "JP-2850", + "type": "heliport", + "name": "Celestine Shiba Mitsui Building Helipad", + "latitude_deg": "35.65081", + "longitude_deg": "139.7488", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "352159", + "ident": "JP-2851", + "type": "heliport", + "name": "Sumitomo Mitsui Trust Bank Mitsui Building Helipad", + "latitude_deg": "35.65036", + "longitude_deg": "139.74853", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "352160", + "ident": "JP-2852", + "type": "heliport", + "name": "Shiba Park Tower Helipad", + "latitude_deg": "35.65042", + "longitude_deg": "139.7477", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "352161", + "ident": "JP-2853", + "type": "heliport", + "name": "Mita NN Building Helipad", + "latitude_deg": "35.64884", + "longitude_deg": "139.74946", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "352162", + "ident": "JP-2854", + "type": "heliport", + "name": "Kabukiza Tower Helipad", + "latitude_deg": "35.6698", + "longitude_deg": "139.76787", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "352163", + "ident": "JP-2855", + "type": "heliport", + "name": "La Vert Akashicho Helipad", + "latitude_deg": "35.66929", + "longitude_deg": "139.77687", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "352164", + "ident": "JP-2856", + "type": "heliport", + "name": "Ginza Tower Helipad", + "latitude_deg": "35.67234", + "longitude_deg": "139.77124", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "352165", + "ident": "JP-2857", + "type": "heliport", + "name": "Kyobashi Plaza Helipad", + "latitude_deg": "35.67324", + "longitude_deg": "139.7717", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "352166", + "ident": "JP-2858", + "type": "heliport", + "name": "Konami Creative Center Ginza Helipad", + "latitude_deg": "35.67468", + "longitude_deg": "139.7696", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "352167", + "ident": "JP-2859", + "type": "heliport", + "name": "Dai-ichi Hotel Ryogoku Helipad", + "latitude_deg": "35.69803", + "longitude_deg": "139.79704", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Sumida, Tokyo", + "scheduled_service": "no" + }, + { + "id": "352168", + "ident": "JP-2860", + "type": "heliport", + "name": "National Center for Children's Health and Development Heliport", + "latitude_deg": "35.63305", + "longitude_deg": "139.61168", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Setagaya, Tokyo", + "scheduled_service": "no" + }, + { + "id": "352169", + "ident": "JP-2861", + "type": "heliport", + "name": "Saiseikai Yokohama City Tobu Hospital Heliport", + "latitude_deg": "35.52379", + "longitude_deg": "139.67509", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no" + }, + { + "id": "352170", + "ident": "JP-2862", + "type": "heliport", + "name": "Gyotoku General Hospital Heliport", + "latitude_deg": "35.67958", + "longitude_deg": "139.93145", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Ichikawa", + "scheduled_service": "no" + }, + { + "id": "352171", + "ident": "JP-2863", + "type": "heliport", + "name": "APA Hotel Shin-Osaka Station Tower Helipad", + "latitude_deg": "34.73057", + "longitude_deg": "135.49771", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352172", + "ident": "JP-2864", + "type": "heliport", + "name": "Norden Tower Shin-Osaka Premium Helipad", + "latitude_deg": "34.73723", + "longitude_deg": "135.49553", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352173", + "ident": "JP-2865", + "type": "heliport", + "name": "Shin-Osaka Hanwa Building Helipad", + "latitude_deg": "34.73705", + "longitude_deg": "135.49443", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352174", + "ident": "JP-2866", + "type": "heliport", + "name": "Proud City Helipad", + "latitude_deg": "34.73504", + "longitude_deg": "135.49095", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352175", + "ident": "JP-2867", + "type": "heliport", + "name": "Mitsubishi UFJ Bank Osaka Building Helipad", + "latitude_deg": "34.68941", + "longitude_deg": "135.50135", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352269", + "ident": "JP-2868", + "type": "heliport", + "name": "Midosuji MTR Building Helipad", + "latitude_deg": "34.6866", + "longitude_deg": "135.50128", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352272", + "ident": "JP-2869", + "type": "heliport", + "name": "Yodoyabashi Center Building Helipad", + "latitude_deg": "34.69011", + "longitude_deg": "135.5022", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352273", + "ident": "JP-2870", + "type": "heliport", + "name": "Nissay Yodoyabashi East Helipad", + "latitude_deg": "34.69051", + "longitude_deg": "135.5022", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352274", + "ident": "JP-2871", + "type": "heliport", + "name": "Nippon Life Insurance HQ East Building Helipad", + "latitude_deg": "34.69112", + "longitude_deg": "135.50196", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352275", + "ident": "JP-2872", + "type": "heliport", + "name": "Yodoyabashi Tokio Marine & Nichido Building Helipad", + "latitude_deg": "34.69006", + "longitude_deg": "135.50152", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352276", + "ident": "JP-2873", + "type": "heliport", + "name": "Hotel Unizo Osaka Yodoyabashi Helipad", + "latitude_deg": "34.68975", + "longitude_deg": "135.50001", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352277", + "ident": "JP-2874", + "type": "heliport", + "name": "Meiji Yasuda Life Osaka Midosuji Building Helipad", + "latitude_deg": "34.68942", + "longitude_deg": "135.50024", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352278", + "ident": "JP-2875", + "type": "heliport", + "name": "KDX Kobayashi Doshomachi Building Helipad", + "latitude_deg": "34.68864", + "longitude_deg": "135.49913", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352279", + "ident": "JP-2876", + "type": "heliport", + "name": "OBIC Midosuji Building Heliport", + "latitude_deg": "34.6872", + "longitude_deg": "135.50023", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352280", + "ident": "JP-2877", + "type": "heliport", + "name": "Aioi Nissay Dowa Insurance Midosuji Building Helipad", + "latitude_deg": "34.68749", + "longitude_deg": "135.50136", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352281", + "ident": "JP-2878", + "type": "heliport", + "name": "Osaka ViewHotel Honmachi Helipad", + "latitude_deg": "34.68426", + "longitude_deg": "135.49891", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352282", + "ident": "JP-2879", + "type": "heliport", + "name": "Laurel Tower Midosuji Honmachi Helipad", + "latitude_deg": "34.68566", + "longitude_deg": "135.49853", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352283", + "ident": "JP-2880", + "type": "heliport", + "name": "Kawaramachi Sanshin Building Helipad", + "latitude_deg": "34.68619", + "longitude_deg": "135.50596", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352285", + "ident": "JP-2881", + "type": "heliport", + "name": "City Tower Osaka Heliport", + "latitude_deg": "34.686338", + "longitude_deg": "135.50723", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352338", + "ident": "JP-2882", + "type": "heliport", + "name": "Kitahama Grand Building Helipad", + "latitude_deg": "34.68655", + "longitude_deg": "135.5061", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352339", + "ident": "JP-2883", + "type": "heliport", + "name": "Nittochi Sakaisuji Building Helipad", + "latitude_deg": "34.68666", + "longitude_deg": "135.50682", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352340", + "ident": "JP-2884", + "type": "heliport", + "name": "Kinki Sangyo Credit Union Head Office Helipad", + "latitude_deg": "34.68703", + "longitude_deg": "135.5062", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352341", + "ident": "JP-2885", + "type": "heliport", + "name": "Koike Building Helipad", + "latitude_deg": "34.68794", + "longitude_deg": "135.5073", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352342", + "ident": "JP-2886", + "type": "heliport", + "name": "Kitahama TNK Building Helipad", + "latitude_deg": "34.68826", + "longitude_deg": "135.50688", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352345", + "ident": "JP-2887", + "type": "heliport", + "name": "Kitahama Mid Building Helipad", + "latitude_deg": "34.68867", + "longitude_deg": "135.50715", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352350", + "ident": "JP-2888", + "type": "heliport", + "name": "Sawarajima Heliport", + "latitude_deg": "35.43041", + "longitude_deg": "138.2086", + "elevation_ft": "3711", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no" + }, + { + "id": "352355", + "ident": "JP-2889", + "type": "heliport", + "name": "Hikari Municipal General Hospital Heliport", + "latitude_deg": "33.98232", + "longitude_deg": "131.91907", + "elevation_ft": "310", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Hikari", + "scheduled_service": "no" + }, + { + "id": "352364", + "ident": "JP-2890", + "type": "heliport", + "name": "The Kitahama Heliport", + "latitude_deg": "34.68925", + "longitude_deg": "135.5072", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352365", + "ident": "JP-2891", + "type": "heliport", + "name": "Unizo Inn Kitahama Helipad", + "latitude_deg": "34.69008", + "longitude_deg": "135.50718", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352366", + "ident": "JP-2892", + "type": "heliport", + "name": "Itopia Kitahama Helipad", + "latitude_deg": "34.69053", + "longitude_deg": "135.50739", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352370", + "ident": "JP-2893", + "type": "heliport", + "name": "MJR Sakaisuji Honmachi Tower Helipad", + "latitude_deg": "34.68242", + "longitude_deg": "135.50807", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352371", + "ident": "JP-2894", + "type": "heliport", + "name": "Fukesuku Daiichi Seimei Building Helipad", + "latitude_deg": "34.68292", + "longitude_deg": "135.50697", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no", + "keywords": "17" + }, + { + "id": "352372", + "ident": "JP-2895", + "type": "heliport", + "name": "Fukesuku Daiichi Seimei Building Helipad", + "latitude_deg": "34.68292", + "longitude_deg": "135.50697", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352373", + "ident": "JP-2896", + "type": "heliport", + "name": "Rokin Higobashi Building Helipad", + "latitude_deg": "34.6913", + "longitude_deg": "135.49609", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352374", + "ident": "JP-2897", + "type": "heliport", + "name": "Mitsui Sumitomo Insurance Osaka Yodoyabashi Building Helipad", + "latitude_deg": "34.69138", + "longitude_deg": "135.49995", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352375", + "ident": "JP-2898", + "type": "heliport", + "name": "Yodoyabashi Mitsui Building Helipad", + "latitude_deg": "34.69089", + "longitude_deg": "135.49996", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352376", + "ident": "JP-2899", + "type": "heliport", + "name": "Keihanshin Yodoyabashi Building Helipad", + "latitude_deg": "34.691", + "longitude_deg": "135.49942", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352377", + "ident": "JP-2900", + "type": "heliport", + "name": "Ryu:x Tower West Helipad", + "latitude_deg": "26.22242", + "longitude_deg": "127.69444", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Naha", + "scheduled_service": "no" + }, + { + "id": "352378", + "ident": "JP-2901", + "type": "heliport", + "name": "Ryu:x Tower East Helipad", + "latitude_deg": "26.22201", + "longitude_deg": "127.69499", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Naha", + "scheduled_service": "no" + }, + { + "id": "352379", + "ident": "JP-2902", + "type": "heliport", + "name": "Sheraton Grande Ocean Resort Heliport", + "latitude_deg": "31.95892", + "longitude_deg": "131.47041", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-45", + "municipality": "Miyazaki", + "scheduled_service": "no" + }, + { + "id": "352386", + "ident": "JP-2903", + "type": "heliport", + "name": "Sumitomo Mitsui Card Osaka Head Office Helipad", + "latitude_deg": "34.69054", + "longitude_deg": "135.49835", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352387", + "ident": "JP-2904", + "type": "heliport", + "name": "Yodoyabashi Daibiru Building Helipad", + "latitude_deg": "34.69012", + "longitude_deg": "135.49906", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352388", + "ident": "JP-2905", + "type": "heliport", + "name": "Proud Tower Kitahama Heliport", + "latitude_deg": "34.68987", + "longitude_deg": "135.50605", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352389", + "ident": "JP-2906", + "type": "heliport", + "name": "Hotel Forza Osaka Kitahama Helipad", + "latitude_deg": "34.69014", + "longitude_deg": "135.50622", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352390", + "ident": "JP-2907", + "type": "heliport", + "name": "Osaka Shoko Shinkin Bank New Head Office Helipad", + "latitude_deg": "34.68326", + "longitude_deg": "135.50614", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352391", + "ident": "JP-2908", + "type": "heliport", + "name": "Courtyard by Marriott Osaka Honmachi Hotel Helipad", + "latitude_deg": "34.68247", + "longitude_deg": "135.50537", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352392", + "ident": "JP-2909", + "type": "heliport", + "name": "Urban Life Midosuji Honmachi Tower Helipad", + "latitude_deg": "34.68253", + "longitude_deg": "135.50234", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352393", + "ident": "JP-2910", + "type": "heliport", + "name": "APA Hotel Resort Midosuji Honmachi Helipad", + "latitude_deg": "34.68245", + "longitude_deg": "135.49989", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352394", + "ident": "JP-2911", + "type": "heliport", + "name": "St Regis Osaka Heliport", + "latitude_deg": "34.68327", + "longitude_deg": "135.50127", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352395", + "ident": "JP-2912", + "type": "heliport", + "name": "Branz Tower Midosuji Honmachi Heliport", + "latitude_deg": "34.68246", + "longitude_deg": "135.49939", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352396", + "ident": "JP-2913", + "type": "heliport", + "name": "Government Housing Loan Corporation Sumitomo Life Building Helipad", + "latitude_deg": "34.68258", + "longitude_deg": "135.49897", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352397", + "ident": "JP-2914", + "type": "heliport", + "name": "Unizo Inn Express Osaka Minamihonmachi Helipad", + "latitude_deg": "34.68257", + "longitude_deg": "135.49859", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352398", + "ident": "JP-2915", + "type": "heliport", + "name": "Orix Honmachi Building Heliport", + "latitude_deg": "34.68249", + "longitude_deg": "135.49738", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352399", + "ident": "JP-2916", + "type": "heliport", + "name": "Tatsuno Nishihonmachi Building Helipad", + "latitude_deg": "34.68223", + "longitude_deg": "135.49342", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352400", + "ident": "JP-2917", + "type": "heliport", + "name": "NTT Communications Nishihonmachi Building Helipad", + "latitude_deg": "34.68219", + "longitude_deg": "135.49166", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352403", + "ident": "JP-2918", + "type": "heliport", + "name": "Maruzen Building Helipad", + "latitude_deg": "34.68189", + "longitude_deg": "135.49007", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352404", + "ident": "JP-2919", + "type": "heliport", + "name": "City Plaza Osaka Heliport", + "latitude_deg": "34.68438", + "longitude_deg": "135.5107", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352405", + "ident": "JP-2920", + "type": "heliport", + "name": "Branz Tower Osaka Bingomachi Helipad", + "latitude_deg": "34.68533", + "longitude_deg": "135.50915", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352406", + "ident": "JP-2921", + "type": "heliport", + "name": "Capcom Research and Development Building Helipad", + "latitude_deg": "34.68715", + "longitude_deg": "135.51079", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352407", + "ident": "JP-2922", + "type": "heliport", + "name": "Capcom Research and Development Building 2 Helipad", + "latitude_deg": "34.68768", + "longitude_deg": "135.51075", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352408", + "ident": "JP-2923", + "type": "heliport", + "name": "Park Tower Kitahama Heliport", + "latitude_deg": "34.68988", + "longitude_deg": "135.51045", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352409", + "ident": "JP-2924", + "type": "heliport", + "name": "Business Innovation Center Osaka Helipad", + "latitude_deg": "34.68411", + "longitude_deg": "135.50927", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352410", + "ident": "JP-2925", + "type": "heliport", + "name": "Eslead Building Heliport", + "latitude_deg": "34.68383", + "longitude_deg": "135.509", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352411", + "ident": "JP-2926", + "type": "heliport", + "name": "Fan City Kuzuha Helipad", + "latitude_deg": "34.86004", + "longitude_deg": "135.6749", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Hirakata", + "scheduled_service": "no" + }, + { + "id": "352412", + "ident": "JP-2927", + "type": "heliport", + "name": "Kuzuha Tower Mansion Helipad", + "latitude_deg": "34.86033", + "longitude_deg": "135.68", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Hirakata", + "scheduled_service": "no" + }, + { + "id": "352413", + "ident": "JP-2928", + "type": "heliport", + "name": "Osaka Gas Midosuji-Higashi Building Helipad", + "latitude_deg": "34.68866", + "longitude_deg": "135.50134", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352414", + "ident": "JP-2929", + "type": "heliport", + "name": "Exe Tower Doshomachi Helipad", + "latitude_deg": "34.68829", + "longitude_deg": "135.50222", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352415", + "ident": "JP-2930", + "type": "heliport", + "name": "Keihanshin Midosuji Building Helipad", + "latitude_deg": "34.68823", + "longitude_deg": "135.50133", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352416", + "ident": "JP-2931", + "type": "heliport", + "name": "Midosuji Nomura Building Helipad", + "latitude_deg": "34.68803", + "longitude_deg": "135.5015", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352417", + "ident": "JP-2932", + "type": "heliport", + "name": "Vort Midosuji Honmachi II Helipad", + "latitude_deg": "34.68096", + "longitude_deg": "135.5031", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352418", + "ident": "JP-2933", + "type": "heliport", + "name": "Senba Mid Cube Helipad", + "latitude_deg": "34.68014", + "longitude_deg": "135.50325", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352419", + "ident": "JP-2934", + "type": "heliport", + "name": "Osaka Granbell Hotel Helipad", + "latitude_deg": "34.67982", + "longitude_deg": "135.50371", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352420", + "ident": "JP-2935", + "type": "heliport", + "name": "MPR Honmachi Building Helipad", + "latitude_deg": "34.67945", + "longitude_deg": "135.503", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352421", + "ident": "JP-2936", + "type": "heliport", + "name": "W Osaka Hotel Heliport", + "latitude_deg": "34.6778", + "longitude_deg": "135.49998", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352422", + "ident": "JP-2937", + "type": "heliport", + "name": "Toyo Carmax Helipad", + "latitude_deg": "34.67775", + "longitude_deg": "135.50097", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352443", + "ident": "JP-2938", + "type": "heliport", + "name": "Midosuji Grand Tower Heliport", + "latitude_deg": "34.67859", + "longitude_deg": "135.50098", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352444", + "ident": "JP-2939", + "type": "heliport", + "name": "Honmachi Minami Garden City Heliport", + "latitude_deg": "34.6796", + "longitude_deg": "135.50104", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352445", + "ident": "JP-2940", + "type": "heliport", + "name": "Holiday Inn Express Osaka City Centre Midosuji Helipad", + "latitude_deg": "34.6797", + "longitude_deg": "135.50008", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352446", + "ident": "JP-2941", + "type": "heliport", + "name": "Minamimido Building Helipad", + "latitude_deg": "34.68045", + "longitude_deg": "135.50017", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352447", + "ident": "JP-2942", + "type": "heliport", + "name": "PARCO Shinsaibashi Helipad", + "latitude_deg": "34.6738", + "longitude_deg": "135.50086", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352448", + "ident": "JP-2943", + "type": "heliport", + "name": "Daimaru Shinsaibashi Helipad", + "latitude_deg": "34.67294", + "longitude_deg": "135.50101", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352449", + "ident": "JP-2944", + "type": "heliport", + "name": "Midosuji Diamond Building Helipad", + "latitude_deg": "34.67181", + "longitude_deg": "135.49994", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352450", + "ident": "JP-2945", + "type": "heliport", + "name": "Prime Square Shinsaibashi Helipad", + "latitude_deg": "34.67097", + "longitude_deg": "135.50075", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352451", + "ident": "JP-2946", + "type": "heliport", + "name": "Nanba Hips Helipad", + "latitude_deg": "34.66754", + "longitude_deg": "135.50083", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352452", + "ident": "JP-2947", + "type": "heliport", + "name": "Hotel Royal Classic Osaka Heliport", + "latitude_deg": "34.66611", + "longitude_deg": "135.49989", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352453", + "ident": "JP-2948", + "type": "heliport", + "name": "Edion Nanba Heliport", + "latitude_deg": "34.66582", + "longitude_deg": "135.50176", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352454", + "ident": "JP-2949", + "type": "heliport", + "name": "JTB Building Heliport", + "latitude_deg": "34.68131", + "longitude_deg": "135.50587", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352455", + "ident": "JP-2950", + "type": "heliport", + "name": "Senba Diamond Building Heliport", + "latitude_deg": "34.68143", + "longitude_deg": "135.50619", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352456", + "ident": "JP-2951", + "type": "heliport", + "name": "Ono Pharmaceutical Head Office Helipad", + "latitude_deg": "34.68057", + "longitude_deg": "135.50671", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352457", + "ident": "JP-2952", + "type": "heliport", + "name": "Pressance Legend Sakaisuji Honmachi Tower Helipad", + "latitude_deg": "34.6803", + "longitude_deg": "135.50818", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352458", + "ident": "JP-2953", + "type": "heliport", + "name": "Miyako City Osaka Honmachi Helipad", + "latitude_deg": "34.67977", + "longitude_deg": "135.50692", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352459", + "ident": "JP-2954", + "type": "heliport", + "name": "Premist Minamisenba Helipad", + "latitude_deg": "34.67693", + "longitude_deg": "135.5058", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352463", + "ident": "JP-2955", + "type": "heliport", + "name": "Minamisenba Heart Building Helipad", + "latitude_deg": "34.6766", + "longitude_deg": "135.50594", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352464", + "ident": "JP-2956", + "type": "heliport", + "name": "Branz Tower Wellith Shinsaibashi North Heliport", + "latitude_deg": "34.67454", + "longitude_deg": "135.50599", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352465", + "ident": "JP-2957", + "type": "heliport", + "name": "Branz Tower Wellith Shinsaibashi South Helipad", + "latitude_deg": "34.674096", + "longitude_deg": "135.505997", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352467", + "ident": "JP-2958", + "type": "heliport", + "name": "Candeo Hotels Osaka Nanba Helipad", + "latitude_deg": "34.6707", + "longitude_deg": "135.50558", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352468", + "ident": "JP-2959", + "type": "heliport", + "name": "Algrad Tower Shinsaibashi Heliport", + "latitude_deg": "34.67376", + "longitude_deg": "135.50504", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352478", + "ident": "JP-2960", + "type": "heliport", + "name": "Geo Tower Minamihorie Heliport", + "latitude_deg": "34.67174", + "longitude_deg": "135.48421", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352592", + "ident": "JP-2961", + "type": "heliport", + "name": "Jobanyumotomachi Heliport", + "latitude_deg": "37.00937", + "longitude_deg": "140.827", + "elevation_ft": "167", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Iwaki", + "scheduled_service": "no" + }, + { + "id": "352596", + "ident": "JP-2962", + "type": "heliport", + "name": "Okusa Castle Park Helipad", + "latitude_deg": "35.62774", + "longitude_deg": "137.94668", + "elevation_ft": "1755", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Nakagawa", + "scheduled_service": "no" + }, + { + "id": "352602", + "ident": "JP-2963", + "type": "heliport", + "name": "Sierra Matsuyamachi Tower Residence Helipad", + "latitude_deg": "34.67621", + "longitude_deg": "135.51239", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352603", + "ident": "JP-2964", + "type": "heliport", + "name": "Eslead Nagahori Tower Helipad", + "latitude_deg": "34.67605", + "longitude_deg": "135.51353", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352604", + "ident": "JP-2965", + "type": "heliport", + "name": "Mast Tower Andoji Helipad", + "latitude_deg": "34.67621", + "longitude_deg": "135.51506", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352605", + "ident": "JP-2966", + "type": "heliport", + "name": "Maison d'Eure Sunlight Tower Helipad", + "latitude_deg": "34.71174", + "longitude_deg": "135.53137", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352606", + "ident": "JP-2967", + "type": "heliport", + "name": "The Com's City D Tower Heliport", + "latitude_deg": "34.70451", + "longitude_deg": "135.54314", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352607", + "ident": "JP-2968", + "type": "heliport", + "name": "Joto-Chuo Aiins Apartments Helipad", + "latitude_deg": "34.70472", + "longitude_deg": "135.542", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352608", + "ident": "JP-2969", + "type": "heliport", + "name": "The Com's City C Tower Helipad", + "latitude_deg": "34.70377", + "longitude_deg": "135.54308", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352609", + "ident": "JP-2970", + "type": "heliport", + "name": "Uehonmachi Tower Heliport", + "latitude_deg": "34.66354", + "longitude_deg": "135.52512", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352610", + "ident": "JP-2971", + "type": "heliport", + "name": "(Duplicate)Uehonmachi Hills Mark Heliport", + "latitude_deg": "34.66423", + "longitude_deg": "135.52381", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352611", + "ident": "JP-2972", + "type": "heliport", + "name": "Japan Red Cross Osaka Hospital Heliport", + "latitude_deg": "34.66456", + "longitude_deg": "135.52566", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352612", + "ident": "JP-2973", + "type": "heliport", + "name": "Residence Tower Uehonmachi Heliport", + "latitude_deg": "34.66295", + "longitude_deg": "135.52371", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352613", + "ident": "JP-2974", + "type": "heliport", + "name": "Grand Maison Uehonmachi Class Helipad", + "latitude_deg": "34.66361", + "longitude_deg": "135.52308", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352614", + "ident": "JP-2975", + "type": "heliport", + "name": "Premist Tower Osaka Uehonmachi Mansion Gallery Helipad", + "latitude_deg": "34.66623", + "longitude_deg": "135.52238", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352615", + "ident": "JP-2976", + "type": "heliport", + "name": "Piazza Tower Uehonmachi Helipad", + "latitude_deg": "34.66715", + "longitude_deg": "135.52093", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352616", + "ident": "JP-2977", + "type": "heliport", + "name": "Laurel Court Uehonmachi Helipad", + "latitude_deg": "34.66453", + "longitude_deg": "135.52091", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352617", + "ident": "JP-2978", + "type": "heliport", + "name": "Uehonmachi Laurel Tower Heliport", + "latitude_deg": "34.66288", + "longitude_deg": "135.51925", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352618", + "ident": "JP-2979", + "type": "heliport", + "name": "Park Front Hotel Helipad", + "latitude_deg": "34.66769", + "longitude_deg": "135.43723", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352619", + "ident": "JP-2980", + "type": "heliport", + "name": "Hotel Keihan Universal Tower Heliport", + "latitude_deg": "34.66768", + "longitude_deg": "135.438", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352620", + "ident": "JP-2981", + "type": "heliport", + "name": "Singulari Hotel Helipad", + "latitude_deg": "34.66816", + "longitude_deg": "135.43917", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352621", + "ident": "JP-2982", + "type": "heliport", + "name": "Hotel Kintetsu Universal City Helipad", + "latitude_deg": "34.66848", + "longitude_deg": "135.43713", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352622", + "ident": "JP-2983", + "type": "heliport", + "name": "Hotel Keihan Universal City Helipad", + "latitude_deg": "34.66876", + "longitude_deg": "135.43807", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352623", + "ident": "JP-2984", + "type": "closed", + "name": "Former Takamine Helipad", + "latitude_deg": "35.06276", + "longitude_deg": "135.71944", + "elevation_ft": "994", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kyoto", + "scheduled_service": "no" + }, + { + "id": "352624", + "ident": "JP-2985", + "type": "heliport", + "name": "Takamine Heliport", + "latitude_deg": "35.06505", + "longitude_deg": "135.72074", + "elevation_ft": "1102", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Kyoto", + "scheduled_service": "no" + }, + { + "id": "352640", + "ident": "JP-2986", + "type": "heliport", + "name": "Wako Building Helipad", + "latitude_deg": "34.66846", + "longitude_deg": "135.43851", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352644", + "ident": "JP-2987", + "type": "heliport", + "name": "Luna Tower Hollywood Place Helipad", + "latitude_deg": "34.66854", + "longitude_deg": "135.43944", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352648", + "ident": "JP-2988", + "type": "heliport", + "name": "River Garden City Sakura Helipad", + "latitude_deg": "34.66904", + "longitude_deg": "135.4392", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352649", + "ident": "JP-2989", + "type": "heliport", + "name": "River Garden City Alice Helipad", + "latitude_deg": "34.6691", + "longitude_deg": "135.43843", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352650", + "ident": "JP-2990", + "type": "heliport", + "name": "River Garden City Seseragi-no-Oka Helipad", + "latitude_deg": "34.66925", + "longitude_deg": "135.43942", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352651", + "ident": "JP-2991", + "type": "heliport", + "name": "River Garden City Konohana Helipad", + "latitude_deg": "34.67007", + "longitude_deg": "135.43986", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352652", + "ident": "JP-2992", + "type": "heliport", + "name": "River Garden Eco City Alice Forest Helipad", + "latitude_deg": "34.6704", + "longitude_deg": "135.44066", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352653", + "ident": "JP-2993", + "type": "heliport", + "name": "Hotel Universal Port Helipad", + "latitude_deg": "34.66603", + "longitude_deg": "135.43789", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352654", + "ident": "JP-2994", + "type": "heliport", + "name": "Hotel Universal Port Vita Helipad", + "latitude_deg": "34.66694", + "longitude_deg": "135.43871", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352657", + "ident": "JP-2995", + "type": "heliport", + "name": "Liber Hotel Helipad", + "latitude_deg": "34.66153", + "longitude_deg": "135.43302", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352661", + "ident": "JP-2996", + "type": "heliport", + "name": "HK Yodoyabashi Garden Avenue Helipad", + "latitude_deg": "34.68895", + "longitude_deg": "135.49948", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352663", + "ident": "JP-2997", + "type": "heliport", + "name": "Kitahama Lavissa Helipad", + "latitude_deg": "34.69223", + "longitude_deg": "135.50461", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352664", + "ident": "JP-2998", + "type": "heliport", + "name": "Urban Ace Kitahama Helipad", + "latitude_deg": "34.68748", + "longitude_deg": "135.50519", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352665", + "ident": "JP-2999", + "type": "heliport", + "name": "Sunrise Building Helipad", + "latitude_deg": "34.68503", + "longitude_deg": "135.50434", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352666", + "ident": "JP-3000", + "type": "heliport", + "name": "Matsuya Tower Helipad", + "latitude_deg": "34.67495", + "longitude_deg": "135.51236", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352669", + "ident": "JP-3001", + "type": "heliport", + "name": "Branz Tennoji Yuhigaoka Helipad", + "latitude_deg": "34.65715", + "longitude_deg": "135.51327", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352733", + "ident": "JP-3002", + "type": "heliport", + "name": "Premist Tower Osaka Shinmachi Laurel Court Helipad", + "latitude_deg": "34.67692", + "longitude_deg": "135.49279", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352734", + "ident": "JP-3003", + "type": "heliport", + "name": "Juju Garden Helipad", + "latitude_deg": "34.67178", + "longitude_deg": "135.49317", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352735", + "ident": "JP-3004", + "type": "heliport", + "name": "City Tower Horie Helipad", + "latitude_deg": "34.67324", + "longitude_deg": "135.4937", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352736", + "ident": "JP-3005", + "type": "heliport", + "name": "Laurel Square Osaka Bay Tower Helipad", + "latitude_deg": "34.64209", + "longitude_deg": "135.41314", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352737", + "ident": "JP-3006", + "type": "heliport", + "name": "Forest Court Helipad", + "latitude_deg": "34.64218", + "longitude_deg": "135.41483", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352738", + "ident": "JP-3007", + "type": "heliport", + "name": "River Garden Cosmo Square Helipad", + "latitude_deg": "34.64285", + "longitude_deg": "135.41418", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352739", + "ident": "JP-3008", + "type": "heliport", + "name": "Asia-Pacific Trade Center Heliport", + "latitude_deg": "34.63863", + "longitude_deg": "135.41142", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352740", + "ident": "JP-3009", + "type": "heliport", + "name": "Sakishima Cosmo Tower Heliport", + "latitude_deg": "34.6383", + "longitude_deg": "135.41493", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352741", + "ident": "JP-3010", + "type": "heliport", + "name": "Cosmo Plaza Building Heliport", + "latitude_deg": "34.63763", + "longitude_deg": "135.41671", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352742", + "ident": "JP-3011", + "type": "heliport", + "name": "Hyatt Regency Osaka Heliport", + "latitude_deg": "34.6364", + "longitude_deg": "135.41613", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "no" + }, + { + "id": "352743", + "ident": "JP-3012", + "type": "heliport", + "name": "Koshienhama Seaside Park Heliport", + "latitude_deg": "34.71582", + "longitude_deg": "135.34798", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Nishinomiya", + "scheduled_service": "no" + }, + { + "id": "352861", + "ident": "JP-3013", + "type": "heliport", + "name": "NHO Kure Medical Center - Chugoku Cancer Center Heliport", + "latitude_deg": "34.23942", + "longitude_deg": "132.56619", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Kure", + "scheduled_service": "no" + }, + { + "id": "352864", + "ident": "JP-3014", + "type": "heliport", + "name": "Tomikusa Heliport", + "latitude_deg": "35.34317", + "longitude_deg": "137.81058", + "elevation_ft": "1418", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Anan", + "scheduled_service": "no" + }, + { + "id": "352865", + "ident": "JP-3015", + "type": "heliport", + "name": "Nisenji Heliport", + "latitude_deg": "35.25176", + "longitude_deg": "137.83073", + "elevation_ft": "873", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Tenryu", + "scheduled_service": "no" + }, + { + "id": "353128", + "ident": "JP-3016", + "type": "heliport", + "name": "Yuzawa Interchange Heliport", + "latitude_deg": "36.93218", + "longitude_deg": "138.82789", + "elevation_ft": "1258", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Yuzawa", + "scheduled_service": "no" + }, + { + "id": "353129", + "ident": "JP-3017", + "type": "heliport", + "name": "Muikamachi Interchange Heliport", + "latitude_deg": "37.08077", + "longitude_deg": "138.87516", + "elevation_ft": "648", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Minamiuonuma", + "scheduled_service": "no" + }, + { + "id": "353139", + "ident": "JP-3018", + "type": "heliport", + "name": "Uenotaira Heliport", + "latitude_deg": "35.32247", + "longitude_deg": "137.6315", + "elevation_ft": "3087", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Hiraya", + "scheduled_service": "no" + }, + { + "id": "353140", + "ident": "JP-3019", + "type": "heliport", + "name": "ATLA Niijima Heliport", + "latitude_deg": "34.36336", + "longitude_deg": "139.25507", + "elevation_ft": "174", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Niijima", + "scheduled_service": "no" + }, + { + "id": "353141", + "ident": "JP-3020", + "type": "heliport", + "name": "Wakago Heliport", + "latitude_deg": "34.41483", + "longitude_deg": "139.27672", + "elevation_ft": "140", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Niijima", + "scheduled_service": "no" + }, + { + "id": "353164", + "ident": "JP-3021", + "type": "heliport", + "name": "Shinnoshobo Emergency Heliport", + "latitude_deg": "35.27165", + "longitude_deg": "137.7418", + "elevation_ft": "3015", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Anan", + "scheduled_service": "no" + }, + { + "id": "353344", + "ident": "JP-3022", + "type": "heliport", + "name": "Marinetopia Heliport", + "latitude_deg": "35.58698", + "longitude_deg": "135.20573", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Miyazu", + "scheduled_service": "no" + }, + { + "id": "353360", + "ident": "JP-3023", + "type": "heliport", + "name": "Kitamino Emergency Heliport", + "latitude_deg": "35.7639", + "longitude_deg": "139.01948", + "elevation_ft": "2047", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Okutama", + "scheduled_service": "no" + }, + { + "id": "353361", + "ident": "JP-3024", + "type": "heliport", + "name": "Yamanashi Daily Newspaper Heliport", + "latitude_deg": "35.71923", + "longitude_deg": "138.46242", + "elevation_ft": "1371", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Nirasaki", + "scheduled_service": "no" + }, + { + "id": "353362", + "ident": "JP-3025", + "type": "heliport", + "name": "Katsumi Heliport", + "latitude_deg": "35.54206", + "longitude_deg": "135.7143", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "municipality": "Obama", + "scheduled_service": "no" + }, + { + "id": "353366", + "ident": "JP-3026", + "type": "heliport", + "name": "Roadside Station Kosuge Heliport", + "latitude_deg": "35.75342", + "longitude_deg": "138.95018", + "elevation_ft": "2415", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Kosuge", + "scheduled_service": "no" + }, + { + "id": "353367", + "ident": "JP-3027", + "type": "heliport", + "name": "Onoda Kusunoki Corporate Park Helibase", + "latitude_deg": "34.03723", + "longitude_deg": "131.19975", + "elevation_ft": "102", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Sanyoonoda", + "scheduled_service": "no" + }, + { + "id": "353368", + "ident": "JP-3028", + "type": "heliport", + "name": "Mazda Mine Proving Ground Heliport", + "latitude_deg": "34.14436", + "longitude_deg": "131.10296", + "elevation_ft": "490", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Mine", + "scheduled_service": "no", + "keywords": "Mine Circuit" + }, + { + "id": "354953", + "ident": "JP-3029", + "type": "small_airport", + "name": "Kumagaya Trike Club Airfield", + "latitude_deg": "36.12158", + "longitude_deg": "139.40029", + "elevation_ft": "86", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Kumagaya", + "scheduled_service": "no" + }, + { + "id": "354954", + "ident": "JP-3030", + "type": "closed", + "name": "Tokorozawa Airfield (1911)", + "latitude_deg": "35.797773", + "longitude_deg": "139.471213", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Tokorozawa", + "scheduled_service": "no" + }, + { + "id": "354955", + "ident": "JP-3031", + "type": "closed", + "name": "Tokorozawa Army Airfield", + "latitude_deg": "35.80788", + "longitude_deg": "139.46539", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Tokorozawa", + "scheduled_service": "no" + }, + { + "id": "355532", + "ident": "JP-3032", + "type": "heliport", + "name": "Okumashu Heliport", + "latitude_deg": "43.494365", + "longitude_deg": "144.376961", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Teshikaga", + "scheduled_service": "no" + }, + { + "id": "355533", + "ident": "JP-3033", + "type": "heliport", + "name": "JA Hokkaido Koseiren Obihiro Kosei Hospital Heliport", + "latitude_deg": "42.919561", + "longitude_deg": "143.181266", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Obihiro", + "scheduled_service": "no" + }, + { + "id": "355539", + "ident": "JP-3034", + "type": "heliport", + "name": "Tsukuba Aviation Benten Heliport", + "latitude_deg": "42.638936", + "longitude_deg": "141.794833", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Tomakomai", + "scheduled_service": "no", + "keywords": "Tsukubakoku" + }, + { + "id": "355540", + "ident": "JP-3035", + "type": "heliport", + "name": "Weiss Ski Resort Heliport", + "latitude_deg": "42.90638", + "longitude_deg": "140.667786", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Kutchan", + "scheduled_service": "no" + }, + { + "id": "355541", + "ident": "JP-3036", + "type": "heliport", + "name": "Minaminaganuma Heliport", + "latitude_deg": "42.959245", + "longitude_deg": "141.681849", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Naganuma", + "scheduled_service": "no" + }, + { + "id": "355542", + "ident": "JP-3037", + "type": "heliport", + "name": "Kitahiroshima District Emergency Station Heliport", + "latitude_deg": "42.996877", + "longitude_deg": "141.584019", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Kitahiroshima", + "scheduled_service": "no" + }, + { + "id": "355543", + "ident": "JP-3038", + "type": "heliport", + "name": "Sakaemachi Heliport", + "latitude_deg": "43.196427", + "longitude_deg": "140.840825", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Yoichi", + "scheduled_service": "no" + }, + { + "id": "355545", + "ident": "JP-3039", + "type": "heliport", + "name": "Otobe Heliport", + "latitude_deg": "41.970084", + "longitude_deg": "140.16184", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Otobe", + "scheduled_service": "no" + }, + { + "id": "355547", + "ident": "JP-3040", + "type": "heliport", + "name": "Nemuro Emergency Heliport", + "latitude_deg": "43.310365", + "longitude_deg": "145.551039", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Nemuro", + "scheduled_service": "no" + }, + { + "id": "355549", + "ident": "JP-3041", + "type": "heliport", + "name": "Yoshino Heliport", + "latitude_deg": "43.592472", + "longitude_deg": "141.734795", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Shintotsukawa", + "scheduled_service": "no" + }, + { + "id": "355550", + "ident": "JP-3042", + "type": "heliport", + "name": "Toyokoro Heliport", + "latitude_deg": "42.687122", + "longitude_deg": "143.639828", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Toyokoro", + "scheduled_service": "no" + }, + { + "id": "355551", + "ident": "JP-3043", + "type": "heliport", + "name": "Nakasatsunai Heliport", + "latitude_deg": "42.60058", + "longitude_deg": "142.984096", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Nakasatsunai", + "scheduled_service": "no" + }, + { + "id": "355586", + "ident": "JP-3044", + "type": "heliport", + "name": "Takasato Auxiliary Heliport", + "latitude_deg": "37.63163", + "longitude_deg": "139.69849", + "elevation_ft": "1362", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Kitakata", + "scheduled_service": "no" + }, + { + "id": "355587", + "ident": "JP-3045", + "type": "heliport", + "name": "Tsuwano Emergency Heliport", + "latitude_deg": "34.45143", + "longitude_deg": "131.75995", + "elevation_ft": "554", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Tsuwano", + "scheduled_service": "no" + }, + { + "id": "355588", + "ident": "JP-3046", + "type": "heliport", + "name": "Zenshinkai Hospital Heliport", + "latitude_deg": "34.40586", + "longitude_deg": "131.38395", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Hagi", + "scheduled_service": "no" + }, + { + "id": "355589", + "ident": "JP-3047", + "type": "small_airport", + "name": "Haneda Gliderport", + "latitude_deg": "36.13585", + "longitude_deg": "139.90626", + "elevation_ft": "72", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Joso", + "scheduled_service": "no" + }, + { + "id": "355597", + "ident": "JP-3048", + "type": "heliport", + "name": "Ikeda Heliport", + "latitude_deg": "34.47942", + "longitude_deg": "134.22408", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Shodoshima", + "scheduled_service": "no" + }, + { + "id": "355598", + "ident": "JP-3049", + "type": "closed", + "name": "Mima City Hall Heliport", + "latitude_deg": "34.05425", + "longitude_deg": "134.16941", + "elevation_ft": "135", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-36", + "municipality": "Mima", + "scheduled_service": "no" + }, + { + "id": "355600", + "ident": "JP-3050", + "type": "heliport", + "name": "Kokura DC Tower Helipad", + "latitude_deg": "33.88703", + "longitude_deg": "130.87451", + "elevation_ft": "525", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Kitakyushu", + "scheduled_service": "no" + }, + { + "id": "355601", + "ident": "JP-3051", + "type": "heliport", + "name": "Mitsukoshi Ginza Helipad", + "latitude_deg": "35.67097", + "longitude_deg": "139.76603", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chuo, Tokyo", + "scheduled_service": "no" + }, + { + "id": "355602", + "ident": "JP-3052", + "type": "heliport", + "name": "World Trade Center Building South Tower Helipad", + "latitude_deg": "35.6547", + "longitude_deg": "139.75647", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no" + }, + { + "id": "355603", + "ident": "JP-3053", + "type": "heliport", + "name": "Hareza Tower Helipad", + "latitude_deg": "35.73244", + "longitude_deg": "139.71541", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Toshima, Tokyo", + "scheduled_service": "no" + }, + { + "id": "355604", + "ident": "JP-3054", + "type": "heliport", + "name": "Tokyo Metropolitan Theatre Helipad", + "latitude_deg": "35.72967", + "longitude_deg": "139.70799", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Toshima, Tokyo", + "scheduled_service": "no" + }, + { + "id": "355605", + "ident": "JP-3055", + "type": "heliport", + "name": "Westpark Tower Helipad", + "latitude_deg": "35.72971", + "longitude_deg": "139.70693", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Toshima, Tokyo", + "scheduled_service": "no" + }, + { + "id": "355606", + "ident": "JP-3056", + "type": "heliport", + "name": "Towers Grandia Helipad", + "latitude_deg": "35.73178", + "longitude_deg": "139.70508", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Toshima, Tokyo", + "scheduled_service": "no" + }, + { + "id": "355609", + "ident": "JP-3057", + "type": "heliport", + "name": "IJHW Narita Hospital Heliport", + "latitude_deg": "35.75924", + "longitude_deg": "140.35046", + "elevation_ft": "121", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Narita", + "scheduled_service": "no" + }, + { + "id": "355610", + "ident": "JP-3058", + "type": "heliport", + "name": "Higashi-Ogishima East Park Heliport", + "latitude_deg": "35.50542", + "longitude_deg": "139.77188", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kawasaki", + "scheduled_service": "no" + }, + { + "id": "355611", + "ident": "JP-3059", + "type": "heliport", + "name": "Hasuda Service Area Heliport", + "latitude_deg": "35.97889", + "longitude_deg": "139.6653", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Hasuda", + "scheduled_service": "no" + }, + { + "id": "355612", + "ident": "JP-3060", + "type": "heliport", + "name": "Iwatsuki Heliport", + "latitude_deg": "35.93472", + "longitude_deg": "139.6958", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Saitama", + "scheduled_service": "no" + }, + { + "id": "355613", + "ident": "JP-3061", + "type": "heliport", + "name": "Hyogo Prefectural Tanba Medical Center Heliport", + "latitude_deg": "35.14705", + "longitude_deg": "135.05542", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Tanba", + "scheduled_service": "no" + }, + { + "id": "355614", + "ident": "JP-3062", + "type": "heliport", + "name": "Hanzan Park Heliport", + "latitude_deg": "34.24452", + "longitude_deg": "133.84043", + "elevation_ft": "105", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Marugame", + "scheduled_service": "no" + }, + { + "id": "355615", + "ident": "JP-3063", + "type": "heliport", + "name": "Iinocho Heliport", + "latitude_deg": "34.26722", + "longitude_deg": "133.83053", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Marugame", + "scheduled_service": "no" + }, + { + "id": "355620", + "ident": "JP-3064", + "type": "heliport", + "name": "Kochi East Police Station Heliport", + "latitude_deg": "33.56942", + "longitude_deg": "133.59167", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kochi", + "scheduled_service": "no" + }, + { + "id": "355621", + "ident": "JP-3065", + "type": "heliport", + "name": "Awa City Hall Heliport", + "latitude_deg": "34.10247", + "longitude_deg": "134.29601", + "elevation_ft": "231", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-36", + "municipality": "Awa", + "scheduled_service": "no" + }, + { + "id": "355622", + "ident": "JP-3066", + "type": "heliport", + "name": "Yaemon Heliport", + "latitude_deg": "33.57433", + "longitude_deg": "133.55697", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kochi", + "scheduled_service": "no" + }, + { + "id": "355623", + "ident": "JP-3067", + "type": "heliport", + "name": "Shin Komonji Hospital Heliport", + "latitude_deg": "33.89704", + "longitude_deg": "130.92564", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Kitakyushu", + "scheduled_service": "no" + }, + { + "id": "355633", + "ident": "JP-3068", + "type": "closed", + "name": "Yamada Seaplane Base", + "latitude_deg": "39.4788", + "longitude_deg": "141.96894", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Yamada", + "scheduled_service": "no" + }, + { + "id": "355634", + "ident": "JP-3069", + "type": "small_airport", + "name": "Yamatanigawa Auxiliary Airfield", + "latitude_deg": "39.36165", + "longitude_deg": "141.45675", + "elevation_ft": "2575", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Tono", + "scheduled_service": "no" + }, + { + "id": "355729", + "ident": "JP-3070", + "type": "heliport", + "name": "Shinjuku Monolith Building Helipad", + "latitude_deg": "35.68856", + "longitude_deg": "139.69444", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "355730", + "ident": "JP-3071", + "type": "heliport", + "name": "Nittochi Nishishinjuku Building Helipad", + "latitude_deg": "35.69452", + "longitude_deg": "139.69069", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Shinjuku, Tokyo", + "scheduled_service": "no" + }, + { + "id": "355732", + "ident": "JP-3072", + "type": "heliport", + "name": "Meioji Heliport", + "latitude_deg": "34.82701", + "longitude_deg": "135.55079", + "elevation_ft": "203", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Ibaraki", + "scheduled_service": "no" + }, + { + "id": "355831", + "ident": "JP-3073", + "type": "heliport", + "name": "Ryu Heliport", + "latitude_deg": "33.42762", + "longitude_deg": "133.45622", + "elevation_ft": "121", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Tosa", + "scheduled_service": "no" + }, + { + "id": "355832", + "ident": "JP-3074", + "type": "heliport", + "name": "Harunocho Hirookakami Heliport", + "latitude_deg": "33.49905", + "longitude_deg": "133.45024", + "elevation_ft": "43", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kochi", + "scheduled_service": "no" + }, + { + "id": "355864", + "ident": "JP-3075", + "type": "heliport", + "name": "Akagiyama Relay Station Heliport", + "latitude_deg": "36.49751", + "longitude_deg": "139.14503", + "elevation_ft": "2546", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Maebashi", + "scheduled_service": "no" + }, + { + "id": "355865", + "ident": "JP-3076", + "type": "heliport", + "name": "Tone Central Hospital Heliport", + "latitude_deg": "36.62562", + "longitude_deg": "139.05299", + "elevation_ft": "1020", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Numata", + "scheduled_service": "no" + }, + { + "id": "355866", + "ident": "JP-3077", + "type": "heliport", + "name": "Shirakawa Kosei General Hospital Heliport", + "latitude_deg": "37.14332", + "longitude_deg": "140.2157", + "elevation_ft": "1211", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Shirakawa", + "scheduled_service": "no" + }, + { + "id": "355867", + "ident": "JP-3078", + "type": "heliport", + "name": "Aizuwakamatsu Interchange Heliport", + "latitude_deg": "37.52588", + "longitude_deg": "139.91786", + "elevation_ft": "663", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Aizuwakamatsu", + "scheduled_service": "no" + }, + { + "id": "355868", + "ident": "JP-3079", + "type": "heliport", + "name": "Funato Heliport", + "latitude_deg": "33.78822", + "longitude_deg": "133.48262", + "elevation_ft": "1175", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Okawa", + "scheduled_service": "no" + }, + { + "id": "355869", + "ident": "JP-3080", + "type": "heliport", + "name": "Kuromaru District Heliport", + "latitude_deg": "33.72031", + "longitude_deg": "133.41224", + "elevation_ft": "2037", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Tosa", + "scheduled_service": "no" + }, + { + "id": "355870", + "ident": "JP-3081", + "type": "heliport", + "name": "Erimon Hongawa Heliport", + "latitude_deg": "33.73024", + "longitude_deg": "133.23333", + "elevation_ft": "2218", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Ino", + "scheduled_service": "no" + }, + { + "id": "355871", + "ident": "JP-3082", + "type": "heliport", + "name": "Kuyabu Heliport", + "latitude_deg": "33.59208", + "longitude_deg": "133.24352", + "elevation_ft": "2241", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Ochi", + "scheduled_service": "no" + }, + { + "id": "355872", + "ident": "JP-3083", + "type": "heliport", + "name": "Ochi Heliport", + "latitude_deg": "33.52761", + "longitude_deg": "133.24589", + "elevation_ft": "397", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Ochi", + "scheduled_service": "no" + }, + { + "id": "355873", + "ident": "JP-3084", + "type": "heliport", + "name": "Hinoura Heliport", + "latitude_deg": "33.57918", + "longitude_deg": "133.23478", + "elevation_ft": "1611", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Ochi", + "scheduled_service": "no" + }, + { + "id": "355874", + "ident": "JP-3085", + "type": "small_airport", + "name": "Agawa Skypark Gliderport", + "latitude_deg": "33.57508", + "longitude_deg": "133.06374", + "elevation_ft": "2703", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Niyodogawa", + "scheduled_service": "no" + }, + { + "id": "355875", + "ident": "JP-3086", + "type": "heliport", + "name": "Ono Heliport", + "latitude_deg": "33.64809", + "longitude_deg": "133.14507", + "elevation_ft": "927", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Niyodogawa", + "scheduled_service": "no" + }, + { + "id": "355876", + "ident": "JP-3087", + "type": "heliport", + "name": "Nishimine Heliport", + "latitude_deg": "33.80075", + "longitude_deg": "133.82572", + "elevation_ft": "2162", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Otoyo", + "scheduled_service": "no" + }, + { + "id": "355877", + "ident": "JP-3088", + "type": "heliport", + "name": "Naro Heliport", + "latitude_deg": "33.63238", + "longitude_deg": "133.59569", + "elevation_ft": "1172", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Nankoku", + "scheduled_service": "no" + }, + { + "id": "355878", + "ident": "JP-3089", + "type": "heliport", + "name": "Japan Red Cross Kochi Hospital Heliport", + "latitude_deg": "33.57764", + "longitude_deg": "133.54467", + "elevation_ft": "155", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kochi", + "scheduled_service": "no" + }, + { + "id": "355879", + "ident": "JP-3090", + "type": "heliport", + "name": "Kochi Prefectural Chamber of Commerce Heliport", + "latitude_deg": "33.57307", + "longitude_deg": "133.57868", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kochi", + "scheduled_service": "no" + }, + { + "id": "355880", + "ident": "JP-3091", + "type": "heliport", + "name": "Kuwao Heliport", + "latitude_deg": "33.6297", + "longitude_deg": "133.51518", + "elevation_ft": "413", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kochi", + "scheduled_service": "no" + }, + { + "id": "355881", + "ident": "JP-3092", + "type": "heliport", + "name": "Kochi Prefectural Police Heliport", + "latitude_deg": "33.56346", + "longitude_deg": "133.53195", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kochi", + "scheduled_service": "no" + }, + { + "id": "355882", + "ident": "JP-3093", + "type": "heliport", + "name": "Motomura Heliport", + "latitude_deg": "33.56351", + "longitude_deg": "133.34287", + "elevation_ft": "138", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Hidaka", + "scheduled_service": "no" + }, + { + "id": "356405", + "ident": "JP-3094", + "type": "heliport", + "name": "Saitama Prefectural Disaster Prevention Air Corps Training Center Heliport", + "latitude_deg": "35.96965", + "longitude_deg": "139.52359", + "elevation_ft": "46", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-11", + "municipality": "Okegawa", + "scheduled_service": "no" + }, + { + "id": "356407", + "ident": "JP-3095", + "type": "small_airport", + "name": "Kawane Skypark Gliderport", + "latitude_deg": "34.95518", + "longitude_deg": "138.10416", + "elevation_ft": "1945", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shimada", + "scheduled_service": "no" + }, + { + "id": "430012", + "ident": "JP-3096", + "type": "balloonport", + "name": "Matsushima Balloonport", + "latitude_deg": "38.37654", + "longitude_deg": "141.07615", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Matsushima", + "scheduled_service": "no" + }, + { + "id": "430013", + "ident": "JP-3097", + "type": "balloonport", + "name": "Niseko Balloonport", + "latitude_deg": "42.84806", + "longitude_deg": "140.64375", + "elevation_ft": "1364", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Niseko", + "scheduled_service": "no" + }, + { + "id": "430014", + "ident": "JP-3098", + "type": "balloonport", + "name": "Saga International Balloon Fiesta Balloonport", + "latitude_deg": "33.25247", + "longitude_deg": "130.2454", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-41", + "municipality": "Saga", + "scheduled_service": "no" + }, + { + "id": "430141", + "ident": "JP-3099", + "type": "seaplane_base", + "name": "JMSDF Sasebo Base Sakibe Seaplane Base", + "latitude_deg": "33.12606", + "longitude_deg": "129.73557", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Sasebo", + "scheduled_service": "no" + }, + { + "id": "430193", + "ident": "JP-3100", + "type": "heliport", + "name": "Miyakejima Heliport", + "latitude_deg": "34.12152", + "longitude_deg": "139.50621", + "elevation_ft": "194", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Miyake", + "scheduled_service": "no" + }, + { + "id": "430194", + "ident": "JP-3101", + "type": "heliport", + "name": "Mikurajima Heliport", + "latitude_deg": "33.89775", + "longitude_deg": "139.59494", + "elevation_ft": "427", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Mikurajima", + "scheduled_service": "no" + }, + { + "id": "430195", + "ident": "JP-3102", + "type": "heliport", + "name": "Katsuura Sky Harbor", + "latitude_deg": "35.17879", + "longitude_deg": "140.27329", + "elevation_ft": "387", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Katsuura", + "scheduled_service": "no" + }, + { + "id": "430196", + "ident": "JP-3103", + "type": "heliport", + "name": "Shisui Premium Outlet Heliport", + "latitude_deg": "35.71705", + "longitude_deg": "140.2989", + "elevation_ft": "118", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Shisui", + "scheduled_service": "no" + }, + { + "id": "430198", + "ident": "JP-3104", + "type": "heliport", + "name": "Nagareyama Heliport", + "latitude_deg": "35.90395", + "longitude_deg": "139.88351", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Nagareyama", + "scheduled_service": "no" + }, + { + "id": "430199", + "ident": "JP-3105", + "type": "heliport", + "name": "Miyagase Dam Heliport", + "latitude_deg": "35.54021", + "longitude_deg": "139.24779", + "elevation_ft": "955", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Kiyokawa", + "scheduled_service": "no" + }, + { + "id": "430200", + "ident": "JP-3106", + "type": "heliport", + "name": "Miyagase Lake North Shore Heliport", + "latitude_deg": "35.53952", + "longitude_deg": "139.23849", + "elevation_ft": "1020", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Sagamihara", + "scheduled_service": "no" + }, + { + "id": "430210", + "ident": "JP-3107", + "type": "heliport", + "name": "Obishijima Heliport", + "latitude_deg": "34.34268", + "longitude_deg": "133.50885", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Kasaoka", + "scheduled_service": "no" + }, + { + "id": "430211", + "ident": "JP-3108", + "type": "heliport", + "name": "Doshi Heliport", + "latitude_deg": "35.53351", + "longitude_deg": "139.07403", + "elevation_ft": "1683", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Doshi", + "scheduled_service": "no" + }, + { + "id": "430213", + "ident": "JP-3109", + "type": "heliport", + "name": "Shinjo Medevac Heliport", + "latitude_deg": "34.20553", + "longitude_deg": "135.5154", + "elevation_ft": "1191", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Katsuragi", + "scheduled_service": "no" + }, + { + "id": "430214", + "ident": "JP-3110", + "type": "heliport", + "name": "Yamanashi Heliport", + "latitude_deg": "35.67451", + "longitude_deg": "138.69628", + "elevation_ft": "1050", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-19", + "municipality": "Yamanashi", + "scheduled_service": "no" + }, + { + "id": "430215", + "ident": "JP-3111", + "type": "heliport", + "name": "Kitayama Emergency Heliport", + "latitude_deg": "33.92979", + "longitude_deg": "135.96766", + "elevation_ft": "422", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Kitamura", + "scheduled_service": "no" + }, + { + "id": "430216", + "ident": "JP-3112", + "type": "heliport", + "name": "Mie University Hospital Heliport", + "latitude_deg": "34.74195", + "longitude_deg": "136.52227", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Tsu", + "scheduled_service": "no" + }, + { + "id": "430217", + "ident": "JP-3113", + "type": "heliport", + "name": "Futatsuno Heliport", + "latitude_deg": "33.60211", + "longitude_deg": "133.01063", + "elevation_ft": "2362", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kumakogen", + "scheduled_service": "no" + }, + { + "id": "430218", + "ident": "JP-3114", + "type": "heliport", + "name": "Kurofujigawa Heliport", + "latitude_deg": "33.5753", + "longitude_deg": "133.00614", + "elevation_ft": "1188", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kumakogen", + "scheduled_service": "no" + }, + { + "id": "430219", + "ident": "JP-3115", + "type": "heliport", + "name": "Hinoura Heliport", + "latitude_deg": "33.58819", + "longitude_deg": "132.98895", + "elevation_ft": "1245", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kumakogen", + "scheduled_service": "no" + }, + { + "id": "430220", + "ident": "JP-3116", + "type": "heliport", + "name": "Kumakogen Fire Station Heliport", + "latitude_deg": "33.64088", + "longitude_deg": "132.90969", + "elevation_ft": "1542", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kumakogen", + "scheduled_service": "no" + }, + { + "id": "430221", + "ident": "JP-3117", + "type": "heliport", + "name": "Fujimine Heliport", + "latitude_deg": "33.61354", + "longitude_deg": "132.88739", + "elevation_ft": "1663", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kumakogen", + "scheduled_service": "no" + }, + { + "id": "430222", + "ident": "JP-3118", + "type": "heliport", + "name": "Okawamine Heliport", + "latitude_deg": "33.56801", + "longitude_deg": "132.94197", + "elevation_ft": "4925", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kumakogen", + "scheduled_service": "no" + }, + { + "id": "430223", + "ident": "JP-3119", + "type": "closed", + "name": "Yanaigawa Heliport", + "latitude_deg": "33.53954", + "longitude_deg": "132.99984", + "elevation_ft": "1739", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Kumakogen", + "scheduled_service": "no" + }, + { + "id": "430255", + "ident": "JP-3120", + "type": "heliport", + "name": "Kunisaki City Fire Department Heliport", + "latitude_deg": "33.58591", + "longitude_deg": "131.72382", + "elevation_ft": "46", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Kunisaki", + "scheduled_service": "no" + }, + { + "id": "430569", + "ident": "JP-3121", + "type": "heliport", + "name": "Utsunomiya Helicopter Club Heliport", + "latitude_deg": "36.65643", + "longitude_deg": "139.86468", + "elevation_ft": "679", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Utsunomiya", + "scheduled_service": "no" + }, + { + "id": "430570", + "ident": "JP-3122", + "type": "heliport", + "name": "Imazaike Heliport", + "latitude_deg": "35.43961", + "longitude_deg": "133.50004", + "elevation_ft": "800", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Daisen", + "scheduled_service": "no" + }, + { + "id": "313333", + "ident": "JPB", + "type": "closed", + "name": "Pan Am Building Heliport", + "latitude_deg": "40.7533", + "longitude_deg": "-73.9765", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "New York", + "scheduled_service": "no", + "keywords": "JPB" + }, + { + "id": "18255", + "ident": "JPN", + "type": "heliport", + "name": "Pentagon Army Heliport", + "latitude_deg": "38.874908", + "longitude_deg": "-77.056682", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "KJPN", + "iata_code": "JPN", + "local_code": "JPN" + }, + { + "id": "18256", + "ident": "JRA", + "type": "heliport", + "name": "West 30th St. Heliport", + "latitude_deg": "40.754501", + "longitude_deg": "-74.007103", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "New York", + "scheduled_service": "yes", + "gps_code": "KJRA", + "iata_code": "JRA", + "local_code": "JRA", + "wikipedia_link": "https://en.wikipedia.org/wiki/West_30th_Street_Heliport" + }, + { + "id": "18257", + "ident": "JRB", + "type": "heliport", + "name": "Downtown-Manhattan/Wall St Heliport", + "latitude_deg": "40.70119858", + "longitude_deg": "-74.00900269", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "New York", + "scheduled_service": "no", + "gps_code": "KJRB", + "iata_code": "JRB", + "local_code": "JRB", + "home_link": "http://www.downtownmanhattanheliport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Downtown_Manhattan_Heliport" + }, + { + "id": "308641", + "ident": "JUH", + "type": "small_airport", + "name": "Chizhou Jiuhuashan Airport", + "latitude_deg": "30.7403", + "longitude_deg": "117.6856", + "elevation_ft": "60", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-34", + "municipality": "Chizhou", + "scheduled_service": "yes", + "gps_code": "ZSJH", + "iata_code": "JUH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chizhou_Jiuhuashan_Airport" + }, + { + "id": "18260", + "ident": "JY00", + "type": "heliport", + "name": "Pio Costa Enterprises Heliport", + "latitude_deg": "40.86289978027344", + "longitude_deg": "-74.31739807128906", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "JY00", + "local_code": "JY00" + }, + { + "id": "18261", + "ident": "JY01", + "type": "heliport", + "name": "Hunterdon Medical Center Heliport", + "latitude_deg": "40.53070068359375", + "longitude_deg": "-74.86070251464844", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Flemington", + "scheduled_service": "no", + "gps_code": "JY01", + "local_code": "JY01" + }, + { + "id": "18262", + "ident": "JY02", + "type": "heliport", + "name": "Trade Zone Heliport", + "latitude_deg": "40.89680099487305", + "longitude_deg": "-74.71910095214844", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Mount Olive", + "scheduled_service": "no", + "gps_code": "JY02", + "local_code": "JY02" + }, + { + "id": "18263", + "ident": "JY03", + "type": "closed", + "name": "View Finder Balloonport", + "latitude_deg": "40.737301", + "longitude_deg": "-75.045998", + "elevation_ft": "345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Broadway", + "scheduled_service": "no", + "keywords": "JY03" + }, + { + "id": "18264", + "ident": "JY04", + "type": "small_airport", + "name": "Paramount Airport", + "latitude_deg": "39.064365", + "longitude_deg": "-74.907116", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Cape May Court House", + "scheduled_service": "no", + "gps_code": "JY04", + "local_code": "JY04" + }, + { + "id": "18265", + "ident": "JY05", + "type": "closed", + "name": "Eayrestown Helistop", + "latitude_deg": "39.957821", + "longitude_deg": "-74.768089", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Lumberton", + "scheduled_service": "no", + "keywords": "JY05" + }, + { + "id": "18266", + "ident": "JY06", + "type": "heliport", + "name": "The Farm Heliport", + "latitude_deg": "40.673044", + "longitude_deg": "-74.693467", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bedminster", + "scheduled_service": "no", + "gps_code": "JY06", + "local_code": "JY06" + }, + { + "id": "18267", + "ident": "JY07", + "type": "small_airport", + "name": "Air-List-Ads Airport", + "latitude_deg": "40.695701599121094", + "longitude_deg": "-75.13240051269531", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Stewartsville", + "scheduled_service": "no", + "gps_code": "JY07", + "local_code": "JY07" + }, + { + "id": "18268", + "ident": "JY08", + "type": "small_airport", + "name": "Var-Sky Airport", + "latitude_deg": "39.650541", + "longitude_deg": "-75.285594", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Pilesgrove", + "scheduled_service": "no", + "gps_code": "JY08", + "local_code": "JY08" + }, + { + "id": "18269", + "ident": "JY09", + "type": "heliport", + "name": "Firmenich Incorporated Heliport", + "latitude_deg": "40.33399963378906", + "longitude_deg": "-74.6167984008789", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Plainsboro", + "scheduled_service": "no", + "gps_code": "JY09", + "local_code": "JY09" + }, + { + "id": "18270", + "ident": "JY11", + "type": "closed", + "name": "Newark Academy Heliport", + "latitude_deg": "40.777301", + "longitude_deg": "-74.358498", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Livingston", + "scheduled_service": "no", + "keywords": "JY11" + }, + { + "id": "18271", + "ident": "JY12", + "type": "heliport", + "name": "International Crossroads Heliport", + "latitude_deg": "41.10430145263672", + "longitude_deg": "-74.16400146484375", + "elevation_ft": "278", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Mahwah", + "scheduled_service": "no", + "gps_code": "JY12", + "local_code": "JY12" + }, + { + "id": "18272", + "ident": "JY13", + "type": "heliport", + "name": "Colgate-Palmolive/Mennen Heliport", + "latitude_deg": "40.81399917602539", + "longitude_deg": "-74.47319793701172", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Morris Township", + "scheduled_service": "no", + "gps_code": "JY13", + "local_code": "JY13" + }, + { + "id": "18273", + "ident": "JY14", + "type": "heliport", + "name": "Halka Heliport", + "latitude_deg": "40.22079849243164", + "longitude_deg": "-74.3917007446289", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Freehold", + "scheduled_service": "no", + "gps_code": "JY14", + "local_code": "JY14" + }, + { + "id": "18274", + "ident": "JY15", + "type": "heliport", + "name": "My Girls Helistop", + "latitude_deg": "39.891499", + "longitude_deg": "-74.811302", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Medford", + "scheduled_service": "no", + "gps_code": "JY15", + "local_code": "JY15", + "keywords": "Herman Heliport" + }, + { + "id": "18275", + "ident": "JY16", + "type": "heliport", + "name": "Merrill Creek Reservoir Heliport", + "latitude_deg": "40.7400016784668", + "longitude_deg": "-75.0905990600586", + "elevation_ft": "938", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Phillipsburg", + "scheduled_service": "no", + "gps_code": "JY16", + "local_code": "JY16" + }, + { + "id": "18276", + "ident": "JY17", + "type": "small_airport", + "name": "Woodcrest Farms Airstrip", + "latitude_deg": "39.469695", + "longitude_deg": "-75.276303", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bridgeton", + "scheduled_service": "no", + "gps_code": "JY17", + "local_code": "JY17" + }, + { + "id": "18277", + "ident": "JY18", + "type": "heliport", + "name": "Warren Hopely Heliport", + "latitude_deg": "39.92829895019531", + "longitude_deg": "-74.76219940185547", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Vincentown", + "scheduled_service": "no", + "gps_code": "JY18", + "local_code": "JY18" + }, + { + "id": "18278", + "ident": "JY19", + "type": "heliport", + "name": "Commerce Bank Heliport", + "latitude_deg": "39.973300933800004", + "longitude_deg": "-74.1821975708", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Toms River", + "scheduled_service": "no", + "gps_code": "JY19", + "local_code": "JY19", + "keywords": "2JY8" + }, + { + "id": "18279", + "ident": "JY20", + "type": "heliport", + "name": "Bower, Schman & Welch Heliport", + "latitude_deg": "40.77080154418945", + "longitude_deg": "-74.9811019897461", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "JY20", + "local_code": "JY20" + }, + { + "id": "18280", + "ident": "JY21", + "type": "heliport", + "name": "New Jersey Turnpike Heliport", + "latitude_deg": "40.31650161743164", + "longitude_deg": "-74.49009704589844", + "elevation_ft": "124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Jamesburg", + "scheduled_service": "no", + "gps_code": "JY21", + "local_code": "JY21" + }, + { + "id": "18281", + "ident": "JY22", + "type": "heliport", + "name": "Hackettstown Hospital Heliport", + "latitude_deg": "40.861676", + "longitude_deg": "-74.81462", + "elevation_ft": "607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Hackettstown", + "scheduled_service": "no", + "gps_code": "JY22", + "local_code": "JY22" + }, + { + "id": "18282", + "ident": "JY23", + "type": "closed", + "name": "Transco Station Sosh Heliport", + "latitude_deg": "40.521999", + "longitude_deg": "-74.731796", + "elevation_ft": "198", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Centerville", + "scheduled_service": "no", + "keywords": "JY23" + }, + { + "id": "18283", + "ident": "JY24", + "type": "small_airport", + "name": "Weiss Farm Airport", + "latitude_deg": "40.92369842529297", + "longitude_deg": "-74.87039947509766", + "elevation_ft": "532", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Allamuchy", + "scheduled_service": "no", + "gps_code": "JY24", + "local_code": "JY24" + }, + { + "id": "18284", + "ident": "JY25", + "type": "heliport", + "name": "Liberty Cross Landing Heliport", + "latitude_deg": "40.723201751708984", + "longitude_deg": "-74.68789672851562", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Gladstone", + "scheduled_service": "no", + "gps_code": "JY25", + "local_code": "JY25" + }, + { + "id": "18285", + "ident": "JY26", + "type": "heliport", + "name": "Bridgeton Heliport", + "latitude_deg": "39.41400146484375", + "longitude_deg": "-75.81629943847656", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bridgeton", + "scheduled_service": "no", + "gps_code": "JY26", + "local_code": "JY26" + }, + { + "id": "18286", + "ident": "JY27", + "type": "heliport", + "name": "White Willow Heliport", + "latitude_deg": "40.928199768066406", + "longitude_deg": "-74.84400177001953", + "elevation_ft": "552", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Great Meadows", + "scheduled_service": "no", + "gps_code": "JY27", + "local_code": "JY27" + }, + { + "id": "18287", + "ident": "JY28", + "type": "heliport", + "name": "AtlantiCare Regional Medical Center Heliport", + "latitude_deg": "39.479614", + "longitude_deg": "-74.53925", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Pomona", + "scheduled_service": "no", + "gps_code": "JY28", + "local_code": "JY28", + "keywords": "Atlantic City Medical Center Heliport, Atlantic City Medical Center Mainland Division Heliport, 31NJ" + }, + { + "id": "18288", + "ident": "JY29", + "type": "closed", + "name": "Westwood Heliport", + "latitude_deg": "40.984345", + "longitude_deg": "-74.015622", + "elevation_ft": "47", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Westwood", + "scheduled_service": "no", + "keywords": "JY29" + }, + { + "id": "18289", + "ident": "JY30", + "type": "heliport", + "name": "Breezy Acres Farm Heliport", + "latitude_deg": "39.728599548339844", + "longitude_deg": "-74.83660125732422", + "elevation_ft": "142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Waterford", + "scheduled_service": "no", + "gps_code": "JY30", + "local_code": "JY30" + }, + { + "id": "18290", + "ident": "JY31", + "type": "small_airport", + "name": "Wide Sky Airpark", + "latitude_deg": "39.446800231933594", + "longitude_deg": "-75.31320190429688", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bridgeton", + "scheduled_service": "no", + "gps_code": "JY31", + "local_code": "JY31" + }, + { + "id": "18291", + "ident": "JY32", + "type": "heliport", + "name": "Bayside State Prison Heliport", + "latitude_deg": "39.2412693832", + "longitude_deg": "-74.9513375759", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Leesburg", + "scheduled_service": "no", + "gps_code": "JY32", + "local_code": "JY32" + }, + { + "id": "18292", + "ident": "JY33", + "type": "closed", + "name": "Harmony Balloonport", + "latitude_deg": "40.739498", + "longitude_deg": "-75.138", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Phillipsburg", + "scheduled_service": "no", + "keywords": "JY33" + }, + { + "id": "18293", + "ident": "JY34", + "type": "heliport", + "name": "Verizon - Basking Ridge Heliport", + "latitude_deg": "40.672529", + "longitude_deg": "-74.635887", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bernards Township", + "scheduled_service": "no", + "gps_code": "JY34", + "local_code": "JY34", + "keywords": "At&T Bedminster Heliport," + }, + { + "id": "18294", + "ident": "JY35", + "type": "seaplane_base", + "name": "Allen's Seaplane Base", + "latitude_deg": "40.03350067138672", + "longitude_deg": "-74.05789947509766", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Brick", + "scheduled_service": "no", + "gps_code": "JY35", + "local_code": "JY35" + }, + { + "id": "18295", + "ident": "JY36", + "type": "heliport", + "name": "Mianecki Heliport", + "latitude_deg": "41.03670120239258", + "longitude_deg": "-74.84719848632812", + "elevation_ft": "626", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Newton", + "scheduled_service": "no", + "gps_code": "JY36", + "local_code": "JY36" + }, + { + "id": "18296", + "ident": "JY37", + "type": "heliport", + "name": "Monk Heliport", + "latitude_deg": "40.57500076293945", + "longitude_deg": "-75.07499694824219", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "JY37", + "local_code": "JY37" + }, + { + "id": "18297", + "ident": "JY38", + "type": "heliport", + "name": "Edison Heliport", + "latitude_deg": "40.5172004699707", + "longitude_deg": "-74.34559631347656", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Edison", + "scheduled_service": "no", + "gps_code": "JY38", + "local_code": "JY38" + }, + { + "id": "45535", + "ident": "JY39", + "type": "small_airport", + "name": "Rainbow's End Airport", + "latitude_deg": "39.661111", + "longitude_deg": "-75.465278", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "JY39", + "local_code": "JY39" + }, + { + "id": "18298", + "ident": "JY40", + "type": "heliport", + "name": "Hess Plaza Heliport", + "latitude_deg": "40.54719924926758", + "longitude_deg": "-74.2959976196289", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Woodbridge", + "scheduled_service": "no", + "gps_code": "JY40", + "local_code": "JY40" + }, + { + "id": "18299", + "ident": "JY42", + "type": "balloonport", + "name": "Mabel's Balloonport", + "latitude_deg": "40.468299865722656", + "longitude_deg": "-75.0238037109375", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Frenchtown", + "scheduled_service": "no", + "gps_code": "JY42", + "local_code": "JY42" + }, + { + "id": "42773", + "ident": "JY43", + "type": "small_airport", + "name": "Hill Top Airport", + "latitude_deg": "41.083221", + "longitude_deg": "-74.338554", + "elevation_ft": "921", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "West Milford", + "scheduled_service": "no", + "gps_code": "JY43", + "local_code": "JY43" + }, + { + "id": "18301", + "ident": "K00", + "type": "closed", + "name": "Hall Airport", + "latitude_deg": "32.513699", + "longitude_deg": "-96.236902", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kaufman", + "scheduled_service": "no", + "keywords": "K00" + }, + { + "id": "18302", + "ident": "K00C", + "type": "small_airport", + "name": "Animas Air Park", + "latitude_deg": "37.203201293899994", + "longitude_deg": "-107.869003296", + "elevation_ft": "6684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Durango", + "scheduled_service": "no", + "iata_code": "AMK", + "local_code": "00C", + "home_link": "http://www.websmart66.net/cgi-bin/p/w66p-airportinfo.cgi?d=greggs-flying-service", + "wikipedia_link": "https://en.wikipedia.org/wiki/Animas_Air_Park" + }, + { + "id": "18303", + "ident": "K00F", + "type": "small_airport", + "name": "Broadus Airport", + "latitude_deg": "45.47249985", + "longitude_deg": "-105.4540024", + "elevation_ft": "3280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Broadus", + "scheduled_service": "no", + "gps_code": "00F", + "iata_code": "BDX", + "local_code": "00F", + "wikipedia_link": "https://en.wikipedia.org/wiki/Broadus_Airport" + }, + { + "id": "18304", + "ident": "K00M", + "type": "small_airport", + "name": "Thigpen Field", + "latitude_deg": "31.953800201416", + "longitude_deg": "-89.234497070312", + "elevation_ft": "351", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Bay Springs", + "scheduled_service": "no", + "gps_code": "00M", + "local_code": "00M" + }, + { + "id": "18305", + "ident": "K00R", + "type": "small_airport", + "name": "Livingston Municipal Airport", + "latitude_deg": "30.685899734497", + "longitude_deg": "-95.01789855957", + "elevation_ft": "151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Livingston", + "scheduled_service": "no", + "gps_code": "00R", + "local_code": "00R", + "home_link": "http://www.cityoflivingston-tx.com/departments/airport.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Livingston_Municipal_Airport_(Texas)" + }, + { + "id": "18306", + "ident": "K00V", + "type": "small_airport", + "name": "Meadow Lake Airport", + "latitude_deg": "38.9458007812", + "longitude_deg": "-104.569999695", + "elevation_ft": "6874", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Colorado Springs", + "scheduled_service": "no", + "gps_code": "KFLY", + "local_code": "FLY", + "home_link": "http://www.2mla.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Meadow_Lake_Airport_(Colorado)", + "keywords": "00V" + }, + { + "id": "18307", + "ident": "K01", + "type": "small_airport", + "name": "Farington Field", + "latitude_deg": "40.38750076293945", + "longitude_deg": "-95.78919982910156", + "elevation_ft": "932", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "K01", + "local_code": "K01" + }, + { + "id": "18308", + "ident": "K01G", + "type": "small_airport", + "name": "Perry-Warsaw Airport", + "latitude_deg": "42.7412986755", + "longitude_deg": "-78.0521011353", + "elevation_ft": "1559", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Perry", + "scheduled_service": "no", + "gps_code": "01G", + "local_code": "01G", + "wikipedia_link": "https://en.wikipedia.org/wiki/Perry-Warsaw_Airport" + }, + { + "id": "18309", + "ident": "K01M", + "type": "small_airport", + "name": "Tishomingo County Airport", + "latitude_deg": "34.49169921875", + "longitude_deg": "-88.201103210449", + "elevation_ft": "578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Belmont", + "scheduled_service": "no", + "gps_code": "01M", + "local_code": "01M" + }, + { + "id": "18310", + "ident": "K02A", + "type": "small_airport", + "name": "Chilton County Airport / Gragg-Wade Field", + "latitude_deg": "32.8504981995", + "longitude_deg": "-86.6113967896", + "elevation_ft": "585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Clanton", + "scheduled_service": "no", + "gps_code": "02A", + "local_code": "02A", + "home_link": "http://www.clanton.al.us/info/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chilton_County_Airport" + }, + { + "id": "18311", + "ident": "K02C", + "type": "small_airport", + "name": "Capitol Drive Airport", + "latitude_deg": "43.090222", + "longitude_deg": "-88.17816", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Brookfield", + "scheduled_service": "no", + "local_code": "02C", + "home_link": "http://capitoldriveairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Capitol_Airport", + "keywords": "Capitol Drive Airport" + }, + { + "id": "18312", + "ident": "K02G", + "type": "small_airport", + "name": "Columbiana County Airport", + "latitude_deg": "40.673301696777", + "longitude_deg": "-80.641403198242", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "East Liverpool", + "scheduled_service": "no", + "gps_code": "02G", + "local_code": "02G" + }, + { + "id": "45557", + "ident": "K03", + "type": "seaplane_base", + "name": "Long Lake Sagamore Seaplane Base & Marina", + "latitude_deg": "43.969588", + "longitude_deg": "-74.427897", + "elevation_ft": "1629", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Long Lake", + "scheduled_service": "no", + "local_code": "K03", + "wikipedia_link": "https://en.wikipedia.org/wiki/Long_Lake_Sagamore_Seaplane_Base" + }, + { + "id": "18313", + "ident": "K03B", + "type": "small_airport", + "name": "Mansfield Municipal Airport", + "latitude_deg": "37.1278", + "longitude_deg": "-92.621", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Mansfield", + "scheduled_service": "no", + "local_code": "03B", + "keywords": "MO14" + }, + { + "id": "18314", + "ident": "K03D", + "type": "small_airport", + "name": "Memphis Memorial Airport", + "latitude_deg": "40.447299957275", + "longitude_deg": "-92.226997375488", + "elevation_ft": "813", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Memphis", + "scheduled_service": "no", + "gps_code": "03D", + "local_code": "03D", + "keywords": "MO16" + }, + { + "id": "18315", + "ident": "K04A", + "type": "small_airport", + "name": "Frank Sikes Airport", + "latitude_deg": "31.7363", + "longitude_deg": "-86.262497", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Luverne", + "scheduled_service": "no", + "local_code": "04A", + "wikipedia_link": "https://en.wikipedia.org/wiki/Frank_Sikes_Airport" + }, + { + "id": "18316", + "ident": "K04G", + "type": "small_airport", + "name": "Lansdowne Airport", + "latitude_deg": "41.130501", + "longitude_deg": "-80.619598", + "elevation_ft": "1044", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Youngstown", + "scheduled_service": "no", + "local_code": "04G", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lansdowne_Airport" + }, + { + "id": "18317", + "ident": "K04M", + "type": "small_airport", + "name": "Calhoun County Airport", + "latitude_deg": "33.930099", + "longitude_deg": "-89.342795", + "elevation_ft": "383", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Pittsboro", + "scheduled_service": "no", + "local_code": "04M", + "wikipedia_link": "https://en.wikipedia.org/wiki/Calhoun_County_Airport_(Mississippi)" + }, + { + "id": "18318", + "ident": "K04Y", + "type": "small_airport", + "name": "Hawley Municipal Airport", + "latitude_deg": "46.883801", + "longitude_deg": "-96.350304", + "elevation_ft": "1208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hawley", + "scheduled_service": "no", + "local_code": "04Y" + }, + { + "id": "18319", + "ident": "K05C", + "type": "small_airport", + "name": "Griffith-Merrillville Airport", + "latitude_deg": "41.519798", + "longitude_deg": "-87.399498", + "elevation_ft": "634", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Griffith", + "scheduled_service": "no", + "local_code": "05C", + "wikipedia_link": "https://en.wikipedia.org/wiki/Griffith-Merrillville_Airport" + }, + { + "id": "18320", + "ident": "K05D", + "type": "small_airport", + "name": "New Town Municipal Airport", + "latitude_deg": "47.966996", + "longitude_deg": "-102.477997", + "elevation_ft": "1925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "New Town", + "scheduled_service": "no", + "local_code": "05D" + }, + { + "id": "18321", + "ident": "K05U", + "type": "small_airport", + "name": "Eureka Airport", + "latitude_deg": "39.604198455799995", + "longitude_deg": "-116.004997253", + "elevation_ft": "5954", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Eureka", + "scheduled_service": "no", + "gps_code": "05U", + "iata_code": "EUE", + "local_code": "05U", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eureka_Airport_(Nevada)", + "keywords": "Booth Bailey Field" + }, + { + "id": "18322", + "ident": "K06A", + "type": "small_airport", + "name": "Moton Field Municipal Airport", + "latitude_deg": "32.460499", + "longitude_deg": "-85.680002", + "elevation_ft": "264", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Tuskegee", + "scheduled_service": "no", + "gps_code": "K06A", + "local_code": "06A", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moton_Field_Municipal_Airport" + }, + { + "id": "18323", + "ident": "K06C", + "type": "small_airport", + "name": "Schaumburg Regional Airport", + "latitude_deg": "41.9892997742", + "longitude_deg": "-88.1011962891", + "elevation_ft": "801", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago/Schaumburg", + "scheduled_service": "no", + "gps_code": "06C", + "local_code": "06C", + "home_link": "http://www.ci.schaumburg.il.us/trans/airport1/Pages/default.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Schaumburg_Regional_Airport", + "keywords": "EIT" + }, + { + "id": "18324", + "ident": "K06D", + "type": "small_airport", + "name": "Rolla Municipal Airport", + "latitude_deg": "48.8843", + "longitude_deg": "-99.620903", + "elevation_ft": "1823", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Rolla", + "scheduled_service": "no", + "gps_code": "K06D", + "local_code": "06D" + }, + { + "id": "18325", + "ident": "K06M", + "type": "small_airport", + "name": "Eupora Airport", + "latitude_deg": "33.534599", + "longitude_deg": "-89.312598", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Eupora", + "scheduled_service": "no", + "local_code": "06M" + }, + { + "id": "18326", + "ident": "K06U", + "type": "small_airport", + "name": "Jackpot Airport/Hayden Field", + "latitude_deg": "41.97600173949999", + "longitude_deg": "-114.657997131", + "elevation_ft": "5213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Jackpot", + "scheduled_service": "no", + "gps_code": "06U", + "iata_code": "KPT", + "local_code": "06U", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jackpot_Airport" + }, + { + "id": "20238", + "ident": "K07", + "type": "small_airport", + "name": "Rolla Downtown Airport", + "latitude_deg": "37.935699462890625", + "longitude_deg": "-91.8134994506836", + "elevation_ft": "987", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Rolla", + "scheduled_service": "no", + "gps_code": "K07", + "iata_code": "RLA", + "local_code": "K07" + }, + { + "id": "18327", + "ident": "K07A", + "type": "small_airport", + "name": "Franklin Field", + "latitude_deg": "32.166801", + "longitude_deg": "-85.809702", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Union Springs", + "scheduled_service": "no", + "gps_code": "K07A", + "local_code": "07A" + }, + { + "id": "18328", + "ident": "K07F", + "type": "small_airport", + "name": "Gladewater Municipal Airport", + "latitude_deg": "32.528801", + "longitude_deg": "-94.971702", + "elevation_ft": "296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gladewater", + "scheduled_service": "no", + "gps_code": "K07F", + "local_code": "07F" + }, + { + "id": "18329", + "ident": "K07R", + "type": "small_airport", + "name": "Bishop-Windham Airport", + "latitude_deg": "27.6103", + "longitude_deg": "-97.752614", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bishop", + "scheduled_service": "no", + "local_code": "07R", + "keywords": "Bishop Municipal" + }, + { + "id": "18330", + "ident": "K07V", + "type": "small_airport", + "name": "Cuchara Valley At La Veta Airport", + "latitude_deg": "37.5238", + "longitude_deg": "-105.009002", + "elevation_ft": "7153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "La Veta", + "scheduled_service": "no", + "gps_code": "K07V", + "local_code": "07V" + }, + { + "id": "18331", + "ident": "K08", + "type": "small_airport", + "name": "Holly Airport", + "latitude_deg": "38.035179", + "longitude_deg": "-102.11673", + "elevation_ft": "3390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Holly", + "scheduled_service": "no", + "gps_code": "KK08", + "local_code": "K08" + }, + { + "id": "18332", + "ident": "K08A", + "type": "small_airport", + "name": "Wetumpka Municipal Airport", + "latitude_deg": "32.5294", + "longitude_deg": "-86.328201", + "elevation_ft": "197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Wetumpka", + "scheduled_service": "no", + "local_code": "08A", + "keywords": "Air Evac 64 Heliport" + }, + { + "id": "18333", + "ident": "K08C", + "type": "small_airport", + "name": "Riverview Airport", + "latitude_deg": "42.935902", + "longitude_deg": "-85.805", + "elevation_ft": "603", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Georgetown Township", + "scheduled_service": "no", + "local_code": "08C" + }, + { + "id": "18334", + "ident": "K08D", + "type": "small_airport", + "name": "Stanley Municipal Airport", + "latitude_deg": "48.3008", + "longitude_deg": "-102.405998", + "elevation_ft": "2245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Stanley", + "scheduled_service": "no", + "local_code": "08D" + }, + { + "id": "18335", + "ident": "K08K", + "type": "small_airport", + "name": "Harvard State Airport", + "latitude_deg": "40.651402", + "longitude_deg": "-98.079803", + "elevation_ft": "1815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Harvard", + "scheduled_service": "no", + "local_code": "08K", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harvard_State_Airport", + "keywords": "Harvard AAF" + }, + { + "id": "18336", + "ident": "K08M", + "type": "small_airport", + "name": "Carthage-Leake County Airport", + "latitude_deg": "32.7612", + "longitude_deg": "-89.530098", + "elevation_ft": "454", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Carthage", + "scheduled_service": "no", + "local_code": "08M" + }, + { + "id": "18337", + "ident": "K09A", + "type": "small_airport", + "name": "Butler-Choctaw County Airport", + "latitude_deg": "32.119301", + "longitude_deg": "-88.127502", + "elevation_ft": "134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Butler", + "scheduled_service": "no", + "local_code": "09A" + }, + { + "id": "18338", + "ident": "K09J", + "type": "small_airport", + "name": "Jekyll Island Airport", + "latitude_deg": "31.07449913", + "longitude_deg": "-81.42780304", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Jekyll Island", + "scheduled_service": "no", + "gps_code": "09J", + "local_code": "09J" + }, + { + "id": "18339", + "ident": "K09K", + "type": "small_airport", + "name": "Sargent Municipal Airport", + "latitude_deg": "41.634903", + "longitude_deg": "-99.342161", + "elevation_ft": "2313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Sargent", + "scheduled_service": "no", + "local_code": "09K" + }, + { + "id": "18340", + "ident": "K09M", + "type": "small_airport", + "name": "Charleston Municipal Airport", + "latitude_deg": "33.991501", + "longitude_deg": "-90.078621", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Charleston", + "scheduled_service": "no", + "local_code": "09M" + }, + { + "id": "18341", + "ident": "K09R", + "type": "small_airport", + "name": "Tyler County Airport", + "latitude_deg": "30.774768", + "longitude_deg": "-94.458818", + "elevation_ft": "388", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Woodville", + "scheduled_service": "no", + "local_code": "09R" + }, + { + "id": "18342", + "ident": "K0A2", + "type": "closed", + "name": "Hester Memorial Airport", + "latitude_deg": "34.090563", + "longitude_deg": "-82.565281", + "elevation_ft": "517", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Calhoun Falls", + "scheduled_service": "no", + "keywords": "0A2" + }, + { + "id": "18343", + "ident": "K0A3", + "type": "small_airport", + "name": "Smithville Municipal Airport", + "latitude_deg": "35.985298", + "longitude_deg": "-85.809303", + "elevation_ft": "1084", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Smithville", + "scheduled_service": "no", + "local_code": "0A3" + }, + { + "id": "18344", + "ident": "K0A4", + "type": "small_airport", + "name": "Johnson City Airport", + "latitude_deg": "36.363701", + "longitude_deg": "-82.308998", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Johnson City", + "scheduled_service": "no", + "gps_code": "K0A4", + "local_code": "0A4" + }, + { + "id": "18345", + "ident": "K0A7", + "type": "small_airport", + "name": "Hendersonville Airport", + "latitude_deg": "35.308258", + "longitude_deg": "-82.432948", + "elevation_ft": "2084", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hendersonville", + "scheduled_service": "no", + "local_code": "0A7" + }, + { + "id": "18346", + "ident": "K0A8", + "type": "small_airport", + "name": "Bibb County Airport", + "latitude_deg": "32.93691", + "longitude_deg": "-87.090533", + "elevation_ft": "251", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Centreville", + "scheduled_service": "no", + "gps_code": "K0A8", + "local_code": "0A8" + }, + { + "id": "18347", + "ident": "K0A9", + "type": "small_airport", + "name": "Elizabethton Municipal Airport", + "latitude_deg": "36.371201", + "longitude_deg": "-82.173302", + "elevation_ft": "1593", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Elizabethton", + "scheduled_service": "no", + "local_code": "0A9" + }, + { + "id": "18348", + "ident": "K0B1", + "type": "small_airport", + "name": "Bethel Regional Airport", + "latitude_deg": "44.425201", + "longitude_deg": "-70.809896", + "elevation_ft": "654", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Bethel", + "scheduled_service": "no", + "local_code": "0B1", + "home_link": "http://www.bethelregionalairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bethel_Regional_Airport", + "keywords": "Dyke Airport" + }, + { + "id": "18349", + "ident": "K0B4", + "type": "small_airport", + "name": "Hartington Municipal Airport / Bud Becker Field", + "latitude_deg": "42.6036", + "longitude_deg": "-97.252602", + "elevation_ft": "1387", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hartington", + "scheduled_service": "no", + "local_code": "0B4" + }, + { + "id": "18350", + "ident": "K0B5", + "type": "small_airport", + "name": "Turners Falls Airport", + "latitude_deg": "42.5914001465", + "longitude_deg": "-72.5227966309", + "elevation_ft": "356", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Montague", + "scheduled_service": "no", + "gps_code": "0B5", + "local_code": "0B5", + "home_link": "http://turnersfallsairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Turners_Falls_Airport" + }, + { + "id": "18351", + "ident": "K0B8", + "type": "small_airport", + "name": "Elizabeth Field", + "latitude_deg": "41.25130081179999", + "longitude_deg": "-72.0316009521", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Fishers Island", + "scheduled_service": "no", + "gps_code": "0B8", + "iata_code": "FID", + "local_code": "0B8", + "home_link": "https://www.dot.ny.gov/divisions/operating/opdm/aviation/repository/air_dir2/Elizabeth-revised.pdf", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elizabeth_Field" + }, + { + "id": "18352", + "ident": "K0C0", + "type": "small_airport", + "name": "Dacy Airport", + "latitude_deg": "42.40250015258789", + "longitude_deg": "-88.63240051269531", + "elevation_ft": "913", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Harvard", + "scheduled_service": "no", + "gps_code": "K0C0", + "local_code": "0C0" + }, + { + "id": "18353", + "ident": "K0C4", + "type": "small_airport", + "name": "Pender Municipal Airport", + "latitude_deg": "42.113899", + "longitude_deg": "-96.728107", + "elevation_ft": "1345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Pender", + "scheduled_service": "no", + "local_code": "0C4" + }, + { + "id": "18354", + "ident": "K0D8", + "type": "small_airport", + "name": "Gettysburg Municipal Airport", + "latitude_deg": "44.986698", + "longitude_deg": "-99.952797", + "elevation_ft": "2062", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Gettysburg", + "scheduled_service": "no", + "gps_code": "K0D8", + "local_code": "0D8" + }, + { + "id": "18355", + "ident": "K0E0", + "type": "small_airport", + "name": "Moriarty Municipal Airport", + "latitude_deg": "34.9751", + "longitude_deg": "-106.0028", + "elevation_ft": "6199", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Moriarty", + "scheduled_service": "no", + "local_code": "0.00E+00" + }, + { + "id": "18356", + "ident": "K0E8", + "type": "small_airport", + "name": "Crownpoint Airport", + "latitude_deg": "35.71770095825195", + "longitude_deg": "-108.2020034790039", + "elevation_ft": "6696", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Crownpoint", + "scheduled_service": "no", + "local_code": "0.00E+00", + "wikipedia_link": "https://en.wikipedia.org/wiki/Crownpoint_Airport" + }, + { + "id": "18357", + "ident": "K0F2", + "type": "small_airport", + "name": "Bowie Municipal Airport", + "latitude_deg": "33.6017", + "longitude_deg": "-97.775597", + "elevation_ft": "1101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bowie", + "scheduled_service": "no", + "local_code": "0F2" + }, + { + "id": "18359", + "ident": "K0F4", + "type": "small_airport", + "name": "Loup City Municipal Airport", + "latitude_deg": "41.286449", + "longitude_deg": "-98.989745", + "elevation_ft": "2071", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Loup City", + "scheduled_service": "no", + "local_code": "0F4", + "keywords": "NE03" + }, + { + "id": "18360", + "ident": "K0F7", + "type": "small_airport", + "name": "Fountainhead Lodge Airpark", + "latitude_deg": "35.388699", + "longitude_deg": "-95.600238", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Checotah", + "scheduled_service": "no", + "local_code": "0F7" + }, + { + "id": "18362", + "ident": "K0F9", + "type": "small_airport", + "name": "Tishomingo Airpark", + "latitude_deg": "34.198502", + "longitude_deg": "-96.6745", + "elevation_ft": "647", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tishomingo", + "scheduled_service": "no", + "local_code": "0F9" + }, + { + "id": "18363", + "ident": "K0G3", + "type": "small_airport", + "name": "Tecumseh Municipal Airport", + "latitude_deg": "40.400849", + "longitude_deg": "-96.170406", + "elevation_ft": "1306", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Tecumseh", + "scheduled_service": "no", + "local_code": "0G3" + }, + { + "id": "18364", + "ident": "K0G6", + "type": "small_airport", + "name": "Williams County Airport", + "latitude_deg": "41.4674", + "longitude_deg": "-84.506599", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bryan", + "scheduled_service": "no", + "local_code": "0G6" + }, + { + "id": "18365", + "ident": "K0G7", + "type": "small_airport", + "name": "Finger Lakes Regional Airport", + "latitude_deg": "42.883598", + "longitude_deg": "-76.782246", + "elevation_ft": "492", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Seneca Falls", + "scheduled_service": "no", + "local_code": "0G7" + }, + { + "id": "18366", + "ident": "K0H1", + "type": "small_airport", + "name": "Trego WaKeeney Airport", + "latitude_deg": "39.004501", + "longitude_deg": "-99.892899", + "elevation_ft": "2435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "WaKeeney", + "scheduled_service": "no", + "local_code": "0H1", + "home_link": "https://www.tregocountyks.com/2148/Airport", + "keywords": "7KS1" + }, + { + "id": "18367", + "ident": "K0I8", + "type": "small_airport", + "name": "Cynthiana-Harrison County Airport", + "latitude_deg": "38.3661994934", + "longitude_deg": "-84.2833023071", + "elevation_ft": "721", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Cynthiana", + "scheduled_service": "no", + "gps_code": "0I8", + "local_code": "0I8", + "home_link": "http://www.ky0i8.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cynthiana-Harrison_County_Airport" + }, + { + "id": "18368", + "ident": "K0J4", + "type": "small_airport", + "name": "Florala Municipal Airport", + "latitude_deg": "31.0425", + "longitude_deg": "-86.3116", + "elevation_ft": "314", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Florala", + "scheduled_service": "no", + "local_code": "0J4" + }, + { + "id": "18369", + "ident": "K0J6", + "type": "small_airport", + "name": "Headland Municipal Airport", + "latitude_deg": "31.3643", + "longitude_deg": "-85.311798", + "elevation_ft": "359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Headland", + "scheduled_service": "no", + "gps_code": "KHDL", + "local_code": "HDL", + "home_link": "https://www.flyheadland.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Headland_Municipal_Airport", + "keywords": "0J6" + }, + { + "id": "18370", + "ident": "K0J9", + "type": "small_airport", + "name": "Flying V Airport", + "latitude_deg": "40.867802", + "longitude_deg": "-97.354011", + "elevation_ft": "1585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Utica", + "scheduled_service": "no", + "local_code": "0NE9", + "keywords": "0J9, NE23" + }, + { + "id": "18371", + "ident": "K0K7", + "type": "small_airport", + "name": "Humboldt Municipal Airport", + "latitude_deg": "42.736099243199995", + "longitude_deg": "-94.2452011108", + "elevation_ft": "1093", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Humboldt", + "scheduled_service": "no", + "gps_code": "0K7", + "iata_code": "HUD", + "local_code": "0K7", + "home_link": "http://www.iowadot.gov/aviation/airports/AirportIntermediate.aspx?FAACode=0K7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Humboldt_Municipal_Airport_(Iowa)" + }, + { + "id": "18372", + "ident": "K0L7", + "type": "small_airport", + "name": "Jean Airport", + "latitude_deg": "35.7682991027832", + "longitude_deg": "-115.33000183105469", + "elevation_ft": "2832", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Jean", + "scheduled_service": "no", + "gps_code": "K0L7", + "local_code": "0L7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jean_Airport" + }, + { + "id": "18373", + "ident": "K0L9", + "type": "small_airport", + "name": "Echo Bay Airport", + "latitude_deg": "36.3111", + "longitude_deg": "-114.463997", + "elevation_ft": "1535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Overton", + "scheduled_service": "no", + "gps_code": "K0L9", + "local_code": "0L9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Echo_Bay_Airport" + }, + { + "id": "18374", + "ident": "K0M0", + "type": "small_airport", + "name": "Billy Free Municipal Airport", + "latitude_deg": "33.8848", + "longitude_deg": "-91.5345", + "elevation_ft": "163", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Dumas", + "scheduled_service": "no", + "local_code": "0M0", + "home_link": "https://www.dumasar.net/pages/about-dumas-arkansas/dumas-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Billy_Free_Municipal_Airport" + }, + { + "id": "18375", + "ident": "K0M1", + "type": "closed", + "name": "Scott Field", + "latitude_deg": "35.637798", + "longitude_deg": "-88.127998", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Parsons", + "scheduled_service": "no", + "keywords": "0M1" + }, + { + "id": "18376", + "ident": "K0M2", + "type": "small_airport", + "name": "Reelfoot Lake Airport", + "latitude_deg": "36.4753", + "longitude_deg": "-89.346199", + "elevation_ft": "289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Tiptonville", + "scheduled_service": "no", + "local_code": "0M2" + }, + { + "id": "18377", + "ident": "K0M3", + "type": "small_airport", + "name": "Paul Bridges Field", + "latitude_deg": "35.546001", + "longitude_deg": "-87.597298", + "elevation_ft": "972", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Hohenwald", + "scheduled_service": "no", + "local_code": "0M3", + "keywords": "John A Baker" + }, + { + "id": "18378", + "ident": "K0M4", + "type": "small_airport", + "name": "Benton County Airport", + "latitude_deg": "36.011101", + "longitude_deg": "-88.123299", + "elevation_ft": "468", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Camden", + "scheduled_service": "no", + "local_code": "0M4", + "home_link": "https://www.bentoncountytn.gov/193/Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Benton_County_Airport" + }, + { + "id": "18379", + "ident": "K0M5", + "type": "small_airport", + "name": "Humphreys County Airport", + "latitude_deg": "36.1166", + "longitude_deg": "-87.738197", + "elevation_ft": "756", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Waverly", + "scheduled_service": "no", + "local_code": "0M5", + "keywords": "Music City Skydiving" + }, + { + "id": "18380", + "ident": "K0M8", + "type": "small_airport", + "name": "Byerley Airport", + "latitude_deg": "32.825901", + "longitude_deg": "-91.187698", + "elevation_ft": "106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Providence", + "scheduled_service": "no", + "local_code": "0M8", + "home_link": "http://wwwapps.dotd.la.gov/multimodal/aviation/AirportDirectory.aspx?SC=0M8" + }, + { + "id": "18381", + "ident": "K0M9", + "type": "small_airport", + "name": "Delhi Municipal Airport", + "latitude_deg": "32.410702", + "longitude_deg": "-91.498703", + "elevation_ft": "91", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Delhi", + "scheduled_service": "no", + "local_code": "0M9" + }, + { + "id": "18382", + "ident": "K0O2", + "type": "small_airport", + "name": "Baker Airport", + "latitude_deg": "35.287128", + "longitude_deg": "-116.081657", + "elevation_ft": "922", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Baker", + "scheduled_service": "no", + "local_code": "0O2", + "home_link": "https://airports.sbcounty.gov/baker-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baker_Airport" + }, + { + "id": "18384", + "ident": "K0Q5", + "type": "small_airport", + "name": "Shelter Cove Airport", + "latitude_deg": "40.028167", + "longitude_deg": "-124.074305", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Shelter Cove", + "scheduled_service": "no", + "local_code": "0Q5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shelter_Cove_Airport" + }, + { + "id": "18385", + "ident": "K0R0", + "type": "small_airport", + "name": "Columbia-Marion County Airport", + "latitude_deg": "31.297001", + "longitude_deg": "-89.812798", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Columbia", + "scheduled_service": "no", + "local_code": "0R0", + "home_link": "http://www.marioncountyms.com/columbia-marion-county-airport" + }, + { + "id": "18386", + "ident": "K0R1", + "type": "small_airport", + "name": "Atmore Municipal Airport", + "latitude_deg": "31.016199", + "longitude_deg": "-87.4468", + "elevation_ft": "287", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Atmore", + "scheduled_service": "no", + "local_code": "0R1", + "home_link": "https://welcometoatmore.com/departments/municipal-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atmore_Municipal_Airport" + }, + { + "id": "18387", + "ident": "K0R3", + "type": "small_airport", + "name": "Abbeville Chris Crusta Memorial Airport", + "latitude_deg": "29.97579956", + "longitude_deg": "-92.084198", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Abbeville", + "scheduled_service": "no", + "gps_code": "KIYA", + "local_code": "IYA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abbeville_Chris_Crusta_Memorial_Airport", + "keywords": "0R3" + }, + { + "id": "18388", + "ident": "K0R4", + "type": "small_airport", + "name": "Concordia Parish Airport", + "latitude_deg": "31.562000274658203", + "longitude_deg": "-91.50650024414062", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Vidalia", + "scheduled_service": "no", + "gps_code": "K0R4", + "local_code": "0R4" + }, + { + "id": "18389", + "ident": "K0R5", + "type": "small_airport", + "name": "David G Joyce Airport", + "latitude_deg": "31.963699", + "longitude_deg": "-92.660301", + "elevation_ft": "146", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Winnfield", + "scheduled_service": "no", + "gps_code": "K0R5", + "local_code": "0R5" + }, + { + "id": "18390", + "ident": "K0R6", + "type": "small_airport", + "name": "Hampton Municipal Airport", + "latitude_deg": "33.52259826660156", + "longitude_deg": "-92.46029663085938", + "elevation_ft": "178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Hampton", + "scheduled_service": "no", + "gps_code": "K0R6", + "local_code": "0R6" + }, + { + "id": "18391", + "ident": "K0S0", + "type": "small_airport", + "name": "Lind Airport", + "latitude_deg": "46.976799", + "longitude_deg": "-118.586998", + "elevation_ft": "1507", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Lind", + "scheduled_service": "no", + "gps_code": "K0S0", + "local_code": "0S0" + }, + { + "id": "18392", + "ident": "K0S7", + "type": "small_airport", + "name": "Dorothy Scott Airport", + "latitude_deg": "48.95899963378906", + "longitude_deg": "-119.41200256347656", + "elevation_ft": "1064", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Oroville", + "scheduled_service": "no", + "gps_code": "K0S7", + "local_code": "0S7" + }, + { + "id": "18393", + "ident": "K0S9", + "type": "small_airport", + "name": "Jefferson County International Airport", + "latitude_deg": "48.0537986755", + "longitude_deg": "-122.810997009", + "elevation_ft": "108", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Port Townsend", + "scheduled_service": "no", + "gps_code": "K0S9", + "iata_code": "TWD", + "local_code": "0S9", + "home_link": "http://www.portofpt.com/airport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jefferson_County_International_Airport" + }, + { + "id": "18394", + "ident": "K0V3", + "type": "small_airport", + "name": "Pioneer Village Field", + "latitude_deg": "40.51490020751953", + "longitude_deg": "-98.94560241699219", + "elevation_ft": "2160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Minden", + "scheduled_service": "no", + "gps_code": "K0V3", + "local_code": "0V3" + }, + { + "id": "18395", + "ident": "K0V4", + "type": "small_airport", + "name": "Brookneal/Campbell County Airport", + "latitude_deg": "37.141701", + "longitude_deg": "-79.016403", + "elevation_ft": "596", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Gladys", + "scheduled_service": "no", + "local_code": "0V4" + }, + { + "id": "18396", + "ident": "K0V6", + "type": "closed", + "name": "Mission Sioux Airport", + "latitude_deg": "43.306901", + "longitude_deg": "-100.627997", + "elevation_ft": "2605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Mission", + "scheduled_service": "no", + "keywords": "0V6" + }, + { + "id": "18397", + "ident": "K0V7", + "type": "small_airport", + "name": "Kayenta Airport", + "latitude_deg": "36.716444", + "longitude_deg": "-110.228444", + "elevation_ft": "5688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Kayenta", + "scheduled_service": "no", + "iata_code": "MVM", + "local_code": "0V7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kayenta_Airport" + }, + { + "id": "18398", + "ident": "K0VG", + "type": "small_airport", + "name": "Lee County Airport", + "latitude_deg": "36.65409851074219", + "longitude_deg": "-83.2177963256836", + "elevation_ft": "1411", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Jonesville", + "scheduled_service": "no", + "gps_code": "K0VG", + "local_code": "0VG" + }, + { + "id": "18399", + "ident": "K0W3", + "type": "small_airport", + "name": "Harford County Airport", + "latitude_deg": "39.56679916381836", + "longitude_deg": "-76.20240020751953", + "elevation_ft": "409", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Churchville", + "scheduled_service": "no", + "gps_code": "K0W3", + "local_code": "0W3" + }, + { + "id": "18400", + "ident": "K10C", + "type": "small_airport", + "name": "Galt Field", + "latitude_deg": "42.40290069580078", + "longitude_deg": "-88.3750991821289", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Greenwood/Wonder Lake", + "scheduled_service": "no", + "gps_code": "K10C", + "local_code": "10C" + }, + { + "id": "18401", + "ident": "K10G", + "type": "small_airport", + "name": "Holmes County Airport", + "latitude_deg": "40.537200927734375", + "longitude_deg": "-81.95439910888672", + "elevation_ft": "1218", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Millersburg", + "scheduled_service": "no", + "gps_code": "K10G", + "local_code": "10G" + }, + { + "id": "18402", + "ident": "K10U", + "type": "small_airport", + "name": "Owyhee Airport", + "latitude_deg": "41.953604", + "longitude_deg": "-116.182155", + "elevation_ft": "5374", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Owyhee", + "scheduled_service": "no", + "gps_code": "K10U", + "local_code": "10U", + "wikipedia_link": "https://en.wikipedia.org/wiki/Owyhee_Airport" + }, + { + "id": "18403", + "ident": "K11", + "type": "small_airport", + "name": "Sam Riggs Airpark", + "latitude_deg": "36.21820068359375", + "longitude_deg": "-95.65190124511719", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Claremore", + "scheduled_service": "no", + "gps_code": "K11", + "local_code": "K11" + }, + { + "id": "18404", + "ident": "K11A", + "type": "small_airport", + "name": "Clayton Municipal Airport", + "latitude_deg": "31.883301", + "longitude_deg": "-85.484901", + "elevation_ft": "435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Clayton", + "scheduled_service": "no", + "gps_code": "K11A", + "local_code": "11A" + }, + { + "id": "18405", + "ident": "K11R", + "type": "small_airport", + "name": "Brenham Municipal Airport", + "latitude_deg": "30.21899986", + "longitude_deg": "-96.3742981", + "elevation_ft": "307", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brenham", + "scheduled_service": "no", + "gps_code": "K11R", + "local_code": "11R" + }, + { + "id": "18406", + "ident": "K11V", + "type": "small_airport", + "name": "Easton/Valley View Airport", + "latitude_deg": "40.330501556399994", + "longitude_deg": "-104.60900116", + "elevation_ft": "4820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Greeley", + "scheduled_service": "no", + "gps_code": "K11V", + "local_code": "11V" + }, + { + "id": "18407", + "ident": "K12D", + "type": "small_airport", + "name": "Tower Municipal Airport", + "latitude_deg": "47.81829833984375", + "longitude_deg": "-92.29170227050781", + "elevation_ft": "1369", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Tower", + "scheduled_service": "no", + "gps_code": "K12D", + "local_code": "12D" + }, + { + "id": "18408", + "ident": "K12G", + "type": "small_airport", + "name": "Shelby Community Airport", + "latitude_deg": "40.87289810180664", + "longitude_deg": "-82.69740295410156", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Shelby", + "scheduled_service": "no", + "gps_code": "K12G", + "local_code": "12G" + }, + { + "id": "18409", + "ident": "K12J", + "type": "small_airport", + "name": "Brewton Municipal Airport", + "latitude_deg": "31.050600051879883", + "longitude_deg": "-87.06559753417969", + "elevation_ft": "99", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Brewton", + "scheduled_service": "no", + "gps_code": "K12J", + "local_code": "12J" + }, + { + "id": "18410", + "ident": "K12K", + "type": "small_airport", + "name": "Superior Municipal Airport", + "latitude_deg": "40.0463981628418", + "longitude_deg": "-98.06009674072266", + "elevation_ft": "1691", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Superior", + "scheduled_service": "no", + "gps_code": "K12K", + "local_code": "12K" + }, + { + "id": "18411", + "ident": "K12N", + "type": "small_airport", + "name": "Aeroflex-Andover Airport", + "latitude_deg": "41.0085983276", + "longitude_deg": "-74.7379989624", + "elevation_ft": "583", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Andover", + "scheduled_service": "no", + "gps_code": "K12N", + "local_code": "12N" + }, + { + "id": "18412", + "ident": "K12V", + "type": "small_airport", + "name": "Ona Airpark", + "latitude_deg": "38.44089889526367", + "longitude_deg": "-82.20079803466797", + "elevation_ft": "572", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "K12V", + "local_code": "12V" + }, + { + "id": "18413", + "ident": "K12Y", + "type": "small_airport", + "name": "Le Sueur Municipal Airport", + "latitude_deg": "44.441071", + "longitude_deg": "-93.916283", + "elevation_ft": "868", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Le Sueur", + "scheduled_service": "no", + "gps_code": "K12Y", + "local_code": "12Y" + }, + { + "id": "18414", + "ident": "K13", + "type": "closed", + "name": "Mohawk Valley Airport", + "latitude_deg": "42.868099", + "longitude_deg": "-74.028702", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Scotia", + "scheduled_service": "no", + "local_code": "K13", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mohawk_Valley_Airport", + "keywords": "K13, 31NK" + }, + { + "id": "18415", + "ident": "K13C", + "type": "small_airport", + "name": "Lakeview-Airport-Griffith Field", + "latitude_deg": "43.4520988464", + "longitude_deg": "-85.26480102539999", + "elevation_ft": "969", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lakeview", + "scheduled_service": "no", + "gps_code": "K13C", + "local_code": "13C" + }, + { + "id": "18416", + "ident": "K13K", + "type": "small_airport", + "name": "Eureka Municipal Airport", + "latitude_deg": "37.851600646972656", + "longitude_deg": "-96.29170227050781", + "elevation_ft": "1206", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Eureka", + "scheduled_service": "no", + "gps_code": "K13K", + "local_code": "13K" + }, + { + "id": "18417", + "ident": "K14A", + "type": "small_airport", + "name": "Lake Norman Airpark", + "latitude_deg": "35.612998962402344", + "longitude_deg": "-80.89939880371094", + "elevation_ft": "839", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Mooresville", + "scheduled_service": "no", + "gps_code": "K14A", + "local_code": "14A" + }, + { + "id": "18418", + "ident": "K14F", + "type": "small_airport", + "name": "Hamlin Airport", + "latitude_deg": "32.849674", + "longitude_deg": "-100.136648", + "elevation_ft": "1753", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hamlin", + "scheduled_service": "no", + "gps_code": "16TX", + "local_code": "16TX", + "keywords": "14F, Hamlin Municipal" + }, + { + "id": "18419", + "ident": "K14G", + "type": "small_airport", + "name": "Fremont Airport", + "latitude_deg": "41.333099365234375", + "longitude_deg": "-83.16120147705078", + "elevation_ft": "663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Fremont", + "scheduled_service": "no", + "gps_code": "K14G", + "local_code": "14G" + }, + { + "id": "18420", + "ident": "K14J", + "type": "small_airport", + "name": "Carl Folsom Airport", + "latitude_deg": "31.41", + "longitude_deg": "-86.090302", + "elevation_ft": "258", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Elba", + "scheduled_service": "no", + "gps_code": "K14J", + "local_code": "14J", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carl_Folsom_Airport" + }, + { + "id": "18421", + "ident": "K14M", + "type": "small_airport", + "name": "Hollandale Municipal Airport", + "latitude_deg": "33.182598", + "longitude_deg": "-90.830704", + "elevation_ft": "114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Hollandale", + "scheduled_service": "no", + "gps_code": "K14M", + "local_code": "14M" + }, + { + "id": "18422", + "ident": "K14Y", + "type": "small_airport", + "name": "Todd Field", + "latitude_deg": "45.89860153198242", + "longitude_deg": "-94.8739013671875", + "elevation_ft": "1333", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Long Prairie", + "scheduled_service": "no", + "gps_code": "K14Y", + "local_code": "14Y" + }, + { + "id": "18423", + "ident": "K15F", + "type": "small_airport", + "name": "Haskell Municipal Airport", + "latitude_deg": "33.19150161743164", + "longitude_deg": "-99.71790313720703", + "elevation_ft": "1625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Haskell", + "scheduled_service": "no", + "gps_code": "K15F", + "local_code": "15F" + }, + { + "id": "18424", + "ident": "K15J", + "type": "small_airport", + "name": "Cook County Airport", + "latitude_deg": "31.137800216675", + "longitude_deg": "-83.453300476074", + "elevation_ft": "236", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Adel", + "scheduled_service": "no", + "gps_code": "15J", + "local_code": "15J" + }, + { + "id": "18425", + "ident": "K15M", + "type": "small_airport", + "name": "Iuka Airport", + "latitude_deg": "34.772300720214844", + "longitude_deg": "-88.16590118408203", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Iuka", + "scheduled_service": "no", + "gps_code": "K15M", + "local_code": "15M" + }, + { + "id": "18426", + "ident": "K16D", + "type": "small_airport", + "name": "Perham Municipal Airport", + "latitude_deg": "46.60409927368164", + "longitude_deg": "-95.60449981689453", + "elevation_ft": "1371", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Perham", + "scheduled_service": "no", + "gps_code": "K16D", + "local_code": "16D" + }, + { + "id": "18427", + "ident": "K16G", + "type": "small_airport", + "name": "Seneca County Airport", + "latitude_deg": "41.09410095214844", + "longitude_deg": "-83.2125015258789", + "elevation_ft": "786", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Tiffin", + "scheduled_service": "no", + "gps_code": "K16G", + "local_code": "16G" + }, + { + "id": "18428", + "ident": "K16J", + "type": "small_airport", + "name": "Dawson Municipal Airport", + "latitude_deg": "31.743299", + "longitude_deg": "-84.419296", + "elevation_ft": "333", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Dawson", + "scheduled_service": "no", + "local_code": "16J" + }, + { + "id": "18429", + "ident": "K17", + "type": "small_airport", + "name": "Montezuma Municipal Airport", + "latitude_deg": "37.589698791503906", + "longitude_deg": "-100.46900177001953", + "elevation_ft": "2780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Montezuma", + "scheduled_service": "no", + "gps_code": "K17", + "local_code": "K17" + }, + { + "id": "18430", + "ident": "K17G", + "type": "small_airport", + "name": "Port-Bucyrus-Crawford County Airport", + "latitude_deg": "40.78160095210001", + "longitude_deg": "-82.9748001099", + "elevation_ft": "1003", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bucyrus", + "scheduled_service": "no", + "gps_code": "K17G", + "local_code": "17G" + }, + { + "id": "18431", + "ident": "K17J", + "type": "small_airport", + "name": "Donalsonville Municipal Airport", + "latitude_deg": "31.00690079", + "longitude_deg": "-84.87760162", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Donalsonville", + "scheduled_service": "no", + "gps_code": "K17J", + "local_code": "17J" + }, + { + "id": "18432", + "ident": "K17K", + "type": "small_airport", + "name": "Boise City Airport", + "latitude_deg": "36.77429962158203", + "longitude_deg": "-102.51000213623047", + "elevation_ft": "4178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Boise City", + "scheduled_service": "no", + "gps_code": "K17K", + "local_code": "17K" + }, + { + "id": "18433", + "ident": "K17M", + "type": "small_airport", + "name": "Magee Municipal Airport", + "latitude_deg": "31.862699508666992", + "longitude_deg": "-89.80059814453125", + "elevation_ft": "555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Magee", + "scheduled_service": "no", + "gps_code": "K17M", + "local_code": "17M" + }, + { + "id": "18434", + "ident": "K17N", + "type": "small_airport", + "name": "Cross Keys Airport", + "latitude_deg": "39.705501556396484", + "longitude_deg": "-75.03299713134766", + "elevation_ft": "162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Cross Keys", + "scheduled_service": "no", + "gps_code": "K17N", + "local_code": "17N" + }, + { + "id": "18435", + "ident": "K17V", + "type": "small_airport", + "name": "Haxtun Municipal Airport", + "latitude_deg": "40.627519", + "longitude_deg": "-102.600911", + "elevation_ft": "4035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Haxtun", + "scheduled_service": "no", + "gps_code": "K17V", + "local_code": "17V" + }, + { + "id": "18436", + "ident": "K18A", + "type": "small_airport", + "name": "Franklin County Airport", + "latitude_deg": "34.34009933", + "longitude_deg": "-83.13349915", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Canon", + "scheduled_service": "no", + "gps_code": "K18A", + "local_code": "18A" + }, + { + "id": "18437", + "ident": "K18I", + "type": "small_airport", + "name": "Mc Creary County Airport", + "latitude_deg": "36.6958999634", + "longitude_deg": "-84.3916015625", + "elevation_ft": "1370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Pine Knot", + "scheduled_service": "no", + "gps_code": "K18I", + "local_code": "18I", + "wikipedia_link": "https://en.wikipedia.org/wiki/McCreary_County_Airport" + }, + { + "id": "18438", + "ident": "K18V", + "type": "small_airport", + "name": "Platte Valley Airpark", + "latitude_deg": "40.0999984741", + "longitude_deg": "-104.700996399", + "elevation_ft": "4965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Hudson", + "scheduled_service": "no", + "gps_code": "18V", + "local_code": "18V", + "wikipedia_link": "https://en.wikipedia.org/wiki/Platte_Valley_Airpark" + }, + { + "id": "18439", + "ident": "K19A", + "type": "small_airport", + "name": "Jackson County Airport", + "latitude_deg": "34.174", + "longitude_deg": "-83.560699", + "elevation_ft": "951", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Jefferson", + "scheduled_service": "no", + "gps_code": "KJCA", + "local_code": "JCA", + "home_link": "http://www.jacksoncountygov.com/index.aspx?page=40", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jackson_County_Airport_(Georgia)", + "keywords": "19A" + }, + { + "id": "18440", + "ident": "K19M", + "type": "small_airport", + "name": "C. A. Moore Airport", + "latitude_deg": "33.125499725299996", + "longitude_deg": "-90.0255966187", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "K19M", + "local_code": "19M" + }, + { + "id": "18441", + "ident": "K19N", + "type": "small_airport", + "name": "Camden County Airport", + "latitude_deg": "39.7784", + "longitude_deg": "-74.9478", + "elevation_ft": "149", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Berlin", + "scheduled_service": "no", + "local_code": "19N" + }, + { + "id": "18442", + "ident": "K19S", + "type": "small_airport", + "name": "Sublette Municipal Airport", + "latitude_deg": "37.497018", + "longitude_deg": "-100.834343", + "elevation_ft": "2908", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Sublette", + "scheduled_service": "no", + "local_code": "19S", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sublette_Municipal_Airport", + "keywords": "65K, Sublette Flying Club" + }, + { + "id": "18443", + "ident": "K1A0", + "type": "small_airport", + "name": "Dallas Bay Sky Park Airport", + "latitude_deg": "35.187599", + "longitude_deg": "-85.177696", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Hixson", + "scheduled_service": "no", + "gps_code": "K1A0", + "local_code": "1A0" + }, + { + "id": "18444", + "ident": "K1A3", + "type": "small_airport", + "name": "Martin Campbell Field", + "latitude_deg": "35.01620102", + "longitude_deg": "-84.34629822", + "elevation_ft": "1790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Copperhill", + "scheduled_service": "no", + "gps_code": "K1A3", + "local_code": "1A3" + }, + { + "id": "18445", + "ident": "K1A4", + "type": "small_airport", + "name": "Logan Field", + "latitude_deg": "31.102800369262695", + "longitude_deg": "-86.06220245361328", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Samson", + "scheduled_service": "no", + "gps_code": "K1A4", + "local_code": "1A4" + }, + { + "id": "18446", + "ident": "K1A5", + "type": "small_airport", + "name": "Macon County Airport", + "latitude_deg": "35.222599029541016", + "longitude_deg": "-83.41899871826172", + "elevation_ft": "2020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "K1A5", + "local_code": "1A5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Macon_County_Airport" + }, + { + "id": "18447", + "ident": "K1A6", + "type": "small_airport", + "name": "Middlesboro-Bell County Airport", + "latitude_deg": "36.6105995178", + "longitude_deg": "-83.73739624019998", + "elevation_ft": "1154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Middlesboro", + "scheduled_service": "no", + "gps_code": "1A6", + "local_code": "1A6", + "home_link": "http://www.bellcounty.ky.gov/services/airport.htm" + }, + { + "id": "18448", + "ident": "K1A7", + "type": "small_airport", + "name": "Jackson County Airport", + "latitude_deg": "36.395864", + "longitude_deg": "-85.641346", + "elevation_ft": "515", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Gainesboro", + "scheduled_service": "no", + "gps_code": "K1A7", + "local_code": "1A7" + }, + { + "id": "18449", + "ident": "K1A9", + "type": "small_airport", + "name": "Prattville - Grouby Field", + "latitude_deg": "32.4387016296", + "longitude_deg": "-86.51270294190002", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Prattville", + "scheduled_service": "no", + "gps_code": "K1A9", + "local_code": "1A9", + "keywords": "Autauga County" + }, + { + "id": "18450", + "ident": "K1B0", + "type": "small_airport", + "name": "Dexter Regional Airport", + "latitude_deg": "45.00410079956055", + "longitude_deg": "-69.23699951171875", + "elevation_ft": "533", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Dexter", + "scheduled_service": "no", + "gps_code": "K1B0", + "local_code": "1B0" + }, + { + "id": "18451", + "ident": "K1B1", + "type": "small_airport", + "name": "Columbia County Airport", + "latitude_deg": "42.2913017273", + "longitude_deg": "-73.7102966309", + "elevation_ft": "198", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hudson", + "scheduled_service": "no", + "gps_code": "1B1", + "iata_code": "HCC", + "local_code": "1B1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Columbia_County_Airport" + }, + { + "id": "18452", + "ident": "K1B2", + "type": "small_airport", + "name": "Katama Airpark", + "latitude_deg": "41.3582992554", + "longitude_deg": "-70.5243988037", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Edgartown", + "scheduled_service": "no", + "gps_code": "1B2", + "local_code": "1B2" + }, + { + "id": "18453", + "ident": "K1B6", + "type": "small_airport", + "name": "Hopedale Industrial Park Airport", + "latitude_deg": "42.10649871826172", + "longitude_deg": "-71.51010131835938", + "elevation_ft": "269", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Hopedale", + "scheduled_service": "no", + "gps_code": "K1B6", + "local_code": "1B6" + }, + { + "id": "18454", + "ident": "K1B9", + "type": "small_airport", + "name": "Mansfield Municipal Airport", + "latitude_deg": "42.000099182099994", + "longitude_deg": "-71.1968002319", + "elevation_ft": "122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Mansfield", + "scheduled_service": "no", + "gps_code": "1B9", + "local_code": "1B9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mansfield_Municipal_Airport" + }, + { + "id": "310042", + "ident": "K1BT", + "type": "small_airport", + "name": "Bonne Terre Municipal Airport", + "latitude_deg": "37.919055", + "longitude_deg": "-90.57525", + "elevation_ft": "922", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Bonne Terre", + "scheduled_service": "no", + "gps_code": "K1BT", + "local_code": "1BT" + }, + { + "id": "18455", + "ident": "K1C1", + "type": "small_airport", + "name": "Paxton Airport", + "latitude_deg": "40.44900131225586", + "longitude_deg": "-88.12770080566406", + "elevation_ft": "779", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Paxton", + "scheduled_service": "no", + "gps_code": "K1C1", + "local_code": "1C1" + }, + { + "id": "18456", + "ident": "K1C2", + "type": "small_airport", + "name": "Howell New Lenox Airport", + "latitude_deg": "41.479801177978516", + "longitude_deg": "-87.92130279541016", + "elevation_ft": "753", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "scheduled_service": "no", + "local_code": "1C2" + }, + { + "id": "18457", + "ident": "K1C5", + "type": "small_airport", + "name": "Bolingbrook's Clow International Airport", + "latitude_deg": "41.695999145500004", + "longitude_deg": "-88.12920379639999", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Bolingbrook", + "scheduled_service": "no", + "gps_code": "K1C5", + "local_code": "1C5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bolingbrook's_Clow_International_Airport" + }, + { + "id": "18458", + "ident": "K1D1", + "type": "small_airport", + "name": "Milbank Municipal Airport", + "latitude_deg": "45.23049927", + "longitude_deg": "-96.56600189", + "elevation_ft": "1118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Milbank", + "scheduled_service": "no", + "gps_code": "K1D1", + "local_code": "1D1" + }, + { + "id": "18459", + "ident": "K1D3", + "type": "small_airport", + "name": "Platte Municipal Airport", + "latitude_deg": "43.40330123901367", + "longitude_deg": "-98.82949829101562", + "elevation_ft": "1618", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Platte", + "scheduled_service": "no", + "gps_code": "K1D3", + "local_code": "1D3" + }, + { + "id": "18460", + "ident": "K1D7", + "type": "small_airport", + "name": "The Sigurd Anderson Airport", + "latitude_deg": "45.292598724365234", + "longitude_deg": "-97.51380157470703", + "elevation_ft": "1854", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Webster", + "scheduled_service": "no", + "gps_code": "K1D7", + "local_code": "1D7" + }, + { + "id": "18461", + "ident": "K1D8", + "type": "small_airport", + "name": "Redfield Municipal Airport", + "latitude_deg": "44.86249923706055", + "longitude_deg": "-98.52950286865234", + "elevation_ft": "1307", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Redfield", + "scheduled_service": "no", + "gps_code": "K1D8", + "local_code": "1D8" + }, + { + "id": "18462", + "ident": "K1F0", + "type": "small_airport", + "name": "Ardmore Downtown Executive Airport", + "latitude_deg": "34.1469993591", + "longitude_deg": "-97.1227035522", + "elevation_ft": "844", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ardmore", + "scheduled_service": "no", + "iata_code": "AHD", + "local_code": "1F0", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ardmore_Downtown_Executive_Airport" + }, + { + "id": "18463", + "ident": "K1F4", + "type": "small_airport", + "name": "Madill Municipal Airport", + "latitude_deg": "34.14039993286133", + "longitude_deg": "-96.81199645996094", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Madill", + "scheduled_service": "no", + "gps_code": "K1F4", + "local_code": "1F4" + }, + { + "id": "18464", + "ident": "K1F5", + "type": "small_airport", + "name": "Hoxie-Sheridan County Airport", + "latitude_deg": "39.3648986816", + "longitude_deg": "-100.439002991", + "elevation_ft": "2733", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Hoxie", + "scheduled_service": "no", + "gps_code": "1F5", + "local_code": "1F5", + "keywords": "KS01" + }, + { + "id": "18465", + "ident": "K1G0", + "type": "small_airport", + "name": "Wood County Airport", + "latitude_deg": "41.39099884033203", + "longitude_deg": "-83.63009643554688", + "elevation_ft": "673", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bowling Green", + "scheduled_service": "no", + "gps_code": "K1G0", + "local_code": "1G0" + }, + { + "id": "18466", + "ident": "K1G1", + "type": "small_airport", + "name": "Elyria Airport", + "latitude_deg": "41.33150100708008", + "longitude_deg": "-82.10030364990234", + "elevation_ft": "758", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Elyria", + "scheduled_service": "no", + "gps_code": "K1G1", + "local_code": "1G1" + }, + { + "id": "18467", + "ident": "K1G3", + "type": "small_airport", + "name": "Kent State University Airport", + "latitude_deg": "41.15140152", + "longitude_deg": "-81.4151001", + "elevation_ft": "1134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Kent", + "scheduled_service": "no", + "gps_code": "K1G3", + "local_code": "1G3" + }, + { + "id": "18468", + "ident": "K1G4", + "type": "small_airport", + "name": "Grand Canyon West Airport", + "latitude_deg": "35.985787", + "longitude_deg": "-113.817072", + "elevation_ft": "4825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peach Springs", + "scheduled_service": "no", + "gps_code": "K1G4", + "iata_code": "GCW", + "local_code": "1G4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Canyon_West_Airport" + }, + { + "id": "18469", + "ident": "K1G5", + "type": "small_airport", + "name": "Medina Municipal Airport", + "latitude_deg": "41.131401062", + "longitude_deg": "-81.7649002075", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Medina", + "scheduled_service": "no", + "gps_code": "K1G5", + "local_code": "1G5", + "keywords": "Freedom Field" + }, + { + "id": "18470", + "ident": "K1H0", + "type": "small_airport", + "name": "Creve Coeur Airport", + "latitude_deg": "38.7267990112", + "longitude_deg": "-90.50830078119999", + "elevation_ft": "463", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no", + "gps_code": "1H0", + "local_code": "1H0" + }, + { + "id": "18471", + "ident": "K1H2", + "type": "small_airport", + "name": "Effingham County Memorial Airport", + "latitude_deg": "39.07040023803711", + "longitude_deg": "-88.53350067138672", + "elevation_ft": "587", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Effingham", + "scheduled_service": "no", + "gps_code": "K1H2", + "local_code": "1H2" + }, + { + "id": "18472", + "ident": "K1H3", + "type": "small_airport", + "name": "Linn State Technical College Airport", + "latitude_deg": "38.471583", + "longitude_deg": "-91.817293", + "elevation_ft": "952", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Linn", + "scheduled_service": "no", + "gps_code": "K1H3", + "local_code": "1H3" + }, + { + "id": "18473", + "ident": "K1H5", + "type": "small_airport", + "name": "Willow Springs Memorial Airport", + "latitude_deg": "36.989601135253906", + "longitude_deg": "-91.9541015625", + "elevation_ft": "1247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Willow Springs", + "scheduled_service": "no", + "gps_code": "K1H5", + "local_code": "1H5" + }, + { + "id": "18474", + "ident": "K1H8", + "type": "small_airport", + "name": "Casey Municipal Airport", + "latitude_deg": "39.3025016784668", + "longitude_deg": "-88.00409698486328", + "elevation_ft": "654", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Casey", + "scheduled_service": "no", + "gps_code": "K1H8", + "local_code": "1H8" + }, + { + "id": "18475", + "ident": "K1I5", + "type": "small_airport", + "name": "Freehold Airport", + "latitude_deg": "42.3643", + "longitude_deg": "-74.066002", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Freehold", + "scheduled_service": "no", + "gps_code": "K1I5", + "local_code": "1I5" + }, + { + "id": "18476", + "ident": "K1I7", + "type": "closed", + "name": "Clinton Airport", + "latitude_deg": "39.712151", + "longitude_deg": "-87.400407", + "elevation_ft": "526", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Clinton", + "scheduled_service": "no", + "keywords": "1I7" + }, + { + "id": "18477", + "ident": "K1J0", + "type": "small_airport", + "name": "Tri-County Airport", + "latitude_deg": "30.843879", + "longitude_deg": "-85.601773", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bonifay", + "scheduled_service": "no", + "gps_code": "KBCR", + "local_code": "BCR", + "home_link": "https://www.kbcr.gov/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tri-County_Airport_(Florida)", + "keywords": "1J0" + }, + { + "id": "18478", + "ident": "K1J6", + "type": "small_airport", + "name": "Bob Lee Flight Strip", + "latitude_deg": "29.104400634765625", + "longitude_deg": "-81.3136978149414", + "elevation_ft": "94", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Deland", + "scheduled_service": "no", + "gps_code": "K1J6", + "local_code": "1J6" + }, + { + "id": "18479", + "ident": "K1K2", + "type": "small_airport", + "name": "Lindsay Municipal Airport", + "latitude_deg": "34.849300384521484", + "longitude_deg": "-97.58529663085938", + "elevation_ft": "968", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lindsay", + "scheduled_service": "no", + "gps_code": "K1K2", + "local_code": "1K2" + }, + { + "id": "18480", + "ident": "K1K4", + "type": "small_airport", + "name": "David Jay Perry Airport", + "latitude_deg": "35.15510177612305", + "longitude_deg": "-97.47039794921875", + "elevation_ft": "1168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Goldsby", + "scheduled_service": "no", + "gps_code": "K1K4", + "local_code": "1K4" + }, + { + "id": "18481", + "ident": "K1K7", + "type": "small_airport", + "name": "Fredonia Airport", + "latitude_deg": "37.579200744628906", + "longitude_deg": "-95.83779907226562", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Fredonia", + "scheduled_service": "no", + "gps_code": "K1K7", + "local_code": "1K7" + }, + { + "id": "18482", + "ident": "K1K9", + "type": "small_airport", + "name": "Satanta Municipal Airport", + "latitude_deg": "37.45640182495117", + "longitude_deg": "-100.98400115966797", + "elevation_ft": "2976", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Satanta", + "scheduled_service": "no", + "gps_code": "K1K9", + "local_code": "1K9" + }, + { + "id": "18483", + "ident": "K1L0", + "type": "small_airport", + "name": "Port of South Louisiana Executive Regional Airport", + "latitude_deg": "30.087", + "longitude_deg": "-90.582602", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Reserve", + "scheduled_service": "no", + "gps_code": "KAPS", + "local_code": "APS", + "home_link": "http://portsl.com/airport-services/", + "keywords": "0LA4, 1L0, St John The Baptist Parish Airport" + }, + { + "id": "18484", + "ident": "K1L1", + "type": "small_airport", + "name": "Lincoln County Airport", + "latitude_deg": "37.787122", + "longitude_deg": "-114.420044", + "elevation_ft": "4828", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Panaca", + "scheduled_service": "no", + "gps_code": "K1L1", + "local_code": "1L1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lincoln_County_Airport" + }, + { + "id": "18485", + "ident": "K1L3", + "type": "small_airport", + "name": "Searchlight Airport", + "latitude_deg": "35.444400787353516", + "longitude_deg": "-114.90899658203125", + "elevation_ft": "3410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Searchlight", + "scheduled_service": "no", + "gps_code": "K1L3", + "local_code": "1L3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Searchlight_Airport" + }, + { + "id": "18486", + "ident": "K1L7", + "type": "small_airport", + "name": "Escalante Municipal Airport", + "latitude_deg": "37.74530029296875", + "longitude_deg": "-111.56999969482422", + "elevation_ft": "5733", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Escalante", + "scheduled_service": "no", + "gps_code": "K1L7", + "local_code": "1L7" + }, + { + "id": "18487", + "ident": "K1L8", + "type": "small_airport", + "name": "General Dick Stout Field", + "latitude_deg": "37.13890075683594", + "longitude_deg": "-113.30599975585938", + "elevation_ft": "3347", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hurricane", + "scheduled_service": "no", + "gps_code": "K1L8", + "local_code": "1L8" + }, + { + "id": "18488", + "ident": "K1L9", + "type": "small_airport", + "name": "Parowan Airport", + "latitude_deg": "37.85969924926758", + "longitude_deg": "-112.81600189208984", + "elevation_ft": "5930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Parowan", + "scheduled_service": "no", + "gps_code": "K1L9", + "local_code": "1L9" + }, + { + "id": "18490", + "ident": "K1M2", + "type": "small_airport", + "name": "Belzoni Municipal Airport", + "latitude_deg": "33.145198822021484", + "longitude_deg": "-90.51529693603516", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Belzoni", + "scheduled_service": "no", + "gps_code": "K1M2", + "local_code": "1M2" + }, + { + "id": "18491", + "ident": "K1M4", + "type": "small_airport", + "name": "Posey Field", + "latitude_deg": "34.28030014038086", + "longitude_deg": "-87.60040283203125", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Haleyville", + "scheduled_service": "no", + "gps_code": "K1M4", + "local_code": "1M4" + }, + { + "id": "18492", + "ident": "K1M5", + "type": "small_airport", + "name": "Portland Municipal Airport", + "latitude_deg": "36.59280014038086", + "longitude_deg": "-86.47669982910156", + "elevation_ft": "818", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "K1M5", + "local_code": "1M5" + }, + { + "id": "18494", + "ident": "K1M9", + "type": "small_airport", + "name": "Lake Barkley State Park Airport", + "latitude_deg": "36.8177986145", + "longitude_deg": "-87.90750122070001", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Cadiz", + "scheduled_service": "no", + "gps_code": "1M9", + "local_code": "1M9" + }, + { + "id": "18495", + "ident": "K1MO", + "type": "small_airport", + "name": "Mountain Grove Memorial Airport", + "latitude_deg": "37.12070083618164", + "longitude_deg": "-92.31120300292969", + "elevation_ft": "1476", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Mountain Grove", + "scheduled_service": "no", + "gps_code": "K1MO", + "local_code": "1MO" + }, + { + "id": "18496", + "ident": "K1N1", + "type": "small_airport", + "name": "Sandia Airpark Estates East Airport", + "latitude_deg": "35.09450149536133", + "longitude_deg": "-106.16699981689453", + "elevation_ft": "6550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Edgewood", + "scheduled_service": "no", + "gps_code": "K1N1", + "local_code": "1N1" + }, + { + "id": "18498", + "ident": "K1N7", + "type": "small_airport", + "name": "Blairstown Airport", + "latitude_deg": "40.9710998535", + "longitude_deg": "-74.99749755859999", + "elevation_ft": "372", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Blairstown", + "scheduled_service": "no", + "gps_code": "1N7", + "local_code": "1N7" + }, + { + "id": "18500", + "ident": "K1O1", + "type": "small_airport", + "name": "Grandfield Municipal Airport", + "latitude_deg": "34.23759841918945", + "longitude_deg": "-98.74199676513672", + "elevation_ft": "1128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Grandfield", + "scheduled_service": "no", + "gps_code": "K1O1", + "local_code": "1O1" + }, + { + "id": "18501", + "ident": "K1O2", + "type": "small_airport", + "name": "Lampson Field", + "latitude_deg": "38.9906005859", + "longitude_deg": "-122.901000977", + "elevation_ft": "1379", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lakeport", + "scheduled_service": "no", + "gps_code": "1O2", + "iata_code": "CKE", + "local_code": "1O2", + "home_link": "http://lakecountyairmen.mymcn.org/index.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lampson_Field" + }, + { + "id": "18502", + "ident": "K1O3", + "type": "small_airport", + "name": "Lodi Airport", + "latitude_deg": "38.20240021", + "longitude_deg": "-121.2679977", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lodi", + "scheduled_service": "no", + "gps_code": "K1O3", + "local_code": "1O3" + }, + { + "id": "18503", + "ident": "K1O4", + "type": "small_airport", + "name": "Thomas Municipal Airport", + "latitude_deg": "35.733455", + "longitude_deg": "-98.730575", + "elevation_ft": "1731", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Thomas", + "scheduled_service": "no", + "gps_code": "K1O4", + "local_code": "1O4" + }, + { + "id": "18504", + "ident": "K1O5", + "type": "small_airport", + "name": "Montague-Yreka Rohrer Field", + "latitude_deg": "41.7304000854", + "longitude_deg": "-122.54599762", + "elevation_ft": "2527", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Montague", + "scheduled_service": "no", + "gps_code": "K1O5", + "iata_code": "ROF", + "local_code": "1O5", + "home_link": "http://www.ci.montague.ca.us/rohrerfield.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Montague_Airport_(California)", + "keywords": "Mount Shasta" + }, + { + "id": "18505", + "ident": "K1O8", + "type": "small_airport", + "name": "Tipton Municipal Airport", + "latitude_deg": "34.45859909057617", + "longitude_deg": "-99.17130279541016", + "elevation_ft": "1248", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tipton", + "scheduled_service": "no", + "gps_code": "K1O8", + "local_code": "1O8" + }, + { + "id": "18506", + "ident": "K1Q2", + "type": "small_airport", + "name": "Spalding Airport", + "latitude_deg": "40.650169", + "longitude_deg": "-120.768524", + "elevation_ft": "5116", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Susanville", + "scheduled_service": "no", + "gps_code": "K1Q2", + "local_code": "1Q2", + "keywords": "Spaulding" + }, + { + "id": "18507", + "ident": "K1Q4", + "type": "small_airport", + "name": "New Jerusalem Airport", + "latitude_deg": "37.679100036621094", + "longitude_deg": "-121.30000305175781", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tracy", + "scheduled_service": "no", + "gps_code": "K1Q4", + "local_code": "1Q4" + }, + { + "id": "18508", + "ident": "K1R1", + "type": "small_airport", + "name": "Jena Airport", + "latitude_deg": "31.666903", + "longitude_deg": "-92.157722", + "elevation_ft": "212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Jena", + "scheduled_service": "no", + "gps_code": "K1R1", + "local_code": "1R1" + }, + { + "id": "18509", + "ident": "K1R4", + "type": "small_airport", + "name": "Woodworth Airport", + "latitude_deg": "31.126399993896484", + "longitude_deg": "-92.50140380859375", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Woodworth", + "scheduled_service": "no", + "gps_code": "K1R4", + "local_code": "1R4" + }, + { + "id": "18510", + "ident": "K1R7", + "type": "small_airport", + "name": "Brookhaven-Lincoln County Airport", + "latitude_deg": "31.605800628699996", + "longitude_deg": "-90.40930175780001", + "elevation_ft": "489", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Brookhaven", + "scheduled_service": "no", + "gps_code": "K1R7", + "local_code": "1R7" + }, + { + "id": "18511", + "ident": "K1R8", + "type": "small_airport", + "name": "Bay Minette Municipal Airport", + "latitude_deg": "30.870399475097656", + "longitude_deg": "-87.81929779052734", + "elevation_ft": "248", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Bay Minette", + "scheduled_service": "no", + "gps_code": "K1R8", + "local_code": "1R8" + }, + { + "id": "18513", + "ident": "K1S3", + "type": "small_airport", + "name": "Tillitt Field", + "latitude_deg": "46.27109909057617", + "longitude_deg": "-106.6240005493164", + "elevation_ft": "2727", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Forsyth", + "scheduled_service": "no", + "gps_code": "K1S3", + "local_code": "1S3" + }, + { + "id": "18514", + "ident": "K1S5", + "type": "small_airport", + "name": "Sunnyside Municipal Airport", + "latitude_deg": "46.32709885", + "longitude_deg": "-119.9700012", + "elevation_ft": "768", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Sunnyside", + "scheduled_service": "no", + "gps_code": "K1S5", + "local_code": "1S5" + }, + { + "id": "18515", + "ident": "K1S9", + "type": "small_airport", + "name": "Chewelah Municipal Airport", + "latitude_deg": "48.314098", + "longitude_deg": "-117.742995", + "elevation_ft": "2084", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Chewelah", + "scheduled_service": "no", + "local_code": "1S9", + "keywords": "Sand Canyon Airport" + }, + { + "id": "18516", + "ident": "K1T7", + "type": "small_airport", + "name": "Kestrel Airpark", + "latitude_deg": "29.812700271606445", + "longitude_deg": "-98.42530059814453", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "K1T7", + "local_code": "1T7" + }, + { + "id": "18517", + "ident": "K1U2", + "type": "small_airport", + "name": "Mud Lake/West Jefferson County/ Airport", + "latitude_deg": "43.848201751699996", + "longitude_deg": "-112.499000549", + "elevation_ft": "4787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Mud Lake", + "scheduled_service": "no", + "gps_code": "K1U2", + "local_code": "1U2" + }, + { + "id": "18518", + "ident": "K1U7", + "type": "small_airport", + "name": "Bear Lake County Airport", + "latitude_deg": "42.24720001220703", + "longitude_deg": "-111.33799743652344", + "elevation_ft": "5928", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "K1U7", + "local_code": "1U7" + }, + { + "id": "18519", + "ident": "K1V0", + "type": "small_airport", + "name": "Navajo Lake Airport", + "latitude_deg": "36.808168", + "longitude_deg": "-107.653077", + "elevation_ft": "6475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Navajo Dam", + "scheduled_service": "no", + "local_code": "1V0" + }, + { + "id": "18520", + "ident": "K1V2", + "type": "small_airport", + "name": "Grant County Airport", + "latitude_deg": "42.0093994140625", + "longitude_deg": "-101.76899719238281", + "elevation_ft": "3710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hyannis", + "scheduled_service": "no", + "gps_code": "K1V2", + "local_code": "1V2" + }, + { + "id": "18522", + "ident": "K1V6", + "type": "small_airport", + "name": "Fremont County Airport", + "latitude_deg": "38.428534", + "longitude_deg": "-105.106299", + "elevation_ft": "5439", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Penrose", + "scheduled_service": "no", + "iata_code": "CNE", + "local_code": "1V6", + "home_link": "http://www.fremontco.com/airport/" + }, + { + "id": "18523", + "ident": "K1V8", + "type": "small_airport", + "name": "Leach Airport", + "latitude_deg": "37.784698486328125", + "longitude_deg": "-106.03800201416016", + "elevation_ft": "7598", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Center", + "scheduled_service": "no", + "gps_code": "K1V8", + "local_code": "1V8" + }, + { + "id": "18524", + "ident": "K1X1", + "type": "small_airport", + "name": "Higgins-Lipscomb County Airport", + "latitude_deg": "36.105899810800004", + "longitude_deg": "-100.026000977", + "elevation_ft": "2566", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Higgins", + "scheduled_service": "no", + "gps_code": "K1X1", + "local_code": "1X1" + }, + { + "id": "18525", + "ident": "K20A", + "type": "small_airport", + "name": "Robbins Field", + "latitude_deg": "33.9723014831543", + "longitude_deg": "-86.37940216064453", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Oneonta", + "scheduled_service": "no", + "gps_code": "K20A", + "local_code": "20A" + }, + { + "id": "18526", + "ident": "K20M", + "type": "small_airport", + "name": "Macon Municipal Airport", + "latitude_deg": "33.13349914550781", + "longitude_deg": "-88.53559875488281", + "elevation_ft": "238", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Macon", + "scheduled_service": "no", + "gps_code": "K20M", + "local_code": "20M" + }, + { + "id": "18527", + "ident": "K20N", + "type": "small_airport", + "name": "Kingston-Ulster Airport", + "latitude_deg": "41.9852981567", + "longitude_deg": "-73.96410369870001", + "elevation_ft": "149", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Kingston", + "scheduled_service": "no", + "gps_code": "K20N", + "local_code": "20N" + }, + { + "id": "18528", + "ident": "K20R", + "type": "small_airport", + "name": "Crystal City Municipal Airport", + "latitude_deg": "28.697799682617188", + "longitude_deg": "-99.81780242919922", + "elevation_ft": "608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crystal City", + "scheduled_service": "no", + "gps_code": "K20R", + "local_code": "20R" + }, + { + "id": "18529", + "ident": "K20U", + "type": "small_airport", + "name": "Beach Airport", + "latitude_deg": "46.925201416015625", + "longitude_deg": "-103.98200225830078", + "elevation_ft": "2756", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Beach", + "scheduled_service": "no", + "gps_code": "K20U", + "local_code": "20U" + }, + { + "id": "18530", + "ident": "K20V", + "type": "small_airport", + "name": "McElroy Airfield", + "latitude_deg": "40.05341", + "longitude_deg": "-106.369078", + "elevation_ft": "7411", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Kremmling", + "scheduled_service": "no", + "gps_code": "K20V", + "local_code": "20V" + }, + { + "id": "18531", + "ident": "K21", + "type": "seaplane_base", + "name": "Rouses Point Seaplane Base", + "latitude_deg": "44.99169921875", + "longitude_deg": "-73.363502502441", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Rouses Point", + "scheduled_service": "no", + "gps_code": "K21", + "iata_code": "RSX", + "local_code": "K21", + "home_link": "https://www.dot.ny.gov/divisions/operating/opdm/aviation/repository/air_dir2/Rouses-Point-revised.pdf", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rouses_Point_Seaplane_Base", + "keywords": "NY47" + }, + { + "id": "18532", + "ident": "K21D", + "type": "small_airport", + "name": "Lake Elmo Airport", + "latitude_deg": "44.99750137", + "longitude_deg": "-92.85569763", + "elevation_ft": "933", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "St Paul", + "scheduled_service": "no", + "gps_code": "K21D", + "local_code": "21D", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_Elmo_Airport" + }, + { + "id": "18533", + "ident": "K21F", + "type": "small_airport", + "name": "Jacksboro Municipal Airport", + "latitude_deg": "33.22869873046875", + "longitude_deg": "-98.14669799804688", + "elevation_ft": "1055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jacksboro", + "scheduled_service": "no", + "gps_code": "K21F", + "local_code": "21F" + }, + { + "id": "18534", + "ident": "K22F", + "type": "small_airport", + "name": "Kent County Airport", + "latitude_deg": "33.2293014526", + "longitude_deg": "-100.569000244", + "elevation_ft": "2006", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jayton", + "scheduled_service": "no", + "gps_code": "K22F", + "local_code": "22F", + "keywords": "JYC" + }, + { + "id": "18535", + "ident": "K22I", + "type": "small_airport", + "name": "Vinton County Airport", + "latitude_deg": "39.32809829711914", + "longitude_deg": "-82.44180297851562", + "elevation_ft": "958", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mc Arthur", + "scheduled_service": "no", + "gps_code": "K22I", + "local_code": "22I" + }, + { + "id": "18536", + "ident": "K22M", + "type": "small_airport", + "name": "Pontotoc County Airport", + "latitude_deg": "34.275901794433594", + "longitude_deg": "-89.03839874267578", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Pontotoc", + "scheduled_service": "no", + "gps_code": "K22M", + "local_code": "22M" + }, + { + "id": "18537", + "ident": "K22N", + "type": "small_airport", + "name": "Jake Arner Memorial Airport", + "latitude_deg": "40.80950164794922", + "longitude_deg": "-75.7614974975586", + "elevation_ft": "534", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lehighton", + "scheduled_service": "no", + "gps_code": "K22N", + "local_code": "22N" + }, + { + "id": "18538", + "ident": "K22S", + "type": "small_airport", + "name": "Paisley Airport", + "latitude_deg": "42.717899322509766", + "longitude_deg": "-120.56300354003906", + "elevation_ft": "4395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Paisley", + "scheduled_service": "no", + "gps_code": "K22S", + "local_code": "22S", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paisley_Airport" + }, + { + "id": "18540", + "ident": "K23", + "type": "small_airport", + "name": "Cooperstown-Westville Airport", + "latitude_deg": "42.629552", + "longitude_deg": "-74.890445", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Cooperstown", + "scheduled_service": "no", + "gps_code": "KK23", + "iata_code": "COP", + "local_code": "K23", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cooperstown-Westville_Airport" + }, + { + "id": "18541", + "ident": "K23M", + "type": "small_airport", + "name": "Clarke County Airport", + "latitude_deg": "32.0849", + "longitude_deg": "-88.738897", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Quitman", + "scheduled_service": "no", + "local_code": "23M" + }, + { + "id": "18542", + "ident": "K23R", + "type": "small_airport", + "name": "Devine Municipal Airport", + "latitude_deg": "29.138399124145508", + "longitude_deg": "-98.94190216064453", + "elevation_ft": "703", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Devine", + "scheduled_service": "no", + "gps_code": "K23R", + "local_code": "23R" + }, + { + "id": "18543", + "ident": "K24A", + "type": "small_airport", + "name": "Jackson County Airport", + "latitude_deg": "35.31740188598633", + "longitude_deg": "-83.20989990234375", + "elevation_ft": "2857", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Sylva", + "scheduled_service": "no", + "gps_code": "K24A", + "local_code": "24A", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jackson_County_Airport_(North_Carolina)" + }, + { + "id": "18544", + "ident": "K24F", + "type": "small_airport", + "name": "Cypress River Airport", + "latitude_deg": "32.74599838256836", + "longitude_deg": "-94.30439758300781", + "elevation_ft": "221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jefferson", + "scheduled_service": "no", + "gps_code": "K24F", + "local_code": "24F" + }, + { + "id": "18545", + "ident": "K24J", + "type": "small_airport", + "name": "Suwannee County Airport", + "latitude_deg": "30.300100326538086", + "longitude_deg": "-83.02469635009766", + "elevation_ft": "104", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Live Oak", + "scheduled_service": "no", + "gps_code": "K24J", + "local_code": "24J" + }, + { + "id": "18546", + "ident": "K24N", + "type": "small_airport", + "name": "Jicarilla Apache Nation Airport", + "latitude_deg": "36.82849884033203", + "longitude_deg": "-106.88400268554688", + "elevation_ft": "7618", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Dulce", + "scheduled_service": "no", + "gps_code": "K24N", + "local_code": "24N" + }, + { + "id": "18547", + "ident": "K24R", + "type": "small_airport", + "name": "Dilley Airpark", + "latitude_deg": "28.68549919128418", + "longitude_deg": "-99.18920135498047", + "elevation_ft": "542", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dilley", + "scheduled_service": "no", + "gps_code": "K24R", + "local_code": "24R" + }, + { + "id": "18548", + "ident": "K25D", + "type": "small_airport", + "name": "Forest Lake Airport", + "latitude_deg": "45.24769973754883", + "longitude_deg": "-92.99440002441406", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Forest Lake", + "scheduled_service": "no", + "gps_code": "K25D", + "local_code": "25D" + }, + { + "id": "18549", + "ident": "K25J", + "type": "small_airport", + "name": "Cuthbert-Randolph Airport", + "latitude_deg": "31.700199127199998", + "longitude_deg": "-84.82489776610001", + "elevation_ft": "457", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Cuthbert", + "scheduled_service": "no", + "gps_code": "K25J", + "local_code": "25J" + }, + { + "id": "18550", + "ident": "K25M", + "type": "small_airport", + "name": "Ripley Airport", + "latitude_deg": "34.7223014831543", + "longitude_deg": "-89.01509857177734", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Ripley", + "scheduled_service": "no", + "gps_code": "K25M", + "local_code": "25M" + }, + { + "id": "18551", + "ident": "K26", + "type": "small_airport", + "name": "Carrollton Memorial Airport", + "latitude_deg": "39.3114013671875", + "longitude_deg": "-93.50659942626953", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Carrollton", + "scheduled_service": "no", + "gps_code": "K26", + "local_code": "K26" + }, + { + "id": "18552", + "ident": "K26A", + "type": "small_airport", + "name": "Ashland/Lineville Airport", + "latitude_deg": "33.284207", + "longitude_deg": "-85.80863", + "elevation_ft": "1065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Ashland/Lineville", + "scheduled_service": "no", + "gps_code": "K26A", + "local_code": "26A" + }, + { + "id": "18553", + "ident": "K26R", + "type": "small_airport", + "name": "Jackson County Airport", + "latitude_deg": "29.000999450683594", + "longitude_deg": "-96.58200073242188", + "elevation_ft": "61", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Edna", + "scheduled_service": "no", + "gps_code": "K26R", + "local_code": "26R" + }, + { + "id": "18554", + "ident": "K26U", + "type": "small_airport", + "name": "McDermitt State Airport", + "latitude_deg": "42.00953", + "longitude_deg": "-117.727261", + "elevation_ft": "4478", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "McDermitt", + "scheduled_service": "no", + "local_code": "26U", + "wikipedia_link": "https://en.wikipedia.org/wiki/McDermitt_State_Airport" + }, + { + "id": "18555", + "ident": "K27", + "type": "closed", + "name": "Burrello-Mechanicville Airport", + "latitude_deg": "42.892747", + "longitude_deg": "-73.668844", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Mechanicville", + "scheduled_service": "no", + "keywords": "K27" + }, + { + "id": "18556", + "ident": "K27A", + "type": "small_airport", + "name": "Elbert County Airport Patz Field", + "latitude_deg": "34.095423", + "longitude_deg": "-82.817581", + "elevation_ft": "603", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Elberton", + "scheduled_service": "no", + "gps_code": "KEBA", + "local_code": "EBA", + "keywords": "27A" + }, + { + "id": "18558", + "ident": "K27K", + "type": "small_airport", + "name": "Georgetown-Scott County Regional Airport", + "latitude_deg": "38.234405", + "longitude_deg": "-84.434702", + "elevation_ft": "947", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Georgetown", + "scheduled_service": "no", + "local_code": "27K", + "home_link": "http://georgetownscottcountyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Georgetown-Scott_County_Airport", + "keywords": "Georgetown Scott County - Marshall Field" + }, + { + "id": "18559", + "ident": "K27R", + "type": "small_airport", + "name": "Eldorado Airport", + "latitude_deg": "30.8622", + "longitude_deg": "-100.611", + "elevation_ft": "2448", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eldorado", + "scheduled_service": "no", + "gps_code": "K27R", + "local_code": "27R", + "keywords": "Schleicher County Airport" + }, + { + "id": "18560", + "ident": "K28J", + "type": "small_airport", + "name": "Palatka Municipal - Lt. Kay Larkin Field", + "latitude_deg": "29.65859985", + "longitude_deg": "-81.68890381", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Palatka", + "scheduled_service": "no", + "gps_code": "K28J", + "local_code": "28J" + }, + { + "id": "18561", + "ident": "K29", + "type": "small_airport", + "name": "Council Airport", + "latitude_deg": "64.89790344240001", + "longitude_deg": "-163.70300293", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Council", + "scheduled_service": "no", + "gps_code": "K29", + "iata_code": "CIL", + "local_code": "K29", + "wikipedia_link": "https://en.wikipedia.org/wiki/Council_Airport", + "keywords": "Melsing Creek" + }, + { + "id": "18562", + "ident": "K29D", + "type": "small_airport", + "name": "Grove City Airport", + "latitude_deg": "41.145999908447266", + "longitude_deg": "-80.1677017211914", + "elevation_ft": "1371", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Grove City", + "scheduled_service": "no", + "gps_code": "K29D", + "local_code": "29D" + }, + { + "id": "318201", + "ident": "K29M", + "type": "small_airport", + "name": "Waite Field Airport", + "latitude_deg": "42.8907222", + "longitude_deg": "-83.9320419", + "elevation_ft": "812", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Durand", + "scheduled_service": "no", + "gps_code": "K29M", + "local_code": "29M" + }, + { + "id": "18564", + "ident": "K29S", + "type": "small_airport", + "name": "Gardiner Airport", + "latitude_deg": "45.04990005493164", + "longitude_deg": "-110.74700164794922", + "elevation_ft": "5286", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Gardiner", + "scheduled_service": "no", + "gps_code": "K29S", + "local_code": "29S" + }, + { + "id": "18565", + "ident": "K2A0", + "type": "small_airport", + "name": "Mark Anton Airport", + "latitude_deg": "35.48619842529297", + "longitude_deg": "-84.93109893798828", + "elevation_ft": "719", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Dayton", + "scheduled_service": "no", + "gps_code": "K2A0", + "local_code": "2A0" + }, + { + "id": "18566", + "ident": "K2A1", + "type": "small_airport", + "name": "Jamestown Municipal Airport", + "latitude_deg": "36.349700927734375", + "longitude_deg": "-84.94670104980469", + "elevation_ft": "1694", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Jamestown", + "scheduled_service": "no", + "gps_code": "K2A1", + "local_code": "2A1" + }, + { + "id": "18567", + "ident": "K2A2", + "type": "small_airport", + "name": "Holley Mountain Airpark", + "latitude_deg": "35.650699615478516", + "longitude_deg": "-92.40380096435547", + "elevation_ft": "1269", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "K2A2", + "local_code": "2A2" + }, + { + "id": "18568", + "ident": "K2A5", + "type": "small_airport", + "name": "Causey Airport", + "latitude_deg": "35.911800384521484", + "longitude_deg": "-79.61759948730469", + "elevation_ft": "723", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Liberty", + "scheduled_service": "no", + "gps_code": "K2A5", + "local_code": "2A5" + }, + { + "id": "18569", + "ident": "K2A6", + "type": "small_airport", + "name": "Holly Grove Municipal Airport", + "latitude_deg": "34.582401275634766", + "longitude_deg": "-91.16519927978516", + "elevation_ft": "176", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Holly Grove", + "scheduled_service": "no", + "gps_code": "K2A6", + "local_code": "2A6" + }, + { + "id": "18570", + "ident": "K2B3", + "type": "small_airport", + "name": "Parlin Field", + "latitude_deg": "43.388099670410156", + "longitude_deg": "-72.18930053710938", + "elevation_ft": "784", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "K2B3", + "local_code": "2B3" + }, + { + "id": "18571", + "ident": "K2B7", + "type": "small_airport", + "name": "Pittsfield Municipal Airport", + "latitude_deg": "44.76850128173828", + "longitude_deg": "-69.37439727783203", + "elevation_ft": "198", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Pittsfield", + "scheduled_service": "no", + "gps_code": "K2B7", + "local_code": "2B7" + }, + { + "id": "18572", + "ident": "K2C8", + "type": "small_airport", + "name": "Cavalier Municipal Airport", + "latitude_deg": "48.78379821777344", + "longitude_deg": "-97.63189697265625", + "elevation_ft": "892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Cavalier", + "scheduled_service": "no", + "gps_code": "K2C8", + "local_code": "2C8" + }, + { + "id": "18573", + "ident": "K2CB", + "type": "small_airport", + "name": "Camp Blanding Army Air Field/NG Airfield", + "latitude_deg": "29.952499389599996", + "longitude_deg": "-81.9796981812", + "elevation_ft": "196", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Camp Blanding Mil Res(Starke)", + "scheduled_service": "no", + "gps_code": "K2CB", + "local_code": "2CB" + }, + { + "id": "18574", + "ident": "K2D5", + "type": "small_airport", + "name": "Oakes Municipal Airport", + "latitude_deg": "46.17300033569336", + "longitude_deg": "-98.07990264892578", + "elevation_ft": "1335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Oakes", + "scheduled_service": "no", + "gps_code": "K2D5", + "local_code": "2D5" + }, + { + "id": "18575", + "ident": "K2E3", + "type": "small_airport", + "name": "Cluck Ranch Airport", + "latitude_deg": "36.17720031738281", + "longitude_deg": "-101.69400024414062", + "elevation_ft": "3423", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gruver", + "scheduled_service": "no", + "gps_code": "K2E3", + "local_code": "2.00E+03" + }, + { + "id": "18576", + "ident": "K2E5", + "type": "small_airport", + "name": "Dell City Municipal Airport", + "latitude_deg": "31.947599", + "longitude_deg": "-105.192001", + "elevation_ft": "3701", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dell City", + "scheduled_service": "no", + "gps_code": "KGDP", + "local_code": "2.00E+05" + }, + { + "id": "18577", + "ident": "K2E7", + "type": "small_airport", + "name": "Mc Lean Gray County Airport", + "latitude_deg": "35.2470016479", + "longitude_deg": "-100.543998718", + "elevation_ft": "2835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mc Lean", + "scheduled_service": "no", + "gps_code": "K2E7", + "local_code": "2.00E+07" + }, + { + "id": "18578", + "ident": "K2F0", + "type": "small_airport", + "name": "Iraan Municipal Airport", + "latitude_deg": "30.9057006836", + "longitude_deg": "-101.891998291", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Iraan", + "scheduled_service": "no", + "iata_code": "IRB", + "local_code": "2F0" + }, + { + "id": "18579", + "ident": "K2F1", + "type": "small_airport", + "name": "Shamrock Municipal Airport", + "latitude_deg": "35.233913", + "longitude_deg": "-100.185442", + "elevation_ft": "2369", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Shamrock", + "scheduled_service": "no", + "local_code": "2F1" + }, + { + "id": "18580", + "ident": "K2F4", + "type": "small_airport", + "name": "T Bar Airport", + "latitude_deg": "33.176998138427734", + "longitude_deg": "-101.81999969482422", + "elevation_ft": "3126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tahoka", + "scheduled_service": "no", + "gps_code": "K2F4", + "local_code": "2F4" + }, + { + "id": "18581", + "ident": "K2F5", + "type": "small_airport", + "name": "Lamesa Municipal Airport", + "latitude_deg": "32.756302", + "longitude_deg": "-101.919997", + "elevation_ft": "2999", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lamesa", + "scheduled_service": "no", + "gps_code": "KLUV", + "local_code": "LUV", + "keywords": "2F5" + }, + { + "id": "18582", + "ident": "K2F7", + "type": "small_airport", + "name": "Commerce Municipal Airport", + "latitude_deg": "33.2929", + "longitude_deg": "-95.8964", + "elevation_ft": "515", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Commerce", + "scheduled_service": "no", + "local_code": "2F7" + }, + { + "id": "18583", + "ident": "K2G1", + "type": "small_airport", + "name": "Concord Airpark", + "latitude_deg": "41.66699981689453", + "longitude_deg": "-81.19719696044922", + "elevation_ft": "999", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Painesville", + "scheduled_service": "no", + "gps_code": "K2G1", + "local_code": "2G1" + }, + { + "id": "18584", + "ident": "K2G2", + "type": "small_airport", + "name": "Jefferson County Airpark", + "latitude_deg": "40.35940170288086", + "longitude_deg": "-80.70010375976562", + "elevation_ft": "1196", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Steubenville", + "scheduled_service": "no", + "gps_code": "K2G2", + "local_code": "2G2" + }, + { + "id": "18585", + "ident": "K2G4", + "type": "small_airport", + "name": "Garrett County Airport", + "latitude_deg": "39.580299377441", + "longitude_deg": "-79.339401245117", + "elevation_ft": "2933", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Oakland", + "scheduled_service": "no", + "gps_code": "2G4", + "local_code": "2G4", + "home_link": "https://www.garrettcounty.org/airport-2g4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Garrett_County_Airport", + "keywords": "ODM" + }, + { + "id": "18586", + "ident": "K2G9", + "type": "small_airport", + "name": "Somerset County Airport", + "latitude_deg": "40.03910065", + "longitude_deg": "-79.01460266", + "elevation_ft": "2275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Somerset", + "scheduled_service": "no", + "gps_code": "K2G9", + "local_code": "2G9", + "home_link": "http://www.co.somerset.pa.us/airport/", + "keywords": "Joseph W. Martin Field" + }, + { + "id": "18587", + "ident": "K2GC", + "type": "small_airport", + "name": "Grays Creek Airport", + "latitude_deg": "34.8937", + "longitude_deg": "-78.843498", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Fayetteville", + "scheduled_service": "no", + "local_code": "2GC" + }, + { + "id": "18588", + "ident": "K2H0", + "type": "small_airport", + "name": "Shelby County Airport", + "latitude_deg": "39.410400390599996", + "longitude_deg": "-88.8453979492", + "elevation_ft": "618", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Shelbyville", + "scheduled_service": "no", + "gps_code": "2H0", + "local_code": "2H0", + "home_link": "http://www.shelbycountyairport.com/Home_Page.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shelby_County_Airport_(Illinois)" + }, + { + "id": "18589", + "ident": "K2H2", + "type": "small_airport", + "name": "Jerry Sumners Sr Aurora Municipal Airport", + "latitude_deg": "36.96229934692383", + "longitude_deg": "-93.69529724121094", + "elevation_ft": "1434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Aurora", + "scheduled_service": "no", + "gps_code": "K2H2", + "local_code": "2H2" + }, + { + "id": "18590", + "ident": "K2H9", + "type": "small_airport", + "name": "Rolette Airport", + "latitude_deg": "48.665298", + "longitude_deg": "-99.853203", + "elevation_ft": "1620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Rolette", + "scheduled_service": "no", + "local_code": "2H9", + "keywords": "ND55" + }, + { + "id": "18591", + "ident": "K2I0", + "type": "small_airport", + "name": "Madisonville Regional Airport", + "latitude_deg": "37.355", + "longitude_deg": "-87.399597", + "elevation_ft": "439", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Madisonville", + "scheduled_service": "no", + "gps_code": "K2I0", + "local_code": "2I0" + }, + { + "id": "18592", + "ident": "K2I3", + "type": "small_airport", + "name": "Rough River State Park Airport", + "latitude_deg": "37.610022", + "longitude_deg": "-86.507262", + "elevation_ft": "577", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Falls-Of-Rough", + "scheduled_service": "no", + "gps_code": "2I3", + "local_code": "2I3" + }, + { + "id": "18593", + "ident": "K2IS", + "type": "small_airport", + "name": "Airglades Airport", + "latitude_deg": "26.735195", + "longitude_deg": "-81.051078", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Clewiston", + "scheduled_service": "no", + "local_code": "2IS", + "home_link": "https://www.airglades.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Airglades_Airport" + }, + { + "id": "18594", + "ident": "K2J2", + "type": "small_airport", + "name": "Liberty County Airport", + "latitude_deg": "31.78459930419922", + "longitude_deg": "-81.64119720458984", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Hinesville", + "scheduled_service": "no", + "gps_code": "K2J2", + "local_code": "2J2" + }, + { + "id": "18595", + "ident": "K2J3", + "type": "small_airport", + "name": "Louisville Municipal Airport", + "latitude_deg": "32.98649978637695", + "longitude_deg": "-82.38569641113281", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "K2J3", + "local_code": "2J3" + }, + { + "id": "18596", + "ident": "K2J5", + "type": "small_airport", + "name": "Millen Airport", + "latitude_deg": "32.89360046386719", + "longitude_deg": "-81.96540069580078", + "elevation_ft": "237", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Millen", + "scheduled_service": "no", + "gps_code": "K2J5", + "local_code": "2J5" + }, + { + "id": "18597", + "ident": "K2K3", + "type": "small_airport", + "name": "Stanton County Municipal Airport", + "latitude_deg": "37.583039", + "longitude_deg": "-101.733002", + "elevation_ft": "3324", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Johnson", + "scheduled_service": "no", + "gps_code": "KJHN", + "local_code": "JHN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stanton_County_Municipal_Airport", + "keywords": "2K3" + }, + { + "id": "18598", + "ident": "K2K4", + "type": "small_airport", + "name": "Scott Field", + "latitude_deg": "34.892601013183594", + "longitude_deg": "-99.5281982421875", + "elevation_ft": "1643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Mangum", + "scheduled_service": "no", + "gps_code": "K2K4", + "local_code": "2K4" + }, + { + "id": "18599", + "ident": "K2K7", + "type": "small_airport", + "name": "Neodesha Municipal Airport", + "latitude_deg": "37.43539810180664", + "longitude_deg": "-95.64610290527344", + "elevation_ft": "841", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Neodesha", + "scheduled_service": "no", + "gps_code": "K2K7", + "local_code": "2K7" + }, + { + "id": "18600", + "ident": "K2K9", + "type": "small_airport", + "name": "Haskell Airport", + "latitude_deg": "35.83290100097656", + "longitude_deg": "-95.66739654541016", + "elevation_ft": "588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Haskell", + "scheduled_service": "no", + "gps_code": "K2K9", + "local_code": "2K9" + }, + { + "id": "18601", + "ident": "K2L0", + "type": "small_airport", + "name": "Pineville Municipal Airport", + "latitude_deg": "31.341931", + "longitude_deg": "-92.4436", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Pineville", + "scheduled_service": "no", + "local_code": "2L0", + "home_link": "http://www.pineville.net/department/?fDD=14-0", + "keywords": "9LA6" + }, + { + "id": "18602", + "ident": "K2M0", + "type": "small_airport", + "name": "Princeton Caldwell County Airport", + "latitude_deg": "37.1151008605957", + "longitude_deg": "-87.85710144042969", + "elevation_ft": "584", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "K2M0", + "local_code": "2M0" + }, + { + "id": "18603", + "ident": "K2M2", + "type": "small_airport", + "name": "Lawrenceburg Lawrence County Airport", + "latitude_deg": "35.23429870605469", + "longitude_deg": "-87.25789642333984", + "elevation_ft": "936", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lawrenceburg", + "scheduled_service": "no", + "gps_code": "K2M2", + "local_code": "2M2" + }, + { + "id": "18604", + "ident": "K2M4", + "type": "small_airport", + "name": "G V Montgomery Airport", + "latitude_deg": "32.354867", + "longitude_deg": "-89.48824", + "elevation_ft": "517", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Forest", + "scheduled_service": "no", + "gps_code": "K2M4", + "local_code": "2M4", + "keywords": "Forest Municipal" + }, + { + "id": "18605", + "ident": "K2M8", + "type": "small_airport", + "name": "Charles W. Baker Airport", + "latitude_deg": "35.2789993286", + "longitude_deg": "-89.93150329590001", + "elevation_ft": "247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Millington", + "scheduled_service": "no", + "gps_code": "K2M8", + "local_code": "2M8" + }, + { + "id": "18606", + "ident": "K2MO", + "type": "small_airport", + "name": "Mount Vernon Municipal Airport", + "latitude_deg": "37.06840133666992", + "longitude_deg": "-93.88490295410156", + "elevation_ft": "1244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "K2MO", + "local_code": "2MO" + }, + { + "id": "18607", + "ident": "K2O1", + "type": "small_airport", + "name": "Gansner Field", + "latitude_deg": "39.943902", + "longitude_deg": "-120.945", + "elevation_ft": "3415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Quincy", + "scheduled_service": "no", + "iata_code": "GNF", + "local_code": "2O1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gansner_Field" + }, + { + "id": "18608", + "ident": "K2O3", + "type": "small_airport", + "name": "Angwin Airport-Parrett Field", + "latitude_deg": "38.578499", + "longitude_deg": "-122.434998", + "elevation_ft": "1875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Angwin", + "scheduled_service": "no", + "local_code": "2O3" + }, + { + "id": "18609", + "ident": "K2O6", + "type": "small_airport", + "name": "Chowchilla Airport", + "latitude_deg": "37.11240005493164", + "longitude_deg": "-120.24700164794922", + "elevation_ft": "242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chowchilla", + "scheduled_service": "no", + "gps_code": "K2O6", + "local_code": "2O6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chowchilla_Airport" + }, + { + "id": "18610", + "ident": "K2O7", + "type": "small_airport", + "name": "Independence Airport", + "latitude_deg": "36.81380081", + "longitude_deg": "-118.2050018", + "elevation_ft": "3908", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Independence", + "scheduled_service": "no", + "gps_code": "K2O7", + "local_code": "2O7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Independence_Airport" + }, + { + "id": "18611", + "ident": "K2O8", + "type": "small_airport", + "name": "Hinton Municipal Airport", + "latitude_deg": "35.50590134", + "longitude_deg": "-98.3423996", + "elevation_ft": "1587", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hinton", + "scheduled_service": "no", + "gps_code": "K2O8", + "local_code": "2O8" + }, + { + "id": "18613", + "ident": "K2R0", + "type": "small_airport", + "name": "Waynesboro Municipal Airport", + "latitude_deg": "31.645999908447266", + "longitude_deg": "-88.63480377197266", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Waynesboro", + "scheduled_service": "no", + "gps_code": "K2R0", + "local_code": "2R0" + }, + { + "id": "18614", + "ident": "K2R1", + "type": "small_airport", + "name": "Le Maire Memorial Airport", + "latitude_deg": "29.899099349975586", + "longitude_deg": "-91.66600036621094", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Jeanerette", + "scheduled_service": "no", + "gps_code": "K2R1", + "local_code": "2R1" + }, + { + "id": "18615", + "ident": "K2R2", + "type": "small_airport", + "name": "Hendricks County Gordon Graham Field", + "latitude_deg": "39.74810028", + "longitude_deg": "-86.47380066", + "elevation_ft": "897", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "K2R2", + "local_code": "2R2" + }, + { + "id": "18616", + "ident": "K2R4", + "type": "small_airport", + "name": "Peter Prince Field", + "latitude_deg": "30.63759994506836", + "longitude_deg": "-86.99369812011719", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "K2R4", + "local_code": "2R4" + }, + { + "id": "18617", + "ident": "K2R5", + "type": "small_airport", + "name": "St Elmo Airport", + "latitude_deg": "30.50189972", + "longitude_deg": "-88.27510071", + "elevation_ft": "132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "St Elmo", + "scheduled_service": "no", + "gps_code": "K2R5", + "local_code": "2R5" + }, + { + "id": "18618", + "ident": "K2R6", + "type": "small_airport", + "name": "Bunkie Municipal Airport", + "latitude_deg": "30.95669937133789", + "longitude_deg": "-92.23410034179688", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bunkie", + "scheduled_service": "no", + "gps_code": "K2R6", + "local_code": "2R6" + }, + { + "id": "18619", + "ident": "K2R7", + "type": "small_airport", + "name": "Franklinton Airport", + "latitude_deg": "30.819400787353516", + "longitude_deg": "-90.11250305175781", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Franklinton", + "scheduled_service": "no", + "gps_code": "K2R7", + "local_code": "2R7" + }, + { + "id": "18620", + "ident": "K2R9", + "type": "small_airport", + "name": "Kenedy Regional Airport", + "latitude_deg": "28.825001", + "longitude_deg": "-97.865601", + "elevation_ft": "289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kenedy", + "scheduled_service": "no", + "local_code": "2R9", + "keywords": "Karnes County" + }, + { + "id": "18621", + "ident": "K2RR", + "type": "small_airport", + "name": "River Ranch Resort Airport", + "latitude_deg": "27.78219985961914", + "longitude_deg": "-81.2052993774414", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "River Ranch", + "scheduled_service": "no", + "gps_code": "K2RR", + "local_code": "2RR" + }, + { + "id": "18622", + "ident": "K2S4", + "type": "small_airport", + "name": "Warden Airport", + "latitude_deg": "46.9654006958", + "longitude_deg": "-119.066001892", + "elevation_ft": "1276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Warden", + "scheduled_service": "no", + "gps_code": "K2S4", + "local_code": "2S4" + }, + { + "id": "18623", + "ident": "K2S7", + "type": "small_airport", + "name": "Chiloquin State Airport", + "latitude_deg": "42.579440493", + "longitude_deg": "-121.879062653", + "elevation_ft": "4217", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Chiloquin", + "scheduled_service": "no", + "gps_code": "K2S7", + "iata_code": "CHZ", + "local_code": "2S7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chiloquin_State_Airport" + }, + { + "id": "18624", + "ident": "K2S8", + "type": "small_airport", + "name": "Wilbur Airport", + "latitude_deg": "47.75419998168945", + "longitude_deg": "-118.74299621582031", + "elevation_ft": "2182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Wilbur", + "scheduled_service": "no", + "gps_code": "K2S8", + "local_code": "2S8" + }, + { + "id": "18625", + "ident": "K2S9", + "type": "small_airport", + "name": "Willapa Harbor Airport", + "latitude_deg": "46.697601318359375", + "longitude_deg": "-123.822998046875", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "South Bend/Raymond/", + "scheduled_service": "no", + "gps_code": "K2S9", + "local_code": "2S9" + }, + { + "id": "18626", + "ident": "K2T1", + "type": "small_airport", + "name": "Muleshoe Municipal Airport", + "latitude_deg": "34.18510055541992", + "longitude_deg": "-102.64099884033203", + "elevation_ft": "3779", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Muleshoe", + "scheduled_service": "no", + "gps_code": "K2T1", + "local_code": "2T1" + }, + { + "id": "18629", + "ident": "K2V5", + "type": "small_airport", + "name": "Wray Municipal Airport", + "latitude_deg": "40.10029984", + "longitude_deg": "-102.2409973", + "elevation_ft": "3667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Wray", + "scheduled_service": "no", + "gps_code": "K2V5", + "local_code": "2V5" + }, + { + "id": "18630", + "ident": "K2V6", + "type": "small_airport", + "name": "Yuma Municipal Airport", + "latitude_deg": "40.104198455799995", + "longitude_deg": "-102.712997437", + "elevation_ft": "4136", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Yuma", + "scheduled_service": "no", + "gps_code": "2V6", + "local_code": "2V6" + }, + { + "id": "18631", + "ident": "K2W5", + "type": "small_airport", + "name": "Maryland Airport", + "latitude_deg": "38.596572", + "longitude_deg": "-77.072639", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Indian Head", + "scheduled_service": "no", + "gps_code": "K2W5", + "local_code": "2W5" + }, + { + "id": "18632", + "ident": "K2W6", + "type": "small_airport", + "name": "St. Mary's County Regional Airport", + "latitude_deg": "38.315399", + "longitude_deg": "-76.550102", + "elevation_ft": "142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "California", + "scheduled_service": "no", + "iata_code": "LTW", + "local_code": "2W6", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Mary's_County_Regional_Airport" + }, + { + "id": "18633", + "ident": "K2Y4", + "type": "small_airport", + "name": "Rockwell City Municipal Airport", + "latitude_deg": "42.38750076293945", + "longitude_deg": "-94.61799621582031", + "elevation_ft": "1217", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Rockwell City", + "scheduled_service": "no", + "gps_code": "K2Y4", + "local_code": "2Y4" + }, + { + "id": "18634", + "ident": "K30", + "type": "small_airport", + "name": "Heber Airpark", + "latitude_deg": "43.18339920043945", + "longitude_deg": "-73.6332015991211", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Gansevoort", + "scheduled_service": "no", + "gps_code": "K30", + "local_code": "K30" + }, + { + "id": "18635", + "ident": "K30K", + "type": "small_airport", + "name": "Ingalls Municipal Airport", + "latitude_deg": "37.90700149536133", + "longitude_deg": "-100.53099822998047", + "elevation_ft": "2814", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Ingalls", + "scheduled_service": "no", + "gps_code": "K30K", + "local_code": "30K" + }, + { + "id": "18636", + "ident": "K31", + "type": "small_airport", + "name": "Sharon Airport", + "latitude_deg": "42.77840042114258", + "longitude_deg": "-74.57759857177734", + "elevation_ft": "1508", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Sharon Springs", + "scheduled_service": "no", + "gps_code": "K31", + "local_code": "K31" + }, + { + "id": "18637", + "ident": "K31E", + "type": "small_airport", + "name": "Eagles Nest Airport", + "latitude_deg": "39.665401458740234", + "longitude_deg": "-74.30789947509766", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "West Creek", + "scheduled_service": "no", + "gps_code": "K31E", + "local_code": "31E" + }, + { + "id": "18638", + "ident": "K32A", + "type": "small_airport", + "name": "Danville Municipal Airport", + "latitude_deg": "35.08700180053711", + "longitude_deg": "-93.42749786376953", + "elevation_ft": "387", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "K32A", + "local_code": "32A" + }, + { + "id": "18639", + "ident": "K32S", + "type": "small_airport", + "name": "Stevensville Airport", + "latitude_deg": "46.52510070800781", + "longitude_deg": "-114.0530014038086", + "elevation_ft": "3610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Stevensville", + "scheduled_service": "no", + "gps_code": "K32S", + "local_code": "32S" + }, + { + "id": "18640", + "ident": "K33J", + "type": "small_airport", + "name": "Geneva Municipal Airport", + "latitude_deg": "31.052579", + "longitude_deg": "-85.868715", + "elevation_ft": "101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Geneva", + "scheduled_service": "no", + "gps_code": "K33J", + "local_code": "33J", + "wikipedia_link": "https://en.wikipedia.org/wiki/Geneva_Municipal_Airport" + }, + { + "id": "18641", + "ident": "K33K", + "type": "small_airport", + "name": "Kinsley Municipal Airport", + "latitude_deg": "37.909000396728516", + "longitude_deg": "-99.4030990600586", + "elevation_ft": "2171", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Kinsley", + "scheduled_service": "no", + "gps_code": "K33K", + "local_code": "33K" + }, + { + "id": "18642", + "ident": "K33M", + "type": "small_airport", + "name": "Water Valley Municipal Airport", + "latitude_deg": "34.16680145263672", + "longitude_deg": "-89.68620300292969", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Water Valley", + "scheduled_service": "no", + "gps_code": "K33M", + "local_code": "33M" + }, + { + "id": "18643", + "ident": "K33N", + "type": "small_airport", + "name": "Delaware Airpark", + "latitude_deg": "39.21874", + "longitude_deg": "-75.600424", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Dover/Cheswold", + "scheduled_service": "no", + "gps_code": "K33N", + "local_code": "33N", + "wikipedia_link": "https://en.wikipedia.org/wiki/Delaware_Airpark" + }, + { + "id": "18644", + "ident": "K33R", + "type": "small_airport", + "name": "Groveton Trinity County Airport", + "latitude_deg": "31.08489990234375", + "longitude_deg": "-95.16410064697266", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Groveton", + "scheduled_service": "no", + "gps_code": "K33R", + "local_code": "33R" + }, + { + "id": "18645", + "ident": "K33S", + "type": "small_airport", + "name": "Pru Field", + "latitude_deg": "47.123199462890625", + "longitude_deg": "-118.38999938964844", + "elevation_ft": "1801", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ritzville", + "scheduled_service": "no", + "gps_code": "K33S", + "local_code": "33S" + }, + { + "id": "18646", + "ident": "K33U", + "type": "small_airport", + "name": "Dutch John Airport", + "latitude_deg": "40.917701721191406", + "longitude_deg": "-109.39099884033203", + "elevation_ft": "6561", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Dutch John", + "scheduled_service": "no", + "gps_code": "K33U", + "local_code": "33U" + }, + { + "id": "18647", + "ident": "K33V", + "type": "small_airport", + "name": "Walden Jackson County Airport", + "latitude_deg": "40.75040054321289", + "longitude_deg": "-106.27100372314453", + "elevation_ft": "8153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Walden", + "scheduled_service": "no", + "gps_code": "K33V", + "local_code": "33V" + }, + { + "id": "18648", + "ident": "K34", + "type": "small_airport", + "name": "Gardner Municipal Airport", + "latitude_deg": "38.80690002441406", + "longitude_deg": "-94.9561996459961", + "elevation_ft": "1042", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Gardner", + "scheduled_service": "no", + "gps_code": "K34", + "local_code": "K34", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gardner_Municipal_Airport_(Kansas)" + }, + { + "id": "18650", + "ident": "K34M", + "type": "small_airport", + "name": "Campbell Municipal Airport", + "latitude_deg": "36.485901", + "longitude_deg": "-90.015772", + "elevation_ft": "284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Campbell", + "scheduled_service": "no", + "gps_code": "K34M", + "local_code": "34M" + }, + { + "id": "18651", + "ident": "K34R", + "type": "small_airport", + "name": "Hallettsville Municipal Airport", + "latitude_deg": "29.389999389648438", + "longitude_deg": "-96.95610046386719", + "elevation_ft": "278", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hallettsville", + "scheduled_service": "no", + "gps_code": "K34R", + "local_code": "34R" + }, + { + "id": "18652", + "ident": "K35A", + "type": "small_airport", + "name": "Union County, Troy Shelton Field", + "latitude_deg": "34.6870002747", + "longitude_deg": "-81.64119720459999", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Union", + "scheduled_service": "no", + "gps_code": "K35A", + "local_code": "35A" + }, + { + "id": "18653", + "ident": "K35D", + "type": "small_airport", + "name": "Padgham Field", + "latitude_deg": "42.53099823", + "longitude_deg": "-85.82510376", + "elevation_ft": "706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Allegan", + "scheduled_service": "no", + "gps_code": "K35D", + "local_code": "35D", + "wikipedia_link": "https://en.wikipedia.org/wiki/Padgham_Field" + }, + { + "id": "18654", + "ident": "K35S", + "type": "small_airport", + "name": "Wasco State Airport", + "latitude_deg": "45.58940124511719", + "longitude_deg": "-120.67400360107422", + "elevation_ft": "1503", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Wasco", + "scheduled_service": "no", + "gps_code": "K35S", + "local_code": "35S", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wasco_State_Airport" + }, + { + "id": "18655", + "ident": "K36K", + "type": "small_airport", + "name": "Kearny County Airport", + "latitude_deg": "37.969501", + "longitude_deg": "-101.254997", + "elevation_ft": "3077", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Lakin", + "scheduled_service": "no", + "local_code": "36K", + "keywords": "Lakin Airport" + }, + { + "id": "18656", + "ident": "K36S", + "type": "small_airport", + "name": "Happy Camp Airport", + "latitude_deg": "41.79069900512695", + "longitude_deg": "-123.38899993896484", + "elevation_ft": "1209", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Happy Camp", + "scheduled_service": "no", + "gps_code": "K36S", + "local_code": "36S", + "wikipedia_link": "https://en.wikipedia.org/wiki/Happy_Camp_Airport" + }, + { + "id": "18657", + "ident": "K36U", + "type": "small_airport", + "name": "Heber Valley Airport", + "latitude_deg": "40.4818", + "longitude_deg": "-111.429001", + "elevation_ft": "5637", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Heber", + "scheduled_service": "no", + "gps_code": "KHCR", + "local_code": "HCR", + "home_link": "https://www.russmcdonaldfield.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Heber_City_Municipal_Airport", + "keywords": "36U, Heber City Municipal Airport - Russ McDonald Field" + }, + { + "id": "18658", + "ident": "K37F", + "type": "small_airport", + "name": "Munday Municipal Airport", + "latitude_deg": "33.468029", + "longitude_deg": "-99.586121", + "elevation_ft": "1473", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Munday", + "scheduled_service": "no", + "local_code": "37F" + }, + { + "id": "18659", + "ident": "K37K", + "type": "small_airport", + "name": "Falconhead Airport", + "latitude_deg": "33.927032", + "longitude_deg": "-97.29612", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Burneyville", + "scheduled_service": "no", + "local_code": "37K" + }, + { + "id": "18660", + "ident": "K37T", + "type": "small_airport", + "name": "Calico Rock Izard County Airport", + "latitude_deg": "36.16450119018555", + "longitude_deg": "-92.14450073242188", + "elevation_ft": "733", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Calico Rock", + "scheduled_service": "no", + "gps_code": "K37T", + "local_code": "37T" + }, + { + "id": "18661", + "ident": "K37V", + "type": "small_airport", + "name": "Arapahoe Municipal Airport", + "latitude_deg": "40.339500427199994", + "longitude_deg": "-99.90650177", + "elevation_ft": "2270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Arapahoe", + "scheduled_service": "no", + "iata_code": "AHF", + "local_code": "37V", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arapahoe_Municipal_Airport" + }, + { + "id": "18662", + "ident": "K38D", + "type": "small_airport", + "name": "Salem Airpark Inc Airport", + "latitude_deg": "40.94810104370117", + "longitude_deg": "-80.86209869384766", + "elevation_ft": "1162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "K38D", + "local_code": "38D" + }, + { + "id": "18663", + "ident": "K38J", + "type": "small_airport", + "name": "Hemingway Stuckey Airport", + "latitude_deg": "33.728599548339844", + "longitude_deg": "-79.51599884033203", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Hemingway", + "scheduled_service": "no", + "gps_code": "K38J", + "local_code": "38J" + }, + { + "id": "18664", + "ident": "K38S", + "type": "small_airport", + "name": "Deer Lodge City County Airport", + "latitude_deg": "46.38819885", + "longitude_deg": "-112.7659988", + "elevation_ft": "4693", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Deer Lodge", + "scheduled_service": "no", + "gps_code": "K38S", + "local_code": "38S" + }, + { + "id": "18665", + "ident": "K38U", + "type": "small_airport", + "name": "Wayne Wonderland Airport", + "latitude_deg": "38.36249923706055", + "longitude_deg": "-111.59600067138672", + "elevation_ft": "7023", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Loa", + "scheduled_service": "no", + "gps_code": "K38U", + "local_code": "38U" + }, + { + "id": "18666", + "ident": "K39N", + "type": "small_airport", + "name": "Princeton Airport", + "latitude_deg": "40.3992004395", + "longitude_deg": "-74.6588973999", + "elevation_ft": "128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Princeton/Rocky Hill", + "scheduled_service": "no", + "gps_code": "39N", + "iata_code": "PCT", + "local_code": "39N", + "home_link": "http://www.princetonairport.com/recent-history/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Princeton_Airport_(New_Jersey)" + }, + { + "id": "18668", + "ident": "K3A2", + "type": "small_airport", + "name": "New Tazewell Municipal Airport", + "latitude_deg": "36.410099029541016", + "longitude_deg": "-83.55549621582031", + "elevation_ft": "1179", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Tazewell", + "scheduled_service": "no", + "gps_code": "K3A2", + "local_code": "3A2" + }, + { + "id": "18669", + "ident": "K3A4", + "type": "small_airport", + "name": "Southeast Greensboro Airport", + "latitude_deg": "35.942001", + "longitude_deg": "-79.685501", + "elevation_ft": "737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Climax", + "scheduled_service": "no", + "local_code": "3A4" + }, + { + "id": "18670", + "ident": "K3A7", + "type": "small_airport", + "name": "Eutaw Municipal Airport", + "latitude_deg": "32.82099914550781", + "longitude_deg": "-87.86250305175781", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Eutaw", + "scheduled_service": "no", + "gps_code": "K3A7", + "local_code": "3A7" + }, + { + "id": "310044", + "ident": "K3AK", + "type": "small_airport", + "name": "Dry Bay Airport", + "latitude_deg": "59.164434", + "longitude_deg": "-138.489398", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Yakutat", + "scheduled_service": "no", + "local_code": "3AK" + }, + { + "id": "18671", + "ident": "K3AU", + "type": "small_airport", + "name": "Augusta Municipal Airport", + "latitude_deg": "37.671600341796875", + "longitude_deg": "-97.0779037475586", + "elevation_ft": "1328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Augusta", + "scheduled_service": "no", + "gps_code": "K3AU", + "local_code": "3AU" + }, + { + "id": "18672", + "ident": "K3B0", + "type": "small_airport", + "name": "Southbridge Municipal Airport", + "latitude_deg": "42.10089874267578", + "longitude_deg": "-72.03839874267578", + "elevation_ft": "699", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Southbridge", + "scheduled_service": "no", + "gps_code": "K3B0", + "local_code": "3B0", + "wikipedia_link": "https://en.wikipedia.org/wiki/Southbridge_Municipal_Airport" + }, + { + "id": "18673", + "ident": "K3B1", + "type": "small_airport", + "name": "Greenville Municipal Airport", + "latitude_deg": "45.4630012512207", + "longitude_deg": "-69.55159759521484", + "elevation_ft": "1401", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "K3B1", + "local_code": "3B1" + }, + { + "id": "18675", + "ident": "K3B4", + "type": "small_airport", + "name": "Littlebrook Air Park", + "latitude_deg": "43.143101", + "longitude_deg": "-70.772301", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Eliot", + "scheduled_service": "no", + "gps_code": "K3B4", + "local_code": "3B4" + }, + { + "id": "18676", + "ident": "K3B5", + "type": "small_airport", + "name": "Twitchell Airport", + "latitude_deg": "44.188899993896484", + "longitude_deg": "-70.23290252685547", + "elevation_ft": "356", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Turner", + "scheduled_service": "no", + "gps_code": "K3B5", + "local_code": "3B5" + }, + { + "id": "18677", + "ident": "K3BS", + "type": "small_airport", + "name": "Jack Barstow Airport", + "latitude_deg": "43.663054", + "longitude_deg": "-84.258606", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Midland", + "scheduled_service": "no", + "gps_code": "KIKW", + "local_code": "IKW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jack_Barstow_Municipal_Airport" + }, + { + "id": "18678", + "ident": "K3C8", + "type": "small_airport", + "name": "Calverton Executive Airpark", + "latitude_deg": "40.9151000977", + "longitude_deg": "-72.7919006348", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Calverton", + "scheduled_service": "no", + "gps_code": "3C8", + "iata_code": "CTO", + "local_code": "3C8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Calverton_Executive_Airpark", + "keywords": "Peconic River, Naval Weapons Industrial Reserve" + }, + { + "id": "18679", + "ident": "K3CK", + "type": "small_airport", + "name": "Lake in the Hills Airport", + "latitude_deg": "42.2067985534668", + "longitude_deg": "-88.322998046875", + "elevation_ft": "888", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago/Lake in the Hills", + "scheduled_service": "no", + "gps_code": "K3CK", + "local_code": "3CK" + }, + { + "id": "18680", + "ident": "K3CM", + "type": "small_airport", + "name": "James Clements Municipal Airport", + "latitude_deg": "43.5469017", + "longitude_deg": "-83.89550018", + "elevation_ft": "585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Bay City", + "scheduled_service": "no", + "gps_code": "K3CM", + "local_code": "3CM", + "wikipedia_link": "https://en.wikipedia.org/wiki/James_Clements_Municipal_Airport" + }, + { + "id": "18681", + "ident": "K3CU", + "type": "small_airport", + "name": "Cable Union Airport", + "latitude_deg": "46.19419860839844", + "longitude_deg": "-91.24639892578125", + "elevation_ft": "1360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Cable", + "scheduled_service": "no", + "gps_code": "K3CU", + "local_code": "3CU" + }, + { + "id": "18682", + "ident": "K3DW", + "type": "small_airport", + "name": "Downtown Airport", + "latitude_deg": "37.222705", + "longitude_deg": "-93.248348", + "elevation_ft": "1374", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "K3DW", + "local_code": "3DW" + }, + { + "id": "18683", + "ident": "K3E0", + "type": "small_airport", + "name": "Miami Roberts County Airport", + "latitude_deg": "35.71390151977539", + "longitude_deg": "-100.60299682617188", + "elevation_ft": "2720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "K3E0", + "local_code": "3.00E+00" + }, + { + "id": "18684", + "ident": "K3F2", + "type": "small_airport", + "name": "Cisco Municipal Airport", + "latitude_deg": "32.415038", + "longitude_deg": "-98.996944", + "elevation_ft": "1612", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cisco", + "scheduled_service": "no", + "local_code": "3F2" + }, + { + "id": "18685", + "ident": "K3F3", + "type": "small_airport", + "name": "C E 'Rusty' Williams Airport", + "latitude_deg": "32.0735015869", + "longitude_deg": "-93.7655029297", + "elevation_ft": "324", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Mansfield", + "scheduled_service": "no", + "gps_code": "K3F3", + "local_code": "3F3", + "home_link": "http://www.cewilliamsairport.com/", + "keywords": "De Soto Parish Airport" + }, + { + "id": "18686", + "ident": "K3F4", + "type": "small_airport", + "name": "Vivian Airport", + "latitude_deg": "32.86130142211914", + "longitude_deg": "-94.01020050048828", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Vivian", + "scheduled_service": "no", + "gps_code": "K3F4", + "local_code": "3F4" + }, + { + "id": "18687", + "ident": "K3F6", + "type": "small_airport", + "name": "Dan E Richards Municipal Airport", + "latitude_deg": "34.027599", + "longitude_deg": "-100.281998", + "elevation_ft": "1860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paducah", + "scheduled_service": "no", + "local_code": "3F6" + }, + { + "id": "18688", + "ident": "K3F7", + "type": "small_airport", + "name": "Jones Memorial Airport", + "latitude_deg": "35.80690002441406", + "longitude_deg": "-96.4218978881836", + "elevation_ft": "851", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Bristow", + "scheduled_service": "no", + "gps_code": "K3F7", + "local_code": "3F7" + }, + { + "id": "18689", + "ident": "K3F9", + "type": "small_airport", + "name": "Mineola Wisener Field", + "latitude_deg": "32.676700592041016", + "longitude_deg": "-95.51080322265625", + "elevation_ft": "429", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineola", + "scheduled_service": "no", + "gps_code": "K3F9", + "local_code": "3F9" + }, + { + "id": "18691", + "ident": "K3FU", + "type": "small_airport", + "name": "Faulkton Municipal Airport", + "latitude_deg": "45.031898498535156", + "longitude_deg": "-99.1156997680664", + "elevation_ft": "1569", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Faulkton", + "scheduled_service": "no", + "gps_code": "K3FU", + "local_code": "3FU" + }, + { + "id": "18692", + "ident": "K3G1", + "type": "small_airport", + "name": "Erie County Airport", + "latitude_deg": "42.044242", + "longitude_deg": "-79.85389", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wattsburg", + "scheduled_service": "no", + "gps_code": "K3G1", + "local_code": "3G1" + }, + { + "id": "18693", + "ident": "K3G2", + "type": "small_airport", + "name": "Grygla Municipal Mel Wilkens Field", + "latitude_deg": "48.29669952392578", + "longitude_deg": "-95.627197265625", + "elevation_ft": "1177", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Grygla", + "scheduled_service": "no", + "gps_code": "K3G2", + "local_code": "3G2" + }, + { + "id": "18694", + "ident": "K3G3", + "type": "small_airport", + "name": "Wadsworth Municipal Airport", + "latitude_deg": "41.00310134887695", + "longitude_deg": "-81.75650024414062", + "elevation_ft": "974", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wadsworth", + "scheduled_service": "no", + "gps_code": "K3G3", + "local_code": "3G3" + }, + { + "id": "18695", + "ident": "K3G4", + "type": "small_airport", + "name": "Ashland County Airport", + "latitude_deg": "40.90299987792969", + "longitude_deg": "-82.25559997558594", + "elevation_ft": "1206", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "K3G4", + "local_code": "3G4" + }, + { + "id": "18696", + "ident": "K3G5", + "type": "small_airport", + "name": "Dawson Army Air Field", + "latitude_deg": "39.45009994506836", + "longitude_deg": "-79.66639709472656", + "elevation_ft": "1265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Camp Dawson (Kingwood)", + "scheduled_service": "no", + "gps_code": "K3G5", + "local_code": "3G5" + }, + { + "id": "18697", + "ident": "K3G6", + "type": "small_airport", + "name": "Tri City Airport", + "latitude_deg": "40.90599822998047", + "longitude_deg": "-81", + "elevation_ft": "1188", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Sebring", + "scheduled_service": "no", + "gps_code": "K3G6", + "local_code": "3G6" + }, + { + "id": "18699", + "ident": "K3GM", + "type": "small_airport", + "name": "Grand Haven Memorial Airpark", + "latitude_deg": "43.034000396728516", + "longitude_deg": "-86.19819641113281", + "elevation_ft": "604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Grand Haven", + "scheduled_service": "no", + "gps_code": "K3GM", + "local_code": "3GM" + }, + { + "id": "18700", + "ident": "K3GV", + "type": "small_airport", + "name": "East Kansas City Airport", + "latitude_deg": "39.01559829711914", + "longitude_deg": "-94.21330261230469", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Grain Valley", + "scheduled_service": "no", + "gps_code": "K3GV", + "local_code": "3GV" + }, + { + "id": "18701", + "ident": "K3H4", + "type": "small_airport", + "name": "Hillsboro Municipal Airport", + "latitude_deg": "47.35940170288086", + "longitude_deg": "-97.0604019165039", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "K3H4", + "local_code": "3H4" + }, + { + "id": "18702", + "ident": "K3HO", + "type": "small_airport", + "name": "Hobart Sky Ranch Airport", + "latitude_deg": "41.55419921875", + "longitude_deg": "-87.26249694824219", + "elevation_ft": "644", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hobart", + "scheduled_service": "no", + "gps_code": "K3HO", + "local_code": "3HO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hobart_Sky_Ranch_Airport" + }, + { + "id": "18703", + "ident": "K3I2", + "type": "small_airport", + "name": "Mason County Airport", + "latitude_deg": "38.91460037231445", + "longitude_deg": "-82.09860229492188", + "elevation_ft": "643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Point Pleasant", + "scheduled_service": "no", + "gps_code": "K3I2", + "local_code": "3I2" + }, + { + "id": "18704", + "ident": "K3I3", + "type": "small_airport", + "name": "Sky King Airport", + "latitude_deg": "39.54779815673828", + "longitude_deg": "-87.3772964477539", + "elevation_ft": "496", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Terre Haute", + "scheduled_service": "no", + "gps_code": "K3I3", + "local_code": "3I3" + }, + { + "id": "18705", + "ident": "K3I4", + "type": "small_airport", + "name": "Richwood Municipal Airport", + "latitude_deg": "38.258399963378906", + "longitude_deg": "-80.65070343017578", + "elevation_ft": "2486", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Richwood", + "scheduled_service": "no", + "gps_code": "K3I4", + "local_code": "3I4" + }, + { + "id": "18706", + "ident": "K3I7", + "type": "small_airport", + "name": "Dayton-Phillipsburg Airport", + "latitude_deg": "39.913305", + "longitude_deg": "-84.400398", + "elevation_ft": "1031", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Phillipsburg", + "scheduled_service": "no", + "local_code": "3I7" + }, + { + "id": "18707", + "ident": "K3J0", + "type": "small_airport", + "name": "Hampton County Airport", + "latitude_deg": "32.8665", + "longitude_deg": "-81.081001", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Hampton", + "scheduled_service": "no", + "local_code": "3J0", + "keywords": "Hampton Varnville" + }, + { + "id": "18708", + "ident": "K3J1", + "type": "small_airport", + "name": "Ridgeland-Claude Dean Airport", + "latitude_deg": "32.492699", + "longitude_deg": "-80.992302", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Ridgeland", + "scheduled_service": "no", + "gps_code": "K3J1", + "local_code": "3J1", + "keywords": "Ridgeland Airport" + }, + { + "id": "18709", + "ident": "K3J7", + "type": "small_airport", + "name": "Greene County Regional Airport", + "latitude_deg": "33.59769821166992", + "longitude_deg": "-83.13899993896484", + "elevation_ft": "677", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Greensboro", + "scheduled_service": "no", + "gps_code": "K3J7", + "local_code": "3J7" + }, + { + "id": "18710", + "ident": "K3JC", + "type": "small_airport", + "name": "Freeman Field", + "latitude_deg": "39.044452", + "longitude_deg": "-96.844566", + "elevation_ft": "1101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Junction City", + "scheduled_service": "no", + "gps_code": "K3JC", + "local_code": "3JC" + }, + { + "id": "18711", + "ident": "K3K3", + "type": "small_airport", + "name": "Syracuse Hamilton County Municipal Airport", + "latitude_deg": "37.99169921875", + "longitude_deg": "-101.74600219726562", + "elevation_ft": "3322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Syracuse", + "scheduled_service": "no", + "gps_code": "K3K3", + "local_code": "3K3" + }, + { + "id": "18712", + "ident": "K3K6", + "type": "small_airport", + "name": "St Louis Metro-East Airport/Shafer Field", + "latitude_deg": "38.732899", + "longitude_deg": "-89.806602", + "elevation_ft": "477", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "St Jacob", + "scheduled_service": "no", + "gps_code": "IL48", + "local_code": "IL48", + "keywords": "3K6" + }, + { + "id": "18713", + "ident": "K3K7", + "type": "small_airport", + "name": "Mark Hoard Memorial Airport", + "latitude_deg": "38.457001", + "longitude_deg": "-101.352997", + "elevation_ft": "3303", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Leoti", + "scheduled_service": "no", + "local_code": "3K7" + }, + { + "id": "18714", + "ident": "K3K8", + "type": "small_airport", + "name": "Comanche County Airport", + "latitude_deg": "37.22809982299805", + "longitude_deg": "-99.33090209960938", + "elevation_ft": "2085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Coldwater", + "scheduled_service": "no", + "gps_code": "K3K8", + "local_code": "3K8" + }, + { + "id": "18715", + "ident": "K3L2", + "type": "small_airport", + "name": "Sky Ranch Airport", + "latitude_deg": "35.7952995300293", + "longitude_deg": "-115.62699890136719", + "elevation_ft": "2599", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Sandy Valley", + "scheduled_service": "no", + "gps_code": "K3L2", + "local_code": "3L2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sky_Ranch_Airport_(Nevada)" + }, + { + "id": "18716", + "ident": "K3LF", + "type": "small_airport", + "name": "Litchfield Municipal Airport", + "latitude_deg": "39.162498", + "longitude_deg": "-89.674599", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Litchfield", + "scheduled_service": "no", + "local_code": "3LF" + }, + { + "id": "18717", + "ident": "K3M2", + "type": "small_airport", + "name": "Double Springs/Winston County Airport", + "latitude_deg": "34.144501", + "longitude_deg": "-87.327797", + "elevation_ft": "753", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Double Springs", + "scheduled_service": "no", + "local_code": "3M2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Double_Springs%E2%80%93Winston_County_Airport" + }, + { + "id": "18719", + "ident": "K3M7", + "type": "small_airport", + "name": "Lafayette Municipal Airport", + "latitude_deg": "36.51839828", + "longitude_deg": "-86.0582962", + "elevation_ft": "969", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "K3M7", + "local_code": "3M7" + }, + { + "id": "18720", + "ident": "K3M8", + "type": "small_airport", + "name": "North Pickens Airport", + "latitude_deg": "33.38679885864258", + "longitude_deg": "-88.00659942626953", + "elevation_ft": "237", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Reform", + "scheduled_service": "no", + "gps_code": "K3M8", + "local_code": "3M8" + }, + { + "id": "18721", + "ident": "K3M9", + "type": "small_airport", + "name": "Warren Municipal Airport", + "latitude_deg": "33.56039810180664", + "longitude_deg": "-92.08540344238281", + "elevation_ft": "235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Warren", + "scheduled_service": "no", + "gps_code": "K3M9", + "local_code": "3M9" + }, + { + "id": "18722", + "ident": "K3MY", + "type": "small_airport", + "name": "Mount Hawley Auxiliary Airport", + "latitude_deg": "40.79529953", + "longitude_deg": "-89.61340332", + "elevation_ft": "786", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Peoria", + "scheduled_service": "no", + "gps_code": "K3MY", + "local_code": "3MY" + }, + { + "id": "18723", + "ident": "K3N6", + "type": "small_airport", + "name": "Old Bridge Airport", + "latitude_deg": "40.329898834228516", + "longitude_deg": "-74.3468017578125", + "elevation_ft": "87", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Old Bridge", + "scheduled_service": "no", + "gps_code": "K3N6", + "local_code": "3N6" + }, + { + "id": "18724", + "ident": "K3O1", + "type": "small_airport", + "name": "Gustine Airport", + "latitude_deg": "37.262699127197266", + "longitude_deg": "-120.96299743652344", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Gustine", + "scheduled_service": "no", + "gps_code": "K3O1", + "local_code": "3O1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gustine_Airport" + }, + { + "id": "18725", + "ident": "K3O3", + "type": "small_airport", + "name": "Purcell Municipal - Steven E. Shephard field", + "latitude_deg": "34.984501", + "longitude_deg": "-97.382797", + "elevation_ft": "1143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Purcell", + "scheduled_service": "no", + "local_code": "3O3", + "keywords": "OK22" + }, + { + "id": "18726", + "ident": "K3O4", + "type": "small_airport", + "name": "Sayre Municipal Airport", + "latitude_deg": "35.167598724365234", + "longitude_deg": "-99.65789794921875", + "elevation_ft": "1937", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Sayre", + "scheduled_service": "no", + "gps_code": "K3O4", + "local_code": "3O4" + }, + { + "id": "18728", + "ident": "K3O9", + "type": "small_airport", + "name": "Grand Lake Regional Airport", + "latitude_deg": "36.577598571777", + "longitude_deg": "-94.86190032959", + "elevation_ft": "792", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Afton", + "scheduled_service": "no", + "gps_code": "3O9", + "iata_code": "NRI", + "local_code": "3O9", + "home_link": "http://www.thelandingsgrandlake.com/airport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Lake_Regional_Airport", + "keywords": "The Landings on Monkey Island" + }, + { + "id": "18729", + "ident": "K3P3", + "type": "small_airport", + "name": "Mott Municipal Airport", + "latitude_deg": "46.35969924926758", + "longitude_deg": "-102.322998046875", + "elevation_ft": "2411", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Mott", + "scheduled_service": "no", + "gps_code": "K3P3", + "local_code": "3P3" + }, + { + "id": "18731", + "ident": "K3R2", + "type": "small_airport", + "name": "Le Gros Memorial Airport", + "latitude_deg": "30.161603", + "longitude_deg": "-92.481744", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Crowley", + "scheduled_service": "no", + "gps_code": "K3R2", + "local_code": "3R2" + }, + { + "id": "18732", + "ident": "K3R4", + "type": "small_airport", + "name": "Hart Airport", + "latitude_deg": "31.54490089", + "longitude_deg": "-93.4865036", + "elevation_ft": "319", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Many", + "scheduled_service": "no", + "gps_code": "K3R4", + "local_code": "3R4" + }, + { + "id": "18733", + "ident": "K3R7", + "type": "small_airport", + "name": "Jennings Airport", + "latitude_deg": "30.242700576782227", + "longitude_deg": "-92.67340087890625", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Jennings", + "scheduled_service": "no", + "gps_code": "K3R7", + "local_code": "3R7" + }, + { + "id": "18734", + "ident": "K3R9", + "type": "small_airport", + "name": "Lakeway Airpark", + "latitude_deg": "30.3575", + "longitude_deg": "-97.994499", + "elevation_ft": "909", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "K3R9", + "local_code": "3R9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lakeway_Airpark", + "keywords": "Airfield Ranch" + }, + { + "id": "18735", + "ident": "K3RC", + "type": "small_airport", + "name": "Roscommon Conservation Airport", + "latitude_deg": "44.474998474121094", + "longitude_deg": "-84.56670379638672", + "elevation_ft": "1156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Roscommon", + "scheduled_service": "no", + "gps_code": "K3RC", + "local_code": "3RC" + }, + { + "id": "18736", + "ident": "K3S4", + "type": "small_airport", + "name": "Illinois Valley Airport", + "latitude_deg": "42.1036987305", + "longitude_deg": "-123.681999207", + "elevation_ft": "1394", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Cave Junction", + "scheduled_service": "no", + "gps_code": "3S4", + "local_code": "3S4", + "home_link": "http://www.co.josephine.or.us/Page.asp?NavID=1246", + "wikipedia_link": "https://en.wikipedia.org/wiki/Illinois_Valley_Airport", + "keywords": "Siskiyou Smokejumper Base" + }, + { + "id": "18737", + "ident": "K3S8", + "type": "small_airport", + "name": "Grants Pass Airport", + "latitude_deg": "42.510101", + "longitude_deg": "-123.388", + "elevation_ft": "1126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Grants Pass", + "scheduled_service": "no", + "iata_code": "GTP", + "local_code": "3S8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grants_Pass_Airport", + "keywords": "Merlin" + }, + { + "id": "18738", + "ident": "K3S9", + "type": "small_airport", + "name": "Condon State Pauling Field", + "latitude_deg": "45.24660110473633", + "longitude_deg": "-120.16600036621094", + "elevation_ft": "2911", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Condon", + "scheduled_service": "no", + "gps_code": "K3S9", + "local_code": "3S9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Condon_State_Airport" + }, + { + "id": "18739", + "ident": "K3SQ", + "type": "closed", + "name": "St Charles Airport", + "latitude_deg": "38.848701", + "longitude_deg": "-90.500098", + "elevation_ft": "442", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Charles", + "scheduled_service": "no", + "local_code": "3SQ" + }, + { + "id": "18740", + "ident": "K3T3", + "type": "small_airport", + "name": "Boyceville Municipal Airport", + "latitude_deg": "45.043998718299996", + "longitude_deg": "-92.020401001", + "elevation_ft": "967", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Boyceville", + "scheduled_service": "no", + "gps_code": "3T3", + "local_code": "3T3" + }, + { + "id": "18741", + "ident": "K3T5", + "type": "small_airport", + "name": "Fayette Regional Air Center Airport", + "latitude_deg": "29.908001", + "longitude_deg": "-96.949997", + "elevation_ft": "324", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "La Grange", + "scheduled_service": "no", + "local_code": "3T5" + }, + { + "id": "18742", + "ident": "K3TR", + "type": "small_airport", + "name": "Jerry Tyler Memorial Airport", + "latitude_deg": "41.835899353027", + "longitude_deg": "-86.225196838379", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Niles", + "scheduled_service": "no", + "gps_code": "3TR", + "iata_code": "NLE", + "local_code": "3TR", + "home_link": "http://www.ci.niles.mi.us/deptsandservices/dpw/JerryTylerMemorialAirport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jerry_Tyler_Memorial_Airport" + }, + { + "id": "18743", + "ident": "K3U3", + "type": "small_airport", + "name": "Bowman Field", + "latitude_deg": "46.153099060058594", + "longitude_deg": "-112.86799621582031", + "elevation_ft": "5034", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Anaconda", + "scheduled_service": "no", + "gps_code": "K3U3", + "local_code": "3U3" + }, + { + "id": "18744", + "ident": "K3U4", + "type": "small_airport", + "name": "St Labre Mission Airport", + "latitude_deg": "45.599998474121094", + "longitude_deg": "-106.26699829101562", + "elevation_ft": "2909", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "K3U4", + "local_code": "3U4" + }, + { + "id": "18745", + "ident": "K3U7", + "type": "small_airport", + "name": "Benchmark Airport", + "latitude_deg": "47.480951", + "longitude_deg": "-112.870907", + "elevation_ft": "5434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Augusta", + "scheduled_service": "no", + "local_code": "3U7" + }, + { + "id": "18746", + "ident": "K3U8", + "type": "small_airport", + "name": "Big Sandy Airport", + "latitude_deg": "48.162498474121094", + "longitude_deg": "-110.11299896240234", + "elevation_ft": "2700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Big Sandy", + "scheduled_service": "no", + "gps_code": "K3U8", + "local_code": "3U8" + }, + { + "id": "18747", + "ident": "K3V0", + "type": "small_airport", + "name": "Custer State Park Airport", + "latitude_deg": "43.724998474121094", + "longitude_deg": "-103.3499984741211", + "elevation_ft": "3980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Fairburn", + "scheduled_service": "no", + "gps_code": "K3V0", + "local_code": "3V0" + }, + { + "id": "18748", + "ident": "K3V5", + "type": "closed", + "name": "Fort Collins Downtown Airport", + "latitude_deg": "40.588299", + "longitude_deg": "-105.042", + "elevation_ft": "4939", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Fort Collins", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Collins_Downtown_Airport", + "keywords": "3V5" + }, + { + "id": "18749", + "ident": "K3V7", + "type": "small_airport", + "name": "Belle Creek Airport", + "latitude_deg": "45.125", + "longitude_deg": "-105.09200286865234", + "elevation_ft": "3678", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Belle Creek", + "scheduled_service": "no", + "gps_code": "K3V7", + "local_code": "3V7" + }, + { + "id": "18750", + "ident": "K3W7", + "type": "small_airport", + "name": "Grand Coulee Dam Airport", + "latitude_deg": "47.922000885", + "longitude_deg": "-119.083000183", + "elevation_ft": "1588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Electric City", + "scheduled_service": "no", + "gps_code": "3W7", + "iata_code": "GCD", + "local_code": "3W7", + "home_link": "http://www.wsdot.wa.gov/aviation/AllStateAirports/ElectricCity_GrandCouleeDam.htm" + }, + { + "id": "18751", + "ident": "K3W8", + "type": "small_airport", + "name": "Eureka Municipal Airport", + "latitude_deg": "45.79999923706055", + "longitude_deg": "-99.64209747314453", + "elevation_ft": "1935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Eureka", + "scheduled_service": "no", + "gps_code": "K3W8", + "local_code": "3W8" + }, + { + "id": "18753", + "ident": "K3Y2", + "type": "small_airport", + "name": "George L Scott Municipal Airport", + "latitude_deg": "42.98509979248047", + "longitude_deg": "-91.79060363769531", + "elevation_ft": "1232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "West Union", + "scheduled_service": "no", + "gps_code": "K3Y2", + "local_code": "3Y2" + }, + { + "id": "18754", + "ident": "K3Y3", + "type": "small_airport", + "name": "Winterset Madison County Airport", + "latitude_deg": "41.36280059814453", + "longitude_deg": "-94.02110290527344", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Winterset", + "scheduled_service": "no", + "gps_code": "K3Y3", + "local_code": "3Y3" + }, + { + "id": "18755", + "ident": "K40", + "type": "seaplane_base", + "name": "Anvik Seaplane Base", + "latitude_deg": "62.65620040893555", + "longitude_deg": "-160.2050018310547", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anvik", + "scheduled_service": "no", + "gps_code": "K40", + "local_code": "K40" + }, + { + "id": "18756", + "ident": "K40G", + "type": "small_airport", + "name": "Valle Airport", + "latitude_deg": "35.65060043335", + "longitude_deg": "-112.14800262451", + "elevation_ft": "5999", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Grand Canyon", + "scheduled_service": "no", + "gps_code": "40G", + "iata_code": "VLE", + "local_code": "40G", + "home_link": "http://www.valleairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valle_Airport" + }, + { + "id": "18757", + "ident": "K40J", + "type": "small_airport", + "name": "Perry-Foley Airport", + "latitude_deg": "30.0693", + "longitude_deg": "-83.580597", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Perry", + "scheduled_service": "no", + "gps_code": "KFPY", + "iata_code": "FPY", + "local_code": "FPY", + "home_link": "http://taylorcountygov.com/airport/index.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Perry-Foley_Airport", + "keywords": "40J, Perry Army Airfield" + }, + { + "id": "18759", + "ident": "K40U", + "type": "small_airport", + "name": "Manila Airport", + "latitude_deg": "40.98609924316406", + "longitude_deg": "-109.6780014038086", + "elevation_ft": "6175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Manila", + "scheduled_service": "no", + "gps_code": "K40U", + "local_code": "40U" + }, + { + "id": "18760", + "ident": "K41A", + "type": "small_airport", + "name": "Reeves Airport", + "latitude_deg": "32.51470184326172", + "longitude_deg": "-85.8759994506836", + "elevation_ft": "326", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Tallassee", + "scheduled_service": "no", + "gps_code": "K41A", + "local_code": "41A" + }, + { + "id": "18761", + "ident": "K41F", + "type": "small_airport", + "name": "Floydada Municipal Airport", + "latitude_deg": "34.00230026", + "longitude_deg": "-101.3300018", + "elevation_ft": "3187", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Floydada", + "scheduled_service": "no", + "gps_code": "K41F", + "local_code": "41F" + }, + { + "id": "18762", + "ident": "K41N", + "type": "small_airport", + "name": "Braceville Airport", + "latitude_deg": "41.212023", + "longitude_deg": "-80.970183", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Newton Falls", + "scheduled_service": "no", + "local_code": "41N" + }, + { + "id": "18763", + "ident": "K41U", + "type": "small_airport", + "name": "Manti-Ephraim Airport", + "latitude_deg": "39.32910156", + "longitude_deg": "-111.6149979", + "elevation_ft": "5500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Manti", + "scheduled_service": "no", + "gps_code": "41U", + "iata_code": "NTJ", + "local_code": "41U" + }, + { + "id": "18764", + "ident": "K42A", + "type": "small_airport", + "name": "Melbourne Municipal John E Miller Field", + "latitude_deg": "36.07099915", + "longitude_deg": "-91.83010101", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Melbourne", + "scheduled_service": "no", + "gps_code": "K42A", + "local_code": "42A" + }, + { + "id": "18765", + "ident": "K42I", + "type": "small_airport", + "name": "Parr Airport", + "latitude_deg": "40.00699996948242", + "longitude_deg": "-82.01239776611328", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Zanesville", + "scheduled_service": "no", + "gps_code": "K42I", + "local_code": "42I" + }, + { + "id": "18766", + "ident": "K42J", + "type": "small_airport", + "name": "Keystone Heights Airport", + "latitude_deg": "29.8447", + "longitude_deg": "-82.047501", + "elevation_ft": "196", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Keystone Heights", + "scheduled_service": "no", + "local_code": "42J", + "home_link": "https://keystoneairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Keystone_Heights_Airport", + "keywords": "Keystone Airpark" + }, + { + "id": "18767", + "ident": "K42M", + "type": "small_airport", + "name": "Thayer Memorial Airport", + "latitude_deg": "36.522301", + "longitude_deg": "-91.571999", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Thayer", + "scheduled_service": "no", + "gps_code": "K42M", + "local_code": "42M" + }, + { + "id": "18768", + "ident": "K42S", + "type": "small_airport", + "name": "Poplar Airport", + "latitude_deg": "48.11600112915039", + "longitude_deg": "-105.18199920654297", + "elevation_ft": "2005", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Poplar", + "scheduled_service": "no", + "gps_code": "K42S", + "local_code": "42S" + }, + { + "id": "18769", + "ident": "K42U", + "type": "small_airport", + "name": "Morgan County Airport", + "latitude_deg": "41.148799896240234", + "longitude_deg": "-111.76699829101562", + "elevation_ft": "5020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Morgan", + "scheduled_service": "no", + "gps_code": "K42U", + "local_code": "42U" + }, + { + "id": "18770", + "ident": "K42V", + "type": "small_airport", + "name": "Jones Airport", + "latitude_deg": "40.05799865722656", + "longitude_deg": "-101.5469970703125", + "elevation_ft": "3126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Benkelman", + "scheduled_service": "no", + "gps_code": "K42V", + "local_code": "42V" + }, + { + "id": "18771", + "ident": "K43", + "type": "small_airport", + "name": "Unionville Municipal Airport", + "latitude_deg": "40.54019928", + "longitude_deg": "-93.02549744", + "elevation_ft": "1046", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Unionville", + "scheduled_service": "no", + "gps_code": "K43", + "local_code": "K43" + }, + { + "id": "18772", + "ident": "K43A", + "type": "small_airport", + "name": "Montgomery County Airport", + "latitude_deg": "35.384097", + "longitude_deg": "-79.790546", + "elevation_ft": "628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Star", + "scheduled_service": "no", + "local_code": "43A" + }, + { + "id": "18773", + "ident": "K43B", + "type": "small_airport", + "name": "Deblois Flight Strip", + "latitude_deg": "44.72639846801758", + "longitude_deg": "-67.9906997680664", + "elevation_ft": "217", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Deblois", + "scheduled_service": "no", + "gps_code": "K43B", + "local_code": "43B" + }, + { + "id": "18774", + "ident": "K43D", + "type": "small_airport", + "name": "Odessa Municipal Airport", + "latitude_deg": "47.347599029541016", + "longitude_deg": "-118.677001953125", + "elevation_ft": "1737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Odessa", + "scheduled_service": "no", + "gps_code": "K43D", + "local_code": "43D" + }, + { + "id": "18775", + "ident": "K43U", + "type": "closed", + "name": "Mount Pleasant Airport", + "latitude_deg": "39.526651", + "longitude_deg": "-111.475978", + "elevation_ft": "5830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Mount Pleasant", + "scheduled_service": "no", + "iata_code": "MSD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mount_Pleasant_Airport_(Utah)", + "keywords": "43U" + }, + { + "id": "18776", + "ident": "K44C", + "type": "small_airport", + "name": "Beloit Airport", + "latitude_deg": "42.497798919677734", + "longitude_deg": "-88.96759796142578", + "elevation_ft": "817", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Beloit", + "scheduled_service": "no", + "gps_code": "K44C", + "local_code": "44C" + }, + { + "id": "18778", + "ident": "K44N", + "type": "small_airport", + "name": "Sky Acres Airport", + "latitude_deg": "41.70740128", + "longitude_deg": "-73.73799896", + "elevation_ft": "698", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Millbrook", + "scheduled_service": "no", + "gps_code": "44N", + "local_code": "44N" + }, + { + "id": "18779", + "ident": "K44U", + "type": "small_airport", + "name": "Salina Gunnison Airport", + "latitude_deg": "39.029098510699995", + "longitude_deg": "-111.837997437", + "elevation_ft": "5159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Salina", + "scheduled_service": "no", + "gps_code": "44U", + "iata_code": "SBO", + "local_code": "44U", + "home_link": "http://www.gunnisoncity.org/airport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salina-Gunnison_Airport" + }, + { + "id": "18780", + "ident": "K45G", + "type": "small_airport", + "name": "Brighton Airport", + "latitude_deg": "42.569801330566406", + "longitude_deg": "-83.77850341796875", + "elevation_ft": "973", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Brighton", + "scheduled_service": "no", + "gps_code": "K45G", + "local_code": "45G" + }, + { + "id": "18781", + "ident": "K45K", + "type": "small_airport", + "name": "Minneapolis City County Airport", + "latitude_deg": "39.09469985961914", + "longitude_deg": "-97.72059631347656", + "elevation_ft": "1245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Minneapolis", + "scheduled_service": "no", + "gps_code": "K45K", + "local_code": "45K" + }, + { + "id": "18782", + "ident": "K45R", + "type": "small_airport", + "name": "Hawthorne Field", + "latitude_deg": "30.336299896240234", + "longitude_deg": "-94.25749969482422", + "elevation_ft": "71", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kountze/Silsbee", + "scheduled_service": "no", + "gps_code": "K45R", + "local_code": "45R" + }, + { + "id": "18784", + "ident": "K46D", + "type": "small_airport", + "name": "Carrington Municipal Airport", + "latitude_deg": "47.4510994", + "longitude_deg": "-99.15110016", + "elevation_ft": "1607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Carrington", + "scheduled_service": "no", + "gps_code": "K46D", + "local_code": "46D" + }, + { + "id": "18785", + "ident": "K46U", + "type": "small_airport", + "name": "Alpine Airport", + "latitude_deg": "43.184600830078125", + "longitude_deg": "-111.04199981689453", + "elevation_ft": "5634", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Alpine", + "scheduled_service": "no", + "gps_code": "K46U", + "local_code": "46U" + }, + { + "id": "18786", + "ident": "K47A", + "type": "small_airport", + "name": "Cherokee County Regional Airport", + "latitude_deg": "34.3106", + "longitude_deg": "-84.423897", + "elevation_ft": "1219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Canton", + "scheduled_service": "no", + "gps_code": "KCNI", + "local_code": "CNI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cherokee_County_Airport_(Georgia)", + "keywords": "47A" + }, + { + "id": "18787", + "ident": "K47K", + "type": "small_airport", + "name": "Moundridge Municipal Airport", + "latitude_deg": "38.20909881591797", + "longitude_deg": "-97.50270080566406", + "elevation_ft": "1489", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Moundridge", + "scheduled_service": "no", + "gps_code": "K47K", + "local_code": "47K" + }, + { + "id": "18788", + "ident": "K47N", + "type": "small_airport", + "name": "Central Jersey Regional Airport", + "latitude_deg": "40.5243988037", + "longitude_deg": "-74.59839630130001", + "elevation_ft": "86", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Manville", + "scheduled_service": "no", + "gps_code": "47N", + "iata_code": "JVI", + "local_code": "47N", + "home_link": "http://www.centraljerseyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Central_Jersey_Regional_Airport", + "keywords": "Kupper Airport" + }, + { + "id": "18789", + "ident": "K47V", + "type": "small_airport", + "name": "Curtis Municipal Airport", + "latitude_deg": "40.63750076", + "longitude_deg": "-100.4710007", + "elevation_ft": "2678", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Curtis", + "scheduled_service": "no", + "gps_code": "K47V", + "local_code": "47V" + }, + { + "id": "18790", + "ident": "K48A", + "type": "small_airport", + "name": "Cochran Airport", + "latitude_deg": "32.3993988", + "longitude_deg": "-83.27590179", + "elevation_ft": "377", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Cochran", + "scheduled_service": "no", + "gps_code": "K48A", + "local_code": "48A" + }, + { + "id": "18791", + "ident": "K48D", + "type": "small_airport", + "name": "Clare Municipal Airport", + "latitude_deg": "43.83449935913086", + "longitude_deg": "-84.74019622802734", + "elevation_ft": "857", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Clare", + "scheduled_service": "no", + "gps_code": "K48D", + "local_code": "48D" + }, + { + "id": "18792", + "ident": "K48I", + "type": "small_airport", + "name": "Braxton County Airport", + "latitude_deg": "38.68700027", + "longitude_deg": "-80.65180206", + "elevation_ft": "1276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Sutton", + "scheduled_service": "no", + "gps_code": "K48I", + "local_code": "48I" + }, + { + "id": "18793", + "ident": "K48K", + "type": "small_airport", + "name": "Ness City Municipal Airport", + "latitude_deg": "38.471099853515625", + "longitude_deg": "-99.90809631347656", + "elevation_ft": "2308", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Ness City", + "scheduled_service": "no", + "gps_code": "K48K", + "local_code": "48K" + }, + { + "id": "18794", + "ident": "K48S", + "type": "small_airport", + "name": "Harlem Airport", + "latitude_deg": "48.56610107421875", + "longitude_deg": "-108.77300262451172", + "elevation_ft": "2643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Harlem", + "scheduled_service": "no", + "gps_code": "K48S", + "local_code": "48S" + }, + { + "id": "18796", + "ident": "K49A", + "type": "small_airport", + "name": "Gilmer County Airport", + "latitude_deg": "34.627899169921875", + "longitude_deg": "-84.52490234375", + "elevation_ft": "1486", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Ellijay", + "scheduled_service": "no", + "gps_code": "K49A", + "local_code": "49A" + }, + { + "id": "18797", + "ident": "K49B", + "type": "small_airport", + "name": "Sturgis Municipal Airport", + "latitude_deg": "44.417999267578125", + "longitude_deg": "-103.375", + "elevation_ft": "3243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Sturgis", + "scheduled_service": "no", + "gps_code": "K49B", + "local_code": "49B" + }, + { + "id": "18799", + "ident": "K49R", + "type": "small_airport", + "name": "Real County Airport", + "latitude_deg": "29.745500564575195", + "longitude_deg": "-99.76090240478516", + "elevation_ft": "1640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Leakey", + "scheduled_service": "no", + "gps_code": "K49R", + "local_code": "49R" + }, + { + "id": "18800", + "ident": "K49X", + "type": "small_airport", + "name": "Chemehuevi Valley Airport", + "latitude_deg": "34.528805", + "longitude_deg": "-114.431999", + "elevation_ft": "631", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Havasu Lake", + "scheduled_service": "no", + "gps_code": "K49X", + "local_code": "49X", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chemehuevi_Valley_Airport" + }, + { + "id": "18801", + "ident": "K4A0", + "type": "small_airport", + "name": "Berry Hill Airport", + "latitude_deg": "33.535567", + "longitude_deg": "-84.179081", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Stockbridge", + "scheduled_service": "no", + "gps_code": "7GA7", + "local_code": "7GA7", + "keywords": "4AO" + }, + { + "id": "18802", + "ident": "K4A4", + "type": "small_airport", + "name": "Polk County Airport- Cornelius Moore Field", + "latitude_deg": "34.018699646", + "longitude_deg": "-85.1464996338", + "elevation_ft": "974", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Cedartown", + "scheduled_service": "no", + "gps_code": "K4A4", + "local_code": "4A4" + }, + { + "id": "18803", + "ident": "K4A5", + "type": "small_airport", + "name": "Searcy County Airport", + "latitude_deg": "35.89699935913086", + "longitude_deg": "-92.65899658203125", + "elevation_ft": "963", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Marshall", + "scheduled_service": "no", + "gps_code": "K4A5", + "local_code": "4A5" + }, + { + "id": "18804", + "ident": "K4A6", + "type": "small_airport", + "name": "Scottsboro Municipal Word Field", + "latitude_deg": "34.68870163", + "longitude_deg": "-86.00589752", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Scottsboro", + "scheduled_service": "no", + "gps_code": "K4A6", + "local_code": "4A6" + }, + { + "id": "18805", + "ident": "K4A7", + "type": "small_airport", + "name": "Atlanta Speedway Airport", + "latitude_deg": "33.389876", + "longitude_deg": "-84.331011", + "elevation_ft": "882", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Hampton", + "scheduled_service": "no", + "gps_code": "KHMP", + "local_code": "HMP", + "home_link": "http://www.co.henry.ga.us/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atlanta_Speedway_Airport", + "keywords": "4A7, Atlanta South Regional Airport, Clayton County Airport – Tara Field, Bear Creek Airport, Henry County Airport" + }, + { + "id": "18806", + "ident": "K4A9", + "type": "small_airport", + "name": "Isbell Field", + "latitude_deg": "34.47370147705078", + "longitude_deg": "-85.72139739990234", + "elevation_ft": "877", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Payne", + "scheduled_service": "no", + "gps_code": "K4A9", + "local_code": "4A9" + }, + { + "id": "18807", + "ident": "K4B6", + "type": "small_airport", + "name": "Ticonderoga Municipal Airport", + "latitude_deg": "43.87730026", + "longitude_deg": "-73.4131012", + "elevation_ft": "273", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Ticonderoga", + "scheduled_service": "no", + "gps_code": "K4B6", + "local_code": "4B6" + }, + { + "id": "18808", + "ident": "K4B7", + "type": "small_airport", + "name": "Schroon Lake Airport", + "latitude_deg": "43.857886", + "longitude_deg": "-73.740577", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Schroon Lake", + "scheduled_service": "no", + "local_code": "4B7" + }, + { + "id": "18809", + "ident": "K4B8", + "type": "small_airport", + "name": "Robertson Field", + "latitude_deg": "41.690399169921875", + "longitude_deg": "-72.86479949951172", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Plainville", + "scheduled_service": "no", + "gps_code": "K4B8", + "local_code": "4B8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Robertson_Field" + }, + { + "id": "18810", + "ident": "K4C8", + "type": "small_airport", + "name": "Albia Municipal Airport", + "latitude_deg": "40.99449920654297", + "longitude_deg": "-92.76300048828125", + "elevation_ft": "963", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Albia", + "scheduled_service": "no", + "gps_code": "K4C8", + "local_code": "4C8" + }, + { + "id": "18811", + "ident": "K4D0", + "type": "small_airport", + "name": "Abrams Municipal Airport", + "latitude_deg": "42.775202", + "longitude_deg": "-84.736378", + "elevation_ft": "842", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Grand Ledge", + "scheduled_service": "no", + "gps_code": "K4D0", + "local_code": "4D0", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abrams_Municipal_Airport" + }, + { + "id": "18812", + "ident": "K4E7", + "type": "small_airport", + "name": "Ellendale Municipal Airport", + "latitude_deg": "46.01250076293945", + "longitude_deg": "-98.51290130615234", + "elevation_ft": "1455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Ellendale", + "scheduled_service": "no", + "gps_code": "K4E7", + "local_code": "4.00E+07" + }, + { + "id": "18813", + "ident": "K4F2", + "type": "small_airport", + "name": "Panola County Sharpe Field", + "latitude_deg": "32.176102", + "longitude_deg": "-94.298798", + "elevation_ft": "248", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Carthage", + "scheduled_service": "no", + "local_code": "4F2" + }, + { + "id": "18814", + "ident": "K4F7", + "type": "small_airport", + "name": "Kizer Field", + "latitude_deg": "33.80390167236328", + "longitude_deg": "-93.36219787597656", + "elevation_ft": "319", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Prescott", + "scheduled_service": "no", + "gps_code": "K4F7", + "local_code": "4F7" + }, + { + "id": "18815", + "ident": "K4F8", + "type": "small_airport", + "name": "Wilson Airport", + "latitude_deg": "33.443599700927734", + "longitude_deg": "-93.0541000366211", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Stephens", + "scheduled_service": "no", + "gps_code": "K4F8", + "local_code": "4F8" + }, + { + "id": "18816", + "ident": "K4F9", + "type": "small_airport", + "name": "La Moure Rott Municipal Airport", + "latitude_deg": "46.34659957885742", + "longitude_deg": "-98.28369903564453", + "elevation_ft": "1310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "La Moure", + "scheduled_service": "no", + "gps_code": "K4F9", + "local_code": "4F9" + }, + { + "id": "18817", + "ident": "K4G4", + "type": "small_airport", + "name": "Youngstown Elser Metro Airport", + "latitude_deg": "40.9618", + "longitude_deg": "-80.677299", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Youngstown", + "scheduled_service": "no", + "local_code": "4G4" + }, + { + "id": "18818", + "ident": "K4G5", + "type": "small_airport", + "name": "Monroe County Airport", + "latitude_deg": "39.778999", + "longitude_deg": "-81.102798", + "elevation_ft": "1197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Woodsfield", + "scheduled_service": "no", + "gps_code": "K4G5", + "local_code": "4G5" + }, + { + "id": "18819", + "ident": "K4G6", + "type": "small_airport", + "name": "Hornell Municipal Airport", + "latitude_deg": "42.382139", + "longitude_deg": "-77.68211", + "elevation_ft": "1219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hornell", + "scheduled_service": "no", + "gps_code": "KHTF", + "local_code": "HTF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hornell_Municipal_Airport", + "keywords": "4G6" + }, + { + "id": "18820", + "ident": "K4G8", + "type": "small_airport", + "name": "Columbia Airport", + "latitude_deg": "41.31880187988281", + "longitude_deg": "-81.96019744873047", + "elevation_ft": "813", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbia Station", + "scheduled_service": "no", + "gps_code": "K4G8", + "local_code": "4G8" + }, + { + "id": "18821", + "ident": "K4I0", + "type": "closed", + "name": "Mingo County Airport", + "latitude_deg": "37.687599", + "longitude_deg": "-82.261002", + "elevation_ft": "1575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Williamson", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mingo_County_Airport", + "keywords": "4I0" + }, + { + "id": "18822", + "ident": "K4I3", + "type": "small_airport", + "name": "Knox County Airport", + "latitude_deg": "40.32870102", + "longitude_deg": "-82.52380371", + "elevation_ft": "1191", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "K4I3", + "local_code": "4I3" + }, + { + "id": "18823", + "ident": "K4I7", + "type": "small_airport", + "name": "Putnam County Airport", + "latitude_deg": "39.630299", + "longitude_deg": "-86.813904", + "elevation_ft": "842", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Greencastle", + "scheduled_service": "no", + "gps_code": "KGPC", + "local_code": "GPC", + "home_link": "http://putnamcountyregionalairport.com/index.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Putnam_County_Airport", + "keywords": "4I7" + }, + { + "id": "18824", + "ident": "K4I9", + "type": "small_airport", + "name": "Morrow County Airport", + "latitude_deg": "40.524502", + "longitude_deg": "-82.850098", + "elevation_ft": "1085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mount Gilead", + "scheduled_service": "no", + "gps_code": "K4I9", + "local_code": "4I9" + }, + { + "id": "18825", + "ident": "K4J1", + "type": "small_airport", + "name": "Brantley County Airport", + "latitude_deg": "31.207399368286133", + "longitude_deg": "-81.90579986572266", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Nahunta", + "scheduled_service": "no", + "gps_code": "K4J1", + "local_code": "4J1" + }, + { + "id": "18826", + "ident": "K4J2", + "type": "small_airport", + "name": "Berrien County Airport", + "latitude_deg": "31.212601", + "longitude_deg": "-83.226303", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Nashville", + "scheduled_service": "no", + "gps_code": "K4J2", + "local_code": "4J2" + }, + { + "id": "18827", + "ident": "K4J5", + "type": "small_airport", + "name": "Quitman Brooks County Airport", + "latitude_deg": "30.805799", + "longitude_deg": "-83.586502", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Quitman", + "scheduled_service": "no", + "local_code": "4J5" + }, + { + "id": "18828", + "ident": "K4J6", + "type": "small_airport", + "name": "St Marys Airport", + "latitude_deg": "30.75300026", + "longitude_deg": "-81.55879974", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "St Marys", + "scheduled_service": "no", + "gps_code": "K4J6", + "local_code": "4J6" + }, + { + "id": "18829", + "ident": "K4J8", + "type": "small_airport", + "name": "Treutlen County Airport", + "latitude_deg": "32.387699127197266", + "longitude_deg": "-82.5636978149414", + "elevation_ft": "345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Soperton", + "scheduled_service": "no", + "gps_code": "K4J8", + "local_code": "4J8" + }, + { + "id": "18830", + "ident": "K4K3", + "type": "small_airport", + "name": "Lexington Municipal Airport", + "latitude_deg": "39.209801", + "longitude_deg": "-93.928001", + "elevation_ft": "691", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "MU97", + "local_code": "MU97", + "keywords": "4K3" + }, + { + "id": "18831", + "ident": "K4K6", + "type": "small_airport", + "name": "Bloomfield Municipal Airport", + "latitude_deg": "40.73210144042969", + "longitude_deg": "-92.42829895019531", + "elevation_ft": "888", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Bloomfield", + "scheduled_service": "no", + "gps_code": "K4K6", + "local_code": "4K6" + }, + { + "id": "18832", + "ident": "K4M1", + "type": "small_airport", + "name": "Carroll County Airport", + "latitude_deg": "36.38130188", + "longitude_deg": "-93.62460327", + "elevation_ft": "1205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Berryville", + "scheduled_service": "no", + "gps_code": "K4M1", + "local_code": "4M1" + }, + { + "id": "18833", + "ident": "K4M2", + "type": "small_airport", + "name": "Booneville Municipal Airport", + "latitude_deg": "35.149534", + "longitude_deg": "-93.863545", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Booneville", + "scheduled_service": "no", + "local_code": "4M2", + "home_link": "http://www.boonevilleairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Booneville_Municipal_Airport" + }, + { + "id": "18834", + "ident": "K4M3", + "type": "small_airport", + "name": "Carlisle Municipal Airport", + "latitude_deg": "34.80820084", + "longitude_deg": "-91.71209717", + "elevation_ft": "241", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Carlisle", + "scheduled_service": "no", + "gps_code": "K4M3", + "local_code": "4M3" + }, + { + "id": "18836", + "ident": "K4M7", + "type": "small_airport", + "name": "Russellville Logan County Airport", + "latitude_deg": "36.79959", + "longitude_deg": "-86.810875", + "elevation_ft": "689", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Russellville", + "scheduled_service": "no", + "gps_code": "K4M7", + "local_code": "4M7" + }, + { + "id": "18837", + "ident": "K4M9", + "type": "small_airport", + "name": "Corning Municipal Airport", + "latitude_deg": "36.40420150756836", + "longitude_deg": "-90.64790344238281", + "elevation_ft": "293", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Corning", + "scheduled_service": "no", + "gps_code": "K4M9", + "local_code": "4M9" + }, + { + "id": "18838", + "ident": "K4N1", + "type": "small_airport", + "name": "Greenwood Lake Airport", + "latitude_deg": "41.128200531", + "longitude_deg": "-74.34670257570001", + "elevation_ft": "791", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "West Milford", + "scheduled_service": "no", + "gps_code": "4N1", + "local_code": "4N1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greenwood_Lake_Airport" + }, + { + "id": "18840", + "ident": "K4O4", + "type": "small_airport", + "name": "McCurtain County Regional Airport", + "latitude_deg": "33.909401", + "longitude_deg": "-94.859398", + "elevation_ft": "472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Idabel", + "scheduled_service": "no", + "local_code": "4O4" + }, + { + "id": "18841", + "ident": "K4O5", + "type": "small_airport", + "name": "Cherokee Municipal Airport", + "latitude_deg": "36.787998", + "longitude_deg": "-98.358498", + "elevation_ft": "1177", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Cherokee", + "scheduled_service": "no", + "local_code": "4O5", + "keywords": "OK60" + }, + { + "id": "18842", + "ident": "K4P3", + "type": "small_airport", + "name": "Flandreau Municipal Airport", + "latitude_deg": "44.003897", + "longitude_deg": "-96.593102", + "elevation_ft": "1645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Flandreau", + "scheduled_service": "no", + "local_code": "4P3", + "keywords": "SD18" + }, + { + "id": "18843", + "ident": "K4R1", + "type": "small_airport", + "name": "I H Bass Jr Memorial Airport", + "latitude_deg": "31.015499114990234", + "longitude_deg": "-89.48259735107422", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Lumberton", + "scheduled_service": "no", + "gps_code": "K4R1", + "local_code": "4R1" + }, + { + "id": "18844", + "ident": "K4R3", + "type": "small_airport", + "name": "Jackson Municipal Airport", + "latitude_deg": "31.4720993", + "longitude_deg": "-87.8946991", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "K4R3", + "local_code": "4R3" + }, + { + "id": "18845", + "ident": "K4R4", + "type": "small_airport", + "name": "H L Sonny Callahan Airport", + "latitude_deg": "30.460501", + "longitude_deg": "-87.876999", + "elevation_ft": "91", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fairhope", + "scheduled_service": "no", + "gps_code": "KCQF", + "local_code": "CQF", + "home_link": "https://www.fairhopeal.gov/services/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/H._L._Sonny_Callahan_Airport", + "keywords": "4R4" + }, + { + "id": "18846", + "ident": "K4R5", + "type": "small_airport", + "name": "Madeline Island Airport", + "latitude_deg": "46.788700103759766", + "longitude_deg": "-90.75869750976562", + "elevation_ft": "649", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "La Pointe", + "scheduled_service": "no", + "gps_code": "K4R5", + "local_code": "4R5" + }, + { + "id": "18847", + "ident": "K4R7", + "type": "small_airport", + "name": "Eunice Airport", + "latitude_deg": "30.466299057007", + "longitude_deg": "-92.423797607422", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Eunice", + "scheduled_service": "no", + "gps_code": "4R7", + "iata_code": "UCE", + "local_code": "4R7" + }, + { + "id": "18848", + "ident": "K4R9", + "type": "small_airport", + "name": "Dauphin Island Airport", + "latitude_deg": "30.2605", + "longitude_deg": "-88.127502", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Dauphin Island", + "scheduled_service": "no", + "gps_code": "K4R9", + "local_code": "4R9" + }, + { + "id": "18849", + "ident": "K4S1", + "type": "small_airport", + "name": "Gold Beach Municipal Airport", + "latitude_deg": "42.41339874", + "longitude_deg": "-124.4240036", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Gold Beach", + "scheduled_service": "no", + "gps_code": "K4S1", + "iata_code": "GOL", + "local_code": "4S1", + "home_link": "http://www.portofgoldbeach.com/Airport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gold_Beach_Municipal_Airport" + }, + { + "id": "18850", + "ident": "K4S2", + "type": "small_airport", + "name": "Ken Jernstedt Airfield", + "latitude_deg": "45.67259979", + "longitude_deg": "-121.5360031", + "elevation_ft": "631", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Hood River", + "scheduled_service": "no", + "gps_code": "K4S2", + "local_code": "4S2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ken_Jernstedt_Airfield" + }, + { + "id": "18851", + "ident": "K4S3", + "type": "small_airport", + "name": "Joseph State Airport", + "latitude_deg": "45.3596000671", + "longitude_deg": "-117.253997803", + "elevation_ft": "4121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Joseph", + "scheduled_service": "no", + "gps_code": "KJSY", + "local_code": "JSY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Joseph_State_Airport" + }, + { + "id": "18852", + "ident": "K4S9", + "type": "small_airport", + "name": "Portland Mulino Airport", + "latitude_deg": "45.21630096435547", + "longitude_deg": "-122.58999633789062", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland-Mulino", + "scheduled_service": "no", + "gps_code": "K4S9", + "local_code": "4S9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Portland-Mulino_Airport" + }, + { + "id": "18853", + "ident": "K4SD", + "type": "small_airport", + "name": "Reno-Stead Airport", + "latitude_deg": "39.6674", + "longitude_deg": "-119.875999", + "elevation_ft": "5050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Reno", + "scheduled_service": "no", + "gps_code": "KRTS", + "local_code": "RTS", + "home_link": "http://renoairport.com/reno-stead", + "wikipedia_link": "https://en.wikipedia.org/wiki/Reno_Stead_Airport", + "keywords": "4SD" + }, + { + "id": "18854", + "ident": "K4T2", + "type": "small_airport", + "name": "Kenneth Copeland Airport", + "latitude_deg": "32.977298736572266", + "longitude_deg": "-97.4884033203125", + "elevation_ft": "688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "K4T2", + "local_code": "4T2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kenneth_Copeland_Airport" + }, + { + "id": "18855", + "ident": "K4U6", + "type": "small_airport", + "name": "Circle Town County Airport", + "latitude_deg": "47.41859817504883", + "longitude_deg": "-105.56199645996094", + "elevation_ft": "2426", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Circle", + "scheduled_service": "no", + "gps_code": "K4U6", + "local_code": "4U6" + }, + { + "id": "18856", + "ident": "K4U9", + "type": "small_airport", + "name": "Dell Flight Strip", + "latitude_deg": "44.735699", + "longitude_deg": "-112.720001", + "elevation_ft": "6007", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Dell", + "scheduled_service": "no", + "gps_code": "K4U9", + "local_code": "4U9" + }, + { + "id": "18857", + "ident": "K4V0", + "type": "small_airport", + "name": "Rangely Airport", + "latitude_deg": "40.09400177", + "longitude_deg": "-108.763000488", + "elevation_ft": "5275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Rangely", + "scheduled_service": "no", + "gps_code": "4V0", + "local_code": "4V0" + }, + { + "id": "18858", + "ident": "K4V1", + "type": "small_airport", + "name": "Spanish Peaks Airfield", + "latitude_deg": "37.696602", + "longitude_deg": "-104.783997", + "elevation_ft": "6047", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Walsenburg", + "scheduled_service": "no", + "gps_code": "K4V1", + "local_code": "4V1" + }, + { + "id": "18859", + "ident": "K4V4", + "type": "small_airport", + "name": "Northwood Municipal Vince Field", + "latitude_deg": "47.7242012", + "longitude_deg": "-97.5904007", + "elevation_ft": "1117", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Northwood", + "scheduled_service": "no", + "gps_code": "K4V4", + "local_code": "4V4" + }, + { + "id": "18860", + "ident": "K4V9", + "type": "small_airport", + "name": "Antelope County Airport", + "latitude_deg": "42.11220169", + "longitude_deg": "-98.03869629", + "elevation_ft": "1774", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Neligh", + "scheduled_service": "no", + "gps_code": "K4V9", + "local_code": "4V9" + }, + { + "id": "18861", + "ident": "K4X4", + "type": "small_airport", + "name": "Wessington Springs Airport", + "latitude_deg": "44.06100082397461", + "longitude_deg": "-98.53089904785156", + "elevation_ft": "1546", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Wessington Springs", + "scheduled_service": "no", + "gps_code": "K4X4", + "local_code": "4X4" + }, + { + "id": "18862", + "ident": "K4Y4", + "type": "small_airport", + "name": "Lakes of the North Airport", + "latitude_deg": "44.912498474121094", + "longitude_deg": "-84.87640380859375", + "elevation_ft": "1286", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Gaylord", + "scheduled_service": "no", + "gps_code": "K4Y4", + "local_code": "4Y4" + }, + { + "id": "18863", + "ident": "K50", + "type": "small_airport", + "name": "Cook Airfield Inc Airport", + "latitude_deg": "37.56669998168945", + "longitude_deg": "-97.16699981689453", + "elevation_ft": "1345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Derby", + "scheduled_service": "no", + "gps_code": "K50", + "local_code": "K50" + }, + { + "id": "18864", + "ident": "K50D", + "type": "small_airport", + "name": "Iron County Airport", + "latitude_deg": "46.00910186767578", + "longitude_deg": "-88.2739028930664", + "elevation_ft": "1340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Crystal Falls", + "scheduled_service": "no", + "gps_code": "K50D", + "local_code": "50D" + }, + { + "id": "18865", + "ident": "K50F", + "type": "small_airport", + "name": "Bourland Field", + "latitude_deg": "32.5817985534668", + "longitude_deg": "-97.5907974243164", + "elevation_ft": "873", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "K50F", + "local_code": "50F" + }, + { + "id": "18866", + "ident": "K50I", + "type": "small_airport", + "name": "Kentland Municipal Airport", + "latitude_deg": "40.758733", + "longitude_deg": "-87.429457", + "elevation_ft": "698", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Kentland", + "scheduled_service": "no", + "gps_code": "K50I", + "iata_code": "KKT", + "local_code": "50I", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kentland_Municipal_Airport" + }, + { + "id": "18868", + "ident": "K50R", + "type": "small_airport", + "name": "Lockhart Municipal Airport", + "latitude_deg": "29.850299835205078", + "longitude_deg": "-97.67240142822266", + "elevation_ft": "532", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lockhart", + "scheduled_service": "no", + "gps_code": "K50R", + "local_code": "50R" + }, + { + "id": "18869", + "ident": "K51A", + "type": "small_airport", + "name": "Hawkinsville Pulaski County Airport", + "latitude_deg": "32.283676", + "longitude_deg": "-83.438164", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Hawkinsville", + "scheduled_service": "no", + "gps_code": "K51A", + "local_code": "51A" + }, + { + "id": "18870", + "ident": "K51D", + "type": "small_airport", + "name": "Edgeley Municipal Airport", + "latitude_deg": "46.34859848", + "longitude_deg": "-98.73560333", + "elevation_ft": "1601", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Edgeley", + "scheduled_service": "no", + "gps_code": "K51D", + "local_code": "51D" + }, + { + "id": "18871", + "ident": "K51J", + "type": "small_airport", + "name": "Lake City Municipal CJ Evans Field", + "latitude_deg": "33.853599548300004", + "longitude_deg": "-79.76809692379999", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Lake City", + "scheduled_service": "no", + "gps_code": "K51J", + "local_code": "51J" + }, + { + "id": "18872", + "ident": "K51R", + "type": "small_airport", + "name": "Madisonville Municipal Airport", + "latitude_deg": "30.912799835205078", + "longitude_deg": "-95.9520034790039", + "elevation_ft": "287", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Madisonville", + "scheduled_service": "no", + "gps_code": "K51R", + "local_code": "51R" + }, + { + "id": "18873", + "ident": "K52A", + "type": "small_airport", + "name": "Madison Municipal Airport", + "latitude_deg": "33.6120986938", + "longitude_deg": "-83.46040344240001", + "elevation_ft": "694", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "52A", + "local_code": "52A" + }, + { + "id": "18874", + "ident": "K52F", + "type": "small_airport", + "name": "Northwest Regional Airport", + "latitude_deg": "33.051575", + "longitude_deg": "-97.232051", + "elevation_ft": "643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Roanoke", + "scheduled_service": "no", + "local_code": "52F" + }, + { + "id": "18875", + "ident": "K52J", + "type": "small_airport", + "name": "Lee County Butters Field", + "latitude_deg": "34.244499", + "longitude_deg": "-80.236", + "elevation_ft": "211", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Bishopville", + "scheduled_service": "no", + "gps_code": "K52J", + "local_code": "52J" + }, + { + "id": "18876", + "ident": "K53A", + "type": "small_airport", + "name": "Dr. C P Savage Sr. Airport", + "latitude_deg": "32.301998138399995", + "longitude_deg": "-84.00749969479999", + "elevation_ft": "337", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Montezuma", + "scheduled_service": "no", + "gps_code": "K53A", + "local_code": "53A" + }, + { + "id": "18877", + "ident": "K54F", + "type": "small_airport", + "name": "Robert Lee Airport", + "latitude_deg": "31.881799697875977", + "longitude_deg": "-100.54000091552734", + "elevation_ft": "1922", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Robert Lee", + "scheduled_service": "no", + "gps_code": "K54F", + "local_code": "54F" + }, + { + "id": "18878", + "ident": "K54J", + "type": "small_airport", + "name": "Defuniak Springs Airport", + "latitude_deg": "30.731300354003906", + "longitude_deg": "-86.15160369873047", + "elevation_ft": "289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Defuniak Springs", + "scheduled_service": "no", + "gps_code": "K54J", + "local_code": "54J" + }, + { + "id": "18879", + "ident": "K54T", + "type": "small_airport", + "name": "RWJ Airpark", + "latitude_deg": "29.7617", + "longitude_deg": "-94.846497", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Baytown", + "scheduled_service": "no", + "gps_code": "K54T", + "local_code": "54T", + "home_link": "https://rwjairpark.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RWJ_Airpark", + "keywords": "54TX" + }, + { + "id": "18880", + "ident": "K55", + "type": "small_airport", + "name": "Thompson Pass Airport", + "latitude_deg": "61.177299", + "longitude_deg": "-145.688006", + "elevation_ft": "2080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Valdez", + "scheduled_service": "no", + "local_code": "K55", + "keywords": "AK55" + }, + { + "id": "18881", + "ident": "K55J", + "type": "small_airport", + "name": "Fernandina Beach Municipal Airport", + "latitude_deg": "30.611799", + "longitude_deg": "-81.461197", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fernandina Beach", + "scheduled_service": "no", + "gps_code": "KFHB", + "local_code": "FHB", + "home_link": "http://www.fbfl.us/index.aspx?NID=66", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fernandina_Beach_Municipal_Airport", + "keywords": "55J" + }, + { + "id": "18882", + "ident": "K55K", + "type": "small_airport", + "name": "Oxford Municipal Airport", + "latitude_deg": "37.268732", + "longitude_deg": "-97.093375", + "elevation_ft": "1189", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Oxford", + "scheduled_service": "no", + "local_code": "55K" + }, + { + "id": "18883", + "ident": "K55M", + "type": "small_airport", + "name": "Star City Municipal Airport", + "latitude_deg": "33.92610168457031", + "longitude_deg": "-91.87740325927734", + "elevation_ft": "398", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Star City", + "scheduled_service": "no", + "gps_code": "K55M", + "local_code": "55M" + }, + { + "id": "18884", + "ident": "K55Y", + "type": "small_airport", + "name": "Rushford Municipal Airport - Robert W Bunke Field", + "latitude_deg": "43.8158", + "longitude_deg": "-91.830101", + "elevation_ft": "1211", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Rushford", + "scheduled_service": "no", + "local_code": "55Y", + "home_link": "http://www.rushford.govoffice.com/index.asp?SEC=E4507E08-19A6-48C3-B18E-862D748FF6CB&DE=66036454-0F79-4486-AA7A-E3D9801C3CB3&Typ" + }, + { + "id": "18885", + "ident": "K56D", + "type": "small_airport", + "name": "Wyandot County Airport", + "latitude_deg": "40.883399963378906", + "longitude_deg": "-83.31449890136719", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Upper Sandusky", + "scheduled_service": "no", + "gps_code": "K56D", + "local_code": "56D" + }, + { + "id": "18886", + "ident": "K56F", + "type": "small_airport", + "name": "Fisher County Airport", + "latitude_deg": "32.825699", + "longitude_deg": "-100.415001", + "elevation_ft": "1941", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rotan", + "scheduled_service": "no", + "local_code": "56F" + }, + { + "id": "18887", + "ident": "K57C", + "type": "small_airport", + "name": "East Troy Municipal Airport", + "latitude_deg": "42.79719924926758", + "longitude_deg": "-88.37259674072266", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "East Troy", + "scheduled_service": "no", + "gps_code": "K57C", + "local_code": "57C" + }, + { + "id": "18888", + "ident": "K57S", + "type": "small_airport", + "name": "Troy Airport", + "latitude_deg": "48.480201721191406", + "longitude_deg": "-115.90399932861328", + "elevation_ft": "2017", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "K57S", + "local_code": "57S" + }, + { + "id": "18889", + "ident": "K58M", + "type": "small_airport", + "name": "Cecil County Airport", + "latitude_deg": "39.57419967651367", + "longitude_deg": "-75.86979675292969", + "elevation_ft": "106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Elkton", + "scheduled_service": "no", + "gps_code": "K58M", + "local_code": "58M" + }, + { + "id": "18890", + "ident": "K5A1", + "type": "small_airport", + "name": "Norwalk Huron County Airport", + "latitude_deg": "41.24480056762695", + "longitude_deg": "-82.55120086669922", + "elevation_ft": "852", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Norwalk", + "scheduled_service": "no", + "gps_code": "K5A1", + "local_code": "5A1" + }, + { + "id": "18891", + "ident": "K5A4", + "type": "small_airport", + "name": "Okolona Municipal-Richard Stovall Field", + "latitude_deg": "34.015800476100004", + "longitude_deg": "-88.7261962891", + "elevation_ft": "335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Okolona", + "scheduled_service": "no", + "gps_code": "K5A4", + "local_code": "5A4" + }, + { + "id": "18892", + "ident": "K5A6", + "type": "small_airport", + "name": "Winona–Montgomery County Airport", + "latitude_deg": "33.4654007", + "longitude_deg": "-89.72920227", + "elevation_ft": "364", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Winona", + "scheduled_service": "no", + "gps_code": "5A6", + "local_code": "5A6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Winona-Montgomery_County_Airport" + }, + { + "id": "18893", + "ident": "K5A9", + "type": "small_airport", + "name": "Roosevelt Memorial Airport", + "latitude_deg": "32.937904", + "longitude_deg": "-84.696467", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Woodbury", + "scheduled_service": "no", + "gps_code": "K5A9", + "local_code": "5A9" + }, + { + "id": "18894", + "ident": "K5B2", + "type": "small_airport", + "name": "Saratoga County Airport", + "latitude_deg": "43.05130005", + "longitude_deg": "-73.86119843", + "elevation_ft": "434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Saratoga Springs", + "scheduled_service": "no", + "gps_code": "K5B2", + "local_code": "5B2" + }, + { + "id": "18895", + "ident": "K5B5", + "type": "small_airport", + "name": "Napoleon Municipal Airport", + "latitude_deg": "46.4944", + "longitude_deg": "-99.760101", + "elevation_ft": "1983", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Napoleon", + "scheduled_service": "no", + "local_code": "5B5" + }, + { + "id": "18896", + "ident": "K5C1", + "type": "small_airport", + "name": "Boerne Stage Field", + "latitude_deg": "29.723899841308594", + "longitude_deg": "-98.6946029663086", + "elevation_ft": "1385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "K5C1", + "local_code": "5C1" + }, + { + "id": "18897", + "ident": "K5C3", + "type": "small_airport", + "name": "Nary National Shefland Field", + "latitude_deg": "47.373603", + "longitude_deg": "-94.798781", + "elevation_ft": "1389", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Nary", + "scheduled_service": "no", + "gps_code": "5MN1", + "local_code": "5MN1", + "keywords": "5C3" + }, + { + "id": "18898", + "ident": "K5C8", + "type": "small_airport", + "name": "Washburn Municipal Airport", + "latitude_deg": "47.3511667", + "longitude_deg": "-101.0258889", + "elevation_ft": "1908", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Washburn", + "scheduled_service": "no", + "local_code": "5C8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Washburn_Municipal_Airport", + "keywords": "ND66" + }, + { + "id": "18899", + "ident": "K5F0", + "type": "small_airport", + "name": "Arcadia Bienville Parish Airport", + "latitude_deg": "32.532016", + "longitude_deg": "-92.952675", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Arcadia", + "scheduled_service": "no", + "gps_code": "K5F0", + "local_code": "5F0" + }, + { + "id": "18900", + "ident": "K5F1", + "type": "small_airport", + "name": "Post Garza County Municipal Airport", + "latitude_deg": "33.201853", + "longitude_deg": "-101.337118", + "elevation_ft": "2545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Post", + "scheduled_service": "no", + "gps_code": "K5F1", + "local_code": "5F1" + }, + { + "id": "18901", + "ident": "K5F4", + "type": "small_airport", + "name": "Homer Municipal Airport", + "latitude_deg": "32.78850173950195", + "longitude_deg": "-93.00370025634766", + "elevation_ft": "244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Homer", + "scheduled_service": "no", + "gps_code": "K5F4", + "local_code": "5F4" + }, + { + "id": "18902", + "ident": "K5G6", + "type": "closed", + "name": "Cherry Springs Airport", + "latitude_deg": "41.6647", + "longitude_deg": "-77.818298", + "elevation_ft": "2330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Coudersport", + "scheduled_service": "no", + "keywords": "5G6" + }, + { + "id": "18903", + "ident": "K5G7", + "type": "small_airport", + "name": "Bluffton Airport", + "latitude_deg": "40.885399", + "longitude_deg": "-83.868599", + "elevation_ft": "851", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bluffton", + "scheduled_service": "no", + "local_code": "5G7" + }, + { + "id": "18904", + "ident": "K5H4", + "type": "small_airport", + "name": "Harvey Municipal Airport", + "latitude_deg": "47.791199", + "longitude_deg": "-99.931702", + "elevation_ft": "1607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Harvey", + "scheduled_service": "no", + "local_code": "5H4", + "keywords": "ND17" + }, + { + "id": "18905", + "ident": "K5I4", + "type": "small_airport", + "name": "Sheridan Airport", + "latitude_deg": "40.17789840698242", + "longitude_deg": "-86.21730041503906", + "elevation_ft": "936", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Sheridan", + "scheduled_service": "no", + "gps_code": "K5I4", + "local_code": "5I4" + }, + { + "id": "18907", + "ident": "K5J9", + "type": "small_airport", + "name": "Twin City Airport", + "latitude_deg": "34.088401794433594", + "longitude_deg": "-78.86489868164062", + "elevation_ft": "99", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Loris", + "scheduled_service": "no", + "gps_code": "K5J9", + "local_code": "5J9" + }, + { + "id": "18908", + "ident": "K5K1", + "type": "small_airport", + "name": "Zelmer Memorial Airpark Inc Airport", + "latitude_deg": "39.41999816894531", + "longitude_deg": "-89.99120330810547", + "elevation_ft": "663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Palmyra", + "scheduled_service": "no", + "gps_code": "K5K1", + "local_code": "5K1" + }, + { + "id": "18910", + "ident": "K5L0", + "type": "small_airport", + "name": "Lakota Municipal Airport", + "latitude_deg": "48.02939987182617", + "longitude_deg": "-98.32530212402344", + "elevation_ft": "1512", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Lakota", + "scheduled_service": "no", + "gps_code": "K5L0", + "local_code": "5L0" + }, + { + "id": "18911", + "ident": "K5M0", + "type": "small_airport", + "name": "Hartselle-Morgan County Regional Airport", + "latitude_deg": "34.4082344444", + "longitude_deg": "-86.9329505556", + "elevation_ft": "628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Hartselle", + "scheduled_service": "no", + "gps_code": "5M0", + "local_code": "5M0" + }, + { + "id": "18912", + "ident": "K5M3", + "type": "small_airport", + "name": "Moultonborough Airport", + "latitude_deg": "43.767859", + "longitude_deg": "-71.387615", + "elevation_ft": "571", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Moultonborough", + "scheduled_service": "no", + "local_code": "4MB", + "home_link": "https://northcountryairbase.com/", + "keywords": "5M3, 53NH, North County Airbase" + }, + { + "id": "18913", + "ident": "K5M4", + "type": "small_airport", + "name": "Fordyce Municipal Airport", + "latitude_deg": "33.845798", + "longitude_deg": "-92.365501", + "elevation_ft": "193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Fordyce", + "scheduled_service": "no", + "local_code": "5M4" + }, + { + "id": "18914", + "ident": "K5M5", + "type": "small_airport", + "name": "Crystal Lake Airport", + "latitude_deg": "36.34360122680664", + "longitude_deg": "-94.4448013305664", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Decatur", + "scheduled_service": "no", + "gps_code": "K5M5", + "local_code": "5M5" + }, + { + "id": "18915", + "ident": "K5M8", + "type": "small_airport", + "name": "Gurdon Lowe Field", + "latitude_deg": "33.92390060424805", + "longitude_deg": "-93.168701171875", + "elevation_ft": "229", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Gurdon", + "scheduled_service": "no", + "gps_code": "K5M8", + "local_code": "5M8" + }, + { + "id": "18916", + "ident": "K5M9", + "type": "small_airport", + "name": "Marion-Crittenden County James C Johnson Regional Airport", + "latitude_deg": "37.336265", + "longitude_deg": "-88.109751", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "KGDA", + "local_code": "GDA", + "keywords": "5M9" + }, + { + "id": "18917", + "ident": "K5N2", + "type": "small_airport", + "name": "Prentice Airport", + "latitude_deg": "45.542999", + "longitude_deg": "-90.279297", + "elevation_ft": "1578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Prentice", + "scheduled_service": "no", + "iata_code": "PRW", + "local_code": "5N2", + "home_link": "http://vil.prentice.wi.gov/departments/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Prentice_Airport", + "keywords": "WI40" + }, + { + "id": "18918", + "ident": "K5N8", + "type": "small_airport", + "name": "Casselton Robert Miller Regional Airport", + "latitude_deg": "46.854000091552734", + "longitude_deg": "-97.20870208740234", + "elevation_ft": "933", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Casselton", + "scheduled_service": "no", + "gps_code": "K5N8", + "local_code": "5N8" + }, + { + "id": "18919", + "ident": "K5P2", + "type": "small_airport", + "name": "Mc Laughlin Municipal Airport", + "latitude_deg": "45.796799", + "longitude_deg": "-100.783997", + "elevation_ft": "2006", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Mc Laughlin", + "scheduled_service": "no", + "local_code": "5P2", + "keywords": "SD28" + }, + { + "id": "18920", + "ident": "K5R1", + "type": "small_airport", + "name": "Roy Wilcox Airport", + "latitude_deg": "31.451799392700195", + "longitude_deg": "-88.19450378417969", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Chatom", + "scheduled_service": "no", + "gps_code": "K5R1", + "local_code": "5R1" + }, + { + "id": "18921", + "ident": "K5R2", + "type": "small_airport", + "name": "Ocean Springs Airport", + "latitude_deg": "30.389400482177734", + "longitude_deg": "-88.75340270996094", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Ocean Springs", + "scheduled_service": "no", + "gps_code": "K5R2", + "local_code": "5R2" + }, + { + "id": "18923", + "ident": "K5R4", + "type": "small_airport", + "name": "Foley Municipal Airport", + "latitude_deg": "30.4277", + "longitude_deg": "-87.700798", + "elevation_ft": "74", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Foley", + "scheduled_service": "no", + "gps_code": "K5R4", + "local_code": "5R4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foley_Municipal_Airport" + }, + { + "id": "18924", + "ident": "K5R8", + "type": "small_airport", + "name": "De Quincy Industrial Airpark", + "latitude_deg": "30.441200256347656", + "longitude_deg": "-93.47350311279297", + "elevation_ft": "81", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "De Quincy", + "scheduled_service": "no", + "gps_code": "K5R8", + "local_code": "5R8" + }, + { + "id": "18925", + "ident": "K5S0", + "type": "small_airport", + "name": "Oakridge State Airport", + "latitude_deg": "43.752601623535156", + "longitude_deg": "-122.50299835205078", + "elevation_ft": "1393", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Oakridge", + "scheduled_service": "no", + "gps_code": "K5S0", + "local_code": "5S0", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oakridge_State_Airport" + }, + { + "id": "18926", + "ident": "K5S2", + "type": "small_airport", + "name": "Crescent Lake State Airport", + "latitude_deg": "43.5326", + "longitude_deg": "-121.949997", + "elevation_ft": "4810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Crescent Lake", + "scheduled_service": "no", + "local_code": "5S2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Crescent_Lake_State_Airport" + }, + { + "id": "18927", + "ident": "K5S6", + "type": "small_airport", + "name": "Cape Blanco State Airport", + "latitude_deg": "42.857899", + "longitude_deg": "-124.517998", + "elevation_ft": "214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sixes", + "scheduled_service": "no", + "local_code": "5S6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cape_Blanco_State_Airport" + }, + { + "id": "18928", + "ident": "K5S9", + "type": "small_airport", + "name": "Valley View Airport", + "latitude_deg": "45.307671", + "longitude_deg": "-122.318133", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Estacada", + "scheduled_service": "no", + "gps_code": "K5S9", + "local_code": "5S9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valley_View_Airport" + }, + { + "id": "18929", + "ident": "K5T6", + "type": "small_airport", + "name": "Doña Ana County International Jetport", + "latitude_deg": "31.881001", + "longitude_deg": "-106.705002", + "elevation_ft": "4112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Santa Teresa", + "scheduled_service": "no", + "gps_code": "KDNA", + "local_code": "DNA", + "home_link": "https://www.donaanacounty.org/works/airport", + "keywords": "5T6, Dona Ana County At Santa Teresa Airport" + }, + { + "id": "18930", + "ident": "K5T9", + "type": "small_airport", + "name": "Maverick County Memorial International Airport", + "latitude_deg": "28.859766", + "longitude_deg": "-100.516682", + "elevation_ft": "887", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eagle Pass", + "scheduled_service": "no", + "iata_code": "EGP", + "local_code": "5T9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maverick_County_Memorial_International_Airport" + }, + { + "id": "18931", + "ident": "K5U1", + "type": "small_airport", + "name": "Dutton Airport", + "latitude_deg": "47.847198486328125", + "longitude_deg": "-111.697998046875", + "elevation_ft": "3699", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Dutton", + "scheduled_service": "no", + "gps_code": "K5U1", + "local_code": "5U1" + }, + { + "id": "18932", + "ident": "K5U5", + "type": "small_airport", + "name": "Fairfield Airport", + "latitude_deg": "47.62910079956055", + "longitude_deg": "-111.9800033569336", + "elevation_ft": "3989", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "K5U5", + "local_code": "5U5" + }, + { + "id": "18933", + "ident": "K5U7", + "type": "small_airport", + "name": "Fort Smith Landing Strip", + "latitude_deg": "45.320802", + "longitude_deg": "-107.931", + "elevation_ft": "3242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Fort Smith", + "scheduled_service": "no", + "local_code": "5U7", + "keywords": "Yellowtail Dam" + }, + { + "id": "18934", + "ident": "K5V5", + "type": "small_airport", + "name": "Shiprock Airstrip", + "latitude_deg": "36.6978", + "longitude_deg": "-108.700996", + "elevation_ft": "5270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Shiprock", + "scheduled_service": "no", + "gps_code": "K5V5", + "local_code": "5V5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shiprock_Airstrip", + "keywords": "Naatʼáanii Nééz, Tsé Bitʼaʼí" + }, + { + "id": "18935", + "ident": "K5W1", + "type": "small_airport", + "name": "Wilson Creek Airport", + "latitude_deg": "47.42490005493164", + "longitude_deg": "-119.11499786376953", + "elevation_ft": "1440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Wilson Creek", + "scheduled_service": "no", + "gps_code": "K5W1", + "local_code": "5W1" + }, + { + "id": "18936", + "ident": "K5W4", + "type": "small_airport", + "name": "P K Airpark", + "latitude_deg": "35.019901", + "longitude_deg": "-79.191002", + "elevation_ft": "304", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Raeford", + "scheduled_service": "no", + "local_code": "5W4" + }, + { + "id": "18937", + "ident": "K5W5", + "type": "small_airport", + "name": "Triple W Airport", + "latitude_deg": "35.6203", + "longitude_deg": "-78.700302", + "elevation_ft": "244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Raleigh", + "scheduled_service": "no", + "local_code": "5W5" + }, + { + "id": "18938", + "ident": "K5W8", + "type": "small_airport", + "name": "Siler City Municipal Airport", + "latitude_deg": "35.7043", + "longitude_deg": "-79.504204", + "elevation_ft": "614", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Siler City", + "scheduled_service": "no", + "gps_code": "KSCR", + "local_code": "SCR", + "home_link": "http://www.silercity.org/index.asp?Type=B_BASIC&SEC=%7B33E50FDB-5CE5-473D-832E-E282A93E5BF2%7D", + "wikipedia_link": "https://en.wikipedia.org/wiki/Siler_City_Municipal_Airport", + "keywords": "5W8" + }, + { + "id": "18939", + "ident": "K5Y1", + "type": "small_airport", + "name": "Albert J Lindberg Airport", + "latitude_deg": "46.0359001159668", + "longitude_deg": "-84.4197998046875", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Hessel", + "scheduled_service": "no", + "gps_code": "K5Y1", + "local_code": "5Y1" + }, + { + "id": "18940", + "ident": "K60C", + "type": "small_airport", + "name": "Elroy Municipal Airport", + "latitude_deg": "43.70640182495117", + "longitude_deg": "-90.25759887695312", + "elevation_ft": "944", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Elroy", + "scheduled_service": "no", + "gps_code": "K60C", + "local_code": "60C" + }, + { + "id": "18941", + "ident": "K60F", + "type": "small_airport", + "name": "Seymour Municipal Airport", + "latitude_deg": "33.64870071411133", + "longitude_deg": "-99.2605972290039", + "elevation_ft": "1344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seymour", + "scheduled_service": "no", + "gps_code": "K60F", + "local_code": "60F" + }, + { + "id": "18942", + "ident": "K60J", + "type": "small_airport", + "name": "Odell Williamson Municipal Airport", + "latitude_deg": "33.90850067138672", + "longitude_deg": "-78.43669891357422", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Ocean Isle Beach", + "scheduled_service": "no", + "gps_code": "K60J", + "local_code": "60J" + }, + { + "id": "18943", + "ident": "K60R", + "type": "small_airport", + "name": "Navasota Municipal Airport", + "latitude_deg": "30.37190055847168", + "longitude_deg": "-96.11329650878906", + "elevation_ft": "228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Navasota", + "scheduled_service": "no", + "gps_code": "K60R", + "local_code": "60R" + }, + { + "id": "18944", + "ident": "K61A", + "type": "small_airport", + "name": "Camden Municipal Airport", + "latitude_deg": "31.979700088500977", + "longitude_deg": "-87.33910369873047", + "elevation_ft": "143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Camden", + "scheduled_service": "no", + "gps_code": "K61A", + "local_code": "61A" + }, + { + "id": "18945", + "ident": "K61B", + "type": "medium_airport", + "name": "Boulder City-Lake Mead International Airport", + "latitude_deg": "35.947498", + "longitude_deg": "-114.861", + "elevation_ft": "2201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Boulder City", + "scheduled_service": "no", + "gps_code": "KBVU", + "iata_code": "BLD", + "local_code": "BVU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boulder_City_Municipal_Airport", + "keywords": "61B" + }, + { + "id": "18946", + "ident": "K61C", + "type": "small_airport", + "name": "Fort Atkinson Municipal Airport", + "latitude_deg": "42.9632", + "longitude_deg": "-88.817596", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Jefferson", + "scheduled_service": "no", + "gps_code": "K61C", + "local_code": "61C" + }, + { + "id": "18947", + "ident": "K61R", + "type": "small_airport", + "name": "Newton Municipal Airport", + "latitude_deg": "30.8843994140625", + "longitude_deg": "-93.7417984008789", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Newton", + "scheduled_service": "no", + "gps_code": "K61R", + "local_code": "61R" + }, + { + "id": "18948", + "ident": "K61S", + "type": "small_airport", + "name": "Cottage Grove State Airport", + "latitude_deg": "43.799800872802734", + "longitude_deg": "-123.02899932861328", + "elevation_ft": "641", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Cottage Grove", + "scheduled_service": "no", + "gps_code": "K61S", + "local_code": "61S", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cottage_Grove_State_Airport" + }, + { + "id": "18949", + "ident": "K62D", + "type": "small_airport", + "name": "Warren Airport", + "latitude_deg": "41.266998291015625", + "longitude_deg": "-80.92739868164062", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Warren", + "scheduled_service": "no", + "gps_code": "K62D", + "local_code": "62D" + }, + { + "id": "18950", + "ident": "K62S", + "type": "small_airport", + "name": "Christmas Valley Airport", + "latitude_deg": "43.23623", + "longitude_deg": "-120.665059", + "elevation_ft": "4317", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Christmas Valley", + "scheduled_service": "no", + "local_code": "62S", + "wikipedia_link": "https://en.wikipedia.org/wiki/Christmas_Valley_Airport" + }, + { + "id": "18951", + "ident": "K63", + "type": "small_airport", + "name": "Council Grove Municipal Airport", + "latitude_deg": "38.67919921875", + "longitude_deg": "-96.57109832763672", + "elevation_ft": "1409", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Council Grove", + "scheduled_service": "no", + "gps_code": "K63", + "local_code": "K63" + }, + { + "id": "18952", + "ident": "K63B", + "type": "small_airport", + "name": "Limington Harmon Airport", + "latitude_deg": "43.76300048828125", + "longitude_deg": "-70.67250061035156", + "elevation_ft": "291", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Limington", + "scheduled_service": "no", + "gps_code": "K63B", + "local_code": "63B" + }, + { + "id": "18953", + "ident": "K63C", + "type": "small_airport", + "name": "Adams County Legion Field", + "latitude_deg": "43.960131", + "longitude_deg": "-89.789248", + "elevation_ft": "976", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Adams", + "scheduled_service": "no", + "local_code": "63C" + }, + { + "id": "18954", + "ident": "K63F", + "type": "small_airport", + "name": "Stanton Municipal Airport", + "latitude_deg": "32.17359924316406", + "longitude_deg": "-101.8219985961914", + "elevation_ft": "2731", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Stanton", + "scheduled_service": "no", + "gps_code": "K63F", + "local_code": "63F" + }, + { + "id": "18955", + "ident": "K63M", + "type": "small_airport", + "name": "Hermann Municipal Airport", + "latitude_deg": "38.7052", + "longitude_deg": "-91.490601", + "elevation_ft": "507", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hermann", + "scheduled_service": "no", + "local_code": "63M", + "keywords": "MO86" + }, + { + "id": "18956", + "ident": "K64", + "type": "small_airport", + "name": "Vinland Valley Aerodrome", + "latitude_deg": "38.837501525878906", + "longitude_deg": "-95.18219757080078", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Baldwin City", + "scheduled_service": "no", + "gps_code": "K64", + "local_code": "K64" + }, + { + "id": "18957", + "ident": "K64S", + "type": "small_airport", + "name": "Prospect State Airport", + "latitude_deg": "42.74319839477539", + "longitude_deg": "-122.48799896240234", + "elevation_ft": "2578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Prospect", + "scheduled_service": "no", + "gps_code": "K64S", + "local_code": "64S", + "wikipedia_link": "https://en.wikipedia.org/wiki/Prospect_State_Airport" + }, + { + "id": "18958", + "ident": "K65", + "type": "small_airport", + "name": "Dighton Airport", + "latitude_deg": "38.48970031738281", + "longitude_deg": "-100.4800033569336", + "elevation_ft": "2778", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Dighton", + "scheduled_service": "no", + "gps_code": "K65", + "local_code": "K65" + }, + { + "id": "18959", + "ident": "K65J", + "type": "small_airport", + "name": "Wrens Memorial Airport", + "latitude_deg": "33.22278", + "longitude_deg": "-82.384443", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Wrens", + "scheduled_service": "no", + "gps_code": "K65J", + "local_code": "65J" + }, + { + "id": "18960", + "ident": "K65S", + "type": "small_airport", + "name": "Boundary County Airport", + "latitude_deg": "48.7258", + "longitude_deg": "-116.294998", + "elevation_ft": "2337", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Bonners Ferry", + "scheduled_service": "no", + "local_code": "65S" + }, + { + "id": "18961", + "ident": "K66R", + "type": "small_airport", + "name": "Robert R Wells Jr Airport", + "latitude_deg": "29.6411", + "longitude_deg": "-96.5158", + "elevation_ft": "242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Columbus", + "scheduled_service": "no", + "local_code": "66R" + }, + { + "id": "18962", + "ident": "K66V", + "type": "small_airport", + "name": "Bluff Airport", + "latitude_deg": "37.254986", + "longitude_deg": "-109.633035", + "elevation_ft": "4476", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Bluff", + "scheduled_service": "no", + "local_code": "66V" + }, + { + "id": "18963", + "ident": "K66Y", + "type": "small_airport", + "name": "Diamondhead Airport", + "latitude_deg": "30.363001", + "longitude_deg": "-89.387703", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Diamondhead", + "scheduled_service": "no", + "local_code": "66Y" + }, + { + "id": "18964", + "ident": "K67", + "type": "small_airport", + "name": "Oswego Municipal Airport", + "latitude_deg": "37.1598014831543", + "longitude_deg": "-95.0425033569336", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Oswego", + "scheduled_service": "no", + "gps_code": "K67", + "local_code": "K67" + }, + { + "id": "18965", + "ident": "K67A", + "type": "small_airport", + "name": "Fort Deposit Lowndes County Airport", + "latitude_deg": "31.972400665283203", + "longitude_deg": "-86.59159851074219", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Deposit", + "scheduled_service": "no", + "gps_code": "K67A", + "local_code": "67A" + }, + { + "id": "18966", + "ident": "K67L", + "type": "medium_airport", + "name": "Mesquite International Airport", + "latitude_deg": "36.833105", + "longitude_deg": "-114.055928", + "elevation_ft": "1978", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Mesquite", + "scheduled_service": "no", + "iata_code": "MFH", + "local_code": "67L", + "home_link": "http://www.cityofmesquite.com/457/Airport-Mesquite-Metro-Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mesquite_Airport" + }, + { + "id": "18967", + "ident": "K67R", + "type": "small_airport", + "name": "Rio Grande City Municipal Airport", + "latitude_deg": "26.424299240112305", + "longitude_deg": "-98.84609985351562", + "elevation_ft": "290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rio Grande City", + "scheduled_service": "no", + "gps_code": "K67R", + "local_code": "67R" + }, + { + "id": "18968", + "ident": "K68", + "type": "small_airport", + "name": "Garnett Municipal Airport", + "latitude_deg": "38.27717", + "longitude_deg": "-95.215287", + "elevation_ft": "989", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Garnett", + "scheduled_service": "no", + "gps_code": "KK68", + "local_code": "K68" + }, + { + "id": "18969", + "ident": "K68F", + "type": "small_airport", + "name": "Teague Municipal Airport", + "latitude_deg": "31.661301", + "longitude_deg": "-96.309998", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Teague", + "scheduled_service": "no", + "local_code": "68F" + }, + { + "id": "18970", + "ident": "K68J", + "type": "closed", + "name": "Tallahassee Commercial Airport", + "latitude_deg": "30.5473", + "longitude_deg": "-84.373802", + "elevation_ft": "155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tallahassee /Havana/", + "scheduled_service": "no", + "local_code": "68J", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tallahassee_Commercial_Airport" + }, + { + "id": "18971", + "ident": "K68S", + "type": "small_airport", + "name": "Davenport Municipal Airport", + "latitude_deg": "47.652058", + "longitude_deg": "-118.173792", + "elevation_ft": "2421", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Davenport", + "scheduled_service": "no", + "gps_code": "K68S", + "local_code": "68S" + }, + { + "id": "18972", + "ident": "K69K", + "type": "small_airport", + "name": "Wamego Municipal Airport", + "latitude_deg": "39.197200775146484", + "longitude_deg": "-96.25890350341797", + "elevation_ft": "966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wamego", + "scheduled_service": "no", + "gps_code": "K69K", + "local_code": "69K" + }, + { + "id": "18973", + "ident": "K69V", + "type": "small_airport", + "name": "Huntington Municipal Airport", + "latitude_deg": "39.36119842529297", + "longitude_deg": "-110.91699981689453", + "elevation_ft": "5915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Huntington", + "scheduled_service": "no", + "gps_code": "K69V", + "local_code": "69V" + }, + { + "id": "18974", + "ident": "K6A1", + "type": "small_airport", + "name": "Butler Municipal Airport", + "latitude_deg": "32.569492", + "longitude_deg": "-84.245194", + "elevation_ft": "667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Butler", + "scheduled_service": "no", + "gps_code": "K6A1", + "local_code": "6A1" + }, + { + "id": "18975", + "ident": "K6A2", + "type": "small_airport", + "name": "Griffin Spalding County Airport", + "latitude_deg": "33.227001", + "longitude_deg": "-84.274902", + "elevation_ft": "958", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Griffin", + "scheduled_service": "no", + "gps_code": "K6A2", + "local_code": "6A2" + }, + { + "id": "18976", + "ident": "K6A4", + "type": "small_airport", + "name": "Johnson County Airport", + "latitude_deg": "36.41780090332031", + "longitude_deg": "-81.82510375976562", + "elevation_ft": "2240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Mountain City", + "scheduled_service": "no", + "gps_code": "K6A4", + "local_code": "6A4" + }, + { + "id": "18978", + "ident": "K6B9", + "type": "small_airport", + "name": "Skaneateles Aero Drome", + "latitude_deg": "42.914001", + "longitude_deg": "-76.440804", + "elevation_ft": "1038", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Skaneateles", + "scheduled_service": "no", + "local_code": "6B9" + }, + { + "id": "18979", + "ident": "K6D1", + "type": "small_airport", + "name": "Brooten Municipal Airport", + "latitude_deg": "45.5", + "longitude_deg": "-95.11280059814453", + "elevation_ft": "1305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Brooten", + "scheduled_service": "no", + "gps_code": "K6D1", + "local_code": "6D1" + }, + { + "id": "18980", + "ident": "K6D6", + "type": "small_airport", + "name": "Greenville Municipal Airport", + "latitude_deg": "43.14229965209961", + "longitude_deg": "-85.25379943847656", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "K6D6", + "local_code": "6D6" + }, + { + "id": "18981", + "ident": "K6D8", + "type": "small_airport", + "name": "Barnes County Municipal Airport", + "latitude_deg": "46.94100189", + "longitude_deg": "-98.01760101", + "elevation_ft": "1402", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Valley City", + "scheduled_service": "no", + "gps_code": "KBAC", + "local_code": "BAC", + "home_link": "http://www.barnescountyairport.com/", + "keywords": "6D8" + }, + { + "id": "18982", + "ident": "K6D9", + "type": "small_airport", + "name": "Iosco County Airport", + "latitude_deg": "44.312801", + "longitude_deg": "-83.422302", + "elevation_ft": "606", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "East Tawas", + "scheduled_service": "no", + "iata_code": "ECA", + "local_code": "6D9", + "home_link": "http://www.us23heritageroute.org/location.asp?ait=av&aid=839" + }, + { + "id": "18983", + "ident": "K6E5", + "type": "small_airport", + "name": "Wilder Airport", + "latitude_deg": "44.43080139160156", + "longitude_deg": "-97.56120300292969", + "elevation_ft": "1729", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Desmet", + "scheduled_service": "no", + "gps_code": "K6E5", + "local_code": "6.00E+05" + }, + { + "id": "18985", + "ident": "K6G0", + "type": "closed", + "name": "Athelone Williams Memorial Airport", + "latitude_deg": "43.029099", + "longitude_deg": "-83.529702", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Davison", + "scheduled_service": "no", + "keywords": "6G0" + }, + { + "id": "18986", + "ident": "K6G1", + "type": "small_airport", + "name": "Titusville Airport", + "latitude_deg": "41.60879898071289", + "longitude_deg": "-79.74130249023438", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Titusville", + "scheduled_service": "no", + "gps_code": "K6G1", + "local_code": "6G1" + }, + { + "id": "18987", + "ident": "K6G4", + "type": "small_airport", + "name": "Wynkoop Airport", + "latitude_deg": "40.3651008605957", + "longitude_deg": "-82.49569702148438", + "elevation_ft": "1041", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "K6G4", + "local_code": "6G4" + }, + { + "id": "18988", + "ident": "K6G5", + "type": "small_airport", + "name": "Barnesville Bradfield Airport", + "latitude_deg": "40.00239944458008", + "longitude_deg": "-81.19180297851562", + "elevation_ft": "1312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Barnesville", + "scheduled_service": "no", + "gps_code": "K6G5", + "local_code": "6G5" + }, + { + "id": "18989", + "ident": "K6I2", + "type": "small_airport", + "name": "Lebanon Springfield Airport", + "latitude_deg": "37.63349914550781", + "longitude_deg": "-85.2417984008789", + "elevation_ft": "866", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "K6I2", + "local_code": "6I2" + }, + { + "id": "18990", + "ident": "K6I4", + "type": "small_airport", + "name": "Boone County Airport", + "latitude_deg": "40.007301330566406", + "longitude_deg": "-86.44059753417969", + "elevation_ft": "959", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "K6I4", + "local_code": "6I4" + }, + { + "id": "18991", + "ident": "K6I6", + "type": "small_airport", + "name": "Darby Dan Airport", + "latitude_deg": "39.94200134277344", + "longitude_deg": "-83.20490264892578", + "elevation_ft": "928", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "K6I6", + "local_code": "6I6" + }, + { + "id": "18992", + "ident": "K6J0", + "type": "small_airport", + "name": "Lexington County Airport", + "latitude_deg": "33.794601", + "longitude_deg": "-81.245903", + "elevation_ft": "452", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Pelion", + "scheduled_service": "no", + "local_code": "6J0" + }, + { + "id": "18993", + "ident": "K6J2", + "type": "small_airport", + "name": "Saint George Airport", + "latitude_deg": "33.195499", + "longitude_deg": "-80.508499", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Saint George", + "scheduled_service": "no", + "local_code": "6J2", + "home_link": "https://www.dorchestercountysc.gov/government/administrative-services/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._George_Airport_(South_Carolina)", + "keywords": "St George" + }, + { + "id": "18994", + "ident": "K6J4", + "type": "small_airport", + "name": "Saluda County Airport", + "latitude_deg": "33.92679977416992", + "longitude_deg": "-81.79460144042969", + "elevation_ft": "555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Saluda", + "scheduled_service": "no", + "gps_code": "K6J4", + "local_code": "6J4" + }, + { + "id": "18995", + "ident": "K6J7", + "type": "small_airport", + "name": "Branhams Airport", + "latitude_deg": "34.282100677490234", + "longitude_deg": "-79.92870330810547", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Darlington", + "scheduled_service": "no", + "gps_code": "K6J7", + "local_code": "6J7" + }, + { + "id": "18996", + "ident": "K6K3", + "type": "small_airport", + "name": "Creighton Municipal Airport", + "latitude_deg": "42.47079849", + "longitude_deg": "-97.88369751", + "elevation_ft": "1654", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Creighton", + "scheduled_service": "no", + "gps_code": "K6K3", + "local_code": "6K3" + }, + { + "id": "18997", + "ident": "K6K4", + "type": "small_airport", + "name": "Fairview Municipal Airport", + "latitude_deg": "36.29010009765625", + "longitude_deg": "-98.47579956054688", + "elevation_ft": "1272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Fairview", + "scheduled_service": "no", + "gps_code": "K6K4", + "local_code": "6K4" + }, + { + "id": "18998", + "ident": "K6K5", + "type": "small_airport", + "name": "Sisters Eagle Air Airport", + "latitude_deg": "44.30459976196289", + "longitude_deg": "-121.53900146484375", + "elevation_ft": "3168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sisters", + "scheduled_service": "no", + "gps_code": "K6K5", + "local_code": "6K5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sisters_Eagle_Air_Airport" + }, + { + "id": "18999", + "ident": "K6L3", + "type": "small_airport", + "name": "Lisbon Municipal Airport", + "latitude_deg": "46.446603", + "longitude_deg": "-97.727302", + "elevation_ft": "1232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Lisbon", + "scheduled_service": "no", + "local_code": "6L3", + "keywords": "ND34" + }, + { + "id": "19000", + "ident": "K6L4", + "type": "small_airport", + "name": "Logan County Airport", + "latitude_deg": "37.8557014465", + "longitude_deg": "-81.91590118410001", + "elevation_ft": "1667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Logan", + "scheduled_service": "no", + "gps_code": "6L4", + "local_code": "6L4" + }, + { + "id": "19001", + "ident": "K6L5", + "type": "small_airport", + "name": "Wishek Municipal Airport", + "latitude_deg": "46.24639892578125", + "longitude_deg": "-99.53790283203125", + "elevation_ft": "2035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Wishek", + "scheduled_service": "no", + "gps_code": "K6L5", + "local_code": "6L5" + }, + { + "id": "19002", + "ident": "K6M0", + "type": "small_airport", + "name": "Hazen Municipal Airport - David Duch Field", + "latitude_deg": "34.759399", + "longitude_deg": "-91.6381", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Hazen", + "scheduled_service": "no", + "gps_code": "K6M0", + "local_code": "6M0" + }, + { + "id": "19003", + "ident": "K6M2", + "type": "small_airport", + "name": "Horseshoe Bend Airport", + "latitude_deg": "36.22140121459961", + "longitude_deg": "-91.75550079345703", + "elevation_ft": "782", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Horseshoe Bend", + "scheduled_service": "no", + "gps_code": "K6M2", + "local_code": "6M2" + }, + { + "id": "19004", + "ident": "K6M6", + "type": "small_airport", + "name": "Lewis County Regional Airport", + "latitude_deg": "40.12919998", + "longitude_deg": "-91.67829895", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Monticello", + "scheduled_service": "no", + "gps_code": "K6M6", + "local_code": "6M6" + }, + { + "id": "19005", + "ident": "K6M7", + "type": "small_airport", + "name": "Marianna Lee County Steve Edwards Field", + "latitude_deg": "34.78030014", + "longitude_deg": "-90.81060028", + "elevation_ft": "219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Marianna", + "scheduled_service": "no", + "gps_code": "K6M7", + "local_code": "6M7" + }, + { + "id": "19006", + "ident": "K6R3", + "type": "small_airport", + "name": "Cleveland Municipal Airport", + "latitude_deg": "30.3564", + "longitude_deg": "-95.008003", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cleveland", + "scheduled_service": "no", + "local_code": "6R3" + }, + { + "id": "19007", + "ident": "K6R6", + "type": "small_airport", + "name": "Terrell County Airport", + "latitude_deg": "30.04599952697754", + "longitude_deg": "-102.21299743652344", + "elevation_ft": "2322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dryden", + "scheduled_service": "no", + "gps_code": "K6R6", + "local_code": "6R6" + }, + { + "id": "19008", + "ident": "K6S0", + "type": "small_airport", + "name": "Big Timber Airport", + "latitude_deg": "45.806681", + "longitude_deg": "-109.979153", + "elevation_ft": "4492", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Big Timber", + "scheduled_service": "no", + "local_code": "6S0" + }, + { + "id": "19009", + "ident": "K6S1", + "type": "small_airport", + "name": "Bridger Municipal Airport", + "latitude_deg": "45.291675038", + "longitude_deg": "-108.921632767", + "elevation_ft": "3720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Bridger", + "scheduled_service": "no", + "gps_code": "K6S1", + "local_code": "6S1" + }, + { + "id": "19010", + "ident": "K6S2", + "type": "small_airport", + "name": "Florence Municipal Airport", + "latitude_deg": "43.98279953", + "longitude_deg": "-124.111000061", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Florence", + "scheduled_service": "no", + "iata_code": "FMU", + "local_code": "6S2", + "home_link": "http://www.ci.florence.or.us/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Florence_Municipal_Airport" + }, + { + "id": "19011", + "ident": "K6S3", + "type": "small_airport", + "name": "Woltermann Memorial Airport", + "latitude_deg": "45.630501", + "longitude_deg": "-109.238998", + "elevation_ft": "3575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "K6S3", + "local_code": "6S3" + }, + { + "id": "19012", + "ident": "K6S5", + "type": "small_airport", + "name": "Ravalli County Airport", + "latitude_deg": "46.251499", + "longitude_deg": "-114.125569", + "elevation_ft": "3642", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "KHRF", + "local_code": "HRF", + "keywords": "6S5" + }, + { + "id": "19013", + "ident": "K6S8", + "type": "small_airport", + "name": "Laurel Municipal Airport", + "latitude_deg": "45.70309829711914", + "longitude_deg": "-108.76100158691406", + "elevation_ft": "3517", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Laurel", + "scheduled_service": "no", + "gps_code": "K6S8", + "local_code": "6S8" + }, + { + "id": "19014", + "ident": "K6U7", + "type": "small_airport", + "name": "Hysham Airport", + "latitude_deg": "46.289398193359375", + "longitude_deg": "-107.19599914550781", + "elevation_ft": "2624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Hysham", + "scheduled_service": "no", + "gps_code": "K6U7", + "local_code": "6U7" + }, + { + "id": "19015", + "ident": "K6V0", + "type": "small_airport", + "name": "Edgemont Municipal Airport", + "latitude_deg": "43.29520034789999", + "longitude_deg": "-103.84400177", + "elevation_ft": "3605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Edgemont", + "scheduled_service": "no", + "gps_code": "6V0", + "local_code": "6V0" + }, + { + "id": "19017", + "ident": "K6V4", + "type": "small_airport", + "name": "Wall Municipal Airport", + "latitude_deg": "43.9995002746582", + "longitude_deg": "-102.25499725341797", + "elevation_ft": "2813", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Wall", + "scheduled_service": "no", + "gps_code": "K6V4", + "local_code": "6V4" + }, + { + "id": "19018", + "ident": "K6V5", + "type": "small_airport", + "name": "Bison Municipal Airport", + "latitude_deg": "45.51860046386719", + "longitude_deg": "-102.46700286865234", + "elevation_ft": "2785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Bison", + "scheduled_service": "no", + "gps_code": "K6V5", + "local_code": "6V5" + }, + { + "id": "19019", + "ident": "K6Y1", + "type": "small_airport", + "name": "Bois Blanc Airport", + "latitude_deg": "45.7663", + "longitude_deg": "-84.503799", + "elevation_ft": "664", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Bois Blanc Island", + "scheduled_service": "no", + "local_code": "6Y1", + "home_link": "http://www.boisblanctownship.org/airport.asp" + }, + { + "id": "19020", + "ident": "K70A", + "type": "small_airport", + "name": "Freddie Jones Field", + "latitude_deg": "32.26679992675781", + "longitude_deg": "-87.71810150146484", + "elevation_ft": "161", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Linden", + "scheduled_service": "no", + "gps_code": "K70A", + "local_code": "70A" + }, + { + "id": "19021", + "ident": "K70J", + "type": "small_airport", + "name": "Cairo Grady County Airport", + "latitude_deg": "30.88800048828125", + "longitude_deg": "-84.15470123291016", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Cairo", + "scheduled_service": "no", + "gps_code": "K70J", + "local_code": "70J" + }, + { + "id": "19022", + "ident": "K71", + "type": "small_airport", + "name": "Lincoln Municipal Airport", + "latitude_deg": "39.058101654052734", + "longitude_deg": "-98.16699981689453", + "elevation_ft": "1412", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "K71", + "local_code": "K71" + }, + { + "id": "19023", + "ident": "K71A", + "type": "small_airport", + "name": "Pine Hill Municipal Airport", + "latitude_deg": "31.966800689697266", + "longitude_deg": "-87.58329772949219", + "elevation_ft": "123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Pine Hill", + "scheduled_service": "no", + "gps_code": "K71A", + "local_code": "71A" + }, + { + "id": "19024", + "ident": "K71J", + "type": "small_airport", + "name": "Ozark-Blackwell Field", + "latitude_deg": "31.431101", + "longitude_deg": "-85.619202", + "elevation_ft": "356", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Ozark", + "scheduled_service": "no", + "local_code": "71J", + "wikipedia_link": "https://en.wikipedia.org/wiki/Blackwell_Field" + }, + { + "id": "19025", + "ident": "K71N", + "type": "small_airport", + "name": "Sunbury Airport", + "latitude_deg": "40.89179992675781", + "longitude_deg": "-76.77890014648438", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Sunbury", + "scheduled_service": "no", + "gps_code": "K71N", + "local_code": "71N" + }, + { + "id": "19026", + "ident": "K72F", + "type": "small_airport", + "name": "Throckmorton Municipal Airport", + "latitude_deg": "33.179298400878906", + "longitude_deg": "-99.1498031616211", + "elevation_ft": "1273", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Throckmorton", + "scheduled_service": "no", + "gps_code": "K72F", + "local_code": "72F" + }, + { + "id": "19027", + "ident": "K73C", + "type": "small_airport", + "name": "Lancaster Municipal Airport", + "latitude_deg": "42.78049850463867", + "longitude_deg": "-90.68099975585938", + "elevation_ft": "1008", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "K73C", + "local_code": "73C" + }, + { + "id": "19030", + "ident": "K74S", + "type": "small_airport", + "name": "Anacortes Airport", + "latitude_deg": "48.499", + "longitude_deg": "-122.662003", + "elevation_ft": "241", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Anacortes", + "scheduled_service": "no", + "iata_code": "OTS", + "local_code": "74S", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anacortes_Airport" + }, + { + "id": "19031", + "ident": "K74V", + "type": "small_airport", + "name": "Roosevelt Municipal Airport", + "latitude_deg": "40.278301", + "longitude_deg": "-110.051003", + "elevation_ft": "5172", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Roosevelt", + "scheduled_service": "no", + "iata_code": "ROL", + "local_code": "74V", + "home_link": "http://www.rooseveltcity.com/164/Airport" + }, + { + "id": "19032", + "ident": "K75J", + "type": "small_airport", + "name": "Turner County Airport", + "latitude_deg": "31.687129", + "longitude_deg": "-83.632822", + "elevation_ft": "389", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Ashburn", + "scheduled_service": "no", + "local_code": "75J" + }, + { + "id": "19033", + "ident": "K76F", + "type": "small_airport", + "name": "Van Zandt County Regional Airport", + "latitude_deg": "32.6814994812", + "longitude_deg": "-95.98410034179999", + "elevation_ft": "518", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wills Point", + "scheduled_service": "no", + "gps_code": "K76F", + "local_code": "76F" + }, + { + "id": "19034", + "ident": "K76G", + "type": "small_airport", + "name": "Marine City Airport", + "latitude_deg": "42.721247", + "longitude_deg": "-82.596406", + "elevation_ft": "613", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Marine City", + "scheduled_service": "no", + "local_code": "76G" + }, + { + "id": "19036", + "ident": "K77F", + "type": "small_airport", + "name": "Winters Municipal Airport", + "latitude_deg": "31.947200775146484", + "longitude_deg": "-99.98580169677734", + "elevation_ft": "1871", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Winters", + "scheduled_service": "no", + "gps_code": "K77F", + "local_code": "77F" + }, + { + "id": "19037", + "ident": "K77G", + "type": "small_airport", + "name": "Marlette Township Airport", + "latitude_deg": "43.311798", + "longitude_deg": "-83.090897", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Marlette", + "scheduled_service": "no", + "local_code": "77G" + }, + { + "id": "19038", + "ident": "K77S", + "type": "small_airport", + "name": "Hobby Field", + "latitude_deg": "43.93080139160156", + "longitude_deg": "-123.00700378417969", + "elevation_ft": "538", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Creswell", + "scheduled_service": "no", + "gps_code": "K77S", + "local_code": "77S", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hobby_Field" + }, + { + "id": "20264", + "ident": "K78", + "type": "small_airport", + "name": "Abilene Municipal Airport", + "latitude_deg": "38.904099", + "longitude_deg": "-97.235901", + "elevation_ft": "1152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Abilene", + "scheduled_service": "no", + "local_code": "K78", + "home_link": "http://www.abilenecityhall.com/index.aspx?NID=379", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abilene_Municipal_Airport" + }, + { + "id": "19039", + "ident": "K78R", + "type": "small_airport", + "name": "San Augustine County Airport", + "latitude_deg": "31.539475", + "longitude_deg": "-94.170062", + "elevation_ft": "443", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Augustine", + "scheduled_service": "no", + "gps_code": "K78R", + "local_code": "78R" + }, + { + "id": "19040", + "ident": "K78Y", + "type": "small_airport", + "name": "Rankin Airport", + "latitude_deg": "40.33330154418945", + "longitude_deg": "-94.83360290527344", + "elevation_ft": "976", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Maryville", + "scheduled_service": "no", + "gps_code": "K78Y", + "local_code": "78Y" + }, + { + "id": "19041", + "ident": "K79D", + "type": "small_airport", + "name": "Philippi Barbour County Regional Airport", + "latitude_deg": "39.166199", + "longitude_deg": "-80.062599", + "elevation_ft": "1755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Philippi", + "scheduled_service": "no", + "local_code": "79D" + }, + { + "id": "19042", + "ident": "K79J", + "type": "medium_airport", + "name": "South Alabama Regional At Bill Benton Field Airport", + "latitude_deg": "31.3088", + "longitude_deg": "-86.393799", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Andalusia/Opp", + "scheduled_service": "no", + "gps_code": "K79J", + "local_code": "79J", + "wikipedia_link": "https://en.wikipedia.org/wiki/Andalusia-Opp_Airport", + "keywords": "Andalusia Opp Airport" + }, + { + "id": "19043", + "ident": "K79S", + "type": "small_airport", + "name": "Fort Benton Airport", + "latitude_deg": "47.84510040283203", + "longitude_deg": "-110.63600158691406", + "elevation_ft": "2869", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Fort Benton", + "scheduled_service": "no", + "gps_code": "K79S", + "local_code": "79S" + }, + { + "id": "19044", + "ident": "K7A0", + "type": "small_airport", + "name": "Greensboro Municipal Airport", + "latitude_deg": "32.68149948120117", + "longitude_deg": "-87.66210174560547", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Greensboro", + "scheduled_service": "no", + "gps_code": "K7A0", + "local_code": "7A0" + }, + { + "id": "19046", + "ident": "K7A3", + "type": "small_airport", + "name": "Lanett Municipal Airport", + "latitude_deg": "32.8120002746582", + "longitude_deg": "-85.22959899902344", + "elevation_ft": "624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Lanett", + "scheduled_service": "no", + "gps_code": "K7A3", + "local_code": "7A3" + }, + { + "id": "19047", + "ident": "K7A4", + "type": "small_airport", + "name": "Foster Field", + "latitude_deg": "42.4664", + "longitude_deg": "-90.169403", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Apple River", + "scheduled_service": "no", + "gps_code": "IL28", + "local_code": "IL28", + "keywords": "7A4" + }, + { + "id": "19048", + "ident": "K7A5", + "type": "small_airport", + "name": "Roanoke Municipal Airport", + "latitude_deg": "33.12929916381836", + "longitude_deg": "-85.3666000366211", + "elevation_ft": "907", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Roanoke", + "scheduled_service": "no", + "gps_code": "K7A5", + "local_code": "7A5" + }, + { + "id": "19049", + "ident": "K7A6", + "type": "small_airport", + "name": "Stevenson Airport", + "latitude_deg": "34.88629913330078", + "longitude_deg": "-85.80329895019531", + "elevation_ft": "644", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Stevenson", + "scheduled_service": "no", + "gps_code": "K7A6", + "local_code": "7A6" + }, + { + "id": "19050", + "ident": "K7A8", + "type": "small_airport", + "name": "Avery County Morrison Field", + "latitude_deg": "35.94459915161133", + "longitude_deg": "-81.99569702148438", + "elevation_ft": "2750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Spruce Pine", + "scheduled_service": "no", + "gps_code": "K7A8", + "local_code": "7A8" + }, + { + "id": "19051", + "ident": "K7B2", + "type": "small_airport", + "name": "Northampton Airport", + "latitude_deg": "42.328098", + "longitude_deg": "-72.611397", + "elevation_ft": "121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Northampton", + "scheduled_service": "no", + "local_code": "7B2", + "home_link": "http://www.northamptonairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Northampton_Airport" + }, + { + "id": "19052", + "ident": "K7B6", + "type": "small_airport", + "name": "Skylark Airpark", + "latitude_deg": "41.929298400878906", + "longitude_deg": "-72.57450103759766", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Warehouse Point", + "scheduled_service": "no", + "gps_code": "K7B6", + "local_code": "7B6" + }, + { + "id": "19053", + "ident": "K7D3", + "type": "small_airport", + "name": "Baldwin Municipal Airport", + "latitude_deg": "43.8754997253418", + "longitude_deg": "-85.84210205078125", + "elevation_ft": "828", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Baldwin", + "scheduled_service": "no", + "gps_code": "K7D3", + "local_code": "7D3" + }, + { + "id": "19054", + "ident": "K7D9", + "type": "small_airport", + "name": "Germack Airport", + "latitude_deg": "41.777801513671875", + "longitude_deg": "-80.90399932861328", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Geneva", + "scheduled_service": "no", + "gps_code": "K7D9", + "local_code": "7D9" + }, + { + "id": "19055", + "ident": "K7F3", + "type": "small_airport", + "name": "Caddo Mills Municipal Airport", + "latitude_deg": "33.03620147705078", + "longitude_deg": "-96.24310302734375", + "elevation_ft": "542", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Caddo Mills", + "scheduled_service": "no", + "gps_code": "K7F3", + "local_code": "7F3" + }, + { + "id": "19056", + "ident": "K7F5", + "type": "small_airport", + "name": "Canton Hackney Airport", + "latitude_deg": "32.588401", + "longitude_deg": "-95.863116", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Canton", + "scheduled_service": "no", + "local_code": "7F5" + }, + { + "id": "19057", + "ident": "K7F7", + "type": "small_airport", + "name": "Clifton Municipal Isenhower Field", + "latitude_deg": "31.817316", + "longitude_deg": "-97.569698", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Clifton", + "scheduled_service": "no", + "local_code": "7F7" + }, + { + "id": "19058", + "ident": "K7G0", + "type": "small_airport", + "name": "Ledgedale Airpark", + "latitude_deg": "43.18109894", + "longitude_deg": "-77.915802", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Brockport", + "scheduled_service": "no", + "gps_code": "K7G0", + "local_code": "7G0" + }, + { + "id": "19059", + "ident": "K7G8", + "type": "small_airport", + "name": "Geauga County Airport", + "latitude_deg": "41.4496", + "longitude_deg": "-81.062897", + "elevation_ft": "1174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Middlefield", + "scheduled_service": "no", + "local_code": "7G8" + }, + { + "id": "19060", + "ident": "K7G9", + "type": "small_airport", + "name": "Canton Municipal Airport", + "latitude_deg": "43.308899", + "longitude_deg": "-96.570999", + "elevation_ft": "1290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Canton", + "scheduled_service": "no", + "iata_code": "CTK", + "local_code": "7G9", + "home_link": "https://cantonsd.org/our-community/cornerstones/airport/", + "keywords": "SD10" + }, + { + "id": "19061", + "ident": "K7I4", + "type": "small_airport", + "name": "Orleans Airport", + "latitude_deg": "38.65840148925781", + "longitude_deg": "-86.44300079345703", + "elevation_ft": "655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Orleans", + "scheduled_service": "no", + "gps_code": "K7I4", + "local_code": "7I4" + }, + { + "id": "19062", + "ident": "K7K4", + "type": "small_airport", + "name": "Ohio County Airport", + "latitude_deg": "37.458302", + "longitude_deg": "-86.849998", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Hartford", + "scheduled_service": "no", + "gps_code": "KJQD", + "local_code": "JQD", + "keywords": "7K4" + }, + { + "id": "19063", + "ident": "K7K5", + "type": "small_airport", + "name": "Kenmare Municipal Airport", + "latitude_deg": "48.667598724365234", + "longitude_deg": "-102.0479965209961", + "elevation_ft": "1962", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Kenmare", + "scheduled_service": "no", + "gps_code": "K7K5", + "local_code": "7K5" + }, + { + "id": "19064", + "ident": "K7K8", + "type": "small_airport", + "name": "Martin Field", + "latitude_deg": "42.45597", + "longitude_deg": "-96.472874", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "South Sioux City", + "scheduled_service": "no", + "local_code": "7K8" + }, + { + "id": "19065", + "ident": "K7L2", + "type": "small_airport", + "name": "Linton Municipal Airport", + "latitude_deg": "46.21829987", + "longitude_deg": "-100.2450027", + "elevation_ft": "1779", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Linton", + "scheduled_service": "no", + "gps_code": "K7L2", + "local_code": "7L2" + }, + { + "id": "19066", + "ident": "K7L8", + "type": "small_airport", + "name": "Post-Air Airport", + "latitude_deg": "39.75", + "longitude_deg": "-86.013900756836", + "elevation_ft": "861", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "7L8", + "local_code": "7L8", + "keywords": "IN02" + }, + { + "id": "19067", + "ident": "K7M1", + "type": "small_airport", + "name": "McGehee Municipal Airport", + "latitude_deg": "33.620201", + "longitude_deg": "-91.3648", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "McGehee", + "scheduled_service": "no", + "gps_code": "K7M1", + "local_code": "7M1" + }, + { + "id": "19068", + "ident": "K7M2", + "type": "small_airport", + "name": "Mountain View Wilcox Memorial Field", + "latitude_deg": "35.864498138427734", + "longitude_deg": "-92.09030151367188", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Mountain View", + "scheduled_service": "no", + "gps_code": "K7M2", + "local_code": "7M2" + }, + { + "id": "19069", + "ident": "K7M3", + "type": "small_airport", + "name": "Bearce Airport", + "latitude_deg": "34.52930069", + "longitude_deg": "-93.52709961", + "elevation_ft": "644", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Mount Ida", + "scheduled_service": "no", + "gps_code": "K7M3", + "local_code": "7M3" + }, + { + "id": "19070", + "ident": "K7M4", + "type": "small_airport", + "name": "Osceola Municipal Airport", + "latitude_deg": "35.69110107421875", + "longitude_deg": "-90.01010131835938", + "elevation_ft": "234", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Osceola", + "scheduled_service": "no", + "gps_code": "K7M4", + "local_code": "7M4" + }, + { + "id": "19071", + "ident": "K7M5", + "type": "small_airport", + "name": "Ozark Franklin County Airport", + "latitude_deg": "35.51070022583008", + "longitude_deg": "-93.83930206298828", + "elevation_ft": "648", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Ozark", + "scheduled_service": "no", + "gps_code": "K7M5", + "local_code": "7M5" + }, + { + "id": "19072", + "ident": "K7M8", + "type": "small_airport", + "name": "Rector Airport", + "latitude_deg": "36.250099182128906", + "longitude_deg": "-90.31950378417969", + "elevation_ft": "281", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Rector", + "scheduled_service": "no", + "gps_code": "K7M8", + "local_code": "7M8" + }, + { + "id": "19073", + "ident": "K7M9", + "type": "small_airport", + "name": "Salem Airport", + "latitude_deg": "36.35695", + "longitude_deg": "-91.830443", + "elevation_ft": "787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Salem", + "scheduled_service": "no", + "local_code": "7M9", + "home_link": "http://fly.arkansas.gov/salem.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salem_Airport_(Arkansas)" + }, + { + "id": "19074", + "ident": "K7N1", + "type": "small_airport", + "name": "Corning Painted Post Airport", + "latitude_deg": "42.1759", + "longitude_deg": "-77.112198", + "elevation_ft": "962", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Corning", + "scheduled_service": "no", + "gps_code": "K7N1", + "local_code": "7N1" + }, + { + "id": "19075", + "ident": "K7S0", + "type": "small_airport", + "name": "Ronan Airport", + "latitude_deg": "47.56719970703125", + "longitude_deg": "-114.10099792480469", + "elevation_ft": "3086", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Ronan", + "scheduled_service": "no", + "gps_code": "K7S0", + "local_code": "7S0" + }, + { + "id": "19076", + "ident": "K7S1", + "type": "small_airport", + "name": "Ruby Valley Field", + "latitude_deg": "45.533702", + "longitude_deg": "-112.300283", + "elevation_ft": "4777", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Twin Bridges", + "scheduled_service": "no", + "gps_code": "KRVF", + "local_code": "RVF", + "home_link": "https://rubyvalleyaviation.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Twin_Bridges_Airport_(Montana)", + "keywords": "7S1" + }, + { + "id": "19077", + "ident": "K7S5", + "type": "small_airport", + "name": "Independence State Airport", + "latitude_deg": "44.867000579833984", + "longitude_deg": "-123.197998046875", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Independence", + "scheduled_service": "no", + "gps_code": "K7S5", + "local_code": "7S5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Independence_State_Airport" + }, + { + "id": "19078", + "ident": "K7S6", + "type": "small_airport", + "name": "White Sulphur Springs Airport", + "latitude_deg": "46.50410079956055", + "longitude_deg": "-110.91300201416016", + "elevation_ft": "5061", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "White Sulphur Springs", + "scheduled_service": "no", + "gps_code": "K7S6", + "local_code": "7S6" + }, + { + "id": "19079", + "ident": "K7S7", + "type": "small_airport", + "name": "Valier Airport", + "latitude_deg": "48.299375", + "longitude_deg": "-112.249214", + "elevation_ft": "3820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Valier", + "scheduled_service": "no", + "gps_code": "K7S7", + "local_code": "7S7" + }, + { + "id": "19080", + "ident": "K7S9", + "type": "small_airport", + "name": "Lenhardt Airpark", + "latitude_deg": "45.18040084838867", + "longitude_deg": "-122.74299621582031", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Hubbard", + "scheduled_service": "no", + "gps_code": "K7S9", + "local_code": "7S9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lenhardt_Airpark" + }, + { + "id": "19081", + "ident": "K7SP", + "type": "closed", + "name": "Seven Springs Airport", + "latitude_deg": "40.009998", + "longitude_deg": "-79.321899", + "elevation_ft": "2907", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Seven Springs Borough", + "scheduled_service": "no", + "keywords": "7SP" + }, + { + "id": "19082", + "ident": "K7T7", + "type": "small_airport", + "name": "Skywest Inc Airport", + "latitude_deg": "31.85849952697754", + "longitude_deg": "-102.0739974975586", + "elevation_ft": "2800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Midland", + "scheduled_service": "no", + "gps_code": "K7T7", + "local_code": "7T7" + }, + { + "id": "19083", + "ident": "K7V2", + "type": "small_airport", + "name": "North Fork Valley Airport", + "latitude_deg": "38.8316993713", + "longitude_deg": "-107.646003723", + "elevation_ft": "5798", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Paonia", + "scheduled_service": "no", + "gps_code": "K7V2", + "iata_code": "WPO", + "local_code": "7V2" + }, + { + "id": "19084", + "ident": "K7V3", + "type": "small_airport", + "name": "Big Foot Airfield", + "latitude_deg": "42.525699615478516", + "longitude_deg": "-88.65299987792969", + "elevation_ft": "951", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Walworth", + "scheduled_service": "no", + "gps_code": "K7V3", + "local_code": "7V3" + }, + { + "id": "19085", + "ident": "K7V5", + "type": "small_airport", + "name": "Brush Municipal Airport", + "latitude_deg": "40.26434", + "longitude_deg": "-103.575867", + "elevation_ft": "4280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Brush", + "scheduled_service": "no", + "gps_code": "K7V5", + "local_code": "7V5" + }, + { + "id": "19086", + "ident": "K7V6", + "type": "small_airport", + "name": "Camp Guernsey Airport", + "latitude_deg": "42.259601593", + "longitude_deg": "-104.727996826", + "elevation_ft": "4400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Guernsey", + "scheduled_service": "no", + "gps_code": "KGUR", + "local_code": "GUR", + "home_link": "http://www.townofguernseywy.us/index.asp?Type=B_BASIC&SEC=%7BCCC29FF1-5236-4A12-970F-712F6CBE0F86%7D", + "keywords": "7V6" + }, + { + "id": "19087", + "ident": "K7V7", + "type": "small_airport", + "name": "Red Cloud Municipal Airport", + "latitude_deg": "40.08470154", + "longitude_deg": "-98.54060364", + "elevation_ft": "1744", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Red Cloud", + "scheduled_service": "no", + "gps_code": "K7V7", + "local_code": "7V7" + }, + { + "id": "19088", + "ident": "K7V8", + "type": "small_airport", + "name": "Julesburg Municipal Airport", + "latitude_deg": "40.97079849", + "longitude_deg": "-102.3150024", + "elevation_ft": "3495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Julesburg", + "scheduled_service": "no", + "gps_code": "K7V8", + "local_code": "7V8" + }, + { + "id": "19089", + "ident": "K7V9", + "type": "small_airport", + "name": "City of Las Animas Bent County Airport", + "latitude_deg": "38.053903", + "longitude_deg": "-103.238698", + "elevation_ft": "3915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Las Animas", + "scheduled_service": "no", + "gps_code": "K7V9", + "local_code": "7V9" + }, + { + "id": "19090", + "ident": "K7W5", + "type": "small_airport", + "name": "Henry County Airport", + "latitude_deg": "41.374298", + "longitude_deg": "-84.0679", + "elevation_ft": "683", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Napoleon", + "scheduled_service": "no", + "local_code": "7W5", + "keywords": "OH17" + }, + { + "id": "19091", + "ident": "K7W6", + "type": "small_airport", + "name": "Hyde County Airport", + "latitude_deg": "35.562400817871094", + "longitude_deg": "-75.9552001953125", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Engelhard", + "scheduled_service": "no", + "gps_code": "K7W6", + "local_code": "7W6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hyde_County_Airport" + }, + { + "id": "19092", + "ident": "K7Y4", + "type": "small_airport", + "name": "Bagley Municipal Airport", + "latitude_deg": "47.525001525878906", + "longitude_deg": "-95.36080169677734", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Bagley", + "scheduled_service": "no", + "gps_code": "K7Y4", + "local_code": "7Y4" + }, + { + "id": "19093", + "ident": "K80D", + "type": "small_airport", + "name": "Clare County Airport", + "latitude_deg": "44.052799224853516", + "longitude_deg": "-84.8125", + "elevation_ft": "1142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Harrison", + "scheduled_service": "no", + "gps_code": "K80D", + "local_code": "80D" + }, + { + "id": "19094", + "ident": "K80F", + "type": "small_airport", + "name": "Antlers Municipal Airport", + "latitude_deg": "34.1926002502", + "longitude_deg": "-95.6499023438", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Antlers", + "scheduled_service": "no", + "gps_code": "80F", + "iata_code": "ATE", + "local_code": "80F", + "wikipedia_link": "https://en.wikipedia.org/wiki/Antlers_Municipal_Airport" + }, + { + "id": "19095", + "ident": "K80T", + "type": "small_airport", + "name": "Quincy Municipal Airport", + "latitude_deg": "47.211601", + "longitude_deg": "-119.839996", + "elevation_ft": "1271", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Quincy", + "scheduled_service": "no", + "local_code": "80T", + "keywords": "80WA" + }, + { + "id": "19096", + "ident": "K81B", + "type": "small_airport", + "name": "Oxford County Regional Airport", + "latitude_deg": "44.15739822387695", + "longitude_deg": "-70.4813003540039", + "elevation_ft": "346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Oxford", + "scheduled_service": "no", + "gps_code": "K81B", + "local_code": "81B" + }, + { + "id": "19097", + "ident": "K81R", + "type": "small_airport", + "name": "San Saba County Municipal Airport", + "latitude_deg": "31.235200881958008", + "longitude_deg": "-98.71700286865234", + "elevation_ft": "1249", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Saba", + "scheduled_service": "no", + "gps_code": "K81R", + "local_code": "81R" + }, + { + "id": "19098", + "ident": "K82A", + "type": "small_airport", + "name": "Marion County Airport", + "latitude_deg": "32.28239822387695", + "longitude_deg": "-84.50350189208984", + "elevation_ft": "682", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Buena Vista", + "scheduled_service": "no", + "gps_code": "K82A", + "local_code": "82A" + }, + { + "id": "19099", + "ident": "K82C", + "type": "small_airport", + "name": "Mauston New Lisbon Union Airport", + "latitude_deg": "43.83869934082031", + "longitude_deg": "-90.13770294189453", + "elevation_ft": "906", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "New Lisbon", + "scheduled_service": "no", + "gps_code": "K82C", + "local_code": "82C" + }, + { + "id": "19100", + "ident": "K82J", + "type": "small_airport", + "name": "Ferguson Airport", + "latitude_deg": "30.398799896240234", + "longitude_deg": "-87.34860229492188", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pensacola", + "scheduled_service": "no", + "gps_code": "K82J", + "local_code": "82J" + }, + { + "id": "19101", + "ident": "K82V", + "type": "small_airport", + "name": "Pine Bluffs Municipal Airport", + "latitude_deg": "41.153301239", + "longitude_deg": "-104.129997253", + "elevation_ft": "5152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Pine Bluffs", + "scheduled_service": "no", + "gps_code": "82V", + "local_code": "82V" + }, + { + "id": "19102", + "ident": "K83D", + "type": "small_airport", + "name": "Mackinac County Airport", + "latitude_deg": "45.89170074", + "longitude_deg": "-84.73809814", + "elevation_ft": "624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "St Ignace", + "scheduled_service": "no", + "gps_code": "K83D", + "local_code": "83D" + }, + { + "id": "19103", + "ident": "K84D", + "type": "small_airport", + "name": "Cheyenne Eagle Butte Airport", + "latitude_deg": "44.9844017", + "longitude_deg": "-101.2509995", + "elevation_ft": "2448", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Eagle Butte", + "scheduled_service": "no", + "gps_code": "K84D", + "local_code": "84D" + }, + { + "id": "19104", + "ident": "K84R", + "type": "small_airport", + "name": "Smithville Crawford Municipal Airport", + "latitude_deg": "30.028157", + "longitude_deg": "-97.167028", + "elevation_ft": "323", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Smithville", + "scheduled_service": "no", + "gps_code": "K84R", + "local_code": "84R" + }, + { + "id": "19105", + "ident": "K86F", + "type": "small_airport", + "name": "Carnegie Municipal Airport", + "latitude_deg": "35.123600006103516", + "longitude_deg": "-98.57520294189453", + "elevation_ft": "1354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Carnegie", + "scheduled_service": "no", + "gps_code": "K86F", + "local_code": "86F" + }, + { + "id": "19106", + "ident": "K87", + "type": "small_airport", + "name": "Hiawatha Municipal Airport", + "latitude_deg": "39.87919998168945", + "longitude_deg": "-95.52529907226562", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Hiawatha", + "scheduled_service": "no", + "gps_code": "K87", + "local_code": "K87" + }, + { + "id": "19107", + "ident": "K87I", + "type": "small_airport", + "name": "Yazoo County Airport", + "latitude_deg": "32.883201599121094", + "longitude_deg": "-90.4636001586914", + "elevation_ft": "104", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Yazoo City", + "scheduled_service": "no", + "gps_code": "K87I", + "local_code": "87I" + }, + { + "id": "19108", + "ident": "K87K", + "type": "small_airport", + "name": "El Dorado Springs Memorial Airport", + "latitude_deg": "37.8567008972168", + "longitude_deg": "-93.99909973144531", + "elevation_ft": "931", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "El Dorado Springs", + "scheduled_service": "no", + "gps_code": "K87K", + "local_code": "87K" + }, + { + "id": "19109", + "ident": "K87Y", + "type": "small_airport", + "name": "Blackhawk Airfield", + "latitude_deg": "43.10490036", + "longitude_deg": "-89.1855011", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "K87Y", + "local_code": "87Y" + }, + { + "id": "19111", + "ident": "K88M", + "type": "small_airport", + "name": "Eureka Airport", + "latitude_deg": "48.97380065917969", + "longitude_deg": "-115.07599639892578", + "elevation_ft": "2668", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Eureka", + "scheduled_service": "no", + "gps_code": "K88M", + "local_code": "88M" + }, + { + "id": "19112", + "ident": "K88R", + "type": "small_airport", + "name": "Austin Air Ranch Airport", + "latitude_deg": "30.47363", + "longitude_deg": "-98.121497", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Spicewood", + "scheduled_service": "no", + "local_code": "88R", + "keywords": "Spicewood" + }, + { + "id": "19114", + "ident": "K8A0", + "type": "small_airport", + "name": "Albertville Regional Airport/Thomas J Brumlik Field", + "latitude_deg": "34.22909927", + "longitude_deg": "-86.25579834", + "elevation_ft": "1032", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Albertville", + "scheduled_service": "no", + "gps_code": "8A0", + "local_code": "8A0", + "home_link": "http://albertvilleaviation.biz/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Albertville_Regional_Airport" + }, + { + "id": "19115", + "ident": "K8A1", + "type": "small_airport", + "name": "Guntersville Municipal Joe Starnes Field", + "latitude_deg": "34.39939880371094", + "longitude_deg": "-86.27020263671875", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Guntersville", + "scheduled_service": "no", + "gps_code": "K8A1", + "local_code": "8A1" + }, + { + "id": "19116", + "ident": "K8A3", + "type": "small_airport", + "name": "Livingston Municipal Airport", + "latitude_deg": "36.41210174560547", + "longitude_deg": "-85.31159973144531", + "elevation_ft": "1372", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Livingston", + "scheduled_service": "no", + "gps_code": "K8A3", + "local_code": "8A3" + }, + { + "id": "19117", + "ident": "K8A6", + "type": "closed", + "name": "Wilgrove Air Park", + "latitude_deg": "35.21385", + "longitude_deg": "-80.668284", + "elevation_ft": "799", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Charlotte", + "scheduled_service": "no", + "iata_code": "QWG", + "home_link": "https://web.archive.org/web/20200910142246/http://www.wilgroveairport.net/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wilgrove_Air_Park", + "keywords": "8A6" + }, + { + "id": "19118", + "ident": "K8B0", + "type": "small_airport", + "name": "Steven A. Bean Municipal Airport", + "latitude_deg": "44.991902", + "longitude_deg": "-70.664597", + "elevation_ft": "1825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Rangeley", + "scheduled_service": "no", + "local_code": "8B0", + "wikipedia_link": "https://en.wikipedia.org/wiki/Steven_A._Bean_Municipal_Airport" + }, + { + "id": "19119", + "ident": "K8B1", + "type": "small_airport", + "name": "Hawthorne Feather Airpark", + "latitude_deg": "43.061958", + "longitude_deg": "-71.905343", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "K8B1", + "local_code": "8B1" + }, + { + "id": "19120", + "ident": "K8B5", + "type": "small_airport", + "name": "Tanner Hiller Airport", + "latitude_deg": "42.35639953613281", + "longitude_deg": "-72.13009643554688", + "elevation_ft": "584", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Barre/Barre Plains", + "scheduled_service": "no", + "gps_code": "K8B5", + "local_code": "8B5" + }, + { + "id": "19121", + "ident": "K8C4", + "type": "small_airport", + "name": "Mathews Memorial Airport", + "latitude_deg": "41.76340103149414", + "longitude_deg": "-91.15290069580078", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Tipton", + "scheduled_service": "no", + "gps_code": "K8C4", + "local_code": "8C4" + }, + { + "id": "19122", + "ident": "K8D1", + "type": "small_airport", + "name": "New Holstein Municipal Airport", + "latitude_deg": "43.9441986084", + "longitude_deg": "-88.1135025024", + "elevation_ft": "992", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "New Holstein", + "scheduled_service": "no", + "gps_code": "8D1", + "local_code": "8D1" + }, + { + "id": "19123", + "ident": "K8D3", + "type": "small_airport", + "name": "Sisseton Municipal Airport", + "latitude_deg": "45.670799255371094", + "longitude_deg": "-96.99620056152344", + "elevation_ft": "1161", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Sisseton", + "scheduled_service": "no", + "gps_code": "K8D3", + "local_code": "8D3" + }, + { + "id": "19124", + "ident": "K8D7", + "type": "small_airport", + "name": "Clark County Airport", + "latitude_deg": "44.89500045776367", + "longitude_deg": "-97.71080017089844", + "elevation_ft": "1792", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Clark", + "scheduled_service": "no", + "gps_code": "K8D7", + "local_code": "8D7" + }, + { + "id": "19125", + "ident": "K8F3", + "type": "small_airport", + "name": "Crosbyton Municipal Airport", + "latitude_deg": "33.623798", + "longitude_deg": "-101.240997", + "elevation_ft": "3018", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crosbyton", + "scheduled_service": "no", + "local_code": "8F3" + }, + { + "id": "19127", + "ident": "K8F5", + "type": "small_airport", + "name": "Greater Morris County Airport", + "latitude_deg": "33.148107", + "longitude_deg": "-94.700174", + "elevation_ft": "402", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Daingerfield", + "scheduled_service": "no", + "gps_code": "K8F5", + "local_code": "8F5" + }, + { + "id": "19128", + "ident": "K8F6", + "type": "small_airport", + "name": "Murdo Municipal Airport", + "latitude_deg": "43.8517", + "longitude_deg": "-100.711998", + "elevation_ft": "2263", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Murdo", + "scheduled_service": "no", + "local_code": "8F6", + "keywords": "SD32" + }, + { + "id": "19129", + "ident": "K8G1", + "type": "small_airport", + "name": "Willard Municipal Airport", + "latitude_deg": "41.0387", + "longitude_deg": "-82.724602", + "elevation_ft": "967", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Willard", + "scheduled_service": "no", + "gps_code": "K8G1", + "local_code": "8G1" + }, + { + "id": "19130", + "ident": "K8G2", + "type": "small_airport", + "name": "Corry Lawrence Airport", + "latitude_deg": "41.90760040283203", + "longitude_deg": "-79.64109802246094", + "elevation_ft": "1766", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Corry", + "scheduled_service": "no", + "gps_code": "K8G2", + "local_code": "8G2" + }, + { + "id": "19131", + "ident": "K8G6", + "type": "small_airport", + "name": "Harrison County Airport", + "latitude_deg": "40.2384", + "longitude_deg": "-81.012901", + "elevation_ft": "1174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cadiz", + "scheduled_service": "no", + "gps_code": "K8G6", + "local_code": "8G6" + }, + { + "id": "19133", + "ident": "K8J7", + "type": "small_airport", + "name": "Tomlinson Field", + "latitude_deg": "47.6963996887207", + "longitude_deg": "-99.1312026977539", + "elevation_ft": "1533", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "New Rockford", + "scheduled_service": "no", + "gps_code": "K8J7", + "local_code": "8J7" + }, + { + "id": "19134", + "ident": "K8K2", + "type": "small_airport", + "name": "Harper Municipal Airport", + "latitude_deg": "37.278319", + "longitude_deg": "-98.043243", + "elevation_ft": "1427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Harper", + "scheduled_service": "no", + "gps_code": "K8K2", + "local_code": "8K2" + }, + { + "id": "19135", + "ident": "K8M1", + "type": "small_airport", + "name": "Booneville Baldwyn Airport", + "latitude_deg": "34.59080123901367", + "longitude_deg": "-88.64759826660156", + "elevation_ft": "384", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Booneville/Baldwyn", + "scheduled_service": "no", + "gps_code": "K8M1", + "local_code": "8M1" + }, + { + "id": "19136", + "ident": "K8M8", + "type": "small_airport", + "name": "Garland Airport", + "latitude_deg": "44.80649948120117", + "longitude_deg": "-84.27619934082031", + "elevation_ft": "1218", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lewiston", + "scheduled_service": "no", + "gps_code": "K8M8", + "local_code": "8M8" + }, + { + "id": "19137", + "ident": "K8M9", + "type": "small_airport", + "name": "Providence Webster County Airport", + "latitude_deg": "37.424800872802734", + "longitude_deg": "-87.73609924316406", + "elevation_ft": "393", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Providence", + "scheduled_service": "no", + "gps_code": "K8M9", + "local_code": "8M9" + }, + { + "id": "19138", + "ident": "K8N2", + "type": "small_airport", + "name": "Skydive Chicago Airport", + "latitude_deg": "41.399799", + "longitude_deg": "-88.7939", + "elevation_ft": "616", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Ottawa", + "scheduled_service": "no", + "local_code": "8N2" + }, + { + "id": "19139", + "ident": "K8N8", + "type": "small_airport", + "name": "Danville Airport", + "latitude_deg": "40.948344", + "longitude_deg": "-76.64408", + "elevation_ft": "559", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "K8N8", + "local_code": "8N8" + }, + { + "id": "19140", + "ident": "K8S0", + "type": "small_airport", + "name": "Starr Browning Airstrip", + "latitude_deg": "48.60139846801758", + "longitude_deg": "-113.11499786376953", + "elevation_ft": "4655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Browning", + "scheduled_service": "no", + "gps_code": "K8S0", + "local_code": "8S0" + }, + { + "id": "19141", + "ident": "K8S1", + "type": "small_airport", + "name": "Polson Airport", + "latitude_deg": "47.69540023803711", + "longitude_deg": "-114.18499755859375", + "elevation_ft": "2941", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Polson", + "scheduled_service": "no", + "gps_code": "K8S1", + "local_code": "8S1" + }, + { + "id": "19142", + "ident": "K8T6", + "type": "small_airport", + "name": "Live Oak County Airport", + "latitude_deg": "28.362801", + "longitude_deg": "-98.116501", + "elevation_ft": "129", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "George West", + "scheduled_service": "no", + "gps_code": "K8T6", + "local_code": "8T6" + }, + { + "id": "19143", + "ident": "K8T8", + "type": "small_airport", + "name": "San Geronimo Airpark", + "latitude_deg": "29.510499954223633", + "longitude_deg": "-98.79840087890625", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "K8T8", + "local_code": "8T8" + }, + { + "id": "19144", + "ident": "K8U2", + "type": "small_airport", + "name": "Schafer USFS Airport", + "latitude_deg": "48.07963", + "longitude_deg": "-113.243294", + "elevation_ft": "4855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Hungry Horse", + "scheduled_service": "no", + "local_code": "8U2" + }, + { + "id": "19145", + "ident": "K8U6", + "type": "small_airport", + "name": "Terry Airport", + "latitude_deg": "46.777099609375", + "longitude_deg": "-105.31300354003906", + "elevation_ft": "2283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Terry", + "scheduled_service": "no", + "gps_code": "K8U6", + "local_code": "8U6" + }, + { + "id": "19146", + "ident": "K8U8", + "type": "small_airport", + "name": "Townsend Airport", + "latitude_deg": "46.331199645996094", + "longitude_deg": "-111.48300170898438", + "elevation_ft": "3893", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Townsend", + "scheduled_service": "no", + "gps_code": "K8U8", + "local_code": "8U8" + }, + { + "id": "19147", + "ident": "K8V1", + "type": "small_airport", + "name": "Astronaut Kent Rominger Airport", + "latitude_deg": "37.71360016", + "longitude_deg": "-106.3539963", + "elevation_ft": "7949", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Del Norte", + "scheduled_service": "no", + "gps_code": "KRCV", + "local_code": "RCV", + "home_link": "https://www.codot.gov/programs/aeronautics/colorado-airport-system/general-aviation-airports/ga-airports-d/RCV", + "keywords": "8V1, Del Norte Municipal & County Airport" + }, + { + "id": "19148", + "ident": "K8V2", + "type": "small_airport", + "name": "Stuart Atkinson Municipal Airport", + "latitude_deg": "42.5625", + "longitude_deg": "-99.03790283203125", + "elevation_ft": "2130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Atkinson", + "scheduled_service": "no", + "gps_code": "K8V2", + "local_code": "8V2" + }, + { + "id": "19149", + "ident": "K8V3", + "type": "small_airport", + "name": "Parkston Municipal Airport", + "latitude_deg": "43.37919998168945", + "longitude_deg": "-97.97119903564453", + "elevation_ft": "1415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Parkston", + "scheduled_service": "no", + "gps_code": "K8V3", + "local_code": "8V3" + }, + { + "id": "19150", + "ident": "K8V7", + "type": "small_airport", + "name": "Springfield Municipal Airport", + "latitude_deg": "37.458698", + "longitude_deg": "-102.617996", + "elevation_ft": "4390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "KSPD", + "local_code": "8V7" + }, + { + "id": "19151", + "ident": "K8W2", + "type": "small_airport", + "name": "New Market Airport", + "latitude_deg": "38.655683", + "longitude_deg": "-78.708995", + "elevation_ft": "975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "New Market", + "scheduled_service": "no", + "gps_code": "K8W2", + "local_code": "8W2", + "keywords": "Skydive Shenandoah" + }, + { + "id": "19152", + "ident": "K8WC", + "type": "small_airport", + "name": "Washington County Airport", + "latitude_deg": "37.92919921875", + "longitude_deg": "-90.73149871826172", + "elevation_ft": "959", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Potosi", + "scheduled_service": "no", + "gps_code": "K8WC", + "local_code": "8WC" + }, + { + "id": "19153", + "ident": "K8Y6", + "type": "small_airport", + "name": "Leaders Clear Lake Airport", + "latitude_deg": "45.443693", + "longitude_deg": "-93.970343", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Clear Lake", + "scheduled_service": "no", + "gps_code": "K8Y6", + "local_code": "8Y6" + }, + { + "id": "19154", + "ident": "K90F", + "type": "small_airport", + "name": "Jewel B Callaham Municipal Airport", + "latitude_deg": "34.014", + "longitude_deg": "-94.758598", + "elevation_ft": "404", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Broken Bow", + "scheduled_service": "no", + "gps_code": "K90F", + "local_code": "90F" + }, + { + "id": "19155", + "ident": "K91", + "type": "small_airport", + "name": "Horton Municipal Airport", + "latitude_deg": "39.67919921875", + "longitude_deg": "-95.53359985351562", + "elevation_ft": "1134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Horton", + "scheduled_service": "no", + "gps_code": "K91", + "local_code": "K91" + }, + { + "id": "19156", + "ident": "K91F", + "type": "small_airport", + "name": "Arrowhead Airport", + "latitude_deg": "35.15629959106445", + "longitude_deg": "-95.62129974365234", + "elevation_ft": "851", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Canadian", + "scheduled_service": "no", + "gps_code": "K91F", + "local_code": "91F" + }, + { + "id": "19157", + "ident": "K92F", + "type": "small_airport", + "name": "Chattanooga Sky Harbor Airport", + "latitude_deg": "34.368698", + "longitude_deg": "-98.682098", + "elevation_ft": "1135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Chattanooga", + "scheduled_service": "no", + "local_code": "92F" + }, + { + "id": "19158", + "ident": "K93C", + "type": "small_airport", + "name": "Richland Airport", + "latitude_deg": "43.28340148925781", + "longitude_deg": "-90.29830169677734", + "elevation_ft": "742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Richland Center", + "scheduled_service": "no", + "gps_code": "K93C", + "local_code": "93C" + }, + { + "id": "19159", + "ident": "K93F", + "type": "small_airport", + "name": "Mignon Laird Municipal Airport", + "latitude_deg": "35.60749816894531", + "longitude_deg": "-99.70469665527344", + "elevation_ft": "2084", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Cheyenne", + "scheduled_service": "no", + "gps_code": "K93F", + "local_code": "93F" + }, + { + "id": "19160", + "ident": "K93Y", + "type": "small_airport", + "name": "David City Municipal Airport", + "latitude_deg": "41.23089981", + "longitude_deg": "-97.12290192", + "elevation_ft": "1617", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "David City", + "scheduled_service": "no", + "gps_code": "K93Y", + "local_code": "93Y" + }, + { + "id": "19161", + "ident": "K94E", + "type": "small_airport", + "name": "Whiskey Creek Airport", + "latitude_deg": "32.759404", + "longitude_deg": "-108.209624", + "elevation_ft": "6126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Silver City", + "scheduled_service": "no", + "gps_code": "K94E", + "local_code": "94E" + }, + { + "id": "19162", + "ident": "K94K", + "type": "small_airport", + "name": "Cassville Municipal Airport", + "latitude_deg": "36.6973991394043", + "longitude_deg": "-93.90049743652344", + "elevation_ft": "1482", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Cassville", + "scheduled_service": "no", + "gps_code": "K94K", + "local_code": "94K" + }, + { + "id": "19163", + "ident": "K94R", + "type": "small_airport", + "name": "Gav Air Airport", + "latitude_deg": "29.2661", + "longitude_deg": "-96.007698", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wharton", + "scheduled_service": "no", + "local_code": "94R", + "keywords": "Lackey Aviation Airport" + }, + { + "id": "19164", + "ident": "K95D", + "type": "small_airport", + "name": "Beulah Airport", + "latitude_deg": "47.25080108642578", + "longitude_deg": "-101.81400299072266", + "elevation_ft": "1791", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Beulah", + "scheduled_service": "no", + "gps_code": "K95D", + "local_code": "95D" + }, + { + "id": "19165", + "ident": "K95E", + "type": "small_airport", + "name": "Stallion Army Air Field", + "latitude_deg": "33.814598", + "longitude_deg": "-106.643715", + "elevation_ft": "4925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Socorro", + "scheduled_service": "no", + "gps_code": "K95E", + "local_code": "95E" + }, + { + "id": "19166", + "ident": "K95F", + "type": "small_airport", + "name": "Cleveland Municipal Airport", + "latitude_deg": "36.28379821777344", + "longitude_deg": "-96.46330261230469", + "elevation_ft": "912", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "K95F", + "local_code": "95F" + }, + { + "id": "19167", + "ident": "K96", + "type": "small_airport", + "name": "Tuscola Airport", + "latitude_deg": "39.78089904785156", + "longitude_deg": "-88.30619812011719", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Tuscola", + "scheduled_service": "no", + "gps_code": "K96", + "local_code": "K96" + }, + { + "id": "19168", + "ident": "K96D", + "type": "small_airport", + "name": "Walhalla Municipal Airport", + "latitude_deg": "48.94060134887695", + "longitude_deg": "-97.90280151367188", + "elevation_ft": "953", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Walhalla", + "scheduled_service": "no", + "gps_code": "K96D", + "local_code": "96D" + }, + { + "id": "19169", + "ident": "K97M", + "type": "small_airport", + "name": "Ekalaka Airport", + "latitude_deg": "45.87779998779297", + "longitude_deg": "-104.53700256347656", + "elevation_ft": "3503", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Ekalaka", + "scheduled_service": "no", + "gps_code": "K97M", + "local_code": "97M" + }, + { + "id": "19170", + "ident": "K98", + "type": "small_airport", + "name": "Allison Municipal Airport", + "latitude_deg": "42.76390075683594", + "longitude_deg": "-92.80439758300781", + "elevation_ft": "1053", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Allison", + "scheduled_service": "no", + "gps_code": "K98", + "local_code": "K98" + }, + { + "id": "19171", + "ident": "K98D", + "type": "small_airport", + "name": "Onida Municipal Airport", + "latitude_deg": "44.700801849365234", + "longitude_deg": "-100.10099792480469", + "elevation_ft": "1874", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Onida", + "scheduled_service": "no", + "gps_code": "K98D", + "local_code": "98D" + }, + { + "id": "19172", + "ident": "K99N", + "type": "small_airport", + "name": "Bamberg County Airport", + "latitude_deg": "33.304500579833984", + "longitude_deg": "-81.1083984375", + "elevation_ft": "231", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Bamberg", + "scheduled_service": "no", + "gps_code": "K99N", + "local_code": "99N" + }, + { + "id": "19173", + "ident": "K99V", + "type": "small_airport", + "name": "Crawford Airport", + "latitude_deg": "38.703736", + "longitude_deg": "-107.646983", + "elevation_ft": "6470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Crawford", + "scheduled_service": "no", + "local_code": "99V" + }, + { + "id": "19174", + "ident": "K9A0", + "type": "small_airport", + "name": "Lumpkin County Wimpys Airport", + "latitude_deg": "34.57929992675781", + "longitude_deg": "-84.02069854736328", + "elevation_ft": "1311", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Dahlonega", + "scheduled_service": "no", + "gps_code": "K9A0", + "local_code": "9A0" + }, + { + "id": "19175", + "ident": "K9A1", + "type": "small_airport", + "name": "Covington Municipal Airport", + "latitude_deg": "33.63249969", + "longitude_deg": "-83.84960175", + "elevation_ft": "809", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Covington", + "scheduled_service": "no", + "gps_code": "KCVC", + "local_code": "CVC", + "home_link": "http://www.covingtonmunicipalairport.com/about-us", + "wikipedia_link": "https://en.wikipedia.org/wiki/Covington_Municipal_Airport_(Georgia)", + "keywords": "9A1" + }, + { + "id": "19176", + "ident": "K9A4", + "type": "small_airport", + "name": "Lawrence County Airport", + "latitude_deg": "34.659401", + "longitude_deg": "-87.348801", + "elevation_ft": "588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Courtland", + "scheduled_service": "no", + "gps_code": "K9A4", + "local_code": "9A4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Courtland_Airport" + }, + { + "id": "19177", + "ident": "K9A5", + "type": "small_airport", + "name": "Barwick Lafayette Airport", + "latitude_deg": "34.6885986328125", + "longitude_deg": "-85.29039764404297", + "elevation_ft": "777", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "K9A5", + "local_code": "9A5" + }, + { + "id": "19179", + "ident": "K9C8", + "type": "small_airport", + "name": "Evart Municipal Airport", + "latitude_deg": "43.89590072631836", + "longitude_deg": "-85.2791976928711", + "elevation_ft": "1018", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Evart", + "scheduled_service": "no", + "gps_code": "K9C8", + "local_code": "9C8" + }, + { + "id": "19180", + "ident": "K9D0", + "type": "small_airport", + "name": "Highmore Municipal Airport", + "latitude_deg": "44.54159927368164", + "longitude_deg": "-99.44619750976562", + "elevation_ft": "1854", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Highmore", + "scheduled_service": "no", + "gps_code": "K9D0", + "local_code": "9D0" + }, + { + "id": "19181", + "ident": "K9D1", + "type": "small_airport", + "name": "Gregory Municipal Airport - Flynn Field", + "latitude_deg": "43.22169876", + "longitude_deg": "-99.40329742", + "elevation_ft": "2168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Gregory", + "scheduled_service": "no", + "gps_code": "9D1", + "local_code": "9D1", + "home_link": "http://www.cityofgregory.com/index.asp?SEC=AC3BF39D-30EA-4BE6-A29B-89817A7CDC5D&Type=B_BASIC" + }, + { + "id": "19182", + "ident": "K9D2", + "type": "small_airport", + "name": "Harding County Airport", + "latitude_deg": "45.58060073852539", + "longitude_deg": "-103.52999877929688", + "elevation_ft": "2889", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Buffalo", + "scheduled_service": "no", + "gps_code": "K9D2", + "local_code": "9D2" + }, + { + "id": "19183", + "ident": "K9D4", + "type": "small_airport", + "name": "Deck Airport", + "latitude_deg": "40.35179901", + "longitude_deg": "-76.32959747", + "elevation_ft": "523", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Myerstown", + "scheduled_service": "no", + "gps_code": "K9D4", + "local_code": "9D4" + }, + { + "id": "19184", + "ident": "K9D7", + "type": "small_airport", + "name": "Cando Municipal Airport", + "latitude_deg": "48.47999954", + "longitude_deg": "-99.23590088", + "elevation_ft": "1481", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Cando", + "scheduled_service": "no", + "gps_code": "K9D7", + "local_code": "9D7" + }, + { + "id": "19185", + "ident": "K9D9", + "type": "small_airport", + "name": "Hastings Airport", + "latitude_deg": "42.66360092163086", + "longitude_deg": "-85.34629821777344", + "elevation_ft": "801", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Hastings", + "scheduled_service": "no", + "gps_code": "K9D9", + "local_code": "9D9" + }, + { + "id": "19186", + "ident": "K9F0", + "type": "small_airport", + "name": "Dublin Municipal Airport", + "latitude_deg": "32.068049", + "longitude_deg": "-98.325774", + "elevation_ft": "1495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dublin", + "scheduled_service": "no", + "local_code": "9F0", + "home_link": "https://dublinaero.com/" + }, + { + "id": "19187", + "ident": "K9F8", + "type": "small_airport", + "name": "Hoven Municipal Airport", + "latitude_deg": "45.257599", + "longitude_deg": "-99.797798", + "elevation_ft": "1884", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Hoven", + "scheduled_service": "no", + "local_code": "9F8", + "keywords": "SD22" + }, + { + "id": "19188", + "ident": "K9F9", + "type": "small_airport", + "name": "Sycamore Strip", + "latitude_deg": "32.628501892089844", + "longitude_deg": "-97.35359954833984", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "K9F9", + "local_code": "9F9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sycamore_Strip_Airport" + }, + { + "id": "19189", + "ident": "K9G2", + "type": "small_airport", + "name": "Prices Airport", + "latitude_deg": "42.807598", + "longitude_deg": "-83.769897", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Linden", + "scheduled_service": "no", + "local_code": "9G2" + }, + { + "id": "19190", + "ident": "K9G3", + "type": "small_airport", + "name": "Akron Airport/Jesson Field", + "latitude_deg": "43.021099", + "longitude_deg": "-78.482498", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Akron", + "scheduled_service": "no", + "local_code": "9G3", + "home_link": "http://www.christianairmen.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Akron_Airport" + }, + { + "id": "19191", + "ident": "K9G8", + "type": "small_airport", + "name": "Ebensburg Airport", + "latitude_deg": "40.46120071411133", + "longitude_deg": "-78.77519989013672", + "elevation_ft": "2099", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Ebensburg", + "scheduled_service": "no", + "gps_code": "K9G8", + "local_code": "9G8" + }, + { + "id": "19193", + "ident": "K9K7", + "type": "small_airport", + "name": "Ellsworth Municipal Airport", + "latitude_deg": "38.75040054321289", + "longitude_deg": "-98.22930145263672", + "elevation_ft": "1615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Ellsworth", + "scheduled_service": "no", + "gps_code": "K9K7", + "local_code": "9K7" + }, + { + "id": "19194", + "ident": "K9K8", + "type": "small_airport", + "name": "Kingman Airport Clyde Cessna Field", + "latitude_deg": "37.66899872", + "longitude_deg": "-98.12390137", + "elevation_ft": "1607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Kingman", + "scheduled_service": "no", + "gps_code": "K9K8", + "local_code": "9K8" + }, + { + "id": "19195", + "ident": "K9L2", + "type": "small_airport", + "name": "Edwards Af Aux North Base Airport", + "latitude_deg": "34.99079895019531", + "longitude_deg": "-117.86299896240234", + "elevation_ft": "2299", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Edwards", + "scheduled_service": "no", + "gps_code": "K9L2", + "local_code": "9L2" + }, + { + "id": "19196", + "ident": "K9M4", + "type": "small_airport", + "name": "Ackerman Choctaw County Airport", + "latitude_deg": "33.30172", + "longitude_deg": "-89.227352", + "elevation_ft": "552", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Ackerman", + "scheduled_service": "no", + "local_code": "9M4" + }, + { + "id": "19197", + "ident": "K9M6", + "type": "small_airport", + "name": "Kelly Airport", + "latitude_deg": "32.84920120239258", + "longitude_deg": "-91.40390014648438", + "elevation_ft": "112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Oak Grove", + "scheduled_service": "no", + "gps_code": "K9M6", + "local_code": "9M6" + }, + { + "id": "19198", + "ident": "K9M8", + "type": "small_airport", + "name": "Sheridan Municipal Airport", + "latitude_deg": "34.328399658203125", + "longitude_deg": "-92.35099792480469", + "elevation_ft": "232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Sheridan", + "scheduled_service": "no", + "gps_code": "K9M8", + "local_code": "9M8" + }, + { + "id": "19199", + "ident": "K9S2", + "type": "small_airport", + "name": "Scobey Airport", + "latitude_deg": "48.807701110839844", + "longitude_deg": "-105.43900299072266", + "elevation_ft": "2432", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Scobey", + "scheduled_service": "no", + "gps_code": "K9S2", + "local_code": "9S2" + }, + { + "id": "19200", + "ident": "K9S4", + "type": "small_airport", + "name": "Mineral County Airport", + "latitude_deg": "47.16830062866211", + "longitude_deg": "-114.85399627685547", + "elevation_ft": "2787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Superior", + "scheduled_service": "no", + "gps_code": "K9S4", + "local_code": "9S4" + }, + { + "id": "19201", + "ident": "K9S5", + "type": "small_airport", + "name": "Three Forks Airport", + "latitude_deg": "45.87810134887695", + "longitude_deg": "-111.56900024414062", + "elevation_ft": "4089", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Three Forks", + "scheduled_service": "no", + "gps_code": "K9S5", + "local_code": "9S5" + }, + { + "id": "19202", + "ident": "K9S9", + "type": "small_airport", + "name": "Lexington Airport", + "latitude_deg": "45.454102", + "longitude_deg": "-119.690001", + "elevation_ft": "1634", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Lexington", + "scheduled_service": "no", + "local_code": "9S9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lexington_Airport_(Oregon)" + }, + { + "id": "19203", + "ident": "K9U0", + "type": "small_airport", + "name": "Turner Airport", + "latitude_deg": "48.85419845581055", + "longitude_deg": "-108.40899658203125", + "elevation_ft": "3049", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Turner", + "scheduled_service": "no", + "gps_code": "K9U0", + "local_code": "9U0" + }, + { + "id": "19204", + "ident": "K9U3", + "type": "small_airport", + "name": "Austin Airport", + "latitude_deg": "39.467998", + "longitude_deg": "-117.195", + "elevation_ft": "5730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "KTMT", + "iata_code": "ASQ", + "local_code": "TMT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Austin_Airport", + "keywords": "9U3" + }, + { + "id": "19205", + "ident": "K9U4", + "type": "small_airport", + "name": "Dixon Airport", + "latitude_deg": "41.038299560547", + "longitude_deg": "-107.49700164795", + "elevation_ft": "6520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Dixon", + "scheduled_service": "no", + "gps_code": "KDWX", + "local_code": "DWX", + "home_link": "http://www.carbonwy.com/index.aspx?nid=987", + "keywords": "DIA, KDIA, 9U4" + }, + { + "id": "19206", + "ident": "K9U7", + "type": "small_airport", + "name": "Currant Ranch Airport", + "latitude_deg": "38.736000061035156", + "longitude_deg": "-115.4800033569336", + "elevation_ft": "5181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Currant", + "scheduled_service": "no", + "gps_code": "K9U7", + "local_code": "9U7" + }, + { + "id": "19207", + "ident": "K9V5", + "type": "small_airport", + "name": "Modisett Airport", + "latitude_deg": "42.736485", + "longitude_deg": "-102.444291", + "elevation_ft": "3751", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Rushville", + "scheduled_service": "no", + "local_code": "9V5" + }, + { + "id": "19208", + "ident": "K9V6", + "type": "small_airport", + "name": "Martin Municipal Airport", + "latitude_deg": "43.16559982299805", + "longitude_deg": "-101.71299743652344", + "elevation_ft": "3293", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Martin", + "scheduled_service": "no", + "gps_code": "K9V6", + "local_code": "9V6" + }, + { + "id": "19209", + "ident": "K9V7", + "type": "small_airport", + "name": "Eads Municipal Airport", + "latitude_deg": "38.478479", + "longitude_deg": "-102.810869", + "elevation_ft": "4245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Eads", + "scheduled_service": "no", + "local_code": "9V7" + }, + { + "id": "19210", + "ident": "K9V9", + "type": "small_airport", + "name": "Chamberlain Municipal Airport", + "latitude_deg": "43.7661018371582", + "longitude_deg": "-99.32129669189453", + "elevation_ft": "1695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Chamberlain", + "scheduled_service": "no", + "gps_code": "K9V9", + "local_code": "9V9" + }, + { + "id": "19211", + "ident": "K9X1", + "type": "closed", + "name": "North Houston Airport", + "latitude_deg": "30.1534", + "longitude_deg": "-95.321999", + "elevation_ft": "122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Porter", + "scheduled_service": "no", + "gps_code": "K9X1", + "local_code": "9X1", + "home_link": "https://www.northhoustonairport.net/", + "keywords": "Williams Airport" + }, + { + "id": "19212", + "ident": "K9Y1", + "type": "small_airport", + "name": "Weydahl Field", + "latitude_deg": "47.392799377441406", + "longitude_deg": "-102.77100372314453", + "elevation_ft": "2256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Killdeer", + "scheduled_service": "no", + "gps_code": "K9Y1", + "local_code": "9Y1" + }, + { + "id": "19213", + "ident": "KA08", + "type": "small_airport", + "name": "Vaiden Field", + "latitude_deg": "32.512401580811", + "longitude_deg": "-87.385597229004", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "A08", + "local_code": "A08", + "keywords": "AL08" + }, + { + "id": "19214", + "ident": "KA09", + "type": "small_airport", + "name": "Eagle Airpark", + "latitude_deg": "34.887533", + "longitude_deg": "-114.616638", + "elevation_ft": "485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bullhead City", + "scheduled_service": "no", + "gps_code": "KA09", + "local_code": "A09", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eagle_Airpark", + "keywords": "AZ02, bullhead city, eagle" + }, + { + "id": "19215", + "ident": "KA20", + "type": "small_airport", + "name": "Sun Valley Airport", + "latitude_deg": "35.00876", + "longitude_deg": "-114.566052", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bullhead City", + "scheduled_service": "no", + "local_code": "A20", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sun_Valley_Airport_(Arizona)" + }, + { + "id": "19216", + "ident": "KA24", + "type": "small_airport", + "name": "California Pines Airport", + "latitude_deg": "41.412399291992", + "longitude_deg": "-120.68399810791", + "elevation_ft": "4398", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Alturas", + "scheduled_service": "no", + "gps_code": "A24", + "local_code": "A24", + "home_link": "http://www.californiapineslodge.com/indexd651.html?id=10636&fuseaction=browse&pageid=34", + "wikipedia_link": "https://en.wikipedia.org/wiki/California_Pines_Airport", + "keywords": "CA02" + }, + { + "id": "19217", + "ident": "KA30", + "type": "small_airport", + "name": "Scott Valley Airport", + "latitude_deg": "41.558201", + "longitude_deg": "-122.855003", + "elevation_ft": "2728", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Etna", + "scheduled_service": "no", + "local_code": "A30", + "home_link": "http://www.co.siskiyou.ca.us/content/transportation-division-scott-valley-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Scott_Valley_Airport", + "keywords": "CA06" + }, + { + "id": "19218", + "ident": "KA32", + "type": "small_airport", + "name": "Butte Valley Airport", + "latitude_deg": "41.887199401855", + "longitude_deg": "-121.9759979248", + "elevation_ft": "4243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Dorris", + "scheduled_service": "no", + "gps_code": "A32", + "local_code": "A32", + "home_link": "http://www.buttevalleychamber.com/buttevalleyairpo.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Butte_Valley_Airport", + "keywords": "CA03" + }, + { + "id": "19219", + "ident": "KA34", + "type": "small_airport", + "name": "Dayton Valley Airpark", + "latitude_deg": "39.2384", + "longitude_deg": "-119.555", + "elevation_ft": "4414", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Dayton/Carson City", + "scheduled_service": "no", + "local_code": "A34" + }, + { + "id": "19221", + "ident": "KA39", + "type": "small_airport", + "name": "Ak-Chin Regional Airport", + "latitude_deg": "32.990806", + "longitude_deg": "-111.918528", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Maricopa", + "scheduled_service": "no", + "gps_code": "A39", + "local_code": "A39", + "home_link": "http://akchinairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Phoenix_Regional_Airport", + "keywords": "Phoenix Regional Airport" + }, + { + "id": "19222", + "ident": "KA50", + "type": "small_airport", + "name": "Colorado Springs East Airport", + "latitude_deg": "38.874401", + "longitude_deg": "-104.410004", + "elevation_ft": "6145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Ellicott", + "scheduled_service": "no", + "local_code": "CO4", + "home_link": "http://springseastairport.org/index.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Colorado_Springs_East_Airport", + "keywords": "A50, CO49" + }, + { + "id": "19223", + "ident": "KAAA", + "type": "small_airport", + "name": "Logan County Airport", + "latitude_deg": "40.15869903564453", + "longitude_deg": "-89.33499908447266", + "elevation_ft": "597", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "KAAA", + "local_code": "AAA" + }, + { + "id": "19224", + "ident": "KAAF", + "type": "small_airport", + "name": "Apalachicola Regional Airport", + "latitude_deg": "29.72750092", + "longitude_deg": "-85.02749634", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Apalachicola", + "scheduled_service": "no", + "gps_code": "KAAF", + "iata_code": "AAF", + "local_code": "AAF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Apalachicola_Municipal_Airport" + }, + { + "id": "19225", + "ident": "KAAO", + "type": "small_airport", + "name": "Colonel James Jabara Airport", + "latitude_deg": "37.74760056", + "longitude_deg": "-97.22109985", + "elevation_ft": "1421", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wichita", + "scheduled_service": "no", + "gps_code": "KAAO", + "local_code": "AAO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Colonel_James_Jabara_Airport" + }, + { + "id": "29963", + "ident": "KAAP", + "type": "closed", + "name": "Andrau Airpark", + "latitude_deg": "29.7225", + "longitude_deg": "-95.588303", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Andrau_Airpark", + "keywords": "KAAP, AAP" + }, + { + "id": "19226", + "ident": "KAAS", + "type": "small_airport", + "name": "Taylor County Airport", + "latitude_deg": "37.358299255371094", + "longitude_deg": "-85.30940246582031", + "elevation_ft": "921", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Campbellsville", + "scheduled_service": "no", + "gps_code": "KAAS", + "local_code": "AAS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taylor_County_Airport_(Kentucky)" + }, + { + "id": "19227", + "ident": "KAAT", + "type": "small_airport", + "name": "Alturas Municipal Airport", + "latitude_deg": "41.482736", + "longitude_deg": "-120.565671", + "elevation_ft": "4378", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Alturas", + "scheduled_service": "no", + "gps_code": "KAAT", + "local_code": "AAT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alturas_Municipal_Airport" + }, + { + "id": "3356", + "ident": "KABE", + "type": "medium_airport", + "name": "Lehigh Valley International Airport", + "latitude_deg": "40.651773", + "longitude_deg": "-75.442797", + "elevation_ft": "393", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Allentown", + "scheduled_service": "yes", + "gps_code": "KABE", + "iata_code": "ABE", + "local_code": "ABE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lehigh_Valley_International_Airport" + }, + { + "id": "3357", + "ident": "KABI", + "type": "medium_airport", + "name": "Abilene Regional Airport", + "latitude_deg": "32.4113006592", + "longitude_deg": "-99.68190002440001", + "elevation_ft": "1791", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Abilene", + "scheduled_service": "yes", + "gps_code": "KABI", + "iata_code": "ABI", + "local_code": "ABI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abilene_Regional_Airport" + }, + { + "id": "16091", + "ident": "KABQ", + "type": "medium_airport", + "name": "Albuquerque International Sunport", + "latitude_deg": "35.040199", + "longitude_deg": "-106.609001", + "elevation_ft": "5355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "yes", + "gps_code": "KABQ", + "iata_code": "ABQ", + "local_code": "ABQ", + "home_link": "http://www.abqsunport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Albuquerque_International_Sunport" + }, + { + "id": "3358", + "ident": "KABR", + "type": "medium_airport", + "name": "Aberdeen Regional Airport", + "latitude_deg": "45.449100494384766", + "longitude_deg": "-98.42179870605469", + "elevation_ft": "1302", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Aberdeen", + "scheduled_service": "yes", + "gps_code": "KABR", + "iata_code": "ABR", + "local_code": "ABR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aberdeen_Regional_Airport" + }, + { + "id": "3359", + "ident": "KABY", + "type": "medium_airport", + "name": "Southwest Georgia Regional Airport", + "latitude_deg": "31.532946", + "longitude_deg": "-84.196215", + "elevation_ft": "197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Albany", + "scheduled_service": "yes", + "gps_code": "KABY", + "iata_code": "ABY", + "local_code": "ABY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Southwest_Georgia_Regional_Airport" + }, + { + "id": "19228", + "ident": "KACB", + "type": "small_airport", + "name": "Antrim County Airport", + "latitude_deg": "44.988602", + "longitude_deg": "-85.198402", + "elevation_ft": "623", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Bellaire", + "scheduled_service": "no", + "gps_code": "KACB", + "iata_code": "ACB", + "local_code": "ACB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Antrim_County_Airport" + }, + { + "id": "19229", + "ident": "KACJ", + "type": "small_airport", + "name": "Jimmy Carter Regional Airport", + "latitude_deg": "32.110802", + "longitude_deg": "-84.188904", + "elevation_ft": "468", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Americus", + "scheduled_service": "no", + "gps_code": "KACJ", + "local_code": "ACJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jimmy_Carter_Regional_Airport", + "keywords": "Souther Field" + }, + { + "id": "3360", + "ident": "KACK", + "type": "medium_airport", + "name": "Nantucket Memorial Airport", + "latitude_deg": "41.25310135", + "longitude_deg": "-70.06020355", + "elevation_ft": "47", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Nantucket", + "scheduled_service": "yes", + "gps_code": "KACK", + "iata_code": "ACK", + "local_code": "ACK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nantucket_Memorial_Airport" + }, + { + "id": "19230", + "ident": "KACP", + "type": "small_airport", + "name": "Allen Parish Airport", + "latitude_deg": "30.75029945373535", + "longitude_deg": "-92.68830108642578", + "elevation_ft": "107", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Oakdale", + "scheduled_service": "no", + "gps_code": "KACP", + "local_code": "ACP" + }, + { + "id": "19231", + "ident": "KACQ", + "type": "small_airport", + "name": "Waseca Municipal Airport", + "latitude_deg": "44.07350158691406", + "longitude_deg": "-93.55290222167969", + "elevation_ft": "1126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Waseca", + "scheduled_service": "no", + "gps_code": "KACQ", + "local_code": "ACQ" + }, + { + "id": "3361", + "ident": "KACT", + "type": "medium_airport", + "name": "Waco Regional Airport", + "latitude_deg": "31.611299514770508", + "longitude_deg": "-97.23049926757812", + "elevation_ft": "516", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "yes", + "gps_code": "KACT", + "iata_code": "ACT", + "local_code": "ACT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Waco_Regional_Airport" + }, + { + "id": "3362", + "ident": "KACV", + "type": "medium_airport", + "name": "California Redwood Coast-Humboldt County Airport", + "latitude_deg": "40.978101", + "longitude_deg": "-124.109", + "elevation_ft": "221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Arcata/Eureka", + "scheduled_service": "yes", + "gps_code": "KACV", + "iata_code": "ACV", + "local_code": "ACV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arcata-Eureka_Airport", + "keywords": "Arcata Airport" + }, + { + "id": "3363", + "ident": "KACY", + "type": "medium_airport", + "name": "Atlantic City International Airport", + "latitude_deg": "39.45759963989258", + "longitude_deg": "-74.57720184326172", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Atlantic City", + "scheduled_service": "yes", + "gps_code": "KACY", + "iata_code": "ACY", + "local_code": "ACY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atlantic_City_International_Airport" + }, + { + "id": "19232", + "ident": "KACZ", + "type": "small_airport", + "name": "Henderson Field", + "latitude_deg": "34.717899322509766", + "longitude_deg": "-78.00360107421875", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Wallace", + "scheduled_service": "no", + "gps_code": "KACZ", + "local_code": "ACZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Henderson_Field_(North_Carolina)" + }, + { + "id": "19233", + "ident": "KADC", + "type": "small_airport", + "name": "Wadena Municipal Airport", + "latitude_deg": "46.45029830932617", + "longitude_deg": "-95.21099853515625", + "elevation_ft": "1369", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Wadena", + "scheduled_service": "no", + "gps_code": "KADC", + "local_code": "ADC" + }, + { + "id": "19234", + "ident": "KADG", + "type": "small_airport", + "name": "Lenawee County Airport", + "latitude_deg": "41.866205", + "longitude_deg": "-84.077983", + "elevation_ft": "798", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Adrian", + "scheduled_service": "no", + "gps_code": "KADG", + "iata_code": "ADG", + "local_code": "ADG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lenawee_County_Airport" + }, + { + "id": "19235", + "ident": "KADH", + "type": "small_airport", + "name": "Ada Regional Airport", + "latitude_deg": "34.805214", + "longitude_deg": "-96.671988", + "elevation_ft": "1016", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ada", + "scheduled_service": "no", + "gps_code": "KADH", + "iata_code": "ADT", + "local_code": "ADH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ada_Municipal_Airport", + "keywords": "Ada Municipal" + }, + { + "id": "19236", + "ident": "KADM", + "type": "small_airport", + "name": "Ardmore Municipal Airport", + "latitude_deg": "34.30301", + "longitude_deg": "-97.0196342", + "elevation_ft": "777", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ardmore", + "scheduled_service": "no", + "gps_code": "KADM", + "iata_code": "ADM", + "local_code": "ADM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ardmore_Municipal_Airport" + }, + { + "id": "19237", + "ident": "KADS", + "type": "small_airport", + "name": "Addison Airport", + "latitude_deg": "32.9686012268", + "longitude_deg": "-96.8364028931", + "elevation_ft": "644", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "KADS", + "iata_code": "ADS", + "local_code": "ADS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Addison_Airport" + }, + { + "id": "19238", + "ident": "KADT", + "type": "small_airport", + "name": "Atwood-Rawlins City-County Airport", + "latitude_deg": "39.840099", + "longitude_deg": "-101.042", + "elevation_ft": "2991", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Atwood", + "scheduled_service": "no", + "gps_code": "KADT", + "local_code": "ADT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atwood–Rawlins_County_City–County_Airport" + }, + { + "id": "19239", + "ident": "KADU", + "type": "small_airport", + "name": "Audubon County Airport", + "latitude_deg": "41.70140075683594", + "longitude_deg": "-94.92050170898438", + "elevation_ft": "1287", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Audubon", + "scheduled_service": "no", + "gps_code": "KADU", + "local_code": "ADU" + }, + { + "id": "3364", + "ident": "KADW", + "type": "large_airport", + "name": "Joint Base Andrews", + "latitude_deg": "38.810799", + "longitude_deg": "-76.866997", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Camp Springs", + "scheduled_service": "no", + "gps_code": "KADW", + "iata_code": "ADW", + "local_code": "ADW", + "home_link": "http://www.jba.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Joint_Base_Andrews", + "keywords": "Andrews Air Force Base" + }, + { + "id": "19240", + "ident": "KAE", + "type": "seaplane_base", + "name": "Kake Seaplane Base", + "latitude_deg": "56.973", + "longitude_deg": "-133.945999", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kake", + "scheduled_service": "no", + "iata_code": "KAE", + "local_code": "KAE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kake_Seaplane_Base" + }, + { + "id": "19242", + "ident": "KAEG", + "type": "small_airport", + "name": "Double Eagle II Airport", + "latitude_deg": "35.145198822021484", + "longitude_deg": "-106.79499816894531", + "elevation_ft": "5837", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "no", + "gps_code": "KAEG", + "local_code": "AEG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Double_Eagle_II_Airport" + }, + { + "id": "19243", + "ident": "KAEJ", + "type": "small_airport", + "name": "Central Colorado Regional Airport", + "latitude_deg": "38.81420135498047", + "longitude_deg": "-106.12100219726562", + "elevation_ft": "7946", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Buena Vista", + "scheduled_service": "no", + "gps_code": "KAEJ", + "local_code": "AEJ" + }, + { + "id": "19244", + "ident": "KAEL", + "type": "small_airport", + "name": "Albert Lea Municipal Airport", + "latitude_deg": "43.68149948", + "longitude_deg": "-93.36720276", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Albert Lea", + "scheduled_service": "no", + "gps_code": "KAEL", + "iata_code": "AEL", + "local_code": "AEL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Albert_Lea_Municipal_Airport" + }, + { + "id": "3365", + "ident": "KAEX", + "type": "medium_airport", + "name": "Alexandria International Airport", + "latitude_deg": "31.3274", + "longitude_deg": "-92.549797", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Alexandria", + "scheduled_service": "yes", + "gps_code": "KAEX", + "iata_code": "AEX", + "local_code": "AEX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alexandria_International_Airport_(Louisiana)", + "keywords": "England Air Park, England Air Force Base" + }, + { + "id": "313453", + "ident": "KAF", + "type": "small_airport", + "name": "Karato Airport", + "latitude_deg": "-6.2655", + "longitude_deg": "155.3052", + "elevation_ft": "109", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NSB", + "municipality": "Karato", + "scheduled_service": "no", + "iata_code": "KAF", + "local_code": "KRT", + "keywords": "Karatu" + }, + { + "id": "19245", + "ident": "KAFF", + "type": "small_airport", + "name": "USAF Academy Airfield", + "latitude_deg": "38.96969986", + "longitude_deg": "-104.8130035", + "elevation_ft": "6572", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Colorado Springs", + "scheduled_service": "no", + "gps_code": "KAFF", + "iata_code": "AFF", + "local_code": "AFF" + }, + { + "id": "19246", + "ident": "KAFJ", + "type": "small_airport", + "name": "Washington County Airport", + "latitude_deg": "40.136501", + "longitude_deg": "-80.290199", + "elevation_ft": "1184", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "KAFJ", + "iata_code": "WSG", + "local_code": "AFJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Washington_County_Airport_(Pennsylvania)" + }, + { + "id": "19247", + "ident": "KAFK", + "type": "small_airport", + "name": "Nebraska City Municipal Airport", + "latitude_deg": "40.60689926", + "longitude_deg": "-95.86569977", + "elevation_ft": "1165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Nebraska City", + "scheduled_service": "no", + "gps_code": "KAFK", + "local_code": "AFK" + }, + { + "id": "19248", + "ident": "KAFN", + "type": "small_airport", + "name": "Jaffrey Airport Silver Ranch Airport", + "latitude_deg": "42.805099487300005", + "longitude_deg": "-72.0029983521", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Jaffrey", + "scheduled_service": "no", + "gps_code": "KAFN", + "iata_code": "AFN", + "local_code": "AFN", + "home_link": "http://silverranchairpark.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jaffrey_Airport_%E2%80%93_Silver_Ranch_Airpark" + }, + { + "id": "19249", + "ident": "KAFO", + "type": "small_airport", + "name": "Afton Municipal Airport", + "latitude_deg": "42.7112007141", + "longitude_deg": "-110.942001343", + "elevation_ft": "6221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Afton", + "scheduled_service": "no", + "gps_code": "KAFO", + "iata_code": "AFO", + "local_code": "AFO", + "home_link": "http://www.aftonairpark.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Afton_Municipal_Airport" + }, + { + "id": "19250", + "ident": "KAFP", + "type": "small_airport", + "name": "Anson County Airport - Jeff Cloud Field", + "latitude_deg": "35.020599", + "longitude_deg": "-80.077103", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Wadesboro", + "scheduled_service": "no", + "gps_code": "KAFP", + "local_code": "AFP", + "home_link": "http://www.co.anson.nc.us/BusinessServices/Airport.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anson_County_Airport", + "keywords": "3A3" + }, + { + "id": "3366", + "ident": "KAFW", + "type": "medium_airport", + "name": "Fort Worth Alliance Airport", + "latitude_deg": "32.99044", + "longitude_deg": "-97.31947", + "elevation_ft": "722", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "KAFW", + "iata_code": "AFW", + "local_code": "AFW", + "home_link": "http://www.allianceairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Worth_Alliance_Airport" + }, + { + "id": "3367", + "ident": "KAGC", + "type": "medium_airport", + "name": "Allegheny County Airport", + "latitude_deg": "40.354401", + "longitude_deg": "-79.930199", + "elevation_ft": "1252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pittsburgh", + "scheduled_service": "no", + "gps_code": "KAGC", + "iata_code": "AGC", + "local_code": "AGC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Allegheny_County_Airport" + }, + { + "id": "19251", + "ident": "KAGO", + "type": "small_airport", + "name": "Magnolia Municipal Airport / Ralph C Weiser Field", + "latitude_deg": "33.228001", + "longitude_deg": "-93.217002", + "elevation_ft": "319", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Magnolia", + "scheduled_service": "no", + "gps_code": "KAGO", + "iata_code": "AGO", + "local_code": "AGO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Magnolia_Municipal_Airport", + "keywords": "Magnolia Municipal" + }, + { + "id": "19252", + "ident": "KAGR", + "type": "small_airport", + "name": "MacDill Air Force Base Auxiliary Field", + "latitude_deg": "27.65060043334961", + "longitude_deg": "-81.34940338134766", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Avon Park", + "scheduled_service": "no", + "gps_code": "KAGR", + "local_code": "AGR" + }, + { + "id": "3368", + "ident": "KAGS", + "type": "medium_airport", + "name": "Augusta Regional At Bush Field", + "latitude_deg": "33.3699", + "longitude_deg": "-81.9645", + "elevation_ft": "144", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Augusta", + "scheduled_service": "yes", + "gps_code": "KAGS", + "iata_code": "AGS", + "local_code": "AGS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Augusta_Regional_Airport" + }, + { + "id": "19253", + "ident": "KAGZ", + "type": "small_airport", + "name": "Wagner Municipal Airport", + "latitude_deg": "43.06330108642578", + "longitude_deg": "-98.29620361328125", + "elevation_ft": "1475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Wagner", + "scheduled_service": "no", + "gps_code": "KAGZ", + "local_code": "AGZ" + }, + { + "id": "19254", + "ident": "KAHC", + "type": "small_airport", + "name": "Amedee Army Air Field", + "latitude_deg": "40.26620102", + "longitude_deg": "-120.1529999", + "elevation_ft": "4012", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Herlong", + "scheduled_service": "no", + "gps_code": "KAHC", + "iata_code": "AHC", + "local_code": "AHC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amedee_Army_Airfield" + }, + { + "id": "19255", + "ident": "KAHH", + "type": "small_airport", + "name": "Amery Municipal Airport", + "latitude_deg": "45.2811012268", + "longitude_deg": "-92.37539672850001", + "elevation_ft": "1088", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Amery", + "scheduled_service": "no", + "gps_code": "KAHH", + "iata_code": "AHH", + "local_code": "AHH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amery_Municipal_Airport" + }, + { + "id": "3369", + "ident": "KAHN", + "type": "medium_airport", + "name": "Athens Ben Epps Airport", + "latitude_deg": "33.94860076904297", + "longitude_deg": "-83.32630157470703", + "elevation_ft": "808", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Athens", + "scheduled_service": "yes", + "gps_code": "KAHN", + "iata_code": "AHN", + "local_code": "AHN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Athens-Ben_Epps_Airport" + }, + { + "id": "19256", + "ident": "KAHQ", + "type": "small_airport", + "name": "Wahoo Municipal Airport", + "latitude_deg": "41.2412986755", + "longitude_deg": "-96.59400177", + "elevation_ft": "1224", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Wahoo", + "scheduled_service": "no", + "gps_code": "KAHQ", + "local_code": "AHQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wahoo_Municipal_Airport" + }, + { + "id": "19257", + "ident": "KAIA", + "type": "small_airport", + "name": "Alliance Municipal Airport", + "latitude_deg": "42.0531997681", + "longitude_deg": "-102.804000854", + "elevation_ft": "3931", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Alliance", + "scheduled_service": "no", + "gps_code": "KAIA", + "iata_code": "AIA", + "local_code": "AIA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alliance_Municipal_Airport" + }, + { + "id": "19258", + "ident": "KAIB", + "type": "small_airport", + "name": "Hopkins Field", + "latitude_deg": "38.239025", + "longitude_deg": "-108.563354", + "elevation_ft": "5940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Nucla", + "scheduled_service": "no", + "gps_code": "KAIB", + "local_code": "AIB", + "home_link": "http://www.montrosecounty.net/195/Nucla-Hopkins-Field", + "keywords": "6V6, Naturita" + }, + { + "id": "19259", + "ident": "KAID", + "type": "small_airport", + "name": "Anderson Municipal Darlington Field", + "latitude_deg": "40.10860061649999", + "longitude_deg": "-85.6129989624", + "elevation_ft": "919", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Anderson", + "scheduled_service": "no", + "gps_code": "KAID", + "iata_code": "AID", + "local_code": "AID", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anderson_Municipal_Airport" + }, + { + "id": "19260", + "ident": "KAIG", + "type": "small_airport", + "name": "Langlade County Airport", + "latitude_deg": "45.15420150756836", + "longitude_deg": "-89.11070251464844", + "elevation_ft": "1521", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Antigo", + "scheduled_service": "no", + "gps_code": "KAIG", + "local_code": "AIG" + }, + { + "id": "19261", + "ident": "KAIK", + "type": "small_airport", + "name": "Aiken Regional Airport", + "latitude_deg": "33.649399", + "longitude_deg": "-81.684998", + "elevation_ft": "528", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Aiken", + "scheduled_service": "no", + "gps_code": "KAIK", + "iata_code": "AIK", + "local_code": "AIK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aiken_Municipal_Airport", + "keywords": "Aiken Air Force Station, Aiken Municipal" + }, + { + "id": "19262", + "ident": "KAIO", + "type": "small_airport", + "name": "Atlantic Municipal Airport", + "latitude_deg": "41.40729904", + "longitude_deg": "-95.04689789", + "elevation_ft": "1165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Atlantic", + "scheduled_service": "no", + "gps_code": "KAIO", + "iata_code": "AIO", + "local_code": "AIO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atlantic_Municipal_Airport" + }, + { + "id": "19263", + "ident": "KAIT", + "type": "small_airport", + "name": "Aitkin Municipal Airport Steve Kurtz Field", + "latitude_deg": "46.548401", + "longitude_deg": "-93.676804", + "elevation_ft": "1205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Aitkin", + "scheduled_service": "no", + "gps_code": "KAIT", + "local_code": "AIT" + }, + { + "id": "19264", + "ident": "KAIV", + "type": "small_airport", + "name": "George Downer Airport", + "latitude_deg": "33.106499", + "longitude_deg": "-88.1978", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Aliceville", + "scheduled_service": "no", + "gps_code": "KAIV", + "iata_code": "AIV", + "local_code": "AIV", + "wikipedia_link": "https://en.wikipedia.org/wiki/George_Downer_Airport" + }, + { + "id": "19265", + "ident": "KAIY", + "type": "closed", + "name": "Atlantic City Municipal Bader Field", + "latitude_deg": "39.360001", + "longitude_deg": "-74.4561", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Atlantic City", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bader_Field", + "keywords": "KAIY, AIY" + }, + { + "id": "19266", + "ident": "KAIZ", + "type": "small_airport", + "name": "Lee C Fine Memorial Airport", + "latitude_deg": "38.0960006714", + "longitude_deg": "-92.54949951170002", + "elevation_ft": "869", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kaiser Lake Ozark", + "scheduled_service": "no", + "gps_code": "KAIZ", + "iata_code": "AIZ", + "local_code": "AIZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lee_C._Fine_Memorial_Airport" + }, + { + "id": "19267", + "ident": "KAJG", + "type": "small_airport", + "name": "Mount Carmel Municipal Airport", + "latitude_deg": "38.60649872", + "longitude_deg": "-87.72669983", + "elevation_ft": "429", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mount Carmel", + "scheduled_service": "no", + "gps_code": "KAJG", + "local_code": "AJG" + }, + { + "id": "19268", + "ident": "KAJO", + "type": "small_airport", + "name": "Corona Municipal Airport", + "latitude_deg": "33.897701", + "longitude_deg": "-117.601997", + "elevation_ft": "533", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Corona", + "scheduled_service": "no", + "gps_code": "KAJO", + "local_code": "AJO", + "home_link": "https://www.coronaca.gov/government/departments-divisions/maintenance-services/corona-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Corona_Municipal_Airport", + "keywords": "L66" + }, + { + "id": "19269", + "ident": "KAJR", + "type": "small_airport", + "name": "Habersham County Airport", + "latitude_deg": "34.49990082", + "longitude_deg": "-83.55670166", + "elevation_ft": "1448", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Cornelia", + "scheduled_service": "no", + "gps_code": "KAJR", + "local_code": "AJR" + }, + { + "id": "19270", + "ident": "KAJZ", + "type": "small_airport", + "name": "Blake Field", + "latitude_deg": "38.786399841308594", + "longitude_deg": "-108.06400299072266", + "elevation_ft": "5193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Delta", + "scheduled_service": "no", + "gps_code": "KAJZ", + "local_code": "AJZ" + }, + { + "id": "312735", + "ident": "KAK", + "type": "small_airport", + "name": "Kar Airport", + "latitude_deg": "-6.2452", + "longitude_deg": "143.5516", + "elevation_ft": "4965", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Kar", + "scheduled_service": "no", + "iata_code": "KAK", + "local_code": "KAR" + }, + { + "id": "19271", + "ident": "KAKH", + "type": "small_airport", + "name": "Gastonia Municipal Airport", + "latitude_deg": "35.202598", + "longitude_deg": "-81.149902", + "elevation_ft": "798", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Gastonia", + "scheduled_service": "no", + "gps_code": "KAKH", + "local_code": "AKH", + "home_link": "http://www.gastoniaairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gastonia_Municipal_Airport", + "keywords": "0A6" + }, + { + "id": "19272", + "ident": "KAKO", + "type": "small_airport", + "name": "Colorado Plains Regional Airport", + "latitude_deg": "40.1755981445", + "longitude_deg": "-103.222000122", + "elevation_ft": "4714", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Akron", + "scheduled_service": "no", + "gps_code": "KAKO", + "iata_code": "AKO", + "local_code": "AKO", + "home_link": "http://www.co.washington.co.us/airport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Colorado_Plains_Regional_Airport" + }, + { + "id": "19273", + "ident": "KAKQ", + "type": "small_airport", + "name": "Wakefield Municipal Airport", + "latitude_deg": "36.98720169067383", + "longitude_deg": "-77.0010986328125", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Wakefield", + "scheduled_service": "no", + "gps_code": "KAKQ", + "local_code": "AKQ" + }, + { + "id": "3370", + "ident": "KAKR", + "type": "medium_airport", + "name": "Akron Executive Airport", + "latitude_deg": "41.037498", + "longitude_deg": "-81.466904", + "elevation_ft": "1067", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Akron", + "scheduled_service": "no", + "gps_code": "KAKR", + "iata_code": "AKC", + "local_code": "AKR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Akron_Executive_Airport", + "keywords": "akron executive, akron fulton international" + }, + { + "id": "3371", + "ident": "KALB", + "type": "medium_airport", + "name": "Albany International Airport", + "latitude_deg": "42.74829864501953", + "longitude_deg": "-73.80169677734375", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Albany", + "scheduled_service": "yes", + "gps_code": "KALB", + "iata_code": "ALB", + "local_code": "ALB", + "home_link": "http://www.albanyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Albany_International_Airport" + }, + { + "id": "3372", + "ident": "KALI", + "type": "medium_airport", + "name": "Alice International Airport", + "latitude_deg": "27.7409", + "longitude_deg": "-98.026901", + "elevation_ft": "178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alice", + "scheduled_service": "no", + "gps_code": "KALI", + "iata_code": "ALI", + "local_code": "ALI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alice_International_Airport" + }, + { + "id": "3373", + "ident": "KALM", + "type": "medium_airport", + "name": "Alamogordo White Sands Regional Airport", + "latitude_deg": "32.8399009705", + "longitude_deg": "-105.990997314", + "elevation_ft": "4200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Alamogordo", + "scheduled_service": "no", + "gps_code": "KALM", + "iata_code": "ALM", + "local_code": "ALM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alamogordo-White_Sands_Regional_Airport" + }, + { + "id": "3374", + "ident": "KALN", + "type": "medium_airport", + "name": "St Louis Regional Airport", + "latitude_deg": "38.89030075069999", + "longitude_deg": "-90.0459976196", + "elevation_ft": "544", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Alton/St Louis", + "scheduled_service": "no", + "gps_code": "KALN", + "iata_code": "ALN", + "local_code": "ALN", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Louis_Regional_Airport", + "keywords": "Civic Memorial Airport" + }, + { + "id": "3375", + "ident": "KALO", + "type": "medium_airport", + "name": "Waterloo Regional Airport", + "latitude_deg": "42.557098388671875", + "longitude_deg": "-92.40029907226562", + "elevation_ft": "873", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Waterloo", + "scheduled_service": "yes", + "gps_code": "KALO", + "iata_code": "ALO", + "local_code": "ALO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Waterloo_Regional_Airport" + }, + { + "id": "19275", + "ident": "KALS", + "type": "medium_airport", + "name": "San Luis Valley Regional Airport/Bergman Field", + "latitude_deg": "37.434898", + "longitude_deg": "-105.866997", + "elevation_ft": "7539", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Alamosa", + "scheduled_service": "yes", + "gps_code": "KALS", + "iata_code": "ALS", + "local_code": "ALS", + "home_link": "https://www.sanluisvalleyairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Luis_Valley_Regional_Airport" + }, + { + "id": "3376", + "ident": "KALW", + "type": "medium_airport", + "name": "Walla Walla Regional Airport", + "latitude_deg": "46.09489822", + "longitude_deg": "-118.288002", + "elevation_ft": "1194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Walla Walla", + "scheduled_service": "yes", + "gps_code": "KALW", + "iata_code": "ALW", + "local_code": "ALW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Walla_Walla_Regional_Airport" + }, + { + "id": "19276", + "ident": "KALX", + "type": "small_airport", + "name": "Thomas C Russell Field", + "latitude_deg": "32.914699554399995", + "longitude_deg": "-85.9629974365", + "elevation_ft": "686", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Alexander City", + "scheduled_service": "no", + "gps_code": "KALX", + "iata_code": "ALX", + "local_code": "ALX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thomas_C._Russell_Field" + }, + { + "id": "3377", + "ident": "KAMA", + "type": "medium_airport", + "name": "Rick Husband Amarillo International Airport", + "latitude_deg": "35.219398", + "longitude_deg": "-101.706001", + "elevation_ft": "3607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Amarillo", + "scheduled_service": "yes", + "gps_code": "KAMA", + "iata_code": "AMA", + "local_code": "AMA", + "home_link": "http://airport.amarillo.gov/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rick_Husband_Amarillo_International_Airport" + }, + { + "id": "19277", + "ident": "KAMG", + "type": "small_airport", + "name": "Bacon County Airport", + "latitude_deg": "31.536100387573242", + "longitude_deg": "-82.50659942626953", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Alma", + "scheduled_service": "no", + "gps_code": "KAMG", + "local_code": "AMG" + }, + { + "id": "19278", + "ident": "KAMN", + "type": "small_airport", + "name": "Gratiot Community Airport", + "latitude_deg": "43.322101593", + "longitude_deg": "-84.68800354", + "elevation_ft": "754", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Alma", + "scheduled_service": "no", + "gps_code": "KAMN", + "iata_code": "AMN", + "local_code": "AMN", + "home_link": "http://www.ci.alma.mi.us/1/307/airport.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gratiot_Community_Airport" + }, + { + "id": "19279", + "ident": "KAMT", + "type": "small_airport", + "name": "Alexander Salamon Airport", + "latitude_deg": "38.851501", + "longitude_deg": "-83.566299", + "elevation_ft": "896", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "West Union", + "scheduled_service": "no", + "gps_code": "KAMT", + "local_code": "AMT" + }, + { + "id": "19280", + "ident": "KAMW", + "type": "small_airport", + "name": "Ames Municipal Airport", + "latitude_deg": "41.992001", + "longitude_deg": "-93.621803", + "elevation_ft": "956", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Ames", + "scheduled_service": "no", + "gps_code": "KAMW", + "iata_code": "AMW", + "local_code": "AMW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ames_Municipal_Airport" + }, + { + "id": "3378", + "ident": "KANB", + "type": "medium_airport", + "name": "Anniston Regional Airport", + "latitude_deg": "33.5882", + "longitude_deg": "-85.8581", + "elevation_ft": "612", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Anniston", + "scheduled_service": "no", + "gps_code": "KANB", + "iata_code": "ANB", + "local_code": "ANB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anniston_Metropolitan_Airport", + "keywords": "Anniston Metropolitan" + }, + { + "id": "3379", + "ident": "KAND", + "type": "medium_airport", + "name": "Anderson Regional Airport", + "latitude_deg": "34.4945983887", + "longitude_deg": "-82.70939636230001", + "elevation_ft": "782", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Anderson", + "scheduled_service": "no", + "gps_code": "KAND", + "iata_code": "AND", + "local_code": "AND", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anderson_Regional_Airport" + }, + { + "id": "19281", + "ident": "KANE", + "type": "small_airport", + "name": "Anoka County-Blaine (Janes Field) Airport", + "latitude_deg": "45.145", + "longitude_deg": "-93.211401", + "elevation_ft": "912", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Minneapolis", + "scheduled_service": "no", + "gps_code": "KANE", + "local_code": "ANE" + }, + { + "id": "19282", + "ident": "KANJ", + "type": "small_airport", + "name": "Sault Ste Marie Municipal Sanderson Field", + "latitude_deg": "46.47919846", + "longitude_deg": "-84.36840057", + "elevation_ft": "716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Sault Ste Marie", + "scheduled_service": "no", + "gps_code": "KANJ", + "local_code": "ANJ" + }, + { + "id": "19283", + "ident": "KANK", + "type": "small_airport", + "name": "Salida Airport - Harriet Alexander Field", + "latitude_deg": "38.5383", + "longitude_deg": "-106.049004", + "elevation_ft": "7523", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Salida", + "scheduled_service": "no", + "gps_code": "KANK", + "iata_code": "SLT", + "local_code": "ANK", + "home_link": "http://cityofsalida.com/departments/harriet-alexander-field-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harriet_Alexander_Field" + }, + { + "id": "19284", + "ident": "KANP", + "type": "small_airport", + "name": "Lee Airport", + "latitude_deg": "38.942902", + "longitude_deg": "-76.568398", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Annapolis", + "scheduled_service": "no", + "gps_code": "KANP", + "iata_code": "ANP", + "local_code": "ANP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lee_Airport" + }, + { + "id": "19285", + "ident": "KANQ", + "type": "small_airport", + "name": "Tri State Steuben County Airport", + "latitude_deg": "41.639702", + "longitude_deg": "-85.083504", + "elevation_ft": "995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Angola", + "scheduled_service": "no", + "gps_code": "KANQ", + "iata_code": "ANQ", + "local_code": "ANQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tri-State_Steuben_County_Airport" + }, + { + "id": "19286", + "ident": "KANW", + "type": "small_airport", + "name": "Ainsworth Regional Airport", + "latitude_deg": "42.579201", + "longitude_deg": "-99.992995", + "elevation_ft": "2589", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Ainsworth", + "scheduled_service": "no", + "gps_code": "KANW", + "iata_code": "ANW", + "local_code": "ANW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ainsworth_Regional_Airport", + "keywords": "Ainsworth Municipal" + }, + { + "id": "19287", + "ident": "KANY", + "type": "small_airport", + "name": "Anthony Municipal Airport", + "latitude_deg": "37.158501", + "longitude_deg": "-98.079597", + "elevation_ft": "1340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Anthony", + "scheduled_service": "no", + "gps_code": "KANY", + "iata_code": "ANY", + "local_code": "ANY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anthony_Municipal_Airport" + }, + { + "id": "19288", + "ident": "KAOC", + "type": "small_airport", + "name": "Arco Butte County Airport", + "latitude_deg": "43.6035", + "longitude_deg": "-113.334", + "elevation_ft": "5332", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Arco", + "scheduled_service": "no", + "gps_code": "KAOC", + "local_code": "AOC", + "keywords": "Pope Field" + }, + { + "id": "19289", + "ident": "KAOH", + "type": "small_airport", + "name": "Lima Allen County Airport", + "latitude_deg": "40.706902", + "longitude_deg": "-84.026703", + "elevation_ft": "975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lima", + "scheduled_service": "no", + "gps_code": "KAOH", + "iata_code": "AOH", + "local_code": "AOH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lima_Allen_County_Airport" + }, + { + "id": "3380", + "ident": "KAOO", + "type": "medium_airport", + "name": "Altoona Blair County Airport", + "latitude_deg": "40.296398", + "longitude_deg": "-78.32", + "elevation_ft": "1503", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Altoona", + "scheduled_service": "yes", + "gps_code": "KAOO", + "iata_code": "AOO", + "local_code": "AOO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Altoona-Blair_County_Airport" + }, + { + "id": "19290", + "ident": "KAOV", + "type": "small_airport", + "name": "Ava Bill Martin Memorial Airport", + "latitude_deg": "36.971900939941406", + "longitude_deg": "-92.68190002441406", + "elevation_ft": "1311", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Ava", + "scheduled_service": "no", + "gps_code": "KAOV", + "local_code": "AOV" + }, + { + "id": "19291", + "ident": "KAPA", + "type": "medium_airport", + "name": "Centennial Airport", + "latitude_deg": "39.57009888", + "longitude_deg": "-104.848999", + "elevation_ft": "5885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "gps_code": "KAPA", + "iata_code": "APA", + "local_code": "APA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Centennial_Airport", + "keywords": "Arapahoe County Airport" + }, + { + "id": "19292", + "ident": "KAPC", + "type": "small_airport", + "name": "Napa County Airport", + "latitude_deg": "38.2132", + "longitude_deg": "-122.280998", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Napa", + "scheduled_service": "no", + "gps_code": "KAPC", + "iata_code": "APC", + "local_code": "APC", + "home_link": "http://www.napacountyairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Napa_County_Airport" + }, + { + "id": "19293", + "ident": "KAPF", + "type": "medium_airport", + "name": "Naples Municipal Airport", + "latitude_deg": "26.1525993347", + "longitude_deg": "-81.7752990723", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Naples", + "scheduled_service": "no", + "gps_code": "KAPF", + "iata_code": "APF", + "local_code": "APF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naples_Municipal_Airport" + }, + { + "id": "3381", + "ident": "KAPG", + "type": "medium_airport", + "name": "Phillips Army Air Field", + "latitude_deg": "39.466202", + "longitude_deg": "-76.1688", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Aberdeen Proving Grounds(Aberdeen)", + "scheduled_service": "no", + "gps_code": "KAPG", + "iata_code": "APG", + "local_code": "APG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Phillips_Army_Airfield" + }, + { + "id": "19294", + "ident": "KAPH", + "type": "small_airport", + "name": "A P Hill AAF (Fort A P Hill) Airport", + "latitude_deg": "38.068902", + "longitude_deg": "-77.318298", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fort A. P. Hill", + "scheduled_service": "no", + "gps_code": "KAPH", + "iata_code": "APH", + "local_code": "APH", + "wikipedia_link": "https://en.wikipedia.org/wiki/A.P._Hill_Army_Airfield" + }, + { + "id": "3382", + "ident": "KAPN", + "type": "medium_airport", + "name": "Alpena County Regional Airport", + "latitude_deg": "45.0780983", + "longitude_deg": "-83.56030273", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Alpena", + "scheduled_service": "yes", + "gps_code": "KAPN", + "iata_code": "APN", + "local_code": "APN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alpena_County_Regional_Airport" + }, + { + "id": "19295", + "ident": "KAPT", + "type": "small_airport", + "name": "Marion County Brown Field", + "latitude_deg": "35.060699", + "longitude_deg": "-85.585297", + "elevation_ft": "641", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Jasper", + "scheduled_service": "no", + "gps_code": "KAPT", + "iata_code": "APT", + "local_code": "APT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marion_County_Airport_(Tennessee)" + }, + { + "id": "19296", + "ident": "KAPV", + "type": "small_airport", + "name": "Apple Valley Airport", + "latitude_deg": "34.575298309299995", + "longitude_deg": "-117.185997009", + "elevation_ft": "3062", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Apple Valley", + "scheduled_service": "no", + "gps_code": "KAPV", + "iata_code": "APV", + "local_code": "APV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Apple_Valley_Airport_(California)" + }, + { + "id": "21170", + "ident": "KAPY", + "type": "small_airport", + "name": "Zapata County Airport", + "latitude_deg": "26.968799591099998", + "longitude_deg": "-99.2489013672", + "elevation_ft": "422", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Zapata", + "scheduled_service": "no", + "gps_code": "KAPY", + "local_code": "APY", + "home_link": "http://www.co.zapata.tx.us/default.aspx?Zapata_County/Airport", + "keywords": "Formerly T86" + }, + { + "id": "302390", + "ident": "KAQ", + "type": "small_airport", + "name": "Kamulai Airport", + "latitude_deg": "-8.150694444440001", + "longitude_deg": "146.834", + "elevation_ft": "5800", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Kamulai Mission", + "scheduled_service": "no", + "gps_code": "AYKH", + "iata_code": "KAQ", + "local_code": "KML" + }, + { + "id": "19297", + "ident": "KAQO", + "type": "small_airport", + "name": "Llano Municipal Airport", + "latitude_deg": "30.783700942993", + "longitude_deg": "-98.662002563477", + "elevation_ft": "1102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Llano", + "scheduled_service": "no", + "gps_code": "KAQO", + "local_code": "AQO", + "home_link": "http://www.cityofllano.com/137/Municipal-Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Llano_Municipal_Airport", + "keywords": "6R9" + }, + { + "id": "19298", + "ident": "KAQP", + "type": "small_airport", + "name": "Appleton Municipal Airport", + "latitude_deg": "45.228239", + "longitude_deg": "-96.005856", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Appleton", + "scheduled_service": "no", + "gps_code": "KAQP", + "local_code": "AQP" + }, + { + "id": "19299", + "ident": "KAQR", + "type": "small_airport", + "name": "Atoka Municipal Airport", + "latitude_deg": "34.398300170898", + "longitude_deg": "-96.148101806641", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Atoka", + "scheduled_service": "no", + "gps_code": "KAQR", + "local_code": "AQR", + "home_link": "http://www.atokaok.org/195/Atoka-Municipal-Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atoka_Municipal_Airport", + "keywords": "F80" + }, + { + "id": "19300", + "ident": "KAQW", + "type": "small_airport", + "name": "Harriman and West Airport", + "latitude_deg": "42.695899963378906", + "longitude_deg": "-73.17040252685547", + "elevation_ft": "654", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "North Adams", + "scheduled_service": "no", + "gps_code": "KAQW", + "local_code": "AQW" + }, + { + "id": "19110", + "ident": "KAQX", + "type": "small_airport", + "name": "Allendale County Airport", + "latitude_deg": "32.995098", + "longitude_deg": "-81.270203", + "elevation_ft": "161", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Allendale", + "scheduled_service": "no", + "gps_code": "KAQX", + "local_code": "AQX", + "keywords": "j88, kj88" + }, + { + "id": "19301", + "ident": "KARA", + "type": "medium_airport", + "name": "Acadiana Regional Airport", + "latitude_deg": "30.0378", + "longitude_deg": "-91.883904", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Iberia", + "scheduled_service": "no", + "gps_code": "KARA", + "iata_code": "ARA", + "local_code": "ARA", + "home_link": "http://www.flyiberiaparish.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Acadiana_Regional_Airport" + }, + { + "id": "19302", + "ident": "KARB", + "type": "small_airport", + "name": "Ann Arbor Municipal Airport", + "latitude_deg": "42.2229995728", + "longitude_deg": "-83.74559783939999", + "elevation_ft": "839", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ann Arbor", + "scheduled_service": "no", + "gps_code": "KARB", + "iata_code": "ARB", + "local_code": "ARB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ann_Arbor_Municipal_Airport" + }, + { + "id": "19303", + "ident": "KARG", + "type": "small_airport", + "name": "Walnut Ridge Regional Airport", + "latitude_deg": "36.124667", + "longitude_deg": "-90.925111", + "elevation_ft": "279", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Walnut Ridge", + "scheduled_service": "no", + "gps_code": "KARG", + "iata_code": "ARG", + "local_code": "ARG", + "home_link": "http://walnutridgeairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Walnut_Ridge_Regional_Airport" + }, + { + "id": "19304", + "ident": "KARM", + "type": "small_airport", + "name": "Wharton Regional Airport", + "latitude_deg": "29.254299", + "longitude_deg": "-96.154404", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wharton", + "scheduled_service": "no", + "gps_code": "KARM", + "iata_code": "WHT", + "local_code": "ARM", + "home_link": "http://www.cityofwharton.com/page/Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wharton_Regional_Airport", + "keywords": "5R5" + }, + { + "id": "19305", + "ident": "KARR", + "type": "small_airport", + "name": "Aurora Municipal Airport", + "latitude_deg": "41.771900177", + "longitude_deg": "-88.47570037839999", + "elevation_ft": "712", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago/Aurora", + "scheduled_service": "no", + "gps_code": "KARR", + "iata_code": "AUZ", + "local_code": "ARR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aurora_Municipal_Airport_(Illinois)" + }, + { + "id": "3383", + "ident": "KART", + "type": "medium_airport", + "name": "Watertown International Airport", + "latitude_deg": "43.99190139770508", + "longitude_deg": "-76.02169799804688", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Watertown", + "scheduled_service": "yes", + "gps_code": "KART", + "iata_code": "ART", + "local_code": "ART", + "wikipedia_link": "https://en.wikipedia.org/wiki/Watertown_International_Airport" + }, + { + "id": "19306", + "ident": "KARV", + "type": "small_airport", + "name": "Lakeland-Noble F. Lee Memorial field", + "latitude_deg": "45.92789841", + "longitude_deg": "-89.73090363", + "elevation_ft": "1629", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Minocqua-Woodruff", + "scheduled_service": "no", + "gps_code": "KARV", + "iata_code": "ARV", + "local_code": "ARV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lakeland_Airport" + }, + { + "id": "19028", + "ident": "KARW", + "type": "small_airport", + "name": "Beaufort Executive Airport", + "latitude_deg": "32.412201", + "longitude_deg": "-80.634399", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Beaufort", + "scheduled_service": "no", + "gps_code": "KARW", + "iata_code": "BFT", + "local_code": "ARW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beaufort_County_Airport", + "keywords": "73J, Beaufort County Airport, Frogmore International Airport" + }, + { + "id": "19307", + "ident": "KASD", + "type": "small_airport", + "name": "Slidell Airport", + "latitude_deg": "30.3451004", + "longitude_deg": "-89.82080078", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Slidell", + "scheduled_service": "no", + "gps_code": "KASD", + "local_code": "ASD" + }, + { + "id": "19308", + "ident": "KASE", + "type": "medium_airport", + "name": "Aspen-Pitkin Co/Sardy Field", + "latitude_deg": "39.22320175", + "longitude_deg": "-106.8690033", + "elevation_ft": "7820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Aspen", + "scheduled_service": "yes", + "gps_code": "KASE", + "iata_code": "ASE", + "local_code": "ASE", + "home_link": "http://aspenairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aspen%E2%80%93Pitkin_County_Airport" + }, + { + "id": "19309", + "ident": "KASG", + "type": "small_airport", + "name": "Springdale Municipal Airport", + "latitude_deg": "36.176399231", + "longitude_deg": "-94.1193008423", + "elevation_ft": "1353", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Springdale", + "scheduled_service": "no", + "gps_code": "KASG", + "iata_code": "SPZ", + "local_code": "ASG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Springdale_Municipal_Airport" + }, + { + "id": "19310", + "ident": "KASH", + "type": "small_airport", + "name": "Nashua Airport / Boire Field", + "latitude_deg": "42.7817", + "longitude_deg": "-71.514801", + "elevation_ft": "199", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Nashua", + "scheduled_service": "no", + "gps_code": "KASH", + "iata_code": "ASH", + "local_code": "ASH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nashua_Airport" + }, + { + "id": "19311", + "ident": "KASJ", + "type": "small_airport", + "name": "Tri County Airport", + "latitude_deg": "36.29750061035156", + "longitude_deg": "-77.1708984375", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Ahoskie", + "scheduled_service": "no", + "gps_code": "KASJ", + "local_code": "ASJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tri-County_Airport_(North_Carolina)" + }, + { + "id": "19312", + "ident": "KASL", + "type": "small_airport", + "name": "Harrison County Airport", + "latitude_deg": "32.5205001831", + "longitude_deg": "-94.307800293", + "elevation_ft": "357", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marshall", + "scheduled_service": "no", + "gps_code": "KASL", + "iata_code": "ASL", + "local_code": "ASL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harrison_County_Airport_(Texas)" + }, + { + "id": "19313", + "ident": "KASN", + "type": "small_airport", + "name": "Talladega Municipal Airport", + "latitude_deg": "33.569900512699995", + "longitude_deg": "-86.05090332030001", + "elevation_ft": "529", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Talladega", + "scheduled_service": "no", + "gps_code": "KASN", + "iata_code": "ASN", + "local_code": "ASN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Talladega_Municipal_Airport" + }, + { + "id": "19314", + "ident": "KAST", + "type": "medium_airport", + "name": "Astoria Regional Airport", + "latitude_deg": "46.158000946", + "longitude_deg": "-123.878997803", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Astoria", + "scheduled_service": "no", + "gps_code": "KAST", + "iata_code": "AST", + "local_code": "AST", + "wikipedia_link": "https://en.wikipedia.org/wiki/Astoria_Regional_Airport" + }, + { + "id": "19315", + "ident": "KASW", + "type": "small_airport", + "name": "Warsaw Municipal Airport", + "latitude_deg": "41.27470016479492", + "longitude_deg": "-85.84010314941406", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Warsaw", + "scheduled_service": "no", + "gps_code": "KASW", + "local_code": "ASW" + }, + { + "id": "19316", + "ident": "KASX", + "type": "small_airport", + "name": "John F Kennedy Memorial Airport", + "latitude_deg": "46.54850006", + "longitude_deg": "-90.91899872", + "elevation_ft": "827", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "KASX", + "iata_code": "ASX", + "local_code": "ASX", + "wikipedia_link": "https://en.wikipedia.org/wiki/John_F._Kennedy_Memorial_Airport" + }, + { + "id": "19317", + "ident": "KASY", + "type": "small_airport", + "name": "Ashley Municipal Airport", + "latitude_deg": "46.0238990784", + "longitude_deg": "-99.3526000977", + "elevation_ft": "2032", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Ashley", + "scheduled_service": "no", + "gps_code": "KASY", + "iata_code": "ASY", + "local_code": "ASY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ashley_Municipal_Airport" + }, + { + "id": "19318", + "ident": "KATA", + "type": "small_airport", + "name": "Hall Miller Municipal Airport", + "latitude_deg": "33.10179901123047", + "longitude_deg": "-94.19529724121094", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "KATA", + "local_code": "ATA" + }, + { + "id": "3384", + "ident": "KATL", + "type": "large_airport", + "name": "Hartsfield Jackson Atlanta International Airport", + "latitude_deg": "33.6367", + "longitude_deg": "-84.428101", + "elevation_ft": "1026", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "yes", + "gps_code": "KATL", + "iata_code": "ATL", + "local_code": "ATL", + "home_link": "http://www.atlanta-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hartsfield–Jackson_Atlanta_International_Airport" + }, + { + "id": "19319", + "ident": "KATS", + "type": "small_airport", + "name": "Artesia Municipal Airport", + "latitude_deg": "32.8525009155", + "longitude_deg": "-104.468002319", + "elevation_ft": "3541", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Artesia", + "scheduled_service": "no", + "gps_code": "KATS", + "iata_code": "ATS", + "local_code": "ATS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Artesia_Municipal_Airport" + }, + { + "id": "19320", + "ident": "KATW", + "type": "small_airport", + "name": "Appleton International Airport", + "latitude_deg": "44.258099", + "longitude_deg": "-88.519096", + "elevation_ft": "918", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Appleton", + "scheduled_service": "yes", + "gps_code": "KATW", + "iata_code": "ATW", + "local_code": "ATW", + "home_link": "http://atwairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Outagamie_County_Regional_Airport", + "keywords": "Outagamie County Regional Airport" + }, + { + "id": "3385", + "ident": "KATY", + "type": "medium_airport", + "name": "Watertown Regional Airport", + "latitude_deg": "44.91400146", + "longitude_deg": "-97.15470123", + "elevation_ft": "1749", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Watertown", + "scheduled_service": "yes", + "gps_code": "KATY", + "iata_code": "ATY", + "local_code": "ATY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Watertown_Regional_Airport" + }, + { + "id": "19321", + "ident": "KAUG", + "type": "medium_airport", + "name": "Augusta State Airport", + "latitude_deg": "44.320598602299995", + "longitude_deg": "-69.7973022461", + "elevation_ft": "352", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Augusta", + "scheduled_service": "yes", + "gps_code": "KAUG", + "iata_code": "AUG", + "local_code": "AUG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Augusta_State_Airport" + }, + { + "id": "19322", + "ident": "KAUH", + "type": "small_airport", + "name": "Aurora Municipal Al Potter Field", + "latitude_deg": "40.89410019", + "longitude_deg": "-97.99459839", + "elevation_ft": "1803", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Aurora", + "scheduled_service": "no", + "gps_code": "KAUH", + "local_code": "AUH" + }, + { + "id": "19323", + "ident": "KAUM", + "type": "small_airport", + "name": "Austin Municipal Airport", + "latitude_deg": "43.66500092", + "longitude_deg": "-92.93340302", + "elevation_ft": "1234", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "KAUM", + "iata_code": "AUM", + "local_code": "AUM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Austin_Municipal_Airport" + }, + { + "id": "19324", + "ident": "KAUN", + "type": "small_airport", + "name": "Auburn Municipal Airport", + "latitude_deg": "38.95479965", + "longitude_deg": "-121.0820007", + "elevation_ft": "1539", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "KAUN", + "iata_code": "AUN", + "local_code": "AUN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Auburn_Municipal_Airport" + }, + { + "id": "19325", + "ident": "KAUO", + "type": "small_airport", + "name": "Auburn University Regional Airport", + "latitude_deg": "32.615101", + "longitude_deg": "-85.433998", + "elevation_ft": "777", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "KAUO", + "iata_code": "AUO", + "local_code": "AUO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Auburn-Opelika_Robert_G._Pitts_Airport", + "keywords": "Auburn–Opelika Robert G. Pitts Field" + }, + { + "id": "3386", + "ident": "KAUS", + "type": "large_airport", + "name": "Austin Bergstrom International Airport", + "latitude_deg": "30.197535", + "longitude_deg": "-97.662015", + "elevation_ft": "542", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "yes", + "gps_code": "KAUS", + "iata_code": "AUS", + "local_code": "AUS", + "home_link": "http://www.ci.austin.tx.us/austinairport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Austin-Bergstrom_International_Airport" + }, + { + "id": "19326", + "ident": "KAUW", + "type": "medium_airport", + "name": "Wausau Downtown Airport", + "latitude_deg": "44.9262008667", + "longitude_deg": "-89.6266021729", + "elevation_ft": "1201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wausau", + "scheduled_service": "no", + "gps_code": "KAUW", + "iata_code": "AUW", + "local_code": "AUW", + "home_link": "http://www.ci.wausau.wi.us/Departments/Airport/GeneralInformation.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wausau_Downtown_Airport" + }, + { + "id": "19327", + "ident": "KAVC", + "type": "small_airport", + "name": "Mecklenburg Brunswick Regional Airport", + "latitude_deg": "36.68830109", + "longitude_deg": "-78.05449677", + "elevation_ft": "441", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "South Hill", + "scheduled_service": "no", + "gps_code": "KAVC", + "local_code": "AVC" + }, + { + "id": "19328", + "ident": "KAVK", + "type": "small_airport", + "name": "Alva Regional Airport", + "latitude_deg": "36.77320098876953", + "longitude_deg": "-98.6698989868164", + "elevation_ft": "1474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Alva", + "scheduled_service": "no", + "gps_code": "KAVK", + "local_code": "AVK" + }, + { + "id": "3387", + "ident": "KAVL", + "type": "medium_airport", + "name": "Asheville Regional Airport", + "latitude_deg": "35.436199", + "longitude_deg": "-82.541801", + "elevation_ft": "2165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Asheville", + "scheduled_service": "yes", + "gps_code": "KAVL", + "iata_code": "AVL", + "local_code": "AVL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Asheville_Regional_Airport" + }, + { + "id": "19329", + "ident": "KAVO", + "type": "small_airport", + "name": "Avon Park Executive Airport", + "latitude_deg": "27.59119987", + "longitude_deg": "-81.52780151", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Avon Park", + "scheduled_service": "no", + "gps_code": "KAVO", + "iata_code": "AVO", + "local_code": "AVO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Avon_Park_Executive_Airport" + }, + { + "id": "3388", + "ident": "KAVP", + "type": "medium_airport", + "name": "Wilkes Barre Scranton International Airport", + "latitude_deg": "41.338500976599995", + "longitude_deg": "-75.72339630130001", + "elevation_ft": "962", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wilkes-Barre/Scranton", + "scheduled_service": "yes", + "gps_code": "KAVP", + "iata_code": "AVP", + "local_code": "AVP", + "home_link": "http://www.flyavp.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wilkes-Barre/Scranton_International_Airport" + }, + { + "id": "19330", + "ident": "KAVQ", + "type": "small_airport", + "name": "Marana Regional Airport", + "latitude_deg": "32.409065", + "longitude_deg": "-111.216199", + "elevation_ft": "2031", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Marana", + "scheduled_service": "no", + "gps_code": "KAVQ", + "iata_code": "AVW", + "local_code": "AVQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marana_Regional_Airport", + "keywords": "Avra Valley, Marana Auxiliary Army Airfield No. 2, Marana Field, Marana Northwest Regional, Rillito Field" + }, + { + "id": "19331", + "ident": "KAVX", + "type": "small_airport", + "name": "Catalina Airport", + "latitude_deg": "33.4049", + "longitude_deg": "-118.416", + "elevation_ft": "1602", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Avalon", + "scheduled_service": "no", + "gps_code": "KAVX", + "iata_code": "AVX", + "local_code": "AVX", + "home_link": "http://www.catalinaconservancy.org/index.php?s=visit&p=pilot_information", + "wikipedia_link": "https://en.wikipedia.org/wiki/Catalina_Airport", + "keywords": "CIB, Airport in the Sky" + }, + { + "id": "19332", + "ident": "KAWG", + "type": "small_airport", + "name": "Washington Municipal Airport", + "latitude_deg": "41.276100158691406", + "longitude_deg": "-91.67340087890625", + "elevation_ft": "754", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "KAWG", + "local_code": "AWG" + }, + { + "id": "19333", + "ident": "KAWM", + "type": "small_airport", + "name": "West Memphis Municipal Airport", + "latitude_deg": "35.1351013184", + "longitude_deg": "-90.2343978882", + "elevation_ft": "212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "West Memphis", + "scheduled_service": "no", + "gps_code": "KAWM", + "iata_code": "AWM", + "local_code": "AWM", + "wikipedia_link": "https://en.wikipedia.org/wiki/West_Memphis_Municipal_Airport" + }, + { + "id": "19334", + "ident": "KAWO", + "type": "small_airport", + "name": "Arlington Municipal Airport", + "latitude_deg": "48.16070175", + "longitude_deg": "-122.1589966", + "elevation_ft": "142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "KAWO", + "local_code": "AWO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arlington_Municipal_Airport_(Washington)" + }, + { + "id": "19335", + "ident": "KAXA", + "type": "small_airport", + "name": "Algona Municipal Airport", + "latitude_deg": "43.0778999329", + "longitude_deg": "-94.2720031738", + "elevation_ft": "1219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Algona", + "scheduled_service": "no", + "gps_code": "KAXA", + "iata_code": "AXG", + "local_code": "AXA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Algona_Municipal_Airport" + }, + { + "id": "19336", + "ident": "KAXH", + "type": "small_airport", + "name": "Houston Southwest Airport", + "latitude_deg": "29.506099700927734", + "longitude_deg": "-95.47689819335938", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "KAXH", + "local_code": "AXH" + }, + { + "id": "3389", + "ident": "KAXN", + "type": "medium_airport", + "name": "Chandler Field", + "latitude_deg": "45.866299", + "longitude_deg": "-95.394699", + "elevation_ft": "1425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Alexandria", + "scheduled_service": "no", + "gps_code": "KAXN", + "iata_code": "AXN", + "local_code": "AXN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alexandria_Municipal_Airport" + }, + { + "id": "19337", + "ident": "KAXQ", + "type": "small_airport", + "name": "Clarion County Airport", + "latitude_deg": "41.225799560546875", + "longitude_deg": "-79.44100189208984", + "elevation_ft": "1458", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Clarion", + "scheduled_service": "no", + "gps_code": "KAXQ", + "local_code": "AXQ" + }, + { + "id": "19338", + "ident": "KAXS", + "type": "small_airport", + "name": "Altus Quartz Mountain Regional Airport", + "latitude_deg": "34.697952", + "longitude_deg": "-99.3385", + "elevation_ft": "1433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Altus", + "scheduled_service": "no", + "gps_code": "KAXS", + "iata_code": "AXS", + "local_code": "AXS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Altus/Quartz_Mountain_Regional_Airport" + }, + { + "id": "19339", + "ident": "KAXV", + "type": "small_airport", + "name": "Neil Armstrong Airport", + "latitude_deg": "40.49340057", + "longitude_deg": "-84.29889679", + "elevation_ft": "913", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wapakoneta", + "scheduled_service": "no", + "gps_code": "KAXV", + "iata_code": "AXV", + "local_code": "AXV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Neil_Armstrong_Airport" + }, + { + "id": "19340", + "ident": "KAXX", + "type": "small_airport", + "name": "Angel Fire Airport", + "latitude_deg": "36.422000885", + "longitude_deg": "-105.290000916", + "elevation_ft": "8380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Angel Fire", + "scheduled_service": "no", + "gps_code": "KAXX", + "iata_code": "AXX", + "local_code": "AXX" + }, + { + "id": "29882", + "ident": "KAYE", + "type": "closed", + "name": "Fort Devens Moore Army Air Field", + "latitude_deg": "42.571961", + "longitude_deg": "-71.603766", + "elevation_ft": "269", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Ayer", + "scheduled_service": "no", + "gps_code": "KAYE", + "iata_code": "AYE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moore_Army_Air_Field" + }, + { + "id": "19341", + "ident": "KAYS", + "type": "small_airport", + "name": "Waycross Ware County Airport", + "latitude_deg": "31.2490997314", + "longitude_deg": "-82.39550018310001", + "elevation_ft": "142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Waycross", + "scheduled_service": "no", + "gps_code": "KAYS", + "iata_code": "AYS", + "local_code": "AYS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Waycross-Ware_County_Airport" + }, + { + "id": "19342", + "ident": "KAYX", + "type": "small_airport", + "name": "Arnold Air Force Base", + "latitude_deg": "35.39260101", + "longitude_deg": "-86.08580017", + "elevation_ft": "1067", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Tullahoma", + "scheduled_service": "no", + "gps_code": "KAYX", + "iata_code": "TUH", + "local_code": "AYX", + "home_link": "http://www.arnold.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arnold_Air_Force_Base" + }, + { + "id": "19343", + "ident": "KAZC", + "type": "small_airport", + "name": "Colorado City Municipal Airport", + "latitude_deg": "36.95919", + "longitude_deg": "-113.013166", + "elevation_ft": "4874", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Colorado City", + "scheduled_service": "no", + "gps_code": "KAZC", + "local_code": "AZC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Colorado_City_Municipal_Airport", + "keywords": "L36" + }, + { + "id": "19344", + "ident": "KAZE", + "type": "small_airport", + "name": "Hazlehurst Airport", + "latitude_deg": "31.884700775146484", + "longitude_deg": "-82.64739990234375", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Hazlehurst", + "scheduled_service": "no", + "gps_code": "KAZE", + "local_code": "AZE" + }, + { + "id": "3390", + "ident": "KAZO", + "type": "medium_airport", + "name": "Kalamazoo Battle Creek International Airport", + "latitude_deg": "42.234901428222656", + "longitude_deg": "-85.5521011352539", + "elevation_ft": "874", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Kalamazoo", + "scheduled_service": "yes", + "gps_code": "KAZO", + "iata_code": "AZO", + "local_code": "AZO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kalamazoo-Battle_Creek_International_Airport" + }, + { + "id": "19346", + "ident": "KB16", + "type": "small_airport", + "name": "Whitfords Airport", + "latitude_deg": "43.080299377441406", + "longitude_deg": "-76.53839874267578", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Weedsport", + "scheduled_service": "no", + "gps_code": "KB16", + "local_code": "B16" + }, + { + "id": "19347", + "ident": "KB19", + "type": "small_airport", + "name": "Biddeford Municipal Airport", + "latitude_deg": "43.4641", + "longitude_deg": "-70.472397", + "elevation_ft": "157", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Biddeford", + "scheduled_service": "no", + "local_code": "B19" + }, + { + "id": "19348", + "ident": "KB21", + "type": "small_airport", + "name": "Sugarloaf Regional Airport", + "latitude_deg": "45.085339", + "longitude_deg": "-70.216394", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Carrabassett", + "scheduled_service": "no", + "gps_code": "KB21", + "local_code": "B21" + }, + { + "id": "3391", + "ident": "KBAB", + "type": "medium_airport", + "name": "Beale Air Force Base", + "latitude_deg": "39.136101", + "longitude_deg": "-121.436996", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Marysville", + "scheduled_service": "no", + "gps_code": "KBAB", + "iata_code": "BAB", + "local_code": "BAB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beale_Air_Force_Base" + }, + { + "id": "3392", + "ident": "KBAD", + "type": "medium_airport", + "name": "Barksdale Air Force Base", + "latitude_deg": "32.501801", + "longitude_deg": "-93.662697", + "elevation_ft": "166", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bossier City", + "scheduled_service": "no", + "gps_code": "KBAD", + "iata_code": "BAD", + "local_code": "BAD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barksdale_Air_Force_Base" + }, + { + "id": "3393", + "ident": "KBAF", + "type": "medium_airport", + "name": "Westfield-Barnes Regional Airport", + "latitude_deg": "42.157799", + "longitude_deg": "-72.715599", + "elevation_ft": "271", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Westfield/Springfield", + "scheduled_service": "no", + "gps_code": "KBAF", + "iata_code": "BAF", + "local_code": "BAF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Westfield-Barnes_Regional_Airport", + "keywords": "Barnes Municipal Airport" + }, + { + "id": "3394", + "ident": "KBAK", + "type": "medium_airport", + "name": "Columbus Municipal Airport", + "latitude_deg": "39.262386", + "longitude_deg": "-85.895576", + "elevation_ft": "656", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "KBAK", + "iata_code": "CLU", + "local_code": "BAK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Columbus_Municipal_Airport_(Indiana)" + }, + { + "id": "19349", + "ident": "KBAM", + "type": "small_airport", + "name": "Battle Mountain Airport", + "latitude_deg": "40.598999023400005", + "longitude_deg": "-116.874000549", + "elevation_ft": "4532", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Battle Mountain", + "scheduled_service": "no", + "gps_code": "KBAM", + "iata_code": "BAM", + "local_code": "BAM", + "home_link": "http://www.battlemountainairport.com/default.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Battle_Mountain_Airport", + "keywords": "Lander County Airport" + }, + { + "id": "19350", + "ident": "KBAX", + "type": "small_airport", + "name": "Huron County Memorial Airport", + "latitude_deg": "43.78020096", + "longitude_deg": "-82.98539734", + "elevation_ft": "763", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Bad Axe", + "scheduled_service": "no", + "gps_code": "KBAX", + "local_code": "BAX", + "keywords": "E53" + }, + { + "id": "19351", + "ident": "KBAZ", + "type": "small_airport", + "name": "New Braunfels Municipal Airport", + "latitude_deg": "29.7045", + "longitude_deg": "-98.042198", + "elevation_ft": "651", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "New Braunfels", + "scheduled_service": "no", + "gps_code": "KBAZ", + "local_code": "BAZ", + "home_link": "https://www.nbtexas.org/2393/Airport---KBAZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Braunfels_Regional_Airport", + "keywords": "3R5, Clear Springs AFB" + }, + { + "id": "19352", + "ident": "KBBB", + "type": "small_airport", + "name": "Benson Municipal Airport", + "latitude_deg": "45.331901550299996", + "longitude_deg": "-95.6505966187", + "elevation_ft": "1039", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Benson", + "scheduled_service": "no", + "gps_code": "KBBB", + "iata_code": "BBB", + "local_code": "BBB", + "wikipedia_link": "http://www.iata.org/ps/publications/pages/code-search.aspx" + }, + { + "id": "19353", + "ident": "KBBD", + "type": "medium_airport", + "name": "Curtis Field", + "latitude_deg": "31.1793003082", + "longitude_deg": "-99.3238983154", + "elevation_ft": "1827", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brady", + "scheduled_service": "no", + "gps_code": "KBBD", + "iata_code": "BBD", + "local_code": "BBD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Curtis_Field" + }, + { + "id": "45961", + "ident": "KBBG", + "type": "small_airport", + "name": "Branson Airport", + "latitude_deg": "36.532082", + "longitude_deg": "-93.200544", + "elevation_ft": "1302", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Branson", + "scheduled_service": "yes", + "gps_code": "KBBG", + "iata_code": "BKG", + "local_code": "BBG", + "home_link": "http://flybranson.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Branson_Airport" + }, + { + "id": "19354", + "ident": "KBBP", + "type": "small_airport", + "name": "Marlboro County Jetport H.E. Avent Field", + "latitude_deg": "34.62170029", + "longitude_deg": "-79.73439789", + "elevation_ft": "147", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Bennettsville", + "scheduled_service": "no", + "gps_code": "KBBP", + "iata_code": "BTN", + "local_code": "BBP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marlboro_County_Jetport" + }, + { + "id": "19355", + "ident": "KBBW", + "type": "small_airport", + "name": "Broken Bow Municipal Airport", + "latitude_deg": "41.4365005493", + "longitude_deg": "-99.6421966553", + "elevation_ft": "2547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Broken Bow", + "scheduled_service": "no", + "gps_code": "KBBW", + "iata_code": "BBW", + "local_code": "BBW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Broken_Bow_Municipal_Airport" + }, + { + "id": "19356", + "ident": "KBCB", + "type": "small_airport", + "name": "Virginia Tech Montgomery Executive Airport", + "latitude_deg": "37.207599639899996", + "longitude_deg": "-80.4077987671", + "elevation_ft": "2132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Blacksburg", + "scheduled_service": "no", + "gps_code": "KBCB", + "iata_code": "BCB", + "local_code": "BCB", + "home_link": "http://www.vtbcb.com/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Virginia_Tech_Montgomery_Executive_Airport" + }, + { + "id": "19357", + "ident": "KBCE", + "type": "medium_airport", + "name": "Bryce Canyon Airport", + "latitude_deg": "37.706401825", + "longitude_deg": "-112.144996643", + "elevation_ft": "7590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Bryce Canyon", + "scheduled_service": "no", + "gps_code": "KBCE", + "iata_code": "BCE", + "local_code": "BCE", + "home_link": "http://www.brycecanyonairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bryce_Canyon_Airport" + }, + { + "id": "19358", + "ident": "KBCK", + "type": "small_airport", + "name": "Black River Falls Area Airport", + "latitude_deg": "44.250702", + "longitude_deg": "-90.855301", + "elevation_ft": "836", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Black River Falls", + "scheduled_service": "no", + "gps_code": "KBCK", + "local_code": "BCK" + }, + { + "id": "19359", + "ident": "KBCT", + "type": "small_airport", + "name": "Boca Raton Airport", + "latitude_deg": "26.3784999847", + "longitude_deg": "-80.1076965332", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Boca Raton", + "scheduled_service": "no", + "gps_code": "KBCT", + "iata_code": "BCT", + "local_code": "BCT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boca_Raton_Airport" + }, + { + "id": "3395", + "ident": "KBDE", + "type": "medium_airport", + "name": "Baudette International Airport", + "latitude_deg": "48.7284011841", + "longitude_deg": "-94.612197876", + "elevation_ft": "1086", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Baudette", + "scheduled_service": "no", + "gps_code": "KBDE", + "iata_code": "BDE", + "local_code": "BDE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baudette_International_Airport" + }, + { + "id": "19360", + "ident": "KBDG", + "type": "small_airport", + "name": "Blanding Municipal Airport", + "latitude_deg": "37.58330154", + "longitude_deg": "-109.4830017", + "elevation_ft": "5868", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Blanding", + "scheduled_service": "no", + "gps_code": "KBDG", + "iata_code": "BDG", + "local_code": "BDG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Blanding_Municipal_Airport" + }, + { + "id": "16496", + "ident": "KBDJ", + "type": "small_airport", + "name": "Boulder Junction Payzer Airport", + "latitude_deg": "46.1374015808", + "longitude_deg": "-89.64600372310001", + "elevation_ft": "1666", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Boulder Junction", + "scheduled_service": "no", + "gps_code": "KBDJ", + "local_code": "BDJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boulder_Junction_Airport" + }, + { + "id": "3396", + "ident": "KBDL", + "type": "medium_airport", + "name": "Bradley International Airport", + "latitude_deg": "41.93851", + "longitude_deg": "-72.688066", + "elevation_ft": "173", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Hartford", + "scheduled_service": "yes", + "gps_code": "KBDL", + "iata_code": "BDL", + "local_code": "BDL", + "home_link": "http://www.bradleyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bradley_International_Airport", + "keywords": "HFD, Hartford" + }, + { + "id": "16497", + "ident": "KBDN", + "type": "small_airport", + "name": "Bend Municipal Airport", + "latitude_deg": "44.09479904", + "longitude_deg": "-121.2009964", + "elevation_ft": "3460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Bend", + "scheduled_service": "no", + "gps_code": "KBDN", + "local_code": "BDN", + "home_link": "http://www.bend.or.us/index.aspx?page=47", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bend_Municipal_Airport", + "keywords": "KAEB, AEB, S07" + }, + { + "id": "19361", + "ident": "KBDQ", + "type": "small_airport", + "name": "Morrilton Municipal Airport", + "latitude_deg": "35.1362", + "longitude_deg": "-92.713501", + "elevation_ft": "321", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Morrilton", + "scheduled_service": "no", + "gps_code": "KBDQ", + "local_code": "BDQ" + }, + { + "id": "3397", + "ident": "KBDR", + "type": "medium_airport", + "name": "Igor I Sikorsky Memorial Airport", + "latitude_deg": "41.16350173950195", + "longitude_deg": "-73.1261978149414", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Bridgeport", + "scheduled_service": "yes", + "gps_code": "KBDR", + "iata_code": "BDR", + "local_code": "BDR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sikorsky_Memorial_Airport" + }, + { + "id": "16498", + "ident": "KBDU", + "type": "small_airport", + "name": "Boulder Municipal Airport", + "latitude_deg": "40.0393981934", + "longitude_deg": "-105.225997925", + "elevation_ft": "5288", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Boulder", + "scheduled_service": "no", + "gps_code": "KBDU", + "iata_code": "WBU", + "local_code": "BDU", + "home_link": "http://www.bouldercolorado.gov/index.php?option=com_content&view=article&id=201&Itemid=740", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boulder_Municipal_Airport", + "keywords": "K1V5, 1V5" + }, + { + "id": "29727", + "ident": "KBDX", + "type": "closed", + "name": "Broadus Airport", + "latitude_deg": "45.4333000183", + "longitude_deg": "-105.416999817", + "elevation_ft": "3031", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "scheduled_service": "no", + "gps_code": "KBDX", + "local_code": "BDX" + }, + { + "id": "19362", + "ident": "KBE", + "type": "seaplane_base", + "name": "Bell Island Hot Springs Seaplane Base", + "latitude_deg": "55.9291000366", + "longitude_deg": "-131.572006226", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Bell Island", + "scheduled_service": "no", + "gps_code": "KBE", + "iata_code": "KBE", + "local_code": "KBE" + }, + { + "id": "18730", + "ident": "KBEA", + "type": "small_airport", + "name": "Beeville Municipal Airport", + "latitude_deg": "28.361900329589844", + "longitude_deg": "-97.79100036621094", + "elevation_ft": "268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beeville", + "scheduled_service": "no", + "gps_code": "KBEA", + "local_code": "BEA", + "keywords": "Formerly 3R0" + }, + { + "id": "19363", + "ident": "KBEC", + "type": "small_airport", + "name": "Beech Factory Airport", + "latitude_deg": "37.694499969499994", + "longitude_deg": "-97.21499633790002", + "elevation_ft": "1408", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wichita", + "scheduled_service": "no", + "gps_code": "KBEC", + "iata_code": "BEC", + "local_code": "BEC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beech_Factory_Airport" + }, + { + "id": "3398", + "ident": "KBED", + "type": "medium_airport", + "name": "Laurence G Hanscom Field", + "latitude_deg": "42.47000122", + "longitude_deg": "-71.28900146", + "elevation_ft": "133", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Bedford", + "scheduled_service": "no", + "gps_code": "KBED", + "iata_code": "BED", + "local_code": "BED", + "home_link": "http://www.massport.com/hansc/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hanscom_Field", + "keywords": "Hanscom Air Force Base" + }, + { + "id": "19364", + "ident": "KBEH", + "type": "small_airport", + "name": "Southwest Michigan Regional Airport", + "latitude_deg": "42.128601074200006", + "longitude_deg": "-86.4284973145", + "elevation_ft": "643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Benton Harbor", + "scheduled_service": "no", + "gps_code": "KBEH", + "iata_code": "BEH", + "local_code": "BEH", + "home_link": "http://www.swmiairport.com/1201.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Southwest_Michigan_Regional_Airport", + "keywords": "Ross Field, Twin Cities Airport, St. Joseph City" + }, + { + "id": "19365", + "ident": "KBFA", + "type": "small_airport", + "name": "Boyne Mountain Airport", + "latitude_deg": "45.16579818725586", + "longitude_deg": "-84.92410278320312", + "elevation_ft": "719", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Boyne Falls", + "scheduled_service": "no", + "gps_code": "KBFA", + "local_code": "BFA" + }, + { + "id": "3399", + "ident": "KBFD", + "type": "medium_airport", + "name": "Bradford Regional Airport", + "latitude_deg": "41.8031005859375", + "longitude_deg": "-78.64009857177734", + "elevation_ft": "2143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bradford", + "scheduled_service": "yes", + "gps_code": "KBFD", + "iata_code": "BFD", + "local_code": "BFD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bradford_Regional_Airport" + }, + { + "id": "19366", + "ident": "KBFE", + "type": "small_airport", + "name": "Terry County Airport", + "latitude_deg": "33.173099517822266", + "longitude_deg": "-102.19300079345703", + "elevation_ft": "3264", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brownfield", + "scheduled_service": "no", + "gps_code": "KBFE", + "local_code": "BFE" + }, + { + "id": "3400", + "ident": "KBFF", + "type": "medium_airport", + "name": "Western Neb. Rgnl/William B. Heilig Airport", + "latitude_deg": "41.87400055", + "longitude_deg": "-103.5960007", + "elevation_ft": "3967", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Scottsbluff", + "scheduled_service": "yes", + "gps_code": "KBFF", + "iata_code": "BFF", + "local_code": "BFF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Western_Nebraska_Regional_Airport", + "keywords": "William B. Heilig Field" + }, + { + "id": "3401", + "ident": "KBFI", + "type": "medium_airport", + "name": "Boeing Field King County International Airport", + "latitude_deg": "47.529999", + "longitude_deg": "-122.302002", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Seattle", + "scheduled_service": "yes", + "gps_code": "KBFI", + "iata_code": "BFI", + "local_code": "BFI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boeing_Field" + }, + { + "id": "19367", + "ident": "KBFK", + "type": "small_airport", + "name": "Buffalo Municipal Airport", + "latitude_deg": "36.863300323486", + "longitude_deg": "-99.618698120117", + "elevation_ft": "1822", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Buffalo", + "scheduled_service": "no", + "gps_code": "KBFK", + "local_code": "BFK", + "home_link": "http://www.buffalooklahoma.com/Airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buffalo_Municipal_Airport_(Oklahoma)", + "keywords": "OK57" + }, + { + "id": "3402", + "ident": "KBFL", + "type": "medium_airport", + "name": "Meadows Field", + "latitude_deg": "35.433601", + "longitude_deg": "-119.056999", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bakersfield", + "scheduled_service": "yes", + "gps_code": "KBFL", + "iata_code": "BFL", + "local_code": "BFL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Meadows_Field_Airport" + }, + { + "id": "3403", + "ident": "KBFM", + "type": "medium_airport", + "name": "Mobile Downtown Airport", + "latitude_deg": "30.626800537100003", + "longitude_deg": "-88.06809997559999", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Mobile", + "scheduled_service": "no", + "gps_code": "KBFM", + "iata_code": "BFM", + "local_code": "BFM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mobile_Downtown_Airport" + }, + { + "id": "19368", + "ident": "KBFR", + "type": "small_airport", + "name": "Virgil I Grissom Municipal Airport", + "latitude_deg": "38.84000015", + "longitude_deg": "-86.44539642", + "elevation_ft": "727", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bedford", + "scheduled_service": "no", + "gps_code": "KBFR", + "iata_code": "BFR", + "local_code": "BFR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Virgil_I._Grissom_Municipal_Airport" + }, + { + "id": "19369", + "ident": "KBFW", + "type": "closed", + "name": "Silver Bay Municipal Airport", + "latitude_deg": "47.249001", + "longitude_deg": "-91.415604", + "elevation_ft": "1089", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Silver Bay", + "scheduled_service": "no", + "gps_code": "KBFW", + "local_code": "BFW" + }, + { + "id": "19370", + "ident": "KBGD", + "type": "small_airport", + "name": "Hutchinson County Airport", + "latitude_deg": "35.700901031499995", + "longitude_deg": "-101.393997192", + "elevation_ft": "3055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Borger", + "scheduled_service": "no", + "gps_code": "KBGD", + "iata_code": "BGD", + "local_code": "BGD", + "home_link": "http://www.hutchinsoncountyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hutchinson_County_Airport" + }, + { + "id": "19371", + "ident": "KBGE", + "type": "small_airport", + "name": "Decatur County Industrial Air Park", + "latitude_deg": "30.9715004", + "longitude_deg": "-84.63739777", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Bainbridge", + "scheduled_service": "no", + "gps_code": "KBGE", + "iata_code": "BGE", + "local_code": "BGE", + "home_link": "http://bainbridgega.com/chamber/airport.shtml", + "wikipedia_link": "https://en.wikipedia.org/wiki/Decatur_County_Industrial_Air_Park" + }, + { + "id": "19372", + "ident": "KBGF", + "type": "small_airport", + "name": "Winchester Municipal Airport", + "latitude_deg": "35.1775016784668", + "longitude_deg": "-86.06620025634766", + "elevation_ft": "979", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Winchester", + "scheduled_service": "no", + "gps_code": "KBGF", + "local_code": "BGF" + }, + { + "id": "3404", + "ident": "KBGM", + "type": "medium_airport", + "name": "Greater Binghamton/Edwin A Link field", + "latitude_deg": "42.20869827", + "longitude_deg": "-75.97979736", + "elevation_ft": "1636", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Binghamton", + "scheduled_service": "yes", + "gps_code": "KBGM", + "iata_code": "BGM", + "local_code": "BGM", + "home_link": "http://binghamtonairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greater_Binghamton_Airport", + "keywords": "Broome County Airport, Edwin A Link Field" + }, + { + "id": "3405", + "ident": "KBGR", + "type": "medium_airport", + "name": "Bangor International Airport", + "latitude_deg": "44.8074", + "longitude_deg": "-68.828102", + "elevation_ft": "192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Bangor", + "scheduled_service": "yes", + "gps_code": "KBGR", + "iata_code": "BGR", + "local_code": "BGR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bangor_International_Airport" + }, + { + "id": "336952", + "ident": "KBH", + "type": "small_airport", + "name": "Kahama Airstrip", + "latitude_deg": "-3.847", + "longitude_deg": "32.6865", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-22", + "municipality": "Kahama", + "scheduled_service": "no", + "iata_code": "KBH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kahama_Airstrip" + }, + { + "id": "19373", + "ident": "KBHB", + "type": "medium_airport", + "name": "Hancock County-Bar Harbor Airport", + "latitude_deg": "44.45000076", + "longitude_deg": "-68.3615036", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Bar Harbor", + "scheduled_service": "yes", + "gps_code": "KBHB", + "iata_code": "BHB", + "local_code": "BHB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hancock_County-Bar_Harbor_Airport" + }, + { + "id": "19374", + "ident": "KBHC", + "type": "small_airport", + "name": "Baxley Municipal Airport", + "latitude_deg": "31.71380043029785", + "longitude_deg": "-82.393798828125", + "elevation_ft": "201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Baxley", + "scheduled_service": "no", + "gps_code": "KBHC", + "local_code": "BHC" + }, + { + "id": "19375", + "ident": "KBHK", + "type": "small_airport", + "name": "Baker Municipal Airport", + "latitude_deg": "46.347599", + "longitude_deg": "-104.259002", + "elevation_ft": "2975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Baker", + "scheduled_service": "no", + "gps_code": "KBHK", + "local_code": "BHK", + "keywords": "3U6" + }, + { + "id": "3406", + "ident": "KBHM", + "type": "medium_airport", + "name": "Birmingham-Shuttlesworth International Airport", + "latitude_deg": "33.562901", + "longitude_deg": "-86.753502", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Birmingham", + "scheduled_service": "yes", + "gps_code": "KBHM", + "iata_code": "BHM", + "local_code": "BHM", + "home_link": "http://www.flybirmingham.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Birmingham_International_Airport_(US)" + }, + { + "id": "16500", + "ident": "KBID", + "type": "small_airport", + "name": "Block Island State Airport", + "latitude_deg": "41.1680984497", + "longitude_deg": "-71.577796936", + "elevation_ft": "108", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Block Island", + "scheduled_service": "yes", + "gps_code": "KBID", + "iata_code": "BID", + "local_code": "BID", + "home_link": "http://www.blockislandri.net/blockislandairport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Block_Island_State_Airport" + }, + { + "id": "19376", + "ident": "KBIE", + "type": "small_airport", + "name": "Beatrice Municipal Airport", + "latitude_deg": "40.301300048799995", + "longitude_deg": "-96.75409698490002", + "elevation_ft": "1324", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Beatrice", + "scheduled_service": "yes", + "gps_code": "KBIE", + "iata_code": "BIE", + "local_code": "BIE", + "home_link": "http://beatriceairport.com/" + }, + { + "id": "3407", + "ident": "KBIF", + "type": "medium_airport", + "name": "Biggs Army Air Field (Fort Bliss)", + "latitude_deg": "31.84950066", + "longitude_deg": "-106.3799973", + "elevation_ft": "3946", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Bliss/El Paso", + "scheduled_service": "no", + "gps_code": "KBIF", + "iata_code": "BIF", + "local_code": "BIF", + "home_link": "https://www.bliss.army.mil/biggs/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Biggs_Army_Airfield", + "keywords": "Fort Bliss" + }, + { + "id": "19377", + "ident": "KBIH", + "type": "medium_airport", + "name": "Eastern Sierra Regional Airport", + "latitude_deg": "37.3731002808", + "longitude_deg": "-118.363998413", + "elevation_ft": "4124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bishop", + "scheduled_service": "no", + "gps_code": "KBIH", + "iata_code": "BIH", + "local_code": "BIH", + "home_link": "http://www.inyocounty.us/Airport/index.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eastern_Sierra_Regional_Airport" + }, + { + "id": "19378", + "ident": "KBIJ", + "type": "small_airport", + "name": "Early County Airport", + "latitude_deg": "31.397499084472656", + "longitude_deg": "-84.8947982788086", + "elevation_ft": "214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Blakely", + "scheduled_service": "no", + "gps_code": "KBIJ", + "local_code": "BIJ" + }, + { + "id": "3408", + "ident": "KBIL", + "type": "medium_airport", + "name": "Billings Logan International Airport", + "latitude_deg": "45.807701", + "longitude_deg": "-108.542999", + "elevation_ft": "3652", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Billings", + "scheduled_service": "yes", + "gps_code": "KBIL", + "iata_code": "BIL", + "local_code": "BIL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Billings_Logan_International_Airport" + }, + { + "id": "3409", + "ident": "KBIS", + "type": "medium_airport", + "name": "Bismarck Municipal Airport", + "latitude_deg": "46.772701263427734", + "longitude_deg": "-100.74600219726562", + "elevation_ft": "1661", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Bismarck", + "scheduled_service": "yes", + "gps_code": "KBIS", + "iata_code": "BIS", + "local_code": "BIS", + "home_link": "http://bismarckairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bismarck_Municipal_Airport" + }, + { + "id": "19379", + "ident": "KBIV", + "type": "small_airport", + "name": "West Michigan Regional Airport", + "latitude_deg": "42.742901", + "longitude_deg": "-86.107399", + "elevation_ft": "698", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Holland", + "scheduled_service": "no", + "gps_code": "KBIV", + "local_code": "BIV", + "home_link": "http://westmichiganregionalairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/West_Michigan_Regional_Airport", + "keywords": "Tulip City Airport" + }, + { + "id": "3410", + "ident": "KBIX", + "type": "medium_airport", + "name": "Keesler Air Force Base", + "latitude_deg": "30.4104003906", + "longitude_deg": "-88.92440032959999", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Biloxi", + "scheduled_service": "no", + "gps_code": "KBIX", + "iata_code": "BIX", + "local_code": "BIX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Keesler_Air_Force_Base" + }, + { + "id": "3411", + "ident": "KBJC", + "type": "medium_airport", + "name": "Rocky Mountain Metropolitan Airport", + "latitude_deg": "39.90879822", + "longitude_deg": "-105.1169968", + "elevation_ft": "5673", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "gps_code": "KBJC", + "iata_code": "BJC", + "local_code": "BJC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rocky_Mountain_Metropolitan_Airport", + "keywords": "Jefferson County Airport, Jeffco Airport" + }, + { + "id": "19380", + "ident": "KBJI", + "type": "medium_airport", + "name": "Bemidji Regional Airport", + "latitude_deg": "47.50939941", + "longitude_deg": "-94.93370056", + "elevation_ft": "1391", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Bemidji", + "scheduled_service": "no", + "gps_code": "KBJI", + "iata_code": "BJI", + "local_code": "BJI", + "home_link": "http://www.bemidjiairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bemidji_Regional_Airport" + }, + { + "id": "19381", + "ident": "KBJJ", + "type": "small_airport", + "name": "Wayne County Airport", + "latitude_deg": "40.874801635699995", + "longitude_deg": "-81.88829803470001", + "elevation_ft": "1136", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wooster", + "scheduled_service": "no", + "gps_code": "KBJJ", + "iata_code": "BJJ", + "local_code": "BJJ", + "home_link": "http://www.woosterwaynecountyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wayne_County_Airport_(Ohio)" + }, + { + "id": "19382", + "ident": "KBKD", + "type": "small_airport", + "name": "Stephens County Airport", + "latitude_deg": "32.71900177", + "longitude_deg": "-98.89099884030001", + "elevation_ft": "1284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Breckenridge", + "scheduled_service": "no", + "gps_code": "KBKD", + "iata_code": "BKD", + "local_code": "BKD" + }, + { + "id": "3412", + "ident": "KBKE", + "type": "medium_airport", + "name": "Baker City Municipal Airport", + "latitude_deg": "44.837299346900004", + "longitude_deg": "-117.808998108", + "elevation_ft": "3373", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Baker City", + "scheduled_service": "no", + "gps_code": "KBKE", + "iata_code": "BKE", + "local_code": "BKE", + "home_link": "http://www.bakeraircraft.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baker_City_Municipal_Airport" + }, + { + "id": "3413", + "ident": "KBKF", + "type": "medium_airport", + "name": "Buckley Space Force Base", + "latitude_deg": "39.701698", + "longitude_deg": "-104.751999", + "elevation_ft": "5662", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Aurora", + "scheduled_service": "no", + "gps_code": "KBKF", + "iata_code": "BFK", + "local_code": "BKF", + "home_link": "https://www.buckley.spaceforce.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buckley_Space_Force_Base", + "keywords": "Buckley AFB, Buckley ANGB, Denver NAS, Buckley Field, Demolition Bombing Range–Lowry Auxiliary Field" + }, + { + "id": "3414", + "ident": "KBKL", + "type": "medium_airport", + "name": "Burke Lakefront Airport", + "latitude_deg": "41.51750183105469", + "longitude_deg": "-81.68329620361328", + "elevation_ft": "583", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "KBKL", + "iata_code": "BKL", + "local_code": "BKL", + "home_link": "http://www.clevelandairport.com/site/470/default.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cleveland_Burke_Lakefront_Airport" + }, + { + "id": "18839", + "ident": "KBKN", + "type": "small_airport", + "name": "Blackwell Tonkawa Municipal Airport", + "latitude_deg": "36.74509811", + "longitude_deg": "-97.34960175", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Blackwell", + "scheduled_service": "no", + "gps_code": "KBKN", + "local_code": "BKN", + "keywords": "Formerly 4O3" + }, + { + "id": "19383", + "ident": "KBKS", + "type": "small_airport", + "name": "Brooks County Airport", + "latitude_deg": "27.20680046", + "longitude_deg": "-98.12120056", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Falfurrias", + "scheduled_service": "no", + "gps_code": "KBKS", + "local_code": "BKS" + }, + { + "id": "19384", + "ident": "KBKT", + "type": "small_airport", + "name": "Allen C Perkinson Blackstone Army Air Field", + "latitude_deg": "37.0741996765", + "longitude_deg": "-77.9574966431", + "elevation_ft": "439", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Blackstone", + "scheduled_service": "no", + "gps_code": "KBKT", + "iata_code": "BKT", + "local_code": "BKT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Blackstone_Army_Airfield" + }, + { + "id": "19385", + "ident": "KBKV", + "type": "small_airport", + "name": "Hernando County Airport", + "latitude_deg": "28.47360039", + "longitude_deg": "-82.45539856", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Brooksville", + "scheduled_service": "no", + "gps_code": "KBKV", + "local_code": "BKV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hernando_County_Airport" + }, + { + "id": "3415", + "ident": "KBKW", + "type": "medium_airport", + "name": "Raleigh County Memorial Airport", + "latitude_deg": "37.787300109899995", + "longitude_deg": "-81.1241989136", + "elevation_ft": "2504", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Beckley", + "scheduled_service": "yes", + "gps_code": "KBKW", + "iata_code": "BKW", + "local_code": "BKW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beckley_Raleigh_County_Memorial_Airport" + }, + { + "id": "19386", + "ident": "KBKX", + "type": "small_airport", + "name": "Brookings Regional Airport", + "latitude_deg": "44.304798", + "longitude_deg": "-96.816902", + "elevation_ft": "1648", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Brookings", + "scheduled_service": "no", + "gps_code": "KBKX", + "iata_code": "BKX", + "local_code": "BKX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brookings_Regional_Airport" + }, + { + "id": "19387", + "ident": "KBLF", + "type": "medium_airport", + "name": "Mercer County Airport", + "latitude_deg": "37.295799", + "longitude_deg": "-81.207703", + "elevation_ft": "2857", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Bluefield", + "scheduled_service": "yes", + "gps_code": "KBLF", + "iata_code": "BLF", + "local_code": "BLF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mercer_County_Airport_(West_Virginia)" + }, + { + "id": "19388", + "ident": "KBLH", + "type": "medium_airport", + "name": "Blythe Airport", + "latitude_deg": "33.6192016602", + "longitude_deg": "-114.717002869", + "elevation_ft": "399", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Blythe", + "scheduled_service": "no", + "gps_code": "KBLH", + "iata_code": "BLH", + "local_code": "BLH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Blythe_Airport" + }, + { + "id": "3416", + "ident": "KBLI", + "type": "medium_airport", + "name": "Bellingham International Airport", + "latitude_deg": "48.79280090332031", + "longitude_deg": "-122.53800201416016", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Bellingham", + "scheduled_service": "yes", + "gps_code": "KBLI", + "iata_code": "BLI", + "local_code": "BLI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bellingham_International_Airport" + }, + { + "id": "19389", + "ident": "KBLM", + "type": "small_airport", + "name": "Monmouth Executive Airport", + "latitude_deg": "40.18690109", + "longitude_deg": "-74.12490082", + "elevation_ft": "153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Belmar/Farmingdale", + "scheduled_service": "no", + "gps_code": "KBLM", + "iata_code": "BLM", + "local_code": "BLM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monmouth_Executive_Airport" + }, + { + "id": "19390", + "ident": "KBLU", + "type": "small_airport", + "name": "Blue Canyon Nyack Airport", + "latitude_deg": "39.2750015259", + "longitude_deg": "-120.709999084", + "elevation_ft": "5284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Emigrant Gap", + "scheduled_service": "no", + "gps_code": "KBLU", + "iata_code": "BLU", + "local_code": "BLU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Blue_Canyon_%E2%80%93_Nyack_Airport" + }, + { + "id": "3417", + "ident": "KBLV", + "type": "medium_airport", + "name": "Scott AFB/Midamerica Airport", + "latitude_deg": "38.5452", + "longitude_deg": "-89.835197", + "elevation_ft": "459", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Belleville", + "scheduled_service": "yes", + "gps_code": "KBLV", + "iata_code": "BLV", + "local_code": "BLV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Scott_Air_Force_Base", + "keywords": "Scott Air Force Base" + }, + { + "id": "302155", + "ident": "KBM", + "type": "small_airport", + "name": "Kabwum", + "latitude_deg": "-6.15547222222", + "longitude_deg": "147.191472222", + "elevation_ft": "4450", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "scheduled_service": "no", + "gps_code": "AYKB", + "iata_code": "KBM", + "local_code": "KBM" + }, + { + "id": "19391", + "ident": "KBMC", + "type": "small_airport", + "name": "Brigham City Regional Airport", + "latitude_deg": "41.552399", + "longitude_deg": "-112.061996", + "elevation_ft": "4229", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Brigham City", + "scheduled_service": "no", + "gps_code": "KBMC", + "iata_code": "BMC", + "local_code": "BMC", + "home_link": "http://brighamcity.utah.gov/airport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brigham_City_Airport#References", + "keywords": "Brigham City Airport" + }, + { + "id": "3418", + "ident": "KBMG", + "type": "medium_airport", + "name": "Monroe County Airport", + "latitude_deg": "39.145999908447266", + "longitude_deg": "-86.61669921875", + "elevation_ft": "846", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bloomington", + "scheduled_service": "no", + "gps_code": "KBMG", + "iata_code": "BMG", + "local_code": "BMG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monroe_County_Airport_(Indiana)" + }, + { + "id": "3419", + "ident": "KBMI", + "type": "medium_airport", + "name": "Central Illinois Regional Airport at Bloomington-Normal", + "latitude_deg": "40.4771", + "longitude_deg": "-88.915901", + "elevation_ft": "871", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Bloomington/Normal", + "scheduled_service": "yes", + "gps_code": "KBMI", + "iata_code": "BMI", + "local_code": "BMI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Central_Illinois_Regional_Airport" + }, + { + "id": "19392", + "ident": "KBML", + "type": "small_airport", + "name": "Berlin Regional Airport", + "latitude_deg": "44.57540131", + "longitude_deg": "-71.17590332", + "elevation_ft": "1161", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Berlin", + "scheduled_service": "no", + "gps_code": "KBML", + "iata_code": "BML", + "local_code": "BML", + "wikipedia_link": "https://en.wikipedia.org/wiki/Berlin_Municipal_Airport" + }, + { + "id": "19393", + "ident": "KBMQ", + "type": "small_airport", + "name": "Burnet Municipal Kate Craddock Field", + "latitude_deg": "30.73889923095703", + "longitude_deg": "-98.23860168457031", + "elevation_ft": "1284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Burnet", + "scheduled_service": "no", + "gps_code": "KBMQ", + "local_code": "BMQ" + }, + { + "id": "19394", + "ident": "KBMT", + "type": "small_airport", + "name": "Beaumont Municipal Airport", + "latitude_deg": "30.070635", + "longitude_deg": "-94.215746", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beaumont", + "scheduled_service": "no", + "gps_code": "KBMT", + "iata_code": "BMT", + "local_code": "BMT", + "home_link": "https://beaumonttexas.gov/beaumont-municipal-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beaumont_Municipal_Airport", + "keywords": "beaumont, beaumont municipal" + }, + { + "id": "3420", + "ident": "KBNA", + "type": "large_airport", + "name": "Nashville International Airport", + "latitude_deg": "36.1245002746582", + "longitude_deg": "-86.6781997680664", + "elevation_ft": "599", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Nashville", + "scheduled_service": "yes", + "gps_code": "KBNA", + "iata_code": "BNA", + "local_code": "BNA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nashville_International_Airport" + }, + { + "id": "19395", + "ident": "KBNG", + "type": "small_airport", + "name": "Banning Municipal Airport", + "latitude_deg": "33.922548", + "longitude_deg": "-116.850672", + "elevation_ft": "2219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Banning", + "scheduled_service": "no", + "gps_code": "KBNG", + "iata_code": "BNG", + "local_code": "BNG", + "home_link": "http://www.ci.banning.ca.us/index.aspx?NID=23", + "wikipedia_link": "https://en.wikipedia.org/wiki/Banning_Municipal_Airport", + "keywords": "banning" + }, + { + "id": "19396", + "ident": "KBNL", + "type": "small_airport", + "name": "Barnwell Regional Airport", + "latitude_deg": "33.25780106", + "longitude_deg": "-81.38829803", + "elevation_ft": "246", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Barnwell", + "scheduled_service": "no", + "gps_code": "KBNL", + "iata_code": "BNL", + "local_code": "BNL", + "home_link": "http://www.barnwellregionalairport.com/Home_Page.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barnwell_Regional_Airport" + }, + { + "id": "19397", + "ident": "KBNO", + "type": "medium_airport", + "name": "Burns Municipal Airport", + "latitude_deg": "43.590463", + "longitude_deg": "-118.955154", + "elevation_ft": "4148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Burns", + "scheduled_service": "no", + "gps_code": "KBNO", + "iata_code": "BNO", + "local_code": "BNO", + "home_link": "http://www.ci.burns.or.us/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Burns_Municipal_Airport" + }, + { + "id": "19398", + "ident": "KBNW", + "type": "small_airport", + "name": "Boone Municipal Airport", + "latitude_deg": "42.0495986938", + "longitude_deg": "-93.8476028442", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Boone", + "scheduled_service": "no", + "gps_code": "KBNW", + "iata_code": "BNW", + "local_code": "BNW" + }, + { + "id": "3421", + "ident": "KBOI", + "type": "medium_airport", + "name": "Boise Air Terminal/Gowen Field", + "latitude_deg": "43.5644", + "longitude_deg": "-116.223", + "elevation_ft": "2871", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Boise", + "scheduled_service": "yes", + "gps_code": "KBOI", + "iata_code": "BOI", + "local_code": "BOI", + "home_link": "http://www.cityofboise.org/departments/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boise_Airport", + "keywords": "Boise Air Terminal, Gowen Field" + }, + { + "id": "3422", + "ident": "KBOS", + "type": "large_airport", + "name": "Logan International Airport", + "latitude_deg": "42.3643", + "longitude_deg": "-71.005203", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Boston", + "scheduled_service": "yes", + "gps_code": "KBOS", + "iata_code": "BOS", + "local_code": "BOS", + "home_link": "http://www.massport.com/logan/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Logan_International_Airport", + "keywords": "General Edward Lawrence Logan International Airport" + }, + { + "id": "19399", + "ident": "KBOW", + "type": "small_airport", + "name": "Bartow Executive Airport", + "latitude_deg": "27.943399", + "longitude_deg": "-81.783401", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bartow", + "scheduled_service": "no", + "gps_code": "KBOW", + "iata_code": "BOW", + "local_code": "BOW", + "home_link": "http://www.bartow-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bartow_Municipal_Airport", + "keywords": "Bartow Municipal" + }, + { + "id": "19400", + "ident": "KBPG", + "type": "small_airport", + "name": "Big Spring Mc Mahon-Wrinkle Airport", + "latitude_deg": "32.212601", + "longitude_deg": "-101.522003", + "elevation_ft": "2573", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Big Spring", + "scheduled_service": "no", + "gps_code": "KBPG", + "iata_code": "HCA", + "local_code": "BPG", + "home_link": "http://www.mybigspring.com/pages/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Big_Spring_McMahon-Wrinkle_Airport", + "keywords": "21XS, T49, Webb Air Force Base, Webb AFB" + }, + { + "id": "19401", + "ident": "KBPI", + "type": "medium_airport", + "name": "Miley Memorial Field", + "latitude_deg": "42.58509827", + "longitude_deg": "-110.1110001", + "elevation_ft": "6990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Big Piney", + "scheduled_service": "no", + "gps_code": "KBPI", + "iata_code": "BPI", + "local_code": "BPI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miley_Memorial_Field", + "keywords": "Big Piney-Marbleton Airport" + }, + { + "id": "19402", + "ident": "KBPK", + "type": "medium_airport", + "name": "Ozark Regional Airport", + "latitude_deg": "36.3689002991", + "longitude_deg": "-92.47049713130001", + "elevation_ft": "928", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Mountain Home", + "scheduled_service": "no", + "gps_code": "KBPK", + "iata_code": "WMH", + "local_code": "BPK", + "home_link": "http://www.flytheozarks.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ozark_Regional_Airport", + "keywords": "Baxter County Regional Airport" + }, + { + "id": "19403", + "ident": "KBPP", + "type": "closed", + "name": "Bowman Municipal Airport", + "latitude_deg": "46.187", + "longitude_deg": "-103.428001", + "elevation_ft": "2958", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Bowman", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bowman_Municipal_Airport", + "keywords": "KBPP, BWM, BPP" + }, + { + "id": "3423", + "ident": "KBPT", + "type": "medium_airport", + "name": "Jack Brooks Regional Airport", + "latitude_deg": "29.9508", + "longitude_deg": "-94.020699", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beaumont/Port Arthur", + "scheduled_service": "yes", + "gps_code": "KBPT", + "iata_code": "BPT", + "local_code": "BPT", + "home_link": "https://flysetx.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jack_Brooks_Regional_Airport", + "keywords": "Southeast Texas Regional" + }, + { + "id": "3424", + "ident": "KBQK", + "type": "medium_airport", + "name": "Brunswick Golden Isles Airport", + "latitude_deg": "31.258800506591797", + "longitude_deg": "-81.46649932861328", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Brunswick", + "scheduled_service": "yes", + "gps_code": "KBQK", + "iata_code": "BQK", + "local_code": "BQK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brunswick_Golden_Isles_Airport" + }, + { + "id": "19404", + "ident": "KBQP", + "type": "small_airport", + "name": "Morehouse Memorial Airport", + "latitude_deg": "32.75510025", + "longitude_deg": "-91.88189697", + "elevation_ft": "168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bastrop", + "scheduled_service": "no", + "gps_code": "KBQP", + "local_code": "BQP" + }, + { + "id": "19405", + "ident": "KBQR", + "type": "small_airport", + "name": "Buffalo Lancaster Regional Airport", + "latitude_deg": "42.92229843", + "longitude_deg": "-78.61229706", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "KBQR", + "local_code": "BQR" + }, + { + "id": "19406", + "ident": "KBRD", + "type": "medium_airport", + "name": "Brainerd Lakes Regional Airport", + "latitude_deg": "46.402861", + "longitude_deg": "-94.129727", + "elevation_ft": "1232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Brainerd", + "scheduled_service": "yes", + "gps_code": "KBRD", + "iata_code": "BRD", + "local_code": "BRD", + "home_link": "http://brainerdairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brainerd_Lakes_Regional_Airport", + "keywords": "Crow Wing County Airport" + }, + { + "id": "3425", + "ident": "KBRL", + "type": "medium_airport", + "name": "Southeast Iowa Regional Airport", + "latitude_deg": "40.783199310302734", + "longitude_deg": "-91.12550354003906", + "elevation_ft": "698", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Burlington", + "scheduled_service": "yes", + "gps_code": "KBRL", + "iata_code": "BRL", + "local_code": "BRL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Southeast_Iowa_Regional_Airport" + }, + { + "id": "3426", + "ident": "KBRO", + "type": "medium_airport", + "name": "Brownsville South Padre Island International Airport", + "latitude_deg": "25.90679931640625", + "longitude_deg": "-97.4259033203125", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brownsville", + "scheduled_service": "yes", + "gps_code": "KBRO", + "iata_code": "BRO", + "local_code": "BRO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brownsville/South_Padre_Island_International_Airport" + }, + { + "id": "19407", + "ident": "KBRY", + "type": "small_airport", + "name": "Samuels Field", + "latitude_deg": "37.8143005371", + "longitude_deg": "-85.4996032715", + "elevation_ft": "669", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Bardstown", + "scheduled_service": "no", + "gps_code": "KBRY", + "iata_code": "BRY", + "local_code": "BRY", + "home_link": "http://www.cityofbardstown.org/dept-airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Samuels_Field" + }, + { + "id": "19408", + "ident": "KBST", + "type": "small_airport", + "name": "Belfast Municipal Airport", + "latitude_deg": "44.409400939941406", + "longitude_deg": "-69.01190185546875", + "elevation_ft": "198", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Belfast", + "scheduled_service": "no", + "gps_code": "KBST", + "local_code": "BST" + }, + { + "id": "31729", + "ident": "KBT", + "type": "small_airport", + "name": "Kaben Airport", + "latitude_deg": "8.90056", + "longitude_deg": "170.843994", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-MAL", + "municipality": "Kaben", + "scheduled_service": "yes", + "iata_code": "KBT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kaben#Airport" + }, + { + "id": "20252", + "ident": "KBTA", + "type": "small_airport", + "name": "Blair Municipal Airport", + "latitude_deg": "41.41809844970703", + "longitude_deg": "-96.11360168457031", + "elevation_ft": "1325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Blair", + "scheduled_service": "no", + "gps_code": "KBTA", + "local_code": "BTA", + "keywords": "Formerly K46" + }, + { + "id": "19409", + "ident": "KBTF", + "type": "small_airport", + "name": "Skypark Airport", + "latitude_deg": "40.8694000244", + "longitude_deg": "-111.927001953", + "elevation_ft": "4234", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Bountiful", + "scheduled_service": "no", + "gps_code": "KBTF", + "iata_code": "BTF", + "local_code": "BTF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Skypark_Airport" + }, + { + "id": "3427", + "ident": "KBTL", + "type": "medium_airport", + "name": "Battle Creek Executive Airport at Kellogg Field", + "latitude_deg": "42.307301", + "longitude_deg": "-85.251503", + "elevation_ft": "952", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Battle Creek", + "scheduled_service": "no", + "gps_code": "KBTL", + "iata_code": "BTL", + "local_code": "BTL", + "home_link": "http://www.battlecreekmi.gov/City_Government/Departments/W_K__Kellogg_Airport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/W.K._Kellogg_Regional_Airport", + "keywords": "W K Kellogg" + }, + { + "id": "3428", + "ident": "KBTM", + "type": "medium_airport", + "name": "Bert Mooney Airport", + "latitude_deg": "45.95479965209961", + "longitude_deg": "-112.49700164794922", + "elevation_ft": "5550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Butte", + "scheduled_service": "yes", + "gps_code": "KBTM", + "iata_code": "BTM", + "local_code": "BTM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bert_Mooney_Airport" + }, + { + "id": "19410", + "ident": "KBTN", + "type": "small_airport", + "name": "Britton Municipal Airport", + "latitude_deg": "45.815200805664", + "longitude_deg": "-97.743103027344", + "elevation_ft": "1318", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Britton", + "scheduled_service": "no", + "gps_code": "KBTN", + "iata_code": "TTO", + "local_code": "BTN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Britton_Municipal_Airport" + }, + { + "id": "19411", + "ident": "KBTP", + "type": "small_airport", + "name": "Pittsburgh/Butler Regional Airport", + "latitude_deg": "40.776901", + "longitude_deg": "-79.949699", + "elevation_ft": "1248", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Butler", + "scheduled_service": "no", + "gps_code": "KBTP", + "iata_code": "BTP", + "local_code": "BTP", + "home_link": "http://butlercountyairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Butler_County_Airport", + "keywords": "Graham Field, Butler-Graham Airport, Butler County-K W Scholter Field" + }, + { + "id": "3429", + "ident": "KBTR", + "type": "medium_airport", + "name": "Baton Rouge Metropolitan Airport", + "latitude_deg": "30.533199", + "longitude_deg": "-91.149597", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "yes", + "gps_code": "KBTR", + "iata_code": "BTR", + "local_code": "BTR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baton_Rouge_Metropolitan_Airport" + }, + { + "id": "3430", + "ident": "KBTV", + "type": "medium_airport", + "name": "Burlington International Airport", + "latitude_deg": "44.471901", + "longitude_deg": "-73.153297", + "elevation_ft": "335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "South Burlington", + "scheduled_service": "yes", + "gps_code": "KBTV", + "iata_code": "BTV", + "local_code": "BTV", + "home_link": "http://www.vermontairports.com/btv.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Burlington_International_Airport" + }, + { + "id": "19412", + "ident": "KBTY", + "type": "small_airport", + "name": "Beatty Airport", + "latitude_deg": "36.8610992432", + "longitude_deg": "-116.787002563", + "elevation_ft": "3170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Beatty", + "scheduled_service": "no", + "gps_code": "KBTY", + "iata_code": "BTY", + "local_code": "BTY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beatty_Airport" + }, + { + "id": "19413", + "ident": "KBUB", + "type": "small_airport", + "name": "Cram Field", + "latitude_deg": "41.776699066199996", + "longitude_deg": "-99.14969635010002", + "elevation_ft": "2182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Burwell", + "scheduled_service": "no", + "gps_code": "KBUB", + "iata_code": "BUB", + "local_code": "BUB" + }, + { + "id": "3431", + "ident": "KBUF", + "type": "large_airport", + "name": "Buffalo Niagara International Airport", + "latitude_deg": "42.94049835", + "longitude_deg": "-78.73220062", + "elevation_ft": "728", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Buffalo", + "scheduled_service": "yes", + "gps_code": "KBUF", + "iata_code": "BUF", + "local_code": "BUF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buffalo_Niagara_International_Airport" + }, + { + "id": "19414", + "ident": "KBUM", + "type": "small_airport", + "name": "Butler Memorial Airport", + "latitude_deg": "38.2897987366", + "longitude_deg": "-94.3401031494", + "elevation_ft": "892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Butler", + "scheduled_service": "no", + "gps_code": "KBUM", + "iata_code": "BUM", + "local_code": "BUM" + }, + { + "id": "3432", + "ident": "KBUR", + "type": "medium_airport", + "name": "Bob Hope Airport", + "latitude_deg": "34.197703", + "longitude_deg": "-118.356378", + "elevation_ft": "778", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Burbank", + "scheduled_service": "yes", + "gps_code": "KBUR", + "iata_code": "BUR", + "local_code": "BUR" + }, + { + "id": "19415", + "ident": "KBUU", + "type": "small_airport", + "name": "Burlington Municipal Airport", + "latitude_deg": "42.69070053100586", + "longitude_deg": "-88.30460357666016", + "elevation_ft": "779", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "KBUU", + "local_code": "BUU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Burlington_Municipal_Airport_(Wisconsin)" + }, + { + "id": "19416", + "ident": "KBUY", + "type": "small_airport", + "name": "Burlington Alamance Regional Airport", + "latitude_deg": "36.048500061035156", + "longitude_deg": "-79.47489929199219", + "elevation_ft": "617", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "KBUY", + "local_code": "BUY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Burlington-Alamance_Regional_Airport" + }, + { + "id": "19417", + "ident": "KBVI", + "type": "medium_airport", + "name": "Beaver County Airport", + "latitude_deg": "40.772499", + "longitude_deg": "-80.391403", + "elevation_ft": "1253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Beaver Falls", + "scheduled_service": "no", + "gps_code": "KBVI", + "iata_code": "BFP", + "local_code": "BVI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beaver_County_Airport" + }, + { + "id": "19418", + "ident": "KBVN", + "type": "small_airport", + "name": "Albion Municipal Airport", + "latitude_deg": "41.728599548339844", + "longitude_deg": "-98.05580139160156", + "elevation_ft": "1806", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Albion", + "scheduled_service": "no", + "gps_code": "KBVN", + "local_code": "BVN" + }, + { + "id": "19419", + "ident": "KBVO", + "type": "small_airport", + "name": "Bartlesville Municipal Airport", + "latitude_deg": "36.76250076", + "longitude_deg": "-96.01119995", + "elevation_ft": "711", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Bartlesville", + "scheduled_service": "no", + "gps_code": "KBVO", + "iata_code": "BVO", + "local_code": "BVO" + }, + { + "id": "19420", + "ident": "KBVS", + "type": "small_airport", + "name": "Skagit Regional Airport", + "latitude_deg": "48.470901", + "longitude_deg": "-122.420998", + "elevation_ft": "144", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "KBVS", + "iata_code": "MVW", + "local_code": "BVS", + "home_link": "http://www.portofskagit.com/skagit-regional-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Skagit_Regional_Airport", + "keywords": "75S" + }, + { + "id": "19421", + "ident": "KBVX", + "type": "small_airport", + "name": "Batesville Regional Airport", + "latitude_deg": "35.7262001", + "longitude_deg": "-91.64730072", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Batesville", + "scheduled_service": "no", + "gps_code": "KBVX", + "iata_code": "BVX", + "local_code": "BVX" + }, + { + "id": "3433", + "ident": "KBVY", + "type": "medium_airport", + "name": "Beverly Regional Airport", + "latitude_deg": "42.584202", + "longitude_deg": "-70.916496", + "elevation_ft": "107", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Beverly / Danvers", + "scheduled_service": "no", + "gps_code": "KBVY", + "iata_code": "BVY", + "local_code": "BVY", + "home_link": "http://www.beverlyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beverly_Municipal_Airport" + }, + { + "id": "19422", + "ident": "KBWC", + "type": "small_airport", + "name": "Brawley Municipal Airport", + "latitude_deg": "32.99290085", + "longitude_deg": "-115.5169983", + "elevation_ft": "-128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Brawley", + "scheduled_service": "no", + "gps_code": "KBWC", + "iata_code": "BWC", + "local_code": "BWC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brawley_Municipal_Airport" + }, + { + "id": "19423", + "ident": "KBWD", + "type": "small_airport", + "name": "Brownwood Regional Airport", + "latitude_deg": "31.793600082399998", + "longitude_deg": "-98.9564971924", + "elevation_ft": "1387", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brownwood", + "scheduled_service": "no", + "gps_code": "KBWD", + "iata_code": "BWD", + "local_code": "BWD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brownwood_Regional_Airport" + }, + { + "id": "3434", + "ident": "KBWG", + "type": "medium_airport", + "name": "Bowling Green Warren County Regional Airport", + "latitude_deg": "36.964500427199994", + "longitude_deg": "-86.41970062259999", + "elevation_ft": "547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Bowling Green", + "scheduled_service": "no", + "gps_code": "KBWG", + "iata_code": "BWG", + "local_code": "BWG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bowling_Green-Warren_County_Regional_Airport" + }, + { + "id": "3435", + "ident": "KBWI", + "type": "large_airport", + "name": "Baltimore/Washington International Thurgood Marshall Airport", + "latitude_deg": "39.1754", + "longitude_deg": "-76.668297", + "elevation_ft": "146", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Baltimore", + "scheduled_service": "yes", + "gps_code": "KBWI", + "iata_code": "BWI", + "local_code": "BWI", + "home_link": "https://www.bwiairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baltimore%E2%80%93Washington_International_Airport", + "keywords": "WAS" + }, + { + "id": "19424", + "ident": "KBWP", + "type": "small_airport", + "name": "Harry Stern Airport", + "latitude_deg": "46.2440986633", + "longitude_deg": "-96.6073989868", + "elevation_ft": "968", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Wahpeton", + "scheduled_service": "no", + "gps_code": "KBWP", + "iata_code": "WAH", + "local_code": "BWP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harry_Stern_Airport" + }, + { + "id": "322146", + "ident": "KBWW", + "type": "small_airport", + "name": "Bowman Regional Airport", + "latitude_deg": "46.1655193", + "longitude_deg": "-103.30075", + "elevation_ft": "2965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Bowman", + "scheduled_service": "no", + "gps_code": "KBWW", + "iata_code": "BWM", + "local_code": "BWW", + "home_link": "http://www.bowmannd.com/county/departments/airport-authority/" + }, + { + "id": "19425", + "ident": "KBXA", + "type": "small_airport", + "name": "George R Carr Memorial Air Field", + "latitude_deg": "30.813699722299997", + "longitude_deg": "-89.8649978638", + "elevation_ft": "119", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bogalusa", + "scheduled_service": "no", + "gps_code": "KBXA", + "iata_code": "BXA", + "local_code": "BXA" + }, + { + "id": "19426", + "ident": "KBXG", + "type": "small_airport", + "name": "Burke County Airport", + "latitude_deg": "33.04130172729492", + "longitude_deg": "-82.00270080566406", + "elevation_ft": "302", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Waynesboro", + "scheduled_service": "no", + "gps_code": "KBXG", + "local_code": "BXG" + }, + { + "id": "19427", + "ident": "KBXK", + "type": "small_airport", + "name": "Buckeye Municipal Airport", + "latitude_deg": "33.422397", + "longitude_deg": "-112.686317", + "elevation_ft": "1033", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Buckeye", + "scheduled_service": "no", + "gps_code": "KBXK", + "iata_code": "BXK", + "local_code": "BXK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buckeye_Municipal_Airport", + "keywords": "buckeye, buckeye municipal" + }, + { + "id": "19428", + "ident": "KBYG", + "type": "small_airport", + "name": "Johnson County Airport", + "latitude_deg": "44.381099700899995", + "longitude_deg": "-106.722000122", + "elevation_ft": "4968", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Buffalo", + "scheduled_service": "no", + "gps_code": "KBYG", + "iata_code": "BYG", + "local_code": "BYG" + }, + { + "id": "3436", + "ident": "KBYH", + "type": "medium_airport", + "name": "Arkansas International Airport", + "latitude_deg": "35.9642982483", + "longitude_deg": "-89.94400024410001", + "elevation_ft": "254", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Blytheville", + "scheduled_service": "no", + "gps_code": "KBYH", + "iata_code": "BYH", + "local_code": "BYH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arkansas_International_Airport", + "keywords": "Blytheville AFB, Eaker AFB" + }, + { + "id": "19429", + "ident": "KBYI", + "type": "medium_airport", + "name": "Burley Municipal Airport", + "latitude_deg": "42.542598724399994", + "longitude_deg": "-113.772003174", + "elevation_ft": "4150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Burley", + "scheduled_service": "no", + "gps_code": "KBYI", + "iata_code": "BYI", + "local_code": "BYI", + "home_link": "http://burleyidaho.org/city-of-burley/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Burley_Municipal_Airport", + "keywords": "J R Jack Simplot Airport" + }, + { + "id": "19430", + "ident": "KBYS", + "type": "medium_airport", + "name": "Bicycle Lake Army Air Field", + "latitude_deg": "35.2804985046", + "longitude_deg": "-116.629997253", + "elevation_ft": "2350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fort Irwin/Barstow", + "scheduled_service": "no", + "gps_code": "KBYS", + "iata_code": "BYS", + "local_code": "BYS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bicycle_Lake_Army_Airfield" + }, + { + "id": "19431", + "ident": "KBYY", + "type": "small_airport", + "name": "Bay City Regional Airport", + "latitude_deg": "28.973301", + "longitude_deg": "-95.863503", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bay City", + "scheduled_service": "no", + "gps_code": "KBYY", + "iata_code": "BBC", + "local_code": "BYY", + "home_link": "http://www.flybaycity.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bay_City_Municipal_Airport", + "keywords": "3R1" + }, + { + "id": "3437", + "ident": "KBZN", + "type": "medium_airport", + "name": "Gallatin Field", + "latitude_deg": "45.77750015", + "longitude_deg": "-111.1529999", + "elevation_ft": "4473", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Bozeman", + "scheduled_service": "yes", + "gps_code": "KBZN", + "iata_code": "BZN", + "local_code": "BZN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gallatin_Field_Airport" + }, + { + "id": "19432", + "ident": "KC02", + "type": "small_airport", + "name": "Grand Geneva Resort Airport", + "latitude_deg": "42.614899", + "longitude_deg": "-88.389603", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Lake Geneva", + "scheduled_service": "no", + "iata_code": "XES", + "local_code": "C02" + }, + { + "id": "19433", + "ident": "KC03", + "type": "small_airport", + "name": "Nappanee Municipal Airport", + "latitude_deg": "41.44620132446289", + "longitude_deg": "-85.93479919433594", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Nappanee", + "scheduled_service": "no", + "gps_code": "KC03", + "local_code": "C03" + }, + { + "id": "19434", + "ident": "KC04", + "type": "small_airport", + "name": "Oceana County Airport", + "latitude_deg": "43.641700744628906", + "longitude_deg": "-86.3292007446289", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Hart/Shelby", + "scheduled_service": "no", + "gps_code": "KC04", + "local_code": "C04" + }, + { + "id": "19435", + "ident": "KC08", + "type": "small_airport", + "name": "Silver West Airport", + "latitude_deg": "38.013182", + "longitude_deg": "-105.374279", + "elevation_ft": "8290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Westcliffe", + "scheduled_service": "no", + "local_code": "C08" + }, + { + "id": "19436", + "ident": "KC09", + "type": "small_airport", + "name": "Morris Municipal Airport James R. Washburn field", + "latitude_deg": "41.4254", + "longitude_deg": "-88.418701", + "elevation_ft": "584", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Morris", + "scheduled_service": "no", + "gps_code": "KC09", + "local_code": "C09" + }, + { + "id": "19437", + "ident": "KC15", + "type": "small_airport", + "name": "Pekin Municipal Airport", + "latitude_deg": "40.48820114135742", + "longitude_deg": "-89.6759033203125", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pekin", + "scheduled_service": "no", + "gps_code": "KC15", + "local_code": "C15" + }, + { + "id": "19438", + "ident": "KC16", + "type": "small_airport", + "name": "Frasca Field", + "latitude_deg": "40.146400451660156", + "longitude_deg": "-88.19850158691406", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Urbana", + "scheduled_service": "no", + "gps_code": "KC16", + "local_code": "C16" + }, + { + "id": "19439", + "ident": "KC17", + "type": "small_airport", + "name": "Marion Airport", + "latitude_deg": "42.03110122680664", + "longitude_deg": "-91.529296875", + "elevation_ft": "862", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "KC17", + "local_code": "C17" + }, + { + "id": "19440", + "ident": "KC20", + "type": "small_airport", + "name": "Andrews University Airpark", + "latitude_deg": "41.951698303222656", + "longitude_deg": "-86.3676986694336", + "elevation_ft": "668", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Berrien Springs", + "scheduled_service": "no", + "gps_code": "KC20", + "local_code": "C20" + }, + { + "id": "19441", + "ident": "KC22", + "type": "closed", + "name": "Centre Municipal Airport", + "latitude_deg": "34.159901", + "longitude_deg": "-85.635101", + "elevation_ft": "619", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Centre", + "scheduled_service": "no", + "gps_code": "KC22", + "local_code": "C22", + "wikipedia_link": "https://en.wikipedia.org/wiki/Centre_Municipal_Airport" + }, + { + "id": "19442", + "ident": "KC24", + "type": "small_airport", + "name": "Mineral County Memorial Airport", + "latitude_deg": "37.8208007812", + "longitude_deg": "-106.930999756", + "elevation_ft": "8680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Creede", + "scheduled_service": "no", + "gps_code": "C24", + "local_code": "C24", + "home_link": "https://www.codot.gov/programs/aeronautics/colorado-airport-system/general-aviation-airports/ga-airports-c-d/C24", + "keywords": "Q39" + }, + { + "id": "19443", + "ident": "KC27", + "type": "small_airport", + "name": "Manchester Municipal Airport", + "latitude_deg": "42.493301391602", + "longitude_deg": "-91.498497009277", + "elevation_ft": "987", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Manchester", + "scheduled_service": "no", + "gps_code": "C27", + "local_code": "C27" + }, + { + "id": "19444", + "ident": "KC29", + "type": "small_airport", + "name": "Middleton Municipal Morey Field", + "latitude_deg": "43.11429977416992", + "longitude_deg": "-89.53150177001953", + "elevation_ft": "928", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Middleton", + "scheduled_service": "no", + "gps_code": "KC29", + "local_code": "C29" + }, + { + "id": "19445", + "ident": "KC35", + "type": "small_airport", + "name": "Reedsburg Municipal Airport", + "latitude_deg": "43.525901794433594", + "longitude_deg": "-89.98320007324219", + "elevation_ft": "907", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Reedsburg", + "scheduled_service": "no", + "gps_code": "KC35", + "local_code": "C35" + }, + { + "id": "19446", + "ident": "KC47", + "type": "small_airport", + "name": "Portage Municipal Airport", + "latitude_deg": "43.560298919677734", + "longitude_deg": "-89.48290252685547", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Portage", + "scheduled_service": "no", + "gps_code": "KC47", + "local_code": "C47" + }, + { + "id": "19447", + "ident": "KC62", + "type": "small_airport", + "name": "Kendallville Municipal Airport", + "latitude_deg": "41.47269821166992", + "longitude_deg": "-85.26080322265625", + "elevation_ft": "1005", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Kendallville", + "scheduled_service": "no", + "gps_code": "KC62", + "local_code": "C62" + }, + { + "id": "19448", + "ident": "KC65", + "type": "small_airport", + "name": "Plymouth Municipal Airport", + "latitude_deg": "41.365100860596", + "longitude_deg": "-86.300498962402", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "C65", + "iata_code": "PLY", + "local_code": "C65", + "home_link": "http://www.plymouthin.com/index.php/departments/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Plymouth_Municipal_Airport_(Indiana)" + }, + { + "id": "19449", + "ident": "KC71", + "type": "small_airport", + "name": "Crosby Municipal Airport", + "latitude_deg": "31.29599952697754", + "longitude_deg": "-91.05290222167969", + "elevation_ft": "336", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Crosby", + "scheduled_service": "no", + "gps_code": "KC71", + "local_code": "C71" + }, + { + "id": "19450", + "ident": "KC73", + "type": "small_airport", + "name": "Dixon Municipal Charles R. Walgreen Field", + "latitude_deg": "41.833875", + "longitude_deg": "-89.443967", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Dixon", + "scheduled_service": "no", + "gps_code": "KC73", + "local_code": "C73" + }, + { + "id": "19451", + "ident": "KC74", + "type": "small_airport", + "name": "Cassville Municipal Airport", + "latitude_deg": "42.704200744628906", + "longitude_deg": "-90.964599609375", + "elevation_ft": "627", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Cassville", + "scheduled_service": "no", + "gps_code": "KC74", + "local_code": "C74" + }, + { + "id": "19452", + "ident": "KC75", + "type": "small_airport", + "name": "Marshall County Airport", + "latitude_deg": "41.0192985534668", + "longitude_deg": "-89.38639831542969", + "elevation_ft": "568", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lacon", + "scheduled_service": "no", + "gps_code": "KC75", + "local_code": "C75" + }, + { + "id": "19453", + "ident": "KC77", + "type": "small_airport", + "name": "Poplar Grove Airport", + "latitude_deg": "42.322898864746094", + "longitude_deg": "-88.8363037109375", + "elevation_ft": "858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Poplar Grove", + "scheduled_service": "no", + "gps_code": "KC77", + "local_code": "C77" + }, + { + "id": "19454", + "ident": "KC80", + "type": "small_airport", + "name": "New Coalinga Municipal Airport", + "latitude_deg": "36.16310119628906", + "longitude_deg": "-120.29399871826172", + "elevation_ft": "622", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Coalinga", + "scheduled_service": "no", + "iata_code": "CLG", + "local_code": "C80", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Coalinga_Municipal_Airport" + }, + { + "id": "19455", + "ident": "KC81", + "type": "small_airport", + "name": "Campbell Airport", + "latitude_deg": "42.32460021972656", + "longitude_deg": "-88.0740966796875", + "elevation_ft": "788", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Grayslake", + "scheduled_service": "no", + "gps_code": "KC81", + "local_code": "C81", + "wikipedia_link": "https://en.wikipedia.org/wiki/Campbell_Airport" + }, + { + "id": "19456", + "ident": "KC83", + "type": "small_airport", + "name": "Byron Airport", + "latitude_deg": "37.82647", + "longitude_deg": "-121.621699", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Byron", + "scheduled_service": "no", + "local_code": "C83", + "wikipedia_link": "https://en.wikipedia.org/wiki/Byron_Airport" + }, + { + "id": "19457", + "ident": "KC91", + "type": "small_airport", + "name": "Dowagiac Municipal Airport", + "latitude_deg": "41.99290085", + "longitude_deg": "-86.12799835", + "elevation_ft": "747", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Dowagiac", + "scheduled_service": "no", + "gps_code": "KC91", + "local_code": "C91" + }, + { + "id": "355455", + "ident": "KCA2", + "type": "small_airport", + "name": "The Hill Airstrip", + "latitude_deg": "52.218848", + "longitude_deg": "-123.449538", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "The Hill", + "scheduled_service": "no", + "local_code": "CA69" + }, + { + "id": "19458", + "ident": "KCAD", + "type": "small_airport", + "name": "Wexford County Airport", + "latitude_deg": "44.275749", + "longitude_deg": "-85.421534", + "elevation_ft": "1307", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Cadillac", + "scheduled_service": "no", + "gps_code": "KCAD", + "iata_code": "CAD", + "local_code": "CAD" + }, + { + "id": "3438", + "ident": "KCAE", + "type": "medium_airport", + "name": "Columbia Metropolitan Airport", + "latitude_deg": "33.938801", + "longitude_deg": "-81.119499", + "elevation_ft": "236", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Columbia", + "scheduled_service": "yes", + "gps_code": "KCAE", + "iata_code": "CAE", + "local_code": "CAE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Columbia_Metropolitan_Airport" + }, + { + "id": "19459", + "ident": "KCAG", + "type": "small_airport", + "name": "Craig Moffat Airport", + "latitude_deg": "40.4952011108", + "longitude_deg": "-107.522003174", + "elevation_ft": "6193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Craig", + "scheduled_service": "no", + "gps_code": "KCAG", + "iata_code": "CIG", + "local_code": "CAG", + "home_link": "http://www.colorado.gov/cs/Satellite/CNTY-Moffat/CBON/1251574649681", + "wikipedia_link": "https://en.wikipedia.org/wiki/Craig-Moffat_Airport" + }, + { + "id": "3439", + "ident": "KCAK", + "type": "medium_airport", + "name": "Akron Canton Regional Airport", + "latitude_deg": "40.916099548339844", + "longitude_deg": "-81.44219970703125", + "elevation_ft": "1228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Akron", + "scheduled_service": "yes", + "gps_code": "KCAK", + "iata_code": "CAK", + "local_code": "CAK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Akron-Canton_Regional_Airport" + }, + { + "id": "19460", + "ident": "KCAO", + "type": "small_airport", + "name": "Clayton Municipal Airpark", + "latitude_deg": "36.4462013245", + "longitude_deg": "-103.166999817", + "elevation_ft": "4965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Clayton", + "scheduled_service": "no", + "gps_code": "KCAO", + "iata_code": "CAO", + "local_code": "CAO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clayton_Municipal_Airpark" + }, + { + "id": "3440", + "ident": "KCAR", + "type": "medium_airport", + "name": "Caribou Municipal Airport", + "latitude_deg": "46.871498", + "longitude_deg": "-68.017899", + "elevation_ft": "626", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Caribou", + "scheduled_service": "no", + "gps_code": "KCAR", + "iata_code": "CAR", + "local_code": "CAR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Caribou_Municipal_Airport" + }, + { + "id": "19461", + "ident": "KCAV", + "type": "small_airport", + "name": "Clarion Municipal Airport", + "latitude_deg": "42.74190139770508", + "longitude_deg": "-93.75890350341797", + "elevation_ft": "1162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Clarion", + "scheduled_service": "no", + "gps_code": "KCAV", + "local_code": "CAV" + }, + { + "id": "19462", + "ident": "KCBE", + "type": "small_airport", + "name": "Greater Cumberland Regional Airport", + "latitude_deg": "39.615398", + "longitude_deg": "-78.760902", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Wiley Ford", + "scheduled_service": "no", + "gps_code": "KCBE", + "iata_code": "CBE", + "local_code": "CBE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greater_Cumberland_Regional_Airport", + "keywords": "Wiley Ford" + }, + { + "id": "19463", + "ident": "KCBF", + "type": "small_airport", + "name": "Council Bluffs Municipal Airport", + "latitude_deg": "41.2592010498", + "longitude_deg": "-95.760597229", + "elevation_ft": "1253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Council Bluffs", + "scheduled_service": "no", + "gps_code": "KCBF", + "iata_code": "CBF", + "local_code": "CBF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Council_Bluffs_Municipal_Airport" + }, + { + "id": "19464", + "ident": "KCBG", + "type": "small_airport", + "name": "Cambridge Municipal Airport", + "latitude_deg": "45.557498931884766", + "longitude_deg": "-93.26419830322266", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "KCBG", + "local_code": "CBG" + }, + { + "id": "19465", + "ident": "KCBK", + "type": "small_airport", + "name": "Shalz Field", + "latitude_deg": "39.42750168", + "longitude_deg": "-101.0469971", + "elevation_ft": "3187", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Colby", + "scheduled_service": "no", + "gps_code": "KCBK", + "iata_code": "CBK", + "local_code": "CBK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Colby_Municipal_Airport", + "keywords": "Colby Municipal Airport" + }, + { + "id": "3441", + "ident": "KCBM", + "type": "medium_airport", + "name": "Columbus Air Force Base", + "latitude_deg": "33.643799", + "longitude_deg": "-88.443802", + "elevation_ft": "219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "KCBM", + "iata_code": "CBM", + "local_code": "CBM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Columbus_Air_Force_Base" + }, + { + "id": "19466", + "ident": "KCC", + "type": "seaplane_base", + "name": "Coffman Cove Seaplane Base", + "latitude_deg": "56.003200531", + "longitude_deg": "-132.841995239", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Coffman Cove", + "scheduled_service": "no", + "gps_code": "KCC", + "iata_code": "KCC", + "local_code": "KCC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coffman_Cove_Seaplane_Base" + }, + { + "id": "16630", + "ident": "KCCA", + "type": "small_airport", + "name": "Clinton Municipal Airport", + "latitude_deg": "35.597801", + "longitude_deg": "-92.451599", + "elevation_ft": "514", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "KCCA", + "local_code": "CCA", + "keywords": "4M4" + }, + { + "id": "19467", + "ident": "KCCB", + "type": "small_airport", + "name": "Cable Airport", + "latitude_deg": "34.1115989685", + "longitude_deg": "-117.68800354", + "elevation_ft": "1444", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Upland", + "scheduled_service": "no", + "gps_code": "KCCB", + "iata_code": "CCB", + "local_code": "CCB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cable_Airport" + }, + { + "id": "19468", + "ident": "KCCO", + "type": "small_airport", + "name": "Newnan Coweta County Airport", + "latitude_deg": "33.31159973144531", + "longitude_deg": "-84.7697982788086", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "KCCO", + "local_code": "CCO" + }, + { + "id": "19469", + "ident": "KCCR", + "type": "small_airport", + "name": "Buchanan Field", + "latitude_deg": "37.9897003174", + "longitude_deg": "-122.056999207", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "KCCR", + "iata_code": "CCR", + "local_code": "CCR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buchanan_Field_Airport" + }, + { + "id": "19470", + "ident": "KCCY", + "type": "medium_airport", + "name": "Northeast Iowa Regional Airport", + "latitude_deg": "43.0726013184", + "longitude_deg": "-92.6108016968", + "elevation_ft": "1125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Charles City", + "scheduled_service": "no", + "gps_code": "KCCY", + "iata_code": "CCY", + "local_code": "CCY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Northeast_Iowa_Regional_Airport", + "keywords": "Charles City Municipal Airport" + }, + { + "id": "18977", + "ident": "KCDA", + "type": "small_airport", + "name": "Caledonia County Airport", + "latitude_deg": "44.5690994263", + "longitude_deg": "-72.0179977417", + "elevation_ft": "1188", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Lyndonville", + "scheduled_service": "no", + "gps_code": "KCDA", + "iata_code": "LLX", + "local_code": "CDA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Caledonia_County_Airport", + "keywords": "Formerly 6B8" + }, + { + "id": "3442", + "ident": "KCDC", + "type": "medium_airport", + "name": "Cedar City Regional Airport", + "latitude_deg": "37.70100021362305", + "longitude_deg": "-113.0989990234375", + "elevation_ft": "5622", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Cedar City", + "scheduled_service": "yes", + "gps_code": "KCDC", + "iata_code": "CDC", + "local_code": "CDC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cedar_City_Regional_Airport" + }, + { + "id": "19471", + "ident": "KCDH", + "type": "small_airport", + "name": "Harrell Field", + "latitude_deg": "33.622798919699996", + "longitude_deg": "-92.7633972168", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Camden", + "scheduled_service": "no", + "gps_code": "KCDH", + "iata_code": "CDH", + "local_code": "CDH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harrell_Field" + }, + { + "id": "19472", + "ident": "KCDI", + "type": "small_airport", + "name": "Cambridge Municipal Airport", + "latitude_deg": "39.974998474121094", + "longitude_deg": "-81.57759857177734", + "elevation_ft": "799", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "KCDI", + "local_code": "CDI" + }, + { + "id": "19473", + "ident": "KCDN", + "type": "small_airport", + "name": "Woodward Field", + "latitude_deg": "34.2835998535", + "longitude_deg": "-80.56490325930001", + "elevation_ft": "302", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Camden", + "scheduled_service": "no", + "gps_code": "KCDN", + "iata_code": "CDN", + "local_code": "CDN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Woodward_Field_(airport)" + }, + { + "id": "19474", + "ident": "KCDR", + "type": "medium_airport", + "name": "Chadron Municipal Airport", + "latitude_deg": "42.837600708", + "longitude_deg": "-103.095001221", + "elevation_ft": "3297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Chadron", + "scheduled_service": "no", + "gps_code": "KCDR", + "iata_code": "CDR", + "local_code": "CDR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chadron_Municipal_Airport" + }, + { + "id": "19475", + "ident": "KCDS", + "type": "medium_airport", + "name": "Childress Municipal Airport", + "latitude_deg": "34.4337997437", + "longitude_deg": "-100.288002014", + "elevation_ft": "1954", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Childress", + "scheduled_service": "no", + "gps_code": "KCDS", + "iata_code": "CDS", + "local_code": "CDS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Childress_Municipal_Airport" + }, + { + "id": "19476", + "ident": "KCDW", + "type": "small_airport", + "name": "Essex County Airport", + "latitude_deg": "40.875198364300005", + "longitude_deg": "-74.2814025879", + "elevation_ft": "173", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Caldwell", + "scheduled_service": "no", + "gps_code": "KCDW", + "iata_code": "CDW", + "local_code": "CDW", + "home_link": "http://flycdw.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Essex_County_Airport", + "keywords": "Manhattan, New York City, NYC" + }, + { + "id": "19477", + "ident": "KCEA", + "type": "small_airport", + "name": "Cessna Aircraft Field", + "latitude_deg": "37.648601532", + "longitude_deg": "-97.2506027222", + "elevation_ft": "1378", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wichita", + "scheduled_service": "no", + "gps_code": "KCEA", + "iata_code": "CEA", + "local_code": "CEA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cessna_Aircraft_Field" + }, + { + "id": "3443", + "ident": "KCEC", + "type": "medium_airport", + "name": "Jack Mc Namara Field Airport", + "latitude_deg": "41.78020096", + "longitude_deg": "-124.2369995", + "elevation_ft": "61", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Crescent City", + "scheduled_service": "yes", + "gps_code": "KCEC", + "iata_code": "CEC", + "local_code": "CEC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Del_Norte_County_Airport", + "keywords": "Jack McNamara Field" + }, + { + "id": "3444", + "ident": "KCEF", + "type": "medium_airport", + "name": "Westover Metropolitan Airport / Westover Air Reserve Base", + "latitude_deg": "42.194", + "longitude_deg": "-72.534798", + "elevation_ft": "241", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Chicopee", + "scheduled_service": "no", + "gps_code": "KCEF", + "iata_code": "CEF", + "local_code": "CEF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Westover_Air_Reserve_Base/Metropolitan_Airport" + }, + { + "id": "19478", + "ident": "KCEK", + "type": "small_airport", + "name": "Crete Municipal Airport", + "latitude_deg": "40.61790085", + "longitude_deg": "-96.92489624", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Crete", + "scheduled_service": "no", + "gps_code": "KCEK", + "local_code": "CEK" + }, + { + "id": "19479", + "ident": "KCEU", + "type": "small_airport", + "name": "Oconee County Regional Airport", + "latitude_deg": "34.6719017", + "longitude_deg": "-82.8864975", + "elevation_ft": "892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Clemson", + "scheduled_service": "no", + "gps_code": "KCEU", + "iata_code": "CEU", + "local_code": "CEU", + "home_link": "http://www.oconeesc.com/Departments/AJ/Airport.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oconee_County_Regional_Airport" + }, + { + "id": "19480", + "ident": "KCEV", + "type": "small_airport", + "name": "Mettel Field", + "latitude_deg": "39.6985015869", + "longitude_deg": "-85.129699707", + "elevation_ft": "867", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Connersville", + "scheduled_service": "no", + "gps_code": "KCEV", + "iata_code": "CEV", + "local_code": "CEV", + "home_link": "http://connersvillecommunity.com/City_of_Connersville/City_Departments/Airport_Mettel_Field", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mettel_Field" + }, + { + "id": "3445", + "ident": "KCEW", + "type": "medium_airport", + "name": "Bob Sikes Airport", + "latitude_deg": "30.778799057", + "longitude_deg": "-86.522102356", + "elevation_ft": "213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Crestview", + "scheduled_service": "no", + "gps_code": "KCEW", + "iata_code": "CEW", + "local_code": "CEW", + "home_link": "http://www.flycew.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bob_Sikes_Airport" + }, + { + "id": "19481", + "ident": "KCEY", + "type": "small_airport", + "name": "Kyle Oakley Field", + "latitude_deg": "36.66460037", + "longitude_deg": "-88.37280273", + "elevation_ft": "577", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Murray", + "scheduled_service": "no", + "gps_code": "KCEY", + "iata_code": "CEY", + "local_code": "CEY", + "home_link": "http://www.murraykyleoakley.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Murray-Calloway_County_Airport", + "keywords": "Murray Calloway County Airport" + }, + { + "id": "19482", + "ident": "KCEZ", + "type": "small_airport", + "name": "Cortez Municipal Airport", + "latitude_deg": "37.3030014038", + "longitude_deg": "-108.627998352", + "elevation_ft": "5918", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Cortez", + "scheduled_service": "no", + "gps_code": "KCEZ", + "iata_code": "CEZ", + "local_code": "CEZ", + "home_link": "http://www.cityofcortez.com/index.aspx?NID=113", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cortez_Municipal_Airport" + }, + { + "id": "19483", + "ident": "KCFD", + "type": "small_airport", + "name": "Coulter Field", + "latitude_deg": "30.715700149499998", + "longitude_deg": "-96.3313980103", + "elevation_ft": "367", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bryan", + "scheduled_service": "no", + "gps_code": "KCFD", + "iata_code": "CFD", + "local_code": "CFD", + "home_link": "http://www.bryantx.gov/coulterairfield/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coulter_Field" + }, + { + "id": "16710", + "ident": "KCFE", + "type": "small_airport", + "name": "Buffalo Municipal Airport", + "latitude_deg": "45.159000396728516", + "longitude_deg": "-93.84329986572266", + "elevation_ft": "967", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Buffalo", + "scheduled_service": "no", + "gps_code": "KCFE", + "local_code": "CFE" + }, + { + "id": "19484", + "ident": "KCFJ", + "type": "small_airport", + "name": "Crawfordsville Regional Airport", + "latitude_deg": "39.975602", + "longitude_deg": "-86.919899", + "elevation_ft": "799", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Crawfordsville", + "scheduled_service": "no", + "gps_code": "KCFJ", + "local_code": "CFJ", + "keywords": "Crawfordsville Municipal" + }, + { + "id": "19485", + "ident": "KCFS", + "type": "small_airport", + "name": "Tuscola Area Airport", + "latitude_deg": "43.458801269531", + "longitude_deg": "-83.445503234863", + "elevation_ft": "701", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Caro", + "scheduled_service": "no", + "gps_code": "KCFS", + "iata_code": "TZC", + "local_code": "CFS", + "home_link": "http://www.michigan.gov/aero/0,4533,7-145-61367-277436--,00.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tuscola_Area_Airport", + "keywords": "78D" + }, + { + "id": "19486", + "ident": "KCFT", + "type": "small_airport", + "name": "Greenlee County Airport", + "latitude_deg": "32.957039", + "longitude_deg": "-109.211397", + "elevation_ft": "3798", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Clifton/Morenci", + "scheduled_service": "no", + "gps_code": "KCFT", + "iata_code": "CFT", + "local_code": "CFT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greenlee_County_Airport" + }, + { + "id": "19487", + "ident": "KCFV", + "type": "small_airport", + "name": "Coffeyville Municipal Airport", + "latitude_deg": "37.09400177", + "longitude_deg": "-95.5718994141", + "elevation_ft": "754", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Coffeyville", + "scheduled_service": "no", + "gps_code": "KCFV", + "iata_code": "CFV", + "local_code": "CFV", + "home_link": "http://www.coffeyville.com/index.aspx?nid=67", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coffeyville_Municipal_Airport" + }, + { + "id": "308353", + "ident": "KCG", + "type": "closed", + "name": "Chignik Fisheries Airport", + "latitude_deg": "56.3178", + "longitude_deg": "-158.589818", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chignik", + "scheduled_service": "no", + "iata_code": "KCG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chignik_Fisheries_Airport" + }, + { + "id": "19488", + "ident": "KCGC", + "type": "small_airport", + "name": "Crystal River Airport", + "latitude_deg": "28.867300033569336", + "longitude_deg": "-82.57129669189453", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Crystal River", + "scheduled_service": "no", + "gps_code": "KCGC", + "local_code": "CGC" + }, + { + "id": "19489", + "ident": "KCGE", + "type": "small_airport", + "name": "Cambridge Dorchester Airport", + "latitude_deg": "38.53929901", + "longitude_deg": "-76.03040314", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "KCGE", + "iata_code": "CGE", + "local_code": "CGE", + "home_link": "http://docogonet.com/index.php?page=airport_division", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cambridge%E2%80%93Dorchester_Airport" + }, + { + "id": "3446", + "ident": "KCGF", + "type": "medium_airport", + "name": "Cuyahoga County Airport", + "latitude_deg": "41.5651016235", + "longitude_deg": "-81.4863967896", + "elevation_ft": "879", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "KCGF", + "iata_code": "CGF", + "local_code": "CGF", + "home_link": "http://publicworks.cuyahogacounty.us/en-US/County-Airport.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cuyahoga_County_Airport" + }, + { + "id": "3447", + "ident": "KCGI", + "type": "medium_airport", + "name": "Cape Girardeau Regional Airport", + "latitude_deg": "37.2253", + "longitude_deg": "-89.570801", + "elevation_ft": "342", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Cape Girardeau", + "scheduled_service": "yes", + "gps_code": "KCGI", + "iata_code": "CGI", + "local_code": "CGI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cape_Girardeau_Regional_Airport" + }, + { + "id": "19490", + "ident": "KCGS", + "type": "small_airport", + "name": "College Park Airport", + "latitude_deg": "38.9805984497", + "longitude_deg": "-76.9223022461", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "College Park", + "scheduled_service": "no", + "gps_code": "KCGS", + "iata_code": "CGS", + "local_code": "CGS", + "home_link": "http://www.collegeparkairport.aero/", + "wikipedia_link": "https://en.wikipedia.org/wiki/College_Park_Airport", + "keywords": "DC3, FRZ, ADIZ" + }, + { + "id": "27307", + "ident": "KCGX", + "type": "closed", + "name": "Chicago Meigs Airport", + "latitude_deg": "41.85879898071289", + "longitude_deg": "-87.60790252685547", + "elevation_ft": "593", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "no", + "gps_code": "KCGX", + "iata_code": "CGX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Meigs_Field", + "keywords": "Mayor Daley" + }, + { + "id": "19491", + "ident": "KCGZ", + "type": "small_airport", + "name": "Casa Grande Municipal Airport", + "latitude_deg": "32.954899", + "longitude_deg": "-111.766998", + "elevation_ft": "1464", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Casa Grande", + "scheduled_service": "no", + "gps_code": "KCGZ", + "iata_code": "CGZ", + "local_code": "CGZ", + "home_link": "http://www.casagrandeaz.gov/web/guest/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Casa_Grande_Municipal_Airport" + }, + { + "id": "3448", + "ident": "KCHA", + "type": "medium_airport", + "name": "Chattanooga Metropolitan Airport (Lovell Field)", + "latitude_deg": "35.035301", + "longitude_deg": "-85.203796", + "elevation_ft": "683", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Chattanooga", + "scheduled_service": "yes", + "gps_code": "KCHA", + "iata_code": "CHA", + "local_code": "CHA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chattanooga_Metropolitan_Airport" + }, + { + "id": "30554", + "ident": "KCHC", + "type": "closed", + "name": "Wauseon Airport", + "latitude_deg": "41.53860092163086", + "longitude_deg": "-84.13310241699219", + "elevation_ft": "751", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wauseon", + "scheduled_service": "no", + "gps_code": "KCHC", + "local_code": "CHC" + }, + { + "id": "19492", + "ident": "KCHD", + "type": "small_airport", + "name": "Chandler Municipal Airport", + "latitude_deg": "33.2691", + "longitude_deg": "-111.810997", + "elevation_ft": "1243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Chandler", + "scheduled_service": "no", + "gps_code": "KCHD", + "local_code": "CHD", + "home_link": "http://www.chandleraz.gov/default.aspx?pageid=318", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chandler_Municipal_Airport", + "keywords": "P10" + }, + { + "id": "19493", + "ident": "KCHK", + "type": "small_airport", + "name": "Chickasha Municipal Airport", + "latitude_deg": "35.09740067", + "longitude_deg": "-97.96769714", + "elevation_ft": "1152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Chickasha", + "scheduled_service": "no", + "gps_code": "KCHK", + "iata_code": "CHK", + "local_code": "CHK", + "home_link": "http://www.chickasha.org/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chickasha_Municipal_Airport" + }, + { + "id": "19494", + "ident": "KCHN", + "type": "small_airport", + "name": "Wauchula Municipal Airport", + "latitude_deg": "27.51490020752", + "longitude_deg": "-81.880500793457", + "elevation_ft": "106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Wauchula", + "scheduled_service": "no", + "gps_code": "KCHN", + "local_code": "CHN", + "home_link": "http://www.cityofwauchula.com/Pages/WauchulaFL_Airport/index", + "wikipedia_link": "https://en.wikipedia.org/wiki/Main_Page", + "keywords": "FD06, F37" + }, + { + "id": "3449", + "ident": "KCHO", + "type": "medium_airport", + "name": "Charlottesville Albemarle Airport", + "latitude_deg": "38.13859939575195", + "longitude_deg": "-78.4529037475586", + "elevation_ft": "639", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Charlottesville", + "scheduled_service": "yes", + "gps_code": "KCHO", + "iata_code": "CHO", + "local_code": "CHO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Charlottesville-Albemarle_Airport" + }, + { + "id": "19495", + "ident": "KCHQ", + "type": "small_airport", + "name": "Mississippi County Airport", + "latitude_deg": "36.842098236083984", + "longitude_deg": "-89.35970306396484", + "elevation_ft": "313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Charleston", + "scheduled_service": "no", + "gps_code": "KCHQ", + "local_code": "CHQ" + }, + { + "id": "3450", + "ident": "KCHS", + "type": "medium_airport", + "name": "Charleston International Airport", + "latitude_deg": "32.898602", + "longitude_deg": "-80.040497", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Charleston", + "scheduled_service": "yes", + "gps_code": "KCHS", + "iata_code": "CHS", + "local_code": "CHS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Charleston_International_Airport", + "keywords": "Charleston Air Force Base" + }, + { + "id": "19496", + "ident": "KCHT", + "type": "small_airport", + "name": "Chillicothe Municipal Airport", + "latitude_deg": "39.78219985961914", + "longitude_deg": "-93.49569702148438", + "elevation_ft": "783", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Chillicothe", + "scheduled_service": "no", + "gps_code": "KCHT", + "local_code": "CHT" + }, + { + "id": "19497", + "ident": "KCHU", + "type": "small_airport", + "name": "Houston County Airport", + "latitude_deg": "43.59640121459961", + "longitude_deg": "-91.50389862060547", + "elevation_ft": "1179", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Caledonia", + "scheduled_service": "no", + "gps_code": "KCHU", + "local_code": "CHU" + }, + { + "id": "19498", + "ident": "KCIC", + "type": "small_airport", + "name": "Chico Municipal Airport", + "latitude_deg": "39.79539871", + "longitude_deg": "-121.8580017", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chico", + "scheduled_service": "no", + "gps_code": "KCIC", + "iata_code": "CIC", + "local_code": "CIC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chico_Municipal_Airport" + }, + { + "id": "3451", + "ident": "KCID", + "type": "medium_airport", + "name": "The Eastern Iowa Airport", + "latitude_deg": "41.884701", + "longitude_deg": "-91.7108", + "elevation_ft": "869", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Cedar Rapids", + "scheduled_service": "yes", + "gps_code": "KCID", + "iata_code": "CID", + "local_code": "CID", + "wikipedia_link": "https://en.wikipedia.org/wiki/The_Eastern_Iowa_Airport", + "keywords": "Cedar Rapids Municipal" + }, + { + "id": "19499", + "ident": "KCII", + "type": "small_airport", + "name": "Choteau Airport", + "latitude_deg": "47.82830047607422", + "longitude_deg": "-112.16799926757812", + "elevation_ft": "3947", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Choteau", + "scheduled_service": "no", + "gps_code": "KCII", + "local_code": "CII" + }, + { + "id": "19500", + "ident": "KCIN", + "type": "small_airport", + "name": "Arthur N Neu Airport", + "latitude_deg": "42.0461997986", + "longitude_deg": "-94.78900146480001", + "elevation_ft": "1204", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Carroll", + "scheduled_service": "no", + "gps_code": "KCIN", + "iata_code": "CIN", + "local_code": "CIN", + "home_link": "http://www.cityofcarroll.com/index.php/departments/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arthur_N._Neu_Airport" + }, + { + "id": "19501", + "ident": "KCIR", + "type": "small_airport", + "name": "Cairo Regional Airport", + "latitude_deg": "37.0644989014", + "longitude_deg": "-89.2195968628", + "elevation_ft": "321", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Cairo", + "scheduled_service": "no", + "gps_code": "KCIR", + "iata_code": "CIR", + "local_code": "CIR" + }, + { + "id": "3452", + "ident": "KCIU", + "type": "medium_airport", + "name": "Chippewa County International Airport", + "latitude_deg": "46.25080108642578", + "longitude_deg": "-84.47239685058594", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Sault Ste Marie", + "scheduled_service": "yes", + "gps_code": "KCIU", + "iata_code": "CIU", + "local_code": "CIU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chippewa_County_International_Airport" + }, + { + "id": "19502", + "ident": "KCJR", + "type": "small_airport", + "name": "Culpeper Regional Airport", + "latitude_deg": "38.52669906616211", + "longitude_deg": "-77.85890197753906", + "elevation_ft": "316", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Culpeper", + "scheduled_service": "no", + "gps_code": "KCJR", + "local_code": "CJR" + }, + { + "id": "19503", + "ident": "KCKA", + "type": "small_airport", + "name": "Kegelman AF Aux Field", + "latitude_deg": "36.7439002991", + "longitude_deg": "-98.1231002808", + "elevation_ft": "1202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Cherokee", + "scheduled_service": "no", + "gps_code": "KCKA", + "iata_code": "CKA", + "local_code": "CKA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kegelman_Air_Force_Auxiliary_Field" + }, + { + "id": "3453", + "ident": "KCKB", + "type": "medium_airport", + "name": "North Central West Virginia Airport", + "latitude_deg": "39.2966003418", + "longitude_deg": "-80.2281036377", + "elevation_ft": "1217", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Clarksburg", + "scheduled_service": "yes", + "gps_code": "KCKB", + "iata_code": "CKB", + "local_code": "CKB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harrison/Marion_Regional_Airport" + }, + { + "id": "19504", + "ident": "KCKC", + "type": "small_airport", + "name": "Grand Marais Cook County Airport", + "latitude_deg": "47.8382987976", + "longitude_deg": "-90.38289642330001", + "elevation_ft": "1799", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Grand Marais", + "scheduled_service": "no", + "gps_code": "KCKC", + "iata_code": "GRM", + "local_code": "CKC", + "home_link": "http://www.boreal.org/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Marais/Cook_County_Airport" + }, + { + "id": "19505", + "ident": "KCKF", + "type": "small_airport", + "name": "Crisp County Cordele Airport", + "latitude_deg": "31.98880005", + "longitude_deg": "-83.77390289", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Cordele", + "scheduled_service": "no", + "gps_code": "KCKF", + "local_code": "CKF" + }, + { + "id": "19506", + "ident": "KCKI", + "type": "small_airport", + "name": "Williamsburg Regional Airport", + "latitude_deg": "33.717201232910156", + "longitude_deg": "-79.85700225830078", + "elevation_ft": "67", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Kingstree", + "scheduled_service": "no", + "gps_code": "KCKI", + "local_code": "CKI" + }, + { + "id": "19507", + "ident": "KCKM", + "type": "small_airport", + "name": "Fletcher Field", + "latitude_deg": "34.2997016907", + "longitude_deg": "-90.512298584", + "elevation_ft": "173", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Clarksdale", + "scheduled_service": "no", + "gps_code": "KCKM", + "iata_code": "CKM", + "local_code": "CKM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fletcher_Field" + }, + { + "id": "19508", + "ident": "KCKN", + "type": "small_airport", + "name": "Crookston Municipal Kirkwood Field", + "latitude_deg": "47.8417015076", + "longitude_deg": "-96.62159729", + "elevation_ft": "899", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Crookston", + "scheduled_service": "no", + "gps_code": "KCKN", + "iata_code": "CKN", + "local_code": "CKN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Crookston_Municipal_Airport" + }, + { + "id": "19509", + "ident": "KCKP", + "type": "small_airport", + "name": "Cherokee County Regional Airport", + "latitude_deg": "42.7317009", + "longitude_deg": "-95.55590057", + "elevation_ft": "1227", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Cherokee", + "scheduled_service": "no", + "gps_code": "KCKP", + "local_code": "CKP" + }, + { + "id": "19510", + "ident": "KCKV", + "type": "small_airport", + "name": "Clarksville–Montgomery County Regional Airport", + "latitude_deg": "36.6218986511", + "longitude_deg": "-87.4150009155", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Clarksville", + "scheduled_service": "no", + "gps_code": "KCKV", + "iata_code": "CKV", + "local_code": "CKV", + "home_link": "http://www.clarksvilleregional.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clarksville%E2%80%93Montgomery_County_Regional_Airport", + "keywords": "Clarksville Army Airfield, Outlaw Field" + }, + { + "id": "20619", + "ident": "KCKZ", + "type": "small_airport", + "name": "Pennridge Airport", + "latitude_deg": "40.389198303222656", + "longitude_deg": "-75.29049682617188", + "elevation_ft": "568", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Perkasie", + "scheduled_service": "no", + "gps_code": "KCKZ", + "local_code": "CKZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pennridge_Airport", + "keywords": "Formerly N70" + }, + { + "id": "19511", + "ident": "KCL", + "type": "small_airport", + "name": "Chignik Lagoon Airport", + "latitude_deg": "56.31119919", + "longitude_deg": "-158.5359955", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chignik Flats", + "scheduled_service": "no", + "gps_code": "KCL", + "iata_code": "KCL", + "local_code": "KCL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chignik_Lagoon_Airport" + }, + { + "id": "3454", + "ident": "KCLE", + "type": "large_airport", + "name": "Cleveland Hopkins International Airport", + "latitude_deg": "41.4117012024", + "longitude_deg": "-81.8498001099", + "elevation_ft": "791", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cleveland", + "scheduled_service": "yes", + "gps_code": "KCLE", + "iata_code": "CLE", + "local_code": "CLE", + "home_link": "http://www.clevelandairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cleveland_Hopkins_International_Airport" + }, + { + "id": "19512", + "ident": "KCLI", + "type": "small_airport", + "name": "Clintonville Municipal Airport", + "latitude_deg": "44.613800048799995", + "longitude_deg": "-88.731300354", + "elevation_ft": "822", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Clintonville", + "scheduled_service": "no", + "gps_code": "KCLI", + "iata_code": "CLI", + "local_code": "CLI", + "home_link": "http://www.clintonvillewi.org/Airport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clintonville_Municipal_Airport" + }, + { + "id": "19513", + "ident": "KCLK", + "type": "small_airport", + "name": "Clinton Regional Airport", + "latitude_deg": "35.53829956", + "longitude_deg": "-98.93270111", + "elevation_ft": "1616", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "KCLK", + "iata_code": "CLK", + "local_code": "CLK" + }, + { + "id": "3455", + "ident": "KCLL", + "type": "medium_airport", + "name": "Easterwood Field", + "latitude_deg": "30.58860016", + "longitude_deg": "-96.36380005", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "College Station", + "scheduled_service": "yes", + "gps_code": "KCLL", + "iata_code": "CLL", + "local_code": "CLL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Easterwood_Airport" + }, + { + "id": "3456", + "ident": "KCLM", + "type": "medium_airport", + "name": "William R Fairchild International Airport", + "latitude_deg": "48.120201110839844", + "longitude_deg": "-123.5", + "elevation_ft": "291", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Port Angeles", + "scheduled_service": "yes", + "gps_code": "KCLM", + "iata_code": "CLM", + "local_code": "CLM", + "wikipedia_link": "https://en.wikipedia.org/wiki/William_R._Fairchild_International_Airport" + }, + { + "id": "19514", + "ident": "KCLR", + "type": "small_airport", + "name": "Cliff Hatfield Memorial Airport", + "latitude_deg": "33.131500244099996", + "longitude_deg": "-115.521003723", + "elevation_ft": "-182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Calipatria", + "scheduled_service": "no", + "gps_code": "KCLR", + "iata_code": "CLR", + "local_code": "CLR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cliff_Hatfield_Memorial_Airport" + }, + { + "id": "19515", + "ident": "KCLS", + "type": "small_airport", + "name": "Chehalis Centralia Airport", + "latitude_deg": "46.676998138399995", + "longitude_deg": "-122.983001709", + "elevation_ft": "176", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Chehalis", + "scheduled_service": "no", + "gps_code": "KCLS", + "iata_code": "CLS", + "local_code": "CLS", + "home_link": "http://www.flycls.com/" + }, + { + "id": "3457", + "ident": "KCLT", + "type": "large_airport", + "name": "Charlotte Douglas International Airport", + "latitude_deg": "35.2140007019043", + "longitude_deg": "-80.94309997558594", + "elevation_ft": "748", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Charlotte", + "scheduled_service": "yes", + "gps_code": "KCLT", + "iata_code": "CLT", + "local_code": "CLT", + "home_link": "http://www.charlotteairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Charlotte/Douglas_International_Airport" + }, + { + "id": "19516", + "ident": "KCLW", + "type": "small_airport", + "name": "Clearwater Air Park", + "latitude_deg": "27.9766998291", + "longitude_deg": "-82.7586975098", + "elevation_ft": "71", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Clearwater", + "scheduled_service": "no", + "gps_code": "KCLW", + "iata_code": "CLW", + "local_code": "CLW", + "home_link": "http://www.clearwaterairpark.net/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clearwater_Air_Park", + "keywords": "Clearwater Executive" + }, + { + "id": "19517", + "ident": "KCMA", + "type": "large_airport", + "name": "Camarillo International Airport", + "latitude_deg": "34.213699", + "longitude_deg": "-119.094002", + "elevation_ft": "77", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Camarillo", + "scheduled_service": "no", + "gps_code": "KCMA", + "local_code": "CMA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camarillo_Airport" + }, + { + "id": "18667", + "ident": "KCMD", + "type": "small_airport", + "name": "Cullman Regional Airport-Folsom Field", + "latitude_deg": "34.2687", + "longitude_deg": "-86.858002", + "elevation_ft": "969", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Cullman", + "scheduled_service": "no", + "gps_code": "KCMD", + "local_code": "CMD", + "home_link": "http://www.cullmanregionalairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Folsom_Field_(Alabama)", + "keywords": "3A1" + }, + { + "id": "3458", + "ident": "KCMH", + "type": "large_airport", + "name": "John Glenn Columbus International Airport", + "latitude_deg": "39.998001", + "longitude_deg": "-82.891899", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "yes", + "gps_code": "KCMH", + "iata_code": "CMH", + "local_code": "CMH", + "home_link": "https://flycolumbus.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Columbus_International_Airport" + }, + { + "id": "3459", + "ident": "KCMI", + "type": "medium_airport", + "name": "University of Illinois Willard Airport", + "latitude_deg": "40.039819", + "longitude_deg": "-88.276249", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Savoy", + "scheduled_service": "yes", + "gps_code": "KCMI", + "iata_code": "CMI", + "local_code": "CMI", + "wikipedia_link": "https://en.wikipedia.org/wiki/University_of_Illinois_Willard_Airport", + "keywords": "Champaign, Urbana" + }, + { + "id": "19518", + "ident": "KCMR", + "type": "small_airport", + "name": "H.A. Clark Memorial Field", + "latitude_deg": "35.305555", + "longitude_deg": "-112.194393", + "elevation_ft": "6680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Williams", + "scheduled_service": "no", + "gps_code": "KCMR", + "local_code": "CMR", + "keywords": "P32" + }, + { + "id": "3460", + "ident": "KCMX", + "type": "medium_airport", + "name": "Houghton County Memorial Airport", + "latitude_deg": "47.168399810791016", + "longitude_deg": "-88.48909759521484", + "elevation_ft": "1095", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Hancock", + "scheduled_service": "yes", + "gps_code": "KCMX", + "iata_code": "CMX", + "local_code": "CMX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Houghton_County_Memorial_Airport" + }, + { + "id": "19519", + "ident": "KCMY", + "type": "small_airport", + "name": "Sparta Fort Mc Coy Airport", + "latitude_deg": "43.958302", + "longitude_deg": "-90.7379", + "elevation_ft": "837", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Sparta", + "scheduled_service": "no", + "gps_code": "KCMY", + "iata_code": "CMY", + "local_code": "CMY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sparta/Fort_McCoy_Airport" + }, + { + "id": "19520", + "ident": "KCN", + "type": "seaplane_base", + "name": "Chernofski Harbor Seaplane Base", + "latitude_deg": "53.4028993416", + "longitude_deg": "-167.52027154", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chernofski Harbor", + "scheduled_service": "no", + "gps_code": "KCN", + "iata_code": "KCN", + "local_code": "KCN", + "wikipedia_link": "http://wikimapia.org/6966644/Port-of-Chernofski-Harbor" + }, + { + "id": "19521", + "ident": "KCNB", + "type": "small_airport", + "name": "Myers Field", + "latitude_deg": "44.72949982", + "longitude_deg": "-96.26599884", + "elevation_ft": "1194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Canby", + "scheduled_service": "no", + "gps_code": "KCNB", + "local_code": "CNB" + }, + { + "id": "19522", + "ident": "KCNC", + "type": "small_airport", + "name": "Chariton Municipal Airport", + "latitude_deg": "41.01959991455078", + "longitude_deg": "-93.35970306396484", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Chariton", + "scheduled_service": "no", + "gps_code": "KCNC", + "local_code": "CNC" + }, + { + "id": "19523", + "ident": "KCNH", + "type": "small_airport", + "name": "Claremont Municipal Airport", + "latitude_deg": "43.3703994751", + "longitude_deg": "-72.36869812009999", + "elevation_ft": "545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Claremont", + "scheduled_service": "no", + "gps_code": "KCNH", + "iata_code": "CNH", + "local_code": "CNH", + "home_link": "http://www.claremontnh.com/residents/claremont-municipal-airport.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Claremont_Municipal_Airport" + }, + { + "id": "19524", + "ident": "KCNK", + "type": "small_airport", + "name": "Blosser Municipal Airport", + "latitude_deg": "39.549301147499996", + "longitude_deg": "-97.6522979736", + "elevation_ft": "1486", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Concordia", + "scheduled_service": "no", + "gps_code": "KCNK", + "iata_code": "CNK", + "local_code": "CNK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Blosser_Municipal_Airport" + }, + { + "id": "3461", + "ident": "KCNM", + "type": "medium_airport", + "name": "Cavern City Air Terminal", + "latitude_deg": "32.337501525878906", + "longitude_deg": "-104.26300048828125", + "elevation_ft": "3295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Carlsbad", + "scheduled_service": "yes", + "gps_code": "KCNM", + "iata_code": "CNM", + "local_code": "CNM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cavern_City_Air_Terminal" + }, + { + "id": "19525", + "ident": "KCNO", + "type": "small_airport", + "name": "Chino Airport", + "latitude_deg": "33.97470093", + "longitude_deg": "-117.637001", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chino", + "scheduled_service": "no", + "gps_code": "KCNO", + "iata_code": "CNO", + "local_code": "CNO", + "home_link": "http://cms.sbcounty.gov/airports/Airports/Chino.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chino_Airport" + }, + { + "id": "19526", + "ident": "KCNP", + "type": "small_airport", + "name": "Billy G Ray Field", + "latitude_deg": "41.07749938964844", + "longitude_deg": "-102.46399688720703", + "elevation_ft": "3682", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Chappell", + "scheduled_service": "no", + "gps_code": "KCNP", + "local_code": "CNP" + }, + { + "id": "19527", + "ident": "KCNU", + "type": "medium_airport", + "name": "Chanute Martin Johnson Airport", + "latitude_deg": "37.668173", + "longitude_deg": "-95.486727", + "elevation_ft": "1002", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Chanute", + "scheduled_service": "no", + "gps_code": "KCNU", + "iata_code": "CNU", + "local_code": "CNU", + "home_link": "http://www.chanute.org/index.aspx?NID=65", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chanute_Martin_Johnson_Airport" + }, + { + "id": "19528", + "ident": "KCNW", + "type": "small_airport", + "name": "TSTC Waco Airport", + "latitude_deg": "31.641129", + "longitude_deg": "-97.073335", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no", + "gps_code": "KCNW", + "iata_code": "CNW", + "local_code": "CNW", + "home_link": "http://www.waco.tstc.edu/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/TSTC_Waco_Airport", + "keywords": "James Connally AFB" + }, + { + "id": "19529", + "ident": "KCNY", + "type": "small_airport", + "name": "Canyonlands Field", + "latitude_deg": "38.75500107", + "longitude_deg": "-109.7549973", + "elevation_ft": "4557", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Moab", + "scheduled_service": "no", + "gps_code": "KCNY", + "iata_code": "CNY", + "local_code": "CNY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Canyonlands_Field" + }, + { + "id": "19530", + "ident": "KCOD", + "type": "medium_airport", + "name": "Yellowstone Regional Airport", + "latitude_deg": "44.520198822", + "longitude_deg": "-109.024002075", + "elevation_ft": "5102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Cody", + "scheduled_service": "no", + "gps_code": "KCOD", + "iata_code": "COD", + "local_code": "COD", + "home_link": "http://www.flyyra.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yellowstone_Regional_Airport" + }, + { + "id": "19531", + "ident": "KCOE", + "type": "medium_airport", + "name": "Coeur D'Alene - Pappy Boyington Field", + "latitude_deg": "47.77429962", + "longitude_deg": "-116.8199997", + "elevation_ft": "2320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Coeur d'Alene", + "scheduled_service": "no", + "gps_code": "KCOE", + "iata_code": "COE", + "local_code": "COE", + "home_link": "http://www.cdaairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coeur_d'Alene_Airport", + "keywords": "Coeur d'Alene Air Terminal" + }, + { + "id": "3462", + "ident": "KCOF", + "type": "medium_airport", + "name": "Patrick Air Force Base", + "latitude_deg": "28.2348995209", + "longitude_deg": "-80.6100997925", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Cocoa Beach", + "scheduled_service": "no", + "gps_code": "KCOF", + "iata_code": "COF", + "local_code": "COF", + "home_link": "http://www.patrick.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Patrick_Air_Force_Base", + "keywords": "Naval Air Station Banana River" + }, + { + "id": "19532", + "ident": "KCOI", + "type": "small_airport", + "name": "Merritt Island Airport", + "latitude_deg": "28.341600418099997", + "longitude_deg": "-80.6855010986", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Merritt Island", + "scheduled_service": "no", + "gps_code": "KCOI", + "iata_code": "COI", + "local_code": "COI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Merritt_Island_Airport" + }, + { + "id": "19533", + "ident": "KCOM", + "type": "small_airport", + "name": "Coleman Municipal Airport", + "latitude_deg": "31.841100692699996", + "longitude_deg": "-99.4036026001", + "elevation_ft": "1697", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Coleman", + "scheduled_service": "no", + "gps_code": "KCOM", + "iata_code": "COM", + "local_code": "COM", + "home_link": "http://www.cityofcolemantx.us/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coleman_Municipal_Airport" + }, + { + "id": "19534", + "ident": "KCON", + "type": "medium_airport", + "name": "Concord Municipal Airport", + "latitude_deg": "43.20270157", + "longitude_deg": "-71.50229645", + "elevation_ft": "342", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "KCON", + "iata_code": "CON", + "local_code": "CON", + "home_link": "http://www.concordnh.gov/facilities/facility/details/Concord-Municipal-Airport-31", + "wikipedia_link": "https://en.wikipedia.org/wiki/Concord_Municipal_Airport" + }, + { + "id": "19535", + "ident": "KCOQ", + "type": "small_airport", + "name": "Cloquet Carlton County Airport", + "latitude_deg": "46.70109939575195", + "longitude_deg": "-92.50360107421875", + "elevation_ft": "1279", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Cloquet", + "scheduled_service": "no", + "gps_code": "KCOQ", + "local_code": "COQ" + }, + { + "id": "3463", + "ident": "KCOS", + "type": "medium_airport", + "name": "City of Colorado Springs Municipal Airport", + "latitude_deg": "38.805801", + "longitude_deg": "-104.700996", + "elevation_ft": "6187", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Colorado Springs", + "scheduled_service": "yes", + "gps_code": "KCOS", + "iata_code": "COS", + "local_code": "COS", + "home_link": "https://flycos.coloradosprings.gov/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Colorado_Springs_Airport" + }, + { + "id": "19536", + "ident": "KCOT", + "type": "small_airport", + "name": "Cotulla-La Salle County Airport", + "latitude_deg": "28.45669937", + "longitude_deg": "-99.22029877", + "elevation_ft": "474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cotulla", + "scheduled_service": "no", + "gps_code": "KCOT", + "iata_code": "COT", + "local_code": "COT", + "home_link": "http://www.cotullaairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cotulla%E2%80%93La_Salle_County_Airport" + }, + { + "id": "3464", + "ident": "KCOU", + "type": "medium_airport", + "name": "Columbia Regional Airport", + "latitude_deg": "38.8181", + "longitude_deg": "-92.219597", + "elevation_ft": "889", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Columbia", + "scheduled_service": "yes", + "gps_code": "KCOU", + "iata_code": "COU", + "local_code": "COU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Columbia_Regional_Airport" + }, + { + "id": "19537", + "ident": "KCPC", + "type": "small_airport", + "name": "Columbus County Municipal Airport", + "latitude_deg": "34.27289963", + "longitude_deg": "-78.71499634", + "elevation_ft": "99", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Whiteville", + "scheduled_service": "no", + "gps_code": "KCPC", + "local_code": "CPC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Columbus_County_Municipal_Airport" + }, + { + "id": "348516", + "ident": "KCPF", + "type": "medium_airport", + "name": "Wendell H Ford Airport", + "latitude_deg": "37.386666", + "longitude_deg": "-83.261666", + "elevation_ft": "1256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Hazard", + "scheduled_service": "no", + "local_code": "CPF" + }, + { + "id": "19538", + "ident": "KCPK", + "type": "small_airport", + "name": "Chesapeake Regional Airport", + "latitude_deg": "36.66559982", + "longitude_deg": "-76.3207016", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Norfolk", + "scheduled_service": "no", + "gps_code": "KCPK", + "local_code": "CPK" + }, + { + "id": "19539", + "ident": "KCPM", + "type": "small_airport", + "name": "Compton Woodley Airport", + "latitude_deg": "33.8899993896", + "longitude_deg": "-118.244003296", + "elevation_ft": "97", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Compton", + "scheduled_service": "no", + "gps_code": "KCPM", + "iata_code": "CPM", + "local_code": "CPM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Compton/Woodley_Airport" + }, + { + "id": "3465", + "ident": "KCPR", + "type": "medium_airport", + "name": "Casper-Natrona County International Airport", + "latitude_deg": "42.908001", + "longitude_deg": "-106.463997", + "elevation_ft": "5350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Casper", + "scheduled_service": "yes", + "gps_code": "KCPR", + "iata_code": "CPR", + "local_code": "CPR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Natrona_County_International_Airport" + }, + { + "id": "19540", + "ident": "KCPS", + "type": "small_airport", + "name": "St Louis Downtown Airport", + "latitude_deg": "38.570701599100005", + "longitude_deg": "-90.1561965942", + "elevation_ft": "413", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Cahokia/St Louis", + "scheduled_service": "no", + "gps_code": "KCPS", + "iata_code": "CPS", + "local_code": "CPS", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Louis_Downtown_Airport" + }, + { + "id": "19541", + "ident": "KCPT", + "type": "small_airport", + "name": "Cleburne Regional Airport", + "latitude_deg": "32.353802", + "longitude_deg": "-97.433701", + "elevation_ft": "854", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cleburne", + "scheduled_service": "no", + "gps_code": "KCPT", + "local_code": "CPT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cleburne_Regional_Airport", + "keywords": "Cleburne Municipal, F18" + }, + { + "id": "19542", + "ident": "KCPU", + "type": "small_airport", + "name": "Calaveras Co Maury Rasmussen Field", + "latitude_deg": "38.14609909057617", + "longitude_deg": "-120.64800262451172", + "elevation_ft": "1325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Andreas", + "scheduled_service": "no", + "gps_code": "KCPU", + "local_code": "CPU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Calaveras_County_Airport" + }, + { + "id": "19543", + "ident": "KCQA", + "type": "small_airport", + "name": "Lakefield Airport", + "latitude_deg": "40.484100341796875", + "longitude_deg": "-84.56009674072266", + "elevation_ft": "894", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Celina", + "scheduled_service": "no", + "gps_code": "KCQA", + "local_code": "CQA" + }, + { + "id": "19544", + "ident": "KCQB", + "type": "small_airport", + "name": "Chandler Regional Airport", + "latitude_deg": "35.72380065917969", + "longitude_deg": "-96.82029724121094", + "elevation_ft": "984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Chandler", + "scheduled_service": "no", + "gps_code": "KCQB", + "local_code": "CQB" + }, + { + "id": "337253", + "ident": "KCQJ", + "type": "heliport", + "name": "Cheyenne Mountain Space Force Station Heliport", + "latitude_deg": "38.738586", + "longitude_deg": "-104.835148", + "elevation_ft": "6609", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Colorado Springs", + "scheduled_service": "no", + "gps_code": "KCQJ", + "local_code": "CQJ" + }, + { + "id": "19545", + "ident": "KCQM", + "type": "small_airport", + "name": "Cook Municipal Airport", + "latitude_deg": "47.8218994140625", + "longitude_deg": "-92.68939971923828", + "elevation_ft": "1327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Cook", + "scheduled_service": "no", + "gps_code": "KCQM", + "local_code": "CQM" + }, + { + "id": "19546", + "ident": "KCQW", + "type": "small_airport", + "name": "Cheraw Municipal Airport/Lynch Bellinger Field", + "latitude_deg": "34.71289825", + "longitude_deg": "-79.95700073", + "elevation_ft": "239", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Cheraw", + "scheduled_service": "no", + "gps_code": "KCQW", + "iata_code": "HCW", + "local_code": "CQW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cheraw_Municipal_Airport" + }, + { + "id": "19547", + "ident": "KCQX", + "type": "small_airport", + "name": "Chatham Municipal Airport", + "latitude_deg": "41.68840026855469", + "longitude_deg": "-69.989501953125", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Chatham", + "scheduled_service": "no", + "gps_code": "KCQX", + "local_code": "CQX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chatham_Municipal_Airport" + }, + { + "id": "19548", + "ident": "KCR", + "type": "small_airport", + "name": "Colorado Creek Airport", + "latitude_deg": "63.5676994324", + "longitude_deg": "-155.988998413", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Colorado Creek", + "scheduled_service": "no", + "gps_code": "KCR", + "iata_code": "KCR", + "local_code": "KCR" + }, + { + "id": "19549", + "ident": "KCRE", + "type": "medium_airport", + "name": "Grand Strand Airport", + "latitude_deg": "33.8116989136", + "longitude_deg": "-78.72389984130001", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "North Myrtle Beach", + "scheduled_service": "no", + "gps_code": "KCRE", + "iata_code": "CRE", + "local_code": "CRE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Strand_Airport" + }, + { + "id": "19550", + "ident": "KCRG", + "type": "medium_airport", + "name": "Jacksonville Executive at Craig Airport", + "latitude_deg": "30.3362998962", + "longitude_deg": "-81.51439666750001", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "KCRG", + "iata_code": "CRG", + "local_code": "CRG", + "home_link": "http://www.flyjacksonville.com/content.aspx?id=86", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jacksonville_Executive_at_Craig_Airport", + "keywords": "Craig Municipal Airport" + }, + { + "id": "19551", + "ident": "KCRO", + "type": "small_airport", + "name": "Corcoran Airport", + "latitude_deg": "36.102502", + "longitude_deg": "-119.595001", + "elevation_ft": "197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Corcoran", + "scheduled_service": "no", + "iata_code": "CRO", + "local_code": "43CN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Corcoran_Airport", + "keywords": "KRCO" + }, + { + "id": "3466", + "ident": "KCRP", + "type": "medium_airport", + "name": "Corpus Christi International Airport", + "latitude_deg": "27.770399", + "longitude_deg": "-97.501198", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "yes", + "gps_code": "KCRP", + "iata_code": "CRP", + "local_code": "CRP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Corpus_Christi_International_Airport" + }, + { + "id": "19552", + "ident": "KCRQ", + "type": "medium_airport", + "name": "McClellan-Palomar Airport", + "latitude_deg": "33.1283", + "longitude_deg": "-117.279999", + "elevation_ft": "331", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Carlsbad", + "scheduled_service": "no", + "gps_code": "KCRQ", + "iata_code": "CLD", + "local_code": "CRQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/McClellan-Palomar_Airport" + }, + { + "id": "19553", + "ident": "KCRS", + "type": "small_airport", + "name": "C David Campbell Field Corsicana Municipal Airport", + "latitude_deg": "32.0280990601", + "longitude_deg": "-96.4005966187", + "elevation_ft": "449", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corsicana", + "scheduled_service": "no", + "gps_code": "KCRS", + "iata_code": "CRS", + "local_code": "CRS", + "home_link": "http://www.cityofcorsicana.com/Index.aspx?NID=577", + "wikipedia_link": "https://en.wikipedia.org/wiki/C._David_Campbell_Field" + }, + { + "id": "19554", + "ident": "KCRT", + "type": "small_airport", + "name": "Z M Jack Stell Field", + "latitude_deg": "33.1782989502", + "longitude_deg": "-91.8802032471", + "elevation_ft": "184", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Crossett", + "scheduled_service": "no", + "gps_code": "KCRT", + "iata_code": "CRT", + "local_code": "CRT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Z._M._Jack_Stell_Field" + }, + { + "id": "3467", + "ident": "KCRW", + "type": "medium_airport", + "name": "Yeager Airport", + "latitude_deg": "38.3731", + "longitude_deg": "-81.593201", + "elevation_ft": "981", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Charleston", + "scheduled_service": "yes", + "gps_code": "KCRW", + "iata_code": "CRW", + "local_code": "CRW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yeager_Airport" + }, + { + "id": "19555", + "ident": "KCRX", + "type": "small_airport", + "name": "Roscoe Turner Airport", + "latitude_deg": "34.9150009155", + "longitude_deg": "-88.6035003662", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Corinth", + "scheduled_service": "no", + "gps_code": "KCRX", + "iata_code": "CRX", + "local_code": "CRX", + "home_link": "http://www.corinth-alcornairport.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roscoe_Turner_Airport" + }, + { + "id": "19556", + "ident": "KCRZ", + "type": "small_airport", + "name": "Corning Municipal Airport", + "latitude_deg": "40.99409866333008", + "longitude_deg": "-94.75499725341797", + "elevation_ft": "1274", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Corning", + "scheduled_service": "no", + "gps_code": "KCRZ", + "local_code": "CRZ" + }, + { + "id": "19557", + "ident": "KCSB", + "type": "small_airport", + "name": "Cambridge Municipal Airport", + "latitude_deg": "40.30659866333008", + "longitude_deg": "-100.16200256347656", + "elevation_ft": "2414", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "KCSB", + "local_code": "CSB" + }, + { + "id": "3468", + "ident": "KCSG", + "type": "medium_airport", + "name": "Columbus Metropolitan Airport", + "latitude_deg": "32.516300201416016", + "longitude_deg": "-84.93890380859375", + "elevation_ft": "397", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Columbus", + "scheduled_service": "yes", + "gps_code": "KCSG", + "iata_code": "CSG", + "local_code": "CSG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Columbus_Metropolitan_Airport" + }, + { + "id": "19558", + "ident": "KCSM", + "type": "small_airport", + "name": "Clinton Sherman Airport", + "latitude_deg": "35.3398017883", + "longitude_deg": "-99.20050048830001", + "elevation_ft": "1922", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "KCSM", + "iata_code": "CSM", + "local_code": "CSM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clinton-Sherman_Industrial_Airpark" + }, + { + "id": "19559", + "ident": "KCSQ", + "type": "small_airport", + "name": "Creston Municipal Airport", + "latitude_deg": "41.021400451699996", + "longitude_deg": "-94.36329650879999", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Creston", + "scheduled_service": "no", + "gps_code": "KCSQ", + "iata_code": "CSQ", + "local_code": "CSQ", + "home_link": "http://www.crestoniowa.gov/crestonmunicipalairport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Creston_Municipal_Airport" + }, + { + "id": "3469", + "ident": "KCSV", + "type": "medium_airport", + "name": "Crossville Memorial Whitson Field", + "latitude_deg": "35.9513015747", + "longitude_deg": "-85.08499908450001", + "elevation_ft": "1881", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Crossville", + "scheduled_service": "no", + "gps_code": "KCSV", + "iata_code": "CSV", + "local_code": "CSV", + "home_link": "http://www.crossvilletn.gov/index.php/departments/airport" + }, + { + "id": "338688", + "ident": "KCSY", + "type": "closed", + "name": "Crissy Field", + "latitude_deg": "37.80376", + "longitude_deg": "-122.46389", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Francisco", + "scheduled_service": "no", + "gps_code": "KCSY", + "local_code": "CSY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Crissy_Field" + }, + { + "id": "3470", + "ident": "KCTB", + "type": "medium_airport", + "name": "Cut Bank International Airport", + "latitude_deg": "48.608657", + "longitude_deg": "-112.378183", + "elevation_ft": "3854", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Cut Bank", + "scheduled_service": "no", + "gps_code": "KCTB", + "iata_code": "CTB", + "local_code": "CTB", + "home_link": "http://www.cutbankairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cut_Bank_Municipal_Airport" + }, + { + "id": "19560", + "ident": "KCTJ", + "type": "small_airport", + "name": "West Georgia Regional Airport / O V Gray Field", + "latitude_deg": "33.631001", + "longitude_deg": "-85.152", + "elevation_ft": "1161", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Carrollton", + "scheduled_service": "no", + "gps_code": "KCTJ", + "local_code": "CTJ" + }, + { + "id": "19561", + "ident": "KCTK", + "type": "small_airport", + "name": "Ingersoll Airport", + "latitude_deg": "40.5690994263", + "longitude_deg": "-90.074798584", + "elevation_ft": "684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Canton", + "scheduled_service": "no", + "gps_code": "KCTK", + "local_code": "CTK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ingersoll_Airport" + }, + { + "id": "19562", + "ident": "KCTY", + "type": "small_airport", + "name": "Cross City Airport", + "latitude_deg": "29.6354999542", + "longitude_deg": "-83.10479736330001", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Cross City", + "scheduled_service": "no", + "gps_code": "KCTY", + "iata_code": "CTY", + "local_code": "CTY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cross_City_Airport" + }, + { + "id": "19563", + "ident": "KCTZ", + "type": "small_airport", + "name": "Sampson County Airport", + "latitude_deg": "34.9756011963", + "longitude_deg": "-78.3646011353", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "KCTZ", + "iata_code": "CTZ", + "local_code": "CTZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sampson_County_Airport" + }, + { + "id": "19564", + "ident": "KCUB", + "type": "medium_airport", + "name": "Jim Hamilton L.B. Owens Airport", + "latitude_deg": "33.970500946", + "longitude_deg": "-80.9952011108", + "elevation_ft": "193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "KCUB", + "iata_code": "CUB", + "local_code": "CUB", + "home_link": "http://www.columbiasouthcarolina.com/owens.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jim_Hamilton_%E2%80%93_L.B._Owens_Airport" + }, + { + "id": "19565", + "ident": "KCUH", + "type": "small_airport", + "name": "Cushing Municipal Airport", + "latitude_deg": "35.950496", + "longitude_deg": "-96.772371", + "elevation_ft": "916", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Cushing", + "scheduled_service": "no", + "gps_code": "KCUH", + "iata_code": "CUH", + "local_code": "CUH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cushing_Municipal_Airport", + "keywords": "Air Evac 36 Heliport" + }, + { + "id": "19566", + "ident": "KCUL", + "type": "small_airport", + "name": "Carmi Municipal Airport", + "latitude_deg": "38.089500427246094", + "longitude_deg": "-88.12310028076172", + "elevation_ft": "388", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Carmi", + "scheduled_service": "no", + "gps_code": "KCUL", + "local_code": "CUL" + }, + { + "id": "19567", + "ident": "KCUT", + "type": "small_airport", + "name": "Custer County Airport", + "latitude_deg": "43.733299255371094", + "longitude_deg": "-103.61799621582031", + "elevation_ft": "5602", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Custer", + "scheduled_service": "no", + "gps_code": "KCUT", + "local_code": "CUT" + }, + { + "id": "21172", + "ident": "KCVB", + "type": "small_airport", + "name": "Castroville Municipal Airport", + "latitude_deg": "29.3418998718", + "longitude_deg": "-98.8508987427", + "elevation_ft": "771", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Castroville", + "scheduled_service": "no", + "gps_code": "KCVB", + "local_code": "CVB", + "home_link": "http://castrovilletx.gov/city-services/castroville-municipal-airport", + "keywords": "Formerly T89" + }, + { + "id": "3471", + "ident": "KCVG", + "type": "large_airport", + "name": "Cincinnati Northern Kentucky International Airport", + "latitude_deg": "39.048801", + "longitude_deg": "-84.667801", + "elevation_ft": "896", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Cincinnati / Covington", + "scheduled_service": "yes", + "gps_code": "KCVG", + "iata_code": "CVG", + "local_code": "CVG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cincinnati/Northern_Kentucky_International_Airport" + }, + { + "id": "19568", + "ident": "KCVK", + "type": "small_airport", + "name": "Sharp County Regional Airport", + "latitude_deg": "36.26490021", + "longitude_deg": "-91.56259918", + "elevation_ft": "716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Ash Flat", + "scheduled_service": "no", + "gps_code": "KCVK", + "iata_code": "CKK", + "local_code": "CVK", + "home_link": "http://www.cherokeevillage.org/airport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sharp_County_Regional_Airport", + "keywords": "Cherokee Village" + }, + { + "id": "19569", + "ident": "KCVN", + "type": "small_airport", + "name": "Clovis Municipal Airport", + "latitude_deg": "34.4250984192", + "longitude_deg": "-103.07900238", + "elevation_ft": "4216", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Clovis", + "scheduled_service": "no", + "gps_code": "KCVN", + "iata_code": "CVN", + "local_code": "CVN" + }, + { + "id": "3472", + "ident": "KCVO", + "type": "medium_airport", + "name": "Corvallis Municipal Airport", + "latitude_deg": "44.49720001", + "longitude_deg": "-123.2900009", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Corvallis", + "scheduled_service": "no", + "gps_code": "KCVO", + "iata_code": "CVO", + "local_code": "CVO", + "home_link": "http://www.corvallisoregon.gov/index.aspx?page=160", + "wikipedia_link": "https://en.wikipedia.org/wiki/Corvallis_Municipal_Airport", + "keywords": "Albany Oregon" + }, + { + "id": "3473", + "ident": "KCVS", + "type": "medium_airport", + "name": "Cannon Air Force Base", + "latitude_deg": "34.382801", + "longitude_deg": "-103.321999", + "elevation_ft": "4295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Clovis", + "scheduled_service": "no", + "gps_code": "KCVS", + "iata_code": "CVS", + "local_code": "CVS", + "home_link": "http://www.cannon.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cannon_Air_Force_Base" + }, + { + "id": "19570", + "ident": "KCVX", + "type": "small_airport", + "name": "Charlevoix Municipal Airport", + "latitude_deg": "45.3047981262207", + "longitude_deg": "-85.2748031616211", + "elevation_ft": "669", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Charlevoix", + "scheduled_service": "no", + "gps_code": "KCVX", + "local_code": "CVX" + }, + { + "id": "19571", + "ident": "KCWA", + "type": "medium_airport", + "name": "Central Wisconsin Airport", + "latitude_deg": "44.7775993347", + "longitude_deg": "-89.6668014526", + "elevation_ft": "1277", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Mosinee", + "scheduled_service": "no", + "gps_code": "KCWA", + "iata_code": "CWA", + "local_code": "CWA" + }, + { + "id": "21154", + "ident": "KCWC", + "type": "small_airport", + "name": "Kickapoo Downtown Airport", + "latitude_deg": "33.85779953", + "longitude_deg": "-98.49040222", + "elevation_ft": "1003", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wichita Falls", + "scheduled_service": "no", + "gps_code": "KCWC", + "iata_code": "KIP", + "local_code": "CWC", + "home_link": "http://www.wichitafallstx.gov/index.aspx?nid=704", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kickapoo_Downtown_Airport", + "keywords": "KT47, T47, JKP" + }, + { + "id": "19572", + "ident": "KCWF", + "type": "small_airport", + "name": "Chennault International Airport", + "latitude_deg": "30.2106", + "longitude_deg": "-93.143204", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Charles", + "scheduled_service": "no", + "gps_code": "KCWF", + "iata_code": "CWF", + "local_code": "CWF", + "home_link": "http://www.chennault.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chennault_International_Airport", + "keywords": "Chennault Industrial Airpark" + }, + { + "id": "19573", + "ident": "KCWI", + "type": "small_airport", + "name": "Clinton Municipal Airport", + "latitude_deg": "41.8311004639", + "longitude_deg": "-90.3291015625", + "elevation_ft": "708", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "KCWI", + "iata_code": "CWI", + "local_code": "CWI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clinton_Municipal_Airport_(Iowa)" + }, + { + "id": "28132", + "ident": "KCWN", + "type": "closed", + "name": "White Mountain Airport", + "latitude_deg": "44.02000045776367", + "longitude_deg": "-71.11000061035156", + "elevation_ft": "334", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "North Conway", + "scheduled_service": "no", + "gps_code": "KCWN" + }, + { + "id": "19574", + "ident": "KCWS", + "type": "closed", + "name": "Dennis F Cantrell Field", + "latitude_deg": "35.080799", + "longitude_deg": "-92.425003", + "elevation_ft": "316", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Conway", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dennis_F._Cantrell_Field", + "keywords": "KCWS, CWS, M03" + }, + { + "id": "19575", + "ident": "KCWV", + "type": "small_airport", + "name": "Claxton Evans County Airport", + "latitude_deg": "32.195099", + "longitude_deg": "-81.869598", + "elevation_ft": "112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Claxton", + "scheduled_service": "no", + "gps_code": "KCWV", + "local_code": "CWV" + }, + { + "id": "19576", + "ident": "KCXE", + "type": "small_airport", + "name": "Chase City Municipal Airport", + "latitude_deg": "36.788299560546875", + "longitude_deg": "-78.50160217285156", + "elevation_ft": "503", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Chase City", + "scheduled_service": "no", + "gps_code": "KCXE", + "local_code": "CXE" + }, + { + "id": "3474", + "ident": "KCXL", + "type": "small_airport", + "name": "Calexico International Airport", + "latitude_deg": "32.6694984436", + "longitude_deg": "-115.513000488", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Calexico", + "scheduled_service": "no", + "gps_code": "KCXL", + "iata_code": "CXL", + "local_code": "CXL", + "home_link": "http://calexico.ca.gov/index.php?option=com_content&task=blogcategory&id=77&Itemid=90", + "wikipedia_link": "https://en.wikipedia.org/wiki/Calexico_International_Airport" + }, + { + "id": "3475", + "ident": "KCXO", + "type": "medium_airport", + "name": "Conroe-North Houston Regional Airport", + "latitude_deg": "30.351801", + "longitude_deg": "-95.414497", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "KCXO", + "iata_code": "CXO", + "local_code": "CXO", + "home_link": "https://web.archive.org/web/20160301220928/http://www.lonestarairport.org:80/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lone_Star_Executive_Airport", + "keywords": "Montgomery County Airport, Lone Star Executive Airport" + }, + { + "id": "19577", + "ident": "KCXP", + "type": "small_airport", + "name": "Carson Airport", + "latitude_deg": "39.192199707", + "longitude_deg": "-119.73400116", + "elevation_ft": "4697", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Carson City", + "scheduled_service": "no", + "gps_code": "KCXP", + "iata_code": "CSN", + "local_code": "CXP", + "home_link": "http://flycarsoncity.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carson_Airport", + "keywords": "Carson City Airport" + }, + { + "id": "19578", + "ident": "KCXU", + "type": "small_airport", + "name": "Camilla Mitchell County Airport", + "latitude_deg": "31.21315", + "longitude_deg": "-84.235396", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Camilla", + "scheduled_service": "no", + "gps_code": "KCXU", + "local_code": "CXU" + }, + { + "id": "318199", + "ident": "KCXW", + "type": "small_airport", + "name": "Conway Regional Airport", + "latitude_deg": "35.019889", + "longitude_deg": "-92.555111", + "elevation_ft": "276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Conway", + "scheduled_service": "no", + "gps_code": "KCXW", + "local_code": "CXW", + "home_link": "https://conwayarkansas.gov/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Conway_Municipal_Airport", + "keywords": "Cantrell Field" + }, + { + "id": "19579", + "ident": "KCXY", + "type": "small_airport", + "name": "Capital City Airport", + "latitude_deg": "40.2170982361", + "longitude_deg": "-76.85150146480001", + "elevation_ft": "347", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Harrisburg", + "scheduled_service": "no", + "gps_code": "KCXY", + "iata_code": "HAR", + "local_code": "CXY", + "home_link": "http://www.flycxy.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Capital_City_Airport_(Pennsylvania)", + "keywords": "Harrisburg Skyport, Harrisburg-Capital Landing Field, Harrisburg-York State Airport" + }, + { + "id": "19580", + "ident": "KCYO", + "type": "small_airport", + "name": "Pickaway County Memorial Airport", + "latitude_deg": "39.51599884", + "longitude_deg": "-82.98210144", + "elevation_ft": "684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Circleville", + "scheduled_service": "no", + "gps_code": "KCYO", + "local_code": "CYO" + }, + { + "id": "3476", + "ident": "KCYS", + "type": "medium_airport", + "name": "Cheyenne Regional Jerry Olson Field", + "latitude_deg": "41.155701", + "longitude_deg": "-104.811997", + "elevation_ft": "6159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Cheyenne", + "scheduled_service": "yes", + "gps_code": "KCYS", + "local_code": "CYS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cheyenne_Regional_Airport" + }, + { + "id": "19581", + "ident": "KCYW", + "type": "small_airport", + "name": "Clay Center Municipal Airport", + "latitude_deg": "39.3871", + "longitude_deg": "-97.157204", + "elevation_ft": "1208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Clay Center", + "scheduled_service": "no", + "gps_code": "KCYW", + "local_code": "CYW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clay_Center_Municipal_Airport" + }, + { + "id": "19582", + "ident": "KCZD", + "type": "small_airport", + "name": "Cozad Municipal Airport", + "latitude_deg": "40.86909866", + "longitude_deg": "-100.0039978", + "elevation_ft": "2503", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Cozad", + "scheduled_service": "no", + "gps_code": "KCZD", + "local_code": "CZD" + }, + { + "id": "19583", + "ident": "KCZG", + "type": "small_airport", + "name": "Tri Cities Airport", + "latitude_deg": "42.078499", + "longitude_deg": "-76.096296", + "elevation_ft": "833", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Endicott", + "scheduled_service": "no", + "gps_code": "KCZG", + "local_code": "CZG", + "home_link": "http://www.tricities-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tri-Cities_Airport_(New_York)", + "keywords": "N17" + }, + { + "id": "19584", + "ident": "KCZL", + "type": "small_airport", + "name": "Tom B. David Field", + "latitude_deg": "34.45539856", + "longitude_deg": "-84.93920135", + "elevation_ft": "647", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Calhoun", + "scheduled_service": "no", + "gps_code": "KCZL", + "local_code": "CZL" + }, + { + "id": "19585", + "ident": "KCZT", + "type": "small_airport", + "name": "Dimmit County Airport", + "latitude_deg": "28.522199630699998", + "longitude_deg": "-99.823600769", + "elevation_ft": "599", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Carrizo Springs", + "scheduled_service": "no", + "gps_code": "KCZT", + "iata_code": "CZT", + "local_code": "CZT" + }, + { + "id": "19586", + "ident": "KD00", + "type": "small_airport", + "name": "Norman County Ada/Twin Valley Airport", + "latitude_deg": "47.260502", + "longitude_deg": "-96.400299", + "elevation_ft": "954", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Twin Valley", + "scheduled_service": "no", + "local_code": "D00" + }, + { + "id": "19587", + "ident": "KD02", + "type": "small_airport", + "name": "Osage Municipal Airport", + "latitude_deg": "43.29249954223633", + "longitude_deg": "-92.7959976196289", + "elevation_ft": "1168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Osage", + "scheduled_service": "no", + "gps_code": "KD02", + "local_code": "D02" + }, + { + "id": "19588", + "ident": "KD05", + "type": "small_airport", + "name": "Garrison Municipal Airport", + "latitude_deg": "47.65589904785156", + "longitude_deg": "-101.43699645996094", + "elevation_ft": "1935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Garrison", + "scheduled_service": "no", + "gps_code": "KD05", + "local_code": "D05" + }, + { + "id": "19589", + "ident": "KD07", + "type": "small_airport", + "name": "Faith Municipal Airport", + "latitude_deg": "45.03609848022461", + "longitude_deg": "-102.0199966430664", + "elevation_ft": "2582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Faith", + "scheduled_service": "no", + "gps_code": "KD07", + "local_code": "D07" + }, + { + "id": "19590", + "ident": "KD09", + "type": "small_airport", + "name": "Bottineau Municipal Airport", + "latitude_deg": "48.83039856", + "longitude_deg": "-100.4169998", + "elevation_ft": "1681", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Bottineau", + "scheduled_service": "no", + "gps_code": "KD09", + "local_code": "D09" + }, + { + "id": "19591", + "ident": "KD11", + "type": "small_airport", + "name": "Ojibwa Airpark", + "latitude_deg": "43.720001220703125", + "longitude_deg": "-85.00279998779297", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Weidman", + "scheduled_service": "no", + "gps_code": "KD11", + "local_code": "D11" + }, + { + "id": "19592", + "ident": "KD14", + "type": "small_airport", + "name": "Fertile Municipal Airport", + "latitude_deg": "47.55189895629883", + "longitude_deg": "-96.29190063476562", + "elevation_ft": "1135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Fertile", + "scheduled_service": "no", + "gps_code": "KD14", + "local_code": "D14" + }, + { + "id": "19593", + "ident": "KD17", + "type": "small_airport", + "name": "Westwinds Airport", + "latitude_deg": "38.75749969482422", + "longitude_deg": "-108.14800262451172", + "elevation_ft": "5000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Delta", + "scheduled_service": "no", + "gps_code": "KD17", + "local_code": "D17" + }, + { + "id": "19594", + "ident": "KD23", + "type": "small_airport", + "name": "Arcade Tri County Airport", + "latitude_deg": "42.56669998168945", + "longitude_deg": "-78.42610168457031", + "elevation_ft": "1745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Arcade", + "scheduled_service": "no", + "gps_code": "KD23", + "local_code": "D23" + }, + { + "id": "19595", + "ident": "KD25", + "type": "small_airport", + "name": "Manitowish Waters Airport", + "latitude_deg": "46.12200164794922", + "longitude_deg": "-89.8823013305664", + "elevation_ft": "1610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Manitowish Waters", + "scheduled_service": "no", + "gps_code": "KD25", + "local_code": "D25" + }, + { + "id": "19596", + "ident": "KD31", + "type": "small_airport", + "name": "Leeds Municipal Airport", + "latitude_deg": "48.28499984741211", + "longitude_deg": "-99.40350341796875", + "elevation_ft": "1508", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Leeds", + "scheduled_service": "no", + "gps_code": "KD31", + "local_code": "D31" + }, + { + "id": "19597", + "ident": "KD37", + "type": "small_airport", + "name": "Warren Municipal Airport", + "latitude_deg": "48.19110107421875", + "longitude_deg": "-96.71109771728516", + "elevation_ft": "886", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Warren", + "scheduled_service": "no", + "gps_code": "KD37", + "local_code": "D37" + }, + { + "id": "19599", + "ident": "KD39", + "type": "small_airport", + "name": "Sauk Centre Municipal Airport", + "latitude_deg": "45.706600189208984", + "longitude_deg": "-94.93340301513672", + "elevation_ft": "1244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Sauk Centre", + "scheduled_service": "no", + "gps_code": "KD39", + "local_code": "D39" + }, + { + "id": "19600", + "ident": "KD42", + "type": "small_airport", + "name": "Springfield Municipal Airport", + "latitude_deg": "44.23109817504883", + "longitude_deg": "-94.9989013671875", + "elevation_ft": "1072", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "KD42", + "local_code": "D42" + }, + { + "id": "19601", + "ident": "KD50", + "type": "small_airport", + "name": "Crosby Municipal Airport", + "latitude_deg": "48.92850112915039", + "longitude_deg": "-103.2969970703125", + "elevation_ft": "1950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Crosby", + "scheduled_service": "no", + "gps_code": "KD50", + "local_code": "D50" + }, + { + "id": "19602", + "ident": "KD54", + "type": "small_airport", + "name": "West Fargo Municipal Airport", + "latitude_deg": "46.90079879760742", + "longitude_deg": "-96.918701171875", + "elevation_ft": "896", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Fargo", + "scheduled_service": "no", + "gps_code": "KD54", + "local_code": "D54" + }, + { + "id": "19603", + "ident": "KD55", + "type": "small_airport", + "name": "Robertson Field", + "latitude_deg": "48.75299835205078", + "longitude_deg": "-98.39330291748047", + "elevation_ft": "1608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Langdon", + "scheduled_service": "no", + "gps_code": "KD55", + "local_code": "D55" + }, + { + "id": "19604", + "ident": "KD56", + "type": "small_airport", + "name": "Mayville Municipal Airport", + "latitude_deg": "47.474998474121094", + "longitude_deg": "-97.33370208740234", + "elevation_ft": "975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Mayville", + "scheduled_service": "no", + "gps_code": "KD56", + "local_code": "D56" + }, + { + "id": "19605", + "ident": "KD57", + "type": "small_airport", + "name": "Glen Ullin Regional Airport", + "latitude_deg": "46.812801361083984", + "longitude_deg": "-101.86000061035156", + "elevation_ft": "2089", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Glen Ullin", + "scheduled_service": "no", + "gps_code": "KD57", + "local_code": "D57" + }, + { + "id": "19606", + "ident": "KD60", + "type": "small_airport", + "name": "Tioga Municipal Airport", + "latitude_deg": "48.38050079", + "longitude_deg": "-102.8980026", + "elevation_ft": "2271", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Tioga", + "scheduled_service": "no", + "gps_code": "D60", + "iata_code": "VEX", + "local_code": "D60", + "home_link": "http://www.tiogand.net/index.asp?SEC=D996B72D-EE0E-4AA1-929E-1F5F0C5C46CE&Type=B_BASIC" + }, + { + "id": "19607", + "ident": "KD64", + "type": "small_airport", + "name": "Westhope Municipal Airport", + "latitude_deg": "48.91339874267578", + "longitude_deg": "-101.03299713134766", + "elevation_ft": "1494", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Westhope", + "scheduled_service": "no", + "gps_code": "KD64", + "local_code": "D64" + }, + { + "id": "19608", + "ident": "KD68", + "type": "small_airport", + "name": "Springerville Municipal Airport", + "latitude_deg": "34.131101", + "longitude_deg": "-109.310255", + "elevation_ft": "7055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Springerville", + "scheduled_service": "no", + "gps_code": "KJTC", + "local_code": "JTC", + "home_link": "https://springervilleaz.gov/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Springerville_Municipal_Airport", + "keywords": "D68, Q35, Babbitt Field" + }, + { + "id": "19609", + "ident": "KD73", + "type": "small_airport", + "name": "Monroe Walton County Airport", + "latitude_deg": "33.782398", + "longitude_deg": "-83.692903", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Monroe", + "scheduled_service": "no", + "local_code": "D73" + }, + { + "id": "19610", + "ident": "KD74", + "type": "small_airport", + "name": "Chorman Airport", + "latitude_deg": "38.849672", + "longitude_deg": "-75.61284", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Farmington", + "scheduled_service": "no", + "local_code": "D74", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chorman_Airport", + "keywords": "DE20" + }, + { + "id": "19611", + "ident": "KD83", + "type": "small_airport", + "name": "Boonville Airport", + "latitude_deg": "39.012699127197", + "longitude_deg": "-123.38300323486", + "elevation_ft": "371", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Boonville", + "scheduled_service": "no", + "gps_code": "D83", + "local_code": "D83", + "home_link": "http://www.avcsd.org/airport.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boonville_Airport_(California)", + "keywords": "Q17" + }, + { + "id": "19612", + "ident": "KD86", + "type": "small_airport", + "name": "Sequoia Field", + "latitude_deg": "36.448600769043", + "longitude_deg": "-119.31900024414", + "elevation_ft": "313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Visalia", + "scheduled_service": "no", + "gps_code": "D86", + "local_code": "D86", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sequoia_Field", + "keywords": "Q31" + }, + { + "id": "19613", + "ident": "KD95", + "type": "small_airport", + "name": "Dupont-Lapeer Airport", + "latitude_deg": "43.066600799561", + "longitude_deg": "-83.272300720215", + "elevation_ft": "834", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lapeer", + "scheduled_service": "no", + "gps_code": "D95", + "local_code": "D95", + "home_link": "http://www.mayfieldtownship.com/Airport.html" + }, + { + "id": "19614", + "ident": "KD98", + "type": "small_airport", + "name": "Romeo State Airport", + "latitude_deg": "42.79610062", + "longitude_deg": "-82.97499847", + "elevation_ft": "739", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Romeo", + "scheduled_service": "no", + "gps_code": "D98", + "local_code": "D98", + "home_link": "http://www.michigan.gov/aero/0,4533,7-145-61367-277662--,00.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Romeo_State_Airport" + }, + { + "id": "3477", + "ident": "KDAA", + "type": "medium_airport", + "name": "Davison Army Air Field", + "latitude_deg": "38.715000152600005", + "longitude_deg": "-77.1809997559", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fort Belvoir", + "scheduled_service": "no", + "gps_code": "KDAA", + "iata_code": "DAA", + "local_code": "DAA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Davison_Army_Airfield" + }, + { + "id": "3478", + "ident": "KDAB", + "type": "medium_airport", + "name": "Daytona Beach International Airport", + "latitude_deg": "29.179899", + "longitude_deg": "-81.058098", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Daytona Beach", + "scheduled_service": "yes", + "gps_code": "KDAB", + "iata_code": "DAB", + "local_code": "DAB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Daytona_Beach_International_Airport" + }, + { + "id": "17097", + "ident": "KDAF", + "type": "small_airport", + "name": "Necedah Airport", + "latitude_deg": "44.03340148925781", + "longitude_deg": "-90.08509826660156", + "elevation_ft": "919", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Necedah", + "scheduled_service": "no", + "gps_code": "KDAF", + "local_code": "DAF" + }, + { + "id": "19615", + "ident": "KDAG", + "type": "medium_airport", + "name": "Barstow Daggett Airport", + "latitude_deg": "34.85369873", + "longitude_deg": "-116.7870026", + "elevation_ft": "1930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Daggett", + "scheduled_service": "no", + "gps_code": "KDAG", + "iata_code": "DAG", + "local_code": "DAG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barstow-Daggett_Airport" + }, + { + "id": "3479", + "ident": "KDAL", + "type": "medium_airport", + "name": "Dallas Love Field", + "latitude_deg": "32.847099", + "longitude_deg": "-96.851799", + "elevation_ft": "487", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "yes", + "gps_code": "KDAL", + "iata_code": "DAL", + "local_code": "DAL", + "home_link": "http://www.dallas-lovefield.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dallas_Love_Field", + "keywords": "QDF" + }, + { + "id": "3480", + "ident": "KDAN", + "type": "medium_airport", + "name": "Danville Regional Airport", + "latitude_deg": "36.572899", + "longitude_deg": "-79.336098", + "elevation_ft": "571", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "KDAN", + "iata_code": "DAN", + "local_code": "DAN" + }, + { + "id": "19616", + "ident": "KDAW", + "type": "small_airport", + "name": "Skyhaven Airport", + "latitude_deg": "43.28409957885742", + "longitude_deg": "-70.9292984008789", + "elevation_ft": "322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Rochester", + "scheduled_service": "no", + "gps_code": "KDAW", + "local_code": "DAW" + }, + { + "id": "3481", + "ident": "KDAY", + "type": "medium_airport", + "name": "James M Cox Dayton International Airport", + "latitude_deg": "39.902401", + "longitude_deg": "-84.219398", + "elevation_ft": "1009", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dayton", + "scheduled_service": "yes", + "gps_code": "KDAY", + "iata_code": "DAY", + "local_code": "DAY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dayton_International_Airport" + }, + { + "id": "19617", + "ident": "KDBN", + "type": "small_airport", + "name": "W H 'Bud' Barron Airport", + "latitude_deg": "32.5644", + "longitude_deg": "-82.985298", + "elevation_ft": "309", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Dublin", + "scheduled_service": "no", + "gps_code": "KDBN", + "iata_code": "DBN", + "local_code": "DBN", + "wikipedia_link": "https://en.wikipedia.org/wiki/W._H._'Bud'_Barron_Airport", + "keywords": "Baron Field Dublin Municipal Airport" + }, + { + "id": "3482", + "ident": "KDBQ", + "type": "medium_airport", + "name": "Dubuque Regional Airport", + "latitude_deg": "42.402", + "longitude_deg": "-90.709503", + "elevation_ft": "1077", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Dubuque", + "scheduled_service": "yes", + "gps_code": "KDBQ", + "iata_code": "DBQ", + "local_code": "DBQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dubuque_Regional_Airport" + }, + { + "id": "3483", + "ident": "KDCA", + "type": "large_airport", + "name": "Ronald Reagan Washington National Airport", + "latitude_deg": "38.8521", + "longitude_deg": "-77.037697", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DC", + "municipality": "Washington", + "scheduled_service": "yes", + "gps_code": "KDCA", + "iata_code": "DCA", + "local_code": "DCA", + "home_link": "http://www.flyreagan.com/dca/reagan-national-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ronald_Reagan_Washington_National_Airport", + "keywords": "WAS" + }, + { + "id": "19178", + "ident": "KDCM", + "type": "small_airport", + "name": "Chester Catawba Regional Airport", + "latitude_deg": "34.78929901123047", + "longitude_deg": "-81.19580078125", + "elevation_ft": "656", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Chester", + "scheduled_service": "no", + "gps_code": "KDCM", + "local_code": "DCM", + "keywords": "Formerly 9A6" + }, + { + "id": "19618", + "ident": "KDCU", + "type": "small_airport", + "name": "Pryor Field Regional Airport", + "latitude_deg": "34.652698516799994", + "longitude_deg": "-86.94539642330001", + "elevation_ft": "592", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Decatur", + "scheduled_service": "no", + "gps_code": "KDCU", + "iata_code": "DCU", + "local_code": "DCU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pryor_Field_Regional_Airport" + }, + { + "id": "19619", + "ident": "KDCY", + "type": "small_airport", + "name": "Daviess County Airport", + "latitude_deg": "38.700401306152344", + "longitude_deg": "-87.12969970703125", + "elevation_ft": "473", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "KDCY", + "local_code": "DCY" + }, + { + "id": "3484", + "ident": "KDDC", + "type": "medium_airport", + "name": "Dodge City Regional Airport", + "latitude_deg": "37.76340103149414", + "longitude_deg": "-99.9655990600586", + "elevation_ft": "2594", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Dodge City", + "scheduled_service": "yes", + "gps_code": "KDDC", + "iata_code": "DDC", + "local_code": "DDC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dodge_City_Regional_Airport" + }, + { + "id": "19620", + "ident": "KDDH", + "type": "small_airport", + "name": "William H. Morse State Airport", + "latitude_deg": "42.8913002", + "longitude_deg": "-73.24639893", + "elevation_ft": "827", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Bennington", + "scheduled_service": "no", + "gps_code": "KDDH", + "local_code": "DDH" + }, + { + "id": "3485", + "ident": "KDEC", + "type": "medium_airport", + "name": "Decatur Airport", + "latitude_deg": "39.834598541259766", + "longitude_deg": "-88.8656997680664", + "elevation_ft": "682", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Decatur", + "scheduled_service": "yes", + "gps_code": "KDEC", + "iata_code": "DEC", + "local_code": "DEC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Decatur_Airport" + }, + { + "id": "19621", + "ident": "KDED", + "type": "small_airport", + "name": "Deland Municipal Sidney H Taylor Field", + "latitude_deg": "29.06699944", + "longitude_deg": "-81.28379822", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Deland", + "scheduled_service": "no", + "gps_code": "KDED", + "local_code": "DED" + }, + { + "id": "19622", + "ident": "KDEH", + "type": "small_airport", + "name": "Decorah Municipal Airport", + "latitude_deg": "43.275501", + "longitude_deg": "-91.739403", + "elevation_ft": "1158", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Decorah", + "scheduled_service": "no", + "gps_code": "KDEH", + "iata_code": "DEH", + "local_code": "DEH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Decorah_Municipal_Airport" + }, + { + "id": "3486", + "ident": "KDEN", + "type": "large_airport", + "name": "Denver International Airport", + "latitude_deg": "39.861698150635", + "longitude_deg": "-104.672996521", + "elevation_ft": "5431", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "yes", + "gps_code": "KDEN", + "iata_code": "DEN", + "local_code": "DEN", + "home_link": "http://www.flydenver.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Denver_International_Airport", + "keywords": "DVX, KVDX" + }, + { + "id": "19623", + "ident": "KDEQ", + "type": "small_airport", + "name": "J Lynn Helms Sevier County Airport", + "latitude_deg": "34.047001", + "longitude_deg": "-94.399399", + "elevation_ft": "355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "DeQueen", + "scheduled_service": "no", + "gps_code": "KDEQ", + "local_code": "DEQ", + "home_link": "https://www.dequeenchamberofcommerce.net/sevier-county-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/J._Lynn_Helms_Sevier_County_Airport", + "keywords": "F90" + }, + { + "id": "3487", + "ident": "KDET", + "type": "medium_airport", + "name": "Coleman A. Young Municipal Airport", + "latitude_deg": "42.40919876", + "longitude_deg": "-83.00990295", + "elevation_ft": "626", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Detroit", + "scheduled_service": "no", + "gps_code": "KDET", + "iata_code": "DET", + "local_code": "DET", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coleman_A._Young_International_Airport" + }, + { + "id": "19624", + "ident": "KDEW", + "type": "small_airport", + "name": "Deer Park Airport", + "latitude_deg": "47.96659851", + "longitude_deg": "-117.427002", + "elevation_ft": "2211", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Deer Park", + "scheduled_service": "no", + "gps_code": "KDEW", + "local_code": "DEW" + }, + { + "id": "19625", + "ident": "KDFI", + "type": "small_airport", + "name": "Defiance Memorial Airport", + "latitude_deg": "41.3375015259", + "longitude_deg": "-84.4288024902", + "elevation_ft": "707", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Defiance", + "scheduled_service": "no", + "gps_code": "KDFI", + "iata_code": "DFI", + "local_code": "DFI", + "home_link": "http://www.defiance-county.com/airport/index.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Defiance_Memorial_Airport" + }, + { + "id": "3488", + "ident": "KDFW", + "type": "large_airport", + "name": "Dallas Fort Worth International Airport", + "latitude_deg": "32.896801", + "longitude_deg": "-97.038002", + "elevation_ft": "607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas-Fort Worth", + "scheduled_service": "yes", + "gps_code": "KDFW", + "iata_code": "DFW", + "local_code": "DFW", + "home_link": "https://www.dfwairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dallas/Fort_Worth_International_Airport", + "keywords": "QDF" + }, + { + "id": "19626", + "ident": "KDGL", + "type": "small_airport", + "name": "Douglas Municipal Airport", + "latitude_deg": "31.3425998688", + "longitude_deg": "-109.505996704", + "elevation_ft": "4173", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Douglas", + "scheduled_service": "no", + "gps_code": "KDGL", + "iata_code": "DGL", + "local_code": "DGL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Douglas_Municipal_Airport_(Arizona)" + }, + { + "id": "19627", + "ident": "KDGW", + "type": "small_airport", + "name": "Converse County Airport", + "latitude_deg": "42.79719925", + "longitude_deg": "-105.3860016", + "elevation_ft": "4933", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Douglas", + "scheduled_service": "no", + "gps_code": "KDGW", + "iata_code": "DGW", + "local_code": "DGW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Converse_County_Airport" + }, + { + "id": "3489", + "ident": "KDHN", + "type": "medium_airport", + "name": "Dothan Regional Airport", + "latitude_deg": "31.321300506591797", + "longitude_deg": "-85.44960021972656", + "elevation_ft": "401", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Dothan", + "scheduled_service": "yes", + "gps_code": "KDHN", + "iata_code": "DHN", + "local_code": "DHN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dothan_Regional_Airport" + }, + { + "id": "19628", + "ident": "KDHT", + "type": "medium_airport", + "name": "Dalhart Municipal Airport", + "latitude_deg": "36.0225982666", + "longitude_deg": "-102.54699707", + "elevation_ft": "3991", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dalhart", + "scheduled_service": "no", + "gps_code": "KDHT", + "iata_code": "DHT", + "local_code": "DHT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dalhart_Municipal_Airport" + }, + { + "id": "19629", + "ident": "KDIJ", + "type": "small_airport", + "name": "Driggs Reed Memorial Airport", + "latitude_deg": "43.742401", + "longitude_deg": "-111.098", + "elevation_ft": "6229", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Driggs", + "scheduled_service": "no", + "gps_code": "KDIJ", + "local_code": "DIJ", + "keywords": "U59" + }, + { + "id": "19630", + "ident": "KDIK", + "type": "medium_airport", + "name": "Dickinson Theodore Roosevelt Regional Airport", + "latitude_deg": "46.7974014282", + "longitude_deg": "-102.802001953", + "elevation_ft": "2592", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Dickinson", + "scheduled_service": "no", + "gps_code": "KDIK", + "iata_code": "DIK", + "local_code": "DIK", + "home_link": "http://dickinsonairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dickinson_Theodore_Roosevelt_Regional_Airport" + }, + { + "id": "19632", + "ident": "KDKB", + "type": "small_airport", + "name": "DeKalb Taylor Municipal Airport", + "latitude_deg": "41.936316", + "longitude_deg": "-88.704128", + "elevation_ft": "914", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "DeKalb", + "scheduled_service": "no", + "gps_code": "KDKB", + "local_code": "DKB" + }, + { + "id": "19633", + "ident": "KDKK", + "type": "small_airport", + "name": "Chautauqua County-Dunkirk Airport", + "latitude_deg": "42.49247", + "longitude_deg": "-79.273102", + "elevation_ft": "693", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Dunkirk", + "scheduled_service": "no", + "gps_code": "KDKK", + "iata_code": "DKK", + "local_code": "DKK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chautauqua_County/Dunkirk_Airport", + "keywords": "John J. Nalbone Field" + }, + { + "id": "19634", + "ident": "KDKR", + "type": "small_airport", + "name": "Houston County Airport", + "latitude_deg": "31.306999", + "longitude_deg": "-95.403801", + "elevation_ft": "348", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crockett", + "scheduled_service": "no", + "gps_code": "KDKR", + "local_code": "DKR", + "keywords": "T56" + }, + { + "id": "19635", + "ident": "KDKX", + "type": "small_airport", + "name": "Knoxville Downtown Island Airport", + "latitude_deg": "35.963902", + "longitude_deg": "-83.873901", + "elevation_ft": "833", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Knoxville", + "scheduled_service": "no", + "gps_code": "KDKX", + "local_code": "DKX" + }, + { + "id": "19636", + "ident": "KDLC", + "type": "small_airport", + "name": "Dillon County Airport", + "latitude_deg": "34.4491004944", + "longitude_deg": "-79.368598938", + "elevation_ft": "133", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Dillon", + "scheduled_service": "no", + "gps_code": "KDLC", + "iata_code": "DLL", + "local_code": "DLC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dillon_County_Airport" + }, + { + "id": "3490", + "ident": "KDLF", + "type": "medium_airport", + "name": "Laughlin Air Force Base", + "latitude_deg": "29.359501", + "longitude_deg": "-100.778002", + "elevation_ft": "1082", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no", + "gps_code": "KDLF", + "iata_code": "DLF", + "local_code": "DLF", + "home_link": "http://www.laughlin.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Laughlin_Air_Force_Base", + "keywords": "Laughlin AFB, Laughlin Field, DLF Airport" + }, + { + "id": "3491", + "ident": "KDLH", + "type": "medium_airport", + "name": "Duluth International Airport", + "latitude_deg": "46.842098", + "longitude_deg": "-92.193604", + "elevation_ft": "1428", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Duluth", + "scheduled_service": "yes", + "gps_code": "KDLH", + "iata_code": "DLH", + "local_code": "DLH", + "home_link": "http://www.duluthairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Duluth_International_Airport", + "keywords": "LKI, Duluth Air National Guard Base, Lakeside AFB" + }, + { + "id": "19637", + "ident": "KDLL", + "type": "small_airport", + "name": "Baraboo Wisconsin Dells Regional Airport", + "latitude_deg": "43.522701", + "longitude_deg": "-89.770203", + "elevation_ft": "979", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Baraboo", + "scheduled_service": "no", + "gps_code": "KDLL", + "local_code": "DLL" + }, + { + "id": "19638", + "ident": "KDLN", + "type": "small_airport", + "name": "Dillon Airport", + "latitude_deg": "45.255401611299995", + "longitude_deg": "-112.553001404", + "elevation_ft": "5241", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Dillon", + "scheduled_service": "no", + "gps_code": "KDLN", + "iata_code": "DLN", + "local_code": "DLN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dillon_Airport" + }, + { + "id": "19639", + "ident": "KDLO", + "type": "small_airport", + "name": "Delano Municipal Airport", + "latitude_deg": "35.745601654052734", + "longitude_deg": "-119.23699951171875", + "elevation_ft": "314", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Delano", + "scheduled_service": "no", + "gps_code": "KDLO", + "local_code": "DLO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Delano_Municipal_Airport" + }, + { + "id": "19640", + "ident": "KDLS", + "type": "medium_airport", + "name": "Columbia Gorge Regional Airport", + "latitude_deg": "45.620979", + "longitude_deg": "-121.170777", + "elevation_ft": "247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Dallesport / The Dalles", + "scheduled_service": "no", + "gps_code": "KDLS", + "iata_code": "DLS", + "local_code": "DLS", + "home_link": "http://www.columbiagorgeairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Columbia_Gorge_Regional_Airport", + "keywords": "The Dalles Municipal Airport" + }, + { + "id": "19641", + "ident": "KDLZ", + "type": "small_airport", + "name": "Delaware Municipal Airport", + "latitude_deg": "40.279701232910156", + "longitude_deg": "-83.11479949951172", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Delaware", + "scheduled_service": "no", + "gps_code": "KDLZ", + "local_code": "DLZ" + }, + { + "id": "3492", + "ident": "KDMA", + "type": "medium_airport", + "name": "Davis Monthan Air Force Base", + "latitude_deg": "32.1665000916", + "longitude_deg": "-110.883003235", + "elevation_ft": "2704", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no", + "gps_code": "KDMA", + "iata_code": "DMA", + "local_code": "DMA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Davis-Monthan_Air_Force_Base" + }, + { + "id": "3493", + "ident": "KDMN", + "type": "medium_airport", + "name": "Deming Municipal Airport", + "latitude_deg": "32.262298584", + "longitude_deg": "-107.721000671", + "elevation_ft": "4314", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Deming", + "scheduled_service": "no", + "gps_code": "KDMN", + "iata_code": "DMN", + "local_code": "DMN", + "home_link": "http://www.cityofdeming.org/deming-community/municipal-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Deming_Municipal_Airport" + }, + { + "id": "19642", + "ident": "KDMO", + "type": "small_airport", + "name": "Sedalia Memorial Airport", + "latitude_deg": "38.70740127559999", + "longitude_deg": "-93.17590332030001", + "elevation_ft": "909", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Sedalia", + "scheduled_service": "no", + "gps_code": "KDMO", + "iata_code": "DMO", + "local_code": "DMO", + "home_link": "http://ci.sedalia.mo.us/content/198/224/default.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sedalia_Regional_Airport" + }, + { + "id": "19643", + "ident": "KDMW", + "type": "small_airport", + "name": "Carroll County Regional Jack B Poage Field", + "latitude_deg": "39.60829926", + "longitude_deg": "-77.00769806", + "elevation_ft": "789", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Westminster", + "scheduled_service": "no", + "gps_code": "KDMW", + "local_code": "DMW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carroll_County_Regional_Airport" + }, + { + "id": "19644", + "ident": "KDNL", + "type": "medium_airport", + "name": "Daniel Field", + "latitude_deg": "33.4664993286", + "longitude_deg": "-82.0393981934", + "elevation_ft": "423", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Augusta", + "scheduled_service": "no", + "gps_code": "KDNL", + "iata_code": "DNL", + "local_code": "DNL", + "home_link": "http://www.augustaga.gov/index.aspx?NID=486", + "wikipedia_link": "https://en.wikipedia.org/wiki/Daniel_Field" + }, + { + "id": "19645", + "ident": "KDNN", + "type": "small_airport", + "name": "Dalton Municipal Airport", + "latitude_deg": "34.72290039", + "longitude_deg": "-84.87020111", + "elevation_ft": "709", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Dalton", + "scheduled_service": "no", + "gps_code": "KDNN", + "iata_code": "DNN", + "local_code": "DNN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dalton_Municipal_Airport" + }, + { + "id": "19646", + "ident": "KDNS", + "type": "small_airport", + "name": "Denison Municipal Airport", + "latitude_deg": "41.9864006", + "longitude_deg": "-95.38069916", + "elevation_ft": "1274", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Denison", + "scheduled_service": "no", + "gps_code": "KDNS", + "iata_code": "DNS", + "local_code": "DNS", + "home_link": "http://www.denisonia.com/community/airport.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Denison_Municipal_Airport" + }, + { + "id": "19647", + "ident": "KDNV", + "type": "small_airport", + "name": "Vermilion Regional Airport", + "latitude_deg": "40.199124", + "longitude_deg": "-87.59663", + "elevation_ft": "697", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "KDNV", + "iata_code": "DNV", + "local_code": "DNV", + "home_link": "http://vrairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vermilion_Regional_Airport", + "keywords": "Vermilion County Airport" + }, + { + "id": "3494", + "ident": "KDOV", + "type": "medium_airport", + "name": "Dover Air Force Base", + "latitude_deg": "39.129501", + "longitude_deg": "-75.466003", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Dover", + "scheduled_service": "no", + "gps_code": "KDOV", + "iata_code": "DOV", + "local_code": "DOV", + "home_link": "http://www.dover.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dover_Air_Force_Base", + "keywords": "Municipal Airport - Dover Airdrome, Dover Army Airbase, Dover Army Airfield" + }, + { + "id": "307562", + "ident": "KDP", + "type": "small_airport", + "name": "Kandep Airport", + "latitude_deg": "-5.84061111111", + "longitude_deg": "143.507222222", + "elevation_ft": "7710", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EPW", + "municipality": "Kandep", + "scheduled_service": "no", + "gps_code": "AYNN", + "iata_code": "KDP", + "local_code": "KDP" + }, + { + "id": "19648", + "ident": "KDPA", + "type": "medium_airport", + "name": "Dupage Airport", + "latitude_deg": "41.90779877", + "longitude_deg": "-88.24859619", + "elevation_ft": "759", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago/West Chicago", + "scheduled_service": "no", + "gps_code": "KDPA", + "iata_code": "DPA", + "local_code": "DPA", + "home_link": "http://www.dupageairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/DuPage_Airport" + }, + { + "id": "19649", + "ident": "KDPG", + "type": "small_airport", + "name": "Michael AAF (Dugway Proving Ground) Airport", + "latitude_deg": "40.19940186", + "longitude_deg": "-112.9369965", + "elevation_ft": "4349", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Dugway Proving Ground", + "scheduled_service": "no", + "gps_code": "KDPG", + "iata_code": "DPG", + "local_code": "DPG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Michael_Army_Airfield" + }, + { + "id": "19650", + "ident": "KDPL", + "type": "small_airport", + "name": "Duplin County Airport", + "latitude_deg": "35.00009918", + "longitude_deg": "-77.98169708", + "elevation_ft": "136", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Kenansville", + "scheduled_service": "no", + "gps_code": "KDPL", + "local_code": "DPL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Duplin_County_Airport" + }, + { + "id": "308208", + "ident": "KDQ", + "type": "small_airport", + "name": "Kamberatoro Airport", + "latitude_deg": "-3.600556", + "longitude_deg": "141.051667", + "elevation_ft": "1350", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Kamberatoro Mission", + "scheduled_service": "no", + "gps_code": "AYTO", + "iata_code": "KDQ", + "local_code": "KTO" + }, + { + "id": "19651", + "ident": "KDQH", + "type": "small_airport", + "name": "Douglas Municipal Gene Chambers Airport", + "latitude_deg": "31.4767", + "longitude_deg": "-82.860497", + "elevation_ft": "257", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Douglas", + "scheduled_service": "no", + "gps_code": "KDQH", + "local_code": "DQH" + }, + { + "id": "19652", + "ident": "KDRA", + "type": "medium_airport", + "name": "Desert Rock Airport", + "latitude_deg": "36.6194", + "longitude_deg": "-116.032997", + "elevation_ft": "3314", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Mercury", + "scheduled_service": "no", + "gps_code": "KDRA", + "iata_code": "DRA", + "local_code": "NV65", + "wikipedia_link": "https://en.wikipedia.org/wiki/Desert_Rock_Airport", + "keywords": "Formerly DRA" + }, + { + "id": "3495", + "ident": "KDRI", + "type": "medium_airport", + "name": "Beauregard Regional Airport", + "latitude_deg": "30.831699", + "longitude_deg": "-93.339897", + "elevation_ft": "202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "DeRidder", + "scheduled_service": "no", + "gps_code": "KDRI", + "iata_code": "DRI", + "local_code": "DRI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beauregard_Regional_Airport", + "keywords": "Beauregard Parish, DeRidder Army Air Base" + }, + { + "id": "19653", + "ident": "KDRM", + "type": "small_airport", + "name": "Drummond Island Airport", + "latitude_deg": "46.0093002319", + "longitude_deg": "-83.74389648440001", + "elevation_ft": "668", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Drummond Island", + "scheduled_service": "no", + "gps_code": "KDRM", + "iata_code": "DRE", + "local_code": "DRM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Drummond_Island_Airport" + }, + { + "id": "19654", + "ident": "KDRO", + "type": "small_airport", + "name": "Durango La Plata County Airport", + "latitude_deg": "37.1515007019", + "longitude_deg": "-107.753997803", + "elevation_ft": "6685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Durango", + "scheduled_service": "no", + "gps_code": "KDRO", + "iata_code": "DRO", + "local_code": "DRO", + "home_link": "http://www.durangogov.org/airport/index.cfm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Durango-La_Plata_County_Airport" + }, + { + "id": "318198", + "ident": "KDRP", + "type": "small_airport", + "name": "Delta Regional Airport", + "latitude_deg": "35.1200556", + "longitude_deg": "-90.8265", + "elevation_ft": "239", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Colt", + "scheduled_service": "no", + "gps_code": "KDRP", + "local_code": "DRP" + }, + { + "id": "19655", + "ident": "KDRT", + "type": "medium_airport", + "name": "Del Rio International Airport", + "latitude_deg": "29.3742008209", + "longitude_deg": "-100.927001953", + "elevation_ft": "1002", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no", + "gps_code": "KDRT", + "iata_code": "DRT", + "local_code": "DRT", + "home_link": "http://www.cityofdelrio.com/index.aspx?NID=412", + "wikipedia_link": "https://en.wikipedia.org/wiki/Del_Rio_International_Airport" + }, + { + "id": "313408", + "ident": "KDS", + "type": "small_airport", + "name": "Kamaran Downs Airport", + "latitude_deg": "-24.3388", + "longitude_deg": "139.2785", + "elevation_ft": "322", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Kamaran Downs", + "scheduled_service": "no", + "iata_code": "KDS" + }, + { + "id": "3496", + "ident": "KDSM", + "type": "medium_airport", + "name": "Des Moines International Airport", + "latitude_deg": "41.534", + "longitude_deg": "-93.663101", + "elevation_ft": "958", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Des Moines", + "scheduled_service": "yes", + "gps_code": "KDSM", + "iata_code": "DSM", + "local_code": "DSM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Des_Moines_International_Airport" + }, + { + "id": "19656", + "ident": "KDSV", + "type": "small_airport", + "name": "Dansville Municipal Airport", + "latitude_deg": "42.570545", + "longitude_deg": "-77.713273", + "elevation_ft": "662", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Dansville", + "scheduled_service": "no", + "gps_code": "KDSV", + "iata_code": "DSV", + "local_code": "DSV", + "home_link": "https://dansvillelibrary.org/community/dansville-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dansville_Municipal_Airport" + }, + { + "id": "19657", + "ident": "KDTA", + "type": "small_airport", + "name": "Delta Municipal Airport", + "latitude_deg": "39.3805999756", + "longitude_deg": "-112.508003235", + "elevation_ft": "4759", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Delta", + "scheduled_service": "no", + "gps_code": "KDTA", + "iata_code": "DTA", + "local_code": "DTA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Delta_Municipal_Airport" + }, + { + "id": "19658", + "ident": "KDTL", + "type": "small_airport", + "name": "Detroit Lakes Airport - Wething Field", + "latitude_deg": "46.82519913", + "longitude_deg": "-95.88569641", + "elevation_ft": "1397", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Detroit Lakes", + "scheduled_service": "no", + "gps_code": "KDTL", + "iata_code": "DTL", + "local_code": "DTL", + "home_link": "http://www.detroitlakesaviation.com/index.php?mod=homepage&Page=1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Detroit_Lakes_Airport" + }, + { + "id": "19659", + "ident": "KDTN", + "type": "small_airport", + "name": "Shreveport Downtown Airport", + "latitude_deg": "32.5401992798", + "longitude_deg": "-93.7450027466", + "elevation_ft": "179", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Shreveport", + "scheduled_service": "no", + "gps_code": "KDTN", + "iata_code": "DTN", + "local_code": "DTN", + "home_link": "http://www.shreveportla.gov/airport/dtnairport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shreveport_Downtown_Airport" + }, + { + "id": "19660", + "ident": "KDTO", + "type": "small_airport", + "name": "Denton Municipal Airport", + "latitude_deg": "33.2006988525", + "longitude_deg": "-97.19799804690001", + "elevation_ft": "642", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Denton", + "scheduled_service": "no", + "gps_code": "KDTO", + "local_code": "DTO", + "home_link": "http://www.cityofdenton.com/index.aspx?page=451" + }, + { + "id": "19661", + "ident": "KDTS", + "type": "small_airport", + "name": "Destin Executive Airport", + "latitude_deg": "30.40010071", + "longitude_deg": "-86.47149658", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Destin", + "scheduled_service": "no", + "gps_code": "KDTS", + "iata_code": "DSI", + "local_code": "DTS", + "home_link": "http://www.flydts.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Destin-Fort_Walton_Beach_Airport", + "keywords": "81J, Destin-Fort Walton Beach Airport" + }, + { + "id": "3497", + "ident": "KDTW", + "type": "large_airport", + "name": "Detroit Metropolitan Wayne County Airport", + "latitude_deg": "42.212398529052734", + "longitude_deg": "-83.35340118408203", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Detroit", + "scheduled_service": "yes", + "gps_code": "KDTW", + "iata_code": "DTW", + "local_code": "DTW", + "home_link": "http://www.metroairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Detroit_Metropolitan_Wayne_County_Airport", + "keywords": "DTT, Detroit Metro Airport" + }, + { + "id": "19662", + "ident": "KDUA", + "type": "small_airport", + "name": "Durant Regional Airport - Eaker Field", + "latitude_deg": "33.942299", + "longitude_deg": "-96.395057", + "elevation_ft": "699", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Durant", + "scheduled_service": "no", + "gps_code": "KDUA", + "iata_code": "DUA", + "local_code": "DUA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Durant_Regional_Airport_%E2%80%93_Eaker_Field" + }, + { + "id": "19663", + "ident": "KDUC", + "type": "small_airport", + "name": "Halliburton Field", + "latitude_deg": "34.47090149", + "longitude_deg": "-97.9598999", + "elevation_ft": "1114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Duncan", + "scheduled_service": "no", + "gps_code": "KDUC", + "iata_code": "DUC", + "local_code": "DUC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Halliburton_Field_(airport)" + }, + { + "id": "19664", + "ident": "KDUG", + "type": "medium_airport", + "name": "Bisbee Douglas International Airport", + "latitude_deg": "31.4689998627", + "longitude_deg": "-109.603996277", + "elevation_ft": "4154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Douglas Bisbee", + "scheduled_service": "no", + "gps_code": "KDUG", + "iata_code": "DUG", + "local_code": "DUG", + "home_link": "http://www.azdot.gov/mpd/airport_development/airports/airports_list.asp?FAA=DUG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bisbee-Douglas_International_Airport" + }, + { + "id": "19665", + "ident": "KDUH", + "type": "small_airport", + "name": "Toledo Suburban Airport", + "latitude_deg": "41.73590087890625", + "longitude_deg": "-83.65540313720703", + "elevation_ft": "669", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lambertville", + "scheduled_service": "no", + "gps_code": "KDUH", + "local_code": "DUH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toledo_Suburban_Airport" + }, + { + "id": "3498", + "ident": "KDUJ", + "type": "medium_airport", + "name": "DuBois Regional Airport", + "latitude_deg": "41.17829895", + "longitude_deg": "-78.8986969", + "elevation_ft": "1817", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Dubois", + "scheduled_service": "yes", + "gps_code": "KDUJ", + "iata_code": "DUJ", + "local_code": "DUJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/DuBois_Regional_Airport", + "keywords": "DuBois Jefferson County" + }, + { + "id": "19666", + "ident": "KDUX", + "type": "small_airport", + "name": "Moore County Airport", + "latitude_deg": "35.8578987121582", + "longitude_deg": "-102.01300048828125", + "elevation_ft": "3705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dumas", + "scheduled_service": "no", + "gps_code": "KDUX", + "local_code": "DUX" + }, + { + "id": "19667", + "ident": "KDVK", + "type": "small_airport", + "name": "Stuart Powell Field", + "latitude_deg": "37.579409", + "longitude_deg": "-84.774347", + "elevation_ft": "1022", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "KDVK", + "local_code": "DVK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stuart_Powell_Field" + }, + { + "id": "19668", + "ident": "KDVL", + "type": "small_airport", + "name": "Devils Lake Regional Airport", + "latitude_deg": "48.11420059", + "longitude_deg": "-98.90879822", + "elevation_ft": "1456", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Devils Lake", + "scheduled_service": "no", + "gps_code": "KDVL", + "iata_code": "DVL", + "local_code": "DVL", + "home_link": "http://www.devilslakeairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Devils_Lake_Regional_Airport" + }, + { + "id": "19669", + "ident": "KDVN", + "type": "small_airport", + "name": "Davenport Municipal Airport", + "latitude_deg": "41.610432", + "longitude_deg": "-90.589693", + "elevation_ft": "751", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Davenport", + "scheduled_service": "no", + "gps_code": "KDVN", + "iata_code": "DVN", + "local_code": "DVN", + "home_link": "http://www.cityofdavenportiowa.com/department/?fDD=47-0", + "wikipedia_link": "https://en.wikipedia.org/wiki/Davenport_Municipal_Airport_(Iowa)" + }, + { + "id": "19670", + "ident": "KDVO", + "type": "small_airport", + "name": "Marin County Airport - Gnoss Field", + "latitude_deg": "38.143600463867", + "longitude_deg": "-122.55599975586", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Novato", + "scheduled_service": "no", + "gps_code": "KDVO", + "iata_code": "NOT", + "local_code": "DVO", + "home_link": "http://www.marincounty.org/depts/pw/divisions/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marin_County_Airport", + "keywords": "O56" + }, + { + "id": "19671", + "ident": "KDVP", + "type": "small_airport", + "name": "Slayton Municipal Airport", + "latitude_deg": "43.986801147461", + "longitude_deg": "-95.782600402832", + "elevation_ft": "1623", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Slayton", + "scheduled_service": "no", + "gps_code": "KDVP", + "iata_code": "NSL", + "local_code": "DVP", + "home_link": "http://www.slayton.govoffice.com/index.asp?SEC=5E59296F-B088-43BB-80E9-EC7A9653571B&Type=B_BASIC", + "keywords": "60Y" + }, + { + "id": "19672", + "ident": "KDVT", + "type": "small_airport", + "name": "Phoenix Deer Valley Airport", + "latitude_deg": "33.6883010864", + "longitude_deg": "-112.083000183", + "elevation_ft": "1478", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "KDVT", + "iata_code": "DVT", + "local_code": "DVT", + "home_link": "http://deervalleyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Phoenix_Deer_Valley_Airport" + }, + { + "id": "313409", + "ident": "KDW", + "type": "seaplane_base", + "name": "Victoria Reservoir Seaplane Base", + "latitude_deg": "7.2415", + "longitude_deg": "80.7834", + "elevation_ft": "1402", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-2", + "municipality": "Kandy", + "scheduled_service": "no", + "iata_code": "KDW" + }, + { + "id": "18612", + "ident": "KDWA", + "type": "small_airport", + "name": "Yolo County Davis Woodland Winters Airport", + "latitude_deg": "38.57910156", + "longitude_deg": "-121.8570023", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Davis/Woodland/Winters", + "scheduled_service": "no", + "gps_code": "KDWA", + "local_code": "DWA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yolo_County_Airport", + "keywords": "Formerly 2Q3" + }, + { + "id": "302474", + "ident": "KDWF", + "type": "closed", + "name": "Wright Field", + "latitude_deg": "39.78", + "longitude_deg": "-84.10444444439999", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dayton", + "scheduled_service": "no", + "gps_code": "KDWF", + "iata_code": "DWF", + "local_code": "DWF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wright_Field", + "keywords": "Wright AFB" + }, + { + "id": "19673", + "ident": "KDWH", + "type": "small_airport", + "name": "David Wayne Hooks Memorial Airport", + "latitude_deg": "30.0618000031", + "longitude_deg": "-95.55280303960001", + "elevation_ft": "152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "KDWH", + "iata_code": "DWH", + "local_code": "DWH", + "home_link": "http://www.hooksairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/David_Wayne_Hooks_Memorial_Airport" + }, + { + "id": "19674", + "ident": "KDWU", + "type": "small_airport", + "name": "Ashland Regional Airport", + "latitude_deg": "38.554500579833984", + "longitude_deg": "-82.73799896240234", + "elevation_ft": "546", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "KDWU", + "local_code": "DWU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ashland_Regional_Airport" + }, + { + "id": "19675", + "ident": "KDXE", + "type": "small_airport", + "name": "Dexter Municipal Airport", + "latitude_deg": "36.77750015", + "longitude_deg": "-89.94120026", + "elevation_ft": "304", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Dexter", + "scheduled_service": "no", + "gps_code": "KDXE", + "local_code": "DXE" + }, + { + "id": "19676", + "ident": "KDXR", + "type": "small_airport", + "name": "Danbury Municipal Airport", + "latitude_deg": "41.371498107899995", + "longitude_deg": "-73.48220062259999", + "elevation_ft": "458", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Danbury", + "scheduled_service": "no", + "gps_code": "KDXR", + "iata_code": "DXR", + "local_code": "DXR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Danbury_Municipal_Airport" + }, + { + "id": "19677", + "ident": "KDXX", + "type": "small_airport", + "name": "Lac Qui Parle County Airport", + "latitude_deg": "44.98619842529297", + "longitude_deg": "-96.17769622802734", + "elevation_ft": "1082", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "KDXX", + "local_code": "DXX" + }, + { + "id": "19045", + "ident": "KDYA", + "type": "small_airport", + "name": "Demopolis Municipal Airport", + "latitude_deg": "32.46379852294922", + "longitude_deg": "-87.9541015625", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Demopolis", + "scheduled_service": "no", + "gps_code": "KDYA", + "local_code": "DYA", + "keywords": "Formerly 7A2" + }, + { + "id": "19678", + "ident": "KDYB", + "type": "small_airport", + "name": "Summerville Airport", + "latitude_deg": "33.0634", + "longitude_deg": "-80.279297", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Summerville", + "scheduled_service": "no", + "gps_code": "KDYB", + "local_code": "DYB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Summerville_Airport" + }, + { + "id": "19679", + "ident": "KDYL", + "type": "small_airport", + "name": "Doylestown Airport", + "latitude_deg": "40.3330001831", + "longitude_deg": "-75.1222991943", + "elevation_ft": "394", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Doylestown", + "scheduled_service": "no", + "gps_code": "KDYL", + "iata_code": "DYL", + "local_code": "DYL", + "home_link": "http://www.doylestownairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Doylestown_Airport", + "keywords": "N88" + }, + { + "id": "19680", + "ident": "KDYR", + "type": "small_airport", + "name": "Dyersburg Regional Airport", + "latitude_deg": "35.999158", + "longitude_deg": "-89.404898", + "elevation_ft": "338", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Dyersburg", + "scheduled_service": "no", + "gps_code": "KDYR", + "local_code": "DYR" + }, + { + "id": "3499", + "ident": "KDYS", + "type": "medium_airport", + "name": "Dyess Air Force Base", + "latitude_deg": "32.420799", + "longitude_deg": "-99.854599", + "elevation_ft": "1789", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Abilene", + "scheduled_service": "no", + "gps_code": "KDYS", + "iata_code": "DYS", + "local_code": "DYS", + "home_link": "http://www.dyess.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dyess_Air_Force_Base" + }, + { + "id": "19681", + "ident": "KDYT", + "type": "small_airport", + "name": "Sky Harbor Airport", + "latitude_deg": "46.721900939941406", + "longitude_deg": "-92.04340362548828", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Duluth", + "scheduled_service": "no", + "gps_code": "KDYT", + "local_code": "DYT" + }, + { + "id": "313410", + "ident": "KDZ", + "type": "seaplane_base", + "name": "Polgolla Reservoir Seaplane Base", + "latitude_deg": "7.3251", + "longitude_deg": "80.6422", + "elevation_ft": "1473", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-2", + "municipality": "Kandy", + "scheduled_service": "yes", + "iata_code": "KDZ" + }, + { + "id": "11812", + "ident": "KDZB", + "type": "small_airport", + "name": "Horseshoe Bay Resort Airpark", + "latitude_deg": "30.52709961", + "longitude_deg": "-98.35870361", + "elevation_ft": "1093", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Horseshoe Bay", + "scheduled_service": "no", + "gps_code": "KDZB", + "local_code": "DZB", + "keywords": "4XS7" + }, + { + "id": "18783", + "ident": "KDZJ", + "type": "small_airport", + "name": "Blairsville Airport", + "latitude_deg": "34.855098724365234", + "longitude_deg": "-83.99690246582031", + "elevation_ft": "1911", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Blairsville", + "scheduled_service": "no", + "gps_code": "KDZJ", + "local_code": "DZJ", + "keywords": "Formerly 46A" + }, + { + "id": "42644", + "ident": "KE-0001", + "type": "small_airport", + "name": "Mfangano Airport", + "latitude_deg": "-0.4665", + "longitude_deg": "34.063998", + "elevation_ft": "3750", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-600", + "municipality": "Mfangano Island", + "scheduled_service": "no", + "gps_code": "HKZF" + }, + { + "id": "42645", + "ident": "KE-0002", + "type": "small_airport", + "name": "Nzoia Airport", + "latitude_deg": "0.1333329975605011", + "longitude_deg": "34.08333206176758", + "elevation_ft": "3770", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-900", + "municipality": "Nzoia", + "scheduled_service": "no" + }, + { + "id": "42646", + "ident": "KE-0003", + "type": "small_airport", + "name": "Rusinga Airport", + "latitude_deg": "-0.41266700625419617", + "longitude_deg": "34.14250183105469", + "elevation_ft": "3800", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-600", + "municipality": "Rusinga", + "scheduled_service": "no" + }, + { + "id": "42647", + "ident": "KE-0004", + "type": "small_airport", + "name": "Oropoi Airport", + "latitude_deg": "3.8084490299224854", + "longitude_deg": "34.3600959777832", + "elevation_ft": "2842", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Oropoi", + "scheduled_service": "no" + }, + { + "id": "42648", + "ident": "KE-0005", + "type": "small_airport", + "name": "Mara Shikar Airport", + "latitude_deg": "-1.0692780017852783", + "longitude_deg": "35.050777435302734", + "elevation_ft": "5500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Mara Shikar", + "scheduled_service": "no" + }, + { + "id": "340233", + "ident": "KE-0006", + "type": "small_airport", + "name": "Camp Simba Airfield", + "latitude_deg": "-2.169513", + "longitude_deg": "40.896414", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Lamu", + "scheduled_service": "no" + }, + { + "id": "42650", + "ident": "KE-0007", + "type": "small_airport", + "name": "Chepgoiven Airport", + "latitude_deg": "-0.38600000739097595", + "longitude_deg": "35.334110260009766", + "elevation_ft": "6955", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Chepgoiven", + "scheduled_service": "no" + }, + { + "id": "42651", + "ident": "KE-0008", + "type": "small_airport", + "name": "Muswani Airport", + "latitude_deg": "-1.1359169483184814", + "longitude_deg": "35.33414077758789", + "elevation_ft": "5600", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Muswani", + "scheduled_service": "no" + }, + { + "id": "42652", + "ident": "KE-0009", + "type": "small_airport", + "name": "Sergoit Airport", + "latitude_deg": "0.6499999761581421", + "longitude_deg": "35.383331298828125", + "elevation_ft": "7200", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Sergoit", + "scheduled_service": "no" + }, + { + "id": "42653", + "ident": "KE-0010", + "type": "small_airport", + "name": "Siana Springs Airport", + "latitude_deg": "-1.4833329916000366", + "longitude_deg": "35.41666793823242", + "elevation_ft": "5350", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Siana Springs", + "scheduled_service": "no" + }, + { + "id": "42654", + "ident": "KE-0011", + "type": "small_airport", + "name": "Olerai Airport", + "latitude_deg": "0.9859439730644226", + "longitude_deg": "35.550804138183594", + "elevation_ft": "6500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Olerai", + "scheduled_service": "no" + }, + { + "id": "42655", + "ident": "KE-0012", + "type": "small_airport", + "name": "Oleshabani Airport", + "latitude_deg": "-0.9723460078239441", + "longitude_deg": "35.74672317504883", + "elevation_ft": "6700", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Oleshabani", + "scheduled_service": "no" + }, + { + "id": "42656", + "ident": "KE-0013", + "type": "small_airport", + "name": "Njoro Country Club Airport", + "latitude_deg": "-0.335999995470047", + "longitude_deg": "35.91747283935547", + "elevation_ft": "7100", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Njoro", + "scheduled_service": "no" + }, + { + "id": "42657", + "ident": "KE-0014", + "type": "small_airport", + "name": "Barclays Airport", + "latitude_deg": "-0.1877959966659546", + "longitude_deg": "35.967098236083984", + "elevation_ft": "6368", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Nakuru", + "scheduled_service": "no" + }, + { + "id": "42658", + "ident": "KE-0015", + "type": "small_airport", + "name": "Lake Baringo (Kampi Ya Samaki) Airport", + "latitude_deg": "0.6031669974327087", + "longitude_deg": "36.01300048828125", + "elevation_ft": "3000", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Lake Baringo", + "scheduled_service": "no" + }, + { + "id": "42659", + "ident": "KE-0016", + "type": "small_airport", + "name": "Shompole (Dry Lake) Airport", + "latitude_deg": "-2.0203330516815186", + "longitude_deg": "36.03911209106445", + "elevation_ft": "2050", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Shompole", + "scheduled_service": "no" + }, + { + "id": "42660", + "ident": "KE-0017", + "type": "small_airport", + "name": "Shompole (\"All\" weather) Airport", + "latitude_deg": "-1.9755829572677612", + "longitude_deg": "36.04838943481445", + "elevation_ft": "2000", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Shompole", + "scheduled_service": "no" + }, + { + "id": "42661", + "ident": "KE-0018", + "type": "small_airport", + "name": "Kapedo Airport", + "latitude_deg": "1.1638610363006592", + "longitude_deg": "36.08416748046875", + "elevation_ft": "2500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kapedo", + "scheduled_service": "no" + }, + { + "id": "42662", + "ident": "KE-0019", + "type": "small_airport", + "name": "Naishi Airport", + "latitude_deg": "-0.4565829932689667", + "longitude_deg": "36.084999084472656", + "elevation_ft": "5500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Naishi", + "scheduled_service": "no" + }, + { + "id": "42663", + "ident": "KE-0020", + "type": "small_airport", + "name": "Congrieve Airfield", + "latitude_deg": "-0.483944", + "longitude_deg": "36.124359", + "elevation_ft": "5800", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Congrieve", + "scheduled_service": "no", + "gps_code": "HKCG", + "local_code": "CONGRIE" + }, + { + "id": "42664", + "ident": "KE-0021", + "type": "small_airport", + "name": "Ndabibi Airport", + "latitude_deg": "-0.7430350184440613", + "longitude_deg": "36.17222213745117", + "elevation_ft": "7100", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Ndabibi", + "scheduled_service": "no" + }, + { + "id": "42665", + "ident": "KE-0022", + "type": "small_airport", + "name": "Seislucho Airport", + "latitude_deg": "4.377778053283691", + "longitude_deg": "36.21666717529297", + "elevation_ft": "1350", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Seislucho", + "scheduled_service": "no" + }, + { + "id": "42666", + "ident": "KE-0023", + "type": "small_airport", + "name": "Kongoni Airport", + "latitude_deg": "-0.8666669726371765", + "longitude_deg": "36.233333587646484", + "elevation_ft": "6600", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kongoni", + "scheduled_service": "no" + }, + { + "id": "42667", + "ident": "KE-0024", + "type": "small_airport", + "name": "Delamare Camp Airport", + "latitude_deg": "-0.40255600214004517", + "longitude_deg": "36.23605728149414", + "elevation_ft": "5800", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Nakuru", + "scheduled_service": "no" + }, + { + "id": "42668", + "ident": "KE-0025", + "type": "small_airport", + "name": "Ngelesha Airport", + "latitude_deg": "1.5172220468521118", + "longitude_deg": "36.2852783203125", + "elevation_ft": "6000", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Ngelesha", + "scheduled_service": "no" + }, + { + "id": "42669", + "ident": "KE-0026", + "type": "small_airport", + "name": "Oserongoni Airport", + "latitude_deg": "-0.8190000057220459", + "longitude_deg": "36.28783416748047", + "elevation_ft": "6200", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Oserongoni", + "scheduled_service": "no", + "keywords": "Oserian" + }, + { + "id": "42670", + "ident": "KE-0027", + "type": "small_airport", + "name": "Loldia Airport", + "latitude_deg": "-0.699999988079071", + "longitude_deg": "36.31666564941406", + "elevation_ft": "1970", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Loldia", + "scheduled_service": "no" + }, + { + "id": "42671", + "ident": "KE-0028", + "type": "small_airport", + "name": "Manyatta Airport", + "latitude_deg": "-0.494715", + "longitude_deg": "36.352908", + "elevation_ft": "6400", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Manyatta", + "scheduled_service": "no", + "keywords": "Gilgil Flash" + }, + { + "id": "42672", + "ident": "KE-0029", + "type": "small_airport", + "name": "Nyahururu Airport", + "latitude_deg": "-0.013767000287771225", + "longitude_deg": "36.36973571777344", + "elevation_ft": "7750", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-200", + "municipality": "Nyahururu", + "scheduled_service": "no" + }, + { + "id": "42673", + "ident": "KE-0030", + "type": "small_airport", + "name": "Kigio (Malewa) Airport", + "latitude_deg": "-0.5677779912948608", + "longitude_deg": "36.38336181640625", + "elevation_ft": "6734", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kigio (Malewa)", + "scheduled_service": "no" + }, + { + "id": "42674", + "ident": "KE-0031", + "type": "small_airport", + "name": "Ndume Langa Airport", + "latitude_deg": "-0.5193060040473938", + "longitude_deg": "36.38414001464844", + "elevation_ft": "6500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Ndume", + "scheduled_service": "no" + }, + { + "id": "42675", + "ident": "KE-0032", + "type": "small_airport", + "name": "Mugie Ranch Airport", + "latitude_deg": "0.714812", + "longitude_deg": "36.586594", + "elevation_ft": "6150", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Sukuta Mugie", + "scheduled_service": "no" + }, + { + "id": "42676", + "ident": "KE-0033", + "type": "small_airport", + "name": "Ol Maisor Airport", + "latitude_deg": "0.413292", + "longitude_deg": "36.651665", + "elevation_ft": "5900", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Ol Maisor", + "scheduled_service": "no" + }, + { + "id": "42677", + "ident": "KE-0034", + "type": "small_airport", + "name": "Orly (Olooitikosh) Airport", + "latitude_deg": "-1.581194", + "longitude_deg": "36.812832", + "elevation_ft": "5600", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Orly (Olooitikosh)", + "scheduled_service": "no", + "gps_code": "HKIK", + "local_code": "ORLY" + }, + { + "id": "42678", + "ident": "KE-0035", + "type": "small_airport", + "name": "Tadlitium Airport", + "latitude_deg": "-2.122875928878784", + "longitude_deg": "36.817481994628906", + "elevation_ft": "5000", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Tadlitium", + "scheduled_service": "no" + }, + { + "id": "42679", + "ident": "KE-0036", + "type": "small_airport", + "name": "Muridjo Ranch Airport", + "latitude_deg": "0.6472219824790955", + "longitude_deg": "36.850860595703125", + "elevation_ft": "5800", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "42680", + "ident": "KE-0037", + "type": "small_airport", + "name": "Nanyuki West Airport", + "latitude_deg": "-0.141092", + "longitude_deg": "36.914995", + "elevation_ft": "6000", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Nanyuki West", + "scheduled_service": "no" + }, + { + "id": "42681", + "ident": "KE-0038", + "type": "small_airport", + "name": "Olpejeta Airport", + "latitude_deg": "0.03061099909245968", + "longitude_deg": "36.90083312988281", + "elevation_ft": "5845", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Olpejeta", + "scheduled_service": "no" + }, + { + "id": "42682", + "ident": "KE-0039", + "type": "small_airport", + "name": "El Karama Airport", + "latitude_deg": "0.19724999368190765", + "longitude_deg": "36.91749954223633", + "elevation_ft": "5700", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "42683", + "ident": "KE-0040", + "type": "small_airport", + "name": "Talu Airport", + "latitude_deg": "-1.1459519863128662", + "longitude_deg": "36.91798782348633", + "elevation_ft": "5110", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-200", + "municipality": "Talu", + "scheduled_service": "no" + }, + { + "id": "42684", + "ident": "KE-0041", + "type": "small_airport", + "name": "Laburra Airport", + "latitude_deg": "-0.298471", + "longitude_deg": "36.947185", + "elevation_ft": "6030", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-200", + "municipality": "Laburra", + "scheduled_service": "no" + }, + { + "id": "42685", + "ident": "KE-0042", + "type": "small_airport", + "name": "Hall Hall Airport", + "latitude_deg": "0.9333329796791077", + "longitude_deg": "37.06666564941406", + "elevation_ft": "6000", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "42686", + "ident": "KE-0043", + "type": "small_airport", + "name": "Hall Strip Airport", + "latitude_deg": "2.930361032485962", + "longitude_deg": "37.067527770996094", + "elevation_ft": "6000", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "scheduled_service": "no" + }, + { + "id": "42687", + "ident": "KE-0044", + "type": "small_airport", + "name": "Kamwaki Farm Airport", + "latitude_deg": "0.13384400308132172", + "longitude_deg": "37.15920639038086", + "elevation_ft": "6530", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kamwaki Farm", + "scheduled_service": "no" + }, + { + "id": "42688", + "ident": "KE-0045", + "type": "small_airport", + "name": "Ibis Farm Airport", + "latitude_deg": "0.04727799817919731", + "longitude_deg": "37.20083236694336", + "elevation_ft": "7000", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "scheduled_service": "no" + }, + { + "id": "42689", + "ident": "KE-0046", + "type": "small_airport", + "name": "Oldonyo Farm Airport", + "latitude_deg": "0.09727799892425537", + "longitude_deg": "37.30086135864258", + "elevation_ft": "7800", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "scheduled_service": "no" + }, + { + "id": "42690", + "ident": "KE-0047", + "type": "small_airport", + "name": "Tassia Airport", + "latitude_deg": "0.4262219965457916", + "longitude_deg": "37.33402633666992", + "elevation_ft": "3400", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Tassia", + "scheduled_service": "no" + }, + { + "id": "42691", + "ident": "KE-0048", + "type": "small_airport", + "name": "Wanguru (Thiba) Airport", + "latitude_deg": "-0.6966760158538818", + "longitude_deg": "37.37461853027344", + "elevation_ft": "3400", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-200", + "municipality": "Wanguru (Thiba)", + "scheduled_service": "no" + }, + { + "id": "42692", + "ident": "KE-0049", + "type": "small_airport", + "name": "Loloroi Airport", + "latitude_deg": "0.635479", + "longitude_deg": "37.380327", + "elevation_ft": "3000", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Loloroi", + "scheduled_service": "no" + }, + { + "id": "42693", + "ident": "KE-0050", + "type": "small_airport", + "name": "Sarara Airport", + "latitude_deg": "-1.0499999523162842", + "longitude_deg": "37.43333435058594", + "elevation_ft": "3760", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Sarara", + "scheduled_service": "no" + }, + { + "id": "42694", + "ident": "KE-0051", + "type": "small_airport", + "name": "Rutundu Airport", + "latitude_deg": "-0.052654001861810684", + "longitude_deg": "37.464542388916016", + "elevation_ft": "10200", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Rutundu", + "scheduled_service": "no" + }, + { + "id": "42695", + "ident": "KE-0052", + "type": "small_airport", + "name": "Il Ngwesi Airport", + "latitude_deg": "0.19724999368190765", + "longitude_deg": "37.467529296875", + "elevation_ft": "5600", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Il Ngwesi", + "scheduled_service": "no" + }, + { + "id": "42696", + "ident": "KE-0053", + "type": "small_airport", + "name": "Mbirikani Airport", + "latitude_deg": "-2.560832977294922", + "longitude_deg": "37.54100036621094", + "elevation_ft": "3900", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Mbirikani", + "scheduled_service": "no" + }, + { + "id": "42697", + "ident": "KE-0054", + "type": "small_airport", + "name": "Harris Hills Airport", + "latitude_deg": "3.4166669845581055", + "longitude_deg": "37.766666412353516", + "elevation_ft": "4300", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Harris Hills", + "scheduled_service": "no" + }, + { + "id": "42698", + "ident": "KE-0055", + "type": "small_airport", + "name": "Lake Jipe Airport", + "latitude_deg": "-3.6169440746307373", + "longitude_deg": "37.77891540527344", + "elevation_ft": "2400", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Lake Jipe", + "scheduled_service": "no" + }, + { + "id": "42699", + "ident": "KE-0056", + "type": "small_airport", + "name": "Finch Hattons Airport", + "latitude_deg": "-2.94596791267395", + "longitude_deg": "37.91468811035156", + "elevation_ft": "2644", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Finch Hattons", + "scheduled_service": "no" + }, + { + "id": "42700", + "ident": "KE-0057", + "type": "small_airport", + "name": "Maktau Gate Airport", + "latitude_deg": "-3.4081668853759766", + "longitude_deg": "38.119667053222656", + "elevation_ft": "3500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Maktau", + "scheduled_service": "no" + }, + { + "id": "42701", + "ident": "KE-0058", + "type": "small_airport", + "name": "Kamboyo(Tsavo West) Airport", + "latitude_deg": "-2.75", + "longitude_deg": "38.119998931884766", + "elevation_ft": "2805", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Kamboyo", + "scheduled_service": "no" + }, + { + "id": "42702", + "ident": "KE-0059", + "type": "small_airport", + "name": "Kangetchwa Airport", + "latitude_deg": "-3.179363965988159", + "longitude_deg": "38.131011962890625", + "elevation_ft": "3050", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Kangetchwa", + "scheduled_service": "no" + }, + { + "id": "356230", + "ident": "KE-0060", + "type": "small_airport", + "name": "Nariokotome Mission Airport", + "latitude_deg": "4.1232", + "longitude_deg": "35.85745", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Nariokotome", + "scheduled_service": "no" + }, + { + "id": "42704", + "ident": "KE-0061", + "type": "small_airport", + "name": "Ithumba Airport", + "latitude_deg": "-2.216722011566162", + "longitude_deg": "38.38689041137695", + "elevation_ft": "1700", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Ithumba", + "scheduled_service": "no" + }, + { + "id": "42705", + "ident": "KE-0062", + "type": "small_airport", + "name": "Satao Airport", + "latitude_deg": "-3.393749952316284", + "longitude_deg": "38.946861267089844", + "elevation_ft": "1400", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Satao", + "scheduled_service": "no" + }, + { + "id": "42706", + "ident": "KE-0063", + "type": "small_airport", + "name": "Kone Airport", + "latitude_deg": "-2.219193935394287", + "longitude_deg": "39.100887298583984", + "elevation_ft": "500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Kone", + "scheduled_service": "no" + }, + { + "id": "42707", + "ident": "KE-0064", + "type": "small_airport", + "name": "Moyale (Boma) Airport", + "latitude_deg": "3.450000047683716", + "longitude_deg": "39.132999420166016", + "elevation_ft": "2790", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Moyale", + "scheduled_service": "no" + }, + { + "id": "42708", + "ident": "KE-0065", + "type": "small_airport", + "name": "Crocodile Camp Airport", + "latitude_deg": "-3.0691111087799072", + "longitude_deg": "39.234222412109375", + "elevation_ft": "500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Crocodile Camp", + "scheduled_service": "no" + }, + { + "id": "42709", + "ident": "KE-0066", + "type": "small_airport", + "name": "Kwale Airport", + "latitude_deg": "-4.169795036315918", + "longitude_deg": "39.43186569213867", + "elevation_ft": "1380", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Kwale", + "scheduled_service": "no" + }, + { + "id": "42710", + "ident": "KE-0067", + "type": "small_airport", + "name": "Kore Galana Ranch Airport", + "latitude_deg": "-2.733333110809326", + "longitude_deg": "39.53333282470703", + "elevation_ft": "500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "scheduled_service": "no" + }, + { + "id": "42711", + "ident": "KE-0068", + "type": "small_airport", + "name": "Komawayu (Tanke) Airport", + "latitude_deg": "-2.9166669845581055", + "longitude_deg": "39.55091857910156", + "elevation_ft": "500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Komawayu (Tanke)", + "scheduled_service": "no" + }, + { + "id": "42712", + "ident": "KE-0069", + "type": "small_airport", + "name": "Vipingo Estate Airport", + "latitude_deg": "-3.80666666667", + "longitude_deg": "39.7973888889", + "elevation_ft": "86", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Vipingo Estate", + "scheduled_service": "no", + "iata_code": "VPG" + }, + { + "id": "42713", + "ident": "KE-0070", + "type": "small_airport", + "name": "Kijipwa Airport", + "latitude_deg": "-3.8431389331817627", + "longitude_deg": "39.80516815185547", + "elevation_ft": "40", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Kijipwa", + "scheduled_service": "no" + }, + { + "id": "42714", + "ident": "KE-0071", + "type": "small_airport", + "name": "Garsen Airport", + "latitude_deg": "-2.2680559158325195", + "longitude_deg": "40.09377670288086", + "elevation_ft": "16", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Garsen", + "scheduled_service": "no" + }, + { + "id": "42715", + "ident": "KE-0072", + "type": "small_airport", + "name": "Rhamu Airport", + "latitude_deg": "3.923082113265991", + "longitude_deg": "41.223690032958984", + "elevation_ft": "805", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-500", + "municipality": "Rhamu", + "scheduled_service": "no" + }, + { + "id": "44465", + "ident": "KE-0073", + "type": "small_airport", + "name": "Ngare Ndare Airstrip", + "latitude_deg": "0.231557", + "longitude_deg": "37.364159", + "elevation_ft": "5500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "44466", + "ident": "KE-0074", + "type": "small_airport", + "name": "Laragai Airstrip", + "latitude_deg": "0.26957", + "longitude_deg": "37.328098", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "44467", + "ident": "KE-0075", + "type": "medium_airport", + "name": "Laikipia Air Base", + "latitude_deg": "0.032933", + "longitude_deg": "37.026901", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Nanyuki", + "scheduled_service": "no", + "gps_code": "HKNY" + }, + { + "id": "44470", + "ident": "KE-0076", + "type": "small_airport", + "name": "Private Airstrip near Lenana", + "latitude_deg": "-0.16217799484729767", + "longitude_deg": "37.445899963378906", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Lenana", + "scheduled_service": "no" + }, + { + "id": "318538", + "ident": "KE-0077", + "type": "small_airport", + "name": "Log Logo Airstrip", + "latitude_deg": "1.994582", + "longitude_deg": "37.916434", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Log Logo", + "scheduled_service": "no" + }, + { + "id": "318539", + "ident": "KE-0078", + "type": "small_airport", + "name": "Kalacha Airport", + "latitude_deg": "3.134855", + "longitude_deg": "37.426236", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Kalacha", + "scheduled_service": "no" + }, + { + "id": "318540", + "ident": "KE-0079", + "type": "small_airport", + "name": "Kauro Airstrip", + "latitude_deg": "1.06402", + "longitude_deg": "37.720198", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kauro", + "scheduled_service": "no" + }, + { + "id": "318542", + "ident": "KE-0080", + "type": "small_airport", + "name": "Baomo Tana Airport", + "latitude_deg": "-1.847326", + "longitude_deg": "40.091586", + "elevation_ft": "200", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Maroni", + "scheduled_service": "no" + }, + { + "id": "318543", + "ident": "KE-0081", + "type": "small_airport", + "name": "Bura West Airport", + "latitude_deg": "-1.189574", + "longitude_deg": "39.81448", + "elevation_ft": "250", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Bura West", + "scheduled_service": "no" + }, + { + "id": "318544", + "ident": "KE-0082", + "type": "small_airport", + "name": "Tana River Rapids Airport", + "latitude_deg": "-0.069552", + "longitude_deg": "38.382484", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "scheduled_service": "no" + }, + { + "id": "318545", + "ident": "KE-0083", + "type": "small_airport", + "name": "Tana River Airport", + "latitude_deg": "-0.049021", + "longitude_deg": "38.308839", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "scheduled_service": "no" + }, + { + "id": "318546", + "ident": "KE-0084", + "type": "small_airport", + "name": "Rojewero River Airport", + "latitude_deg": "0.118977", + "longitude_deg": "38.268425", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "scheduled_service": "no" + }, + { + "id": "318547", + "ident": "KE-0085", + "type": "small_airport", + "name": "Tharaka Nithi Meru Airport", + "latitude_deg": "0.02597", + "longitude_deg": "38.065436", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "scheduled_service": "no" + }, + { + "id": "318689", + "ident": "KE-0086", + "type": "small_airport", + "name": "Airspray Naivasha Airfield", + "latitude_deg": "-0.802034", + "longitude_deg": "36.411967", + "elevation_ft": "6200", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Karagita", + "scheduled_service": "no" + }, + { + "id": "318690", + "ident": "KE-0087", + "type": "small_airport", + "name": "Alale Airport", + "latitude_deg": "2.267596", + "longitude_deg": "35.029196", + "elevation_ft": "5000", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-900", + "municipality": "Alale", + "scheduled_service": "no" + }, + { + "id": "318691", + "ident": "KE-0088", + "type": "small_airport", + "name": "Alia Bay Airport", + "latitude_deg": "3.705058", + "longitude_deg": "36.262236", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Alia Bay", + "scheduled_service": "no" + }, + { + "id": "318692", + "ident": "KE-0089", + "type": "small_airport", + "name": "Arabia Airport", + "latitude_deg": "3.566973", + "longitude_deg": "41.511833", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-500", + "municipality": "Arabia", + "scheduled_service": "no" + }, + { + "id": "318693", + "ident": "KE-0090", + "type": "small_airport", + "name": "Asako Airport", + "latitude_deg": "-0.107107", + "longitude_deg": "39.046973", + "elevation_ft": "500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "scheduled_service": "no" + }, + { + "id": "318694", + "ident": "KE-0091", + "type": "small_airport", + "name": "Athi River Airport", + "latitude_deg": "-1.51094", + "longitude_deg": "37.034369", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-110", + "municipality": "Athi River", + "scheduled_service": "no" + }, + { + "id": "318695", + "ident": "KE-0092", + "type": "small_airport", + "name": "Bachuma Gate Airport", + "latitude_deg": "-3.663575", + "longitude_deg": "38.945339", + "elevation_ft": "1250", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Bachuma", + "scheduled_service": "no" + }, + { + "id": "318696", + "ident": "KE-0093", + "type": "small_airport", + "name": "Baragoi West Airport", + "latitude_deg": "1.807578", + "longitude_deg": "36.679137", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Baragoi", + "scheduled_service": "no" + }, + { + "id": "318697", + "ident": "KE-0094", + "type": "small_airport", + "name": "Barsaloi Airport", + "latitude_deg": "1.340706", + "longitude_deg": "36.856679", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Barsaloi", + "scheduled_service": "no" + }, + { + "id": "318698", + "ident": "KE-0095", + "type": "small_airport", + "name": "Barton's Naivasha Airport", + "latitude_deg": "-0.795118", + "longitude_deg": "36.295698", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Naivasha", + "scheduled_service": "no" + }, + { + "id": "318699", + "ident": "KE-0096", + "type": "small_airport", + "name": "Crescent Island Naivasha Airport", + "latitude_deg": "-0.767433", + "longitude_deg": "36.397561", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Naivasha", + "scheduled_service": "no" + }, + { + "id": "318700", + "ident": "KE-0097", + "type": "small_airport", + "name": "Belatrix Kargi Airport", + "latitude_deg": "2.505995", + "longitude_deg": "37.565966", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Kargi", + "scheduled_service": "no" + }, + { + "id": "318701", + "ident": "KE-0098", + "type": "small_airport", + "name": "Bissel Airport", + "latitude_deg": "-2.136863", + "longitude_deg": "36.838493", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Bissel", + "scheduled_service": "no" + }, + { + "id": "318702", + "ident": "KE-0099", + "type": "small_airport", + "name": "Bobs Harries Airport", + "latitude_deg": "-1.040713", + "longitude_deg": "36.992879", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-200", + "municipality": "Karamaini", + "scheduled_service": "no" + }, + { + "id": "318703", + "ident": "KE-0100", + "type": "small_airport", + "name": "Bogani Airport", + "latitude_deg": "-1.014198", + "longitude_deg": "35.342806", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Bogani", + "scheduled_service": "no" + }, + { + "id": "318704", + "ident": "KE-0101", + "type": "small_airport", + "name": "Bomet Airport", + "latitude_deg": "-0.776471", + "longitude_deg": "35.318411", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-600", + "municipality": "Bomet", + "scheduled_service": "no" + }, + { + "id": "318705", + "ident": "KE-0102", + "type": "small_airport", + "name": "Buna Airport", + "latitude_deg": "2.80117", + "longitude_deg": "39.481787", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-500", + "municipality": "Buna", + "scheduled_service": "no" + }, + { + "id": "318706", + "ident": "KE-0103", + "type": "small_airport", + "name": "Bute Moyale Airport", + "latitude_deg": "3.337517", + "longitude_deg": "39.41424", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Bute", + "scheduled_service": "no" + }, + { + "id": "318707", + "ident": "KE-0104", + "type": "small_airport", + "name": "Carzan Rongai Airport", + "latitude_deg": "-0.191457", + "longitude_deg": "35.864189", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Rongai", + "scheduled_service": "no" + }, + { + "id": "318708", + "ident": "KE-0105", + "type": "small_airport", + "name": "Chaffa Airport", + "latitude_deg": "0.667151", + "longitude_deg": "37.910007", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Shaba", + "scheduled_service": "no" + }, + { + "id": "318709", + "ident": "KE-0106", + "type": "small_airport", + "name": "Chyulus Airport", + "latitude_deg": "-2.527368", + "longitude_deg": "37.731488", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318710", + "ident": "KE-0107", + "type": "small_airport", + "name": "Cottars Mara Airport", + "latitude_deg": "-1.680954", + "longitude_deg": "35.344401", + "elevation_ft": "5780", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no", + "gps_code": "HKCC", + "keywords": "Cottars Camp" + }, + { + "id": "318711", + "ident": "KE-0108", + "type": "small_airport", + "name": "Dadaab Airstrip", + "latitude_deg": "0.058189", + "longitude_deg": "40.318055", + "elevation_ft": "400", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-500", + "municipality": "Dadaab", + "scheduled_service": "no", + "gps_code": "HKDA" + }, + { + "id": "318712", + "ident": "KE-0109", + "type": "small_airport", + "name": "Dol Dol Airport", + "latitude_deg": "0.367944", + "longitude_deg": "37.141442", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Dol Dol", + "scheduled_service": "no" + }, + { + "id": "318713", + "ident": "KE-0110", + "type": "small_airport", + "name": "El Kantor Airport", + "latitude_deg": "1.465284", + "longitude_deg": "37.073011", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "El Kantor", + "scheduled_service": "no" + }, + { + "id": "318714", + "ident": "KE-0111", + "type": "small_airport", + "name": "Enasoit Airport", + "latitude_deg": "0.237853", + "longitude_deg": "37.077848", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Enasoit", + "scheduled_service": "no" + }, + { + "id": "318715", + "ident": "KE-0112", + "type": "small_airport", + "name": "Engelesha Airport", + "latitude_deg": "0.510757", + "longitude_deg": "36.294394", + "elevation_ft": "6464", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Engelesha", + "scheduled_service": "no" + }, + { + "id": "318716", + "ident": "KE-0113", + "type": "small_airport", + "name": "Entasopia Airport", + "latitude_deg": "-1.783522", + "longitude_deg": "36.057783", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kalema", + "scheduled_service": "no" + }, + { + "id": "318717", + "ident": "KE-0114", + "type": "small_airport", + "name": "Entesekera Airport", + "latitude_deg": "-1.842318", + "longitude_deg": "35.86778", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Entesekera", + "scheduled_service": "no" + }, + { + "id": "318718", + "ident": "KE-0115", + "type": "small_airport", + "name": "Funzi Island Airport", + "latitude_deg": "-4.573672", + "longitude_deg": "39.447079", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Funzi Island", + "scheduled_service": "no" + }, + { + "id": "318719", + "ident": "KE-0116", + "type": "small_airport", + "name": "Galana Ranch Airstrip", + "latitude_deg": "-3.062141", + "longitude_deg": "39.331661", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "scheduled_service": "no" + }, + { + "id": "318720", + "ident": "KE-0117", + "type": "small_airport", + "name": "Gatab Lower Airport", + "latitude_deg": "2.636477", + "longitude_deg": "36.932055", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Gatab", + "scheduled_service": "no" + }, + { + "id": "318721", + "ident": "KE-0118", + "type": "small_airport", + "name": "Gilgil Coulson Airport", + "latitude_deg": "-0.502798", + "longitude_deg": "36.356915", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Gilgil", + "scheduled_service": "no" + }, + { + "id": "318722", + "ident": "KE-0119", + "type": "small_airport", + "name": "Gogar Airport", + "latitude_deg": "-0.18786", + "longitude_deg": "35.856818", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Rongai", + "scheduled_service": "no" + }, + { + "id": "318723", + "ident": "KE-0120", + "type": "small_airport", + "name": "Habaswein Airport", + "latitude_deg": "1.016215", + "longitude_deg": "39.505836", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Habaswein", + "scheduled_service": "no" + }, + { + "id": "318724", + "ident": "KE-0121", + "type": "small_airport", + "name": "Ileret Main Airport", + "latitude_deg": "4.281881", + "longitude_deg": "36.266951", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Ileret", + "scheduled_service": "no" + }, + { + "id": "318725", + "ident": "KE-0122", + "type": "small_airport", + "name": "Ileret Town Airport", + "latitude_deg": "4.304698", + "longitude_deg": "36.235572", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Ileret", + "scheduled_service": "no" + }, + { + "id": "318726", + "ident": "KE-0123", + "type": "small_airport", + "name": "Ilkerin Airport", + "latitude_deg": "-1.806828", + "longitude_deg": "35.704339", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Ilkerin", + "scheduled_service": "no" + }, + { + "id": "318727", + "ident": "KE-0124", + "type": "small_airport", + "name": "Jolai Delamere Estates Airport", + "latitude_deg": "-0.523628", + "longitude_deg": "36.187582", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Elmenteita", + "scheduled_service": "no" + }, + { + "id": "318728", + "ident": "KE-0125", + "type": "small_airport", + "name": "Kalama Airport", + "latitude_deg": "0.694423", + "longitude_deg": "37.611987", + "elevation_ft": "2934", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kalama", + "scheduled_service": "no" + }, + { + "id": "318729", + "ident": "KE-0126", + "type": "small_airport", + "name": "Kamburu Airport", + "latitude_deg": "-0.823913", + "longitude_deg": "37.715869", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Kamburu", + "scheduled_service": "no" + }, + { + "id": "318730", + "ident": "KE-0127", + "type": "small_airport", + "name": "Kamogi Ranch Airstrip", + "latitude_deg": "0.601706", + "longitude_deg": "36.73699", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318731", + "ident": "KE-0128", + "type": "small_airport", + "name": "Kanzi Airport", + "latitude_deg": "-2.75235", + "longitude_deg": "37.878257", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kanzi", + "scheduled_service": "no" + }, + { + "id": "318732", + "ident": "KE-0129", + "type": "small_airport", + "name": "Kasigau Gate Airport", + "latitude_deg": "-3.85072", + "longitude_deg": "38.515401", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Kasigau", + "scheduled_service": "no" + }, + { + "id": "318733", + "ident": "KE-0130", + "type": "small_airport", + "name": "Kataboi Airport", + "latitude_deg": "3.756125", + "longitude_deg": "35.833843", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kataboi", + "scheduled_service": "no" + }, + { + "id": "318734", + "ident": "KE-0131", + "type": "small_airport", + "name": "Katilu Airport", + "latitude_deg": "2.284583", + "longitude_deg": "35.429495", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Katilu", + "scheduled_service": "no" + }, + { + "id": "318735", + "ident": "KE-0132", + "type": "small_airport", + "name": "Kedong Airport", + "latitude_deg": "-1.299226", + "longitude_deg": "36.475029", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kedong", + "scheduled_service": "no" + }, + { + "id": "318736", + "ident": "KE-0133", + "type": "small_airport", + "name": "Kichwa Tembo Airport", + "latitude_deg": "-1.263497", + "longitude_deg": "35.027533", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kichwa Tembo", + "scheduled_service": "no", + "gps_code": "HKTB", + "iata_code": "KTJ" + }, + { + "id": "318737", + "ident": "KE-0134", + "type": "small_airport", + "name": "Kifuku Estate Airstrip", + "latitude_deg": "0.173081", + "longitude_deg": "36.583018", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318738", + "ident": "KE-0135", + "type": "small_airport", + "name": "Kijabe Airport", + "latitude_deg": "-0.956812", + "longitude_deg": "36.592155", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kijabe", + "scheduled_service": "no" + }, + { + "id": "318739", + "ident": "KE-0136", + "type": "small_airport", + "name": "Kilalinda Airport", + "latitude_deg": "-2.627593", + "longitude_deg": "38.338681", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "scheduled_service": "no" + }, + { + "id": "318740", + "ident": "KE-0137", + "type": "small_airport", + "name": "Kimana Airstrip", + "latitude_deg": "-2.752942", + "longitude_deg": "37.525214", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kimana", + "scheduled_service": "no" + }, + { + "id": "318741", + "ident": "KE-0138", + "type": "small_airport", + "name": "Kipipri Airport", + "latitude_deg": "-0.454084", + "longitude_deg": "36.493097", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kipipri", + "scheduled_service": "no" + }, + { + "id": "318742", + "ident": "KE-0139", + "type": "small_airport", + "name": "Kipsin Airstrip", + "latitude_deg": "0.598082", + "longitude_deg": "37.319715", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kipsin", + "scheduled_service": "no" + }, + { + "id": "318743", + "ident": "KE-0140", + "type": "small_airport", + "name": "Kisima Ranch Airstrip", + "latitude_deg": "0.512642", + "longitude_deg": "36.694537", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318744", + "ident": "KE-0141", + "type": "small_airport", + "name": "Koka Airport", + "latitude_deg": "-1.917027", + "longitude_deg": "36.004027", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Koka", + "scheduled_service": "no" + }, + { + "id": "318745", + "ident": "KE-0142", + "type": "small_airport", + "name": "Kongoni Game Valley Airport", + "latitude_deg": "-0.843317", + "longitude_deg": "36.259475", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kongoni", + "scheduled_service": "no" + }, + { + "id": "318746", + "ident": "KE-0143", + "type": "small_airport", + "name": "Korr Airport", + "latitude_deg": "2.013786", + "longitude_deg": "37.516742", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Korr", + "scheduled_service": "no" + }, + { + "id": "318747", + "ident": "KE-0144", + "type": "small_airport", + "name": "Korr AIM Airstrip", + "latitude_deg": "2.007568", + "longitude_deg": "37.492219", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Korr", + "scheduled_service": "no" + }, + { + "id": "318748", + "ident": "KE-0145", + "type": "small_airport", + "name": "Kowop Airstrip", + "latitude_deg": "2.00616", + "longitude_deg": "36.8299", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kowop", + "scheduled_service": "no" + }, + { + "id": "318749", + "ident": "KE-0146", + "type": "small_airport", + "name": "Kuluo Airport", + "latitude_deg": "-1.12471", + "longitude_deg": "35.197795", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kuluo", + "scheduled_service": "no" + }, + { + "id": "318750", + "ident": "KE-0147", + "type": "small_airport", + "name": "Kuti Airport", + "latitude_deg": "0.645962", + "longitude_deg": "36.427784", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kuti", + "scheduled_service": "no" + }, + { + "id": "318751", + "ident": "KE-0148", + "type": "small_airport", + "name": "Manda Point Airstrip", + "latitude_deg": "-2.228949", + "longitude_deg": "40.971447", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Manda Island", + "scheduled_service": "no" + }, + { + "id": "318752", + "ident": "KE-0149", + "type": "small_airport", + "name": "Langata Enerit Airstrip", + "latitude_deg": "-1.536513", + "longitude_deg": "36.020637", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318753", + "ident": "KE-0150", + "type": "small_airport", + "name": "Larsens Camp Airstrip", + "latitude_deg": "0.591385", + "longitude_deg": "37.586685", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318754", + "ident": "KE-0151", + "type": "small_airport", + "name": "Latakwen Airport", + "latitude_deg": "1.547691", + "longitude_deg": "37.108677", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Latakwen", + "scheduled_service": "no" + }, + { + "id": "318755", + "ident": "KE-0152", + "type": "small_airport", + "name": "Lenchukuti Airport", + "latitude_deg": "2.243084", + "longitude_deg": "36.670897", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Lenchukuti", + "scheduled_service": "no" + }, + { + "id": "318756", + "ident": "KE-0153", + "type": "small_airport", + "name": "Lentille Airport", + "latitude_deg": "0.504473", + "longitude_deg": "37.006397", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Lentille", + "scheduled_service": "no" + }, + { + "id": "318757", + "ident": "KE-0154", + "type": "small_airport", + "name": "Limuru Airstrip", + "latitude_deg": "-1.106687", + "longitude_deg": "36.688778", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-200", + "scheduled_service": "no" + }, + { + "id": "318758", + "ident": "KE-0155", + "type": "small_airport", + "name": "Lolomarik Airport", + "latitude_deg": "0.107106", + "longitude_deg": "37.278907", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Timau", + "scheduled_service": "no" + }, + { + "id": "318759", + "ident": "KE-0156", + "type": "small_airport", + "name": "Longonot Fair Airstrip", + "latitude_deg": "-0.817072", + "longitude_deg": "36.391407", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318760", + "ident": "KE-0157", + "type": "small_airport", + "name": "Lowarengak Airport", + "latitude_deg": "4.284767", + "longitude_deg": "35.870662", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Lowarengak", + "scheduled_service": "no" + }, + { + "id": "318761", + "ident": "KE-0158", + "type": "small_airport", + "name": "Lugard Falls South Airport", + "latitude_deg": "-3.048607", + "longitude_deg": "38.689626", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "scheduled_service": "no" + }, + { + "id": "318762", + "ident": "KE-0159", + "type": "small_airport", + "name": "Malinda Estate Airstrip", + "latitude_deg": "-1.483679", + "longitude_deg": "37.098339", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "scheduled_service": "no" + }, + { + "id": "318763", + "ident": "KE-0160", + "type": "small_airport", + "name": "Manyani Airport", + "latitude_deg": "-3.094749", + "longitude_deg": "38.476476", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Manyani", + "scheduled_service": "no" + }, + { + "id": "318764", + "ident": "KE-0161", + "type": "small_airport", + "name": "Marinyn Airport", + "latitude_deg": "-0.436093", + "longitude_deg": "35.298761", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-600", + "municipality": "Kericho", + "scheduled_service": "no" + }, + { + "id": "318765", + "ident": "KE-0162", + "type": "small_airport", + "name": "Mawingo Airprot", + "latitude_deg": "-0.043734", + "longitude_deg": "37.145506", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "scheduled_service": "no" + }, + { + "id": "318766", + "ident": "KE-0163", + "type": "small_airport", + "name": "Mbaruk Airport", + "latitude_deg": "-0.397362", + "longitude_deg": "36.215325", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318767", + "ident": "KE-0164", + "type": "small_airport", + "name": "Meriti Oil Rig Airstrip", + "latitude_deg": "1.089888", + "longitude_deg": "38.600205", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "scheduled_service": "no" + }, + { + "id": "318768", + "ident": "KE-0165", + "type": "small_airport", + "name": "Milmet Airport", + "latitude_deg": "-0.1115", + "longitude_deg": "36.124334", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318769", + "ident": "KE-0166", + "type": "small_airport", + "name": "Mount Elgon Orchards Airstrip", + "latitude_deg": "1.209714", + "longitude_deg": "34.796225", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-900", + "scheduled_service": "no" + }, + { + "id": "318770", + "ident": "KE-0167", + "type": "small_airport", + "name": "Mpala Farm Airstrip", + "latitude_deg": "0.353531", + "longitude_deg": "36.892033", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318771", + "ident": "KE-0168", + "type": "small_airport", + "name": "Mpala Research Center Airstrip", + "latitude_deg": "0.29012", + "longitude_deg": "36.892436", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318772", + "ident": "KE-0169", + "type": "small_airport", + "name": "Mughwango Airstrip", + "latitude_deg": "0.126097", + "longitude_deg": "38.132497", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "scheduled_service": "no" + }, + { + "id": "318773", + "ident": "KE-0170", + "type": "small_airport", + "name": "Mukenye Ranch Airstrip", + "latitude_deg": "0.251711", + "longitude_deg": "36.805338", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318774", + "ident": "KE-0171", + "type": "small_airport", + "name": "Mutomo Airport", + "latitude_deg": "-1.846779", + "longitude_deg": "38.204732", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Mutomo", + "scheduled_service": "no" + }, + { + "id": "318798", + "ident": "KE-0172", + "type": "small_airport", + "name": "Mwatate Airport", + "latitude_deg": "-3.517815", + "longitude_deg": "38.442556", + "elevation_ft": "2580", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Mwatate", + "scheduled_service": "no" + }, + { + "id": "318800", + "ident": "KE-0173", + "type": "small_airport", + "name": "Namunyak Airport", + "latitude_deg": "1.058237", + "longitude_deg": "37.437892", + "elevation_ft": "3200", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318801", + "ident": "KE-0174", + "type": "small_airport", + "name": "Nariokotome Airport", + "latitude_deg": "4.114358", + "longitude_deg": "35.842295", + "elevation_ft": "1600", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318802", + "ident": "KE-0175", + "type": "small_airport", + "name": "National Park Airstrip", + "latitude_deg": "-0.170666", + "longitude_deg": "37.136612", + "elevation_ft": "7500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-200", + "municipality": "Naro Moru", + "scheduled_service": "no" + }, + { + "id": "318803", + "ident": "KE-0176", + "type": "small_airport", + "name": "Ngalai Airport", + "latitude_deg": "1.170659", + "longitude_deg": "37.252765", + "elevation_ft": "4150", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Ngalai", + "scheduled_service": "no" + }, + { + "id": "318804", + "ident": "KE-0177", + "type": "small_airport", + "name": "Ngao Airport", + "latitude_deg": "-2.42834", + "longitude_deg": "40.193087", + "elevation_ft": "150", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Ngao", + "scheduled_service": "no" + }, + { + "id": "318805", + "ident": "KE-0178", + "type": "small_airport", + "name": "Ngurunit South Airport", + "latitude_deg": "1.735737", + "longitude_deg": "37.3216", + "elevation_ft": "3200", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Ngurunit", + "scheduled_service": "no" + }, + { + "id": "318806", + "ident": "KE-0179", + "type": "small_airport", + "name": "Ol Derkessi Airstrip", + "latitude_deg": "-1.713528", + "longitude_deg": "35.560338", + "elevation_ft": "6100", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318807", + "ident": "KE-0180", + "type": "small_airport", + "name": "Ol Donyo Laro Airport", + "latitude_deg": "-1.813717", + "longitude_deg": "36.018261", + "elevation_ft": "4450", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318808", + "ident": "KE-0181", + "type": "small_airport", + "name": "Ol Malo Lodge Airstrip", + "latitude_deg": "0.659821", + "longitude_deg": "36.868623", + "elevation_ft": "5500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318809", + "ident": "KE-0182", + "type": "small_airport", + "name": "Ol Seki Airstrip", + "latitude_deg": "-1.378382", + "longitude_deg": "35.378453", + "elevation_ft": "6500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no", + "iata_code": "OSJ" + }, + { + "id": "318810", + "ident": "KE-0183", + "type": "small_airport", + "name": "Oryx Airport", + "latitude_deg": "0.60964", + "longitude_deg": "37.53018", + "elevation_ft": "3100", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318811", + "ident": "KE-0184", + "type": "small_airport", + "name": "Oseur Airstrip", + "latitude_deg": "-1.606288", + "longitude_deg": "35.436835", + "elevation_ft": "5700", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Oloolaimutia", + "scheduled_service": "no" + }, + { + "id": "318812", + "ident": "KE-0185", + "type": "small_airport", + "name": "Perror Airport", + "latitude_deg": "2.846734", + "longitude_deg": "35.050887", + "elevation_ft": "2500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Namoruputh", + "scheduled_service": "no" + }, + { + "id": "318813", + "ident": "KE-0186", + "type": "small_airport", + "name": "Rukinga Ranch Airstrip", + "latitude_deg": "-3.575566", + "longitude_deg": "38.760165", + "elevation_ft": "1767", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318814", + "ident": "KE-0187", + "type": "small_airport", + "name": "Saguta Naibor Ranch Airstrip", + "latitude_deg": "0.431231", + "longitude_deg": "36.729133", + "elevation_ft": "5600", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318815", + "ident": "KE-0188", + "type": "small_airport", + "name": "Sala Gate Airport", + "latitude_deg": "-3.072405", + "longitude_deg": "39.215665", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "scheduled_service": "no" + }, + { + "id": "318816", + "ident": "KE-0189", + "type": "small_airport", + "name": "Seder Airport", + "latitude_deg": "2.314229", + "longitude_deg": "36.88698", + "elevation_ft": "2850", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Seder", + "scheduled_service": "no" + }, + { + "id": "318817", + "ident": "KE-0190", + "type": "small_airport", + "name": "Segel Airprot", + "latitude_deg": "2.544761", + "longitude_deg": "37.944126", + "elevation_ft": "2000", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Marsabit", + "scheduled_service": "no" + }, + { + "id": "318818", + "ident": "KE-0191", + "type": "small_airport", + "name": "Shaba Lodge Airport", + "latitude_deg": "0.658176", + "longitude_deg": "37.700377", + "elevation_ft": "2600", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "scheduled_service": "no" + }, + { + "id": "318819", + "ident": "KE-0192", + "type": "small_airport", + "name": "Sheldrick Trust Strip", + "latitude_deg": "-2.669606", + "longitude_deg": "38.367137", + "elevation_ft": "1800", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "scheduled_service": "no" + }, + { + "id": "318820", + "ident": "KE-0193", + "type": "small_airport", + "name": "Sigor Airport", + "latitude_deg": "1.58209", + "longitude_deg": "35.471191", + "elevation_ft": "3000", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Sigor", + "scheduled_service": "no" + }, + { + "id": "318821", + "ident": "KE-0194", + "type": "small_airport", + "name": "Sirocco Airstrip", + "latitude_deg": "-0.721299", + "longitude_deg": "36.28709", + "elevation_ft": "6100", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318824", + "ident": "KE-0195", + "type": "small_airport", + "name": "Sosian Ranch Airstrip", + "latitude_deg": "0.418494", + "longitude_deg": "36.738667", + "elevation_ft": "5700", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318825", + "ident": "KE-0196", + "type": "small_airport", + "name": "South Horr Airport", + "latitude_deg": "2.172091", + "longitude_deg": "36.906929", + "elevation_ft": "2900", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "South Horr", + "scheduled_service": "no" + }, + { + "id": "318826", + "ident": "KE-0197", + "type": "small_airport", + "name": "St. Andrews School Airstrip", + "latitude_deg": "-0.273941", + "longitude_deg": "35.767293", + "elevation_ft": "8236", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Turi", + "scheduled_service": "no" + }, + { + "id": "318827", + "ident": "KE-0198", + "type": "small_airport", + "name": "Sware Airport", + "latitude_deg": "1.077515", + "longitude_deg": "37.092131", + "elevation_ft": "4100", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Sware", + "scheduled_service": "no" + }, + { + "id": "318828", + "ident": "KE-0199", + "type": "small_airport", + "name": "Tinderet Teas Estate Airstrip", + "latitude_deg": "-0.017443", + "longitude_deg": "35.351428", + "elevation_ft": "6700", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318829", + "ident": "KE-0200", + "type": "small_airport", + "name": "Tortilis Camp Airstrip", + "latitude_deg": "-2.683608", + "longitude_deg": "37.178328", + "elevation_ft": "3806", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "318830", + "ident": "KE-0201", + "type": "small_airport", + "name": "Tsavo Safari Camp Airstrip", + "latitude_deg": "-2.638919", + "longitude_deg": "38.364736", + "elevation_ft": "1700", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "scheduled_service": "no" + }, + { + "id": "318831", + "ident": "KE-0202", + "type": "small_airport", + "name": "Tum Airport", + "latitude_deg": "2.141479", + "longitude_deg": "36.759077", + "elevation_ft": "4500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Tum", + "scheduled_service": "no" + }, + { + "id": "318832", + "ident": "KE-0203", + "type": "small_airport", + "name": "Wanjala Mine Airstrip", + "latitude_deg": "-3.245484", + "longitude_deg": "38.181924", + "elevation_ft": "3800", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "scheduled_service": "no" + }, + { + "id": "318833", + "ident": "KE-0204", + "type": "small_airport", + "name": "Weavers Airstrip", + "latitude_deg": "-1.363068", + "longitude_deg": "35.189882", + "elevation_ft": "5000", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Talek", + "scheduled_service": "no" + }, + { + "id": "326822", + "ident": "KE-0205", + "type": "closed", + "name": "MacAlder Airport", + "latitude_deg": "-0.957591", + "longitude_deg": "34.306287", + "elevation_ft": "4074", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-600", + "municipality": "MacAlder Mines", + "scheduled_service": "no" + }, + { + "id": "326833", + "ident": "KE-0206", + "type": "closed", + "name": "Ngoinio Estate Airport", + "latitude_deg": "-0.51839", + "longitude_deg": "35.071665", + "elevation_ft": "5636", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "328908", + "ident": "KE-0207", + "type": "small_airport", + "name": "Loisaba Airstrop", + "latitude_deg": "0.61196", + "longitude_deg": "36.800095", + "elevation_ft": "5744", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "329819", + "ident": "KE-0208", + "type": "small_airport", + "name": "Olare Orok Airfield", + "latitude_deg": "-1.324213", + "longitude_deg": "35.246106", + "elevation_ft": "5779", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no", + "iata_code": "OLG" + }, + { + "id": "340234", + "ident": "KE-0209", + "type": "small_airport", + "name": "Bahari East Airstrip", + "latitude_deg": "-2.446286", + "longitude_deg": "40.754641", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Bahari", + "scheduled_service": "no" + }, + { + "id": "340235", + "ident": "KE-0210", + "type": "small_airport", + "name": "Matangeni East Airstrip", + "latitude_deg": "-2.447421", + "longitude_deg": "40.740016", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Matangeni", + "scheduled_service": "no" + }, + { + "id": "340236", + "ident": "KE-0211", + "type": "small_airport", + "name": "Witu Airstrip", + "latitude_deg": "-2.37964", + "longitude_deg": "40.44099", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Witu", + "scheduled_service": "no" + }, + { + "id": "31581", + "ident": "KE-0213", + "type": "closed", + "name": "(Old) El Wak Airport", + "latitude_deg": "2.812043", + "longitude_deg": "40.932484", + "elevation_ft": "1295", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-500", + "municipality": "El Wak", + "scheduled_service": "no", + "keywords": "6047, HKEW" + }, + { + "id": "42539", + "ident": "KE-6002", + "type": "small_airport", + "name": "Laisamis Airport", + "latitude_deg": "1.578387", + "longitude_deg": "37.810799", + "elevation_ft": "1866", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Laisamis", + "scheduled_service": "no", + "gps_code": "HKLA" + }, + { + "id": "42540", + "ident": "KE-6007", + "type": "small_airport", + "name": "Lokori Airport", + "latitude_deg": "1.966667", + "longitude_deg": "36.016668", + "elevation_ft": "1990", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Lokori", + "scheduled_service": "no", + "gps_code": "HKLR" + }, + { + "id": "42541", + "ident": "KE-6012", + "type": "small_airport", + "name": "Arroket Airport", + "latitude_deg": "-0.623426", + "longitude_deg": "35.065867", + "elevation_ft": "5955", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Arroket", + "scheduled_service": "no", + "gps_code": "HKAR" + }, + { + "id": "42542", + "ident": "KE-6013", + "type": "small_airport", + "name": "Balesa Airport", + "latitude_deg": "3.646972", + "longitude_deg": "37.350861", + "elevation_ft": "2000", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Balesa", + "scheduled_service": "no", + "gps_code": "HKBL" + }, + { + "id": "42544", + "ident": "KE-6018", + "type": "small_airport", + "name": "Fig Tree Airport", + "latitude_deg": "-1.434722", + "longitude_deg": "35.193249", + "elevation_ft": "5050", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Masai Mara National Park", + "scheduled_service": "no", + "gps_code": "HKFT" + }, + { + "id": "42545", + "ident": "KE-6019", + "type": "small_airport", + "name": "Head Office Delamere Estates Airport", + "latitude_deg": "-0.467954", + "longitude_deg": "36.191218", + "elevation_ft": "6500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Head Office Delamere Estates", + "scheduled_service": "no" + }, + { + "id": "42546", + "ident": "KE-6020", + "type": "small_airport", + "name": "Itona Ranch Airport", + "latitude_deg": "-1.135916", + "longitude_deg": "34.83411", + "elevation_ft": "5500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Itona Ranch", + "scheduled_service": "no", + "gps_code": "HKIC" + }, + { + "id": "42547", + "ident": "KE-6021", + "type": "small_airport", + "name": "Karimbuni Airport", + "latitude_deg": "-0.8029670119285583", + "longitude_deg": "36.09061050415039", + "elevation_ft": "9300", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Karimbuni", + "scheduled_service": "no" + }, + { + "id": "42548", + "ident": "KE-6024", + "type": "small_airport", + "name": "Masai Mara Airport", + "latitude_deg": "1.2666670083999634", + "longitude_deg": "35.033329010009766", + "elevation_ft": "5360", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kichwa Tembo", + "scheduled_service": "no" + }, + { + "id": "42549", + "ident": "KE-6025", + "type": "small_airport", + "name": "Kisima Farm Airport", + "latitude_deg": "0.04727799817919731", + "longitude_deg": "37.4341926574707", + "elevation_ft": "7800", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "scheduled_service": "no" + }, + { + "id": "42551", + "ident": "KE-6027", + "type": "small_airport", + "name": "Kamok Airport", + "latitude_deg": "0.013944000005722046", + "longitude_deg": "36.80083465576172", + "elevation_ft": "6290", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kamok", + "scheduled_service": "no" + }, + { + "id": "42552", + "ident": "KE-6028", + "type": "small_airport", + "name": "Kulalu Ranch Airport", + "latitude_deg": "-3.083333", + "longitude_deg": "39.416668", + "elevation_ft": "500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "scheduled_service": "no", + "gps_code": "HKUR" + }, + { + "id": "42553", + "ident": "KE-6029", + "type": "small_airport", + "name": "Lubarra Airport", + "latitude_deg": "-1.2999999523162842", + "longitude_deg": "36.95000076293945", + "elevation_ft": "6100", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-110", + "municipality": "Lubarra", + "scheduled_service": "no" + }, + { + "id": "42554", + "ident": "KE-6033", + "type": "small_airport", + "name": "Hagadera Airport", + "latitude_deg": "0.12532299757003784", + "longitude_deg": "40.28998565673828", + "elevation_ft": "360", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-500", + "municipality": "Dadaab", + "scheduled_service": "no" + }, + { + "id": "42555", + "ident": "KE-6034", + "type": "small_airport", + "name": "Lomolo Airport", + "latitude_deg": "0.031057", + "longitude_deg": "35.988683", + "elevation_ft": "5200", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Lomolo", + "scheduled_service": "no", + "gps_code": "HKMX" + }, + { + "id": "42556", + "ident": "KE-6035", + "type": "small_airport", + "name": "Loporot Airport", + "latitude_deg": "2.345275", + "longitude_deg": "35.882778", + "elevation_ft": "2011", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Loporot", + "scheduled_service": "no", + "gps_code": "HKOP" + }, + { + "id": "42557", + "ident": "KE-6036", + "type": "small_airport", + "name": "Lothagah Airport", + "latitude_deg": "3.033333", + "longitude_deg": "36.049999", + "elevation_ft": "1600", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Lothagah", + "scheduled_service": "no", + "gps_code": "HKTH" + }, + { + "id": "42558", + "ident": "KE-6037", + "type": "small_airport", + "name": "Lotubae Airport", + "latitude_deg": "1.9833329916000366", + "longitude_deg": "36.04999923706055", + "elevation_ft": "1700", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Lotubae", + "scheduled_service": "no" + }, + { + "id": "42559", + "ident": "KE-6040", + "type": "small_airport", + "name": "Menengai Airport", + "latitude_deg": "-0.23602800071239471", + "longitude_deg": "36.00080490112305", + "elevation_ft": "6650", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Menengai", + "scheduled_service": "no" + }, + { + "id": "42560", + "ident": "KE-6041", + "type": "small_airport", + "name": "Nampaso Airport", + "latitude_deg": "-1.0423929691314697", + "longitude_deg": "35.24995422363281", + "elevation_ft": "5500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Nampaso", + "scheduled_service": "no" + }, + { + "id": "42561", + "ident": "KE-6042", + "type": "small_airport", + "name": "Ndovu Airport", + "latitude_deg": "2.0137779712677", + "longitude_deg": "38.634220123291016", + "elevation_ft": "1150", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Ndovu", + "scheduled_service": "no" + }, + { + "id": "42562", + "ident": "KE-6043", + "type": "small_airport", + "name": "Lanet Prairies Airport", + "latitude_deg": "-0.28600001335144043", + "longitude_deg": "36.15080642700195", + "elevation_ft": "6200", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Neylan's", + "scheduled_service": "no" + }, + { + "id": "42563", + "ident": "KE-6044", + "type": "small_airport", + "name": "Ngore Ngore Airport", + "latitude_deg": "-1.8359440565109253", + "longitude_deg": "37.78419494628906", + "elevation_ft": "6290", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Ngore Ngore", + "scheduled_service": "no" + }, + { + "id": "42564", + "ident": "KE-6045", + "type": "small_airport", + "name": "Njoro Airport", + "latitude_deg": "-0.316978", + "longitude_deg": "35.922549", + "elevation_ft": "7140", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Njoro", + "scheduled_service": "no" + }, + { + "id": "42565", + "ident": "KE-6046", + "type": "small_airport", + "name": "Nkreta Airport", + "latitude_deg": "-1.0166670083999634", + "longitude_deg": "35.83333206176758", + "elevation_ft": "6700", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Nkreta", + "scheduled_service": "no" + }, + { + "id": "42566", + "ident": "KE-6048", + "type": "small_airport", + "name": "Oleleren Airport", + "latitude_deg": "0.013944000005722046", + "longitude_deg": "36.8841667175293", + "elevation_ft": "5580", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Olereren", + "scheduled_service": "no" + }, + { + "id": "42567", + "ident": "KE-6050", + "type": "small_airport", + "name": "Gaitu Airport", + "latitude_deg": "-0.05272199958562851", + "longitude_deg": "37.734195709228516", + "elevation_ft": "3805", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Gaitu", + "scheduled_service": "no" + }, + { + "id": "42568", + "ident": "KE-6053", + "type": "small_airport", + "name": "Taita Hills Airport", + "latitude_deg": "-3.5123889446258545", + "longitude_deg": "38.250221252441406", + "elevation_ft": "3150", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Taita Hills", + "scheduled_service": "no" + }, + { + "id": "42569", + "ident": "KE-6054", + "type": "small_airport", + "name": "Taveta Sisal Airport", + "latitude_deg": "-3.418889045715332", + "longitude_deg": "37.6341667175293", + "elevation_ft": "2525", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Taveta Sisal", + "scheduled_service": "no" + }, + { + "id": "42570", + "ident": "KE-6055", + "type": "small_airport", + "name": "Turkwel Gorge Airport", + "latitude_deg": "1.895681", + "longitude_deg": "35.38826", + "elevation_ft": "2625", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Turkwel Gorge", + "scheduled_service": "no" + }, + { + "id": "42571", + "ident": "KE-6056", + "type": "small_airport", + "name": "Ziwani Airport", + "latitude_deg": "-3.2193610668182373", + "longitude_deg": "37.80072021484375", + "elevation_ft": "3025", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Ziwani", + "scheduled_service": "no" + }, + { + "id": "42572", + "ident": "KE-6058", + "type": "small_airport", + "name": "Didima Bule Airport", + "latitude_deg": "-2.3691670894622803", + "longitude_deg": "39.617584228515625", + "elevation_ft": "500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Didima Bule", + "scheduled_service": "no" + }, + { + "id": "42573", + "ident": "KE-6061", + "type": "small_airport", + "name": "Komofodo Galana Ranch Airport", + "latitude_deg": "2.552500009536743", + "longitude_deg": "39.66758346557617", + "elevation_ft": "500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-500", + "municipality": "Komofodo Galana", + "scheduled_service": "no" + }, + { + "id": "42574", + "ident": "KE-6062", + "type": "small_airport", + "name": "Embori Farm Airport", + "latitude_deg": "0.07766", + "longitude_deg": "37.34969", + "elevation_ft": "8666", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Embori Farm", + "scheduled_service": "no" + }, + { + "id": "42575", + "ident": "KE-6064", + "type": "closed", + "name": "Shekiko Airport", + "latitude_deg": "-2.569034", + "longitude_deg": "40.322601", + "elevation_ft": "6", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Shekiko", + "scheduled_service": "no" + }, + { + "id": "42576", + "ident": "KE-6066", + "type": "small_airport", + "name": "Ngerende Airport", + "latitude_deg": "-1.083519", + "longitude_deg": "35.18565", + "elevation_ft": "5510", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Ngerende", + "scheduled_service": "no" + }, + { + "id": "42577", + "ident": "KE-6067", + "type": "small_airport", + "name": "Barina Airport", + "latitude_deg": "-0.13600000739097595", + "longitude_deg": "36.01747131347656", + "elevation_ft": "5600", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Barina", + "scheduled_service": "no" + }, + { + "id": "42578", + "ident": "KE-6068", + "type": "small_airport", + "name": "Soy-Chemoset Airport", + "latitude_deg": "0.7138890027999878", + "longitude_deg": "36.86750030517578", + "elevation_ft": "5130", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "SOY-Chemoset", + "scheduled_service": "no" + }, + { + "id": "42579", + "ident": "KE-6071", + "type": "small_airport", + "name": "Ngorare Ranch Airport", + "latitude_deg": "0.33058300614356995", + "longitude_deg": "36.65083312988281", + "elevation_ft": "6400", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Ngorare", + "scheduled_service": "no" + }, + { + "id": "42580", + "ident": "KE-6072", + "type": "small_airport", + "name": "Ilkek Airport", + "latitude_deg": "-0.6026390194892883", + "longitude_deg": "36.36747360229492", + "elevation_ft": "6350", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Ilkek", + "scheduled_service": "no" + }, + { + "id": "42581", + "ident": "KE-6074", + "type": "small_airport", + "name": "Kalacha South Airport", + "latitude_deg": "3.0199999809265137", + "longitude_deg": "37.448333740234375", + "elevation_ft": "1000", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Kalacha South", + "scheduled_service": "no" + }, + { + "id": "42582", + "ident": "KE-6075", + "type": "small_airport", + "name": "Masnami Airport", + "latitude_deg": "-1.1333329677581787", + "longitude_deg": "35.33333206176758", + "elevation_ft": "5600", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Masnami", + "scheduled_service": "no" + }, + { + "id": "42583", + "ident": "KE-6076", + "type": "small_airport", + "name": "Segera Ranch Airport", + "latitude_deg": "0.1821729987859726", + "longitude_deg": "36.911842346191406", + "elevation_ft": "5700", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "42584", + "ident": "KE-6077", + "type": "small_airport", + "name": "Lali Galana Airport", + "latitude_deg": "-3.1357779502868652", + "longitude_deg": "39.30088806152344", + "elevation_ft": "500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Lali Galana", + "scheduled_service": "no" + }, + { + "id": "42585", + "ident": "KE-6079", + "type": "small_airport", + "name": "Kilgoris Airport", + "latitude_deg": "-1.079585", + "longitude_deg": "34.87741", + "elevation_ft": "5755", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kilgoris", + "scheduled_service": "no", + "gps_code": "HKRS" + }, + { + "id": "42586", + "ident": "KE-6081", + "type": "small_airport", + "name": "Oserian Naivasha Airport", + "latitude_deg": "-0.8526390194892883", + "longitude_deg": "36.26747131347656", + "elevation_ft": "6350", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Oserian", + "scheduled_service": "no" + }, + { + "id": "42587", + "ident": "KE-6082", + "type": "small_airport", + "name": "Kinna Airport", + "latitude_deg": "0.31666699051856995", + "longitude_deg": "38.20000076293945", + "elevation_ft": "2211", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Kinna", + "scheduled_service": "no" + }, + { + "id": "42588", + "ident": "KE-6084", + "type": "small_airport", + "name": "Green Park Airport", + "latitude_deg": "-0.6696670055389404", + "longitude_deg": "36.310279846191406", + "elevation_ft": "6791", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Green Park", + "scheduled_service": "no" + }, + { + "id": "42589", + "ident": "KE-6087", + "type": "small_airport", + "name": "Mara North Conservancy Airstrip", + "latitude_deg": "-1.14542", + "longitude_deg": "35.124922", + "elevation_ft": "5500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Mara", + "scheduled_service": "no", + "gps_code": "HKMF", + "iata_code": "HKR" + }, + { + "id": "42590", + "ident": "KE-6088", + "type": "small_airport", + "name": "Cottar's Camp Airport", + "latitude_deg": "-1.4952269792556763", + "longitude_deg": "35.41211700439453", + "elevation_ft": "5350", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Cottar's Camp", + "scheduled_service": "no" + }, + { + "id": "42591", + "ident": "KE-6089", + "type": "small_airport", + "name": "Maji Mazuri Airport", + "latitude_deg": "0.933333", + "longitude_deg": "35.166668", + "elevation_ft": "6980", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Maji Mazuri", + "scheduled_service": "no", + "gps_code": "HKZM" + }, + { + "id": "42592", + "ident": "KE-6095", + "type": "small_airport", + "name": "Kilifi Plantation Farm Airport", + "latitude_deg": "-3.6333329677581787", + "longitude_deg": "39.849998474121094", + "elevation_ft": "3", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Kilifi", + "scheduled_service": "no" + }, + { + "id": "42593", + "ident": "KE-6109", + "type": "small_airport", + "name": "Mitunguu Airport", + "latitude_deg": "-0.10968299955129623", + "longitude_deg": "37.79010009765625", + "elevation_ft": "3100", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Mitunguu", + "scheduled_service": "no" + }, + { + "id": "42594", + "ident": "KE-6110", + "type": "small_airport", + "name": "Mkowe Airport", + "latitude_deg": "-2.228892", + "longitude_deg": "40.845313", + "elevation_ft": "3", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Mkowe", + "scheduled_service": "no" + }, + { + "id": "42595", + "ident": "KE-6112", + "type": "small_airport", + "name": "Angama Airport", + "latitude_deg": "-1.27156", + "longitude_deg": "34.955513", + "elevation_ft": "6180", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Maasai Mara", + "scheduled_service": "no", + "gps_code": "HKOM", + "iata_code": "ANA", + "keywords": "Olkurruk Mara" + }, + { + "id": "42596", + "ident": "KE-6121", + "type": "small_airport", + "name": "Musiara Airstrip", + "latitude_deg": "-1.298636", + "longitude_deg": "35.063885", + "elevation_ft": "5117", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Musiara", + "scheduled_service": "no", + "iata_code": "MDR" + }, + { + "id": "42597", + "ident": "KE-6123", + "type": "small_airport", + "name": "Namanga Airport", + "latitude_deg": "-2.57938888889", + "longitude_deg": "36.912166666699996", + "elevation_ft": "4080", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Namanga", + "scheduled_service": "no" + }, + { + "id": "42598", + "ident": "KE-6127", + "type": "small_airport", + "name": "Beverley Airport", + "latitude_deg": "3.316666", + "longitude_deg": "37.066666", + "elevation_ft": "1187", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "North Horr", + "scheduled_service": "no", + "gps_code": "HKZT" + }, + { + "id": "42599", + "ident": "KE-6151", + "type": "small_airport", + "name": "Solio Ranch Airport", + "latitude_deg": "-0.24516700208187103", + "longitude_deg": "36.8848876953125", + "elevation_ft": "6300", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "42600", + "ident": "KE-6152", + "type": "small_airport", + "name": "Rumuruti Airport", + "latitude_deg": "0.2775940001010895", + "longitude_deg": "36.53333282470703", + "elevation_ft": "6066", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Rumuruti", + "scheduled_service": "no" + }, + { + "id": "42601", + "ident": "KE-6153", + "type": "small_airport", + "name": "Sabarei Airport", + "latitude_deg": "4.333976", + "longitude_deg": "36.906768", + "elevation_ft": "2300", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Sabarei", + "scheduled_service": "no" + }, + { + "id": "42602", + "ident": "KE-6155", + "type": "closed", + "name": "Sigor Airport", + "latitude_deg": "1.483333", + "longitude_deg": "35.466667", + "elevation_ft": "3218", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Sigor", + "scheduled_service": "no" + }, + { + "id": "42603", + "ident": "KE-6158", + "type": "small_airport", + "name": "Oljogi Ranch Airport", + "latitude_deg": "0.26394400000572205", + "longitude_deg": "36.950862884521484", + "elevation_ft": "5640", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "42604", + "ident": "KE-6166", + "type": "small_airport", + "name": "Todonyang Airport", + "latitude_deg": "4.47532", + "longitude_deg": "35.91425", + "elevation_ft": "1195", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Todonyang", + "scheduled_service": "no" + }, + { + "id": "42605", + "ident": "KE-6175", + "type": "small_airport", + "name": "Voi Park Airport", + "latitude_deg": "-3.3627219200134277", + "longitude_deg": "38.605167388916016", + "elevation_ft": "1700", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Voi", + "scheduled_service": "no" + }, + { + "id": "42606", + "ident": "KE-6178", + "type": "small_airport", + "name": "Wamba Airport", + "latitude_deg": "0.9777780175209045", + "longitude_deg": "37.31888198852539", + "elevation_ft": "4324", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Wamba", + "scheduled_service": "no" + }, + { + "id": "42607", + "ident": "KE-6208", + "type": "small_airport", + "name": "Olkiombo Airport", + "latitude_deg": "-1.408586", + "longitude_deg": "35.110689", + "elevation_ft": "5011", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Olkiombo", + "scheduled_service": "no", + "gps_code": "HKOK", + "iata_code": "OLX" + }, + { + "id": "42608", + "ident": "KE-6320", + "type": "small_airport", + "name": "Laikipia Ranch Airport", + "latitude_deg": "0.5833330154418945", + "longitude_deg": "36.43333435058594", + "elevation_ft": "6100", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "42609", + "ident": "KE-6394", + "type": "small_airport", + "name": "Lunga-Lunga Airport", + "latitude_deg": "-4.52864", + "longitude_deg": "39.152237", + "elevation_ft": "193", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Lunga-Lunga", + "scheduled_service": "no" + }, + { + "id": "42610", + "ident": "KE-6396", + "type": "small_airport", + "name": "Maralal Airport", + "latitude_deg": "1.099450945854187", + "longitude_deg": "36.69509506225586", + "elevation_ft": "6450", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Maralal", + "scheduled_service": "no" + }, + { + "id": "42611", + "ident": "KE-6557", + "type": "small_airport", + "name": "Kakuma Airport", + "latitude_deg": "3.716667", + "longitude_deg": "34.866669", + "elevation_ft": "1906", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kakuma", + "scheduled_service": "no", + "gps_code": "HKKM" + }, + { + "id": "42612", + "ident": "KE-6576", + "type": "small_airport", + "name": "Taveta Airport", + "latitude_deg": "-3.3947649002075195", + "longitude_deg": "37.697757720947266", + "elevation_ft": "2988", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Taveta", + "scheduled_service": "no" + }, + { + "id": "42613", + "ident": "KE-6596", + "type": "small_airport", + "name": "Kajiado Airport", + "latitude_deg": "-1.850000023841858", + "longitude_deg": "36.78333282470703", + "elevation_ft": "5603", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kajiado", + "scheduled_service": "no" + }, + { + "id": "42614", + "ident": "KE-6646", + "type": "small_airport", + "name": "Marrian's Airport", + "latitude_deg": "-0.3405900001525879", + "longitude_deg": "36.91352462768555", + "elevation_ft": "6400", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-200", + "municipality": "Mweiga", + "scheduled_service": "no" + }, + { + "id": "42615", + "ident": "KE-6647", + "type": "small_airport", + "name": "Nginyang (Kinkang) Airport", + "latitude_deg": "0.9666669964790344", + "longitude_deg": "36.016666412353516", + "elevation_ft": "2368", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Nginyang", + "scheduled_service": "no", + "keywords": "Kinkang" + }, + { + "id": "42616", + "ident": "KE-6648", + "type": "small_airport", + "name": "Ngulia Lodge Airport", + "latitude_deg": "-2.947635", + "longitude_deg": "38.250075", + "elevation_ft": "2500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Ngulia Lodge", + "scheduled_service": "no" + }, + { + "id": "42617", + "ident": "KE-6649", + "type": "small_airport", + "name": "Takabba Airport", + "latitude_deg": "3.426179", + "longitude_deg": "40.229733", + "elevation_ft": "1991", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-500", + "municipality": "Takabba", + "scheduled_service": "no" + }, + { + "id": "42618", + "ident": "KE-6650", + "type": "small_airport", + "name": "Sololo Airport", + "latitude_deg": "3.554547071456909", + "longitude_deg": "38.64363479614258", + "elevation_ft": "2296", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Sololo", + "scheduled_service": "no" + }, + { + "id": "42619", + "ident": "KE-6656", + "type": "small_airport", + "name": "Banisa Airport", + "latitude_deg": "3.8943190574645996", + "longitude_deg": "40.32099151611328", + "elevation_ft": "2998", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-500", + "municipality": "Banisa", + "scheduled_service": "no" + }, + { + "id": "42620", + "ident": "KE-6873", + "type": "small_airport", + "name": "George Smith Farm Airport", + "latitude_deg": "0.6166669726371765", + "longitude_deg": "35.29999923706055", + "elevation_ft": "6880", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "scheduled_service": "no" + }, + { + "id": "42621", + "ident": "KE-6874", + "type": "small_airport", + "name": "Impala Farm Airport", + "latitude_deg": "0.3666670024394989", + "longitude_deg": "36.91666793823242", + "elevation_ft": "5500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Impala Farm", + "scheduled_service": "no" + }, + { + "id": "42622", + "ident": "KE-6878", + "type": "small_airport", + "name": "Shimba Hills Airport", + "latitude_deg": "-1.2356940507888794", + "longitude_deg": "39.41755676269531", + "elevation_ft": "1200", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Shimba Hills", + "scheduled_service": "no" + }, + { + "id": "42623", + "ident": "KE-6883", + "type": "small_airport", + "name": "Mount Kenya Game Ranch Airport", + "latitude_deg": "-0.045436", + "longitude_deg": "37.129827", + "elevation_ft": "7020", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Mount Kenya", + "scheduled_service": "no" + }, + { + "id": "42624", + "ident": "KE-6885", + "type": "small_airport", + "name": "Lewa Downs Airport", + "latitude_deg": "0.195346", + "longitude_deg": "37.470331", + "elevation_ft": "5500", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Lewa Downs", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lewa_Airport" + }, + { + "id": "42625", + "ident": "KE-6888", + "type": "small_airport", + "name": "Kapsumbeiwa Nandi Airport", + "latitude_deg": "0.13033999502658844", + "longitude_deg": "35.2208251953125", + "elevation_ft": "1750", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kapsumbeiwa Nandi", + "scheduled_service": "no" + }, + { + "id": "42626", + "ident": "KE-6890", + "type": "small_airport", + "name": "Baragoi Airport", + "latitude_deg": "1.7814079523086548", + "longitude_deg": "36.801368713378906", + "elevation_ft": "4202", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Baragoi", + "scheduled_service": "no" + }, + { + "id": "42627", + "ident": "KE-6893", + "type": "small_airport", + "name": "Changoi Tea Estate Airport", + "latitude_deg": "-0.476943999529", + "longitude_deg": "35.2422218323", + "elevation_ft": "6100", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Changoi Tea Estate", + "scheduled_service": "no" + }, + { + "id": "42628", + "ident": "KE-6894", + "type": "small_airport", + "name": "Borana Airport", + "latitude_deg": "0.23058299720287323", + "longitude_deg": "37.2841682434082", + "elevation_ft": "6100", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Borana", + "scheduled_service": "no" + }, + { + "id": "42629", + "ident": "KE-6907", + "type": "small_airport", + "name": "Kambi Ya Samaki Airport", + "latitude_deg": "-2.316667079925537", + "longitude_deg": "37.91666793823242", + "elevation_ft": "3093", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-400", + "municipality": "Kambi Ya", + "scheduled_service": "no" + }, + { + "id": "42630", + "ident": "KE-6911", + "type": "small_airport", + "name": "Samburu North Airport", + "latitude_deg": "-3.766666889190674", + "longitude_deg": "39.28333282470703", + "elevation_ft": "967", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Koitogo", + "scheduled_service": "no" + }, + { + "id": "42631", + "ident": "KE-6920", + "type": "small_airport", + "name": "Masalani (Fanjaa) Airport", + "latitude_deg": "-1.6956549882888794", + "longitude_deg": "40.1257209777832", + "elevation_ft": "150", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Masalani", + "scheduled_service": "no" + }, + { + "id": "42632", + "ident": "KE-6924", + "type": "small_airport", + "name": "Mado Gashi Airport", + "latitude_deg": "0.7223730087280273", + "longitude_deg": "39.176143646240234", + "elevation_ft": "1000", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-500", + "municipality": "Mado Gashi", + "scheduled_service": "no" + }, + { + "id": "42633", + "ident": "KE-6937", + "type": "small_airport", + "name": "Lokichar Airport", + "latitude_deg": "2.3833329677581787", + "longitude_deg": "35.650001525878906", + "elevation_ft": "2440", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Lokichar", + "scheduled_service": "no" + }, + { + "id": "42634", + "ident": "KE-6946", + "type": "small_airport", + "name": "Kapenguria (Kisiaunet) Airport", + "latitude_deg": "1.2693220376968384", + "longitude_deg": "35.076324462890625", + "elevation_ft": "6482", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kapenguria", + "scheduled_service": "no" + }, + { + "id": "42635", + "ident": "KE-6951", + "type": "small_airport", + "name": "Hulugho Airport", + "latitude_deg": "-1.135972023010254", + "longitude_deg": "41.05097198486328", + "elevation_ft": "490", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-500", + "municipality": "Hulugho", + "scheduled_service": "no" + }, + { + "id": "42636", + "ident": "KE-6957", + "type": "small_airport", + "name": "Aruba Airport", + "latitude_deg": "-3.3333330154418945", + "longitude_deg": "38.766666412353516", + "elevation_ft": "1300", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Aruba", + "scheduled_service": "no" + }, + { + "id": "42637", + "ident": "KE-6978", + "type": "small_airport", + "name": "Kerio Valley Airport", + "latitude_deg": "0.3196380138397217", + "longitude_deg": "35.662559509277344", + "elevation_ft": "4325", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kimwarer", + "scheduled_service": "no", + "iata_code": "KRV" + }, + { + "id": "42638", + "ident": "KE-6996", + "type": "small_airport", + "name": "Kapchomuswo (Kabarnet) Airport", + "latitude_deg": "0.536848", + "longitude_deg": "35.728044", + "elevation_ft": "6205", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kapchomuswo", + "scheduled_service": "no", + "keywords": "Kabarnet" + }, + { + "id": "42639", + "ident": "KE-KIU", + "type": "small_airport", + "name": "Kiunga Airport", + "latitude_deg": "-1.7438290119171143", + "longitude_deg": "41.484344482421875", + "elevation_ft": "1", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Kiunga", + "scheduled_service": "no", + "iata_code": "KIU" + }, + { + "id": "31796", + "ident": "KE-LBK", + "type": "small_airport", + "name": "Liboi Airport", + "latitude_deg": "0.3483330011367798", + "longitude_deg": "40.88169860839844", + "elevation_ft": "280", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-500", + "municipality": "Liboi", + "scheduled_service": "no", + "iata_code": "LBK" + }, + { + "id": "42640", + "ident": "KE-LBN", + "type": "small_airport", + "name": "Lake Baringo Airport", + "latitude_deg": "0.6661030054092407", + "longitude_deg": "36.104190826416016", + "elevation_ft": "3226", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Lake Baringo", + "scheduled_service": "no", + "iata_code": "LBN" + }, + { + "id": "42641", + "ident": "KE-LKU", + "type": "small_airport", + "name": "Lake Rudolf Airport", + "latitude_deg": "3.416256", + "longitude_deg": "35.885468", + "elevation_ft": "1300", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-700", + "municipality": "Kalokol", + "scheduled_service": "no", + "iata_code": "LKU" + }, + { + "id": "42643", + "ident": "KE-MUM", + "type": "small_airport", + "name": "Mumias Airport", + "latitude_deg": "0.355399", + "longitude_deg": "34.528234", + "elevation_ft": "4163", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-900", + "municipality": "Mumias", + "scheduled_service": "no", + "iata_code": "MUM" + }, + { + "id": "19682", + "ident": "KE01", + "type": "small_airport", + "name": "Roy Hurd Memorial Airport", + "latitude_deg": "31.582500457764", + "longitude_deg": "-102.90899658203", + "elevation_ft": "2615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Monahans", + "scheduled_service": "no", + "gps_code": "E01", + "iata_code": "MIF", + "local_code": "E01", + "home_link": "http://www.cityofmonahans.org/index.asp?SEC=63860F5B-0F7B-4986-B494-851041B4C76D&Type=B_BASIC" + }, + { + "id": "19683", + "ident": "KE05", + "type": "small_airport", + "name": "Hatch Municipal Airport", + "latitude_deg": "32.661098480225", + "longitude_deg": "-107.19799804688", + "elevation_ft": "4080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Hatch", + "scheduled_service": "no", + "gps_code": "E05", + "local_code": "E05" + }, + { + "id": "19684", + "ident": "KE06", + "type": "small_airport", + "name": "Lea County-Zip Franklin Memorial Airport", + "latitude_deg": "32.95254", + "longitude_deg": "-103.40993", + "elevation_ft": "3979", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Lovington", + "scheduled_service": "no", + "gps_code": "KE06", + "local_code": "E06", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lea_County-Zip_Franklin_Memorial_Airport" + }, + { + "id": "19685", + "ident": "KE11", + "type": "small_airport", + "name": "Andrews County Airport", + "latitude_deg": "32.331100463867", + "longitude_deg": "-102.5299987793", + "elevation_ft": "3174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Andrews", + "scheduled_service": "no", + "gps_code": "E11", + "local_code": "E11", + "wikipedia_link": "https://en.wikipedia.org/wiki/Andrews_County_Airport" + }, + { + "id": "19686", + "ident": "KE13", + "type": "small_airport", + "name": "Crane County Airport", + "latitude_deg": "31.415100097699998", + "longitude_deg": "-102.362998962", + "elevation_ft": "2552", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crane", + "scheduled_service": "no", + "gps_code": "E13", + "iata_code": "CCG", + "local_code": "E13" + }, + { + "id": "19687", + "ident": "KE14", + "type": "small_airport", + "name": "Ohkay Owingeh Airport", + "latitude_deg": "36.0299987793", + "longitude_deg": "-106.04599762", + "elevation_ft": "5790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Espanola", + "scheduled_service": "no", + "gps_code": "E14", + "iata_code": "ESO", + "local_code": "E14", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ohkay_Owingeh_Airport", + "keywords": "Q14" + }, + { + "id": "19688", + "ident": "KE16", + "type": "small_airport", + "name": "San Martin Airport", + "latitude_deg": "37.08160019", + "longitude_deg": "-121.5970001", + "elevation_ft": "281", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Martin", + "scheduled_service": "no", + "gps_code": "E16", + "local_code": "E16", + "home_link": "http://www.countyairports.org/san.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/South_County_Airport", + "keywords": "Q99, South County Airport of Santa Clara County" + }, + { + "id": "19689", + "ident": "KE19", + "type": "small_airport", + "name": "Gruver Municipal Airport", + "latitude_deg": "36.233699798584", + "longitude_deg": "-101.43199920654", + "elevation_ft": "3205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gruver", + "scheduled_service": "no", + "gps_code": "E19", + "local_code": "E19" + }, + { + "id": "19690", + "ident": "KE24", + "type": "small_airport", + "name": "Whiteriver Airport", + "latitude_deg": "33.810175", + "longitude_deg": "-109.986555", + "elevation_ft": "5153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Whiteriver", + "scheduled_service": "no", + "iata_code": "WTR", + "local_code": "E24", + "wikipedia_link": "https://en.wikipedia.org/wiki/Whiteriver_Airport" + }, + { + "id": "19691", + "ident": "KE25", + "type": "small_airport", + "name": "Wickenburg Municipal Airport", + "latitude_deg": "33.96889877", + "longitude_deg": "-112.7990036", + "elevation_ft": "2377", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wickenburg", + "scheduled_service": "no", + "gps_code": "E25", + "local_code": "E25", + "home_link": "http://www.ci.wickenburg.az.us/108/Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wickenburg_Municipal_Airport" + }, + { + "id": "19692", + "ident": "KE26", + "type": "small_airport", + "name": "Lea County-Jal Airport", + "latitude_deg": "32.131099700928", + "longitude_deg": "-103.1549987793", + "elevation_ft": "3118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Jal", + "scheduled_service": "no", + "gps_code": "E26", + "local_code": "E26", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lea_County-Jal_Airport" + }, + { + "id": "19693", + "ident": "KE30", + "type": "small_airport", + "name": "Bruce Field", + "latitude_deg": "31.674499511719", + "longitude_deg": "-99.976997375488", + "elevation_ft": "1738", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ballinger", + "scheduled_service": "no", + "gps_code": "E30", + "local_code": "E30" + }, + { + "id": "19694", + "ident": "KE34", + "type": "small_airport", + "name": "Smiley Johnson Municipal Airport-Bass Field", + "latitude_deg": "34.91149902", + "longitude_deg": "-100.8690033", + "elevation_ft": "2833", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Clarendon", + "scheduled_service": "no", + "gps_code": "E34", + "local_code": "E34" + }, + { + "id": "19695", + "ident": "KE35", + "type": "small_airport", + "name": "Fabens Airport", + "latitude_deg": "31.517142", + "longitude_deg": "-106.149302", + "elevation_ft": "3679", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fabens", + "scheduled_service": "no", + "local_code": "E35" + }, + { + "id": "19696", + "ident": "KE38", + "type": "small_airport", + "name": "Alpine Casparis Municipal Airport", + "latitude_deg": "30.384199142499998", + "longitude_deg": "-103.683998108", + "elevation_ft": "4515", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alpine", + "scheduled_service": "no", + "iata_code": "ALE", + "local_code": "E38", + "home_link": "http://www.ci.alpine.tx.us/airport.shtml", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alpine-Casparis_Municipal_Airport" + }, + { + "id": "19697", + "ident": "KE41", + "type": "small_airport", + "name": "Reagan County Airport", + "latitude_deg": "31.198900222800003", + "longitude_deg": "-101.472999573", + "elevation_ft": "2706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "E41", + "local_code": "E41" + }, + { + "id": "19698", + "ident": "KE42", + "type": "small_airport", + "name": "Spearman Municipal Airport", + "latitude_deg": "36.221000671387", + "longitude_deg": "-101.19499969482", + "elevation_ft": "3090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Spearman", + "scheduled_service": "no", + "gps_code": "E42", + "local_code": "E42" + }, + { + "id": "19699", + "ident": "KE45", + "type": "small_airport", + "name": "Pine Mountain Lake Airport", + "latitude_deg": "37.861528", + "longitude_deg": "-120.178176", + "elevation_ft": "2930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Groveland", + "scheduled_service": "no", + "local_code": "E45", + "home_link": "http://www.pmlaa.org/fly-info.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pine_Mountain_Lake_Airport", + "keywords": "Q68" + }, + { + "id": "19700", + "ident": "KE48", + "type": "small_airport", + "name": "Upton County Airport", + "latitude_deg": "31.125099", + "longitude_deg": "-102.224998", + "elevation_ft": "2433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "McCamey", + "scheduled_service": "no", + "local_code": "E48" + }, + { + "id": "19701", + "ident": "KE51", + "type": "small_airport", + "name": "Bagdad Airport", + "latitude_deg": "34.592796", + "longitude_deg": "-113.171993", + "elevation_ft": "4183", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bagdad", + "scheduled_service": "no", + "iata_code": "BGT", + "local_code": "E51", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bagdad_Airport" + }, + { + "id": "19702", + "ident": "KE52", + "type": "small_airport", + "name": "Oldham County Airport", + "latitude_deg": "35.231998443604", + "longitude_deg": "-102.3990020752", + "elevation_ft": "3995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Vega", + "scheduled_service": "no", + "gps_code": "E52", + "local_code": "E52" + }, + { + "id": "19703", + "ident": "KE57", + "type": "small_airport", + "name": "Denver City Airport", + "latitude_deg": "32.976466", + "longitude_deg": "-102.84231", + "elevation_ft": "3575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Denver City", + "scheduled_service": "no", + "gps_code": "KE57", + "local_code": "E57" + }, + { + "id": "19704", + "ident": "KE60", + "type": "small_airport", + "name": "Eloy Municipal Airport", + "latitude_deg": "32.806999206543", + "longitude_deg": "-111.58699798584", + "elevation_ft": "1513", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Eloy", + "scheduled_service": "no", + "gps_code": "E60", + "local_code": "E60", + "home_link": "http://eloyaz.gov/187/Airport" + }, + { + "id": "19705", + "ident": "KE63", + "type": "small_airport", + "name": "Gila Bend Municipal Airport", + "latitude_deg": "32.95809937", + "longitude_deg": "-112.6780014", + "elevation_ft": "789", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gila Bend", + "scheduled_service": "no", + "gps_code": "E63", + "local_code": "E63", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gila_Bend_Municipal_Airport" + }, + { + "id": "19706", + "ident": "KE67", + "type": "small_airport", + "name": "Kearny Airport", + "latitude_deg": "33.04759979248", + "longitude_deg": "-110.90899658203", + "elevation_ft": "1833", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Kearny", + "scheduled_service": "no", + "gps_code": "E67", + "local_code": "E67", + "home_link": "http://www.townofkearny.com/departments.html#airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kearny_Airport_(Arizona)" + }, + { + "id": "19707", + "ident": "KE77", + "type": "small_airport", + "name": "San Manuel Airport", + "latitude_deg": "32.636501312256", + "longitude_deg": "-110.64700317383", + "elevation_ft": "3274", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "San Manuel", + "scheduled_service": "no", + "gps_code": "E77", + "local_code": "E77" + }, + { + "id": "19708", + "ident": "KE78", + "type": "small_airport", + "name": "Sells Airport", + "latitude_deg": "31.932899475098", + "longitude_deg": "-111.89399719238", + "elevation_ft": "2409", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sells", + "scheduled_service": "no", + "gps_code": "E78", + "local_code": "E78" + }, + { + "id": "19709", + "ident": "KE80", + "type": "small_airport", + "name": "Belen Regional Airport", + "latitude_deg": "34.645198", + "longitude_deg": "-106.834", + "elevation_ft": "5194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Belen", + "scheduled_service": "no", + "gps_code": "KBRG", + "local_code": "BRG", + "home_link": "http://www.belen-nm.gov/departments/alex_mun_airport/alexMunicipalAirport.htm", + "keywords": "E80, Alexander Municipal Airport" + }, + { + "id": "19710", + "ident": "KE89", + "type": "small_airport", + "name": "Conchas Lake Airport", + "latitude_deg": "35.367866", + "longitude_deg": "-104.180881", + "elevation_ft": "4230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Conchas Dam", + "scheduled_service": "no", + "local_code": "E89", + "wikipedia_link": "https://en.wikipedia.org/wiki/Conchas_Lake_Airport" + }, + { + "id": "19711", + "ident": "KE91", + "type": "small_airport", + "name": "Chinle Municipal Airport", + "latitude_deg": "36.110900878906", + "longitude_deg": "-109.57499694824", + "elevation_ft": "5547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Chinle", + "scheduled_service": "no", + "gps_code": "E91", + "local_code": "E91", + "home_link": "http://navajoairports.com/airports/chinle-municipal-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chinle_Municipal_Airport" + }, + { + "id": "19712", + "ident": "KE95", + "type": "small_airport", + "name": "Benson Municipal Airport", + "latitude_deg": "31.999396", + "longitude_deg": "-110.358224", + "elevation_ft": "3829", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Benson", + "scheduled_service": "no", + "gps_code": "KE95", + "local_code": "E95", + "home_link": "http://www.cityofbenson.com/index.asp?SEC=8D68F1E2-1D01-4429-B1E0-949F9E69008B&DE=5535AE28-BE41-4B3B-AAB4-153C66567159&Type=B_BA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Benson_Municipal_Airport_(Arizona)" + }, + { + "id": "19713", + "ident": "KE98", + "type": "small_airport", + "name": "Mid Valley Airpark", + "latitude_deg": "34.759799957275", + "longitude_deg": "-106.74500274658", + "elevation_ft": "4830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Los Lunas", + "scheduled_service": "no", + "gps_code": "E98", + "local_code": "E98", + "home_link": "http://www.midvalleyairpark.com/" + }, + { + "id": "19714", + "ident": "KEAG", + "type": "small_airport", + "name": "Eagle Grove Municipal Airport", + "latitude_deg": "42.709800720214844", + "longitude_deg": "-93.91609954833984", + "elevation_ft": "1133", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Eagle Grove", + "scheduled_service": "no", + "gps_code": "KEAG", + "local_code": "EAG" + }, + { + "id": "19715", + "ident": "KEAN", + "type": "small_airport", + "name": "Phifer Airfield", + "latitude_deg": "42.0555", + "longitude_deg": "-104.929001", + "elevation_ft": "4776", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Wheatland", + "scheduled_service": "no", + "gps_code": "KEAN", + "iata_code": "EAN", + "local_code": "EAN" + }, + { + "id": "19716", + "ident": "KEAR", + "type": "medium_airport", + "name": "Kearney Regional Airport", + "latitude_deg": "40.727001", + "longitude_deg": "-99.006798", + "elevation_ft": "2131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Kearney", + "scheduled_service": "yes", + "gps_code": "KEAR", + "iata_code": "EAR", + "local_code": "EAR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kearney_Municipal_Airport" + }, + { + "id": "19717", + "ident": "KEAT", + "type": "medium_airport", + "name": "Pangborn Memorial Airport", + "latitude_deg": "47.3988990784", + "longitude_deg": "-120.207000732", + "elevation_ft": "1249", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Wenatchee", + "scheduled_service": "no", + "gps_code": "KEAT", + "iata_code": "EAT", + "local_code": "EAT", + "home_link": "http://www.pangbornairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pangborn_Memorial_Airport" + }, + { + "id": "3501", + "ident": "KEAU", + "type": "medium_airport", + "name": "Chippewa Valley Regional Airport", + "latitude_deg": "44.86579895019531", + "longitude_deg": "-91.48429870605469", + "elevation_ft": "913", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Eau Claire", + "scheduled_service": "yes", + "gps_code": "KEAU", + "iata_code": "EAU", + "local_code": "EAU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chippewa_Valley_Regional_Airport" + }, + { + "id": "19718", + "ident": "KEB", + "type": "small_airport", + "name": "Nanwalek Airport", + "latitude_deg": "59.3521003723", + "longitude_deg": "-151.925003052", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nanwalek", + "scheduled_service": "no", + "gps_code": "KEB", + "iata_code": "KEB", + "local_code": "KEB", + "wikipedia_link": "https://en.wikipedia.org/wiki/English_Bay_Airport", + "keywords": "English Bay" + }, + { + "id": "316110", + "ident": "KEBD", + "type": "small_airport", + "name": "Appalachian Regional Airport", + "latitude_deg": "37.6818", + "longitude_deg": "-82.1221", + "elevation_ft": "1883", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Varney", + "scheduled_service": "no", + "gps_code": "KEBD", + "local_code": "EBD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Appalachian_Regional_Airport" + }, + { + "id": "19719", + "ident": "KEBG", + "type": "small_airport", + "name": "South Texas International at Edinburg Airport", + "latitude_deg": "26.4417", + "longitude_deg": "-98.1222", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Edinburg", + "scheduled_service": "no", + "gps_code": "KEBG", + "local_code": "EBG", + "home_link": "https://cityofedinburg.com/departments/airport/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/South_Texas_International_Airport_at_Edinburg", + "keywords": "25R, Edinburg International" + }, + { + "id": "19720", + "ident": "KEBS", + "type": "small_airport", + "name": "Webster City Municipal Airport", + "latitude_deg": "42.43659973", + "longitude_deg": "-93.86889648", + "elevation_ft": "1122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Webster City", + "scheduled_service": "no", + "gps_code": "KEBS", + "iata_code": "EBS", + "local_code": "EBS" + }, + { + "id": "316113", + "ident": "KEBY", + "type": "heliport", + "name": "US Coast Guard Station Neah Bay Heliport", + "latitude_deg": "48.3704528", + "longitude_deg": "-124.5981194", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Neah Bay", + "scheduled_service": "no", + "gps_code": "KEBY", + "local_code": "EBY", + "home_link": "http://www.uscg.mil/d13/staneahbay/staneahbay.asp" + }, + { + "id": "3502", + "ident": "KECG", + "type": "medium_airport", + "name": "Elizabeth City Regional Airport & Coast Guard Air Station", + "latitude_deg": "36.260601", + "longitude_deg": "-76.174599", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Elizabeth City", + "scheduled_service": "no", + "gps_code": "KECG", + "iata_code": "ECG", + "local_code": "ECG", + "home_link": "http://www.ecgairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elizabeth_City_Regional_Airport" + }, + { + "id": "46530", + "ident": "KECP", + "type": "medium_airport", + "name": "Northwest Florida Beaches International Airport", + "latitude_deg": "30.357106", + "longitude_deg": "-85.795414", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City Beach", + "scheduled_service": "yes", + "gps_code": "KECP", + "iata_code": "ECP", + "local_code": "ECP", + "home_link": "http://iflybeaches.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Northwest_Florida_Beaches_International_Airport", + "keywords": "Northwest Florida Beaches International Airport" + }, + { + "id": "19721", + "ident": "KECS", + "type": "small_airport", + "name": "Mondell Field", + "latitude_deg": "43.88379", + "longitude_deg": "-104.314156", + "elevation_ft": "4174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Newcastle", + "scheduled_service": "no", + "gps_code": "KECS", + "iata_code": "ECS", + "local_code": "ECS" + }, + { + "id": "19722", + "ident": "KECU", + "type": "small_airport", + "name": "Edwards County Airport", + "latitude_deg": "29.9468994140625", + "longitude_deg": "-100.17400360107422", + "elevation_ft": "2372", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rocksprings", + "scheduled_service": "no", + "gps_code": "KECU", + "local_code": "ECU" + }, + { + "id": "45955", + "ident": "KEDC", + "type": "small_airport", + "name": "Austin Executive Airport", + "latitude_deg": "30.398049", + "longitude_deg": "-97.566909", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pflugerville", + "scheduled_service": "no", + "gps_code": "KEDC", + "local_code": "EDC", + "keywords": "6R4, Bird's Nest" + }, + { + "id": "19723", + "ident": "KEDE", + "type": "small_airport", + "name": "Northeastern Regional Airport", + "latitude_deg": "36.027698516799994", + "longitude_deg": "-76.56710052490001", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Edenton", + "scheduled_service": "no", + "gps_code": "KEDE", + "iata_code": "EDE", + "local_code": "EDE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Northeastern_Regional_Airport", + "keywords": "MCAS Edenton, NAAS Edenton" + }, + { + "id": "19724", + "ident": "KEDG", + "type": "small_airport", + "name": "Weide (Aberdeen Proving Ground) Army Heliport", + "latitude_deg": "39.391602", + "longitude_deg": "-76.2911", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Edgewood Arsenal", + "scheduled_service": "no", + "gps_code": "KEDG", + "local_code": "EDG" + }, + { + "id": "19725", + "ident": "KEDJ", + "type": "small_airport", + "name": "Bellefontaine Regional Airport", + "latitude_deg": "40.37229919", + "longitude_deg": "-83.81900024", + "elevation_ft": "1122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bellefontaine", + "scheduled_service": "no", + "gps_code": "KEDJ", + "local_code": "EDJ" + }, + { + "id": "19726", + "ident": "KEDN", + "type": "small_airport", + "name": "Enterprise Municipal Airport", + "latitude_deg": "31.29969978", + "longitude_deg": "-85.89990234", + "elevation_ft": "361", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Enterprise", + "scheduled_service": "no", + "gps_code": "KEDN", + "iata_code": "ETS", + "local_code": "EDN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Enterprise_Municipal_Airport_(Alabama)" + }, + { + "id": "17175", + "ident": "KEDU", + "type": "small_airport", + "name": "University Airport", + "latitude_deg": "38.53150177001953", + "longitude_deg": "-121.78600311279297", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Davis", + "scheduled_service": "no", + "gps_code": "KEDU", + "local_code": "EDU", + "wikipedia_link": "https://en.wikipedia.org/wiki/University_Airport" + }, + { + "id": "3503", + "ident": "KEDW", + "type": "medium_airport", + "name": "Edwards Air Force Base", + "latitude_deg": "34.905399", + "longitude_deg": "-117.884003", + "elevation_ft": "2312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Edwards", + "scheduled_service": "no", + "gps_code": "KEDW", + "iata_code": "EDW", + "local_code": "EDW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Edwards_Air_Force_Base" + }, + { + "id": "334847", + "ident": "KEE0", + "type": "small_airport", + "name": "Eloy Farms Airstrip", + "latitude_deg": "32.686198", + "longitude_deg": "-111.547097", + "elevation_ft": "1555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Eloy", + "scheduled_service": "no", + "local_code": "EE0" + }, + { + "id": "19727", + "ident": "KEED", + "type": "medium_airport", + "name": "Needles Airport", + "latitude_deg": "34.7663002014", + "longitude_deg": "-114.623001099", + "elevation_ft": "983", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Needles", + "scheduled_service": "no", + "gps_code": "KEED", + "iata_code": "EED", + "local_code": "EED", + "home_link": "http://cms.sbcounty.gov/airports/Airports/Needles.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Needles_Airport", + "keywords": "Needles AAF" + }, + { + "id": "3504", + "ident": "KEEN", + "type": "medium_airport", + "name": "Dillant Hopkins Airport", + "latitude_deg": "42.898399", + "longitude_deg": "-72.270798", + "elevation_ft": "488", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Keene", + "scheduled_service": "no", + "gps_code": "KEEN", + "iata_code": "EEN", + "local_code": "EEN", + "home_link": "https://ci.keene.nh.us/keene-dillant-hopkins-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dillant-Hopkins_Airport" + }, + { + "id": "19728", + "ident": "KEEO", + "type": "small_airport", + "name": "Meeker Airport", + "latitude_deg": "40.04880142211914", + "longitude_deg": "-107.88600158691406", + "elevation_ft": "6421", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Meeker", + "scheduled_service": "no", + "gps_code": "KEEO", + "local_code": "EEO" + }, + { + "id": "19729", + "ident": "KEET", + "type": "medium_airport", + "name": "Shelby County Airport", + "latitude_deg": "33.17699814", + "longitude_deg": "-86.78279877", + "elevation_ft": "586", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Alabaster", + "scheduled_service": "no", + "gps_code": "KEET", + "local_code": "EET", + "home_link": "https://al-shelbycountytourism.civicplus.com/index.aspx?nid=109", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shelby_County_Airport_(Alabama)", + "keywords": "21A" + }, + { + "id": "19730", + "ident": "KEFC", + "type": "small_airport", + "name": "Belle Fourche Municipal Airport", + "latitude_deg": "44.73419952", + "longitude_deg": "-103.8619995", + "elevation_ft": "3191", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Belle Fourche", + "scheduled_service": "no", + "gps_code": "KEFC", + "local_code": "EFC" + }, + { + "id": "19731", + "ident": "KEFD", + "type": "medium_airport", + "name": "Ellington Airport", + "latitude_deg": "29.607299804700002", + "longitude_deg": "-95.1587982178", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "KEFD", + "iata_code": "EFD", + "local_code": "EFD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ellington_Airport_(Texas)", + "keywords": "Ellington Field" + }, + { + "id": "19732", + "ident": "KEFK", + "type": "small_airport", + "name": "Northeast Kingdom International Airport", + "latitude_deg": "44.888802", + "longitude_deg": "-72.229202", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "KEFK", + "iata_code": "EFK", + "local_code": "EFK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Newport_State_Airport_(Vermont)", + "keywords": "Newport State Airport" + }, + { + "id": "19733", + "ident": "KEFT", + "type": "small_airport", + "name": "Monroe Municipal Airport", + "latitude_deg": "42.614898681640625", + "longitude_deg": "-89.59040069580078", + "elevation_ft": "1086", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "KEFT", + "local_code": "EFT" + }, + { + "id": "19734", + "ident": "KEFW", + "type": "small_airport", + "name": "Jefferson Municipal Airport", + "latitude_deg": "42.0102005", + "longitude_deg": "-94.34259796", + "elevation_ft": "1044", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Jefferson", + "scheduled_service": "no", + "gps_code": "KEFW", + "iata_code": "EFW", + "local_code": "EFW", + "home_link": "http://cityofjeffersoniowa.org/depts-airport.php", + "keywords": "Don Monthei Airfield" + }, + { + "id": "307905", + "ident": "KEG", + "type": "small_airport", + "name": "Keglsugl Airport", + "latitude_deg": "-5.83277777778", + "longitude_deg": "145.097222222", + "elevation_ft": "8400", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPK", + "municipality": "Denglagu Mission", + "scheduled_service": "no", + "gps_code": "AYLG", + "iata_code": "KEG", + "local_code": "KEG" + }, + { + "id": "3505", + "ident": "KEGE", + "type": "medium_airport", + "name": "Eagle County Regional Airport", + "latitude_deg": "39.64260101", + "longitude_deg": "-106.9179993", + "elevation_ft": "6548", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Eagle", + "scheduled_service": "yes", + "gps_code": "KEGE", + "iata_code": "EGE", + "local_code": "EGE", + "home_link": "http://www.eaglecounty.us/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eagle_County_Regional_Airport" + }, + { + "id": "19735", + "ident": "KEGI", + "type": "medium_airport", + "name": "Duke Field", + "latitude_deg": "30.65040016", + "longitude_deg": "-86.52290344", + "elevation_ft": "191", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Crestview", + "scheduled_service": "no", + "gps_code": "KEGI", + "iata_code": "EGI", + "local_code": "EGI", + "home_link": "http://www.919sow.afrc.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Duke_Field", + "keywords": "Eglin AF Auxiliary Number 3" + }, + { + "id": "19736", + "ident": "KEGQ", + "type": "small_airport", + "name": "Emmetsburg Municipal Airport", + "latitude_deg": "43.10200119018555", + "longitude_deg": "-94.70469665527344", + "elevation_ft": "1205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Emmetsburg", + "scheduled_service": "no", + "gps_code": "KEGQ", + "local_code": "EGQ" + }, + { + "id": "19737", + "ident": "KEGT", + "type": "small_airport", + "name": "Wellington Municipal Airport", + "latitude_deg": "37.32360076904297", + "longitude_deg": "-97.38829803466797", + "elevation_ft": "1277", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wellington", + "scheduled_service": "no", + "gps_code": "KEGT", + "local_code": "EGT" + }, + { + "id": "19738", + "ident": "KEGV", + "type": "small_airport", + "name": "Eagle River Union Airport", + "latitude_deg": "45.932300567599995", + "longitude_deg": "-89.26830291750001", + "elevation_ft": "1642", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Eagle River", + "scheduled_service": "no", + "gps_code": "KEGV", + "iata_code": "EGV", + "local_code": "EGV", + "home_link": "http://www.erairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eagle_River_Union_Airport" + }, + { + "id": "19739", + "ident": "KEHA", + "type": "small_airport", + "name": "Elkhart Morton County Airport", + "latitude_deg": "37.000702", + "longitude_deg": "-101.879997", + "elevation_ft": "3622", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Elkhart", + "scheduled_service": "no", + "gps_code": "KEHA", + "local_code": "EHA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elkhart%E2%80%93Morton_County_Airport" + }, + { + "id": "19740", + "ident": "KEHO", + "type": "small_airport", + "name": "Shelby-Cleveland County Regional Airport", + "latitude_deg": "35.25559998", + "longitude_deg": "-81.60099792", + "elevation_ft": "847", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Shelby", + "scheduled_service": "no", + "gps_code": "KEHO", + "local_code": "EHO" + }, + { + "id": "19741", + "ident": "KEHR", + "type": "small_airport", + "name": "Henderson City County Airport", + "latitude_deg": "37.80780029", + "longitude_deg": "-87.68569946", + "elevation_ft": "387", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Henderson", + "scheduled_service": "no", + "gps_code": "KEHR", + "local_code": "EHR" + }, + { + "id": "29838", + "ident": "KEHT", + "type": "closed", + "name": "East Hartford Airport", + "latitude_deg": "41.75419998168945", + "longitude_deg": "-72.62470245361328", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Hartford", + "scheduled_service": "no", + "gps_code": "KEHT", + "local_code": "EHT" + }, + { + "id": "19742", + "ident": "KEIK", + "type": "small_airport", + "name": "Erie Municipal Airport", + "latitude_deg": "40.010200500488", + "longitude_deg": "-105.047996521", + "elevation_ft": "5130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Erie", + "scheduled_service": "no", + "gps_code": "KEIK", + "local_code": "EIK", + "home_link": "https://www.erieco.gov/93/Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Erie_Municipal_Airport", + "keywords": "48V" + }, + { + "id": "19743", + "ident": "KEIW", + "type": "small_airport", + "name": "County Memorial Airport", + "latitude_deg": "36.53530121", + "longitude_deg": "-89.59970093", + "elevation_ft": "296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "New Madrid", + "scheduled_service": "no", + "gps_code": "KEIW", + "local_code": "EIW" + }, + { + "id": "19744", + "ident": "KEK", + "type": "small_airport", + "name": "Ekwok Airport", + "latitude_deg": "59.3568000793457", + "longitude_deg": "-157.4709930419922", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ekwok", + "scheduled_service": "no", + "gps_code": "KEK", + "iata_code": "KEK", + "local_code": "KEK" + }, + { + "id": "3506", + "ident": "KEKA", + "type": "medium_airport", + "name": "Murray Field", + "latitude_deg": "40.803398132299996", + "longitude_deg": "-124.112998962", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Eureka", + "scheduled_service": "no", + "gps_code": "KEKA", + "iata_code": "EKA", + "local_code": "EKA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Murray_Field" + }, + { + "id": "19745", + "ident": "KEKM", + "type": "small_airport", + "name": "Elkhart Municipal Airport", + "latitude_deg": "41.7193984985", + "longitude_deg": "-86.00319671630001", + "elevation_ft": "778", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Elkhart", + "scheduled_service": "no", + "gps_code": "KEKM", + "iata_code": "EKI", + "local_code": "EKM", + "home_link": "http://www.elkhartindiana.org/department/index.php?structureid=2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elkhart_Municipal_Airport" + }, + { + "id": "3507", + "ident": "KEKN", + "type": "medium_airport", + "name": "Elkins-Randolph County Regional Airport", + "latitude_deg": "38.889759", + "longitude_deg": "-79.857651", + "elevation_ft": "1987", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Elkins", + "scheduled_service": "no", + "gps_code": "KEKN", + "iata_code": "EKN", + "local_code": "EKN", + "home_link": "http://www.elkinsairport.com/" + }, + { + "id": "3508", + "ident": "KEKO", + "type": "medium_airport", + "name": "Elko Regional Airport", + "latitude_deg": "40.82490158081055", + "longitude_deg": "-115.79199981689453", + "elevation_ft": "5140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Elko", + "scheduled_service": "yes", + "gps_code": "KEKO", + "iata_code": "EKO", + "local_code": "EKO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elko_Regional_Airport" + }, + { + "id": "19746", + "ident": "KEKQ", + "type": "small_airport", + "name": "Wayne County Airport", + "latitude_deg": "36.85530090332031", + "longitude_deg": "-84.8561019897461", + "elevation_ft": "963", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Monticello", + "scheduled_service": "no", + "gps_code": "KEKQ", + "local_code": "EKQ" + }, + { + "id": "19747", + "ident": "KEKS", + "type": "small_airport", + "name": "Ennis Big Sky Airport", + "latitude_deg": "45.271801", + "longitude_deg": "-111.649002", + "elevation_ft": "5423", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Ennis", + "scheduled_service": "no", + "gps_code": "KEKS", + "local_code": "EKS", + "keywords": "5U3" + }, + { + "id": "19748", + "ident": "KEKX", + "type": "small_airport", + "name": "Addington Field / Elizabethtown Regional Airport", + "latitude_deg": "37.686001", + "longitude_deg": "-85.925003", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Elizabethtown", + "scheduled_service": "no", + "gps_code": "KEKX", + "iata_code": "EKX", + "local_code": "EKX", + "home_link": "http://www.ekxairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elizabethtown_Regional_Airport" + }, + { + "id": "19749", + "ident": "KEKY", + "type": "small_airport", + "name": "Bessemer Airport", + "latitude_deg": "33.312901", + "longitude_deg": "-86.925903", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Bessemer", + "scheduled_service": "no", + "gps_code": "KEKY", + "local_code": "EKY", + "home_link": "https://www.bessemerairportauthority.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bessemer_Airport", + "keywords": "2A3" + }, + { + "id": "19750", + "ident": "KELA", + "type": "small_airport", + "name": "Eagle Lake Airport", + "latitude_deg": "29.600599288900003", + "longitude_deg": "-96.3218994141", + "elevation_ft": "184", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eagle Lake", + "scheduled_service": "no", + "gps_code": "KELA", + "iata_code": "ELA", + "local_code": "ELA" + }, + { + "id": "3509", + "ident": "KELD", + "type": "medium_airport", + "name": "South Arkansas Regional Airport at Goodwin Field", + "latitude_deg": "33.221001", + "longitude_deg": "-92.813301", + "elevation_ft": "277", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "El Dorado", + "scheduled_service": "yes", + "gps_code": "KELD", + "iata_code": "ELD", + "local_code": "ELD", + "wikipedia_link": "https://en.wikipedia.org/wiki/South_Arkansas_Regional_Airport_at_Goodwin_Field" + }, + { + "id": "19751", + "ident": "KELK", + "type": "small_airport", + "name": "Elk City Regional Business Airport", + "latitude_deg": "35.43080139", + "longitude_deg": "-99.39430237", + "elevation_ft": "2013", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Elk City", + "scheduled_service": "no", + "gps_code": "KELK", + "iata_code": "ELK", + "local_code": "ELK", + "home_link": "http://www.elkcityairport.com/default.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elk_City_Regional_Business_Airport" + }, + { + "id": "3510", + "ident": "KELM", + "type": "medium_airport", + "name": "Elmira Corning Regional Airport", + "latitude_deg": "42.1599006652832", + "longitude_deg": "-76.8916015625", + "elevation_ft": "954", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Elmira/Corning", + "scheduled_service": "yes", + "gps_code": "KELM", + "iata_code": "ELM", + "local_code": "ELM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elmira-Corning_Regional_Airport" + }, + { + "id": "19752", + "ident": "KELN", + "type": "small_airport", + "name": "Bowers Field", + "latitude_deg": "47.03300095", + "longitude_deg": "-120.5309982", + "elevation_ft": "1764", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ellensburg", + "scheduled_service": "no", + "gps_code": "KELN", + "iata_code": "ELN", + "local_code": "ELN", + "home_link": "http://www.wsdot.wa.gov/aviation/AllStateAirports/Ellensburg_BowersField.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bowers_Airport", + "keywords": "Ellensburg Army Airfield" + }, + { + "id": "3511", + "ident": "KELO", + "type": "medium_airport", + "name": "Ely Municipal Airport", + "latitude_deg": "47.82450104", + "longitude_deg": "-91.83070374", + "elevation_ft": "1456", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Ely", + "scheduled_service": "no", + "gps_code": "KELO", + "iata_code": "LYU", + "local_code": "ELO", + "home_link": "http://www.ely.mn.us/index.asp?Type=B_BASIC&SEC=%7B936B252D-C48B-42BD-B996-37F320A6CFF7%7D", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ely_Municipal_Airport" + }, + { + "id": "3512", + "ident": "KELP", + "type": "medium_airport", + "name": "El Paso International Airport", + "latitude_deg": "31.80719948", + "longitude_deg": "-106.3779984", + "elevation_ft": "3959", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Paso", + "scheduled_service": "yes", + "gps_code": "KELP", + "iata_code": "ELP", + "local_code": "ELP", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Paso_International_Airport" + }, + { + "id": "19753", + "ident": "KELY", + "type": "medium_airport", + "name": "Ely Airport Yelland Field", + "latitude_deg": "39.29970169", + "longitude_deg": "-114.8420029", + "elevation_ft": "6259", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Ely", + "scheduled_service": "no", + "gps_code": "KELY", + "iata_code": "ELY", + "local_code": "ELY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ely_Airport" + }, + { + "id": "19754", + "ident": "KELZ", + "type": "small_airport", + "name": "Wellsville Municipal Airport - Tarantine Field", + "latitude_deg": "42.109501", + "longitude_deg": "-77.989998", + "elevation_ft": "2124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Wellsville", + "scheduled_service": "no", + "gps_code": "KELZ", + "iata_code": "ELZ", + "local_code": "ELZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wellsville_Municipal_Airport" + }, + { + "id": "19755", + "ident": "KEMM", + "type": "small_airport", + "name": "Kemmerer Municipal Airport", + "latitude_deg": "41.82410049439999", + "longitude_deg": "-110.556999207", + "elevation_ft": "7285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Kemmerer", + "scheduled_service": "no", + "gps_code": "KEMM", + "iata_code": "EMM", + "local_code": "EMM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kemmerer_Municipal_Airport" + }, + { + "id": "19756", + "ident": "KEMP", + "type": "small_airport", + "name": "Emporia Municipal Airport", + "latitude_deg": "38.3320999146", + "longitude_deg": "-96.19120025630001", + "elevation_ft": "1208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Emporia", + "scheduled_service": "no", + "gps_code": "KEMP", + "iata_code": "EMP", + "local_code": "EMP", + "home_link": "http://visitors.emporia-kansas.gov/index.php/emporia-municipal-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Emporia_Municipal_Airport" + }, + { + "id": "19757", + "ident": "KEMT", + "type": "small_airport", + "name": "San Gabriel Valley Airport", + "latitude_deg": "34.086102", + "longitude_deg": "-118.035004", + "elevation_ft": "296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "El Monte", + "scheduled_service": "no", + "gps_code": "KEMT", + "iata_code": "EMT", + "local_code": "EMT", + "home_link": "http://www.americanairports.com/Locations/EMTElMonteAirportCA.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Monte_Airport", + "keywords": "El Monte Airport" + }, + { + "id": "19758", + "ident": "KEMV", + "type": "small_airport", + "name": "Emporia Greensville Regional Airport", + "latitude_deg": "36.6869010925293", + "longitude_deg": "-77.48280334472656", + "elevation_ft": "127", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Emporia", + "scheduled_service": "no", + "gps_code": "KEMV", + "local_code": "EMV" + }, + { + "id": "3513", + "ident": "KEND", + "type": "medium_airport", + "name": "Vance Air Force Base", + "latitude_deg": "36.339199", + "longitude_deg": "-97.916496", + "elevation_ft": "1307", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Enid", + "scheduled_service": "no", + "gps_code": "KEND", + "iata_code": "END", + "local_code": "END", + "home_link": "http://www.vance.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vance_Air_Force_Base" + }, + { + "id": "19759", + "ident": "KENL", + "type": "small_airport", + "name": "Centralia Municipal Airport", + "latitude_deg": "38.515098571799996", + "longitude_deg": "-89.0911026001", + "elevation_ft": "534", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Centralia", + "scheduled_service": "no", + "gps_code": "KENL", + "iata_code": "ENL", + "local_code": "ENL" + }, + { + "id": "19760", + "ident": "KENV", + "type": "medium_airport", + "name": "Wendover Airport", + "latitude_deg": "40.7187004089", + "longitude_deg": "-114.03099823", + "elevation_ft": "4237", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Wendover", + "scheduled_service": "no", + "gps_code": "KENV", + "iata_code": "ENV", + "local_code": "ENV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wendover_Airport", + "keywords": "Wendover AFB" + }, + { + "id": "3514", + "ident": "KENW", + "type": "medium_airport", + "name": "Kenosha Regional Airport", + "latitude_deg": "42.59569931", + "longitude_deg": "-87.92780304", + "elevation_ft": "742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Kenosha", + "scheduled_service": "no", + "gps_code": "KENW", + "iata_code": "ENW", + "local_code": "ENW", + "home_link": "http://www.kenosha.org/departments/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kenosha_Regional_Airport" + }, + { + "id": "18557", + "ident": "KEOE", + "type": "small_airport", + "name": "Newberry County Airport", + "latitude_deg": "34.30929947", + "longitude_deg": "-81.63970184", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Newberry", + "scheduled_service": "no", + "gps_code": "KEOE", + "local_code": "EOE", + "keywords": "Formerly 27J" + }, + { + "id": "19761", + "ident": "KEOK", + "type": "small_airport", + "name": "Keokuk Municipal Airport", + "latitude_deg": "40.459899902299995", + "longitude_deg": "-91.4284973145", + "elevation_ft": "671", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Keokuk", + "scheduled_service": "no", + "gps_code": "KEOK", + "iata_code": "EOK", + "local_code": "EOK", + "home_link": "http://www.cityofkeokuk.org/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Keokuk_Municipal_Airport" + }, + { + "id": "19762", + "ident": "KEOP", + "type": "small_airport", + "name": "Pike County Airport", + "latitude_deg": "39.166900634765625", + "longitude_deg": "-82.9281997680664", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Waverly", + "scheduled_service": "no", + "gps_code": "KEOP", + "local_code": "EOP" + }, + { + "id": "19763", + "ident": "KEOS", + "type": "small_airport", + "name": "Neosho Hugh Robinson Airport", + "latitude_deg": "36.81079864501953", + "longitude_deg": "-94.3917007446289", + "elevation_ft": "1255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Neosho", + "scheduled_service": "no", + "gps_code": "KEOS", + "local_code": "EOS" + }, + { + "id": "19764", + "ident": "KEPH", + "type": "small_airport", + "name": "Ephrata Municipal Airport", + "latitude_deg": "47.307598", + "longitude_deg": "-119.515999", + "elevation_ft": "1276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ephrata", + "scheduled_service": "no", + "gps_code": "KEPH", + "iata_code": "EPH", + "local_code": "EPH", + "home_link": "http://www.portofephrata.com/index.htmlA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ephrata_Municipal_Airport" + }, + { + "id": "19765", + "ident": "KEPM", + "type": "small_airport", + "name": "Eastport Municipal Airport", + "latitude_deg": "44.910099029541016", + "longitude_deg": "-67.01270294189453", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Eastport", + "scheduled_service": "no", + "gps_code": "KEPM", + "local_code": "EPM" + }, + { + "id": "19766", + "ident": "KEQA", + "type": "small_airport", + "name": "Captain Jack Thomas El Dorado Airport", + "latitude_deg": "37.7741012573", + "longitude_deg": "-96.81759643550001", + "elevation_ft": "1378", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "El Dorado", + "scheduled_service": "no", + "gps_code": "KEQA", + "iata_code": "EDK", + "local_code": "EQA", + "home_link": "http://www.eldoks.com/Airport%20Cover.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Captain_Jack_Thomas/El_Dorado_Airport" + }, + { + "id": "19767", + "ident": "KEQY", + "type": "small_airport", + "name": "Charlotte-Monroe Executive Airport", + "latitude_deg": "35.01879883", + "longitude_deg": "-80.62020111", + "elevation_ft": "679", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "KEQY", + "local_code": "EQY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monroe_Regional_Airport_(North_Carolina)" + }, + { + "id": "3515", + "ident": "KERI", + "type": "medium_airport", + "name": "Erie International Tom Ridge Field", + "latitude_deg": "42.083127", + "longitude_deg": "-80.173867", + "elevation_ft": "732", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Erie", + "scheduled_service": "yes", + "gps_code": "KERI", + "iata_code": "ERI", + "local_code": "ERI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Erie_International_Airport" + }, + { + "id": "17181", + "ident": "KERR", + "type": "small_airport", + "name": "Errol Airport", + "latitude_deg": "44.7924995422", + "longitude_deg": "-71.1641998291", + "elevation_ft": "1245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Errol", + "scheduled_service": "no", + "gps_code": "KERR", + "iata_code": "ERR", + "local_code": "ERR", + "home_link": "http://www.nh.gov/dot/org/aerorailtransit/aeronautics/sasp/airports/errol.htm" + }, + { + "id": "19768", + "ident": "KERV", + "type": "small_airport", + "name": "Kerrville Municipal Louis Schreiner Field", + "latitude_deg": "29.9766998291", + "longitude_deg": "-99.08570098879999", + "elevation_ft": "1617", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kerrville", + "scheduled_service": "no", + "gps_code": "KERV", + "iata_code": "ERV", + "local_code": "ERV", + "home_link": "http://www.co.kerr.tx.us/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kerrville_Municipal_Airport" + }, + { + "id": "19769", + "ident": "KERY", + "type": "small_airport", + "name": "Luce County Airport", + "latitude_deg": "46.31119918823242", + "longitude_deg": "-85.4572982788086", + "elevation_ft": "869", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Newberry", + "scheduled_service": "no", + "gps_code": "KERY", + "local_code": "ERY" + }, + { + "id": "19770", + "ident": "KESC", + "type": "small_airport", + "name": "Delta County Airport", + "latitude_deg": "45.7226982117", + "longitude_deg": "-87.0936965942", + "elevation_ft": "609", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Escanaba", + "scheduled_service": "no", + "gps_code": "KESC", + "iata_code": "ESC", + "local_code": "ESC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Delta_County_Airport" + }, + { + "id": "3516", + "ident": "KESF", + "type": "medium_airport", + "name": "Esler Army Airfield / Esler Regional Airport", + "latitude_deg": "31.394266", + "longitude_deg": "-92.294082", + "elevation_ft": "112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Alexandria", + "scheduled_service": "no", + "gps_code": "KESF", + "iata_code": "ESF", + "local_code": "ESF", + "home_link": "http://www.alexandria-louisiana.com/esler-field-louisiana.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Esler_Airfield", + "keywords": "Camp Beauregard Army Field, Esler Army Airfield" + }, + { + "id": "19771", + "ident": "KESN", + "type": "small_airport", + "name": "Easton Airport / Newnam Field", + "latitude_deg": "38.804199", + "longitude_deg": "-76.069", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Easton", + "scheduled_service": "no", + "gps_code": "KESN", + "iata_code": "ESN", + "local_code": "ESN", + "home_link": "http://eastonairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Easton_Airport_(Maryland)" + }, + { + "id": "19772", + "ident": "KEST", + "type": "small_airport", + "name": "Estherville Municipal Airport", + "latitude_deg": "43.40739822", + "longitude_deg": "-94.74639893", + "elevation_ft": "1319", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Estherville", + "scheduled_service": "no", + "gps_code": "KEST", + "iata_code": "EST", + "local_code": "EST" + }, + { + "id": "17182", + "ident": "KESW", + "type": "small_airport", + "name": "Easton State Airport", + "latitude_deg": "47.2541999817", + "longitude_deg": "-121.185997009", + "elevation_ft": "2226", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Easton", + "scheduled_service": "no", + "gps_code": "KESW", + "iata_code": "ESW", + "local_code": "ESW", + "home_link": "http://www.wsdot.wa.gov/Public/Templates/Standard/DefaultTemplate.aspx?NRMODE=Published&NRNODEGUID=%7B3B856445-96DD-44E1-ABCE-2F", + "wikipedia_link": "https://en.wikipedia.org/wiki/Easton_State_Airport" + }, + { + "id": "19773", + "ident": "KETB", + "type": "small_airport", + "name": "West Bend Municipal Airport", + "latitude_deg": "43.422278", + "longitude_deg": "-88.128966", + "elevation_ft": "887", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "West Bend", + "scheduled_service": "no", + "gps_code": "KETB", + "iata_code": "ETB", + "local_code": "ETB", + "home_link": "http://www.ci.west-bend.wi.us/Airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/West_Bend_Municipal_Airport" + }, + { + "id": "19774", + "ident": "KETC", + "type": "small_airport", + "name": "Tarboro Edgecombe Airport", + "latitude_deg": "35.93709945678711", + "longitude_deg": "-77.54660034179688", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Tarboro", + "scheduled_service": "no", + "gps_code": "KETC", + "local_code": "ETC" + }, + { + "id": "19775", + "ident": "KETH", + "type": "small_airport", + "name": "Wheaton Municipal Airport", + "latitude_deg": "45.78049850463867", + "longitude_deg": "-96.54350280761719", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Wheaton", + "scheduled_service": "no", + "gps_code": "KETH", + "local_code": "ETH" + }, + { + "id": "19776", + "ident": "KETN", + "type": "small_airport", + "name": "Eastland Municipal Airport", + "latitude_deg": "32.4135017395", + "longitude_deg": "-98.80979919430001", + "elevation_ft": "1464", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eastland", + "scheduled_service": "no", + "gps_code": "KETN", + "iata_code": "ETN", + "local_code": "ETN" + }, + { + "id": "19777", + "ident": "KEUF", + "type": "small_airport", + "name": "Weedon Field", + "latitude_deg": "31.9512996674", + "longitude_deg": "-85.1288986206", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Eufaula", + "scheduled_service": "no", + "gps_code": "KEUF", + "iata_code": "EUF", + "local_code": "EUF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Weedon_Field" + }, + { + "id": "3517", + "ident": "KEUG", + "type": "medium_airport", + "name": "Mahlon Sweet Field", + "latitude_deg": "44.12459945678711", + "longitude_deg": "-123.21199798583984", + "elevation_ft": "374", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Eugene", + "scheduled_service": "yes", + "gps_code": "KEUG", + "iata_code": "EUG", + "local_code": "EUG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eugene_Airport" + }, + { + "id": "19778", + "ident": "KEUL", + "type": "small_airport", + "name": "Treasure Valley Executive Airport at Caldwell", + "latitude_deg": "43.641899", + "longitude_deg": "-116.636002", + "elevation_ft": "2432", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Caldwell", + "scheduled_service": "no", + "gps_code": "KEUL", + "local_code": "EUL", + "keywords": "Caldwell Industrial" + }, + { + "id": "19779", + "ident": "KEVB", + "type": "small_airport", + "name": "New Smyrna Beach Municipal Airport", + "latitude_deg": "29.055700302124023", + "longitude_deg": "-80.94889831542969", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "New Smyrna Beach", + "scheduled_service": "no", + "gps_code": "KEVB", + "local_code": "EVB", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Smyrna_Beach_Municipal_Airport" + }, + { + "id": "19780", + "ident": "KEVM", + "type": "small_airport", + "name": "Eveleth Virginia Municipal Airport", + "latitude_deg": "47.42509842", + "longitude_deg": "-92.49849701", + "elevation_ft": "1379", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Eveleth", + "scheduled_service": "no", + "gps_code": "KEVM", + "iata_code": "EVM", + "local_code": "EVM" + }, + { + "id": "19781", + "ident": "KEVU", + "type": "small_airport", + "name": "Northwest Missouri Regional Airport", + "latitude_deg": "40.35250092", + "longitude_deg": "-94.91500092", + "elevation_ft": "1145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Maryville", + "scheduled_service": "no", + "gps_code": "KEVU", + "local_code": "EVU" + }, + { + "id": "3518", + "ident": "KEVV", + "type": "medium_airport", + "name": "Evansville Regional Airport", + "latitude_deg": "38.0369987488", + "longitude_deg": "-87.5324020386", + "elevation_ft": "418", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Evansville", + "scheduled_service": "yes", + "gps_code": "KEVV", + "iata_code": "EVV", + "local_code": "EVV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Evansville_Regional_Airport" + }, + { + "id": "19782", + "ident": "KEVW", + "type": "medium_airport", + "name": "Evanston-Uinta County Airport-Burns Field", + "latitude_deg": "41.27479935", + "longitude_deg": "-111.0350037", + "elevation_ft": "7143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Evanston", + "scheduled_service": "no", + "gps_code": "KEVW", + "iata_code": "EVW", + "local_code": "EVW" + }, + { + "id": "19783", + "ident": "KEVY", + "type": "small_airport", + "name": "Summit Airport", + "latitude_deg": "39.520401", + "longitude_deg": "-75.720398", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Middletown", + "scheduled_service": "no", + "gps_code": "KEVY", + "local_code": "EVY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Summit_Airport_(Delaware)", + "keywords": "N92" + }, + { + "id": "3519", + "ident": "KEWB", + "type": "medium_airport", + "name": "New Bedford Regional Airport", + "latitude_deg": "41.67610168457031", + "longitude_deg": "-70.95690155029297", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "New Bedford", + "scheduled_service": "yes", + "gps_code": "KEWB", + "iata_code": "EWB", + "local_code": "EWB", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Bedford_Regional_Airport" + }, + { + "id": "19784", + "ident": "KEWK", + "type": "small_airport", + "name": "Newton City-County Airport", + "latitude_deg": "38.058200836199994", + "longitude_deg": "-97.2744979858", + "elevation_ft": "1533", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Newton", + "scheduled_service": "no", + "gps_code": "KEWK", + "iata_code": "EWK", + "local_code": "EWK", + "home_link": "http://www.newtonkansas.com/index.aspx?page=40", + "wikipedia_link": "https://en.wikipedia.org/wiki/Newton_City/County_Airport" + }, + { + "id": "3520", + "ident": "KEWN", + "type": "medium_airport", + "name": "Coastal Carolina Regional Airport", + "latitude_deg": "35.0730018616", + "longitude_deg": "-77.04290008539999", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "New Bern", + "scheduled_service": "yes", + "gps_code": "KEWN", + "iata_code": "EWN", + "local_code": "EWN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Craven_County_Regional_Airport" + }, + { + "id": "3521", + "ident": "KEWR", + "type": "large_airport", + "name": "Newark Liberty International Airport", + "latitude_deg": "40.692501", + "longitude_deg": "-74.168701", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Newark", + "scheduled_service": "yes", + "gps_code": "KEWR", + "iata_code": "EWR", + "local_code": "EWR", + "home_link": "http://www.panynj.gov/CommutingTravel/airports/html/newarkliberty.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Newark_Liberty_International_Airport", + "keywords": "Manhattan, New York City, NYC" + }, + { + "id": "307561", + "ident": "KEX", + "type": "small_airport", + "name": "Kanabea Airport", + "latitude_deg": "-7.538888888890001", + "longitude_deg": "145.905", + "elevation_ft": "4288", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Kanabea", + "scheduled_service": "no", + "gps_code": "AYNB", + "iata_code": "KEX", + "local_code": "KEA" + }, + { + "id": "19785", + "ident": "KEXX", + "type": "small_airport", + "name": "Davidson County Airport", + "latitude_deg": "35.78110122680664", + "longitude_deg": "-80.30380249023438", + "elevation_ft": "733", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "KEXX", + "local_code": "EXX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Davidson_County_Airport" + }, + { + "id": "19786", + "ident": "KEYE", + "type": "small_airport", + "name": "Eagle Creek Airpark", + "latitude_deg": "39.830699920654", + "longitude_deg": "-86.294403076172", + "elevation_ft": "823", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "KEYE", + "local_code": "EYE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eagle_Creek_Airpark", + "keywords": "I14" + }, + { + "id": "19787", + "ident": "KEYF", + "type": "small_airport", + "name": "Curtis L Brown Jr Field", + "latitude_deg": "34.60179901", + "longitude_deg": "-78.57929993", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Elizabethtown", + "scheduled_service": "no", + "gps_code": "KEYF", + "local_code": "EYF", + "home_link": "http://elizabethtownairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Curtis_L._Brown_Jr._Field", + "keywords": "4W1" + }, + { + "id": "19788", + "ident": "KEYQ", + "type": "closed", + "name": "Weiser Air Park", + "latitude_deg": "29.9352", + "longitude_deg": "-95.639603", + "elevation_ft": "137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Weiser_Air_Park", + "keywords": "KEYQ, EYQ, F H Jackson" + }, + { + "id": "3522", + "ident": "KEYW", + "type": "medium_airport", + "name": "Key West International Airport", + "latitude_deg": "24.556101", + "longitude_deg": "-81.759598", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Key West", + "scheduled_service": "yes", + "gps_code": "KEYW", + "iata_code": "EYW", + "local_code": "EYW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Key_West_International_Airport" + }, + { + "id": "317278", + "ident": "KEZ", + "type": "seaplane_base", + "name": "Kelani-Peliyagoda Seaplane Base", + "latitude_deg": "6.95", + "longitude_deg": "79.93", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-1", + "municipality": "Colombo", + "scheduled_service": "no", + "iata_code": "KEZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kelani_River-Peliyagoda_Waterdrome" + }, + { + "id": "19789", + "ident": "KEZF", + "type": "small_airport", + "name": "Shannon Airport", + "latitude_deg": "38.26679992675781", + "longitude_deg": "-77.44920349121094", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fredericksburg", + "scheduled_service": "no", + "gps_code": "KEZF", + "local_code": "EZF" + }, + { + "id": "19790", + "ident": "KEZI", + "type": "small_airport", + "name": "Kewanee Municipal Airport", + "latitude_deg": "41.2052", + "longitude_deg": "-89.963898", + "elevation_ft": "858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Kewanee", + "scheduled_service": "no", + "gps_code": "KEZI", + "local_code": "EZI" + }, + { + "id": "19791", + "ident": "KEZM", + "type": "small_airport", + "name": "Heart of Georgia Regional Airport", + "latitude_deg": "32.21419906616211", + "longitude_deg": "-83.12799835205078", + "elevation_ft": "304", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Eastman", + "scheduled_service": "no", + "gps_code": "KEZM", + "local_code": "EZM" + }, + { + "id": "18752", + "ident": "KEZS", + "type": "small_airport", + "name": "Shawano Municipal Airport", + "latitude_deg": "44.7869987487793", + "longitude_deg": "-88.55899810791016", + "elevation_ft": "813", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Shawano", + "scheduled_service": "no", + "gps_code": "KEZS", + "local_code": "EZS", + "keywords": "Formerly 3WO" + }, + { + "id": "19792", + "ident": "KEZZ", + "type": "small_airport", + "name": "Cameron Memorial Airport", + "latitude_deg": "39.7276001", + "longitude_deg": "-94.27639771", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Cameron", + "scheduled_service": "no", + "gps_code": "KEZZ", + "local_code": "EZZ" + }, + { + "id": "19793", + "ident": "KF00", + "type": "small_airport", + "name": "Jones Field", + "latitude_deg": "33.6128", + "longitude_deg": "-96.179298", + "elevation_ft": "618", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bonham", + "scheduled_service": "no", + "local_code": "F00" + }, + { + "id": "19794", + "ident": "KF01", + "type": "small_airport", + "name": "Quanah Municipal Airport", + "latitude_deg": "34.277101", + "longitude_deg": "-99.7593", + "elevation_ft": "1602", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Quanah", + "scheduled_service": "no", + "local_code": "F01" + }, + { + "id": "19795", + "ident": "KF02", + "type": "closed", + "name": "Fairgrounds Airpark", + "latitude_deg": "45.725444", + "longitude_deg": "-107.613551", + "elevation_ft": "2911", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Hardin", + "scheduled_service": "no", + "keywords": "F02, MT02" + }, + { + "id": "19796", + "ident": "KF05", + "type": "small_airport", + "name": "Wilbarger County Airport", + "latitude_deg": "34.2257003784", + "longitude_deg": "-99.2837982178", + "elevation_ft": "1265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Vernon", + "scheduled_service": "no", + "gps_code": "F05", + "iata_code": "WIB", + "local_code": "F05", + "home_link": "http://www.co.wilbarger.tx.us/Airport2.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wilbarger_County_Airport" + }, + { + "id": "19797", + "ident": "KF06", + "type": "small_airport", + "name": "Marian Airpark", + "latitude_deg": "34.844033", + "longitude_deg": "-100.192838", + "elevation_ft": "2008", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wellington", + "scheduled_service": "no", + "local_code": "F06" + }, + { + "id": "19798", + "ident": "KF08", + "type": "small_airport", + "name": "Eufaula Municipal Airport", + "latitude_deg": "35.298043", + "longitude_deg": "-95.627378", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Eufaula", + "scheduled_service": "no", + "local_code": "F08", + "home_link": "http://www.cityofeufaulaok.com/eufaula-municipal-airport.html" + }, + { + "id": "19799", + "ident": "KF10", + "type": "small_airport", + "name": "Henryetta Municipal Airport", + "latitude_deg": "35.406898498535156", + "longitude_deg": "-96.01580047607422", + "elevation_ft": "849", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Henryetta", + "scheduled_service": "no", + "gps_code": "KF10", + "local_code": "F10" + }, + { + "id": "19801", + "ident": "KF14", + "type": "small_airport", + "name": "Wichita Valley Airport", + "latitude_deg": "33.947701", + "longitude_deg": "-98.616699", + "elevation_ft": "1005", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wichita Falls", + "scheduled_service": "no", + "local_code": "F14" + }, + { + "id": "19802", + "ident": "KF17", + "type": "small_airport", + "name": "Center Municipal Airport", + "latitude_deg": "31.8316", + "longitude_deg": "-94.156403", + "elevation_ft": "319", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Center", + "scheduled_service": "no", + "gps_code": "KF17", + "local_code": "F17" + }, + { + "id": "19803", + "ident": "KF21", + "type": "small_airport", + "name": "Memphis Municipal Airport", + "latitude_deg": "34.739601135253906", + "longitude_deg": "-100.52999877929688", + "elevation_ft": "2102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Memphis", + "scheduled_service": "no", + "gps_code": "KF21", + "local_code": "F21" + }, + { + "id": "19804", + "ident": "KF22", + "type": "small_airport", + "name": "Perry Municipal Airport", + "latitude_deg": "36.38560104370117", + "longitude_deg": "-97.2771987915039", + "elevation_ft": "1002", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Perry", + "scheduled_service": "no", + "gps_code": "KF22", + "local_code": "F22" + }, + { + "id": "19805", + "ident": "KF24", + "type": "small_airport", + "name": "Minden Airport", + "latitude_deg": "32.646", + "longitude_deg": "-93.298103", + "elevation_ft": "278", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Minden", + "scheduled_service": "no", + "gps_code": "KMNE", + "local_code": "MNE", + "keywords": "F24, Minden Webster" + }, + { + "id": "19807", + "ident": "KF29", + "type": "small_airport", + "name": "Clarence E Page Municipal Airport", + "latitude_deg": "35.48809814", + "longitude_deg": "-97.82360077", + "elevation_ft": "1354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "gps_code": "KRCE", + "local_code": "RCE" + }, + { + "id": "19808", + "ident": "KF30", + "type": "small_airport", + "name": "Sulphur Municipal Airport", + "latitude_deg": "34.52450180053711", + "longitude_deg": "-96.98970031738281", + "elevation_ft": "1051", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Sulphur", + "scheduled_service": "no", + "gps_code": "KF30", + "local_code": "F30" + }, + { + "id": "19809", + "ident": "KF31", + "type": "small_airport", + "name": "Lake Texoma State Park Airport", + "latitude_deg": "33.99100112915039", + "longitude_deg": "-96.6427993774414", + "elevation_ft": "693", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Kingston", + "scheduled_service": "no", + "gps_code": "KF31", + "local_code": "F31" + }, + { + "id": "19810", + "ident": "KF32", + "type": "small_airport", + "name": "Healdton Municipal Airport", + "latitude_deg": "34.249298095703125", + "longitude_deg": "-97.4738998413086", + "elevation_ft": "956", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Healdton", + "scheduled_service": "no", + "gps_code": "KF32", + "local_code": "F32" + }, + { + "id": "19811", + "ident": "KF34", + "type": "small_airport", + "name": "Firebaugh Airport", + "latitude_deg": "36.860000610352", + "longitude_deg": "-120.46399688721", + "elevation_ft": "157", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Firebaugh", + "scheduled_service": "no", + "gps_code": "F34", + "local_code": "F34", + "wikipedia_link": "https://en.wikipedia.org/wiki/Firebaugh_Airport", + "keywords": "Q49" + }, + { + "id": "19812", + "ident": "KF35", + "type": "small_airport", + "name": "Possum Kingdom Airport", + "latitude_deg": "32.92319869995117", + "longitude_deg": "-98.4364013671875", + "elevation_ft": "1008", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Graford", + "scheduled_service": "no", + "gps_code": "KF35", + "local_code": "F35" + }, + { + "id": "19813", + "ident": "KF36", + "type": "small_airport", + "name": "Cordell Municipal Airport", + "latitude_deg": "35.29759979248047", + "longitude_deg": "-98.96739959716797", + "elevation_ft": "1589", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Cordell", + "scheduled_service": "no", + "gps_code": "KF36", + "local_code": "F36" + }, + { + "id": "19814", + "ident": "KF37", + "type": "small_airport", + "name": "Carrizozo Municipal Airport", + "latitude_deg": "33.64889907836914", + "longitude_deg": "-105.89600372314453", + "elevation_ft": "5371", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Carrizozo", + "scheduled_service": "no", + "gps_code": "KF37", + "local_code": "F37" + }, + { + "id": "19815", + "ident": "KF41", + "type": "small_airport", + "name": "Ennis Municipal Airport", + "latitude_deg": "32.3297004699707", + "longitude_deg": "-96.66390228271484", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ennis", + "scheduled_service": "no", + "gps_code": "KF41", + "local_code": "F41" + }, + { + "id": "19816", + "ident": "KF43", + "type": "small_airport", + "name": "El Dorado Downtown Airport-Stevens Field", + "latitude_deg": "33.1912", + "longitude_deg": "-92.6632", + "elevation_ft": "256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "El Dorado", + "scheduled_service": "no", + "gps_code": "KF43", + "local_code": "F43" + }, + { + "id": "19817", + "ident": "KF44", + "type": "small_airport", + "name": "Athens Municipal Airport", + "latitude_deg": "32.16379928588867", + "longitude_deg": "-95.82839965820312", + "elevation_ft": "444", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Athens", + "scheduled_service": "no", + "local_code": "F44" + }, + { + "id": "19818", + "ident": "KF45", + "type": "small_airport", + "name": "North Palm Beach County General Aviation Airport", + "latitude_deg": "26.84440041", + "longitude_deg": "-80.22129822", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "West Palm Beach", + "scheduled_service": "no", + "gps_code": "KF45", + "local_code": "F45" + }, + { + "id": "19819", + "ident": "KF46", + "type": "small_airport", + "name": "Rockwall Municipal Airport", + "latitude_deg": "32.930599212646484", + "longitude_deg": "-96.43550109863281", + "elevation_ft": "574", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rockwall", + "scheduled_service": "no", + "local_code": "F46" + }, + { + "id": "19820", + "ident": "KF47", + "type": "small_airport", + "name": "St George Island Airport", + "latitude_deg": "29.645999908447266", + "longitude_deg": "-84.9166030883789", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Apalachicola", + "scheduled_service": "no", + "gps_code": "KF47", + "local_code": "F47" + }, + { + "id": "19821", + "ident": "KF48", + "type": "closed", + "name": "Nocona Airport", + "latitude_deg": "33.773847", + "longitude_deg": "-97.738169", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Nocona", + "scheduled_service": "no", + "keywords": "F48" + }, + { + "id": "19822", + "ident": "KF49", + "type": "small_airport", + "name": "Slaton Municipal Airport", + "latitude_deg": "33.484798431396484", + "longitude_deg": "-101.66100311279297", + "elevation_ft": "3123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Slaton", + "scheduled_service": "no", + "gps_code": "KF49", + "local_code": "F49" + }, + { + "id": "19823", + "ident": "KF51", + "type": "small_airport", + "name": "Winnsboro Municipal Airport", + "latitude_deg": "32.93880081176758", + "longitude_deg": "-95.27890014648438", + "elevation_ft": "513", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Winnsboro", + "scheduled_service": "no", + "gps_code": "KF51", + "local_code": "F51" + }, + { + "id": "19824", + "ident": "KF53", + "type": "small_airport", + "name": "Franklin County Airport", + "latitude_deg": "33.2154007", + "longitude_deg": "-95.23739624", + "elevation_ft": "412", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "KF53", + "local_code": "F53" + }, + { + "id": "19825", + "ident": "KF56", + "type": "small_airport", + "name": "Arledge Field", + "latitude_deg": "32.90909957885742", + "longitude_deg": "-99.73600006103516", + "elevation_ft": "1561", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Stamford", + "scheduled_service": "no", + "gps_code": "KF56", + "local_code": "F56" + }, + { + "id": "19826", + "ident": "KF62", + "type": "small_airport", + "name": "Hayfork Airport", + "latitude_deg": "40.547100067139", + "longitude_deg": "-123.18199920654", + "elevation_ft": "2321", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hayfork", + "scheduled_service": "no", + "gps_code": "F62", + "local_code": "F62", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hayfork_Airport", + "keywords": "Q72" + }, + { + "id": "19827", + "ident": "KF68", + "type": "small_airport", + "name": "Anadarko Municipal Airport", + "latitude_deg": "35.05220031738281", + "longitude_deg": "-98.26429748535156", + "elevation_ft": "1286", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Anadarko", + "scheduled_service": "no", + "gps_code": "KF68", + "local_code": "F68" + }, + { + "id": "19828", + "ident": "KF69", + "type": "small_airport", + "name": "Air Park Dallas Airport", + "latitude_deg": "33.023499", + "longitude_deg": "-96.836899", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "local_code": "F69", + "wikipedia_link": "https://en.wikipedia.org/wiki/Air_Park-Dallas_Airport" + }, + { + "id": "19829", + "ident": "KF70", + "type": "small_airport", + "name": "French Valley Airport", + "latitude_deg": "33.5742", + "longitude_deg": "-117.127998", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Murrieta", + "scheduled_service": "no", + "iata_code": "RBK", + "local_code": "F70", + "home_link": "http://www.rcfva.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/French_Valley_Airport" + }, + { + "id": "19830", + "ident": "KF72", + "type": "small_airport", + "name": "Franklin Field", + "latitude_deg": "38.304901123047", + "longitude_deg": "-121.43000030518", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "F72", + "local_code": "F72", + "home_link": "http://www.sacramento.aero/f72/about/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Franklin_Field_(California)", + "keywords": "Q53" + }, + { + "id": "19831", + "ident": "KF75", + "type": "small_airport", + "name": "Harrison Field of Knox City Airport", + "latitude_deg": "33.436933", + "longitude_deg": "-99.815842", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Knox City", + "scheduled_service": "no", + "gps_code": "KF75", + "local_code": "F75" + }, + { + "id": "19832", + "ident": "KF82", + "type": "small_airport", + "name": "Town & Country Airpark", + "latitude_deg": "33.48559952", + "longitude_deg": "-101.8130035", + "elevation_ft": "3200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lubbock", + "scheduled_service": "no", + "gps_code": "KF82", + "local_code": "F82" + }, + { + "id": "19833", + "ident": "KF83", + "type": "closed", + "name": "Abernathy Municipal Airport", + "latitude_deg": "33.8434", + "longitude_deg": "-101.759673", + "elevation_ft": "3327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Abernathy", + "scheduled_service": "no", + "local_code": "F83", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abernathy_Municipal_Airport", + "keywords": "F83, Abernathy Auxiliary Field, Abernathy Auxiliary Army Airfield" + }, + { + "id": "19834", + "ident": "KF84", + "type": "small_airport", + "name": "Stigler Regional Airport", + "latitude_deg": "35.289101", + "longitude_deg": "-95.093903", + "elevation_ft": "599", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Stigler", + "scheduled_service": "no", + "gps_code": "KGZL", + "local_code": "GZL" + }, + { + "id": "19835", + "ident": "KF85", + "type": "small_airport", + "name": "Cochran County Airport", + "latitude_deg": "33.72930145263672", + "longitude_deg": "-102.73400115966797", + "elevation_ft": "3746", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Morton", + "scheduled_service": "no", + "gps_code": "KF85", + "local_code": "F85" + }, + { + "id": "19836", + "ident": "KF86", + "type": "small_airport", + "name": "Caldwell Parish Airport", + "latitude_deg": "32.12216", + "longitude_deg": "-92.05452", + "elevation_ft": "67", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "KF86", + "local_code": "F86" + }, + { + "id": "19837", + "ident": "KF87", + "type": "small_airport", + "name": "Union Parish Airport", + "latitude_deg": "32.724998474121094", + "longitude_deg": "-92.33719635009766", + "elevation_ft": "121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Farmerville", + "scheduled_service": "no", + "gps_code": "KF87", + "local_code": "F87" + }, + { + "id": "19838", + "ident": "KF88", + "type": "small_airport", + "name": "Jonesboro Airport", + "latitude_deg": "32.202", + "longitude_deg": "-92.732903", + "elevation_ft": "256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Jonesboro", + "scheduled_service": "no", + "gps_code": "KF88", + "local_code": "F88" + }, + { + "id": "19839", + "ident": "KF89", + "type": "small_airport", + "name": "Winnsboro Municipal Airport", + "latitude_deg": "32.153", + "longitude_deg": "-91.698588", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Winnsboro", + "scheduled_service": "no", + "local_code": "F89" + }, + { + "id": "19840", + "ident": "KF97", + "type": "small_airport", + "name": "Seagraves Airport", + "latitude_deg": "32.9546012878418", + "longitude_deg": "-102.54100036621094", + "elevation_ft": "3366", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seagraves", + "scheduled_service": "no", + "gps_code": "KF97", + "local_code": "F97" + }, + { + "id": "19841", + "ident": "KF98", + "type": "small_airport", + "name": "Yoakum County Airport", + "latitude_deg": "33.21730042", + "longitude_deg": "-102.8300018", + "elevation_ft": "3704", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Plains", + "scheduled_service": "no", + "gps_code": "KF98", + "local_code": "F98" + }, + { + "id": "19842", + "ident": "KF99", + "type": "small_airport", + "name": "Holdenville Municipal Airport", + "latitude_deg": "35.08589935", + "longitude_deg": "-96.41670227", + "elevation_ft": "861", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Holdenville", + "scheduled_service": "no", + "gps_code": "KF99", + "local_code": "F99" + }, + { + "id": "19843", + "ident": "KFAF", + "type": "medium_airport", + "name": "Felker Army Air Field", + "latitude_deg": "37.1325", + "longitude_deg": "-76.608803", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Newport News (Fort Eustis)", + "scheduled_service": "no", + "gps_code": "KFAF", + "iata_code": "FAF", + "local_code": "FAF" + }, + { + "id": "19844", + "ident": "KFAM", + "type": "small_airport", + "name": "Farmington Regional Airport", + "latitude_deg": "37.76110077", + "longitude_deg": "-90.4285965", + "elevation_ft": "946", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Farmington", + "scheduled_service": "no", + "gps_code": "KFAM", + "iata_code": "FAM", + "local_code": "FAM", + "home_link": "http://farmington-mo.gov/airport.cfm" + }, + { + "id": "3523", + "ident": "KFAR", + "type": "medium_airport", + "name": "Hector International Airport", + "latitude_deg": "46.92070007324219", + "longitude_deg": "-96.81580352783203", + "elevation_ft": "902", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Fargo", + "scheduled_service": "yes", + "gps_code": "KFAR", + "iata_code": "FAR", + "local_code": "FAR", + "home_link": "http://www.fargoairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hector_International_Airport", + "keywords": "119th Wing, Happy Hooligans" + }, + { + "id": "3524", + "ident": "KFAT", + "type": "medium_airport", + "name": "Fresno Yosemite International Airport", + "latitude_deg": "36.776199", + "longitude_deg": "-119.718002", + "elevation_ft": "336", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fresno", + "scheduled_service": "yes", + "gps_code": "KFAT", + "iata_code": "FAT", + "local_code": "FAT", + "home_link": "https://flyfresno.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fresno_Yosemite_International_Airport" + }, + { + "id": "3525", + "ident": "KFAY", + "type": "medium_airport", + "name": "Fayetteville Regional Airport - Grannis Field", + "latitude_deg": "34.991199", + "longitude_deg": "-78.880302", + "elevation_ft": "189", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Fayetteville", + "scheduled_service": "yes", + "gps_code": "KFAY", + "iata_code": "FAY", + "local_code": "FAY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fayetteville_Regional_Airport" + }, + { + "id": "3526", + "ident": "KFBG", + "type": "medium_airport", + "name": "Simmons Army Air Field", + "latitude_deg": "35.13180161", + "longitude_deg": "-78.93669891", + "elevation_ft": "244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Fort Bragg", + "scheduled_service": "no", + "gps_code": "KFBG", + "iata_code": "FBG", + "local_code": "FBG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Simmons_Army_Airfield" + }, + { + "id": "19845", + "ident": "KFBL", + "type": "small_airport", + "name": "Faribault Municipal Airport-Liz Wall Strohfus Field", + "latitude_deg": "44.32844", + "longitude_deg": "-93.312534", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Faribault", + "scheduled_service": "no", + "gps_code": "KFBL", + "iata_code": "FBL", + "local_code": "FBL", + "home_link": "http://www.faribault.org/departments/publicworks/airport", + "keywords": "Faribault Municipal" + }, + { + "id": "19846", + "ident": "KFBR", + "type": "small_airport", + "name": "Fort Bridger Airport", + "latitude_deg": "41.3918991089", + "longitude_deg": "-110.406997681", + "elevation_ft": "7034", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Fort Bridger", + "scheduled_service": "no", + "gps_code": "KFBR", + "iata_code": "FBR", + "local_code": "FBR" + }, + { + "id": "19847", + "ident": "KFBY", + "type": "small_airport", + "name": "Fairbury Municipal Airport", + "latitude_deg": "40.182998657199995", + "longitude_deg": "-97.16929626459999", + "elevation_ft": "1479", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Fairbury", + "scheduled_service": "no", + "gps_code": "KFBY", + "iata_code": "FBY", + "local_code": "FBY", + "home_link": "http://www.fairbury.com/pages/fairbury_airport.html" + }, + { + "id": "19848", + "ident": "KFCH", + "type": "small_airport", + "name": "Fresno Chandler Executive Airport", + "latitude_deg": "36.732399", + "longitude_deg": "-119.82", + "elevation_ft": "279", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fresno", + "scheduled_service": "no", + "gps_code": "KFCH", + "iata_code": "FCH", + "local_code": "FCH", + "home_link": "https://flyfresno.com/chandler-executive/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fresno_Chandler_Executive_Airport" + }, + { + "id": "19849", + "ident": "KFCI", + "type": "small_airport", + "name": "Richmond Executive-Chesterfield County Airport", + "latitude_deg": "37.406502", + "longitude_deg": "-77.525002", + "elevation_ft": "236", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "North Chesterfield", + "scheduled_service": "no", + "gps_code": "KFCI", + "local_code": "FCI", + "home_link": "https://www.chesterfield.gov/739/Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chesterfield_County_Airport" + }, + { + "id": "19850", + "ident": "KFCM", + "type": "small_airport", + "name": "Flying Cloud Airport", + "latitude_deg": "44.8272018433", + "longitude_deg": "-93.45709991460001", + "elevation_ft": "906", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Minneapolis", + "scheduled_service": "no", + "gps_code": "KFCM", + "iata_code": "FCM", + "local_code": "FCM", + "home_link": "http://www.metroairports.org/General-Aviation/Airports/Flying-Cloud.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Flying_Cloud_Airport" + }, + { + "id": "19851", + "ident": "KFCS", + "type": "medium_airport", + "name": "Butts AAF (Fort Carson) Air Field", + "latitude_deg": "38.67839813", + "longitude_deg": "-104.7570038", + "elevation_ft": "5838", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Fort Carson", + "scheduled_service": "no", + "gps_code": "KFCS", + "iata_code": "FCS", + "local_code": "FCS" + }, + { + "id": "19852", + "ident": "KFCT", + "type": "heliport", + "name": "Vagabond Army Heliport", + "latitude_deg": "46.669421", + "longitude_deg": "-120.455984", + "elevation_ft": "1378", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Yakima", + "scheduled_service": "no", + "gps_code": "KFCT", + "local_code": "FCT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vagabond_Army_Airfield", + "keywords": "Firing Center AAF, Vagabond Army Airfield" + }, + { + "id": "19853", + "ident": "KFCY", + "type": "small_airport", + "name": "Forrest City Municipal Airport", + "latitude_deg": "34.942001342800005", + "longitude_deg": "-90.7750015259", + "elevation_ft": "249", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Forrest City", + "scheduled_service": "no", + "gps_code": "KFCY", + "iata_code": "FCY", + "local_code": "FCY", + "home_link": "http://www.fly.arkansas.gov/Airports/ForrestCity/FORREST_CITY-2.pdf", + "wikipedia_link": "https://en.wikipedia.org/wiki/Forrest_City_Municipal_Airport" + }, + { + "id": "19854", + "ident": "KFDK", + "type": "small_airport", + "name": "Frederick Municipal Airport", + "latitude_deg": "39.417598724399994", + "longitude_deg": "-77.3742980957", + "elevation_ft": "303", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Frederick", + "scheduled_service": "no", + "gps_code": "KFDK", + "iata_code": "FDK", + "local_code": "FDK", + "home_link": "https://www.cityoffrederick.com/index.aspx?NID=152", + "wikipedia_link": "https://en.wikipedia.org/wiki/Frederick_Municipal_Airport_(Maryland)" + }, + { + "id": "19855", + "ident": "KFDR", + "type": "small_airport", + "name": "Frederick Regional Airport", + "latitude_deg": "34.35200119", + "longitude_deg": "-98.98390198", + "elevation_ft": "1258", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Frederick", + "scheduled_service": "no", + "gps_code": "KFDR", + "iata_code": "FDR", + "local_code": "FDR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Frederick_Regional_Airport", + "keywords": "Frederick Army Airfield" + }, + { + "id": "19856", + "ident": "KFDW", + "type": "small_airport", + "name": "Fairfield County Airport", + "latitude_deg": "34.31549835205078", + "longitude_deg": "-81.10880279541016", + "elevation_ft": "577", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Winnsboro", + "scheduled_service": "no", + "gps_code": "KFDW", + "local_code": "FDW" + }, + { + "id": "19857", + "ident": "KFDY", + "type": "medium_airport", + "name": "Findlay Airport", + "latitude_deg": "41.013500213600004", + "longitude_deg": "-83.66870117190001", + "elevation_ft": "813", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Findlay", + "scheduled_service": "no", + "gps_code": "KFDY", + "iata_code": "FDY", + "local_code": "FDY", + "home_link": "http://www.ci.findlay.oh.us/?id=56", + "wikipedia_link": "https://en.wikipedia.org/wiki/Findlay_Airport" + }, + { + "id": "19858", + "ident": "KFEP", + "type": "small_airport", + "name": "Albertus Airport", + "latitude_deg": "42.2462005615", + "longitude_deg": "-89.58200073239999", + "elevation_ft": "859", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Freeport", + "scheduled_service": "no", + "gps_code": "KFEP", + "iata_code": "FEP", + "local_code": "FEP", + "home_link": "http://www.ci.freeport.il.us/business/albertus.htm", + "wikipedia_link": "http://de.wikipedia.org/wiki/Albertus_Airport" + }, + { + "id": "19859", + "ident": "KFES", + "type": "small_airport", + "name": "Festus Memorial Airport", + "latitude_deg": "38.19490051269531", + "longitude_deg": "-90.3853988647461", + "elevation_ft": "433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Festus", + "scheduled_service": "no", + "gps_code": "KFES", + "local_code": "FES" + }, + { + "id": "19860", + "ident": "KFET", + "type": "small_airport", + "name": "Fremont Municipal Airport", + "latitude_deg": "41.44910049", + "longitude_deg": "-96.52020264", + "elevation_ft": "1204", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Fremont", + "scheduled_service": "no", + "gps_code": "KFET", + "iata_code": "FET", + "local_code": "FET", + "home_link": "http://www.fremontne.gov/index.aspx?nid=398", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fremont_Municipal_Airport_(Nebraska)" + }, + { + "id": "19861", + "ident": "KFFA", + "type": "small_airport", + "name": "First Flight Airport", + "latitude_deg": "36.0181999207", + "longitude_deg": "-75.67130279540001", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Kill Devil Hills", + "scheduled_service": "no", + "gps_code": "KFFA", + "iata_code": "FFA", + "local_code": "FFA", + "wikipedia_link": "https://en.wikipedia.org/wiki/First_Flight_Airport" + }, + { + "id": "19862", + "ident": "KFFC", + "type": "small_airport", + "name": "Peachtree City Falcon Field", + "latitude_deg": "33.3572998046875", + "longitude_deg": "-84.5718002319336", + "elevation_ft": "808", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "KFFC", + "local_code": "FFC" + }, + { + "id": "19863", + "ident": "KFFL", + "type": "small_airport", + "name": "Fairfield Municipal Airport", + "latitude_deg": "41.053024", + "longitude_deg": "-91.980114", + "elevation_ft": "799", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "KFFL", + "iata_code": "FFL", + "local_code": "FFL", + "home_link": "http://cityoffairfieldiowa.com/index.aspx?nid=65", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fairfield_Municipal_Airport_(Iowa)" + }, + { + "id": "19864", + "ident": "KFFM", + "type": "small_airport", + "name": "Fergus Falls Municipal Airport - Einar Mickelson Field", + "latitude_deg": "46.28440094", + "longitude_deg": "-96.15670013", + "elevation_ft": "1183", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Fergus Falls", + "scheduled_service": "no", + "gps_code": "KFFM", + "iata_code": "FFM", + "local_code": "FFM", + "home_link": "http://www.ci.fergus-falls.mn.us/index.asp?Type=B_BASIC&SEC=%7B6362A7EF-126F-4694-9568-23D51B3A6337%7D", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fergus_Falls_Municipal_Airport" + }, + { + "id": "3528", + "ident": "KFFO", + "type": "medium_airport", + "name": "Wright-Patterson Air Force Base", + "latitude_deg": "39.826099", + "longitude_deg": "-84.048302", + "elevation_ft": "823", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dayton", + "scheduled_service": "no", + "gps_code": "KFFO", + "iata_code": "FFO", + "local_code": "FFO", + "home_link": "http://www.wpafb.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wright-Patterson_Air_Force_Base", + "keywords": "Wilbur Wright Field, Fairfield Air Depot" + }, + { + "id": "19865", + "ident": "KFFT", + "type": "small_airport", + "name": "Capital City Airport", + "latitude_deg": "38.18249893", + "longitude_deg": "-84.90470123", + "elevation_ft": "806", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Frankfort", + "scheduled_service": "no", + "gps_code": "KFFT", + "iata_code": "FFT", + "local_code": "FFT", + "home_link": "http://cca.ky.gov/Pages/default.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Capital_City_Airport_(Kentucky)" + }, + { + "id": "18690", + "ident": "KFFX", + "type": "small_airport", + "name": "Fremont Municipal Airport", + "latitude_deg": "43.43930054", + "longitude_deg": "-85.99490356", + "elevation_ft": "772", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Fremont", + "scheduled_service": "no", + "gps_code": "KFFX", + "local_code": "FFX", + "keywords": "Formerly 3FM" + }, + { + "id": "19866", + "ident": "KFFZ", + "type": "small_airport", + "name": "Falcon Field", + "latitude_deg": "33.4608001709", + "longitude_deg": "-111.727996826", + "elevation_ft": "1394", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no", + "gps_code": "KFFZ", + "iata_code": "MSC", + "local_code": "FFZ", + "home_link": "http://www.falconfieldairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Falcon_Field_(Arizona)" + }, + { + "id": "18718", + "ident": "KFGU", + "type": "small_airport", + "name": "Collegedale Municipal Airport", + "latitude_deg": "35.044315", + "longitude_deg": "-85.020146", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Collegedale", + "scheduled_service": "no", + "gps_code": "KFGU", + "local_code": "FGU", + "home_link": "https://www.collegedaleairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Collegedale_Municipal_Airport", + "keywords": "3M3" + }, + { + "id": "19867", + "ident": "KFGX", + "type": "small_airport", + "name": "Fleming Mason Airport", + "latitude_deg": "38.5418014526", + "longitude_deg": "-83.74340057370001", + "elevation_ft": "913", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Flemingsburg", + "scheduled_service": "no", + "gps_code": "KFGX", + "local_code": "FGX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fleming-Mason_Airport" + }, + { + "id": "19868", + "ident": "KFHR", + "type": "small_airport", + "name": "Friday Harbor Airport", + "latitude_deg": "48.5219993591", + "longitude_deg": "-123.024002075", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Friday Harbor", + "scheduled_service": "yes", + "gps_code": "KFHR", + "iata_code": "FRD", + "local_code": "FHR", + "home_link": "http://www.portfridayharbor.org/?page_id=49", + "wikipedia_link": "https://en.wikipedia.org/wiki/Friday_Harbor_Airport" + }, + { + "id": "3529", + "ident": "KFHU", + "type": "medium_airport", + "name": "Sierra Vista Municipal Airport / Libby Army Air Field", + "latitude_deg": "31.587383", + "longitude_deg": "-110.348225", + "elevation_ft": "4719", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Fort Huachuca / Sierra Vista", + "scheduled_service": "yes", + "gps_code": "KFHU", + "iata_code": "FHU", + "local_code": "FHU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sierra_Vista_Municipal_Airport", + "keywords": "fort huachuca, sierra vista, libby" + }, + { + "id": "19869", + "ident": "KFIG", + "type": "small_airport", + "name": "Clearfield Lawrence Airport", + "latitude_deg": "41.04859924316406", + "longitude_deg": "-78.41310119628906", + "elevation_ft": "1516", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Clearfield", + "scheduled_service": "no", + "gps_code": "KFIG", + "local_code": "FIG" + }, + { + "id": "19870", + "ident": "KFIT", + "type": "small_airport", + "name": "Fitchburg Municipal Airport", + "latitude_deg": "42.554100036621094", + "longitude_deg": "-71.75900268554688", + "elevation_ft": "348", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Fitchburg", + "scheduled_service": "no", + "gps_code": "KFIT", + "local_code": "FIT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fitchburg_Municipal_Airport" + }, + { + "id": "19871", + "ident": "KFKA", + "type": "small_airport", + "name": "Fillmore County Airport", + "latitude_deg": "43.67679977", + "longitude_deg": "-92.17970276", + "elevation_ft": "1277", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Preston", + "scheduled_service": "no", + "gps_code": "KFKA", + "local_code": "FKA" + }, + { + "id": "19872", + "ident": "KFKL", + "type": "medium_airport", + "name": "Venango Regional Airport", + "latitude_deg": "41.3778991699", + "longitude_deg": "-79.8603973389", + "elevation_ft": "1540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "KFKL", + "iata_code": "FKL", + "local_code": "FKL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Venango_Regional_Airport" + }, + { + "id": "19873", + "ident": "KFKN", + "type": "small_airport", + "name": "Franklin Regional Airport", + "latitude_deg": "36.698101", + "longitude_deg": "-76.903801", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "KFKN", + "iata_code": "FKN", + "local_code": "FKN", + "home_link": "http://www.franklinva.com/index.php?option=com_content&view=article&id=30&Itemid=168", + "wikipedia_link": "https://en.wikipedia.org/wiki/Franklin_Municipal%E2%80%93John_Beverly_Rose_Airport", + "keywords": "Franklin Municipal-John Beverly Rose" + }, + { + "id": "19874", + "ident": "KFKR", + "type": "small_airport", + "name": "Frankfort Municipal Airport", + "latitude_deg": "40.273399353027344", + "longitude_deg": "-86.56220245361328", + "elevation_ft": "861", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Frankfort", + "scheduled_service": "no", + "gps_code": "KFKR", + "local_code": "FKR" + }, + { + "id": "19875", + "ident": "KFKS", + "type": "small_airport", + "name": "Frankfort Dow Memorial Field", + "latitude_deg": "44.62519836425781", + "longitude_deg": "-86.20079803466797", + "elevation_ft": "633", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Frankfort", + "scheduled_service": "no", + "gps_code": "KFKS", + "local_code": "FKS" + }, + { + "id": "19876", + "ident": "KFLD", + "type": "small_airport", + "name": "Fond du Lac County Airport", + "latitude_deg": "43.7711982727", + "longitude_deg": "-88.48840332030001", + "elevation_ft": "808", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Fond du Lac", + "scheduled_service": "no", + "gps_code": "KFLD", + "iata_code": "FLD", + "local_code": "FLD", + "home_link": "http://www.fdlco.wi.gov/departments/departments-a-e/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fond_du_Lac_County_Airport" + }, + { + "id": "3530", + "ident": "KFLG", + "type": "medium_airport", + "name": "Flagstaff Pulliam International Airport", + "latitude_deg": "35.1385", + "longitude_deg": "-111.670998", + "elevation_ft": "7014", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Flagstaff", + "scheduled_service": "yes", + "gps_code": "KFLG", + "iata_code": "FLG", + "local_code": "FLG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Flagstaff_Pulliam_Airport" + }, + { + "id": "3531", + "ident": "KFLL", + "type": "large_airport", + "name": "Fort Lauderdale Hollywood International Airport", + "latitude_deg": "26.072599", + "longitude_deg": "-80.152702", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Lauderdale", + "scheduled_service": "yes", + "gps_code": "KFLL", + "iata_code": "FLL", + "local_code": "FLL", + "home_link": "http://www.broward.org/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Lauderdale–Hollywood_International_Airport", + "keywords": "MFW, South Florida" + }, + { + "id": "3532", + "ident": "KFLO", + "type": "medium_airport", + "name": "Florence Regional Airport", + "latitude_deg": "34.18539810180664", + "longitude_deg": "-79.7238998413086", + "elevation_ft": "146", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Florence", + "scheduled_service": "yes", + "gps_code": "KFLO", + "iata_code": "FLO", + "local_code": "FLO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Florence_Regional_Airport" + }, + { + "id": "19877", + "ident": "KFLP", + "type": "small_airport", + "name": "Marion County Regional Airport", + "latitude_deg": "36.29090118", + "longitude_deg": "-92.59030151", + "elevation_ft": "719", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Flippin", + "scheduled_service": "no", + "gps_code": "KFLP", + "iata_code": "FLP", + "local_code": "FLP", + "home_link": "http://www.marioncountyairport.com/default.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marion_County_Regional_Airport" + }, + { + "id": "29862", + "ident": "KFLR", + "type": "closed", + "name": "Fall River Airport", + "latitude_deg": "41.75555", + "longitude_deg": "-71.10907", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Fall River", + "scheduled_service": "no", + "gps_code": "KFLR", + "local_code": "FLR" + }, + { + "id": "38683", + "ident": "KFLU", + "type": "closed", + "name": "Flushing Airport", + "latitude_deg": "40.77870178222656", + "longitude_deg": "-73.83260345458984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Queens", + "scheduled_service": "no", + "gps_code": "KFLU", + "iata_code": "FLU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Flushing_Airport" + }, + { + "id": "3533", + "ident": "KFLV", + "type": "small_airport", + "name": "Sherman Army Air Field", + "latitude_deg": "39.3683013916", + "longitude_deg": "-94.9147033691", + "elevation_ft": "772", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Fort Leavenworth", + "scheduled_service": "no", + "gps_code": "KFLV", + "iata_code": "FLV", + "local_code": "FLV", + "home_link": "http://www.lvks.org/department/division.php?structureid=141", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sherman_Army_Airfield" + }, + { + "id": "19878", + "ident": "KFLX", + "type": "small_airport", + "name": "Fallon Municipal Airport", + "latitude_deg": "39.4990997314", + "longitude_deg": "-118.749000549", + "elevation_ft": "3963", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Fallon", + "scheduled_service": "no", + "gps_code": "KFLX", + "iata_code": "FLX", + "local_code": "FLX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fallon_Municipal_Airport" + }, + { + "id": "3534", + "ident": "KFME", + "type": "medium_airport", + "name": "Tipton Airport", + "latitude_deg": "39.08539962769999", + "longitude_deg": "-76.7593994141", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Fort Meade(Odenton)", + "scheduled_service": "no", + "gps_code": "KFME", + "iata_code": "FME", + "local_code": "FME", + "home_link": "http://tiptonairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tipton_Airport", + "keywords": "Fort George G. Meade Army Airfield" + }, + { + "id": "19879", + "ident": "KFMH", + "type": "small_airport", + "name": "Cape Cod Coast Guard Air Station", + "latitude_deg": "41.657899", + "longitude_deg": "-70.52163", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Falmouth", + "scheduled_service": "no", + "gps_code": "KFMH", + "iata_code": "FMH", + "local_code": "FMH", + "home_link": "http://www.uscg.mil/d1/airstacapecod/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coast_Guard_Air_Station_Cape_Cod", + "keywords": "Otis Airforce Base, Otis Air National Guard Base" + }, + { + "id": "19880", + "ident": "KFMM", + "type": "small_airport", + "name": "Fort Morgan Municipal Airport", + "latitude_deg": "40.335758", + "longitude_deg": "-103.804371", + "elevation_ft": "4569", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Fort Morgan", + "scheduled_service": "no", + "gps_code": "KFMM", + "local_code": "FMM", + "keywords": "3V4" + }, + { + "id": "19881", + "ident": "KFMN", + "type": "medium_airport", + "name": "Four Corners Regional Airport", + "latitude_deg": "36.741199", + "longitude_deg": "-108.230003", + "elevation_ft": "5506", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Farmington", + "scheduled_service": "no", + "gps_code": "KFMN", + "iata_code": "FMN", + "local_code": "FMN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Four_Corners_Regional_Airport" + }, + { + "id": "19882", + "ident": "KFMY", + "type": "medium_airport", + "name": "Page Field", + "latitude_deg": "26.58659935", + "longitude_deg": "-81.86329650879999", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Myers", + "scheduled_service": "no", + "gps_code": "KFMY", + "iata_code": "FMY", + "local_code": "FMY", + "home_link": "http://www.flylcpa.com/aboutfmy", + "wikipedia_link": "https://en.wikipedia.org/wiki/Page_Field" + }, + { + "id": "19883", + "ident": "KFMZ", + "type": "small_airport", + "name": "Fairmont State Airfield", + "latitude_deg": "40.58610153198242", + "longitude_deg": "-97.5730972290039", + "elevation_ft": "1636", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Fairmont", + "scheduled_service": "no", + "gps_code": "KFMZ", + "local_code": "FMZ" + }, + { + "id": "19884", + "ident": "KFNB", + "type": "small_airport", + "name": "Brenner Field", + "latitude_deg": "40.078800201416016", + "longitude_deg": "-95.59200286865234", + "elevation_ft": "984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Falls City", + "scheduled_service": "no", + "gps_code": "KFNB", + "local_code": "FNB" + }, + { + "id": "19885", + "ident": "KFNL", + "type": "small_airport", + "name": "Northern Colorado Regional Airport", + "latitude_deg": "40.448763", + "longitude_deg": "-105.011244", + "elevation_ft": "5016", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Loveland", + "scheduled_service": "no", + "gps_code": "KFNL", + "iata_code": "FNL", + "local_code": "FNL", + "home_link": "http://www.flynoco.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Northern_Colorado_Regional_Airport", + "keywords": "Fort Collins Loveland Municipal" + }, + { + "id": "3535", + "ident": "KFNT", + "type": "medium_airport", + "name": "Bishop International Airport", + "latitude_deg": "42.96540069580078", + "longitude_deg": "-83.74359893798828", + "elevation_ft": "782", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Flint", + "scheduled_service": "yes", + "gps_code": "KFNT", + "iata_code": "FNT", + "local_code": "FNT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bishop_International_Airport" + }, + { + "id": "19886", + "ident": "KFOA", + "type": "small_airport", + "name": "Flora Municipal Airport", + "latitude_deg": "38.66490173339844", + "longitude_deg": "-88.4530029296875", + "elevation_ft": "473", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Flora", + "scheduled_service": "no", + "gps_code": "KFOA", + "local_code": "FOA" + }, + { + "id": "3536", + "ident": "KFOD", + "type": "medium_airport", + "name": "Fort Dodge Regional Airport", + "latitude_deg": "42.55149841", + "longitude_deg": "-94.19259644", + "elevation_ft": "1156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Fort Dodge", + "scheduled_service": "yes", + "gps_code": "KFOD", + "iata_code": "FOD", + "local_code": "FOD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Dodge_Regional_Airport" + }, + { + "id": "3537", + "ident": "KFOE", + "type": "medium_airport", + "name": "Topeka Regional Airport", + "latitude_deg": "38.950901", + "longitude_deg": "-95.663597", + "elevation_ft": "1078", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Topeka", + "scheduled_service": "no", + "gps_code": "KFOE", + "iata_code": "FOE", + "local_code": "FOE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Topeka_Regional_Airport", + "keywords": "Topeka Army Airfield, Forbes AFB, Forbes Field" + }, + { + "id": "19887", + "ident": "KFOK", + "type": "small_airport", + "name": "Francis S Gabreski Airport", + "latitude_deg": "40.8437004089", + "longitude_deg": "-72.6317977905", + "elevation_ft": "67", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Westhampton Beach", + "scheduled_service": "no", + "gps_code": "KFOK", + "iata_code": "FOK", + "local_code": "FOK", + "home_link": "http://www.suffolkcountyny.gov/Departments/EconomicDevelopmentandPlanning/FrancisSGabreskiAirport.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Francis_S._Gabreski_Airport", + "keywords": "Suffolk County AFB, Suffolk County Airport" + }, + { + "id": "19888", + "ident": "KFOM", + "type": "small_airport", + "name": "Fillmore Municipal Airport", + "latitude_deg": "38.95830154", + "longitude_deg": "-112.362999", + "elevation_ft": "4985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Fillmore", + "scheduled_service": "no", + "gps_code": "KFOM", + "iata_code": "FIL", + "local_code": "FOM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fillmore_Municipal_Airport" + }, + { + "id": "19889", + "ident": "KFOT", + "type": "small_airport", + "name": "Rohnerville Airport", + "latitude_deg": "40.55390167", + "longitude_deg": "-124.1330032", + "elevation_ft": "393", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fortuna", + "scheduled_service": "no", + "gps_code": "KFOT", + "local_code": "FOT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rohnerville_Airport" + }, + { + "id": "19890", + "ident": "KFOZ", + "type": "small_airport", + "name": "Bigfork Municipal Airport", + "latitude_deg": "47.782798767089844", + "longitude_deg": "-93.65019989013672", + "elevation_ft": "1348", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Bigfork", + "scheduled_service": "no", + "gps_code": "KFOZ", + "local_code": "FOZ" + }, + { + "id": "19892", + "ident": "KFPK", + "type": "small_airport", + "name": "Fitch H Beach Airport", + "latitude_deg": "42.574501037597656", + "longitude_deg": "-84.8114013671875", + "elevation_ft": "891", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Charlotte", + "scheduled_service": "no", + "gps_code": "KFPK", + "local_code": "FPK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fitch_H._Beach_Airport" + }, + { + "id": "3538", + "ident": "KFPR", + "type": "medium_airport", + "name": "St Lucie County International Airport", + "latitude_deg": "27.49510002", + "longitude_deg": "-80.36830139", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Pierce", + "scheduled_service": "no", + "gps_code": "KFPR", + "iata_code": "FPR", + "local_code": "FPR", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Lucie_County_International_Airport" + }, + { + "id": "19893", + "ident": "KFQD", + "type": "small_airport", + "name": "Rutherford County Marchman Field", + "latitude_deg": "35.4282", + "longitude_deg": "-81.935097", + "elevation_ft": "1077", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Rutherfordton", + "scheduled_service": "no", + "gps_code": "KFQD", + "local_code": "FQD", + "home_link": "http://rutherfordcountync.gov/airport", + "keywords": "57A" + }, + { + "id": "3539", + "ident": "KFRG", + "type": "medium_airport", + "name": "Republic Airport", + "latitude_deg": "40.7288017273", + "longitude_deg": "-73.4133987427", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Farmingdale", + "scheduled_service": "no", + "gps_code": "KFRG", + "iata_code": "FRG", + "local_code": "FRG", + "home_link": "http://www.republicairport.net/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Republic_Airport", + "keywords": "Fairchild Flying Field" + }, + { + "id": "19894", + "ident": "KFRH", + "type": "small_airport", + "name": "French Lick Municipal Airport", + "latitude_deg": "38.5061988831", + "longitude_deg": "-86.63690185550001", + "elevation_ft": "792", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "French Lick", + "scheduled_service": "no", + "gps_code": "KFRH", + "iata_code": "FRH", + "local_code": "FRH", + "wikipedia_link": "https://en.wikipedia.org/wiki/French_Lick_Municipal_Airport" + }, + { + "id": "3540", + "ident": "KFRI", + "type": "medium_airport", + "name": "Marshall Army Air Field", + "latitude_deg": "39.053021", + "longitude_deg": "-96.764202", + "elevation_ft": "1065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Fort Riley (Junction City)", + "scheduled_service": "no", + "gps_code": "KFRI", + "iata_code": "FRI", + "local_code": "FRI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marshall_Army_Airfield" + }, + { + "id": "19895", + "ident": "KFRM", + "type": "small_airport", + "name": "Fairmont Municipal Airport", + "latitude_deg": "43.643901825", + "longitude_deg": "-94.4156036377", + "elevation_ft": "1162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Fairmont", + "scheduled_service": "no", + "gps_code": "KFRM", + "iata_code": "FRM", + "local_code": "FRM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fairmont_Municipal_Airport_(Minnesota)" + }, + { + "id": "19896", + "ident": "KFRR", + "type": "small_airport", + "name": "Front Royal Warren County Airport", + "latitude_deg": "38.9175", + "longitude_deg": "-78.253502", + "elevation_ft": "709", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Front Royal", + "scheduled_service": "no", + "gps_code": "KFRR", + "iata_code": "FRR", + "local_code": "FRR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Front_Royal%E2%80%93Warren_County_Airport" + }, + { + "id": "3541", + "ident": "KFSD", + "type": "medium_airport", + "name": "Sioux Falls Regional Airport / Joe Foss Field", + "latitude_deg": "43.585463", + "longitude_deg": "-96.741152", + "elevation_ft": "1429", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Sioux Falls", + "scheduled_service": "yes", + "gps_code": "KFSD", + "iata_code": "FSD", + "local_code": "FSD", + "home_link": "http://www.sfairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sioux_Falls_Regional_Airport", + "keywords": "Joe Foss Field, Fighting Lobos, Sioux Falls Army Air Base, 114th Fighter Wing, Sioux Falls Regional Airport" + }, + { + "id": "19897", + "ident": "KFSE", + "type": "small_airport", + "name": "Fosston Municipal Airport-Anderson Field", + "latitude_deg": "47.5928", + "longitude_deg": "-95.773499", + "elevation_ft": "1277", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Fosston", + "scheduled_service": "no", + "gps_code": "KFSE", + "local_code": "FSE" + }, + { + "id": "3542", + "ident": "KFSI", + "type": "medium_airport", + "name": "Henry Post Army Air Field (Fort Sill)", + "latitude_deg": "34.64979935", + "longitude_deg": "-98.40219879", + "elevation_ft": "1189", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Fort Sill", + "scheduled_service": "no", + "gps_code": "KFSI", + "iata_code": "FSI", + "local_code": "FSI", + "home_link": "http://sill-www.army.mil/History/Airfield/henrypost.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Henry_Post_Army_Airfield" + }, + { + "id": "19898", + "ident": "KFSK", + "type": "small_airport", + "name": "Fort Scott Municipal Airport", + "latitude_deg": "37.7984008789", + "longitude_deg": "-94.7694015503", + "elevation_ft": "918", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Fort Scott", + "scheduled_service": "no", + "gps_code": "KFSK", + "iata_code": "FSK", + "local_code": "FSK", + "home_link": "http://www.fscity.org/index.php?option=com_content&view=article&id=98&Itemid=195", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Scott_Municipal_Airport" + }, + { + "id": "3543", + "ident": "KFSM", + "type": "medium_airport", + "name": "Fort Smith Regional Airport", + "latitude_deg": "35.336601", + "longitude_deg": "-94.367401", + "elevation_ft": "469", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Fort Smith", + "scheduled_service": "yes", + "gps_code": "KFSM", + "iata_code": "FSM", + "local_code": "FSM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Smith_Regional_Airport" + }, + { + "id": "19899", + "ident": "KFSO", + "type": "small_airport", + "name": "Franklin County State Airport", + "latitude_deg": "44.9403", + "longitude_deg": "-73.097504", + "elevation_ft": "228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Swanton", + "scheduled_service": "no", + "gps_code": "KFSO", + "local_code": "FSO", + "keywords": "Highgate" + }, + { + "id": "19900", + "ident": "KFST", + "type": "medium_airport", + "name": "Fort Stockton Pecos County Airport", + "latitude_deg": "30.9157009125", + "longitude_deg": "-102.916000366", + "elevation_ft": "3011", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no", + "gps_code": "KFST", + "iata_code": "FST", + "local_code": "FST", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Stockton%E2%80%93Pecos_County_Airport", + "keywords": "Gibbs Field, Fort Stockton Field" + }, + { + "id": "19901", + "ident": "KFSU", + "type": "small_airport", + "name": "Fort Sumner Municipal Airport", + "latitude_deg": "34.4833984375", + "longitude_deg": "-104.217002869", + "elevation_ft": "4165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Fort Sumner", + "scheduled_service": "no", + "gps_code": "KFSU", + "iata_code": "FSU", + "local_code": "FSU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Sumner_Municipal_Airport", + "keywords": "Fort Sumner Army Airfield" + }, + { + "id": "19902", + "ident": "KFSW", + "type": "small_airport", + "name": "Fort Madison Municipal Airport", + "latitude_deg": "40.659113", + "longitude_deg": "-91.327763", + "elevation_ft": "724", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Fort Madison", + "scheduled_service": "no", + "gps_code": "KFSW", + "iata_code": "FMS", + "local_code": "FSW", + "keywords": "K27" + }, + { + "id": "19903", + "ident": "KFTG", + "type": "small_airport", + "name": "Colorado Air and Space Port", + "latitude_deg": "39.784194", + "longitude_deg": "-104.537639", + "elevation_ft": "5512", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "gps_code": "KCFO", + "local_code": "CFO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Colorado_Air_and_Space_Port", + "keywords": "Colorado Air And Space Port, KFTG, FTG, Front Range Airport" + }, + { + "id": "3544", + "ident": "KFTK", + "type": "medium_airport", + "name": "Godman Army Air Field", + "latitude_deg": "37.907100677500004", + "longitude_deg": "-85.9720993042", + "elevation_ft": "756", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Fort Knox", + "scheduled_service": "no", + "gps_code": "KFTK", + "iata_code": "FTK", + "local_code": "FTK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Godman_Army_Airfield" + }, + { + "id": "19904", + "ident": "KFTT", + "type": "small_airport", + "name": "Elton Hensley Memorial Airport", + "latitude_deg": "38.83810043334961", + "longitude_deg": "-92.00260162353516", + "elevation_ft": "886", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Fulton", + "scheduled_service": "no", + "gps_code": "KFTT", + "local_code": "FTT" + }, + { + "id": "3545", + "ident": "KFTW", + "type": "medium_airport", + "name": "Fort Worth Meacham International Airport", + "latitude_deg": "32.819801", + "longitude_deg": "-97.362396", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "KFTW", + "iata_code": "FTW", + "local_code": "FTW", + "home_link": "http://meacham.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Worth_Meacham_International_Airport" + }, + { + "id": "3546", + "ident": "KFTY", + "type": "medium_airport", + "name": "Fulton County Airport Brown Field", + "latitude_deg": "33.7790985107", + "longitude_deg": "-84.5214004517", + "elevation_ft": "841", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "KFTY", + "iata_code": "FTY", + "local_code": "FTY", + "home_link": "http://www.fultoncountyga.gov/component/content/article/223-general-services/2098-fulton-county-airport-brown-field", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fulton_County_Airport_(Georgia)" + }, + { + "id": "19905", + "ident": "KFUL", + "type": "small_airport", + "name": "Fullerton Municipal Airport", + "latitude_deg": "33.8720016479", + "longitude_deg": "-117.980003357", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fullerton", + "scheduled_service": "no", + "gps_code": "KFUL", + "iata_code": "FUL", + "local_code": "FUL", + "home_link": "http://www.cityoffullerton.com/depts/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fullerton_Municipal_Airport" + }, + { + "id": "19906", + "ident": "KFVE", + "type": "small_airport", + "name": "Northern Aroostook Regional Airport", + "latitude_deg": "47.2854995728", + "longitude_deg": "-68.31279754639999", + "elevation_ft": "988", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Frenchville", + "scheduled_service": "no", + "gps_code": "KFVE", + "iata_code": "WFK", + "local_code": "FVE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Northern_Aroostook_Regional_Airport" + }, + { + "id": "19907", + "ident": "KFVX", + "type": "small_airport", + "name": "Farmville Regional Airport", + "latitude_deg": "37.35749817", + "longitude_deg": "-78.43779755", + "elevation_ft": "416", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Farmville", + "scheduled_service": "no", + "gps_code": "KFVX", + "local_code": "FVX" + }, + { + "id": "3547", + "ident": "KFWA", + "type": "medium_airport", + "name": "Fort Wayne International Airport", + "latitude_deg": "40.9785", + "longitude_deg": "-85.195099", + "elevation_ft": "814", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Fort Wayne", + "scheduled_service": "yes", + "gps_code": "KFWA", + "iata_code": "FWA", + "local_code": "FWA", + "home_link": "https://fwairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Wayne_International_Airport", + "keywords": "Baer Field" + }, + { + "id": "19908", + "ident": "KFWC", + "type": "small_airport", + "name": "Fairfield Municipal Airport", + "latitude_deg": "38.37860107421875", + "longitude_deg": "-88.4126968383789", + "elevation_ft": "436", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "KFWC", + "local_code": "FWC" + }, + { + "id": "19909", + "ident": "KFWN", + "type": "small_airport", + "name": "Sussex Airport", + "latitude_deg": "41.200199127197266", + "longitude_deg": "-74.62300109863281", + "elevation_ft": "421", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Sussex", + "scheduled_service": "no", + "gps_code": "KFWN", + "local_code": "FWN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sussex_Airport_(New_Jersey)" + }, + { + "id": "19910", + "ident": "KFWQ", + "type": "small_airport", + "name": "Rostraver Airport", + "latitude_deg": "40.20970153808594", + "longitude_deg": "-79.8313980102539", + "elevation_ft": "1228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Monongahela", + "scheduled_service": "no", + "gps_code": "KFWQ", + "local_code": "FWQ" + }, + { + "id": "19911", + "ident": "KFWS", + "type": "small_airport", + "name": "Fort Worth Spinks Airport", + "latitude_deg": "32.56520080566406", + "longitude_deg": "-97.30809783935547", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "KFWS", + "local_code": "FWS" + }, + { + "id": "19912", + "ident": "KFXE", + "type": "medium_airport", + "name": "Fort Lauderdale Executive Airport", + "latitude_deg": "26.1972999573", + "longitude_deg": "-80.1707000732", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Lauderdale", + "scheduled_service": "no", + "gps_code": "KFXE", + "iata_code": "FXE", + "local_code": "FXE", + "home_link": "http://www.fortlauderdale.gov/fxE/index.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Lauderdale_Executive_Airport", + "keywords": "West Prospect Satellite Field" + }, + { + "id": "19913", + "ident": "KFXY", + "type": "small_airport", + "name": "Forest City Municipal Airport", + "latitude_deg": "43.23469925", + "longitude_deg": "-93.62409973", + "elevation_ft": "1229", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Forest City", + "scheduled_service": "no", + "gps_code": "KFXY", + "iata_code": "FXY", + "local_code": "FXY", + "home_link": "http://www.cityofforestcity.com/departments/airport.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Forest_City_Municipal_Airport" + }, + { + "id": "19914", + "ident": "KFYE", + "type": "small_airport", + "name": "Fayette County Airport", + "latitude_deg": "35.207698822021484", + "longitude_deg": "-89.39450073242188", + "elevation_ft": "436", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Somerville", + "scheduled_service": "no", + "gps_code": "KFYE", + "local_code": "FYE" + }, + { + "id": "19915", + "ident": "KFYJ", + "type": "small_airport", + "name": "Middle Peninsula Regional Airport", + "latitude_deg": "37.521299", + "longitude_deg": "-76.762762", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Shacklefords", + "scheduled_service": "no", + "gps_code": "KFYJ", + "local_code": "FYJ" + }, + { + "id": "19916", + "ident": "KFYM", + "type": "small_airport", + "name": "Fayetteville Municipal Airport", + "latitude_deg": "35.059700012200004", + "longitude_deg": "-86.5640029907", + "elevation_ft": "984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "KFYM", + "iata_code": "FYM", + "local_code": "FYM", + "home_link": "http://www.fayettevillemunicipalairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fayetteville_Municipal_Airport_(Tennessee)" + }, + { + "id": "3548", + "ident": "KFYV", + "type": "medium_airport", + "name": "Drake Field", + "latitude_deg": "36.00510025024414", + "longitude_deg": "-94.17009735107422", + "elevation_ft": "1251", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "KFYV", + "iata_code": "FYV", + "local_code": "FYV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Drake_Field" + }, + { + "id": "19917", + "ident": "KFZG", + "type": "small_airport", + "name": "Fitzgerald Municipal Airport", + "latitude_deg": "31.683700561523438", + "longitude_deg": "-83.27050018310547", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fitzgerald", + "scheduled_service": "no", + "gps_code": "KFZG", + "local_code": "FZG" + }, + { + "id": "19918", + "ident": "KFZI", + "type": "small_airport", + "name": "Fostoria Metropolitan Airport", + "latitude_deg": "41.19079971", + "longitude_deg": "-83.39450073", + "elevation_ft": "752", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Fostoria", + "scheduled_service": "no", + "gps_code": "KFZI", + "local_code": "FZI" + }, + { + "id": "19919", + "ident": "KFZY", + "type": "small_airport", + "name": "Oswego County Airport", + "latitude_deg": "43.350799560546875", + "longitude_deg": "-76.38809967041016", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Fulton", + "scheduled_service": "no", + "gps_code": "KFZY", + "local_code": "FZY" + }, + { + "id": "41534", + "ident": "KG-0001", + "type": "medium_airport", + "name": "Jalal-Abad Airport", + "latitude_deg": "40.944401", + "longitude_deg": "72.977798", + "elevation_ft": "2591", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-J", + "municipality": "Jalal-Abad", + "scheduled_service": "yes", + "gps_code": "UAFJ", + "home_link": "http://www.airport.kg/index.php?option=com_content&view=article&id=4&Itemid=6", + "wikipedia_link": "https://en.m.wikipedia.org/wiki/Jalal-Abad_Airport" + }, + { + "id": "41535", + "ident": "KG-0002", + "type": "small_airport", + "name": "Naryn Airport", + "latitude_deg": "41.44150161739999", + "longitude_deg": "76.13059997559999", + "elevation_ft": "6998", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-N", + "municipality": "Naryn", + "scheduled_service": "yes", + "gps_code": "UAFN" + }, + { + "id": "41536", + "ident": "KG-0003", + "type": "small_airport", + "name": "Toktogul Airport", + "latitude_deg": "41.877998", + "longitude_deg": "72.862396", + "elevation_ft": "3157", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-J", + "municipality": "Toktogul", + "scheduled_service": "no", + "gps_code": "UAFX", + "local_code": "THL" + }, + { + "id": "41537", + "ident": "KG-0004", + "type": "small_airport", + "name": "Talas Airport", + "latitude_deg": "42.5059013367", + "longitude_deg": "72.2630996704", + "elevation_ft": "4153", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-T", + "municipality": "Talas", + "scheduled_service": "yes", + "gps_code": "UAFT", + "home_link": "http://civilaviation.kg/index.php?option=com_content&view=article&id=53&Itemid=82" + }, + { + "id": "41646", + "ident": "KG-0005", + "type": "small_airport", + "name": "Chatkel Agri Airport", + "latitude_deg": "42.99909973144531", + "longitude_deg": "74.29930114746094", + "elevation_ft": "2126", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-C", + "municipality": "Chatkel", + "scheduled_service": "no" + }, + { + "id": "41539", + "ident": "KG-0006", + "type": "small_airport", + "name": "Tamga Airport", + "latitude_deg": "42.1530990601", + "longitude_deg": "77.5639038086", + "elevation_ft": "5655", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-Y", + "municipality": "Tamga", + "scheduled_service": "yes", + "gps_code": "UAFA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tamga_Airport" + }, + { + "id": "41540", + "ident": "KG-0007", + "type": "small_airport", + "name": "Tokmok Airport", + "latitude_deg": "42.828899383499994", + "longitude_deg": "75.33599853519999", + "elevation_ft": "2770", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-C", + "municipality": "Tokmok", + "scheduled_service": "yes", + "gps_code": "UAFF", + "keywords": "Tokmok" + }, + { + "id": "41647", + "ident": "KG-0008", + "type": "small_airport", + "name": "Chon Aryk Airport", + "latitude_deg": "42.81560134887695", + "longitude_deg": "74.58560180664062", + "elevation_ft": "2958", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-C", + "municipality": "Bishkek", + "scheduled_service": "no" + }, + { + "id": "41648", + "ident": "KG-0009", + "type": "closed", + "name": "Frunze Airport", + "latitude_deg": "42.834", + "longitude_deg": "74.5774", + "elevation_ft": "2771", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-C", + "municipality": "Bishkek", + "scheduled_service": "no" + }, + { + "id": "41649", + "ident": "KG-0010", + "type": "small_airport", + "name": "Frunze Northwest Airport", + "latitude_deg": "42.91419982910156", + "longitude_deg": "74.50830078125", + "elevation_ft": "2311", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-C", + "municipality": "Bishkek", + "scheduled_service": "no" + }, + { + "id": "41650", + "ident": "KG-0011", + "type": "small_airport", + "name": "Sretenka Airport", + "latitude_deg": "42.91429901123047", + "longitude_deg": "74.11900329589844", + "elevation_ft": "2162", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-C", + "municipality": "Sretenka", + "scheduled_service": "no" + }, + { + "id": "41651", + "ident": "KG-0012", + "type": "small_airport", + "name": "Verkhnyaya Alaarcha Airport", + "latitude_deg": "42.74369812011719", + "longitude_deg": "74.54239654541016", + "elevation_ft": "3925", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-C", + "municipality": "Verkhnyaya Alaarcha", + "scheduled_service": "no" + }, + { + "id": "41652", + "ident": "KG-0013", + "type": "closed", + "name": "Bazar Kurgan Airport", + "latitude_deg": "41.000801", + "longitude_deg": "72.700699", + "elevation_ft": "2211", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-J", + "municipality": "Bazar Kurgan", + "scheduled_service": "no" + }, + { + "id": "41653", + "ident": "KG-0014", + "type": "small_airport", + "name": "Kerben Airport", + "latitude_deg": "41.484500885", + "longitude_deg": "71.7337036133", + "elevation_ft": "4199", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-J", + "municipality": "Kerben", + "scheduled_service": "yes", + "gps_code": "UAFE", + "home_link": "http://civilaviation.kg/index.php?option=com_content&view=article&id=50&Itemid=41", + "keywords": "Kerben Airport" + }, + { + "id": "41654", + "ident": "KG-0015", + "type": "closed", + "name": "Suzak Airport", + "latitude_deg": "40.898998", + "longitude_deg": "72.927399", + "elevation_ft": "2350", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-J", + "municipality": "Suzak", + "scheduled_service": "no" + }, + { + "id": "41655", + "ident": "KG-0016", + "type": "closed", + "name": "Torktul Airport", + "latitude_deg": "40.818001", + "longitude_deg": "73.3041", + "elevation_ft": "3157", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-J", + "municipality": "Zarger", + "scheduled_service": "no" + }, + { + "id": "41656", + "ident": "KG-0017", + "type": "closed", + "name": "Aravan West Airport", + "latitude_deg": "40.522567", + "longitude_deg": "72.407398", + "elevation_ft": "2117", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-O", + "municipality": "Aravan", + "scheduled_service": "no" + }, + { + "id": "41657", + "ident": "KG-0018", + "type": "small_airport", + "name": "Kyzyl-Kiya Airport", + "latitude_deg": "40.271701812699995", + "longitude_deg": "72.0470962524", + "elevation_ft": "2928", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-B", + "municipality": "Kyzyl-Kiya", + "scheduled_service": "yes", + "gps_code": "UAFS", + "keywords": "Kyzyl-Kiya Airport" + }, + { + "id": "41658", + "ident": "KG-0019", + "type": "closed", + "name": "Madaniyat Airport", + "latitude_deg": "40.592796", + "longitude_deg": "72.848883", + "elevation_ft": "2936", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-O", + "municipality": "Madaniyat", + "scheduled_service": "no" + }, + { + "id": "41659", + "ident": "KG-0020", + "type": "closed", + "name": "Osh West Airport", + "latitude_deg": "40.534901", + "longitude_deg": "72.753799", + "elevation_ft": "3138", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-GO", + "municipality": "Osh", + "scheduled_service": "no" + }, + { + "id": "41660", + "ident": "KG-0021", + "type": "small_airport", + "name": "Pokrovka Airport", + "latitude_deg": "42.7156982421875", + "longitude_deg": "71.70999908447266", + "elevation_ft": "2734", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-T", + "municipality": "Pokrovka", + "scheduled_service": "no" + }, + { + "id": "319051", + "ident": "KG-0022", + "type": "small_airport", + "name": "Novopokrovskiyi Airport", + "latitude_deg": "42.89127", + "longitude_deg": "74.749743", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-C", + "municipality": "Novopokrovka", + "scheduled_service": "no", + "keywords": "Novopokrovka" + }, + { + "id": "41662", + "ident": "KG-0023", + "type": "closed", + "name": "Balykchy Airport", + "latitude_deg": "42.429542", + "longitude_deg": "76.122753", + "elevation_ft": "5326", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-Y", + "municipality": "Balykchy", + "scheduled_service": "no", + "gps_code": "UAFR", + "keywords": "Balykchy Airport, Rybachye Airport" + }, + { + "id": "41663", + "ident": "KG-0024", + "type": "closed", + "name": "Kalacha Southwest Airport", + "latitude_deg": "40.08570098876953", + "longitude_deg": "69.63529968261719", + "elevation_ft": "2326", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-B", + "municipality": "Kalacha", + "scheduled_service": "no" + }, + { + "id": "41664", + "ident": "KG-0025", + "type": "closed", + "name": "Khaydarken Airport", + "latitude_deg": "39.93600082397461", + "longitude_deg": "71.33660125732422", + "elevation_ft": "6440", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-B", + "municipality": "Khaydarken", + "scheduled_service": "no" + }, + { + "id": "41665", + "ident": "KG-0026", + "type": "closed", + "name": "Sovetsky/Kiyan Kul Airport", + "latitude_deg": "40.17190170288086", + "longitude_deg": "71.30229949951172", + "elevation_ft": "3600", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-B", + "municipality": "Sovetsky", + "scheduled_service": "no" + }, + { + "id": "41666", + "ident": "KG-0027", + "type": "closed", + "name": "Belovodskoye Airport", + "latitude_deg": "42.81890106201172", + "longitude_deg": "74.0730972290039", + "elevation_ft": "2555", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-C", + "municipality": "Belovodskoye", + "scheduled_service": "no" + }, + { + "id": "41667", + "ident": "KG-0028", + "type": "closed", + "name": "Kara Baita Airport", + "latitude_deg": "42.811500549316406", + "longitude_deg": "73.90049743652344", + "elevation_ft": "2615", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-C", + "municipality": "Kara Baita", + "scheduled_service": "no" + }, + { + "id": "41668", + "ident": "KG-0029", + "type": "closed", + "name": "Miyanfan Airport", + "latitude_deg": "42.950401306152344", + "longitude_deg": "74.84259796142578", + "elevation_ft": "2239", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-C", + "municipality": "Miyanfan", + "scheduled_service": "no" + }, + { + "id": "41669", + "ident": "KG-0030", + "type": "closed", + "name": "Ala Buka Airport", + "latitude_deg": "41.38349914550781", + "longitude_deg": "71.49849700927734", + "elevation_ft": "3892", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-J", + "municipality": "Ala Buka", + "scheduled_service": "no" + }, + { + "id": "41670", + "ident": "KG-0031", + "type": "closed", + "name": "Mikhaylovka Dmitriyevka Airport", + "latitude_deg": "41.155027", + "longitude_deg": "73.221788", + "elevation_ft": "4039", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-J", + "municipality": "Mazar-Bulak", + "scheduled_service": "no" + }, + { + "id": "41671", + "ident": "KG-0032", + "type": "closed", + "name": "Sakaldy Dubar Airport", + "latitude_deg": "41.008201599121094", + "longitude_deg": "72.56330108642578", + "elevation_ft": "1885", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-J", + "municipality": "Sakaldy", + "scheduled_service": "no" + }, + { + "id": "41672", + "ident": "KG-0033", + "type": "closed", + "name": "Spasskoye/Akbash Airport", + "latitude_deg": "41.022871", + "longitude_deg": "72.98982", + "elevation_ft": "2894", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-J", + "municipality": "Aman Ail", + "scheduled_service": "no" + }, + { + "id": "41673", + "ident": "KG-0034", + "type": "closed", + "name": "Akazhar Airport", + "latitude_deg": "41.197684", + "longitude_deg": "75.765463", + "elevation_ft": "6740", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-N", + "municipality": "At-Bashi", + "scheduled_service": "no", + "keywords": "Ат-Башы, At-Bashy" + }, + { + "id": "41674", + "ident": "KG-0035", + "type": "closed", + "name": "Chayek Airport", + "latitude_deg": "41.93410110473633", + "longitude_deg": "74.5363998413086", + "elevation_ft": "5495", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-N", + "municipality": "Chayek", + "scheduled_service": "no" + }, + { + "id": "41675", + "ident": "KG-0036", + "type": "closed", + "name": "Daraut Kurgan Airport", + "latitude_deg": "39.54669952392578", + "longitude_deg": "72.24829864501953", + "elevation_ft": "8250", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-O", + "municipality": "Daraut Kurgan", + "scheduled_service": "no" + }, + { + "id": "41676", + "ident": "KG-0037", + "type": "closed", + "name": "Osh East / Eski Airport", + "latitude_deg": "40.580132", + "longitude_deg": "72.93391", + "elevation_ft": "3338", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-O", + "municipality": "Osh", + "scheduled_service": "no" + }, + { + "id": "41677", + "ident": "KG-0038", + "type": "closed", + "name": "Groznoye Airport", + "latitude_deg": "42.60530090332031", + "longitude_deg": "71.2134017944336", + "elevation_ft": "3264", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-T", + "municipality": "Groznoye", + "scheduled_service": "no" + }, + { + "id": "41678", + "ident": "KG-0039", + "type": "closed", + "name": "Kirgizskaya Airport", + "latitude_deg": "42.753501892089844", + "longitude_deg": "71.404296875", + "elevation_ft": "2415", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-T", + "municipality": "Kirgizskaya", + "scheduled_service": "no" + }, + { + "id": "41679", + "ident": "KG-0040", + "type": "closed", + "name": "Kirovskoye Airport", + "latitude_deg": "42.628700256347656", + "longitude_deg": "71.5813980102539", + "elevation_ft": "3135", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-T", + "municipality": "Kirovskoye", + "scheduled_service": "no" + }, + { + "id": "41680", + "ident": "KG-0041", + "type": "closed", + "name": "Koksay Airport", + "latitude_deg": "42.498600006103516", + "longitude_deg": "71.1218032836914", + "elevation_ft": "3066", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-T", + "municipality": "Koksay", + "scheduled_service": "no" + }, + { + "id": "41681", + "ident": "KG-0042", + "type": "closed", + "name": "Pokrovka/Ozero Issyk Kul Airport", + "latitude_deg": "42.35100173950195", + "longitude_deg": "78.01820373535156", + "elevation_ft": "5812", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-Y", + "municipality": "Prokovka", + "scheduled_service": "no" + }, + { + "id": "319131", + "ident": "KG-0043", + "type": "small_airport", + "name": "Ak Bashat Airport", + "latitude_deg": "42.889604", + "longitude_deg": "73.929985", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-C", + "municipality": "Ak Bashat village", + "scheduled_service": "no", + "keywords": "Ak Bashat Airport" + }, + { + "id": "319060", + "ident": "KG-0044", + "type": "small_airport", + "name": "Ak Bashat Airport", + "latitude_deg": "42.88958", + "longitude_deg": "73.602004", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-C", + "municipality": "Ak Bashat village", + "scheduled_service": "no", + "keywords": "Ak Bashat Airport" + }, + { + "id": "351312", + "ident": "KG-0045", + "type": "heliport", + "name": "Irkeshtam Heliport", + "latitude_deg": "39.67576", + "longitude_deg": "73.89615", + "elevation_ft": "9452", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-O", + "municipality": "Irkeshtam", + "scheduled_service": "no" + }, + { + "id": "355326", + "ident": "KG-0046", + "type": "small_airport", + "name": "Kara-Kuldja Airport", + "latitude_deg": "40.629006", + "longitude_deg": "73.622493", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-O", + "municipality": "Kara-Kuldja", + "scheduled_service": "no" + }, + { + "id": "19920", + "ident": "KGAD", + "type": "small_airport", + "name": "Northeast Alabama Regional Airport", + "latitude_deg": "33.972599", + "longitude_deg": "-86.088996", + "elevation_ft": "569", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Gadsden", + "scheduled_service": "no", + "gps_code": "KGAD", + "iata_code": "GAD", + "local_code": "GAD", + "home_link": "http://www.nealair.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Northeast_Alabama_Regional_Airport", + "keywords": "Gadsden Municipal" + }, + { + "id": "19921", + "ident": "KGAF", + "type": "small_airport", + "name": "Hutson Field", + "latitude_deg": "48.404701232910156", + "longitude_deg": "-97.37090301513672", + "elevation_ft": "824", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Grafton", + "scheduled_service": "no", + "gps_code": "KGAF", + "local_code": "GAF" + }, + { + "id": "17574", + "ident": "KGAG", + "type": "small_airport", + "name": "Gage Airport", + "latitude_deg": "36.295501709", + "longitude_deg": "-99.7763977051", + "elevation_ft": "2223", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Gage", + "scheduled_service": "no", + "gps_code": "KGAG", + "iata_code": "GAG", + "local_code": "GAG" + }, + { + "id": "19922", + "ident": "KGAI", + "type": "small_airport", + "name": "Montgomery County Airpark", + "latitude_deg": "39.168301", + "longitude_deg": "-77.166", + "elevation_ft": "539", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Gaithersburg", + "scheduled_service": "no", + "gps_code": "KGAI", + "iata_code": "GAI", + "local_code": "GAI", + "home_link": "http://www.montgomerycountyairpark.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Montgomery_County_Airpark" + }, + { + "id": "19923", + "ident": "KGAO", + "type": "small_airport", + "name": "South Lafourche Leonard Miller Jr Airport", + "latitude_deg": "29.44479942", + "longitude_deg": "-90.26110077", + "elevation_ft": "1", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Galliano", + "scheduled_service": "no", + "gps_code": "KGAO", + "local_code": "GAO" + }, + { + "id": "19924", + "ident": "KGAS", + "type": "small_airport", + "name": "Gallia Meigs Regional Airport", + "latitude_deg": "38.83409881591797", + "longitude_deg": "-82.16339874267578", + "elevation_ft": "566", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Gallipolis", + "scheduled_service": "no", + "gps_code": "KGAS", + "local_code": "GAS" + }, + { + "id": "334447", + "ident": "KGAX", + "type": "small_airport", + "name": "Williams Auxiliary Air Field 6", + "latitude_deg": "32.884669", + "longitude_deg": "-112.816544", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gila Bend", + "scheduled_service": "no", + "gps_code": "KGAX", + "local_code": "GAX" + }, + { + "id": "19925", + "ident": "KGBD", + "type": "small_airport", + "name": "Great Bend Municipal Airport", + "latitude_deg": "38.3442993164", + "longitude_deg": "-98.8591995239", + "elevation_ft": "1887", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Great Bend", + "scheduled_service": "no", + "gps_code": "KGBD", + "iata_code": "GBD", + "local_code": "GBD" + }, + { + "id": "19926", + "ident": "KGBG", + "type": "small_airport", + "name": "Galesburg Municipal Airport", + "latitude_deg": "40.937999725299996", + "longitude_deg": "-90.431098938", + "elevation_ft": "764", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Galesburg", + "scheduled_service": "no", + "gps_code": "KGBG", + "iata_code": "GBG", + "local_code": "GBG", + "home_link": "http://www.ci.galesburg.il.us/services/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Galesburg_Municipal_Airport" + }, + { + "id": "19927", + "ident": "KGBN", + "type": "small_airport", + "name": "Gila Bend Air Force Auxiliary Airport", + "latitude_deg": "32.887501", + "longitude_deg": "-112.720001", + "elevation_ft": "883", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gila Bend", + "scheduled_service": "no", + "gps_code": "KGXF", + "local_code": "GXF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gila_Bend_Air_Force_Auxiliary_Field" + }, + { + "id": "19928", + "ident": "KGBR", + "type": "small_airport", + "name": "Walter J. Koladza Airport", + "latitude_deg": "42.18420029", + "longitude_deg": "-73.40319824", + "elevation_ft": "739", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Great Barrington", + "scheduled_service": "no", + "gps_code": "KGBR", + "iata_code": "GBR", + "local_code": "GBR", + "home_link": "http://greatbarringtonairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Walter_J._Koladza_Airport" + }, + { + "id": "19929", + "ident": "KGCC", + "type": "medium_airport", + "name": "Northeast Wyoming Regional Airport", + "latitude_deg": "44.3489", + "longitude_deg": "-105.539001", + "elevation_ft": "4365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Gillette", + "scheduled_service": "yes", + "gps_code": "KGCC", + "iata_code": "GCC", + "local_code": "GCC", + "home_link": "http://www.iflygillette.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gillette%E2%80%93Campbell_County_Airport", + "keywords": "Gillette Campbell County Airport" + }, + { + "id": "17576", + "ident": "KGCD", + "type": "small_airport", + "name": "Grant County Regional Airport / Ogilvie Field", + "latitude_deg": "44.404202", + "longitude_deg": "-118.962997", + "elevation_ft": "3703", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "John Day", + "scheduled_service": "no", + "gps_code": "KGCD", + "iata_code": "JDA", + "local_code": "GCD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grant_County_Regional_Airport", + "keywords": "5J0" + }, + { + "id": "3550", + "ident": "KGCK", + "type": "medium_airport", + "name": "Garden City Regional Airport", + "latitude_deg": "37.9275016785", + "longitude_deg": "-100.723999023", + "elevation_ft": "2891", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Garden City", + "scheduled_service": "yes", + "gps_code": "KGCK", + "iata_code": "GCK", + "local_code": "GCK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Garden_City_Regional_Airport" + }, + { + "id": "19930", + "ident": "KGCM", + "type": "small_airport", + "name": "Claremore Regional Airport", + "latitude_deg": "36.292701721191406", + "longitude_deg": "-95.47959899902344", + "elevation_ft": "733", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Claremore", + "scheduled_service": "no", + "gps_code": "KGCM", + "local_code": "GCM" + }, + { + "id": "3551", + "ident": "KGCN", + "type": "medium_airport", + "name": "Grand Canyon National Park Airport", + "latitude_deg": "35.9524", + "longitude_deg": "-112.147003", + "elevation_ft": "6609", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Grand Canyon - Tusayan", + "scheduled_service": "yes", + "gps_code": "KGCN", + "iata_code": "GCN", + "local_code": "GCN", + "home_link": "http://www.azdot.gov/aviation/airports/airports_list.asp?FAA=GCN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Canyon_National_Park_Airport" + }, + { + "id": "19931", + "ident": "KGCT", + "type": "small_airport", + "name": "Guthrie County Regional Airport", + "latitude_deg": "41.687801361083984", + "longitude_deg": "-94.4352035522461", + "elevation_ft": "1230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Guthrie Center", + "scheduled_service": "no", + "gps_code": "KGCT", + "local_code": "GCT" + }, + { + "id": "19932", + "ident": "KGCY", + "type": "small_airport", + "name": "Greeneville Municipal Airport", + "latitude_deg": "36.195648", + "longitude_deg": "-82.811482", + "elevation_ft": "1608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Greeneville", + "scheduled_service": "no", + "gps_code": "KGCY", + "iata_code": "GCY", + "local_code": "GCY", + "home_link": "http://www.greenevilleaviation.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greeneville-Greene_County_Municipal_Airport", + "keywords": "Greene County" + }, + { + "id": "19933", + "ident": "KGDB", + "type": "small_airport", + "name": "Granite Falls Municipal Airport / Lenzen-Roe Memorial Field", + "latitude_deg": "44.7533", + "longitude_deg": "-95.556", + "elevation_ft": "1047", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Granite Falls", + "scheduled_service": "no", + "gps_code": "KGDB", + "local_code": "GDB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Granite_Falls_Municipal_Airport" + }, + { + "id": "19934", + "ident": "KGDJ", + "type": "small_airport", + "name": "Granbury Regional Airport", + "latitude_deg": "32.44440079", + "longitude_deg": "-97.81690216", + "elevation_ft": "778", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Granbury", + "scheduled_service": "no", + "gps_code": "KGDJ", + "local_code": "GDJ" + }, + { + "id": "19935", + "ident": "KGDM", + "type": "small_airport", + "name": "Gardner Municipal Airport", + "latitude_deg": "42.5499992371", + "longitude_deg": "-72.0160980225", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Gardner", + "scheduled_service": "no", + "gps_code": "KGDM", + "iata_code": "GDM", + "local_code": "GDM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gardner_Municipal_Airport_(Massachusetts)" + }, + { + "id": "19936", + "ident": "KGDV", + "type": "medium_airport", + "name": "Dawson Community Airport", + "latitude_deg": "47.13869858", + "longitude_deg": "-104.8069992", + "elevation_ft": "2458", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Glendive", + "scheduled_service": "no", + "gps_code": "KGDV", + "iata_code": "GDV", + "local_code": "GDV" + }, + { + "id": "19937", + "ident": "KGDW", + "type": "small_airport", + "name": "Gladwin Zettel Memorial Airport", + "latitude_deg": "43.9706001282", + "longitude_deg": "-84.47499847410002", + "elevation_ft": "776", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Gladwin", + "scheduled_service": "no", + "gps_code": "KGDW", + "iata_code": "GDW", + "local_code": "GDW", + "home_link": "http://www.gladwin.org/airport/airport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gladwin_Zettel_Memorial_Airport" + }, + { + "id": "19938", + "ident": "KGED", + "type": "small_airport", + "name": "Delaware Coastal Airport", + "latitude_deg": "38.689201", + "longitude_deg": "-75.358902", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Georgetown", + "scheduled_service": "no", + "gps_code": "KGED", + "iata_code": "GED", + "local_code": "GED", + "home_link": "https://www.sussexcountyde.gov/about/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sussex_County_Airport" + }, + { + "id": "3552", + "ident": "KGEG", + "type": "medium_airport", + "name": "Spokane International Airport", + "latitude_deg": "47.6199", + "longitude_deg": "-117.533997", + "elevation_ft": "2376", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Spokane", + "scheduled_service": "yes", + "gps_code": "KGEG", + "iata_code": "GEG", + "local_code": "GEG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Spokane_International_Airport" + }, + { + "id": "19939", + "ident": "KGEO", + "type": "small_airport", + "name": "Brown County Airport", + "latitude_deg": "38.881900787353516", + "longitude_deg": "-83.88269805908203", + "elevation_ft": "958", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Georgetown", + "scheduled_service": "no", + "gps_code": "KGEO", + "local_code": "GEO" + }, + { + "id": "19940", + "ident": "KGEU", + "type": "small_airport", + "name": "Glendale Municipal Airport", + "latitude_deg": "33.52690124511719", + "longitude_deg": "-112.29499816894531", + "elevation_ft": "1071", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Glendale", + "scheduled_service": "no", + "gps_code": "KGEU", + "local_code": "GEU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Glendale_Municipal_Airport" + }, + { + "id": "19941", + "ident": "KGEV", + "type": "small_airport", + "name": "Ashe County Airport", + "latitude_deg": "36.432418", + "longitude_deg": "-81.418519", + "elevation_ft": "3180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Jefferson", + "scheduled_service": "no", + "gps_code": "KGEV", + "local_code": "GEV", + "home_link": "http://www.ashencedc.com/ashe-county-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ashe_County_Airport", + "keywords": "NC67" + }, + { + "id": "19942", + "ident": "KGEY", + "type": "small_airport", + "name": "South Big Horn County Airport", + "latitude_deg": "44.51679993", + "longitude_deg": "-108.0830002", + "elevation_ft": "3939", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Greybull", + "scheduled_service": "no", + "gps_code": "KGEY", + "iata_code": "GEY", + "local_code": "GEY", + "home_link": "http://www.bighorncountywy.gov/res-airports.htm" + }, + { + "id": "19943", + "ident": "KGEZ", + "type": "small_airport", + "name": "Shelbyville Municipal Airport", + "latitude_deg": "39.586044", + "longitude_deg": "-85.804024", + "elevation_ft": "803", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Shelbyville", + "scheduled_service": "no", + "gps_code": "KGEZ", + "local_code": "GEZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shelbyville_Municipal_Airport_(Indiana)" + }, + { + "id": "17593", + "ident": "KGFA", + "type": "heliport", + "name": "Malmstrom Air Force Base", + "latitude_deg": "47.504699707", + "longitude_deg": "-111.18699646", + "elevation_ft": "3472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Great Falls", + "scheduled_service": "no", + "gps_code": "KGFA", + "iata_code": "GFA", + "local_code": "GFA", + "home_link": "http://www.malmstrom.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Malmstrom_Air_Force_Base", + "keywords": "Great Falls Municipal Airport" + }, + { + "id": "3553", + "ident": "KGFK", + "type": "medium_airport", + "name": "Grand Forks International Airport", + "latitude_deg": "47.949299", + "longitude_deg": "-97.176102", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Grand Forks", + "scheduled_service": "yes", + "gps_code": "KGFK", + "iata_code": "GFK", + "local_code": "GFK", + "home_link": "http://www.gfkairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Forks_International_Airport" + }, + { + "id": "3554", + "ident": "KGFL", + "type": "medium_airport", + "name": "Floyd Bennett Memorial Airport", + "latitude_deg": "43.3412017822", + "longitude_deg": "-73.6102981567", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Glens Falls", + "scheduled_service": "no", + "gps_code": "KGFL", + "iata_code": "GFL", + "local_code": "GFL", + "home_link": "http://www.warrencountydpw.com/airport_07/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Floyd_Bennett_Memorial_Airport" + }, + { + "id": "19944", + "ident": "KGFZ", + "type": "small_airport", + "name": "Greenfield Municipal Airport", + "latitude_deg": "41.32699966", + "longitude_deg": "-94.4457016", + "elevation_ft": "1364", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Greenfield", + "scheduled_service": "no", + "gps_code": "KGFZ", + "local_code": "GFZ" + }, + { + "id": "19945", + "ident": "KGGE", + "type": "small_airport", + "name": "Georgetown County Airport", + "latitude_deg": "33.3116989136", + "longitude_deg": "-79.3196029663", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Georgetown", + "scheduled_service": "no", + "gps_code": "KGGE", + "iata_code": "GGE", + "local_code": "GGE", + "home_link": "http://www.georgetowncountyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Georgetown_County_Airport" + }, + { + "id": "19946", + "ident": "KGGF", + "type": "small_airport", + "name": "Grant Municipal Airport", + "latitude_deg": "40.86949921", + "longitude_deg": "-101.7330017", + "elevation_ft": "3425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Grant", + "scheduled_service": "no", + "gps_code": "KGGF", + "local_code": "GGF" + }, + { + "id": "3555", + "ident": "KGGG", + "type": "medium_airport", + "name": "East Texas Regional Airport", + "latitude_deg": "32.38399887084961", + "longitude_deg": "-94.71150207519531", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Longview", + "scheduled_service": "yes", + "gps_code": "KGGG", + "iata_code": "GGG", + "local_code": "GGG", + "wikipedia_link": "https://en.wikipedia.org/wiki/East_Texas_Regional_Airport" + }, + { + "id": "19947", + "ident": "KGGI", + "type": "small_airport", + "name": "Grinnell Regional Airport", + "latitude_deg": "41.70991", + "longitude_deg": "-92.736052", + "elevation_ft": "1008", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Grinnell", + "scheduled_service": "no", + "gps_code": "KGGI", + "local_code": "GGI" + }, + { + "id": "19948", + "ident": "KGGP", + "type": "small_airport", + "name": "Logansport Cass County Airport", + "latitude_deg": "40.711201", + "longitude_deg": "-86.374901", + "elevation_ft": "738", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Logansport", + "scheduled_service": "no", + "gps_code": "KGGP", + "local_code": "GGP" + }, + { + "id": "3556", + "ident": "KGGW", + "type": "medium_airport", + "name": "Wokal Field/Glasgow-Valley County Airport", + "latitude_deg": "48.212502", + "longitude_deg": "-106.614998", + "elevation_ft": "2296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Glasgow", + "scheduled_service": "yes", + "gps_code": "KGGW", + "iata_code": "GGW", + "local_code": "GGW", + "home_link": "http://www.glasgowmtairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Glasgow_Airport_(US)", + "keywords": "Glascow / Valley County, Glasgow AAF, Wokal Field Glasgow International" + }, + { + "id": "19949", + "ident": "KGHG", + "type": "small_airport", + "name": "Marshfield Municipal George Harlow Field", + "latitude_deg": "42.09830093383789", + "longitude_deg": "-70.67220306396484", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Marshfield", + "scheduled_service": "no", + "gps_code": "KGHG", + "local_code": "GHG" + }, + { + "id": "19950", + "ident": "KGHM", + "type": "small_airport", + "name": "Centerville Municipal Airport", + "latitude_deg": "35.8373985291", + "longitude_deg": "-87.44539642330001", + "elevation_ft": "768", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Centerville", + "scheduled_service": "no", + "gps_code": "KGHM", + "iata_code": "GHM", + "local_code": "GHM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Centerville_Municipal_Airport_(Tennessee)" + }, + { + "id": "19951", + "ident": "KGHW", + "type": "small_airport", + "name": "Glenwood Municipal Airport", + "latitude_deg": "45.64390182495117", + "longitude_deg": "-95.32039642333984", + "elevation_ft": "1393", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Glenwood", + "scheduled_service": "no", + "gps_code": "KGHW", + "local_code": "GHW" + }, + { + "id": "19952", + "ident": "KGIF", + "type": "small_airport", + "name": "Winter Haven Regional Airport - Gilbert Field", + "latitude_deg": "28.062901", + "longitude_deg": "-81.753304", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Winter Haven", + "scheduled_service": "no", + "gps_code": "KGIF", + "iata_code": "GIF", + "local_code": "GIF", + "home_link": "http://kgif.mywinterhaven.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Winter_Haven's_Gilbert_Airport" + }, + { + "id": "3557", + "ident": "KGJT", + "type": "medium_airport", + "name": "Grand Junction Regional Airport", + "latitude_deg": "39.126663", + "longitude_deg": "-108.529387", + "elevation_ft": "4858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Grand Junction", + "scheduled_service": "yes", + "gps_code": "KGJT", + "iata_code": "GJT", + "local_code": "GJT", + "home_link": "http://www.gjairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Junction_Regional_Airport" + }, + { + "id": "19953", + "ident": "KGKJ", + "type": "small_airport", + "name": "Port Meadville Airport", + "latitude_deg": "41.626499", + "longitude_deg": "-80.214699", + "elevation_ft": "1399", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Meadville", + "scheduled_service": "no", + "gps_code": "KGKJ", + "iata_code": "MEJ", + "local_code": "GKJ", + "home_link": "http://www.crawfordcountypa.net/portal/page?_dad=portal&_pageid=393,916281&_schema=PORTAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Meadville_Airport", + "keywords": "2G6" + }, + { + "id": "19954", + "ident": "KGKT", + "type": "small_airport", + "name": "Gatlinburg-Pigeon Forge Airport", + "latitude_deg": "35.85779953", + "longitude_deg": "-83.52870178219999", + "elevation_ft": "1014", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Sevierville", + "scheduled_service": "no", + "gps_code": "KGKT", + "iata_code": "GKT", + "local_code": "GKT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gatlinburg-Pigeon_Forge_Airport" + }, + { + "id": "19955", + "ident": "KGKY", + "type": "small_airport", + "name": "Arlington Municipal Airport", + "latitude_deg": "32.66389846801758", + "longitude_deg": "-97.09429931640625", + "elevation_ft": "628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "KGKY", + "local_code": "GKY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arlington_Municipal_Airport_(Texas)" + }, + { + "id": "19956", + "ident": "KGLD", + "type": "medium_airport", + "name": "Goodland Municipal Airport", + "latitude_deg": "39.370701", + "longitude_deg": "-101.699753", + "elevation_ft": "3656", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Goodland", + "scheduled_service": "no", + "gps_code": "KGLD", + "iata_code": "GLD", + "local_code": "GLD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Goodland_Municipal_Airport", + "keywords": "Renner Field" + }, + { + "id": "19957", + "ident": "KGLE", + "type": "small_airport", + "name": "Gainesville Municipal Airport", + "latitude_deg": "33.651401519800004", + "longitude_deg": "-97.1969985962", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gainesville", + "scheduled_service": "no", + "gps_code": "KGLE", + "iata_code": "GLE", + "local_code": "GLE", + "home_link": "http://www.gainesville.tx.us/index.aspx?nid=99", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gainesville_Municipal_Airport" + }, + { + "id": "19958", + "ident": "KGLH", + "type": "medium_airport", + "name": "Mid Delta Regional Airport", + "latitude_deg": "33.4828987121582", + "longitude_deg": "-90.98560333251953", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Greenville", + "scheduled_service": "yes", + "gps_code": "KGLH", + "iata_code": "GLH", + "local_code": "GLH" + }, + { + "id": "19959", + "ident": "KGLR", + "type": "small_airport", + "name": "Gaylord Regional Airport", + "latitude_deg": "45.013500213600004", + "longitude_deg": "-84.7035980225", + "elevation_ft": "1328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Gaylord", + "scheduled_service": "no", + "gps_code": "KGLR", + "iata_code": "GLR", + "local_code": "GLR", + "home_link": "http://www.gaylordregional.com/default.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gaylord_Regional_Airport", + "keywords": "Otsego County" + }, + { + "id": "3558", + "ident": "KGLS", + "type": "medium_airport", + "name": "Scholes International At Galveston Airport", + "latitude_deg": "29.265300750732422", + "longitude_deg": "-94.86039733886719", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Galveston", + "scheduled_service": "no", + "gps_code": "KGLS", + "iata_code": "GLS", + "local_code": "GLS" + }, + { + "id": "19960", + "ident": "KGLW", + "type": "small_airport", + "name": "Glasgow Municipal Airport", + "latitude_deg": "37.03179932", + "longitude_deg": "-85.9536972", + "elevation_ft": "716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Glasgow", + "scheduled_service": "no", + "gps_code": "KGLW", + "iata_code": "GLW", + "local_code": "GLW", + "home_link": "http://www.glasgowaviation.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Glasgow_Municipal_Airport" + }, + { + "id": "19961", + "ident": "KGLY", + "type": "small_airport", + "name": "Clinton Memorial Airport", + "latitude_deg": "38.35660171508789", + "longitude_deg": "-93.68419647216797", + "elevation_ft": "822", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "KGLY", + "local_code": "GLY" + }, + { + "id": "19962", + "ident": "KGMJ", + "type": "small_airport", + "name": "Grove Municipal Airport", + "latitude_deg": "36.60680008", + "longitude_deg": "-94.73860168", + "elevation_ft": "831", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Grove", + "scheduled_service": "no", + "gps_code": "KGMJ", + "local_code": "GMJ" + }, + { + "id": "19963", + "ident": "KGMU", + "type": "medium_airport", + "name": "Greenville Downtown Airport", + "latitude_deg": "34.847900390599996", + "longitude_deg": "-82.34999847410002", + "elevation_ft": "1048", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "KGMU", + "iata_code": "GMU", + "local_code": "GMU", + "home_link": "http://www.greenvilledowntownairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greenville_Downtown_Airport" + }, + { + "id": "19964", + "ident": "KGNB", + "type": "small_airport", + "name": "Granby Grand County Airport", + "latitude_deg": "40.089698791503906", + "longitude_deg": "-105.91699981689453", + "elevation_ft": "8203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Granby", + "scheduled_service": "no", + "gps_code": "KGNB", + "local_code": "GNB" + }, + { + "id": "19965", + "ident": "KGNC", + "type": "small_airport", + "name": "Gaines County Airport", + "latitude_deg": "32.676807", + "longitude_deg": "-102.649927", + "elevation_ft": "3315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seminole", + "scheduled_service": "no", + "gps_code": "KGNC", + "local_code": "GNC", + "keywords": "31F" + }, + { + "id": "19966", + "ident": "KGNF", + "type": "small_airport", + "name": "Grenada Municipal Airport", + "latitude_deg": "33.83250045776367", + "longitude_deg": "-89.79820251464844", + "elevation_ft": "208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Grenada", + "scheduled_service": "no", + "gps_code": "KGNF", + "local_code": "GNF" + }, + { + "id": "19967", + "ident": "KGNG", + "type": "small_airport", + "name": "Gooding Municipal Airport", + "latitude_deg": "42.91719818", + "longitude_deg": "-114.7649994", + "elevation_ft": "3732", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Gooding", + "scheduled_service": "no", + "gps_code": "KGNG", + "iata_code": "GNG", + "local_code": "GNG", + "home_link": "http://www.goodingidaho.org/departments/840-2/" + }, + { + "id": "19968", + "ident": "KGNT", + "type": "small_airport", + "name": "Grants-Milan Municipal Airport", + "latitude_deg": "35.167301178", + "longitude_deg": "-107.902000427", + "elevation_ft": "6537", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Grants", + "scheduled_service": "no", + "gps_code": "KGNT", + "iata_code": "GNT", + "local_code": "GNT" + }, + { + "id": "3559", + "ident": "KGNV", + "type": "medium_airport", + "name": "Gainesville Regional Airport", + "latitude_deg": "29.6900997162", + "longitude_deg": "-82.2717971802", + "elevation_ft": "152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Gainesville", + "scheduled_service": "yes", + "gps_code": "KGNV", + "iata_code": "GNV", + "local_code": "GNV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gainesville_Regional_Airport" + }, + { + "id": "19969", + "ident": "KGOK", + "type": "small_airport", + "name": "Guthrie-Edmond Regional Airport", + "latitude_deg": "35.84980011", + "longitude_deg": "-97.41560364", + "elevation_ft": "1069", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Guthrie", + "scheduled_service": "no", + "gps_code": "KGOK", + "iata_code": "GOK", + "local_code": "GOK", + "home_link": "http://www.guthrieedmondregionalairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guthrie%E2%80%93Edmond_Regional_Airport" + }, + { + "id": "3560", + "ident": "KGON", + "type": "medium_airport", + "name": "Groton New London Airport", + "latitude_deg": "41.330101013183594", + "longitude_deg": "-72.04509735107422", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Groton (New London)", + "scheduled_service": "no", + "gps_code": "KGON", + "iata_code": "GON", + "local_code": "GON", + "wikipedia_link": "https://en.wikipedia.org/wiki/Groton-New_London_Airport" + }, + { + "id": "19970", + "ident": "KGOO", + "type": "small_airport", + "name": "Nevada County Airport", + "latitude_deg": "39.223998", + "longitude_deg": "-121.002997", + "elevation_ft": "3152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Grass Valley", + "scheduled_service": "no", + "gps_code": "KGOO", + "local_code": "GOO", + "home_link": "https://www.mynevadacounty.com/149/Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nevada_County_Air_Park", + "keywords": "O17, Nevada County Air Park, Loma Rica Airport" + }, + { + "id": "17598", + "ident": "KGOP", + "type": "small_airport", + "name": "Gatesville Municipal Airport", + "latitude_deg": "31.421301", + "longitude_deg": "-97.796996", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gatesville", + "scheduled_service": "no", + "gps_code": "KGOP", + "local_code": "GOP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gatesville_Municipal_Airport", + "keywords": "05F, City-County Airport" + }, + { + "id": "19971", + "ident": "KGOV", + "type": "small_airport", + "name": "Grayling Army Air Field", + "latitude_deg": "44.680301666259766", + "longitude_deg": "-84.72889709472656", + "elevation_ft": "1158", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Grayling", + "scheduled_service": "no", + "gps_code": "KGOV", + "local_code": "GOV" + }, + { + "id": "19972", + "ident": "KGPH", + "type": "small_airport", + "name": "Midwest National Air Center Airport", + "latitude_deg": "39.33250046", + "longitude_deg": "-94.30960083", + "elevation_ft": "777", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Mosby", + "scheduled_service": "no", + "gps_code": "KGPH", + "local_code": "GPH" + }, + { + "id": "3527", + "ident": "KGPI", + "type": "medium_airport", + "name": "Glacier Park International Airport", + "latitude_deg": "48.31050109863281", + "longitude_deg": "-114.25599670410156", + "elevation_ft": "2977", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Kalispell", + "scheduled_service": "yes", + "gps_code": "KGPI", + "iata_code": "FCA", + "local_code": "GPI", + "home_link": "http://www.iflyglacier.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Glacier_Park_International_Airport", + "keywords": "Formerly KFCA" + }, + { + "id": "19973", + "ident": "KGPM", + "type": "small_airport", + "name": "Grand Prairie Municipal Airport", + "latitude_deg": "32.69879913330078", + "longitude_deg": "-97.0468978881836", + "elevation_ft": "588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Grand Prairie", + "scheduled_service": "no", + "gps_code": "KGPM", + "local_code": "GPM" + }, + { + "id": "3561", + "ident": "KGPT", + "type": "medium_airport", + "name": "Gulfport Biloxi International Airport", + "latitude_deg": "30.407301", + "longitude_deg": "-89.070099", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Gulfport", + "scheduled_service": "yes", + "gps_code": "KGPT", + "iata_code": "GPT", + "local_code": "GPT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gulfport-Biloxi_International_Airport" + }, + { + "id": "19974", + "ident": "KGPZ", + "type": "small_airport", + "name": "Grand Rapids Itasca Co-Gordon Newstrom field", + "latitude_deg": "47.21110153", + "longitude_deg": "-93.50980377", + "elevation_ft": "1355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Grand Rapids", + "scheduled_service": "no", + "gps_code": "KGPZ", + "iata_code": "GPZ", + "local_code": "GPZ", + "home_link": "http://grandrapids.govoffice.com/vertical/Sites/%7B938C328A-AD1C-45AA-A862-764C60A37DEF%7D/uploads/%7B7E8C4920-D1DC-4696-9A43-FF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Rapids_%E2%80%93_Itasca_County_Airport" + }, + { + "id": "19975", + "ident": "KGQQ", + "type": "small_airport", + "name": "Galion Municipal Airport", + "latitude_deg": "40.7533988953", + "longitude_deg": "-82.7238006592", + "elevation_ft": "1224", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Galion", + "scheduled_service": "no", + "gps_code": "KGQQ", + "iata_code": "GQQ", + "local_code": "GQQ", + "home_link": "http://www.ci.galion.oh.us/airport/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Galion_Municipal_Airport" + }, + { + "id": "3562", + "ident": "KGRB", + "type": "medium_airport", + "name": "Austin Straubel International Airport", + "latitude_deg": "44.483459", + "longitude_deg": "-88.130805", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Green Bay", + "scheduled_service": "yes", + "gps_code": "KGRB", + "iata_code": "GRB", + "local_code": "GRB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Austin_Straubel_International_Airport" + }, + { + "id": "19976", + "ident": "KGRD", + "type": "small_airport", + "name": "Greenwood County Airport", + "latitude_deg": "34.2486991882", + "longitude_deg": "-82.15910339359999", + "elevation_ft": "631", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Greenwood", + "scheduled_service": "no", + "gps_code": "KGRD", + "iata_code": "GRD", + "local_code": "GRD" + }, + { + "id": "19977", + "ident": "KGRE", + "type": "small_airport", + "name": "Greenville Airport", + "latitude_deg": "38.836844", + "longitude_deg": "-89.376525", + "elevation_ft": "541", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "KGRE", + "iata_code": "GRE", + "local_code": "GRE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greenville_Airport" + }, + { + "id": "3563", + "ident": "KGRF", + "type": "medium_airport", + "name": "Gray Army Air Field", + "latitude_deg": "47.07920074", + "longitude_deg": "-122.5810013", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Fort Lewis/Tacoma", + "scheduled_service": "no", + "gps_code": "KGRF", + "iata_code": "GRF", + "local_code": "GRF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gray_Army_Airfield" + }, + { + "id": "3564", + "ident": "KGRI", + "type": "medium_airport", + "name": "Central Nebraska Regional Airport", + "latitude_deg": "40.967498779296875", + "longitude_deg": "-98.30960083007812", + "elevation_ft": "1847", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Grand Island", + "scheduled_service": "yes", + "gps_code": "KGRI", + "iata_code": "GRI", + "local_code": "GRI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Central_Nebraska_Regional_Airport" + }, + { + "id": "3565", + "ident": "KGRK", + "type": "medium_airport", + "name": "Killeen-Fort Hood Regional Airport / Robert Gray Army Air Field", + "latitude_deg": "31.0672", + "longitude_deg": "-97.828903", + "elevation_ft": "1015", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Killeen", + "scheduled_service": "yes", + "gps_code": "KGRK", + "iata_code": "GRK", + "local_code": "GRK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Killeen-Fort_Hood_Regional_Airport", + "keywords": "Robert Gray Army Air Field" + }, + { + "id": "311388", + "ident": "KGRM", + "type": "closed", + "name": "Devil's Track Airport", + "latitude_deg": "47.827", + "longitude_deg": "-90.38", + "elevation_ft": "1662", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Grand Marias", + "scheduled_service": "no", + "gps_code": "KGRM", + "local_code": "GRM" + }, + { + "id": "19978", + "ident": "KGRN", + "type": "small_airport", + "name": "Gordon Municipal Airport", + "latitude_deg": "42.8059997559", + "longitude_deg": "-102.175003052", + "elevation_ft": "3562", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Gordon", + "scheduled_service": "no", + "gps_code": "KGRN", + "iata_code": "GRN", + "local_code": "GRN" + }, + { + "id": "3566", + "ident": "KGRR", + "type": "medium_airport", + "name": "Gerald R. Ford International Airport", + "latitude_deg": "42.88079834", + "longitude_deg": "-85.52279663", + "elevation_ft": "794", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Grand Rapids", + "scheduled_service": "yes", + "gps_code": "KGRR", + "iata_code": "GRR", + "local_code": "GRR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gerald_R._Ford_International_Airport" + }, + { + "id": "3567", + "ident": "KGSB", + "type": "medium_airport", + "name": "Seymour Johnson Air Force Base", + "latitude_deg": "35.339401", + "longitude_deg": "-77.960602", + "elevation_ft": "109", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Goldsboro", + "scheduled_service": "no", + "gps_code": "KGSB", + "iata_code": "GSB", + "local_code": "GSB", + "home_link": "http://www.seymourjohnson.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Seymour_Johnson_Air_Force_Base" + }, + { + "id": "19979", + "ident": "KGSH", + "type": "small_airport", + "name": "Goshen Municipal Airport", + "latitude_deg": "41.526401519800004", + "longitude_deg": "-85.79290008539999", + "elevation_ft": "827", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Goshen", + "scheduled_service": "no", + "gps_code": "KGSH", + "iata_code": "GSH", + "local_code": "GSH", + "home_link": "http://www.goshenindiana.org/content/goshen-municipal-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Goshen_Municipal_Airport" + }, + { + "id": "3568", + "ident": "KGSO", + "type": "medium_airport", + "name": "Piedmont Triad International Airport", + "latitude_deg": "36.097801", + "longitude_deg": "-79.937302", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Greensboro", + "scheduled_service": "yes", + "gps_code": "KGSO", + "iata_code": "GSO", + "local_code": "GSO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Piedmont_Triad_International_Airport" + }, + { + "id": "3569", + "ident": "KGSP", + "type": "medium_airport", + "name": "Greenville Spartanburg International Airport", + "latitude_deg": "34.895699", + "longitude_deg": "-82.218903", + "elevation_ft": "964", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Greer", + "scheduled_service": "yes", + "gps_code": "KGSP", + "iata_code": "GSP", + "local_code": "GSP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greenville-Spartanburg_International_Airport" + }, + { + "id": "307427", + "ident": "KGSW", + "type": "closed", + "name": "Greater Southwest International Airport-Amon Carter Field", + "latitude_deg": "32.8308104547", + "longitude_deg": "-97.04918861390001", + "elevation_ft": "568", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "KGSW", + "iata_code": "GSW", + "local_code": "GSW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greater_Southwest_International_Airport" + }, + { + "id": "3570", + "ident": "KGTB", + "type": "medium_airport", + "name": "Wheeler Sack Army Air Field", + "latitude_deg": "44.05559921", + "longitude_deg": "-75.71949768", + "elevation_ft": "688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Fort Drum", + "scheduled_service": "no", + "gps_code": "KGTB", + "local_code": "GTB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wheeler-Sack_Army_Airfield" + }, + { + "id": "19980", + "ident": "KGTE", + "type": "small_airport", + "name": "Gothenburg Municipal Airport", + "latitude_deg": "40.9263", + "longitude_deg": "-100.148003", + "elevation_ft": "2559", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Gothenburg", + "scheduled_service": "no", + "gps_code": "KGTE", + "local_code": "GTE", + "keywords": "Quinn Field" + }, + { + "id": "3571", + "ident": "KGTF", + "type": "medium_airport", + "name": "Great Falls International Airport", + "latitude_deg": "47.48199844", + "longitude_deg": "-111.3710022", + "elevation_ft": "3680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Great Falls", + "scheduled_service": "yes", + "gps_code": "KGTF", + "iata_code": "GTF", + "local_code": "GTF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Great_Falls_International_Airport" + }, + { + "id": "19981", + "ident": "KGTG", + "type": "small_airport", + "name": "Grantsburg Municipal Airport", + "latitude_deg": "45.7980995178", + "longitude_deg": "-92.6643981934", + "elevation_ft": "927", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Grantsburg", + "scheduled_service": "no", + "gps_code": "KGTG", + "iata_code": "GTG", + "local_code": "GTG", + "home_link": "http://www.grantsburgwi.com/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grantsburg_Municipal_Airport" + }, + { + "id": "19982", + "ident": "KGTR", + "type": "medium_airport", + "name": "Golden Triangle Regional Airport", + "latitude_deg": "33.450298309299995", + "longitude_deg": "-88.5914001465", + "elevation_ft": "264", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Columbus/W Point/Starkville", + "scheduled_service": "yes", + "gps_code": "KGTR", + "iata_code": "GTR", + "local_code": "GTR" + }, + { + "id": "19983", + "ident": "KGTU", + "type": "small_airport", + "name": "Georgetown Municipal Airport", + "latitude_deg": "30.677543", + "longitude_deg": "-97.678524", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Georgetown", + "scheduled_service": "no", + "gps_code": "KGTU", + "local_code": "GTU" + }, + { + "id": "19984", + "ident": "KGUC", + "type": "small_airport", + "name": "Gunnison Crested Butte Regional Airport", + "latitude_deg": "38.536346", + "longitude_deg": "-106.928306", + "elevation_ft": "7680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Gunnison", + "scheduled_service": "yes", + "gps_code": "KGUC", + "iata_code": "GUC", + "local_code": "GUC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gunnison-Crested_Butte_Regional_Airport" + }, + { + "id": "3572", + "ident": "KGUP", + "type": "medium_airport", + "name": "Gallup Municipal Airport", + "latitude_deg": "35.511100769", + "longitude_deg": "-108.789001465", + "elevation_ft": "6472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Gallup", + "scheduled_service": "no", + "gps_code": "KGUP", + "iata_code": "GUP", + "local_code": "GUP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gallup_Municipal_Airport" + }, + { + "id": "3573", + "ident": "KGUS", + "type": "medium_airport", + "name": "Grissom Air Reserve Base", + "latitude_deg": "40.648102", + "longitude_deg": "-86.1521", + "elevation_ft": "812", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Peru", + "scheduled_service": "no", + "gps_code": "KGUS", + "iata_code": "GUS", + "local_code": "GUS", + "home_link": "http://www.grissom.afrc.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grissom_Air_Reserve_Base" + }, + { + "id": "19985", + "ident": "KGUY", + "type": "medium_airport", + "name": "Guymon Municipal Airport", + "latitude_deg": "36.6851005554", + "longitude_deg": "-101.508003235", + "elevation_ft": "3123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Guymon", + "scheduled_service": "no", + "gps_code": "KGUY", + "iata_code": "GUY", + "local_code": "GUY", + "home_link": "http://www.guymonok.org/index.aspx?NID=179", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guymon_Municipal_Airport" + }, + { + "id": "19986", + "ident": "KGVL", + "type": "small_airport", + "name": "Lee Gilmer Memorial Airport", + "latitude_deg": "34.27259827", + "longitude_deg": "-83.8302002", + "elevation_ft": "1276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Gainesville", + "scheduled_service": "no", + "gps_code": "KGVL", + "iata_code": "GVL", + "local_code": "GVL", + "home_link": "https://www.gainesville.org/lee-gilmer-memorial-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lee_Gilmer_Memorial_Airport" + }, + { + "id": "19987", + "ident": "KGVQ", + "type": "small_airport", + "name": "Genesee County Airport", + "latitude_deg": "43.03170013", + "longitude_deg": "-78.16760254", + "elevation_ft": "914", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Batavia", + "scheduled_service": "no", + "gps_code": "KGVQ", + "local_code": "GVQ" + }, + { + "id": "19988", + "ident": "KGVT", + "type": "small_airport", + "name": "Majors Airport", + "latitude_deg": "33.0677986145", + "longitude_deg": "-96.0652999878", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "KGVT", + "iata_code": "GVT", + "local_code": "GVT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Majors_Airport" + }, + { + "id": "30007", + "ident": "KGVW", + "type": "closed", + "name": "Richards-Gebaur Air Force Base", + "latitude_deg": "38.844200134277344", + "longitude_deg": "-94.55999755859375", + "elevation_ft": "1093", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Belton", + "scheduled_service": "no", + "gps_code": "KGVW", + "iata_code": "GVW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Richards-Gebaur_Air_Force_Base", + "keywords": "Grandview Airport" + }, + { + "id": "302158", + "ident": "KGW", + "type": "small_airport", + "name": "Kagi Airport", + "latitude_deg": "-9.135916666670001", + "longitude_deg": "147.669444444", + "elevation_ft": "4200", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Kagi", + "scheduled_service": "no", + "gps_code": "AYKQ", + "iata_code": "KGW", + "local_code": "KAGI" + }, + { + "id": "19989", + "ident": "KGWB", + "type": "small_airport", + "name": "De Kalb County Airport", + "latitude_deg": "41.307201", + "longitude_deg": "-85.0644", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "KGWB", + "local_code": "GWB", + "home_link": "https://dekalbcountyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/DeKalb_County_Airport_(Indiana)", + "keywords": "07C" + }, + { + "id": "300160", + "ident": "KGWN", + "type": "heliport", + "name": "Winn Army Community Hospital Helipad", + "latitude_deg": "31.874166666699995", + "longitude_deg": "-81.59666666670002", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fort Stewart", + "scheduled_service": "no", + "gps_code": "KGWN" + }, + { + "id": "3574", + "ident": "KGWO", + "type": "medium_airport", + "name": "Greenwood–Leflore Airport", + "latitude_deg": "33.4943008423", + "longitude_deg": "-90.0847015381", + "elevation_ft": "162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Greenwood", + "scheduled_service": "no", + "gps_code": "KGWO", + "iata_code": "GWO", + "local_code": "GWO", + "home_link": "http://greenwoodms.com/index.aspx?nid=113", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greenwood%E2%80%93Leflore_Airport" + }, + { + "id": "19990", + "ident": "KGWR", + "type": "small_airport", + "name": "Gwinner Roger Melroe Field", + "latitude_deg": "46.21870040893555", + "longitude_deg": "-97.64320373535156", + "elevation_ft": "1266", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Gwinner", + "scheduled_service": "no", + "gps_code": "KGWR", + "local_code": "GWR" + }, + { + "id": "19991", + "ident": "KGWS", + "type": "small_airport", + "name": "Glenwood Springs Municipal Airport", + "latitude_deg": "39.5083007812", + "longitude_deg": "-107.310997009", + "elevation_ft": "5916", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Glenwood Springs", + "scheduled_service": "no", + "gps_code": "KGWS", + "iata_code": "GWS", + "local_code": "GWS", + "home_link": "http://www.glenwoodspringsairport.com/" + }, + { + "id": "19992", + "ident": "KGWW", + "type": "small_airport", + "name": "Goldsboro-Wayne Municipal Airport", + "latitude_deg": "35.460601806599996", + "longitude_deg": "-77.96489715579999", + "elevation_ft": "134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Goldsboro", + "scheduled_service": "no", + "gps_code": "KGWW", + "local_code": "GWW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Goldsboro-Wayne_Municipal_Airport" + }, + { + "id": "19993", + "ident": "KGX", + "type": "small_airport", + "name": "Grayling Airport", + "latitude_deg": "62.895187", + "longitude_deg": "-160.066289", + "elevation_ft": "99", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Grayling", + "scheduled_service": "yes", + "gps_code": "PAGX", + "iata_code": "KGX", + "local_code": "KGX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grayling_Airport" + }, + { + "id": "19994", + "ident": "KGXY", + "type": "small_airport", + "name": "Greeley–Weld County Airport", + "latitude_deg": "40.4374008179", + "longitude_deg": "-104.633003235", + "elevation_ft": "4697", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Greeley", + "scheduled_service": "no", + "gps_code": "KGXY", + "iata_code": "GXY", + "local_code": "GXY", + "home_link": "http://www.gxy.net/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greeley-Weld_County_Airport", + "keywords": "Crosier Field" + }, + { + "id": "19995", + "ident": "KGYB", + "type": "small_airport", + "name": "Giddings-Lee County Airport", + "latitude_deg": "30.1693", + "longitude_deg": "-96.980003", + "elevation_ft": "485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Giddings", + "scheduled_service": "no", + "gps_code": "KGYB", + "local_code": "GYB", + "home_link": "https://www.giddings.net/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Giddings–Lee_County_Airport", + "keywords": "62H" + }, + { + "id": "19996", + "ident": "KGYH", + "type": "small_airport", + "name": "Donaldson Field Airport", + "latitude_deg": "34.758301", + "longitude_deg": "-82.376404", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "KGYH", + "iata_code": "GDC", + "local_code": "GYH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Donaldson_Center_Airport", + "keywords": "7A1" + }, + { + "id": "19997", + "ident": "KGYI", + "type": "small_airport", + "name": "North Texas Regional Airport/Perrin Field", + "latitude_deg": "33.714099884", + "longitude_deg": "-96.6736984253", + "elevation_ft": "749", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sherman/Denison", + "scheduled_service": "no", + "gps_code": "KGYI", + "iata_code": "PNX", + "local_code": "GYI", + "home_link": "http://www.northtexasregionalairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/North_Texas_Regional_Airport", + "keywords": "Perrin AFB" + }, + { + "id": "19998", + "ident": "KGYL", + "type": "small_airport", + "name": "Glencoe Municipal Airport", + "latitude_deg": "44.75600051879883", + "longitude_deg": "-94.0811996459961", + "elevation_ft": "992", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Glencoe", + "scheduled_service": "no", + "gps_code": "KGYL", + "local_code": "GYL" + }, + { + "id": "19999", + "ident": "KGYR", + "type": "small_airport", + "name": "Phoenix Goodyear Airport", + "latitude_deg": "33.4225006104", + "longitude_deg": "-112.375999451", + "elevation_ft": "968", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Goodyear", + "scheduled_service": "no", + "gps_code": "KGYR", + "iata_code": "GYR", + "local_code": "GYR", + "home_link": "http://goodyearairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Phoenix_Goodyear_Airport", + "keywords": "NAS Litchfield Park" + }, + { + "id": "3575", + "ident": "KGYY", + "type": "medium_airport", + "name": "Gary Chicago International Airport", + "latitude_deg": "41.61629867553711", + "longitude_deg": "-87.41280364990234", + "elevation_ft": "591", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Gary", + "scheduled_service": "no", + "gps_code": "KGYY", + "iata_code": "GYY", + "local_code": "GYY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gary/Chicago_International_Airport" + }, + { + "id": "20000", + "ident": "KGZ", + "type": "small_airport", + "name": "Glacier Creek Airport", + "latitude_deg": "61.4551010132", + "longitude_deg": "-142.380996704", + "elevation_ft": "2380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Glacier Creek", + "scheduled_service": "no", + "gps_code": "KGZ", + "iata_code": "KGZ", + "local_code": "KGZ" + }, + { + "id": "20001", + "ident": "KGZH", + "type": "small_airport", + "name": "Evergreen Regional Airport/Middleton Field", + "latitude_deg": "31.4158", + "longitude_deg": "-87.043999", + "elevation_ft": "259", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Evergreen", + "scheduled_service": "no", + "gps_code": "KGZH", + "local_code": "GZH", + "home_link": "http://www.evergreenal.org/middleton-field.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Middleton_Field", + "keywords": "39J, Middleton Field" + }, + { + "id": "319542", + "ident": "KGZN", + "type": "small_airport", + "name": "Gregory M. Simmons Memorial Airport", + "latitude_deg": "32.367348", + "longitude_deg": "-99.023642", + "elevation_ft": "1711", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cisco", + "scheduled_service": "no", + "gps_code": "KGZN", + "local_code": "GZN" + }, + { + "id": "20002", + "ident": "KGZS", + "type": "small_airport", + "name": "Abernathy Field", + "latitude_deg": "35.15370178222656", + "longitude_deg": "-87.05680084228516", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Pulaski", + "scheduled_service": "no", + "gps_code": "KGZS", + "local_code": "GZS" + }, + { + "id": "339963", + "ident": "KH-0001", + "type": "small_airport", + "name": "Dara Sakor International Airport", + "latitude_deg": "10.914244", + "longitude_deg": "103.226652", + "continent": "AS", + "iso_country": "KH", + "iso_region": "KH-9", + "municipality": "Ta Noun", + "scheduled_service": "no", + "iata_code": "DSY", + "keywords": "Krong Khemara Phoumin, អាកាសយានដ្ឋានអន្តរជាតិតារាសាគរ" + }, + { + "id": "342098", + "ident": "KH-0002", + "type": "closed", + "name": "New Phnom Penh International Airport (under construction)", + "latitude_deg": "11.3623", + "longitude_deg": "104.9154", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "KH", + "iso_region": "KH-8", + "municipality": "Phnom Peng (Boeng Khyang)", + "scheduled_service": "no" + }, + { + "id": "342099", + "ident": "KH-0003", + "type": "closed", + "name": "New Siem Reap Angkor International Airport (under construction)", + "latitude_deg": "13.3726", + "longitude_deg": "104.2226", + "continent": "AS", + "iso_country": "KH", + "iso_region": "KH-17", + "municipality": "Siem Reap (Paoy Smach)", + "scheduled_service": "no" + }, + { + "id": "20003", + "ident": "KH04", + "type": "small_airport", + "name": "Vinita Municipal Airport", + "latitude_deg": "36.632999420166016", + "longitude_deg": "-95.15139770507812", + "elevation_ft": "696", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Vinita", + "scheduled_service": "no", + "gps_code": "KH04", + "local_code": "H04" + }, + { + "id": "20004", + "ident": "KH05", + "type": "small_airport", + "name": "Wilburton Municipal Airport", + "latitude_deg": "34.91999816894531", + "longitude_deg": "-95.39399719238281", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Wilburton", + "scheduled_service": "no", + "gps_code": "KH05", + "local_code": "H05" + }, + { + "id": "20005", + "ident": "KH17", + "type": "small_airport", + "name": "Buffalo Municipal Airport", + "latitude_deg": "37.65420150756836", + "longitude_deg": "-93.08769989013672", + "elevation_ft": "1154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Buffalo", + "scheduled_service": "no", + "gps_code": "KH17", + "local_code": "H17" + }, + { + "id": "20006", + "ident": "KH19", + "type": "small_airport", + "name": "Bowling Green Municipal Airport", + "latitude_deg": "39.36989974975586", + "longitude_deg": "-91.21929931640625", + "elevation_ft": "886", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Bowling Green", + "scheduled_service": "no", + "gps_code": "KH19", + "local_code": "H19" + }, + { + "id": "20007", + "ident": "KH21", + "type": "small_airport", + "name": "Camdenton Memorial Airport", + "latitude_deg": "37.974024", + "longitude_deg": "-92.691254", + "elevation_ft": "1062", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Camdenton", + "scheduled_service": "no", + "gps_code": "KOZS", + "local_code": "OZS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camdenton_Memorial_Airport", + "keywords": "H21" + }, + { + "id": "20009", + "ident": "KH34", + "type": "small_airport", + "name": "Huntsville Municipal Airport", + "latitude_deg": "36.078201", + "longitude_deg": "-93.754799", + "elevation_ft": "1749", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Huntsville", + "scheduled_service": "no", + "local_code": "H34" + }, + { + "id": "20010", + "ident": "KH35", + "type": "small_airport", + "name": "Clarksville Municipal Airport", + "latitude_deg": "35.470699310302734", + "longitude_deg": "-93.42720031738281", + "elevation_ft": "481", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Clarksville", + "scheduled_service": "no", + "gps_code": "KH35", + "local_code": "H35" + }, + { + "id": "20011", + "ident": "KH37", + "type": "small_airport", + "name": "Herlong Airport", + "latitude_deg": "40.138801574707", + "longitude_deg": "-120.17900085449", + "elevation_ft": "4055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Herlong", + "scheduled_service": "no", + "gps_code": "H37", + "local_code": "H37" + }, + { + "id": "20012", + "ident": "KH58", + "type": "small_airport", + "name": "Owen Field", + "latitude_deg": "37.18470001220703", + "longitude_deg": "-92.73760223388672", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Seymour", + "scheduled_service": "no", + "gps_code": "KH58", + "local_code": "H58" + }, + { + "id": "20013", + "ident": "KH68", + "type": "small_airport", + "name": "Hefner Easley Airport", + "latitude_deg": "35.96260070800781", + "longitude_deg": "-95.34190368652344", + "elevation_ft": "609", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Wagoner", + "scheduled_service": "no", + "gps_code": "KH68", + "local_code": "H68" + }, + { + "id": "20014", + "ident": "KH70", + "type": "small_airport", + "name": "Stratford Field", + "latitude_deg": "36.34560012817383", + "longitude_deg": "-102.04900360107422", + "elevation_ft": "3668", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Stratford", + "scheduled_service": "no", + "gps_code": "KH70", + "local_code": "H70" + }, + { + "id": "20015", + "ident": "KH71", + "type": "small_airport", + "name": "Mid America Industrial Airport", + "latitude_deg": "36.225399017333984", + "longitude_deg": "-95.3301010131836", + "elevation_ft": "622", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Pryor", + "scheduled_service": "no", + "gps_code": "KH71", + "local_code": "H71" + }, + { + "id": "20016", + "ident": "KH76", + "type": "small_airport", + "name": "Pawhuska Municipal Airport", + "latitude_deg": "36.67169952392578", + "longitude_deg": "-96.40560150146484", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Pawhuska", + "scheduled_service": "no", + "gps_code": "KH76", + "local_code": "H76" + }, + { + "id": "20017", + "ident": "KH79", + "type": "small_airport", + "name": "Eldon Model Airpark", + "latitude_deg": "38.360599517822266", + "longitude_deg": "-92.57160186767578", + "elevation_ft": "909", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Eldon", + "scheduled_service": "no", + "gps_code": "KH79", + "local_code": "H79" + }, + { + "id": "20018", + "ident": "KH88", + "type": "small_airport", + "name": "A Paul Vance Fredericktown Regional Airport", + "latitude_deg": "37.605801", + "longitude_deg": "-90.2873", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Fredericktown", + "scheduled_service": "no", + "local_code": "H88", + "home_link": "http://fredericktownmo.org/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/A._Paul_Vance_Fredericktown_Regional_Airport" + }, + { + "id": "20019", + "ident": "KH92", + "type": "small_airport", + "name": "Hominy Municipal Airport", + "latitude_deg": "36.44269943237305", + "longitude_deg": "-96.38719940185547", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hominy", + "scheduled_service": "no", + "gps_code": "KH92", + "local_code": "H92" + }, + { + "id": "20020", + "ident": "KH96", + "type": "small_airport", + "name": "Benton Municipal Airport", + "latitude_deg": "38.00669860839844", + "longitude_deg": "-88.93440246582031", + "elevation_ft": "444", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Benton", + "scheduled_service": "no", + "gps_code": "KH96", + "local_code": "H96" + }, + { + "id": "20021", + "ident": "KHAB", + "type": "small_airport", + "name": "Marion County Rankin Fite Airport", + "latitude_deg": "34.11759949", + "longitude_deg": "-87.99819946", + "elevation_ft": "436", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "KHAB", + "iata_code": "HAB", + "local_code": "HAB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marion_County_%E2%80%93_Rankin_Fite_Airport" + }, + { + "id": "20022", + "ident": "KHAE", + "type": "small_airport", + "name": "Hannibal Regional Airport", + "latitude_deg": "39.72449875", + "longitude_deg": "-91.4437027", + "elevation_ft": "769", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hannibal", + "scheduled_service": "no", + "gps_code": "KHAE", + "local_code": "HAE" + }, + { + "id": "20023", + "ident": "KHAF", + "type": "small_airport", + "name": "Half Moon Bay Airport", + "latitude_deg": "37.513401031499995", + "longitude_deg": "-122.500999451", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Half Moon Bay", + "scheduled_service": "no", + "gps_code": "KHAF", + "iata_code": "HAF", + "local_code": "HAF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Half_Moon_Bay_Airport" + }, + { + "id": "20024", + "ident": "KHAI", + "type": "small_airport", + "name": "Three Rivers Municipal Dr Haines Airport", + "latitude_deg": "41.9598007202", + "longitude_deg": "-85.59339904790001", + "elevation_ft": "824", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Three Rivers", + "scheduled_service": "no", + "gps_code": "KHAI", + "iata_code": "HAI", + "local_code": "HAI" + }, + { + "id": "20025", + "ident": "KHAO", + "type": "small_airport", + "name": "Butler Co Regional Airport - Hogan Field", + "latitude_deg": "39.363800048799995", + "longitude_deg": "-84.5220031738", + "elevation_ft": "633", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "KHAO", + "iata_code": "HAO", + "local_code": "HAO", + "home_link": "http://bcra.butlercountyohio.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Butler_County_Regional_Airport" + }, + { + "id": "17617", + "ident": "KHAX", + "type": "closed", + "name": "Hatbox Field", + "latitude_deg": "35.746437", + "longitude_deg": "-95.413277", + "elevation_ft": "627", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Muskogee", + "scheduled_service": "no", + "gps_code": "KHAX", + "iata_code": "HAX", + "local_code": "HAX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hatbox_Field", + "keywords": "Muskogee Army Airfield" + }, + { + "id": "20026", + "ident": "KHBC", + "type": "small_airport", + "name": "Mohall Municipal Airport", + "latitude_deg": "48.76839828491211", + "longitude_deg": "-101.53700256347656", + "elevation_ft": "1649", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Mohall", + "scheduled_service": "no", + "gps_code": "KHBC", + "local_code": "HBC" + }, + { + "id": "20027", + "ident": "KHBG", + "type": "medium_airport", + "name": "Hattiesburg Bobby L Chain Municipal Airport", + "latitude_deg": "31.26479912", + "longitude_deg": "-89.25279999", + "elevation_ft": "151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Hattiesburg", + "scheduled_service": "no", + "gps_code": "KHBG", + "iata_code": "HBG", + "local_code": "HBG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hattiesburg_Bobby_L._Chain_Municipal_Airport" + }, + { + "id": "20028", + "ident": "KHBI", + "type": "small_airport", + "name": "Asheboro Regional Airport", + "latitude_deg": "35.65449905", + "longitude_deg": "-79.8946991", + "elevation_ft": "671", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Asheboro", + "scheduled_service": "no", + "gps_code": "KHBI", + "local_code": "HBI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Asheboro_Regional_Airport" + }, + { + "id": "20029", + "ident": "KHBR", + "type": "medium_airport", + "name": "Hobart Regional Airport", + "latitude_deg": "34.991317", + "longitude_deg": "-99.051313", + "elevation_ft": "1563", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hobart", + "scheduled_service": "no", + "gps_code": "KHBR", + "iata_code": "HBR", + "local_code": "HBR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hobart_Regional_Airport" + }, + { + "id": "20030", + "ident": "KHBV", + "type": "small_airport", + "name": "Jim Hogg County Airport", + "latitude_deg": "27.349599838256836", + "longitude_deg": "-98.73699951171875", + "elevation_ft": "663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hebbronville", + "scheduled_service": "no", + "gps_code": "KHBV", + "local_code": "HBV" + }, + { + "id": "20031", + "ident": "KHBW", + "type": "closed", + "name": "Joshua Sanford Field", + "latitude_deg": "43.656601", + "longitude_deg": "-90.3282", + "elevation_ft": "938", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Hillsboro", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Joshua_Sanford_Field", + "keywords": "KHBW, HBW" + }, + { + "id": "20032", + "ident": "KHBZ", + "type": "small_airport", + "name": "Heber Springs Municipal Airport", + "latitude_deg": "35.5117", + "longitude_deg": "-92.013", + "elevation_ft": "632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Heber Springs", + "scheduled_service": "no", + "gps_code": "KHBZ", + "local_code": "HBZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Heber_Springs_Municipal_Airport" + }, + { + "id": "338330", + "ident": "KHCA", + "type": "closed", + "name": "Howard County Municipal Airport", + "latitude_deg": "32.30407", + "longitude_deg": "-101.43528", + "elevation_ft": "2555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Big Spring", + "scheduled_service": "no", + "gps_code": "KHCA", + "iata_code": "HCA" + }, + { + "id": "20033", + "ident": "KHCD", + "type": "small_airport", + "name": "Hutchinson Municipal Butler Field", + "latitude_deg": "44.85990143", + "longitude_deg": "-94.38249969", + "elevation_ft": "1062", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hutchinson", + "scheduled_service": "no", + "gps_code": "KHCD", + "local_code": "HCD" + }, + { + "id": "20034", + "ident": "KHCO", + "type": "small_airport", + "name": "Hallock Municipal Airport", + "latitude_deg": "48.75270080566406", + "longitude_deg": "-96.94300079345703", + "elevation_ft": "819", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hallock", + "scheduled_service": "no", + "gps_code": "KHCO", + "local_code": "HCO" + }, + { + "id": "20035", + "ident": "KHDC", + "type": "small_airport", + "name": "Hammond Northshore Regional Airport", + "latitude_deg": "30.52160072", + "longitude_deg": "-90.41840363", + "elevation_ft": "47", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Hammond", + "scheduled_service": "no", + "gps_code": "KHDC", + "local_code": "HDC" + }, + { + "id": "20036", + "ident": "KHDE", + "type": "small_airport", + "name": "Brewster Field", + "latitude_deg": "40.452099", + "longitude_deg": "-99.336502", + "elevation_ft": "2313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Holdrege", + "scheduled_service": "no", + "gps_code": "KHDE", + "iata_code": "HDE", + "local_code": "HDE" + }, + { + "id": "20037", + "ident": "KHDI", + "type": "closed", + "name": "Hardwick Field", + "latitude_deg": "35.2201", + "longitude_deg": "-84.832397", + "elevation_ft": "874", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Cleveland", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hardwick_Field", + "keywords": "KHDI, HDI" + }, + { + "id": "20038", + "ident": "KHDN", + "type": "small_airport", + "name": "Yampa Valley Airport", + "latitude_deg": "40.48120117", + "longitude_deg": "-107.2180023", + "elevation_ft": "6606", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Hayden", + "scheduled_service": "no", + "gps_code": "KHDN", + "iata_code": "HDN", + "local_code": "HDN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yampa_Valley_Airport" + }, + { + "id": "20039", + "ident": "KHDO", + "type": "small_airport", + "name": "South Texas Regional Airport at Hondo", + "latitude_deg": "29.35950088501", + "longitude_deg": "-99.176696777344", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hondo", + "scheduled_service": "no", + "gps_code": "KHDO", + "local_code": "HDO", + "wikipedia_link": "https://en.wikipedia.org/wiki/South_Texas_Regional_Airport_at_Hondo", + "keywords": "Hondo Municipal Airport" + }, + { + "id": "20040", + "ident": "KHEE", + "type": "small_airport", + "name": "Thompson-Robbins Airport", + "latitude_deg": "34.576571", + "longitude_deg": "-90.67616", + "elevation_ft": "242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "West Helena", + "scheduled_service": "no", + "gps_code": "KHEE", + "iata_code": "HEE", + "local_code": "HEE", + "home_link": "http://www.fly.arkansas.gov/Airports/Helena/HELENA%20_%20WEST%20HELENA.pdf", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thompson%E2%80%93Robbins_Airport" + }, + { + "id": "20041", + "ident": "KHEF", + "type": "small_airport", + "name": "Manassas Regional Airport/Harry P. Davis Field", + "latitude_deg": "38.72140121", + "longitude_deg": "-77.51540375", + "elevation_ft": "192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Manassas", + "scheduled_service": "no", + "gps_code": "KHEF", + "iata_code": "MNZ", + "local_code": "HEF", + "home_link": "http://www.manassascity.org/Index.aspx?NID=131", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manassas_Regional_Airport" + }, + { + "id": "20042", + "ident": "KHEG", + "type": "small_airport", + "name": "Herlong Airport", + "latitude_deg": "30.277799606323242", + "longitude_deg": "-81.80590057373047", + "elevation_ft": "87", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "KHEG", + "local_code": "HEG" + }, + { + "id": "20043", + "ident": "KHEI", + "type": "small_airport", + "name": "Hettinger Municipal Airport", + "latitude_deg": "46.01490020751953", + "longitude_deg": "-102.65599822998047", + "elevation_ft": "2705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Hettinger", + "scheduled_service": "no", + "gps_code": "KHEI", + "local_code": "HEI" + }, + { + "id": "20044", + "ident": "KHEQ", + "type": "small_airport", + "name": "Holyoke Airport", + "latitude_deg": "40.569400787353516", + "longitude_deg": "-102.27300262451172", + "elevation_ft": "3730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Holyoke", + "scheduled_service": "no", + "gps_code": "KHEQ", + "local_code": "HEQ" + }, + { + "id": "20045", + "ident": "KHEZ", + "type": "small_airport", + "name": "Natchez–Adams County Airport / Hardy-Anders Field", + "latitude_deg": "31.614817", + "longitude_deg": "-91.297331", + "elevation_ft": "272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Natchez", + "scheduled_service": "no", + "gps_code": "KHEZ", + "iata_code": "HEZ", + "local_code": "HEZ", + "home_link": "https://www.adamscountyms.net/natchez-adams-county-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Natchez%E2%80%93Adams_County_Airport" + }, + { + "id": "3576", + "ident": "KHFD", + "type": "medium_airport", + "name": "Hartford Brainard Airport", + "latitude_deg": "41.736698150635", + "longitude_deg": "-72.649398803711", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Hartford", + "scheduled_service": "no", + "gps_code": "KHFD", + "iata_code": "HFD", + "local_code": "HFD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hartford-Brainard_Airport" + }, + { + "id": "20046", + "ident": "KHFF", + "type": "small_airport", + "name": "Mackall Army Air Field", + "latitude_deg": "35.036087", + "longitude_deg": "-79.498615", + "elevation_ft": "376", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hoffman", + "scheduled_service": "no", + "gps_code": "KHFF", + "iata_code": "HFF", + "local_code": "HFF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_Mackall", + "keywords": "Canp Hoffman" + }, + { + "id": "20444", + "ident": "KHFJ", + "type": "small_airport", + "name": "Monett Regional Airport", + "latitude_deg": "36.9062", + "longitude_deg": "-94.012802", + "elevation_ft": "1314", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Pierce City", + "scheduled_service": "no", + "gps_code": "KHFJ", + "local_code": "HFJ", + "keywords": "Formerly M58" + }, + { + "id": "20047", + "ident": "KHFY", + "type": "small_airport", + "name": "Indy South Greenwood Airport", + "latitude_deg": "39.628399", + "longitude_deg": "-86.087898", + "elevation_ft": "822", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "KHFY", + "local_code": "HFY", + "keywords": "Greenwood Municipal" + }, + { + "id": "3577", + "ident": "KHGR", + "type": "medium_airport", + "name": "Hagerstown Regional Richard A Henson Field", + "latitude_deg": "39.707901", + "longitude_deg": "-77.72949982", + "elevation_ft": "703", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Hagerstown", + "scheduled_service": "no", + "gps_code": "KHGR", + "iata_code": "HGR", + "local_code": "HGR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hagerstown_Regional_Airport" + }, + { + "id": "20048", + "ident": "KHHF", + "type": "small_airport", + "name": "Hemphill County Airport", + "latitude_deg": "35.89530182", + "longitude_deg": "-100.4039993", + "elevation_ft": "2396", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Canadian", + "scheduled_service": "no", + "gps_code": "KHHF", + "local_code": "HHF" + }, + { + "id": "20049", + "ident": "KHHG", + "type": "small_airport", + "name": "Huntington Municipal Airport", + "latitude_deg": "40.852901458740234", + "longitude_deg": "-85.45709991455078", + "elevation_ft": "806", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Huntington", + "scheduled_service": "no", + "gps_code": "KHHG", + "local_code": "HHG" + }, + { + "id": "3578", + "ident": "KHHR", + "type": "medium_airport", + "name": "Jack Northrop Field Hawthorne Municipal Airport", + "latitude_deg": "33.922798", + "longitude_deg": "-118.334999", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hawthorne", + "scheduled_service": "no", + "gps_code": "KHHR", + "iata_code": "HHR", + "local_code": "HHR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hawthorne_Municipal_Airport_(California)" + }, + { + "id": "20050", + "ident": "KHHW", + "type": "small_airport", + "name": "Stan Stamper Municipal Airport", + "latitude_deg": "34.03480148", + "longitude_deg": "-95.54190063", + "elevation_ft": "572", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hugo", + "scheduled_service": "no", + "gps_code": "KHHW", + "iata_code": "HUJ", + "local_code": "HHW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stan_Stamper_Municipal_Airport" + }, + { + "id": "3579", + "ident": "KHIB", + "type": "medium_airport", + "name": "Range Regional Airport", + "latitude_deg": "47.3866", + "longitude_deg": "-92.838997", + "elevation_ft": "1354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hibbing", + "scheduled_service": "yes", + "gps_code": "KHIB", + "iata_code": "HIB", + "local_code": "HIB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Range_Regional_Airport", + "keywords": "Chisholm Hibbing Airport" + }, + { + "id": "20051", + "ident": "KHIE", + "type": "small_airport", + "name": "Mount Washington Regional Airport", + "latitude_deg": "44.36752", + "longitude_deg": "-71.545765", + "elevation_ft": "1074", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Whitefield", + "scheduled_service": "no", + "gps_code": "KHIE", + "iata_code": "HIE", + "local_code": "HIE", + "home_link": "http://www.mountwashingtonairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mount_Washington_Regional_Airport" + }, + { + "id": "3580", + "ident": "KHIF", + "type": "medium_airport", + "name": "Hill Air Force Base", + "latitude_deg": "41.12403", + "longitude_deg": "-111.973086", + "elevation_ft": "4789", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Ogden", + "scheduled_service": "no", + "gps_code": "KHIF", + "iata_code": "HIF", + "local_code": "HIF", + "home_link": "http://www.hill.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hill_Air_Force_Base", + "keywords": "Hill Field" + }, + { + "id": "20052", + "ident": "KHIG", + "type": "small_airport", + "name": "Higginsville Industrial Municipal Airport", + "latitude_deg": "39.07289886", + "longitude_deg": "-93.67749786", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Higginsville", + "scheduled_service": "no", + "gps_code": "KHIG", + "local_code": "HIG" + }, + { + "id": "20053", + "ident": "KHII", + "type": "medium_airport", + "name": "Lake Havasu City International Airport", + "latitude_deg": "34.571098", + "longitude_deg": "-114.358002", + "elevation_ft": "783", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Lake Havasu City", + "scheduled_service": "yes", + "gps_code": "KHII", + "iata_code": "HII", + "local_code": "HII", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_Havasu_City_Airport" + }, + { + "id": "20054", + "ident": "KHIO", + "type": "medium_airport", + "name": "Portland Hillsboro Airport", + "latitude_deg": "45.540401", + "longitude_deg": "-122.949997", + "elevation_ft": "208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "KHIO", + "iata_code": "HIO", + "local_code": "HIO", + "home_link": "http://www.flypdx.com/Airports/Hillsboro/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hillsboro_Airport" + }, + { + "id": "20055", + "ident": "KHJH", + "type": "small_airport", + "name": "Hebron Municipal Airport", + "latitude_deg": "40.152198791503906", + "longitude_deg": "-97.58699798583984", + "elevation_ft": "1466", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hebron", + "scheduled_service": "no", + "gps_code": "KHJH", + "local_code": "HJH" + }, + { + "id": "20056", + "ident": "KHJO", + "type": "small_airport", + "name": "Hanford Municipal Airport", + "latitude_deg": "36.31669998", + "longitude_deg": "-119.6279984", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hanford", + "scheduled_service": "no", + "gps_code": "KHJO", + "local_code": "HJO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hanford_Municipal_Airport" + }, + { + "id": "20057", + "ident": "KHKA", + "type": "small_airport", + "name": "Blytheville Municipal Airport", + "latitude_deg": "35.940399169900004", + "longitude_deg": "-89.83080291750001", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Blytheville", + "scheduled_service": "no", + "gps_code": "KHKA", + "iata_code": "HKA", + "local_code": "HKA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Blytheville_Municipal_Airport" + }, + { + "id": "20058", + "ident": "KHKS", + "type": "small_airport", + "name": "Hawkins Field", + "latitude_deg": "32.33449936", + "longitude_deg": "-90.22219849", + "elevation_ft": "341", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "KHKS", + "iata_code": "HKS", + "local_code": "HKS", + "home_link": "http://jmaa.com/hks/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hawkins_Field_(airport)", + "keywords": "Davis Field, Jackson AAB" + }, + { + "id": "3581", + "ident": "KHKY", + "type": "medium_airport", + "name": "Hickory Regional Airport", + "latitude_deg": "35.74110031", + "longitude_deg": "-81.38950348", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hickory", + "scheduled_service": "no", + "gps_code": "KHKY", + "iata_code": "HKY", + "local_code": "HKY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hickory_Regional_Airport" + }, + { + "id": "313421", + "ident": "KHL", + "type": "closed", + "name": "Khan Jahan Ali Airport (under construction)", + "latitude_deg": "22.6486", + "longitude_deg": "89.6454", + "elevation_ft": "21", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-4", + "municipality": "Bagerhat", + "scheduled_service": "no", + "iata_code": "KHL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khan_Jahan_Ali_Airport", + "keywords": "Mongla, Bagerhat" + }, + { + "id": "20059", + "ident": "KHLB", + "type": "small_airport", + "name": "Hillenbrand Industries Airport", + "latitude_deg": "39.344501495399996", + "longitude_deg": "-85.25830078119999", + "elevation_ft": "973", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Batesville", + "scheduled_service": "no", + "gps_code": "KHLB", + "iata_code": "HLB", + "local_code": "HLB" + }, + { + "id": "20060", + "ident": "KHLC", + "type": "small_airport", + "name": "Hill City Municipal Airport", + "latitude_deg": "39.37879944", + "longitude_deg": "-99.83149719", + "elevation_ft": "2238", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Hill City", + "scheduled_service": "no", + "gps_code": "KHLC", + "iata_code": "HLC", + "local_code": "HLC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hill_City_Municipal_Airport" + }, + { + "id": "20061", + "ident": "KHLG", + "type": "medium_airport", + "name": "Wheeling Ohio County Airport", + "latitude_deg": "40.1749992371", + "longitude_deg": "-80.6463012695", + "elevation_ft": "1195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Wheeling", + "scheduled_service": "no", + "gps_code": "KHLG", + "iata_code": "HLG", + "local_code": "HLG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wheeling_Ohio_County_Airport" + }, + { + "id": "20062", + "ident": "KHLM", + "type": "small_airport", + "name": "Park Township Airport", + "latitude_deg": "42.795898", + "longitude_deg": "-86.162003", + "elevation_ft": "603", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Holland", + "scheduled_service": "no", + "iata_code": "HLM", + "home_link": "https://web.archive.org/web/20160430210208/http://park-township-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Park_Township_Airport", + "keywords": "KHLM" + }, + { + "id": "3582", + "ident": "KHLN", + "type": "medium_airport", + "name": "Helena Regional Airport", + "latitude_deg": "46.6068", + "longitude_deg": "-111.983002", + "elevation_ft": "3877", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Helena", + "scheduled_service": "yes", + "gps_code": "KHLN", + "iata_code": "HLN", + "local_code": "HLN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Helena_Regional_Airport" + }, + { + "id": "3583", + "ident": "KHLR", + "type": "medium_airport", + "name": "Hood Army Air Field", + "latitude_deg": "31.1387", + "longitude_deg": "-97.7145", + "elevation_ft": "924", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Hood", + "scheduled_service": "no", + "gps_code": "KHLR", + "iata_code": "HLR", + "local_code": "HLR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hood_Army_Airfield" + }, + { + "id": "20063", + "ident": "KHLX", + "type": "small_airport", + "name": "Twin County Airport", + "latitude_deg": "36.766102", + "longitude_deg": "-80.823601", + "elevation_ft": "2693", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Hillsville", + "scheduled_service": "no", + "gps_code": "KHLX", + "local_code": "HLX", + "keywords": "Galax" + }, + { + "id": "29958", + "ident": "KHMJ", + "type": "closed", + "name": "Homer Airport", + "latitude_deg": "40.02640151977539", + "longitude_deg": "-87.95249938964844", + "elevation_ft": "669", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "scheduled_service": "no", + "gps_code": "KHMJ" + }, + { + "id": "3584", + "ident": "KHMN", + "type": "medium_airport", + "name": "Holloman Air Force Base", + "latitude_deg": "32.852501", + "longitude_deg": "-106.107002", + "elevation_ft": "4093", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Alamogordo", + "scheduled_service": "no", + "gps_code": "KHMN", + "iata_code": "HMN", + "local_code": "HMN", + "home_link": "http://www.holloman.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Holloman_Air_Force_Base", + "keywords": "Alamogordo AAF" + }, + { + "id": "20064", + "ident": "KHMT", + "type": "small_airport", + "name": "Hemet Ryan Airport", + "latitude_deg": "33.7340011597", + "longitude_deg": "-117.023002625", + "elevation_ft": "1512", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hemet", + "scheduled_service": "no", + "gps_code": "KHMT", + "iata_code": "HMT", + "local_code": "HMT", + "home_link": "http://www.rchmtra.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hemet-Ryan_Airport" + }, + { + "id": "20065", + "ident": "KHMY", + "type": "heliport", + "name": "Muldrow Army Heliport", + "latitude_deg": "35.02640151977539", + "longitude_deg": "-97.23159790039062", + "elevation_ft": "1087", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "KHMY", + "local_code": "HMY" + }, + { + "id": "20066", + "ident": "KHMZ", + "type": "small_airport", + "name": "Bedford County Airport", + "latitude_deg": "40.085952", + "longitude_deg": "-78.513359", + "elevation_ft": "1162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bedford", + "scheduled_service": "no", + "gps_code": "KHMZ", + "local_code": "HMZ" + }, + { + "id": "20067", + "ident": "KHNB", + "type": "small_airport", + "name": "Huntingburg Airport", + "latitude_deg": "38.2490005493", + "longitude_deg": "-86.95369720459999", + "elevation_ft": "529", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Huntingburg", + "scheduled_service": "no", + "gps_code": "KHNB", + "iata_code": "HNB", + "local_code": "HNB", + "home_link": "http://huntingburgairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Huntingburg_Airport" + }, + { + "id": "20068", + "ident": "KHND", + "type": "small_airport", + "name": "Henderson Executive Airport", + "latitude_deg": "35.9728012085", + "longitude_deg": "-115.134002686", + "elevation_ft": "2492", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "gps_code": "KHND", + "iata_code": "HSH", + "local_code": "HND", + "home_link": "http://www.hnd.aero/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Henderson_Executive_Airport", + "keywords": "L15, Sky Harbor Airport" + }, + { + "id": "20069", + "ident": "KHNR", + "type": "small_airport", + "name": "Harlan Municipal Airport", + "latitude_deg": "41.58440017700195", + "longitude_deg": "-95.339599609375", + "elevation_ft": "1231", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Harlan", + "scheduled_service": "no", + "gps_code": "KHNR", + "local_code": "HNR" + }, + { + "id": "20070", + "ident": "KHNZ", + "type": "small_airport", + "name": "Henderson Oxford Airport", + "latitude_deg": "36.36159897", + "longitude_deg": "-78.52919769", + "elevation_ft": "526", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Oxford", + "scheduled_service": "no", + "gps_code": "KHNZ", + "local_code": "HNZ" + }, + { + "id": "20071", + "ident": "KHOB", + "type": "medium_airport", + "name": "Lea County Regional Airport", + "latitude_deg": "32.6875", + "longitude_deg": "-103.2170029", + "elevation_ft": "3661", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Hobbs", + "scheduled_service": "no", + "gps_code": "KHOB", + "iata_code": "HOB", + "local_code": "HOB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lea_County_Regional_Airport" + }, + { + "id": "20072", + "ident": "KHOC", + "type": "small_airport", + "name": "Highland County Airport", + "latitude_deg": "39.18880081176758", + "longitude_deg": "-83.53880310058594", + "elevation_ft": "977", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "KHOC", + "local_code": "HOC" + }, + { + "id": "20073", + "ident": "KHOE", + "type": "small_airport", + "name": "Homerville Airport", + "latitude_deg": "31.05590057373047", + "longitude_deg": "-82.77410125732422", + "elevation_ft": "186", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Homerville", + "scheduled_service": "no", + "gps_code": "KHOE", + "local_code": "HOE" + }, + { + "id": "3585", + "ident": "KHON", + "type": "medium_airport", + "name": "Huron Regional Airport", + "latitude_deg": "44.38520050048828", + "longitude_deg": "-98.22850036621094", + "elevation_ft": "1289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Huron", + "scheduled_service": "yes", + "gps_code": "KHON", + "iata_code": "HON", + "local_code": "HON", + "wikipedia_link": "https://en.wikipedia.org/wiki/Huron_Regional_Airport" + }, + { + "id": "3586", + "ident": "KHOP", + "type": "medium_airport", + "name": "Campbell AAF (Fort Campbell) Air Field", + "latitude_deg": "36.668598175", + "longitude_deg": "-87.49620056150002", + "elevation_ft": "573", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Fort Campbell/Hopkinsville", + "scheduled_service": "no", + "gps_code": "KHOP", + "iata_code": "HOP", + "local_code": "HOP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Campbell_Army_Airfield", + "keywords": "Campbell AFB" + }, + { + "id": "3587", + "ident": "KHOT", + "type": "medium_airport", + "name": "Memorial Field Airport", + "latitude_deg": "34.4788", + "longitude_deg": "-93.096262", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Hot Springs", + "scheduled_service": "yes", + "gps_code": "KHOT", + "iata_code": "HOT", + "local_code": "HOT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hot_Springs_Memorial_Field_Airport" + }, + { + "id": "3588", + "ident": "KHOU", + "type": "medium_airport", + "name": "William P Hobby Airport", + "latitude_deg": "29.645399", + "longitude_deg": "-95.2789", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "yes", + "gps_code": "KHOU", + "iata_code": "HOU", + "local_code": "HOU", + "home_link": "http://www.fly2houston.com/hobbyHome", + "wikipedia_link": "https://en.wikipedia.org/wiki/William_P._Hobby_Airport", + "keywords": "QHO" + }, + { + "id": "3589", + "ident": "KHPN", + "type": "medium_airport", + "name": "Westchester County Airport", + "latitude_deg": "41.06700134277344", + "longitude_deg": "-73.70760345458984", + "elevation_ft": "439", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "White Plains", + "scheduled_service": "yes", + "gps_code": "KHPN", + "iata_code": "HPN", + "local_code": "HPN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Westchester_County_Airport", + "keywords": "Manhattan, New York City, NYC" + }, + { + "id": "20074", + "ident": "KHPT", + "type": "small_airport", + "name": "Hampton Municipal Airport", + "latitude_deg": "42.7237014771", + "longitude_deg": "-93.22630310059999", + "elevation_ft": "1176", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Hampton", + "scheduled_service": "no", + "gps_code": "KHPT", + "iata_code": "HPT", + "local_code": "HPT" + }, + { + "id": "20075", + "ident": "KHPY", + "type": "small_airport", + "name": "Baytown Airport", + "latitude_deg": "29.786100387599998", + "longitude_deg": "-94.95269775390001", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Baytown", + "scheduled_service": "no", + "gps_code": "KHPY", + "iata_code": "HPY", + "local_code": "HPY", + "home_link": "http://www.baytownairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baytown_Airport" + }, + { + "id": "20076", + "ident": "KHQG", + "type": "small_airport", + "name": "Hugoton Municipal Airport", + "latitude_deg": "37.1631012", + "longitude_deg": "-101.3710022", + "elevation_ft": "3134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Hugoton", + "scheduled_service": "no", + "gps_code": "KHQG", + "local_code": "HQG" + }, + { + "id": "3590", + "ident": "KHQM", + "type": "medium_airport", + "name": "Bowerman Airport", + "latitude_deg": "46.971199035599994", + "longitude_deg": "-123.93699646", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Hoquiam", + "scheduled_service": "no", + "gps_code": "KHQM", + "iata_code": "HQM", + "local_code": "HQM", + "home_link": "http://www.portofgraysharbor.com/airport/airport.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bowerman_Airport" + }, + { + "id": "20077", + "ident": "KHQU", + "type": "small_airport", + "name": "Thomson-McDuffie County Airport", + "latitude_deg": "33.52970123", + "longitude_deg": "-82.51650238", + "elevation_ft": "501", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Thomson", + "scheduled_service": "no", + "gps_code": "KHQU", + "local_code": "HQU", + "home_link": "http://www.thomson-mcduffie.com/citycounty/departments/thomson-city-departments/airport", + "keywords": "48J" + }, + { + "id": "20078", + "ident": "KHQZ", + "type": "small_airport", + "name": "Mesquite Metro Airport", + "latitude_deg": "32.74700164794922", + "longitude_deg": "-96.53040313720703", + "elevation_ft": "447", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mesquite", + "scheduled_service": "no", + "gps_code": "KHQZ", + "local_code": "HQZ" + }, + { + "id": "20079", + "ident": "KHRI", + "type": "small_airport", + "name": "Hermiston Municipal Airport", + "latitude_deg": "45.828223", + "longitude_deg": "-119.259024", + "elevation_ft": "644", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Hermiston", + "scheduled_service": "no", + "gps_code": "KHRI", + "iata_code": "HES", + "local_code": "HRI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hermiston_Municipal_Airport" + }, + { + "id": "20080", + "ident": "KHRJ", + "type": "small_airport", + "name": "Harnett Regional Jetport Airport", + "latitude_deg": "35.379398", + "longitude_deg": "-78.733002", + "elevation_ft": "202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Erwin", + "scheduled_service": "no", + "gps_code": "KHRJ", + "local_code": "HRJ", + "home_link": "http://www.harnett.org/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harnett_County_Airport", + "keywords": "37W, Harnett County Airport" + }, + { + "id": "3591", + "ident": "KHRL", + "type": "medium_airport", + "name": "Valley International Airport", + "latitude_deg": "26.228500366210938", + "longitude_deg": "-97.65440368652344", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Harlingen", + "scheduled_service": "yes", + "gps_code": "KHRL", + "iata_code": "HRL", + "local_code": "HRL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valley_International_Airport" + }, + { + "id": "3592", + "ident": "KHRO", + "type": "medium_airport", + "name": "Boone County Airport", + "latitude_deg": "36.26150131225586", + "longitude_deg": "-93.15470123291016", + "elevation_ft": "1365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Harrison", + "scheduled_service": "yes", + "gps_code": "KHRO", + "iata_code": "HRO", + "local_code": "HRO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boone_County_Airport" + }, + { + "id": "20081", + "ident": "KHRT", + "type": "medium_airport", + "name": "Hurlburt Field", + "latitude_deg": "30.427799224853516", + "longitude_deg": "-86.68930053710938", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Mary Esther", + "scheduled_service": "no", + "gps_code": "KHRT", + "local_code": "HRT" + }, + { + "id": "20082", + "ident": "KHRU", + "type": "small_airport", + "name": "Herington Regional Airport", + "latitude_deg": "38.694698333740234", + "longitude_deg": "-96.80799865722656", + "elevation_ft": "1480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Herington", + "scheduled_service": "no", + "gps_code": "KHRU", + "local_code": "HRU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Herington_Regional_Airport" + }, + { + "id": "20083", + "ident": "KHRX", + "type": "small_airport", + "name": "Hereford Municipal Airport", + "latitude_deg": "34.85779953", + "longitude_deg": "-102.3259964", + "elevation_ft": "3788", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hereford", + "scheduled_service": "no", + "gps_code": "KHRX", + "local_code": "HRX" + }, + { + "id": "20084", + "ident": "KHSA", + "type": "small_airport", + "name": "Stennis International Airport", + "latitude_deg": "30.367799758911133", + "longitude_deg": "-89.45459747314453", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Bay St Louis", + "scheduled_service": "no", + "gps_code": "KHSA", + "local_code": "HSA" + }, + { + "id": "20085", + "ident": "KHSB", + "type": "small_airport", + "name": "Harrisburg-Raleigh Airport", + "latitude_deg": "37.81129837", + "longitude_deg": "-88.5503006", + "elevation_ft": "398", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Harrisburg", + "scheduled_service": "no", + "gps_code": "KHSB", + "iata_code": "HSB", + "local_code": "HSB" + }, + { + "id": "20086", + "ident": "KHSD", + "type": "small_airport", + "name": "Sundance Airpark", + "latitude_deg": "35.60179901123047", + "longitude_deg": "-97.7061996459961", + "elevation_ft": "1193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "gps_code": "KHSD", + "local_code": "HSD" + }, + { + "id": "20087", + "ident": "KHSE", + "type": "small_airport", + "name": "Billy Mitchell Airport", + "latitude_deg": "35.232799530029", + "longitude_deg": "-75.617797851562", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hatteras", + "scheduled_service": "no", + "gps_code": "KHSE", + "iata_code": "HNC", + "local_code": "HSE", + "home_link": "http://www.outerbanks.com/billy-mitchel-airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Billy_Mitchell_Airport", + "keywords": "8W5" + }, + { + "id": "324906", + "ident": "KHSG", + "type": "small_airport", + "name": "Hot Springs County Airport", + "latitude_deg": "43.713602", + "longitude_deg": "-108.389687", + "elevation_ft": "4895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Thermopolis", + "scheduled_service": "no", + "gps_code": "KHSG", + "iata_code": "THP", + "local_code": "HSG" + }, + { + "id": "20088", + "ident": "KHSI", + "type": "small_airport", + "name": "Hastings Municipal Airport", + "latitude_deg": "40.6053009033", + "longitude_deg": "-98.42790222170001", + "elevation_ft": "1961", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hastings", + "scheduled_service": "no", + "gps_code": "KHSI", + "iata_code": "HSI", + "local_code": "HSI", + "home_link": "http://www.cityofhastings.org/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hastings_Municipal_Airport" + }, + { + "id": "20089", + "ident": "KHSP", + "type": "small_airport", + "name": "Ingalls Field", + "latitude_deg": "37.95140076", + "longitude_deg": "-79.83390045", + "elevation_ft": "3793", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Hot Springs", + "scheduled_service": "no", + "gps_code": "KHSP", + "iata_code": "HSP", + "local_code": "HSP" + }, + { + "id": "20090", + "ident": "KHSR", + "type": "small_airport", + "name": "Hot Springs Municipal Airport", + "latitude_deg": "43.366615", + "longitude_deg": "-103.390545", + "elevation_ft": "3150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Hot Springs", + "scheduled_service": "no", + "gps_code": "KHSR", + "local_code": "HSR" + }, + { + "id": "3593", + "ident": "KHST", + "type": "medium_airport", + "name": "Homestead ARB Airport", + "latitude_deg": "25.48859978", + "longitude_deg": "-80.38359833", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Homestead", + "scheduled_service": "no", + "gps_code": "KHST", + "iata_code": "HST", + "local_code": "HST", + "home_link": "http://www.homestead.afrc.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Homestead_Air_Reserve_Base", + "keywords": "Dade County Airport" + }, + { + "id": "3594", + "ident": "KHSV", + "type": "medium_airport", + "name": "Huntsville International Carl T Jones Field", + "latitude_deg": "34.637199", + "longitude_deg": "-86.775101", + "elevation_ft": "629", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Huntsville", + "scheduled_service": "yes", + "gps_code": "KHSV", + "iata_code": "HSV", + "local_code": "HSV", + "home_link": "http://www.flyhuntsville.com/portal/#.VbaG-_lVhBc", + "wikipedia_link": "https://en.wikipedia.org/wiki/Huntsville_International_Airport" + }, + { + "id": "20091", + "ident": "KHTH", + "type": "small_airport", + "name": "Hawthorne Industrial Airport", + "latitude_deg": "38.544399", + "longitude_deg": "-118.634002", + "elevation_ft": "4215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Hawthorne", + "scheduled_service": "no", + "gps_code": "KHTH", + "iata_code": "HTH", + "local_code": "HTH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hawthorne_Municipal_Airport_(Nevada)" + }, + { + "id": "20092", + "ident": "KHTL", + "type": "small_airport", + "name": "Roscommon County - Blodgett Memorial Airport", + "latitude_deg": "44.359798", + "longitude_deg": "-84.671095", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Houghton Lake", + "scheduled_service": "no", + "gps_code": "KHTL", + "iata_code": "HTL", + "local_code": "HTL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roscommon_County_Airport" + }, + { + "id": "20093", + "ident": "KHTO", + "type": "small_airport", + "name": "Town of East Hampton Airport", + "latitude_deg": "40.959954", + "longitude_deg": "-72.25105", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "East Hampton", + "scheduled_service": "no", + "gps_code": "KJPX", + "iata_code": "HTO", + "local_code": "JPX", + "home_link": "http://www.town.east-hampton.ny.us/htmlpages/Airport/AirportHome.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/East_Hampton_Airport", + "keywords": "KHTO, HTO" + }, + { + "id": "3595", + "ident": "KHTS", + "type": "medium_airport", + "name": "Tri-State/Milton J. Ferguson Field", + "latitude_deg": "38.366699", + "longitude_deg": "-82.557999", + "elevation_ft": "828", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Huntington", + "scheduled_service": "yes", + "gps_code": "KHTS", + "iata_code": "HTS", + "local_code": "HTS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tri-State_Airport" + }, + { + "id": "20094", + "ident": "KHTW", + "type": "small_airport", + "name": "Lawrence County Airpark", + "latitude_deg": "38.4193", + "longitude_deg": "-82.494301", + "elevation_ft": "568", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Chesapeake/Huntington Wva", + "scheduled_service": "no", + "gps_code": "KHTW", + "iata_code": "HTW", + "local_code": "HTW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lawrence_County_Airpark" + }, + { + "id": "3596", + "ident": "KHUA", + "type": "medium_airport", + "name": "Redstone Army Air Field", + "latitude_deg": "34.67869949", + "longitude_deg": "-86.68479919", + "elevation_ft": "684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Redstone Arsnl Huntsville", + "scheduled_service": "no", + "gps_code": "KHUA", + "iata_code": "HUA", + "local_code": "HUA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Redstone_Army_Airfield" + }, + { + "id": "3597", + "ident": "KHUF", + "type": "medium_airport", + "name": "Terre Haute Regional Airport, Hulman Field", + "latitude_deg": "39.4515", + "longitude_deg": "-87.307602", + "elevation_ft": "589", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Terre Haute", + "scheduled_service": "no", + "gps_code": "KHUF", + "iata_code": "HUF", + "local_code": "HUF", + "home_link": "http://huf.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Terre_Haute_Regional_Airport" + }, + { + "id": "20095", + "ident": "KHUL", + "type": "medium_airport", + "name": "Houlton International Airport", + "latitude_deg": "46.1231002808", + "longitude_deg": "-67.792098999", + "elevation_ft": "489", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Houlton", + "scheduled_service": "no", + "gps_code": "KHUL", + "iata_code": "HUL", + "local_code": "HUL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Houlton_International_Airport", + "keywords": "Houlton AAF" + }, + { + "id": "20096", + "ident": "KHUM", + "type": "small_airport", + "name": "Houma Terrebonne Airport", + "latitude_deg": "29.5664997101", + "longitude_deg": "-90.6604003906", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Houma", + "scheduled_service": "no", + "gps_code": "KHUM", + "iata_code": "HUM", + "local_code": "HUM", + "home_link": "http://www.houma-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Houma%E2%80%93Terrebonne_Airport", + "keywords": "NAS Houma" + }, + { + "id": "3598", + "ident": "KHUT", + "type": "medium_airport", + "name": "Hutchinson Municipal Airport", + "latitude_deg": "38.0654983521", + "longitude_deg": "-97.86060333250002", + "elevation_ft": "1543", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Hutchinson", + "scheduled_service": "no", + "gps_code": "KHUT", + "iata_code": "HUT", + "local_code": "HUT", + "home_link": "http://www.hutchgov.com/department/?fDD=20-0", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hutchinson_Municipal_Airport_(Kansas)" + }, + { + "id": "20097", + "ident": "KHVC", + "type": "small_airport", + "name": "Hopkinsville Christian County Airport", + "latitude_deg": "36.856998443603516", + "longitude_deg": "-87.4551010131836", + "elevation_ft": "564", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Hopkinsville", + "scheduled_service": "no", + "gps_code": "KHVC", + "local_code": "HVC" + }, + { + "id": "20098", + "ident": "KHVE", + "type": "small_airport", + "name": "Hanksville Airport", + "latitude_deg": "38.417999267599996", + "longitude_deg": "-110.70400238", + "elevation_ft": "4444", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no", + "gps_code": "KHVE", + "iata_code": "HVE", + "local_code": "HVE" + }, + { + "id": "3599", + "ident": "KHVN", + "type": "medium_airport", + "name": "Tweed New Haven Airport", + "latitude_deg": "41.26369858", + "longitude_deg": "-72.88680267", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "New Haven", + "scheduled_service": "yes", + "gps_code": "KHVN", + "iata_code": "HVN", + "local_code": "HVN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tweed_New_Haven_Regional_Airport" + }, + { + "id": "20099", + "ident": "KHVR", + "type": "medium_airport", + "name": "Havre City County Airport", + "latitude_deg": "48.542999", + "longitude_deg": "-109.762001", + "elevation_ft": "2591", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Havre", + "scheduled_service": "no", + "gps_code": "KHVR", + "iata_code": "HVR", + "local_code": "HVR" + }, + { + "id": "20100", + "ident": "KHVS", + "type": "small_airport", + "name": "Hartsville Regional Airport", + "latitude_deg": "34.4030990601", + "longitude_deg": "-80.11920166019999", + "elevation_ft": "364", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Hartsville", + "scheduled_service": "no", + "gps_code": "KHVS", + "iata_code": "HVS", + "local_code": "HVS", + "home_link": "http://hartsvillesc.gov/visitors/hartsville-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hartsville_Regional_Airport" + }, + { + "id": "29730", + "ident": "KHWC", + "type": "closed", + "name": "Bryan Airport", + "latitude_deg": "41.4739", + "longitude_deg": "-84.556702", + "elevation_ft": "771", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bryan", + "scheduled_service": "no", + "gps_code": "KHWC", + "local_code": "HWC" + }, + { + "id": "20101", + "ident": "KHWD", + "type": "small_airport", + "name": "Hayward Executive Airport", + "latitude_deg": "37.659198761", + "longitude_deg": "-122.122001648", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hayward", + "scheduled_service": "no", + "gps_code": "KHWD", + "iata_code": "HWD", + "local_code": "HWD", + "home_link": "http://www.hayward-ca.gov/CITY-GOVERNMENT/DEPARTMENTS/PUBLIC-WORKS-ET/HEA/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hayward_Executive_Airport", + "keywords": "Hayward Air Terminal" + }, + { + "id": "20102", + "ident": "KHWO", + "type": "small_airport", + "name": "North Perry Airport", + "latitude_deg": "26.0012", + "longitude_deg": "-80.2407", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Hollywood", + "scheduled_service": "no", + "gps_code": "KHWO", + "iata_code": "HWO", + "local_code": "HWO", + "home_link": "http://www.broward.org/airport/northperryairport/Pages/Default.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/North_Perry_Airport" + }, + { + "id": "20103", + "ident": "KHWQ", + "type": "small_airport", + "name": "Wheatland County At Harlowton Airport", + "latitude_deg": "46.448601", + "longitude_deg": "-109.852997", + "elevation_ft": "4311", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Harlowton", + "scheduled_service": "no", + "gps_code": "KHWQ", + "local_code": "HWQ" + }, + { + "id": "20104", + "ident": "KHWV", + "type": "small_airport", + "name": "Brookhaven Airport", + "latitude_deg": "40.8218994141", + "longitude_deg": "-72.86940002440001", + "elevation_ft": "81", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Shirley", + "scheduled_service": "no", + "gps_code": "KHWV", + "iata_code": "WSH", + "local_code": "HWV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brookhaven_Airport" + }, + { + "id": "21359", + "ident": "KHWY", + "type": "small_airport", + "name": "Warrenton Fauquier Airport", + "latitude_deg": "38.5863", + "longitude_deg": "-77.710602", + "elevation_ft": "336", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Midland", + "scheduled_service": "no", + "gps_code": "KHWY", + "local_code": "HWY", + "keywords": "Formerly W66" + }, + { + "id": "20105", + "ident": "KHXD", + "type": "small_airport", + "name": "Hilton Head Airport", + "latitude_deg": "32.2243995667", + "longitude_deg": "-80.6975021362", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Hilton Head Island", + "scheduled_service": "no", + "gps_code": "KHXD", + "iata_code": "HHH", + "local_code": "HXD" + }, + { + "id": "20106", + "ident": "KHXF", + "type": "small_airport", + "name": "Hartford Municipal Airport", + "latitude_deg": "43.34930038", + "longitude_deg": "-88.39109802", + "elevation_ft": "1069", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Hartford", + "scheduled_service": "no", + "gps_code": "KHXF", + "local_code": "HXF" + }, + { + "id": "3600", + "ident": "KHYA", + "type": "medium_airport", + "name": "Barnstable Municipal Boardman Polando Field", + "latitude_deg": "41.66930008", + "longitude_deg": "-70.28040314", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Hyannis", + "scheduled_service": "yes", + "gps_code": "KHYA", + "iata_code": "HYA", + "local_code": "HYA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barnstable_Municipal_Airport" + }, + { + "id": "20107", + "ident": "KHYI", + "type": "medium_airport", + "name": "San Marcos Regional Airport", + "latitude_deg": "29.8927", + "longitude_deg": "-97.862999", + "elevation_ft": "597", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Marcos", + "scheduled_service": "no", + "gps_code": "KHYI", + "local_code": "HYI", + "keywords": "San Marcos Municipal" + }, + { + "id": "20108", + "ident": "KHYR", + "type": "medium_airport", + "name": "Sawyer County Airport", + "latitude_deg": "46.025199890100005", + "longitude_deg": "-91.44429779050002", + "elevation_ft": "1216", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Hayward", + "scheduled_service": "no", + "gps_code": "KHYR", + "iata_code": "HYR", + "local_code": "HYR", + "home_link": "http://sawyercountygov.org/Departments/Airport/tabid/93/Default.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sawyer_County_Airport" + }, + { + "id": "20109", + "ident": "KHYS", + "type": "medium_airport", + "name": "Hays Regional Airport", + "latitude_deg": "38.84220123", + "longitude_deg": "-99.27320099", + "elevation_ft": "1999", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Hays", + "scheduled_service": "no", + "gps_code": "KHYS", + "iata_code": "HYS", + "local_code": "HYS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hays_Regional_Airport" + }, + { + "id": "20110", + "ident": "KHYW", + "type": "small_airport", + "name": "Conway Horry County Airport", + "latitude_deg": "33.82849884", + "longitude_deg": "-79.12220001", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Conway", + "scheduled_service": "no", + "gps_code": "KHYW", + "local_code": "HYW" + }, + { + "id": "20111", + "ident": "KHYX", + "type": "small_airport", + "name": "Saginaw County H.W. Browne Airport", + "latitude_deg": "43.4333992", + "longitude_deg": "-83.86229706", + "elevation_ft": "601", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Saginaw", + "scheduled_service": "no", + "gps_code": "KHYX", + "local_code": "HYX" + }, + { + "id": "20112", + "ident": "KHZD", + "type": "small_airport", + "name": "Carroll County Airport", + "latitude_deg": "36.08929825", + "longitude_deg": "-88.46330261", + "elevation_ft": "497", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Huntingdon", + "scheduled_service": "no", + "gps_code": "KHZD", + "local_code": "HZD" + }, + { + "id": "20113", + "ident": "KHZE", + "type": "small_airport", + "name": "Mercer County Regional Airport", + "latitude_deg": "47.28990173", + "longitude_deg": "-101.5810013", + "elevation_ft": "1814", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Hazen", + "scheduled_service": "no", + "gps_code": "KHZE", + "local_code": "HZE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mercer_County_Regional_Airport" + }, + { + "id": "20114", + "ident": "KHZL", + "type": "small_airport", + "name": "Hazleton Municipal Airport", + "latitude_deg": "40.986801147499996", + "longitude_deg": "-75.9949035645", + "elevation_ft": "1603", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hazleton", + "scheduled_service": "no", + "gps_code": "KHZL", + "iata_code": "HZL", + "local_code": "HZL", + "home_link": "http://hazletonfbo.com/default.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hazleton_Municipal_Airport" + }, + { + "id": "20115", + "ident": "KHZR", + "type": "small_airport", + "name": "False River Regional Airport", + "latitude_deg": "30.71829987", + "longitude_deg": "-91.47869873", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Roads", + "scheduled_service": "no", + "gps_code": "KHZR", + "local_code": "HZR" + }, + { + "id": "20116", + "ident": "KHZX", + "type": "small_airport", + "name": "Isedor Iverson Airport", + "latitude_deg": "46.61880111694336", + "longitude_deg": "-93.30979919433594", + "elevation_ft": "1228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Mc Gregor", + "scheduled_service": "no", + "gps_code": "KHZX", + "local_code": "HZX" + }, + { + "id": "20117", + "ident": "KHZY", + "type": "medium_airport", + "name": "Northeast Ohio Regional Airport", + "latitude_deg": "41.778", + "longitude_deg": "-80.695503", + "elevation_ft": "924", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ashtabula", + "scheduled_service": "no", + "gps_code": "KHZY", + "iata_code": "JFN", + "local_code": "HZY", + "home_link": "http://www.neohioregionalairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ashtabula_County_Airport", + "keywords": "Ashtabula County" + }, + { + "id": "323604", + "ident": "KI-0001", + "type": "closed", + "name": "Hawkins Field (Tarawa)", + "latitude_deg": "1.356247", + "longitude_deg": "172.930108", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-G", + "municipality": "Tarawa", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hawkins_Field_(Tarawa)" + }, + { + "id": "348665", + "ident": "KI-0002", + "type": "closed", + "name": "Aeon Field", + "latitude_deg": "1.76283", + "longitude_deg": "-157.19466", + "elevation_ft": "16", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-L", + "municipality": "Kiritimati", + "scheduled_service": "no" + }, + { + "id": "20118", + "ident": "KI06", + "type": "small_airport", + "name": "City of Tulia-Swisher County Municipal Airport", + "latitude_deg": "34.56679916", + "longitude_deg": "-101.7809982", + "elevation_ft": "3503", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tulia", + "scheduled_service": "no", + "gps_code": "KI06", + "local_code": "I06" + }, + { + "id": "20119", + "ident": "KI10", + "type": "small_airport", + "name": "Noble County Airport", + "latitude_deg": "39.80099868774414", + "longitude_deg": "-81.53630065917969", + "elevation_ft": "879", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Caldwell", + "scheduled_service": "no", + "gps_code": "KI10", + "local_code": "I10" + }, + { + "id": "20120", + "ident": "KI12", + "type": "small_airport", + "name": "Sidney Municipal Airport", + "latitude_deg": "40.241402", + "longitude_deg": "-84.150902", + "elevation_ft": "1044", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Sidney", + "scheduled_service": "no", + "gps_code": "KSCA", + "local_code": "SCA", + "home_link": "http://www.sidneymunicipalairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sidney_Municipal_Airport_(Ohio)", + "keywords": "I12" + }, + { + "id": "20121", + "ident": "KI16", + "type": "small_airport", + "name": "Kee Field", + "latitude_deg": "37.600399", + "longitude_deg": "-81.559303", + "elevation_ft": "1783", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Pineville", + "scheduled_service": "no", + "local_code": "I16" + }, + { + "id": "20122", + "ident": "KI17", + "type": "small_airport", + "name": "Piqua Airport-Hartzell Field", + "latitude_deg": "40.16469955", + "longitude_deg": "-84.30840302", + "elevation_ft": "994", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Piqua", + "scheduled_service": "no", + "gps_code": "KI17", + "local_code": "I17" + }, + { + "id": "20123", + "ident": "KI18", + "type": "small_airport", + "name": "Jackson County Airport", + "latitude_deg": "38.9297981262207", + "longitude_deg": "-81.81950378417969", + "elevation_ft": "758", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Ravenswood", + "scheduled_service": "no", + "gps_code": "KI18", + "local_code": "I18" + }, + { + "id": "20125", + "ident": "KI22", + "type": "small_airport", + "name": "Randolph County Airport", + "latitude_deg": "40.16889953613281", + "longitude_deg": "-84.92569732666016", + "elevation_ft": "1119", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Winchester", + "scheduled_service": "no", + "gps_code": "KI22", + "local_code": "I22" + }, + { + "id": "20126", + "ident": "KI23", + "type": "small_airport", + "name": "Fayette County Airport", + "latitude_deg": "39.57040023803711", + "longitude_deg": "-83.42050170898438", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Washington Court House", + "scheduled_service": "no", + "gps_code": "KI23", + "local_code": "I23" + }, + { + "id": "20127", + "ident": "KI34", + "type": "small_airport", + "name": "Greensburg Municipal Airport", + "latitude_deg": "39.32690048", + "longitude_deg": "-85.52249908", + "elevation_ft": "912", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Greensburg", + "scheduled_service": "no", + "gps_code": "KI34", + "local_code": "I34", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greensburg-Decatur_County_Airport" + }, + { + "id": "20128", + "ident": "KI35", + "type": "small_airport", + "name": "Tucker Guthrie Memorial Airport", + "latitude_deg": "36.85929870605469", + "longitude_deg": "-83.3584976196289", + "elevation_ft": "1551", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Harlan", + "scheduled_service": "no", + "gps_code": "KI35", + "local_code": "I35" + }, + { + "id": "20129", + "ident": "KI39", + "type": "medium_airport", + "name": "Central Kentucky Regional Airport", + "latitude_deg": "37.630798", + "longitude_deg": "-84.332298", + "elevation_ft": "1002", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "KRGA", + "local_code": "RGA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Central_Kentucky_Regional_Airport", + "keywords": "I39, Madison" + }, + { + "id": "20130", + "ident": "KI40", + "type": "small_airport", + "name": "Richard Downing Airport", + "latitude_deg": "40.309200286899994", + "longitude_deg": "-81.85340118410001", + "elevation_ft": "979", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Coshocton", + "scheduled_service": "no", + "gps_code": "I40", + "local_code": "I40" + }, + { + "id": "20131", + "ident": "KI43", + "type": "small_airport", + "name": "James A Rhodes Airport", + "latitude_deg": "38.9814", + "longitude_deg": "-82.577904", + "elevation_ft": "726", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "KJRO", + "local_code": "JRO", + "keywords": "I43" + }, + { + "id": "20132", + "ident": "KI50", + "type": "small_airport", + "name": "Stanton Airport", + "latitude_deg": "37.849866", + "longitude_deg": "-83.845704", + "elevation_ft": "651", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Stanton", + "scheduled_service": "no", + "local_code": "I50", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stanton_Airport" + }, + { + "id": "20133", + "ident": "KI53", + "type": "small_airport", + "name": "Liberty-Casey County Airport", + "latitude_deg": "37.308691", + "longitude_deg": "-85.059304", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Liberty", + "scheduled_service": "no", + "gps_code": "53KT", + "local_code": "53KT", + "keywords": "I53" + }, + { + "id": "20134", + "ident": "KI54", + "type": "small_airport", + "name": "Mad River Airpark", + "latitude_deg": "40.0201", + "longitude_deg": "-83.828499", + "elevation_ft": "958", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Tremont City", + "scheduled_service": "no", + "local_code": "I54", + "keywords": "Mad River Inc Airport" + }, + { + "id": "20135", + "ident": "KI58", + "type": "small_airport", + "name": "Santa Rosa Route 66 Airport", + "latitude_deg": "34.93439865", + "longitude_deg": "-104.6429977", + "elevation_ft": "4792", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Santa Rosa", + "scheduled_service": "no", + "gps_code": "KSXU", + "local_code": "SXU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Rosa_Route_66_Airport", + "keywords": "I58, Q58" + }, + { + "id": "20136", + "ident": "KI63", + "type": "small_airport", + "name": "Mount Sterling Municipal Airport", + "latitude_deg": "39.98749924", + "longitude_deg": "-90.80419922", + "elevation_ft": "734", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mount Sterling", + "scheduled_service": "no", + "gps_code": "KI63", + "local_code": "I63" + }, + { + "id": "20137", + "ident": "KI64", + "type": "small_airport", + "name": "Wakeman Airport", + "latitude_deg": "41.29309844970703", + "longitude_deg": "-82.37069702148438", + "elevation_ft": "848", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wakeman", + "scheduled_service": "no", + "gps_code": "KI64", + "local_code": "I64" + }, + { + "id": "20138", + "ident": "KI66", + "type": "small_airport", + "name": "Clinton County Airport", + "latitude_deg": "39.5033", + "longitude_deg": "-83.862801", + "elevation_ft": "1033", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wilmington", + "scheduled_service": "no", + "gps_code": "KI66", + "local_code": "I66" + }, + { + "id": "20139", + "ident": "KI67", + "type": "small_airport", + "name": "Cincinnati West Airport", + "latitude_deg": "39.2588996887207", + "longitude_deg": "-84.77429962158203", + "elevation_ft": "584", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Harrison", + "scheduled_service": "no", + "gps_code": "KI67", + "local_code": "I67" + }, + { + "id": "20140", + "ident": "KI68", + "type": "small_airport", + "name": "Warren County Airport/John Lane Field", + "latitude_deg": "39.462200164799995", + "longitude_deg": "-84.25180053710001", + "elevation_ft": "898", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "I68", + "local_code": "I68" + }, + { + "id": "20141", + "ident": "KI69", + "type": "small_airport", + "name": "Clermont County Airport", + "latitude_deg": "39.07839966", + "longitude_deg": "-84.21019745", + "elevation_ft": "843", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Batavia", + "scheduled_service": "no", + "gps_code": "KI69", + "local_code": "I69" + }, + { + "id": "20142", + "ident": "KI71", + "type": "small_airport", + "name": "Morgan County Airport", + "latitude_deg": "39.65420150756836", + "longitude_deg": "-81.8031997680664", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mc Connelsville", + "scheduled_service": "no", + "gps_code": "KI71", + "local_code": "I71" + }, + { + "id": "20143", + "ident": "KI73", + "type": "small_airport", + "name": "Moraine Air Park", + "latitude_deg": "39.682215", + "longitude_deg": "-84.239042", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dayton", + "scheduled_service": "no", + "local_code": "I73", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moraine_Airpark" + }, + { + "id": "20144", + "ident": "KI74", + "type": "small_airport", + "name": "Grimes Field", + "latitude_deg": "40.13259888", + "longitude_deg": "-83.75340271", + "elevation_ft": "1068", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Urbana", + "scheduled_service": "no", + "gps_code": "KI74", + "local_code": "I74" + }, + { + "id": "20145", + "ident": "KI75", + "type": "small_airport", + "name": "Osceola Municipal Airport", + "latitude_deg": "41.05220031738281", + "longitude_deg": "-93.689697265625", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Osceola", + "scheduled_service": "no", + "gps_code": "KI75", + "local_code": "I75" + }, + { + "id": "20146", + "ident": "KI76", + "type": "small_airport", + "name": "Peru Municipal Airport", + "latitude_deg": "40.78630065917969", + "longitude_deg": "-86.14640045166016", + "elevation_ft": "779", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Peru", + "scheduled_service": "no", + "gps_code": "KI76", + "local_code": "I76" + }, + { + "id": "20147", + "ident": "KI86", + "type": "small_airport", + "name": "Perry County Airport", + "latitude_deg": "39.69160079956055", + "longitude_deg": "-82.19779968261719", + "elevation_ft": "1051", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "New Lexington", + "scheduled_service": "no", + "gps_code": "KI86", + "local_code": "I86" + }, + { + "id": "20148", + "ident": "KI93", + "type": "small_airport", + "name": "Breckinridge County Airport", + "latitude_deg": "37.784814", + "longitude_deg": "-86.441295", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Hardinsburg", + "scheduled_service": "no", + "gps_code": "KI93", + "local_code": "I93" + }, + { + "id": "20149", + "ident": "KI95", + "type": "small_airport", + "name": "Hardin County Airport", + "latitude_deg": "40.61069869995117", + "longitude_deg": "-83.64360046386719", + "elevation_ft": "1024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Kenton", + "scheduled_service": "no", + "gps_code": "KI95", + "local_code": "I95" + }, + { + "id": "313423", + "ident": "KIA", + "type": "closed", + "name": "Kaiapit Airport", + "latitude_deg": "-6.275", + "longitude_deg": "146.27", + "elevation_ft": "1030", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Kaiapit", + "scheduled_service": "no", + "iata_code": "KIA" + }, + { + "id": "3601", + "ident": "KIAB", + "type": "medium_airport", + "name": "Mc Connell Air Force Base", + "latitude_deg": "37.62189865", + "longitude_deg": "-97.26820374", + "elevation_ft": "1371", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wichita", + "scheduled_service": "no", + "gps_code": "KIAB", + "iata_code": "IAB", + "local_code": "IAB", + "home_link": "http://public.mcconnell.amc.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/McConnell_Air_Force_Base", + "keywords": "22nd Air Refueling Wing, 931st Air Refueling Group, 184th Intelligence Wing" + }, + { + "id": "3602", + "ident": "KIAD", + "type": "large_airport", + "name": "Washington Dulles International Airport", + "latitude_deg": "38.9445", + "longitude_deg": "-77.455803", + "elevation_ft": "312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Washington, DC", + "scheduled_service": "yes", + "gps_code": "KIAD", + "iata_code": "IAD", + "local_code": "IAD", + "home_link": "http://www.mwaa.com/dulles/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Washington_Dulles_International_Airport", + "keywords": "WAS" + }, + { + "id": "3603", + "ident": "KIAG", + "type": "medium_airport", + "name": "Niagara Falls International Airport", + "latitude_deg": "43.1073", + "longitude_deg": "-78.946198", + "elevation_ft": "589", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Niagara Falls", + "scheduled_service": "yes", + "gps_code": "KIAG", + "iata_code": "IAG", + "local_code": "IAG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Niagara_Falls_International_Airport" + }, + { + "id": "3604", + "ident": "KIAH", + "type": "large_airport", + "name": "George Bush Intercontinental Houston Airport", + "latitude_deg": "29.984399795532227", + "longitude_deg": "-95.34140014648438", + "elevation_ft": "97", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "yes", + "gps_code": "KIAH", + "iata_code": "IAH", + "local_code": "IAH", + "home_link": "http://www.fly2houston.com/iah", + "wikipedia_link": "https://en.wikipedia.org/wiki/George_Bush_Intercontinental_Airport", + "keywords": "QHO" + }, + { + "id": "20150", + "ident": "KIB", + "type": "seaplane_base", + "name": "Ivanof Bay Seaplane Base", + "latitude_deg": "55.8974990845", + "longitude_deg": "-159.488998413", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ivanof Bay", + "scheduled_service": "no", + "gps_code": "KIB", + "iata_code": "KIB", + "local_code": "KIB" + }, + { + "id": "20151", + "ident": "KIBM", + "type": "small_airport", + "name": "Kimball Municipal Robert E Arraj Field", + "latitude_deg": "41.1880989074707", + "longitude_deg": "-103.677001953125", + "elevation_ft": "4926", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Kimball", + "scheduled_service": "no", + "gps_code": "KIBM", + "local_code": "IBM" + }, + { + "id": "20152", + "ident": "KICL", + "type": "small_airport", + "name": "Schenck Field", + "latitude_deg": "40.72180176", + "longitude_deg": "-95.02639771", + "elevation_ft": "996", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Clarinda", + "scheduled_service": "no", + "gps_code": "KICL", + "iata_code": "ICL", + "local_code": "ICL" + }, + { + "id": "21056", + "ident": "KICR", + "type": "small_airport", + "name": "Winner Regional Airport", + "latitude_deg": "43.39020157", + "longitude_deg": "-99.84210205", + "elevation_ft": "2033", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Winner", + "scheduled_service": "no", + "gps_code": "KICR", + "local_code": "ICR", + "keywords": "Formerly KSFD, Formerly Bob Wiley Field" + }, + { + "id": "3605", + "ident": "KICT", + "type": "medium_airport", + "name": "Wichita Eisenhower National Airport", + "latitude_deg": "37.649899", + "longitude_deg": "-97.433098", + "elevation_ft": "1333", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wichita", + "scheduled_service": "yes", + "gps_code": "KICT", + "iata_code": "ICT", + "local_code": "ICT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wichita_Dwight_D._Eisenhower_National_Airport" + }, + { + "id": "3606", + "ident": "KIDA", + "type": "medium_airport", + "name": "Idaho Falls Regional Airport", + "latitude_deg": "43.514599", + "longitude_deg": "-112.070999", + "elevation_ft": "4744", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Idaho Falls", + "scheduled_service": "yes", + "gps_code": "KIDA", + "iata_code": "IDA", + "local_code": "IDA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Idaho_Falls_Regional_Airport", + "keywords": "Fanning Field" + }, + { + "id": "20153", + "ident": "KIDG", + "type": "small_airport", + "name": "Ida Grove Municipal Airport", + "latitude_deg": "42.33259963989258", + "longitude_deg": "-95.44490051269531", + "elevation_ft": "1245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Ida Grove", + "scheduled_service": "no", + "gps_code": "KIDG", + "local_code": "IDG" + }, + { + "id": "20154", + "ident": "KIDI", + "type": "small_airport", + "name": "Indiana County/Jimmy Stewart Fld/ Airport", + "latitude_deg": "40.63219833", + "longitude_deg": "-79.10549927", + "elevation_ft": "1405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Indiana", + "scheduled_service": "no", + "gps_code": "KIDI", + "iata_code": "IDI", + "local_code": "IDI", + "home_link": "http://www.jimmystewartairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Indiana_County-Jimmy_Stewart_Airport" + }, + { + "id": "20155", + "ident": "KIDL", + "type": "small_airport", + "name": "Indianola Municipal Airport", + "latitude_deg": "33.485699", + "longitude_deg": "-90.678902", + "elevation_ft": "126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Indianola", + "scheduled_service": "no", + "gps_code": "KIDL", + "local_code": "IDL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Indianola_Municipal_Airport" + }, + { + "id": "20156", + "ident": "KIDP", + "type": "small_airport", + "name": "Independence Municipal Airport", + "latitude_deg": "37.1584014893", + "longitude_deg": "-95.77839660640001", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Independence", + "scheduled_service": "no", + "gps_code": "KIDP", + "iata_code": "IDP", + "local_code": "IDP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Independence_Municipal_Airport_(Kansas)" + }, + { + "id": "20157", + "ident": "KIEN", + "type": "small_airport", + "name": "Pine Ridge Airport", + "latitude_deg": "43.020902", + "longitude_deg": "-102.506089", + "elevation_ft": "3333", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Pine Ridge", + "scheduled_service": "no", + "gps_code": "KIEN", + "iata_code": "XPR", + "local_code": "IEN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pine_Ridge_Airport", + "keywords": "6V2, SFD, KSFD" + }, + { + "id": "20158", + "ident": "KIER", + "type": "small_airport", + "name": "Natchitoches Regional Airport", + "latitude_deg": "31.735700607299805", + "longitude_deg": "-93.0990982055664", + "elevation_ft": "121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Natchitoches", + "scheduled_service": "no", + "gps_code": "KIER", + "local_code": "IER" + }, + { + "id": "20159", + "ident": "KIFA", + "type": "small_airport", + "name": "Iowa Falls Municipal Airport", + "latitude_deg": "42.4707984924", + "longitude_deg": "-93.2699966431", + "elevation_ft": "1137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Iowa Falls", + "scheduled_service": "no", + "gps_code": "KIFA", + "iata_code": "IFA", + "local_code": "IFA", + "home_link": "http://www.cityofiowafalls.com/airport.asp" + }, + { + "id": "20160", + "ident": "KIFP", + "type": "medium_airport", + "name": "Laughlin Bullhead International Airport", + "latitude_deg": "35.157398", + "longitude_deg": "-114.559998", + "elevation_ft": "701", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bullhead City", + "scheduled_service": "no", + "gps_code": "KIFP", + "iata_code": "IFP", + "local_code": "IFP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Laughlin/Bullhead_International_Airport" + }, + { + "id": "20161", + "ident": "KIGM", + "type": "medium_airport", + "name": "Kingman Airport", + "latitude_deg": "35.259499", + "longitude_deg": "-113.938004", + "elevation_ft": "3449", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Kingman", + "scheduled_service": "no", + "gps_code": "KIGM", + "iata_code": "IGM", + "local_code": "IGM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kingman_Airport_(Arizona)" + }, + { + "id": "20162", + "ident": "KIGQ", + "type": "small_airport", + "name": "Lansing Municipal Airport", + "latitude_deg": "41.5349006652832", + "longitude_deg": "-87.52950286865234", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "no", + "gps_code": "KIGQ", + "local_code": "IGQ" + }, + { + "id": "20163", + "ident": "KIGX", + "type": "closed", + "name": "Horace Williams Airport", + "latitude_deg": "35.935001", + "longitude_deg": "-79.065902", + "elevation_ft": "512", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Chapel Hill", + "scheduled_service": "no", + "home_link": "http://fa.unc.edu/enterprises/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Horace_Williams_Airport", + "keywords": "KIGX, IGX, W52, Martindale Field" + }, + { + "id": "20164", + "ident": "KIIB", + "type": "small_airport", + "name": "Independence Municipal Airport", + "latitude_deg": "42.45360184", + "longitude_deg": "-91.94760132", + "elevation_ft": "979", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Independence", + "scheduled_service": "no", + "gps_code": "KIIB", + "local_code": "IIB" + }, + { + "id": "20165", + "ident": "KIIY", + "type": "small_airport", + "name": "Washington Wilkes County Airport", + "latitude_deg": "33.77939987", + "longitude_deg": "-82.81580353", + "elevation_ft": "646", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "KIIY", + "local_code": "IIY" + }, + { + "id": "20166", + "ident": "KIJD", + "type": "small_airport", + "name": "Windham Airport", + "latitude_deg": "41.743999", + "longitude_deg": "-72.180298", + "elevation_ft": "247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "North Windham", + "scheduled_service": "no", + "gps_code": "KIJD", + "local_code": "IJD" + }, + { + "id": "20167", + "ident": "KIJX", + "type": "small_airport", + "name": "Jacksonville Municipal Airport", + "latitude_deg": "39.774600982666016", + "longitude_deg": "-90.23829650878906", + "elevation_ft": "624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "KIJX", + "local_code": "IJX" + }, + { + "id": "20168", + "ident": "KIKG", + "type": "small_airport", + "name": "Kleberg County Airport", + "latitude_deg": "27.55089951", + "longitude_deg": "-98.03089905", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kingsville", + "scheduled_service": "no", + "gps_code": "KIKG", + "local_code": "IKG" + }, + { + "id": "3607", + "ident": "KIKK", + "type": "medium_airport", + "name": "Greater Kankakee Airport", + "latitude_deg": "41.07139968869999", + "longitude_deg": "-87.8462982178", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Kankakee", + "scheduled_service": "no", + "gps_code": "KIKK", + "iata_code": "IKK", + "local_code": "IKK", + "home_link": "http://kvaa.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greater_Kankakee_Airport" + }, + { + "id": "20170", + "ident": "KIKV", + "type": "small_airport", + "name": "Ankeny Regional Airport", + "latitude_deg": "41.69139862060547", + "longitude_deg": "-93.56639862060547", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Ankeny", + "scheduled_service": "no", + "gps_code": "KIKV", + "local_code": "IKV" + }, + { + "id": "313424", + "ident": "KIL", + "type": "small_airport", + "name": "Kilwa Airport", + "latitude_deg": "-9.2886", + "longitude_deg": "28.3269", + "elevation_ft": "3120", + "continent": "AF", + "iso_country": "CD", + "iso_region": "CD-KA", + "municipality": "Kilwa", + "scheduled_service": "no", + "iata_code": "KIL" + }, + { + "id": "20171", + "ident": "KILE", + "type": "small_airport", + "name": "Skylark Field", + "latitude_deg": "31.0858001709", + "longitude_deg": "-97.6865005493", + "elevation_ft": "848", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Killeen", + "scheduled_service": "no", + "gps_code": "KILE", + "iata_code": "ILE", + "local_code": "ILE", + "home_link": "http://www.skylarkfield.net/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Skylark_Field" + }, + { + "id": "3608", + "ident": "KILG", + "type": "medium_airport", + "name": "New Castle Airport", + "latitude_deg": "39.67869949", + "longitude_deg": "-75.60649872", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Wilmington", + "scheduled_service": "yes", + "gps_code": "KILG", + "iata_code": "ILG", + "local_code": "ILG", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Castle_Airport" + }, + { + "id": "20172", + "ident": "KILL", + "type": "closed", + "name": "Willmar Municipal Airport John L Rice Field (1934)", + "latitude_deg": "45.115121", + "longitude_deg": "-95.089131", + "elevation_ft": "1127", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Willmar", + "scheduled_service": "no", + "gps_code": "KILL", + "local_code": "ILL" + }, + { + "id": "3609", + "ident": "KILM", + "type": "medium_airport", + "name": "Wilmington International Airport", + "latitude_deg": "34.270599365234375", + "longitude_deg": "-77.90260314941406", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Wilmington", + "scheduled_service": "yes", + "gps_code": "KILM", + "iata_code": "ILM", + "local_code": "ILM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wilmington_International_Airport" + }, + { + "id": "20173", + "ident": "KILN", + "type": "medium_airport", + "name": "Wilmington Airpark", + "latitude_deg": "39.427898407", + "longitude_deg": "-83.792098999", + "elevation_ft": "1077", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wilmington", + "scheduled_service": "no", + "gps_code": "KILN", + "iata_code": "ILN", + "local_code": "ILN", + "home_link": "http://www.wilmingtonairpark.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Airborne_Airpark", + "keywords": "Clinton Field, Clinton County AFB, Airborne Airpark" + }, + { + "id": "20174", + "ident": "KIML", + "type": "small_airport", + "name": "Imperial Municipal Airport", + "latitude_deg": "40.50930023", + "longitude_deg": "-101.6210022", + "elevation_ft": "3275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Imperial", + "scheduled_service": "no", + "gps_code": "KIML", + "iata_code": "IML", + "local_code": "IML" + }, + { + "id": "20175", + "ident": "KIMM", + "type": "small_airport", + "name": "Immokalee Regional Airport", + "latitude_deg": "26.427933", + "longitude_deg": "-81.403531", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Immokalee", + "scheduled_service": "no", + "gps_code": "KIMM", + "iata_code": "IMM", + "local_code": "IMM", + "home_link": "http://www.colliergov.net/index.aspx?page=59", + "wikipedia_link": "https://en.wikipedia.org/wiki/Immokalee_Regional_Airport" + }, + { + "id": "20176", + "ident": "KIMS", + "type": "small_airport", + "name": "Madison Municipal Airport", + "latitude_deg": "38.75889969", + "longitude_deg": "-85.46549988", + "elevation_ft": "819", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "KIMS", + "iata_code": "MDN", + "local_code": "IMS", + "home_link": "http://www.madisonmunicipalairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Madison_Municipal_Airport_(Indiana)" + }, + { + "id": "20177", + "ident": "KIMT", + "type": "small_airport", + "name": "Ford Airport", + "latitude_deg": "45.8184013367", + "longitude_deg": "-88.1145019531", + "elevation_ft": "1182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Iron Mountain / Kingsford", + "scheduled_service": "no", + "gps_code": "KIMT", + "iata_code": "IMT", + "local_code": "IMT", + "home_link": "http://www.fordairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ford_Airport_(Iron_Mountain)" + }, + { + "id": "3610", + "ident": "KIND", + "type": "large_airport", + "name": "Indianapolis International Airport", + "latitude_deg": "39.7173", + "longitude_deg": "-86.294403", + "elevation_ft": "797", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "yes", + "gps_code": "KIND", + "iata_code": "IND", + "local_code": "IND", + "home_link": "http://www.indianapolisairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Indianapolis_International_Airport" + }, + { + "id": "21398", + "ident": "KINF", + "type": "small_airport", + "name": "Inverness Airport", + "latitude_deg": "28.808599", + "longitude_deg": "-82.316498", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Inverness", + "scheduled_service": "no", + "gps_code": "KINF", + "local_code": "INF" + }, + { + "id": "20178", + "ident": "KINJ", + "type": "small_airport", + "name": "Hillsboro Municipal Airport", + "latitude_deg": "32.0835", + "longitude_deg": "-97.097198", + "elevation_ft": "686", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "KINJ", + "local_code": "INJ", + "home_link": "https://www.hillsborotx.org/departments/Airport/municipal-airport-faq", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hillsboro_Municipal_Airport_(Texas)", + "keywords": "5T5" + }, + { + "id": "3611", + "ident": "KINK", + "type": "medium_airport", + "name": "Winkler County Airport", + "latitude_deg": "31.779600143399996", + "longitude_deg": "-103.200996399", + "elevation_ft": "2822", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wink", + "scheduled_service": "no", + "gps_code": "KINK", + "iata_code": "INK", + "local_code": "INK", + "home_link": "http://www.co.winkler.tx.us/default.aspx?Winkler_County/County.Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Winkler_County_Airport" + }, + { + "id": "3612", + "ident": "KINL", + "type": "medium_airport", + "name": "Falls International Airport", + "latitude_deg": "48.566200256347656", + "longitude_deg": "-93.4030990600586", + "elevation_ft": "1185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "International Falls", + "scheduled_service": "yes", + "gps_code": "KINL", + "iata_code": "INL", + "local_code": "INL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Falls_International_Airport" + }, + { + "id": "20179", + "ident": "KINS", + "type": "small_airport", + "name": "Creech Air Force Base", + "latitude_deg": "36.587200164799995", + "longitude_deg": "-115.672996521", + "elevation_ft": "3133", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Indian Springs", + "scheduled_service": "no", + "gps_code": "KINS", + "iata_code": "INS", + "local_code": "INS", + "home_link": "http://www.creech.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Creech_Air_Force_Base" + }, + { + "id": "3613", + "ident": "KINT", + "type": "medium_airport", + "name": "Smith Reynolds Airport", + "latitude_deg": "36.13370132446289", + "longitude_deg": "-80.22200012207031", + "elevation_ft": "969", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Winston Salem", + "scheduled_service": "no", + "gps_code": "KINT", + "iata_code": "INT", + "local_code": "INT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Smith_Reynolds_Airport" + }, + { + "id": "20180", + "ident": "KINW", + "type": "medium_airport", + "name": "Winslow Lindbergh Regional Airport", + "latitude_deg": "35.021900177", + "longitude_deg": "-110.722999573", + "elevation_ft": "4941", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Winslow", + "scheduled_service": "no", + "gps_code": "KINW", + "iata_code": "INW", + "local_code": "INW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Winslow-Lindbergh_Regional_Airport" + }, + { + "id": "20181", + "ident": "KIOB", + "type": "small_airport", + "name": "Mount Sterling Montgomery County Airport", + "latitude_deg": "38.05810165", + "longitude_deg": "-83.979599", + "elevation_ft": "1019", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Mount Sterling", + "scheduled_service": "no", + "gps_code": "KIOB", + "local_code": "IOB" + }, + { + "id": "20182", + "ident": "KIOW", + "type": "small_airport", + "name": "Iowa City Municipal Airport", + "latitude_deg": "41.639198303200004", + "longitude_deg": "-91.5465011597", + "elevation_ft": "668", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Iowa City", + "scheduled_service": "no", + "gps_code": "KIOW", + "iata_code": "IOW", + "local_code": "IOW", + "home_link": "http://www.icgov.org/?id=1501", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iowa_City_Municipal_Airport" + }, + { + "id": "20183", + "ident": "KIPJ", + "type": "small_airport", + "name": "Lincolnton Lincoln County Regional Airport", + "latitude_deg": "35.483299", + "longitude_deg": "-81.161301", + "elevation_ft": "877", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Lincolnton", + "scheduled_service": "no", + "gps_code": "KIPJ", + "local_code": "IPJ", + "home_link": "http://www.lincolncountyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lincolnton-Lincoln_County_Regional_Airport", + "keywords": "5N4" + }, + { + "id": "20184", + "ident": "KIPL", + "type": "medium_airport", + "name": "Imperial County Airport", + "latitude_deg": "32.834201812699995", + "longitude_deg": "-115.57900238", + "elevation_ft": "-54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Imperial", + "scheduled_service": "no", + "gps_code": "KIPL", + "iata_code": "IPL", + "local_code": "IPL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Imperial_County_Airport" + }, + { + "id": "3614", + "ident": "KIPT", + "type": "medium_airport", + "name": "Williamsport Regional Airport", + "latitude_deg": "41.241798400878906", + "longitude_deg": "-76.92109680175781", + "elevation_ft": "529", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Williamsport", + "scheduled_service": "yes", + "gps_code": "KIPT", + "iata_code": "IPT", + "local_code": "IPT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Williamsport_Regional_Airport" + }, + { + "id": "302383", + "ident": "KIQ", + "type": "small_airport", + "name": "Kira Airport", + "latitude_deg": "-8.065111111110001", + "longitude_deg": "147.332027778", + "elevation_ft": "1700", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "municipality": "Kira", + "scheduled_service": "no", + "gps_code": "AYRA", + "iata_code": "KIQ", + "local_code": "KIRA" + }, + { + "id": "3615", + "ident": "KIRK", + "type": "medium_airport", + "name": "Kirksville Regional Airport", + "latitude_deg": "40.09349822998047", + "longitude_deg": "-92.5448989868164", + "elevation_ft": "966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kirksville", + "scheduled_service": "yes", + "gps_code": "KIRK", + "iata_code": "IRK", + "local_code": "IRK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kirksville_Regional_Airport" + }, + { + "id": "20185", + "ident": "KIRS", + "type": "small_airport", + "name": "Kirsch Municipal Airport", + "latitude_deg": "41.81330109", + "longitude_deg": "-85.43900299", + "elevation_ft": "924", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Sturgis", + "scheduled_service": "no", + "gps_code": "KIRS", + "iata_code": "IRS", + "local_code": "IRS", + "home_link": "http://www.sturgismi.gov/airport/" + }, + { + "id": "20186", + "ident": "KISB", + "type": "small_airport", + "name": "Sibley Municipal Airport", + "latitude_deg": "43.36949921", + "longitude_deg": "-95.75980377", + "elevation_ft": "1538", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Sibley", + "scheduled_service": "no", + "gps_code": "KISB", + "local_code": "ISB" + }, + { + "id": "20187", + "ident": "KISM", + "type": "medium_airport", + "name": "Kissimmee Gateway Airport", + "latitude_deg": "28.2898006439", + "longitude_deg": "-81.4371032715", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "KISM", + "iata_code": "ISM", + "local_code": "ISM", + "home_link": "http://www.kissimmee.org/index.aspx?page=111", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kissimmee_Gateway_Airport" + }, + { + "id": "20188", + "ident": "KISN", + "type": "closed", + "name": "Sloulin Field International Airport", + "latitude_deg": "48.177898", + "longitude_deg": "-103.641998", + "elevation_ft": "1982", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Williston", + "scheduled_service": "no", + "gps_code": "KISN", + "iata_code": "ISN", + "local_code": "ISN" + }, + { + "id": "20189", + "ident": "KISO", + "type": "medium_airport", + "name": "Kinston Regional Jetport At Stallings Field", + "latitude_deg": "35.331401825", + "longitude_deg": "-77.60880279540001", + "elevation_ft": "93", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Kinston", + "scheduled_service": "no", + "gps_code": "KISO", + "iata_code": "ISO", + "local_code": "ISO", + "home_link": "http://www.jetkinston.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kinston_Regional_Jetport" + }, + { + "id": "3616", + "ident": "KISP", + "type": "medium_airport", + "name": "Long Island Mac Arthur Airport", + "latitude_deg": "40.79520035", + "longitude_deg": "-73.10019684", + "elevation_ft": "99", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Islip", + "scheduled_service": "yes", + "gps_code": "KISP", + "iata_code": "ISP", + "local_code": "ISP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Long_Island_MacArthur_Airport" + }, + { + "id": "20190", + "ident": "KISQ", + "type": "small_airport", + "name": "Schoolcraft County Airport", + "latitude_deg": "45.97460175", + "longitude_deg": "-86.17179871", + "elevation_ft": "684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Manistique", + "scheduled_service": "no", + "gps_code": "KISQ", + "iata_code": "ISQ", + "local_code": "ISQ" + }, + { + "id": "20191", + "ident": "KISW", + "type": "small_airport", + "name": "Alexander Field South Wood County Airport", + "latitude_deg": "44.3602981567", + "longitude_deg": "-89.83899688720001", + "elevation_ft": "1021", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wisconsin Rapids", + "scheduled_service": "no", + "gps_code": "KISW", + "iata_code": "ISW", + "local_code": "ISW", + "home_link": "http://www.wirapids.org/department/?fDD=27-0", + "wikipedia_link": "https://en.wikipedia.org/wiki/South_Wood_County_Airport" + }, + { + "id": "20192", + "ident": "KISZ", + "type": "closed", + "name": "Cincinnati Blue Ash Airport", + "latitude_deg": "39.246700286899994", + "longitude_deg": "-84.388999939", + "elevation_ft": "856", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cincinnati", + "scheduled_service": "no", + "gps_code": "KISZ", + "local_code": "ISZ" + }, + { + "id": "20193", + "ident": "KITH", + "type": "medium_airport", + "name": "Ithaca Tompkins Regional Airport", + "latitude_deg": "42.49100112915039", + "longitude_deg": "-76.4583969116211", + "elevation_ft": "1099", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Ithaca", + "scheduled_service": "yes", + "gps_code": "KITH", + "iata_code": "ITH", + "local_code": "ITH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ithaca_Tompkins_Regional_Airport" + }, + { + "id": "20194", + "ident": "KITR", + "type": "small_airport", + "name": "Kit Carson County Airport", + "latitude_deg": "39.24250030517578", + "longitude_deg": "-102.28500366210938", + "elevation_ft": "4219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "KITR", + "local_code": "ITR" + }, + { + "id": "3617", + "ident": "KIWA", + "type": "medium_airport", + "name": "Phoenix–Mesa Gateway Airport", + "latitude_deg": "33.3078", + "longitude_deg": "-111.654999", + "elevation_ft": "1382", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "yes", + "gps_code": "KIWA", + "iata_code": "AZA", + "local_code": "IWA", + "home_link": "http://www.flywga.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Phoenix%E2%80%93Mesa_Gateway_Airport", + "keywords": "Williams Air Force Base, Williams Gateway Airport" + }, + { + "id": "20195", + "ident": "KIWD", + "type": "small_airport", + "name": "Gogebic Iron County Airport", + "latitude_deg": "46.5275", + "longitude_deg": "-90.131401", + "elevation_ft": "1230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ironwood", + "scheduled_service": "no", + "gps_code": "KIWD", + "iata_code": "IWD", + "local_code": "IWD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gogebic-Iron_County_Airport" + }, + { + "id": "20196", + "ident": "KIWH", + "type": "small_airport", + "name": "Wabash Municipal Airport", + "latitude_deg": "40.762991", + "longitude_deg": "-85.799747", + "elevation_ft": "796", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Wabash", + "scheduled_service": "no", + "gps_code": "KIWH", + "local_code": "IWH" + }, + { + "id": "20197", + "ident": "KIWI", + "type": "small_airport", + "name": "Wiscasset Airport", + "latitude_deg": "43.9613990784", + "longitude_deg": "-69.712600708", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Wiscasset", + "scheduled_service": "no", + "gps_code": "KIWI", + "iata_code": "ISS", + "local_code": "IWI", + "home_link": "http://www.wiscasset.org/departments/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wiscasset_Airport" + }, + { + "id": "20198", + "ident": "KIWS", + "type": "small_airport", + "name": "West Houston Airport", + "latitude_deg": "29.818199", + "longitude_deg": "-95.6726", + "elevation_ft": "111", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "KIWS", + "iata_code": "IWS", + "local_code": "IWS", + "home_link": "http://www.westhoustonairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/West_Houston_Airport", + "keywords": "Lakeside, Memorial Skyland" + }, + { + "id": "44457", + "ident": "KIXA", + "type": "small_airport", + "name": "Halifax-Northampton Regional Airport", + "latitude_deg": "36.32979965", + "longitude_deg": "-77.63523102", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Roanoke Rapids", + "scheduled_service": "no", + "gps_code": "KIXA", + "local_code": "IXA" + }, + { + "id": "20199", + "ident": "KIXD", + "type": "small_airport", + "name": "New Century Aircenter Airport", + "latitude_deg": "38.8308982849", + "longitude_deg": "-94.890296936", + "elevation_ft": "1087", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Olathe", + "scheduled_service": "no", + "gps_code": "KIXD", + "iata_code": "JCI", + "local_code": "IXD", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Century_AirCenter", + "keywords": "NUU, KNUU, NAS Olathe, Flatley Field, Johnson County Industrial Airport" + }, + { + "id": "20200", + "ident": "KIYK", + "type": "small_airport", + "name": "Inyokern Airport", + "latitude_deg": "35.65879822", + "longitude_deg": "-117.8300018", + "elevation_ft": "2457", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Inyokern", + "scheduled_service": "no", + "gps_code": "KIYK", + "iata_code": "IYK", + "local_code": "IYK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Inyokern_Airport" + }, + { + "id": "313425", + "ident": "KIZ", + "type": "closed", + "name": "Kikinonda Airport", + "latitude_deg": "-8.5284", + "longitude_deg": "147.9309", + "elevation_ft": "95", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "municipality": "Kikinonda", + "scheduled_service": "no", + "iata_code": "KIZ" + }, + { + "id": "20201", + "ident": "KIZA", + "type": "small_airport", + "name": "Santa Ynez Airport", + "latitude_deg": "34.60680008", + "longitude_deg": "-120.0759964", + "elevation_ft": "674", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Ynez", + "scheduled_service": "no", + "gps_code": "KIZA", + "iata_code": "SQA", + "local_code": "IZA", + "home_link": "http://www.santaynezairport.com/info.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Ynez_Airport" + }, + { + "id": "20202", + "ident": "KIZG", + "type": "small_airport", + "name": "Eastern Slopes Regional Airport", + "latitude_deg": "43.991100311299995", + "longitude_deg": "-70.9478988647", + "elevation_ft": "454", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Fryeburg", + "scheduled_service": "no", + "gps_code": "KIZG", + "iata_code": "FRY", + "local_code": "IZG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eastern_Slopes_Regional_Airport" + }, + { + "id": "3618", + "ident": "KJAC", + "type": "medium_airport", + "name": "Jackson Hole Airport", + "latitude_deg": "43.6072998046875", + "longitude_deg": "-110.73799896240234", + "elevation_ft": "6451", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Jackson", + "scheduled_service": "yes", + "gps_code": "KJAC", + "iata_code": "JAC", + "local_code": "JAC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jackson_Hole_Airport" + }, + { + "id": "3619", + "ident": "KJAN", + "type": "medium_airport", + "name": "Jackson-Medgar Wiley Evers International Airport", + "latitude_deg": "32.311199", + "longitude_deg": "-90.075897", + "elevation_ft": "346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Jackson", + "scheduled_service": "yes", + "gps_code": "KJAN", + "iata_code": "JAN", + "local_code": "JAN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jackson-Evers_International_Airport" + }, + { + "id": "20203", + "ident": "KJAS", + "type": "small_airport", + "name": "Jasper County Airport Bell Field", + "latitude_deg": "30.8857", + "longitude_deg": "-94.034897", + "elevation_ft": "213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jasper", + "scheduled_service": "no", + "gps_code": "KJAS", + "iata_code": "JAS", + "local_code": "JAS" + }, + { + "id": "20204", + "ident": "KJAU", + "type": "small_airport", + "name": "Colonel Tommy C Stiner Airfield", + "latitude_deg": "36.334599", + "longitude_deg": "-84.1623", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Jacksboro", + "scheduled_service": "no", + "gps_code": "KJAU", + "local_code": "JAU", + "keywords": "Campbell County Airport" + }, + { + "id": "3620", + "ident": "KJAX", + "type": "large_airport", + "name": "Jacksonville International Airport", + "latitude_deg": "30.49410057067871", + "longitude_deg": "-81.68789672851562", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "yes", + "gps_code": "KJAX", + "iata_code": "JAX", + "local_code": "JAX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jacksonville_International_Airport" + }, + { + "id": "3621", + "ident": "KJBR", + "type": "medium_airport", + "name": "Jonesboro Municipal Airport", + "latitude_deg": "35.83169937133789", + "longitude_deg": "-90.64640045166016", + "elevation_ft": "262", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Jonesboro", + "scheduled_service": "yes", + "gps_code": "KJBR", + "iata_code": "JBR", + "local_code": "JBR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jonesboro_Municipal_Airport" + }, + { + "id": "20205", + "ident": "KJCT", + "type": "medium_airport", + "name": "Kimble County Airport", + "latitude_deg": "30.5112991333", + "longitude_deg": "-99.7634963989", + "elevation_ft": "1749", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Junction", + "scheduled_service": "no", + "gps_code": "KJCT", + "iata_code": "JCT", + "local_code": "JCT" + }, + { + "id": "20206", + "ident": "KJDD", + "type": "small_airport", + "name": "Wood County Airport - Collins Field", + "latitude_deg": "32.742199", + "longitude_deg": "-95.496498", + "elevation_ft": "434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineola", + "scheduled_service": "no", + "gps_code": "KJDD", + "local_code": "JDD", + "home_link": "https://www.woodcountyairport.net/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wood_County_Airport_(Texas)", + "keywords": "3T1" + }, + { + "id": "20207", + "ident": "KJDN", + "type": "small_airport", + "name": "Jordan Airport", + "latitude_deg": "47.3288002014", + "longitude_deg": "-106.95300293", + "elevation_ft": "2662", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Jordan", + "scheduled_service": "no", + "gps_code": "KJDN", + "iata_code": "JDN", + "local_code": "JDN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jordan_Airport" + }, + { + "id": "20208", + "ident": "KJEF", + "type": "small_airport", + "name": "Jefferson City Memorial Airport", + "latitude_deg": "38.5912017822", + "longitude_deg": "-92.15609741210001", + "elevation_ft": "549", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Jefferson City", + "scheduled_service": "no", + "gps_code": "KJEF", + "iata_code": "JEF", + "local_code": "JEF", + "home_link": "https://www.jeffcitymo.org/publicworks/airport/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jefferson_City_Memorial_Airport" + }, + { + "id": "20209", + "ident": "KJER", + "type": "small_airport", + "name": "Jerome County Airport", + "latitude_deg": "42.72669982910156", + "longitude_deg": "-114.45700073242188", + "elevation_ft": "4053", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Jerome", + "scheduled_service": "no", + "gps_code": "KJER", + "local_code": "JER" + }, + { + "id": "20210", + "ident": "KJES", + "type": "small_airport", + "name": "Jesup Wayne County Airport", + "latitude_deg": "31.55400085", + "longitude_deg": "-81.88249969", + "elevation_ft": "107", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Jesup", + "scheduled_service": "no", + "gps_code": "KJES", + "local_code": "JES" + }, + { + "id": "3622", + "ident": "KJFK", + "type": "large_airport", + "name": "John F Kennedy International Airport", + "latitude_deg": "40.639447", + "longitude_deg": "-73.779317", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "New York", + "scheduled_service": "yes", + "gps_code": "KJFK", + "iata_code": "JFK", + "local_code": "JFK", + "home_link": "https://www.jfkairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/John_F._Kennedy_International_Airport", + "keywords": "Manhattan, New York City, NYC, Idlewild, IDL, KIDL" + }, + { + "id": "20211", + "ident": "KJFX", + "type": "small_airport", + "name": "Walker County Airport-Bevill Field", + "latitude_deg": "33.90200043", + "longitude_deg": "-87.31420135", + "elevation_ft": "482", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Jasper", + "scheduled_service": "no", + "gps_code": "KJFX", + "local_code": "JFX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Walker_County_Airport", + "keywords": "L02" + }, + { + "id": "19016", + "ident": "KJFZ", + "type": "small_airport", + "name": "Tazewell County Airport", + "latitude_deg": "37.063702", + "longitude_deg": "-81.798302", + "elevation_ft": "2653", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richlands", + "scheduled_service": "no", + "gps_code": "KJFZ", + "local_code": "JFZ", + "home_link": "http://fly.tazewellcountyva.org/", + "keywords": "6V3, KBNK, BNK" + }, + { + "id": "20212", + "ident": "KJGG", + "type": "small_airport", + "name": "Williamsburg Jamestown Airport", + "latitude_deg": "37.239201", + "longitude_deg": "-76.716103", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Williamsburg", + "scheduled_service": "no", + "gps_code": "KJGG", + "local_code": "JGG", + "home_link": "https://williamsburgjamestownairport.com/" + }, + { + "id": "20213", + "ident": "KJHW", + "type": "medium_airport", + "name": "Chautauqua County-Jamestown Airport", + "latitude_deg": "42.15425", + "longitude_deg": "-79.254008", + "elevation_ft": "1723", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Jamestown", + "scheduled_service": "no", + "gps_code": "KJHW", + "iata_code": "JHW", + "local_code": "JHW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chautauqua_County-Jamestown_Airport" + }, + { + "id": "20214", + "ident": "KJKA", + "type": "small_airport", + "name": "Jack Edwards National Airport", + "latitude_deg": "30.290501", + "longitude_deg": "-87.671799", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Gulf Shores", + "scheduled_service": "no", + "gps_code": "KJKA", + "iata_code": "GUF", + "local_code": "JKA", + "home_link": "https://www.flyjka.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jack_Edwards_Airport", + "keywords": "AL15" + }, + { + "id": "20215", + "ident": "KJKJ", + "type": "small_airport", + "name": "Moorhead Municipal Airport", + "latitude_deg": "46.83929825", + "longitude_deg": "-96.66369629", + "elevation_ft": "918", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Moorhead", + "scheduled_service": "no", + "gps_code": "KJKJ", + "local_code": "JKJ" + }, + { + "id": "20216", + "ident": "KJKL", + "type": "medium_airport", + "name": "Julian Carroll Airport", + "latitude_deg": "37.59389877319336", + "longitude_deg": "-83.31729888916016", + "elevation_ft": "1381", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "KJKL", + "local_code": "JKL" + }, + { + "id": "3623", + "ident": "KJLN", + "type": "medium_airport", + "name": "Joplin Regional Airport", + "latitude_deg": "37.151798", + "longitude_deg": "-94.498299", + "elevation_ft": "981", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Joplin", + "scheduled_service": "yes", + "gps_code": "KJLN", + "iata_code": "JLN", + "local_code": "JLN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Joplin_Regional_Airport" + }, + { + "id": "20217", + "ident": "KJMR", + "type": "small_airport", + "name": "Mora Municipal Airport", + "latitude_deg": "45.886101", + "longitude_deg": "-93.271796", + "elevation_ft": "1012", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Mora", + "scheduled_service": "no", + "gps_code": "KJMR", + "local_code": "JMR", + "home_link": "https://www.ci.mora.mn.us/?SEC=6D61A290-FC50-4FC2-BC1B-68C5B35539D5", + "keywords": "19D" + }, + { + "id": "3624", + "ident": "KJMS", + "type": "medium_airport", + "name": "Jamestown Regional Airport", + "latitude_deg": "46.92969894", + "longitude_deg": "-98.67819977", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Jamestown", + "scheduled_service": "yes", + "gps_code": "KJMS", + "iata_code": "JMS", + "local_code": "JMS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jamestown_Regional_Airport" + }, + { + "id": "20218", + "ident": "KJNX", + "type": "small_airport", + "name": "Johnston County Airport", + "latitude_deg": "35.54090118", + "longitude_deg": "-78.39029694", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Smithfield", + "scheduled_service": "no", + "gps_code": "KJNX", + "local_code": "JNX" + }, + { + "id": "20219", + "ident": "KJOT", + "type": "small_airport", + "name": "Joliet Regional Airport", + "latitude_deg": "41.51779938", + "longitude_deg": "-88.17549896", + "elevation_ft": "582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Joliet", + "scheduled_service": "no", + "gps_code": "KJOT", + "iata_code": "JOT", + "local_code": "JOT", + "home_link": "http://www.jolietpark.org/index.php/facilities/joliet-regional-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Joliet_Regional_Airport" + }, + { + "id": "20220", + "ident": "KJQF", + "type": "medium_airport", + "name": "Concord-Padgett Regional Airport", + "latitude_deg": "35.387798", + "longitude_deg": "-80.709099", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Concord", + "scheduled_service": "yes", + "gps_code": "KJQF", + "iata_code": "USA", + "local_code": "JQF", + "home_link": "http://www.concordnc.gov/Departments/Concord-Regional-Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Concord_Regional_Airport", + "keywords": "3N8, \"NASCAR's Airport\"" + }, + { + "id": "18258", + "ident": "KJSD", + "type": "heliport", + "name": "Sikorsky Heliport", + "latitude_deg": "41.249298095703125", + "longitude_deg": "-73.0968017578125", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Stratford", + "scheduled_service": "no", + "gps_code": "KJSD", + "local_code": "JSD" + }, + { + "id": "20221", + "ident": "KJSO", + "type": "small_airport", + "name": "Cherokee County Airport", + "latitude_deg": "31.8693008423", + "longitude_deg": "-95.2173995972", + "elevation_ft": "677", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "KJSO", + "iata_code": "JKV", + "local_code": "JSO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cherokee_County_Airport_(Texas)" + }, + { + "id": "3625", + "ident": "KJST", + "type": "medium_airport", + "name": "John Murtha Johnstown Cambria County Airport", + "latitude_deg": "40.31610107421875", + "longitude_deg": "-78.83390045166016", + "elevation_ft": "2284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Johnstown", + "scheduled_service": "yes", + "gps_code": "KJST", + "iata_code": "JST", + "local_code": "JST", + "wikipedia_link": "https://en.wikipedia.org/wiki/Johnstown-Cambria_County_Airport" + }, + { + "id": "20222", + "ident": "KJSV", + "type": "small_airport", + "name": "Sallisaw Municipal Airport", + "latitude_deg": "35.4382019", + "longitude_deg": "-94.80280304", + "elevation_ft": "527", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Sallisaw", + "scheduled_service": "no", + "gps_code": "KJSV", + "local_code": "JSV" + }, + { + "id": "312915", + "ident": "KJU", + "type": "closed", + "name": "Kamiraba Airport", + "latitude_deg": "-3.1995", + "longitude_deg": "151.9077", + "elevation_ft": "40", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NIK", + "municipality": "Kamiraba", + "scheduled_service": "no", + "iata_code": "KJU" + }, + { + "id": "20223", + "ident": "KJVL", + "type": "small_airport", + "name": "Southern Wisconsin Regional Airport", + "latitude_deg": "42.620300293", + "longitude_deg": "-89.0416030884", + "elevation_ft": "808", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Janesville", + "scheduled_service": "no", + "gps_code": "KJVL", + "iata_code": "JVL", + "local_code": "JVL", + "home_link": "http://www.jvlairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Southern_Wisconsin_Regional_Airport", + "keywords": "Rock County Airport" + }, + { + "id": "20224", + "ident": "KJVY", + "type": "small_airport", + "name": "Clark Regional Airport", + "latitude_deg": "38.36539840698242", + "longitude_deg": "-85.73819732666016", + "elevation_ft": "474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Jeffersonville", + "scheduled_service": "no", + "gps_code": "KJVY", + "local_code": "JVY" + }, + { + "id": "20225", + "ident": "KJWG", + "type": "small_airport", + "name": "Watonga Regional Airport", + "latitude_deg": "35.86470032", + "longitude_deg": "-98.42079926", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Watonga", + "scheduled_service": "no", + "gps_code": "KJWG", + "local_code": "JWG" + }, + { + "id": "20226", + "ident": "KJWN", + "type": "small_airport", + "name": "John C Tune Airport", + "latitude_deg": "36.18239974975586", + "longitude_deg": "-86.88670349121094", + "elevation_ft": "495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Nashville", + "scheduled_service": "no", + "gps_code": "KJWN", + "local_code": "JWN" + }, + { + "id": "20227", + "ident": "KJWY", + "type": "small_airport", + "name": "Mid-Way Regional Airport", + "latitude_deg": "32.4587", + "longitude_deg": "-96.912399", + "elevation_ft": "713", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Midlothian/Waxahachie", + "scheduled_service": "no", + "gps_code": "KJWY", + "local_code": "JWY", + "home_link": "http://www.mid-wayregional.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mid-Way_Regional_Airport", + "keywords": "4T6" + }, + { + "id": "343796", + "ident": "KJX", + "type": "small_airport", + "name": "Blang Pidie Airport", + "latitude_deg": "3.735749", + "longitude_deg": "96.790109", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-AC", + "municipality": "Blangpidie", + "scheduled_service": "no", + "iata_code": "KJX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Blangpidie_Airport" + }, + { + "id": "20228", + "ident": "KJXI", + "type": "small_airport", + "name": "Fox Stephens Field Gilmer Municipal Airport", + "latitude_deg": "32.699001", + "longitude_deg": "-94.948898", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gilmer", + "scheduled_service": "no", + "gps_code": "KJXI", + "local_code": "JXI", + "home_link": "https://www.gilmer-tx.com/destinations/fox-stephens-field-airport", + "keywords": "4F4" + }, + { + "id": "3626", + "ident": "KJXN", + "type": "medium_airport", + "name": "Jackson County Reynolds Field", + "latitude_deg": "42.260509", + "longitude_deg": "-84.463019", + "elevation_ft": "1001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "KJXN", + "iata_code": "JXN", + "local_code": "JXN", + "home_link": "http://www.co.jackson.mi.us/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jackson_County_Airport_(Michigan)" + }, + { + "id": "20229", + "ident": "KJYG", + "type": "small_airport", + "name": "St James Municipal Airport", + "latitude_deg": "43.98630142211914", + "longitude_deg": "-94.55789947509766", + "elevation_ft": "1067", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "St James", + "scheduled_service": "no", + "gps_code": "KJYG", + "local_code": "JYG" + }, + { + "id": "20230", + "ident": "KJYL", + "type": "small_airport", + "name": "Plantation Airpark", + "latitude_deg": "32.645301818847656", + "longitude_deg": "-81.59709930419922", + "elevation_ft": "188", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Sylvania", + "scheduled_service": "no", + "gps_code": "KJYL", + "local_code": "JYL" + }, + { + "id": "20231", + "ident": "KJYM", + "type": "small_airport", + "name": "Hillsdale Municipal Airport", + "latitude_deg": "41.92129898071289", + "longitude_deg": "-84.58580017089844", + "elevation_ft": "1182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Hillsdale", + "scheduled_service": "no", + "gps_code": "KJYM", + "local_code": "JYM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hillsdale_Municipal_Airport" + }, + { + "id": "20232", + "ident": "KJYO", + "type": "small_airport", + "name": "Leesburg Executive Airport", + "latitude_deg": "39.077999", + "longitude_deg": "-77.557503", + "elevation_ft": "389", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Leesburg", + "scheduled_service": "no", + "gps_code": "KJYO", + "local_code": "JYO", + "home_link": "http://www.leesburgva.gov/government/departments/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leesburg_Executive_Airport", + "keywords": "ADIZ" + }, + { + "id": "20233", + "ident": "KJYR", + "type": "small_airport", + "name": "York Municipal Airport", + "latitude_deg": "40.89680099487305", + "longitude_deg": "-97.622802734375", + "elevation_ft": "1670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "York", + "scheduled_service": "no", + "gps_code": "KJYR", + "local_code": "JYR" + }, + { + "id": "20234", + "ident": "KJZI", + "type": "small_airport", + "name": "Charleston Executive Airport", + "latitude_deg": "32.70090103149414", + "longitude_deg": "-80.00289916992188", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Charleston", + "scheduled_service": "no", + "gps_code": "KJZI", + "local_code": "JZI" + }, + { + "id": "20235", + "ident": "KJZP", + "type": "small_airport", + "name": "Pickens County Airport", + "latitude_deg": "34.453399658203125", + "longitude_deg": "-84.4573974609375", + "elevation_ft": "1535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Jasper", + "scheduled_service": "no", + "gps_code": "KJZP", + "local_code": "JZP" + }, + { + "id": "20236", + "ident": "KK02", + "type": "small_airport", + "name": "Perryville Regional Airport", + "latitude_deg": "37.868698", + "longitude_deg": "-89.862099", + "elevation_ft": "372", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Perryville", + "scheduled_service": "no", + "gps_code": "KPCD", + "local_code": "PCD", + "home_link": "http://www.cityofperryville.com/229/Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Perryville_Municipal_Airport", + "keywords": "K02, Perryville Municipal Airport, McBride Airport" + }, + { + "id": "20237", + "ident": "KK06", + "type": "small_airport", + "name": "Greater Beardstown Airport", + "latitude_deg": "39.9734001159668", + "longitude_deg": "-90.40370178222656", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Beardstown", + "scheduled_service": "no", + "gps_code": "KK06", + "local_code": "K06" + }, + { + "id": "20239", + "ident": "KK09", + "type": "small_airport", + "name": "Piseco Airport", + "latitude_deg": "43.453399658203125", + "longitude_deg": "-74.5176010131836", + "elevation_ft": "1703", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Piseco", + "scheduled_service": "no", + "gps_code": "KK09", + "local_code": "K09", + "wikipedia_link": "https://en.wikipedia.org/wiki/Piseco_Airport" + }, + { + "id": "20240", + "ident": "KK15", + "type": "small_airport", + "name": "Grand Glaize Osage Beach Airport", + "latitude_deg": "38.1105003357", + "longitude_deg": "-92.6804962158", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Osage Beach", + "scheduled_service": "no", + "gps_code": "K15", + "local_code": "K15" + }, + { + "id": "20241", + "ident": "KK16", + "type": "small_airport", + "name": "Becks Grove Airport", + "latitude_deg": "43.258399963378906", + "longitude_deg": "-75.60379791259766", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Rome", + "scheduled_service": "no", + "gps_code": "KK16", + "local_code": "K16" + }, + { + "id": "20242", + "ident": "KK19", + "type": "small_airport", + "name": "Albany Municipal Airport", + "latitude_deg": "40.262199401855", + "longitude_deg": "-94.338996887207", + "elevation_ft": "886", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "K19", + "local_code": "K19", + "wikipedia_link": "https://en.wikipedia.org/wiki/Albany_Municipal_Airport_(Missouri)" + }, + { + "id": "20243", + "ident": "KK20", + "type": "small_airport", + "name": "Wendell H Ford Airport", + "latitude_deg": "37.384838", + "longitude_deg": "-83.259662", + "elevation_ft": "1256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Hazard", + "scheduled_service": "no", + "local_code": "CPF", + "home_link": "https://perrycounty.ky.gov/services/Pages/Wendell-Ford-Airport-Info.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wendell_H._Ford_Airport", + "keywords": "K20" + }, + { + "id": "20244", + "ident": "KK22", + "type": "small_airport", + "name": "Big Sandy Regional Airport", + "latitude_deg": "37.750999450684", + "longitude_deg": "-82.636703491211", + "elevation_ft": "1221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Prestonsburg", + "scheduled_service": "no", + "gps_code": "KSJS", + "local_code": "SJS", + "home_link": "http://www.bigsandyregional.com/airport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Big_Sandy_Regional_Airport", + "keywords": "K22" + }, + { + "id": "20245", + "ident": "KK24", + "type": "small_airport", + "name": "Russell County Airport", + "latitude_deg": "37.009700775146484", + "longitude_deg": "-85.10269927978516", + "elevation_ft": "1011", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Jamestown", + "scheduled_service": "no", + "gps_code": "KK24", + "local_code": "K24" + }, + { + "id": "20246", + "ident": "KK32", + "type": "small_airport", + "name": "Riverside Airport", + "latitude_deg": "37.74810028076172", + "longitude_deg": "-97.40670013427734", + "elevation_ft": "1335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wichita", + "scheduled_service": "no", + "gps_code": "KK32", + "local_code": "K32" + }, + { + "id": "20247", + "ident": "KK33", + "type": "small_airport", + "name": "Salem Memorial Airport", + "latitude_deg": "37.61520004272461", + "longitude_deg": "-91.60440063476562", + "elevation_ft": "1241", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "KK33", + "local_code": "K33" + }, + { + "id": "20248", + "ident": "KK36", + "type": "small_airport", + "name": "Onawa Municipal Airport", + "latitude_deg": "42.004398345947266", + "longitude_deg": "-96.10359954833984", + "elevation_ft": "1047", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Onawa", + "scheduled_service": "no", + "gps_code": "KK36", + "local_code": "K36" + }, + { + "id": "20249", + "ident": "KK38", + "type": "small_airport", + "name": "Washington County Memorial Airport", + "latitude_deg": "39.73350143", + "longitude_deg": "-97.04769897", + "elevation_ft": "1435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "KK38", + "local_code": "K38" + }, + { + "id": "20250", + "ident": "KK39", + "type": "small_airport", + "name": "St Clair Regional Airport", + "latitude_deg": "38.37590026855469", + "longitude_deg": "-90.970703125", + "elevation_ft": "656", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Clair", + "scheduled_service": "no", + "gps_code": "KK39", + "local_code": "K39" + }, + { + "id": "20251", + "ident": "KK44", + "type": "small_airport", + "name": "Beaver Municipal Airport", + "latitude_deg": "36.79890060424805", + "longitude_deg": "-100.52999877929688", + "elevation_ft": "2491", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Beaver", + "scheduled_service": "no", + "gps_code": "KK44", + "local_code": "K44" + }, + { + "id": "20253", + "ident": "KK49", + "type": "small_airport", + "name": "Texhoma Municipal Airport", + "latitude_deg": "36.5056", + "longitude_deg": "-101.814003", + "elevation_ft": "3462", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Texhoma", + "scheduled_service": "no", + "local_code": "K49", + "home_link": "https://okairports.com/texhoma-municipal-airport-nw", + "wikipedia_link": "https://en.wikipedia.org/wiki/Municipal_Airport_(Oklahoma)" + }, + { + "id": "20254", + "ident": "KK51", + "type": "small_airport", + "name": "Medicine Lodge Airport", + "latitude_deg": "37.266", + "longitude_deg": "-98.548052", + "elevation_ft": "1543", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Medicine Lodge", + "scheduled_service": "no", + "gps_code": "KK51", + "local_code": "K51" + }, + { + "id": "20255", + "ident": "KK52", + "type": "small_airport", + "name": "Captain Ben Smith Airfield - Monroe City Airport", + "latitude_deg": "39.634399", + "longitude_deg": "-91.726997", + "elevation_ft": "737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Monroe City", + "scheduled_service": "no", + "local_code": "K52", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monroe_City_Regional_Airport", + "keywords": "Monroe City Regional" + }, + { + "id": "20256", + "ident": "KK57", + "type": "small_airport", + "name": "Gould Peterson Municipal Airport", + "latitude_deg": "40.44580078", + "longitude_deg": "-95.3628006", + "elevation_ft": "913", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Tarkio", + "scheduled_service": "no", + "gps_code": "KK57", + "local_code": "K57" + }, + { + "id": "20257", + "ident": "KK58", + "type": "small_airport", + "name": "Harold Krier Field", + "latitude_deg": "37.16669845581055", + "longitude_deg": "-99.77510070800781", + "elevation_ft": "1951", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "KK58", + "local_code": "K58" + }, + { + "id": "20258", + "ident": "KK59", + "type": "small_airport", + "name": "Amelia Earhart Airport", + "latitude_deg": "39.570499420166016", + "longitude_deg": "-95.1802978515625", + "elevation_ft": "1073", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Atchison", + "scheduled_service": "no", + "gps_code": "KK59", + "local_code": "K59" + }, + { + "id": "20259", + "ident": "KK61", + "type": "small_airport", + "name": "Moritz Memorial Airport", + "latitude_deg": "39.47119903564453", + "longitude_deg": "-98.12879943847656", + "elevation_ft": "1416", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Beloit", + "scheduled_service": "no", + "gps_code": "KK61", + "local_code": "K61" + }, + { + "id": "20260", + "ident": "KK62", + "type": "small_airport", + "name": "Gene Snyder Airport", + "latitude_deg": "38.70420074", + "longitude_deg": "-84.39160156", + "elevation_ft": "899", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Falmouth", + "scheduled_service": "no", + "gps_code": "K62", + "local_code": "K62" + }, + { + "id": "20261", + "ident": "KK74", + "type": "small_airport", + "name": "Hamry Field", + "latitude_deg": "46.6487999", + "longitude_deg": "-96.99859619", + "elevation_ft": "947", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Kindred", + "scheduled_service": "no", + "gps_code": "KK74", + "local_code": "K74" + }, + { + "id": "20262", + "ident": "KK75", + "type": "small_airport", + "name": "Osborne Municipal Airport", + "latitude_deg": "39.42919921875", + "longitude_deg": "-98.67949676513672", + "elevation_ft": "1565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Osborne", + "scheduled_service": "no", + "gps_code": "KK75", + "local_code": "K75" + }, + { + "id": "20263", + "ident": "KK77", + "type": "small_airport", + "name": "Freedom Municipal Airport", + "latitude_deg": "36.758433", + "longitude_deg": "-99.102369", + "elevation_ft": "1517", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Freedom", + "scheduled_service": "no", + "gps_code": "KK77", + "local_code": "K77" + }, + { + "id": "20265", + "ident": "KK79", + "type": "small_airport", + "name": "Jetmore Municipal Airport", + "latitude_deg": "37.984500885009766", + "longitude_deg": "-99.89430236816406", + "elevation_ft": "2466", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Jetmore", + "scheduled_service": "no", + "gps_code": "KK79", + "local_code": "K79" + }, + { + "id": "20266", + "ident": "KK81", + "type": "small_airport", + "name": "Miami County Airport", + "latitude_deg": "38.53971", + "longitude_deg": "-94.920517", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Paola", + "scheduled_service": "no", + "gps_code": "KK81", + "local_code": "K81", + "keywords": "Osawatomie-Paola Municipal Airport" + }, + { + "id": "20267", + "ident": "KK82", + "type": "small_airport", + "name": "Smith Center Municipal Airport", + "latitude_deg": "39.76110076904297", + "longitude_deg": "-98.79340362548828", + "elevation_ft": "1799", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Smith Center", + "scheduled_service": "no", + "gps_code": "KK82", + "local_code": "K82" + }, + { + "id": "20268", + "ident": "KK83", + "type": "small_airport", + "name": "Sabetha Municipal Airport", + "latitude_deg": "39.90420150756836", + "longitude_deg": "-95.77940368652344", + "elevation_ft": "1330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Sabetha", + "scheduled_service": "no", + "gps_code": "KK83", + "local_code": "K83" + }, + { + "id": "20269", + "ident": "KK88", + "type": "small_airport", + "name": "Allen County Airport", + "latitude_deg": "37.87009811401367", + "longitude_deg": "-95.38639831542969", + "elevation_ft": "1015", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Iola", + "scheduled_service": "no", + "gps_code": "KK88", + "local_code": "K88" + }, + { + "id": "20270", + "ident": "KK89", + "type": "small_airport", + "name": "Macon Fowler Memorial Airport", + "latitude_deg": "39.728699", + "longitude_deg": "-92.4645", + "elevation_ft": "874", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Macon", + "scheduled_service": "no", + "gps_code": "KK89", + "local_code": "K89" + }, + { + "id": "20271", + "ident": "KK94", + "type": "small_airport", + "name": "Rush County Airport", + "latitude_deg": "38.548301696777344", + "longitude_deg": "-99.2886962890625", + "elevation_ft": "2070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "La Crosse", + "scheduled_service": "no", + "gps_code": "KK94", + "local_code": "K94" + }, + { + "id": "20273", + "ident": "KKB", + "type": "seaplane_base", + "name": "Kitoi Bay Seaplane Base", + "latitude_deg": "58.1908988953", + "longitude_deg": "-152.369995117", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kitoi Bay", + "scheduled_service": "no", + "gps_code": "KKB", + "iata_code": "KKB", + "local_code": "KKB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kitoi_Bay_Seaplane_Base" + }, + { + "id": "20274", + "ident": "KKI", + "type": "seaplane_base", + "name": "Akiachak Seaplane Base", + "latitude_deg": "60.9079017639", + "longitude_deg": "-161.434997559", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Akiachak", + "scheduled_service": "no", + "gps_code": "KKI", + "local_code": "KKI" + }, + { + "id": "20275", + "ident": "KKIC", + "type": "small_airport", + "name": "Mesa Del Rey Airport", + "latitude_deg": "36.2280006409", + "longitude_deg": "-121.122001648", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "King City", + "scheduled_service": "no", + "gps_code": "KKIC", + "iata_code": "KIC", + "local_code": "KIC", + "home_link": "http://www.kingcity.com/index.php?option=com_content&task=view&id=39&Itemid=112", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mesa_Del_Rey_Airport" + }, + { + "id": "20276", + "ident": "KKL", + "type": "seaplane_base", + "name": "Karluk Lake Seaplane Base", + "latitude_deg": "57.3670005798", + "longitude_deg": "-154.027999878", + "elevation_ft": "368", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Karluk Lake", + "scheduled_service": "no", + "gps_code": "KKL", + "iata_code": "KKL", + "local_code": "KKL" + }, + { + "id": "20277", + "ident": "KKLS", + "type": "medium_airport", + "name": "Southwest Washington Regional Airport", + "latitude_deg": "46.11800003049999", + "longitude_deg": "-122.898002625", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Kelso", + "scheduled_service": "no", + "gps_code": "KKLS", + "iata_code": "KLS", + "local_code": "KLS", + "home_link": "http://www.kelso.gov/Departments%20%2526%20Services/Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Southwest_Washington_Regional_Airport", + "keywords": "Molt Taylor Field, Kelso-Longview Regional" + }, + { + "id": "20278", + "ident": "KKNB", + "type": "small_airport", + "name": "Kanab Municipal Airport", + "latitude_deg": "37.01110076904297", + "longitude_deg": "-112.53099822998047", + "elevation_ft": "4868", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Kanab", + "scheduled_service": "no", + "gps_code": "KKNB", + "local_code": "KNB" + }, + { + "id": "20279", + "ident": "KKU", + "type": "small_airport", + "name": "Ekuk Airport", + "latitude_deg": "58.8111991882", + "longitude_deg": "-158.559005737", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ekuk", + "scheduled_service": "no", + "gps_code": "KKU", + "iata_code": "KKU", + "local_code": "KKU" + }, + { + "id": "20280", + "ident": "KL00", + "type": "small_airport", + "name": "Rosamond Skypark Airport", + "latitude_deg": "34.87080001831055", + "longitude_deg": "-118.20899963378906", + "elevation_ft": "2415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rosamond", + "scheduled_service": "no", + "gps_code": "KL00", + "local_code": "L00" + }, + { + "id": "20281", + "ident": "KL04", + "type": "small_airport", + "name": "Holtville Airport", + "latitude_deg": "32.840301513671875", + "longitude_deg": "-115.26699829101562", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Holtville", + "scheduled_service": "no", + "gps_code": "KL04", + "local_code": "L04" + }, + { + "id": "20282", + "ident": "KL05", + "type": "small_airport", + "name": "Kern Valley Airport", + "latitude_deg": "35.72829818725586", + "longitude_deg": "-118.41999816894531", + "elevation_ft": "2614", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Kernville", + "scheduled_service": "no", + "gps_code": "KL05", + "local_code": "L05", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kern_Valley_Airport" + }, + { + "id": "20283", + "ident": "KL06", + "type": "small_airport", + "name": "Furnace Creek Airport", + "latitude_deg": "36.463799", + "longitude_deg": "-116.880997", + "elevation_ft": "-210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Death Valley", + "scheduled_service": "no", + "iata_code": "DTH", + "local_code": "L06", + "wikipedia_link": "https://en.wikipedia.org/wiki/Furnace_Creek_Airport" + }, + { + "id": "20284", + "ident": "KL08", + "type": "small_airport", + "name": "Borrego Valley Airport", + "latitude_deg": "33.2589988708", + "longitude_deg": "-116.320999146", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Borrego Springs", + "scheduled_service": "no", + "gps_code": "L08", + "iata_code": "BXS", + "local_code": "L08", + "home_link": "http://www.borregospringschamber.com/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Borrego_Valley_Airport" + }, + { + "id": "20285", + "ident": "KL09", + "type": "small_airport", + "name": "Stovepipe Wells Airport", + "latitude_deg": "36.604099", + "longitude_deg": "-117.158997", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Death Valley", + "scheduled_service": "no", + "gps_code": "KL09", + "local_code": "L09", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stovepipe_Wells_Airport" + }, + { + "id": "20287", + "ident": "KL17", + "type": "small_airport", + "name": "Taft Kern County Airport", + "latitude_deg": "35.14147", + "longitude_deg": "-119.438624", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Taft", + "scheduled_service": "no", + "gps_code": "KL17", + "local_code": "L17", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taft_Airport" + }, + { + "id": "20288", + "ident": "KL19", + "type": "small_airport", + "name": "Wasco Kern County Airport", + "latitude_deg": "35.61970138549805", + "longitude_deg": "-119.35399627685547", + "elevation_ft": "313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Wasco", + "scheduled_service": "no", + "gps_code": "KL19", + "local_code": "L19", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wasco_Airport" + }, + { + "id": "20289", + "ident": "KL22", + "type": "small_airport", + "name": "Yucca Valley Airport", + "latitude_deg": "34.129659", + "longitude_deg": "-116.407411", + "elevation_ft": "3224", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Yucca Valley", + "scheduled_service": "no", + "gps_code": "KL22", + "local_code": "L22" + }, + { + "id": "20290", + "ident": "KL23", + "type": "small_airport", + "name": "Pahute Mesa Airstrip", + "latitude_deg": "37.102109", + "longitude_deg": "-116.312835", + "elevation_ft": "5068", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Mercury", + "scheduled_service": "no", + "local_code": "L23" + }, + { + "id": "20292", + "ident": "KL26", + "type": "small_airport", + "name": "Hesperia Airport", + "latitude_deg": "34.377201080322266", + "longitude_deg": "-117.31600189208984", + "elevation_ft": "3390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hesperia", + "scheduled_service": "no", + "gps_code": "KL26", + "local_code": "L26" + }, + { + "id": "20293", + "ident": "KL31", + "type": "small_airport", + "name": "St. Tammany Regional Airport", + "latitude_deg": "30.445101", + "longitude_deg": "-89.988899", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Covington", + "scheduled_service": "no", + "gps_code": "KL31", + "local_code": "L31", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Tammany_Regional_Airport", + "keywords": "LA08" + }, + { + "id": "20294", + "ident": "KL32", + "type": "small_airport", + "name": "Jonesville Airport", + "latitude_deg": "31.620191", + "longitude_deg": "-91.83436", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Jonesville", + "scheduled_service": "no", + "gps_code": "KL32", + "local_code": "L32", + "keywords": "LA18" + }, + { + "id": "20295", + "ident": "KL33", + "type": "small_airport", + "name": "Tensas Parish Airport", + "latitude_deg": "31.97742", + "longitude_deg": "-91.240471", + "elevation_ft": "74", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "St Joseph", + "scheduled_service": "no", + "gps_code": "KL33", + "local_code": "L33" + }, + { + "id": "20296", + "ident": "KL35", + "type": "small_airport", + "name": "Big Bear City Airport", + "latitude_deg": "34.2638015747", + "longitude_deg": "-116.856002808", + "elevation_ft": "6752", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Big Bear", + "scheduled_service": "no", + "gps_code": "L35", + "iata_code": "RBF", + "local_code": "L35", + "home_link": "http://www.bigbearcityairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Big_Bear_City_Airport" + }, + { + "id": "20297", + "ident": "KL38", + "type": "small_airport", + "name": "Louisiana Regional Airport", + "latitude_deg": "30.172701", + "longitude_deg": "-90.940598", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Gonzales", + "scheduled_service": "no", + "gps_code": "KREG", + "local_code": "REG", + "home_link": "http://www.laregionalairport.com/default.htm", + "keywords": "L38" + }, + { + "id": "20298", + "ident": "KL39", + "type": "small_airport", + "name": "Leesville Airport", + "latitude_deg": "31.16860008", + "longitude_deg": "-93.34249878", + "elevation_ft": "282", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Leesville", + "scheduled_service": "no", + "gps_code": "L39", + "local_code": "L39", + "home_link": "http://www.leesvilleairport.com/default.htm", + "keywords": "LA24" + }, + { + "id": "20299", + "ident": "KL41", + "type": "small_airport", + "name": "Marble Canyon Airport", + "latitude_deg": "36.8125", + "longitude_deg": "-111.64700317382812", + "elevation_ft": "3603", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Marble Canyon", + "scheduled_service": "no", + "gps_code": "KL41", + "local_code": "L41" + }, + { + "id": "20300", + "ident": "KL45", + "type": "medium_airport", + "name": "Bakersfield International Airport", + "latitude_deg": "35.324799", + "longitude_deg": "-118.996002", + "elevation_ft": "378", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bakersfield", + "scheduled_service": "no", + "local_code": "L45", + "home_link": "https://www.bakersfieldcity.us/565/Bakersfield-Municipal-Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bakersfield_Municipal_Airport" + }, + { + "id": "20301", + "ident": "KL47", + "type": "closed", + "name": "Olla Airport", + "latitude_deg": "31.895829", + "longitude_deg": "-92.218031", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Olla", + "scheduled_service": "no", + "local_code": "L47", + "keywords": "LA32" + }, + { + "id": "20302", + "ident": "KL62", + "type": "small_airport", + "name": "Elk Hills Buttonwillow Airport", + "latitude_deg": "35.352699279785156", + "longitude_deg": "-119.47899627685547", + "elevation_ft": "326", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Buttonwillow", + "scheduled_service": "no", + "gps_code": "KL62", + "local_code": "L62", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elk_Hills-Buttonwillow_Airport" + }, + { + "id": "20303", + "ident": "KL64", + "type": "small_airport", + "name": "Desert Center Airport", + "latitude_deg": "33.747609", + "longitude_deg": "-115.325117", + "elevation_ft": "559", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Desert Center", + "scheduled_service": "no", + "gps_code": "CN64", + "local_code": "CN64", + "wikipedia_link": "https://en.wikipedia.org/wiki/Desert_Center_Airport", + "keywords": "L64, desert center" + }, + { + "id": "20304", + "ident": "KL65", + "type": "small_airport", + "name": "Perris Valley Airport", + "latitude_deg": "33.76089859008789", + "longitude_deg": "-117.21800231933594", + "elevation_ft": "1413", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Perris", + "scheduled_service": "no", + "gps_code": "KL65", + "local_code": "L65" + }, + { + "id": "20305", + "ident": "KL66", + "type": "small_airport", + "name": "Pollock Municipal Airport", + "latitude_deg": "31.47750092", + "longitude_deg": "-92.46109772", + "elevation_ft": "203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Pollock", + "scheduled_service": "no", + "gps_code": "L66", + "local_code": "L66", + "keywords": "LA34" + }, + { + "id": "20306", + "ident": "KL67", + "type": "closed", + "name": "Rialto Municipal Miro Field", + "latitude_deg": "34.129299163800006", + "longitude_deg": "-117.402000427", + "elevation_ft": "1455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rialto", + "scheduled_service": "no", + "gps_code": "KL67", + "local_code": "L67", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rialto_Municipal_Airport" + }, + { + "id": "20307", + "ident": "KL70", + "type": "small_airport", + "name": "Agua Dulce Airpark", + "latitude_deg": "34.503616", + "longitude_deg": "-118.312926", + "elevation_ft": "2660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Agua Dulce", + "scheduled_service": "no", + "local_code": "L70", + "home_link": "http://www.l70airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Agua_Dulce_Airpark" + }, + { + "id": "20308", + "ident": "KL71", + "type": "small_airport", + "name": "California City Municipal Airport", + "latitude_deg": "35.15119934082031", + "longitude_deg": "-118.01699829101562", + "elevation_ft": "2454", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "California City", + "scheduled_service": "no", + "gps_code": "KL71", + "local_code": "L71", + "wikipedia_link": "https://en.wikipedia.org/wiki/California_City_Municipal_Airport" + }, + { + "id": "20309", + "ident": "KL72", + "type": "small_airport", + "name": "Trona Airport", + "latitude_deg": "35.8125", + "longitude_deg": "-117.327003479", + "elevation_ft": "1716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Trona", + "scheduled_service": "no", + "gps_code": "L72", + "iata_code": "TRH", + "local_code": "L72", + "home_link": "http://www.trona-ca.com/trona-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trona_Airport" + }, + { + "id": "20310", + "ident": "KL73", + "type": "small_airport", + "name": "Poso Kern County Airport", + "latitude_deg": "35.59659957885742", + "longitude_deg": "-119.12799835205078", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Famoso", + "scheduled_service": "no", + "gps_code": "KL73", + "local_code": "L73", + "wikipedia_link": "https://en.wikipedia.org/wiki/Poso_Airport" + }, + { + "id": "20312", + "ident": "KL77", + "type": "small_airport", + "name": "Chiriaco Summit Airport", + "latitude_deg": "33.664729", + "longitude_deg": "-115.710819", + "elevation_ft": "1713", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chiriaco Summit", + "scheduled_service": "no", + "gps_code": "KL77", + "local_code": "L77", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chiriaco_Summit_Airport", + "keywords": "chiriaco summit, shavers summit" + }, + { + "id": "20313", + "ident": "KL83", + "type": "small_airport", + "name": "Thibodaux Municipal Airport", + "latitude_deg": "29.747801", + "longitude_deg": "-90.832901", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Schriever", + "scheduled_service": "no", + "local_code": "L83", + "keywords": "LA37" + }, + { + "id": "20314", + "ident": "KL84", + "type": "closed", + "name": "Lost Hills Kern County Airport", + "latitude_deg": "35.6236", + "longitude_deg": "-119.685997", + "elevation_ft": "274", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lost Hills", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lost_Hills_Airport", + "keywords": "L84" + }, + { + "id": "20315", + "ident": "KL88", + "type": "small_airport", + "name": "New Cuyama Airport", + "latitude_deg": "34.9375", + "longitude_deg": "-119.68800354003906", + "elevation_ft": "2203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "New Cuyama", + "scheduled_service": "no", + "gps_code": "KL88", + "local_code": "L88", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Cuyama_Airport" + }, + { + "id": "20316", + "ident": "KL94", + "type": "small_airport", + "name": "Mountain Valley Airport", + "latitude_deg": "35.10110092163086", + "longitude_deg": "-118.4229965209961", + "elevation_ft": "4220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tehachapi", + "scheduled_service": "no", + "gps_code": "KL94", + "local_code": "L94" + }, + { + "id": "20317", + "ident": "KLAA", + "type": "medium_airport", + "name": "Southeast Colorado Regional Airport", + "latitude_deg": "38.066126", + "longitude_deg": "-102.690169", + "elevation_ft": "3706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Lamar", + "scheduled_service": "no", + "gps_code": "KLAA", + "iata_code": "LAA", + "local_code": "LAA", + "home_link": "http://www.ci.lamar.co.us/index.asp?Type=B_BASIC&SEC={C91FC3CC-5A83-4F9C-9AF7-A96F374C2EE5}&DE=", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lamar_Municipal_Airport", + "keywords": "Lamar Municipal" + }, + { + "id": "3627", + "ident": "KLAF", + "type": "medium_airport", + "name": "Purdue University Airport", + "latitude_deg": "40.4123", + "longitude_deg": "-86.936897", + "elevation_ft": "606", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "West Lafayette", + "scheduled_service": "no", + "gps_code": "KLAF", + "iata_code": "LAF", + "local_code": "LAF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Purdue_University_Airport" + }, + { + "id": "3628", + "ident": "KLAL", + "type": "medium_airport", + "name": "Lakeland Linder International Airport", + "latitude_deg": "27.988899", + "longitude_deg": "-82.018602", + "elevation_ft": "142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lakeland", + "scheduled_service": "no", + "gps_code": "KLAL", + "iata_code": "LAL", + "local_code": "LAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lakeland_Linder_Regional_Airport" + }, + { + "id": "20318", + "ident": "KLAM", + "type": "small_airport", + "name": "Los Alamos Airport", + "latitude_deg": "35.8797988892", + "longitude_deg": "-106.268997192", + "elevation_ft": "7171", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Los Alamos", + "scheduled_service": "no", + "gps_code": "KLAM", + "iata_code": "LAM", + "local_code": "LAM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Los_Alamos_County_Airport" + }, + { + "id": "3629", + "ident": "KLAN", + "type": "medium_airport", + "name": "Capital City Airport", + "latitude_deg": "42.77870178222656", + "longitude_deg": "-84.58740234375", + "elevation_ft": "861", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lansing", + "scheduled_service": "yes", + "gps_code": "KLAN", + "iata_code": "LAN", + "local_code": "LAN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lansing_Capital_City_Airport" + }, + { + "id": "3630", + "ident": "KLAR", + "type": "medium_airport", + "name": "Laramie Regional Airport", + "latitude_deg": "41.31209945678711", + "longitude_deg": "-105.67500305175781", + "elevation_ft": "7284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Laramie", + "scheduled_service": "yes", + "gps_code": "KLAR", + "iata_code": "LAR", + "local_code": "LAR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Laramie_Regional_Airport" + }, + { + "id": "3631", + "ident": "KLAS", + "type": "large_airport", + "name": "Harry Reid International Airport", + "latitude_deg": "36.083361", + "longitude_deg": "-115.151817", + "elevation_ft": "2181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "yes", + "gps_code": "KLAS", + "iata_code": "LAS", + "local_code": "LAS", + "home_link": "https://www.harryreidairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harry_Reid_International_Airport", + "keywords": "McCarran International Airport" + }, + { + "id": "20319", + "ident": "KLAW", + "type": "medium_airport", + "name": "Lawton Fort Sill Regional Airport", + "latitude_deg": "34.5676994324", + "longitude_deg": "-98.4166030884", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lawton", + "scheduled_service": "no", + "gps_code": "KLAW", + "iata_code": "LAW", + "local_code": "LAW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lawton-Fort_Sill_Regional_Airport" + }, + { + "id": "3632", + "ident": "KLAX", + "type": "large_airport", + "name": "Los Angeles International Airport", + "latitude_deg": "33.942501", + "longitude_deg": "-118.407997", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "yes", + "gps_code": "KLAX", + "iata_code": "LAX", + "local_code": "LAX", + "home_link": "https://www.flylax.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Los_Angeles_International_Airport" + }, + { + "id": "3633", + "ident": "KLBB", + "type": "medium_airport", + "name": "Lubbock Preston Smith International Airport", + "latitude_deg": "33.663601", + "longitude_deg": "-101.822998", + "elevation_ft": "3282", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lubbock", + "scheduled_service": "yes", + "gps_code": "KLBB", + "iata_code": "LBB", + "local_code": "LBB", + "home_link": "http://www.flylia.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lubbock_Preston_Smith_International_Airport" + }, + { + "id": "3634", + "ident": "KLBE", + "type": "medium_airport", + "name": "Arnold Palmer Regional Airport", + "latitude_deg": "40.275902", + "longitude_deg": "-79.4048", + "elevation_ft": "1199", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Latrobe", + "scheduled_service": "yes", + "gps_code": "KLBE", + "iata_code": "LBE", + "local_code": "LBE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arnold_Palmer_Regional_Airport" + }, + { + "id": "3635", + "ident": "KLBF", + "type": "medium_airport", + "name": "North Platte Regional Airport Lee Bird Field", + "latitude_deg": "41.12620163", + "longitude_deg": "-100.6839981", + "elevation_ft": "2777", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "North Platte", + "scheduled_service": "yes", + "gps_code": "KLBF", + "iata_code": "LBF", + "local_code": "LBF", + "wikipedia_link": "https://en.wikipedia.org/wiki/North_Platte_Regional_Airport" + }, + { + "id": "3636", + "ident": "KLBL", + "type": "medium_airport", + "name": "Liberal Mid-America Regional Airport", + "latitude_deg": "37.0442009", + "longitude_deg": "-100.9599991", + "elevation_ft": "2885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Liberal", + "scheduled_service": "yes", + "gps_code": "KLBL", + "iata_code": "LBL", + "local_code": "LBL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Liberal_Municipal_Airport" + }, + { + "id": "20320", + "ident": "KLBO", + "type": "small_airport", + "name": "Floyd W. Jones Lebanon Airport", + "latitude_deg": "37.64830017", + "longitude_deg": "-92.65239716", + "elevation_ft": "1321", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "KLBO", + "local_code": "LBO" + }, + { + "id": "20321", + "ident": "KLBR", + "type": "small_airport", + "name": "Clarksville Red River City-J D Trissell Field", + "latitude_deg": "33.59320068", + "longitude_deg": "-95.06359863", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Clarksville", + "scheduled_service": "no", + "gps_code": "KLBR", + "local_code": "LBR" + }, + { + "id": "20322", + "ident": "KLBT", + "type": "medium_airport", + "name": "Lumberton Regional Airport", + "latitude_deg": "34.6099014282", + "longitude_deg": "-79.05940246579999", + "elevation_ft": "126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Lumberton", + "scheduled_service": "no", + "gps_code": "KLBT", + "iata_code": "LBT", + "local_code": "LBT", + "home_link": "http://www.lumbertonmunicipalairport.com/default.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lumberton_Municipal_Airport" + }, + { + "id": "20323", + "ident": "KLBX", + "type": "medium_airport", + "name": "Texas Gulf Coast Regional Airport", + "latitude_deg": "29.108601", + "longitude_deg": "-95.462097", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Angleton", + "scheduled_service": "no", + "gps_code": "KLBX", + "iata_code": "LJN", + "local_code": "LBX", + "home_link": "http://www.flylbx.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Texas_Gulf_Coast_Regional_Airport", + "keywords": "Texas Gulf Coast Regional Airport" + }, + { + "id": "20324", + "ident": "KLCG", + "type": "small_airport", + "name": "Wayne Municipal Airport", + "latitude_deg": "42.24190139770508", + "longitude_deg": "-96.98139953613281", + "elevation_ft": "1431", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Wayne", + "scheduled_service": "no", + "gps_code": "KLCG", + "local_code": "LCG" + }, + { + "id": "3637", + "ident": "KLCH", + "type": "medium_airport", + "name": "Lake Charles Regional Airport", + "latitude_deg": "30.126100540161133", + "longitude_deg": "-93.22329711914062", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Charles", + "scheduled_service": "yes", + "gps_code": "KLCH", + "iata_code": "LCH", + "local_code": "LCH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_Charles_Regional_Airport" + }, + { + "id": "20325", + "ident": "KLCI", + "type": "small_airport", + "name": "Laconia Municipal Airport", + "latitude_deg": "43.572701", + "longitude_deg": "-71.4189", + "elevation_ft": "545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Laconia / Gilford", + "scheduled_service": "no", + "gps_code": "KLCI", + "iata_code": "LCI", + "local_code": "LCI", + "home_link": "http://www.laconiaairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Laconia_Municipal_Airport" + }, + { + "id": "3638", + "ident": "KLCK", + "type": "medium_airport", + "name": "Rickenbacker International Airport", + "latitude_deg": "39.813801", + "longitude_deg": "-82.927803", + "elevation_ft": "744", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "yes", + "gps_code": "KLCK", + "iata_code": "LCK", + "local_code": "LCK", + "home_link": "http://rickenbackerinlandport.com/en/rickenbacker-international-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rickenbacker_International_Airport", + "keywords": "Lockbourne Army Air Field" + }, + { + "id": "20326", + "ident": "KLCQ", + "type": "small_airport", + "name": "Lake City Gateway Airport", + "latitude_deg": "30.1819992065", + "longitude_deg": "-82.57689666750001", + "elevation_ft": "201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake City", + "scheduled_service": "no", + "gps_code": "KLCQ", + "iata_code": "LCQ", + "local_code": "LCQ", + "home_link": "http://www.lcfla.com/index.php/departments/gateway-airport-klcq", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_City_Gateway_Airport", + "keywords": "Lake City Municipal Airport" + }, + { + "id": "20327", + "ident": "KLDJ", + "type": "small_airport", + "name": "Linden Airport", + "latitude_deg": "40.617401123", + "longitude_deg": "-74.2445983887", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Linden", + "scheduled_service": "no", + "gps_code": "KLDJ", + "iata_code": "LDJ", + "local_code": "LDJ", + "home_link": "http://www.lindenairportnj.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Linden_Airport", + "keywords": "Manhattan, New York City, NYC" + }, + { + "id": "20328", + "ident": "KLDM", + "type": "small_airport", + "name": "Mason County Airport", + "latitude_deg": "43.96250153", + "longitude_deg": "-86.40789795", + "elevation_ft": "646", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ludington", + "scheduled_service": "no", + "gps_code": "KLDM", + "iata_code": "LDM", + "local_code": "LDM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mason_County_Airport_(Michigan)" + }, + { + "id": "346559", + "ident": "KLDR", + "type": "heliport", + "name": "USCG San Diego Heliport", + "latitude_deg": "32.726538", + "longitude_deg": "-117.181206", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no", + "gps_code": "KLDR", + "local_code": "LDR", + "home_link": "https://media.defense.gov/2017/Jul/04/2001772955/-1/-1/0/STATION_CG_ACTIVITIES_SAN_DIEGO.PDF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coast_Guard_Air_Station_San_Diego" + }, + { + "id": "3639", + "ident": "KLEB", + "type": "medium_airport", + "name": "Lebanon Municipal Airport", + "latitude_deg": "43.626098632799994", + "longitude_deg": "-72.30419921880001", + "elevation_ft": "603", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Lebanon", + "scheduled_service": "yes", + "gps_code": "KLEB", + "iata_code": "LEB", + "local_code": "LEB", + "home_link": "http://flyleb.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lebanon_Municipal_Airport_(New_Hampshire)" + }, + { + "id": "20329", + "ident": "KLEE", + "type": "medium_airport", + "name": "Leesburg International Airport", + "latitude_deg": "28.82309914", + "longitude_deg": "-81.80870056", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Leesburg", + "scheduled_service": "no", + "gps_code": "KLEE", + "iata_code": "LEE", + "local_code": "LEE", + "home_link": "http://www.leesburgflorida.gov/index.aspx?page=45", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leesburg_International_Airport", + "keywords": "Leesburg AAF" + }, + { + "id": "20330", + "ident": "KLEM", + "type": "small_airport", + "name": "Lemmon Municipal Airport", + "latitude_deg": "45.9187011719", + "longitude_deg": "-102.106002808", + "elevation_ft": "2571", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Lemmon", + "scheduled_service": "no", + "gps_code": "KLEM", + "iata_code": "LEM", + "local_code": "LEM", + "home_link": "http://www.lemmonsd.com/ray-kolb-field-airport.php", + "keywords": "Ray Kolb Field" + }, + { + "id": "20331", + "ident": "KLEW", + "type": "small_airport", + "name": "Auburn Lewiston Municipal Airport", + "latitude_deg": "44.048500061", + "longitude_deg": "-70.2835006714", + "elevation_ft": "288", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Auburn/Lewiston", + "scheduled_service": "no", + "gps_code": "KLEW", + "iata_code": "LEW", + "local_code": "LEW", + "home_link": "http://www.flytome.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Auburn/Lewiston_Municipal_Airport", + "keywords": "NAAF Lewiston" + }, + { + "id": "3640", + "ident": "KLEX", + "type": "medium_airport", + "name": "Blue Grass Airport", + "latitude_deg": "38.036499", + "longitude_deg": "-84.605904", + "elevation_ft": "979", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Lexington", + "scheduled_service": "yes", + "gps_code": "KLEX", + "iata_code": "LEX", + "local_code": "LEX", + "home_link": "http://www.bluegrassairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Blue_Grass_Airport" + }, + { + "id": "3641", + "ident": "KLFI", + "type": "medium_airport", + "name": "Langley Air Force Base", + "latitude_deg": "37.082901", + "longitude_deg": "-76.360497", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Hampton", + "scheduled_service": "no", + "gps_code": "KLFI", + "iata_code": "LFI", + "local_code": "LFI", + "home_link": "http://www.langleyafb.us/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Langley_Field", + "keywords": "Langley Field" + }, + { + "id": "20332", + "ident": "KLFK", + "type": "medium_airport", + "name": "Angelina County Airport", + "latitude_deg": "31.2339992523", + "longitude_deg": "-94.75", + "elevation_ft": "296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lufkin", + "scheduled_service": "no", + "gps_code": "KLFK", + "iata_code": "LFK", + "local_code": "LFK", + "home_link": "http://www.angelinacounty.net/departments/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Angelina_County_Airport" + }, + { + "id": "3642", + "ident": "KLFT", + "type": "medium_airport", + "name": "Lafayette Regional Airport", + "latitude_deg": "30.205299", + "longitude_deg": "-91.987602", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lafayette", + "scheduled_service": "yes", + "gps_code": "KLFT", + "iata_code": "LFT", + "local_code": "LFT", + "home_link": "http://www.lftairport.com/Home", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lafayette_Regional_Airport" + }, + { + "id": "3643", + "ident": "KLGA", + "type": "large_airport", + "name": "La Guardia Airport", + "latitude_deg": "40.777199", + "longitude_deg": "-73.872597", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "New York", + "scheduled_service": "yes", + "gps_code": "KLGA", + "iata_code": "LGA", + "local_code": "LGA", + "home_link": "https://www.laguardiaairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/LaGuardia_Airport", + "keywords": "Manhattan, New York City, NYC, Glenn H. Curtiss Airport, North Beach Airport, La Guardia" + }, + { + "id": "3644", + "ident": "KLGB", + "type": "medium_airport", + "name": "Long Beach Airport (Daugherty Field)", + "latitude_deg": "33.816523", + "longitude_deg": "-118.149891", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "yes", + "gps_code": "KLGB", + "iata_code": "LGB", + "local_code": "LGB", + "home_link": "http://www.lgb.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Long_Beach_Airport", + "keywords": "Daugherty Field" + }, + { + "id": "20334", + "ident": "KLGC", + "type": "small_airport", + "name": "LaGrange Callaway Airport", + "latitude_deg": "33.008873", + "longitude_deg": "-85.074331", + "elevation_ft": "693", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "LaGrange", + "scheduled_service": "no", + "gps_code": "KLGC", + "iata_code": "LGC", + "local_code": "LGC", + "home_link": "http://lagrangeairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/LaGrange_Callaway_Airport" + }, + { + "id": "20335", + "ident": "KLGD", + "type": "small_airport", + "name": "La Grande/Union County Airport", + "latitude_deg": "45.2901992798", + "longitude_deg": "-118.007003784", + "elevation_ft": "2717", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "La Grande", + "scheduled_service": "no", + "gps_code": "KLGD", + "iata_code": "LGD", + "local_code": "LGD", + "home_link": "http://union-county.org/public-works/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Grande/Union_County_Airport" + }, + { + "id": "20336", + "ident": "KLGF", + "type": "small_airport", + "name": "Laguna Army Airfield", + "latitude_deg": "32.86000061", + "longitude_deg": "-114.3970032", + "elevation_ft": "433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yuma Proving Ground(Yuma)", + "scheduled_service": "no", + "gps_code": "KLGF", + "iata_code": "LGF", + "local_code": "LGF", + "home_link": "http://www.yuma.army.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Laguna_Army_Airfield", + "keywords": "Yuma Proving Ground" + }, + { + "id": "20337", + "ident": "KLGU", + "type": "medium_airport", + "name": "Logan-Cache Airport", + "latitude_deg": "41.7911987305", + "longitude_deg": "-111.851997375", + "elevation_ft": "4457", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Logan", + "scheduled_service": "no", + "gps_code": "KLGU", + "iata_code": "LGU", + "local_code": "LGU", + "home_link": "http://logan-cacheairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Logan-Cache_Airport" + }, + { + "id": "20338", + "ident": "KLHB", + "type": "small_airport", + "name": "Hearne Municipal Airport", + "latitude_deg": "30.87179946899414", + "longitude_deg": "-96.62220001220703", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hearne", + "scheduled_service": "no", + "gps_code": "KLHB", + "local_code": "LHB" + }, + { + "id": "29668", + "ident": "KLHC", + "type": "closed", + "name": "Arlington Municipal Airport", + "latitude_deg": "35.28310012817383", + "longitude_deg": "-89.67250061035156", + "elevation_ft": "308", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "KLHC", + "iata_code": "LHC" + }, + { + "id": "20339", + "ident": "KLHM", + "type": "small_airport", + "name": "Lincoln Regional Karl Harder Field", + "latitude_deg": "38.909199", + "longitude_deg": "-121.350998", + "elevation_ft": "121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "KLHM", + "local_code": "LHM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lincoln_Regional_Airport_(California)", + "keywords": "O51" + }, + { + "id": "20340", + "ident": "KLHQ", + "type": "small_airport", + "name": "Fairfield County Airport", + "latitude_deg": "39.75559997558594", + "longitude_deg": "-82.65709686279297", + "elevation_ft": "868", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "KLHQ", + "local_code": "LHQ" + }, + { + "id": "20341", + "ident": "KLHV", + "type": "small_airport", + "name": "William T. Piper Memorial Airport", + "latitude_deg": "41.13560104", + "longitude_deg": "-77.42230225", + "elevation_ft": "556", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lock Haven", + "scheduled_service": "no", + "gps_code": "KLHV", + "iata_code": "LHV", + "local_code": "LHV", + "home_link": "http://www.piperairport.com/default.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/William_T._Piper_Memorial_Airport" + }, + { + "id": "20342", + "ident": "KLHW", + "type": "small_airport", + "name": "MidCoast Regional Airport at Wright Army Airfield", + "latitude_deg": "31.891237", + "longitude_deg": "-81.561003", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Hinesville", + "scheduled_service": "no", + "gps_code": "KLHW", + "iata_code": "LIY", + "local_code": "LHW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wright_Army_Airfield", + "keywords": "Fort Stewart" + }, + { + "id": "20343", + "ident": "KLHX", + "type": "small_airport", + "name": "La Junta Municipal Airport", + "latitude_deg": "38.04970169", + "longitude_deg": "-103.5090027", + "elevation_ft": "4229", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "La Junta", + "scheduled_service": "no", + "gps_code": "KLHX", + "local_code": "LHX" + }, + { + "id": "20344", + "ident": "KLHZ", + "type": "small_airport", + "name": "Triangle North Executive Airport", + "latitude_deg": "36.0233", + "longitude_deg": "-78.330299", + "elevation_ft": "369", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Louisburg", + "scheduled_service": "no", + "gps_code": "KLHZ", + "iata_code": "LFN", + "local_code": "LHZ", + "home_link": "http://www.franklincountync.us/services/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Triangle_North_Executive_Airport", + "keywords": "2N9, Franklin County Airport" + }, + { + "id": "20345", + "ident": "KLIC", + "type": "small_airport", + "name": "Limon Municipal Airport", + "latitude_deg": "39.274799346900004", + "longitude_deg": "-103.666000366", + "elevation_ft": "5374", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Limon", + "scheduled_service": "no", + "gps_code": "KLIC", + "iata_code": "LIC", + "local_code": "LIC" + }, + { + "id": "3645", + "ident": "KLIT", + "type": "medium_airport", + "name": "Bill & Hillary Clinton National Airport/Adams Field", + "latitude_deg": "34.729582", + "longitude_deg": "-92.223728", + "elevation_ft": "262", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Little Rock", + "scheduled_service": "yes", + "gps_code": "KLIT", + "iata_code": "LIT", + "local_code": "LIT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Little_Rock_National_Airport" + }, + { + "id": "20346", + "ident": "KLIU", + "type": "small_airport", + "name": "Littlefield Municipal Airport", + "latitude_deg": "33.923901", + "longitude_deg": "-102.387001", + "elevation_ft": "3616", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Littlefield", + "scheduled_service": "no", + "gps_code": "KLIU", + "local_code": "LIU", + "keywords": "Q00" + }, + { + "id": "20347", + "ident": "KLJF", + "type": "small_airport", + "name": "Litchfield Municipal Airport", + "latitude_deg": "45.09709930419922", + "longitude_deg": "-94.5073013305664", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Litchfield", + "scheduled_service": "no", + "gps_code": "KLJF", + "local_code": "LJF" + }, + { + "id": "338293", + "ident": "KLJN", + "type": "closed", + "name": "Lake Jackson Dow Airport", + "latitude_deg": "29.03901", + "longitude_deg": "-95.4565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lake Jackson", + "scheduled_service": "no", + "keywords": "LJN, KLJN" + }, + { + "id": "20348", + "ident": "KLKP", + "type": "small_airport", + "name": "Lake Placid Airport", + "latitude_deg": "44.2644996643", + "longitude_deg": "-73.96189880370001", + "elevation_ft": "1747", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Lake Placid", + "scheduled_service": "no", + "gps_code": "KLKP", + "iata_code": "LKP", + "local_code": "LKP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_Placid_Airport" + }, + { + "id": "20349", + "ident": "KLKR", + "type": "small_airport", + "name": "Lancaster County-Mc Whirter Field", + "latitude_deg": "34.72290039", + "longitude_deg": "-80.854599", + "elevation_ft": "486", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "KLKR", + "local_code": "LKR" + }, + { + "id": "20350", + "ident": "KLKU", + "type": "small_airport", + "name": "Louisa County Airport / Freeman Field", + "latitude_deg": "38.0098", + "longitude_deg": "-77.9701", + "elevation_ft": "493", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Louisa", + "scheduled_service": "no", + "gps_code": "KLKU", + "iata_code": "LOW", + "local_code": "LKU", + "home_link": "http://www.yeslouisa.com/business-in-louisa/transportation-infrastructure/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Louisa_County_Airport" + }, + { + "id": "20351", + "ident": "KLKV", + "type": "small_airport", + "name": "Lake County Airport", + "latitude_deg": "42.161098480199996", + "longitude_deg": "-120.399002075", + "elevation_ft": "4733", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Lakeview", + "scheduled_service": "no", + "gps_code": "KLKV", + "iata_code": "LKV", + "local_code": "LKV", + "home_link": "http://www.lakecountyor.org/government/airport/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_County_Airport_(Oregon)" + }, + { + "id": "20352", + "ident": "KLLJ", + "type": "small_airport", + "name": "Challis Airport", + "latitude_deg": "44.522999", + "longitude_deg": "-114.218002", + "elevation_ft": "5072", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Challis", + "scheduled_service": "no", + "gps_code": "KLLJ", + "iata_code": "CHL", + "local_code": "LLJ", + "home_link": "http://itd.idaho.gov/aero/Facility%20Directory/launchAirportData.asp?value=LLJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Challis_Airport", + "keywords": "U15" + }, + { + "id": "20353", + "ident": "KLLN", + "type": "small_airport", + "name": "Levelland Municipal Airport", + "latitude_deg": "33.5525016784668", + "longitude_deg": "-102.37200164794922", + "elevation_ft": "3514", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Levelland", + "scheduled_service": "no", + "gps_code": "KLLN", + "local_code": "LLN" + }, + { + "id": "20354", + "ident": "KLLQ", + "type": "medium_airport", + "name": "Monticello Municipal Ellis Field", + "latitude_deg": "33.638599", + "longitude_deg": "-91.750999", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Monticello", + "scheduled_service": "no", + "gps_code": "KLLQ", + "local_code": "LLQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monticello_Municipal_Airport_(Arkansas)", + "keywords": "M76" + }, + { + "id": "20692", + "ident": "KLLR", + "type": "small_airport", + "name": "Little River Airport", + "latitude_deg": "39.262001037597656", + "longitude_deg": "-123.75399780273438", + "elevation_ft": "572", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Little River", + "scheduled_service": "no", + "gps_code": "KLLR", + "local_code": "LLR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Little_River_Airport", + "keywords": "Formerly O48" + }, + { + "id": "20355", + "ident": "KLLU", + "type": "small_airport", + "name": "Lamar Municipal Airport", + "latitude_deg": "37.487246", + "longitude_deg": "-94.313298", + "elevation_ft": "1009", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lamar", + "scheduled_service": "no", + "gps_code": "KLLU", + "local_code": "LLU" + }, + { + "id": "21632", + "ident": "KLMO", + "type": "small_airport", + "name": "Vance Brand Airport", + "latitude_deg": "40.1637001", + "longitude_deg": "-105.163002", + "elevation_ft": "5055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Longmont", + "scheduled_service": "no", + "gps_code": "KLMO", + "local_code": "LMO", + "keywords": "AMR, 2V2" + }, + { + "id": "20356", + "ident": "KLMS", + "type": "small_airport", + "name": "Louisville Winston County Airport", + "latitude_deg": "33.1461982727", + "longitude_deg": "-89.0625", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "KLMS", + "iata_code": "LMS", + "local_code": "LMS" + }, + { + "id": "3646", + "ident": "KLMT", + "type": "medium_airport", + "name": "Crater Lake-Klamath Regional Airport", + "latitude_deg": "42.156101", + "longitude_deg": "-121.733002", + "elevation_ft": "4095", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Klamath Falls", + "scheduled_service": "yes", + "gps_code": "KLMT", + "iata_code": "LMT", + "local_code": "LMT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Klamath_Falls_Airport", + "keywords": "Klamath Falls Airport" + }, + { + "id": "20357", + "ident": "KLNA", + "type": "small_airport", + "name": "Palm Beach County Park Airport", + "latitude_deg": "26.59300041", + "longitude_deg": "-80.08509827", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "West Palm Beach", + "scheduled_service": "no", + "gps_code": "KLNA", + "iata_code": "LNA", + "local_code": "LNA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palm_Beach_County_Park_Airport" + }, + { + "id": "20358", + "ident": "KLNC", + "type": "small_airport", + "name": "Lancaster Airport", + "latitude_deg": "32.577564", + "longitude_deg": "-96.717494", + "elevation_ft": "501", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "KLNC", + "local_code": "LNC" + }, + { + "id": "20359", + "ident": "KLND", + "type": "medium_airport", + "name": "Hunt Field", + "latitude_deg": "42.815201", + "longitude_deg": "-108.730003", + "elevation_ft": "5586", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Lander", + "scheduled_service": "no", + "gps_code": "KLND", + "iata_code": "LND", + "local_code": "LND" + }, + { + "id": "3647", + "ident": "KLNK", + "type": "medium_airport", + "name": "Lincoln Airport", + "latitude_deg": "40.85100173950195", + "longitude_deg": "-96.75920104980469", + "elevation_ft": "1219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Lincoln", + "scheduled_service": "yes", + "gps_code": "KLNK", + "iata_code": "LNK", + "local_code": "LNK", + "home_link": "http://www.lincolnairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lincoln_Airport_%28Nebraska%29", + "keywords": "Lincoln Army Air Field, Lincoln Air Force Base, 155th Air Refueling Wing" + }, + { + "id": "20360", + "ident": "KLNL", + "type": "small_airport", + "name": "Kings Land O' Lakes Airport", + "latitude_deg": "46.15399933", + "longitude_deg": "-89.21209717", + "elevation_ft": "1704", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Land O' Lakes", + "scheduled_service": "no", + "gps_code": "KLNL", + "local_code": "LNL" + }, + { + "id": "20361", + "ident": "KLNN", + "type": "small_airport", + "name": "Lake County Executive Airport", + "latitude_deg": "41.683998", + "longitude_deg": "-81.389702", + "elevation_ft": "626", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Willoughby", + "scheduled_service": "no", + "gps_code": "KLNN", + "iata_code": "LNN", + "local_code": "LNN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Willoughby_Lost_Nation_Municipal_Airport", + "keywords": "Willoughby Lost Nation Municipal" + }, + { + "id": "20362", + "ident": "KLNP", + "type": "small_airport", + "name": "Lonesome Pine Airport", + "latitude_deg": "36.9874992371", + "longitude_deg": "-82.5299987793", + "elevation_ft": "2684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Wise", + "scheduled_service": "no", + "gps_code": "KLNP", + "iata_code": "LNP", + "local_code": "LNP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lonesome_Pine_Airport" + }, + { + "id": "20363", + "ident": "KLNR", + "type": "small_airport", + "name": "Tri-County Regional Airport", + "latitude_deg": "43.2117004395", + "longitude_deg": "-90.181602478", + "elevation_ft": "717", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Lone Rock", + "scheduled_service": "no", + "gps_code": "KLNR", + "iata_code": "LNR", + "local_code": "LNR" + }, + { + "id": "3648", + "ident": "KLNS", + "type": "medium_airport", + "name": "Lancaster Airport", + "latitude_deg": "40.121700286865234", + "longitude_deg": "-76.29609680175781", + "elevation_ft": "403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lancaster", + "scheduled_service": "yes", + "gps_code": "KLNS", + "iata_code": "LNS", + "local_code": "LNS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lancaster_Airport_(Pennsylvania)" + }, + { + "id": "20364", + "ident": "KLOL", + "type": "medium_airport", + "name": "Derby Field", + "latitude_deg": "40.0663986206", + "longitude_deg": "-118.565002441", + "elevation_ft": "3904", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Lovelock", + "scheduled_service": "no", + "gps_code": "KLOL", + "iata_code": "LOL", + "local_code": "LOL", + "home_link": "http://pershingcounty.net/index.php/Derby-Field-Airport/derby-field-airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Derby_Field" + }, + { + "id": "20365", + "ident": "KLOM", + "type": "small_airport", + "name": "Wings Field", + "latitude_deg": "40.1375007629", + "longitude_deg": "-75.2650985718", + "elevation_ft": "302", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "KLOM", + "iata_code": "BBX", + "local_code": "LOM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wings_Field" + }, + { + "id": "20366", + "ident": "KLOT", + "type": "small_airport", + "name": "Lewis University Airport", + "latitude_deg": "41.6072998", + "longitude_deg": "-88.09619904", + "elevation_ft": "679", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago/Romeoville", + "scheduled_service": "no", + "gps_code": "KLOT", + "iata_code": "LOT", + "local_code": "LOT", + "home_link": "http://www.flylot.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lewis_University_Airport", + "keywords": "Lewis Lockport Airport," + }, + { + "id": "3649", + "ident": "KLOU", + "type": "medium_airport", + "name": "Bowman Field", + "latitude_deg": "38.2280006409", + "longitude_deg": "-85.6636962891", + "elevation_ft": "546", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "KLOU", + "iata_code": "LOU", + "local_code": "LOU", + "home_link": "http://www.flylouisville.com/bowman-field/fast-facts/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bowman_Field_(airport)" + }, + { + "id": "3650", + "ident": "KLOZ", + "type": "medium_airport", + "name": "London-Corbin Airport/Magee Field", + "latitude_deg": "37.0821990967", + "longitude_deg": "-84.08489990230001", + "elevation_ft": "1212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "London", + "scheduled_service": "no", + "gps_code": "KLOZ", + "iata_code": "LOZ", + "local_code": "LOZ", + "home_link": "http://www.london-corbinairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/London-Corbin_Airport" + }, + { + "id": "20367", + "ident": "KLPC", + "type": "small_airport", + "name": "Lompoc Airport", + "latitude_deg": "34.665599823", + "longitude_deg": "-120.468002319", + "elevation_ft": "88", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lompoc", + "scheduled_service": "no", + "gps_code": "KLPC", + "iata_code": "LPC", + "local_code": "LPC", + "home_link": "http://www.cityoflompoc.com/transit/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lompoc_Airport" + }, + { + "id": "20368", + "ident": "KLPR", + "type": "small_airport", + "name": "Lorain County Regional Airport", + "latitude_deg": "41.34429932", + "longitude_deg": "-82.17759705", + "elevation_ft": "793", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lorain/Elyria", + "scheduled_service": "no", + "gps_code": "KLPR", + "local_code": "LPR" + }, + { + "id": "20369", + "ident": "KLQK", + "type": "small_airport", + "name": "Pickens County Airport", + "latitude_deg": "34.8100013733", + "longitude_deg": "-82.70290374759999", + "elevation_ft": "1013", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Pickens", + "scheduled_service": "no", + "gps_code": "KLQK", + "iata_code": "LQK", + "local_code": "LQK", + "home_link": "http://www.co.pickens.sc.us/Pickens%20County%20Airport/default.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pickens_County_Airport_(South_Carolina)" + }, + { + "id": "20370", + "ident": "KLQR", + "type": "small_airport", + "name": "Larned Pawnee County Airport", + "latitude_deg": "38.20859909", + "longitude_deg": "-99.08599854", + "elevation_ft": "2012", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Larned", + "scheduled_service": "no", + "gps_code": "KLQR", + "local_code": "LQR" + }, + { + "id": "3651", + "ident": "KLRD", + "type": "medium_airport", + "name": "Laredo International Airport", + "latitude_deg": "27.543800354003906", + "longitude_deg": "-99.46160125732422", + "elevation_ft": "508", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laredo", + "scheduled_service": "yes", + "gps_code": "KLRD", + "iata_code": "LRD", + "local_code": "LRD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Laredo_International_Airport" + }, + { + "id": "3652", + "ident": "KLRF", + "type": "medium_airport", + "name": "Little Rock Air Force Base", + "latitude_deg": "34.916900634799994", + "longitude_deg": "-92.14969635010002", + "elevation_ft": "311", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "KLRF", + "iata_code": "LRF", + "local_code": "LRF", + "home_link": "http://www.littlerock.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Little_Rock_Air_Force_Base" + }, + { + "id": "20371", + "ident": "KLRG", + "type": "small_airport", + "name": "Lincoln Regional Airport", + "latitude_deg": "45.36220169067383", + "longitude_deg": "-68.53469848632812", + "elevation_ft": "208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "KLRG", + "local_code": "LRG" + }, + { + "id": "20372", + "ident": "KLRJ", + "type": "small_airport", + "name": "Le Mars Municipal Airport", + "latitude_deg": "42.77799988", + "longitude_deg": "-96.1937027", + "elevation_ft": "1197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Le Mars", + "scheduled_service": "no", + "gps_code": "KLRJ", + "iata_code": "LRJ", + "local_code": "LRJ", + "home_link": "http://www.lemarsiowa.com/citygov/airport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Le_Mars_Municipal_Airport", + "keywords": "http://www.lemarsiowa.com/citygov/airport.htm" + }, + { + "id": "20373", + "ident": "KLRO", + "type": "small_airport", + "name": "Mt Pleasant Regional-Faison field", + "latitude_deg": "32.89780045", + "longitude_deg": "-79.78289795", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Mount Pleasant", + "scheduled_service": "no", + "gps_code": "KLRO", + "local_code": "LRO" + }, + { + "id": "3653", + "ident": "KLRU", + "type": "medium_airport", + "name": "Las Cruces International Airport", + "latitude_deg": "32.289398193359375", + "longitude_deg": "-106.9219970703125", + "elevation_ft": "4456", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Las Cruces", + "scheduled_service": "no", + "gps_code": "KLRU", + "iata_code": "LRU", + "local_code": "LRU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Las_Cruces_International_Airport" + }, + { + "id": "20374", + "ident": "KLRY", + "type": "small_airport", + "name": "Lawrence Smith Memorial Airport", + "latitude_deg": "38.609863", + "longitude_deg": "-94.343548", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Harrisonville", + "scheduled_service": "no", + "gps_code": "KLRY", + "local_code": "LRY" + }, + { + "id": "20375", + "ident": "KLSB", + "type": "small_airport", + "name": "Lordsburg Municipal Airport", + "latitude_deg": "32.3334999084", + "longitude_deg": "-108.692001343", + "elevation_ft": "4289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Lordsburg", + "scheduled_service": "no", + "gps_code": "KLSB", + "iata_code": "LSB", + "local_code": "LSB" + }, + { + "id": "3654", + "ident": "KLSE", + "type": "medium_airport", + "name": "La Crosse Regional Airport", + "latitude_deg": "43.879002", + "longitude_deg": "-91.256699", + "elevation_ft": "655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "La Crosse", + "scheduled_service": "yes", + "gps_code": "KLSE", + "iata_code": "LSE", + "local_code": "LSE", + "home_link": "http://www.lseairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Crosse_Municipal_Airport", + "keywords": "airport, regional" + }, + { + "id": "3655", + "ident": "KLSF", + "type": "medium_airport", + "name": "Lawson Army Air Field (Fort Benning)", + "latitude_deg": "32.337299346900004", + "longitude_deg": "-84.9913024902", + "elevation_ft": "232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fort Benning(Columbus)", + "scheduled_service": "no", + "gps_code": "KLSF", + "iata_code": "LSF", + "local_code": "LSF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lawson_Army_Airfield" + }, + { + "id": "20376", + "ident": "KLSK", + "type": "small_airport", + "name": "Lusk Municipal Airport", + "latitude_deg": "42.753799438499996", + "longitude_deg": "-104.404998779", + "elevation_ft": "4964", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Lusk", + "scheduled_service": "no", + "gps_code": "KLSK", + "iata_code": "LSK", + "local_code": "LSK", + "home_link": "http://www.townoflusk.org/index.asp?SEC=8DC74273-DA87-42DE-9B52-6431163B38FE&Type=B_BASIC" + }, + { + "id": "20377", + "ident": "KLSN", + "type": "small_airport", + "name": "Los Banos Municipal Airport", + "latitude_deg": "37.06290054", + "longitude_deg": "-120.8690033", + "elevation_ft": "121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Banos", + "scheduled_service": "no", + "gps_code": "KLSN", + "iata_code": "LSN", + "local_code": "LSN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Los_Banos_Municipal_Airport" + }, + { + "id": "3656", + "ident": "KLSV", + "type": "medium_airport", + "name": "Nellis Air Force Base", + "latitude_deg": "36.2361984253", + "longitude_deg": "-115.033996582", + "elevation_ft": "1870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "gps_code": "KLSV", + "iata_code": "LSV", + "local_code": "LSV", + "home_link": "http://www.nellis.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nellis_Air_Force_Base", + "keywords": "McCarran Field, Las Vegas AAF, Las Vegas AFB" + }, + { + "id": "3657", + "ident": "KLTS", + "type": "medium_airport", + "name": "Altus Air Force Base", + "latitude_deg": "34.667099", + "longitude_deg": "-99.266701", + "elevation_ft": "1382", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Altus", + "scheduled_service": "no", + "gps_code": "KLTS", + "iata_code": "LTS", + "local_code": "LTS", + "home_link": "http://www.altus.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Altus_Air_Force_Base" + }, + { + "id": "20378", + "ident": "KLTY", + "type": "small_airport", + "name": "Liberty County Airport", + "latitude_deg": "48.510702", + "longitude_deg": "-110.990997", + "elevation_ft": "3160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Chester", + "scheduled_service": "no", + "gps_code": "KLTY", + "local_code": "LTY", + "keywords": "4U3" + }, + { + "id": "20379", + "ident": "KLUD", + "type": "small_airport", + "name": "Decatur Municipal Airport", + "latitude_deg": "33.254601", + "longitude_deg": "-97.580597", + "elevation_ft": "1047", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Decatur", + "scheduled_service": "no", + "gps_code": "KLUD", + "local_code": "LUD", + "keywords": "8F7" + }, + { + "id": "3658", + "ident": "KLUF", + "type": "medium_airport", + "name": "Luke Air Force Base", + "latitude_deg": "33.535", + "longitude_deg": "-112.383003", + "elevation_ft": "1085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Glendale", + "scheduled_service": "no", + "gps_code": "KLUF", + "iata_code": "LUF", + "local_code": "LUF", + "home_link": "http://www.luke.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Luke_Air_Force_Base" + }, + { + "id": "20380", + "ident": "KLUG", + "type": "small_airport", + "name": "Ellington Airport", + "latitude_deg": "35.50699996948242", + "longitude_deg": "-86.80390167236328", + "elevation_ft": "717", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lewisburg", + "scheduled_service": "no", + "gps_code": "KLUG", + "local_code": "LUG" + }, + { + "id": "3659", + "ident": "KLUK", + "type": "medium_airport", + "name": "Cincinnati Municipal Airport Lunken Field", + "latitude_deg": "39.10329819", + "longitude_deg": "-84.41860199", + "elevation_ft": "483", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cincinnati", + "scheduled_service": "no", + "gps_code": "KLUK", + "iata_code": "LUK", + "local_code": "LUK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cincinnati_Municipal_Airport" + }, + { + "id": "20381", + "ident": "KLUL", + "type": "small_airport", + "name": "Hesler Noble Field", + "latitude_deg": "31.672599792499998", + "longitude_deg": "-89.172203064", + "elevation_ft": "238", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Laurel", + "scheduled_service": "no", + "gps_code": "KLUL", + "iata_code": "LUL", + "local_code": "LUL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hesler-Noble_Field" + }, + { + "id": "20382", + "ident": "KLUM", + "type": "small_airport", + "name": "Menomonie Municipal Score Field", + "latitude_deg": "44.89229965209961", + "longitude_deg": "-91.8678970336914", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Menomonie", + "scheduled_service": "no", + "gps_code": "KLUM", + "local_code": "LUM" + }, + { + "id": "18649", + "ident": "KLUX", + "type": "small_airport", + "name": "Laurens County Airport", + "latitude_deg": "34.50709915161133", + "longitude_deg": "-81.94719696044922", + "elevation_ft": "697", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Laurens", + "scheduled_service": "no", + "gps_code": "KLUX", + "local_code": "LUX", + "keywords": "Formerly 34A" + }, + { + "id": "20383", + "ident": "KLVJ", + "type": "small_airport", + "name": "Pearland Regional Airport", + "latitude_deg": "29.521299362182617", + "longitude_deg": "-95.24210357666016", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "KLVJ", + "local_code": "LVJ" + }, + { + "id": "20384", + "ident": "KLVK", + "type": "small_airport", + "name": "Livermore Municipal Airport", + "latitude_deg": "37.6934013367", + "longitude_deg": "-121.819999695", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Livermore", + "scheduled_service": "no", + "gps_code": "KLVK", + "iata_code": "LVK", + "local_code": "LVK", + "home_link": "http://www.cityoflivermore.net/citygov/pw/public_works_divisions/airport/default.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Livermore_Municipal_Airport" + }, + { + "id": "20385", + "ident": "KLVL", + "type": "small_airport", + "name": "Brunswick Municipal Airport", + "latitude_deg": "36.774229", + "longitude_deg": "-77.793846", + "elevation_ft": "329", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Lawrenceville", + "scheduled_service": "no", + "gps_code": "KLVL", + "iata_code": "LVL", + "local_code": "LVL" + }, + { + "id": "20386", + "ident": "KLVM", + "type": "medium_airport", + "name": "Mission Field", + "latitude_deg": "45.6994018555", + "longitude_deg": "-110.447998047", + "elevation_ft": "4660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Livingston", + "scheduled_service": "no", + "gps_code": "KLVM", + "iata_code": "LVM", + "local_code": "LVM", + "home_link": "http://www.parkcounty.org/site/Air_M_1.html#mf", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mission_Field" + }, + { + "id": "20387", + "ident": "KLVN", + "type": "small_airport", + "name": "Airlake Airport", + "latitude_deg": "44.627899169921875", + "longitude_deg": "-93.22810363769531", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Minneapolis", + "scheduled_service": "no", + "gps_code": "KLVN", + "local_code": "LVN" + }, + { + "id": "20388", + "ident": "KLVS", + "type": "medium_airport", + "name": "Las Vegas Municipal Airport", + "latitude_deg": "35.654202", + "longitude_deg": "-105.141998", + "elevation_ft": "6877", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Las Vegas", + "scheduled_service": "no", + "gps_code": "KLVS", + "iata_code": "LVS", + "local_code": "LVS", + "home_link": "http://www.lasvegasnm.gov/business/municipal_airport/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Las_Vegas_Municipal_Airport" + }, + { + "id": "20389", + "ident": "KLWA", + "type": "small_airport", + "name": "South Haven Area Regional Airport", + "latitude_deg": "42.3512", + "longitude_deg": "-86.255699", + "elevation_ft": "666", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "South Haven", + "scheduled_service": "no", + "gps_code": "KLWA", + "local_code": "LWA" + }, + { + "id": "20390", + "ident": "KLWB", + "type": "medium_airport", + "name": "Greenbrier Valley Airport", + "latitude_deg": "37.8582992554", + "longitude_deg": "-80.3994979858", + "elevation_ft": "2302", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Lewisburg", + "scheduled_service": "no", + "gps_code": "KLWB", + "iata_code": "LWB", + "local_code": "LWB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greenbrier_Valley_Airport" + }, + { + "id": "20391", + "ident": "KLWC", + "type": "small_airport", + "name": "Lawrence Municipal Airport", + "latitude_deg": "39.01119995", + "longitude_deg": "-95.21659851", + "elevation_ft": "833", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Lawrence", + "scheduled_service": "no", + "gps_code": "KLWC", + "iata_code": "LWC", + "local_code": "LWC", + "home_link": "http://www.lawrenceks.org/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lawrence_Municipal_Airport_(Kansas)" + }, + { + "id": "20392", + "ident": "KLWL", + "type": "small_airport", + "name": "Wells Municipal Airport/Harriet Field", + "latitude_deg": "41.117099762", + "longitude_deg": "-114.92199707", + "elevation_ft": "5772", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Wells", + "scheduled_service": "no", + "gps_code": "KLWL", + "iata_code": "LWL", + "local_code": "LWL", + "home_link": "http://www.cityofwellsnv.com/airport.shtml", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wells_Municipal_Airport_(Nevada)" + }, + { + "id": "3660", + "ident": "KLWM", + "type": "medium_airport", + "name": "Lawrence Municipal Airport", + "latitude_deg": "42.717201232899995", + "longitude_deg": "-71.1233978271", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Lawrence", + "scheduled_service": "no", + "gps_code": "KLWM", + "iata_code": "LWM", + "local_code": "LWM", + "home_link": "http://www.lawrencemunicipalairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lawrence_Municipal_Airport_(Massachusetts)" + }, + { + "id": "20393", + "ident": "KLWS", + "type": "medium_airport", + "name": "Lewiston Nez Perce County Airport", + "latitude_deg": "46.3745002746582", + "longitude_deg": "-117.01499938964844", + "elevation_ft": "1442", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Lewiston", + "scheduled_service": "yes", + "gps_code": "KLWS", + "iata_code": "LWS", + "local_code": "LWS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lewiston-Nez_Perce_County_Airport" + }, + { + "id": "3661", + "ident": "KLWT", + "type": "medium_airport", + "name": "Lewistown Municipal Airport", + "latitude_deg": "47.04930114746094", + "longitude_deg": "-109.46700286865234", + "elevation_ft": "4170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Lewistown", + "scheduled_service": "yes", + "gps_code": "KLWT", + "iata_code": "LWT", + "local_code": "LWT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lewistown_Municipal_Airport" + }, + { + "id": "20394", + "ident": "KLWV", + "type": "small_airport", + "name": "Lawrenceville Vincennes International Airport", + "latitude_deg": "38.7643013", + "longitude_deg": "-87.6054992676", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lawrenceville", + "scheduled_service": "no", + "gps_code": "KLWV", + "iata_code": "LWV", + "local_code": "LWV", + "home_link": "http://www.midamericanaircenter.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lawrenceville%E2%80%93Vincennes_International_Airport", + "keywords": "George AAF" + }, + { + "id": "20395", + "ident": "KLXL", + "type": "small_airport", + "name": "Little Falls-Morrison County-Lindbergh field", + "latitude_deg": "45.9496994", + "longitude_deg": "-94.34739685", + "elevation_ft": "1123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Little Falls", + "scheduled_service": "no", + "gps_code": "KLXL", + "local_code": "LXL" + }, + { + "id": "20396", + "ident": "KLXN", + "type": "small_airport", + "name": "Jim Kelly Field", + "latitude_deg": "40.791000366199995", + "longitude_deg": "-99.7772979736", + "elevation_ft": "2413", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "KLXN", + "iata_code": "LXN", + "local_code": "LXN", + "home_link": "http://www.cityoflex.com/index.aspx?page=46", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jim_Kelly_Field" + }, + { + "id": "20397", + "ident": "KLXT", + "type": "small_airport", + "name": "Lee's Summit Municipal Airport", + "latitude_deg": "38.95970154", + "longitude_deg": "-94.37139893", + "elevation_ft": "1004", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lee's Summit", + "scheduled_service": "no", + "gps_code": "KLXT", + "local_code": "LXT" + }, + { + "id": "20398", + "ident": "KLXV", + "type": "small_airport", + "name": "Lake County Airport", + "latitude_deg": "39.220298767100005", + "longitude_deg": "-106.317001343", + "elevation_ft": "9927", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Leadville", + "scheduled_service": "no", + "gps_code": "KLXV", + "iata_code": "LXV", + "local_code": "LXV", + "home_link": "http://www.lxvairport.com/home.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_County_Airport_(Colorado)" + }, + { + "id": "20399", + "ident": "KLXY", + "type": "small_airport", + "name": "Mexia Limestone County Airport", + "latitude_deg": "31.639799118041992", + "longitude_deg": "-96.51470184326172", + "elevation_ft": "544", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mexia", + "scheduled_service": "no", + "gps_code": "KLXY", + "local_code": "LXY" + }, + { + "id": "3662", + "ident": "KLYH", + "type": "medium_airport", + "name": "Lynchburg Regional Airport - Preston Glenn Field", + "latitude_deg": "37.326698", + "longitude_deg": "-79.200401", + "elevation_ft": "938", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Lynchburg", + "scheduled_service": "yes", + "gps_code": "KLYH", + "iata_code": "LYH", + "local_code": "LYH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lynchburg_Regional_Airport" + }, + { + "id": "20400", + "ident": "KLYO", + "type": "small_airport", + "name": "Lyons-Rice County Municipal Airport", + "latitude_deg": "38.34280014", + "longitude_deg": "-98.22689819", + "elevation_ft": "1691", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Lyons", + "scheduled_service": "no", + "gps_code": "KLYO", + "iata_code": "LYO", + "local_code": "LYO", + "home_link": "http://www.lyonsks.org/index.aspx?nid=915" + }, + { + "id": "21734", + "ident": "KLYV", + "type": "small_airport", + "name": "Quentin Aanenson Field", + "latitude_deg": "43.621200561523", + "longitude_deg": "-96.215797424316", + "elevation_ft": "1431", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Luverne", + "scheduled_service": "no", + "gps_code": "KLYV", + "local_code": "LYV", + "home_link": "http://www.cityofluverne.org/index.asp?SEC=C7633C8F-06BD-41B2-80B3-0711AB8CFAC1&Type=B_BASIC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Luverne_Municipal_Airport", + "keywords": "D19, Luverne Municipal Airport" + }, + { + "id": "12281", + "ident": "KLZD", + "type": "small_airport", + "name": "Danielson Airport", + "latitude_deg": "41.819698333740234", + "longitude_deg": "-71.9010009765625", + "elevation_ft": "238", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Danielson", + "scheduled_service": "no", + "gps_code": "KLZD", + "local_code": "LZD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Danielson_Airport", + "keywords": "Formerly 5B3" + }, + { + "id": "20401", + "ident": "KLZU", + "type": "small_airport", + "name": "Gwinnett County Briscoe Field", + "latitude_deg": "33.97809982", + "longitude_deg": "-83.96240234", + "elevation_ft": "1061", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Lawrenceville", + "scheduled_service": "no", + "gps_code": "KLZU", + "iata_code": "LZU", + "local_code": "LZU", + "home_link": "http://www.lzuairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gwinnett_County_Airport" + }, + { + "id": "20402", + "ident": "KLZZ", + "type": "small_airport", + "name": "Lampasas Airport", + "latitude_deg": "31.106199", + "longitude_deg": "-98.1959", + "elevation_ft": "1215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lampasas", + "scheduled_service": "no", + "gps_code": "KLZZ", + "local_code": "LZZ", + "keywords": "T28" + }, + { + "id": "20403", + "ident": "KM01", + "type": "small_airport", + "name": "General Dewitt Spain Airport", + "latitude_deg": "35.20069885", + "longitude_deg": "-90.05400085", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Memphis", + "scheduled_service": "no", + "gps_code": "KM01", + "local_code": "M01" + }, + { + "id": "20404", + "ident": "KM02", + "type": "small_airport", + "name": "Dickson Municipal Airport", + "latitude_deg": "36.12799835205078", + "longitude_deg": "-87.42980194091797", + "elevation_ft": "892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Dickson", + "scheduled_service": "no", + "gps_code": "KM02", + "local_code": "M02" + }, + { + "id": "20405", + "ident": "KM04", + "type": "small_airport", + "name": "Covington Municipal Airport", + "latitude_deg": "35.58340072631836", + "longitude_deg": "-89.58719635009766", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Covington", + "scheduled_service": "no", + "gps_code": "KM04", + "local_code": "M04" + }, + { + "id": "20406", + "ident": "KM05", + "type": "small_airport", + "name": "Caruthersville Memorial Airport", + "latitude_deg": "36.16910171508789", + "longitude_deg": "-89.67649841308594", + "elevation_ft": "268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Caruthersville", + "scheduled_service": "no", + "gps_code": "KM05", + "local_code": "M05" + }, + { + "id": "20407", + "ident": "KM08", + "type": "small_airport", + "name": "William L. Whitehurst Field", + "latitude_deg": "35.21450043", + "longitude_deg": "-89.04340363", + "elevation_ft": "499", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Bolivar", + "scheduled_service": "no", + "gps_code": "KM08", + "local_code": "M08" + }, + { + "id": "20408", + "ident": "KM11", + "type": "small_airport", + "name": "Copiah County Airport", + "latitude_deg": "31.901941", + "longitude_deg": "-90.366736", + "elevation_ft": "443", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Hazlehurst", + "scheduled_service": "no", + "gps_code": "KM11", + "local_code": "M11" + }, + { + "id": "20409", + "ident": "KM12", + "type": "small_airport", + "name": "Steele Municipal Airport", + "latitude_deg": "36.09590149", + "longitude_deg": "-89.86340332", + "elevation_ft": "258", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Steele", + "scheduled_service": "no", + "gps_code": "KM12", + "local_code": "M12" + }, + { + "id": "20410", + "ident": "KM13", + "type": "small_airport", + "name": "Poplarville Pearl River County Airport", + "latitude_deg": "30.785999298096", + "longitude_deg": "-89.504501342773", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Poplarville", + "scheduled_service": "no", + "gps_code": "M13", + "iata_code": "PCU", + "local_code": "M13" + }, + { + "id": "20411", + "ident": "KM15", + "type": "small_airport", + "name": "James Tucker Airport", + "latitude_deg": "35.595798", + "longitude_deg": "-87.876701", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Linden", + "scheduled_service": "no", + "local_code": "M15", + "keywords": "Perry County Airport" + }, + { + "id": "20412", + "ident": "KM16", + "type": "small_airport", + "name": "John Bell Williams Airport", + "latitude_deg": "32.30329895", + "longitude_deg": "-90.40850067", + "elevation_ft": "247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Raymond", + "scheduled_service": "no", + "gps_code": "KJVW", + "local_code": "JVW", + "wikipedia_link": "https://en.wikipedia.org/wiki/John_Bell_Williams_Airport", + "keywords": "M16" + }, + { + "id": "20413", + "ident": "KM17", + "type": "small_airport", + "name": "Bolivar Municipal Airport", + "latitude_deg": "37.596099853515625", + "longitude_deg": "-93.34770202636719", + "elevation_ft": "1092", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Bolivar", + "scheduled_service": "no", + "gps_code": "KM17", + "local_code": "M17" + }, + { + "id": "20414", + "ident": "KM18", + "type": "small_airport", + "name": "Hope Municipal Airport", + "latitude_deg": "33.72010040283203", + "longitude_deg": "-93.65879821777344", + "elevation_ft": "359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Hope", + "scheduled_service": "no", + "gps_code": "KM18", + "local_code": "M18" + }, + { + "id": "20415", + "ident": "KM19", + "type": "small_airport", + "name": "Newport Regional Airport", + "latitude_deg": "35.637699", + "longitude_deg": "-91.176397", + "elevation_ft": "239", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Newport", + "scheduled_service": "no", + "local_code": "M19", + "home_link": "http://newportarcity.org/home/city-departments/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Newport_Municipal_Airport_(Arkansas)", + "keywords": "Newport Municipal" + }, + { + "id": "20416", + "ident": "KM20", + "type": "small_airport", + "name": "Grayson County Airport", + "latitude_deg": "37.39950180053711", + "longitude_deg": "-86.26020050048828", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Leitchfield", + "scheduled_service": "no", + "gps_code": "KM20", + "local_code": "M20" + }, + { + "id": "20417", + "ident": "KM21", + "type": "small_airport", + "name": "Muhlenberg County Airport", + "latitude_deg": "37.226200103759766", + "longitude_deg": "-87.15640258789062", + "elevation_ft": "422", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "KM21", + "local_code": "M21" + }, + { + "id": "20418", + "ident": "KM22", + "type": "small_airport", + "name": "Bill Pugh Field", + "latitude_deg": "34.443746", + "longitude_deg": "-87.712159", + "elevation_ft": "723", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Russellville", + "scheduled_service": "no", + "local_code": "M22", + "wikipedia_link": "https://en.wikipedia.org/wiki/Russellville_Municipal_Airport", + "keywords": "Russellville Municipal" + }, + { + "id": "20419", + "ident": "KM23", + "type": "small_airport", + "name": "James H Easom Field", + "latitude_deg": "32.311798095703125", + "longitude_deg": "-89.13590240478516", + "elevation_ft": "369", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Newton", + "scheduled_service": "no", + "gps_code": "KM23", + "local_code": "M23" + }, + { + "id": "20420", + "ident": "KM24", + "type": "small_airport", + "name": "Dean Griffin Memorial Airport", + "latitude_deg": "30.84320068359375", + "longitude_deg": "-89.15979766845703", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Wiggins", + "scheduled_service": "no", + "gps_code": "KM24", + "local_code": "M24" + }, + { + "id": "20421", + "ident": "KM25", + "type": "small_airport", + "name": "Mayfield Graves County Airport", + "latitude_deg": "36.769100189199996", + "longitude_deg": "-88.5847015381", + "elevation_ft": "523", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Mayfield", + "scheduled_service": "no", + "gps_code": "M25", + "local_code": "M25" + }, + { + "id": "20422", + "ident": "KM27", + "type": "small_airport", + "name": "Waldron Municipal Airport", + "latitude_deg": "34.875999", + "longitude_deg": "-94.109299", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Waldron", + "scheduled_service": "no", + "local_code": "M27" + }, + { + "id": "20423", + "ident": "KM29", + "type": "small_airport", + "name": "Hassell Field", + "latitude_deg": "35.385101318359375", + "longitude_deg": "-87.96749877929688", + "elevation_ft": "401", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Clifton", + "scheduled_service": "no", + "gps_code": "KM29", + "local_code": "M29" + }, + { + "id": "20424", + "ident": "KM30", + "type": "small_airport", + "name": "Metropolis Municipal Airport", + "latitude_deg": "37.1859016418457", + "longitude_deg": "-88.75060272216797", + "elevation_ft": "384", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Metropolis", + "scheduled_service": "no", + "gps_code": "KM30", + "local_code": "M30" + }, + { + "id": "20425", + "ident": "KM31", + "type": "small_airport", + "name": "Arnold Field", + "latitude_deg": "35.90340042114258", + "longitude_deg": "-89.39730072021484", + "elevation_ft": "292", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Halls", + "scheduled_service": "no", + "gps_code": "KM31", + "local_code": "M31" + }, + { + "id": "20426", + "ident": "KM32", + "type": "small_airport", + "name": "Lake Village Municipal Airport", + "latitude_deg": "33.34600067138672", + "longitude_deg": "-91.3156967163086", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Lake Village", + "scheduled_service": "no", + "gps_code": "KM32", + "local_code": "M32" + }, + { + "id": "20427", + "ident": "KM33", + "type": "small_airport", + "name": "Music City Executive Airport", + "latitude_deg": "36.375076", + "longitude_deg": "-86.408414", + "elevation_ft": "583", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Gallatin", + "scheduled_service": "no", + "gps_code": "KXNX", + "local_code": "XNX", + "home_link": "https://www.musiccityexecutiveairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sumner_County_Regional_Airport", + "keywords": "M33, Sumner County Regional" + }, + { + "id": "20428", + "ident": "KM34", + "type": "small_airport", + "name": "Kentucky Dam State Park Airport", + "latitude_deg": "37.00979", + "longitude_deg": "-88.299403", + "elevation_ft": "351", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Calvert City", + "scheduled_service": "no", + "local_code": "M34", + "home_link": "https://www.stateparks.com/kentucky_dam_state_park_airport_in_kentucky.html", + "keywords": "Gilbertsville" + }, + { + "id": "20429", + "ident": "KM36", + "type": "small_airport", + "name": "Frank Federer Memorial Airport", + "latitude_deg": "34.88029861450195", + "longitude_deg": "-91.17639923095703", + "elevation_ft": "194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Brinkley", + "scheduled_service": "no", + "gps_code": "KM36", + "local_code": "M36" + }, + { + "id": "20430", + "ident": "KM37", + "type": "small_airport", + "name": "Ruleville Drew Airport", + "latitude_deg": "33.77640151977539", + "longitude_deg": "-90.5250015258789", + "elevation_ft": "137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Drew", + "scheduled_service": "no", + "gps_code": "KM37", + "local_code": "M37" + }, + { + "id": "20431", + "ident": "KM40", + "type": "small_airport", + "name": "Monroe County Airport", + "latitude_deg": "33.873699188232", + "longitude_deg": "-88.489700317383", + "elevation_ft": "226", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Aberdeen/Amory", + "scheduled_service": "no", + "gps_code": "M40", + "local_code": "M40", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monroe_County_Airport_(Mississippi)" + }, + { + "id": "20432", + "ident": "KM41", + "type": "small_airport", + "name": "Holly Springs Marshall County Airport", + "latitude_deg": "34.804298400878906", + "longitude_deg": "-89.52110290527344", + "elevation_ft": "553", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Holly Springs", + "scheduled_service": "no", + "gps_code": "KM41", + "local_code": "M41" + }, + { + "id": "20433", + "ident": "KM43", + "type": "small_airport", + "name": "Prentiss Jefferson Davis County Airport", + "latitude_deg": "31.59539986", + "longitude_deg": "-89.90619659", + "elevation_ft": "455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Prentiss", + "scheduled_service": "no", + "gps_code": "KM43", + "local_code": "M43" + }, + { + "id": "20434", + "ident": "KM44", + "type": "small_airport", + "name": "Houston Municipal Airport", + "latitude_deg": "33.89179992675781", + "longitude_deg": "-89.02369689941406", + "elevation_ft": "337", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "KM44", + "local_code": "M44" + }, + { + "id": "20435", + "ident": "KM45", + "type": "small_airport", + "name": "Alpine County Airport", + "latitude_deg": "38.734699249268", + "longitude_deg": "-119.76699829102", + "elevation_ft": "5867", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Markleeville", + "scheduled_service": "no", + "gps_code": "M45", + "local_code": "M45", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alpine_County_Airport", + "keywords": "Q82" + }, + { + "id": "20436", + "ident": "KM46", + "type": "small_airport", + "name": "Colstrip Airport", + "latitude_deg": "45.852901458740234", + "longitude_deg": "-106.70899963378906", + "elevation_ft": "3426", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Colstrip", + "scheduled_service": "no", + "gps_code": "KM46", + "local_code": "M46" + }, + { + "id": "20437", + "ident": "KM48", + "type": "small_airport", + "name": "Houston Memorial Airport", + "latitude_deg": "37.330101013183594", + "longitude_deg": "-91.97319793701172", + "elevation_ft": "1196", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "KM48", + "local_code": "M48" + }, + { + "id": "20438", + "ident": "KM50", + "type": "small_airport", + "name": "Boardman Airport", + "latitude_deg": "45.8148", + "longitude_deg": "-119.820999", + "elevation_ft": "396", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Boardman", + "scheduled_service": "no", + "local_code": "M50", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boardman_Airport", + "keywords": "OR33" + }, + { + "id": "20439", + "ident": "KM51", + "type": "small_airport", + "name": "Oktibbeha Airport", + "latitude_deg": "33.497501373291016", + "longitude_deg": "-88.6812973022461", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Starkville", + "scheduled_service": "no", + "gps_code": "KM51", + "local_code": "M51" + }, + { + "id": "20440", + "ident": "KM52", + "type": "small_airport", + "name": "Franklin Wilkins Airport", + "latitude_deg": "35.65129852294922", + "longitude_deg": "-88.37889862060547", + "elevation_ft": "514", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "KM52", + "local_code": "M52" + }, + { + "id": "20441", + "ident": "KM53", + "type": "small_airport", + "name": "Humboldt Municipal Airport", + "latitude_deg": "35.8022", + "longitude_deg": "-88.874901", + "elevation_ft": "421", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Humboldt", + "scheduled_service": "no", + "gps_code": "KM53", + "local_code": "M53" + }, + { + "id": "20442", + "ident": "KM54", + "type": "small_airport", + "name": "Lebanon Municipal Airport", + "latitude_deg": "36.19039917", + "longitude_deg": "-86.31569672", + "elevation_ft": "588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "KM54", + "local_code": "M54" + }, + { + "id": "20443", + "ident": "KM55", + "type": "small_airport", + "name": "Lamar County Airport", + "latitude_deg": "33.84669876098633", + "longitude_deg": "-88.1155014038086", + "elevation_ft": "463", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Vernon", + "scheduled_service": "no", + "gps_code": "KM55", + "local_code": "M55" + }, + { + "id": "20445", + "ident": "KM59", + "type": "small_airport", + "name": "Richton Perry County Airport", + "latitude_deg": "31.317399978637695", + "longitude_deg": "-88.93499755859375", + "elevation_ft": "167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Richton", + "scheduled_service": "no", + "gps_code": "KM59", + "local_code": "M59" + }, + { + "id": "20446", + "ident": "KM60", + "type": "small_airport", + "name": "Woodruff County Airport", + "latitude_deg": "35.27190017700195", + "longitude_deg": "-91.26969909667969", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Augusta", + "scheduled_service": "no", + "gps_code": "KM60", + "local_code": "M60" + }, + { + "id": "20447", + "ident": "KM65", + "type": "closed", + "name": "Wynne Municipal Airport", + "latitude_deg": "35.231602", + "longitude_deg": "-90.761597", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Wynne", + "scheduled_service": "no", + "keywords": "M65" + }, + { + "id": "20448", + "ident": "KM66", + "type": "small_airport", + "name": "Alfred Schroeder Field", + "latitude_deg": "38.343101501464844", + "longitude_deg": "-97.21420288085938", + "elevation_ft": "1434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "KM66", + "local_code": "M66" + }, + { + "id": "20449", + "ident": "KM70", + "type": "small_airport", + "name": "Pocahontas Municipal Airport", + "latitude_deg": "36.24549865722656", + "longitude_deg": "-90.9552001953125", + "elevation_ft": "273", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Pocahontas", + "scheduled_service": "no", + "gps_code": "KM70", + "local_code": "M70" + }, + { + "id": "20450", + "ident": "KM71", + "type": "small_airport", + "name": "Greensfield Airport", + "latitude_deg": "38.901798248291016", + "longitude_deg": "-90.96029663085938", + "elevation_ft": "549", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Moscow Mills", + "scheduled_service": "no", + "gps_code": "KM71", + "local_code": "M71" + }, + { + "id": "20451", + "ident": "KM72", + "type": "small_airport", + "name": "New Albany Union County Airport", + "latitude_deg": "34.54869842529297", + "longitude_deg": "-89.02420043945312", + "elevation_ft": "413", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "New Albany", + "scheduled_service": "no", + "gps_code": "KM72", + "local_code": "M72" + }, + { + "id": "20452", + "ident": "KM73", + "type": "small_airport", + "name": "Almyra Municipal Airport", + "latitude_deg": "34.41230010986328", + "longitude_deg": "-91.46630096435547", + "elevation_ft": "211", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Almyra", + "scheduled_service": "no", + "gps_code": "KM73", + "local_code": "M73" + }, + { + "id": "20453", + "ident": "KM75", + "type": "small_airport", + "name": "Malta Airport", + "latitude_deg": "48.366901397700005", + "longitude_deg": "-107.918998718", + "elevation_ft": "2254", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Malta", + "scheduled_service": "no", + "gps_code": "M75", + "iata_code": "MLK", + "local_code": "M75", + "wikipedia_link": "https://en.wikipedia.org/wiki/Malta_Airport_(Montana)" + }, + { + "id": "20454", + "ident": "KM77", + "type": "small_airport", + "name": "Howard County Airport", + "latitude_deg": "33.996700286865234", + "longitude_deg": "-93.83809661865234", + "elevation_ft": "553", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Nashville", + "scheduled_service": "no", + "gps_code": "KM77", + "local_code": "M77" + }, + { + "id": "20455", + "ident": "KM78", + "type": "small_airport", + "name": "Malvern Municipal Airport", + "latitude_deg": "34.33330154418945", + "longitude_deg": "-92.7614974975586", + "elevation_ft": "538", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Malvern", + "scheduled_service": "no", + "gps_code": "KM78", + "local_code": "M78" + }, + { + "id": "20456", + "ident": "KM79", + "type": "small_airport", + "name": "John H Hooks Jr Memorial Airport", + "latitude_deg": "32.485559", + "longitude_deg": "-91.772376", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Rayville", + "scheduled_service": "no", + "gps_code": "KM79", + "local_code": "M79" + }, + { + "id": "20457", + "ident": "KM80", + "type": "small_airport", + "name": "Scott Airport", + "latitude_deg": "32.41630172729492", + "longitude_deg": "-91.1489028930664", + "elevation_ft": "84", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Tallulah", + "scheduled_service": "no", + "gps_code": "KM80", + "local_code": "M80" + }, + { + "id": "20458", + "ident": "KM83", + "type": "small_airport", + "name": "Mccharen Field", + "latitude_deg": "33.58399963378906", + "longitude_deg": "-88.66670227050781", + "elevation_ft": "205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "West Point", + "scheduled_service": "no", + "gps_code": "KM83", + "local_code": "M83" + }, + { + "id": "20459", + "ident": "KM85", + "type": "small_airport", + "name": "Gideon Memorial Airport", + "latitude_deg": "36.44380187988281", + "longitude_deg": "-89.90380096435547", + "elevation_ft": "268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Gideon", + "scheduled_service": "no", + "gps_code": "KM85", + "local_code": "M85" + }, + { + "id": "20460", + "ident": "KM88", + "type": "closed", + "name": "Cornelia Fort Airpark", + "latitude_deg": "36.19029998779", + "longitude_deg": "-86.699699401855", + "elevation_ft": "418", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Nashville", + "scheduled_service": "no", + "gps_code": "KM88", + "local_code": "M88" + }, + { + "id": "20461", + "ident": "KM89", + "type": "small_airport", + "name": "Dexter B Florence Memorial Field", + "latitude_deg": "34.0998001099", + "longitude_deg": "-93.0661010742", + "elevation_ft": "182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Arkadelphia", + "scheduled_service": "no", + "gps_code": "KADF", + "local_code": "ADF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dexter_B._Florence_Memorial_Field", + "keywords": "M89" + }, + { + "id": "20462", + "ident": "KM90", + "type": "small_airport", + "name": "William Robert Johnston Municipal Airport", + "latitude_deg": "36.7585983276", + "longitude_deg": "-120.371002197", + "elevation_ft": "162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mendota", + "scheduled_service": "no", + "gps_code": "M90", + "local_code": "M90", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mendota_Airport", + "keywords": "Q84" + }, + { + "id": "20463", + "ident": "KM91", + "type": "small_airport", + "name": "Springfield Robertson County Airport", + "latitude_deg": "36.53720093", + "longitude_deg": "-86.92060089", + "elevation_ft": "706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "KM91", + "local_code": "M91" + }, + { + "id": "20464", + "ident": "KM93", + "type": "small_airport", + "name": "Houston County Airport", + "latitude_deg": "36.31316", + "longitude_deg": "-87.913969", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Mc Kinnon", + "scheduled_service": "no", + "gps_code": "KM93", + "local_code": "M93" + }, + { + "id": "20465", + "ident": "KM94", + "type": "small_airport", + "name": "Desert Aire Regional Airport", + "latitude_deg": "46.687401", + "longitude_deg": "-119.920998", + "elevation_ft": "586", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Mattawa", + "scheduled_service": "no", + "local_code": "M94" + }, + { + "id": "20466", + "ident": "KM95", + "type": "small_airport", + "name": "Richard Arthur Field", + "latitude_deg": "33.7122", + "longitude_deg": "-87.815002", + "elevation_ft": "357", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fayette", + "scheduled_service": "no", + "gps_code": "KM95", + "local_code": "M95", + "wikipedia_link": "https://en.wikipedia.org/wiki/Richard_Arthur_Field" + }, + { + "id": "20467", + "ident": "KM99", + "type": "closed", + "name": "Saline County/Watts Field", + "latitude_deg": "34.556599", + "longitude_deg": "-92.606903", + "elevation_ft": "318", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Benton", + "scheduled_service": "no", + "keywords": "M99" + }, + { + "id": "20468", + "ident": "KMAC", + "type": "small_airport", + "name": "Macon Downtown Airport", + "latitude_deg": "32.82210159", + "longitude_deg": "-83.56199646", + "elevation_ft": "437", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Macon", + "scheduled_service": "no", + "gps_code": "KMAC", + "iata_code": "MAC", + "local_code": "MAC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Macon_Downtown_Airport" + }, + { + "id": "20469", + "ident": "KMAE", + "type": "small_airport", + "name": "Madera Municipal Airport", + "latitude_deg": "36.9886016846", + "longitude_deg": "-120.111999512", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Madera", + "scheduled_service": "no", + "gps_code": "KMAE", + "iata_code": "MAE", + "local_code": "MAE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Madera_Municipal_Airport" + }, + { + "id": "3663", + "ident": "KMAF", + "type": "medium_airport", + "name": "Midland International Airport", + "latitude_deg": "31.9424991607666", + "longitude_deg": "-102.2020034790039", + "elevation_ft": "2871", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Midland", + "scheduled_service": "yes", + "gps_code": "KMAF", + "iata_code": "MAF", + "local_code": "MAF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Midland_International_Airport" + }, + { + "id": "20470", + "ident": "KMAI", + "type": "small_airport", + "name": "Marianna Municipal Airport", + "latitude_deg": "30.837799072265625", + "longitude_deg": "-85.18190002441406", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Marianna", + "scheduled_service": "no", + "gps_code": "KMAI", + "local_code": "MAI" + }, + { + "id": "20471", + "ident": "KMAL", + "type": "small_airport", + "name": "Malone Dufort Airport", + "latitude_deg": "44.85369873046875", + "longitude_deg": "-74.32890319824219", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Malone", + "scheduled_service": "no", + "gps_code": "KMAL", + "local_code": "MAL" + }, + { + "id": "20472", + "ident": "KMAO", + "type": "small_airport", + "name": "Marion County Airport", + "latitude_deg": "34.18119812011719", + "longitude_deg": "-79.33470153808594", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "KMAO", + "local_code": "MAO" + }, + { + "id": "20473", + "ident": "KMAW", + "type": "small_airport", + "name": "Malden Regional Airport", + "latitude_deg": "36.6006012", + "longitude_deg": "-89.99220276", + "elevation_ft": "294", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Malden", + "scheduled_service": "no", + "gps_code": "KMAW", + "iata_code": "MAW", + "local_code": "MAW", + "home_link": "http://www.maldenmo.com/airport_intro.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Malden_Regional_Airport", + "keywords": "Malden Airbase" + }, + { + "id": "302384", + "ident": "KMB", + "type": "small_airport", + "name": "Koinambe Airport", + "latitude_deg": "-5.4875", + "longitude_deg": "144.606944444", + "elevation_ft": "3000", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-JI", + "municipality": "Konambe", + "scheduled_service": "no", + "gps_code": "AYON", + "iata_code": "KMB", + "local_code": "KOE" + }, + { + "id": "20474", + "ident": "KMBG", + "type": "medium_airport", + "name": "Mobridge Municipal Airport", + "latitude_deg": "45.54650116", + "longitude_deg": "-100.4079971", + "elevation_ft": "1716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Mobridge", + "scheduled_service": "no", + "gps_code": "KMBG", + "iata_code": "MBG", + "local_code": "MBG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mobridge_Municipal_Airport" + }, + { + "id": "20475", + "ident": "KMBL", + "type": "small_airport", + "name": "Manistee County Blacker Airport", + "latitude_deg": "44.272738", + "longitude_deg": "-86.251945", + "elevation_ft": "621", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Manistee", + "scheduled_service": "no", + "gps_code": "KMBL", + "iata_code": "MBL", + "local_code": "MBL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manistee_County-Blacker_Airport" + }, + { + "id": "20476", + "ident": "KMBO", + "type": "small_airport", + "name": "Bruce Campbell Field", + "latitude_deg": "32.438702", + "longitude_deg": "-90.103104", + "elevation_ft": "326", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "KMBO", + "iata_code": "DXE", + "local_code": "MBO", + "home_link": "http://www.madisonthecity.com/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bruce_Campbell_Field", + "keywords": "Augustine Auxiliary Field" + }, + { + "id": "3664", + "ident": "KMBS", + "type": "medium_airport", + "name": "MBS International Airport", + "latitude_deg": "43.532902", + "longitude_deg": "-84.079597", + "elevation_ft": "668", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Saginaw", + "scheduled_service": "yes", + "gps_code": "KMBS", + "iata_code": "MBS", + "local_code": "MBS", + "home_link": "http://www.mbsairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/MBS_International_Airport", + "keywords": "Tri City Airport, Midland, Bay City" + }, + { + "id": "20477", + "ident": "KMBT", + "type": "small_airport", + "name": "City of Murfreesboro Airport", + "latitude_deg": "35.877499", + "longitude_deg": "-86.377502", + "elevation_ft": "614", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Murfreesboro", + "scheduled_service": "no", + "gps_code": "KMBT", + "local_code": "MBT", + "keywords": "Murfreesboro Municipal Airport" + }, + { + "id": "20478", + "ident": "KMBY", + "type": "small_airport", + "name": "Omar N Bradley Airport", + "latitude_deg": "39.464393", + "longitude_deg": "-92.428365", + "elevation_ft": "867", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Moberly", + "scheduled_service": "no", + "gps_code": "KMBY", + "iata_code": "MBY", + "local_code": "MBY", + "home_link": "http://www.moberlymo.org/Government/airport.html" + }, + { + "id": "3665", + "ident": "KMCB", + "type": "medium_airport", + "name": "McComb-Pike County Airport / John E Lewis Field", + "latitude_deg": "31.178499", + "longitude_deg": "-90.471901", + "elevation_ft": "413", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "McComb", + "scheduled_service": "no", + "gps_code": "KMCB", + "iata_code": "MCB", + "local_code": "MCB", + "wikipedia_link": "https://en.wikipedia.org/wiki/McComb%E2%80%93Pike_County_Airport" + }, + { + "id": "3666", + "ident": "KMCC", + "type": "medium_airport", + "name": "McClellan Airfield", + "latitude_deg": "38.667599", + "longitude_deg": "-121.401001", + "elevation_ft": "77", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sacramento", + "scheduled_service": "no", + "gps_code": "KMCC", + "iata_code": "MCC", + "local_code": "MCC", + "wikipedia_link": "https://en.wikipedia.org/wiki/McClellan_Airfield", + "keywords": "McClellan AFB" + }, + { + "id": "20479", + "ident": "KMCD", + "type": "small_airport", + "name": "Mackinac Island Airport", + "latitude_deg": "45.86489868", + "longitude_deg": "-84.63729858", + "elevation_ft": "739", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Mackinac Island", + "scheduled_service": "no", + "gps_code": "KMCD", + "iata_code": "MCD", + "local_code": "MCD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mackinac_Island_Airport", + "keywords": "Y84" + }, + { + "id": "20480", + "ident": "KMCE", + "type": "medium_airport", + "name": "Merced Regional Macready Field", + "latitude_deg": "37.28469849", + "longitude_deg": "-120.5139999", + "elevation_ft": "155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Merced", + "scheduled_service": "no", + "gps_code": "KMCE", + "iata_code": "MCE", + "local_code": "MCE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Merced_Regional_Airport" + }, + { + "id": "3667", + "ident": "KMCF", + "type": "medium_airport", + "name": "Mac Dill Air Force Base", + "latitude_deg": "27.8493", + "longitude_deg": "-82.521202", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tampa", + "scheduled_service": "no", + "gps_code": "KMCF", + "iata_code": "MCF", + "local_code": "MCF", + "home_link": "http://www.macdill.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/MacDill_Air_Force_Base", + "keywords": "Southeast Air Base - Tampa, MacDill Field" + }, + { + "id": "3668", + "ident": "KMCI", + "type": "large_airport", + "name": "Kansas City International Airport", + "latitude_deg": "39.2976", + "longitude_deg": "-94.713898", + "elevation_ft": "1026", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kansas City", + "scheduled_service": "yes", + "gps_code": "KMCI", + "iata_code": "MCI", + "local_code": "MCI", + "home_link": "http://www.flykci.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kansas_City_International_Airport" + }, + { + "id": "20481", + "ident": "KMCK", + "type": "medium_airport", + "name": "Mc Cook Ben Nelson Regional Airport", + "latitude_deg": "40.20629883", + "longitude_deg": "-100.5920029", + "elevation_ft": "2583", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Mc Cook", + "scheduled_service": "no", + "gps_code": "KMCK", + "iata_code": "MCK", + "local_code": "MCK", + "wikipedia_link": "https://en.wikipedia.org/wiki/McCook_Regional_Airport" + }, + { + "id": "3669", + "ident": "KMCN", + "type": "medium_airport", + "name": "Middle Georgia Regional Airport", + "latitude_deg": "32.69279861450195", + "longitude_deg": "-83.64920043945312", + "elevation_ft": "354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Macon", + "scheduled_service": "yes", + "gps_code": "KMCN", + "iata_code": "MCN", + "local_code": "MCN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Middle_Georgia_Regional_Airport" + }, + { + "id": "3670", + "ident": "KMCO", + "type": "large_airport", + "name": "Orlando International Airport", + "latitude_deg": "28.429399490356445", + "longitude_deg": "-81.30899810791016", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "yes", + "gps_code": "KMCO", + "iata_code": "MCO", + "local_code": "MCO", + "home_link": "http://www.orlandoairports.net/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orlando_International_Airport", + "keywords": "Disney World,Epcot Center" + }, + { + "id": "20482", + "ident": "KMCW", + "type": "medium_airport", + "name": "Mason City Municipal Airport", + "latitude_deg": "43.157799", + "longitude_deg": "-93.331299", + "elevation_ft": "1213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Clear Lake", + "scheduled_service": "no", + "gps_code": "KMCW", + "iata_code": "MCW", + "local_code": "MCW" + }, + { + "id": "20483", + "ident": "KMCX", + "type": "small_airport", + "name": "White County Airport", + "latitude_deg": "40.70880126953125", + "longitude_deg": "-86.76679992675781", + "elevation_ft": "676", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Monticello", + "scheduled_service": "no", + "gps_code": "KMCX", + "local_code": "MCX" + }, + { + "id": "20484", + "ident": "KMCZ", + "type": "small_airport", + "name": "Martin County Airport", + "latitude_deg": "35.86220169067383", + "longitude_deg": "-77.1781997680664", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Williamston", + "scheduled_service": "no", + "gps_code": "KMCZ", + "local_code": "MCZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Martin_County_Airport" + }, + { + "id": "20485", + "ident": "KMDA", + "type": "heliport", + "name": "Martindale Army Heliport", + "latitude_deg": "29.4312992096", + "longitude_deg": "-98.3777999878", + "elevation_ft": "674", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "KMDA", + "iata_code": "MDA", + "local_code": "MDA" + }, + { + "id": "20486", + "ident": "KMDD", + "type": "small_airport", + "name": "Midland Airpark", + "latitude_deg": "32.0364990234", + "longitude_deg": "-102.100997925", + "elevation_ft": "2803", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Midland", + "scheduled_service": "no", + "gps_code": "KMDD", + "iata_code": "MDD", + "local_code": "MDD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Midland_Airpark" + }, + { + "id": "20487", + "ident": "KMDF", + "type": "small_airport", + "name": "Mooreland Municipal Airport", + "latitude_deg": "36.484798431396484", + "longitude_deg": "-99.19419860839844", + "elevation_ft": "1970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Mooreland", + "scheduled_service": "no", + "gps_code": "KMDF", + "local_code": "MDF" + }, + { + "id": "3671", + "ident": "KMDH", + "type": "medium_airport", + "name": "Southern Illinois Airport", + "latitude_deg": "37.778099060058594", + "longitude_deg": "-89.25199890136719", + "elevation_ft": "411", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Carbondale/Murphysboro", + "scheduled_service": "no", + "gps_code": "KMDH", + "iata_code": "MDH", + "local_code": "MDH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Southern_Illinois_Airport" + }, + { + "id": "20488", + "ident": "KMDQ", + "type": "small_airport", + "name": "Madison County Executive Airport-Tom Sharp Jr Field", + "latitude_deg": "34.8614006", + "longitude_deg": "-86.55750275", + "elevation_ft": "756", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Huntsville", + "scheduled_service": "no", + "gps_code": "KMDQ", + "local_code": "MDQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Madison_County_Executive_Airport", + "keywords": "M82" + }, + { + "id": "20489", + "ident": "KMDS", + "type": "small_airport", + "name": "Madison Municipal Airport", + "latitude_deg": "44.01599884", + "longitude_deg": "-97.08589935", + "elevation_ft": "1718", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "KMDS", + "iata_code": "XMD", + "local_code": "MDS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Madison_Municipal_Airport_(South_Dakota)" + }, + { + "id": "3672", + "ident": "KMDT", + "type": "medium_airport", + "name": "Harrisburg International Airport", + "latitude_deg": "40.1935005188", + "longitude_deg": "-76.7633972168", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Harrisburg", + "scheduled_service": "yes", + "gps_code": "KMDT", + "iata_code": "MDT", + "local_code": "MDT", + "home_link": "http://www.flyhia.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harrisburg_International_Airport", + "keywords": "Harrisburg,Lancaster,York,HIA,Middletown" + }, + { + "id": "3673", + "ident": "KMDW", + "type": "large_airport", + "name": "Chicago Midway International Airport", + "latitude_deg": "41.785999", + "longitude_deg": "-87.752403", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "yes", + "gps_code": "KMDW", + "iata_code": "MDW", + "local_code": "MDW", + "home_link": "https://www.flychicago.com/midway/home/pages/default.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Midway_International_Airport", + "keywords": "CHI" + }, + { + "id": "20490", + "ident": "KMDZ", + "type": "small_airport", + "name": "Taylor County Airport", + "latitude_deg": "45.10100174", + "longitude_deg": "-90.30329895", + "elevation_ft": "1478", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Medford", + "scheduled_service": "no", + "gps_code": "KMDZ", + "iata_code": "MDF", + "local_code": "MDZ", + "home_link": "http://www.co.taylor.wi.us/departments/a-e/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taylor_County_Airport_(Wisconsin)" + }, + { + "id": "20491", + "ident": "KMEB", + "type": "small_airport", + "name": "Laurinburg Maxton Airport", + "latitude_deg": "34.791901", + "longitude_deg": "-79.365799", + "elevation_ft": "216", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Maxton", + "scheduled_service": "no", + "gps_code": "KMEB", + "iata_code": "MXE", + "local_code": "MEB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Laurinburg-Maxton_Airport" + }, + { + "id": "3674", + "ident": "KMEI", + "type": "medium_airport", + "name": "Key Field / Meridian Regional Airport", + "latitude_deg": "32.3326", + "longitude_deg": "-88.7519", + "elevation_ft": "297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Meridian", + "scheduled_service": "yes", + "gps_code": "KMEI", + "iata_code": "MEI", + "local_code": "MEI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Meridian_Regional_Airport" + }, + { + "id": "20492", + "ident": "KMEJ", + "type": "small_airport", + "name": "Meade Municipal Airport", + "latitude_deg": "37.27690124511719", + "longitude_deg": "-100.35600280761719", + "elevation_ft": "2529", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Meade", + "scheduled_service": "no", + "gps_code": "KMEJ", + "local_code": "MEJ" + }, + { + "id": "3675", + "ident": "KMEM", + "type": "large_airport", + "name": "Memphis International Airport", + "latitude_deg": "35.04240036010742", + "longitude_deg": "-89.97669982910156", + "elevation_ft": "341", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Memphis", + "scheduled_service": "yes", + "gps_code": "KMEM", + "iata_code": "MEM", + "local_code": "MEM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Memphis_International_Airport" + }, + { + "id": "3676", + "ident": "KMER", + "type": "medium_airport", + "name": "Castle Airport", + "latitude_deg": "37.38050079", + "longitude_deg": "-120.5680008", + "elevation_ft": "191", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Merced", + "scheduled_service": "no", + "gps_code": "KMER", + "iata_code": "MER", + "local_code": "MER", + "wikipedia_link": "https://en.wikipedia.org/wiki/Castle_Airport" + }, + { + "id": "20493", + "ident": "KMEV", + "type": "small_airport", + "name": "Minden-Tahoe Airport", + "latitude_deg": "39.00030136", + "longitude_deg": "-119.7509995", + "elevation_ft": "4722", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Minden", + "scheduled_service": "no", + "gps_code": "KMEV", + "iata_code": "MEV", + "local_code": "MEV", + "home_link": "http://mindentahoeairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Minden%E2%80%93Tahoe_Airport" + }, + { + "id": "20494", + "ident": "KMEY", + "type": "small_airport", + "name": "James G. Whiting Memorial Field", + "latitude_deg": "42.17829895019531", + "longitude_deg": "-95.7936019897461", + "elevation_ft": "1116", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Mapleton", + "scheduled_service": "no", + "gps_code": "KMEY", + "local_code": "MEY" + }, + { + "id": "20495", + "ident": "KMEZ", + "type": "small_airport", + "name": "Mena Intermountain Municipal Airport", + "latitude_deg": "34.545399", + "longitude_deg": "-94.202698", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Mena", + "scheduled_service": "no", + "gps_code": "KMEZ", + "local_code": "MEZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mena_Intermountain_Municipal_Airport", + "keywords": "M39" + }, + { + "id": "307560", + "ident": "KMF", + "type": "small_airport", + "name": "Kamina Airport", + "latitude_deg": "-7.64925", + "longitude_deg": "145.956944444", + "elevation_ft": "2157", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Hoieti", + "scheduled_service": "no", + "gps_code": "AYKD", + "iata_code": "KMF", + "local_code": "KMN" + }, + { + "id": "3677", + "ident": "KMFD", + "type": "medium_airport", + "name": "Mansfield Lahm Regional Airport", + "latitude_deg": "40.82139968869999", + "longitude_deg": "-82.5166015625", + "elevation_ft": "1297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mansfield", + "scheduled_service": "no", + "gps_code": "KMFD", + "iata_code": "MFD", + "local_code": "MFD", + "home_link": "http://www.ci.mansfield.oh.us/index.php/lahm-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mansfield_Lahm_Regional_Airport" + }, + { + "id": "3678", + "ident": "KMFE", + "type": "medium_airport", + "name": "McAllen Miller International Airport", + "latitude_deg": "26.176141", + "longitude_deg": "-98.237965", + "elevation_ft": "107", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "McAllen", + "scheduled_service": "yes", + "gps_code": "KMFE", + "iata_code": "MFE", + "local_code": "MFE", + "wikipedia_link": "https://en.wikipedia.org/wiki/McAllen-Miller_International_Airport" + }, + { + "id": "20496", + "ident": "KMFI", + "type": "small_airport", + "name": "Marshfield Municipal Airport", + "latitude_deg": "44.6369018555", + "longitude_deg": "-90.18930053710001", + "elevation_ft": "1277", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Marshfield", + "scheduled_service": "no", + "gps_code": "KMFI", + "iata_code": "MFI", + "local_code": "MFI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marshfield,_Wisconsin", + "keywords": "Roy Shrewy Field" + }, + { + "id": "3679", + "ident": "KMFR", + "type": "medium_airport", + "name": "Rogue Valley International Medford Airport", + "latitude_deg": "42.37419891357422", + "longitude_deg": "-122.87300109863281", + "elevation_ft": "1335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Medford", + "scheduled_service": "yes", + "gps_code": "KMFR", + "iata_code": "MFR", + "local_code": "MFR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rogue_Valley_International-Medford_Airport" + }, + { + "id": "20497", + "ident": "KMFV", + "type": "small_airport", + "name": "Accomack County Airport", + "latitude_deg": "37.646900177", + "longitude_deg": "-75.761100769", + "elevation_ft": "47", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Melfa", + "scheduled_service": "no", + "gps_code": "KMFV", + "iata_code": "MFV", + "local_code": "MFV", + "home_link": "http://www.co.accomack.va.us/departments/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Accomack_County_Airport", + "keywords": "Melfa Flight Strip" + }, + { + "id": "20498", + "ident": "KMGC", + "type": "small_airport", + "name": "Michigan City Municipal Airport", + "latitude_deg": "41.703300476100004", + "longitude_deg": "-86.8211975098", + "elevation_ft": "655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Michigan City", + "scheduled_service": "no", + "gps_code": "KMGC", + "iata_code": "MGC", + "local_code": "MGC", + "home_link": "http://www.emichigancity.com/cityhall/departments/airport/index.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Michigan_City_Municipal_Airport", + "keywords": "Phillips Field" + }, + { + "id": "3680", + "ident": "KMGE", + "type": "medium_airport", + "name": "Dobbins Air Reserve Base", + "latitude_deg": "33.915401", + "longitude_deg": "-84.516296", + "elevation_ft": "1068", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Marietta", + "scheduled_service": "no", + "gps_code": "KMGE", + "iata_code": "MGE", + "local_code": "MGE", + "home_link": "http://www.dobbins.afrc.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dobbins_Air_Reserve_Base", + "keywords": "Rickenbacker Field, Marietta AAF, Marietta AFB, Dobbins AFB" + }, + { + "id": "22012", + "ident": "KMGG", + "type": "small_airport", + "name": "Maple Lake Municipal Airport", + "latitude_deg": "45.236000061035156", + "longitude_deg": "-93.98560333251953", + "elevation_ft": "1028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Maple Lake", + "scheduled_service": "no", + "gps_code": "KMGG", + "local_code": "MGG" + }, + { + "id": "20499", + "ident": "KMGJ", + "type": "small_airport", + "name": "Orange County Airport", + "latitude_deg": "41.50999832", + "longitude_deg": "-74.26460266", + "elevation_ft": "364", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Montgomery", + "scheduled_service": "no", + "gps_code": "KMGJ", + "iata_code": "MGJ", + "local_code": "MGJ", + "home_link": "http://www.orangecountygov.com/content/124/1354/default.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orange_County_Airport_(New_York)" + }, + { + "id": "3681", + "ident": "KMGM", + "type": "medium_airport", + "name": "Montgomery Regional (Dannelly Field) Airport", + "latitude_deg": "32.300598", + "longitude_deg": "-86.393997", + "elevation_ft": "221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Montgomery", + "scheduled_service": "yes", + "gps_code": "KMGM", + "iata_code": "MGM", + "local_code": "MGM", + "home_link": "http://www.flymgm.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Montgomery_Regional_Airport" + }, + { + "id": "20500", + "ident": "KMGN", + "type": "small_airport", + "name": "Harbor Springs Airport", + "latitude_deg": "45.42559814453125", + "longitude_deg": "-84.91339874267578", + "elevation_ft": "686", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Harbor Springs", + "scheduled_service": "no", + "gps_code": "KMGN", + "local_code": "MGN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harbor_Springs_Municipal_Airport" + }, + { + "id": "20501", + "ident": "KMGR", + "type": "small_airport", + "name": "Moultrie Municipal Airport", + "latitude_deg": "31.084899902300002", + "longitude_deg": "-83.8032989502", + "elevation_ft": "294", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Moultrie", + "scheduled_service": "no", + "gps_code": "KMGR", + "iata_code": "MGR", + "local_code": "MGR", + "home_link": "http://www.moultriega.com/?page_id=38", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moultrie_Municipal_Airport", + "keywords": "Moultrie-Thomasville Airport, Spence AAF Auxiliary No. 3" + }, + { + "id": "3682", + "ident": "KMGW", + "type": "medium_airport", + "name": "Morgantown Municipal Airport Walter L. (Bill) Hart Field", + "latitude_deg": "39.643305", + "longitude_deg": "-79.917598", + "elevation_ft": "1248", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Morgantown", + "scheduled_service": "yes", + "gps_code": "KMGW", + "iata_code": "MGW", + "local_code": "MGW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Morgantown_Municipal_Airport" + }, + { + "id": "20502", + "ident": "KMGY", + "type": "small_airport", + "name": "Dayton-Wright Brothers Airport", + "latitude_deg": "39.5890007019", + "longitude_deg": "-84.224899292", + "elevation_ft": "957", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dayton", + "scheduled_service": "no", + "gps_code": "KMGY", + "iata_code": "MGY", + "local_code": "MGY", + "home_link": "http://www.flydayton.com/?page=wright-brothers-airport-2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dayton%E2%80%93Wright_Brothers_Airport" + }, + { + "id": "20503", + "ident": "KMHE", + "type": "small_airport", + "name": "Mitchell Municipal Airport", + "latitude_deg": "43.774799346900004", + "longitude_deg": "-98.03859710690001", + "elevation_ft": "1304", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Mitchell", + "scheduled_service": "no", + "gps_code": "KMHE", + "iata_code": "MHE", + "local_code": "MHE", + "home_link": "http://www.cityofmitchell.org/index.asp?SEC=0E5EB6F8-1E38-48AD-8D27-2CDD01C4E949&Type=B_BASIC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mitchell_Municipal_Airport", + "keywords": "Mitchell AAF" + }, + { + "id": "3683", + "ident": "KMHK", + "type": "medium_airport", + "name": "Manhattan Regional Airport", + "latitude_deg": "39.14099884033203", + "longitude_deg": "-96.6707992553711", + "elevation_ft": "1057", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Manhattan", + "scheduled_service": "yes", + "gps_code": "KMHK", + "iata_code": "MHK", + "local_code": "MHK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manhattan_Regional_Airport" + }, + { + "id": "20504", + "ident": "KMHL", + "type": "small_airport", + "name": "Marshall Memorial Municipal Airport", + "latitude_deg": "39.0957984924", + "longitude_deg": "-93.20290374759999", + "elevation_ft": "779", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Marshall", + "scheduled_service": "no", + "gps_code": "KMHL", + "iata_code": "MHL", + "local_code": "MHL", + "home_link": "http://www.marshall-mo.com/cm_airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marshall_Memorial_Municipal_Airport" + }, + { + "id": "20505", + "ident": "KMHP", + "type": "small_airport", + "name": "Metter Municipal Airport", + "latitude_deg": "32.373885", + "longitude_deg": "-82.081775", + "elevation_ft": "197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Metter", + "scheduled_service": "no", + "gps_code": "KMHP", + "local_code": "MHP" + }, + { + "id": "20506", + "ident": "KMHR", + "type": "medium_airport", + "name": "Sacramento Mather Airport", + "latitude_deg": "38.553902", + "longitude_deg": "-121.297997", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sacramento", + "scheduled_service": "yes", + "gps_code": "KMHR", + "iata_code": "MHR", + "local_code": "MHR", + "home_link": "http://www.sacramento.aero/mhr/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sacramento_Mather_Airport" + }, + { + "id": "3684", + "ident": "KMHT", + "type": "medium_airport", + "name": "Manchester-Boston Regional Airport", + "latitude_deg": "42.932598", + "longitude_deg": "-71.435699", + "elevation_ft": "266", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Manchester", + "scheduled_service": "yes", + "gps_code": "KMHT", + "iata_code": "MHT", + "local_code": "MHT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manchester-Boston_Regional_Airport" + }, + { + "id": "20507", + "ident": "KMHV", + "type": "small_airport", + "name": "Mojave Airport", + "latitude_deg": "35.05939865", + "longitude_deg": "-118.1520004", + "elevation_ft": "2801", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mojave", + "scheduled_service": "no", + "gps_code": "KMHV", + "iata_code": "MHV", + "local_code": "MHV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mojave_Air_and_Space_Port" + }, + { + "id": "3685", + "ident": "KMIA", + "type": "large_airport", + "name": "Miami International Airport", + "latitude_deg": "25.79319953918457", + "longitude_deg": "-80.29060363769531", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "yes", + "gps_code": "KMIA", + "iata_code": "MIA", + "local_code": "MIA", + "home_link": "http://www.miami-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miami_International_Airport", + "keywords": "MFW, South Florida" + }, + { + "id": "3686", + "ident": "KMIB", + "type": "medium_airport", + "name": "Minot Air Force Base", + "latitude_deg": "48.4156", + "longitude_deg": "-101.358002", + "elevation_ft": "1667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Minot", + "scheduled_service": "no", + "gps_code": "KMIB", + "iata_code": "MIB", + "local_code": "MIB", + "home_link": "http://www.minot.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Minot_Air_Force_Base", + "keywords": "5th Bomb Wing, 91st Space Wing" + }, + { + "id": "20508", + "ident": "KMIC", + "type": "small_airport", + "name": "Crystal Airport", + "latitude_deg": "45.0620002746582", + "longitude_deg": "-93.35389709472656", + "elevation_ft": "869", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Minneapolis", + "scheduled_service": "no", + "gps_code": "KMIC", + "local_code": "MIC" + }, + { + "id": "3687", + "ident": "KMIE", + "type": "medium_airport", + "name": "Delaware County Johnson Field", + "latitude_deg": "40.242298", + "longitude_deg": "-85.395897", + "elevation_ft": "937", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Muncie", + "scheduled_service": "no", + "gps_code": "KMIE", + "iata_code": "MIE", + "local_code": "MIE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Delaware_County_Airport" + }, + { + "id": "20509", + "ident": "KMIO", + "type": "small_airport", + "name": "Miami Regional Airport", + "latitude_deg": "36.909199", + "longitude_deg": "-94.887497", + "elevation_ft": "808", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "KMIO", + "local_code": "MIO", + "keywords": "Miami Municipal" + }, + { + "id": "20510", + "ident": "KMIT", + "type": "small_airport", + "name": "Shafter Airport - Minter Field", + "latitude_deg": "35.507401", + "longitude_deg": "-119.192002", + "elevation_ft": "424", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Shafter", + "scheduled_service": "no", + "gps_code": "KMIT", + "iata_code": "MIT", + "local_code": "MIT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shafter_Airport", + "keywords": "Lerdo Field, Minter Field AAF" + }, + { + "id": "3688", + "ident": "KMIV", + "type": "medium_airport", + "name": "Millville Municipal Airport", + "latitude_deg": "39.367802", + "longitude_deg": "-75.072197", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Millville", + "scheduled_service": "no", + "gps_code": "KMIV", + "iata_code": "MIV", + "local_code": "MIV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Millville_Executive_Airport" + }, + { + "id": "20511", + "ident": "KMIW", + "type": "small_airport", + "name": "Marshalltown Municipal Airport", + "latitude_deg": "42.112701416015625", + "longitude_deg": "-92.91780090332031", + "elevation_ft": "974", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Marshalltown", + "scheduled_service": "no", + "gps_code": "KMIW", + "local_code": "MIW" + }, + { + "id": "20512", + "ident": "KMJD", + "type": "small_airport", + "name": "Picayune Municipal Airport", + "latitude_deg": "30.48749924", + "longitude_deg": "-89.65119934", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Picayune", + "scheduled_service": "no", + "gps_code": "KMJD", + "local_code": "MJD" + }, + { + "id": "20513", + "ident": "KMJQ", + "type": "small_airport", + "name": "Jackson Municipal Airport", + "latitude_deg": "43.650001525878906", + "longitude_deg": "-94.98650360107422", + "elevation_ft": "1446", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "KMJQ", + "local_code": "MJQ" + }, + { + "id": "20514", + "ident": "KMJX", + "type": "small_airport", + "name": "Ocean County Airport", + "latitude_deg": "39.92750168", + "longitude_deg": "-74.29239655", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Toms River", + "scheduled_service": "no", + "gps_code": "KMJX", + "iata_code": "MJX", + "local_code": "MJX", + "home_link": "http://www.planning.co.ocean.nj.us/rjmiller/index.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Robert_J._Miller_Air_Park", + "keywords": "N44, Robert J. Miller Air Park" + }, + { + "id": "20515", + "ident": "KMKA", + "type": "small_airport", + "name": "Miller Municipal Airport", + "latitude_deg": "44.52519989013672", + "longitude_deg": "-98.95809936523438", + "elevation_ft": "1569", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Miller", + "scheduled_service": "no", + "gps_code": "KMKA", + "local_code": "MKA" + }, + { + "id": "3689", + "ident": "KMKC", + "type": "medium_airport", + "name": "Charles B. Wheeler Downtown Airport", + "latitude_deg": "39.123199462890625", + "longitude_deg": "-94.5927963256836", + "elevation_ft": "759", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kansas City", + "scheduled_service": "no", + "gps_code": "KMKC", + "iata_code": "MKC", + "local_code": "MKC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Charles_B._Wheeler_Downtown_Airport" + }, + { + "id": "3690", + "ident": "KMKE", + "type": "large_airport", + "name": "General Mitchell International Airport", + "latitude_deg": "42.947200775146484", + "longitude_deg": "-87.89659881591797", + "elevation_ft": "723", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Milwaukee", + "scheduled_service": "yes", + "gps_code": "KMKE", + "iata_code": "MKE", + "local_code": "MKE", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Mitchell_International_Airport" + }, + { + "id": "3691", + "ident": "KMKG", + "type": "medium_airport", + "name": "Muskegon County Airport", + "latitude_deg": "43.169498", + "longitude_deg": "-86.238197", + "elevation_ft": "629", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Muskegon", + "scheduled_service": "yes", + "gps_code": "KMKG", + "iata_code": "MKG", + "local_code": "MKG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Muskegon_County_Airport" + }, + { + "id": "20516", + "ident": "KMKJ", + "type": "small_airport", + "name": "Mountain Empire Airport", + "latitude_deg": "36.894901", + "longitude_deg": "-81.349899", + "elevation_ft": "2558", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Rural Retreat", + "scheduled_service": "no", + "gps_code": "KMKJ", + "local_code": "MKJ" + }, + { + "id": "3692", + "ident": "KMKL", + "type": "medium_airport", + "name": "McKellar-Sipes Regional Airport", + "latitude_deg": "35.599899", + "longitude_deg": "-88.915604", + "elevation_ft": "434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Jackson", + "scheduled_service": "yes", + "gps_code": "KMKL", + "iata_code": "MKL", + "local_code": "MKL", + "home_link": "http://mckellarsipes.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/McKellar-Sipes_Regional_Airport" + }, + { + "id": "20517", + "ident": "KMKN", + "type": "small_airport", + "name": "Comanche County City Airport", + "latitude_deg": "31.91679955", + "longitude_deg": "-98.60030365", + "elevation_ft": "1385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comanche", + "scheduled_service": "no", + "gps_code": "KMKN", + "local_code": "MKN" + }, + { + "id": "20518", + "ident": "KMKO", + "type": "small_airport", + "name": "Muskogee-Davis Regional Airport", + "latitude_deg": "35.656502", + "longitude_deg": "-95.366699", + "elevation_ft": "611", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Muskogee", + "scheduled_service": "no", + "gps_code": "KMKO", + "local_code": "MKO", + "keywords": "Davis Field" + }, + { + "id": "18867", + "ident": "KMKS", + "type": "small_airport", + "name": "Berkeley County Airport", + "latitude_deg": "33.18550109863281", + "longitude_deg": "-80.03630065917969", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Moncks Corner", + "scheduled_service": "no", + "gps_code": "KMKS", + "local_code": "MKS", + "keywords": "Formerly 50J" + }, + { + "id": "20519", + "ident": "KMKT", + "type": "small_airport", + "name": "Mankato Regional Airport", + "latitude_deg": "44.224781", + "longitude_deg": "-93.919128", + "elevation_ft": "1021", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Mankato", + "scheduled_service": "no", + "gps_code": "KMKT", + "local_code": "MKT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mankato_Regional_Airport" + }, + { + "id": "20520", + "ident": "KMKV", + "type": "small_airport", + "name": "Marksville Municipal Airport", + "latitude_deg": "31.09469985961914", + "longitude_deg": "-92.06909942626953", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Marksville", + "scheduled_service": "no", + "gps_code": "KMKV", + "local_code": "MKV" + }, + { + "id": "20521", + "ident": "KMKY", + "type": "small_airport", + "name": "Marco Island Executive Airport", + "latitude_deg": "25.995001", + "longitude_deg": "-81.672501", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Marco Island", + "scheduled_service": "no", + "gps_code": "KMKY", + "iata_code": "MRK", + "local_code": "MKY", + "home_link": "http://www.colliergov.net/index.aspx?page=21", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marco_Island_Airport" + }, + { + "id": "3693", + "ident": "KMLB", + "type": "medium_airport", + "name": "Melbourne Orlando International Airport", + "latitude_deg": "28.1028", + "longitude_deg": "-80.645302", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Melbourne", + "scheduled_service": "yes", + "gps_code": "KMLB", + "iata_code": "MLB", + "local_code": "MLB", + "home_link": "https://www.mlbair.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Melbourne_International_Airport" + }, + { + "id": "3694", + "ident": "KMLC", + "type": "medium_airport", + "name": "Mc Alester Regional Airport", + "latitude_deg": "34.882401", + "longitude_deg": "-95.783501", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Mc Alester", + "scheduled_service": "no", + "gps_code": "KMLC", + "iata_code": "MLC", + "local_code": "MLC", + "wikipedia_link": "https://en.wikipedia.org/wiki/McAlester_Regional_Airport" + }, + { + "id": "20522", + "ident": "KMLD", + "type": "small_airport", + "name": "Malad City Airport", + "latitude_deg": "42.16659927368164", + "longitude_deg": "-112.2969970703125", + "elevation_ft": "4503", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Malad City", + "scheduled_service": "no", + "gps_code": "KMLD", + "local_code": "MLD" + }, + { + "id": "20523", + "ident": "KMLE", + "type": "small_airport", + "name": "Millard Airport", + "latitude_deg": "41.19599914550781", + "longitude_deg": "-96.11199951171875", + "elevation_ft": "1051", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Omaha", + "scheduled_service": "no", + "gps_code": "KMLE", + "local_code": "MLE" + }, + { + "id": "20524", + "ident": "KMLF", + "type": "small_airport", + "name": "Milford Municipal-Ben and Judy Briscoe Field", + "latitude_deg": "38.42660141", + "longitude_deg": "-113.012001", + "elevation_ft": "5039", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "KMLF", + "local_code": "MLF" + }, + { + "id": "3695", + "ident": "KMLI", + "type": "medium_airport", + "name": "Quad City International Airport", + "latitude_deg": "41.448502", + "longitude_deg": "-90.5075", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Moline", + "scheduled_service": "yes", + "gps_code": "KMLI", + "iata_code": "MLI", + "local_code": "MLI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quad_City_International_Airport" + }, + { + "id": "20525", + "ident": "KMLJ", + "type": "small_airport", + "name": "Baldwin County Regional Airport", + "latitude_deg": "33.154202", + "longitude_deg": "-83.240701", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Milledgeville", + "scheduled_service": "no", + "gps_code": "KMLJ", + "local_code": "MLJ", + "home_link": "https://www.baldwincountyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baldwin_County_Airport" + }, + { + "id": "30105", + "ident": "KMLK", + "type": "closed", + "name": "Malta Airport", + "latitude_deg": "48.34939956665039", + "longitude_deg": "-107.88600158691406", + "elevation_ft": "2280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "scheduled_service": "no", + "gps_code": "KMLK" + }, + { + "id": "3696", + "ident": "KMLS", + "type": "medium_airport", + "name": "Miles City Airport - Frank Wiley Field", + "latitude_deg": "46.428001", + "longitude_deg": "-105.886002", + "elevation_ft": "2630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Miles City", + "scheduled_service": "yes", + "gps_code": "KMLS", + "iata_code": "MLS", + "local_code": "MLS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miles_City_Municipal_Airport" + }, + { + "id": "20526", + "ident": "KMLT", + "type": "small_airport", + "name": "Millinocket Municipal Airport", + "latitude_deg": "45.64780044555664", + "longitude_deg": "-68.68560028076172", + "elevation_ft": "408", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Millinocket", + "scheduled_service": "no", + "gps_code": "KMLT", + "local_code": "MLT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Millinocket_Municipal_Airport" + }, + { + "id": "3697", + "ident": "KMLU", + "type": "medium_airport", + "name": "Monroe Regional Airport", + "latitude_deg": "32.510899", + "longitude_deg": "-92.037697", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Monroe", + "scheduled_service": "yes", + "gps_code": "KMLU", + "iata_code": "MLU", + "local_code": "MLU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monroe_Regional_Airport" + }, + { + "id": "44572", + "ident": "KMM", + "type": "small_airport", + "name": "Kimaam Airport", + "latitude_deg": "-7.9782", + "longitude_deg": "138.852005", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Kimaam", + "scheduled_service": "no", + "gps_code": "WAKJ", + "iata_code": "KMM", + "keywords": "Kimam, Kiman" + }, + { + "id": "20527", + "ident": "KMMH", + "type": "small_airport", + "name": "Mammoth Yosemite Airport", + "latitude_deg": "37.62409973", + "longitude_deg": "-118.8379974", + "elevation_ft": "7135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mammoth Lakes", + "scheduled_service": "no", + "gps_code": "KMMH", + "iata_code": "MMH", + "local_code": "MMH" + }, + { + "id": "20528", + "ident": "KMMI", + "type": "small_airport", + "name": "McMinn County Airport", + "latitude_deg": "35.39730072", + "longitude_deg": "-84.56259918", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Athens", + "scheduled_service": "no", + "gps_code": "KMMI", + "iata_code": "MMI", + "local_code": "MMI", + "home_link": "http://www.mcminncountytn.gov/airport/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/McMinn_County_Airport" + }, + { + "id": "20529", + "ident": "KMMK", + "type": "small_airport", + "name": "Meriden Markham Municipal Airport", + "latitude_deg": "41.50870132446289", + "longitude_deg": "-72.82949829101562", + "elevation_ft": "103", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Meriden", + "scheduled_service": "no", + "gps_code": "KMMK", + "local_code": "MMK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Meriden_Markham_Municipal_Airport" + }, + { + "id": "20530", + "ident": "KMML", + "type": "small_airport", + "name": "Southwest Minnesota Regional Airport - Marshall/Ryan Field", + "latitude_deg": "44.45050049", + "longitude_deg": "-95.82189941", + "elevation_ft": "1183", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Marshall", + "scheduled_service": "no", + "gps_code": "KMML", + "iata_code": "MML", + "local_code": "MML", + "home_link": "http://marshallmn.com/main/index.php/public-works/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Southwest_Minnesota_Regional_Airport" + }, + { + "id": "20531", + "ident": "KMMS", + "type": "small_airport", + "name": "Selfs Airport", + "latitude_deg": "34.231499", + "longitude_deg": "-90.289597", + "elevation_ft": "162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Marks", + "scheduled_service": "no", + "gps_code": "KMMS", + "iata_code": "MMS", + "local_code": "MMS" + }, + { + "id": "20532", + "ident": "KMMT", + "type": "medium_airport", + "name": "Mc Entire Joint National Guard Base", + "latitude_deg": "33.92079926", + "longitude_deg": "-80.80130005", + "elevation_ft": "254", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Eastover", + "scheduled_service": "no", + "gps_code": "KMMT", + "iata_code": "MMT", + "local_code": "MMT", + "wikipedia_link": "https://en.wikipedia.org/wiki/McEntire_Joint_National_Guard_Base" + }, + { + "id": "3698", + "ident": "KMMU", + "type": "medium_airport", + "name": "Morristown Municipal Airport", + "latitude_deg": "40.799400329589844", + "longitude_deg": "-74.41490173339844", + "elevation_ft": "187", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Morristown", + "scheduled_service": "no", + "gps_code": "KMMU", + "iata_code": "MMU", + "local_code": "MMU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Morristown_Municipal_Airport", + "keywords": "Manhattan, New York City, NYC" + }, + { + "id": "3699", + "ident": "KMMV", + "type": "medium_airport", + "name": "Mc Minnville Municipal Airport", + "latitude_deg": "45.19440079", + "longitude_deg": "-123.1360016", + "elevation_ft": "163", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Mc Minnville", + "scheduled_service": "no", + "gps_code": "KMMV", + "local_code": "MMV", + "wikipedia_link": "https://en.wikipedia.org/wiki/McMinnville_Municipal_Airport" + }, + { + "id": "20533", + "ident": "KMNF", + "type": "small_airport", + "name": "Mountain View Airport", + "latitude_deg": "36.992801666259766", + "longitude_deg": "-91.7145004272461", + "elevation_ft": "1181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Mountain View", + "scheduled_service": "no", + "gps_code": "KMNF", + "local_code": "MNF" + }, + { + "id": "302148", + "ident": "KMNG", + "type": "closed", + "name": "Montana ARNG Heliport", + "latitude_deg": "45.805", + "longitude_deg": "-108.566666667", + "elevation_ft": "3649", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Billings", + "scheduled_service": "no", + "gps_code": "KMNG", + "local_code": "MNG" + }, + { + "id": "20534", + "ident": "KMNI", + "type": "small_airport", + "name": "Santee Cooper Regional Airport", + "latitude_deg": "33.587100982666016", + "longitude_deg": "-80.20870208740234", + "elevation_ft": "103", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Manning", + "scheduled_service": "no", + "gps_code": "KMNI", + "local_code": "MNI" + }, + { + "id": "20535", + "ident": "KMNM", + "type": "small_airport", + "name": "Menominee–Marinette Twin County Airport", + "latitude_deg": "45.126701", + "longitude_deg": "-87.638397", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Menominee", + "scheduled_service": "no", + "gps_code": "KMNM", + "iata_code": "MNM", + "local_code": "MNM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Menominee%E2%80%93Marinette_Twin_County_Airport", + "keywords": "Menominee Regional" + }, + { + "id": "20536", + "ident": "KMNN", + "type": "small_airport", + "name": "Marion Municipal Airport", + "latitude_deg": "40.6161994934", + "longitude_deg": "-83.06349945070001", + "elevation_ft": "993", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "KMNN", + "iata_code": "MNN", + "local_code": "MNN", + "home_link": "http://www.marionairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marion_Municipal_Airport_(Ohio)" + }, + { + "id": "20537", + "ident": "KMNV", + "type": "small_airport", + "name": "Monroe County Airport", + "latitude_deg": "35.5453987121582", + "longitude_deg": "-84.38020324707031", + "elevation_ft": "1031", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Madisonville", + "scheduled_service": "no", + "gps_code": "KMNV", + "local_code": "MNV" + }, + { + "id": "20538", + "ident": "KMNZ", + "type": "small_airport", + "name": "Hamilton Municipal Airport", + "latitude_deg": "31.6658992767334", + "longitude_deg": "-98.14859771728516", + "elevation_ft": "1299", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "KMNZ", + "local_code": "MNZ" + }, + { + "id": "20539", + "ident": "KMO1", + "type": "small_airport", + "name": "Richland Municipal Airport", + "latitude_deg": "37.875", + "longitude_deg": "-92.40850067138672", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Richland", + "scheduled_service": "no", + "gps_code": "KMO1", + "local_code": "MO1" + }, + { + "id": "20540", + "ident": "KMO3", + "type": "small_airport", + "name": "Stockton Municipal Airport", + "latitude_deg": "37.660301208496094", + "longitude_deg": "-93.81680297851562", + "elevation_ft": "1042", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Stockton", + "scheduled_service": "no", + "gps_code": "KMO3", + "local_code": "MO3" + }, + { + "id": "20541", + "ident": "KMO6", + "type": "small_airport", + "name": "Washington Regional Airport", + "latitude_deg": "38.587601", + "longitude_deg": "-90.993797", + "elevation_ft": "488", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "KFYG", + "local_code": "FYG", + "keywords": "MO6" + }, + { + "id": "20542", + "ident": "KMO8", + "type": "small_airport", + "name": "North Central Missouri Regional Airport", + "latitude_deg": "39.77000045776367", + "longitude_deg": "-93.01270294189453", + "elevation_ft": "843", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Brookfield", + "scheduled_service": "no", + "gps_code": "KMO8", + "local_code": "MO8" + }, + { + "id": "3700", + "ident": "KMOB", + "type": "medium_airport", + "name": "Mobile Regional Airport", + "latitude_deg": "30.6912", + "longitude_deg": "-88.242798", + "elevation_ft": "219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Mobile", + "scheduled_service": "yes", + "gps_code": "KMOB", + "iata_code": "MOB", + "local_code": "MOB", + "home_link": "http://www.mobairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mobile_Regional_Airport" + }, + { + "id": "3701", + "ident": "KMOD", + "type": "medium_airport", + "name": "Modesto City Co-Harry Sham Field", + "latitude_deg": "37.625801", + "longitude_deg": "-120.954002", + "elevation_ft": "97", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Modesto", + "scheduled_service": "no", + "gps_code": "KMOD", + "iata_code": "MOD", + "local_code": "MOD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Modesto_City-County_Airport" + }, + { + "id": "20543", + "ident": "KMOP", + "type": "small_airport", + "name": "Mount Pleasant Municipal Airport", + "latitude_deg": "43.621700286865234", + "longitude_deg": "-84.73750305175781", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Mount Pleasant", + "scheduled_service": "no", + "gps_code": "KMOP", + "local_code": "MOP" + }, + { + "id": "20544", + "ident": "KMOR", + "type": "small_airport", + "name": "Morristown Regional Airport", + "latitude_deg": "36.179401", + "longitude_deg": "-83.375504", + "elevation_ft": "1313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Morristown", + "scheduled_service": "no", + "gps_code": "KMOR", + "local_code": "MOR", + "keywords": "Moore-Murrell Airport" + }, + { + "id": "3702", + "ident": "KMOT", + "type": "medium_airport", + "name": "Minot International Airport", + "latitude_deg": "48.2593994140625", + "longitude_deg": "-101.27999877929688", + "elevation_ft": "1716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Minot", + "scheduled_service": "yes", + "gps_code": "KMOT", + "iata_code": "MOT", + "local_code": "MOT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Minot_International_Airport" + }, + { + "id": "20545", + "ident": "KMOX", + "type": "small_airport", + "name": "Morris Municipal - Charlie Schmidt Airport", + "latitude_deg": "45.56600189", + "longitude_deg": "-95.96720123", + "elevation_ft": "1138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Morris", + "scheduled_service": "no", + "gps_code": "KMOX", + "local_code": "MOX" + }, + { + "id": "20546", + "ident": "KMPE", + "type": "small_airport", + "name": "Philadelphia Municipal Airport", + "latitude_deg": "32.7994", + "longitude_deg": "-89.125999", + "elevation_ft": "458", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "KMPE", + "local_code": "MPE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Philadelphia_Municipal_Airport" + }, + { + "id": "19029", + "ident": "KMPG", + "type": "small_airport", + "name": "Marshall County Airport", + "latitude_deg": "39.88079833984375", + "longitude_deg": "-80.73580169677734", + "elevation_ft": "1214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Moundsville", + "scheduled_service": "no", + "gps_code": "KMPG", + "local_code": "MPG", + "keywords": "Formerly 74D" + }, + { + "id": "20547", + "ident": "KMPI", + "type": "small_airport", + "name": "Mariposa Yosemite Airport", + "latitude_deg": "37.5108985901", + "longitude_deg": "-120.040000916", + "elevation_ft": "2254", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mariposa", + "scheduled_service": "no", + "gps_code": "KMPI", + "iata_code": "RMY", + "local_code": "MPI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mariposa-Yosemite_Airport" + }, + { + "id": "20548", + "ident": "KMPJ", + "type": "small_airport", + "name": "Petit Jean Park Airport", + "latitude_deg": "35.138901", + "longitude_deg": "-92.909202", + "elevation_ft": "923", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Morrilton", + "scheduled_service": "no", + "gps_code": "KMPJ", + "iata_code": "MPJ", + "local_code": "MPJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Petit_Jean_Park_Airport" + }, + { + "id": "20549", + "ident": "KMPO", + "type": "small_airport", + "name": "Pocono Mountains Municipal Airport", + "latitude_deg": "41.136025", + "longitude_deg": "-75.379572", + "elevation_ft": "1915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mount Pocono", + "scheduled_service": "no", + "gps_code": "KMPO", + "iata_code": "MPO", + "local_code": "MPO", + "home_link": "https://www.mpoairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pocono_Mountains_Municipal_Airport" + }, + { + "id": "20550", + "ident": "KMPR", + "type": "small_airport", + "name": "Mc Pherson Airport", + "latitude_deg": "38.35240173", + "longitude_deg": "-97.69129944", + "elevation_ft": "1498", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Mc Pherson", + "scheduled_service": "no", + "gps_code": "KMPR", + "local_code": "MPR" + }, + { + "id": "20551", + "ident": "KMPV", + "type": "medium_airport", + "name": "Edward F Knapp State Airport", + "latitude_deg": "44.20349884", + "longitude_deg": "-72.56230164", + "elevation_ft": "1166", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Barre/Montpelier", + "scheduled_service": "no", + "gps_code": "KMPV", + "iata_code": "MPV", + "local_code": "MPV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Edward_F._Knapp_State_Airport" + }, + { + "id": "20552", + "ident": "KMPZ", + "type": "small_airport", + "name": "Mount Pleasant Municipal Airport", + "latitude_deg": "40.94660187", + "longitude_deg": "-91.51110077", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Mount Pleasant", + "scheduled_service": "no", + "gps_code": "KMPZ", + "iata_code": "MPZ", + "local_code": "MPZ", + "home_link": "https://www.cityofmountpleasantiowa.org/citysite/citydepartments/publicworks_airport.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mount_Pleasant_Municipal_Airport_(Iowa)" + }, + { + "id": "20553", + "ident": "KMQB", + "type": "small_airport", + "name": "Macomb Municipal Airport", + "latitude_deg": "40.520099639899996", + "longitude_deg": "-90.65239715579999", + "elevation_ft": "707", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Macomb", + "scheduled_service": "no", + "gps_code": "KMQB", + "iata_code": "MQB", + "local_code": "MQB", + "home_link": "http://www.macombairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Macomb_Municipal_Airport" + }, + { + "id": "20554", + "ident": "KMQI", + "type": "small_airport", + "name": "Dare County Regional Airport", + "latitude_deg": "35.91899872", + "longitude_deg": "-75.69550323", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Manteo", + "scheduled_service": "no", + "gps_code": "KMQI", + "iata_code": "MEO", + "local_code": "MQI", + "home_link": "http://www.darenc.com/Airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dare_County_Regional_Airport" + }, + { + "id": "20555", + "ident": "KMQJ", + "type": "small_airport", + "name": "Indianapolis Regional Airport", + "latitude_deg": "39.843498", + "longitude_deg": "-85.8971", + "elevation_ft": "862", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "KMQJ", + "local_code": "MQJ", + "home_link": "https://www.indianapolisairport.com/about/general-aviation-airports/indianapolis-regional-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Indianapolis_Regional_Airport", + "keywords": "Mount Comfort" + }, + { + "id": "18758", + "ident": "KMQS", + "type": "small_airport", + "name": "Chester County G O Carlson Airport", + "latitude_deg": "39.97900009", + "longitude_deg": "-75.8655014", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Coatesville", + "scheduled_service": "no", + "gps_code": "KMQS", + "iata_code": "CTH", + "local_code": "MQS", + "home_link": "http://www.chestercountyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chester_County_G._O._Carlson_Airport", + "keywords": "40N" + }, + { + "id": "30117", + "ident": "KMQT", + "type": "closed", + "name": "Marquette Airport", + "latitude_deg": "46.533901", + "longitude_deg": "-87.561401", + "elevation_ft": "1424", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Negaunee", + "scheduled_service": "no", + "gps_code": "KMQT" + }, + { + "id": "20556", + "ident": "KMQW", + "type": "small_airport", + "name": "Telfair Wheeler Airport", + "latitude_deg": "32.09579849243164", + "longitude_deg": "-82.87999725341797", + "elevation_ft": "202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Mc Rae", + "scheduled_service": "no", + "gps_code": "KMQW", + "local_code": "MQW" + }, + { + "id": "3703", + "ident": "KMQY", + "type": "medium_airport", + "name": "Smyrna Airport", + "latitude_deg": "36.0089988708", + "longitude_deg": "-86.5201034546", + "elevation_ft": "543", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Smyrna", + "scheduled_service": "no", + "gps_code": "KMQY", + "iata_code": "MQY", + "local_code": "MQY", + "home_link": "http://www.smyrnaairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Smyrna_Airport_(Tennessee)", + "keywords": "Sewart AFB" + }, + { + "id": "3704", + "ident": "KMRB", + "type": "medium_airport", + "name": "Eastern WV Regional Airport/Shepherd Field", + "latitude_deg": "39.40190125", + "longitude_deg": "-77.98459625", + "elevation_ft": "565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Martinsburg", + "scheduled_service": "no", + "gps_code": "KMRB", + "iata_code": "MRB", + "local_code": "MRB", + "home_link": "http://www.wvairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eastern_WV_Regional_Airport" + }, + { + "id": "20557", + "ident": "KMRC", + "type": "small_airport", + "name": "Maury County Airport", + "latitude_deg": "35.5541000366", + "longitude_deg": "-87.17890167239999", + "elevation_ft": "681", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Columbia/Mount Pleasant", + "scheduled_service": "no", + "gps_code": "KMRC", + "iata_code": "MRC", + "local_code": "MRC", + "home_link": "http://www.maurywebpages.com/airport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maury_County_Airport" + }, + { + "id": "20558", + "ident": "KMRF", + "type": "small_airport", + "name": "Marfa Municipal Airport", + "latitude_deg": "30.369593", + "longitude_deg": "-104.015893", + "elevation_ft": "4849", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marfa", + "scheduled_service": "no", + "gps_code": "KMRF", + "iata_code": "MRF", + "local_code": "MRF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marfa_Municipal_Airport" + }, + { + "id": "20559", + "ident": "KMRH", + "type": "small_airport", + "name": "Michael J. Smith Field", + "latitude_deg": "34.73360062", + "longitude_deg": "-76.66059875", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Beaufort", + "scheduled_service": "no", + "gps_code": "KMRH", + "local_code": "MRH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Michael_J._Smith_Field" + }, + { + "id": "20560", + "ident": "KMRJ", + "type": "small_airport", + "name": "Iowa County Airport", + "latitude_deg": "42.886799", + "longitude_deg": "-90.236198", + "elevation_ft": "1171", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Mineral Point", + "scheduled_service": "no", + "gps_code": "KMRJ", + "local_code": "MRJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iowa_County_Airport" + }, + { + "id": "20561", + "ident": "KMRN", + "type": "small_airport", + "name": "Foothills Regional Airport", + "latitude_deg": "35.820202", + "longitude_deg": "-81.611397", + "elevation_ft": "1270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Morganton", + "scheduled_service": "no", + "gps_code": "KMRN", + "iata_code": "MRN", + "local_code": "MRN", + "home_link": "https://foothillsairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foothills_Regional_Airport", + "keywords": "Morganton-Lenoir" + }, + { + "id": "20562", + "ident": "KMRT", + "type": "small_airport", + "name": "Union County Airport", + "latitude_deg": "40.224700927734375", + "longitude_deg": "-83.35160064697266", + "elevation_ft": "1021", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Marysville", + "scheduled_service": "no", + "gps_code": "KMRT", + "local_code": "MRT" + }, + { + "id": "3705", + "ident": "KMRY", + "type": "medium_airport", + "name": "Monterey Peninsula Airport", + "latitude_deg": "36.58700180053711", + "longitude_deg": "-121.84300231933594", + "elevation_ft": "257", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Monterey", + "scheduled_service": "yes", + "gps_code": "KMRY", + "iata_code": "MRY", + "local_code": "MRY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monterey_Peninsula_Airport" + }, + { + "id": "30167", + "ident": "KMSA", + "type": "closed", + "name": "Mount Pleasant Municipal Airport", + "latitude_deg": "33.1293", + "longitude_deg": "-94.9757", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mount Pleasant", + "scheduled_service": "no", + "keywords": "KMSA, MSA" + }, + { + "id": "3706", + "ident": "KMSL", + "type": "medium_airport", + "name": "Northwest Alabama Regional Airport", + "latitude_deg": "34.74530029", + "longitude_deg": "-87.61019897", + "elevation_ft": "551", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Muscle Shoals", + "scheduled_service": "yes", + "gps_code": "KMSL", + "iata_code": "MSL", + "local_code": "MSL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Northwest_Alabama_Regional_Airport" + }, + { + "id": "3707", + "ident": "KMSN", + "type": "medium_airport", + "name": "Dane County Regional Truax Field", + "latitude_deg": "43.1399", + "longitude_deg": "-89.337502", + "elevation_ft": "887", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Madison", + "scheduled_service": "yes", + "gps_code": "KMSN", + "iata_code": "MSN", + "local_code": "MSN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dane_County_Regional_Airport" + }, + { + "id": "3708", + "ident": "KMSO", + "type": "medium_airport", + "name": "Missoula International Airport", + "latitude_deg": "46.91630173", + "longitude_deg": "-114.0910034", + "elevation_ft": "3206", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Missoula", + "scheduled_service": "yes", + "gps_code": "KMSO", + "iata_code": "MSO", + "local_code": "MSO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Missoula_International_Airport" + }, + { + "id": "3709", + "ident": "KMSP", + "type": "large_airport", + "name": "Minneapolis–Saint Paul International Airport / Wold–Chamberlain Field", + "latitude_deg": "44.882", + "longitude_deg": "-93.221802", + "elevation_ft": "841", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Minneapolis", + "scheduled_service": "yes", + "gps_code": "KMSP", + "iata_code": "MSP", + "local_code": "MSP", + "home_link": "http://www.mspairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Minneapolis–Saint_Paul_International_Airport" + }, + { + "id": "3710", + "ident": "KMSS", + "type": "medium_airport", + "name": "Massena International Airport Richards Field", + "latitude_deg": "44.936157", + "longitude_deg": "-74.844304", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Massena", + "scheduled_service": "yes", + "gps_code": "KMSS", + "iata_code": "MSS", + "local_code": "MSS", + "home_link": "http://www.massenaworks.com/town/airport.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Massena_International_Airport" + }, + { + "id": "20563", + "ident": "KMSV", + "type": "small_airport", + "name": "Sullivan County International Airport", + "latitude_deg": "41.701596", + "longitude_deg": "-74.794997", + "elevation_ft": "1403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Monticello", + "scheduled_service": "no", + "gps_code": "KMSV", + "iata_code": "MSV", + "local_code": "MSV", + "home_link": "http://sullivanny.us/Departments/Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sullivan_County_International_Airport" + }, + { + "id": "3711", + "ident": "KMSY", + "type": "large_airport", + "name": "Louis Armstrong New Orleans International Airport", + "latitude_deg": "29.99340057373047", + "longitude_deg": "-90.25800323486328", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "yes", + "gps_code": "KMSY", + "iata_code": "MSY", + "local_code": "MSY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Louis_Armstrong_New_Orleans_International_Airport" + }, + { + "id": "313437", + "ident": "KMT", + "type": "closed", + "name": "Kampot Airport", + "latitude_deg": "10.6343", + "longitude_deg": "104.1617", + "elevation_ft": "44", + "continent": "AS", + "iso_country": "KH", + "iso_region": "KH-7", + "municipality": "Kampot", + "scheduled_service": "no", + "iata_code": "KMT" + }, + { + "id": "3712", + "ident": "KMTC", + "type": "medium_airport", + "name": "Selfridge Air National Guard Base Airport", + "latitude_deg": "42.613463", + "longitude_deg": "-82.836919", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Mount Clemens", + "scheduled_service": "no", + "gps_code": "KMTC", + "iata_code": "MTC", + "local_code": "MTC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Selfridge_Air_National_Guard_Base" + }, + { + "id": "20564", + "ident": "KMTH", + "type": "medium_airport", + "name": "The Florida Keys Marathon Airport", + "latitude_deg": "24.726101", + "longitude_deg": "-81.051399", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Marathon", + "scheduled_service": "no", + "gps_code": "KMTH", + "iata_code": "MTH", + "local_code": "MTH", + "home_link": "http://marathonga.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Florida_Keys_Marathon_Airport" + }, + { + "id": "20565", + "ident": "KMTJ", + "type": "medium_airport", + "name": "Montrose Regional Airport", + "latitude_deg": "38.509799957300004", + "longitude_deg": "-107.893997192", + "elevation_ft": "5759", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Montrose", + "scheduled_service": "no", + "gps_code": "KMTJ", + "iata_code": "MTJ", + "local_code": "MTJ" + }, + { + "id": "3713", + "ident": "KMTN", + "type": "medium_airport", + "name": "Martin State Airport", + "latitude_deg": "39.325699", + "longitude_deg": "-76.413803", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Baltimore", + "scheduled_service": "no", + "gps_code": "KMTN", + "iata_code": "MTN", + "local_code": "MTN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Martin_State_Airport" + }, + { + "id": "20566", + "ident": "KMTO", + "type": "small_airport", + "name": "Coles County Memorial Airport", + "latitude_deg": "39.477901", + "longitude_deg": "-88.279198", + "elevation_ft": "722", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mattoon", + "scheduled_service": "no", + "gps_code": "KMTO", + "iata_code": "MTO", + "local_code": "MTO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coles_County_Memorial_Airport", + "keywords": "Charleston" + }, + { + "id": "20567", + "ident": "KMTP", + "type": "small_airport", + "name": "Montauk Airport", + "latitude_deg": "41.0765", + "longitude_deg": "-71.920797", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Montauk", + "scheduled_service": "no", + "gps_code": "KMTP", + "iata_code": "MTP", + "local_code": "MTP", + "home_link": "http://www.themontaukairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Montauk_Airport" + }, + { + "id": "20568", + "ident": "KMTV", + "type": "small_airport", + "name": "Blue Ridge Airport", + "latitude_deg": "36.630699", + "longitude_deg": "-80.018303", + "elevation_ft": "941", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Martinsville", + "scheduled_service": "no", + "gps_code": "KMTV", + "local_code": "MTV" + }, + { + "id": "20569", + "ident": "KMTW", + "type": "small_airport", + "name": "Manitowoc County Airport", + "latitude_deg": "44.127116", + "longitude_deg": "-87.681983", + "elevation_ft": "651", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Manitowoc", + "scheduled_service": "no", + "gps_code": "KMTW", + "iata_code": "MTW", + "local_code": "MTW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manitowoc_County_Airport" + }, + { + "id": "30261", + "ident": "KMUF", + "type": "closed", + "name": "Pikeville Airfield", + "latitude_deg": "37.50285", + "longitude_deg": "-82.536614", + "elevation_ft": "669", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Pikeville", + "scheduled_service": "no", + "keywords": "KMUF" + }, + { + "id": "3714", + "ident": "KMUI", + "type": "medium_airport", + "name": "Muir Army Air Field (Fort Indiantown Gap) Airport", + "latitude_deg": "40.434799", + "longitude_deg": "-76.569397", + "elevation_ft": "488", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Fort Indiantown Gap(Annville)", + "scheduled_service": "no", + "gps_code": "KMUI", + "iata_code": "MUI", + "local_code": "MUI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Muir_Army_Airfield" + }, + { + "id": "20570", + "ident": "KMUL", + "type": "small_airport", + "name": "Spence Airport", + "latitude_deg": "31.141569", + "longitude_deg": "-83.703718", + "elevation_ft": "292", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Moultrie", + "scheduled_service": "no", + "gps_code": "KMUL", + "local_code": "MUL" + }, + { + "id": "3715", + "ident": "KMUO", + "type": "medium_airport", + "name": "Mountain Home Air Force Base", + "latitude_deg": "43.043598", + "longitude_deg": "-115.872002", + "elevation_ft": "2996", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Mountain Home", + "scheduled_service": "no", + "gps_code": "KMUO", + "iata_code": "MUO", + "local_code": "MUO", + "home_link": "http://www.mountainhome.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mountain_Home_Air_Force_Base" + }, + { + "id": "20571", + "ident": "KMUT", + "type": "small_airport", + "name": "Muscatine Municipal Airport", + "latitude_deg": "41.367803", + "longitude_deg": "-91.148201", + "elevation_ft": "547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Muscatine", + "scheduled_service": "no", + "gps_code": "KMUT", + "iata_code": "MUT", + "local_code": "MUT", + "home_link": "https://www.muscatineiowa.gov/550/Muscatine-Municipal-Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Muscatine_Municipal_Airport" + }, + { + "id": "324073", + "ident": "KMUU", + "type": "closed", + "name": "Huntingdon County Airport", + "latitude_deg": "40.329182", + "longitude_deg": "-77.862478", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "scheduled_service": "no", + "gps_code": "KMUU" + }, + { + "id": "20572", + "ident": "KMVC", + "type": "small_airport", + "name": "Monroe County Aeroplex Airport", + "latitude_deg": "31.458", + "longitude_deg": "-87.350996", + "elevation_ft": "419", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Monroeville", + "scheduled_service": "no", + "gps_code": "KMVC", + "iata_code": "MVC", + "local_code": "MVC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monroe_County_Airport_(Alabama)" + }, + { + "id": "20573", + "ident": "KMVE", + "type": "small_airport", + "name": "Montevideo Chippewa County Airport", + "latitude_deg": "44.969101", + "longitude_deg": "-95.710297", + "elevation_ft": "1034", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Montevideo", + "scheduled_service": "no", + "gps_code": "KMVE", + "iata_code": "MVE", + "local_code": "MVE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Montevideo%E2%80%93Chippewa_County_Airport" + }, + { + "id": "20574", + "ident": "KMVI", + "type": "small_airport", + "name": "Monte Vista Municipal Airport", + "latitude_deg": "37.52730178833008", + "longitude_deg": "-106.0479965209961", + "elevation_ft": "7611", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Monte Vista", + "scheduled_service": "no", + "gps_code": "KMVI", + "local_code": "MVI" + }, + { + "id": "20575", + "ident": "KMVL", + "type": "small_airport", + "name": "Morrisville-Stowe State Airport", + "latitude_deg": "44.534599", + "longitude_deg": "-72.613998", + "elevation_ft": "732", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Morrisville", + "scheduled_service": "no", + "gps_code": "KMVL", + "iata_code": "MVL", + "local_code": "MVL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Morrisville-Stowe_State_Airport" + }, + { + "id": "20576", + "ident": "KMVM", + "type": "small_airport", + "name": "Machias Valley Airport", + "latitude_deg": "44.70309829711914", + "longitude_deg": "-67.47859954833984", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Machias", + "scheduled_service": "no", + "gps_code": "KMVM", + "local_code": "MVM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Machias_Valley_Airport" + }, + { + "id": "20577", + "ident": "KMVN", + "type": "small_airport", + "name": "Mount Vernon Outland Airport", + "latitude_deg": "38.322774", + "longitude_deg": "-88.859257", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "KMVN", + "local_code": "MVN", + "home_link": "http://www.mtvernonairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mount_Vernon_Airport" + }, + { + "id": "20578", + "ident": "KMVY", + "type": "small_airport", + "name": "Martha's Vineyard Airport", + "latitude_deg": "41.3931007385", + "longitude_deg": "-70.6143035889", + "elevation_ft": "67", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Martha's Vineyard", + "scheduled_service": "yes", + "gps_code": "KMVY", + "iata_code": "MVY", + "local_code": "MVY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Martha's_Vineyard_Airport" + }, + { + "id": "20579", + "ident": "KMWA", + "type": "small_airport", + "name": "Veterans Airport of Southern Illinois", + "latitude_deg": "37.751208", + "longitude_deg": "-89.016568", + "elevation_ft": "472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "KMWA", + "iata_code": "MWA", + "local_code": "MWA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Veterans_Airport_of_Southern_Illinois", + "keywords": "Williamson County Regional Airport" + }, + { + "id": "20580", + "ident": "KMWC", + "type": "small_airport", + "name": "Lawrence J Timmerman Airport", + "latitude_deg": "43.110401", + "longitude_deg": "-88.034401", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Milwaukee", + "scheduled_service": "no", + "gps_code": "KMWC", + "iata_code": "MWC", + "local_code": "MWC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lawrence_J._Timmerman_Airport" + }, + { + "id": "20581", + "ident": "KMWH", + "type": "medium_airport", + "name": "Grant County International Airport", + "latitude_deg": "47.20769882", + "longitude_deg": "-119.3199997", + "elevation_ft": "1189", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Moses Lake", + "scheduled_service": "no", + "gps_code": "KMWH", + "iata_code": "MWH", + "local_code": "MWH", + "home_link": "http://www.portofmoseslake.com/the-center-of-washington-aviation/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grant_County_International_Airport", + "keywords": "LRN, Larson AFB, Moses Lake AFB, Moses Lake AAB" + }, + { + "id": "20582", + "ident": "KMWK", + "type": "small_airport", + "name": "Mount Airy Surry County Airport", + "latitude_deg": "36.45970154", + "longitude_deg": "-80.5530014", + "elevation_ft": "1249", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Mount Airy", + "scheduled_service": "no", + "gps_code": "KMWK", + "local_code": "MWK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mount_Airy/Surry_County_Airport" + }, + { + "id": "20583", + "ident": "KMWL", + "type": "small_airport", + "name": "Mineral Wells Regional Airport", + "latitude_deg": "32.781601", + "longitude_deg": "-98.060204", + "elevation_ft": "974", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineral Wells", + "scheduled_service": "no", + "gps_code": "KMWL", + "iata_code": "MWL", + "local_code": "MWL", + "home_link": "http://www.mineralwellsairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mineral_Wells_Airport", + "keywords": "CWO, Fort Wolters AAF." + }, + { + "id": "20584", + "ident": "KMWM", + "type": "small_airport", + "name": "Windom Municipal Airport", + "latitude_deg": "43.91339874267578", + "longitude_deg": "-95.1093978881836", + "elevation_ft": "1410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Windom", + "scheduled_service": "no", + "gps_code": "KMWM", + "local_code": "MWM" + }, + { + "id": "20585", + "ident": "KMWO", + "type": "small_airport", + "name": "Middletown Regional Airport", + "latitude_deg": "39.530998", + "longitude_deg": "-84.395302", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Middletown", + "scheduled_service": "no", + "gps_code": "KMWO", + "iata_code": "MWO", + "local_code": "MWO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Middletown_Regional_Airport", + "keywords": "Hook Field Municipal Airport" + }, + { + "id": "20586", + "ident": "KMXA", + "type": "small_airport", + "name": "Manila Municipal Airport", + "latitude_deg": "35.894402", + "longitude_deg": "-90.154602", + "elevation_ft": "242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Manila", + "scheduled_service": "no", + "gps_code": "KMXA", + "iata_code": "MXA", + "local_code": "MXA", + "home_link": "http://fly.arkansas.gov/uploads/7/5/7/7/75772239/manila.pdf", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manila_Municipal_Airport" + }, + { + "id": "3716", + "ident": "KMXF", + "type": "medium_airport", + "name": "Maxwell Air Force Base", + "latitude_deg": "32.3829", + "longitude_deg": "-86.365799", + "elevation_ft": "171", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Montgomery", + "scheduled_service": "no", + "gps_code": "KMXF", + "iata_code": "MXF", + "local_code": "MXF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maxwell_Air_Force_Base" + }, + { + "id": "20587", + "ident": "KMXO", + "type": "small_airport", + "name": "Monticello Regional Airport", + "latitude_deg": "42.22040176", + "longitude_deg": "-91.16329956", + "elevation_ft": "832", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Monticello", + "scheduled_service": "no", + "gps_code": "KMXO", + "local_code": "MXO" + }, + { + "id": "20588", + "ident": "KMY", + "type": "seaplane_base", + "name": "Moser Bay Seaplane Base", + "latitude_deg": "57.0256", + "longitude_deg": "-154.145996", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Moser Bay", + "scheduled_service": "no", + "iata_code": "KMY", + "local_code": "KMY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moser_Bay_Seaplane_Base" + }, + { + "id": "20589", + "ident": "KMYF", + "type": "small_airport", + "name": "Montgomery-Gibbs Executive Airport", + "latitude_deg": "32.8157", + "longitude_deg": "-117.139999", + "elevation_ft": "427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no", + "gps_code": "KMYF", + "iata_code": "MYF", + "local_code": "MYF", + "home_link": "http://www.sandiego.gov/airports/montgomery/index.shtml", + "wikipedia_link": "https://en.wikipedia.org/wiki/Montgomery_Field", + "keywords": "Montgomery Field" + }, + { + "id": "20590", + "ident": "KMYJ", + "type": "small_airport", + "name": "Mexico Memorial Airport", + "latitude_deg": "39.157501220703125", + "longitude_deg": "-91.81829833984375", + "elevation_ft": "823", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Mexico", + "scheduled_service": "no", + "gps_code": "KMYJ", + "local_code": "MYJ" + }, + { + "id": "20591", + "ident": "KMYL", + "type": "medium_airport", + "name": "McCall Municipal Airport", + "latitude_deg": "44.88970184", + "longitude_deg": "-116.1009979", + "elevation_ft": "5024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "McCall", + "scheduled_service": "no", + "gps_code": "KMYL", + "iata_code": "MYL", + "local_code": "MYL", + "home_link": "http://www.mccall.id.us/services/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/McCall_Municipal_Airport" + }, + { + "id": "3717", + "ident": "KMYR", + "type": "medium_airport", + "name": "Myrtle Beach International Airport", + "latitude_deg": "33.6796989441", + "longitude_deg": "-78.9282989502", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Myrtle Beach", + "scheduled_service": "yes", + "gps_code": "KMYR", + "iata_code": "MYR", + "local_code": "MYR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Myrtle_Beach_International_Airport" + }, + { + "id": "3718", + "ident": "KMYV", + "type": "medium_airport", + "name": "Yuba County Airport", + "latitude_deg": "39.09780121", + "longitude_deg": "-121.5699997", + "elevation_ft": "64", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Marysville", + "scheduled_service": "no", + "gps_code": "KMYV", + "iata_code": "MYV", + "local_code": "MYV", + "home_link": "http://www.yubacoairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yuba_County_Airport", + "keywords": "Marysville AAF" + }, + { + "id": "20592", + "ident": "KMYZ", + "type": "small_airport", + "name": "Marysville Municipal Airport", + "latitude_deg": "39.85530090332031", + "longitude_deg": "-96.63059997558594", + "elevation_ft": "1283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Marysville", + "scheduled_service": "no", + "gps_code": "KMYZ", + "local_code": "MYZ" + }, + { + "id": "20593", + "ident": "KMZH", + "type": "small_airport", + "name": "Moose Lake Carlton County Airport", + "latitude_deg": "46.418800354003906", + "longitude_deg": "-92.80470275878906", + "elevation_ft": "1076", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Moose Lake", + "scheduled_service": "no", + "gps_code": "KMZH", + "local_code": "MZH" + }, + { + "id": "20594", + "ident": "KMZJ", + "type": "small_airport", + "name": "Pinal Airpark", + "latitude_deg": "32.5106010437", + "longitude_deg": "-111.32800293", + "elevation_ft": "1893", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Marana", + "scheduled_service": "no", + "gps_code": "KMZJ", + "iata_code": "MZJ", + "local_code": "MZJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pinal_Airpark" + }, + { + "id": "20595", + "ident": "KMZZ", + "type": "small_airport", + "name": "Marion Municipal Airport", + "latitude_deg": "40.4898986816", + "longitude_deg": "-85.6797027588", + "elevation_ft": "859", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "KMZZ", + "iata_code": "MZZ", + "local_code": "MZZ", + "home_link": "http://kmzzairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marion_Municipal_Airport_(Indiana)" + }, + { + "id": "20596", + "ident": "KN03", + "type": "small_airport", + "name": "Cortland County Chase Field", + "latitude_deg": "42.59260178", + "longitude_deg": "-76.21489716", + "elevation_ft": "1198", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Cortland", + "scheduled_service": "no", + "gps_code": "KN03", + "iata_code": "CTX", + "local_code": "N03", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cortland_County_Airport" + }, + { + "id": "20597", + "ident": "KN06", + "type": "small_airport", + "name": "Laurel Airport", + "latitude_deg": "38.542198", + "longitude_deg": "-75.594398", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Laurel", + "scheduled_service": "no", + "local_code": "N06", + "wikipedia_link": "https://en.wikipedia.org/wiki/Western_Sussex_Airport", + "keywords": "Western Sussex Airport-Booth Field" + }, + { + "id": "20598", + "ident": "KN12", + "type": "small_airport", + "name": "Lakewood Airport", + "latitude_deg": "40.06679916381836", + "longitude_deg": "-74.17769622802734", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Lakewood", + "scheduled_service": "no", + "gps_code": "KN12", + "local_code": "N12" + }, + { + "id": "20599", + "ident": "KN13", + "type": "small_airport", + "name": "Bloomsburg Municipal Airport", + "latitude_deg": "40.997676", + "longitude_deg": "-76.435256", + "elevation_ft": "481", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bloomsburg", + "scheduled_service": "no", + "gps_code": "KN13", + "local_code": "N13" + }, + { + "id": "20600", + "ident": "KN14", + "type": "small_airport", + "name": "Flying W Airport", + "latitude_deg": "39.93429946899414", + "longitude_deg": "-74.80729675292969", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Lumberton", + "scheduled_service": "no", + "gps_code": "KN14", + "local_code": "N14" + }, + { + "id": "20601", + "ident": "KN19", + "type": "small_airport", + "name": "Aztec Municipal Airport", + "latitude_deg": "36.836951", + "longitude_deg": "-108.028914", + "elevation_ft": "5877", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Aztec", + "scheduled_service": "no", + "local_code": "N19" + }, + { + "id": "20602", + "ident": "KN23", + "type": "small_airport", + "name": "Sidney Municipal Airport", + "latitude_deg": "42.302600860596", + "longitude_deg": "-75.416000366211", + "elevation_ft": "1027", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Sidney", + "scheduled_service": "no", + "gps_code": "N23", + "iata_code": "SXY", + "local_code": "N23", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sidney_Municipal_Airport_(New_York)" + }, + { + "id": "20603", + "ident": "KN24", + "type": "small_airport", + "name": "Questa Municipal Nr 2 Airport", + "latitude_deg": "36.80030059814453", + "longitude_deg": "-105.5979995727539", + "elevation_ft": "7700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Questa", + "scheduled_service": "no", + "gps_code": "KN24", + "local_code": "N24" + }, + { + "id": "20604", + "ident": "KN27", + "type": "small_airport", + "name": "Bradford County Airport", + "latitude_deg": "41.7400016784668", + "longitude_deg": "-76.44709777832031", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Towanda", + "scheduled_service": "no", + "gps_code": "KN27", + "local_code": "N27" + }, + { + "id": "20605", + "ident": "KN35", + "type": "small_airport", + "name": "Punxsutawney Municipal Airport", + "latitude_deg": "40.96670150756836", + "longitude_deg": "-78.93000030517578", + "elevation_ft": "1439", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Punxsutawney", + "scheduled_service": "no", + "gps_code": "KN35", + "local_code": "N35" + }, + { + "id": "20606", + "ident": "KN37", + "type": "small_airport", + "name": "Monticello Airport", + "latitude_deg": "41.622501373291016", + "longitude_deg": "-74.70130157470703", + "elevation_ft": "1545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Monticello", + "scheduled_service": "no", + "gps_code": "KN37", + "local_code": "N37" + }, + { + "id": "20607", + "ident": "KN38", + "type": "small_airport", + "name": "Wellsboro Johnston Airport", + "latitude_deg": "41.72790146", + "longitude_deg": "-77.39649963", + "elevation_ft": "1892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wellsboro", + "scheduled_service": "no", + "gps_code": "KN38", + "local_code": "N38" + }, + { + "id": "20608", + "ident": "KN40", + "type": "small_airport", + "name": "Sky Manor Airport", + "latitude_deg": "40.56629943847656", + "longitude_deg": "-74.97859954833984", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Pittstown", + "scheduled_service": "no", + "gps_code": "KN40", + "local_code": "N40", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sky_Manor_Airport_(New_Jersey)" + }, + { + "id": "20609", + "ident": "KN47", + "type": "small_airport", + "name": "Pottstown Municipal Airport", + "latitude_deg": "40.26029968261719", + "longitude_deg": "-75.6707992553711", + "elevation_ft": "256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pottstown", + "scheduled_service": "no", + "gps_code": "KN47", + "local_code": "N47", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pottstown_Municipal_Airport" + }, + { + "id": "20610", + "ident": "KN51", + "type": "small_airport", + "name": "Solberg Hunterdon Airport", + "latitude_deg": "40.583698", + "longitude_deg": "-74.736198", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Whitehouse Station", + "scheduled_service": "no", + "gps_code": "KN51", + "local_code": "N51", + "wikipedia_link": "https://en.wikipedia.org/wiki/Solberg-Hunterdon_Airport" + }, + { + "id": "20611", + "ident": "KN52", + "type": "small_airport", + "name": "Jaars Townsend Airport", + "latitude_deg": "34.8638", + "longitude_deg": "-80.748001", + "elevation_ft": "602", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Waxhaw", + "scheduled_service": "no", + "local_code": "N52", + "keywords": "NC18" + }, + { + "id": "20612", + "ident": "KN53", + "type": "small_airport", + "name": "Stroudsburg Pocono Airport", + "latitude_deg": "41.0358009338", + "longitude_deg": "-75.1605987549", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "East Stroudsburg", + "scheduled_service": "no", + "gps_code": "KN53", + "iata_code": "ESP", + "local_code": "N53", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stroudsburg-Pocono_Airport" + }, + { + "id": "20613", + "ident": "KN57", + "type": "small_airport", + "name": "New Garden Airport", + "latitude_deg": "39.830501556396484", + "longitude_deg": "-75.76969909667969", + "elevation_ft": "436", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Toughkenamon", + "scheduled_service": "no", + "gps_code": "KN57", + "local_code": "N57", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Garden_Airport" + }, + { + "id": "20614", + "ident": "KN58", + "type": "small_airport", + "name": "Tiger Field", + "latitude_deg": "39.559600830078125", + "longitude_deg": "-119.24099731445312", + "elevation_ft": "4346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Fernley", + "scheduled_service": "no", + "gps_code": "KN58", + "local_code": "N58", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tiger_Field" + }, + { + "id": "20615", + "ident": "KN59", + "type": "small_airport", + "name": "Rosaschi Air Park", + "latitude_deg": "38.839401", + "longitude_deg": "-119.337997", + "elevation_ft": "4809", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Smith", + "scheduled_service": "no", + "local_code": "N59", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rosaschi_Air_Park" + }, + { + "id": "20616", + "ident": "KN66", + "type": "small_airport", + "name": "Albert S Nader Regional Airport", + "latitude_deg": "42.5247", + "longitude_deg": "-75.0644", + "elevation_ft": "1763", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Oneonta", + "scheduled_service": "no", + "local_code": "N66", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oneonta_Municipal_Airport", + "keywords": "Oneonta Municipal" + }, + { + "id": "20617", + "ident": "KN68", + "type": "small_airport", + "name": "Franklin County Regional Airport", + "latitude_deg": "39.973099", + "longitude_deg": "-77.643303", + "elevation_ft": "697", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Chambersburg", + "scheduled_service": "no", + "gps_code": "KN68", + "local_code": "N68", + "wikipedia_link": "https://en.wikipedia.org/wiki/Franklin_County_Regional_Airport" + }, + { + "id": "20618", + "ident": "KN69", + "type": "small_airport", + "name": "Stormville Airport", + "latitude_deg": "41.577", + "longitude_deg": "-73.732399", + "elevation_ft": "358", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Stormville", + "scheduled_service": "no", + "local_code": "N69", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stormville_Airport" + }, + { + "id": "20620", + "ident": "KN71", + "type": "small_airport", + "name": "Donegal Springs Airpark", + "latitude_deg": "40.092201232910156", + "longitude_deg": "-76.57440185546875", + "elevation_ft": "458", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mount Joy/Marietta", + "scheduled_service": "no", + "gps_code": "KN71", + "local_code": "N71" + }, + { + "id": "20621", + "ident": "KN73", + "type": "small_airport", + "name": "Red Lion Airport", + "latitude_deg": "39.904202", + "longitude_deg": "-74.749496", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Vincentown", + "scheduled_service": "no", + "gps_code": "JY73", + "local_code": "JY73", + "keywords": "N73" + }, + { + "id": "20623", + "ident": "KN79", + "type": "small_airport", + "name": "Northumberland County Airport", + "latitude_deg": "40.83689880371094", + "longitude_deg": "-76.55249786376953", + "elevation_ft": "881", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Shamokin", + "scheduled_service": "no", + "gps_code": "KN79", + "local_code": "N79" + }, + { + "id": "20624", + "ident": "KN81", + "type": "small_airport", + "name": "Hammonton Municipal Airport", + "latitude_deg": "39.66749954", + "longitude_deg": "-74.75769806", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Hammonton", + "scheduled_service": "no", + "gps_code": "KN81", + "local_code": "N81" + }, + { + "id": "20625", + "ident": "KN82", + "type": "small_airport", + "name": "Wurtsboro-Sullivan County Airport", + "latitude_deg": "41.597991", + "longitude_deg": "-74.459467", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Wurtsboro", + "scheduled_service": "no", + "local_code": "N82" + }, + { + "id": "20626", + "ident": "KN87", + "type": "small_airport", + "name": "Trenton Robbinsville Airport", + "latitude_deg": "40.21390152", + "longitude_deg": "-74.60179901", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Robbinsville", + "scheduled_service": "no", + "gps_code": "N87", + "local_code": "N87", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trenton-Robbinsville_Airport" + }, + { + "id": "20627", + "ident": "KN89", + "type": "small_airport", + "name": "Joseph Y Resnick Airport", + "latitude_deg": "41.7279014587", + "longitude_deg": "-74.37740325930001", + "elevation_ft": "292", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Ellenville", + "scheduled_service": "no", + "gps_code": "N89", + "local_code": "N89" + }, + { + "id": "20628", + "ident": "KN94", + "type": "small_airport", + "name": "Carlisle Airport", + "latitude_deg": "40.18790054321289", + "longitude_deg": "-77.17430114746094", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Carlisle", + "scheduled_service": "no", + "gps_code": "KN94", + "local_code": "N94" + }, + { + "id": "20629", + "ident": "KN96", + "type": "small_airport", + "name": "Bellefonte Airport", + "latitude_deg": "40.885501861572266", + "longitude_deg": "-77.81629943847656", + "elevation_ft": "1071", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bellefonte", + "scheduled_service": "no", + "gps_code": "KN96", + "local_code": "N96" + }, + { + "id": "20630", + "ident": "KN98", + "type": "small_airport", + "name": "Boyne City Municipal Airport", + "latitude_deg": "45.20830154418945", + "longitude_deg": "-84.99030303955078", + "elevation_ft": "657", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Boyne City", + "scheduled_service": "no", + "gps_code": "KN98", + "local_code": "N98" + }, + { + "id": "3719", + "ident": "KNBC", + "type": "medium_airport", + "name": "Beaufort MCAS - Merritt Field", + "latitude_deg": "32.4774017334", + "longitude_deg": "-80.723197937", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Beaufort", + "scheduled_service": "no", + "gps_code": "KNBC", + "local_code": "NBC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marine_Corps_Air_Station_Beaufort", + "keywords": "BFT" + }, + { + "id": "3720", + "ident": "KNBG", + "type": "medium_airport", + "name": "New Orleans NAS JRB/Alvin Callender Field", + "latitude_deg": "29.82530022", + "longitude_deg": "-90.03500366", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no", + "gps_code": "KNBG", + "iata_code": "NBG", + "local_code": "NBG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Station_Joint_Reserve_Base_New_Orleans" + }, + { + "id": "20632", + "ident": "KNBJ", + "type": "small_airport", + "name": "Naval Outlying Field Barin", + "latitude_deg": "30.389099121100003", + "longitude_deg": "-87.63529968259999", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Foley", + "scheduled_service": "no", + "gps_code": "KNBJ", + "iata_code": "NHX", + "local_code": "NBJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Outlying_Field_Barin", + "keywords": "Barin NOLF" + }, + { + "id": "3721", + "ident": "KNCA", + "type": "medium_airport", + "name": "MCAS New River / McCutcheon Field", + "latitude_deg": "34.708401", + "longitude_deg": "-77.439697", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "KNCA", + "local_code": "NCA", + "keywords": "New River MCAS" + }, + { + "id": "20633", + "ident": "KNDY", + "type": "small_airport", + "name": "Dahlgren Naval Surface Warfare Center Airport", + "latitude_deg": "38.33250046", + "longitude_deg": "-77.03720093", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Dahlgren", + "scheduled_service": "no", + "gps_code": "KNDY", + "iata_code": "DGN", + "local_code": "NDY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Surface_Warfare_Center_Dahlgren_Division" + }, + { + "id": "20634", + "ident": "KNDZ", + "type": "medium_airport", + "name": "Whiting Field Naval Air Station South Airport", + "latitude_deg": "30.70439910888672", + "longitude_deg": "-87.02300262451172", + "elevation_ft": "177", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "KNDZ", + "local_code": "NDZ" + }, + { + "id": "3722", + "ident": "KNEL", + "type": "medium_airport", + "name": "Lakehurst Maxfield Field Airport", + "latitude_deg": "40.03329849", + "longitude_deg": "-74.353302", + "elevation_ft": "101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Lakehurst", + "scheduled_service": "no", + "gps_code": "KNEL", + "iata_code": "NEL", + "local_code": "NEL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Engineering_Station_Lakehurst", + "keywords": "Maxfield Field, Hindenburg, Lakehurst NAES, Lakehurst Naval Air Engineering Station" + }, + { + "id": "20635", + "ident": "KNEN", + "type": "small_airport", + "name": "Whitehouse Naval Outlying Field", + "latitude_deg": "30.353900909424", + "longitude_deg": "-81.87190246582", + "elevation_ft": "99", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "KNEN", + "iata_code": "NEN", + "local_code": "NEN", + "keywords": "Whitehouse NOLF" + }, + { + "id": "3723", + "ident": "KNEW", + "type": "medium_airport", + "name": "Lakefront Airport", + "latitude_deg": "30.042400360107", + "longitude_deg": "-90.028297424316", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no", + "gps_code": "KNEW", + "iata_code": "NEW", + "local_code": "NEW", + "home_link": "http://www.lakefrontairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Orleans_Lakefront_Airport" + }, + { + "id": "20636", + "ident": "KNFD", + "type": "small_airport", + "name": "Summerdale Naval Outlying Field", + "latitude_deg": "30.5077", + "longitude_deg": "-87.6455", + "elevation_ft": "149", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Summerdale", + "scheduled_service": "no", + "gps_code": "KNFD", + "local_code": "NFD" + }, + { + "id": "20637", + "ident": "KNFE", + "type": "small_airport", + "name": "Fentress Naval Auxiliary Landing Field", + "latitude_deg": "36.691641", + "longitude_deg": "-76.134996", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fentress", + "scheduled_service": "no", + "gps_code": "KNFE", + "local_code": "NFE" + }, + { + "id": "3724", + "ident": "KNFG", + "type": "medium_airport", + "name": "Camp Pendleton MCAS (Munn Field) Airport", + "latitude_deg": "33.30130005", + "longitude_deg": "-117.3550034", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceanside", + "scheduled_service": "no", + "gps_code": "KNFG", + "local_code": "NFG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marine_Corps_Air_Station_Camp_Pendleton", + "keywords": "Camp Pendleton MCAS" + }, + { + "id": "20638", + "ident": "KNFJ", + "type": "small_airport", + "name": "Choctaw Nolf Airport", + "latitude_deg": "30.506900787353516", + "longitude_deg": "-86.95970153808594", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "KNFJ", + "local_code": "NFJ" + }, + { + "id": "3725", + "ident": "KNFL", + "type": "medium_airport", + "name": "Fallon Naval Air Station", + "latitude_deg": "39.41659927", + "longitude_deg": "-118.7009964", + "elevation_ft": "3934", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Fallon", + "scheduled_service": "no", + "gps_code": "KNFL", + "iata_code": "NFL", + "local_code": "NFL", + "home_link": "http://www.cnic.navy.mil/regions/cnrsw/installations/nas_fallon.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Station_Fallon", + "keywords": "Van Voorhis Field, Fallon NAS" + }, + { + "id": "20639", + "ident": "KNFW", + "type": "medium_airport", + "name": "NAS Fort Worth JRB / Carswell Field", + "latitude_deg": "32.769199", + "longitude_deg": "-97.441498", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "KNFW", + "iata_code": "FWH", + "local_code": "NFW", + "home_link": "http://www.cnic.navy.mil/regions/cnrse/installations/nas_jrb_fort_worth.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Station_Joint_Reserve_Base_Fort_Worth", + "keywords": "Carswell AFB, Tarrant Field" + }, + { + "id": "3726", + "ident": "KNGP", + "type": "medium_airport", + "name": "Corpus Christi Naval Air Station/Truax Field", + "latitude_deg": "27.69260025", + "longitude_deg": "-97.29109955", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no", + "gps_code": "KNGP", + "local_code": "NGP" + }, + { + "id": "20640", + "ident": "KNGS", + "type": "small_airport", + "name": "Santa Rosa Naval Outlying Field Airport", + "latitude_deg": "30.6108", + "longitude_deg": "-86.940002", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "KNGS", + "local_code": "NGS" + }, + { + "id": "3727", + "ident": "KNGU", + "type": "medium_airport", + "name": "Norfolk Naval Station (Chambers Field)", + "latitude_deg": "36.937599", + "longitude_deg": "-76.289299", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Norfolk", + "scheduled_service": "no", + "gps_code": "KNGU", + "iata_code": "NGU", + "local_code": "NGU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Station_Norfolk" + }, + { + "id": "20641", + "ident": "KNGW", + "type": "small_airport", + "name": "Cabaniss Field Naval Outlying Landing Field", + "latitude_deg": "27.704426", + "longitude_deg": "-97.440578", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no", + "gps_code": "KNGW", + "local_code": "NGW" + }, + { + "id": "29651", + "ident": "KNGZ", + "type": "closed", + "name": "Alameda Naval Air Station", + "latitude_deg": "37.78889846801758", + "longitude_deg": "-122.31999969482422", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Alameda", + "scheduled_service": "no", + "gps_code": "KNGZ", + "iata_code": "NGZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Station_Alameda", + "keywords": "Naval Air Station" + }, + { + "id": "3728", + "ident": "KNHK", + "type": "medium_airport", + "name": "Patuxent River Naval Air Station (Trapnell Field)", + "latitude_deg": "38.285999", + "longitude_deg": "-76.411797", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Patuxent River", + "scheduled_service": "no", + "gps_code": "KNHK", + "iata_code": "NHK", + "local_code": "NHK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Station_Patuxent_River" + }, + { + "id": "20642", + "ident": "KNHL", + "type": "closed", + "name": "Wolf NOLF Airport", + "latitude_deg": "30.3461", + "longitude_deg": "-87.541702", + "elevation_ft": "61", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Joesphine", + "scheduled_service": "no", + "gps_code": "KNHL", + "local_code": "KNHL" + }, + { + "id": "300162", + "ident": "KNHU", + "type": "heliport", + "name": "Norfolk Naval Station Airport", + "latitude_deg": "36.955636", + "longitude_deg": "-76.30353", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Norfolk", + "scheduled_service": "no", + "gps_code": "KNHU", + "local_code": "NHU" + }, + { + "id": "3729", + "ident": "KNHZ", + "type": "medium_airport", + "name": "Brunswick Executive Airport", + "latitude_deg": "43.89220047", + "longitude_deg": "-69.93859863", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Brunswick", + "scheduled_service": "no", + "gps_code": "KBXM", + "iata_code": "NHZ", + "local_code": "BXM", + "home_link": "http://mrra.us/brunswick-executive-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brunswick_Executive_Airport", + "keywords": "KHNZ, Brunswick NAS" + }, + { + "id": "20643", + "ident": "KNID", + "type": "medium_airport", + "name": "China Lake Naws (Armitage Field) Airport", + "latitude_deg": "35.6853981", + "longitude_deg": "-117.6920013", + "elevation_ft": "2283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "China Lake", + "scheduled_service": "no", + "gps_code": "KNID", + "local_code": "NID", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Weapons_Station_China_Lake" + }, + { + "id": "3730", + "ident": "KNIP", + "type": "medium_airport", + "name": "Jacksonville Naval Air Station (Towers Field)", + "latitude_deg": "30.2358", + "longitude_deg": "-81.680603", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "KNIP", + "iata_code": "NIP", + "local_code": "NIP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Station_Jacksonville" + }, + { + "id": "3731", + "ident": "KNJK", + "type": "medium_airport", + "name": "El Centro NAF Airport (Vraciu Field)", + "latitude_deg": "32.829201", + "longitude_deg": "-115.671996", + "elevation_ft": "-42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "El Centro", + "scheduled_service": "no", + "gps_code": "KNJK", + "iata_code": "NJK", + "local_code": "NJK", + "home_link": "https://www.cnic.navy.mil/regions/cnrsw/installations/naf_el_centro.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Facility_El_Centro", + "keywords": "Naval Air Facility El Centro, MCAS El Centro" + }, + { + "id": "20644", + "ident": "KNJM", + "type": "small_airport", + "name": "Bogue Field Mcalf Airport", + "latitude_deg": "34.69039917", + "longitude_deg": "-77.02970123", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Swansboro", + "scheduled_service": "no", + "gps_code": "KNJM", + "local_code": "NJM" + }, + { + "id": "30551", + "ident": "KNJP", + "type": "closed", + "name": "Warminster Naval Air Warfare Center", + "latitude_deg": "40.20029830932617", + "longitude_deg": "-75.06639862060547", + "elevation_ft": "381", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "KNJP", + "local_code": "NJP" + }, + { + "id": "20645", + "ident": "KNJW", + "type": "small_airport", + "name": "Joe Williams Nolf Airport", + "latitude_deg": "32.7961998", + "longitude_deg": "-88.83170319", + "elevation_ft": "539", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Meridian", + "scheduled_service": "no", + "gps_code": "KNJW", + "local_code": "NJW" + }, + { + "id": "20646", + "ident": "KNKL", + "type": "closed", + "name": "Holley Naval Outlying Field", + "latitude_deg": "30.425301", + "longitude_deg": "-86.893898", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Walton Beach", + "scheduled_service": "no", + "keywords": "KNKL, NKL" + }, + { + "id": "3732", + "ident": "KNKT", + "type": "medium_airport", + "name": "Cherry Point MCAS /Cunningham Field/", + "latitude_deg": "34.90090179", + "longitude_deg": "-76.88069916", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Cherry Point", + "scheduled_service": "no", + "gps_code": "KNKT", + "local_code": "NKT", + "keywords": "Cherry Point MCAS" + }, + { + "id": "3733", + "ident": "KNKX", + "type": "medium_airport", + "name": "Miramar Marine Corps Air Station - Mitscher Field", + "latitude_deg": "32.86840057", + "longitude_deg": "-117.1429977", + "elevation_ft": "477", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no", + "gps_code": "KNKX", + "iata_code": "NKX", + "local_code": "NKX", + "home_link": "http://www.miramar.marines.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marine_Corps_Air_Station_Miramar", + "keywords": "Miramar MCAS" + }, + { + "id": "312856", + "ident": "KNL", + "type": "closed", + "name": "Kelanoa Airport", + "latitude_deg": "-6.01", + "longitude_deg": "147.49", + "elevation_ft": "40", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Kelanoa", + "scheduled_service": "no", + "iata_code": "KNL" + }, + { + "id": "20647", + "ident": "KNLC", + "type": "medium_airport", + "name": "Lemoore Naval Air Station (Reeves Field) Airport", + "latitude_deg": "36.33300018", + "longitude_deg": "-119.9520035", + "elevation_ft": "232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lemoore", + "scheduled_service": "no", + "gps_code": "KNLC", + "iata_code": "NLC", + "local_code": "NLC", + "home_link": "http://www.cnic.navy.mil/regions/cnrsw/installations/nas_lemoore.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Station_Lemoore" + }, + { + "id": "300161", + "ident": "KNLW", + "type": "heliport", + "name": "Naval Station Newport Helipad", + "latitude_deg": "41.5038888889", + "longitude_deg": "-71.3258333333", + "elevation_ft": "1", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "KNLW" + }, + { + "id": "3734", + "ident": "KNMM", + "type": "medium_airport", + "name": "Meridian Naval Air Station", + "latitude_deg": "32.55210114", + "longitude_deg": "-88.55560303", + "elevation_ft": "316", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Meridian", + "scheduled_service": "no", + "gps_code": "KNMM", + "local_code": "NMM" + }, + { + "id": "20648", + "ident": "KNOG", + "type": "small_airport", + "name": "Orange Grove Naval Auxiliary Landing Field", + "latitude_deg": "27.901100158691406", + "longitude_deg": "-98.05169677734375", + "elevation_ft": "257", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Orange Grove", + "scheduled_service": "no", + "gps_code": "KNOG", + "local_code": "NOG" + }, + { + "id": "35135", + "ident": "KNOP", + "type": "closed", + "name": "Floyd Bennett Field", + "latitude_deg": "40.591", + "longitude_deg": "-73.890999", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "New York", + "scheduled_service": "no", + "home_link": "http://www.floydbennett.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Floyd_Bennett_Field", + "keywords": "NAS New York, Naval Air Station New York, NOP, KNOP, CGAS Brooklyn, Coast Guard Air Station Brooklyn, Barren Island" + }, + { + "id": "20649", + "ident": "KNOW", + "type": "small_airport", + "name": "Port Angeles Cgas Airport", + "latitude_deg": "48.14149856567383", + "longitude_deg": "-123.41400146484375", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Port Angeles", + "scheduled_service": "no", + "gps_code": "KNOW", + "local_code": "NOW" + }, + { + "id": "3735", + "ident": "KNPA", + "type": "medium_airport", + "name": "Naval Air Station Pensacola Forrest Sherman Field", + "latitude_deg": "30.352699", + "longitude_deg": "-87.318604", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pensacola", + "scheduled_service": "no", + "gps_code": "KNPA", + "iata_code": "NPA", + "local_code": "NPA", + "home_link": "http://www.cnic.navy.mil/regions/cnrse/installations/nas_pensacola.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Station_Pensacola", + "keywords": "NAS, KNAS" + }, + { + "id": "300164", + "ident": "KNPI", + "type": "heliport", + "name": "Site 8 NOLF", + "latitude_deg": "30.5430555556", + "longitude_deg": "-87.3680555556", + "elevation_ft": "132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pensacola", + "scheduled_service": "no", + "gps_code": "KNPI" + }, + { + "id": "3736", + "ident": "KNQA", + "type": "medium_airport", + "name": "Millington-Memphis Airport", + "latitude_deg": "35.356701", + "longitude_deg": "-89.8703", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Millington", + "scheduled_service": "no", + "gps_code": "KNQA", + "iata_code": "NQA", + "local_code": "NQA", + "home_link": "https://millingtonairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Millington-Memphis_Airport", + "keywords": "Millington Municipal, NAS Memphis, Millington Regional Jetport" + }, + { + "id": "20650", + "ident": "KNQB", + "type": "small_airport", + "name": "Silverhill Naval Outlying Landing Field", + "latitude_deg": "30.563601", + "longitude_deg": "-87.8097", + "elevation_ft": "129", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Daphne", + "scheduled_service": "no", + "gps_code": "KNQB", + "local_code": "KNQB" + }, + { + "id": "3737", + "ident": "KNQI", + "type": "medium_airport", + "name": "Kingsville Naval Air Station", + "latitude_deg": "27.5072002411", + "longitude_deg": "-97.8097000122", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kingsville", + "scheduled_service": "no", + "gps_code": "KNQI", + "iata_code": "NQI", + "local_code": "NQI", + "home_link": "http://www.cnic.navy.mil/regions/cnrse/installations/nas_kingsville.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Station_Kingsville" + }, + { + "id": "3738", + "ident": "KNQX", + "type": "medium_airport", + "name": "Naval Air Station Key West/Boca Chica Field", + "latitude_deg": "24.57579994", + "longitude_deg": "-81.68890381", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Key West", + "scheduled_service": "no", + "gps_code": "KNQX", + "iata_code": "NQX", + "local_code": "NQX", + "home_link": "http://www.cnic.navy.mil/regions/cnrse/installations/nas_key_west.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Station_Key_West" + }, + { + "id": "20651", + "ident": "KNRA", + "type": "small_airport", + "name": "Coupeville Nolf Airport", + "latitude_deg": "48.18830108642578", + "longitude_deg": "-122.63200378417969", + "elevation_ft": "199", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Coupeville", + "scheduled_service": "no", + "gps_code": "KNRA", + "local_code": "NRA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Outlying_Field_Coupeville" + }, + { + "id": "20652", + "ident": "KNRB", + "type": "medium_airport", + "name": "Naval Station Mayport (Admiral David L. Mcdonald Field)", + "latitude_deg": "30.39109993", + "longitude_deg": "-81.42469788", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Mayport", + "scheduled_service": "no", + "gps_code": "KNRB", + "iata_code": "NRB", + "local_code": "NRB", + "home_link": "http://www.cnic.navy.mil/regions/cnrse/installations/ns_mayport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Station_Mayport" + }, + { + "id": "20653", + "ident": "KNRN", + "type": "small_airport", + "name": "Norton Municipal Airport", + "latitude_deg": "39.850399017333984", + "longitude_deg": "-99.89469909667969", + "elevation_ft": "2383", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Norton", + "scheduled_service": "no", + "gps_code": "KNRN", + "local_code": "NRN" + }, + { + "id": "20654", + "ident": "KNRQ", + "type": "small_airport", + "name": "Spencer Nolf Airport", + "latitude_deg": "30.62529945373535", + "longitude_deg": "-87.13999938964844", + "elevation_ft": "151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pace", + "scheduled_service": "no", + "gps_code": "KNRQ", + "local_code": "NRQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Outlying_Field_Spencer" + }, + { + "id": "20655", + "ident": "KNRS", + "type": "small_airport", + "name": "Naval Outlying Field Imperial Beach (Ream Field)", + "latitude_deg": "32.5667", + "longitude_deg": "-117.116997", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Imperial Beach", + "scheduled_service": "no", + "gps_code": "KNRS", + "iata_code": "NRS", + "local_code": "NRS", + "home_link": "https://www.basedirectory.com/nolf-imperial-beach-directory", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Outlying_Landing_Field_Imperial_Beach", + "keywords": "NAAS Imperial Beach, NAS Imperial Beach" + }, + { + "id": "20656", + "ident": "KNSE", + "type": "medium_airport", + "name": "Whiting Field Naval Air Station - North", + "latitude_deg": "30.7241993", + "longitude_deg": "-87.02189636", + "elevation_ft": "199", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "KNSE", + "iata_code": "NSE", + "local_code": "NSE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Station_Whiting_Field_%E2%80%93_North" + }, + { + "id": "20657", + "ident": "KNSI", + "type": "small_airport", + "name": "San Nicolas Island Nolf Airport", + "latitude_deg": "33.23979949951172", + "longitude_deg": "-119.45800018310547", + "elevation_ft": "506", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Nicolas Island", + "scheduled_service": "no", + "gps_code": "KNSI", + "local_code": "NSI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Outlying_Field_San_Nicolas_Island" + }, + { + "id": "332237", + "ident": "KNSX", + "type": "heliport", + "name": "Navy Outlying Field Site X Heliport", + "latitude_deg": "30.815084", + "longitude_deg": "-87.167991", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jay", + "scheduled_service": "no", + "gps_code": "KNSX", + "local_code": "NSX" + }, + { + "id": "3739", + "ident": "KNTD", + "type": "medium_airport", + "name": "Point Mugu Naval Air Station (Naval Base Ventura Co)", + "latitude_deg": "34.120300293", + "longitude_deg": "-119.121002197", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Point Mugu", + "scheduled_service": "no", + "gps_code": "KNTD", + "iata_code": "NTD", + "local_code": "NTD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Station_Point_Mugu" + }, + { + "id": "30362", + "ident": "KNTK", + "type": "closed", + "name": "MCAS Tustin", + "latitude_deg": "33.7066993713", + "longitude_deg": "-117.827003479", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tustin", + "scheduled_service": "no", + "gps_code": "KNTK", + "local_code": "NTK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marine_Corps_Air_Station_Tustin", + "keywords": "NLTAS Santa Ana, MCAF Santa Ana" + }, + { + "id": "3740", + "ident": "KNTU", + "type": "medium_airport", + "name": "Oceana Naval Air Station", + "latitude_deg": "36.820702", + "longitude_deg": "-76.033501", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Virginia Beach", + "scheduled_service": "no", + "gps_code": "KNTU", + "iata_code": "NTU", + "local_code": "NTU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Station_Oceana", + "keywords": "Apollo Soucek Field" + }, + { + "id": "20658", + "ident": "KNUC", + "type": "small_airport", + "name": "San Clemente Island Naval Auxiliary Landing Field", + "latitude_deg": "33.02270126", + "longitude_deg": "-118.5879974", + "elevation_ft": "184", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Clemente Island", + "scheduled_service": "no", + "gps_code": "KNUC", + "local_code": "NUC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Auxiliary_Landing_Field_San_Clemente_Island" + }, + { + "id": "20659", + "ident": "KNUI", + "type": "small_airport", + "name": "Naval Outlying Landing Field Webster", + "latitude_deg": "38.144222", + "longitude_deg": "-76.426892", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "St Inigoes", + "scheduled_service": "no", + "gps_code": "KNUI", + "local_code": "NUI" + }, + { + "id": "20660", + "ident": "KNUN", + "type": "closed", + "name": "Saufley Naval Outlying Landing Field", + "latitude_deg": "30.47008", + "longitude_deg": "-87.341108", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pensacola", + "scheduled_service": "no", + "iata_code": "NUN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saufley_Field", + "keywords": "KNUN, NUN" + }, + { + "id": "3741", + "ident": "KNUQ", + "type": "medium_airport", + "name": "Moffett Federal Airfield", + "latitude_deg": "37.4161", + "longitude_deg": "-122.049004", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mountain View", + "scheduled_service": "no", + "gps_code": "KNUQ", + "iata_code": "NUQ", + "local_code": "NUQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moffett_Federal_Airfield" + }, + { + "id": "20661", + "ident": "KNUW", + "type": "medium_airport", + "name": "Whidbey Island Naval Air Station (Ault Field)", + "latitude_deg": "48.351799", + "longitude_deg": "-122.655998", + "elevation_ft": "47", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Oak Harbor", + "scheduled_service": "no", + "gps_code": "KNUW", + "iata_code": "NUW", + "local_code": "NUW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Station_Whidbey_Island" + }, + { + "id": "20662", + "ident": "KNVD", + "type": "small_airport", + "name": "Nevada Municipal Airport", + "latitude_deg": "37.85210037231445", + "longitude_deg": "-94.30490112304688", + "elevation_ft": "892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Nevada", + "scheduled_service": "no", + "gps_code": "KNVD", + "local_code": "NVD" + }, + { + "id": "20663", + "ident": "KNVI", + "type": "heliport", + "name": "Pace Nolf Heliport", + "latitude_deg": "30.699699401900002", + "longitude_deg": "-87.195602417", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Wallace", + "scheduled_service": "no", + "gps_code": "KNVI", + "local_code": "NVI" + }, + { + "id": "20665", + "ident": "KNWL", + "type": "small_airport", + "name": "Waldron Field Naval Outlying Landing Field", + "latitude_deg": "27.635", + "longitude_deg": "-97.312202", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no", + "gps_code": "KNWL", + "local_code": "NWL" + }, + { + "id": "20666", + "ident": "KNXP", + "type": "medium_airport", + "name": "Twentynine Palms Strategic Expeditionary Landing Field", + "latitude_deg": "34.2962", + "longitude_deg": "-116.162003", + "elevation_ft": "2051", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Twentynine Palms", + "scheduled_service": "no", + "gps_code": "KNXP", + "local_code": "NXP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Twentynine_Palms_Strategic_Expeditionary_Landing_Field" + }, + { + "id": "3742", + "ident": "KNXX", + "type": "closed", + "name": "Willow Grove Naval Air Station/Joint Reserve Base", + "latitude_deg": "40.199795", + "longitude_deg": "-75.148201", + "elevation_ft": "358", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Willow Grove", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Station_Joint_Reserve_Base_Willow_Grove", + "keywords": "NXX, KNXX, Horsham Air Guard Station" + }, + { + "id": "20667", + "ident": "KNY0", + "type": "small_airport", + "name": "Fulton County Airport", + "latitude_deg": "42.998199", + "longitude_deg": "-74.329597", + "elevation_ft": "881", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Johnstown", + "scheduled_service": "no", + "gps_code": "KNY0", + "local_code": "NY0", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fulton_County_Airport_(New_York)", + "keywords": "Fulco" + }, + { + "id": "20668", + "ident": "KNY2", + "type": "small_airport", + "name": "Camillus Airport", + "latitude_deg": "43.085376", + "longitude_deg": "-76.295199", + "elevation_ft": "405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Warners", + "scheduled_service": "no", + "gps_code": "NY25", + "local_code": "NY25", + "keywords": "NY2" + }, + { + "id": "20669", + "ident": "KNYG", + "type": "medium_airport", + "name": "Quantico Marine Corps Airfield / Turner Field", + "latitude_deg": "38.501701", + "longitude_deg": "-77.305298", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Quantico", + "scheduled_service": "no", + "gps_code": "KNYG", + "local_code": "NYG" + }, + { + "id": "3961", + "ident": "KNYL", + "type": "medium_airport", + "name": "Yuma International Airport / Marine Corps Air Station Yuma", + "latitude_deg": "32.656601", + "longitude_deg": "-114.606003", + "elevation_ft": "213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yuma", + "scheduled_service": "yes", + "gps_code": "KNYL", + "iata_code": "YUM", + "local_code": "NYL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yuma_International_Airport", + "keywords": "Yuma MCAS, Yuma Marine Corps Air Station, Formerly KYUM" + }, + { + "id": "23476", + "ident": "KNZJ", + "type": "closed", + "name": "El Toro Marine Corps Air Station", + "latitude_deg": "33.67610168457031", + "longitude_deg": "-117.73100280761719", + "elevation_ft": "383", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Ana", + "scheduled_service": "no", + "gps_code": "KNZJ", + "local_code": "NZJ" + }, + { + "id": "30431", + "ident": "KNZW", + "type": "closed", + "name": "South Weymouth Naval Air Station", + "latitude_deg": "42.148602", + "longitude_deg": "-70.9394", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "South Weymouth", + "scheduled_service": "no", + "home_link": "https://www.bracpmo.navy.mil/brac_bases/northeast/former_nas_south_weymouth.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Station_South_Weymouth", + "keywords": "NZW, KNZW, Shea Field" + }, + { + "id": "20670", + "ident": "KNZX", + "type": "heliport", + "name": "Harold Nolf Heliport", + "latitude_deg": "30.6807003021", + "longitude_deg": "-86.8871994019", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Harold", + "scheduled_service": "no", + "gps_code": "KNZX", + "local_code": "NZX" + }, + { + "id": "3743", + "ident": "KNZY", + "type": "medium_airport", + "name": "North Island Naval Air Station-Halsey Field", + "latitude_deg": "32.69919968", + "longitude_deg": "-117.2149963", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no", + "gps_code": "KNZY", + "iata_code": "NZY", + "local_code": "NZY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Station_North_Island" + }, + { + "id": "20671", + "ident": "KO02", + "type": "small_airport", + "name": "Nervino Airport", + "latitude_deg": "39.8185005188", + "longitude_deg": "-120.352996826", + "elevation_ft": "4900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Beckwourth", + "scheduled_service": "no", + "gps_code": "KO02", + "iata_code": "NVN", + "local_code": "O02", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nervino_Airport" + }, + { + "id": "20672", + "ident": "KO05", + "type": "small_airport", + "name": "Rogers Field", + "latitude_deg": "40.28239822387695", + "longitude_deg": "-121.24099731445312", + "elevation_ft": "4528", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chester", + "scheduled_service": "no", + "gps_code": "KO05", + "local_code": "O05", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rogers_Field" + }, + { + "id": "20673", + "ident": "KO08", + "type": "small_airport", + "name": "Colusa County Airport", + "latitude_deg": "39.17900085", + "longitude_deg": "-121.9929962", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Colusa", + "scheduled_service": "no", + "gps_code": "KO08", + "local_code": "O08", + "wikipedia_link": "https://en.wikipedia.org/wiki/Colusa_County_Airport" + }, + { + "id": "20674", + "ident": "KO09", + "type": "small_airport", + "name": "Round Valley Airport", + "latitude_deg": "39.790199", + "longitude_deg": "-123.265999", + "elevation_ft": "1434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Covelo", + "scheduled_service": "no", + "gps_code": "KO09", + "local_code": "O09", + "wikipedia_link": "https://en.wikipedia.org/wiki/Round_Valley_Airport" + }, + { + "id": "20675", + "ident": "KO11", + "type": "small_airport", + "name": "Painting Planes Airport", + "latitude_deg": "35.757", + "longitude_deg": "-94.649902", + "elevation_ft": "1084", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Stilwell", + "scheduled_service": "no", + "local_code": "1PP", + "keywords": "O11, Stilwell Cherokee Nation Airport" + }, + { + "id": "20676", + "ident": "KO15", + "type": "small_airport", + "name": "Turlock Municipal Airport", + "latitude_deg": "37.48740005493164", + "longitude_deg": "-120.6969985961914", + "elevation_ft": "159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Turlock", + "scheduled_service": "no", + "gps_code": "KO15", + "local_code": "O15", + "wikipedia_link": "https://en.wikipedia.org/wiki/Turlock_Municipal_Airport" + }, + { + "id": "20677", + "ident": "KO16", + "type": "small_airport", + "name": "Garberville Airport", + "latitude_deg": "40.08599853515625", + "longitude_deg": "-123.81400299072266", + "elevation_ft": "546", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Garberville", + "scheduled_service": "no", + "gps_code": "KO16", + "local_code": "O16", + "wikipedia_link": "https://en.wikipedia.org/wiki/Garberville_Airport" + }, + { + "id": "20678", + "ident": "KO20", + "type": "small_airport", + "name": "Kingdon Airpark", + "latitude_deg": "38.09159851074219", + "longitude_deg": "-121.35900115966797", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lodi", + "scheduled_service": "no", + "gps_code": "KO20", + "local_code": "O20" + }, + { + "id": "20679", + "ident": "KO22", + "type": "small_airport", + "name": "Columbia Airport", + "latitude_deg": "38.030399322499996", + "longitude_deg": "-120.415000916", + "elevation_ft": "2118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "O22", + "iata_code": "COA", + "local_code": "O22", + "home_link": "http://www.tuolumnecounty.ca.gov/index.aspx?NID=372", + "wikipedia_link": "https://en.wikipedia.org/wiki/Columbia_Airport_(California)" + }, + { + "id": "20680", + "ident": "KO24", + "type": "small_airport", + "name": "Lee Vining Airport", + "latitude_deg": "37.9583015442", + "longitude_deg": "-119.107002258", + "elevation_ft": "6802", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lee Vining", + "scheduled_service": "no", + "gps_code": "O24", + "local_code": "O24", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lee_Vining_Airport" + }, + { + "id": "20681", + "ident": "KO26", + "type": "small_airport", + "name": "Lone Pine/Death Valley Airport", + "latitude_deg": "36.588299", + "longitude_deg": "-118.052002", + "elevation_ft": "3680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lone Pine", + "scheduled_service": "no", + "local_code": "O26", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lone_Pine_Airport" + }, + { + "id": "20682", + "ident": "KO27", + "type": "small_airport", + "name": "Oakdale Airport", + "latitude_deg": "37.75630188", + "longitude_deg": "-120.8000031", + "elevation_ft": "237", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oakdale", + "scheduled_service": "no", + "gps_code": "O27", + "iata_code": "ODC", + "local_code": "O27", + "home_link": "http://www.oakdalegov.com/#!oakdale-municipal-airport/c1tnd", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oakdale_Airport" + }, + { + "id": "20683", + "ident": "KO28", + "type": "small_airport", + "name": "Ells Field Willits Municipal Airport", + "latitude_deg": "39.451322", + "longitude_deg": "-123.372356", + "elevation_ft": "2063", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Willits", + "scheduled_service": "no", + "gps_code": "KO28", + "local_code": "O28", + "wikipedia_link": "https://en.wikipedia.org/wiki/Willits_Municipal_Airport" + }, + { + "id": "20684", + "ident": "KO32", + "type": "small_airport", + "name": "Reedley Municipal Airport", + "latitude_deg": "36.66630172729492", + "longitude_deg": "-119.44999694824219", + "elevation_ft": "383", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Reedley", + "scheduled_service": "no", + "gps_code": "KO32", + "local_code": "O32", + "wikipedia_link": "https://en.wikipedia.org/wiki/Reedley_Municipal_Airport" + }, + { + "id": "20685", + "ident": "KO35", + "type": "small_airport", + "name": "Hollis Municipal Airport", + "latitude_deg": "34.705293", + "longitude_deg": "-99.908566", + "elevation_ft": "1658", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hollis", + "scheduled_service": "no", + "gps_code": "KO35", + "local_code": "O35" + }, + { + "id": "20686", + "ident": "KO37", + "type": "small_airport", + "name": "Haigh Field", + "latitude_deg": "39.72119903564453", + "longitude_deg": "-122.14700317382812", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Orland", + "scheduled_service": "no", + "gps_code": "KO37", + "local_code": "O37", + "wikipedia_link": "https://en.wikipedia.org/wiki/Haigh_Field" + }, + { + "id": "20687", + "ident": "KO41", + "type": "small_airport", + "name": "Watts Woodland Airport", + "latitude_deg": "38.673901", + "longitude_deg": "-121.872002", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodland", + "scheduled_service": "no", + "local_code": "O41" + }, + { + "id": "20688", + "ident": "KO42", + "type": "small_airport", + "name": "Woodlake Airport", + "latitude_deg": "36.398799896240234", + "longitude_deg": "-119.10700225830078", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodlake", + "scheduled_service": "no", + "gps_code": "KO42", + "local_code": "O42", + "wikipedia_link": "https://en.wikipedia.org/wiki/Woodlake_Airport" + }, + { + "id": "20689", + "ident": "KO43", + "type": "small_airport", + "name": "Yerington Municipal Airport", + "latitude_deg": "39.0041007996", + "longitude_deg": "-119.157997131", + "elevation_ft": "4378", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Yerington", + "scheduled_service": "no", + "gps_code": "O43", + "iata_code": "EYR", + "local_code": "O43", + "home_link": "http://www.yerington.net/index.aspx?nid=86", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yerington_Municipal_Airport" + }, + { + "id": "20690", + "ident": "KO46", + "type": "small_airport", + "name": "Weed Airport", + "latitude_deg": "41.480786", + "longitude_deg": "-122.454791", + "elevation_ft": "2938", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Weed", + "scheduled_service": "no", + "gps_code": "KO46", + "local_code": "O46", + "wikipedia_link": "https://en.wikipedia.org/wiki/Weed_Airport" + }, + { + "id": "20691", + "ident": "KO47", + "type": "small_airport", + "name": "Prague Municipal Airport", + "latitude_deg": "35.4822998046875", + "longitude_deg": "-96.71869659423828", + "elevation_ft": "1042", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Prague", + "scheduled_service": "no", + "gps_code": "KO47", + "local_code": "O47" + }, + { + "id": "20693", + "ident": "KO51", + "type": "closed", + "name": "Laverne Municipal Airport", + "latitude_deg": "36.744498", + "longitude_deg": "-99.908699", + "elevation_ft": "2112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Laverne", + "scheduled_service": "no", + "keywords": "OK67, O51, 4OK8" + }, + { + "id": "20694", + "ident": "KO52", + "type": "small_airport", + "name": "Sutter County Airport", + "latitude_deg": "39.12369918823242", + "longitude_deg": "-121.6050033569336", + "elevation_ft": "58", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Yuba City", + "scheduled_service": "no", + "gps_code": "KO52", + "local_code": "O52", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sutter_County_Airport" + }, + { + "id": "20695", + "ident": "KO53", + "type": "small_airport", + "name": "Medford Municipal Airport", + "latitude_deg": "36.79059982299805", + "longitude_deg": "-97.7490005493164", + "elevation_ft": "1092", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Medford", + "scheduled_service": "no", + "gps_code": "KO53", + "local_code": "O53" + }, + { + "id": "20696", + "ident": "KO54", + "type": "small_airport", + "name": "Lonnie Pool Field Weaverville Airport", + "latitude_deg": "40.74570083618164", + "longitude_deg": "-122.9219970703125", + "elevation_ft": "2350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Weaverville", + "scheduled_service": "no", + "gps_code": "KO54", + "local_code": "O54", + "wikipedia_link": "https://en.wikipedia.org/wiki/Weaverville_Airport" + }, + { + "id": "20697", + "ident": "KO57", + "type": "small_airport", + "name": "Bryant Field", + "latitude_deg": "38.26386", + "longitude_deg": "-119.222775", + "elevation_ft": "6468", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bridgeport", + "scheduled_service": "no", + "local_code": "O57", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bryant_Field_(airport)", + "keywords": "KBAN" + }, + { + "id": "20698", + "ident": "KO59", + "type": "small_airport", + "name": "Cedarville Airport", + "latitude_deg": "41.55270004272461", + "longitude_deg": "-120.16600036621094", + "elevation_ft": "4623", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Cedarville", + "scheduled_service": "no", + "gps_code": "KO59", + "local_code": "O59", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cedarville_Airport" + }, + { + "id": "20699", + "ident": "KO60", + "type": "small_airport", + "name": "Cloverdale Municipal Airport", + "latitude_deg": "38.77600098", + "longitude_deg": "-122.9929962", + "elevation_ft": "277", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Cloverdale", + "scheduled_service": "no", + "gps_code": "O60", + "local_code": "O60", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cloverdale_Municipal_Airport" + }, + { + "id": "20700", + "ident": "KO61", + "type": "small_airport", + "name": "Cameron Park Airport", + "latitude_deg": "38.683998", + "longitude_deg": "-120.987999", + "elevation_ft": "1286", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Cameron Park", + "scheduled_service": "no", + "local_code": "O61", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cameron_Airpark", + "keywords": "Cameron Airpark" + }, + { + "id": "20701", + "ident": "KO65", + "type": "small_airport", + "name": "Christman Airfield", + "latitude_deg": "36.112499", + "longitude_deg": "-98.308701", + "elevation_ft": "1205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Okeene", + "scheduled_service": "no", + "local_code": "O65", + "keywords": "OK71, Okeene Municipal Airport" + }, + { + "id": "20702", + "ident": "KO69", + "type": "small_airport", + "name": "Petaluma Municipal Airport", + "latitude_deg": "38.25780106", + "longitude_deg": "-122.6060028", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Petaluma", + "scheduled_service": "no", + "gps_code": "O69", + "local_code": "O69", + "wikipedia_link": "https://en.wikipedia.org/wiki/Petaluma_Municipal_Airport" + }, + { + "id": "20703", + "ident": "KO70", + "type": "small_airport", + "name": "Westover Field Amador County Airport", + "latitude_deg": "38.3768005371", + "longitude_deg": "-120.793998718", + "elevation_ft": "1690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "KJAQ", + "local_code": "JAQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amador_County_Airport", + "keywords": "Formerly O70" + }, + { + "id": "20704", + "ident": "KO79", + "type": "small_airport", + "name": "Sierraville Dearwater Airport", + "latitude_deg": "39.58100128173828", + "longitude_deg": "-120.35399627685547", + "elevation_ft": "4984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sierraville", + "scheduled_service": "no", + "gps_code": "KO79", + "local_code": "O79" + }, + { + "id": "20705", + "ident": "KO81", + "type": "small_airport", + "name": "Tulelake Municipal Airport", + "latitude_deg": "41.88740158081055", + "longitude_deg": "-121.35900115966797", + "elevation_ft": "4044", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tulelake", + "scheduled_service": "no", + "gps_code": "KO81", + "local_code": "O81", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tulelake_Municipal_Airport" + }, + { + "id": "20706", + "ident": "KO86", + "type": "small_airport", + "name": "Trinity Center Airport", + "latitude_deg": "40.98320007324219", + "longitude_deg": "-122.69400024414062", + "elevation_ft": "2390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Trinity Center", + "scheduled_service": "no", + "gps_code": "KO86", + "local_code": "O86", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trinity_Center_Airport" + }, + { + "id": "20707", + "ident": "KO88", + "type": "small_airport", + "name": "Rio Vista Municipal Airport", + "latitude_deg": "38.19340133666992", + "longitude_deg": "-121.7040023803711", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rio Vista", + "scheduled_service": "no", + "gps_code": "KO88", + "local_code": "O88", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rio_Vista_Municipal_Airport" + }, + { + "id": "20708", + "ident": "KO89", + "type": "small_airport", + "name": "Fall River Mills Airport", + "latitude_deg": "41.018798828125", + "longitude_deg": "-121.43299865722656", + "elevation_ft": "3323", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fall River Mills", + "scheduled_service": "no", + "gps_code": "KO89", + "local_code": "O89", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fall_River_Mills_Airport" + }, + { + "id": "20709", + "ident": "KOAJ", + "type": "medium_airport", + "name": "Albert J Ellis Airport", + "latitude_deg": "34.829201", + "longitude_deg": "-77.612099", + "elevation_ft": "94", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Richlands", + "scheduled_service": "no", + "gps_code": "KOAJ", + "iata_code": "OAJ", + "local_code": "OAJ" + }, + { + "id": "3744", + "ident": "KOAK", + "type": "large_airport", + "name": "Metropolitan Oakland International Airport", + "latitude_deg": "37.721298", + "longitude_deg": "-122.221001", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oakland", + "scheduled_service": "yes", + "gps_code": "KOAK", + "iata_code": "OAK", + "local_code": "OAK", + "home_link": "http://www.oaklandairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oakland_International_Airport", + "keywords": "QSF, QBA" + }, + { + "id": "20710", + "ident": "KOAR", + "type": "small_airport", + "name": "Marina Municipal Airport", + "latitude_deg": "36.68190002", + "longitude_deg": "-121.762001", + "elevation_ft": "137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Marina", + "scheduled_service": "no", + "gps_code": "KOAR", + "iata_code": "OAR", + "local_code": "OAR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marina_Municipal_Airport", + "keywords": "Fritzsche AAF" + }, + { + "id": "20711", + "ident": "KOBE", + "type": "small_airport", + "name": "Okeechobee County Airport", + "latitude_deg": "27.262800216699997", + "longitude_deg": "-80.8498001099", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Okeechobee", + "scheduled_service": "no", + "gps_code": "KOBE", + "iata_code": "OBE", + "local_code": "OBE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Okeechobee_County_Airport" + }, + { + "id": "18497", + "ident": "KOBI", + "type": "small_airport", + "name": "Woodbine Municipal Airport", + "latitude_deg": "39.219200134277344", + "longitude_deg": "-74.7947998046875", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Woodbine", + "scheduled_service": "no", + "gps_code": "KOBI", + "local_code": "OBI", + "keywords": "Formerly 1N4" + }, + { + "id": "20712", + "ident": "KOCF", + "type": "small_airport", + "name": "Ocala International Airport - Jim Taylor Field", + "latitude_deg": "29.17259979", + "longitude_deg": "-82.22419739", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ocala", + "scheduled_service": "no", + "gps_code": "KOCF", + "iata_code": "OCF", + "local_code": "OCF", + "home_link": "http://www.ocalafl.org/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ocala_International_Airport" + }, + { + "id": "20713", + "ident": "KOCH", + "type": "small_airport", + "name": "A L Mangham Jr. Regional Airport", + "latitude_deg": "31.57799911", + "longitude_deg": "-94.70950317", + "elevation_ft": "355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Nacogdoches", + "scheduled_service": "no", + "gps_code": "KOCH", + "iata_code": "OCH", + "local_code": "OCH", + "home_link": "http://www.ci.nacogdoches.tx.us/index.aspx?nid=634" + }, + { + "id": "20714", + "ident": "KOCQ", + "type": "small_airport", + "name": "J. Douglas Bake Memorial Airport", + "latitude_deg": "44.87419891", + "longitude_deg": "-87.9095993", + "elevation_ft": "604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Oconto", + "scheduled_service": "no", + "gps_code": "KOCQ", + "local_code": "OCQ" + }, + { + "id": "20715", + "ident": "KOCW", + "type": "small_airport", + "name": "Warren Field", + "latitude_deg": "35.570499420166", + "longitude_deg": "-77.049797058105", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "KOCW", + "iata_code": "OCW", + "local_code": "OCW", + "home_link": "http://www.washingtonnc.gov/airport" + }, + { + "id": "20716", + "ident": "KODO", + "type": "small_airport", + "name": "Odessa Schlemeyer Field", + "latitude_deg": "31.920600891113", + "longitude_deg": "-102.3870010376", + "elevation_ft": "3004", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Odessa", + "scheduled_service": "no", + "gps_code": "KODO", + "local_code": "ODO", + "home_link": "http://www.co.ector.tx.us/default.aspx?Ector_County/SchlemeyerAirport", + "keywords": "E02, Ector County" + }, + { + "id": "20717", + "ident": "KODX", + "type": "small_airport", + "name": "Evelyn Sharp Field", + "latitude_deg": "41.62419891357422", + "longitude_deg": "-98.95240020751953", + "elevation_ft": "2070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Ord", + "scheduled_service": "no", + "gps_code": "KODX", + "local_code": "ODX" + }, + { + "id": "20718", + "ident": "KOEA", + "type": "small_airport", + "name": "O'Neal Airport", + "latitude_deg": "38.68521", + "longitude_deg": "-87.543138", + "elevation_ft": "414", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lawrenceville", + "scheduled_service": "no", + "gps_code": "KOEA", + "iata_code": "OEA", + "local_code": "OEA", + "wikipedia_link": "https://en.wikipedia.org/wiki/O%27Neal_Airport" + }, + { + "id": "20719", + "ident": "KOEB", + "type": "small_airport", + "name": "Branch County Memorial Airport", + "latitude_deg": "41.9333992", + "longitude_deg": "-85.05259705", + "elevation_ft": "959", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Coldwater", + "scheduled_service": "no", + "gps_code": "KOEB", + "local_code": "OEB" + }, + { + "id": "20720", + "ident": "KOEL", + "type": "small_airport", + "name": "Oakley Municipal Airport", + "latitude_deg": "39.109901428222656", + "longitude_deg": "-100.81600189208984", + "elevation_ft": "3045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Oakley", + "scheduled_service": "no", + "gps_code": "KOEL", + "local_code": "OEL" + }, + { + "id": "20721", + "ident": "KOEO", + "type": "small_airport", + "name": "L O Simenstad Municipal Airport", + "latitude_deg": "45.310001373291", + "longitude_deg": "-92.691902160645", + "elevation_ft": "903", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Osceola", + "scheduled_service": "no", + "gps_code": "KOEO", + "iata_code": "OEO", + "local_code": "OEO", + "home_link": "http://www.vil.osceola.wi.us/index.asp?Type=B_BASIC&SEC={9098926A-C937-4069-95AA-D331D2F38500}", + "wikipedia_link": "https://en.wikipedia.org/wiki/L.O._Simenstad_Municipal_Airport" + }, + { + "id": "3745", + "ident": "KOFF", + "type": "medium_airport", + "name": "Offutt Air Force Base", + "latitude_deg": "41.118301391602", + "longitude_deg": "-95.912498474121", + "elevation_ft": "1052", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Omaha", + "scheduled_service": "no", + "gps_code": "KOFF", + "iata_code": "OFF", + "local_code": "OFF", + "home_link": "http://www.offutt.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Offutt_Air_Force_Base" + }, + { + "id": "20722", + "ident": "KOFK", + "type": "medium_airport", + "name": "Karl Stefan Memorial Airport", + "latitude_deg": "41.985500335693", + "longitude_deg": "-97.435096740723", + "elevation_ft": "1573", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Norfolk", + "scheduled_service": "no", + "gps_code": "KOFK", + "iata_code": "OFK", + "local_code": "OFK", + "home_link": "http://www.norfolkairportservices.com/default.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Norfolk_Regional_Airport" + }, + { + "id": "20723", + "ident": "KOFP", + "type": "small_airport", + "name": "Hanover County Municipal Airport", + "latitude_deg": "37.709", + "longitude_deg": "-77.436699", + "elevation_ft": "207", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Hanover", + "scheduled_service": "no", + "gps_code": "KOFP", + "local_code": "OFP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hanover_County_Municipal_Airport" + }, + { + "id": "20724", + "ident": "KOGA", + "type": "small_airport", + "name": "Searle Field", + "latitude_deg": "41.11949921", + "longitude_deg": "-101.7699966", + "elevation_ft": "3279", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Ogallala", + "scheduled_service": "no", + "gps_code": "KOGA", + "iata_code": "OGA", + "local_code": "OGA", + "home_link": "http://www.ogallala-ne.gov/city_services/airport/index.php" + }, + { + "id": "20725", + "ident": "KOGB", + "type": "medium_airport", + "name": "Orangeburg Municipal Airport", + "latitude_deg": "33.456798553467", + "longitude_deg": "-80.859497070312", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Orangeburg", + "scheduled_service": "no", + "gps_code": "KOGB", + "iata_code": "OGB", + "local_code": "OGB", + "home_link": "http://www.orangeburg.sc.us/index.php?option=com_content&view=article&id=18&Itemid=69", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orangeburg_Municipal_Airport" + }, + { + "id": "3746", + "ident": "KOGD", + "type": "medium_airport", + "name": "Ogden Hinckley Airport", + "latitude_deg": "41.195899963379", + "longitude_deg": "-112.0120010376", + "elevation_ft": "4473", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Ogden", + "scheduled_service": "yes", + "gps_code": "KOGD", + "iata_code": "OGD", + "local_code": "OGD", + "home_link": "http://flyogden.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ogden-Hinckley_Airport" + }, + { + "id": "20726", + "ident": "KOGM", + "type": "small_airport", + "name": "Ontonagon County Schuster Field", + "latitude_deg": "46.84550095", + "longitude_deg": "-89.36710358", + "elevation_ft": "669", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ontonagon", + "scheduled_service": "no", + "gps_code": "KOGM", + "local_code": "OGM" + }, + { + "id": "20727", + "ident": "KOGS", + "type": "small_airport", + "name": "Ogdensburg International Airport", + "latitude_deg": "44.6819", + "longitude_deg": "-75.4655", + "elevation_ft": "297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Ogdensburg", + "scheduled_service": "yes", + "gps_code": "KOGS", + "iata_code": "OGS", + "local_code": "OGS", + "home_link": "https://ogsair.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ogdensburg_International_Airport" + }, + { + "id": "20728", + "ident": "KOIC", + "type": "small_airport", + "name": "Lt Warren Eaton Airport", + "latitude_deg": "42.566600799561", + "longitude_deg": "-75.524101257324", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Norwich", + "scheduled_service": "no", + "gps_code": "KOIC", + "iata_code": "OIC", + "local_code": "OIC", + "home_link": "http://www.co.chenango.ny.us/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lt._Warren_Eaton_Airport" + }, + { + "id": "315377", + "ident": "KOIL", + "type": "closed", + "name": "Splane Memorial Airport", + "latitude_deg": "41.4813", + "longitude_deg": "-79.7449", + "elevation_ft": "1552", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Oil City", + "scheduled_service": "no", + "gps_code": "KOIL", + "iata_code": "OIL", + "local_code": "OIL", + "keywords": "Oil City Glider Club Gliderport" + }, + { + "id": "20729", + "ident": "KOIN", + "type": "small_airport", + "name": "Oberlin Municipal Airport", + "latitude_deg": "39.833900451660156", + "longitude_deg": "-100.53900146484375", + "elevation_ft": "2703", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Oberlin", + "scheduled_service": "no", + "gps_code": "KOIN", + "local_code": "OIN" + }, + { + "id": "20730", + "ident": "KOJA", + "type": "small_airport", + "name": "Thomas P Stafford Airport", + "latitude_deg": "35.5448", + "longitude_deg": "-98.668503", + "elevation_ft": "1605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Weatherford", + "scheduled_service": "no", + "gps_code": "KOJA", + "local_code": "OJA", + "keywords": "F91" + }, + { + "id": "20731", + "ident": "KOJC", + "type": "small_airport", + "name": "Johnson County Executive Airport", + "latitude_deg": "38.84759903", + "longitude_deg": "-94.73760223", + "elevation_ft": "1096", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Olathe", + "scheduled_service": "no", + "gps_code": "KOJC", + "iata_code": "OJC", + "local_code": "OJC", + "home_link": "http://www.jocogov.org/dept/airport-commission/executive-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Johnson_County_Executive_Airport" + }, + { + "id": "20732", + "ident": "KOKB", + "type": "small_airport", + "name": "Oceanside Municipal Airport", + "latitude_deg": "33.217947", + "longitude_deg": "-117.351683", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceanside", + "scheduled_service": "no", + "gps_code": "KOKB", + "iata_code": "OCN", + "local_code": "OKB", + "home_link": "http://www.oceansidemunicipalairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oceanside_Municipal_Airport", + "keywords": "Bob Maxwell Field" + }, + { + "id": "3747", + "ident": "KOKC", + "type": "medium_airport", + "name": "Will Rogers World Airport", + "latitude_deg": "35.393101", + "longitude_deg": "-97.6007", + "elevation_ft": "1295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "yes", + "gps_code": "KOKC", + "iata_code": "OKC", + "local_code": "OKC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Will_Rogers_World_Airport" + }, + { + "id": "19035", + "ident": "KOKH", + "type": "small_airport", + "name": "AJ Eisenberg Airport", + "latitude_deg": "48.251499176", + "longitude_deg": "-122.674003601", + "elevation_ft": "193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Oak Harbor", + "scheduled_service": "no", + "gps_code": "KOKH", + "iata_code": "ODW", + "local_code": "OKH", + "wikipedia_link": "https://en.wikipedia.org/wiki/A.J._Eisenberg_Airport", + "keywords": "Formerly 76S, Wes Lupien" + }, + { + "id": "20733", + "ident": "KOKK", + "type": "small_airport", + "name": "Kokomo Municipal Airport", + "latitude_deg": "40.528198242188", + "longitude_deg": "-86.05899810791", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Kokomo", + "scheduled_service": "no", + "gps_code": "KOKK", + "iata_code": "OKK", + "local_code": "OKK", + "home_link": "http://www.cityofkokomo.org/departments/airport/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kokomo_Municipal_Airport" + }, + { + "id": "20734", + "ident": "KOKM", + "type": "small_airport", + "name": "Okmulgee Regional Airport", + "latitude_deg": "35.668098449707", + "longitude_deg": "-95.948699951172", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Okmulgee", + "scheduled_service": "no", + "gps_code": "KOKM", + "iata_code": "OKM", + "local_code": "OKM", + "home_link": "http://okmulgeeairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Okmulgee_Regional_Airport", + "keywords": "Okmulgee Field AAF" + }, + { + "id": "20735", + "ident": "KOKS", + "type": "small_airport", + "name": "Garden County Airport/King Rhiley Field", + "latitude_deg": "41.401001", + "longitude_deg": "-102.355003", + "elevation_ft": "3394", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Oshkosh", + "scheduled_service": "no", + "gps_code": "KOKS", + "iata_code": "OKS", + "local_code": "OKS", + "home_link": "http://www.ci.oshkosh.ne.us/airport.asp" + }, + { + "id": "20736", + "ident": "KOKV", + "type": "small_airport", + "name": "Winchester Regional Airport", + "latitude_deg": "39.14350128", + "longitude_deg": "-78.14440155", + "elevation_ft": "726", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Winchester", + "scheduled_service": "no", + "gps_code": "KOKV", + "iata_code": "WGO", + "local_code": "OKV", + "home_link": "http://websmart66.net/cgi-bin/p/w66p-home.cgi?d=winchester-aviation-services", + "wikipedia_link": "https://en.wikipedia.org/wiki/Winchester_Regional_Airport" + }, + { + "id": "20737", + "ident": "KOKZ", + "type": "small_airport", + "name": "Kaolin Field", + "latitude_deg": "32.96670150756836", + "longitude_deg": "-82.83820343017578", + "elevation_ft": "438", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Sandersville", + "scheduled_service": "no", + "gps_code": "KOKZ", + "local_code": "OKZ" + }, + { + "id": "313470", + "ident": "KOL", + "type": "closed", + "name": "Koumala Airport", + "latitude_deg": "8.4965", + "longitude_deg": "21.2565", + "elevation_ft": "2175", + "continent": "AF", + "iso_country": "CF", + "iso_region": "CF-BB", + "municipality": "Koumala", + "scheduled_service": "no", + "iata_code": "KOL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Koumala_Airport" + }, + { + "id": "3748", + "ident": "KOLD", + "type": "small_airport", + "name": "Dewitt Field - Old Town Municipal Airport", + "latitude_deg": "44.952801", + "longitude_deg": "-68.674301", + "elevation_ft": "126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Old Town", + "scheduled_service": "no", + "gps_code": "KOLD", + "iata_code": "OLD", + "local_code": "OLD" + }, + { + "id": "20738", + "ident": "KOLE", + "type": "small_airport", + "name": "Cattaraugus County-Olean Airport", + "latitude_deg": "42.24119949", + "longitude_deg": "-78.37139893", + "elevation_ft": "2135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Olean", + "scheduled_service": "no", + "gps_code": "KOLE", + "local_code": "OLE" + }, + { + "id": "20739", + "ident": "KOLF", + "type": "medium_airport", + "name": "L M Clayton Airport", + "latitude_deg": "48.094501495399996", + "longitude_deg": "-105.574996948", + "elevation_ft": "1986", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Wolf Point", + "scheduled_service": "no", + "gps_code": "KOLF", + "iata_code": "OLF", + "local_code": "OLF", + "wikipedia_link": "https://en.wikipedia.org/wiki/L._M._Clayton_Airport" + }, + { + "id": "20740", + "ident": "KOLG", + "type": "small_airport", + "name": "Solon Springs Municipal Airport", + "latitude_deg": "46.31480026245117", + "longitude_deg": "-91.81639862060547", + "elevation_ft": "1102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Solon Springs", + "scheduled_service": "no", + "gps_code": "KOLG", + "local_code": "OLG" + }, + { + "id": "3749", + "ident": "KOLM", + "type": "medium_airport", + "name": "Olympia Regional Airport", + "latitude_deg": "46.9693985", + "longitude_deg": "-122.9029999", + "elevation_ft": "209", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Olympia", + "scheduled_service": "no", + "gps_code": "KOLM", + "iata_code": "OLM", + "local_code": "OLM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Olympia_Airport" + }, + { + "id": "20741", + "ident": "KOLS", + "type": "medium_airport", + "name": "Nogales International Airport", + "latitude_deg": "31.4177", + "longitude_deg": "-110.848", + "elevation_ft": "3955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Nogales", + "scheduled_service": "no", + "gps_code": "KOLS", + "iata_code": "OLS", + "local_code": "OLS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nogales_International_Airport" + }, + { + "id": "3750", + "ident": "KOLU", + "type": "medium_airport", + "name": "Columbus Municipal Airport", + "latitude_deg": "41.44800186", + "longitude_deg": "-97.34259796", + "elevation_ft": "1447", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "KOLU", + "local_code": "OLU" + }, + { + "id": "20742", + "ident": "KOLV", + "type": "small_airport", + "name": "Olive Branch Airport", + "latitude_deg": "34.9786987305", + "longitude_deg": "-89.78690338130001", + "elevation_ft": "402", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Olive Branch", + "scheduled_service": "no", + "gps_code": "KOLV", + "iata_code": "OLV", + "local_code": "OLV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Olive_Branch_Airport" + }, + { + "id": "20743", + "ident": "KOLY", + "type": "small_airport", + "name": "Olney Noble Airport", + "latitude_deg": "38.7218017578125", + "longitude_deg": "-88.17639923095703", + "elevation_ft": "482", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Olney-Noble", + "scheduled_service": "no", + "gps_code": "KOLY", + "local_code": "OLY" + }, + { + "id": "20744", + "ident": "KOLZ", + "type": "small_airport", + "name": "Oelwein Municipal Airport", + "latitude_deg": "42.68080139160156", + "longitude_deg": "-91.97450256347656", + "elevation_ft": "1076", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Oelwein", + "scheduled_service": "no", + "gps_code": "KOLZ", + "local_code": "OLZ" + }, + { + "id": "308516", + "ident": "KOM", + "type": "small_airport", + "name": "Komo-Manda Airport", + "latitude_deg": "-6.0682", + "longitude_deg": "142.8598", + "elevation_ft": "5057", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-HE", + "municipality": "Komo", + "scheduled_service": "no", + "gps_code": "AYOO", + "iata_code": "KOM", + "local_code": "KOMO" + }, + { + "id": "3751", + "ident": "KOMA", + "type": "medium_airport", + "name": "Eppley Airfield", + "latitude_deg": "41.3032", + "longitude_deg": "-95.894096", + "elevation_ft": "984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Omaha", + "scheduled_service": "yes", + "gps_code": "KOMA", + "iata_code": "OMA", + "local_code": "OMA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eppley_Airfield" + }, + { + "id": "20745", + "ident": "KOMH", + "type": "small_airport", + "name": "Orange County Airport", + "latitude_deg": "38.24720001220703", + "longitude_deg": "-78.04560089111328", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Orange", + "scheduled_service": "no", + "gps_code": "KOMH", + "local_code": "OMH" + }, + { + "id": "20746", + "ident": "KOMK", + "type": "small_airport", + "name": "Omak Airport", + "latitude_deg": "48.4644012451", + "longitude_deg": "-119.517997742", + "elevation_ft": "1305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Omak", + "scheduled_service": "no", + "gps_code": "KOMK", + "iata_code": "OMK", + "local_code": "OMK", + "home_link": "http://www.omakcity.com/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Omak_Airport" + }, + { + "id": "20747", + "ident": "KOMN", + "type": "small_airport", + "name": "Ormond Beach Municipal Airport", + "latitude_deg": "29.300600051879883", + "longitude_deg": "-81.11360168457031", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ormond Beach", + "scheduled_service": "no", + "gps_code": "KOMN", + "local_code": "OMN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ormond_Beach_Municipal_Airport" + }, + { + "id": "20748", + "ident": "KONA", + "type": "small_airport", + "name": "Winona Municipal-Max Conrad Field", + "latitude_deg": "44.07720184", + "longitude_deg": "-91.70829773", + "elevation_ft": "656", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Winona", + "scheduled_service": "no", + "gps_code": "KONA", + "local_code": "ONA" + }, + { + "id": "20749", + "ident": "KONL", + "type": "small_airport", + "name": "The O'Neill Municipal John L Baker Field", + "latitude_deg": "42.469898", + "longitude_deg": "-98.688103", + "elevation_ft": "2031", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "O'Neill", + "scheduled_service": "no", + "gps_code": "KONL", + "iata_code": "ONL", + "local_code": "ONL", + "wikipedia_link": "https://en.wikipedia.org/wiki/O%27Neill_Municipal_Airport" + }, + { + "id": "20750", + "ident": "KONM", + "type": "small_airport", + "name": "Socorro Municipal Airport", + "latitude_deg": "34.022499084472656", + "longitude_deg": "-106.90299987792969", + "elevation_ft": "4875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Socorro", + "scheduled_service": "no", + "gps_code": "KONM", + "local_code": "ONM" + }, + { + "id": "20751", + "ident": "KONO", + "type": "medium_airport", + "name": "Ontario Municipal Airport", + "latitude_deg": "44.0198", + "longitude_deg": "-117.013289", + "elevation_ft": "2193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Oregon", + "scheduled_service": "no", + "gps_code": "KONO", + "iata_code": "ONO", + "local_code": "ONO", + "home_link": "https://www.ontariooregon.org/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ontario_Municipal_Airport" + }, + { + "id": "20752", + "ident": "KONP", + "type": "medium_airport", + "name": "Newport Municipal Airport", + "latitude_deg": "44.580399", + "longitude_deg": "-124.057999", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "KONP", + "iata_code": "ONP", + "local_code": "ONP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Newport_Municipal_Airport_(Oregon)" + }, + { + "id": "3752", + "ident": "KONT", + "type": "large_airport", + "name": "Ontario International Airport", + "latitude_deg": "34.055999755859375", + "longitude_deg": "-117.60099792480469", + "elevation_ft": "944", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ontario", + "scheduled_service": "yes", + "gps_code": "KONT", + "iata_code": "ONT", + "local_code": "ONT", + "wikipedia_link": "https://en.wikipedia.org/wiki/LA/Ontario_International_Airport" + }, + { + "id": "20753", + "ident": "KONX", + "type": "small_airport", + "name": "Currituck County Regional Airport", + "latitude_deg": "36.398899", + "longitude_deg": "-76.016296", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Currituck", + "scheduled_service": "no", + "gps_code": "KONX", + "local_code": "ONX", + "home_link": "http://www.co.currituck.nc.us/airport.cfm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Currituck_County_Airport", + "keywords": "9W7" + }, + { + "id": "20754", + "ident": "KONY", + "type": "small_airport", + "name": "Olney Municipal Airport", + "latitude_deg": "33.35089874267578", + "longitude_deg": "-98.81919860839844", + "elevation_ft": "1275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Olney", + "scheduled_service": "no", + "gps_code": "KONY", + "local_code": "ONY" + }, + { + "id": "20755", + "ident": "KONZ", + "type": "small_airport", + "name": "Grosse Ile Municipal Airport", + "latitude_deg": "42.099098205566406", + "longitude_deg": "-83.1614990234375", + "elevation_ft": "591", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Detroit/Grosse Ile", + "scheduled_service": "no", + "gps_code": "KONZ", + "local_code": "ONZ" + }, + { + "id": "20756", + "ident": "KOOA", + "type": "small_airport", + "name": "Oskaloosa Municipal Airport", + "latitude_deg": "41.2262001", + "longitude_deg": "-92.49389648", + "elevation_ft": "841", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Oskaloosa", + "scheduled_service": "no", + "gps_code": "KOOA", + "local_code": "OOA" + }, + { + "id": "20757", + "ident": "KOPF", + "type": "medium_airport", + "name": "Miami-Opa Locka Executive Airport", + "latitude_deg": "25.907", + "longitude_deg": "-80.278397", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "KOPF", + "iata_code": "OPF", + "local_code": "OPF", + "home_link": "http://www.miami-airport.com/html/opalocka.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miami-Opa_Locka_Executive_Airport" + }, + { + "id": "20758", + "ident": "KOPL", + "type": "small_airport", + "name": "St Landry Parish Ahart Field", + "latitude_deg": "30.558399", + "longitude_deg": "-92.099403", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Opelousas", + "scheduled_service": "no", + "gps_code": "KOPL", + "local_code": "OPL", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Landry_Parish_Airport" + }, + { + "id": "20759", + "ident": "KOPN", + "type": "small_airport", + "name": "Thomaston Upson County Airport", + "latitude_deg": "32.95460129", + "longitude_deg": "-84.26319885", + "elevation_ft": "798", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Thomaston", + "scheduled_service": "no", + "gps_code": "KOPN", + "local_code": "OPN" + }, + { + "id": "20631", + "ident": "KOQN", + "type": "small_airport", + "name": "Brandywine Regional Airport", + "latitude_deg": "39.990101", + "longitude_deg": "-75.581902", + "elevation_ft": "466", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "West Chester", + "scheduled_service": "no", + "gps_code": "KOQN", + "local_code": "OQN", + "home_link": "https://www.brandywineairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brandywine_Airport", + "keywords": "Formerly N99" + }, + { + "id": "3753", + "ident": "KOQU", + "type": "medium_airport", + "name": "Quonset State Airport", + "latitude_deg": "41.597099304199", + "longitude_deg": "-71.412101745605", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "North Kingstown", + "scheduled_service": "no", + "gps_code": "KOQU", + "iata_code": "NCO", + "local_code": "OQU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quonset_State_Airport", + "keywords": "Quonset Point NAS" + }, + { + "id": "20760", + "ident": "KOQW", + "type": "small_airport", + "name": "Maquoketa Municipal Airport", + "latitude_deg": "42.05009841918945", + "longitude_deg": "-90.73880004882812", + "elevation_ft": "769", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Maquoketa", + "scheduled_service": "no", + "gps_code": "KOQW", + "local_code": "OQW" + }, + { + "id": "307559", + "ident": "KOR", + "type": "small_airport", + "name": "Kakoro(Koroko) Airstrip", + "latitude_deg": "-7.8346666666700004", + "longitude_deg": "146.5335", + "elevation_ft": "230", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Kakoro", + "scheduled_service": "no", + "gps_code": "AYRO", + "iata_code": "KOR", + "local_code": "KKO" + }, + { + "id": "20761", + "ident": "KORB", + "type": "small_airport", + "name": "Orr Regional Airport", + "latitude_deg": "48.015899658203125", + "longitude_deg": "-92.8561019897461", + "elevation_ft": "1311", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Orr", + "scheduled_service": "no", + "gps_code": "KORB", + "local_code": "ORB" + }, + { + "id": "20762", + "ident": "KORC", + "type": "closed", + "name": "Orange City Municipal Airport", + "latitude_deg": "42.990299", + "longitude_deg": "-96.062798", + "elevation_ft": "1414", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Orange City", + "scheduled_service": "no", + "gps_code": "KORC", + "local_code": "ORC" + }, + { + "id": "3754", + "ident": "KORD", + "type": "large_airport", + "name": "Chicago O'Hare International Airport", + "latitude_deg": "41.9786", + "longitude_deg": "-87.9048", + "elevation_ft": "672", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "yes", + "gps_code": "KORD", + "iata_code": "ORD", + "local_code": "ORD", + "home_link": "https://www.flychicago.com/ohare/home/pages/default.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/O'Hare_International_Airport", + "keywords": "CHI, Orchard Place" + }, + { + "id": "20763", + "ident": "KORE", + "type": "small_airport", + "name": "Orange Municipal Airport", + "latitude_deg": "42.570098877", + "longitude_deg": "-72.2885971069", + "elevation_ft": "555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Orange", + "scheduled_service": "no", + "gps_code": "KORE", + "local_code": "ORE", + "home_link": "http://www.flyore.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orange_Municipal_Airport" + }, + { + "id": "3755", + "ident": "KORF", + "type": "medium_airport", + "name": "Norfolk International Airport", + "latitude_deg": "36.8946", + "longitude_deg": "-76.201202", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Norfolk", + "scheduled_service": "yes", + "gps_code": "KORF", + "iata_code": "ORF", + "local_code": "ORF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Norfolk_International_Airport" + }, + { + "id": "20764", + "ident": "KORG", + "type": "small_airport", + "name": "Orange County Airport", + "latitude_deg": "30.06920051574707", + "longitude_deg": "-93.8009033203125", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Orange", + "scheduled_service": "no", + "gps_code": "KORG", + "local_code": "ORG" + }, + { + "id": "3756", + "ident": "KORH", + "type": "medium_airport", + "name": "Worcester Regional Airport", + "latitude_deg": "42.2673", + "longitude_deg": "-71.875702", + "elevation_ft": "1009", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Worcester", + "scheduled_service": "yes", + "gps_code": "KORH", + "iata_code": "ORH", + "local_code": "ORH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Worcester-Metrowest-Boston_Airport" + }, + { + "id": "18489", + "ident": "KORK", + "type": "small_airport", + "name": "North Little Rock Municipal Airport", + "latitude_deg": "34.83309937", + "longitude_deg": "-92.25409698", + "elevation_ft": "545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "North Little Rock", + "scheduled_service": "no", + "gps_code": "KORK", + "local_code": "ORK", + "wikipedia_link": "https://en.wikipedia.org/wiki/North_Little_Rock_Municipal_Airport", + "keywords": "1M1" + }, + { + "id": "20765", + "ident": "KORL", + "type": "small_airport", + "name": "Orlando Executive Airport", + "latitude_deg": "28.5455", + "longitude_deg": "-81.332901", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "KORL", + "iata_code": "ORL", + "local_code": "ORL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orlando_Executive_Airport", + "keywords": "Herndon Airport, Orlando Executive Airport, KORL, ORL, Orlando Municipal Airport, Orlando Army Air Base, Orlando Air Force Base, Naval Training Center Orlando" + }, + { + "id": "23952", + "ident": "KORS", + "type": "small_airport", + "name": "Orcas Island Airport", + "latitude_deg": "48.7081985474", + "longitude_deg": "-122.910003662", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Eastsound", + "scheduled_service": "yes", + "gps_code": "KORS", + "iata_code": "ESD", + "local_code": "ORS", + "home_link": "http://www.portoforcas.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orcas_Island_Airport" + }, + { + "id": "20766", + "ident": "KOSA", + "type": "small_airport", + "name": "Mount Pleasant Regional Airport", + "latitude_deg": "33.09550095", + "longitude_deg": "-94.96150208", + "elevation_ft": "364", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mount Pleasant", + "scheduled_service": "no", + "gps_code": "KOSA", + "local_code": "OSA" + }, + { + "id": "20767", + "ident": "KOSC", + "type": "small_airport", + "name": "Oscoda Wurtsmith Airport", + "latitude_deg": "44.451599", + "longitude_deg": "-83.394096", + "elevation_ft": "633", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Oscoda", + "scheduled_service": "no", + "gps_code": "KOSC", + "iata_code": "OSC", + "local_code": "OSC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oscoda%E2%80%93Wurtsmith_Airport" + }, + { + "id": "3757", + "ident": "KOSH", + "type": "medium_airport", + "name": "Wittman Regional Airport", + "latitude_deg": "43.98440170288086", + "longitude_deg": "-88.55699920654297", + "elevation_ft": "808", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Oshkosh", + "scheduled_service": "no", + "gps_code": "KOSH", + "iata_code": "OSH", + "local_code": "OSH", + "home_link": "http://www.wittmanairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wittman_Regional_Airport" + }, + { + "id": "3758", + "ident": "KOSU", + "type": "medium_airport", + "name": "The Ohio State University Airport - Don Scott Field", + "latitude_deg": "40.0798", + "longitude_deg": "-83.072998", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "KOSU", + "iata_code": "OSU", + "local_code": "OSU", + "home_link": "https://osuairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ohio_State_University_Airport" + }, + { + "id": "20768", + "ident": "KOSX", + "type": "small_airport", + "name": "Kosciusko Attala County Airport", + "latitude_deg": "33.090301513671875", + "longitude_deg": "-89.54199981689453", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Kosciusko", + "scheduled_service": "no", + "gps_code": "KOSX", + "local_code": "OSX" + }, + { + "id": "20769", + "ident": "KOTG", + "type": "small_airport", + "name": "Worthington Municipal Airport", + "latitude_deg": "43.65510177612305", + "longitude_deg": "-95.5792007446289", + "elevation_ft": "1574", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Worthington", + "scheduled_service": "no", + "gps_code": "KOTG", + "local_code": "OTG" + }, + { + "id": "3759", + "ident": "KOTH", + "type": "medium_airport", + "name": "Southwest Oregon Regional Airport", + "latitude_deg": "43.41709899902344", + "longitude_deg": "-124.24600219726562", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "North Bend", + "scheduled_service": "yes", + "gps_code": "KOTH", + "iata_code": "OTH", + "local_code": "OTH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Southwest_Oregon_Regional_Airport" + }, + { + "id": "3760", + "ident": "KOTM", + "type": "medium_airport", + "name": "Ottumwa Regional Airport", + "latitude_deg": "41.106368", + "longitude_deg": "-92.449837", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Ottumwa", + "scheduled_service": "no", + "gps_code": "KOTM", + "iata_code": "OTM", + "local_code": "OTM" + }, + { + "id": "20771", + "ident": "KOUN", + "type": "small_airport", + "name": "University of Oklahoma Westheimer Airport", + "latitude_deg": "35.2456", + "longitude_deg": "-97.472099", + "elevation_ft": "1182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Norman", + "scheduled_service": "no", + "gps_code": "KOUN", + "iata_code": "OUN", + "local_code": "OUN", + "home_link": "http://www.ou.edu/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/University_of_Oklahoma_Westheimer_Airport" + }, + { + "id": "20772", + "ident": "KOVE", + "type": "small_airport", + "name": "Oroville Municipal Airport", + "latitude_deg": "39.487800598145", + "longitude_deg": "-121.62200164795", + "elevation_ft": "192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oroville", + "scheduled_service": "no", + "gps_code": "KOVE", + "iata_code": "OVE", + "local_code": "OVE", + "home_link": "http://www.cityoforoville.org/index.aspx?page=210", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oroville_Municipal_Airport", + "keywords": "Oroville AAF" + }, + { + "id": "29834", + "ident": "KOVK", + "type": "closed", + "name": "Dunkirk Airport", + "latitude_deg": "42.47439956665039", + "longitude_deg": "-79.34719848632812", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "scheduled_service": "no", + "gps_code": "KOVK", + "local_code": "OVK" + }, + { + "id": "20773", + "ident": "KOVL", + "type": "small_airport", + "name": "Olivia Regional Airport", + "latitude_deg": "44.77859878540039", + "longitude_deg": "-95.03279876708984", + "elevation_ft": "1076", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Olivia", + "scheduled_service": "no", + "gps_code": "KOVL", + "local_code": "OVL" + }, + { + "id": "20774", + "ident": "KOVO", + "type": "small_airport", + "name": "North Vernon Airport", + "latitude_deg": "39.04560089", + "longitude_deg": "-85.6053009", + "elevation_ft": "757", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "North Vernon", + "scheduled_service": "no", + "gps_code": "KOVO", + "local_code": "OVO" + }, + { + "id": "20775", + "ident": "KOVS", + "type": "small_airport", + "name": "Boscobel Airport", + "latitude_deg": "43.16019821", + "longitude_deg": "-90.67549896", + "elevation_ft": "673", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Boscobel", + "scheduled_service": "no", + "gps_code": "KOVS", + "local_code": "OVS" + }, + { + "id": "20776", + "ident": "KOWA", + "type": "small_airport", + "name": "Owatonna Degner Regional Airport", + "latitude_deg": "44.12340164", + "longitude_deg": "-93.26059723", + "elevation_ft": "1145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Owatonna", + "scheduled_service": "no", + "gps_code": "KOWA", + "iata_code": "OWA", + "local_code": "OWA", + "home_link": "http://ci.owatonna.mn.us/airport" + }, + { + "id": "3761", + "ident": "KOWB", + "type": "medium_airport", + "name": "Owensboro Daviess County Airport", + "latitude_deg": "37.74010086", + "longitude_deg": "-87.16680145", + "elevation_ft": "407", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Owensboro", + "scheduled_service": "yes", + "gps_code": "KOWB", + "iata_code": "OWB", + "local_code": "OWB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Owensboro-Daviess_County_Regional_Airport" + }, + { + "id": "20777", + "ident": "KOWD", + "type": "medium_airport", + "name": "Norwood Memorial Airport", + "latitude_deg": "42.1904983521", + "longitude_deg": "-71.1728973389", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Norwood", + "scheduled_service": "no", + "gps_code": "KOWD", + "iata_code": "OWD", + "local_code": "OWD", + "home_link": "http://www.ci.norwood.ma.us/Airport/Default.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Norwood_Memorial_Airport" + }, + { + "id": "20778", + "ident": "KOWI", + "type": "small_airport", + "name": "Ottawa Municipal Airport", + "latitude_deg": "38.538700103759766", + "longitude_deg": "-95.25299835205078", + "elevation_ft": "966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Ottawa", + "scheduled_service": "no", + "gps_code": "KOWI", + "local_code": "OWI" + }, + { + "id": "20779", + "ident": "KOWK", + "type": "small_airport", + "name": "Central Maine Airport of Norridgewock", + "latitude_deg": "44.71549988", + "longitude_deg": "-69.86650085", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Norridgewock", + "scheduled_service": "no", + "gps_code": "KOWK", + "iata_code": "OWK", + "local_code": "OWK", + "home_link": "http://www.townofnorridgewock.com/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Central_Maine_Airport_of_Norridgewock", + "keywords": "Central Maine Regional Airport" + }, + { + "id": "18361", + "ident": "KOWP", + "type": "small_airport", + "name": "William R. Pogue Municipal Airport", + "latitude_deg": "36.1753006", + "longitude_deg": "-96.15180206", + "elevation_ft": "892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Sand Springs", + "scheduled_service": "no", + "gps_code": "KOWP", + "local_code": "OWP" + }, + { + "id": "20780", + "ident": "KOWX", + "type": "small_airport", + "name": "Putnam County Airport", + "latitude_deg": "41.035599", + "longitude_deg": "-83.982002", + "elevation_ft": "764", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ottawa", + "scheduled_service": "no", + "gps_code": "KOWX", + "local_code": "OWX" + }, + { + "id": "20781", + "ident": "KOXB", + "type": "small_airport", + "name": "Ocean City Municipal Airport", + "latitude_deg": "38.310398101807", + "longitude_deg": "-75.124000549316", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Ocean City", + "scheduled_service": "no", + "gps_code": "KOXB", + "iata_code": "OCE", + "local_code": "OXB", + "home_link": "http://oceancitymd.gov/oc/departments/public-works/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ocean_City_Municipal_Airport_(Maryland)" + }, + { + "id": "20782", + "ident": "KOXC", + "type": "small_airport", + "name": "Waterbury Oxford Airport", + "latitude_deg": "41.47859954834", + "longitude_deg": "-73.135200500488", + "elevation_ft": "726", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Oxford", + "scheduled_service": "no", + "gps_code": "KOXC", + "iata_code": "OXC", + "local_code": "OXC", + "home_link": "http://www.ctairports.org/GeneralAviationAirports/WaterburyOxford/AbouttheAirport.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Waterbury%E2%80%93Oxford_Airport" + }, + { + "id": "20783", + "ident": "KOXD", + "type": "small_airport", + "name": "Miami University Airport", + "latitude_deg": "39.50230026", + "longitude_deg": "-84.78440094", + "elevation_ft": "1041", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Oxford", + "scheduled_service": "no", + "gps_code": "KOXD", + "iata_code": "OXD", + "local_code": "OXD", + "home_link": "http://www.units.miamioh.edu/businessservices/Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miami_University_Airport" + }, + { + "id": "20784", + "ident": "KOXI", + "type": "small_airport", + "name": "Starke County Airport", + "latitude_deg": "41.330098", + "longitude_deg": "-86.662302", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Knox", + "scheduled_service": "no", + "gps_code": "KOXI", + "local_code": "OXI" + }, + { + "id": "20785", + "ident": "KOXR", + "type": "medium_airport", + "name": "Oxnard Airport", + "latitude_deg": "34.200801849365", + "longitude_deg": "-119.20700073242", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oxnard", + "scheduled_service": "no", + "gps_code": "KOXR", + "iata_code": "OXR", + "local_code": "OXR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oxnard_Airport" + }, + { + "id": "20786", + "ident": "KOXV", + "type": "small_airport", + "name": "Knoxville Municipal Airport", + "latitude_deg": "41.29890060424805", + "longitude_deg": "-93.11380004882812", + "elevation_ft": "928", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Knoxville", + "scheduled_service": "no", + "gps_code": "KOXV", + "local_code": "OXV" + }, + { + "id": "20787", + "ident": "KOY", + "type": "seaplane_base", + "name": "Olga Bay Seaplane Base", + "latitude_deg": "57.161499023400005", + "longitude_deg": "-154.229995728", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Olga Bay", + "scheduled_service": "no", + "gps_code": "KOY", + "iata_code": "KOY", + "local_code": "KOY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Olga_Bay_Seaplane_Base" + }, + { + "id": "20788", + "ident": "KOYM", + "type": "small_airport", + "name": "St Marys Municipal Airport", + "latitude_deg": "41.412498474121", + "longitude_deg": "-78.502601623535", + "elevation_ft": "1934", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "St Marys", + "scheduled_service": "no", + "gps_code": "KOYM", + "iata_code": "STQ", + "local_code": "OYM", + "home_link": "http://stmarysmunicipalairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Marys_Municipal_Airport" + }, + { + "id": "20789", + "ident": "KOZA", + "type": "small_airport", + "name": "Ozona Municipal Airport", + "latitude_deg": "30.735300064087", + "longitude_deg": "-101.20300292969", + "elevation_ft": "2381", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no", + "gps_code": "KOZA", + "iata_code": "OZA", + "local_code": "OZA", + "home_link": "http://www.ozona.com/articles/view/ozona-municipal-airport-52b1db2c-3ff8-4122-8b3f-1a349bf0d2c8" + }, + { + "id": "3762", + "ident": "KOZR", + "type": "medium_airport", + "name": "Cairns AAF (Fort Rucker) Air Field", + "latitude_deg": "31.27569962", + "longitude_deg": "-85.71340179", + "elevation_ft": "301", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker/Ozark", + "scheduled_service": "no", + "gps_code": "KOZR", + "iata_code": "OZR", + "local_code": "OZR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cairns_Army_Airfield" + }, + { + "id": "20790", + "ident": "KOZW", + "type": "small_airport", + "name": "Livingston County Spencer J. Hardy Airport", + "latitude_deg": "42.62919998", + "longitude_deg": "-83.98210144", + "elevation_ft": "962", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Howell", + "scheduled_service": "no", + "gps_code": "KOZW", + "local_code": "OZW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Livingston_County_Spencer_J._Hardy_Airport" + }, + { + "id": "35211", + "ident": "KP-0001", + "type": "closed", + "name": "Chongjin Airport", + "latitude_deg": "41.801300048799995", + "longitude_deg": "129.854995728", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-09", + "municipality": "Chongjin", + "scheduled_service": "yes", + "keywords": "K-34" + }, + { + "id": "35212", + "ident": "KP-0002", + "type": "medium_airport", + "name": "Haeju Airfield", + "latitude_deg": "38.00739", + "longitude_deg": "125.777321", + "elevation_ft": "131", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-05", + "municipality": "Haeju", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Haeju_Airport" + }, + { + "id": "317103", + "ident": "KP-0003", + "type": "small_airport", + "name": "Yonpo Air Base", + "latitude_deg": "39.792215", + "longitude_deg": "127.535906", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-08", + "municipality": "Hamhung", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yonpo_Airfield", + "keywords": "K-27 Air Base" + }, + { + "id": "35214", + "ident": "KP-0004", + "type": "small_airport", + "name": "Uiju Airport", + "latitude_deg": "40.150013", + "longitude_deg": "124.501104", + "elevation_ft": "32", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-03", + "municipality": "Uiju", + "scheduled_service": "no", + "gps_code": "ZKUJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Uiju_Airfield", + "keywords": "의주비행장, 義州飛行場" + }, + { + "id": "35215", + "ident": "KP-0005", + "type": "small_airport", + "name": "T'aet'an-pihaengjang Airport", + "latitude_deg": "38.131113", + "longitude_deg": "125.233154", + "elevation_ft": "246", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-05", + "municipality": "Taetan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taetan_Airport" + }, + { + "id": "35216", + "ident": "KP-0006", + "type": "small_airport", + "name": "Taechon Airport", + "latitude_deg": "39.9039", + "longitude_deg": "125.491997", + "elevation_ft": "118", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-03", + "municipality": "Taechon", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taechon_Airport" + }, + { + "id": "35217", + "ident": "KP-0007", + "type": "small_airport", + "name": "Taebukpo Ri Airport", + "latitude_deg": "38.333801", + "longitude_deg": "126.869003", + "elevation_ft": "223", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-06", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taebukpo_Ri_Airport" + }, + { + "id": "317645", + "ident": "KP-0008", + "type": "closed", + "name": "Wonsan Elite Airport", + "latitude_deg": "39.18392", + "longitude_deg": "127.396839", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-07", + "municipality": "Wonsan", + "scheduled_service": "no" + }, + { + "id": "35219", + "ident": "KP-0009", + "type": "small_airport", + "name": "Sinuiju Airport", + "latitude_deg": "40.087216", + "longitude_deg": "124.407721", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-03", + "municipality": "Sinuiju", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sinuiju_Airport" + }, + { + "id": "35220", + "ident": "KP-0010", + "type": "small_airport", + "name": "Pyong Ni South Highway Strip", + "latitude_deg": "39.321085", + "longitude_deg": "125.897913", + "elevation_ft": "105", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-02", + "municipality": "Pyong Ni", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_highway_airstrips_in_North_Korea" + }, + { + "id": "35221", + "ident": "KP-0011", + "type": "closed", + "name": "Mirim Airbase", + "latitude_deg": "39.017583", + "longitude_deg": "125.844913", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-01", + "municipality": "Pyongyang (Sadong)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mirim_Airport" + }, + { + "id": "35222", + "ident": "KP-0012", + "type": "medium_airport", + "name": "Kwaksan Air Base", + "latitude_deg": "39.731218", + "longitude_deg": "125.110159", + "elevation_ft": "62", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-03", + "municipality": "Kwaksan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kwaksan_Airport" + }, + { + "id": "35223", + "ident": "KP-0013", + "type": "small_airport", + "name": "Kuum-ni Airport", + "latitude_deg": "38.864707", + "longitude_deg": "127.904034", + "elevation_ft": "66", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-07", + "municipality": "Tongchon", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kuum_Ni_Airport" + }, + { + "id": "35224", + "ident": "KP-0014", + "type": "small_airport", + "name": "Koksan Highway Airport", + "latitude_deg": "38.732703", + "longitude_deg": "126.659875", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-06", + "municipality": "Koksan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_highway_airstrips_in_North_Korea; https://en.wikipedia.org/wiki/Koksan_South_Highway_Strip" + }, + { + "id": "35225", + "ident": "KP-0015", + "type": "medium_airport", + "name": "Koksan Air Base", + "latitude_deg": "38.690201", + "longitude_deg": "126.606003", + "elevation_ft": "840", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-06", + "municipality": "Koksan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Koksan_Airport", + "keywords": "곡산비행장, 谷山飛行場" + }, + { + "id": "35226", + "ident": "KP-0016", + "type": "small_airport", + "name": "Kilchu Highway Airport", + "latitude_deg": "40.912601470947266", + "longitude_deg": "129.30799865722656", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-09", + "scheduled_service": "no" + }, + { + "id": "35227", + "ident": "KP-0017", + "type": "small_airport", + "name": "Kangdong Airport", + "latitude_deg": "39.16088", + "longitude_deg": "126.042452", + "elevation_ft": "75", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-01", + "municipality": "Kangdong", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kangdong_Airport" + }, + { + "id": "35228", + "ident": "KP-0018", + "type": "small_airport", + "name": "Kaechon Airport", + "latitude_deg": "39.753657", + "longitude_deg": "125.902119", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-02", + "municipality": "Kaechon", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kaechon_Airport" + }, + { + "id": "35229", + "ident": "KP-0019", + "type": "small_airport", + "name": "Hyon-ni Airport", + "latitude_deg": "38.613517", + "longitude_deg": "127.452393", + "elevation_ft": "1913", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-07", + "municipality": "Hoeyang", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hyon_Ni_Airport" + }, + { + "id": "35230", + "ident": "KP-0020", + "type": "medium_airport", + "name": "Hwangju Airbase", + "latitude_deg": "38.652807", + "longitude_deg": "125.790453", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-06", + "municipality": "Hwangju", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hwangju_Airport" + }, + { + "id": "318168", + "ident": "KP-0021", + "type": "heliport", + "name": "Sinuiju Elite Area Heliport", + "latitude_deg": "40.0795", + "longitude_deg": "124.498079", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-03", + "municipality": "Sinuiju", + "scheduled_service": "no" + }, + { + "id": "35232", + "ident": "KP-0022", + "type": "medium_airport", + "name": "Pukchang Air Base", + "latitude_deg": "39.505001", + "longitude_deg": "125.963997", + "elevation_ft": "217", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-02", + "municipality": "Sunchon", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pukchang_Airport" + }, + { + "id": "35233", + "ident": "KP-0023", + "type": "small_airport", + "name": "Onchon Air Base", + "latitude_deg": "38.909402", + "longitude_deg": "125.232553", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-02", + "municipality": "Onchon", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Onchon_Airport" + }, + { + "id": "35234", + "ident": "KP-0024", + "type": "small_airport", + "name": "Wong Yo Ri Highway Strip", + "latitude_deg": "38.59404", + "longitude_deg": "126.526558", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-06", + "municipality": "Hwasong-ni", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_highway_airstrips_in_North_Korea" + }, + { + "id": "35235", + "ident": "KP-0025", + "type": "medium_airport", + "name": "Toksan Air Base", + "latitude_deg": "39.996257", + "longitude_deg": "127.611694", + "elevation_ft": "210", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-08", + "municipality": "Tŏksan-dong", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toksan_Airport" + }, + { + "id": "318232", + "ident": "KP-0026", + "type": "small_airport", + "name": "Pyongyang Elite Airfield", + "latitude_deg": "39.049552", + "longitude_deg": "125.80543", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-01", + "municipality": "Pyongyang", + "scheduled_service": "no", + "keywords": "Pyongyang Elite Airfield, KIM Jong Un Runway" + }, + { + "id": "35237", + "ident": "KP-0027", + "type": "small_airport", + "name": "Sinhung Highway Strip", + "latitude_deg": "40.180709", + "longitude_deg": "127.539425", + "elevation_ft": "220", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-08", + "municipality": "Sinhung", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_highway_airstrips_in_North_Korea" + }, + { + "id": "35238", + "ident": "KP-0028", + "type": "small_airport", + "name": "Sangwon Highway Strip", + "latitude_deg": "38.844721", + "longitude_deg": "126.066828", + "elevation_ft": "620", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-01", + "municipality": "Sangwon", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_highway_airstrips_in_North_Korea" + }, + { + "id": "35239", + "ident": "KP-0029", + "type": "small_airport", + "name": "Samjiyŏn Airport", + "latitude_deg": "41.907132", + "longitude_deg": "128.409834", + "elevation_ft": "4547", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-10", + "municipality": "Samjiyŏn", + "scheduled_service": "yes", + "gps_code": "ZKSE", + "iata_code": "YJS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Samjiy%C5%8Fn_Airport" + }, + { + "id": "35240", + "ident": "KP-0030", + "type": "small_airport", + "name": "Panghyon South Highway Strip", + "latitude_deg": "39.882894", + "longitude_deg": "125.158621", + "elevation_ft": "359", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-03", + "municipality": "Panghyon", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_highway_airstrips_in_North_Korea" + }, + { + "id": "35241", + "ident": "KP-0031", + "type": "small_airport", + "name": "Panghyon Airport", + "latitude_deg": "39.927444", + "longitude_deg": "125.207748", + "elevation_ft": "293", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-03", + "municipality": "Kusong", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Panghyon_Airport" + }, + { + "id": "35242", + "ident": "KP-0032", + "type": "medium_airport", + "name": "Orang (Chongjin) Airport", + "latitude_deg": "41.428538", + "longitude_deg": "129.647555", + "elevation_ft": "12", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-09", + "municipality": "Hoemun-ri", + "scheduled_service": "yes", + "gps_code": "ZKHM", + "iata_code": "RGO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chongjin_Airport", + "keywords": "K-33, Hoemun Airfield" + }, + { + "id": "35243", + "ident": "KP-0033", + "type": "small_airport", + "name": "Kang Da Ri Airport", + "latitude_deg": "39.098389", + "longitude_deg": "127.415331", + "elevation_ft": "56", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-07", + "municipality": "Wonsan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kang_Da_Ri_Airport" + }, + { + "id": "35244", + "ident": "KP-0034", + "type": "small_airport", + "name": "Ichon Airport", + "latitude_deg": "38.48225", + "longitude_deg": "126.858788", + "elevation_ft": "430", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-07", + "municipality": "Ichon", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ichon_Airport" + }, + { + "id": "35245", + "ident": "KP-0035", + "type": "medium_airport", + "name": "Hwangsuwon Airbase", + "latitude_deg": "40.6814", + "longitude_deg": "128.151001", + "elevation_ft": "4050", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-10", + "municipality": "Kimhyonggwon", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hwangsuwon_Airport", + "keywords": "황수원비행장, 黃水院飛行場" + }, + { + "id": "35246", + "ident": "KP-0036", + "type": "medium_airport", + "name": "Changjin Air Force Base", + "latitude_deg": "40.364375", + "longitude_deg": "127.264252", + "elevation_ft": "3457", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-08", + "municipality": "Changjin", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Changjin_Air_Force_Base" + }, + { + "id": "35247", + "ident": "KP-0037", + "type": "small_airport", + "name": "Ayang Ni Highway Strip", + "latitude_deg": "38.251763", + "longitude_deg": "125.964067", + "elevation_ft": "387", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-06", + "scheduled_service": "no" + }, + { + "id": "313681", + "ident": "KP-0038", + "type": "medium_airport", + "name": "Riwon Airbase", + "latitude_deg": "40.359822", + "longitude_deg": "128.720584", + "elevation_ft": "85", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-08", + "municipality": "Riwon-gun", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Riwon_Airport", + "keywords": "Iwon Airport" + }, + { + "id": "35249", + "ident": "KP-0039", + "type": "medium_airport", + "name": "Kwail Air Base", + "latitude_deg": "38.425487", + "longitude_deg": "125.019093", + "elevation_ft": "89", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-05", + "municipality": "Kwail", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kwail_Airport" + }, + { + "id": "35250", + "ident": "KP-0040", + "type": "small_airport", + "name": "Yong Hung Highway Airstrip", + "latitude_deg": "39.482282", + "longitude_deg": "127.322102", + "elevation_ft": "54", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-08", + "municipality": "Phungsong-ri", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_highway_airstrips_in_North_Korea" + }, + { + "id": "35251", + "ident": "KP-0041", + "type": "medium_airport", + "name": "Uthachi Highway Strip Airport", + "latitude_deg": "38.913877", + "longitude_deg": "125.821309", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-01", + "municipality": "Pyongyang (Ryokpo)", + "scheduled_service": "no" + }, + { + "id": "35252", + "ident": "KP-0042", + "type": "small_airport", + "name": "Toha Ri North Airport", + "latitude_deg": "38.70271", + "longitude_deg": "126.284709", + "elevation_ft": "840", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-06", + "municipality": "Toha Ri", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toha_Ri_North_Airport" + }, + { + "id": "35253", + "ident": "KP-0043", + "type": "small_airport", + "name": "Taechon Northwest Airport", + "latitude_deg": "39.99343", + "longitude_deg": "125.365505", + "elevation_ft": "293", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-03", + "municipality": "Taechon", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taechon_Northwest_Airport" + }, + { + "id": "35254", + "ident": "KP-0044", + "type": "small_airport", + "name": "Sungam ni Airport", + "latitude_deg": "41.674386", + "longitude_deg": "129.676437", + "elevation_ft": "92", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-09", + "municipality": "Chongjin", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sungam_Ni_Airport" + }, + { + "id": "35255", + "ident": "KP-0045", + "type": "small_airport", + "name": "Sonchon Airport", + "latitude_deg": "39.91855", + "longitude_deg": "124.840339", + "elevation_ft": "198", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-03", + "municipality": "Sonchon", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sonchon_Airport" + }, + { + "id": "35256", + "ident": "KP-0046", + "type": "small_airport", + "name": "Sohung South Airport", + "latitude_deg": "38.356398", + "longitude_deg": "126.219242", + "elevation_ft": "522", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-06", + "municipality": "Sohung", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sohung_South_Airport" + }, + { + "id": "322889", + "ident": "KP-0047", + "type": "small_airport", + "name": "Sinanju Highway Strip", + "latitude_deg": "39.675749", + "longitude_deg": "125.682735", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-03", + "municipality": "Anju", + "scheduled_service": "no" + }, + { + "id": "35258", + "ident": "KP-0048", + "type": "small_airport", + "name": "Pyongsul Li Airstrip", + "latitude_deg": "38.719369", + "longitude_deg": "126.721072", + "elevation_ft": "715", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-06", + "municipality": "Pyongsul Li", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pyongsul_Li_Airport" + }, + { + "id": "35259", + "ident": "KP-0049", + "type": "small_airport", + "name": "Paegam Airstrip", + "latitude_deg": "41.943835", + "longitude_deg": "128.851111", + "elevation_ft": "3248", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-10", + "municipality": "Paegam", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paegam_Airport" + }, + { + "id": "35260", + "ident": "KP-0050", + "type": "small_airport", + "name": "Ongjin Airport", + "latitude_deg": "37.93225", + "longitude_deg": "125.419664", + "elevation_ft": "167", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-05", + "municipality": "Ongjin", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ongjin_Airport" + }, + { + "id": "35261", + "ident": "KP-0051", + "type": "small_airport", + "name": "Okpyong ni Highway Strip Airstrip", + "latitude_deg": "39.271002", + "longitude_deg": "127.320728", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-07", + "municipality": "Okpyong-ni", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_highway_airstrips_in_North_Korea" + }, + { + "id": "35262", + "ident": "KP-0052", + "type": "small_airport", + "name": "Nuchon Ni Highway Strip", + "latitude_deg": "38.232045", + "longitude_deg": "126.264153", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-05", + "municipality": "Nuchon Ni", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_highway_airstrips_in_North_Korea" + }, + { + "id": "35263", + "ident": "KP-0053", + "type": "small_airport", + "name": "Manpo Airport", + "latitude_deg": "41.139365", + "longitude_deg": "126.356764", + "elevation_ft": "837", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-04", + "municipality": "Manpo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manpo_Airport" + }, + { + "id": "35264", + "ident": "KP-0054", + "type": "small_airport", + "name": "Maengsan Airport", + "latitude_deg": "39.652888", + "longitude_deg": "126.670218", + "elevation_ft": "2087", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-02", + "municipality": "Maengsan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maengsan_Airport" + }, + { + "id": "35265", + "ident": "KP-0055", + "type": "small_airport", + "name": "Kyongsong-Chuul Airport", + "latitude_deg": "41.560539", + "longitude_deg": "129.630411", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-09", + "municipality": "Kyongsong", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kyongsong_Chuul_Airport" + }, + { + "id": "35266", + "ident": "KP-0056", + "type": "small_airport", + "name": "Kuktong Airport", + "latitude_deg": "41.249741", + "longitude_deg": "129.563699", + "elevation_ft": "125", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-09", + "municipality": "Myonggan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kuktong_Airport", + "keywords": "극동비행장, 極洞飛行場" + }, + { + "id": "35267", + "ident": "KP-0057", + "type": "small_airport", + "name": "Kojo Highway Strip Airfield", + "latitude_deg": "38.836632", + "longitude_deg": "127.861977", + "elevation_ft": "272", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-07", + "municipality": "Kojo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_highway_airstrips_in_North_Korea" + }, + { + "id": "35268", + "ident": "KP-0058", + "type": "small_airport", + "name": "Ichon Northeast Airport", + "latitude_deg": "38.673885", + "longitude_deg": "126.923718", + "elevation_ft": "561", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-07", + "municipality": "Ichon", + "scheduled_service": "no" + }, + { + "id": "35269", + "ident": "KP-0059", + "type": "small_airport", + "name": "Ihyon Airstrip", + "latitude_deg": "38.130269", + "longitude_deg": "125.849204", + "elevation_ft": "600", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-05", + "municipality": "Sinwon", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rihyon_Airport" + }, + { + "id": "35270", + "ident": "KP-0060", + "type": "small_airport", + "name": "Hyesan Airport", + "latitude_deg": "41.377581", + "longitude_deg": "128.203583", + "elevation_ft": "2343", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-10", + "municipality": "Hyesan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hyesan_Airfield" + }, + { + "id": "35271", + "ident": "KP-0061", + "type": "small_airport", + "name": "Hoeyang Southeast Airfield", + "latitude_deg": "38.658035", + "longitude_deg": "127.650039", + "elevation_ft": "1093", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-07", + "municipality": "Hoeyang", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hoeyang_Southeast_Airport" + }, + { + "id": "35272", + "ident": "KP-0062", + "type": "small_airport", + "name": "Chik-Tong Airstrip", + "latitude_deg": "38.726405", + "longitude_deg": "126.680287", + "elevation_ft": "791", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-06", + "municipality": "Koksan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chiktong_Airport" + }, + { + "id": "35273", + "ident": "KP-0063", + "type": "small_airport", + "name": "Changyon Highway Strip Airstrip", + "latitude_deg": "38.22773", + "longitude_deg": "125.136251", + "elevation_ft": "62", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-05", + "municipality": "Changyon", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_highway_airstrips_in_North_Korea" + }, + { + "id": "35274", + "ident": "KP-0064", + "type": "small_airport", + "name": "Unchon Up Airport", + "latitude_deg": "38.548316", + "longitude_deg": "125.337203", + "elevation_ft": "482", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-05", + "municipality": "Unchon Up", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Unchon_Up_Airport" + }, + { + "id": "313682", + "ident": "KP-0065", + "type": "small_airport", + "name": "Sangwon Ni Highway Strip", + "latitude_deg": "40.122978", + "longitude_deg": "125.87122", + "elevation_ft": "531", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-03", + "municipality": "Sangwon Ni", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_highway_airstrips_in_North_Korea" + }, + { + "id": "315832", + "ident": "KP-0066", + "type": "heliport", + "name": "Hyangsan Heliport", + "latitude_deg": "40.026228", + "longitude_deg": "126.175337", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-03", + "municipality": "Hyangsan", + "scheduled_service": "no" + }, + { + "id": "315833", + "ident": "KP-0067", + "type": "small_airport", + "name": "Hyangsan Airport", + "latitude_deg": "40.028699", + "longitude_deg": "126.192741", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-03", + "municipality": "Hyangsan", + "scheduled_service": "no" + }, + { + "id": "322922", + "ident": "KP-0068", + "type": "medium_airport", + "name": "Koksan 2 Highway Strip", + "latitude_deg": "38.663481", + "longitude_deg": "126.586618", + "elevation_ft": "807", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-06", + "municipality": "Koksan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_highway_airstrips_in_North_Korea" + }, + { + "id": "322934", + "ident": "KP-0069", + "type": "heliport", + "name": "Pukch’ang Airbase East Heliport", + "latitude_deg": "39.49", + "longitude_deg": "125.995417", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-03", + "municipality": "Pukch’ang", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pukchang_Airport" + }, + { + "id": "322946", + "ident": "KP-0070", + "type": "small_airport", + "name": "Kang Da Ri Highway Strip", + "latitude_deg": "39.015216", + "longitude_deg": "127.406194", + "elevation_ft": "541", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-07", + "municipality": "Wonsan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_highway_airstrips_in_North_Korea; https://en.wikipedia.org/wiki/Kang_Da_Ri_Airport" + }, + { + "id": "322960", + "ident": "KP-0071", + "type": "heliport", + "name": "Masikryong Ski Resort Heliport", + "latitude_deg": "39.062549", + "longitude_deg": "127.249958", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-07", + "municipality": "Masikryong", + "scheduled_service": "no" + }, + { + "id": "323038", + "ident": "KP-0072", + "type": "small_airport", + "name": "Hwangsuwon Highway Strip Airstrip", + "latitude_deg": "40.672013", + "longitude_deg": "128.141098", + "elevation_ft": "4494", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-10", + "municipality": "Hwangsuwon", + "scheduled_service": "no" + }, + { + "id": "323040", + "ident": "KP-0073", + "type": "small_airport", + "name": "Kumgang Airfield", + "latitude_deg": "38.564295", + "longitude_deg": "128.004155", + "elevation_ft": "1325", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-07", + "municipality": "Kumgang", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kumgang_Airport" + }, + { + "id": "323042", + "ident": "KP-0074", + "type": "small_airport", + "name": "Mirim Aviation Club", + "latitude_deg": "39.009618", + "longitude_deg": "125.847493", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-01", + "municipality": "Pyongyang (Sadong)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mirim_Airport" + }, + { + "id": "323050", + "ident": "KP-0075", + "type": "small_airport", + "name": "Nuchon Ni Airfield", + "latitude_deg": "38.23791", + "longitude_deg": "126.1203", + "elevation_ft": "293", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-06", + "municipality": "Nuchon Ni", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_North_Korea" + }, + { + "id": "323067", + "ident": "KP-0076", + "type": "small_airport", + "name": "Onchon Underground Fighter Base", + "latitude_deg": "38.885955", + "longitude_deg": "125.280361", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-02", + "municipality": "Onchon", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Onchon_air_base" + }, + { + "id": "323068", + "ident": "KP-0077", + "type": "small_airport", + "name": "Panghyon Highway Strip 2", + "latitude_deg": "39.813662", + "longitude_deg": "125.149727", + "elevation_ft": "604", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-02", + "municipality": "Panghyon", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_highway_airstrips_in_North_Korea" + }, + { + "id": "323070", + "ident": "KP-0078", + "type": "small_airport", + "name": "Pyong Ni West Highway Strip Airstrip", + "latitude_deg": "39.410004", + "longitude_deg": "125.670376", + "elevation_ft": "95", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-02", + "municipality": "Pyong Ni", + "scheduled_service": "no" + }, + { + "id": "323072", + "ident": "KP-0079", + "type": "heliport", + "name": "P’yongnyung-Ni Helicopter Base", + "latitude_deg": "40.969416", + "longitude_deg": "129.248378", + "elevation_ft": "714", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-08", + "municipality": "Cheagun-dong", + "scheduled_service": "no" + }, + { + "id": "323073", + "ident": "KP-0080", + "type": "heliport", + "name": "Pyongyang City Heliport (K-24)", + "latitude_deg": "39.04152", + "longitude_deg": "125.809958", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-01", + "municipality": "Pyongyang", + "scheduled_service": "no" + }, + { + "id": "323074", + "ident": "KP-0081", + "type": "small_airport", + "name": "Sunan-Up North Highway Strip Airfield", + "latitude_deg": "39.255643", + "longitude_deg": "125.705674", + "elevation_ft": "207", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-02", + "municipality": "Sunan-Up", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_highway_airstrips_in_North_Korea" + }, + { + "id": "323088", + "ident": "KP-0082", + "type": "small_airport", + "name": "Tanchon South Airstrip", + "latitude_deg": "40.400523", + "longitude_deg": "128.855596", + "elevation_ft": "128", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-08", + "municipality": "Tanchon", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tanchon_South_Airport" + }, + { + "id": "323090", + "ident": "KP-0083", + "type": "small_airport", + "name": "Yong Hung Highway Reserve Strip Airfield", + "latitude_deg": "39.538767", + "longitude_deg": "127.288499", + "elevation_ft": "54", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-05", + "municipality": "Yong Hung", + "scheduled_service": "no" + }, + { + "id": "323097", + "ident": "KP-0084", + "type": "small_airport", + "name": "Ihyon Ni Highway Strip Airfield", + "latitude_deg": "38.061253", + "longitude_deg": "125.86843", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-05", + "municipality": "Ihyon Ni", + "scheduled_service": "no" + }, + { + "id": "323102", + "ident": "KP-0085", + "type": "small_airport", + "name": "Sangwon 2 Highway Strip Airfield", + "latitude_deg": "38.760509", + "longitude_deg": "126.080089", + "elevation_ft": "620", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-03", + "municipality": "Sangwon", + "scheduled_service": "no" + }, + { + "id": "323104", + "ident": "KP-0086", + "type": "small_airport", + "name": "Sohung Highway Strip Airfield", + "latitude_deg": "38.283486", + "longitude_deg": "126.234723", + "elevation_ft": "787", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-06", + "municipality": "Sohung", + "scheduled_service": "no" + }, + { + "id": "326409", + "ident": "KP-0087", + "type": "heliport", + "name": "Kanjin (Rajin) Heliport", + "latitude_deg": "42.21942", + "longitude_deg": "130.316927", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-13", + "municipality": "Kanjin (Rajin)", + "scheduled_service": "no", + "keywords": "Kanjin, Rajin, Rason" + }, + { + "id": "326560", + "ident": "KP-0088", + "type": "small_airport", + "name": "Yo-do Airstrip", + "latitude_deg": "39.233059", + "longitude_deg": "127.62385", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-07", + "municipality": "Yo-do Island", + "scheduled_service": "no", + "keywords": "Yo-do" + }, + { + "id": "327432", + "ident": "KP-0089", + "type": "heliport", + "name": "Okryu Childrens’ Hospital Heliport", + "latitude_deg": "39.023826", + "longitude_deg": "125.783168", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-01", + "municipality": "Pyongyang", + "scheduled_service": "no", + "keywords": "Okryu Childrens’ Hospital" + }, + { + "id": "35248", + "ident": "KP-0099", + "type": "small_airport", + "name": "Ch'o do Airport", + "latitude_deg": "38.551953", + "longitude_deg": "124.83261", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-05", + "municipality": "Ch'o do", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chodo_Airport" + }, + { + "id": "20791", + "ident": "KP01", + "type": "small_airport", + "name": "Eric Marcus Municipal Airport", + "latitude_deg": "32.452924", + "longitude_deg": "-112.861519", + "elevation_ft": "1458", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Ajo", + "scheduled_service": "no", + "gps_code": "KP01", + "local_code": "P01", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eric_Marcus_Municipal_Airport", + "keywords": "Ajo Muni, Ajo AAF" + }, + { + "id": "20792", + "ident": "KP03", + "type": "small_airport", + "name": "Cochise College Airport", + "latitude_deg": "31.3710994720459", + "longitude_deg": "-109.69000244140625", + "elevation_ft": "4124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Douglas", + "scheduled_service": "no", + "gps_code": "KP03", + "local_code": "P03" + }, + { + "id": "20793", + "ident": "KP04", + "type": "small_airport", + "name": "Bisbee Municipal Airport", + "latitude_deg": "31.3640003204", + "longitude_deg": "-109.883003235", + "elevation_ft": "4780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bisbee", + "scheduled_service": "no", + "gps_code": "P04", + "iata_code": "BSQ", + "local_code": "P04", + "home_link": "http://www.discoverbisbee.com/about_air.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bisbee_Municipal_Airport" + }, + { + "id": "20794", + "ident": "KP08", + "type": "small_airport", + "name": "Coolidge Municipal Airport", + "latitude_deg": "32.9359016418457", + "longitude_deg": "-111.427001953125", + "elevation_ft": "1574", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Coolidge", + "scheduled_service": "no", + "gps_code": "KP08", + "local_code": "P08" + }, + { + "id": "20795", + "ident": "KP10", + "type": "small_airport", + "name": "Polacca Airport", + "latitude_deg": "35.7916984558", + "longitude_deg": "-110.422996521", + "elevation_ft": "5573", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Polacca", + "scheduled_service": "no", + "gps_code": "P10", + "iata_code": "PXL", + "local_code": "P10", + "wikipedia_link": "https://en.wikipedia.org/wiki/Polacca_Airport", + "keywords": "06AZ" + }, + { + "id": "20796", + "ident": "KP13", + "type": "small_airport", + "name": "San Carlos Apache Airport", + "latitude_deg": "33.3531", + "longitude_deg": "-110.667", + "elevation_ft": "3261", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Globe", + "scheduled_service": "no", + "iata_code": "GLB", + "local_code": "P13", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Carlos_Apache_Airport" + }, + { + "id": "20797", + "ident": "KP14", + "type": "small_airport", + "name": "Holbrook Municipal Airport", + "latitude_deg": "34.940700531", + "longitude_deg": "-110.138000488", + "elevation_ft": "5262", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Holbrook", + "scheduled_service": "no", + "gps_code": "P14", + "iata_code": "HBK", + "local_code": "P14", + "wikipedia_link": "https://en.wikipedia.org/wiki/Holbrook_Municipal_Airport" + }, + { + "id": "20798", + "ident": "KP19", + "type": "small_airport", + "name": "Stellar Airpark", + "latitude_deg": "33.298829", + "longitude_deg": "-111.915795", + "elevation_ft": "1177", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Chandler", + "scheduled_service": "no", + "gps_code": "KP19", + "local_code": "P19", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stellar_Airpark", + "keywords": "chandler, stellar" + }, + { + "id": "20799", + "ident": "KP20", + "type": "small_airport", + "name": "Avi Suquilla Airport", + "latitude_deg": "34.14891", + "longitude_deg": "-114.268362", + "elevation_ft": "452", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Parker", + "scheduled_service": "no", + "local_code": "P20", + "wikipedia_link": "https://en.wikipedia.org/wiki/Avi_Suquilla_Airport", + "keywords": "Parker Municipal Airport" + }, + { + "id": "20800", + "ident": "KP23", + "type": "small_airport", + "name": "Seligman Airport", + "latitude_deg": "35.334999", + "longitude_deg": "-112.887001", + "elevation_ft": "5235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Seligman", + "scheduled_service": "no", + "local_code": "P23" + }, + { + "id": "20801", + "ident": "KP29", + "type": "small_airport", + "name": "Tombstone Municipal Airport", + "latitude_deg": "31.671061", + "longitude_deg": "-110.022039", + "elevation_ft": "4743", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tombstone", + "scheduled_service": "no", + "gps_code": "KP29", + "local_code": "P29" + }, + { + "id": "20802", + "ident": "KP33", + "type": "small_airport", + "name": "Cochise County Airport", + "latitude_deg": "32.24539948", + "longitude_deg": "-109.8949966", + "elevation_ft": "4187", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Willcox", + "scheduled_service": "no", + "gps_code": "P33", + "iata_code": "CWX", + "local_code": "P33", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cochise_County_Airport" + }, + { + "id": "20803", + "ident": "KP52", + "type": "small_airport", + "name": "Cottonwood Airport", + "latitude_deg": "34.73", + "longitude_deg": "-112.035004", + "elevation_ft": "3550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Cottonwood", + "scheduled_service": "no", + "local_code": "P52", + "home_link": "http://cottonwoodaz.gov/airport.php" + }, + { + "id": "3763", + "ident": "KPAE", + "type": "medium_airport", + "name": "Snohomish County (Paine Field) Airport", + "latitude_deg": "47.9063", + "longitude_deg": "-122.281998", + "elevation_ft": "606", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Everett", + "scheduled_service": "yes", + "gps_code": "KPAE", + "iata_code": "PAE", + "local_code": "PAE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paine_Field" + }, + { + "id": "3764", + "ident": "KPAH", + "type": "medium_airport", + "name": "Barkley Regional Airport", + "latitude_deg": "37.06079864501953", + "longitude_deg": "-88.7738037109375", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Paducah", + "scheduled_service": "yes", + "gps_code": "KPAH", + "iata_code": "PAH", + "local_code": "PAH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barkley_Regional_Airport" + }, + { + "id": "3765", + "ident": "KPAM", + "type": "medium_airport", + "name": "Tyndall Air Force Base", + "latitude_deg": "30.069599", + "longitude_deg": "-85.575401", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City", + "scheduled_service": "no", + "gps_code": "KPAM", + "iata_code": "PAM", + "local_code": "PAM", + "home_link": "http://www.tyndall.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tyndall_Air_Force_Base" + }, + { + "id": "20804", + "ident": "KPAN", + "type": "small_airport", + "name": "Payson Airport", + "latitude_deg": "34.256801605225", + "longitude_deg": "-111.33899688721", + "elevation_ft": "5157", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Payson", + "scheduled_service": "no", + "gps_code": "KPAN", + "iata_code": "PJB", + "local_code": "PAN", + "home_link": "http://www.paysonaz.gov/Departments/Airport/AirportHome.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Payson_Airport", + "keywords": "E69" + }, + { + "id": "20805", + "ident": "KPAO", + "type": "small_airport", + "name": "Palo Alto Airport of Santa Clara County", + "latitude_deg": "37.461101532", + "longitude_deg": "-122.114997864", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palo Alto", + "scheduled_service": "no", + "gps_code": "KPAO", + "iata_code": "PAO", + "local_code": "PAO", + "home_link": "http://www.countyairports.org/pao.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palo_Alto_Airport_of_Santa_Clara_County" + }, + { + "id": "20806", + "ident": "KPB", + "type": "seaplane_base", + "name": "Point Baker Seaplane Base", + "latitude_deg": "56.3518981934", + "longitude_deg": "-133.623001099", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Point Baker", + "scheduled_service": "no", + "gps_code": "KPB", + "iata_code": "KPB", + "local_code": "KPB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Point_Baker_Seaplane_Base" + }, + { + "id": "20807", + "ident": "KPBF", + "type": "medium_airport", + "name": "Pine Bluff Regional Airport, Grider Field", + "latitude_deg": "34.174121", + "longitude_deg": "-91.935643", + "elevation_ft": "206", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Pine Bluff", + "scheduled_service": "no", + "gps_code": "KPBF", + "iata_code": "PBF", + "local_code": "PBF", + "home_link": "http://www.pbaviation.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grider_Field" + }, + { + "id": "20808", + "ident": "KPBG", + "type": "medium_airport", + "name": "Plattsburgh International Airport", + "latitude_deg": "44.650901794433594", + "longitude_deg": "-73.46810150146484", + "elevation_ft": "234", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Plattsburgh", + "scheduled_service": "yes", + "gps_code": "KPBG", + "iata_code": "PBG", + "local_code": "PBG", + "home_link": "http://www.plattsburghinternationalairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Plattsburgh_International_Airport", + "keywords": "Plattsburgh Air Force Base" + }, + { + "id": "20809", + "ident": "KPBH", + "type": "small_airport", + "name": "Price County Airport", + "latitude_deg": "45.70899963378906", + "longitude_deg": "-90.40249633789062", + "elevation_ft": "1497", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Phillips", + "scheduled_service": "no", + "gps_code": "KPBH", + "local_code": "PBH" + }, + { + "id": "3766", + "ident": "KPBI", + "type": "large_airport", + "name": "Palm Beach International Airport", + "latitude_deg": "26.68320083618164", + "longitude_deg": "-80.09559631347656", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "West Palm Beach", + "scheduled_service": "yes", + "gps_code": "KPBI", + "iata_code": "PBI", + "local_code": "PBI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palm_Beach_International_Airport", + "keywords": "MFW, South Florida" + }, + { + "id": "20810", + "ident": "KPBX", + "type": "small_airport", + "name": "Pike County-Hatcher Field", + "latitude_deg": "37.5617981", + "longitude_deg": "-82.56639862", + "elevation_ft": "1473", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Pikeville", + "scheduled_service": "no", + "gps_code": "KPBX", + "iata_code": "PVL", + "local_code": "PBX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pike_County_Airport_(Kentucky)" + }, + { + "id": "24076", + "ident": "KPCA", + "type": "heliport", + "name": "Picacho Stagefield Heliport", + "latitude_deg": "32.6627893853", + "longitude_deg": "-111.487970352", + "elevation_ft": "1675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Picacho", + "scheduled_service": "no", + "gps_code": "KPCA", + "local_code": "PCA" + }, + { + "id": "20811", + "ident": "KPCM", + "type": "small_airport", + "name": "Plant City Municipal Airport", + "latitude_deg": "28.00020027", + "longitude_deg": "-82.16419983", + "elevation_ft": "153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Plant City", + "scheduled_service": "no", + "gps_code": "KPCM", + "local_code": "PCM" + }, + { + "id": "30256", + "ident": "KPCU", + "type": "closed", + "name": "Picayune Pearl River County Airport", + "latitude_deg": "30.522499", + "longitude_deg": "-89.706902", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Picayune", + "scheduled_service": "no", + "keywords": "KPCU, PCU" + }, + { + "id": "20812", + "ident": "KPCW", + "type": "small_airport", + "name": "Carl R Keller Field", + "latitude_deg": "41.516300201416016", + "longitude_deg": "-82.86869812011719", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Port Clinton", + "scheduled_service": "no", + "gps_code": "KPCW", + "local_code": "PCW" + }, + { + "id": "20813", + "ident": "KPCZ", + "type": "small_airport", + "name": "Waupaca Municipal Airport", + "latitude_deg": "44.33330154", + "longitude_deg": "-89.01979828", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Waupaca", + "scheduled_service": "no", + "gps_code": "KPCZ", + "local_code": "PCZ" + }, + { + "id": "20814", + "ident": "KPDC", + "type": "small_airport", + "name": "Prairie Du Chien Municipal Airport", + "latitude_deg": "43.019298553467", + "longitude_deg": "-91.12370300293", + "elevation_ft": "661", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Prairie Du Chien", + "scheduled_service": "no", + "gps_code": "KPDC", + "iata_code": "PCD", + "local_code": "PDC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Prairie_du_Chien_Municipal_Airport" + }, + { + "id": "3767", + "ident": "KPDK", + "type": "medium_airport", + "name": "DeKalb Peachtree Airport", + "latitude_deg": "33.8755989075", + "longitude_deg": "-84.3020019531", + "elevation_ft": "1003", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "KPDK", + "iata_code": "PDK", + "local_code": "PDK", + "home_link": "http://web.co.dekalb.ga.us/pdkairport/index.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/DeKalb-Peachtree_Airport" + }, + { + "id": "20815", + "ident": "KPDT", + "type": "medium_airport", + "name": "Eastern Oregon Regional Airport at Pendleton", + "latitude_deg": "45.695099", + "longitude_deg": "-118.841003", + "elevation_ft": "1497", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Pendleton", + "scheduled_service": "yes", + "gps_code": "KPDT", + "iata_code": "PDT", + "local_code": "PDT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eastern_Oregon_Regional_Airport" + }, + { + "id": "3768", + "ident": "KPDX", + "type": "large_airport", + "name": "Portland International Airport", + "latitude_deg": "45.58869934", + "longitude_deg": "-122.5979996", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "yes", + "gps_code": "KPDX", + "iata_code": "PDX", + "local_code": "PDX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Portland_International_Airport" + }, + { + "id": "307354", + "ident": "KPE", + "type": "small_airport", + "name": "Yapsiei Airport", + "latitude_deg": "-4.6280555555600005", + "longitude_deg": "141.094166667", + "elevation_ft": "600", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "scheduled_service": "no", + "gps_code": "AYYP", + "iata_code": "KPE", + "local_code": "YAP" + }, + { + "id": "20816", + "ident": "KPEA", + "type": "small_airport", + "name": "Pella Municipal Airport", + "latitude_deg": "41.40010070800781", + "longitude_deg": "-92.9458999633789", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Pella", + "scheduled_service": "no", + "gps_code": "KPEA", + "local_code": "PEA" + }, + { + "id": "20817", + "ident": "KPEO", + "type": "small_airport", + "name": "Penn Yan Airport", + "latitude_deg": "42.63710021972656", + "longitude_deg": "-77.05290222167969", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Penn Yan", + "scheduled_service": "no", + "gps_code": "KPEO", + "local_code": "PEO" + }, + { + "id": "20818", + "ident": "KPEQ", + "type": "small_airport", + "name": "Pecos Municipal Airport", + "latitude_deg": "31.382400512695", + "longitude_deg": "-103.51100158691", + "elevation_ft": "2613", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pecos", + "scheduled_service": "no", + "gps_code": "KPEQ", + "iata_code": "PEQ", + "local_code": "PEQ", + "home_link": "http://www.townofpecoscitytx.com/82/Municipal-Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pecos_Municipal_Airport", + "keywords": "Pecos AAF" + }, + { + "id": "20819", + "ident": "KPEX", + "type": "small_airport", + "name": "Paynesville Municipal Airport", + "latitude_deg": "45.37229919433594", + "longitude_deg": "-94.74659729003906", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Paynesville", + "scheduled_service": "no", + "gps_code": "KPEX", + "local_code": "PEX" + }, + { + "id": "20820", + "ident": "KPEZ", + "type": "small_airport", + "name": "Pleasanton Municipal Airport", + "latitude_deg": "28.954200744628906", + "longitude_deg": "-98.5199966430664", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pleasanton", + "scheduled_service": "no", + "gps_code": "KPEZ", + "local_code": "PEZ" + }, + { + "id": "3769", + "ident": "KPFN", + "type": "closed", + "name": "Panama City-Bay Co International Airport", + "latitude_deg": "30.212099", + "longitude_deg": "-85.6828", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Panama_City-Bay_County_International_Airport", + "keywords": "KPFN, PFN" + }, + { + "id": "20821", + "ident": "KPGA", + "type": "medium_airport", + "name": "Page Municipal Airport", + "latitude_deg": "36.92610168", + "longitude_deg": "-111.447998", + "elevation_ft": "4316", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Page", + "scheduled_service": "no", + "gps_code": "KPGA", + "iata_code": "PGA", + "local_code": "PGA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Page_Municipal_Airport" + }, + { + "id": "20822", + "ident": "KPGD", + "type": "medium_airport", + "name": "Charlotte County Airport", + "latitude_deg": "26.9202", + "longitude_deg": "-81.990501", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Punta Gorda", + "scheduled_service": "yes", + "gps_code": "KPGD", + "iata_code": "PGD", + "local_code": "PGD", + "home_link": "http://www.flypgd.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Punta_Gorda_Airport_(Florida)", + "keywords": "Punta Gorda AAF" + }, + { + "id": "344729", + "ident": "KPGL", + "type": "closed", + "name": "Jackson County Airport", + "latitude_deg": "30.3771", + "longitude_deg": "-88.4955", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Pascagoula", + "scheduled_service": "no", + "keywords": "KPGL, PGL" + }, + { + "id": "20823", + "ident": "KPGR", + "type": "small_airport", + "name": "Kirk Field", + "latitude_deg": "36.06290054", + "longitude_deg": "-90.50779724", + "elevation_ft": "290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Paragould", + "scheduled_service": "no", + "gps_code": "KPGR", + "iata_code": "PGR", + "local_code": "PGR", + "home_link": "http://cityofparagould.com/index.php?pageID=11287_2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kirk_Field", + "keywords": "Paragould Municipal" + }, + { + "id": "20824", + "ident": "KPGV", + "type": "medium_airport", + "name": "Pitt Greenville Airport", + "latitude_deg": "35.6352005", + "longitude_deg": "-77.38529968", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "KPGV", + "iata_code": "PGV", + "local_code": "PGV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pitt-Greenville_Airport" + }, + { + "id": "20825", + "ident": "KPH", + "type": "closed", + "name": "Pauloff Harbor Seaplane Base", + "latitude_deg": "54.459113", + "longitude_deg": "-162.693872", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Pauloff Harbor /Sanak Is/", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pauloff_Harbor_Seaplane_Base", + "keywords": "KPH" + }, + { + "id": "20826", + "ident": "KPHD", + "type": "small_airport", + "name": "Harry Clever Field", + "latitude_deg": "40.470901489258", + "longitude_deg": "-81.419700622559", + "elevation_ft": "894", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "New Philadelphia", + "scheduled_service": "no", + "gps_code": "KPHD", + "iata_code": "PHD", + "local_code": "PHD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harry_Clever_Field" + }, + { + "id": "3770", + "ident": "KPHF", + "type": "medium_airport", + "name": "Newport News Williamsburg International Airport", + "latitude_deg": "37.131901", + "longitude_deg": "-76.492996", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Newport News", + "scheduled_service": "yes", + "gps_code": "KPHF", + "iata_code": "PHF", + "local_code": "PHF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Newport_News/Williamsburg_International_Airport" + }, + { + "id": "20827", + "ident": "KPHG", + "type": "small_airport", + "name": "Phillipsburg Municipal Airport", + "latitude_deg": "39.735801696777344", + "longitude_deg": "-99.31710052490234", + "elevation_ft": "1907", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Phillipsburg", + "scheduled_service": "no", + "gps_code": "KPHG", + "local_code": "PHG" + }, + { + "id": "20828", + "ident": "KPHH", + "type": "small_airport", + "name": "Robert F Swinnie Airport", + "latitude_deg": "33.4516983032", + "longitude_deg": "-79.5261993408", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Andrews", + "scheduled_service": "no", + "gps_code": "KPHH", + "iata_code": "ADR", + "local_code": "PHH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Robert_F._Swinnie_Airport" + }, + { + "id": "20829", + "ident": "KPHK", + "type": "small_airport", + "name": "Palm Beach County Glades Airport", + "latitude_deg": "26.78499985", + "longitude_deg": "-80.69339752", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pahokee", + "scheduled_service": "no", + "gps_code": "KPHK", + "iata_code": "PHK", + "local_code": "PHK", + "home_link": "http://www.pbia.org/about/general-aviation/glades-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palm_Beach_County_Glades_Airport", + "keywords": "Pahokee Airport" + }, + { + "id": "3771", + "ident": "KPHL", + "type": "large_airport", + "name": "Philadelphia International Airport", + "latitude_deg": "39.87189865112305", + "longitude_deg": "-75.24109649658203", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "yes", + "gps_code": "KPHL", + "iata_code": "PHL", + "local_code": "PHL", + "home_link": "http://www.phl.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Philadelphia_International_Airport" + }, + { + "id": "20830", + "ident": "KPHN", + "type": "small_airport", + "name": "St Clair County International Airport", + "latitude_deg": "42.9109993", + "longitude_deg": "-82.52890015", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Port Huron", + "scheduled_service": "no", + "gps_code": "KPHN", + "iata_code": "PHN", + "local_code": "PHN", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Clair_County_International_Airport" + }, + { + "id": "20831", + "ident": "KPHP", + "type": "small_airport", + "name": "Philip Airport", + "latitude_deg": "44.048599243164", + "longitude_deg": "-101.59899902344", + "elevation_ft": "2207", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Philip", + "scheduled_service": "no", + "gps_code": "KPHP", + "iata_code": "PHP", + "local_code": "PHP", + "home_link": "http://www.philipsouthdakota.com/philip_airport_19.html" + }, + { + "id": "20832", + "ident": "KPHT", + "type": "small_airport", + "name": "Henry County Airport", + "latitude_deg": "36.338199615499995", + "longitude_deg": "-88.38289642330001", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "KPHT", + "iata_code": "PHT", + "local_code": "PHT", + "home_link": "http://www.paristnairport.com/default.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Henry_County_Airport_(Tennessee)" + }, + { + "id": "3772", + "ident": "KPHX", + "type": "large_airport", + "name": "Phoenix Sky Harbor International Airport", + "latitude_deg": "33.435302", + "longitude_deg": "-112.005905", + "elevation_ft": "1135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "yes", + "gps_code": "KPHX", + "iata_code": "PHX", + "local_code": "PHX", + "home_link": "http://phoenix.gov/skyharborairport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Phoenix_Sky_Harbor_International_Airport" + }, + { + "id": "3773", + "ident": "KPIA", + "type": "medium_airport", + "name": "General Wayne A. Downing Peoria International Airport", + "latitude_deg": "40.6642", + "longitude_deg": "-89.693298", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Peoria", + "scheduled_service": "yes", + "gps_code": "KPIA", + "iata_code": "PIA", + "local_code": "PIA", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Wayne_A._Downing_Peoria_International_Airport", + "keywords": "Peoria International Airport" + }, + { + "id": "3774", + "ident": "KPIB", + "type": "medium_airport", + "name": "Hattiesburg Laurel Regional Airport", + "latitude_deg": "31.4671", + "longitude_deg": "-89.337097", + "elevation_ft": "298", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Moselle", + "scheduled_service": "yes", + "gps_code": "KPIB", + "iata_code": "PIB", + "local_code": "PIB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hattiesburg-Laurel_Regional_Airport" + }, + { + "id": "3775", + "ident": "KPIE", + "type": "medium_airport", + "name": "St Petersburg Clearwater International Airport", + "latitude_deg": "27.91020012", + "longitude_deg": "-82.68740082", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St Petersburg-Clearwater", + "scheduled_service": "yes", + "gps_code": "KPIE", + "iata_code": "PIE", + "local_code": "PIE", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Petersburg-Clearwater_International_Airport" + }, + { + "id": "3776", + "ident": "KPIH", + "type": "medium_airport", + "name": "Pocatello Regional Airport", + "latitude_deg": "42.9098014831543", + "longitude_deg": "-112.59600067138672", + "elevation_ft": "4452", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Pocatello", + "scheduled_service": "yes", + "gps_code": "KPIH", + "iata_code": "PIH", + "local_code": "PIH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pocatello_Regional_Airport" + }, + { + "id": "20833", + "ident": "KPIL", + "type": "small_airport", + "name": "Port Isabel Cameron County Airport", + "latitude_deg": "26.166200637817383", + "longitude_deg": "-97.34590148925781", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port Isabel", + "scheduled_service": "no", + "gps_code": "KPIL", + "local_code": "PIL" + }, + { + "id": "20834", + "ident": "KPIM", + "type": "small_airport", + "name": "Harris County Airport", + "latitude_deg": "32.8406982422", + "longitude_deg": "-84.8824005127", + "elevation_ft": "902", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Pine Mountain", + "scheduled_service": "no", + "gps_code": "KPIM", + "iata_code": "PIM", + "local_code": "PIM", + "home_link": "http://harriscountyga.gov/departments/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harris_County_Airport", + "keywords": "Callaway Gardens-Harris County Airport" + }, + { + "id": "3777", + "ident": "KPIR", + "type": "medium_airport", + "name": "Pierre Regional Airport", + "latitude_deg": "44.38270187", + "longitude_deg": "-100.2860031", + "elevation_ft": "1744", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Pierre", + "scheduled_service": "yes", + "gps_code": "KPIR", + "iata_code": "PIR", + "local_code": "PIR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pierre_Regional_Airport" + }, + { + "id": "3778", + "ident": "KPIT", + "type": "large_airport", + "name": "Pittsburgh International Airport", + "latitude_deg": "40.49150085", + "longitude_deg": "-80.23290253", + "elevation_ft": "1203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pittsburgh", + "scheduled_service": "yes", + "gps_code": "KPIT", + "iata_code": "PIT", + "local_code": "PIT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pittsburgh_International_Airport" + }, + { + "id": "19132", + "ident": "KPJC", + "type": "small_airport", + "name": "Zelienople Municipal Airport", + "latitude_deg": "40.80160141", + "longitude_deg": "-80.16069794", + "elevation_ft": "898", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Zelienople", + "scheduled_service": "no", + "gps_code": "KPJC", + "local_code": "PJC", + "keywords": "Formerly 8G7" + }, + { + "id": "20835", + "ident": "KPJY", + "type": "small_airport", + "name": "Pinckneyville Du Quoin Airport", + "latitude_deg": "37.977901458740234", + "longitude_deg": "-89.3604965209961", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pinckneyville", + "scheduled_service": "no", + "gps_code": "KPJY", + "local_code": "PJY" + }, + { + "id": "3779", + "ident": "KPKB", + "type": "medium_airport", + "name": "Mid Ohio Valley Regional Airport", + "latitude_deg": "39.34510040283203", + "longitude_deg": "-81.43920135498047", + "elevation_ft": "858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Parkersburg", + "scheduled_service": "yes", + "gps_code": "KPKB", + "iata_code": "PKB", + "local_code": "PKB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mid-Ohio_Valley_Regional_Airport" + }, + { + "id": "20836", + "ident": "KPKD", + "type": "small_airport", + "name": "Park Rapids Municipal Konshok Field", + "latitude_deg": "46.9006", + "longitude_deg": "-95.073095", + "elevation_ft": "1445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Park Rapids", + "scheduled_service": "no", + "gps_code": "KPKD", + "iata_code": "PKD", + "local_code": "PKD", + "home_link": "http://ci.park-rapids.mn.us/i_want_to/airport/index.php" + }, + { + "id": "20837", + "ident": "KPKF", + "type": "small_airport", + "name": "Park Falls Municipal Airport", + "latitude_deg": "45.955001831055", + "longitude_deg": "-90.42440032959", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Park Falls", + "scheduled_service": "no", + "gps_code": "KPKF", + "iata_code": "PKF", + "local_code": "PKF", + "home_link": "http://www.cityofparkfalls.com/community-resources/municipal-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Park_Falls_Municipal_Airport" + }, + { + "id": "20838", + "ident": "KPKV", + "type": "small_airport", + "name": "Calhoun County Airport", + "latitude_deg": "28.65399933", + "longitude_deg": "-96.6812973", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port Lavaca", + "scheduled_service": "no", + "gps_code": "KPKV", + "local_code": "PKV" + }, + { + "id": "308216", + "ident": "KPL", + "type": "small_airport", + "name": "Kapal Airport", + "latitude_deg": "-8.630184", + "longitude_deg": "142.823756", + "elevation_ft": "170", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Kapal", + "scheduled_service": "no", + "iata_code": "KPL", + "local_code": "KPL" + }, + { + "id": "3780", + "ident": "KPLB", + "type": "closed", + "name": "Clinton County Airport", + "latitude_deg": "44.6875", + "longitude_deg": "-73.52449798583984", + "elevation_ft": "371", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Plattsburgh", + "scheduled_service": "no", + "gps_code": "KPLB", + "iata_code": "PLB", + "local_code": "PLB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clinton_County_Airport" + }, + { + "id": "20839", + "ident": "KPLD", + "type": "small_airport", + "name": "Portland Municipal Airport", + "latitude_deg": "40.45080185", + "longitude_deg": "-84.99009705", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "KPLD", + "local_code": "PLD" + }, + { + "id": "20840", + "ident": "KPLK", + "type": "small_airport", + "name": "M. Graham Clark Downtown Airport", + "latitude_deg": "36.62590027", + "longitude_deg": "-93.22889709", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Branson / Hollister", + "scheduled_service": "no", + "gps_code": "KPLK", + "iata_code": "PLK", + "local_code": "PLK", + "home_link": "http://flyplk.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/M._Graham_Clark_Downtown_Airport", + "keywords": "M. Graham Clark Field, Taney County Airport" + }, + { + "id": "3781", + "ident": "KPLN", + "type": "medium_airport", + "name": "Pellston Regional Airport of Emmet County Airport", + "latitude_deg": "45.57089996", + "longitude_deg": "-84.79669952", + "elevation_ft": "721", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Pellston", + "scheduled_service": "yes", + "gps_code": "KPLN", + "iata_code": "PLN", + "local_code": "PLN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pellston_Regional_Airport" + }, + { + "id": "20841", + "ident": "KPLR", + "type": "small_airport", + "name": "St Clair County Airport", + "latitude_deg": "33.558799743652", + "longitude_deg": "-86.249099731445", + "elevation_ft": "485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Pell City", + "scheduled_service": "no", + "gps_code": "KPLR", + "iata_code": "PLR", + "local_code": "PLR", + "home_link": "http://www.plrairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Clair_County_Airport" + }, + { + "id": "24101", + "ident": "KPLU", + "type": "small_airport", + "name": "Pierce County-Thun Field", + "latitude_deg": "47.103901", + "longitude_deg": "-122.287003", + "elevation_ft": "538", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Puyallup", + "scheduled_service": "no", + "gps_code": "KPLU", + "local_code": "PLU", + "home_link": "https://www.co.pierce.wa.us/1633/Thun-Field-PLU", + "wikipedia_link": "https://en.m.wikipedia.org/wiki/Pierce_County_Airport", + "keywords": "1S0" + }, + { + "id": "20842", + "ident": "KPMB", + "type": "small_airport", + "name": "Pembina Municipal Airport", + "latitude_deg": "48.9425010681", + "longitude_deg": "-97.2407989502", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Pembina", + "scheduled_service": "no", + "gps_code": "KPMB", + "iata_code": "PMB", + "local_code": "PMB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pembina_Municipal_Airport" + }, + { + "id": "3782", + "ident": "KPMD", + "type": "medium_airport", + "name": "Palmdale Regional Airport / USAF Plant 42 Airport", + "latitude_deg": "34.629398", + "longitude_deg": "-118.084999", + "elevation_ft": "2543", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palmdale", + "scheduled_service": "no", + "gps_code": "KPMD", + "iata_code": "PMD", + "local_code": "PMD", + "wikipedia_link": "https://en.wikipedia.org/wiki/LA/Palmdale_Regional_Airport" + }, + { + "id": "20843", + "ident": "KPMH", + "type": "small_airport", + "name": "Greater Portsmouth Regional Airport", + "latitude_deg": "38.8404998779", + "longitude_deg": "-82.84729766850002", + "elevation_ft": "663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Portsmouth", + "scheduled_service": "no", + "gps_code": "KPMH", + "iata_code": "PMH", + "local_code": "PMH", + "home_link": "http://www.sciotocountyohio.com/airports.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greater_Portsmouth_Regional_Airport", + "keywords": "Scioto County Airport" + }, + { + "id": "20844", + "ident": "KPMP", + "type": "small_airport", + "name": "Pompano Beach Airpark", + "latitude_deg": "26.247100830078", + "longitude_deg": "-80.111099243164", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pompano Beach", + "scheduled_service": "no", + "gps_code": "KPMP", + "iata_code": "PPM", + "local_code": "PMP", + "home_link": "http://pompanobeachfl.gov/index.php/pages/pw_airpark/airpark", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pompano_Beach_Airpark" + }, + { + "id": "20845", + "ident": "KPMU", + "type": "small_airport", + "name": "Panola County Airport", + "latitude_deg": "34.36349869", + "longitude_deg": "-89.89260101", + "elevation_ft": "221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Batesville", + "scheduled_service": "no", + "gps_code": "KPMU", + "local_code": "PMU" + }, + { + "id": "20846", + "ident": "KPMV", + "type": "small_airport", + "name": "Plattsmouth Municipal Airport", + "latitude_deg": "40.95019913", + "longitude_deg": "-95.91790009", + "elevation_ft": "1204", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Plattsmouth", + "scheduled_service": "no", + "gps_code": "KPMV", + "local_code": "PMV" + }, + { + "id": "20847", + "ident": "KPMZ", + "type": "small_airport", + "name": "Plymouth Municipal Airport", + "latitude_deg": "35.80839920043945", + "longitude_deg": "-76.7593002319336", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "KPMZ", + "local_code": "PMZ" + }, + { + "id": "20848", + "ident": "KPNA", + "type": "medium_airport", + "name": "Ralph Wenz Field", + "latitude_deg": "42.79550171", + "longitude_deg": "-109.8069992", + "elevation_ft": "7102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Pinedale", + "scheduled_service": "no", + "gps_code": "KPNA", + "iata_code": "PWY", + "local_code": "PNA", + "home_link": "http://www.pinedaleonline.com/pinedaleairport.HTM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ralph_Wenz_Field" + }, + { + "id": "20849", + "ident": "KPNC", + "type": "medium_airport", + "name": "Ponca City Regional Airport", + "latitude_deg": "36.73199844", + "longitude_deg": "-97.09980011", + "elevation_ft": "1008", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ponca City", + "scheduled_service": "no", + "gps_code": "KPNC", + "iata_code": "PNC", + "local_code": "PNC", + "home_link": "http://www.poncacityok.gov/index.aspx?nid=181", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ponca_City_Regional_Airport" + }, + { + "id": "20850", + "ident": "KPNE", + "type": "medium_airport", + "name": "Northeast Philadelphia Airport", + "latitude_deg": "40.081902", + "longitude_deg": "-75.010597", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "yes", + "gps_code": "KPNE", + "iata_code": "PNE", + "local_code": "PNE", + "home_link": "http://www.phl.org/pne/pne.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Northeast_Philadelphia_Airport" + }, + { + "id": "20851", + "ident": "KPNM", + "type": "small_airport", + "name": "Princeton Municipal Airport", + "latitude_deg": "45.55989838", + "longitude_deg": "-93.60820007", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "KPNM", + "local_code": "PNM" + }, + { + "id": "20852", + "ident": "KPNN", + "type": "small_airport", + "name": "Princeton Municipal Airport", + "latitude_deg": "45.200698852539", + "longitude_deg": "-67.564399719238", + "elevation_ft": "266", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "KPNN", + "iata_code": "PNN", + "local_code": "PNN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Princeton_Municipal_Airport_(Maine)" + }, + { + "id": "3783", + "ident": "KPNS", + "type": "medium_airport", + "name": "Pensacola International Airport", + "latitude_deg": "30.4734", + "longitude_deg": "-87.1866", + "elevation_ft": "121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pensacola", + "scheduled_service": "yes", + "gps_code": "KPNS", + "iata_code": "PNS", + "local_code": "PNS", + "home_link": "http://www.flypensacola.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pensacola_Regional_Airport" + }, + { + "id": "20853", + "ident": "KPNT", + "type": "small_airport", + "name": "Pontiac Municipal Airport", + "latitude_deg": "40.924255", + "longitude_deg": "-88.62447", + "elevation_ft": "666", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pontiac", + "scheduled_service": "no", + "gps_code": "KPNT", + "local_code": "PNT" + }, + { + "id": "3784", + "ident": "KPOB", + "type": "medium_airport", + "name": "Pope Field", + "latitude_deg": "35.1708984375", + "longitude_deg": "-79.014503479004", + "elevation_ft": "217", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "KPOB", + "iata_code": "POB", + "local_code": "POB", + "home_link": "http://www.pope.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pope_Field", + "keywords": "Pope AFB" + }, + { + "id": "20854", + "ident": "KPOC", + "type": "small_airport", + "name": "Brackett Field", + "latitude_deg": "34.091598510742", + "longitude_deg": "-117.78199768066", + "elevation_ft": "1011", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "La Verne", + "scheduled_service": "no", + "gps_code": "KPOC", + "iata_code": "POC", + "local_code": "POC", + "home_link": "http://dpw.lacounty.gov/avi/airports/BrackettField.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brackett_Field" + }, + { + "id": "3785", + "ident": "KPOE", + "type": "medium_airport", + "name": "Polk Army Air Field", + "latitude_deg": "31.0447998", + "longitude_deg": "-93.1917038", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Fort Polk", + "scheduled_service": "no", + "gps_code": "KPOE", + "iata_code": "POE", + "local_code": "POE", + "home_link": "http://www.jrtc-polk.army.mil/" + }, + { + "id": "20855", + "ident": "KPOF", + "type": "small_airport", + "name": "Poplar Bluff Municipal Airport", + "latitude_deg": "36.773899078369", + "longitude_deg": "-90.324897766113", + "elevation_ft": "331", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Poplar Bluff", + "scheduled_service": "no", + "gps_code": "KPOF", + "iata_code": "POF", + "local_code": "POF", + "home_link": "http://www.poplarbluff-mo.gov/index.asp?SEC=CFDD2948-56CF-42FC-92CA-6AAA7D0952AA&Type=B_BASIC" + }, + { + "id": "20856", + "ident": "KPOH", + "type": "small_airport", + "name": "Pocahontas Municipal Airport", + "latitude_deg": "42.74280167", + "longitude_deg": "-94.64730072", + "elevation_ft": "1226", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Pocahontas", + "scheduled_service": "no", + "gps_code": "KPOH", + "local_code": "POH" + }, + { + "id": "3786", + "ident": "KPOU", + "type": "medium_airport", + "name": "Dutchess County Airport", + "latitude_deg": "41.6265983581543", + "longitude_deg": "-73.88420104980469", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Poughkeepsie", + "scheduled_service": "no", + "gps_code": "KPOU", + "iata_code": "POU", + "local_code": "POU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dutchess_County_Airport" + }, + { + "id": "18563", + "ident": "KPOV", + "type": "small_airport", + "name": "Portage County Regional Airport", + "latitude_deg": "41.210201", + "longitude_deg": "-81.251602", + "elevation_ft": "1197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ravenna", + "scheduled_service": "no", + "gps_code": "KPOV", + "local_code": "POV", + "home_link": "http://www.portagecountyregionalairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Portage_County_Regional_Airport" + }, + { + "id": "20857", + "ident": "KPOY", + "type": "small_airport", + "name": "Powell Municipal Airport", + "latitude_deg": "44.867198944092", + "longitude_deg": "-108.79299926758", + "elevation_ft": "5092", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Powell", + "scheduled_service": "no", + "gps_code": "KPOY", + "iata_code": "POY", + "local_code": "POY", + "home_link": "http://www.cityofpowell.com/assets/pages/city/airport.aspx" + }, + { + "id": "20858", + "ident": "KPPA", + "type": "small_airport", + "name": "Perry Lefors Field", + "latitude_deg": "35.612998962402", + "longitude_deg": "-100.99600219727", + "elevation_ft": "3245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pampa", + "scheduled_service": "no", + "gps_code": "KPPA", + "iata_code": "PPA", + "local_code": "PPA" + }, + { + "id": "20859", + "ident": "KPPF", + "type": "small_airport", + "name": "Tri-City Airport", + "latitude_deg": "37.32989883", + "longitude_deg": "-95.5062027", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Parsons", + "scheduled_service": "no", + "gps_code": "KPPF", + "iata_code": "PPF", + "local_code": "PPF", + "home_link": "http://www.parsonsks.com/index.aspx?NID=249", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tri-City_Airport_(Kansas)", + "keywords": "Cherryvale AAFAF #9" + }, + { + "id": "20860", + "ident": "KPPO", + "type": "small_airport", + "name": "La Porte Municipal Airport", + "latitude_deg": "41.5724983215", + "longitude_deg": "-86.73449707030001", + "elevation_ft": "812", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "La Porte", + "scheduled_service": "no", + "gps_code": "KPPO", + "iata_code": "LPO", + "local_code": "PPO", + "home_link": "http://www.laportemuniairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Porte_Municipal_Airport_(Indiana)" + }, + { + "id": "20861", + "ident": "KPPQ", + "type": "small_airport", + "name": "Pittsfield Penstone Municipal Airport", + "latitude_deg": "39.63890075683594", + "longitude_deg": "-90.77839660644531", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pittsfield", + "scheduled_service": "no", + "gps_code": "KPPQ", + "local_code": "PPQ" + }, + { + "id": "3787", + "ident": "KPQI", + "type": "medium_airport", + "name": "Presque Isle International Airport", + "latitude_deg": "46.688999", + "longitude_deg": "-68.0448", + "elevation_ft": "534", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Presque Isle", + "scheduled_service": "yes", + "gps_code": "KPQI", + "iata_code": "PQI", + "local_code": "PQI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Presque_Isle_International_Airport", + "keywords": "Northern Maine Regional" + }, + { + "id": "20862", + "ident": "KPQL", + "type": "small_airport", + "name": "Trent Lott International Airport", + "latitude_deg": "30.462799072266", + "longitude_deg": "-88.529197692871", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Pascagoula", + "scheduled_service": "no", + "gps_code": "KPQL", + "iata_code": "PGL", + "local_code": "PQL", + "home_link": "http://www.co.jackson.ms.us/departments/airport.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trent_Lott_International_Airport" + }, + { + "id": "20863", + "ident": "KPQN", + "type": "small_airport", + "name": "Pipestone Municipal Airport", + "latitude_deg": "43.983299255371094", + "longitude_deg": "-96.30030059814453", + "elevation_ft": "1736", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Pipestone", + "scheduled_service": "no", + "gps_code": "KPQN", + "local_code": "PQN" + }, + { + "id": "20864", + "ident": "KPR", + "type": "seaplane_base", + "name": "Port Williams Seaplane Base", + "latitude_deg": "58.4901008606", + "longitude_deg": "-152.582000732", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Port Williams", + "scheduled_service": "no", + "gps_code": "KPR", + "iata_code": "KPR", + "local_code": "KPR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Williams_Seaplane_Base" + }, + { + "id": "3788", + "ident": "KPRB", + "type": "medium_airport", + "name": "Paso Robles Municipal Airport", + "latitude_deg": "35.67290115", + "longitude_deg": "-120.6269989", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Paso Robles", + "scheduled_service": "no", + "gps_code": "KPRB", + "iata_code": "PRB", + "local_code": "PRB", + "home_link": "http://www.prcity.com/government/departments/publicworks/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paso_Robles_Municipal_Airport" + }, + { + "id": "3789", + "ident": "KPRC", + "type": "medium_airport", + "name": "Prescott International Airport - Ernest A. Love Field", + "latitude_deg": "34.654499", + "longitude_deg": "-112.419998", + "elevation_ft": "5045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Prescott", + "scheduled_service": "yes", + "gps_code": "KPRC", + "iata_code": "PRC", + "local_code": "PRC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ernest_A._Love_Field" + }, + { + "id": "20865", + "ident": "KPRG", + "type": "small_airport", + "name": "Edgar County Airport", + "latitude_deg": "39.700199127197266", + "longitude_deg": "-87.66960144042969", + "elevation_ft": "654", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "KPRG", + "local_code": "PRG" + }, + { + "id": "20866", + "ident": "KPRN", + "type": "small_airport", + "name": "Mac Crenshaw Memorial Airport", + "latitude_deg": "31.84569931", + "longitude_deg": "-86.61070251", + "elevation_ft": "451", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "KPRN", + "local_code": "PRN" + }, + { + "id": "20867", + "ident": "KPRO", + "type": "small_airport", + "name": "Perry Municipal Airport", + "latitude_deg": "41.82799911", + "longitude_deg": "-94.15989685", + "elevation_ft": "1013", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Perry", + "scheduled_service": "no", + "gps_code": "KPRO", + "iata_code": "PRO", + "local_code": "PRO", + "home_link": "http://www.perryia.org/perry-municipal-airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Perry_Municipal_Airport_(Iowa)" + }, + { + "id": "313522", + "ident": "KPRS", + "type": "small_airport", + "name": "Presidio Lely International Airport", + "latitude_deg": "29.634212", + "longitude_deg": "-104.361493", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Presidio", + "scheduled_service": "no", + "gps_code": "KPRS", + "local_code": "PRS" + }, + { + "id": "3790", + "ident": "KPRX", + "type": "medium_airport", + "name": "Cox Field", + "latitude_deg": "33.636600494385", + "longitude_deg": "-95.450798034668", + "elevation_ft": "547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "KPRX", + "iata_code": "PRX", + "local_code": "PRX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cox_Field", + "keywords": "Cox AAF" + }, + { + "id": "20868", + "ident": "KPRZ", + "type": "small_airport", + "name": "Portales Municipal Airport", + "latitude_deg": "34.14550018310547", + "longitude_deg": "-103.41000366210938", + "elevation_ft": "4078", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Portales", + "scheduled_service": "no", + "gps_code": "KPRZ", + "local_code": "PRZ" + }, + { + "id": "20869", + "ident": "KPSB", + "type": "small_airport", + "name": "Mid-State Regional Airport", + "latitude_deg": "40.884399414062", + "longitude_deg": "-78.087303161621", + "elevation_ft": "1948", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philipsburg", + "scheduled_service": "no", + "gps_code": "KPSB", + "local_code": "PSB", + "home_link": "http://www.midstateairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mid-State_Regional_Airport", + "keywords": "Black Moshannon Airport" + }, + { + "id": "20870", + "ident": "KPSC", + "type": "medium_airport", + "name": "Tri Cities Airport", + "latitude_deg": "46.26470184326172", + "longitude_deg": "-119.11900329589844", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Pasco", + "scheduled_service": "yes", + "gps_code": "KPSC", + "iata_code": "PSC", + "local_code": "PSC" + }, + { + "id": "20871", + "ident": "KPSF", + "type": "small_airport", + "name": "Pittsfield Municipal Airport", + "latitude_deg": "42.4268", + "longitude_deg": "-73.2929", + "elevation_ft": "1188", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Pittsfield", + "scheduled_service": "no", + "gps_code": "KPSF", + "iata_code": "PSF", + "local_code": "PSF", + "home_link": "https://www.cityofpittsfield.org/departments/airport/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pittsfield_Municipal_Airport_(Massachusetts)" + }, + { + "id": "20872", + "ident": "KPSK", + "type": "small_airport", + "name": "New River Valley Airport", + "latitude_deg": "37.137298583984", + "longitude_deg": "-80.678497314453", + "elevation_ft": "2105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Dublin", + "scheduled_service": "no", + "gps_code": "KPSK", + "iata_code": "PSK", + "local_code": "PSK", + "home_link": "http://www.nrvairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_River_Valley_Airport" + }, + { + "id": "3791", + "ident": "KPSM", + "type": "medium_airport", + "name": "Portsmouth International at Pease Airport", + "latitude_deg": "43.0778999329", + "longitude_deg": "-70.8233032227", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Portsmouth", + "scheduled_service": "yes", + "gps_code": "KPSM", + "iata_code": "PSM", + "local_code": "PSM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pease_International_Airport" + }, + { + "id": "20873", + "ident": "KPSN", + "type": "small_airport", + "name": "Palestine Municipal Airport", + "latitude_deg": "31.779699325562", + "longitude_deg": "-95.706298828125", + "elevation_ft": "423", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Palestine", + "scheduled_service": "no", + "gps_code": "KPSN", + "iata_code": "PSN", + "local_code": "PSN" + }, + { + "id": "18627", + "ident": "KPSO", + "type": "small_airport", + "name": "Stevens Field", + "latitude_deg": "37.28630066", + "longitude_deg": "-107.0559998", + "elevation_ft": "7664", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Pagosa Springs", + "scheduled_service": "no", + "gps_code": "KPSO", + "iata_code": "PGO", + "local_code": "PSO", + "home_link": "http://www.stevensfield.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stevens_Field", + "keywords": "2V1" + }, + { + "id": "3792", + "ident": "KPSP", + "type": "medium_airport", + "name": "Palm Springs International Airport", + "latitude_deg": "33.8297", + "longitude_deg": "-116.507004", + "elevation_ft": "477", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palm Springs", + "scheduled_service": "yes", + "gps_code": "KPSP", + "iata_code": "PSP", + "local_code": "PSP", + "home_link": "http://www.palmspringsca.gov/index.aspx?page=270", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palm_Springs_International_Airport", + "keywords": "Palm Springs Air Base" + }, + { + "id": "20874", + "ident": "KPSX", + "type": "small_airport", + "name": "Palacios Municipal Airport", + "latitude_deg": "28.727500915527", + "longitude_deg": "-96.250999450684", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Palacios", + "scheduled_service": "no", + "gps_code": "KPSX", + "iata_code": "PSX", + "local_code": "PSX", + "home_link": "http://cityofpalacios.org/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palacios_Municipal_Airport", + "keywords": "Palacios AAF" + }, + { + "id": "20875", + "ident": "KPTB", + "type": "small_airport", + "name": "Dinwiddie County Airport", + "latitude_deg": "37.183799743652", + "longitude_deg": "-77.507400512695", + "elevation_ft": "193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Petersburg", + "scheduled_service": "no", + "gps_code": "KPTB", + "iata_code": "PTB", + "local_code": "PTB", + "home_link": "http://www.ptbairport.com/" + }, + { + "id": "20876", + "ident": "KPTD", + "type": "small_airport", + "name": "Potsdam Municipal Airport Damon Field", + "latitude_deg": "44.67657", + "longitude_deg": "-74.948583", + "elevation_ft": "474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Potsdam", + "scheduled_service": "no", + "gps_code": "KPTD", + "local_code": "PTD" + }, + { + "id": "30254", + "ident": "KPTG", + "type": "closed", + "name": "Pennington Gap Airport", + "latitude_deg": "36.746101", + "longitude_deg": "-83.037201", + "elevation_ft": "1860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Pennington Gap", + "scheduled_service": "no", + "keywords": "VG54, KPTG, PTG, Lee County Airport" + }, + { + "id": "3793", + "ident": "KPTK", + "type": "medium_airport", + "name": "Oakland County International Airport", + "latitude_deg": "42.665500640869", + "longitude_deg": "-83.420097351074", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Pontiac", + "scheduled_service": "no", + "gps_code": "KPTK", + "iata_code": "PTK", + "local_code": "PTK", + "home_link": "https://www.oakgov.com/aviation/ocia", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oakland_County_International_Airport", + "keywords": "Pontiac Municipal Airport, Oakland-Pontiac Airport" + }, + { + "id": "20877", + "ident": "KPTN", + "type": "small_airport", + "name": "Harry P Williams Memorial Airport", + "latitude_deg": "29.709499359131", + "longitude_deg": "-91.338996887207", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Patterson", + "scheduled_service": "no", + "gps_code": "KPTN", + "iata_code": "PTN", + "local_code": "PTN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harry_P._Williams_Memorial_Airport" + }, + { + "id": "20878", + "ident": "KPTS", + "type": "small_airport", + "name": "Atkinson Municipal Airport", + "latitude_deg": "37.449501037597656", + "longitude_deg": "-94.7311019897461", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Pittsburg", + "scheduled_service": "no", + "gps_code": "KPTS", + "local_code": "PTS" + }, + { + "id": "20879", + "ident": "KPTT", + "type": "small_airport", + "name": "Pratt Regional Airport", + "latitude_deg": "37.70159912", + "longitude_deg": "-98.74690247", + "elevation_ft": "1953", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Pratt", + "scheduled_service": "no", + "gps_code": "KPTT", + "iata_code": "PTT", + "local_code": "PTT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pratt_Regional_Airport", + "keywords": "Pratt Industrial Airport, Pratt AAF" + }, + { + "id": "20880", + "ident": "KPTV", + "type": "small_airport", + "name": "Porterville Municipal Airport", + "latitude_deg": "36.029598236084", + "longitude_deg": "-119.06300354004", + "elevation_ft": "442", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Porterville", + "scheduled_service": "no", + "gps_code": "KPTV", + "iata_code": "PTV", + "local_code": "PTV", + "home_link": "http://www.ci.porterville.ca.us/depts/PortervilleAirport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Porterville_Municipal_Airport", + "keywords": "Porterville AAF" + }, + { + "id": "20881", + "ident": "KPTW", + "type": "small_airport", + "name": "Heritage Field", + "latitude_deg": "40.239601", + "longitude_deg": "-75.556702", + "elevation_ft": "309", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pottstown", + "scheduled_service": "no", + "gps_code": "KPTW", + "iata_code": "PTW", + "local_code": "PTW", + "home_link": "https://en.wikipedia.org/wiki/Heritage_Field_Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pottstown_Limerick_Airport", + "keywords": "Pottstown Limerick Airport" + }, + { + "id": "3794", + "ident": "KPUB", + "type": "medium_airport", + "name": "Pueblo Memorial Airport", + "latitude_deg": "38.289101", + "longitude_deg": "-104.497002", + "elevation_ft": "4726", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Pueblo", + "scheduled_service": "yes", + "gps_code": "KPUB", + "iata_code": "PUB", + "local_code": "PUB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pueblo_Memorial_Airport" + }, + { + "id": "20882", + "ident": "KPUC", + "type": "small_airport", + "name": "Carbon County Regional/Buck Davis Field", + "latitude_deg": "39.61389923", + "longitude_deg": "-110.7509995", + "elevation_ft": "5957", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Price", + "scheduled_service": "no", + "gps_code": "KPUC", + "iata_code": "PUC", + "local_code": "PUC" + }, + { + "id": "42970", + "ident": "KPUJ", + "type": "small_airport", + "name": "Silver Comet Field at Paulding Northwest Atlanta Airport", + "latitude_deg": "33.913306", + "longitude_deg": "-84.942083", + "elevation_ft": "1289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "KPUJ", + "local_code": "PUJ", + "home_link": "http://www.pauldingairport.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Silver_Comet_Field_at_Paulding_Northwest_Atlanta_Airport", + "keywords": "Paulding County Regional Airport, Silver Comet Field" + }, + { + "id": "20883", + "ident": "KPUW", + "type": "medium_airport", + "name": "Pullman Moscow Regional Airport", + "latitude_deg": "46.7439", + "longitude_deg": "-117.110001", + "elevation_ft": "2556", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Pullman/Moscow", + "scheduled_service": "yes", + "gps_code": "KPUW", + "iata_code": "PUW", + "local_code": "PUW", + "home_link": "http://www.pullman-wa.gov/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pullman-Moscow_Regional_Airport" + }, + { + "id": "20884", + "ident": "KPVB", + "type": "small_airport", + "name": "Platteville Municipal Airport", + "latitude_deg": "42.68939972", + "longitude_deg": "-90.44439697", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Platteville", + "scheduled_service": "no", + "gps_code": "KPVB", + "local_code": "PVB" + }, + { + "id": "20885", + "ident": "KPVC", + "type": "small_airport", + "name": "Provincetown Municipal Airport", + "latitude_deg": "42.0718994141", + "longitude_deg": "-70.2213973999", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Provincetown", + "scheduled_service": "no", + "gps_code": "KPVC", + "iata_code": "PVC", + "local_code": "PVC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Provincetown_Municipal_Airport" + }, + { + "id": "3795", + "ident": "KPVD", + "type": "large_airport", + "name": "Theodore Francis Green State Airport", + "latitude_deg": "41.725038", + "longitude_deg": "-71.425668", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Providence", + "scheduled_service": "yes", + "gps_code": "KPVD", + "iata_code": "PVD", + "local_code": "PVD", + "wikipedia_link": "https://en.wikipedia.org/wiki/T._F._Green_Airport" + }, + { + "id": "20886", + "ident": "KPVE", + "type": "small_airport", + "name": "Beech River Regional Airport", + "latitude_deg": "35.65639877319336", + "longitude_deg": "-88.19539642333984", + "elevation_ft": "488", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lexington-Parsons", + "scheduled_service": "no", + "gps_code": "KPVE", + "local_code": "PVE" + }, + { + "id": "20887", + "ident": "KPVF", + "type": "small_airport", + "name": "Placerville Airport", + "latitude_deg": "38.724201202393", + "longitude_deg": "-120.75299835205", + "elevation_ft": "2585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Placerville", + "scheduled_service": "no", + "gps_code": "KPVF", + "iata_code": "PVF", + "local_code": "PVF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Placerville_Airport" + }, + { + "id": "20888", + "ident": "KPVG", + "type": "small_airport", + "name": "Hampton Roads Executive Airport", + "latitude_deg": "36.780201", + "longitude_deg": "-76.448799", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Norfolk", + "scheduled_service": "no", + "gps_code": "KPVG", + "local_code": "PVG", + "home_link": "http://flypvg.com" + }, + { + "id": "20889", + "ident": "KPVJ", + "type": "small_airport", + "name": "Pauls Valley Municipal Airport", + "latitude_deg": "34.71110153", + "longitude_deg": "-97.22319794", + "elevation_ft": "971", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Pauls Valley", + "scheduled_service": "no", + "gps_code": "KPVJ", + "local_code": "PVJ", + "home_link": "http://paulsvalley.com/for-residents/community-spaces/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pauls_Valley_Municipal_Airport", + "keywords": "F51" + }, + { + "id": "20890", + "ident": "KPVU", + "type": "medium_airport", + "name": "Provo-Utah Lake International Airport", + "latitude_deg": "40.2192", + "longitude_deg": "-111.723", + "elevation_ft": "4497", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Provo", + "scheduled_service": "yes", + "gps_code": "KPVU", + "iata_code": "PVU", + "local_code": "PVU", + "home_link": "http://www.provo.org/city-services/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Provo_Municipal_Airport" + }, + { + "id": "20891", + "ident": "KPVW", + "type": "small_airport", + "name": "Hale County Airport", + "latitude_deg": "34.168098449707", + "longitude_deg": "-101.71700286865", + "elevation_ft": "3374", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Plainview", + "scheduled_service": "no", + "gps_code": "KPVW", + "iata_code": "PVW", + "local_code": "PVW" + }, + { + "id": "30233", + "ident": "KPVZ", + "type": "closed", + "name": "Casement Airport", + "latitude_deg": "41.73360061649999", + "longitude_deg": "-81.21920013430001", + "elevation_ft": "699", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Plainesville", + "scheduled_service": "no", + "gps_code": "KPVZ", + "iata_code": "PVZ", + "local_code": "PVZ" + }, + { + "id": "20892", + "ident": "KPWA", + "type": "small_airport", + "name": "Wiley Post Airport", + "latitude_deg": "35.53419876", + "longitude_deg": "-97.64710236", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "gps_code": "KPWA", + "iata_code": "PWA", + "local_code": "PWA", + "home_link": "http://www.wileypostairport.com/Home.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wiley_Post_Airport" + }, + { + "id": "20893", + "ident": "KPWC", + "type": "small_airport", + "name": "Pine River Regional Airport", + "latitude_deg": "46.72480010986328", + "longitude_deg": "-94.38169860839844", + "elevation_ft": "1295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Pine River", + "scheduled_service": "no", + "gps_code": "KPWC", + "local_code": "PWC" + }, + { + "id": "20894", + "ident": "KPWD", + "type": "small_airport", + "name": "Sher-Wood Airport", + "latitude_deg": "48.790298461914", + "longitude_deg": "-104.53399658203", + "elevation_ft": "2250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Plentywood", + "scheduled_service": "no", + "gps_code": "KPWD", + "iata_code": "PWD", + "local_code": "PWD", + "home_link": "http://www.co.sheridan.mt.us/index.php?airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sher-Wood_Airport" + }, + { + "id": "20895", + "ident": "KPWG", + "type": "small_airport", + "name": "McGregor Executive Airport", + "latitude_deg": "31.48489952", + "longitude_deg": "-97.3164978", + "elevation_ft": "592", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no", + "gps_code": "KPWG", + "local_code": "PWG", + "home_link": "http://www.mcgregor-texas.com/city/Airport%20Main.html", + "keywords": "F60" + }, + { + "id": "20896", + "ident": "KPWK", + "type": "medium_airport", + "name": "Chicago Executive Airport", + "latitude_deg": "42.114222", + "longitude_deg": "-87.901494", + "elevation_ft": "647", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago/Prospect Heights/Wheeling", + "scheduled_service": "no", + "gps_code": "KPWK", + "iata_code": "PWK", + "local_code": "PWK", + "home_link": "http://chiexec.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chicago_Executive_Airport" + }, + { + "id": "3796", + "ident": "KPWM", + "type": "large_airport", + "name": "Portland International Jetport", + "latitude_deg": "43.646198", + "longitude_deg": "-70.309303", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Portland", + "scheduled_service": "yes", + "gps_code": "KPWM", + "iata_code": "PWM", + "local_code": "PWM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Portland_International_Jetport" + }, + { + "id": "3797", + "ident": "KPWT", + "type": "medium_airport", + "name": "Bremerton National Airport", + "latitude_deg": "47.490200042725", + "longitude_deg": "-122.76499938965", + "elevation_ft": "444", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Bremerton", + "scheduled_service": "no", + "gps_code": "KPWT", + "iata_code": "PWT", + "local_code": "PWT", + "home_link": "https://en.wikipedia.org/wiki/Bremerton_National_Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bremerton_National_Airport" + }, + { + "id": "20897", + "ident": "KPXE", + "type": "small_airport", + "name": "Perry Houston County Airport", + "latitude_deg": "32.51060104370117", + "longitude_deg": "-83.76730346679688", + "elevation_ft": "418", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Perry", + "scheduled_service": "no", + "gps_code": "KPXE", + "local_code": "PXE" + }, + { + "id": "20898", + "ident": "KPY", + "type": "seaplane_base", + "name": "Port Bailey Seaplane Base", + "latitude_deg": "57.930099487300005", + "longitude_deg": "-153.041000366", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Port Bailey", + "scheduled_service": "no", + "gps_code": "KPY", + "iata_code": "KPY", + "local_code": "KPY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Bailey_Seaplane_Base" + }, + { + "id": "20899", + "ident": "KPYG", + "type": "small_airport", + "name": "Pageland Airport", + "latitude_deg": "34.74209976196289", + "longitude_deg": "-80.34519958496094", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Pageland", + "scheduled_service": "no", + "gps_code": "KPYG", + "local_code": "PYG" + }, + { + "id": "20900", + "ident": "KPYM", + "type": "small_airport", + "name": "Plymouth Municipal Airport", + "latitude_deg": "41.909", + "longitude_deg": "-70.728798", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "KPYM", + "iata_code": "PYM", + "local_code": "PYM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Plymouth_Municipal_Airport_(Massachusetts)" + }, + { + "id": "20901", + "ident": "KPYN", + "type": "small_airport", + "name": "Piedmont Municipal Airport", + "latitude_deg": "37.12670135498047", + "longitude_deg": "-90.71289825439453", + "elevation_ft": "467", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Piedmont", + "scheduled_service": "no", + "gps_code": "KPYN", + "local_code": "PYN" + }, + { + "id": "43022", + "ident": "KPYP", + "type": "small_airport", + "name": "Centre-Piedmont-Cherokee County Regional Airport", + "latitude_deg": "34.089977", + "longitude_deg": "-85.610069", + "elevation_ft": "596", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Centre", + "scheduled_service": "no", + "gps_code": "KPYP", + "local_code": "PYP", + "home_link": "http://www.airnav.com/airport/KPYP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Centre%E2%80%93Piedmont%E2%80%93Cherokee_County_Regional_Airport" + }, + { + "id": "20902", + "ident": "KPYX", + "type": "small_airport", + "name": "Perryton Ochiltree County Airport", + "latitude_deg": "36.412899017333984", + "longitude_deg": "-100.75199890136719", + "elevation_ft": "2918", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Perryton", + "scheduled_service": "no", + "gps_code": "KPYX", + "local_code": "PYX" + }, + { + "id": "20903", + "ident": "KPZQ", + "type": "small_airport", + "name": "Presque Isle County Airport", + "latitude_deg": "45.407100677490234", + "longitude_deg": "-83.81289672851562", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Rogers City", + "scheduled_service": "no", + "gps_code": "KPZQ", + "local_code": "PZQ" + }, + { + "id": "20904", + "ident": "KQA", + "type": "seaplane_base", + "name": "Akutan Seaplane Base", + "latitude_deg": "54.13377", + "longitude_deg": "-165.778896", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Akutan", + "scheduled_service": "no", + "local_code": "KQA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Akutan_Seaplane_Base" + }, + { + "id": "302385", + "ident": "KQL", + "type": "small_airport", + "name": "Kol Airport", + "latitude_deg": "-5.73116666667", + "longitude_deg": "144.846", + "elevation_ft": "5350", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-JI", + "municipality": "Kol", + "scheduled_service": "no", + "gps_code": "AYOL", + "iata_code": "KQL", + "local_code": "KOL" + }, + { + "id": "300037", + "ident": "KR-0001", + "type": "heliport", + "name": "Uisang Bong Heliport", + "latitude_deg": "35.67879", + "longitude_deg": "126.591226", + "elevation_ft": "1216", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-45", + "scheduled_service": "no", + "local_code": "RK4T" + }, + { + "id": "300041", + "ident": "KR-0002", + "type": "heliport", + "name": "Palgong San Heliport", + "latitude_deg": "36.024612", + "longitude_deg": "128.696181", + "elevation_ft": "3613", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Dongsan-ri", + "scheduled_service": "no", + "local_code": "RK7F", + "keywords": "RK7F, Dongsan, Palgong" + }, + { + "id": "300042", + "ident": "KR-0003", + "type": "heliport", + "name": "Irwol San Heliport", + "latitude_deg": "36.803357", + "longitude_deg": "129.101661", + "elevation_ft": "3921", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Irwolsan", + "scheduled_service": "no", + "local_code": "RK89" + }, + { + "id": "300043", + "ident": "KR-0004", + "type": "heliport", + "name": "Ganghwa Do Heliport", + "latitude_deg": "37.767488", + "longitude_deg": "126.437163", + "elevation_ft": "146", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "scheduled_service": "no", + "local_code": "RK90" + }, + { + "id": "300044", + "ident": "KR-0005", + "type": "heliport", + "name": "Mangilsan Heliport", + "latitude_deg": "36.937165", + "longitude_deg": "126.44451", + "elevation_ft": "667", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Mangilsan-ro", + "scheduled_service": "no", + "gps_code": "RKTM", + "local_code": "RK6E" + }, + { + "id": "300096", + "ident": "KR-0006", + "type": "heliport", + "name": "C 503 Heliport", + "latitude_deg": "36.4305555556", + "longitude_deg": "127.449722222", + "elevation_ft": "212", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-30", + "municipality": "Camp Ames", + "scheduled_service": "no", + "local_code": "RK6Q" + }, + { + "id": "300260", + "ident": "KR-0007", + "type": "closed", + "name": "Camp Market Heliport (H-103)", + "latitude_deg": "37.49361", + "longitude_deg": "126.71048", + "elevation_ft": "90", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Camp Market", + "scheduled_service": "no", + "local_code": "RK10" + }, + { + "id": "300287", + "ident": "KR-0008", + "type": "closed", + "name": "C272 Heliport", + "latitude_deg": "37.3575", + "longitude_deg": "127.255556", + "elevation_ft": "265", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RK6T", + "local_code": "RK6T" + }, + { + "id": "300378", + "ident": "KR-0009", + "type": "heliport", + "name": "C 137 Heliport", + "latitude_deg": "37.840542", + "longitude_deg": "126.939267", + "elevation_ft": "1185", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RK1O", + "local_code": "RK1O", + "keywords": "TAC Site 36" + }, + { + "id": "300424", + "ident": "KR-0010", + "type": "closed", + "name": "C 316 Heliport", + "latitude_deg": "38.168889", + "longitude_deg": "127.432222", + "elevation_ft": "1150", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "scheduled_service": "no", + "gps_code": "RK3D", + "local_code": "RK3D" + }, + { + "id": "300607", + "ident": "KR-0011", + "type": "small_airport", + "name": "Jukbyeon Emergency Airstrip", + "latitude_deg": "37.059527", + "longitude_deg": "129.409289", + "elevation_ft": "165", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Jukbyeon-myeon", + "scheduled_service": "no" + }, + { + "id": "321237", + "ident": "KR-0012", + "type": "heliport", + "name": "Panmunjom Helipad (H-128)", + "latitude_deg": "37.954616", + "longitude_deg": "126.677261", + "elevation_ft": "99", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Panmunjom", + "scheduled_service": "no", + "gps_code": "RK6K", + "local_code": "RK6K" + }, + { + "id": "322622", + "ident": "KR-0013", + "type": "heliport", + "name": "Daejon Government Heliport", + "latitude_deg": "36.362654", + "longitude_deg": "127.382838", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Daejon", + "scheduled_service": "no", + "keywords": "Daejon Government Heliport" + }, + { + "id": "322623", + "ident": "KR-0014", + "type": "heliport", + "name": "Chulmae Heliport", + "latitude_deg": "36.302602", + "longitude_deg": "126.526338", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Chulmae", + "scheduled_service": "no" + }, + { + "id": "322624", + "ident": "KR-0015", + "type": "heliport", + "name": "Nonsan Training Group Heliport", + "latitude_deg": "36.111924", + "longitude_deg": "127.106763", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Jindeung-gil", + "scheduled_service": "no", + "keywords": "KR-0015, Jindeung, Nonsan" + }, + { + "id": "322691", + "ident": "KR-0016", + "type": "heliport", + "name": "Korean International Circuit Heliport", + "latitude_deg": "34.730671", + "longitude_deg": "126.424817", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Mokpo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Korea_International_Circuit" + }, + { + "id": "322692", + "ident": "KR-0017", + "type": "small_airport", + "name": "Yeongam Airport", + "latitude_deg": "34.695967", + "longitude_deg": "126.519542", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Yeongam", + "scheduled_service": "no", + "home_link": "http://shinhanair.com/ [Korean]", + "keywords": "Yeongam" + }, + { + "id": "322707", + "ident": "KR-0018", + "type": "heliport", + "name": "Chuja Port Heliport", + "latitude_deg": "33.941188", + "longitude_deg": "126.324899", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "municipality": "Chuja, Hach’uja-do (Chujado Islands)", + "scheduled_service": "no", + "iata_code": "JCJ" + }, + { + "id": "322708", + "ident": "KR-0019", + "type": "heliport", + "name": "Taesŏ-ri Heliport", + "latitude_deg": "33.965208", + "longitude_deg": "126.291626", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "municipality": "Taesŏ-ri, Sangch’uja-do (Chujado Islands)", + "scheduled_service": "no" + }, + { + "id": "322724", + "ident": "KR-0020", + "type": "heliport", + "name": "Seogwipo Heliport", + "latitude_deg": "33.238636", + "longitude_deg": "126.567154", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "municipality": "Seogwipo", + "scheduled_service": "no" + }, + { + "id": "322725", + "ident": "KR-0021", + "type": "heliport", + "name": "Jeju Island Naval Base Heliport", + "latitude_deg": "33.227151", + "longitude_deg": "126.480542", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "municipality": "Gangjeong", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jeju_Naval_Base", + "keywords": "Jeju Island Naval Base, Gangjeong" + }, + { + "id": "322726", + "ident": "KR-0022", + "type": "heliport", + "name": "Busan (Jakjeon) Naval Base Heliport", + "latitude_deg": "35.096114", + "longitude_deg": "129.102606", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Yongho-dong, Nam-Gu, Busan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Busan_Naval_Base" + }, + { + "id": "322742", + "ident": "KR-0023", + "type": "heliport", + "name": "Bukpo-ri Heliport", + "latitude_deg": "37.955365", + "longitude_deg": "124.669247", + "elevation_ft": "561", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Bukpo-ri, Baengnyeongdo", + "scheduled_service": "no", + "gps_code": "RKSP", + "keywords": "RKSP, Bukpo, Baengnyeong,Paengnyeong; KR-0023" + }, + { + "id": "322757", + "ident": "KR-0024", + "type": "heliport", + "name": "Okchuk-tong Heliport", + "latitude_deg": "37.843934", + "longitude_deg": "124.705631", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Okchuk-tong, Daecheongdo", + "scheduled_service": "no" + }, + { + "id": "322758", + "ident": "KR-0025", + "type": "closed", + "name": "Paengnyongdo Beach Airfield (Sagot Beach Airfield) (K-53)", + "latitude_deg": "37.947311", + "longitude_deg": "124.715424", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Sagot-ro, Paengnyongdo", + "scheduled_service": "no", + "gps_code": "RKSE" + }, + { + "id": "322759", + "ident": "KR-0026", + "type": "heliport", + "name": "N-209 Helipad", + "latitude_deg": "37.775082", + "longitude_deg": "124.756558", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Socheongdo", + "scheduled_service": "no" + }, + { + "id": "322760", + "ident": "KR-0027", + "type": "heliport", + "name": "Yeonpyeong-Myeon Heliport", + "latitude_deg": "37.664068", + "longitude_deg": "125.69797", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Yeonpyeong-Myeon, Yeonpyeongdo", + "scheduled_service": "no" + }, + { + "id": "322761", + "ident": "KR-0028", + "type": "heliport", + "name": "Seohanri Helipad", + "latitude_deg": "37.772865", + "longitude_deg": "126.206976", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Seohanri, Gyodongdo", + "scheduled_service": "no" + }, + { + "id": "322763", + "ident": "KR-0029", + "type": "heliport", + "name": "Seogeom-ri Helipad", + "latitude_deg": "37.720786", + "longitude_deg": "126.218855", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Seogeom-ri, Seogeomdo", + "scheduled_service": "no" + }, + { + "id": "322764", + "ident": "KR-0030", + "type": "heliport", + "name": "Mibeop Helipad", + "latitude_deg": "37.725666", + "longitude_deg": "126.269817", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Mibeop, Mibeopdo,", + "scheduled_service": "no" + }, + { + "id": "322788", + "ident": "KR-0031", + "type": "heliport", + "name": "Palhakgol Helipad", + "latitude_deg": "37.735647", + "longitude_deg": "126.832934", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Palhakgol", + "scheduled_service": "no", + "keywords": "Palhakgol, KR-0031" + }, + { + "id": "322795", + "ident": "KR-0032", + "type": "heliport", + "name": "Irwolbong Helipad", + "latitude_deg": "37.910285", + "longitude_deg": "126.813988", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Irwolbong", + "scheduled_service": "no", + "keywords": "Irwolbong" + }, + { + "id": "322814", + "ident": "KR-0033", + "type": "heliport", + "name": "377th Medical Company (AA) Dustoff - Flight Line", + "latitude_deg": "37.766883", + "longitude_deg": "127.03826", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Camp Mosier", + "scheduled_service": "no", + "home_link": "http://www.isurffish.com/Military/Uijongbu%20Korea/4/med/KOREA63-178_medical_unit_near_uijonbu.htm" + }, + { + "id": "322832", + "ident": "KR-0034", + "type": "heliport", + "name": "ROK Army 102nd Armor Brigade Heliport", + "latitude_deg": "38.145239", + "longitude_deg": "128.602998", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Jeongam-ri, Ganghyeon-myeon", + "scheduled_service": "no", + "local_code": "RK84", + "keywords": "C 423 Heliport" + }, + { + "id": "322833", + "ident": "KR-0035", + "type": "heliport", + "name": "Barami Heliport", + "latitude_deg": "36.538946", + "longitude_deg": "128.72847", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Barami, Andong", + "scheduled_service": "no" + }, + { + "id": "322834", + "ident": "KR-0036", + "type": "closed", + "name": "Yecheon Airport", + "latitude_deg": "36.628409", + "longitude_deg": "128.372755", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "scheduled_service": "no" + }, + { + "id": "322835", + "ident": "KR-0037", + "type": "heliport", + "name": "C-326 Heliport", + "latitude_deg": "38.132472", + "longitude_deg": "127.531786", + "elevation_ft": "1500", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "scheduled_service": "no", + "local_code": "RK78" + }, + { + "id": "322842", + "ident": "KR-0038", + "type": "heliport", + "name": "Majang-ro Heliport", + "latitude_deg": "37.496329", + "longitude_deg": "126.698308", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Incheon", + "scheduled_service": "no" + }, + { + "id": "322862", + "ident": "KR-0039", + "type": "heliport", + "name": "C-286A Heliport", + "latitude_deg": "37.457278", + "longitude_deg": "127.191347", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Eunhaeng-dong", + "scheduled_service": "no" + }, + { + "id": "322869", + "ident": "KR-0040", + "type": "heliport", + "name": "ROK Army Capital Defense Command Heliport (C-277)", + "latitude_deg": "37.462462", + "longitude_deg": "126.984004", + "elevation_ft": "379", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Namhyeon-dong", + "scheduled_service": "no", + "keywords": "C-277" + }, + { + "id": "323124", + "ident": "KR-0041", + "type": "small_airport", + "name": "Alddreu Airfield (K-40) (Cheju-do No. 2)", + "latitude_deg": "33.203935", + "longitude_deg": "126.271319", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alddreu_Airfield", + "keywords": "Moseulpo" + }, + { + "id": "323125", + "ident": "KR-0042", + "type": "heliport", + "name": "Gapado Heliport", + "latitude_deg": "33.168004", + "longitude_deg": "126.278714", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "municipality": "Gapado", + "scheduled_service": "no" + }, + { + "id": "323152", + "ident": "KR-0043", + "type": "heliport", + "name": "Majang-ro Heliport", + "latitude_deg": "37.496331", + "longitude_deg": "126.698311", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Incheon", + "scheduled_service": "no" + }, + { + "id": "323153", + "ident": "KR-0044", + "type": "heliport", + "name": "Sangok-dong Heliport", + "latitude_deg": "37.501438", + "longitude_deg": "126.697648", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Incheon", + "scheduled_service": "no" + }, + { + "id": "323232", + "ident": "KR-0045", + "type": "heliport", + "name": "Janggo-do Heliport", + "latitude_deg": "36.388491", + "longitude_deg": "126.335561", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Janggo-do", + "scheduled_service": "no" + }, + { + "id": "323234", + "ident": "KR-0046", + "type": "heliport", + "name": "Keo Jin Helipad", + "latitude_deg": "38.474202", + "longitude_deg": "128.44191", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Keo Jin", + "scheduled_service": "no" + }, + { + "id": "323256", + "ident": "KR-0047", + "type": "heliport", + "name": "Okchuk-tong Heliport", + "latitude_deg": "37.843934", + "longitude_deg": "124.705631", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Okchuk-tong", + "scheduled_service": "no", + "keywords": "Okchuk-tong, Daecheong, KR-0047" + }, + { + "id": "323264", + "ident": "KR-0048", + "type": "heliport", + "name": "Mahyeon-ri Helipad", + "latitude_deg": "38.238189", + "longitude_deg": "127.540616", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mahyeon-ri", + "scheduled_service": "no" + }, + { + "id": "323280", + "ident": "KR-0049", + "type": "closed", + "name": "G-808 Airstrip", + "latitude_deg": "35.971403", + "longitude_deg": "128.956715", + "elevation_ft": "253", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Yeongcheon", + "scheduled_service": "no", + "local_code": "RK59" + }, + { + "id": "323301", + "ident": "KR-0050", + "type": "closed", + "name": "Camp Gary Owen Heliport (H-172)", + "latitude_deg": "37.866473", + "longitude_deg": "126.812332", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "local_code": "RK6L", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_Garry_Owen" + }, + { + "id": "323302", + "ident": "KR-0051", + "type": "heliport", + "name": "Brooklyn Hill Heliport (H-810)", + "latitude_deg": "35.422562", + "longitude_deg": "128.991986", + "elevation_ft": "2200", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "scheduled_service": "no", + "local_code": "RK4X" + }, + { + "id": "323303", + "ident": "KR-0052", + "type": "heliport", + "name": "C-104 Heliport", + "latitude_deg": "37.4794", + "longitude_deg": "126.736146", + "elevation_ft": "95", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Ilsin-dong (Incheon)", + "scheduled_service": "no", + "local_code": "RKB8" + }, + { + "id": "323311", + "ident": "KR-0053", + "type": "heliport", + "name": "C 149 Heliport", + "latitude_deg": "37.396095", + "longitude_deg": "126.898506", + "elevation_ft": "172", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Anyang", + "scheduled_service": "no", + "local_code": "RK1S" + }, + { + "id": "323328", + "ident": "KR-0054", + "type": "heliport", + "name": "C-154 Heliport", + "latitude_deg": "37.780978", + "longitude_deg": "126.75402", + "elevation_ft": "56", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "local_code": "RKC2" + }, + { + "id": "323329", + "ident": "KR-0055", + "type": "heliport", + "name": "C-155 Helipad", + "latitude_deg": "37.801886", + "longitude_deg": "126.759634", + "elevation_ft": "42", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Paju", + "scheduled_service": "no", + "local_code": "RK7M" + }, + { + "id": "323330", + "ident": "KR-0056", + "type": "heliport", + "name": "Warrior Base Heliport", + "latitude_deg": "37.917693", + "longitude_deg": "126.740094", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Tongilchon", + "scheduled_service": "no" + }, + { + "id": "323331", + "ident": "KR-0057", + "type": "closed", + "name": "Camp Pelham Heliport (C-165)", + "latitude_deg": "37.879412", + "longitude_deg": "126.795731", + "elevation_ft": "141", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Imjinnaru", + "scheduled_service": "no", + "local_code": "RK7P", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paju#Military_bases" + }, + { + "id": "323334", + "ident": "KR-0058", + "type": "heliport", + "name": "C-185 Heliport", + "latitude_deg": "37.648361", + "longitude_deg": "126.227269", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Jumundo", + "scheduled_service": "no", + "local_code": "RK2E" + }, + { + "id": "323338", + "ident": "KR-0059", + "type": "heliport", + "name": "C-189 Heliport", + "latitude_deg": "37.947362", + "longitude_deg": "126.953346", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Gamaksan", + "scheduled_service": "no", + "local_code": "RK2H" + }, + { + "id": "323340", + "ident": "KR-0060", + "type": "heliport", + "name": "C 233 Heliport", + "latitude_deg": "38.2426766", + "longitude_deg": "127.101333", + "elevation_ft": "1400", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "local_code": "RKB3" + }, + { + "id": "323355", + "ident": "KR-0061", + "type": "heliport", + "name": "C-309 Heliport", + "latitude_deg": "37.995941", + "longitude_deg": "127.504143", + "elevation_ft": "4422", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "local_code": "RK3C" + }, + { + "id": "323356", + "ident": "KR-0062", + "type": "heliport", + "name": "C-324 Heliport", + "latitude_deg": "37.84125", + "longitude_deg": "127.792848", + "elevation_ft": "950", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Neoburae", + "scheduled_service": "no", + "local_code": "RK3G" + }, + { + "id": "323357", + "ident": "KR-0063", + "type": "heliport", + "name": "C-430 Heliport", + "latitude_deg": "38.082725", + "longitude_deg": "127.954352", + "elevation_ft": "795", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "scheduled_service": "no", + "local_code": "RK81" + }, + { + "id": "323367", + "ident": "KR-0064", + "type": "closed", + "name": "C-451 Heliport", + "latitude_deg": "37.384438", + "longitude_deg": "127.94556", + "elevation_ft": "320", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Bugwon-ro", + "scheduled_service": "no", + "local_code": "RK3Y" + }, + { + "id": "323368", + "ident": "KR-0065", + "type": "heliport", + "name": "C-502 Heliport", + "latitude_deg": "36.563052", + "longitude_deg": "127.281431", + "elevation_ft": "165", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Dangsan-ro", + "scheduled_service": "no", + "local_code": "RK3Z" + }, + { + "id": "323369", + "ident": "KR-0066", + "type": "heliport", + "name": "C-513 Heliport", + "latitude_deg": "37.279546", + "longitude_deg": "127.579779", + "elevation_ft": "758", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "local_code": "RK4E" + }, + { + "id": "323370", + "ident": "KR-0067", + "type": "heliport", + "name": "C-520 Heliport", + "latitude_deg": "36.135546", + "longitude_deg": "126.558276", + "elevation_ft": "120", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Gaetbeolcheheom-ro", + "scheduled_service": "no", + "local_code": "RK4L" + }, + { + "id": "323372", + "ident": "KR-0068", + "type": "heliport", + "name": "C-620 Heliport", + "latitude_deg": "36.312454", + "longitude_deg": "127.222321", + "elevation_ft": "467", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Gyeryong", + "scheduled_service": "no", + "local_code": "RK69" + }, + { + "id": "323373", + "ident": "KR-0069", + "type": "heliport", + "name": "C-708 Heliport", + "latitude_deg": "35.901392", + "longitude_deg": "126.680461", + "elevation_ft": "270", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-45", + "municipality": "Sinjang", + "scheduled_service": "no", + "local_code": "RK5F" + }, + { + "id": "323140", + "ident": "KR-0070", + "type": "heliport", + "name": "C 722 Heliport", + "latitude_deg": "35.123796", + "longitude_deg": "127.009999", + "elevation_ft": "3794", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "scheduled_service": "no", + "local_code": "RK5O" + }, + { + "id": "323460", + "ident": "KR-0071", + "type": "heliport", + "name": "Dartboard Heliport (H-811)", + "latitude_deg": "35.740092", + "longitude_deg": "128.689052", + "elevation_ft": "1630", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "scheduled_service": "no", + "local_code": "RK4Y" + }, + { + "id": "323496", + "ident": "KR-0072", + "type": "closed", + "name": "Camp La Guardia Airfield", + "latitude_deg": "37.745175", + "longitude_deg": "127.043425", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Uijonbu", + "scheduled_service": "no" + }, + { + "id": "323497", + "ident": "KR-0073", + "type": "heliport", + "name": "H-253 Heliport", + "latitude_deg": "37.447415", + "longitude_deg": "126.991283", + "elevation_ft": "203", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Gwacheon-dong", + "scheduled_service": "no", + "local_code": "RK93" + }, + { + "id": "323499", + "ident": "KR-0074", + "type": "heliport", + "name": "H-610 Heliport", + "latitude_deg": "37.01656", + "longitude_deg": "127.523549", + "elevation_ft": "400", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Geumil-ro", + "scheduled_service": "no", + "local_code": "RK1A" + }, + { + "id": "323506", + "ident": "KR-0075", + "type": "heliport", + "name": "Irwolbong Helipad", + "latitude_deg": "37.910287", + "longitude_deg": "126.813987", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Irwolbong", + "scheduled_service": "no" + }, + { + "id": "323514", + "ident": "KR-0076", + "type": "heliport", + "name": "Munhak Heliport (C-107)", + "latitude_deg": "37.430769", + "longitude_deg": "126.675676", + "elevation_ft": "599", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Munhak", + "scheduled_service": "no", + "local_code": "RK71", + "keywords": "RK71, Munhak, C 107, C-107" + }, + { + "id": "323515", + "ident": "KR-0077", + "type": "heliport", + "name": "N-103 Heliport", + "latitude_deg": "36.013126", + "longitude_deg": "129.422592", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Pohang", + "scheduled_service": "no", + "local_code": "RK9M", + "keywords": "RK9M, N 103, N-103" + }, + { + "id": "323516", + "ident": "KR-0078", + "type": "heliport", + "name": "N-107 Helipad", + "latitude_deg": "36.043972", + "longitude_deg": "129.567363", + "elevation_ft": "500", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Pohang", + "scheduled_service": "no", + "local_code": "RK9O", + "keywords": "RK9O, N-107, N 107, Ilchul-ro" + }, + { + "id": "323531", + "ident": "KR-0079", + "type": "heliport", + "name": "N-108 Helipad", + "latitude_deg": "35.703167", + "longitude_deg": "129.472313", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Naa", + "scheduled_service": "no", + "local_code": "RK8C", + "keywords": "Naa, N 108, N-108, RK8C" + }, + { + "id": "323535", + "ident": "KR-0080", + "type": "heliport", + "name": "N-202 Heliport", + "latitude_deg": "37.460086", + "longitude_deg": "126.595894", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Incheon Port", + "scheduled_service": "no", + "local_code": "RKD2" + }, + { + "id": "323536", + "ident": "KR-0081", + "type": "heliport", + "name": "Incheon Pier 7 Helipad", + "latitude_deg": "37.460084", + "longitude_deg": "126.595896", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Incheon Port", + "scheduled_service": "no", + "keywords": "Incheon Pier 7" + }, + { + "id": "323537", + "ident": "KR-0082", + "type": "heliport", + "name": "Incheon Pier 7 Helipad", + "latitude_deg": "37.464374", + "longitude_deg": "126.594959", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Incheon Port", + "scheduled_service": "no", + "keywords": "Incheon Pier 7" + }, + { + "id": "323538", + "ident": "KR-0083", + "type": "heliport", + "name": "Incheon Maritime Police Helipad", + "latitude_deg": "37.462443", + "longitude_deg": "126.595869", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Incheon Port", + "scheduled_service": "no", + "keywords": "Incheon Maritime Police" + }, + { + "id": "323540", + "ident": "KR-0084", + "type": "heliport", + "name": "N-213 Heliport", + "latitude_deg": "37.764736", + "longitude_deg": "126.539843", + "elevation_ft": "700", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Mansusan-ro", + "scheduled_service": "no", + "local_code": "RK9Y", + "keywords": "RK9Y, N 213, N-213, Mansusan" + }, + { + "id": "323541", + "ident": "KR-0085", + "type": "heliport", + "name": "N-223 Heliport", + "latitude_deg": "37.610866", + "longitude_deg": "126.416875", + "elevation_ft": "300", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Haeannam-ro", + "scheduled_service": "no", + "local_code": "RKA3", + "keywords": "RKA3, N 223, N-223, Haeannam" + }, + { + "id": "323542", + "ident": "KR-0086", + "type": "heliport", + "name": "N-224 Heliport", + "latitude_deg": "37.68769", + "longitude_deg": "126.587002", + "elevation_ft": "40", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Masong-ri", + "scheduled_service": "no", + "local_code": "RKA4", + "keywords": "RKA4, N 224, N-224, Masong" + }, + { + "id": "323543", + "ident": "KR-0087", + "type": "heliport", + "name": "N-306 Heliport", + "latitude_deg": "35.343414", + "longitude_deg": "126.029666", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Anma-gil", + "scheduled_service": "no", + "local_code": "RK8U", + "keywords": "RK8U, N 306, N-306, Anma" + }, + { + "id": "323544", + "ident": "KR-0088", + "type": "heliport", + "name": "N-311 Heliport", + "latitude_deg": "34.663415", + "longitude_deg": "126.654565", + "elevation_ft": "100", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Ganjeol-ri", + "scheduled_service": "no", + "local_code": "RK9U", + "keywords": "RK9U, N 311, N-311, Ganjeol" + }, + { + "id": "323545", + "ident": "KR-0089", + "type": "heliport", + "name": "N-312 Heliport", + "latitude_deg": "34.610045", + "longitude_deg": "126.024293", + "elevation_ft": "250", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Dae-ri", + "scheduled_service": "no", + "local_code": "RK9T", + "keywords": "RK9T, N 312, N-312, Hauido, Dae-ri" + }, + { + "id": "323547", + "ident": "KR-0090", + "type": "heliport", + "name": "N-313 Helipad", + "latitude_deg": "34.304782", + "longitude_deg": "126.765586", + "elevation_ft": "150", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Gunnae-gil", + "scheduled_service": "no", + "local_code": "RK8Z", + "keywords": "RK8Z, N 313, N-313, Wando, Gunnae" + }, + { + "id": "323548", + "ident": "KR-0091", + "type": "heliport", + "name": "N-314 Heliport", + "latitude_deg": "34.838626", + "longitude_deg": "126.082562", + "elevation_ft": "170", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Amtaedo", + "scheduled_service": "no", + "local_code": "RK9A", + "keywords": "RK9A, N 314, N-314. Amtaedo" + }, + { + "id": "323549", + "ident": "KR-0092", + "type": "heliport", + "name": "N-317 Heliport", + "latitude_deg": "33.392276", + "longitude_deg": "126.495388", + "elevation_ft": "3000", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "municipality": "Hallasan", + "scheduled_service": "no", + "local_code": "RK9D", + "keywords": "RK9D, N 317, N-317, Hallasan" + }, + { + "id": "323576", + "ident": "KR-0093", + "type": "heliport", + "name": "C-256 Heliport", + "latitude_deg": "37.736046", + "longitude_deg": "127.029588", + "elevation_ft": "240", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Hoguk-ro (Uijonbu)", + "scheduled_service": "no", + "local_code": "RK2T", + "keywords": "C-256, C 256, Hoguk, RK2T" + }, + { + "id": "351228", + "ident": "KR-0094", + "type": "heliport", + "name": "LG Twin Towers East Heliport", + "latitude_deg": "37.52813", + "longitude_deg": "126.92975", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no" + }, + { + "id": "351229", + "ident": "KR-0095", + "type": "heliport", + "name": "Parc 1 Tower A Heliport", + "latitude_deg": "37.52666", + "longitude_deg": "126.92728", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no" + }, + { + "id": "323579", + "ident": "KR-0096", + "type": "heliport", + "name": "C-255 Heliport", + "latitude_deg": "37.894467", + "longitude_deg": "127.155005", + "elevation_ft": "480", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Wangbangsangogae", + "scheduled_service": "no", + "local_code": "RK2S", + "keywords": "RK2S, Wangbangsangogae, C 255, C-255" + }, + { + "id": "324067", + "ident": "KR-0097", + "type": "heliport", + "name": "Soya-ri Heliport (소야리 헬기장)", + "latitude_deg": "37.212622", + "longitude_deg": "126.181589", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Soya-ri", + "scheduled_service": "no", + "keywords": "Soya-ri, Soyado, Ongjin-gun" + }, + { + "id": "324068", + "ident": "KR-0098", + "type": "heliport", + "name": "Jawol-myeon Heliport (자월면 헬리콥터)", + "latitude_deg": "37.249679", + "longitude_deg": "126.310622", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Jawol-myeon", + "scheduled_service": "no", + "keywords": "Jawol-myeon, Jawoldo" + }, + { + "id": "324069", + "ident": "KR-0099", + "type": "heliport", + "name": "Byeollangeum Helipad", + "latitude_deg": "37.263633", + "longitude_deg": "126.292961", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Byeollangeum", + "scheduled_service": "no", + "keywords": "Byeollangeum, Jawol-do" + }, + { + "id": "324070", + "ident": "KR-0100", + "type": "heliport", + "name": "Jawolseo-ro Helipad", + "latitude_deg": "37.269299", + "longitude_deg": "126.28616", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Jawolseo-ro", + "scheduled_service": "no", + "keywords": "Jawolsea-ro, Jawol-do" + }, + { + "id": "324071", + "ident": "KR-0101", + "type": "heliport", + "name": "Naep’yŏng-ni Helipad", + "latitude_deg": "37.250692", + "longitude_deg": "126.447441", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Naep’yŏng-ni", + "scheduled_service": "no", + "keywords": "Naep’yŏng-ni, Yeongheungdo, 내평리 헬리 패드" + }, + { + "id": "324075", + "ident": "KR-0102", + "type": "heliport", + "name": "Hyundai-Kia Automotive Group Namyang R&D Center Helipads", + "latitude_deg": "37.152711", + "longitude_deg": "126.815416", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Namyang", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_Kia_design_and_manufacturing_facilities#Namyang_Design_Center", + "keywords": "Namyang, Hyundai, Kia" + }, + { + "id": "324080", + "ident": "KR-0103", + "type": "heliport", + "name": "Salgoji Heliport", + "latitude_deg": "37.15602", + "longitude_deg": "126.651909", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Salgoji", + "scheduled_service": "no", + "keywords": "Salgoji" + }, + { + "id": "324082", + "ident": "KR-0104", + "type": "heliport", + "name": "Pakkakori-sŏm Helipad", + "latitude_deg": "37.184868", + "longitude_deg": "126.654219", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Pakkakori-sŏm", + "scheduled_service": "no", + "keywords": "Pakkakori-sŏm" + }, + { + "id": "324083", + "ident": "KR-0105", + "type": "heliport", + "name": "Joongang Heights Helipad", + "latitude_deg": "37.65917", + "longitude_deg": "126.767405", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Goyang", + "scheduled_service": "no", + "keywords": "Joongang Heights, Goyang" + }, + { + "id": "324084", + "ident": "KR-0106", + "type": "heliport", + "name": "Joongang Heights Ville Helipad", + "latitude_deg": "37.658781", + "longitude_deg": "126.767984", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Goyang", + "scheduled_service": "no", + "keywords": "Joongang Heights Ville, Goyang" + }, + { + "id": "324085", + "ident": "KR-0107", + "type": "heliport", + "name": "Rodeo Suite Helipad", + "latitude_deg": "37.660206", + "longitude_deg": "126.770685", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Goyang", + "scheduled_service": "no", + "keywords": "Rodeo Suite, Goyang" + }, + { + "id": "324086", + "ident": "KR-0108", + "type": "heliport", + "name": "Samsung Laqvill Helipad", + "latitude_deg": "37.660989", + "longitude_deg": "126.765833", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Goyang", + "scheduled_service": "no", + "keywords": "Samsung Laqvill, Goyang" + }, + { + "id": "324093", + "ident": "KR-0109", + "type": "heliport", + "name": "Kolon Lake Polls-II North Helipad", + "latitude_deg": "37.66299", + "longitude_deg": "126.763639", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Goyang", + "scheduled_service": "no", + "keywords": "Kolon Lake Polls, Goyang" + }, + { + "id": "324094", + "ident": "KR-0110", + "type": "heliport", + "name": "Kolon Lake Polls-II South Helipad", + "latitude_deg": "37.662466", + "longitude_deg": "126.764152", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Goyang", + "scheduled_service": "no", + "keywords": "Kolon Lake Polls, Goyang" + }, + { + "id": "324095", + "ident": "KR-0111", + "type": "heliport", + "name": "Kolon Lake Polls-III West Helipad", + "latitude_deg": "37.663483", + "longitude_deg": "126.764358", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Goyang", + "scheduled_service": "no", + "keywords": "Kolon Lake Polls, Goyang" + }, + { + "id": "324097", + "ident": "KR-0112", + "type": "heliport", + "name": "Kolon Lake Polls-III East Helipad", + "latitude_deg": "37.663714", + "longitude_deg": "126.764757", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Goyang", + "scheduled_service": "no", + "keywords": "Kolon Lake Polls, Goyang" + }, + { + "id": "324098", + "ident": "KR-0113", + "type": "heliport", + "name": "Yang Woo West Helipad", + "latitude_deg": "37.664801", + "longitude_deg": "126.766546", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Goyang", + "scheduled_service": "no", + "keywords": "Yang Woo, Goyang" + }, + { + "id": "324099", + "ident": "KR-0114", + "type": "heliport", + "name": "Yang Woo East Helipad", + "latitude_deg": "37.665011", + "longitude_deg": "126.76686", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Goyang", + "scheduled_service": "no", + "keywords": "Yang Woo, Goyang" + }, + { + "id": "324100", + "ident": "KR-0115", + "type": "heliport", + "name": "Hyundai i’Space Helipad", + "latitude_deg": "37.663365", + "longitude_deg": "126.770849", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Goyang", + "scheduled_service": "no", + "keywords": "Hyundai i’Space, Goyang" + }, + { + "id": "324101", + "ident": "KR-0116", + "type": "heliport", + "name": "Seoul National University School of Medicine Hospital Helipad", + "latitude_deg": "37.580048", + "longitude_deg": "126.999086", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Seoul National University School of Medicine Hospital, Seoul" + }, + { + "id": "324102", + "ident": "KR-0117", + "type": "heliport", + "name": "Kyunghee Medical Medical Hospital Heliport", + "latitude_deg": "37.5936", + "longitude_deg": "127.051496", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kyung_Hee_University#Seoul_campus", + "keywords": "Kyunghee Medical Medical Hospital, Seoul" + }, + { + "id": "324104", + "ident": "KR-0118", + "type": "heliport", + "name": "Samsung Medical Center Helipad", + "latitude_deg": "37.488244", + "longitude_deg": "127.085273", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Irwon-dong (Seoul)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Samsung_Medical_Center", + "keywords": "Samsung Medical Center, Irwon-dong" + }, + { + "id": "324111", + "ident": "KR-0119", + "type": "heliport", + "name": "Rosedale Building North Helipad", + "latitude_deg": "37.487629", + "longitude_deg": "127.10338", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Suseo-dong (Seoul)", + "scheduled_service": "no", + "keywords": "Rosedale Building, Suseo-dong" + }, + { + "id": "324112", + "ident": "KR-0120", + "type": "heliport", + "name": "Rosedale Building South Helipad", + "latitude_deg": "37.486714", + "longitude_deg": "127.103311", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Suseo-dong (Seoul)", + "scheduled_service": "no", + "keywords": "Rosedale Building, Seoul" + }, + { + "id": "324113", + "ident": "KR-0121", + "type": "heliport", + "name": "National Police Hospital Heliport", + "latitude_deg": "37.496508", + "longitude_deg": "127.123605", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "National Police Hospital, Seoul" + }, + { + "id": "324114", + "ident": "KR-0122", + "type": "heliport", + "name": "Poonglim Want North Helipad", + "latitude_deg": "37.389569", + "longitude_deg": "127.122549", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Poonglim Want, Seoul" + }, + { + "id": "324115", + "ident": "KR-0123", + "type": "heliport", + "name": "Poonglim Want West Helipad", + "latitude_deg": "37.38907", + "longitude_deg": "127.121844", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Poonglim Want West, Seoul" + }, + { + "id": "324116", + "ident": "KR-0124", + "type": "heliport", + "name": "Poonglim Want South Helipad", + "latitude_deg": "37.388589", + "longitude_deg": "127.12239", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Poonglim Want, Seoul" + }, + { + "id": "324134", + "ident": "KR-0125", + "type": "heliport", + "name": "Seoul National University Bundang Hospital Helipad", + "latitude_deg": "37.352297", + "longitude_deg": "127.123343", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Bundang-gu (Seongnam)", + "scheduled_service": "no", + "keywords": "Seoul National University Bundang Hospital, Bundang-gu, Seongnam" + }, + { + "id": "324144", + "ident": "KR-0126", + "type": "heliport", + "name": "Giljeon-ri Helipad", + "latitude_deg": "37.667765", + "longitude_deg": "126.452001", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Galjeon-ri", + "scheduled_service": "no", + "keywords": "Galjeon-ri, Ganghwado" + }, + { + "id": "324145", + "ident": "KR-0127", + "type": "heliport", + "name": "Geomsan-dong Helipad", + "latitude_deg": "37.79612", + "longitude_deg": "126.751521", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Geomsan-ddong", + "scheduled_service": "no", + "keywords": "Geomsan-dong" + }, + { + "id": "324147", + "ident": "KR-0128", + "type": "heliport", + "name": "Saeori-ro Helipad", + "latitude_deg": "37.808877", + "longitude_deg": "126.698162", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Saeori-ro", + "scheduled_service": "no", + "keywords": "Saeori-ro" + }, + { + "id": "324148", + "ident": "KR-0129", + "type": "heliport", + "name": "Odu Mountain Unification Observatory Helipad", + "latitude_deg": "37.773212", + "longitude_deg": "126.68008", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Odu Mountain", + "scheduled_service": "no", + "keywords": "Odu Mountain, Odusan" + }, + { + "id": "324149", + "ident": "KR-0130", + "type": "heliport", + "name": "Odu Mountain Unification Observatory Helipad", + "latitude_deg": "37.773212", + "longitude_deg": "126.68008", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Odu Mountain", + "scheduled_service": "no", + "keywords": "Odu Mountain, Odusan" + }, + { + "id": "324150", + "ident": "KR-0131", + "type": "heliport", + "name": "Odu Mountain Unification Observatory Helipad", + "latitude_deg": "37.773212", + "longitude_deg": "126.68008", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Odu Mountain", + "scheduled_service": "no", + "keywords": "Odu Mountain, Odusan" + }, + { + "id": "324151", + "ident": "KR-0132", + "type": "heliport", + "name": "Odu Mountain Unification Observatory Helipad", + "latitude_deg": "37.773212", + "longitude_deg": "126.68008", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Odu Mountain", + "scheduled_service": "no", + "keywords": "Odu Mountain, Odusan" + }, + { + "id": "324153", + "ident": "KR-0133", + "type": "heliport", + "name": "Sannam-ro Helipads", + "latitude_deg": "37.705409", + "longitude_deg": "126.696686", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Sannam-ro", + "scheduled_service": "no", + "keywords": "Sannam-ro" + }, + { + "id": "324155", + "ident": "KR-0134", + "type": "heliport", + "name": "Jangdan Helipad", + "latitude_deg": "37.939226", + "longitude_deg": "126.751208", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Jangdan", + "scheduled_service": "no", + "keywords": "Jangdan" + }, + { + "id": "324165", + "ident": "KR-0135", + "type": "heliport", + "name": "Gorangpo-ri Helipad", + "latitude_deg": "37.977964", + "longitude_deg": "126.829604", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Gorangpo-ri", + "scheduled_service": "no", + "keywords": "Gorangpo-ri" + }, + { + "id": "324166", + "ident": "KR-0136", + "type": "heliport", + "name": "Duhyeon-ri Helipad", + "latitude_deg": "38.038308", + "longitude_deg": "126.886019", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Duhyeon-ri", + "scheduled_service": "no", + "keywords": "Duhyeon-ri" + }, + { + "id": "324167", + "ident": "KR-0137", + "type": "heliport", + "name": "Baengnyeong-ri Helipad", + "latitude_deg": "38.056628", + "longitude_deg": "126.887657", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Baengnyeong-ri", + "scheduled_service": "no", + "keywords": "Baengnyeong-ri" + }, + { + "id": "324168", + "ident": "KR-0138", + "type": "heliport", + "name": "Jeokgeo-ri Helipads", + "latitude_deg": "38.179802", + "longitude_deg": "127.003192", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Jeokgeo-ri", + "scheduled_service": "no", + "keywords": "Jeokgeo-ri" + }, + { + "id": "324169", + "ident": "KR-0139", + "type": "heliport", + "name": "Deoksan-ri Helipads", + "latitude_deg": "38.23829", + "longitude_deg": "127.066294", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Deoksan-ri", + "scheduled_service": "no", + "keywords": "Deoksan-ri" + }, + { + "id": "324170", + "ident": "KR-0140", + "type": "heliport", + "name": "Domil-ri Helipad", + "latitude_deg": "38.259303", + "longitude_deg": "127.101329", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Domil-ri", + "scheduled_service": "no", + "keywords": "Domil-ri" + }, + { + "id": "324171", + "ident": "KR-0141", + "type": "heliport", + "name": "Myojang-ro Heliport", + "latitude_deg": "38.270551", + "longitude_deg": "127.145486", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Myojang-ro", + "scheduled_service": "no", + "keywords": "Myojang-ro" + }, + { + "id": "324172", + "ident": "KR-0142", + "type": "heliport", + "name": "Sanmyeong-ri Helipad", + "latitude_deg": "38.293567", + "longitude_deg": "127.178931", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Sanmyeong-ri", + "scheduled_service": "no", + "keywords": "Sanmyeong-ri" + }, + { + "id": "324173", + "ident": "KR-0143", + "type": "heliport", + "name": "Jeongyeong-gil Helipad", + "latitude_deg": "38.299242", + "longitude_deg": "127.347009", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Jeongyeong-gil", + "scheduled_service": "no", + "keywords": "Jeongyeong-gil" + }, + { + "id": "324175", + "ident": "KR-0144", + "type": "heliport", + "name": "Yongyang-ri Helipad", + "latitude_deg": "38.283046", + "longitude_deg": "127.497491", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Yongyang-ri", + "scheduled_service": "no", + "keywords": "Yongyang-ri" + }, + { + "id": "324180", + "ident": "KR-0145", + "type": "heliport", + "name": "Yangji-ri West Helipad", + "latitude_deg": "38.283579", + "longitude_deg": "127.517069", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Yangji-ri", + "scheduled_service": "no", + "keywords": "Yangji-ri" + }, + { + "id": "324181", + "ident": "KR-0146", + "type": "heliport", + "name": "Yangji-ri East Helipad", + "latitude_deg": "38.284501", + "longitude_deg": "127.527034", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Yangji-ri", + "scheduled_service": "no", + "keywords": "Yangji-ri" + }, + { + "id": "324182", + "ident": "KR-0147", + "type": "heliport", + "name": "Yangji-ri North Helipad", + "latitude_deg": "38.29187", + "longitude_deg": "127.53477", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Yangji-ri", + "scheduled_service": "no", + "keywords": "Yangji-ri" + }, + { + "id": "324183", + "ident": "KR-0148", + "type": "heliport", + "name": "Bangtong-ri Helipad", + "latitude_deg": "38.286356", + "longitude_deg": "127.55021", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Bangtong-ri", + "scheduled_service": "no", + "keywords": "Bangtong-ri" + }, + { + "id": "324188", + "ident": "KR-0149", + "type": "heliport", + "name": "Deungdae-ri North Helipad", + "latitude_deg": "38.308304", + "longitude_deg": "127.745601", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Deungdae-ri", + "scheduled_service": "no", + "keywords": "Deungdae-ri" + }, + { + "id": "324189", + "ident": "KR-0150", + "type": "heliport", + "name": "Deungdae-ri South Helipad", + "latitude_deg": "38.307402", + "longitude_deg": "127.745306", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Deungdae-ri", + "scheduled_service": "no", + "keywords": "Deungdae-ri" + }, + { + "id": "324190", + "ident": "KR-0151", + "type": "heliport", + "name": "Pungsan-ri East Helipad", + "latitude_deg": "38.273386", + "longitude_deg": "127.81451", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Pungsan-ri", + "scheduled_service": "no", + "keywords": "Pungsan-ri" + }, + { + "id": "324191", + "ident": "KR-0152", + "type": "heliport", + "name": "Pungsan-ri West Helipads", + "latitude_deg": "38.266556", + "longitude_deg": "127.808874", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Pungsan-ri", + "scheduled_service": "no", + "keywords": "Pungsan-ri" + }, + { + "id": "324195", + "ident": "KR-0153", + "type": "heliport", + "name": "Cheonmi-ri Helipad", + "latitude_deg": "38.303598", + "longitude_deg": "127.889805", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheonmi-ri", + "scheduled_service": "no", + "keywords": "Cheonmi-ri" + }, + { + "id": "324196", + "ident": "KR-0154", + "type": "heliport", + "name": "Heartbreak Ridge South Helipad", + "latitude_deg": "38.295924", + "longitude_deg": "128.013562", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Satae-ri", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Battle_of_Heartbreak_Ridge", + "keywords": "Heartbreak Ridge, Satae-ri" + }, + { + "id": "324198", + "ident": "KR-0155", + "type": "heliport", + "name": "Heartbreak Ridge North Helipad", + "latitude_deg": "38.300695", + "longitude_deg": "128.015867", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Satae-ri", + "scheduled_service": "no", + "keywords": "Heartbreak Ridge, Satae-ri" + }, + { + "id": "324199", + "ident": "KR-0156", + "type": "heliport", + "name": "Ohyu-ri Helipad", + "latitude_deg": "38.285543", + "longitude_deg": "128.088065", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Ohyu-ri", + "scheduled_service": "no", + "keywords": "Ohyu-ri" + }, + { + "id": "324200", + "ident": "KR-0157", + "type": "heliport", + "name": "Ihyeon-ri Helipad", + "latitude_deg": "38.320311", + "longitude_deg": "128.111755", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Ihyeon-ri", + "scheduled_service": "no", + "keywords": "Ihyeon-ri" + }, + { + "id": "324201", + "ident": "KR-0158", + "type": "heliport", + "name": "Wolsan-ri West Helipad", + "latitude_deg": "38.320456", + "longitude_deg": "128.159953", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Wolsan-ri", + "scheduled_service": "no", + "keywords": "Wolsan-ri" + }, + { + "id": "324202", + "ident": "KR-0159", + "type": "heliport", + "name": "Wolsan-ri East Helipad", + "latitude_deg": "38.314054", + "longitude_deg": "128.170417", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Wolsan-ri", + "scheduled_service": "no", + "keywords": "Wolsan-ri" + }, + { + "id": "324203", + "ident": "KR-0160", + "type": "heliport", + "name": "Gajeon Helipad", + "latitude_deg": "38.351408", + "longitude_deg": "128.20568", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Gajeon", + "scheduled_service": "no", + "keywords": "Gajeon" + }, + { + "id": "324204", + "ident": "KR-0161", + "type": "heliport", + "name": "Gajeon-ri West Helipad", + "latitude_deg": "38.351408", + "longitude_deg": "128.20568", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Gajeon-ri", + "scheduled_service": "no", + "keywords": "Gajeon-ri" + }, + { + "id": "324205", + "ident": "KR-0162", + "type": "heliport", + "name": "Gajeon-ri East Helipad", + "latitude_deg": "38.348047", + "longitude_deg": "128.264949", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Gajeon-ri", + "scheduled_service": "no", + "keywords": "Gajeon-ri" + }, + { + "id": "324206", + "ident": "KR-0163", + "type": "heliport", + "name": "Gajeon-ri South Helipad", + "latitude_deg": "38.332784", + "longitude_deg": "128.270756", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Gajeon-ri", + "scheduled_service": "no", + "keywords": "Gajeon-ri" + }, + { + "id": "324209", + "ident": "KR-0164", + "type": "heliport", + "name": "Sacheon-ri Helipad", + "latitude_deg": "38.418166", + "longitude_deg": "128.311373", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Sacheon-ri", + "scheduled_service": "no", + "keywords": "Sacheon-ri" + }, + { + "id": "324235", + "ident": "KR-0165", + "type": "heliport", + "name": "Gomiseong-ri Helipad", + "latitude_deg": "38.429852", + "longitude_deg": "128.339042", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Gomiseong-ri", + "scheduled_service": "no", + "keywords": "Gomiseong-ri" + }, + { + "id": "324236", + "ident": "KR-0166", + "type": "heliport", + "name": "Songgang-ri Helipad", + "latitude_deg": "38.425887", + "longitude_deg": "128.342368", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Songgang-ri", + "scheduled_service": "no", + "keywords": "Songgang-ri" + }, + { + "id": "324238", + "ident": "KR-0167", + "type": "heliport", + "name": "Songgang-ri East Heliport", + "latitude_deg": "38.425784", + "longitude_deg": "128.344845", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Songgang-ri", + "scheduled_service": "no", + "keywords": "Songgang-ri" + }, + { + "id": "324240", + "ident": "KR-0168", + "type": "heliport", + "name": "Songgang-ri North Helipad", + "latitude_deg": "38.43367", + "longitude_deg": "128.35271", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Songgang-ri", + "scheduled_service": "no", + "keywords": "Songgang-ri" + }, + { + "id": "324241", + "ident": "KR-0169", + "type": "heliport", + "name": "Sangwon-ri Helipad", + "latitude_deg": "38.40695", + "longitude_deg": "128.30156", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Sangwon-ri", + "scheduled_service": "no", + "keywords": "Sangwon-ri" + }, + { + "id": "324267", + "ident": "KR-0170", + "type": "heliport", + "name": "Tapyeol-ri Helipad", + "latitude_deg": "38.399839", + "longitude_deg": "128.348492", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Tapyeol-ri", + "scheduled_service": "no", + "keywords": "Tapyeol-ri" + }, + { + "id": "324268", + "ident": "KR-0171", + "type": "heliport", + "name": "Sanbuk-ri Helipad", + "latitude_deg": "38.464816", + "longitude_deg": "128.357234", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Sanbuk-ri", + "scheduled_service": "no", + "keywords": "Sanbuk-ri" + }, + { + "id": "324269", + "ident": "KR-0172", + "type": "heliport", + "name": "Gomiseong-ri North Helipad", + "latitude_deg": "38.477279", + "longitude_deg": "128.339801", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Gomiseong-ri", + "scheduled_service": "no", + "keywords": "Gomiseong-ri" + }, + { + "id": "324270", + "ident": "KR-0173", + "type": "heliport", + "name": "Madal-ri", + "latitude_deg": "38.518189", + "longitude_deg": "128.356321", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Madal-ri", + "scheduled_service": "no", + "keywords": "Madal-ri" + }, + { + "id": "324271", + "ident": "KR-0174", + "type": "heliport", + "name": "Myeongpa-ri Helipad", + "latitude_deg": "38.553311", + "longitude_deg": "128.397962", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Myeongpa-ri", + "scheduled_service": "no", + "keywords": "Myeongpa-ri" + }, + { + "id": "324272", + "ident": "KR-0175", + "type": "heliport", + "name": "Myeongpa-ri East Helipad", + "latitude_deg": "38.553256", + "longitude_deg": "128.399588", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Myeongpa-ri", + "scheduled_service": "no", + "keywords": "Myeongpa-ri" + }, + { + "id": "324273", + "ident": "KR-0176", + "type": "heliport", + "name": "Jejin Helipad", + "latitude_deg": "38.571418", + "longitude_deg": "128.393423", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Jejin", + "scheduled_service": "no", + "keywords": "Jejin" + }, + { + "id": "324274", + "ident": "KR-0177", + "type": "heliport", + "name": "Myeongho-ri Heliport", + "latitude_deg": "38.583822", + "longitude_deg": "128.363241", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Myeongho-ri", + "scheduled_service": "no", + "keywords": "Myeongho-ri" + }, + { + "id": "324278", + "ident": "KR-0178", + "type": "heliport", + "name": "Songhyeon-ri Helipad", + "latitude_deg": "38.572299", + "longitude_deg": "128.342921", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Songhyeon-ri", + "scheduled_service": "no", + "keywords": "Songhyeon-ri" + }, + { + "id": "324283", + "ident": "KR-0179", + "type": "heliport", + "name": "Songhyeon-ri South Helipad", + "latitude_deg": "38.558955", + "longitude_deg": "128.347938", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Songhyeon-ri", + "scheduled_service": "no", + "keywords": "Songhyeon-ri" + }, + { + "id": "324284", + "ident": "KR-0180", + "type": "heliport", + "name": "Songhyeon-ri North Helipad", + "latitude_deg": "38.576859", + "longitude_deg": "128.345464", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Songhyeon-ri", + "scheduled_service": "no", + "keywords": "Songhyeon-ri" + }, + { + "id": "324285", + "ident": "KR-0181", + "type": "heliport", + "name": "Geomjang-ri Helipad", + "latitude_deg": "38.543466", + "longitude_deg": "128.346904", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Geomjang-ri", + "scheduled_service": "no", + "keywords": "Geomjang-ri" + }, + { + "id": "324286", + "ident": "KR-0182", + "type": "heliport", + "name": "Myeongpa-ri South Helipad", + "latitude_deg": "38.521314", + "longitude_deg": "128.335495", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Myeongpa-ri", + "scheduled_service": "no", + "keywords": "Myeongpa-ri" + }, + { + "id": "324288", + "ident": "KR-0183", + "type": "heliport", + "name": "Sangwon-ri West Helipad", + "latitude_deg": "38.399958", + "longitude_deg": "128.286519", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Sangwon-ri", + "scheduled_service": "no", + "keywords": "Sangwon-ri" + }, + { + "id": "324289", + "ident": "KR-0184", + "type": "heliport", + "name": "Cheondochon Helipad", + "latitude_deg": "38.237992", + "longitude_deg": "128.216771", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheondochon", + "scheduled_service": "no", + "keywords": "Cheondochon" + }, + { + "id": "324290", + "ident": "KR-0185", + "type": "heliport", + "name": "Cheondo-ri Helipad", + "latitude_deg": "38.240628", + "longitude_deg": "128.210988", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheondo-ri", + "scheduled_service": "no", + "keywords": "Cheondo-ri" + }, + { + "id": "324311", + "ident": "KR-0186", + "type": "heliport", + "name": "Wolhak-ri Helipad", + "latitude_deg": "38.146381", + "longitude_deg": "128.208403", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Wolhak-ri", + "scheduled_service": "no", + "keywords": "Wolhak-ri" + }, + { + "id": "324312", + "ident": "KR-0187", + "type": "heliport", + "name": "Wolhak-ri Helipad", + "latitude_deg": "38.157743", + "longitude_deg": "128.203856", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Wolhak-ri", + "scheduled_service": "no", + "keywords": "Wolhak-ri" + }, + { + "id": "324313", + "ident": "KR-0188", + "type": "heliport", + "name": "Seoheung-ri Helipad", + "latitude_deg": "38.200359", + "longitude_deg": "128.210699", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Seoheung-ri", + "scheduled_service": "no", + "keywords": "Seoheung-ri" + }, + { + "id": "324314", + "ident": "KR-0189", + "type": "heliport", + "name": "Seoheung-ri North Helipad", + "latitude_deg": "38.204576", + "longitude_deg": "128.210825", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Seoheung-ri", + "scheduled_service": "no", + "keywords": "Seoheung-ri" + }, + { + "id": "324315", + "ident": "KR-0190", + "type": "heliport", + "name": "Cheondo-ri East Helipad", + "latitude_deg": "38.219436", + "longitude_deg": "128.224091", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheondo-ri", + "scheduled_service": "no", + "keywords": "Cheondo-ri" + }, + { + "id": "324316", + "ident": "KR-0191", + "type": "heliport", + "name": "Cheondo-ri North Helipad North Helipad", + "latitude_deg": "38.230052", + "longitude_deg": "128.202126", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheondo-ri", + "scheduled_service": "no", + "keywords": "Cheondo-ri" + }, + { + "id": "324317", + "ident": "KR-0192", + "type": "heliport", + "name": "Hu-ri Helipad", + "latitude_deg": "38.310573", + "longitude_deg": "128.148074", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Hu-ri", + "scheduled_service": "no", + "keywords": "Hu-ri" + }, + { + "id": "324318", + "ident": "KR-0193", + "type": "heliport", + "name": "Bia-ri Helipad", + "latitude_deg": "38.277833", + "longitude_deg": "128.042379", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Bia-ri", + "scheduled_service": "no", + "keywords": "Bia-ri" + }, + { + "id": "324319", + "ident": "KR-0194", + "type": "heliport", + "name": "Bia-ri South Helipad", + "latitude_deg": "38.257052", + "longitude_deg": "128.04206", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Bia-ri", + "scheduled_service": "no", + "keywords": "Bia-ri" + }, + { + "id": "324320", + "ident": "KR-0195", + "type": "heliport", + "name": "Bia-ri East Helipad", + "latitude_deg": "38.261751", + "longitude_deg": "128.047036", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Bia-ri", + "scheduled_service": "no", + "keywords": "Bia-ri" + }, + { + "id": "324321", + "ident": "KR-0196", + "type": "heliport", + "name": "Geonsol-ri Helipad", + "latitude_deg": "38.283061", + "longitude_deg": "127.979133", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Geonsol-ri", + "scheduled_service": "no", + "keywords": "Geonsol-ri" + }, + { + "id": "324322", + "ident": "KR-0197", + "type": "heliport", + "name": "Geonsol-ri South Helipad", + "latitude_deg": "38.265432", + "longitude_deg": "127.983271", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Geonsol-ri", + "scheduled_service": "no", + "keywords": "Geonsol-ri" + }, + { + "id": "324323", + "ident": "KR-0198", + "type": "heliport", + "name": "Gobangsal-ri Helipad", + "latitude_deg": "38.250514", + "longitude_deg": "128.010582", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Gobangsal-ri", + "scheduled_service": "no", + "keywords": "Gobangsal-ri" + }, + { + "id": "324324", + "ident": "KR-0199", + "type": "small_airport", + "name": "Imdang-ri Airfield", + "latitude_deg": "38.19605", + "longitude_deg": "128.041942", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Imdang-ri", + "scheduled_service": "no", + "keywords": "Imdang-ri" + }, + { + "id": "324326", + "ident": "KR-0200", + "type": "heliport", + "name": "Wolun-ri Helipad", + "latitude_deg": "38.254708", + "longitude_deg": "128.046403", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Wolun-ri", + "scheduled_service": "no", + "keywords": "Wolun-ri" + }, + { + "id": "324327", + "ident": "KR-0201", + "type": "heliport", + "name": "Geonsol-ri West Helipad", + "latitude_deg": "38.27359", + "longitude_deg": "127.960183", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Geonsol-ri", + "scheduled_service": "no", + "keywords": "Geonsol-ri" + }, + { + "id": "324328", + "ident": "KR-0202", + "type": "heliport", + "name": "Geumaki-ri Helipad", + "latitude_deg": "38.229966", + "longitude_deg": "127.9074865", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Geumaki-ri", + "scheduled_service": "no", + "keywords": "Geumaki-ri" + }, + { + "id": "324329", + "ident": "KR-0203", + "type": "heliport", + "name": "Cheonmi-ri East Helipad", + "latitude_deg": "38.296719", + "longitude_deg": "127.904195", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheonmi-ri", + "scheduled_service": "no", + "keywords": "Cheonmi-ri" + }, + { + "id": "324330", + "ident": "KR-0204", + "type": "heliport", + "name": "Deungdae-ri East Helipad", + "latitude_deg": "38.284311", + "longitude_deg": "127.7766318", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Deungdae-ri", + "scheduled_service": "no", + "keywords": "Deungdae-ri" + }, + { + "id": "324331", + "ident": "KR-0205", + "type": "heliport", + "name": "Pungsan-ri South Helipad South Helipad", + "latitude_deg": "38.247116", + "longitude_deg": "127.785713", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Pungsan-ri", + "scheduled_service": "no", + "keywords": "Pungsan-ri" + }, + { + "id": "324333", + "ident": "KR-0206", + "type": "heliport", + "name": "Mahyeon-ri West Helipad", + "latitude_deg": "38.254866", + "longitude_deg": "127.579795", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mahyeon-ri", + "scheduled_service": "no", + "keywords": "Mahyeon-ri" + }, + { + "id": "324334", + "ident": "KR-0207", + "type": "small_airport", + "name": "G-321 Airfield", + "latitude_deg": "38.268966", + "longitude_deg": "127.55613", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mahyeon-ri", + "scheduled_service": "no", + "keywords": "Mahyeon-ri" + }, + { + "id": "324336", + "ident": "KR-0208", + "type": "heliport", + "name": "Eupnae-ri Helipad", + "latitude_deg": "38.295227", + "longitude_deg": "127.424122", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Eupnae-ri", + "scheduled_service": "no", + "keywords": "Eupnae-ri" + }, + { + "id": "324337", + "ident": "KR-0209", + "type": "heliport", + "name": "Hoengsan-ri Helipad", + "latitude_deg": "38.113047", + "longitude_deg": "126.986026", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Hoengsan-ri", + "scheduled_service": "no", + "keywords": "Hoengsan-ri" + }, + { + "id": "324339", + "ident": "KR-0210", + "type": "heliport", + "name": "Mapo-ri Helipad", + "latitude_deg": "37.999331", + "longitude_deg": "127.005775", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Mapo-ri", + "scheduled_service": "no", + "keywords": "Mapo-ri" + }, + { + "id": "324340", + "ident": "KR-0211", + "type": "heliport", + "name": "C-122 Heliport", + "latitude_deg": "37.90143", + "longitude_deg": "126.735655", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Baegyeon-ri", + "scheduled_service": "no", + "local_code": "RKB9", + "keywords": "Baegyeon-ri, C-122, C122" + }, + { + "id": "324346", + "ident": "KR-0212", + "type": "heliport", + "name": "C-820 Heliport", + "latitude_deg": "35.386108", + "longitude_deg": "129.064072", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Daeseok-ri", + "scheduled_service": "no", + "keywords": "Daeseok-ri" + }, + { + "id": "324347", + "ident": "KR-0213", + "type": "heliport", + "name": "C-820 Heliport", + "latitude_deg": "35.386108", + "longitude_deg": "129.064072", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Daeseok-ri", + "scheduled_service": "no", + "keywords": "Daeseok-ri" + }, + { + "id": "324669", + "ident": "KR-0214", + "type": "heliport", + "name": "Seoul National University Bundang Hospital Helipad", + "latitude_deg": "37.352463", + "longitude_deg": "127.122985", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Bundang (Seoul)", + "scheduled_service": "no", + "keywords": "Seoul National University, Bundang" + }, + { + "id": "325144", + "ident": "KR-0215", + "type": "closed", + "name": "Yeouido Airport", + "latitude_deg": "37.525833", + "longitude_deg": "126.921944", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Yongdongpo (Seoul)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yeouido_Airport", + "keywords": "Yeouido" + }, + { + "id": "326624", + "ident": "KR-0216", + "type": "heliport", + "name": "Kkotchi Heliport", + "latitude_deg": "37.660332", + "longitude_deg": "126.235028", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Kkotchi", + "scheduled_service": "no", + "keywords": "Kkotchi, 꼿치, Ach’a-do" + }, + { + "id": "326700", + "ident": "KR-0217", + "type": "heliport", + "name": "Jangbong-ri Heliport", + "latitude_deg": "37.522958", + "longitude_deg": "126.327245", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Jangbong-ri", + "scheduled_service": "no", + "keywords": "Jangbong-ri" + }, + { + "id": "326701", + "ident": "KR-0218", + "type": "heliport", + "name": "Jangbong-ro Heliport", + "latitude_deg": "37.530055", + "longitude_deg": "126.335101", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Jangbong-ro", + "scheduled_service": "no", + "keywords": "Jangbong-ro" + }, + { + "id": "326741", + "ident": "KR-0219", + "type": "heliport", + "name": "Jinhae Naval Hospital Heliport", + "latitude_deg": "35.140384", + "longitude_deg": "128.650798", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Jinhae", + "scheduled_service": "no", + "keywords": "Jinhae, Chinhae" + }, + { + "id": "326742", + "ident": "KR-0220", + "type": "heliport", + "name": "Ibam Heliport", + "latitude_deg": "34.899652", + "longitude_deg": "128.168282", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Chunam-ri", + "scheduled_service": "no", + "keywords": "Ibam, Sonbawi" + }, + { + "id": "326777", + "ident": "KR-0221", + "type": "heliport", + "name": "Jinhae Naval Academy Heliport", + "latitude_deg": "35.133397", + "longitude_deg": "128.666034", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Jinhae (Angok-dong)", + "scheduled_service": "no", + "keywords": "Jinhae Naval Academy; Angok-dong" + }, + { + "id": "326778", + "ident": "KR-0222", + "type": "heliport", + "name": "Jinhae Naval Base (2 helipads)", + "latitude_deg": "35.146791", + "longitude_deg": "128.636902", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Jinhae", + "scheduled_service": "no", + "keywords": "Jinhae Naval Base" + }, + { + "id": "326779", + "ident": "KR-0223", + "type": "heliport", + "name": "Jinhae Submarine Base Helipad", + "latitude_deg": "35.136864", + "longitude_deg": "128.621655", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Jinhae", + "scheduled_service": "no", + "keywords": "Jinhae Submarine Base" + }, + { + "id": "326808", + "ident": "KR-0224", + "type": "heliport", + "name": "Jinhae Airbase/Airport Heliport", + "latitude_deg": "35.136405", + "longitude_deg": "128.699126", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Jinhae", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jinhae_Airport" + }, + { + "id": "326812", + "ident": "KR-0225", + "type": "heliport", + "name": "Ch’odo-ri Heliport", + "latitude_deg": "38.486465", + "longitude_deg": "128.43701", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Ch’odo-ri", + "scheduled_service": "no", + "keywords": "Ch’odo-ri" + }, + { + "id": "326825", + "ident": "KR-0226", + "type": "heliport", + "name": "Myeongjeong-dong Heliport", + "latitude_deg": "34.851535", + "longitude_deg": "128.413149", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Myeongjeong", + "scheduled_service": "no", + "keywords": "Myeongjeong-dong" + }, + { + "id": "326858", + "ident": "KR-0227", + "type": "heliport", + "name": "Samsung Total Petrochemicals Daesan Heliport", + "latitude_deg": "37.005903", + "longitude_deg": "126.353156", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Daesan", + "scheduled_service": "no", + "keywords": "Daesan, Samsung Total" + }, + { + "id": "326884", + "ident": "KR-0228", + "type": "heliport", + "name": "LG Chemical Ltd Daesan Complex Heliport", + "latitude_deg": "36.997371", + "longitude_deg": "126.379938", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Daesan", + "scheduled_service": "no", + "keywords": "LG Chemical, Daesan" + }, + { + "id": "326895", + "ident": "KR-0229", + "type": "heliport", + "name": "Bunam-ri Heliport", + "latitude_deg": "37.365801", + "longitude_deg": "129.249538", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Bunam-ri", + "scheduled_service": "no", + "keywords": "Bunam" + }, + { + "id": "326897", + "ident": "KR-0230", + "type": "heliport", + "name": "Shinan Daewoo Hospital Heliport", + "latitude_deg": "34.72165", + "longitude_deg": "125.93294", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Sudae-ri", + "scheduled_service": "no", + "keywords": "Shinan Daewoo Hospital, Sudae-ri" + }, + { + "id": "326898", + "ident": "KR-0231", + "type": "heliport", + "name": "Suchi-do Heliport", + "latitude_deg": "34.738381", + "longitude_deg": "126.024224", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Suchi-ri", + "scheduled_service": "no", + "keywords": "Suchi-do, Suchi-ri" + }, + { + "id": "326913", + "ident": "KR-0232", + "type": "heliport", + "name": "Chondung Sa Heliport", + "latitude_deg": "37.587476", + "longitude_deg": "126.514069", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Donggeom-ri", + "scheduled_service": "no", + "keywords": "Donggeom-ri, 동검 리" + }, + { + "id": "326914", + "ident": "KR-0233", + "type": "heliport", + "name": "Ssangyong East Cement Plant Heliport", + "latitude_deg": "37.487569", + "longitude_deg": "129.064352", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Iro-dong (Donghae)", + "scheduled_service": "no", + "keywords": "Ssangyong East Cement Plant, Iro-dong, Donghae" + }, + { + "id": "326915", + "ident": "KR-0234", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326916", + "ident": "KR-0235", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326917", + "ident": "KR-0236", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326918", + "ident": "KR-0237", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326919", + "ident": "KR-0238", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326920", + "ident": "KR-0239", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326921", + "ident": "KR-0240", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326922", + "ident": "KR-0241", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326923", + "ident": "KR-0242", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326924", + "ident": "KR-0243", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326925", + "ident": "KR-0244", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326926", + "ident": "KR-0245", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326927", + "ident": "KR-0246", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326928", + "ident": "KR-0247", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326929", + "ident": "KR-0248", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326930", + "ident": "KR-0249", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326931", + "ident": "KR-0250", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326932", + "ident": "KR-0251", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326933", + "ident": "KR-0252", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326934", + "ident": "KR-0253", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326935", + "ident": "KR-0254", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326936", + "ident": "KR-0255", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326937", + "ident": "KR-0256", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326938", + "ident": "KR-0257", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326939", + "ident": "KR-0258", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326940", + "ident": "KR-0259", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326941", + "ident": "KR-0260", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326942", + "ident": "KR-0261", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326943", + "ident": "KR-0262", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326944", + "ident": "KR-0263", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326945", + "ident": "KR-0264", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326946", + "ident": "KR-0265", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326947", + "ident": "KR-0266", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326948", + "ident": "KR-0267", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326949", + "ident": "KR-0268", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326950", + "ident": "KR-0269", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326951", + "ident": "KR-0270", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326952", + "ident": "KR-0271", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326953", + "ident": "KR-0272", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326954", + "ident": "KR-0273", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326955", + "ident": "KR-0274", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326956", + "ident": "KR-0275", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326957", + "ident": "KR-0276", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326958", + "ident": "KR-0277", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326959", + "ident": "KR-0278", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326960", + "ident": "KR-0279", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326961", + "ident": "KR-0280", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326962", + "ident": "KR-0281", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326963", + "ident": "KR-0282", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326964", + "ident": "KR-0283", + "type": "heliport", + "name": "Mukho Port Heliport", + "latitude_deg": "37.540345", + "longitude_deg": "129.115255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Mukho", + "scheduled_service": "no", + "keywords": "Mukho" + }, + { + "id": "326980", + "ident": "KR-0284", + "type": "heliport", + "name": "Yeongheung Power Station Heliport", + "latitude_deg": "37.241964", + "longitude_deg": "126.441578", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Eopbeol (Oe-ri)", + "scheduled_service": "no", + "keywords": "Yeongheung Power Station, Eopbeol, Oe-ri, Yeongheung-do, 업벌, 영흥 발전소" + }, + { + "id": "326981", + "ident": "KR-0285", + "type": "small_airport", + "name": "Jeju ROK Naval Air Facility", + "latitude_deg": "33.510775", + "longitude_deg": "126.49913", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "municipality": "Yongdami-dong", + "scheduled_service": "no", + "keywords": "Yongdami-dong, Jeju Si, 용다 미동, ROK Naval Facility" + }, + { + "id": "326984", + "ident": "KR-0286", + "type": "heliport", + "name": "Jeju International Airport Heliport", + "latitude_deg": "33.509467", + "longitude_deg": "126.49965", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "municipality": "Yongdami-dong", + "scheduled_service": "no", + "keywords": "Jeju International Airport, Yongdami-dong" + }, + { + "id": "326986", + "ident": "KR-0287", + "type": "heliport", + "name": "Jeju Island Naval Base Command Helipad", + "latitude_deg": "33.228556", + "longitude_deg": "126.482651", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "municipality": "Gangjeong", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jeju_Naval_Base", + "keywords": "Gangjeong, Jeju Island Naval Base" + }, + { + "id": "326988", + "ident": "KR-0288", + "type": "heliport", + "name": "ROK Navy 301st Defense Squadron Miaksan Radar Site Helipad", + "latitude_deg": "33.30117", + "longitude_deg": "126.55571", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "municipality": "Donghong-dong", + "scheduled_service": "no", + "keywords": "ROK Navy 301st Defense Squadron, Miaksan, Donghong-dong" + }, + { + "id": "327013", + "ident": "KR-0289", + "type": "heliport", + "name": "ROK Air Force 8546th Group: 308th Squadron Heliport", + "latitude_deg": "33.232446", + "longitude_deg": "126.255317", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "municipality": "Hamo-ri", + "scheduled_service": "no", + "keywords": "ROK Air Force 8546th Group: 308th Squadron, Hamo-ri" + }, + { + "id": "327016", + "ident": "KR-0290", + "type": "heliport", + "name": "Hallasan Heliport", + "latitude_deg": "33.370098", + "longitude_deg": "126.533043", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "municipality": "Odeung-dong", + "scheduled_service": "no", + "keywords": "Hallsan, Odeung-dong" + }, + { + "id": "327017", + "ident": "KR-0291", + "type": "heliport", + "name": "Gasado Heliport", + "latitude_deg": "34.476", + "longitude_deg": "126.060667", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-45", + "municipality": "Gasado-ri", + "scheduled_service": "no", + "keywords": "Gasado, Kasado" + }, + { + "id": "327020", + "ident": "KR-0292", + "type": "heliport", + "name": "Hwapo-ri Early Warning Radar Base Heliport", + "latitude_deg": "38.461406", + "longitude_deg": "128.453591", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Hwapo-ri", + "scheduled_service": "no", + "keywords": "Hwapo-ri" + }, + { + "id": "327026", + "ident": "KR-0293", + "type": "heliport", + "name": "Andong General Hospital", + "latitude_deg": "36.546699", + "longitude_deg": "128.700773", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Andong", + "scheduled_service": "no", + "keywords": "Andong General Hospital" + }, + { + "id": "327027", + "ident": "KR-0294", + "type": "heliport", + "name": "Daejon St. Mary’s Hospital Heliport", + "latitude_deg": "36.322458", + "longitude_deg": "127.42046", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Daejon", + "scheduled_service": "no", + "keywords": "Daejon St. Mary's Hospital" + }, + { + "id": "327028", + "ident": "KR-0295", + "type": "heliport", + "name": "Eulji University Hospital Heliport", + "latitude_deg": "36.355396", + "longitude_deg": "127.381891", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Daejon", + "scheduled_service": "no", + "keywords": "Eulji University Hospital" + }, + { + "id": "327029", + "ident": "KR-0296", + "type": "heliport", + "name": "ROK Ministry of SMEs & Startups", + "latitude_deg": "36.361598", + "longitude_deg": "127.383943", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Daejon", + "scheduled_service": "no", + "keywords": "Ministry of SMEs and Startups" + }, + { + "id": "327030", + "ident": "KR-0297", + "type": "heliport", + "name": "ROK Ministry of SMEs & Starups", + "latitude_deg": "36.361598", + "longitude_deg": "127.383943", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Daejon", + "scheduled_service": "no", + "keywords": "Ministry of SMEs and Startups" + }, + { + "id": "327031", + "ident": "KR-0298", + "type": "heliport", + "name": "ROK Ministry of SMEs & Starups", + "latitude_deg": "36.361598", + "longitude_deg": "127.383943", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Daejon", + "scheduled_service": "no", + "keywords": "Ministry of SMEs and Startups" + }, + { + "id": "327032", + "ident": "KR-0299", + "type": "heliport", + "name": "ROK Ministry of SMEs & Starups", + "latitude_deg": "36.361598", + "longitude_deg": "127.383943", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Daejon", + "scheduled_service": "no", + "keywords": "Ministry of SMEs and Startups" + }, + { + "id": "327033", + "ident": "KR-0300", + "type": "heliport", + "name": "ROK Ministry of SMEs & Starups", + "latitude_deg": "36.361598", + "longitude_deg": "127.383943", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Daejon", + "scheduled_service": "no", + "keywords": "Ministry of SMEs and Startups" + }, + { + "id": "327034", + "ident": "KR-0301", + "type": "heliport", + "name": "ROK Armed Forces Daejon Military Hospital Heliport", + "latitude_deg": "36.39781", + "longitude_deg": "127.348591", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Daejon", + "scheduled_service": "no", + "keywords": "ROK Armed Forces Daejon Military Hospital" + }, + { + "id": "327035", + "ident": "KR-0302", + "type": "heliport", + "name": "ROK Army 53rd Logstics Support Group Heliport", + "latitude_deg": "36.403103", + "longitude_deg": "127.351137", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Daejon", + "scheduled_service": "no", + "keywords": "ROK Army 53rd Logstics Support Group" + }, + { + "id": "327036", + "ident": "KR-0303", + "type": "heliport", + "name": "Jaun-ro Heliport", + "latitude_deg": "36.410803", + "longitude_deg": "127.345216", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Jaun-ro (Daejan)", + "scheduled_service": "no", + "keywords": "Jaun-ro" + }, + { + "id": "327037", + "ident": "KR-0304", + "type": "heliport", + "name": "ROK Joint Forces Military University Heliport", + "latitude_deg": "36.415414", + "longitude_deg": "127.358792", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Daejon", + "scheduled_service": "no", + "keywords": "ROK Joint Forces Military University" + }, + { + "id": "327038", + "ident": "KR-0305", + "type": "heliport", + "name": "Geumgang Axle Tower Complex Heliports", + "latitude_deg": "36.451924", + "longitude_deg": "127.42071", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Daejon", + "scheduled_service": "no", + "keywords": "금강 엑슬루 타워, Geumgang Axle Tower" + }, + { + "id": "327042", + "ident": "KR-0306", + "type": "heliport", + "name": "Chungbuk National University Hospital Heliport", + "latitude_deg": "36.623297", + "longitude_deg": "127.460647", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Gaesin-dong", + "scheduled_service": "no", + "keywords": "Chungbuk National University Hospital" + }, + { + "id": "327043", + "ident": "KR-0307", + "type": "heliport", + "name": "Dankook University Cheonan Campus Heliport", + "latitude_deg": "36.843877", + "longitude_deg": "127.173899", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Anseo-dong", + "scheduled_service": "no", + "keywords": "Dankook University Hospital" + }, + { + "id": "327044", + "ident": "KR-0308", + "type": "heliport", + "name": "Cheonan City Health Center Heliport", + "latitude_deg": "36.814987", + "longitude_deg": "127.11463", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Cheonan", + "scheduled_service": "no", + "keywords": "Cheonan City Health Center" + }, + { + "id": "327047", + "ident": "KR-0309", + "type": "heliport", + "name": "Busan Medical Center Heliport", + "latitude_deg": "35.187373", + "longitude_deg": "129.059249", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Busan Medical Center Heliport" + }, + { + "id": "327048", + "ident": "KR-0310", + "type": "heliport", + "name": "Geumnyeonsan Heliport", + "latitude_deg": "35.163241", + "longitude_deg": "129.096439", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Geumnyeonsan" + }, + { + "id": "327049", + "ident": "KR-0311", + "type": "heliport", + "name": "Swimmer Hyundai IPark Apartments Heliports", + "latitude_deg": "35.162341", + "longitude_deg": "129.129771", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Swimmer Hyundai IPark Apartment" + }, + { + "id": "327050", + "ident": "KR-0312", + "type": "heliport", + "name": "Minak Lotte Castle Giant Apartment Complex Heliports", + "latitude_deg": "35.158096", + "longitude_deg": "129.132872", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Minak Lotte Castle Giant Apartment" + }, + { + "id": "327065", + "ident": "KR-0313", + "type": "heliport", + "name": "Park Hyatt Busan Heliport", + "latitude_deg": "35.157083", + "longitude_deg": "129.141736", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Park Hyatt Busan" + }, + { + "id": "327066", + "ident": "KR-0314", + "type": "heliport", + "name": "Haeundae I Park Marina Tower 1 Heliport", + "latitude_deg": "35.157954", + "longitude_deg": "129.142097", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Haeundae I Park Marina Tower 1" + }, + { + "id": "327067", + "ident": "KR-0315", + "type": "heliport", + "name": "Haeundae Doosan We’ve the Zenith Heliports", + "latitude_deg": "35.158039", + "longitude_deg": "129.145569", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Haeundae Doosan We’ve the Zenith" + }, + { + "id": "327069", + "ident": "KR-0316", + "type": "heliport", + "name": "Haeundae I Park Marina Tower 2 Heliport", + "latitude_deg": "35.155971", + "longitude_deg": "129.142104", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Haeundae I Park Marina Tower 2" + }, + { + "id": "327070", + "ident": "KR-0317", + "type": "heliport", + "name": "Daewoo Trump Marine World Heliports", + "latitude_deg": "35.15528", + "longitude_deg": "129.143654", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Daewoo Trump Marine World" + }, + { + "id": "327071", + "ident": "KR-0318", + "type": "heliport", + "name": "Hanhwa Resort Haeundae Heliport", + "latitude_deg": "35.15504", + "longitude_deg": "129.144801", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Hanhwa Resort Haeundae" + }, + { + "id": "327072", + "ident": "KR-0319", + "type": "heliport", + "name": "Doosan We’ve Poseidon Heliports", + "latitude_deg": "35.155192", + "longitude_deg": "129.14425", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Doosan We’ve Poseidon" + }, + { + "id": "327094", + "ident": "KR-0320", + "type": "heliport", + "name": "Kaiser Village Apartments Heliports", + "latitude_deg": "35.1551", + "longitude_deg": "129.146173", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Kaiser Village Apartments" + }, + { + "id": "327095", + "ident": "KR-0321", + "type": "heliport", + "name": "Hanil Ordew Heliport", + "latitude_deg": "35.155436", + "longitude_deg": "129.146379", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Hanil Ordew" + }, + { + "id": "327096", + "ident": "KR-0322", + "type": "heliport", + "name": "Daewoo Worldmark Centrum Apartments Heliports", + "latitude_deg": "35.156495", + "longitude_deg": "129.146387", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Daewoo Worldmark Centrum Apartments" + }, + { + "id": "327097", + "ident": "KR-0323", + "type": "heliport", + "name": "Meeting Plaza Heliport", + "latitude_deg": "35.157899", + "longitude_deg": "129.147295", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Meeting Plaza" + }, + { + "id": "327098", + "ident": "KR-0324", + "type": "heliport", + "name": "Hyundai Hypherion Apartments Heliports", + "latitude_deg": "35.157846", + "longitude_deg": "129.1483", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Hyundai Hypherion" + }, + { + "id": "327099", + "ident": "KR-0325", + "type": "heliport", + "name": "Hyundai Camelia Haute Heliports", + "latitude_deg": "35.15785", + "longitude_deg": "129.150325", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Hyundai Camelia Haute" + }, + { + "id": "327100", + "ident": "KR-0326", + "type": "heliport", + "name": "Benecity Apartment Complex Heliports", + "latitude_deg": "35.159291", + "longitude_deg": "129.150451", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Benecity Apartment Complex" + }, + { + "id": "327101", + "ident": "KR-0327", + "type": "heliport", + "name": "Ocean Park Apartments Heliport", + "latitude_deg": "35.160731", + "longitude_deg": "129.15334", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Ocean Park Apartments" + }, + { + "id": "327102", + "ident": "KR-0328", + "type": "heliport", + "name": "53rd ROK Army Division Heliport", + "latitude_deg": "35.191118", + "longitude_deg": "129.194541", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Haeundae (Busan)", + "scheduled_service": "no", + "keywords": "53rd ROK Army Division" + }, + { + "id": "327103", + "ident": "KR-0329", + "type": "heliport", + "name": "Ocean Tower Heliport", + "latitude_deg": "35.159123", + "longitude_deg": "129.153629", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Ocean Tower" + }, + { + "id": "327104", + "ident": "KR-0330", + "type": "heliport", + "name": "Haeundae Grand Hotel Heliport", + "latitude_deg": "35.159047", + "longitude_deg": "129.155416", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Haeundae Grand Hotel" + }, + { + "id": "338507", + "ident": "KR-0331", + "type": "small_airport", + "name": "Gyeryongdae Emergency Airfield", + "latitude_deg": "36.31421", + "longitude_deg": "127.2343", + "elevation_ft": "459", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Gyeryong", + "scheduled_service": "no" + }, + { + "id": "327106", + "ident": "KR-0332", + "type": "heliport", + "name": "Hanyang Water Marine Council Heliport", + "latitude_deg": "35.161157", + "longitude_deg": "129.155978", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Hanyang Water Marine Council" + }, + { + "id": "327117", + "ident": "KR-0333", + "type": "heliport", + "name": "Seacloud Hotel Heliport", + "latitude_deg": "35.160922", + "longitude_deg": "129.161719", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Haeundae (Busan)", + "scheduled_service": "no", + "keywords": "Seacloud Hotel, Hotel Seacloud" + }, + { + "id": "327118", + "ident": "KR-0334", + "type": "heliport", + "name": "Novotel Ambassador Hotel Heliport", + "latitude_deg": "35.160197", + "longitude_deg": "129.162864", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Haeundae (Busan)", + "scheduled_service": "no", + "keywords": "Novotel Ambassador Hotel" + }, + { + "id": "327119", + "ident": "KR-0335", + "type": "heliport", + "name": "Paradise Hotel Busan Heliport", + "latitude_deg": "35.160422", + "longitude_deg": "129.165334", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Haeundae (Busan)", + "scheduled_service": "no", + "keywords": "Paradise Hotel Busan" + }, + { + "id": "327120", + "ident": "KR-0336", + "type": "heliport", + "name": "Pale de Cz Hotel Heliports", + "latitude_deg": "35.160288", + "longitude_deg": "129.166938", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Haeundae (Busan)", + "scheduled_service": "no", + "keywords": "Pale de Cz Hotel" + }, + { + "id": "327121", + "ident": "KR-0337", + "type": "heliport", + "name": "Ciel de Mer Hotel Heliports", + "latitude_deg": "35.161249", + "longitude_deg": "129.166764", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Haeundae (Busan)", + "scheduled_service": "no", + "keywords": "Ciel de Mer Hotel" + }, + { + "id": "327127", + "ident": "KR-0338", + "type": "heliport", + "name": "Haeundae Jugong Apartments Heliports", + "latitude_deg": "35.160736", + "longitude_deg": "129.178877", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Haeundae (Busan)", + "scheduled_service": "no", + "keywords": "Haeundae Jugong Apartments" + }, + { + "id": "327130", + "ident": "KR-0339", + "type": "heliport", + "name": "Haeundae Hillstate We’ve Apartments Heliports", + "latitude_deg": "35.164121", + "longitude_deg": "129.182146", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Haeundae (Busan)", + "scheduled_service": "no", + "keywords": "Haeundae Hillstate We’ve Apartments" + }, + { + "id": "327135", + "ident": "KR-0340", + "type": "heliport", + "name": "Haeundae Doosan We’ve Centrum Apartments Heliport", + "latitude_deg": "35.168167", + "longitude_deg": "129.176299", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Haeundae (Busan)", + "scheduled_service": "no", + "keywords": "Haeundae Doosan We’ve Centrum Apartments" + }, + { + "id": "327137", + "ident": "KR-0341", + "type": "heliport", + "name": "Citadines Apartments-Motel Heliport", + "latitude_deg": "35.163638", + "longitude_deg": "129.158212", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Haeundae (Busan)", + "scheduled_service": "no", + "keywords": "Citadines Apartments-Motel" + }, + { + "id": "327138", + "ident": "KR-0342", + "type": "heliport", + "name": "Haeundae Centrum Hotel Heliport", + "latitude_deg": "35.168229", + "longitude_deg": "129.132489", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Haeundae (Busan)", + "scheduled_service": "no", + "keywords": "Haeundae Centrum Hotel" + }, + { + "id": "327140", + "ident": "KR-0343", + "type": "heliport", + "name": "Trump World Centrum Apartments Heliports", + "latitude_deg": "35.167055", + "longitude_deg": "129.133537", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Haeundae (Busan)", + "scheduled_service": "no", + "keywords": "Trump World Centrum Apartments" + }, + { + "id": "327141", + "ident": "KR-0344", + "type": "heliport", + "name": "Centrum Leaders Mark Apartments Heliport", + "latitude_deg": "35.166626", + "longitude_deg": "129.132172", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Haeundae (Busan)", + "scheduled_service": "no", + "keywords": "Centrum Leaders Mark Apartments" + }, + { + "id": "327142", + "ident": "KR-0345", + "type": "heliport", + "name": "World Business Center (WBC) The Palace Heliports", + "latitude_deg": "35.166292", + "longitude_deg": "129.131391", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Haeundae (Busan)", + "scheduled_service": "no", + "keywords": "World Business Center (WBC) The Palace" + }, + { + "id": "327144", + "ident": "KR-0346", + "type": "heliport", + "name": "Haeundae Exordium Apartments Heliports", + "latitude_deg": "35.163258", + "longitude_deg": "129.137488", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Haeundae (Busan)", + "scheduled_service": "no", + "keywords": "Haeundae Exordium Apartments" + }, + { + "id": "327146", + "ident": "KR-0347", + "type": "heliport", + "name": "Lotte Gallerium Centrum Heliports", + "latitude_deg": "35.167895", + "longitude_deg": "129.131045", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Haeundae (Busan)", + "scheduled_service": "no", + "keywords": "Lotte Gallerium Centrum" + }, + { + "id": "327148", + "ident": "KR-0348", + "type": "heliport", + "name": "Trump World Centrum City Heliports", + "latitude_deg": "35.17093", + "longitude_deg": "129.131756", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Haeundae (Busan)", + "scheduled_service": "no", + "keywords": "Trump World Centrum City" + }, + { + "id": "327149", + "ident": "KR-0349", + "type": "heliport", + "name": "Green Centrum in Hanhwa Dream Heliports", + "latitude_deg": "35.172223", + "longitude_deg": "129.132488", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Haeundae (Busan)", + "scheduled_service": "no", + "keywords": "Green Centrum in Hanhwa Dream" + }, + { + "id": "327152", + "ident": "KR-0350", + "type": "heliport", + "name": "KNN Media Center Heliports", + "latitude_deg": "35.1726", + "longitude_deg": "129.128328", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "KNN Media Center" + }, + { + "id": "327153", + "ident": "KR-0351", + "type": "heliport", + "name": "Ace High Tech 21 Heliport", + "latitude_deg": "35.17339", + "longitude_deg": "129.129766", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Ace High Tech 21" + }, + { + "id": "327154", + "ident": "KR-0352", + "type": "heliport", + "name": "Centum Green Tower Apartments Heliport", + "latitude_deg": "35.174591", + "longitude_deg": "129.126668", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Centum Green Tower Apartments" + }, + { + "id": "327155", + "ident": "KR-0353", + "type": "heliport", + "name": "Kang Lim CSP Heliport", + "latitude_deg": "35.173817", + "longitude_deg": "129.12585", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Kang Lim CSP" + }, + { + "id": "327156", + "ident": "KR-0354", + "type": "heliport", + "name": "Cube E Centum Realty Heliport", + "latitude_deg": "35.175498", + "longitude_deg": "129.125988", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Cube E Centum Realty" + }, + { + "id": "327158", + "ident": "KR-0355", + "type": "heliport", + "name": "Pluq Inc. Heliport", + "latitude_deg": "35.175935", + "longitude_deg": "129.125935", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Pluq Inc." + }, + { + "id": "327159", + "ident": "KR-0356", + "type": "heliport", + "name": "Centum IS Heliport", + "latitude_deg": "35.176618", + "longitude_deg": "129.125116", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Centum IS" + }, + { + "id": "327160", + "ident": "KR-0357", + "type": "heliport", + "name": "Centum Star Heliport", + "latitude_deg": "35.177182", + "longitude_deg": "129.124342", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Centum Star" + }, + { + "id": "327161", + "ident": "KR-0358", + "type": "heliport", + "name": "Sharp Centum Star Apartments Heliports", + "latitude_deg": "35.17734", + "longitude_deg": "129.123546", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Sharp Centum Star Apartments" + }, + { + "id": "327162", + "ident": "KR-0359", + "type": "heliport", + "name": "Centum Park Apartments (1+2)", + "latitude_deg": "35.178509", + "longitude_deg": "129.121885", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Centum Park Apartments" + }, + { + "id": "327163", + "ident": "KR-0360", + "type": "heliport", + "name": "Lazzi Hotel Heliport", + "latitude_deg": "35.208943", + "longitude_deg": "128.999849", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Lazzi Hotel" + }, + { + "id": "327164", + "ident": "KR-0361", + "type": "heliport", + "name": "Lotte Busan Hotel Heliport", + "latitude_deg": "35.157495", + "longitude_deg": "129.056004", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Lotte Busan Hotel" + }, + { + "id": "327165", + "ident": "KR-0362", + "type": "heliport", + "name": "Lotte Busan Department Store Heliport", + "latitude_deg": "35.156651", + "longitude_deg": "129.056303", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Lotte Busan Department Store" + }, + { + "id": "327172", + "ident": "KR-0363", + "type": "heliport", + "name": "Sharp Central Star Apartments Heliports", + "latitude_deg": "35.15233", + "longitude_deg": "129.061522", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Sharp Central Star Apartments" + }, + { + "id": "327173", + "ident": "KR-0364", + "type": "heliport", + "name": "Sejong Grandia Apartments Heliports", + "latitude_deg": "35.152322", + "longitude_deg": "129.064494", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Sejong Grandia Apartments" + }, + { + "id": "327174", + "ident": "KR-0365", + "type": "heliport", + "name": "Halla Vivaldi Apartments Heliports", + "latitude_deg": "35.150933", + "longitude_deg": "129.066876", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Halla Vivaldi Apartments" + }, + { + "id": "327175", + "ident": "KR-0366", + "type": "heliport", + "name": "Semyeon Lotte Castle Sky Apartments Heliports", + "latitude_deg": "35.162551", + "longitude_deg": "129.06381", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Semyeon Lotte Castle Sky Apartments" + }, + { + "id": "327180", + "ident": "KR-0367", + "type": "heliport", + "name": "Daewon Cantabile Members Apartments Heliports", + "latitude_deg": "35.171583", + "longitude_deg": "129.068139", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Daewon Cantabile Members Apartments" + }, + { + "id": "327181", + "ident": "KR-0368", + "type": "heliport", + "name": "Busan Metroplitan City Hall Heliport", + "latitude_deg": "35.180552", + "longitude_deg": "129.075185", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Busan Metropolitan City Hall" + }, + { + "id": "327182", + "ident": "KR-0369", + "type": "heliport", + "name": "Busan Metrpolitan Police Agency Heliport", + "latitude_deg": "35.179195", + "longitude_deg": "129.074504", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Busan Metropolitan Agency" + }, + { + "id": "327183", + "ident": "KR-0370", + "type": "heliport", + "name": "Busan Metrpolitan Police Agency Heliport", + "latitude_deg": "35.179195", + "longitude_deg": "129.074504", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Busan Metropolitan Agency" + }, + { + "id": "327184", + "ident": "KR-0371", + "type": "heliport", + "name": "Busan Employment Center Heliport", + "latitude_deg": "35.178347", + "longitude_deg": "129.074786", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Busan Employment Center" + }, + { + "id": "327185", + "ident": "KR-0372", + "type": "heliport", + "name": "Korea Financial Investment Association Busan Branch Heliport", + "latitude_deg": "35.178108", + "longitude_deg": "129.075812", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Korea Financial Investment Association Busan Branch" + }, + { + "id": "327186", + "ident": "KR-0373", + "type": "heliport", + "name": "Lotte Gallerium Heliport", + "latitude_deg": "35.176248", + "longitude_deg": "129.073052", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Lotte Gallerium" + }, + { + "id": "327191", + "ident": "KR-0374", + "type": "heliport", + "name": "Excellent Yeonje Apartment Complex Heliport", + "latitude_deg": "35.181782", + "longitude_deg": "129.076811", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Excellent Yeonje Apartment" + }, + { + "id": "327194", + "ident": "KR-0375", + "type": "heliport", + "name": "Kookje Daily News (Kookje Shinmum) Headquarters Heliport", + "latitude_deg": "35.196361", + "longitude_deg": "129.079238", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Kookje Daily News, Kookje Shinmun" + }, + { + "id": "327196", + "ident": "KR-0376", + "type": "heliport", + "name": "Xinhua Tower Apartments Heliport", + "latitude_deg": "35.214563", + "longitude_deg": "129.07956", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Xinhua Tower Apartments" + }, + { + "id": "327199", + "ident": "KR-0377", + "type": "heliport", + "name": "Busan Astar Apartments Heliport", + "latitude_deg": "35.217413", + "longitude_deg": "129.082427", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Busan Astar Apartments" + }, + { + "id": "327200", + "ident": "KR-0378", + "type": "heliport", + "name": "Hotel Oz Heliports", + "latitude_deg": "35.217893", + "longitude_deg": "129.082886", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Hotel Oz" + }, + { + "id": "327201", + "ident": "KR-0379", + "type": "heliport", + "name": "Hanil Ordew Heliport", + "latitude_deg": "35.155436", + "longitude_deg": "129.146379", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Hanil Ordew" + }, + { + "id": "327202", + "ident": "KR-0380", + "type": "heliport", + "name": "Cooperative Skyline 80 Apartments Heliport", + "latitude_deg": "35.218346", + "longitude_deg": "129.083287", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Cooperative Skyline 80 Apartments" + }, + { + "id": "327203", + "ident": "KR-0381", + "type": "heliport", + "name": "SK Hub Olive Apartments Heliport", + "latitude_deg": "35.219112", + "longitude_deg": "129.084137", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "SK Hub Olive Apartment" + }, + { + "id": "327204", + "ident": "KR-0382", + "type": "heliport", + "name": "Le Meilleur Dongra Town Apartments Heliport", + "latitude_deg": "35.221217", + "longitude_deg": "129.083378", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Le Meilleur Dongra Town Apartment" + }, + { + "id": "327205", + "ident": "KR-0383", + "type": "heliport", + "name": "SK Hub Sky Apartments Heliports", + "latitude_deg": "35.221557", + "longitude_deg": "129.084983", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "SK Hub Sky Apartment" + }, + { + "id": "327209", + "ident": "KR-0384", + "type": "heliport", + "name": "Woridul Spine Hospital", + "latitude_deg": "35.222249", + "longitude_deg": "129.085407", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Woridul Spine Hospital" + }, + { + "id": "327210", + "ident": "KR-0385", + "type": "heliport", + "name": "Bugok-dong Prugio Apartments Heliports", + "latitude_deg": "35.230142", + "longitude_deg": "129.090042", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Bugok-dong Prugio Apartment" + }, + { + "id": "327211", + "ident": "KR-0386", + "type": "heliport", + "name": "Songjeong-ri Heliport", + "latitude_deg": "35.298031", + "longitude_deg": "129.136962", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Songjeong", + "scheduled_service": "no", + "keywords": "Songjeong" + }, + { + "id": "327212", + "ident": "KR-0387", + "type": "heliport", + "name": "Sirang-ri Helipad", + "latitude_deg": "35.194775", + "longitude_deg": "129.222782", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Sirang-ri", + "scheduled_service": "no", + "keywords": "Sirang-ri" + }, + { + "id": "327213", + "ident": "KR-0388", + "type": "heliport", + "name": "Nakammin Hanil U & I Apartment Complex Heliports", + "latitude_deg": "35.19587", + "longitude_deg": "129.092389", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Nakammin Hanil U & I Apartment" + }, + { + "id": "327214", + "ident": "KR-0389", + "type": "heliport", + "name": "Bando Bora Skyview Apartments Heliports", + "latitude_deg": "35.204784", + "longitude_deg": "129.069022", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Bando Bora Skyview Apartment" + }, + { + "id": "327215", + "ident": "KR-0390", + "type": "heliport", + "name": "Yeonji Samick Apartments Heliports", + "latitude_deg": "35.168568", + "longitude_deg": "129.049943", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Yeonji Samick Apartment" + }, + { + "id": "327221", + "ident": "KR-0391", + "type": "heliport", + "name": "Sajik Sports Complex Auxiliary Stadium Heliport", + "latitude_deg": "35.188589", + "longitude_deg": "129.054833", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Sajik Sports Complex Auxiliary Stadium" + }, + { + "id": "327222", + "ident": "KR-0392", + "type": "heliport", + "name": "Woodmark Condominiums Heliports", + "latitude_deg": "35.191759", + "longitude_deg": "129.065388", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Woodmark Condominium" + }, + { + "id": "327223", + "ident": "KR-0393", + "type": "heliport", + "name": "Lotte Castle Apartments Heliports", + "latitude_deg": "35.191912", + "longitude_deg": "129.068893", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Lotte Castle Apartment" + }, + { + "id": "327225", + "ident": "KR-0394", + "type": "heliport", + "name": "Busan Myeongnyun IPark Heliports", + "latitude_deg": "35.216309", + "longitude_deg": "129.08971", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Busan Myeongnyun IPark" + }, + { + "id": "327226", + "ident": "KR-0395", + "type": "heliport", + "name": "Geumjeong Fire Station Heliport", + "latitude_deg": "35.244136", + "longitude_deg": "129.092671", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Geumjeong Fire Station" + }, + { + "id": "327227", + "ident": "KR-0396", + "type": "heliport", + "name": "Busan Pier 8 Heliport", + "latitude_deg": "35.118159", + "longitude_deg": "129.070218", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Busan Pier 8" + }, + { + "id": "327228", + "ident": "KR-0397", + "type": "heliport", + "name": "Dongwon Royal Duke Vista Apartments Heliports", + "latitude_deg": "35.121699", + "longitude_deg": "129.044671", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Dongwon Royal Duke Vista Apartment" + }, + { + "id": "327229", + "ident": "KR-0398", + "type": "heliport", + "name": "Hanjin SM Co. Ltd Heliport", + "latitude_deg": "35.109744", + "longitude_deg": "129.039016", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Hanjin SM Co. Ltd" + }, + { + "id": "327230", + "ident": "KR-0399", + "type": "heliport", + "name": "Busan Hotel Heliport", + "latitude_deg": "35.100358", + "longitude_deg": "129.034628", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Busan Hotel" + }, + { + "id": "327231", + "ident": "KR-0400", + "type": "heliport", + "name": "Joong Ang Computer Mall Heliport", + "latitude_deg": "35.100063", + "longitude_deg": "129.03709", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Joong Ang Computer Mall" + }, + { + "id": "327241", + "ident": "KR-0401", + "type": "heliport", + "name": "Monte Bong-rae Heliport", + "latitude_deg": "35.086256", + "longitude_deg": "129.053962", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan (Yeoung-do)", + "scheduled_service": "no", + "keywords": "Monte Bong-rae, Yeoung-do" + }, + { + "id": "327242", + "ident": "KR-0402", + "type": "heliport", + "name": "Dongsam 1(il)-dong Heliport", + "latitude_deg": "35.063861", + "longitude_deg": "129.066769", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan (Yeoung-do)", + "scheduled_service": "no", + "keywords": "Dongsam 1(il)-dong" + }, + { + "id": "327243", + "ident": "KR-0403", + "type": "heliport", + "name": "53rd ROK Army Division 125th Regiment Heliport", + "latitude_deg": "35.063286", + "longitude_deg": "129.079061", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan (Yeoung-do)", + "scheduled_service": "no", + "keywords": "53rd ROK Army Division, 125th Regiment" + }, + { + "id": "327246", + "ident": "KR-0404", + "type": "heliport", + "name": "Korea Maritime & Ocean University Heliport", + "latitude_deg": "35.07411", + "longitude_deg": "129.086815", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan (Yeoung-do)", + "scheduled_service": "no", + "keywords": "Korea Maritime and Ocean University" + }, + { + "id": "327248", + "ident": "KR-0405", + "type": "heliport", + "name": "Busan Coast Guard Base Heliport", + "latitude_deg": "35.081868", + "longitude_deg": "129.078442", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan (Yeoung-do)", + "scheduled_service": "no", + "keywords": "Busan Coast Guard Base" + }, + { + "id": "327251", + "ident": "KR-0406", + "type": "heliport", + "name": "Buam 3(sam)-dong East Heliport", + "latitude_deg": "35.182463", + "longitude_deg": "129.024922", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Buam 3(sam)-dong" + }, + { + "id": "327253", + "ident": "KR-0407", + "type": "heliport", + "name": "Buam 3(sam)-dong West Heliport", + "latitude_deg": "35.180032", + "longitude_deg": "129.019725", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Buam 3(sam)-dong" + }, + { + "id": "327256", + "ident": "KR-0408", + "type": "heliport", + "name": "Sanghaksan Heliport", + "latitude_deg": "35.229931", + "longitude_deg": "129.050516", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Sanghaksan" + }, + { + "id": "327258", + "ident": "KR-0409", + "type": "heliport", + "name": "Yangsan Service Area Helipad", + "latitude_deg": "35.323956", + "longitude_deg": "129.055358", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Yangsan", + "scheduled_service": "no", + "keywords": "Yangsan Service Area" + }, + { + "id": "327261", + "ident": "KR-0410", + "type": "heliport", + "name": "Tae-king Heliport", + "latitude_deg": "35.07829", + "longitude_deg": "129.005131", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Tae-king" + }, + { + "id": "327262", + "ident": "KR-0411", + "type": "heliport", + "name": "Goejeong 1(il)-dong Heliport", + "latitude_deg": "35.092053", + "longitude_deg": "128.986489", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Goejeong 1(il)-dong" + }, + { + "id": "327264", + "ident": "KR-0412", + "type": "heliport", + "name": "Busan Dadae Jugong 2 Apartment Complex Heliports", + "latitude_deg": "35.065044", + "longitude_deg": "128.982418", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Busan Dadae Jugong 2 Apartment Complex" + }, + { + "id": "327265", + "ident": "KR-0413", + "type": "heliport", + "name": "Jangnim 1(il)-dong Heliport", + "latitude_deg": "35.065938", + "longitude_deg": "128.967283", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Jangnim 1(il)-dong" + }, + { + "id": "327266", + "ident": "KR-0414", + "type": "heliport", + "name": "Dangni-dong West Heliport", + "latitude_deg": "35.122151", + "longitude_deg": "128.985927", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Dangni-dong" + }, + { + "id": "327267", + "ident": "KR-0415", + "type": "heliport", + "name": "Dangni-dong East Heliport", + "latitude_deg": "35.123486", + "longitude_deg": "128.993705", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Dangni-dong" + }, + { + "id": "327268", + "ident": "KR-0416", + "type": "heliport", + "name": "Eomgwangsan Heliport", + "latitude_deg": "35.135157", + "longitude_deg": "129.016819", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Eomgwangsan" + }, + { + "id": "327269", + "ident": "KR-0417", + "type": "heliport", + "name": "Doosan We’ve Cummins New Town Apartments Heliports", + "latitude_deg": "35.131957", + "longitude_deg": "129.055018", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Doosan We’ve Cummins New Town Apartment" + }, + { + "id": "327270", + "ident": "KR-0418", + "type": "heliport", + "name": "Doosan We’ve Poseidon 2 Apartments Heliports", + "latitude_deg": "35.136607", + "longitude_deg": "129.064218", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Doosan We’ve Poseidon 2 Apartment" + }, + { + "id": "327271", + "ident": "KR-0419", + "type": "heliport", + "name": "Jinheung Majestry War Apartments Heliports", + "latitude_deg": "35.13793", + "longitude_deg": "129.065798", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Jinheung Majestry War Apartment" + }, + { + "id": "327272", + "ident": "KR-0420", + "type": "heliport", + "name": "Dong-il Building Heliport", + "latitude_deg": "35.139007", + "longitude_deg": "129.06337", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Dong-il" + }, + { + "id": "327273", + "ident": "KR-0421", + "type": "heliport", + "name": "Korea Telecommunications (KT) Heliport", + "latitude_deg": "35.137972", + "longitude_deg": "129.06271", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Korea Telecommunications, KT" + }, + { + "id": "327274", + "ident": "KR-0422", + "type": "heliport", + "name": "Samil Heliport", + "latitude_deg": "35.136837", + "longitude_deg": "129.067005", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Samil" + }, + { + "id": "327275", + "ident": "KR-0423", + "type": "heliport", + "name": "Sejong Grandia Apartments Heliports", + "latitude_deg": "35.136614", + "longitude_deg": "129.069185", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan (Munhyeon-dong)", + "scheduled_service": "no", + "keywords": "Sejong Grandia, Munhyeon-dong" + }, + { + "id": "327288", + "ident": "KR-0424", + "type": "heliport", + "name": "Samsan Lovech Apartments Heliport", + "latitude_deg": "35.136721", + "longitude_deg": "129.069716", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Samsan Lovech Apartment" + }, + { + "id": "327290", + "ident": "KR-0425", + "type": "heliport", + "name": "Samsung Convention Hill Apartments Heliports", + "latitude_deg": "35.13916", + "longitude_deg": "129.068386", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Samsung Convention Hill Apartment" + }, + { + "id": "327292", + "ident": "KR-0426", + "type": "heliport", + "name": "Bumil Station Irum Apartments Heliport", + "latitude_deg": "35.144523", + "longitude_deg": "129.061007", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Bumil Station Irum Apartment" + }, + { + "id": "327299", + "ident": "KR-0427", + "type": "heliport", + "name": "Vervill 2 Apartments Heliports", + "latitude_deg": "35.145293", + "longitude_deg": "129.058515", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Vervill 2 Apartment" + }, + { + "id": "327300", + "ident": "KR-0428", + "type": "heliport", + "name": "Brahmin LH Apartments Heliports", + "latitude_deg": "35.14787", + "longitude_deg": "129.055538", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Brahmin LH Apartment" + }, + { + "id": "327301", + "ident": "KR-0429", + "type": "heliport", + "name": "Busan International Finance Center (BIFC) Heliport", + "latitude_deg": "35.148385", + "longitude_deg": "129.066173", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Busan International Finance Center, BIFC" + }, + { + "id": "327302", + "ident": "KR-0430", + "type": "heliport", + "name": "Seung In Nobil Apartments Heliport", + "latitude_deg": "35.14869", + "longitude_deg": "129.060916", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Seung In Nobil Apartment" + }, + { + "id": "327303", + "ident": "KR-0431", + "type": "heliport", + "name": "Busan Transportation Corporation Heliport", + "latitude_deg": "35.150091", + "longitude_deg": "129.059948", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Busan Transportation Corporation" + }, + { + "id": "327304", + "ident": "KR-0432", + "type": "heliport", + "name": "Samsung Finance Plaza Heliport", + "latitude_deg": "35.150154", + "longitude_deg": "129.05902", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Samsung Finance Plaza" + }, + { + "id": "327305", + "ident": "KR-0433", + "type": "heliport", + "name": "Dynamic Guesthouse Heliports", + "latitude_deg": "35.149993", + "longitude_deg": "129.057888", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Dynamic Guesthouse" + }, + { + "id": "327306", + "ident": "KR-0434", + "type": "heliport", + "name": "Vertavill Apartments Heliport", + "latitude_deg": "35.154265", + "longitude_deg": "129.055645", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Vertavill Apartments" + }, + { + "id": "327307", + "ident": "KR-0435", + "type": "heliport", + "name": "Zen Backpackers Hotel Heliport", + "latitude_deg": "35.154438", + "longitude_deg": "129.053873", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Zen Backpackers Hotel" + }, + { + "id": "327308", + "ident": "KR-0436", + "type": "heliport", + "name": "Hansol Polaris Hotel Heliport", + "latitude_deg": "35.157448", + "longitude_deg": "129.05408", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Hansol Polaris Hotel" + }, + { + "id": "327309", + "ident": "KR-0437", + "type": "heliport", + "name": "You One Golden Tower Heliport", + "latitude_deg": "35.159706", + "longitude_deg": "129.05571", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "You One Golden Tower" + }, + { + "id": "327310", + "ident": "KR-0438", + "type": "heliport", + "name": "Semyeon Dongmun Goodmorning Hill Apartment Complex Heliports", + "latitude_deg": "35.162093", + "longitude_deg": "129.053341", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Semyeon Dongmun Goodmorning Hill Apartment" + }, + { + "id": "327311", + "ident": "KR-0439", + "type": "heliport", + "name": "Semyeon Sweet Dot Home Park Apartment Complex Heliports", + "latitude_deg": "35.161742", + "longitude_deg": "129.051453", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Semyeon Sweet Dot Home Park Apartment" + }, + { + "id": "327312", + "ident": "KR-0440", + "type": "heliport", + "name": "Busanjin-gu Office Heliport", + "latitude_deg": "35.163143", + "longitude_deg": "129.053268", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Busanjin-gu Office" + }, + { + "id": "327316", + "ident": "KR-0441", + "type": "heliport", + "name": "Semyeon Sweet Dot Home Sky Apartment Complex Heliports", + "latitude_deg": "35.163569", + "longitude_deg": "129.050876", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Semyeon Sweet Dot Home Sky Apartment" + }, + { + "id": "327317", + "ident": "KR-0442", + "type": "heliport", + "name": "Santeview Apartments Heliport", + "latitude_deg": "35.15401", + "longitude_deg": "129.024549", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Santeview Apartment" + }, + { + "id": "327318", + "ident": "KR-0443", + "type": "heliport", + "name": "Gaya Dongwon Royal Duke Apartment Complex Heliport", + "latitude_deg": "35.154374", + "longitude_deg": "129.030394", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Gaya Dongwon Royal Duke Apartment" + }, + { + "id": "327319", + "ident": "KR-0444", + "type": "heliport", + "name": "Seomyeon e-Pyeonhansesang Apartment Complex Heliports", + "latitude_deg": "35.156556", + "longitude_deg": "129.049305", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Seomyeon e-Pyeonhansesang Apartment" + }, + { + "id": "327320", + "ident": "KR-0445", + "type": "heliport", + "name": "Ministry of Food & Drug Safety Busan Office Heliport", + "latitude_deg": "35.142051", + "longitude_deg": "129.061316", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Ministry of Food & Drug Safety Busan Office" + }, + { + "id": "327321", + "ident": "KR-0446", + "type": "heliport", + "name": "Good Samsun Hospital Heliport", + "latitude_deg": "35.150715", + "longitude_deg": "129.008329", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Good Samsun Hospital" + }, + { + "id": "327328", + "ident": "KR-0447", + "type": "heliport", + "name": "Danggam-dong Heliport", + "latitude_deg": "35.165085", + "longitude_deg": "129.016248", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Danggam-dong" + }, + { + "id": "327329", + "ident": "KR-0448", + "type": "heliport", + "name": "Crown Harbor Hotel Heliport", + "latitude_deg": "35.107823", + "longitude_deg": "129.036954", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Crown Harbor Hotel" + }, + { + "id": "327330", + "ident": "KR-0449", + "type": "heliport", + "name": "Southern Central Care Hospital Heliport", + "latitude_deg": "35.092809", + "longitude_deg": "129.024559", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Southern Central Care Hospital" + }, + { + "id": "327331", + "ident": "KR-0450", + "type": "heliport", + "name": "Songdo Topsville Apartments Heliport", + "latitude_deg": "35.078205", + "longitude_deg": "129.01866", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Songdo Topsville Apartment" + }, + { + "id": "327332", + "ident": "KR-0451", + "type": "heliport", + "name": "Amnangongwon-ro Heliport", + "latitude_deg": "35.065533", + "longitude_deg": "129.017353", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Amnangongwon-ro" + }, + { + "id": "327333", + "ident": "KR-0452", + "type": "heliport", + "name": "Tusong Bando Heliport", + "latitude_deg": "35.046076", + "longitude_deg": "128.996375", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Tusong Bando" + }, + { + "id": "327334", + "ident": "KR-0453", + "type": "heliport", + "name": "Dadae-dong Heliport", + "latitude_deg": "35.061131", + "longitude_deg": "128.988704", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Dadae-dong" + }, + { + "id": "327338", + "ident": "KR-0454", + "type": "heliport", + "name": "Mol-Udae Heliport", + "latitude_deg": "35.039737", + "longitude_deg": "128.969217", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Mol-Udae" + }, + { + "id": "327339", + "ident": "KR-0455", + "type": "heliport", + "name": "Dayeong-dong Prjio Apartments Heliports", + "latitude_deg": "35.139123", + "longitude_deg": "129.102123", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Dayeong-dong Prjio Apartment" + }, + { + "id": "327340", + "ident": "KR-0456", + "type": "heliport", + "name": "21 Century City Building Heliport", + "latitude_deg": "35.137403", + "longitude_deg": "129.100522", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "21 Century City Building" + }, + { + "id": "327342", + "ident": "KR-0457", + "type": "heliport", + "name": "Axel Towers Apartments Heliports", + "latitude_deg": "35.139934", + "longitude_deg": "129.106092", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Axel Towers Apartment" + }, + { + "id": "327343", + "ident": "KR-0458", + "type": "heliport", + "name": "Hwangnyeong Mountain View Heliport", + "latitude_deg": "35.157969", + "longitude_deg": "129.082588", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Hwangnyeong Mountain View" + }, + { + "id": "327344", + "ident": "KR-0459", + "type": "heliport", + "name": "Axel Towers Apartments Heliports", + "latitude_deg": "35.139934", + "longitude_deg": "129.106092", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Axel Towers Apartment" + }, + { + "id": "327359", + "ident": "KR-0460", + "type": "heliport", + "name": "GS Heights Xi Apartments Heliports", + "latitude_deg": "35.13306", + "longitude_deg": "129.110859", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "GS Heights Xi Apartment" + }, + { + "id": "327360", + "ident": "KR-0461", + "type": "heliport", + "name": "Yongho-dong Heliport", + "latitude_deg": "35.125092", + "longitude_deg": "129.121018", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Yongho-dong" + }, + { + "id": "327361", + "ident": "KR-0462", + "type": "heliport", + "name": "Hanjin Family Town Apartments Heliport", + "latitude_deg": "35.112994", + "longitude_deg": "129.107679", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Hanjin Family Town Apartment" + }, + { + "id": "327362", + "ident": "KR-0463", + "type": "heliport", + "name": "Igidae Coastal Walk Heliport", + "latitude_deg": "35.117206", + "longitude_deg": "129.121818", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Igidae Coastal Walk" + }, + { + "id": "327375", + "ident": "KR-0464", + "type": "heliport", + "name": "Oryukdo SK Apartments Heliports", + "latitude_deg": "35.10239", + "longitude_deg": "129.117819", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Oryukdo SK Apartment" + }, + { + "id": "327376", + "ident": "KR-0465", + "type": "heliport", + "name": "Busan National University Hospital Heliports", + "latitude_deg": "35.10094", + "longitude_deg": "129.017926", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Busan National University Hospital Heliports" + }, + { + "id": "327377", + "ident": "KR-0466", + "type": "heliport", + "name": "Youngdong Beach Tower Apartments Heliports", + "latitude_deg": "35.056227", + "longitude_deg": "128.971931", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Youngdong Beach Tower Apartment" + }, + { + "id": "327378", + "ident": "KR-0467", + "type": "heliport", + "name": "Kyungpook National University Hospital Heliport", + "latitude_deg": "35.866256", + "longitude_deg": "128.603744", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "municipality": "Daegu", + "scheduled_service": "no", + "keywords": "Kyungpook National University Hospital" + }, + { + "id": "327379", + "ident": "KR-0468", + "type": "heliport", + "name": "Centro Palace Apartments Heliports", + "latitude_deg": "35.86162", + "longitude_deg": "128.600912", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "municipality": "Daegu", + "scheduled_service": "no", + "keywords": "Centro Palace Apartments Heliports" + }, + { + "id": "327380", + "ident": "KR-0469", + "type": "heliport", + "name": "SK Hub Sky Apartments Heliport", + "latitude_deg": "35.861957", + "longitude_deg": "128.592097", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "municipality": "Daegu", + "scheduled_service": "no", + "keywords": "SK Hub Sky Apartments Heliport" + }, + { + "id": "327381", + "ident": "KR-0470", + "type": "heliport", + "name": "Samjeong Green Core Apartments Heliports", + "latitude_deg": "35.863078", + "longitude_deg": "128.591637", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "municipality": "Daegu", + "scheduled_service": "no", + "keywords": "Samjeong Green Core Apartment" + }, + { + "id": "327382", + "ident": "KR-0471", + "type": "heliport", + "name": "Samsung Life Building Heliport", + "latitude_deg": "35.865989", + "longitude_deg": "128.592325", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "municipality": "Daegu", + "scheduled_service": "no", + "keywords": "Samsung Life Building" + }, + { + "id": "327383", + "ident": "KR-0472", + "type": "heliport", + "name": "Alianz Tower Building Heliport", + "latitude_deg": "35.865613", + "longitude_deg": "128.588241", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "municipality": "Daegu", + "scheduled_service": "no", + "keywords": "Alianz Tower Building" + }, + { + "id": "327384", + "ident": "KR-0473", + "type": "heliport", + "name": "Shinseong Miso City Apartments Heliports", + "latitude_deg": "35.866767", + "longitude_deg": "128.588228", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "municipality": "Daegu", + "scheduled_service": "no", + "keywords": "Shinseong Miso City Apartment" + }, + { + "id": "327385", + "ident": "KR-0474", + "type": "heliport", + "name": "Suseong Kolon Hanulche Apartments Heliports", + "latitude_deg": "35.855368", + "longitude_deg": "128.617625", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "municipality": "Daegu", + "scheduled_service": "no", + "keywords": "Suseong Kolon Hanulche Apartment" + }, + { + "id": "327389", + "ident": "KR-0475", + "type": "heliport", + "name": "LIG Daegu Heliport", + "latitude_deg": "35.859619", + "longitude_deg": "128.62445", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "municipality": "Daegu", + "scheduled_service": "no", + "keywords": "LIG Daegu" + }, + { + "id": "327390", + "ident": "KR-0476", + "type": "heliport", + "name": "Mercury Brownstone Apartments Heliport", + "latitude_deg": "35.859929", + "longitude_deg": "128.626599", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "municipality": "Daegu", + "scheduled_service": "no", + "keywords": "Mercury Brownstone Apartment" + }, + { + "id": "327391", + "ident": "KR-0477", + "type": "heliport", + "name": "Park Regency Hotel Heliport", + "latitude_deg": "35.860222", + "longitude_deg": "128.625107", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "municipality": "Daegu", + "scheduled_service": "no", + "keywords": "Park Regency Hotel" + }, + { + "id": "327392", + "ident": "KR-0478", + "type": "heliport", + "name": "MBC Cinema New Building Heliport", + "latitude_deg": "35.86604", + "longitude_deg": "128.628378", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "municipality": "Daegu", + "scheduled_service": "no", + "keywords": "MBC Cinema New Building" + }, + { + "id": "327393", + "ident": "KR-0479", + "type": "heliport", + "name": "Hyundai Hypherion Apartments Heliport", + "latitude_deg": "35.867459", + "longitude_deg": "128.62496", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "municipality": "Daegu", + "scheduled_service": "no", + "keywords": "Hyundai Hypherion Apartment" + }, + { + "id": "327395", + "ident": "KR-0480", + "type": "heliport", + "name": "Hwaeseong Forest Park Dream Apartments Heliports", + "latitude_deg": "35.863691", + "longitude_deg": "128.627235", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "municipality": "Daegu", + "scheduled_service": "no", + "keywords": "Hwaeseong Forest Park Dream Apartment" + }, + { + "id": "327396", + "ident": "KR-0481", + "type": "heliport", + "name": "Yeungnam University Hospital Heliport", + "latitude_deg": "35.847334", + "longitude_deg": "128.584741", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "municipality": "Daegu", + "scheduled_service": "no", + "keywords": "Yeungnam University Hospital" + }, + { + "id": "327397", + "ident": "KR-0482", + "type": "heliport", + "name": "Icheon-dong Heliport", + "latitude_deg": "35.856366", + "longitude_deg": "128.662609", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "municipality": "Daegu (Icheon-dong)", + "scheduled_service": "no", + "keywords": "Icheon-dong" + }, + { + "id": "327398", + "ident": "KR-0483", + "type": "heliport", + "name": "Dalsung VORTAC (TGU) Helipad", + "latitude_deg": "35.809106", + "longitude_deg": "128.589964", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "municipality": "Daegu (Apsansunhwan-ro)", + "scheduled_service": "no", + "keywords": "Dalsung VORTC (TGU)" + }, + { + "id": "327399", + "ident": "KR-0484", + "type": "heliport", + "name": "Geumobong Heliport", + "latitude_deg": "35.789764", + "longitude_deg": "129.224831", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Gyeongju", + "scheduled_service": "no", + "keywords": "Geumobong" + }, + { + "id": "327400", + "ident": "KR-0485", + "type": "heliport", + "name": "Eomul-dong HAWK SAM Site Heliport", + "latitude_deg": "35.561428", + "longitude_deg": "129.411426", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-31", + "municipality": "Ulsan (Eomul-dong)", + "scheduled_service": "no", + "keywords": "Eomul-dong HAWK SAM Site" + }, + { + "id": "327402", + "ident": "KR-0486", + "type": "heliport", + "name": "Hwabong-dong Radio Station Heliport", + "latitude_deg": "35.59224", + "longitude_deg": "129.399772", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-31", + "municipality": "Ulsan (Hwabong-dong)", + "scheduled_service": "no", + "keywords": "Hwabong-dong Radio Station" + }, + { + "id": "327403", + "ident": "KR-0487", + "type": "heliport", + "name": "Gunam-gun Army Base Heliport", + "latitude_deg": "35.588324", + "longitude_deg": "129.427684", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-31", + "municipality": "Ulsan (Gunam-gun)", + "scheduled_service": "no", + "keywords": "Gunam-gun Army Base" + }, + { + "id": "327404", + "ident": "KR-0488", + "type": "heliport", + "name": "Hyundai Heavy Industries Second Plant Heliport", + "latitude_deg": "35.481273", + "longitude_deg": "129.40441", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-31", + "municipality": "Ulsan", + "scheduled_service": "no", + "keywords": "Hyundai Heavy Industries Second Plant" + }, + { + "id": "327405", + "ident": "KR-0489", + "type": "heliport", + "name": "Hyundai Mipo Dockyard Onsan Heliport", + "latitude_deg": "35.431153", + "longitude_deg": "129.359997", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-31", + "municipality": "Onsan", + "scheduled_service": "no", + "keywords": "Hyundai Mipo Dockyard Onsan" + }, + { + "id": "327423", + "ident": "KR-0490", + "type": "heliport", + "name": "Busan Jangan West Rest Area Helipad", + "latitude_deg": "35.37815", + "longitude_deg": "129.246322", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Busan Jangan West Rest Area" + }, + { + "id": "327424", + "ident": "KR-0491", + "type": "heliport", + "name": "Busan Jangan East Rest Area Helipad", + "latitude_deg": "35.382347", + "longitude_deg": "129.248566", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Busan Jangan East Rest Area" + }, + { + "id": "327425", + "ident": "KR-0492", + "type": "heliport", + "name": "Yeongcheong Korea Army Academy Heliport", + "latitude_deg": "35.990489", + "longitude_deg": "128.99042", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-43", + "municipality": "Yeongcheon", + "scheduled_service": "no", + "keywords": "Yeongcheong Korea Army Academy" + }, + { + "id": "327434", + "ident": "KR-0493", + "type": "heliport", + "name": "Cheongbongsan Heliport", + "latitude_deg": "37.228686", + "longitude_deg": "129.28661", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Samcheok", + "scheduled_service": "no", + "keywords": "Cheongbongsan, 청봉산" + }, + { + "id": "327435", + "ident": "KR-0494", + "type": "heliport", + "name": "Gyogoki Heliport", + "latitude_deg": "37.358844", + "longitude_deg": "129.179476", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Samcheok", + "scheduled_service": "no", + "keywords": "Gyogoki, 교 고키" + }, + { + "id": "327436", + "ident": "KR-0495", + "type": "heliport", + "name": "Anhyeon-dong HAWK SAM Site Heliport", + "latitude_deg": "37.796566", + "longitude_deg": "128.868382", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Gangneung", + "scheduled_service": "no", + "keywords": "Anhyeon-dong HAWK SAM Site" + }, + { + "id": "327437", + "ident": "KR-0496", + "type": "heliport", + "name": "ROK Army 102nd Armor Brigade Ammunition Depot Heliport", + "latitude_deg": "38.130189", + "longitude_deg": "128.594233", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Yangyang", + "scheduled_service": "no", + "keywords": "ROK Army 102nd Armor Brigade" + }, + { + "id": "327438", + "ident": "KR-0497", + "type": "heliport", + "name": "Gwanmobang Heliport", + "latitude_deg": "38.111422", + "longitude_deg": "128.532144", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Yangyang", + "scheduled_service": "no", + "keywords": "Gwanmobang, 관모방" + }, + { + "id": "327439", + "ident": "KR-0498", + "type": "heliport", + "name": "Sanbok-ri Heliport", + "latitude_deg": "38.148727", + "longitude_deg": "128.53414", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Yangyang", + "scheduled_service": "no", + "keywords": "Sanbok-ri, 산복리" + }, + { + "id": "327440", + "ident": "KR-0499", + "type": "heliport", + "name": "Guseong-gil Heliport", + "latitude_deg": "38.324476", + "longitude_deg": "128.491474", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Goseong-gun", + "scheduled_service": "no", + "keywords": "Guseong-gil" + }, + { + "id": "327441", + "ident": "KR-0500", + "type": "heliport", + "name": "Banam-ri ROK Army Base Heliport", + "latitude_deg": "38.413741", + "longitude_deg": "128.46516", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Goseong-gun", + "scheduled_service": "no", + "keywords": "Banam-ri" + }, + { + "id": "327442", + "ident": "KR-0501", + "type": "heliport", + "name": "Goseong Heliport", + "latitude_deg": "38.586093", + "longitude_deg": "128.375963", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Goseong", + "scheduled_service": "no", + "keywords": "Goseong" + }, + { + "id": "327474", + "ident": "KR-0502", + "type": "heliport", + "name": "Masanbong Helipad", + "latitude_deg": "38.267919", + "longitude_deg": "128.399595", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Heul-ri", + "scheduled_service": "no", + "keywords": "Masanbong" + }, + { + "id": "327475", + "ident": "KR-0503", + "type": "heliport", + "name": "I-ri Helipad", + "latitude_deg": "38.078158", + "longitude_deg": "127.960785", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Yanggu-gun", + "scheduled_service": "no", + "keywords": "I-ri" + }, + { + "id": "327476", + "ident": "KR-0504", + "type": "heliport", + "name": "Cheonmi-ri South Heliport", + "latitude_deg": "38.247439", + "longitude_deg": "127.871211", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheonmi-ri", + "scheduled_service": "no", + "keywords": "Cheonmi-ri" + }, + { + "id": "327477", + "ident": "KR-0505", + "type": "heliport", + "name": "Cheonmi-ri South Heliport", + "latitude_deg": "38.247439", + "longitude_deg": "127.871211", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheonmi-ri", + "scheduled_service": "no", + "keywords": "Cheonmi-ri" + }, + { + "id": "327478", + "ident": "KR-0506", + "type": "heliport", + "name": "Cheonmi-ri South Heliport", + "latitude_deg": "38.247439", + "longitude_deg": "127.871211", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheonmi-ri", + "scheduled_service": "no", + "keywords": "Cheonmi-ri" + }, + { + "id": "327479", + "ident": "KR-0507", + "type": "heliport", + "name": "Cheonmi-ri South Heliport", + "latitude_deg": "38.247439", + "longitude_deg": "127.871211", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheonmi-ri", + "scheduled_service": "no", + "keywords": "Cheonmi-ri" + }, + { + "id": "327480", + "ident": "KR-0508", + "type": "heliport", + "name": "Cheonmi-ri South Heliport", + "latitude_deg": "38.247439", + "longitude_deg": "127.871211", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheonmi-ri", + "scheduled_service": "no", + "keywords": "Cheonmi-ri" + }, + { + "id": "327481", + "ident": "KR-0509", + "type": "heliport", + "name": "Cheonmi-ri South Heliport", + "latitude_deg": "38.247439", + "longitude_deg": "127.871211", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheonmi-ri", + "scheduled_service": "no", + "keywords": "Cheonmi-ri" + }, + { + "id": "327482", + "ident": "KR-0510", + "type": "heliport", + "name": "Cheonmi-ri South Heliport", + "latitude_deg": "38.247439", + "longitude_deg": "127.871211", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheonmi-ri", + "scheduled_service": "no", + "keywords": "Cheonmi-ri" + }, + { + "id": "327483", + "ident": "KR-0511", + "type": "heliport", + "name": "Cheonmi-ri South Heliport", + "latitude_deg": "38.247439", + "longitude_deg": "127.871211", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheonmi-ri", + "scheduled_service": "no", + "keywords": "Cheonmi-ri" + }, + { + "id": "327484", + "ident": "KR-0512", + "type": "heliport", + "name": "Cheonmi-ri South Heliport", + "latitude_deg": "38.247439", + "longitude_deg": "127.871211", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheonmi-ri", + "scheduled_service": "no", + "keywords": "Cheonmi-ri" + }, + { + "id": "327485", + "ident": "KR-0513", + "type": "heliport", + "name": "Cheonmi-ri South Heliport", + "latitude_deg": "38.247439", + "longitude_deg": "127.871211", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheonmi-ri", + "scheduled_service": "no", + "keywords": "Cheonmi-ri" + }, + { + "id": "327486", + "ident": "KR-0514", + "type": "heliport", + "name": "Cheonmi-ri South Heliport", + "latitude_deg": "38.247439", + "longitude_deg": "127.871211", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheonmi-ri", + "scheduled_service": "no", + "keywords": "Cheonmi-ri" + }, + { + "id": "327487", + "ident": "KR-0515", + "type": "heliport", + "name": "Cheonmi-ri South Heliport", + "latitude_deg": "38.247439", + "longitude_deg": "127.871211", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheonmi-ri", + "scheduled_service": "no", + "keywords": "Cheonmi-ri" + }, + { + "id": "327488", + "ident": "KR-0516", + "type": "heliport", + "name": "Cheonmi-ri South Heliport", + "latitude_deg": "38.247439", + "longitude_deg": "127.871211", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheonmi-ri", + "scheduled_service": "no", + "keywords": "Cheonmi-ri" + }, + { + "id": "327489", + "ident": "KR-0517", + "type": "heliport", + "name": "Cheonmi-ri South Heliport", + "latitude_deg": "38.247439", + "longitude_deg": "127.871211", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheonmi-ri", + "scheduled_service": "no", + "keywords": "Cheonmi-ri" + }, + { + "id": "327490", + "ident": "KR-0518", + "type": "heliport", + "name": "Cheonmi-ri South Heliport", + "latitude_deg": "38.247439", + "longitude_deg": "127.871211", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheonmi-ri", + "scheduled_service": "no", + "keywords": "Cheonmi-ri" + }, + { + "id": "327491", + "ident": "KR-0519", + "type": "heliport", + "name": "Cheonmi-ri South Heliport", + "latitude_deg": "38.247439", + "longitude_deg": "127.871211", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheonmi-ri", + "scheduled_service": "no", + "keywords": "Cheonmi-ri" + }, + { + "id": "327492", + "ident": "KR-0520", + "type": "heliport", + "name": "Gunryang-ri Heliport", + "latitude_deg": "38.171839", + "longitude_deg": "127.956168", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Gunryang-ri", + "scheduled_service": "no", + "keywords": "Gunryang-ri" + }, + { + "id": "327535", + "ident": "KR-0521", + "type": "heliport", + "name": "Jinhyeon-ri Helipad", + "latitude_deg": "38.287111", + "longitude_deg": "127.606233", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Jinhyeon-ri", + "scheduled_service": "no", + "keywords": "Jinhyeon-ri" + }, + { + "id": "327537", + "ident": "KR-0522", + "type": "heliport", + "name": "Sungam-gogae Heliport", + "latitude_deg": "38.287701", + "longitude_deg": "127.587622", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Jinhyeon-ri", + "scheduled_service": "no", + "keywords": "Sungam-gogae" + }, + { + "id": "327539", + "ident": "KR-0523", + "type": "heliport", + "name": "Amjeong-ri Artillery Base Heliport", + "latitude_deg": "38.287736", + "longitude_deg": "127.464988", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Amjeong-ri", + "scheduled_service": "no", + "keywords": "Amjeong-ri, 안정리" + }, + { + "id": "327540", + "ident": "KR-0524", + "type": "heliport", + "name": "Eupnae-ri Heliport", + "latitude_deg": "38.280319", + "longitude_deg": "127.429841", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Eupnae-ri", + "scheduled_service": "no", + "keywords": "Eupnae-ri, 읍내" + }, + { + "id": "327541", + "ident": "KR-0525", + "type": "heliport", + "name": "Haksa-ri Heliport", + "latitude_deg": "38.277543", + "longitude_deg": "127.404087", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Haksa-ri", + "scheduled_service": "no", + "keywords": "Haksa-ri, 학사리" + }, + { + "id": "327542", + "ident": "KR-0526", + "type": "heliport", + "name": "Cheongsin-ro Helipad", + "latitude_deg": "37.980518", + "longitude_deg": "127.075181", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Cheongsin-ro", + "scheduled_service": "no", + "keywords": "Cheongsin-ro, 청신로" + }, + { + "id": "327571", + "ident": "KR-0527", + "type": "heliport", + "name": "Goneung-ri South Helipad", + "latitude_deg": "38.003355", + "longitude_deg": "127.033918", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Goneung-ri", + "scheduled_service": "no", + "keywords": "Goneung-ri" + }, + { + "id": "327572", + "ident": "KR-0528", + "type": "heliport", + "name": "Goneung-ri North Helipad", + "latitude_deg": "38.005703", + "longitude_deg": "127.028476", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Goneung-ri", + "scheduled_service": "no", + "keywords": "Goneung-ri" + }, + { + "id": "327573", + "ident": "KR-0529", + "type": "heliport", + "name": "Sanjeong-ri Helipad", + "latitude_deg": "38.05856", + "longitude_deg": "127.306476", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Sanjeong-ri", + "scheduled_service": "no", + "keywords": "Sanjeong-ri" + }, + { + "id": "327574", + "ident": "KR-0530", + "type": "heliport", + "name": "Jangam-ri Heliport", + "latitude_deg": "38.041219", + "longitude_deg": "127.344241", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Jangam-ri", + "scheduled_service": "no", + "keywords": "Jangam-ri" + }, + { + "id": "327575", + "ident": "KR-0531", + "type": "heliport", + "name": "Gangpo-ri Helipad", + "latitude_deg": "38.122279", + "longitude_deg": "127.306467", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Gangpo-ri", + "scheduled_service": "no", + "keywords": "Gangpo-ri" + }, + { + "id": "327576", + "ident": "KR-0532", + "type": "heliport", + "name": "Sincheorueon-ri South Helipad", + "latitude_deg": "38.126683", + "longitude_deg": "127.307278", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Sincheorueon-ri", + "scheduled_service": "no", + "keywords": "Sincheorueon-ri" + }, + { + "id": "327578", + "ident": "KR-0533", + "type": "heliport", + "name": "Sincheorueon-ri North Helipad", + "latitude_deg": "38.130707", + "longitude_deg": "127.30907", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Sincheorueon-ri", + "scheduled_service": "no", + "keywords": "Sincheorueon-ri" + }, + { + "id": "327579", + "ident": "KR-0534", + "type": "heliport", + "name": "Yangji-ri Heliport", + "latitude_deg": "38.270298", + "longitude_deg": "127.276241", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Yangji-ri", + "scheduled_service": "no", + "keywords": "Yangji-ri" + }, + { + "id": "327592", + "ident": "KR-0535", + "type": "heliport", + "name": "Nightmare Range Heliport", + "latitude_deg": "38.071415", + "longitude_deg": "127.34894", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Jangam-ri", + "scheduled_service": "no", + "keywords": "Nightmare Range" + }, + { + "id": "327593", + "ident": "KR-0536", + "type": "heliport", + "name": "Habongam-dong Helipad", + "latitude_deg": "37.958458", + "longitude_deg": "127.066208", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Dongducheon", + "scheduled_service": "no", + "keywords": "Dongducheon, Habongam-dong" + }, + { + "id": "327594", + "ident": "KR-0537", + "type": "heliport", + "name": "Hill 754 Helipad", + "latitude_deg": "37.874088", + "longitude_deg": "127.129524", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Dongducheon", + "scheduled_service": "no", + "keywords": "Dongducheon, Tapdong-dong" + }, + { + "id": "327595", + "ident": "KR-0538", + "type": "heliport", + "name": "Gaekhyeon-ri Heliport", + "latitude_deg": "37.963991", + "longitude_deg": "126.968715", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Gaekhyeon-ri", + "scheduled_service": "no", + "keywords": "Gaekhyeon-ri" + }, + { + "id": "327596", + "ident": "KR-0539", + "type": "heliport", + "name": "Gaekhyeon-ri Helipad", + "latitude_deg": "37.949114", + "longitude_deg": "126.947613", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Gaekhyeon-ri", + "scheduled_service": "no", + "keywords": "Gaekhyeon-ri" + }, + { + "id": "327597", + "ident": "KR-0540", + "type": "heliport", + "name": "Castle Hill Heliport", + "latitude_deg": "37.964333", + "longitude_deg": "126.919483", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Gueup-ri", + "scheduled_service": "no", + "keywords": "Castle Hill, Gueup-ri" + }, + { + "id": "327598", + "ident": "KR-0541", + "type": "heliport", + "name": "Jikcheon-ri Helipad", + "latitude_deg": "37.895453", + "longitude_deg": "126.899699", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Jikcheon-ri", + "scheduled_service": "no", + "keywords": "Jikcheon-ri" + }, + { + "id": "327599", + "ident": "KR-0542", + "type": "heliport", + "name": "Camp Ethan Allen Hill 496 Helipad", + "latitude_deg": "37.910833", + "longitude_deg": "126.874016", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Neulno-ri", + "scheduled_service": "no", + "keywords": "Camp Ethan Allen, Hill 496, Neulno-ri" + }, + { + "id": "327600", + "ident": "KR-0543", + "type": "heliport", + "name": "Surihol-ro Heliport", + "latitude_deg": "37.918985", + "longitude_deg": "126.880725", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Surihol-ro", + "scheduled_service": "no", + "keywords": "Surihol-ro" + }, + { + "id": "327612", + "ident": "KR-0544", + "type": "heliport", + "name": "Ungdam-ri Heliport", + "latitude_deg": "37.903403", + "longitude_deg": "126.888505", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Ungdam-ri", + "scheduled_service": "no", + "keywords": "Ungdam-ri" + }, + { + "id": "327614", + "ident": "KR-0545", + "type": "heliport", + "name": "Man-wolbong Heliport", + "latitude_deg": "37.908633", + "longitude_deg": "126.915502", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Ungdam-ri", + "scheduled_service": "no", + "keywords": "Man-wolbong, Ungdam-ri" + }, + { + "id": "327615", + "ident": "KR-0546", + "type": "heliport", + "name": "Mugeon-ri Heliport", + "latitude_deg": "37.915037", + "longitude_deg": "126.915518", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Mugeon-ri", + "scheduled_service": "no", + "keywords": "Mugeon-ri" + }, + { + "id": "327616", + "ident": "KR-0547", + "type": "heliport", + "name": "Mugeon-ri Helipad", + "latitude_deg": "37.920831", + "longitude_deg": "126.907738", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Mugeon-ri", + "scheduled_service": "no", + "keywords": "Mugeon-ri" + }, + { + "id": "327618", + "ident": "KR-0548", + "type": "heliport", + "name": "Surihol-ro Helipad", + "latitude_deg": "37.936386", + "longitude_deg": "126.88931", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Surihol-ro", + "scheduled_service": "no", + "keywords": "Surihol-ro" + }, + { + "id": "327619", + "ident": "KR-0549", + "type": "heliport", + "name": "Deokcheon-ri Helipad", + "latitude_deg": "37.923901", + "longitude_deg": "126.87669", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Deokcheon-ri", + "scheduled_service": "no", + "keywords": "Deokcheon-ri" + }, + { + "id": "327620", + "ident": "KR-0550", + "type": "heliport", + "name": "Deokcheon-ri South Helipad", + "latitude_deg": "37.922411", + "longitude_deg": "126.877646", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Deokcheon-ri", + "scheduled_service": "no", + "keywords": "Deokcheon-ri" + }, + { + "id": "327622", + "ident": "KR-0551", + "type": "heliport", + "name": "2/38th INF US Army Heliport", + "latitude_deg": "37.920332", + "longitude_deg": "126.858675", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Neulno-ri", + "scheduled_service": "no", + "keywords": "2/38, Neulno-ri" + }, + { + "id": "327627", + "ident": "KR-0552", + "type": "heliport", + "name": "Dongmun-ri Helipad", + "latitude_deg": "37.886803", + "longitude_deg": "126.865811", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Dongmun-ri", + "scheduled_service": "no", + "keywords": "Dongmun-ri" + }, + { + "id": "327628", + "ident": "KR-0553", + "type": "heliport", + "name": "Icheon-ri South Helipad", + "latitude_deg": "37.871537", + "longitude_deg": "126.833789", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Icheon-ri", + "scheduled_service": "no", + "keywords": "Icheon-ri" + }, + { + "id": "327629", + "ident": "KR-0554", + "type": "heliport", + "name": "Icheon-ri North Helipad", + "latitude_deg": "37.880873", + "longitude_deg": "126.830784", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Icheon-ri", + "scheduled_service": "no", + "keywords": "Icheon-ri" + }, + { + "id": "327630", + "ident": "KR-0555", + "type": "heliport", + "name": "Cheongsong-ro Heliport", + "latitude_deg": "37.915676", + "longitude_deg": "126.84046", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Cheongsong-ro", + "scheduled_service": "no", + "keywords": "Cheongsong-ro" + }, + { + "id": "327632", + "ident": "KR-0556", + "type": "heliport", + "name": "Janghyeon-ri Heliport", + "latitude_deg": "37.980519", + "longitude_deg": "126.960206", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Janghyeon-ri", + "scheduled_service": "no", + "keywords": "Janghyeon-ri" + }, + { + "id": "327633", + "ident": "KR-0557", + "type": "heliport", + "name": "Eoyuji-ri Heliport", + "latitude_deg": "38.0009", + "longitude_deg": "126.996744", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Eoyuji-ri", + "scheduled_service": "no", + "keywords": "Eoyuji-ri" + }, + { + "id": "327634", + "ident": "KR-0558", + "type": "heliport", + "name": "Yangwon-ri Heliport", + "latitude_deg": "37.978832", + "longitude_deg": "127.048952", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Yangwon-ri", + "scheduled_service": "no", + "keywords": "Yangwon-ri" + }, + { + "id": "327635", + "ident": "KR-0559", + "type": "heliport", + "name": "Lcd-ro Heliport", + "latitude_deg": "37.809119", + "longitude_deg": "126.769524", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Lcd-ro", + "scheduled_service": "no", + "keywords": "Lcd-ro, LG Display Paju" + }, + { + "id": "327636", + "ident": "KR-0560", + "type": "heliport", + "name": "Lcd-ro Helipad", + "latitude_deg": "37.80876", + "longitude_deg": "126.771675", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Lcd-ro", + "scheduled_service": "no", + "keywords": "Lcd-ro, Paju" + }, + { + "id": "327645", + "ident": "KR-0561", + "type": "heliport", + "name": "Majang-ri Helipad", + "latitude_deg": "37.782745", + "longitude_deg": "126.895197", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Majang-ri", + "scheduled_service": "no", + "keywords": "Majang-ri" + }, + { + "id": "327646", + "ident": "KR-0562", + "type": "heliport", + "name": "Changman-ri Helipad", + "latitude_deg": "37.794351", + "longitude_deg": "126.887533", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Changman-ri", + "scheduled_service": "no", + "keywords": "Changman-ri" + }, + { + "id": "327648", + "ident": "KR-0563", + "type": "heliport", + "name": "Yukgok-ri North Heliport", + "latitude_deg": "37.897465", + "longitude_deg": "126.831007", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Yukgoki-ri", + "scheduled_service": "no", + "keywords": "Yukgoki-ri" + }, + { + "id": "327649", + "ident": "KR-0564", + "type": "heliport", + "name": "Dapgok-ri Heliport", + "latitude_deg": "37.955285", + "longitude_deg": "126.872197", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Dapgok-ri", + "scheduled_service": "no", + "keywords": "Dapgok-ri" + }, + { + "id": "327650", + "ident": "KR-0565", + "type": "heliport", + "name": "Guksa-ro Helipad", + "latitude_deg": "37.95696", + "longitude_deg": "126.881857", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Guksa-ro", + "scheduled_service": "no", + "keywords": "Guksa-ro" + }, + { + "id": "327653", + "ident": "KR-0566", + "type": "heliport", + "name": "Guksa-ro Heliport", + "latitude_deg": "37.959019", + "longitude_deg": "126.879065", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Guksa-ro", + "scheduled_service": "no", + "keywords": "Guksa-ro" + }, + { + "id": "327654", + "ident": "KR-0567", + "type": "heliport", + "name": "Gajeon-ri Helipad", + "latitude_deg": "38.376251", + "longitude_deg": "128.238116", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Gajeon-ri", + "scheduled_service": "no", + "keywords": "Gajeon-ri" + }, + { + "id": "327655", + "ident": "KR-0568", + "type": "heliport", + "name": "Sangwon-ri North Helipad", + "latitude_deg": "38.377131", + "longitude_deg": "128.272907", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Sangwon-ri", + "scheduled_service": "no", + "keywords": "Sangwon-ri" + }, + { + "id": "327656", + "ident": "KR-0569", + "type": "heliport", + "name": "Tapyeol-ri North Heliport", + "latitude_deg": "38.406987", + "longitude_deg": "128.349232", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Tapyeol-ri", + "scheduled_service": "no", + "keywords": "Tapyeol-ri" + }, + { + "id": "327657", + "ident": "KR-0570", + "type": "heliport", + "name": "Geumsu-ri North Heliport", + "latitude_deg": "38.370709", + "longitude_deg": "128.454432", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Geumsu-ri", + "scheduled_service": "no", + "keywords": "Geumsu-ri" + }, + { + "id": "327658", + "ident": "KR-0571", + "type": "heliport", + "name": "Geumsu-ri South Heliport", + "latitude_deg": "38.365574", + "longitude_deg": "128.453165", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Geumsu-ri", + "scheduled_service": "no", + "keywords": "Geumsu-ri" + }, + { + "id": "327659", + "ident": "KR-0572", + "type": "heliport", + "name": "Hyangmok-ri Heliport", + "latitude_deg": "38.364329", + "longitude_deg": "128.480222", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Hyangmok-ri", + "scheduled_service": "no", + "keywords": "Hyangmok-ri" + }, + { + "id": "327660", + "ident": "KR-0573", + "type": "heliport", + "name": "Gonghyeonjinhanok-gil Heliport", + "latitude_deg": "38.349471", + "longitude_deg": "128.499833", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Gonghyeonjinhanok-gil", + "scheduled_service": "no", + "keywords": "Gonghyeonjinhanok-gil" + }, + { + "id": "327661", + "ident": "KR-0574", + "type": "heliport", + "name": "Tapdong-ri Heliport", + "latitude_deg": "38.349058", + "longitude_deg": "128.470593", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Tapdong-ri", + "scheduled_service": "no", + "keywords": "Tapdong-ri" + }, + { + "id": "327666", + "ident": "KR-0575", + "type": "heliport", + "name": "Gwandaebawi-gil Heliport", + "latitude_deg": "38.33683", + "longitude_deg": "128.438015", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Gwandaebawi-gil", + "scheduled_service": "no", + "keywords": "Gwandaebawi-gil" + }, + { + "id": "327667", + "ident": "KR-0576", + "type": "heliport", + "name": "Seonyusil-ri Helipad", + "latitude_deg": "38.316143", + "longitude_deg": "128.433781", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Seonyusil-ri", + "scheduled_service": "no", + "keywords": "Seonyusil-ri" + }, + { + "id": "327668", + "ident": "KR-0577", + "type": "heliport", + "name": "Guseong-ri Heliport", + "latitude_deg": "38.304964", + "longitude_deg": "128.477857", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Guseong-ri", + "scheduled_service": "no", + "keywords": "Guseong-ri" + }, + { + "id": "327669", + "ident": "KR-0578", + "type": "heliport", + "name": "Seongdae-ri Heliport", + "latitude_deg": "38.237394", + "longitude_deg": "128.487511", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Seongdae-ri", + "scheduled_service": "no", + "keywords": "Seongdae-ri" + }, + { + "id": "327670", + "ident": "KR-0579", + "type": "heliport", + "name": "Domun-dong Helipad", + "latitude_deg": "38.174028", + "longitude_deg": "128.53439", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Domun-dong", + "scheduled_service": "no", + "keywords": "Domun-dong" + }, + { + "id": "327671", + "ident": "KR-0580", + "type": "heliport", + "name": "Donghae-daero Heliport", + "latitude_deg": "38.008256", + "longitude_deg": "128.722311", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Donghae-daero", + "scheduled_service": "no", + "keywords": "Donghae-daero" + }, + { + "id": "327675", + "ident": "KR-0581", + "type": "heliport", + "name": "Jindong-ri Helipad", + "latitude_deg": "37.996748", + "longitude_deg": "128.502185", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Jindong-ri", + "scheduled_service": "no", + "keywords": "Jindong-ri" + }, + { + "id": "327676", + "ident": "KR-0582", + "type": "heliport", + "name": "Jangyo-ri Heliport", + "latitude_deg": "37.973747", + "longitude_deg": "128.709659", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Jangyo-ri", + "scheduled_service": "no", + "keywords": "Jangyo-ri" + }, + { + "id": "327677", + "ident": "KR-0583", + "type": "heliport", + "name": "Sangwolcheon-ri Heliport", + "latitude_deg": "37.933425", + "longitude_deg": "128.697561", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Sangwolcheon-ri", + "scheduled_service": "no", + "keywords": "Sangwolcheon-ri" + }, + { + "id": "327678", + "ident": "KR-0584", + "type": "heliport", + "name": "Misan-ri Helipad", + "latitude_deg": "37.883798", + "longitude_deg": "128.409074", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Misan-ri", + "scheduled_service": "no", + "keywords": "Misan-ri" + }, + { + "id": "327680", + "ident": "KR-0585", + "type": "heliport", + "name": "Jangdeok-ri Heliport", + "latitude_deg": "37.864317", + "longitude_deg": "128.788315", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Jangdeok-ri", + "scheduled_service": "no", + "keywords": "Jangdeok-ri" + }, + { + "id": "327684", + "ident": "KR-0586", + "type": "heliport", + "name": "Durobong Helipad", + "latitude_deg": "37.821341", + "longitude_deg": "128.58273", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Myeonggae-ri", + "scheduled_service": "no", + "keywords": "Myeonggae-ri" + }, + { + "id": "327727", + "ident": "KR-0587", + "type": "heliport", + "name": "Hoenggye-ri Heliport", + "latitude_deg": "37.756101", + "longitude_deg": "128.663547", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Hoenggye-ri", + "scheduled_service": "no", + "keywords": "Hoenggye-ri" + }, + { + "id": "327728", + "ident": "KR-0588", + "type": "heliport", + "name": "Horyeongbong Helipad", + "latitude_deg": "37.779782", + "longitude_deg": "128.533006", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Dongsan-ri", + "scheduled_service": "no", + "keywords": "Dongsan-ri, Horyeongbong" + }, + { + "id": "327729", + "ident": "KR-0589", + "type": "heliport", + "name": "Gyebangsan Helipad", + "latitude_deg": "37.728296", + "longitude_deg": "128.465511", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Nodong-ri", + "scheduled_service": "no", + "keywords": "Gyebangsan, Nodong-ri" + }, + { + "id": "327730", + "ident": "KR-0590", + "type": "heliport", + "name": "Imokjeong-ri Highway Stopover Heliport", + "latitude_deg": "37.61008", + "longitude_deg": "128.4631", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Imokjeong-ri", + "scheduled_service": "no", + "keywords": "Imokjeong-ri" + }, + { + "id": "327731", + "ident": "KR-0591", + "type": "heliport", + "name": "Pyeongchang Service Area Heliport", + "latitude_deg": "37.605872", + "longitude_deg": "128.45403", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Gyeonggang-ro", + "scheduled_service": "no", + "keywords": "Pyeongchang, Gyeonggang-ro" + }, + { + "id": "327732", + "ident": "KR-0592", + "type": "heliport", + "name": "Sangwol Mountain Helipad", + "latitude_deg": "37.493111", + "longitude_deg": "128.984937", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Igi-dong", + "scheduled_service": "no", + "keywords": "Sangwol Mountain, Igi-dong" + }, + { + "id": "327737", + "ident": "KR-0593", + "type": "heliport", + "name": "East Coast Marine Police Training Center Heliport", + "latitude_deg": "37.33188", + "longitude_deg": "129.264029", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Gongyangwang-gil", + "scheduled_service": "no", + "keywords": "East Coast Marine Police Training Center, Gongyangwang-gil" + }, + { + "id": "327745", + "ident": "KR-0594", + "type": "heliport", + "name": "Neungamdeoksan Helipad", + "latitude_deg": "37.267575", + "longitude_deg": "128.550594", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Munsan-ri", + "scheduled_service": "no", + "keywords": "Neungamdeoksan, Munsan-ri" + }, + { + "id": "327752", + "ident": "KR-0595", + "type": "heliport", + "name": "Goseong-ri Helipad", + "latitude_deg": "37.221331", + "longitude_deg": "128.584105", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Goseong-ri", + "scheduled_service": "no", + "keywords": "Goseong-ri" + }, + { + "id": "327755", + "ident": "KR-0596", + "type": "heliport", + "name": "Uirim-ro Heliport", + "latitude_deg": "37.211221", + "longitude_deg": "128.637867", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Uirim-ro", + "scheduled_service": "no", + "keywords": "Uirim-ro" + }, + { + "id": "327758", + "ident": "KR-0597", + "type": "heliport", + "name": "Sabuk-ri Heliport", + "latitude_deg": "37.218616", + "longitude_deg": "128.822417", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Sabuk-ri", + "scheduled_service": "no", + "keywords": "Sabuk-ri" + }, + { + "id": "327759", + "ident": "KR-0598", + "type": "heliport", + "name": "Icheon-ri Helipad", + "latitude_deg": "37.186916", + "longitude_deg": "129.240375", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Icheon-ri", + "scheduled_service": "no", + "keywords": "Icheon-ri" + }, + { + "id": "327760", + "ident": "KR-0599", + "type": "heliport", + "name": "G-607 Heliport", + "latitude_deg": "37.166597", + "longitude_deg": "128.477045", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Deokpo-ri", + "scheduled_service": "no", + "keywords": "G-607, Deokpo-ri" + }, + { + "id": "327761", + "ident": "KR-0600", + "type": "heliport", + "name": "Ssangyong Cement Yeongwol Plant Heliport", + "latitude_deg": "37.184139", + "longitude_deg": "128.320461", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Hutan-ro", + "scheduled_service": "no", + "keywords": "Hotan-ro, Ssangyong Cement Yeongwol" + }, + { + "id": "327799", + "ident": "KR-0601", + "type": "heliport", + "name": "Yeonsang-ri Heliport", + "latitude_deg": "37.165909", + "longitude_deg": "128.622132", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Yeonsang-ri", + "scheduled_service": "no", + "keywords": "Yeonsang-ri" + }, + { + "id": "327800", + "ident": "KR-0602", + "type": "heliport", + "name": "Nagok-ri Heliport", + "latitude_deg": "37.13874", + "longitude_deg": "129.365384", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Nagok-ri", + "scheduled_service": "no", + "keywords": "Nagok-ri" + }, + { + "id": "327801", + "ident": "KR-0603", + "type": "heliport", + "name": "Naedeok-ri Helipad", + "latitude_deg": "37.13844", + "longitude_deg": "128.823459", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Naedeok-ri", + "scheduled_service": "no", + "keywords": "Naedeok-ri" + }, + { + "id": "327802", + "ident": "KR-0604", + "type": "heliport", + "name": "Mount Sam-dong Heliport", + "latitude_deg": "37.07818", + "longitude_deg": "128.80344", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Deokgu-ri", + "scheduled_service": "no", + "keywords": "Mount Sam-dong, Deokgu-ri" + }, + { + "id": "327803", + "ident": "KR-0605", + "type": "heliport", + "name": "Deokgu-ri Heliport", + "latitude_deg": "37.074258", + "longitude_deg": "128.807622", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Deokgu-ri", + "scheduled_service": "no", + "keywords": "Deokgu-ri" + }, + { + "id": "327804", + "ident": "KR-0606", + "type": "heliport", + "name": "Busoebong Helipad", + "latitude_deg": "37.091798", + "longitude_deg": "128.92236", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Hyeol-dong", + "scheduled_service": "no", + "keywords": "Busoebong, Hyeol-dong" + }, + { + "id": "327805", + "ident": "KR-0607", + "type": "heliport", + "name": "Hanul Nuclear Power Plant Heliport", + "latitude_deg": "37.097471", + "longitude_deg": "129.371017", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Uljinbuk-ro", + "scheduled_service": "no", + "keywords": "Hanul Nuclear Power Plant, Uljinbuk-ro" + }, + { + "id": "327806", + "ident": "KR-0608", + "type": "heliport", + "name": "Jagaebong Helipad", + "latitude_deg": "36.996056", + "longitude_deg": "128.611941", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Socheon-ri", + "scheduled_service": "no", + "keywords": "Jagaebong, Socheon-ri" + }, + { + "id": "327810", + "ident": "KR-0609", + "type": "heliport", + "name": "Bagdallyeong Heliport", + "latitude_deg": "37.028063", + "longitude_deg": "128.753976", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Ojeon-ri", + "scheduled_service": "no", + "keywords": "Bagdallyeong, Ojeon-ri" + }, + { + "id": "327811", + "ident": "KR-0610", + "type": "heliport", + "name": "Sucheol-ri Heliport", + "latitude_deg": "36.899608", + "longitude_deg": "128.437732", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Sucheol-ri", + "scheduled_service": "no", + "keywords": "Sucheol-ri" + }, + { + "id": "327812", + "ident": "KR-0611", + "type": "small_airport", + "name": "Yeongju Emergency Runway Airfield", + "latitude_deg": "36.837592", + "longitude_deg": "128.579607", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Sangjul-dong", + "scheduled_service": "no", + "keywords": "Yeongju, Sangjul-dong" + }, + { + "id": "327813", + "ident": "KR-0612", + "type": "heliport", + "name": "G-603 Heliport", + "latitude_deg": "36.835617", + "longitude_deg": "128.592702", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Sinjae-ro", + "scheduled_service": "no", + "keywords": "Sinjae-ro" + }, + { + "id": "327814", + "ident": "KR-0613", + "type": "heliport", + "name": "Chungbuk Provincial Police Agency Heliport", + "latitude_deg": "36.675574", + "longitude_deg": "127.500431", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-43", + "municipality": "Chungbuk", + "scheduled_service": "no", + "keywords": "Chungbuk" + }, + { + "id": "327871", + "ident": "KR-0614", + "type": "heliport", + "name": "Yullyang-dong Helipad", + "latitude_deg": "36.672715", + "longitude_deg": "127.50898", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-43", + "municipality": "Yullyang-dong", + "scheduled_service": "no", + "keywords": "Yullyang-dong" + }, + { + "id": "327872", + "ident": "KR-0615", + "type": "heliport", + "name": "Namsan-ri Helipad", + "latitude_deg": "36.010232", + "longitude_deg": "128.642659", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Namsan-ri", + "scheduled_service": "no", + "keywords": "Namsan-ri" + }, + { + "id": "327873", + "ident": "KR-0616", + "type": "heliport", + "name": "Yeongcheon Ammo Depot Heliport", + "latitude_deg": "35.957878", + "longitude_deg": "128.9933", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Daeseong-ri", + "scheduled_service": "no", + "keywords": "Yeongcheong Ammo Depot, Daeseong-ri" + }, + { + "id": "327874", + "ident": "KR-0617", + "type": "heliport", + "name": "Bulguksa Heliport", + "latitude_deg": "35.789833", + "longitude_deg": "129.349814", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Jinhyeon-dong", + "scheduled_service": "no", + "keywords": "Bulguksa, Jinhyeon-dong, Gyeongju" + }, + { + "id": "327877", + "ident": "KR-0618", + "type": "heliport", + "name": "Wolsan-ri Stopover Heliport", + "latitude_deg": "35.725575", + "longitude_deg": "129.194153", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Wolsan-ri", + "scheduled_service": "no", + "keywords": "Wolsan-ri" + }, + { + "id": "327878", + "ident": "KR-0619", + "type": "heliport", + "name": "Deokcheon-ri Heliport", + "latitude_deg": "35.284096", + "longitude_deg": "128.675084", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Deokcheon-ri", + "scheduled_service": "no", + "keywords": "Deokcheon-ri" + }, + { + "id": "327879", + "ident": "KR-0620", + "type": "heliport", + "name": "Singimhae KEPCO Electrrical Substation Heliport", + "latitude_deg": "35.220165", + "longitude_deg": "128.776299", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Sanbon-ri", + "scheduled_service": "no", + "keywords": "Sanbon-ri, Singimhae KEPCO Electrical Substation" + }, + { + "id": "327880", + "ident": "KR-0621", + "type": "small_airport", + "name": "Namji Emergency Airfield", + "latitude_deg": "35.42819", + "longitude_deg": "128.510084", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Docheon-myeon", + "scheduled_service": "no", + "keywords": "Yeongsandocheon-ro, Namji" + }, + { + "id": "327882", + "ident": "KR-0622", + "type": "heliport", + "name": "Masan Stadium Heliport", + "latitude_deg": "35.222952", + "longitude_deg": "128.583626", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Masan", + "scheduled_service": "no", + "keywords": "Masan," + }, + { + "id": "327883", + "ident": "KR-0623", + "type": "heliport", + "name": "ROK Air Force Education & Training Heliport", + "latitude_deg": "35.190489", + "longitude_deg": "128.149558", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Soksa-ri", + "scheduled_service": "no", + "keywords": "Soksa-ri" + }, + { + "id": "327884", + "ident": "KR-0624", + "type": "heliport", + "name": "Jangsa-ri Heliport", + "latitude_deg": "35.206043", + "longitude_deg": "128.185796", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Jangsa-ri", + "scheduled_service": "no", + "keywords": "Jangsa-ri" + }, + { + "id": "327885", + "ident": "KR-0625", + "type": "heliport", + "name": "Gapo-dong Wharf Heliport", + "latitude_deg": "35.174179", + "longitude_deg": "128.577062", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Gapo-dong", + "scheduled_service": "no", + "keywords": "Gapo-dong" + }, + { + "id": "327886", + "ident": "KR-0626", + "type": "heliport", + "name": "Gamcheon-ri Heliport", + "latitude_deg": "35.210092", + "longitude_deg": "128.53549", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Gamcheon-ri", + "scheduled_service": "no", + "keywords": "Gamcheon-ri" + }, + { + "id": "327887", + "ident": "KR-0627", + "type": "heliport", + "name": "Pyeongam-ri Heliport", + "latitude_deg": "35.16916", + "longitude_deg": "128.419613", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Pyeongam-ri", + "scheduled_service": "no", + "keywords": "Pyeongam-ri" + }, + { + "id": "327889", + "ident": "KR-0628", + "type": "heliport", + "name": "Budo Heliport", + "latitude_deg": "35.104315", + "longitude_deg": "128.655898", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Budo Island", + "scheduled_service": "no", + "keywords": "Budo" + }, + { + "id": "327890", + "ident": "KR-0629", + "type": "heliport", + "name": "Jamdo Heliport", + "latitude_deg": "35.059128", + "longitude_deg": "128.666564", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Jamdo Island", + "scheduled_service": "no", + "keywords": "Jamdo" + }, + { + "id": "327891", + "ident": "KR-0630", + "type": "heliport", + "name": "Yeojwa-dong Helipad", + "latitude_deg": "35.164643", + "longitude_deg": "128.649444", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Yeojwa-dong", + "scheduled_service": "no", + "keywords": "Yeojwa-dong" + }, + { + "id": "327892", + "ident": "KR-0631", + "type": "heliport", + "name": "Daehang-dong Heliport", + "latitude_deg": "34.990968", + "longitude_deg": "128.829038", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Daehang-dong", + "scheduled_service": "no", + "keywords": "Daehang-dong" + }, + { + "id": "327893", + "ident": "KR-0632", + "type": "heliport", + "name": "Daecheong-ri Heliport", + "latitude_deg": "35.165286", + "longitude_deg": "128.746465", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Daecheong-ri", + "scheduled_service": "no", + "keywords": "Daecheong-ri" + }, + { + "id": "327894", + "ident": "KR-0633", + "type": "heliport", + "name": "Mukbang-ri Heliport", + "latitude_deg": "35.272876", + "longitude_deg": "128.911372", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Mukbang-ri", + "scheduled_service": "no", + "keywords": "Mukbang-ri" + }, + { + "id": "327895", + "ident": "KR-0634", + "type": "heliport", + "name": "Mulgeum-ri Heliport", + "latitude_deg": "35.320103", + "longitude_deg": "128.976388", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Mulgeum-ri", + "scheduled_service": "no", + "keywords": "Mulgeum-ri" + }, + { + "id": "327896", + "ident": "KR-0635", + "type": "heliport", + "name": "Daegu Stadium Complex Heliport", + "latitude_deg": "35.826041", + "longitude_deg": "128.685922", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "municipality": "Daeheung-dong", + "scheduled_service": "no", + "keywords": "Daeheung-dong, Daegu Stadium" + }, + { + "id": "327897", + "ident": "KR-0636", + "type": "heliport", + "name": "Cheongwon Rest Area Heliport", + "latitude_deg": "36.716587", + "longitude_deg": "127.347062", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-43", + "municipality": "Sajeong-ri", + "scheduled_service": "no", + "keywords": "Sajeong-ri, Cheongwon Rest" + }, + { + "id": "327898", + "ident": "KR-0637", + "type": "heliport", + "name": "Jeongchon-ri Heliport", + "latitude_deg": "36.883535", + "longitude_deg": "127.188792", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Jeongchon-ri", + "scheduled_service": "no", + "keywords": "Jeongchon-ri" + }, + { + "id": "327899", + "ident": "KR-0638", + "type": "heliport", + "name": "Ipjang Service Area Heliport", + "latitude_deg": "36.941984", + "longitude_deg": "127.190264", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Gasan-ri", + "scheduled_service": "no", + "keywords": "Ipjang Service, Gasan-ri" + }, + { + "id": "327905", + "ident": "KR-0639", + "type": "heliport", + "name": "Lotte Castle Apartments Heliports", + "latitude_deg": "37.558506", + "longitude_deg": "126.981689", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lotte Castle Apartment, Seoul" + }, + { + "id": "327906", + "ident": "KR-0640", + "type": "heliport", + "name": "State Tower Building Heliport", + "latitude_deg": "37.560458", + "longitude_deg": "126.9829", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "State Tower Building" + }, + { + "id": "327907", + "ident": "KR-0641", + "type": "heliport", + "name": "Prime Towers Heliports", + "latitude_deg": "37.559522", + "longitude_deg": "126.983274", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Prime Tower" + }, + { + "id": "327908", + "ident": "KR-0642", + "type": "heliport", + "name": "Woori Bank Building Heliport", + "latitude_deg": "37.559422", + "longitude_deg": "126.981646", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Woori Bank" + }, + { + "id": "327909", + "ident": "KR-0643", + "type": "heliport", + "name": "Shinsegae Department Store Annex Heliport", + "latitude_deg": "37.560421", + "longitude_deg": "126.980444", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Shinsegae" + }, + { + "id": "327910", + "ident": "KR-0644", + "type": "heliport", + "name": "Mesa Family Fashion Mall Heliport", + "latitude_deg": "37.560455", + "longitude_deg": "126.979605", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Mesa Family Fashion Mall" + }, + { + "id": "327911", + "ident": "KR-0645", + "type": "heliport", + "name": "Seoul Centrol Post Office Building (Post Tower) Heliports", + "latitude_deg": "37.561925", + "longitude_deg": "126.982201", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Seoul Centrol Post Office" + }, + { + "id": "327912", + "ident": "KR-0646", + "type": "heliport", + "name": "Bank of Korea Building Heliport", + "latitude_deg": "37.562709", + "longitude_deg": "126.979824", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Bank of Korea Building" + }, + { + "id": "327913", + "ident": "KR-0647", + "type": "heliport", + "name": "Hanjin Building Heliport", + "latitude_deg": "37.563185", + "longitude_deg": "126.981395", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hanjin" + }, + { + "id": "327914", + "ident": "KR-0648", + "type": "heliport", + "name": "Lotte Insurance Building Heliport", + "latitude_deg": "37.559548", + "longitude_deg": "126.976208", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lotte Insurance" + }, + { + "id": "327919", + "ident": "KR-0649", + "type": "heliport", + "name": "Shinhan Bank Heliport", + "latitude_deg": "37.561236", + "longitude_deg": "126.974544", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Shinhan Bank" + }, + { + "id": "327920", + "ident": "KR-0650", + "type": "heliport", + "name": "Samsung Life Insurance Building Heliport", + "latitude_deg": "37.561848", + "longitude_deg": "126.974892", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Samsung Life Insurance" + }, + { + "id": "327921", + "ident": "KR-0651", + "type": "heliport", + "name": "Samsung Main Building Heliport", + "latitude_deg": "37.562584", + "longitude_deg": "126.975667", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Samsung" + }, + { + "id": "327922", + "ident": "KR-0652", + "type": "heliport", + "name": "Seoul City Hall Heliport", + "latitude_deg": "37.563121", + "longitude_deg": "126.975926", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Seoul City Hall" + }, + { + "id": "327923", + "ident": "KR-0653", + "type": "heliport", + "name": "Korean Air Building Heliport", + "latitude_deg": "37.563796", + "longitude_deg": "126.974076", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Korean Air" + }, + { + "id": "327933", + "ident": "KR-0654", + "type": "heliport", + "name": "Boram Thayer Apartments Heliport", + "latitude_deg": "35.138506", + "longitude_deg": "129.067442", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Boram Thayer Apartment" + }, + { + "id": "327934", + "ident": "KR-0655", + "type": "heliport", + "name": "Brown Suites Hotel Heliports", + "latitude_deg": "37.560866", + "longitude_deg": "126.96834", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Brown Suites Hotel" + }, + { + "id": "327935", + "ident": "KR-0656", + "type": "heliport", + "name": "Donghwa Building Heliport", + "latitude_deg": "37.56267", + "longitude_deg": "126.973134", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Donghwa Building" + }, + { + "id": "327936", + "ident": "KR-0657", + "type": "heliport", + "name": "HSBC Building Heliport", + "latitude_deg": "37.560197", + "longitude_deg": "126.973013", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "HSBC Building" + }, + { + "id": "327937", + "ident": "KR-0658", + "type": "heliport", + "name": "Hyundai Camelia Haute Apartments Heliports", + "latitude_deg": "35.15785", + "longitude_deg": "129.150325", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no", + "keywords": "Hyundai Camelia Haute Apartment" + }, + { + "id": "327938", + "ident": "KR-0659", + "type": "heliport", + "name": "Ing Insurance Heliport", + "latitude_deg": "37.560964", + "longitude_deg": "126.97247", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Ing Insurance" + }, + { + "id": "327939", + "ident": "KR-0660", + "type": "heliport", + "name": "Joongang Daily Building Heliport", + "latitude_deg": "37.561657", + "longitude_deg": "126.970834", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Joongang Daily" + }, + { + "id": "327940", + "ident": "KR-0661", + "type": "heliport", + "name": "JTBC Building Heliport", + "latitude_deg": "37.561036", + "longitude_deg": "126.971548", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "JTBC" + }, + { + "id": "327941", + "ident": "KR-0662", + "type": "heliport", + "name": "Korea Chamber of Commerce and Industry Heliport", + "latitude_deg": "37.561161", + "longitude_deg": "126.973288", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Korea Chamber of Commerce and Industry" + }, + { + "id": "327942", + "ident": "KR-0663", + "type": "heliport", + "name": "Seoul Metropolitan Government Heliport", + "latitude_deg": "37.562536", + "longitude_deg": "126.968599", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Seoul Metropolitan Government" + }, + { + "id": "327943", + "ident": "KR-0664", + "type": "heliport", + "name": "Korea Express Building Heliport", + "latitude_deg": "37.561576", + "longitude_deg": "126.972961", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Korea Express" + }, + { + "id": "339954", + "ident": "KR-0665", + "type": "heliport", + "name": "Manjaedo Heliport", + "latitude_deg": "34.208192", + "longitude_deg": "125.470632", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Heuksan-myeon", + "scheduled_service": "no" + }, + { + "id": "327945", + "ident": "KR-0666", + "type": "heliport", + "name": "Ramada Hotel & Suites Heliports", + "latitude_deg": "37.560079", + "longitude_deg": "126.972315", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Ramada Hotel & Suites" + }, + { + "id": "327946", + "ident": "KR-0667", + "type": "heliport", + "name": "Korea Economic Daily Heliport", + "latitude_deg": "37.560251", + "longitude_deg": "126.967193", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Korea Economic Daily" + }, + { + "id": "327947", + "ident": "KR-0668", + "type": "heliport", + "name": "National Police Agency Heliport", + "latitude_deg": "37.563492", + "longitude_deg": "126.967508", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "National Police Agency" + }, + { + "id": "327948", + "ident": "KR-0669", + "type": "heliport", + "name": "Ace Tower Heliport", + "latitude_deg": "37.563817", + "longitude_deg": "126.969252", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Ace Tower" + }, + { + "id": "327949", + "ident": "KR-0670", + "type": "heliport", + "name": "Fraser Palace Central Seoul Heliport", + "latitude_deg": "37.562876", + "longitude_deg": "126.969714", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Fraser Palace Central Seoul" + }, + { + "id": "327953", + "ident": "KR-0671", + "type": "heliport", + "name": "Chong Kun Dong Building Heliport", + "latitude_deg": "37.559812", + "longitude_deg": "126.963402", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Chong Kun Dong" + }, + { + "id": "327954", + "ident": "KR-0672", + "type": "heliport", + "name": "Lee Shi On Building Heliport", + "latitude_deg": "37.560398", + "longitude_deg": "126.965112", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lee Shi On" + }, + { + "id": "327955", + "ident": "KR-0673", + "type": "heliport", + "name": "SK Namsan Building Heliport", + "latitude_deg": "37.556739", + "longitude_deg": "126.975893", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "SK Namsan" + }, + { + "id": "327956", + "ident": "KR-0674", + "type": "heliport", + "name": "Millenium Seoul Hilton Hotel Heliport", + "latitude_deg": "37.555596", + "longitude_deg": "126.975823", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Millenium Seoul Hilton Hotel" + }, + { + "id": "327957", + "ident": "KR-0675", + "type": "heliport", + "name": "Seoul City Tower Heliport", + "latitude_deg": "37.554498", + "longitude_deg": "126.97409", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Seoul City Tower" + }, + { + "id": "327958", + "ident": "KR-0676", + "type": "heliport", + "name": "LG Innotek Heliport", + "latitude_deg": "37.55417", + "longitude_deg": "126.974856", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "LG Innotek" + }, + { + "id": "327959", + "ident": "KR-0677", + "type": "heliport", + "name": "T Tower Heliport", + "latitude_deg": "37.554245", + "longitude_deg": "126.975612", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "T Tower" + }, + { + "id": "327960", + "ident": "KR-0678", + "type": "heliport", + "name": "Trapalace Apartments Heliport", + "latitude_deg": "37.554094", + "longitude_deg": "126.975925", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Trapalace" + }, + { + "id": "327961", + "ident": "KR-0679", + "type": "heliport", + "name": "Gateway Tower Heliport", + "latitude_deg": "37.553762", + "longitude_deg": "126.973557", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Gateway Tower" + }, + { + "id": "327962", + "ident": "KR-0680", + "type": "heliport", + "name": "Daewoo Worldmark Apartments Yongsan Heliports", + "latitude_deg": "37.537397", + "longitude_deg": "126.973243", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Daewoo Worldmark Apartments Yongsan" + }, + { + "id": "327963", + "ident": "KR-0681", + "type": "heliport", + "name": "Yongsan Park Xi Apartments Heliports", + "latitude_deg": "37.536872", + "longitude_deg": "126.972545", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Yongsan Park Xi Apartment" + }, + { + "id": "327965", + "ident": "KR-0682", + "type": "heliport", + "name": "Daewoo Foundation Building Heliport", + "latitude_deg": "37.556631", + "longitude_deg": "126.975182", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Daewoo Foundation" + }, + { + "id": "327966", + "ident": "KR-0683", + "type": "heliport", + "name": "Hangang-ro Byucksan Megatrium 2005 Condominiums Heliports", + "latitude_deg": "37.53248", + "longitude_deg": "126.970172", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hangang-ro Byucksan Megatrium 2005" + }, + { + "id": "327967", + "ident": "KR-0684", + "type": "heliport", + "name": "LS Yongsan Tower Heliport", + "latitude_deg": "37.528248", + "longitude_deg": "126.96792", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "LS Yongsan Tower" + }, + { + "id": "327968", + "ident": "KR-0685", + "type": "heliport", + "name": "Yongsan City Apartments Heliports", + "latitude_deg": "37.526228", + "longitude_deg": "126.97022", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Yongsan City Apartment" + }, + { + "id": "327969", + "ident": "KR-0686", + "type": "heliport", + "name": "City Center Apartments Heliports", + "latitude_deg": "37.525443", + "longitude_deg": "126.968895", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "City Center Apartment" + }, + { + "id": "327992", + "ident": "KR-0687", + "type": "heliport", + "name": "Daewoo Trump World III Heliports", + "latitude_deg": "37.523131", + "longitude_deg": "126.962739", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Daewoo Trump World III" + }, + { + "id": "327995", + "ident": "KR-0688", + "type": "heliport", + "name": "Mapo Trapalace Heliports", + "latitude_deg": "37.541496", + "longitude_deg": "126.947032", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Mapo Trapalace" + }, + { + "id": "327998", + "ident": "KR-0689", + "type": "heliport", + "name": "Mapo Employment Center Heliport", + "latitude_deg": "37.542388", + "longitude_deg": "126.947809", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Mapo Employment Center" + }, + { + "id": "328000", + "ident": "KR-0690", + "type": "heliport", + "name": "SK Hub Green Apartments Heliport", + "latitude_deg": "37.542522", + "longitude_deg": "126.948971", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "SK Hub Green Apartment" + }, + { + "id": "328002", + "ident": "KR-0691", + "type": "heliport", + "name": "Masters Tower Apartments Heliport", + "latitude_deg": "37.543028", + "longitude_deg": "126.949351", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Masters Tower Apartment" + }, + { + "id": "328003", + "ident": "KR-0692", + "type": "heliport", + "name": "Lotte President Castle Apartments Heliports", + "latitude_deg": "37.544637", + "longitude_deg": "126.951391", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lotte President Castle Apartment" + }, + { + "id": "328005", + "ident": "KR-0693", + "type": "heliport", + "name": "Geomdansan Heliport", + "latitude_deg": "37.517666", + "longitude_deg": "127.249469", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Baealmi-dong", + "scheduled_service": "no", + "keywords": "Geomdansan, Baealmi-dong" + }, + { + "id": "328013", + "ident": "KR-0694", + "type": "heliport", + "name": "Jongam-dong Heliport", + "latitude_deg": "37.600592", + "longitude_deg": "127.026911", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Jongam-dong" + }, + { + "id": "328016", + "ident": "KR-0695", + "type": "heliport", + "name": "Wolgye (2)i-dong Heliport", + "latitude_deg": "37.638727", + "longitude_deg": "127.046805", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Wolgye (2)i-dong" + }, + { + "id": "328017", + "ident": "KR-0696", + "type": "heliport", + "name": "Hongjuk-ri Heliport", + "latitude_deg": "37.80535", + "longitude_deg": "126.947185", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Hongjuk-ri", + "scheduled_service": "no", + "keywords": "Hongjuk-ri" + }, + { + "id": "328018", + "ident": "KR-0697", + "type": "heliport", + "name": "Yukgok-ri South Heliport", + "latitude_deg": "37.894224", + "longitude_deg": "126.828909", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Yukgok-ri", + "scheduled_service": "no", + "keywords": "Yukgok-ri" + }, + { + "id": "328019", + "ident": "KR-0698", + "type": "heliport", + "name": "Mecenatpolis Heliport", + "latitude_deg": "37.550669", + "longitude_deg": "126.913439", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Mecenatpolis" + }, + { + "id": "328020", + "ident": "KR-0699", + "type": "heliport", + "name": "Seogyo Xi West Valley Apartments Heliports", + "latitude_deg": "37.551093", + "longitude_deg": "126.914065", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Seogyo Xi West Valley" + }, + { + "id": "328021", + "ident": "KR-0700", + "type": "heliport", + "name": "LIG Seoul Heliport", + "latitude_deg": "37.549448", + "longitude_deg": "126.911132", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "LIG Seoul" + }, + { + "id": "328027", + "ident": "KR-0701", + "type": "heliport", + "name": "Hongdae Girls High School Heliport", + "latitude_deg": "37.549636", + "longitude_deg": "126.925039", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hongdae Girls High School" + }, + { + "id": "328028", + "ident": "KR-0702", + "type": "heliport", + "name": "KODIT Heliport", + "latitude_deg": "37.545514", + "longitude_deg": "126.952853", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "KODIT" + }, + { + "id": "328029", + "ident": "KR-0703", + "type": "heliport", + "name": "Taeyoung Building Heliport", + "latitude_deg": "37.547068", + "longitude_deg": "126.953742", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Taeyoung" + }, + { + "id": "328030", + "ident": "KR-0704", + "type": "heliport", + "name": "Seoul Medicare Heliport", + "latitude_deg": "37.548059", + "longitude_deg": "126.954398", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Seoul Medicare" + }, + { + "id": "328031", + "ident": "KR-0705", + "type": "heliport", + "name": "Hyundai Hiel Condominums Heliport", + "latitude_deg": "37.55018", + "longitude_deg": "126.954482", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hyundai Hiel Condominum" + }, + { + "id": "328045", + "ident": "KR-0706", + "type": "heliport", + "name": "SK Hub Blue Apartments Heliport", + "latitude_deg": "37.552159", + "longitude_deg": "126.956571", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "SK Hub Blue Apartment" + }, + { + "id": "328046", + "ident": "KR-0707", + "type": "heliport", + "name": "Yonsei Severance Hospital Foundation Building Heliport", + "latitude_deg": "37.557254", + "longitude_deg": "126.973649", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Yonsei Severance Hospital Foundation" + }, + { + "id": "328047", + "ident": "KR-0708", + "type": "heliport", + "name": "Yonsei University Severance Hospital Heliport", + "latitude_deg": "37.562254", + "longitude_deg": "126.940772", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Yonsei University Severance Hospital" + }, + { + "id": "328048", + "ident": "KR-0709", + "type": "heliport", + "name": "YTN New Square Heliport", + "latitude_deg": "37.579224", + "longitude_deg": "126.892106", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "YTN New Square" + }, + { + "id": "328049", + "ident": "KR-0710", + "type": "heliport", + "name": "SBS Prism Contents Hub Heliport", + "latitude_deg": "37.579721", + "longitude_deg": "126.892897", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "SBS Prism Contents Hub" + }, + { + "id": "328050", + "ident": "KR-0711", + "type": "heliport", + "name": "Digital Media City Building Heliport", + "latitude_deg": "37.578649", + "longitude_deg": "126.892892", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Digital Media City" + }, + { + "id": "328051", + "ident": "KR-0712", + "type": "heliport", + "name": "CJ E&M Building Heliport", + "latitude_deg": "37.578456", + "longitude_deg": "126.891333", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "CJ E&M" + }, + { + "id": "328053", + "ident": "KR-0713", + "type": "heliport", + "name": "Heechan Go Building Heliport", + "latitude_deg": "37.579111", + "longitude_deg": "126.890655", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Heechan Go Building" + }, + { + "id": "328054", + "ident": "KR-0714", + "type": "heliport", + "name": "Digital Media City Sungam Branch Building Heliport", + "latitude_deg": "37.579591", + "longitude_deg": "126.889602", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Digital Media City Sungam" + }, + { + "id": "328057", + "ident": "KR-0715", + "type": "heliport", + "name": "JTBC Building Heliport", + "latitude_deg": "37.577162", + "longitude_deg": "126.889999", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul (Mapo)", + "scheduled_service": "no", + "keywords": "JTBC" + }, + { + "id": "328058", + "ident": "KR-0716", + "type": "heliport", + "name": "KBS Media Center Heliport", + "latitude_deg": "37.57642", + "longitude_deg": "126.890904", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "KBS Media Center" + }, + { + "id": "328059", + "ident": "KR-0717", + "type": "heliport", + "name": "S-Plex Center Heliport", + "latitude_deg": "37.575911", + "longitude_deg": "126.890078", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "S-Plex Center" + }, + { + "id": "328061", + "ident": "KR-0718", + "type": "heliport", + "name": "Digital Cube Building Heliport", + "latitude_deg": "37.576273", + "longitude_deg": "126.889059", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Digital Cube Building" + }, + { + "id": "328062", + "ident": "KR-0719", + "type": "heliport", + "name": "Seoul World Cup Stadium Heliport", + "latitude_deg": "37.567833", + "longitude_deg": "126.894751", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Seoul World Cup Stadium" + }, + { + "id": "328063", + "ident": "KR-0720", + "type": "heliport", + "name": "ROK Ministry of Foreign Affairs Heliport", + "latitude_deg": "37.573752", + "longitude_deg": "126.974998", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "ROK Ministry of Foreign Affairs" + }, + { + "id": "328064", + "ident": "KR-0721", + "type": "heliport", + "name": "Centre Pointe Building Heliport", + "latitude_deg": "37.573333", + "longitude_deg": "126.974275", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Centre Pointe Building" + }, + { + "id": "328065", + "ident": "KR-0722", + "type": "heliport", + "name": "Yongbieocheonga Condominiums Heliport", + "latitude_deg": "37.573542", + "longitude_deg": "126.973135", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Yongbieocheonga Condominium" + }, + { + "id": "328066", + "ident": "KR-0723", + "type": "heliport", + "name": "Gyeonghuiguigung Condominiums Heliports", + "latitude_deg": "37.574275", + "longitude_deg": "126.971202", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Gyeonghuiguigung Condominium" + }, + { + "id": "328067", + "ident": "KR-0724", + "type": "heliport", + "name": "Seoul Metropolitan Police Agency Heliport", + "latitude_deg": "37.574992", + "longitude_deg": "126.971782", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Seoul Metropolitan Police Agency" + }, + { + "id": "328071", + "ident": "KR-0725", + "type": "heliport", + "name": "ROK Government Complex Heliport", + "latitude_deg": "37.575095", + "longitude_deg": "126.975158", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no" + }, + { + "id": "328072", + "ident": "KR-0726", + "type": "heliport", + "name": "KT Gwanghwamun Building West Heliport", + "latitude_deg": "37.572305", + "longitude_deg": "126.977879", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "KT Gwanghwamun Building West" + }, + { + "id": "328073", + "ident": "KR-0727", + "type": "heliport", + "name": "Kyobo Building Heliport", + "latitude_deg": "37.570875", + "longitude_deg": "126.977829", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Kyobo" + }, + { + "id": "328074", + "ident": "KR-0728", + "type": "heliport", + "name": "Seoul Four Seasons Hotel Heliport", + "latitude_deg": "37.570984", + "longitude_deg": "126.9755", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Seoul Four Seasons Hotel" + }, + { + "id": "328076", + "ident": "KR-0729", + "type": "heliport", + "name": "Officia Building Heliport", + "latitude_deg": "37.569952", + "longitude_deg": "126.974911", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Officia" + }, + { + "id": "328080", + "ident": "KR-0730", + "type": "heliport", + "name": "Gwanghwamun Building Heliport", + "latitude_deg": "37.569729", + "longitude_deg": "126.976152", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Gwanghwamun Building" + }, + { + "id": "328081", + "ident": "KR-0731", + "type": "heliport", + "name": "Dong-A Ilbo Building Heliport", + "latitude_deg": "37.569706", + "longitude_deg": "126.977745", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Dong-A Ilbo" + }, + { + "id": "328082", + "ident": "KR-0732", + "type": "heliport", + "name": "Yeongpoong Building Heliport", + "latitude_deg": "37.56984", + "longitude_deg": "126.982184", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Yeongpoong Building" + }, + { + "id": "328083", + "ident": "KR-0733", + "type": "heliport", + "name": "Yeongpoong Building Heliport", + "latitude_deg": "37.56984", + "longitude_deg": "126.982184", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Yeongpoong Building" + }, + { + "id": "328084", + "ident": "KR-0734", + "type": "heliport", + "name": "Yeongpoong Building Heliport", + "latitude_deg": "37.56984", + "longitude_deg": "126.982184", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Yeongpoong Building" + }, + { + "id": "328085", + "ident": "KR-0735", + "type": "heliport", + "name": "Yeongpoong Building Heliport", + "latitude_deg": "37.56984", + "longitude_deg": "126.982184", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Yeongpoong Building" + }, + { + "id": "328086", + "ident": "KR-0736", + "type": "heliport", + "name": "Gwanghwamum D Tower Heliports", + "latitude_deg": "37.571041", + "longitude_deg": "126.978908", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Gwanghwamum D Tower" + }, + { + "id": "328087", + "ident": "KR-0737", + "type": "heliport", + "name": "K Twin Towers Heliports", + "latitude_deg": "37.574768", + "longitude_deg": "126.978951", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "K Twin Tower" + }, + { + "id": "328088", + "ident": "KR-0738", + "type": "heliport", + "name": "Somerset Palace Seoul Heliport", + "latitude_deg": "37.575254", + "longitude_deg": "126.981364", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Somerset Palace Seoul" + }, + { + "id": "328089", + "ident": "KR-0739", + "type": "heliport", + "name": "Leema Building Heliport", + "latitude_deg": "37.574017", + "longitude_deg": "126.978991", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Leema Building" + }, + { + "id": "328090", + "ident": "KR-0740", + "type": "heliport", + "name": "Gwanghwamun State Tower Building Heliport", + "latitude_deg": "37.572304", + "longitude_deg": "126.979959", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Gwanghwamun State Tower Building" + }, + { + "id": "328091", + "ident": "KR-0741", + "type": "heliport", + "name": "Le Meilleur Jongno Town Apartments Heliport", + "latitude_deg": "37.570902", + "longitude_deg": "126.979891", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Le Meilleur Jongno Town" + }, + { + "id": "328093", + "ident": "KR-0742", + "type": "heliport", + "name": "Tower 8 Apartments Heliport", + "latitude_deg": "37.570941", + "longitude_deg": "126.98049", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Tower 8 Apartment" + }, + { + "id": "328094", + "ident": "KR-0743", + "type": "heliport", + "name": "Gran Seoul Office Tower Heliport", + "latitude_deg": "37.57099", + "longitude_deg": "126.981582", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Gran Seoul Office Tower" + }, + { + "id": "328095", + "ident": "KR-0744", + "type": "heliport", + "name": "Standard Chartered Bank-Korea Heliport", + "latitude_deg": "37.571266", + "longitude_deg": "126.982681", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Standard Chartered Bank-Korea" + }, + { + "id": "328096", + "ident": "KR-0745", + "type": "heliport", + "name": "Jong-ro Tower Heliport", + "latitude_deg": "37.571109", + "longitude_deg": "126.98374", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Jong-ro Tower" + }, + { + "id": "328097", + "ident": "KR-0746", + "type": "heliport", + "name": "Seorin Building Heliport", + "latitude_deg": "37.570163", + "longitude_deg": "126.980239", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Seorin Building" + }, + { + "id": "328098", + "ident": "KR-0747", + "type": "heliport", + "name": "Koreana Hotel Heliport", + "latitude_deg": "37.568468", + "longitude_deg": "126.976598", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Koreana Hotel" + }, + { + "id": "328099", + "ident": "KR-0748", + "type": "heliport", + "name": "Seoul Finance Center Heliport", + "latitude_deg": "37.568615", + "longitude_deg": "126.978331", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Seoul Finance Center" + }, + { + "id": "328100", + "ident": "KR-0749", + "type": "heliport", + "name": "Hanmi Building Heliport", + "latitude_deg": "37.56874", + "longitude_deg": "126.98012", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hanmi Building" + }, + { + "id": "328101", + "ident": "KR-0750", + "type": "heliport", + "name": "ROK Ministry of Culture & Tourism Heliport", + "latitude_deg": "37.568674", + "longitude_deg": "126.980756", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Ministry of Culture & Tourism" + }, + { + "id": "328107", + "ident": "KR-0751", + "type": "heliport", + "name": "LG Dadong Building Heliport", + "latitude_deg": "37.568554", + "longitude_deg": "126.982251", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "LG Dadong" + }, + { + "id": "328108", + "ident": "KR-0752", + "type": "heliport", + "name": "Centre Place Heliport", + "latitude_deg": "37.567323", + "longitude_deg": "126.980348", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Centre Place" + }, + { + "id": "328109", + "ident": "KR-0753", + "type": "heliport", + "name": "Kolon Building Heliport", + "latitude_deg": "37.567873", + "longitude_deg": "126.978747", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Kolon Building" + }, + { + "id": "328110", + "ident": "KR-0754", + "type": "heliport", + "name": "Korea Press Center Heliport", + "latitude_deg": "37.567547", + "longitude_deg": "126.977879", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Korea Press Center" + }, + { + "id": "328111", + "ident": "KR-0755", + "type": "heliport", + "name": "President Hotel Heliport", + "latitude_deg": "37.565753", + "longitude_deg": "126.979464", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "President Hotel" + }, + { + "id": "328112", + "ident": "KR-0756", + "type": "heliport", + "name": "Bank of Communications Heliport", + "latitude_deg": "37.566578", + "longitude_deg": "126.981029", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Bank of Communications" + }, + { + "id": "328113", + "ident": "KR-0757", + "type": "heliport", + "name": "Lotte Hotel Seoul Heliports", + "latitude_deg": "37.565565", + "longitude_deg": "126.980579", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lotte Hotel Seoul" + }, + { + "id": "328114", + "ident": "KR-0758", + "type": "heliport", + "name": "Lotte Department Store Heliport", + "latitude_deg": "37.565044", + "longitude_deg": "126.981601", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lotte Department Store" + }, + { + "id": "328115", + "ident": "KR-0759", + "type": "heliport", + "name": "Lotte Department Store Avenuel Heliport", + "latitude_deg": "37.564242", + "longitude_deg": "126.981694", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lotte Department Store Avenuel" + }, + { + "id": "328116", + "ident": "KR-0760", + "type": "heliport", + "name": "Westin Chosun Seoul Hotel Heliport", + "latitude_deg": "37.564579", + "longitude_deg": "126.979801", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Westin Chosun Seoul Hotel" + }, + { + "id": "328120", + "ident": "KR-0761", + "type": "heliport", + "name": "Plaza Hotel Seoul Heliport", + "latitude_deg": "37.564735", + "longitude_deg": "126.978406", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Plaza Hotel Seoul" + }, + { + "id": "328121", + "ident": "KR-0762", + "type": "heliport", + "name": "Hanhwa Financial Plaza Heliport", + "latitude_deg": "37.564406", + "longitude_deg": "126.977581", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hanhwa Financial Plaza" + }, + { + "id": "328122", + "ident": "KR-0763", + "type": "heliport", + "name": "Ferrum Tower Heliport", + "latitude_deg": "37.567342", + "longitude_deg": "126.984078", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Ferrum Tower" + }, + { + "id": "328123", + "ident": "KR-0764", + "type": "heliport", + "name": "Regus Seoul Center 1 Heliport", + "latitude_deg": "37.567436", + "longitude_deg": "126.985437", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Regus Seoul Center 1" + }, + { + "id": "328124", + "ident": "KR-0765", + "type": "heliport", + "name": "Mirae Asset Center 1 Heliport", + "latitude_deg": "37.5676", + "longitude_deg": "126.984835", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Mirae Asset Center 1" + }, + { + "id": "328126", + "ident": "KR-0766", + "type": "heliport", + "name": "ROK Army 53rd Logstics Support Group Heliport", + "latitude_deg": "36.403103", + "longitude_deg": "127.351137", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Daejon", + "scheduled_service": "no", + "keywords": "ROK Army 53rd Logstics Support Group" + }, + { + "id": "328127", + "ident": "KR-0767", + "type": "heliport", + "name": "SK T Tower Heliport", + "latitude_deg": "37.566773", + "longitude_deg": "126.985318", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "SK T Tower" + }, + { + "id": "328143", + "ident": "KR-0768", + "type": "heliport", + "name": "Hanhwa Corporation Heliport", + "latitude_deg": "37.567788", + "longitude_deg": "126.986479", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hanhwa Corporation" + }, + { + "id": "328144", + "ident": "KR-0769", + "type": "heliport", + "name": "Ministry of Employment & Labor Heliport", + "latitude_deg": "37.567248", + "longitude_deg": "126.987134", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Ministry of Employment & Labor" + }, + { + "id": "328145", + "ident": "KR-0770", + "type": "heliport", + "name": "Industrial Bank of Korea Heliport", + "latitude_deg": "37.566642", + "longitude_deg": "126.986239", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Industrial Bank of Korea" + }, + { + "id": "328158", + "ident": "KR-0771", + "type": "heliport", + "name": "Samil Building Heliport", + "latitude_deg": "37.568806", + "longitude_deg": "126.98723", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Samil Building" + }, + { + "id": "328159", + "ident": "KR-0772", + "type": "heliport", + "name": "Lotte E&C Apartment Building Heliport", + "latitude_deg": "37.566743", + "longitude_deg": "126.988058", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lotte E&C Apartment Building" + }, + { + "id": "328160", + "ident": "KR-0773", + "type": "heliport", + "name": "Lotte City Hotel Myeongdong Heliport", + "latitude_deg": "37.567217", + "longitude_deg": "126.988101", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lotte City Hotel Myeongdong" + }, + { + "id": "328161", + "ident": "KR-0774", + "type": "heliport", + "name": "Signature Towers Heliports", + "latitude_deg": "37.567661", + "longitude_deg": "126.988193", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Signature Tower" + }, + { + "id": "328162", + "ident": "KR-0775", + "type": "heliport", + "name": "KEB Hana Bank Heliport", + "latitude_deg": "37.565707", + "longitude_deg": "126.985211", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "KEB Hana Bank" + }, + { + "id": "328163", + "ident": "KR-0776", + "type": "heliport", + "name": "Industrial Bank of Korea Heliport", + "latitude_deg": "37.566115", + "longitude_deg": "126.986968", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Industrial Bank of Korea" + }, + { + "id": "328164", + "ident": "KR-0777", + "type": "heliport", + "name": "Jae Young Heliport", + "latitude_deg": "37.565384", + "longitude_deg": "126.986886", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Jae Young" + }, + { + "id": "328165", + "ident": "KR-0778", + "type": "heliport", + "name": "Dongbu Fire Building Heliport", + "latitude_deg": "37.564827", + "longitude_deg": "126.991825", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Dongbu Fire Building" + }, + { + "id": "328166", + "ident": "KR-0779", + "type": "heliport", + "name": "Leisure Town Heliport", + "latitude_deg": "37.562168", + "longitude_deg": "126.995953", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Leisure Town" + }, + { + "id": "328167", + "ident": "KR-0780", + "type": "heliport", + "name": "Namsan Central Xii Apartments Heliports", + "latitude_deg": "37.562656", + "longitude_deg": "126.99756", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Namsan Central Xii Apartment" + }, + { + "id": "328169", + "ident": "KR-0781", + "type": "heliport", + "name": "Kukdong Building Heliport", + "latitude_deg": "37.562046", + "longitude_deg": "126.991063", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Kukdong Building" + }, + { + "id": "328171", + "ident": "KR-0782", + "type": "heliport", + "name": "CJ Food World Heliport", + "latitude_deg": "37.564081", + "longitude_deg": "127.003141", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "CJ Food World" + }, + { + "id": "328172", + "ident": "KR-0783", + "type": "heliport", + "name": "Solaria Hotel Heliport", + "latitude_deg": "37.56283", + "longitude_deg": "126.985271", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Solaria Hotel" + }, + { + "id": "328173", + "ident": "KR-0784", + "type": "heliport", + "name": "Freya Tower Heliport", + "latitude_deg": "37.568933", + "longitude_deg": "127.007908", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Freya Tower" + }, + { + "id": "328174", + "ident": "KR-0785", + "type": "heliport", + "name": "Migliore Dongdaemun Shopping Center Heliport", + "latitude_deg": "37.568224", + "longitude_deg": "127.008303", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Migliore Dongdaemun Shopping Center" + }, + { + "id": "328175", + "ident": "KR-0786", + "type": "heliport", + "name": "Lotte Castle Cheonjin Apartments Heliports", + "latitude_deg": "37.573803", + "longitude_deg": "127.016094", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lotte Castle Cheonjin Apartment" + }, + { + "id": "328176", + "ident": "KR-0787", + "type": "heliport", + "name": "Lotte Castle Venetian Apartments Heliports", + "latitude_deg": "37.571031", + "longitude_deg": "127.021437", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lotte Castle Venetian Apartment" + }, + { + "id": "328177", + "ident": "KR-0788", + "type": "heliport", + "name": "Acro Square Apartments Heliport", + "latitude_deg": "37.566064", + "longitude_deg": "127.021552", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Acro Square Apartment" + }, + { + "id": "328178", + "ident": "KR-0789", + "type": "heliport", + "name": "Hanyang University Hospital Heliport", + "latitude_deg": "37.559768", + "longitude_deg": "127.044128", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hanyang University Hospital" + }, + { + "id": "328180", + "ident": "KR-0790", + "type": "heliport", + "name": "Guri Heliport", + "latitude_deg": "37.565699", + "longitude_deg": "127.11456", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Guri", + "scheduled_service": "no", + "keywords": "Guri" + }, + { + "id": "328181", + "ident": "KR-0791", + "type": "heliport", + "name": "Evergreen Tower Heliport", + "latitude_deg": "37.542691", + "longitude_deg": "127.101502", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Evergreen Towerf" + }, + { + "id": "328182", + "ident": "KR-0792", + "type": "heliport", + "name": "Samsung Cherville Apartments Heliport", + "latitude_deg": "37.540381", + "longitude_deg": "127.095454", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Samsung Cherville Apartment" + }, + { + "id": "328183", + "ident": "KR-0793", + "type": "heliport", + "name": "Prime Center Heliport", + "latitude_deg": "37.535541", + "longitude_deg": "127.096426", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Prime Center" + }, + { + "id": "328185", + "ident": "KR-0794", + "type": "heliport", + "name": "Acroriver Apartment Complex Heliports", + "latitude_deg": "37.536855", + "longitude_deg": "127.093805", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Acroriver Apartment Complex" + }, + { + "id": "328186", + "ident": "KR-0795", + "type": "heliport", + "name": "Sharp Star City Apartment Complex Heliports", + "latitude_deg": "37.53855", + "longitude_deg": "127.072265", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Sharp Star City Apartment" + }, + { + "id": "328187", + "ident": "KR-0796", + "type": "heliport", + "name": "The Classic 500 Apartment Complex Heliports", + "latitude_deg": "37.538997", + "longitude_deg": "127.071079", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "The Classic 500" + }, + { + "id": "328188", + "ident": "KR-0797", + "type": "heliport", + "name": "Samsung Trapalace Apartment Complex Heliport", + "latitude_deg": "37.531884", + "longitude_deg": "127.068291", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Samsung Trapalace" + }, + { + "id": "328189", + "ident": "KR-0798", + "type": "heliport", + "name": "Hillstate Apartment Complex Heliport", + "latitude_deg": "37.541493", + "longitude_deg": "127.051964", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hillstate Apartment" + }, + { + "id": "328190", + "ident": "KR-0799", + "type": "heliport", + "name": "Seoul Forest Kolon Digital Tower Heliport", + "latitude_deg": "37.542737", + "longitude_deg": "127.052196", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Seoul Forest Kolon Digital Tower" + }, + { + "id": "328191", + "ident": "KR-0800", + "type": "heliport", + "name": "Shinsegae E-Mart Seongsu Discount Store Heliport", + "latitude_deg": "37.540153", + "longitude_deg": "127.052831", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Shinsegae E-Mart Seongsu" + }, + { + "id": "328192", + "ident": "KR-0801", + "type": "heliport", + "name": "Academy Tower Heliport", + "latitude_deg": "37.545355", + "longitude_deg": "127.057828", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Academy Tower" + }, + { + "id": "328194", + "ident": "KR-0802", + "type": "heliport", + "name": "2001 Fashion & Life Store Heliport", + "latitude_deg": "37.541354", + "longitude_deg": "127.126587", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "2001 Fashion & Life Store" + }, + { + "id": "328195", + "ident": "KR-0803", + "type": "heliport", + "name": "Daewoo Han River Benesse Apartments Heliport", + "latitude_deg": "37.540713", + "longitude_deg": "127.12574", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Daewoo Han River Benesse Apartment" + }, + { + "id": "328196", + "ident": "KR-0804", + "type": "heliport", + "name": "Prague Theater Wedding Heliport", + "latitude_deg": "37.536156", + "longitude_deg": "127.13415", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Prague Theater Wedding" + }, + { + "id": "328197", + "ident": "KR-0805", + "type": "heliport", + "name": "Familie Apartments Heliports", + "latitude_deg": "37.5372", + "longitude_deg": "127.134618", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Familie Apartment" + }, + { + "id": "328200", + "ident": "KR-0806", + "type": "heliport", + "name": "Hanshin Jamsil Koa Apartments Heliport", + "latitude_deg": "37.516428", + "longitude_deg": "127.104216", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hanshin Jamsil Koa Apartment" + }, + { + "id": "328201", + "ident": "KR-0807", + "type": "heliport", + "name": "Jamsil Shop Star Park Apartments Heliports", + "latitude_deg": "37.516972", + "longitude_deg": "127.102008", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Jamsil Shop Star Park Apartment" + }, + { + "id": "328202", + "ident": "KR-0808", + "type": "heliport", + "name": "Samsung SDS HQ Heliport", + "latitude_deg": "37.516736", + "longitude_deg": "127.101409", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Samsung SDS" + }, + { + "id": "328203", + "ident": "KR-0809", + "type": "heliport", + "name": "Hanbat Plaza Heliport", + "latitude_deg": "37.515498", + "longitude_deg": "127.099855", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hanbat Plaza" + }, + { + "id": "328204", + "ident": "KR-0810", + "type": "heliport", + "name": "World Tower Heliport", + "latitude_deg": "37.515376", + "longitude_deg": "127.100145", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "World Tower" + }, + { + "id": "328205", + "ident": "KR-0811", + "type": "heliport", + "name": "Lotte Castle Apartments Heliports", + "latitude_deg": "37.515047", + "longitude_deg": "127.101109", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lotte Castle Apartment" + }, + { + "id": "328206", + "ident": "KR-0812", + "type": "heliport", + "name": "Hyundai Tower Apartments Heliport", + "latitude_deg": "37.514911", + "longitude_deg": "127.103146", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hyundai Tower" + }, + { + "id": "328226", + "ident": "KR-0813", + "type": "heliport", + "name": "Luther Center Heliport", + "latitude_deg": "37.51552", + "longitude_deg": "127.103166", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Luther Center" + }, + { + "id": "328227", + "ident": "KR-0814", + "type": "heliport", + "name": "Ssangyong Engineering & Construction Company Heliport", + "latitude_deg": "37.515435", + "longitude_deg": "127.103789", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Ssangyong Engineering & Construction" + }, + { + "id": "328228", + "ident": "KR-0815", + "type": "heliport", + "name": "Lotte Hotel World Heliport", + "latitude_deg": "37.511393", + "longitude_deg": "127.099821", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lotte Hotel World" + }, + { + "id": "328229", + "ident": "KR-0816", + "type": "heliport", + "name": "Lotte Department Store Jamsil Heliport", + "latitude_deg": "37.512386", + "longitude_deg": "127.099031", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lotte Department Store Jamsil" + }, + { + "id": "328230", + "ident": "KR-0817", + "type": "heliport", + "name": "Star River Apartments Heliport", + "latitude_deg": "37.517923", + "longitude_deg": "127.105334", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Star River Apartment" + }, + { + "id": "328231", + "ident": "KR-0818", + "type": "heliport", + "name": "I’Space Apartments Heliport", + "latitude_deg": "37.517078", + "longitude_deg": "127.106113", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "I’Space Apartment" + }, + { + "id": "328234", + "ident": "KR-0819", + "type": "heliport", + "name": "Galleria Palace Tower A Heliport", + "latitude_deg": "37.511419", + "longitude_deg": "127.093988", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Galleria Palace Apartment" + }, + { + "id": "328235", + "ident": "KR-0820", + "type": "heliport", + "name": "National Intelligence Service Heliport", + "latitude_deg": "37.465398", + "longitude_deg": "127.077511", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "National Intelligence Center" + }, + { + "id": "328245", + "ident": "KR-0821", + "type": "heliport", + "name": "Residencia Apartments Heliports", + "latitude_deg": "37.518589", + "longitude_deg": "126.93931", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Residencia Apartment" + }, + { + "id": "328246", + "ident": "KR-0822", + "type": "heliport", + "name": "Life Combi Apartments Heliport", + "latitude_deg": "37.519", + "longitude_deg": "126.939012", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Life Combi Apartment" + }, + { + "id": "328248", + "ident": "KR-0823", + "type": "heliport", + "name": "Brown Stone Apartments Heliport", + "latitude_deg": "37.519658", + "longitude_deg": "126.938644", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Brown Stone Apartment" + }, + { + "id": "328249", + "ident": "KR-0824", + "type": "heliport", + "name": "Daewoo Trump World II Heliports", + "latitude_deg": "37.517736", + "longitude_deg": "126.927589", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Daewoo Trump World II" + }, + { + "id": "328250", + "ident": "KR-0825", + "type": "heliport", + "name": "Daewoo Trump World I Heliports", + "latitude_deg": "37.517785", + "longitude_deg": "126.931964", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Daewoo Trump World I" + }, + { + "id": "328251", + "ident": "KR-0826", + "type": "heliport", + "name": "Yeouido Xi Apartments Heliports", + "latitude_deg": "37.518104", + "longitude_deg": "126.925977", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Yeouido Xi Apartment" + }, + { + "id": "328286", + "ident": "KR-0827", + "type": "heliport", + "name": "Alianz Life Marketing Building Heliport", + "latitude_deg": "37.518997", + "longitude_deg": "126.927739", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Alianz Life Marketing" + }, + { + "id": "328287", + "ident": "KR-0828", + "type": "heliport", + "name": "Korea Financial Investment Association Heliport", + "latitude_deg": "37.519172", + "longitude_deg": "126.927609", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Korea Financial Investment Association" + }, + { + "id": "328288", + "ident": "KR-0829", + "type": "heliport", + "name": "Lotte Castle Empire Apartments Heliports", + "latitude_deg": "37.520261", + "longitude_deg": "126.926596", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lotte Castle Empire Apartment" + }, + { + "id": "328290", + "ident": "KR-0830", + "type": "heliport", + "name": "Yeouido Department Store Heliport", + "latitude_deg": "37.52077", + "longitude_deg": "126.927028", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Yeouido Department Store" + }, + { + "id": "328291", + "ident": "KR-0831", + "type": "heliport", + "name": "Kookmin Bank HQ Heliport", + "latitude_deg": "37.521006", + "longitude_deg": "126.92781", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Kookmin Bank HQ" + }, + { + "id": "328292", + "ident": "KR-0832", + "type": "heliport", + "name": "Korea Insurance Development Institute (KIDI) Heliport", + "latitude_deg": "37.521558", + "longitude_deg": "126.92598", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Korea Insurance Development Institute, KIDI" + }, + { + "id": "328293", + "ident": "KR-0833", + "type": "heliport", + "name": "Korea Stock Exchange (KRX) Heliport", + "latitude_deg": "37.522623", + "longitude_deg": "126.927569", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Korea Stock Exchange, KRX" + }, + { + "id": "328294", + "ident": "KR-0834", + "type": "heliport", + "name": "KOSCOM Heliport", + "latitude_deg": "37.523588", + "longitude_deg": "126.928517", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "KOSCOM" + }, + { + "id": "328295", + "ident": "KR-0835", + "type": "heliport", + "name": "Mirae Asset Daewoo Yeouido Heliport", + "latitude_deg": "37.522455", + "longitude_deg": "126.929759", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Mirae Asset Daewoo Yeouido" + }, + { + "id": "328296", + "ident": "KR-0836", + "type": "heliport", + "name": "Nong Hyup Foundation Heliport", + "latitude_deg": "37.522137", + "longitude_deg": "126.930048", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Nong Hyup Foundation" + }, + { + "id": "328297", + "ident": "KR-0837", + "type": "heliport", + "name": "Miwon Building Heliport", + "latitude_deg": "37.521583", + "longitude_deg": "126.930719", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Miwon Building" + }, + { + "id": "328298", + "ident": "KR-0838", + "type": "heliport", + "name": "Kyobo Securities Building Heliport", + "latitude_deg": "37.522698", + "longitude_deg": "126.924577", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Kyobo Securities" + }, + { + "id": "328299", + "ident": "KR-0839", + "type": "heliport", + "name": "S-Trenue Building Heliport", + "latitude_deg": "37.52282", + "longitude_deg": "126.924056", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Trenue" + }, + { + "id": "328303", + "ident": "KR-0840", + "type": "heliport", + "name": "Hanjin Shipping Building Heliport", + "latitude_deg": "37.523543", + "longitude_deg": "126.925512", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hanjin Shipping" + }, + { + "id": "328304", + "ident": "KR-0841", + "type": "heliport", + "name": "Coryo Finance Center Heliport", + "latitude_deg": "37.523348", + "longitude_deg": "126.923429", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hanhwa Investment & Securities" + }, + { + "id": "328305", + "ident": "KR-0842", + "type": "heliport", + "name": "Samsung Life Insurance Building Heliport", + "latitude_deg": "37.523769", + "longitude_deg": "126.923869", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Samsung Life Insurance" + }, + { + "id": "328308", + "ident": "KR-0843", + "type": "heliport", + "name": "HMC Building Heliport", + "latitude_deg": "37.523957", + "longitude_deg": "126.924129", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "HMC" + }, + { + "id": "328309", + "ident": "KR-0844", + "type": "heliport", + "name": "SKC Chemical Division HQ Heliport", + "latitude_deg": "37.52429", + "longitude_deg": "126.924392", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "SKC Chemical" + }, + { + "id": "328312", + "ident": "KR-0845", + "type": "heliport", + "name": "KMI Building Heliport", + "latitude_deg": "37.524411", + "longitude_deg": "126.924787", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "KMI" + }, + { + "id": "328321", + "ident": "KR-0846", + "type": "heliport", + "name": "Three International Finance Centre Heliport", + "latitude_deg": "37.524976", + "longitude_deg": "126.925807", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "IFC Office Tower" + }, + { + "id": "328322", + "ident": "KR-0847", + "type": "heliport", + "name": "Shinhan Good Morning Securities Heliport", + "latitude_deg": "37.524835", + "longitude_deg": "126.924181", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Shinhan Investment Corporation" + }, + { + "id": "328323", + "ident": "KR-0848", + "type": "heliport", + "name": "Hana Securities Building Heliport", + "latitude_deg": "37.524535", + "longitude_deg": "126.923705", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hana Daetan Securities" + }, + { + "id": "328324", + "ident": "KR-0849", + "type": "heliport", + "name": "Hyundai Securities Heliport", + "latitude_deg": "37.524233", + "longitude_deg": "126.923217", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "NH Securities & Investment" + }, + { + "id": "328326", + "ident": "KR-0850", + "type": "heliport", + "name": "Hanhwa Securities Heliport", + "latitude_deg": "37.524047", + "longitude_deg": "126.922862", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Woori Investment & Securities" + }, + { + "id": "328332", + "ident": "KR-0851", + "type": "heliport", + "name": "Financial Supervisory Service Heliport", + "latitude_deg": "37.523237", + "longitude_deg": "126.921245", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Financial Supervisory Service" + }, + { + "id": "328333", + "ident": "KR-0852", + "type": "heliport", + "name": "Hana Financial Investment Company Heliport", + "latitude_deg": "37.522876", + "longitude_deg": "126.92196", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hana Financial Investment Company" + }, + { + "id": "328335", + "ident": "KR-0853", + "type": "heliport", + "name": "Industrial Bank of Korea Heliport", + "latitude_deg": "37.522159", + "longitude_deg": "126.922155", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Industrial Bank of Korea Heliport" + }, + { + "id": "328337", + "ident": "KR-0854", + "type": "heliport", + "name": "Mirae Asset Insurance Company Heliport", + "latitude_deg": "37.521783", + "longitude_deg": "126.922782", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Mirae Asset Insurance Company" + }, + { + "id": "328338", + "ident": "KR-0855", + "type": "heliport", + "name": "Korea Telecommunications (KT) Building Heliport", + "latitude_deg": "37.521923", + "longitude_deg": "126.919062", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Korea Telecommunications, KT" + }, + { + "id": "328339", + "ident": "KR-0856", + "type": "heliport", + "name": "Marriott Executive Apartments - Yeouido Centre Heliports", + "latitude_deg": "37.521261", + "longitude_deg": "126.918679", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Marriott Executive Apartment, Yeouido Centre" + }, + { + "id": "328343", + "ident": "KR-0857", + "type": "heliport", + "name": "Korea Broadcasting System (KBS) Heliport", + "latitude_deg": "37.524159", + "longitude_deg": "126.916573", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Korea Broadcasting System, KBS" + }, + { + "id": "328344", + "ident": "KR-0858", + "type": "heliport", + "name": "Korea Development Bank Heliport", + "latitude_deg": "37.52733", + "longitude_deg": "126.920798", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Korea Development Bank" + }, + { + "id": "328345", + "ident": "KR-0859", + "type": "heliport", + "name": "LG Twin Towers West Heliport", + "latitude_deg": "37.527655", + "longitude_deg": "126.928671", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "LG Twin Tower" + }, + { + "id": "328348", + "ident": "KR-0860", + "type": "heliport", + "name": "Kukmin Ilbo Heliport", + "latitude_deg": "37.529329", + "longitude_deg": "126.924943", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Kukmin Ilbo" + }, + { + "id": "328349", + "ident": "KR-0861", + "type": "heliport", + "name": "Times Square Heliport", + "latitude_deg": "37.517573", + "longitude_deg": "126.902626", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Times Square" + }, + { + "id": "328358", + "ident": "KR-0862", + "type": "heliport", + "name": "Ace Hi-Tech City Heliport", + "latitude_deg": "37.515109", + "longitude_deg": "126.89971", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Ace Hi-Tech City" + }, + { + "id": "328359", + "ident": "KR-0863", + "type": "heliport", + "name": "Ahyitieseu Engineering Heliport", + "latitude_deg": "37.514465", + "longitude_deg": "126.898641", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Ahyitieseu Engineering" + }, + { + "id": "328373", + "ident": "KR-0864", + "type": "heliport", + "name": "SK Readers View Apartments Heliports", + "latitude_deg": "37.517657", + "longitude_deg": "126.899565", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "SK Readers View Apartment" + }, + { + "id": "328374", + "ident": "KR-0865", + "type": "heliport", + "name": "Lotte Tower Heliport", + "latitude_deg": "37.537474", + "longitude_deg": "126.892669", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lotte Tower" + }, + { + "id": "328375", + "ident": "KR-0866", + "type": "heliport", + "name": "Bongyoung Green Town 3rd Apartment Heliport", + "latitude_deg": "37.537", + "longitude_deg": "126.882065", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Bongyoung Green Town 3rd Apartment" + }, + { + "id": "328376", + "ident": "KR-0867", + "type": "heliport", + "name": "Boo Young II Apartment Heliport", + "latitude_deg": "37.536652", + "longitude_deg": "126.880968", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Boo Young II Apartment" + }, + { + "id": "328377", + "ident": "KR-0868", + "type": "heliport", + "name": "Hyundai World Tower Heliport", + "latitude_deg": "37.536191", + "longitude_deg": "126.877869", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hyundai World Tower" + }, + { + "id": "328378", + "ident": "KR-0869", + "type": "heliport", + "name": "Seonyu IS Biz Tower Heliport", + "latitude_deg": "37.536221", + "longitude_deg": "126.891843", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Seonyu IS Biz Tower" + }, + { + "id": "328379", + "ident": "KR-0870", + "type": "heliport", + "name": "Woorim Intelligence Center Heliport", + "latitude_deg": "37.525831", + "longitude_deg": "126.888124", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Woorim Intelligence Center" + }, + { + "id": "328380", + "ident": "KR-0871", + "type": "heliport", + "name": "Tangshan SKV1 Center Heliports", + "latitude_deg": "37.530808", + "longitude_deg": "126.898693", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Tangshan SKV1 Center" + }, + { + "id": "328381", + "ident": "KR-0872", + "type": "heliport", + "name": "Brown Stone Apartments Heliport", + "latitude_deg": "37.519658", + "longitude_deg": "126.938644", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Brown Stone Apartment" + }, + { + "id": "328382", + "ident": "KR-0873", + "type": "heliport", + "name": "Hyundai 41 Tower Heliport", + "latitude_deg": "37.528266", + "longitude_deg": "126.875566", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hyundai 41 Tower" + }, + { + "id": "328383", + "ident": "KR-0874", + "type": "heliport", + "name": "CBS Building Heliport", + "latitude_deg": "37.528358", + "longitude_deg": "126.874963", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "CBS Building" + }, + { + "id": "328384", + "ident": "KR-0875", + "type": "heliport", + "name": "SBS Broadcasting Centre Heliport", + "latitude_deg": "37.529116", + "longitude_deg": "126.873329", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "SBS Broadcasting Centre" + }, + { + "id": "328386", + "ident": "KR-0876", + "type": "heliport", + "name": "KT Center Building Heliport", + "latitude_deg": "37.529572", + "longitude_deg": "126.871444", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "KT Center" + }, + { + "id": "328387", + "ident": "KR-0877", + "type": "heliport", + "name": "Seoul Mobile Communication Building Heliport", + "latitude_deg": "37.527844", + "longitude_deg": "126.871727", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Seoul Mobile Communication" + }, + { + "id": "328388", + "ident": "KR-0878", + "type": "heliport", + "name": "Hyundai Dream Tower Heliport", + "latitude_deg": "37.527563", + "longitude_deg": "126.871505", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hyundai Dream Tower" + }, + { + "id": "328389", + "ident": "KR-0879", + "type": "heliport", + "name": "Korea Broadcasters Center Heliport", + "latitude_deg": "37.5272", + "longitude_deg": "126.871413", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Korea Broadcasters Center" + }, + { + "id": "328391", + "ident": "KR-0880", + "type": "heliport", + "name": "Mokdong Trapalace Western Avenue Apartments Heliports", + "latitude_deg": "37.525782", + "longitude_deg": "126.871123", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Mokdong Trapalace Western Avenue Apartment" + }, + { + "id": "328392", + "ident": "KR-0881", + "type": "heliport", + "name": "Mokdong Hyperion 2nd Apartments Heliports", + "latitude_deg": "37.524952", + "longitude_deg": "126.870707", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Mokdong Hyperion 2nd Apartment" + }, + { + "id": "328393", + "ident": "KR-0882", + "type": "heliport", + "name": "Mokdong Samsung Cherville 1st Apartments Heliport", + "latitude_deg": "37.522553", + "longitude_deg": "126.870131", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Mokdong Samsung Cherville 1st Apartment" + }, + { + "id": "328394", + "ident": "KR-0883", + "type": "heliport", + "name": "Mokdong Samsung Cherville 2nd Apartments Heliports", + "latitude_deg": "37.521525", + "longitude_deg": "126.870348", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Mokdong Samsung Cherville 2nd Apartment" + }, + { + "id": "328395", + "ident": "KR-0884", + "type": "heliport", + "name": "Hyundai Hyperion Tower 1 Apartments Heliports", + "latitude_deg": "37.527385", + "longitude_deg": "126.875342", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hyundai Hyperion Tower 1 Apartment" + }, + { + "id": "328396", + "ident": "KR-0885", + "type": "heliport", + "name": "Mokdong Isabella Apartments Heliport", + "latitude_deg": "37.516164", + "longitude_deg": "126.862504", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Mokdong Isabella Apartment" + }, + { + "id": "328397", + "ident": "KR-0886", + "type": "heliport", + "name": "D Cube City Apartments Heliports", + "latitude_deg": "37.508277", + "longitude_deg": "126.888493", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "D Cube City Apartment" + }, + { + "id": "328399", + "ident": "KR-0887", + "type": "heliport", + "name": "West Finance Center Heliport", + "latitude_deg": "37.507924", + "longitude_deg": "126.890202", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "West Finance Center" + }, + { + "id": "328400", + "ident": "KR-0888", + "type": "heliport", + "name": "Sindorim Forceville Apartments Heliport", + "latitude_deg": "37.505597", + "longitude_deg": "126.891411", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Sindorim Forceville Apartment" + }, + { + "id": "328401", + "ident": "KR-0889", + "type": "heliport", + "name": "Parkville Apartments Heliport", + "latitude_deg": "37.500545", + "longitude_deg": "126.889823", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Parkville Apartment" + }, + { + "id": "328402", + "ident": "KR-0890", + "type": "heliport", + "name": "Euro Paratel Motel Heliport", + "latitude_deg": "37.5001", + "longitude_deg": "126.891913", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Euro Paratel Motel" + }, + { + "id": "328409", + "ident": "KR-0891", + "type": "heliport", + "name": "7 Springs Building Heliport", + "latitude_deg": "37.48539", + "longitude_deg": "126.894901", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "7 Springs Building" + }, + { + "id": "328410", + "ident": "KR-0892", + "type": "heliport", + "name": "Daeryung Post Tower 2nd Heliport", + "latitude_deg": "37.485879", + "longitude_deg": "126.89758", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Daeryung Post Tower 2nd" + }, + { + "id": "328412", + "ident": "KR-0893", + "type": "heliport", + "name": "Woorim Ebiz Center 2nd Heliport", + "latitude_deg": "37.48674", + "longitude_deg": "126.895891", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Woorim Ebiz Center 2nd" + }, + { + "id": "328413", + "ident": "KR-0894", + "type": "heliport", + "name": "Woorim Ebiz Center 1st Heliport", + "latitude_deg": "37.487166", + "longitude_deg": "126.895024", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Woorim Ebiz Center 1st" + }, + { + "id": "328417", + "ident": "KR-0895", + "type": "heliport", + "name": "Daeryung Post Tower 7th Heliport", + "latitude_deg": "37.4873", + "longitude_deg": "126.894422", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Daeryung Post Tower 7th" + }, + { + "id": "328422", + "ident": "KR-0896", + "type": "heliport", + "name": "Lotte City Hotel Guro Heliport", + "latitude_deg": "37.484798", + "longitude_deg": "126.896419", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lotte City Hotel Guro" + }, + { + "id": "328424", + "ident": "KR-0897", + "type": "heliport", + "name": "Kolon Science Valley 2nd Heliport", + "latitude_deg": "37.484428", + "longitude_deg": "126.899192", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Kolon Science Valley 2nd" + }, + { + "id": "328435", + "ident": "KR-0898", + "type": "heliport", + "name": "Daeryung Post Tower I Heliport", + "latitude_deg": "37.483472", + "longitude_deg": "126.895307", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Daeryung Post Tower I" + }, + { + "id": "328436", + "ident": "KR-0899", + "type": "heliport", + "name": "Seoul Industry Information Education Center Heliport", + "latitude_deg": "37.483458", + "longitude_deg": "126.896467", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Seoul Industry Information Education Center" + }, + { + "id": "328437", + "ident": "KR-0900", + "type": "heliport", + "name": "Hanshin Tower Heliport", + "latitude_deg": "37.482542", + "longitude_deg": "126.894383", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hanshin Tower" + }, + { + "id": "328438", + "ident": "KR-0901", + "type": "heliport", + "name": "Ace Techno Tower Heliport", + "latitude_deg": "37.482319", + "longitude_deg": "126.89504", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Ace Techno Tower" + }, + { + "id": "328440", + "ident": "KR-0902", + "type": "heliport", + "name": "Ace High-End Tower 2 Heliport", + "latitude_deg": "37.481376", + "longitude_deg": "126.895295", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Ace High-End Tower 2" + }, + { + "id": "328441", + "ident": "KR-0903", + "type": "heliport", + "name": "Ace High-End Tower Heliport", + "latitude_deg": "37.481454", + "longitude_deg": "126.893173", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Ace High-End Tower Heliport" + }, + { + "id": "328442", + "ident": "KR-0904", + "type": "heliport", + "name": "Ace Techno Tower V Heliport", + "latitude_deg": "37.481051", + "longitude_deg": "126.892573", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Ace Techno Tower V" + }, + { + "id": "328443", + "ident": "KR-0905", + "type": "heliport", + "name": "Daeryung Post Tower 6th Heliport", + "latitude_deg": "37.48165", + "longitude_deg": "126.883703", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Daeryung Post Tower 6" + }, + { + "id": "328444", + "ident": "KR-0906", + "type": "heliport", + "name": "Daeryung Post Tower 5th Heliport", + "latitude_deg": "37.481148", + "longitude_deg": "126.886353", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Daeryung Post Tower 5" + }, + { + "id": "328445", + "ident": "KR-0907", + "type": "heliport", + "name": "Leaders Tower Heliport", + "latitude_deg": "37.480451", + "longitude_deg": "126.884263", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Leaders Tower" + }, + { + "id": "328446", + "ident": "KR-0908", + "type": "heliport", + "name": "SJ Building Heliport", + "latitude_deg": "37.479373", + "longitude_deg": "126.884687", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "SJ Building" + }, + { + "id": "328447", + "ident": "KR-0909", + "type": "heliport", + "name": "ENC Dream Tower 7 Heliports", + "latitude_deg": "37.479494", + "longitude_deg": "126.887648", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "ENC Dream Tower 7" + }, + { + "id": "328448", + "ident": "KR-0910", + "type": "heliport", + "name": "Mario Outlet III Heliport", + "latitude_deg": "37.478944", + "longitude_deg": "126.885996", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Mario Outlet III" + }, + { + "id": "328449", + "ident": "KR-0911", + "type": "heliport", + "name": "World Meridian Venture Center 1st Heliport", + "latitude_deg": "37.477938", + "longitude_deg": "126.885644", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "World Meridian Venture Center 1" + }, + { + "id": "328450", + "ident": "KR-0912", + "type": "heliport", + "name": "Byeoksan Digital Valley V Heliport", + "latitude_deg": "37.476809", + "longitude_deg": "126.885791", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Byeoksan Digital Valley V" + }, + { + "id": "328451", + "ident": "KR-0913", + "type": "heliport", + "name": "Ace High-End Tower 6 Heliport", + "latitude_deg": "37.476173", + "longitude_deg": "126.886198", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Ace High-End Tower 6" + }, + { + "id": "328452", + "ident": "KR-0914", + "type": "heliport", + "name": "Daimyung 8th (Hoimyung) Heliport", + "latitude_deg": "37.485568", + "longitude_deg": "126.877308", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Daimyung 8th (Hoimyung)" + }, + { + "id": "328456", + "ident": "KR-0915", + "type": "heliport", + "name": "Byeoksan Digital Valley 2nd Heliport", + "latitude_deg": "37.484508", + "longitude_deg": "126.878047", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Byeoksan Digital Valley 2nd" + }, + { + "id": "328457", + "ident": "KR-0916", + "type": "heliport", + "name": "Byuksan Digital Valley VI Heliport", + "latitude_deg": "37.484526", + "longitude_deg": "126.878779", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Byuksan Digital Valley VI" + }, + { + "id": "328458", + "ident": "KR-0917", + "type": "heliport", + "name": "Kolon Digital Tower Aston Heliport", + "latitude_deg": "37.48452", + "longitude_deg": "126.880602", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Kolon Digital Tower Aston" + }, + { + "id": "328459", + "ident": "KR-0918", + "type": "heliport", + "name": "World Meridian Venture Center 2nd Heliport", + "latitude_deg": "37.478743", + "longitude_deg": "126.878464", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "World Meridian Venture Center 2nd" + }, + { + "id": "328460", + "ident": "KR-0919", + "type": "heliport", + "name": "Halla Sigma Valley Heliport", + "latitude_deg": "37.472894", + "longitude_deg": "126.88116", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Halla Sigma Valley" + }, + { + "id": "328461", + "ident": "KR-0920", + "type": "heliport", + "name": "LG Research Institute Heliport", + "latitude_deg": "37.470444", + "longitude_deg": "126.884958", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "LG Research Institute" + }, + { + "id": "328462", + "ident": "KR-0921", + "type": "heliport", + "name": "Daerung 12th Techno Town Heliport", + "latitude_deg": "37.469519", + "longitude_deg": "126.884334", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Daerung 12th Techno Town" + }, + { + "id": "328463", + "ident": "KR-0922", + "type": "heliport", + "name": "Digital Empire Building Heliport", + "latitude_deg": "37.465689", + "longitude_deg": "126.887605", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Digital Empire Building" + }, + { + "id": "328464", + "ident": "KR-0923", + "type": "heliport", + "name": "Duck Sung M & P Building Heliport", + "latitude_deg": "37.467744", + "longitude_deg": "126.886516", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Duck Sung M & P" + }, + { + "id": "328465", + "ident": "KR-0924", + "type": "heliport", + "name": "Partners Tower 1 Heliport", + "latitude_deg": "37.468412", + "longitude_deg": "126.886218", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Partners Tower 1" + }, + { + "id": "328468", + "ident": "KR-0925", + "type": "heliport", + "name": "Daeryung Post Tower 17th Heliport", + "latitude_deg": "37.468808", + "longitude_deg": "126.887503", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Daeryung Post Tower 17th" + }, + { + "id": "328469", + "ident": "KR-0926", + "type": "heliport", + "name": "Ace High-End Tower 8 Heliport", + "latitude_deg": "37.473604", + "longitude_deg": "126.885505", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Ace High-End Tower 8" + }, + { + "id": "328470", + "ident": "KR-0927", + "type": "heliport", + "name": "Namsung Plaza Heliport", + "latitude_deg": "37.475566", + "longitude_deg": "126.881924", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Namsung Plaza" + }, + { + "id": "328471", + "ident": "KR-0928", + "type": "heliport", + "name": "Lotte IT Castle 1 Dong Heliport", + "latitude_deg": "37.47666", + "longitude_deg": "126.881533", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lotte IT Castle 1 Dong" + }, + { + "id": "328472", + "ident": "KR-0929", + "type": "heliport", + "name": "BYC High City Heliport", + "latitude_deg": "37.477155", + "longitude_deg": "126.881911", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "BYC High City" + }, + { + "id": "328473", + "ident": "KR-0930", + "type": "heliport", + "name": "Lotte IT Castle 2 Dong Heliport", + "latitude_deg": "37.477339", + "longitude_deg": "126.881219", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lotte IT Castle 2 Dong" + }, + { + "id": "328474", + "ident": "KR-0931", + "type": "heliport", + "name": "IT Castle 2nd Heliport", + "latitude_deg": "37.477572", + "longitude_deg": "126.882254", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "IT Castle 2nd" + }, + { + "id": "328482", + "ident": "KR-0932", + "type": "heliport", + "name": "STX-V Tower Heliport", + "latitude_deg": "37.477386", + "longitude_deg": "126.883559", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "STX-V Tower" + }, + { + "id": "328483", + "ident": "KR-0933", + "type": "heliport", + "name": "Ace High-End Tower 3 Heliport", + "latitude_deg": "37.478093", + "longitude_deg": "126.881395", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Ace High-End Tower 3" + }, + { + "id": "328484", + "ident": "KR-0934", + "type": "heliport", + "name": "Lions Valley Heliports", + "latitude_deg": "37.479143", + "longitude_deg": "126.883027", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lions Valley" + }, + { + "id": "328485", + "ident": "KR-0935", + "type": "heliport", + "name": "Lions Outlet Heliport", + "latitude_deg": "37.4807", + "longitude_deg": "126.882166", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lions Outlet" + }, + { + "id": "328486", + "ident": "KR-0936", + "type": "heliport", + "name": "Jei Platz Heliport", + "latitude_deg": "37.482155", + "longitude_deg": "126.881507", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Jei Platz" + }, + { + "id": "328487", + "ident": "KR-0937", + "type": "heliport", + "name": "Sammo Tower Heliport", + "latitude_deg": "37.482586", + "longitude_deg": "126.928776", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Sammo Tower" + }, + { + "id": "328488", + "ident": "KR-0938", + "type": "heliport", + "name": "Nasan Suite Building Heliport", + "latitude_deg": "37.490865", + "longitude_deg": "126.923928", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Nasan Suite Building" + }, + { + "id": "328515", + "ident": "KR-0939", + "type": "heliport", + "name": "Lotte Kwanuk Department Store Heliport", + "latitude_deg": "37.490867", + "longitude_deg": "126.924968", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lotte Kwanuk Department Store" + }, + { + "id": "328520", + "ident": "KR-0940", + "type": "heliport", + "name": "Lotte Tower Heliport", + "latitude_deg": "37.491104", + "longitude_deg": "126.923166", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lotte Tower" + }, + { + "id": "328525", + "ident": "KR-0941", + "type": "heliport", + "name": "Boramae Samsung Chereville Heliport", + "latitude_deg": "37.491694", + "longitude_deg": "126.923229", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Boramae Samsung Chereville" + }, + { + "id": "328526", + "ident": "KR-0942", + "type": "heliport", + "name": "Academy Tower Heliport", + "latitude_deg": "37.491636", + "longitude_deg": "126.924118", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Academy Tower" + }, + { + "id": "328527", + "ident": "KR-0943", + "type": "heliport", + "name": "Haitai Boramae Tower Heliport", + "latitude_deg": "37.491345", + "longitude_deg": "126.924801", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Haitai Boramae Tower" + }, + { + "id": "328528", + "ident": "KR-0944", + "type": "heliport", + "name": "Daekyo Education Center Heliport", + "latitude_deg": "37.491169", + "longitude_deg": "126.925522", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Daekyo Education Center" + }, + { + "id": "328529", + "ident": "KR-0945", + "type": "heliport", + "name": "Character Greenville Apartments Heliport", + "latitude_deg": "37.49191", + "longitude_deg": "126.925167", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Character Greenville Apartment" + }, + { + "id": "328530", + "ident": "KR-0946", + "type": "heliport", + "name": "Boramae Woosung Apartments Heliport", + "latitude_deg": "37.49246", + "longitude_deg": "126.925355", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Boramae Woosung Apartment" + }, + { + "id": "328531", + "ident": "KR-0947", + "type": "heliport", + "name": "Professional Construction Mutual Aid Association Heliport", + "latitude_deg": "37.492441", + "longitude_deg": "126.924298", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Professional Construction Mutual Aid Association" + }, + { + "id": "328534", + "ident": "KR-0948", + "type": "heliport", + "name": "Boramae Hyundai Apartments Heliport", + "latitude_deg": "37.492405", + "longitude_deg": "126.923529", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Boramae Hyundai Apartment" + }, + { + "id": "328535", + "ident": "KR-0949", + "type": "heliport", + "name": "Samsung Omni Tower Heliport", + "latitude_deg": "37.492831", + "longitude_deg": "126.92354", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Samsung Omni Tower" + }, + { + "id": "328536", + "ident": "KR-0950", + "type": "heliport", + "name": "Nonshim Heliport", + "latitude_deg": "37.496625", + "longitude_deg": "126.920143", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Nonshim" + }, + { + "id": "328537", + "ident": "KR-0951", + "type": "heliport", + "name": "Sungwon Sangtaeville Apartments Heliports", + "latitude_deg": "37.487729", + "longitude_deg": "126.905989", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Sungwon Sangtaeville Apartment" + }, + { + "id": "328538", + "ident": "KR-0952", + "type": "heliport", + "name": "Dongwon Industrial Company Heliport", + "latitude_deg": "37.477764", + "longitude_deg": "127.043837", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Dongwon Industrial Company" + }, + { + "id": "328539", + "ident": "KR-0953", + "type": "heliport", + "name": "Trust Tower Heliport", + "latitude_deg": "37.477358", + "longitude_deg": "127.043779", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Trust Tower" + }, + { + "id": "328540", + "ident": "KR-0954", + "type": "heliport", + "name": "Character Woosung Apartments Heliports", + "latitude_deg": "37.486369", + "longitude_deg": "127.051614", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Character Woosung Apartment" + }, + { + "id": "328542", + "ident": "KR-0955", + "type": "heliport", + "name": "Vision 21 Heliport", + "latitude_deg": "37.48755", + "longitude_deg": "127.051535", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Vision 21" + }, + { + "id": "328543", + "ident": "KR-0956", + "type": "heliport", + "name": "Samsung Tower Palace 3 Apartments Heliport", + "latitude_deg": "37.487645", + "longitude_deg": "127.052859", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Samsung Tower Palace Apartment" + }, + { + "id": "328546", + "ident": "KR-0957", + "type": "heliport", + "name": "Daelim Acrobil Condominiums Heliports", + "latitude_deg": "37.488482", + "longitude_deg": "127.050705", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Daelim Acrobil Condominium" + }, + { + "id": "328547", + "ident": "KR-0958", + "type": "heliport", + "name": "Academy Sweet Apartments Heliport", + "latitude_deg": "37.489216", + "longitude_deg": "127.052022", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Academy Sweet Apartment" + }, + { + "id": "328548", + "ident": "KR-0959", + "type": "heliport", + "name": "Military Aid Association Heliport", + "latitude_deg": "37.48944", + "longitude_deg": "127.052907", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Military Aid Association" + }, + { + "id": "328549", + "ident": "KR-0960", + "type": "heliport", + "name": "Samsung Engineering Building Heliport", + "latitude_deg": "37.488936", + "longitude_deg": "127.053114", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Samsung Engineering" + }, + { + "id": "328550", + "ident": "KR-0961", + "type": "heliport", + "name": "Samsung Tower Palace Apartments 1 Heliports", + "latitude_deg": "37.48814", + "longitude_deg": "127.054339", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Samsung Tower Palace Apartment" + }, + { + "id": "328551", + "ident": "KR-0962", + "type": "heliport", + "name": "Samsung Tower Palace Apartments 2 Heliports", + "latitude_deg": "37.48991", + "longitude_deg": "127.053967", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Samsung Tower Palace Apartments 2" + }, + { + "id": "328552", + "ident": "KR-0963", + "type": "heliport", + "name": "SK Leaders View Heliport", + "latitude_deg": "37.488549", + "longitude_deg": "127.048704", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "SK Leaders View" + }, + { + "id": "328553", + "ident": "KR-0964", + "type": "heliport", + "name": "Daechi Dongbu Centerville Apartments Heliports", + "latitude_deg": "37.49223", + "longitude_deg": "127.055474", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Daechi Dongbu Centerville Apartment" + }, + { + "id": "328554", + "ident": "KR-0965", + "type": "heliport", + "name": "JW Marriott Hotel Seoul Heliport", + "latitude_deg": "37.50425", + "longitude_deg": "127.004665", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "JW Marriott Hotel Seoul" + }, + { + "id": "328555", + "ident": "KR-0966", + "type": "heliport", + "name": "Seoul St. Mary’s Hospital Heliport", + "latitude_deg": "37.501963", + "longitude_deg": "127.004721", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Seoul St. Mary’s Hospital" + }, + { + "id": "328563", + "ident": "KR-0967", + "type": "heliport", + "name": "Raemian Firstige Apartments Heliports", + "latitude_deg": "37.502815", + "longitude_deg": "127.001996", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Raemian Firstige Apartment" + }, + { + "id": "328566", + "ident": "KR-0968", + "type": "heliport", + "name": "Banpo Xi Apartments Heliports", + "latitude_deg": "37.507964", + "longitude_deg": "127.012135", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Banpo Xi Apartment" + }, + { + "id": "328568", + "ident": "KR-0969", + "type": "heliport", + "name": "Acrovista Building Heliport", + "latitude_deg": "37.499161", + "longitude_deg": "127.012965", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Acrovista Building" + }, + { + "id": "328569", + "ident": "KR-0970", + "type": "heliport", + "name": "Acrovista C Building Heliport", + "latitude_deg": "37.497758", + "longitude_deg": "127.013721", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Acrovista C Building" + }, + { + "id": "328570", + "ident": "KR-0971", + "type": "heliport", + "name": "Seoul High Court & Seoul Central District Court Heliport", + "latitude_deg": "37.496336", + "longitude_deg": "127.011901", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Seoul High Court, Seoul Central District Court" + }, + { + "id": "328571", + "ident": "KR-0972", + "type": "heliport", + "name": "Samsung Seocho Garden Suite Apartments Heliport", + "latitude_deg": "37.494398", + "longitude_deg": "127.026093", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Samsung Seocho Garden Suite Apartment" + }, + { + "id": "328572", + "ident": "KR-0973", + "type": "heliport", + "name": "Seoul Central District Prosecutors’ Office Heliport", + "latitude_deg": "37.495092", + "longitude_deg": "127.007779", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Seoul Central District Prosecutors’ Office" + }, + { + "id": "328573", + "ident": "KR-0974", + "type": "heliport", + "name": "Coatel Heliport", + "latitude_deg": "37.493986", + "longitude_deg": "127.028067", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Coatel" + }, + { + "id": "328581", + "ident": "KR-0975", + "type": "heliport", + "name": "Seocho Woosung 5th Apartments Heliports", + "latitude_deg": "37.494875", + "longitude_deg": "127.026723", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Seocho Woosung 5th Apartment" + }, + { + "id": "328582", + "ident": "KR-0976", + "type": "heliport", + "name": "Edencity Dossi Apartments Heliport", + "latitude_deg": "37.494963", + "longitude_deg": "127.028579", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Edencity Dossi Apartment" + }, + { + "id": "328583", + "ident": "KR-0977", + "type": "heliport", + "name": "Samsung Engineering Research Institute Heliport", + "latitude_deg": "37.495905", + "longitude_deg": "127.026312", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Samsung Engineering Research Institute" + }, + { + "id": "328584", + "ident": "KR-0978", + "type": "heliport", + "name": "Samsung Life Seocho Tower Heliport", + "latitude_deg": "37.496595", + "longitude_deg": "127.025833", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Samsung Life Seocho Tower" + }, + { + "id": "328586", + "ident": "KR-0979", + "type": "heliport", + "name": "Platinum Tower Heliport", + "latitude_deg": "37.496754", + "longitude_deg": "127.025053", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Platinum Tower" + }, + { + "id": "328587", + "ident": "KR-0980", + "type": "heliport", + "name": "Gangnam Building Heliport", + "latitude_deg": "37.49669", + "longitude_deg": "127.02474", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Gangnam Building" + }, + { + "id": "328594", + "ident": "KR-0981", + "type": "heliport", + "name": "Samsung Town Heliport", + "latitude_deg": "37.496773", + "longitude_deg": "127.02725", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Samsung Town" + }, + { + "id": "328595", + "ident": "KR-0982", + "type": "heliport", + "name": "Boutique Monaco Building Heliport", + "latitude_deg": "37.497411", + "longitude_deg": "127.024481", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Boutique Monaco Building" + }, + { + "id": "328596", + "ident": "KR-0983", + "type": "heliport", + "name": "Hyundai Sungwoo Apartments Heliport", + "latitude_deg": "37.498185", + "longitude_deg": "127.024376", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hyundai Sungwoo Apartment" + }, + { + "id": "328597", + "ident": "KR-0984", + "type": "heliport", + "name": "GT Daegak Tower Heliport", + "latitude_deg": "37.497154", + "longitude_deg": "127.027336", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "GT Tower" + }, + { + "id": "328598", + "ident": "KR-0985", + "type": "heliport", + "name": "Meritz Tower Heliport", + "latitude_deg": "37.497132", + "longitude_deg": "127.028677", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Meritz Tower" + }, + { + "id": "328599", + "ident": "KR-0986", + "type": "heliport", + "name": "KTB Network Building Heliport", + "latitude_deg": "37.495233", + "longitude_deg": "127.029789", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "KTB Network Building" + }, + { + "id": "328606", + "ident": "KR-0987", + "type": "heliport", + "name": "Samsung Electronics Seocho Building Heliport", + "latitude_deg": "37.491014", + "longitude_deg": "127.0301", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Samsung Electronics Seocho Building" + }, + { + "id": "328607", + "ident": "KR-0988", + "type": "heliport", + "name": "Hyundai Rexion Heliport", + "latitude_deg": "37.490424", + "longitude_deg": "127.030602", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hyundai Rexion" + }, + { + "id": "328608", + "ident": "KR-0989", + "type": "heliport", + "name": "Tower 837 Building Heliport", + "latitude_deg": "37.491149", + "longitude_deg": "127.031478", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Tower 837 Building" + }, + { + "id": "328609", + "ident": "KR-0990", + "type": "heliport", + "name": "Landmark Tower Heliport", + "latitude_deg": "37.490862", + "longitude_deg": "127.031731", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Landmark Tower" + }, + { + "id": "328610", + "ident": "KR-0991", + "type": "heliport", + "name": "Prudential Tower Heliport", + "latitude_deg": "37.490173", + "longitude_deg": "127.031932", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Prudential Tower" + }, + { + "id": "328611", + "ident": "KR-0992", + "type": "heliport", + "name": "Yeoksam 824 Building Heliport", + "latitude_deg": "37.498424", + "longitude_deg": "127.030115", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Yeoksam 824 Building" + }, + { + "id": "328617", + "ident": "KR-0993", + "type": "heliport", + "name": "Daewoo The-O’Ville Heliport", + "latitude_deg": "37.497776", + "longitude_deg": "127.031205", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Daewoo The-O’Ville" + }, + { + "id": "328618", + "ident": "KR-0994", + "type": "heliport", + "name": "Punglim Building Heliport", + "latitude_deg": "37.498907", + "longitude_deg": "127.031722", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Punglim Building" + }, + { + "id": "328619", + "ident": "KR-0995", + "type": "heliport", + "name": "Handok Remedia Building Heliport", + "latitude_deg": "37.499519", + "longitude_deg": "127.033327", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Handok Remedia Building" + }, + { + "id": "328620", + "ident": "KR-0996", + "type": "heliport", + "name": "Posteel Tower Heliport", + "latitude_deg": "37.499608", + "longitude_deg": "127.033621", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Posteel Tower" + }, + { + "id": "328621", + "ident": "KR-0997", + "type": "heliport", + "name": "Samsung Heavy Industries, Yeoksam Building Heliport", + "latitude_deg": "37.500234", + "longitude_deg": "127.032844", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Samsung Heavy Industries, Yeoksam Building" + }, + { + "id": "328623", + "ident": "KR-0998", + "type": "heliport", + "name": "Sejong-tien Building Heliport", + "latitude_deg": "37.500547", + "longitude_deg": "127.034015", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Sejong-tien Building" + }, + { + "id": "328624", + "ident": "KR-0999", + "type": "heliport", + "name": "Capital Tower Heliport", + "latitude_deg": "37.499981", + "longitude_deg": "127.035229", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Capital Tower" + }, + { + "id": "328630", + "ident": "KR-1000", + "type": "heliport", + "name": "Gangnam Finance Center Heliport", + "latitude_deg": "37.500456", + "longitude_deg": "127.036512", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Gangnam Finance Center, GFC" + }, + { + "id": "328638", + "ident": "KR-1001", + "type": "heliport", + "name": "Asea Tower Heliport", + "latitude_deg": "37.499128", + "longitude_deg": "127.03836", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Asea Tower" + }, + { + "id": "328639", + "ident": "KR-1002", + "type": "heliport", + "name": "KAIT Tower Heliport", + "latitude_deg": "37.501733", + "longitude_deg": "127.037706", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "KAIT Tower" + }, + { + "id": "328641", + "ident": "KR-1003", + "type": "heliport", + "name": "GS Gangnam Tower Heliport", + "latitude_deg": "37.502277", + "longitude_deg": "127.037376", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "GS Gangnam Tower" + }, + { + "id": "328644", + "ident": "KR-1004", + "type": "heliport", + "name": "Keungil Tower Heliport", + "latitude_deg": "37.502555", + "longitude_deg": "127.040718", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Keungil Tower" + }, + { + "id": "328645", + "ident": "KR-1005", + "type": "heliport", + "name": "Sambu Building Heliport", + "latitude_deg": "37.503952", + "longitude_deg": "127.041729", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Sambu Building" + }, + { + "id": "328646", + "ident": "KR-1006", + "type": "heliport", + "name": "Renaissance Hotel Heliport", + "latitude_deg": "37.50318", + "longitude_deg": "127.041441", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Renaissance Hotel Seoul" + }, + { + "id": "328647", + "ident": "KR-1007", + "type": "heliport", + "name": "Yeoksan The Oville Heliport", + "latitude_deg": "37.501676", + "longitude_deg": "127.042819", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Yeoksan The Oville" + }, + { + "id": "328648", + "ident": "KR-1008", + "type": "heliport", + "name": "KAIT Tower Heliport", + "latitude_deg": "37.502663", + "longitude_deg": "127.04413", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "KAIT Tower, Kite 3" + }, + { + "id": "328649", + "ident": "KR-1009", + "type": "heliport", + "name": "Gangnam Jaeil Building Heliport", + "latitude_deg": "37.503701", + "longitude_deg": "127.044441", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Gangnam Jaeil Building" + }, + { + "id": "328650", + "ident": "KR-1010", + "type": "heliport", + "name": "Dong Hoon Tower Heliport", + "latitude_deg": "37.504153", + "longitude_deg": "127.04575", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Dong Hoon Tower" + }, + { + "id": "328655", + "ident": "KR-1011", + "type": "heliport", + "name": "Hanshin Intervalley 24 Heliports", + "latitude_deg": "37.503326", + "longitude_deg": "127.046448", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hanshin Intervalley 24" + }, + { + "id": "328657", + "ident": "KR-1012", + "type": "heliport", + "name": "Ing Building Heliport", + "latitude_deg": "37.503363", + "longitude_deg": "127.046041", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Ing Building" + }, + { + "id": "328659", + "ident": "KR-1013", + "type": "heliport", + "name": "Union Steel Building Heliport", + "latitude_deg": "37.504949", + "longitude_deg": "127.051272", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Union Steel Building" + }, + { + "id": "328666", + "ident": "KR-1014", + "type": "heliport", + "name": "Lotte Gold Rose II Heliport", + "latitude_deg": "37.504387", + "longitude_deg": "127.051933", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Lotte Gold Rose II" + }, + { + "id": "328668", + "ident": "KR-1015", + "type": "heliport", + "name": "Daewoo I-Ville Heliport", + "latitude_deg": "37.505841", + "longitude_deg": "127.054237", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Daewoo I-Ville" + }, + { + "id": "328669", + "ident": "KR-1016", + "type": "heliport", + "name": "Daechi Tower Heliport", + "latitude_deg": "37.505633", + "longitude_deg": "127.053472", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Daechi Tower" + }, + { + "id": "328670", + "ident": "KR-1017", + "type": "heliport", + "name": "Dongbu Financial Center Heliport", + "latitude_deg": "37.506131", + "longitude_deg": "127.054697", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Dongbu Financial Center" + }, + { + "id": "328674", + "ident": "KR-1018", + "type": "heliport", + "name": "Posco Center, East Tower Heliport", + "latitude_deg": "37.505816", + "longitude_deg": "127.056749", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Posco Center, East Tower" + }, + { + "id": "328675", + "ident": "KR-1019", + "type": "heliport", + "name": "Posco Center, West Tower Heliport", + "latitude_deg": "37.506162", + "longitude_deg": "127.055721", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Posco Center, West Tower" + }, + { + "id": "328679", + "ident": "KR-1020", + "type": "heliport", + "name": "Haesung Building Heliport", + "latitude_deg": "37.506615", + "longitude_deg": "127.057424", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Haesung Building" + }, + { + "id": "328680", + "ident": "KR-1021", + "type": "heliport", + "name": "Haesung 2 Building Heliport", + "latitude_deg": "37.506781", + "longitude_deg": "127.058035", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Haesung 2 Building" + }, + { + "id": "328682", + "ident": "KR-1022", + "type": "heliport", + "name": "Metro Khan Building Heliport", + "latitude_deg": "37.506896", + "longitude_deg": "127.059558", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Metro Khan Building" + }, + { + "id": "328683", + "ident": "KR-1023", + "type": "heliport", + "name": "Textile Center Heliport", + "latitude_deg": "37.507653", + "longitude_deg": "127.060675", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Textile Center" + }, + { + "id": "328684", + "ident": "KR-1024", + "type": "heliport", + "name": "Golden Tower Heliport", + "latitude_deg": "37.507836", + "longitude_deg": "127.055546", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Golden Tower" + }, + { + "id": "328688", + "ident": "KR-1025", + "type": "heliport", + "name": "Grand InterContintental Seoul Parnas Heliport", + "latitude_deg": "37.509058", + "longitude_deg": "127.060908", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Grand InterContintental Seoul Parnas" + }, + { + "id": "328689", + "ident": "KR-1026", + "type": "heliport", + "name": "Parnas Tower Heliport", + "latitude_deg": "37.509734", + "longitude_deg": "127.061406", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Parnas Tower" + }, + { + "id": "328690", + "ident": "KR-1027", + "type": "heliport", + "name": "Trade Center Heliport", + "latitude_deg": "37.510528", + "longitude_deg": "127.061171", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Trade Center" + }, + { + "id": "328691", + "ident": "KR-1028", + "type": "heliport", + "name": "Korea City Air Tower Heliport", + "latitude_deg": "37.510348", + "longitude_deg": "127.058702", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "NKorea City Air Tower" + }, + { + "id": "328692", + "ident": "KR-1029", + "type": "heliport", + "name": "Hotel Oakwood Premier Heliport", + "latitude_deg": "37.511105", + "longitude_deg": "127.058288", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Hotel Oakwood Premier" + }, + { + "id": "328695", + "ident": "KR-1030", + "type": "heliport", + "name": "InterContinental Seoul Coex Heliport", + "latitude_deg": "37.512815", + "longitude_deg": "127.057441", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "InterContinental Seoul Coex" + }, + { + "id": "328696", + "ident": "KR-1031", + "type": "heliport", + "name": "ASEM Tower Heliport", + "latitude_deg": "37.513124", + "longitude_deg": "127.060107", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "ASEM Tower" + }, + { + "id": "328697", + "ident": "KR-1032", + "type": "heliport", + "name": "Glass Tower Heliport", + "latitude_deg": "37.508118", + "longitude_deg": "127.062973", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Glass Tower" + }, + { + "id": "328698", + "ident": "KR-1033", + "type": "heliport", + "name": "KEPCO HQ Heliport", + "latitude_deg": "37.512307", + "longitude_deg": "127.062407", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "KEPCO" + }, + { + "id": "328699", + "ident": "KR-1034", + "type": "heliport", + "name": "KT & G Kosmo Tower Heliport", + "latitude_deg": "37.506569", + "longitude_deg": "127.065465", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "KT & G Kosmo Tower" + }, + { + "id": "328700", + "ident": "KR-1035", + "type": "heliport", + "name": "Jamsil Heliport", + "latitude_deg": "37.519276", + "longitude_deg": "127.072611", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Jamsil" + }, + { + "id": "328701", + "ident": "KR-1036", + "type": "heliport", + "name": "Kobaco Center Heliport", + "latitude_deg": "37.516131", + "longitude_deg": "127.09989", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Kobaco Center" + }, + { + "id": "328703", + "ident": "KR-1037", + "type": "heliport", + "name": "Woolim Blue Nine Heliports", + "latitude_deg": "37.557177", + "longitude_deg": "126.864106", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Woolim Blue Nine" + }, + { + "id": "328727", + "ident": "KR-1038", + "type": "heliport", + "name": "Daewoo Engineering & Construction Building Heliport", + "latitude_deg": "37.570771", + "longitude_deg": "126.972972", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Daewoo Engineering & Construction Building" + }, + { + "id": "328728", + "ident": "KR-1039", + "type": "heliport", + "name": "S Tower Heliport", + "latitude_deg": "37.569928", + "longitude_deg": "126.974113", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "S Tower" + }, + { + "id": "328729", + "ident": "KR-1040", + "type": "heliport", + "name": "Kumho Asiana HQ Building Heliport", + "latitude_deg": "37.57008", + "longitude_deg": "126.973376", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Kumho Asiana HQ Building" + }, + { + "id": "328730", + "ident": "KR-1041", + "type": "heliport", + "name": "Heungkuk Life Building Heliport", + "latitude_deg": "37.569855", + "longitude_deg": "126.971998", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Heungkuk Life Building" + }, + { + "id": "328738", + "ident": "KR-1042", + "type": "heliport", + "name": "Woosung Building Heliport", + "latitude_deg": "37.572425", + "longitude_deg": "126.972414", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "Woosung Building" + }, + { + "id": "328743", + "ident": "KR-1043", + "type": "heliport", + "name": "Modern Etro Revo Apartments Heliport", + "latitude_deg": "37.655371", + "longitude_deg": "126.774511", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Goyang-si", + "scheduled_service": "no", + "keywords": "Modern Etro Revo Apartment" + }, + { + "id": "328746", + "ident": "KR-1044", + "type": "heliport", + "name": "KT Goyang Building Heliport", + "latitude_deg": "37.656223", + "longitude_deg": "126.776082", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Goyang-si", + "scheduled_service": "no", + "keywords": "KT Goyang Building" + }, + { + "id": "328747", + "ident": "KR-1045", + "type": "heliport", + "name": "Hyundai Townville Officetel Heliport", + "latitude_deg": "37.656671", + "longitude_deg": "126.77426", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Goyang-si", + "scheduled_service": "no", + "keywords": "Hyundai Townville Officetel" + }, + { + "id": "328748", + "ident": "KR-1046", + "type": "heliport", + "name": "MBC Dream Center Heliport", + "latitude_deg": "37.656046", + "longitude_deg": "126.770406", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Goyang-si", + "scheduled_service": "no", + "keywords": "MBC Dream Center" + }, + { + "id": "328749", + "ident": "KR-1047", + "type": "heliport", + "name": "SK City Tower Heliport", + "latitude_deg": "37.655211", + "longitude_deg": "126.771408", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Goyang-si", + "scheduled_service": "no", + "keywords": "SK City Tower" + }, + { + "id": "328750", + "ident": "KR-1048", + "type": "heliport", + "name": "SK M-City Tower Heliport", + "latitude_deg": "37.653867", + "longitude_deg": "126.770824", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Goyang-si", + "scheduled_service": "no", + "keywords": "SK M-City Tower" + }, + { + "id": "328753", + "ident": "KR-1049", + "type": "heliport", + "name": "Kolon Lake Poll Officetel Apartments Heliports", + "latitude_deg": "37.656479", + "longitude_deg": "126.769518", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Goyang-si", + "scheduled_service": "no", + "keywords": "Kolon Lake Poll Officetel Apartment" + }, + { + "id": "328763", + "ident": "KR-1050", + "type": "heliport", + "name": "Cheongwon Lakeville Apartments Heliport", + "latitude_deg": "37.659345", + "longitude_deg": "126.767287", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Goyang-si", + "scheduled_service": "no", + "keywords": "Cheongwon Lakeville Apartment" + }, + { + "id": "329649", + "ident": "KR-1051", + "type": "heliport", + "name": "Heli Korea Heliport", + "latitude_deg": "36.362345", + "longitude_deg": "127.403788", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Daejon", + "scheduled_service": "no" + }, + { + "id": "329650", + "ident": "KR-1052", + "type": "heliport", + "name": "National 119 Rescue Headquarters", + "latitude_deg": "35.660225", + "longitude_deg": "128.386327", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "municipality": "Daegu", + "scheduled_service": "no" + }, + { + "id": "339955", + "ident": "KR-1053", + "type": "heliport", + "name": "Saiinto Heliport", + "latitude_deg": "35.08788", + "longitude_deg": "126.02924", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Imja-myeon", + "scheduled_service": "no" + }, + { + "id": "340633", + "ident": "KR-1054", + "type": "small_airport", + "name": "Jinhae Naval Academy Airfield", + "latitude_deg": "35.12858", + "longitude_deg": "128.66355", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Jinhae", + "scheduled_service": "no" + }, + { + "id": "348786", + "ident": "KR-1055", + "type": "small_airport", + "name": "Goheung Airport", + "latitude_deg": "34.61128", + "longitude_deg": "127.20563", + "elevation_ft": "2", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Dodeok-myeon", + "scheduled_service": "no" + }, + { + "id": "348787", + "ident": "KR-1056", + "type": "small_airport", + "name": "Jeonju Airfield", + "latitude_deg": "35.88025", + "longitude_deg": "127.01474", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-45", + "municipality": "Jeonju", + "scheduled_service": "no" + }, + { + "id": "348788", + "ident": "KR-1057", + "type": "small_airport", + "name": "SL Air Airstrip", + "latitude_deg": "35.45041", + "longitude_deg": "127.43346", + "elevation_ft": "440", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-45", + "municipality": "Namweon", + "scheduled_service": "no", + "keywords": "JK Air" + }, + { + "id": "348790", + "ident": "KR-1058", + "type": "small_airport", + "name": "Hwangryong Airport", + "latitude_deg": "35.27741", + "longitude_deg": "126.75491", + "elevation_ft": "125", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Hwangryong-myeon", + "scheduled_service": "no" + }, + { + "id": "309031", + "ident": "KR-1059", + "type": "heliport", + "name": "C 136 Heliport", + "latitude_deg": "37.759939", + "longitude_deg": "126.797225", + "elevation_ft": "105", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Tongil-ro", + "scheduled_service": "no", + "keywords": "C 136, C-136" + }, + { + "id": "351230", + "ident": "KR-1060", + "type": "heliport", + "name": "Parc 1 Tower B Heliport", + "latitude_deg": "37.527", + "longitude_deg": "126.92802", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no" + }, + { + "id": "351231", + "ident": "KR-1061", + "type": "heliport", + "name": "Cheongdam Xi 105 Helipad", + "latitude_deg": "37.524115", + "longitude_deg": "127.057306", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no" + }, + { + "id": "351232", + "ident": "KR-1062", + "type": "heliport", + "name": "Cheongdam Xi 104 Helipad", + "latitude_deg": "37.523689", + "longitude_deg": "127.058087", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no" + }, + { + "id": "351233", + "ident": "KR-1063", + "type": "heliport", + "name": "I-Park Tower 101 Heliport", + "latitude_deg": "37.51849", + "longitude_deg": "127.05875", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no" + }, + { + "id": "351234", + "ident": "KR-1064", + "type": "heliport", + "name": "I-Park Tower 102 Heliport", + "latitude_deg": "37.51837", + "longitude_deg": "127.05959", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no" + }, + { + "id": "351235", + "ident": "KR-1065", + "type": "heliport", + "name": "I-Park Tower 103 Heliport", + "latitude_deg": "37.51763", + "longitude_deg": "127.05921", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no" + }, + { + "id": "351283", + "ident": "KR-1066", + "type": "heliport", + "name": "Jamsil Rezion Helipad", + "latitude_deg": "37.51476", + "longitude_deg": "127.10739", + "elevation_ft": "425", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no" + }, + { + "id": "351284", + "ident": "KR-1067", + "type": "heliport", + "name": "Galleria Palace Tower B Heliport", + "latitude_deg": "37.511487", + "longitude_deg": "127.094505", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no" + }, + { + "id": "351285", + "ident": "KR-1068", + "type": "heliport", + "name": "Galleria Palace Tower C Heliport", + "latitude_deg": "37.5107", + "longitude_deg": "127.09398", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no", + "keywords": "17" + }, + { + "id": "351391", + "ident": "KR-1069", + "type": "closed", + "name": "Busan Suyeong Airport", + "latitude_deg": "35.17235", + "longitude_deg": "129.12731", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no" + }, + { + "id": "351392", + "ident": "KR-1070", + "type": "heliport", + "name": "Youngpoong Building Helipad", + "latitude_deg": "37.51059", + "longitude_deg": "127.02213", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no" + }, + { + "id": "351393", + "ident": "KR-1071", + "type": "heliport", + "name": "GT Tower East Heliport", + "latitude_deg": "37.498067", + "longitude_deg": "127.025937", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "no" + }, + { + "id": "351395", + "ident": "KR-1072", + "type": "heliport", + "name": "Typhoon Observatory Heliport", + "latitude_deg": "38.12855", + "longitude_deg": "126.9739", + "elevation_ft": "735", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Yeoncheon", + "scheduled_service": "no" + }, + { + "id": "354252", + "ident": "KR-1073", + "type": "heliport", + "name": "Wido-myeon Helipad", + "latitude_deg": "35.606398", + "longitude_deg": "126.285405", + "elevation_ft": "21", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-45", + "municipality": "Buan-gun", + "scheduled_service": "no" + }, + { + "id": "355780", + "ident": "KR-1074", + "type": "heliport", + "name": "Sibang-ri Helipad", + "latitude_deg": "34.95464", + "longitude_deg": "128.71675", + "elevation_ft": "37", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Geoje", + "scheduled_service": "no" + }, + { + "id": "355781", + "ident": "KR-1075", + "type": "heliport", + "name": "Gadeok Undersea Tunnel Helipad", + "latitude_deg": "35.01531", + "longitude_deg": "128.77031", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "no" + }, + { + "id": "355782", + "ident": "KR-1076", + "type": "heliport", + "name": "Andong Hospital Heliport", + "latitude_deg": "36.5467", + "longitude_deg": "128.70081", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Andong", + "scheduled_service": "no" + }, + { + "id": "355783", + "ident": "KR-1077", + "type": "heliport", + "name": "Ulsan University Hospital Heliport", + "latitude_deg": "35.52038", + "longitude_deg": "129.42809", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-31", + "municipality": "Ulsan", + "scheduled_service": "no" + }, + { + "id": "355784", + "ident": "KR-1078", + "type": "heliport", + "name": "Changwon Fatima Hospital Heliport", + "latitude_deg": "35.23724", + "longitude_deg": "128.64582", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Changwon", + "scheduled_service": "no" + }, + { + "id": "355785", + "ident": "KR-1079", + "type": "heliport", + "name": "Gyeongsang National University Changwon Hospital Heliport", + "latitude_deg": "35.19922", + "longitude_deg": "128.70744", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Changwon", + "scheduled_service": "no" + }, + { + "id": "20905", + "ident": "KR47", + "type": "small_airport", + "name": "Ruhe's Airport", + "latitude_deg": "41.102526", + "longitude_deg": "-84.05443", + "elevation_ft": "801", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Leipsic", + "scheduled_service": "no", + "local_code": "R47" + }, + { + "id": "20906", + "ident": "KR49", + "type": "small_airport", + "name": "Ferry County Airport", + "latitude_deg": "48.71820068359375", + "longitude_deg": "-118.65599822998047", + "elevation_ft": "2522", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Republic", + "scheduled_service": "no", + "gps_code": "KR49", + "local_code": "R49" + }, + { + "id": "20907", + "ident": "KRAC", + "type": "small_airport", + "name": "John H Batten Airport", + "latitude_deg": "42.7606010437", + "longitude_deg": "-87.8152008057", + "elevation_ft": "674", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Racine", + "scheduled_service": "no", + "gps_code": "KRAC", + "iata_code": "RAC", + "local_code": "RAC", + "home_link": "http://www.battenairport.aero/", + "wikipedia_link": "https://en.wikipedia.org/wiki/John_H._Batten_Airport", + "keywords": "Horlick Field" + }, + { + "id": "3837", + "ident": "KRAL", + "type": "medium_airport", + "name": "Riverside Municipal Airport", + "latitude_deg": "33.9519", + "longitude_deg": "-117.445", + "elevation_ft": "819", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Riverside", + "scheduled_service": "no", + "gps_code": "KRAL", + "iata_code": "RAL", + "local_code": "RAL", + "home_link": "http://www.riversideca.gov/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Riverside_Municipal_Airport", + "keywords": "Riverside Arlington" + }, + { + "id": "3838", + "ident": "KRAP", + "type": "medium_airport", + "name": "Rapid City Regional Airport", + "latitude_deg": "44.0452995300293", + "longitude_deg": "-103.05699920654297", + "elevation_ft": "3204", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Rapid City", + "scheduled_service": "yes", + "gps_code": "KRAP", + "iata_code": "RAP", + "local_code": "RAP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rapid_City_Regional_Airport" + }, + { + "id": "20908", + "ident": "KRAS", + "type": "small_airport", + "name": "Mustang Beach Airport", + "latitude_deg": "27.8118", + "longitude_deg": "-97.088799", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port Aransas", + "scheduled_service": "no", + "gps_code": "KRAS", + "local_code": "RAS", + "home_link": "https://cityofportaransas.org/departments/airport/", + "keywords": "2R8" + }, + { + "id": "20909", + "ident": "KRAW", + "type": "small_airport", + "name": "Warsaw Municipal Airport", + "latitude_deg": "38.346900939941406", + "longitude_deg": "-93.34539794921875", + "elevation_ft": "936", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Warsaw", + "scheduled_service": "no", + "gps_code": "KRAW", + "local_code": "RAW" + }, + { + "id": "20910", + "ident": "KRBD", + "type": "small_airport", + "name": "Dallas Executive Airport", + "latitude_deg": "32.6809005737", + "longitude_deg": "-96.8682022095", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "KRBD", + "iata_code": "RBD", + "local_code": "RBD", + "home_link": "http://www.dallasexecairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dallas_Executive_Airport", + "keywords": "Redbird Airport" + }, + { + "id": "20911", + "ident": "KRBE", + "type": "small_airport", + "name": "Rock County Airport", + "latitude_deg": "42.569698333740234", + "longitude_deg": "-99.56839752197266", + "elevation_ft": "2349", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Bassett", + "scheduled_service": "no", + "gps_code": "KRBE", + "local_code": "RBE" + }, + { + "id": "20912", + "ident": "KRBG", + "type": "small_airport", + "name": "Roseburg Regional Airport", + "latitude_deg": "43.238800048799995", + "longitude_deg": "-123.356002808", + "elevation_ft": "529", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Roseburg", + "scheduled_service": "no", + "gps_code": "KRBG", + "iata_code": "RBG", + "local_code": "RBG", + "home_link": "http://www.cityofroseburg.org/departments/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roseburg_Regional_Airport", + "keywords": "Major General Marion E. Carl Memorial Field" + }, + { + "id": "3839", + "ident": "KRBL", + "type": "medium_airport", + "name": "Red Bluff Municipal Airport", + "latitude_deg": "40.1506996155", + "longitude_deg": "-122.251998901", + "elevation_ft": "352", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Red Bluff", + "scheduled_service": "no", + "gps_code": "KRBL", + "iata_code": "RBL", + "local_code": "RBL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Red_Bluff_Municipal_Airport" + }, + { + "id": "20913", + "ident": "KRBM", + "type": "small_airport", + "name": "Robinson Army Air Field", + "latitude_deg": "34.85010147", + "longitude_deg": "-92.30020142", + "elevation_ft": "587", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Camp Robinson/Little Rock", + "scheduled_service": "no", + "gps_code": "KRBM", + "local_code": "RBM" + }, + { + "id": "20914", + "ident": "KRBO", + "type": "small_airport", + "name": "Nueces County Airport", + "latitude_deg": "27.778103", + "longitude_deg": "-97.690098", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Robstown", + "scheduled_service": "no", + "gps_code": "KRBO", + "local_code": "RBO" + }, + { + "id": "20915", + "ident": "KRBW", + "type": "small_airport", + "name": "Lowcountry Regional Airport", + "latitude_deg": "32.921001434299995", + "longitude_deg": "-80.6406021118", + "elevation_ft": "101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Walterboro", + "scheduled_service": "no", + "gps_code": "KRBW", + "iata_code": "RBW", + "local_code": "RBW", + "home_link": "http://lowcountryairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lowcountry_Regional_Airport", + "keywords": "C.C. Anderson Landing Field, Walterboro AAF" + }, + { + "id": "3840", + "ident": "KRCA", + "type": "medium_airport", + "name": "Ellsworth Air Force Base", + "latitude_deg": "44.14500046", + "longitude_deg": "-103.1039963", + "elevation_ft": "3276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Rapid City", + "scheduled_service": "no", + "gps_code": "KRCA", + "iata_code": "RCA", + "local_code": "RCA", + "home_link": "http://www.ellsworth.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ellsworth_Air_Force_Base", + "keywords": "28th Bomb Wing" + }, + { + "id": "20916", + "ident": "KRCK", + "type": "small_airport", + "name": "H H Coffield Regional Airport", + "latitude_deg": "30.6315994263", + "longitude_deg": "-96.9897003174", + "elevation_ft": "474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rockdale", + "scheduled_service": "no", + "gps_code": "KRCK", + "iata_code": "RCK", + "local_code": "RCK", + "home_link": "http://www.rockdalecityhall.com/index.aspx?nid=127" + }, + { + "id": "19192", + "ident": "KRCM", + "type": "small_airport", + "name": "Skyhaven Airport", + "latitude_deg": "38.78419876098633", + "longitude_deg": "-93.80290222167969", + "elevation_ft": "798", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Warrensburg", + "scheduled_service": "no", + "gps_code": "KRCM", + "local_code": "RCM", + "keywords": "Formerly 9K4" + }, + { + "id": "301240", + "ident": "KRCP", + "type": "small_airport", + "name": "Rooks County Regional Airport", + "latitude_deg": "39.346592", + "longitude_deg": "-99.304649", + "elevation_ft": "1998", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Stockton", + "scheduled_service": "no", + "gps_code": "KRCP", + "local_code": "RCP", + "home_link": "https://rookscounty.net/airport-information", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rooks_County_Regional_Airport" + }, + { + "id": "20917", + "ident": "KRCR", + "type": "small_airport", + "name": "Fulton County Airport", + "latitude_deg": "41.065601348899996", + "longitude_deg": "-86.18170166019999", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Rochester", + "scheduled_service": "no", + "gps_code": "KRCR", + "iata_code": "RCR", + "local_code": "RCR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fulton_County_Airport_(Indiana)" + }, + { + "id": "20918", + "ident": "KRCT", + "type": "small_airport", + "name": "Nartron Field", + "latitude_deg": "43.9000015259", + "longitude_deg": "-85.5167007446", + "elevation_ft": "1055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Reed City", + "scheduled_service": "no", + "gps_code": "KRCT", + "iata_code": "RCT", + "local_code": "RCT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nartron_Field", + "keywords": "Miller Field" + }, + { + "id": "20919", + "ident": "KRCX", + "type": "small_airport", + "name": "Rusk County Airport", + "latitude_deg": "45.49679946899414", + "longitude_deg": "-91.00050354003906", + "elevation_ft": "1238", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Ladysmith", + "scheduled_service": "no", + "gps_code": "KRCX", + "local_code": "RCX" + }, + { + "id": "20920", + "ident": "KRCZ", + "type": "small_airport", + "name": "Richmond County Airport", + "latitude_deg": "34.8913", + "longitude_deg": "-79.759598", + "elevation_ft": "358", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Rockingham", + "scheduled_service": "no", + "gps_code": "KRCZ", + "local_code": "RCZ", + "home_link": "http://www.richmondnc.com/244/Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Richmond_County_Airport", + "keywords": "45J, Rockingham-Hamlet Airport" + }, + { + "id": "3841", + "ident": "KRDD", + "type": "medium_airport", + "name": "Redding Municipal Airport", + "latitude_deg": "40.50899887", + "longitude_deg": "-122.2929993", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Redding", + "scheduled_service": "yes", + "gps_code": "KRDD", + "iata_code": "RDD", + "local_code": "RDD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Redding_Municipal_Airport" + }, + { + "id": "3842", + "ident": "KRDG", + "type": "medium_airport", + "name": "Reading Regional Airport (Carl A Spaatz Field)", + "latitude_deg": "40.378502", + "longitude_deg": "-75.965202", + "elevation_ft": "344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Reading", + "scheduled_service": "yes", + "gps_code": "KRDG", + "iata_code": "RDG", + "local_code": "RDG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Reading_Regional_Airport" + }, + { + "id": "20921", + "ident": "KRDK", + "type": "small_airport", + "name": "Red Oak Municipal Airport", + "latitude_deg": "41.01050186", + "longitude_deg": "-95.25990295", + "elevation_ft": "1045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Red Oak", + "scheduled_service": "no", + "gps_code": "KRDK", + "local_code": "RDK" + }, + { + "id": "3843", + "ident": "KRDM", + "type": "medium_airport", + "name": "Roberts Field", + "latitude_deg": "44.2541008", + "longitude_deg": "-121.1500015", + "elevation_ft": "3080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Redmond", + "scheduled_service": "yes", + "gps_code": "KRDM", + "iata_code": "RDM", + "local_code": "RDM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roberts_Field" + }, + { + "id": "20922", + "ident": "KRDR", + "type": "medium_airport", + "name": "Grand Forks Air Force Base", + "latitude_deg": "47.961101532", + "longitude_deg": "-97.4011993408", + "elevation_ft": "913", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Grand Forks", + "scheduled_service": "no", + "gps_code": "KRDR", + "iata_code": "RDR", + "local_code": "RDR", + "home_link": "http://www.grandforks.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Forks_Air_Force_Base" + }, + { + "id": "3844", + "ident": "KRDU", + "type": "large_airport", + "name": "Raleigh Durham International Airport", + "latitude_deg": "35.877601623535156", + "longitude_deg": "-78.7874984741211", + "elevation_ft": "435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Raleigh/Durham", + "scheduled_service": "yes", + "gps_code": "KRDU", + "iata_code": "RDU", + "local_code": "RDU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Raleigh-Durham_International_Airport" + }, + { + "id": "20923", + "ident": "KRED", + "type": "small_airport", + "name": "Red Lodge Airport", + "latitude_deg": "45.187400817871094", + "longitude_deg": "-109.26699829101562", + "elevation_ft": "5763", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Red Lodge", + "scheduled_service": "no", + "gps_code": "KRED", + "local_code": "RED" + }, + { + "id": "20286", + "ident": "KREI", + "type": "small_airport", + "name": "Redlands Municipal Airport", + "latitude_deg": "34.08530044555664", + "longitude_deg": "-117.14600372314453", + "elevation_ft": "1571", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Redlands", + "scheduled_service": "no", + "gps_code": "KREI", + "local_code": "REI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Redlands_Municipal_Airport", + "keywords": "Formerly L12" + }, + { + "id": "20924", + "ident": "KREO", + "type": "small_airport", + "name": "Rome State Airport", + "latitude_deg": "42.5777015686", + "longitude_deg": "-117.885002136", + "elevation_ft": "4053", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Rome", + "scheduled_service": "no", + "gps_code": "KREO", + "iata_code": "REO", + "local_code": "REO", + "home_link": "http://www.oregon.gov/aviation/Pages/Rome.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rome_State_Airport" + }, + { + "id": "3845", + "ident": "KRFD", + "type": "medium_airport", + "name": "Chicago Rockford International Airport", + "latitude_deg": "42.1954", + "longitude_deg": "-89.097198", + "elevation_ft": "742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago/Rockford", + "scheduled_service": "yes", + "gps_code": "KRFD", + "iata_code": "RFD", + "local_code": "RFD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chicago/Rockford_International_Airport" + }, + { + "id": "20925", + "ident": "KRFG", + "type": "small_airport", + "name": "Rooke Field", + "latitude_deg": "28.2936", + "longitude_deg": "-97.322998", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Refugio", + "scheduled_service": "no", + "gps_code": "KRFG", + "iata_code": "RFG", + "local_code": "RFG" + }, + { + "id": "19800", + "ident": "KRFI", + "type": "small_airport", + "name": "Rusk County Airport", + "latitude_deg": "32.141700744628906", + "longitude_deg": "-94.85169982910156", + "elevation_ft": "442", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Henderson", + "scheduled_service": "no", + "gps_code": "KRFI", + "local_code": "RFI", + "keywords": "Formerly F12" + }, + { + "id": "20926", + "ident": "KRGK", + "type": "small_airport", + "name": "Red Wing Regional Airport", + "latitude_deg": "44.589401", + "longitude_deg": "-92.485001", + "elevation_ft": "778", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Red Wing", + "scheduled_service": "no", + "gps_code": "KRGK", + "local_code": "RGK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Red_Wing_Regional_Airport" + }, + { + "id": "3846", + "ident": "KRHI", + "type": "medium_airport", + "name": "Rhinelander Oneida County Airport", + "latitude_deg": "45.63119888305664", + "longitude_deg": "-89.46749877929688", + "elevation_ft": "1624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Rhinelander", + "scheduled_service": "yes", + "gps_code": "KRHI", + "iata_code": "RHI", + "local_code": "RHI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rhinelander-Oneida_County_Airport" + }, + { + "id": "20927", + "ident": "KRHP", + "type": "small_airport", + "name": "Western Carolina Regional Airport", + "latitude_deg": "35.195202", + "longitude_deg": "-83.862999", + "elevation_ft": "1697", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Andrews", + "scheduled_service": "no", + "gps_code": "KRHP", + "local_code": "RHP", + "home_link": "http://www.cherokeecounty-nc.gov/index.aspx?page=61", + "wikipedia_link": "https://en.wikipedia.org/wiki/Andrews-Murphy_Airport", + "keywords": "6A3, Andrews-Murphy Airport" + }, + { + "id": "20928", + "ident": "KRHV", + "type": "small_airport", + "name": "Reid-Hillview Airport of Santa Clara County", + "latitude_deg": "37.332901001", + "longitude_deg": "-121.819000244", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Jose", + "scheduled_service": "no", + "gps_code": "KRHV", + "iata_code": "RHV", + "local_code": "RHV", + "home_link": "http://www.countyairports.org/rhv.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Reid-Hillview_Airport" + }, + { + "id": "3847", + "ident": "KRIC", + "type": "large_airport", + "name": "Richmond International Airport", + "latitude_deg": "37.50519943237305", + "longitude_deg": "-77.3197021484375", + "elevation_ft": "167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richmond", + "scheduled_service": "yes", + "gps_code": "KRIC", + "iata_code": "RIC", + "local_code": "RIC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Richmond_International_Airport" + }, + { + "id": "20929", + "ident": "KRID", + "type": "small_airport", + "name": "Richmond Municipal Airport", + "latitude_deg": "39.757198333740234", + "longitude_deg": "-84.8427963256836", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "KRID", + "local_code": "RID" + }, + { + "id": "30335", + "ident": "KRIE", + "type": "closed", + "name": "Rice Lake Municipal Airport", + "latitude_deg": "45.480191", + "longitude_deg": "-91.722978", + "elevation_ft": "1142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Rice Lake", + "scheduled_service": "no", + "keywords": "RIE, KRIE" + }, + { + "id": "20930", + "ident": "KRIF", + "type": "small_airport", + "name": "Richfield Municipal Airport", + "latitude_deg": "38.734068", + "longitude_deg": "-112.101603", + "elevation_ft": "5301", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Richfield", + "scheduled_service": "no", + "gps_code": "KRIF", + "local_code": "RIF" + }, + { + "id": "20931", + "ident": "KRIL", + "type": "medium_airport", + "name": "Garfield County Regional Airport", + "latitude_deg": "39.526299", + "longitude_deg": "-107.726997", + "elevation_ft": "5548", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Rifle", + "scheduled_service": "no", + "gps_code": "KRIL", + "iata_code": "RIL", + "local_code": "RIL", + "home_link": "http://www.rifleairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Garfield_County_Regional_Airport", + "keywords": "Rifle Airport" + }, + { + "id": "20932", + "ident": "KRIR", + "type": "small_airport", + "name": "Flabob Airport", + "latitude_deg": "33.9897", + "longitude_deg": "-117.411003", + "elevation_ft": "764", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Riverside", + "scheduled_service": "no", + "gps_code": "KRIR", + "local_code": "RIR" + }, + { + "id": "3848", + "ident": "KRIU", + "type": "small_airport", + "name": "Rancho Murieta Airport", + "latitude_deg": "38.48680114746094", + "longitude_deg": "-121.10299682617188", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rancho Murieta", + "scheduled_service": "no", + "gps_code": "KRIU", + "local_code": "RIU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rancho_Murieta_Airport" + }, + { + "id": "3849", + "ident": "KRIV", + "type": "medium_airport", + "name": "March Air Reserve Base", + "latitude_deg": "33.880699", + "longitude_deg": "-117.259003", + "elevation_ft": "1536", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Riverside", + "scheduled_service": "no", + "gps_code": "KRIV", + "iata_code": "RIV", + "local_code": "RIV", + "wikipedia_link": "https://en.wikipedia.org/wiki/March_Air_Reserve_Base" + }, + { + "id": "20933", + "ident": "KRIW", + "type": "medium_airport", + "name": "Riverton Regional Airport", + "latitude_deg": "43.064201355", + "longitude_deg": "-108.459999084", + "elevation_ft": "5525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Riverton", + "scheduled_service": "no", + "gps_code": "KRIW", + "iata_code": "RIW", + "local_code": "RIW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Riverton_Regional_Airport" + }, + { + "id": "301757", + "ident": "KRJ", + "type": "small_airport", + "name": "Karawari Airstrip", + "latitude_deg": "-4.59666666667", + "longitude_deg": "143.5225", + "elevation_ft": "70", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Amboin", + "scheduled_service": "no", + "gps_code": "AYQA", + "iata_code": "KRJ", + "local_code": "KRR", + "keywords": "AMG, Amboin Airport" + }, + { + "id": "20934", + "ident": "KRJD", + "type": "small_airport", + "name": "Ridgely Airpark", + "latitude_deg": "38.97010040283203", + "longitude_deg": "-75.86630249023438", + "elevation_ft": "64", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Ridgely", + "scheduled_service": "no", + "gps_code": "KRJD", + "local_code": "RJD" + }, + { + "id": "318190", + "ident": "KRK1", + "type": "small_airport", + "name": "Kavik Strip", + "latitude_deg": "69.676796", + "longitude_deg": "-146.900227", + "elevation_ft": "668", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kavik", + "scheduled_service": "no", + "local_code": "RK1" + }, + { + "id": "20935", + "ident": "KRKD", + "type": "small_airport", + "name": "Knox County Regional Airport", + "latitude_deg": "44.06010056", + "longitude_deg": "-69.09919739", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Rockland", + "scheduled_service": "no", + "gps_code": "KRKD", + "iata_code": "RKD", + "local_code": "RKD" + }, + { + "id": "20936", + "ident": "KRKP", + "type": "small_airport", + "name": "Aransas County Airport", + "latitude_deg": "28.0867996216", + "longitude_deg": "-97.0446014404", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rockport", + "scheduled_service": "no", + "gps_code": "KRKP", + "iata_code": "RKP", + "local_code": "RKP", + "home_link": "http://aransascountyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aransas_County_Airport", + "keywords": "Rockport AFS" + }, + { + "id": "20937", + "ident": "KRKR", + "type": "small_airport", + "name": "Robert S Kerr Airport", + "latitude_deg": "35.02159881591797", + "longitude_deg": "-94.62129974365234", + "elevation_ft": "451", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Poteau", + "scheduled_service": "no", + "gps_code": "KRKR", + "local_code": "RKR" + }, + { + "id": "3850", + "ident": "KRKS", + "type": "medium_airport", + "name": "Southwest Wyoming Regional Airport", + "latitude_deg": "41.5942", + "longitude_deg": "-109.065001", + "elevation_ft": "6764", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Rock Springs", + "scheduled_service": "yes", + "gps_code": "KRKS", + "iata_code": "RKS", + "local_code": "RKS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rock_Springs_-_Sweetwater_County_Airport", + "keywords": "Rock Springs Sweetwater County" + }, + { + "id": "20938", + "ident": "KRKW", + "type": "small_airport", + "name": "Rockwood Municipal Airport", + "latitude_deg": "35.9222984314", + "longitude_deg": "-84.6896972656", + "elevation_ft": "1664", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Rockwood", + "scheduled_service": "no", + "gps_code": "KRKW", + "iata_code": "RKW", + "local_code": "RKW", + "home_link": "http://www.rockwoodtn.org/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rockwood_Municipal_Airport" + }, + { + "id": "20939", + "ident": "KRLD", + "type": "small_airport", + "name": "Richland Airport", + "latitude_deg": "46.305599212646484", + "longitude_deg": "-119.30400085449219", + "elevation_ft": "394", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Richland", + "scheduled_service": "no", + "gps_code": "KRLD", + "local_code": "RLD" + }, + { + "id": "20940", + "ident": "KRME", + "type": "medium_airport", + "name": "Griffiss International Airport", + "latitude_deg": "43.23379898", + "longitude_deg": "-75.40699768", + "elevation_ft": "504", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Rome", + "scheduled_service": "no", + "gps_code": "KRME", + "iata_code": "RME", + "local_code": "RME", + "home_link": "http://www.ocgov.net/oneida/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Griffiss_Airfield" + }, + { + "id": "3851", + "ident": "KRMG", + "type": "medium_airport", + "name": "Richard B Russell Airport", + "latitude_deg": "34.3506011963", + "longitude_deg": "-85.15799713130001", + "elevation_ft": "644", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Rome", + "scheduled_service": "no", + "gps_code": "KRMG", + "iata_code": "RMG", + "local_code": "RMG", + "home_link": "http://www.romefloyd.com/EconomicDevelopment/Airport/tabid/306/Default.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Richard_B._Russell_Airport", + "keywords": "Towers Field" + }, + { + "id": "20941", + "ident": "KRMN", + "type": "small_airport", + "name": "Stafford Regional Airport", + "latitude_deg": "38.398102", + "longitude_deg": "-77.455498", + "elevation_ft": "211", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fredericksburg", + "scheduled_service": "no", + "gps_code": "KRMN", + "local_code": "RMN" + }, + { + "id": "20942", + "ident": "KRMY", + "type": "small_airport", + "name": "Brooks Field", + "latitude_deg": "42.251202", + "longitude_deg": "-84.955498", + "elevation_ft": "941", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Marshall", + "scheduled_service": "no", + "gps_code": "KRMY", + "local_code": "RMY" + }, + { + "id": "20943", + "ident": "KRNC", + "type": "small_airport", + "name": "Warren County Memorial Airport", + "latitude_deg": "35.69869995", + "longitude_deg": "-85.84380341", + "elevation_ft": "1032", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Mc Minnville", + "scheduled_service": "no", + "gps_code": "KRNC", + "iata_code": "RNC", + "local_code": "RNC", + "home_link": "http://www.warrencountymemorialairport.com/default.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Warren_County_Memorial_Airport" + }, + { + "id": "3852", + "ident": "KRND", + "type": "medium_airport", + "name": "Randolph Air Force Base", + "latitude_deg": "29.529699", + "longitude_deg": "-98.2789", + "elevation_ft": "761", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Universal City", + "scheduled_service": "no", + "gps_code": "KRND", + "iata_code": "RND", + "local_code": "RND", + "home_link": "http://www.military.com/base-guide/randolph-air-force-base", + "wikipedia_link": "https://en.wikipedia.org/wiki/Randolph_Air_Force_Base" + }, + { + "id": "20944", + "ident": "KRNH", + "type": "medium_airport", + "name": "New Richmond Regional Airport", + "latitude_deg": "45.14830017", + "longitude_deg": "-92.5381012", + "elevation_ft": "998", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "New Richmond", + "scheduled_service": "no", + "gps_code": "KRNH", + "local_code": "RNH" + }, + { + "id": "20945", + "ident": "KRNM", + "type": "small_airport", + "name": "Ramona Airport", + "latitude_deg": "33.0392", + "longitude_deg": "-116.915001", + "elevation_ft": "1395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ramona", + "scheduled_service": "no", + "gps_code": "KRNM", + "local_code": "RNM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ramona_Airport", + "keywords": "L39" + }, + { + "id": "3853", + "ident": "KRNO", + "type": "large_airport", + "name": "Reno Tahoe International Airport", + "latitude_deg": "39.49909973144531", + "longitude_deg": "-119.76799774169922", + "elevation_ft": "4415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Reno", + "scheduled_service": "yes", + "gps_code": "KRNO", + "iata_code": "RNO", + "local_code": "RNO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Reno-Tahoe_International_Airport" + }, + { + "id": "20946", + "ident": "KRNP", + "type": "small_airport", + "name": "Owosso Community Airport", + "latitude_deg": "42.993000030518", + "longitude_deg": "-84.138900756836", + "elevation_ft": "736", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Owosso", + "scheduled_service": "no", + "gps_code": "KRNP", + "local_code": "RNP", + "home_link": "http://www.krnp.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Owosso_Community_Airport", + "keywords": "5D3" + }, + { + "id": "20947", + "ident": "KRNT", + "type": "small_airport", + "name": "Renton Municipal Airport", + "latitude_deg": "47.4930992126", + "longitude_deg": "-122.216003418", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Renton", + "scheduled_service": "no", + "gps_code": "KRNT", + "iata_code": "RNT", + "local_code": "RNT", + "home_link": "https://rentonwa.gov/living/default.aspx?id=212", + "wikipedia_link": "https://en.wikipedia.org/wiki/Renton_Municipal_Airport", + "keywords": "Scott Field" + }, + { + "id": "20948", + "ident": "KRNV", + "type": "small_airport", + "name": "Cleveland Municipal Airport", + "latitude_deg": "33.76110077", + "longitude_deg": "-90.75789642", + "elevation_ft": "139", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "KRNV", + "local_code": "RNV" + }, + { + "id": "3854", + "ident": "KROA", + "type": "medium_airport", + "name": "Roanoke–Blacksburg Regional Airport", + "latitude_deg": "37.3255", + "longitude_deg": "-79.975403", + "elevation_ft": "1175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Roanoke", + "scheduled_service": "yes", + "gps_code": "KROA", + "iata_code": "ROA", + "local_code": "ROA", + "home_link": "http://www.roanokeairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roanoke%E2%80%93Blacksburg_Regional_Airport", + "keywords": "Woodrum Field" + }, + { + "id": "3855", + "ident": "KROC", + "type": "medium_airport", + "name": "Frederick Douglass Greater Rochester International Airport", + "latitude_deg": "43.1189", + "longitude_deg": "-77.672401", + "elevation_ft": "559", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Rochester", + "scheduled_service": "yes", + "gps_code": "KROC", + "iata_code": "ROC", + "local_code": "ROC", + "home_link": "https://rocairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greater_Rochester_International_Airport" + }, + { + "id": "20949", + "ident": "KROG", + "type": "small_airport", + "name": "Rogers Municipal Airport-Carter Field", + "latitude_deg": "36.37229919", + "longitude_deg": "-94.10690308", + "elevation_ft": "1359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Rogers", + "scheduled_service": "no", + "gps_code": "KROG", + "iata_code": "ROG", + "local_code": "ROG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rogers_Municipal_Airport" + }, + { + "id": "20950", + "ident": "KROS", + "type": "small_airport", + "name": "Rush City Regional Airport", + "latitude_deg": "45.69800186", + "longitude_deg": "-92.95300293", + "elevation_ft": "926", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Rush City", + "scheduled_service": "no", + "gps_code": "KROS", + "local_code": "ROS" + }, + { + "id": "3856", + "ident": "KROW", + "type": "medium_airport", + "name": "Roswell Air Center Airport", + "latitude_deg": "33.301601", + "longitude_deg": "-104.530998", + "elevation_ft": "3671", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Roswell", + "scheduled_service": "yes", + "gps_code": "KROW", + "iata_code": "ROW", + "local_code": "ROW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roswell_International_Air_Center", + "keywords": "Roswell Army Air Field, Walker Air Force Base" + }, + { + "id": "20951", + "ident": "KROX", + "type": "small_airport", + "name": "Roseau Municipal Rudy Billberg Field", + "latitude_deg": "48.85599899", + "longitude_deg": "-95.6969986", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Roseau", + "scheduled_service": "no", + "gps_code": "KROX", + "iata_code": "ROX", + "local_code": "ROX", + "home_link": "http://www.city.roseau.mn.us/index.asp?Type=B_BASIC&SEC=%7BAE9D09FA-04AA-46A5-AD2E-2F95D91128A2%7D" + }, + { + "id": "20952", + "ident": "KRPB", + "type": "small_airport", + "name": "Belleville Municipal Airport", + "latitude_deg": "39.817901611328125", + "longitude_deg": "-97.65959930419922", + "elevation_ft": "1537", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Belleville", + "scheduled_service": "no", + "gps_code": "KRPB", + "local_code": "RPB" + }, + { + "id": "20953", + "ident": "KRPD", + "type": "small_airport", + "name": "Rice Lake Regional Airport - Carl's Field", + "latitude_deg": "45.423024", + "longitude_deg": "-91.773127", + "elevation_ft": "1109", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Rice Lake", + "scheduled_service": "no", + "gps_code": "KRPD", + "iata_code": "RIE", + "local_code": "RPD", + "home_link": "http://www.ricelakeairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rice_Lake_Regional_Airport" + }, + { + "id": "20954", + "ident": "KRPH", + "type": "small_airport", + "name": "Graham Municipal Airport", + "latitude_deg": "33.110198974609", + "longitude_deg": "-98.555297851562", + "elevation_ft": "1123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Graham", + "scheduled_service": "no", + "gps_code": "KRPH", + "local_code": "RPH", + "home_link": "http://www.cityofgrahamtexas.com/Airport/", + "keywords": "E15" + }, + { + "id": "20955", + "ident": "KRPJ", + "type": "small_airport", + "name": "Rochelle Municipal Airport - Koritz Field", + "latitude_deg": "41.893001556399994", + "longitude_deg": "-89.0783004761", + "elevation_ft": "781", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rochelle", + "scheduled_service": "no", + "gps_code": "KRPJ", + "local_code": "RPJ" + }, + { + "id": "20956", + "ident": "KRPX", + "type": "small_airport", + "name": "Roundup Airport", + "latitude_deg": "46.475095", + "longitude_deg": "-108.541497", + "elevation_ft": "3500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Roundup", + "scheduled_service": "no", + "gps_code": "KRPX", + "iata_code": "RPX", + "local_code": "RPX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roundup_Airport" + }, + { + "id": "20957", + "ident": "KRQB", + "type": "small_airport", + "name": "Roben Hood Airport", + "latitude_deg": "43.7225990295", + "longitude_deg": "-85.50409698490002", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Big Rapids", + "scheduled_service": "no", + "gps_code": "KRQB", + "iata_code": "WBR", + "local_code": "RQB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roben-Hood_Airport" + }, + { + "id": "20958", + "ident": "KRQE", + "type": "small_airport", + "name": "Window Rock Airport", + "latitude_deg": "35.652099609375", + "longitude_deg": "-109.06700134277344", + "elevation_ft": "6742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Window Rock", + "scheduled_service": "no", + "gps_code": "KRQE", + "local_code": "RQE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Window_Rock_Airport" + }, + { + "id": "24364", + "ident": "KRQO", + "type": "small_airport", + "name": "El Reno Regional Airport", + "latitude_deg": "35.47269821", + "longitude_deg": "-98.00579834", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "El Reno", + "scheduled_service": "no", + "gps_code": "KRQO", + "iata_code": "RQO", + "local_code": "RQO", + "keywords": "F28 KF28" + }, + { + "id": "20959", + "ident": "KRRL", + "type": "small_airport", + "name": "Merrill Municipal Airport", + "latitude_deg": "45.1988983154", + "longitude_deg": "-89.7128982544", + "elevation_ft": "1318", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Merrill", + "scheduled_service": "no", + "gps_code": "KRRL", + "iata_code": "RRL", + "local_code": "RRL", + "home_link": "http://www.ci.merrill.wi.us/index.asp?SEC=4F5D638A-3ECD-45E8-8226-20D66738C412&Type=B_BASIC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Merrill_Municipal_Airport" + }, + { + "id": "20960", + "ident": "KRRQ", + "type": "small_airport", + "name": "Rock Rapids Municipal Airport", + "latitude_deg": "43.45220184326172", + "longitude_deg": "-96.17980194091797", + "elevation_ft": "1363", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Rock Rapids", + "scheduled_service": "no", + "gps_code": "KRRQ", + "local_code": "RRQ" + }, + { + "id": "20961", + "ident": "KRRT", + "type": "small_airport", + "name": "Warroad International Memorial Airport", + "latitude_deg": "48.94139862", + "longitude_deg": "-95.3483963", + "elevation_ft": "1076", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Warroad", + "scheduled_service": "no", + "gps_code": "KRRT", + "iata_code": "RRT", + "local_code": "RRT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Warroad_International_Memorial_Airport", + "keywords": "RAD, KRAD, Swede Carlson Field" + }, + { + "id": "20962", + "ident": "KRSL", + "type": "medium_airport", + "name": "Russell Municipal Airport", + "latitude_deg": "38.872100830078", + "longitude_deg": "-98.811798095703", + "elevation_ft": "1862", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Russell", + "scheduled_service": "no", + "gps_code": "KRSL", + "iata_code": "RSL", + "local_code": "RSL", + "home_link": "http://www.russellcity.org/airport.php" + }, + { + "id": "20963", + "ident": "KRSN", + "type": "small_airport", + "name": "Ruston Regional Airport", + "latitude_deg": "32.514187", + "longitude_deg": "-92.588517", + "elevation_ft": "311", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Ruston", + "scheduled_service": "no", + "gps_code": "KRSN", + "iata_code": "RSN", + "local_code": "RSN", + "home_link": "http://www.ruston.org/departments.aspx?p_PageAlias=regional-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ruston_Regional_Airport", + "keywords": "3L5" + }, + { + "id": "333826", + "ident": "KRSP", + "type": "heliport", + "name": "Naval Support Facility Thurmont (Camp David)", + "latitude_deg": "39.646089", + "longitude_deg": "-77.468768", + "elevation_ft": "1840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Thurmont", + "scheduled_service": "no", + "gps_code": "KRSP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_David" + }, + { + "id": "3857", + "ident": "KRST", + "type": "medium_airport", + "name": "Rochester International Airport", + "latitude_deg": "43.908298", + "longitude_deg": "-92.5", + "elevation_ft": "1317", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Rochester", + "scheduled_service": "yes", + "gps_code": "KRST", + "iata_code": "RST", + "local_code": "RST", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rochester_International_Airport" + }, + { + "id": "20964", + "ident": "KRSV", + "type": "small_airport", + "name": "Robinson Municipal Airport", + "latitude_deg": "39.01599884033203", + "longitude_deg": "-87.6498031616211", + "elevation_ft": "462", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Robinson", + "scheduled_service": "no", + "gps_code": "KRSV", + "local_code": "RSV" + }, + { + "id": "3858", + "ident": "KRSW", + "type": "large_airport", + "name": "Southwest Florida International Airport", + "latitude_deg": "26.53619956970215", + "longitude_deg": "-81.75520324707031", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Myers", + "scheduled_service": "yes", + "gps_code": "KRSW", + "iata_code": "RSW", + "local_code": "RSW", + "home_link": "http://www.flylcpa.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Southwest_Florida_International_Airport" + }, + { + "id": "20965", + "ident": "KRTN", + "type": "small_airport", + "name": "Raton Municipal Airport / Crews Field", + "latitude_deg": "36.741501", + "longitude_deg": "-104.501999", + "elevation_ft": "6352", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Raton", + "scheduled_service": "no", + "gps_code": "KRTN", + "iata_code": "RTN", + "local_code": "RTN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Raton_Municipal_Airport" + }, + { + "id": "308223", + "ident": "KRU", + "type": "small_airport", + "name": "Kerau Airport", + "latitude_deg": "-8.271612", + "longitude_deg": "147.071899", + "elevation_ft": "7360", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Gunim", + "scheduled_service": "no", + "gps_code": "AYEA", + "iata_code": "KRU", + "local_code": "KEU" + }, + { + "id": "20966", + "ident": "KRUE", + "type": "small_airport", + "name": "Russellville Regional Airport", + "latitude_deg": "35.259102", + "longitude_deg": "-93.0933", + "elevation_ft": "404", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Russellville", + "scheduled_service": "no", + "gps_code": "KRUE", + "local_code": "RUE", + "home_link": "http://russellvillearkansas.org/149/Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Russellville_Regional_Airport", + "keywords": "M06" + }, + { + "id": "20967", + "ident": "KRUG", + "type": "small_airport", + "name": "Rugby Municipal Airport", + "latitude_deg": "48.39039993286133", + "longitude_deg": "-100.02400207519531", + "elevation_ft": "1548", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Rugby", + "scheduled_service": "no", + "gps_code": "KRUG", + "local_code": "RUG" + }, + { + "id": "20968", + "ident": "KRUQ", + "type": "small_airport", + "name": "Mid-Carolina Regional Airport", + "latitude_deg": "35.645901", + "longitude_deg": "-80.520302", + "elevation_ft": "772", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Salisbury", + "scheduled_service": "no", + "gps_code": "KRUQ", + "iata_code": "SRW", + "local_code": "RUQ", + "home_link": "https://www.rowancountync.gov/GOVERNMENT/Departments/Airport.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rowan_County_Airport", + "keywords": "Rowan County Airport" + }, + { + "id": "3859", + "ident": "KRUT", + "type": "medium_airport", + "name": "Rutland - Southern Vermont Regional Airport", + "latitude_deg": "43.5294", + "longitude_deg": "-72.9496", + "elevation_ft": "787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Rutland", + "scheduled_service": "yes", + "gps_code": "KRUT", + "iata_code": "RUT", + "local_code": "RUT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rutland_State_Airport" + }, + { + "id": "20969", + "ident": "KRVJ", + "type": "small_airport", + "name": "Swinton Smith Field at Reidsville Municipal Airport", + "latitude_deg": "32.058998107910156", + "longitude_deg": "-82.15170288085938", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Reidsville", + "scheduled_service": "no", + "gps_code": "KRVJ", + "local_code": "RVJ" + }, + { + "id": "20970", + "ident": "KRVL", + "type": "small_airport", + "name": "Mifflin County Airport", + "latitude_deg": "40.6773986816", + "longitude_deg": "-77.6268005371", + "elevation_ft": "819", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Reedsville", + "scheduled_service": "no", + "gps_code": "KRVL", + "iata_code": "RED", + "local_code": "RVL", + "home_link": "http://www.mifflincountyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mifflin_County_Airport" + }, + { + "id": "20971", + "ident": "KRVN", + "type": "small_airport", + "name": "Hawkins County Airport", + "latitude_deg": "36.45759963989258", + "longitude_deg": "-82.88500213623047", + "elevation_ft": "1255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Rogersville", + "scheduled_service": "no", + "gps_code": "KRVN", + "local_code": "RVN" + }, + { + "id": "20972", + "ident": "KRVS", + "type": "medium_airport", + "name": "Richard Lloyd Jones Jr Airport", + "latitude_deg": "36.039600372314", + "longitude_deg": "-95.984596252441", + "elevation_ft": "638", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tulsa", + "scheduled_service": "no", + "gps_code": "KRVS", + "iata_code": "RVS", + "local_code": "RVS", + "home_link": "http://www.tulsaairports.com/general-aviation/r-l-jones/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Richard_Lloyd_Jones_Jr._Airport", + "keywords": "Riverside Airport" + }, + { + "id": "20973", + "ident": "KRWF", + "type": "medium_airport", + "name": "Redwood Falls Municipal Airport", + "latitude_deg": "44.54719925", + "longitude_deg": "-95.08229828", + "elevation_ft": "1024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Redwood Falls", + "scheduled_service": "no", + "gps_code": "KRWF", + "iata_code": "RWF", + "local_code": "RWF" + }, + { + "id": "3860", + "ident": "KRWI", + "type": "medium_airport", + "name": "Rocky Mount Wilson Regional Airport", + "latitude_deg": "35.856300354003906", + "longitude_deg": "-77.89189910888672", + "elevation_ft": "159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Rocky Mount", + "scheduled_service": "no", + "gps_code": "KRWI", + "iata_code": "RWI", + "local_code": "RWI" + }, + { + "id": "20974", + "ident": "KRWL", + "type": "medium_airport", + "name": "Rawlins Municipal Airport/Harvey Field", + "latitude_deg": "41.80559921", + "longitude_deg": "-107.1999969", + "elevation_ft": "6813", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Rawlins", + "scheduled_service": "no", + "gps_code": "KRWL", + "iata_code": "RWL", + "local_code": "RWL", + "home_link": "http://www.wyomingairports.org/index.php?/main/airports_detail/rawlins_municipal_airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rawlins_Municipal_Airport" + }, + { + "id": "20975", + "ident": "KRWN", + "type": "small_airport", + "name": "Arens Field", + "latitude_deg": "41.09230041503906", + "longitude_deg": "-86.61289978027344", + "elevation_ft": "711", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Winamac", + "scheduled_service": "no", + "gps_code": "KRWN", + "local_code": "RWN" + }, + { + "id": "20976", + "ident": "KRWV", + "type": "small_airport", + "name": "Caldwell Municipal Airport", + "latitude_deg": "30.515499", + "longitude_deg": "-96.704102", + "elevation_ft": "391", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Caldwell", + "scheduled_service": "no", + "gps_code": "KRWV", + "local_code": "RWV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Caldwell_Municipal_Airport_(Texas)", + "keywords": "14R" + }, + { + "id": "20977", + "ident": "KRXE", + "type": "small_airport", + "name": "Rexburg Madison County Airport", + "latitude_deg": "43.8339", + "longitude_deg": "-111.805002", + "elevation_ft": "4858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Rexburg", + "scheduled_service": "no", + "gps_code": "KRXE", + "iata_code": "RXE", + "local_code": "RXE", + "keywords": "U11" + }, + { + "id": "20978", + "ident": "KRYM", + "type": "small_airport", + "name": "Ray S Miller Army Air Field", + "latitude_deg": "46.09120178222656", + "longitude_deg": "-94.3604965209961", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Camp Ripley", + "scheduled_service": "no", + "gps_code": "KRYM", + "local_code": "RYM" + }, + { + "id": "20979", + "ident": "KRYN", + "type": "small_airport", + "name": "Ryan Field", + "latitude_deg": "32.1422004699707", + "longitude_deg": "-111.17500305175781", + "elevation_ft": "2417", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no", + "gps_code": "KRYN", + "local_code": "RYN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ryan_Field_(airport)" + }, + { + "id": "20980", + "ident": "KRYV", + "type": "small_airport", + "name": "Watertown Municipal Airport", + "latitude_deg": "43.16960144042969", + "longitude_deg": "-88.72319793701172", + "elevation_ft": "833", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Watertown", + "scheduled_service": "no", + "gps_code": "KRYV", + "local_code": "RYV" + }, + { + "id": "18922", + "ident": "KRYW", + "type": "small_airport", + "name": "Lago Vista Texas Rusty Allen Airport", + "latitude_deg": "30.4986", + "longitude_deg": "-97.969498", + "elevation_ft": "1231", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lago Vista", + "scheduled_service": "no", + "gps_code": "KRYW", + "local_code": "RYW", + "keywords": "Formerly 5R3" + }, + { + "id": "20981", + "ident": "KRYY", + "type": "medium_airport", + "name": "Cobb County International Airport-McCollum Field", + "latitude_deg": "34.01316", + "longitude_deg": "-84.59721", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "KRYY", + "local_code": "RYY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cobb_County_Airport" + }, + { + "id": "20982", + "ident": "KRZL", + "type": "small_airport", + "name": "Jasper County Airport", + "latitude_deg": "40.9478988647", + "longitude_deg": "-87.1826019287", + "elevation_ft": "698", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Rensselaer", + "scheduled_service": "no", + "gps_code": "KRZL", + "iata_code": "RNZ", + "local_code": "RZL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jasper_County_Airport_(Indiana)" + }, + { + "id": "20983", + "ident": "KRZN", + "type": "small_airport", + "name": "Burnett County Airport", + "latitude_deg": "45.82270050048828", + "longitude_deg": "-92.37249755859375", + "elevation_ft": "989", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Siren", + "scheduled_service": "no", + "gps_code": "KRZN", + "local_code": "RZN" + }, + { + "id": "308893", + "ident": "KRZR", + "type": "small_airport", + "name": "Cleveland Regional Jetport", + "latitude_deg": "35.2114972", + "longitude_deg": "-84.7997694", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "KRZR", + "local_code": "RZR", + "home_link": "http://www.clevelandregionaljetport.com/" + }, + { + "id": "20984", + "ident": "KRZT", + "type": "small_airport", + "name": "Ross County Airport", + "latitude_deg": "39.440399169921875", + "longitude_deg": "-83.02310180664062", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Chillicothe", + "scheduled_service": "no", + "gps_code": "KRZT", + "local_code": "RZT" + }, + { + "id": "20985", + "ident": "KRZZ", + "type": "closed", + "name": "Halifax County Airport", + "latitude_deg": "36.4394989014", + "longitude_deg": "-77.7092971802", + "elevation_ft": "256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Roanoke Rapids", + "scheduled_service": "no", + "gps_code": "KRZZ", + "iata_code": "RZZ", + "local_code": "RZZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Halifax_County_Airport" + }, + { + "id": "20986", + "ident": "KS01", + "type": "small_airport", + "name": "Conrad Airport", + "latitude_deg": "48.16859817504883", + "longitude_deg": "-111.97599792480469", + "elevation_ft": "3545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Conrad", + "scheduled_service": "no", + "gps_code": "KS01", + "local_code": "S01" + }, + { + "id": "20987", + "ident": "KS03", + "type": "small_airport", + "name": "Ashland Municipal Airport-Sumner Parker Field", + "latitude_deg": "42.190265", + "longitude_deg": "-122.660648", + "elevation_ft": "1885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Ashland", + "scheduled_service": "no", + "iata_code": "AHM", + "local_code": "S03", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ashland_Municipal_Airport" + }, + { + "id": "20988", + "ident": "KS05", + "type": "small_airport", + "name": "Bandon State Airport", + "latitude_deg": "43.08649826", + "longitude_deg": "-124.4079971", + "elevation_ft": "122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Bandon", + "scheduled_service": "no", + "gps_code": "S05", + "iata_code": "BDY", + "local_code": "S05", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bandon_State_Airport" + }, + { + "id": "20989", + "ident": "KS10", + "type": "small_airport", + "name": "Lake Chelan Airport", + "latitude_deg": "47.86600112915039", + "longitude_deg": "-119.94300079345703", + "elevation_ft": "1263", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Chelan", + "scheduled_service": "no", + "gps_code": "KS10", + "local_code": "S10" + }, + { + "id": "20990", + "ident": "KS12", + "type": "small_airport", + "name": "Albany Municipal Airport", + "latitude_deg": "44.637798309326", + "longitude_deg": "-123.05899810791", + "elevation_ft": "226", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "S12", + "local_code": "S12", + "home_link": "http://www.cityofalbany.net/departments/public-works/transportation/albany-municipal-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Albany_Municipal_Airport_(Oregon)" + }, + { + "id": "20991", + "ident": "KS17", + "type": "small_airport", + "name": "Twin Lakes Airport", + "latitude_deg": "33.645699", + "longitude_deg": "-81.867104", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Trenton", + "scheduled_service": "no", + "local_code": "S17" + }, + { + "id": "20992", + "ident": "KS19", + "type": "small_airport", + "name": "McCormick County Airport", + "latitude_deg": "33.9081", + "longitude_deg": "-82.266899", + "elevation_ft": "459", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "McCormick", + "scheduled_service": "no", + "local_code": "S19" + }, + { + "id": "20993", + "ident": "KS20", + "type": "small_airport", + "name": "Goldendale Airport", + "latitude_deg": "45.83209991455078", + "longitude_deg": "-120.84500122070312", + "elevation_ft": "1678", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Goldendale", + "scheduled_service": "no", + "gps_code": "KS20", + "local_code": "S20" + }, + { + "id": "20994", + "ident": "KS21", + "type": "small_airport", + "name": "Sunriver Airport", + "latitude_deg": "43.8763008118", + "longitude_deg": "-121.45300293", + "elevation_ft": "4164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sunriver", + "scheduled_service": "no", + "gps_code": "S21", + "iata_code": "SUO", + "local_code": "S21", + "home_link": "http://www.sunriver-resort.com/resort/sunriver-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sunriver_Airport" + }, + { + "id": "20995", + "ident": "KS23", + "type": "small_airport", + "name": "Ione Municipal Airport", + "latitude_deg": "48.708099365234375", + "longitude_deg": "-117.41300201416016", + "elevation_ft": "2108", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ione", + "scheduled_service": "no", + "gps_code": "KS23", + "local_code": "S23" + }, + { + "id": "20996", + "ident": "KS24", + "type": "small_airport", + "name": "Sandusky County Regional Airport", + "latitude_deg": "41.29570007", + "longitude_deg": "-83.03720093", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Fremont", + "scheduled_service": "no", + "gps_code": "S24", + "local_code": "S24" + }, + { + "id": "20997", + "ident": "KS25", + "type": "small_airport", + "name": "Watford City Municipal Airport", + "latitude_deg": "47.79570007", + "longitude_deg": "-103.2539978", + "elevation_ft": "2111", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Watford City", + "scheduled_service": "no", + "gps_code": "KS25", + "local_code": "S25" + }, + { + "id": "20998", + "ident": "KS27", + "type": "small_airport", + "name": "Kalispell City Airport", + "latitude_deg": "48.1786003112793", + "longitude_deg": "-114.30400085449219", + "elevation_ft": "2932", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Kalispell", + "scheduled_service": "no", + "gps_code": "KS27", + "local_code": "S27" + }, + { + "id": "21000", + "ident": "KS32", + "type": "small_airport", + "name": "Cooperstown Municipal Airport", + "latitude_deg": "47.422798", + "longitude_deg": "-98.105904", + "elevation_ft": "1424", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Cooperstown", + "scheduled_service": "no", + "gps_code": "KS32", + "local_code": "S32" + }, + { + "id": "21001", + "ident": "KS33", + "type": "small_airport", + "name": "Madras Municipal Airport", + "latitude_deg": "44.67020035", + "longitude_deg": "-121.1549988", + "elevation_ft": "2437", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Madras", + "scheduled_service": "no", + "gps_code": "KS33", + "iata_code": "MDJ", + "local_code": "S33", + "wikipedia_link": "https://en.wikipedia.org/wiki/Madras_Municipal_Airport", + "keywords": "City-County Airport" + }, + { + "id": "21002", + "ident": "KS34", + "type": "small_airport", + "name": "Plains Airport", + "latitude_deg": "47.473475", + "longitude_deg": "-114.907122", + "elevation_ft": "2467", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Plains", + "scheduled_service": "no", + "gps_code": "KS34", + "local_code": "S34" + }, + { + "id": "21003", + "ident": "KS36", + "type": "small_airport", + "name": "Norman Grier Field", + "latitude_deg": "47.337102", + "longitude_deg": "-122.103996", + "elevation_ft": "472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Kent", + "scheduled_service": "no", + "local_code": "S36", + "home_link": "https://crestairpark.com/", + "keywords": "Norman Grier Field, Crest Airpark" + }, + { + "id": "21004", + "ident": "KS39", + "type": "small_airport", + "name": "Prineville Airport", + "latitude_deg": "44.286998748779", + "longitude_deg": "-120.90399932861", + "elevation_ft": "3250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Prineville", + "scheduled_service": "no", + "gps_code": "S39", + "iata_code": "PRZ", + "local_code": "S39", + "home_link": "http://www.prinevilleairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Prineville_Airport" + }, + { + "id": "21005", + "ident": "KS40", + "type": "small_airport", + "name": "Prosser Airport", + "latitude_deg": "46.21340179", + "longitude_deg": "-119.7910004", + "elevation_ft": "697", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Prosser", + "scheduled_service": "no", + "gps_code": "KS40", + "local_code": "S40" + }, + { + "id": "21006", + "ident": "KS42", + "type": "small_airport", + "name": "Springer Municipal Airport", + "latitude_deg": "36.331075", + "longitude_deg": "-104.618339", + "elevation_ft": "5891", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Springer", + "scheduled_service": "no", + "gps_code": "KS42", + "local_code": "S42" + }, + { + "id": "21007", + "ident": "KS45", + "type": "small_airport", + "name": "Siletz Bay State Airport", + "latitude_deg": "44.876899719238", + "longitude_deg": "-124.02899932861", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Gleneden Beach", + "scheduled_service": "no", + "gps_code": "S45", + "local_code": "S45", + "home_link": "http://www.oregon.gov/aviation/Pages/Siletz-Bay.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Siletz_Bay_State_Airport" + }, + { + "id": "21009", + "ident": "KS48", + "type": "small_airport", + "name": "Country Squire Airpark", + "latitude_deg": "45.354400634765625", + "longitude_deg": "-122.26799774169922", + "elevation_ft": "1175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sandy", + "scheduled_service": "no", + "gps_code": "KS48", + "local_code": "S48", + "wikipedia_link": "https://en.wikipedia.org/wiki/Country_Squire_Airpark" + }, + { + "id": "21010", + "ident": "KS50", + "type": "small_airport", + "name": "Auburn Municipal Airport", + "latitude_deg": "47.327702", + "longitude_deg": "-122.226997", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "KS50", + "local_code": "S50", + "wikipedia_link": "https://en.wikipedia.org/wiki/Auburn_Municipal_Airport_(Washington)", + "keywords": "KABN, ABN, Dick Scobee Field" + }, + { + "id": "21011", + "ident": "KS52", + "type": "small_airport", + "name": "Methow Valley State Airport", + "latitude_deg": "48.42490005493164", + "longitude_deg": "-120.14600372314453", + "elevation_ft": "1706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Winthrop", + "scheduled_service": "no", + "gps_code": "KS52", + "local_code": "S52" + }, + { + "id": "21012", + "ident": "KS59", + "type": "small_airport", + "name": "Libby Airport", + "latitude_deg": "48.28379821777344", + "longitude_deg": "-115.48999786376953", + "elevation_ft": "2601", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Libby", + "scheduled_service": "no", + "gps_code": "KS59", + "local_code": "S59" + }, + { + "id": "21013", + "ident": "KS64", + "type": "small_airport", + "name": "Stanford Airport/Biggerstaff Field", + "latitude_deg": "47.147202", + "longitude_deg": "-110.230003", + "elevation_ft": "4327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Stanford", + "scheduled_service": "no", + "local_code": "S64" + }, + { + "id": "21014", + "ident": "KS67", + "type": "small_airport", + "name": "Nampa Municipal Airport", + "latitude_deg": "43.581299", + "longitude_deg": "-116.523003", + "elevation_ft": "2537", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Nampa", + "scheduled_service": "no", + "gps_code": "KMAN", + "local_code": "MAN", + "home_link": "http://nampaairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nampa_Municipal_Airport", + "keywords": "S67" + }, + { + "id": "21015", + "ident": "KS69", + "type": "small_airport", + "name": "Lincoln Airport", + "latitude_deg": "46.95439911", + "longitude_deg": "-112.6500015", + "elevation_ft": "4603", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "KS69", + "local_code": "S69" + }, + { + "id": "21016", + "ident": "KS70", + "type": "small_airport", + "name": "Othello Municipal Airport", + "latitude_deg": "46.79489899", + "longitude_deg": "-119.0790024", + "elevation_ft": "1139", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Othello", + "scheduled_service": "no", + "gps_code": "KS70", + "local_code": "S70" + }, + { + "id": "21017", + "ident": "KS71", + "type": "small_airport", + "name": "Edgar G Obie Airport", + "latitude_deg": "48.592098236083984", + "longitude_deg": "-109.2509994506836", + "elevation_ft": "2416", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Chinook", + "scheduled_service": "no", + "gps_code": "KS71", + "local_code": "S71" + }, + { + "id": "21018", + "ident": "KS72", + "type": "small_airport", + "name": "St Maries Municipal Airport", + "latitude_deg": "47.327701568603516", + "longitude_deg": "-116.5770034790039", + "elevation_ft": "2127", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "St Maries", + "scheduled_service": "no", + "gps_code": "KS72", + "local_code": "S72" + }, + { + "id": "21019", + "ident": "KS73", + "type": "small_airport", + "name": "Kamiah Municipal Airport", + "latitude_deg": "46.21929931640625", + "longitude_deg": "-116.01300048828125", + "elevation_ft": "1194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Kamiah", + "scheduled_service": "no", + "gps_code": "KS73", + "local_code": "S73" + }, + { + "id": "21020", + "ident": "KS75", + "type": "small_airport", + "name": "Payette Municipal Airport", + "latitude_deg": "44.091598510699995", + "longitude_deg": "-116.901000977", + "elevation_ft": "2228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Payette", + "scheduled_service": "no", + "gps_code": "S75", + "local_code": "S75" + }, + { + "id": "21021", + "ident": "KS78", + "type": "small_airport", + "name": "Emmett Municipal Airport", + "latitude_deg": "43.84989929199219", + "longitude_deg": "-116.54299926757812", + "elevation_ft": "2350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Emmett", + "scheduled_service": "no", + "gps_code": "KS78", + "local_code": "S78" + }, + { + "id": "21022", + "ident": "KS80", + "type": "small_airport", + "name": "Idaho County Airport", + "latitude_deg": "45.9426", + "longitude_deg": "-116.123001", + "elevation_ft": "3314", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Grangeville", + "scheduled_service": "no", + "gps_code": "KGIC", + "iata_code": "IDH", + "local_code": "GIC", + "home_link": "http://idahocountyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Idaho_County_Airport", + "keywords": "S80" + }, + { + "id": "21023", + "ident": "KS83", + "type": "small_airport", + "name": "Shoshone County Airport", + "latitude_deg": "47.547277", + "longitude_deg": "-116.188745", + "elevation_ft": "2223", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Smelterville", + "scheduled_service": "no", + "gps_code": "KS83", + "local_code": "S83" + }, + { + "id": "21024", + "ident": "KS84", + "type": "small_airport", + "name": "Cottonwood Municipal Airport", + "latitude_deg": "46.03879928588867", + "longitude_deg": "-116.33200073242188", + "elevation_ft": "3474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cottonwood", + "scheduled_service": "no", + "gps_code": "KS84", + "local_code": "S84" + }, + { + "id": "21025", + "ident": "KS85", + "type": "small_airport", + "name": "Big Sky Field", + "latitude_deg": "48.15330123901367", + "longitude_deg": "-104.50399780273438", + "elevation_ft": "1954", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Culbertson", + "scheduled_service": "no", + "gps_code": "KS85", + "local_code": "S85" + }, + { + "id": "21026", + "ident": "KS87", + "type": "small_airport", + "name": "Weiser Municipal Airport", + "latitude_deg": "44.20679855", + "longitude_deg": "-116.961998", + "elevation_ft": "2120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Weiser", + "scheduled_service": "no", + "gps_code": "KS87", + "local_code": "S87" + }, + { + "id": "21027", + "ident": "KS94", + "type": "small_airport", + "name": "Port of Whitman Business Air Center Airport", + "latitude_deg": "46.8587", + "longitude_deg": "-117.414001", + "elevation_ft": "2181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Colfax", + "scheduled_service": "no", + "gps_code": "KS94", + "local_code": "S94" + }, + { + "id": "21028", + "ident": "KS95", + "type": "small_airport", + "name": "Martin Field", + "latitude_deg": "46.04690170288086", + "longitude_deg": "-118.41699981689453", + "elevation_ft": "746", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "College Place", + "scheduled_service": "no", + "gps_code": "KS95", + "local_code": "S95" + }, + { + "id": "21029", + "ident": "KS97", + "type": "small_airport", + "name": "Anderson Field", + "latitude_deg": "48.10490036010742", + "longitude_deg": "-119.72100067138672", + "elevation_ft": "914", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Brewster", + "scheduled_service": "no", + "gps_code": "KS97", + "local_code": "S97" + }, + { + "id": "21030", + "ident": "KS98", + "type": "closed", + "name": "Vista Field", + "latitude_deg": "46.218601", + "longitude_deg": "-119.209999", + "elevation_ft": "534", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Kennewick", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vista_Field", + "keywords": "VSK, S98" + }, + { + "id": "21031", + "ident": "KSAA", + "type": "small_airport", + "name": "Shively Field", + "latitude_deg": "41.444901", + "longitude_deg": "-106.823997", + "elevation_ft": "7012", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Saratoga", + "scheduled_service": "no", + "gps_code": "KSAA", + "iata_code": "SAA", + "local_code": "SAA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shively_Field" + }, + { + "id": "3861", + "ident": "KSAC", + "type": "medium_airport", + "name": "Sacramento Executive Airport", + "latitude_deg": "38.5125007629", + "longitude_deg": "-121.492996216", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sacramento", + "scheduled_service": "no", + "gps_code": "KSAC", + "iata_code": "SAC", + "local_code": "SAC", + "home_link": "http://www.sacramento.aero/sac/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sacramento_Executive_Airport", + "keywords": "Sutterville Aerodrome, Sacramento Municipal" + }, + { + "id": "21032", + "ident": "KSAD", + "type": "small_airport", + "name": "Safford Regional Airport", + "latitude_deg": "32.85480118", + "longitude_deg": "-109.6350021", + "elevation_ft": "3179", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Safford", + "scheduled_service": "no", + "gps_code": "KSAD", + "iata_code": "SAD", + "local_code": "SAD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Safford_Regional_Airport" + }, + { + "id": "21033", + "ident": "KSAF", + "type": "medium_airport", + "name": "Santa Fe Municipal Airport", + "latitude_deg": "35.617099762", + "longitude_deg": "-106.088996887", + "elevation_ft": "6348", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Santa Fe", + "scheduled_service": "no", + "gps_code": "KSAF", + "iata_code": "SAF", + "local_code": "SAF" + }, + { + "id": "3862", + "ident": "KSAN", + "type": "large_airport", + "name": "San Diego International Airport", + "latitude_deg": "32.7336006165", + "longitude_deg": "-117.190002441", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "yes", + "gps_code": "KSAN", + "iata_code": "SAN", + "local_code": "SAN", + "home_link": "http://www.san.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Diego_International_Airport", + "keywords": "Lindbergh Field" + }, + { + "id": "21034", + "ident": "KSAR", + "type": "small_airport", + "name": "Sparta Community Hunter Field", + "latitude_deg": "38.1488990784", + "longitude_deg": "-89.6986999512", + "elevation_ft": "538", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sparta", + "scheduled_service": "no", + "gps_code": "KSAR", + "iata_code": "SAR", + "local_code": "SAR", + "home_link": "http://www.ksarairport.com/" + }, + { + "id": "3863", + "ident": "KSAT", + "type": "large_airport", + "name": "San Antonio International Airport", + "latitude_deg": "29.533701", + "longitude_deg": "-98.469803", + "elevation_ft": "809", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "yes", + "gps_code": "KSAT", + "iata_code": "SAT", + "local_code": "SAT", + "home_link": "https://www.sanantonio.gov/aviation", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Antonio_International_Airport" + }, + { + "id": "3864", + "ident": "KSAV", + "type": "large_airport", + "name": "Savannah Hilton Head International Airport", + "latitude_deg": "32.12760162", + "longitude_deg": "-81.20210266", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Savannah", + "scheduled_service": "yes", + "gps_code": "KSAV", + "iata_code": "SAV", + "local_code": "SAV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Savannah/Hilton_Head_International_Airport" + }, + { + "id": "3865", + "ident": "KSAW", + "type": "medium_airport", + "name": "Sawyer International Airport", + "latitude_deg": "46.3536", + "longitude_deg": "-87.395401", + "elevation_ft": "1221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Gwinn", + "scheduled_service": "yes", + "gps_code": "KSAW", + "iata_code": "MQT", + "local_code": "SAW", + "home_link": "http://www.sawyerairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sawyer_International_Airport" + }, + { + "id": "21035", + "ident": "KSAZ", + "type": "small_airport", + "name": "Staples Municipal Airport", + "latitude_deg": "46.38090133666992", + "longitude_deg": "-94.80660247802734", + "elevation_ft": "1287", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Staples", + "scheduled_service": "no", + "gps_code": "KSAZ", + "local_code": "SAZ" + }, + { + "id": "3866", + "ident": "KSBA", + "type": "medium_airport", + "name": "Santa Barbara Municipal Airport", + "latitude_deg": "34.42620087", + "longitude_deg": "-119.8399963", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Barbara", + "scheduled_service": "yes", + "gps_code": "KSBA", + "iata_code": "SBA", + "local_code": "SBA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Barbara_Airport" + }, + { + "id": "3867", + "ident": "KSBD", + "type": "medium_airport", + "name": "San Bernardino International Airport", + "latitude_deg": "34.095402", + "longitude_deg": "-117.235001", + "elevation_ft": "1159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Bernardino", + "scheduled_service": "yes", + "gps_code": "KSBD", + "iata_code": "SBD", + "local_code": "SBD", + "home_link": "http://sbdairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Bernardino_International_Airport", + "keywords": "Norton AFB, San Bernardino Air Depot" + }, + { + "id": "21036", + "ident": "KSBM", + "type": "small_airport", + "name": "Sheboygan County Memorial Airport", + "latitude_deg": "43.76959991", + "longitude_deg": "-87.85140228", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Sheboygan", + "scheduled_service": "no", + "gps_code": "KSBM", + "iata_code": "SBM", + "local_code": "SBM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sheboygan_County_Memorial_Airport" + }, + { + "id": "3868", + "ident": "KSBN", + "type": "medium_airport", + "name": "South Bend Regional Airport", + "latitude_deg": "41.708698", + "longitude_deg": "-86.317299", + "elevation_ft": "799", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "South Bend", + "scheduled_service": "yes", + "gps_code": "KSBN", + "iata_code": "SBN", + "local_code": "SBN", + "wikipedia_link": "https://en.wikipedia.org/wiki/South_Bend_Regional_Airport" + }, + { + "id": "21037", + "ident": "KSBO", + "type": "small_airport", + "name": "Emanuel County Airport", + "latitude_deg": "32.609100341796875", + "longitude_deg": "-82.36990356445312", + "elevation_ft": "327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Swainsboro", + "scheduled_service": "no", + "gps_code": "KSBO", + "local_code": "SBO" + }, + { + "id": "3869", + "ident": "KSBP", + "type": "medium_airport", + "name": "San Luis County Regional Airport", + "latitude_deg": "35.236801147499996", + "longitude_deg": "-120.641998291", + "elevation_ft": "212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Luis Obispo", + "scheduled_service": "yes", + "gps_code": "KSBP", + "iata_code": "SBP", + "local_code": "SBP", + "home_link": "http://www.sloairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Luis_Obispo_County_Regional_Airport", + "keywords": "SLO Airport" + }, + { + "id": "21038", + "ident": "KSBS", + "type": "small_airport", + "name": "Steamboat Springs Bob Adams Field", + "latitude_deg": "40.5163002", + "longitude_deg": "-106.8659973", + "elevation_ft": "6882", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Steamboat Springs", + "scheduled_service": "no", + "gps_code": "KSBS", + "iata_code": "SBS", + "local_code": "SBS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Steamboat_Springs_Airport" + }, + { + "id": "21039", + "ident": "KSBU", + "type": "small_airport", + "name": "Blue Earth Municipal Airport", + "latitude_deg": "43.595298767089844", + "longitude_deg": "-94.0927963256836", + "elevation_ft": "1107", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Blue Earth", + "scheduled_service": "no", + "gps_code": "KSBU", + "local_code": "SBU" + }, + { + "id": "21040", + "ident": "KSBX", + "type": "small_airport", + "name": "Shelby Airport", + "latitude_deg": "48.5406990051", + "longitude_deg": "-111.871002197", + "elevation_ft": "3443", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Shelby", + "scheduled_service": "no", + "gps_code": "KSBX", + "iata_code": "SBX", + "local_code": "SBX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shelby_Airport" + }, + { + "id": "3870", + "ident": "KSBY", + "type": "medium_airport", + "name": "Salisbury Ocean City Wicomico Regional Airport", + "latitude_deg": "38.34049987792969", + "longitude_deg": "-75.51029968261719", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Salisbury", + "scheduled_service": "yes", + "gps_code": "KSBY", + "iata_code": "SBY", + "local_code": "SBY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wicomico_Regional_Airport" + }, + { + "id": "21041", + "ident": "KSCB", + "type": "small_airport", + "name": "Scribner State Airport", + "latitude_deg": "41.610298156738", + "longitude_deg": "-96.629898071289", + "elevation_ft": "1325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Scribner", + "scheduled_service": "no", + "gps_code": "KSCB", + "iata_code": "SCB", + "local_code": "SCB", + "home_link": "http://www.aero.nebraska.gov/scribner.pdf", + "wikipedia_link": "https://en.wikipedia.org/wiki/Scribner_State_Airport", + "keywords": "Scribner AAF" + }, + { + "id": "21042", + "ident": "KSCD", + "type": "small_airport", + "name": "Merkel Field Sylacauga Municipal Airport", + "latitude_deg": "33.17179870605469", + "longitude_deg": "-86.30549621582031", + "elevation_ft": "569", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Sylacauga", + "scheduled_service": "no", + "gps_code": "KSCD", + "local_code": "SCD" + }, + { + "id": "3871", + "ident": "KSCH", + "type": "medium_airport", + "name": "Schenectady County Airport", + "latitude_deg": "42.852500915527", + "longitude_deg": "-73.928901672363", + "elevation_ft": "378", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Schenectady", + "scheduled_service": "no", + "gps_code": "KSCH", + "iata_code": "SCH", + "local_code": "SCH", + "home_link": "http://www.schenectadycounty.com/FullStory.aspx?m=100&amid=432", + "wikipedia_link": "https://en.wikipedia.org/wiki/Schenectady_County_Airport" + }, + { + "id": "3872", + "ident": "KSCK", + "type": "medium_airport", + "name": "Stockton Metropolitan Airport", + "latitude_deg": "37.894199371338", + "longitude_deg": "-121.2379989624", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stockton", + "scheduled_service": "no", + "gps_code": "KSCK", + "iata_code": "SCK", + "local_code": "SCK", + "home_link": "http://www.sjgov.org/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stockton_Metropolitan_Airport" + }, + { + "id": "21043", + "ident": "KSCX", + "type": "small_airport", + "name": "Scott Municipal Airport", + "latitude_deg": "36.45560073852539", + "longitude_deg": "-84.58570098876953", + "elevation_ft": "1545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Oneida", + "scheduled_service": "no", + "gps_code": "KSCX", + "local_code": "SCX" + }, + { + "id": "21044", + "ident": "KSDA", + "type": "small_airport", + "name": "Shenandoah Municipal Airport", + "latitude_deg": "40.7515983581543", + "longitude_deg": "-95.4136962890625", + "elevation_ft": "971", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Shenandoah", + "scheduled_service": "no", + "gps_code": "KSDA", + "local_code": "SDA" + }, + { + "id": "18698", + "ident": "KSDC", + "type": "small_airport", + "name": "Williamson Sodus Airport", + "latitude_deg": "43.234573", + "longitude_deg": "-77.119403", + "elevation_ft": "424", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Williamson/Sodus", + "scheduled_service": "no", + "gps_code": "KSDC", + "local_code": "SDC", + "keywords": "3G7" + }, + { + "id": "3873", + "ident": "KSDF", + "type": "large_airport", + "name": "Louisville Muhammad Ali International Airport", + "latitude_deg": "38.1744", + "longitude_deg": "-85.736", + "elevation_ft": "501", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Louisville", + "scheduled_service": "yes", + "gps_code": "KSDF", + "iata_code": "SDF", + "local_code": "SDF", + "home_link": "http://www.flylouisville.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Louisville_International_Airport", + "keywords": "Louisville International, Standiford Field" + }, + { + "id": "21045", + "ident": "KSDL", + "type": "small_airport", + "name": "Scottsdale Airport", + "latitude_deg": "33.622898101807", + "longitude_deg": "-111.91100311279", + "elevation_ft": "1510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Scottsdale", + "scheduled_service": "no", + "gps_code": "KSDL", + "iata_code": "SCF", + "local_code": "SDL", + "home_link": "http://www.scottsdaleaz.gov/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Scottsdale_Airport", + "keywords": "Thunderbird Field #2" + }, + { + "id": "3874", + "ident": "KSDM", + "type": "medium_airport", + "name": "Brown Field Municipal Airport", + "latitude_deg": "32.572299957275", + "longitude_deg": "-116.98000335693", + "elevation_ft": "526", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no", + "gps_code": "KSDM", + "iata_code": "SDM", + "local_code": "SDM", + "home_link": "http://www.sandiego.gov/airports/brown/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brown_Field_Municipal_Airport" + }, + { + "id": "21046", + "ident": "KSDY", + "type": "medium_airport", + "name": "Sidney - Richland Regional Airport", + "latitude_deg": "47.706902", + "longitude_deg": "-104.193001", + "elevation_ft": "1985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Sidney", + "scheduled_service": "no", + "gps_code": "KSDY", + "iata_code": "SDY", + "local_code": "SDY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sidney%E2%80%93Richland_Municipal_Airport" + }, + { + "id": "3875", + "ident": "KSEA", + "type": "large_airport", + "name": "Seattle–Tacoma International Airport", + "latitude_deg": "47.449162", + "longitude_deg": "-122.311134", + "elevation_ft": "433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Seattle", + "scheduled_service": "yes", + "gps_code": "KSEA", + "iata_code": "SEA", + "local_code": "SEA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Seattle%E2%80%93Tacoma_International_Airport" + }, + { + "id": "21047", + "ident": "KSEE", + "type": "small_airport", + "name": "Gillespie Field", + "latitude_deg": "32.826198577881", + "longitude_deg": "-116.97200012207", + "elevation_ft": "388", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego/El Cajon", + "scheduled_service": "no", + "gps_code": "KSEE", + "iata_code": "SEE", + "local_code": "SEE", + "home_link": "http://GillespieField.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gillespie_Field" + }, + { + "id": "21048", + "ident": "KSEF", + "type": "small_airport", + "name": "Sebring Regional Airport", + "latitude_deg": "27.45639992", + "longitude_deg": "-81.3423996", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sebring", + "scheduled_service": "no", + "gps_code": "KSEF", + "iata_code": "SEF", + "local_code": "SEF", + "home_link": "http://www.sebring-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sebring_Regional_Airport" + }, + { + "id": "21049", + "ident": "KSEG", + "type": "small_airport", + "name": "Penn Valley Airport", + "latitude_deg": "40.820598602295", + "longitude_deg": "-76.863899230957", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Selinsgrove", + "scheduled_service": "no", + "gps_code": "KSEG", + "iata_code": "SEG", + "local_code": "SEG", + "home_link": "http://www.dot.state.pa.us/Internet/Bureaus/pdBOA.nsf/AviationHomepage?openframeset", + "wikipedia_link": "https://en.wikipedia.org/wiki/Penn_Valley_Airport" + }, + { + "id": "21050", + "ident": "KSEM", + "type": "small_airport", + "name": "Craig Field", + "latitude_deg": "32.343898773193", + "longitude_deg": "-86.987800598145", + "elevation_ft": "166", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Selma", + "scheduled_service": "no", + "gps_code": "KSEM", + "iata_code": "SEM", + "local_code": "SEM", + "home_link": "http://www.craigcomplex.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Craig_Field_(airport)" + }, + { + "id": "21051", + "ident": "KSEP", + "type": "small_airport", + "name": "Stephenville Clark Regional Airport", + "latitude_deg": "32.215302", + "longitude_deg": "-98.177696", + "elevation_ft": "1321", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Stephenville", + "scheduled_service": "no", + "gps_code": "KSEP", + "iata_code": "SEP", + "local_code": "SEP", + "home_link": "http://www.stephenvilletx.gov/city-services/airport/airport-stephenville-aviation/", + "keywords": "Clark Field" + }, + { + "id": "21052", + "ident": "KSEQ", + "type": "small_airport", + "name": "Randolph Air Force Base Auxiliary Airport", + "latitude_deg": "29.56579971", + "longitude_deg": "-97.90830231", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seguin", + "scheduled_service": "no", + "gps_code": "KSEQ", + "local_code": "SEQ" + }, + { + "id": "21053", + "ident": "KSER", + "type": "small_airport", + "name": "Freeman Municipal Airport", + "latitude_deg": "38.923599243164", + "longitude_deg": "-85.907402038574", + "elevation_ft": "583", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Seymour", + "scheduled_service": "no", + "gps_code": "KSER", + "iata_code": "SER", + "local_code": "SER", + "home_link": "http://seymourcity.com/departments/aviation/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Freeman_Municipal_Airport" + }, + { + "id": "21054", + "ident": "KSET", + "type": "small_airport", + "name": "St Charles County Smartt Airport", + "latitude_deg": "38.92969894", + "longitude_deg": "-90.43000031", + "elevation_ft": "437", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Charles", + "scheduled_service": "no", + "gps_code": "KSET", + "local_code": "SET" + }, + { + "id": "21055", + "ident": "KSEZ", + "type": "small_airport", + "name": "Sedona Airport", + "latitude_deg": "34.848598480225", + "longitude_deg": "-111.78800201416", + "elevation_ft": "4830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sedona", + "scheduled_service": "no", + "gps_code": "KSEZ", + "iata_code": "SDX", + "local_code": "SEZ", + "home_link": "http://sedonaairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sedona_Airport" + }, + { + "id": "3876", + "ident": "KSFB", + "type": "large_airport", + "name": "Orlando Sanford International Airport", + "latitude_deg": "28.777599334716797", + "longitude_deg": "-81.23750305175781", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "yes", + "gps_code": "KSFB", + "iata_code": "SFB", + "local_code": "SFB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orlando_Sanford_International_Airport" + }, + { + "id": "3877", + "ident": "KSFF", + "type": "medium_airport", + "name": "Felts Field", + "latitude_deg": "47.682899", + "longitude_deg": "-117.321925", + "elevation_ft": "1953", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Spokane", + "scheduled_service": "no", + "gps_code": "KSFF", + "iata_code": "SFF", + "local_code": "SFF", + "home_link": "http://feltsfield.spokaneairports.net/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Felts_Field_Airport", + "keywords": "Parkwater Airstrip" + }, + { + "id": "21057", + "ident": "KSFM", + "type": "small_airport", + "name": "Sanford Seacoast Regional Airport", + "latitude_deg": "43.393901824951", + "longitude_deg": "-70.708000183105", + "elevation_ft": "244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Sanford", + "scheduled_service": "no", + "gps_code": "KSFM", + "iata_code": "SFM", + "local_code": "SFM", + "home_link": "http://www.sanfordmaine.org/index.asp?Type=B_BASIC&SEC={DEE316C2-D149-450A-922E-9B2B686815B4}", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sanford_Regional_Airport", + "keywords": "Sanford NAAF" + }, + { + "id": "3878", + "ident": "KSFO", + "type": "large_airport", + "name": "San Francisco International Airport", + "latitude_deg": "37.61899948120117", + "longitude_deg": "-122.375", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Francisco", + "scheduled_service": "yes", + "gps_code": "KSFO", + "iata_code": "SFO", + "local_code": "SFO", + "home_link": "http://www.flysfo.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Francisco_International_Airport", + "keywords": "QSF, QBA" + }, + { + "id": "21058", + "ident": "KSFQ", + "type": "small_airport", + "name": "Suffolk Executive Airport", + "latitude_deg": "36.68239974975586", + "longitude_deg": "-76.60189819335938", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Suffolk", + "scheduled_service": "no", + "gps_code": "KSFQ", + "local_code": "SFQ" + }, + { + "id": "21059", + "ident": "KSFY", + "type": "small_airport", + "name": "Tri Township Airport", + "latitude_deg": "42.045799255371094", + "longitude_deg": "-90.10790252685547", + "elevation_ft": "616", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Savanna", + "scheduled_service": "no", + "gps_code": "KSFY", + "local_code": "SFY" + }, + { + "id": "21060", + "ident": "KSFZ", + "type": "small_airport", + "name": "North Central State Airport", + "latitude_deg": "41.9207992554", + "longitude_deg": "-71.49140167239999", + "elevation_ft": "441", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Pawtucket", + "scheduled_service": "no", + "gps_code": "KSFZ", + "iata_code": "SFZ", + "local_code": "SFZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/North_Central_State_Airport" + }, + { + "id": "313226", + "ident": "KSG", + "type": "closed", + "name": "Kisengam Airport", + "latitude_deg": "-6.362", + "longitude_deg": "146.71", + "elevation_ft": "3700", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Kisenden", + "scheduled_service": "no", + "iata_code": "KSG", + "keywords": "Kisengang" + }, + { + "id": "3879", + "ident": "KSGF", + "type": "medium_airport", + "name": "Springfield Branson National Airport", + "latitude_deg": "37.245701", + "longitude_deg": "-93.388603", + "elevation_ft": "1268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Springfield", + "scheduled_service": "yes", + "gps_code": "KSGF", + "iata_code": "SGF", + "local_code": "SGF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Springfield/Branson_National_Airport" + }, + { + "id": "3880", + "ident": "KSGH", + "type": "medium_airport", + "name": "Springfield-Beckley Municipal Airport", + "latitude_deg": "39.840301513672", + "longitude_deg": "-83.840202331543", + "elevation_ft": "1051", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "KSGH", + "iata_code": "SGH", + "local_code": "SGH", + "home_link": "http://www.airparkohio.com/beckly_airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Springfield-Beckley_Municipal_Airport" + }, + { + "id": "21061", + "ident": "KSGJ", + "type": "medium_airport", + "name": "Northeast Florida Regional Airport", + "latitude_deg": "29.9592", + "longitude_deg": "-81.339798", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St Augustine", + "scheduled_service": "yes", + "gps_code": "KSGJ", + "iata_code": "UST", + "local_code": "SGJ", + "home_link": "http://www.flynf.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Augustine_Airport", + "keywords": "St Augustine Airport, NAAS St. Augustine" + }, + { + "id": "21062", + "ident": "KSGR", + "type": "medium_airport", + "name": "Sugar Land Regional Airport", + "latitude_deg": "29.622299194336", + "longitude_deg": "-95.65650177002", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "KSGR", + "iata_code": "SGR", + "local_code": "SGR", + "home_link": "http://www.sugarlandtx.gov/index.aspx?nid=1073", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sugar_Land_Regional_Airport", + "keywords": "Hull Field" + }, + { + "id": "21063", + "ident": "KSGS", + "type": "small_airport", + "name": "South St Paul Municipal Richard E Fleming field", + "latitude_deg": "44.85710144", + "longitude_deg": "-93.03289795", + "elevation_ft": "821", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "South St Paul", + "scheduled_service": "no", + "gps_code": "KSGS", + "local_code": "SGS", + "wikipedia_link": "https://en.wikipedia.org/wiki/South_St._Paul_Municipal_Airport" + }, + { + "id": "21064", + "ident": "KSGT", + "type": "small_airport", + "name": "Stuttgart Municipal Airport / Carl Humphrey Field", + "latitude_deg": "34.599499", + "longitude_deg": "-91.574997", + "elevation_ft": "224", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Stuttgart", + "scheduled_service": "no", + "gps_code": "KSGT", + "iata_code": "SGT", + "local_code": "SGT", + "home_link": "http://www.stuttgartarkansas.org/work/stuttgart_municipal_airport.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stuttgart_Municipal_Airport", + "keywords": "Stuttgart AAF" + }, + { + "id": "21065", + "ident": "KSGU", + "type": "medium_airport", + "name": "St George Regional Airport", + "latitude_deg": "37.036389", + "longitude_deg": "-113.510306", + "elevation_ft": "2941", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "St George", + "scheduled_service": "yes", + "gps_code": "KSGU", + "iata_code": "SGU", + "local_code": "SGU", + "home_link": "https://www.flysgu.org", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._George_Regional_Airport", + "keywords": "DXZ" + }, + { + "id": "21066", + "ident": "KSHD", + "type": "medium_airport", + "name": "Shenandoah Valley Regional Airport", + "latitude_deg": "38.263802", + "longitude_deg": "-78.8964", + "elevation_ft": "1201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Weyers Cave", + "scheduled_service": "yes", + "gps_code": "KSHD", + "iata_code": "SHD", + "local_code": "SHD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shenandoah_Valley_Regional_Airport", + "keywords": "Harrisonburg, Staunton, Waynesboro" + }, + { + "id": "21067", + "ident": "KSHL", + "type": "small_airport", + "name": "Sheldon Regional Airport", + "latitude_deg": "43.208401", + "longitude_deg": "-95.833396", + "elevation_ft": "1419", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Sheldon", + "scheduled_service": "no", + "gps_code": "KSHL", + "local_code": "SHL", + "keywords": "Sheldon Municipal" + }, + { + "id": "21068", + "ident": "KSHN", + "type": "small_airport", + "name": "Sanderson Field", + "latitude_deg": "47.233600616455", + "longitude_deg": "-123.14800262451", + "elevation_ft": "273", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Shelton", + "scheduled_service": "no", + "gps_code": "KSHN", + "iata_code": "SHN", + "local_code": "SHN", + "home_link": "http://www.portofshelton.com/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sanderson_Field" + }, + { + "id": "3881", + "ident": "KSHR", + "type": "medium_airport", + "name": "Sheridan County Airport", + "latitude_deg": "44.76919937133789", + "longitude_deg": "-106.9800033569336", + "elevation_ft": "4021", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Sheridan", + "scheduled_service": "yes", + "gps_code": "KSHR", + "iata_code": "SHR", + "local_code": "SHR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sheridan_County_Airport" + }, + { + "id": "3882", + "ident": "KSHV", + "type": "medium_airport", + "name": "Shreveport Regional Airport", + "latitude_deg": "32.446602", + "longitude_deg": "-93.8256", + "elevation_ft": "258", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Shreveport", + "scheduled_service": "yes", + "gps_code": "KSHV", + "iata_code": "SHV", + "local_code": "SHV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shreveport_Regional_Airport" + }, + { + "id": "21069", + "ident": "KSIF", + "type": "small_airport", + "name": "Rockingham County NC Shiloh Airport", + "latitude_deg": "36.437199", + "longitude_deg": "-79.850998", + "elevation_ft": "694", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Stoneville", + "scheduled_service": "no", + "gps_code": "KSIF", + "local_code": "SIF", + "home_link": "http://shilohairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rockingham_County_NC_Shiloh_Airport", + "keywords": "78N" + }, + { + "id": "21070", + "ident": "KSIK", + "type": "small_airport", + "name": "Sikeston Memorial Municipal Airport", + "latitude_deg": "36.898899078369", + "longitude_deg": "-89.561798095703", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Sikeston", + "scheduled_service": "no", + "gps_code": "KSIK", + "iata_code": "SIK", + "local_code": "SIK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sikeston_Memorial_Municipal_Airport" + }, + { + "id": "21071", + "ident": "KSIV", + "type": "small_airport", + "name": "Sullivan County Airport", + "latitude_deg": "39.1147", + "longitude_deg": "-87.448303", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Sullivan", + "scheduled_service": "no", + "gps_code": "KSIV", + "iata_code": "SIV", + "local_code": "SIV", + "home_link": "http://www.co.sullivan.ny.us/Departments/SullivanCountyAirport/tabid/3203/default.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sullivan_County_International_Airport" + }, + { + "id": "21072", + "ident": "KSIY", + "type": "small_airport", + "name": "Siskiyou County Airport", + "latitude_deg": "41.78139877319336", + "longitude_deg": "-122.46800231933594", + "elevation_ft": "2648", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Montague", + "scheduled_service": "no", + "gps_code": "KSIY", + "local_code": "SIY" + }, + { + "id": "3883", + "ident": "KSJC", + "type": "large_airport", + "name": "Norman Y. Mineta San Jose International Airport", + "latitude_deg": "37.362452", + "longitude_deg": "-121.929188", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Jose", + "scheduled_service": "yes", + "gps_code": "KSJC", + "iata_code": "SJC", + "local_code": "SJC", + "home_link": "https://www.flysanjose.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Jose_International_Airport" + }, + { + "id": "21073", + "ident": "KSJN", + "type": "small_airport", + "name": "St Johns Industrial Air Park", + "latitude_deg": "34.51860046", + "longitude_deg": "-109.3789978", + "elevation_ft": "5737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "St Johns", + "scheduled_service": "no", + "gps_code": "KSJN", + "iata_code": "SJN", + "local_code": "SJN", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Johns_Industrial_Air_Park" + }, + { + "id": "3884", + "ident": "KSJT", + "type": "medium_airport", + "name": "San Angelo Regional Mathis Field", + "latitude_deg": "31.35770034790039", + "longitude_deg": "-100.49600219726562", + "elevation_ft": "1919", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Angelo", + "scheduled_service": "yes", + "gps_code": "KSJT", + "iata_code": "SJT", + "local_code": "SJT", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Angelo_Regional_Airport" + }, + { + "id": "21074", + "ident": "KSJX", + "type": "small_airport", + "name": "Beaver Island Airport", + "latitude_deg": "45.692298889160156", + "longitude_deg": "-85.56659698486328", + "elevation_ft": "669", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Beaver Island", + "scheduled_service": "no", + "gps_code": "KSJX", + "local_code": "SJX" + }, + { + "id": "3885", + "ident": "KSKA", + "type": "medium_airport", + "name": "Fairchild Air Force Base", + "latitude_deg": "47.615101", + "longitude_deg": "-117.655998", + "elevation_ft": "2461", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Spokane", + "scheduled_service": "no", + "gps_code": "KSKA", + "iata_code": "SKA", + "local_code": "SKA", + "home_link": "http://www.fairchild.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fairchild_Air_Force_Base" + }, + { + "id": "3886", + "ident": "KSKF", + "type": "medium_airport", + "name": "Lackland Air Force Base", + "latitude_deg": "29.38419914", + "longitude_deg": "-98.58110046", + "elevation_ft": "691", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "KSKF", + "iata_code": "SKF", + "local_code": "SKF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lackland_Air_Force_Base", + "keywords": "Kelly Field Annex, Lackland AFB" + }, + { + "id": "21075", + "ident": "KSKI", + "type": "small_airport", + "name": "Sac City Municipal Airport", + "latitude_deg": "42.37910079956055", + "longitude_deg": "-94.97969818115234", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Sac City", + "scheduled_service": "no", + "gps_code": "KSKI", + "local_code": "SKI" + }, + { + "id": "21076", + "ident": "KSKX", + "type": "small_airport", + "name": "Taos Regional Airport", + "latitude_deg": "36.45819855", + "longitude_deg": "-105.6719971", + "elevation_ft": "7095", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Taos", + "scheduled_service": "no", + "gps_code": "KSKX", + "iata_code": "TSM", + "local_code": "SKX", + "home_link": "http://www.taosairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taos_Regional_Airport" + }, + { + "id": "21077", + "ident": "KSKY", + "type": "closed", + "name": "Griffing Sandusky Airport", + "latitude_deg": "41.4333992004", + "longitude_deg": "-82.6522979736", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Sandusky", + "scheduled_service": "no", + "gps_code": "KSKY", + "iata_code": "SKY", + "local_code": "SKY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Griffing_Sandusky_Airport" + }, + { + "id": "21078", + "ident": "KSLB", + "type": "small_airport", + "name": "Storm Lake Municipal Airport", + "latitude_deg": "42.5973014832", + "longitude_deg": "-95.24069976810001", + "elevation_ft": "1488", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Storm Lake", + "scheduled_service": "no", + "gps_code": "KSLB", + "iata_code": "SLB", + "local_code": "SLB", + "home_link": "http://www.stormlake.org/index.aspx?NID=16", + "wikipedia_link": "https://en.wikipedia.org/wiki/Storm_Lake_Municipal_Airport" + }, + { + "id": "3887", + "ident": "KSLC", + "type": "large_airport", + "name": "Salt Lake City International Airport", + "latitude_deg": "40.785749", + "longitude_deg": "-111.979746", + "elevation_ft": "4227", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Salt Lake City", + "scheduled_service": "yes", + "gps_code": "KSLC", + "iata_code": "SLC", + "local_code": "SLC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salt_Lake_City_International_Airport" + }, + { + "id": "3888", + "ident": "KSLE", + "type": "medium_airport", + "name": "Salem Municipal Airport/McNary Field", + "latitude_deg": "44.90950012", + "longitude_deg": "-123.0029984", + "elevation_ft": "214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "KSLE", + "iata_code": "SLE", + "local_code": "SLE", + "home_link": "http://www.flysalem.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/McNary_Field", + "keywords": "4OR1" + }, + { + "id": "21079", + "ident": "KSLG", + "type": "small_airport", + "name": "Smith Field", + "latitude_deg": "36.19189835", + "longitude_deg": "-94.48999786", + "elevation_ft": "1191", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Siloam Springs", + "scheduled_service": "no", + "gps_code": "KSLG", + "iata_code": "SLG", + "local_code": "SLG", + "home_link": "http://www.siloamsprings.com/departments/airport/" + }, + { + "id": "21080", + "ident": "KSLH", + "type": "small_airport", + "name": "Cheboygan County Airport", + "latitude_deg": "45.65370178", + "longitude_deg": "-84.51930237", + "elevation_ft": "639", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Cheboygan", + "scheduled_service": "no", + "gps_code": "KSLH", + "local_code": "SLH" + }, + { + "id": "3889", + "ident": "KSLI", + "type": "medium_airport", + "name": "Los Alamitos Army Air Field", + "latitude_deg": "33.79000092", + "longitude_deg": "-118.052002", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Alamitos", + "scheduled_service": "no", + "gps_code": "KSLI", + "local_code": "SLI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Los_Alamitos_Army_Airfield" + }, + { + "id": "21081", + "ident": "KSLJ", + "type": "heliport", + "name": "Hagler Army Heliport", + "latitude_deg": "31.1738", + "longitude_deg": "-89.1912", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Hattiesburg", + "scheduled_service": "no", + "gps_code": "KSLJ", + "local_code": "SLJ", + "keywords": "Hagler Army Air Field" + }, + { + "id": "3890", + "ident": "KSLK", + "type": "medium_airport", + "name": "Adirondack Regional Airport", + "latitude_deg": "44.38691", + "longitude_deg": "-74.204629", + "elevation_ft": "1663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Saranac Lake", + "scheduled_service": "yes", + "gps_code": "KSLK", + "iata_code": "SLK", + "local_code": "SLK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Adirondack_Regional_Airport" + }, + { + "id": "3891", + "ident": "KSLN", + "type": "medium_airport", + "name": "Salina Municipal Airport", + "latitude_deg": "38.79100036621094", + "longitude_deg": "-97.6521987915039", + "elevation_ft": "1288", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Salina", + "scheduled_service": "yes", + "gps_code": "KSLN", + "iata_code": "SLN", + "local_code": "SLN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salina_Municipal_Airport" + }, + { + "id": "21082", + "ident": "KSLO", + "type": "small_airport", + "name": "Salem–Leckrone Airport", + "latitude_deg": "38.642899", + "longitude_deg": "-88.964203", + "elevation_ft": "573", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "KSLO", + "iata_code": "SLO", + "local_code": "SLO", + "home_link": "http://www.salem-leckronefield.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salem%E2%80%93Leckrone_Airport" + }, + { + "id": "21083", + "ident": "KSLR", + "type": "small_airport", + "name": "Sulphur Springs Municipal Airport", + "latitude_deg": "33.159801483154", + "longitude_deg": "-95.621101379395", + "elevation_ft": "489", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sulphur Springs", + "scheduled_service": "no", + "gps_code": "KSLR", + "iata_code": "SLR", + "local_code": "SLR", + "home_link": "http://www.slr.aero/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sulphur_Springs_Municipal_Airport" + }, + { + "id": "21084", + "ident": "KSMD", + "type": "small_airport", + "name": "Smith Field", + "latitude_deg": "41.14339828", + "longitude_deg": "-85.15280151", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Fort Wayne", + "scheduled_service": "no", + "gps_code": "KSMD", + "iata_code": "SMD", + "local_code": "SMD", + "home_link": "https://fwairport.com/smith-field/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Smith_Field_(Indiana)" + }, + { + "id": "21085", + "ident": "KSME", + "type": "medium_airport", + "name": "Lake Cumberland Regional Airport", + "latitude_deg": "37.053398132299996", + "longitude_deg": "-84.6158981323", + "elevation_ft": "927", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Somerset", + "scheduled_service": "no", + "gps_code": "KSME", + "iata_code": "SME", + "local_code": "SME", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_Cumberland_Regional_Airport" + }, + { + "id": "3892", + "ident": "KSMF", + "type": "large_airport", + "name": "Sacramento International Airport", + "latitude_deg": "38.69540023803711", + "longitude_deg": "-121.59100341796875", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sacramento", + "scheduled_service": "yes", + "gps_code": "KSMF", + "iata_code": "SMF", + "local_code": "SMF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sacramento_International_Airport" + }, + { + "id": "21086", + "ident": "KSMN", + "type": "medium_airport", + "name": "Lemhi County Airport", + "latitude_deg": "45.1237983704", + "longitude_deg": "-113.880996704", + "elevation_ft": "4043", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Salmon", + "scheduled_service": "no", + "gps_code": "KSMN", + "iata_code": "SMN", + "local_code": "SMN", + "home_link": "http://lemhicountyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lemhi_County_Airport" + }, + { + "id": "21087", + "ident": "KSMO", + "type": "medium_airport", + "name": "Santa Monica Municipal Airport", + "latitude_deg": "34.0158", + "longitude_deg": "-118.450996", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Monica", + "scheduled_service": "no", + "gps_code": "KSMO", + "iata_code": "SMO", + "local_code": "SMO", + "home_link": "http://www.smgov.net/departments/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Monica_Airport", + "keywords": "Clover Field" + }, + { + "id": "21088", + "ident": "KSMQ", + "type": "small_airport", + "name": "Somerset Airport", + "latitude_deg": "40.625999450683594", + "longitude_deg": "-74.67019653320312", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Somerville", + "scheduled_service": "no", + "gps_code": "KSMQ", + "local_code": "SMQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Somerset_Airport_(New_Jersey)" + }, + { + "id": "21089", + "ident": "KSMS", + "type": "small_airport", + "name": "Sumter Airport", + "latitude_deg": "33.994998931885", + "longitude_deg": "-80.361297607422", + "elevation_ft": "182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Sumter", + "scheduled_service": "no", + "gps_code": "KSMS", + "iata_code": "SUM", + "local_code": "SMS", + "home_link": "http://www.sumtersc.gov/airport.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sumter_Airport" + }, + { + "id": "3893", + "ident": "KSMX", + "type": "medium_airport", + "name": "Santa Maria Public Airport Captain G Allan Hancock Field", + "latitude_deg": "34.898899", + "longitude_deg": "-120.457001", + "elevation_ft": "261", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Maria", + "scheduled_service": "yes", + "gps_code": "KSMX", + "iata_code": "SMX", + "local_code": "SMX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Maria_Public_Airport" + }, + { + "id": "3894", + "ident": "KSNA", + "type": "large_airport", + "name": "John Wayne Airport-Orange County Airport", + "latitude_deg": "33.675701", + "longitude_deg": "-117.867996", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Ana", + "scheduled_service": "yes", + "gps_code": "KSNA", + "iata_code": "SNA", + "local_code": "SNA", + "home_link": "http://www.ocair.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/John_Wayne_Airport", + "keywords": "Disney, Disneyland, Orange County" + }, + { + "id": "21090", + "ident": "KSNC", + "type": "small_airport", + "name": "Chester Airport", + "latitude_deg": "41.384177", + "longitude_deg": "-72.506011", + "elevation_ft": "416", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Chester", + "scheduled_service": "no", + "gps_code": "KSNC", + "local_code": "SNC", + "keywords": "3B9" + }, + { + "id": "21091", + "ident": "KSNH", + "type": "small_airport", + "name": "Savannah Hardin County Airport", + "latitude_deg": "35.1703987121582", + "longitude_deg": "-88.21589660644531", + "elevation_ft": "473", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Savannah", + "scheduled_service": "no", + "gps_code": "KSNH", + "local_code": "SNH" + }, + { + "id": "21092", + "ident": "KSNK", + "type": "small_airport", + "name": "Winston Field", + "latitude_deg": "32.690212", + "longitude_deg": "-100.948918", + "elevation_ft": "2430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Snyder", + "scheduled_service": "no", + "gps_code": "KSNK", + "iata_code": "SNK", + "local_code": "SNK" + }, + { + "id": "21093", + "ident": "KSNL", + "type": "small_airport", + "name": "Shawnee Regional Airport", + "latitude_deg": "35.357898712158", + "longitude_deg": "-96.942802429199", + "elevation_ft": "1073", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Shawnee", + "scheduled_service": "no", + "gps_code": "KSNL", + "iata_code": "SNL", + "local_code": "SNL", + "home_link": "http://www.shawneeairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shawnee_Regional_Airport" + }, + { + "id": "3895", + "ident": "KSNS", + "type": "medium_airport", + "name": "Salinas Municipal Airport", + "latitude_deg": "36.662799835205", + "longitude_deg": "-121.60600280762", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Salinas", + "scheduled_service": "no", + "gps_code": "KSNS", + "iata_code": "SNS", + "local_code": "SNS", + "home_link": "http://www.ci.salinas.ca.us/services/airport/airport.cfm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salinas_Municipal_Airport" + }, + { + "id": "21094", + "ident": "KSNY", + "type": "medium_airport", + "name": "Sidney Municipal-Lloyd W Carr Field", + "latitude_deg": "41.10129929", + "longitude_deg": "-102.9850006", + "elevation_ft": "4313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Sidney", + "scheduled_service": "no", + "gps_code": "KSNY", + "iata_code": "SNY", + "local_code": "SNY", + "home_link": "http://www.cityofsidney.org/283/Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sidney_Municipal_Airport_(Nebraska)" + }, + { + "id": "21095", + "ident": "KSOA", + "type": "medium_airport", + "name": "Sonora Municipal Airport", + "latitude_deg": "30.585699081421", + "longitude_deg": "-100.6490020752", + "elevation_ft": "2140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no", + "gps_code": "KSOA", + "local_code": "SOA", + "keywords": "E29" + }, + { + "id": "21096", + "ident": "KSOP", + "type": "small_airport", + "name": "Moore County Airport", + "latitude_deg": "35.237184", + "longitude_deg": "-79.389381", + "elevation_ft": "455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Carthage", + "scheduled_service": "no", + "gps_code": "KSOP", + "iata_code": "SOP", + "local_code": "SOP", + "home_link": "http://moorecountyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moore_County_Airport_(North_Carolina)" + }, + { + "id": "21097", + "ident": "KSOW", + "type": "small_airport", + "name": "Show Low Regional Airport", + "latitude_deg": "34.265049", + "longitude_deg": "-110.007084", + "elevation_ft": "6415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Show Low", + "scheduled_service": "no", + "gps_code": "KSOW", + "iata_code": "SOW", + "local_code": "SOW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Show_Low_Regional_Airport" + }, + { + "id": "21098", + "ident": "KSOY", + "type": "closed", + "name": "Sioux Center Municipal Airport", + "latitude_deg": "43.134399", + "longitude_deg": "-96.1875", + "elevation_ft": "1448", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Sioux Center", + "scheduled_service": "no", + "keywords": "KSOY, SOY" + }, + { + "id": "308318", + "ident": "KSP", + "type": "small_airport", + "name": "Kosipe Airport", + "latitude_deg": "-8.450716", + "longitude_deg": "147.209195", + "elevation_ft": "6350", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Kosipe Mission", + "scheduled_service": "no", + "gps_code": "AYOP", + "iata_code": "KSP", + "keywords": "Kosipi" + }, + { + "id": "3896", + "ident": "KSPA", + "type": "small_airport", + "name": "Spartanburg Downtown Memorial Airport", + "latitude_deg": "34.915699005127", + "longitude_deg": "-81.956497192383", + "elevation_ft": "801", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Spartanburg", + "scheduled_service": "no", + "gps_code": "KSPA", + "iata_code": "SPA", + "local_code": "SPA", + "home_link": "http://www.cityofspartanburg.org/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Spartanburg_Downtown_Memorial_Airport" + }, + { + "id": "21099", + "ident": "KSPB", + "type": "small_airport", + "name": "Scappoose Industrial Airpark", + "latitude_deg": "45.770999908447266", + "longitude_deg": "-122.86199951171875", + "elevation_ft": "58", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Scappoose", + "scheduled_service": "no", + "gps_code": "KSPB", + "local_code": "SPB" + }, + { + "id": "21100", + "ident": "KSPF", + "type": "small_airport", + "name": "Black Hills Airport-Clyde Ice Field", + "latitude_deg": "44.48030090332", + "longitude_deg": "-103.78299713135", + "elevation_ft": "3931", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Spearfish", + "scheduled_service": "no", + "gps_code": "KSPF", + "iata_code": "SPF", + "local_code": "SPF", + "home_link": "http://www.lawrence.sd.us/airport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Black_Hills_Airport" + }, + { + "id": "21101", + "ident": "KSPG", + "type": "small_airport", + "name": "Albert Whitted Airport", + "latitude_deg": "27.7651", + "longitude_deg": "-82.626999", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St Petersburg", + "scheduled_service": "no", + "gps_code": "KSPG", + "iata_code": "SPG", + "local_code": "SPG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Albert_Whitted_Airport" + }, + { + "id": "21102", + "ident": "KSPH", + "type": "small_airport", + "name": "Springhill Airport", + "latitude_deg": "32.9833984375", + "longitude_deg": "-93.4092025756836", + "elevation_ft": "218", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Springhill", + "scheduled_service": "no", + "gps_code": "KSPH", + "local_code": "SPH" + }, + { + "id": "3897", + "ident": "KSPI", + "type": "medium_airport", + "name": "Abraham Lincoln Capital Airport", + "latitude_deg": "39.844101", + "longitude_deg": "-89.677902", + "elevation_ft": "598", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Springfield", + "scheduled_service": "yes", + "gps_code": "KSPI", + "iata_code": "SPI", + "local_code": "SPI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abraham_Lincoln_Capital_Airport" + }, + { + "id": "3898", + "ident": "KSPS", + "type": "medium_airport", + "name": "Sheppard Air Force Base / Wichita Falls Municipal Airport", + "latitude_deg": "33.9888", + "longitude_deg": "-98.491898", + "elevation_ft": "1019", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wichita Falls", + "scheduled_service": "yes", + "gps_code": "KSPS", + "iata_code": "SPS", + "local_code": "SPS", + "home_link": "http://www.flywichitafalls.net/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wichita_Falls_Municipal_Airport", + "keywords": "Sheppard Air Force Base" + }, + { + "id": "21103", + "ident": "KSPW", + "type": "small_airport", + "name": "Spencer Municipal Airport", + "latitude_deg": "43.165500640869", + "longitude_deg": "-95.202796936035", + "elevation_ft": "1339", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Spencer", + "scheduled_service": "no", + "gps_code": "KSPW", + "iata_code": "SPW", + "local_code": "SPW", + "home_link": "http://spenceriowacity.com/airport.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Spencer_Municipal_Airport" + }, + { + "id": "29962", + "ident": "KSPX", + "type": "closed", + "name": "Houston Gulf Airport", + "latitude_deg": "29.508301", + "longitude_deg": "-95.051399", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "KSPX", + "local_code": "SPX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Houston_Gulf_Airport", + "keywords": "Spaceland Airport" + }, + { + "id": "19345", + "ident": "KSPZ", + "type": "small_airport", + "name": "Silver Springs Airport", + "latitude_deg": "39.40299987792969", + "longitude_deg": "-119.2509994506836", + "elevation_ft": "4269", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Silver Springs", + "scheduled_service": "no", + "gps_code": "KSPZ", + "local_code": "SPZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Silver_Springs_Airport", + "keywords": "Formerly B08" + }, + { + "id": "21104", + "ident": "KSQI", + "type": "small_airport", + "name": "Whiteside County Airport - Joseph H Bittorf Field", + "latitude_deg": "41.742802", + "longitude_deg": "-89.6763", + "elevation_ft": "648", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rock Falls", + "scheduled_service": "no", + "gps_code": "KSQI", + "iata_code": "SQI", + "local_code": "SQI", + "home_link": "http://www.visitrockfalls.com/visitor-s-guide/airport/whiteside-county-airport.html", + "keywords": "Sauk Valley Aviation" + }, + { + "id": "21105", + "ident": "KSQL", + "type": "small_airport", + "name": "San Carlos Airport", + "latitude_deg": "37.511901855469", + "longitude_deg": "-122.25", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Carlos", + "scheduled_service": "no", + "gps_code": "KSQL", + "iata_code": "SQL", + "local_code": "SQL", + "home_link": "http://publicworks.smcgov.org/san-carlos-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Carlos_Airport_(California)", + "keywords": "San Carlos-Belmont Airport, San Mateo Country Airport" + }, + { + "id": "21106", + "ident": "KSRB", + "type": "small_airport", + "name": "Upper Cumberland Regional Airport", + "latitude_deg": "36.05590057373047", + "longitude_deg": "-85.53070068359375", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Sparta", + "scheduled_service": "no", + "gps_code": "KSRB", + "local_code": "SRB" + }, + { + "id": "21107", + "ident": "KSRC", + "type": "small_airport", + "name": "Searcy Municipal Airport", + "latitude_deg": "35.21060181", + "longitude_deg": "-91.73750305", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Searcy", + "scheduled_service": "no", + "gps_code": "KSRC", + "local_code": "SRC" + }, + { + "id": "21108", + "ident": "KSRE", + "type": "small_airport", + "name": "Seminole Municipal Airport", + "latitude_deg": "35.27470016479492", + "longitude_deg": "-96.67520141601562", + "elevation_ft": "1024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Seminole", + "scheduled_service": "no", + "gps_code": "KSRE", + "local_code": "SRE" + }, + { + "id": "3899", + "ident": "KSRQ", + "type": "medium_airport", + "name": "Sarasota Bradenton International Airport", + "latitude_deg": "27.395399", + "longitude_deg": "-82.554398", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sarasota/Bradenton", + "scheduled_service": "yes", + "gps_code": "KSRQ", + "iata_code": "SRQ", + "local_code": "SRQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sarasota-Bradenton_International_Airport" + }, + { + "id": "3900", + "ident": "KSRR", + "type": "medium_airport", + "name": "Sierra Blanca Regional Airport", + "latitude_deg": "33.462799", + "longitude_deg": "-105.535004", + "elevation_ft": "6814", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Alto", + "scheduled_service": "no", + "gps_code": "KSRR", + "iata_code": "RUI", + "local_code": "SRR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sierra_Blanca_Regional_Airport", + "keywords": "Ruidoso" + }, + { + "id": "3901", + "ident": "KSSC", + "type": "medium_airport", + "name": "Shaw Air Force Base", + "latitude_deg": "33.972698", + "longitude_deg": "-80.470596", + "elevation_ft": "241", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Sumter", + "scheduled_service": "no", + "gps_code": "KSSC", + "iata_code": "SSC", + "local_code": "SSC", + "home_link": "http://www.shaw.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shaw_Air_Force_Base" + }, + { + "id": "21109", + "ident": "KSSF", + "type": "medium_airport", + "name": "Stinson Municipal Airport", + "latitude_deg": "29.336999893188", + "longitude_deg": "-98.471099853516", + "elevation_ft": "577", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "KSSF", + "iata_code": "SSF", + "local_code": "SSF", + "home_link": "http://www.sanantonio.gov/SSF.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stinson_Municipal_Airport" + }, + { + "id": "3902", + "ident": "KSSI", + "type": "medium_airport", + "name": "St Simons Island Airport", + "latitude_deg": "31.1518", + "longitude_deg": "-81.391296", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "St Simons Island", + "scheduled_service": "no", + "gps_code": "KSSI", + "iata_code": "SSI", + "local_code": "SSI", + "home_link": "http://www.goldenisles.com/listing/mckinnon-st-simons-island-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Malcolm_McKinnon_Airport", + "keywords": "Malcolm McKinnon, NAS St. Simons Island, Brunswick" + }, + { + "id": "324077", + "ident": "KSSN", + "type": "closed", + "name": "Seneca Army Field", + "latitude_deg": "42.715209", + "longitude_deg": "-76.882098", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Romulus", + "scheduled_service": "no", + "gps_code": "KSSN" + }, + { + "id": "21110", + "ident": "KSSQ", + "type": "small_airport", + "name": "Shell Lake Municipal Airport", + "latitude_deg": "45.73139954", + "longitude_deg": "-91.92070007", + "elevation_ft": "1233", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Shell Lake", + "scheduled_service": "no", + "gps_code": "KSSQ", + "local_code": "SSQ" + }, + { + "id": "3903", + "ident": "KSTC", + "type": "medium_airport", + "name": "Saint Cloud Regional Airport", + "latitude_deg": "45.5466", + "longitude_deg": "-94.059898", + "elevation_ft": "1031", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Saint Cloud", + "scheduled_service": "yes", + "gps_code": "KSTC", + "iata_code": "STC", + "local_code": "STC", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Cloud_Regional_Airport" + }, + { + "id": "21111", + "ident": "KSTE", + "type": "small_airport", + "name": "Stevens Point Municipal Airport", + "latitude_deg": "44.5452003479", + "longitude_deg": "-89.530296325684", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Stevens Point", + "scheduled_service": "no", + "gps_code": "KSTE", + "iata_code": "STE", + "local_code": "STE", + "home_link": "http://www.stevenspoint.com/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stevens_Point_Municipal_Airport" + }, + { + "id": "21112", + "ident": "KSTF", + "type": "small_airport", + "name": "George M Bryan Airport", + "latitude_deg": "33.43310165", + "longitude_deg": "-88.84860229", + "elevation_ft": "333", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Starkville", + "scheduled_service": "no", + "gps_code": "KSTF", + "local_code": "STF", + "home_link": "http://www.oktibbehacountyms.org/?q=node/163", + "wikipedia_link": "https://en.wikipedia.org/wiki/George_M._Bryan_Airport" + }, + { + "id": "3904", + "ident": "KSTJ", + "type": "medium_airport", + "name": "Rosecrans Memorial Airport", + "latitude_deg": "39.771900177002", + "longitude_deg": "-94.909698486328", + "elevation_ft": "826", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Joseph", + "scheduled_service": "no", + "gps_code": "KSTJ", + "iata_code": "STJ", + "local_code": "STJ", + "home_link": "http://www.stjoemo.info/index.aspx?NID=303", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rosecrans_Memorial_Airport" + }, + { + "id": "21113", + "ident": "KSTK", + "type": "small_airport", + "name": "Sterling Municipal Airport", + "latitude_deg": "40.613497", + "longitude_deg": "-103.263833", + "elevation_ft": "4040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Sterling", + "scheduled_service": "no", + "gps_code": "KSTK", + "iata_code": "STK", + "local_code": "STK", + "home_link": "https://www.codot.gov/programs/aeronautics/colorado-airport-system/general-aviation-airports/ga-airports-r-y/STK", + "keywords": "Crosson Field" + }, + { + "id": "3905", + "ident": "KSTL", + "type": "large_airport", + "name": "St Louis Lambert International Airport", + "latitude_deg": "38.748697", + "longitude_deg": "-90.370003", + "elevation_ft": "618", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "yes", + "gps_code": "KSTL", + "iata_code": "STL", + "local_code": "STL", + "home_link": "https://www.flystl.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Louis_Lambert_International_Airport", + "keywords": "Lambert St Louis" + }, + { + "id": "3906", + "ident": "KSTP", + "type": "medium_airport", + "name": "St Paul Downtown Holman Field", + "latitude_deg": "44.93450164794922", + "longitude_deg": "-93.05999755859375", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "St Paul", + "scheduled_service": "no", + "gps_code": "KSTP", + "iata_code": "STP", + "local_code": "STP", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Paul_Downtown_Airport" + }, + { + "id": "21114", + "ident": "KSTS", + "type": "medium_airport", + "name": "Charles M. Schulz Sonoma County Airport", + "latitude_deg": "38.50899887", + "longitude_deg": "-122.8130035", + "elevation_ft": "128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Rosa", + "scheduled_service": "yes", + "gps_code": "KSTS", + "iata_code": "STS", + "local_code": "STS", + "home_link": "http://www.sonomacountyairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Charles_M._Schulz_-_Sonoma_County_Airport" + }, + { + "id": "21115", + "ident": "KSUA", + "type": "small_airport", + "name": "Witham Field", + "latitude_deg": "27.18169975", + "longitude_deg": "-80.22109985", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Stuart", + "scheduled_service": "no", + "gps_code": "KSUA", + "iata_code": "SUA", + "local_code": "SUA", + "home_link": "http://ap3server.martin.fl.us/portal/page?_pageid=413,234422&_dad=portal&_schema=PORTAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Witham_Field", + "keywords": "NAAS Witham Field" + }, + { + "id": "21116", + "ident": "KSUD", + "type": "small_airport", + "name": "Stroud Municipal Airport", + "latitude_deg": "35.789600372314", + "longitude_deg": "-96.655700683594", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Stroud", + "scheduled_service": "no", + "gps_code": "KSUD", + "iata_code": "SUD", + "local_code": "SUD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stroud_Municipal_Airport" + }, + { + "id": "21117", + "ident": "KSUE", + "type": "small_airport", + "name": "Door County Cherryland Airport", + "latitude_deg": "44.84370041", + "longitude_deg": "-87.42150116", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Sturgeon Bay", + "scheduled_service": "no", + "gps_code": "KSUE", + "iata_code": "SUE", + "local_code": "SUE", + "home_link": "http://map.co.door.wi.us/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Door_County_Cherryland_Airport" + }, + { + "id": "21118", + "ident": "KSUN", + "type": "medium_airport", + "name": "Friedman Memorial Airport", + "latitude_deg": "43.50439835", + "longitude_deg": "-114.2959976", + "elevation_ft": "5318", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Hailey", + "scheduled_service": "yes", + "gps_code": "KSUN", + "iata_code": "SUN", + "local_code": "SUN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Friedman_Memorial_Airport" + }, + { + "id": "309490", + "ident": "KSUO", + "type": "small_airport", + "name": "Rosebud Sioux Tribal Airport", + "latitude_deg": "43.2585", + "longitude_deg": "-100.85952", + "elevation_ft": "2724", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Rosebud", + "scheduled_service": "no", + "gps_code": "KSUO", + "local_code": "SUO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rosebud_Sioux_Tribal_Airport" + }, + { + "id": "3907", + "ident": "KSUS", + "type": "medium_airport", + "name": "Spirit of St Louis Airport", + "latitude_deg": "38.662102", + "longitude_deg": "-90.652", + "elevation_ft": "463", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no", + "gps_code": "KSUS", + "iata_code": "SUS", + "local_code": "SUS", + "home_link": "http://spiritairport.com/spiritairport/index.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Spirit_of_St._Louis_Airport" + }, + { + "id": "21119", + "ident": "KSUT", + "type": "small_airport", + "name": "Brunswick County Airport", + "latitude_deg": "33.9292984", + "longitude_deg": "-78.07499695", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Oak Island", + "scheduled_service": "no", + "gps_code": "KSUT", + "local_code": "SUT" + }, + { + "id": "3908", + "ident": "KSUU", + "type": "medium_airport", + "name": "Travis Air Force Base", + "latitude_deg": "38.262699", + "longitude_deg": "-121.927002", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "KSUU", + "iata_code": "SUU", + "local_code": "SUU", + "home_link": "http://www.travis.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Travis_Air_Force_Base" + }, + { + "id": "21120", + "ident": "KSUW", + "type": "small_airport", + "name": "Richard I Bong Memorial Airport", + "latitude_deg": "46.688612", + "longitude_deg": "-92.095041", + "elevation_ft": "674", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Superior", + "scheduled_service": "no", + "gps_code": "KSUW", + "iata_code": "SUW", + "local_code": "SUW", + "home_link": "http://www.ci.superior.wi.us/index.aspx?NID=231", + "wikipedia_link": "https://en.wikipedia.org/wiki/Richard_I._Bong_Airport" + }, + { + "id": "3909", + "ident": "KSUX", + "type": "medium_airport", + "name": "Sioux Gateway Airport / Brigadier General Bud Day Field", + "latitude_deg": "42.397605", + "longitude_deg": "-96.382237", + "elevation_ft": "1098", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Sioux City", + "scheduled_service": "yes", + "gps_code": "KSUX", + "iata_code": "SUX", + "local_code": "SUX", + "home_link": "https://www.sioux-city.org/government/departments-a-f/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sioux_Gateway_Airport", + "keywords": "Col. Bud Day, Sioux City AB, Sioux City AAB" + }, + { + "id": "29695", + "ident": "KSUZ", + "type": "medium_airport", + "name": "Saline County Regional Airport", + "latitude_deg": "34.590599", + "longitude_deg": "-92.479401", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Benton", + "scheduled_service": "no", + "gps_code": "KSUZ", + "local_code": "SUZ", + "home_link": "http://www.salinecounty.org/airport_new_site.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saline_County_Regional_Airport", + "keywords": "M99, Watts Field" + }, + { + "id": "21121", + "ident": "KSVC", + "type": "small_airport", + "name": "Grant County Airport", + "latitude_deg": "32.632293", + "longitude_deg": "-108.154263", + "elevation_ft": "5446", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Silver City", + "scheduled_service": "yes", + "gps_code": "KSVC", + "iata_code": "SVC", + "local_code": "SVC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grant_County_Airport_(New_Mexico)" + }, + { + "id": "21122", + "ident": "KSVE", + "type": "small_airport", + "name": "Susanville Municipal Airport", + "latitude_deg": "40.375702", + "longitude_deg": "-120.572998", + "elevation_ft": "4149", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Susanville", + "scheduled_service": "no", + "gps_code": "KSVE", + "iata_code": "SVE", + "local_code": "SVE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Susanville_Municipal_Airport" + }, + { + "id": "21123", + "ident": "KSVH", + "type": "small_airport", + "name": "Statesville Regional Airport", + "latitude_deg": "35.765300750732", + "longitude_deg": "-80.953903198242", + "elevation_ft": "968", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Statesville", + "scheduled_service": "no", + "gps_code": "KSVH", + "iata_code": "SVH", + "local_code": "SVH", + "home_link": "http://www.statesvillenc.net/Resident/Airport/tabid/82/Default.aspx" + }, + { + "id": "3910", + "ident": "KSVN", + "type": "medium_airport", + "name": "Hunter Army Air Field", + "latitude_deg": "32.00999832", + "longitude_deg": "-81.14569855", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Savannah", + "scheduled_service": "no", + "gps_code": "KSVN", + "iata_code": "SVN", + "local_code": "SVN", + "home_link": "http://www.stewart.army.mil/units/home.asp?id=186", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hunter_Army_Airfield" + }, + { + "id": "3911", + "ident": "KSWF", + "type": "medium_airport", + "name": "New York Stewart International Airport", + "latitude_deg": "41.504101", + "longitude_deg": "-74.104797", + "elevation_ft": "491", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Newburgh", + "scheduled_service": "yes", + "gps_code": "KSWF", + "iata_code": "SWF", + "local_code": "SWF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stewart_International_Airport" + }, + { + "id": "21124", + "ident": "KSWI", + "type": "small_airport", + "name": "Sherman Municipal Airport", + "latitude_deg": "33.62419891357422", + "longitude_deg": "-96.58609771728516", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sherman", + "scheduled_service": "no", + "gps_code": "KSWI", + "local_code": "SWI" + }, + { + "id": "3912", + "ident": "KSWO", + "type": "medium_airport", + "name": "Stillwater Regional Airport", + "latitude_deg": "36.161201477051", + "longitude_deg": "-97.08570098877", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Stillwater", + "scheduled_service": "no", + "gps_code": "KSWO", + "iata_code": "SWO", + "local_code": "SWO", + "home_link": "http://stillwater.org/government/city_facilities/stillwater_regional_airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stillwater_Regional_Airport" + }, + { + "id": "21125", + "ident": "KSWT", + "type": "small_airport", + "name": "Seward Municipal Airport", + "latitude_deg": "40.86470032", + "longitude_deg": "-97.10919952", + "elevation_ft": "1506", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Seward", + "scheduled_service": "no", + "gps_code": "KSWT", + "local_code": "SWT" + }, + { + "id": "21126", + "ident": "KSWW", + "type": "small_airport", + "name": "Avenger Field", + "latitude_deg": "32.467399597168", + "longitude_deg": "-100.46700286865", + "elevation_ft": "2380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sweetwater", + "scheduled_service": "no", + "gps_code": "KSWW", + "iata_code": "SWW", + "local_code": "SWW", + "home_link": "http://www.flyavenger.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Avenger_Field", + "keywords": "Sweetwater AFS" + }, + { + "id": "329842", + "ident": "KSXK", + "type": "small_airport", + "name": "Sioux County Regional Airport", + "latitude_deg": "42.9858275", + "longitude_deg": "-96.1614", + "elevation_ft": "1409", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Maurice", + "scheduled_service": "no", + "gps_code": "KSXK", + "local_code": "SXK", + "home_link": "https://www.siouxcenter.org/15/Airport" + }, + { + "id": "21127", + "ident": "KSXL", + "type": "small_airport", + "name": "Summersville Airport", + "latitude_deg": "38.231601715088", + "longitude_deg": "-80.870796203613", + "elevation_ft": "1820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Summersville", + "scheduled_service": "no", + "gps_code": "KSXL", + "local_code": "SXL", + "keywords": "I07" + }, + { + "id": "21128", + "ident": "KSYF", + "type": "small_airport", + "name": "Cheyenne County Municipal Airport", + "latitude_deg": "39.76110077", + "longitude_deg": "-101.7959976", + "elevation_ft": "3413", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "St Francis", + "scheduled_service": "no", + "gps_code": "KSYF", + "local_code": "SYF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cheyenne_County_Municipal_Airport" + }, + { + "id": "21129", + "ident": "KSYI", + "type": "small_airport", + "name": "Bomar Field Shelbyville Municipal Airport", + "latitude_deg": "35.56010056", + "longitude_deg": "-86.44249725", + "elevation_ft": "801", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Shelbyville", + "scheduled_service": "no", + "gps_code": "KSYI", + "iata_code": "SYI", + "local_code": "SYI", + "home_link": "http://www.shelbyvilletnairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shelbyville_Municipal_Airport_(Tennessee)" + }, + { + "id": "3913", + "ident": "KSYR", + "type": "large_airport", + "name": "Syracuse Hancock International Airport", + "latitude_deg": "43.11119842529297", + "longitude_deg": "-76.1063003540039", + "elevation_ft": "421", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Syracuse", + "scheduled_service": "yes", + "gps_code": "KSYR", + "iata_code": "SYR", + "local_code": "SYR", + "home_link": "http://www.syrairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Syracuse_Hancock_International_Airport" + }, + { + "id": "21130", + "ident": "KSYV", + "type": "small_airport", + "name": "Sylvester Airport", + "latitude_deg": "31.558500289917", + "longitude_deg": "-83.895698547363", + "elevation_ft": "403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Sylvester", + "scheduled_service": "no", + "gps_code": "KSYV", + "iata_code": "SYV", + "local_code": "SYV" + }, + { + "id": "3914", + "ident": "KSZL", + "type": "medium_airport", + "name": "Whiteman Air Force Base", + "latitude_deg": "38.730301", + "longitude_deg": "-93.547897", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Knob Noster", + "scheduled_service": "no", + "gps_code": "KSZL", + "iata_code": "SZL", + "local_code": "SZL", + "home_link": "http://www.whiteman.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Whiteman_Air_Force_Base", + "keywords": "Sedalia Glider Base" + }, + { + "id": "21131", + "ident": "KSZT", + "type": "small_airport", + "name": "Sandpoint Airport", + "latitude_deg": "48.299499511719", + "longitude_deg": "-116.55999755859", + "elevation_ft": "2131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Sandpoint", + "scheduled_service": "no", + "gps_code": "KSZT", + "local_code": "SZT", + "home_link": "http://sandpointairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sandpoint_Airport", + "keywords": "S86" + }, + { + "id": "21132", + "ident": "KSZY", + "type": "small_airport", + "name": "Robert Sibley Airport", + "latitude_deg": "35.20289993286133", + "longitude_deg": "-88.49839782714844", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Selmer", + "scheduled_service": "no", + "gps_code": "KSZY", + "local_code": "SZY" + }, + { + "id": "21133", + "ident": "KT00", + "type": "small_airport", + "name": "Chambers County Airport", + "latitude_deg": "29.770099639892578", + "longitude_deg": "-94.66239929199219", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Anahuac", + "scheduled_service": "no", + "gps_code": "KT00", + "local_code": "T00" + }, + { + "id": "21134", + "ident": "KT03", + "type": "small_airport", + "name": "Tuba City Airport", + "latitude_deg": "36.091146", + "longitude_deg": "-111.38286", + "elevation_ft": "4513", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tuba City", + "scheduled_service": "no", + "iata_code": "TBC", + "local_code": "T03", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tuba_City_Airport", + "keywords": "Tó Naneesdizí" + }, + { + "id": "21135", + "ident": "KT05", + "type": "small_airport", + "name": "Charles R Johnson Airport", + "latitude_deg": "26.560018", + "longitude_deg": "-97.43923", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port Mansfield", + "scheduled_service": "no", + "local_code": "T05" + }, + { + "id": "21136", + "ident": "KT12", + "type": "small_airport", + "name": "Kirbyville Airport", + "latitude_deg": "30.645795", + "longitude_deg": "-93.913643", + "elevation_ft": "121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kirbyville", + "scheduled_service": "no", + "gps_code": "KT12", + "local_code": "T12" + }, + { + "id": "21137", + "ident": "KT15", + "type": "small_airport", + "name": "Marlin Airport", + "latitude_deg": "31.340700149536133", + "longitude_deg": "-96.85199737548828", + "elevation_ft": "411", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marlin", + "scheduled_service": "no", + "gps_code": "KT15", + "local_code": "T15" + }, + { + "id": "21138", + "ident": "KT16", + "type": "small_airport", + "name": "Reserve Airport", + "latitude_deg": "33.69419860839844", + "longitude_deg": "-108.8489990234375", + "elevation_ft": "6360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Reserve", + "scheduled_service": "no", + "gps_code": "KT16", + "local_code": "T16" + }, + { + "id": "21139", + "ident": "KT17", + "type": "small_airport", + "name": "New Gulf Airport", + "latitude_deg": "29.272999", + "longitude_deg": "-95.886869", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Boling-Iago", + "scheduled_service": "no", + "gps_code": "1TX4", + "local_code": "1TX4", + "keywords": "T17, Boling-Iago" + }, + { + "id": "21140", + "ident": "KT19", + "type": "small_airport", + "name": "Duval Freer Airport", + "latitude_deg": "27.88360023498535", + "longitude_deg": "-98.60030364990234", + "elevation_ft": "564", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Freer", + "scheduled_service": "no", + "gps_code": "KT19", + "local_code": "T19" + }, + { + "id": "21141", + "ident": "KT20", + "type": "small_airport", + "name": "Roger M Dreyer Memorial Airport", + "latitude_deg": "29.52915", + "longitude_deg": "-97.464345", + "elevation_ft": "354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gonzales", + "scheduled_service": "no", + "local_code": "T20" + }, + { + "id": "21142", + "ident": "KT23", + "type": "small_airport", + "name": "Albany Municipal Airport", + "latitude_deg": "32.71900177002", + "longitude_deg": "-99.267601013184", + "elevation_ft": "1425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "T23", + "local_code": "T23", + "wikipedia_link": "https://en.wikipedia.org/wiki/Albany_Municipal_Airport_(Texas)" + }, + { + "id": "21143", + "ident": "KT24", + "type": "small_airport", + "name": "Pineland Municipal Airport", + "latitude_deg": "31.23349952697754", + "longitude_deg": "-93.98190307617188", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pineland", + "scheduled_service": "no", + "gps_code": "KT24", + "local_code": "T24" + }, + { + "id": "21144", + "ident": "KT27", + "type": "closed", + "name": "Horizon Airport", + "latitude_deg": "31.719801", + "longitude_deg": "-106.237", + "elevation_ft": "4007", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Paso", + "scheduled_service": "no", + "keywords": "T27, West Texas" + }, + { + "id": "21145", + "ident": "KT30", + "type": "small_airport", + "name": "Mc Kinley Field", + "latitude_deg": "28.82229996", + "longitude_deg": "-99.10900116", + "elevation_ft": "586", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pearsall", + "scheduled_service": "no", + "gps_code": "KT30", + "local_code": "T30" + }, + { + "id": "21146", + "ident": "KT31", + "type": "small_airport", + "name": "Aero Country Airport", + "latitude_deg": "33.2085", + "longitude_deg": "-96.7422", + "elevation_ft": "792", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "McKinney", + "scheduled_service": "no", + "local_code": "T31" + }, + { + "id": "21147", + "ident": "KT35", + "type": "small_airport", + "name": "Cameron Municipal Airpark", + "latitude_deg": "30.8794002532959", + "longitude_deg": "-96.97109985351562", + "elevation_ft": "402", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cameron", + "scheduled_service": "no", + "gps_code": "KT35", + "local_code": "T35" + }, + { + "id": "21148", + "ident": "KT36", + "type": "small_airport", + "name": "Paul Pittman Memorial Airport", + "latitude_deg": "31.145999908447266", + "longitude_deg": "-90.16809844970703", + "elevation_ft": "384", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Tylertown", + "scheduled_service": "no", + "gps_code": "KT36", + "local_code": "T36" + }, + { + "id": "21149", + "ident": "KT39", + "type": "small_airport", + "name": "Archer City Municipal Airport", + "latitude_deg": "33.582298", + "longitude_deg": "-98.618698", + "elevation_ft": "1065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Archer City", + "scheduled_service": "no", + "gps_code": "KT39", + "local_code": "T39", + "keywords": "10XS" + }, + { + "id": "21150", + "ident": "KT41", + "type": "small_airport", + "name": "La Porte Municipal Airport", + "latitude_deg": "29.669300079345703", + "longitude_deg": "-95.06420135498047", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "La Porte", + "scheduled_service": "no", + "gps_code": "KT41", + "local_code": "T41" + }, + { + "id": "21151", + "ident": "KT42", + "type": "small_airport", + "name": "Ruth Airport", + "latitude_deg": "40.2113", + "longitude_deg": "-123.297997", + "elevation_ft": "2781", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mad River", + "scheduled_service": "no", + "local_code": "T42", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ruth_Airport", + "keywords": "Q95" + }, + { + "id": "21153", + "ident": "KT45", + "type": "small_airport", + "name": "Panhandle Carson County Airport", + "latitude_deg": "35.361698150634766", + "longitude_deg": "-101.36499786376953", + "elevation_ft": "3454", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Panhandle", + "scheduled_service": "no", + "gps_code": "KT45", + "local_code": "T45" + }, + { + "id": "21155", + "ident": "KT50", + "type": "small_airport", + "name": "Menard County Airport", + "latitude_deg": "30.931949", + "longitude_deg": "-99.808843", + "elevation_ft": "1930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Menard", + "scheduled_service": "no", + "gps_code": "KT50", + "local_code": "T50" + }, + { + "id": "21156", + "ident": "KT51", + "type": "small_airport", + "name": "Dan Jones International Airport", + "latitude_deg": "30.042801", + "longitude_deg": "-95.667198", + "elevation_ft": "166", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "KT51", + "local_code": "T51", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dan_Jones_International_Airport", + "keywords": "2XS3" + }, + { + "id": "21157", + "ident": "KT54", + "type": "small_airport", + "name": "Lane Airpark", + "latitude_deg": "29.522609", + "longitude_deg": "-95.777127", + "elevation_ft": "94", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rosenberg", + "scheduled_service": "no", + "gps_code": "KT54", + "local_code": "T54" + }, + { + "id": "21158", + "ident": "KT55", + "type": "small_airport", + "name": "Dimmitt Municipal Airport", + "latitude_deg": "34.5667", + "longitude_deg": "-102.322998", + "elevation_ft": "3883", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dimmitt", + "scheduled_service": "no", + "local_code": "T55", + "keywords": "Q55" + }, + { + "id": "21159", + "ident": "KT59", + "type": "small_airport", + "name": "Wheeler Municipal Airport", + "latitude_deg": "35.45109939575195", + "longitude_deg": "-100.19999694824219", + "elevation_ft": "2470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wheeler", + "scheduled_service": "no", + "gps_code": "KT59", + "local_code": "T59" + }, + { + "id": "21160", + "ident": "KT60", + "type": "small_airport", + "name": "Stonewall County Airport", + "latitude_deg": "33.169828", + "longitude_deg": "-100.197308", + "elevation_ft": "1744", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Aspermont", + "scheduled_service": "no", + "gps_code": "KT60", + "local_code": "T60" + }, + { + "id": "21161", + "ident": "KT65", + "type": "small_airport", + "name": "Mid Valley Airport", + "latitude_deg": "26.177601", + "longitude_deg": "-97.973098", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weslaco", + "scheduled_service": "no", + "gps_code": "KTXW", + "local_code": "TXW", + "home_link": "http://www.weslacotx.gov/departments/mid-valley-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mid_Valley_Airport", + "keywords": "T65" + }, + { + "id": "21162", + "ident": "KT67", + "type": "small_airport", + "name": "Hicks Air Field", + "latitude_deg": "32.930535", + "longitude_deg": "-97.412328", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "KT67", + "local_code": "T67", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hicks_Airfield" + }, + { + "id": "21163", + "ident": "KT69", + "type": "small_airport", + "name": "Alfred C 'Bubba' Thomas Airport", + "latitude_deg": "28.0392", + "longitude_deg": "-97.542397", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sinton", + "scheduled_service": "no", + "local_code": "T69", + "home_link": "https://ftp.dot.state.tx.us/pub/txdot-info/avn/airport_directory/t69.pdf", + "keywords": "San Patricio County" + }, + { + "id": "21164", + "ident": "KT70", + "type": "closed", + "name": "Laughlin Air Force Base Auxiliary #1 Airport", + "latitude_deg": "29.118802", + "longitude_deg": "-100.472889", + "elevation_ft": "976", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no", + "gps_code": "KT70", + "local_code": "T70" + }, + { + "id": "21165", + "ident": "KT74", + "type": "small_airport", + "name": "Taylor Municipal Airport", + "latitude_deg": "30.572599411010742", + "longitude_deg": "-97.44319915771484", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Taylor", + "scheduled_service": "no", + "gps_code": "KT74", + "local_code": "T74" + }, + { + "id": "21167", + "ident": "KT78", + "type": "small_airport", + "name": "Liberty Municipal Airport", + "latitude_deg": "30.077800750732422", + "longitude_deg": "-94.69860076904297", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Liberty", + "scheduled_service": "no", + "gps_code": "KT78", + "local_code": "T78" + }, + { + "id": "21168", + "ident": "KT82", + "type": "small_airport", + "name": "Gillespie County Airport", + "latitude_deg": "30.243200302124023", + "longitude_deg": "-98.9092025756836", + "elevation_ft": "1695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fredericksburg", + "scheduled_service": "no", + "gps_code": "KT82", + "local_code": "T82" + }, + { + "id": "21169", + "ident": "KT85", + "type": "small_airport", + "name": "Yoakum Municipal Airport", + "latitude_deg": "29.3132", + "longitude_deg": "-97.138397", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Yoakum", + "scheduled_service": "no", + "local_code": "T85" + }, + { + "id": "21171", + "ident": "KT88", + "type": "small_airport", + "name": "Colorado City Airport", + "latitude_deg": "32.468399", + "longitude_deg": "-100.920998", + "elevation_ft": "2214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Colorado City", + "scheduled_service": "no", + "local_code": "T88" + }, + { + "id": "21173", + "ident": "KT90", + "type": "small_airport", + "name": "Chambers County Winnie Stowell Airport", + "latitude_deg": "29.819461", + "longitude_deg": "-94.431067", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Winnie", + "scheduled_service": "no", + "local_code": "T90" + }, + { + "id": "21174", + "ident": "KT92", + "type": "small_airport", + "name": "Mason County Airport", + "latitude_deg": "30.732200622558594", + "longitude_deg": "-99.1843032836914", + "elevation_ft": "1502", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mason", + "scheduled_service": "no", + "gps_code": "KT92", + "local_code": "T92" + }, + { + "id": "21175", + "ident": "KT93", + "type": "small_airport", + "name": "Follett Lipscomb County Airport", + "latitude_deg": "36.440799713134766", + "longitude_deg": "-100.1240005493164", + "elevation_ft": "2601", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Follett", + "scheduled_service": "no", + "gps_code": "KT93", + "local_code": "T93" + }, + { + "id": "21176", + "ident": "KTAD", + "type": "small_airport", + "name": "Perry Stokes Airport", + "latitude_deg": "37.2593994141", + "longitude_deg": "-104.341003418", + "elevation_ft": "5762", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Trinidad", + "scheduled_service": "no", + "gps_code": "KTAD", + "iata_code": "TAD", + "local_code": "TAD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Perry_Stokes_Airport" + }, + { + "id": "21177", + "ident": "KTAN", + "type": "small_airport", + "name": "Taunton Municipal King Field", + "latitude_deg": "41.8744010925293", + "longitude_deg": "-71.0166015625", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Taunton", + "scheduled_service": "no", + "gps_code": "KTAN", + "local_code": "TAN" + }, + { + "id": "21178", + "ident": "KTAZ", + "type": "small_airport", + "name": "Taylorville Municipal Airport", + "latitude_deg": "39.53419876098633", + "longitude_deg": "-89.32779693603516", + "elevation_ft": "622", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Taylorville", + "scheduled_service": "no", + "gps_code": "KTAZ", + "local_code": "TAZ" + }, + { + "id": "21179", + "ident": "KTB", + "type": "seaplane_base", + "name": "Thorne Bay Seaplane Base", + "latitude_deg": "55.687999725299996", + "longitude_deg": "-132.537002563", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Thorne Bay", + "scheduled_service": "no", + "gps_code": "KTB", + "iata_code": "KTB", + "local_code": "KTB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thorne_Bay_Seaplane_Base" + }, + { + "id": "3915", + "ident": "KTBN", + "type": "medium_airport", + "name": "Waynesville-St. Robert Regional Forney field", + "latitude_deg": "37.74160004", + "longitude_deg": "-92.14070129", + "elevation_ft": "1159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Fort Leonard Wood", + "scheduled_service": "yes", + "gps_code": "KTBN", + "iata_code": "TBN", + "local_code": "TBN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Waynesville_Regional_Airport_at_Forney_Field" + }, + { + "id": "21180", + "ident": "KTBR", + "type": "small_airport", + "name": "Statesboro Bulloch County Airport", + "latitude_deg": "32.4827003479", + "longitude_deg": "-81.73690032959999", + "elevation_ft": "187", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Statesboro", + "scheduled_service": "no", + "gps_code": "KTBR", + "iata_code": "TBR", + "local_code": "TBR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Statesboro-Bulloch_County_Airport" + }, + { + "id": "313815", + "ident": "KTC", + "type": "small_airport", + "name": "Katiola Airport", + "latitude_deg": "8.132858", + "longitude_deg": "-5.06487", + "elevation_ft": "1026", + "continent": "AF", + "iso_country": "CI", + "iso_region": "CI-VB", + "municipality": "Katiola", + "scheduled_service": "no", + "iata_code": "KTC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Katiola_Airport" + }, + { + "id": "3916", + "ident": "KTCC", + "type": "medium_airport", + "name": "Tucumcari Municipal Airport", + "latitude_deg": "35.182800293", + "longitude_deg": "-103.602996826", + "elevation_ft": "4065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Tucumcari", + "scheduled_service": "no", + "gps_code": "KTCC", + "iata_code": "TCC", + "local_code": "TCC", + "home_link": "http://www.cityoftucumcari.com/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tucumcari_Municipal_Airport" + }, + { + "id": "3917", + "ident": "KTCL", + "type": "medium_airport", + "name": "Tuscaloosa Regional Airport", + "latitude_deg": "33.220600128174", + "longitude_deg": "-87.611396789551", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Tuscaloosa", + "scheduled_service": "no", + "gps_code": "KTCL", + "iata_code": "TCL", + "local_code": "TCL", + "home_link": "http://www.tuscaloosa.com/Government/Departments/Transportation/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tuscaloosa_Regional_Airport" + }, + { + "id": "3918", + "ident": "KTCM", + "type": "medium_airport", + "name": "McChord Air Force Base", + "latitude_deg": "47.137699", + "longitude_deg": "-122.475998", + "elevation_ft": "322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tacoma", + "scheduled_service": "no", + "gps_code": "KTCM", + "iata_code": "TCM", + "local_code": "TCM", + "wikipedia_link": "https://en.wikipedia.org/wiki/McChord_Air_Force_Base" + }, + { + "id": "3919", + "ident": "KTCS", + "type": "medium_airport", + "name": "Truth or Consequences Municipal Airport", + "latitude_deg": "33.2369", + "longitude_deg": "-107.272003", + "elevation_ft": "4853", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Truth or Consequences", + "scheduled_service": "no", + "gps_code": "KTCS", + "iata_code": "TCS", + "local_code": "TCS", + "home_link": "http://www.torcnm.org/departments/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Truth_or_Consequences_Municipal_Airport" + }, + { + "id": "21181", + "ident": "KTCY", + "type": "small_airport", + "name": "Tracy Municipal Airport", + "latitude_deg": "37.68899917602539", + "longitude_deg": "-121.44200134277344", + "elevation_ft": "193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tracy", + "scheduled_service": "no", + "gps_code": "KTCY", + "local_code": "TCY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tracy_Municipal_Airport" + }, + { + "id": "21182", + "ident": "KTDF", + "type": "small_airport", + "name": "Raleigh Regional Airport at Person County", + "latitude_deg": "36.284901", + "longitude_deg": "-78.9842", + "elevation_ft": "609", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Timberlake", + "scheduled_service": "no", + "gps_code": "KTDF", + "local_code": "TDF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Person_County_Airport" + }, + { + "id": "21183", + "ident": "KTDO", + "type": "small_airport", + "name": "Ed Carlson Memorial Field South Lewis County Airport", + "latitude_deg": "46.4771995544", + "longitude_deg": "-122.805999756", + "elevation_ft": "374", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Toledo", + "scheduled_service": "no", + "gps_code": "KTDO", + "iata_code": "TDO", + "local_code": "TDO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ed_Carlson_Memorial_Field", + "keywords": "Winlock Airport" + }, + { + "id": "21184", + "ident": "KTDW", + "type": "small_airport", + "name": "Tradewind Airport", + "latitude_deg": "35.1698989868", + "longitude_deg": "-101.825996399", + "elevation_ft": "3649", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Amarillo", + "scheduled_service": "no", + "gps_code": "KTDW", + "iata_code": "TDW", + "local_code": "TDW", + "home_link": "http://tradewindairport.com/index.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tradewind_Airport" + }, + { + "id": "21185", + "ident": "KTDZ", + "type": "small_airport", + "name": "Toledo Executive Airport", + "latitude_deg": "41.56489944", + "longitude_deg": "-83.4822998", + "elevation_ft": "623", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Toledo", + "scheduled_service": "no", + "gps_code": "KTDZ", + "iata_code": "TDZ", + "local_code": "TDZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Metcalf_Field", + "keywords": "Metcalf Field" + }, + { + "id": "3920", + "ident": "KTEB", + "type": "medium_airport", + "name": "Teterboro Airport", + "latitude_deg": "40.85010147089999", + "longitude_deg": "-74.060798645", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Teterboro", + "scheduled_service": "no", + "gps_code": "KTEB", + "iata_code": "TEB", + "local_code": "TEB", + "home_link": "http://www.teb.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Teterboro_Airport", + "keywords": "Manhattan, New York City, NYC" + }, + { + "id": "21186", + "ident": "KTEL", + "type": "small_airport", + "name": "Perry County Municipal Airport", + "latitude_deg": "38.0177002", + "longitude_deg": "-86.69090271", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Tell City", + "scheduled_service": "no", + "gps_code": "KTEL", + "local_code": "TEL" + }, + { + "id": "21187", + "ident": "KTEW", + "type": "small_airport", + "name": "Mason Jewett Field", + "latitude_deg": "42.56579971", + "longitude_deg": "-84.42320251", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Mason", + "scheduled_service": "no", + "gps_code": "KTEW", + "local_code": "TEW" + }, + { + "id": "21188", + "ident": "KTEX", + "type": "small_airport", + "name": "Telluride Regional Airport", + "latitude_deg": "37.9538002", + "longitude_deg": "-107.9079971", + "elevation_ft": "9070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Telluride", + "scheduled_service": "no", + "gps_code": "KTEX", + "iata_code": "TEX", + "local_code": "TEX" + }, + { + "id": "21152", + "ident": "KTFP", + "type": "small_airport", + "name": "McCampbell-Porter Airport", + "latitude_deg": "27.9130001068", + "longitude_deg": "-97.2115020752", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ingleside", + "scheduled_service": "no", + "gps_code": "KTFP", + "local_code": "TFP", + "wikipedia_link": "https://en.wikipedia.org/wiki/McCampbell-Porter_Airport", + "keywords": "Formerly T43, T P Mc Campbell Airport" + }, + { + "id": "21189", + "ident": "KTGC", + "type": "small_airport", + "name": "Gibson County Airport", + "latitude_deg": "35.932499", + "longitude_deg": "-88.8489", + "elevation_ft": "359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Milan", + "scheduled_service": "no", + "gps_code": "KTGC", + "local_code": "TGC", + "keywords": "Trenton" + }, + { + "id": "21190", + "ident": "KTGI", + "type": "small_airport", + "name": "Tangier Island Airport", + "latitude_deg": "37.82509994506836", + "longitude_deg": "-75.997802734375", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Tangier", + "scheduled_service": "no", + "gps_code": "KTGI", + "local_code": "TGI" + }, + { + "id": "21191", + "ident": "KTHA", + "type": "small_airport", + "name": "Tullahoma Regional Arpt/Wm Northern Field", + "latitude_deg": "35.38010025", + "longitude_deg": "-86.24639893", + "elevation_ft": "1083", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Tullahoma", + "scheduled_service": "no", + "gps_code": "KTHA", + "iata_code": "THA", + "local_code": "THA", + "home_link": "http://www.tullahomatn.gov/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tullahoma_Regional_Airport" + }, + { + "id": "21192", + "ident": "KTHM", + "type": "small_airport", + "name": "Thompson Falls Airport", + "latitude_deg": "47.573501586914", + "longitude_deg": "-115.28099822998", + "elevation_ft": "2467", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Thompson Falls", + "scheduled_service": "no", + "gps_code": "KTHM", + "iata_code": "THM", + "local_code": "THM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thompson_Falls_Airport" + }, + { + "id": "21193", + "ident": "KTHP", + "type": "closed", + "name": "Hot Springs County Thermopolis Municipal Airport", + "latitude_deg": "43.663055", + "longitude_deg": "-108.209703", + "elevation_ft": "4592", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Thermopolis", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hot_Springs_County%E2%80%93Thermopolis_Municipal_Airport", + "keywords": "THP, KTHP, Hot Springs Co" + }, + { + "id": "21194", + "ident": "KTHV", + "type": "small_airport", + "name": "York Airport", + "latitude_deg": "39.917", + "longitude_deg": "-76.873001", + "elevation_ft": "495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Thomasville", + "scheduled_service": "no", + "gps_code": "KTHV", + "iata_code": "THV", + "local_code": "THV", + "wikipedia_link": "https://en.wikipedia.org/wiki/York_Airport_(Pennsylvania)" + }, + { + "id": "21195", + "ident": "KTIF", + "type": "small_airport", + "name": "Thomas County Airport", + "latitude_deg": "41.96220016", + "longitude_deg": "-100.5690002", + "elevation_ft": "2925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Thedford", + "scheduled_service": "no", + "gps_code": "KTIF", + "local_code": "TIF" + }, + { + "id": "3921", + "ident": "KTIK", + "type": "medium_airport", + "name": "Tinker Air Force Base", + "latitude_deg": "35.4147", + "longitude_deg": "-97.386597", + "elevation_ft": "1291", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "gps_code": "KTIK", + "iata_code": "TIK", + "local_code": "TIK", + "home_link": "http://www.tinker.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tinker_Air_Force_Base", + "keywords": "Midwest Air Depot" + }, + { + "id": "21196", + "ident": "KTIP", + "type": "small_airport", + "name": "Rantoul National Aviation Center - Frank Elliot field", + "latitude_deg": "40.293598", + "longitude_deg": "-88.142403", + "elevation_ft": "737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rantoul", + "scheduled_service": "no", + "gps_code": "KTIP", + "local_code": "TIP", + "keywords": "Chanute Air Force Base, Chanute Field" + }, + { + "id": "3922", + "ident": "KTIW", + "type": "medium_airport", + "name": "Tacoma Narrows Airport", + "latitude_deg": "47.26789856", + "longitude_deg": "-122.5780029", + "elevation_ft": "294", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tacoma", + "scheduled_service": "no", + "gps_code": "KTIW", + "iata_code": "TIW", + "local_code": "TIW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tacoma_Narrows_Airport" + }, + { + "id": "3923", + "ident": "KTIX", + "type": "medium_airport", + "name": "Space Coast Regional Airport", + "latitude_deg": "28.514799118042", + "longitude_deg": "-80.799201965332", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Titusville", + "scheduled_service": "no", + "gps_code": "KTIX", + "iata_code": "TIX", + "local_code": "TIX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Space_Coast_Regional_Airport" + }, + { + "id": "312959", + "ident": "KTK", + "type": "closed", + "name": "Kunua Airport", + "latitude_deg": "-5.7828", + "longitude_deg": "154.74", + "elevation_ft": "60", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NSB", + "municipality": "Kunua", + "scheduled_service": "no", + "iata_code": "KTK", + "keywords": "Kanua, Konua" + }, + { + "id": "21197", + "ident": "KTKC", + "type": "small_airport", + "name": "Tracy Municipal Airport", + "latitude_deg": "44.24909973144531", + "longitude_deg": "-95.6072998046875", + "elevation_ft": "1340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Tracy", + "scheduled_service": "no", + "gps_code": "KTKC", + "local_code": "TKC" + }, + { + "id": "21198", + "ident": "KTKI", + "type": "small_airport", + "name": "McKinney National Airport", + "latitude_deg": "33.177898", + "longitude_deg": "-96.5905", + "elevation_ft": "585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "KTKI", + "local_code": "TKI", + "home_link": "https://www.flytki.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/McKinney_National_Airport", + "keywords": "Collin County Regional Airport at McKinney" + }, + { + "id": "21199", + "ident": "KTKO", + "type": "small_airport", + "name": "Mankato Airport", + "latitude_deg": "39.802799224853516", + "longitude_deg": "-98.22119903564453", + "elevation_ft": "1859", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Mankato", + "scheduled_service": "no", + "gps_code": "KTKO", + "local_code": "TKO" + }, + { + "id": "21200", + "ident": "KTKV", + "type": "small_airport", + "name": "Tomahawk Regional Airport", + "latitude_deg": "45.469101", + "longitude_deg": "-89.805702", + "elevation_ft": "1487", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Tomahawk", + "scheduled_service": "no", + "gps_code": "KTKV", + "local_code": "TKV", + "home_link": "http://www.tomahawkregionalairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tomahawk_Regional_Airport", + "keywords": "WI46" + }, + { + "id": "21201", + "ident": "KTKX", + "type": "small_airport", + "name": "Kennett Memorial Airport", + "latitude_deg": "36.2258987427", + "longitude_deg": "-90.0365982056", + "elevation_ft": "262", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kennett", + "scheduled_service": "no", + "gps_code": "KTKX", + "iata_code": "KNT", + "local_code": "TKX", + "home_link": "http://www.ktkx.us/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kennett_Memorial_Airport" + }, + { + "id": "3924", + "ident": "KTLH", + "type": "medium_airport", + "name": "Tallahassee Regional Airport", + "latitude_deg": "30.3965", + "longitude_deg": "-84.350304", + "elevation_ft": "81", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tallahassee", + "scheduled_service": "yes", + "gps_code": "KTLH", + "iata_code": "TLH", + "local_code": "TLH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tallahassee_Regional_Airport" + }, + { + "id": "21202", + "ident": "KTLR", + "type": "small_airport", + "name": "Mefford Field", + "latitude_deg": "36.15629959", + "longitude_deg": "-119.3259964", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tulare", + "scheduled_service": "no", + "gps_code": "KTLR", + "iata_code": "TLR", + "local_code": "TLR", + "home_link": "http://www.ci.tulare.ca.us/local_government/departments/administrative_services/airport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mefford_Field" + }, + { + "id": "21203", + "ident": "KTMA", + "type": "small_airport", + "name": "Henry Tift Myers Airport", + "latitude_deg": "31.4290008545", + "longitude_deg": "-83.4885025024", + "elevation_ft": "355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Tifton", + "scheduled_service": "no", + "gps_code": "KTMA", + "iata_code": "TMA", + "local_code": "TMA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Henry_Tift_Myers_Airport", + "keywords": "Tifton AAF, Turner AAF Auxiliary Field No. 9" + }, + { + "id": "21204", + "ident": "KTMB", + "type": "medium_airport", + "name": "Miami Executive Airport", + "latitude_deg": "25.6479", + "longitude_deg": "-80.4328", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "KTMB", + "iata_code": "TMB", + "local_code": "TMB", + "home_link": "http://www.miami-airport.com/kendall_tamiami.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miami_Executive_Airport", + "keywords": "Kendall-Tamiami Executive Airport" + }, + { + "id": "13991", + "ident": "KTME", + "type": "small_airport", + "name": "Houston Executive Airport", + "latitude_deg": "29.807199478149414", + "longitude_deg": "-95.89790344238281", + "elevation_ft": "166", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "KTME", + "local_code": "TME", + "keywords": "Formerly 78T" + }, + { + "id": "24915", + "ident": "KTMK", + "type": "small_airport", + "name": "Tillamook Airport", + "latitude_deg": "45.4182014465", + "longitude_deg": "-123.814002991", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Tillamook", + "scheduled_service": "no", + "gps_code": "KTMK", + "iata_code": "OTK", + "local_code": "TMK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tillamook_Airport", + "keywords": "S47" + }, + { + "id": "21205", + "ident": "KTNP", + "type": "small_airport", + "name": "Twentynine Palms Airport", + "latitude_deg": "34.133901", + "longitude_deg": "-115.947347", + "elevation_ft": "1888", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Twentynine Palms", + "scheduled_service": "no", + "gps_code": "KTNP", + "iata_code": "TNP", + "local_code": "TNP", + "home_link": "http://cms.sbcounty.gov/airports/Airports/TwentyninePalms.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Twentynine_Palms_Airport" + }, + { + "id": "21206", + "ident": "KTNT", + "type": "small_airport", + "name": "Dade Collier Training and Transition Airport", + "latitude_deg": "25.861799240112", + "longitude_deg": "-80.897003173828", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "KTNT", + "iata_code": "TNT", + "local_code": "TNT", + "home_link": "http://www.miami-airport.com/dade_collier.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dade-Collier_Training_and_Transition_Airport" + }, + { + "id": "21207", + "ident": "KTNU", + "type": "small_airport", + "name": "Newton Municipal Airport", + "latitude_deg": "41.6744", + "longitude_deg": "-93.021698", + "elevation_ft": "953", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Newton", + "scheduled_service": "no", + "gps_code": "KTNU", + "iata_code": "TNU", + "local_code": "TNU", + "home_link": "http://www.newtongov.org/index.aspx?nid=189", + "wikipedia_link": "https://en.wikipedia.org/wiki/Newton_Municipal_Airport_(Iowa)", + "keywords": "Earl Johnson Field" + }, + { + "id": "21208", + "ident": "KTNX", + "type": "small_airport", + "name": "Tonopah Test Range Airport", + "latitude_deg": "37.7988014221", + "longitude_deg": "-116.78099823", + "elevation_ft": "5549", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Tonopah", + "scheduled_service": "no", + "gps_code": "KTNX", + "iata_code": "XSD", + "local_code": "TNX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tonopah_Test_Range_Airport" + }, + { + "id": "21209", + "ident": "KTOA", + "type": "small_airport", + "name": "Zamperini Field", + "latitude_deg": "33.803398132324", + "longitude_deg": "-118.33999633789", + "elevation_ft": "103", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Torrance", + "scheduled_service": "no", + "gps_code": "KTOA", + "iata_code": "TOA", + "local_code": "TOA", + "home_link": "http://www.torranceca.gov/487.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zamperini_Field" + }, + { + "id": "21210", + "ident": "KTOB", + "type": "small_airport", + "name": "Dodge Center Airport", + "latitude_deg": "44.018001556396484", + "longitude_deg": "-92.83149719238281", + "elevation_ft": "1305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Dodge Center", + "scheduled_service": "no", + "gps_code": "KTOB", + "local_code": "TOB" + }, + { + "id": "21211", + "ident": "KTOC", + "type": "small_airport", + "name": "Toccoa Airport - R.G. Letourneau Field", + "latitude_deg": "34.5938", + "longitude_deg": "-83.295799", + "elevation_ft": "996", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Toccoa", + "scheduled_service": "no", + "gps_code": "KTOC", + "iata_code": "TOC", + "local_code": "TOC", + "home_link": "http://www.stephenscountyga.com/airport.cfm?lid=249", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toccoa_Airport", + "keywords": "Stephens County" + }, + { + "id": "21212", + "ident": "KTOI", + "type": "medium_airport", + "name": "Troy Municipal Airport at N Kenneth Campbell Field", + "latitude_deg": "31.860399", + "longitude_deg": "-86.012101", + "elevation_ft": "398", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "KTOI", + "iata_code": "TOI", + "local_code": "TOI", + "home_link": "http://www.troyal.gov/KTOI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Troy_Municipal_Airport" + }, + { + "id": "3925", + "ident": "KTOL", + "type": "medium_airport", + "name": "Eugene F. Kranz Toledo Express Airport", + "latitude_deg": "41.5868", + "longitude_deg": "-83.8078", + "elevation_ft": "683", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Toledo", + "scheduled_service": "yes", + "gps_code": "KTOL", + "iata_code": "TOL", + "local_code": "TOL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toledo_Express_Airport" + }, + { + "id": "21213", + "ident": "KTOP", + "type": "medium_airport", + "name": "Philip Billard Municipal Airport", + "latitude_deg": "39.069899", + "longitude_deg": "-95.622606", + "elevation_ft": "881", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Topeka", + "scheduled_service": "no", + "gps_code": "KTOP", + "iata_code": "TOP", + "local_code": "TOP", + "home_link": "http://www.mtaa-topeka.org/billard-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Philip_Billard_Municipal_Airport" + }, + { + "id": "21214", + "ident": "KTOR", + "type": "small_airport", + "name": "Torrington Municipal Airport", + "latitude_deg": "42.0644989", + "longitude_deg": "-104.1529999", + "elevation_ft": "4207", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Torrington", + "scheduled_service": "no", + "gps_code": "KTOR", + "iata_code": "TOR", + "local_code": "TOR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Torrington_Municipal_Airport" + }, + { + "id": "3926", + "ident": "KTPA", + "type": "large_airport", + "name": "Tampa International Airport", + "latitude_deg": "27.975500106811523", + "longitude_deg": "-82.533203125", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tampa", + "scheduled_service": "yes", + "gps_code": "KTPA", + "iata_code": "TPA", + "local_code": "TPA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tampa_International_Airport" + }, + { + "id": "21215", + "ident": "KTPF", + "type": "small_airport", + "name": "Peter O Knight Airport", + "latitude_deg": "27.915599822998", + "longitude_deg": "-82.44930267334", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tampa", + "scheduled_service": "no", + "gps_code": "KTPF", + "iata_code": "TPF", + "local_code": "TPF", + "home_link": "http://www.tampaairport.com/peter-o-knight-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Peter_O._Knight_Airport" + }, + { + "id": "21216", + "ident": "KTPH", + "type": "medium_airport", + "name": "Tonopah Airport", + "latitude_deg": "38.06019974", + "longitude_deg": "-117.086998", + "elevation_ft": "5430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Tonopah", + "scheduled_service": "no", + "gps_code": "KTPH", + "iata_code": "TPH", + "local_code": "TPH", + "home_link": "http://www.tonopahnevada.com/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tonopah_Airport" + }, + { + "id": "3927", + "ident": "KTPL", + "type": "medium_airport", + "name": "Draughon Miller Central Texas Regional Airport", + "latitude_deg": "31.15250015258789", + "longitude_deg": "-97.40779876708984", + "elevation_ft": "682", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Temple", + "scheduled_service": "no", + "gps_code": "KTPL", + "iata_code": "TPL", + "local_code": "TPL" + }, + { + "id": "21217", + "ident": "KTQE", + "type": "small_airport", + "name": "Tekamah Municipal Airport", + "latitude_deg": "41.76350021362305", + "longitude_deg": "-96.17790222167969", + "elevation_ft": "1027", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Tekamah", + "scheduled_service": "no", + "gps_code": "KTQE", + "local_code": "TQE" + }, + { + "id": "21218", + "ident": "KTQH", + "type": "small_airport", + "name": "Tahlequah Municipal Airport", + "latitude_deg": "35.92890167", + "longitude_deg": "-95.00450134", + "elevation_ft": "874", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tahlequah", + "scheduled_service": "no", + "gps_code": "KTQH", + "local_code": "TQH" + }, + { + "id": "21219", + "ident": "KTQK", + "type": "small_airport", + "name": "Scott City Municipal Airport", + "latitude_deg": "38.474300384521484", + "longitude_deg": "-100.88500213623047", + "elevation_ft": "2963", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Scott City", + "scheduled_service": "no", + "gps_code": "KTQK", + "local_code": "TQK" + }, + { + "id": "3928", + "ident": "KTRI", + "type": "medium_airport", + "name": "Tri-Cities Regional TN/VA Airport", + "latitude_deg": "36.475201", + "longitude_deg": "-82.407401", + "elevation_ft": "1519", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Blountville", + "scheduled_service": "yes", + "gps_code": "KTRI", + "iata_code": "TRI", + "local_code": "TRI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tri-Cities_Regional_Airport" + }, + { + "id": "21220", + "ident": "KTRK", + "type": "medium_airport", + "name": "Truckee Tahoe Airport", + "latitude_deg": "39.319999694799996", + "longitude_deg": "-120.13999939", + "elevation_ft": "5900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Truckee", + "scheduled_service": "no", + "gps_code": "KTRK", + "iata_code": "TKF", + "local_code": "TRK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Truckee_Tahoe_Airport" + }, + { + "id": "21221", + "ident": "KTRL", + "type": "small_airport", + "name": "Terrell Municipal Airport", + "latitude_deg": "32.709201812744", + "longitude_deg": "-96.267402648926", + "elevation_ft": "474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Terrell", + "scheduled_service": "no", + "gps_code": "KTRL", + "iata_code": "TRL", + "local_code": "TRL", + "home_link": "http://www.terrellairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Terrell_Municipal_Airport", + "keywords": "Terrell Field" + }, + { + "id": "21222", + "ident": "KTRM", + "type": "medium_airport", + "name": "Jacqueline Cochran Regional Airport", + "latitude_deg": "33.62670135498", + "longitude_deg": "-116.16000366211", + "elevation_ft": "-115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palm Springs", + "scheduled_service": "no", + "gps_code": "KTRM", + "iata_code": "TRM", + "local_code": "TRM", + "home_link": "http://www.rcjcra.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jacqueline_Cochran_Regional_Airport", + "keywords": "Thermal Airport, Desert Resorts Regional Airport, Thermal AAF" + }, + { + "id": "21223", + "ident": "KTRX", + "type": "small_airport", + "name": "Trenton Municipal Airport", + "latitude_deg": "40.08349991", + "longitude_deg": "-93.59059906", + "elevation_ft": "758", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Trenton", + "scheduled_service": "no", + "gps_code": "KTRX", + "local_code": "TRX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trenton_Municipal_Airport_(Missouri)" + }, + { + "id": "21225", + "ident": "KTSO", + "type": "small_airport", + "name": "Carroll County-Tolson Airport", + "latitude_deg": "40.561901", + "longitude_deg": "-81.077499", + "elevation_ft": "1163", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Carrollton", + "scheduled_service": "no", + "gps_code": "KTSO", + "local_code": "TSO" + }, + { + "id": "21226", + "ident": "KTSP", + "type": "small_airport", + "name": "Tehachapi Municipal Airport", + "latitude_deg": "35.134998321533", + "longitude_deg": "-118.43900299072", + "elevation_ft": "4001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tehachapi", + "scheduled_service": "no", + "gps_code": "KTSP", + "iata_code": "TSP", + "local_code": "TSP", + "home_link": "http://www.liveuptehachapi.com/index.aspx?nid=26", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tehachapi_Municipal_Airport" + }, + { + "id": "21227", + "ident": "KTTA", + "type": "small_airport", + "name": "Raleigh Executive Jetport", + "latitude_deg": "35.583698", + "longitude_deg": "-79.1008", + "elevation_ft": "246", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Sanford", + "scheduled_service": "no", + "gps_code": "KTTA", + "local_code": "TTA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Raleigh_Executive_Jetport", + "keywords": "Raleigh Exec: The Raleigh Executive Jetport, Raleigh Exec Jetport at Sanford-Lee County, Sanford-Lee County Regional Airport" + }, + { + "id": "21228", + "ident": "KTTD", + "type": "medium_airport", + "name": "Portland Troutdale Airport", + "latitude_deg": "45.54940032959", + "longitude_deg": "-122.40100097656", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "KTTD", + "iata_code": "TTD", + "local_code": "TTD", + "home_link": "https://www2.portofportland.com/Airports/Troutdale/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Portland%E2%80%93Troutdale_Airport" + }, + { + "id": "21229", + "ident": "KTTF", + "type": "small_airport", + "name": "Custer Airport", + "latitude_deg": "41.93989944458008", + "longitude_deg": "-83.43470001220703", + "elevation_ft": "616", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "KTTF", + "local_code": "TTF" + }, + { + "id": "3929", + "ident": "KTTN", + "type": "medium_airport", + "name": "Trenton Mercer Airport", + "latitude_deg": "40.27669906616211", + "longitude_deg": "-74.8134994506836", + "elevation_ft": "213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Trenton", + "scheduled_service": "yes", + "gps_code": "KTTN", + "iata_code": "TTN", + "local_code": "TTN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trenton-Mercer_Airport" + }, + { + "id": "21230", + "ident": "KTTS", + "type": "medium_airport", + "name": "NASA Shuttle Landing Facility Airport", + "latitude_deg": "28.615", + "longitude_deg": "-80.694504", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Titusville", + "scheduled_service": "no", + "gps_code": "KTTS", + "local_code": "TTS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shuttle_Landing_Facility" + }, + { + "id": "3930", + "ident": "KTUL", + "type": "large_airport", + "name": "Tulsa International Airport", + "latitude_deg": "36.19839859008789", + "longitude_deg": "-95.88809967041016", + "elevation_ft": "677", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tulsa", + "scheduled_service": "yes", + "gps_code": "KTUL", + "iata_code": "TUL", + "local_code": "TUL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tulsa_International_Airport" + }, + { + "id": "3931", + "ident": "KTUP", + "type": "medium_airport", + "name": "Tupelo Regional Airport", + "latitude_deg": "34.26810073852539", + "longitude_deg": "-88.7698974609375", + "elevation_ft": "346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Tupelo", + "scheduled_service": "yes", + "gps_code": "KTUP", + "iata_code": "TUP", + "local_code": "TUP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tupelo_Regional_Airport" + }, + { + "id": "3932", + "ident": "KTUS", + "type": "medium_airport", + "name": "Tucson International Airport / Morris Air National Guard Base", + "latitude_deg": "32.115004", + "longitude_deg": "-110.938053", + "elevation_ft": "2643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "yes", + "gps_code": "KTUS", + "iata_code": "TUS", + "local_code": "TUS", + "home_link": "https://www.flytucson.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tucson_International_Airport", + "keywords": "tucson, tucson international, morris angb" + }, + { + "id": "21231", + "ident": "KTVB", + "type": "small_airport", + "name": "Cabool Memorial Airport", + "latitude_deg": "37.13240051269531", + "longitude_deg": "-92.08399963378906", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Cabool", + "scheduled_service": "no", + "gps_code": "KTVB", + "local_code": "TVB" + }, + { + "id": "3933", + "ident": "KTVC", + "type": "medium_airport", + "name": "Cherry Capital Airport", + "latitude_deg": "44.74140167236328", + "longitude_deg": "-85.58219909667969", + "elevation_ft": "624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Traverse City", + "scheduled_service": "yes", + "gps_code": "KTVC", + "iata_code": "TVC", + "local_code": "TVC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cherry_Capital_Airport" + }, + { + "id": "21232", + "ident": "KTVF", + "type": "small_airport", + "name": "Thief River Falls Regional Airport", + "latitude_deg": "48.06570053", + "longitude_deg": "-96.18499756", + "elevation_ft": "1119", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Thief River Falls", + "scheduled_service": "no", + "gps_code": "KTVF", + "iata_code": "TVF", + "local_code": "TVF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thief_River_Falls_Regional_Airport" + }, + { + "id": "21233", + "ident": "KTVI", + "type": "small_airport", + "name": "Thomasville Regional Airport", + "latitude_deg": "30.901599884033", + "longitude_deg": "-83.881301879883", + "elevation_ft": "264", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Thomasville", + "scheduled_service": "no", + "gps_code": "KTVI", + "iata_code": "TVI", + "local_code": "TVI", + "home_link": "http://www.thomasville.org/Content/Default/10/534/71/city-of-thomasville/departments/thomasville-regional-airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thomasville_Regional_Airport", + "keywords": "Thomasville AAF" + }, + { + "id": "21234", + "ident": "KTVK", + "type": "small_airport", + "name": "Centerville Municipal Airport", + "latitude_deg": "40.68389893", + "longitude_deg": "-92.90100098", + "elevation_ft": "1023", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Centerville", + "scheduled_service": "no", + "gps_code": "KTVK", + "local_code": "TVK" + }, + { + "id": "3934", + "ident": "KTVL", + "type": "medium_airport", + "name": "Lake Tahoe Airport", + "latitude_deg": "38.89390182495117", + "longitude_deg": "-119.99500274658203", + "elevation_ft": "6264", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "South Lake Tahoe", + "scheduled_service": "no", + "gps_code": "KTVL", + "iata_code": "TVL", + "local_code": "TVL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_Tahoe_Airport" + }, + { + "id": "21235", + "ident": "KTVR", + "type": "small_airport", + "name": "Vicksburg Tallulah Regional Airport", + "latitude_deg": "32.351600646972656", + "longitude_deg": "-91.02770233154297", + "elevation_ft": "86", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Tallulah/Vicksburg, Ms", + "scheduled_service": "no", + "gps_code": "KTVR", + "local_code": "TVR" + }, + { + "id": "21236", + "ident": "KTVY", + "type": "small_airport", + "name": "Bolinder Field Tooele Valley Airport", + "latitude_deg": "40.61230087", + "longitude_deg": "-112.3509979", + "elevation_ft": "4322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Tooele", + "scheduled_service": "no", + "gps_code": "KTVY", + "local_code": "TVY" + }, + { + "id": "3935", + "ident": "KTWF", + "type": "medium_airport", + "name": "Joslin Field Magic Valley Regional Airport", + "latitude_deg": "42.4818", + "longitude_deg": "-114.487999", + "elevation_ft": "4154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Twin Falls", + "scheduled_service": "yes", + "gps_code": "KTWF", + "iata_code": "TWF", + "local_code": "TWF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Magic_Valley_Regional_Airport" + }, + { + "id": "21237", + "ident": "KTWM", + "type": "small_airport", + "name": "Richard B Helgeson Airport", + "latitude_deg": "47.04919815", + "longitude_deg": "-91.74510193", + "elevation_ft": "1073", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Two Harbors", + "scheduled_service": "no", + "gps_code": "KTWM", + "local_code": "TWM" + }, + { + "id": "21238", + "ident": "KTWT", + "type": "small_airport", + "name": "Sturgis Municipal Airport", + "latitude_deg": "37.54079818725586", + "longitude_deg": "-87.95179748535156", + "elevation_ft": "372", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Sturgis", + "scheduled_service": "no", + "gps_code": "KTWT", + "local_code": "TWT" + }, + { + "id": "3936", + "ident": "KTXK", + "type": "medium_airport", + "name": "Texarkana Regional Webb Field", + "latitude_deg": "33.45370101928711", + "longitude_deg": "-93.99099731445312", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Texarkana", + "scheduled_service": "yes", + "gps_code": "KTXK", + "iata_code": "TXK", + "local_code": "TXK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Texarkana_Regional_Airport" + }, + { + "id": "21239", + "ident": "KTYL", + "type": "small_airport", + "name": "Taylor Airport", + "latitude_deg": "34.45280075", + "longitude_deg": "-110.1149979", + "elevation_ft": "5823", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Taylor", + "scheduled_service": "no", + "gps_code": "KTYL", + "iata_code": "TYZ", + "local_code": "TYL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taylor_Airport_(Arizona)" + }, + { + "id": "21240", + "ident": "KTYQ", + "type": "small_airport", + "name": "Indianapolis Executive Airport", + "latitude_deg": "40.030701", + "longitude_deg": "-86.251404", + "elevation_ft": "922", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "KTYQ", + "local_code": "TYQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Indianapolis_Executive_Airport" + }, + { + "id": "3937", + "ident": "KTYR", + "type": "medium_airport", + "name": "Tyler Pounds Regional Airport", + "latitude_deg": "32.35409927368164", + "longitude_deg": "-95.40239715576172", + "elevation_ft": "544", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tyler", + "scheduled_service": "yes", + "gps_code": "KTYR", + "iata_code": "TYR", + "local_code": "TYR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tyler_Pounds_Regional_Airport" + }, + { + "id": "3938", + "ident": "KTYS", + "type": "medium_airport", + "name": "McGhee Tyson Airport", + "latitude_deg": "35.811001", + "longitude_deg": "-83.994003", + "elevation_ft": "981", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Alcoa", + "scheduled_service": "yes", + "gps_code": "KTYS", + "iata_code": "TYS", + "local_code": "TYS", + "wikipedia_link": "https://en.wikipedia.org/wiki/McGhee_Tyson_Airport", + "keywords": "Knoxville" + }, + { + "id": "21241", + "ident": "KTZR", + "type": "small_airport", + "name": "Bolton Field", + "latitude_deg": "39.90119934082031", + "longitude_deg": "-83.13690185546875", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "KTZR", + "local_code": "TZR" + }, + { + "id": "21242", + "ident": "KTZT", + "type": "small_airport", + "name": "Belle Plaine Municipal Airport", + "latitude_deg": "41.87879943847656", + "longitude_deg": "-92.28459930419922", + "elevation_ft": "771", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Belle Plaine", + "scheduled_service": "no", + "gps_code": "KTZT", + "local_code": "TZT" + }, + { + "id": "21243", + "ident": "KTZV", + "type": "small_airport", + "name": "Tompkinsville Monroe County Airport", + "latitude_deg": "36.729000091552734", + "longitude_deg": "-85.65239715576172", + "elevation_ft": "1036", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Tompkinsville", + "scheduled_service": "no", + "gps_code": "KTZV", + "local_code": "TZV" + }, + { + "id": "21244", + "ident": "KU00", + "type": "small_airport", + "name": "Leadore Airport", + "latitude_deg": "44.67380142211914", + "longitude_deg": "-113.35299682617188", + "elevation_ft": "6018", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Leadore", + "scheduled_service": "no", + "gps_code": "KU00", + "local_code": "U00" + }, + { + "id": "21245", + "ident": "KU01", + "type": "small_airport", + "name": "American Falls Airport", + "latitude_deg": "42.797298431396484", + "longitude_deg": "-112.82499694824219", + "elevation_ft": "4419", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "American Falls", + "scheduled_service": "no", + "gps_code": "KU01", + "local_code": "U01" + }, + { + "id": "21246", + "ident": "KU02", + "type": "small_airport", + "name": "Mccarley Field", + "latitude_deg": "43.209233", + "longitude_deg": "-112.34956", + "elevation_ft": "4488", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Blackfoot", + "scheduled_service": "no", + "gps_code": "KU02", + "local_code": "U02" + }, + { + "id": "21247", + "ident": "KU03", + "type": "small_airport", + "name": "Buhl Municipal Airport", + "latitude_deg": "42.59159851074219", + "longitude_deg": "-114.7969970703125", + "elevation_ft": "3660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Buhl", + "scheduled_service": "no", + "gps_code": "KU03", + "local_code": "U03" + }, + { + "id": "21248", + "ident": "KU05", + "type": "small_airport", + "name": "Riddick Field", + "latitude_deg": "46.319400787353516", + "longitude_deg": "-113.30500030517578", + "elevation_ft": "5212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Philipsburg", + "scheduled_service": "no", + "gps_code": "KU05", + "local_code": "U05" + }, + { + "id": "21249", + "ident": "KU06", + "type": "small_airport", + "name": "Cokeville Municipal Airport", + "latitude_deg": "42.045799255371094", + "longitude_deg": "-110.96600341796875", + "elevation_ft": "6270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Cokeville", + "scheduled_service": "no", + "gps_code": "KU06", + "local_code": "U06" + }, + { + "id": "21250", + "ident": "KU07", + "type": "small_airport", + "name": "Bullfrog Basin Airport", + "latitude_deg": "37.547827", + "longitude_deg": "-110.712898", + "elevation_ft": "4167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Bullfrog", + "scheduled_service": "no", + "gps_code": "KU07", + "iata_code": "BFG", + "local_code": "U07", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bullfrog_Basin_Airport" + }, + { + "id": "21251", + "ident": "KU08", + "type": "small_airport", + "name": "Perkins Field", + "latitude_deg": "36.56800079345703", + "longitude_deg": "-114.44300079345703", + "elevation_ft": "1358", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Overton", + "scheduled_service": "no", + "gps_code": "KU08", + "local_code": "U08", + "wikipedia_link": "https://en.wikipedia.org/wiki/Perkins_Field" + }, + { + "id": "21252", + "ident": "KU09", + "type": "small_airport", + "name": "Fort Belknap Agency Airport", + "latitude_deg": "48.48109817504883", + "longitude_deg": "-108.76899719238281", + "elevation_ft": "2374", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Harlem", + "scheduled_service": "no", + "gps_code": "KU09", + "local_code": "U09" + }, + { + "id": "21253", + "ident": "KU10", + "type": "small_airport", + "name": "Preston Airport", + "latitude_deg": "42.10689926147461", + "longitude_deg": "-111.91300201416016", + "elevation_ft": "4728", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Preston", + "scheduled_service": "no", + "gps_code": "KU10", + "local_code": "U10" + }, + { + "id": "21254", + "ident": "KU12", + "type": "small_airport", + "name": "Stanford Field", + "latitude_deg": "43.945701599121094", + "longitude_deg": "-111.68399810791016", + "elevation_ft": "4966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "St Anthony", + "scheduled_service": "no", + "gps_code": "KU12", + "local_code": "U12" + }, + { + "id": "21255", + "ident": "KU13", + "type": "small_airport", + "name": "Junction Airport", + "latitude_deg": "38.251656", + "longitude_deg": "-112.223332", + "elevation_ft": "6069", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Junction", + "scheduled_service": "no", + "gps_code": "KU13", + "local_code": "U13" + }, + { + "id": "21256", + "ident": "KU14", + "type": "small_airport", + "name": "J. Randy McKnight Nephi Municipal Airport", + "latitude_deg": "39.73681", + "longitude_deg": "-111.870063", + "elevation_ft": "5022", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Nephi", + "scheduled_service": "no", + "gps_code": "KU14", + "iata_code": "NPH", + "local_code": "U14", + "home_link": "http://nephi.utah.gov/airport/" + }, + { + "id": "334901", + "ident": "KU20", + "type": "closed", + "name": "(Old) Green River Airport", + "latitude_deg": "38.994064", + "longitude_deg": "-110.177583", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Green River", + "scheduled_service": "no", + "gps_code": "KU20", + "local_code": "U20", + "keywords": "u20, green river" + }, + { + "id": "21257", + "ident": "KU25", + "type": "small_airport", + "name": "Dubois Municipal Airport", + "latitude_deg": "43.548301696799996", + "longitude_deg": "-109.690002441", + "elevation_ft": "7291", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Dubois", + "scheduled_service": "no", + "gps_code": "KDUB", + "local_code": "DUB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dubois_Municipal_Airport_(Wyoming)", + "keywords": "U25" + }, + { + "id": "21258", + "ident": "KU30", + "type": "small_airport", + "name": "Temple Bar Airport", + "latitude_deg": "36.02050018310547", + "longitude_deg": "-114.33499908447266", + "elevation_ft": "1549", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Temple Bar", + "scheduled_service": "no", + "gps_code": "KU30", + "local_code": "U30", + "wikipedia_link": "https://en.wikipedia.org/wiki/Temple_Bar_Airport" + }, + { + "id": "21259", + "ident": "KU34", + "type": "small_airport", + "name": "Green River Municipal Airport", + "latitude_deg": "38.9613990784", + "longitude_deg": "-110.226997375", + "elevation_ft": "4225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Green River", + "scheduled_service": "no", + "gps_code": "KU34", + "iata_code": "RVR", + "local_code": "U34", + "wikipedia_link": "https://en.wikipedia.org/wiki/Green_River_Municipal_Airport" + }, + { + "id": "21260", + "ident": "KU36", + "type": "small_airport", + "name": "Aberdeen Municipal Airport", + "latitude_deg": "42.921001", + "longitude_deg": "-112.880997", + "elevation_ft": "4470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Aberdeen", + "scheduled_service": "no", + "local_code": "U36", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aberdeen_Municipal_Airport" + }, + { + "id": "21261", + "ident": "KU42", + "type": "medium_airport", + "name": "South Valley International Airport", + "latitude_deg": "40.619499", + "longitude_deg": "-111.992996", + "elevation_ft": "4607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Salt Lake City", + "scheduled_service": "no", + "local_code": "U42", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salt_Lake_City_Municipal_2_Airport" + }, + { + "id": "21262", + "ident": "KU43", + "type": "closed", + "name": "Monticello Airport", + "latitude_deg": "37.937199", + "longitude_deg": "-109.347", + "elevation_ft": "6998", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Monticello", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monticello_Airport_(Utah)", + "keywords": "U43, MXC" + }, + { + "id": "21263", + "ident": "KU52", + "type": "small_airport", + "name": "Beaver Municipal Airport", + "latitude_deg": "38.23070145", + "longitude_deg": "-112.6750031", + "elevation_ft": "5863", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Beaver", + "scheduled_service": "no", + "gps_code": "KU52", + "local_code": "U52" + }, + { + "id": "21264", + "ident": "KU55", + "type": "small_airport", + "name": "Panguitch Municipal Airport", + "latitude_deg": "37.84519958", + "longitude_deg": "-112.3919983", + "elevation_ft": "6763", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Panguitch", + "scheduled_service": "no", + "gps_code": "U55", + "iata_code": "PNU", + "local_code": "U55", + "home_link": "http://panguitch.com/business-directory/1300/panguitch-municipal-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Panguitch_Municipal_Airport" + }, + { + "id": "21265", + "ident": "KU56", + "type": "small_airport", + "name": "Rigby Jefferson County Airport", + "latitude_deg": "43.642039", + "longitude_deg": "-111.929526", + "elevation_ft": "4845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Rigby", + "scheduled_service": "no", + "gps_code": "KU56", + "local_code": "U56" + }, + { + "id": "21266", + "ident": "KU58", + "type": "small_airport", + "name": "Downey/Hyde Memorial Airport", + "latitude_deg": "42.42630005", + "longitude_deg": "-112.1090012", + "elevation_ft": "4906", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Downey", + "scheduled_service": "no", + "gps_code": "KU58", + "local_code": "U58" + }, + { + "id": "21267", + "ident": "KU62", + "type": "small_airport", + "name": "Mackay Airport", + "latitude_deg": "43.90409851", + "longitude_deg": "-113.6009979", + "elevation_ft": "5892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Mackay", + "scheduled_service": "no", + "gps_code": "KU62", + "local_code": "U62" + }, + { + "id": "21268", + "ident": "KU63", + "type": "small_airport", + "name": "Bruce Meadows Airport", + "latitude_deg": "44.41550064086914", + "longitude_deg": "-115.31700134277344", + "elevation_ft": "6370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Stanley", + "scheduled_service": "no", + "gps_code": "KU63", + "local_code": "U63" + }, + { + "id": "21269", + "ident": "KU68", + "type": "small_airport", + "name": "North Big Horn County Airport", + "latitude_deg": "44.912021", + "longitude_deg": "-108.443498", + "elevation_ft": "4090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Cowley", + "scheduled_service": "no", + "local_code": "U68" + }, + { + "id": "21270", + "ident": "KU69", + "type": "small_airport", + "name": "Duchesne Municipal Airport", + "latitude_deg": "40.191898345947266", + "longitude_deg": "-110.38099670410156", + "elevation_ft": "5826", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Duchesne", + "scheduled_service": "no", + "gps_code": "KU69", + "local_code": "U69" + }, + { + "id": "21271", + "ident": "KU70", + "type": "small_airport", + "name": "Cascade Airport", + "latitude_deg": "44.4938011169", + "longitude_deg": "-116.01599884", + "elevation_ft": "4742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cascade", + "scheduled_service": "no", + "gps_code": "KU70", + "iata_code": "ICS", + "local_code": "U70" + }, + { + "id": "21272", + "ident": "KU76", + "type": "small_airport", + "name": "Mountain Home Municipal Airport", + "latitude_deg": "43.13130188", + "longitude_deg": "-115.7300034", + "elevation_ft": "3167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Mountain Home", + "scheduled_service": "no", + "gps_code": "KU76", + "local_code": "U76" + }, + { + "id": "21273", + "ident": "KU77", + "type": "small_airport", + "name": "Spanish Fork Municipal Airport/Woodhouse Field", + "latitude_deg": "40.145027", + "longitude_deg": "-111.667694", + "elevation_ft": "4529", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Spanish Fork", + "scheduled_service": "no", + "gps_code": "KSPK", + "local_code": "SPK", + "home_link": "http://u77airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Spanish_Fork-Springville_Airport", + "keywords": "U77, Springville Airport" + }, + { + "id": "21274", + "ident": "KU78", + "type": "small_airport", + "name": "Allen H Tigert Airport", + "latitude_deg": "42.6416015625", + "longitude_deg": "-111.58000183105469", + "elevation_ft": "5839", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Soda Springs", + "scheduled_service": "no", + "gps_code": "KU78", + "local_code": "U78" + }, + { + "id": "21275", + "ident": "KU79", + "type": "small_airport", + "name": "Chamberlain USFS Airport", + "latitude_deg": "45.373253", + "longitude_deg": "-115.198157", + "elevation_ft": "5765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Warren", + "scheduled_service": "no", + "gps_code": "KU79", + "local_code": "U79" + }, + { + "id": "21276", + "ident": "KU81", + "type": "small_airport", + "name": "Cold Meadows US Forest Service Airport", + "latitude_deg": "45.294834", + "longitude_deg": "-114.945573", + "elevation_ft": "7030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Warren", + "scheduled_service": "no", + "gps_code": "KU81", + "local_code": "U81", + "keywords": "USFS" + }, + { + "id": "21277", + "ident": "KU82", + "type": "small_airport", + "name": "Council Municipal Airport", + "latitude_deg": "44.750286", + "longitude_deg": "-116.445145", + "elevation_ft": "2963", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Council", + "scheduled_service": "no", + "local_code": "U82" + }, + { + "id": "21278", + "ident": "KU89", + "type": "small_airport", + "name": "Glenns Ferry Municipal Airport", + "latitude_deg": "42.943776", + "longitude_deg": "-115.330193", + "elevation_ft": "2536", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Glenns Ferry", + "scheduled_service": "no", + "local_code": "U89" + }, + { + "id": "21279", + "ident": "KU96", + "type": "small_airport", + "name": "Cal Black Memorial Airport", + "latitude_deg": "37.435169", + "longitude_deg": "-110.564373", + "elevation_ft": "4388", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Halls Crossing", + "scheduled_service": "no", + "gps_code": "KU96", + "local_code": "U96" + }, + { + "id": "21280", + "ident": "KUAO", + "type": "medium_airport", + "name": "Aurora State Airport", + "latitude_deg": "45.247100830078125", + "longitude_deg": "-122.7699966430664", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Aurora", + "scheduled_service": "no", + "gps_code": "KUAO", + "local_code": "UAO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aurora_State_Airport" + }, + { + "id": "21281", + "ident": "KUBE", + "type": "small_airport", + "name": "Cumberland Municipal Airport", + "latitude_deg": "45.505969", + "longitude_deg": "-91.98012", + "elevation_ft": "1241", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Cumberland", + "scheduled_service": "no", + "gps_code": "KUBE", + "local_code": "UBE" + }, + { + "id": "21282", + "ident": "KUBS", + "type": "small_airport", + "name": "Columbus Lowndes County Airport", + "latitude_deg": "33.4654006958", + "longitude_deg": "-88.3803024292", + "elevation_ft": "188", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "KUBS", + "iata_code": "UBS", + "local_code": "UBS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Columbus-Lowndes_County_Airport" + }, + { + "id": "21283", + "ident": "KUBX", + "type": "small_airport", + "name": "Cuba Municipal Airport", + "latitude_deg": "38.06880187988281", + "longitude_deg": "-91.42890167236328", + "elevation_ft": "1023", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Cuba", + "scheduled_service": "no", + "gps_code": "KUBX", + "local_code": "UBX" + }, + { + "id": "3939", + "ident": "KUCA", + "type": "closed", + "name": "Oneida County Airport", + "latitude_deg": "43.1451", + "longitude_deg": "-75.383904", + "elevation_ft": "742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Utica", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oneida_County_Airport", + "keywords": "KUCA, UCA" + }, + { + "id": "21284", + "ident": "KUCP", + "type": "small_airport", + "name": "New Castle Municipal Airport", + "latitude_deg": "41.02529907", + "longitude_deg": "-80.41339874", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "New Castle", + "scheduled_service": "no", + "gps_code": "KUCP", + "local_code": "UCP", + "home_link": "http://www.newcastlepa.org/Transportation/Airport/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Castle_Municipal_Airport", + "keywords": "2G7" + }, + { + "id": "21285", + "ident": "KUCY", + "type": "small_airport", + "name": "Everett-Stewart Regional Airport", + "latitude_deg": "36.38180161", + "longitude_deg": "-88.98539734", + "elevation_ft": "336", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Union City", + "scheduled_service": "no", + "gps_code": "KUCY", + "iata_code": "UCY", + "local_code": "UCY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Everett%E2%80%93Stewart_Regional_Airport", + "keywords": "Union City Airport" + }, + { + "id": "21286", + "ident": "KUDD", + "type": "small_airport", + "name": "Bermuda Dunes Airport", + "latitude_deg": "33.748401641846", + "longitude_deg": "-116.27500152588", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palm Springs", + "scheduled_service": "no", + "gps_code": "KUDD", + "iata_code": "UDD", + "local_code": "UDD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bermuda_Dunes_Airport" + }, + { + "id": "21287", + "ident": "KUDG", + "type": "small_airport", + "name": "Darlington County Airport", + "latitude_deg": "34.449401", + "longitude_deg": "-79.890098", + "elevation_ft": "192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Darlington", + "scheduled_service": "no", + "gps_code": "KUDG", + "local_code": "UDG", + "home_link": "http://www.darcosc.com/departments/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Darlington_County_Jetport", + "keywords": "04J, Darlington County Jetport" + }, + { + "id": "21288", + "ident": "KUES", + "type": "small_airport", + "name": "Waukesha County Airport", + "latitude_deg": "43.041000366211", + "longitude_deg": "-88.237098693848", + "elevation_ft": "911", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Waukesha", + "scheduled_service": "no", + "gps_code": "KUES", + "iata_code": "UES", + "local_code": "UES", + "home_link": "https://www.waukeshacounty.gov/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Waukesha_County_Airport" + }, + { + "id": "21289", + "ident": "KUGN", + "type": "small_airport", + "name": "Waukegan National Airport", + "latitude_deg": "42.422199249268", + "longitude_deg": "-87.867897033691", + "elevation_ft": "727", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago/Waukegan", + "scheduled_service": "no", + "gps_code": "KUGN", + "iata_code": "UGN", + "local_code": "UGN", + "home_link": "http://waukeganport.com/wkgn_airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Waukegan_National_Airport", + "keywords": "Waukegan Regional Airport, Waukegan Memorial Airport" + }, + { + "id": "21290", + "ident": "KUIL", + "type": "small_airport", + "name": "Quillayute Airport", + "latitude_deg": "47.936599731445", + "longitude_deg": "-124.56300354004", + "elevation_ft": "194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Quillayute", + "scheduled_service": "no", + "gps_code": "KUIL", + "iata_code": "UIL", + "local_code": "UIL", + "home_link": "http://www.wsdot.wa.gov/aviation/AllStateAirports/Quillayute_Quillayute.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quillayute_Airport" + }, + { + "id": "3940", + "ident": "KUIN", + "type": "medium_airport", + "name": "Quincy Regional Baldwin Field", + "latitude_deg": "39.94269943", + "longitude_deg": "-91.19460297", + "elevation_ft": "768", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Quincy", + "scheduled_service": "yes", + "gps_code": "KUIN", + "iata_code": "UIN", + "local_code": "UIN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quincy_Regional_Airport" + }, + { + "id": "41609", + "ident": "KUIZ", + "type": "closed", + "name": "Berz-Macomb Airport", + "latitude_deg": "42.66389846801758", + "longitude_deg": "-82.96540069580078", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "scheduled_service": "no", + "gps_code": "KUIZ", + "iata_code": "UIZ", + "local_code": "UIZ" + }, + { + "id": "21291", + "ident": "KUKF", + "type": "small_airport", + "name": "Wilkes County Airport", + "latitude_deg": "36.2228012085", + "longitude_deg": "-81.09829711910001", + "elevation_ft": "1301", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "North Wilkesboro", + "scheduled_service": "no", + "gps_code": "KUKF", + "iata_code": "IKB", + "local_code": "UKF", + "home_link": "http://wilkescounty.net/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wilkes_County_Airport" + }, + { + "id": "3941", + "ident": "KUKI", + "type": "medium_airport", + "name": "Ukiah Municipal Airport", + "latitude_deg": "39.125999", + "longitude_deg": "-123.200996", + "elevation_ft": "614", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ukiah", + "scheduled_service": "no", + "gps_code": "KUKI", + "iata_code": "UKI", + "local_code": "UKI", + "home_link": "http://www.cityofukiah.com/ukiah-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ukiah_Municipal_Airport" + }, + { + "id": "21292", + "ident": "KUKL", + "type": "small_airport", + "name": "Coffey County Airport", + "latitude_deg": "38.30250168", + "longitude_deg": "-95.72499847", + "elevation_ft": "1174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "KUKL", + "local_code": "UKL" + }, + { + "id": "21293", + "ident": "KUKT", + "type": "small_airport", + "name": "Quakertown Airport", + "latitude_deg": "40.4352", + "longitude_deg": "-75.381897", + "elevation_ft": "526", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Quakertown", + "scheduled_service": "no", + "gps_code": "KUKT", + "iata_code": "UKT", + "local_code": "UKT", + "home_link": "http://www.bcaanet.org/quakertown.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quakertown_Airport" + }, + { + "id": "21294", + "ident": "KULM", + "type": "small_airport", + "name": "New Ulm Municipal Airport", + "latitude_deg": "44.319599151611", + "longitude_deg": "-94.502296447754", + "elevation_ft": "1011", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "New Ulm", + "scheduled_service": "no", + "gps_code": "KULM", + "iata_code": "ULM", + "local_code": "ULM", + "home_link": "http://www.ci.new-ulm.mn.us/index.asp?Type=B_BASIC&SEC={840F6280-A727-429E-B482-086226133C0E}", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Ulm_Municipal_Airport" + }, + { + "id": "21295", + "ident": "KULS", + "type": "small_airport", + "name": "Ulysses Airport", + "latitude_deg": "37.60400009", + "longitude_deg": "-101.3740005", + "elevation_ft": "3071", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Ulysses", + "scheduled_service": "no", + "gps_code": "KULS", + "local_code": "ULS" + }, + { + "id": "21296", + "ident": "KUMP", + "type": "small_airport", + "name": "Indianapolis Metropolitan Airport", + "latitude_deg": "39.93519974", + "longitude_deg": "-86.04499817", + "elevation_ft": "811", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "gps_code": "KUMP", + "local_code": "UMP" + }, + { + "id": "21297", + "ident": "KUNI", + "type": "small_airport", + "name": "Ohio University Snyder Field", + "latitude_deg": "39.2109985352", + "longitude_deg": "-82.23139953610001", + "elevation_ft": "766", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Athens/Albany", + "scheduled_service": "no", + "gps_code": "KUNI", + "iata_code": "ATO", + "local_code": "UNI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gordon_K._Bush_Airport", + "keywords": "Gordon K. Bush Airport" + }, + { + "id": "21298", + "ident": "KUNO", + "type": "small_airport", + "name": "West Plains Regional Airport", + "latitude_deg": "36.878399", + "longitude_deg": "-91.902702", + "elevation_ft": "1228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Pomona", + "scheduled_service": "no", + "gps_code": "KUNO", + "local_code": "UNO" + }, + { + "id": "21299", + "ident": "KUNU", + "type": "small_airport", + "name": "Dodge County Airport", + "latitude_deg": "43.42660141", + "longitude_deg": "-88.70320129", + "elevation_ft": "934", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Juneau", + "scheduled_service": "no", + "gps_code": "KUNU", + "iata_code": "UNU", + "local_code": "UNU", + "home_link": "http://www.co.dodge.wi.us/index.aspx?page=44", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dodge_County_Airport" + }, + { + "id": "21300", + "ident": "KUNV", + "type": "medium_airport", + "name": "University Park Airport", + "latitude_deg": "40.849374", + "longitude_deg": "-77.84852", + "elevation_ft": "1239", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "State College", + "scheduled_service": "yes", + "gps_code": "KUNV", + "iata_code": "SCE", + "local_code": "UNV", + "home_link": "http://universityparkairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/University_Park_Airport" + }, + { + "id": "21301", + "ident": "KUOS", + "type": "small_airport", + "name": "Franklin County Airport", + "latitude_deg": "35.205101013184", + "longitude_deg": "-85.898101806641", + "elevation_ft": "1953", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Sewanee", + "scheduled_service": "no", + "gps_code": "KUOS", + "iata_code": "UOS", + "local_code": "UOS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Franklin_County_Airport_(Tennessee)" + }, + { + "id": "3942", + "ident": "KUOX", + "type": "medium_airport", + "name": "University Oxford Airport", + "latitude_deg": "34.384300231934", + "longitude_deg": "-89.536796569824", + "elevation_ft": "452", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Oxford", + "scheduled_service": "no", + "gps_code": "KUOX", + "iata_code": "UOX", + "local_code": "UOX", + "home_link": "http://airport.olemiss.edu/", + "wikipedia_link": "https://en.wikipedia.org/wiki/University-Oxford_Airport" + }, + { + "id": "313569", + "ident": "KUP", + "type": "small_airport", + "name": "Kupiano Airport", + "latitude_deg": "-10.0736", + "longitude_deg": "148.218", + "elevation_ft": "90", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Kupiano", + "scheduled_service": "no", + "iata_code": "KUP", + "local_code": "KPN" + }, + { + "id": "21302", + "ident": "KUSE", + "type": "small_airport", + "name": "Fulton County Airport", + "latitude_deg": "41.61009979248047", + "longitude_deg": "-84.127197265625", + "elevation_ft": "779", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wauseon", + "scheduled_service": "no", + "gps_code": "KUSE", + "local_code": "USE" + }, + { + "id": "21303", + "ident": "KUTA", + "type": "small_airport", + "name": "Tunica Municipal Airport", + "latitude_deg": "34.680999755859", + "longitude_deg": "-90.346702575684", + "elevation_ft": "194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Tunica", + "scheduled_service": "no", + "gps_code": "KUTA", + "iata_code": "UTM", + "local_code": "UTA", + "home_link": "http://tunicaairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tunica_Municipal_Airport" + }, + { + "id": "21304", + "ident": "KUTS", + "type": "medium_airport", + "name": "Huntsville Regional Airport", + "latitude_deg": "30.7469005585", + "longitude_deg": "-95.5871963501", + "elevation_ft": "363", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Huntsville", + "scheduled_service": "no", + "gps_code": "KUTS", + "iata_code": "HTV", + "local_code": "UTS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Huntsville_Regional_Airport", + "keywords": "T39, Bruce Brothers Huntsville Regional Airport, Huntsville Municipal Airport" + }, + { + "id": "21305", + "ident": "KUUU", + "type": "small_airport", + "name": "Newport State Airport", + "latitude_deg": "41.532398", + "longitude_deg": "-71.281502", + "elevation_ft": "172", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "KUUU", + "iata_code": "NPT", + "local_code": "UUU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Newport_State_Airport_(Rhode_Island)", + "keywords": "2B4" + }, + { + "id": "21306", + "ident": "KUUV", + "type": "small_airport", + "name": "Sullivan Regional Airport", + "latitude_deg": "38.233501", + "longitude_deg": "-91.164299", + "elevation_ft": "933", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Sullivan", + "scheduled_service": "no", + "gps_code": "KUUV", + "local_code": "UUV" + }, + { + "id": "21307", + "ident": "KUVA", + "type": "small_airport", + "name": "Garner Field", + "latitude_deg": "29.2112998962", + "longitude_deg": "-99.743598938", + "elevation_ft": "942", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Uvalde", + "scheduled_service": "no", + "gps_code": "KUVA", + "iata_code": "UVA", + "local_code": "UVA", + "home_link": "http://uvaldeflightcenter.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Garner_Field" + }, + { + "id": "21308", + "ident": "KUWL", + "type": "small_airport", + "name": "New Castle-Henry County Municipal Airport", + "latitude_deg": "39.8759", + "longitude_deg": "-85.3265", + "elevation_ft": "1088", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "New Castle", + "scheduled_service": "no", + "gps_code": "KUWL", + "local_code": "UWL", + "home_link": "https://www.cityofnewcastle.net/department/?structureid=66", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Castle-Henry_County_Municipal_Airport", + "keywords": "Marlatt Field" + }, + { + "id": "302386", + "ident": "KUX", + "type": "small_airport", + "name": "Kuyol Airport", + "latitude_deg": "-5.372361111110001", + "longitude_deg": "141.623888889", + "elevation_ft": "3290", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "scheduled_service": "no", + "gps_code": "AYUY", + "iata_code": "KUX", + "local_code": "KYL" + }, + { + "id": "25332", + "ident": "KUXL", + "type": "small_airport", + "name": "Southland Field", + "latitude_deg": "30.13139915", + "longitude_deg": "-93.37609863", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Sulphur", + "scheduled_service": "no", + "gps_code": "KUXL", + "local_code": "UXL" + }, + { + "id": "21309", + "ident": "KUYF", + "type": "small_airport", + "name": "Madison County Airport", + "latitude_deg": "39.93270111", + "longitude_deg": "-83.46199799", + "elevation_ft": "1082", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "London", + "scheduled_service": "no", + "gps_code": "KUYF", + "local_code": "UYF" + }, + { + "id": "21310", + "ident": "KUZA", + "type": "small_airport", + "name": "Rock Hill - York County Airport", + "latitude_deg": "34.9878006", + "longitude_deg": "-81.05719757", + "elevation_ft": "666", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Rock Hill", + "scheduled_service": "no", + "gps_code": "KUZA", + "iata_code": "RKH", + "local_code": "UZA", + "home_link": "http://www.cityofrockhill.com/departments/airport/more/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rock_Hill/York_County_Airport", + "keywords": "29J, Bryant Field" + }, + { + "id": "3943", + "ident": "KVAD", + "type": "medium_airport", + "name": "Moody Air Force Base", + "latitude_deg": "30.9678001404", + "longitude_deg": "-83.1930007935", + "elevation_ft": "233", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Valdosta", + "scheduled_service": "no", + "gps_code": "KVAD", + "iata_code": "VAD", + "local_code": "VAD", + "home_link": "http://www.moody.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moody_Air_Force_Base" + }, + { + "id": "21311", + "ident": "KVAY", + "type": "small_airport", + "name": "South Jersey Regional Airport", + "latitude_deg": "39.942902", + "longitude_deg": "-74.845703", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Lumberton", + "scheduled_service": "no", + "gps_code": "KVAY", + "iata_code": "LLY", + "local_code": "VAY", + "home_link": "http://southjerseyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/South_Jersey_Regional_Airport", + "keywords": "Burlington County Airport, Mount Holly" + }, + { + "id": "3944", + "ident": "KVBG", + "type": "medium_airport", + "name": "Vandenberg Air Force Base", + "latitude_deg": "34.737301", + "longitude_deg": "-120.584", + "elevation_ft": "369", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lompoc", + "scheduled_service": "no", + "gps_code": "KVBG", + "iata_code": "VBG", + "local_code": "VBG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vandenberg_Air_Force_Base" + }, + { + "id": "21312", + "ident": "KVBT", + "type": "small_airport", + "name": "Bentonville Municipal-Louise M Thaden Field", + "latitude_deg": "36.345699", + "longitude_deg": "-94.219299", + "elevation_ft": "1296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Bentonville", + "scheduled_service": "no", + "gps_code": "KVBT", + "local_code": "VBT", + "home_link": "https://www.bentonvillear.com/385/Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bentonville_Municipal_Airport", + "keywords": "H00" + }, + { + "id": "21314", + "ident": "KVCB", + "type": "small_airport", + "name": "Nut Tree Airport", + "latitude_deg": "38.376800537109375", + "longitude_deg": "-121.96199798583984", + "elevation_ft": "117", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Vacaville", + "scheduled_service": "no", + "gps_code": "KVCB", + "local_code": "VCB" + }, + { + "id": "3945", + "ident": "KVCT", + "type": "medium_airport", + "name": "Victoria Regional Airport", + "latitude_deg": "28.85260009765625", + "longitude_deg": "-96.91850280761719", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Victoria", + "scheduled_service": "yes", + "gps_code": "KVCT", + "iata_code": "VCT", + "local_code": "VCT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Victoria_Regional_Airport" + }, + { + "id": "21315", + "ident": "KVCV", + "type": "small_airport", + "name": "Southern California Logistics Airport", + "latitude_deg": "34.597499847399995", + "longitude_deg": "-117.383003235", + "elevation_ft": "2885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Victorville", + "scheduled_service": "no", + "gps_code": "KVCV", + "iata_code": "VCV", + "local_code": "VCV", + "home_link": "http://www.logisticsairport.com/page.aspx?pgid=3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Southern_California_Logistics_Airport", + "keywords": "George AFB, Victorville Airport" + }, + { + "id": "21316", + "ident": "KVDF", + "type": "small_airport", + "name": "Tampa Executive Airport", + "latitude_deg": "28.013999939", + "longitude_deg": "-82.3452987671", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tampa", + "scheduled_service": "no", + "gps_code": "KVDF", + "local_code": "VDF", + "home_link": "http://www.tampaairport.com/tampa-executive-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tampa_Executive_Airport", + "keywords": "X16, Vandenberg Airport" + }, + { + "id": "21317", + "ident": "KVDI", + "type": "small_airport", + "name": "Vidalia Regional Airport", + "latitude_deg": "32.192699432373", + "longitude_deg": "-82.371200561523", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Vidalia", + "scheduled_service": "no", + "gps_code": "KVDI", + "iata_code": "VDI", + "local_code": "VDI", + "home_link": "http://www.vidaliaga.com/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vidalia_Regional_Airport", + "keywords": "Vidalia-Lyons AAF, Turner AAF AuxAF No. 8" + }, + { + "id": "313830", + "ident": "KVE", + "type": "small_airport", + "name": "Kitava Airport", + "latitude_deg": "-8.6285", + "longitude_deg": "151.327", + "elevation_ft": "194", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Kitava Island", + "scheduled_service": "no", + "iata_code": "KVE", + "local_code": "KTV" + }, + { + "id": "21318", + "ident": "KVEL", + "type": "medium_airport", + "name": "Vernal Regional Airport", + "latitude_deg": "40.4408989", + "longitude_deg": "-109.5100021", + "elevation_ft": "5278", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Vernal", + "scheduled_service": "no", + "gps_code": "KVEL", + "iata_code": "VEL", + "local_code": "VEL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vernal_Airport" + }, + { + "id": "21319", + "ident": "KVER", + "type": "small_airport", + "name": "Jesse Viertel Memorial Airport", + "latitude_deg": "38.94670104980469", + "longitude_deg": "-92.68270111083984", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Boonville", + "scheduled_service": "no", + "gps_code": "KVER", + "local_code": "VER" + }, + { + "id": "21320", + "ident": "KVES", + "type": "small_airport", + "name": "Darke County Airport", + "latitude_deg": "40.20439910888672", + "longitude_deg": "-84.53189849853516", + "elevation_ft": "1007", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Versailles", + "scheduled_service": "no", + "gps_code": "KVES", + "local_code": "VES" + }, + { + "id": "20008", + "ident": "KVGC", + "type": "small_airport", + "name": "Hamilton Municipal Airport", + "latitude_deg": "42.84379959", + "longitude_deg": "-75.56140137", + "elevation_ft": "1137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "KVGC", + "local_code": "VGC", + "keywords": "Formerly H30" + }, + { + "id": "21321", + "ident": "KVGT", + "type": "medium_airport", + "name": "North Las Vegas Metropolitan International Airport", + "latitude_deg": "36.210701", + "longitude_deg": "-115.194", + "elevation_ft": "2205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "gps_code": "KVGT", + "iata_code": "VGT", + "local_code": "VGT", + "home_link": "http://www.vgt.aero/index.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/North_Las_Vegas_Airport", + "keywords": "Northtown Airport, Las Vegas North Air Terminal" + }, + { + "id": "21322", + "ident": "KVHN", + "type": "small_airport", + "name": "Culberson County Airport", + "latitude_deg": "31.057800292969", + "longitude_deg": "-104.78399658203", + "elevation_ft": "3957", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Van Horn", + "scheduled_service": "no", + "gps_code": "KVHN", + "iata_code": "VHN", + "local_code": "VHN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Culberson_County_Airport" + }, + { + "id": "21323", + "ident": "KVIH", + "type": "small_airport", + "name": "Rolla National Airport", + "latitude_deg": "38.1273994446", + "longitude_deg": "-91.7695007324", + "elevation_ft": "1148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Rolla/Vichy", + "scheduled_service": "no", + "gps_code": "KVIH", + "iata_code": "VIH", + "local_code": "VIH", + "home_link": "http://www.rollacity.org/airport/airport.shtml", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rolla_National_Airport" + }, + { + "id": "21324", + "ident": "KVIQ", + "type": "small_airport", + "name": "Neillsville Municipal Airport", + "latitude_deg": "44.558102", + "longitude_deg": "-90.512199", + "elevation_ft": "1237", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Neillsville", + "scheduled_service": "no", + "gps_code": "KVIQ", + "local_code": "VIQ" + }, + { + "id": "21325", + "ident": "KVIS", + "type": "medium_airport", + "name": "Visalia Municipal Airport", + "latitude_deg": "36.318699", + "longitude_deg": "-119.392998", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Visalia", + "scheduled_service": "no", + "gps_code": "KVIS", + "iata_code": "VIS", + "local_code": "VIS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Visalia_Municipal_Airport" + }, + { + "id": "21326", + "ident": "KVJI", + "type": "small_airport", + "name": "Virginia Highlands Airport", + "latitude_deg": "36.687099", + "longitude_deg": "-82.033302", + "elevation_ft": "2087", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Abingdon", + "scheduled_service": "no", + "gps_code": "KVJI", + "iata_code": "VJI", + "local_code": "VJI", + "home_link": "http://www.vahighlandsairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Virginia_Highlands_Airport" + }, + { + "id": "21327", + "ident": "KVKS", + "type": "small_airport", + "name": "Vicksburg Municipal Airport", + "latitude_deg": "32.23929977417", + "longitude_deg": "-90.928398132324", + "elevation_ft": "106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Vicksburg", + "scheduled_service": "no", + "gps_code": "KVKS", + "iata_code": "VKS", + "local_code": "VKS", + "home_link": "http://www.vicksburg.org/departments/airport" + }, + { + "id": "21328", + "ident": "KVLA", + "type": "small_airport", + "name": "Vandalia Municipal Airport", + "latitude_deg": "38.991500854492", + "longitude_deg": "-89.166198730469", + "elevation_ft": "537", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Vandalia", + "scheduled_service": "no", + "gps_code": "KVLA", + "iata_code": "VLA", + "local_code": "VLA" + }, + { + "id": "3946", + "ident": "KVLD", + "type": "medium_airport", + "name": "Valdosta Regional Airport", + "latitude_deg": "30.782499313354492", + "longitude_deg": "-83.27670288085938", + "elevation_ft": "203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Valdosta", + "scheduled_service": "yes", + "gps_code": "KVLD", + "iata_code": "VLD", + "local_code": "VLD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valdosta_Regional_Airport" + }, + { + "id": "21329", + "ident": "KVLL", + "type": "small_airport", + "name": "Oakland Troy Airport", + "latitude_deg": "42.54290009", + "longitude_deg": "-83.17790222", + "elevation_ft": "727", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "KVLL", + "local_code": "VLL" + }, + { + "id": "21330", + "ident": "KVMR", + "type": "small_airport", + "name": "Harold Davidson Field", + "latitude_deg": "42.76530075", + "longitude_deg": "-96.93430328", + "elevation_ft": "1146", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Vermillion", + "scheduled_service": "no", + "gps_code": "KVMR", + "local_code": "VMR" + }, + { + "id": "21331", + "ident": "KVNC", + "type": "small_airport", + "name": "Venice Municipal Airport", + "latitude_deg": "27.071599960327", + "longitude_deg": "-82.440299987793", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Venice", + "scheduled_service": "no", + "gps_code": "KVNC", + "iata_code": "VNC", + "local_code": "VNC", + "home_link": "http://www.venicegov.com/Municipal_links/Airport/airport.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Venice_Municipal_Airport", + "keywords": "Venice AAF" + }, + { + "id": "21332", + "ident": "KVNW", + "type": "small_airport", + "name": "Van Wert County Airport", + "latitude_deg": "40.86470031738281", + "longitude_deg": "-84.6093978881836", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Van Wert", + "scheduled_service": "no", + "gps_code": "KVNW", + "local_code": "VNW" + }, + { + "id": "21333", + "ident": "KVNY", + "type": "medium_airport", + "name": "Van Nuys Airport", + "latitude_deg": "34.209800720215", + "longitude_deg": "-118.48999786377", + "elevation_ft": "802", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Van Nuys", + "scheduled_service": "no", + "gps_code": "KVNY", + "iata_code": "VNY", + "local_code": "VNY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Van_Nuys_Airport" + }, + { + "id": "3947", + "ident": "KVOK", + "type": "medium_airport", + "name": "Volk Field", + "latitude_deg": "43.938999176025", + "longitude_deg": "-90.253402709961", + "elevation_ft": "912", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Camp Douglas", + "scheduled_service": "no", + "gps_code": "KVOK", + "iata_code": "VOK", + "local_code": "VOK", + "home_link": "http://www.volkfield.ang.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Volk_Field_Air_National_Guard_Base", + "keywords": "Camp Williams," + }, + { + "id": "21334", + "ident": "KVPC", + "type": "small_airport", + "name": "Cartersville Airport", + "latitude_deg": "34.12310028076172", + "longitude_deg": "-84.84870147705078", + "elevation_ft": "759", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Cartersville", + "scheduled_service": "no", + "gps_code": "KVPC", + "local_code": "VPC" + }, + { + "id": "3948", + "ident": "KVPS", + "type": "medium_airport", + "name": "Destin-Fort Walton Beach Airport", + "latitude_deg": "30.4832", + "longitude_deg": "-86.525398", + "elevation_ft": "87", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Valparaiso", + "scheduled_service": "yes", + "gps_code": "KVPS", + "iata_code": "VPS", + "local_code": "VPS", + "home_link": "http://www.flyvps.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Destin%E2%80%93Fort_Walton_Beach_Airport", + "keywords": "Eglin AFB" + }, + { + "id": "3949", + "ident": "KVPZ", + "type": "medium_airport", + "name": "Porter County Municipal Airport", + "latitude_deg": "41.45399857", + "longitude_deg": "-87.00710297", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Valparaiso", + "scheduled_service": "no", + "gps_code": "KVPZ", + "iata_code": "VPZ", + "local_code": "VPZ", + "home_link": "http://www.vpz.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Porter_County_Municipal_Airport" + }, + { + "id": "21335", + "ident": "KVQQ", + "type": "small_airport", + "name": "Cecil Airport", + "latitude_deg": "30.2187004089", + "longitude_deg": "-81.876701355", + "elevation_ft": "81", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "KVQQ", + "iata_code": "VQQ", + "local_code": "VQQ", + "home_link": "http://www.jaxjetport.aero/index.php/cecil-airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cecil_Field", + "keywords": "NZC, KNCZ, Cecil Field NAS" + }, + { + "id": "3950", + "ident": "KVRB", + "type": "medium_airport", + "name": "Vero Beach Regional Airport", + "latitude_deg": "27.6556", + "longitude_deg": "-80.417901", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Vero Beach", + "scheduled_service": "no", + "gps_code": "KVRB", + "iata_code": "VRB", + "local_code": "VRB", + "home_link": "http://verobeachairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vero_Beach_Municipal_Airport", + "keywords": "Vero Beach Municipal" + }, + { + "id": "21336", + "ident": "KVSF", + "type": "small_airport", + "name": "Hartness State Airport", + "latitude_deg": "43.343601", + "longitude_deg": "-72.517303", + "elevation_ft": "577", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "North Springfield", + "scheduled_service": "no", + "gps_code": "KVSF", + "iata_code": "VSF", + "local_code": "VSF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hartness_State_Airport", + "keywords": "Springfield" + }, + { + "id": "21337", + "ident": "KVTA", + "type": "small_airport", + "name": "Newark Heath Airport", + "latitude_deg": "40.024700164799995", + "longitude_deg": "-82.46179962160001", + "elevation_ft": "884", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Newark", + "scheduled_service": "no", + "gps_code": "KVTA", + "local_code": "VTA", + "home_link": "http://www.newarkheathairport.com/default.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Newark-Heath_Airport", + "keywords": "2I8" + }, + { + "id": "21338", + "ident": "KVTI", + "type": "small_airport", + "name": "Vinton Veterans Memorial Airpark", + "latitude_deg": "42.21860123", + "longitude_deg": "-92.02590179", + "elevation_ft": "842", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Vinton", + "scheduled_service": "no", + "gps_code": "KVTI", + "local_code": "VTI" + }, + { + "id": "21339", + "ident": "KVTN", + "type": "medium_airport", + "name": "Miller Field", + "latitude_deg": "42.85779953", + "longitude_deg": "-100.5479965", + "elevation_ft": "2596", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Valentine", + "scheduled_service": "no", + "gps_code": "KVTN", + "iata_code": "VTN", + "local_code": "VTN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miller_Field_(airport)" + }, + { + "id": "21340", + "ident": "KVUJ", + "type": "small_airport", + "name": "Stanly County Airport", + "latitude_deg": "35.416698455811", + "longitude_deg": "-80.150802612305", + "elevation_ft": "609", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Albemarle", + "scheduled_service": "no", + "gps_code": "KVUJ", + "local_code": "VUJ", + "home_link": "http://www.stanlycountyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stanly_County_Airport", + "keywords": "6A6" + }, + { + "id": "21341", + "ident": "KVUO", + "type": "small_airport", + "name": "Pearson Field", + "latitude_deg": "45.620499", + "longitude_deg": "-122.655998", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Vancouver", + "scheduled_service": "no", + "gps_code": "KVUO", + "local_code": "VUO", + "keywords": "60S" + }, + { + "id": "21342", + "ident": "KVVS", + "type": "small_airport", + "name": "Joseph A. Hardy Connellsville Airport", + "latitude_deg": "39.95920181", + "longitude_deg": "-79.65709686", + "elevation_ft": "1267", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Connellsville", + "scheduled_service": "no", + "gps_code": "KVVS", + "local_code": "VVS" + }, + { + "id": "21343", + "ident": "KVVV", + "type": "small_airport", + "name": "Ortonville Municipal Martinson Field", + "latitude_deg": "45.30569839", + "longitude_deg": "-96.42440033", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Ortonville", + "scheduled_service": "no", + "gps_code": "KVVV", + "local_code": "VVV" + }, + { + "id": "25562", + "ident": "KVWU", + "type": "small_airport", + "name": "Waskish Municipal Airport", + "latitude_deg": "48.15409851074219", + "longitude_deg": "-94.51689910888672", + "elevation_ft": "1181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Waskish", + "scheduled_service": "no", + "gps_code": "KVWU", + "local_code": "VWU" + }, + { + "id": "21344", + "ident": "KVYS", + "type": "small_airport", + "name": "Illinois Valley Regional Airport-Walter A Duncan Field", + "latitude_deg": "41.351898", + "longitude_deg": "-89.153099", + "elevation_ft": "654", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Peru", + "scheduled_service": "no", + "gps_code": "KVYS", + "iata_code": "VYS", + "local_code": "VYS", + "home_link": "http://www.peru.il.us/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Illinois_Valley_Regional_Airport" + }, + { + "id": "300348", + "ident": "KW-0001", + "type": "heliport", + "name": "Police Officers Club Heliport", + "latitude_deg": "29.198906", + "longitude_deg": "48.116477", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-MU", + "municipality": "Abu Hassaniya", + "scheduled_service": "no" + }, + { + "id": "340560", + "ident": "KW-0002", + "type": "heliport", + "name": "KOC Heliport", + "latitude_deg": "29.059166", + "longitude_deg": "48.054752", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-AH", + "municipality": "Al Ahmadi", + "scheduled_service": "no" + }, + { + "id": "340561", + "ident": "KW-0003", + "type": "heliport", + "name": "New Ahmadi Hospital Heliport", + "latitude_deg": "29.097046", + "longitude_deg": "48.076767", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-AH", + "municipality": "Al Ahmadi", + "scheduled_service": "no" + }, + { + "id": "340562", + "ident": "KW-0004", + "type": "heliport", + "name": "Old Ahmadi Hospital Heliport 1", + "latitude_deg": "29.090992", + "longitude_deg": "48.054369", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-AH", + "municipality": "Al Ahmadi", + "scheduled_service": "no" + }, + { + "id": "340563", + "ident": "KW-0005", + "type": "heliport", + "name": "Old Ahmadi Hospital Heliport 2", + "latitude_deg": "29.090414", + "longitude_deg": "48.053885", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-AH", + "municipality": "Al Ahmadi", + "scheduled_service": "no" + }, + { + "id": "340564", + "ident": "KW-0006", + "type": "heliport", + "name": "Marina Waves Heliport", + "latitude_deg": "29.345723", + "longitude_deg": "48.068869", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-HA", + "municipality": "Salmiya", + "scheduled_service": "no" + }, + { + "id": "340565", + "ident": "KW-0007", + "type": "heliport", + "name": "Al Adan Heliport", + "latitude_deg": "29.136457", + "longitude_deg": "48.090397", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-AH", + "municipality": "Hadiya", + "scheduled_service": "no" + }, + { + "id": "341669", + "ident": "KW-0008", + "type": "heliport", + "name": "Qaruh Island Helipad", + "latitude_deg": "28.817665", + "longitude_deg": "48.776211", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-AH", + "municipality": "Qaruh Island", + "scheduled_service": "no" + }, + { + "id": "341670", + "ident": "KW-0009", + "type": "heliport", + "name": "Umm al Maradim Island Helipad", + "latitude_deg": "28.6791", + "longitude_deg": "48.65144", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-AH", + "municipality": "Umm al Maradim Island", + "scheduled_service": "no" + }, + { + "id": "341671", + "ident": "KW-0010", + "type": "heliport", + "name": "Kubbar Island Helipad", + "latitude_deg": "29.0709", + "longitude_deg": "48.49282", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-AH", + "municipality": "Kubbar Island", + "scheduled_service": "no" + }, + { + "id": "341672", + "ident": "KW-0011", + "type": "heliport", + "name": "Ouha Island Helipad", + "latitude_deg": "29.3777", + "longitude_deg": "48.44129", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-KU", + "municipality": "Ouha Island", + "scheduled_service": "no" + }, + { + "id": "341673", + "ident": "KW-0012", + "type": "heliport", + "name": "Failaka Heliport", + "latitude_deg": "29.44298", + "longitude_deg": "48.2856", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-KU", + "municipality": "Az Zawr", + "scheduled_service": "no" + }, + { + "id": "341674", + "ident": "KW-0013", + "type": "heliport", + "name": "Failaka North Helipad", + "latitude_deg": "29.45908", + "longitude_deg": "48.30088", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-KU", + "municipality": "Az Zawr", + "scheduled_service": "no" + }, + { + "id": "341675", + "ident": "KW-0014", + "type": "heliport", + "name": "Abdullah bin Umm Maktum Mosque Helipad", + "latitude_deg": "29.43351", + "longitude_deg": "48.26882", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-KU", + "municipality": "Az Zawr", + "scheduled_service": "no" + }, + { + "id": "348369", + "ident": "KW-0015", + "type": "heliport", + "name": "Al-Nuwaiseeb Heliport", + "latitude_deg": "28.56439", + "longitude_deg": "48.39006", + "elevation_ft": "43", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-AH", + "municipality": "Al-Nuwaiseeb", + "scheduled_service": "no" + }, + { + "id": "348370", + "ident": "KW-0016", + "type": "small_airport", + "name": "Skydive Kuwait Airport", + "latitude_deg": "28.60425", + "longitude_deg": "48.3093", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-AH", + "municipality": "Al-Khiran", + "scheduled_service": "no" + }, + { + "id": "351577", + "ident": "KW-0017", + "type": "heliport", + "name": "Sabiya Thermal Power Plant Heliport (Central)", + "latitude_deg": "29.5685", + "longitude_deg": "48.16807", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-JA", + "municipality": "Shumaymah", + "scheduled_service": "no" + }, + { + "id": "354661", + "ident": "KW-0018", + "type": "heliport", + "name": "Sabiya Thermal Power Plant Heliport (Entrance)", + "latitude_deg": "29.573784", + "longitude_deg": "48.170929", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-JA", + "municipality": "Shumaymah", + "scheduled_service": "no" + }, + { + "id": "354662", + "ident": "KW-0019", + "type": "heliport", + "name": "Sabiya Thermal Power Plant Heliport (West)", + "latitude_deg": "29.567392", + "longitude_deg": "48.156949", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-JA", + "municipality": "Shumaymah", + "scheduled_service": "no" + }, + { + "id": "21345", + "ident": "KW01", + "type": "small_airport", + "name": "Tonasket Municipal Airport", + "latitude_deg": "48.7248683333", + "longitude_deg": "-119.465634722", + "elevation_ft": "1311", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tonasket", + "scheduled_service": "no", + "gps_code": "KW01", + "local_code": "W01" + }, + { + "id": "21346", + "ident": "KW03", + "type": "small_airport", + "name": "Wilson Industrial Air Center Airport", + "latitude_deg": "35.77040100097656", + "longitude_deg": "-77.96980285644531", + "elevation_ft": "161", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Wilson", + "scheduled_service": "no", + "gps_code": "KW03", + "local_code": "W03" + }, + { + "id": "21347", + "ident": "KW05", + "type": "small_airport", + "name": "Gettysburg Regional Airport", + "latitude_deg": "39.841222", + "longitude_deg": "-77.274699", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Gettysburg", + "scheduled_service": "no", + "gps_code": "KW05", + "iata_code": "GTY", + "local_code": "W05", + "home_link": "http://flygra.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gettysburg_Regional_Airport" + }, + { + "id": "21348", + "ident": "KW22", + "type": "small_airport", + "name": "Upshur County Regional Airport", + "latitude_deg": "39.00049973", + "longitude_deg": "-80.2736969", + "elevation_ft": "1635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Buckhannon", + "scheduled_service": "no", + "gps_code": "KW22", + "local_code": "W22" + }, + { + "id": "21349", + "ident": "KW28", + "type": "small_airport", + "name": "Sequim Valley Airport", + "latitude_deg": "48.098098754883", + "longitude_deg": "-123.18699645996", + "elevation_ft": "144", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Sequim", + "scheduled_service": "no", + "gps_code": "W28", + "iata_code": "SQV", + "local_code": "W28", + "home_link": "http://www.sequimvalleyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sequim_Valley_Airport" + }, + { + "id": "21350", + "ident": "KW31", + "type": "small_airport", + "name": "Lunenburg County Airport", + "latitude_deg": "36.960201263427734", + "longitude_deg": "-78.18499755859375", + "elevation_ft": "526", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Kenbridge", + "scheduled_service": "no", + "gps_code": "KW31", + "local_code": "W31" + }, + { + "id": "21351", + "ident": "KW32", + "type": "small_airport", + "name": "Washington Executive Hyde Field", + "latitude_deg": "38.74829864501953", + "longitude_deg": "-76.93280029296875", + "elevation_ft": "249", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "KW32", + "local_code": "W32", + "wikipedia_link": "https://en.wikipedia.org/wiki/Washington_Executive_Airport", + "keywords": "DC3, FRZ, ADIZ" + }, + { + "id": "21352", + "ident": "KW35", + "type": "small_airport", + "name": "Potomac Airpark", + "latitude_deg": "39.69260025024414", + "longitude_deg": "-78.16609954833984", + "elevation_ft": "412", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Berkeley Springs", + "scheduled_service": "no", + "gps_code": "KW35", + "local_code": "W35" + }, + { + "id": "21353", + "ident": "KW38", + "type": "small_airport", + "name": "Williamsburg Whitley County Airport", + "latitude_deg": "36.7949981689", + "longitude_deg": "-84.1995010376", + "elevation_ft": "1178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Williamsburg", + "scheduled_service": "no", + "gps_code": "KBYL", + "local_code": "BYL" + }, + { + "id": "21354", + "ident": "KW40", + "type": "small_airport", + "name": "Mount Olive Municipal Airport", + "latitude_deg": "35.22219849", + "longitude_deg": "-78.03780365", + "elevation_ft": "168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Mount Olive", + "scheduled_service": "no", + "gps_code": "KW40", + "local_code": "W40" + }, + { + "id": "21355", + "ident": "KW41", + "type": "small_airport", + "name": "Crisfield-Somerset County Airport", + "latitude_deg": "38.018277", + "longitude_deg": "-75.825834", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Crisfield", + "scheduled_service": "no", + "gps_code": "KW41", + "local_code": "W41", + "keywords": "Crisfield Municipal" + }, + { + "id": "21356", + "ident": "KW43", + "type": "small_airport", + "name": "Hulett Municipal Airport", + "latitude_deg": "44.662899017333984", + "longitude_deg": "-104.56800079345703", + "elevation_ft": "4264", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Hulett", + "scheduled_service": "no", + "gps_code": "KW43", + "local_code": "W43" + }, + { + "id": "21357", + "ident": "KW45", + "type": "small_airport", + "name": "Luray Caverns Airport", + "latitude_deg": "38.667099", + "longitude_deg": "-78.500603", + "elevation_ft": "902", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Luray", + "scheduled_service": "no", + "gps_code": "KLUA", + "local_code": "LUA", + "home_link": "http://www.lurayairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Luray_Caverns_Airport", + "keywords": "W45" + }, + { + "id": "21358", + "ident": "KW63", + "type": "medium_airport", + "name": "Lake Country Regional Airport", + "latitude_deg": "36.5957984924", + "longitude_deg": "-78.56009674070002", + "elevation_ft": "421", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Clarksville", + "scheduled_service": "no", + "gps_code": "KW63", + "local_code": "W63" + }, + { + "id": "21360", + "ident": "KW78", + "type": "small_airport", + "name": "William M Tuck Airport", + "latitude_deg": "36.709999", + "longitude_deg": "-78.848", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "South Boston", + "scheduled_service": "no", + "local_code": "W78", + "home_link": "https://www.halifaxcountyva.gov/index.asp?SEC=EADAD157-BB32-4B73-BAEC-BF56AE86BFF8&Type=B_DIR", + "keywords": "JXY" + }, + { + "id": "21361", + "ident": "KW81", + "type": "small_airport", + "name": "Crewe Municipal Airport", + "latitude_deg": "37.181", + "longitude_deg": "-78.098297", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Crewe", + "scheduled_service": "no", + "local_code": "W81" + }, + { + "id": "21362", + "ident": "KW90", + "type": "small_airport", + "name": "New London Airport", + "latitude_deg": "37.27180099487305", + "longitude_deg": "-79.33589935302734", + "elevation_ft": "849", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Forest", + "scheduled_service": "no", + "gps_code": "KW90", + "local_code": "W90" + }, + { + "id": "21363", + "ident": "KW91", + "type": "small_airport", + "name": "Smith Mountain Lake Airport", + "latitude_deg": "37.1077", + "longitude_deg": "-79.592499", + "elevation_ft": "892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Moneta", + "scheduled_service": "no", + "gps_code": "KW91", + "local_code": "W91" + }, + { + "id": "21364", + "ident": "KW94", + "type": "small_airport", + "name": "Camp Peary Landing Strip", + "latitude_deg": "37.30559921", + "longitude_deg": "-76.63749695", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Williamsburg", + "scheduled_service": "no", + "gps_code": "KW94", + "local_code": "W94" + }, + { + "id": "21365", + "ident": "KW95", + "type": "small_airport", + "name": "Ocracoke Island Airport", + "latitude_deg": "35.101200103759766", + "longitude_deg": "-75.96600341796875", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Ocracoke", + "scheduled_service": "no", + "gps_code": "KW95", + "local_code": "W95" + }, + { + "id": "21366", + "ident": "KW96", + "type": "small_airport", + "name": "New Kent County Airport", + "latitude_deg": "37.5032", + "longitude_deg": "-77.125501", + "elevation_ft": "123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Quinton", + "scheduled_service": "no", + "local_code": "W96" + }, + { + "id": "21367", + "ident": "KW99", + "type": "small_airport", + "name": "Grant County Airport", + "latitude_deg": "38.9948997498", + "longitude_deg": "-79.1458969116", + "elevation_ft": "963", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Petersburg", + "scheduled_service": "no", + "gps_code": "W99", + "iata_code": "PGC", + "local_code": "W99", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grant_County_Airport_(West_Virginia)" + }, + { + "id": "21368", + "ident": "KWAL", + "type": "small_airport", + "name": "Wallops Flight Facility Airport", + "latitude_deg": "37.940813", + "longitude_deg": "-75.462255", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Wallops Island", + "scheduled_service": "no", + "gps_code": "KWAL", + "iata_code": "WAL", + "local_code": "WAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wallops_Flight_Facility", + "keywords": "Naval Auxiliary Air Station Chincoteague" + }, + { + "id": "21369", + "ident": "KWAY", + "type": "small_airport", + "name": "Greene County Airport", + "latitude_deg": "39.90112", + "longitude_deg": "-80.130733", + "elevation_ft": "1069", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Waynesburg", + "scheduled_service": "no", + "gps_code": "KWAY", + "iata_code": "WAY", + "local_code": "WAY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greene_County_Airport_(Pennsylvania)" + }, + { + "id": "21370", + "ident": "KWBW", + "type": "small_airport", + "name": "Wilkes Barre Wyoming Valley Airport", + "latitude_deg": "41.2971992493", + "longitude_deg": "-75.8511962891", + "elevation_ft": "545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wilkes-Barre", + "scheduled_service": "no", + "gps_code": "KWBW", + "iata_code": "WBW", + "local_code": "WBW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wilkes-Barre_Wyoming_Valley_Airport" + }, + { + "id": "21371", + "ident": "KWDG", + "type": "small_airport", + "name": "Enid Woodring Regional Airport", + "latitude_deg": "36.3791999817", + "longitude_deg": "-97.7910995483", + "elevation_ft": "1167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Enid", + "scheduled_service": "no", + "gps_code": "KWDG", + "iata_code": "WDG", + "local_code": "WDG", + "home_link": "http://www.enidairport.com/default.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Enid_Woodring_Regional_Airport", + "keywords": "Woodring Airport" + }, + { + "id": "21372", + "ident": "KWDR", + "type": "small_airport", + "name": "Barrow County Airport", + "latitude_deg": "33.98289871", + "longitude_deg": "-83.66739655", + "elevation_ft": "943", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Winder", + "scheduled_service": "no", + "gps_code": "KWDR", + "iata_code": "WDR", + "local_code": "WDR", + "home_link": "http://www.wdrairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barrow_County_Airport" + }, + { + "id": "21373", + "ident": "KWF", + "type": "seaplane_base", + "name": "Waterfall Seaplane Base", + "latitude_deg": "55.296299", + "longitude_deg": "-133.242996", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Waterfall", + "scheduled_service": "no", + "gps_code": "POKW", + "iata_code": "KWF", + "local_code": "KWF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Waterfall_Seaplane_Base" + }, + { + "id": "21374", + "ident": "KWHP", + "type": "small_airport", + "name": "Whiteman Airport", + "latitude_deg": "34.2593", + "longitude_deg": "-118.413002", + "elevation_ft": "1003", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pacoima", + "scheduled_service": "no", + "gps_code": "KWHP", + "iata_code": "WHP", + "local_code": "WHP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Whiteman_Airport" + }, + { + "id": "21375", + "ident": "KWJF", + "type": "medium_airport", + "name": "General William J Fox Airfield", + "latitude_deg": "34.7411", + "longitude_deg": "-118.219002", + "elevation_ft": "2351", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "KWJF", + "iata_code": "WJF", + "local_code": "WJF", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_William_J._Fox_Airfield" + }, + { + "id": "21376", + "ident": "KWK", + "type": "seaplane_base", + "name": "Kwigillingok Seaplane Base", + "latitude_deg": "59.8367", + "longitude_deg": "-163.139999", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kwigillingok", + "scheduled_service": "no", + "local_code": "KWK" + }, + { + "id": "21377", + "ident": "KWLD", + "type": "small_airport", + "name": "Strother Field", + "latitude_deg": "37.168598", + "longitude_deg": "-97.037598", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Winfield / Arkansas City", + "scheduled_service": "no", + "gps_code": "KWLD", + "iata_code": "WLD", + "local_code": "WLD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Strother_Field" + }, + { + "id": "21378", + "ident": "KWLW", + "type": "small_airport", + "name": "Willows Glenn County Airport", + "latitude_deg": "39.51639938", + "longitude_deg": "-122.2180023", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Willows", + "scheduled_service": "no", + "gps_code": "KWLW", + "iata_code": "WLW", + "local_code": "WLW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Willows-Glenn_County_Airport" + }, + { + "id": "21379", + "ident": "KWMC", + "type": "medium_airport", + "name": "Winnemucca Municipal Airport", + "latitude_deg": "40.8965988159", + "longitude_deg": "-117.805999756", + "elevation_ft": "4308", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Winnemucca", + "scheduled_service": "no", + "gps_code": "KWMC", + "iata_code": "WMC", + "local_code": "WMC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Winnemucca_Municipal_Airport" + }, + { + "id": "21380", + "ident": "KWP", + "type": "seaplane_base", + "name": "West Point Village Seaplane Base", + "latitude_deg": "57.770099639899996", + "longitude_deg": "-153.548995972", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "West Point", + "scheduled_service": "yes", + "gps_code": "KWP", + "iata_code": "KWP", + "local_code": "KWP", + "wikipedia_link": "https://en.wikipedia.org/wiki/West_Point_Village_Seaplane_Base" + }, + { + "id": "3951", + "ident": "KWRB", + "type": "medium_airport", + "name": "Robins Air Force Base", + "latitude_deg": "32.640099", + "longitude_deg": "-83.591904", + "elevation_ft": "294", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Warner Robins", + "scheduled_service": "no", + "gps_code": "KWRB", + "iata_code": "WRB", + "local_code": "WRB", + "home_link": "http://www.robins.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Robins_Air_Force_Base" + }, + { + "id": "3952", + "ident": "KWRI", + "type": "medium_airport", + "name": "Mc Guire Air Force Base", + "latitude_deg": "40.0155983", + "longitude_deg": "-74.59169769", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Wrightstown", + "scheduled_service": "no", + "gps_code": "KWRI", + "iata_code": "WRI", + "local_code": "WRI", + "home_link": "http://www.mcguire.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/McGuire_Air_Force_Base" + }, + { + "id": "3953", + "ident": "KWRL", + "type": "medium_airport", + "name": "Worland Municipal Airport", + "latitude_deg": "43.965698", + "longitude_deg": "-107.950996", + "elevation_ft": "4227", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Worland", + "scheduled_service": "no", + "gps_code": "KWRL", + "iata_code": "WRL", + "local_code": "WRL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Worland_Municipal_Airport" + }, + { + "id": "21381", + "ident": "KWSD", + "type": "small_airport", + "name": "Condron Army Air Field", + "latitude_deg": "32.34149933", + "longitude_deg": "-106.4029999", + "elevation_ft": "3934", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "White Sands", + "scheduled_service": "no", + "gps_code": "KWSD", + "iata_code": "WSD", + "local_code": "WSD" + }, + { + "id": "21382", + "ident": "KWST", + "type": "small_airport", + "name": "Westerly State Airport", + "latitude_deg": "41.3496017456", + "longitude_deg": "-71.8033981323", + "elevation_ft": "81", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Westerly", + "scheduled_service": "yes", + "gps_code": "KWST", + "iata_code": "WST", + "local_code": "WST", + "wikipedia_link": "https://en.wikipedia.org/wiki/Westerly_State_Airport" + }, + { + "id": "313443", + "ident": "KWV", + "type": "closed", + "name": "Kurwina Airport", + "latitude_deg": "-5.965", + "longitude_deg": "155.3604", + "elevation_ft": "65", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NSB", + "municipality": "Kurwina", + "scheduled_service": "no", + "iata_code": "KWV" + }, + { + "id": "21384", + "ident": "KWVI", + "type": "small_airport", + "name": "Watsonville Municipal Airport", + "latitude_deg": "36.9356994629", + "longitude_deg": "-121.790000916", + "elevation_ft": "163", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Watsonville", + "scheduled_service": "no", + "gps_code": "KWVI", + "iata_code": "WVI", + "local_code": "WVI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Watsonville_Municipal_Airport" + }, + { + "id": "21385", + "ident": "KWVL", + "type": "small_airport", + "name": "Waterville Robert Lafleur Airport", + "latitude_deg": "44.5331993103", + "longitude_deg": "-69.6754989624", + "elevation_ft": "333", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Waterville", + "scheduled_service": "no", + "gps_code": "KWVL", + "iata_code": "WVL", + "local_code": "WVL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Waterville_Robert_LaFleur_Airport" + }, + { + "id": "3954", + "ident": "KWWD", + "type": "medium_airport", + "name": "Cape May County Airport", + "latitude_deg": "39.008499145500004", + "longitude_deg": "-74.9083023071", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Wildwood", + "scheduled_service": "no", + "gps_code": "KWWD", + "iata_code": "WWD", + "local_code": "WWD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cape_May_Airport" + }, + { + "id": "21386", + "ident": "KWWR", + "type": "medium_airport", + "name": "West Woodward Airport", + "latitude_deg": "36.438", + "longitude_deg": "-99.5226667", + "elevation_ft": "2189", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Woodward", + "scheduled_service": "no", + "gps_code": "KWWR", + "iata_code": "WWR", + "local_code": "WWR", + "home_link": "http://www.cityofwoodward.com/airport-89/", + "wikipedia_link": "https://en.wikipedia.org/wiki/West_Woodward_Airport" + }, + { + "id": "313225", + "ident": "KWX", + "type": "closed", + "name": "Kiwai Airport", + "latitude_deg": "-8.6883", + "longitude_deg": "143.618", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Kiwai Island", + "scheduled_service": "no", + "iata_code": "KWX", + "keywords": "Sanguane" + }, + { + "id": "42550", + "ident": "KWY", + "type": "medium_airport", + "name": "Kiwayu Airport", + "latitude_deg": "-1.9605599641799927", + "longitude_deg": "41.29750061035156", + "elevation_ft": "21", + "continent": "AF", + "iso_country": "KE", + "iso_region": "KE-300", + "municipality": "Kiwayu", + "scheduled_service": "yes", + "iata_code": "KWY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kiwayu_Airport", + "keywords": "Mkononi Airport" + }, + { + "id": "3955", + "ident": "KWYS", + "type": "medium_airport", + "name": "Yellowstone Airport", + "latitude_deg": "44.68840027", + "longitude_deg": "-111.1179962", + "elevation_ft": "6649", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "West Yellowstone", + "scheduled_service": "no", + "gps_code": "KWYS", + "iata_code": "WYS", + "local_code": "WYS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yellowstone_Airport" + }, + { + "id": "21387", + "ident": "KX04", + "type": "small_airport", + "name": "Orlando Apopka Airport", + "latitude_deg": "28.707199096679688", + "longitude_deg": "-81.58170318603516", + "elevation_ft": "143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Apopka", + "scheduled_service": "no", + "gps_code": "KX04", + "local_code": "X04", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orlando_Apopka_Airport" + }, + { + "id": "21388", + "ident": "KX05", + "type": "small_airport", + "name": "Pilot Country Airport", + "latitude_deg": "28.3302993774", + "longitude_deg": "-82.4964981079", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Brooksville", + "scheduled_service": "no", + "gps_code": "X05", + "local_code": "X05" + }, + { + "id": "21389", + "ident": "KX06", + "type": "small_airport", + "name": "Arcadia Municipal Airport", + "latitude_deg": "27.195549", + "longitude_deg": "-81.837287", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Arcadia", + "scheduled_service": "no", + "local_code": "X06" + }, + { + "id": "21390", + "ident": "KX07", + "type": "small_airport", + "name": "Lake Wales Municipal Airport", + "latitude_deg": "27.893800735473633", + "longitude_deg": "-81.62039947509766", + "elevation_ft": "127", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Wales", + "scheduled_service": "no", + "gps_code": "KX07", + "local_code": "X07" + }, + { + "id": "21391", + "ident": "KX10", + "type": "small_airport", + "name": "Belle Glade State Municipal Airport", + "latitude_deg": "26.700899124145508", + "longitude_deg": "-80.66230010986328", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Belle Glade", + "scheduled_service": "no", + "gps_code": "KX10", + "local_code": "X10" + }, + { + "id": "21392", + "ident": "KX13", + "type": "small_airport", + "name": "Carrabelle Thompson Airport", + "latitude_deg": "29.842199325561523", + "longitude_deg": "-84.70099639892578", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Carrabelle", + "scheduled_service": "no", + "gps_code": "KX13", + "local_code": "X13" + }, + { + "id": "21393", + "ident": "KX14", + "type": "small_airport", + "name": "La Belle Municipal Airport", + "latitude_deg": "26.74419975", + "longitude_deg": "-81.43260193", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "La Belle", + "scheduled_service": "no", + "gps_code": "X14", + "local_code": "X14" + }, + { + "id": "21394", + "ident": "KX21", + "type": "small_airport", + "name": "Arthur Dunn Air Park", + "latitude_deg": "28.622299194335938", + "longitude_deg": "-80.83570098876953", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Titusville", + "scheduled_service": "no", + "gps_code": "KX21", + "local_code": "X21" + }, + { + "id": "21395", + "ident": "KX26", + "type": "small_airport", + "name": "Sebastian Municipal Airport", + "latitude_deg": "27.812599182128906", + "longitude_deg": "-80.49590301513672", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sebastian", + "scheduled_service": "no", + "gps_code": "KX26", + "local_code": "X26" + }, + { + "id": "21396", + "ident": "KX35", + "type": "small_airport", + "name": "Dunnellon Marion Co & Park of Commerce Airport", + "latitude_deg": "29.0618", + "longitude_deg": "-82.37660217", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Dunnellon", + "scheduled_service": "no", + "gps_code": "X35", + "local_code": "X35", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dunnellon/Marion_County_Airport" + }, + { + "id": "21397", + "ident": "KX39", + "type": "small_airport", + "name": "Tampa North Aero Park Airport", + "latitude_deg": "28.2213001251", + "longitude_deg": "-82.37449646", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tampa", + "scheduled_service": "no", + "gps_code": "X39", + "iata_code": "KYO", + "local_code": "X39", + "home_link": "http://www.tampanorth.com/", + "keywords": "Wesley Chapel, Topp of Tampa Airport" + }, + { + "id": "21399", + "ident": "KX43", + "type": "small_airport", + "name": "Sunray Airport", + "latitude_deg": "36.029202", + "longitude_deg": "-101.829002", + "elevation_ft": "3507", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sunray", + "scheduled_service": "no", + "local_code": "X43" + }, + { + "id": "21401", + "ident": "KX49", + "type": "small_airport", + "name": "South Lakeland Airport", + "latitude_deg": "27.933399200439453", + "longitude_deg": "-82.04399871826172", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lakeland", + "scheduled_service": "no", + "gps_code": "KX49", + "local_code": "X49", + "wikipedia_link": "https://en.wikipedia.org/wiki/South_Lakeland_Airport" + }, + { + "id": "21402", + "ident": "KX50", + "type": "small_airport", + "name": "Massey Ranch Airpark", + "latitude_deg": "28.978900909423828", + "longitude_deg": "-80.92510223388672", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "New Smyrna Beach", + "scheduled_service": "no", + "gps_code": "KX50", + "local_code": "X50" + }, + { + "id": "21403", + "ident": "KX51", + "type": "small_airport", + "name": "Miami Homestead General Aviation Airport", + "latitude_deg": "25.499201", + "longitude_deg": "-80.554296", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Homestead", + "scheduled_service": "no", + "local_code": "X51", + "home_link": "http://www.miami-airport.com/homestead.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Homestead_General_Aviation_Airport" + }, + { + "id": "21404", + "ident": "KX54", + "type": "small_airport", + "name": "Benger Air Park", + "latitude_deg": "34.654202", + "longitude_deg": "-102.692", + "elevation_ft": "4003", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Friona", + "scheduled_service": "no", + "local_code": "X54", + "keywords": "Q54" + }, + { + "id": "21405", + "ident": "KX58", + "type": "small_airport", + "name": "Indiantown Airport", + "latitude_deg": "27.036399841308594", + "longitude_deg": "-80.44010162353516", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Indiantown", + "scheduled_service": "no", + "gps_code": "KX58", + "local_code": "X58" + }, + { + "id": "21406", + "ident": "KX59", + "type": "small_airport", + "name": "Valkaria Airport", + "latitude_deg": "27.96199989", + "longitude_deg": "-80.55979919", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Malabar", + "scheduled_service": "no", + "gps_code": "KX59", + "local_code": "X59" + }, + { + "id": "21407", + "ident": "KX60", + "type": "small_airport", + "name": "Williston Municipal Airport", + "latitude_deg": "29.35420036315918", + "longitude_deg": "-82.472900390625", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Williston", + "scheduled_service": "no", + "gps_code": "KX60", + "local_code": "X60", + "wikipedia_link": "https://en.wikipedia.org/wiki/Williston_Municipal_Airport" + }, + { + "id": "21408", + "ident": "KXA", + "type": "seaplane_base", + "name": "Kasaan Seaplane Base", + "latitude_deg": "55.537399292", + "longitude_deg": "-132.397994995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kasaan", + "scheduled_service": "no", + "gps_code": "KXA", + "iata_code": "KXA", + "local_code": "KXA" + }, + { + "id": "21409", + "ident": "KXBP", + "type": "small_airport", + "name": "Bridgeport Municipal Airport", + "latitude_deg": "33.175301", + "longitude_deg": "-97.8284", + "elevation_ft": "852", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bridgeport", + "scheduled_service": "no", + "gps_code": "KXBP", + "local_code": "XBP", + "home_link": "https://www.cityofbridgeport.net/131/Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bridgeport_Municipal_Airport", + "keywords": "1F9" + }, + { + "id": "21400", + "ident": "KXFL", + "type": "small_airport", + "name": "Flagler Executive Airport", + "latitude_deg": "29.4674", + "longitude_deg": "-81.206299", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Palm Coast", + "scheduled_service": "no", + "gps_code": "KFIN", + "local_code": "FIN", + "home_link": "http://www.flaglercounty.org/index.aspx?NID=135", + "wikipedia_link": "https://en.wikipedia.org/wiki/Flagler_County_Airport", + "keywords": "formerly X47, XFL, KXFL, NOLF Bunnell, Flagler County" + }, + { + "id": "18499", + "ident": "KXLL", + "type": "small_airport", + "name": "Allentown Queen City Municipal Airport", + "latitude_deg": "40.570105", + "longitude_deg": "-75.486763", + "elevation_ft": "399", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Allentown", + "scheduled_service": "no", + "gps_code": "KXLL", + "local_code": "XLL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Allentown_Queen_City_Municipal_Airport", + "keywords": "Formerly 1N9, JVU, KJVU, Convair Field" + }, + { + "id": "3956", + "ident": "KXMR", + "type": "medium_airport", + "name": "Cape Canaveral AFS Skid Strip", + "latitude_deg": "28.4675998688", + "longitude_deg": "-80.56659698490002", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Cocoa Beach", + "scheduled_service": "no", + "gps_code": "KXMR", + "local_code": "XMR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cape_Canaveral_AFS_Skid_Strip" + }, + { + "id": "21410", + "ident": "KXNA", + "type": "medium_airport", + "name": "Northwest Arkansas Regional Airport", + "latitude_deg": "36.281898", + "longitude_deg": "-94.306801", + "elevation_ft": "1287", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Fayetteville/Springdale/Rogers", + "scheduled_service": "yes", + "gps_code": "KXNA", + "iata_code": "XNA", + "local_code": "XNA", + "home_link": "http://www.flyxna.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Northwest_Arkansas_Regional_Airport", + "keywords": "Bentonville, Rogers" + }, + { + "id": "325460", + "ident": "KXNI", + "type": "small_airport", + "name": "Andrew Othole Memorial Airport", + "latitude_deg": "35.060675", + "longitude_deg": "-108.9376", + "elevation_ft": "6370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Zuni", + "scheduled_service": "no", + "gps_code": "KXNI", + "local_code": "XNI", + "keywords": "Zuni Pueblo - Replacement" + }, + { + "id": "21411", + "ident": "KXNO", + "type": "small_airport", + "name": "North Air Force Auxillary Airfield", + "latitude_deg": "33.609355", + "longitude_deg": "-81.08328", + "elevation_ft": "321", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "North", + "scheduled_service": "no", + "gps_code": "KXNO", + "local_code": "XNO", + "home_link": "http://www.jbcharleston.jb.mil/About-Us/Fact-Sheets/Article/233010/north-auxiliary-airfield/", + "wikipedia_link": "https://en.wikipedia.org/wiki/North_Auxiliary_Airfield" + }, + { + "id": "35150", + "ident": "KXSA", + "type": "small_airport", + "name": "Tappahannock-Essex County Airport", + "latitude_deg": "37.8596", + "longitude_deg": "-76.894096", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Tappahannock", + "scheduled_service": "no", + "gps_code": "KXSA", + "local_code": "XSA", + "home_link": "http://www.tappahannockessexairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tappahannock-Essex_County_Airport" + }, + { + "id": "28148", + "ident": "KXTA", + "type": "medium_airport", + "name": "Homey (Area 51) Airport", + "latitude_deg": "37.23500061035156", + "longitude_deg": "-115.81099700927734", + "elevation_ft": "4462", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Groom Lake", + "scheduled_service": "no", + "gps_code": "KXTA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Area_51", + "keywords": "Dreamland, Paradise Ranch, Home Base, Watertown Strip" + }, + { + "id": "21412", + "ident": "KXVG", + "type": "small_airport", + "name": "Longville Municipal Airport", + "latitude_deg": "46.9902", + "longitude_deg": "-94.204002", + "elevation_ft": "1334", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Longville", + "scheduled_service": "no", + "gps_code": "KXVG", + "local_code": "XVG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Longville_Municipal_Airport" + }, + { + "id": "338056", + "ident": "KY-0001", + "type": "closed", + "name": "Bodden Town Airstrip", + "latitude_deg": "19.30084", + "longitude_deg": "-81.19342", + "continent": "NA", + "iso_country": "KY", + "iso_region": "KY-U-A", + "municipality": "Bodden Town", + "scheduled_service": "no" + }, + { + "id": "338057", + "ident": "KY-0002", + "type": "closed", + "name": "Breakers Airstrip", + "latitude_deg": "19.30479", + "longitude_deg": "-81.18776", + "continent": "NA", + "iso_country": "KY", + "iso_region": "KY-U-A", + "municipality": "Breakers", + "scheduled_service": "no" + }, + { + "id": "338058", + "ident": "KY-0003", + "type": "heliport", + "name": "Ritz-Carlton Grand Cayman Helipad", + "latitude_deg": "19.33586", + "longitude_deg": "-81.37688", + "continent": "NA", + "iso_country": "KY", + "iso_region": "KY-U-A", + "municipality": "George Town", + "scheduled_service": "no" + }, + { + "id": "338059", + "ident": "KY-0004", + "type": "heliport", + "name": "Cayman Helicopters Helipad", + "latitude_deg": "19.30294", + "longitude_deg": "-81.38311", + "continent": "NA", + "iso_country": "KY", + "iso_region": "KY-U-A", + "municipality": "George Town", + "scheduled_service": "no" + }, + { + "id": "338060", + "ident": "KY-0005", + "type": "heliport", + "name": "Camana Bay Helipad", + "latitude_deg": "19.32148", + "longitude_deg": "-81.37537", + "continent": "NA", + "iso_country": "KY", + "iso_region": "KY-U-A", + "municipality": "George Town", + "scheduled_service": "no" + }, + { + "id": "338061", + "ident": "KY-0006", + "type": "heliport", + "name": "Faith Hospital Helipad", + "latitude_deg": "19.71587", + "longitude_deg": "-79.82739", + "continent": "NA", + "iso_country": "KY", + "iso_region": "KY-U-A", + "municipality": "Cayman Brac", + "scheduled_service": "no" + }, + { + "id": "338062", + "ident": "KY-0007", + "type": "heliport", + "name": "Royal Vista Estate Private Helipad", + "latitude_deg": "19.34872", + "longitude_deg": "-81.14654", + "continent": "NA", + "iso_country": "KY", + "iso_region": "KY-U-A", + "municipality": "Old Man Bay", + "scheduled_service": "no" + }, + { + "id": "21413", + "ident": "KY03", + "type": "small_airport", + "name": "Springfield Municipal Airport", + "latitude_deg": "42.880001068115234", + "longitude_deg": "-97.90119934082031", + "elevation_ft": "1324", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "KY03", + "local_code": "Y03" + }, + { + "id": "21414", + "ident": "KY14", + "type": "small_airport", + "name": "Marv Skie / Lincoln County Airport", + "latitude_deg": "43.455213", + "longitude_deg": "-96.801448", + "elevation_ft": "1515", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Tea", + "scheduled_service": "no", + "local_code": "Y14", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marv_Skie%E2%80%93Lincoln_County_Airport" + }, + { + "id": "21415", + "ident": "KY19", + "type": "small_airport", + "name": "Mandan Municipal Airport", + "latitude_deg": "46.7681999206543", + "longitude_deg": "-100.89399719238281", + "elevation_ft": "1944", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Mandan", + "scheduled_service": "no", + "gps_code": "KY19", + "local_code": "Y19" + }, + { + "id": "21416", + "ident": "KY23", + "type": "small_airport", + "name": "Chetek Municipal Southworth Airport", + "latitude_deg": "45.30619812", + "longitude_deg": "-91.63619995", + "elevation_ft": "1055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Chetek", + "scheduled_service": "no", + "gps_code": "KY23", + "local_code": "Y23" + }, + { + "id": "21417", + "ident": "KY27", + "type": "small_airport", + "name": "Standing Rock Airport", + "latitude_deg": "46.06639862060547", + "longitude_deg": "-100.63500213623047", + "elevation_ft": "1633", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Fort Yates", + "scheduled_service": "no", + "gps_code": "KY27", + "local_code": "Y27" + }, + { + "id": "21418", + "ident": "KY31", + "type": "small_airport", + "name": "West Branch Community Airport", + "latitude_deg": "44.244801", + "longitude_deg": "-84.179802", + "elevation_ft": "882", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "West Branch", + "scheduled_service": "no", + "iata_code": "WBK", + "local_code": "Y31", + "home_link": "http://www.westbranch.com/airport.pdf" + }, + { + "id": "21419", + "ident": "KY37", + "type": "small_airport", + "name": "Park River W C Skjerven Field", + "latitude_deg": "48.39400101", + "longitude_deg": "-97.78079987", + "elevation_ft": "1104", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Park River", + "scheduled_service": "no", + "gps_code": "KY37", + "local_code": "Y37" + }, + { + "id": "21420", + "ident": "KY43", + "type": "small_airport", + "name": "Anita Municipal Airport-Kevin Burke Memorial Field", + "latitude_deg": "41.4403", + "longitude_deg": "-94.769699", + "elevation_ft": "1251", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Anita", + "scheduled_service": "no", + "local_code": "Y43" + }, + { + "id": "21421", + "ident": "KY47", + "type": "small_airport", + "name": "Oakland Southwest Airport", + "latitude_deg": "42.50310134887695", + "longitude_deg": "-83.62370300292969", + "elevation_ft": "926", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "New Hudson", + "scheduled_service": "no", + "gps_code": "KY47", + "local_code": "Y47" + }, + { + "id": "21422", + "ident": "KY50", + "type": "small_airport", + "name": "Wautoma Municipal Airport", + "latitude_deg": "44.04159927368164", + "longitude_deg": "-89.30449676513672", + "elevation_ft": "859", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wautoma", + "scheduled_service": "no", + "gps_code": "KY50", + "local_code": "Y50" + }, + { + "id": "21423", + "ident": "KY51", + "type": "small_airport", + "name": "Viroqua Municipal Airport", + "latitude_deg": "43.57939910888672", + "longitude_deg": "-90.91310119628906", + "elevation_ft": "1292", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Viroqua", + "scheduled_service": "no", + "gps_code": "KY51", + "local_code": "Y51" + }, + { + "id": "21424", + "ident": "KY55", + "type": "small_airport", + "name": "Crandon Municipal Airport", + "latitude_deg": "45.5166015625", + "longitude_deg": "-88.93340301513672", + "elevation_ft": "1646", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Crandon", + "scheduled_service": "no", + "gps_code": "KY55", + "local_code": "Y55" + }, + { + "id": "21425", + "ident": "KY65", + "type": "small_airport", + "name": "Campbell-Pratt Airport", + "latitude_deg": "45.406239", + "longitude_deg": "-84.599115", + "elevation_ft": "602", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Indian River", + "scheduled_service": "no", + "gps_code": "KY65", + "local_code": "Y65", + "keywords": "Calvin Campbell Municipal" + }, + { + "id": "21426", + "ident": "KY70", + "type": "small_airport", + "name": "Ionia County Airport", + "latitude_deg": "42.9379997253418", + "longitude_deg": "-85.06050109863281", + "elevation_ft": "818", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ionia", + "scheduled_service": "no", + "gps_code": "KY70", + "local_code": "Y70" + }, + { + "id": "21427", + "ident": "KY72", + "type": "small_airport", + "name": "Bloyer Field", + "latitude_deg": "43.97499847", + "longitude_deg": "-90.48349762", + "elevation_ft": "966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Tomah", + "scheduled_service": "no", + "gps_code": "KY72", + "local_code": "Y72" + }, + { + "id": "21428", + "ident": "KY74", + "type": "small_airport", + "name": "Parshall Hankins Airport", + "latitude_deg": "47.9364013671875", + "longitude_deg": "-102.14199829101562", + "elevation_ft": "2031", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Parshall", + "scheduled_service": "no", + "gps_code": "KY74", + "local_code": "Y74" + }, + { + "id": "45432", + "ident": "KY8", + "type": "small_airport", + "name": "Hancock County-Ron Lewis Field", + "latitude_deg": "37.953196", + "longitude_deg": "-86.857158", + "elevation_ft": "412", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Lewisport", + "scheduled_service": "no", + "local_code": "KY8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hancock_County_Airport" + }, + { + "id": "21429", + "ident": "KY83", + "type": "small_airport", + "name": "Sandusky City Airport", + "latitude_deg": "43.457039", + "longitude_deg": "-82.841018", + "elevation_ft": "776", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Sandusky", + "scheduled_service": "no", + "local_code": "Y83" + }, + { + "id": "21430", + "ident": "KY89", + "type": "small_airport", + "name": "Kalkaska City Airport", + "latitude_deg": "44.725201", + "longitude_deg": "-85.203102", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Kalkaska", + "scheduled_service": "no", + "local_code": "Y89" + }, + { + "id": "21431", + "ident": "KY93", + "type": "small_airport", + "name": "Atlanta Municipal Airport", + "latitude_deg": "44.996916", + "longitude_deg": "-84.126692", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "KY93", + "local_code": "Y93", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atlanta_Municipal_Airport_(Michigan)" + }, + { + "id": "21432", + "ident": "KY94", + "type": "small_airport", + "name": "East Jordan City Airport", + "latitude_deg": "45.130953", + "longitude_deg": "-85.107822", + "elevation_ft": "642", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "East Jordan", + "scheduled_service": "no", + "local_code": "Y94" + }, + { + "id": "21433", + "ident": "KY95", + "type": "small_airport", + "name": "Hillman Airport", + "latitude_deg": "45.08330154418945", + "longitude_deg": "-83.94029998779297", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Hillman", + "scheduled_service": "no", + "gps_code": "KY95", + "local_code": "Y95" + }, + { + "id": "3957", + "ident": "KYIP", + "type": "medium_airport", + "name": "Willow Run Airport", + "latitude_deg": "42.23789978", + "longitude_deg": "-83.53040314", + "elevation_ft": "716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Detroit", + "scheduled_service": "no", + "gps_code": "KYIP", + "iata_code": "YIP", + "local_code": "YIP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Willow_Run_Airport", + "keywords": "DTT" + }, + { + "id": "3958", + "ident": "KYKM", + "type": "medium_airport", + "name": "Yakima Air Terminal McAllister Field", + "latitude_deg": "46.56819916", + "longitude_deg": "-120.5439987", + "elevation_ft": "1099", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Yakima", + "scheduled_service": "yes", + "gps_code": "KYKM", + "iata_code": "YKM", + "local_code": "YKM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yakima_Air_Terminal" + }, + { + "id": "3959", + "ident": "KYKN", + "type": "medium_airport", + "name": "Chan Gurney Municipal Airport", + "latitude_deg": "42.916698455811", + "longitude_deg": "-97.385902404785", + "elevation_ft": "1306", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Yankton", + "scheduled_service": "no", + "gps_code": "KYKN", + "iata_code": "YKN", + "local_code": "YKN", + "home_link": "http://www.cityofyankton.org/publicworks/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chan_Gurney_Municipal_Airport" + }, + { + "id": "313342", + "ident": "KYL", + "type": "closed", + "name": "Port Largo Airport", + "latitude_deg": "25.09334", + "longitude_deg": "-80.42992", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Key Largo", + "scheduled_service": "no", + "keywords": "KYL" + }, + { + "id": "3960", + "ident": "KYNG", + "type": "medium_airport", + "name": "Youngstown Warren Regional Airport", + "latitude_deg": "41.26070023", + "longitude_deg": "-80.67910004", + "elevation_ft": "1192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Youngstown/Warren", + "scheduled_service": "no", + "gps_code": "KYNG", + "iata_code": "YNG", + "local_code": "YNG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Youngstown-Warren_Regional_Airport" + }, + { + "id": "46156", + "ident": "KZ-0001", + "type": "closed", + "name": "Zhuz-Agach Air Base", + "latitude_deg": "47.072109", + "longitude_deg": "79.711225", + "elevation_ft": "1224", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ABA", + "municipality": "Aktogay", + "scheduled_service": "no", + "keywords": "Аэродром Жуз-Агач" + }, + { + "id": "41854", + "ident": "KZ-0002", + "type": "small_airport", + "name": "Arkalyk Airport", + "latitude_deg": "50.239498138427734", + "longitude_deg": "66.94100189208984", + "elevation_ft": "1152", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KUS", + "municipality": "Arkalyk", + "scheduled_service": "no" + }, + { + "id": "41855", + "ident": "KZ-0003", + "type": "small_airport", + "name": "Arys Northeast Airport", + "latitude_deg": "42.470298767089844", + "longitude_deg": "68.83820343017578", + "elevation_ft": "750", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Arys", + "scheduled_service": "no" + }, + { + "id": "41856", + "ident": "KZ-0004", + "type": "small_airport", + "name": "Badam Airport", + "latitude_deg": "42.391300201416016", + "longitude_deg": "69.28050231933594", + "elevation_ft": "1102", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Badam", + "scheduled_service": "no" + }, + { + "id": "41857", + "ident": "KZ-0005", + "type": "small_airport", + "name": "Buzachi Airport", + "latitude_deg": "45.193846", + "longitude_deg": "51.349721", + "elevation_ft": "1", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-MAN", + "municipality": "Kultay", + "scheduled_service": "no", + "keywords": "Аэропорт Бузачи" + }, + { + "id": "41858", + "ident": "KZ-0006", + "type": "small_airport", + "name": "Chilik Southeast Airfield", + "latitude_deg": "43.222679", + "longitude_deg": "78.717153", + "elevation_ft": "4497", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Chilik", + "scheduled_service": "no" + }, + { + "id": "41859", + "ident": "KZ-0007", + "type": "small_airport", + "name": "Sayram Airport", + "latitude_deg": "42.280563", + "longitude_deg": "69.807748", + "elevation_ft": "2470", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Sayram", + "scheduled_service": "no" + }, + { + "id": "41860", + "ident": "KZ-0008", + "type": "closed", + "name": "Former Zhezkazgan Airport", + "latitude_deg": "47.769244", + "longitude_deg": "67.67385", + "elevation_ft": "1134", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ULY", + "municipality": "Zhezkazgan", + "scheduled_service": "no", + "keywords": "Dzhezkazgan Airport, Аэропорт Джезказган, Аэропорт Жезказган" + }, + { + "id": "41861", + "ident": "KZ-0009", + "type": "small_airport", + "name": "Gurvey Northeast Airport", + "latitude_deg": "47.224939", + "longitude_deg": "51.987159", + "elevation_ft": "100", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ATY", + "municipality": "Akzhar", + "scheduled_service": "no" + }, + { + "id": "41862", + "ident": "KZ-0010", + "type": "small_airport", + "name": "Iliysk North Airport", + "latitude_deg": "43.99829864501953", + "longitude_deg": "77.13909912109375", + "elevation_ft": "2343", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Iliysk", + "scheduled_service": "no" + }, + { + "id": "41863", + "ident": "KZ-0011", + "type": "small_airport", + "name": "Zhetygen Airport", + "latitude_deg": "43.733101", + "longitude_deg": "77.119404", + "elevation_ft": "1638", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Iliysk", + "scheduled_service": "no", + "local_code": "XAAA", + "keywords": "Zhetygen Airport,Iliysk South Airport, Nikolayevka Air Base, Nikolaevka Air Base" + }, + { + "id": "41864", + "ident": "KZ-0012", + "type": "small_airport", + "name": "Karabulak Airport", + "latitude_deg": "42.502899169921875", + "longitude_deg": "69.8031005859375", + "elevation_ft": "1670", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Karabulak", + "scheduled_service": "no" + }, + { + "id": "41865", + "ident": "KZ-0013", + "type": "small_airport", + "name": "Kok-Tyube Airport", + "latitude_deg": "42.88560104370117", + "longitude_deg": "68.9791030883789", + "elevation_ft": "781", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Kok_Tyube", + "scheduled_service": "no" + }, + { + "id": "41866", + "ident": "KZ-0014", + "type": "small_airport", + "name": "Kostanay Airport", + "latitude_deg": "53.22959899902344", + "longitude_deg": "63.60319900512695", + "elevation_ft": "549", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KUS", + "municipality": "Kostanay", + "scheduled_service": "no" + }, + { + "id": "41867", + "ident": "KZ-0015", + "type": "closed", + "name": "Sarkand Airport", + "latitude_deg": "45.418598", + "longitude_deg": "79.931702", + "elevation_ft": "2500", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-JET", + "municipality": "Sarkand", + "scheduled_service": "no", + "keywords": "AG2234" + }, + { + "id": "351007", + "ident": "KZ-0016", + "type": "small_airport", + "name": "Berkut Military Sport Aviation Base Airport", + "latitude_deg": "42.29261", + "longitude_deg": "69.84615", + "elevation_ft": "2471", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Sayram", + "scheduled_service": "no" + }, + { + "id": "41869", + "ident": "KZ-0017", + "type": "small_airport", + "name": "Zhanaozen Airport", + "latitude_deg": "43.345854", + "longitude_deg": "52.933916", + "elevation_ft": "695", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-MAN", + "municipality": "Zhanaozen", + "scheduled_service": "no", + "keywords": "Novy Uzen, Uzen" + }, + { + "id": "41870", + "ident": "KZ-0018", + "type": "small_airport", + "name": "Yeskiikan Southeast Airport", + "latitude_deg": "43.26559829711914", + "longitude_deg": "68.6427001953125", + "elevation_ft": "896", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Yeskiikan", + "scheduled_service": "no" + }, + { + "id": "41871", + "ident": "KZ-0019", + "type": "small_airport", + "name": "Bayserke Airport", + "latitude_deg": "43.448002", + "longitude_deg": "77.049599", + "elevation_ft": "2038", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Otegen Batyr", + "scheduled_service": "no", + "gps_code": "UAAC", + "keywords": "Zakirovskiy Airport" + }, + { + "id": "41872", + "ident": "KZ-0020", + "type": "small_airport", + "name": "Zhilga South Airport", + "latitude_deg": "41.700443", + "longitude_deg": "69.005052", + "elevation_ft": "1318", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Zhilga", + "scheduled_service": "no" + }, + { + "id": "41873", + "ident": "KZ-0021", + "type": "closed", + "name": "Abay Bazar Airport", + "latitude_deg": "41.362202", + "longitude_deg": "68.987602", + "elevation_ft": "1179", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Abay", + "scheduled_service": "no" + }, + { + "id": "41874", + "ident": "KZ-0022", + "type": "small_airport", + "name": "Almaty North Airport", + "latitude_deg": "43.37300109863281", + "longitude_deg": "76.9800033569336", + "elevation_ft": "2159", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Almaty", + "scheduled_service": "no", + "keywords": "Alma-Ata North Airport, Аэропорт Алма-Ата Северная" + }, + { + "id": "41875", + "ident": "KZ-0023", + "type": "closed", + "name": "Aitbuzum East Airport", + "latitude_deg": "41.096298", + "longitude_deg": "68.682503", + "elevation_ft": "965", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Aitbuzum", + "scheduled_service": "no" + }, + { + "id": "41876", + "ident": "KZ-0024", + "type": "closed", + "name": "Aksu Airport", + "latitude_deg": "42.443501", + "longitude_deg": "69.821999", + "elevation_ft": "1900", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Belyye Vody", + "scheduled_service": "no", + "keywords": "Aksukent, Аксукент, Belyye Vody" + }, + { + "id": "41877", + "ident": "KZ-0025", + "type": "small_airport", + "name": "Arkaylyk South Airport", + "latitude_deg": "50.25979995727539", + "longitude_deg": "66.910400390625", + "elevation_ft": "1118", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KUS", + "municipality": "Arkalyk", + "scheduled_service": "no" + }, + { + "id": "317104", + "ident": "KZ-0026", + "type": "closed", + "name": "Novotroitskoye West Airfield", + "latitude_deg": "43.7193", + "longitude_deg": "73.538", + "elevation_ft": "1475", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ZHA", + "municipality": "Novotroitskoye", + "scheduled_service": "no" + }, + { + "id": "41879", + "ident": "KZ-0027", + "type": "small_airport", + "name": "Blinkovo Airport", + "latitude_deg": "42.25559997558594", + "longitude_deg": "70.12580108642578", + "elevation_ft": "3571", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Blinkovo", + "scheduled_service": "no" + }, + { + "id": "41880", + "ident": "KZ-0028", + "type": "small_airport", + "name": "Bugun Airport", + "latitude_deg": "42.75749969482422", + "longitude_deg": "68.97959899902344", + "elevation_ft": "803", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Bugun", + "scheduled_service": "no" + }, + { + "id": "41881", + "ident": "KZ-0029", + "type": "small_airport", + "name": "Burynshik Airport", + "latitude_deg": "45.38560104370117", + "longitude_deg": "51.76649856567383", + "elevation_ft": "1", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-MAN", + "municipality": "Burynshik", + "scheduled_service": "no" + }, + { + "id": "41882", + "ident": "KZ-0030", + "type": "small_airport", + "name": "Burynshik Southeast Airport", + "latitude_deg": "45.34389877319336", + "longitude_deg": "51.82680130004883", + "elevation_ft": "1", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-MAN", + "municipality": "Burynshik", + "scheduled_service": "no" + }, + { + "id": "41883", + "ident": "KZ-0031", + "type": "small_airport", + "name": "Chikment / Khatynkopir Airport", + "latitude_deg": "42.4640998840332", + "longitude_deg": "69.60099792480469", + "elevation_ft": "1530", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Chikment / Khatynkopir", + "scheduled_service": "no" + }, + { + "id": "41884", + "ident": "KZ-0032", + "type": "small_airport", + "name": "Chubarovka Airport", + "latitude_deg": "42.57350158691406", + "longitude_deg": "69.3644027709961", + "elevation_ft": "1100", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Chubarovka", + "scheduled_service": "no" + }, + { + "id": "41885", + "ident": "KZ-0033", + "type": "small_airport", + "name": "Dzhetygara Airport", + "latitude_deg": "52.20649", + "longitude_deg": "61.174008", + "elevation_ft": "905", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KUS", + "municipality": "Dzhetygara", + "scheduled_service": "no" + }, + { + "id": "317105", + "ident": "KZ-0034", + "type": "small_airport", + "name": "Moinkum Airport", + "latitude_deg": "43.609489", + "longitude_deg": "74.279346", + "elevation_ft": "3120", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ZHA", + "municipality": "Moinkum", + "scheduled_service": "no", + "keywords": "Moyynkum, Мойынкум" + }, + { + "id": "41887", + "ident": "KZ-0035", + "type": "closed", + "name": "Karagandy Southeast Airport", + "latitude_deg": "49.808391", + "longitude_deg": "73.170138", + "elevation_ft": "1800", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KAR", + "municipality": "Karagandy", + "scheduled_service": "no" + }, + { + "id": "41888", + "ident": "KZ-0036", + "type": "small_airport", + "name": "Karaganda Southwest Airport", + "latitude_deg": "49.66510009765625", + "longitude_deg": "72.981201171875", + "elevation_ft": "1634", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KAR", + "municipality": "Karaganda", + "scheduled_service": "no" + }, + { + "id": "41889", + "ident": "KZ-0037", + "type": "small_airport", + "name": "Karazhal Airport", + "latitude_deg": "47.98452", + "longitude_deg": "70.76531", + "elevation_ft": "2155", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ULY", + "municipality": "Karahzal", + "scheduled_service": "no" + }, + { + "id": "41890", + "ident": "KZ-0038", + "type": "small_airport", + "name": "Kegan Airport", + "latitude_deg": "43.007767", + "longitude_deg": "79.219867", + "elevation_ft": "6051", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Kegen", + "scheduled_service": "no" + }, + { + "id": "41891", + "ident": "KZ-0039", + "type": "small_airport", + "name": "Kentau Airport", + "latitude_deg": "43.48830032348633", + "longitude_deg": "68.49549865722656", + "elevation_ft": "1275", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Kentau", + "scheduled_service": "no" + }, + { + "id": "41892", + "ident": "KZ-0040", + "type": "small_airport", + "name": "Kokshetau Old Airport", + "latitude_deg": "53.3241", + "longitude_deg": "69.369003", + "elevation_ft": "731", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-AKM", + "municipality": "Kokshetau", + "scheduled_service": "no" + }, + { + "id": "41893", + "ident": "KZ-0041", + "type": "small_airport", + "name": "Krasnyy Most East Airport", + "latitude_deg": "42.769100189208984", + "longitude_deg": "69.27999877929688", + "elevation_ft": "991", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Krasnyy Most", + "scheduled_service": "no" + }, + { + "id": "41894", + "ident": "KZ-0042", + "type": "small_airport", + "name": "Kyzylasker Airport", + "latitude_deg": "42.60860061645508", + "longitude_deg": "69.58999633789062", + "elevation_ft": "1231", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Kyzylasker", + "scheduled_service": "no" + }, + { + "id": "41895", + "ident": "KZ-0043", + "type": "small_airport", + "name": "Kyzylkishlak Airport", + "latitude_deg": "42.55070114135742", + "longitude_deg": "69.6583023071289", + "elevation_ft": "1457", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Kyzylkishlak", + "scheduled_service": "no" + }, + { + "id": "41896", + "ident": "KZ-0044", + "type": "closed", + "name": "Kyzylorda Old Airport", + "latitude_deg": "44.815701", + "longitude_deg": "65.556999", + "elevation_ft": "410", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KZY", + "municipality": "Kyzylorda", + "scheduled_service": "no" + }, + { + "id": "41897", + "ident": "KZ-0045", + "type": "closed", + "name": "Narynkol Airport", + "latitude_deg": "42.720001", + "longitude_deg": "80.186096", + "elevation_ft": "6012", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Narynkol", + "scheduled_service": "no" + }, + { + "id": "41898", + "ident": "KZ-0046", + "type": "small_airport", + "name": "Novotroitskoye Airport", + "latitude_deg": "43.702801", + "longitude_deg": "73.745003", + "elevation_ft": "1487", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ZHA", + "municipality": "Novotroitskoye", + "scheduled_service": "no", + "gps_code": "UAAZ" + }, + { + "id": "41899", + "ident": "KZ-0047", + "type": "small_airport", + "name": "Obruchevka Airport", + "latitude_deg": "42.51070022583008", + "longitude_deg": "69.11589813232422", + "elevation_ft": "912", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Obruchevka", + "scheduled_service": "no" + }, + { + "id": "41900", + "ident": "KZ-0048", + "type": "small_airport", + "name": "Pervomoyevka Airport", + "latitude_deg": "42.09469985961914", + "longitude_deg": "69.90149688720703", + "elevation_ft": "2949", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Pervomoyevka", + "scheduled_service": "no" + }, + { + "id": "41901", + "ident": "KZ-0049", + "type": "small_airport", + "name": "Petropavl North Airport", + "latitude_deg": "54.970204", + "longitude_deg": "69.070935", + "elevation_ft": "295", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-SEV", + "municipality": "Petropavl", + "scheduled_service": "no" + }, + { + "id": "41902", + "ident": "KZ-0050", + "type": "small_airport", + "name": "Podgorny Airport", + "latitude_deg": "43.11069869995117", + "longitude_deg": "72.44779968261719", + "elevation_ft": "2150", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ZHA", + "municipality": "Podgorny", + "scheduled_service": "no" + }, + { + "id": "41903", + "ident": "KZ-0051", + "type": "small_airport", + "name": "Rodnikovskiy Airport", + "latitude_deg": "50.641300201416016", + "longitude_deg": "57.1693000793457", + "elevation_ft": "1191", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-AKT", + "municipality": "Rodnikovskiy", + "scheduled_service": "no" + }, + { + "id": "41904", + "ident": "KZ-0052", + "type": "closed", + "name": "Sary Agach Airport", + "latitude_deg": "41.4562", + "longitude_deg": "69.141899", + "elevation_ft": "1418", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Sary Agach", + "scheduled_service": "no" + }, + { + "id": "41905", + "ident": "KZ-0053", + "type": "small_airport", + "name": "Shagyr Airport", + "latitude_deg": "42.17369842529297", + "longitude_deg": "68.84100341796875", + "elevation_ft": "1006", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Shagyr", + "scheduled_service": "no" + }, + { + "id": "41906", + "ident": "KZ-0054", + "type": "small_airport", + "name": "Shelpe Southeast Airport", + "latitude_deg": "44.068599700927734", + "longitude_deg": "52.2765007019043", + "elevation_ft": "935", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-MAN", + "municipality": "Shelpe", + "scheduled_service": "no" + }, + { + "id": "41907", + "ident": "KZ-0055", + "type": "closed", + "name": "Stepnoye East Airport", + "latitude_deg": "41.625198", + "longitude_deg": "69.3974", + "elevation_ft": "1718", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Ak Dzhar", + "scheduled_service": "no" + }, + { + "id": "41908", + "ident": "KZ-0056", + "type": "closed", + "name": "Stepnoye West Airport", + "latitude_deg": "41.621399", + "longitude_deg": "69.303299", + "elevation_ft": "1700", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Ak Dzhar", + "scheduled_service": "no" + }, + { + "id": "41909", + "ident": "KZ-0057", + "type": "small_airport", + "name": "Syugaty Airport", + "latitude_deg": "43.172298431396484", + "longitude_deg": "74.62200164794922", + "elevation_ft": "2030", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ZHA", + "municipality": "Syugati", + "scheduled_service": "no" + }, + { + "id": "41910", + "ident": "KZ-0058", + "type": "small_airport", + "name": "Taganassay Airport", + "latitude_deg": "42.218101501464844", + "longitude_deg": "69.00440216064453", + "elevation_ft": "1035", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Taganassay", + "scheduled_service": "no" + }, + { + "id": "41911", + "ident": "KZ-0059", + "type": "small_airport", + "name": "Tamerlanovka Airport", + "latitude_deg": "42.614498138427734", + "longitude_deg": "69.2490005493164", + "elevation_ft": "1033", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Tamerlannovka", + "scheduled_service": "no" + }, + { + "id": "41912", + "ident": "KZ-0060", + "type": "closed", + "name": "Togyzbay Airport", + "latitude_deg": "41.361698", + "longitude_deg": "68.741096", + "elevation_ft": "1005", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Togyzbay", + "scheduled_service": "no" + }, + { + "id": "41913", + "ident": "KZ-0061", + "type": "small_airport", + "name": "Turkestan Airport", + "latitude_deg": "43.27690124511719", + "longitude_deg": "68.19039916992188", + "elevation_ft": "669", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Turkestan", + "scheduled_service": "no", + "gps_code": "UAJT" + }, + { + "id": "41914", + "ident": "KZ-0062", + "type": "small_airport", + "name": "Uralsk West Airport", + "latitude_deg": "51.196098", + "longitude_deg": "51.2994", + "elevation_ft": "125", + "continent": "EU", + "iso_country": "KZ", + "iso_region": "KZ-ZAP", + "municipality": "Uralsk", + "scheduled_service": "no" + }, + { + "id": "41915", + "ident": "KZ-0063", + "type": "small_airport", + "name": "Ush Tobe Airport", + "latitude_deg": "50.57619857788086", + "longitude_deg": "66.74220275878906", + "elevation_ft": "985", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KUS", + "municipality": "Vostochnyy", + "scheduled_service": "no" + }, + { + "id": "41916", + "ident": "KZ-0064", + "type": "small_airport", + "name": "Volskoye Airport", + "latitude_deg": "50.38880157470703", + "longitude_deg": "73.09420013427734", + "elevation_ft": "1808", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KAR", + "municipality": "Volskoye", + "scheduled_service": "no" + }, + { + "id": "44326", + "ident": "KZ-0065", + "type": "closed", + "name": "Aksuyek Airport", + "latitude_deg": "44.611408", + "longitude_deg": "74.559079", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Aksuyek", + "scheduled_service": "no", + "keywords": "Aksuek Airport, Аэропорт Аксуек" + }, + { + "id": "44327", + "ident": "KZ-0066", + "type": "closed", + "name": "Aktogay Air Base", + "latitude_deg": "46.89158", + "longitude_deg": "79.846745", + "elevation_ft": "1188", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ABA", + "municipality": "Aktogay", + "scheduled_service": "no", + "keywords": "Аэродром Актогай" + }, + { + "id": "44336", + "ident": "KZ-0067", + "type": "medium_airport", + "name": "Krainiy Airport", + "latitude_deg": "45.621994", + "longitude_deg": "63.210773", + "elevation_ft": "317", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-BAY", + "municipality": "Baikonur", + "scheduled_service": "no", + "gps_code": "UAOL", + "iata_code": "BXY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baikonur_Krayniy_Airport", + "keywords": "Krayniy Airport, Аэропорт Крайний" + }, + { + "id": "44355", + "ident": "KZ-0068", + "type": "medium_airport", + "name": "Kurchatov Airfield", + "latitude_deg": "50.736074", + "longitude_deg": "78.538942", + "elevation_ft": "545", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ABA", + "municipality": "Kurchatov", + "scheduled_service": "no", + "keywords": "Аэродром Курчатов" + }, + { + "id": "44357", + "ident": "KZ-0069", + "type": "medium_airport", + "name": "Zhangiztobe Air Base", + "latitude_deg": "49.219952", + "longitude_deg": "81.317368", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ABA", + "municipality": "Zhangiztobe", + "scheduled_service": "no", + "keywords": "Zhangiz-Tobe Air Base, Аэродром Жангизтобе, Аэродром Жангиз-Тобе" + }, + { + "id": "44386", + "ident": "KZ-0070", + "type": "small_airport", + "name": "Zhosaly Airport", + "latitude_deg": "45.51813", + "longitude_deg": "64.085408", + "elevation_ft": "335", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KZY", + "municipality": "Zhosaly", + "scheduled_service": "no", + "keywords": "Dzhusaly Airport, Josaly, Аэропорт Жосалы, Аэропорт Джусалы" + }, + { + "id": "44389", + "ident": "KZ-0071", + "type": "closed", + "name": "Karas Air Base", + "latitude_deg": "48.73699951171875", + "longitude_deg": "58.04199981689453", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-AKT", + "municipality": "Zhem", + "scheduled_service": "no", + "keywords": "Emba Air Base, Аэродром Карась,Аэродром Эмба" + }, + { + "id": "44390", + "ident": "KZ-0072", + "type": "heliport", + "name": "Aksu Heliport", + "latitude_deg": "52.057847", + "longitude_deg": "76.90756", + "elevation_ft": "381", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-PAV", + "municipality": "Aksu", + "scheduled_service": "no" + }, + { + "id": "44401", + "ident": "KZ-0073", + "type": "small_airport", + "name": "Chundzha Airfield", + "latitude_deg": "43.598202", + "longitude_deg": "79.427366", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Bakhar", + "scheduled_service": "no", + "keywords": "Аэродром Чунджа" + }, + { + "id": "44405", + "ident": "KZ-0074", + "type": "closed", + "name": "Dzhaman Kuduk Airfield", + "latitude_deg": "46.34700012207031", + "longitude_deg": "72.81999969482422", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KAR", + "scheduled_service": "no", + "keywords": "Аэродром Джаман Кудук" + }, + { + "id": "44428", + "ident": "KZ-0075", + "type": "closed", + "name": "Charyn Airfield", + "latitude_deg": "43.720609", + "longitude_deg": "79.476141", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Charyn", + "scheduled_service": "no", + "keywords": "Sharyn Airfield, Аэродром Чарын, Аэродром Шарын" + }, + { + "id": "317106", + "ident": "KZ-0076", + "type": "small_airport", + "name": "Blagoveshchenskoye-Chu Airport", + "latitude_deg": "43.259973", + "longitude_deg": "74.038989", + "elevation_ft": "1795", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ZHA", + "municipality": "Aksu", + "scheduled_service": "no" + }, + { + "id": "318182", + "ident": "KZ-0077", + "type": "closed", + "name": "Tughyl Airport", + "latitude_deg": "47.675444", + "longitude_deg": "84.300148", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-VOS", + "municipality": "Tughyl", + "scheduled_service": "no" + }, + { + "id": "318184", + "ident": "KZ-0078", + "type": "closed", + "name": "Zaysan West Airport", + "latitude_deg": "47.609809", + "longitude_deg": "84.57742", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-VOS", + "municipality": "Zaysan", + "scheduled_service": "no" + }, + { + "id": "318185", + "ident": "KZ-0079", + "type": "closed", + "name": "Akzhar Airport", + "latitude_deg": "47.582142", + "longitude_deg": "83.726539", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-VOS", + "municipality": "Akzhar", + "scheduled_service": "no" + }, + { + "id": "318186", + "ident": "KZ-0080", + "type": "small_airport", + "name": "Akkala Airport", + "latitude_deg": "47.784326", + "longitude_deg": "82.65697", + "elevation_ft": "1890", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ABA", + "municipality": "Aksuat", + "scheduled_service": "no", + "local_code": "ZCZ0", + "keywords": "Ekpin, Аккала, Аксуат" + }, + { + "id": "318187", + "ident": "KZ-0081", + "type": "small_airport", + "name": "Zubovsk Airport", + "latitude_deg": "49.800103", + "longitude_deg": "84.214661", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-VOS", + "municipality": "Zyryanovsk", + "scheduled_service": "no" + }, + { + "id": "318380", + "ident": "KZ-0082", + "type": "small_airport", + "name": "Usharal Airport", + "latitude_deg": "46.190767", + "longitude_deg": "80.830922", + "elevation_ft": "1288", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-JET", + "municipality": "Usharal", + "scheduled_service": "no", + "gps_code": "UAAL", + "iata_code": "USJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Usharal_Airport", + "keywords": "Enbekshi Airport" + }, + { + "id": "319910", + "ident": "KZ-0083", + "type": "small_airport", + "name": "Akchatau Airport", + "latitude_deg": "47.891086", + "longitude_deg": "74.054011", + "elevation_ft": "2135", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KAR", + "municipality": "Akchatau", + "scheduled_service": "no", + "keywords": "TPC F-6A" + }, + { + "id": "319911", + "ident": "KZ-0084", + "type": "small_airport", + "name": "Gora Sasyrly Airport", + "latitude_deg": "47.187197", + "longitude_deg": "71.388559", + "elevation_ft": "1800", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KAR", + "municipality": "Dzhambul", + "scheduled_service": "no", + "keywords": "Gzhambul" + }, + { + "id": "319912", + "ident": "KZ-0085", + "type": "small_airport", + "name": "Koktas Southwest Airport", + "latitude_deg": "47.351", + "longitude_deg": "70.616", + "elevation_ft": "1474", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ULY", + "municipality": "Koktas", + "scheduled_service": "no" + }, + { + "id": "319913", + "ident": "KZ-0086", + "type": "small_airport", + "name": "Koktas Airport", + "latitude_deg": "47.341", + "longitude_deg": "70.684", + "elevation_ft": "1504", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ULY", + "municipality": "Koktas", + "scheduled_service": "no" + }, + { + "id": "319914", + "ident": "KZ-0087", + "type": "small_airport", + "name": "Kambala Airport", + "latitude_deg": "46.02491", + "longitude_deg": "73.494567", + "elevation_ft": "1330", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KAR", + "municipality": "Priozersk", + "scheduled_service": "no", + "local_code": "XAAM", + "keywords": "Камбала, Sary Shagan" + }, + { + "id": "319915", + "ident": "KZ-0088", + "type": "small_airport", + "name": "Jeppesen Avia Club Airport", + "latitude_deg": "44.564", + "longitude_deg": "76.6392", + "elevation_ft": "1345", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Bakbakty", + "scheduled_service": "no", + "local_code": "ZBC5" + }, + { + "id": "319920", + "ident": "KZ-0089", + "type": "small_airport", + "name": "Yrgyz Airport", + "latitude_deg": "48.625167", + "longitude_deg": "61.238285", + "elevation_ft": "375", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-AKT", + "municipality": "Yrgyz", + "scheduled_service": "no", + "local_code": "ZBZ1", + "keywords": "Irgiz, Ырғыз, Иргиз" + }, + { + "id": "319921", + "ident": "KZ-0090", + "type": "small_airport", + "name": "Beyneu Airport", + "latitude_deg": "45.33196", + "longitude_deg": "55.12443", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-MAN", + "municipality": "Beyneu", + "scheduled_service": "no", + "local_code": "ZCV6" + }, + { + "id": "319922", + "ident": "KZ-0091", + "type": "small_airport", + "name": "Novotroitskoye Airport", + "latitude_deg": "53.9114", + "longitude_deg": "61.5384", + "elevation_ft": "745", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KUS", + "municipality": "Novotroitskoye", + "scheduled_service": "no", + "local_code": "ZD00" + }, + { + "id": "328533", + "ident": "KZ-0092", + "type": "closed", + "name": "Amangeldy Airfield", + "latitude_deg": "50.205601", + "longitude_deg": "65.178643", + "elevation_ft": "453", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KUS", + "municipality": "Amangeldi", + "scheduled_service": "no", + "keywords": "Амангелді" + }, + { + "id": "341917", + "ident": "KZ-0093", + "type": "heliport", + "name": "Aktau Summer Sea Residence Heliport", + "latitude_deg": "43.680865", + "longitude_deg": "51.121455", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-MAN", + "municipality": "Aktau", + "scheduled_service": "no" + }, + { + "id": "341918", + "ident": "KZ-0094", + "type": "heliport", + "name": "Aktau Summer Sea Harbor Heliport", + "latitude_deg": "43.678545", + "longitude_deg": "51.123348", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-MAN", + "municipality": "Aktau", + "scheduled_service": "no" + }, + { + "id": "341919", + "ident": "KZ-0095", + "type": "heliport", + "name": "Sayakhat Beach Heliport", + "latitude_deg": "50.217927", + "longitude_deg": "57.288984", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-AKT", + "municipality": "Aktobe", + "scheduled_service": "no" + }, + { + "id": "342074", + "ident": "KZ-0096", + "type": "closed", + "name": "Balkhash East Airfield", + "latitude_deg": "46.8861", + "longitude_deg": "75.3972", + "elevation_ft": "1135", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-PAV", + "municipality": "Aktogay", + "scheduled_service": "no" + }, + { + "id": "342076", + "ident": "KZ-0097", + "type": "closed", + "name": "Barshatas Airfield", + "latitude_deg": "48.1616", + "longitude_deg": "78.6766", + "elevation_ft": "2188", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ABA", + "municipality": "Barshatas", + "scheduled_service": "no" + }, + { + "id": "342844", + "ident": "KZ-0098", + "type": "heliport", + "name": "Tekeli Heliport", + "latitude_deg": "44.86743", + "longitude_deg": "78.70089", + "elevation_ft": "3159", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-JET", + "municipality": "Tekeli", + "scheduled_service": "no" + }, + { + "id": "342845", + "ident": "KZ-0099", + "type": "heliport", + "name": "Kyzylagash Heliport", + "latitude_deg": "45.38011", + "longitude_deg": "78.7109", + "elevation_ft": "1552", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-JET", + "municipality": "Kyzylagash", + "scheduled_service": "no" + }, + { + "id": "342846", + "ident": "KZ-0100", + "type": "heliport", + "name": "Sarkand Heliport", + "latitude_deg": "45.42361", + "longitude_deg": "79.93414", + "elevation_ft": "2474", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-JET", + "municipality": "Sarkand", + "scheduled_service": "no" + }, + { + "id": "342847", + "ident": "KZ-0101", + "type": "small_airport", + "name": "Arman Dala Airstrip", + "latitude_deg": "43.15743", + "longitude_deg": "76.6324", + "elevation_ft": "3380", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Kaskelen", + "scheduled_service": "no" + }, + { + "id": "342848", + "ident": "KZ-0102", + "type": "small_airport", + "name": "Azem/Talis Aeroclub Airfield", + "latitude_deg": "43.18776", + "longitude_deg": "76.55724", + "elevation_ft": "2933", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Ushkonyr", + "scheduled_service": "no" + }, + { + "id": "342849", + "ident": "KZ-0103", + "type": "heliport", + "name": "Ushkonyr Mountain Heliport", + "latitude_deg": "43.08326", + "longitude_deg": "76.48102", + "elevation_ft": "6322", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Ushkonyr", + "scheduled_service": "no" + }, + { + "id": "342850", + "ident": "KZ-0104", + "type": "heliport", + "name": "Shelek Heliport", + "latitude_deg": "43.63669", + "longitude_deg": "78.30801", + "elevation_ft": "1949", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Shelek", + "scheduled_service": "no" + }, + { + "id": "342851", + "ident": "KZ-0105", + "type": "closed", + "name": "Karashoky Airport", + "latitude_deg": "44.11078", + "longitude_deg": "77.90523", + "elevation_ft": "3333", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-JET", + "municipality": "Karashoky", + "scheduled_service": "no" + }, + { + "id": "342852", + "ident": "KZ-0106", + "type": "small_airport", + "name": "Moyynkum Airport", + "latitude_deg": "44.27171", + "longitude_deg": "72.94743", + "elevation_ft": "1145", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ZHA", + "municipality": "Moyynkum", + "scheduled_service": "no" + }, + { + "id": "342853", + "ident": "KZ-0107", + "type": "closed", + "name": "Zhuantobe Airport", + "latitude_deg": "44.77185", + "longitude_deg": "68.83379", + "elevation_ft": "568", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-SEV", + "municipality": "Zhuantobe", + "scheduled_service": "no" + }, + { + "id": "342854", + "ident": "KZ-0108", + "type": "small_airport", + "name": "Kokpek Highway Strip", + "latitude_deg": "43.442318", + "longitude_deg": "78.858286", + "elevation_ft": "1067", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Kokpek", + "scheduled_service": "no", + "keywords": "Кокпек, Kokpek East" + }, + { + "id": "342855", + "ident": "KZ-0109", + "type": "small_airport", + "name": "Romanovka Airfield", + "latitude_deg": "50.82409", + "longitude_deg": "71.368612", + "elevation_ft": "1211", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-AKM", + "municipality": "Romanovka", + "scheduled_service": "no" + }, + { + "id": "342856", + "ident": "KZ-0110", + "type": "small_airport", + "name": "Zholaman Airfield", + "latitude_deg": "51.2987", + "longitude_deg": "71.4654", + "elevation_ft": "1169", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-AKM", + "municipality": "Gerasimovskoye", + "scheduled_service": "no" + }, + { + "id": "342857", + "ident": "KZ-0111", + "type": "small_airport", + "name": "Stolichny Airfield", + "latitude_deg": "51.31632", + "longitude_deg": "71.36083", + "elevation_ft": "1152", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-AKM", + "municipality": "Gerasimovskoye", + "scheduled_service": "no" + }, + { + "id": "342859", + "ident": "KZ-0112", + "type": "small_airport", + "name": "Balapan Airfield", + "latitude_deg": "49.729771", + "longitude_deg": "73.300537", + "elevation_ft": "1795", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KAR", + "municipality": "Karagandy", + "scheduled_service": "no" + }, + { + "id": "342860", + "ident": "KZ-0113", + "type": "small_airport", + "name": "Ulken Airport", + "latitude_deg": "45.1671", + "longitude_deg": "74.0011", + "elevation_ft": "1146", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Ulken", + "scheduled_service": "no" + }, + { + "id": "346658", + "ident": "KZ-0114", + "type": "small_airport", + "name": "Bayanaul Airport", + "latitude_deg": "50.778128", + "longitude_deg": "75.744596", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-PAV", + "municipality": "Bayanaul", + "scheduled_service": "no" + }, + { + "id": "349398", + "ident": "KZ-0115", + "type": "heliport", + "name": "Korshunovo Heliport", + "latitude_deg": "50.02167", + "longitude_deg": "82.76205", + "elevation_ft": "1027", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-VOS", + "municipality": "Ust-Kamenogorsk (Oskemen)", + "scheduled_service": "no" + }, + { + "id": "349401", + "ident": "KZ-0116", + "type": "closed", + "name": "Kabanbay Airport", + "latitude_deg": "45.822913", + "longitude_deg": "80.679653", + "elevation_ft": "2279", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-JET", + "municipality": "Terekty", + "scheduled_service": "no" + }, + { + "id": "351012", + "ident": "KZ-0117", + "type": "heliport", + "name": "Bautino East Heliport", + "latitude_deg": "44.572237", + "longitude_deg": "50.291919", + "elevation_ft": "408", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-MAN", + "municipality": "Bautino", + "scheduled_service": "no" + }, + { + "id": "351013", + "ident": "KZ-0118", + "type": "heliport", + "name": "Malaya Almatynka Helipad", + "latitude_deg": "43.17608", + "longitude_deg": "77.00602", + "elevation_ft": "4829", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALA", + "municipality": "Almaty", + "scheduled_service": "no" + }, + { + "id": "351014", + "ident": "KZ-0119", + "type": "heliport", + "name": "MCHS Heliport", + "latitude_deg": "43.10987", + "longitude_deg": "76.91634", + "elevation_ft": "4777", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALA", + "municipality": "Almaty", + "scheduled_service": "no" + }, + { + "id": "351015", + "ident": "KZ-0120", + "type": "heliport", + "name": "Karakum Private Heliport", + "latitude_deg": "46.83105", + "longitude_deg": "79.57243", + "elevation_ft": "1168", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ABA", + "municipality": "Karakum", + "scheduled_service": "no" + }, + { + "id": "351074", + "ident": "KZ-0121", + "type": "heliport", + "name": "Kendirli Recreation Center Heliport", + "latitude_deg": "42.78257", + "longitude_deg": "52.63324", + "elevation_ft": "-66", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-MAN", + "municipality": "Fetisovo", + "scheduled_service": "no" + }, + { + "id": "351207", + "ident": "KZ-0122", + "type": "heliport", + "name": "ERSAI Heliport", + "latitude_deg": "43.19402", + "longitude_deg": "51.58941", + "elevation_ft": "-71", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-MAN", + "municipality": "Kuryk", + "scheduled_service": "no" + }, + { + "id": "351208", + "ident": "KZ-0123", + "type": "heliport", + "name": "Ikum Heliport", + "latitude_deg": "43.19109", + "longitude_deg": "51.28709", + "elevation_ft": "-36", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-MAN", + "municipality": "Ikum", + "scheduled_service": "no" + }, + { + "id": "351209", + "ident": "KZ-0124", + "type": "heliport", + "name": "Bautino Port Heliport", + "latitude_deg": "44.56439", + "longitude_deg": "50.24676", + "elevation_ft": "-85", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-MAN", + "municipality": "Bautino", + "scheduled_service": "no" + }, + { + "id": "351210", + "ident": "KZ-0125", + "type": "heliport", + "name": "Teniz Hotel Heliport", + "latitude_deg": "44.53952", + "longitude_deg": "50.24407", + "elevation_ft": "-79", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-MAN", + "municipality": "Bautino", + "scheduled_service": "no" + }, + { + "id": "351211", + "ident": "KZ-0126", + "type": "heliport", + "name": "Akku Hotel Complex Heliport", + "latitude_deg": "44.51206", + "longitude_deg": "50.24457", + "elevation_ft": "-85", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-MAN", + "municipality": "Fort-Shevchenko", + "scheduled_service": "no" + }, + { + "id": "351215", + "ident": "KZ-0127", + "type": "small_airport", + "name": "Sarykamys Airport", + "latitude_deg": "45.9154", + "longitude_deg": "53.58665", + "elevation_ft": "-75", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-MAN", + "municipality": "Sarykamys", + "scheduled_service": "no" + }, + { + "id": "351216", + "ident": "KZ-0128", + "type": "heliport", + "name": "Yuzhnyy Tengiz Heliport", + "latitude_deg": "45.89095", + "longitude_deg": "53.56719", + "elevation_ft": "-88", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-MAN", + "municipality": "Sarykamys", + "scheduled_service": "no" + }, + { + "id": "351295", + "ident": "KZ-0129", + "type": "heliport", + "name": "Almaty City Clinical Hospital Number 4 Heliport", + "latitude_deg": "43.32059", + "longitude_deg": "76.96088", + "elevation_ft": "2300", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALA", + "municipality": "Almaty", + "scheduled_service": "no" + }, + { + "id": "351300", + "ident": "KZ-0130", + "type": "heliport", + "name": "Shengeldy East Heliport", + "latitude_deg": "43.99468", + "longitude_deg": "77.48463", + "elevation_ft": "1834", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Shengeldy", + "scheduled_service": "no" + }, + { + "id": "351301", + "ident": "KZ-0131", + "type": "heliport", + "name": "Shengeldy North Heliport", + "latitude_deg": "43.99484", + "longitude_deg": "77.46949", + "elevation_ft": "1821", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Shengeldy", + "scheduled_service": "no" + }, + { + "id": "351303", + "ident": "KZ-0132", + "type": "small_airport", + "name": "Lepsy Airport", + "latitude_deg": "46.25687", + "longitude_deg": "78.90478", + "elevation_ft": "1345", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-JET", + "municipality": "Lepsy", + "scheduled_service": "no" + }, + { + "id": "351304", + "ident": "KZ-0133", + "type": "small_airport", + "name": "Dzhaksy Dzhartasskiy Airport", + "latitude_deg": "47.32725", + "longitude_deg": "80.52767", + "elevation_ft": "1732", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ABA", + "municipality": "Dzhaksy Dzhartasskiy", + "scheduled_service": "no" + }, + { + "id": "351305", + "ident": "KZ-0134", + "type": "heliport", + "name": "Bayanaul Heliport", + "latitude_deg": "50.83366", + "longitude_deg": "75.5568", + "elevation_ft": "1298", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-PAV", + "municipality": "Bayanaul", + "scheduled_service": "no" + }, + { + "id": "351308", + "ident": "KZ-0135", + "type": "heliport", + "name": "Kazakhstan Heliport", + "latitude_deg": "44.237344", + "longitude_deg": "76.734012", + "elevation_ft": "1434", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Kazakhstan", + "scheduled_service": "no" + }, + { + "id": "353455", + "ident": "KZ-0136", + "type": "heliport", + "name": "Zhezkent Heliport", + "latitude_deg": "50.92777", + "longitude_deg": "81.36615", + "elevation_ft": "915", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ABA", + "municipality": "Zhezkent", + "scheduled_service": "no" + }, + { + "id": "356394", + "ident": "KZ-0137", + "type": "closed", + "name": "Shelek Airport", + "latitude_deg": "43.63953", + "longitude_deg": "78.31338", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Shelek", + "scheduled_service": "no" + }, + { + "id": "34977", + "ident": "KZ-6022", + "type": "closed", + "name": "Dolon Southwest Air Base", + "latitude_deg": "50.25", + "longitude_deg": "79.083298", + "elevation_ft": "830", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ABA", + "municipality": "Semey", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dolon_Southwest", + "keywords": "Semipalatinsk" + }, + { + "id": "34976", + "ident": "KZ-7470", + "type": "medium_airport", + "name": "Dolon Air Base", + "latitude_deg": "50.536891", + "longitude_deg": "79.194689", + "elevation_ft": "705", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ABA", + "municipality": "Semey", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dolon_(air_base)", + "keywords": "Chagan-16, Semipalitinsk Dolon" + }, + { + "id": "30659", + "ident": "KZ-ATX", + "type": "small_airport", + "name": "Atbasar Airport", + "latitude_deg": "51.852306", + "longitude_deg": "68.366892", + "elevation_ft": "1010", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-AKM", + "municipality": "Atbasar", + "scheduled_service": "no", + "iata_code": "ATX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atbasar_Airport", + "keywords": "Аэропорт Атбасар" + }, + { + "id": "21436", + "ident": "KZ01", + "type": "small_airport", + "name": "Eglin Auxiliary Field 6 Airport", + "latitude_deg": "30.6336994171", + "longitude_deg": "-86.7426986694", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Valparaiso", + "scheduled_service": "no", + "gps_code": "KZ01", + "local_code": "KZ01" + }, + { + "id": "21437", + "ident": "KZ10", + "type": "small_airport", + "name": "Fort Lewis Road / Pacemaker Landing Zone Airport", + "latitude_deg": "47.021702", + "longitude_deg": "-122.445999", + "elevation_ft": "397", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Spanaway", + "scheduled_service": "no", + "keywords": "KZ10" + }, + { + "id": "320813", + "ident": "KZ12", + "type": "closed", + "name": "General Mitchell Intl Heliport", + "latitude_deg": "42.9378", + "longitude_deg": "-87.9003", + "elevation_ft": "676", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Milwaukee", + "scheduled_service": "no", + "gps_code": "KZ12", + "local_code": "KZ12" + }, + { + "id": "320811", + "ident": "KZ15", + "type": "closed", + "name": "Adams Field Heliport", + "latitude_deg": "34.7315", + "longitude_deg": "-92.2391", + "elevation_ft": "259", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Little Rock", + "scheduled_service": "no", + "gps_code": "KZ15", + "local_code": "KZ15" + }, + { + "id": "320809", + "ident": "KZ19", + "type": "heliport", + "name": "Davison Army Airfield Heliport", + "latitude_deg": "38.7174", + "longitude_deg": "-77.180402", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fort Belvoir", + "scheduled_service": "no", + "gps_code": "KZ19", + "local_code": "KZ19" + }, + { + "id": "300191", + "ident": "KZ23", + "type": "heliport", + "name": "West Bend Municipal Helipad", + "latitude_deg": "43.4219444444", + "longitude_deg": "-88.1333333333", + "elevation_ft": "881", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "West Bend", + "scheduled_service": "no", + "local_code": "KZ23" + }, + { + "id": "300190", + "ident": "KZ24", + "type": "heliport", + "name": "Naval Medical Center Helipad", + "latitude_deg": "36.8483333333", + "longitude_deg": "-76.31388888890001", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Portsmouth", + "scheduled_service": "no", + "gps_code": "KZ24", + "local_code": "Z24" + }, + { + "id": "300188", + "ident": "KZ26", + "type": "heliport", + "name": "Camp Roberts Army Heliport", + "latitude_deg": "35.791389", + "longitude_deg": "-120.742778", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Miguel", + "scheduled_service": "no", + "gps_code": "KZ26" + }, + { + "id": "320807", + "ident": "KZ27", + "type": "heliport", + "name": "Pyramid Head Helipad", + "latitude_deg": "32.8366", + "longitude_deg": "-118.381601", + "elevation_ft": "973", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Clemente Island", + "scheduled_service": "no", + "gps_code": "KZ27", + "local_code": "KZ27" + }, + { + "id": "320805", + "ident": "KZ32", + "type": "heliport", + "name": "Marine Corps Recruit Depot Heliport", + "latitude_deg": "32.3441", + "longitude_deg": "-80.6733", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Parris Island", + "scheduled_service": "no", + "gps_code": "KZ32", + "local_code": "KZ32" + }, + { + "id": "21439", + "ident": "KZ98", + "type": "small_airport", + "name": "Ottawa Executive Airport", + "latitude_deg": "42.81719970703125", + "longitude_deg": "-85.9281005859375", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Zeeland", + "scheduled_service": "no", + "gps_code": "KZ98", + "local_code": "Z98" + }, + { + "id": "308357", + "ident": "KZB", + "type": "seaplane_base", + "name": "Zachar Bay Seaplane Base", + "latitude_deg": "57.553001", + "longitude_deg": "-153.746052", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Zachar Bay", + "scheduled_service": "yes", + "iata_code": "KZB", + "local_code": "KZB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zachar_Bay_Seaplane_Base" + }, + { + "id": "21440", + "ident": "KZEF", + "type": "small_airport", + "name": "Elkin Municipal Airport", + "latitude_deg": "36.279998779296875", + "longitude_deg": "-80.78610229492188", + "elevation_ft": "1068", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Elkin", + "scheduled_service": "no", + "gps_code": "KZEF", + "local_code": "ZEF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elkin_Municipal_Airport" + }, + { + "id": "21441", + "ident": "KZER", + "type": "small_airport", + "name": "Schuylkill County Joe Zerbey Airport", + "latitude_deg": "40.706501", + "longitude_deg": "-76.3731", + "elevation_ft": "1729", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pottsville", + "scheduled_service": "no", + "gps_code": "KZER", + "local_code": "ZER", + "wikipedia_link": "https://en.wikipedia.org/wiki/Schuylkill_County_Airport" + }, + { + "id": "302157", + "ident": "KZF", + "type": "small_airport", + "name": "Kaintiba Airport", + "latitude_deg": "-7.50025", + "longitude_deg": "146.033833333", + "elevation_ft": "2050", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Kaintiba", + "scheduled_service": "no", + "gps_code": "AYKT", + "iata_code": "KZF", + "local_code": "KNT" + }, + { + "id": "21442", + "ident": "KZPH", + "type": "small_airport", + "name": "Zephyrhills Municipal Airport", + "latitude_deg": "28.228201", + "longitude_deg": "-82.155899", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Zephyrhills", + "scheduled_service": "no", + "gps_code": "KZPH", + "iata_code": "ZPH", + "local_code": "ZPH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zephyrhills_Municipal_Airport" + }, + { + "id": "21443", + "ident": "KZUN", + "type": "closed", + "name": "Black Rock Airport", + "latitude_deg": "35.083199", + "longitude_deg": "-108.792", + "elevation_ft": "6454", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Zuni Pueblo", + "scheduled_service": "no", + "local_code": "ZUN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Black_Rock_Airport", + "keywords": "KZUN, ZUN" + }, + { + "id": "3967", + "ident": "KZZV", + "type": "medium_airport", + "name": "Zanesville Municipal Airport", + "latitude_deg": "39.9444007874", + "longitude_deg": "-81.89209747310001", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Zanesville", + "scheduled_service": "no", + "gps_code": "KZZV", + "iata_code": "ZZV", + "local_code": "ZZV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zanesville_Municipal_Airport" + }, + { + "id": "21444", + "ident": "L11", + "type": "seaplane_base", + "name": "Pebbly Beach Seaplane Base", + "latitude_deg": "33.338402", + "longitude_deg": "-118.311996", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Avalon", + "scheduled_service": "no", + "gps_code": "KL11", + "local_code": "L11" + }, + { + "id": "21445", + "ident": "L18", + "type": "small_airport", + "name": "Fallbrook Community Airpark", + "latitude_deg": "33.35419845581055", + "longitude_deg": "-117.2509994506836", + "elevation_ft": "708", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fallbrook", + "scheduled_service": "no", + "gps_code": "L18", + "local_code": "L18", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fallbrook_Community_Airpark" + }, + { + "id": "21446", + "ident": "L20", + "type": "small_airport", + "name": "Coal Creek Airport", + "latitude_deg": "65.3113021850586", + "longitude_deg": "-143.13499450683594", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Yukon Charley Rivers", + "scheduled_service": "no", + "gps_code": "L20", + "local_code": "L20" + }, + { + "id": "21447", + "ident": "L25", + "type": "small_airport", + "name": "Pearce Ferry Airport", + "latitude_deg": "36.09360122680664", + "longitude_deg": "-114.0459976196289", + "elevation_ft": "2941", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Meadview", + "scheduled_service": "no", + "gps_code": "L25", + "local_code": "L25" + }, + { + "id": "21449", + "ident": "L36", + "type": "small_airport", + "name": "Rio Linda Airport", + "latitude_deg": "38.67499923706055", + "longitude_deg": "-121.44499969482422", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rio Linda", + "scheduled_service": "no", + "gps_code": "L36", + "local_code": "L36" + }, + { + "id": "21450", + "ident": "L37", + "type": "small_airport", + "name": "Grand Canyon Caverns Airport", + "latitude_deg": "35.52830123901367", + "longitude_deg": "-113.24700164794922", + "elevation_ft": "5386", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peach Springs", + "scheduled_service": "no", + "gps_code": "L37", + "local_code": "L37" + }, + { + "id": "21451", + "ident": "L40", + "type": "closed", + "name": "Colfax Airport", + "latitude_deg": "31.516001", + "longitude_deg": "-92.6912", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Colfax", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Colfax_Airport", + "keywords": "L40" + }, + { + "id": "21452", + "ident": "L44", + "type": "small_airport", + "name": "Moundville Airport", + "latitude_deg": "32.96820068359375", + "longitude_deg": "-87.6406021118164", + "elevation_ft": "162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Moundville", + "scheduled_service": "no", + "gps_code": "L44", + "local_code": "L44" + }, + { + "id": "21453", + "ident": "L52", + "type": "small_airport", + "name": "Oceano County Airport", + "latitude_deg": "35.10139846801758", + "longitude_deg": "-120.62200164794922", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceano", + "scheduled_service": "no", + "gps_code": "L52", + "local_code": "L52", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oceano_County_Airport" + }, + { + "id": "21454", + "ident": "L53", + "type": "small_airport", + "name": "Lodi Airpark", + "latitude_deg": "38.08409881591797", + "longitude_deg": "-121.31600189208984", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lodi", + "scheduled_service": "no", + "gps_code": "L53", + "local_code": "L53" + }, + { + "id": "21455", + "ident": "L54", + "type": "small_airport", + "name": "Agua Caliente Airport", + "latitude_deg": "32.95009994506836", + "longitude_deg": "-116.29299926757812", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Agua Caliente Springs", + "scheduled_service": "no", + "gps_code": "L54", + "local_code": "L54", + "wikipedia_link": "https://en.wikipedia.org/wiki/Agua_Caliente_Airport" + }, + { + "id": "21456", + "ident": "L57", + "type": "closed", + "name": "Hidden Hills Airport", + "latitude_deg": "36.006401", + "longitude_deg": "-115.862999", + "elevation_ft": "2808", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Pahrump", + "scheduled_service": "no", + "keywords": "L57" + }, + { + "id": "21457", + "ident": "L61", + "type": "small_airport", + "name": "Shoshone Airport", + "latitude_deg": "35.96860122680664", + "longitude_deg": "-116.26899719238281", + "elevation_ft": "1568", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Shoshone", + "scheduled_service": "no", + "gps_code": "L61", + "local_code": "L61" + }, + { + "id": "21458", + "ident": "L78", + "type": "small_airport", + "name": "Jacumba Airport", + "latitude_deg": "32.61600112915039", + "longitude_deg": "-116.16500091552734", + "elevation_ft": "2844", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Jacumba", + "scheduled_service": "no", + "gps_code": "L78", + "local_code": "L78" + }, + { + "id": "21459", + "ident": "L80", + "type": "closed", + "name": "Roy Williams Airport", + "latitude_deg": "34.154202", + "longitude_deg": "-116.251999", + "elevation_ft": "2464", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Joshua Tree", + "scheduled_service": "no", + "keywords": "Hi Desert, K Field, L80" + }, + { + "id": "21460", + "ident": "L85", + "type": "seaplane_base", + "name": "Mackeys Lakes Seaplane Base", + "latitude_deg": "60.5335998535", + "longitude_deg": "-150.996002197", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Soldotna", + "scheduled_service": "no", + "gps_code": "L85", + "local_code": "L85" + }, + { + "id": "21461", + "ident": "L87", + "type": "heliport", + "name": "Ida's Heliport", + "latitude_deg": "33.00429916381836", + "longitude_deg": "-93.89320373535156", + "elevation_ft": "286", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Ida", + "scheduled_service": "no", + "gps_code": "L87", + "local_code": "L87" + }, + { + "id": "21462", + "ident": "L89", + "type": "small_airport", + "name": "Kibs Air Park", + "latitude_deg": "30.3813", + "longitude_deg": "-92.146004", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bristol", + "scheduled_service": "no", + "gps_code": "7LA4", + "local_code": "7LA4", + "keywords": "L89" + }, + { + "id": "21463", + "ident": "L90", + "type": "small_airport", + "name": "Ocotillo Airport", + "latitude_deg": "33.150001525878906", + "longitude_deg": "-116.13300323486328", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ocotillo Wells", + "scheduled_service": "no", + "gps_code": "L90", + "local_code": "L90" + }, + { + "id": "21464", + "ident": "L92", + "type": "small_airport", + "name": "Alamo Landing Field", + "latitude_deg": "37.36249923706055", + "longitude_deg": "-115.19400024414062", + "elevation_ft": "3719", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Alamo", + "scheduled_service": "no", + "gps_code": "L92", + "local_code": "L92", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alamo_Landing_Field" + }, + { + "id": "21465", + "ident": "L93", + "type": "seaplane_base", + "name": "Robe Lake Seaplane Base", + "latitude_deg": "61.0871009827", + "longitude_deg": "-146.143997192", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Valdez", + "scheduled_service": "no", + "gps_code": "L93", + "local_code": "L93" + }, + { + "id": "21466", + "ident": "L95", + "type": "seaplane_base", + "name": "Jones Landing Seaplane Base", + "latitude_deg": "61.5547981262207", + "longitude_deg": "-149.93899536132812", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "L95", + "local_code": "L95" + }, + { + "id": "44413", + "ident": "LA-0001", + "type": "closed", + "name": "LS 6 Airfield", + "latitude_deg": "18.924999", + "longitude_deg": "102.450996", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-VI", + "municipality": "Vang Vieng", + "scheduled_service": "no", + "keywords": "Lima Site 6 Airfield" + }, + { + "id": "44414", + "ident": "LA-0002", + "type": "closed", + "name": "Long Tieng Airfield", + "latitude_deg": "19.10700035095215", + "longitude_deg": "102.92400360107422", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-XI", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Long_Tieng", + "keywords": "Long Chieng Airfield, Long Cheng Airfield, Long Chen Airfield, Lima Site 20A Airfield, Lima Site 98 Airfield, LS 20A Airfield, LS 98 Airfield" + }, + { + "id": "299996", + "ident": "LA-0003", + "type": "closed", + "name": "Muang Ou Tai Airport", + "latitude_deg": "22.121944", + "longitude_deg": "101.799167", + "elevation_ft": "2314", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-PH", + "municipality": "Muang Ou Tai", + "scheduled_service": "no" + }, + { + "id": "299997", + "ident": "LA-0004", + "type": "closed", + "name": "Muang Souy Airfield", + "latitude_deg": "19.5238888889", + "longitude_deg": "102.889166667", + "elevation_ft": "3721", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-XI", + "municipality": "Muang Souy", + "scheduled_service": "no", + "keywords": "Moung Soui" + }, + { + "id": "430337", + "ident": "LA-0005", + "type": "small_airport", + "name": "Khoksa Airfield", + "latitude_deg": "18.068039", + "longitude_deg": "102.910591", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-VT", + "scheduled_service": "no" + }, + { + "id": "430434", + "ident": "LA-0006", + "type": "medium_airport", + "name": "Bokeo International Airport", + "latitude_deg": "20.324", + "longitude_deg": "100.165", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-U-A", + "municipality": "Ton Phueng", + "scheduled_service": "yes" + }, + { + "id": "21467", + "ident": "LA00", + "type": "heliport", + "name": "Baton Rouge General Medical Center Heliport", + "latitude_deg": "30.395334", + "longitude_deg": "-91.094924", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no", + "gps_code": "LA00", + "local_code": "LA00" + }, + { + "id": "21468", + "ident": "LA01", + "type": "small_airport", + "name": "Millers Flying Service Airport", + "latitude_deg": "30.48349952697754", + "longitude_deg": "-92.54679870605469", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Basile", + "scheduled_service": "no", + "gps_code": "LA01", + "local_code": "LA01" + }, + { + "id": "21469", + "ident": "LA02", + "type": "heliport", + "name": "Hammond Developmental Center Heliport", + "latitude_deg": "30.518400192260742", + "longitude_deg": "-90.56649780273438", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Hammond", + "scheduled_service": "no", + "gps_code": "LA02", + "local_code": "LA02" + }, + { + "id": "43028", + "ident": "LA03", + "type": "closed", + "name": "LSU University Hospital Heliport", + "latitude_deg": "29.956444", + "longitude_deg": "-90.084969", + "elevation_ft": "142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no", + "keywords": "LA03" + }, + { + "id": "21471", + "ident": "LA04", + "type": "closed", + "name": "Cane-Air Airport", + "latitude_deg": "30.042411", + "longitude_deg": "-91.063448", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Belle Rose", + "scheduled_service": "no", + "keywords": "LA04" + }, + { + "id": "21472", + "ident": "LA05", + "type": "heliport", + "name": "Baton Rouge Heliport", + "latitude_deg": "30.364200592041016", + "longitude_deg": "-91.04900360107422", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no", + "gps_code": "LA05", + "local_code": "LA05" + }, + { + "id": "21473", + "ident": "LA06", + "type": "heliport", + "name": "St Luke General Hospital Heliport", + "latitude_deg": "30.401899337768555", + "longitude_deg": "-91.93509674072266", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Arnaudville", + "scheduled_service": "no", + "gps_code": "LA06", + "local_code": "LA06" + }, + { + "id": "21474", + "ident": "LA07", + "type": "small_airport", + "name": "Price Ultralightport", + "latitude_deg": "30.517499923706055", + "longitude_deg": "-90.00830078125", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Abita Springs", + "scheduled_service": "no", + "gps_code": "LA07", + "local_code": "LA07" + }, + { + "id": "21475", + "ident": "LA08", + "type": "heliport", + "name": "Jesuits Bend Heliport", + "latitude_deg": "29.75771", + "longitude_deg": "-90.03488", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Belle Chasse", + "scheduled_service": "no", + "gps_code": "LA08", + "local_code": "LA08" + }, + { + "id": "21476", + "ident": "LA09", + "type": "heliport", + "name": "Air Logistics (Intracoastal City) Heliport", + "latitude_deg": "29.783667", + "longitude_deg": "-92.163133", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Intracoastal City", + "scheduled_service": "no", + "gps_code": "LA09", + "local_code": "LA09" + }, + { + "id": "21477", + "ident": "LA10", + "type": "closed", + "name": "Metro Ambulance Service Heliport", + "latitude_deg": "32.507401", + "longitude_deg": "-92.111198", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Monroe", + "scheduled_service": "no", + "keywords": "LA10" + }, + { + "id": "21478", + "ident": "LA11", + "type": "heliport", + "name": "Nl Baroid Heliport", + "latitude_deg": "29.098800659179688", + "longitude_deg": "-90.21040344238281", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Fourchon", + "scheduled_service": "no", + "gps_code": "LA11", + "local_code": "LA11" + }, + { + "id": "21479", + "ident": "LA12", + "type": "heliport", + "name": "Louisiana State Police Troop B Helipad Heliport", + "latitude_deg": "30.010814", + "longitude_deg": "-90.239242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kenner", + "scheduled_service": "no", + "gps_code": "LA12", + "local_code": "LA12" + }, + { + "id": "21480", + "ident": "LA13", + "type": "small_airport", + "name": "Shaw Crop Service Airport", + "latitude_deg": "30.57819938659668", + "longitude_deg": "-90.31590270996094", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Hammond", + "scheduled_service": "no", + "gps_code": "LA13", + "local_code": "LA13" + }, + { + "id": "21481", + "ident": "LA14", + "type": "heliport", + "name": "Coffman Heliport", + "latitude_deg": "32.5105552673", + "longitude_deg": "-92.1508331299", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "West Monroe", + "scheduled_service": "no", + "gps_code": "LA14", + "local_code": "LA14" + }, + { + "id": "21482", + "ident": "LA15", + "type": "closed", + "name": "Wilbert Airport", + "latitude_deg": "30.259899", + "longitude_deg": "-91.286201", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Plaquemine", + "scheduled_service": "no", + "keywords": "LA15" + }, + { + "id": "21483", + "ident": "LA16", + "type": "small_airport", + "name": "Castille Field", + "latitude_deg": "30.246000289916992", + "longitude_deg": "-91.8667984008789", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Breaux Bridge", + "scheduled_service": "no", + "gps_code": "LA16", + "local_code": "LA16" + }, + { + "id": "21484", + "ident": "LA17", + "type": "closed", + "name": "Pioneer Field Flight Park Ultralightport", + "latitude_deg": "32.601799", + "longitude_deg": "-93.694099", + "elevation_ft": "173", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bossier City", + "scheduled_service": "no" + }, + { + "id": "21485", + "ident": "LA18", + "type": "heliport", + "name": "Bunkie General Hospital Heliport", + "latitude_deg": "30.952499389648438", + "longitude_deg": "-92.1769027709961", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bunkie", + "scheduled_service": "no", + "gps_code": "LA18", + "local_code": "LA18" + }, + { + "id": "21486", + "ident": "LA19", + "type": "heliport", + "name": "CHRISTUS Coushatta Health Care Center Heliport", + "latitude_deg": "32.02128", + "longitude_deg": "-93.34435", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Coushatta", + "scheduled_service": "no", + "gps_code": "LA19", + "local_code": "LA19" + }, + { + "id": "21487", + "ident": "LA20", + "type": "heliport", + "name": "CHRISTUS St Frances Cabrini Hospital Heliport", + "latitude_deg": "31.28324", + "longitude_deg": "-92.46289", + "elevation_ft": "147", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Alexandria", + "scheduled_service": "no", + "gps_code": "LA20", + "local_code": "LA20", + "keywords": "LA62" + }, + { + "id": "21488", + "ident": "LA21", + "type": "small_airport", + "name": "Chloe Airport", + "latitude_deg": "30.254899978637695", + "longitude_deg": "-93.13520050048828", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Charles", + "scheduled_service": "no", + "gps_code": "LA21", + "local_code": "LA21" + }, + { + "id": "21489", + "ident": "LA22", + "type": "heliport", + "name": "PG&E Livermore Training Center Heliport", + "latitude_deg": "37.699064", + "longitude_deg": "-121.709742", + "elevation_ft": "572", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Livermore", + "scheduled_service": "no", + "gps_code": "LA22", + "local_code": "LA22" + }, + { + "id": "21490", + "ident": "LA23", + "type": "heliport", + "name": "Citizens Medical Center Heliport", + "latitude_deg": "32.07809829711914", + "longitude_deg": "-92.09420013427734", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "LA23", + "local_code": "LA23" + }, + { + "id": "21491", + "ident": "LA24", + "type": "heliport", + "name": "St Tammany Parish Hospital Heliport", + "latitude_deg": "30.467275", + "longitude_deg": "-90.11305", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Covington", + "scheduled_service": "no", + "gps_code": "LA24", + "local_code": "LA24" + }, + { + "id": "21492", + "ident": "LA25", + "type": "small_airport", + "name": "Central Farmers Coop Airport", + "latitude_deg": "30.697399139404297", + "longitude_deg": "-92.41400146484375", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Mamou", + "scheduled_service": "no", + "gps_code": "LA25", + "local_code": "LA25" + }, + { + "id": "21493", + "ident": "LA26", + "type": "small_airport", + "name": "Unicorn Airport", + "latitude_deg": "30.661100387573242", + "longitude_deg": "-90.2332992553711", + "elevation_ft": "147", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Folsom", + "scheduled_service": "no", + "gps_code": "LA26", + "local_code": "LA26" + }, + { + "id": "21494", + "ident": "LA27", + "type": "heliport", + "name": "Texas Eastern Transmission Maintenance Hq Heliport", + "latitude_deg": "30.223596", + "longitude_deg": "-93.131044", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Charles", + "scheduled_service": "no", + "gps_code": "LA27", + "local_code": "LA27" + }, + { + "id": "21495", + "ident": "LA28", + "type": "heliport", + "name": "Louisiana State Police Headquarters Heliport", + "latitude_deg": "30.448200225800004", + "longitude_deg": "-91.1060028076", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no", + "gps_code": "LA28", + "local_code": "LA28" + }, + { + "id": "21496", + "ident": "LA29", + "type": "heliport", + "name": "Byrd Regional Hospital Heliport", + "latitude_deg": "31.137544", + "longitude_deg": "-93.269162", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Leesville", + "scheduled_service": "no", + "gps_code": "LA29", + "local_code": "LA29", + "keywords": "Byrd Memorial" + }, + { + "id": "21497", + "ident": "LA30", + "type": "small_airport", + "name": "Phoenix Airport", + "latitude_deg": "30.248199462890625", + "longitude_deg": "-92.24169921875", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Rayne", + "scheduled_service": "no", + "gps_code": "LA30", + "local_code": "LA30" + }, + { + "id": "21498", + "ident": "LA31", + "type": "closed", + "name": "Gotreaux Strip", + "latitude_deg": "30.200001", + "longitude_deg": "-92.933296", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Welsh", + "scheduled_service": "no", + "keywords": "LA31" + }, + { + "id": "21499", + "ident": "LA32", + "type": "small_airport", + "name": "Lake Air Service Airport", + "latitude_deg": "30.094679", + "longitude_deg": "-92.70092", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Arthur", + "scheduled_service": "no", + "gps_code": "LA32", + "local_code": "LA32" + }, + { + "id": "21500", + "ident": "LA33", + "type": "small_airport", + "name": "Cuba Farm Airport", + "latitude_deg": "32.575997", + "longitude_deg": "-92.108324", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "LA33", + "local_code": "LA33" + }, + { + "id": "21501", + "ident": "LA34", + "type": "small_airport", + "name": "Reno Flight Park Airport", + "latitude_deg": "32.40520095825195", + "longitude_deg": "-92.06639862060547", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "LA34", + "local_code": "LA34" + }, + { + "id": "45983", + "ident": "LA35", + "type": "small_airport", + "name": "Summerville Airstrip", + "latitude_deg": "31.161677", + "longitude_deg": "-92.421551", + "elevation_ft": "77", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Le Compte", + "scheduled_service": "no", + "gps_code": "LA35", + "local_code": "LA35", + "keywords": "LA22" + }, + { + "id": "43046", + "ident": "LA36", + "type": "small_airport", + "name": "Whitehall Field Ultralightport", + "latitude_deg": "30.07980537", + "longitude_deg": "-90.8932724", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Convent", + "scheduled_service": "no", + "gps_code": "LA36", + "local_code": "LA36" + }, + { + "id": "21504", + "ident": "LA37", + "type": "heliport", + "name": "West Feliciana Parish Hospital Heliport", + "latitude_deg": "30.784700393676758", + "longitude_deg": "-91.36530303955078", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "St Francisville", + "scheduled_service": "no", + "gps_code": "LA37", + "local_code": "LA37" + }, + { + "id": "21505", + "ident": "LA38", + "type": "seaplane_base", + "name": "Pelican Seaplane Base", + "latitude_deg": "30.26689910888672", + "longitude_deg": "-89.8052978515625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Slidell", + "scheduled_service": "no", + "gps_code": "LA38", + "local_code": "LA38" + }, + { + "id": "21506", + "ident": "LA39", + "type": "heliport", + "name": "Chalkley Heliport", + "latitude_deg": "30.010700225830078", + "longitude_deg": "-93.05130004882812", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bell City", + "scheduled_service": "no", + "gps_code": "LA39", + "local_code": "LA39" + }, + { + "id": "21507", + "ident": "LA40", + "type": "small_airport", + "name": "F L Braughton Airport", + "latitude_deg": "31.338428", + "longitude_deg": "-91.593332", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Vidalia", + "scheduled_service": "no", + "gps_code": "LA40", + "local_code": "LA40" + }, + { + "id": "21508", + "ident": "LA41", + "type": "small_airport", + "name": "Dupuis Airport", + "latitude_deg": "30.315667", + "longitude_deg": "-91.940778", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Breaux Bridge", + "scheduled_service": "no", + "gps_code": "LA41", + "local_code": "LA41" + }, + { + "id": "21509", + "ident": "LA42", + "type": "small_airport", + "name": "Capozzoli Airport", + "latitude_deg": "30.3503", + "longitude_deg": "-90.922203", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Prairieville", + "scheduled_service": "no", + "gps_code": "6LA2", + "local_code": "6LA2", + "keywords": "LA42" + }, + { + "id": "21510", + "ident": "LA43", + "type": "heliport", + "name": "Air Logistics 2 Heliport", + "latitude_deg": "30.04520034790039", + "longitude_deg": "-91.88150024414062", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Iberia", + "scheduled_service": "no", + "gps_code": "LA43", + "local_code": "LA43" + }, + { + "id": "21511", + "ident": "LA44", + "type": "heliport", + "name": "Calpine Heliport", + "latitude_deg": "30.2307662964", + "longitude_deg": "-90.0640182495", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "St Gabriel", + "scheduled_service": "no", + "gps_code": "LA44", + "local_code": "LA44" + }, + { + "id": "21512", + "ident": "LA45", + "type": "heliport", + "name": "Landmark of Plaquemine Heliport", + "latitude_deg": "30.261346", + "longitude_deg": "-91.246122", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Plaquemine", + "scheduled_service": "no", + "gps_code": "LA45", + "local_code": "LA45", + "keywords": "River West Medical Center Heliport" + }, + { + "id": "21513", + "ident": "LA46", + "type": "small_airport", + "name": "Omni Airport", + "latitude_deg": "30.505669", + "longitude_deg": "-91.308618", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Port Allen", + "scheduled_service": "no", + "gps_code": "LA46", + "local_code": "LA46" + }, + { + "id": "21514", + "ident": "LA47", + "type": "heliport", + "name": "Marathon Venice Heliport", + "latitude_deg": "29.286100387573242", + "longitude_deg": "-89.36389923095703", + "elevation_ft": "-3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no", + "gps_code": "LA47", + "local_code": "LA47" + }, + { + "id": "21515", + "ident": "LA48", + "type": "small_airport", + "name": "Max Airport", + "latitude_deg": "30.9939", + "longitude_deg": "-92.044601", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cottonport", + "scheduled_service": "no", + "gps_code": "LA48", + "local_code": "LA48" + }, + { + "id": "21516", + "ident": "LA49", + "type": "heliport", + "name": "Fourchon Base Heliport", + "latitude_deg": "29.102699279785156", + "longitude_deg": "-90.1854019165039", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Leeville", + "scheduled_service": "no", + "gps_code": "LA49", + "local_code": "LA49" + }, + { + "id": "21517", + "ident": "LA50", + "type": "heliport", + "name": "Mobil Heliport", + "latitude_deg": "30.106000900268555", + "longitude_deg": "-94.69490051269531", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Arthur", + "scheduled_service": "no", + "gps_code": "LA50", + "local_code": "LA50" + }, + { + "id": "21518", + "ident": "LA51", + "type": "small_airport", + "name": "Stuart Airstrip", + "latitude_deg": "32.017444", + "longitude_deg": "-93.431792", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Coushatta", + "scheduled_service": "no", + "gps_code": "LA51", + "local_code": "LA51" + }, + { + "id": "21519", + "ident": "LA52", + "type": "small_airport", + "name": "T & M Ag Aviation Airport", + "latitude_deg": "32.698883", + "longitude_deg": "-93.822847", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Dixie", + "scheduled_service": "no" + }, + { + "id": "21520", + "ident": "LA53", + "type": "small_airport", + "name": "Tensas Flying Service Airport", + "latitude_deg": "31.978588", + "longitude_deg": "-91.264538", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Newellton", + "scheduled_service": "no", + "gps_code": "LA53", + "local_code": "LA53" + }, + { + "id": "21521", + "ident": "LA54", + "type": "small_airport", + "name": "Gilliam Airport", + "latitude_deg": "32.840474", + "longitude_deg": "-93.839898", + "elevation_ft": "194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Gilliam", + "scheduled_service": "no", + "gps_code": "LA54", + "local_code": "LA54" + }, + { + "id": "21522", + "ident": "LA55", + "type": "heliport", + "name": "Lake Charles Memorial Heliport", + "latitude_deg": "30.205156", + "longitude_deg": "-93.197735", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Charles", + "scheduled_service": "no", + "gps_code": "LA55", + "local_code": "LA55" + }, + { + "id": "21523", + "ident": "LA56", + "type": "small_airport", + "name": "Naylor Airport", + "latitude_deg": "32.341801", + "longitude_deg": "-93.658501", + "elevation_ft": "155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Shreveport", + "scheduled_service": "no", + "gps_code": "LA56", + "local_code": "LA56" + }, + { + "id": "21524", + "ident": "LA57", + "type": "small_airport", + "name": "Kinder Ag Service Airport", + "latitude_deg": "30.399099", + "longitude_deg": "-92.408997", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Eunice", + "scheduled_service": "no", + "gps_code": "LA57", + "local_code": "LA57", + "keywords": "Mowata Flying Service-Eunice Airport" + }, + { + "id": "21525", + "ident": "LA58", + "type": "closed", + "name": "Peter Creek Ranch Airport", + "latitude_deg": "32.979", + "longitude_deg": "-92.593201", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Spearsville", + "scheduled_service": "no", + "keywords": "LA58" + }, + { + "id": "21526", + "ident": "LA59", + "type": "heliport", + "name": "Thibodaux Regional Medical Center Heliport", + "latitude_deg": "29.7863006592", + "longitude_deg": "-90.8140029907", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Thibodaux", + "scheduled_service": "no", + "gps_code": "LA59", + "local_code": "LA59" + }, + { + "id": "21527", + "ident": "LA60", + "type": "small_airport", + "name": "Live Oak Landing Strip", + "latitude_deg": "29.824421", + "longitude_deg": "-92.115511", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Abbeville", + "scheduled_service": "no", + "gps_code": "LA60", + "local_code": "LA60" + }, + { + "id": "21528", + "ident": "LA61", + "type": "small_airport", + "name": "Kenan Airstrip", + "latitude_deg": "30.008627", + "longitude_deg": "-92.238841", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kaplan", + "scheduled_service": "no", + "gps_code": "LA61", + "local_code": "LA61" + }, + { + "id": "21529", + "ident": "LA62", + "type": "heliport", + "name": "Grande View Lodge Heliport", + "latitude_deg": "29.843799", + "longitude_deg": "-93.004932", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Creole", + "scheduled_service": "no", + "gps_code": "LA62", + "local_code": "LA62" + }, + { + "id": "21530", + "ident": "LA63", + "type": "small_airport", + "name": "Travis Airport", + "latitude_deg": "32.97169876098633", + "longitude_deg": "-91.83080291748047", + "elevation_ft": "122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bastrop", + "scheduled_service": "no", + "gps_code": "LA63", + "local_code": "LA63" + }, + { + "id": "21531", + "ident": "LA64", + "type": "seaplane_base", + "name": "Bayou Boeuf Seaplane Base", + "latitude_deg": "29.683500289916992", + "longitude_deg": "-91.10009765625", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Amelia", + "scheduled_service": "no", + "gps_code": "LA64", + "local_code": "LA64" + }, + { + "id": "21532", + "ident": "LA65", + "type": "heliport", + "name": "Acadian Medical Center Heliport", + "latitude_deg": "30.496667", + "longitude_deg": "-92.387222", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Eunice", + "scheduled_service": "no", + "gps_code": "LA65", + "local_code": "LA65" + }, + { + "id": "21533", + "ident": "LA66", + "type": "heliport", + "name": "Arco Morgan City Heliport", + "latitude_deg": "29.642200469970703", + "longitude_deg": "-91.10199737548828", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Amelia", + "scheduled_service": "no", + "gps_code": "LA66", + "local_code": "LA66" + }, + { + "id": "21534", + "ident": "LA67", + "type": "small_airport", + "name": "Angola Airstrip", + "latitude_deg": "30.95159912109375", + "longitude_deg": "-91.58480072021484", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Angola", + "scheduled_service": "no", + "gps_code": "LA67", + "local_code": "LA67" + }, + { + "id": "21535", + "ident": "LA68", + "type": "small_airport", + "name": "Zaunbrecher Strip", + "latitude_deg": "30.315799713134766", + "longitude_deg": "-92.5198974609375", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Iota", + "scheduled_service": "no", + "gps_code": "LA68", + "local_code": "LA68" + }, + { + "id": "21536", + "ident": "LA69", + "type": "heliport", + "name": "Jenkins Heliport", + "latitude_deg": "30.471599578857422", + "longitude_deg": "-91.07959747314453", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no", + "gps_code": "LA69", + "local_code": "LA69" + }, + { + "id": "21537", + "ident": "LA70", + "type": "closed", + "name": "Erath Heliport", + "latitude_deg": "29.920718", + "longitude_deg": "-92.060062", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Erath", + "scheduled_service": "no", + "keywords": "LA70" + }, + { + "id": "21538", + "ident": "LA71", + "type": "small_airport", + "name": "O'Brien Flying Service Airport", + "latitude_deg": "30.22439956665039", + "longitude_deg": "-93.00019836425781", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Iowa", + "scheduled_service": "no", + "gps_code": "LA71", + "local_code": "LA71" + }, + { + "id": "21539", + "ident": "LA72", + "type": "heliport", + "name": "Dauterive Hospital Heliport", + "latitude_deg": "30.007400512695312", + "longitude_deg": "-91.79399871826172", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Iberia", + "scheduled_service": "no", + "gps_code": "LA72", + "local_code": "LA72" + }, + { + "id": "21540", + "ident": "LA73", + "type": "small_airport", + "name": "Huffaker Field", + "latitude_deg": "29.608600616455078", + "longitude_deg": "-90.80229949951172", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Houma", + "scheduled_service": "no", + "gps_code": "LA73", + "local_code": "LA73" + }, + { + "id": "21541", + "ident": "LA74", + "type": "heliport", + "name": "CAGC Berwick Heliport", + "latitude_deg": "29.704634", + "longitude_deg": "-91.22276", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Berwick", + "scheduled_service": "no", + "gps_code": "LA74", + "local_code": "LA74" + }, + { + "id": "43047", + "ident": "LA75", + "type": "small_airport", + "name": "Glenn's Strip Ultralightport", + "latitude_deg": "30.2052784", + "longitude_deg": "-92.21444702", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Duson", + "scheduled_service": "no", + "gps_code": "LA75", + "local_code": "LA75" + }, + { + "id": "21543", + "ident": "LA76", + "type": "small_airport", + "name": "Spillers Club Airport", + "latitude_deg": "30.229400634765625", + "longitude_deg": "-91.90840148925781", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Breaux Bridge", + "scheduled_service": "no", + "gps_code": "LA76", + "local_code": "LA76" + }, + { + "id": "21544", + "ident": "LA77", + "type": "small_airport", + "name": "Tebow Airport", + "latitude_deg": "30.9632", + "longitude_deg": "-92.174599", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bunkie", + "scheduled_service": "no", + "gps_code": "LA77", + "local_code": "LA77", + "keywords": "Mixon Airport" + }, + { + "id": "21545", + "ident": "LA78", + "type": "heliport", + "name": "Cagc Dock Heliport", + "latitude_deg": "29.789400100708008", + "longitude_deg": "-93.32240295410156", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cameron", + "scheduled_service": "no", + "gps_code": "LA78", + "local_code": "LA78" + }, + { + "id": "21546", + "ident": "LA79", + "type": "small_airport", + "name": "Sycamore Airport", + "latitude_deg": "30.7185001373291", + "longitude_deg": "-90.35790252685547", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Amite", + "scheduled_service": "no", + "gps_code": "LA79", + "local_code": "LA79" + }, + { + "id": "21547", + "ident": "LA80", + "type": "heliport", + "name": "Popeyes Heliport", + "latitude_deg": "29.968299865722656", + "longitude_deg": "-90.18229675292969", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no", + "gps_code": "LA80", + "local_code": "LA80" + }, + { + "id": "21548", + "ident": "LA81", + "type": "closed", + "name": "Cheneyville / Dyer Airport", + "latitude_deg": "31.001191", + "longitude_deg": "-92.280221", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cheneyville", + "scheduled_service": "no", + "keywords": "LA81" + }, + { + "id": "21549", + "ident": "LA82", + "type": "heliport", + "name": "VA Medical Center Heliport", + "latitude_deg": "31.353165", + "longitude_deg": "-92.436937", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Alexandria", + "scheduled_service": "no", + "gps_code": "LA82", + "local_code": "LA82" + }, + { + "id": "21550", + "ident": "LA83", + "type": "small_airport", + "name": "McCutcheon Field", + "latitude_deg": "30.886467", + "longitude_deg": "-91.03117", + "elevation_ft": "272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "LA83", + "local_code": "LA83" + }, + { + "id": "43049", + "ident": "LA84", + "type": "heliport", + "name": "Our Lady of the Lake Ascension Hospital Heliport", + "latitude_deg": "30.209653", + "longitude_deg": "-90.930762", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Gonzales", + "scheduled_service": "no", + "gps_code": "LA84", + "local_code": "LA84", + "keywords": "Saint Elizabeth Hospital Heliport" + }, + { + "id": "21552", + "ident": "LA85", + "type": "closed", + "name": "Odeco Cocodrie Heliport", + "latitude_deg": "29.249399", + "longitude_deg": "-90.662003", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cocodrie", + "scheduled_service": "no", + "keywords": "LA85" + }, + { + "id": "21553", + "ident": "LA86", + "type": "heliport", + "name": "Tenneco-Cocodrie Heliport", + "latitude_deg": "29.235548", + "longitude_deg": "-90.670103", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cocodrie", + "scheduled_service": "no", + "gps_code": "LA86", + "local_code": "LA86" + }, + { + "id": "21554", + "ident": "LA87", + "type": "small_airport", + "name": "Covington-Vincent Airport", + "latitude_deg": "30.509599685668945", + "longitude_deg": "-90.15290069580078", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Covington", + "scheduled_service": "no", + "gps_code": "LA87", + "local_code": "LA87" + }, + { + "id": "21555", + "ident": "LA88", + "type": "closed", + "name": "Hensgens Strip", + "latitude_deg": "30.344601", + "longitude_deg": "-92.343201", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Crowley", + "scheduled_service": "no", + "keywords": "LA88" + }, + { + "id": "21556", + "ident": "LA89", + "type": "heliport", + "name": "Southern Baptist Hospital Heliport", + "latitude_deg": "29.937400817871094", + "longitude_deg": "-90.10399627685547", + "elevation_ft": "114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no", + "gps_code": "LA89", + "local_code": "LA89" + }, + { + "id": "21557", + "ident": "LA90", + "type": "small_airport", + "name": "Walsh Airport", + "latitude_deg": "30.294333775838", + "longitude_deg": "-92.426200866699", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Crowley", + "scheduled_service": "no", + "gps_code": "LA90", + "local_code": "LA90" + }, + { + "id": "21558", + "ident": "LA91", + "type": "small_airport", + "name": "Gary Landing Strip Ultralightport", + "latitude_deg": "30.22130012512207", + "longitude_deg": "-91.83350372314453", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Parks", + "scheduled_service": "no", + "gps_code": "LA91", + "local_code": "LA91" + }, + { + "id": "21559", + "ident": "LA92", + "type": "heliport", + "name": "Union Dulac Heliport", + "latitude_deg": "29.37299919128418", + "longitude_deg": "-90.72059631347656", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Dulac", + "scheduled_service": "no", + "gps_code": "LA92", + "local_code": "LA92" + }, + { + "id": "21560", + "ident": "LA93", + "type": "heliport", + "name": "Children's Hospital Heliport", + "latitude_deg": "29.916927", + "longitude_deg": "-90.127931", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no", + "gps_code": "LA93", + "local_code": "LA93" + }, + { + "id": "21561", + "ident": "LA94", + "type": "closed", + "name": "Corkern Airport", + "latitude_deg": "30.722401", + "longitude_deg": "-90.065399", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Enon", + "scheduled_service": "no", + "keywords": "LA94" + }, + { + "id": "21562", + "ident": "LA95", + "type": "heliport", + "name": "Abbeville General Hospital Heliport", + "latitude_deg": "29.974361", + "longitude_deg": "-92.108433", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Abbeville", + "scheduled_service": "yes", + "gps_code": "LA95", + "local_code": "LA95" + }, + { + "id": "21563", + "ident": "LA96", + "type": "heliport", + "name": "Riverbend Heliport", + "latitude_deg": "30.7609", + "longitude_deg": "-91.3386", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Saint Francisville", + "scheduled_service": "no", + "gps_code": "LA96", + "local_code": "LA96" + }, + { + "id": "21564", + "ident": "LA97", + "type": "heliport", + "name": "Lady of the Sea General Hospital Heliport", + "latitude_deg": "29.45726", + "longitude_deg": "-90.31032", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cut Off", + "scheduled_service": "no", + "gps_code": "LA97", + "local_code": "LA97" + }, + { + "id": "21565", + "ident": "LA98", + "type": "seaplane_base", + "name": "West Bay Seaplane Base", + "latitude_deg": "29.131900787353516", + "longitude_deg": "-89.38809967041016", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no", + "gps_code": "LA98", + "local_code": "LA98" + }, + { + "id": "21566", + "ident": "LA99", + "type": "heliport", + "name": "Ochsner Medical Center Baton Rouge Heliport", + "latitude_deg": "30.441905", + "longitude_deg": "-90.999402", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no", + "gps_code": "LA99", + "local_code": "LA99" + }, + { + "id": "41316", + "ident": "LAC", + "type": "small_airport", + "name": "Layang-Layang Airport", + "latitude_deg": "7.37157011032", + "longitude_deg": "113.84400177", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Spratley Islands", + "scheduled_service": "no", + "iata_code": "LAC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Swallow_Reef", + "keywords": "Pulau Layang-Layang, Swallow Reef, Layang-Layang Atoll" + }, + { + "id": "312665", + "ident": "LAD", + "type": "closed", + "name": "Angola International Airport (under construction)", + "latitude_deg": "-9.050734", + "longitude_deg": "13.499078", + "elevation_ft": "550", + "continent": "AF", + "iso_country": "AO", + "iso_region": "AO-LUA", + "municipality": "Luanda (Ícolo e Bengo)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Angola_International_Airport" + }, + { + "id": "316532", + "ident": "LAFK", + "type": "heliport", + "name": "Tiranë Helicopter Base", + "latitude_deg": "41.311111", + "longitude_deg": "19.88", + "continent": "EU", + "iso_country": "AL", + "iso_region": "AL-11", + "municipality": "Farkë e Madhe", + "scheduled_service": "no", + "gps_code": "LAFK", + "keywords": "Farka" + }, + { + "id": "3969", + "ident": "LAGJ", + "type": "closed", + "name": "Gjadër Air Base", + "latitude_deg": "41.895199", + "longitude_deg": "19.5987", + "elevation_ft": "23", + "continent": "EU", + "iso_country": "AL", + "iso_region": "AL-08", + "municipality": "Gjadër", + "scheduled_service": "no", + "gps_code": "LAGJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gjad%C3%ABr_Air_Base", + "keywords": "Lezhë-Zadrima Air Base" + }, + { + "id": "3970", + "ident": "LAKO", + "type": "closed", + "name": "Korçë Airfield", + "latitude_deg": "40.651741", + "longitude_deg": "20.741715", + "elevation_ft": "665", + "continent": "EU", + "iso_country": "AL", + "iso_region": "AL-06", + "municipality": "Korçë", + "scheduled_service": "no", + "gps_code": "LAKO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kor%C3%A7%C3%AB_Airfield", + "keywords": "Korçë Northwest" + }, + { + "id": "31795", + "ident": "LAKU", + "type": "medium_airport", + "name": "Kukës International Airport", + "latitude_deg": "42.035802", + "longitude_deg": "20.415955", + "elevation_ft": "1120", + "continent": "EU", + "iso_country": "AL", + "iso_region": "AL-07", + "municipality": "Kukës", + "scheduled_service": "no", + "gps_code": "LAKU", + "iata_code": "KFZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kuk%C3%ABs_International_Airport" + }, + { + "id": "3971", + "ident": "LAKV", + "type": "medium_airport", + "name": "Kuçovë Air Base", + "latitude_deg": "40.77190017700195", + "longitude_deg": "19.901899337768555", + "elevation_ft": "135", + "continent": "EU", + "iso_country": "AL", + "iso_region": "AL-01", + "municipality": "Kuçovë", + "scheduled_service": "no", + "gps_code": "LAKV", + "keywords": "Kucova" + }, + { + "id": "324078", + "ident": "LASK", + "type": "closed", + "name": "Shkodër Airport", + "latitude_deg": "42.089361", + "longitude_deg": "19.509111", + "continent": "EU", + "iso_country": "AL", + "iso_region": "AL-10", + "municipality": "Shkodër", + "scheduled_service": "no", + "gps_code": "LASK" + }, + { + "id": "341255", + "ident": "LASR", + "type": "small_airport", + "name": "Sarandë Airfield", + "latitude_deg": "39.876113", + "longitude_deg": "20.037663", + "continent": "EU", + "iso_country": "AL", + "iso_region": "AL-12", + "municipality": "Sarandë", + "scheduled_service": "no", + "gps_code": "LASR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sarand%C3%AB_Airfield" + }, + { + "id": "3972", + "ident": "LATI", + "type": "large_airport", + "name": "Tirana International Airport Mother Teresa", + "latitude_deg": "41.4146995544", + "longitude_deg": "19.7206001282", + "elevation_ft": "126", + "continent": "EU", + "iso_country": "AL", + "iso_region": "AL-11", + "municipality": "Tirana", + "scheduled_service": "yes", + "gps_code": "LATI", + "iata_code": "TIA", + "home_link": "http://www.tirana-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tirana_International_Airport_N%C3%ABn%C3%AB_Tereza", + "keywords": "Rinas International Airport, Aeroporti Nënë Tereza" + }, + { + "id": "3973", + "ident": "LAVL", + "type": "closed", + "name": "Vlorë Air Base", + "latitude_deg": "40.476101", + "longitude_deg": "19.474199", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "AL", + "iso_region": "AL-12", + "municipality": "Vlorë", + "scheduled_service": "no", + "gps_code": "LAVL", + "keywords": "Vlora Air Base" + }, + { + "id": "340567", + "ident": "LB-0001", + "type": "heliport", + "name": "St George Hospital Helipad", + "latitude_deg": "33.893873", + "longitude_deg": "35.52346", + "continent": "AS", + "iso_country": "LB", + "iso_region": "LB-BA", + "municipality": "Beirut", + "scheduled_service": "no" + }, + { + "id": "340568", + "ident": "LB-0002", + "type": "heliport", + "name": "LAU Medical Center Rizk Hospital Helipad", + "latitude_deg": "33.885044", + "longitude_deg": "35.515414", + "continent": "AS", + "iso_country": "LB", + "iso_region": "LB-BA", + "municipality": "Beirut", + "scheduled_service": "no" + }, + { + "id": "340569", + "ident": "LB-0003", + "type": "heliport", + "name": "Al Sahel Hospital Helipad", + "latitude_deg": "33.858218", + "longitude_deg": "35.503514", + "continent": "AS", + "iso_country": "LB", + "iso_region": "LB-JL", + "municipality": "Ghobeiry", + "scheduled_service": "no" + }, + { + "id": "340571", + "ident": "LB-0004", + "type": "small_airport", + "name": "Baadarâne Airport", + "latitude_deg": "33.636065", + "longitude_deg": "35.614209", + "elevation_ft": "3501", + "continent": "AS", + "iso_country": "LB", + "iso_region": "LB-JL", + "municipality": "Baadarâne", + "scheduled_service": "no" + }, + { + "id": "340572", + "ident": "LB-0005", + "type": "closed", + "name": "Baalbek Airfield", + "latitude_deg": "34.047911", + "longitude_deg": "36.173396", + "continent": "AS", + "iso_country": "LB", + "iso_region": "LB-BH", + "municipality": "Iaat", + "scheduled_service": "no" + }, + { + "id": "340573", + "ident": "LB-0006", + "type": "small_airport", + "name": "Marjayoun Airfield", + "latitude_deg": "33.294663", + "longitude_deg": "35.578101", + "continent": "AS", + "iso_country": "LB", + "iso_region": "LB-NA", + "municipality": "Kafr Kila", + "scheduled_service": "no" + }, + { + "id": "340574", + "ident": "LB-0007", + "type": "small_airport", + "name": "Tel al Zaatar Airfield", + "latitude_deg": "33.86781", + "longitude_deg": "35.55294", + "continent": "AS", + "iso_country": "LB", + "iso_region": "LB-JL", + "municipality": "Dekwaneh", + "scheduled_service": "no" + }, + { + "id": "79", + "ident": "LB11", + "type": "small_airport", + "name": "Tsalapita Airfield", + "latitude_deg": "42.188747", + "longitude_deg": "24.535716", + "elevation_ft": "630", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-16", + "municipality": "Tsalapita", + "scheduled_service": "no", + "gps_code": "LBTS" + }, + { + "id": "81", + "ident": "LB13", + "type": "small_airport", + "name": "Sofia West Airport", + "latitude_deg": "42.444199", + "longitude_deg": "22.9835", + "elevation_ft": "625", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-14", + "municipality": "Radomir", + "scheduled_service": "no", + "gps_code": "LBSW", + "local_code": "LB13", + "home_link": "https://www.sofiawestairport.bg/en/" + }, + { + "id": "86", + "ident": "LB18", + "type": "small_airport", + "name": "Tenevo Airstrip", + "latitude_deg": "42.346401", + "longitude_deg": "26.5739", + "elevation_ft": "390", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-28", + "municipality": "Tenevo", + "scheduled_service": "no", + "local_code": "LB18" + }, + { + "id": "87", + "ident": "LB19", + "type": "closed", + "name": "Zimnitsa Airstrip", + "latitude_deg": "42.600498", + "longitude_deg": "26.633699", + "elevation_ft": "518", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-28", + "municipality": "Zimnitsa", + "scheduled_service": "no", + "local_code": "LB19" + }, + { + "id": "90", + "ident": "LB22", + "type": "closed", + "name": "Stanke Dimitrov Air Base", + "latitude_deg": "42.311699", + "longitude_deg": "23.246901", + "elevation_ft": "2149", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-10", + "municipality": "Sapareva Banya", + "scheduled_service": "no", + "local_code": "LB22" + }, + { + "id": "95", + "ident": "LB27", + "type": "closed", + "name": "Podem Airstrip", + "latitude_deg": "43.548199", + "longitude_deg": "24.590401", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-15", + "municipality": "Podem", + "scheduled_service": "no", + "local_code": "LB27" + }, + { + "id": "96", + "ident": "LB29", + "type": "small_airport", + "name": "Maslarevo Airstrip", + "latitude_deg": "43.405399", + "longitude_deg": "25.474001", + "elevation_ft": "349", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-04", + "municipality": "Maslarevo", + "scheduled_service": "no", + "local_code": "LB29" + }, + { + "id": "97", + "ident": "LB30", + "type": "small_airport", + "name": "Stryama Airfield", + "latitude_deg": "42.285301", + "longitude_deg": "24.8685", + "elevation_ft": "560", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-16", + "municipality": "Stryama", + "scheduled_service": "no", + "local_code": "LB30" + }, + { + "id": "98", + "ident": "LB31", + "type": "small_airport", + "name": "Levski Airfield", + "latitude_deg": "43.3694", + "longitude_deg": "25.149099", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-15", + "municipality": "Levski", + "scheduled_service": "no", + "keywords": "LB31" + }, + { + "id": "99", + "ident": "LB32", + "type": "closed", + "name": "Konush Airstrip", + "latitude_deg": "42.072399", + "longitude_deg": "25.053301", + "elevation_ft": "500", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-16", + "municipality": "Konush", + "scheduled_service": "no", + "local_code": "LB32" + }, + { + "id": "100", + "ident": "LB33", + "type": "small_airport", + "name": "Leskovo Airfield", + "latitude_deg": "43.726601", + "longitude_deg": "27.686001", + "elevation_ft": "700", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-08", + "municipality": "Leskovo", + "scheduled_service": "no", + "local_code": "LB33" + }, + { + "id": "101", + "ident": "LB34", + "type": "closed", + "name": "Stefanovo Airstrip", + "latitude_deg": "43.506901", + "longitude_deg": "27.8449", + "elevation_ft": "905", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-08", + "municipality": "Stefanovo", + "scheduled_service": "no", + "local_code": "LB34" + }, + { + "id": "102", + "ident": "LB35", + "type": "small_airport", + "name": "Golyama Smolnitsa Airstrip", + "latitude_deg": "43.627269", + "longitude_deg": "27.695203", + "elevation_ft": "810", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-08", + "municipality": "Smolnitsa", + "scheduled_service": "no", + "local_code": "LB35" + }, + { + "id": "103", + "ident": "LB36", + "type": "small_airport", + "name": "Sokolovo Airstrip", + "latitude_deg": "43.475641", + "longitude_deg": "28.103522", + "elevation_ft": "760", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-08", + "municipality": "Sokolovo", + "scheduled_service": "no", + "local_code": "LB36" + }, + { + "id": "104", + "ident": "LB37", + "type": "small_airport", + "name": "Stanke Dimitrov Highway Strip", + "latitude_deg": "42.175701", + "longitude_deg": "23.0509", + "elevation_ft": "3447", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-10", + "municipality": "Boboshevo", + "scheduled_service": "no", + "local_code": "LB37" + }, + { + "id": "105", + "ident": "LB38", + "type": "closed", + "name": "Mustrak Air Base", + "latitude_deg": "41.84", + "longitude_deg": "26.3097", + "elevation_ft": "675", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-26", + "municipality": "Mustrak", + "scheduled_service": "no", + "local_code": "LB38" + }, + { + "id": "106", + "ident": "LB39", + "type": "closed", + "name": "Graf Ignatievo South Airport", + "latitude_deg": "42.263196", + "longitude_deg": "24.719299", + "elevation_ft": "623", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-16", + "municipality": "Graf Ignatievo", + "scheduled_service": "no", + "keywords": "LB39" + }, + { + "id": "109", + "ident": "LB42", + "type": "small_airport", + "name": "Kamenets Air Base", + "latitude_deg": "43.327301", + "longitude_deg": "25.003401", + "elevation_ft": "420", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-15", + "municipality": "Kamenets", + "scheduled_service": "no", + "local_code": "LB42" + }, + { + "id": "110", + "ident": "LB43", + "type": "closed", + "name": "Dobrich Air Base", + "latitude_deg": "43.6096", + "longitude_deg": "27.8365", + "elevation_ft": "825", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-08", + "municipality": "Dobrich", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dobrich_Air_Base", + "keywords": "LB43" + }, + { + "id": "112", + "ident": "LB45", + "type": "closed", + "name": "Petrich Air Base", + "latitude_deg": "41.448299", + "longitude_deg": "23.2171", + "elevation_ft": "371", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-01", + "municipality": "Petrich", + "scheduled_service": "no", + "local_code": "LB45" + }, + { + "id": "316401", + "ident": "LBBA", + "type": "small_airport", + "name": "Bahovitsa Airfield", + "latitude_deg": "43.206111", + "longitude_deg": "24.655556", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-11", + "scheduled_service": "no", + "gps_code": "LBBA" + }, + { + "id": "3974", + "ident": "LBBG", + "type": "large_airport", + "name": "Burgas Airport", + "latitude_deg": "42.56959915161133", + "longitude_deg": "27.515199661254883", + "elevation_ft": "135", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-02", + "municipality": "Burgas", + "scheduled_service": "yes", + "gps_code": "LBBG", + "iata_code": "BOJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Burgas_Airport" + }, + { + "id": "43899", + "ident": "LBBO", + "type": "small_airport", + "name": "Bohot Airport", + "latitude_deg": "43.30638885498047", + "longitude_deg": "24.691389083862305", + "elevation_ft": "1162", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-15", + "municipality": "Bohot", + "scheduled_service": "no", + "gps_code": "LBBO" + }, + { + "id": "316381", + "ident": "LBBQ", + "type": "small_airport", + "name": "Byala", + "latitude_deg": "43.4634836", + "longitude_deg": "25.7116132", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-18", + "scheduled_service": "no", + "gps_code": "LBBQ" + }, + { + "id": "43328", + "ident": "LBBR", + "type": "closed", + "name": "Ravnetz Air Base", + "latitude_deg": "42.526100158691406", + "longitude_deg": "27.26959991455078", + "elevation_ft": "74", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-02", + "municipality": "Ravnetz", + "scheduled_service": "no", + "gps_code": "LBBR", + "keywords": "Ravnets" + }, + { + "id": "316430", + "ident": "LBBZ", + "type": "small_airport", + "name": "Bazan Airstrip", + "latitude_deg": "43.728429", + "longitude_deg": "26.119696", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-18", + "municipality": "Bazan", + "scheduled_service": "no", + "gps_code": "LBBZ" + }, + { + "id": "316402", + "ident": "LBDA", + "type": "small_airport", + "name": "Daskal Atanasovo", + "latitude_deg": "42.3213889", + "longitude_deg": "25.8936111", + "elevation_ft": "129", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-24", + "scheduled_service": "no", + "gps_code": "LBDA" + }, + { + "id": "43908", + "ident": "LBDB", + "type": "small_airport", + "name": "Dolna Banya Airport", + "latitude_deg": "42.308528900146484", + "longitude_deg": "23.820417404174805", + "elevation_ft": "1779", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-23", + "municipality": "Dolna Banya", + "scheduled_service": "no", + "gps_code": "LBDB" + }, + { + "id": "316400", + "ident": "LBGI", + "type": "small_airport", + "name": "Gorski Izvor Airstrip", + "latitude_deg": "42.035833", + "longitude_deg": "25.408333", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-26", + "municipality": "Gorski Izvor", + "scheduled_service": "no", + "gps_code": "LBGI" + }, + { + "id": "3975", + "ident": "LBGO", + "type": "medium_airport", + "name": "Gorna Oryahovitsa Airport", + "latitude_deg": "43.151402", + "longitude_deg": "25.7129", + "elevation_ft": "285", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-04", + "municipality": "Gorna Oryahovitsa", + "scheduled_service": "no", + "gps_code": "LBGO", + "iata_code": "GOZ", + "home_link": "http://gornaoryahovitsa-airport.bg/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gorna_Oryahovitsa_Airport" + }, + { + "id": "43900", + "ident": "LBGR", + "type": "small_airport", + "name": "Grivitsa Airfield", + "latitude_deg": "43.415062", + "longitude_deg": "24.730515", + "elevation_ft": "919", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-15", + "municipality": "Grivitsa", + "scheduled_service": "no", + "gps_code": "LBGR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grivitza_Airfield" + }, + { + "id": "313852", + "ident": "LBH", + "type": "seaplane_base", + "name": "Palm Beach Seaplane Base", + "latitude_deg": "-33.5871", + "longitude_deg": "151.3234", + "elevation_ft": "0", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Sydney", + "scheduled_service": "yes", + "iata_code": "LBH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palm_Beach_Water_Airport" + }, + { + "id": "82", + "ident": "LBHS", + "type": "closed", + "name": "Uzundzhovo Navy Airbase", + "latitude_deg": "41.976398", + "longitude_deg": "25.5898", + "elevation_ft": "160", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-26", + "municipality": "Haskovo", + "scheduled_service": "no", + "gps_code": "LBHS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Haskovo_Malevo_Airport", + "keywords": "LB14" + }, + { + "id": "43909", + "ident": "LBHT", + "type": "small_airport", + "name": "Ihtiman Airfield", + "latitude_deg": "42.42189", + "longitude_deg": "23.767221", + "elevation_ft": "2113", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-23", + "municipality": "Ihtiman", + "scheduled_service": "no", + "gps_code": "LBHT", + "home_link": "https://bg-bg.facebook.com/BG.LBHT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ihtiman_Airfield", + "keywords": "Maintenance, aircraft maintenance, FTO" + }, + { + "id": "43892", + "ident": "LBKJ", + "type": "small_airport", + "name": "Kainardzha Airport", + "latitude_deg": "43.970417", + "longitude_deg": "27.469557", + "elevation_ft": "575", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-19", + "municipality": "Kainardzha", + "scheduled_service": "no", + "gps_code": "LBKJ" + }, + { + "id": "43912", + "ident": "LBKL", + "type": "small_airport", + "name": "Kalvacha Airport", + "latitude_deg": "42.58625030517578", + "longitude_deg": "25.426250457763672", + "elevation_ft": "1083", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-24", + "municipality": "Kalvacha", + "scheduled_service": "no", + "gps_code": "LBKL" + }, + { + "id": "43911", + "ident": "LBLN", + "type": "heliport", + "name": "Lozen Heliport", + "latitude_deg": "42.619388580322266", + "longitude_deg": "23.50147247314453", + "elevation_ft": "1923", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-23", + "municipality": "Lozen", + "scheduled_service": "no", + "gps_code": "LBLN" + }, + { + "id": "43910", + "ident": "LBLS", + "type": "small_airport", + "name": "Lesnovo Airport", + "latitude_deg": "42.634498596191406", + "longitude_deg": "23.64644432067871", + "elevation_ft": "1825", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-23", + "municipality": "Lesnovo", + "scheduled_service": "no", + "gps_code": "LBLS" + }, + { + "id": "313853", + "ident": "LBM", + "type": "small_airport", + "name": "Luabo Airport", + "latitude_deg": "-18.4139", + "longitude_deg": "36.1068", + "elevation_ft": "36", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-Q", + "municipality": "Luabo", + "scheduled_service": "no", + "iata_code": "LBM" + }, + { + "id": "318178", + "ident": "LBMA", + "type": "small_airport", + "name": "Maritsa Airfield", + "latitude_deg": "42.2652", + "longitude_deg": "24.7205", + "elevation_ft": "630", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-16", + "municipality": "Maritsa", + "scheduled_service": "no", + "gps_code": "LBMA", + "keywords": "Graf Ignatievo" + }, + { + "id": "83", + "ident": "LBMG", + "type": "closed", + "name": "Gabrovnitsa Air Base", + "latitude_deg": "43.5443", + "longitude_deg": "23.272499", + "elevation_ft": "626", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-12", + "municipality": "Gabrovnitsa", + "scheduled_service": "no", + "gps_code": "LBMG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gabrovnitsa_Air_Base" + }, + { + "id": "316380", + "ident": "LBMO", + "type": "small_airport", + "name": "Montana", + "latitude_deg": "43.3826194", + "longitude_deg": "23.2632026", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-12", + "scheduled_service": "no", + "gps_code": "LBMO" + }, + { + "id": "3976", + "ident": "LBPD", + "type": "medium_airport", + "name": "Plovdiv International Airport", + "latitude_deg": "42.067799", + "longitude_deg": "24.8508", + "elevation_ft": "597", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-16", + "municipality": "Plovdiv", + "scheduled_service": "yes", + "gps_code": "LBPD", + "iata_code": "PDV", + "home_link": "http://www.plovdivairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Plovdiv_International_Airport" + }, + { + "id": "89", + "ident": "LBPG", + "type": "medium_airport", + "name": "Graf Ignatievo Air Base", + "latitude_deg": "42.290401458740234", + "longitude_deg": "24.714000701904297", + "elevation_ft": "190", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-16", + "municipality": "Graf Ignatievo", + "scheduled_service": "no", + "gps_code": "LBPG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Graf_Ignatievo_Airbase", + "keywords": "LB21" + }, + { + "id": "108", + "ident": "LBPL", + "type": "medium_airport", + "name": "Dolna Mitropoliya Air Base", + "latitude_deg": "43.451401", + "longitude_deg": "24.5028", + "elevation_ft": "330", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-15", + "municipality": "Dolna Mitropoliya", + "scheduled_service": "no", + "gps_code": "LBPL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dolna_Mitropoliya_Air_Base", + "keywords": "LB41" + }, + { + "id": "43887", + "ident": "LBPR", + "type": "small_airport", + "name": "Primorsko Airport", + "latitude_deg": "42.2596", + "longitude_deg": "27.703846", + "elevation_ft": "14", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-02", + "municipality": "Primorsko", + "scheduled_service": "no", + "gps_code": "LBPR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Primorsko_Airfield" + }, + { + "id": "91", + "ident": "LBPS", + "type": "closed", + "name": "Cheshnegirovo Air Base", + "latitude_deg": "42.114101", + "longitude_deg": "24.992901", + "elevation_ft": "604", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-16", + "municipality": "Cheshnegirovo", + "scheduled_service": "no", + "gps_code": "LBPS", + "keywords": "LB23" + }, + { + "id": "43898", + "ident": "LBRD", + "type": "small_airport", + "name": "Erden Airport", + "latitude_deg": "43.499168", + "longitude_deg": "23.304722", + "elevation_ft": "617", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-12", + "municipality": "Erden", + "scheduled_service": "no", + "gps_code": "LBRD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Erden_Airfield" + }, + { + "id": "92", + "ident": "LBRS", + "type": "small_airport", + "name": "Ruse Airport", + "latitude_deg": "43.694801", + "longitude_deg": "26.0567", + "elevation_ft": "614", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-18", + "municipality": "Shtraklevo", + "scheduled_service": "no", + "gps_code": "LBRS", + "iata_code": "ROU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ruse_Airport", + "keywords": "LB24, Shtraklevo Air Base, Shtruklovo" + }, + { + "id": "316379", + "ident": "LBSB", + "type": "small_airport", + "name": "Slanchev Bryag (Sunny Beach) Airport", + "latitude_deg": "42.727816", + "longitude_deg": "27.622204", + "elevation_ft": "153", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-02", + "municipality": "Nesebar", + "scheduled_service": "no", + "gps_code": "LBSB" + }, + { + "id": "88", + "ident": "LBSD", + "type": "closed", + "name": "Dobroslavtsi Air Base", + "latitude_deg": "42.812400817871094", + "longitude_deg": "23.29960060119629", + "elevation_ft": "1738", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-23", + "municipality": "Sofia", + "scheduled_service": "no", + "gps_code": "LBSD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dobroslavtsi_Airbase", + "keywords": "Kumaritsa Airport, LB20" + }, + { + "id": "3977", + "ident": "LBSF", + "type": "large_airport", + "name": "Sofia Airport", + "latitude_deg": "42.696693420410156", + "longitude_deg": "23.411436080932617", + "elevation_ft": "1742", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-23", + "municipality": "Sofia", + "scheduled_service": "yes", + "gps_code": "LBSF", + "iata_code": "SOF", + "home_link": "http://sofia-airport.bg", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sofia_Airport" + }, + { + "id": "85", + "ident": "LBSL", + "type": "small_airport", + "name": "Sliven Airfield", + "latitude_deg": "42.646301", + "longitude_deg": "26.3594", + "elevation_ft": "656", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-20", + "municipality": "Sliven", + "scheduled_service": "no", + "gps_code": "LBSL" + }, + { + "id": "32324", + "ident": "LBSS", + "type": "closed", + "name": "Silistra Polkovnik Lambrinovo Air Base", + "latitude_deg": "44.055199", + "longitude_deg": "27.178801", + "elevation_ft": "351", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-19", + "municipality": "Silistra", + "scheduled_service": "no", + "gps_code": "LBSS", + "iata_code": "SLS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Silistra_Airfield" + }, + { + "id": "43903", + "ident": "LBST", + "type": "small_airport", + "name": "Stryama Airfield", + "latitude_deg": "42.540279", + "longitude_deg": "24.825222", + "elevation_ft": "916", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-16", + "municipality": "Stryama", + "scheduled_service": "no", + "gps_code": "LBST" + }, + { + "id": "3978", + "ident": "LBSZ", + "type": "small_airport", + "name": "Stara Zagora Airport", + "latitude_deg": "42.3766667", + "longitude_deg": "25.655", + "elevation_ft": "558", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-24", + "municipality": "Stara Zagora", + "scheduled_service": "no", + "gps_code": "LBSZ", + "iata_code": "SZR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stara_Zagora_Airport" + }, + { + "id": "84", + "ident": "LBTG", + "type": "small_airport", + "name": "Targovishte Airport / Buhovtsi Airfield", + "latitude_deg": "43.306599", + "longitude_deg": "26.700899", + "elevation_ft": "666", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-25", + "municipality": "Buhovtsi", + "scheduled_service": "no", + "gps_code": "LBTG", + "iata_code": "TGV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Targovishte_Airport", + "keywords": "LB16, Bukhovtsi" + }, + { + "id": "107", + "ident": "LBVD", + "type": "small_airport", + "name": "Vidin Smurdan Airfield", + "latitude_deg": "44.0224", + "longitude_deg": "22.816099", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-05", + "municipality": "Vidin", + "scheduled_service": "no", + "gps_code": "LBVD", + "keywords": "LB40" + }, + { + "id": "318177", + "ident": "LBVR", + "type": "small_airport", + "name": "Vratsa Airport", + "latitude_deg": "43.2559", + "longitude_deg": "23.5327", + "elevation_ft": "935", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-06", + "municipality": "Vratsa", + "scheduled_service": "no", + "gps_code": "LBVR" + }, + { + "id": "93", + "ident": "LBWB", + "type": "medium_airport", + "name": "Balchik Airfield", + "latitude_deg": "43.423801", + "longitude_deg": "28.181299", + "elevation_ft": "660", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-08", + "municipality": "Balchik", + "scheduled_service": "no", + "gps_code": "LBWB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Balchik_Airfield", + "keywords": "LB25" + }, + { + "id": "329116", + "ident": "LBWC", + "type": "heliport", + "name": "Chayka Naval Air Base", + "latitude_deg": "43.188139", + "longitude_deg": "27.848255", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-03", + "municipality": "Tihina", + "scheduled_service": "no", + "gps_code": "LBWC" + }, + { + "id": "3979", + "ident": "LBWN", + "type": "large_airport", + "name": "Varna Airport", + "latitude_deg": "43.232101", + "longitude_deg": "27.8251", + "elevation_ft": "230", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-03", + "municipality": "Varna", + "scheduled_service": "yes", + "gps_code": "LBWN", + "iata_code": "VAR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Varna_Airport" + }, + { + "id": "43891", + "ident": "LBWV", + "type": "closed", + "name": "Izgrev Airport", + "latitude_deg": "43.277222", + "longitude_deg": "27.701944", + "elevation_ft": "1119", + "continent": "EU", + "iso_country": "BG", + "iso_region": "BG-03", + "municipality": "Kalimantsi", + "scheduled_service": "no", + "gps_code": "LBWV" + }, + { + "id": "30979", + "ident": "LCEN", + "type": "medium_airport", + "name": "Ercan International Airport", + "latitude_deg": "35.154701232910156", + "longitude_deg": "33.49610137939453", + "elevation_ft": "404", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-02", + "municipality": "Nicosia", + "scheduled_service": "yes", + "gps_code": "LCEN", + "iata_code": "ECN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ercan_International_Airport", + "keywords": "Tymvou" + }, + { + "id": "3980", + "ident": "LCLK", + "type": "large_airport", + "name": "Larnaca International Airport", + "latitude_deg": "34.875099", + "longitude_deg": "33.624901", + "elevation_ft": "8", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-04", + "municipality": "Larnaca", + "scheduled_service": "yes", + "gps_code": "LCLK", + "iata_code": "LCA", + "home_link": "http://www.cyprusairports.com.cy/showpage.php?PageID=2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Larnaca_International_Airport", + "keywords": "Διεθνές Aεροδρόμιο Λάρνακας" + }, + { + "id": "42797", + "ident": "LCP", + "type": "small_airport", + "name": "Loncopue Airport", + "latitude_deg": "-38.081902", + "longitude_deg": "-70.643898", + "elevation_ft": "3627", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Loncopue", + "scheduled_service": "no", + "iata_code": "LCP", + "local_code": "LCP", + "keywords": "SA18" + }, + { + "id": "3981", + "ident": "LCPH", + "type": "medium_airport", + "name": "Paphos International Airport", + "latitude_deg": "34.717999", + "longitude_deg": "32.485699", + "elevation_ft": "41", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-06", + "municipality": "Paphos", + "scheduled_service": "yes", + "gps_code": "LCPH", + "iata_code": "PFO", + "home_link": "http://paphosinternationalairport.com/index_papxmas.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paphos_International_Airport", + "keywords": "Pafos, Mandria, Kouklia, Διεθνής Αερολιμένας Πάφου" + }, + { + "id": "3982", + "ident": "LCRA", + "type": "medium_airport", + "name": "RAF Akrotiri", + "latitude_deg": "34.590401", + "longitude_deg": "32.9879", + "elevation_ft": "76", + "continent": "AS", + "iso_country": "CY", + "iso_region": "CY-XX", + "municipality": "Akrotiri", + "scheduled_service": "no", + "gps_code": "LCRA", + "iata_code": "AKT", + "home_link": "http://www.raf.mod.uk/rafakrotiri/passengerinformation/", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Akrotiri", + "keywords": "Royal Air Force, RAF, British" + }, + { + "id": "3235", + "ident": "LD57", + "type": "closed", + "name": "Sepurine Training Base", + "latitude_deg": "44.209999", + "longitude_deg": "15.1632", + "elevation_ft": "60", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-13", + "municipality": "Zaton", + "scheduled_service": "no" + }, + { + "id": "3983", + "ident": "LDDP", + "type": "closed", + "name": "Ploče Airport", + "latitude_deg": "43.0387", + "longitude_deg": "17.4296", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-19", + "municipality": "Ploče", + "scheduled_service": "no", + "gps_code": "LDDP" + }, + { + "id": "3984", + "ident": "LDDU", + "type": "medium_airport", + "name": "Dubrovnik Airport", + "latitude_deg": "42.5614013671875", + "longitude_deg": "18.268199920654297", + "elevation_ft": "527", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-19", + "municipality": "Dubrovnik", + "scheduled_service": "yes", + "gps_code": "LDDU", + "iata_code": "DBV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dubrovnik_Airport" + }, + { + "id": "30085", + "ident": "LDLO", + "type": "small_airport", + "name": "Lošinj Island Airport", + "latitude_deg": "44.5657997131", + "longitude_deg": "14.3930997849", + "elevation_ft": "151", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-08", + "municipality": "Lošinj", + "scheduled_service": "no", + "gps_code": "LDLO", + "iata_code": "LSZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lo%C5%A1inj_Airport" + }, + { + "id": "30543", + "ident": "LDOB", + "type": "closed", + "name": "Vukovar Borovo N Airport", + "latitude_deg": "45.386398", + "longitude_deg": "18.962799", + "elevation_ft": "289", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-16", + "municipality": "Vukovar", + "scheduled_service": "no", + "gps_code": "LDOB" + }, + { + "id": "3985", + "ident": "LDOC", + "type": "small_airport", + "name": "Osijek-Čepin Airfield", + "latitude_deg": "45.5427778", + "longitude_deg": "18.6319444", + "elevation_ft": "299", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-14", + "municipality": "Čepin", + "scheduled_service": "no", + "gps_code": "LDOC", + "home_link": "http://www.ak-osijek.hr" + }, + { + "id": "30422", + "ident": "LDOR", + "type": "small_airport", + "name": "Slavonski Jelas Airport", + "latitude_deg": "45.15610122680664", + "longitude_deg": "17.988100051879883", + "elevation_ft": "276", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-12", + "municipality": "Slavonski", + "scheduled_service": "no", + "gps_code": "LDOR" + }, + { + "id": "3986", + "ident": "LDOS", + "type": "medium_airport", + "name": "Osijek Airport", + "latitude_deg": "45.4627", + "longitude_deg": "18.8102", + "elevation_ft": "290", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-14", + "municipality": "Osijek", + "scheduled_service": "yes", + "gps_code": "LDOS", + "iata_code": "OSI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Osijek_Airport" + }, + { + "id": "30534", + "ident": "LDOV", + "type": "small_airport", + "name": "Vinkovci Sopot Airport", + "latitude_deg": "45.2510986328125", + "longitude_deg": "18.759199142456055", + "elevation_ft": "266", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-16", + "municipality": "Vinkovci", + "scheduled_service": "no", + "gps_code": "LDOV" + }, + { + "id": "3987", + "ident": "LDPL", + "type": "medium_airport", + "name": "Pula Airport", + "latitude_deg": "44.89350128173828", + "longitude_deg": "13.922200202941895", + "elevation_ft": "274", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-18", + "municipality": "Pula", + "scheduled_service": "yes", + "gps_code": "LDPL", + "iata_code": "PUY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pula_Airport" + }, + { + "id": "30128", + "ident": "LDPM", + "type": "small_airport", + "name": "Medulin Campanoz Airport", + "latitude_deg": "44.843299865722656", + "longitude_deg": "13.904199600219727", + "elevation_ft": "171", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-18", + "municipality": "Medulin", + "scheduled_service": "no", + "gps_code": "LDPM" + }, + { + "id": "30506", + "ident": "LDPN", + "type": "small_airport", + "name": "Unije Airport", + "latitude_deg": "44.628299713134766", + "longitude_deg": "14.241100311279297", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-08", + "municipality": "Unije Island", + "scheduled_service": "no", + "gps_code": "LDPN" + }, + { + "id": "320742", + "ident": "LDPP", + "type": "closed", + "name": "Pula Seaplane Terminal", + "latitude_deg": "44.876066", + "longitude_deg": "13.846447", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-18", + "municipality": "Pula", + "scheduled_service": "no", + "gps_code": "LDPP" + }, + { + "id": "30541", + "ident": "LDPV", + "type": "small_airport", + "name": "Vrsar Crljenka Airport", + "latitude_deg": "45.141700744628906", + "longitude_deg": "13.630599975585938", + "elevation_ft": "121", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-18", + "municipality": "Vrsar", + "scheduled_service": "no", + "gps_code": "LDPV" + }, + { + "id": "3988", + "ident": "LDRG", + "type": "small_airport", + "name": "Grobnicko Polje Airport", + "latitude_deg": "45.37950134277344", + "longitude_deg": "14.503800392150879", + "elevation_ft": "951", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-08", + "municipality": "Grobnicko", + "scheduled_service": "no", + "gps_code": "LDRG" + }, + { + "id": "3989", + "ident": "LDRI", + "type": "medium_airport", + "name": "Rijeka Airport", + "latitude_deg": "45.21689987182617", + "longitude_deg": "14.570300102233887", + "elevation_ft": "278", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-08", + "municipality": "Rijeka", + "scheduled_service": "yes", + "gps_code": "LDRI", + "iata_code": "RJK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rijeka_Airport", + "keywords": "Reka, Rika, Fiume" + }, + { + "id": "30226", + "ident": "LDRO", + "type": "small_airport", + "name": "Otočac Airport", + "latitude_deg": "44.847774505615234", + "longitude_deg": "15.286617279052734", + "elevation_ft": "1539", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-09", + "municipality": "Otočac", + "scheduled_service": "no", + "gps_code": "LDRO" + }, + { + "id": "320743", + "ident": "LDRR", + "type": "closed", + "name": "Rab Seaplane Terminal", + "latitude_deg": "44.756391", + "longitude_deg": "14.764118", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-08", + "municipality": "Rab", + "scheduled_service": "no", + "gps_code": "LDRR" + }, + { + "id": "3990", + "ident": "LDSB", + "type": "medium_airport", + "name": "Brač Airport", + "latitude_deg": "43.285702", + "longitude_deg": "16.679701", + "elevation_ft": "1776", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-17", + "municipality": "Bol", + "scheduled_service": "yes", + "gps_code": "LDSB", + "iata_code": "BWK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bra%C4%8D_Airport", + "keywords": "Bol Airport" + }, + { + "id": "43963", + "ident": "LDSF", + "type": "heliport", + "name": "Firule Heliport", + "latitude_deg": "43.5029296875", + "longitude_deg": "16.46221923828125", + "elevation_ft": "77", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-17", + "municipality": "Split", + "scheduled_service": "no" + }, + { + "id": "29968", + "ident": "LDSH", + "type": "small_airport", + "name": "Hvar Airport", + "latitude_deg": "43.181702", + "longitude_deg": "16.633301", + "elevation_ft": "92", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-17", + "municipality": "Hvar Island", + "scheduled_service": "no", + "gps_code": "LDSH" + }, + { + "id": "320745", + "ident": "LDSM", + "type": "closed", + "name": "Lumbarda Seaplane Terminal", + "latitude_deg": "42.923159", + "longitude_deg": "17.17049", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-19", + "municipality": "Lumbarda", + "scheduled_service": "no", + "gps_code": "LDSM" + }, + { + "id": "3991", + "ident": "LDSP", + "type": "medium_airport", + "name": "Split Airport", + "latitude_deg": "43.53889846801758", + "longitude_deg": "16.29800033569336", + "elevation_ft": "79", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-17", + "municipality": "Split", + "scheduled_service": "yes", + "gps_code": "LDSP", + "iata_code": "SPU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Split_Airport" + }, + { + "id": "30417", + "ident": "LDSS", + "type": "small_airport", + "name": "Sinj Piket Airfield", + "latitude_deg": "43.700298", + "longitude_deg": "16.6714", + "elevation_ft": "981", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-17", + "municipality": "Sinj", + "scheduled_service": "no", + "gps_code": "LDSS", + "keywords": "Sinj Airport, Sinj Sport Airport" + }, + { + "id": "3992", + "ident": "LDVA", + "type": "small_airport", + "name": "Varaždin Airport", + "latitude_deg": "46.294647216796875", + "longitude_deg": "16.382932662963867", + "elevation_ft": "548", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-05", + "municipality": "Varaždin", + "scheduled_service": "no", + "gps_code": "LDVA" + }, + { + "id": "29747", + "ident": "LDVC", + "type": "small_airport", + "name": "Čakovec Pribislavec Airport", + "latitude_deg": "46.391899", + "longitude_deg": "16.500299", + "elevation_ft": "512", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-20", + "municipality": "Čakovec", + "scheduled_service": "no", + "gps_code": "LDVC" + }, + { + "id": "29819", + "ident": "LDVD", + "type": "small_airport", + "name": "Daruvar Blagorod Airport", + "latitude_deg": "45.55939865112305", + "longitude_deg": "17.033100128173828", + "elevation_ft": "410", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-07", + "municipality": "Daruvar", + "scheduled_service": "no", + "gps_code": "LDVD" + }, + { + "id": "30039", + "ident": "LDVK", + "type": "closed", + "name": "Koprivnica Danic Airport", + "latitude_deg": "46.21310043334961", + "longitude_deg": "16.837200164794922", + "elevation_ft": "440", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-06", + "municipality": "Koprivnica", + "scheduled_service": "no", + "gps_code": "LDVK" + }, + { + "id": "313857", + "ident": "LDW", + "type": "small_airport", + "name": "Lansdowne Airport", + "latitude_deg": "-17.6128", + "longitude_deg": "126.743", + "elevation_ft": "1190", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Lansdowne Station", + "scheduled_service": "no", + "iata_code": "LDW" + }, + { + "id": "3993", + "ident": "LDZA", + "type": "large_airport", + "name": "Zagreb Airport", + "latitude_deg": "45.7429008484", + "longitude_deg": "16.0687999725", + "elevation_ft": "353", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-21", + "municipality": "Zagreb", + "scheduled_service": "yes", + "gps_code": "LDZA", + "iata_code": "ZAG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zagreb_Airport", + "keywords": "Pleso" + }, + { + "id": "29744", + "ident": "LDZB", + "type": "small_airport", + "name": "Buševec Velika Glider Airport", + "latitude_deg": "45.647499084472656", + "longitude_deg": "16.124399185180664", + "elevation_ft": "341", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-01", + "municipality": "Busevec", + "scheduled_service": "no", + "gps_code": "LDZB" + }, + { + "id": "29765", + "ident": "LDZC", + "type": "closed", + "name": "Čazma Grabovnica Airport", + "latitude_deg": "45.749698638916016", + "longitude_deg": "16.66360092163086", + "elevation_ft": "479", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-07", + "municipality": "Čazma", + "scheduled_service": "no", + "gps_code": "LDZC" + }, + { + "id": "3994", + "ident": "LDZD", + "type": "medium_airport", + "name": "Zadar Airport", + "latitude_deg": "44.108299", + "longitude_deg": "15.3467", + "elevation_ft": "289", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-13", + "municipality": "Zemunik (Zadar)", + "scheduled_service": "yes", + "gps_code": "LDZD", + "iata_code": "ZAD", + "home_link": "https://www.zadar-airport.hr/en", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zadar_Airport" + }, + { + "id": "316165", + "ident": "LDZE", + "type": "small_airport", + "name": "Zvekovac", + "latitude_deg": "45.823056", + "longitude_deg": "16.5", + "elevation_ft": "374", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-01", + "municipality": "Zvekovac", + "scheduled_service": "no", + "gps_code": "LDZE", + "home_link": "http://www.akdubrava.net" + }, + { + "id": "322815", + "ident": "LDZI", + "type": "small_airport", + "name": "Ivanić-Grad Airstrip", + "latitude_deg": "45.719874", + "longitude_deg": "16.343272", + "elevation_ft": "374", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-01", + "municipality": "Ivanić-Grad", + "scheduled_service": "no", + "gps_code": "LDZI" + }, + { + "id": "29710", + "ident": "LDZJ", + "type": "small_airport", + "name": "Bjelovar Brezova Airport", + "latitude_deg": "45.860801696777344", + "longitude_deg": "16.835800170898438", + "elevation_ft": "430", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-07", + "municipality": "Bjelovar", + "scheduled_service": "no", + "gps_code": "LDZJ" + }, + { + "id": "316069", + "ident": "LDZK", + "type": "small_airport", + "name": "Aerodrom Zabok-Gubaševo", + "latitude_deg": "46.013233", + "longitude_deg": "15.860129", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-02", + "municipality": "Zabok", + "scheduled_service": "no", + "gps_code": "LDZK", + "home_link": "http://www.zagorje-aerodrom.hr/" + }, + { + "id": "30574", + "ident": "LDZL", + "type": "small_airport", + "name": "Lučko Airport", + "latitude_deg": "45.76689910888672", + "longitude_deg": "15.848600387573242", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-21", + "municipality": "Zagreb", + "scheduled_service": "no", + "gps_code": "LDZL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lu%C4%8Dko_Airport" + }, + { + "id": "315504", + "ident": "LDZS", + "type": "small_airport", + "name": "Sisak", + "latitude_deg": "45.465556", + "longitude_deg": "16.486389", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-03", + "scheduled_service": "no", + "gps_code": "LDZS" + }, + { + "id": "3995", + "ident": "LDZU", + "type": "closed", + "name": "Udbina Air Base", + "latitude_deg": "44.55759811401367", + "longitude_deg": "15.774399757385254", + "elevation_ft": "2462", + "continent": "EU", + "iso_country": "HR", + "iso_region": "HR-09", + "municipality": "Udbina", + "scheduled_service": "no", + "gps_code": "LDZU" + }, + { + "id": "2640", + "ident": "LE83", + "type": "small_airport", + "name": "Aeródromo forestal de Mojados", + "latitude_deg": "41.465728", + "longitude_deg": "-4.713068", + "elevation_ft": "2329", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Mojados", + "scheduled_service": "no", + "gps_code": "LEOA", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aer%C3%B3dromo_de_Mojados" + }, + { + "id": "2641", + "ident": "LE84", + "type": "small_airport", + "name": "Jayena Airfield", + "latitude_deg": "36.930698", + "longitude_deg": "-3.83538", + "elevation_ft": "3654", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Jayena", + "scheduled_service": "no" + }, + { + "id": "31809", + "ident": "LE85", + "type": "closed", + "name": "Tablada Airport", + "latitude_deg": "37.3517", + "longitude_deg": "-6.01456", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Sevilla", + "scheduled_service": "no" + }, + { + "id": "3996", + "ident": "LEAB", + "type": "medium_airport", + "name": "Albacete Airport / Los Llanos Air Base", + "latitude_deg": "38.948502", + "longitude_deg": "-1.86352", + "elevation_ft": "2302", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AB", + "municipality": "Albacete", + "scheduled_service": "no", + "gps_code": "LEAB", + "iata_code": "ABC", + "home_link": "https://www.aena.es/en/albacete.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Albacete_Airport" + }, + { + "id": "3997", + "ident": "LEAL", + "type": "large_airport", + "name": "Alicante-Elche Miguel Hernández Airport", + "latitude_deg": "38.2822", + "longitude_deg": "-0.558156", + "elevation_ft": "142", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Alicante", + "scheduled_service": "yes", + "gps_code": "LEAL", + "iata_code": "ALC", + "home_link": "https://www.aena.es/en/alicante-elche.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alicante_Airport" + }, + { + "id": "3998", + "ident": "LEAM", + "type": "medium_airport", + "name": "Almería Airport", + "latitude_deg": "36.843899", + "longitude_deg": "-2.3701", + "elevation_ft": "70", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Almería", + "scheduled_service": "yes", + "gps_code": "LEAM", + "iata_code": "LEI", + "home_link": "https://www.aena.es/en/almeria.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Almer%C3%ADa_International_Airport" + }, + { + "id": "29409", + "ident": "LEAP", + "type": "small_airport", + "name": "Ampuriabrava Airfield", + "latitude_deg": "42.259998", + "longitude_deg": "3.109722", + "elevation_ft": "2", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Empuriabrava", + "scheduled_service": "no", + "gps_code": "LEAP", + "keywords": "Empuriabrava,Ampuriabrava" + }, + { + "id": "3999", + "ident": "LEAS", + "type": "medium_airport", + "name": "Asturias Airport", + "latitude_deg": "43.563599", + "longitude_deg": "-6.03462", + "elevation_ft": "416", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-O", + "municipality": "Ranón", + "scheduled_service": "yes", + "gps_code": "LEAS", + "iata_code": "OVD", + "home_link": "https://www.aena.es/en/asturias.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Asturias_Airport" + }, + { + "id": "31805", + "ident": "LEAT", + "type": "closed", + "name": "Alfes Airport", + "latitude_deg": "41.549999", + "longitude_deg": "0.65", + "elevation_ft": "705", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-L", + "municipality": "LLeida - Alfes", + "scheduled_service": "no", + "gps_code": "LEAT" + }, + { + "id": "30054", + "ident": "LEAX", + "type": "small_airport", + "name": "La Axarquía-Leoni Benabu Airfield", + "latitude_deg": "36.801666", + "longitude_deg": "-4.135556", + "elevation_ft": "118", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Málaga", + "scheduled_service": "no", + "gps_code": "LEAX" + }, + { + "id": "4000", + "ident": "LEBA", + "type": "medium_airport", + "name": "Córdoba Airport", + "latitude_deg": "37.841999", + "longitude_deg": "-4.84888", + "elevation_ft": "297", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Córdoba", + "scheduled_service": "no", + "gps_code": "LEBA", + "iata_code": "ODB", + "home_link": "https://www.aena.es/en/cordoba.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/C%C3%B3rdoba_Airport" + }, + { + "id": "4001", + "ident": "LEBB", + "type": "medium_airport", + "name": "Bilbao Airport", + "latitude_deg": "43.301102", + "longitude_deg": "-2.91061", + "elevation_ft": "138", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-PV", + "municipality": "Bilbao", + "scheduled_service": "yes", + "gps_code": "LEBB", + "iata_code": "BIO", + "home_link": "https://www.aena.es/en/bilbao.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bilbao_Airport" + }, + { + "id": "43249", + "ident": "LEBC", + "type": "heliport", + "name": "Costa Brava-Centro Heliport", + "latitude_deg": "41.807701110839844", + "longitude_deg": "3.037179946899414", + "elevation_ft": "42", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "scheduled_service": "no", + "gps_code": "LEBC" + }, + { + "id": "355324", + "ident": "LEBD", + "type": "heliport", + "name": "El Bodon Heliport", + "latitude_deg": "40.48453", + "longitude_deg": "-6.57709", + "elevation_ft": "2647", + "continent": "AF", + "iso_country": "ES", + "iso_region": "ES-SA", + "municipality": "37520 El Bodón", + "scheduled_service": "no", + "gps_code": "LEBD" + }, + { + "id": "4002", + "ident": "LEBE", + "type": "small_airport", + "name": "Beas De Segura Airfield", + "latitude_deg": "38.271111", + "longitude_deg": "-2.948889", + "elevation_ft": "1780", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Jaén", + "scheduled_service": "no", + "gps_code": "LEBE" + }, + { + "id": "4003", + "ident": "LEBG", + "type": "medium_airport", + "name": "Burgos Airport", + "latitude_deg": "42.357601", + "longitude_deg": "-3.62076", + "elevation_ft": "2945", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Burgos", + "scheduled_service": "yes", + "gps_code": "LEBG", + "iata_code": "RGS", + "home_link": "https://www.aena.es/en/burgos.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Burgos_Airport" + }, + { + "id": "43295", + "ident": "LEBI", + "type": "closed", + "name": "Sa Sabina Heliport", + "latitude_deg": "38.716547", + "longitude_deg": "1.399969", + "elevation_ft": "44", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-PM", + "municipality": "Sa Sabina", + "scheduled_service": "no", + "gps_code": "LEBI" + }, + { + "id": "4004", + "ident": "LEBL", + "type": "large_airport", + "name": "Josep Tarradellas Barcelona-El Prat Airport", + "latitude_deg": "41.2971", + "longitude_deg": "2.07846", + "elevation_ft": "12", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Barcelona", + "scheduled_service": "yes", + "gps_code": "LEBL", + "iata_code": "BCN", + "home_link": "https://www.aena.es/en/josep-tarradellas-barcelona-el-prat.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barcelona%E2%80%93El_Prat_Airport", + "keywords": "El Prat Airport,Barcelona International,Josep Tarradellas Barcelona-El Prat Airport" + }, + { + "id": "43239", + "ident": "LEBP", + "type": "heliport", + "name": "BP Oil España Heliport", + "latitude_deg": "39.957901", + "longitude_deg": "-0.011632", + "elevation_ft": "943", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Castellón de La Plana", + "scheduled_service": "no", + "gps_code": "LEBP" + }, + { + "id": "4005", + "ident": "LEBZ", + "type": "medium_airport", + "name": "Badajoz Airport", + "latitude_deg": "38.8913", + "longitude_deg": "-6.82133", + "elevation_ft": "609", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-EX", + "municipality": "Badajoz", + "scheduled_service": "yes", + "gps_code": "LEBZ", + "iata_code": "BJZ", + "home_link": "https://www.aena.es/en/badajoz.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Badajoz_Airport", + "keywords": "Talavera La Real Airport" + }, + { + "id": "43278", + "ident": "LECA", + "type": "small_airport", + "name": "La Nava - Corral De Ayllón Airfield", + "latitude_deg": "41.410801", + "longitude_deg": "-3.44833", + "elevation_ft": "3280", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Corral de Ayllón", + "scheduled_service": "no", + "gps_code": "LECA" + }, + { + "id": "43244", + "ident": "LECC", + "type": "heliport", + "name": "Cas Curredó Heliport", + "latitude_deg": "38.9291", + "longitude_deg": "1.46633", + "elevation_ft": "278", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-PM", + "municipality": "Santa Eulària des Riu", + "scheduled_service": "no", + "gps_code": "LECC" + }, + { + "id": "4006", + "ident": "LECD", + "type": "small_airport", + "name": "La Cerdanya Airfield", + "latitude_deg": "42.386398", + "longitude_deg": "1.86667", + "elevation_ft": "3586", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Alp", + "scheduled_service": "no", + "gps_code": "LECD" + }, + { + "id": "43241", + "ident": "LECF", + "type": "small_airport", + "name": "Calaf-Sallavinera Airfield", + "latitude_deg": "41.744202", + "longitude_deg": "1.55694", + "elevation_ft": "2355", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Sant Pere Sallavinera", + "scheduled_service": "no", + "gps_code": "LECF", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aer%C3%B3dromo_de_Calaf-Salavinera" + }, + { + "id": "300859", + "ident": "LECH", + "type": "medium_airport", + "name": "Castellón-Costa Azahar Airport", + "latitude_deg": "40.213889", + "longitude_deg": "0.073333", + "elevation_ft": "1182", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CS", + "municipality": "Castellón de la Plana", + "scheduled_service": "yes", + "gps_code": "LECH", + "iata_code": "CDT", + "home_link": "https://www.aeroportcastello.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Castell%C3%B3n%E2%80%93Costa_Azahar_Airport" + }, + { + "id": "30367", + "ident": "LECI", + "type": "small_airport", + "name": "Santa Cilia De Jaca Airfield", + "latitude_deg": "42.569199", + "longitude_deg": "-0.727778", + "elevation_ft": "2241", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AR", + "municipality": "Huesca", + "scheduled_service": "no", + "gps_code": "LECI", + "home_link": "http://www.fly-pyr.es" + }, + { + "id": "43247", + "ident": "LECJ", + "type": "small_airport", + "name": "Castejón de los Monegros Airport", + "latitude_deg": "41.6077995300293", + "longitude_deg": "-0.21832700073719025", + "elevation_ft": "1424", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AR", + "municipality": "Huesca", + "scheduled_service": "no", + "gps_code": "LECJ" + }, + { + "id": "29760", + "ident": "LECN", + "type": "small_airport", + "name": "Castellon de la Plana Aerodrome", + "latitude_deg": "39.999199", + "longitude_deg": "0.026111", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Castellón de la Plana", + "scheduled_service": "no", + "gps_code": "LECN", + "home_link": "http://aeroclubcastellon.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Castell%C3%B3n_Airport" + }, + { + "id": "4007", + "ident": "LECO", + "type": "medium_airport", + "name": "A Coruña Airport", + "latitude_deg": "43.302101", + "longitude_deg": "-8.37726", + "elevation_ft": "326", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GA", + "municipality": "Culleredo", + "scheduled_service": "yes", + "gps_code": "LECO", + "iata_code": "LCG", + "home_link": "https://www.aena.es/en/a-coruna.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/A_Coru%C3%B1a_Airport", + "keywords": "The Groyne, La Coruña" + }, + { + "id": "43254", + "ident": "LECT", + "type": "small_airport", + "name": "El Castaño Airport", + "latitude_deg": "39.010700225799994", + "longitude_deg": "-4.38636016846", + "elevation_ft": "2116", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Luciana", + "scheduled_service": "no", + "gps_code": "LECT" + }, + { + "id": "4044", + "ident": "LECU", + "type": "medium_airport", + "name": "Madrid-Cuatro Vientos Airport", + "latitude_deg": "40.370701", + "longitude_deg": "-3.78514", + "elevation_ft": "2269", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Madrid", + "scheduled_service": "no", + "gps_code": "LECU", + "iata_code": "ECV", + "home_link": "https://www.aena.es/en/madrid-cuatro-vientos.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cuatro_Vientos_Airport", + "keywords": "LEVS" + }, + { + "id": "326765", + "ident": "LECV", + "type": "heliport", + "name": "Base Aérea de Colmenar Viejo", + "latitude_deg": "40.697296", + "longitude_deg": "-3.763255", + "elevation_ft": "3264", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Colmenar Viejo", + "scheduled_service": "no", + "gps_code": "LECV", + "keywords": "FAMET" + }, + { + "id": "43243", + "ident": "LECX", + "type": "closed", + "name": "Campolara Airport", + "latitude_deg": "40.903099", + "longitude_deg": "-4.52028", + "elevation_ft": "3353", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Segovia", + "scheduled_service": "no", + "gps_code": "LECX" + }, + { + "id": "308328", + "ident": "LEDA", + "type": "medium_airport", + "name": "Lleida-Alguaire Airport", + "latitude_deg": "41.728185", + "longitude_deg": "0.535023", + "elevation_ft": "1152", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Lleida", + "scheduled_service": "yes", + "gps_code": "LEDA", + "iata_code": "ILD", + "home_link": "http://www.aeroportlleida.cat/?L=2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lleida-Alguaire_Airport" + }, + { + "id": "43251", + "ident": "LEDG", + "type": "heliport", + "name": "Dirección General de Tráfico Heliport", + "latitude_deg": "40.44929885864258", + "longitude_deg": "-3.6461305618286133", + "elevation_ft": "2336", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Madrid", + "scheduled_service": "no", + "gps_code": "LEDG" + }, + { + "id": "43267", + "ident": "LEDO", + "type": "heliport", + "name": "Hospital Doce de Octubre Heliport", + "latitude_deg": "40.3747362789", + "longitude_deg": "-3.69985252619", + "elevation_ft": "1970", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Madrid", + "scheduled_service": "no", + "gps_code": "LEDO" + }, + { + "id": "326764", + "ident": "LEEC", + "type": "heliport", + "name": "Base Aérea de El Copero", + "latitude_deg": "37.313164", + "longitude_deg": "-5.999058", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-SE", + "municipality": "Dos Hermanas", + "scheduled_service": "no", + "gps_code": "LEEC", + "wikipedia_link": "https://es.wikipedia.org/wiki/El_Copero" + }, + { + "id": "43256", + "ident": "LEEL", + "type": "heliport", + "name": "El Musel Heliport", + "latitude_deg": "43.54973220825195", + "longitude_deg": "-5.695445537567139", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-O", + "municipality": "Gijón", + "scheduled_service": "no", + "gps_code": "LEEL" + }, + { + "id": "43255", + "ident": "LEEM", + "type": "small_airport", + "name": "El Manantío Airport", + "latitude_deg": "38.77750778198242", + "longitude_deg": "-6.991124153137207", + "elevation_ft": "708", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-EX", + "municipality": "Badajoz", + "scheduled_service": "no", + "gps_code": "LEEM" + }, + { + "id": "43252", + "ident": "LEEV", + "type": "small_airport", + "name": "E. Castellanos-Villacastín Airport", + "latitude_deg": "40.78390121459961", + "longitude_deg": "-4.462779998779297", + "elevation_ft": "3637", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Villacastin", + "scheduled_service": "no", + "gps_code": "LEEV" + }, + { + "id": "43259", + "ident": "LEEX", + "type": "heliport", + "name": "La Cartuja (Expo 92) Heliport", + "latitude_deg": "37.3993", + "longitude_deg": "-6.010675", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Seville", + "scheduled_service": "no", + "gps_code": "LEEX" + }, + { + "id": "4008", + "ident": "LEFM", + "type": "small_airport", + "name": "Fuentemilanos Airport", + "latitude_deg": "40.888611", + "longitude_deg": "-4.2375", + "elevation_ft": "3307", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Segovia", + "scheduled_service": "no", + "gps_code": "LEFM", + "wikipedia_link": "http://es.wikipedia.org/wiki/Aer%C3%B3dromo_de_Fuentemilanos" + }, + { + "id": "43260", + "ident": "LEFR", + "type": "heliport", + "name": "Fira M2 Heliport", + "latitude_deg": "41.35390090942383", + "longitude_deg": "2.1291699409484863", + "elevation_ft": "34", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Barcelona", + "scheduled_service": "no", + "gps_code": "LEFR" + }, + { + "id": "4009", + "ident": "LEGA", + "type": "medium_airport", + "name": "Armilla Air Base", + "latitude_deg": "37.1332016", + "longitude_deg": "-3.63568997", + "elevation_ft": "2297", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Armilla", + "scheduled_service": "no", + "gps_code": "LEGA" + }, + { + "id": "43235", + "ident": "LEGC", + "type": "small_airport", + "name": "Altarejos-Guadalcanal Private Airfield", + "latitude_deg": "38.1717", + "longitude_deg": "-5.73953", + "elevation_ft": "1928", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Sevilla", + "scheduled_service": "no", + "gps_code": "LEGC" + }, + { + "id": "43261", + "ident": "LEGD", + "type": "heliport", + "name": "Garidells Heliport", + "latitude_deg": "41.21390151977539", + "longitude_deg": "1.2415599822998047", + "elevation_ft": "434", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Tarragona", + "scheduled_service": "no", + "gps_code": "LEGD" + }, + { + "id": "4010", + "ident": "LEGE", + "type": "medium_airport", + "name": "Girona-Costa Brava Airport", + "latitude_deg": "41.904639", + "longitude_deg": "2.761774", + "elevation_ft": "468", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GE", + "municipality": "Girona", + "scheduled_service": "yes", + "gps_code": "LEGE", + "iata_code": "GRO", + "home_link": "https://www.aena.es/en/girona-costa-brava.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Girona-Costa_Brava_Airport", + "keywords": "Girona,Costa Brava,Girona-Costa Brava" + }, + { + "id": "331423", + "ident": "LEGP", + "type": "closed", + "name": "El Rinconcillo de Guadalupe", + "latitude_deg": "39.5941266", + "longitude_deg": "-6.2062759", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CC", + "scheduled_service": "no", + "gps_code": "LEGP" + }, + { + "id": "4011", + "ident": "LEGR", + "type": "medium_airport", + "name": "F.G.L. Airport Granada-Jaén Airport", + "latitude_deg": "37.188702", + "longitude_deg": "-3.77736", + "elevation_ft": "1860", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Granada", + "scheduled_service": "yes", + "gps_code": "LEGR", + "iata_code": "GRX", + "home_link": "https://www.aena.es/en/f.g.l.-granada-jaen.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Federico_Garc%C3%ADa_Lorca_Airport" + }, + { + "id": "43292", + "ident": "LEGS", + "type": "heliport", + "name": "Parque De Garraf-Sitges Heliport", + "latitude_deg": "41.27389907836914", + "longitude_deg": "1.914720058441162", + "elevation_ft": "1100", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "scheduled_service": "no", + "gps_code": "LEGS" + }, + { + "id": "4012", + "ident": "LEGT", + "type": "medium_airport", + "name": "Getafe Air Base", + "latitude_deg": "40.29410171508789", + "longitude_deg": "-3.723829984664917", + "elevation_ft": "2031", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Getafe", + "scheduled_service": "no", + "gps_code": "LEGT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Getafe_Air_Base" + }, + { + "id": "43262", + "ident": "LEGU", + "type": "small_airport", + "name": "Aeródromo de Guadalupe", + "latitude_deg": "39.345699", + "longitude_deg": "-5.19735", + "elevation_ft": "1408", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-EX", + "municipality": "Guadalupe", + "scheduled_service": "no", + "gps_code": "LEGU" + }, + { + "id": "43242", + "ident": "LEGV", + "type": "heliport", + "name": "Campo Gaviota Heliport", + "latitude_deg": "43.44169998168945", + "longitude_deg": "-2.7536098957061768", + "elevation_ft": "630", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-PV", + "scheduled_service": "no", + "gps_code": "LEGV" + }, + { + "id": "38693", + "ident": "LEGY", + "type": "small_airport", + "name": "Garray Airfield", + "latitude_deg": "41.820004", + "longitude_deg": "-2.476387", + "elevation_ft": "3360", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Soria", + "scheduled_service": "no", + "gps_code": "LEGY", + "wikipedia_link": "http://es.wikipedia.org/wiki/Aer%C3%B3dromo_de_Garray-Soria" + }, + { + "id": "43265", + "ident": "LEHA", + "type": "heliport", + "name": "Alcorcón Hospital Heliport", + "latitude_deg": "40.349702", + "longitude_deg": "-3.83819", + "elevation_ft": "2269", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Alcorcón", + "scheduled_service": "no", + "gps_code": "LEHA" + }, + { + "id": "43248", + "ident": "LEHB", + "type": "closed", + "name": "Ciudad Sanitaria y Universitaria de Bellvitge Heliport", + "latitude_deg": "41.345299", + "longitude_deg": "2.10729", + "elevation_ft": "35", + "continent": "AF", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Barcelona", + "scheduled_service": "no", + "gps_code": "LEHB" + }, + { + "id": "29967", + "ident": "LEHC", + "type": "small_airport", + "name": "Huesca-Pirineos Airport", + "latitude_deg": "42.076099", + "longitude_deg": "-0.316667", + "elevation_ft": "1769", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AR", + "municipality": "Monflorite/Alcalá del Obispo", + "scheduled_service": "no", + "gps_code": "LEHC", + "iata_code": "HSK", + "home_link": "https://www.aena.es/en/huesca-pirineos.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Huesca%E2%80%93Pirineos_Airport", + "keywords": "Huesca-Pirineos, Huesca-Pyrenees" + }, + { + "id": "43264", + "ident": "LEHE", + "type": "heliport", + "name": "Helicsa Heliport", + "latitude_deg": "39.071106", + "longitude_deg": "-1.834567", + "elevation_ft": "2226", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AB", + "municipality": "Albacete", + "scheduled_service": "no", + "gps_code": "LEHE" + }, + { + "id": "43269", + "ident": "LEHG", + "type": "heliport", + "name": "Hospital General De Catalunya Heliport", + "latitude_deg": "41.47359848022461", + "longitude_deg": "2.0425000190734863", + "elevation_ft": "385", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "scheduled_service": "no", + "gps_code": "LEHG" + }, + { + "id": "31807", + "ident": "LEHI", + "type": "closed", + "name": "Hinojosa del Duque Airfield", + "latitude_deg": "38.51209", + "longitude_deg": "-5.107215", + "elevation_ft": "1772", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Hinojosa del Duque", + "scheduled_service": "no", + "gps_code": "LEHI" + }, + { + "id": "43273", + "ident": "LEHJ", + "type": "heliport", + "name": "Hospital Universitario Joan XXIII Heliport", + "latitude_deg": "41.1255989074707", + "longitude_deg": "1.23812997341156", + "elevation_ft": "75", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Tarragona", + "scheduled_service": "no", + "gps_code": "LEHJ" + }, + { + "id": "43270", + "ident": "LEHM", + "type": "heliport", + "name": "Hospital General De Manresa Heliport", + "latitude_deg": "41.720001220703125", + "longitude_deg": "1.840559959411621", + "elevation_ft": "962", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Manresa", + "scheduled_service": "no", + "gps_code": "LEHM" + }, + { + "id": "4013", + "ident": "LEIB", + "type": "large_airport", + "name": "Ibiza Airport", + "latitude_deg": "38.872898", + "longitude_deg": "1.37312", + "elevation_ft": "24", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-PM", + "municipality": "Ibiza (Eivissa)", + "scheduled_service": "yes", + "gps_code": "LEIB", + "iata_code": "IBZ", + "home_link": "https://www.aena.es/en/ibiza.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ibiza_Airport" + }, + { + "id": "38691", + "ident": "LEIG", + "type": "small_airport", + "name": "Igualada/Odena Airfield", + "latitude_deg": "41.585602", + "longitude_deg": "1.65306", + "elevation_ft": "1080", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Barcelona", + "scheduled_service": "no", + "gps_code": "LEIG", + "home_link": "http://www10.gencat.net/ptop/AppJava/cat/aerotrans/aerodroms/aerodroms/igualada.jsp" + }, + { + "id": "43275", + "ident": "LEIU", + "type": "heliport", + "name": "Iurreta Heliport", + "latitude_deg": "43.18190002441406", + "longitude_deg": "-2.646389961242676", + "elevation_ft": "422", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-PV", + "municipality": "Durango", + "scheduled_service": "no", + "gps_code": "LEIU" + }, + { + "id": "4014", + "ident": "LEIZ", + "type": "small_airport", + "name": "La Perdiz - Torre De Juan Abad Airfield", + "latitude_deg": "38.5131", + "longitude_deg": "-3.36433", + "elevation_ft": "2902", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Torre de Juan Abad", + "scheduled_service": "no", + "gps_code": "LEIZ" + }, + { + "id": "43274", + "ident": "LEJC", + "type": "heliport", + "name": "Hotel Rey Juan Carlos I Heliport", + "latitude_deg": "41.38249969482422", + "longitude_deg": "2.1091699600219727", + "elevation_ft": "287", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Barcelona", + "scheduled_service": "no", + "gps_code": "LEJC" + }, + { + "id": "43282", + "ident": "LEJO", + "type": "small_airport", + "name": "Madrigalejo Del Monte Airport", + "latitude_deg": "42.1343994140625", + "longitude_deg": "-3.731029987335205", + "elevation_ft": "3030", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Madrigalejo Del Monte", + "scheduled_service": "no", + "gps_code": "LEJO" + }, + { + "id": "4015", + "ident": "LEJR", + "type": "medium_airport", + "name": "Jerez Airport", + "latitude_deg": "36.744598", + "longitude_deg": "-6.06011", + "elevation_ft": "93", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Jerez de la Frontera", + "scheduled_service": "yes", + "gps_code": "LEJR", + "iata_code": "XRY", + "home_link": "https://www.aena.es/en/jerez.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jerez_Airport" + }, + { + "id": "43268", + "ident": "LEJT", + "type": "heliport", + "name": "Hospital Doctor Josep Trueta Heliport", + "latitude_deg": "41.99789810180664", + "longitude_deg": "2.8213999271392822", + "elevation_ft": "215", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Gerona", + "scheduled_service": "no", + "gps_code": "LEJT" + }, + { + "id": "43277", + "ident": "LEJU", + "type": "small_airport", + "name": "La Juliana Airport", + "latitude_deg": "37.29499816894531", + "longitude_deg": "-6.162499904632568", + "elevation_ft": "148", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Sevilla", + "scheduled_service": "no", + "gps_code": "LEJU" + }, + { + "id": "4016", + "ident": "LELA", + "type": "small_airport", + "name": "La Calderera Airport", + "latitude_deg": "38.74789810180664", + "longitude_deg": "-3.5145599842071533", + "elevation_ft": "2644", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Valdepeñas", + "scheduled_service": "no", + "gps_code": "LELA" + }, + { + "id": "4017", + "ident": "LELC", + "type": "medium_airport", + "name": "San Javier Airport", + "latitude_deg": "37.775002", + "longitude_deg": "-0.812389", + "elevation_ft": "11", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-MU", + "municipality": "San Javier", + "scheduled_service": "no", + "gps_code": "LELC", + "iata_code": "MJV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Murcia-San_Javier_Airport" + }, + { + "id": "43233", + "ident": "LELH", + "type": "small_airport", + "name": "Alhama De Murcia Airfield", + "latitude_deg": "37.748901", + "longitude_deg": "-1.30216", + "elevation_ft": "669", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-MU", + "municipality": "Cánovas", + "scheduled_service": "no", + "gps_code": "LELH" + }, + { + "id": "43280", + "ident": "LELI", + "type": "small_airport", + "name": "Aeródromo de Linares", + "latitude_deg": "38.133211", + "longitude_deg": "-3.642554", + "elevation_ft": "1033", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Linares", + "scheduled_service": "no", + "gps_code": "LELI", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aer%C3%B3dromo_de_Linares" + }, + { + "id": "29412", + "ident": "LELL", + "type": "small_airport", + "name": "Sabadell Airfield", + "latitude_deg": "41.520901", + "longitude_deg": "2.10508", + "elevation_ft": "485", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Sabadell", + "scheduled_service": "no", + "gps_code": "LELL", + "iata_code": "QSA", + "home_link": "https://www.aena.es/en/sabadell.html" + }, + { + "id": "43234", + "ident": "LELM", + "type": "small_airport", + "name": "Almansa Airfield", + "latitude_deg": "38.895", + "longitude_deg": "-1.11318", + "elevation_ft": "2248", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AB", + "municipality": "Almansa", + "scheduled_service": "no", + "gps_code": "LELM" + }, + { + "id": "4018", + "ident": "LELN", + "type": "medium_airport", + "name": "León Airport", + "latitude_deg": "42.589001", + "longitude_deg": "-5.65556", + "elevation_ft": "3006", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "León", + "scheduled_service": "yes", + "gps_code": "LELN", + "iata_code": "LEN", + "home_link": "https://www.aena.es/en/leon.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Le%C3%B3n_Airport" + }, + { + "id": "30083", + "ident": "LELO", + "type": "medium_airport", + "name": "Logroño-Agoncillo Airport", + "latitude_deg": "42.460953", + "longitude_deg": "-2.322235", + "elevation_ft": "1161", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-LO", + "municipality": "Logroño", + "scheduled_service": "no", + "gps_code": "LERJ", + "iata_code": "RJL", + "home_link": "https://www.aena.es/en/logrono-agoncillo.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Logro%C3%B1o%E2%80%93Agoncillo_Airport", + "keywords": "LELO" + }, + { + "id": "43279", + "ident": "LELT", + "type": "small_airport", + "name": "Lillo Airport", + "latitude_deg": "39.71689987182617", + "longitude_deg": "-3.3205599784851074", + "elevation_ft": "2272", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Lillo", + "scheduled_service": "no", + "gps_code": "LELT" + }, + { + "id": "4019", + "ident": "LEMD", + "type": "large_airport", + "name": "Adolfo Suárez Madrid–Barajas Airport", + "latitude_deg": "40.471926", + "longitude_deg": "-3.56264", + "elevation_ft": "1998", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Madrid", + "scheduled_service": "yes", + "gps_code": "LEMD", + "iata_code": "MAD", + "home_link": "https://www.aena.es/en/adolfo-suarez-madrid-barajas.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Adolfo_Su%C3%A1rez_Madrid%E2%80%93Barajas_Airport", + "keywords": "Leganés, Madrid Barajas International Airport" + }, + { + "id": "43283", + "ident": "LEMF", + "type": "small_airport", + "name": "Mafé - Gibraleón Airfield", + "latitude_deg": "37.3643", + "longitude_deg": "-6.92094", + "elevation_ft": "86", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Gibraleón", + "scheduled_service": "no", + "gps_code": "LEMF" + }, + { + "id": "4020", + "ident": "LEMG", + "type": "large_airport", + "name": "Málaga-Costa del Sol Airport", + "latitude_deg": "36.6749", + "longitude_deg": "-4.49911", + "elevation_ft": "53", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Málaga", + "scheduled_service": "yes", + "gps_code": "LEMG", + "iata_code": "AGP", + "home_link": "https://www.aena.es/en/malaga-costa-del-sol.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/M%C3%A1laga_Airport", + "keywords": "Costa del Sol,Malaga" + }, + { + "id": "4021", + "ident": "LEMH", + "type": "medium_airport", + "name": "Menorca Airport", + "latitude_deg": "39.862598", + "longitude_deg": "4.21865", + "elevation_ft": "302", + "continent": "AF", + "iso_country": "ES", + "iso_region": "ES-PM", + "municipality": "Mahón (Maó)", + "scheduled_service": "yes", + "gps_code": "LEMH", + "iata_code": "MAH", + "home_link": "https://www.aena.es/en/menorca.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Menorca_Airport" + }, + { + "id": "43263", + "ident": "LEMN", + "type": "heliport", + "name": "Heli Montsiá - Amposta Heliport", + "latitude_deg": "40.66640090942383", + "longitude_deg": "0.5647220015525818", + "elevation_ft": "254", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Tarragona", + "scheduled_service": "no", + "gps_code": "LEMN" + }, + { + "id": "4022", + "ident": "LEMO", + "type": "medium_airport", + "name": "Moron Air Base", + "latitude_deg": "37.17490005493164", + "longitude_deg": "-5.615940093994141", + "elevation_ft": "285", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Morón", + "scheduled_service": "no", + "gps_code": "LEMO", + "iata_code": "OZP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mor%C3%B3n_Air_Base" + }, + { + "id": "43281", + "ident": "LEMP", + "type": "small_airport", + "name": "Los Martínez Del Puerto Airfield", + "latitude_deg": "37.836817", + "longitude_deg": "-1.097667", + "elevation_ft": "534", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-MU", + "municipality": "Murcia", + "scheduled_service": "no", + "gps_code": "LEMP" + }, + { + "id": "4023", + "ident": "LEMR", + "type": "small_airport", + "name": "La Morgal Airport", + "latitude_deg": "43.4291992188", + "longitude_deg": "-5.8305602073700005", + "elevation_ft": "541", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-O", + "municipality": "Oviedo", + "scheduled_service": "no", + "gps_code": "LEMR", + "home_link": "http://www.aeroclubllanera.com/", + "wikipedia_link": "http://es.wikipedia.org/wiki/Aer%C3%B3dromo_de_La_Morgal" + }, + { + "id": "43284", + "ident": "LEMS", + "type": "small_airport", + "name": "Manresa Airfield", + "latitude_deg": "41.765301", + "longitude_deg": "1.86167", + "elevation_ft": "897", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Manresa", + "scheduled_service": "no", + "gps_code": "LEMS" + }, + { + "id": "43245", + "ident": "LEMT", + "type": "small_airport", + "name": "Casarrubios Del Monte Airport", + "latitude_deg": "40.235001", + "longitude_deg": "-4.02639", + "elevation_ft": "2050", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Toledo", + "scheduled_service": "no", + "gps_code": "LEMT" + }, + { + "id": "30168", + "ident": "LEMU", + "type": "small_airport", + "name": "Muchamiel Airfield", + "latitude_deg": "38.440601", + "longitude_deg": "-0.475278", + "elevation_ft": "427", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Muchamiel", + "scheduled_service": "no", + "gps_code": "LEMU", + "home_link": "http://www.aerodromodemutxamel.es/", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aer%C3%B3dromo_de_Muchamiel" + }, + { + "id": "34924", + "ident": "LEMX", + "type": "small_airport", + "name": "La Mancha-Toledo Airfield", + "latitude_deg": "39.562099", + "longitude_deg": "-3.25075", + "elevation_ft": "2405", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Toledo", + "scheduled_service": "no", + "gps_code": "LEMX" + }, + { + "id": "43237", + "ident": "LENA", + "type": "small_airport", + "name": "Benabarre Airport", + "latitude_deg": "42.0228", + "longitude_deg": "0.482222", + "elevation_ft": "2450", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AR", + "municipality": "Huesca", + "scheduled_service": "no", + "gps_code": "LENA", + "home_link": "http://aerodromobenabarre.info", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aeródromo_de_Benabarre", + "keywords": "Benabarre," + }, + { + "id": "43240", + "ident": "LENB", + "type": "heliport", + "name": "Cala'n Blanes Heliport", + "latitude_deg": "39.996836", + "longitude_deg": "3.814097", + "elevation_ft": "27", + "continent": "AF", + "iso_country": "ES", + "iso_region": "ES-PM", + "municipality": "Ciutadella de Menorca", + "scheduled_service": "no", + "gps_code": "LENB" + }, + { + "id": "331318", + "ident": "LENE", + "type": "small_airport", + "name": "La Caminera", + "latitude_deg": "38.6686679", + "longitude_deg": "-3.3031456", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "scheduled_service": "no", + "gps_code": "LENE" + }, + { + "id": "43288", + "ident": "LENH", + "type": "heliport", + "name": "Nou Hospital De Mataró Heliport", + "latitude_deg": "41.56079864501953", + "longitude_deg": "2.429719924926758", + "elevation_ft": "638", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Mataró", + "scheduled_service": "no", + "gps_code": "LENH" + }, + { + "id": "43266", + "ident": "LENM", + "type": "heliport", + "name": "Hospital Can Misses Heliport", + "latitude_deg": "38.9175", + "longitude_deg": "1.41944", + "elevation_ft": "91", + "continent": "AF", + "iso_country": "ES", + "iso_region": "ES-PM", + "municipality": "Ibiza (Eivissa)", + "scheduled_service": "no", + "gps_code": "LENM" + }, + { + "id": "333776", + "ident": "LENN", + "type": "small_airport", + "name": "La Centenera", + "latitude_deg": "38.11489", + "longitude_deg": "-4.11547", + "elevation_ft": "2169", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-J", + "municipality": "Marmolejo", + "scheduled_service": "no", + "gps_code": "LENN" + }, + { + "id": "313892", + "ident": "LEO", + "type": "small_airport", + "name": "Lekoni Airport", + "latitude_deg": "-1.5724", + "longitude_deg": "14.2878", + "elevation_ft": "2036", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-2", + "municipality": "Lekoni", + "scheduled_service": "no", + "iata_code": "LEO", + "keywords": "Léconi" + }, + { + "id": "4024", + "ident": "LEOC", + "type": "small_airport", + "name": "Ocaña Airport", + "latitude_deg": "39.9375", + "longitude_deg": "-3.50333", + "elevation_ft": "2405", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Ocaña", + "scheduled_service": "no", + "gps_code": "LEOC" + }, + { + "id": "43291", + "ident": "LEOR", + "type": "heliport", + "name": "Parque De Bomberos De Orriols Heliport", + "latitude_deg": "42.132198333740234", + "longitude_deg": "2.9038898944854736", + "elevation_ft": "530", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Orriols", + "scheduled_service": "no", + "gps_code": "LEOR" + }, + { + "id": "315993", + "ident": "LEOS", + "type": "small_airport", + "name": "Aeródromo de los Oteros", + "latitude_deg": "42.3330555556", + "longitude_deg": "-5.4519444444", + "elevation_ft": "2620", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-LE", + "municipality": "Pajares de Los Oteros", + "scheduled_service": "no", + "gps_code": "LEOS", + "home_link": "http://www.aerodromolosoteros.com" + }, + { + "id": "43289", + "ident": "LEOT", + "type": "small_airport", + "name": "Ontur Airfield", + "latitude_deg": "38.615681", + "longitude_deg": "-1.526477", + "elevation_ft": "2200", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AB", + "municipality": "Ontur", + "scheduled_service": "no", + "gps_code": "LEOT" + }, + { + "id": "4035", + "ident": "LEPA", + "type": "large_airport", + "name": "Palma de Mallorca Airport", + "latitude_deg": "39.551701", + "longitude_deg": "2.73881", + "elevation_ft": "27", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-PM", + "municipality": "Palma de Mallorca", + "scheduled_service": "yes", + "gps_code": "LEPA", + "iata_code": "PMI", + "home_link": "https://www.aena.es/en/palma-de-mallorca.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Son_Sant_Joan_Airport", + "keywords": "Son Sant Joan Airport, LESJ" + }, + { + "id": "43236", + "ident": "LEPB", + "type": "heliport", + "name": "Autoridad Portuaria de Barcelona Heliport", + "latitude_deg": "41.36429977416992", + "longitude_deg": "2.1830101013183594", + "elevation_ft": "29", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Barcelona", + "scheduled_service": "no", + "gps_code": "LEPB", + "keywords": "Helipuerto de la autoridad portuaria de Barcelona, Port Authority of Barcelona Heliport" + }, + { + "id": "43246", + "ident": "LEPI", + "type": "small_airport", + "name": "Casas de los Pinos Airport", + "latitude_deg": "39.298199", + "longitude_deg": "-2.37872", + "elevation_ft": "2370", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CU", + "municipality": "Casas de los Pinos", + "scheduled_service": "no", + "gps_code": "LEPI" + }, + { + "id": "4025", + "ident": "LEPP", + "type": "medium_airport", + "name": "Pamplona Airport", + "latitude_deg": "42.77", + "longitude_deg": "-1.64633", + "elevation_ft": "1504", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-NA", + "municipality": "Pamplona", + "scheduled_service": "yes", + "gps_code": "LEPP", + "iata_code": "PNA", + "home_link": "https://www.aena.es/en/pamplona.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pamplona_Airport" + }, + { + "id": "43290", + "ident": "LEPR", + "type": "small_airport", + "name": "Palma Del Río Airport", + "latitude_deg": "37.715301513671875", + "longitude_deg": "-5.213560104370117", + "elevation_ft": "408", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Palma del Rio", + "scheduled_service": "no", + "gps_code": "LEPR" + }, + { + "id": "43285", + "ident": "LEPS", + "type": "heliport", + "name": "Mas Passamaner Heliport", + "latitude_deg": "41.1859016418457", + "longitude_deg": "1.1599199771881104", + "elevation_ft": "480", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Reus", + "scheduled_service": "no", + "gps_code": "LEPS" + }, + { + "id": "43250", + "ident": "LEPV", + "type": "heliport", + "name": "Costa Norte-Puerto de Viveiro-Celeiro Heliport", + "latitude_deg": "43.674800872802734", + "longitude_deg": "-7.5952301025390625", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GA", + "municipality": "Vivero", + "scheduled_service": "no", + "gps_code": "LEPV" + }, + { + "id": "43257", + "ident": "LEPY", + "type": "heliport", + "name": "El Portinyol Heliport", + "latitude_deg": "41.583499908447266", + "longitude_deg": "2.5607900619506836", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Barcelona", + "scheduled_service": "no", + "gps_code": "LEPY" + }, + { + "id": "4026", + "ident": "LEPZ", + "type": "small_airport", + "name": "Los Pozuelos De Calatrava Airport", + "latitude_deg": "38.9122009277", + "longitude_deg": "-4.19111013412", + "elevation_ft": "1850", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Los Pozuelos De Calatrava", + "scheduled_service": "no", + "gps_code": "LEPZ" + }, + { + "id": "43293", + "ident": "LERA", + "type": "heliport", + "name": "R.A.C.C. Heliport", + "latitude_deg": "41.38330078125", + "longitude_deg": "2.108330011367798", + "elevation_ft": "300", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Barcelona", + "scheduled_service": "no", + "gps_code": "LERA" + }, + { + "id": "43294", + "ident": "LERE", + "type": "small_airport", + "name": "Aeródromo Requena El Rebollar", + "latitude_deg": "39.474701", + "longitude_deg": "-1.03444", + "elevation_ft": "2340", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Requena", + "scheduled_service": "no", + "gps_code": "LERE", + "home_link": "http://www.flyrequena.com/index.htm" + }, + { + "id": "43238", + "ident": "LERG", + "type": "heliport", + "name": "Berga Heliport", + "latitude_deg": "42.10559844970703", + "longitude_deg": "1.8533300161361694", + "elevation_ft": "2300", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Berga", + "scheduled_service": "no", + "gps_code": "LERG" + }, + { + "id": "4027", + "ident": "LERI", + "type": "medium_airport", + "name": "Alcantarilla Air Base", + "latitude_deg": "37.951099", + "longitude_deg": "-1.23032", + "elevation_ft": "250", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-MU", + "municipality": "Alcantarilla", + "scheduled_service": "no", + "gps_code": "LERI" + }, + { + "id": "46583", + "ident": "LERL", + "type": "medium_airport", + "name": "Ciudad Real International Airport", + "latitude_deg": "38.856479", + "longitude_deg": "-3.969944", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CR", + "municipality": "Ciudad Real", + "scheduled_service": "no", + "gps_code": "LERL", + "iata_code": "CQM", + "home_link": "http://www.aeropuertocentralcr.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ciudad_Real_International_Airport", + "keywords": "Ciudad Real Central Airport" + }, + { + "id": "4029", + "ident": "LERM", + "type": "small_airport", + "name": "Robledillo De Mohernando Airport", + "latitude_deg": "40.865299224853516", + "longitude_deg": "-3.2477800846099854", + "elevation_ft": "3097", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Robledillo De Mohernando", + "scheduled_service": "no", + "gps_code": "LERM" + }, + { + "id": "4030", + "ident": "LERO", + "type": "small_airport", + "name": "Rozas Airport", + "latitude_deg": "43.11690139770508", + "longitude_deg": "-7.470280170440674", + "elevation_ft": "1444", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GA", + "municipality": "Lugo", + "scheduled_service": "no", + "gps_code": "LERO" + }, + { + "id": "4031", + "ident": "LERS", + "type": "medium_airport", + "name": "Reus Airport", + "latitude_deg": "41.1474", + "longitude_deg": "1.16717", + "elevation_ft": "233", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Reus", + "scheduled_service": "yes", + "gps_code": "LERS", + "iata_code": "REU", + "home_link": "https://www.aena.es/en/reus.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Reus_Airport" + }, + { + "id": "4032", + "ident": "LERT", + "type": "medium_airport", + "name": "Rota Naval Station Airport", + "latitude_deg": "36.645198822", + "longitude_deg": "-6.34946012497", + "elevation_ft": "86", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Rota", + "scheduled_service": "no", + "gps_code": "LERT", + "iata_code": "ROZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Station_Rota_Spain" + }, + { + "id": "43300", + "ident": "LERV", + "type": "heliport", + "name": "Servei D'Evacuació Del Circuit De Catalunya Heliport", + "latitude_deg": "41.571998596191406", + "longitude_deg": "2.2620298862457275", + "elevation_ft": "406", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "scheduled_service": "no", + "gps_code": "LERV" + }, + { + "id": "333777", + "ident": "LERY", + "type": "heliport", + "name": "King Juan Carlos Hospital Heliport", + "latitude_deg": "40.340433", + "longitude_deg": "-3.86951", + "elevation_ft": "2207", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Móstoles", + "scheduled_service": "no", + "gps_code": "LERY" + }, + { + "id": "4033", + "ident": "LESA", + "type": "medium_airport", + "name": "Salamanca Airport", + "latitude_deg": "40.952099", + "longitude_deg": "-5.50199", + "elevation_ft": "2595", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Salamanca", + "scheduled_service": "yes", + "gps_code": "LESA", + "iata_code": "SLM", + "home_link": "https://www.aena.es/en/salamanca.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salamanca_Airport" + }, + { + "id": "4034", + "ident": "LESB", + "type": "small_airport", + "name": "Son Bonet Airfield", + "latitude_deg": "39.5989", + "longitude_deg": "2.70278", + "elevation_ft": "157", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-PM", + "municipality": "Marratxí", + "scheduled_service": "no", + "gps_code": "LESB", + "home_link": "https://www.aena.es/en/son-bonet.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Son_Bonet_Aerodrome" + }, + { + "id": "43296", + "ident": "LESE", + "type": "small_airport", + "name": "San Enrique Airfield", + "latitude_deg": "38.730801", + "longitude_deg": "-4.31306", + "elevation_ft": "2263", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Almodóvar del Campo", + "scheduled_service": "no", + "gps_code": "LESE" + }, + { + "id": "43298", + "ident": "LESG", + "type": "closed", + "name": "Aeródromo de Sangüesa", + "latitude_deg": "42.56736", + "longitude_deg": "-1.2889", + "elevation_ft": "1297", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-NA", + "municipality": "Sangüesa", + "scheduled_service": "no", + "gps_code": "LESG" + }, + { + "id": "4036", + "ident": "LESL", + "type": "small_airport", + "name": "Sant Lluis Airfield", + "latitude_deg": "39.861878", + "longitude_deg": "4.251739", + "elevation_ft": "197", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-PM", + "municipality": "Sant Lluis", + "scheduled_service": "no", + "gps_code": "LESL", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Luis_Aerodrome", + "keywords": "San Luis" + }, + { + "id": "4037", + "ident": "LESO", + "type": "medium_airport", + "name": "San Sebastián Airport", + "latitude_deg": "43.356499", + "longitude_deg": "-1.79061", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-PV", + "municipality": "Hondarribia", + "scheduled_service": "yes", + "gps_code": "LESO", + "iata_code": "EAS", + "home_link": "https://www.aena.es/en/san-sebastian.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Sebasti%C3%A1n_Airport" + }, + { + "id": "43271", + "ident": "LESP", + "type": "heliport", + "name": "Hospital San Pau Heliport", + "latitude_deg": "41.41350173950195", + "longitude_deg": "2.1719601154327393", + "elevation_ft": "265", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Barcelona", + "scheduled_service": "no", + "gps_code": "LESP" + }, + { + "id": "43302", + "ident": "LESS", + "type": "small_airport", + "name": "Sotos Airport", + "latitude_deg": "40.204201", + "longitude_deg": "-2.14389", + "elevation_ft": "3170", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CU", + "municipality": "Sotos", + "scheduled_service": "no", + "gps_code": "LESS" + }, + { + "id": "4038", + "ident": "LEST", + "type": "large_airport", + "name": "Santiago-Rosalía de Castro Airport", + "latitude_deg": "42.896301", + "longitude_deg": "-8.41514", + "elevation_ft": "1213", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GA", + "municipality": "Santiago de Compostela", + "scheduled_service": "yes", + "gps_code": "LEST", + "iata_code": "SCQ", + "home_link": "https://www.aena.es/en/santiago-rosalia-de-castro.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santiago_de_Compostela_Airport" + }, + { + "id": "4039", + "ident": "LESU", + "type": "small_airport", + "name": "Pirineus - la Seu d'Urgel Airport", + "latitude_deg": "42.3386", + "longitude_deg": "1.40917", + "elevation_ft": "2625", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "La Seu d'Urgell Pyrenees and Andorra", + "scheduled_service": "yes", + "gps_code": "LESU", + "iata_code": "LEU", + "home_link": "http://www10.gencat.net/ptop/AppJava/cat/aerotrans/aerodroms/aerodroms/pirineus.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Seu_d'Urgell_Airport", + "keywords": "Montferrer, Castellbò" + }, + { + "id": "43301", + "ident": "LETA", + "type": "heliport", + "name": "Servei Generals Del Circuit De Catalunya Heliport", + "latitude_deg": "41.57400131225586", + "longitude_deg": "2.257159948348999", + "elevation_ft": "470", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Barcelona", + "scheduled_service": "no", + "gps_code": "LETA" + }, + { + "id": "43286", + "ident": "LETC", + "type": "small_airport", + "name": "Matilla De Los Caños Airfield", + "latitude_deg": "41.530602", + "longitude_deg": "-4.925", + "elevation_ft": "2300", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Valladolid", + "scheduled_service": "no", + "gps_code": "LETC" + }, + { + "id": "43287", + "ident": "LETE", + "type": "small_airport", + "name": "Morante Airfield", + "latitude_deg": "39.0369", + "longitude_deg": "-6.69056", + "elevation_ft": "703", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-EX", + "municipality": "Badajoz", + "scheduled_service": "no", + "gps_code": "LETE" + }, + { + "id": "43304", + "ident": "LETF", + "type": "small_airport", + "name": "Tomás Fernández Espada Airfield", + "latitude_deg": "36.871793", + "longitude_deg": "-5.648775", + "elevation_ft": "470", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Villamartin", + "scheduled_service": "yes", + "gps_code": "LETF", + "home_link": "http://www.fly-pedro.com/en/ad.html" + }, + { + "id": "4040", + "ident": "LETI", + "type": "small_airport", + "name": "El Tietar Airport", + "latitude_deg": "40.243900299072266", + "longitude_deg": "-4.794439792633057", + "elevation_ft": "1401", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "La Iglesuela", + "scheduled_service": "no", + "gps_code": "LETI" + }, + { + "id": "316427", + "ident": "LETL", + "type": "medium_airport", + "name": "Teruel Airport", + "latitude_deg": "40.410269", + "longitude_deg": "-1.217366", + "elevation_ft": "3380", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-TE", + "municipality": "Teruel", + "scheduled_service": "no", + "gps_code": "LETL", + "iata_code": "TEV", + "home_link": "http://www.aeropuertodeteruel.com/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Teruel_Airport" + }, + { + "id": "43299", + "ident": "LETM", + "type": "heliport", + "name": "Sant Martí De Sescorts Heliport", + "latitude_deg": "42.015499114990234", + "longitude_deg": "2.3192501068115234", + "elevation_ft": "1672", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "scheduled_service": "no", + "gps_code": "LETM" + }, + { + "id": "4041", + "ident": "LETO", + "type": "medium_airport", + "name": "Madrid–Torrejón Airport / Torrejón Air Base", + "latitude_deg": "40.487875", + "longitude_deg": "-3.456808", + "elevation_ft": "2026", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Madrid", + "scheduled_service": "no", + "gps_code": "LETO", + "iata_code": "TOJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Madrid-Torrej%C3%B3n_Airport" + }, + { + "id": "30383", + "ident": "LETP", + "type": "small_airport", + "name": "Santo Tome Del Puerto Airport", + "latitude_deg": "41.204200744628906", + "longitude_deg": "-3.594719886779785", + "elevation_ft": "3638", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Segovia", + "scheduled_service": "no", + "gps_code": "LETP" + }, + { + "id": "43307", + "ident": "LETR", + "type": "heliport", + "name": "Tremp Heliport", + "latitude_deg": "42.16939926147461", + "longitude_deg": "0.8927779793739319", + "elevation_ft": "1930", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Tremp", + "scheduled_service": "no", + "gps_code": "LETR" + }, + { + "id": "43306", + "ident": "LETS", + "type": "heliport", + "name": "Torre Picasso Heliport", + "latitude_deg": "40.44982914369999", + "longitude_deg": "-3.69314432144", + "elevation_ft": "2340", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "Madrid", + "scheduled_service": "no", + "gps_code": "LETS" + }, + { + "id": "43303", + "ident": "LETV", + "type": "heliport", + "name": "Tirviá Heliport", + "latitude_deg": "42.518798828125", + "longitude_deg": "1.2423100471496582", + "elevation_ft": "3150", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Tirvia", + "scheduled_service": "no", + "gps_code": "LETV" + }, + { + "id": "43305", + "ident": "LETZ", + "type": "small_airport", + "name": "Torozos Airfield", + "latitude_deg": "41.785301", + "longitude_deg": "-4.86473", + "elevation_ft": "2784", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Valladolid", + "scheduled_service": "no", + "gps_code": "LETZ" + }, + { + "id": "43308", + "ident": "LEUL", + "type": "heliport", + "name": "Ullastrell-Teresa Vilá Heliport", + "latitude_deg": "41.52429962158203", + "longitude_deg": "1.9715800285339355", + "elevation_ft": "450", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Ullastrell", + "scheduled_service": "no", + "gps_code": "LEUL" + }, + { + "id": "43253", + "ident": "LEVB", + "type": "small_airport", + "name": "El Carrascal Airfield", + "latitude_deg": "41.824699", + "longitude_deg": "-4.89306", + "elevation_ft": "2788", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Valladolid", + "scheduled_service": "no", + "gps_code": "LEVB" + }, + { + "id": "4042", + "ident": "LEVC", + "type": "medium_airport", + "name": "Valencia Airport", + "latitude_deg": "39.4893", + "longitude_deg": "-0.481625", + "elevation_ft": "240", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-V", + "municipality": "Valencia", + "scheduled_service": "yes", + "gps_code": "LEVC", + "iata_code": "VLC", + "home_link": "https://www.aena.es/en/valencia.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valencia_Airport" + }, + { + "id": "4043", + "ident": "LEVD", + "type": "medium_airport", + "name": "Valladolid Airport", + "latitude_deg": "41.7061", + "longitude_deg": "-4.85194", + "elevation_ft": "2776", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CL", + "municipality": "Valladolid", + "scheduled_service": "yes", + "gps_code": "LEVD", + "iata_code": "VLL", + "home_link": "https://www.aena.es/en/valladolid.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valladolid_Airport" + }, + { + "id": "321575", + "ident": "LEVE", + "type": "small_airport", + "name": "Aeródromo Virgen de La Estrella", + "latitude_deg": "38.4205555556", + "longitude_deg": "-6.3569444444", + "elevation_ft": "1837", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-BA", + "municipality": "Zafra", + "scheduled_service": "no", + "gps_code": "LEVE" + }, + { + "id": "43311", + "ident": "LEVF", + "type": "small_airport", + "name": "Villaframil Airfield", + "latitude_deg": "43.552502", + "longitude_deg": "-7.08778", + "elevation_ft": "80", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GA", + "municipality": "Lugo", + "scheduled_service": "no", + "gps_code": "LEVF" + }, + { + "id": "43309", + "ident": "LEVH", + "type": "heliport", + "name": "Vielha Heliport", + "latitude_deg": "42.704399", + "longitude_deg": "0.796946", + "elevation_ft": "3200", + "continent": "AF", + "iso_country": "ES", + "iso_region": "ES-CT", + "municipality": "Vielha", + "scheduled_service": "no" + }, + { + "id": "43258", + "ident": "LEVI", + "type": "small_airport", + "name": "Viso del Marqués Airport", + "latitude_deg": "38.5055999756", + "longitude_deg": "-3.4261500835399996", + "elevation_ft": "2672", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-CM", + "municipality": "Viso del Marqués", + "scheduled_service": "no", + "gps_code": "LEVI" + }, + { + "id": "43310", + "ident": "LEVR", + "type": "heliport", + "name": "Vilaller Heliport", + "latitude_deg": "42.3046989440918", + "longitude_deg": "0.7130560278892517", + "elevation_ft": "2870", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AR", + "scheduled_service": "no", + "gps_code": "LEVR" + }, + { + "id": "4045", + "ident": "LEVT", + "type": "medium_airport", + "name": "Vitoria Airport", + "latitude_deg": "42.882801", + "longitude_deg": "-2.72447", + "elevation_ft": "1682", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-PV", + "municipality": "Alava", + "scheduled_service": "yes", + "gps_code": "LEVT", + "iata_code": "VIT", + "home_link": "https://www.aena.es/en/vitoria.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vitoria_Airport", + "keywords": "Vitoria,Foronda" + }, + { + "id": "4046", + "ident": "LEVX", + "type": "medium_airport", + "name": "Vigo Airport", + "latitude_deg": "42.2318", + "longitude_deg": "-8.62677", + "elevation_ft": "856", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-GA", + "municipality": "Vigo", + "scheduled_service": "yes", + "gps_code": "LEVX", + "iata_code": "VGO", + "home_link": "https://www.aena.es/en/vigo.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vigo-Peinador_Airport" + }, + { + "id": "4047", + "ident": "LEXJ", + "type": "medium_airport", + "name": "Seve Ballesteros-Santander Airport", + "latitude_deg": "43.427101", + "longitude_deg": "-3.82001", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-S", + "municipality": "Santander", + "scheduled_service": "yes", + "gps_code": "LEXJ", + "iata_code": "SDR", + "home_link": "https://www.aena.es/en/seve-ballesteros-santander.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santander_Airport" + }, + { + "id": "4048", + "ident": "LEZG", + "type": "medium_airport", + "name": "Zaragoza Airport", + "latitude_deg": "41.666199", + "longitude_deg": "-1.04155", + "elevation_ft": "863", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AR", + "municipality": "Zaragoza", + "scheduled_service": "yes", + "gps_code": "LEZG", + "iata_code": "ZAZ", + "home_link": "https://www.aena.es/en/zaragoza.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zaragoza_Airport" + }, + { + "id": "4049", + "ident": "LEZL", + "type": "medium_airport", + "name": "Sevilla Airport", + "latitude_deg": "37.417999", + "longitude_deg": "-5.89311", + "elevation_ft": "112", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-AN", + "municipality": "Sevilla", + "scheduled_service": "yes", + "gps_code": "LEZL", + "iata_code": "SVQ", + "home_link": "https://www.aena.es/en/seville.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Pablo_Airport" + }, + { + "id": "355322", + "ident": "LEZO", + "type": "heliport", + "name": "Lozoyuela Heliport", + "latitude_deg": "40.93602", + "longitude_deg": "-3.62504", + "elevation_ft": "3517", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-M", + "municipality": "C. del Altillo", + "scheduled_service": "no", + "gps_code": "LEZO" + }, + { + "id": "32756", + "ident": "LF34", + "type": "closed", + "name": "Moussoulens Air Base", + "latitude_deg": "43.279701", + "longitude_deg": "2.20885", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Moussoulens", + "scheduled_service": "no", + "local_code": "LF34" + }, + { + "id": "2987", + "ident": "LF50", + "type": "small_airport", + "name": "Aérodrome privé de Soucelles", + "latitude_deg": "47.580399", + "longitude_deg": "-0.412269", + "elevation_ft": "255", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Soucelles", + "scheduled_service": "no", + "local_code": "LF4925", + "keywords": "Angers" + }, + { + "id": "2988", + "ident": "LF51", + "type": "small_airport", + "name": "Aérodrome du Plan-de-Dieu - Orange", + "latitude_deg": "44.18", + "longitude_deg": "4.91889", + "elevation_ft": "305", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Plan-de-Dieu", + "scheduled_service": "no", + "local_code": "LF8451", + "home_link": "http://www.aeroclubduplandedieu.fr" + }, + { + "id": "28770", + "ident": "LFAB", + "type": "small_airport", + "name": "St Aubin Airport", + "latitude_deg": "49.88249969482422", + "longitude_deg": "1.085279941558838", + "elevation_ft": "344", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Dieppe", + "scheduled_service": "no", + "gps_code": "LFAB", + "iata_code": "DPE" + }, + { + "id": "4050", + "ident": "LFAC", + "type": "medium_airport", + "name": "Calais-Dunkerque Airport", + "latitude_deg": "50.962101", + "longitude_deg": "1.95476", + "elevation_ft": "12", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Marck", + "scheduled_service": "no", + "gps_code": "LFAC", + "iata_code": "CQF", + "keywords": "Dunkirk, Grand Calais" + }, + { + "id": "28771", + "ident": "LFAD", + "type": "small_airport", + "name": "Compiègne Margny Airfield", + "latitude_deg": "49.434399", + "longitude_deg": "2.80611", + "elevation_ft": "315", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "scheduled_service": "no", + "gps_code": "LFAD" + }, + { + "id": "28772", + "ident": "LFAE", + "type": "small_airport", + "name": "Eu Mers Le Treport Airfield", + "latitude_deg": "50.069199", + "longitude_deg": "1.42667", + "elevation_ft": "328", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "scheduled_service": "no", + "gps_code": "LFAE" + }, + { + "id": "28773", + "ident": "LFAF", + "type": "small_airport", + "name": "Laon - Chambry Airfield", + "latitude_deg": "49.595798", + "longitude_deg": "3.63167", + "elevation_ft": "256", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Laon", + "scheduled_service": "no", + "gps_code": "LFAF" + }, + { + "id": "4051", + "ident": "LFAG", + "type": "medium_airport", + "name": "Aérodrome de Péronne Saint-Quentin", + "latitude_deg": "49.8685", + "longitude_deg": "3.02958", + "elevation_ft": "295", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Péronne/Saint-Quentin", + "scheduled_service": "no", + "gps_code": "LFAG" + }, + { + "id": "31812", + "ident": "LFAH", + "type": "closed", + "name": "Aérodrome de Soissons-Cuffies", + "latitude_deg": "49.400002", + "longitude_deg": "3.317", + "elevation_ft": "138", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Soissons-Cuffies", + "scheduled_service": "no", + "gps_code": "LFAH" + }, + { + "id": "4052", + "ident": "LFAI", + "type": "small_airport", + "name": "Aérodrome de Nangis Les Loges", + "latitude_deg": "48.596199", + "longitude_deg": "3.00679", + "elevation_ft": "428", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Nangis/Les Loges", + "scheduled_service": "no", + "gps_code": "LFAI" + }, + { + "id": "28774", + "ident": "LFAJ", + "type": "small_airport", + "name": "Argentan Airfield", + "latitude_deg": "48.710602", + "longitude_deg": "0.003889", + "elevation_ft": "581", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "scheduled_service": "no", + "gps_code": "LFAJ" + }, + { + "id": "28775", + "ident": "LFAK", + "type": "small_airport", + "name": "Dunkerque-Les Moëres Airfield", + "latitude_deg": "51.039559", + "longitude_deg": "2.549129", + "elevation_ft": "-3", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Ghyvelde", + "scheduled_service": "no", + "gps_code": "LFAK", + "home_link": "http://www.aeroclub-dunkerque.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dunkerque_%E2%80%93_Les_Mo%C3%ABres_Airfield", + "keywords": "Dunkirk, Dunkerque Aeroclub" + }, + { + "id": "28776", + "ident": "LFAL", + "type": "small_airport", + "name": "Aérodrome de La Flèche - Thorée-les-Pins", + "latitude_deg": "47.692778", + "longitude_deg": "0.001944", + "elevation_ft": "120", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "La Flèche", + "scheduled_service": "no", + "gps_code": "LFAL", + "home_link": "http://www.aeroclublafleche.fr/", + "wikipedia_link": "https://fr.wikipedia.org/wiki/Aérodrome_de_La_Flèche_-_Thorée-les-Pins" + }, + { + "id": "28777", + "ident": "LFAM", + "type": "small_airport", + "name": "Berck sur Mer Airfield", + "latitude_deg": "50.4231", + "longitude_deg": "1.59194", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Berck sur Mer", + "scheduled_service": "no", + "gps_code": "LFAM" + }, + { + "id": "28778", + "ident": "LFAN", + "type": "closed", + "name": "Aérodrome de Condé sur Noireau", + "latitude_deg": "48.891701", + "longitude_deg": "-0.501944", + "elevation_ft": "833", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "scheduled_service": "no", + "gps_code": "LFAN" + }, + { + "id": "4053", + "ident": "LFAO", + "type": "small_airport", + "name": "Aérodrome de Bagnoles - Couterne", + "latitude_deg": "48.545799", + "longitude_deg": "-0.387444", + "elevation_ft": "718", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Bagnoles-de-l'Orne", + "scheduled_service": "no", + "gps_code": "LFAO" + }, + { + "id": "28779", + "ident": "LFAP", + "type": "small_airport", + "name": "Rethel Airfield", + "latitude_deg": "49.481899", + "longitude_deg": "4.36472", + "elevation_ft": "410", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFAP" + }, + { + "id": "4054", + "ident": "LFAQ", + "type": "small_airport", + "name": "Albert-Bray Airport", + "latitude_deg": "49.9715003967", + "longitude_deg": "2.69765996933", + "elevation_ft": "364", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Albert/Bray", + "scheduled_service": "no", + "gps_code": "LFAQ", + "iata_code": "BYF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Albert_%E2%80%93_Picardie_Airport" + }, + { + "id": "28780", + "ident": "LFAR", + "type": "small_airport", + "name": "Montdidier Airfield", + "latitude_deg": "49.6731", + "longitude_deg": "2.56917", + "elevation_ft": "358", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "scheduled_service": "no", + "gps_code": "LFAR" + }, + { + "id": "28781", + "ident": "LFAS", + "type": "small_airport", + "name": "Aérodrome de Falaise-Mont d'Eraines", + "latitude_deg": "48.9272", + "longitude_deg": "-0.144722", + "elevation_ft": "512", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "scheduled_service": "no", + "gps_code": "LFAS" + }, + { + "id": "4055", + "ident": "LFAT", + "type": "medium_airport", + "name": "Le Touquet-Côte d'Opale Airport", + "latitude_deg": "50.517398834228516", + "longitude_deg": "1.6205899715423584", + "elevation_ft": "36", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Le Touquet-Paris-Plage", + "scheduled_service": "no", + "gps_code": "LFAT", + "iata_code": "LTQ" + }, + { + "id": "28782", + "ident": "LFAU", + "type": "small_airport", + "name": "Aérodrome de Vauville", + "latitude_deg": "49.622775", + "longitude_deg": "-1.830688", + "elevation_ft": "456", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "La Hague", + "scheduled_service": "no", + "gps_code": "LFAU" + }, + { + "id": "4056", + "ident": "LFAV", + "type": "medium_airport", + "name": "Valenciennes-Denain Airfield", + "latitude_deg": "50.325802", + "longitude_deg": "3.46126", + "elevation_ft": "165", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Valenciennes/Denain", + "scheduled_service": "no", + "gps_code": "LFAV" + }, + { + "id": "28783", + "ident": "LFAW", + "type": "small_airport", + "name": "Villerupt Aerodrome", + "latitude_deg": "49.410424", + "longitude_deg": "5.889301", + "elevation_ft": "1299", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Villerupt", + "scheduled_service": "no", + "gps_code": "LFAW", + "keywords": "Aérodrome de Villerupt" + }, + { + "id": "28784", + "ident": "LFAX", + "type": "small_airport", + "name": "Aérodrome de Mortagne Au Perche", + "latitude_deg": "48.540298", + "longitude_deg": "0.533889", + "elevation_ft": "886", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Mortagne", + "scheduled_service": "no", + "gps_code": "LFAX" + }, + { + "id": "4057", + "ident": "LFAY", + "type": "medium_airport", + "name": "Aérodrome d'Amiens-Glisy", + "latitude_deg": "49.873004", + "longitude_deg": "2.387074", + "elevation_ft": "208", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Amiens/Glisy", + "scheduled_service": "no", + "gps_code": "LFAY" + }, + { + "id": "4058", + "ident": "LFBA", + "type": "medium_airport", + "name": "Agen-La Garenne Airport", + "latitude_deg": "44.17470169067383", + "longitude_deg": "0.5905560255050659", + "elevation_ft": "204", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Agen/La Garenne", + "scheduled_service": "yes", + "gps_code": "LFBA", + "iata_code": "AGF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Agen_-_La_Garenne_Aerodrome" + }, + { + "id": "4059", + "ident": "LFBC", + "type": "medium_airport", + "name": "Cazaux (BA 120) Air Base", + "latitude_deg": "44.53329849243164", + "longitude_deg": "-1.125", + "elevation_ft": "84", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Cazaux (La Teste-de-Buch)", + "scheduled_service": "no", + "gps_code": "LFBC" + }, + { + "id": "4060", + "ident": "LFBD", + "type": "large_airport", + "name": "Bordeaux-Mérignac Airport", + "latitude_deg": "44.8283", + "longitude_deg": "-0.715556", + "elevation_ft": "162", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Bordeaux/Mérignac", + "scheduled_service": "yes", + "gps_code": "LFBD", + "iata_code": "BOD", + "home_link": "https://www.bordeaux.aeroport.fr/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bordeaux%E2%80%93M%C3%A9rignac_Airport" + }, + { + "id": "4061", + "ident": "LFBE", + "type": "medium_airport", + "name": "Bergerac-Roumanière Airport", + "latitude_deg": "44.82529830932617", + "longitude_deg": "0.5186110138893127", + "elevation_ft": "171", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Bergerac/Roumanière", + "scheduled_service": "yes", + "gps_code": "LFBE", + "iata_code": "EGC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bergerac-Roumani%C3%A8re_Airport" + }, + { + "id": "4062", + "ident": "LFBF", + "type": "medium_airport", + "name": "Toulouse-Francazal (BA 101) Air Base", + "latitude_deg": "43.54560089111328", + "longitude_deg": "1.3674999475479126", + "elevation_ft": "535", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Toulouse/Francazal", + "scheduled_service": "no", + "gps_code": "LFBF" + }, + { + "id": "4063", + "ident": "LFBG", + "type": "medium_airport", + "name": "Cognac-Châteaubernard (BA 709) Air Base", + "latitude_deg": "45.65829849243164", + "longitude_deg": "-0.3174999952316284", + "elevation_ft": "102", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Cognac/Châteaubernard", + "scheduled_service": "no", + "gps_code": "LFBG", + "iata_code": "CNG" + }, + { + "id": "4064", + "ident": "LFBH", + "type": "medium_airport", + "name": "La Rochelle-Île de Ré Airport", + "latitude_deg": "46.17919921875", + "longitude_deg": "-1.1952799558639526", + "elevation_ft": "74", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "La Rochelle/Île de Ré", + "scheduled_service": "yes", + "gps_code": "LFBH", + "iata_code": "LRH", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Rochelle_-_%C3%8Ele_de_R%C3%A9_Airport", + "keywords": "Laleu Airport" + }, + { + "id": "4065", + "ident": "LFBI", + "type": "medium_airport", + "name": "Poitiers-Biard Airport", + "latitude_deg": "46.58769989013672", + "longitude_deg": "0.30666598677635193", + "elevation_ft": "423", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Poitiers/Biard", + "scheduled_service": "yes", + "gps_code": "LFBI", + "iata_code": "PIS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Poitiers_-_Biard_Airport" + }, + { + "id": "28785", + "ident": "LFBJ", + "type": "small_airport", + "name": "Aérodrome de Saint-Junien", + "latitude_deg": "45.903301", + "longitude_deg": "0.92", + "elevation_ft": "902", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Poitiers", + "scheduled_service": "no", + "gps_code": "LFBJ" + }, + { + "id": "4066", + "ident": "LFBK", + "type": "medium_airport", + "name": "Montluçon-Guéret Airport", + "latitude_deg": "46.222599029541016", + "longitude_deg": "2.363960027694702", + "elevation_ft": "1497", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Montluçon/Guéret", + "scheduled_service": "no", + "gps_code": "LFBK", + "iata_code": "MCU" + }, + { + "id": "4067", + "ident": "LFBL", + "type": "medium_airport", + "name": "Limoges Airport", + "latitude_deg": "45.86280059814453", + "longitude_deg": "1.1794400215148926", + "elevation_ft": "1300", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Limoges/Bellegarde", + "scheduled_service": "yes", + "gps_code": "LFBL", + "iata_code": "LIG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Limoges_-_Bellegarde_Airport" + }, + { + "id": "4068", + "ident": "LFBM", + "type": "medium_airport", + "name": "Mont-de-Marsan (BA 118) Air Base", + "latitude_deg": "43.911701", + "longitude_deg": "-0.5075", + "elevation_ft": "203", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Mont-de-Marsan", + "scheduled_service": "no", + "gps_code": "LFBM" + }, + { + "id": "4069", + "ident": "LFBN", + "type": "medium_airport", + "name": "Niort-Souché Airport", + "latitude_deg": "46.313477", + "longitude_deg": "-0.394529", + "elevation_ft": "203", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Niort/Souché", + "scheduled_service": "no", + "gps_code": "LFBN", + "iata_code": "NIT" + }, + { + "id": "4070", + "ident": "LFBO", + "type": "large_airport", + "name": "Toulouse-Blagnac Airport", + "latitude_deg": "43.629101", + "longitude_deg": "1.36382", + "elevation_ft": "499", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Toulouse/Blagnac", + "scheduled_service": "yes", + "gps_code": "LFBO", + "iata_code": "TLS", + "home_link": "http://www.toulouse.aeroport.fr/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toulouse_Blagnac_International_Airport" + }, + { + "id": "4071", + "ident": "LFBP", + "type": "medium_airport", + "name": "Pau Pyrénées Airport", + "latitude_deg": "43.380001068115234", + "longitude_deg": "-0.41861099004745483", + "elevation_ft": "616", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Pau/Pyrénées (Uzein)", + "scheduled_service": "yes", + "gps_code": "LFBP", + "iata_code": "PUF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pau_Pyr%C3%A9n%C3%A9es_Airport" + }, + { + "id": "4072", + "ident": "LFBR", + "type": "small_airport", + "name": "Aérodrome de Muret - Lherm", + "latitude_deg": "43.448898", + "longitude_deg": "1.26333", + "elevation_ft": "622", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Muret/Lherm", + "scheduled_service": "no", + "gps_code": "LFBR", + "home_link": "https://www.muret-lherm.aero", + "wikipedia_link": "https://fr.wikipedia.org/wiki/A%C3%A9rodrome_de_Muret_-_Lherm" + }, + { + "id": "28786", + "ident": "LFBS", + "type": "small_airport", + "name": "Biscarrosse Parentis Airport", + "latitude_deg": "44.36940002441406", + "longitude_deg": "-1.130560040473938", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Muret", + "scheduled_service": "no", + "gps_code": "LFBS" + }, + { + "id": "4073", + "ident": "LFBT", + "type": "medium_airport", + "name": "Tarbes-Lourdes-Pyrénées Airport", + "latitude_deg": "43.1786994934082", + "longitude_deg": "-0.006438999902456999", + "elevation_ft": "1260", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Tarbes/Lourdes/Pyrénées", + "scheduled_service": "yes", + "gps_code": "LFBT", + "iata_code": "LDE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tarbes-Lourdes-Pyr%C3%A9n%C3%A9es_Airport" + }, + { + "id": "4074", + "ident": "LFBU", + "type": "medium_airport", + "name": "Angoulême-Brie-Champniers Airport", + "latitude_deg": "45.729198", + "longitude_deg": "0.221456", + "elevation_ft": "436", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Angoulême/Brie/Champniers", + "scheduled_service": "no", + "gps_code": "LFBU", + "iata_code": "ANG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Angoul%C3%AAme_-_Brie_-_Champniers_Airport" + }, + { + "id": "4075", + "ident": "LFBV", + "type": "closed", + "name": "Ancien Aérodrome de Brive-La Roche", + "latitude_deg": "45.150799", + "longitude_deg": "1.469202", + "elevation_ft": "379", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Brive-la-Gaillarde", + "scheduled_service": "no", + "gps_code": "LFBV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brive_-_La_Roche_Airport", + "keywords": "BVE" + }, + { + "id": "4076", + "ident": "LFBX", + "type": "medium_airport", + "name": "Périgueux-Bassillac Airport", + "latitude_deg": "45.19810104370117", + "longitude_deg": "0.815555989742279", + "elevation_ft": "328", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Périgueux/Bassillac", + "scheduled_service": "no", + "gps_code": "LFBX", + "iata_code": "PGX" + }, + { + "id": "28787", + "ident": "LFBY", + "type": "small_airport", + "name": "Dax Seyresse Airfield", + "latitude_deg": "43.689201", + "longitude_deg": "-1.06889", + "elevation_ft": "106", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Perigueux", + "scheduled_service": "no", + "gps_code": "LFBY" + }, + { + "id": "4077", + "ident": "LFBZ", + "type": "medium_airport", + "name": "Biarritz-Anglet-Bayonne Airport", + "latitude_deg": "43.4683333", + "longitude_deg": "-1.5311111", + "elevation_ft": "245", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Biarritz/Anglet/Bayonne", + "scheduled_service": "yes", + "gps_code": "LFBZ", + "iata_code": "BIQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Biarritz_-_Anglet_-_Bayonne_Airport" + }, + { + "id": "28788", + "ident": "LFCA", + "type": "small_airport", + "name": "Aérodrome de Châtellerault-Targé", + "latitude_deg": "46.781399", + "longitude_deg": "0.551944", + "elevation_ft": "207", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFCA" + }, + { + "id": "28789", + "ident": "LFCB", + "type": "small_airport", + "name": "Aérodrome de Bagnères de Luchon", + "latitude_deg": "42.799999", + "longitude_deg": "0.6", + "elevation_ft": "2028", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "gps_code": "LFCB" + }, + { + "id": "4078", + "ident": "LFCC", + "type": "medium_airport", + "name": "Aérodrome de Cahors-Lalbenque", + "latitude_deg": "44.351398", + "longitude_deg": "1.47528", + "elevation_ft": "912", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Cahors/Lalbenque", + "scheduled_service": "no", + "gps_code": "LFCC", + "iata_code": "ZAO" + }, + { + "id": "28790", + "ident": "LFCD", + "type": "small_airport", + "name": "Aérodrome d'Andernos", + "latitude_deg": "44.755", + "longitude_deg": "-1.065", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Andernos-les-Bains", + "scheduled_service": "no", + "gps_code": "LFCD" + }, + { + "id": "28791", + "ident": "LFCE", + "type": "small_airport", + "name": "Aérodrome de Guéret Saint-Laurent", + "latitude_deg": "46.17667", + "longitude_deg": "1.95444", + "elevation_ft": "1207", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFCE", + "home_link": "http://aeroclub-gueret-saint-laurent.fr/" + }, + { + "id": "28792", + "ident": "LFCF", + "type": "small_airport", + "name": "Aérodrome de Figeac - Livernon", + "latitude_deg": "44.673302", + "longitude_deg": "1.78917", + "elevation_ft": "1086", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "gps_code": "LFCF" + }, + { + "id": "4079", + "ident": "LFCG", + "type": "medium_airport", + "name": "Aérodrome de Saint-Girons - Antichan", + "latitude_deg": "43.007801", + "longitude_deg": "1.10315", + "elevation_ft": "1368", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Saint-Girons/Antichan", + "scheduled_service": "no", + "gps_code": "LFCG" + }, + { + "id": "4080", + "ident": "LFCH", + "type": "medium_airport", + "name": "Aérodrome d'Arcachon-La Teste-de-Buch", + "latitude_deg": "44.596401", + "longitude_deg": "-1.11083", + "elevation_ft": "52", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Arcachon/La Teste-de-Buch", + "scheduled_service": "no", + "gps_code": "LFCH", + "home_link": "https://www.agglo-cobas.fr/mobilites/aerodrome/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arcachon_-_La_Teste-de-Buch_Airport" + }, + { + "id": "4081", + "ident": "LFCI", + "type": "medium_airport", + "name": "Albi-Le Séquestre Airport", + "latitude_deg": "43.91389846801758", + "longitude_deg": "2.1130599975585938", + "elevation_ft": "564", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Albi/Le Séquestre", + "scheduled_service": "no", + "gps_code": "LFCI", + "iata_code": "LBI" + }, + { + "id": "28793", + "ident": "LFCJ", + "type": "small_airport", + "name": "Aérodrome de Jonzac Neulles", + "latitude_deg": "45.4842", + "longitude_deg": "-0.421389", + "elevation_ft": "128", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Albi", + "scheduled_service": "no", + "gps_code": "LFCJ" + }, + { + "id": "4082", + "ident": "LFCK", + "type": "medium_airport", + "name": "Castres-Mazamet Airport", + "latitude_deg": "43.55630111694336", + "longitude_deg": "2.289180040359497", + "elevation_ft": "788", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Castres/Mazamet", + "scheduled_service": "yes", + "gps_code": "LFCK", + "iata_code": "DCM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Castres-Mazamet_Airport" + }, + { + "id": "4083", + "ident": "LFCL", + "type": "small_airport", + "name": "Aérodrome de Toulouse-Lasbordes", + "latitude_deg": "43.587832", + "longitude_deg": "1.498507", + "elevation_ft": "460", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Toulouse/Lasbordes", + "scheduled_service": "no", + "gps_code": "LFCL", + "home_link": "https://www.toulouse-metropole.fr/missions/deplacements/aerodrome-toulouse-lasbordes", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toulouse_-_Lasbordes_Airport" + }, + { + "id": "4084", + "ident": "LFCM", + "type": "small_airport", + "name": "Millau-Larzac Airfield", + "latitude_deg": "43.9893", + "longitude_deg": "3.183", + "elevation_ft": "2606", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Millau/Larzac", + "scheduled_service": "no", + "gps_code": "LFCM" + }, + { + "id": "28794", + "ident": "LFCN", + "type": "small_airport", + "name": "Nogaro Airfield", + "latitude_deg": "43.769699", + "longitude_deg": "-0.032778", + "elevation_ft": "304", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "gps_code": "LFCN" + }, + { + "id": "28795", + "ident": "LFCO", + "type": "small_airport", + "name": "Oloron Herrere Airfield", + "latitude_deg": "43.1647", + "longitude_deg": "-0.560278", + "elevation_ft": "984", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFCO" + }, + { + "id": "28796", + "ident": "LFCP", + "type": "small_airport", + "name": "Pons Avy Airfield", + "latitude_deg": "45.57", + "longitude_deg": "-0.515", + "elevation_ft": "117", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFCP" + }, + { + "id": "4085", + "ident": "LFCQ", + "type": "small_airport", + "name": "Aérodrome de Graulhet-Montdragon", + "latitude_deg": "43.771099", + "longitude_deg": "2.01083", + "elevation_ft": "581", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Graulhet/Montdragon", + "scheduled_service": "no", + "gps_code": "LFCQ" + }, + { + "id": "4086", + "ident": "LFCR", + "type": "medium_airport", + "name": "Rodez-Marcillac Airport", + "latitude_deg": "44.407901763916016", + "longitude_deg": "2.4826700687408447", + "elevation_ft": "1910", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Rodez/Marcillac", + "scheduled_service": "yes", + "gps_code": "LFCR", + "iata_code": "RDZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rodez-Marcillac_Airport" + }, + { + "id": "28797", + "ident": "LFCS", + "type": "small_airport", + "name": "Aérodrome de Bordeaux-Léognan-Saucats", + "latitude_deg": "44.700298", + "longitude_deg": "-0.595556", + "elevation_ft": "190", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Bordeaux-Saucats", + "scheduled_service": "no", + "gps_code": "LFCS" + }, + { + "id": "28798", + "ident": "LFCT", + "type": "small_airport", + "name": "Aérodrome de Thouars", + "latitude_deg": "46.961899", + "longitude_deg": "-0.152778", + "elevation_ft": "341", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Thouars", + "scheduled_service": "no", + "gps_code": "LFCT" + }, + { + "id": "4087", + "ident": "LFCU", + "type": "small_airport", + "name": "Aérodrome d'Ussel-Thalamy", + "latitude_deg": "45.534698", + "longitude_deg": "2.42389", + "elevation_ft": "2428", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Ussel", + "scheduled_service": "no", + "gps_code": "LFCU" + }, + { + "id": "28799", + "ident": "LFCV", + "type": "small_airport", + "name": "Aérodrome de Villefranche de Rouergue", + "latitude_deg": "44.369491", + "longitude_deg": "2.025722", + "elevation_ft": "1096", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Rodez", + "scheduled_service": "no", + "gps_code": "LFCV" + }, + { + "id": "4088", + "ident": "LFCW", + "type": "small_airport", + "name": "Villeneuve-sur-Lot Airport", + "latitude_deg": "44.39690017700195", + "longitude_deg": "0.7588890194892883", + "elevation_ft": "190", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Villeneuve-sur-Lot", + "scheduled_service": "no", + "gps_code": "LFCW" + }, + { + "id": "28800", + "ident": "LFCX", + "type": "small_airport", + "name": "Aérodrome de Castelsarrasin Moissac", + "latitude_deg": "44.086899", + "longitude_deg": "1.12833", + "elevation_ft": "243", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Rodez", + "scheduled_service": "no", + "gps_code": "LFCX" + }, + { + "id": "4089", + "ident": "LFCY", + "type": "medium_airport", + "name": "Royan-Médis Airport", + "latitude_deg": "45.62810134887695", + "longitude_deg": "-0.9725000262260437", + "elevation_ft": "72", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Royan/Médis", + "scheduled_service": "no", + "gps_code": "LFCY", + "iata_code": "RYN" + }, + { + "id": "4090", + "ident": "LFCZ", + "type": "small_airport", + "name": "Aérodrome de Mimizan", + "latitude_deg": "44.145928", + "longitude_deg": "-1.16432", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Mimizan", + "scheduled_service": "no", + "gps_code": "LFCZ" + }, + { + "id": "4091", + "ident": "LFDA", + "type": "small_airport", + "name": "Aire-sur-l'Adour Airport", + "latitude_deg": "43.70940017700195", + "longitude_deg": "-0.245278000831604", + "elevation_ft": "259", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Aire-sur-Adour", + "scheduled_service": "no", + "gps_code": "LFDA" + }, + { + "id": "4092", + "ident": "LFDB", + "type": "small_airport", + "name": "Aérodrome Morin - Védrines", + "latitude_deg": "44.0257", + "longitude_deg": "1.37804", + "elevation_ft": "351", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Montauban", + "scheduled_service": "no", + "gps_code": "LFDB" + }, + { + "id": "28801", + "ident": "LFDC", + "type": "small_airport", + "name": "Aérodrome de Montendre-Marcillac", + "latitude_deg": "45.274399", + "longitude_deg": "-0.452222", + "elevation_ft": "148", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFDC" + }, + { + "id": "28802", + "ident": "LFDE", + "type": "small_airport", + "name": "Aérodrome d'Égletons", + "latitude_deg": "45.421398", + "longitude_deg": "2.06889", + "elevation_ft": "1857", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFDE", + "wikipedia_link": "http://wikipedia.fr/Aérodrome d'Égletons" + }, + { + "id": "28803", + "ident": "LFDF", + "type": "small_airport", + "name": "Aérodrome de Sainte-Foy-la-Grande", + "latitude_deg": "44.8536", + "longitude_deg": "0.176667", + "elevation_ft": "282", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFDF" + }, + { + "id": "28804", + "ident": "LFDG", + "type": "small_airport", + "name": "Aérodrome de Gaillac - Lisle-sur-Tarn", + "latitude_deg": "43.8839", + "longitude_deg": "1.87556", + "elevation_ft": "446", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Gaillac", + "scheduled_service": "no", + "gps_code": "LFDG" + }, + { + "id": "4093", + "ident": "LFDH", + "type": "medium_airport", + "name": "Auch-Lamothe Airport", + "latitude_deg": "43.687801", + "longitude_deg": "0.601667", + "elevation_ft": "411", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Auch/Lamothe", + "scheduled_service": "no", + "gps_code": "LFDH", + "home_link": "http://www.auchaeroport.fr/ (dead link as of 17-sep-2017)", + "wikipedia_link": "https://fr.wikipedia.org/wiki/Aéroport_Auch_-_Gers" + }, + { + "id": "4094", + "ident": "LFDI", + "type": "medium_airport", + "name": "Libourne-Artigues-de-Lussac Airport", + "latitude_deg": "44.982498", + "longitude_deg": "-0.134722", + "elevation_ft": "157", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Libourne/Artigues-de-Lussac", + "scheduled_service": "no", + "gps_code": "LFDI" + }, + { + "id": "4095", + "ident": "LFDJ", + "type": "small_airport", + "name": "Aérodrome de Pamiers - Les Pujols", + "latitude_deg": "43.090599", + "longitude_deg": "1.69583", + "elevation_ft": "1115", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Pamiers/Les Pujols", + "scheduled_service": "no", + "gps_code": "LFDJ" + }, + { + "id": "28805", + "ident": "LFDK", + "type": "small_airport", + "name": "Soulac Sur Mer Airport", + "latitude_deg": "45.494998931884766", + "longitude_deg": "-1.0822199583053589", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Pamiers", + "scheduled_service": "no", + "gps_code": "LFDK" + }, + { + "id": "28806", + "ident": "LFDL", + "type": "small_airport", + "name": "Loudun Airport", + "latitude_deg": "47.037200927734375", + "longitude_deg": "0.10138899832963943", + "elevation_ft": "315", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Pamiers", + "scheduled_service": "no", + "gps_code": "LFDL" + }, + { + "id": "4096", + "ident": "LFDM", + "type": "small_airport", + "name": "Marmande-Virazeil Airport", + "latitude_deg": "44.4989013671875", + "longitude_deg": "0.20051400363445282", + "elevation_ft": "105", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Marmande/Virazeil", + "scheduled_service": "no", + "gps_code": "LFDM" + }, + { + "id": "4097", + "ident": "LFDN", + "type": "medium_airport", + "name": "Rochefort-Saint-Agnant (BA 721) Airport", + "latitude_deg": "45.88779830932617", + "longitude_deg": "-0.9830560088157654", + "elevation_ft": "60", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Rochefort/Saint-Agnant", + "scheduled_service": "no", + "gps_code": "LFDN", + "iata_code": "RCO" + }, + { + "id": "28807", + "ident": "LFDO", + "type": "closed", + "name": "Bordeaux Souge Air Base", + "latitude_deg": "44.851093", + "longitude_deg": "-0.805493", + "elevation_ft": "135", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Bordeaux", + "scheduled_service": "no", + "gps_code": "LFDO" + }, + { + "id": "28808", + "ident": "LFDP", + "type": "small_airport", + "name": "St Pierre d'Oléron Airfield", + "latitude_deg": "45.959202", + "longitude_deg": "-1.31611", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFDP", + "home_link": "http://ac.oleron.free.fr" + }, + { + "id": "28809", + "ident": "LFDQ", + "type": "small_airport", + "name": "Castelnau Magnoac Airport", + "latitude_deg": "43.2794", + "longitude_deg": "0.521667", + "elevation_ft": "984", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "gps_code": "LFDQ" + }, + { + "id": "28810", + "ident": "LFDR", + "type": "small_airport", + "name": "La Réole Floudes Airport", + "latitude_deg": "44.5681", + "longitude_deg": "-0.056111", + "elevation_ft": "43", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFDR" + }, + { + "id": "28811", + "ident": "LFDS", + "type": "small_airport", + "name": "Sarlat Domme Airfield", + "latitude_deg": "44.793301", + "longitude_deg": "1.24472", + "elevation_ft": "978", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFDS" + }, + { + "id": "28812", + "ident": "LFDT", + "type": "small_airport", + "name": "Aérodrome de Tarbes Laloubère", + "latitude_deg": "43.216099", + "longitude_deg": "0.078611", + "elevation_ft": "1076", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Tarbes", + "scheduled_service": "no", + "gps_code": "LFDT" + }, + { + "id": "28813", + "ident": "LFDU", + "type": "small_airport", + "name": "Lesparre St Laurent Medoc Airfield", + "latitude_deg": "45.1978", + "longitude_deg": "-0.882222", + "elevation_ft": "105", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFDU" + }, + { + "id": "28814", + "ident": "LFDV", + "type": "small_airport", + "name": "Couhé Vérac Airfield", + "latitude_deg": "46.2728", + "longitude_deg": "0.190556", + "elevation_ft": "499", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFDV" + }, + { + "id": "28815", + "ident": "LFDW", + "type": "small_airport", + "name": "Chauvigny Airfield", + "latitude_deg": "46.583599", + "longitude_deg": "0.6425", + "elevation_ft": "440", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFDW" + }, + { + "id": "28816", + "ident": "LFDX", + "type": "small_airport", + "name": "Fumel Montayral Airport", + "latitude_deg": "44.463600158691406", + "longitude_deg": "1.0077799558639526", + "elevation_ft": "692", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Rochefort", + "scheduled_service": "no", + "gps_code": "LFDX" + }, + { + "id": "28817", + "ident": "LFDY", + "type": "small_airport", + "name": "Bordeaux Yvrac Airport", + "latitude_deg": "44.877201080322266", + "longitude_deg": "-0.47916701436042786", + "elevation_ft": "240", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Rochefort", + "scheduled_service": "no", + "gps_code": "LFDY" + }, + { + "id": "31813", + "ident": "LFDZ", + "type": "small_airport", + "name": "Condat sur Vézère", + "latitude_deg": "45.103885", + "longitude_deg": "1.215121", + "elevation_ft": "499", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Condat sur Vézère", + "scheduled_service": "no", + "local_code": "LF2423", + "keywords": "LFDZ" + }, + { + "id": "28818", + "ident": "LFEA", + "type": "small_airport", + "name": "Aérodrome de Belle Île", + "latitude_deg": "47.325256", + "longitude_deg": "-3.201255", + "elevation_ft": "171", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Bangor", + "scheduled_service": "no", + "gps_code": "LFEA", + "iata_code": "BIC", + "wikipedia_link": "https://fr.wikipedia.org/wiki/Aérodrome_de_Belle-Île", + "keywords": "Palais-Belle-İle-en-Mer Aerodrome" + }, + { + "id": "28819", + "ident": "LFEB", + "type": "small_airport", + "name": "Dinan - Trélivan Airport", + "latitude_deg": "48.444400787353516", + "longitude_deg": "-2.1013898849487305", + "elevation_ft": "394", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Dinan", + "scheduled_service": "no", + "gps_code": "LFEB", + "wikipedia_link": "http://fr.wikipedia.org/wiki/A%C3%A9roport_de_Dinan_-_Tr%C3%A9livan" + }, + { + "id": "28820", + "ident": "LFEC", + "type": "small_airport", + "name": "Ouessant Airport", + "latitude_deg": "48.4632", + "longitude_deg": "-5.06358", + "elevation_ft": "142", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Ushant", + "scheduled_service": "no", + "gps_code": "LFEC", + "iata_code": "OUI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ushant_Airport" + }, + { + "id": "4098", + "ident": "LFED", + "type": "small_airport", + "name": "Pontivy Airport", + "latitude_deg": "48.05849838256836", + "longitude_deg": "-2.92182993888855", + "elevation_ft": "407", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Pontivy", + "scheduled_service": "no", + "gps_code": "LFED" + }, + { + "id": "28821", + "ident": "LFEF", + "type": "small_airport", + "name": "Amboise Dierre Airport", + "latitude_deg": "47.3414", + "longitude_deg": "0.9425", + "elevation_ft": "180", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Amboise", + "scheduled_service": "no", + "gps_code": "LFEF", + "home_link": "http://www.ailestourangelles.fr/en/" + }, + { + "id": "28822", + "ident": "LFEG", + "type": "small_airport", + "name": "Argenton Sur Creuse Airfield", + "latitude_deg": "46.596901", + "longitude_deg": "1.6025", + "elevation_ft": "663", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "scheduled_service": "no", + "gps_code": "LFEG" + }, + { + "id": "4099", + "ident": "LFEH", + "type": "small_airport", + "name": "Aubigny-sur-Nère Airport", + "latitude_deg": "47.480556", + "longitude_deg": "2.394167", + "elevation_ft": "630", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Aubigny-sur-Nère", + "scheduled_service": "no", + "gps_code": "LFEH" + }, + { + "id": "28823", + "ident": "LFEI", + "type": "small_airport", + "name": "Briare Chatillon Airport", + "latitude_deg": "47.614399", + "longitude_deg": "2.78194", + "elevation_ft": "539", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "scheduled_service": "no", + "gps_code": "LFEI" + }, + { + "id": "28824", + "ident": "LFEJ", + "type": "small_airport", + "name": "Châteauroux Villers Airfield", + "latitude_deg": "46.8419", + "longitude_deg": "1.62111", + "elevation_ft": "541", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "scheduled_service": "no", + "gps_code": "LFEJ" + }, + { + "id": "28825", + "ident": "LFEK", + "type": "small_airport", + "name": "Issoudun Le Fay Airfield", + "latitude_deg": "46.888599", + "longitude_deg": "2.04139", + "elevation_ft": "531", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "scheduled_service": "no", + "gps_code": "LFEK" + }, + { + "id": "28826", + "ident": "LFEL", + "type": "small_airport", + "name": "Le Blanc Airport", + "latitude_deg": "46.62080001831055", + "longitude_deg": "1.087499976158142", + "elevation_ft": "377", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Pontivy", + "scheduled_service": "no", + "gps_code": "LFEL" + }, + { + "id": "28827", + "ident": "LFEM", + "type": "small_airport", + "name": "Montargis Vimory Airport", + "latitude_deg": "47.960601806640625", + "longitude_deg": "2.6858301162719727", + "elevation_ft": "308", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Pontivy", + "scheduled_service": "no", + "gps_code": "LFEM" + }, + { + "id": "28828", + "ident": "LFEN", + "type": "small_airport", + "name": "Tours Sorigny Airport", + "latitude_deg": "47.26750183105469", + "longitude_deg": "0.7011110186576843", + "elevation_ft": "299", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Pontivy", + "scheduled_service": "no", + "gps_code": "LFEN" + }, + { + "id": "30438", + "ident": "LFEO", + "type": "closed", + "name": "St Malo St Serva Airfield", + "latitude_deg": "48.613602", + "longitude_deg": "-1.97361", + "elevation_ft": "151", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "scheduled_service": "no", + "gps_code": "LFEO" + }, + { + "id": "28829", + "ident": "LFEP", + "type": "small_airport", + "name": "Pouilly Maconge Airport", + "latitude_deg": "47.221401", + "longitude_deg": "4.56111", + "elevation_ft": "1411", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Pouilly", + "scheduled_service": "no", + "gps_code": "LFEP" + }, + { + "id": "28830", + "ident": "LFEQ", + "type": "small_airport", + "name": "Quiberon Airport", + "latitude_deg": "47.482200622558594", + "longitude_deg": "-3.0999999046325684", + "elevation_ft": "37", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Pontivy", + "scheduled_service": "no", + "gps_code": "LFEQ" + }, + { + "id": "28484", + "ident": "LFER", + "type": "small_airport", + "name": "Redon Bains-sur-Oust Airport", + "latitude_deg": "47.69940185546875", + "longitude_deg": "-2.036669969558716", + "elevation_ft": "223", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Redon", + "scheduled_service": "no", + "gps_code": "LFER" + }, + { + "id": "4100", + "ident": "LFES", + "type": "small_airport", + "name": "Guiscriff Scaer Airport", + "latitude_deg": "48.0525016784668", + "longitude_deg": "-3.664720058441162", + "elevation_ft": "574", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Guiscriff", + "scheduled_service": "no", + "gps_code": "LFES" + }, + { + "id": "28831", + "ident": "LFET", + "type": "small_airport", + "name": "Til Châtel Airfield", + "latitude_deg": "47.547501", + "longitude_deg": "5.21194", + "elevation_ft": "938", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Til Châtel", + "scheduled_service": "no", + "gps_code": "LFET" + }, + { + "id": "28832", + "ident": "LFEU", + "type": "small_airport", + "name": "Bar Le Duc Airfield", + "latitude_deg": "48.868301", + "longitude_deg": "5.18583", + "elevation_ft": "909", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Bar Le Duc", + "scheduled_service": "no", + "gps_code": "LFEU" + }, + { + "id": "28833", + "ident": "LFEV", + "type": "small_airport", + "name": "Gray St Adrien Airfield", + "latitude_deg": "47.432023", + "longitude_deg": "5.619518", + "elevation_ft": "679", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Gray St Adrien", + "scheduled_service": "no", + "gps_code": "LFEV" + }, + { + "id": "28834", + "ident": "LFEW", + "type": "small_airport", + "name": "Saulieu Liernais Airfield", + "latitude_deg": "47.239399", + "longitude_deg": "4.26583", + "elevation_ft": "1722", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "gps_code": "LFEW" + }, + { + "id": "28835", + "ident": "LFEX", + "type": "small_airport", + "name": "Nancy Azelot Airfield", + "latitude_deg": "48.5928", + "longitude_deg": "6.24111", + "elevation_ft": "961", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFEX" + }, + { + "id": "4101", + "ident": "LFEY", + "type": "medium_airport", + "name": "Île d'Yeu Airport", + "latitude_deg": "46.71860122680664", + "longitude_deg": "-2.3911099433898926", + "elevation_ft": "79", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Île d'Yeu", + "scheduled_service": "yes", + "gps_code": "LFEY", + "iata_code": "IDY", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%8Ele_d'Yeu_Aerodrome" + }, + { + "id": "28836", + "ident": "LFEZ", + "type": "small_airport", + "name": "Nancy Malzeville Glider Field", + "latitude_deg": "48.7244", + "longitude_deg": "6.20778", + "elevation_ft": "1253", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFEZ" + }, + { + "id": "28837", + "ident": "LFFB", + "type": "small_airport", + "name": "Buno Bonnevaux Airfield", + "latitude_deg": "48.351101", + "longitude_deg": "2.42556", + "elevation_ft": "420", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "scheduled_service": "no", + "gps_code": "LFFB" + }, + { + "id": "28838", + "ident": "LFFC", + "type": "small_airport", + "name": "Mantes Chérence Airfield", + "latitude_deg": "49.078899", + "longitude_deg": "1.68972", + "elevation_ft": "512", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "scheduled_service": "no", + "gps_code": "LFFC" + }, + { + "id": "28839", + "ident": "LFFD", + "type": "small_airport", + "name": "St André De L'eure Airfield", + "latitude_deg": "48.898602", + "longitude_deg": "1.25056", + "elevation_ft": "489", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "scheduled_service": "no", + "gps_code": "LFFD" + }, + { + "id": "28840", + "ident": "LFFE", + "type": "small_airport", + "name": "Enghien Moisselles Airfield", + "latitude_deg": "49.046398", + "longitude_deg": "2.35306", + "elevation_ft": "335", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "scheduled_service": "no", + "gps_code": "LFFE" + }, + { + "id": "28841", + "ident": "LFFG", + "type": "small_airport", + "name": "La Ferté Gaucher Airfield", + "latitude_deg": "48.755798", + "longitude_deg": "3.27667", + "elevation_ft": "538", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "scheduled_service": "no", + "gps_code": "LFFG" + }, + { + "id": "28842", + "ident": "LFFH", + "type": "small_airport", + "name": "Château-Thierry - Belleau Airfield", + "latitude_deg": "49.0672", + "longitude_deg": "3.35694", + "elevation_ft": "728", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "scheduled_service": "no", + "gps_code": "LFFH" + }, + { + "id": "4102", + "ident": "LFFI", + "type": "small_airport", + "name": "Ancenis Airfield", + "latitude_deg": "47.4081", + "longitude_deg": "-1.1775", + "elevation_ft": "111", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Ancenis", + "scheduled_service": "no", + "gps_code": "LFFI" + }, + { + "id": "28843", + "ident": "LFFJ", + "type": "small_airport", + "name": "Joinville Mussey Airfield", + "latitude_deg": "48.386101", + "longitude_deg": "5.145", + "elevation_ft": "1024", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFFJ" + }, + { + "id": "28844", + "ident": "LFFK", + "type": "small_airport", + "name": "Fontenay Le Comte Airfield", + "latitude_deg": "46.441399", + "longitude_deg": "-0.792778", + "elevation_ft": "85", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "scheduled_service": "no", + "gps_code": "LFFK" + }, + { + "id": "28845", + "ident": "LFFL", + "type": "small_airport", + "name": "Bailleau Armenonville Airfield", + "latitude_deg": "48.5158", + "longitude_deg": "1.64", + "elevation_ft": "509", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "scheduled_service": "no", + "gps_code": "LFFL" + }, + { + "id": "28846", + "ident": "LFFM", + "type": "closed", + "name": "Lamotte Beuvron Airfield", + "latitude_deg": "47.6567", + "longitude_deg": "1.98917", + "elevation_ft": "413", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "scheduled_service": "no", + "gps_code": "LFFM" + }, + { + "id": "4103", + "ident": "LFFN", + "type": "small_airport", + "name": "Aérodrome de Brienne-le-Château", + "latitude_deg": "48.429798", + "longitude_deg": "4.48222", + "elevation_ft": "381", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Brienne-le-Château", + "scheduled_service": "no", + "gps_code": "LFFN" + }, + { + "id": "339753", + "ident": "LFFO", + "type": "small_airport", + "name": "Beauvoir Fromentine Airport", + "latitude_deg": "46.89072", + "longitude_deg": "-2.08873", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Fromentine", + "scheduled_service": "no", + "gps_code": "LFFO" + }, + { + "id": "28847", + "ident": "LFFP", + "type": "small_airport", + "name": "Pithiviers Airfield", + "latitude_deg": "48.1572", + "longitude_deg": "2.1925", + "elevation_ft": "384", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "scheduled_service": "no", + "gps_code": "LFFP" + }, + { + "id": "28848", + "ident": "LFFQ", + "type": "small_airport", + "name": "Cerny-La Ferté Alais Airfield", + "latitude_deg": "48.498571", + "longitude_deg": "2.336891", + "elevation_ft": "453", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Cerny", + "scheduled_service": "no", + "gps_code": "LFFQ", + "keywords": "Jean-Baptiste Salis, Plateau Ardenay" + }, + { + "id": "28849", + "ident": "LFFR", + "type": "small_airport", + "name": "Bar Sur Seine Airfield", + "latitude_deg": "48.066898", + "longitude_deg": "4.41361", + "elevation_ft": "938", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFFR" + }, + { + "id": "28850", + "ident": "LFFT", + "type": "small_airport", + "name": "Neufchâteau Airfield", + "latitude_deg": "48.362499", + "longitude_deg": "5.72139", + "elevation_ft": "1224", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFFT" + }, + { + "id": "28851", + "ident": "LFFU", + "type": "small_airport", + "name": "Châteauneuf Sur Cher Airfield", + "latitude_deg": "46.871101", + "longitude_deg": "2.37694", + "elevation_ft": "551", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "scheduled_service": "no", + "gps_code": "LFFU" + }, + { + "id": "28852", + "ident": "LFFV", + "type": "small_airport", + "name": "Vierzon Méreau Airfield", + "latitude_deg": "47.194698", + "longitude_deg": "2.06667", + "elevation_ft": "430", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "scheduled_service": "no", + "gps_code": "LFFV", + "wikipedia_link": "http://fr.wikipedia.org/wiki/A%C3%A9rodrome_de_Vierzon_-_M%C3%A9reau" + }, + { + "id": "28853", + "ident": "LFFW", + "type": "small_airport", + "name": "Montaigu St Georges Airfield", + "latitude_deg": "46.933102", + "longitude_deg": "-1.32556", + "elevation_ft": "184", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "scheduled_service": "no", + "gps_code": "LFFW" + }, + { + "id": "28854", + "ident": "LFFX", + "type": "small_airport", + "name": "Tournus Cuisery Airfield", + "latitude_deg": "46.562801", + "longitude_deg": "4.97667", + "elevation_ft": "682", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "gps_code": "LFFX" + }, + { + "id": "28855", + "ident": "LFFY", + "type": "small_airport", + "name": "Étrépagny Airfield", + "latitude_deg": "49.305273", + "longitude_deg": "1.637907", + "elevation_ft": "308", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "scheduled_service": "no", + "gps_code": "LFFY", + "home_link": "http://aeroclubduvexin.com/" + }, + { + "id": "28856", + "ident": "LFFZ", + "type": "small_airport", + "name": "Sézanne St Rémy Airfield", + "latitude_deg": "48.710602", + "longitude_deg": "3.76417", + "elevation_ft": "354", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Sézanne", + "scheduled_service": "no", + "gps_code": "LFFZ" + }, + { + "id": "4104", + "ident": "LFGA", + "type": "medium_airport", + "name": "Colmar-Houssen Airport", + "latitude_deg": "48.109901428222656", + "longitude_deg": "7.359010219573975", + "elevation_ft": "628", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Colmar/Houssen", + "scheduled_service": "no", + "gps_code": "LFGA", + "iata_code": "CMR" + }, + { + "id": "4105", + "ident": "LFGB", + "type": "small_airport", + "name": "Mulhouse-Habsheim Airfield", + "latitude_deg": "47.741299", + "longitude_deg": "7.43221", + "elevation_ft": "788", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Mulhouse/Habsheim", + "scheduled_service": "no", + "gps_code": "LFGB" + }, + { + "id": "28857", + "ident": "LFGC", + "type": "small_airport", + "name": "Strasbourg Neuhof Airfield", + "latitude_deg": "48.554401", + "longitude_deg": "7.77806", + "elevation_ft": "456", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFGC" + }, + { + "id": "28858", + "ident": "LFGD", + "type": "closed", + "name": "Arbois Airfield", + "latitude_deg": "46.919998", + "longitude_deg": "5.76", + "elevation_ft": "876", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "gps_code": "LFGD" + }, + { + "id": "28859", + "ident": "LFGE", + "type": "small_airport", + "name": "Avallon Airfield", + "latitude_deg": "47.50377", + "longitude_deg": "3.901034", + "elevation_ft": "781", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "gps_code": "LFGE" + }, + { + "id": "4106", + "ident": "LFGF", + "type": "small_airport", + "name": "Beaune-Challanges Airport", + "latitude_deg": "47.005901", + "longitude_deg": "4.89342", + "elevation_ft": "656", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Beaune/Challanges", + "scheduled_service": "no", + "gps_code": "LFGF" + }, + { + "id": "28860", + "ident": "LFGG", + "type": "small_airport", + "name": "Belfort Chaux Airfield", + "latitude_deg": "47.702202", + "longitude_deg": "6.8325", + "elevation_ft": "1368", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "gps_code": "LFGG" + }, + { + "id": "28861", + "ident": "LFGH", + "type": "small_airport", + "name": "Cosne Sur Loire Airfield", + "latitude_deg": "47.3606", + "longitude_deg": "2.91944", + "elevation_ft": "581", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "gps_code": "LFGH" + }, + { + "id": "28862", + "ident": "LFGI", + "type": "small_airport", + "name": "Dijon Darois Airfield", + "latitude_deg": "47.386902", + "longitude_deg": "4.94806", + "elevation_ft": "1585", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Dijon", + "scheduled_service": "no", + "gps_code": "LFGI" + }, + { + "id": "4107", + "ident": "LFGJ", + "type": "medium_airport", + "name": "Dole-Tavaux Airport", + "latitude_deg": "47.042686", + "longitude_deg": "5.435063", + "elevation_ft": "645", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Dole/Tavaux", + "scheduled_service": "yes", + "gps_code": "LFGJ", + "iata_code": "DLE", + "home_link": "https://www.aeroportdolejura.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dole%E2%80%93Jura_Airport", + "keywords": "Dole–Jura" + }, + { + "id": "4108", + "ident": "LFGK", + "type": "small_airport", + "name": "Joigny Airport", + "latitude_deg": "47.9921989440918", + "longitude_deg": "3.3922200202941895", + "elevation_ft": "732", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Joigny", + "scheduled_service": "no", + "gps_code": "LFGK" + }, + { + "id": "28863", + "ident": "LFGL", + "type": "small_airport", + "name": "Lons Le Saulnier Courlaoux Airfield", + "latitude_deg": "46.676102", + "longitude_deg": "5.47111", + "elevation_ft": "761", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "gps_code": "LFGL" + }, + { + "id": "28864", + "ident": "LFGM", + "type": "small_airport", + "name": "Montceau Les Mines Airfield", + "latitude_deg": "46.604198", + "longitude_deg": "4.33389", + "elevation_ft": "1030", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "gps_code": "LFGM" + }, + { + "id": "28865", + "ident": "LFGN", + "type": "small_airport", + "name": "Paray Le Monial Airfield", + "latitude_deg": "46.466381", + "longitude_deg": "4.133798", + "elevation_ft": "997", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "gps_code": "LFGN" + }, + { + "id": "28866", + "ident": "LFGO", + "type": "small_airport", + "name": "Pont Sur Yonne Airfield", + "latitude_deg": "48.289172", + "longitude_deg": "3.247912", + "elevation_ft": "236", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "gps_code": "LFGO" + }, + { + "id": "28867", + "ident": "LFGP", + "type": "small_airport", + "name": "St Florentin Cheu Airfield", + "latitude_deg": "47.98019", + "longitude_deg": "3.775583", + "elevation_ft": "351", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "gps_code": "LFGP" + }, + { + "id": "28868", + "ident": "LFGQ", + "type": "small_airport", + "name": "Semur En Auxois Airfield", + "latitude_deg": "47.481899", + "longitude_deg": "4.34417", + "elevation_ft": "1053", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Semur En Auxois", + "scheduled_service": "no", + "gps_code": "LFGQ" + }, + { + "id": "28869", + "ident": "LFGR", + "type": "small_airport", + "name": "Doncourt Les Conflans Airfield", + "latitude_deg": "49.152802", + "longitude_deg": "5.93278", + "elevation_ft": "804", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFGR" + }, + { + "id": "28870", + "ident": "LFGS", + "type": "small_airport", + "name": "Longuyon Villette Airfield", + "latitude_deg": "49.484402", + "longitude_deg": "5.57278", + "elevation_ft": "1148", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFGS" + }, + { + "id": "28871", + "ident": "LFGT", + "type": "small_airport", + "name": "Sarrebourg Buhl Airfield", + "latitude_deg": "48.717087", + "longitude_deg": "7.074805", + "elevation_ft": "873", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFGT" + }, + { + "id": "28872", + "ident": "LFGU", + "type": "small_airport", + "name": "Sarreguemines Neunkirch Airfield", + "latitude_deg": "49.128101", + "longitude_deg": "7.10833", + "elevation_ft": "853", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFGU" + }, + { + "id": "28873", + "ident": "LFGV", + "type": "closed", + "name": "Thionville Yutz Airport", + "latitude_deg": "49.354698", + "longitude_deg": "6.20139", + "elevation_ft": "518", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFGV" + }, + { + "id": "4109", + "ident": "LFGW", + "type": "medium_airport", + "name": "Verdun-Le Rozelier Airfield", + "latitude_deg": "49.122398", + "longitude_deg": "5.46905", + "elevation_ft": "1230", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Verdun", + "scheduled_service": "no", + "gps_code": "LFGW", + "keywords": "Smmedieu" + }, + { + "id": "28874", + "ident": "LFGX", + "type": "small_airport", + "name": "Aérodrome de Champagnole - Crotenay", + "latitude_deg": "46.7644", + "longitude_deg": "5.82083", + "elevation_ft": "1745", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "gps_code": "LFGX" + }, + { + "id": "28875", + "ident": "LFGY", + "type": "small_airport", + "name": "Aérodrome de Saint-Dié - Remomeix", + "latitude_deg": "48.2672", + "longitude_deg": "7.00861", + "elevation_ft": "1184", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Saint Dié", + "scheduled_service": "no", + "gps_code": "LFGY" + }, + { + "id": "28876", + "ident": "LFGZ", + "type": "small_airport", + "name": "Aérodrome de Nuits-Saint-Georges", + "latitude_deg": "47.143101", + "longitude_deg": "4.96917", + "elevation_ft": "797", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "gps_code": "LFGZ" + }, + { + "id": "28877", + "ident": "LFHA", + "type": "small_airport", + "name": "Aérodrome d'Issoire-Le Broc", + "latitude_deg": "45.514999", + "longitude_deg": "3.2675", + "elevation_ft": "1240", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Issoire", + "scheduled_service": "no", + "gps_code": "LFHA" + }, + { + "id": "28878", + "ident": "LFHC", + "type": "small_airport", + "name": "Aérodrome de Pérouges - Meximieux", + "latitude_deg": "45.869701", + "longitude_deg": "5.18722", + "elevation_ft": "702", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFHC" + }, + { + "id": "28879", + "ident": "LFHD", + "type": "small_airport", + "name": "Aérodrome de Pierrelatte", + "latitude_deg": "44.398899", + "longitude_deg": "4.71806", + "elevation_ft": "197", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFHD" + }, + { + "id": "28880", + "ident": "LFHE", + "type": "small_airport", + "name": "Aérodrome de Romans - Saint-Paul", + "latitude_deg": "45.066101", + "longitude_deg": "5.10333", + "elevation_ft": "594", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFHE" + }, + { + "id": "28881", + "ident": "LFHF", + "type": "small_airport", + "name": "Ruoms Airport", + "latitude_deg": "44.445301", + "longitude_deg": "4.33389", + "elevation_ft": "361", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Ruoms", + "scheduled_service": "no", + "gps_code": "LFHF" + }, + { + "id": "28882", + "ident": "LFHG", + "type": "small_airport", + "name": "St Chamond L'horme Airport", + "latitude_deg": "45.493099212646484", + "longitude_deg": "4.535560131072998", + "elevation_ft": "1296", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Verdun", + "scheduled_service": "no", + "gps_code": "LFHG" + }, + { + "id": "28883", + "ident": "LFHH", + "type": "small_airport", + "name": "Vienne Reventin Airport", + "latitude_deg": "45.464199", + "longitude_deg": "4.82944", + "elevation_ft": "719", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFHH" + }, + { + "id": "28884", + "ident": "LFHI", + "type": "small_airport", + "name": "Morestel Airport", + "latitude_deg": "45.687801", + "longitude_deg": "5.45361", + "elevation_ft": "804", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFHI" + }, + { + "id": "28885", + "ident": "LFHJ", + "type": "small_airport", + "name": "Aérodrome de Lyon - Corbas", + "latitude_deg": "45.654202", + "longitude_deg": "4.91361", + "elevation_ft": "650", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Lyon", + "scheduled_service": "no", + "gps_code": "LFHJ" + }, + { + "id": "28886", + "ident": "LFHL", + "type": "small_airport", + "name": "Aérodrome de Langogne - Lespéron", + "latitude_deg": "44.706402", + "longitude_deg": "3.88833", + "elevation_ft": "3330", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFHL" + }, + { + "id": "28887", + "ident": "LFHM", + "type": "small_airport", + "name": "Megève Altiport", + "latitude_deg": "45.823005", + "longitude_deg": "6.649406", + "elevation_ft": "4823", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Megève", + "scheduled_service": "no", + "gps_code": "LFHM", + "iata_code": "MVV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Meg%C3%A8ve_Altiport" + }, + { + "id": "28888", + "ident": "LFHN", + "type": "small_airport", + "name": "Aérodrome de Bellegarde - Vouvray", + "latitude_deg": "46.123336", + "longitude_deg": "5.804858", + "elevation_ft": "1624", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Bellegarde-sur-Valserine", + "scheduled_service": "no", + "gps_code": "LFHN", + "wikipedia_link": "https://fr.wikipedia.org/wiki/A%C3%A9rodrome_de_Bellegarde_-_Vouvray#Histoire" + }, + { + "id": "4110", + "ident": "LFHO", + "type": "medium_airport", + "name": "Aubenas-Ardèche Méridional Airport", + "latitude_deg": "44.544203", + "longitude_deg": "4.372192", + "elevation_ft": "923", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Aubenas/Ardèche Méridional", + "scheduled_service": "no", + "gps_code": "LFHO", + "iata_code": "OBS", + "wikipedia_link": "https://en.wikipedia.org/w/index.php?title=Aubenas_-_Ard%C3%A8che_M%C3%A9ridional_Aerodrome&redirect=no" + }, + { + "id": "4111", + "ident": "LFHP", + "type": "medium_airport", + "name": "Le Puy-Loudes Airfield", + "latitude_deg": "45.0807", + "longitude_deg": "3.76289", + "elevation_ft": "2731", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Le Puy/Loudes", + "scheduled_service": "yes", + "gps_code": "LFHP", + "iata_code": "LPY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Le_Puy_-_Loudes_Airport" + }, + { + "id": "4112", + "ident": "LFHQ", + "type": "small_airport", + "name": "Saint-Flour-Coltines Airport", + "latitude_deg": "45.07640075683594", + "longitude_deg": "2.99360990524292", + "elevation_ft": "3218", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Saint-Flour/Coltines", + "scheduled_service": "no", + "gps_code": "LFHQ" + }, + { + "id": "28889", + "ident": "LFHR", + "type": "small_airport", + "name": "Brioude Beaumont Airport", + "latitude_deg": "45.3250007629", + "longitude_deg": "3.35916996002", + "elevation_ft": "1483", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Brioude", + "scheduled_service": "no", + "gps_code": "LFHR" + }, + { + "id": "4113", + "ident": "LFHS", + "type": "small_airport", + "name": "Bourg-Ceyzériat Airport", + "latitude_deg": "46.20090103149414", + "longitude_deg": "5.292029857635498", + "elevation_ft": "857", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Bourg/Ceyzériat", + "scheduled_service": "no", + "gps_code": "LFHS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bourg_-_Ceyz%C3%A9riat_Airport" + }, + { + "id": "28890", + "ident": "LFHT", + "type": "small_airport", + "name": "Ambert Le Poyet Airport", + "latitude_deg": "45.51689910888672", + "longitude_deg": "3.7463901042938232", + "elevation_ft": "1847", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Bourg", + "scheduled_service": "no", + "gps_code": "LFHT" + }, + { + "id": "28891", + "ident": "LFHU", + "type": "small_airport", + "name": "Altiport L'Alpe d'Huez - Henri GIRAUD", + "latitude_deg": "45.087399", + "longitude_deg": "6.083604", + "elevation_ft": "6102", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "L'Alpe d'Huez", + "scheduled_service": "no", + "gps_code": "LFHU", + "iata_code": "AHZ", + "wikipedia_link": "https://fr.wikipedia.org/wiki/Altiport_de_l'Alpe_d'Huez" + }, + { + "id": "4114", + "ident": "LFHV", + "type": "small_airport", + "name": "Villefranche-Tarare Airport", + "latitude_deg": "45.919983", + "longitude_deg": "4.634931", + "elevation_ft": "1076", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Villefranche/Tarare", + "scheduled_service": "no", + "gps_code": "LFHV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Villefranche_-_Tarare_Airport" + }, + { + "id": "28892", + "ident": "LFHW", + "type": "small_airport", + "name": "Belleville Villié Morgon Airfield", + "latitude_deg": "46.142799", + "longitude_deg": "4.71472", + "elevation_ft": "705", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFHW" + }, + { + "id": "28893", + "ident": "LFHX", + "type": "small_airport", + "name": "Lapalisse - Périgny Airfield", + "latitude_deg": "46.253899", + "longitude_deg": "3.58861", + "elevation_ft": "1040", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFHX", + "wikipedia_link": "http://fr.wikipedia.org/wiki/A%C3%A9rodrome_de_Lapalisse_-_P%C3%A9rigny" + }, + { + "id": "4115", + "ident": "LFHY", + "type": "small_airport", + "name": "Aérodrome de Moulins - Montbeugny", + "latitude_deg": "46.534599", + "longitude_deg": "3.42372", + "elevation_ft": "915", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Moulins/Montbeugny", + "scheduled_service": "no", + "gps_code": "LFHY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moulins_-_Montbeugny_Airport" + }, + { + "id": "28894", + "ident": "LFHZ", + "type": "closed", + "name": "Ancien aérodrome de Sallanches Mont-Blanc", + "latitude_deg": "45.953899", + "longitude_deg": "6.63917", + "elevation_ft": "1755", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFHZ" + }, + { + "id": "28895", + "ident": "LFIB", + "type": "small_airport", + "name": "Aérodrome de Belvès Saint-Pardoux", + "latitude_deg": "44.782501", + "longitude_deg": "0.958889", + "elevation_ft": "791", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFIB" + }, + { + "id": "28896", + "ident": "LFID", + "type": "small_airport", + "name": "Aérodrome de Condom - Valence-sur-Baïse", + "latitude_deg": "43.910301", + "longitude_deg": "0.387222", + "elevation_ft": "444", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "gps_code": "LFID" + }, + { + "id": "4116", + "ident": "LFIF", + "type": "small_airport", + "name": "Saint-Affrique-Belmont Airport", + "latitude_deg": "43.823299407958984", + "longitude_deg": "2.7452800273895264", + "elevation_ft": "1686", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Saint-Affrique/Belmont", + "scheduled_service": "no", + "gps_code": "LFIF" + }, + { + "id": "4117", + "ident": "LFIG", + "type": "small_airport", + "name": "Cassagnes-Bégonhès Airport", + "latitude_deg": "44.177799224853516", + "longitude_deg": "2.515000104904175", + "elevation_ft": "2024", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Cassagnes-Bégonhès", + "scheduled_service": "no", + "gps_code": "LFIG" + }, + { + "id": "28897", + "ident": "LFIH", + "type": "small_airport", + "name": "Chalais Airfield", + "latitude_deg": "45.268101", + "longitude_deg": "0.016944", + "elevation_ft": "285", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFIH" + }, + { + "id": "28898", + "ident": "LFIK", + "type": "small_airport", + "name": "Aérodrome de Ribérac-Tourette", + "latitude_deg": "45.238667", + "longitude_deg": "0.264798", + "elevation_ft": "351", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Ribérac", + "scheduled_service": "no", + "gps_code": "LFIK" + }, + { + "id": "28899", + "ident": "LFIL", + "type": "small_airport", + "name": "Rion Des Landes Airfield", + "latitude_deg": "43.915798", + "longitude_deg": "-0.949167", + "elevation_ft": "256", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFIL" + }, + { + "id": "28900", + "ident": "LFIM", + "type": "small_airport", + "name": "St Gaudens Montrejeau Airport", + "latitude_deg": "43.10860061645508", + "longitude_deg": "0.620278000831604", + "elevation_ft": "1325", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Moulins", + "scheduled_service": "no", + "gps_code": "LFIM" + }, + { + "id": "31814", + "ident": "LFIO", + "type": "closed", + "name": "Aérodrome de Montaudran", + "latitude_deg": "43.568901", + "longitude_deg": "1.48083", + "elevation_ft": "482", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Montaudran", + "scheduled_service": "no", + "gps_code": "LFIO" + }, + { + "id": "28901", + "ident": "LFIP", + "type": "small_airport", + "name": "Altiport de Peyresourde Balestas", + "latitude_deg": "42.796723", + "longitude_deg": "0.436503", + "elevation_ft": "5190", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "gps_code": "LFIP", + "wikipedia_link": "https://fr.wikipedia.org/wiki/Altiport_de_Peyresourde-Balestas" + }, + { + "id": "28902", + "ident": "LFIR", + "type": "small_airport", + "name": "Revel Montgey Airfield", + "latitude_deg": "43.4814", + "longitude_deg": "1.98", + "elevation_ft": "643", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "gps_code": "LFIR" + }, + { + "id": "315430", + "ident": "LFIS", + "type": "small_airport", + "name": "Saint-Inglevert Aerodrome", + "latitude_deg": "50.882608", + "longitude_deg": "1.735757", + "elevation_ft": "443", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Saint-Inglevert", + "scheduled_service": "no", + "gps_code": "LFIS", + "keywords": "Boulonnais Aeroclub, Les Deux Caps" + }, + { + "id": "28903", + "ident": "LFIT", + "type": "small_airport", + "name": "Aérodrome de Toulouse Bourg-Saint-Bernard", + "latitude_deg": "43.612202", + "longitude_deg": "1.72528", + "elevation_ft": "525", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "gps_code": "LFIT" + }, + { + "id": "28904", + "ident": "LFIV", + "type": "small_airport", + "name": "Aérodrome de Vendays-Montalivet", + "latitude_deg": "45.3806", + "longitude_deg": "-1.11583", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFIV" + }, + { + "id": "28905", + "ident": "LFIX", + "type": "small_airport", + "name": "Itxassou Airfield", + "latitude_deg": "43.337502", + "longitude_deg": "-1.42222", + "elevation_ft": "607", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFIX" + }, + { + "id": "28906", + "ident": "LFIY", + "type": "small_airport", + "name": "St Jean d'Angély Airfield", + "latitude_deg": "45.964993", + "longitude_deg": "-0.523374", + "elevation_ft": "246", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFIY" + }, + { + "id": "4118", + "ident": "LFJA", + "type": "small_airport", + "name": "Aérodrome de Chaumont-Semoutiers", + "latitude_deg": "48.0863", + "longitude_deg": "5.04902", + "elevation_ft": "1001", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Chaumont/Semoutiers", + "scheduled_service": "no", + "gps_code": "LFJA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chaumont-Semoutiers_Air_Base" + }, + { + "id": "4119", + "ident": "LFJB", + "type": "small_airport", + "name": "Mauléon Airport", + "latitude_deg": "46.902801513671875", + "longitude_deg": "-0.6977779865264893", + "elevation_ft": "576", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Mauléon", + "scheduled_service": "no", + "gps_code": "LFJB" + }, + { + "id": "28907", + "ident": "LFJC", + "type": "small_airport", + "name": "Aérodrome de Clamecy", + "latitude_deg": "47.438301", + "longitude_deg": "3.50861", + "elevation_ft": "713", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "gps_code": "LFJC" + }, + { + "id": "28908", + "ident": "LFJD", + "type": "small_airport", + "name": "Corlier Altiport", + "latitude_deg": "46.040531", + "longitude_deg": "5.494537", + "elevation_ft": "2762", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFJD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Corlier_Aerodrome" + }, + { + "id": "28909", + "ident": "LFJE", + "type": "small_airport", + "name": "Altiport de La Motte Chalancon", + "latitude_deg": "44.4958", + "longitude_deg": "5.40285", + "elevation_ft": "2887", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFJE" + }, + { + "id": "28910", + "ident": "LFJF", + "type": "small_airport", + "name": "Aérodrome d'Aubenasson", + "latitude_deg": "44.6945", + "longitude_deg": "5.15111", + "elevation_ft": "810", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFJF" + }, + { + "id": "28911", + "ident": "LFJH", + "type": "small_airport", + "name": "Aérodrome de Cazères - Palaminy", + "latitude_deg": "43.202202", + "longitude_deg": "1.05111", + "elevation_ft": "811", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "gps_code": "LFJH" + }, + { + "id": "28912", + "ident": "LFJI", + "type": "small_airport", + "name": "Aérodrome de Marennes - Le Bournet", + "latitude_deg": "45.825001", + "longitude_deg": "-1.07667", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFJI" + }, + { + "id": "4120", + "ident": "LFJL", + "type": "medium_airport", + "name": "Metz-Nancy-Lorraine Airport", + "latitude_deg": "48.9821014404", + "longitude_deg": "6.25131988525", + "elevation_ft": "870", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Metz / Nancy", + "scheduled_service": "yes", + "gps_code": "LFJL", + "iata_code": "ETZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Metz-Nancy-Lorraine_Airport" + }, + { + "id": "28913", + "ident": "LFJM", + "type": "closed", + "name": "Chailley Airfield", + "latitude_deg": "48.080715", + "longitude_deg": "3.714237", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "gps_code": "LFJM" + }, + { + "id": "4121", + "ident": "LFJR", + "type": "medium_airport", + "name": "Angers-Loire Airport", + "latitude_deg": "47.560299", + "longitude_deg": "-0.312222", + "elevation_ft": "194", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "TFFR", + "scheduled_service": "yes", + "gps_code": "LFJR", + "iata_code": "ANE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Angers_–_Loire_Airport" + }, + { + "id": "28914", + "ident": "LFJS", + "type": "small_airport", + "name": "Aérodrome de Soissons - Courmelles", + "latitude_deg": "49.345798", + "longitude_deg": "3.28417", + "elevation_ft": "509", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Angers", + "scheduled_service": "no", + "gps_code": "LFJS" + }, + { + "id": "28915", + "ident": "LFJT", + "type": "small_airport", + "name": "Tours Le Louroux Airport", + "latitude_deg": "47.150001525878906", + "longitude_deg": "0.7127779722213745", + "elevation_ft": "413", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Angers", + "scheduled_service": "no", + "gps_code": "LFJT" + }, + { + "id": "4122", + "ident": "LFJU", + "type": "small_airport", + "name": "Aérodrome de Lurcy-Levis", + "latitude_deg": "46.7136", + "longitude_deg": "2.9459", + "elevation_ft": "746", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Lurcy-Lévis", + "scheduled_service": "no", + "gps_code": "LFJU" + }, + { + "id": "331727", + "ident": "LFJV", + "type": "small_airport", + "name": "Aérodrome de Lasclaveries", + "latitude_deg": "43.425278", + "longitude_deg": "-0.286944", + "elevation_ft": "843", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Lasclaveries", + "scheduled_service": "no", + "gps_code": "LFJV" + }, + { + "id": "2989", + "ident": "LFJY", + "type": "small_airport", + "name": "Chambley-Bussières Air Base", + "latitude_deg": "49.025501", + "longitude_deg": "5.87607", + "elevation_ft": "866", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Chambley", + "scheduled_service": "no", + "gps_code": "LFJY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chambley-Bussières_Air_Base" + }, + { + "id": "28916", + "ident": "LFKA", + "type": "small_airport", + "name": "Albertville Airfield", + "latitude_deg": "45.627201", + "longitude_deg": "6.32972", + "elevation_ft": "1033", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Albertville", + "scheduled_service": "no", + "gps_code": "LFKA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Albertville_Aerodrome" + }, + { + "id": "4123", + "ident": "LFKB", + "type": "medium_airport", + "name": "Bastia-Poretta Airport", + "latitude_deg": "42.55270004272461", + "longitude_deg": "9.48373031616211", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-COR", + "municipality": "Bastia/Poretta", + "scheduled_service": "yes", + "gps_code": "LFKB", + "iata_code": "BIA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bastia_-_Poretta_Airport" + }, + { + "id": "4124", + "ident": "LFKC", + "type": "medium_airport", + "name": "Calvi-Sainte-Catherine Airport", + "latitude_deg": "42.5244444", + "longitude_deg": "8.7930556", + "elevation_ft": "209", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-COR", + "municipality": "Calvi/Sainte-Catherine", + "scheduled_service": "yes", + "gps_code": "LFKC", + "iata_code": "CLY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Calvi_-_Sainte-Catherine_Airport" + }, + { + "id": "28917", + "ident": "LFKD", + "type": "small_airport", + "name": "Sollières Sardières Airfield", + "latitude_deg": "45.256401", + "longitude_deg": "6.80139", + "elevation_ft": "4255", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFKD" + }, + { + "id": "28918", + "ident": "LFKE", + "type": "small_airport", + "name": "Saint-Jean-en-Royans Airport", + "latitude_deg": "45.027802", + "longitude_deg": "5.31", + "elevation_ft": "866", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFKE" + }, + { + "id": "4125", + "ident": "LFKF", + "type": "medium_airport", + "name": "Figari Sud-Corse Airport", + "latitude_deg": "41.500599", + "longitude_deg": "9.09778", + "elevation_ft": "85", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-COR", + "municipality": "Figari Sud-Corse", + "scheduled_service": "yes", + "gps_code": "LFKF", + "iata_code": "FSC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Figari_Sud-Corse_Airport" + }, + { + "id": "28919", + "ident": "LFKG", + "type": "small_airport", + "name": "Aérodrome de Ghisonaccia - Alzitone", + "latitude_deg": "42.053387", + "longitude_deg": "9.400241", + "elevation_ft": "177", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-COR", + "municipality": "Figari/Sud Corse", + "scheduled_service": "no", + "gps_code": "LFKG" + }, + { + "id": "28920", + "ident": "LFKH", + "type": "small_airport", + "name": "St Jean D'avelanne Airfield", + "latitude_deg": "45.516701", + "longitude_deg": "5.68056", + "elevation_ft": "964", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Figari/Sud Corse", + "scheduled_service": "no", + "gps_code": "LFKH" + }, + { + "id": "4126", + "ident": "LFKJ", + "type": "medium_airport", + "name": "Ajaccio-Napoléon Bonaparte Airport", + "latitude_deg": "41.92359924316406", + "longitude_deg": "8.8029203414917", + "elevation_ft": "18", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-COR", + "municipality": "Ajaccio/Napoléon Bonaparte", + "scheduled_service": "yes", + "gps_code": "LFKJ", + "iata_code": "AJA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ajaccio_-_Campo_dell'Oro_Airport" + }, + { + "id": "28921", + "ident": "LFKL", + "type": "small_airport", + "name": "Lyon Brindas Airfield", + "latitude_deg": "45.7117", + "longitude_deg": "4.69778", + "elevation_ft": "1040", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Brindas", + "scheduled_service": "no", + "gps_code": "LFKL" + }, + { + "id": "28922", + "ident": "LFKM", + "type": "small_airport", + "name": "St Galmier Airfield", + "latitude_deg": "45.607201", + "longitude_deg": "4.30583", + "elevation_ft": "1266", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFKM" + }, + { + "id": "4127", + "ident": "LFKO", + "type": "small_airport", + "name": "Propriano Airport", + "latitude_deg": "41.66059875488281", + "longitude_deg": "8.889749526977539", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-COR", + "municipality": "Propriano", + "scheduled_service": "no", + "gps_code": "LFKO", + "iata_code": "PRP" + }, + { + "id": "28923", + "ident": "LFKP", + "type": "small_airport", + "name": "La Tour Du Pin Airfield", + "latitude_deg": "45.560001", + "longitude_deg": "5.38472", + "elevation_ft": "1050", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFKP" + }, + { + "id": "4128", + "ident": "LFKS", + "type": "medium_airport", + "name": "Solenzara (BA 126) Air Base", + "latitude_deg": "41.924400329589844", + "longitude_deg": "9.406000137329102", + "elevation_ft": "28", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-COR", + "municipality": "Solenzara", + "scheduled_service": "no", + "gps_code": "LFKS", + "iata_code": "SOZ" + }, + { + "id": "4129", + "ident": "LFKT", + "type": "small_airport", + "name": "Aérodrome de Corte", + "latitude_deg": "42.2919", + "longitude_deg": "9.189", + "elevation_ft": "1132", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-COR", + "municipality": "Corte", + "scheduled_service": "no", + "gps_code": "LFKT" + }, + { + "id": "28924", + "ident": "LFKX", + "type": "small_airport", + "name": "Méribel Altiport", + "latitude_deg": "45.407505", + "longitude_deg": "6.577597", + "elevation_ft": "5636", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Les Allues", + "scheduled_service": "no", + "gps_code": "LFKX", + "iata_code": "MFX", + "wikipedia_link": "https://en.wikipedia.org/wiki/M%C3%A9ribel_Altiport" + }, + { + "id": "28925", + "ident": "LFKY", + "type": "small_airport", + "name": "Belley - Peyrieu Airfield", + "latitude_deg": "45.695", + "longitude_deg": "5.69278", + "elevation_ft": "739", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFKY" + }, + { + "id": "28926", + "ident": "LFKZ", + "type": "small_airport", + "name": "Aérodrome de St Claude Pratz", + "latitude_deg": "46.388901", + "longitude_deg": "5.77222", + "elevation_ft": "2051", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "local_code": "LF3923" + }, + { + "id": "4130", + "ident": "LFLA", + "type": "medium_airport", + "name": "Auxerre-Branches Airport", + "latitude_deg": "47.85020065307617", + "longitude_deg": "3.497109889984131", + "elevation_ft": "523", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Auxerre/Branches", + "scheduled_service": "no", + "gps_code": "LFLA", + "iata_code": "AUF" + }, + { + "id": "4131", + "ident": "LFLB", + "type": "medium_airport", + "name": "Chambéry-Savoie Airport", + "latitude_deg": "45.638099670410156", + "longitude_deg": "5.880229949951172", + "elevation_ft": "779", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Chambéry/Aix-les-Bains", + "scheduled_service": "yes", + "gps_code": "LFLB", + "iata_code": "CMF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chamb%C3%A9ry_Airport" + }, + { + "id": "4132", + "ident": "LFLC", + "type": "medium_airport", + "name": "Clermont-Ferrand Auvergne Airport", + "latitude_deg": "45.7867012024", + "longitude_deg": "3.1691699028", + "elevation_ft": "1090", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Clermont-Ferrand/Auvergne", + "scheduled_service": "yes", + "gps_code": "LFLC", + "iata_code": "CFE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clermont-Ferrand_Auvergne_Airport" + }, + { + "id": "4133", + "ident": "LFLD", + "type": "medium_airport", + "name": "Bourges Airport", + "latitude_deg": "47.058101654052734", + "longitude_deg": "2.3702800273895264", + "elevation_ft": "529", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Bourges", + "scheduled_service": "no", + "gps_code": "LFLD", + "iata_code": "BOU" + }, + { + "id": "4134", + "ident": "LFLE", + "type": "small_airport", + "name": "Aérodrome de Chambéry Challes-les-Eaux", + "latitude_deg": "45.5611", + "longitude_deg": "5.97576", + "elevation_ft": "973", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Chambéry/Challes-les-Eaux", + "scheduled_service": "no", + "gps_code": "LFLE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chamb%C3%A9ry_Aerodrome" + }, + { + "id": "28927", + "ident": "LFLG", + "type": "small_airport", + "name": "Aérodrome de Grenoble Le Versoud", + "latitude_deg": "45.2192", + "longitude_deg": "5.84972", + "elevation_ft": "722", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Grenoble", + "scheduled_service": "no", + "gps_code": "LFLG" + }, + { + "id": "4135", + "ident": "LFLH", + "type": "medium_airport", + "name": "Chalon-Champforgeuil Airfield", + "latitude_deg": "46.826099", + "longitude_deg": "4.81763", + "elevation_ft": "623", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Chalon/Champforgueil", + "scheduled_service": "no", + "gps_code": "LFLH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chalon_-_Champforgeuil_Airfield" + }, + { + "id": "4136", + "ident": "LFLI", + "type": "medium_airport", + "name": "Annemasse Airfield", + "latitude_deg": "46.192001", + "longitude_deg": "6.26839", + "elevation_ft": "1620", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Annemasse", + "scheduled_service": "no", + "gps_code": "LFLI", + "home_link": "http://www.caa.asso.fr/" + }, + { + "id": "28488", + "ident": "LFLJ", + "type": "small_airport", + "name": "Courchevel Altiport", + "latitude_deg": "45.397531", + "longitude_deg": "6.63498", + "elevation_ft": "6583", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Saint-Bon", + "scheduled_service": "no", + "gps_code": "LFLJ", + "iata_code": "CVF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Courchevel_Altiport" + }, + { + "id": "28928", + "ident": "LFLK", + "type": "small_airport", + "name": "Aérodrome d'Oyonnax-Arbent", + "latitude_deg": "46.279202", + "longitude_deg": "5.6675", + "elevation_ft": "1755", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFLK", + "keywords": "Jean Coutty" + }, + { + "id": "4137", + "ident": "LFLL", + "type": "large_airport", + "name": "Lyon Saint-Exupéry Airport", + "latitude_deg": "45.725556", + "longitude_deg": "5.081111", + "elevation_ft": "821", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Lyon", + "scheduled_service": "yes", + "gps_code": "LFLL", + "iata_code": "LYS", + "home_link": "https://www.lyonaeroports.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saint-Exup%C3%A9ry_International_Airport" + }, + { + "id": "4138", + "ident": "LFLM", + "type": "medium_airport", + "name": "Aérodrome de Mâcon-Charnay", + "latitude_deg": "46.295101", + "longitude_deg": "4.79577", + "elevation_ft": "728", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Mâcon/Charnay", + "scheduled_service": "no", + "gps_code": "LFLM" + }, + { + "id": "4139", + "ident": "LFLN", + "type": "medium_airport", + "name": "Saint-Yan Airport", + "latitude_deg": "46.412498474121094", + "longitude_deg": "4.0132598876953125", + "elevation_ft": "796", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Saint-Yan", + "scheduled_service": "no", + "gps_code": "LFLN", + "iata_code": "SYT" + }, + { + "id": "4140", + "ident": "LFLO", + "type": "medium_airport", + "name": "Roanne-Renaison Airport", + "latitude_deg": "46.05830001831055", + "longitude_deg": "4.001389980316162", + "elevation_ft": "1106", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Roanne/Renaison", + "scheduled_service": "no", + "gps_code": "LFLO", + "iata_code": "RNE" + }, + { + "id": "4141", + "ident": "LFLP", + "type": "medium_airport", + "name": "Annecy-Haute-Savoie-Mont Blanc Airport", + "latitude_deg": "45.9308333", + "longitude_deg": "6.1063889", + "elevation_ft": "1521", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Annecy/Meythet", + "scheduled_service": "yes", + "gps_code": "LFLP", + "iata_code": "NCY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Annecy_-_Haute-Savoie_-_Mont_Blanc_Airport" + }, + { + "id": "28929", + "ident": "LFLQ", + "type": "small_airport", + "name": "Aérodrome de Montélimar - Ancône", + "latitude_deg": "44.583599", + "longitude_deg": "4.74056", + "elevation_ft": "240", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFLQ" + }, + { + "id": "28930", + "ident": "LFLR", + "type": "small_airport", + "name": "Aérodrome de Saint-Rambert-d'Albon", + "latitude_deg": "45.2561", + "longitude_deg": "4.82583", + "elevation_ft": "509", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFLR", + "wikipedia_link": "https://fr.wikipedia.org/wiki/A%C3%A9rodrome_de_Saint-Rambert-d'Albon" + }, + { + "id": "4142", + "ident": "LFLS", + "type": "medium_airport", + "name": "Grenoble-Isère Airport", + "latitude_deg": "45.3629", + "longitude_deg": "5.32937", + "elevation_ft": "1302", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-U-A", + "municipality": "Saint-Étienne-de-Saint-Geoirs", + "scheduled_service": "yes", + "gps_code": "LFLS", + "iata_code": "GNB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grenoble-Is%C3%A8re_Airport" + }, + { + "id": "4143", + "ident": "LFLT", + "type": "small_airport", + "name": "Montluçon-Domérat Airfield", + "latitude_deg": "46.352501", + "longitude_deg": "2.57049", + "elevation_ft": "771", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Montluçon/Domérat", + "scheduled_service": "no", + "gps_code": "LFLT" + }, + { + "id": "4144", + "ident": "LFLU", + "type": "medium_airport", + "name": "Valence-Chabeuil Airport", + "latitude_deg": "44.9216", + "longitude_deg": "4.9699", + "elevation_ft": "525", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Valence/Chabeuil", + "scheduled_service": "no", + "gps_code": "LFLU", + "iata_code": "VAF", + "home_link": "http://www.valenceaeroport.fr", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valence-Chabeuil_Airport" + }, + { + "id": "4145", + "ident": "LFLV", + "type": "medium_airport", + "name": "Vichy-Charmeil Airport", + "latitude_deg": "46.169700622558594", + "longitude_deg": "3.4037399291992188", + "elevation_ft": "817", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Vichy/Charmeil", + "scheduled_service": "no", + "gps_code": "LFLV", + "iata_code": "VHY" + }, + { + "id": "4146", + "ident": "LFLW", + "type": "medium_airport", + "name": "Aurillac Airport", + "latitude_deg": "44.89139938354492", + "longitude_deg": "2.4219400882720947", + "elevation_ft": "2096", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Aurillac", + "scheduled_service": "yes", + "gps_code": "LFLW", + "iata_code": "AUR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aurillac_Airport" + }, + { + "id": "4147", + "ident": "LFLX", + "type": "medium_airport", + "name": "Châteauroux-Déols \"Marcel Dassault\" Airport", + "latitude_deg": "46.860278", + "longitude_deg": "1.721111", + "elevation_ft": "529", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Châteauroux/Déols", + "scheduled_service": "no", + "gps_code": "LFLX", + "iata_code": "CHR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ch%C3%A2teauroux-D%C3%A9ols_%22Marcel_Dassault%22_Airport" + }, + { + "id": "4148", + "ident": "LFLY", + "type": "medium_airport", + "name": "Lyon-Bron Airport", + "latitude_deg": "45.72719955444336", + "longitude_deg": "4.944270133972168", + "elevation_ft": "659", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Lyon/Bron", + "scheduled_service": "no", + "gps_code": "LFLY", + "iata_code": "LYN" + }, + { + "id": "28931", + "ident": "LFLZ", + "type": "small_airport", + "name": "Aérodrome de Feurs - Chambéon", + "latitude_deg": "45.70622", + "longitude_deg": "4.19734", + "elevation_ft": "1096", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "scheduled_service": "no", + "gps_code": "LFLZ" + }, + { + "id": "4149", + "ident": "LFMA", + "type": "small_airport", + "name": "Aix - Les Milles Airport", + "latitude_deg": "43.5056", + "longitude_deg": "5.36778", + "elevation_ft": "367", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Aix-en-Provence", + "scheduled_service": "no", + "gps_code": "LFMA", + "keywords": "Aérodrome d'Aix - Les Milles" + }, + { + "id": "4150", + "ident": "LFMC", + "type": "medium_airport", + "name": "Le Luc-Le Cannet Airport", + "latitude_deg": "43.384701", + "longitude_deg": "6.38714", + "elevation_ft": "265", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Le Cannet-des-Maures", + "scheduled_service": "no", + "gps_code": "LFMC" + }, + { + "id": "4151", + "ident": "LFMD", + "type": "medium_airport", + "name": "Cannes-Mandelieu Airport", + "latitude_deg": "43.542", + "longitude_deg": "6.95348", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Cannes", + "scheduled_service": "yes", + "gps_code": "LFMD", + "iata_code": "CEQ", + "home_link": "https://www.cannes.aeroport.fr/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cannes_%E2%80%93_Mandelieu_Airport" + }, + { + "id": "28932", + "ident": "LFME", + "type": "small_airport", + "name": "Nîmes Courbessac Airport", + "latitude_deg": "43.853901", + "longitude_deg": "4.41361", + "elevation_ft": "197", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Nîmes", + "scheduled_service": "no", + "gps_code": "LFME" + }, + { + "id": "28933", + "ident": "LFMF", + "type": "small_airport", + "name": "Fayence Glider Field", + "latitude_deg": "43.6112", + "longitude_deg": "6.69715", + "elevation_ft": "741", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Fayence", + "scheduled_service": "no", + "gps_code": "LFMF", + "keywords": "Tourrettes" + }, + { + "id": "28934", + "ident": "LFMG", + "type": "small_airport", + "name": "Aérodrome de la Montagne Noire", + "latitude_deg": "43.407501", + "longitude_deg": "1.99028", + "elevation_ft": "1470", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Revel", + "scheduled_service": "no", + "gps_code": "LFMG" + }, + { + "id": "4152", + "ident": "LFMH", + "type": "medium_airport", + "name": "Saint-Étienne-Bouthéon Airport", + "latitude_deg": "45.54059982299805", + "longitude_deg": "4.296390056610107", + "elevation_ft": "1325", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Saint-Étienne/Bouthéon", + "scheduled_service": "yes", + "gps_code": "LFMH", + "iata_code": "EBU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saint-%C3%89tienne_-_Bouth%C3%A9on_Airport" + }, + { + "id": "4153", + "ident": "LFMI", + "type": "medium_airport", + "name": "Istres Le Tubé Air Base", + "latitude_deg": "43.522701", + "longitude_deg": "4.92384", + "elevation_ft": "82", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Istres/Le Tubé", + "scheduled_service": "no", + "gps_code": "LFMI", + "keywords": "Istres Air Base, BA125" + }, + { + "id": "4154", + "ident": "LFMK", + "type": "medium_airport", + "name": "Carcassonne Airport", + "latitude_deg": "43.215999603271484", + "longitude_deg": "2.3063199520111084", + "elevation_ft": "433", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Carcassonne/Salvaza", + "scheduled_service": "yes", + "gps_code": "LFMK", + "iata_code": "CCF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carcassonne_Salvaza_Airport" + }, + { + "id": "4155", + "ident": "LFML", + "type": "large_airport", + "name": "Marseille Provence Airport", + "latitude_deg": "43.439271922", + "longitude_deg": "5.22142410278", + "elevation_ft": "74", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Marseille", + "scheduled_service": "yes", + "gps_code": "LFML", + "iata_code": "MRS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marseille_Provence_Airport" + }, + { + "id": "4156", + "ident": "LFMN", + "type": "large_airport", + "name": "Nice-Côte d'Azur Airport", + "latitude_deg": "43.6584014893", + "longitude_deg": "7.215869903560001", + "elevation_ft": "12", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Nice", + "scheduled_service": "yes", + "gps_code": "LFMN", + "iata_code": "NCE", + "wikipedia_link": "https://en.wikipedia.org/wiki/C%C3%B4te_d'Azur_International_Airport" + }, + { + "id": "4157", + "ident": "LFMO", + "type": "medium_airport", + "name": "Orange-Caritat (BA 115) Air Base", + "latitude_deg": "44.140499", + "longitude_deg": "4.86672", + "elevation_ft": "197", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Orange/Caritat", + "scheduled_service": "no", + "gps_code": "LFMO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orange-Caritat_Air_Base" + }, + { + "id": "4158", + "ident": "LFMP", + "type": "medium_airport", + "name": "Perpignan-Rivesaltes (Llabanère) Airport", + "latitude_deg": "42.74039840698242", + "longitude_deg": "2.8706700801849365", + "elevation_ft": "144", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Perpignan/Rivesaltes", + "scheduled_service": "yes", + "gps_code": "LFMP", + "iata_code": "PGF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Perpignan_-_Rivesaltes_Airport" + }, + { + "id": "4159", + "ident": "LFMQ", + "type": "medium_airport", + "name": "Le Castellet Airport", + "latitude_deg": "43.252498626708984", + "longitude_deg": "5.785190105438232", + "elevation_ft": "1391", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Le Castellet", + "scheduled_service": "no", + "gps_code": "LFMQ", + "iata_code": "CTT" + }, + { + "id": "28935", + "ident": "LFMR", + "type": "small_airport", + "name": "Barcelonnette - Saint-Pons Airfield", + "latitude_deg": "44.387198", + "longitude_deg": "6.609186", + "elevation_ft": "3714", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Le Castellet", + "scheduled_service": "no", + "gps_code": "LFMR", + "iata_code": "BAE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barcelonnette_%E2%80%93_Saint-Pons_Airport" + }, + { + "id": "4160", + "ident": "LFMS", + "type": "medium_airport", + "name": "Aérodrome d'Alès Cévennes", + "latitude_deg": "44.069698", + "longitude_deg": "4.14212", + "elevation_ft": "668", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Alès/Deaux", + "scheduled_service": "no", + "gps_code": "LFMS" + }, + { + "id": "4161", + "ident": "LFMT", + "type": "medium_airport", + "name": "Montpellier-Méditerranée Airport", + "latitude_deg": "43.57619857788086", + "longitude_deg": "3.96301007270813", + "elevation_ft": "17", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Montpellier/Méditerranée", + "scheduled_service": "yes", + "gps_code": "LFMT", + "iata_code": "MPL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Montpellier_-_M%C3%A9diterran%C3%A9e_Airport" + }, + { + "id": "4162", + "ident": "LFMU", + "type": "medium_airport", + "name": "Béziers-Vias Airport", + "latitude_deg": "43.32350158691406", + "longitude_deg": "3.3538999557495117", + "elevation_ft": "56", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Béziers/Vias", + "scheduled_service": "yes", + "gps_code": "LFMU", + "iata_code": "BZR", + "wikipedia_link": "https://en.wikipedia.org/wiki/B%C3%A9ziers-Agde-Vias_Airport" + }, + { + "id": "4163", + "ident": "LFMV", + "type": "medium_airport", + "name": "Avignon-Caumont Airport", + "latitude_deg": "43.90729904174805", + "longitude_deg": "4.901830196380615", + "elevation_ft": "124", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Avignon/Caumont", + "scheduled_service": "yes", + "gps_code": "LFMV", + "iata_code": "AVN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Avignon_-_Caumont_Airport" + }, + { + "id": "28936", + "ident": "LFMW", + "type": "small_airport", + "name": "Aérodrome de Castelnaudary-Villeneuve", + "latitude_deg": "43.312199", + "longitude_deg": "1.92111", + "elevation_ft": "551", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Castelnaudary Villeneuve", + "scheduled_service": "no", + "gps_code": "LFMW" + }, + { + "id": "28937", + "ident": "LFMX", + "type": "small_airport", + "name": "Aérodrome de Château-Arnoux - Saint-Auban", + "latitude_deg": "44.060001", + "longitude_deg": "5.99139", + "elevation_ft": "1509", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Avignon", + "scheduled_service": "no", + "gps_code": "LFMX" + }, + { + "id": "4164", + "ident": "LFMY", + "type": "medium_airport", + "name": "Salon-de-Provence (BA 701) Air Base", + "latitude_deg": "43.60639953613281", + "longitude_deg": "5.109250068664551", + "elevation_ft": "195", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Salon", + "scheduled_service": "no", + "gps_code": "LFMY" + }, + { + "id": "4165", + "ident": "LFMZ", + "type": "small_airport", + "name": "Lézignan-Corbières Airfield", + "latitude_deg": "43.1758", + "longitude_deg": "2.73417", + "elevation_ft": "207", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Lézignan-Corbières", + "scheduled_service": "no", + "gps_code": "LFMZ" + }, + { + "id": "28938", + "ident": "LFNA", + "type": "small_airport", + "name": "Gap - Tallard Airfield", + "latitude_deg": "44.455002", + "longitude_deg": "6.03778", + "elevation_ft": "1986", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "scheduled_service": "no", + "gps_code": "LFNA", + "iata_code": "GAT" + }, + { + "id": "4166", + "ident": "LFNB", + "type": "medium_airport", + "name": "Mende-Brenoux Airfield", + "latitude_deg": "44.502102", + "longitude_deg": "3.53282", + "elevation_ft": "3362", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Mende/Brénoux", + "scheduled_service": "no", + "gps_code": "LFNB", + "iata_code": "MEN" + }, + { + "id": "28939", + "ident": "LFNC", + "type": "small_airport", + "name": "Mont-Dauphin - St-Crépin Airfield", + "latitude_deg": "44.701698", + "longitude_deg": "6.60028", + "elevation_ft": "2963", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "scheduled_service": "no", + "gps_code": "LFNC", + "iata_code": "SCP", + "home_link": "http://www.stcrepin-aero.com/" + }, + { + "id": "28940", + "ident": "LFND", + "type": "closed", + "name": "Pont St Esprit Airfield", + "latitude_deg": "44.269402", + "longitude_deg": "4.65333", + "elevation_ft": "144", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "gps_code": "LFND" + }, + { + "id": "28941", + "ident": "LFNE", + "type": "small_airport", + "name": "Aérodrome d'Eyguières", + "latitude_deg": "43.658298", + "longitude_deg": "5.01361", + "elevation_ft": "246", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "scheduled_service": "no", + "gps_code": "LFNE" + }, + { + "id": "28942", + "ident": "LFNF", + "type": "small_airport", + "name": "Aérodrome de Vinon", + "latitude_deg": "43.737801", + "longitude_deg": "5.78417", + "elevation_ft": "902", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Vinon-sur-Verdon", + "scheduled_service": "no", + "gps_code": "LFNF", + "wikipedia_link": "https://fr.wikipedia.org/wiki/Liste_des_a%C3%A9rodromes_en_France" + }, + { + "id": "28943", + "ident": "LFNG", + "type": "small_airport", + "name": "Aérodrome de Montpellier - Candillargues", + "latitude_deg": "43.610298", + "longitude_deg": "4.07028", + "elevation_ft": "5", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "gps_code": "LFNG" + }, + { + "id": "4167", + "ident": "LFNH", + "type": "small_airport", + "name": "Aérodrome de Carpentras", + "latitude_deg": "44.0298", + "longitude_deg": "5.07806", + "elevation_ft": "394", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Carpentras", + "scheduled_service": "no", + "gps_code": "LFNH", + "keywords": "Edgar-Sounille" + }, + { + "id": "28944", + "ident": "LFNJ", + "type": "small_airport", + "name": "Aérodrome d'Aspres-sur-Buëch", + "latitude_deg": "44.518902", + "longitude_deg": "5.7375", + "elevation_ft": "2726", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Aspres sur Buëch", + "scheduled_service": "no", + "gps_code": "LFNJ" + }, + { + "id": "28945", + "ident": "LFNL", + "type": "small_airport", + "name": "Aérodrome de Saint-Martin-de-Londres", + "latitude_deg": "43.8008", + "longitude_deg": "3.7825", + "elevation_ft": "597", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "gps_code": "LFNL" + }, + { + "id": "28947", + "ident": "LFNO", + "type": "small_airport", + "name": "Florac Ste Enimie Airfield", + "latitude_deg": "44.2864", + "longitude_deg": "3.46667", + "elevation_ft": "3054", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "gps_code": "LFNO" + }, + { + "id": "28948", + "ident": "LFNP", + "type": "closed", + "name": "Pézenas Nizas Airfield", + "latitude_deg": "43.505798", + "longitude_deg": "3.41361", + "elevation_ft": "322", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "gps_code": "LFNP", + "wikipedia_link": "https://fr.wikipedia.org/wiki/A%C3%A9rodrome_de_P%C3%A9zenas_-_Nizas" + }, + { + "id": "28949", + "ident": "LFNQ", + "type": "small_airport", + "name": "Mont Louis La Quillane Airfield", + "latitude_deg": "42.543598", + "longitude_deg": "2.12", + "elevation_ft": "5610", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "gps_code": "LFNQ" + }, + { + "id": "28950", + "ident": "LFNR", + "type": "small_airport", + "name": "Berre-la-Fare Airfield", + "latitude_deg": "43.536659", + "longitude_deg": "5.177444", + "elevation_ft": "108", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Berre-l'Étang", + "scheduled_service": "no", + "gps_code": "LFNR" + }, + { + "id": "28951", + "ident": "LFNS", + "type": "small_airport", + "name": "Aérodrome de Sistéron-Vaumeilh", + "latitude_deg": "44.286331", + "longitude_deg": "5.928993", + "elevation_ft": "1772", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "scheduled_service": "no", + "gps_code": "LFNS", + "home_link": "http://www.aerodrome-sisteron.com" + }, + { + "id": "28952", + "ident": "LFNT", + "type": "small_airport", + "name": "Aérodrome d'Avignon-Pujaut", + "latitude_deg": "43.996899", + "longitude_deg": "4.75556", + "elevation_ft": "148", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Pujaut", + "scheduled_service": "no", + "gps_code": "LFNT" + }, + { + "id": "28953", + "ident": "LFNU", + "type": "small_airport", + "name": "Uzès Airfield", + "latitude_deg": "44.084702", + "longitude_deg": "4.39528", + "elevation_ft": "886", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "gps_code": "LFNU" + }, + { + "id": "28954", + "ident": "LFNV", + "type": "small_airport", + "name": "Valréas Visan Airfield", + "latitude_deg": "44.336899", + "longitude_deg": "4.90806", + "elevation_ft": "472", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "scheduled_service": "no", + "gps_code": "LFNV" + }, + { + "id": "28955", + "ident": "LFNW", + "type": "small_airport", + "name": "Puivert Airfield", + "latitude_deg": "42.9114", + "longitude_deg": "2.05611", + "elevation_ft": "1608", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "gps_code": "LFNW" + }, + { + "id": "28956", + "ident": "LFNX", + "type": "small_airport", + "name": "Bédarieux La Tour Airfield", + "latitude_deg": "43.6408", + "longitude_deg": "3.14556", + "elevation_ft": "1237", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "gps_code": "LFNX" + }, + { + "id": "28957", + "ident": "LFNY", + "type": "small_airport", + "name": "Altisurface de Saint-Étienne-en-Dévoluy", + "latitude_deg": "44.6689", + "longitude_deg": "5.90611", + "elevation_ft": "6201", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Dévoluy", + "scheduled_service": "no", + "local_code": "LF0538" + }, + { + "id": "28958", + "ident": "LFNZ", + "type": "small_airport", + "name": "Le Mazet De Romanin Airfield", + "latitude_deg": "43.768902", + "longitude_deg": "4.89361", + "elevation_ft": "387", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "scheduled_service": "no", + "gps_code": "LFNZ" + }, + { + "id": "4168", + "ident": "LFOA", + "type": "medium_airport", + "name": "Avord (BA 702) Air Base", + "latitude_deg": "47.053299", + "longitude_deg": "2.6325", + "elevation_ft": "580", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Avord", + "scheduled_service": "no", + "gps_code": "LFOA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Avord_Air_Base" + }, + { + "id": "4169", + "ident": "LFOB", + "type": "medium_airport", + "name": "Paris Beauvais Tillé Airport", + "latitude_deg": "49.454399", + "longitude_deg": "2.11278", + "elevation_ft": "359", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Beauvais", + "scheduled_service": "yes", + "gps_code": "LFOB", + "iata_code": "BVA", + "home_link": "https://www.aeroportparisbeauvais.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paris_Beauvais_Till%C3%A9_Airport" + }, + { + "id": "4170", + "ident": "LFOC", + "type": "medium_airport", + "name": "Châteaudun (BA 279) Air Base", + "latitude_deg": "48.058102", + "longitude_deg": "1.37662", + "elevation_ft": "433", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Châteaudun", + "scheduled_service": "no", + "gps_code": "LFOC" + }, + { + "id": "4171", + "ident": "LFOD", + "type": "small_airport", + "name": "Aérodrome de Saumur - Saint-Florent", + "latitude_deg": "47.256802", + "longitude_deg": "-0.115142", + "elevation_ft": "269", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Saumur/Saint-Florent", + "scheduled_service": "no", + "gps_code": "LFOD" + }, + { + "id": "4172", + "ident": "LFOE", + "type": "medium_airport", + "name": "Évreux-Fauville (BA 105) Air Base", + "latitude_deg": "49.02870178222656", + "longitude_deg": "1.2198599576950073", + "elevation_ft": "464", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Évreux/Fauville", + "scheduled_service": "no", + "gps_code": "LFOE", + "iata_code": "EVX" + }, + { + "id": "28959", + "ident": "LFOF", + "type": "small_airport", + "name": "Aérodrome d'Alençon - Valframbert", + "latitude_deg": "48.447498", + "longitude_deg": "0.109167", + "elevation_ft": "479", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "scheduled_service": "no", + "gps_code": "LFOF" + }, + { + "id": "28960", + "ident": "LFOG", + "type": "small_airport", + "name": "Aérodrome de Flers Saint-Paul", + "latitude_deg": "48.752499", + "longitude_deg": "-0.589444", + "elevation_ft": "656", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "scheduled_service": "no", + "gps_code": "LFOG" + }, + { + "id": "4173", + "ident": "LFOH", + "type": "medium_airport", + "name": "Le Havre Octeville Airport", + "latitude_deg": "49.53390121459961", + "longitude_deg": "0.08805599808692932", + "elevation_ft": "313", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Le Havre/Octeville", + "scheduled_service": "yes", + "gps_code": "LFOH", + "iata_code": "LEH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Le_Havre_Octeville_Airport" + }, + { + "id": "4174", + "ident": "LFOI", + "type": "medium_airport", + "name": "Abbeville", + "latitude_deg": "50.143501", + "longitude_deg": "1.831891", + "elevation_ft": "220", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Abbeville", + "scheduled_service": "no", + "gps_code": "LFOI", + "wikipedia_link": "https://fr.wikipedia.org/wiki/Aérodrome_d'Abbeville", + "keywords": "Aérodrome d'Abbeville" + }, + { + "id": "4175", + "ident": "LFOJ", + "type": "medium_airport", + "name": "Orléans-Bricy (BA 123) Air Base", + "latitude_deg": "47.987801", + "longitude_deg": "1.76056", + "elevation_ft": "412", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Orléans/Bricy", + "scheduled_service": "no", + "gps_code": "LFOJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orl%C3%A9ans_-_Bricy_Air_Base" + }, + { + "id": "4176", + "ident": "LFOK", + "type": "medium_airport", + "name": "Châlons-Vatry Airport", + "latitude_deg": "48.773333", + "longitude_deg": "4.206111", + "elevation_ft": "587", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Vatry", + "scheduled_service": "yes", + "gps_code": "LFOK", + "iata_code": "XCR" + }, + { + "id": "28961", + "ident": "LFOL", + "type": "small_airport", + "name": "Aérodrome de L'Aigle-Saint-Michel", + "latitude_deg": "48.759701", + "longitude_deg": "0.659167", + "elevation_ft": "787", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Chalons", + "scheduled_service": "no", + "gps_code": "LFOL" + }, + { + "id": "28962", + "ident": "LFOM", + "type": "small_airport", + "name": "Aérodrome de Lessay", + "latitude_deg": "49.203098", + "longitude_deg": "-1.50667", + "elevation_ft": "92", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Chalons", + "scheduled_service": "no", + "gps_code": "LFOM", + "keywords": "Aérodrome Charles Lindbergh" + }, + { + "id": "28963", + "ident": "LFON", + "type": "small_airport", + "name": "Aérodrome de Dreux - Vernouillet", + "latitude_deg": "48.706699", + "longitude_deg": "1.36278", + "elevation_ft": "443", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Dreux", + "scheduled_service": "no", + "gps_code": "LFON" + }, + { + "id": "28964", + "ident": "LFOO", + "type": "small_airport", + "name": "Les Sables-d'Olonne Talmont Airport", + "latitude_deg": "46.476898193359375", + "longitude_deg": "-1.7227799892425537", + "elevation_ft": "105", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Les Sables-d'Olonne", + "scheduled_service": "no", + "gps_code": "LFOO", + "iata_code": "LSO", + "keywords": "Talmon-Saint-Hilaire" + }, + { + "id": "4177", + "ident": "LFOP", + "type": "medium_airport", + "name": "Rouen Airport", + "latitude_deg": "49.38420104980469", + "longitude_deg": "1.1748000383377075", + "elevation_ft": "512", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Rouen/Vallée de Seine", + "scheduled_service": "yes", + "gps_code": "LFOP", + "iata_code": "URO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rouen_Airport" + }, + { + "id": "4178", + "ident": "LFOQ", + "type": "small_airport", + "name": "Aérodrome de Blois-Le Breuil", + "latitude_deg": "47.678502", + "longitude_deg": "1.20884", + "elevation_ft": "398", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Blois/Le Breuil", + "scheduled_service": "no", + "gps_code": "LFOQ", + "wikipedia_link": "https://fr.wikipedia.org/wiki/A%C3%A9rodrome_de_Blois_-_Le_Breuil", + "keywords": "XBQ" + }, + { + "id": "28965", + "ident": "LFOR", + "type": "small_airport", + "name": "Aérodrome de Chartres-Métropole", + "latitude_deg": "48.4589", + "longitude_deg": "1.52389", + "elevation_ft": "509", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Chartres / Champhol", + "scheduled_service": "no", + "gps_code": "LFOR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chartres_%E2%80%93_Champhol_Aerodrome", + "keywords": "Champhol, A-40" + }, + { + "id": "28966", + "ident": "LFOS", + "type": "small_airport", + "name": "Aérodrome de Saint-Valery-Vittefleur", + "latitude_deg": "49.836102", + "longitude_deg": "0.655", + "elevation_ft": "272", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Blois", + "scheduled_service": "no", + "gps_code": "LFOS" + }, + { + "id": "4179", + "ident": "LFOT", + "type": "medium_airport", + "name": "Tours-Val-de-Loire Airport", + "latitude_deg": "47.4322013855", + "longitude_deg": "0.727605998516", + "elevation_ft": "357", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Tours/Val de Loire (Loire Valley)", + "scheduled_service": "yes", + "gps_code": "LFOT", + "iata_code": "TUF", + "home_link": "http://www.tours.aeroport.fr/index_en.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tours_Loire_Valley_Airport" + }, + { + "id": "4180", + "ident": "LFOU", + "type": "medium_airport", + "name": "Cholet Le Pontreau Airport", + "latitude_deg": "47.08209991455078", + "longitude_deg": "-0.8770639896392822", + "elevation_ft": "443", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Cholet/Le Pontreau", + "scheduled_service": "no", + "gps_code": "LFOU", + "iata_code": "CET" + }, + { + "id": "4181", + "ident": "LFOV", + "type": "medium_airport", + "name": "Laval-Entrammes Airport", + "latitude_deg": "48.03139877319336", + "longitude_deg": "-0.7429860234260559", + "elevation_ft": "330", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Laval/Entrammes", + "scheduled_service": "no", + "gps_code": "LFOV", + "iata_code": "LVA" + }, + { + "id": "28967", + "ident": "LFOW", + "type": "small_airport", + "name": "Aérodrome de Saint-Quentin - Roupy", + "latitude_deg": "49.816898", + "longitude_deg": "3.20667", + "elevation_ft": "325", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "scheduled_service": "no", + "gps_code": "LFOW" + }, + { + "id": "28968", + "ident": "LFOX", + "type": "small_airport", + "name": "Aérodrome d'Étampes-Mondésir", + "latitude_deg": "48.381901", + "longitude_deg": "2.07528", + "elevation_ft": "494", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Guillerval", + "scheduled_service": "no", + "gps_code": "LFOX" + }, + { + "id": "28969", + "ident": "LFOY", + "type": "small_airport", + "name": "Aérodrome du Havre - Saint-Romain", + "latitude_deg": "49.544701", + "longitude_deg": "0.361111", + "elevation_ft": "423", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Laval", + "scheduled_service": "no", + "gps_code": "LFOY" + }, + { + "id": "4182", + "ident": "LFOZ", + "type": "small_airport", + "name": "Orléans – Saint-Denis-de-l'Hôtel Airport", + "latitude_deg": "47.8969", + "longitude_deg": "2.16333", + "elevation_ft": "396", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "municipality": "Orléans", + "scheduled_service": "no", + "gps_code": "LFOZ", + "iata_code": "ORE", + "home_link": "https://orleans.aeroport.fr/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orl%C3%A9ans_%E2%80%93_Saint-Denis-de-l%27H%C3%B4tel_Airport", + "keywords": "Aéroport du Loiret" + }, + { + "id": "28970", + "ident": "LFPA", + "type": "small_airport", + "name": "Aérodrome de Persan-Beaumont", + "latitude_deg": "49.165798", + "longitude_deg": "2.31306", + "elevation_ft": "148", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "scheduled_service": "no", + "gps_code": "LFPA" + }, + { + "id": "4183", + "ident": "LFPB", + "type": "medium_airport", + "name": "Paris-Le Bourget Airport", + "latitude_deg": "48.969398498535156", + "longitude_deg": "2.441390037536621", + "elevation_ft": "218", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "LFPB", + "iata_code": "LBG", + "home_link": "http://www.aeroportsdeparis.fr/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Le_Bourget_Airport", + "keywords": "PAR" + }, + { + "id": "4184", + "ident": "LFPC", + "type": "medium_airport", + "name": "Creil Air Base", + "latitude_deg": "49.253501892089844", + "longitude_deg": "2.5191400051116943", + "elevation_ft": "291", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Creil", + "scheduled_service": "no", + "gps_code": "LFPC", + "iata_code": "CSF", + "keywords": "BA 110" + }, + { + "id": "28971", + "ident": "LFPD", + "type": "small_airport", + "name": "Aérodrome de Bernay-Saint-Martin", + "latitude_deg": "49.102798", + "longitude_deg": "0.566667", + "elevation_ft": "554", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "scheduled_service": "no", + "gps_code": "LFPD" + }, + { + "id": "28972", + "ident": "LFPE", + "type": "small_airport", + "name": "Aérodrome de Meaux-Esbly", + "latitude_deg": "48.927799", + "longitude_deg": "2.83528", + "elevation_ft": "217", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "scheduled_service": "no", + "gps_code": "LFPE" + }, + { + "id": "28973", + "ident": "LFPF", + "type": "small_airport", + "name": "Aérodrome de Beynes - Thiverval", + "latitude_deg": "48.843601", + "longitude_deg": "1.90889", + "elevation_ft": "371", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "scheduled_service": "no", + "gps_code": "LFPF" + }, + { + "id": "4185", + "ident": "LFPG", + "type": "large_airport", + "name": "Charles de Gaulle International Airport", + "latitude_deg": "49.012798", + "longitude_deg": "2.55", + "elevation_ft": "392", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Paris", + "scheduled_service": "yes", + "gps_code": "LFPG", + "iata_code": "CDG", + "home_link": "http://www.aeroportsdeparis.fr/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Charles_de_Gaulle_Airport", + "keywords": "PAR, Aéroport Roissy-Charles de Gaulle, Roissy Airport" + }, + { + "id": "28974", + "ident": "LFPH", + "type": "small_airport", + "name": "Aérodrome de Chelles-le-Pin", + "latitude_deg": "48.8978", + "longitude_deg": "2.6075", + "elevation_ft": "207", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "LFPH" + }, + { + "id": "30241", + "ident": "LFPI", + "type": "heliport", + "name": "Paris Issy-les-Moulineaux Heliport", + "latitude_deg": "48.83330154418945", + "longitude_deg": "2.272779941558838", + "elevation_ft": "112", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Issy-les-Moulineaux", + "scheduled_service": "no", + "gps_code": "LFPI", + "iata_code": "JDP" + }, + { + "id": "4186", + "ident": "LFPK", + "type": "small_airport", + "name": "Aérodrome de Coulommiers - Voisins", + "latitude_deg": "48.8377", + "longitude_deg": "3.01612", + "elevation_ft": "470", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Coulommiers/Voisins", + "scheduled_service": "no", + "gps_code": "LFPK" + }, + { + "id": "28975", + "ident": "LFPL", + "type": "small_airport", + "name": "Lognes Emerainville", + "latitude_deg": "48.821028", + "longitude_deg": "2.625967", + "elevation_ft": "359", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "LFPL" + }, + { + "id": "4187", + "ident": "LFPM", + "type": "medium_airport", + "name": "Melun-Villaroche Air Base", + "latitude_deg": "48.604698181152344", + "longitude_deg": "2.6711199283599854", + "elevation_ft": "302", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Melun/Villaroche", + "scheduled_service": "no", + "gps_code": "LFPM" + }, + { + "id": "4188", + "ident": "LFPN", + "type": "medium_airport", + "name": "Toussus-le-Noble Airport", + "latitude_deg": "48.75189971923828", + "longitude_deg": "2.1061899662017822", + "elevation_ft": "538", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Toussus-le-Noble", + "scheduled_service": "no", + "gps_code": "LFPN", + "iata_code": "TNF" + }, + { + "id": "4189", + "ident": "LFPO", + "type": "large_airport", + "name": "Paris-Orly Airport", + "latitude_deg": "48.7233333", + "longitude_deg": "2.3794444", + "elevation_ft": "291", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Paris", + "scheduled_service": "yes", + "gps_code": "LFPO", + "iata_code": "ORY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orly_Airport_(Paris)", + "keywords": "PAR" + }, + { + "id": "28976", + "ident": "LFPP", + "type": "small_airport", + "name": "Le Plessis-Belleville Airfield", + "latitude_deg": "49.108837", + "longitude_deg": "2.736138", + "elevation_ft": "387", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Le Plessis-Belleville", + "scheduled_service": "no", + "gps_code": "LFPP", + "wikipedia_link": "https://fr.wikipedia.org/wiki/A%C3%A9rodrome_du_Plessis-Belleville" + }, + { + "id": "28977", + "ident": "LFPQ", + "type": "small_airport", + "name": "Aérodrome de Fontenay Trésigny", + "latitude_deg": "48.707199", + "longitude_deg": "2.90444", + "elevation_ft": "371", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "LFPQ" + }, + { + "id": "29929", + "ident": "LFPR", + "type": "closed", + "name": "Guyancourt Airport", + "latitude_deg": "48.76029968261719", + "longitude_deg": "2.0625", + "elevation_ft": "541", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Guyancourt", + "scheduled_service": "no", + "gps_code": "LFPR", + "wikipedia_link": "http://fr.wikipedia.org/wiki/A%C3%A9rodrome_de_Guyancourt" + }, + { + "id": "4190", + "ident": "LFPT", + "type": "medium_airport", + "name": "Aérodrome de Pontoise - Cormeilles en Vexin", + "latitude_deg": "49.096667", + "longitude_deg": "2.040833", + "elevation_ft": "325", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Cormeilles-en-Vexin", + "scheduled_service": "no", + "gps_code": "LFPT", + "iata_code": "POX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pontoise_%E2%80%93_Cormeilles_Aerodrome" + }, + { + "id": "28978", + "ident": "LFPU", + "type": "small_airport", + "name": "Moret Episy Airfield", + "latitude_deg": "48.3419", + "longitude_deg": "2.79944", + "elevation_ft": "253", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Pontoise", + "scheduled_service": "no", + "gps_code": "LFPU" + }, + { + "id": "4191", + "ident": "LFPV", + "type": "medium_airport", + "name": "Villacoublay-Vélizy (BA 107) Air Base", + "latitude_deg": "48.7741667", + "longitude_deg": "2.1916667", + "elevation_ft": "584", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "municipality": "Villacoublay/Vélizy", + "scheduled_service": "no", + "gps_code": "LFPV", + "iata_code": "VIY", + "wikipedia_link": "https://en.wikipedia.org/wiki/V%C3%A9lizy_%E2%80%93_Villacoublay_Air_Base" + }, + { + "id": "28979", + "ident": "LFPX", + "type": "small_airport", + "name": "Chavenay Villepreux Airfield", + "latitude_deg": "48.843601", + "longitude_deg": "1.98222", + "elevation_ft": "426", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "scheduled_service": "no", + "gps_code": "LFPX" + }, + { + "id": "28980", + "ident": "LFPY", + "type": "closed", + "name": "Brétigny sur Orge Air Base", + "latitude_deg": "48.5961", + "longitude_deg": "2.33222", + "elevation_ft": "270", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "scheduled_service": "no", + "gps_code": "LFPY" + }, + { + "id": "28981", + "ident": "LFPZ", + "type": "small_airport", + "name": "Aérodrome de Saint-Cyr-l'École", + "latitude_deg": "48.810355", + "longitude_deg": "2.073197", + "elevation_ft": "373", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "scheduled_service": "no", + "gps_code": "LFPZ", + "wikipedia_link": "https://fr.wikipedia.org/wiki/A%C3%A9rodrome_de_Saint-Cyr-l%27%C3%89cole" + }, + { + "id": "318175", + "ident": "LFQ", + "type": "small_airport", + "name": "Linfen Yaomiao Airport", + "latitude_deg": "36.041083", + "longitude_deg": "111.491683", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-14", + "municipality": "Linfen (Yaodu)", + "scheduled_service": "no" + }, + { + "id": "4192", + "ident": "LFQA", + "type": "small_airport", + "name": "Aérodrome de Reims Prunay", + "latitude_deg": "49.208698", + "longitude_deg": "4.15658", + "elevation_ft": "313", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Reims/Prunay", + "scheduled_service": "no", + "gps_code": "LFQA" + }, + { + "id": "4193", + "ident": "LFQB", + "type": "medium_airport", + "name": "Troyes-Barberey Airport", + "latitude_deg": "48.322102", + "longitude_deg": "4.0167", + "elevation_ft": "388", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Troyes/Barberey", + "scheduled_service": "no", + "gps_code": "LFQB", + "home_link": "http://www.troyes.aeroport.fr/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Troyes_%E2%80%93_Barberey_Airport", + "keywords": "QYR" + }, + { + "id": "4194", + "ident": "LFQC", + "type": "small_airport", + "name": "Lunéville-Croismare Airfield", + "latitude_deg": "48.5933", + "longitude_deg": "6.54346", + "elevation_ft": "790", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Lunéville/Croismare", + "scheduled_service": "no", + "gps_code": "LFQC" + }, + { + "id": "28982", + "ident": "LFQD", + "type": "small_airport", + "name": "Arras Roclincourt Airfield", + "latitude_deg": "50.323898", + "longitude_deg": "2.80278", + "elevation_ft": "338", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Saint-laurent-blangy", + "scheduled_service": "no", + "gps_code": "LFQD" + }, + { + "id": "4195", + "ident": "LFQE", + "type": "medium_airport", + "name": "Étain-Rouvres Air Base", + "latitude_deg": "49.226898193359375", + "longitude_deg": "5.672220230102539", + "elevation_ft": "770", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Étain/Rouvres", + "scheduled_service": "no", + "gps_code": "LFQE" + }, + { + "id": "4196", + "ident": "LFQF", + "type": "small_airport", + "name": "Autun-Bellevue Airfield", + "latitude_deg": "46.9673", + "longitude_deg": "4.26057", + "elevation_ft": "997", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Autun/Bellevue", + "scheduled_service": "no", + "gps_code": "LFQF" + }, + { + "id": "4197", + "ident": "LFQG", + "type": "medium_airport", + "name": "Nevers-Fourchambault Airport", + "latitude_deg": "47.002601623535156", + "longitude_deg": "3.1133298873901367", + "elevation_ft": "602", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Nevers/Fourchambault", + "scheduled_service": "no", + "gps_code": "LFQG", + "iata_code": "NVS" + }, + { + "id": "28983", + "ident": "LFQH", + "type": "small_airport", + "name": "Châtillon Sur Seine Airfield", + "latitude_deg": "47.843924", + "longitude_deg": "4.580045", + "elevation_ft": "905", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "gps_code": "LFQH" + }, + { + "id": "4198", + "ident": "LFQI", + "type": "closed", + "name": "Cambrai-Épinoy (BA 103) Air Base", + "latitude_deg": "50.221802", + "longitude_deg": "3.15424", + "elevation_ft": "257", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Cambrai/Épinoy", + "scheduled_service": "no", + "gps_code": "LFQI" + }, + { + "id": "4199", + "ident": "LFQJ", + "type": "medium_airport", + "name": "Maubeuge-Élesmes Airfield", + "latitude_deg": "50.310501", + "longitude_deg": "4.03312", + "elevation_ft": "452", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Maubeuge/Élesmes", + "scheduled_service": "no", + "gps_code": "LFQJ" + }, + { + "id": "28984", + "ident": "LFQK", + "type": "small_airport", + "name": "Aérodrome de Châlons - Écury-sur-Coole", + "latitude_deg": "48.906101", + "longitude_deg": "4.35417", + "elevation_ft": "319", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFQK" + }, + { + "id": "28985", + "ident": "LFQL", + "type": "small_airport", + "name": "Lens Benifontaine Airfield", + "latitude_deg": "50.4664", + "longitude_deg": "2.81972", + "elevation_ft": "167", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "scheduled_service": "no", + "gps_code": "LFQL" + }, + { + "id": "4200", + "ident": "LFQM", + "type": "small_airport", + "name": "Aérodrome de Besançon-La Vèze", + "latitude_deg": "47.2066", + "longitude_deg": "6.083681", + "elevation_ft": "1271", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Besançon/La Vèze", + "scheduled_service": "no", + "gps_code": "LFQM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Besan%C3%A7on_%E2%80%93_La_V%C3%A8ze_Aerodrome", + "keywords": "QBQ" + }, + { + "id": "28986", + "ident": "LFQN", + "type": "small_airport", + "name": "Saint Omer Wizernes Airfield", + "latitude_deg": "50.7294444", + "longitude_deg": "2.2358333", + "elevation_ft": "249", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Saint Omer", + "scheduled_service": "no", + "gps_code": "LFQN" + }, + { + "id": "28987", + "ident": "LFQO", + "type": "small_airport", + "name": "Lille/Marcq-en-Baroeul Airfield", + "latitude_deg": "50.687199", + "longitude_deg": "3.07556", + "elevation_ft": "69", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Bondues", + "scheduled_service": "no", + "gps_code": "LFQO" + }, + { + "id": "4201", + "ident": "LFQP", + "type": "medium_airport", + "name": "Phalsbourg-Bourscheid Air Base", + "latitude_deg": "48.7680556", + "longitude_deg": "7.205", + "elevation_ft": "1017", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Phalsbourg/Bourscheid", + "scheduled_service": "no", + "gps_code": "LFQP" + }, + { + "id": "4202", + "ident": "LFQQ", + "type": "medium_airport", + "name": "Lille-Lesquin Airport", + "latitude_deg": "50.563332", + "longitude_deg": "3.086886", + "elevation_ft": "157", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Lille/Lesquin", + "scheduled_service": "yes", + "gps_code": "LFQQ", + "iata_code": "LIL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lille_Lesquin_International_Airport" + }, + { + "id": "28988", + "ident": "LFQR", + "type": "closed", + "name": "Romilly Sur Seine Airfield", + "latitude_deg": "48.500599", + "longitude_deg": "3.76333", + "elevation_ft": "267", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFQR" + }, + { + "id": "28989", + "ident": "LFQS", + "type": "small_airport", + "name": "Vitry en Artois Airfield", + "latitude_deg": "50.338299", + "longitude_deg": "2.99333", + "elevation_ft": "174", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "scheduled_service": "no", + "gps_code": "LFQS" + }, + { + "id": "4203", + "ident": "LFQT", + "type": "medium_airport", + "name": "Merville-Calonne Airport", + "latitude_deg": "50.61840057373047", + "longitude_deg": "2.642240047454834", + "elevation_ft": "61", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "municipality": "Merville/Calonne", + "scheduled_service": "no", + "gps_code": "LFQT", + "iata_code": "HZB" + }, + { + "id": "28990", + "ident": "LFQU", + "type": "small_airport", + "name": "Sarre Union Airfield", + "latitude_deg": "48.951401", + "longitude_deg": "7.07778", + "elevation_ft": "837", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFQU" + }, + { + "id": "4204", + "ident": "LFQV", + "type": "medium_airport", + "name": "Charleville-Mézières Ardennes-Etienne Riché Airfield", + "latitude_deg": "49.783901", + "longitude_deg": "4.64708", + "elevation_ft": "492", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Charleville-Mézières", + "scheduled_service": "no", + "gps_code": "LFQV" + }, + { + "id": "4205", + "ident": "LFQW", + "type": "medium_airport", + "name": "Aérodrome de Vesoul-Frotey", + "latitude_deg": "47.6376", + "longitude_deg": "6.20392", + "elevation_ft": "1249", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Vesoul/Frotey", + "scheduled_service": "no", + "gps_code": "LFQW" + }, + { + "id": "28991", + "ident": "LFQX", + "type": "small_airport", + "name": "Aérodrome de Juvancourt", + "latitude_deg": "48.115002", + "longitude_deg": "4.82083", + "elevation_ft": "1145", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFQX" + }, + { + "id": "28992", + "ident": "LFQY", + "type": "small_airport", + "name": "Saverne Steinbourg Airfield", + "latitude_deg": "48.753392", + "longitude_deg": "7.425402", + "elevation_ft": "630", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Saverne", + "scheduled_service": "no", + "gps_code": "LFQY", + "home_link": "http://aeroclub.saverne.pagesperso-orange.fr/", + "wikipedia_link": "https://fr.wikipedia.org/wiki/A%C3%A9rodrome_de_Saverne-Steinbourg" + }, + { + "id": "28993", + "ident": "LFQZ", + "type": "small_airport", + "name": "Dieuze Guéblange Airfield", + "latitude_deg": "48.775299", + "longitude_deg": "6.71528", + "elevation_ft": "722", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFQZ" + }, + { + "id": "28994", + "ident": "LFRA", + "type": "closed", + "name": "Aérodrome d'Angers Avrillé", + "latitude_deg": "47.499199", + "longitude_deg": "-0.572778", + "elevation_ft": "187", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Angers", + "scheduled_service": "no", + "gps_code": "LFRA" + }, + { + "id": "4206", + "ident": "LFRB", + "type": "medium_airport", + "name": "Brest Bretagne Airport", + "latitude_deg": "48.447898864746094", + "longitude_deg": "-4.418540000915527", + "elevation_ft": "325", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Brest/Guipavas", + "scheduled_service": "yes", + "gps_code": "LFRB", + "iata_code": "BES", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brest_Bretagne_Airport" + }, + { + "id": "4207", + "ident": "LFRC", + "type": "medium_airport", + "name": "Cherbourg-Maupertus Airport", + "latitude_deg": "49.65010070800781", + "longitude_deg": "-1.4702800512313843", + "elevation_ft": "459", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Cherbourg/Maupertus", + "scheduled_service": "yes", + "gps_code": "LFRC", + "iata_code": "CER", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cherbourg_-_Maupertus_Airport" + }, + { + "id": "4208", + "ident": "LFRD", + "type": "medium_airport", + "name": "Dinard-Pleurtuit-Saint-Malo Airport", + "latitude_deg": "48.58769989013672", + "longitude_deg": "-2.0799601078033447", + "elevation_ft": "219", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Dinard/Pleurtuit/Saint-Malo", + "scheduled_service": "yes", + "gps_code": "LFRD", + "iata_code": "DNR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dinard_-_Pleurtuit_-_Saint-Malo_Airport" + }, + { + "id": "4209", + "ident": "LFRE", + "type": "medium_airport", + "name": "La Baule-Escoublac Airport", + "latitude_deg": "47.289398193359375", + "longitude_deg": "-2.3463900089263916", + "elevation_ft": "105", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "La Baule-Escoublac", + "scheduled_service": "no", + "gps_code": "LFRE", + "iata_code": "LBY" + }, + { + "id": "4210", + "ident": "LFRF", + "type": "medium_airport", + "name": "Granville Airport", + "latitude_deg": "48.88309860229492", + "longitude_deg": "-1.564170002937317", + "elevation_ft": "45", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Granville", + "scheduled_service": "no", + "gps_code": "LFRF", + "iata_code": "GFR" + }, + { + "id": "4211", + "ident": "LFRG", + "type": "medium_airport", + "name": "Deauville-Saint-Gatien Airport", + "latitude_deg": "49.365299", + "longitude_deg": "0.154306", + "elevation_ft": "479", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Deauville", + "scheduled_service": "yes", + "gps_code": "LFRG", + "iata_code": "DOL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Deauville_-_Saint-Gatien_Airport" + }, + { + "id": "4212", + "ident": "LFRH", + "type": "medium_airport", + "name": "Lorient South Brittany (Bretagne Sud) Airport", + "latitude_deg": "47.76060104370117", + "longitude_deg": "-3.440000057220459", + "elevation_ft": "160", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Lorient/Lann/Bihoué", + "scheduled_service": "yes", + "gps_code": "LFRH", + "iata_code": "LRT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lorient_South_Brittany_Airport" + }, + { + "id": "4213", + "ident": "LFRI", + "type": "medium_airport", + "name": "La Roche-sur-Yon Airport", + "latitude_deg": "46.701900482177734", + "longitude_deg": "-1.3786300420761108", + "elevation_ft": "299", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "La Roche-sur-Yon/Les Ajoncs", + "scheduled_service": "no", + "gps_code": "LFRI", + "iata_code": "EDM" + }, + { + "id": "4214", + "ident": "LFRJ", + "type": "medium_airport", + "name": "Landivisiau Air Base", + "latitude_deg": "48.53030014038086", + "longitude_deg": "-4.151639938354492", + "elevation_ft": "348", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Landivisiau", + "scheduled_service": "no", + "gps_code": "LFRJ", + "iata_code": "LDV" + }, + { + "id": "4215", + "ident": "LFRK", + "type": "medium_airport", + "name": "Caen-Carpiquet Airport", + "latitude_deg": "49.173302", + "longitude_deg": "-0.45", + "elevation_ft": "256", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Caen/Carpiquet", + "scheduled_service": "yes", + "gps_code": "LFRK", + "iata_code": "CFR", + "home_link": "https://www.caen.aeroport.fr/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Caen_-_Carpiquet_Airport" + }, + { + "id": "4216", + "ident": "LFRL", + "type": "medium_airport", + "name": "Lanvéoc-Poulmic Air Base", + "latitude_deg": "48.281700134277344", + "longitude_deg": "-4.4450201988220215", + "elevation_ft": "287", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Lanvéoc/Poulmic", + "scheduled_service": "no", + "gps_code": "LFRL" + }, + { + "id": "4217", + "ident": "LFRM", + "type": "medium_airport", + "name": "Le Mans-Arnage Airport", + "latitude_deg": "47.94860076904297", + "longitude_deg": "0.20166699588298798", + "elevation_ft": "194", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Le Mans/Arnage", + "scheduled_service": "no", + "gps_code": "LFRM", + "iata_code": "LME" + }, + { + "id": "4218", + "ident": "LFRN", + "type": "medium_airport", + "name": "Rennes-Saint-Jacques Airport", + "latitude_deg": "48.0695", + "longitude_deg": "-1.73479", + "elevation_ft": "124", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Rennes/Saint-Jacques", + "scheduled_service": "yes", + "gps_code": "LFRN", + "iata_code": "RNS", + "home_link": "http://www.rennes.aeroport.fr/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rennes_-_Saint-Jacques_Airport" + }, + { + "id": "4219", + "ident": "LFRO", + "type": "medium_airport", + "name": "Lannion-Côte de Granit Airport", + "latitude_deg": "48.754398", + "longitude_deg": "-3.47166", + "elevation_ft": "290", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Lannion", + "scheduled_service": "no", + "gps_code": "LFRO", + "iata_code": "LAI", + "home_link": "http://www.lannion.aeroport.fr", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lannion_%E2%80%93_C%C3%B4te_de_Granit_Airport", + "keywords": "Servel Airport" + }, + { + "id": "28995", + "ident": "LFRP", + "type": "small_airport", + "name": "Ploërmel Loyat Airfield", + "latitude_deg": "48.0028", + "longitude_deg": "-2.37722", + "elevation_ft": "236", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Rennes", + "scheduled_service": "no", + "gps_code": "LFRP" + }, + { + "id": "4220", + "ident": "LFRQ", + "type": "medium_airport", + "name": "Quimper-Cornouaille Airport", + "latitude_deg": "47.974998474121094", + "longitude_deg": "-4.167789936065674", + "elevation_ft": "297", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Quimper/Pluguffan", + "scheduled_service": "yes", + "gps_code": "LFRQ", + "iata_code": "UIP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quimper_-_Cornouaille_Airport" + }, + { + "id": "4221", + "ident": "LFRS", + "type": "medium_airport", + "name": "Nantes Atlantique Airport", + "latitude_deg": "47.153198242200006", + "longitude_deg": "-1.61073005199", + "elevation_ft": "90", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Nantes", + "scheduled_service": "yes", + "gps_code": "LFRS", + "iata_code": "NTE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nantes_Atlantique_Airport" + }, + { + "id": "4222", + "ident": "LFRT", + "type": "medium_airport", + "name": "Saint-Brieuc-Armor Airport", + "latitude_deg": "48.5378", + "longitude_deg": "-2.85444", + "elevation_ft": "453", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Saint-Brieuc/Armor", + "scheduled_service": "no", + "gps_code": "LFRT", + "iata_code": "SBK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saint-Brieuc_%E2%80%93_Armor_Airport" + }, + { + "id": "4223", + "ident": "LFRU", + "type": "medium_airport", + "name": "Morlaix-Ploujean Airport", + "latitude_deg": "48.6031990051", + "longitude_deg": "-3.81577992439", + "elevation_ft": "272", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Morlaix/Ploujean", + "scheduled_service": "no", + "gps_code": "LFRU", + "iata_code": "MXN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Morlaix_%E2%80%93_Ploujean_Airport" + }, + { + "id": "4224", + "ident": "LFRV", + "type": "medium_airport", + "name": "Vannes-Meucon Airport", + "latitude_deg": "47.72330093383789", + "longitude_deg": "-2.718559980392456", + "elevation_ft": "446", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Vannes/Meucon", + "scheduled_service": "no", + "gps_code": "LFRV", + "iata_code": "VNE" + }, + { + "id": "28996", + "ident": "LFRW", + "type": "small_airport", + "name": "Le Val St Père", + "latitude_deg": "48.661701", + "longitude_deg": "-1.40444", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Avranches", + "scheduled_service": "no", + "gps_code": "LFRW" + }, + { + "id": "4225", + "ident": "LFRZ", + "type": "medium_airport", + "name": "Saint-Nazaire-Montoir Airport", + "latitude_deg": "47.3105556", + "longitude_deg": "-2.1566667", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "municipality": "Saint-Nazaire/Montoir", + "scheduled_service": "no", + "gps_code": "LFRZ", + "iata_code": "SNR" + }, + { + "id": "28997", + "ident": "LFSA", + "type": "small_airport", + "name": "Besançon–Thise Airfield", + "latitude_deg": "47.2747", + "longitude_deg": "6.08417", + "elevation_ft": "807", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "gps_code": "LFSA", + "wikipedia_link": "http://fr.wikipedia.org/wiki/A%C3%A9rodrome_de_Besan%C3%A7on_-_Thise" + }, + { + "id": "4226", + "ident": "LFSB", + "type": "large_airport", + "name": "EuroAirport Basel-Mulhouse-Freiburg Airport", + "latitude_deg": "47.59", + "longitude_deg": "7.529167", + "elevation_ft": "885", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Bâle/Mulhouse", + "scheduled_service": "yes", + "gps_code": "LFSB", + "iata_code": "BSL", + "home_link": "http://www.euroairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/EuroAirport_Basel-Mulhouse-Freiburg", + "keywords": "MLH, EAP" + }, + { + "id": "4227", + "ident": "LFSC", + "type": "closed", + "name": "Colmar-Meyenheim Air Base", + "latitude_deg": "47.922000885", + "longitude_deg": "7.39967012405", + "elevation_ft": "693", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Colmar/Meyenheim", + "scheduled_service": "no", + "gps_code": "LFSC", + "keywords": "BA 132" + }, + { + "id": "4228", + "ident": "LFSD", + "type": "medium_airport", + "name": "Dijon-Bourgogne Airport", + "latitude_deg": "47.268902", + "longitude_deg": "5.09", + "elevation_ft": "726", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Dijon/Longvic", + "scheduled_service": "yes", + "gps_code": "LFSD", + "iata_code": "DIJ", + "home_link": "http://www.aeroport.dijon.cci.fr/", + "wikipedia_link": "https://fr.wikipedia.org/wiki/A%C3%A9roport_de_Dijon-Bourgogne", + "keywords": "BA 102" + }, + { + "id": "28998", + "ident": "LFSE", + "type": "small_airport", + "name": "Épinal Dogneville Airfield", + "latitude_deg": "48.211899", + "longitude_deg": "6.44917", + "elevation_ft": "1040", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFSE" + }, + { + "id": "4229", + "ident": "LFSF", + "type": "closed", + "name": "Metz-Frescaty (BA 128) Air Base", + "latitude_deg": "49.071701", + "longitude_deg": "6.13167", + "elevation_ft": "629", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Metz/Frescaty", + "scheduled_service": "no", + "gps_code": "LFSF", + "iata_code": "MZM" + }, + { + "id": "4230", + "ident": "LFSG", + "type": "medium_airport", + "name": "Épinal-Mirecourt Airport", + "latitude_deg": "48.325001", + "longitude_deg": "6.06998", + "elevation_ft": "1084", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Épinal/Mirecourt", + "scheduled_service": "no", + "gps_code": "LFSG", + "iata_code": "EPL", + "home_link": "http://www.epinal-mirecourt.aeroport.fr", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%89pinal_%E2%80%93_Mirecourt_Airport" + }, + { + "id": "4231", + "ident": "LFSH", + "type": "small_airport", + "name": "Haguenau Airfield", + "latitude_deg": "48.7943", + "longitude_deg": "7.81761", + "elevation_ft": "491", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Haguenau", + "scheduled_service": "no", + "gps_code": "LFSH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Haguenau_Airport" + }, + { + "id": "4232", + "ident": "LFSI", + "type": "medium_airport", + "name": "Saint-Dizier-Robinson (BA 113) Air Base", + "latitude_deg": "48.63600158691406", + "longitude_deg": "4.899419784545898", + "elevation_ft": "458", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Saint-Dizier/Robinson", + "scheduled_service": "no", + "gps_code": "LFSI" + }, + { + "id": "28999", + "ident": "LFSJ", + "type": "small_airport", + "name": "Sédan Douzy Airfield", + "latitude_deg": "49.659698", + "longitude_deg": "5.03778", + "elevation_ft": "512", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFSJ" + }, + { + "id": "29000", + "ident": "LFSK", + "type": "small_airport", + "name": "Vitry Le François Vauclerc Airfield", + "latitude_deg": "48.7033", + "longitude_deg": "4.68444", + "elevation_ft": "410", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFSK" + }, + { + "id": "29001", + "ident": "LFSL", + "type": "medium_airport", + "name": "Brive-Souillac", + "latitude_deg": "45.039722", + "longitude_deg": "1.485556", + "elevation_ft": "1016", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "municipality": "Brive la Gaillarde", + "scheduled_service": "yes", + "gps_code": "LFSL", + "iata_code": "BVE", + "home_link": "http://www.aeroport-brive-vallee-dordogne.fr", + "wikipedia_link": "https://fr.wikipedia.org/wiki/Aéroport_de_Brive-Souillac", + "keywords": "LFSL" + }, + { + "id": "4233", + "ident": "LFSM", + "type": "medium_airport", + "name": "Montbéliard-Courcelles Airfield", + "latitude_deg": "47.487", + "longitude_deg": "6.79054", + "elevation_ft": "1041", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Montbéliard/Courcelles", + "scheduled_service": "no", + "gps_code": "LFSM" + }, + { + "id": "4234", + "ident": "LFSN", + "type": "medium_airport", + "name": "Nancy-Essey Airport", + "latitude_deg": "48.692100524902344", + "longitude_deg": "6.230460166931152", + "elevation_ft": "751", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Nancy/Essey", + "scheduled_service": "no", + "gps_code": "LFSN", + "iata_code": "ENC" + }, + { + "id": "4235", + "ident": "LFSO", + "type": "medium_airport", + "name": "Nancy-Ochey (BA 133) Air Base", + "latitude_deg": "48.583099365234375", + "longitude_deg": "5.954999923706055", + "elevation_ft": "1106", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Nancy/Ochey", + "scheduled_service": "no", + "gps_code": "LFSO" + }, + { + "id": "4236", + "ident": "LFSP", + "type": "small_airport", + "name": "Pontarlier Airfield", + "latitude_deg": "46.903999", + "longitude_deg": "6.32737", + "elevation_ft": "2683", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Pontarlier", + "scheduled_service": "no", + "gps_code": "LFSP" + }, + { + "id": "30786", + "ident": "LFSQ", + "type": "closed", + "name": "Aéroparc de Belfort-Fontaine", + "latitude_deg": "47.655602", + "longitude_deg": "7.01083", + "elevation_ft": "1208", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Belfort", + "scheduled_service": "no", + "gps_code": "LFSQ", + "iata_code": "BOR" + }, + { + "id": "4237", + "ident": "LFSR", + "type": "closed", + "name": "Reims-Champagne (BA 112) Air Base", + "latitude_deg": "49.310001", + "longitude_deg": "4.05", + "elevation_ft": "312", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Reims/Champagne", + "scheduled_service": "no", + "gps_code": "LFSR", + "iata_code": "RHE" + }, + { + "id": "315432", + "ident": "LFSS", + "type": "small_airport", + "name": "Saint Sulpice des Landes", + "latitude_deg": "47.7916667", + "longitude_deg": "-1.643611", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "scheduled_service": "no", + "gps_code": "LFSS" + }, + { + "id": "4238", + "ident": "LFST", + "type": "medium_airport", + "name": "Strasbourg Airport", + "latitude_deg": "48.538299560546875", + "longitude_deg": "7.628230094909668", + "elevation_ft": "505", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Strasbourg", + "scheduled_service": "yes", + "gps_code": "LFST", + "iata_code": "SXB", + "home_link": "http://www.strasbourg.aeroport.fr/E/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Strasbourg_Airport", + "keywords": "BA 124" + }, + { + "id": "29002", + "ident": "LFSU", + "type": "small_airport", + "name": "Langres Rolampont Airfield", + "latitude_deg": "47.964804", + "longitude_deg": "5.293663", + "elevation_ft": "1378", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Langres", + "scheduled_service": "no", + "gps_code": "LFSU", + "wikipedia_link": "https://fr.wikipedia.org/wiki/A%C3%A9rodrome_de_Langres_-_Rolampont" + }, + { + "id": "29003", + "ident": "LFSV", + "type": "small_airport", + "name": "Pont St Vincent Airfield", + "latitude_deg": "48.601398", + "longitude_deg": "6.05778", + "elevation_ft": "1306", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Pont Saint-Vincent", + "scheduled_service": "no", + "gps_code": "LFSV", + "home_link": "http://acam54.fr/" + }, + { + "id": "29004", + "ident": "LFSW", + "type": "small_airport", + "name": "Épernay Plivot Airfield", + "latitude_deg": "49.004461", + "longitude_deg": "4.085342", + "elevation_ft": "289", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Épernay", + "scheduled_service": "no", + "gps_code": "LFSW", + "home_link": "http://www.aeroclub-epernay.com/", + "wikipedia_link": "https://fr.wikipedia.org/wiki/A%C3%A9rodrome_d%27%C3%89pernay_-_Plivot" + }, + { + "id": "4239", + "ident": "LFSX", + "type": "medium_airport", + "name": "Luxeuil-Saint-Sauveur (BA 116) Air Base", + "latitude_deg": "47.7830556", + "longitude_deg": "6.36416667", + "elevation_ft": "913", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Luxeuil/Saint-Sauveur", + "scheduled_service": "no", + "gps_code": "LFSX" + }, + { + "id": "29777", + "ident": "LFSY", + "type": "small_airport", + "name": "Cessey Baigneux les Juifs Airfield", + "latitude_deg": "47.609722", + "longitude_deg": "4.6175", + "elevation_ft": "1175", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFSY" + }, + { + "id": "29005", + "ident": "LFSZ", + "type": "closed", + "name": "Champ de Courses Airfield", + "latitude_deg": "48.2239", + "longitude_deg": "5.93528", + "elevation_ft": "1076", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Vittel", + "scheduled_service": "no", + "gps_code": "LFSZ", + "iata_code": "VTL" + }, + { + "id": "4240", + "ident": "LFTF", + "type": "small_airport", + "name": "Aérodrome de Cuers-Pierrefeu", + "latitude_deg": "43.247799", + "longitude_deg": "6.1267", + "elevation_ft": "266", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Cuers/Pierrefeu", + "scheduled_service": "no", + "gps_code": "LFTF" + }, + { + "id": "4241", + "ident": "LFTH", + "type": "medium_airport", + "name": "Toulon-Hyères Airport", + "latitude_deg": "43.0973014832", + "longitude_deg": "6.14602994919", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Toulon/Hyères/Le Palyvestre", + "scheduled_service": "yes", + "gps_code": "LFTH", + "iata_code": "TLN", + "home_link": "http://toulon-hyeres.aeroport.fr/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toulon-Hy%C3%A8res_Airport" + }, + { + "id": "29006", + "ident": "LFTM", + "type": "small_airport", + "name": "Serres - La Bâtie-Montsaléon Airfield", + "latitude_deg": "44.458302", + "longitude_deg": "5.72833", + "elevation_ft": "2345", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "scheduled_service": "no", + "gps_code": "LFTM" + }, + { + "id": "29007", + "ident": "LFTN", + "type": "small_airport", + "name": "La Grand'combe Airfield", + "latitude_deg": "44.2444", + "longitude_deg": "4.01222", + "elevation_ft": "1647", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "gps_code": "LFTN" + }, + { + "id": "316329", + "ident": "LFTO", + "type": "medium_airport", + "name": "Rize–Artvin Airport", + "latitude_deg": "41.179625", + "longitude_deg": "40.850796", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-53", + "municipality": "Rize", + "scheduled_service": "yes", + "gps_code": "LTFO", + "iata_code": "RZV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rize–Artvin_Airport" + }, + { + "id": "29008", + "ident": "LFTP", + "type": "small_airport", + "name": "Puimoisson Airfield", + "latitude_deg": "43.86889", + "longitude_deg": "6.16278", + "elevation_ft": "2523", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "scheduled_service": "no", + "gps_code": "LFTP", + "home_link": "http://www.puivolavoile.com/?lang=en" + }, + { + "id": "29009", + "ident": "LFTQ", + "type": "small_airport", + "name": "Châteaubriant Pouancé Airfield", + "latitude_deg": "47.739562", + "longitude_deg": "-1.189519", + "elevation_ft": "322", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PDL", + "scheduled_service": "no", + "gps_code": "LFTQ" + }, + { + "id": "29010", + "ident": "LFTR", + "type": "heliport", + "name": "Toulon Navy Air Base", + "latitude_deg": "43.082699", + "longitude_deg": "5.93382", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Hyères", + "scheduled_service": "no", + "gps_code": "LFTR", + "keywords": "CCMAR, CCMAR Mediterranee" + }, + { + "id": "29011", + "ident": "LFTU", + "type": "closed", + "name": "Fréjus Airport", + "latitude_deg": "43.4175", + "longitude_deg": "6.7357", + "elevation_ft": "33", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Fréjus", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Frejus_Airport", + "keywords": "FRJ, LFTU" + }, + { + "id": "4242", + "ident": "LFTW", + "type": "medium_airport", + "name": "Nîmes-Arles-Camargue Airport", + "latitude_deg": "43.75740051269531", + "longitude_deg": "4.4163498878479", + "elevation_ft": "309", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "municipality": "Nîmes/Garons", + "scheduled_service": "yes", + "gps_code": "LFTW", + "iata_code": "FNI", + "wikipedia_link": "https://en.wikipedia.org/wiki/N%C3%AEmes-Arles-Camargue_Airport" + }, + { + "id": "4243", + "ident": "LFTZ", + "type": "small_airport", + "name": "La Môle Airport", + "latitude_deg": "43.205399", + "longitude_deg": "6.482", + "elevation_ft": "59", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "La Môle", + "scheduled_service": "yes", + "gps_code": "LFTZ", + "iata_code": "LTT", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_M%C3%B4le_%E2%80%93_Saint-Tropez_Airport" + }, + { + "id": "4244", + "ident": "LFVM", + "type": "medium_airport", + "name": "Miquelon Airport", + "latitude_deg": "47.095501", + "longitude_deg": "-56.380299", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "PM", + "iso_region": "PM-ML", + "municipality": "Miquelon", + "scheduled_service": "yes", + "gps_code": "LFVM", + "iata_code": "MQC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miquelon_Airport" + }, + { + "id": "4245", + "ident": "LFVP", + "type": "medium_airport", + "name": "St Pierre Airport", + "latitude_deg": "46.762901306152344", + "longitude_deg": "-56.173099517822266", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "PM", + "iso_region": "PM-SP", + "municipality": "Saint-Pierre", + "scheduled_service": "yes", + "gps_code": "LFVP", + "iata_code": "FSP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saint-Pierre_Airport" + }, + { + "id": "4246", + "ident": "LFXA", + "type": "medium_airport", + "name": "Ambérieu Air Base (BA 278)", + "latitude_deg": "45.987301", + "longitude_deg": "5.32844", + "elevation_ft": "823", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-ARA", + "municipality": "Ambérieu", + "scheduled_service": "no", + "gps_code": "LFXA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amb%C3%A9rieu-en-Bugey_Air_Base" + }, + { + "id": "29012", + "ident": "LFXB", + "type": "small_airport", + "name": "Saintes Thénac Airfield", + "latitude_deg": "45.7019", + "longitude_deg": "-0.636111", + "elevation_ft": "118", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFXB" + }, + { + "id": "29013", + "ident": "LFXC", + "type": "closed", + "name": "Vittel (Auzainvilliers) Airfield", + "latitude_deg": "48.2286", + "longitude_deg": "5.84302", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFXC" + }, + { + "id": "29014", + "ident": "LFXG", + "type": "closed", + "name": "Bitche Army Air Base", + "latitude_deg": "49.06007", + "longitude_deg": "7.45009", + "elevation_ft": "984", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFXG" + }, + { + "id": "29015", + "ident": "LFXH", + "type": "closed", + "name": "Le Valdahon Air Base", + "latitude_deg": "47.166698", + "longitude_deg": "6.35", + "elevation_ft": "2067", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no" + }, + { + "id": "29016", + "ident": "LFXI", + "type": "closed", + "name": "Apt St Christol Air Base", + "latitude_deg": "44.058234", + "longitude_deg": "5.494654", + "elevation_ft": "2736", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-PAC", + "municipality": "Saint-Christol", + "scheduled_service": "no", + "gps_code": "LFXI", + "wikipedia_link": "https://fr.wikipedia.org/wiki/Base_a%C3%A9rienne_200_Apt-Saint-Christol", + "keywords": "Base_aérienne_200" + }, + { + "id": "29017", + "ident": "LFXM", + "type": "closed", + "name": "Mourmelon Air Base", + "latitude_deg": "49.111401", + "longitude_deg": "4.36694", + "elevation_ft": "387", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFXM" + }, + { + "id": "29018", + "ident": "LFXQ", + "type": "small_airport", + "name": "Coëtquidan Air Base", + "latitude_deg": "47.94660186767578", + "longitude_deg": "-2.1923000812530518", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BRE", + "municipality": "Guer", + "scheduled_service": "no", + "gps_code": "LFXQ" + }, + { + "id": "29019", + "ident": "LFXR", + "type": "closed", + "name": "Rochefort Soubise Airfield", + "latitude_deg": "45.930801", + "longitude_deg": "-0.995278", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NAQ", + "scheduled_service": "no", + "gps_code": "LFXR" + }, + { + "id": "29020", + "ident": "LFXU", + "type": "small_airport", + "name": "Les Mureaux Airfield", + "latitude_deg": "48.998299", + "longitude_deg": "1.94278", + "elevation_ft": "89", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-IDF", + "scheduled_service": "no", + "gps_code": "LFXU" + }, + { + "id": "4247", + "ident": "LFYD", + "type": "closed", + "name": "Damblain Air Base", + "latitude_deg": "48.0863", + "longitude_deg": "5.66406", + "elevation_ft": "1280", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "municipality": "Damblain", + "scheduled_service": "no", + "gps_code": "LFYD" + }, + { + "id": "29021", + "ident": "LFYG", + "type": "small_airport", + "name": "Cambrai Niergnies Airfield", + "latitude_deg": "50.142502", + "longitude_deg": "3.265", + "elevation_ft": "312", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "scheduled_service": "no", + "gps_code": "LFYG" + }, + { + "id": "29022", + "ident": "LFYH", + "type": "closed", + "name": "Broyes-lès-Pesmes Air Base", + "latitude_deg": "47.332932", + "longitude_deg": "5.513494", + "elevation_ft": "682", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "municipality": "Broye-Aubigney-Montseugny", + "scheduled_service": "no", + "gps_code": "LFYH" + }, + { + "id": "29023", + "ident": "LFYK", + "type": "small_airport", + "name": "Marville Montmédy Airfield", + "latitude_deg": "49.459202", + "longitude_deg": "5.4025", + "elevation_ft": "909", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "local_code": "LF5526" + }, + { + "id": "29024", + "ident": "LFYL", + "type": "closed", + "name": "Lure Malbouhans Air Base", + "latitude_deg": "47.7047", + "longitude_deg": "6.54583", + "elevation_ft": "1040", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-BFC", + "scheduled_service": "no", + "gps_code": "LFYL", + "wikipedia_link": "https://fr.wikipedia.org/wiki/A%C3%A9rodrome_de_Lure_-_Malbouhans" + }, + { + "id": "29025", + "ident": "LFYM", + "type": "closed", + "name": "Marigny Le Grand Air Base", + "latitude_deg": "48.66", + "longitude_deg": "3.83389", + "elevation_ft": "329", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-GES", + "scheduled_service": "no", + "gps_code": "LFYM" + }, + { + "id": "29026", + "ident": "LFYR", + "type": "small_airport", + "name": "Romorantin Pruniers Airfield", + "latitude_deg": "47.317543", + "longitude_deg": "1.691036", + "elevation_ft": "289", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-CVL", + "scheduled_service": "no", + "gps_code": "LFYR" + }, + { + "id": "29027", + "ident": "LFYS", + "type": "small_airport", + "name": "Ste Léocadie Airfield", + "latitude_deg": "42.447201", + "longitude_deg": "2.01083", + "elevation_ft": "4331", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-OCC", + "scheduled_service": "no", + "gps_code": "LFYS" + }, + { + "id": "29028", + "ident": "LFYT", + "type": "closed", + "name": "Saint-Simon - Clastres Air Base", + "latitude_deg": "49.757542", + "longitude_deg": "3.21598", + "elevation_ft": "295", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-HDF", + "scheduled_service": "no", + "gps_code": "LFYT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saint-Simon_%E2%80%93_Clastres_Air_Base" + }, + { + "id": "328712", + "ident": "LFYV", + "type": "small_airport", + "name": "Yvetot-Baons Le Comte Airfield", + "latitude_deg": "49.638411", + "longitude_deg": "0.730337", + "elevation_ft": "467", + "continent": "EU", + "iso_country": "FR", + "iso_region": "FR-NOR", + "municipality": "Yvetot", + "scheduled_service": "no", + "gps_code": "LFYV", + "home_link": "http://www.aeroclub-yvetot.fr/" + }, + { + "id": "3140", + "ident": "LG53", + "type": "closed", + "name": "Lamia Air Base", + "latitude_deg": "38.874599", + "longitude_deg": "22.434999", + "elevation_ft": "38", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-H", + "municipality": "Lamia", + "scheduled_service": "no" + }, + { + "id": "3141", + "ident": "LG54", + "type": "small_airport", + "name": "Tympaki Airport", + "latitude_deg": "35.063702", + "longitude_deg": "24.767401", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-M", + "municipality": "Crete Island", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tympaki_Airport" + }, + { + "id": "3142", + "ident": "LG55", + "type": "small_airport", + "name": "Triodhon Airport", + "latitude_deg": "37.094101", + "longitude_deg": "21.9904", + "elevation_ft": "36", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-J", + "municipality": "Triodhon", + "scheduled_service": "no" + }, + { + "id": "3143", + "ident": "LG56", + "type": "small_airport", + "name": "Olimboi Airport", + "latitude_deg": "38.236099", + "longitude_deg": "25.939199", + "elevation_ft": "656", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-K", + "municipality": "Chios Island", + "scheduled_service": "no" + }, + { + "id": "4248", + "ident": "LGAD", + "type": "medium_airport", + "name": "Andravida Air Base", + "latitude_deg": "37.9207", + "longitude_deg": "21.292601", + "elevation_ft": "55", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-G", + "municipality": "Andravida", + "scheduled_service": "no", + "gps_code": "LGAD", + "iata_code": "PYR" + }, + { + "id": "4249", + "ident": "LGAG", + "type": "closed", + "name": "Agrinion Air Base", + "latitude_deg": "38.602001", + "longitude_deg": "21.3512", + "elevation_ft": "154", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-G", + "municipality": "Agrinion", + "scheduled_service": "no", + "gps_code": "LGAG", + "iata_code": "AGQ", + "keywords": "Agrinio" + }, + { + "id": "4250", + "ident": "LGAL", + "type": "medium_airport", + "name": "Alexandroupoli Democritus Airport", + "latitude_deg": "40.8559", + "longitude_deg": "25.956301", + "elevation_ft": "24", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-A", + "municipality": "Alexandroupolis", + "scheduled_service": "yes", + "gps_code": "LGAL", + "iata_code": "AXD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alexandroupoli_Airport" + }, + { + "id": "42448", + "ident": "LGAM", + "type": "heliport", + "name": "Amphiali Heliport", + "latitude_deg": "37.97159957885742", + "longitude_deg": "23.530399322509766", + "elevation_ft": "43", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-I", + "municipality": "Salamis Island", + "scheduled_service": "no", + "gps_code": "LGAM" + }, + { + "id": "29673", + "ident": "LGAT", + "type": "closed", + "name": "Athens Hellenikon International Airport", + "latitude_deg": "37.89162", + "longitude_deg": "23.730211", + "elevation_ft": "69", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-I", + "municipality": "Athens", + "scheduled_service": "no", + "keywords": "HEW, LGAT" + }, + { + "id": "4251", + "ident": "LGAV", + "type": "large_airport", + "name": "Athens Eleftherios Venizelos International Airport", + "latitude_deg": "37.936401", + "longitude_deg": "23.9445", + "elevation_ft": "308", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-I", + "municipality": "Athens", + "scheduled_service": "yes", + "gps_code": "LGAV", + "iata_code": "ATH", + "home_link": "http://www.aia.gr", + "wikipedia_link": "https://en.wikipedia.org/wiki/Athens_International_Airport" + }, + { + "id": "4252", + "ident": "LGAX", + "type": "small_airport", + "name": "Alexandria Airport", + "latitude_deg": "40.651100158691406", + "longitude_deg": "22.48870086669922", + "elevation_ft": "27", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-B", + "municipality": "Alexandria", + "scheduled_service": "no", + "gps_code": "LGAX" + }, + { + "id": "4253", + "ident": "LGBL", + "type": "medium_airport", + "name": "Nea Anchialos National Airport", + "latitude_deg": "39.219601", + "longitude_deg": "22.7943", + "elevation_ft": "83", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-E", + "municipality": "Nea Anchialos", + "scheduled_service": "yes", + "gps_code": "LGBL", + "iata_code": "VOL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nea_Anchialos_National_Airport", + "keywords": "Volos Central Greece Airport, Volos Nea Anchialos Airport of Central Greece" + }, + { + "id": "313896", + "ident": "LGE", + "type": "small_airport", + "name": "Mulan Airport", + "latitude_deg": "-20.1089", + "longitude_deg": "127.619", + "elevation_ft": "978", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Lake Gregory", + "scheduled_service": "no", + "iata_code": "LGE", + "local_code": "YUAN", + "keywords": "Paruku" + }, + { + "id": "4254", + "ident": "LGEL", + "type": "medium_airport", + "name": "Elefsis Airport", + "latitude_deg": "38.06380081176758", + "longitude_deg": "23.555999755859375", + "elevation_ft": "143", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-I", + "municipality": "Elefsina", + "scheduled_service": "no", + "gps_code": "LGEL" + }, + { + "id": "29852", + "ident": "LGEP", + "type": "small_airport", + "name": "Epitalion Airfield", + "latitude_deg": "37.613347", + "longitude_deg": "21.496382", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-G", + "municipality": "Pyrgos", + "scheduled_service": "no", + "gps_code": "LGEP" + }, + { + "id": "4255", + "ident": "LGHI", + "type": "medium_airport", + "name": "Chios Island National Airport", + "latitude_deg": "38.34320068359375", + "longitude_deg": "26.140600204467773", + "elevation_ft": "15", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-K", + "municipality": "Chios Island", + "scheduled_service": "yes", + "gps_code": "LGHI", + "iata_code": "JKH", + "home_link": "http://www.hcaa-eleng.gr/chios.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chios_Island_National_Airport" + }, + { + "id": "30281", + "ident": "LGHL", + "type": "closed", + "name": "Porto Cheli Airport", + "latitude_deg": "37.29891", + "longitude_deg": "23.148923", + "elevation_ft": "69", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-J", + "municipality": "Porto Cheli", + "scheduled_service": "no", + "gps_code": "LGHL", + "iata_code": "PKH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Porto_Cheli_Airport", + "keywords": "Kanaris Airport, Portokhelion" + }, + { + "id": "4256", + "ident": "LGIK", + "type": "small_airport", + "name": "Ikaria Airport", + "latitude_deg": "37.6827011108", + "longitude_deg": "26.3470993042", + "elevation_ft": "79", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-K", + "municipality": "Ikaria Island", + "scheduled_service": "yes", + "gps_code": "LGIK", + "iata_code": "JIK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ikaria_Island_National_Airport" + }, + { + "id": "4257", + "ident": "LGIO", + "type": "medium_airport", + "name": "Ioannina Airport", + "latitude_deg": "39.6963996887207", + "longitude_deg": "20.822500228881836", + "elevation_ft": "1558", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-D", + "municipality": "Ioannina", + "scheduled_service": "yes", + "gps_code": "LGIO", + "iata_code": "IOA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ioannina_National_Airport" + }, + { + "id": "4258", + "ident": "LGIR", + "type": "large_airport", + "name": "Heraklion International Nikos Kazantzakis Airport", + "latitude_deg": "35.3396987915", + "longitude_deg": "25.180299758900002", + "elevation_ft": "115", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-M", + "municipality": "Heraklion", + "scheduled_service": "yes", + "gps_code": "LGIR", + "iata_code": "HER", + "wikipedia_link": "https://en.wikipedia.org/wiki/Heraklion_International_Airport%2C_%22Nikos_Kazantzakis%22", + "keywords": "Crete Island" + }, + { + "id": "4259", + "ident": "LGKA", + "type": "small_airport", + "name": "Kastoria National Airport Aristotle", + "latitude_deg": "40.446301", + "longitude_deg": "21.2822", + "elevation_ft": "2167", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-C", + "municipality": "Argos Orestiko", + "scheduled_service": "yes", + "gps_code": "LGKA", + "iata_code": "KSO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kastoria_National_Airport", + "keywords": "Aristotelis Airport" + }, + { + "id": "4260", + "ident": "LGKC", + "type": "small_airport", + "name": "Kithira Airport", + "latitude_deg": "36.2742996216", + "longitude_deg": "23.0170001984", + "elevation_ft": "1045", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-I", + "municipality": "Kithira Island", + "scheduled_service": "yes", + "gps_code": "LGKC", + "iata_code": "KIT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kithira_Island_National_Airport" + }, + { + "id": "4261", + "ident": "LGKF", + "type": "medium_airport", + "name": "Kefallinia Airport", + "latitude_deg": "38.12009811401367", + "longitude_deg": "20.500499725341797", + "elevation_ft": "59", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-F", + "municipality": "Kefallinia Island", + "scheduled_service": "yes", + "gps_code": "LGKF", + "iata_code": "EFL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kefalonia_Island_International_Airport" + }, + { + "id": "30014", + "ident": "LGKJ", + "type": "small_airport", + "name": "Kastelorizo Airport", + "latitude_deg": "36.1417007446", + "longitude_deg": "29.576400756799995", + "elevation_ft": "489", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Kastelorizo Island", + "scheduled_service": "yes", + "gps_code": "LGKJ", + "iata_code": "KZS" + }, + { + "id": "4262", + "ident": "LGKL", + "type": "medium_airport", + "name": "Kalamata Airport", + "latitude_deg": "37.06829833984375", + "longitude_deg": "22.02549934387207", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-J", + "municipality": "Kalamata", + "scheduled_service": "yes", + "gps_code": "LGKL", + "iata_code": "KLX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kalamata_International_Airport" + }, + { + "id": "4263", + "ident": "LGKM", + "type": "small_airport", + "name": "Amigdaleonas Airport", + "latitude_deg": "40.972801", + "longitude_deg": "24.3414", + "elevation_ft": "203", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-A", + "municipality": "Amigdaleonas", + "scheduled_service": "no", + "gps_code": "LGKM" + }, + { + "id": "30120", + "ident": "LGKN", + "type": "heliport", + "name": "Marathon Kotroni Navy Helicopter Base", + "latitude_deg": "38.137798", + "longitude_deg": "23.951099", + "elevation_ft": "682", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-I", + "municipality": "Marathon", + "scheduled_service": "no", + "gps_code": "LGKN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kotroni_Airport" + }, + { + "id": "4264", + "ident": "LGKO", + "type": "medium_airport", + "name": "Kos Airport", + "latitude_deg": "36.79330062866211", + "longitude_deg": "27.091699600219727", + "elevation_ft": "412", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Kos Island", + "scheduled_service": "yes", + "gps_code": "LGKO", + "iata_code": "KGS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kos_Island_International_Airport" + }, + { + "id": "4265", + "ident": "LGKP", + "type": "medium_airport", + "name": "Karpathos Airport", + "latitude_deg": "35.4213981628418", + "longitude_deg": "27.145999908447266", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Karpathos Island", + "scheduled_service": "yes", + "gps_code": "LGKP", + "iata_code": "AOK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Karpathos_Island_National_Airport" + }, + { + "id": "4266", + "ident": "LGKR", + "type": "medium_airport", + "name": "Ioannis Kapodistrias International Airport", + "latitude_deg": "39.601898193359375", + "longitude_deg": "19.911699295043945", + "elevation_ft": "6", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-F", + "municipality": "Kerkyra Island", + "scheduled_service": "yes", + "gps_code": "LGKR", + "iata_code": "CFU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Corfu_International_Airport%2C_%26quot%3BIoannis_Kapodistrias%26quot%3B", + "keywords": "Corfu" + }, + { + "id": "4267", + "ident": "LGKS", + "type": "small_airport", + "name": "Kasos Airport", + "latitude_deg": "35.4213981628", + "longitude_deg": "26.909999847399998", + "elevation_ft": "35", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Kasos Island", + "scheduled_service": "yes", + "gps_code": "LGKS", + "iata_code": "KSJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kassos_Island_Public_Airport" + }, + { + "id": "4268", + "ident": "LGKV", + "type": "medium_airport", + "name": "Kavala Alexander the Great International Airport", + "latitude_deg": "40.9133", + "longitude_deg": "24.6192", + "elevation_ft": "18", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-A", + "municipality": "Kavala", + "scheduled_service": "yes", + "gps_code": "LGKV", + "iata_code": "KVA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kavala_International_Airport", + "keywords": "Megas Alexandros" + }, + { + "id": "30004", + "ident": "LGKY", + "type": "small_airport", + "name": "Kalymnos Airport", + "latitude_deg": "36.9632987976", + "longitude_deg": "26.9405994415", + "elevation_ft": "771", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Kalymnos Island", + "scheduled_service": "yes", + "gps_code": "LGKY", + "iata_code": "JKL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kalymnos_Island_National_Airport", + "keywords": "Kalimnos, Κάλυμνος" + }, + { + "id": "4269", + "ident": "LGKZ", + "type": "medium_airport", + "name": "Kozani State Airport Filippos", + "latitude_deg": "40.286098", + "longitude_deg": "21.840799", + "elevation_ft": "2059", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-C", + "municipality": "Kozani", + "scheduled_service": "yes", + "gps_code": "LGKZ", + "iata_code": "KZI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kozani_National_Airport_%26quot%3BFilippos%26quot%3B" + }, + { + "id": "4270", + "ident": "LGLE", + "type": "small_airport", + "name": "Leros Airport", + "latitude_deg": "37.184898", + "longitude_deg": "26.800301", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Leros Island", + "scheduled_service": "yes", + "gps_code": "LGLE", + "iata_code": "LRS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leros_Municipal_Airport" + }, + { + "id": "4271", + "ident": "LGLM", + "type": "small_airport", + "name": "Limnos Airport", + "latitude_deg": "39.917098999", + "longitude_deg": "25.236299514799995", + "elevation_ft": "14", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-K", + "municipality": "Limnos Island", + "scheduled_service": "yes", + "gps_code": "LGLM", + "iata_code": "LXS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lemnos_International_Airport" + }, + { + "id": "4272", + "ident": "LGLR", + "type": "small_airport", + "name": "Larissa Air Base", + "latitude_deg": "39.650253", + "longitude_deg": "22.4655", + "elevation_ft": "241", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-E", + "municipality": "Larissa", + "scheduled_service": "no", + "gps_code": "LGLR", + "iata_code": "LRA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Larissa_National_Airport", + "keywords": "Larissa State Airport Thessaly" + }, + { + "id": "42449", + "ident": "LGLX", + "type": "heliport", + "name": "Piraeus Heliport", + "latitude_deg": "37.991798400878906", + "longitude_deg": "23.574800491333008", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-I", + "municipality": "El Pireo Port", + "scheduled_service": "no", + "gps_code": "LGLX" + }, + { + "id": "313897", + "ident": "LGM", + "type": "closed", + "name": "Laiagam Airport", + "latitude_deg": "-5.4923", + "longitude_deg": "143.488", + "elevation_ft": "7267", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EPW", + "municipality": "Laiagam", + "scheduled_service": "no", + "iata_code": "LGM" + }, + { + "id": "4273", + "ident": "LGMG", + "type": "small_airport", + "name": "Megara Airport", + "latitude_deg": "37.98109817504883", + "longitude_deg": "23.365400314331055", + "elevation_ft": "12", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-I", + "municipality": "Megara", + "scheduled_service": "no", + "gps_code": "LGMG" + }, + { + "id": "4274", + "ident": "LGMK", + "type": "medium_airport", + "name": "Mikonos Airport", + "latitude_deg": "37.43510055541992", + "longitude_deg": "25.348100662231445", + "elevation_ft": "405", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Mykonos Island", + "scheduled_service": "yes", + "gps_code": "LGMK", + "iata_code": "JMK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mykonos_Island_National_Airport" + }, + { + "id": "30139", + "ident": "LGML", + "type": "small_airport", + "name": "Milos Airport", + "latitude_deg": "36.696899", + "longitude_deg": "24.4769", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Milos Island", + "scheduled_service": "yes", + "gps_code": "LGML", + "iata_code": "MLO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Milos_Island_National_Airport" + }, + { + "id": "30114", + "ident": "LGMR", + "type": "closed", + "name": "Marathon Wasser Airport", + "latitude_deg": "38.143902", + "longitude_deg": "24.0128", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-I", + "municipality": "Marathon", + "scheduled_service": "no", + "gps_code": "LGMR" + }, + { + "id": "4275", + "ident": "LGMT", + "type": "medium_airport", + "name": "Mytilene International Airport", + "latitude_deg": "39.0567016602", + "longitude_deg": "26.5983009338", + "elevation_ft": "60", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-K", + "municipality": "Mytilene", + "scheduled_service": "yes", + "gps_code": "LGMT", + "iata_code": "MJT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mytilene_International_Airport" + }, + { + "id": "302389", + "ident": "LGN", + "type": "small_airport", + "name": "Linga Linga Airport", + "latitude_deg": "-5.5319444444400006", + "longitude_deg": "149.734166667", + "elevation_ft": "17", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WBK", + "municipality": "Linga Linga", + "scheduled_service": "no", + "gps_code": "AYLL", + "iata_code": "LGN", + "local_code": "LLA", + "keywords": "Lingalinga" + }, + { + "id": "30182", + "ident": "LGNX", + "type": "small_airport", + "name": "Naxos Apollon Airport", + "latitude_deg": "37.0811", + "longitude_deg": "25.368099", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Naxos", + "scheduled_service": "yes", + "gps_code": "LGNX", + "iata_code": "JNX" + }, + { + "id": "336104", + "ident": "LGP", + "type": "medium_airport", + "name": "Bicol International Airport", + "latitude_deg": "13.111915", + "longitude_deg": "123.676829", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ALB", + "municipality": "Daraga", + "scheduled_service": "no", + "gps_code": "RPLK", + "iata_code": "LGP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bicol_International_Airport" + }, + { + "id": "30243", + "ident": "LGPA", + "type": "small_airport", + "name": "Paros National Airport", + "latitude_deg": "37.020495", + "longitude_deg": "25.113195", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Paros", + "scheduled_service": "yes", + "gps_code": "LGPA", + "iata_code": "PAS", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Paros_Airport", + "keywords": "New Paros Airport" + }, + { + "id": "4276", + "ident": "LGPL", + "type": "small_airport", + "name": "Astypalaia Airport", + "latitude_deg": "36.5798988342", + "longitude_deg": "26.3757991791", + "elevation_ft": "165", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Astypalaia Island", + "scheduled_service": "yes", + "gps_code": "LGPL", + "iata_code": "JTY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Astypalaia_Island_National_Airport" + }, + { + "id": "4277", + "ident": "LGPZ", + "type": "medium_airport", + "name": "Aktion National Airport", + "latitude_deg": "38.925498962402344", + "longitude_deg": "20.765300750732422", + "elevation_ft": "11", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-D", + "municipality": "Preveza/Lefkada", + "scheduled_service": "yes", + "gps_code": "LGPZ", + "iata_code": "PVK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aktion_National_Airport", + "keywords": "Aktio, Lefkada Airport, Πρέβεζα, Λευκάδα" + }, + { + "id": "4278", + "ident": "LGRD", + "type": "small_airport", + "name": "Maritsa Air Base", + "latitude_deg": "36.383099", + "longitude_deg": "28.1089", + "elevation_ft": "204", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Rodes Island", + "scheduled_service": "no", + "gps_code": "LGRD" + }, + { + "id": "4279", + "ident": "LGRP", + "type": "medium_airport", + "name": "Diagoras Airport", + "latitude_deg": "36.405399322509766", + "longitude_deg": "28.086200714111328", + "elevation_ft": "17", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Rodes Island", + "scheduled_service": "yes", + "gps_code": "LGRP", + "iata_code": "RHO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rhodes_International_Airport%2C_%26quot%3BDiagoras%26quot%3B" + }, + { + "id": "28104", + "ident": "LGRS", + "type": "small_airport", + "name": "Logan Reserve Airport", + "latitude_deg": "-27.705986", + "longitude_deg": "153.109996", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "LGRS", + "local_code": "LGRS" + }, + { + "id": "4280", + "ident": "LGRX", + "type": "medium_airport", + "name": "Patras Araxos Agamemnon Airport", + "latitude_deg": "38.1511", + "longitude_deg": "21.4256", + "elevation_ft": "46", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-G", + "municipality": "Patras", + "scheduled_service": "yes", + "gps_code": "LGRX", + "iata_code": "GPA", + "home_link": "http://www.araxos-airport.gr/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Araxos_Airport" + }, + { + "id": "4281", + "ident": "LGSA", + "type": "medium_airport", + "name": "Chania International Airport", + "latitude_deg": "35.531700134277344", + "longitude_deg": "24.149700164794922", + "elevation_ft": "490", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-M", + "municipality": "Souda", + "scheduled_service": "yes", + "gps_code": "LGSA", + "iata_code": "CHQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chania_International_Airport" + }, + { + "id": "30402", + "ident": "LGSD", + "type": "small_airport", + "name": "Sedes Air Base", + "latitude_deg": "40.5331", + "longitude_deg": "23.025299", + "elevation_ft": "85", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-B", + "municipality": "Sedes", + "scheduled_service": "no", + "gps_code": "LGSD" + }, + { + "id": "4282", + "ident": "LGSK", + "type": "medium_airport", + "name": "Skiathos Island National Airport", + "latitude_deg": "39.177101135253906", + "longitude_deg": "23.503700256347656", + "elevation_ft": "54", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-E", + "municipality": "Skiathos", + "scheduled_service": "yes", + "gps_code": "LGSK", + "iata_code": "JSI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Skiathos_Island_National_Airport", + "keywords": "Alexandros Papadiamantis Airport" + }, + { + "id": "4283", + "ident": "LGSM", + "type": "medium_airport", + "name": "Samos Airport", + "latitude_deg": "37.689998626708984", + "longitude_deg": "26.911699295043945", + "elevation_ft": "19", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-K", + "municipality": "Samos Island", + "scheduled_service": "yes", + "gps_code": "LGSM", + "iata_code": "SMI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Samos_International_Airport" + }, + { + "id": "4284", + "ident": "LGSO", + "type": "small_airport", + "name": "Syros Airport", + "latitude_deg": "37.4227981567", + "longitude_deg": "24.950899124099998", + "elevation_ft": "236", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Syros Island", + "scheduled_service": "yes", + "gps_code": "LGSO", + "iata_code": "JSY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Syros_Island_National_Airport" + }, + { + "id": "4285", + "ident": "LGSP", + "type": "small_airport", + "name": "Sparti Airport", + "latitude_deg": "36.973899841308594", + "longitude_deg": "22.52630043029785", + "elevation_ft": "500", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-J", + "municipality": "Sparti", + "scheduled_service": "no", + "gps_code": "LGSP", + "iata_code": "SPJ" + }, + { + "id": "4286", + "ident": "LGSR", + "type": "medium_airport", + "name": "Santorini Airport", + "latitude_deg": "36.399200439453125", + "longitude_deg": "25.479299545288086", + "elevation_ft": "127", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-L", + "municipality": "Santorini Island", + "scheduled_service": "yes", + "gps_code": "LGSR", + "iata_code": "JTR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santorini_(Thira)_National_Airport" + }, + { + "id": "4287", + "ident": "LGST", + "type": "medium_airport", + "name": "Sitia Airport", + "latitude_deg": "35.21609878540039", + "longitude_deg": "26.101299285888672", + "elevation_ft": "376", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-M", + "municipality": "Crete Island", + "scheduled_service": "yes", + "gps_code": "LGST", + "iata_code": "JSH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sitia_Public_Airport" + }, + { + "id": "4288", + "ident": "LGSV", + "type": "closed", + "name": "Stefanovikion Air Base", + "latitude_deg": "39.478521", + "longitude_deg": "22.769105", + "elevation_ft": "146", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-E", + "municipality": "Stefanovikion", + "scheduled_service": "no", + "gps_code": "LGSV" + }, + { + "id": "4289", + "ident": "LGSY", + "type": "small_airport", + "name": "Skiros Airport", + "latitude_deg": "38.9676017761", + "longitude_deg": "24.4871997833", + "elevation_ft": "44", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-H", + "municipality": "Skiros Island", + "scheduled_service": "yes", + "gps_code": "LGSY", + "iata_code": "SKU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Skyros_Island_National_Airport" + }, + { + "id": "4290", + "ident": "LGTG", + "type": "medium_airport", + "name": "Tanagra Air Base", + "latitude_deg": "38.339802", + "longitude_deg": "23.565001", + "elevation_ft": "485", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-H", + "municipality": "Tanagra", + "scheduled_service": "no", + "gps_code": "LGTG" + }, + { + "id": "4291", + "ident": "LGTL", + "type": "small_airport", + "name": "Kasteli Airport", + "latitude_deg": "35.192001", + "longitude_deg": "25.327", + "elevation_ft": "1180", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-M", + "municipality": "Crete Island", + "scheduled_service": "no", + "gps_code": "LGTL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kasteli_Airport", + "keywords": "Καστελίου" + }, + { + "id": "4292", + "ident": "LGTP", + "type": "small_airport", + "name": "Tripolis Airport", + "latitude_deg": "37.530601501464844", + "longitude_deg": "22.403600692749023", + "elevation_ft": "2113", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-J", + "municipality": "Trípoli", + "scheduled_service": "no", + "gps_code": "LGTP" + }, + { + "id": "4293", + "ident": "LGTS", + "type": "large_airport", + "name": "Thessaloniki Macedonia International Airport", + "latitude_deg": "40.51969909667969", + "longitude_deg": "22.97089958190918", + "elevation_ft": "22", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-B", + "municipality": "Thessaloniki", + "scheduled_service": "yes", + "gps_code": "LGTS", + "iata_code": "SKG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thessaloniki_International_Airport%2C_%22Macedonia%22", + "keywords": "Makedonia. Macedonia. Salonica" + }, + { + "id": "4294", + "ident": "LGTT", + "type": "small_airport", + "name": "Tatoi Airport", + "latitude_deg": "38.1088981628418", + "longitude_deg": "23.78380012512207", + "elevation_ft": "785", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-I", + "municipality": "Tatoi", + "scheduled_service": "no", + "gps_code": "LGTT" + }, + { + "id": "42450", + "ident": "LGVO", + "type": "closed", + "name": "Volos Army Airport", + "latitude_deg": "39.38389968869999", + "longitude_deg": "22.9174003601", + "elevation_ft": "112", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-E", + "municipality": "Volos", + "scheduled_service": "no", + "gps_code": "LGVO" + }, + { + "id": "4295", + "ident": "LGZA", + "type": "medium_airport", + "name": "Zakynthos International Airport \"Dionysios Solomos\"", + "latitude_deg": "37.7509", + "longitude_deg": "20.8843", + "elevation_ft": "15", + "continent": "EU", + "iso_country": "GR", + "iso_region": "GR-F", + "municipality": "Zakynthos Island", + "scheduled_service": "yes", + "gps_code": "LGZA", + "iata_code": "ZTH", + "home_link": "https://www.zth-airport.gr", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zakynthos_International_Airport" + }, + { + "id": "309204", + "ident": "LH0", + "type": "small_airport", + "name": "Hertelendy Kastely Field", + "latitude_deg": "46.372103", + "longitude_deg": "17.428524", + "elevation_ft": "469", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-SO", + "municipality": "Kutas", + "scheduled_service": "no", + "gps_code": "LHKU", + "home_link": "http://www.hotel-hertelendy.com/airfield_information" + }, + { + "id": "3261", + "ident": "LH58", + "type": "closed", + "name": "Csákvár Air Base", + "latitude_deg": "47.350899", + "longitude_deg": "18.43", + "elevation_ft": "1000", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-FE", + "municipality": "Csákvár", + "scheduled_service": "no" + }, + { + "id": "43993", + "ident": "LHBA", + "type": "closed", + "name": "Balassagyarmat Airfield", + "latitude_deg": "48.078037", + "longitude_deg": "19.321749", + "elevation_ft": "466", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-NO", + "municipality": "Balassagyarmat", + "scheduled_service": "no", + "gps_code": "LHBA" + }, + { + "id": "331678", + "ident": "LHBB", + "type": "heliport", + "name": "Légimentő bázis", + "latitude_deg": "47.4545191", + "longitude_deg": "18.9072779", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BU", + "municipality": "Budapest", + "scheduled_service": "no", + "gps_code": "LHBB" + }, + { + "id": "29691", + "ident": "LHBC", + "type": "small_airport", + "name": "Békéscsaba Airfield", + "latitude_deg": "46.677132", + "longitude_deg": "21.161188", + "elevation_ft": "286", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BE", + "municipality": "Békéscsaba", + "scheduled_service": "no", + "gps_code": "LHBC", + "home_link": "http://www.bekesairport.hu", + "wikipedia_link": "https://hu.wikipedia.org/wiki/B%C3%A9k%C3%A9scsabai_rep%C3%BCl%C5%91t%C3%A9r", + "keywords": "Viharsarok,Kvasz András" + }, + { + "id": "317553", + "ident": "LHBF", + "type": "small_airport", + "name": "Bükfördö Airfield", + "latitude_deg": "47.3848", + "longitude_deg": "16.80264", + "elevation_ft": "545", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-VA", + "municipality": "Bö", + "scheduled_service": "no", + "gps_code": "LHBF" + }, + { + "id": "345619", + "ident": "LHBI", + "type": "small_airport", + "name": "Biharkeresztes", + "latitude_deg": "47.137425", + "longitude_deg": "21.675425", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-HB", + "scheduled_service": "no", + "gps_code": "LHBI" + }, + { + "id": "317377", + "ident": "LHBO", + "type": "small_airport", + "name": "Bácsbokod repülőtér", + "latitude_deg": "46.152181", + "longitude_deg": "19.150439", + "elevation_ft": "512", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BK", + "municipality": "Bácsbokod", + "scheduled_service": "no", + "gps_code": "LHBO" + }, + { + "id": "4296", + "ident": "LHBP", + "type": "large_airport", + "name": "Budapest Liszt Ferenc International Airport", + "latitude_deg": "47.42976", + "longitude_deg": "19.261093", + "elevation_ft": "495", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-PE", + "municipality": "Budapest", + "scheduled_service": "yes", + "gps_code": "LHBP", + "iata_code": "BUD", + "home_link": "http://www.bud.hu/english", + "wikipedia_link": "https://en.wikipedia.org/wiki/Budapest_Ferenc_Liszt_International_Airport", + "keywords": "Ferihegyi nemzetközi repülőtér, Budapest Liszt Ferenc international Airport" + }, + { + "id": "29732", + "ident": "LHBS", + "type": "small_airport", + "name": "Budaörs Airfield", + "latitude_deg": "47.451099", + "longitude_deg": "18.9806", + "elevation_ft": "397", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BU", + "municipality": "Budaörs", + "scheduled_service": "no", + "gps_code": "LHBS" + }, + { + "id": "317554", + "ident": "LHCL", + "type": "small_airport", + "name": "Cegléd", + "latitude_deg": "47.160833", + "longitude_deg": "19.878611", + "elevation_ft": "315", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-PE", + "scheduled_service": "no", + "gps_code": "LHCL" + }, + { + "id": "4297", + "ident": "LHDC", + "type": "medium_airport", + "name": "Debrecen International Airport", + "latitude_deg": "47.488899", + "longitude_deg": "21.615299", + "elevation_ft": "359", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-HB", + "municipality": "Debrecen", + "scheduled_service": "yes", + "gps_code": "LHDC", + "iata_code": "DEB", + "home_link": "http://www.airportdebrecen.hu/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Debrecen_International_Airport", + "keywords": "Debreceni nemzetközi repülőtér" + }, + { + "id": "29831", + "ident": "LHDK", + "type": "small_airport", + "name": "Dunakeszi Airfield", + "latitude_deg": "47.613899", + "longitude_deg": "19.143299", + "elevation_ft": "397", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-PE", + "municipality": "Dunakeszi", + "scheduled_service": "no", + "gps_code": "LHDK" + }, + { + "id": "29832", + "ident": "LHDV", + "type": "small_airport", + "name": "Dunaújváros Airfield", + "latitude_deg": "46.895802", + "longitude_deg": "18.9139", + "elevation_ft": "394", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-FE", + "municipality": "Dunaújváros", + "scheduled_service": "no", + "gps_code": "LHDV" + }, + { + "id": "43982", + "ident": "LHEC", + "type": "closed", + "name": "Érsekcsanád Airport", + "latitude_deg": "46.249608", + "longitude_deg": "18.927609", + "elevation_ft": "285", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BK", + "municipality": "Érsekcsanád", + "scheduled_service": "no", + "gps_code": "LHEC" + }, + { + "id": "43033", + "ident": "LHEM", + "type": "small_airport", + "name": "Esztergom Airfield", + "latitude_deg": "47.758247", + "longitude_deg": "18.731164", + "elevation_ft": "342", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-KE", + "municipality": "Esztergom", + "scheduled_service": "no", + "gps_code": "LHEM" + }, + { + "id": "309451", + "ident": "LHER", + "type": "small_airport", + "name": "Eger Apollo Airfield", + "latitude_deg": "47.9052", + "longitude_deg": "20.4055", + "elevation_ft": "790", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-HE", + "municipality": "Eger", + "scheduled_service": "no", + "gps_code": "LHER", + "home_link": "http://www.halley.hu" + }, + { + "id": "317555", + "ident": "LHFC", + "type": "small_airport", + "name": "Bodmér", + "latitude_deg": "47.44462", + "longitude_deg": "18.55632", + "elevation_ft": "492", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-FE", + "scheduled_service": "no", + "gps_code": "LHFC", + "keywords": "Felcsút" + }, + { + "id": "43034", + "ident": "LHFH", + "type": "small_airport", + "name": "Farkashegy Airfield", + "latitude_deg": "47.4869", + "longitude_deg": "18.9147", + "elevation_ft": "690", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-PE", + "municipality": "Farkashegy", + "scheduled_service": "no", + "gps_code": "LHFH" + }, + { + "id": "4298", + "ident": "LHFM", + "type": "small_airport", + "name": "Fertőszentmiklós Airport", + "latitude_deg": "47.582802", + "longitude_deg": "16.8454", + "elevation_ft": "440", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-GS", + "municipality": "Fertőszentmiklós", + "scheduled_service": "no", + "gps_code": "LHFM", + "home_link": "http://www.lhfm.hu/", + "keywords": "Meidl" + }, + { + "id": "318132", + "ident": "LHFP", + "type": "small_airport", + "name": "Piusz-Puszta", + "latitude_deg": "47.744444", + "longitude_deg": "16.614167", + "elevation_ft": "486", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-GS", + "municipality": "FERTŐRÁKOS", + "scheduled_service": "no", + "gps_code": "LHFP" + }, + { + "id": "31817", + "ident": "LHGD", + "type": "small_airport", + "name": "Gödöllő Airfield", + "latitude_deg": "47.570999", + "longitude_deg": "19.3386", + "elevation_ft": "600", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-PE", + "municipality": "Gödöllő", + "scheduled_service": "no", + "gps_code": "LHGD" + }, + { + "id": "43980", + "ident": "LHGM", + "type": "closed", + "name": "Gyomai Airfield", + "latitude_deg": "46.956165", + "longitude_deg": "20.883123", + "elevation_ft": "265", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BE", + "municipality": "Gyomai", + "scheduled_service": "no", + "gps_code": "LHGM" + }, + { + "id": "309481", + "ident": "LHGR", + "type": "small_airport", + "name": "Gyúró Airfield", + "latitude_deg": "47.3914", + "longitude_deg": "18.75786", + "elevation_ft": "640", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-FE", + "municipality": "Gyúró", + "scheduled_service": "no", + "gps_code": "LHGR", + "wikipedia_link": "http://hu.wikipedia.org/wiki/Gy%C3%BAr%C3%B3i_rep%C3%BCl%C5%91t%C3%A9r" + }, + { + "id": "318133", + "ident": "LHGU", + "type": "heliport", + "name": "Győrújbarát Heliport", + "latitude_deg": "47.605143", + "longitude_deg": "17.660188", + "elevation_ft": "397", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-GS", + "municipality": "Győrújbarát", + "scheduled_service": "no", + "gps_code": "LHGU" + }, + { + "id": "43035", + "ident": "LHGY", + "type": "small_airport", + "name": "Gyöngyös Pipishegy Airfield", + "latitude_deg": "47.814279", + "longitude_deg": "19.976792", + "elevation_ft": "1150", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-HE", + "municipality": "Gyöngyös Pipishegy", + "scheduled_service": "no", + "gps_code": "LHGY" + }, + { + "id": "43032", + "ident": "LHHH", + "type": "closed", + "name": "Hármashatárhegy Glider Field", + "latitude_deg": "47.550301", + "longitude_deg": "18.978701", + "elevation_ft": "960", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BU", + "municipality": "Budapest", + "scheduled_service": "no", + "gps_code": "LHHH" + }, + { + "id": "29934", + "ident": "LHHO", + "type": "small_airport", + "name": "Hajdúszoboszló Airfield", + "latitude_deg": "47.459202", + "longitude_deg": "21.391105", + "elevation_ft": "335", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-HB", + "municipality": "Hajdúszoboszló", + "scheduled_service": "no", + "gps_code": "LHHO" + }, + { + "id": "29987", + "ident": "LHJK", + "type": "small_airport", + "name": "Jakabszállás Airfield", + "latitude_deg": "46.7472", + "longitude_deg": "19.6056", + "elevation_ft": "348", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BK", + "municipality": "Jakabszállás", + "scheduled_service": "no", + "gps_code": "LHJK" + }, + { + "id": "43984", + "ident": "LHKC", + "type": "heliport", + "name": "Kecel Heliport", + "latitude_deg": "46.5363883972168", + "longitude_deg": "19.241703033447266", + "elevation_ft": "323", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BK", + "municipality": "Kecel", + "scheduled_service": "no", + "gps_code": "LHKC" + }, + { + "id": "43036", + "ident": "LHKD", + "type": "small_airport", + "name": "Kecskéd Airfield", + "latitude_deg": "47.517121", + "longitude_deg": "18.325024", + "elevation_ft": "570", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-KE", + "municipality": "Kecskéd", + "scheduled_service": "no", + "gps_code": "LHKD" + }, + { + "id": "4299", + "ident": "LHKE", + "type": "medium_airport", + "name": "Kecskemét Air Base", + "latitude_deg": "46.9175", + "longitude_deg": "19.749201", + "elevation_ft": "376", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BK", + "municipality": "Kecskemét", + "scheduled_service": "no", + "gps_code": "LHKE" + }, + { + "id": "30029", + "ident": "LHKH", + "type": "small_airport", + "name": "Kiskunfélegyháza Airfield", + "latitude_deg": "46.733101", + "longitude_deg": "19.893299", + "elevation_ft": "289", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BK", + "municipality": "Kiskunfélegyháza", + "scheduled_service": "no", + "gps_code": "LHKH", + "home_link": "https://www.blue-sky.hu" + }, + { + "id": "317552", + "ident": "LHKI", + "type": "small_airport", + "name": "Kiskőrös-Akasztó", + "latitude_deg": "46.6569444", + "longitude_deg": "19.2425", + "elevation_ft": "305", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BK", + "municipality": "Kiskőrös", + "scheduled_service": "no", + "gps_code": "LHKI", + "keywords": "Akasztó" + }, + { + "id": "46653", + "ident": "lhkk", + "type": "small_airport", + "name": "Kiskunlacháza-airport", + "latitude_deg": "47.16888520449999", + "longitude_deg": "19.084968566900002", + "elevation_ft": "322", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-PE", + "municipality": "Budapest", + "scheduled_service": "no", + "gps_code": "LHKK", + "home_link": "http://www.kiskunlachaza-airport.hu", + "wikipedia_link": "http://hu.wikipedia.org/wiki/Kiskunlacházi_repülőtér", + "keywords": "Lachaza, LHKK, Lacháza, Kiskunlacháza, Budapest, LHTL, LHBP, ferihegy" + }, + { + "id": "317557", + "ident": "LHKT", + "type": "small_airport", + "name": "Kadarkút", + "latitude_deg": "46.2462", + "longitude_deg": "17.6088", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-SO", + "scheduled_service": "no", + "gps_code": "LHKT" + }, + { + "id": "30009", + "ident": "LHKV", + "type": "small_airport", + "name": "Kaposvar Kaposújlak Airfield", + "latitude_deg": "46.386398", + "longitude_deg": "17.733479", + "elevation_ft": "499", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-SO", + "municipality": "Kaposújlak", + "scheduled_service": "no", + "gps_code": "LHKV" + }, + { + "id": "318135", + "ident": "LHLI", + "type": "small_airport", + "name": "Lipót", + "latitude_deg": "47.8575", + "longitude_deg": "17.4483333", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-GS", + "scheduled_service": "no", + "gps_code": "LHLI", + "keywords": "Lipót,Szigetköz" + }, + { + "id": "30143", + "ident": "LHMC", + "type": "closed", + "name": "Miskolc Airfield", + "latitude_deg": "48.13603", + "longitude_deg": "20.789641", + "elevation_ft": "390", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BZ", + "municipality": "Miskolc", + "scheduled_service": "no", + "gps_code": "LHMC", + "iata_code": "MCQ", + "home_link": "http://www.lhmc.hu/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miskolc_Airport" + }, + { + "id": "29841", + "ident": "LHMR", + "type": "small_airport", + "name": "Maklár Airfield", + "latitude_deg": "47.811857", + "longitude_deg": "20.422254", + "elevation_ft": "407", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-HE", + "municipality": "Eger", + "scheduled_service": "no", + "gps_code": "LHMR" + }, + { + "id": "30178", + "ident": "LHNK", + "type": "small_airport", + "name": "Nagykanizsa Airfield", + "latitude_deg": "46.428304", + "longitude_deg": "16.957569", + "elevation_ft": "466", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-ZA", + "municipality": "Nagykanizsa", + "scheduled_service": "no", + "gps_code": "LHNK" + }, + { + "id": "318136", + "ident": "LHNS", + "type": "small_airport", + "name": "Nagyszénás", + "latitude_deg": "46.6980556", + "longitude_deg": "20.6686111", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BE", + "municipality": "Nagyszénás", + "scheduled_service": "no", + "gps_code": "LHNS" + }, + { + "id": "4300", + "ident": "LHNY", + "type": "small_airport", + "name": "Nyíregyháza Airfield", + "latitude_deg": "47.983898", + "longitude_deg": "21.692301", + "elevation_ft": "338", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-SZ", + "municipality": "Nyíregyháza", + "scheduled_service": "no", + "gps_code": "LHNY", + "home_link": "http://www.trenerkft.hu/" + }, + { + "id": "4301", + "ident": "LHOY", + "type": "small_airport", + "name": "Őcsény Airfield", + "latitude_deg": "46.303902", + "longitude_deg": "18.769199", + "elevation_ft": "295", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-TO", + "municipality": "Őcsény", + "scheduled_service": "no", + "gps_code": "LHOY" + }, + { + "id": "325366", + "ident": "LHP", + "type": "closed", + "name": "Lehu Airport", + "latitude_deg": "-6.527493", + "longitude_deg": "155.712442", + "elevation_ft": "1770", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NSB", + "municipality": "Lehu", + "scheduled_service": "no", + "iata_code": "LHP", + "local_code": "LEHU" + }, + { + "id": "30239", + "ident": "LHPA", + "type": "small_airport", + "name": "Pápa Air Base", + "latitude_deg": "47.3636016846", + "longitude_deg": "17.5007991791", + "elevation_ft": "466", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-VE", + "municipality": "Pápa", + "scheduled_service": "no", + "gps_code": "LHPA", + "wikipedia_link": "https://en.wikipedia.org/wiki/P%C3%A1pa_Air_Base" + }, + { + "id": "4302", + "ident": "LHPP", + "type": "medium_airport", + "name": "Pécs-Pogány Airport", + "latitude_deg": "45.990898", + "longitude_deg": "18.240996", + "elevation_ft": "1000", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BA", + "municipality": "Pécs-Pogány", + "scheduled_service": "no", + "gps_code": "LHPP", + "iata_code": "PEV", + "home_link": "http://www.airport-pecs.hu/", + "wikipedia_link": "https://en.wikipedia.org/wiki/P%C3%A9cs-Pog%C3%A1ny_International_Airport", + "keywords": "Pecs South Airport" + }, + { + "id": "4303", + "ident": "LHPR", + "type": "medium_airport", + "name": "Győr-Pér International Airport", + "latitude_deg": "47.624401", + "longitude_deg": "17.813601", + "elevation_ft": "424", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-GS", + "municipality": "Győr", + "scheduled_service": "yes", + "gps_code": "LHPR", + "home_link": "http://www.gyor-perairport.hu/index.php?displang=eng", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gy%C5%91r-P%C3%A9r_International_Airport" + }, + { + "id": "4304", + "ident": "LHSA", + "type": "small_airport", + "name": "Szentkirályszabadja Airfield", + "latitude_deg": "47.0779", + "longitude_deg": "17.968399", + "elevation_ft": "919", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-VE", + "municipality": "Szentkirályszabadja", + "scheduled_service": "no", + "gps_code": "LHSA" + }, + { + "id": "317532", + "ident": "LHSB", + "type": "small_airport", + "name": "Szabadszállás", + "latitude_deg": "46.9002778", + "longitude_deg": "19.3663889", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-BK", + "scheduled_service": "no", + "gps_code": "LHSB" + }, + { + "id": "317567", + "ident": "LHSI", + "type": "small_airport", + "name": "Sitke", + "latitude_deg": "47.2355556", + "longitude_deg": "17.0263889", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-VA", + "scheduled_service": "no", + "gps_code": "LHSI" + }, + { + "id": "29681", + "ident": "LHSK", + "type": "small_airport", + "name": "Siófok-Kiliti Airfield", + "latitude_deg": "46.856899", + "longitude_deg": "18.0958", + "elevation_ft": "417", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-SO", + "municipality": "Siófok-Kiliti", + "scheduled_service": "no", + "gps_code": "LHSK", + "home_link": "http://www.bud.hu/english/about_us/siofok-kiliti_airport/" + }, + { + "id": "4305", + "ident": "LHSM", + "type": "medium_airport", + "name": "Hévíz–Balaton Airport", + "latitude_deg": "46.686391", + "longitude_deg": "17.159084", + "elevation_ft": "408", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-ZA", + "municipality": "Sármellék", + "scheduled_service": "yes", + "gps_code": "LHSM", + "iata_code": "SOB", + "home_link": "http://www.flybalaton.com/?null&lang=en", + "wikipedia_link": "https://en.wikipedia.org/wiki/S%C3%A1rmell%C3%A9k_International_Airport", + "keywords": "Sármellék International, FlyBatalon Airport, Batalon Airport, Sármellék Nemzetközi Repülőtér" + }, + { + "id": "4306", + "ident": "LHSN", + "type": "medium_airport", + "name": "Szolnok Air Base", + "latitude_deg": "47.122897", + "longitude_deg": "20.2355", + "elevation_ft": "322", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-JN", + "municipality": "Szolnok", + "scheduled_service": "no", + "gps_code": "LHSN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Szolnok_Air_Base", + "keywords": "Szolnok Air Base, MH86" + }, + { + "id": "30457", + "ident": "LHSS", + "type": "small_airport", + "name": "Szolnok-Szandaszőlős Sport Airfield", + "latitude_deg": "47.144402", + "longitude_deg": "20.1978", + "elevation_ft": "266", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-JN", + "municipality": "Szolnok-Szandaszőlős", + "scheduled_service": "no", + "gps_code": "LHSS" + }, + { + "id": "317566", + "ident": "LHSU", + "type": "small_airport", + "name": "Surjány", + "latitude_deg": "47.20072", + "longitude_deg": "20.48079", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-JN", + "scheduled_service": "no", + "gps_code": "LHSU" + }, + { + "id": "30456", + "ident": "LHSY", + "type": "small_airport", + "name": "Szombathely Airfield", + "latitude_deg": "47.279999", + "longitude_deg": "16.6264", + "elevation_ft": "732", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-VA", + "municipality": "Szombathely", + "scheduled_service": "no", + "gps_code": "LHSY" + }, + { + "id": "30455", + "ident": "LHSZ", + "type": "small_airport", + "name": "Szentes Aerodrome", + "latitude_deg": "46.61330032348633", + "longitude_deg": "20.282800674438477", + "elevation_ft": "259", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-CS", + "municipality": "Szentes", + "scheduled_service": "no", + "gps_code": "LHSZ" + }, + { + "id": "30003", + "ident": "LHTA", + "type": "medium_airport", + "name": "Taszár Air Base", + "latitude_deg": "46.39310073852539", + "longitude_deg": "17.917499542236328", + "elevation_ft": "531", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-SO", + "municipality": "Taszár", + "scheduled_service": "no", + "gps_code": "LHTA", + "iata_code": "TZR", + "keywords": "Kaland Taszar" + }, + { + "id": "317531", + "ident": "LHTE", + "type": "closed", + "name": "Terpes", + "latitude_deg": "47.974924", + "longitude_deg": "20.146968", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-HE", + "scheduled_service": "no", + "gps_code": "LHTE" + }, + { + "id": "30488", + "ident": "LHTL", + "type": "medium_airport", + "name": "Tököl Airport", + "latitude_deg": "47.345298767100005", + "longitude_deg": "18.980800628699996", + "elevation_ft": "318", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-PE", + "municipality": "Tököl", + "scheduled_service": "no", + "gps_code": "LHTL", + "home_link": "http://www.lhtl.hu/" + }, + { + "id": "318137", + "ident": "LHTM", + "type": "small_airport", + "name": "Tápiószentmárton", + "latitude_deg": "47.3136111", + "longitude_deg": "19.7738889", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-PE", + "municipality": "Tápiószentmárton", + "scheduled_service": "no", + "gps_code": "LHTM" + }, + { + "id": "30454", + "ident": "LHUD", + "type": "small_airport", + "name": "Szeged Airfield", + "latitude_deg": "46.246895", + "longitude_deg": "20.090799", + "elevation_ft": "249", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-CS", + "municipality": "Szeged", + "scheduled_service": "no", + "gps_code": "LHUD", + "home_link": "http://www.airportszeged.hu/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Szeged_Airport", + "keywords": "QZD" + }, + { + "id": "318138", + "ident": "LHUH", + "type": "small_airport", + "name": "Úrhida", + "latitude_deg": "47.1263889", + "longitude_deg": "18.3116667", + "elevation_ft": "633", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-FE", + "municipality": "Sárszentmihály", + "scheduled_service": "no", + "gps_code": "LHUH" + }, + { + "id": "318141", + "ident": "LHVE", + "type": "small_airport", + "name": "Veresegyház", + "latitude_deg": "47.6383333", + "longitude_deg": "19.2563889", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-PE", + "municipality": "Veresegyház", + "scheduled_service": "no", + "gps_code": "LHVE", + "keywords": "East Line Air Team" + }, + { + "id": "30575", + "ident": "LHZA", + "type": "small_airport", + "name": "Zalaegerszeg-Andráshida Airfield", + "latitude_deg": "46.884701", + "longitude_deg": "16.7889", + "elevation_ft": "617", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-ZA", + "municipality": "Zalaegerszeg", + "scheduled_service": "no", + "gps_code": "LHZA", + "keywords": "Zalaegerszeg,Andráshida" + }, + { + "id": "309480", + "ident": "LHZK", + "type": "small_airport", + "name": "Zalakaros Airfield", + "latitude_deg": "46.5539", + "longitude_deg": "17.15118", + "elevation_ft": "370", + "continent": "EU", + "iso_country": "HU", + "iso_region": "HU-ZA", + "municipality": "Zalakaros", + "scheduled_service": "no", + "gps_code": "LHZK" + }, + { + "id": "340540", + "ident": "LI-0001", + "type": "heliport", + "name": "Liechtenstein Hospital Helipad", + "latitude_deg": "47.134773", + "longitude_deg": "9.522753", + "elevation_ft": "1580", + "continent": "EU", + "iso_country": "LI", + "iso_region": "LI-11", + "municipality": "Vaduz", + "scheduled_service": "no", + "home_link": "https://www.landesspital.li/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Liechtensteinisches_Landesspital" + }, + { + "id": "317407", + "ident": "LIAA", + "type": "small_airport", + "name": "Aviosuperficie \"Alvaro Leonardi\"", + "latitude_deg": "42.573333", + "longitude_deg": "12.584444", + "elevation_ft": "374", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Terni", + "scheduled_service": "no", + "gps_code": "LIAA", + "local_code": "TRTER", + "home_link": "http://www.avioleonarditerni.it" + }, + { + "id": "29414", + "ident": "LIAF", + "type": "small_airport", + "name": "Foligno Airport", + "latitude_deg": "42.9328", + "longitude_deg": "12.7101", + "elevation_ft": "730", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Foligno (PG)", + "scheduled_service": "no", + "gps_code": "LIAF", + "local_code": "PG02" + }, + { + "id": "317856", + "ident": "LIAL", + "type": "small_airport", + "name": "Aviosuperficie Sant'Illuminato", + "latitude_deg": "43.353667", + "longitude_deg": "12.216667", + "elevation_ft": "984", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Città di Castello (PG)", + "scheduled_service": "no", + "gps_code": "LIAL", + "local_code": "PG07" + }, + { + "id": "4307", + "ident": "LIAP", + "type": "small_airport", + "name": "L'Aquila–Preturo Airport", + "latitude_deg": "42.379902", + "longitude_deg": "13.3092", + "elevation_ft": "2211", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-65", + "municipality": "L'Aquila", + "scheduled_service": "no", + "gps_code": "LIAP", + "iata_code": "QAQ", + "local_code": "AQ03", + "home_link": "http://www.aeroportodeiparchi.it/", + "wikipedia_link": "https://en.wikipedia.org/wiki/L%27Aquila%E2%80%93Preturo_Airport", + "keywords": "Parchi Airport, Preturo Airport, Aeroporto dei Parchi di I'Aquila Preturo" + }, + { + "id": "29415", + "ident": "LIAQ", + "type": "small_airport", + "name": "Aquino Airport", + "latitude_deg": "41.493566", + "longitude_deg": "13.717942", + "elevation_ft": "361", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Aquino", + "scheduled_service": "no", + "gps_code": "LIAQ", + "local_code": "FR01", + "wikipedia_link": "https://it.wikipedia.org/wiki/Aeroporto_di_Aquino" + }, + { + "id": "317010", + "ident": "LIAR", + "type": "small_airport", + "name": "Furbara Air Base", + "latitude_deg": "41.994532", + "longitude_deg": "12.0135", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Fubara", + "scheduled_service": "no", + "gps_code": "LIAR", + "wikipedia_link": "https://it.wikipedia.org/wiki/Aeroporto_di_Furbara" + }, + { + "id": "316448", + "ident": "LIAT", + "type": "small_airport", + "name": "Aviosuperficie Valdera/Capannoli", + "latitude_deg": "43.5919444444", + "longitude_deg": "10.6955555556", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Capannoli", + "scheduled_service": "no", + "gps_code": "LIAT", + "local_code": "PI04", + "home_link": "http://www.aeroclubdipisa.it", + "keywords": "Valdera, Aeroclub Pisa" + }, + { + "id": "29416", + "ident": "LIAU", + "type": "small_airport", + "name": "Capua Airport", + "latitude_deg": "41.116001", + "longitude_deg": "14.178", + "elevation_ft": "64", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Capua", + "scheduled_service": "no", + "gps_code": "LIAU", + "local_code": "CE03", + "wikipedia_link": "http://it.wikipedia.org/wiki/Aeroporto_di_Capua", + "keywords": "Oreste Salomone Airport" + }, + { + "id": "4308", + "ident": "LIBA", + "type": "medium_airport", + "name": "Amendola Air Base", + "latitude_deg": "41.541401", + "longitude_deg": "15.7181", + "elevation_ft": "183", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Foggia", + "scheduled_service": "no", + "gps_code": "LIBA", + "local_code": "FG06", + "keywords": "Luigi Rovelli" + }, + { + "id": "4309", + "ident": "LIBC", + "type": "medium_airport", + "name": "Crotone Airport", + "latitude_deg": "38.9972", + "longitude_deg": "17.0802", + "elevation_ft": "522", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-78", + "municipality": "Crotone", + "scheduled_service": "yes", + "gps_code": "LIBC", + "iata_code": "CRV", + "local_code": "KR01", + "home_link": "http://www.aeroporto.kr.it/cartaservizi_eng.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Crotone_Airport", + "keywords": "Sant'Anna Airport" + }, + { + "id": "4310", + "ident": "LIBD", + "type": "large_airport", + "name": "Bari Karol Wojtyła Airport", + "latitude_deg": "41.138901", + "longitude_deg": "16.760599", + "elevation_ft": "177", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Bari", + "scheduled_service": "yes", + "gps_code": "LIBD", + "iata_code": "BRI", + "local_code": "BA02", + "home_link": "http://www.seap-puglia.it/default.asp?idlingua=2&idcontenuto=25", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bari_Karol_Wojty%C5%82a_Airport", + "keywords": "Bari \"Karol Wojtyla\" International Airport, Palese Macchie Airport, Palese Airport" + }, + { + "id": "4311", + "ident": "LIBF", + "type": "medium_airport", + "name": "Foggia \"Gino Lisa\" Airport", + "latitude_deg": "41.432899", + "longitude_deg": "15.535", + "elevation_ft": "265", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Foggia", + "scheduled_service": "yes", + "gps_code": "LIBF", + "iata_code": "FOG", + "local_code": "FG05", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foggia_%22Gino_Lisa%22_Airport", + "keywords": "Foggia Airport" + }, + { + "id": "4312", + "ident": "LIBG", + "type": "medium_airport", + "name": "Taranto-Grottaglie \"Marcello Arlotta\" Airport", + "latitude_deg": "40.517502", + "longitude_deg": "17.4032", + "elevation_ft": "215", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Grottaglie", + "scheduled_service": "no", + "gps_code": "LIBG", + "iata_code": "TAR", + "local_code": "TA02", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taranto-Grottaglie_Airport", + "keywords": "M Arlotta, Taranto-Grottaglie Airport, Grottaglie Airport" + }, + { + "id": "317011", + "ident": "LIBH", + "type": "heliport", + "name": "Marina di Ginosa Heliport", + "latitude_deg": "40.424107", + "longitude_deg": "16.887501", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Marina di Ginosa", + "scheduled_service": "no", + "gps_code": "LIBH" + }, + { + "id": "317012", + "ident": "LIBJ", + "type": "heliport", + "name": "Helicopter Base \"Luigi Razza\"", + "latitude_deg": "38.640456", + "longitude_deg": "16.042989", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-78", + "municipality": "Vibo Valentia", + "scheduled_service": "no", + "gps_code": "LIBJ" + }, + { + "id": "4313", + "ident": "LIBN", + "type": "medium_airport", + "name": "Lecce Galatina Air Base", + "latitude_deg": "40.239201", + "longitude_deg": "18.133301", + "elevation_ft": "156", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "scheduled_service": "no", + "gps_code": "LIBN", + "iata_code": "LCC", + "local_code": "LE08", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lecce_Galatina_Air_Base", + "keywords": "Galatina" + }, + { + "id": "4314", + "ident": "LIBP", + "type": "medium_airport", + "name": "Abruzzo Airport", + "latitude_deg": "42.431702", + "longitude_deg": "14.1811", + "elevation_ft": "48", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-65", + "municipality": "Pescara", + "scheduled_service": "yes", + "gps_code": "LIBP", + "iata_code": "PSR", + "local_code": "PE01", + "home_link": "http://www.abruzzo-airport.it/eng/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abruzzo_Airport", + "keywords": "Pescara, Abruzzo Pasquale Liberi International" + }, + { + "id": "4315", + "ident": "LIBR", + "type": "large_airport", + "name": "Brindisi Airport", + "latitude_deg": "40.6576", + "longitude_deg": "17.947001", + "elevation_ft": "47", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Brindisi", + "scheduled_service": "yes", + "gps_code": "LIBR", + "iata_code": "BDS", + "local_code": "BR03", + "home_link": "http://www.seap-puglia.it/default.asp?idlingua=2&idcontenuto=29", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brindisi_Airport", + "keywords": "Brindisi Papola Casale Airport, Brindisi Salento Airport, Brindisi Casale Antonio Papolo Airport, Salento Airport" + }, + { + "id": "4316", + "ident": "LIBV", + "type": "medium_airport", + "name": "Gioia Del Colle Air Base", + "latitude_deg": "40.767799", + "longitude_deg": "16.9333", + "elevation_ft": "1187", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Gioia Del Colle (BA)", + "scheduled_service": "no", + "gps_code": "LIBV", + "local_code": "BA07", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gioia_del_Colle_Air_Base", + "keywords": "A Ramirez" + }, + { + "id": "31821", + "ident": "LIBX", + "type": "closed", + "name": "Martina Franca Air Force Base", + "latitude_deg": "40.700001", + "longitude_deg": "17.333", + "elevation_ft": "1467", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Martina Franca", + "scheduled_service": "no", + "gps_code": "LIBX" + }, + { + "id": "4317", + "ident": "LICA", + "type": "medium_airport", + "name": "Lamezia Terme Airport", + "latitude_deg": "38.905399", + "longitude_deg": "16.2423", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-78", + "municipality": "Lamezia Terme (CZ)", + "scheduled_service": "yes", + "gps_code": "LICA", + "iata_code": "SUF", + "local_code": "CZ02", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lamezia_Terme_International_Airport" + }, + { + "id": "298716", + "ident": "LICB", + "type": "medium_airport", + "name": "Comiso Airport", + "latitude_deg": "36.994601", + "longitude_deg": "14.607182", + "elevation_ft": "623", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Comiso", + "scheduled_service": "yes", + "gps_code": "LICB", + "iata_code": "CIY", + "local_code": "RG06", + "home_link": "http://www.aeroportodicomiso.it/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Comiso_Airport", + "keywords": "Vincenzo Magliocco Airport, Aeroporto di Comiso" + }, + { + "id": "4318", + "ident": "LICC", + "type": "large_airport", + "name": "Catania-Fontanarossa Airport", + "latitude_deg": "37.466801", + "longitude_deg": "15.0664", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Catania", + "scheduled_service": "yes", + "gps_code": "LICC", + "iata_code": "CTA", + "local_code": "CT03", + "home_link": "http://www.aeroporto.catania.it/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Catania-Fontanarossa_Airport", + "keywords": "Lanza Di Trabie, Catania-Fontanarossa Vincenzo Bellini" + }, + { + "id": "4319", + "ident": "LICD", + "type": "medium_airport", + "name": "Lampedusa Airport", + "latitude_deg": "35.497898", + "longitude_deg": "12.6181", + "elevation_ft": "70", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Lampedusa", + "scheduled_service": "yes", + "gps_code": "LICD", + "iata_code": "LMP", + "local_code": "AG01", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lampedusa_Airport" + }, + { + "id": "4320", + "ident": "LICG", + "type": "medium_airport", + "name": "Pantelleria Airport", + "latitude_deg": "36.816502", + "longitude_deg": "11.9689", + "elevation_ft": "628", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Pantelleria (TP)", + "scheduled_service": "yes", + "gps_code": "LICG", + "iata_code": "PNL", + "local_code": "TP02", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pantelleria_Airport", + "keywords": "I D'Amico" + }, + { + "id": "4321", + "ident": "LICJ", + "type": "large_airport", + "name": "Falcone–Borsellino Airport", + "latitude_deg": "38.175999", + "longitude_deg": "13.091", + "elevation_ft": "65", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Palermo", + "scheduled_service": "yes", + "gps_code": "LICJ", + "iata_code": "PMO", + "local_code": "PA03", + "home_link": "http://www.gesap.it/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Falcone%E2%80%93Borsellino_Airport", + "keywords": "Palermo Airport, Punta Raisi Airport" + }, + { + "id": "31822", + "ident": "LICL", + "type": "small_airport", + "name": "Aviosuperficie Airone", + "latitude_deg": "37.113977", + "longitude_deg": "14.214206", + "elevation_ft": "82", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Gela", + "scheduled_service": "no" + }, + { + "id": "4322", + "ident": "LICP", + "type": "medium_airport", + "name": "Palermo-Boccadifalco Airport", + "latitude_deg": "38.110802", + "longitude_deg": "13.3133", + "elevation_ft": "345", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Palermo", + "scheduled_service": "no", + "gps_code": "LICP", + "local_code": "PA04", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palermo%E2%80%93Boccadifalco_Airport", + "keywords": "Emanuele Notarbartolo Airport" + }, + { + "id": "4323", + "ident": "LICR", + "type": "medium_airport", + "name": "Reggio Calabria Airport", + "latitude_deg": "38.071201", + "longitude_deg": "15.6516", + "elevation_ft": "96", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-78", + "municipality": "Reggio Calabria", + "scheduled_service": "yes", + "gps_code": "LICR", + "iata_code": "REG", + "local_code": "RC01", + "wikipedia_link": "https://en.wikipedia.org/wiki/Reggio_Calabria_Airport", + "keywords": "Tito Minniti" + }, + { + "id": "4324", + "ident": "LICT", + "type": "medium_airport", + "name": "Vincenzo Florio Airport Trapani-Birgi", + "latitude_deg": "37.9114", + "longitude_deg": "12.488", + "elevation_ft": "25", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Trapani (TP)", + "scheduled_service": "yes", + "gps_code": "LICT", + "iata_code": "TPS", + "local_code": "TP01", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vincenzo_Florio_Airport_Trapani%E2%80%93Birgi", + "keywords": "Vincenzo Florio Airport, Trapani Airport, Aeroporto Vincenzo Florio di Trapani-Birgi" + }, + { + "id": "4325", + "ident": "LICZ", + "type": "medium_airport", + "name": "Sigonella Navy Air Base", + "latitude_deg": "37.401699", + "longitude_deg": "14.9224", + "elevation_ft": "79", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-82", + "municipality": "Sigonella (CT)", + "scheduled_service": "no", + "gps_code": "LICZ", + "iata_code": "NSY", + "local_code": "CT04", + "keywords": "C Di Palma" + }, + { + "id": "4326", + "ident": "LIDA", + "type": "small_airport", + "name": "Asiago Airport", + "latitude_deg": "45.886902", + "longitude_deg": "11.5169", + "elevation_ft": "3409", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Vicenza", + "scheduled_service": "no", + "gps_code": "LIDA", + "local_code": "VI06" + }, + { + "id": "29417", + "ident": "LIDB", + "type": "small_airport", + "name": "Belluno Airport", + "latitude_deg": "46.166549", + "longitude_deg": "12.250389", + "elevation_ft": "1240", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Belluno (BL)", + "scheduled_service": "no", + "gps_code": "LIDB", + "iata_code": "BLX", + "local_code": "BL05", + "home_link": "http://www.aeroclubbelluno.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Belluno_Airport" + }, + { + "id": "31823", + "ident": "LIDC", + "type": "small_airport", + "name": "Cà Negra Airport", + "latitude_deg": "45.08300018310547", + "longitude_deg": "12.149999618530273", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Cà Negra", + "scheduled_service": "no", + "gps_code": "LIDC" + }, + { + "id": "4327", + "ident": "LIDE", + "type": "small_airport", + "name": "Reggio Emilia Airport", + "latitude_deg": "44.698299", + "longitude_deg": "10.6628", + "elevation_ft": "152", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Reggio Emilia", + "scheduled_service": "no", + "gps_code": "LIDE", + "local_code": "RE01", + "keywords": "Reggio Emilia Aeroclub" + }, + { + "id": "29418", + "ident": "LIDF", + "type": "small_airport", + "name": "Fano Airport", + "latitude_deg": "43.824032", + "longitude_deg": "13.02588", + "elevation_ft": "54", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-57", + "municipality": "Fano (PS)", + "scheduled_service": "no", + "gps_code": "LIDF", + "local_code": "PS03", + "home_link": "http://www.flyingwork.it/html/aeroporto.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fano_Airport", + "keywords": "Aeroporto di Fano, Fano Airfield" + }, + { + "id": "29419", + "ident": "LIDG", + "type": "small_airport", + "name": "Lugo Di Romagna Airport", + "latitude_deg": "44.398201", + "longitude_deg": "11.8548", + "elevation_ft": "62", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Lugo", + "scheduled_service": "no", + "gps_code": "LIDG", + "local_code": "RA05", + "home_link": "http://www.aeroclublugo.it/" + }, + { + "id": "29420", + "ident": "LIDH", + "type": "small_airport", + "name": "Thiene Airport", + "latitude_deg": "45.675701", + "longitude_deg": "11.4965", + "elevation_ft": "335", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Vicenza", + "scheduled_service": "no", + "gps_code": "LIDH", + "local_code": "VI07" + }, + { + "id": "31824", + "ident": "LIDI", + "type": "closed", + "name": "Cortina Airport", + "latitude_deg": "46.573001861600005", + "longitude_deg": "12.118000030500001", + "elevation_ft": "4213", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Cortina D'Ampezzo", + "scheduled_service": "no", + "gps_code": "LIDI", + "iata_code": "CDF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cortina_Airport", + "keywords": "Fiames Airport" + }, + { + "id": "317721", + "ident": "LIDK", + "type": "heliport", + "name": "Casarsa della Delizia Air Base", + "latitude_deg": "45.953167", + "longitude_deg": "12.816717", + "elevation_ft": "125", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Casarsa della Delizia (UD)", + "scheduled_service": "no", + "gps_code": "LIDK", + "local_code": "UD19" + }, + { + "id": "29421", + "ident": "LIDL", + "type": "small_airport", + "name": "Legnago Airport", + "latitude_deg": "45.133202", + "longitude_deg": "11.2922", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Legnago", + "scheduled_service": "no", + "gps_code": "LIDL", + "local_code": "VR09" + }, + { + "id": "44004", + "ident": "LIDM", + "type": "closed", + "name": "Mantova Airport", + "latitude_deg": "45.135834", + "longitude_deg": "10.794444", + "elevation_ft": "57", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Mantova", + "scheduled_service": "no", + "gps_code": "LIDM" + }, + { + "id": "29422", + "ident": "LIDP", + "type": "small_airport", + "name": "Pavullo Airport", + "latitude_deg": "44.322399", + "longitude_deg": "10.8317", + "elevation_ft": "2244", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Pavullo (MO)", + "scheduled_service": "no", + "gps_code": "LIDP", + "local_code": "MO12" + }, + { + "id": "4328", + "ident": "LIDR", + "type": "small_airport", + "name": "Ravenna Airport", + "latitude_deg": "44.36391", + "longitude_deg": "12.224978", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Ravenna", + "scheduled_service": "no", + "gps_code": "LIDR", + "iata_code": "RAN", + "local_code": "RA06", + "home_link": "http://www.aeroclubravenna.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ravenna%20Airport", + "keywords": "Foligno, Gastone Novelli, Ravenna Aero Club" + }, + { + "id": "331921", + "ident": "LIDS", + "type": "closed", + "name": "San Leo", + "latitude_deg": "43.9194444", + "longitude_deg": "12.32", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-57", + "scheduled_service": "no", + "gps_code": "LIDS" + }, + { + "id": "4329", + "ident": "LIDT", + "type": "medium_airport", + "name": "Trento-Mattarello Airport", + "latitude_deg": "46.0214", + "longitude_deg": "11.1242", + "elevation_ft": "610", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-32", + "municipality": "Trento (TN)", + "scheduled_service": "no", + "gps_code": "LIDT", + "local_code": "TN01", + "home_link": "http://www.aeroportocaproni.it/", + "wikipedia_link": "http://it.wikipedia.org/wiki/Aeroporto_di_Trento-Mattarello", + "keywords": "Gianni Caproni Trento" + }, + { + "id": "29423", + "ident": "LIDU", + "type": "small_airport", + "name": "Carpi-Budrione Airfield", + "latitude_deg": "44.835201", + "longitude_deg": "10.8716", + "elevation_ft": "69", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Carpi (MO)", + "scheduled_service": "no", + "gps_code": "LIDU", + "local_code": "MO10", + "wikipedia_link": "http://it.wikipedia.org/wiki/Aeroporto_di_Carpi-Budrione" + }, + { + "id": "30298", + "ident": "LIDV", + "type": "small_airport", + "name": "Prati Vecchi D'Aguscello Airport", + "latitude_deg": "44.790298", + "longitude_deg": "11.6692", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Ferrara (FE)", + "scheduled_service": "no", + "gps_code": "LIDV", + "local_code": "FE02" + }, + { + "id": "30380", + "ident": "LIDW", + "type": "small_airport", + "name": "Aviosuperficie G. Carrer", + "latitude_deg": "45.6992", + "longitude_deg": "12.5431", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Salgareda (TV)", + "scheduled_service": "no", + "gps_code": "LIDW", + "local_code": "TV03", + "keywords": "Carrer, G.Carrer" + }, + { + "id": "4330", + "ident": "LIEA", + "type": "medium_airport", + "name": "Alghero-Fertilia Airport", + "latitude_deg": "40.632099", + "longitude_deg": "8.29077", + "elevation_ft": "87", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Alghero", + "scheduled_service": "yes", + "gps_code": "LIEA", + "iata_code": "AHO", + "local_code": "SS02", + "home_link": "http://www.aeroportodialghero.it/home_en.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alghero-Fertilia_Airport", + "keywords": "Alghero Airport, Sardinia, Alghero - Riviera del Corallo Airport" + }, + { + "id": "4331", + "ident": "LIED", + "type": "medium_airport", + "name": "Decimomannu Air Base", + "latitude_deg": "39.354198", + "longitude_deg": "8.97248", + "elevation_ft": "100", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Decimomannu", + "scheduled_service": "no", + "gps_code": "LIED", + "iata_code": "DCI", + "local_code": "CA12", + "keywords": "G. Farina" + }, + { + "id": "4332", + "ident": "LIEE", + "type": "large_airport", + "name": "Cagliari Elmas Airport", + "latitude_deg": "39.251499", + "longitude_deg": "9.05428", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Cagliari", + "scheduled_service": "yes", + "gps_code": "LIEE", + "iata_code": "CAG", + "local_code": "CA07", + "home_link": "http://www.cagliariairport.it/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cagliari_Elmas_Airport", + "keywords": "Cagliari Airport,Elmas" + }, + { + "id": "4333", + "ident": "LIEO", + "type": "medium_airport", + "name": "Olbia Costa Smeralda Airport", + "latitude_deg": "40.898701", + "longitude_deg": "9.51763", + "elevation_ft": "37", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Olbia (SS)", + "scheduled_service": "yes", + "gps_code": "LIEO", + "iata_code": "OLB", + "local_code": "SS03", + "wikipedia_link": "https://en.wikipedia.org/wiki/Olbia_Costa_Smeralda_Airport" + }, + { + "id": "29424", + "ident": "LIER", + "type": "small_airport", + "name": "Oristano-Fenosu Airport", + "latitude_deg": "39.895308", + "longitude_deg": "8.642661", + "elevation_ft": "36", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Oristano", + "scheduled_service": "no", + "gps_code": "LIER", + "iata_code": "FNU", + "local_code": "OR01", + "home_link": "http://www.sogeaor.it", + "wikipedia_link": "http://it.wikipedia.org/wiki/Aeroporto_di_Oristano-Fenosu", + "keywords": "QOS" + }, + { + "id": "4334", + "ident": "LIET", + "type": "medium_airport", + "name": "Tortolì Airport", + "latitude_deg": "39.9188", + "longitude_deg": "9.68298", + "elevation_ft": "23", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-88", + "municipality": "Arbatax", + "scheduled_service": "no", + "gps_code": "LIET", + "iata_code": "TTB", + "local_code": "NU01", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tortol%C3%AC_Airport", + "keywords": "Tortolì-Arbatax airport" + }, + { + "id": "46548", + "ident": "LIKD", + "type": "small_airport", + "name": "Torraccia Airfield", + "latitude_deg": "43.948895", + "longitude_deg": "12.511411", + "elevation_ft": "787", + "continent": "EU", + "iso_country": "SM", + "iso_region": "SM-03", + "municipality": "Domagnano", + "scheduled_service": "no", + "gps_code": "LIKD", + "local_code": "RSM01", + "wikipedia_link": "https://it.wikipedia.org/wiki/Aviosuperficie_ed_elisuperficie_di_Torraccia", + "keywords": "Torraccia" + }, + { + "id": "29425", + "ident": "LILA", + "type": "medium_airport", + "name": "Alessandria Airport", + "latitude_deg": "44.925201", + "longitude_deg": "8.62513", + "elevation_ft": "299", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Alessandria", + "scheduled_service": "no", + "gps_code": "LILA", + "local_code": "AL03", + "home_link": "http://www.aeroclubalessandria.it/", + "wikipedia_link": "https://it.wikipedia.org/wiki/Aeroporto_di_Alessandria" + }, + { + "id": "29426", + "ident": "LILB", + "type": "small_airport", + "name": "Alzate Brianza Airport", + "latitude_deg": "45.76996", + "longitude_deg": "9.162866", + "elevation_ft": "1260", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Como", + "scheduled_service": "no", + "gps_code": "LILB", + "local_code": "CO03", + "home_link": "http://www.avl.it/" + }, + { + "id": "29748", + "ident": "LILC", + "type": "small_airport", + "name": "Calcinate Del Pesce Airport", + "latitude_deg": "45.8097", + "longitude_deg": "8.76806", + "elevation_ft": "797", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Varese (VA)", + "scheduled_service": "no", + "gps_code": "LILC", + "local_code": "VA01" + }, + { + "id": "4335", + "ident": "LILE", + "type": "medium_airport", + "name": "Biella-Cerrione Airport", + "latitude_deg": "45.4953", + "longitude_deg": "8.10278", + "elevation_ft": "920", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Biella (BI)", + "scheduled_service": "no", + "gps_code": "LILE", + "local_code": "BI03", + "home_link": "http://www.aeroportobiella.it/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Biella-Cerrione_Airport" + }, + { + "id": "29427", + "ident": "LILG", + "type": "small_airport", + "name": "Vergiate Airfield", + "latitude_deg": "45.7132", + "longitude_deg": "8.69912", + "elevation_ft": "863", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Milano", + "scheduled_service": "no", + "gps_code": "LILG", + "local_code": "VA03" + }, + { + "id": "4336", + "ident": "LILH", + "type": "small_airport", + "name": "Voghera-Rivanazzano Airport", + "latitude_deg": "44.952", + "longitude_deg": "9.01653", + "elevation_ft": "423", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Voghera (PV)", + "scheduled_service": "no", + "gps_code": "LILH", + "local_code": "PV06", + "home_link": "http://www.aeroportovoghera.it/presentazione.html" + }, + { + "id": "29428", + "ident": "LILI", + "type": "medium_airport", + "name": "Vercelli Airport", + "latitude_deg": "45.310233", + "longitude_deg": "8.417935", + "elevation_ft": "417", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Vercelli", + "scheduled_service": "no", + "gps_code": "LILI", + "local_code": "VC04", + "home_link": "http://www.aeroclubvercelli.it/", + "wikipedia_link": "https://it.wikipedia.org/wiki/Aeroporto_di_Vercelli", + "keywords": "Carlo del Prete" + }, + { + "id": "29429", + "ident": "LILM", + "type": "medium_airport", + "name": "Casale Monferrato Airport", + "latitude_deg": "45.111198", + "longitude_deg": "8.45603", + "elevation_ft": "377", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Casale Monferrato", + "scheduled_service": "no", + "gps_code": "LILM", + "local_code": "AL04", + "home_link": "http://www.aeroclubcasale.it/", + "wikipedia_link": "https://it.wikipedia.org/wiki/Aeroporto_di_Casale_Monferrato" + }, + { + "id": "4337", + "ident": "LILN", + "type": "medium_airport", + "name": "Varese-Venegono Airport", + "latitude_deg": "45.742199", + "longitude_deg": "8.888233", + "elevation_ft": "1100", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Varese", + "scheduled_service": "no", + "gps_code": "LILN", + "local_code": "VA02", + "home_link": "http://www.aeroclubvarese.it/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Varese-Venegono_Airport", + "keywords": "QVA" + }, + { + "id": "30429", + "ident": "LILO", + "type": "small_airport", + "name": "Sondrio Caiolo Airport", + "latitude_deg": "46.154202", + "longitude_deg": "9.79806", + "elevation_ft": "899", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Caiolo", + "scheduled_service": "no", + "gps_code": "LILO", + "local_code": "SO01" + }, + { + "id": "29430", + "ident": "LILQ", + "type": "small_airport", + "name": "Massa Cinquale Airfield", + "latitude_deg": "43.985278", + "longitude_deg": "10.143056", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Marina di Massa (MS)", + "scheduled_service": "no", + "gps_code": "LILQ", + "local_code": "MS01", + "home_link": "http://www.aeroclubmarinadimassa.it/", + "keywords": "QMM" + }, + { + "id": "29431", + "ident": "LILR", + "type": "small_airport", + "name": "Cremona-Migliaro Airfield", + "latitude_deg": "45.1674", + "longitude_deg": "10.0019", + "elevation_ft": "161", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Cremona", + "scheduled_service": "no", + "gps_code": "LILR", + "local_code": "CR04", + "wikipedia_link": "http://it.wikipedia.org/wiki/Aeroporto_di_Cremona-Migliaro" + }, + { + "id": "44002", + "ident": "LILS", + "type": "heliport", + "name": "Clusone Heliport", + "latitude_deg": "45.883888244628906", + "longitude_deg": "9.966388702392578", + "elevation_ft": "1900", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Clusone", + "scheduled_service": "no", + "gps_code": "LILS" + }, + { + "id": "316388", + "ident": "LILT", + "type": "closed", + "name": "Cerrina", + "latitude_deg": "45.005", + "longitude_deg": "7.492778", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "scheduled_service": "no", + "gps_code": "LILT" + }, + { + "id": "29432", + "ident": "LILV", + "type": "small_airport", + "name": "Valbrembo Airport", + "latitude_deg": "45.720798", + "longitude_deg": "9.59347", + "elevation_ft": "745", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Bergamo (BG)", + "scheduled_service": "no", + "gps_code": "LILV", + "local_code": "BG02" + }, + { + "id": "44003", + "ident": "LILY", + "type": "seaplane_base", + "name": "Como (Idroscalo - Water Ad) Hidroport", + "latitude_deg": "45.814701", + "longitude_deg": "9.06972", + "elevation_ft": "663", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Como (CO)", + "scheduled_service": "no", + "gps_code": "LILY", + "local_code": "CO02" + }, + { + "id": "4338", + "ident": "LIMA", + "type": "medium_airport", + "name": "Torino-Aeritalia Airport", + "latitude_deg": "45.086399", + "longitude_deg": "7.60337", + "elevation_ft": "943", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Torino", + "scheduled_service": "no", + "gps_code": "LIMA", + "local_code": "TO12", + "home_link": "http://www.aeroclubtorino.it/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Torino-Aeritalia_Airport", + "keywords": "Torino Aero Club" + }, + { + "id": "4339", + "ident": "LIMB", + "type": "small_airport", + "name": "Milano-Bresso Airfield", + "latitude_deg": "45.542198", + "longitude_deg": "9.20333", + "elevation_ft": "484", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Milano", + "scheduled_service": "no", + "gps_code": "LIMB", + "local_code": "MI08", + "home_link": "http://www.aeroclubmilano.it", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bresso_Airport", + "keywords": "Bresso, Aeroclub Milano" + }, + { + "id": "4340", + "ident": "LIMC", + "type": "large_airport", + "name": "Malpensa International Airport", + "latitude_deg": "45.6306", + "longitude_deg": "8.72811", + "elevation_ft": "768", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Milan", + "scheduled_service": "yes", + "gps_code": "LIMC", + "iata_code": "MXP", + "local_code": "MI12", + "home_link": "http://www.sea-aeroportimilano.it/en/malpensa/index.phtml", + "wikipedia_link": "https://en.wikipedia.org/wiki/Malpensa_Airport", + "keywords": "MIL" + }, + { + "id": "4341", + "ident": "LIME", + "type": "large_airport", + "name": "Milan Bergamo Airport", + "latitude_deg": "45.673901", + "longitude_deg": "9.70417", + "elevation_ft": "782", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Milan", + "scheduled_service": "yes", + "gps_code": "LIME", + "iata_code": "BGY", + "local_code": "BG01", + "home_link": "http://www.sacbo.it/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orio_al_Serio_International_Airport", + "keywords": "Bergamo Orio al Serio Airport, Il Caravaggio International Airport" + }, + { + "id": "4342", + "ident": "LIMF", + "type": "large_airport", + "name": "Turin Airport", + "latitude_deg": "45.200802", + "longitude_deg": "7.64963", + "elevation_ft": "989", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Torino", + "scheduled_service": "yes", + "gps_code": "LIMF", + "iata_code": "TRN", + "local_code": "TO11", + "home_link": "http://www.aeroportoditorino.it/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Turin_International_Airport", + "keywords": "Torino-Caselle Airport, Sandro Pertini Airport, Turin-Caselle Airport" + }, + { + "id": "4343", + "ident": "LIMG", + "type": "medium_airport", + "name": "Villanova D'Albenga International Airport", + "latitude_deg": "44.050598", + "longitude_deg": "8.12743", + "elevation_ft": "148", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-42", + "municipality": "Albenga (SV)", + "scheduled_service": "no", + "gps_code": "LIMG", + "iata_code": "ALL", + "local_code": "SV01", + "home_link": "http://www.rivierairport.it/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Villanova_d'Albenga_International_Airport", + "keywords": "C. Panero Airport" + }, + { + "id": "333827", + "ident": "LIMH", + "type": "heliport", + "name": "Pian Rosà", + "latitude_deg": "45.933422", + "longitude_deg": "7.709344", + "elevation_ft": "11443", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-23", + "scheduled_service": "no", + "gps_code": "LIMH", + "keywords": "Testa Grigia, Theodul Glacier, Plateau Rosà" + }, + { + "id": "4344", + "ident": "LIMJ", + "type": "medium_airport", + "name": "Genoa Cristoforo Colombo Airport", + "latitude_deg": "44.4133", + "longitude_deg": "8.8375", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-42", + "municipality": "Genova", + "scheduled_service": "yes", + "gps_code": "LIMJ", + "iata_code": "GOA", + "local_code": "GE01", + "home_link": "http://www.aeroportodigenova.com/en/home/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Genoa_Cristoforo_Colombo_Airport", + "keywords": "Genova Sestri, Sestri Cristoforo Colombo Airport, Cristoforo Colombo Airport" + }, + { + "id": "4345", + "ident": "LIML", + "type": "medium_airport", + "name": "Milano Linate Airport", + "latitude_deg": "45.445099", + "longitude_deg": "9.27674", + "elevation_ft": "353", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Milan", + "scheduled_service": "yes", + "gps_code": "LIML", + "iata_code": "LIN", + "local_code": "MI11", + "home_link": "http://www.sea-aeroportimilano.it/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Linate_Airport", + "keywords": "E Forlanini" + }, + { + "id": "4346", + "ident": "LIMN", + "type": "medium_airport", + "name": "Cameri Air Base [MIL]", + "latitude_deg": "45.529598", + "longitude_deg": "8.66922", + "elevation_ft": "586", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Cameri (NO)", + "scheduled_service": "no", + "gps_code": "LIMN", + "local_code": "NO08", + "home_link": "http://web.archive.org/web/20070617100034/www.aeronautica.difesa.it/CSA/CBR/53Stormo/Cennistorici.asp", + "wikipedia_link": "http://it.wikipedia.org/wiki/Aeroporto_di_Cameri", + "keywords": "Silvio E Natale Palli" + }, + { + "id": "4347", + "ident": "LIMP", + "type": "medium_airport", + "name": "Parma Airport", + "latitude_deg": "44.824501", + "longitude_deg": "10.2964", + "elevation_ft": "161", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Parma", + "scheduled_service": "yes", + "gps_code": "LIMP", + "iata_code": "PMF", + "local_code": "PR03", + "wikipedia_link": "https://en.wikipedia.org/wiki/Parma_Airport" + }, + { + "id": "30196", + "ident": "LIMR", + "type": "medium_airport", + "name": "Novi Ligure Airport", + "latitude_deg": "44.779999", + "longitude_deg": "8.78639", + "elevation_ft": "607", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Novi Ligure", + "scheduled_service": "no", + "gps_code": "LIMR", + "local_code": "AL05", + "home_link": "http://www.voloavelanovi.it/", + "wikipedia_link": "https://it.wikipedia.org/wiki/Aeroporto_di_Novi_Ligure" + }, + { + "id": "4348", + "ident": "LIMS", + "type": "medium_airport", + "name": "Piacenza San Damiano Air Base", + "latitude_deg": "44.913102", + "longitude_deg": "9.723322", + "elevation_ft": "456", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Piacenza", + "scheduled_service": "no", + "gps_code": "LIMS", + "local_code": "PC08", + "wikipedia_link": "https://en.wikipedia.org/wiki/Piacenza-San_Damiano_Air_Base", + "keywords": "San Damiano, QPZ" + }, + { + "id": "4349", + "ident": "LIMW", + "type": "medium_airport", + "name": "Aosta Airport", + "latitude_deg": "45.738499", + "longitude_deg": "7.36872", + "elevation_ft": "1791", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-23", + "municipality": "Aosta", + "scheduled_service": "no", + "gps_code": "LIMW", + "iata_code": "AOT", + "local_code": "AO01", + "home_link": "http://www.avda-aosta.it/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aosta_Airport" + }, + { + "id": "4350", + "ident": "LIMZ", + "type": "medium_airport", + "name": "Cuneo International Airport", + "latitude_deg": "44.547001", + "longitude_deg": "7.62322", + "elevation_ft": "1267", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Cuneo", + "scheduled_service": "yes", + "gps_code": "LIMZ", + "iata_code": "CUF", + "local_code": "CN03", + "home_link": "http://www.aeroporto.cuneo.it/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cuneo_International_Airport", + "keywords": "Cuneo Levaldigi Airport, Turin Cuneo Airport" + }, + { + "id": "319115", + "ident": "LINF", + "type": "small_airport", + "name": "Fermano Airfield", + "latitude_deg": "43.22652", + "longitude_deg": "13.74252", + "elevation_ft": "49", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-57", + "municipality": "Fermo (FM)", + "scheduled_service": "no", + "gps_code": "LINF", + "local_code": "APFRM", + "keywords": "Aviosuperficie del Fermano" + }, + { + "id": "29433", + "ident": "LINL", + "type": "small_airport", + "name": "Lecce-San Cataldo Airport", + "latitude_deg": "40.35974", + "longitude_deg": "18.297923", + "elevation_ft": "59", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Lecce", + "scheduled_service": "no", + "gps_code": "LINL", + "local_code": "LE06", + "home_link": "http://www.aeroportolecce.it", + "wikipedia_link": "http://it.wikipedia.org/wiki/Aeroporto_di_Lecce-San_Cataldo", + "keywords": "Lepore, Lepore Airport, Lecce-Lepore Airport" + }, + { + "id": "29443", + "ident": "LIPA", + "type": "medium_airport", + "name": "Aviano Air Base", + "latitude_deg": "46.031898", + "longitude_deg": "12.596503", + "elevation_ft": "410", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Aviano (PN)", + "scheduled_service": "no", + "gps_code": "LIPA", + "iata_code": "AVB", + "home_link": "http://www.aviano.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aviano_Air_Base", + "keywords": "Pagliano e Gori Airport, LIYW" + }, + { + "id": "4352", + "ident": "LIPB", + "type": "medium_airport", + "name": "Bolzano Airport", + "latitude_deg": "46.460201", + "longitude_deg": "11.3264", + "elevation_ft": "789", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-32", + "municipality": "Bolzano", + "scheduled_service": "yes", + "gps_code": "LIPB", + "iata_code": "BZO", + "local_code": "BZ01", + "home_link": "http://www.abd-airport.it/en/home.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bolzano_Airport", + "keywords": "G Sabelli" + }, + { + "id": "4353", + "ident": "LIPC", + "type": "medium_airport", + "name": "Cervia Air Base", + "latitude_deg": "44.224201", + "longitude_deg": "12.3072", + "elevation_ft": "18", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Cervia", + "scheduled_service": "no", + "gps_code": "LIPC", + "local_code": "RA08", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cervia_Air_Force_Base", + "keywords": "G Cenni, Pisignano" + }, + { + "id": "29434", + "ident": "LIPD", + "type": "small_airport", + "name": "Udine-Campoformido Air Base", + "latitude_deg": "46.0322", + "longitude_deg": "13.1868", + "elevation_ft": "305", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Udine", + "scheduled_service": "no", + "gps_code": "LIPD", + "iata_code": "UDN", + "local_code": "UD07" + }, + { + "id": "4354", + "ident": "LIPE", + "type": "large_airport", + "name": "Bologna Guglielmo Marconi Airport", + "latitude_deg": "44.5354", + "longitude_deg": "11.2887", + "elevation_ft": "123", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Bologna", + "scheduled_service": "yes", + "gps_code": "LIPE", + "iata_code": "BLQ", + "local_code": "BO08", + "home_link": "http://www.bologna-airport.it/?LN=UK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bologna_Airport", + "keywords": "Guglielmo Marconi Airport, Borgo Panigale Airport" + }, + { + "id": "29435", + "ident": "LIPF", + "type": "small_airport", + "name": "Ferrara Airport", + "latitude_deg": "44.816002", + "longitude_deg": "11.6134", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Ferrara", + "scheduled_service": "no", + "gps_code": "LIPF", + "local_code": "FE05" + }, + { + "id": "29436", + "ident": "LIPG", + "type": "small_airport", + "name": "Gorizia Duca d'Aosta Airport", + "latitude_deg": "45.906898", + "longitude_deg": "13.5993", + "elevation_ft": "207", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Gorizia", + "scheduled_service": "no", + "gps_code": "LIPG", + "local_code": "GO01" + }, + { + "id": "4355", + "ident": "LIPH", + "type": "medium_airport", + "name": "Treviso-Sant'Angelo Airport", + "latitude_deg": "45.648399", + "longitude_deg": "12.1944", + "elevation_ft": "59", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Treviso", + "scheduled_service": "yes", + "gps_code": "LIPH", + "iata_code": "TSF", + "local_code": "TV01", + "home_link": "http://www.trevisoairport.it/tsf/index.jsp?_requestid=677517&language=en", + "wikipedia_link": "https://en.wikipedia.org/wiki/Treviso_Airport", + "keywords": "Venice, Antonio Canova Terminal, Treviso Airport" + }, + { + "id": "4356", + "ident": "LIPI", + "type": "medium_airport", + "name": "Rivolto Air Base", + "latitude_deg": "45.978699", + "longitude_deg": "13.0493", + "elevation_ft": "179", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Codroipo", + "scheduled_service": "no", + "gps_code": "LIPI", + "local_code": "UD16", + "wikipedia_link": "http://it.wikipedia.org/wiki/Aeroporto_di_Rivolto", + "keywords": "M Visentini" + }, + { + "id": "4357", + "ident": "LIPK", + "type": "medium_airport", + "name": "Forlì Airport", + "latitude_deg": "44.194801", + "longitude_deg": "12.0701", + "elevation_ft": "97", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Forlì (FC)", + "scheduled_service": "yes", + "gps_code": "LIPK", + "iata_code": "FRL", + "local_code": "FC03", + "wikipedia_link": "https://en.wikipedia.org/wiki/Forl%C3%AC_Airport", + "keywords": "L Ridolfi, Ronco di Forlì" + }, + { + "id": "4358", + "ident": "LIPL", + "type": "medium_airport", + "name": "Ghedi Air Base", + "latitude_deg": "45.432201", + "longitude_deg": "10.2677", + "elevation_ft": "333", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Ghedi", + "scheduled_service": "no", + "gps_code": "LIPL", + "local_code": "BS12", + "keywords": "A Fusco" + }, + { + "id": "29437", + "ident": "LIPM", + "type": "small_airport", + "name": "Modena-Marzaglia Airfield", + "latitude_deg": "44.631389", + "longitude_deg": "10.808611", + "elevation_ft": "184", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Modena", + "scheduled_service": "no", + "gps_code": "LIPM", + "local_code": "MO11" + }, + { + "id": "4359", + "ident": "LIPN", + "type": "small_airport", + "name": "Verona-Boscomantico Airfield", + "latitude_deg": "45.472", + "longitude_deg": "10.9279", + "elevation_ft": "286", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Verona", + "scheduled_service": "no", + "gps_code": "LIPN", + "local_code": "VR11", + "keywords": "Skydive Verona" + }, + { + "id": "4360", + "ident": "LIPO", + "type": "medium_airport", + "name": "Brescia Airport", + "latitude_deg": "45.428902", + "longitude_deg": "10.3306", + "elevation_ft": "355", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-25", + "municipality": "Montichiari (BS)", + "scheduled_service": "yes", + "gps_code": "LIPO", + "iata_code": "VBS", + "local_code": "BS04", + "home_link": "http://www.aeroportobrescia.it/en/business_t6/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brescia_Airport", + "keywords": "Brescia Airport Gabriele D'Annunzio" + }, + { + "id": "4361", + "ident": "LIPQ", + "type": "medium_airport", + "name": "Trieste–Friuli Venezia Giulia Airport", + "latitude_deg": "45.827499", + "longitude_deg": "13.4722", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-36", + "municipality": "Trieste", + "scheduled_service": "yes", + "gps_code": "LIPQ", + "iata_code": "TRS", + "local_code": "GO02", + "home_link": "http://www.aeroporto.fvg.it/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trieste_%E2%80%93_Friuli_Venezia_Giulia_Airport", + "keywords": "Ronchi Dei Legionari Airport, Trieste-Ronchi dei Legionari Airport" + }, + { + "id": "4362", + "ident": "LIPR", + "type": "medium_airport", + "name": "Federico Fellini International Airport", + "latitude_deg": "44.020302", + "longitude_deg": "12.6117", + "elevation_ft": "40", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-45", + "municipality": "Rimini", + "scheduled_service": "yes", + "gps_code": "LIPR", + "iata_code": "RMI", + "local_code": "RN01", + "home_link": "http://www.riminiairport.com/english/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Federico_Fellini_International_Airport", + "keywords": "Rimini Miramare Airport, Rimini San Marino International Airport" + }, + { + "id": "4363", + "ident": "LIPS", + "type": "medium_airport", + "name": "Istrana Air Base", + "latitude_deg": "45.684898", + "longitude_deg": "12.0829", + "elevation_ft": "137", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Istrana", + "scheduled_service": "no", + "gps_code": "LIPS", + "local_code": "TV16", + "keywords": "V Bragadin" + }, + { + "id": "4364", + "ident": "LIPT", + "type": "closed", + "name": "Vicenza Airport", + "latitude_deg": "45.573399", + "longitude_deg": "11.5295", + "elevation_ft": "128", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Vicenza", + "scheduled_service": "no", + "gps_code": "LIPT", + "iata_code": "VIC", + "keywords": "T Dal Molin" + }, + { + "id": "4365", + "ident": "LIPU", + "type": "medium_airport", + "name": "Padova Airfield", + "latitude_deg": "45.395802", + "longitude_deg": "11.8479", + "elevation_ft": "44", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Padova", + "scheduled_service": "no", + "gps_code": "LIPU", + "local_code": "PD11" + }, + { + "id": "29438", + "ident": "LIPV", + "type": "small_airport", + "name": "Venice-Lido Airport", + "latitude_deg": "45.428299", + "longitude_deg": "12.3881", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Venezia", + "scheduled_service": "no", + "gps_code": "LIPV", + "local_code": "VE06", + "wikipedia_link": "https://en.wikipedia.org/wiki/Venice-Lido_Airport", + "keywords": "Giovanni Nicelli, Venice-San Nicolò, Venezia-Lido" + }, + { + "id": "4366", + "ident": "LIPX", + "type": "large_airport", + "name": "Verona-Villafranca Valerio Catullo Airport", + "latitude_deg": "45.394955", + "longitude_deg": "10.887303", + "elevation_ft": "239", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Villafranca di Verona", + "scheduled_service": "yes", + "gps_code": "LIPX", + "iata_code": "VRN", + "local_code": "VR10", + "home_link": "http://www.aeroportoverona.it/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Verona_Airport", + "keywords": "Valerio Catullo, Villafranca International Airport, Valerio Catullo Airport, Villafranca Airport" + }, + { + "id": "4367", + "ident": "LIPY", + "type": "medium_airport", + "name": "Marche Airport", + "latitude_deg": "43.616299", + "longitude_deg": "13.3623", + "elevation_ft": "49", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-57", + "municipality": "Ancona", + "scheduled_service": "yes", + "gps_code": "LIPY", + "iata_code": "AOI", + "local_code": "AN01", + "home_link": "http://www.aeroportomarche.com/index.php?lang=english", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marche_Airport", + "keywords": "Ancona Falconara Airport, Falconara, Raffaello Sanzio Airport" + }, + { + "id": "4368", + "ident": "LIPZ", + "type": "large_airport", + "name": "Venice Marco Polo Airport", + "latitude_deg": "45.505299", + "longitude_deg": "12.3519", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-34", + "municipality": "Venice", + "scheduled_service": "yes", + "gps_code": "LIPZ", + "iata_code": "VCE", + "local_code": "VE05", + "home_link": "http://www.veniceairport.com/core/index.jsp?_requestid=37300&language=en", + "wikipedia_link": "https://en.wikipedia.org/wiki/Venice_Marco_Polo_Airport", + "keywords": "Venezia Tessera" + }, + { + "id": "29439", + "ident": "LIQB", + "type": "small_airport", + "name": "Arezzo Airport", + "latitude_deg": "43.455897", + "longitude_deg": "11.847", + "elevation_ft": "814", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Arezzo", + "scheduled_service": "no", + "gps_code": "LIQB", + "local_code": "AR03", + "keywords": "QZO" + }, + { + "id": "316455", + "ident": "LIQG", + "type": "small_airport", + "name": "Aviosuperficie Cecina", + "latitude_deg": "43.2844444", + "longitude_deg": "10.5227778", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Cecina", + "scheduled_service": "no", + "gps_code": "LIQG", + "local_code": "LI05" + }, + { + "id": "29440", + "ident": "LIQL", + "type": "small_airport", + "name": "Lucca-Tassignano Airport", + "latitude_deg": "43.825825", + "longitude_deg": "10.577928", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Lucca", + "scheduled_service": "no", + "gps_code": "LIQL", + "iata_code": "LCV", + "local_code": "LU02", + "wikipedia_link": "http://it.wikipedia.org/wiki/Aeroporto_di_Lucca-Tassignano", + "keywords": "Enrico Squaglia Airport" + }, + { + "id": "30337", + "ident": "LIQN", + "type": "small_airport", + "name": "Rieti Airfield", + "latitude_deg": "42.4272", + "longitude_deg": "12.8517", + "elevation_ft": "1278", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Rieti", + "scheduled_service": "no", + "gps_code": "LIQN", + "local_code": "RI01" + }, + { + "id": "4369", + "ident": "LIQS", + "type": "medium_airport", + "name": "Siena-Ampugnano Airport", + "latitude_deg": "43.256302", + "longitude_deg": "11.255", + "elevation_ft": "634", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Siena", + "scheduled_service": "no", + "gps_code": "LIQS", + "iata_code": "SAY", + "local_code": "SI01", + "wikipedia_link": "https://en.wikipedia.org/wiki/Siena-Ampugnano_Airport", + "keywords": "Malignano Airfield" + }, + { + "id": "29441", + "ident": "LIQW", + "type": "medium_airport", + "name": "Sarzana-Luni Air Base", + "latitude_deg": "44.088001", + "longitude_deg": "9.98795", + "elevation_ft": "45", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-42", + "municipality": "Sarzana (SP)", + "scheduled_service": "no", + "gps_code": "LIQW", + "local_code": "SP01", + "wikipedia_link": "http://it.wikipedia.org/wiki/Aeroporto_di_Sarzana-Luni", + "keywords": "Bartolomeo Arrigoni" + }, + { + "id": "4370", + "ident": "LIRA", + "type": "medium_airport", + "name": "Ciampino–G. B. Pastine International Airport", + "latitude_deg": "41.7994", + "longitude_deg": "12.5949", + "elevation_ft": "427", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Rome", + "scheduled_service": "yes", + "gps_code": "LIRA", + "iata_code": "CIA", + "local_code": "RM12", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ciampino%E2%80%93G._B._Pastine_International_Airport", + "keywords": "ROM, Giovan Battista Pastine Airport" + }, + { + "id": "331922", + "ident": "LIRB", + "type": "closed", + "name": "Vigna di Valle", + "latitude_deg": "42.0844444", + "longitude_deg": "12.2183333", + "elevation_ft": "886", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "scheduled_service": "no", + "gps_code": "LIRB" + }, + { + "id": "319749", + "ident": "LIRC", + "type": "heliport", + "name": "Centocelle Heliport", + "latitude_deg": "41.8729", + "longitude_deg": "12.5637", + "elevation_ft": "158", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Rome", + "scheduled_service": "no", + "gps_code": "LIRC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Centocelle_Airport" + }, + { + "id": "4371", + "ident": "LIRE", + "type": "medium_airport", + "name": "Pratica Di Mare Air Base", + "latitude_deg": "41.654499", + "longitude_deg": "12.4452", + "elevation_ft": "41", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Pomezia", + "scheduled_service": "no", + "gps_code": "LIRE", + "local_code": "RM22", + "keywords": "M de Bernardi" + }, + { + "id": "4372", + "ident": "LIRF", + "type": "large_airport", + "name": "Rome–Fiumicino Leonardo da Vinci International Airport", + "latitude_deg": "41.804532", + "longitude_deg": "12.251998", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Rome", + "scheduled_service": "yes", + "gps_code": "LIRF", + "iata_code": "FCO", + "local_code": "RM11", + "home_link": "http://www.adr.it/portal/portal/adr/Fiumicino/Leonardo_da_vinci/Header_Window?action=2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leonardo_da_Vinci%E2%80%93Fiumicino_Airport", + "keywords": "ROM, Rome Fiumicino Airport, Fiumicino Airport" + }, + { + "id": "4373", + "ident": "LIRG", + "type": "medium_airport", + "name": "Guidonia Air Base", + "latitude_deg": "41.990299", + "longitude_deg": "12.7408", + "elevation_ft": "289", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Guidonia", + "scheduled_service": "no", + "gps_code": "LIRG", + "local_code": "RM13", + "wikipedia_link": "https://it.wikipedia.org/wiki/Aeroporto_di_Guidonia", + "keywords": "Alfredo Barbieri" + }, + { + "id": "29442", + "ident": "LIRH", + "type": "small_airport", + "name": "Frosinone Air Base", + "latitude_deg": "41.6464", + "longitude_deg": "13.2998", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Frosinone", + "scheduled_service": "no", + "gps_code": "LIRH", + "local_code": "FR04" + }, + { + "id": "4374", + "ident": "LIRI", + "type": "medium_airport", + "name": "Salerno Costa d'Amalfi Airport", + "latitude_deg": "40.620399", + "longitude_deg": "14.9113", + "elevation_ft": "119", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Salerno", + "scheduled_service": "no", + "gps_code": "LIRI", + "iata_code": "QSR", + "local_code": "SA02", + "home_link": "http://www.aeroportosalerno.it/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salerno_Costa_d%27Amalfi_Airport", + "keywords": "Mario Martucci Airport, Aeroporto di Salerno Costa d'Amalfi, Salerno-Pontecagnano Airport" + }, + { + "id": "4375", + "ident": "LIRJ", + "type": "medium_airport", + "name": "Marina Di Campo Airport", + "latitude_deg": "42.7603", + "longitude_deg": "10.2394", + "elevation_ft": "31", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Marina Di Campo", + "scheduled_service": "yes", + "gps_code": "LIRJ", + "iata_code": "EBA", + "local_code": "LI04", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marina_di_Campo_Airport" + }, + { + "id": "4376", + "ident": "LIRL", + "type": "medium_airport", + "name": "Latina Air Base", + "latitude_deg": "41.5424", + "longitude_deg": "12.909", + "elevation_ft": "94", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Latina", + "scheduled_service": "no", + "gps_code": "LIRL", + "local_code": "LT02", + "wikipedia_link": "https://it.wikipedia.org/wiki/Aeroporto_di_Latina", + "keywords": "E Comani" + }, + { + "id": "4377", + "ident": "LIRM", + "type": "medium_airport", + "name": "Grazzanise Air Base", + "latitude_deg": "41.060799", + "longitude_deg": "14.0819", + "elevation_ft": "29", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Caserta", + "scheduled_service": "no", + "gps_code": "LIRM", + "local_code": "CE07", + "wikipedia_link": "http://it.wikipedia.org/wiki/Aeroporto_di_Caserta-Grazzanise", + "keywords": "C Romagnoli" + }, + { + "id": "4378", + "ident": "LIRN", + "type": "large_airport", + "name": "Naples International Airport", + "latitude_deg": "40.886002", + "longitude_deg": "14.2908", + "elevation_ft": "294", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-72", + "municipality": "Nápoli", + "scheduled_service": "yes", + "gps_code": "LIRN", + "iata_code": "NAP", + "local_code": "NA01", + "home_link": "http://www.portal.gesac.it/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naples_International_Airport", + "keywords": "Capodichino Airport, Aeroporto di Napoli-Capodichino, Aeroporto Internazionale di Napoli" + }, + { + "id": "4379", + "ident": "LIRP", + "type": "large_airport", + "name": "Pisa International Airport", + "latitude_deg": "43.683899", + "longitude_deg": "10.3927", + "elevation_ft": "6", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Pisa", + "scheduled_service": "yes", + "gps_code": "LIRP", + "iata_code": "PSA", + "local_code": "PI05", + "home_link": "http://www.pisa-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pisa_International_Airport", + "keywords": "Galileo Galilei Airport, San Giusto Airport" + }, + { + "id": "4380", + "ident": "LIRQ", + "type": "medium_airport", + "name": "Peretola Airport", + "latitude_deg": "43.810001", + "longitude_deg": "11.2051", + "elevation_ft": "142", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Firenze", + "scheduled_service": "yes", + "gps_code": "LIRQ", + "iata_code": "FLR", + "local_code": "FI04", + "home_link": "http://www.aeroporto.firenze.it/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Florence_Airport,_Peretola", + "keywords": "Florence, Firenze, Amerigo Vespucci Airport" + }, + { + "id": "4381", + "ident": "LIRS", + "type": "medium_airport", + "name": "Grosseto Air Base", + "latitude_deg": "42.759701", + "longitude_deg": "11.0719", + "elevation_ft": "17", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-52", + "municipality": "Grosetto", + "scheduled_service": "no", + "gps_code": "LIRS", + "iata_code": "GRS", + "local_code": "GR06", + "keywords": "C Baccarini" + }, + { + "id": "4382", + "ident": "LIRU", + "type": "medium_airport", + "name": "Rome Urbe Airport", + "latitude_deg": "41.952096", + "longitude_deg": "12.502231", + "elevation_ft": "55", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Rome", + "scheduled_service": "no", + "gps_code": "LIRU", + "local_code": "RM10", + "keywords": "ROM" + }, + { + "id": "4383", + "ident": "LIRV", + "type": "medium_airport", + "name": "Viterbo Airport", + "latitude_deg": "42.430199", + "longitude_deg": "12.0642", + "elevation_ft": "992", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-62", + "municipality": "Viterbo", + "scheduled_service": "no", + "gps_code": "LIRV", + "local_code": "VT03", + "keywords": "T Fabri" + }, + { + "id": "4384", + "ident": "LIRZ", + "type": "medium_airport", + "name": "Perugia San Francesco d'Assisi – Umbria International Airport", + "latitude_deg": "43.095901", + "longitude_deg": "12.5132", + "elevation_ft": "697", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-55", + "municipality": "Perugia", + "scheduled_service": "yes", + "gps_code": "LIRZ", + "iata_code": "PEG", + "local_code": "PG10", + "home_link": "http://www.airport.umbria.it/", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Egidio_Airport", + "keywords": "Perugia San Francesco d'Assisi, Perugia Sant'Egidio Airport, Umbria International Airport" + }, + { + "id": "309714", + "ident": "LIVD", + "type": "small_airport", + "name": "Dobbiaco - Toblach", + "latitude_deg": "46.727021", + "longitude_deg": "12.230723", + "elevation_ft": "4068", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-32", + "municipality": "Toblach (Dobbiaco) (BZ)", + "scheduled_service": "no", + "gps_code": "LIVD", + "local_code": "BZ04", + "home_link": "http://www.aeroclubdobbiaco.it/", + "wikipedia_link": "http://it.wikipedia.org/wiki/Aeroporto_di_Dobbiaco" + }, + { + "id": "308672", + "ident": "LIVV", + "type": "small_airport", + "name": "Aviosuperficie Moncucco", + "latitude_deg": "45.344613", + "longitude_deg": "7.919072", + "elevation_ft": "781", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-21", + "municipality": "Vische (TO)", + "scheduled_service": "no", + "gps_code": "LIVV", + "local_code": "TO03", + "home_link": "http://www.flyclubbaronerosso.it/" + }, + { + "id": "29648", + "ident": "LJAJ", + "type": "small_airport", + "name": "Ajdovščina Airfield", + "latitude_deg": "45.889198", + "longitude_deg": "13.8869", + "elevation_ft": "381", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-001", + "municipality": "Ajdovscina", + "scheduled_service": "no", + "gps_code": "LJAJ", + "home_link": "http://www.aeroklub-jk-ajdovscina.si/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ajdov%C5%A1%C4%8Dina_Airport" + }, + { + "id": "30071", + "ident": "LJBL", + "type": "small_airport", + "name": "Lesce-Bled Airfield", + "latitude_deg": "46.357201", + "longitude_deg": "14.1739", + "elevation_ft": "1654", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-003", + "municipality": "Bled", + "scheduled_service": "no", + "gps_code": "LJBL", + "home_link": "http://www.alc-lesce.si/" + }, + { + "id": "29721", + "ident": "LJBO", + "type": "small_airport", + "name": "Bovec Airfield", + "latitude_deg": "46.329017", + "longitude_deg": "13.550231", + "elevation_ft": "1417", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-006", + "municipality": "Bovec", + "scheduled_service": "no", + "gps_code": "LJBO", + "home_link": "http://www.bovec-airport.com/", + "keywords": "LJBO, Bovec, Slovenia" + }, + { + "id": "4385", + "ident": "LJCE", + "type": "medium_airport", + "name": "Cerklje Air Base", + "latitude_deg": "45.900002", + "longitude_deg": "15.5302", + "elevation_ft": "510", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-009", + "municipality": "Cerklje ob Krki", + "scheduled_service": "no", + "gps_code": "LJCE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cerklje_ob_Krki_Airport" + }, + { + "id": "29766", + "ident": "LJCL", + "type": "small_airport", + "name": "Letališče Celje", + "latitude_deg": "46.245601654", + "longitude_deg": "15.2230997", + "elevation_ft": "801", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-011", + "municipality": "Celje", + "scheduled_service": "no", + "gps_code": "LJCL" + }, + { + "id": "44770", + "ident": "LJDI", + "type": "small_airport", + "name": "Divača Airfield", + "latitude_deg": "45.6819", + "longitude_deg": "14.0028", + "elevation_ft": "1420", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-019", + "scheduled_service": "no", + "gps_code": "LJDI", + "home_link": "https://letaliscedivaca.si/", + "keywords": "Donje Ležeče, Sežana, Kras" + }, + { + "id": "4386", + "ident": "LJLJ", + "type": "large_airport", + "name": "Ljubljana Jože Pučnik Airport", + "latitude_deg": "46.223701", + "longitude_deg": "14.4576", + "elevation_ft": "1273", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-061", + "municipality": "Ljubljana", + "scheduled_service": "yes", + "gps_code": "LJLJ", + "iata_code": "LJU", + "home_link": "http://www.lju-airport.si/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ljubljana_Jo%C5%BEe_Pu%C4%8Dnik_Airport", + "keywords": "Ljubljana, Brnik, Kranj" + }, + { + "id": "4387", + "ident": "LJMB", + "type": "medium_airport", + "name": "Maribor Airport", + "latitude_deg": "46.4799", + "longitude_deg": "15.6861", + "elevation_ft": "876", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-070", + "scheduled_service": "no", + "gps_code": "LJMB", + "iata_code": "MBX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maribor_Airport" + }, + { + "id": "30174", + "ident": "LJMS", + "type": "small_airport", + "name": "Murska Sobota Airfield", + "latitude_deg": "46.629398", + "longitude_deg": "16.174999", + "elevation_ft": "600", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-080", + "municipality": "Murska Sobota", + "scheduled_service": "no", + "gps_code": "LJMS" + }, + { + "id": "44771", + "ident": "LJNM", + "type": "small_airport", + "name": "Novo Mesto Airfield", + "latitude_deg": "45.810299", + "longitude_deg": "15.1127", + "elevation_ft": "572", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-085", + "municipality": "Novo mesto", + "scheduled_service": "no", + "gps_code": "LJNM", + "home_link": "http://www.aeroklub-nm.si/", + "keywords": "Prečna" + }, + { + "id": "44903", + "ident": "LJPO", + "type": "small_airport", + "name": "Postojna Airfield", + "latitude_deg": "45.752201080322266", + "longitude_deg": "14.194700241088867", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-094", + "municipality": "Postojna", + "scheduled_service": "no", + "gps_code": "LJPO" + }, + { + "id": "44772", + "ident": "LJPT", + "type": "small_airport", + "name": "Ptuj Airfield", + "latitude_deg": "46.42709", + "longitude_deg": "15.98609", + "elevation_ft": "689", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-096", + "scheduled_service": "no", + "gps_code": "LJPT", + "home_link": "http://ak-ptuj.com/", + "keywords": "Moškanjci" + }, + { + "id": "4388", + "ident": "LJPZ", + "type": "medium_airport", + "name": "Portorož Airport", + "latitude_deg": "45.4734", + "longitude_deg": "13.615", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-090", + "municipality": "Portorož", + "scheduled_service": "no", + "gps_code": "LJPZ", + "iata_code": "POW", + "home_link": "http://www.portoroz-airport.si/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Portoro%C5%BE_Airport", + "keywords": "Sečovlje" + }, + { + "id": "4389", + "ident": "LJSG", + "type": "small_airport", + "name": "Slovenj Gradec Airfield", + "latitude_deg": "46.472", + "longitude_deg": "15.117", + "elevation_ft": "1645", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-112", + "municipality": "Slovenc Gradec", + "scheduled_service": "no", + "gps_code": "LJSG" + }, + { + "id": "315984", + "ident": "LJSK", + "type": "small_airport", + "name": "Slovenske Konjice", + "latitude_deg": "46.310278", + "longitude_deg": "15.490833", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-114", + "scheduled_service": "no", + "gps_code": "LJSK" + }, + { + "id": "30523", + "ident": "LJVE", + "type": "small_airport", + "name": "Šoštanj Airfield", + "latitude_deg": "46.397499", + "longitude_deg": "15.0453", + "elevation_ft": "1283", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-126", + "municipality": "Sostanj", + "scheduled_service": "no", + "gps_code": "LJSO", + "home_link": "http://www.akgorenje.si/", + "keywords": "Lajše, Šoštanj" + }, + { + "id": "317283", + "ident": "LK-0001", + "type": "small_airport", + "name": "Iranamadu Airport", + "latitude_deg": "9.3066", + "longitude_deg": "80.489", + "elevation_ft": "183", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-4", + "municipality": "Kilinochchi", + "scheduled_service": "yes", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iranamadu_Airport", + "keywords": "Kilinochchi Airport, SLAF Iranamadu" + }, + { + "id": "317288", + "ident": "LK-0002", + "type": "small_airport", + "name": "Palaviya Airport", + "latitude_deg": "7.979668", + "longitude_deg": "79.856495", + "elevation_ft": "92", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-6", + "municipality": "Puttalam", + "scheduled_service": "no", + "keywords": "Puttalam Airport" + }, + { + "id": "347104", + "ident": "LK-0003", + "type": "small_airport", + "name": "Thalladi Airfield", + "latitude_deg": "8.9426", + "longitude_deg": "79.94759", + "elevation_ft": "14", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-4", + "municipality": "Thiruketheeswaram", + "scheduled_service": "no" + }, + { + "id": "347105", + "ident": "LK-0004", + "type": "small_airport", + "name": "Sri Lanka Air Force Station Mullaitivu", + "latitude_deg": "9.26869", + "longitude_deg": "80.72741", + "elevation_ft": "63", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-4", + "municipality": "Keppapulavu", + "scheduled_service": "no" + }, + { + "id": "347114", + "ident": "LK-0005", + "type": "seaplane_base", + "name": "Nuwara Eliya (Lake Gregory) Waterdrome", + "latitude_deg": "6.95605", + "longitude_deg": "80.77927", + "elevation_ft": "6157", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-2", + "municipality": "Nuwara Eliya", + "scheduled_service": "no", + "local_code": "NUA" + }, + { + "id": "430016", + "ident": "LK-0006", + "type": "balloonport", + "name": "Dambulla Balloonpoprt", + "latitude_deg": "7.85743", + "longitude_deg": "80.69005", + "elevation_ft": "607", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-2", + "municipality": "Dambulla", + "scheduled_service": "no" + }, + { + "id": "29722", + "ident": "LKBA", + "type": "small_airport", + "name": "Břeclav Airport", + "latitude_deg": "48.790000915527344", + "longitude_deg": "16.892499923706055", + "elevation_ft": "531", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "municipality": "Břeclav", + "scheduled_service": "no", + "gps_code": "LKBA" + }, + { + "id": "316816", + "ident": "LKBC", + "type": "closed", + "name": "Bechyně Air Base", + "latitude_deg": "49.2736", + "longitude_deg": "14.5018", + "elevation_ft": "1448", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "Bechyně", + "scheduled_service": "no", + "gps_code": "LKBC", + "wikipedia_link": "https://cs.wikipedia.org/wiki/Leti%C5%A1t%C4%9B_Bechyn%C4%9B" + }, + { + "id": "29696", + "ident": "LKBE", + "type": "small_airport", + "name": "Benešov Airport", + "latitude_deg": "49.74079895019531", + "longitude_deg": "14.644700050354004", + "elevation_ft": "1319", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Benešov", + "scheduled_service": "no", + "gps_code": "LKBE" + }, + { + "id": "320202", + "ident": "LKBL", + "type": "closed", + "name": "Blátna Air Base", + "latitude_deg": "49.431173", + "longitude_deg": "13.797095", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "Blátna", + "scheduled_service": "no", + "gps_code": "LKBL", + "keywords": "Tchořovice" + }, + { + "id": "29714", + "ident": "LKBO", + "type": "small_airport", + "name": "Bohuňovice Airport", + "latitude_deg": "49.67060089111328", + "longitude_deg": "17.295000076293945", + "elevation_ft": "771", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-OL", + "municipality": "Bohuňovice", + "scheduled_service": "no", + "gps_code": "LKBO" + }, + { + "id": "29728", + "ident": "LKBR", + "type": "small_airport", + "name": "Broumov Airport", + "latitude_deg": "50.5619010925293", + "longitude_deg": "16.34280014038086", + "elevation_ft": "1342", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "municipality": "Broumov", + "scheduled_service": "no", + "gps_code": "LKBR", + "home_link": "http://www.airbroumov.eu/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Broumov_Airport" + }, + { + "id": "29731", + "ident": "LKBU", + "type": "small_airport", + "name": "Bubovice Airfield", + "latitude_deg": "49.9744", + "longitude_deg": "14.1781", + "elevation_ft": "1401", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Bubovice", + "scheduled_service": "no", + "gps_code": "LKBU" + }, + { + "id": "313916", + "ident": "LKC", + "type": "small_airport", + "name": "Lekana Airport", + "latitude_deg": "-2.313", + "longitude_deg": "14.606", + "elevation_ft": "2634", + "continent": "AF", + "iso_country": "CG", + "iso_region": "CG-14", + "municipality": "Lekana", + "scheduled_service": "no", + "iata_code": "LKC" + }, + { + "id": "29778", + "ident": "LKCB", + "type": "small_airport", + "name": "Cheb Airport", + "latitude_deg": "50.06610107421875", + "longitude_deg": "12.411700248718262", + "elevation_ft": "1585", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KA", + "municipality": "Cheb", + "scheduled_service": "no", + "gps_code": "LKCB", + "home_link": "http://www.letistecheb.cz/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cheb_Airport", + "keywords": "Letiště Cheb, Eger" + }, + { + "id": "29773", + "ident": "LKCE", + "type": "small_airport", + "name": "Česká Lípa Airport", + "latitude_deg": "50.70940017700195", + "longitude_deg": "14.566699981689453", + "elevation_ft": "932", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-LI", + "municipality": "Česká Lípa", + "scheduled_service": "no", + "gps_code": "LKCE" + }, + { + "id": "29784", + "ident": "LKCH", + "type": "small_airport", + "name": "Chomutov Airfield", + "latitude_deg": "50.468899", + "longitude_deg": "13.4681", + "elevation_ft": "1132", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "municipality": "Chomutov", + "scheduled_service": "no", + "gps_code": "LKCH" + }, + { + "id": "29772", + "ident": "LKCL", + "type": "closed", + "name": "Černovice Air Base", + "latitude_deg": "49.1775016784", + "longitude_deg": "16.6608", + "elevation_ft": "778", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "municipality": "Černovice", + "scheduled_service": "no", + "gps_code": "LKCL" + }, + { + "id": "30127", + "ident": "LKCM", + "type": "small_airport", + "name": "Medlánky Airfield", + "latitude_deg": "49.236698", + "longitude_deg": "16.555", + "elevation_ft": "853", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "municipality": "Medlánky", + "scheduled_service": "no", + "gps_code": "LKCM" + }, + { + "id": "353702", + "ident": "LKCO", + "type": "heliport", + "name": "Chodová Planá Heliport", + "latitude_deg": "49.901199", + "longitude_deg": "12.741704", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PL", + "municipality": "Chodová Planá", + "scheduled_service": "no", + "gps_code": "LKCO" + }, + { + "id": "29786", + "ident": "LKCR", + "type": "small_airport", + "name": "Chrudim Airport", + "latitude_deg": "49.9364013671875", + "longitude_deg": "15.780599594116211", + "elevation_ft": "981", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "municipality": "Chrudim", + "scheduled_service": "no", + "gps_code": "LKCR" + }, + { + "id": "4393", + "ident": "LKCS", + "type": "small_airport", + "name": "České Budějovice Airport", + "latitude_deg": "48.9463996887207", + "longitude_deg": "14.427499771118164", + "elevation_ft": "1417", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "České Budějovice", + "scheduled_service": "no", + "gps_code": "LKCS" + }, + { + "id": "29785", + "ident": "LKCT", + "type": "small_airport", + "name": "Chotěboř Airport", + "latitude_deg": "49.68579864501953", + "longitude_deg": "15.67609977722168", + "elevation_ft": "1949", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "municipality": "Chotěboř", + "scheduled_service": "no", + "gps_code": "LKCT" + }, + { + "id": "4394", + "ident": "LKCV", + "type": "medium_airport", + "name": "Čáslav Air Base", + "latitude_deg": "49.939701080322266", + "longitude_deg": "15.381799697875977", + "elevation_ft": "794", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Čáslav", + "scheduled_service": "no", + "gps_code": "LKCV" + }, + { + "id": "29836", + "ident": "LKDK", + "type": "small_airport", + "name": "Dvůr Králové Nad Labem Airport", + "latitude_deg": "50.41419982910156", + "longitude_deg": "15.836899757385254", + "elevation_ft": "932", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "municipality": "Dvůr Králové Nad Labem", + "scheduled_service": "no", + "gps_code": "LKDK" + }, + { + "id": "29855", + "ident": "LKER", + "type": "small_airport", + "name": "Erpužice Airport", + "latitude_deg": "49.802799224853516", + "longitude_deg": "13.038100242614746", + "elevation_ft": "1572", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PL", + "municipality": "Erpužice", + "scheduled_service": "no", + "gps_code": "LKER" + }, + { + "id": "29881", + "ident": "LKFR", + "type": "small_airport", + "name": "Frýdlant Airfield", + "latitude_deg": "49.589401", + "longitude_deg": "18.3792", + "elevation_ft": "1440", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-MO", + "municipality": "Frýdlant", + "scheduled_service": "no", + "gps_code": "LKFR" + }, + { + "id": "29940", + "ident": "LKHB", + "type": "small_airport", + "name": "Havlíčkův Brod Airport", + "latitude_deg": "49.597198486328", + "longitude_deg": "15.549200057983", + "elevation_ft": "1519", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "municipality": "Havlíčkův Brod", + "scheduled_service": "no", + "gps_code": "LKHB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Havl%C3%AD%C4%8Dk%C5%AFv_Brod_Airport" + }, + { + "id": "29960", + "ident": "LKHC", + "type": "small_airport", + "name": "Hořice Airport", + "latitude_deg": "50.357200622558594", + "longitude_deg": "15.576700210571289", + "elevation_ft": "922", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "municipality": "Hořice", + "scheduled_service": "no", + "gps_code": "LKHC" + }, + { + "id": "29952", + "ident": "LKHD", + "type": "small_airport", + "name": "Hodkovice Nad Mohelkou Airport", + "latitude_deg": "50.65719985961914", + "longitude_deg": "15.077799797058105", + "elevation_ft": "1480", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-LI", + "municipality": "Hodkovice Nad Mohelkou", + "scheduled_service": "no", + "gps_code": "LKHD" + }, + { + "id": "4395", + "ident": "LKHK", + "type": "small_airport", + "name": "Hradec Králové Airport", + "latitude_deg": "50.253201", + "longitude_deg": "15.8452", + "elevation_ft": "791", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "municipality": "Hradec Králové", + "scheduled_service": "no", + "gps_code": "LKHK", + "home_link": "http://www.lshk.cz", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hradec_Kr%C3%A1lov%C3%A9_Airport" + }, + { + "id": "29965", + "ident": "LKHN", + "type": "small_airport", + "name": "Hranice Airport", + "latitude_deg": "49.5461", + "longitude_deg": "17.7043991", + "elevation_ft": "797", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-OL", + "municipality": "Hranice", + "scheduled_service": "no", + "gps_code": "LKHN", + "home_link": "http://www.aeroklubhranice.cz" + }, + { + "id": "29956", + "ident": "LKHO", + "type": "closed", + "name": "Holešov Airport", + "latitude_deg": "49.3143997", + "longitude_deg": "17.5688992", + "elevation_ft": "761", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ZL", + "municipality": "Holešov", + "scheduled_service": "no", + "gps_code": "LKHO", + "iata_code": "GTW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hole%C5%A1ov_Airport" + }, + { + "id": "43206", + "ident": "LKHR", + "type": "closed", + "name": "Hradčany Air Base", + "latitude_deg": "50.620555877685", + "longitude_deg": "14.738056182861", + "elevation_ft": "912", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-LI", + "municipality": "Ralsko", + "scheduled_service": "no", + "gps_code": "LKHR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hrad%C4%8Dany_Airport" + }, + { + "id": "29961", + "ident": "LKHS", + "type": "small_airport", + "name": "Hosin Airport", + "latitude_deg": "49.040000915527344", + "longitude_deg": "14.494999885559082", + "elevation_ft": "1621", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "Hosin", + "scheduled_service": "no", + "gps_code": "LKHS" + }, + { + "id": "4396", + "ident": "LKHV", + "type": "small_airport", + "name": "Hořovice Airport", + "latitude_deg": "49.84809875488281", + "longitude_deg": "13.893500328063965", + "elevation_ft": "1214", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Hořovice", + "scheduled_service": "no", + "gps_code": "LKHV" + }, + { + "id": "29989", + "ident": "LKJA", + "type": "small_airport", + "name": "Jaroměř Airport", + "latitude_deg": "50.33140182495117", + "longitude_deg": "15.953900337219238", + "elevation_ft": "889", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "municipality": "Jaroměř", + "scheduled_service": "no", + "gps_code": "LKJA" + }, + { + "id": "29993", + "ident": "LKJC", + "type": "small_airport", + "name": "Jičín Airport", + "latitude_deg": "50.43", + "longitude_deg": "15.3331", + "elevation_ft": "863", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "municipality": "Jičín", + "scheduled_service": "no", + "gps_code": "LKJC", + "home_link": "http://www.jicin-airport.cz", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jičín_Airport" + }, + { + "id": "29995", + "ident": "LKJH", + "type": "small_airport", + "name": "Jindřichův Hradec Airport", + "latitude_deg": "49.150299072265625", + "longitude_deg": "14.971099853515625", + "elevation_ft": "1667", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "Jindřichův Hradec", + "scheduled_service": "no", + "gps_code": "LKJH" + }, + { + "id": "29994", + "ident": "LKJI", + "type": "small_airport", + "name": "Jihlava Airport", + "latitude_deg": "49.41939926147461", + "longitude_deg": "15.635299682617188", + "elevation_ft": "1821", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "municipality": "Jihlava", + "scheduled_service": "no", + "gps_code": "LKJI" + }, + { + "id": "30046", + "ident": "LKKA", + "type": "small_airport", + "name": "Křižanov Airport", + "latitude_deg": "49.36830139160156", + "longitude_deg": "16.116100311279297", + "elevation_ft": "1831", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "municipality": "Křižanov", + "scheduled_service": "no", + "gps_code": "LKKA" + }, + { + "id": "4397", + "ident": "LKKB", + "type": "medium_airport", + "name": "Kbely Air Base", + "latitude_deg": "50.12139892578125", + "longitude_deg": "14.543600082397461", + "elevation_ft": "939", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PR", + "municipality": "Prague", + "scheduled_service": "no", + "gps_code": "LKKB" + }, + { + "id": "30047", + "ident": "LKKC", + "type": "small_airport", + "name": "Kříženec Planá Airport", + "latitude_deg": "49.870601654052734", + "longitude_deg": "12.772500038146973", + "elevation_ft": "2080", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PL", + "municipality": "Planá", + "scheduled_service": "no", + "gps_code": "LKKC" + }, + { + "id": "30030", + "ident": "LKKL", + "type": "small_airport", + "name": "Kladno Airfield", + "latitude_deg": "50.112801", + "longitude_deg": "14.0897", + "elevation_ft": "1421", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Kladno", + "scheduled_service": "no", + "gps_code": "LKKL", + "home_link": "http://letiste-kladno.cz" + }, + { + "id": "30049", + "ident": "LKKM", + "type": "small_airport", + "name": "Kroměříž Airfield", + "latitude_deg": "49.285599", + "longitude_deg": "17.4158", + "elevation_ft": "620", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ZL", + "municipality": "Kroměříž", + "scheduled_service": "no", + "gps_code": "LKKM", + "home_link": "http://www.lkkm.cz/" + }, + { + "id": "30035", + "ident": "LKKO", + "type": "small_airport", + "name": "Kolín Airfield", + "latitude_deg": "50.0019", + "longitude_deg": "15.1733", + "elevation_ft": "932", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Kolín", + "scheduled_service": "no", + "gps_code": "LKKO" + }, + { + "id": "30048", + "ident": "LKKR", + "type": "small_airport", + "name": "Krnov Airfield", + "latitude_deg": "50.0742", + "longitude_deg": "17.6947", + "elevation_ft": "1230", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-MO", + "municipality": "Krnov", + "scheduled_service": "no", + "gps_code": "LKKR" + }, + { + "id": "30033", + "ident": "LKKT", + "type": "small_airport", + "name": "Klatovy Airfield", + "latitude_deg": "49.418301", + "longitude_deg": "13.3219", + "elevation_ft": "1299", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PL", + "municipality": "Klatovy", + "scheduled_service": "no", + "gps_code": "LKKT" + }, + { + "id": "4398", + "ident": "LKKU", + "type": "medium_airport", + "name": "Kunovice Airport", + "latitude_deg": "49.02939987182617", + "longitude_deg": "17.439699172973633", + "elevation_ft": "581", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ZL", + "municipality": "Uherské Hradiště", + "scheduled_service": "no", + "gps_code": "LKKU", + "iata_code": "UHE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kunovice_Airport", + "keywords": "Letiště Kunovice" + }, + { + "id": "4399", + "ident": "LKKV", + "type": "medium_airport", + "name": "Karlovy Vary International Airport", + "latitude_deg": "50.202999114990234", + "longitude_deg": "12.914999961853027", + "elevation_ft": "1989", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KA", + "municipality": "Karlovy Vary", + "scheduled_service": "yes", + "gps_code": "LKKV", + "iata_code": "KLV", + "home_link": "http://www.airport-k-vary.cz/indexEN.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Karlovy_Vary_International_Airport" + }, + { + "id": "30052", + "ident": "LKKY", + "type": "small_airport", + "name": "Kyjov Airfield", + "latitude_deg": "48.98", + "longitude_deg": "17.124701", + "elevation_ft": "689", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "municipality": "Kyjov", + "scheduled_service": "no", + "gps_code": "LKKY", + "home_link": "http://www.letistekyjov.cz" + }, + { + "id": "30076", + "ident": "LKLB", + "type": "small_airport", + "name": "Liberec Airport", + "latitude_deg": "50.7682991027832", + "longitude_deg": "15.024999618530273", + "elevation_ft": "1329", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-LI", + "municipality": "Liberec", + "scheduled_service": "no", + "gps_code": "LKLB" + }, + { + "id": "4400", + "ident": "LKLN", + "type": "medium_airport", + "name": "Plzeň-Líně Airport", + "latitude_deg": "49.675201416016", + "longitude_deg": "13.274600028992", + "elevation_ft": "1188", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PL", + "municipality": "Plzen", + "scheduled_service": "no", + "gps_code": "LKLN" + }, + { + "id": "30074", + "ident": "LKLT", + "type": "small_airport", + "name": "Letňany Airfield", + "latitude_deg": "50.131401", + "longitude_deg": "14.5256", + "elevation_ft": "909", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PR", + "municipality": "Letňany", + "scheduled_service": "no", + "gps_code": "LKLT" + }, + { + "id": "30145", + "ident": "LKMB", + "type": "small_airport", + "name": "Mladá Boleslav Airport", + "latitude_deg": "50.3983", + "longitude_deg": "14.8983", + "elevation_ft": "781", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Mladá Boleslav", + "scheduled_service": "no", + "gps_code": "LKMB", + "home_link": "http://www.lkmb.cz" + }, + { + "id": "4401", + "ident": "LKMH", + "type": "small_airport", + "name": "Mnichovo Hradiště Airport", + "latitude_deg": "50.540199279785156", + "longitude_deg": "15.006600379943848", + "elevation_ft": "800", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Mnichovo Hradiště", + "scheduled_service": "no", + "gps_code": "LKMH" + }, + { + "id": "30137", + "ident": "LKMI", + "type": "small_airport", + "name": "Mikulovice Airfield", + "latitude_deg": "50.301701", + "longitude_deg": "17.297501", + "elevation_ft": "1381", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-OL", + "municipality": "Mikulovice", + "scheduled_service": "no", + "gps_code": "LKMI" + }, + { + "id": "30161", + "ident": "LKMK", + "type": "small_airport", + "name": "Moravská Třebová Airport", + "latitude_deg": "49.798302", + "longitude_deg": "16.687799", + "elevation_ft": "1322", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "municipality": "Moravská Třebová", + "scheduled_service": "no", + "gps_code": "LKMK", + "home_link": "https://www.lkmk.com" + }, + { + "id": "30165", + "ident": "LKMO", + "type": "small_airport", + "name": "Most Airport", + "latitude_deg": "50.525001525878906", + "longitude_deg": "13.683099746704102", + "elevation_ft": "1089", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "municipality": "Most", + "scheduled_service": "no", + "gps_code": "LKMO" + }, + { + "id": "4402", + "ident": "LKMT", + "type": "medium_airport", + "name": "Ostrava Leos Janáček Airport", + "latitude_deg": "49.6963005065918", + "longitude_deg": "18.111099243164062", + "elevation_ft": "844", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-MO", + "municipality": "Ostrava", + "scheduled_service": "yes", + "gps_code": "LKMT", + "iata_code": "OSR", + "home_link": "http://www.airport-ostrava.cz/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ostrava_Leos_Janacek_Airport", + "keywords": "Ostrava-Mošnov International Airport" + }, + { + "id": "4403", + "ident": "LKNA", + "type": "medium_airport", + "name": "Náměšť Air Base", + "latitude_deg": "49.16579818725586", + "longitude_deg": "16.124900817871094", + "elevation_ft": "1548", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "municipality": "Náměšť", + "scheduled_service": "no", + "gps_code": "LKNA" + }, + { + "id": "30194", + "ident": "LKNM", + "type": "small_airport", + "name": "Nove Mesto Airport", + "latitude_deg": "50.364200592041016", + "longitude_deg": "16.11359977722168", + "elevation_ft": "1001", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "municipality": "Nové Město Nad Metují Moravě", + "scheduled_service": "no", + "gps_code": "LKNM" + }, + { + "id": "30203", + "ident": "LKNY", + "type": "small_airport", + "name": "Nymburk Ul Ploch Airport", + "latitude_deg": "50.168598", + "longitude_deg": "15.0525", + "elevation_ft": "607", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Nymburk", + "scheduled_service": "no", + "gps_code": "LKNY", + "home_link": "http://www.letistenymburk.cz" + }, + { + "id": "30212", + "ident": "LKOL", + "type": "small_airport", + "name": "Olomouc Airport", + "latitude_deg": "49.587799", + "longitude_deg": "17.2108", + "elevation_ft": "869", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-OL", + "municipality": "Olomouc", + "scheduled_service": "no", + "gps_code": "LKOL", + "iata_code": "OLO", + "home_link": "http://www.lkol.cz", + "wikipedia_link": "https://cs.wikipedia.org/wiki/Letiště_Olomouc" + }, + { + "id": "30227", + "ident": "LKOT", + "type": "small_airport", + "name": "Zlín Otrokovice Airfield", + "latitude_deg": "49.198299", + "longitude_deg": "17.517799", + "elevation_ft": "600", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ZL", + "municipality": "Otrokovice", + "scheduled_service": "no", + "gps_code": "LKZL" + }, + { + "id": "30276", + "ident": "LKPA", + "type": "small_airport", + "name": "Policka Airport", + "latitude_deg": "49.73939895629883", + "longitude_deg": "16.258899688720703", + "elevation_ft": "1982", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "municipality": "Policka", + "scheduled_service": "no", + "gps_code": "LKPA" + }, + { + "id": "4404", + "ident": "LKPC", + "type": "small_airport", + "name": "Panensky Tynec Airport", + "latitude_deg": "50.30609893798828", + "longitude_deg": "13.934200286865234", + "elevation_ft": "1207", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "municipality": "Panensky Tynec", + "scheduled_service": "no", + "gps_code": "LKPC" + }, + { + "id": "4405", + "ident": "LKPD", + "type": "medium_airport", + "name": "Pardubice Airport", + "latitude_deg": "50.01340103149414", + "longitude_deg": "15.73859977722168", + "elevation_ft": "741", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "municipality": "Pardubice", + "scheduled_service": "yes", + "gps_code": "LKPD", + "iata_code": "PED", + "home_link": "http://www.airport-pardubice.cz/?lang=en", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pardubice_Airport", + "keywords": "Letiště Pardubice" + }, + { + "id": "30290", + "ident": "LKPI", + "type": "small_airport", + "name": "Pribyslav Airport", + "latitude_deg": "49.5807991027832", + "longitude_deg": "15.762800216674805", + "elevation_ft": "1739", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-VY", + "municipality": "Pribyslav", + "scheduled_service": "no", + "gps_code": "LKPI" + }, + { + "id": "30296", + "ident": "LKPJ", + "type": "small_airport", + "name": "Prostejov Airport", + "latitude_deg": "49.44779968261719", + "longitude_deg": "17.133899688720703", + "elevation_ft": "699", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-OL", + "municipality": "Prostejov", + "scheduled_service": "no", + "gps_code": "LKPJ" + }, + { + "id": "30073", + "ident": "LKPL", + "type": "small_airport", + "name": "Letkov Airport", + "latitude_deg": "49.72309875488281", + "longitude_deg": "13.452199935913086", + "elevation_ft": "1371", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PL", + "municipality": "Letkov", + "scheduled_service": "no", + "gps_code": "LKPL" + }, + { + "id": "4406", + "ident": "LKPM", + "type": "small_airport", + "name": "Pribram Airport", + "latitude_deg": "49.7201", + "longitude_deg": "14.1006", + "elevation_ft": "1529", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Pribram", + "scheduled_service": "no", + "gps_code": "LKPM", + "home_link": "https://www.lkpm.cz", + "keywords": "lkpm" + }, + { + "id": "30274", + "ident": "LKPN", + "type": "small_airport", + "name": "Podhořany Airport", + "latitude_deg": "49.939201355", + "longitude_deg": "15.5496997833", + "elevation_ft": "1250", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "municipality": "Podhořany", + "scheduled_service": "no", + "gps_code": "LKPN", + "home_link": "http://www.letistepodhorany.cz/" + }, + { + "id": "4407", + "ident": "LKPO", + "type": "medium_airport", + "name": "Přerov Air Base", + "latitude_deg": "49.42580032348633", + "longitude_deg": "17.404699325561523", + "elevation_ft": "676", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-OL", + "municipality": "Přerov", + "scheduled_service": "no", + "gps_code": "LKPO", + "iata_code": "PRV" + }, + { + "id": "4408", + "ident": "LKPR", + "type": "large_airport", + "name": "Václav Havel Airport Prague", + "latitude_deg": "50.1008", + "longitude_deg": "14.26", + "elevation_ft": "1247", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PR", + "municipality": "Prague", + "scheduled_service": "yes", + "gps_code": "LKPR", + "iata_code": "PRG", + "home_link": "http://www.prg.aero", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ruzyn%C4%9B_International_Airport", + "keywords": "Letiště Praha-Ruzyně, Ruzyně International Airport, Letiště Václava Havla Praha" + }, + { + "id": "30270", + "ident": "LKPS", + "type": "small_airport", + "name": "Plasy Rybnice Airport", + "latitude_deg": "49.9202995300293", + "longitude_deg": "13.376899719238281", + "elevation_ft": "1430", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PL", + "municipality": "Rybnice", + "scheduled_service": "no", + "gps_code": "LKPS" + }, + { + "id": "30319", + "ident": "LKRA", + "type": "small_airport", + "name": "Rana Loumy Airport", + "latitude_deg": "50.403900146484375", + "longitude_deg": "13.751899719238281", + "elevation_ft": "879", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "municipality": "Raná", + "scheduled_service": "no", + "gps_code": "LKRA" + }, + { + "id": "30318", + "ident": "LKRK", + "type": "small_airport", + "name": "Rakovnik Airfield", + "latitude_deg": "50.0942", + "longitude_deg": "13.6889", + "elevation_ft": "1270", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Rakovnik", + "scheduled_service": "no", + "gps_code": "LKRK", + "home_link": "http://www.lkrk.cz/" + }, + { + "id": "30350", + "ident": "LKRO", + "type": "small_airport", + "name": "Roudnice Airport", + "latitude_deg": "50.41059875", + "longitude_deg": "14.2261", + "elevation_ft": "732", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "municipality": "Roudnice nad Labem", + "scheduled_service": "no", + "gps_code": "LKRO" + }, + { + "id": "316164", + "ident": "LKRY", + "type": "small_airport", + "name": "Rokycany", + "latitude_deg": "49.751944", + "longitude_deg": "13.589722", + "elevation_ft": "1329", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PL", + "scheduled_service": "no", + "gps_code": "LKRY" + }, + { + "id": "30435", + "ident": "LKSA", + "type": "small_airport", + "name": "Staňkov Airport", + "latitude_deg": "49.566667", + "longitude_deg": "13.048611", + "elevation_ft": "1404", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PL", + "municipality": "Staňkov", + "scheduled_service": "no", + "gps_code": "LKSA", + "home_link": "http://www.ak-stankov.org" + }, + { + "id": "30437", + "ident": "LKSB", + "type": "small_airport", + "name": "Stichovice Pluml Airport", + "latitude_deg": "49.48609924316406", + "longitude_deg": "17.055599212646484", + "elevation_ft": "840", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-OL", + "municipality": "Mostkovice", + "scheduled_service": "no", + "gps_code": "LKSB" + }, + { + "id": "30420", + "ident": "LKSK", + "type": "small_airport", + "name": "Skuteč Airfield", + "latitude_deg": "49.827801", + "longitude_deg": "16.0058", + "elevation_ft": "1601", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "municipality": "Skuteč", + "scheduled_service": "no", + "gps_code": "LKSK" + }, + { + "id": "30421", + "ident": "LKSN", + "type": "small_airport", + "name": "Slaný Airport", + "latitude_deg": "50.216701507568", + "longitude_deg": "14.088600158691", + "elevation_ft": "1079", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Slaný", + "scheduled_service": "no", + "gps_code": "LKSN" + }, + { + "id": "30425", + "ident": "LKSO", + "type": "small_airport", + "name": "Soběslav", + "latitude_deg": "49.246700286865", + "longitude_deg": "14.713600158691", + "elevation_ft": "1342", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "Soběslav", + "scheduled_service": "no", + "gps_code": "LKSO" + }, + { + "id": "316350", + "ident": "LKSP", + "type": "small_airport", + "name": "Zlín Štípa", + "latitude_deg": "49.272778", + "longitude_deg": "17.746389", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ZL", + "scheduled_service": "no" + }, + { + "id": "30443", + "ident": "LKSR", + "type": "small_airport", + "name": "Strunkovice Airport", + "latitude_deg": "49.08250045776367", + "longitude_deg": "14.075799942016602", + "elevation_ft": "1572", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "Strunkovice", + "scheduled_service": "no", + "gps_code": "LKSR" + }, + { + "id": "30440", + "ident": "LKST", + "type": "small_airport", + "name": "Strakonice Airport", + "latitude_deg": "49.25170135498047", + "longitude_deg": "13.892800331115723", + "elevation_ft": "1381", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "Strakonice", + "scheduled_service": "no", + "gps_code": "LKST" + }, + { + "id": "30447", + "ident": "LKSU", + "type": "small_airport", + "name": "Šumperk Airport", + "latitude_deg": "49.960601806641", + "longitude_deg": "17.017799377441", + "elevation_ft": "1099", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-OL", + "municipality": "Šumperk", + "scheduled_service": "no", + "gps_code": "LKSU", + "keywords": "Sumperk" + }, + { + "id": "30398", + "ident": "LKSZ", + "type": "small_airport", + "name": "Letiště Sazená", + "latitude_deg": "50.324699", + "longitude_deg": "14.2589", + "elevation_ft": "761", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Sazená", + "scheduled_service": "no", + "gps_code": "LKSZ", + "home_link": "http://www.flyforfun.cz/en/", + "keywords": "Sazena Kralupy Airport, Sazena Kralipy Airport" + }, + { + "id": "30458", + "ident": "LKTA", + "type": "small_airport", + "name": "Tábor Airport", + "latitude_deg": "49.3911018372", + "longitude_deg": "14.7082996368", + "elevation_ft": "1440", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "Tábor", + "scheduled_service": "no", + "gps_code": "LKTA" + }, + { + "id": "4409", + "ident": "LKTB", + "type": "medium_airport", + "name": "Brno-Tuřany Airport", + "latitude_deg": "49.15129852294922", + "longitude_deg": "16.694400787353516", + "elevation_ft": "778", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "municipality": "Brno", + "scheduled_service": "yes", + "gps_code": "LKTB", + "iata_code": "BRQ", + "home_link": "http://www.airport-brno.cz/index.php?id=0&lang=en", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brno-Tu%C5%99any_Airport" + }, + { + "id": "30487", + "ident": "LKTC", + "type": "small_airport", + "name": "Točná Airfield", + "latitude_deg": "49.9852982", + "longitude_deg": "14.4260998", + "elevation_ft": "1027", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PR", + "municipality": "Tocna", + "scheduled_service": "no", + "gps_code": "LKTC", + "home_link": "http://www.tocna.cz", + "wikipedia_link": "https://cs.wikipedia.org/wiki/Leti%C5%A1t%C4%9B_To%C4%8Dn%C3%A1" + }, + { + "id": "30461", + "ident": "LKTD", + "type": "small_airport", + "name": "Letiště Tachov", + "latitude_deg": "49.797798", + "longitude_deg": "12.7069", + "elevation_ft": "1640", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PL", + "municipality": "Tachov", + "scheduled_service": "no", + "gps_code": "LKTD" + }, + { + "id": "30490", + "ident": "LKTO", + "type": "small_airport", + "name": "Toužim Airfield", + "latitude_deg": "50.086399", + "longitude_deg": "12.9528", + "elevation_ft": "2139", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KA", + "municipality": "Toužim", + "scheduled_service": "no", + "gps_code": "LKTO", + "home_link": "http://lkto.cz" + }, + { + "id": "30459", + "ident": "LKTV", + "type": "closed", + "name": "Tábor Všechov Air Base", + "latitude_deg": "49.437801", + "longitude_deg": "14.6217", + "elevation_ft": "1604", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JC", + "municipality": "Tábor", + "scheduled_service": "no", + "gps_code": "LKTV" + }, + { + "id": "30513", + "ident": "LKUL", + "type": "small_airport", + "name": "Usti Nad Labem Airfield", + "latitude_deg": "50.699699", + "longitude_deg": "13.9697", + "elevation_ft": "791", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "municipality": "Usti Nad Labem", + "scheduled_service": "no", + "gps_code": "LKUL" + }, + { + "id": "30512", + "ident": "LKUO", + "type": "small_airport", + "name": "Letiště Ústí Nad Orlicí", + "latitude_deg": "49.9786", + "longitude_deg": "16.426399", + "elevation_ft": "1342", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "municipality": "Ústí nad Orlicí", + "scheduled_service": "no", + "gps_code": "LKUO" + }, + { + "id": "30537", + "ident": "LKVL", + "type": "small_airport", + "name": "Vlašim Airfield", + "latitude_deg": "49.728901", + "longitude_deg": "14.8789", + "elevation_ft": "1421", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Vlašim", + "scheduled_service": "no", + "gps_code": "LKVL", + "home_link": "http://www.lkvl.cz" + }, + { + "id": "30545", + "ident": "LKVM", + "type": "small_airport", + "name": "Letiště Vysoké Mýto", + "latitude_deg": "49.926899", + "longitude_deg": "16.185801", + "elevation_ft": "991", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "municipality": "Vysoké Mýto", + "scheduled_service": "no", + "gps_code": "LKVM" + }, + { + "id": "4410", + "ident": "LKVO", + "type": "medium_airport", + "name": "Vodochody Airport", + "latitude_deg": "50.216599", + "longitude_deg": "14.3958", + "elevation_ft": "919", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Vodochody", + "scheduled_service": "no", + "gps_code": "LKVO", + "iata_code": "VOD", + "home_link": "http://www.lkvo.cz", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vodochody_Airport" + }, + { + "id": "30524", + "ident": "LKVP", + "type": "small_airport", + "name": "Letiště Velké Poříčí", + "latitude_deg": "50.4678", + "longitude_deg": "16.205601", + "elevation_ft": "1322", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "municipality": "Velke Porici", + "scheduled_service": "no", + "gps_code": "LKVP" + }, + { + "id": "30539", + "ident": "LKVR", + "type": "small_airport", + "name": "Letiště Vrchlabí", + "latitude_deg": "50.624199", + "longitude_deg": "15.6464", + "elevation_ft": "1611", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-KR", + "municipality": "Vrchlabi", + "scheduled_service": "no", + "gps_code": "LKVR" + }, + { + "id": "30544", + "ident": "LKVY", + "type": "small_airport", + "name": "Letiště Vyškov", + "latitude_deg": "49.300301", + "longitude_deg": "17.025299", + "elevation_ft": "922", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "municipality": "Vyskov", + "scheduled_service": "no", + "gps_code": "LKVY" + }, + { + "id": "30572", + "ident": "LKZA", + "type": "small_airport", + "name": "Zabreh Ostrava Airfield", + "latitude_deg": "49.928299", + "longitude_deg": "18.0783", + "elevation_ft": "791", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-MO", + "municipality": "Zabreh", + "scheduled_service": "no", + "gps_code": "LKZA", + "iata_code": "ZBE", + "home_link": "http://lkza.cz/o_letisti/" + }, + { + "id": "30581", + "ident": "LKZB", + "type": "small_airport", + "name": "Letiště Zbraslavice", + "latitude_deg": "49.814201", + "longitude_deg": "15.2017", + "elevation_ft": "1621", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-ST", + "municipality": "Zbraslavice", + "scheduled_service": "no", + "gps_code": "LKZB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zbraslavice_Airport" + }, + { + "id": "316821", + "ident": "LKZC", + "type": "closed", + "name": "Letiště Žatec-Staňkovice", + "latitude_deg": "50.371", + "longitude_deg": "13.59", + "elevation_ft": "900", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "municipality": "Žatec", + "scheduled_service": "no", + "gps_code": "LKZC" + }, + { + "id": "30580", + "ident": "LKZD", + "type": "small_airport", + "name": "Žatec-Macerka Airfield", + "latitude_deg": "50.317501", + "longitude_deg": "13.5128", + "elevation_ft": "879", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-US", + "municipality": "Žatec", + "scheduled_service": "no", + "gps_code": "LKZD" + }, + { + "id": "30576", + "ident": "LKZM", + "type": "small_airport", + "name": "Letiště Žamberk", + "latitude_deg": "50.0839", + "longitude_deg": "16.443899", + "elevation_ft": "1411", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-PA", + "municipality": "Žamberk", + "scheduled_service": "no", + "gps_code": "LKZM" + }, + { + "id": "30584", + "ident": "LKZN", + "type": "small_airport", + "name": "Znojmo Airfield", + "latitude_deg": "48.817799", + "longitude_deg": "16.0658", + "elevation_ft": "830", + "continent": "EU", + "iso_country": "CZ", + "iso_region": "CZ-JM", + "municipality": "Znojmo", + "scheduled_service": "no", + "gps_code": "LKZN" + }, + { + "id": "21569", + "ident": "LL01", + "type": "heliport", + "name": "USF Family Medical Center Heliport", + "latitude_deg": "40.921607", + "longitude_deg": "-90.659007", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Monmouth", + "scheduled_service": "no", + "gps_code": "LL01", + "local_code": "LL01" + }, + { + "id": "21570", + "ident": "LL04", + "type": "heliport", + "name": "Morris Hospital Heliport", + "latitude_deg": "41.370119", + "longitude_deg": "-88.42731", + "elevation_ft": "512", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Morris", + "scheduled_service": "no", + "gps_code": "LL04", + "local_code": "LL04" + }, + { + "id": "21571", + "ident": "LL07", + "type": "small_airport", + "name": "Herb Tautz Airport", + "latitude_deg": "42.06258", + "longitude_deg": "-89.968114", + "elevation_ft": "853", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mount Carroll", + "scheduled_service": "no", + "gps_code": "LL07", + "local_code": "LL07" + }, + { + "id": "345479", + "ident": "LL08", + "type": "heliport", + "name": "Advanced Asphalt Heliport", + "latitude_deg": "41.385724", + "longitude_deg": "-89.471599", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "LL08", + "local_code": "LL08" + }, + { + "id": "21572", + "ident": "LL09", + "type": "small_airport", + "name": "Air Estates Inc Airport", + "latitude_deg": "42.280601501464844", + "longitude_deg": "-88.09449768066406", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mundelein", + "scheduled_service": "no", + "gps_code": "LL09", + "local_code": "LL09" + }, + { + "id": "21573", + "ident": "LL10", + "type": "small_airport", + "name": "Naper Aero Club Airport", + "latitude_deg": "41.734798431396484", + "longitude_deg": "-88.20339965820312", + "elevation_ft": "708", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Naperville", + "scheduled_service": "no", + "gps_code": "LL10", + "local_code": "LL10" + }, + { + "id": "21574", + "ident": "LL11", + "type": "heliport", + "name": "Edward Hospital Heliport", + "latitude_deg": "41.76060104370117", + "longitude_deg": "-88.15029907226562", + "elevation_ft": "702", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Naperville", + "scheduled_service": "no", + "gps_code": "LL11", + "local_code": "LL11" + }, + { + "id": "21575", + "ident": "LL12", + "type": "heliport", + "name": "Brown and Lambrecht Heliport", + "latitude_deg": "41.500301361083984", + "longitude_deg": "-87.34140014648438", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "New Lenox", + "scheduled_service": "no", + "gps_code": "LL12", + "local_code": "LL12" + }, + { + "id": "21576", + "ident": "LL13", + "type": "small_airport", + "name": "Stoney Real Estate Airport", + "latitude_deg": "38.04859924316406", + "longitude_deg": "-88.30059814453125", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Enfield", + "scheduled_service": "no", + "gps_code": "LL13", + "local_code": "LL13" + }, + { + "id": "350765", + "ident": "LL14", + "type": "heliport", + "name": "NW Lake Forest Hospital-Grayslake Heliport", + "latitude_deg": "42.337678", + "longitude_deg": "-88.009039", + "elevation_ft": "823", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Grayslake", + "scheduled_service": "no", + "gps_code": "LL14", + "local_code": "LL14" + }, + { + "id": "21577", + "ident": "LL18", + "type": "small_airport", + "name": "Ernest E Orwig Airport", + "latitude_deg": "41.0973014831543", + "longitude_deg": "-90.4529037475586", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "North Henderson", + "scheduled_service": "no", + "gps_code": "LL18", + "local_code": "LL18" + }, + { + "id": "3277", + "ident": "LL1A", + "type": "small_airport", + "name": "Hatzerim Northwest Airport", + "latitude_deg": "31.260700225830078", + "longitude_deg": "34.64039993286133", + "elevation_ft": "660", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-D", + "municipality": "Beersheba", + "scheduled_service": "no", + "local_code": "LL1A" + }, + { + "id": "3278", + "ident": "LL1B", + "type": "small_airport", + "name": "Arad Airport", + "latitude_deg": "31.229169845581055", + "longitude_deg": "35.18903732299805", + "elevation_ft": "1952", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-D", + "municipality": "Arad", + "scheduled_service": "no", + "gps_code": "LL1B", + "local_code": "LL1B" + }, + { + "id": "21578", + "ident": "LL20", + "type": "closed", + "name": "Smith Restricted Landing Area", + "latitude_deg": "39.313099", + "longitude_deg": "-90.277802", + "elevation_ft": "582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Greenfield", + "scheduled_service": "no", + "keywords": "LL20" + }, + { + "id": "21579", + "ident": "LL22", + "type": "small_airport", + "name": "Brookeridge Air Park", + "latitude_deg": "41.73270034790039", + "longitude_deg": "-87.99929809570312", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Downers Grove", + "scheduled_service": "no", + "gps_code": "LL22", + "local_code": "LL22" + }, + { + "id": "21580", + "ident": "LL23", + "type": "closed", + "name": "Meyer Airport", + "latitude_deg": "41.0172", + "longitude_deg": "-90.8778", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Oquawka", + "scheduled_service": "no", + "keywords": "LL23" + }, + { + "id": "21581", + "ident": "LL24", + "type": "small_airport", + "name": "Sunset Acres Airport", + "latitude_deg": "41.205837", + "longitude_deg": "-87.784882", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Saint George", + "scheduled_service": "no", + "gps_code": "LL24", + "local_code": "LL24" + }, + { + "id": "21582", + "ident": "LL25", + "type": "heliport", + "name": "Community Hospital of Ottawa Heliport", + "latitude_deg": "41.358195", + "longitude_deg": "-88.824964", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Ottawa", + "scheduled_service": "no", + "gps_code": "LL25", + "local_code": "LL25" + }, + { + "id": "21583", + "ident": "LL26", + "type": "small_airport", + "name": "Schaller Airport", + "latitude_deg": "38.275001525878906", + "longitude_deg": "-89.87090301513672", + "elevation_ft": "434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "New Athens", + "scheduled_service": "no", + "gps_code": "LL26", + "local_code": "LL26" + }, + { + "id": "21584", + "ident": "LL27", + "type": "small_airport", + "name": "Smith Airport", + "latitude_deg": "40.454200744628906", + "longitude_deg": "-90.62349700927734", + "elevation_ft": "702", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Macomb", + "scheduled_service": "no", + "gps_code": "LL27", + "local_code": "LL27" + }, + { + "id": "21585", + "ident": "LL28", + "type": "small_airport", + "name": "Sd Aero Airport", + "latitude_deg": "42.43280029296875", + "longitude_deg": "-88.71720123291016", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Capron", + "scheduled_service": "no", + "gps_code": "LL28", + "local_code": "LL28" + }, + { + "id": "21586", + "ident": "LL29", + "type": "heliport", + "name": "Pana Community Hospital Heliport", + "latitude_deg": "39.37889862060547", + "longitude_deg": "-89.08439636230469", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pana", + "scheduled_service": "no", + "gps_code": "LL29", + "local_code": "LL29" + }, + { + "id": "21587", + "ident": "LL32", + "type": "small_airport", + "name": "C D Maulding Airport", + "latitude_deg": "40.446556", + "longitude_deg": "-88.065333", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Paxton", + "scheduled_service": "no", + "gps_code": "LL32", + "local_code": "LL32" + }, + { + "id": "21588", + "ident": "LL33", + "type": "closed", + "name": "RDH Farms Airport", + "latitude_deg": "40.5797", + "longitude_deg": "-90.679703", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Good Hope", + "scheduled_service": "no", + "keywords": "LL33" + }, + { + "id": "18052", + "ident": "LL34", + "type": "small_airport", + "name": "Thorp Airport", + "latitude_deg": "40.219343", + "longitude_deg": "-88.921983", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Wapella", + "scheduled_service": "no", + "gps_code": "LL34", + "local_code": "LL34", + "keywords": "Formerly IL80" + }, + { + "id": "21589", + "ident": "LL35", + "type": "heliport", + "name": "Chicago Fire Department Air Sea Rescue Heliport", + "latitude_deg": "41.724402", + "longitude_deg": "-87.526394", + "elevation_ft": "598", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "no", + "gps_code": "LL35", + "local_code": "LL35" + }, + { + "id": "21590", + "ident": "LL36", + "type": "heliport", + "name": "Exposition Gardens Heliport", + "latitude_deg": "40.76250076293945", + "longitude_deg": "-89.6167984008789", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Peoria", + "scheduled_service": "no", + "gps_code": "LL36", + "local_code": "LL36" + }, + { + "id": "21591", + "ident": "LL37", + "type": "heliport", + "name": "OSF Saint Francis Medical Center Heliport", + "latitude_deg": "40.701698303200004", + "longitude_deg": "-89.5932006836", + "elevation_ft": "585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Peoria", + "scheduled_service": "no", + "gps_code": "LL37", + "local_code": "LL37" + }, + { + "id": "21592", + "ident": "LL38", + "type": "small_airport", + "name": "Stutzke Airport", + "latitude_deg": "41.810298919677734", + "longitude_deg": "-89.83830261230469", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sterling", + "scheduled_service": "no", + "gps_code": "LL38", + "local_code": "LL38" + }, + { + "id": "21593", + "ident": "LL39", + "type": "small_airport", + "name": "Curanda Airport", + "latitude_deg": "41.25749969482422", + "longitude_deg": "-88.47779846191406", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Morris", + "scheduled_service": "no", + "gps_code": "LL39", + "local_code": "LL39" + }, + { + "id": "21594", + "ident": "LL40", + "type": "closed", + "name": "Frankfort Airport", + "latitude_deg": "41.477501", + "longitude_deg": "-87.8405", + "elevation_ft": "778", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Frankfort", + "scheduled_service": "no", + "keywords": "LL40, C18" + }, + { + "id": "21595", + "ident": "LL42", + "type": "heliport", + "name": "St James Hospital Heliport", + "latitude_deg": "40.87110137939453", + "longitude_deg": "-88.68060302734375", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pontiac", + "scheduled_service": "no", + "gps_code": "LL42", + "local_code": "LL42" + }, + { + "id": "21596", + "ident": "LL43", + "type": "closed", + "name": "Gerald H Hamer Airport", + "latitude_deg": "41.450001", + "longitude_deg": "-89.166702", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Peru", + "scheduled_service": "no", + "keywords": "LL43" + }, + { + "id": "21597", + "ident": "LL44", + "type": "closed", + "name": "Trovero Airport", + "latitude_deg": "41.298599", + "longitude_deg": "-89.109299", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Peru", + "scheduled_service": "no", + "keywords": "LL44" + }, + { + "id": "21598", + "ident": "LL45", + "type": "small_airport", + "name": "Lindell Loveless Airport", + "latitude_deg": "39.18230056762695", + "longitude_deg": "-89.8218002319336", + "elevation_ft": "657", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Gillespie", + "scheduled_service": "no", + "gps_code": "LL45", + "local_code": "LL45" + }, + { + "id": "21599", + "ident": "LL46", + "type": "small_airport", + "name": "Read Airport", + "latitude_deg": "40.83530044555664", + "longitude_deg": "-88.15280151367188", + "elevation_ft": "663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Piper City", + "scheduled_service": "no", + "gps_code": "LL46", + "local_code": "LL46" + }, + { + "id": "21600", + "ident": "LL47", + "type": "closed", + "name": "Heritage Manor South Heliport", + "latitude_deg": "40.006699", + "longitude_deg": "-90.430298", + "elevation_ft": "444", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Beardstown", + "scheduled_service": "no", + "keywords": "LL47" + }, + { + "id": "21601", + "ident": "LL48", + "type": "closed", + "name": "Wilcoxon Airport", + "latitude_deg": "39.949201", + "longitude_deg": "-89.742502", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Athens", + "scheduled_service": "no", + "keywords": "LL48" + }, + { + "id": "21602", + "ident": "LL49", + "type": "small_airport", + "name": "Raymond Restricted Landing Area", + "latitude_deg": "39.062198638916016", + "longitude_deg": "-90.27220153808594", + "elevation_ft": "658", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Jerseyville", + "scheduled_service": "no", + "gps_code": "LL49", + "local_code": "LL49" + }, + { + "id": "21603", + "ident": "LL51", + "type": "small_airport", + "name": "Riley's Field", + "latitude_deg": "41.60419845581055", + "longitude_deg": "-88.27369689941406", + "elevation_ft": "663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Plainfield", + "scheduled_service": "no", + "gps_code": "LL51", + "local_code": "LL51" + }, + { + "id": "21604", + "ident": "LL52", + "type": "small_airport", + "name": "Wilts Airport", + "latitude_deg": "41.16109848022461", + "longitude_deg": "-88.93910217285156", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Streator", + "scheduled_service": "no", + "gps_code": "LL52", + "local_code": "LL52" + }, + { + "id": "21605", + "ident": "LL53", + "type": "small_airport", + "name": "Olson Airport", + "latitude_deg": "42.008617", + "longitude_deg": "-88.457773", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Elgin", + "scheduled_service": "no", + "gps_code": "LL53", + "local_code": "LL53" + }, + { + "id": "21606", + "ident": "LL54", + "type": "small_airport", + "name": "Dunn Airport", + "latitude_deg": "41.719398498535156", + "longitude_deg": "-89.02999877929688", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Paw Paw", + "scheduled_service": "no", + "gps_code": "LL54", + "local_code": "LL54" + }, + { + "id": "21607", + "ident": "LL55", + "type": "small_airport", + "name": "Gentry Airport", + "latitude_deg": "41.99089813232422", + "longitude_deg": "-89.55979919433594", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Polo", + "scheduled_service": "no", + "gps_code": "LL55", + "local_code": "LL55" + }, + { + "id": "21608", + "ident": "LL56", + "type": "closed", + "name": "Schott Airport", + "latitude_deg": "40.883163", + "longitude_deg": "-88.589631", + "elevation_ft": "659", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pontiac", + "scheduled_service": "no", + "keywords": "LL56" + }, + { + "id": "3279", + "ident": "LL59", + "type": "small_airport", + "name": "Palmahim Air Base", + "latitude_deg": "31.8979", + "longitude_deg": "34.6908", + "elevation_ft": "32", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-M", + "municipality": "Palmahim", + "scheduled_service": "no", + "gps_code": "LL59", + "local_code": "LL59", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palmachim_Airbase", + "keywords": "Palmachim" + }, + { + "id": "3280", + "ident": "LL60", + "type": "small_airport", + "name": "Nitzana West Airport", + "latitude_deg": "30.859399795532227", + "longitude_deg": "34.44309997558594", + "elevation_ft": "825", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-D", + "municipality": "Nitzana", + "scheduled_service": "no", + "local_code": "LL60" + }, + { + "id": "21609", + "ident": "LL61", + "type": "small_airport", + "name": "Doering's Port Airport", + "latitude_deg": "41.68560028076172", + "longitude_deg": "-89.90260314941406", + "elevation_ft": "606", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Prophetstown", + "scheduled_service": "no", + "gps_code": "LL61", + "local_code": "LL61" + }, + { + "id": "21610", + "ident": "LL64", + "type": "small_airport", + "name": "Ralph E. Daniels Airport", + "latitude_deg": "41.199501037597656", + "longitude_deg": "-89.39450073242188", + "elevation_ft": "457", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Putnam", + "scheduled_service": "no", + "gps_code": "LL64", + "local_code": "LL64" + }, + { + "id": "21611", + "ident": "LL65", + "type": "small_airport", + "name": "Edgar Read Airport", + "latitude_deg": "41.19449996948242", + "longitude_deg": "-89.45010375976562", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Putnam", + "scheduled_service": "no", + "gps_code": "LL65", + "local_code": "LL65" + }, + { + "id": "21612", + "ident": "LL66", + "type": "small_airport", + "name": "Egland Field", + "latitude_deg": "41.21229934692383", + "longitude_deg": "-88.69309997558594", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Ransom", + "scheduled_service": "no", + "gps_code": "LL66", + "local_code": "LL66" + }, + { + "id": "21613", + "ident": "LL69", + "type": "closed", + "name": "Cambier Airport", + "latitude_deg": "42.299702", + "longitude_deg": "-89.421501", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Ridott", + "scheduled_service": "no", + "keywords": "LL69" + }, + { + "id": "21614", + "ident": "LL74", + "type": "small_airport", + "name": "Maple Hurst Farms Airport", + "latitude_deg": "42.008399963378906", + "longitude_deg": "-89.04869842529297", + "elevation_ft": "823", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rochelle", + "scheduled_service": "no", + "gps_code": "LL74", + "local_code": "LL74" + }, + { + "id": "21615", + "ident": "LL75", + "type": "small_airport", + "name": "Chester Wyss Airport", + "latitude_deg": "42.42499923706055", + "longitude_deg": "-89.45010375976562", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rock City", + "scheduled_service": "no", + "gps_code": "LL75", + "local_code": "LL75" + }, + { + "id": "347155", + "ident": "LL77", + "type": "small_airport", + "name": "Herrens Bess Hollow Airfield", + "latitude_deg": "39.305", + "longitude_deg": "-90.699722", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Kampsville", + "scheduled_service": "no", + "gps_code": "LL77", + "local_code": "LL77" + }, + { + "id": "21616", + "ident": "LL78", + "type": "small_airport", + "name": "Lz Fairwinds Airport", + "latitude_deg": "42.31169891357422", + "longitude_deg": "-89.1509017944336", + "elevation_ft": "752", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rockford", + "scheduled_service": "no", + "gps_code": "LL78", + "local_code": "LL78" + }, + { + "id": "21617", + "ident": "LL79", + "type": "small_airport", + "name": "Severson Airport", + "latitude_deg": "42.39310073852539", + "longitude_deg": "-89.13069915771484", + "elevation_ft": "813", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rockford", + "scheduled_service": "no", + "gps_code": "LL79", + "local_code": "LL79" + }, + { + "id": "21618", + "ident": "LL80", + "type": "small_airport", + "name": "Darrington Airport", + "latitude_deg": "42.38199996948242", + "longitude_deg": "-89.16120147705078", + "elevation_ft": "862", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rockford", + "scheduled_service": "no", + "gps_code": "LL80", + "local_code": "LL80" + }, + { + "id": "21619", + "ident": "LL81", + "type": "small_airport", + "name": "Latham Park Aero Estates Airport", + "latitude_deg": "42.375", + "longitude_deg": "-89.070099", + "elevation_ft": "778", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rockford", + "scheduled_service": "no", + "gps_code": "LL81", + "local_code": "LL81", + "keywords": "Spickard-Marshall Airport" + }, + { + "id": "21620", + "ident": "LL82", + "type": "heliport", + "name": "Atwood Heliport", + "latitude_deg": "42.30220031738281", + "longitude_deg": "-89.08180236816406", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rockford", + "scheduled_service": "no", + "gps_code": "LL82", + "local_code": "LL82" + }, + { + "id": "21621", + "ident": "LL83", + "type": "heliport", + "name": "Javon Bea Hospital-Rockton Heliport", + "latitude_deg": "42.29908", + "longitude_deg": "-89.099818", + "elevation_ft": "731", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rockford", + "scheduled_service": "no", + "gps_code": "LL83", + "local_code": "LL83", + "keywords": "Rockford Memorial Hospital" + }, + { + "id": "21622", + "ident": "LL84", + "type": "heliport", + "name": "St Anthony Medical Center Heliport", + "latitude_deg": "42.269500732421875", + "longitude_deg": "-89.00340270996094", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rockford", + "scheduled_service": "no", + "gps_code": "LL84", + "local_code": "LL84" + }, + { + "id": "21623", + "ident": "LL87", + "type": "small_airport", + "name": "Compass Rose Airport", + "latitude_deg": "42.454825", + "longitude_deg": "-88.9049", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rockton", + "scheduled_service": "no", + "gps_code": "LL87", + "local_code": "LL87" + }, + { + "id": "21624", + "ident": "LL88", + "type": "small_airport", + "name": "Harry D Fenton Airport", + "latitude_deg": "42.474998474121094", + "longitude_deg": "-89.08899688720703", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rockton", + "scheduled_service": "no", + "gps_code": "LL88", + "local_code": "LL88" + }, + { + "id": "21625", + "ident": "LL89", + "type": "small_airport", + "name": "Blackhawk Farms Inc Airport", + "latitude_deg": "42.48720169067383", + "longitude_deg": "-89.10790252685547", + "elevation_ft": "759", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rockton", + "scheduled_service": "no", + "gps_code": "LL89", + "local_code": "LL89" + }, + { + "id": "21626", + "ident": "LL90", + "type": "small_airport", + "name": "McCurdy Strip", + "latitude_deg": "42.446962", + "longitude_deg": "-88.900472", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Caledonia", + "scheduled_service": "no", + "gps_code": "LL90", + "local_code": "LL90" + }, + { + "id": "21627", + "ident": "LL91", + "type": "small_airport", + "name": "Hillman Airport", + "latitude_deg": "42.416005", + "longitude_deg": "-89.453053", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Rock City", + "scheduled_service": "no", + "gps_code": "LL91", + "local_code": "LL91" + }, + { + "id": "21628", + "ident": "LL94", + "type": "small_airport", + "name": "Mc Curdy Airport", + "latitude_deg": "42.4345016479", + "longitude_deg": "-88.99949646", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Roscoe", + "scheduled_service": "no", + "gps_code": "LL94", + "local_code": "LL94" + }, + { + "id": "21629", + "ident": "LL95", + "type": "heliport", + "name": "Clarke Heliport", + "latitude_deg": "41.9863448836", + "longitude_deg": "-88.1004622579", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Roselle", + "scheduled_service": "no", + "gps_code": "LL95", + "local_code": "LL95" + }, + { + "id": "21630", + "ident": "LL97", + "type": "small_airport", + "name": "Rockenbach Airport", + "latitude_deg": "42.33890151977539", + "longitude_deg": "-88.08480072021484", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Round Lake", + "scheduled_service": "no", + "gps_code": "LL97", + "local_code": "LL97" + }, + { + "id": "21631", + "ident": "LL98", + "type": "small_airport", + "name": "John W Meils Restricted Landing Area", + "latitude_deg": "40.943805", + "longitude_deg": "-89.108526", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Toluca", + "scheduled_service": "no", + "gps_code": "LL98", + "local_code": "LL98" + }, + { + "id": "29928", + "ident": "LLAZ", + "type": "closed", + "name": "Gush Katif Airport", + "latitude_deg": "31.36705", + "longitude_deg": "34.29451", + "elevation_ft": "112", + "continent": "AS", + "iso_country": "PS", + "iso_region": "PS-KYS", + "municipality": "Khan Yunis", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gush_Katif", + "keywords": "Palestine, Gaza" + }, + { + "id": "4411", + "ident": "LLBG", + "type": "large_airport", + "name": "Ben Gurion International Airport", + "latitude_deg": "32.01139831542969", + "longitude_deg": "34.88669967651367", + "elevation_ft": "135", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-M", + "municipality": "Tel Aviv", + "scheduled_service": "yes", + "gps_code": "LLBG", + "iata_code": "TLV", + "home_link": "http://www.iaa.gov.il/Rashat/en-US/Airports/BenGurion/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ben_Gurion_International_Airport" + }, + { + "id": "316577", + "ident": "LLBL", + "type": "heliport", + "name": "Rabin Medical Center (Beilinson)", + "latitude_deg": "32.0869444", + "longitude_deg": "34.865", + "elevation_ft": "114", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-M", + "municipality": "Petah Tikva", + "scheduled_service": "no", + "gps_code": "LLBL", + "keywords": "belinson" + }, + { + "id": "316589", + "ident": "LLBO", + "type": "small_airport", + "name": "Habonim Airfield", + "latitude_deg": "32.649854", + "longitude_deg": "34.933126", + "elevation_ft": "17", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-HA", + "municipality": "Habonim", + "scheduled_service": "no", + "gps_code": "LLBO" + }, + { + "id": "4412", + "ident": "LLBS", + "type": "small_airport", + "name": "Beersheba (Teyman) Airport", + "latitude_deg": "31.287000656128", + "longitude_deg": "34.722999572754", + "elevation_ft": "656", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-D", + "municipality": "Beersheba", + "scheduled_service": "no", + "gps_code": "LLBS", + "iata_code": "BEV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Be'er_Sheva_(Teyman)_Airport" + }, + { + "id": "4413", + "ident": "LLEK", + "type": "medium_airport", + "name": "Tel Nof Air Base", + "latitude_deg": "31.8395004272", + "longitude_deg": "34.8218002319", + "elevation_ft": "193", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-M", + "municipality": "Rehovot", + "scheduled_service": "no", + "gps_code": "LLEK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tel_Nof_Airbase", + "keywords": "RAF Aqir" + }, + { + "id": "330388", + "ident": "LLER", + "type": "large_airport", + "name": "Ramon International Airport", + "latitude_deg": "29.727009", + "longitude_deg": "35.014116", + "elevation_ft": "288", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-D", + "municipality": "Eilat", + "scheduled_service": "yes", + "gps_code": "LLER", + "iata_code": "ETM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ramon_Airport#Airlines_and_destinations" + }, + { + "id": "4414", + "ident": "LLES", + "type": "small_airport", + "name": "Ein Shemer Airfield", + "latitude_deg": "32.440799713134766", + "longitude_deg": "35.0077018737793", + "elevation_ft": "95", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-Z", + "municipality": "Ein Shemer", + "scheduled_service": "no", + "gps_code": "LLES", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ein_Shemer_Airfield", + "keywords": "RAF Ein Shemer, military, Eyn Shemer Airfield" + }, + { + "id": "4415", + "ident": "LLET", + "type": "closed", + "name": "Eilat Airport", + "latitude_deg": "29.559945", + "longitude_deg": "34.959612", + "elevation_ft": "42", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-D", + "municipality": "Eilat", + "scheduled_service": "no", + "gps_code": "LLET", + "iata_code": "ETH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eilat_Airport", + "keywords": "J. Hozman" + }, + { + "id": "4416", + "ident": "LLEY", + "type": "small_airport", + "name": "Ein Yahav Airfield", + "latitude_deg": "30.621700286865234", + "longitude_deg": "35.20330047607422", + "elevation_ft": "-164", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-D", + "municipality": "Sapir", + "scheduled_service": "no", + "gps_code": "LLEY", + "iata_code": "EIY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ein_Yahav_Airfield", + "keywords": "Sapir Airfield" + }, + { + "id": "34928", + "ident": "LLFK", + "type": "small_airport", + "name": "Fiq Airfield", + "latitude_deg": "32.786388888", + "longitude_deg": "35.7174987793", + "elevation_ft": "1218", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-Z", + "municipality": "Katzrin", + "scheduled_service": "no", + "gps_code": "LLFK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fiq_Airfield", + "keywords": "Piq, Golan Heights" + }, + { + "id": "313918", + "ident": "LLH", + "type": "small_airport", + "name": "Reginaldo Hammer Airport", + "latitude_deg": "15.4422", + "longitude_deg": "-87.8988", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CR", + "municipality": "La Lima", + "scheduled_service": "no", + "iata_code": "LLH", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Lima_Airport", + "keywords": "Las Limas Airport" + }, + { + "id": "4417", + "ident": "LLHA", + "type": "medium_airport", + "name": "Haifa International Airport", + "latitude_deg": "32.80939865112305", + "longitude_deg": "35.04309844970703", + "elevation_ft": "28", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-HA", + "municipality": "Haifa", + "scheduled_service": "yes", + "gps_code": "LLHA", + "iata_code": "HFA", + "home_link": "http://www.iaa.gov.il/Rashat/en-US/Airports/Haifa/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Haifa_Airport", + "keywords": "U Michaeli Airport, RAF Haifa" + }, + { + "id": "31830", + "ident": "LLHB", + "type": "small_airport", + "name": "Hatzerim Air Base", + "latitude_deg": "31.233400344848633", + "longitude_deg": "34.662601470947266", + "elevation_ft": "725", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-D", + "municipality": "Beersheba", + "scheduled_service": "no", + "gps_code": "LLHB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hatzerim_Airbase", + "keywords": "IAF Flight Academy, Israeli Air Force Museum" + }, + { + "id": "316578", + "ident": "LLHD", + "type": "heliport", + "name": "Hadassah Ein Kerem Heliport", + "latitude_deg": "31.7644444", + "longitude_deg": "35.1472222", + "elevation_ft": "2088", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-JM", + "municipality": "Jerusalem", + "scheduled_service": "no", + "gps_code": "LLHD" + }, + { + "id": "4418", + "ident": "LLHS", + "type": "small_airport", + "name": "Hatzor Air Base", + "latitude_deg": "31.7625007629", + "longitude_deg": "34.727199554399995", + "elevation_ft": "148", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-M", + "municipality": "Hatzor", + "scheduled_service": "no", + "gps_code": "LLHS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hatzor_Airbase", + "keywords": "RAF Qastina" + }, + { + "id": "316579", + "ident": "LLHY", + "type": "heliport", + "name": "Hillel Yaffe", + "latitude_deg": "32.4530556", + "longitude_deg": "34.895", + "elevation_ft": "45", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-HA", + "municipality": "Hadera", + "scheduled_service": "no", + "gps_code": "LLHY" + }, + { + "id": "29947", + "ident": "LLHZ", + "type": "small_airport", + "name": "Herzliya Airport", + "latitude_deg": "32.180599212646484", + "longitude_deg": "34.83470153808594", + "elevation_ft": "121", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-TA", + "municipality": "Herzliya", + "scheduled_service": "no", + "gps_code": "LLHZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Herzliya_airport", + "keywords": "Herzlia" + }, + { + "id": "4419", + "ident": "LLIB", + "type": "medium_airport", + "name": "Rosh Pina Airport", + "latitude_deg": "32.980999", + "longitude_deg": "35.571899", + "elevation_ft": "922", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-Z", + "municipality": "Rosh Pina", + "scheduled_service": "no", + "gps_code": "LLIB", + "iata_code": "RPN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rosh_Pina_Airport", + "keywords": "Mahanayim Ben Yaakov Airport" + }, + { + "id": "316576", + "ident": "LLIC", + "type": "heliport", + "name": "Sourasky (Ichilov) Medical Center", + "latitude_deg": "32.08", + "longitude_deg": "34.7897222", + "elevation_ft": "285", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-TA", + "municipality": "Tel Aviv", + "scheduled_service": "no", + "gps_code": "LLIC", + "keywords": "echilov,איכילוב" + }, + { + "id": "30028", + "ident": "LLKS", + "type": "small_airport", + "name": "Kiryat Shmona Airport", + "latitude_deg": "33.21670150756836", + "longitude_deg": "35.599998474121094", + "elevation_ft": "381", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-Z", + "municipality": "Kiryat Shmona", + "scheduled_service": "no", + "gps_code": "LLKS", + "iata_code": "KSW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kiryat_Shmona_Airport" + }, + { + "id": "313919", + "ident": "LLL", + "type": "small_airport", + "name": "Lissadell Airport", + "latitude_deg": "-16.661", + "longitude_deg": "128.594", + "elevation_ft": "374", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Lissadell Station", + "scheduled_service": "no", + "iata_code": "LLL" + }, + { + "id": "4420", + "ident": "LLMG", + "type": "small_airport", + "name": "Megiddo Airport", + "latitude_deg": "32.5973014831543", + "longitude_deg": "35.22880172729492", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-Z", + "municipality": "Afula", + "scheduled_service": "no", + "gps_code": "LLMG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Megiddo_Airport" + }, + { + "id": "30144", + "ident": "LLMR", + "type": "small_airport", + "name": "Mitzpe Ramon Airfield", + "latitude_deg": "30.65060043334961", + "longitude_deg": "34.80690002441406", + "elevation_ft": "2556", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-D", + "municipality": "Mitzpe Ramon", + "scheduled_service": "no", + "gps_code": "LLMR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mitzpe_Ramon_Airfield" + }, + { + "id": "4421", + "ident": "LLMZ", + "type": "medium_airport", + "name": "Bar Yehuda Airfield", + "latitude_deg": "31.32819938659668", + "longitude_deg": "35.38859939575195", + "elevation_ft": "-1266", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-D", + "municipality": "Masada", + "scheduled_service": "no", + "gps_code": "LLMZ", + "iata_code": "MTZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bar_Yehuda_Airfield", + "keywords": "Masada Airfield" + }, + { + "id": "4422", + "ident": "LLNV", + "type": "medium_airport", + "name": "Nevatim Air Base", + "latitude_deg": "31.208299636799996", + "longitude_deg": "35.012298584", + "elevation_ft": "1330", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-D", + "municipality": "Beersheba", + "scheduled_service": "no", + "gps_code": "LLNV", + "iata_code": "VTM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nevatim_Airbase", + "keywords": "Malhata, Be'er Sheva" + }, + { + "id": "4423", + "ident": "LLOV", + "type": "small_airport", + "name": "Ovda Airport", + "latitude_deg": "29.9403", + "longitude_deg": "34.935799", + "elevation_ft": "1492", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-D", + "municipality": "Eilat", + "scheduled_service": "no", + "gps_code": "LLOV", + "iata_code": "VDA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ovda_Airport", + "keywords": "Ovda Air Force Base" + }, + { + "id": "316581", + "ident": "LLPO", + "type": "heliport", + "name": "Poriya Medical Center", + "latitude_deg": "32.7541667", + "longitude_deg": "35.5425", + "elevation_ft": "731", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-Z", + "scheduled_service": "no", + "gps_code": "LLPO", + "keywords": "Tiberias" + }, + { + "id": "316582", + "ident": "LLRB", + "type": "heliport", + "name": "Rambam Heliport", + "latitude_deg": "32.8352778", + "longitude_deg": "34.9858333", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-HA", + "municipality": "Haifa", + "scheduled_service": "no", + "gps_code": "LLRB" + }, + { + "id": "4424", + "ident": "LLRD", + "type": "medium_airport", + "name": "Ramat David Air Base", + "latitude_deg": "32.66510009765625", + "longitude_deg": "35.179500579833984", + "elevation_ft": "185", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-Z", + "municipality": "Haifa", + "scheduled_service": "no", + "gps_code": "LLRD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ramat_David_Airbase", + "keywords": "RAF Ramat David" + }, + { + "id": "4425", + "ident": "LLRM", + "type": "medium_airport", + "name": "Ramon Air Base", + "latitude_deg": "30.776100158691406", + "longitude_deg": "34.66669845581055", + "elevation_ft": "2126", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-D", + "municipality": "Beersheba", + "scheduled_service": "no", + "gps_code": "LLRM", + "iata_code": "MIP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ramon_Airbase", + "keywords": "Kanaf 25, Matred" + }, + { + "id": "4426", + "ident": "LLSD", + "type": "closed", + "name": "Sde Dov Airport", + "latitude_deg": "32.1147", + "longitude_deg": "34.7822", + "elevation_ft": "43", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-TA", + "municipality": "Tel Aviv", + "scheduled_service": "no", + "gps_code": "LLSD", + "iata_code": "SDV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sde_Dov_Airport" + }, + { + "id": "316584", + "ident": "LLSM", + "type": "heliport", + "name": "Sheba (Tel HaShomer) Medical Center", + "latitude_deg": "32.0433333", + "longitude_deg": "34.8419444", + "elevation_ft": "148", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-TA", + "municipality": "Ramat Gan", + "scheduled_service": "no", + "gps_code": "LLSM" + }, + { + "id": "316580", + "ident": "LLSR", + "type": "heliport", + "name": "Soroka Medical Center", + "latitude_deg": "31.2591667", + "longitude_deg": "34.7994444", + "elevation_ft": "951", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-D", + "municipality": "Beersheba", + "scheduled_service": "no", + "gps_code": "LLSR" + }, + { + "id": "316592", + "ident": "LLTN", + "type": "small_airport", + "name": "Tnuvot Ultralight Airfield", + "latitude_deg": "32.308611", + "longitude_deg": "34.978333", + "elevation_ft": "99", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-M", + "municipality": "Tnuvot", + "scheduled_service": "no", + "gps_code": "LLTN" + }, + { + "id": "316586", + "ident": "LLYO", + "type": "small_airport", + "name": "Yotvata Airfield", + "latitude_deg": "29.901111", + "longitude_deg": "35.0675", + "elevation_ft": "249", + "continent": "AS", + "iso_country": "IL", + "iso_region": "IL-D", + "municipality": "Yotvata", + "scheduled_service": "no", + "gps_code": "LLYT", + "iata_code": "YOT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yotvata_Airfield" + }, + { + "id": "308661", + "ident": "LMC", + "type": "small_airport", + "name": "La Macarena Airport", + "latitude_deg": "2.17565", + "longitude_deg": "-73.78674", + "elevation_ft": "790", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "La Macarena", + "scheduled_service": "yes", + "iata_code": "LMC", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Macarena_Airport", + "keywords": "Aeropuerto Javier Noreña Valencia" + }, + { + "id": "35207", + "ident": "LMMG", + "type": "heliport", + "name": "Xewkija Heliport", + "latitude_deg": "36.027199", + "longitude_deg": "14.2728", + "continent": "EU", + "iso_country": "MT", + "iso_region": "MT-62", + "municipality": "Gozo", + "scheduled_service": "yes", + "gps_code": "LMMG", + "iata_code": "GZM" + }, + { + "id": "4427", + "ident": "LMML", + "type": "large_airport", + "name": "Malta International Airport", + "latitude_deg": "35.857498", + "longitude_deg": "14.4775", + "elevation_ft": "300", + "continent": "EU", + "iso_country": "MT", + "iso_region": "MT-25", + "municipality": "Valletta", + "scheduled_service": "yes", + "gps_code": "LMML", + "iata_code": "MLA", + "home_link": "http://www.maltairport.com/en/home.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Malta_International_Airport", + "keywords": "Luqa Airport,Valletta,Gudja,RAF Luqa" + }, + { + "id": "349342", + "ident": "LMV", + "type": "small_airport", + "name": "Madivaru Airport", + "latitude_deg": "5.457545", + "longitude_deg": "73.370261", + "elevation_ft": "31", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-03", + "municipality": "Naifaru", + "scheduled_service": "no", + "iata_code": "LMV" + }, + { + "id": "308663", + "ident": "LMZ", + "type": "small_airport", + "name": "Palma Airport", + "latitude_deg": "-10.7506", + "longitude_deg": "40.4702", + "elevation_ft": "177", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-P", + "municipality": "Palma", + "scheduled_service": "no", + "iata_code": "LMZ" + }, + { + "id": "302388", + "ident": "LNC", + "type": "small_airport", + "name": "Lengbati Airport", + "latitude_deg": "-6.384611111110001", + "longitude_deg": "147.368638889", + "elevation_ft": "5750", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "scheduled_service": "no", + "gps_code": "AYLT", + "iata_code": "LNC", + "local_code": "LNG" + }, + { + "id": "308283", + "ident": "LNF", + "type": "small_airport", + "name": "Munbil Airport", + "latitude_deg": "-4.855941", + "longitude_deg": "141.220165", + "elevation_ft": "3126", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "scheduled_service": "no", + "gps_code": "AYYM", + "iata_code": "LNF", + "local_code": "MBL" + }, + { + "id": "302387", + "ident": "LNM", + "type": "small_airport", + "name": "Langimar Airport", + "latitude_deg": "-7.22313888889", + "longitude_deg": "146.227083333", + "elevation_ft": "5127", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "scheduled_service": "no", + "gps_code": "AYLN", + "iata_code": "LNM", + "local_code": "LNM" + }, + { + "id": "30153", + "ident": "LNMC", + "type": "heliport", + "name": "Monaco Heliport", + "latitude_deg": "43.725798", + "longitude_deg": "7.419673", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "MC", + "iso_region": "MC-U-A", + "municipality": "Fontvieille", + "scheduled_service": "yes", + "gps_code": "LNMC", + "iata_code": "MCM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monaco_Heliport", + "keywords": "Monte Carlo Heliport, Heli Air Monaco" + }, + { + "id": "312995", + "ident": "LNQ", + "type": "closed", + "name": "Loani Airport", + "latitude_deg": "-10.5815", + "longitude_deg": "150.5931", + "elevation_ft": "150", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Loani", + "scheduled_service": "no", + "iata_code": "LNQ" + }, + { + "id": "29444", + "ident": "LOAA", + "type": "small_airport", + "name": "Ottenschlag Airport", + "latitude_deg": "48.4189", + "longitude_deg": "15.215661", + "elevation_ft": "2867", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Ottenschlag", + "scheduled_service": "no", + "gps_code": "LOAA", + "keywords": "Union Sportfliegergruppe" + }, + { + "id": "29445", + "ident": "LOAB", + "type": "small_airport", + "name": "Dobersberg Airfield", + "latitude_deg": "48.922222", + "longitude_deg": "15.296944", + "elevation_ft": "1720", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Dobersberg", + "scheduled_service": "no", + "gps_code": "LOAB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dobersberg_Airport" + }, + { + "id": "43790", + "ident": "LOAC", + "type": "heliport", + "name": "Kittsee Heliport", + "latitude_deg": "48.09328842163086", + "longitude_deg": "17.06610870361328", + "elevation_ft": "446", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-1", + "municipality": "Kittsee", + "scheduled_service": "no" + }, + { + "id": "29446", + "ident": "LOAD", + "type": "small_airport", + "name": "Völtendorf Airport", + "latitude_deg": "48.160081", + "longitude_deg": "15.58677", + "elevation_ft": "1063", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Ober-Grafendorf", + "scheduled_service": "no", + "gps_code": "LOAD" + }, + { + "id": "43807", + "ident": "LOAE", + "type": "heliport", + "name": "Eisenstadt Heliport", + "latitude_deg": "47.84677", + "longitude_deg": "16.51345", + "elevation_ft": "748", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-1", + "municipality": "Eisenstadt", + "scheduled_service": "no" + }, + { + "id": "43808", + "ident": "LOAF", + "type": "heliport", + "name": "Baden Heliport", + "latitude_deg": "48.00027847290039", + "longitude_deg": "16.252222061157227", + "elevation_ft": "733", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Baden", + "scheduled_service": "no" + }, + { + "id": "28135", + "ident": "LOAG", + "type": "small_airport", + "name": "Krems Airport", + "latitude_deg": "48.446389", + "longitude_deg": "15.634167", + "elevation_ft": "1017", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Krems", + "scheduled_service": "no", + "gps_code": "LOAG" + }, + { + "id": "43809", + "ident": "LOAH", + "type": "heliport", + "name": "Horn Heliport", + "latitude_deg": "48.66972351074219", + "longitude_deg": "15.661944389343262", + "elevation_ft": "1012", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Horn", + "scheduled_service": "no" + }, + { + "id": "43863", + "ident": "LOAJ", + "type": "heliport", + "name": "Öamtc Heliport", + "latitude_deg": "48.2223245852", + "longitude_deg": "16.5126925707", + "elevation_ft": "516", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-9", + "municipality": "Aspern", + "scheduled_service": "no" + }, + { + "id": "43810", + "ident": "LOAK", + "type": "heliport", + "name": "Krems Heliport", + "latitude_deg": "48.413333892822266", + "longitude_deg": "15.616389274597168", + "elevation_ft": "647", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Krems", + "scheduled_service": "no" + }, + { + "id": "30069", + "ident": "LOAL", + "type": "closed", + "name": "Leopoldsdorf im Marchfelde Airport", + "latitude_deg": "48.2267", + "longitude_deg": "16.672199", + "elevation_ft": "486", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Leopoldsdorf im Marchfelde", + "scheduled_service": "no", + "keywords": "LOAL" + }, + { + "id": "43864", + "ident": "LOAM", + "type": "heliport", + "name": "Meidling Heliport", + "latitude_deg": "48.17399597167969", + "longitude_deg": "16.322603225708008", + "elevation_ft": "737", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-9", + "municipality": "Vienna", + "scheduled_service": "no" + }, + { + "id": "4428", + "ident": "LOAN", + "type": "medium_airport", + "name": "Wiener Neustadt East Airport", + "latitude_deg": "47.843299865722656", + "longitude_deg": "16.260099411010742", + "elevation_ft": "896", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Wiener Neustadt", + "scheduled_service": "no", + "gps_code": "LOAN", + "home_link": "http://www.loan-airport.at/" + }, + { + "id": "43791", + "ident": "LOAO", + "type": "heliport", + "name": "Oberpullendorf Heliport", + "latitude_deg": "47.507625579833984", + "longitude_deg": "16.51201057434082", + "elevation_ft": "909", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-1", + "municipality": "Oberpullendorf", + "scheduled_service": "no" + }, + { + "id": "43811", + "ident": "LOAP", + "type": "heliport", + "name": "Waidhofen an der Ybbs Hospital Helipad", + "latitude_deg": "47.952778", + "longitude_deg": "14.788056", + "elevation_ft": "1279", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Waidhofen an der Ybbs", + "scheduled_service": "no", + "gps_code": "LOAP" + }, + { + "id": "43812", + "ident": "LOAQ", + "type": "heliport", + "name": "Krankenhaus Heliport", + "latitude_deg": "48.12666702270508", + "longitude_deg": "14.88083267211914", + "elevation_ft": "947", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Amstetten", + "scheduled_service": "no" + }, + { + "id": "28137", + "ident": "LOAR", + "type": "small_airport", + "name": "Altlichtenwarth Gliderfield", + "latitude_deg": "48.6661", + "longitude_deg": "16.825", + "elevation_ft": "604", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Altlichtenwarth", + "scheduled_service": "no", + "gps_code": "LOAR", + "home_link": "http://www.loar.at/", + "keywords": "Segelflugfeld Altlichtenwarth" + }, + { + "id": "29447", + "ident": "LOAS", + "type": "small_airport", + "name": "Spitzerberg Airfield", + "latitude_deg": "48.099157", + "longitude_deg": "16.933527", + "elevation_ft": "623", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Spitzerberg", + "scheduled_service": "no", + "gps_code": "LOAS", + "keywords": "Flugsportzentrum Spitzerberg" + }, + { + "id": "31839", + "ident": "LOAT", + "type": "closed", + "name": "Trausdorf Airport", + "latitude_deg": "47.798024", + "longitude_deg": "16.558172", + "elevation_ft": "525", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-1", + "municipality": "Trausdorf an der Wulka", + "scheduled_service": "no", + "gps_code": "LOAT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trausdorf_Airport" + }, + { + "id": "29448", + "ident": "LOAU", + "type": "small_airport", + "name": "Stockerau Airport", + "latitude_deg": "48.408928", + "longitude_deg": "16.189974", + "elevation_ft": "686", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Stockerau", + "scheduled_service": "no", + "gps_code": "LOAU" + }, + { + "id": "28136", + "ident": "LOAV", + "type": "small_airport", + "name": "Vöslau-Kottingbrunn Airport", + "latitude_deg": "47.965", + "longitude_deg": "16.26", + "elevation_ft": "765", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Bad Vöslau", + "scheduled_service": "no", + "gps_code": "LOAV", + "home_link": "http://www.loav.at/" + }, + { + "id": "43813", + "ident": "LOAW", + "type": "heliport", + "name": "Öamtc Heliport", + "latitude_deg": "47.84555435180664", + "longitude_deg": "16.252777099609375", + "elevation_ft": "900", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Wiener Neustadt", + "scheduled_service": "no" + }, + { + "id": "43814", + "ident": "LOAX", + "type": "heliport", + "name": "St. Pölten Heliport", + "latitude_deg": "48.21333312988281", + "longitude_deg": "15.629166603088379", + "elevation_ft": "997", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "St. Pölten", + "scheduled_service": "no" + }, + { + "id": "43815", + "ident": "LOAY", + "type": "heliport", + "name": "Kilb Heliport", + "latitude_deg": "48.08610916137695", + "longitude_deg": "15.428333282470703", + "elevation_ft": "1388", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Kilb", + "scheduled_service": "no" + }, + { + "id": "43816", + "ident": "LOAZ", + "type": "heliport", + "name": "Zwettl Heliport", + "latitude_deg": "48.599998474121094", + "longitude_deg": "15.164167404174805", + "elevation_ft": "1900", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Zwettl", + "scheduled_service": "no" + }, + { + "id": "43865", + "ident": "LOBA", + "type": "heliport", + "name": "Wien Heliport", + "latitude_deg": "48.2216682434082", + "longitude_deg": "16.346111297607422", + "elevation_ft": "689", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-9", + "municipality": "Vienna", + "scheduled_service": "no" + }, + { + "id": "329105", + "ident": "LOBF", + "type": "heliport", + "name": "Christophorus 9 Hospital Heliport", + "latitude_deg": "48.1893018", + "longitude_deg": "16.4124325", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-9", + "municipality": "Vienna", + "scheduled_service": "no", + "gps_code": "LOBF" + }, + { + "id": "324124", + "ident": "LOBI", + "type": "heliport", + "name": "Mödling Krankenhaus Heliport", + "latitude_deg": "48.089471", + "longitude_deg": "16.298242", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Mödling", + "scheduled_service": "no", + "gps_code": "LOBI" + }, + { + "id": "43817", + "ident": "LOBM", + "type": "heliport", + "name": "Mistelbach Hospital Helipad", + "latitude_deg": "48.567663", + "longitude_deg": "16.579138", + "elevation_ft": "715", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Mistelbach", + "scheduled_service": "no", + "gps_code": "LOBM" + }, + { + "id": "43825", + "ident": "LODL", + "type": "heliport", + "name": "Business Center Leitner Heliport", + "latitude_deg": "46.968071", + "longitude_deg": "15.800702", + "elevation_ft": "1000", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-6", + "municipality": "Kirchberg An Der Raab", + "scheduled_service": "no", + "gps_code": "LODL" + }, + { + "id": "312151", + "ident": "LODO", + "type": "heliport", + "name": "Christophorus 16 Heliport", + "latitude_deg": "47.30526", + "longitude_deg": "16.18352", + "elevation_ft": "1079", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-1", + "municipality": "Oberwart", + "scheduled_service": "no", + "gps_code": "LODO", + "home_link": "http://www.christophorus16.at/index.aspx" + }, + { + "id": "313920", + "ident": "LOF", + "type": "closed", + "name": "Loen Airport", + "latitude_deg": "7.7575", + "longitude_deg": "168.2357", + "elevation_ft": "23", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-NMU", + "municipality": "Loen Island", + "scheduled_service": "no", + "iata_code": "LOF", + "keywords": "Leuen Island" + }, + { + "id": "43826", + "ident": "LOGA", + "type": "heliport", + "name": "Bad Radkersburg Hospital Helipad", + "latitude_deg": "46.691607", + "longitude_deg": "15.992397", + "elevation_ft": "682", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-6", + "municipality": "Bad Radkersburg", + "scheduled_service": "no", + "gps_code": "LOGA" + }, + { + "id": "43827", + "ident": "LOGC", + "type": "heliport", + "name": "Niederöblarn Heliport", + "latitude_deg": "47.4799995422", + "longitude_deg": "14.010556221", + "elevation_ft": "2142", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-6", + "municipality": "Niederöblarn", + "scheduled_service": "no", + "gps_code": "LOGC" + }, + { + "id": "29449", + "ident": "LOGF", + "type": "small_airport", + "name": "Fürstenfeld Airport", + "latitude_deg": "47.061873", + "longitude_deg": "16.083901", + "elevation_ft": "830", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-6", + "municipality": "Fürstenfeld", + "scheduled_service": "no", + "gps_code": "LOGF" + }, + { + "id": "28133", + "ident": "LOGG", + "type": "small_airport", + "name": "Punitz-Güssing Airport", + "latitude_deg": "47.146654", + "longitude_deg": "16.317058", + "elevation_ft": "950", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-1", + "municipality": "Punitz", + "scheduled_service": "no", + "gps_code": "LOGG", + "home_link": "http://www.logg.at/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Punitz-G%C3%BCssing_Airport", + "keywords": "Güssing, Punitz-Güssing" + }, + { + "id": "43828", + "ident": "LOGH", + "type": "heliport", + "name": "Graz University Hospital Helipad", + "latitude_deg": "47.08059", + "longitude_deg": "15.46381", + "elevation_ft": "1427", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-6", + "municipality": "Graz", + "scheduled_service": "no", + "gps_code": "LOGH" + }, + { + "id": "29450", + "ident": "LOGI", + "type": "small_airport", + "name": "Trieben Airport", + "latitude_deg": "47.493364", + "longitude_deg": "14.49558", + "elevation_ft": "2283", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-6", + "municipality": "Trieben", + "scheduled_service": "no", + "gps_code": "LOGI" + }, + { + "id": "43829", + "ident": "LOGJ", + "type": "heliport", + "name": "Judenburg Heliport", + "latitude_deg": "47.165000915527344", + "longitude_deg": "14.654999732971191", + "elevation_ft": "2448", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-6", + "municipality": "Judenburg", + "scheduled_service": "no" + }, + { + "id": "29451", + "ident": "LOGK", + "type": "small_airport", + "name": "Kapfenberg Airport", + "latitude_deg": "47.457544", + "longitude_deg": "15.331125", + "elevation_ft": "1719", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-6", + "municipality": "Kapfenberg", + "scheduled_service": "no", + "gps_code": "LOGK" + }, + { + "id": "29452", + "ident": "LOGL", + "type": "small_airport", + "name": "Flugplatz Lanzen-Turnau", + "latitude_deg": "47.556238", + "longitude_deg": "15.320738", + "elevation_ft": "2575", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-6", + "municipality": "Lanzen", + "scheduled_service": "no", + "gps_code": "LOGL" + }, + { + "id": "29453", + "ident": "LOGM", + "type": "small_airport", + "name": "Flugfeld Mariazell", + "latitude_deg": "47.789733", + "longitude_deg": "15.300333", + "elevation_ft": "2822", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-6", + "municipality": "Mariazell", + "scheduled_service": "no", + "gps_code": "LOGM" + }, + { + "id": "29454", + "ident": "LOGO", + "type": "small_airport", + "name": "Flugplatz Niederöblarn", + "latitude_deg": "47.478742", + "longitude_deg": "14.007101", + "elevation_ft": "2142", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-6", + "municipality": "Niederöblarn", + "scheduled_service": "no", + "gps_code": "LOGO", + "wikipedia_link": "https://de.wikipedia.org/wiki/Flugplatz_Nieder%C3%B6blarn" + }, + { + "id": "29455", + "ident": "LOGP", + "type": "small_airport", + "name": "Pinkafeld Airfield", + "latitude_deg": "47.386684", + "longitude_deg": "16.112673", + "elevation_ft": "1339", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-1", + "municipality": "Pinkafeld", + "scheduled_service": "no", + "gps_code": "LOGP" + }, + { + "id": "43792", + "ident": "LOGR", + "type": "heliport", + "name": "Schwerpunkt Heliport", + "latitude_deg": "47.279998779296875", + "longitude_deg": "16.202777862548828", + "elevation_ft": "1076", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-1", + "municipality": "Oberwart", + "scheduled_service": "no" + }, + { + "id": "29456", + "ident": "LOGT", + "type": "small_airport", + "name": "Leoben/Timmersdorf Airfield", + "latitude_deg": "47.37961", + "longitude_deg": "14.96425", + "elevation_ft": "2060", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-6", + "municipality": "Timmersdorf", + "scheduled_service": "no", + "gps_code": "LOGT" + }, + { + "id": "29457", + "ident": "LOGW", + "type": "small_airport", + "name": "Unterfladnitz Airport", + "latitude_deg": "47.170293", + "longitude_deg": "15.664468", + "elevation_ft": "1296", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-6", + "municipality": "Weiz", + "scheduled_service": "no", + "gps_code": "LOGW", + "keywords": "Thalerhof" + }, + { + "id": "312553", + "ident": "LOHD", + "type": "heliport", + "name": "Hartberg LKH Heliport", + "latitude_deg": "47.273333", + "longitude_deg": "15.966111", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-6", + "municipality": "Hartberg", + "scheduled_service": "no", + "gps_code": "LODH" + }, + { + "id": "43830", + "ident": "LOIA", + "type": "heliport", + "name": "Kitzbühel Hospital Helipad", + "latitude_deg": "47.449643", + "longitude_deg": "12.395697", + "elevation_ft": "2510", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Kitzbühel", + "scheduled_service": "no", + "gps_code": "LOIA" + }, + { + "id": "43831", + "ident": "LOIB", + "type": "heliport", + "name": "Hörlahof Heliport", + "latitude_deg": "47.466857", + "longitude_deg": "12.367752", + "elevation_ft": "2733", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Kitzbühel", + "scheduled_service": "no", + "gps_code": "LOIB" + }, + { + "id": "43858", + "ident": "LOIC", + "type": "heliport", + "name": "St. Anton Am Arlberg Heliport", + "latitude_deg": "47.119642", + "longitude_deg": "10.240544", + "elevation_ft": "4730", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-8", + "municipality": "St. Anton Am Arlberg", + "scheduled_service": "no", + "gps_code": "LOIC" + }, + { + "id": "43832", + "ident": "LOID", + "type": "heliport", + "name": "Kufstein Heliport", + "latitude_deg": "47.57124", + "longitude_deg": "12.149485", + "elevation_ft": "1664", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Kufstein", + "scheduled_service": "no", + "gps_code": "LOID" + }, + { + "id": "43833", + "ident": "LOIE", + "type": "heliport", + "name": "Reutte Heliport", + "latitude_deg": "47.473027", + "longitude_deg": "10.711678", + "elevation_ft": "2822", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Reutte", + "scheduled_service": "no", + "gps_code": "LOIE" + }, + { + "id": "353991", + "ident": "LOIF", + "type": "heliport", + "name": "Feldkirch State Hospital Helipad", + "latitude_deg": "47.2312", + "longitude_deg": "9.578716", + "elevation_ft": "1588", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-8", + "municipality": "Feldkirch", + "scheduled_service": "no", + "gps_code": "LOIF" + }, + { + "id": "43859", + "ident": "LOIG", + "type": "heliport", + "name": "Ludesch Heliport", + "latitude_deg": "47.200313", + "longitude_deg": "9.780208", + "elevation_ft": "1804", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-8", + "municipality": "Ludesch", + "scheduled_service": "no", + "gps_code": "LOIG" + }, + { + "id": "29458", + "ident": "LOIH", + "type": "small_airport", + "name": "Hohenems-Dornbirn Airfield", + "latitude_deg": "47.384998", + "longitude_deg": "9.7", + "elevation_ft": "1352", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-8", + "municipality": "Hohenems / Dornbirn", + "scheduled_service": "no", + "gps_code": "LOIH", + "iata_code": "HOH", + "home_link": "http://www.loih.at/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Flugplatz_Hohenems-Dornbirn" + }, + { + "id": "43834", + "ident": "LOII", + "type": "heliport", + "name": "Hall in Tirol Hospital Heliport", + "latitude_deg": "47.281387", + "longitude_deg": "11.515834", + "elevation_ft": "1887", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Hall in Tirol", + "scheduled_service": "no", + "gps_code": "LOII" + }, + { + "id": "29459", + "ident": "LOIJ", + "type": "small_airport", + "name": "Sankt Johann Airport", + "latitude_deg": "47.5201", + "longitude_deg": "12.4497", + "elevation_ft": "2198", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Sankt Johann in Tyrol", + "scheduled_service": "no", + "gps_code": "LOIJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sankt_Johann_Airport", + "keywords": "Wien. Schwechat Airport" + }, + { + "id": "29460", + "ident": "LOIK", + "type": "small_airport", + "name": "Kufstein-Langkampfen Airport", + "latitude_deg": "47.565117", + "longitude_deg": "12.12807", + "elevation_ft": "1588", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Kufstein", + "scheduled_service": "no", + "gps_code": "LOIK" + }, + { + "id": "43835", + "ident": "LOIL", + "type": "heliport", + "name": "ÖAMTC Heliport", + "latitude_deg": "47.176579", + "longitude_deg": "10.612607", + "elevation_ft": "2513", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Zams", + "scheduled_service": "no" + }, + { + "id": "43836", + "ident": "LOIM", + "type": "heliport", + "name": "Langkampfen - Au Heliport", + "latitude_deg": "47.5661125183", + "longitude_deg": "12.1350002289", + "elevation_ft": "1624", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Langkampfen", + "scheduled_service": "no", + "gps_code": "LOIM" + }, + { + "id": "43837", + "ident": "LOIN", + "type": "heliport", + "name": "Feuerwehrschule Heliport", + "latitude_deg": "47.309165954589844", + "longitude_deg": "11.050832748413086", + "elevation_ft": "2423", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Telfs", + "scheduled_service": "no" + }, + { + "id": "43838", + "ident": "LOIO", + "type": "heliport", + "name": "Sölden Heliport", + "latitude_deg": "46.946624755859375", + "longitude_deg": "11.018758773803711", + "elevation_ft": "4764", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Sölden", + "scheduled_service": "no" + }, + { + "id": "43839", + "ident": "LOIP", + "type": "heliport", + "name": "Idalpe Heliport", + "latitude_deg": "46.981109619140625", + "longitude_deg": "10.316110610961914", + "elevation_ft": "7522", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Ischgl", + "scheduled_service": "no" + }, + { + "id": "43860", + "ident": "LOIQ", + "type": "heliport", + "name": "Dr. Schenk Heliport", + "latitude_deg": "47.274681091308594", + "longitude_deg": "9.591497421264648", + "elevation_ft": "1449", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-8", + "municipality": "Feldkirch", + "scheduled_service": "no" + }, + { + "id": "29461", + "ident": "LOIR", + "type": "small_airport", + "name": "Reutte-Höfen Airport", + "latitude_deg": "47.470897", + "longitude_deg": "10.6913", + "elevation_ft": "2806", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Reutte", + "scheduled_service": "no", + "gps_code": "LOIR" + }, + { + "id": "43840", + "ident": "LOIS", + "type": "heliport", + "name": "Swarovski Heliport", + "latitude_deg": "47.29471969604492", + "longitude_deg": "11.60016918182373", + "elevation_ft": "1818", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Wattens", + "scheduled_service": "no" + }, + { + "id": "43841", + "ident": "LOIT", + "type": "heliport", + "name": "St Johann In Tirol Hospital Heliport", + "latitude_deg": "47.520935", + "longitude_deg": "12.429672", + "elevation_ft": "2170", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "St Johann In Tirol", + "scheduled_service": "no", + "gps_code": "LOIT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sankt_Johann_in_Tirol_Heliport", + "keywords": "Bodenlandeplatz Ground Landing Area" + }, + { + "id": "43842", + "ident": "LOIU", + "type": "heliport", + "name": "Uni Klinik Heliport", + "latitude_deg": "47.261043548583984", + "longitude_deg": "11.384798049926758", + "elevation_ft": "2057", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Innsbruck", + "scheduled_service": "no" + }, + { + "id": "43843", + "ident": "LOIV", + "type": "heliport", + "name": "St. Vinzenz Heliport", + "latitude_deg": "47.162498474121094", + "longitude_deg": "10.593055725097656", + "elevation_ft": "2546", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Zams", + "scheduled_service": "no" + }, + { + "id": "43844", + "ident": "LOIW", + "type": "heliport", + "name": "Waidring Heliport", + "latitude_deg": "47.58527755737305", + "longitude_deg": "12.592499732971191", + "elevation_ft": "2493", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Waidring", + "scheduled_service": "no" + }, + { + "id": "43861", + "ident": "LOIX", + "type": "heliport", + "name": "Bregenz Heliport", + "latitude_deg": "47.49666213989258", + "longitude_deg": "9.745111465454102", + "elevation_ft": "1492", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-8", + "municipality": "Bregenz", + "scheduled_service": "no" + }, + { + "id": "43862", + "ident": "LOIY", + "type": "heliport", + "name": "Sanatorium Dr. Schenk Heliport", + "latitude_deg": "47.07394027709961", + "longitude_deg": "9.913284301757812", + "elevation_ft": "2240", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-8", + "municipality": "Schruns", + "scheduled_service": "no" + }, + { + "id": "43845", + "ident": "LOIZ", + "type": "heliport", + "name": "Schwaz Heliport", + "latitude_deg": "47.344444274902344", + "longitude_deg": "11.705278396606445", + "elevation_ft": "1827", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Schwaz", + "scheduled_service": "no" + }, + { + "id": "353990", + "ident": "LOJB", + "type": "heliport", + "name": "Bludenz State Hospital Helipad", + "latitude_deg": "47.159464", + "longitude_deg": "9.821171", + "elevation_ft": "2010", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-8", + "municipality": "Bludenz", + "scheduled_service": "no", + "gps_code": "LOJB" + }, + { + "id": "43846", + "ident": "LOJK", + "type": "heliport", + "name": "Kaltenbach Heliport", + "latitude_deg": "47.28555679321289", + "longitude_deg": "11.879721641540527", + "elevation_ft": "1791", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Kaltenbach", + "scheduled_service": "no" + }, + { + "id": "43847", + "ident": "LOJM", + "type": "heliport", + "name": "Mayrhofen Heliport", + "latitude_deg": "47.1783332824707", + "longitude_deg": "11.868056297302246", + "elevation_ft": "2000", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Mayrhofen", + "scheduled_service": "no" + }, + { + "id": "43848", + "ident": "LOJO", + "type": "heliport", + "name": "Flugrettungszentrum Öamtc Heliport", + "latitude_deg": "47.255001068115234", + "longitude_deg": "11.345556259155273", + "elevation_ft": "1998", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Innsbruck", + "scheduled_service": "no" + }, + { + "id": "43849", + "ident": "LOJP", + "type": "heliport", + "name": "Karres Heliport", + "latitude_deg": "47.21888732910156", + "longitude_deg": "10.768889427185059", + "elevation_ft": "2534", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Karres", + "scheduled_service": "no" + }, + { + "id": "43850", + "ident": "LOJT", + "type": "heliport", + "name": "Hat Tux Heliport", + "latitude_deg": "47.133888244599994", + "longitude_deg": "11.704167366", + "elevation_ft": "4495", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Madseit", + "scheduled_service": "no", + "gps_code": "LOJT" + }, + { + "id": "43851", + "ident": "LOJZ", + "type": "heliport", + "name": "Zugspitzarena Heliport", + "latitude_deg": "47.41999816894531", + "longitude_deg": "10.9269437789917", + "elevation_ft": "3666", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Ehrwald", + "scheduled_service": "no" + }, + { + "id": "43793", + "ident": "LOKA", + "type": "heliport", + "name": "Bodenlandeplatz/Ground-Landing Area Heliport", + "latitude_deg": "46.6352767944", + "longitude_deg": "14.3074998856", + "elevation_ft": "1458", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Klagenfurt", + "scheduled_service": "no", + "gps_code": "LOKA" + }, + { + "id": "43794", + "ident": "LOKB", + "type": "heliport", + "name": "Bad Kleinkircheim Heliport", + "latitude_deg": "46.81194305419922", + "longitude_deg": "13.783888816833496", + "elevation_ft": "3399", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Bad Kleinkircheim", + "scheduled_service": "no" + }, + { + "id": "43852", + "ident": "LOKC", + "type": "heliport", + "name": "Glock Heliport", + "latitude_deg": "46.522736", + "longitude_deg": "14.29705", + "elevation_ft": "1539", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Ferlach", + "scheduled_service": "no" + }, + { + "id": "43795", + "ident": "LOKD", + "type": "heliport", + "name": "Föderlach Heliport", + "latitude_deg": "46.601768493652344", + "longitude_deg": "13.949712753295898", + "elevation_ft": "1619", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Villach", + "scheduled_service": "no" + }, + { + "id": "29462", + "ident": "LOKF", + "type": "small_airport", + "name": "Feldkirchen Airfield", + "latitude_deg": "46.70893", + "longitude_deg": "14.076722", + "elevation_ft": "1706", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Feldkirchen", + "scheduled_service": "no", + "gps_code": "LOKF" + }, + { + "id": "29463", + "ident": "LOKG", + "type": "small_airport", + "name": "Ferlach-Glainach Airport", + "latitude_deg": "46.532778", + "longitude_deg": "14.330833", + "elevation_ft": "1498", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Ferlach", + "scheduled_service": "no", + "gps_code": "LOKG" + }, + { + "id": "29464", + "ident": "LOKH", + "type": "small_airport", + "name": "Hirt Airport", + "latitude_deg": "46.928692", + "longitude_deg": "14.431641", + "elevation_ft": "2019", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Friesach", + "scheduled_service": "no", + "gps_code": "LOKH" + }, + { + "id": "43796", + "ident": "LOKI", + "type": "heliport", + "name": "Wietersdorf Heliport", + "latitude_deg": "46.8477783203125", + "longitude_deg": "14.536944389343262", + "elevation_ft": "2070", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Wietersdorf", + "scheduled_service": "no" + }, + { + "id": "43853", + "ident": "LOKJ", + "type": "heliport", + "name": "Lienz Heliport", + "latitude_deg": "46.834999084472656", + "longitude_deg": "12.762778282165527", + "elevation_ft": "2254", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Lienz", + "scheduled_service": "no" + }, + { + "id": "43797", + "ident": "LOKK", + "type": "heliport", + "name": "Hallegg Heliport", + "latitude_deg": "46.64805603027344", + "longitude_deg": "14.245833396911621", + "elevation_ft": "1493", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Halleg", + "scheduled_service": "no" + }, + { + "id": "29465", + "ident": "LOKL", + "type": "small_airport", + "name": "Lienz-Nikolsdorf Airport", + "latitude_deg": "46.798333", + "longitude_deg": "12.878333", + "elevation_ft": "2093", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Lienz", + "scheduled_service": "no", + "gps_code": "LOKL", + "home_link": "http://www.lokl.at/", + "keywords": "LOWK" + }, + { + "id": "29466", + "ident": "LOKM", + "type": "small_airport", + "name": "Mayerhofen Airport", + "latitude_deg": "46.975799560546875", + "longitude_deg": "14.371700286865234", + "elevation_ft": "2119", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Mayerhofen", + "scheduled_service": "no", + "gps_code": "LOKM" + }, + { + "id": "29467", + "ident": "LOKN", + "type": "small_airport", + "name": "Nötsch im Gailtal Airfield", + "latitude_deg": "46.5811", + "longitude_deg": "13.6292", + "elevation_ft": "1801", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Nötsch im Gailtal", + "scheduled_service": "no", + "gps_code": "LOKN" + }, + { + "id": "43820", + "ident": "LOKO", + "type": "heliport", + "name": "Goldeck Talstation Heliport", + "latitude_deg": "46.79315185546875", + "longitude_deg": "13.483258247375488", + "elevation_ft": "1761", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-5", + "municipality": "Goldeck Talstation", + "scheduled_service": "no" + }, + { + "id": "43798", + "ident": "LOKP", + "type": "heliport", + "name": "Deutsch-Ordens-Spital Heliport", + "latitude_deg": "46.94722366333008", + "longitude_deg": "14.410833358764648", + "elevation_ft": "2113", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Friesach", + "scheduled_service": "no" + }, + { + "id": "43854", + "ident": "LOKQ", + "type": "heliport", + "name": "Öamtc Heliport", + "latitude_deg": "46.7998123169", + "longitude_deg": "12.876914978", + "elevation_ft": "2097", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Nikolsdorf", + "scheduled_service": "no", + "gps_code": "LOKQ" + }, + { + "id": "315902", + "ident": "LOKR", + "type": "small_airport", + "name": "Sankt Donat / Mairist Airport", + "latitude_deg": "46.743139", + "longitude_deg": "14.413134", + "elevation_ft": "1759", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Mairist", + "scheduled_service": "no", + "gps_code": "LOKR" + }, + { + "id": "43799", + "ident": "LOKS", + "type": "heliport", + "name": "St. Andrä Im Lavanttal Heliport", + "latitude_deg": "46.758331298828125", + "longitude_deg": "14.825555801391602", + "elevation_ft": "1414", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "St. Andrä", + "scheduled_service": "no" + }, + { + "id": "43800", + "ident": "LOKT", + "type": "heliport", + "name": "Villach Heliport", + "latitude_deg": "46.615692138671875", + "longitude_deg": "13.857175827026367", + "elevation_ft": "1732", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Villach", + "scheduled_service": "no" + }, + { + "id": "43801", + "ident": "LOKU", + "type": "heliport", + "name": "Dachlandeplatz 2 Heliport", + "latitude_deg": "46.61805725097656", + "longitude_deg": "14.29555606842041", + "elevation_ft": "1506", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Klagenfurt", + "scheduled_service": "no" + }, + { + "id": "43802", + "ident": "LOKV", + "type": "heliport", + "name": "Febau Heliport", + "latitude_deg": "46.661109924316406", + "longitude_deg": "14.615833282470703", + "elevation_ft": "1568", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Völkermarkt", + "scheduled_service": "no" + }, + { + "id": "29468", + "ident": "LOKW", + "type": "small_airport", + "name": "Wolfsberg Airport", + "latitude_deg": "46.818202", + "longitude_deg": "14.825154", + "elevation_ft": "1460", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Wolfsberg", + "scheduled_service": "no", + "gps_code": "LOKW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wolfsberg_Airport" + }, + { + "id": "43855", + "ident": "LOKX", + "type": "heliport", + "name": "Feldkirchen-Waiern Heliport", + "latitude_deg": "46.73444366455078", + "longitude_deg": "14.087778091430664", + "elevation_ft": "2014", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Feldkirchen-Waiern", + "scheduled_service": "no" + }, + { + "id": "43803", + "ident": "LOKY", + "type": "heliport", + "name": "Landespolizeikommando Kärnten Heliport", + "latitude_deg": "46.620018005371094", + "longitude_deg": "14.307845115661621", + "elevation_ft": "1532", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Klagenfurt", + "scheduled_service": "no" + }, + { + "id": "43804", + "ident": "LOKZ", + "type": "heliport", + "name": "Zwatzhof Heliport", + "latitude_deg": "46.975555419921875", + "longitude_deg": "14.2747220993042", + "elevation_ft": "2500", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Zwatzhof", + "scheduled_service": "no" + }, + { + "id": "29469", + "ident": "LOLC", + "type": "small_airport", + "name": "Flugplatz Scharnstein", + "latitude_deg": "47.898602", + "longitude_deg": "13.9394", + "elevation_ft": "1742", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-4", + "municipality": "Scharnstein", + "scheduled_service": "no", + "gps_code": "LOLC" + }, + { + "id": "43819", + "ident": "LOLD", + "type": "heliport", + "name": "Europa 3 Heliport", + "latitude_deg": "48.4008331299", + "longitude_deg": "13.44972229", + "elevation_ft": "1109", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-4", + "municipality": "Flugplatz Suben", + "scheduled_service": "no", + "gps_code": "LOLD" + }, + { + "id": "29470", + "ident": "LOLE", + "type": "small_airport", + "name": "Flugplatz Eferding", + "latitude_deg": "48.338333", + "longitude_deg": "13.985278", + "elevation_ft": "887", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-4", + "municipality": "Pupping", + "scheduled_service": "no", + "gps_code": "LOLE" + }, + { + "id": "29471", + "ident": "LOLF", + "type": "small_airport", + "name": "Freistadt Airport", + "latitude_deg": "48.513748", + "longitude_deg": "14.406579", + "elevation_ft": "2237", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-4", + "municipality": "Freistadt", + "scheduled_service": "no", + "gps_code": "LOLF" + }, + { + "id": "29472", + "ident": "LOLG", + "type": "small_airport", + "name": "Sankt Georgen Airport", + "latitude_deg": "48.10332", + "longitude_deg": "14.951091", + "elevation_ft": "827", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Sankt Georgen am Ybbsfelde", + "scheduled_service": "no", + "gps_code": "LOLG", + "home_link": "https://www.lolghauptseite.at/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sankt_Georgen_Airport" + }, + { + "id": "29473", + "ident": "LOLH", + "type": "small_airport", + "name": "Hofkirchen Airfield", + "latitude_deg": "48.13911", + "longitude_deg": "14.33584", + "elevation_ft": "1175", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-4", + "municipality": "Hofkirchen", + "scheduled_service": "no", + "gps_code": "LOLH" + }, + { + "id": "28140", + "ident": "LOLK", + "type": "small_airport", + "name": "Ried-Kirchheim Airport", + "latitude_deg": "48.21227", + "longitude_deg": "13.345678", + "elevation_ft": "1378", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-4", + "municipality": "Kirchheim im Innkreis", + "scheduled_service": "no", + "gps_code": "LOLK" + }, + { + "id": "29474", + "ident": "LOLM", + "type": "small_airport", + "name": "Micheldorf Airport", + "latitude_deg": "47.871669", + "longitude_deg": "14.125149", + "elevation_ft": "1509", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-4", + "municipality": "Micheldorf", + "scheduled_service": "no", + "gps_code": "LOLM" + }, + { + "id": "29475", + "ident": "LOLO", + "type": "small_airport", + "name": "Linz-East Airport", + "latitude_deg": "48.300044", + "longitude_deg": "14.333606", + "elevation_ft": "827", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-4", + "municipality": "Linz", + "scheduled_service": "no", + "gps_code": "LOLO", + "keywords": "Noetsch im Gailtal" + }, + { + "id": "29476", + "ident": "LOLS", + "type": "small_airport", + "name": "Flugplatz Schärding-Suben", + "latitude_deg": "48.403301", + "longitude_deg": "13.4483", + "elevation_ft": "1070", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-4", + "municipality": "Suben", + "scheduled_service": "no", + "gps_code": "LOLS" + }, + { + "id": "28134", + "ident": "LOLT", + "type": "small_airport", + "name": "Flugplatz Seitenstetten", + "latitude_deg": "48.050556", + "longitude_deg": "14.661944", + "elevation_ft": "1050", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Seitenstetten", + "scheduled_service": "no", + "gps_code": "LOLT" + }, + { + "id": "29477", + "ident": "LOLU", + "type": "small_airport", + "name": "Gmunden-Laakirchen Airfield", + "latitude_deg": "47.951698", + "longitude_deg": "13.8667", + "elevation_ft": "1670", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-4", + "municipality": "Gmunden", + "scheduled_service": "no", + "gps_code": "LOLU", + "home_link": "http://www.fliegerclub-traunsee.at/" + }, + { + "id": "4429", + "ident": "LOLW", + "type": "small_airport", + "name": "Wels Airport", + "latitude_deg": "48.18330001831055", + "longitude_deg": "14.040900230407715", + "elevation_ft": "1043", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-4", + "municipality": "Wels", + "scheduled_service": "no", + "gps_code": "LOLW" + }, + { + "id": "313922", + "ident": "LOM", + "type": "small_airport", + "name": "Francisco Primo de Verdad y Ramos Airport", + "latitude_deg": "21.258983", + "longitude_deg": "-101.943758", + "elevation_ft": "6227", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Lagos de Moreno", + "scheduled_service": "no", + "gps_code": "MMOO", + "iata_code": "LOM", + "local_code": "LMO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Francisco_Primo_de_Verdad_National_Airport" + }, + { + "id": "43805", + "ident": "LOMP", + "type": "heliport", + "name": "Patergassen Heliport", + "latitude_deg": "46.81944274902344", + "longitude_deg": "13.857221603393555", + "elevation_ft": "3576", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Patergassen", + "scheduled_service": "no" + }, + { + "id": "43806", + "ident": "LOMW", + "type": "heliport", + "name": "Dachlandeplatz Heliport", + "latitude_deg": "46.83250045776367", + "longitude_deg": "14.848055839538574", + "elevation_ft": "1575", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Wolfsberg", + "scheduled_service": "no" + }, + { + "id": "21633", + "ident": "LOR", + "type": "heliport", + "name": "Lowe AHP (Fort Rucker) Heliport", + "latitude_deg": "31.35580063", + "longitude_deg": "-85.75119781", + "elevation_ft": "294", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker Ozark", + "scheduled_service": "no", + "gps_code": "KLOR", + "iata_code": "LOR", + "local_code": "LOR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lowe_Army_Heliport" + }, + { + "id": "43821", + "ident": "LOSJ", + "type": "heliport", + "name": "St. Johann Im Pongau Heliport", + "latitude_deg": "47.394168853759766", + "longitude_deg": "13.222222328186035", + "elevation_ft": "1803", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-5", + "municipality": "St. Johann Im Pongau", + "scheduled_service": "no" + }, + { + "id": "43822", + "ident": "LOSL", + "type": "heliport", + "name": "Dachlandeplatz Heliport", + "latitude_deg": "47.80583953857422", + "longitude_deg": "13.027724266052246", + "elevation_ft": "1452", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-5", + "municipality": "Salzburg", + "scheduled_service": "no" + }, + { + "id": "29478", + "ident": "LOSM", + "type": "small_airport", + "name": "Flugplatz Mauterndorf", + "latitude_deg": "47.131995", + "longitude_deg": "13.695867", + "elevation_ft": "3642", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-5", + "municipality": "Mauterndorf", + "scheduled_service": "no", + "gps_code": "LOSM" + }, + { + "id": "43823", + "ident": "LOSS", + "type": "heliport", + "name": "Schwarzach Heliport", + "latitude_deg": "47.32444381713867", + "longitude_deg": "13.154999732971191", + "elevation_ft": "2046", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-5", + "municipality": "Schwarzach", + "scheduled_service": "no" + }, + { + "id": "4430", + "ident": "LOWG", + "type": "medium_airport", + "name": "Graz Airport", + "latitude_deg": "46.9911", + "longitude_deg": "15.4396", + "elevation_ft": "1115", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-6", + "municipality": "Graz (Feldkirchen bei Graz)", + "scheduled_service": "yes", + "gps_code": "LOWG", + "iata_code": "GRZ", + "home_link": "http://www.flughafen-graz.at/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Graz_Airport", + "keywords": "Thalerhof Airport, Fliegerhorst Nittner, Nittner Air Base" + }, + { + "id": "4431", + "ident": "LOWI", + "type": "medium_airport", + "name": "Innsbruck Airport", + "latitude_deg": "47.260201", + "longitude_deg": "11.344", + "elevation_ft": "1907", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Innsbruck", + "scheduled_service": "yes", + "gps_code": "LOWI", + "iata_code": "INN", + "home_link": "http://www.innsbruck-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Innsbruck_Airport", + "keywords": "Kranebitten Airport" + }, + { + "id": "4435", + "ident": "LOWK", + "type": "medium_airport", + "name": "Klagenfurt Airport", + "latitude_deg": "46.642502", + "longitude_deg": "14.3377", + "elevation_ft": "1472", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-2", + "municipality": "Klagenfurt am Wörthersee", + "scheduled_service": "yes", + "gps_code": "LOWK", + "iata_code": "KLU", + "home_link": "http://www.klagenfurt-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Klagenfurt_Airport", + "keywords": "Kärnten Airport" + }, + { + "id": "4432", + "ident": "LOWL", + "type": "medium_airport", + "name": "Linz-Hörsching Airport / Vogler Air Base", + "latitude_deg": "48.2332", + "longitude_deg": "14.1875", + "elevation_ft": "980", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-4", + "municipality": "Linz", + "scheduled_service": "yes", + "gps_code": "LOWL", + "iata_code": "LNZ", + "home_link": "http://www.flughafen-linz.at/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Linz_Airport", + "keywords": "Blue Danube Airport, Vogler Air Base, Fliegerhorst Vogler" + }, + { + "id": "4433", + "ident": "LOWS", + "type": "medium_airport", + "name": "Salzburg Airport", + "latitude_deg": "47.793300628699996", + "longitude_deg": "13.0043001175", + "elevation_ft": "1411", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-5", + "municipality": "Salzburg", + "scheduled_service": "yes", + "gps_code": "LOWS", + "iata_code": "SZG", + "home_link": "http://www.salzburg-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salzburg_Airport" + }, + { + "id": "4434", + "ident": "LOWW", + "type": "large_airport", + "name": "Vienna International Airport", + "latitude_deg": "48.110298", + "longitude_deg": "16.5697", + "elevation_ft": "600", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-9", + "municipality": "Vienna", + "scheduled_service": "yes", + "gps_code": "LOWW", + "iata_code": "VIE", + "home_link": "http://www.viennaairport.com/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vienna_International_Airport" + }, + { + "id": "28138", + "ident": "LOWZ", + "type": "small_airport", + "name": "Flugplatz Zell am See", + "latitude_deg": "47.291468", + "longitude_deg": "12.790632", + "elevation_ft": "2470", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-5", + "municipality": "Zell am See", + "scheduled_service": "no", + "gps_code": "LOWZ", + "home_link": "http://www.flugplatz-zellamsee.at/" + }, + { + "id": "29480", + "ident": "LOXA", + "type": "small_airport", + "name": "Fiala-Fernbrugg Air Base", + "latitude_deg": "47.53573", + "longitude_deg": "14.141488", + "elevation_ft": "2093", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-6", + "municipality": "Aigen im Ennstal", + "scheduled_service": "no", + "gps_code": "LOXA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Austrian_Air_Force#Fliegerhorst_Fiala-Fernbrugg", + "keywords": "Horsching Airport, Aigen Air Base, Fliegerhorst Fiala-Fernbrugg" + }, + { + "id": "43856", + "ident": "LOXH", + "type": "heliport", + "name": "Hochfilzen Heliport", + "latitude_deg": "47.477500915527344", + "longitude_deg": "12.650278091430664", + "elevation_ft": "3484", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Hochfilzen", + "scheduled_service": "no" + }, + { + "id": "43857", + "ident": "LOXI", + "type": "heliport", + "name": "Schwaz Military Heliport", + "latitude_deg": "47.334999084472656", + "longitude_deg": "11.697500228881836", + "elevation_ft": "1774", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-7", + "municipality": "Schwaz", + "scheduled_service": "no" + }, + { + "id": "29483", + "ident": "LOXN", + "type": "small_airport", + "name": "Wiener Neustadt West Airport", + "latitude_deg": "47.836933", + "longitude_deg": "16.221838", + "elevation_ft": "935", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Wiener Neustadt", + "scheduled_service": "no", + "gps_code": "LOXN" + }, + { + "id": "43824", + "ident": "LOXS", + "type": "heliport", + "name": "Schwarzenbergkaserne Military Heliport", + "latitude_deg": "47.79750061035156", + "longitude_deg": "12.981666564941406", + "elevation_ft": "1433", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-5", + "municipality": "Salzburg", + "scheduled_service": "no" + }, + { + "id": "29484", + "ident": "LOXT", + "type": "small_airport", + "name": "Brumowski Air Base", + "latitude_deg": "48.319247", + "longitude_deg": "16.114016", + "elevation_ft": "574", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-3", + "municipality": "Langenlebarn", + "scheduled_service": "no", + "gps_code": "LOXT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brumowski_Air_Base", + "keywords": "Langenlebarn Military Airport, Air Force Station Tulln, Fliegerhorst Brumowski" + }, + { + "id": "4436", + "ident": "LOXZ", + "type": "medium_airport", + "name": "Hinterstoisser Air Base", + "latitude_deg": "47.202801", + "longitude_deg": "14.7442", + "elevation_ft": "2264", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-6", + "municipality": "Zeltweg", + "scheduled_service": "no", + "gps_code": "LOXZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zeltweg_Air_Base", + "keywords": "RAF Station Zeltweg, Zeltweg Air Base, Zeltweg Airport, Fliegerhorst Hinterstoisser" + }, + { + "id": "5498", + "ident": "LP77", + "type": "small_airport", + "name": "Military Airfield of Santa Margarida", + "latitude_deg": "39.402401", + "longitude_deg": "-8.28906", + "elevation_ft": "541", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Constância", + "scheduled_service": "no" + }, + { + "id": "321238", + "ident": "LPAG", + "type": "heliport", + "name": "Albergaria-a-Velha Heliport", + "latitude_deg": "40.707119", + "longitude_deg": "-8.4914", + "elevation_ft": "460", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-01", + "municipality": "Albergaria-a-Velha", + "scheduled_service": "no", + "gps_code": "LPAG" + }, + { + "id": "4437", + "ident": "LPAR", + "type": "medium_airport", + "name": "Alverca Air Base", + "latitude_deg": "38.883301", + "longitude_deg": "-9.0301", + "elevation_ft": "11", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Vila Franca de Xira", + "scheduled_service": "no", + "gps_code": "LPAR", + "iata_code": "AVR", + "keywords": "Alverca Airbase" + }, + { + "id": "4438", + "ident": "LPAV", + "type": "small_airport", + "name": "São Jacinto Airfield", + "latitude_deg": "40.656741", + "longitude_deg": "-8.741544", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-01", + "municipality": "Aveiro", + "scheduled_service": "no", + "gps_code": "LPAV", + "wikipedia_link": "https://en.wikipedia.org/wiki/S%C3%A3o_Jacinto_Airport", + "keywords": "ZAV, Aveiro Airbase" + }, + { + "id": "4439", + "ident": "LPAZ", + "type": "medium_airport", + "name": "Santa Maria Airport", + "latitude_deg": "36.97140121459961", + "longitude_deg": "-25.17060089111328", + "elevation_ft": "308", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-20", + "municipality": "Vila do Porto", + "scheduled_service": "yes", + "gps_code": "LPAZ", + "iata_code": "SMA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Maria_Airport" + }, + { + "id": "4440", + "ident": "LPBG", + "type": "medium_airport", + "name": "Bragança Airport", + "latitude_deg": "41.8578", + "longitude_deg": "-6.70713", + "elevation_ft": "2241", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-04", + "municipality": "Bragança", + "scheduled_service": "yes", + "gps_code": "LPBG", + "iata_code": "BGC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bragan%C3%A7a_Airport" + }, + { + "id": "323767", + "ident": "LPBH", + "type": "heliport", + "name": "Braga Hospital Heliport", + "latitude_deg": "41.56855", + "longitude_deg": "-8.399884", + "elevation_ft": "865", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-03", + "municipality": "Braga", + "scheduled_service": "no", + "gps_code": "LPBH" + }, + { + "id": "4441", + "ident": "LPBJ", + "type": "medium_airport", + "name": "Beja Airport / Airbase", + "latitude_deg": "38.078899", + "longitude_deg": "-7.9324", + "elevation_ft": "636", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-02", + "municipality": "Beja", + "scheduled_service": "no", + "gps_code": "LPBJ", + "iata_code": "BYJ", + "home_link": "http://www.ana.pt/en-US/Aeroportos/alentejo/Beja/Pages/BejaHomepage.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beja_Airbase", + "keywords": "Beja Air Base, Base Aérea de Beja, Base Aérea Nº 11, BA11" + }, + { + "id": "4442", + "ident": "LPBR", + "type": "medium_airport", + "name": "Braga Municipal Aerodrome", + "latitude_deg": "41.5871009827", + "longitude_deg": "-8.445139884949999", + "elevation_ft": "247", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-03", + "municipality": "Braga", + "scheduled_service": "no", + "gps_code": "LPBR", + "iata_code": "BGZ", + "home_link": "http://www.pelicano.com.pt/zp_braga.html", + "wikipedia_link": "http://pt.wikipedia.org/wiki/Aer%C3%B3dromo_de_Braga", + "keywords": "Aeródromo Municipal de Braga" + }, + { + "id": "315898", + "ident": "LPCB", + "type": "medium_airport", + "name": "Aerodromo de Castelo Branco", + "latitude_deg": "39.847022", + "longitude_deg": "-7.44111", + "elevation_ft": "1300", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-05", + "municipality": "Castelo Branco", + "scheduled_service": "no", + "gps_code": "LPCB" + }, + { + "id": "321239", + "ident": "LPCC", + "type": "heliport", + "name": "Dr. Nélio Mendonça Hospital Heliport", + "latitude_deg": "32.647638", + "longitude_deg": "-16.92371", + "elevation_ft": "367", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-30", + "municipality": "Funchal", + "scheduled_service": "no", + "gps_code": "LPCC", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Hospital_Dr._N%C3%A9lio_Mendon%C3%A7a", + "keywords": "Cruz de Carvalho Hospital" + }, + { + "id": "321240", + "ident": "LPCD", + "type": "heliport", + "name": "Santa Comba Dão Heliport", + "latitude_deg": "40.398473", + "longitude_deg": "-8.134162", + "elevation_ft": "596", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-18", + "municipality": "Santa Comba Dão", + "scheduled_service": "no", + "gps_code": "LPCD" + }, + { + "id": "29486", + "ident": "LPCH", + "type": "small_airport", + "name": "Aerodromo de Chaves", + "latitude_deg": "41.722356", + "longitude_deg": "-7.463064", + "elevation_ft": "1181", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-17", + "municipality": "Chaves", + "scheduled_service": "no", + "gps_code": "LPCH", + "iata_code": "CHV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chaves_Airport" + }, + { + "id": "321241", + "ident": "LPCI", + "type": "heliport", + "name": "Coimbra University Hospital Helipad", + "latitude_deg": "40.219877", + "longitude_deg": "-8.413009", + "elevation_ft": "331", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-06", + "municipality": "Coimbra", + "scheduled_service": "no", + "gps_code": "LPCI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hospitais_da_Universidade_de_Coimbra" + }, + { + "id": "321242", + "ident": "LPCL", + "type": "heliport", + "name": "Covilhã Hospital Helipad", + "latitude_deg": "40.267597", + "longitude_deg": "-7.491298", + "elevation_ft": "1585", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-05", + "municipality": "Covilhã", + "scheduled_service": "no", + "gps_code": "LPCL" + }, + { + "id": "4443", + "ident": "LPCO", + "type": "medium_airport", + "name": "Aerodromo Municipal de Coimbra", + "latitude_deg": "40.158758", + "longitude_deg": "-8.470815", + "elevation_ft": "587", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-06", + "municipality": "Coimbra", + "scheduled_service": "no", + "gps_code": "LPCO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coimbra_Airport", + "keywords": "Bissaya Barreto Aerodrome, Coimbra Airport" + }, + { + "id": "29487", + "ident": "LPCR", + "type": "small_airport", + "name": "Corvo Airport", + "latitude_deg": "39.671501", + "longitude_deg": "-31.1136", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-20", + "municipality": "Corvo", + "scheduled_service": "yes", + "gps_code": "LPCR", + "iata_code": "CVU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Corvo_Airport" + }, + { + "id": "4444", + "ident": "LPCS", + "type": "medium_airport", + "name": "Cascais Airport", + "latitude_deg": "38.724998", + "longitude_deg": "-9.35523", + "elevation_ft": "325", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Cascais", + "scheduled_service": "yes", + "gps_code": "LPCS", + "iata_code": "CAT", + "home_link": "http://aerodromo-cascais.pt/?lang=en", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cascais_Aerodrome" + }, + { + "id": "4445", + "ident": "LPCV", + "type": "closed", + "name": "Covilhã Airfield", + "latitude_deg": "40.264801", + "longitude_deg": "-7.47996", + "elevation_ft": "1572", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-05", + "municipality": "Covilhã", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Covilh%C3%A3_Airport", + "keywords": "COV, LPCV" + }, + { + "id": "317145", + "ident": "LPDA", + "type": "heliport", + "name": "Porto Heliport", + "latitude_deg": "41.146597", + "longitude_deg": "-8.632665", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-13", + "municipality": "Porto", + "scheduled_service": "no", + "gps_code": "LPDA" + }, + { + "id": "321243", + "ident": "LPER", + "type": "heliport", + "name": "Évora Hospital Helipad", + "latitude_deg": "38.567973", + "longitude_deg": "-7.902436", + "elevation_ft": "909", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-07", + "municipality": "Évora", + "scheduled_service": "no", + "gps_code": "LPER" + }, + { + "id": "4446", + "ident": "LPEV", + "type": "medium_airport", + "name": "Évora Airfield", + "latitude_deg": "38.533501", + "longitude_deg": "-7.88964", + "elevation_ft": "807", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-07", + "municipality": "Évora", + "scheduled_service": "no", + "gps_code": "LPEV", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%89vora_Airport" + }, + { + "id": "4447", + "ident": "LPFL", + "type": "medium_airport", + "name": "Flores Airport", + "latitude_deg": "39.455299377441406", + "longitude_deg": "-31.131399154663086", + "elevation_ft": "112", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-20", + "municipality": "Santa Cruz das Flores", + "scheduled_service": "yes", + "gps_code": "LPFL", + "iata_code": "FLW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Flores_Airport" + }, + { + "id": "4448", + "ident": "LPFR", + "type": "large_airport", + "name": "Faro Airport", + "latitude_deg": "37.0144004822", + "longitude_deg": "-7.96590995789", + "elevation_ft": "24", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-08", + "municipality": "Faro", + "scheduled_service": "yes", + "gps_code": "LPFR", + "iata_code": "FAO", + "home_link": "http://www.ana.pt/en-US/Aeroportos/algarve/Faro/Pages/HomeFaro.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Faro_Airport_(Portugal)" + }, + { + "id": "323766", + "ident": "LPGO", + "type": "heliport", + "name": "Almada Hospital Heliport", + "latitude_deg": "38.675075", + "longitude_deg": "-9.177355", + "elevation_ft": "338", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Almada", + "scheduled_service": "no", + "gps_code": "LPGO" + }, + { + "id": "4449", + "ident": "LPGR", + "type": "medium_airport", + "name": "Graciosa Airport", + "latitude_deg": "39.092201232910156", + "longitude_deg": "-28.029800415039062", + "elevation_ft": "86", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-20", + "municipality": "Santa Cruz da Graciosa", + "scheduled_service": "yes", + "gps_code": "LPGR", + "iata_code": "GRW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Graciosa_Airport" + }, + { + "id": "323770", + "ident": "LPHB", + "type": "heliport", + "name": "Herdade da Brava Heliport", + "latitude_deg": "37.695354", + "longitude_deg": "-7.62045", + "elevation_ft": "604", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-02", + "municipality": "Herdade da Brava", + "scheduled_service": "no", + "gps_code": "LPHB" + }, + { + "id": "323768", + "ident": "LPHC", + "type": "heliport", + "name": "Cascais Hospital Heliport", + "latitude_deg": "38.728828", + "longitude_deg": "-9.418976", + "elevation_ft": "370", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Cascais", + "scheduled_service": "no", + "gps_code": "LPHC" + }, + { + "id": "4450", + "ident": "LPHR", + "type": "medium_airport", + "name": "Horta Airport", + "latitude_deg": "38.519901275634766", + "longitude_deg": "-28.715900421142578", + "elevation_ft": "118", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-20", + "municipality": "Horta", + "scheduled_service": "yes", + "gps_code": "LPHR", + "iata_code": "HOR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Horta_Airport" + }, + { + "id": "29858", + "ident": "LPIN", + "type": "small_airport", + "name": "Espinho Airfield", + "latitude_deg": "40.974201", + "longitude_deg": "-8.64444", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-01", + "scheduled_service": "no", + "gps_code": "LPIN" + }, + { + "id": "317089", + "ident": "LPJB", + "type": "heliport", + "name": "Algés Heliport", + "latitude_deg": "38.695741", + "longitude_deg": "-9.235799", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Algés", + "scheduled_service": "no", + "gps_code": "LPJB" + }, + { + "id": "30066", + "ident": "LPJF", + "type": "small_airport", + "name": "Aerodromo de Leiria", + "latitude_deg": "39.779907", + "longitude_deg": "-8.820238", + "elevation_ft": "151", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-10", + "municipality": "Leiria", + "scheduled_service": "no", + "gps_code": "LPJF" + }, + { + "id": "31845", + "ident": "LPJO", + "type": "closed", + "name": "Aerodromo de Alijó", + "latitude_deg": "41.327145", + "longitude_deg": "-7.457717", + "elevation_ft": "2580", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-17", + "municipality": "Alijó", + "scheduled_service": "no", + "gps_code": "LPJO" + }, + { + "id": "4451", + "ident": "LPLA", + "type": "medium_airport", + "name": "Lajes Airport", + "latitude_deg": "38.761799", + "longitude_deg": "-27.090799", + "elevation_ft": "180", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-20", + "municipality": "Praia da Vitória", + "scheduled_service": "yes", + "gps_code": "LPLA", + "iata_code": "TER", + "home_link": "http://aerogarelajes.azores.gov.pt", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lajes_Field", + "keywords": "Terceira Island" + }, + { + "id": "30086", + "ident": "LPLZ", + "type": "small_airport", + "name": "Aerodromo da Lousã", + "latitude_deg": "40.143042", + "longitude_deg": "-8.240987", + "elevation_ft": "654", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-06", + "municipality": "Lousã", + "scheduled_service": "no", + "gps_code": "LPLZ" + }, + { + "id": "4452", + "ident": "LPMA", + "type": "medium_airport", + "name": "Madeira International Airport Cristiano Ronaldo", + "latitude_deg": "32.697899", + "longitude_deg": "-16.7745", + "elevation_ft": "192", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-30", + "municipality": "Funchal", + "scheduled_service": "yes", + "gps_code": "LPMA", + "iata_code": "FNC", + "home_link": "http://www.ana.pt/en-US/Aeroportos/Madeira/Funchal/Pages/default.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Madeira_Airport", + "keywords": "LPFU, Madeira, Funchal" + }, + { + "id": "326806", + "ident": "LPMB", + "type": "heliport", + "name": "Miguel Barros Heliport", + "latitude_deg": "37.149722", + "longitude_deg": "-7.953889", + "elevation_ft": "750", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-08", + "municipality": "Morgado da Apra - Loulé", + "scheduled_service": "no", + "gps_code": "LPMB", + "keywords": "HTA Helicópteros" + }, + { + "id": "321235", + "ident": "LPMC", + "type": "heliport", + "name": "Macedo de Cavaleiros", + "latitude_deg": "41.52532", + "longitude_deg": "-6.966368", + "elevation_ft": "1781", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-04", + "municipality": "Macedo de Cavaleiros", + "scheduled_service": "no", + "gps_code": "LPMC" + }, + { + "id": "321234", + "ident": "LPMD", + "type": "heliport", + "name": "Mirandela Hospitat Heliport", + "latitude_deg": "41.484771", + "longitude_deg": "-7.190643", + "elevation_ft": "732", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-05", + "municipality": "Mirandela", + "scheduled_service": "no", + "gps_code": "LPMD" + }, + { + "id": "29488", + "ident": "LPMF", + "type": "small_airport", + "name": "Aerodromo de Monfortinho", + "latitude_deg": "39.976398", + "longitude_deg": "-6.906624", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-05", + "municipality": "Idanha-a-Nova", + "scheduled_service": "no", + "gps_code": "LPMF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monfortinho_Airport" + }, + { + "id": "29489", + "ident": "LPMI", + "type": "small_airport", + "name": "Mirandela Airfield", + "latitude_deg": "41.468006", + "longitude_deg": "-7.226257", + "elevation_ft": "1329", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-04", + "municipality": "Mirandela", + "scheduled_service": "no", + "gps_code": "LPMI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mirandela_Airport" + }, + { + "id": "30160", + "ident": "LPMO", + "type": "small_airport", + "name": "Morargil Airfield", + "latitude_deg": "38.993532", + "longitude_deg": "-8.14201", + "elevation_ft": "341", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-12", + "municipality": "Montargil", + "scheduled_service": "no", + "gps_code": "LPMO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Morargil_Airport" + }, + { + "id": "321232", + "ident": "LPMP", + "type": "heliport", + "name": "Mafra Heliport", + "latitude_deg": "38.943058", + "longitude_deg": "-9.353825", + "elevation_ft": "537", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Mafra", + "scheduled_service": "no", + "gps_code": "LPMP" + }, + { + "id": "4453", + "ident": "LPMR", + "type": "medium_airport", + "name": "Monte Real Air Base", + "latitude_deg": "39.828335", + "longitude_deg": "-8.8875", + "elevation_ft": "187", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-10", + "scheduled_service": "no", + "gps_code": "LPMR", + "iata_code": "QLR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monte_Real_Air_Base" + }, + { + "id": "4454", + "ident": "LPMT", + "type": "medium_airport", + "name": "Montijo Air Base", + "latitude_deg": "38.70929", + "longitude_deg": "-9.03368", + "elevation_ft": "46", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "municipality": "Montijo", + "scheduled_service": "no", + "gps_code": "LPMT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Montijo_Air_Base", + "keywords": "Lisbon Montijo Airport" + }, + { + "id": "30147", + "ident": "LPMU", + "type": "small_airport", + "name": "Mogadouro Airfield", + "latitude_deg": "41.3963", + "longitude_deg": "-6.68348", + "elevation_ft": "2344", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-04", + "municipality": "Mogadouro", + "scheduled_service": "no", + "gps_code": "LPMU", + "home_link": "http://www.vooavela.mogadouro.pt/" + }, + { + "id": "326694", + "ident": "LPMZ", + "type": "heliport", + "name": "Porto Moniz Helipad", + "latitude_deg": "32.866783", + "longitude_deg": "-17.165167", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-30", + "municipality": "Porto Moniz", + "scheduled_service": "no", + "gps_code": "LPMZ" + }, + { + "id": "326695", + "ident": "LPNV", + "type": "heliport", + "name": "Torres Novas Hospital Heliport", + "latitude_deg": "39.469379", + "longitude_deg": "-8.537203", + "elevation_ft": "242", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Torres Novas", + "scheduled_service": "no", + "gps_code": "LPNV" + }, + { + "id": "31848", + "ident": "LPOT", + "type": "closed", + "name": "Ota Air Base", + "latitude_deg": "39.087502", + "longitude_deg": "-8.96278", + "elevation_ft": "140", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Alenquer", + "scheduled_service": "no", + "gps_code": "LPOT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Military_and_Technical_Training_Center_of_the_Air_Force" + }, + { + "id": "4455", + "ident": "LPOV", + "type": "medium_airport", + "name": "Ovar Air Base", + "latitude_deg": "40.915901", + "longitude_deg": "-8.64592", + "elevation_ft": "56", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-01", + "municipality": "Ovar", + "scheduled_service": "no", + "gps_code": "LPOV" + }, + { + "id": "326800", + "ident": "LPPA", + "type": "heliport", + "name": "Padre Américo Hospital Helipad", + "latitude_deg": "41.195833", + "longitude_deg": "-8.31", + "elevation_ft": "724", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-13", + "municipality": "Penafiel", + "scheduled_service": "no", + "gps_code": "LPPA" + }, + { + "id": "326799", + "ident": "LPPB", + "type": "heliport", + "name": "Baltar Heliport", + "latitude_deg": "41.19", + "longitude_deg": "-8.385557", + "elevation_ft": "961", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-13", + "municipality": "Paredes", + "scheduled_service": "no", + "gps_code": "LPPB" + }, + { + "id": "4456", + "ident": "LPPD", + "type": "large_airport", + "name": "João Paulo II Airport", + "latitude_deg": "37.7411994934", + "longitude_deg": "-25.6979007721", + "elevation_ft": "259", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-20", + "municipality": "Ponta Delgada", + "scheduled_service": "yes", + "gps_code": "LPPD", + "iata_code": "PDL", + "home_link": "http://www.ana.pt/en-US/Aeroportos/acores/PontaDelgada/Pages/Homepage-PontaDelgada.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jo%C3%A3o_Paulo_II_Airport" + }, + { + "id": "4457", + "ident": "LPPI", + "type": "medium_airport", + "name": "Pico Airport", + "latitude_deg": "38.554298", + "longitude_deg": "-28.441299", + "elevation_ft": "109", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-20", + "municipality": "Pico Island", + "scheduled_service": "yes", + "gps_code": "LPPI", + "iata_code": "PIX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pico_Airport" + }, + { + "id": "321231", + "ident": "LPPJ", + "type": "heliport", + "name": "Beja Heliport", + "latitude_deg": "38.058", + "longitude_deg": "-7.875403", + "elevation_ft": "631", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-02", + "municipality": "Beja", + "scheduled_service": "no", + "gps_code": "LPPJ" + }, + { + "id": "4458", + "ident": "LPPM", + "type": "medium_airport", + "name": "Portimão Airport", + "latitude_deg": "37.1493", + "longitude_deg": "-8.58396", + "elevation_ft": "5", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-08", + "municipality": "Portimão", + "scheduled_service": "yes", + "gps_code": "LPPM", + "iata_code": "PRM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Portim%C3%A3o_Airport" + }, + { + "id": "4459", + "ident": "LPPR", + "type": "large_airport", + "name": "Francisco de Sá Carneiro Airport", + "latitude_deg": "41.2481002808", + "longitude_deg": "-8.68138980865", + "elevation_ft": "228", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-13", + "municipality": "Porto", + "scheduled_service": "yes", + "gps_code": "LPPR", + "iata_code": "OPO", + "home_link": "http://www.ana.pt/en-US/Aeroportos/porto/Porto/Pages/Homepage-Porto.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Francisco_S%C3%A1_Carneiro_Airport" + }, + { + "id": "4460", + "ident": "LPPS", + "type": "medium_airport", + "name": "Porto Santo Airport", + "latitude_deg": "33.0733985901", + "longitude_deg": "-16.3500003815", + "elevation_ft": "341", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-30", + "municipality": "Vila Baleira", + "scheduled_service": "yes", + "gps_code": "LPPS", + "iata_code": "PXO", + "home_link": "http://www.anam.pt/Porto-Santo-411.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Porto_Santo_Airport" + }, + { + "id": "4461", + "ident": "LPPT", + "type": "large_airport", + "name": "Humberto Delgado Airport (Lisbon Portela Airport)", + "latitude_deg": "38.7813", + "longitude_deg": "-9.13592", + "elevation_ft": "374", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Lisbon", + "scheduled_service": "yes", + "gps_code": "LPPT", + "iata_code": "LIS", + "home_link": "http://www.ana.pt/en-US/Aeroportos/lisboa/Lisboa/Pages/HomeLisboa.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lisbon_Portela_Airport", + "keywords": "Lisboa" + }, + { + "id": "30285", + "ident": "LPPV", + "type": "small_airport", + "name": "Praia Verde Eco Airfield", + "latitude_deg": "37.193441", + "longitude_deg": "-7.472073", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-08", + "municipality": "Praia Verde", + "scheduled_service": "no", + "gps_code": "LPPV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Praia_Verde_Airport" + }, + { + "id": "29490", + "ident": "LPSC", + "type": "small_airport", + "name": "Santa Cruz Airfield", + "latitude_deg": "39.124233", + "longitude_deg": "-9.379821", + "elevation_ft": "157", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Torres Vedras", + "scheduled_service": "no", + "gps_code": "LPSC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Cruz_Airport_(Portugal)" + }, + { + "id": "29491", + "ident": "LPSI", + "type": "closed", + "name": "Sines Airport", + "latitude_deg": "37.941692", + "longitude_deg": "-8.817301", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "scheduled_service": "no", + "gps_code": "LPSI", + "iata_code": "SIE" + }, + { + "id": "4462", + "ident": "LPSJ", + "type": "medium_airport", + "name": "São Jorge Airport", + "latitude_deg": "38.665501", + "longitude_deg": "-28.1758", + "elevation_ft": "311", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-20", + "municipality": "Velas", + "scheduled_service": "yes", + "gps_code": "LPSJ", + "iata_code": "SJZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/S%C3%A3o_Jorge_Airport" + }, + { + "id": "321269", + "ident": "LPSM", + "type": "heliport", + "name": "Santa Maria Hospital Helipad", + "latitude_deg": "38.749372", + "longitude_deg": "-9.160627", + "elevation_ft": "330", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Lisbon", + "scheduled_service": "no", + "gps_code": "LPSM" + }, + { + "id": "317032", + "ident": "LPSO", + "type": "medium_airport", + "name": "Aerodromo Ponte de Sor", + "latitude_deg": "39.211559", + "longitude_deg": "-8.056542", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-12", + "municipality": "Ponte de Sôr", + "scheduled_service": "no", + "gps_code": "LPSO", + "home_link": "http://www.cm-pontedesor.pt/link-util-1" + }, + { + "id": "29492", + "ident": "LPSR", + "type": "small_airport", + "name": "Santarém Airfield", + "latitude_deg": "39.209499", + "longitude_deg": "-8.6883", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Santarém", + "scheduled_service": "no", + "gps_code": "LPSR" + }, + { + "id": "4463", + "ident": "LPST", + "type": "medium_airport", + "name": "Sintra Air Base", + "latitude_deg": "38.8311", + "longitude_deg": "-9.33955", + "elevation_ft": "440", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Sintra", + "scheduled_service": "no", + "gps_code": "LPST", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sintra_Air_Base" + }, + { + "id": "321268", + "ident": "LPTH", + "type": "heliport", + "name": "Tomar Hospital Helipad", + "latitude_deg": "39.610553", + "longitude_deg": "-8.395223", + "elevation_ft": "306", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Tomar", + "scheduled_service": "no", + "gps_code": "LPTH" + }, + { + "id": "321267", + "ident": "LPTM", + "type": "heliport", + "name": "Bragança Hospital Helipad", + "latitude_deg": "41.80265", + "longitude_deg": "-6.768767", + "elevation_ft": "2401", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-04", + "municipality": "Bragança", + "scheduled_service": "no", + "gps_code": "LPTM" + }, + { + "id": "4464", + "ident": "LPTN", + "type": "medium_airport", + "name": "Tancos Airbase", + "latitude_deg": "39.475101", + "longitude_deg": "-8.36458", + "elevation_ft": "266", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Tancos", + "scheduled_service": "no", + "gps_code": "LPTN" + }, + { + "id": "321254", + "ident": "LPVC", + "type": "heliport", + "name": "Viana do Castelo Hospital Helipad", + "latitude_deg": "41.697716", + "longitude_deg": "-8.8314976", + "elevation_ft": "135", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-16", + "municipality": "Viana do Castelo", + "scheduled_service": "no", + "gps_code": "LPVC" + }, + { + "id": "29493", + "ident": "LPVL", + "type": "medium_airport", + "name": "Vilar de Luz Airfield", + "latitude_deg": "41.27729", + "longitude_deg": "-8.516209", + "elevation_ft": "762", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-13", + "municipality": "Maia", + "scheduled_service": "no", + "gps_code": "LPVL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maia_Airport" + }, + { + "id": "4465", + "ident": "LPVR", + "type": "medium_airport", + "name": "Vila Real Airport", + "latitude_deg": "41.2743", + "longitude_deg": "-7.72047", + "elevation_ft": "1805", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-17", + "municipality": "Vila Real", + "scheduled_service": "yes", + "gps_code": "LPVR", + "iata_code": "VRL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vila_Real_Airport" + }, + { + "id": "4466", + "ident": "LPVZ", + "type": "medium_airport", + "name": "Aerodromo Goncalves Lobato (Viseu Airport)", + "latitude_deg": "40.725498", + "longitude_deg": "-7.88899", + "elevation_ft": "2060", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-18", + "municipality": "Viseu", + "scheduled_service": "yes", + "gps_code": "LPVZ", + "iata_code": "VSE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Viseu_Airport" + }, + { + "id": "321253", + "ident": "LPXR", + "type": "heliport", + "name": "Vila Franca de Xira Hospital Helipad", + "latitude_deg": "38.977696", + "longitude_deg": "-8.985177", + "elevation_ft": "299", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Vila Franca de Xira", + "scheduled_service": "no", + "gps_code": "LPXR" + }, + { + "id": "29705", + "ident": "LQBI", + "type": "small_airport", + "name": "Bihać sportski aerodrom - Bihac sport Airfield", + "latitude_deg": "44.7959367906", + "longitude_deg": "15.9035682678", + "elevation_ft": "761", + "continent": "EU", + "iso_country": "BA", + "iso_region": "BA-BIH", + "municipality": "Bihać", + "scheduled_service": "no", + "gps_code": "LQBI" + }, + { + "id": "4467", + "ident": "LQBK", + "type": "medium_airport", + "name": "Banja Luka International Airport", + "latitude_deg": "44.94139862060547", + "longitude_deg": "17.297500610351562", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "BA", + "iso_region": "BA-SRP", + "municipality": "Banja Luka", + "scheduled_service": "yes", + "gps_code": "LQBK", + "iata_code": "BNX", + "home_link": "http://www.banjaluka-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Banja_Luka_International_Airport", + "keywords": "Mahovljani Airport" + }, + { + "id": "324125", + "ident": "LQCO", + "type": "closed", + "name": "Ćoralići Air Base", + "latitude_deg": "44.980871", + "longitude_deg": "15.869373", + "continent": "EU", + "iso_country": "BA", + "iso_region": "BA-BIH", + "municipality": "Ćoralići", + "scheduled_service": "no", + "gps_code": "LQCO" + }, + { + "id": "324126", + "ident": "LQGL", + "type": "closed", + "name": "Glamoč Air Base", + "latitude_deg": "44.083894", + "longitude_deg": "16.813588", + "continent": "EU", + "iso_country": "BA", + "iso_region": "BA-BIH", + "municipality": "Glamoč", + "scheduled_service": "no", + "gps_code": "LQGL" + }, + { + "id": "30500", + "ident": "LQJL", + "type": "small_airport", + "name": "Tuzla Jegin Lug Sport Airfield", + "latitude_deg": "44.4578018188", + "longitude_deg": "18.8083000183", + "elevation_ft": "869", + "continent": "EU", + "iso_country": "BA", + "iso_region": "BA-BIH", + "municipality": "Tuzla", + "scheduled_service": "no", + "gps_code": "LQJL" + }, + { + "id": "30079", + "ident": "LQLV", + "type": "small_airport", + "name": "Livno Brda Bosni Airport", + "latitude_deg": "43.791141", + "longitude_deg": "16.893268", + "elevation_ft": "2349", + "continent": "EU", + "iso_country": "BA", + "iso_region": "BA-BIH", + "municipality": "Livno", + "scheduled_service": "no", + "gps_code": "LQLV" + }, + { + "id": "4468", + "ident": "LQMO", + "type": "medium_airport", + "name": "Mostar International Airport", + "latitude_deg": "43.282901763916016", + "longitude_deg": "17.84589958190918", + "elevation_ft": "156", + "continent": "EU", + "iso_country": "BA", + "iso_region": "BA-BIH", + "municipality": "Mostar", + "scheduled_service": "yes", + "gps_code": "LQMO", + "iata_code": "OMO", + "home_link": "http://www.mostar-airport.ba/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mostar_International_Airport" + }, + { + "id": "30293", + "ident": "LQPD", + "type": "small_airport", + "name": "Prijedor Urije Airport", + "latitude_deg": "44.993986", + "longitude_deg": "16.735457", + "elevation_ft": "591", + "continent": "EU", + "iso_country": "BA", + "iso_region": "BA-SRP", + "municipality": "Prijedor", + "scheduled_service": "no", + "gps_code": "LQPD" + }, + { + "id": "4469", + "ident": "LQSA", + "type": "medium_airport", + "name": "Sarajevo International Airport", + "latitude_deg": "43.8246", + "longitude_deg": "18.331499", + "elevation_ft": "1708", + "continent": "EU", + "iso_country": "BA", + "iso_region": "BA-BIH", + "municipality": "Sarajevo", + "scheduled_service": "yes", + "gps_code": "LQSA", + "iata_code": "SJJ", + "home_link": "http://www.sarajevo-airport.ba/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sarajevo_International_Airport" + }, + { + "id": "4470", + "ident": "LQTZ", + "type": "medium_airport", + "name": "Tuzla International Airport", + "latitude_deg": "44.458698", + "longitude_deg": "18.7248", + "elevation_ft": "784", + "continent": "EU", + "iso_country": "BA", + "iso_region": "BA-BIH", + "municipality": "Tuzla", + "scheduled_service": "yes", + "gps_code": "LQTZ", + "iata_code": "TZL", + "home_link": "http://www.tuzla-airport.ba/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tuzla_International_Airport" + }, + { + "id": "30536", + "ident": "LQVI", + "type": "small_airport", + "name": "Visoko Sport Airfield", + "latitude_deg": "44.024792", + "longitude_deg": "18.0968", + "elevation_ft": "1470", + "continent": "EU", + "iso_country": "BA", + "iso_region": "BA-BIH", + "municipality": "Visoko", + "scheduled_service": "no", + "gps_code": "LQVI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Visoko_Sport_Airfield" + }, + { + "id": "340299", + "ident": "LR-0001", + "type": "small_airport", + "name": "Butaw Airport", + "latitude_deg": "5.13797", + "longitude_deg": "-9.08692", + "continent": "AF", + "iso_country": "LR", + "iso_region": "LR-SI", + "municipality": "Butaw", + "scheduled_service": "no" + }, + { + "id": "340423", + "ident": "LR-0002", + "type": "small_airport", + "name": "United Methodist Mission Airfield", + "latitude_deg": "7.240358", + "longitude_deg": "-8.979178", + "continent": "AF", + "iso_country": "LR", + "iso_region": "LR-NI", + "municipality": "Ganta", + "scheduled_service": "no" + }, + { + "id": "356243", + "ident": "LR-0003", + "type": "small_airport", + "name": "Gozohn Camp Airport", + "latitude_deg": "6.098453", + "longitude_deg": "-9.770522", + "elevation_ft": "430", + "continent": "AF", + "iso_country": "LR", + "iso_region": "LR-GB", + "municipality": "Gozohn Camp", + "scheduled_service": "no" + }, + { + "id": "429811", + "ident": "LR-0004", + "type": "small_airport", + "name": "Gbarnga Airfield", + "latitude_deg": "7.04268", + "longitude_deg": "-9.48564", + "continent": "AF", + "iso_country": "LR", + "iso_region": "LR-BG", + "municipality": "Gbarnga", + "scheduled_service": "no" + }, + { + "id": "5667", + "ident": "LR79", + "type": "medium_airport", + "name": "Ianca Air Base", + "latitude_deg": "45.158699", + "longitude_deg": "27.430901", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-BR", + "municipality": "Ianca", + "scheduled_service": "no" + }, + { + "id": "5668", + "ident": "LR80", + "type": "medium_airport", + "name": "Feteşti Air Base", + "latitude_deg": "44.3923", + "longitude_deg": "27.7267", + "elevation_ft": "180", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-IL", + "municipality": "Feteşti", + "scheduled_service": "no", + "gps_code": "LRFT", + "home_link": "http://www.roaf.ro/en/unitati/bz86_en.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/RoAF_86th_Air_Base", + "keywords": "Fetesti, Cocargeaua Airport, RoAF 86th Air Base" + }, + { + "id": "5669", + "ident": "LR81", + "type": "closed", + "name": "Deveselu Air Base", + "latitude_deg": "44.0773010254", + "longitude_deg": "24.4164009094", + "elevation_ft": "289", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-OT", + "municipality": "Deveselu", + "scheduled_service": "no", + "keywords": "LR81" + }, + { + "id": "5670", + "ident": "LR82", + "type": "medium_airport", + "name": "Boboc Air Base", + "latitude_deg": "45.2164", + "longitude_deg": "26.9786", + "elevation_ft": "344", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-BZ", + "municipality": "Boboc", + "scheduled_service": "no", + "gps_code": "LRBO", + "keywords": "RoAF Aurel Vlaicu Flight School" + }, + { + "id": "4471", + "ident": "LRAR", + "type": "medium_airport", + "name": "Arad International Airport", + "latitude_deg": "46.17660140991211", + "longitude_deg": "21.261999130249023", + "elevation_ft": "352", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-AR", + "municipality": "Arad", + "scheduled_service": "yes", + "gps_code": "LRAR", + "iata_code": "ARW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arad_International_Airport" + }, + { + "id": "4472", + "ident": "LRBC", + "type": "medium_airport", + "name": "Bacău Airport", + "latitude_deg": "46.52190017700195", + "longitude_deg": "26.91029930114746", + "elevation_ft": "607", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-BC", + "municipality": "Bacău", + "scheduled_service": "yes", + "gps_code": "LRBC", + "iata_code": "BCM", + "home_link": "http://www.bacauairport.ro/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bac%C4%83u_International_Airport", + "keywords": "Bacau, RoAF 95th Air Base" + }, + { + "id": "324127", + "ident": "LRBG", + "type": "heliport", + "name": "IAR Ghimbav Heliport", + "latitude_deg": "45.6873", + "longitude_deg": "25.527073", + "elevation_ft": "1762", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-BV", + "municipality": "Ghimbav", + "scheduled_service": "no", + "gps_code": "LRBG", + "keywords": "Mir Aero" + }, + { + "id": "354772", + "ident": "LRBK", + "type": "heliport", + "name": "Moara Vlasiei Heliport", + "latitude_deg": "44.63278", + "longitude_deg": "26.1975", + "elevation_ft": "292", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-IF", + "scheduled_service": "no", + "gps_code": "LRBK" + }, + { + "id": "4473", + "ident": "LRBM", + "type": "medium_airport", + "name": "Maramureș International Airport", + "latitude_deg": "47.660598", + "longitude_deg": "23.467252", + "elevation_ft": "605", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-MM", + "municipality": "Baia Mare", + "scheduled_service": "yes", + "gps_code": "LRBM", + "iata_code": "BAY", + "home_link": "https://aimm.eu/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maramureș_Airport" + }, + { + "id": "333337", + "ident": "LRBN", + "type": "small_airport", + "name": "Bistrița Airfield", + "latitude_deg": "47.158575", + "longitude_deg": "24.552311", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-BN", + "municipality": "Bistrița", + "scheduled_service": "no", + "gps_code": "LRBN" + }, + { + "id": "4474", + "ident": "LRBS", + "type": "medium_airport", + "name": "Băneasa International Airport", + "latitude_deg": "44.503201", + "longitude_deg": "26.1021", + "elevation_ft": "297", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-B", + "municipality": "Bucharest", + "scheduled_service": "no", + "gps_code": "LRBS", + "iata_code": "BBU", + "home_link": "http://www.baneasa-airport.ro/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aurel_Vlaicu_International_Airport", + "keywords": "BUH, Aurel Vlaicu International Airport" + }, + { + "id": "354769", + "ident": "LRCC", + "type": "heliport", + "name": "Oituz Heliport", + "latitude_deg": "46.21056", + "longitude_deg": "26.60278", + "elevation_ft": "1094", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-BC", + "municipality": "Oituz", + "scheduled_service": "no", + "gps_code": "LRCC" + }, + { + "id": "315901", + "ident": "LRCD", + "type": "small_airport", + "name": "Aerodromul Măgura", + "latitude_deg": "45.737222", + "longitude_deg": "24.165278", + "elevation_ft": "1524", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-SB", + "municipality": "Cisnădie", + "scheduled_service": "no", + "gps_code": "LRCD", + "home_link": "https://www.facebook.com/pages/category/Airport/AERODROMUL-MAGURA-219224911475626/", + "keywords": "magura, romania, avgas, skydiving" + }, + { + "id": "4475", + "ident": "LRCK", + "type": "medium_airport", + "name": "Mihail Kogălniceanu International Airport", + "latitude_deg": "44.36220169067383", + "longitude_deg": "28.488300323486328", + "elevation_ft": "353", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-CT", + "municipality": "Constanţa", + "scheduled_service": "yes", + "gps_code": "LRCK", + "iata_code": "CND", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mihail_Kog%C4%83lniceanu_International_Airport", + "keywords": "Mihail Kogalniceanu, RoAF 57th Air Base" + }, + { + "id": "4476", + "ident": "LRCL", + "type": "medium_airport", + "name": "Cluj-Napoca International Airport", + "latitude_deg": "46.785198", + "longitude_deg": "23.686199", + "elevation_ft": "1039", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-CJ", + "municipality": "Cluj-Napoca", + "scheduled_service": "yes", + "gps_code": "LRCL", + "iata_code": "CLJ", + "home_link": "http://www.airportcluj.ro/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cluj-Napoca_International_Airport", + "keywords": "Someşeni Airport" + }, + { + "id": "300163", + "ident": "LRCN", + "type": "small_airport", + "name": "Clinceni Airfield", + "latitude_deg": "44.35902", + "longitude_deg": "25.93196", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-IF", + "municipality": "Clinceni", + "scheduled_service": "no", + "gps_code": "LRCN" + }, + { + "id": "4477", + "ident": "LRCS", + "type": "medium_airport", + "name": "Caransebeş Airport", + "latitude_deg": "45.41999816894531", + "longitude_deg": "22.253299713134766", + "elevation_ft": "866", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-CS", + "municipality": "Caransebeş", + "scheduled_service": "no", + "gps_code": "LRCS", + "iata_code": "CSB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Caransebe%C5%9F_Airport", + "keywords": "Caransebes, Reşiţa" + }, + { + "id": "4478", + "ident": "LRCT", + "type": "medium_airport", + "name": "Câmpia Turzii Air Base", + "latitude_deg": "46.50230026245117", + "longitude_deg": "23.885900497436523", + "elevation_ft": "1083", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-CJ", + "municipality": "Câmpia Turzii", + "scheduled_service": "no", + "gps_code": "LRCT", + "home_link": "http://www.roaf.ro/en/unitati/bz71_en.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/RoAF_71st_Air_Base", + "keywords": "Campia Turzii, Luna Airport, RoAF 71st Air Base" + }, + { + "id": "4479", + "ident": "LRCV", + "type": "medium_airport", + "name": "Craiova Airport", + "latitude_deg": "44.3181", + "longitude_deg": "23.888599", + "elevation_ft": "626", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-DJ", + "municipality": "Craiova", + "scheduled_service": "yes", + "gps_code": "LRCV", + "iata_code": "CRA", + "home_link": "http://www.aeroportcraiova.ro/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Craiova_Airport" + }, + { + "id": "354944", + "ident": "LRFB", + "type": "heliport", + "name": "Fagu Balc Heliport", + "latitude_deg": "47.3425", + "longitude_deg": "22.575", + "elevation_ft": "599", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-BH", + "municipality": "Almasu Mare", + "scheduled_service": "no", + "gps_code": "LRFB" + }, + { + "id": "324128", + "ident": "LRFL", + "type": "small_airport", + "name": "Floreni Airfield", + "latitude_deg": "47.363094", + "longitude_deg": "25.210346", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-SV", + "municipality": "Floreni", + "scheduled_service": "no", + "gps_code": "LRFL" + }, + { + "id": "4480", + "ident": "LRIA", + "type": "medium_airport", + "name": "Iaşi Airport", + "latitude_deg": "47.180278", + "longitude_deg": "27.620833", + "elevation_ft": "411", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-IS", + "municipality": "Iaşi", + "scheduled_service": "yes", + "gps_code": "LRIA", + "iata_code": "IAS", + "home_link": "http://www.aeroport.ro/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ia%C5%9Fi_International_Airport", + "keywords": "Iasi, Jassy" + }, + { + "id": "301128", + "ident": "LRO", + "type": "closed", + "name": "Sharpe AAF", + "latitude_deg": "37.837916666699996", + "longitude_deg": "-121.272805556", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lathrop", + "scheduled_service": "no", + "iata_code": "LRO" + }, + { + "id": "4481", + "ident": "LROD", + "type": "medium_airport", + "name": "Oradea International Airport", + "latitude_deg": "47.025299072265625", + "longitude_deg": "21.90250015258789", + "elevation_ft": "465", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-BH", + "municipality": "Oradea", + "scheduled_service": "yes", + "gps_code": "LROD", + "iata_code": "OMR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oradea_International_Airport" + }, + { + "id": "4482", + "ident": "LROP", + "type": "large_airport", + "name": "Henri Coandă International Airport", + "latitude_deg": "44.571111", + "longitude_deg": "26.085", + "elevation_ft": "314", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-IF", + "municipality": "Bucharest", + "scheduled_service": "yes", + "gps_code": "LROP", + "iata_code": "OTP", + "home_link": "http://www.bucharestairports.ro/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Henri_Coand%C4%83_International_Airport", + "keywords": "BUH, Otopeni Airport, RoAF 90th Airlift Base" + }, + { + "id": "333670", + "ident": "LROV", + "type": "medium_airport", + "name": "Brașov-Ghimbav International Airport (U.C.)", + "latitude_deg": "45.70558", + "longitude_deg": "25.522871", + "elevation_ft": "1740", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-BV", + "municipality": "Brașov (Ghimbav)", + "scheduled_service": "yes", + "gps_code": "LROV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brașov-Ghimbav_International_Airport", + "keywords": "Aeroportul Internațional Brașov-Ghimbav" + }, + { + "id": "315986", + "ident": "LRPH", + "type": "small_airport", + "name": "Şirna Airfield", + "latitude_deg": "44.783792", + "longitude_deg": "25.983205", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-PH", + "municipality": "Tăriceni", + "scheduled_service": "no", + "gps_code": "LRPH" + }, + { + "id": "315660", + "ident": "LRPT", + "type": "small_airport", + "name": "Aerodromul Geamăna", + "latitude_deg": "44.8162779", + "longitude_deg": "24.8941665", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-AG", + "municipality": "Aerodromul Geamăna", + "scheduled_service": "no", + "gps_code": "LRPT", + "keywords": "Aerodromul Geamăna" + }, + { + "id": "309711", + "ident": "lrpv", + "type": "small_airport", + "name": "Aerodromul Strejnic", + "latitude_deg": "44.923669841599995", + "longitude_deg": "25.9634184837", + "elevation_ft": "240", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-PH", + "municipality": "Ploiesti", + "scheduled_service": "no", + "gps_code": "LRPV", + "home_link": "http://aeroclubulromaniei.ro/schools/ploiesti---gheorghe-banciulescu.html" + }, + { + "id": "4483", + "ident": "LRSB", + "type": "medium_airport", + "name": "Sibiu International Airport", + "latitude_deg": "45.78559875488281", + "longitude_deg": "24.091299057006836", + "elevation_ft": "1496", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-SB", + "municipality": "Sibiu", + "scheduled_service": "yes", + "gps_code": "LRSB", + "iata_code": "SBZ", + "home_link": "http://www.sibiuairport.ro/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sibiu_International_Airport" + }, + { + "id": "4484", + "ident": "LRSM", + "type": "medium_airport", + "name": "Satu Mare Airport", + "latitude_deg": "47.70330047607422", + "longitude_deg": "22.885700225830078", + "elevation_ft": "405", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-SM", + "municipality": "Satu Mare", + "scheduled_service": "yes", + "gps_code": "LRSM", + "iata_code": "SUJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Satu_Mare_International_Airport" + }, + { + "id": "4485", + "ident": "LRSV", + "type": "medium_airport", + "name": "Suceava Stefan cel Mare Airport", + "latitude_deg": "47.6875", + "longitude_deg": "26.35409927368164", + "elevation_ft": "1375", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-SV", + "municipality": "Suceava", + "scheduled_service": "yes", + "gps_code": "LRSV", + "iata_code": "SCV", + "home_link": "http://www.aeroportsuceava.ro/index_en.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Suceava_Airport" + }, + { + "id": "4486", + "ident": "LRTC", + "type": "medium_airport", + "name": "Tulcea Danube Delta Airport", + "latitude_deg": "45.0625", + "longitude_deg": "28.7143", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-TL", + "municipality": "Tulcea", + "scheduled_service": "no", + "gps_code": "LRTC", + "iata_code": "TCE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tulcea_Airport", + "keywords": "Cataloi Airport, Aeroportul Delta Dunării Tulcea" + }, + { + "id": "4487", + "ident": "LRTM", + "type": "medium_airport", + "name": "Transilvania Târgu Mureş International Airport", + "latitude_deg": "46.46770095825195", + "longitude_deg": "24.412500381469727", + "elevation_ft": "963", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-MS", + "municipality": "Târgu Mureş", + "scheduled_service": "yes", + "gps_code": "LRTM", + "iata_code": "TGM", + "wikipedia_link": "https://en.wikipedia.org/wiki/T%C3%A2rgu_Mure%C5%9F_International_Airport", + "keywords": "Vidrasau, Vidrasău" + }, + { + "id": "4488", + "ident": "LRTR", + "type": "medium_airport", + "name": "Timişoara Traian Vuia Airport", + "latitude_deg": "45.809898376464844", + "longitude_deg": "21.337900161743164", + "elevation_ft": "348", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-TM", + "municipality": "Timişoara", + "scheduled_service": "yes", + "gps_code": "LRTR", + "iata_code": "TSR", + "home_link": "http://www.aerotim.ro/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Traian_Vuia_International_Airport", + "keywords": "RoAF 93rd Air Base, Giarmata Airport, Temesvár, Temeschburg, Temeswar, Temeschwar, Тимишоара, Темишвар, Temišvar, Banat" + }, + { + "id": "30501", + "ident": "LRTZ", + "type": "small_airport", + "name": "Tuzla Aerodrome", + "latitude_deg": "43.984395", + "longitude_deg": "28.609682", + "elevation_ft": "161", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-CT", + "municipality": "Tuzla", + "scheduled_service": "no", + "gps_code": "LRTZ" + }, + { + "id": "21634", + "ident": "LS00", + "type": "small_airport", + "name": "Whitehead Ultralightport", + "latitude_deg": "30.675500869750977", + "longitude_deg": "-91.11430358886719", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Zachary", + "scheduled_service": "no", + "gps_code": "LS00", + "local_code": "LS00" + }, + { + "id": "21635", + "ident": "LS01", + "type": "heliport", + "name": "Shell Pipe Line Gibson Heliport", + "latitude_deg": "29.62859", + "longitude_deg": "-90.93357", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Gibson", + "scheduled_service": "no", + "gps_code": "LS01", + "local_code": "LS01" + }, + { + "id": "21636", + "ident": "LS02", + "type": "heliport", + "name": "North Oaks Medical Center Heliport", + "latitude_deg": "30.465981", + "longitude_deg": "-90.462588", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Hammond", + "scheduled_service": "no", + "gps_code": "LS02", + "local_code": "LS02" + }, + { + "id": "21637", + "ident": "LS03", + "type": "closed", + "name": "Stephen's Flying Service Airport", + "latitude_deg": "32.293301", + "longitude_deg": "-91.5933", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Winnsboro", + "scheduled_service": "no", + "keywords": "LS03" + }, + { + "id": "21638", + "ident": "LS04", + "type": "closed", + "name": "Bobby Jones Flying Service Inc Airport", + "latitude_deg": "32.3167", + "longitude_deg": "-91.8395", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Mangham", + "scheduled_service": "no", + "keywords": "LS04" + }, + { + "id": "21639", + "ident": "LS05", + "type": "closed", + "name": "Troop B Heliport", + "latitude_deg": "29.998501", + "longitude_deg": "-90.116699", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no", + "keywords": "LS05" + }, + { + "id": "21640", + "ident": "LS06", + "type": "heliport", + "name": "Pointe Coupee General Hospital Heliport", + "latitude_deg": "30.68320083618164", + "longitude_deg": "-91.46119689941406", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Roads", + "scheduled_service": "no", + "gps_code": "LS06", + "local_code": "LS06" + }, + { + "id": "21641", + "ident": "LS07", + "type": "heliport", + "name": "Lsu Health Science Center Heliport", + "latitude_deg": "32.48059844970703", + "longitude_deg": "-93.76219940185547", + "elevation_ft": "336", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Shreveport", + "scheduled_service": "no", + "gps_code": "LS07", + "local_code": "LS07" + }, + { + "id": "21642", + "ident": "LS08", + "type": "heliport", + "name": "Boothville Heliport", + "latitude_deg": "29.353982", + "longitude_deg": "-89.437355", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Buras", + "scheduled_service": "no", + "gps_code": "KLNQ", + "local_code": "LNQ", + "keywords": "LS08, Robert L Suggs Heliport" + }, + { + "id": "21643", + "ident": "LS09", + "type": "closed", + "name": "Sylvester's Airport", + "latitude_deg": "30.695801", + "longitude_deg": "-92.317596", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Ville Platte", + "scheduled_service": "no", + "keywords": "LS09" + }, + { + "id": "21644", + "ident": "LS10", + "type": "small_airport", + "name": "Reynolds Airport", + "latitude_deg": "30.2721004486084", + "longitude_deg": "-93.31179809570312", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Westlake", + "scheduled_service": "no", + "gps_code": "LS10", + "local_code": "LS10" + }, + { + "id": "21645", + "ident": "LS11", + "type": "closed", + "name": "Liddieville Airport", + "latitude_deg": "32.1535", + "longitude_deg": "-91.843696", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Winnsboro", + "scheduled_service": "no", + "keywords": "LS11, Yates" + }, + { + "id": "21646", + "ident": "LS12", + "type": "heliport", + "name": "Bastian Bay Heliport", + "latitude_deg": "29.31410026550293", + "longitude_deg": "-89.61419677734375", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Buras", + "scheduled_service": "no", + "gps_code": "LS12", + "local_code": "LS12" + }, + { + "id": "21647", + "ident": "LS13", + "type": "heliport", + "name": "Omni Heliport", + "latitude_deg": "30.347900390625", + "longitude_deg": "-92.04119873046875", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Carencro", + "scheduled_service": "no", + "gps_code": "LS13", + "local_code": "LS13" + }, + { + "id": "21648", + "ident": "LS14", + "type": "small_airport", + "name": "Lyon Airport", + "latitude_deg": "30.070999", + "longitude_deg": "-92.825104", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Thornwell", + "scheduled_service": "no", + "gps_code": "LS14", + "local_code": "LS14", + "keywords": "3L0" + }, + { + "id": "21649", + "ident": "LS15", + "type": "closed", + "name": "Diamond Shamrock Heliport", + "latitude_deg": "29.891062", + "longitude_deg": "-91.6802", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Jeanerette", + "scheduled_service": "no", + "keywords": "LS15" + }, + { + "id": "21650", + "ident": "LS16", + "type": "small_airport", + "name": "Circle G Airport", + "latitude_deg": "32.010896", + "longitude_deg": "-91.756761", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Jigger", + "scheduled_service": "no", + "gps_code": "LS16", + "local_code": "LS16" + }, + { + "id": "21651", + "ident": "LS17", + "type": "heliport", + "name": "Jack Kent Heliport", + "latitude_deg": "30.06599998474121", + "longitude_deg": "-89.618896484375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Slidell", + "scheduled_service": "no", + "gps_code": "LS17", + "local_code": "LS17" + }, + { + "id": "7293", + "ident": "LS18", + "type": "small_airport", + "name": "Ag Aviation Airport", + "latitude_deg": "30.223899841308594", + "longitude_deg": "-92.77860260009766", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Welsh", + "scheduled_service": "no", + "gps_code": "LS18", + "local_code": "LS18", + "keywords": "Formerly 0LS1" + }, + { + "id": "21653", + "ident": "LS19", + "type": "heliport", + "name": "Houma Terrebonne Heliport", + "latitude_deg": "29.250499725341797", + "longitude_deg": "-90.66230010986328", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Chauvin", + "scheduled_service": "no", + "gps_code": "LS19", + "local_code": "LS19" + }, + { + "id": "21654", + "ident": "LS20", + "type": "closed", + "name": "Riverview Medical Center Heliport", + "latitude_deg": "30.208023", + "longitude_deg": "-90.9312", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Gonzales", + "scheduled_service": "no", + "keywords": "LS20" + }, + { + "id": "21655", + "ident": "LS21", + "type": "closed", + "name": "Southland Strip Ultralightport", + "latitude_deg": "29.6705", + "longitude_deg": "-90.770597", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Houma", + "scheduled_service": "no", + "keywords": "LS21" + }, + { + "id": "21656", + "ident": "LS22", + "type": "heliport", + "name": "St Helena Parish Hospital Heliport", + "latitude_deg": "30.831807", + "longitude_deg": "-90.666556", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Greensburg", + "scheduled_service": "no", + "gps_code": "LS22", + "local_code": "LS22" + }, + { + "id": "21657", + "ident": "LS23", + "type": "heliport", + "name": "Womens's and Children's Hospital Heliport", + "latitude_deg": "30.153398", + "longitude_deg": "-92.04629", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "LS23", + "local_code": "LS23" + }, + { + "id": "21658", + "ident": "LS24", + "type": "heliport", + "name": "Touro Infirmary Heliport", + "latitude_deg": "29.926818", + "longitude_deg": "-90.093226", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no", + "gps_code": "LS24", + "local_code": "LS24" + }, + { + "id": "21659", + "ident": "LS25", + "type": "small_airport", + "name": "Annison Private Airport", + "latitude_deg": "30.704599380493164", + "longitude_deg": "-91.06069946289062", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Slaughter", + "scheduled_service": "no", + "gps_code": "LS25", + "local_code": "LS25" + }, + { + "id": "21660", + "ident": "LS26", + "type": "closed", + "name": "Caillou Island Heliport", + "latitude_deg": "29.120001", + "longitude_deg": "-90.493797", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cocodrie", + "scheduled_service": "no", + "keywords": "LS26" + }, + { + "id": "21661", + "ident": "LS27", + "type": "heliport", + "name": "Rapides Regional Medical Center Heliport", + "latitude_deg": "31.3158", + "longitude_deg": "-92.44987", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Alexandria", + "scheduled_service": "no", + "gps_code": "LS27", + "local_code": "LS27" + }, + { + "id": "21662", + "ident": "LS28", + "type": "heliport", + "name": "Barataria Bay Heliport", + "latitude_deg": "29.378599166870117", + "longitude_deg": "-89.85449981689453", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Ecaille", + "scheduled_service": "no", + "gps_code": "LS28", + "local_code": "LS28" + }, + { + "id": "21663", + "ident": "LS29", + "type": "closed", + "name": "South 40 Heliport", + "latitude_deg": "30.123501", + "longitude_deg": "-93.251801", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Charles", + "scheduled_service": "no", + "keywords": "LS29" + }, + { + "id": "21664", + "ident": "LS30", + "type": "heliport", + "name": "University Health Conway Hospital Heliport", + "latitude_deg": "32.44918", + "longitude_deg": "-92.107537", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "LS30", + "local_code": "LS30", + "keywords": "E A Conway Hospital Heliport" + }, + { + "id": "21665", + "ident": "LS31", + "type": "heliport", + "name": "Fresh Water Bayou Heliport", + "latitude_deg": "29.601499557495117", + "longitude_deg": "-92.26010131835938", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Intercoastal City", + "scheduled_service": "no", + "gps_code": "LS31", + "local_code": "LS31" + }, + { + "id": "21666", + "ident": "LS32", + "type": "closed", + "name": "St Jude Heliport", + "latitude_deg": "30.025491", + "longitude_deg": "-90.270587", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kenner", + "scheduled_service": "no", + "keywords": "LS32" + }, + { + "id": "21667", + "ident": "LS33", + "type": "closed", + "name": "Sun Drilling Products Heliport", + "latitude_deg": "29.8985", + "longitude_deg": "-89.990601", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no", + "keywords": "LS33" + }, + { + "id": "21448", + "ident": "LS34", + "type": "small_airport", + "name": "Bordelon Airpark", + "latitude_deg": "30.30644", + "longitude_deg": "-91.85955", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Breaux Bridge", + "scheduled_service": "no", + "gps_code": "LS34", + "local_code": "LS34", + "keywords": "Formerly L28" + }, + { + "id": "21668", + "ident": "LS35", + "type": "small_airport", + "name": "Nauga Field", + "latitude_deg": "30.762500762939453", + "longitude_deg": "-91.27729797363281", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "St Francisville", + "scheduled_service": "no", + "gps_code": "LS35", + "local_code": "LS35" + }, + { + "id": "21669", + "ident": "LS36", + "type": "small_airport", + "name": "Light Plane Flyers Airfield", + "latitude_deg": "30.250200271606445", + "longitude_deg": "-92.97200012207031", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Iowa", + "scheduled_service": "no", + "gps_code": "LS36", + "local_code": "LS36" + }, + { + "id": "21670", + "ident": "LS37", + "type": "heliport", + "name": "West Calcasieu Cameron Hospital Heliport", + "latitude_deg": "30.229900360107422", + "longitude_deg": "-93.3687973022461", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Sulphur", + "scheduled_service": "no", + "gps_code": "LS37", + "local_code": "LS37" + }, + { + "id": "21671", + "ident": "LS38", + "type": "small_airport", + "name": "Richard's Airport", + "latitude_deg": "30.013099670410156", + "longitude_deg": "-91.86920166015625", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Iberia", + "scheduled_service": "no", + "gps_code": "LS38", + "local_code": "LS38" + }, + { + "id": "21672", + "ident": "LS39", + "type": "small_airport", + "name": "Country Bend Airport", + "latitude_deg": "30.589399337768555", + "longitude_deg": "-90.9845962524414", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Watson", + "scheduled_service": "no", + "gps_code": "LS39", + "local_code": "LS39" + }, + { + "id": "21673", + "ident": "LS40", + "type": "small_airport", + "name": "St Charles Airport", + "latitude_deg": "29.951900482177734", + "longitude_deg": "-90.28610229492188", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Ama", + "scheduled_service": "no", + "gps_code": "LS40", + "local_code": "LS40" + }, + { + "id": "21674", + "ident": "LS41", + "type": "small_airport", + "name": "Tater Patch Ultralightport", + "latitude_deg": "32.567101", + "longitude_deg": "-93.878899", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Shreveport", + "scheduled_service": "no", + "gps_code": "LS41", + "local_code": "LS41" + }, + { + "id": "21675", + "ident": "LS42", + "type": "heliport", + "name": "Acadia General Hospital Heliport", + "latitude_deg": "30.226565", + "longitude_deg": "-92.363985", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Crowley", + "scheduled_service": "no", + "gps_code": "LS42", + "local_code": "LS42", + "keywords": "American Legion Hospital Heliport" + }, + { + "id": "21676", + "ident": "LS43", + "type": "small_airport", + "name": "Southland Strip Number 2 Ultralightport", + "latitude_deg": "29.673847", + "longitude_deg": "-90.765244", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Gray", + "scheduled_service": "no", + "gps_code": "LS43", + "local_code": "LS43" + }, + { + "id": "21677", + "ident": "LS44", + "type": "closed", + "name": "Ken Guidry #3 Airport", + "latitude_deg": "30.089899", + "longitude_deg": "-92.343697", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kaplan", + "scheduled_service": "no", + "keywords": "LS44, Wills Landing Strip" + }, + { + "id": "21678", + "ident": "LS45", + "type": "heliport", + "name": "Waterford 3 Nuclear Generating Station Heliport", + "latitude_deg": "29.992084", + "longitude_deg": "-90.467768", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Killona", + "scheduled_service": "no", + "gps_code": "LS45", + "local_code": "LS45" + }, + { + "id": "21679", + "ident": "LS46", + "type": "closed", + "name": "Blount Airport", + "latitude_deg": "31.4585", + "longitude_deg": "-91.822899", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Monterey", + "scheduled_service": "no", + "keywords": "LS46" + }, + { + "id": "21680", + "ident": "LS47", + "type": "heliport", + "name": "Marine Shale Processors Inc Heliport", + "latitude_deg": "29.662700653076172", + "longitude_deg": "-91.12840270996094", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Morgan City", + "scheduled_service": "no", + "gps_code": "LS47", + "local_code": "LS47" + }, + { + "id": "21681", + "ident": "LS48", + "type": "heliport", + "name": "Assumption Comunity Hospital Heliport", + "latitude_deg": "29.957099914599997", + "longitude_deg": "-91.0336990356", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Napoleonville", + "scheduled_service": "no", + "gps_code": "LS48", + "local_code": "LS48" + }, + { + "id": "21682", + "ident": "LS49", + "type": "small_airport", + "name": "Simpson Airport", + "latitude_deg": "30.30270004272461", + "longitude_deg": "-91.27149963378906", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Plaquemine", + "scheduled_service": "no", + "gps_code": "LS49", + "local_code": "LS49" + }, + { + "id": "21683", + "ident": "LS50", + "type": "closed", + "name": "Squires Heliport", + "latitude_deg": "32.429901", + "longitude_deg": "-91.724297", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Rayville", + "scheduled_service": "no", + "keywords": "LS50" + }, + { + "id": "21684", + "ident": "LS51", + "type": "heliport", + "name": "Northshore Regional Medical Center Heliport", + "latitude_deg": "30.28689956665039", + "longitude_deg": "-89.7406005859375", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Slidell", + "scheduled_service": "no", + "gps_code": "LS51", + "local_code": "LS51" + }, + { + "id": "21685", + "ident": "LS52", + "type": "heliport", + "name": "Era Helicopters Venice Base Heliport", + "latitude_deg": "29.287399291992188", + "longitude_deg": "-89.3677978515625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no", + "gps_code": "LS52", + "local_code": "LS52" + }, + { + "id": "21686", + "ident": "LS53", + "type": "heliport", + "name": "Ville Platte Medical Center Heliport", + "latitude_deg": "30.681900024414062", + "longitude_deg": "-92.26599884033203", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Ville Platte", + "scheduled_service": "no", + "gps_code": "LS53", + "local_code": "LS53" + }, + { + "id": "21687", + "ident": "LS54", + "type": "small_airport", + "name": "Brian's Ultralightport", + "latitude_deg": "30.694865", + "longitude_deg": "-91.1928", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Zachary", + "scheduled_service": "no", + "gps_code": "LS54", + "local_code": "LS54" + }, + { + "id": "21688", + "ident": "LS55", + "type": "heliport", + "name": "William Olefins LLC", + "latitude_deg": "30.231202", + "longitude_deg": "-91.051603", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Geismar", + "scheduled_service": "no", + "gps_code": "LS55", + "local_code": "LS55" + }, + { + "id": "21689", + "ident": "LS56", + "type": "heliport", + "name": "Medicant Island Heliport", + "latitude_deg": "29.336599349975586", + "longitude_deg": "-89.98419952392578", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Grand Isle", + "scheduled_service": "no", + "gps_code": "LS56", + "local_code": "LS56" + }, + { + "id": "21690", + "ident": "LS57", + "type": "heliport", + "name": "River Parish Hospital Heliport", + "latitude_deg": "30.072662", + "longitude_deg": "-90.513879", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "LaPlace", + "scheduled_service": "no", + "gps_code": "LS57", + "local_code": "LS57" + }, + { + "id": "21691", + "ident": "LS58", + "type": "heliport", + "name": "Christus Ochsner Lake Area Hospital Heliport", + "latitude_deg": "30.180329", + "longitude_deg": "-93.250987", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Charles", + "scheduled_service": "no", + "gps_code": "LS58", + "local_code": "LS58", + "keywords": "Women & Children's Hospital" + }, + { + "id": "21692", + "ident": "LS59", + "type": "small_airport", + "name": "La Petite Airdrome Ultralightport", + "latitude_deg": "30.629232", + "longitude_deg": "-92.189079", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Opelousas", + "scheduled_service": "no", + "keywords": "LS59" + }, + { + "id": "21693", + "ident": "LS60", + "type": "heliport", + "name": "East Field", + "latitude_deg": "30.251300811767578", + "longitude_deg": "-91.08650207519531", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "St Gabriel", + "scheduled_service": "no", + "gps_code": "LS60", + "local_code": "LS60" + }, + { + "id": "21694", + "ident": "LS61", + "type": "closed", + "name": "Berwick Shore Base Heliport", + "latitude_deg": "29.6633", + "longitude_deg": "-91.2407", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Berwick", + "scheduled_service": "no", + "keywords": "LS61" + }, + { + "id": "21695", + "ident": "LS62", + "type": "heliport", + "name": "Burns Point Plant Heliport", + "latitude_deg": "29.57159996032715", + "longitude_deg": "-91.53209686279297", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Centerville", + "scheduled_service": "no", + "gps_code": "LS62", + "local_code": "LS62" + }, + { + "id": "21696", + "ident": "LS63", + "type": "closed", + "name": "West Delta Receiving Station Heliport", + "latitude_deg": "29.219508", + "longitude_deg": "-89.396218", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no", + "keywords": "LS63" + }, + { + "id": "21697", + "ident": "LS64", + "type": "heliport", + "name": "District 8 Emergency Heliport", + "latitude_deg": "29.688499450683594", + "longitude_deg": "-90.98729705810547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Gibson", + "scheduled_service": "no", + "gps_code": "LS64", + "local_code": "LS64" + }, + { + "id": "21698", + "ident": "LS65", + "type": "heliport", + "name": "Moisart Heliport", + "latitude_deg": "29.981599807739258", + "longitude_deg": "-90.28260040283203", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no", + "gps_code": "LS65", + "local_code": "LS65" + }, + { + "id": "21699", + "ident": "LS66", + "type": "heliport", + "name": "Petro Com Headquarters Heliport", + "latitude_deg": "29.970199584960938", + "longitude_deg": "-90.20339965820312", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Harahan", + "scheduled_service": "no", + "gps_code": "LS66", + "local_code": "LS66" + }, + { + "id": "21700", + "ident": "LS67", + "type": "heliport", + "name": "Avoyelles Hospital Heliport", + "latitude_deg": "31.14379", + "longitude_deg": "-92.062029", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Marksville", + "scheduled_service": "no", + "gps_code": "LS67", + "local_code": "LS67" + }, + { + "id": "21701", + "ident": "LS68", + "type": "small_airport", + "name": "Ken Guidry #1 Airport", + "latitude_deg": "29.9347", + "longitude_deg": "-92.213501", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Abbeville", + "scheduled_service": "no", + "gps_code": "LS68", + "local_code": "LS68", + "keywords": "Victory Flyers Landing Strip" + }, + { + "id": "21702", + "ident": "LS69", + "type": "closed", + "name": "L J Earnest Airport", + "latitude_deg": "32.643501", + "longitude_deg": "-93.662399", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Benton", + "scheduled_service": "no", + "keywords": "LS69" + }, + { + "id": "334246", + "ident": "LS70", + "type": "small_airport", + "name": "Lake Air Service-Pine Island Airport", + "latitude_deg": "30.340649", + "longitude_deg": "-92.736958", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Jennings", + "scheduled_service": "no", + "gps_code": "LS70", + "local_code": "LS70" + }, + { + "id": "21703", + "ident": "LS71", + "type": "heliport", + "name": "Raceland Station Heliport", + "latitude_deg": "29.72800064086914", + "longitude_deg": "-90.59429931640625", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Raceland", + "scheduled_service": "no", + "gps_code": "LS71", + "local_code": "LS71" + }, + { + "id": "21704", + "ident": "LS72", + "type": "small_airport", + "name": "Aerolite Aero Park Ultralightport", + "latitude_deg": "30.202999114990234", + "longitude_deg": "-92.81210327148438", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Welsh", + "scheduled_service": "no", + "gps_code": "LS72", + "local_code": "LS72" + }, + { + "id": "21705", + "ident": "LS73", + "type": "heliport", + "name": "Amax Metals Recovery Inc. Heliport", + "latitude_deg": "29.863042", + "longitude_deg": "-89.968066", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Braithwaite", + "scheduled_service": "no", + "gps_code": "LS73", + "local_code": "LS73" + }, + { + "id": "21706", + "ident": "LS74", + "type": "heliport", + "name": "Utec Heliport", + "latitude_deg": "30.226900100708008", + "longitude_deg": "-93.19989776611328", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Charles", + "scheduled_service": "no", + "gps_code": "LS74", + "local_code": "LS74" + }, + { + "id": "21707", + "ident": "LS75", + "type": "heliport", + "name": "Cameron Shore Base Heliport", + "latitude_deg": "29.819228", + "longitude_deg": "-93.338696", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cameron", + "scheduled_service": "no", + "gps_code": "LS75", + "local_code": "LS75" + }, + { + "id": "21708", + "ident": "LS76", + "type": "small_airport", + "name": "Hickham Field", + "latitude_deg": "30.46269989013672", + "longitude_deg": "-90.17009735107422", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Covington", + "scheduled_service": "no", + "gps_code": "LS76", + "local_code": "LS76" + }, + { + "id": "21709", + "ident": "LS77", + "type": "small_airport", + "name": "Magnolia Airpark", + "latitude_deg": "30.727067", + "longitude_deg": "-91.148736", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Slaughter", + "scheduled_service": "no", + "gps_code": "LS77", + "local_code": "LS77", + "keywords": "7LA9, A & P Airpark" + }, + { + "id": "21710", + "ident": "LS78", + "type": "heliport", + "name": "Willis-Knighton Medical Center Heliport", + "latitude_deg": "32.487004", + "longitude_deg": "-93.778321", + "elevation_ft": "253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Shreveport", + "scheduled_service": "no", + "gps_code": "LS78", + "local_code": "LS78" + }, + { + "id": "21711", + "ident": "LS79", + "type": "heliport", + "name": "Hardtner Medical Center Heliport", + "latitude_deg": "31.861299514770508", + "longitude_deg": "-92.2760009765625", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Urania", + "scheduled_service": "no", + "gps_code": "LS79", + "local_code": "LS79" + }, + { + "id": "21712", + "ident": "LS80", + "type": "heliport", + "name": "Station 823 Heliport", + "latitude_deg": "30.434099197387695", + "longitude_deg": "-92.87539672851562", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kinder", + "scheduled_service": "no", + "gps_code": "LS80", + "local_code": "LS80" + }, + { + "id": "21713", + "ident": "LS81", + "type": "heliport", + "name": "Lake Charles Office Heliport", + "latitude_deg": "30.11440086364746", + "longitude_deg": "-93.21209716796875", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Charles", + "scheduled_service": "no", + "gps_code": "LS81", + "local_code": "LS81" + }, + { + "id": "21714", + "ident": "LS82", + "type": "heliport", + "name": "Air Logistics (Lake Charles) Heliport", + "latitude_deg": "30.13719940185547", + "longitude_deg": "-93.18289947509766", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Charles", + "scheduled_service": "no", + "gps_code": "LS82", + "local_code": "LS82" + }, + { + "id": "15800", + "ident": "LS83", + "type": "small_airport", + "name": "Delta Dusters Airport", + "latitude_deg": "32.061737", + "longitude_deg": "-91.251454", + "elevation_ft": "77", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Newellton", + "scheduled_service": "no", + "gps_code": "LS83", + "local_code": "LS83", + "keywords": "9M2, Delta Dusters LLC, Kifer" + }, + { + "id": "21715", + "ident": "LS84", + "type": "heliport", + "name": "Compressor Station 524 Heliport", + "latitude_deg": "29.216100692749023", + "longitude_deg": "-90.21589660644531", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Leeville", + "scheduled_service": "no", + "gps_code": "LS84", + "local_code": "LS84" + }, + { + "id": "21716", + "ident": "LS85", + "type": "heliport", + "name": "East Jefferson General Hospital Heliport", + "latitude_deg": "30.012774", + "longitude_deg": "-90.181945", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Metairie", + "scheduled_service": "no", + "gps_code": "LS85", + "local_code": "LS85" + }, + { + "id": "21717", + "ident": "LS86", + "type": "small_airport", + "name": "Le Blanc Field", + "latitude_deg": "30.681900024414062", + "longitude_deg": "-90.41929626464844", + "elevation_ft": "158", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Hammond", + "scheduled_service": "no", + "gps_code": "LS86", + "local_code": "LS86" + }, + { + "id": "21718", + "ident": "LS87", + "type": "closed", + "name": "Compressor Station 527 Heliport", + "latitude_deg": "29.5149", + "longitude_deg": "-89.730598", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Happy Jack", + "scheduled_service": "no", + "keywords": "LS87" + }, + { + "id": "349529", + "ident": "LS88", + "type": "small_airport", + "name": "Kreswell Airport", + "latitude_deg": "30.449677", + "longitude_deg": "-92.326258", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Eunice", + "scheduled_service": "no", + "gps_code": "LS88", + "local_code": "LS88" + }, + { + "id": "21719", + "ident": "LS89", + "type": "small_airport", + "name": "Sara Field", + "latitude_deg": "30.940814", + "longitude_deg": "-91.473305", + "elevation_ft": "333", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "St Francisville", + "scheduled_service": "no", + "gps_code": "LS89", + "local_code": "LS89" + }, + { + "id": "21720", + "ident": "LS90", + "type": "closed", + "name": "Caddo Detention Center Airport", + "latitude_deg": "32.2601", + "longitude_deg": "-93.937912", + "elevation_ft": "294", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Keithville", + "scheduled_service": "no", + "keywords": "LS90" + }, + { + "id": "21721", + "ident": "LS91", + "type": "small_airport", + "name": "Tim Bullard Memorial Airport", + "latitude_deg": "30.417548", + "longitude_deg": "-91.974739", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Arnaudville", + "scheduled_service": "no", + "gps_code": "LS91", + "local_code": "LS91" + }, + { + "id": "21722", + "ident": "LS92", + "type": "small_airport", + "name": "Koenig Airpark", + "latitude_deg": "30.597400665283203", + "longitude_deg": "-90.31590270996094", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Robert", + "scheduled_service": "no", + "gps_code": "LS92", + "local_code": "LS92" + }, + { + "id": "21723", + "ident": "LS93", + "type": "small_airport", + "name": "Greenwood Plantation Ultralightport", + "latitude_deg": "29.61079978942871", + "longitude_deg": "-90.89839935302734", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Gibson", + "scheduled_service": "no", + "gps_code": "LS93", + "local_code": "LS93" + }, + { + "id": "21724", + "ident": "LS94", + "type": "heliport", + "name": "Alon USA Heliport", + "latitude_deg": "30.532936", + "longitude_deg": "-91.750232", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Krotz Springs", + "scheduled_service": "no", + "gps_code": "LS94", + "local_code": "LS94", + "keywords": "Valero Refining Co Heliport" + }, + { + "id": "21725", + "ident": "LS95", + "type": "heliport", + "name": "Mackie Memorial Heliport", + "latitude_deg": "30.979400634765625", + "longitude_deg": "-92.58709716796875", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Glenmora", + "scheduled_service": "no", + "gps_code": "LS95", + "local_code": "LS95" + }, + { + "id": "21726", + "ident": "LS96", + "type": "heliport", + "name": "Ochsner Medical Institutions Heliport", + "latitude_deg": "29.96765", + "longitude_deg": "-90.14298", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Jefferson", + "scheduled_service": "no", + "gps_code": "LS96", + "local_code": "LS96" + }, + { + "id": "21727", + "ident": "LS97", + "type": "heliport", + "name": "Myu Heliport", + "latitude_deg": "29.92959976196289", + "longitude_deg": "-90.35399627685547", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Luling", + "scheduled_service": "no", + "gps_code": "LS97", + "local_code": "LS97" + }, + { + "id": "21728", + "ident": "LS98", + "type": "heliport", + "name": "Sabine Medical Center Heliport", + "latitude_deg": "31.560699462890625", + "longitude_deg": "-93.47209930419922", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Many", + "scheduled_service": "no", + "gps_code": "LS98", + "local_code": "LS98" + }, + { + "id": "21729", + "ident": "LS99", + "type": "heliport", + "name": "PHI Fourchon Base Heliport", + "latitude_deg": "29.116306", + "longitude_deg": "-90.205178", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Golden Meadow", + "scheduled_service": "no", + "gps_code": "LS99", + "local_code": "LS99" + }, + { + "id": "21730", + "ident": "LSD", + "type": "heliport", + "name": "Blue Grass Station Army Heliport", + "latitude_deg": "38.083401", + "longitude_deg": "-84.316597", + "elevation_ft": "1016", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Lexington", + "scheduled_service": "no", + "keywords": "LSD, KLSD" + }, + { + "id": "43112", + "ident": "LSER", + "type": "heliport", + "name": "Raron Heliport", + "latitude_deg": "46.301594", + "longitude_deg": "7.833207", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-VS", + "municipality": "Raron", + "scheduled_service": "no", + "gps_code": "LSER" + }, + { + "id": "43111", + "ident": "LSEZ", + "type": "heliport", + "name": "Zermatt Heliport", + "latitude_deg": "46.029319763183594", + "longitude_deg": "7.753366470336914", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-VS", + "municipality": "Zermatt", + "scheduled_service": "no", + "gps_code": "LSEZ" + }, + { + "id": "29494", + "ident": "LSGB", + "type": "small_airport", + "name": "Bex Airport", + "latitude_deg": "46.25830078125", + "longitude_deg": "6.986390113830566", + "elevation_ft": "1312", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-VD", + "municipality": "Bex", + "scheduled_service": "no", + "gps_code": "LSGB" + }, + { + "id": "4489", + "ident": "LSGC", + "type": "medium_airport", + "name": "Les Eplatures Airport", + "latitude_deg": "47.083900451699996", + "longitude_deg": "6.792840003970001", + "elevation_ft": "3368", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-NE", + "municipality": "La Chaux-de-Fonds", + "scheduled_service": "no", + "gps_code": "LSGC", + "home_link": "http://www.leseplaturesairport.ch", + "wikipedia_link": "https://en.wikipedia.org/wiki/Les_Eplatures_Airport" + }, + { + "id": "29495", + "ident": "LSGE", + "type": "small_airport", + "name": "Ecuvillens Airport", + "latitude_deg": "46.755001", + "longitude_deg": "7.07611", + "elevation_ft": "2293", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-FR", + "scheduled_service": "no", + "gps_code": "LSGE", + "home_link": "http://www.aerodrome-ecuvillens.ch/", + "wikipedia_link": "https://fr.wikipedia.org/wiki/A%C3%A9rodrome_de_Fribourg-Ecuvillens" + }, + { + "id": "4490", + "ident": "LSGG", + "type": "large_airport", + "name": "Geneva Cointrin International Airport", + "latitude_deg": "46.23809814453125", + "longitude_deg": "6.108950138092041", + "elevation_ft": "1411", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-GE", + "municipality": "Geneva", + "scheduled_service": "yes", + "gps_code": "LSGG", + "iata_code": "GVA", + "home_link": "http://www.gva.ch/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Geneva_Cointrin_International_Airport" + }, + { + "id": "4491", + "ident": "LSGK", + "type": "small_airport", + "name": "Saanen Airport", + "latitude_deg": "46.4874992371", + "longitude_deg": "7.25083017349", + "elevation_ft": "3307", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-BE", + "municipality": "Saanen", + "scheduled_service": "no", + "gps_code": "LSGK", + "home_link": "http://www.air-sarina.ch" + }, + { + "id": "29496", + "ident": "LSGL", + "type": "small_airport", + "name": "Lausanne-Blécherette Airport", + "latitude_deg": "46.5453", + "longitude_deg": "6.61667", + "elevation_ft": "2041", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-VD", + "municipality": "Lausanne", + "scheduled_service": "no", + "gps_code": "LSGL", + "home_link": "http://www.lausanne-airport.ch", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lausanne_Airport" + }, + { + "id": "29497", + "ident": "LSGN", + "type": "small_airport", + "name": "Neuchatel Airfield", + "latitude_deg": "46.9575", + "longitude_deg": "6.86472", + "elevation_ft": "1427", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-NE", + "scheduled_service": "no", + "gps_code": "LSGN", + "home_link": "http://www.neuchatel-airport.ch" + }, + { + "id": "29498", + "ident": "LSGP", + "type": "small_airport", + "name": "La Côte Airport", + "latitude_deg": "46.40639877319336", + "longitude_deg": "6.258059978485107", + "elevation_ft": "1352", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-VD", + "municipality": "La Côte", + "scheduled_service": "no", + "gps_code": "LSGP" + }, + { + "id": "30327", + "ident": "LSGR", + "type": "small_airport", + "name": "Reichenbach Air Base", + "latitude_deg": "46.61360168457031", + "longitude_deg": "7.6777801513671875", + "elevation_ft": "2385", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-BE", + "scheduled_service": "no", + "gps_code": "LSGR" + }, + { + "id": "4492", + "ident": "LSGS", + "type": "medium_airport", + "name": "Sion Airport", + "latitude_deg": "46.219166", + "longitude_deg": "7.326944", + "elevation_ft": "1582", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-VS", + "municipality": "Sion", + "scheduled_service": "no", + "gps_code": "LSGS", + "iata_code": "SIR", + "home_link": "http://www.sionairport.ch", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sion_Airport", + "keywords": "LSMS" + }, + { + "id": "29499", + "ident": "LSGT", + "type": "small_airport", + "name": "Gruyeres Airport", + "latitude_deg": "46.594200134277344", + "longitude_deg": "7.09443998336792", + "elevation_ft": "2257", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-FR", + "scheduled_service": "no", + "gps_code": "LSGT" + }, + { + "id": "29500", + "ident": "LSGY", + "type": "small_airport", + "name": "Yverdon-les-Bains Airport", + "latitude_deg": "46.7619018555", + "longitude_deg": "6.61332988739", + "elevation_ft": "1421", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-VD", + "municipality": "Yverdon-les-Bains", + "scheduled_service": "no", + "gps_code": "LSGY", + "home_link": "http://www.lsgy.ch" + }, + { + "id": "324129", + "ident": "LSHC", + "type": "heliport", + "name": "Collombey-Muraz Heliport", + "latitude_deg": "46.268501", + "longitude_deg": "6.959773", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-VS", + "municipality": "Collombey-Muraz", + "scheduled_service": "no", + "gps_code": "LSHC" + }, + { + "id": "43110", + "ident": "LSHG", + "type": "heliport", + "name": "Gampel Heliport", + "latitude_deg": "46.310055", + "longitude_deg": "7.724794", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-VS", + "municipality": "Gampel", + "scheduled_service": "no", + "gps_code": "LSEG" + }, + { + "id": "324883", + "ident": "LSHI", + "type": "heliport", + "name": "Inselspital Hospital Heliport", + "latitude_deg": "46.948295", + "longitude_deg": "7.424303", + "elevation_ft": "1880", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-BE", + "municipality": "Berne", + "scheduled_service": "no", + "gps_code": "LSHI" + }, + { + "id": "4493", + "ident": "LSMA", + "type": "medium_airport", + "name": "Alpnach Air Base", + "latitude_deg": "46.943901", + "longitude_deg": "8.28417", + "elevation_ft": "1460", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-OW", + "municipality": "Alpnach", + "scheduled_service": "no", + "gps_code": "LSMA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alpnach_Air_Base" + }, + { + "id": "4494", + "ident": "LSMD", + "type": "medium_airport", + "name": "Dübendorf Air Base", + "latitude_deg": "47.398601532", + "longitude_deg": "8.648229599", + "elevation_ft": "1470", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-ZH", + "municipality": "Zurich", + "scheduled_service": "no", + "gps_code": "LSMD" + }, + { + "id": "4495", + "ident": "LSME", + "type": "medium_airport", + "name": "Emmen Air Base", + "latitude_deg": "47.092444", + "longitude_deg": "8.305184", + "elevation_ft": "1400", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-LU", + "scheduled_service": "no", + "gps_code": "LSME", + "iata_code": "EML", + "home_link": "https://saf.hermannkeist.ch/emmen.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Milit%C3%A4rflugplatz_Emmen" + }, + { + "id": "4496", + "ident": "LSMF", + "type": "small_airport", + "name": "Mollis Airport", + "latitude_deg": "47.078353", + "longitude_deg": "9.064662", + "elevation_ft": "1485", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-GL", + "municipality": "Mollis", + "scheduled_service": "no", + "gps_code": "LSZM", + "home_link": "http://www.flugplatz-mollis.ch/", + "wikipedia_link": "http://de.wikipedia.org/wiki/Mollis#Milit.C3.A4rflugplatz", + "keywords": "LSMF" + }, + { + "id": "29501", + "ident": "LSMI", + "type": "closed", + "name": "Interlaken Air Base", + "latitude_deg": "46.6766014", + "longitude_deg": "7.8790798", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-BE", + "scheduled_service": "no", + "gps_code": "LSMI", + "iata_code": "ZIN" + }, + { + "id": "29502", + "ident": "LSMJ", + "type": "closed", + "name": "Turtman Air Base", + "latitude_deg": "46.30260086", + "longitude_deg": "7.713950157", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-VS", + "municipality": "Turtman", + "scheduled_service": "no", + "gps_code": "LSMJ" + }, + { + "id": "29503", + "ident": "LSML", + "type": "small_airport", + "name": "Lodrino Air Base", + "latitude_deg": "46.2958984375", + "longitude_deg": "8.992130279541016", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-TI", + "municipality": "Lodrino", + "scheduled_service": "no", + "gps_code": "LSML" + }, + { + "id": "4497", + "ident": "LSMM", + "type": "small_airport", + "name": "Meiringen Airport", + "latitude_deg": "46.743301", + "longitude_deg": "8.11", + "elevation_ft": "1895", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-BE", + "scheduled_service": "no", + "gps_code": "LSMM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Meiringen_Air_Base" + }, + { + "id": "4498", + "ident": "LSMP", + "type": "medium_airport", + "name": "Payerne Air Base", + "latitude_deg": "46.8432", + "longitude_deg": "6.91506004333", + "elevation_ft": "1465", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-FR", + "scheduled_service": "no", + "gps_code": "LSMP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Payerne_Airport" + }, + { + "id": "29660", + "ident": "LSPA", + "type": "small_airport", + "name": "Amlikon Glider Airport", + "latitude_deg": "47.57419967651367", + "longitude_deg": "9.047499656677246", + "elevation_ft": "1371", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-TG", + "scheduled_service": "no", + "gps_code": "LSPA" + }, + { + "id": "29505", + "ident": "LSPD", + "type": "small_airport", + "name": "Dittingen Airport", + "latitude_deg": "47.438599", + "longitude_deg": "7.49139", + "elevation_ft": "1758", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-BL", + "municipality": "Dittingen", + "scheduled_service": "no", + "gps_code": "LSPD", + "home_link": "https://sg-dittingen.ch/", + "keywords": "Dittingen,LSPD," + }, + { + "id": "29506", + "ident": "LSPF", + "type": "small_airport", + "name": "Schaffhausen Airport", + "latitude_deg": "47.69060134887695", + "longitude_deg": "8.52694034576416", + "elevation_ft": "1519", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-SH", + "scheduled_service": "no", + "gps_code": "LSPF" + }, + { + "id": "29507", + "ident": "LSPG", + "type": "small_airport", + "name": "Flugplatz Kagiswil", + "latitude_deg": "46.908298", + "longitude_deg": "8.25417", + "elevation_ft": "1525", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-OW", + "scheduled_service": "no", + "gps_code": "LSPG", + "home_link": "http://www.airportlspg.ch/" + }, + { + "id": "29508", + "ident": "LSPH", + "type": "small_airport", + "name": "Winterthur Airport", + "latitude_deg": "47.5149993896", + "longitude_deg": "8.77194023132", + "elevation_ft": "1506", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-ZH", + "municipality": "Winterthur", + "scheduled_service": "no", + "gps_code": "LSPH" + }, + { + "id": "29509", + "ident": "LSPK", + "type": "closed", + "name": "Flugplatz Hasenstrick", + "latitude_deg": "47.279999", + "longitude_deg": "8.88194", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-ZH", + "scheduled_service": "no", + "gps_code": "LSPK", + "home_link": "http://www.hasenstrick.ch/" + }, + { + "id": "29510", + "ident": "LSPL", + "type": "small_airport", + "name": "Flugplatz Langenthal", + "latitude_deg": "47.1828", + "longitude_deg": "7.74139", + "elevation_ft": "1575", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-BE", + "scheduled_service": "no", + "gps_code": "LSPL", + "home_link": "https://www.lspl.ch/" + }, + { + "id": "4500", + "ident": "LSPM", + "type": "small_airport", + "name": "Ambri Airport", + "latitude_deg": "46.512501", + "longitude_deg": "8.68978", + "elevation_ft": "3241", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-TI", + "municipality": "Quinto", + "scheduled_service": "no", + "gps_code": "LSPM", + "home_link": "https://www.ambri-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ambri_Airport" + }, + { + "id": "29511", + "ident": "LSPN", + "type": "small_airport", + "name": "Flugplatz Triengen", + "latitude_deg": "47.2267", + "longitude_deg": "8.07806", + "elevation_ft": "1594", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-LU", + "scheduled_service": "no", + "gps_code": "LSPN", + "home_link": "http://www.flyingranch.ch", + "wikipedia_link": "http://de.wikipedia.org/wiki/Triengen", + "keywords": "Lucerne, Trisa" + }, + { + "id": "29512", + "ident": "LSPO", + "type": "small_airport", + "name": "Flugplatz Olten", + "latitude_deg": "47.34131", + "longitude_deg": "7.88494", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-SO", + "scheduled_service": "no", + "gps_code": "LSPO" + }, + { + "id": "30169", + "ident": "LSPU", + "type": "small_airport", + "name": "Muenster Aero Airport", + "latitude_deg": "46.48030090332031", + "longitude_deg": "8.263330459594727", + "elevation_ft": "4380", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-VS", + "scheduled_service": "no", + "gps_code": "LSPU" + }, + { + "id": "29513", + "ident": "LSPV", + "type": "small_airport", + "name": "Wangen-Lachen Airfield", + "latitude_deg": "47.204835", + "longitude_deg": "8.867346", + "elevation_ft": "1335", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-SZ", + "municipality": "Wangen", + "scheduled_service": "no", + "gps_code": "LSPV", + "home_link": "http://www.flugplatzwangen.ch/" + }, + { + "id": "21731", + "ident": "LSR", + "type": "small_airport", + "name": "Lost River 1 Airport", + "latitude_deg": "65.39620208740234", + "longitude_deg": "-167.16299438476562", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Lost River", + "scheduled_service": "no", + "gps_code": "LSR", + "local_code": "LSR" + }, + { + "id": "31852", + "ident": "LSTA", + "type": "small_airport", + "name": "Raron Airfield", + "latitude_deg": "46.3036", + "longitude_deg": "7.82333", + "elevation_ft": "2029", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-VS", + "municipality": "Raron", + "scheduled_service": "no", + "gps_code": "LSTA", + "keywords": "LSMN" + }, + { + "id": "29692", + "ident": "LSTB", + "type": "small_airport", + "name": "Aerodrome de Bellechasse", + "latitude_deg": "46.979401", + "longitude_deg": "7.13222", + "elevation_ft": "1421", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-FR", + "scheduled_service": "no", + "gps_code": "LSTB" + }, + { + "id": "29515", + "ident": "LSTO", + "type": "small_airport", + "name": "Aérodrome de Môtiers", + "latitude_deg": "46.916698", + "longitude_deg": "6.615", + "elevation_ft": "2402", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-NE", + "scheduled_service": "no", + "gps_code": "LSTO" + }, + { + "id": "29516", + "ident": "LSTR", + "type": "small_airport", + "name": "Aérodrome de Montricher", + "latitude_deg": "46.590302", + "longitude_deg": "6.40056", + "elevation_ft": "2178", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-VD", + "scheduled_service": "no", + "gps_code": "LSTR" + }, + { + "id": "4501", + "ident": "LSTS", + "type": "small_airport", + "name": "Flugplatz St Stephan", + "latitude_deg": "46.497398", + "longitude_deg": "7.41257", + "elevation_ft": "3304", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-BE", + "scheduled_service": "no", + "gps_code": "LSTS" + }, + { + "id": "30588", + "ident": "LSTZ", + "type": "small_airport", + "name": "Flugplatz Zweisimmen", + "latitude_deg": "46.552502", + "longitude_deg": "7.38056", + "elevation_ft": "3068", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-BE", + "scheduled_service": "no", + "gps_code": "LSTZ", + "home_link": "http://www.zweisimmen.aero" + }, + { + "id": "354300", + "ident": "LSVD", + "type": "small_airport", + "name": "Clariden-Hüfifirn", + "latitude_deg": "46.821944", + "longitude_deg": "8.880277", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-GL", + "municipality": "Plateau nördlich Planurahütte", + "scheduled_service": "no", + "gps_code": "LSVD" + }, + { + "id": "43075", + "ident": "LSXB", + "type": "heliport", + "name": "Balzers Heliport", + "latitude_deg": "47.067908", + "longitude_deg": "9.480774", + "elevation_ft": "1585", + "continent": "EU", + "iso_country": "LI", + "iso_region": "LI-01", + "municipality": "Balzers", + "scheduled_service": "no", + "gps_code": "LSXB", + "home_link": "http://www.heli.li/sites/heliports-balzers-lsxb.php" + }, + { + "id": "324130", + "ident": "LSXG", + "type": "heliport", + "name": "Gsteigwiler Heliport", + "latitude_deg": "46.647697", + "longitude_deg": "7.878219", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-BE", + "municipality": "Gsteigwiler", + "scheduled_service": "no", + "gps_code": "LSXG" + }, + { + "id": "43114", + "ident": "LSXH", + "type": "heliport", + "name": "Holziken Heliport", + "latitude_deg": "47.314323", + "longitude_deg": "8.026514", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-AG", + "municipality": "Holziken", + "scheduled_service": "no", + "gps_code": "LSXH", + "home_link": "https://roseheli.ch/index.php/homepage/about-us" + }, + { + "id": "324185", + "ident": "LSXL", + "type": "heliport", + "name": "Lauterbrunnen Heliport", + "latitude_deg": "46.585497", + "longitude_deg": "7.913509", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-BE", + "municipality": "Lauterbrunnen", + "scheduled_service": "no", + "gps_code": "LSXL" + }, + { + "id": "324892", + "ident": "LSXM", + "type": "heliport", + "name": "St Moritz-Bad Heliport", + "latitude_deg": "46.47895", + "longitude_deg": "9.82422", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-GR", + "municipality": "St Moritz", + "scheduled_service": "no", + "gps_code": "LSXM" + }, + { + "id": "43118", + "ident": "LSXO", + "type": "heliport", + "name": "St. Gallen-Winkeln Heliport", + "latitude_deg": "47.40549850463867", + "longitude_deg": "9.290300369262695", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-SG", + "municipality": "St. Gallen", + "scheduled_service": "no", + "gps_code": "LSXO", + "home_link": "http://www.tsis.ch/heli/heliport/stgallen-winkeln.php" + }, + { + "id": "43113", + "ident": "LSXP", + "type": "heliport", + "name": "Pfaffnau Heliport", + "latitude_deg": "47.23513", + "longitude_deg": "7.91001", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-LU", + "municipality": "Pfaffnau", + "scheduled_service": "no", + "gps_code": "LSXP", + "home_link": "https://www.swisshelicopter.ch/de/ueber-uns/standorte/pfaffnau" + }, + { + "id": "43116", + "ident": "LSXR", + "type": "heliport", + "name": "Lodrino Heliport", + "latitude_deg": "46.2901725769043", + "longitude_deg": "8.992927551269531", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-TI", + "municipality": "Lodrino", + "scheduled_service": "no", + "gps_code": "LSXR" + }, + { + "id": "43197", + "ident": "LSXS", + "type": "heliport", + "name": "Schindellegi Heliport", + "latitude_deg": "47.169883728027344", + "longitude_deg": "8.715649604797363", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-SZ", + "municipality": "Schindellegi", + "scheduled_service": "no", + "gps_code": "LSXS" + }, + { + "id": "353992", + "ident": "LSXT", + "type": "heliport", + "name": "Trogen Heliport", + "latitude_deg": "47.408977", + "longitude_deg": "9.473074", + "elevation_ft": "2647", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-AR", + "municipality": "Trogen", + "scheduled_service": "no", + "gps_code": "LSXT", + "keywords": "Bleichi" + }, + { + "id": "324197", + "ident": "LSXU", + "type": "heliport", + "name": "Untervaz Heliport", + "latitude_deg": "46.912621", + "longitude_deg": "9.55081", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-GR", + "municipality": "Untervaz", + "scheduled_service": "no", + "gps_code": "LSXU" + }, + { + "id": "30389", + "ident": "LSXV", + "type": "closed", + "name": "San Vittore Airport", + "latitude_deg": "46.2342", + "longitude_deg": "9.09417", + "elevation_ft": "869", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-GR", + "scheduled_service": "no", + "gps_code": "LSXV" + }, + { + "id": "43115", + "ident": "LSXW", + "type": "heliport", + "name": "Würenlingen Heliport", + "latitude_deg": "47.535614013671875", + "longitude_deg": "8.246105194091797", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-AG", + "municipality": "Würenlingen", + "scheduled_service": "no", + "gps_code": "LSXW" + }, + { + "id": "43092", + "ident": "LSXY", + "type": "heliport", + "name": "Leysin Heliport", + "latitude_deg": "46.341801", + "longitude_deg": "7.0204", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-VD", + "municipality": "Leysin", + "scheduled_service": "no", + "gps_code": "LSEY" + }, + { + "id": "4502", + "ident": "LSZA", + "type": "medium_airport", + "name": "Lugano Airport", + "latitude_deg": "46.00429916379999", + "longitude_deg": "8.9105796814", + "elevation_ft": "915", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-TI", + "municipality": "Lugano", + "scheduled_service": "yes", + "gps_code": "LSZA", + "iata_code": "LUG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lugano_Airport" + }, + { + "id": "4503", + "ident": "LSZB", + "type": "medium_airport", + "name": "Bern-Belp Airport", + "latitude_deg": "46.913419", + "longitude_deg": "7.499747", + "elevation_ft": "1671", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-BE", + "municipality": "Bern-Belp", + "scheduled_service": "yes", + "gps_code": "LSZB", + "iata_code": "BRN", + "home_link": "https://www.bernairport.ch/de/", + "wikipedia_link": "https://de.wikipedia.org/wiki/Flughafen_Bern-Belp", + "keywords": "lszb, bern, belp, bern-belp" + }, + { + "id": "46492", + "ident": "LSZC", + "type": "small_airport", + "name": "Buochs Airport", + "latitude_deg": "46.974444", + "longitude_deg": "8.396944", + "elevation_ft": "1475", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-NW", + "municipality": "Buochs", + "scheduled_service": "no", + "gps_code": "LSZC", + "iata_code": "BXO", + "home_link": "http://www.airportbuochs.ch/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buochs_Airport", + "keywords": "LSMU" + }, + { + "id": "30614", + "ident": "LSZD", + "type": "closed", + "name": "Ascona Airport", + "latitude_deg": "46.157799", + "longitude_deg": "8.78194", + "elevation_ft": "655", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-TI", + "municipality": "Ascona", + "scheduled_service": "no", + "keywords": "ACO, LSZD" + }, + { + "id": "29518", + "ident": "LSZE", + "type": "small_airport", + "name": "Bad Ragaz Airport", + "latitude_deg": "47.014904", + "longitude_deg": "9.481815", + "elevation_ft": "1617", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-SG", + "municipality": "Bad Ragaz", + "scheduled_service": "no", + "gps_code": "LSZE" + }, + { + "id": "29519", + "ident": "LSZF", + "type": "small_airport", + "name": "Flugplatz Birrfeld", + "latitude_deg": "47.4436", + "longitude_deg": "8.23361", + "elevation_ft": "1300", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-AG", + "scheduled_service": "no", + "gps_code": "LSZF", + "home_link": "http://www.birrfeld.ch/" + }, + { + "id": "4504", + "ident": "LSZG", + "type": "medium_airport", + "name": "Grenchen Airport", + "latitude_deg": "47.181599", + "longitude_deg": "7.41719", + "elevation_ft": "1411", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-SO", + "municipality": "Grenchen", + "scheduled_service": "no", + "gps_code": "LSZG", + "iata_code": "ZHI", + "home_link": "http://www.airport-grenchen.ch/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grenchen_Airport" + }, + { + "id": "4505", + "ident": "LSZH", + "type": "large_airport", + "name": "Zürich Airport", + "latitude_deg": "47.458056", + "longitude_deg": "8.548056", + "elevation_ft": "1417", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-ZH", + "municipality": "Zurich", + "scheduled_service": "yes", + "gps_code": "LSZH", + "iata_code": "ZRH", + "home_link": "http://www.zurich-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zurich_Airport" + }, + { + "id": "29520", + "ident": "LSZI", + "type": "small_airport", + "name": "Flugplatz Fricktal-Schupfart", + "latitude_deg": "47.5089", + "longitude_deg": "7.95", + "elevation_ft": "1788", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-AG", + "municipality": "Schupfart", + "scheduled_service": "no", + "gps_code": "LSZI" + }, + { + "id": "29521", + "ident": "LSZJ", + "type": "small_airport", + "name": "Courtelary Airport", + "latitude_deg": "47.18360137939453", + "longitude_deg": "7.090829849243164", + "elevation_ft": "2247", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-BE", + "scheduled_service": "no", + "gps_code": "LSZJ" + }, + { + "id": "29522", + "ident": "LSZK", + "type": "small_airport", + "name": "Flugplatz Speck-Fehraltorf", + "latitude_deg": "47.3764", + "longitude_deg": "8.7575", + "elevation_ft": "1748", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-ZH", + "scheduled_service": "no", + "gps_code": "LSZK" + }, + { + "id": "29523", + "ident": "LSZL", + "type": "small_airport", + "name": "Locarno Airport", + "latitude_deg": "46.160800933800004", + "longitude_deg": "8.87860965729", + "elevation_ft": "650", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-TI", + "municipality": "Locarno", + "scheduled_service": "no", + "gps_code": "LSZL", + "iata_code": "ZJI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Locarno_Airport" + }, + { + "id": "29524", + "ident": "LSZN", + "type": "small_airport", + "name": "Flugplatz Hausen am Albis", + "latitude_deg": "47.238602", + "longitude_deg": "8.51556", + "elevation_ft": "1928", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-ZH", + "scheduled_service": "no", + "gps_code": "LSZN", + "home_link": "https://www.fgho.ch/" + }, + { + "id": "29525", + "ident": "LSZO", + "type": "small_airport", + "name": "Flugplatz Beromünster", + "latitude_deg": "47.189999", + "longitude_deg": "8.20472", + "elevation_ft": "2146", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-LU", + "municipality": "Lucerne", + "scheduled_service": "no", + "gps_code": "LSZO", + "home_link": "https://www.flubag.ch", + "wikipedia_link": "https://de.wikipedia.org/wiki/Flugplatz_Luzern-Berom%C3%BCnster" + }, + { + "id": "29526", + "ident": "LSZP", + "type": "small_airport", + "name": "Flugplatz Biel-Kappelen", + "latitude_deg": "47.089199", + "longitude_deg": "7.29", + "elevation_ft": "1437", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-BE", + "scheduled_service": "no", + "gps_code": "LSZP" + }, + { + "id": "300136", + "ident": "LSZQ", + "type": "small_airport", + "name": "Bressaucourt Airport", + "latitude_deg": "47.392677", + "longitude_deg": "7.028648", + "elevation_ft": "1866", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-JU", + "municipality": "Bressaucourt", + "scheduled_service": "no", + "gps_code": "LSZQ", + "home_link": "http://www.aerojura.ch/default.asp" + }, + { + "id": "4506", + "ident": "LSZR", + "type": "medium_airport", + "name": "St Gallen Altenrhein Airport", + "latitude_deg": "47.485001", + "longitude_deg": "9.56077", + "elevation_ft": "1306", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-SG", + "municipality": "Altenrhein", + "scheduled_service": "yes", + "gps_code": "LSZR", + "iata_code": "ACH", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Gallen-Altenrhein_Airport" + }, + { + "id": "4507", + "ident": "LSZS", + "type": "medium_airport", + "name": "Samedan Airport", + "latitude_deg": "46.53409957885742", + "longitude_deg": "9.884110450744629", + "elevation_ft": "5600", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-GR", + "scheduled_service": "no", + "gps_code": "LSZS", + "iata_code": "SMV" + }, + { + "id": "29527", + "ident": "LSZT", + "type": "small_airport", + "name": "Lommis Airfield", + "latitude_deg": "47.524399", + "longitude_deg": "9.00306", + "elevation_ft": "1539", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-TG", + "municipality": "Lommis", + "scheduled_service": "no", + "gps_code": "LSZT", + "home_link": "https://www.mfgt.ch/flugplatz/" + }, + { + "id": "29528", + "ident": "LSZU", + "type": "small_airport", + "name": "Flugplatz Buttwil", + "latitude_deg": "47.264702", + "longitude_deg": "8.3025", + "elevation_ft": "2372", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-AG", + "scheduled_service": "no", + "gps_code": "LSZU" + }, + { + "id": "29529", + "ident": "LSZV", + "type": "small_airport", + "name": "Sportflugplatz Sitterdorf", + "latitude_deg": "47.5089", + "longitude_deg": "9.26278", + "elevation_ft": "1660", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-TG", + "scheduled_service": "no", + "gps_code": "LSZV" + }, + { + "id": "29530", + "ident": "LSZW", + "type": "small_airport", + "name": "Flugplatz Thun", + "latitude_deg": "46.756401", + "longitude_deg": "7.60056", + "elevation_ft": "1837", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-BE", + "municipality": "Thun", + "scheduled_service": "no", + "gps_code": "LSZW", + "home_link": "http://www.thun-airfield.ch", + "keywords": "Thun airport, Flugplatz Thun, FVT" + }, + { + "id": "29531", + "ident": "LSZX", + "type": "small_airport", + "name": "Schänis Airport", + "latitude_deg": "47.1717", + "longitude_deg": "9.03944", + "elevation_ft": "1365", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-SG", + "municipality": "Schänis", + "scheduled_service": "no", + "gps_code": "LSZX" + }, + { + "id": "29532", + "ident": "LSZY", + "type": "closed", + "name": "Porrentruy Airport", + "latitude_deg": "47.4105987549", + "longitude_deg": "7.0516700744600005", + "elevation_ft": "1427", + "continent": "EU", + "iso_country": "CH", + "iso_region": "CH-JU", + "municipality": "Porrentruy", + "scheduled_service": "no", + "gps_code": "LSZY" + }, + { + "id": "43789", + "ident": "LT-0001", + "type": "closed", + "name": "Rūdininkai Air Base", + "latitude_deg": "54.3877067565918", + "longitude_deg": "25.094318389892578", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-VL", + "municipality": "Rūdininkai", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/R%C5%ABdininkai_training_ground" + }, + { + "id": "319597", + "ident": "LT-0002", + "type": "closed", + "name": "Panemunelis Airstrip", + "latitude_deg": "55.92969", + "longitude_deg": "25.41844", + "elevation_ft": "317", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-PN", + "municipality": "Panemunelis", + "scheduled_service": "no" + }, + { + "id": "308907", + "ident": "LT-0003", + "type": "small_airport", + "name": "Trakėnai Airstrip", + "latitude_deg": "54.365886", + "longitude_deg": "23.167256", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-MR", + "scheduled_service": "no", + "keywords": "trakenai,kalvarija" + }, + { + "id": "315671", + "ident": "LT-0004", + "type": "small_airport", + "name": "Kupiškio aerodromas", + "latitude_deg": "55.8529062", + "longitude_deg": "24.957929", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-PN", + "municipality": "Kupiškis", + "scheduled_service": "no" + }, + { + "id": "315676", + "ident": "LT-0005", + "type": "small_airport", + "name": "Pečiulių aerodromas", + "latitude_deg": "55.4936031", + "longitude_deg": "25.1949249", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-UT", + "municipality": "Pečiuliai", + "scheduled_service": "no" + }, + { + "id": "315684", + "ident": "LT-0006", + "type": "small_airport", + "name": "Tauragės Aerodromas", + "latitude_deg": "55.23201", + "longitude_deg": "22.150068", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-TA", + "municipality": "Tauragė", + "scheduled_service": "no", + "gps_code": "EYTR" + }, + { + "id": "320589", + "ident": "LT-0007", + "type": "small_airport", + "name": "Ličiūnai Airstrip", + "latitude_deg": "56.061212", + "longitude_deg": "24.544761", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-PN", + "municipality": "Ličiūnai", + "scheduled_service": "no" + }, + { + "id": "320730", + "ident": "LT-0008", + "type": "small_airport", + "name": "Vilkaviškis Airfield", + "latitude_deg": "54.6880908", + "longitude_deg": "23.0013148", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-U-A", + "scheduled_service": "no" + }, + { + "id": "321000", + "ident": "LT-0009", + "type": "small_airport", + "name": "Naukaimio aerodromas", + "latitude_deg": "55.1313683", + "longitude_deg": "22.9644543", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-U-A", + "municipality": "Naukaimis", + "scheduled_service": "no", + "keywords": "Šilinės,Skirsnemunės" + }, + { + "id": "321001", + "ident": "LT-0010", + "type": "small_airport", + "name": "Griškabūdis Airstrip", + "latitude_deg": "54.8302284", + "longitude_deg": "23.1977712", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-U-A", + "municipality": "Bliuviškiai", + "scheduled_service": "no" + }, + { + "id": "321034", + "ident": "LT-0011", + "type": "small_airport", + "name": "Slikiai Airstrip", + "latitude_deg": "55.2081655", + "longitude_deg": "24.0689348", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-U-A", + "scheduled_service": "no" + }, + { + "id": "321037", + "ident": "LT-0012", + "type": "small_airport", + "name": "Vaski Airstrip", + "latitude_deg": "56.836457", + "longitude_deg": "23.020737", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-099", + "municipality": "Vaski", + "scheduled_service": "no" + }, + { + "id": "321062", + "ident": "LT-0013", + "type": "closed", + "name": "Mediniai Airstrip", + "latitude_deg": "56.2395", + "longitude_deg": "24.600564", + "elevation_ft": "145", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-PN", + "municipality": "Mediniai", + "scheduled_service": "no" + }, + { + "id": "321665", + "ident": "LT-0014", + "type": "small_airport", + "name": "Kalno aerodromas", + "latitude_deg": "55.9841969", + "longitude_deg": "24.3460798", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-U-A", + "municipality": "Kalnas", + "scheduled_service": "no" + }, + { + "id": "321736", + "ident": "LT-0015", + "type": "small_airport", + "name": "Keturvalakiai Airstrip", + "latitude_deg": "54.570783", + "longitude_deg": "23.156836", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-MR", + "scheduled_service": "no" + }, + { + "id": "330632", + "ident": "LT-0016", + "type": "small_airport", + "name": "Kirkliai Airstrip", + "latitude_deg": "55.9251137", + "longitude_deg": "22.5959212", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-TE", + "scheduled_service": "no" + }, + { + "id": "331023", + "ident": "LT-0017", + "type": "small_airport", + "name": "Gėluvos Airstrip", + "latitude_deg": "55.254035", + "longitude_deg": "23.5148404", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-KU", + "scheduled_service": "no" + }, + { + "id": "331211", + "ident": "LT-0018", + "type": "small_airport", + "name": "Valkininkai Airstrip", + "latitude_deg": "54.3756647", + "longitude_deg": "24.8454637", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-AL", + "scheduled_service": "no" + }, + { + "id": "332952", + "ident": "LT-0019", + "type": "small_airport", + "name": "Žeimelis Airstrip", + "latitude_deg": "56.267717", + "longitude_deg": "24.01368", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-SA", + "scheduled_service": "no" + }, + { + "id": "342530", + "ident": "LT-0020", + "type": "small_airport", + "name": "Klebonai Airstrip", + "latitude_deg": "55.50751", + "longitude_deg": "24.41479", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-PN", + "scheduled_service": "no" + }, + { + "id": "346225", + "ident": "LT-0021", + "type": "small_airport", + "name": "Upitėnai Airstrip", + "latitude_deg": "55.60306", + "longitude_deg": "21.62339", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-KL", + "scheduled_service": "no" + }, + { + "id": "346367", + "ident": "LT-0022", + "type": "small_airport", + "name": "Aukštelkai Airfield", + "latitude_deg": "55.863079", + "longitude_deg": "23.62833", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-SA", + "scheduled_service": "no" + }, + { + "id": "346434", + "ident": "LT-0023", + "type": "small_airport", + "name": "Paberžės Aerodromas", + "latitude_deg": "54.98973", + "longitude_deg": "25.27568", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-UT", + "scheduled_service": "no" + }, + { + "id": "346436", + "ident": "LT-0024", + "type": "small_airport", + "name": "Pociūnai Airstrip", + "latitude_deg": "55.59152", + "longitude_deg": "23.96661", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-SA", + "scheduled_service": "no" + }, + { + "id": "346841", + "ident": "LT-0025", + "type": "small_airport", + "name": "Bistrampolis Airfield", + "latitude_deg": "55.59597", + "longitude_deg": "24.36418", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-PN", + "scheduled_service": "no" + }, + { + "id": "347931", + "ident": "LT-0026", + "type": "small_airport", + "name": "Dainava Airstrip", + "latitude_deg": "54.32387", + "longitude_deg": "25.24008", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-VL", + "scheduled_service": "no" + }, + { + "id": "348253", + "ident": "LT-0027", + "type": "small_airport", + "name": "Ėriškiai Airstrip", + "latitude_deg": "55.57675", + "longitude_deg": "24.26939", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-PN", + "scheduled_service": "no" + }, + { + "id": "348585", + "ident": "LT-0028", + "type": "small_airport", + "name": "Balbieriškis airstrip", + "latitude_deg": "54.53103", + "longitude_deg": "23.84071", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-KU", + "scheduled_service": "no" + }, + { + "id": "348868", + "ident": "LT-0029", + "type": "small_airport", + "name": "Dievogala Airstrip", + "latitude_deg": "54.85452", + "longitude_deg": "23.74284", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-KU", + "scheduled_service": "no" + }, + { + "id": "430368", + "ident": "LT-0030", + "type": "small_airport", + "name": "Norkaičiai Airstrip", + "latitude_deg": "55.29042", + "longitude_deg": "22.26759", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-TA", + "scheduled_service": "no" + }, + { + "id": "35053", + "ident": "LT-9517", + "type": "closed", + "name": "Paliepiai Air Base", + "latitude_deg": "55.321701", + "longitude_deg": "23.52", + "elevation_ft": "354", + "continent": "EU", + "iso_country": "LT", + "iso_region": "LT-KU", + "municipality": "Kedainiai", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paliepiai" + }, + { + "id": "6408", + "ident": "LT86", + "type": "small_airport", + "name": "Gökçeada Airport", + "latitude_deg": "40.204498", + "longitude_deg": "25.883302", + "elevation_ft": "73", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-17", + "municipality": "Gökçeada", + "scheduled_service": "no", + "gps_code": "LTFK", + "iata_code": "GKD", + "local_code": "LTFK", + "wikipedia_link": "https://en.wikipedia.org/wiki/G%C3%B6k%C3%A7eada_Airport", + "keywords": "Imbros, İmroz" + }, + { + "id": "4508", + "ident": "LTAB", + "type": "small_airport", + "name": "Güvercinlik Airport", + "latitude_deg": "39.9350013733", + "longitude_deg": "32.7407989502", + "elevation_ft": "2687", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-06", + "municipality": "Ankara", + "scheduled_service": "no", + "gps_code": "LTAB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ankara_G%C3%BCvercinlik_Army_Air_Base" + }, + { + "id": "4509", + "ident": "LTAC", + "type": "large_airport", + "name": "Esenboğa International Airport", + "latitude_deg": "40.128101348899996", + "longitude_deg": "32.995098114", + "elevation_ft": "3125", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-06", + "municipality": "Ankara", + "scheduled_service": "yes", + "gps_code": "LTAC", + "iata_code": "ESB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Esenbo%C4%9Fa_International_Airport" + }, + { + "id": "4510", + "ident": "LTAD", + "type": "medium_airport", + "name": "Etimesgut Air Base", + "latitude_deg": "39.949798584", + "longitude_deg": "32.6885986328", + "elevation_ft": "2653", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-06", + "municipality": "Ankara", + "scheduled_service": "no", + "gps_code": "LTAD", + "iata_code": "ANK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Etimesgut_Air_Base" + }, + { + "id": "4511", + "ident": "LTAE", + "type": "medium_airport", + "name": "Akıncı Air Base", + "latitude_deg": "40.078899383499994", + "longitude_deg": "32.5656013489", + "elevation_ft": "2767", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-06", + "municipality": "Ankara", + "scheduled_service": "no", + "gps_code": "LTAE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ak%C4%B1nc%C4%B1_Air_Base", + "keywords": "Akinci, Mürted, Murted" + }, + { + "id": "4512", + "ident": "LTAF", + "type": "medium_airport", + "name": "Adana Şakirpaşa Airport", + "latitude_deg": "36.982201", + "longitude_deg": "35.280399", + "elevation_ft": "65", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-01", + "municipality": "Seyhan", + "scheduled_service": "yes", + "gps_code": "LTAF", + "iata_code": "ADA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Adana_%C5%9Eakirpa%C5%9Fa_Airport", + "keywords": "Şakirpaşa, Sakirpasa" + }, + { + "id": "4513", + "ident": "LTAG", + "type": "medium_airport", + "name": "İncirlik Air Base", + "latitude_deg": "37.002102", + "longitude_deg": "35.4259", + "elevation_ft": "238", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-01", + "municipality": "Sarıçam", + "scheduled_service": "no", + "gps_code": "LTAG", + "iata_code": "UAB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Incirlik_Air_Base" + }, + { + "id": "4514", + "ident": "LTAH", + "type": "medium_airport", + "name": "Afyon Air Base", + "latitude_deg": "38.726398", + "longitude_deg": "30.601101", + "elevation_ft": "3310", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-03", + "municipality": "Afyonkarahisar", + "scheduled_service": "no", + "gps_code": "LTAH", + "iata_code": "AFY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Afyon_Airport", + "keywords": "Afyonkarahisar" + }, + { + "id": "4515", + "ident": "LTAI", + "type": "large_airport", + "name": "Antalya International Airport", + "latitude_deg": "36.898701", + "longitude_deg": "30.800501", + "elevation_ft": "177", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-07", + "municipality": "Antalya", + "scheduled_service": "yes", + "gps_code": "LTAI", + "iata_code": "AYT", + "home_link": "http://www.antalya.dhmi.gov.tr/havaalanlari/default.aspx?hv=4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Antalya_Airport" + }, + { + "id": "4516", + "ident": "LTAJ", + "type": "medium_airport", + "name": "Gaziantep International Airport", + "latitude_deg": "36.947201", + "longitude_deg": "37.478699", + "elevation_ft": "2315", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-27", + "municipality": "Gaziantep", + "scheduled_service": "yes", + "gps_code": "LTAJ", + "iata_code": "GZT", + "wikipedia_link": "https://en.wikipedia.org/wiki/O%C4%9Fuzeli_Airport" + }, + { + "id": "4517", + "ident": "LTAK", + "type": "closed", + "name": "İskenderun Airport", + "latitude_deg": "36.5744552612", + "longitude_deg": "36.1534194946", + "elevation_ft": "25", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "İskenderun", + "scheduled_service": "no", + "gps_code": "LTAK", + "local_code": "ISK", + "keywords": "Antakya, Antioch" + }, + { + "id": "30013", + "ident": "LTAL", + "type": "medium_airport", + "name": "Kastamonu Airport", + "latitude_deg": "41.314201", + "longitude_deg": "33.795799", + "elevation_ft": "3520", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-37", + "municipality": "Kastamonu", + "scheduled_service": "no", + "gps_code": "LTAL", + "iata_code": "KFS" + }, + { + "id": "44777", + "ident": "LTAM", + "type": "closed", + "name": "Kayseri Airport", + "latitude_deg": "38.40629959106445", + "longitude_deg": "35.32780075073242", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-38", + "municipality": "Develi", + "scheduled_service": "no", + "gps_code": "LTAM" + }, + { + "id": "4518", + "ident": "LTAN", + "type": "medium_airport", + "name": "Konya Airport", + "latitude_deg": "37.979", + "longitude_deg": "32.561901", + "elevation_ft": "3392", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-42", + "municipality": "Konya", + "scheduled_service": "yes", + "gps_code": "LTAN", + "iata_code": "KYA", + "home_link": "http://www.konya.dhmi.gov.tr/havaalanlari/default.aspx?hv=28", + "wikipedia_link": "https://en.wikipedia.org/wiki/Konya_Airport" + }, + { + "id": "4519", + "ident": "LTAO", + "type": "small_airport", + "name": "Malatya Tulga Airport", + "latitude_deg": "38.353699", + "longitude_deg": "38.253899", + "elevation_ft": "3016", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-44", + "municipality": "Malatya", + "scheduled_service": "yes", + "gps_code": "LTAO" + }, + { + "id": "4520", + "ident": "LTAP", + "type": "small_airport", + "name": "Amasya Merzifon Airport", + "latitude_deg": "40.829399", + "longitude_deg": "35.521999", + "elevation_ft": "1758", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-05", + "municipality": "Amasya", + "scheduled_service": "yes", + "gps_code": "LTAP", + "iata_code": "MZH", + "home_link": "http://www.merzifon.dhmi.gov.tr/havaalanlari/default.aspx?hv=15", + "wikipedia_link": "https://en.wikipedia.org/wiki/Merzifon_Airport" + }, + { + "id": "32386", + "ident": "LTAQ", + "type": "closed", + "name": "Samsun Samair Airport", + "latitude_deg": "41.278645", + "longitude_deg": "36.30518", + "elevation_ft": "521", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-55", + "municipality": "Samsun", + "scheduled_service": "no", + "gps_code": "LTAQ" + }, + { + "id": "4521", + "ident": "LTAR", + "type": "small_airport", + "name": "Sivas Nuri Demirağ Airport", + "latitude_deg": "39.813801", + "longitude_deg": "36.9035", + "elevation_ft": "5239", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-58", + "municipality": "Sivas", + "scheduled_service": "yes", + "gps_code": "LTAR", + "iata_code": "VAS", + "home_link": "http://www.sivas.dhmi.gov.tr/havaalanlari/default.aspx?hv=35", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sivas_Airport" + }, + { + "id": "30585", + "ident": "LTAS", + "type": "medium_airport", + "name": "Zonguldak Çaycuma Airport", + "latitude_deg": "41.506401", + "longitude_deg": "32.0886", + "elevation_ft": "44", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-67", + "municipality": "Zonguldak", + "scheduled_service": "yes", + "gps_code": "LTAS", + "iata_code": "ONQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zonguldak_Airport" + }, + { + "id": "4522", + "ident": "LTAT", + "type": "medium_airport", + "name": "Malatya Erhaç Airport", + "latitude_deg": "38.435298919699996", + "longitude_deg": "38.0909996033", + "elevation_ft": "2828", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-44", + "municipality": "Malatya", + "scheduled_service": "yes", + "gps_code": "LTAT", + "iata_code": "MLX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Erha%C3%A7_Airport" + }, + { + "id": "4523", + "ident": "LTAU", + "type": "medium_airport", + "name": "Kayseri Erkilet Airport", + "latitude_deg": "38.770401001", + "longitude_deg": "35.4953994751", + "elevation_ft": "3463", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-38", + "municipality": "Kayseri", + "scheduled_service": "yes", + "gps_code": "LTAU", + "iata_code": "ASR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Erkilet_Airport" + }, + { + "id": "4524", + "ident": "LTAV", + "type": "medium_airport", + "name": "Sivrihisar Airport", + "latitude_deg": "39.451499938964844", + "longitude_deg": "31.365299224853516", + "elevation_ft": "3185", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-26", + "municipality": "Sivrihisar", + "scheduled_service": "no", + "gps_code": "LTAV" + }, + { + "id": "4525", + "ident": "LTAW", + "type": "medium_airport", + "name": "Tokat Airport", + "latitude_deg": "40.307430267333984", + "longitude_deg": "36.367408752441406", + "elevation_ft": "1831", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-60", + "municipality": "Tokat", + "scheduled_service": "yes", + "gps_code": "LTAW", + "iata_code": "TJK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tokat_Airport" + }, + { + "id": "29854", + "ident": "LTAX", + "type": "closed", + "name": "Ereğli Erdemir Airport", + "latitude_deg": "41.251399993896484", + "longitude_deg": "31.41080093383789", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-67", + "municipality": "Eregli", + "scheduled_service": "no", + "gps_code": "LTAX" + }, + { + "id": "4526", + "ident": "LTAY", + "type": "medium_airport", + "name": "Çardak Airport", + "latitude_deg": "37.7855987549", + "longitude_deg": "29.7012996674", + "elevation_ft": "2795", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-20", + "municipality": "Denizli", + "scheduled_service": "yes", + "gps_code": "LTAY", + "iata_code": "DNZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%87ardak_Airport" + }, + { + "id": "4527", + "ident": "LTAZ", + "type": "small_airport", + "name": "Nevşehir Kapadokya Airport", + "latitude_deg": "38.7719", + "longitude_deg": "34.5345", + "elevation_ft": "3100", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-50", + "municipality": "Nevşehir", + "scheduled_service": "yes", + "gps_code": "LTAZ", + "iata_code": "NAV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nev%C5%9Fehir_Kapadokya_Airport" + }, + { + "id": "298786", + "ident": "LTB", + "type": "closed", + "name": "Latrobe Airport", + "latitude_deg": "-41.235188030699994", + "longitude_deg": "146.396169662", + "elevation_ft": "12", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Latrobe", + "scheduled_service": "no", + "iata_code": "LTB" + }, + { + "id": "4528", + "ident": "LTBA", + "type": "large_airport", + "name": "İstanbul Atatürk Airport", + "latitude_deg": "40.971913", + "longitude_deg": "28.823714", + "elevation_ft": "163", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Bakırköy, Istanbul", + "scheduled_service": "yes", + "gps_code": "LTBA", + "iata_code": "ISL", + "home_link": "http://www.ataturkairport.com/eng/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Istanbul_Atat%C3%BCrk_Airport", + "keywords": "Ataturk, Yeşilköy, Yesilkoy" + }, + { + "id": "44779", + "ident": "LTBC", + "type": "small_airport", + "name": "Alaşehir Airport", + "latitude_deg": "38.369998931884766", + "longitude_deg": "28.557100296020508", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-45", + "municipality": "Alaşehir", + "scheduled_service": "no", + "gps_code": "LTBC" + }, + { + "id": "29675", + "ident": "LTBD", + "type": "small_airport", + "name": "Çıldır Airport", + "latitude_deg": "37.8149986267", + "longitude_deg": "27.895299911499997", + "elevation_ft": "102", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-09", + "municipality": "Aydın", + "scheduled_service": "no", + "gps_code": "LTBD", + "iata_code": "CII", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ayd%C4%B1n_Airport" + }, + { + "id": "29743", + "ident": "LTBE", + "type": "small_airport", + "name": "Bursa Airport", + "latitude_deg": "40.233299", + "longitude_deg": "29.009199", + "elevation_ft": "331", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-16", + "municipality": "Bursa", + "scheduled_service": "no", + "gps_code": "LTBE", + "keywords": "BTZ" + }, + { + "id": "4529", + "ident": "LTBF", + "type": "medium_airport", + "name": "Balıkesir Merkez Airport", + "latitude_deg": "39.619300842285156", + "longitude_deg": "27.926000595092773", + "elevation_ft": "340", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-10", + "scheduled_service": "yes", + "gps_code": "LTBF", + "iata_code": "BZI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bal%C4%B1kesir_Airport" + }, + { + "id": "4530", + "ident": "LTBG", + "type": "medium_airport", + "name": "Bandırma Airport", + "latitude_deg": "40.318001", + "longitude_deg": "27.977699", + "elevation_ft": "170", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-10", + "municipality": "Bandırma", + "scheduled_service": "no", + "gps_code": "LTBG", + "iata_code": "BDM" + }, + { + "id": "4531", + "ident": "LTBH", + "type": "medium_airport", + "name": "Çanakkale Airport", + "latitude_deg": "40.1376991272", + "longitude_deg": "26.4267997742", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-17", + "municipality": "Çanakkale", + "scheduled_service": "yes", + "gps_code": "LTBH", + "iata_code": "CKZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%87anakkale_Airport" + }, + { + "id": "4532", + "ident": "LTBI", + "type": "medium_airport", + "name": "Eskişehir Air Base", + "latitude_deg": "39.7840995789", + "longitude_deg": "30.582099914599997", + "elevation_ft": "2581", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-26", + "scheduled_service": "no", + "gps_code": "LTBI", + "iata_code": "ESK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eski%C5%9Fehir_Airport" + }, + { + "id": "4533", + "ident": "LTBJ", + "type": "large_airport", + "name": "Adnan Menderes International Airport", + "latitude_deg": "38.2924", + "longitude_deg": "27.157", + "elevation_ft": "412", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-35", + "municipality": "İzmir", + "scheduled_service": "yes", + "gps_code": "LTBJ", + "iata_code": "ADB", + "home_link": "http://www.adnanmenderesairport.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Adnan_Menderes_Airport" + }, + { + "id": "4534", + "ident": "LTBK", + "type": "small_airport", + "name": "Gaziemir Air Base", + "latitude_deg": "38.319099", + "longitude_deg": "27.159401", + "elevation_ft": "433", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-35", + "municipality": "Gaziemir", + "scheduled_service": "no", + "gps_code": "LTBK" + }, + { + "id": "4535", + "ident": "LTBL", + "type": "medium_airport", + "name": "Çiğli Airport", + "latitude_deg": "38.513", + "longitude_deg": "27.010099", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-35", + "municipality": "Kaklıç Mahallesi", + "scheduled_service": "no", + "gps_code": "LTBL", + "iata_code": "IGL", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%87i%C4%9Fli_Air_Base" + }, + { + "id": "4536", + "ident": "LTBM", + "type": "small_airport", + "name": "Isparta Airport", + "latitude_deg": "37.78512191772461", + "longitude_deg": "30.59001922607422", + "elevation_ft": "3250", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-32", + "scheduled_service": "no", + "gps_code": "LTBM" + }, + { + "id": "4537", + "ident": "LTBN", + "type": "small_airport", + "name": "Kütahya Airport", + "latitude_deg": "39.426700592041016", + "longitude_deg": "30.01689910888672", + "elevation_ft": "3026", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-43", + "municipality": "Kütahya", + "scheduled_service": "no", + "gps_code": "LTBN" + }, + { + "id": "4538", + "ident": "LTBO", + "type": "small_airport", + "name": "Uşak Airport", + "latitude_deg": "38.68149948120117", + "longitude_deg": "29.47170066833496", + "elevation_ft": "2897", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-64", + "municipality": "Uşak", + "scheduled_service": "yes", + "gps_code": "LTBO", + "iata_code": "USQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/U%C5%9Fak_Airport" + }, + { + "id": "4539", + "ident": "LTBP", + "type": "small_airport", + "name": "Yalova Airport", + "latitude_deg": "40.68439865112305", + "longitude_deg": "29.375699996948242", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-77", + "municipality": "Çiftlikköy", + "scheduled_service": "no", + "gps_code": "LTBP" + }, + { + "id": "4540", + "ident": "LTBQ", + "type": "medium_airport", + "name": "Cengiz Topel Airport", + "latitude_deg": "40.735001", + "longitude_deg": "30.0833", + "elevation_ft": "182", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-41", + "municipality": "Kartepe", + "scheduled_service": "no", + "gps_code": "LTBQ", + "iata_code": "KCO" + }, + { + "id": "4541", + "ident": "LTBR", + "type": "medium_airport", + "name": "Bursa Yenişehir Airport", + "latitude_deg": "40.2551994324", + "longitude_deg": "29.5625991821", + "elevation_ft": "764", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-16", + "municipality": "Bursa", + "scheduled_service": "yes", + "gps_code": "LTBR", + "iata_code": "YEI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yeni%C5%9Fehir_Airport" + }, + { + "id": "4542", + "ident": "LTBS", + "type": "large_airport", + "name": "Dalaman International Airport", + "latitude_deg": "36.7131004333", + "longitude_deg": "28.7924995422", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-48", + "municipality": "Dalaman", + "scheduled_service": "yes", + "gps_code": "LTBS", + "iata_code": "DLM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dalaman_Airport" + }, + { + "id": "4543", + "ident": "LTBT", + "type": "medium_airport", + "name": "Akhisar Airport", + "latitude_deg": "38.80889892578125", + "longitude_deg": "27.833900451660156", + "elevation_ft": "263", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-45", + "scheduled_service": "no", + "gps_code": "LTBT" + }, + { + "id": "4544", + "ident": "LTBU", + "type": "medium_airport", + "name": "Tekirdağ Çorlu Airport", + "latitude_deg": "41.13819885253906", + "longitude_deg": "27.919099807739258", + "elevation_ft": "574", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-59", + "municipality": "Çorlu", + "scheduled_service": "yes", + "gps_code": "LTBU", + "iata_code": "TEQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tekirda%C4%9F_%C3%87orlu_Airport" + }, + { + "id": "4545", + "ident": "LTBV", + "type": "small_airport", + "name": "Bodrum-Imsık Airport", + "latitude_deg": "37.140099", + "longitude_deg": "27.669701", + "elevation_ft": "202", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-48", + "municipality": "Imsık", + "scheduled_service": "no", + "gps_code": "LTBV", + "iata_code": "BXN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bodrum-Imsik_Airport" + }, + { + "id": "29981", + "ident": "LTBW", + "type": "small_airport", + "name": "İstanbul Hezarfen Airfield", + "latitude_deg": "41.1036", + "longitude_deg": "28.547701", + "elevation_ft": "57", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Çatalca", + "scheduled_service": "no", + "gps_code": "LTBW", + "home_link": "http://www.hezarfen.com.tr/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Istanbul_Hezarfen_Airfield", + "keywords": "Istanbul Hezarfen Havaalanı" + }, + { + "id": "4546", + "ident": "LTBX", + "type": "medium_airport", + "name": "İstanbul Samandıra Army Air Base", + "latitude_deg": "40.993", + "longitude_deg": "29.216499", + "elevation_ft": "400", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Ümraniye, Istanbul", + "scheduled_service": "no", + "gps_code": "LTBX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Istanbul_Samand%C4%B1ra_Army_Air_Base" + }, + { + "id": "4547", + "ident": "LTBY", + "type": "medium_airport", + "name": "Anadolu Airport", + "latitude_deg": "39.809898", + "longitude_deg": "30.5194", + "elevation_ft": "2588", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-26", + "municipality": "Eskişehir", + "scheduled_service": "yes", + "gps_code": "LTBY", + "iata_code": "AOE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anadolu_Airport" + }, + { + "id": "44490", + "ident": "LTBZ", + "type": "small_airport", + "name": "Zafer Airport", + "latitude_deg": "39.113079", + "longitude_deg": "30.128111", + "elevation_ft": "3327", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-43", + "municipality": "Altıntaş", + "scheduled_service": "yes", + "gps_code": "LTBZ", + "iata_code": "KZR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zafer_Airport" + }, + { + "id": "4548", + "ident": "LTCA", + "type": "medium_airport", + "name": "Elazığ Airport", + "latitude_deg": "38.597974", + "longitude_deg": "39.28348", + "elevation_ft": "2927", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-23", + "municipality": "Elazığ", + "scheduled_service": "yes", + "gps_code": "LTCA", + "iata_code": "EZS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elaz%C4%B1%C4%9F_Airport" + }, + { + "id": "44789", + "ident": "LTCB", + "type": "medium_airport", + "name": "Ordu–Giresun Airport", + "latitude_deg": "40.966872", + "longitude_deg": "38.085995", + "elevation_ft": "11", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-52", + "municipality": "Ordu", + "scheduled_service": "yes", + "gps_code": "LTCB", + "iata_code": "OGU", + "local_code": "OGU", + "home_link": "http://www.dhmi.gov.tr/havaalanlari.aspx?hv=54", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ordu%E2%80%93Giresun_Airport" + }, + { + "id": "4549", + "ident": "LTCC", + "type": "medium_airport", + "name": "Diyarbakır Airport", + "latitude_deg": "37.893902", + "longitude_deg": "40.201", + "elevation_ft": "2251", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-21", + "municipality": "Diyarbakır", + "scheduled_service": "yes", + "gps_code": "LTCC", + "iata_code": "DIY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Diyarbak%C4%B1r_Airport" + }, + { + "id": "4550", + "ident": "LTCD", + "type": "medium_airport", + "name": "Erzincan Airport", + "latitude_deg": "39.7102012634", + "longitude_deg": "39.527000427199994", + "elevation_ft": "3783", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-24", + "municipality": "Erzincan", + "scheduled_service": "yes", + "gps_code": "LTCD", + "iata_code": "ERC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Erzincan_Airport" + }, + { + "id": "4551", + "ident": "LTCE", + "type": "medium_airport", + "name": "Erzurum International Airport", + "latitude_deg": "39.956501", + "longitude_deg": "41.1702", + "elevation_ft": "5763", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-25", + "municipality": "Erzurum", + "scheduled_service": "yes", + "gps_code": "LTCE", + "iata_code": "ERZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Erzurum_Airport" + }, + { + "id": "4552", + "ident": "LTCF", + "type": "medium_airport", + "name": "Kars Airport", + "latitude_deg": "40.562198638916016", + "longitude_deg": "43.1150016784668", + "elevation_ft": "5889", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-36", + "municipality": "Kars", + "scheduled_service": "yes", + "gps_code": "LTCF", + "iata_code": "KSY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kars_Airport" + }, + { + "id": "4553", + "ident": "LTCG", + "type": "medium_airport", + "name": "Trabzon International Airport", + "latitude_deg": "40.995098", + "longitude_deg": "39.7897", + "elevation_ft": "104", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-61", + "municipality": "Trabzon", + "scheduled_service": "yes", + "gps_code": "LTCG", + "iata_code": "TZX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trabzon_Airport" + }, + { + "id": "4554", + "ident": "LTCH", + "type": "closed", + "name": "Şanlıurfa Airport", + "latitude_deg": "37.094299", + "longitude_deg": "38.847099", + "elevation_ft": "1483", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-63", + "municipality": "Şanlıurfa", + "scheduled_service": "yes", + "gps_code": "LTCH", + "iata_code": "SFQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C5%9Eanl%C4%B1urfa_Airport" + }, + { + "id": "4555", + "ident": "LTCI", + "type": "medium_airport", + "name": "Van Ferit Melen Airport", + "latitude_deg": "38.46820068359375", + "longitude_deg": "43.332298278808594", + "elevation_ft": "5480", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-65", + "municipality": "Van", + "scheduled_service": "yes", + "gps_code": "LTCI", + "iata_code": "VAN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ferit_Melen_Airport" + }, + { + "id": "4556", + "ident": "LTCJ", + "type": "medium_airport", + "name": "Batman Airport", + "latitude_deg": "37.929000854499996", + "longitude_deg": "41.1166000366", + "elevation_ft": "1822", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-72", + "municipality": "Batman", + "scheduled_service": "yes", + "gps_code": "LTCJ", + "iata_code": "BAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Batman_Airport" + }, + { + "id": "4557", + "ident": "LTCK", + "type": "medium_airport", + "name": "Muş Airport", + "latitude_deg": "38.747798919677734", + "longitude_deg": "41.66120147705078", + "elevation_ft": "4157", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-49", + "municipality": "Muş", + "scheduled_service": "yes", + "gps_code": "LTCK", + "iata_code": "MSR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mu%C5%9F_Airport" + }, + { + "id": "4558", + "ident": "LTCL", + "type": "medium_airport", + "name": "Siirt Airport", + "latitude_deg": "37.97890090942383", + "longitude_deg": "41.84040069580078", + "elevation_ft": "2001", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-56", + "municipality": "Siirt", + "scheduled_service": "no", + "gps_code": "LTCL", + "iata_code": "SXZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Siirt_Airport" + }, + { + "id": "30418", + "ident": "LTCM", + "type": "medium_airport", + "name": "Sinop Airport", + "latitude_deg": "42.018313", + "longitude_deg": "35.071774", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-57", + "municipality": "Sinop", + "scheduled_service": "yes", + "gps_code": "LTCM", + "iata_code": "NOP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sinop_Airport", + "keywords": "SIC" + }, + { + "id": "4559", + "ident": "LTCN", + "type": "medium_airport", + "name": "Kahramanmaraş Airport", + "latitude_deg": "37.5388259888", + "longitude_deg": "36.9535217285", + "elevation_ft": "1723", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-46", + "municipality": "Kahramanmaraş", + "scheduled_service": "yes", + "gps_code": "LTCN", + "iata_code": "KCM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kahramanmara%C5%9F_Airport" + }, + { + "id": "4560", + "ident": "LTCO", + "type": "medium_airport", + "name": "Ağrı Airport", + "latitude_deg": "39.655642", + "longitude_deg": "43.025742", + "elevation_ft": "5462", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-04", + "municipality": "Ağrı", + "scheduled_service": "yes", + "gps_code": "LTCO", + "iata_code": "AJI", + "wikipedia_link": "https://en.wikipedia.org/wiki/A%C4%9Fr%C4%B1_Airport" + }, + { + "id": "4561", + "ident": "LTCP", + "type": "medium_airport", + "name": "Adıyaman Airport", + "latitude_deg": "37.7314", + "longitude_deg": "38.468899", + "elevation_ft": "2216", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-02", + "municipality": "Adıyaman", + "scheduled_service": "yes", + "gps_code": "LTCP", + "iata_code": "ADF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ad%C4%B1yaman_Airport" + }, + { + "id": "4562", + "ident": "LTCR", + "type": "medium_airport", + "name": "Mardin Airport", + "latitude_deg": "37.223300933800004", + "longitude_deg": "40.6316986084", + "elevation_ft": "1729", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-47", + "municipality": "Mardin", + "scheduled_service": "yes", + "gps_code": "LTCR", + "iata_code": "MQM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mardin_Airport" + }, + { + "id": "44491", + "ident": "LTCS", + "type": "medium_airport", + "name": "Şanlıurfa GAP Airport", + "latitude_deg": "37.445663", + "longitude_deg": "38.895592", + "elevation_ft": "2708", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-63", + "municipality": "Şanlıurfa", + "scheduled_service": "yes", + "gps_code": "LTCS", + "iata_code": "GNY", + "home_link": "http://gap.dhmi.gov.tr/havaalanlari/home.aspx?hv=36", + "wikipedia_link": "https://en.wikipedia.org/wiki/Şanlıurfa_GAP_Airport" + }, + { + "id": "44790", + "ident": "LTCT", + "type": "medium_airport", + "name": "Iğdır Airport", + "latitude_deg": "39.976627", + "longitude_deg": "43.876648", + "elevation_ft": "3101", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-76", + "municipality": "Iğdır", + "scheduled_service": "yes", + "gps_code": "LTCT", + "iata_code": "IGD", + "home_link": "http://igdır.dhmi.gov.tr/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iğdır_Airport" + }, + { + "id": "316546", + "ident": "LTCV", + "type": "medium_airport", + "name": "Şırnak Şerafettin Elçi Airport", + "latitude_deg": "37.3647", + "longitude_deg": "42.0582", + "elevation_ft": "2038", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-73", + "municipality": "Şırnak", + "scheduled_service": "yes", + "gps_code": "LTCV", + "iata_code": "NKT", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C5%9E%C4%B1rnak_Airport" + }, + { + "id": "317863", + "ident": "LTCW", + "type": "medium_airport", + "name": "Hakkari Yüksekova Airport", + "latitude_deg": "37.5497", + "longitude_deg": "44.2381", + "elevation_ft": "6400", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-30", + "municipality": "Hakkari", + "scheduled_service": "yes", + "gps_code": "LTCW", + "iata_code": "YKO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hakkari_Y%C3%BCksekova_Airport" + }, + { + "id": "44484", + "ident": "LTDA", + "type": "medium_airport", + "name": "Hatay Airport", + "latitude_deg": "36.362778", + "longitude_deg": "36.282223", + "elevation_ft": "269", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Antakya", + "scheduled_service": "yes", + "gps_code": "LTDA", + "iata_code": "HTY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hatay_Airport", + "keywords": "hatay,antakya,samandag" + }, + { + "id": "313850", + "ident": "LTF", + "type": "small_airport", + "name": "Leitre Airport", + "latitude_deg": "-2.8337", + "longitude_deg": "141.6257", + "elevation_ft": "32", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Leitre", + "scheduled_service": "no", + "iata_code": "LTF", + "local_code": "LRE" + }, + { + "id": "4563", + "ident": "LTFA", + "type": "small_airport", + "name": "Kaklıç Airport", + "latitude_deg": "38.517601", + "longitude_deg": "26.9774", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-35", + "municipality": "Tuzçullu Mahallesi", + "scheduled_service": "no", + "gps_code": "LTFA" + }, + { + "id": "4564", + "ident": "LTFB", + "type": "small_airport", + "name": "Selçuk Efes Airport", + "latitude_deg": "37.95069885253906", + "longitude_deg": "27.32900047302246", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-35", + "municipality": "Selçuk", + "scheduled_service": "no", + "gps_code": "LTFB" + }, + { + "id": "4565", + "ident": "LTFC", + "type": "medium_airport", + "name": "Süleyman Demirel International Airport", + "latitude_deg": "37.8554", + "longitude_deg": "30.368401", + "elevation_ft": "2835", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-32", + "municipality": "Isparta", + "scheduled_service": "yes", + "gps_code": "LTFC", + "iata_code": "ISE", + "home_link": "http://www.dhmi.gov.tr/dosyalar/limanvemeydanlar/sdemirel/sdemirel.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/S%C3%BCleyman_Demirel_Airport" + }, + { + "id": "4566", + "ident": "LTFD", + "type": "medium_airport", + "name": "Balıkesir Koca Seyit Airport", + "latitude_deg": "39.5546", + "longitude_deg": "27.0138", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-10", + "municipality": "Edremit", + "scheduled_service": "yes", + "gps_code": "LTFD", + "iata_code": "EDO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bal%C4%B1kesir_Koca_Seyit_Airport" + }, + { + "id": "4567", + "ident": "LTFE", + "type": "large_airport", + "name": "Milas Bodrum International Airport", + "latitude_deg": "37.25059890749999", + "longitude_deg": "27.6643009186", + "elevation_ft": "21", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-48", + "municipality": "Bodrum", + "scheduled_service": "yes", + "gps_code": "LTFE", + "iata_code": "BJV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Milas-Bodrum_Airport" + }, + { + "id": "44487", + "ident": "LTFG", + "type": "medium_airport", + "name": "Gazipaşa-Alanya Airport", + "latitude_deg": "36.299217", + "longitude_deg": "32.300598", + "elevation_ft": "92", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-07", + "municipality": "Gazipaşa", + "scheduled_service": "yes", + "gps_code": "LTFG", + "iata_code": "GZP", + "home_link": "http://www.gzpairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gazipa%C5%9Fa_Airport" + }, + { + "id": "4568", + "ident": "LTFH", + "type": "medium_airport", + "name": "Samsun-Çarşamba Airport", + "latitude_deg": "41.254501", + "longitude_deg": "36.567101", + "elevation_ft": "18", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-55", + "municipality": "Samsun", + "scheduled_service": "yes", + "gps_code": "LTFH", + "iata_code": "SZF", + "home_link": "http://www.carsamba.dhmi.gov.tr/havaalanlari/default.aspx?hv=32", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%87ar%C5%9Famba_Airport" + }, + { + "id": "4569", + "ident": "LTFJ", + "type": "large_airport", + "name": "Istanbul Sabiha Gökçen International Airport", + "latitude_deg": "40.898602", + "longitude_deg": "29.3092", + "elevation_ft": "312", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Pendik, Istanbul", + "scheduled_service": "yes", + "gps_code": "LTFJ", + "iata_code": "SAW", + "home_link": "http://www.sgairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Istanbul_Sabiha_G%C3%B6k%C3%A7en_International_Airport", + "keywords": "Sabiha Gökçen Havalimanı" + }, + { + "id": "317457", + "ident": "LTFM", + "type": "large_airport", + "name": "İstanbul Airport", + "latitude_deg": "41.261297", + "longitude_deg": "28.741951", + "elevation_ft": "325", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Arnavutköy, Istanbul", + "scheduled_service": "yes", + "gps_code": "LTFM", + "iata_code": "IST", + "home_link": "http://www.igairport.com/en", + "wikipedia_link": "https://en.wikipedia.org/wiki/Istanbul_Airport" + }, + { + "id": "313849", + "ident": "LTH", + "type": "closed", + "name": "Lathrop Wells Airport / Jackass Aeropark", + "latitude_deg": "36.6342", + "longitude_deg": "-116.4135", + "elevation_ft": "2650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Amargosa Valley", + "scheduled_service": "no", + "iata_code": "LTH", + "local_code": "U75", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jackass_Aeropark" + }, + { + "id": "355199", + "ident": "LTHA", + "type": "heliport", + "name": "Ufuk Danişmend Polis Heliportu", + "latitude_deg": "39.803611", + "longitude_deg": "32.844167", + "elevation_ft": "2694", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-06", + "municipality": "Gölbaşı", + "scheduled_service": "no", + "gps_code": "LTHA", + "local_code": "GBS", + "wikipedia_link": "https://tr.wikipedia.org/wiki/Ufuk_Dani%C5%9Fmend_Polis_Heliportu" + }, + { + "id": "355200", + "ident": "LTHB", + "type": "heliport", + "name": "Vali Ünal Erkan Polis Heliportu", + "latitude_deg": "37.9381", + "longitude_deg": "40.2953", + "elevation_ft": "2300", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-21", + "municipality": "Diyarbakır", + "scheduled_service": "no", + "gps_code": "LTHB" + }, + { + "id": "355206", + "ident": "LTHC", + "type": "heliport", + "name": "Çanakkale Şehitleri Abidesi Helipad", + "latitude_deg": "40.049517", + "longitude_deg": "26.217909", + "elevation_ft": "42", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-17", + "municipality": "Çanakkale", + "scheduled_service": "no", + "gps_code": "LTHC" + }, + { + "id": "355205", + "ident": "LTHD", + "type": "heliport", + "name": "Orgeneral Eşref Bitlis Askeri Heliportu", + "latitude_deg": "37.9306", + "longitude_deg": "40.2311", + "elevation_ft": "2251", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-21", + "municipality": "Diyarbakır", + "scheduled_service": "no", + "gps_code": "LTHD" + }, + { + "id": "353970", + "ident": "LTHE", + "type": "heliport", + "name": "Süleyman Satır Heliport", + "latitude_deg": "36.834114", + "longitude_deg": "30.603468", + "elevation_ft": "9", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-07", + "municipality": "Antalya", + "scheduled_service": "no", + "gps_code": "LTHE", + "keywords": "sahil guvenlik, helipad, heliport, coast guard" + }, + { + "id": "355204", + "ident": "LTHF", + "type": "heliport", + "name": "DHMİ Atatürk Airport Heliport", + "latitude_deg": "40.9817", + "longitude_deg": "28.8222", + "elevation_ft": "120", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "İstanbul", + "scheduled_service": "no", + "gps_code": "LTHF" + }, + { + "id": "44488", + "ident": "LTXE", + "type": "small_airport", + "name": "Karain Airport", + "latitude_deg": "37.09644317626953", + "longitude_deg": "30.647735595703125", + "elevation_ft": "1015", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-07", + "municipality": "Antalya", + "scheduled_service": "no", + "gps_code": "LTXE" + }, + { + "id": "43763", + "ident": "LU-0001", + "type": "heliport", + "name": "Ettelbruck heliport", + "latitude_deg": "49.85432", + "longitude_deg": "6.094475", + "elevation_ft": "666", + "continent": "EU", + "iso_country": "LU", + "iso_region": "LU-D", + "municipality": "Ettelbruck", + "scheduled_service": "no", + "gps_code": "ELET" + }, + { + "id": "43764", + "ident": "LU-0002", + "type": "closed", + "name": "Medernach / Kitzebour ULM Airfield", + "latitude_deg": "49.7892", + "longitude_deg": "6.24111", + "elevation_ft": "1171", + "continent": "EU", + "iso_country": "LU", + "iso_region": "LU-D", + "municipality": "Medernach", + "scheduled_service": "no", + "gps_code": "ELMD", + "home_link": "http://www.aeroplume.lu/" + }, + { + "id": "43765", + "ident": "LU-0003", + "type": "heliport", + "name": "Centre Hospitalier de Luxembourg Helipad", + "latitude_deg": "49.619279", + "longitude_deg": "6.102534", + "elevation_ft": "1079", + "continent": "EU", + "iso_country": "LU", + "iso_region": "LU-L", + "municipality": "Luxembourg", + "scheduled_service": "no", + "gps_code": "ELLC" + }, + { + "id": "43766", + "ident": "LU-0004", + "type": "heliport", + "name": "Centre Hospitalier Emile Mayrisch Heliport", + "latitude_deg": "49.500911", + "longitude_deg": "5.982146", + "elevation_ft": "971", + "continent": "EU", + "iso_country": "LU", + "iso_region": "LU-L", + "municipality": "Esch-Sur-Alzette", + "scheduled_service": "no", + "gps_code": "ELEA" + }, + { + "id": "43767", + "ident": "LU-0005", + "type": "heliport", + "name": "Clinique Ste-Thérèse heliport", + "latitude_deg": "49.60340626789999", + "longitude_deg": "6.1291050910900005", + "elevation_ft": "1001", + "continent": "EU", + "iso_country": "LU", + "iso_region": "LU-L", + "municipality": "Luxembourg", + "scheduled_service": "no" + }, + { + "id": "43768", + "ident": "LU-0006", + "type": "heliport", + "name": "Hôpital Kirchberg heliport", + "latitude_deg": "49.632616", + "longitude_deg": "6.177118", + "elevation_ft": "1220", + "continent": "EU", + "iso_country": "LU", + "iso_region": "LU-L", + "municipality": "Luxembourg", + "scheduled_service": "no", + "gps_code": "ELLK" + }, + { + "id": "4570", + "ident": "LUBL", + "type": "medium_airport", + "name": "Bălți International Airport", + "latitude_deg": "47.837666", + "longitude_deg": "27.781108", + "elevation_ft": "758", + "continent": "EU", + "iso_country": "MD", + "iso_region": "MD-RS", + "municipality": "Bălți", + "scheduled_service": "no", + "gps_code": "LUBL", + "iata_code": "BZY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bălți_International_Airport", + "keywords": "Beltsy International Airport, Lyadoveny Airport, Leadoveny Airport, Lyadoveni Airport, Leadoveni Airport, Аэропорт Бельцы" + }, + { + "id": "4630", + "ident": "LUBM", + "type": "medium_airport", + "name": "Mărculeşti International Airport", + "latitude_deg": "47.862701416015625", + "longitude_deg": "28.212799072265625", + "elevation_ft": "312", + "continent": "EU", + "iso_country": "MD", + "iso_region": "MD-FR", + "municipality": "Mărculeşti", + "scheduled_service": "no", + "gps_code": "LUBM", + "wikipedia_link": "https://en.wikipedia.org/wiki/M%C4%83rcule%C5%9Fti_International_Airport", + "keywords": "Markuleshty Airport" + }, + { + "id": "44412", + "ident": "LUCH", + "type": "medium_airport", + "name": "Cahul International Airport", + "latitude_deg": "45.8438", + "longitude_deg": "28.2637", + "elevation_ft": "652", + "continent": "EU", + "iso_country": "MD", + "iso_region": "MD-CH", + "municipality": "Cahul", + "scheduled_service": "no", + "gps_code": "LUCH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cahul_International_Airport" + }, + { + "id": "302299", + "ident": "LUCL", + "type": "small_airport", + "name": "Ceadîr-Lunga Airport", + "latitude_deg": "46.034994", + "longitude_deg": "28.851844", + "elevation_ft": "587", + "continent": "EU", + "iso_country": "MD", + "iso_region": "MD-GA", + "municipality": "Ceadîr-Lunga", + "scheduled_service": "no", + "gps_code": "LUCL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chadyr_Lunga_Airport", + "keywords": "Chadyr Lunga" + }, + { + "id": "4571", + "ident": "LUKK", + "type": "medium_airport", + "name": "Chişinău International Airport", + "latitude_deg": "46.92770004272461", + "longitude_deg": "28.930999755859375", + "elevation_ft": "399", + "continent": "EU", + "iso_country": "MD", + "iso_region": "MD-CU", + "municipality": "Chişinău", + "scheduled_service": "yes", + "gps_code": "LUKK", + "iata_code": "KIV", + "home_link": "http://www.airport.md/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chi%C5%9Fin%C4%83u_International_Airport" + }, + { + "id": "31864", + "ident": "LUTR", + "type": "medium_airport", + "name": "Tiraspol Airport", + "latitude_deg": "46.868099", + "longitude_deg": "29.590599", + "elevation_ft": "141", + "continent": "EU", + "iso_country": "MD", + "iso_region": "MD-SN", + "municipality": "Tiraspol", + "scheduled_service": "no", + "gps_code": "LUTR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tiraspol_Airport", + "keywords": "Transnistria" + }, + { + "id": "44605", + "ident": "LV-0001", + "type": "small_airport", + "name": "Gančauski Airfield", + "latitude_deg": "56.043395", + "longitude_deg": "26.369549", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-111", + "municipality": "Gančauski", + "scheduled_service": "no", + "keywords": "Gancauski Airfield, Ķirupe Airport, EVIL" + }, + { + "id": "44651", + "ident": "LV-0002", + "type": "small_airport", + "name": "Griva Airfield", + "latitude_deg": "55.883999", + "longitude_deg": "26.471001", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-DGV", + "municipality": "Daugavpils", + "scheduled_service": "no", + "gps_code": "EVBA" + }, + { + "id": "46347", + "ident": "LV-0003", + "type": "small_airport", + "name": "Saldus Airfield", + "latitude_deg": "56.692217755499996", + "longitude_deg": "22.4695301056", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-088", + "scheduled_service": "no", + "keywords": "Druva Airfield" + }, + { + "id": "315678", + "ident": "LV-0004", + "type": "small_airport", + "name": "Praulienas lidlauks", + "latitude_deg": "56.8516882", + "longitude_deg": "26.3126111", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-059", + "scheduled_service": "no" + }, + { + "id": "316393", + "ident": "LV-0005", + "type": "closed", + "name": "Kazruņģis", + "latitude_deg": "57.5580332", + "longitude_deg": "25.8375718", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-022", + "scheduled_service": "no" + }, + { + "id": "320143", + "ident": "LV-0006", + "type": "small_airport", + "name": "Mālpils Airfield", + "latitude_deg": "57.045431", + "longitude_deg": "24.945953", + "elevation_ft": "371", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-067", + "municipality": "Mālpils", + "scheduled_service": "no", + "gps_code": "EVMP", + "wikipedia_link": "https://lv.wikipedia.org/wiki/M%C4%81lpils_lidlauks" + }, + { + "id": "321031", + "ident": "LV-0007", + "type": "small_airport", + "name": "Skrunda Airfield", + "latitude_deg": "56.683379", + "longitude_deg": "21.998273", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-050", + "municipality": "Skrunda", + "scheduled_service": "no" + }, + { + "id": "321195", + "ident": "LV-0008", + "type": "small_airport", + "name": "Ragana Airstrip", + "latitude_deg": "57.20293", + "longitude_deg": "24.75348", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-091", + "municipality": "Ragana", + "scheduled_service": "no" + }, + { + "id": "321196", + "ident": "LV-0009", + "type": "small_airport", + "name": "Valmiera Airfield", + "latitude_deg": "57.558552", + "longitude_deg": "25.444296", + "elevation_ft": "190", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-113", + "municipality": "Valmiera", + "scheduled_service": "no" + }, + { + "id": "321530", + "ident": "LV-0010", + "type": "small_airport", + "name": "Valgundes lidlauks", + "latitude_deg": "56.7713125", + "longitude_deg": "23.6550662", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-JEL", + "municipality": "Valgunde", + "scheduled_service": "no" + }, + { + "id": "321664", + "ident": "LV-0011", + "type": "small_airport", + "name": "Taurene Airfield", + "latitude_deg": "57.169426", + "longitude_deg": "25.676857", + "elevation_ft": "648", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-022", + "municipality": "Taurene", + "scheduled_service": "no", + "keywords": "Taurenes lidlauks" + }, + { + "id": "322004", + "ident": "LV-0012", + "type": "small_airport", + "name": "Zabulnieki Airstrip", + "latitude_deg": "56.422305", + "longitude_deg": "26.728749", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-073", + "municipality": "Riebiņi", + "scheduled_service": "no" + }, + { + "id": "324014", + "ident": "LV-0013", + "type": "closed", + "name": "Aizpute Airfield", + "latitude_deg": "56.696944", + "longitude_deg": "21.628889", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-112", + "municipality": "Aizpute", + "scheduled_service": "no" + }, + { + "id": "325780", + "ident": "LV-0014", + "type": "small_airport", + "name": "Grotūžis Airstrip", + "latitude_deg": "57.440742", + "longitude_deg": "25.875658", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-094", + "municipality": "Grotūžis", + "scheduled_service": "no" + }, + { + "id": "325782", + "ident": "LV-0015", + "type": "small_airport", + "name": "Madliena Airfield", + "latitude_deg": "56.792113", + "longitude_deg": "25.123042", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-067", + "municipality": "Madliena", + "scheduled_service": "no", + "keywords": "Madlienas lidlauks" + }, + { + "id": "325783", + "ident": "LV-0016", + "type": "closed", + "name": "Matīši Airfield", + "latitude_deg": "57.688051", + "longitude_deg": "25.166628", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-113", + "municipality": "Matīši", + "scheduled_service": "no" + }, + { + "id": "325784", + "ident": "LV-0017", + "type": "small_airport", + "name": "Mežāre Airstrip", + "latitude_deg": "56.515676", + "longitude_deg": "26.257966", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-042", + "municipality": "Mežāre", + "scheduled_service": "no" + }, + { + "id": "325786", + "ident": "LV-0018", + "type": "small_airport", + "name": "Strēlnieks Airstrip", + "latitude_deg": "56.508202", + "longitude_deg": "24.076641", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-016", + "municipality": "Strēlnieks", + "scheduled_service": "no" + }, + { + "id": "325834", + "ident": "LV-0019", + "type": "small_airport", + "name": "Aloja Airstrip", + "latitude_deg": "57.774561", + "longitude_deg": "24.887069", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-054", + "municipality": "Aloja", + "scheduled_service": "no" + }, + { + "id": "325839", + "ident": "LV-0020", + "type": "small_airport", + "name": "Višķi Airstrip", + "latitude_deg": "56.03673", + "longitude_deg": "26.792944", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-111", + "municipality": "Višķi", + "scheduled_service": "no" + }, + { + "id": "325840", + "ident": "LV-0021", + "type": "small_airport", + "name": "Zaļenieki Airstrip", + "latitude_deg": "56.546718", + "longitude_deg": "23.534192", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-041", + "municipality": "Zaļenieki", + "scheduled_service": "no" + }, + { + "id": "325841", + "ident": "LV-0022", + "type": "small_airport", + "name": "Lube Airfield", + "latitude_deg": "57.440644", + "longitude_deg": "22.58316", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-097", + "municipality": "Lube", + "scheduled_service": "no" + }, + { + "id": "325842", + "ident": "LV-0023", + "type": "small_airport", + "name": "Barkava Airstrip", + "latitude_deg": "56.749886", + "longitude_deg": "26.5977", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-059", + "municipality": "Barkava", + "scheduled_service": "no" + }, + { + "id": "325857", + "ident": "LV-0024", + "type": "small_airport", + "name": "Adamova Airstrip", + "latitude_deg": "56.566385", + "longitude_deg": "27.347882", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-077", + "municipality": "Adamova", + "scheduled_service": "no" + }, + { + "id": "325858", + "ident": "LV-0025", + "type": "small_airport", + "name": "Karķu lidlauks", + "latitude_deg": "57.786686", + "longitude_deg": "25.603455", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-101", + "municipality": "Karķi", + "scheduled_service": "no" + }, + { + "id": "325859", + "ident": "LV-0026", + "type": "small_airport", + "name": "Žocene Airfield", + "latitude_deg": "57.532464", + "longitude_deg": "22.69939", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-097", + "municipality": "Žocene", + "scheduled_service": "no" + }, + { + "id": "325860", + "ident": "LV-0027", + "type": "closed", + "name": "Dobele Airstrip", + "latitude_deg": "56.675963", + "longitude_deg": "23.312442", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-026", + "municipality": "Dobele", + "scheduled_service": "no" + }, + { + "id": "325868", + "ident": "LV-0028", + "type": "closed", + "name": "Jaunkalsnava Airstrip", + "latitude_deg": "56.706131", + "longitude_deg": "25.911956", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-059", + "municipality": "Jaunkalsnava", + "scheduled_service": "no" + }, + { + "id": "325869", + "ident": "LV-0029", + "type": "small_airport", + "name": "Stalbe Airfield", + "latitude_deg": "57.380083", + "longitude_deg": "25.011103", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-067", + "municipality": "Stalbe", + "scheduled_service": "no", + "keywords": "Stalbes lidlauks" + }, + { + "id": "325983", + "ident": "LV-0030", + "type": "small_airport", + "name": "Zasa Airstrip", + "latitude_deg": "56.273317", + "longitude_deg": "26.034956", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-042", + "municipality": "Zasa", + "scheduled_service": "no" + }, + { + "id": "325984", + "ident": "LV-0031", + "type": "small_airport", + "name": "Vitrupe Airstrip", + "latitude_deg": "57.6476", + "longitude_deg": "24.392398", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-054", + "municipality": "Vitrupe", + "scheduled_service": "no" + }, + { + "id": "326005", + "ident": "LV-0032", + "type": "closed", + "name": "Grenctāle Airstrip", + "latitude_deg": "56.316525", + "longitude_deg": "24.332678", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-016", + "municipality": "Grenctāle", + "scheduled_service": "no" + }, + { + "id": "326074", + "ident": "LV-0033", + "type": "small_airport", + "name": "Viļāni Airstrip", + "latitude_deg": "56.592333", + "longitude_deg": "26.943647", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-077", + "municipality": "Viļāni", + "scheduled_service": "no" + }, + { + "id": "326098", + "ident": "LV-0034", + "type": "small_airport", + "name": "Eleja Airstrip", + "latitude_deg": "56.47609", + "longitude_deg": "23.699509", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-041", + "municipality": "Eleja", + "scheduled_service": "no" + }, + { + "id": "326119", + "ident": "LV-0035", + "type": "closed", + "name": "Bērze Airstrip", + "latitude_deg": "56.681346", + "longitude_deg": "23.464027", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-026", + "municipality": "Bērze", + "scheduled_service": "no" + }, + { + "id": "326169", + "ident": "LV-0036", + "type": "closed", + "name": "Rožupe Airstrip", + "latitude_deg": "56.351531", + "longitude_deg": "26.334265", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-056", + "municipality": "Rožupe", + "scheduled_service": "no" + }, + { + "id": "326174", + "ident": "LV-0037", + "type": "closed", + "name": "Stari Airstrip", + "latitude_deg": "57.103284", + "longitude_deg": "26.733248", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-033", + "municipality": "Stari", + "scheduled_service": "no" + }, + { + "id": "326224", + "ident": "LV-0038", + "type": "small_airport", + "name": "Dundaga Airfield", + "latitude_deg": "57.499354", + "longitude_deg": "22.402131", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-097", + "municipality": "Dundaga", + "scheduled_service": "no" + }, + { + "id": "326311", + "ident": "LV-0039", + "type": "small_airport", + "name": "Dricāni Airstrip", + "latitude_deg": "56.663395", + "longitude_deg": "27.176464", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-077", + "municipality": "Dricāni", + "scheduled_service": "no" + }, + { + "id": "327151", + "ident": "LV-0040", + "type": "small_airport", + "name": "Priekuļu lidlauks", + "latitude_deg": "56.4297479", + "longitude_deg": "21.5796735", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-112", + "municipality": "Priekule", + "scheduled_service": "no" + }, + { + "id": "327190", + "ident": "LV-0041", + "type": "small_airport", + "name": "Slampe Airfield", + "latitude_deg": "56.846598", + "longitude_deg": "23.267005", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-099", + "municipality": "Slampe", + "scheduled_service": "no" + }, + { + "id": "327208", + "ident": "LV-0042", + "type": "closed", + "name": "Matkules lidlauks", + "latitude_deg": "56.9725105", + "longitude_deg": "22.6337392", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-099", + "municipality": "Matkule", + "scheduled_service": "no" + }, + { + "id": "327224", + "ident": "LV-0043", + "type": "small_airport", + "name": "Vārmes lidlauks", + "latitude_deg": "56.854677", + "longitude_deg": "22.211771", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-050", + "municipality": "Vārme", + "scheduled_service": "no" + }, + { + "id": "327276", + "ident": "LV-0044", + "type": "small_airport", + "name": "Gudenieku lidlauks", + "latitude_deg": "56.903657", + "longitude_deg": "21.639275", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-050", + "municipality": "Gudenieki", + "scheduled_service": "no" + }, + { + "id": "329011", + "ident": "LV-0045", + "type": "closed", + "name": "Garlene Airstrip", + "latitude_deg": "57.2668037", + "longitude_deg": "22.8155028", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-097", + "scheduled_service": "no" + }, + { + "id": "329356", + "ident": "LV-0046", + "type": "closed", + "name": "Ezere Airfield", + "latitude_deg": "56.404546", + "longitude_deg": "22.337208", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-112", + "municipality": "Ezere", + "scheduled_service": "no" + }, + { + "id": "331742", + "ident": "LV-0047", + "type": "closed", + "name": "Zaicevas Airstrip", + "latitude_deg": "57.468352", + "longitude_deg": "27.508881", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-007", + "municipality": "Pededze", + "scheduled_service": "no" + }, + { + "id": "337014", + "ident": "LV-0048", + "type": "small_airport", + "name": "Nereta Airstrip", + "latitude_deg": "56.22175", + "longitude_deg": "25.29949", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-002", + "municipality": "Nereta", + "scheduled_service": "no" + }, + { + "id": "345107", + "ident": "LV-0049", + "type": "small_airport", + "name": "Vidzeme Aeroclub", + "latitude_deg": "57.32935", + "longitude_deg": "25.32139", + "elevation_ft": "354", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-022", + "municipality": "Cesis", + "scheduled_service": "no" + }, + { + "id": "346619", + "ident": "LV-0050", + "type": "small_airport", + "name": "Pilsrundāle Rural Airstrip", + "latitude_deg": "56.42202", + "longitude_deg": "23.97632", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-016", + "municipality": "Pilsrundāle", + "scheduled_service": "no" + }, + { + "id": "347282", + "ident": "LV-0051", + "type": "small_airport", + "name": "Ošupe Airstrip", + "latitude_deg": "56.80478", + "longitude_deg": "26.77088", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-059", + "scheduled_service": "no" + }, + { + "id": "349414", + "ident": "LV-0052", + "type": "small_airport", + "name": "Biržu lidlauks", + "latitude_deg": "56.40475", + "longitude_deg": "25.79567", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-042", + "municipality": "Birži", + "scheduled_service": "no" + }, + { + "id": "35065", + "ident": "LV-1288", + "type": "small_airport", + "name": "Rumbula Air Base", + "latitude_deg": "56.8833007812", + "longitude_deg": "24.2266998291", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-RIX", + "municipality": "Riga", + "scheduled_service": "no", + "gps_code": "EVRC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rumbula_Air_Base" + }, + { + "id": "35021", + "ident": "LV-7721", + "type": "closed", + "name": "Liepas Air Base", + "latitude_deg": "57.3867", + "longitude_deg": "25.508301", + "elevation_ft": "256", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-022", + "municipality": "Valmiera", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Liepas" + }, + { + "id": "35093", + "ident": "LV-8037", + "type": "closed", + "name": "Penkule Airfield", + "latitude_deg": "56.474862", + "longitude_deg": "23.190107", + "elevation_ft": "151", + "continent": "EU", + "iso_country": "LV", + "iso_region": "LV-041", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/T%C4%93rvete" + }, + { + "id": "313845", + "ident": "LVB", + "type": "closed", + "name": "Santana do Livramento Airport", + "latitude_deg": "-30.8354", + "longitude_deg": "-55.62565", + "elevation_ft": "1094", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Santana do Livramento", + "scheduled_service": "no", + "iata_code": "LVB" + }, + { + "id": "34929", + "ident": "LVGZ", + "type": "closed", + "name": "Yasser Arafat International Airport", + "latitude_deg": "31.246401", + "longitude_deg": "34.2761", + "elevation_ft": "320", + "continent": "AS", + "iso_country": "PS", + "iso_region": "PS-RFH", + "municipality": "Rafah", + "scheduled_service": "no", + "gps_code": "LVGZ", + "iata_code": "GZA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yasser_Arafat_International_Airport", + "keywords": "Palestine, Gaza, Gaza International Airport, Dahaniya International Airport" + }, + { + "id": "4668", + "ident": "LW66", + "type": "small_airport", + "name": "Malo Konjari Sport Airfield", + "latitude_deg": "41.333099", + "longitude_deg": "21.4491", + "elevation_ft": "2034", + "continent": "EU", + "iso_country": "MK", + "iso_region": "MK-005", + "municipality": "Malo Konjari", + "scheduled_service": "no", + "keywords": "LW66" + }, + { + "id": "4669", + "ident": "LW67", + "type": "small_airport", + "name": "Kumanovo Airbase", + "latitude_deg": "42.154884", + "longitude_deg": "21.699821", + "elevation_ft": "1217", + "continent": "EU", + "iso_country": "MK", + "iso_region": "MK-007", + "municipality": "Kumanovo", + "scheduled_service": "no", + "keywords": "LW67" + }, + { + "id": "4670", + "ident": "LW68", + "type": "small_airport", + "name": "Srpci Airfield", + "latitude_deg": "41.151734", + "longitude_deg": "21.40687", + "elevation_ft": "1900", + "continent": "EU", + "iso_country": "MK", + "iso_region": "MK-005", + "municipality": "Srpci", + "scheduled_service": "no", + "local_code": "LW68", + "keywords": "LW68" + }, + { + "id": "4671", + "ident": "LW69", + "type": "small_airport", + "name": "Dolneni Airport", + "latitude_deg": "41.429298", + "longitude_deg": "21.4025", + "elevation_ft": "1970", + "continent": "EU", + "iso_country": "MK", + "iso_region": "MK-005", + "municipality": "Dolneni", + "scheduled_service": "no", + "keywords": "LW69" + }, + { + "id": "4672", + "ident": "LW70", + "type": "small_airport", + "name": "Veles Airstrip", + "latitude_deg": "41.759628", + "longitude_deg": "21.841293", + "elevation_ft": "1112", + "continent": "EU", + "iso_country": "MK", + "iso_region": "MK-001", + "municipality": "Veles", + "scheduled_service": "no", + "keywords": "Titov Veles, LW70, Велес" + }, + { + "id": "4673", + "ident": "LW71", + "type": "small_airport", + "name": "Peshirovo Sveti Nikole Airfield", + "latitude_deg": "41.828073", + "longitude_deg": "21.986585", + "elevation_ft": "794", + "continent": "EU", + "iso_country": "MK", + "iso_region": "MK-001", + "municipality": "Peshirovo", + "scheduled_service": "no", + "keywords": "LW71" + }, + { + "id": "4674", + "ident": "LW72", + "type": "small_airport", + "name": "Negotino Airfield", + "latitude_deg": "41.5172", + "longitude_deg": "22.087099", + "elevation_ft": "500", + "continent": "EU", + "iso_country": "MK", + "iso_region": "MK-001", + "municipality": "Negotino", + "scheduled_service": "no", + "local_code": "LW72", + "keywords": "LW72" + }, + { + "id": "4675", + "ident": "LW73", + "type": "small_airport", + "name": "Štip Airstrip", + "latitude_deg": "41.798058", + "longitude_deg": "22.109863", + "elevation_ft": "900", + "continent": "EU", + "iso_country": "MK", + "iso_region": "MK-002", + "municipality": "Stip", + "scheduled_service": "no", + "keywords": "LW73" + }, + { + "id": "4676", + "ident": "LW74", + "type": "small_airport", + "name": "Logovardi Sport Aerodrome", + "latitude_deg": "41.017721", + "longitude_deg": "21.426186", + "elevation_ft": "1950", + "continent": "EU", + "iso_country": "MK", + "iso_region": "MK-005", + "municipality": "Bitola", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Logovardi_Airfield", + "keywords": "LW74" + }, + { + "id": "4677", + "ident": "LW75", + "type": "small_airport", + "name": "Stenkovec Brazda Airport", + "latitude_deg": "42.0594", + "longitude_deg": "21.388514", + "elevation_ft": "1150", + "continent": "EU", + "iso_country": "MK", + "iso_region": "MK-004", + "municipality": "Brazda", + "scheduled_service": "no", + "local_code": "LW75", + "home_link": "https://www.aeroclub.mk", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stenkovec_Brazda_Airport" + }, + { + "id": "4678", + "ident": "LW76", + "type": "closed", + "name": "Mavrovica Airfield", + "latitude_deg": "41.912399", + "longitude_deg": "21.9554", + "elevation_ft": "1237", + "continent": "EU", + "iso_country": "MK", + "iso_region": "MK-001", + "municipality": "Mavrovica", + "scheduled_service": "no", + "keywords": "LW76" + }, + { + "id": "313843", + "ident": "LWA", + "type": "small_airport", + "name": "Lebak Rural Airport", + "latitude_deg": "6.6739", + "longitude_deg": "124.0581", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SUK", + "municipality": "Lebak", + "scheduled_service": "no", + "iata_code": "LWA", + "keywords": "Doña Annie Sabala Vallite Alabastro Memorial Private" + }, + { + "id": "21733", + "ident": "LWD", + "type": "small_airport", + "name": "Lamoni Municipal Airport", + "latitude_deg": "40.63330078125", + "longitude_deg": "-93.9021987915039", + "elevation_ft": "1131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Lamoni", + "scheduled_service": "no", + "gps_code": "LWD", + "local_code": "LWD" + }, + { + "id": "4572", + "ident": "LWOH", + "type": "medium_airport", + "name": "Ohrid St. Paul the Apostle Airport", + "latitude_deg": "41.18", + "longitude_deg": "20.7423", + "elevation_ft": "2313", + "continent": "EU", + "iso_country": "MK", + "iso_region": "MK-003", + "municipality": "Ohrid", + "scheduled_service": "yes", + "gps_code": "LWOH", + "iata_code": "OHD", + "home_link": "http://ohd.airports.com.mk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ohrid_Airport" + }, + { + "id": "4573", + "ident": "LWSK", + "type": "large_airport", + "name": "Skopje International Airport", + "latitude_deg": "41.961601", + "longitude_deg": "21.621401", + "elevation_ft": "781", + "continent": "EU", + "iso_country": "MK", + "iso_region": "MK-004", + "municipality": "Skopje", + "scheduled_service": "yes", + "gps_code": "LWSK", + "iata_code": "SKP", + "home_link": "http://skp.airports.com.mk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Skopje_Airport" + }, + { + "id": "4574", + "ident": "LXGB", + "type": "medium_airport", + "name": "Gibraltar Airport", + "latitude_deg": "36.151199", + "longitude_deg": "-5.34966", + "elevation_ft": "12", + "continent": "EU", + "iso_country": "GI", + "iso_region": "GI-U-A", + "municipality": "Gibraltar", + "scheduled_service": "yes", + "gps_code": "LXGB", + "iata_code": "GIB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gibraltar_Airport" + }, + { + "id": "44579", + "ident": "LY-0001", + "type": "small_airport", + "name": "Bi'r Zalatan Airport", + "latitude_deg": "28.168800354", + "longitude_deg": "19.209499359099997", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-WA", + "scheduled_service": "no" + }, + { + "id": "308249", + "ident": "LY-0002", + "type": "small_airport", + "name": "Zelten C6 Airstrip", + "latitude_deg": "28.959621", + "longitude_deg": "19.771146", + "elevation_ft": "486", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-WA", + "municipality": "Adjabiya", + "scheduled_service": "no" + }, + { + "id": "308251", + "ident": "LY-0003", + "type": "small_airport", + "name": "Gabr Airstrip", + "latitude_deg": "29.873888", + "longitude_deg": "23.347918", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-BU", + "scheduled_service": "no" + }, + { + "id": "312731", + "ident": "LY-0004", + "type": "small_airport", + "name": "Wadi Barjuj Airport", + "latitude_deg": "26.033861", + "longitude_deg": "12.925694", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-WD", + "municipality": "Wadi Barjuj", + "scheduled_service": "no" + }, + { + "id": "312733", + "ident": "LY-0005", + "type": "small_airport", + "name": "Al Mansura West Airport", + "latitude_deg": "27.548953", + "longitude_deg": "12.820745", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-SH", + "municipality": "Al Mansura", + "scheduled_service": "no" + }, + { + "id": "328739", + "ident": "LY-0006", + "type": "closed", + "name": "Former Bombah Airport", + "latitude_deg": "32.41779", + "longitude_deg": "23.126135", + "elevation_ft": "30", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-DR", + "municipality": "Bombah", + "scheduled_service": "no", + "keywords": "Al Bunbah" + }, + { + "id": "328740", + "ident": "LY-0007", + "type": "closed", + "name": "Former Tobruk Airport", + "latitude_deg": "32.103124", + "longitude_deg": "23.83335", + "elevation_ft": "279", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-BU", + "municipality": "Qaryat Maqrun", + "scheduled_service": "no", + "keywords": "Tobruk" + }, + { + "id": "340304", + "ident": "LY-0008", + "type": "small_airport", + "name": "Ras Lanuf Highway Airport", + "latitude_deg": "30.4429", + "longitude_deg": "18.5808", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-SR", + "municipality": "Ras Lanuf", + "scheduled_service": "no" + }, + { + "id": "340305", + "ident": "LY-0009", + "type": "small_airport", + "name": "Kambut Airport", + "latitude_deg": "31.8345", + "longitude_deg": "24.6061", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-BU", + "municipality": "Kambut", + "scheduled_service": "no", + "gps_code": "HLBK", + "keywords": "Kambut Air Base, RAF Gambut" + }, + { + "id": "344075", + "ident": "LY-0010", + "type": "small_airport", + "name": "Fidda Oilfield Airport", + "latitude_deg": "28.94671", + "longitude_deg": "17.27365", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-JU", + "municipality": "Zillah", + "scheduled_service": "no" + }, + { + "id": "344076", + "ident": "LY-0011", + "type": "small_airport", + "name": "Jofra Oilfield Airport", + "latitude_deg": "29.3613", + "longitude_deg": "18.00728", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-SR", + "municipality": "Jofra", + "scheduled_service": "no" + }, + { + "id": "429789", + "ident": "LY-0012", + "type": "small_airport", + "name": "Zliten Commercial Airport", + "latitude_deg": "32.07887", + "longitude_deg": "14.30198", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-MB", + "municipality": "Zliten", + "scheduled_service": "no" + }, + { + "id": "429790", + "ident": "LY-0013", + "type": "small_airport", + "name": "Gharyan International Airport", + "latitude_deg": "31.943495", + "longitude_deg": "13.159046", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-JG", + "municipality": "Abo-Maade", + "scheduled_service": "no" + }, + { + "id": "429812", + "ident": "LY-0014", + "type": "small_airport", + "name": "Ash Shwayrif Airport", + "latitude_deg": "29.92428", + "longitude_deg": "14.21152", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-JG", + "municipality": "Ash Shwayrif", + "scheduled_service": "no" + }, + { + "id": "430145", + "ident": "LY-0015", + "type": "small_airport", + "name": "El Sherara Field Airport", + "latitude_deg": "26.54356", + "longitude_deg": "12.22578", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-WD", + "municipality": "Taramhe", + "scheduled_service": "no" + }, + { + "id": "30688", + "ident": "LY-BCQ", + "type": "medium_airport", + "name": "Brak Airport", + "latitude_deg": "27.653", + "longitude_deg": "14.272", + "elevation_ft": "1056", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-SH", + "municipality": "Brak", + "scheduled_service": "no", + "iata_code": "BCQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brak_Airport", + "keywords": "Brach" + }, + { + "id": "30928", + "ident": "LY-DNF", + "type": "small_airport", + "name": "Martuba Air Base", + "latitude_deg": "32.542", + "longitude_deg": "22.745001", + "elevation_ft": "1235", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-DR", + "municipality": "Martuba", + "scheduled_service": "no", + "iata_code": "DNF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Martuba_Airbase", + "keywords": "Martuba Airfield, Martubah Airport" + }, + { + "id": "31944", + "ident": "LY-MRA", + "type": "small_airport", + "name": "Misrata International Airport", + "latitude_deg": "32.325001", + "longitude_deg": "15.061", + "elevation_ft": "60", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-MI", + "municipality": "Misrata", + "scheduled_service": "yes", + "gps_code": "HLMS", + "iata_code": "MRA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Misrata_Airport", + "keywords": "Misratah, Misurata" + }, + { + "id": "32195", + "ident": "LY-QUB", + "type": "small_airport", + "name": "Ubari Airport", + "latitude_deg": "26.567499", + "longitude_deg": "12.8231", + "elevation_ft": "1528", + "continent": "AF", + "iso_country": "LY", + "iso_region": "LY-WD", + "municipality": "Ubari", + "scheduled_service": "yes", + "gps_code": "HLUB", + "iata_code": "QUB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ubari_Airport" + }, + { + "id": "1648", + "ident": "LY87", + "type": "small_airport", + "name": "Kovin Airstrip", + "latitude_deg": "44.7743", + "longitude_deg": "20.9613", + "elevation_ft": "280", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-04", + "scheduled_service": "no" + }, + { + "id": "1649", + "ident": "LY88", + "type": "medium_airport", + "name": "Ponikve Airport", + "latitude_deg": "43.898899", + "longitude_deg": "19.697701", + "elevation_ft": "2966", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-16", + "municipality": "Užice", + "scheduled_service": "no", + "gps_code": "LYUZ", + "iata_code": "UZC", + "home_link": "http://aerodromponikve.rs", + "wikipedia_link": "https://en.wikipedia.org/wiki/U%C5%BEice-Ponikve_Airport", + "keywords": "Аеродром Ужице-Поникве, Lepa Glava" + }, + { + "id": "1650", + "ident": "LY89", + "type": "small_airport", + "name": "Bor Airport", + "latitude_deg": "44.0182", + "longitude_deg": "22.1371", + "elevation_ft": "1266", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-14", + "municipality": "Bor", + "scheduled_service": "no", + "gps_code": "LYBO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bor_Airport", + "keywords": "Бор" + }, + { + "id": "4610", + "ident": "LYBE", + "type": "large_airport", + "name": "Belgrade Nikola Tesla Airport", + "latitude_deg": "44.818401", + "longitude_deg": "20.309099", + "elevation_ft": "335", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-00", + "municipality": "Belgrade", + "scheduled_service": "yes", + "gps_code": "LYBE", + "iata_code": "BEG", + "home_link": "http://www.beg.aero/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Belgrade_Nikola_Tesla_Airport", + "keywords": "Beograd, Surčin Airport" + }, + { + "id": "301358", + "ident": "LYBJ", + "type": "small_airport", + "name": "Airport Lisicji Jarak", + "latitude_deg": "44.9397222", + "longitude_deg": "20.4455556", + "elevation_ft": "233", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-00", + "municipality": "Belgrade", + "scheduled_service": "no", + "gps_code": "LYBJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lisi%C4%8Dji_Jarak_Airport", + "keywords": "Лисичји Јарак, Beograd-Lisičji Jarak" + }, + { + "id": "42777", + "ident": "LYBR", + "type": "small_airport", + "name": "Berane Airport", + "latitude_deg": "42.8390007019043", + "longitude_deg": "19.86199951171875", + "elevation_ft": "2287", + "continent": "EU", + "iso_country": "ME", + "iso_region": "ME-03", + "municipality": "Berane", + "scheduled_service": "no", + "gps_code": "LYBR", + "iata_code": "IVG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Berane_Airport", + "keywords": "Dolac Airport, Аеродром Беране, Aerodrom Berane" + }, + { + "id": "308218", + "ident": "LYBS", + "type": "heliport", + "name": "Camp Bondsteel Army Heliport", + "latitude_deg": "42.36632", + "longitude_deg": "21.24234", + "elevation_ft": "1900", + "continent": "EU", + "iso_country": "XK", + "iso_region": "XK-05", + "municipality": "Sojevë / Camp Bondsteel", + "scheduled_service": "no", + "gps_code": "LYBS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_Bondsteel" + }, + { + "id": "4611", + "ident": "LYBT", + "type": "medium_airport", + "name": "Batajnica Air Base", + "latitude_deg": "44.935299", + "longitude_deg": "20.2575", + "elevation_ft": "265", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-07", + "municipality": "Batajnica", + "scheduled_service": "no", + "gps_code": "LYBT", + "iata_code": "BJY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Batajnica_Air_Base", + "keywords": "Batajnica Colonel Milenko Pavlović Air Base" + }, + { + "id": "309974", + "ident": "LYCA", + "type": "small_airport", + "name": "Čačak-Preljina Airfield", + "latitude_deg": "43.8981", + "longitude_deg": "20.435", + "elevation_ft": "776", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-17", + "municipality": "Čačak", + "scheduled_service": "no", + "gps_code": "LYCA", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C4%8Ca%C4%8Dak-Preljina_Airport", + "keywords": "Ravan Airport, Аеродром Чачак-Прељина, Раван" + }, + { + "id": "1651", + "ident": "LYDK", + "type": "closed", + "name": "Gjakova Airport", + "latitude_deg": "42.4352", + "longitude_deg": "20.427401", + "elevation_ft": "1370", + "continent": "EU", + "iso_country": "XK", + "iso_region": "XK-07", + "municipality": "Gjakovë", + "scheduled_service": "no", + "local_code": "LYDK", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C4%90akovica_Airfield", + "keywords": "Dakovica, Aerodrom Đakovica, Аеродром Ђаковица, Aeroporti i Gjakovës, Dakovjca" + }, + { + "id": "333323", + "ident": "LYJA", + "type": "small_airport", + "name": "Jagodina / Barutana Airfield", + "latitude_deg": "43.9766", + "longitude_deg": "21.23016", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-12", + "municipality": "Jagodina", + "scheduled_service": "no", + "gps_code": "LYJA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jagodina_Airport" + }, + { + "id": "319554", + "ident": "LYKA", + "type": "small_airport", + "name": "Kraljevo Brege Airport", + "latitude_deg": "43.7318", + "longitude_deg": "20.717969", + "elevation_ft": "660", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-18", + "municipality": "Kraljevo", + "scheduled_service": "no", + "gps_code": "LYKA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brege_Airport", + "keywords": "Aeroklub „Mihajlo Petrović”" + }, + { + "id": "301369", + "ident": "LYKI", + "type": "small_airport", + "name": "Kikinda Airfield", + "latitude_deg": "45.768122", + "longitude_deg": "20.417261", + "elevation_ft": "266", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-03", + "municipality": "Kikinda", + "scheduled_service": "no", + "gps_code": "LYKI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kikinda_Airfield", + "keywords": "Drahslerov Salaš" + }, + { + "id": "340590", + "ident": "LYKT", + "type": "small_airport", + "name": "Kostolac Airfield", + "latitude_deg": "44.734863", + "longitude_deg": "21.161664", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-11", + "municipality": "Kostolac", + "scheduled_service": "no", + "gps_code": "LYKT" + }, + { + "id": "31872", + "ident": "LYKV", + "type": "medium_airport", + "name": "Morava Airport", + "latitude_deg": "43.818298", + "longitude_deg": "20.5872", + "elevation_ft": "686", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-18", + "municipality": "Kraljevo", + "scheduled_service": "yes", + "gps_code": "LYKV", + "iata_code": "KVO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Morava_Airport", + "keywords": "Lađevci Airport" + }, + { + "id": "320389", + "ident": "LYLE", + "type": "small_airport", + "name": "Leskovac / Mira Sport Airport", + "latitude_deg": "43.019665", + "longitude_deg": "21.931963", + "elevation_ft": "738", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-23", + "municipality": "Leskovac", + "scheduled_service": "no", + "gps_code": "LYLE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mira_Airport", + "keywords": "Аеродром Мира" + }, + { + "id": "4612", + "ident": "LYNI", + "type": "medium_airport", + "name": "Nis Airport", + "latitude_deg": "43.337299", + "longitude_deg": "21.853701", + "elevation_ft": "648", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-20", + "municipality": "Nis", + "scheduled_service": "yes", + "gps_code": "LYNI", + "iata_code": "INI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ni%C5%A1_Constantine_the_Great_Airport" + }, + { + "id": "42779", + "ident": "LYNK", + "type": "small_airport", + "name": "Nikšić Airfield", + "latitude_deg": "42.773701", + "longitude_deg": "18.914801", + "elevation_ft": "2008", + "continent": "EU", + "iso_country": "ME", + "iso_region": "ME-12", + "municipality": "Nikšić", + "scheduled_service": "no", + "gps_code": "LYNK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nik%C5%A1i%C4%87_Airport", + "keywords": "Аеродром Никшић, Aerodrom Nikšić, Kapino Polje Airport" + }, + { + "id": "32190", + "ident": "LYNS", + "type": "small_airport", + "name": "Novi Sad / Čenej Airport", + "latitude_deg": "45.38531", + "longitude_deg": "19.833326", + "elevation_ft": "266", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-06", + "municipality": "Čenej", + "scheduled_service": "no", + "gps_code": "LYNS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Novi_Sad_Airport" + }, + { + "id": "313480", + "ident": "LYPA", + "type": "small_airport", + "name": "Pančevo Airfield", + "latitude_deg": "44.9", + "longitude_deg": "20.641002", + "elevation_ft": "245", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-04", + "municipality": "Pančevo", + "scheduled_service": "no", + "gps_code": "LYPA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pan%C4%8Devo_Airport", + "keywords": "QBG" + }, + { + "id": "4613", + "ident": "LYPG", + "type": "large_airport", + "name": "Podgorica Airport / Podgorica Golubovci Airbase", + "latitude_deg": "42.359402", + "longitude_deg": "19.2519", + "elevation_ft": "141", + "continent": "EU", + "iso_country": "ME", + "iso_region": "ME-16", + "municipality": "Podgorica", + "scheduled_service": "yes", + "gps_code": "LYPG", + "iata_code": "TGD", + "home_link": "http://www.montenegroairports.com/?menu=2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Podgorica_Airport", + "keywords": "Podgorica Airbase, Golubovci Airbase, Аеродром Подгорица, Aerodrom Podgorica" + }, + { + "id": "320360", + "ident": "LYPN", + "type": "small_airport", + "name": "Paracín / Davidovac Airport", + "latitude_deg": "43.866389", + "longitude_deg": "21.486944", + "elevation_ft": "144", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-12", + "municipality": "Paraćin", + "scheduled_service": "no", + "gps_code": "LYPN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Para%C4%87in_Airport", + "keywords": "Davidovic" + }, + { + "id": "42778", + "ident": "LYPO", + "type": "small_airport", + "name": "Ćemovsko Polje / Špiro Mugoša Airfield", + "latitude_deg": "42.422318", + "longitude_deg": "19.290777", + "elevation_ft": "197", + "continent": "EU", + "iso_country": "ME", + "iso_region": "ME-16", + "municipality": "Podgorica", + "scheduled_service": "no", + "gps_code": "LYPO", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C5%A0piro_Mugo%C5%A1a_Airport" + }, + { + "id": "34925", + "ident": "LYPT", + "type": "closed", + "name": "Batlava-Donja Penduha Air Base", + "latitude_deg": "42.849898", + "longitude_deg": "21.221705", + "elevation_ft": "1978", + "continent": "EU", + "iso_country": "XK", + "iso_region": "XK-01", + "municipality": "Batlava", + "scheduled_service": "no", + "gps_code": "LYPT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Batlava-Donja_Penduha_Airfield", + "keywords": "Аеродром Батлава" + }, + { + "id": "308327", + "ident": "LYSM", + "type": "small_airport", + "name": "Sremska Mitrovica / Veliki Radinci Airfield", + "latitude_deg": "45.037414", + "longitude_deg": "19.660184", + "elevation_ft": "310", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-07", + "municipality": "Sremska Mitrovica", + "scheduled_service": "no", + "gps_code": "LYSM", + "home_link": "https://www.facebook.com/Sportski-aerodrom-Veliki-Radinci-308066089346099/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sremska_Mitrovica_Airport", + "keywords": "Uncontrolled, small, grass" + }, + { + "id": "308326", + "ident": "LYSO", + "type": "closed", + "name": "Sombor Airport", + "latitude_deg": "45.722333", + "longitude_deg": "19.057843", + "elevation_ft": "275", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-05", + "municipality": "Sombor", + "scheduled_service": "no", + "gps_code": "LYSO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sombor_Airport", + "keywords": "Сомбор" + }, + { + "id": "46639", + "ident": "LYSP", + "type": "small_airport", + "name": "Smederevska Palanka / Rudine Airport", + "latitude_deg": "44.351389", + "longitude_deg": "20.96", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-10", + "municipality": "Smederevska Palanka", + "scheduled_service": "no", + "gps_code": "LYSP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Smederevska_Palanka_Airport" + }, + { + "id": "308323", + "ident": "LYSU", + "type": "small_airport", + "name": "Subotica / Bikovo Sport Airport", + "latitude_deg": "46.022837", + "longitude_deg": "19.706454", + "elevation_ft": "340", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-01", + "municipality": "Bikovo", + "scheduled_service": "no", + "gps_code": "LYSU", + "home_link": "http://aeroklubivansaric.rs", + "wikipedia_link": "https://en.wikipedia.org/wiki/Subotica_Airport", + "keywords": "Subotica Airport, Aerodrome Subotica, Bikovo Airport, Суботица, Биково" + }, + { + "id": "302289", + "ident": "LYTR", + "type": "small_airport", + "name": "Trstenik Airport", + "latitude_deg": "43.614189", + "longitude_deg": "21.030217", + "elevation_ft": "534", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-19", + "municipality": "Trstenik", + "scheduled_service": "no", + "gps_code": "LYTR", + "home_link": "http://aeroklubtrstenik.webs.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trstenik_Airport" + }, + { + "id": "4615", + "ident": "LYTV", + "type": "medium_airport", + "name": "Tivat Airport", + "latitude_deg": "42.404701232910156", + "longitude_deg": "18.72330093383789", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "ME", + "iso_region": "ME-19", + "municipality": "Tivat", + "scheduled_service": "yes", + "gps_code": "LYTV", + "iata_code": "TIV", + "home_link": "http://www.montenegroairports.com/?menu=3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tivat_Airport", + "keywords": "Аеродром Тиват, Aerodrom Tivat, Zračna luka Tivat" + }, + { + "id": "308320", + "ident": "LYVA", + "type": "small_airport", + "name": "Divci Airport", + "latitude_deg": "44.29793", + "longitude_deg": "20.021567", + "elevation_ft": "469", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-09", + "municipality": "Divci", + "scheduled_service": "no", + "gps_code": "LYVA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valjevo_Airport", + "keywords": "QWV, Valjevo Airport" + }, + { + "id": "4616", + "ident": "LYVR", + "type": "small_airport", + "name": "Vršac International Airport", + "latitude_deg": "45.1469", + "longitude_deg": "21.3099", + "elevation_ft": "276", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-04", + "scheduled_service": "no", + "gps_code": "LYVR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vr%C5%A1ac_International_Airport" + }, + { + "id": "302301", + "ident": "LYZR", + "type": "small_airport", + "name": "Zrenjanin Airport", + "latitude_deg": "45.339756", + "longitude_deg": "20.454078", + "elevation_ft": "246", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-02", + "municipality": "Zrenjanin", + "scheduled_service": "no", + "gps_code": "LYZR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zrenjanin_Airport" + }, + { + "id": "316252", + "ident": "LZBD", + "type": "small_airport", + "name": "Bidovce Airstrip", + "latitude_deg": "48.742803", + "longitude_deg": "21.448325", + "elevation_ft": "984", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "municipality": "Košice", + "scheduled_service": "no", + "gps_code": "LZBD" + }, + { + "id": "29830", + "ident": "LZDB", + "type": "small_airport", + "name": "Dubnica", + "latitude_deg": "48.996899", + "longitude_deg": "18.1922", + "elevation_ft": "771", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-TC", + "municipality": "Dubnica nad Váhom", + "scheduled_service": "no", + "gps_code": "LZDB", + "home_link": "http://www.akdubnica.sk", + "keywords": "Slávnica" + }, + { + "id": "316258", + "ident": "LZDV", + "type": "small_airport", + "name": "Dubová Airstrip", + "latitude_deg": "48.347019", + "longitude_deg": "17.356583", + "elevation_ft": "634", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BL", + "municipality": "Dubová", + "scheduled_service": "no", + "gps_code": "LZDV", + "home_link": "http://www.letiskodubova.sk" + }, + { + "id": "354840", + "ident": "LZG", + "type": "medium_airport", + "name": "Langzhong Gucheng Airport", + "latitude_deg": "31.50191", + "longitude_deg": "106.034417", + "elevation_ft": "1444", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Nanchong (Langzhong)", + "scheduled_service": "yes", + "iata_code": "LZG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Langzhong_Airport" + }, + { + "id": "308331", + "ident": "LZHL", + "type": "small_airport", + "name": "Holič Airfield", + "latitude_deg": "48.8103", + "longitude_deg": "17.1338", + "elevation_ft": "520", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-TA", + "municipality": "Holič", + "scheduled_service": "no", + "gps_code": "LZHL" + }, + { + "id": "4617", + "ident": "LZIB", + "type": "large_airport", + "name": "M. R. Štefánik Airport", + "latitude_deg": "48.17020034790039", + "longitude_deg": "17.21269989013672", + "elevation_ft": "436", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BL", + "municipality": "Bratislava", + "scheduled_service": "yes", + "gps_code": "LZIB", + "iata_code": "BTS", + "wikipedia_link": "https://en.wikipedia.org/wiki/M._R._%C5%A0tef%C3%A1nik_Airport" + }, + { + "id": "317756", + "ident": "LZJS", + "type": "small_airport", + "name": "Jasná", + "latitude_deg": "49.048056", + "longitude_deg": "19.506667", + "elevation_ft": "2103", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-ZI", + "scheduled_service": "no", + "gps_code": "LZJS", + "home_link": "http://www.letisko-jasna.sk" + }, + { + "id": "308332", + "ident": "LZKC", + "type": "small_airport", + "name": "Kamenica nad Cirochou Airfield", + "latitude_deg": "48.937", + "longitude_deg": "21.9952", + "elevation_ft": "560", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-PV", + "municipality": "Kamenica nad Cirochou", + "scheduled_service": "no", + "gps_code": "LZKC" + }, + { + "id": "30044", + "ident": "LZKS", + "type": "closed", + "name": "Kralova pri Senci Airfield", + "latitude_deg": "48.201099", + "longitude_deg": "17.471901", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BL", + "municipality": "Senec", + "scheduled_service": "no", + "gps_code": "LZKS" + }, + { + "id": "4618", + "ident": "LZKZ", + "type": "medium_airport", + "name": "Košice Airport", + "latitude_deg": "48.66310119628906", + "longitude_deg": "21.241100311279297", + "elevation_ft": "755", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "municipality": "Košice", + "scheduled_service": "yes", + "gps_code": "LZKZ", + "iata_code": "KSC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ko%C5%A1ice_International_Airport" + }, + { + "id": "31861", + "ident": "LZLU", + "type": "small_airport", + "name": "Lučenec Airport", + "latitude_deg": "48.33940124511719", + "longitude_deg": "19.73579978942871", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BC", + "municipality": "Lučenec", + "scheduled_service": "no", + "gps_code": "LZLU", + "iata_code": "LUE" + }, + { + "id": "30119", + "ident": "LZMA", + "type": "small_airport", + "name": "Martin", + "latitude_deg": "49.0653", + "longitude_deg": "18.9508", + "elevation_ft": "1381", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-ZI", + "municipality": "Martin", + "scheduled_service": "no", + "gps_code": "LZMA", + "home_link": "http://www.aeroklubmartin.sk", + "wikipedia_link": "https://en.wikipedia.org/wiki/Martin_Airport_(Slovakia)" + }, + { + "id": "4619", + "ident": "LZMC", + "type": "medium_airport", + "name": "Kuchyňa Air Base", + "latitude_deg": "48.402000427246094", + "longitude_deg": "17.11840057373047", + "elevation_ft": "679", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BL", + "municipality": "Malacky", + "scheduled_service": "no", + "gps_code": "LZMC" + }, + { + "id": "30187", + "ident": "LZNI", + "type": "small_airport", + "name": "Nitra Airfield", + "latitude_deg": "48.27939987", + "longitude_deg": "18.1327991", + "elevation_ft": "440", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-NJ", + "municipality": "Nitra", + "scheduled_service": "no", + "gps_code": "LZNI" + }, + { + "id": "316354", + "ident": "LZNZ", + "type": "small_airport", + "name": "Nové Zámky", + "latitude_deg": "47.961944", + "longitude_deg": "18.184444", + "elevation_ft": "377", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-NJ", + "scheduled_service": "no", + "gps_code": "LZNZ" + }, + { + "id": "314805", + "ident": "LZOC", + "type": "small_airport", + "name": "Ocova airfield", + "latitude_deg": "48.595333333333", + "longitude_deg": "19.265805555556", + "elevation_ft": "1191", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BC", + "scheduled_service": "no", + "gps_code": "LZOC" + }, + { + "id": "30292", + "ident": "LZPE", + "type": "small_airport", + "name": "Prievidza Airfield", + "latitude_deg": "48.766102", + "longitude_deg": "18.5867", + "elevation_ft": "850", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-TC", + "municipality": "Prievidza", + "scheduled_service": "no", + "gps_code": "LZPE" + }, + { + "id": "4620", + "ident": "LZPP", + "type": "medium_airport", + "name": "Piešťany Airport", + "latitude_deg": "48.62519836425781", + "longitude_deg": "17.828399658203125", + "elevation_ft": "545", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-TA", + "municipality": "Piešťany", + "scheduled_service": "no", + "gps_code": "LZPP", + "iata_code": "PZY", + "home_link": "http://www.ba.psg.sk/prezenta/airport-piestany/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pie%C5%A1%C5%A5any_Airport" + }, + { + "id": "30103", + "ident": "LZPT", + "type": "small_airport", + "name": "Male Bielice", + "latitude_deg": "48.61920166", + "longitude_deg": "18.3297", + "elevation_ft": "600", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-TC", + "municipality": "Partizánske", + "scheduled_service": "no", + "gps_code": "LZPT", + "home_link": "http://www.partizanske.aeroklub.sk_\\_http://www.freefly.sk" + }, + { + "id": "30288", + "ident": "LZPW", + "type": "small_airport", + "name": "Prešov Air Base", + "latitude_deg": "49.02970123291", + "longitude_deg": "21.315599441528", + "elevation_ft": "1060", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-PV", + "municipality": "Prešov", + "scheduled_service": "no", + "gps_code": "LZPW", + "iata_code": "POV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pre%C5%A1ov_Air_Base" + }, + { + "id": "317682", + "ident": "LZRU", + "type": "small_airport", + "name": "Ružomberok", + "latitude_deg": "49.085833", + "longitude_deg": "19.370278", + "elevation_ft": "1617", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-ZI", + "scheduled_service": "no", + "gps_code": "LZRU", + "home_link": "http://letisko.zssos.sk" + }, + { + "id": "317685", + "ident": "LZRY", + "type": "small_airport", + "name": "Ražňany", + "latitude_deg": "49.078056", + "longitude_deg": "21.099722", + "elevation_ft": "1050", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-PV", + "municipality": "Sabinov", + "scheduled_service": "no", + "gps_code": "LZRY", + "home_link": "http://aeroklub-sabinov.com" + }, + { + "id": "30408", + "ident": "LZSE", + "type": "small_airport", + "name": "Senica Airfield", + "latitude_deg": "48.656898", + "longitude_deg": "17.332199", + "elevation_ft": "610", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-TA", + "municipality": "Senica", + "scheduled_service": "no", + "gps_code": "LZSE" + }, + { + "id": "30450", + "ident": "LZSK", + "type": "small_airport", + "name": "Svidník Airfield", + "latitude_deg": "49.3339", + "longitude_deg": "21.570299", + "elevation_ft": "1161", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-PV", + "municipality": "Svidník", + "scheduled_service": "no", + "gps_code": "LZSK" + }, + { + "id": "4621", + "ident": "LZSL", + "type": "medium_airport", + "name": "Sliač Airport", + "latitude_deg": "48.63779830932617", + "longitude_deg": "19.13409996032715", + "elevation_ft": "1043", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BC", + "municipality": "Sliač", + "scheduled_service": "yes", + "gps_code": "LZSL", + "iata_code": "SLD", + "home_link": "http://www.airportsliac.sk/home-engle.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Slia%C4%8D_Airport" + }, + { + "id": "30432", + "ident": "LZSV", + "type": "small_airport", + "name": "Spišská Nová Ves", + "latitude_deg": "48.940833", + "longitude_deg": "20.533889", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "municipality": "Spišská Nová Ves", + "scheduled_service": "no", + "gps_code": "LZSV", + "home_link": "http://www.lzsv.sk", + "keywords": "Spišská Nová Ves" + }, + { + "id": "315500", + "ident": "LZSY", + "type": "small_airport", + "name": "Šurany", + "latitude_deg": "48.075971", + "longitude_deg": "18.114002", + "elevation_ft": "384", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-NJ", + "scheduled_service": "no", + "gps_code": "LZSY" + }, + { + "id": "4622", + "ident": "LZTN", + "type": "small_airport", + "name": "Trenčín Airfield", + "latitude_deg": "48.865002", + "longitude_deg": "17.9923", + "elevation_ft": "676", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-TC", + "municipality": "Trenčín", + "scheduled_service": "no", + "gps_code": "LZTN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tren%C4%8D%C3%ADn_Airfield" + }, + { + "id": "29716", + "ident": "LZTR", + "type": "small_airport", + "name": "Trnava", + "latitude_deg": "48.4557991", + "longitude_deg": "17.5263996", + "elevation_ft": "656", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-TA", + "municipality": "Boleráz", + "scheduled_service": "no", + "gps_code": "LZTR", + "home_link": "http://www.aktrnava.sk" + }, + { + "id": "4623", + "ident": "LZTT", + "type": "medium_airport", + "name": "Poprad-Tatry Airport", + "latitude_deg": "49.073601", + "longitude_deg": "20.2411", + "elevation_ft": "2356", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-PV", + "municipality": "Poprad", + "scheduled_service": "yes", + "gps_code": "LZTT", + "iata_code": "TAT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Poprad-Tatry_Airport" + }, + { + "id": "30519", + "ident": "LZVB", + "type": "closed", + "name": "Vajnory Slovaki Airfield", + "latitude_deg": "48.204399", + "longitude_deg": "17.1917", + "elevation_ft": "430", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BL", + "municipality": "Bratislava", + "scheduled_service": "no", + "gps_code": "LZVB" + }, + { + "id": "4624", + "ident": "LZZI", + "type": "medium_airport", + "name": "Žilina Airport", + "latitude_deg": "49.231499", + "longitude_deg": "18.613501", + "elevation_ft": "1020", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-ZI", + "municipality": "Žilina", + "scheduled_service": "no", + "gps_code": "LZZI", + "iata_code": "ILZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C5%BDilina_Airport" + }, + { + "id": "21735", + "ident": "M00", + "type": "seaplane_base", + "name": "Augusta Seaplane Base", + "latitude_deg": "44.267601013183594", + "longitude_deg": "-69.78170013427734", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Augusta", + "scheduled_service": "no", + "gps_code": "M00", + "local_code": "M00" + }, + { + "id": "21736", + "ident": "M06", + "type": "seaplane_base", + "name": "Havre De Grace Seaplane Base", + "latitude_deg": "39.541500091552734", + "longitude_deg": "-76.0697021484375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Havre De Grace", + "scheduled_service": "no", + "gps_code": "M06", + "local_code": "M06" + }, + { + "id": "21737", + "ident": "M10", + "type": "small_airport", + "name": "Mountainair Municipal Airport", + "latitude_deg": "34.53329849243164", + "longitude_deg": "-106.2239990234375", + "elevation_ft": "6492", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Mountainair", + "scheduled_service": "no", + "gps_code": "M10", + "local_code": "M10" + }, + { + "id": "21738", + "ident": "M14", + "type": "seaplane_base", + "name": "Mal's Serpent Lake Seaplane Base", + "latitude_deg": "46.474098205566406", + "longitude_deg": "-93.9186019897461", + "elevation_ft": "1246", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Deerwood", + "scheduled_service": "no", + "gps_code": "M14", + "local_code": "M14" + }, + { + "id": "21739", + "ident": "M26", + "type": "small_airport", + "name": "Drummond Airport", + "latitude_deg": "46.621599", + "longitude_deg": "-113.201751", + "elevation_ft": "4245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Drummond", + "scheduled_service": "no", + "iata_code": "DRU", + "local_code": "M26" + }, + { + "id": "21740", + "ident": "M28", + "type": "small_airport", + "name": "Mid Continent Airport", + "latitude_deg": "36.225101470947266", + "longitude_deg": "-89.72789764404297", + "elevation_ft": "268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hayti", + "scheduled_service": "no", + "gps_code": "M28", + "local_code": "M28" + }, + { + "id": "21741", + "ident": "M35", + "type": "seaplane_base", + "name": "Lindey's Landing West Seaplane Base", + "latitude_deg": "47.174400329589844", + "longitude_deg": "-113.4800033569336", + "elevation_ft": "3993", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Seeley Lake", + "scheduled_service": "no", + "gps_code": "M35", + "local_code": "M35" + }, + { + "id": "21742", + "ident": "M38", + "type": "small_airport", + "name": "Hazel Green Airport", + "latitude_deg": "34.91619873046875", + "longitude_deg": "-86.64689636230469", + "elevation_ft": "814", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Hazel Green", + "scheduled_service": "no", + "gps_code": "M38", + "local_code": "M38" + }, + { + "id": "21743", + "ident": "M47", + "type": "closed", + "name": "Fife Lake Seaplane Base", + "latitude_deg": "44.567501", + "longitude_deg": "-85.3442", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Fife Lake", + "scheduled_service": "no", + "keywords": "M47" + }, + { + "id": "21744", + "ident": "M49", + "type": "seaplane_base", + "name": "Jolly Fisherman Seaplane Base", + "latitude_deg": "47.143001556396484", + "longitude_deg": "-95.52890014648438", + "elevation_ft": "1499", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Waubun", + "scheduled_service": "no", + "gps_code": "M49", + "local_code": "M49" + }, + { + "id": "21745", + "ident": "M57", + "type": "seaplane_base", + "name": "Rangeley Lake Seaplane Base", + "latitude_deg": "44.95330047607422", + "longitude_deg": "-70.66310119628906", + "elevation_ft": "1518", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Rangeley", + "scheduled_service": "no", + "gps_code": "M57", + "local_code": "M57" + }, + { + "id": "21746", + "ident": "M61", + "type": "small_airport", + "name": "Edward F Johnson Airport", + "latitude_deg": "46.34519958496094", + "longitude_deg": "-87.78849792480469", + "elevation_ft": "1446", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ishpeming", + "scheduled_service": "no", + "gps_code": "M61", + "local_code": "M61" + }, + { + "id": "21747", + "ident": "M62", + "type": "heliport", + "name": "Rotorcraft Heliport", + "latitude_deg": "46.2066993713", + "longitude_deg": "-114.152999878", + "elevation_ft": "3630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Hamilton", + "scheduled_service": "yes", + "gps_code": "M62", + "local_code": "M62" + }, + { + "id": "21748", + "ident": "M69", + "type": "seaplane_base", + "name": "Birch Lake Seaplane Base", + "latitude_deg": "46.36970138549805", + "longitude_deg": "-93.81390380859375", + "elevation_ft": "1278", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Deerwood", + "scheduled_service": "no", + "gps_code": "M69", + "local_code": "M69" + }, + { + "id": "21749", + "ident": "M74", + "type": "small_airport", + "name": "Bald Knob Municipal Airport", + "latitude_deg": "35.30039978027344", + "longitude_deg": "-91.55760192871094", + "elevation_ft": "212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Bald Knob", + "scheduled_service": "no", + "gps_code": "M74", + "local_code": "M74" + }, + { + "id": "21750", + "ident": "M84", + "type": "small_airport", + "name": "Erie Aerodrome", + "latitude_deg": "41.78310012817383", + "longitude_deg": "-83.51689910888672", + "elevation_ft": "605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Erie", + "scheduled_service": "no", + "gps_code": "M84", + "local_code": "M84" + }, + { + "id": "21751", + "ident": "M86", + "type": "small_airport", + "name": "Walle Field", + "latitude_deg": "42.47090148925781", + "longitude_deg": "-86.1272964477539", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Pullman", + "scheduled_service": "no", + "gps_code": "M86", + "local_code": "M86" + }, + { + "id": "45427", + "ident": "M97", + "type": "small_airport", + "name": "Morehead-Rowan County Clyde A. Thomas Regional Airport", + "latitude_deg": "38.215", + "longitude_deg": "-83.587611", + "elevation_ft": "1028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Morehead", + "scheduled_service": "no", + "gps_code": "KSYM", + "local_code": "SYM", + "home_link": "http://mrcairport.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Morehead-Rowan_County_Clyde_A._Thomas_Regional_Airport", + "keywords": "M97" + }, + { + "id": "353212", + "ident": "MA-0001", + "type": "heliport", + "name": "Cheikh Khalifa Bin Zayed Al Nahyan Hospital Heliport", + "latitude_deg": "33.55178", + "longitude_deg": "-7.66799", + "elevation_ft": "194", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-CAS", + "municipality": "Casablanca", + "scheduled_service": "no" + }, + { + "id": "353213", + "ident": "MA-0002", + "type": "small_airport", + "name": "Lakhmiss N'Arazane Airport", + "latitude_deg": "30.49707", + "longitude_deg": "-8.63648", + "elevation_ft": "1204", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-TAR", + "municipality": "Arazane", + "scheduled_service": "no" + }, + { + "id": "356161", + "ident": "MA-0003", + "type": "medium_airport", + "name": "Mahbes Airbase", + "latitude_deg": "27.726982", + "longitude_deg": "-9.237865", + "elevation_ft": "1623", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-U-A", + "scheduled_service": "no", + "gps_code": "GMAR" + }, + { + "id": "356354", + "ident": "MA-0004", + "type": "small_airport", + "name": "Tata Airport", + "latitude_deg": "29.557381", + "longitude_deg": "-8.007671", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-AGD", + "municipality": "Tata", + "scheduled_service": "no" + }, + { + "id": "429794", + "ident": "MA-0005", + "type": "heliport", + "name": "Beni Amir Heliport", + "latitude_deg": "32.67406", + "longitude_deg": "-6.76116", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-BEM", + "municipality": "Tlete Aoulad Azouz", + "scheduled_service": "no" + }, + { + "id": "429795", + "ident": "MA-0006", + "type": "small_airport", + "name": "Khouribga Air Base", + "latitude_deg": "32.85821", + "longitude_deg": "-6.9461", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-KHO", + "municipality": "Khouribga", + "scheduled_service": "no" + }, + { + "id": "429796", + "ident": "MA-0007", + "type": "small_airport", + "name": "Khouribga West Airport", + "latitude_deg": "32.8767", + "longitude_deg": "-7.08445", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-KHO", + "municipality": "N'Khila", + "scheduled_service": "no" + }, + { + "id": "429797", + "ident": "MA-0008", + "type": "small_airport", + "name": "Ben Guerir Air Base", + "latitude_deg": "32.124889", + "longitude_deg": "-7.877884", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-MAR", + "municipality": "Ouled Ben Anou Grichate", + "scheduled_service": "no" + }, + { + "id": "429798", + "ident": "MA-0009", + "type": "small_airport", + "name": "Sidi Zouine Airport", + "latitude_deg": "31.63833", + "longitude_deg": "-8.34768", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-MAR", + "municipality": "Sidi Zouine", + "scheduled_service": "no" + }, + { + "id": "31539", + "ident": "MA-GLN", + "type": "small_airport", + "name": "Guelmim Airport", + "latitude_deg": "29.026699", + "longitude_deg": "-10.0503", + "elevation_ft": "984", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-TIZ", + "municipality": "Guelmim", + "scheduled_service": "no", + "gps_code": "GMAG", + "iata_code": "GLN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guelmim_Airport", + "keywords": "Goulimime" + }, + { + "id": "330494", + "ident": "MA01", + "type": "heliport", + "name": "Gillette Stadium Heliport", + "latitude_deg": "42.088661", + "longitude_deg": "-71.263289", + "elevation_ft": "271", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Foxborough", + "scheduled_service": "no", + "gps_code": "MA01", + "local_code": "MA01" + }, + { + "id": "334333", + "ident": "MA02", + "type": "heliport", + "name": "MSP GHQ Heliport", + "latitude_deg": "42.296594", + "longitude_deg": "-71.415831", + "elevation_ft": "203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Framingham", + "scheduled_service": "no", + "gps_code": "MA02", + "local_code": "MA02" + }, + { + "id": "21752", + "ident": "MA07", + "type": "small_airport", + "name": "Friends Ultralightport", + "latitude_deg": "41.56760025024414", + "longitude_deg": "-71.11920166015625", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Westport", + "scheduled_service": "no", + "gps_code": "MA07", + "local_code": "MA07" + }, + { + "id": "345683", + "ident": "MA09", + "type": "heliport", + "name": "Mojarr Heliport", + "latitude_deg": "42.050324", + "longitude_deg": "-71.890213", + "elevation_ft": "458", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Dudley", + "scheduled_service": "no", + "gps_code": "MA09", + "local_code": "MA09" + }, + { + "id": "21753", + "ident": "MA10", + "type": "heliport", + "name": "Chambers Heliport", + "latitude_deg": "42.378163", + "longitude_deg": "-71.088552", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Somerville", + "scheduled_service": "no", + "gps_code": "MA10", + "local_code": "MA10" + }, + { + "id": "324378", + "ident": "MA11", + "type": "heliport", + "name": "Dog Fish Bar Heliport", + "latitude_deg": "41.354222", + "longitude_deg": "-70.804756", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Aquinnah", + "scheduled_service": "no", + "gps_code": "MA11", + "local_code": "MA11" + }, + { + "id": "21754", + "ident": "MA12", + "type": "seaplane_base", + "name": "Marston Mills Seaplane Base", + "latitude_deg": "41.66899871826172", + "longitude_deg": "-70.4175033569336", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Marstons Mills", + "scheduled_service": "no", + "gps_code": "MA12", + "local_code": "MA12" + }, + { + "id": "21755", + "ident": "MA13", + "type": "heliport", + "name": "Nugent Heliport", + "latitude_deg": "42.627899169921875", + "longitude_deg": "-70.63780212402344", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Gloucester", + "scheduled_service": "no", + "gps_code": "MA13", + "local_code": "MA13" + }, + { + "id": "21756", + "ident": "MA14", + "type": "heliport", + "name": "Wheeler's Point Heliport", + "latitude_deg": "42.6393013", + "longitude_deg": "-70.68029785", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Gloucester", + "scheduled_service": "no", + "gps_code": "MA14", + "local_code": "MA14" + }, + { + "id": "21757", + "ident": "MA15", + "type": "heliport", + "name": "Pond Road Heliport", + "latitude_deg": "42.62839889526367", + "longitude_deg": "-70.64340209960938", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Gloucester", + "scheduled_service": "no", + "gps_code": "MA15", + "local_code": "MA15" + }, + { + "id": "21758", + "ident": "MA16", + "type": "small_airport", + "name": "Marshall's Airport", + "latitude_deg": "42.363399505615234", + "longitude_deg": "-71.82170104980469", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Holden", + "scheduled_service": "no", + "gps_code": "MA16", + "local_code": "MA16" + }, + { + "id": "21759", + "ident": "MA17", + "type": "closed", + "name": "Avco/Lowell Heliport", + "latitude_deg": "42.615398", + "longitude_deg": "-71.3209", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Lowell", + "scheduled_service": "no", + "keywords": "MA17" + }, + { + "id": "21760", + "ident": "MA18", + "type": "small_airport", + "name": "Cmelak Field", + "latitude_deg": "42.0791015625", + "longitude_deg": "-73.30719757080078", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Sheffield", + "scheduled_service": "no", + "gps_code": "MA18", + "local_code": "MA18" + }, + { + "id": "21761", + "ident": "MA19", + "type": "closed", + "name": "Berlin Lndg Area", + "latitude_deg": "42.367595", + "longitude_deg": "-71.641701", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Berlin", + "scheduled_service": "no", + "keywords": "MA19" + }, + { + "id": "21762", + "ident": "MA2", + "type": "closed", + "name": "Merrimack Valley Seaplane Base", + "latitude_deg": "42.7001", + "longitude_deg": "-71.216202", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Methuen", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Merrimack_Valley_Seaplane_Base", + "keywords": "MA2" + }, + { + "id": "21763", + "ident": "MA20", + "type": "heliport", + "name": "Beverly Hospital Heliport", + "latitude_deg": "42.566200256347656", + "longitude_deg": "-70.87750244140625", + "elevation_ft": "84", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Beverly", + "scheduled_service": "no", + "gps_code": "MA20", + "local_code": "MA20" + }, + { + "id": "21764", + "ident": "MA21", + "type": "heliport", + "name": "Baybank Heliport", + "latitude_deg": "42.481201171875", + "longitude_deg": "-71.20760345458984", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "MA21", + "local_code": "MA21" + }, + { + "id": "21765", + "ident": "MA22", + "type": "heliport", + "name": "The Beat Heliport", + "latitude_deg": "42.315128", + "longitude_deg": "-71.049264", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Boston", + "scheduled_service": "no", + "gps_code": "MA22", + "local_code": "MA22", + "keywords": "Boston Globe Heliport" + }, + { + "id": "21766", + "ident": "MA23", + "type": "heliport", + "name": "North Bay Heliport", + "latitude_deg": "41.62730026245117", + "longitude_deg": "-70.39969635009766", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Osterville", + "scheduled_service": "no", + "gps_code": "MA23", + "local_code": "MA23" + }, + { + "id": "21767", + "ident": "MA24", + "type": "closed", + "name": "Museum of Science Heliport", + "latitude_deg": "42.367595", + "longitude_deg": "-71.071702", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Boston", + "scheduled_service": "no", + "keywords": "MA24" + }, + { + "id": "21768", + "ident": "MA25", + "type": "seaplane_base", + "name": "Long Pond Seaplane Base", + "latitude_deg": "41.73210144042969", + "longitude_deg": "-70.06109619140625", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Brewster", + "scheduled_service": "no", + "gps_code": "MA25", + "local_code": "MA25" + }, + { + "id": "21769", + "ident": "MA26", + "type": "balloonport", + "name": "Balloon Port At Dingley Dell Balloonport", + "latitude_deg": "42.120399475097656", + "longitude_deg": "-72.2562026977539", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Brimfield", + "scheduled_service": "no", + "gps_code": "MA26", + "local_code": "MA26" + }, + { + "id": "21770", + "ident": "MA27", + "type": "heliport", + "name": "Goddard Hosp Heliport", + "latitude_deg": "42.1003990173", + "longitude_deg": "-71.0820007324", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Brockton", + "scheduled_service": "no", + "gps_code": "MA27", + "local_code": "MA27" + }, + { + "id": "21771", + "ident": "MA28", + "type": "heliport", + "name": "Congamond Lake Heliport", + "latitude_deg": "42.03340148925781", + "longitude_deg": "-72.75980377197266", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Southwick", + "scheduled_service": "no", + "gps_code": "MA28", + "local_code": "MA28" + }, + { + "id": "21772", + "ident": "MA29", + "type": "heliport", + "name": "Camp Edwards Heliport", + "latitude_deg": "41.67150115966797", + "longitude_deg": "-70.5647964477539", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Bourne", + "scheduled_service": "no", + "gps_code": "MA29", + "local_code": "MA29" + }, + { + "id": "21773", + "ident": "MA30", + "type": "small_airport", + "name": "Dresser Hill Airport", + "latitude_deg": "42.10217", + "longitude_deg": "-71.969118", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Charlton", + "scheduled_service": "no", + "gps_code": "MA30", + "local_code": "MA30" + }, + { + "id": "21774", + "ident": "MA31", + "type": "heliport", + "name": "Charlton Memorial Hospital Heliport", + "latitude_deg": "41.709775", + "longitude_deg": "-71.14683", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Fall River", + "scheduled_service": "no", + "gps_code": "MA31", + "local_code": "MA31" + }, + { + "id": "21775", + "ident": "MA32", + "type": "heliport", + "name": "Atlantic Trade Heliport", + "latitude_deg": "42.261199951171875", + "longitude_deg": "-71.76950073242188", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Worcester", + "scheduled_service": "no", + "gps_code": "MA32", + "local_code": "MA32" + }, + { + "id": "21776", + "ident": "MA33", + "type": "heliport", + "name": "Sagamore Hill Heliport", + "latitude_deg": "42.64189910888672", + "longitude_deg": "-70.82679748535156", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Ipswich", + "scheduled_service": "no", + "gps_code": "MA33", + "local_code": "MA33" + }, + { + "id": "21777", + "ident": "MA34", + "type": "heliport", + "name": "Moore Dogs Heliport", + "latitude_deg": "41.92539978027344", + "longitude_deg": "-70.80339813232422", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Carver", + "scheduled_service": "no", + "gps_code": "MA34", + "local_code": "MA34" + }, + { + "id": "21778", + "ident": "MA35", + "type": "heliport", + "name": "Hat Factory Heliport", + "latitude_deg": "42.83509826660156", + "longitude_deg": "-70.93109893798828", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Amesbury", + "scheduled_service": "no", + "gps_code": "MA35", + "local_code": "MA35" + }, + { + "id": "21779", + "ident": "MA36", + "type": "small_airport", + "name": "Snow Airport", + "latitude_deg": "42.666500091552734", + "longitude_deg": "-70.85299682617188", + "elevation_ft": "61", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Ipswich", + "scheduled_service": "no", + "gps_code": "MA36", + "local_code": "MA36" + }, + { + "id": "21780", + "ident": "MA37", + "type": "heliport", + "name": "Falmouth Hospital Heliport", + "latitude_deg": "41.565101623535156", + "longitude_deg": "-70.62449645996094", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Falmouth", + "scheduled_service": "no", + "gps_code": "MA37", + "local_code": "MA37" + }, + { + "id": "21781", + "ident": "MA38", + "type": "heliport", + "name": "Fitchburg Paper Company Heliport", + "latitude_deg": "42.57979965209961", + "longitude_deg": "-71.82869720458984", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Fitchburg", + "scheduled_service": "no", + "gps_code": "MA38", + "local_code": "MA38" + }, + { + "id": "21782", + "ident": "MA39", + "type": "heliport", + "name": "Brigham & Women's Hospital Heliport", + "latitude_deg": "42.336382", + "longitude_deg": "-71.106809", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Boston", + "scheduled_service": "no", + "gps_code": "MA39", + "local_code": "MA39" + }, + { + "id": "21783", + "ident": "MA40", + "type": "seaplane_base", + "name": "Diesel Dogs Seaplane Base", + "latitude_deg": "42.543399810791016", + "longitude_deg": "-71.96839904785156", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Gardner", + "scheduled_service": "no", + "gps_code": "MA40", + "local_code": "MA40" + }, + { + "id": "21784", + "ident": "MA41", + "type": "heliport", + "name": "Princess Lane Heliport", + "latitude_deg": "42.22439956665039", + "longitude_deg": "-71.55970001220703", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Hopkinton", + "scheduled_service": "no", + "gps_code": "MA41", + "local_code": "MA41" + }, + { + "id": "21785", + "ident": "MA42", + "type": "heliport", + "name": "US Coast Guard Gloucester Heliport", + "latitude_deg": "42.6101", + "longitude_deg": "-70.660004", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Gloucester", + "scheduled_service": "no", + "gps_code": "MA42", + "local_code": "MA42" + }, + { + "id": "21786", + "ident": "MA43", + "type": "small_airport", + "name": "Morehaven Airport", + "latitude_deg": "42.072173", + "longitude_deg": "-72.899963", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Granville", + "scheduled_service": "no", + "gps_code": "MA43", + "local_code": "MA43" + }, + { + "id": "21787", + "ident": "MA44", + "type": "small_airport", + "name": "Trade Wind Airport", + "latitude_deg": "41.44179916381836", + "longitude_deg": "-70.57029724121094", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Oak Bluffs", + "scheduled_service": "no", + "gps_code": "MA44", + "local_code": "MA44" + }, + { + "id": "21788", + "ident": "MA45", + "type": "heliport", + "name": "Simmons Heliport", + "latitude_deg": "42.125143", + "longitude_deg": "-70.843835", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Hanover", + "scheduled_service": "no", + "gps_code": "MA45", + "local_code": "MA45" + }, + { + "id": "21789", + "ident": "MA46", + "type": "heliport", + "name": "Army National Guard Heliport", + "latitude_deg": "42.130699157714844", + "longitude_deg": "-71.48419952392578", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "MA46", + "local_code": "MA46" + }, + { + "id": "21790", + "ident": "MA47", + "type": "heliport", + "name": "Chicopee Heliport", + "latitude_deg": "42.18259811401367", + "longitude_deg": "-72.5615005493164", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Chicopee", + "scheduled_service": "no", + "gps_code": "MA47", + "local_code": "MA47" + }, + { + "id": "21791", + "ident": "MA48", + "type": "heliport", + "name": "Raytheon Heliport", + "latitude_deg": "42.430650833333", + "longitude_deg": "-71.252556388889", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "MA48", + "local_code": "MA48" + }, + { + "id": "21792", + "ident": "MA49", + "type": "heliport", + "name": "Metro-Swift Heliport", + "latitude_deg": "42.54119873046875", + "longitude_deg": "-70.92759704589844", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Peabody", + "scheduled_service": "no", + "gps_code": "MA49", + "local_code": "MA49" + }, + { + "id": "21793", + "ident": "MA50", + "type": "heliport", + "name": "Compaq Marlboro Heliport", + "latitude_deg": "42.32619857788086", + "longitude_deg": "-71.57620239257812", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Marlboro", + "scheduled_service": "no", + "gps_code": "MA50", + "local_code": "MA50" + }, + { + "id": "21794", + "ident": "MA51", + "type": "heliport", + "name": "Richie's Heliport", + "latitude_deg": "41.63819885253906", + "longitude_deg": "-71.03890228271484", + "elevation_ft": "104", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "North Dartmouth", + "scheduled_service": "no", + "gps_code": "MA51", + "local_code": "MA51" + }, + { + "id": "21795", + "ident": "MA52", + "type": "small_airport", + "name": "Sids Airport", + "latitude_deg": "42.43817138671875", + "longitude_deg": "-71.47024536132812", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Maynard", + "scheduled_service": "no", + "gps_code": "MA52", + "local_code": "MA52" + }, + { + "id": "21796", + "ident": "MA53", + "type": "small_airport", + "name": "Ware Airport", + "latitude_deg": "42.282001495361", + "longitude_deg": "-72.214797973633", + "elevation_ft": "483", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Ware", + "scheduled_service": "no", + "gps_code": "MA53", + "iata_code": "UWA", + "local_code": "MA53", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ware_Airport" + }, + { + "id": "21797", + "ident": "MA54", + "type": "heliport", + "name": "B-Town Heliport", + "latitude_deg": "42.30009841918945", + "longitude_deg": "-72.42620086669922", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Belchertown", + "scheduled_service": "no", + "gps_code": "MA54", + "local_code": "MA54" + }, + { + "id": "21798", + "ident": "MA55", + "type": "small_airport", + "name": "Muskeget Island Airport", + "latitude_deg": "41.334800720214844", + "longitude_deg": "-70.29949951171875", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Muskeget Island", + "scheduled_service": "no", + "gps_code": "MA55", + "local_code": "MA55" + }, + { + "id": "21799", + "ident": "MA56", + "type": "heliport", + "name": "Boston Scientific Natick Heliport", + "latitude_deg": "42.30500030517578", + "longitude_deg": "-71.37529754638672", + "elevation_ft": "167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Natick", + "scheduled_service": "no", + "gps_code": "MA56", + "local_code": "MA56" + }, + { + "id": "21800", + "ident": "MA57", + "type": "heliport", + "name": "Us Property & Fiscal Office Heliport", + "latitude_deg": "42.28340148925781", + "longitude_deg": "-71.36620330810547", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Natick", + "scheduled_service": "no", + "gps_code": "MA57", + "local_code": "MA57" + }, + { + "id": "21801", + "ident": "MA58", + "type": "heliport", + "name": "Natick Army Laboratories Heliport", + "latitude_deg": "42.2865243967", + "longitude_deg": "-71.3606858253", + "elevation_ft": "143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Natick", + "scheduled_service": "no", + "gps_code": "MA58", + "local_code": "MA58" + }, + { + "id": "21802", + "ident": "MA59", + "type": "closed", + "name": "Veracka Heliport", + "latitude_deg": "42.045104", + "longitude_deg": "-71.009202", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Brockton", + "scheduled_service": "no", + "keywords": "MA59" + }, + { + "id": "21803", + "ident": "MA6", + "type": "seaplane_base", + "name": "Monponsett Pond Seaplane Base", + "latitude_deg": "42.00979995727539", + "longitude_deg": "-70.84310150146484", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Halifax", + "scheduled_service": "no", + "gps_code": "MA6", + "local_code": "MA6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monponsett_Pond_Seaplane_Base" + }, + { + "id": "21804", + "ident": "MA60", + "type": "heliport", + "name": "St Luke's Hospital Heliport", + "latitude_deg": "41.89400100708008", + "longitude_deg": "-70.91500091552734", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Middleborough", + "scheduled_service": "no", + "gps_code": "MA60", + "local_code": "MA60" + }, + { + "id": "21805", + "ident": "MA62", + "type": "closed", + "name": "Sampson Pond Heliport", + "latitude_deg": "41.860401", + "longitude_deg": "-70.751701", + "elevation_ft": "167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Carver", + "scheduled_service": "no", + "keywords": "MA62" + }, + { + "id": "21806", + "ident": "MA63", + "type": "small_airport", + "name": "Sherman-Private Airport", + "latitude_deg": "42.07400131225586", + "longitude_deg": "-70.79810333251953", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Pembroke", + "scheduled_service": "no", + "gps_code": "MA63", + "local_code": "MA63" + }, + { + "id": "21807", + "ident": "MA64", + "type": "small_airport", + "name": "Pheasant Field", + "latitude_deg": "42.075401306152344", + "longitude_deg": "-70.81529998779297", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Pembroke", + "scheduled_service": "no", + "gps_code": "MA64", + "local_code": "MA64" + }, + { + "id": "21808", + "ident": "MA65", + "type": "seaplane_base", + "name": "Island Air Service Seaplane Base", + "latitude_deg": "41.77180099487305", + "longitude_deg": "-70.87310028076172", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Rochester", + "scheduled_service": "no", + "gps_code": "MA65", + "local_code": "MA65" + }, + { + "id": "21809", + "ident": "MA66", + "type": "closed", + "name": "Wolomolopoag STOLport", + "latitude_deg": "42.100701", + "longitude_deg": "-71.207802", + "elevation_ft": "276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Sharon", + "scheduled_service": "no", + "keywords": "MA66" + }, + { + "id": "21810", + "ident": "MA67", + "type": "heliport", + "name": "Tgp Heliport", + "latitude_deg": "42.03450012207031", + "longitude_deg": "-72.63200378417969", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Agawam", + "scheduled_service": "no", + "gps_code": "MA67", + "local_code": "MA67" + }, + { + "id": "21811", + "ident": "MA68", + "type": "heliport", + "name": "Massachusetts Mutual Life Insurance Co Heliport", + "latitude_deg": "42.116209", + "longitude_deg": "-72.542545", + "elevation_ft": "206", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "MA68", + "local_code": "MA68" + }, + { + "id": "21812", + "ident": "MA69", + "type": "heliport", + "name": "New England Memorial Hospital Heliport", + "latitude_deg": "42.451499938964844", + "longitude_deg": "-71.08699798583984", + "elevation_ft": "219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Stoneham", + "scheduled_service": "no", + "gps_code": "MA69", + "local_code": "MA69" + }, + { + "id": "21813", + "ident": "MA70", + "type": "small_airport", + "name": "Sudbury Airport", + "latitude_deg": "42.35089874267578", + "longitude_deg": "-71.42980194091797", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Sudbury", + "scheduled_service": "no", + "gps_code": "MA70", + "local_code": "MA70" + }, + { + "id": "21814", + "ident": "MA71", + "type": "heliport", + "name": "Davna Corp Heliport", + "latitude_deg": "42.15510177612305", + "longitude_deg": "-71.38619995117188", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Millis", + "scheduled_service": "no", + "gps_code": "MA71", + "local_code": "MA71" + }, + { + "id": "21815", + "ident": "MA72", + "type": "small_airport", + "name": "Tuckernuck Airport", + "latitude_deg": "41.29750061035156", + "longitude_deg": "-70.2603988647461", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Tuckernuck Island", + "scheduled_service": "no", + "gps_code": "MA72", + "local_code": "MA72" + }, + { + "id": "21816", + "ident": "MA73", + "type": "closed", + "name": "Oxbow Corporation Heliport", + "latitude_deg": "42.218201", + "longitude_deg": "-71.297302", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Dover", + "scheduled_service": "no", + "keywords": "MA73" + }, + { + "id": "21817", + "ident": "MA74", + "type": "seaplane_base", + "name": "Larson's Seaplane Base", + "latitude_deg": "42.69150161743164", + "longitude_deg": "-71.41809844970703", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Tyngsboro", + "scheduled_service": "no", + "gps_code": "MA74", + "local_code": "MA74" + }, + { + "id": "21818", + "ident": "MA75", + "type": "small_airport", + "name": "Sky Glen Airport", + "latitude_deg": "42.04090118408203", + "longitude_deg": "-71.61620330810547", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Uxbridge", + "scheduled_service": "no", + "gps_code": "MA75", + "local_code": "MA75" + }, + { + "id": "21819", + "ident": "MA76", + "type": "heliport", + "name": "Waltham Weston Hospital & Medical Center Heliport", + "latitude_deg": "42.36759948730469", + "longitude_deg": "-71.24810028076172", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Waltham", + "scheduled_service": "no", + "gps_code": "MA76", + "local_code": "MA76" + }, + { + "id": "21820", + "ident": "MA77", + "type": "small_airport", + "name": "Blueberry Hill Airport", + "latitude_deg": "42.375099182128906", + "longitude_deg": "-73.14759826660156", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "MA77", + "local_code": "MA77" + }, + { + "id": "21821", + "ident": "MA78", + "type": "seaplane_base", + "name": "Russell Mill Pond Seaplane Base", + "latitude_deg": "41.91790008544922", + "longitude_deg": "-70.62779998779297", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "MA78", + "local_code": "MA78" + }, + { + "id": "21822", + "ident": "MA79", + "type": "heliport", + "name": "Digital Heliport", + "latitude_deg": "42.175899505615234", + "longitude_deg": "-72.72480010986328", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Westfield", + "scheduled_service": "no", + "gps_code": "MA79", + "local_code": "MA79" + }, + { + "id": "21823", + "ident": "MA80", + "type": "small_airport", + "name": "Mundale Airport", + "latitude_deg": "42.121431", + "longitude_deg": "-72.812046", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Westfield", + "scheduled_service": "no", + "gps_code": "MA80", + "local_code": "MA80" + }, + { + "id": "21824", + "ident": "MA81", + "type": "heliport", + "name": "Digital Heliport", + "latitude_deg": "42.55509948730469", + "longitude_deg": "-71.92559814453125", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Westminster", + "scheduled_service": "no", + "gps_code": "MA81", + "local_code": "MA81" + }, + { + "id": "21825", + "ident": "MA82", + "type": "seaplane_base", + "name": "Westport Seaplane Base", + "latitude_deg": "41.64929962158203", + "longitude_deg": "-71.12590026855469", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Westport", + "scheduled_service": "no", + "gps_code": "MA82", + "local_code": "MA82" + }, + { + "id": "21826", + "ident": "MA83", + "type": "heliport", + "name": "Hubbard Regional Hospital Heliport", + "latitude_deg": "42.0275993347168", + "longitude_deg": "-71.85030364990234", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Webster", + "scheduled_service": "no", + "gps_code": "MA83", + "local_code": "MA83" + }, + { + "id": "21827", + "ident": "MA84", + "type": "heliport", + "name": "Sprague Nr 1 Heliport", + "latitude_deg": "42.72090148925781", + "longitude_deg": "-73.2134017944336", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Williamstown", + "scheduled_service": "no", + "gps_code": "MA84", + "local_code": "MA84" + }, + { + "id": "21828", + "ident": "MA85", + "type": "heliport", + "name": "Sprague Nr 2 Heliport", + "latitude_deg": "42.71950149536133", + "longitude_deg": "-73.2134017944336", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Williamstown", + "scheduled_service": "no", + "gps_code": "MA85", + "local_code": "MA85" + }, + { + "id": "21829", + "ident": "MA86", + "type": "small_airport", + "name": "Kendalls Lndg Area Airport", + "latitude_deg": "42.5055999756", + "longitude_deg": "-73.0597991943", + "elevation_ft": "2102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Windsor", + "scheduled_service": "no", + "gps_code": "MA86", + "local_code": "MA86" + }, + { + "id": "21830", + "ident": "MA87", + "type": "closed", + "name": "Horseneck Seaplane Base", + "latitude_deg": "41.509801", + "longitude_deg": "-71.038101", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Westport", + "scheduled_service": "no", + "keywords": "MA87" + }, + { + "id": "21831", + "ident": "MA88", + "type": "small_airport", + "name": "Albert Farms Airport", + "latitude_deg": "42.390098571777344", + "longitude_deg": "-72.93090057373047", + "elevation_ft": "1425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Worthington", + "scheduled_service": "no", + "gps_code": "MA88", + "local_code": "MA88" + }, + { + "id": "21832", + "ident": "MA89", + "type": "small_airport", + "name": "B&B Farm Airport", + "latitude_deg": "42.346099853515625", + "longitude_deg": "-72.10389709472656", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "New Braintree", + "scheduled_service": "no", + "gps_code": "MA89", + "local_code": "MA89" + }, + { + "id": "21833", + "ident": "MA90", + "type": "heliport", + "name": "Host Hotel Heliport", + "latitude_deg": "42.4812048652", + "longitude_deg": "-71.54731392859999", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Boxborough", + "scheduled_service": "no", + "gps_code": "MA90", + "local_code": "MA90" + }, + { + "id": "21834", + "ident": "MA91", + "type": "heliport", + "name": "Compaq Parker Street Heliport", + "latitude_deg": "42.418399810791016", + "longitude_deg": "-71.44730377197266", + "elevation_ft": "178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Maynard", + "scheduled_service": "no", + "gps_code": "MA91", + "local_code": "MA91" + }, + { + "id": "21835", + "ident": "MA92", + "type": "heliport", + "name": "Prospect Hill Heliport", + "latitude_deg": "42.39789962768555", + "longitude_deg": "-71.25779724121094", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Waltham", + "scheduled_service": "no", + "gps_code": "MA92", + "local_code": "MA92" + }, + { + "id": "21836", + "ident": "MA93", + "type": "heliport", + "name": "Bay Bank Ii Heliport", + "latitude_deg": "42.481201171875", + "longitude_deg": "-71.20950317382812", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "MA93", + "local_code": "MA93" + }, + { + "id": "21837", + "ident": "MA94", + "type": "heliport", + "name": "Parker Heliport", + "latitude_deg": "42.27539825439453", + "longitude_deg": "-71.79869842529297", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Worcester", + "scheduled_service": "no", + "gps_code": "MA94", + "local_code": "MA94" + }, + { + "id": "21838", + "ident": "MA95", + "type": "heliport", + "name": "Bear Hole Heliport", + "latitude_deg": "42.12649917602539", + "longitude_deg": "-72.66950225830078", + "elevation_ft": "235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "West Springfield", + "scheduled_service": "no", + "gps_code": "MA95", + "local_code": "MA95" + }, + { + "id": "21839", + "ident": "MA96", + "type": "closed", + "name": "Rent-A-Tool Heliport", + "latitude_deg": "42.427898", + "longitude_deg": "-70.984497", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Revere", + "scheduled_service": "no", + "gps_code": "MA96", + "local_code": "MA96" + }, + { + "id": "21840", + "ident": "MA97", + "type": "small_airport", + "name": "Waters Airport", + "latitude_deg": "42.125099182128906", + "longitude_deg": "-71.73979949951172", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Sutton", + "scheduled_service": "no", + "gps_code": "MA97", + "local_code": "MA97" + }, + { + "id": "21841", + "ident": "MA98", + "type": "heliport", + "name": "Anna Jaques Hospital Heliport", + "latitude_deg": "42.81449890136719", + "longitude_deg": "-70.89089965820312", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Newburyport", + "scheduled_service": "no", + "gps_code": "MA98", + "local_code": "MA98" + }, + { + "id": "21842", + "ident": "MA99", + "type": "heliport", + "name": "Princess House Heliport", + "latitude_deg": "41.86119842529297", + "longitude_deg": "-71.10780334472656", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Taunton", + "scheduled_service": "no", + "gps_code": "MA99", + "local_code": "MA99" + }, + { + "id": "302541", + "ident": "MAP", + "type": "small_airport", + "name": "Mamai Airport", + "latitude_deg": "-10.290833333299998", + "longitude_deg": "149.519166667", + "elevation_ft": "90", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Mamai", + "scheduled_service": "no", + "iata_code": "MAP" + }, + { + "id": "308443", + "ident": "MBAC", + "type": "small_airport", + "name": "Harold Charles International Airport", + "latitude_deg": "21.302649", + "longitude_deg": "-71.637168", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "TC", + "iso_region": "TC-AC", + "municipality": "Big Ambergris Cay", + "scheduled_service": "no", + "gps_code": "MBAC", + "home_link": "http://www.ambergristci.com/documents/12(a).%20Ambergris%20Cay%20Paved%20Jet%20Strip.pdf", + "keywords": "Ambergris Cay Airport" + }, + { + "id": "4626", + "ident": "MBGT", + "type": "medium_airport", + "name": "JAGS McCartney International Airport", + "latitude_deg": "21.4445", + "longitude_deg": "-71.142303", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "TC", + "iso_region": "TC-GT", + "municipality": "Cockburn Town", + "scheduled_service": "yes", + "gps_code": "MBGT", + "iata_code": "GDT", + "wikipedia_link": "https://en.wikipedia.org/wiki/JAGS_McCartney_International_Airport" + }, + { + "id": "31887", + "ident": "MBMC", + "type": "small_airport", + "name": "Middle Caicos Airport", + "latitude_deg": "21.82602", + "longitude_deg": "-71.8025", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "TC", + "iso_region": "TC-MC", + "municipality": "Middle Caicos", + "scheduled_service": "no", + "gps_code": "MBMC", + "iata_code": "MDS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Middle_Caicos_Airport" + }, + { + "id": "4627", + "ident": "MBNC", + "type": "medium_airport", + "name": "North Caicos Airport", + "latitude_deg": "21.916094", + "longitude_deg": "-71.942954", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "TC", + "iso_region": "TC-NC", + "municipality": "North Caicos", + "scheduled_service": "yes", + "gps_code": "MBNC", + "iata_code": "NCA", + "wikipedia_link": "https://en.wikipedia.org/wiki/North_Caicos_Airport" + }, + { + "id": "32159", + "ident": "MBPI", + "type": "small_airport", + "name": "Pine Cay Airport", + "latitude_deg": "21.874661", + "longitude_deg": "-72.090573", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "TC", + "iso_region": "TC-PN", + "municipality": "Pine Cay", + "scheduled_service": "no", + "gps_code": "MBPI", + "iata_code": "PIC" + }, + { + "id": "4628", + "ident": "MBPV", + "type": "large_airport", + "name": "Providenciales International Airport", + "latitude_deg": "21.773697", + "longitude_deg": "-72.268321", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "TC", + "iso_region": "TC-PR", + "municipality": "Providenciales", + "scheduled_service": "yes", + "gps_code": "MBPV", + "iata_code": "PLS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Providenciales_International_Airport" + }, + { + "id": "4629", + "ident": "MBSC", + "type": "medium_airport", + "name": "South Caicos Airport", + "latitude_deg": "21.515699", + "longitude_deg": "-71.528503", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "TC", + "iso_region": "TC-SC", + "municipality": "South Caicos", + "scheduled_service": "yes", + "gps_code": "MBSC", + "iata_code": "XSC", + "wikipedia_link": "https://en.wikipedia.org/wiki/South_Caicos_Airport" + }, + { + "id": "32325", + "ident": "MBSY", + "type": "small_airport", + "name": "Salt Cay Airport", + "latitude_deg": "21.333000183099998", + "longitude_deg": "-71.1999969482", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "TC", + "iso_region": "TC-SL", + "municipality": "Salt Cay", + "scheduled_service": "yes", + "gps_code": "MBSY", + "iata_code": "SLX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salt_Cay_Airport" + }, + { + "id": "319195", + "ident": "MC-0001", + "type": "heliport", + "name": "Terre-Plein du Larvotto Heliport", + "latitude_deg": "43.746543", + "longitude_deg": "7.43894", + "continent": "EU", + "iso_country": "MC", + "iso_region": "MC-U-A", + "municipality": "Larvotto", + "scheduled_service": "no", + "keywords": "Jimmy'z" + }, + { + "id": "340399", + "ident": "MC-0002", + "type": "heliport", + "name": "Princess Grace Hospital Helipad", + "latitude_deg": "43.729392", + "longitude_deg": "7.410111", + "continent": "EU", + "iso_country": "MC", + "iso_region": "MC-U-A", + "municipality": "La Colle", + "scheduled_service": "no" + }, + { + "id": "42753", + "ident": "MD-0001", + "type": "closed", + "name": "Bălţi City Airport", + "latitude_deg": "47.774399", + "longitude_deg": "27.9575", + "continent": "EU", + "iso_country": "MD", + "iso_region": "MD-BL", + "municipality": "Bălţi", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Balti_-_City_Airport" + }, + { + "id": "43694", + "ident": "MD-0002", + "type": "small_airport", + "name": "Vadul lui Voda Airfield", + "latitude_deg": "47.06809997558594", + "longitude_deg": "29.095399856567383", + "continent": "EU", + "iso_country": "MD", + "iso_region": "MD-CU", + "scheduled_service": "no", + "home_link": "http://www.skydive.md/", + "keywords": "Vadul-lui-Voda Airfield, Vadul lui Vodă Airfield, Аэродром Вадул-луй-Водэ" + }, + { + "id": "331602", + "ident": "MD-0003", + "type": "small_airport", + "name": "Horeshti Airfield", + "latitude_deg": "46.83656", + "longitude_deg": "28.901639", + "continent": "EU", + "iso_country": "MD", + "iso_region": "MD-IL", + "municipality": "Horeshti", + "scheduled_service": "no", + "gps_code": "LUKH", + "keywords": "Horești" + }, + { + "id": "332084", + "ident": "MD-0004", + "type": "small_airport", + "name": "Călărași", + "latitude_deg": "47.2521452", + "longitude_deg": "28.2802413", + "continent": "EU", + "iso_country": "MD", + "iso_region": "MD-CL", + "municipality": "Călărași", + "scheduled_service": "no" + }, + { + "id": "346617", + "ident": "MD-0005", + "type": "small_airport", + "name": "Alexanderfeld Airstrip", + "latitude_deg": "45.7945", + "longitude_deg": "28.42239", + "elevation_ft": "528", + "continent": "EU", + "iso_country": "MD", + "iso_region": "MD-CH", + "municipality": "Alexanderfeld", + "scheduled_service": "no" + }, + { + "id": "349413", + "ident": "MD-0006", + "type": "small_airport", + "name": "Baimaclia Airstrip", + "latitude_deg": "46.18065", + "longitude_deg": "28.38241", + "continent": "EU", + "iso_country": "MD", + "iso_region": "MD-CT", + "scheduled_service": "no" + }, + { + "id": "355143", + "ident": "MD-0007", + "type": "small_airport", + "name": "Vinaria Et Cetera Airstrip", + "latitude_deg": "46.45025", + "longitude_deg": "29.92919", + "continent": "EU", + "iso_country": "MD", + "iso_region": "MD-SV", + "scheduled_service": "no" + }, + { + "id": "21845", + "ident": "MD00", + "type": "small_airport", + "name": "Fair's Airport", + "latitude_deg": "38.046199798583984", + "longitude_deg": "-75.55329895019531", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Pocomoke City", + "scheduled_service": "no", + "gps_code": "MD00", + "local_code": "MD00" + }, + { + "id": "21846", + "ident": "MD01", + "type": "small_airport", + "name": "Wingfield Airport", + "latitude_deg": "38.143254", + "longitude_deg": "-76.357244", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Dameron", + "scheduled_service": "no", + "gps_code": "MD01", + "local_code": "MD01", + "keywords": "Ridge" + }, + { + "id": "21847", + "ident": "MD02", + "type": "heliport", + "name": "St. Mary's Hospital East Heliport", + "latitude_deg": "38.30149841308594", + "longitude_deg": "-76.63680267333984", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Leonardtown", + "scheduled_service": "no", + "gps_code": "MD02", + "local_code": "MD02" + }, + { + "id": "21848", + "ident": "MD03", + "type": "small_airport", + "name": "Woodstock Airport", + "latitude_deg": "39.488391", + "longitude_deg": "-75.811531", + "elevation_ft": "81", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Chesapeake City", + "scheduled_service": "no", + "gps_code": "MD03", + "local_code": "MD03" + }, + { + "id": "21849", + "ident": "MD04", + "type": "small_airport", + "name": "Rossneck Airport", + "latitude_deg": "38.56890106201172", + "longitude_deg": "-76.23580169677734", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "MD04", + "local_code": "MD04" + }, + { + "id": "21850", + "ident": "MD05", + "type": "small_airport", + "name": "Finagin Airfield", + "latitude_deg": "38.510921", + "longitude_deg": "-77.122193", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Welcome", + "scheduled_service": "no", + "gps_code": "MD05", + "local_code": "MD05" + }, + { + "id": "21851", + "ident": "MD06", + "type": "small_airport", + "name": "Pilots Cove Airport", + "latitude_deg": "38.336764", + "longitude_deg": "-76.88058", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Newburg", + "scheduled_service": "no", + "gps_code": "MD06", + "local_code": "MD06" + }, + { + "id": "21852", + "ident": "MD07", + "type": "closed", + "name": "Sacred Heart Hospital Heliport", + "latitude_deg": "39.655417", + "longitude_deg": "-78.795524", + "elevation_ft": "1428", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Cumberland", + "scheduled_service": "no", + "keywords": "MD07" + }, + { + "id": "21853", + "ident": "MD08", + "type": "heliport", + "name": "Gregory May Heliport", + "latitude_deg": "39.5345993", + "longitude_deg": "-76.10630035", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Havre De Grace", + "scheduled_service": "no", + "gps_code": "MD08", + "local_code": "MD08" + }, + { + "id": "21854", + "ident": "MD09", + "type": "closed", + "name": "Meadow Brook Airport", + "latitude_deg": "38.915401", + "longitude_deg": "-75.971001", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Queen Anne", + "scheduled_service": "no", + "gps_code": "MD09", + "local_code": "MD09" + }, + { + "id": "21855", + "ident": "MD1", + "type": "small_airport", + "name": "Massey Aerodrome", + "latitude_deg": "39.299198150634766", + "longitude_deg": "-75.79940032958984", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Massey", + "scheduled_service": "no", + "gps_code": "MD1", + "local_code": "MD1" + }, + { + "id": "21856", + "ident": "MD10", + "type": "heliport", + "name": "Baltimore Police Department Heliport", + "latitude_deg": "39.290327", + "longitude_deg": "-76.607675", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Baltimore", + "scheduled_service": "no", + "gps_code": "MD10", + "local_code": "MD10" + }, + { + "id": "21857", + "ident": "MD11", + "type": "small_airport", + "name": "Wright Field", + "latitude_deg": "39.277099609375", + "longitude_deg": "-76.06269836425781", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Chestertown", + "scheduled_service": "no", + "gps_code": "MD11", + "local_code": "MD11" + }, + { + "id": "21858", + "ident": "MD12", + "type": "small_airport", + "name": "Bell Airport", + "latitude_deg": "39.63639831542969", + "longitude_deg": "-77.29280090332031", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Emmittsburg", + "scheduled_service": "no", + "gps_code": "MD12", + "local_code": "MD12" + }, + { + "id": "21859", + "ident": "MD13", + "type": "heliport", + "name": "Black & Decker/Parking Lot 2 Heliport", + "latitude_deg": "39.39899826049805", + "longitude_deg": "-76.58830261230469", + "elevation_ft": "472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Towson", + "scheduled_service": "no", + "gps_code": "MD13", + "local_code": "MD13" + }, + { + "id": "21860", + "ident": "MD14", + "type": "small_airport", + "name": "Robinson Private Airport", + "latitude_deg": "38.524208", + "longitude_deg": "-76.683161", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Hughesville", + "scheduled_service": "no", + "gps_code": "MD14", + "local_code": "MD14" + }, + { + "id": "21861", + "ident": "MD15", + "type": "closed", + "name": "Fallston General Hospital Heliport", + "latitude_deg": "39.497799", + "longitude_deg": "-76.3908", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Bel Air", + "scheduled_service": "no", + "keywords": "MD15" + }, + { + "id": "21862", + "ident": "MD16", + "type": "closed", + "name": "Waredaca Farm Airport", + "latitude_deg": "39.2307014465332", + "longitude_deg": "-77.08329772949219", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Brookeville", + "scheduled_service": "no", + "gps_code": "MD16", + "local_code": "MD16" + }, + { + "id": "21863", + "ident": "MD17", + "type": "closed", + "name": "Tinsley Airstrip", + "latitude_deg": "39.516803", + "longitude_deg": "-76.733002", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Butler", + "scheduled_service": "no", + "keywords": "MD17" + }, + { + "id": "21864", + "ident": "MD18", + "type": "closed", + "name": "Horn Point Airport", + "latitude_deg": "38.589601", + "longitude_deg": "-76.138497", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Cambridge", + "scheduled_service": "no", + "keywords": "MD18" + }, + { + "id": "21865", + "ident": "MD19", + "type": "small_airport", + "name": "Hybarc Farm Airport", + "latitude_deg": "39.20320129394531", + "longitude_deg": "-76.02490234375", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Chestertown", + "scheduled_service": "no", + "gps_code": "MD19", + "local_code": "MD19" + }, + { + "id": "21866", + "ident": "MD20", + "type": "small_airport", + "name": "Greer Airport", + "latitude_deg": "39.635919", + "longitude_deg": "-77.122886", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Taneytown", + "scheduled_service": "no", + "gps_code": "MD20", + "local_code": "MD20" + }, + { + "id": "21867", + "ident": "MD21", + "type": "small_airport", + "name": "Ashland Landing Farm Airport", + "latitude_deg": "39.118099212646484", + "longitude_deg": "-76.09639739990234", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Centreville", + "scheduled_service": "no", + "gps_code": "MD21", + "local_code": "MD21" + }, + { + "id": "21868", + "ident": "MD22", + "type": "small_airport", + "name": "Deale Airport", + "latitude_deg": "38.78340148925781", + "longitude_deg": "-76.564697265625", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Deale", + "scheduled_service": "no", + "gps_code": "MD22", + "local_code": "MD22" + }, + { + "id": "21869", + "ident": "MD23", + "type": "small_airport", + "name": "Kennersley Airport", + "latitude_deg": "39.144798", + "longitude_deg": "-76.040497", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Church Hill", + "scheduled_service": "no", + "gps_code": "MD23", + "local_code": "MD23", + "keywords": "MD23" + }, + { + "id": "21870", + "ident": "MD24", + "type": "closed", + "name": "Haysfield Airport", + "latitude_deg": "39.238201", + "longitude_deg": "-76.946602", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Clarksville", + "scheduled_service": "no", + "keywords": "MD24" + }, + { + "id": "21871", + "ident": "MD25", + "type": "heliport", + "name": "Howard County General Hospital Heliport", + "latitude_deg": "39.214599609375", + "longitude_deg": "-76.88639831542969", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "MD25", + "local_code": "MD25" + }, + { + "id": "21872", + "ident": "MD26", + "type": "closed", + "name": "Beltsville Shop Heliport", + "latitude_deg": "39.050097", + "longitude_deg": "-76.890503", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Beltsville", + "scheduled_service": "no", + "keywords": "MD26" + }, + { + "id": "21873", + "ident": "MD27", + "type": "heliport", + "name": "Chalk Point Generating Station Heliport", + "latitude_deg": "38.55649948", + "longitude_deg": "-76.69270325", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Eagle Harbor", + "scheduled_service": "no", + "gps_code": "MD27", + "local_code": "MD27" + }, + { + "id": "21874", + "ident": "MD28", + "type": "small_airport", + "name": "Ewing Airport", + "latitude_deg": "38.80929946899414", + "longitude_deg": "-75.99220275878906", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Easton", + "scheduled_service": "no", + "gps_code": "MD28", + "local_code": "MD28" + }, + { + "id": "21875", + "ident": "MD29", + "type": "heliport", + "name": "Memorial Hospital Heliport", + "latitude_deg": "38.77220153808594", + "longitude_deg": "-76.0718994140625", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Easton", + "scheduled_service": "no", + "gps_code": "MD29", + "local_code": "MD29" + }, + { + "id": "21876", + "ident": "MD30", + "type": "heliport", + "name": "Craig Company Heliport", + "latitude_deg": "39.64179992675781", + "longitude_deg": "-77.74970245361328", + "elevation_ft": "628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Hagerstown", + "scheduled_service": "no", + "gps_code": "MD30", + "local_code": "MD30" + }, + { + "id": "21877", + "ident": "MD31", + "type": "small_airport", + "name": "Forest Hill Airport", + "latitude_deg": "39.580101013183594", + "longitude_deg": "-76.37470245361328", + "elevation_ft": "476", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Forest Hill", + "scheduled_service": "no", + "gps_code": "MD31", + "local_code": "MD31" + }, + { + "id": "21878", + "ident": "MD32", + "type": "heliport", + "name": "Fort Detrick Helipad Heliport", + "latitude_deg": "39.436500549316406", + "longitude_deg": "-77.42050170898438", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Fort Detrick(Frederick)", + "scheduled_service": "no", + "gps_code": "MD32", + "local_code": "MD32" + }, + { + "id": "21879", + "ident": "MD33", + "type": "heliport", + "name": "Dorchester General Hospital Heliport", + "latitude_deg": "38.571800231933594", + "longitude_deg": "-76.06770324707031", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "MD33", + "local_code": "MD33" + }, + { + "id": "21880", + "ident": "MD34", + "type": "closed", + "name": "Gaithersburg Heliport", + "latitude_deg": "39.15344", + "longitude_deg": "-77.216649", + "elevation_ft": "424", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Gaithersburg", + "scheduled_service": "no", + "gps_code": "MD34", + "local_code": "MD34", + "keywords": "IBM Heliport" + }, + { + "id": "21881", + "ident": "MD35", + "type": "small_airport", + "name": "Spring Hill Airport", + "latitude_deg": "38.43479919433594", + "longitude_deg": "-75.65129852294922", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Hebron", + "scheduled_service": "no", + "gps_code": "MD35", + "local_code": "MD35" + }, + { + "id": "21882", + "ident": "MD36", + "type": "heliport", + "name": "Tar Cove Heliport", + "latitude_deg": "39.14509963989258", + "longitude_deg": "-76.50140380859375", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Glen Burnie", + "scheduled_service": "no", + "gps_code": "MD36", + "local_code": "MD36" + }, + { + "id": "21883", + "ident": "MD37", + "type": "heliport", + "name": "Citizens Bank Headquarters Heliport", + "latitude_deg": "39.087100982666016", + "longitude_deg": "-76.89720153808594", + "elevation_ft": "312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Laurel", + "scheduled_service": "no", + "gps_code": "MD37", + "local_code": "MD37" + }, + { + "id": "21884", + "ident": "MD39", + "type": "small_airport", + "name": "Buds Ferry Airport", + "latitude_deg": "38.520999908447266", + "longitude_deg": "-77.25189971923828", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Indian Head", + "scheduled_service": "no", + "gps_code": "MD39", + "local_code": "MD39" + }, + { + "id": "21885", + "ident": "MD40", + "type": "heliport", + "name": "Mrs Bozman Heliport", + "latitude_deg": "39.54949951171875", + "longitude_deg": "-76.56269836425781", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "MD40", + "local_code": "MD40" + }, + { + "id": "21886", + "ident": "MD41", + "type": "closed", + "name": "Gary Field", + "latitude_deg": "38.8983", + "longitude_deg": "-75.910599", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Denton", + "scheduled_service": "no", + "keywords": "MD41" + }, + { + "id": "21887", + "ident": "MD42", + "type": "small_airport", + "name": "Keymar Airpark", + "latitude_deg": "39.619392", + "longitude_deg": "-77.228544", + "elevation_ft": "437", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Keymar", + "scheduled_service": "no", + "gps_code": "MD42", + "local_code": "MD42" + }, + { + "id": "21888", + "ident": "MD43", + "type": "small_airport", + "name": "Mountain Road Airport", + "latitude_deg": "39.11840057373047", + "longitude_deg": "-76.49659729003906", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Lakeshore", + "scheduled_service": "no", + "gps_code": "MD43", + "local_code": "MD43" + }, + { + "id": "21889", + "ident": "MD44", + "type": "closed", + "name": "Evapco Heliport", + "latitude_deg": "39.653895", + "longitude_deg": "-77.183595", + "elevation_ft": "482", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Taneytown", + "scheduled_service": "no", + "keywords": "MD44" + }, + { + "id": "21890", + "ident": "MD45", + "type": "small_airport", + "name": "Hampton Airport", + "latitude_deg": "38.2307014465332", + "longitude_deg": "-76.62879943847656", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Leonardtown", + "scheduled_service": "no", + "gps_code": "MD45", + "local_code": "MD45" + }, + { + "id": "21891", + "ident": "MD46", + "type": "small_airport", + "name": "Glenair Airport", + "latitude_deg": "39.26959991455078", + "longitude_deg": "-77.00530242919922", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Dayton", + "scheduled_service": "no", + "gps_code": "MD46", + "local_code": "MD46" + }, + { + "id": "21892", + "ident": "MD47", + "type": "small_airport", + "name": "Barnes Airport", + "latitude_deg": "39.33290100097656", + "longitude_deg": "-77.0969009399414", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Lisbon", + "scheduled_service": "no", + "gps_code": "MD47", + "local_code": "MD47" + }, + { + "id": "21893", + "ident": "MD48", + "type": "small_airport", + "name": "Albrecht Airstrip", + "latitude_deg": "39.4734001159668", + "longitude_deg": "-76.50019836425781", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Long Green", + "scheduled_service": "no", + "gps_code": "MD48", + "local_code": "MD48" + }, + { + "id": "21894", + "ident": "MD49", + "type": "heliport", + "name": "Peninsula Regional Medical Center Heliport", + "latitude_deg": "38.362299", + "longitude_deg": "-75.597324", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Salisbury", + "scheduled_service": "no", + "gps_code": "MD49", + "local_code": "MD49" + }, + { + "id": "21895", + "ident": "MD50", + "type": "small_airport", + "name": "Chesapeake Ranch Airport", + "latitude_deg": "38.361198", + "longitude_deg": "-76.405197", + "elevation_ft": "116", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Lusby", + "scheduled_service": "no", + "gps_code": "MD50", + "local_code": "MD50" + }, + { + "id": "21896", + "ident": "MD51", + "type": "heliport", + "name": "Kent & Queen Anne's Hospital Heliport", + "latitude_deg": "39.317901611328125", + "longitude_deg": "-76.06379699707031", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Chestertown", + "scheduled_service": "no", + "gps_code": "MD51", + "local_code": "MD51" + }, + { + "id": "21897", + "ident": "MD52", + "type": "heliport", + "name": "Mccready Memorial Hospital Heliport", + "latitude_deg": "37.96670150756836", + "longitude_deg": "-75.86630249023438", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Crisfield", + "scheduled_service": "no", + "gps_code": "MD52", + "local_code": "MD52" + }, + { + "id": "21898", + "ident": "MD53", + "type": "closed", + "name": "Mac Kinnis Airport", + "latitude_deg": "38.29285", + "longitude_deg": "-75.725541", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Eden", + "scheduled_service": "no", + "keywords": "MD53" + }, + { + "id": "21899", + "ident": "MD54", + "type": "heliport", + "name": "Pier 7 Heliport", + "latitude_deg": "39.27220153808594", + "longitude_deg": "-76.57170104980469", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Baltimore", + "scheduled_service": "no", + "gps_code": "MD54", + "local_code": "MD54" + }, + { + "id": "21900", + "ident": "MD55", + "type": "small_airport", + "name": "Holly Springs Farm Airport", + "latitude_deg": "38.39759826660156", + "longitude_deg": "-77.18609619140625", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Nanjemoy", + "scheduled_service": "no", + "gps_code": "MD55", + "local_code": "MD55" + }, + { + "id": "21901", + "ident": "MD56", + "type": "small_airport", + "name": "Three J Airport", + "latitude_deg": "39.569000244140625", + "longitude_deg": "-77.12139892578125", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "New Windsor", + "scheduled_service": "no", + "gps_code": "MD56", + "local_code": "MD56" + }, + { + "id": "21902", + "ident": "MD57", + "type": "small_airport", + "name": "Beverly Airport", + "latitude_deg": "38.00597", + "longitude_deg": "-75.616236", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Pocomoke City", + "scheduled_service": "no", + "gps_code": "MD57", + "local_code": "MD57" + }, + { + "id": "21903", + "ident": "MD58", + "type": "heliport", + "name": "Montgomery County Police Norwood Heliport", + "latitude_deg": "39.12720108", + "longitude_deg": "-77.02249908", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Olney", + "scheduled_service": "no", + "gps_code": "MD58", + "local_code": "MD58" + }, + { + "id": "21904", + "ident": "MD59", + "type": "small_airport", + "name": "Silver Hill Airport", + "latitude_deg": "39.139801025390625", + "longitude_deg": "-76.09359741210938", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Chestertown", + "scheduled_service": "no", + "gps_code": "MD59", + "local_code": "MD59" + }, + { + "id": "21905", + "ident": "MD60", + "type": "heliport", + "name": "Northwest Hospital Heliport", + "latitude_deg": "39.3590011597", + "longitude_deg": "-76.7816009521", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Randallstown", + "scheduled_service": "no", + "gps_code": "MD60", + "local_code": "MD60" + }, + { + "id": "21906", + "ident": "MD61", + "type": "small_airport", + "name": "Lynch's Landing Airport", + "latitude_deg": "39.724581", + "longitude_deg": "-76.070929", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Nottingham", + "scheduled_service": "no", + "gps_code": "MD61", + "local_code": "MD61" + }, + { + "id": "21907", + "ident": "MD62", + "type": "small_airport", + "name": "Church Hill Airport", + "latitude_deg": "39.125", + "longitude_deg": "-76.00160217285156", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Church Hill", + "scheduled_service": "no", + "gps_code": "MD62", + "local_code": "MD62" + }, + { + "id": "21908", + "ident": "MD63", + "type": "small_airport", + "name": "Cromwell Farm Airport", + "latitude_deg": "39.27479934692383", + "longitude_deg": "-76.00990295410156", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Chestertown", + "scheduled_service": "no", + "gps_code": "MD63", + "local_code": "MD63" + }, + { + "id": "21909", + "ident": "MD64", + "type": "small_airport", + "name": "Stewart Airport", + "latitude_deg": "38.799599", + "longitude_deg": "-76.2724", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "McDaniel", + "scheduled_service": "no", + "gps_code": "MD64", + "local_code": "MD64" + }, + { + "id": "45467", + "ident": "MD65", + "type": "heliport", + "name": "Western Maryland Health System Heliport", + "latitude_deg": "39.646667", + "longitude_deg": "-78.731944", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Cumberland", + "scheduled_service": "no", + "gps_code": "MD65", + "local_code": "MD65" + }, + { + "id": "21910", + "ident": "MD66", + "type": "small_airport", + "name": "Smith Field", + "latitude_deg": "39.33789825439453", + "longitude_deg": "-76.0979995727539", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Chestertown", + "scheduled_service": "no", + "gps_code": "MD66", + "local_code": "MD66" + }, + { + "id": "21911", + "ident": "MD67", + "type": "closed", + "name": "Dow Jones & Co. Inc. Heliport", + "latitude_deg": "39.046501", + "longitude_deg": "-76.983597", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Silver Spring", + "scheduled_service": "no", + "keywords": "MD67" + }, + { + "id": "21912", + "ident": "MD68", + "type": "heliport", + "name": "Berg's Field", + "latitude_deg": "39.41120147705078", + "longitude_deg": "-76.71640014648438", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Stevenson", + "scheduled_service": "no", + "gps_code": "MD68", + "local_code": "MD68" + }, + { + "id": "21913", + "ident": "MD69", + "type": "small_airport", + "name": "Harris Airport", + "latitude_deg": "39.33340072631836", + "longitude_deg": "-76.08300018310547", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Still Pond", + "scheduled_service": "no", + "gps_code": "MD69", + "local_code": "MD69" + }, + { + "id": "21914", + "ident": "MD70", + "type": "small_airport", + "name": "Flying Acres Airport", + "latitude_deg": "39.18119812011719", + "longitude_deg": "-75.90879821777344", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Sudlersville", + "scheduled_service": "no", + "gps_code": "MD70", + "local_code": "MD70" + }, + { + "id": "21915", + "ident": "MD71", + "type": "heliport", + "name": "University of Maryland Shock Trauma Center Heliport", + "latitude_deg": "39.288069", + "longitude_deg": "-76.625717", + "elevation_ft": "166", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Baltimore", + "scheduled_service": "no", + "gps_code": "MD71", + "local_code": "MD71" + }, + { + "id": "45461", + "ident": "MD72", + "type": "heliport", + "name": "Adventist HealthCare Fort Washington Medical Center Heliport", + "latitude_deg": "38.72784", + "longitude_deg": "-76.992173", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Fort Washington", + "scheduled_service": "no", + "gps_code": "MD72", + "local_code": "MD72" + }, + { + "id": "21916", + "ident": "MD73", + "type": "small_airport", + "name": "Happy Landings Farm Airport", + "latitude_deg": "39.45840072631836", + "longitude_deg": "-77.14800262451172", + "elevation_ft": "693", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Unionville", + "scheduled_service": "no", + "gps_code": "MD73", + "local_code": "MD73" + }, + { + "id": "21917", + "ident": "MD74", + "type": "small_airport", + "name": "Good Neighbor Farm Airport", + "latitude_deg": "39.474300384521484", + "longitude_deg": "-77.19529724121094", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Unionville", + "scheduled_service": "no", + "gps_code": "MD74", + "local_code": "MD74" + }, + { + "id": "21918", + "ident": "MD75", + "type": "small_airport", + "name": "Stolcrest STOLport", + "latitude_deg": "39.341800689697266", + "longitude_deg": "-77.30359649658203", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Urbana", + "scheduled_service": "no", + "gps_code": "MD75", + "local_code": "MD75" + }, + { + "id": "21919", + "ident": "MD76", + "type": "heliport", + "name": "Carroll Hospital Center Helipad", + "latitude_deg": "39.558688", + "longitude_deg": "-76.990653", + "elevation_ft": "887", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Westminster", + "scheduled_service": "no", + "gps_code": "MD76", + "local_code": "MD76" + }, + { + "id": "21920", + "ident": "MD77", + "type": "small_airport", + "name": "Flying M Farms Airport", + "latitude_deg": "39.25979995727539", + "longitude_deg": "-77.34140014648438", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Comus", + "scheduled_service": "no", + "gps_code": "MD77", + "local_code": "MD77" + }, + { + "id": "21921", + "ident": "MD78", + "type": "small_airport", + "name": "Woodbine Airport", + "latitude_deg": "39.383399963378906", + "longitude_deg": "-77.07029724121094", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Woodbine", + "scheduled_service": "no", + "gps_code": "MD78", + "local_code": "MD78" + }, + { + "id": "21922", + "ident": "MD79", + "type": "heliport", + "name": "Nuodex Inc. Heliport", + "latitude_deg": "39.252899169921875", + "longitude_deg": "-76.08439636230469", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Worton", + "scheduled_service": "no", + "gps_code": "MD79", + "local_code": "MD79" + }, + { + "id": "21923", + "ident": "MD80", + "type": "closed", + "name": "Clements Creek Seaplane Base", + "latitude_deg": "39.021198", + "longitude_deg": "-76.522697", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Annapolis", + "scheduled_service": "no", + "keywords": "MD80" + }, + { + "id": "21924", + "ident": "MD81", + "type": "seaplane_base", + "name": "South River Seaplane Base", + "latitude_deg": "38.91469955444336", + "longitude_deg": "-76.50469970703125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Edgewater", + "scheduled_service": "no", + "gps_code": "MD81", + "local_code": "MD81" + }, + { + "id": "21925", + "ident": "MD82", + "type": "small_airport", + "name": "Ragged Island Airport", + "latitude_deg": "38.539798736572266", + "longitude_deg": "-76.27549743652344", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "MD82", + "local_code": "MD82" + }, + { + "id": "21926", + "ident": "MD83", + "type": "small_airport", + "name": "Ty-Ti-To Airport", + "latitude_deg": "38.519833", + "longitude_deg": "-77.069092", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "La Plata", + "scheduled_service": "no", + "gps_code": "MD83", + "local_code": "MD83" + }, + { + "id": "21927", + "ident": "MD85", + "type": "closed", + "name": "Carmean Airport", + "latitude_deg": "38.933033", + "longitude_deg": "-75.890483", + "elevation_ft": "58", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Ridgely", + "scheduled_service": "no", + "keywords": "MD85" + }, + { + "id": "21928", + "ident": "MD86", + "type": "heliport", + "name": "Grimes Properties Heliport", + "latitude_deg": "39.40840148925781", + "longitude_deg": "-77.38610076904297", + "elevation_ft": "324", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Frederick", + "scheduled_service": "no", + "gps_code": "MD86", + "local_code": "MD86" + }, + { + "id": "322665", + "ident": "MD88", + "type": "small_airport", + "name": "Links Airport", + "latitude_deg": "39.6800167", + "longitude_deg": "-76.4527694", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Pylesville", + "scheduled_service": "no", + "gps_code": "MD88", + "local_code": "MD88" + }, + { + "id": "21929", + "ident": "MD91", + "type": "small_airport", + "name": "Saxon Farms Airport", + "latitude_deg": "39.15230178833008", + "longitude_deg": "-76.01860046386719", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Church Hill", + "scheduled_service": "no", + "gps_code": "MD91", + "local_code": "MD91" + }, + { + "id": "21930", + "ident": "MD93", + "type": "small_airport", + "name": "Hexton Farms Airport", + "latitude_deg": "39.375099182128906", + "longitude_deg": "-75.90660095214844", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Cecilton", + "scheduled_service": "no", + "gps_code": "MD93", + "local_code": "MD93" + }, + { + "id": "21931", + "ident": "MD94", + "type": "closed", + "name": "Farmington Airport", + "latitude_deg": "39.676498", + "longitude_deg": "-76.036903", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Farmington", + "scheduled_service": "no", + "keywords": "MD94" + }, + { + "id": "21932", + "ident": "MD95", + "type": "small_airport", + "name": "Reservoir Airport", + "latitude_deg": "39.481998443603516", + "longitude_deg": "-76.88159942626953", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Finksburg", + "scheduled_service": "no", + "gps_code": "MD95", + "local_code": "MD95" + }, + { + "id": "349614", + "ident": "MD96", + "type": "closed", + "name": "Piney Point Airport", + "latitude_deg": "38.14846", + "longitude_deg": "-76.52218", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Piney Point", + "scheduled_service": "no", + "keywords": "MD96" + }, + { + "id": "21933", + "ident": "MD97", + "type": "small_airport", + "name": "Lanseair Farms Airport", + "latitude_deg": "38.46149826049805", + "longitude_deg": "-77.04640197753906", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "La Plata", + "scheduled_service": "no", + "gps_code": "MD97", + "local_code": "MD97" + }, + { + "id": "21934", + "ident": "MD98", + "type": "closed", + "name": "Fort Ritchie Heliport", + "latitude_deg": "39.700102", + "longitude_deg": "-77.499702", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Fort Ritchie", + "scheduled_service": "no", + "keywords": "MD98" + }, + { + "id": "21935", + "ident": "MD99", + "type": "small_airport", + "name": "Moran Field", + "latitude_deg": "39.5005989074707", + "longitude_deg": "-79.07230377197266", + "elevation_ft": "2080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Westernport", + "scheduled_service": "no", + "gps_code": "MD99", + "local_code": "MD99" + }, + { + "id": "4631", + "ident": "MDAB", + "type": "small_airport", + "name": "Arroyo Barril Airport", + "latitude_deg": "19.198524", + "longitude_deg": "-69.429815", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-20", + "municipality": "Arroyo Barril", + "scheduled_service": "no", + "gps_code": "MDAB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arroyo_Barril_International_Airport" + }, + { + "id": "42302", + "ident": "MDAD", + "type": "small_airport", + "name": "Azua Airport", + "latitude_deg": "18.425500869750977", + "longitude_deg": "-70.73139953613281", + "elevation_ft": "262", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-02", + "municipality": "Azua", + "scheduled_service": "no", + "gps_code": "MDAD" + }, + { + "id": "42303", + "ident": "MDAN", + "type": "small_airport", + "name": "Cotui Angelina Airport", + "latitude_deg": "19.13159942626953", + "longitude_deg": "-70.22160339355469", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-24", + "municipality": "Cotui Angelina", + "scheduled_service": "no", + "gps_code": "MDAN" + }, + { + "id": "42304", + "ident": "MDBA", + "type": "small_airport", + "name": "Consuelo Batey Anita airport", + "latitude_deg": "18.683332443237305", + "longitude_deg": "-69.38333129882812", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-30", + "municipality": "Consuelo", + "scheduled_service": "no", + "gps_code": "MDBA" + }, + { + "id": "42305", + "ident": "MDBC", + "type": "small_airport", + "name": "La Romana Batey Cacata airport", + "latitude_deg": "18.479700088500977", + "longitude_deg": "-68.91590118408203", + "elevation_ft": "223", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-12", + "municipality": "La Romana", + "scheduled_service": "no", + "gps_code": "MDBC" + }, + { + "id": "42306", + "ident": "MDBE", + "type": "small_airport", + "name": "La Romana Batey Lechuga Airport", + "latitude_deg": "18.58679962158203", + "longitude_deg": "-69.0553970336914", + "elevation_ft": "252", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-08", + "municipality": "La Romana", + "scheduled_service": "no", + "gps_code": "MDBE" + }, + { + "id": "42307", + "ident": "MDBG", + "type": "small_airport", + "name": "Baigua Airport", + "latitude_deg": "18.5324", + "longitude_deg": "-68.67", + "elevation_ft": "429", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-11", + "municipality": "Higuey", + "scheduled_service": "no", + "gps_code": "MDBG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baigua_Field", + "keywords": "Baigua Field" + }, + { + "id": "4632", + "ident": "MDBH", + "type": "medium_airport", + "name": "Maria Montez International Airport", + "latitude_deg": "18.25149917602539", + "longitude_deg": "-71.12039947509766", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-04", + "municipality": "Barahona", + "scheduled_service": "yes", + "gps_code": "MDBH", + "iata_code": "BRX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mar%C3%ADa_Montez_International_Airport" + }, + { + "id": "42308", + "ident": "MDBL", + "type": "small_airport", + "name": "Boca Chica Airport", + "latitude_deg": "18.4507999420166", + "longitude_deg": "-69.59259796142578", + "elevation_ft": "1", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-01", + "municipality": "Boca Chica", + "scheduled_service": "no", + "gps_code": "MDBL" + }, + { + "id": "42309", + "ident": "MDBM", + "type": "small_airport", + "name": "San Pedro De Macoris Airport", + "latitude_deg": "18.44809913635254", + "longitude_deg": "-69.28119659423828", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-23", + "municipality": "San Pedro de Macoris", + "scheduled_service": "no", + "gps_code": "MDBM" + }, + { + "id": "4633", + "ident": "MDCR", + "type": "medium_airport", + "name": "Cabo Rojo Airport", + "latitude_deg": "17.929000854492188", + "longitude_deg": "-71.6447982788086", + "elevation_ft": "262", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-16", + "municipality": "Cabo Rojo", + "scheduled_service": "no", + "gps_code": "MDCR", + "iata_code": "CBJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cabo_Rojo_Airport" + }, + { + "id": "30673", + "ident": "MDCY", + "type": "medium_airport", + "name": "Samaná El Catey International Airport", + "latitude_deg": "19.269259", + "longitude_deg": "-69.737405", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-20", + "municipality": "Samana", + "scheduled_service": "yes", + "gps_code": "MDCY", + "iata_code": "AZS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saman%C3%A1_El_Catey_International_Airport" + }, + { + "id": "29799", + "ident": "MDCZ", + "type": "small_airport", + "name": "Constanza - Expedición 14 de Junio National Airport", + "latitude_deg": "18.907499", + "longitude_deg": "-70.721901", + "elevation_ft": "3952", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-13", + "municipality": "Costanza", + "scheduled_service": "no", + "gps_code": "MDCZ", + "iata_code": "COZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Constanza_Airport" + }, + { + "id": "29814", + "ident": "MDDJ", + "type": "small_airport", + "name": "Dajabon Airport", + "latitude_deg": "19.563600540200003", + "longitude_deg": "-71.6808013916", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-05", + "municipality": "Dajabon", + "scheduled_service": "no", + "gps_code": "MDDJ" + }, + { + "id": "301617", + "ident": "mder", + "type": "small_airport", + "name": "El Ranchito Airport", + "latitude_deg": "19.184813237599997", + "longitude_deg": "-70.36496400829999", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-13", + "municipality": "La Vega", + "scheduled_service": "no", + "gps_code": "MDER" + }, + { + "id": "301618", + "ident": "mdes", + "type": "small_airport", + "name": "Peñuela / Esperanza Field", + "latitude_deg": "19.584112247399997", + "longitude_deg": "-70.95672369", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-27", + "municipality": "Valverde", + "scheduled_service": "no", + "gps_code": "MDES" + }, + { + "id": "30384", + "ident": "MDHE", + "type": "closed", + "name": "Herrera Airport", + "latitude_deg": "18.4696998596", + "longitude_deg": "-69.9693984985", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-01", + "municipality": "Santo Domingo", + "scheduled_service": "no", + "gps_code": "MDHE", + "iata_code": "HEX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Herrera_International_Airport" + }, + { + "id": "301621", + "ident": "mdhn", + "type": "small_airport", + "name": "Juancho Enriquillo Airport", + "latitude_deg": "17.8725186193", + "longitude_deg": "-71.2687182426", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-04", + "municipality": "Barahona", + "scheduled_service": "no", + "gps_code": "MDHN" + }, + { + "id": "4634", + "ident": "MDJB", + "type": "medium_airport", + "name": "La Isabela International Airport", + "latitude_deg": "18.572500228881836", + "longitude_deg": "-69.98560333251953", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-01", + "municipality": "La Isabela", + "scheduled_service": "yes", + "gps_code": "MDJB", + "iata_code": "JBQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Isabela_International_Airport", + "keywords": "MDLI, SDI, Dr Joaquin Balaguer International Airport" + }, + { + "id": "301622", + "ident": "mdji", + "type": "small_airport", + "name": "Jimani Airport", + "latitude_deg": "18.49285", + "longitude_deg": "-71.869999", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-10", + "scheduled_service": "no", + "gps_code": "MDJI" + }, + { + "id": "301615", + "ident": "mdll", + "type": "small_airport", + "name": "Los Llanos de Sabanatosa Airport", + "latitude_deg": "18.5964259778", + "longitude_deg": "-69.5257759094", + "elevation_ft": "262", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-23", + "scheduled_service": "yes", + "gps_code": "MDLL" + }, + { + "id": "301623", + "ident": "mdlm", + "type": "small_airport", + "name": "Los Montones Airport", + "latitude_deg": "18.521233", + "longitude_deg": "-70.099132", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-21", + "municipality": "San Cristobal", + "scheduled_service": "no", + "gps_code": "MDLM" + }, + { + "id": "4635", + "ident": "MDLR", + "type": "medium_airport", + "name": "Casa De Campo International Airport", + "latitude_deg": "18.450700759887695", + "longitude_deg": "-68.91179656982422", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-12", + "municipality": "La Romana", + "scheduled_service": "yes", + "gps_code": "MDLR", + "iata_code": "LRM", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Romana_International_Airport" + }, + { + "id": "301616", + "ident": "mdma", + "type": "small_airport", + "name": "Magdalena Cuya Airport", + "latitude_deg": "18.501933", + "longitude_deg": "-68.799099", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-12", + "municipality": "La Romana", + "scheduled_service": "no", + "gps_code": "MDMA" + }, + { + "id": "30156", + "ident": "MDMC", + "type": "small_airport", + "name": "Monte Cristi Airport", + "latitude_deg": "19.865299224900003", + "longitude_deg": "-71.6453018188", + "elevation_ft": "121", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-15", + "municipality": "Monte Cristi", + "scheduled_service": "no", + "gps_code": "MDMC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Osvaldo_Virgil_Airport" + }, + { + "id": "4636", + "ident": "MDPC", + "type": "large_airport", + "name": "Punta Cana International Airport", + "latitude_deg": "18.567399978599997", + "longitude_deg": "-68.36340332030001", + "elevation_ft": "47", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-11", + "municipality": "Punta Cana", + "scheduled_service": "yes", + "gps_code": "MDPC", + "iata_code": "PUJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Punta_Cana_International_Airport" + }, + { + "id": "301619", + "ident": "mdpm", + "type": "small_airport", + "name": "Piloto Airport", + "latitude_deg": "19.5977273869", + "longitude_deg": "-71.205970645", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-15", + "municipality": "Monte Cristi", + "scheduled_service": "no", + "gps_code": "MDPM" + }, + { + "id": "30382", + "ident": "MDPO", + "type": "closed", + "name": "Samaná El Portillo Airport", + "latitude_deg": "19.32139", + "longitude_deg": "-69.495653", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-20", + "municipality": "Samana", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Portillo_Airport", + "keywords": "EPS, MDPO" + }, + { + "id": "4637", + "ident": "MDPP", + "type": "medium_airport", + "name": "Gregorio Luperon International Airport", + "latitude_deg": "19.75790023803711", + "longitude_deg": "-70.56999969482422", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-18", + "municipality": "Puerto Plata", + "scheduled_service": "yes", + "gps_code": "MDPP", + "iata_code": "POP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gregorio_Luper%C3%B3n_International_Airport", + "keywords": "La Union" + }, + { + "id": "46511", + "ident": "MDR", + "type": "closed", + "name": "Medfra Airport", + "latitude_deg": "63.106022", + "longitude_deg": "-154.719424", + "elevation_ft": "435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Medfra", + "scheduled_service": "no", + "keywords": "MDR" + }, + { + "id": "42310", + "ident": "MDSA", + "type": "small_airport", + "name": "San Juan De La Maguana Airport", + "latitude_deg": "18.825500488299998", + "longitude_deg": "-71.2313995361", + "elevation_ft": "1309", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-22", + "municipality": "San Juan de la Maguana", + "scheduled_service": "no", + "gps_code": "MDSA", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Juan_de_la_Maguana_Airport" + }, + { + "id": "42311", + "ident": "MDSB", + "type": "closed", + "name": "Sabana de La Mar Airport", + "latitude_deg": "19.061898", + "longitude_deg": "-69.385201", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-30", + "municipality": "Sabana de La Mar", + "scheduled_service": "no", + "gps_code": "MDSB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sabana_de_la_Mar_Airport", + "keywords": "SNX" + }, + { + "id": "4638", + "ident": "MDSD", + "type": "large_airport", + "name": "Las Américas International Airport", + "latitude_deg": "18.42970085144", + "longitude_deg": "-69.668899536133", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-01", + "municipality": "Santo Domingo", + "scheduled_service": "yes", + "gps_code": "MDSD", + "iata_code": "SDQ", + "home_link": "http://www.aerodom.com/app/do/lasamericas.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Las_Am%C3%A9ricas_International_Airport", + "keywords": "Aeropuerto Internacional de Las Américas, José Francisco Peña Gómez Intl" + }, + { + "id": "4639", + "ident": "MDSI", + "type": "medium_airport", + "name": "San Isidro Air Base", + "latitude_deg": "18.503700256347656", + "longitude_deg": "-69.76170349121094", + "elevation_ft": "111", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-01", + "municipality": "San Isidro", + "scheduled_service": "no", + "gps_code": "MDSI", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Isidro_Air_Base", + "keywords": "Base Aérea de San Isidro, Base Aérea Trujillo" + }, + { + "id": "42312", + "ident": "MDSJ", + "type": "closed", + "name": "San Juan Airport", + "latitude_deg": "18.833332061799997", + "longitude_deg": "-71.2333297729", + "elevation_ft": "1496", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-22", + "municipality": "San Juan", + "scheduled_service": "no", + "gps_code": "MDSJ", + "iata_code": "SJM" + }, + { + "id": "4640", + "ident": "MDST", + "type": "medium_airport", + "name": "Cibao International Airport", + "latitude_deg": "19.406099319458008", + "longitude_deg": "-70.60469818115234", + "elevation_ft": "565", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-25", + "municipality": "Santiago", + "scheduled_service": "yes", + "gps_code": "MDST", + "iata_code": "STI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cibao_International_Airport" + }, + { + "id": "313964", + "ident": "MDV", + "type": "small_airport", + "name": "Médouneu Airport", + "latitude_deg": "1.0085", + "longitude_deg": "10.7552", + "elevation_ft": "2100", + "continent": "AF", + "iso_country": "GQ", + "iso_region": "GQ-CS", + "municipality": "Médouneu, Gabon", + "scheduled_service": "no", + "iata_code": "MDV", + "wikipedia_link": "https://en.wikipedia.org/wiki/M%C3%A9douneu_Airport" + }, + { + "id": "301620", + "ident": "mdwo", + "type": "small_airport", + "name": "Walterio Airport", + "latitude_deg": "19.757867", + "longitude_deg": "-71.623482", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "DO", + "iso_region": "DO-15", + "municipality": "Monte Cristi", + "scheduled_service": "no", + "gps_code": "MDWO" + }, + { + "id": "42780", + "ident": "ME-0001", + "type": "closed", + "name": "Ulcinj Airport", + "latitude_deg": "41.88909", + "longitude_deg": "19.34169", + "elevation_ft": "14", + "continent": "EU", + "iso_country": "ME", + "iso_region": "ME-20", + "municipality": "Ulcinj", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ulcinj_Airport", + "keywords": "Аеродром Улцињ, Aerodrom Ulcinj" + }, + { + "id": "45446", + "ident": "ME00", + "type": "small_airport", + "name": "Fort Fairfield Airport", + "latitude_deg": "46.765706", + "longitude_deg": "-67.847392", + "elevation_ft": "471", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Fort Fairfield", + "scheduled_service": "no", + "gps_code": "ME00", + "local_code": "ME00" + }, + { + "id": "21937", + "ident": "ME01", + "type": "seaplane_base", + "name": "Crescent Lake Seaplane Base", + "latitude_deg": "43.957000732421875", + "longitude_deg": "-70.46260070800781", + "elevation_ft": "278", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "East Raymond", + "scheduled_service": "no", + "gps_code": "ME01", + "local_code": "ME01" + }, + { + "id": "21938", + "ident": "ME02", + "type": "heliport", + "name": "Northern Light Eastern Maine Medical Center Heliport", + "latitude_deg": "44.808275", + "longitude_deg": "-68.752233", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Bangor", + "scheduled_service": "no", + "gps_code": "ME02", + "local_code": "ME02" + }, + { + "id": "21939", + "ident": "ME03", + "type": "small_airport", + "name": "Webber Jones Airport", + "latitude_deg": "45.33620071411133", + "longitude_deg": "-69.0509033203125", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Brownville", + "scheduled_service": "no", + "gps_code": "ME03", + "local_code": "ME03" + }, + { + "id": "21940", + "ident": "ME04", + "type": "seaplane_base", + "name": "Ilco Landing Area Seaplane Base", + "latitude_deg": "46.609500885009766", + "longitude_deg": "-69.53060150146484", + "elevation_ft": "1031", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Clayton Lake", + "scheduled_service": "no", + "gps_code": "ME04", + "local_code": "ME04" + }, + { + "id": "21941", + "ident": "ME05", + "type": "small_airport", + "name": "Allen St Peter Memorial Airport", + "latitude_deg": "46.75", + "longitude_deg": "-68.47119903564453", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Portage", + "scheduled_service": "no", + "gps_code": "ME05", + "local_code": "ME05" + }, + { + "id": "21942", + "ident": "ME06", + "type": "small_airport", + "name": "Flying Ed Airport", + "latitude_deg": "45.02790069580078", + "longitude_deg": "-67.30940246582031", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Charlotte", + "scheduled_service": "no", + "gps_code": "ME06", + "local_code": "ME06" + }, + { + "id": "45444", + "ident": "ME07", + "type": "seaplane_base", + "name": "Acadian Seaplane Base", + "latitude_deg": "44.39805", + "longitude_deg": "-68.219583", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Bar Harbor", + "scheduled_service": "no", + "gps_code": "ME07", + "local_code": "ME07" + }, + { + "id": "21943", + "ident": "ME08", + "type": "small_airport", + "name": "Gadabout Gaddis Airport", + "latitude_deg": "45.040806", + "longitude_deg": "-69.869629", + "elevation_ft": "342", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Bingham", + "scheduled_service": "no", + "gps_code": "ME08", + "local_code": "ME08" + }, + { + "id": "21944", + "ident": "ME09", + "type": "seaplane_base", + "name": "Panther Pond Seaplane Base", + "latitude_deg": "43.93009948730469", + "longitude_deg": "-70.4531021118164", + "elevation_ft": "277", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Raymond", + "scheduled_service": "no", + "gps_code": "ME09", + "local_code": "ME09" + }, + { + "id": "21945", + "ident": "ME11", + "type": "seaplane_base", + "name": "Cooper Seaplane Base", + "latitude_deg": "44.34230041503906", + "longitude_deg": "-70.28780364990234", + "elevation_ft": "373", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Hartford", + "scheduled_service": "no", + "gps_code": "ME11", + "local_code": "ME11" + }, + { + "id": "21946", + "ident": "ME12", + "type": "seaplane_base", + "name": "Brettuns Pond Seaplane Base", + "latitude_deg": "44.38779830932617", + "longitude_deg": "-70.25450134277344", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Livermore", + "scheduled_service": "no", + "gps_code": "ME12", + "local_code": "ME12" + }, + { + "id": "21947", + "ident": "ME14", + "type": "small_airport", + "name": "Bald Mountain Airport", + "latitude_deg": "44.23059844970703", + "longitude_deg": "-69.12310028076172", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Camden", + "scheduled_service": "no", + "gps_code": "ME14", + "local_code": "ME14" + }, + { + "id": "21948", + "ident": "ME16", + "type": "small_airport", + "name": "Loring International Airport", + "latitude_deg": "46.950401", + "longitude_deg": "-67.885902", + "elevation_ft": "746", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Limestone", + "scheduled_service": "no", + "gps_code": "ME16", + "iata_code": "LIZ", + "local_code": "ME16", + "wikipedia_link": "https://en.wikipedia.org/wiki/Loring_International_Airport", + "keywords": "Loring AFB" + }, + { + "id": "21949", + "ident": "ME17", + "type": "small_airport", + "name": "Thomas Airport", + "latitude_deg": "44.66019821166992", + "longitude_deg": "-70.58799743652344", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Roxbury", + "scheduled_service": "no", + "gps_code": "ME17", + "local_code": "ME17" + }, + { + "id": "21950", + "ident": "ME18", + "type": "heliport", + "name": "Chesuncook Forestry District Heliport", + "latitude_deg": "45.883399963378906", + "longitude_deg": "-69.23280334472656", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Chesuncook", + "scheduled_service": "no", + "gps_code": "ME18", + "local_code": "ME18" + }, + { + "id": "21951", + "ident": "ME19", + "type": "small_airport", + "name": "Clayton Lake Strip", + "latitude_deg": "46.6161003112793", + "longitude_deg": "-69.52230072021484", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Clayton Lake", + "scheduled_service": "no", + "gps_code": "ME19", + "local_code": "ME19" + }, + { + "id": "21952", + "ident": "ME2", + "type": "small_airport", + "name": "Cutler Regional Airport", + "latitude_deg": "44.679901", + "longitude_deg": "-67.264397", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Cutler", + "scheduled_service": "no", + "local_code": "ME2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cutler_Regional_Airport", + "keywords": "ME15, Ramsdell Field" + }, + { + "id": "21953", + "ident": "ME20", + "type": "small_airport", + "name": "Bob-Mar Airport", + "latitude_deg": "44.59920120239258", + "longitude_deg": "-69.6239013671875", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "ME20", + "local_code": "ME20" + }, + { + "id": "324556", + "ident": "ME21", + "type": "heliport", + "name": "Chebeague Island Heliport", + "latitude_deg": "43.729064", + "longitude_deg": "-70.126983", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Chebeague Island", + "scheduled_service": "no", + "gps_code": "ME21", + "local_code": "ME21" + }, + { + "id": "21954", + "ident": "ME22", + "type": "small_airport", + "name": "Avery Field", + "latitude_deg": "45.671199798583984", + "longitude_deg": "-69.80680084228516", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Rockwood", + "scheduled_service": "no", + "gps_code": "ME22", + "local_code": "ME22" + }, + { + "id": "349865", + "ident": "ME23", + "type": "heliport", + "name": "Franklin Memorial Hospital Heliport", + "latitude_deg": "44.626546", + "longitude_deg": "-70.162082", + "elevation_ft": "423", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Farmington", + "scheduled_service": "no", + "gps_code": "ME23", + "local_code": "ME23" + }, + { + "id": "21955", + "ident": "ME24", + "type": "heliport", + "name": "Ben Hur Heliport", + "latitude_deg": "44.28329849243164", + "longitude_deg": "-69.23919677734375", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Appleton", + "scheduled_service": "no", + "gps_code": "ME24", + "local_code": "ME24" + }, + { + "id": "21956", + "ident": "ME25", + "type": "small_airport", + "name": "Sunrise Farms Airport", + "latitude_deg": "47.166099548339844", + "longitude_deg": "-68.39199829101562", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Fort Kent", + "scheduled_service": "no", + "gps_code": "ME25", + "local_code": "ME25" + }, + { + "id": "21957", + "ident": "ME26", + "type": "closed", + "name": "Super Cub Field", + "latitude_deg": "43.668098", + "longitude_deg": "-70.363098", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Westbrook", + "scheduled_service": "no", + "keywords": "ME26" + }, + { + "id": "21958", + "ident": "ME27", + "type": "seaplane_base", + "name": "Double A Seaplane Base", + "latitude_deg": "44.900901794433594", + "longitude_deg": "-68.80229949951172", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Glenburn", + "scheduled_service": "no", + "gps_code": "ME27", + "local_code": "ME27" + }, + { + "id": "21959", + "ident": "ME28", + "type": "seaplane_base", + "name": "Forest Lake Seaplane Base", + "latitude_deg": "43.823699951171875", + "longitude_deg": "-70.3301010131836", + "elevation_ft": "274", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Cumberland", + "scheduled_service": "no", + "gps_code": "ME28", + "local_code": "ME28" + }, + { + "id": "21960", + "ident": "ME3", + "type": "seaplane_base", + "name": "Bradford Camps Seaplane Base", + "latitude_deg": "46.39580154418945", + "longitude_deg": "-69.00499725341797", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "ME3", + "local_code": "ME3" + }, + { + "id": "21961", + "ident": "ME30", + "type": "seaplane_base", + "name": "Greenville Forestry Seaplane Base", + "latitude_deg": "45.466800689697266", + "longitude_deg": "-69.59950256347656", + "elevation_ft": "1028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "ME30", + "local_code": "ME30" + }, + { + "id": "21962", + "ident": "ME32", + "type": "small_airport", + "name": "Ruby Field", + "latitude_deg": "45.089204", + "longitude_deg": "-69.260635", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Sangerville", + "scheduled_service": "no", + "gps_code": "ME32", + "local_code": "ME32", + "keywords": "Morrel Field" + }, + { + "id": "21963", + "ident": "ME33", + "type": "small_airport", + "name": "Farr Field", + "latitude_deg": "43.77870178222656", + "longitude_deg": "-70.01309967041016", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Harpswell", + "scheduled_service": "no", + "gps_code": "ME33", + "local_code": "ME33" + }, + { + "id": "21964", + "ident": "ME34", + "type": "small_airport", + "name": "Robinson Ridge Field", + "latitude_deg": "44.175924", + "longitude_deg": "-69.428616", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Jefferson", + "scheduled_service": "no", + "gps_code": "ME34", + "local_code": "ME34" + }, + { + "id": "21965", + "ident": "ME35", + "type": "small_airport", + "name": "Terra B & B Airport", + "latitude_deg": "44.93149948120117", + "longitude_deg": "-69.0073013305664", + "elevation_ft": "382", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Levant", + "scheduled_service": "no", + "gps_code": "ME35", + "local_code": "ME35" + }, + { + "id": "21966", + "ident": "ME36", + "type": "closed", + "name": "Mount Vernon Airport", + "latitude_deg": "44.509201", + "longitude_deg": "-69.952599", + "elevation_ft": "478", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "keywords": "ME36" + }, + { + "id": "21967", + "ident": "ME38", + "type": "small_airport", + "name": "Mars Hill Airport", + "latitude_deg": "46.527801513671875", + "longitude_deg": "-67.87449645996094", + "elevation_ft": "432", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Mars Hill", + "scheduled_service": "no", + "gps_code": "ME38", + "local_code": "ME38" + }, + { + "id": "21968", + "ident": "ME39", + "type": "small_airport", + "name": "Rocky Ridge Airport", + "latitude_deg": "44.234829", + "longitude_deg": "-70.132255", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Greene", + "scheduled_service": "no", + "gps_code": "ME39", + "local_code": "ME39" + }, + { + "id": "21969", + "ident": "ME41", + "type": "small_airport", + "name": "Witherspoons Airport", + "latitude_deg": "44.1525993347168", + "longitude_deg": "-68.87640380859375", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "North Haven", + "scheduled_service": "no", + "gps_code": "ME41", + "local_code": "ME41" + }, + { + "id": "21970", + "ident": "ME42", + "type": "heliport", + "name": "Mid Coast Hospital Heliport", + "latitude_deg": "43.90510177612305", + "longitude_deg": "-69.89119720458984", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Brunswick", + "scheduled_service": "no", + "gps_code": "ME42", + "local_code": "ME42" + }, + { + "id": "345542", + "ident": "ME43", + "type": "heliport", + "name": "Northern Light Mayo Hospital Heliport", + "latitude_deg": "45.188582", + "longitude_deg": "-69.2368", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Dover-Foxcroft", + "scheduled_service": "no", + "gps_code": "ME43", + "local_code": "ME43" + }, + { + "id": "21971", + "ident": "ME44", + "type": "closed", + "name": "Cummings Airport", + "latitude_deg": "44.289002", + "longitude_deg": "-70.446198", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Paris Hill", + "scheduled_service": "no", + "keywords": "ME44" + }, + { + "id": "21972", + "ident": "ME45", + "type": "small_airport", + "name": "Goosefair Airport", + "latitude_deg": "43.405601501464844", + "longitude_deg": "-70.43229675292969", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Kennebunkport", + "scheduled_service": "no", + "gps_code": "ME45", + "local_code": "ME45" + }, + { + "id": "21973", + "ident": "ME46", + "type": "small_airport", + "name": "Back Acres Airport", + "latitude_deg": "43.41230010986328", + "longitude_deg": "-70.44670104980469", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Kennebunkport", + "scheduled_service": "no", + "gps_code": "ME46", + "local_code": "ME46" + }, + { + "id": "21974", + "ident": "ME47", + "type": "small_airport", + "name": "Payne Field", + "latitude_deg": "44.85449981689453", + "longitude_deg": "-69.4563980102539", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Hartland", + "scheduled_service": "no", + "gps_code": "ME47", + "local_code": "ME47" + }, + { + "id": "345491", + "ident": "ME49", + "type": "heliport", + "name": "C A Dean Memorial Hospital Heliport", + "latitude_deg": "45.458369", + "longitude_deg": "-69.611189", + "elevation_ft": "1085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "ME49", + "local_code": "ME49" + }, + { + "id": "21975", + "ident": "ME5", + "type": "small_airport", + "name": "Banks Airport", + "latitude_deg": "44.165401458740234", + "longitude_deg": "-68.42780303955078", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Swans Island", + "scheduled_service": "no", + "gps_code": "ME5", + "local_code": "ME5" + }, + { + "id": "21976", + "ident": "ME50", + "type": "closed", + "name": "Cross Lake Seaplane Base", + "latitude_deg": "47.133901", + "longitude_deg": "-68.334503", + "elevation_ft": "578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Sinclair", + "scheduled_service": "no", + "keywords": "ME50" + }, + { + "id": "21977", + "ident": "ME51", + "type": "seaplane_base", + "name": "Douglass Seaplane Base", + "latitude_deg": "43.73699951171875", + "longitude_deg": "-70.61060333251953", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Standish", + "scheduled_service": "no", + "gps_code": "ME51", + "local_code": "ME51" + }, + { + "id": "346003", + "ident": "ME52", + "type": "heliport", + "name": "Down East Community Hospital Heliport", + "latitude_deg": "44.713451", + "longitude_deg": "-67.475908", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Machias", + "scheduled_service": "no", + "gps_code": "ME52", + "local_code": "ME52" + }, + { + "id": "21978", + "ident": "ME55", + "type": "small_airport", + "name": "Vinalhaven Airport", + "latitude_deg": "44.073699951200005", + "longitude_deg": "-68.818901062", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Vinalhaven", + "scheduled_service": "no", + "gps_code": "ME55", + "local_code": "ME55" + }, + { + "id": "21979", + "ident": "ME56", + "type": "closed", + "name": "Kimberly Airport", + "latitude_deg": "44.069199", + "longitude_deg": "-69.305298", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Waldoboro", + "scheduled_service": "no", + "gps_code": "ME56", + "local_code": "ME56" + }, + { + "id": "21980", + "ident": "ME57", + "type": "seaplane_base", + "name": "Bauneg Beg Seaplane Base", + "latitude_deg": "43.35900116", + "longitude_deg": "-70.73529816", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "North Berwick", + "scheduled_service": "no", + "gps_code": "ME57", + "local_code": "ME57" + }, + { + "id": "21981", + "ident": "ME58", + "type": "heliport", + "name": "Milbridge Heliport", + "latitude_deg": "44.53900146484375", + "longitude_deg": "-67.88420104980469", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Milbridge", + "scheduled_service": "no", + "gps_code": "ME58", + "local_code": "ME58" + }, + { + "id": "21982", + "ident": "ME59", + "type": "heliport", + "name": "Maine Helicopters Heliport", + "latitude_deg": "44.20309829711914", + "longitude_deg": "-69.60749816894531", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "North Whitefield", + "scheduled_service": "no", + "gps_code": "ME59", + "local_code": "ME59" + }, + { + "id": "21983", + "ident": "ME6", + "type": "small_airport", + "name": "Wales Airport", + "latitude_deg": "44.17449951171875", + "longitude_deg": "-70.0188980102539", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Wales", + "scheduled_service": "no", + "gps_code": "ME6", + "local_code": "ME6" + }, + { + "id": "21984", + "ident": "ME60", + "type": "small_airport", + "name": "Sunny Hill Airport", + "latitude_deg": "44.46839904785156", + "longitude_deg": "-69.81780242919922", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Belgrade", + "scheduled_service": "no", + "gps_code": "ME60", + "local_code": "ME60" + }, + { + "id": "21985", + "ident": "ME61", + "type": "closed", + "name": "Salmon Falls Airport", + "latitude_deg": "43.293716", + "longitude_deg": "-70.901277", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Berwick", + "scheduled_service": "no", + "gps_code": "ME61", + "local_code": "ME61" + }, + { + "id": "21986", + "ident": "ME62", + "type": "small_airport", + "name": "Thompson Memorial Field", + "latitude_deg": "44.809386", + "longitude_deg": "-69.470389", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Pittsfield", + "scheduled_service": "no", + "gps_code": "ME62", + "local_code": "ME62", + "keywords": "Grignons Private Landing Area" + }, + { + "id": "329071", + "ident": "ME63", + "type": "heliport", + "name": "Rumford Community Hospital Heliport", + "latitude_deg": "44.5513", + "longitude_deg": "-70.555475", + "elevation_ft": "667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Rumford", + "scheduled_service": "no", + "gps_code": "ME63", + "local_code": "ME63" + }, + { + "id": "21987", + "ident": "ME64", + "type": "small_airport", + "name": "Skydive Lebanon Airport", + "latitude_deg": "43.375", + "longitude_deg": "-70.92919921875", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "West Lebanon", + "scheduled_service": "no", + "gps_code": "ME64", + "local_code": "ME64" + }, + { + "id": "21988", + "ident": "ME65", + "type": "heliport", + "name": "Miara Heliport", + "latitude_deg": "43.85850143432617", + "longitude_deg": "-69.88420104980469", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "West Bath", + "scheduled_service": "no", + "gps_code": "ME65", + "local_code": "ME65" + }, + { + "id": "21989", + "ident": "ME66", + "type": "small_airport", + "name": "Scottow Bog Flightpark Ultralightport", + "latitude_deg": "43.61259841918945", + "longitude_deg": "-70.3572998046875", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Scarborough", + "scheduled_service": "no", + "gps_code": "ME66", + "local_code": "ME66" + }, + { + "id": "21990", + "ident": "ME67", + "type": "small_airport", + "name": "Morrill Airpark", + "latitude_deg": "47.127498626708984", + "longitude_deg": "-67.96589660644531", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Van Buren", + "scheduled_service": "no", + "gps_code": "ME67", + "local_code": "ME67" + }, + { + "id": "21991", + "ident": "ME68", + "type": "small_airport", + "name": "Newport Sky Park Airport", + "latitude_deg": "44.820098876953125", + "longitude_deg": "-69.2384033203125", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "ME68", + "local_code": "ME68" + }, + { + "id": "21992", + "ident": "ME69", + "type": "small_airport", + "name": "Cliffords Airport", + "latitude_deg": "44.069000244140625", + "longitude_deg": "-70.06449890136719", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Sabattus", + "scheduled_service": "no", + "gps_code": "ME69", + "local_code": "ME69" + }, + { + "id": "21993", + "ident": "ME70", + "type": "small_airport", + "name": "Greenfield Hill Airport", + "latitude_deg": "45.037601470947266", + "longitude_deg": "-69.47920227050781", + "elevation_ft": "672", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "ME70", + "local_code": "ME70" + }, + { + "id": "21994", + "ident": "ME72", + "type": "heliport", + "name": "Seboomook Forestry District Headquarters Heliport", + "latitude_deg": "45.883399963378906", + "longitude_deg": "-69.98280334472656", + "elevation_ft": "1081", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Pittston Farm", + "scheduled_service": "no", + "gps_code": "ME72", + "local_code": "ME72" + }, + { + "id": "21995", + "ident": "ME74", + "type": "small_airport", + "name": "Miller's Field", + "latitude_deg": "44.7495002746582", + "longitude_deg": "-68.98139953613281", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Newburgh", + "scheduled_service": "no", + "gps_code": "ME74", + "local_code": "ME74" + }, + { + "id": "21996", + "ident": "ME75", + "type": "small_airport", + "name": "Margerison Airport", + "latitude_deg": "43.953999", + "longitude_deg": "-70.141403", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Durham", + "scheduled_service": "no", + "gps_code": "ME75", + "local_code": "ME75", + "keywords": "Lisbon Falls" + }, + { + "id": "21997", + "ident": "ME76", + "type": "heliport", + "name": "Penobscot Bay Medical Center Heliport", + "latitude_deg": "44.14229965209961", + "longitude_deg": "-69.0822982788086", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Rockland", + "scheduled_service": "no", + "gps_code": "ME76", + "local_code": "ME76" + }, + { + "id": "331588", + "ident": "ME77", + "type": "heliport", + "name": "Cranberry Isles Heliport", + "latitude_deg": "44.251336", + "longitude_deg": "-68.268619", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Cranberry Isles", + "scheduled_service": "no", + "gps_code": "ME77", + "local_code": "ME77" + }, + { + "id": "331697", + "ident": "ME78", + "type": "heliport", + "name": "Monhegan Island Heliport", + "latitude_deg": "43.764333", + "longitude_deg": "-69.314527", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Monhegan Island", + "scheduled_service": "no", + "gps_code": "ME78", + "local_code": "ME78" + }, + { + "id": "21998", + "ident": "ME79", + "type": "small_airport", + "name": "Two Falls Airport", + "latitude_deg": "45.305599212646484", + "longitude_deg": "-69.3467025756836", + "elevation_ft": "366", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Willimantic", + "scheduled_service": "no", + "gps_code": "ME79", + "local_code": "ME79" + }, + { + "id": "21999", + "ident": "ME80", + "type": "seaplane_base", + "name": "Dry Pond Seaplane Base", + "latitude_deg": "43.93389892578125", + "longitude_deg": "-70.35639953613281", + "elevation_ft": "309", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Gray", + "scheduled_service": "no", + "gps_code": "ME80", + "local_code": "ME80" + }, + { + "id": "322570", + "ident": "ME81", + "type": "heliport", + "name": "4 Winds Heliport", + "latitude_deg": "43.758333", + "longitude_deg": "-69.321611", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Manhegan", + "scheduled_service": "no", + "gps_code": "ME81", + "local_code": "ME81" + }, + { + "id": "324644", + "ident": "ME83", + "type": "seaplane_base", + "name": "Pickerel Pond Seaplane Base", + "latitude_deg": "43.70118", + "longitude_deg": "-70.777361", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Limerick", + "scheduled_service": "no", + "gps_code": "ME83", + "local_code": "ME83" + }, + { + "id": "334209", + "ident": "ME84", + "type": "seaplane_base", + "name": "Perrys Landing Seaplane Base", + "latitude_deg": "44.758139", + "longitude_deg": "-70.850703", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Andover", + "scheduled_service": "no", + "gps_code": "ME84", + "local_code": "ME84" + }, + { + "id": "22000", + "ident": "ME85", + "type": "seaplane_base", + "name": "Riverside Seaplane Base", + "latitude_deg": "45.183399", + "longitude_deg": "-69.235603", + "elevation_ft": "342", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Dover-Foxcroft", + "scheduled_service": "no", + "gps_code": "ME85", + "local_code": "ME85" + }, + { + "id": "22001", + "ident": "ME86", + "type": "seaplane_base", + "name": "Libby Camps Seaplane Base", + "latitude_deg": "46.30830001831055", + "longitude_deg": "-68.84359741210938", + "elevation_ft": "754", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "ME86", + "local_code": "ME86" + }, + { + "id": "22002", + "ident": "ME87", + "type": "heliport", + "name": "Southern Maine Health Care/Sanford Heliport", + "latitude_deg": "43.448713", + "longitude_deg": "-70.768594", + "elevation_ft": "375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Sanford", + "scheduled_service": "no", + "gps_code": "ME87", + "local_code": "ME87", + "keywords": "Goodall Hospital" + }, + { + "id": "22003", + "ident": "ME88", + "type": "small_airport", + "name": "Morrison's Airport", + "latitude_deg": "44.99169921875", + "longitude_deg": "-67.07440185546875", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Perry", + "scheduled_service": "no", + "gps_code": "ME88", + "local_code": "ME88" + }, + { + "id": "22004", + "ident": "ME89", + "type": "small_airport", + "name": "Buzzy's Field", + "latitude_deg": "43.608792", + "longitude_deg": "-70.972149", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Acton", + "scheduled_service": "no", + "gps_code": "ME89", + "local_code": "ME89" + }, + { + "id": "22005", + "ident": "ME90", + "type": "seaplane_base", + "name": "Little Ossipee Lake Seaplane Base", + "latitude_deg": "43.61309814453125", + "longitude_deg": "-70.69640350341797", + "elevation_ft": "311", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Waterboro Center", + "scheduled_service": "no", + "gps_code": "ME90", + "local_code": "ME90" + }, + { + "id": "22006", + "ident": "ME91", + "type": "small_airport", + "name": "Webster Field", + "latitude_deg": "43.67509841918945", + "longitude_deg": "-70.49559783935547", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Gorham", + "scheduled_service": "no", + "gps_code": "ME91", + "local_code": "ME91" + }, + { + "id": "22007", + "ident": "ME92", + "type": "small_airport", + "name": "Hilltop Airport", + "latitude_deg": "44.516700744628906", + "longitude_deg": "-70.22229766845703", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Jay", + "scheduled_service": "no", + "gps_code": "ME92", + "local_code": "ME92" + }, + { + "id": "334346", + "ident": "ME93", + "type": "heliport", + "name": "Beaulieu Heliport", + "latitude_deg": "43.538494", + "longitude_deg": "-70.403879", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Old Orchard Beach", + "scheduled_service": "no", + "gps_code": "ME93", + "local_code": "ME93" + }, + { + "id": "22008", + "ident": "ME94", + "type": "closed", + "name": "Clark Field", + "latitude_deg": "44.216702", + "longitude_deg": "-69.291199", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Union", + "scheduled_service": "no", + "keywords": "ME94" + }, + { + "id": "22009", + "ident": "ME95", + "type": "heliport", + "name": "Central Maine Medical Center Air Ambulance Landing Site Heliport", + "latitude_deg": "44.103232", + "longitude_deg": "-70.215096", + "elevation_ft": "241", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Lewiston", + "scheduled_service": "no", + "gps_code": "ME95", + "local_code": "ME95" + }, + { + "id": "22010", + "ident": "ME96", + "type": "small_airport", + "name": "Clark Field", + "latitude_deg": "43.73360061645508", + "longitude_deg": "-70.48639678955078", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Gorham", + "scheduled_service": "no", + "gps_code": "ME96", + "local_code": "ME96" + }, + { + "id": "331707", + "ident": "ME98", + "type": "heliport", + "name": "Long Island Heliport", + "latitude_deg": "43.685853", + "longitude_deg": "-70.167286", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Long Island", + "scheduled_service": "no", + "gps_code": "ME98", + "local_code": "ME98" + }, + { + "id": "41920", + "ident": "MECT", + "type": "small_airport", + "name": "Catsa Airport", + "latitude_deg": "10.51694393157959", + "longitude_deg": "-85.56555938720703", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Liberia", + "scheduled_service": "no", + "gps_code": "MECT" + }, + { + "id": "319207", + "ident": "MEF", + "type": "small_airport", + "name": "Melfi Airport", + "latitude_deg": "11.060192", + "longitude_deg": "17.944495", + "elevation_ft": "1293", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-GR", + "municipality": "Melfi", + "scheduled_service": "no", + "iata_code": "MEF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Melfi_Airport" + }, + { + "id": "22011", + "ident": "MFN", + "type": "seaplane_base", + "name": "Minuteman Lake Seaplane Base", + "latitude_deg": "61.72129821777344", + "longitude_deg": "-150.0469970703125", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Willow", + "scheduled_service": "no", + "gps_code": "MFN", + "local_code": "MFN" + }, + { + "id": "301200", + "ident": "MG-0001", + "type": "small_airport", + "name": "Ambohibary Airport", + "latitude_deg": "-18.9175", + "longitude_deg": "48.2181944444", + "elevation_ft": "2960", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-A", + "municipality": "Moramanga", + "scheduled_service": "no", + "gps_code": "FMFE", + "iata_code": "OHB", + "local_code": "OMB", + "keywords": "Moramanga Aérodrome, Ambatovy Mine" + }, + { + "id": "308935", + "ident": "MG-0002", + "type": "small_airport", + "name": "Anjajavy Private Airport", + "latitude_deg": "-15.0231", + "longitude_deg": "47.2325", + "elevation_ft": "80", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Anjajavy", + "scheduled_service": "no" + }, + { + "id": "318414", + "ident": "MG-0003", + "type": "small_airport", + "name": "Amboasary Sud Airport", + "latitude_deg": "-25.075585", + "longitude_deg": "46.393433", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Amboasary Sud", + "scheduled_service": "no" + }, + { + "id": "318415", + "ident": "MG-0004", + "type": "small_airport", + "name": "Antanimora Airport", + "latitude_deg": "-24.84006", + "longitude_deg": "45.675457", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Antanimora", + "scheduled_service": "no" + }, + { + "id": "318416", + "ident": "MG-0005", + "type": "small_airport", + "name": "Itampolo Airport", + "latitude_deg": "-24.691968", + "longitude_deg": "43.950994", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Itampolo", + "scheduled_service": "no" + }, + { + "id": "318417", + "ident": "MG-0006", + "type": "small_airport", + "name": "Fotadrevo Airport", + "latitude_deg": "-24.031299", + "longitude_deg": "45.026573", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Fotadrevo", + "scheduled_service": "no" + }, + { + "id": "318418", + "ident": "MG-0007", + "type": "small_airport", + "name": "Ifotaka Airport", + "latitude_deg": "-24.820849", + "longitude_deg": "46.153777", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Ifotaka", + "scheduled_service": "no" + }, + { + "id": "318419", + "ident": "MG-0008", + "type": "small_airport", + "name": "Tsihombe Airport", + "latitude_deg": "-25.338352", + "longitude_deg": "45.476395", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Tsihombe", + "scheduled_service": "no" + }, + { + "id": "318420", + "ident": "MG-0009", + "type": "small_airport", + "name": "Ambovombe Airport", + "latitude_deg": "-25.204247", + "longitude_deg": "46.071143", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Ambovombe", + "scheduled_service": "no" + }, + { + "id": "318421", + "ident": "MG-0010", + "type": "small_airport", + "name": "Tranoroa Airport", + "latitude_deg": "-24.717074", + "longitude_deg": "45.059513", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Tranoroa", + "scheduled_service": "no" + }, + { + "id": "318422", + "ident": "MG-0011", + "type": "small_airport", + "name": "Maromby Airport", + "latitude_deg": "-24.382498", + "longitude_deg": "46.556238", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Maromby", + "scheduled_service": "no" + }, + { + "id": "318858", + "ident": "MG-0012", + "type": "small_airport", + "name": "Ambodiatafa Airport", + "latitude_deg": "-16.739423", + "longitude_deg": "49.972078", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-A", + "municipality": "Ambodiatafa", + "scheduled_service": "no" + }, + { + "id": "354297", + "ident": "MG-0013", + "type": "small_airport", + "name": "Anahidrano Airport", + "latitude_deg": "-15.022743", + "longitude_deg": "47.909478", + "elevation_ft": "243", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Anahidrano", + "scheduled_service": "no" + }, + { + "id": "356085", + "ident": "MG-0014", + "type": "small_airport", + "name": "Moramba Airport", + "latitude_deg": "-14.86584", + "longitude_deg": "47.29552", + "elevation_ft": "30", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Marovoha", + "scheduled_service": "no", + "local_code": "WOR" + }, + { + "id": "356086", + "ident": "MG-0015", + "type": "small_airport", + "name": "Marovasa Private Airport", + "latitude_deg": "-14.95568", + "longitude_deg": "47.3065", + "elevation_ft": "75", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Ankaranakatra", + "scheduled_service": "no" + }, + { + "id": "356087", + "ident": "MG-0016", + "type": "small_airport", + "name": "Antanimalandy Airport", + "latitude_deg": "-15.13517", + "longitude_deg": "47.10681", + "elevation_ft": "59", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Antaninalandy", + "scheduled_service": "no" + }, + { + "id": "356088", + "ident": "MG-0017", + "type": "small_airport", + "name": "Chez Eric et Fleur Airport", + "latitude_deg": "-15.14262", + "longitude_deg": "47.07671", + "elevation_ft": "79", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Ambovolavo", + "scheduled_service": "no" + }, + { + "id": "356089", + "ident": "MG-0018", + "type": "small_airport", + "name": "Lodge des Terre Blanches Airport", + "latitude_deg": "-15.14858", + "longitude_deg": "47.07741", + "elevation_ft": "87", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Ambovolavo", + "scheduled_service": "no" + }, + { + "id": "356090", + "ident": "MG-0019", + "type": "small_airport", + "name": "Antetikireja Airport", + "latitude_deg": "-14.71884", + "longitude_deg": "47.47426", + "elevation_ft": "52", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Antetikireja", + "scheduled_service": "no" + }, + { + "id": "30933", + "ident": "MG-DOA", + "type": "small_airport", + "name": "Doany Airport", + "latitude_deg": "-14.3681001663208", + "longitude_deg": "49.510799407958984", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-D", + "municipality": "Doany", + "scheduled_service": "no", + "iata_code": "DOA" + }, + { + "id": "3144", + "ident": "MG13", + "type": "small_airport", + "name": "Fray Bartolome Airport", + "latitude_deg": "15.80405", + "longitude_deg": "-89.8507", + "elevation_ft": "512", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-AV", + "municipality": "El Achiotal", + "scheduled_service": "no", + "gps_code": "MGFB", + "keywords": "MG13, Inta Northeast" + }, + { + "id": "4642", + "ident": "MGBN", + "type": "small_airport", + "name": "Bananera Airport", + "latitude_deg": "15.47350025177002", + "longitude_deg": "-88.83719635009766", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-IZ", + "municipality": "Morales", + "scheduled_service": "no", + "gps_code": "MGBN" + }, + { + "id": "4643", + "ident": "MGCB", + "type": "medium_airport", + "name": "Coban Airport", + "latitude_deg": "15.469", + "longitude_deg": "-90.4067", + "elevation_ft": "4339", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-AV", + "municipality": "Coban", + "scheduled_service": "no", + "gps_code": "MGCB", + "iata_code": "CBV" + }, + { + "id": "42223", + "ident": "MGCR", + "type": "small_airport", + "name": "Carmelita Airport", + "latitude_deg": "17.461200714111328", + "longitude_deg": "-90.05370330810547", + "elevation_ft": "753", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-PE", + "municipality": "Carmelita", + "scheduled_service": "no", + "gps_code": "MGCR", + "iata_code": "CMM" + }, + { + "id": "30856", + "ident": "MGCT", + "type": "small_airport", + "name": "Coatepeque Airport", + "latitude_deg": "14.694199562072754", + "longitude_deg": "-91.88249969482422", + "elevation_ft": "1486", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-QZ", + "municipality": "Coatepeque", + "scheduled_service": "no", + "gps_code": "MGCT", + "iata_code": "CTF" + }, + { + "id": "42224", + "ident": "MGES", + "type": "small_airport", + "name": "Esquipulas Airport", + "latitude_deg": "14.566670417785645", + "longitude_deg": "-89.3499984741211", + "elevation_ft": "3090", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-CQ", + "municipality": "Esquipulas", + "scheduled_service": "no", + "gps_code": "MGES" + }, + { + "id": "313977", + "ident": "MGG", + "type": "closed", + "name": "Margarima Airport", + "latitude_deg": "-5.979", + "longitude_deg": "143.3595", + "elevation_ft": "7291", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-HE", + "municipality": "Margarima", + "scheduled_service": "no", + "iata_code": "MGG" + }, + { + "id": "4644", + "ident": "MGGT", + "type": "large_airport", + "name": "La Aurora Airport", + "latitude_deg": "14.5833", + "longitude_deg": "-90.527496", + "elevation_ft": "4952", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-GU", + "municipality": "Guatemala City", + "scheduled_service": "yes", + "gps_code": "MGGT", + "iata_code": "GUA", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Aurora_International_Airport" + }, + { + "id": "42226", + "ident": "MGHT", + "type": "small_airport", + "name": "Huehuetenango Airport", + "latitude_deg": "15.327400207519531", + "longitude_deg": "-91.46240234375", + "elevation_ft": "6375", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-HU", + "municipality": "Huehuetenango", + "scheduled_service": "no", + "gps_code": "MGHT", + "iata_code": "HUG" + }, + { + "id": "313978", + "ident": "MGI", + "type": "closed", + "name": "Matagorda Island Air Force Base", + "latitude_deg": "28.323", + "longitude_deg": "-96.464", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port O'Connor", + "scheduled_service": "no", + "iata_code": "MGI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Matagorda_Island_Air_Force_Base" + }, + { + "id": "351339", + "ident": "MGJU", + "type": "small_airport", + "name": "Jutiapa Airport", + "latitude_deg": "14.291729", + "longitude_deg": "-89.941421", + "elevation_ft": "2949", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-JU", + "municipality": "Jutiapa", + "scheduled_service": "no", + "gps_code": "MGJU" + }, + { + "id": "31898", + "ident": "MGLL", + "type": "small_airport", + "name": "La Libertad Airport", + "latitude_deg": "16.75029945373535", + "longitude_deg": "-90.13999938964844", + "elevation_ft": "623", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-PE", + "municipality": "La Libertad", + "scheduled_service": "no", + "gps_code": "MGLL" + }, + { + "id": "42227", + "ident": "MGML", + "type": "small_airport", + "name": "Malacatán Airport", + "latitude_deg": "14.907464027404785", + "longitude_deg": "-92.08792114257812", + "elevation_ft": "1194", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-SM", + "municipality": "San Marcos", + "scheduled_service": "no", + "gps_code": "MGML" + }, + { + "id": "42228", + "ident": "MGMM", + "type": "closed", + "name": "Melchor de Mencos Airport", + "latitude_deg": "17.068609", + "longitude_deg": "-89.152222", + "elevation_ft": "4670", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-PE", + "municipality": "Melchor de Mencos", + "scheduled_service": "no", + "iata_code": "MCR" + }, + { + "id": "332604", + "ident": "MGO", + "type": "closed", + "name": "Manega Airport", + "latitude_deg": "-1.73333", + "longitude_deg": "10.2167", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-4", + "scheduled_service": "no", + "iata_code": "MGO" + }, + { + "id": "313979", + "ident": "MGP", + "type": "small_airport", + "name": "Manga Airport", + "latitude_deg": "-4.147", + "longitude_deg": "153.0186", + "elevation_ft": "60", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NIK", + "municipality": "Manga Mission", + "scheduled_service": "no", + "iata_code": "MGP", + "local_code": "MNA" + }, + { + "id": "4645", + "ident": "MGPB", + "type": "medium_airport", + "name": "Puerto Barrios Airport", + "latitude_deg": "15.7309", + "longitude_deg": "-88.583801", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-IZ", + "municipality": "Puerto Barrios", + "scheduled_service": "yes", + "gps_code": "MGPB", + "iata_code": "PBR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Puerto_Barrios_Airport" + }, + { + "id": "32170", + "ident": "MGPP", + "type": "small_airport", + "name": "Poptún Airport", + "latitude_deg": "16.325799942017", + "longitude_deg": "-89.41609954834", + "elevation_ft": "1801", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-PE", + "municipality": "Poptún", + "scheduled_service": "no", + "gps_code": "MGPP", + "iata_code": "PON", + "wikipedia_link": "https://en.wikipedia.org/wiki/Popt%C3%BAn_Airport" + }, + { + "id": "30649", + "ident": "MGQC", + "type": "small_airport", + "name": "Quiché Airport", + "latitude_deg": "15.0122", + "longitude_deg": "-91.150597", + "elevation_ft": "6631", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-QC", + "municipality": "Santa Cruz del Quiché", + "scheduled_service": "no", + "gps_code": "MGQC", + "iata_code": "AQB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quich%C3%A9_Airport" + }, + { + "id": "30610", + "ident": "MGQZ", + "type": "small_airport", + "name": "Quezaltenango Airport", + "latitude_deg": "14.8656", + "longitude_deg": "-91.501999", + "elevation_ft": "7779", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-QZ", + "municipality": "Quezaltenango", + "scheduled_service": "yes", + "gps_code": "MGQZ", + "iata_code": "AAZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quetzaltenango_Airport", + "keywords": "Los Altos Airport, Xelajú , Xela" + }, + { + "id": "307045", + "ident": "MGRA", + "type": "closed", + "name": "Rabinal Airport", + "latitude_deg": "15.0935", + "longitude_deg": "-90.5063888889", + "elevation_ft": "3180", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-BV", + "municipality": "Rabinal", + "scheduled_service": "no", + "gps_code": "MGRA" + }, + { + "id": "4646", + "ident": "MGRB", + "type": "medium_airport", + "name": "Rubelsanto Airport", + "latitude_deg": "15.991999626159668", + "longitude_deg": "-90.44529724121094", + "elevation_ft": "426", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-AV", + "municipality": "Rubelsanto", + "scheduled_service": "no", + "gps_code": "MGRB", + "iata_code": "RUV" + }, + { + "id": "42234", + "ident": "MGRD", + "type": "small_airport", + "name": "Las Vegas Airport", + "latitude_deg": "15.668363", + "longitude_deg": "-88.961763", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-IZ", + "municipality": "Rio Dulce", + "scheduled_service": "no", + "gps_code": "MGRD", + "iata_code": "LCF", + "wikipedia_link": "https://en.m.wikipedia.org/wiki/Río_Dulce_Airport" + }, + { + "id": "318936", + "ident": "MGRF", + "type": "small_airport", + "name": "Monterrico Airport", + "latitude_deg": "13.894942", + "longitude_deg": "-90.485092", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-SR", + "municipality": "Monterrico", + "scheduled_service": "no", + "gps_code": "MGRF" + }, + { + "id": "4647", + "ident": "MGRT", + "type": "medium_airport", + "name": "Retalhuleu Airport", + "latitude_deg": "14.521431", + "longitude_deg": "-91.697001", + "elevation_ft": "656", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-RE", + "municipality": "Retalhuleu", + "scheduled_service": "no", + "gps_code": "MGRT", + "iata_code": "RER", + "wikipedia_link": "https://en.wikipedia.org/wiki/Retalhuleu_Airport" + }, + { + "id": "4648", + "ident": "MGSJ", + "type": "medium_airport", + "name": "San José Airport", + "latitude_deg": "13.936200141899999", + "longitude_deg": "-90.83580017090001", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-ES", + "municipality": "Puerto San José", + "scheduled_service": "yes", + "gps_code": "MGSJ", + "iata_code": "GSJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Jos%C3%A9_Airport" + }, + { + "id": "42229", + "ident": "MGSM", + "type": "small_airport", + "name": "San Marcos Airport", + "latitude_deg": "14.955268", + "longitude_deg": "-91.808339", + "elevation_ft": "7933", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-SM", + "municipality": "San Marcos", + "scheduled_service": "no", + "gps_code": "MGSM" + }, + { + "id": "4649", + "ident": "MGTK", + "type": "medium_airport", + "name": "Mundo Maya International Airport", + "latitude_deg": "16.913799", + "longitude_deg": "-89.866402", + "elevation_ft": "427", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-PE", + "municipality": "San Benito", + "scheduled_service": "yes", + "gps_code": "MGMM", + "iata_code": "FRS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mundo_Maya_International_Airport" + }, + { + "id": "31903", + "ident": "MGZA", + "type": "small_airport", + "name": "Zacapa Airport", + "latitude_deg": "14.96030044555664", + "longitude_deg": "-89.53919982910156", + "elevation_ft": "626", + "continent": "NA", + "iso_country": "GT", + "iso_region": "GT-ZA", + "municipality": "Zacapa", + "scheduled_service": "no", + "gps_code": "MGZA" + }, + { + "id": "340647", + "ident": "MH-0001", + "type": "closed", + "name": "Jaluit Seaplane Base", + "latitude_deg": "6.013587", + "longitude_deg": "169.718234", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-JAL", + "municipality": "Aineman", + "scheduled_service": "no" + }, + { + "id": "356002", + "ident": "MH-0002", + "type": "closed", + "name": "Majuro Airfield", + "latitude_deg": "7.090278", + "longitude_deg": "171.381389", + "elevation_ft": "26", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-MAJ", + "municipality": "Majuro", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Majuro_Airfield" + }, + { + "id": "35201", + "ident": "MH-AIM", + "type": "small_airport", + "name": "Ailuk Airport", + "latitude_deg": "10.21679973602295", + "longitude_deg": "169.98300170898438", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-ALK", + "municipality": "Ailuk Island", + "scheduled_service": "yes", + "iata_code": "AIM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ailuk_Airport" + }, + { + "id": "30661", + "ident": "MH-AUL", + "type": "small_airport", + "name": "Aur Island Airport", + "latitude_deg": "8.145279884338379", + "longitude_deg": "171.17300415039062", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-AUR", + "municipality": "Aur Atoll", + "scheduled_service": "yes", + "iata_code": "AUL" + }, + { + "id": "30730", + "ident": "MH-BII", + "type": "small_airport", + "name": "Enyu Airfield", + "latitude_deg": "11.5225", + "longitude_deg": "165.565002", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-BIK", + "municipality": "Bikini Atoll", + "scheduled_service": "yes", + "iata_code": "BII", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bikini_Atoll_Airport", + "keywords": "Bikini Atoll Airport" + }, + { + "id": "30976", + "ident": "MH-EBN", + "type": "small_airport", + "name": "Ebadon Airport", + "latitude_deg": "9.330559730529785", + "longitude_deg": "166.82000732421875", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-KWA", + "municipality": "Ebadon Island", + "scheduled_service": "no", + "iata_code": "EBN" + }, + { + "id": "35202", + "ident": "MH-JAT", + "type": "small_airport", + "name": "Jabot Airport", + "latitude_deg": "7.749774755610001", + "longitude_deg": "168.977837563", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-ALL", + "municipality": "Ailinglapalap Atoll", + "scheduled_service": "no", + "iata_code": "JAT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jabot_Airport" + }, + { + "id": "35203", + "ident": "MH-JEJ", + "type": "small_airport", + "name": "Jeh Airport", + "latitude_deg": "7.565350055690001", + "longitude_deg": "168.962005615", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-ALL", + "municipality": "Ailinglapalap Atoll", + "scheduled_service": "yes", + "iata_code": "JEJ", + "local_code": "JEJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jeh_Airport" + }, + { + "id": "35204", + "ident": "MH-LIK", + "type": "small_airport", + "name": "Likiep Airport", + "latitude_deg": "9.82316", + "longitude_deg": "169.307999", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-LIK", + "municipality": "Likiep Island", + "scheduled_service": "yes", + "iata_code": "LIK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Likiep_Airport" + }, + { + "id": "31834", + "ident": "MH-LML", + "type": "small_airport", + "name": "Lae Island Airport", + "latitude_deg": "8.921110153198242", + "longitude_deg": "166.26499938964844", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-LAE", + "municipality": "Lae Island", + "scheduled_service": "no", + "iata_code": "LML" + }, + { + "id": "31878", + "ident": "MH-MAV", + "type": "small_airport", + "name": "Maloelap Island Airport", + "latitude_deg": "8.70444011688", + "longitude_deg": "171.229995728", + "elevation_ft": "4", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-MAL", + "municipality": "Maloelap Island", + "scheduled_service": "yes", + "iata_code": "MAV", + "local_code": "3N1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maloelap_Airport" + }, + { + "id": "31913", + "ident": "MH-MJB", + "type": "small_airport", + "name": "Mejit Atoll Airport", + "latitude_deg": "10.283302", + "longitude_deg": "170.869", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-MEJ", + "municipality": "Mejit Atoll", + "scheduled_service": "yes", + "iata_code": "MJB", + "local_code": "C30", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mejit_Airport", + "keywords": "Q30" + }, + { + "id": "35205", + "ident": "MH-MJE", + "type": "small_airport", + "name": "Majkin Airport", + "latitude_deg": "7.76291", + "longitude_deg": "168.26576", + "elevation_ft": "24", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-NMU", + "municipality": "Majkin", + "scheduled_service": "yes", + "iata_code": "MJE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Majkin_Airport" + }, + { + "id": "32015", + "ident": "MH-NDK", + "type": "small_airport", + "name": "Namorik Atoll Airport", + "latitude_deg": "5.631669998168945", + "longitude_deg": "168.125", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-NMK", + "municipality": "Namorik Atoll", + "scheduled_service": "yes", + "iata_code": "NDK", + "local_code": "3N0" + }, + { + "id": "32218", + "ident": "MH-RNP", + "type": "small_airport", + "name": "Rongelap Island Airport", + "latitude_deg": "11.1572", + "longitude_deg": "166.886993", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-RON", + "municipality": "Rongelap Island", + "scheduled_service": "yes", + "iata_code": "RNP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rongelap_Airport" + }, + { + "id": "32447", + "ident": "MH-TIC", + "type": "small_airport", + "name": "Tinak Airport", + "latitude_deg": "7.13332986831665", + "longitude_deg": "171.91700744628906", + "elevation_ft": "4", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-ARN", + "municipality": "Arno Atoll", + "scheduled_service": "no", + "iata_code": "TIC", + "local_code": "N18" + }, + { + "id": "32527", + "ident": "MH-UIT", + "type": "small_airport", + "name": "Jaluit Airport", + "latitude_deg": "5.90924", + "longitude_deg": "169.636993", + "elevation_ft": "4", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-JAL", + "municipality": "Jabor Jaluit Atoll", + "scheduled_service": "yes", + "iata_code": "UIT", + "local_code": "N55", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jaluit_Airport" + }, + { + "id": "35206", + "ident": "MH-WJA", + "type": "small_airport", + "name": "Woja Airport", + "latitude_deg": "7.45083333333", + "longitude_deg": "168.55", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-ALL", + "municipality": "Woja", + "scheduled_service": "yes", + "iata_code": "WJA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Woja_Airport" + }, + { + "id": "32680", + "ident": "MH-WTE", + "type": "small_airport", + "name": "Wotje Airport", + "latitude_deg": "9.458333", + "longitude_deg": "170.238611", + "elevation_ft": "4", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-WTJ", + "municipality": "Wotje", + "scheduled_service": "yes", + "iata_code": "WTE", + "local_code": "N36", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wotje_Airport" + }, + { + "id": "32681", + "ident": "MH-WTO", + "type": "small_airport", + "name": "Wotho Island Airport", + "latitude_deg": "10.173299789428711", + "longitude_deg": "166.0030059814453", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-WTN", + "municipality": "Wotho Island", + "scheduled_service": "yes", + "iata_code": "WTO" + }, + { + "id": "42030", + "ident": "MHAC", + "type": "small_airport", + "name": "Acensa Airport", + "latitude_deg": "13.243611335754395", + "longitude_deg": "-87.34139251708984", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CH", + "municipality": "Acensa", + "scheduled_service": "no", + "gps_code": "MHAC" + }, + { + "id": "42031", + "ident": "MHAG", + "type": "small_airport", + "name": "Sur Agropecuaria Airport", + "latitude_deg": "13.25", + "longitude_deg": "-87.3580551147461", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CH", + "municipality": "Buena Vista", + "scheduled_service": "no", + "gps_code": "MHAG" + }, + { + "id": "30625", + "ident": "MHAH", + "type": "small_airport", + "name": "Ahuas Airport", + "latitude_deg": "15.4722", + "longitude_deg": "-84.352203", + "elevation_ft": "249", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Ahuas", + "scheduled_service": "no", + "gps_code": "MHAH", + "iata_code": "AHS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ahuas_Airport" + }, + { + "id": "42032", + "ident": "MHAL", + "type": "small_airport", + "name": "El Alto Airport", + "latitude_deg": "14.493332862854004", + "longitude_deg": "-87.10639190673828", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-FM", + "scheduled_service": "no", + "gps_code": "MHAL" + }, + { + "id": "42033", + "ident": "MHAM", + "type": "small_airport", + "name": "Amapala Airport", + "latitude_deg": "13.284506", + "longitude_deg": "-87.617729", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-VA", + "municipality": "Amapala Island", + "scheduled_service": "no", + "gps_code": "MHAM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amapala_Airport" + }, + { + "id": "42034", + "ident": "MHAN", + "type": "small_airport", + "name": "San Luis Airport", + "latitude_deg": "14.745833396911621", + "longitude_deg": "-87.40528106689453", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CM", + "municipality": "San Luis", + "scheduled_service": "no", + "gps_code": "MHAN" + }, + { + "id": "42035", + "ident": "MHAP", + "type": "small_airport", + "name": "Apala Airport", + "latitude_deg": "14.010832786560059", + "longitude_deg": "-86.38916778564453", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-EP", + "municipality": "Apala", + "scheduled_service": "no", + "gps_code": "MHAP" + }, + { + "id": "42036", + "ident": "MHAR", + "type": "small_airport", + "name": "Archaga Airport", + "latitude_deg": "14.2852783203125", + "longitude_deg": "-87.22916412353516", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-FM", + "municipality": "Archaga", + "scheduled_service": "no", + "gps_code": "MHAR" + }, + { + "id": "42037", + "ident": "MHAS", + "type": "small_airport", + "name": "Alas Del Socorro Airport", + "latitude_deg": "14.593055725097656", + "longitude_deg": "-87.8405532836914", + "elevation_ft": "1068", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CM", + "municipality": "Siguatepeque", + "scheduled_service": "no", + "gps_code": "MHAS" + }, + { + "id": "42038", + "ident": "MHAU", + "type": "small_airport", + "name": "Hacienda Ulua Airport", + "latitude_deg": "14.717778205871582", + "longitude_deg": "-86.57083129882812", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-OL", + "municipality": "Tasajeras", + "scheduled_service": "no", + "gps_code": "MHAU" + }, + { + "id": "42039", + "ident": "MHAY", + "type": "small_airport", + "name": "Araslaya Airport", + "latitude_deg": "15.735278129577637", + "longitude_deg": "-84.5433349609375", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Araslaya", + "scheduled_service": "no", + "gps_code": "MHAY" + }, + { + "id": "42040", + "ident": "MHAZ", + "type": "small_airport", + "name": "Aserradero Azacualpa Airport", + "latitude_deg": "14.433333396911621", + "longitude_deg": "-86.08916473388672", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-OL", + "municipality": "Cacao", + "scheduled_service": "no", + "gps_code": "MHAZ" + }, + { + "id": "42041", + "ident": "MHBA", + "type": "small_airport", + "name": "Barbareta Airport", + "latitude_deg": "16.432216", + "longitude_deg": "-86.139299", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-IB", + "municipality": "Barbareta Island", + "scheduled_service": "no", + "gps_code": "MHBA" + }, + { + "id": "42042", + "ident": "MHBE", + "type": "small_airport", + "name": "San Bernardo Airport", + "latitude_deg": "13.101943969726562", + "longitude_deg": "-87.1419448852539", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CH", + "municipality": "San Bernardo", + "scheduled_service": "no", + "gps_code": "MHBE" + }, + { + "id": "30704", + "ident": "MHBL", + "type": "small_airport", + "name": "Brus Laguna Airport", + "latitude_deg": "15.7631", + "longitude_deg": "-84.543602", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Brus Laguna", + "scheduled_service": "no", + "gps_code": "MHBL", + "iata_code": "BHG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brus_Laguna_Airport" + }, + { + "id": "30810", + "ident": "MHCA", + "type": "small_airport", + "name": "Catacamas Airport", + "latitude_deg": "14.916999816894531", + "longitude_deg": "-85.9000015258789", + "elevation_ft": "1489", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-OL", + "municipality": "Catacamas", + "scheduled_service": "no", + "gps_code": "MHCA", + "iata_code": "CAA" + }, + { + "id": "42043", + "ident": "MHCB", + "type": "small_airport", + "name": "Cocobila Airport", + "latitude_deg": "15.888333320617676", + "longitude_deg": "-84.75555419921875", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Cocobila", + "scheduled_service": "no", + "gps_code": "MHCB" + }, + { + "id": "42044", + "ident": "MHCC", + "type": "small_airport", + "name": "Concepción Airport", + "latitude_deg": "14.026666641199999", + "longitude_deg": "-88.3441696167", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-IN", + "municipality": "Concepción", + "scheduled_service": "no" + }, + { + "id": "42045", + "ident": "MHCG", + "type": "small_airport", + "name": "Comayagua Airport", + "latitude_deg": "14.432299614", + "longitude_deg": "-87.6246032715", + "elevation_ft": "1980", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CM", + "municipality": "Comayagua", + "scheduled_service": "no", + "gps_code": "MHCG" + }, + { + "id": "42046", + "ident": "MHCI", + "type": "small_airport", + "name": "Chiquerito Airport", + "latitude_deg": "15.831944465637207", + "longitude_deg": "-85.02694702148438", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CL", + "municipality": "Chiquerito", + "scheduled_service": "no", + "gps_code": "MHCI" + }, + { + "id": "42047", + "ident": "MHCL", + "type": "closed", + "name": "Colon Airport", + "latitude_deg": "14.161944", + "longitude_deg": "-88.034447", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-LP", + "municipality": "Marcala", + "scheduled_service": "no", + "gps_code": "MHMA", + "iata_code": "MRJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marcala_Airport" + }, + { + "id": "42048", + "ident": "MHCM", + "type": "small_airport", + "name": "Choloma Airport", + "latitude_deg": "14.888333320617676", + "longitude_deg": "-88.4044418334961", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-SB", + "municipality": "Choloma", + "scheduled_service": "no", + "gps_code": "MHCM" + }, + { + "id": "42049", + "ident": "MHCO", + "type": "small_airport", + "name": "Coco Airport", + "latitude_deg": "15.252778053283691", + "longitude_deg": "-84.23332977294922", + "elevation_ft": "61", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "scheduled_service": "no", + "gps_code": "MHCO" + }, + { + "id": "42050", + "ident": "MHCP", + "type": "heliport", + "name": "Cochino Pequeño Heliport", + "latitude_deg": "15.952824", + "longitude_deg": "-86.498635", + "elevation_ft": "1", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-IB", + "municipality": "Cochino Pequeño Island", + "scheduled_service": "no", + "gps_code": "MHCP" + }, + { + "id": "42051", + "ident": "MHCR", + "type": "small_airport", + "name": "Carta Airport", + "latitude_deg": "15.033192", + "longitude_deg": "-86.692334", + "elevation_ft": "2625", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-OL", + "municipality": "La Unión", + "scheduled_service": "no", + "gps_code": "MHCR", + "iata_code": "LUI", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Uni%C3%B3n_Airport_(Honduras)" + }, + { + "id": "42052", + "ident": "MHCS", + "type": "small_airport", + "name": "Coyoles Airport", + "latitude_deg": "15.445556", + "longitude_deg": "-86.675278", + "elevation_ft": "492", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-YO", + "municipality": "Coyoles", + "scheduled_service": "no", + "gps_code": "MHCS", + "iata_code": "CYL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coyoles_Airport" + }, + { + "id": "318339", + "ident": "MHCT", + "type": "closed", + "name": "Puerto Castilla Airport", + "latitude_deg": "16.008354", + "longitude_deg": "-85.968149", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CL", + "municipality": "Puerto Castilla", + "scheduled_service": "no", + "gps_code": "MHCT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Puerto_Castilla_Airport" + }, + { + "id": "42053", + "ident": "MHCU", + "type": "small_airport", + "name": "Cauquira Airport", + "latitude_deg": "15.316667", + "longitude_deg": "-83.591667", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Cauquira", + "scheduled_service": "no", + "gps_code": "MHCU", + "iata_code": "CDD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cauquira_Airport" + }, + { + "id": "31905", + "ident": "MHDU", + "type": "small_airport", + "name": "Durzona Airport", + "latitude_deg": "14.9891", + "longitude_deg": "-84.220802", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Mocorón", + "scheduled_service": "no", + "gps_code": "MHDU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mocor%C3%B3n_Airport" + }, + { + "id": "42054", + "ident": "MHEA", + "type": "small_airport", + "name": "El Arrayán Airport", + "latitude_deg": "15.505556", + "longitude_deg": "-86.574722", + "elevation_ft": "722", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-YO", + "municipality": "Olanchito", + "scheduled_service": "no", + "gps_code": "MHOA", + "iata_code": "OAN", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Array%C3%A1n_Airport" + }, + { + "id": "42055", + "ident": "MHEC", + "type": "small_airport", + "name": "El Cubo Airport", + "latitude_deg": "14.457777976989746", + "longitude_deg": "-87.05860900878906", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-FM", + "scheduled_service": "no", + "gps_code": "MHEC" + }, + { + "id": "42056", + "ident": "MHEI", + "type": "small_airport", + "name": "La America Airport", + "latitude_deg": "15.648611068725586", + "longitude_deg": "-87.788330078125", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-YO", + "municipality": "El Guanacaste", + "scheduled_service": "no", + "gps_code": "MHEI" + }, + { + "id": "42057", + "ident": "MHEL", + "type": "small_airport", + "name": "Barrio El Aterrizaje Airport", + "latitude_deg": "13.873056411743164", + "longitude_deg": "-86.56055450439453", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-EP", + "municipality": "El Paraiso", + "scheduled_service": "no", + "gps_code": "MHEL" + }, + { + "id": "42058", + "ident": "MHEN", + "type": "small_airport", + "name": "Aserradero El Encino Airport", + "latitude_deg": "14.661944389343262", + "longitude_deg": "-86.91500091552734", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-FM", + "municipality": "La Canoa", + "scheduled_service": "no", + "gps_code": "MHEN" + }, + { + "id": "42059", + "ident": "MHEZ", + "type": "small_airport", + "name": "La Esperanza Airport", + "latitude_deg": "15.609722", + "longitude_deg": "-86.139442", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CL", + "municipality": "Lérida", + "scheduled_service": "no", + "gps_code": "MHEZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Esperanza_Airport,_Col%C3%B3n" + }, + { + "id": "42060", + "ident": "MHFA", + "type": "small_airport", + "name": "Finca San Antonio Airport", + "latitude_deg": "14.598055839538574", + "longitude_deg": "-86.48388671875", + "elevation_ft": "646", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-OL", + "municipality": "La Lima", + "scheduled_service": "no", + "gps_code": "MHFA" + }, + { + "id": "42061", + "ident": "MHFC", + "type": "small_airport", + "name": "Fort Morgan Cay Airport", + "latitude_deg": "16.403823", + "longitude_deg": "-86.286635", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-IB", + "municipality": "Fort Morgan Cay", + "scheduled_service": "no", + "gps_code": "MHFC" + }, + { + "id": "42062", + "ident": "MHFD", + "type": "small_airport", + "name": "Finca 12 Airport", + "latitude_deg": "15.269721984863281", + "longitude_deg": "-87.90277862548828", + "elevation_ft": "116", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-YO", + "municipality": "Agua Blanca", + "scheduled_service": "no", + "gps_code": "MHFD" + }, + { + "id": "42063", + "ident": "MHFN", + "type": "small_airport", + "name": "San Fernando Airport", + "latitude_deg": "14.113332748413086", + "longitude_deg": "-86.9527816772461", + "elevation_ft": "648", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-FM", + "municipality": "San Fernando", + "scheduled_service": "no", + "gps_code": "MHFN" + }, + { + "id": "42064", + "ident": "MHGA", + "type": "small_airport", + "name": "Chumbagua Airport", + "latitude_deg": "15.176667213439941", + "longitude_deg": "-88.48999786376953", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-SB", + "municipality": "Chumbagua", + "scheduled_service": "no", + "gps_code": "MHGA" + }, + { + "id": "42065", + "ident": "MHGB", + "type": "small_airport", + "name": "Guayabillas Airport", + "latitude_deg": "14.74666690826416", + "longitude_deg": "-87.37527465820312", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CM", + "municipality": "Esquias", + "scheduled_service": "no", + "gps_code": "MHGB" + }, + { + "id": "42066", + "ident": "MHGC", + "type": "small_airport", + "name": "Grupo Carnol Airport", + "latitude_deg": "14.838610649108887", + "longitude_deg": "-85.86833190917969", + "elevation_ft": "378", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-OL", + "municipality": "Catacamas", + "scheduled_service": "no", + "gps_code": "MHGC" + }, + { + "id": "42067", + "ident": "MHGE", + "type": "small_airport", + "name": "El Aguacate Airport", + "latitude_deg": "14.875", + "longitude_deg": "-85.776108", + "elevation_ft": "1296", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-OL", + "municipality": "El Aguacate", + "scheduled_service": "no", + "gps_code": "MHGE", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Aguacate_Airport" + }, + { + "id": "42068", + "ident": "MHGG", + "type": "small_airport", + "name": "Santiago De Puringla Airport", + "latitude_deg": "14.367500305175781", + "longitude_deg": "-87.91139221191406", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-LP", + "municipality": "Santiago de Puringla", + "scheduled_service": "no", + "gps_code": "MHGG" + }, + { + "id": "42069", + "ident": "MHGR", + "type": "small_airport", + "name": "Sangrelaya Airport", + "latitude_deg": "15.974482", + "longitude_deg": "-85.079753", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CL", + "municipality": "Donel", + "scheduled_service": "no", + "gps_code": "MHGR" + }, + { + "id": "42070", + "ident": "MHGS", + "type": "small_airport", + "name": "Celaque Airport", + "latitude_deg": "14.573492", + "longitude_deg": "-88.595801", + "elevation_ft": "2995", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-LE", + "municipality": "Gracias", + "scheduled_service": "no", + "gps_code": "MHGS", + "iata_code": "GAC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Celaque_Airport" + }, + { + "id": "42071", + "ident": "MHGY", + "type": "small_airport", + "name": "Guayape Airport", + "latitude_deg": "14.784722328186035", + "longitude_deg": "-86.86333465576172", + "elevation_ft": "765", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-OL", + "municipality": "El Zapato", + "scheduled_service": "no", + "gps_code": "MHGY" + }, + { + "id": "42072", + "ident": "MHHC", + "type": "heliport", + "name": "Coratsa Heliport", + "latitude_deg": "15.47249984741211", + "longitude_deg": "-87.9941635131836", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CR", + "municipality": "San Pedro Sula", + "scheduled_service": "no", + "gps_code": "MHHC" + }, + { + "id": "42073", + "ident": "MHHE", + "type": "small_airport", + "name": "La Herradura Airport", + "latitude_deg": "14.755000114440918", + "longitude_deg": "-86.00416564941406", + "elevation_ft": "342", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-OL", + "municipality": "Punuare", + "scheduled_service": "no", + "gps_code": "MHHE" + }, + { + "id": "42074", + "ident": "MHHG", + "type": "small_airport", + "name": "Hacienda Galeras Airport", + "latitude_deg": "14.598889350891113", + "longitude_deg": "-86.46083068847656", + "elevation_ft": "618", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-OL", + "municipality": "La Lima", + "scheduled_service": "no", + "gps_code": "MHHG" + }, + { + "id": "42075", + "ident": "MHHO", + "type": "small_airport", + "name": "Agua Caliente Airport", + "latitude_deg": "15.430653", + "longitude_deg": "-86.891049", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-YO", + "municipality": "Horcones", + "scheduled_service": "no", + "gps_code": "MHHO" + }, + { + "id": "31906", + "ident": "MHIC", + "type": "small_airport", + "name": "Islas Del Cisne Airport", + "latitude_deg": "17.407301", + "longitude_deg": "-83.932701", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-IB", + "municipality": "Del Cisne Island", + "scheduled_service": "no", + "gps_code": "MHIC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Islas_del_Cisne_Airport" + }, + { + "id": "42076", + "ident": "MHIN", + "type": "small_airport", + "name": "Minas De Oro Airport", + "latitude_deg": "14.78861141204834", + "longitude_deg": "-87.34972381591797", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CM", + "municipality": "Minas de Oro", + "scheduled_service": "no", + "gps_code": "MHIN" + }, + { + "id": "42077", + "ident": "MHIR", + "type": "small_airport", + "name": "Iriona Airport", + "latitude_deg": "15.939167022700001", + "longitude_deg": "-85.13722229", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CL", + "municipality": "Iriona", + "scheduled_service": "no", + "gps_code": "MHIR", + "iata_code": "IRN" + }, + { + "id": "42078", + "ident": "MHIZ", + "type": "closed", + "name": "Izapan Airport", + "latitude_deg": "15.910278", + "longitude_deg": "-85.171112", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CL", + "municipality": "La Puerta", + "scheduled_service": "no", + "gps_code": "MHIZ" + }, + { + "id": "42079", + "ident": "MHJC", + "type": "closed", + "name": "Jocón Airport", + "latitude_deg": "15.290556", + "longitude_deg": "-86.912224", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-YO", + "municipality": "Jocón", + "scheduled_service": "no", + "keywords": "MHJC" + }, + { + "id": "42080", + "ident": "MHJE", + "type": "small_airport", + "name": "Nueva Jerusalen Airport", + "latitude_deg": "15.878055572509766", + "longitude_deg": "-84.72638702392578", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Rio Plátano", + "scheduled_service": "no", + "gps_code": "MHJE" + }, + { + "id": "42081", + "ident": "MHJI", + "type": "small_airport", + "name": "Jicalapa Airport", + "latitude_deg": "15.006111", + "longitude_deg": "-86.049164", + "elevation_ft": "2133", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-OL", + "municipality": "Jicalapa", + "scheduled_service": "no", + "gps_code": "MHJI", + "iata_code": "GUO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jicalapa_Airport" + }, + { + "id": "42082", + "ident": "MHJO", + "type": "small_airport", + "name": "La Joya Airport", + "latitude_deg": "14.80472183227539", + "longitude_deg": "-86.9191665649414", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-FM", + "scheduled_service": "no", + "gps_code": "MHJO" + }, + { + "id": "42083", + "ident": "MHJQ", + "type": "small_airport", + "name": "Joya Del Quebracho Airport", + "latitude_deg": "14.838889122009277", + "longitude_deg": "-86.96221923828125", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-FM", + "municipality": "Caleras/El Triunfo", + "scheduled_service": "no", + "gps_code": "MHJQ" + }, + { + "id": "42084", + "ident": "MHJU", + "type": "small_airport", + "name": "Jutigalpa airport", + "latitude_deg": "14.652600288391113", + "longitude_deg": "-86.22029876708984", + "elevation_ft": "1314", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-OL", + "municipality": "Jutigalpa", + "scheduled_service": "no", + "gps_code": "MHJU", + "iata_code": "JUT" + }, + { + "id": "42085", + "ident": "MHLA", + "type": "small_airport", + "name": "La Alondra Airport", + "latitude_deg": "14.108888626098633", + "longitude_deg": "-88.53388977050781", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-LE", + "municipality": "Candelaria", + "scheduled_service": "no", + "gps_code": "MHLA" + }, + { + "id": "4660", + "ident": "MHLC", + "type": "medium_airport", + "name": "Goloson International Airport", + "latitude_deg": "15.7425", + "longitude_deg": "-86.852997", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-AT", + "municipality": "La Ceiba", + "scheduled_service": "yes", + "gps_code": "MHLC", + "iata_code": "LCE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Golos%C3%B3n_International_Airport", + "keywords": "Hector C Moncada Air Base" + }, + { + "id": "31811", + "ident": "MHLE", + "type": "small_airport", + "name": "La Esperanza Airport", + "latitude_deg": "14.291111", + "longitude_deg": "-88.175003", + "elevation_ft": "5475", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-IN", + "municipality": "La Esperanza", + "scheduled_service": "no", + "gps_code": "MHLE", + "iata_code": "LEZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Esperanza_Airport_(Intibuc%C3%A1)" + }, + { + "id": "42086", + "ident": "MHLF", + "type": "small_airport", + "name": "Flefil Airport", + "latitude_deg": "14.423333168029785", + "longitude_deg": "-87.11972045898438", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-FM", + "scheduled_service": "no", + "gps_code": "MHLF" + }, + { + "id": "42087", + "ident": "MHLG", + "type": "small_airport", + "name": "La Grecia Airport", + "latitude_deg": "13.2147216796875", + "longitude_deg": "-87.36360931396484", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CH", + "municipality": "Monjarás", + "scheduled_service": "no", + "gps_code": "MHLG" + }, + { + "id": "42088", + "ident": "MHLI", + "type": "small_airport", + "name": "Talanguita Airport", + "latitude_deg": "14.487500190734863", + "longitude_deg": "-87.17972564697266", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-FM", + "scheduled_service": "no", + "gps_code": "MHLI" + }, + { + "id": "42089", + "ident": "MHLJ", + "type": "small_airport", + "name": "Las Lajas Airport", + "latitude_deg": "14.894721984863281", + "longitude_deg": "-86.57472229003906", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-OL", + "municipality": "Coyoles", + "scheduled_service": "no", + "gps_code": "MHLJ" + }, + { + "id": "315215", + "ident": "MHLL", + "type": "heliport", + "name": "Las Lomas Heliport", + "latitude_deg": "14.08065", + "longitude_deg": "-87.17283", + "elevation_ft": "3412", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-FM", + "municipality": "Tegucigalpa", + "scheduled_service": "no", + "gps_code": "MHLL", + "local_code": "MHLL" + }, + { + "id": "4661", + "ident": "MHLM", + "type": "medium_airport", + "name": "Ramón Villeda Morales International Airport", + "latitude_deg": "15.4526", + "longitude_deg": "-87.923599", + "elevation_ft": "91", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CR", + "municipality": "San Pedro Sula", + "scheduled_service": "yes", + "gps_code": "MHLM", + "iata_code": "SAP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ram%C3%B3n_Villeda_Morales_International_Airport" + }, + { + "id": "42090", + "ident": "MHLN", + "type": "small_airport", + "name": "Limon Airport", + "latitude_deg": "15.856066", + "longitude_deg": "-85.443978", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CL", + "municipality": "Limón", + "scheduled_service": "no", + "gps_code": "MHLN" + }, + { + "id": "42091", + "ident": "MHLP", + "type": "small_airport", + "name": "Mapulaca Airport", + "latitude_deg": "14.034167289733887", + "longitude_deg": "-88.62833404541016", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-LE", + "municipality": "Mapulaca", + "scheduled_service": "no", + "gps_code": "MHLP" + }, + { + "id": "42092", + "ident": "MHLS", + "type": "small_airport", + "name": "Laguna Seca Airport", + "latitude_deg": "14.644700050354004", + "longitude_deg": "-86.0698013305664", + "elevation_ft": "353", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-OL", + "municipality": "Laguna Seca", + "scheduled_service": "no", + "gps_code": "MHLS" + }, + { + "id": "42093", + "ident": "MHLT", + "type": "small_airport", + "name": "Llanos Del Tigre Airport", + "latitude_deg": "14.076666831970215", + "longitude_deg": "-86.84166717529297", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-EP", + "municipality": "Moroceli", + "scheduled_service": "no", + "gps_code": "MHLT" + }, + { + "id": "42094", + "ident": "MHLU", + "type": "small_airport", + "name": "Luz Y Vida Airport", + "latitude_deg": "15.14638900756836", + "longitude_deg": "-88.44444274902344", + "elevation_ft": "764", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-SB", + "municipality": "San Luis Pajón", + "scheduled_service": "no", + "gps_code": "MHLU" + }, + { + "id": "42095", + "ident": "MHLV", + "type": "small_airport", + "name": "Las Vegas Airport", + "latitude_deg": "14.873611450195312", + "longitude_deg": "-88.07444763183594", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-SB", + "municipality": "Las Vegas", + "scheduled_service": "no", + "gps_code": "MHLV" + }, + { + "id": "42096", + "ident": "MHLZ", + "type": "small_airport", + "name": "La Estanzuela Airport", + "latitude_deg": "15.016667366027832", + "longitude_deg": "-88.80000305175781", + "elevation_ft": "2227", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CP", + "municipality": "el agua", + "scheduled_service": "no", + "gps_code": "MHLZ" + }, + { + "id": "42097", + "ident": "MHMC", + "type": "heliport", + "name": "Hacienda Montecristo Heliport", + "latitude_deg": "14.866666793823242", + "longitude_deg": "-88.75833129882812", + "elevation_ft": "4140", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CP", + "municipality": "Hacienda Montecristo", + "scheduled_service": "no", + "gps_code": "MHMC" + }, + { + "id": "42098", + "ident": "MHMI", + "type": "closed", + "name": "Las Minitas Airport", + "latitude_deg": "15.051111", + "longitude_deg": "-87.246666", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-YO", + "municipality": "Vallecillo", + "scheduled_service": "no", + "gps_code": "MHMI" + }, + { + "id": "42099", + "ident": "MHML", + "type": "small_airport", + "name": "Monte Libano Airport", + "latitude_deg": "13.179444313049316", + "longitude_deg": "-87.18555450439453", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CH", + "municipality": "Monte Líbano", + "scheduled_service": "no", + "gps_code": "MHML" + }, + { + "id": "42100", + "ident": "MHMM", + "type": "small_airport", + "name": "San Antonio Malera Airport", + "latitude_deg": "14.671943664550781", + "longitude_deg": "-88.25499725341797", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-SB", + "municipality": "Malera", + "scheduled_service": "no", + "gps_code": "MHMM" + }, + { + "id": "42101", + "ident": "MHMN", + "type": "small_airport", + "name": "Monica Airport", + "latitude_deg": "15.652999877929688", + "longitude_deg": "-87.08769989013672", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-AT", + "municipality": "Monica", + "scheduled_service": "no", + "gps_code": "MHMN" + }, + { + "id": "42102", + "ident": "MHMO", + "type": "small_airport", + "name": "San Marcos De Ocotepeque Airport", + "latitude_deg": "14.413056373596191", + "longitude_deg": "-88.95194244384766", + "elevation_ft": "961", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-OC", + "municipality": "San Marcos", + "scheduled_service": "no", + "gps_code": "MHMO" + }, + { + "id": "42103", + "ident": "MHMP", + "type": "small_airport", + "name": "Marcos Perez Airport", + "latitude_deg": "15.286110877990723", + "longitude_deg": "-87.8852767944336", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-YO", + "municipality": "Agua Blanca", + "scheduled_service": "no", + "gps_code": "MHMP" + }, + { + "id": "42104", + "ident": "MHMS", + "type": "small_airport", + "name": "Las Marias Airport", + "latitude_deg": "15.672778129577637", + "longitude_deg": "-84.84471893310547", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Siksatara", + "scheduled_service": "no", + "gps_code": "MHMS" + }, + { + "id": "42105", + "ident": "MHMT", + "type": "small_airport", + "name": "Manto Airport", + "latitude_deg": "14.915555953979492", + "longitude_deg": "-86.38166809082031", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-OL", + "municipality": "Manto", + "scheduled_service": "no", + "gps_code": "MHMT" + }, + { + "id": "22013", + "ident": "MHN", + "type": "small_airport", + "name": "Hooker County Airport", + "latitude_deg": "42.042155", + "longitude_deg": "-101.059113", + "elevation_ft": "3260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Mullen", + "scheduled_service": "no", + "iata_code": "MHN", + "local_code": "84NE", + "keywords": "KMHN" + }, + { + "id": "42106", + "ident": "MHNA", + "type": "small_airport", + "name": "Ciudad Nacaome Airport", + "latitude_deg": "13.529443740844727", + "longitude_deg": "-87.31416320800781", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CH", + "municipality": "Nacaome", + "scheduled_service": "no", + "gps_code": "MHNA" + }, + { + "id": "42107", + "ident": "MHNB", + "type": "small_airport", + "name": "Noveno Batallón Airport", + "latitude_deg": "14.043299674987793", + "longitude_deg": "-86.4207992553711", + "elevation_ft": "426", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-EP", + "municipality": "Apala", + "scheduled_service": "no", + "gps_code": "MHNB" + }, + { + "id": "42108", + "ident": "MHNC", + "type": "small_airport", + "name": "Choluteca Airport", + "latitude_deg": "13.319825", + "longitude_deg": "-87.149025", + "elevation_ft": "213", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CH", + "municipality": "Choluteca", + "scheduled_service": "no", + "gps_code": "MHCH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Choluteca_Airport" + }, + { + "id": "4662", + "ident": "MHNJ", + "type": "medium_airport", + "name": "La Laguna Airport", + "latitude_deg": "16.4454", + "longitude_deg": "-85.906601", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-IB", + "municipality": "Guanaja", + "scheduled_service": "yes", + "gps_code": "MHNJ", + "iata_code": "GJA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guanaja_Airport" + }, + { + "id": "42109", + "ident": "MHNS", + "type": "small_airport", + "name": "Los Llanos Airport", + "latitude_deg": "14.210556030273438", + "longitude_deg": "-88.02166748046875", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-LP", + "scheduled_service": "no", + "gps_code": "MHNS" + }, + { + "id": "42110", + "ident": "MHNV", + "type": "small_airport", + "name": "Nueva Ocotepeque Airport", + "latitude_deg": "14.428889", + "longitude_deg": "-89.193886", + "elevation_ft": "2789", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-OC", + "municipality": "Nueva Ocotepeque", + "scheduled_service": "no", + "gps_code": "MHNV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nueva_Ocotepeque_Airport" + }, + { + "id": "42111", + "ident": "MHOT", + "type": "small_airport", + "name": "Ocotales Airport", + "latitude_deg": "15.669166564941406", + "longitude_deg": "-85.19444274902344", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CL", + "municipality": "Copón", + "scheduled_service": "no", + "gps_code": "MHOT" + }, + { + "id": "42112", + "ident": "MHPA", + "type": "small_airport", + "name": "Barra Del Patuca Airport", + "latitude_deg": "15.80138874053955", + "longitude_deg": "-84.29666900634766", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Barra del Patuca", + "scheduled_service": "no", + "gps_code": "MHPA" + }, + { + "id": "42113", + "ident": "MHPB", + "type": "heliport", + "name": "Publigraficos Heliport", + "latitude_deg": "15.453332901000977", + "longitude_deg": "-88.02194213867188", + "elevation_ft": "159", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CR", + "municipality": "San Pedro Sula", + "scheduled_service": "no", + "gps_code": "MHPB" + }, + { + "id": "35282", + "ident": "MHPC", + "type": "small_airport", + "name": "Palacios Airport", + "latitude_deg": "15.955", + "longitude_deg": "-84.941391", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Palacios", + "scheduled_service": "no", + "gps_code": "MHPC", + "iata_code": "PCH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palacios_Airport" + }, + { + "id": "42114", + "ident": "MHPI", + "type": "small_airport", + "name": "Agropecuaria Piedra De Agua Azul Airport", + "latitude_deg": "13.296111106872559", + "longitude_deg": "-87.3455581665039", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CH", + "municipality": "Buena Vista", + "scheduled_service": "no", + "gps_code": "MHPI" + }, + { + "id": "32153", + "ident": "MHPL", + "type": "small_airport", + "name": "Puerto Lempira Airport", + "latitude_deg": "15.2622", + "longitude_deg": "-83.781197", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Puerto Lempira", + "scheduled_service": "yes", + "gps_code": "MHPL", + "iata_code": "PEU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Puerto_Lempira_Airport" + }, + { + "id": "42115", + "ident": "MHPS", + "type": "small_airport", + "name": "Desvio Potrerillos Airport", + "latitude_deg": "14.595832824707031", + "longitude_deg": "-86.1500015258789", + "elevation_ft": "395", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-OL", + "municipality": "El Encinal", + "scheduled_service": "no", + "gps_code": "MHPS" + }, + { + "id": "42116", + "ident": "MHPV", + "type": "small_airport", + "name": "El Porvenir Airport", + "latitude_deg": "15.530278", + "longitude_deg": "-86.273613", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CL", + "municipality": "Manga", + "scheduled_service": "no", + "gps_code": "MHPV", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Porvenir_Airport_(Honduras)" + }, + { + "id": "42117", + "ident": "MHPY", + "type": "closed", + "name": "Payasito Airport", + "latitude_deg": "15.875833", + "longitude_deg": "-85.396942", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CL", + "municipality": "Farallones", + "scheduled_service": "no", + "gps_code": "MHPY" + }, + { + "id": "42118", + "ident": "MHRA", + "type": "small_airport", + "name": "Rapaco II Airport", + "latitude_deg": "14.07361125946045", + "longitude_deg": "-86.91000366210938", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-EP", + "scheduled_service": "no", + "gps_code": "MHRA" + }, + { + "id": "42119", + "ident": "MHRD", + "type": "small_airport", + "name": "Rus Rus II Airport", + "latitude_deg": "14.787221908569336", + "longitude_deg": "-84.36972045898438", + "elevation_ft": "173", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Rus Rus", + "scheduled_service": "no", + "gps_code": "MHRD" + }, + { + "id": "42120", + "ident": "MHRH", + "type": "small_airport", + "name": "Regional Hamer Airport", + "latitude_deg": "15.563332557678223", + "longitude_deg": "-86.19139099121094", + "elevation_ft": "202", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CL", + "scheduled_service": "no", + "gps_code": "MHRH" + }, + { + "id": "42121", + "ident": "MHRJ", + "type": "small_airport", + "name": "Rancho Jamastran Airport", + "latitude_deg": "14.060999870300293", + "longitude_deg": "-86.40750122070312", + "elevation_ft": "482", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-EP", + "municipality": "Apala", + "scheduled_service": "no", + "gps_code": "MHRJ" + }, + { + "id": "4663", + "ident": "MHRO", + "type": "medium_airport", + "name": "Juan Manuel Gálvez International Airport", + "latitude_deg": "16.316799", + "longitude_deg": "-86.523003", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-IB", + "municipality": "Roatán", + "scheduled_service": "yes", + "gps_code": "MHRO", + "iata_code": "RTB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Juan_Manuel_G%C3%A1lvez_International_Airport", + "keywords": "Roatan International" + }, + { + "id": "42122", + "ident": "MHRR", + "type": "small_airport", + "name": "Rus Rus I Airport", + "latitude_deg": "14.713055610656738", + "longitude_deg": "-84.45249938964844", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Rus Rus", + "scheduled_service": "no", + "gps_code": "MHRR" + }, + { + "id": "42123", + "ident": "MHRS", + "type": "closed", + "name": "Santa Rosa de Copán Airport", + "latitude_deg": "14.777889", + "longitude_deg": "-88.775021", + "elevation_ft": "3564", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CP", + "municipality": "Santa Rosa de Copán", + "scheduled_service": "no", + "gps_code": "MHSR", + "iata_code": "SDH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Rosa_de_Cop%C3%A1n_Airport" + }, + { + "id": "42124", + "ident": "MHRU", + "type": "small_airport", + "name": "Copán Ruinas Airport", + "latitude_deg": "14.914885", + "longitude_deg": "-89.007837", + "elevation_ft": "2336", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CP", + "municipality": "Copán Ruinas", + "scheduled_service": "no", + "gps_code": "MHRU", + "iata_code": "RUY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cop%C3%A1n_Ruinas_Airport" + }, + { + "id": "42125", + "ident": "MHRY", + "type": "small_airport", + "name": "Raya Airport", + "latitude_deg": "15.066389083862305", + "longitude_deg": "-83.2972183227539", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Raya", + "scheduled_service": "no", + "gps_code": "MHRY" + }, + { + "id": "4664", + "ident": "MHSC", + "type": "medium_airport", + "name": "Palmerola International Airport", + "latitude_deg": "14.3824", + "longitude_deg": "-87.621201", + "elevation_ft": "2061", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CM", + "municipality": "Tegucigalpa", + "scheduled_service": "yes", + "gps_code": "MHPR", + "iata_code": "XPL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Comayagua_International_Airport", + "keywords": "Comayagua International, MHSC, Enrique Soto Cano, Palmerola Air Base" + }, + { + "id": "42126", + "ident": "MHSI", + "type": "small_airport", + "name": "Sico Airport", + "latitude_deg": "15.818611145019531", + "longitude_deg": "-85.11444091796875", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CL", + "municipality": "Sico", + "scheduled_service": "no", + "gps_code": "MHSI" + }, + { + "id": "42127", + "ident": "MHSJ", + "type": "small_airport", + "name": "San Jose Airport", + "latitude_deg": "13.827777862548828", + "longitude_deg": "-86.8102798461914", + "elevation_ft": "454", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-EP", + "municipality": "Oropoli", + "scheduled_service": "no", + "gps_code": "MHSJ" + }, + { + "id": "42128", + "ident": "MHSL", + "type": "small_airport", + "name": "San Lorenzo Airport", + "latitude_deg": "13.442222", + "longitude_deg": "-87.459724", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-VA", + "municipality": "El Hato", + "scheduled_service": "no", + "gps_code": "MHSL" + }, + { + "id": "42129", + "ident": "MHSN", + "type": "small_airport", + "name": "Sinaloa Airport", + "latitude_deg": "15.69333267211914", + "longitude_deg": "-85.95527648925781", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CL", + "municipality": "Sinaloa", + "scheduled_service": "no", + "gps_code": "MHSN" + }, + { + "id": "42130", + "ident": "MHSX", + "type": "small_airport", + "name": "Sixatigni Airport", + "latitude_deg": "15.183610916137695", + "longitude_deg": "-84.36972045898438", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "scheduled_service": "no", + "gps_code": "MHSX" + }, + { + "id": "42131", + "ident": "MHSZ", + "type": "small_airport", + "name": "Santa Barbara Airport", + "latitude_deg": "13.33055591583252", + "longitude_deg": "-87.1544418334961", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CH", + "municipality": "Choluteca", + "scheduled_service": "no", + "gps_code": "MHSZ" + }, + { + "id": "42132", + "ident": "MHTA", + "type": "small_airport", + "name": "Tamara Airport", + "latitude_deg": "14.180000305175781", + "longitude_deg": "-87.3499984741211", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-FM", + "municipality": "Tamara", + "scheduled_service": "no", + "gps_code": "MHTA" + }, + { + "id": "42133", + "ident": "MHTB", + "type": "small_airport", + "name": "La Katabila Airport", + "latitude_deg": "15.175000190734863", + "longitude_deg": "-83.68222045898438", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Tuntuntara", + "scheduled_service": "no", + "gps_code": "MHTB" + }, + { + "id": "4665", + "ident": "MHTE", + "type": "medium_airport", + "name": "Tela Airport", + "latitude_deg": "15.7759", + "longitude_deg": "-87.4758", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-AT", + "municipality": "Tela", + "scheduled_service": "no", + "gps_code": "MHTE", + "iata_code": "TEA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tela_Airport" + }, + { + "id": "4666", + "ident": "MHTG", + "type": "medium_airport", + "name": "Toncontín International Airport", + "latitude_deg": "14.06089973449707", + "longitude_deg": "-87.21720123291016", + "elevation_ft": "3294", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-FM", + "municipality": "Tegucigalpa", + "scheduled_service": "yes", + "gps_code": "MHTG", + "iata_code": "TGU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toncont%C3%ADn_International_Airport" + }, + { + "id": "42134", + "ident": "MHTI", + "type": "small_airport", + "name": "Tipimuratara Airport", + "latitude_deg": "15.001111030578613", + "longitude_deg": "-83.72222137451172", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Tipimunatara", + "scheduled_service": "no", + "gps_code": "MHTI" + }, + { + "id": "4667", + "ident": "MHTJ", + "type": "medium_airport", + "name": "Trujillo Airport", + "latitude_deg": "15.926599", + "longitude_deg": "-85.938573", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CL", + "municipality": "Trujillo", + "scheduled_service": "no", + "gps_code": "MHTJ", + "iata_code": "TJI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trujillo_Airport" + }, + { + "id": "42135", + "ident": "MHTM", + "type": "small_airport", + "name": "Santa Maria Airport", + "latitude_deg": "14.2772216796875", + "longitude_deg": "-87.9366683959961", + "elevation_ft": "1151", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-LP", + "municipality": "Santa María", + "scheduled_service": "no", + "gps_code": "MHTM" + }, + { + "id": "42136", + "ident": "MHTO", + "type": "small_airport", + "name": "Tocoa Airport", + "latitude_deg": "15.659722328186035", + "longitude_deg": "-85.9941635131836", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CL", + "municipality": "Tocoa", + "scheduled_service": "no", + "gps_code": "MHTO" + }, + { + "id": "42137", + "ident": "MHUC", + "type": "small_airport", + "name": "Auca Airport", + "latitude_deg": "14.93722152709961", + "longitude_deg": "-83.84416961669922", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Auca", + "scheduled_service": "no", + "gps_code": "MHUC" + }, + { + "id": "42138", + "ident": "MHUG", + "type": "small_airport", + "name": "Guanacastal Airport", + "latitude_deg": "14.915555953979492", + "longitude_deg": "-87.83333587646484", + "elevation_ft": "1563", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CR", + "municipality": "Canchias", + "scheduled_service": "no", + "gps_code": "MHUG" + }, + { + "id": "42139", + "ident": "MHUH", + "type": "small_airport", + "name": "Uhi Airport", + "latitude_deg": "15.476099967956543", + "longitude_deg": "-83.91130065917969", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Uhi", + "scheduled_service": "no", + "gps_code": "MHUH" + }, + { + "id": "42140", + "ident": "MHUL", + "type": "small_airport", + "name": "Sulaco Airport", + "latitude_deg": "14.90719985961914", + "longitude_deg": "-87.26339721679688", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-YO", + "municipality": "Sulaco", + "scheduled_service": "no", + "gps_code": "MHUL", + "iata_code": "SCD" + }, + { + "id": "42141", + "ident": "MHUO", + "type": "small_airport", + "name": "La Union Airport", + "latitude_deg": "14.808055877685547", + "longitude_deg": "-88.41999816894531", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-LE", + "municipality": "La Unión", + "scheduled_service": "no", + "gps_code": "MHUO" + }, + { + "id": "32522", + "ident": "MHUT", + "type": "small_airport", + "name": "Utila Airport", + "latitude_deg": "16.1131", + "longitude_deg": "-86.880302", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-IB", + "municipality": "Utila Island", + "scheduled_service": "yes", + "gps_code": "MHUT", + "iata_code": "UII", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%9Atila_Airport" + }, + { + "id": "42142", + "ident": "MHUY", + "type": "small_airport", + "name": "Cucuyagua Airport", + "latitude_deg": "14.626943588256836", + "longitude_deg": "-88.87638854980469", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-CP", + "municipality": "Cucuyagua", + "scheduled_service": "no", + "gps_code": "MHUY" + }, + { + "id": "42143", + "ident": "MHVE", + "type": "small_airport", + "name": "Villa Hermosa Airport", + "latitude_deg": "14.230278015136719", + "longitude_deg": "-88.79944610595703", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-LE", + "municipality": "Coyolillo", + "scheduled_service": "no", + "gps_code": "MHVE" + }, + { + "id": "42144", + "ident": "MHVG", + "type": "small_airport", + "name": "Villa Guadalupe Airport", + "latitude_deg": "15.04555606842041", + "longitude_deg": "-88.30889129638672", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-SB", + "municipality": "Villa Guadalupe", + "scheduled_service": "no", + "gps_code": "MHVG" + }, + { + "id": "42145", + "ident": "MHWA", + "type": "small_airport", + "name": "Wampusirpi I Airport", + "latitude_deg": "15.1602783203125", + "longitude_deg": "-84.61722564697266", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Wampusirpi", + "scheduled_service": "no", + "gps_code": "MHWA" + }, + { + "id": "42146", + "ident": "MHWD", + "type": "small_airport", + "name": "Wampusirpi II Airport", + "latitude_deg": "15.159167289733887", + "longitude_deg": "-84.59833526611328", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Wampusirpi", + "scheduled_service": "no", + "gps_code": "MHWD" + }, + { + "id": "42147", + "ident": "MHWP", + "type": "small_airport", + "name": "Waplaya Airport", + "latitude_deg": "15.213055610656738", + "longitude_deg": "-84.06861114501953", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Waplaya", + "scheduled_service": "no", + "gps_code": "MHWP" + }, + { + "id": "42148", + "ident": "MHWR", + "type": "small_airport", + "name": "Warunta Airport", + "latitude_deg": "15.348610877990723", + "longitude_deg": "-84.23444366455078", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Warunta", + "scheduled_service": "no", + "gps_code": "MHWR" + }, + { + "id": "42149", + "ident": "MHWS", + "type": "small_airport", + "name": "Wasma Airport", + "latitude_deg": "15.481900215148926", + "longitude_deg": "-84.41609954833984", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Wasma", + "scheduled_service": "no", + "gps_code": "MHWS" + }, + { + "id": "42150", + "ident": "MHWW", + "type": "small_airport", + "name": "Wawina Airport", + "latitude_deg": "15.41611099243164", + "longitude_deg": "-84.4736099243164", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Wawina", + "scheduled_service": "no", + "gps_code": "MHWW" + }, + { + "id": "306957", + "ident": "MHY", + "type": "small_airport", + "name": "Morehead Airport", + "latitude_deg": "-8.71411111111", + "longitude_deg": "141.644444444", + "elevation_ft": "100", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Morehead", + "scheduled_service": "no", + "gps_code": "AYEH", + "iata_code": "MHY", + "local_code": "MHD" + }, + { + "id": "315202", + "ident": "MHYR", + "type": "small_airport", + "name": "Yoro Airport", + "latitude_deg": "15.1275", + "longitude_deg": "-87.135", + "elevation_ft": "2215", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-YO", + "municipality": "Yoro", + "scheduled_service": "no", + "gps_code": "MHYR", + "iata_code": "ORO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yoro_Airport" + }, + { + "id": "42151", + "ident": "MHYX", + "type": "small_airport", + "name": "Yaxu Airport", + "latitude_deg": "15.27750015258789", + "longitude_deg": "-83.82027435302734", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-GD", + "municipality": "Puerto Lempira", + "scheduled_service": "no", + "gps_code": "MHYX" + }, + { + "id": "42152", + "ident": "MHZA", + "type": "small_airport", + "name": "Azacualpa Airport", + "latitude_deg": "14.256943702697754", + "longitude_deg": "-88.39250183105469", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-IN", + "municipality": "Azacualpa", + "scheduled_service": "no", + "gps_code": "MHZA" + }, + { + "id": "13632", + "ident": "MI00", + "type": "small_airport", + "name": "Van Effen Field", + "latitude_deg": "46.0522", + "longitude_deg": "-87.258202", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Rock", + "scheduled_service": "no", + "local_code": "6Y4", + "home_link": "http://www.michigan.gov/aero/0,4533,7-145-61367_61379-362803--,00.html", + "keywords": "Formerly MI06, 6Y4, MI00, Bonnie Field" + }, + { + "id": "22014", + "ident": "MI01", + "type": "small_airport", + "name": "Fasel Field", + "latitude_deg": "43.05780029296875", + "longitude_deg": "-82.6769027709961", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Avoca", + "scheduled_service": "no", + "gps_code": "MI01", + "local_code": "MI01" + }, + { + "id": "22015", + "ident": "MI02", + "type": "closed", + "name": "Brablec Farms Airport", + "latitude_deg": "41.987", + "longitude_deg": "-83.804701", + "elevation_ft": "691", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Britton", + "scheduled_service": "no", + "keywords": "MI02" + }, + { + "id": "22016", + "ident": "MI03", + "type": "seaplane_base", + "name": "Read Seaplane Base", + "latitude_deg": "46.16889953613281", + "longitude_deg": "-85.7936019897461", + "elevation_ft": "692", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Curtis", + "scheduled_service": "no", + "gps_code": "MI03", + "local_code": "MI03" + }, + { + "id": "22017", + "ident": "MI04", + "type": "closed", + "name": "Airborn Paraflite Ultralight Flightpark", + "latitude_deg": "43.3069", + "longitude_deg": "-84.645798", + "elevation_ft": "758", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ithaca", + "scheduled_service": "no", + "keywords": "MI04" + }, + { + "id": "22018", + "ident": "MI05", + "type": "small_airport", + "name": "Crompton's Private Strip", + "latitude_deg": "43.165707", + "longitude_deg": "-83.788233", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Clio", + "scheduled_service": "no", + "gps_code": "MI05", + "local_code": "MI05" + }, + { + "id": "22019", + "ident": "MI06", + "type": "closed", + "name": "Lee Field", + "latitude_deg": "42.9231", + "longitude_deg": "-84.283301", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Bennington", + "scheduled_service": "no", + "keywords": "MI06" + }, + { + "id": "22020", + "ident": "MI07", + "type": "heliport", + "name": "Dearborn Helistop", + "latitude_deg": "42.297298431396484", + "longitude_deg": "-83.22709655761719", + "elevation_ft": "606", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Dearborn", + "scheduled_service": "no", + "gps_code": "MI07", + "local_code": "MI07" + }, + { + "id": "22021", + "ident": "MI08", + "type": "closed", + "name": "Chrysler Corp Heliport", + "latitude_deg": "42.653099", + "longitude_deg": "-83.224998", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Auburn Hills", + "scheduled_service": "no", + "keywords": "MI08" + }, + { + "id": "22022", + "ident": "MI09", + "type": "closed", + "name": "Milan Airport", + "latitude_deg": "42.050593", + "longitude_deg": "-83.741313", + "elevation_ft": "706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Milan", + "scheduled_service": "no", + "keywords": "MI09" + }, + { + "id": "22023", + "ident": "MI10", + "type": "small_airport", + "name": "Hoerners Corners Airport", + "latitude_deg": "42.865299224853516", + "longitude_deg": "-84.70549774169922", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "De Witt", + "scheduled_service": "no", + "gps_code": "MI10", + "local_code": "MI10" + }, + { + "id": "22024", + "ident": "MI11", + "type": "small_airport", + "name": "Crippen Field", + "latitude_deg": "42.541542", + "longitude_deg": "-84.808964", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Charlotte", + "scheduled_service": "no", + "gps_code": "MI11", + "local_code": "MI11" + }, + { + "id": "22025", + "ident": "MI12", + "type": "closed", + "name": "State Police HQ Heliport", + "latitude_deg": "42.7267", + "longitude_deg": "-84.490303", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "East Lansing", + "scheduled_service": "no", + "keywords": "MI12" + }, + { + "id": "22026", + "ident": "MI13", + "type": "small_airport", + "name": "Minikey Airport", + "latitude_deg": "43.16170120239258", + "longitude_deg": "-85.06169891357422", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Sheridan", + "scheduled_service": "no", + "gps_code": "MI13", + "local_code": "MI13" + }, + { + "id": "22027", + "ident": "MI14", + "type": "heliport", + "name": "Overflow Pad (Lower Pad) Heliport", + "latitude_deg": "42.28889846801758", + "longitude_deg": "-83.73049926757812", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ann Arbor", + "scheduled_service": "no", + "gps_code": "MI14", + "local_code": "MI14" + }, + { + "id": "22028", + "ident": "MI15", + "type": "small_airport", + "name": "Wards Long Acres Airport", + "latitude_deg": "42.72919845581055", + "longitude_deg": "-82.66519927978516", + "elevation_ft": "618", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Fair Haven", + "scheduled_service": "no", + "gps_code": "MI15", + "local_code": "MI15" + }, + { + "id": "22029", + "ident": "MI16", + "type": "closed", + "name": "Independence Green Heliport", + "latitude_deg": "42.470001", + "longitude_deg": "-83.419404", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Farmington", + "scheduled_service": "no", + "keywords": "MI16" + }, + { + "id": "22030", + "ident": "MI17", + "type": "heliport", + "name": "Hackley Hospital Emergency Heliport", + "latitude_deg": "43.223864", + "longitude_deg": "-86.242043", + "elevation_ft": "628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Muskegon", + "scheduled_service": "no", + "gps_code": "MI17", + "local_code": "MI17" + }, + { + "id": "22031", + "ident": "MI18", + "type": "small_airport", + "name": "Cedarville Airport", + "latitude_deg": "43.099518", + "longitude_deg": "-83.837271", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Flushing", + "scheduled_service": "no", + "gps_code": "MI18", + "local_code": "MI18" + }, + { + "id": "22032", + "ident": "MI19", + "type": "small_airport", + "name": "Thorn Airport", + "latitude_deg": "43.93000030517578", + "longitude_deg": "-86.16560363769531", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Custer", + "scheduled_service": "no", + "gps_code": "MI19", + "local_code": "MI19" + }, + { + "id": "22033", + "ident": "MI20", + "type": "heliport", + "name": "White O'Morn Heliport", + "latitude_deg": "42.252601623535156", + "longitude_deg": "-84.00740051269531", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Chelsea", + "scheduled_service": "no", + "gps_code": "MI20", + "local_code": "MI20" + }, + { + "id": "22034", + "ident": "MI21", + "type": "closed", + "name": "AC Miller Airport", + "latitude_deg": "41.737499", + "longitude_deg": "-84.564903", + "elevation_ft": "944", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Osseo", + "scheduled_service": "no", + "keywords": "MI21" + }, + { + "id": "22035", + "ident": "MI22", + "type": "small_airport", + "name": "Crump Airport", + "latitude_deg": "41.87369918823242", + "longitude_deg": "-86.20279693603516", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Niles", + "scheduled_service": "no", + "gps_code": "MI22", + "local_code": "MI22" + }, + { + "id": "22036", + "ident": "MI23", + "type": "small_airport", + "name": "Mckimmy Field", + "latitude_deg": "43.346900939941406", + "longitude_deg": "-83.86669921875", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Bridgeport", + "scheduled_service": "no", + "gps_code": "MI23", + "local_code": "MI23" + }, + { + "id": "22037", + "ident": "MI24", + "type": "small_airport", + "name": "Deer Lake Airpark", + "latitude_deg": "45.141701", + "longitude_deg": "-85.006699", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "East Jordan", + "scheduled_service": "no", + "gps_code": "MI24", + "local_code": "MI24", + "keywords": "Wilson Township Airport" + }, + { + "id": "22038", + "ident": "MI25", + "type": "small_airport", + "name": "Myers Airport", + "latitude_deg": "41.922298431396484", + "longitude_deg": "-86.54560089111328", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Bridgman", + "scheduled_service": "no", + "gps_code": "MI25", + "local_code": "MI25" + }, + { + "id": "22039", + "ident": "MI26", + "type": "closed", + "name": "Hynes Field", + "latitude_deg": "42.610901", + "longitude_deg": "-83.732697", + "elevation_ft": "978", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Hartland", + "scheduled_service": "no", + "keywords": "MI26" + }, + { + "id": "22040", + "ident": "MI27", + "type": "small_airport", + "name": "Haigh Airport", + "latitude_deg": "42.612065", + "longitude_deg": "-83.859102", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Howell", + "scheduled_service": "no", + "gps_code": "MI27", + "local_code": "MI27" + }, + { + "id": "22041", + "ident": "MI28", + "type": "heliport", + "name": "Dow Division Heliport", + "latitude_deg": "43.59230041503906", + "longitude_deg": "-84.22440338134766", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Midland", + "scheduled_service": "no", + "gps_code": "MI28", + "local_code": "MI28" + }, + { + "id": "22042", + "ident": "MI29", + "type": "small_airport", + "name": "Gooding Airport", + "latitude_deg": "42.376399993896484", + "longitude_deg": "-83.7927017211914", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Whitmore Lake", + "scheduled_service": "no", + "gps_code": "MI29", + "local_code": "MI29" + }, + { + "id": "22043", + "ident": "MI30", + "type": "closed", + "name": "Kidder Field Heliport", + "latitude_deg": "42.9361", + "longitude_deg": "-85.621101", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Grand Rapids", + "scheduled_service": "no", + "keywords": "MI30" + }, + { + "id": "22044", + "ident": "MI31", + "type": "small_airport", + "name": "Cornish Field", + "latitude_deg": "42.10150146484375", + "longitude_deg": "-85.83789825439453", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lawton", + "scheduled_service": "no", + "gps_code": "MI31", + "local_code": "MI31" + }, + { + "id": "22045", + "ident": "MI32", + "type": "heliport", + "name": "Ummc Heliport", + "latitude_deg": "42.2859001159668", + "longitude_deg": "-83.72799682617188", + "elevation_ft": "802", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ann Arbor", + "scheduled_service": "no", + "gps_code": "MI32", + "local_code": "MI32" + }, + { + "id": "22046", + "ident": "MI33", + "type": "closed", + "name": "Adair Airstrip", + "latitude_deg": "42.792301", + "longitude_deg": "-82.639397", + "elevation_ft": "631", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Richmond", + "scheduled_service": "no", + "keywords": "MI33" + }, + { + "id": "22047", + "ident": "MI34", + "type": "heliport", + "name": "Ingham Medical Helistop", + "latitude_deg": "42.70280075073242", + "longitude_deg": "-84.5530014038086", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lansing", + "scheduled_service": "no", + "gps_code": "MI34", + "local_code": "MI34" + }, + { + "id": "22048", + "ident": "MI35", + "type": "small_airport", + "name": "Claucherty Airport", + "latitude_deg": "42.077341", + "longitude_deg": "-84.827599", + "elevation_ft": "988", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Litchfield", + "scheduled_service": "no", + "gps_code": "MI35", + "local_code": "MI35" + }, + { + "id": "22049", + "ident": "MI36", + "type": "heliport", + "name": "Johnston Field", + "latitude_deg": "42.60919952392578", + "longitude_deg": "-83.81390380859375", + "elevation_ft": "1005", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Howell", + "scheduled_service": "no", + "gps_code": "MI36", + "local_code": "MI36" + }, + { + "id": "22050", + "ident": "MI37", + "type": "small_airport", + "name": "Wenning Landing Area Airport", + "latitude_deg": "42.758454", + "longitude_deg": "-82.55516", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Marine City", + "scheduled_service": "no", + "gps_code": "MI37", + "local_code": "MI37" + }, + { + "id": "22051", + "ident": "MI38", + "type": "small_airport", + "name": "Eichmeier Field", + "latitude_deg": "42.602298736572266", + "longitude_deg": "-84.42639923095703", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Mason", + "scheduled_service": "no", + "gps_code": "MI38", + "local_code": "MI38" + }, + { + "id": "22052", + "ident": "MI39", + "type": "closed", + "name": "Laszlo Airport", + "latitude_deg": "42.075003", + "longitude_deg": "-83.608299", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Milan", + "scheduled_service": "no", + "keywords": "MI39" + }, + { + "id": "22053", + "ident": "MI40", + "type": "heliport", + "name": "Fairlane Plaza Heliport", + "latitude_deg": "42.320899963378906", + "longitude_deg": "-83.21939849853516", + "elevation_ft": "614", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Dearborn", + "scheduled_service": "no", + "gps_code": "MI40", + "local_code": "MI40" + }, + { + "id": "22054", + "ident": "MI41", + "type": "small_airport", + "name": "Crystal Airport", + "latitude_deg": "42.83169937133789", + "longitude_deg": "-82.53459930419922", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "St. Clair", + "scheduled_service": "no", + "gps_code": "MI41", + "local_code": "MI41" + }, + { + "id": "22055", + "ident": "MI42", + "type": "heliport", + "name": "B C Cobb Heliport", + "latitude_deg": "43.254431", + "longitude_deg": "-86.240632", + "elevation_ft": "586", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Muskegon", + "scheduled_service": "no", + "gps_code": "MI42", + "local_code": "MI42" + }, + { + "id": "22056", + "ident": "MI43", + "type": "closed", + "name": "Pewanogowink-Banks Airport", + "latitude_deg": "43.186874", + "longitude_deg": "-83.899798", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Montrose", + "scheduled_service": "no", + "keywords": "MI43" + }, + { + "id": "22057", + "ident": "MI44", + "type": "small_airport", + "name": "D J Airport", + "latitude_deg": "43.672298431396484", + "longitude_deg": "-84.73670196533203", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Mount Pleasant", + "scheduled_service": "no", + "gps_code": "MI44", + "local_code": "MI44" + }, + { + "id": "22058", + "ident": "MI45", + "type": "small_airport", + "name": "Ed Schulte's Place STOLport", + "latitude_deg": "42.808101654052734", + "longitude_deg": "-83.45189666748047", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ortonville", + "scheduled_service": "no", + "gps_code": "MI45", + "local_code": "MI45" + }, + { + "id": "22059", + "ident": "MI46", + "type": "heliport", + "name": "Heliflite Heliport", + "latitude_deg": "42.487300872802734", + "longitude_deg": "-83.65190124511719", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "South Lyon", + "scheduled_service": "no", + "gps_code": "MI46", + "local_code": "MI46" + }, + { + "id": "22060", + "ident": "MI47", + "type": "closed", + "name": "Dysinger Airport", + "latitude_deg": "42.808399", + "longitude_deg": "-84.190201", + "elevation_ft": "897", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Perry", + "scheduled_service": "no", + "keywords": "MI47" + }, + { + "id": "22061", + "ident": "MI48", + "type": "small_airport", + "name": "Ham-A-Lot Field", + "latitude_deg": "41.83340072631836", + "longitude_deg": "-83.68329620361328", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Petersburg", + "scheduled_service": "no", + "gps_code": "MI48", + "local_code": "MI48" + }, + { + "id": "22062", + "ident": "MI49", + "type": "heliport", + "name": "Hillsdale Hospital Heliport", + "latitude_deg": "41.91120147705078", + "longitude_deg": "-84.63359832763672", + "elevation_ft": "1141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Hillsdale", + "scheduled_service": "no", + "gps_code": "MI49", + "local_code": "MI49" + }, + { + "id": "22063", + "ident": "MI50", + "type": "small_airport", + "name": "Dodge Airport", + "latitude_deg": "42.766700744628906", + "longitude_deg": "-82.94989776611328", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Romeo", + "scheduled_service": "no", + "gps_code": "MI50", + "local_code": "MI50" + }, + { + "id": "22064", + "ident": "MI51", + "type": "closed", + "name": "Loars Field", + "latitude_deg": "41.996895", + "longitude_deg": "-84.188599", + "elevation_ft": "995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Onsted", + "scheduled_service": "no", + "keywords": "MI51" + }, + { + "id": "22065", + "ident": "MI52", + "type": "small_airport", + "name": "Markham Airport", + "latitude_deg": "42.090599060058594", + "longitude_deg": "-83.96800231933594", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "MI52", + "local_code": "MI52" + }, + { + "id": "22066", + "ident": "MI53", + "type": "small_airport", + "name": "Mills Field", + "latitude_deg": "42.00920104980469", + "longitude_deg": "-83.25830078125", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "MI53", + "local_code": "MI53" + }, + { + "id": "22067", + "ident": "MI54", + "type": "heliport", + "name": "Helifarm Heliport", + "latitude_deg": "41.79359817504883", + "longitude_deg": "-83.53810119628906", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "MI54", + "local_code": "MI54" + }, + { + "id": "22068", + "ident": "MI55", + "type": "closed", + "name": "Zeitler Airport", + "latitude_deg": "43.490002", + "longitude_deg": "-84.365303", + "elevation_ft": "678", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Merril", + "scheduled_service": "no", + "keywords": "MI55" + }, + { + "id": "22069", + "ident": "MI56", + "type": "small_airport", + "name": "Boulder Canyon Airport", + "latitude_deg": "43.075769", + "longitude_deg": "-85.268283", + "elevation_ft": "987", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Belding", + "scheduled_service": "no", + "local_code": "56C", + "keywords": "MI56" + }, + { + "id": "22070", + "ident": "MI57", + "type": "heliport", + "name": "Eagle Heliport", + "latitude_deg": "42.79309844970703", + "longitude_deg": "-83.0261001586914", + "elevation_ft": "605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Romeo", + "scheduled_service": "no", + "gps_code": "MI57", + "local_code": "MI57" + }, + { + "id": "22071", + "ident": "MI58", + "type": "closed", + "name": "Stony Acres Airport", + "latitude_deg": "42.754501", + "longitude_deg": "-85.028603", + "elevation_ft": "849", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Sunfield", + "scheduled_service": "no", + "keywords": "MI58" + }, + { + "id": "22072", + "ident": "MI59", + "type": "heliport", + "name": "Cass Heliport", + "latitude_deg": "42.60100173950195", + "longitude_deg": "-83.39420318603516", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "West Bloomfield", + "scheduled_service": "no", + "gps_code": "MI59", + "local_code": "MI59" + }, + { + "id": "22073", + "ident": "MI60", + "type": "small_airport", + "name": "Tannehill Airfield", + "latitude_deg": "44.591400146484375", + "longitude_deg": "-85.31079864501953", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Fife Lake", + "scheduled_service": "no", + "gps_code": "MI60", + "local_code": "MI60" + }, + { + "id": "22074", + "ident": "MI61", + "type": "heliport", + "name": "Henry Ford Wyandotte Hospital Heliport", + "latitude_deg": "42.20840072631836", + "longitude_deg": "-83.14420318603516", + "elevation_ft": "578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Wyandotte", + "scheduled_service": "no", + "gps_code": "MI61", + "local_code": "MI61" + }, + { + "id": "328793", + "ident": "MI62", + "type": "heliport", + "name": "MidMichigan Medical Center-Alpena Heliport", + "latitude_deg": "45.077083", + "longitude_deg": "-83.448066", + "elevation_ft": "605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Alpena", + "scheduled_service": "no", + "gps_code": "MI62", + "local_code": "MI62" + }, + { + "id": "22075", + "ident": "MI63", + "type": "heliport", + "name": "St Mary's Hospital Heliport", + "latitude_deg": "42.95928", + "longitude_deg": "-85.663797", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Grand Rapids", + "scheduled_service": "no", + "gps_code": "MI63", + "local_code": "MI63" + }, + { + "id": "22076", + "ident": "MI66", + "type": "heliport", + "name": "Michigan International Speedway Heliport", + "latitude_deg": "42.070319", + "longitude_deg": "-84.241473", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Brooklyn", + "scheduled_service": "no", + "gps_code": "MI66", + "local_code": "MI66" + }, + { + "id": "22077", + "ident": "MI67", + "type": "small_airport", + "name": "Tyrone Airport", + "latitude_deg": "43.28919982910156", + "longitude_deg": "-85.78119659423828", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Bailey", + "scheduled_service": "no", + "gps_code": "MI67", + "local_code": "MI67" + }, + { + "id": "22078", + "ident": "MI68", + "type": "small_airport", + "name": "Baroda Airport", + "latitude_deg": "41.937658", + "longitude_deg": "-86.501563", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Baroda", + "scheduled_service": "no", + "gps_code": "MI68", + "local_code": "MI68", + "keywords": "Del Hickcox Airport" + }, + { + "id": "22079", + "ident": "MI69", + "type": "closed", + "name": "Battle Creek Health System Helistop", + "latitude_deg": "42.330861", + "longitude_deg": "-85.178611", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Battle Creek", + "scheduled_service": "no", + "keywords": "MI69" + }, + { + "id": "22080", + "ident": "MI70", + "type": "small_airport", + "name": "Carl's Airport", + "latitude_deg": "42.071201", + "longitude_deg": "-83.883598", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "MI70", + "local_code": "MI70" + }, + { + "id": "22081", + "ident": "MI71", + "type": "small_airport", + "name": "Silver Lake Airport", + "latitude_deg": "43.644500732421875", + "longitude_deg": "-86.4529037475586", + "elevation_ft": "772", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Mears", + "scheduled_service": "no", + "gps_code": "MI71", + "local_code": "MI71" + }, + { + "id": "22082", + "ident": "MI72", + "type": "small_airport", + "name": "Nelson Airport", + "latitude_deg": "41.851343", + "longitude_deg": "-86.359706", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Buchanan", + "scheduled_service": "no", + "gps_code": "MI72", + "local_code": "MI72" + }, + { + "id": "22083", + "ident": "MI73", + "type": "closed", + "name": "North Cedar Airport", + "latitude_deg": "43.2584", + "longitude_deg": "-85.545898", + "elevation_ft": "893", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Cedar Springs", + "scheduled_service": "no", + "keywords": "MI73" + }, + { + "id": "22084", + "ident": "MI74", + "type": "heliport", + "name": "Wdiv-Tv Channel 4 Heliport", + "latitude_deg": "42.32979965209961", + "longitude_deg": "-83.05349731445312", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Detroit", + "scheduled_service": "no", + "gps_code": "MI74", + "local_code": "MI74" + }, + { + "id": "347095", + "ident": "MI75", + "type": "heliport", + "name": "Torchlake Heliport", + "latitude_deg": "45.026492", + "longitude_deg": "-85.325561", + "elevation_ft": "593", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Kewadin", + "scheduled_service": "no", + "gps_code": "MI75", + "local_code": "MI75" + }, + { + "id": "22085", + "ident": "MI76", + "type": "small_airport", + "name": "Reading Airport", + "latitude_deg": "42.54732", + "longitude_deg": "-86.21729", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Fennville", + "scheduled_service": "no", + "gps_code": "MI76", + "local_code": "MI76" + }, + { + "id": "22086", + "ident": "MI77", + "type": "closed", + "name": "Shafter Airport", + "latitude_deg": "42.299999", + "longitude_deg": "-85.416702", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Galesburg", + "scheduled_service": "no", + "gps_code": "MI77", + "local_code": "MI77" + }, + { + "id": "22087", + "ident": "MI78", + "type": "small_airport", + "name": "Weller Airport", + "latitude_deg": "42.91669845581055", + "longitude_deg": "-85.78340148925781", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Grandville", + "scheduled_service": "no", + "gps_code": "MI78", + "local_code": "MI78" + }, + { + "id": "22088", + "ident": "MI79", + "type": "heliport", + "name": "Executive Heliport", + "latitude_deg": "42.34809875488281", + "longitude_deg": "-83.45390319824219", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Plymouth/Canton", + "scheduled_service": "no", + "gps_code": "MI79", + "local_code": "MI79" + }, + { + "id": "22089", + "ident": "MI80", + "type": "small_airport", + "name": "Wabasis Lake Airport", + "latitude_deg": "43.12839889526367", + "longitude_deg": "-85.39920043945312", + "elevation_ft": "892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "MI80", + "local_code": "MI80" + }, + { + "id": "22090", + "ident": "MI81", + "type": "heliport", + "name": "Express Heliport", + "latitude_deg": "42.51390075683594", + "longitude_deg": "-83.35780334472656", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Farmington Hills", + "scheduled_service": "no", + "gps_code": "MI81", + "local_code": "MI81" + }, + { + "id": "22091", + "ident": "MI82", + "type": "small_airport", + "name": "Harry's Field", + "latitude_deg": "42.876399993896484", + "longitude_deg": "-85.95559692382812", + "elevation_ft": "662", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Hudsonville", + "scheduled_service": "no", + "gps_code": "MI82", + "local_code": "MI82" + }, + { + "id": "335859", + "ident": "MI83", + "type": "small_airport", + "name": "Maple Grove Airpark", + "latitude_deg": "43.137722", + "longitude_deg": "-84.045589", + "elevation_ft": "698", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Chesaning", + "scheduled_service": "no", + "gps_code": "MI83", + "local_code": "MI83" + }, + { + "id": "22092", + "ident": "MI84", + "type": "small_airport", + "name": "Kerby Field", + "latitude_deg": "42.19839859008789", + "longitude_deg": "-85.80670166015625", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Mattawan", + "scheduled_service": "no", + "gps_code": "MI84", + "local_code": "MI84" + }, + { + "id": "22093", + "ident": "MI85", + "type": "heliport", + "name": "Community Health Center of Branch County Heliport", + "latitude_deg": "41.9375", + "longitude_deg": "-84.98799896240234", + "elevation_ft": "959", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Coldwater", + "scheduled_service": "no", + "gps_code": "MI85", + "local_code": "MI85" + }, + { + "id": "22094", + "ident": "MI86", + "type": "small_airport", + "name": "Midget Airport", + "latitude_deg": "43.342253", + "longitude_deg": "-86.18784", + "elevation_ft": "669", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "North Muskegon", + "scheduled_service": "no", + "gps_code": "MI86", + "local_code": "MI86" + }, + { + "id": "324449", + "ident": "MI87", + "type": "heliport", + "name": "Lakeland Hospital Watervliet Heliport", + "latitude_deg": "42.184834", + "longitude_deg": "-86.250543", + "elevation_ft": "667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Watervliet", + "scheduled_service": "no", + "gps_code": "MI87", + "local_code": "MI87" + }, + { + "id": "22095", + "ident": "MI88", + "type": "small_airport", + "name": "Bakers Field", + "latitude_deg": "42.7322998046875", + "longitude_deg": "-85.9052963256836", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Burnips", + "scheduled_service": "no", + "gps_code": "MI88", + "local_code": "MI88" + }, + { + "id": "22096", + "ident": "MI89", + "type": "closed", + "name": "Perry Airport", + "latitude_deg": "42.148875", + "longitude_deg": "-85.654665", + "elevation_ft": "894", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Schoolcraft", + "scheduled_service": "no", + "keywords": "MI89" + }, + { + "id": "22097", + "ident": "MI90", + "type": "heliport", + "name": "Baldwin Lake Heliport", + "latitude_deg": "41.79029846191406", + "longitude_deg": "-85.83889770507812", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Union", + "scheduled_service": "no", + "gps_code": "MI90", + "local_code": "MI90" + }, + { + "id": "22098", + "ident": "MI91", + "type": "closed", + "name": "T & M Companies Heliport", + "latitude_deg": "42.527", + "longitude_deg": "-83.5755", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Wixom", + "scheduled_service": "no", + "keywords": "MI91" + }, + { + "id": "22099", + "ident": "MI92", + "type": "small_airport", + "name": "Lilienthal Airport", + "latitude_deg": "45.932701110839844", + "longitude_deg": "-88.09819793701172", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Iron Mountain", + "scheduled_service": "no", + "gps_code": "MI92", + "local_code": "MI92" + }, + { + "id": "22100", + "ident": "MI93", + "type": "closed", + "name": "Circle T Ranch Airport", + "latitude_deg": "44.687801", + "longitude_deg": "-83.743896", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Curran", + "scheduled_service": "no", + "keywords": "MI93" + }, + { + "id": "22101", + "ident": "MI94", + "type": "closed", + "name": "Fontecchio Airport", + "latitude_deg": "45.784697", + "longitude_deg": "-88.0681989", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "E Kingsford", + "scheduled_service": "no", + "keywords": "MI94" + }, + { + "id": "22102", + "ident": "MI95", + "type": "small_airport", + "name": "Taylors Flight Park Airport", + "latitude_deg": "41.84669876098633", + "longitude_deg": "-85.8949966430664", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Cassopolis", + "scheduled_service": "no", + "gps_code": "MI95", + "local_code": "MI95" + }, + { + "id": "322344", + "ident": "MI96", + "type": "heliport", + "name": "Detroit Border Patrol Heliport", + "latitude_deg": "42.367222", + "longitude_deg": "-82.9675", + "elevation_ft": "586", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Detroit", + "scheduled_service": "no", + "gps_code": "MI96", + "local_code": "MI96" + }, + { + "id": "22104", + "ident": "MI97", + "type": "heliport", + "name": "Spectrum Health Butterworth Heliport", + "latitude_deg": "42.969132", + "longitude_deg": "-85.665127", + "elevation_ft": "903", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Grand Rapids", + "scheduled_service": "no", + "gps_code": "MI97", + "local_code": "MI97", + "keywords": "Butterworth Hospital" + }, + { + "id": "22105", + "ident": "MI98", + "type": "closed", + "name": "Dowd Field", + "latitude_deg": "46.201993", + "longitude_deg": "-84.742291", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Fibre", + "scheduled_service": "no", + "keywords": "MI98" + }, + { + "id": "22106", + "ident": "MI99", + "type": "small_airport", + "name": "Robertson Field", + "latitude_deg": "42.79890060424805", + "longitude_deg": "-82.65879821777344", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "MI99", + "local_code": "MI99" + }, + { + "id": "310016", + "ident": "MIZ", + "type": "small_airport", + "name": "Mainoru Airstrip", + "latitude_deg": "-14.0533", + "longitude_deg": "134.0942", + "elevation_ft": "365", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Mainoru", + "scheduled_service": "no", + "iata_code": "MIZ" + }, + { + "id": "300789", + "ident": "MJG", + "type": "closed", + "name": "RAF Castle Combe", + "latitude_deg": "51.489722", + "longitude_deg": "-2.2125", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Wiltshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Castle_Combe" + }, + { + "id": "314040", + "ident": "MJJ", + "type": "small_airport", + "name": "Moki Airport", + "latitude_deg": "-5.7181", + "longitude_deg": "145.2404", + "elevation_ft": "3030", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Moki", + "scheduled_service": "no", + "iata_code": "MJJ", + "local_code": "MOKI" + }, + { + "id": "314043", + "ident": "MJS", + "type": "small_airport", + "name": "Maganja da Costa Airport", + "latitude_deg": "-17.3087", + "longitude_deg": "37.5", + "elevation_ft": "215", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-Q", + "municipality": "Maganja", + "scheduled_service": "no", + "iata_code": "MJS", + "keywords": "Olinga" + }, + { + "id": "316169", + "ident": "MK-0001", + "type": "small_airport", + "name": "Gradsko Airfield", + "latitude_deg": "41.552778", + "longitude_deg": "21.948889", + "elevation_ft": "623", + "continent": "EU", + "iso_country": "MK", + "iso_region": "MK-001", + "municipality": "Gradsko", + "scheduled_service": "no" + }, + { + "id": "331642", + "ident": "MK-0002", + "type": "small_airport", + "name": "Suchevo Recreational Airfield", + "latitude_deg": "41.759745", + "longitude_deg": "22.147781", + "continent": "EU", + "iso_country": "MK", + "iso_region": "MK-U-A", + "municipality": "Štip", + "scheduled_service": "no", + "keywords": "Сушево" + }, + { + "id": "348162", + "ident": "MK-0003", + "type": "small_airport", + "name": "Radnja Airstrip", + "latitude_deg": "41.26633", + "longitude_deg": "22.18748", + "continent": "EU", + "iso_country": "MK", + "iso_region": "MK-001", + "scheduled_service": "no" + }, + { + "id": "4679", + "ident": "MKBS", + "type": "medium_airport", + "name": "Ian Fleming International Airport", + "latitude_deg": "18.404079", + "longitude_deg": "-76.969754", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-05", + "municipality": "Boscobel", + "scheduled_service": "yes", + "gps_code": "MKBS", + "iata_code": "OCJ", + "home_link": "http://www.aaj.com.jm/ourairports/index.php#boscobel", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ian_Fleming_International_Airport", + "keywords": "Boscobel Aerodrome" + }, + { + "id": "4680", + "ident": "MKJP", + "type": "large_airport", + "name": "Norman Manley International Airport", + "latitude_deg": "17.935699462890625", + "longitude_deg": "-76.7874984741211", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-01", + "municipality": "Kingston", + "scheduled_service": "yes", + "gps_code": "MKJP", + "iata_code": "KIN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Norman_Manley_International_Airport" + }, + { + "id": "4681", + "ident": "MKJS", + "type": "medium_airport", + "name": "Sangster International Airport", + "latitude_deg": "18.503700256347656", + "longitude_deg": "-77.91339874267578", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-08", + "municipality": "Montego Bay", + "scheduled_service": "yes", + "gps_code": "MKJS", + "iata_code": "MBJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sangster_International_Airport" + }, + { + "id": "4682", + "ident": "MKKJ", + "type": "medium_airport", + "name": "Ken Jones Airport", + "latitude_deg": "18.1987991333", + "longitude_deg": "-76.53450012210001", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-04", + "municipality": "Ken Jones", + "scheduled_service": "no", + "gps_code": "MKKJ", + "iata_code": "POT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ken_Jones_Aerodrome" + }, + { + "id": "302540", + "ident": "MKN", + "type": "small_airport", + "name": "Malekolon Airport", + "latitude_deg": "-4.02343055556", + "longitude_deg": "153.657277778", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NIK", + "municipality": "Babase Island", + "scheduled_service": "no", + "gps_code": "AYMV", + "iata_code": "MKN", + "local_code": "MKO", + "keywords": "Feni Islands" + }, + { + "id": "32020", + "ident": "MKNG", + "type": "small_airport", + "name": "Negril Airport", + "latitude_deg": "18.341712", + "longitude_deg": "-78.334164", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-09", + "municipality": "Negril", + "scheduled_service": "no", + "gps_code": "MKNG", + "iata_code": "NEG" + }, + { + "id": "43340", + "ident": "MKPE", + "type": "closed", + "name": "Pearls Airport", + "latitude_deg": "12.14368", + "longitude_deg": "-61.61692", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "GD", + "iso_region": "GD-AN", + "municipality": "Pearls", + "scheduled_service": "no", + "gps_code": "MKPE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pearls_Airport" + }, + { + "id": "4683", + "ident": "MKTP", + "type": "medium_airport", + "name": "Tinson Pen Airport", + "latitude_deg": "17.98859977722168", + "longitude_deg": "-76.82379913330078", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-02", + "municipality": "Tinson Pen", + "scheduled_service": "yes", + "gps_code": "MKTP", + "iata_code": "KTP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tinson_Pen_Airport" + }, + { + "id": "4685", + "ident": "ML-0001", + "type": "small_airport", + "name": "Manantali Bengassi Airport", + "latitude_deg": "13.255599975600001", + "longitude_deg": "-10.5043001175", + "elevation_ft": "538", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-1", + "municipality": "Manantali", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bengassi_Airport" + }, + { + "id": "344672", + "ident": "ML-0002", + "type": "small_airport", + "name": "Tassiga Airport", + "latitude_deg": "15.50438", + "longitude_deg": "0.71678", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-7", + "municipality": "Tassiga", + "scheduled_service": "no" + }, + { + "id": "351632", + "ident": "ML-0003", + "type": "closed", + "name": "Ségou Airport", + "latitude_deg": "13.38618", + "longitude_deg": "-6.33727", + "elevation_ft": "965", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-4", + "municipality": "Ségou", + "scheduled_service": "no", + "gps_code": "GASG", + "keywords": "GASG, SZG" + }, + { + "id": "351858", + "ident": "ML-0004", + "type": "heliport", + "name": "Léré Heliport", + "latitude_deg": "15.73166", + "longitude_deg": "-4.90416", + "elevation_ft": "883", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-6", + "municipality": "Léré", + "scheduled_service": "no" + }, + { + "id": "353595", + "ident": "ML-0005", + "type": "heliport", + "name": "Ansongo Heliport", + "latitude_deg": "15.705131", + "longitude_deg": "0.489117", + "elevation_ft": "833", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-7", + "municipality": "Ansongo", + "scheduled_service": "no" + }, + { + "id": "430164", + "ident": "ML-0006", + "type": "heliport", + "name": "Aguelhok Heliport", + "latitude_deg": "19.46321", + "longitude_deg": "0.86547", + "continent": "AF", + "iso_country": "ML", + "iso_region": "ML-8", + "municipality": "Aguelhok", + "scheduled_service": "no" + }, + { + "id": "31910", + "ident": "MLIP", + "type": "small_airport", + "name": "Mili Island Airport", + "latitude_deg": "6.08333", + "longitude_deg": "171.733002", + "elevation_ft": "4", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-MIL", + "municipality": "Mili Island", + "scheduled_service": "yes", + "gps_code": "MLIP", + "iata_code": "MIJ", + "local_code": "1Q9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mili_Airport" + }, + { + "id": "41921", + "ident": "MLLJ", + "type": "small_airport", + "name": "La Javilla Airport", + "latitude_deg": "9.81112003326416", + "longitude_deg": "-85.29550170898438", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Guanacaste", + "scheduled_service": "no", + "gps_code": "MLLJ" + }, + { + "id": "302535", + "ident": "MLQ", + "type": "small_airport", + "name": "Malalaua Airport", + "latitude_deg": "-8.07138888889", + "longitude_deg": "146.155472222", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Malalaua", + "scheduled_service": "no", + "gps_code": "AYMP", + "iata_code": "MLQ", + "local_code": "MLU" + }, + { + "id": "42456", + "ident": "MM-0001", + "type": "closed", + "name": "Hanthawaddy International Airport (under construction)", + "latitude_deg": "17.3005", + "longitude_deg": "96.4276", + "elevation_ft": "138", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-02", + "municipality": "Bago", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hanthawaddy_International_Airport", + "keywords": "Bago" + }, + { + "id": "42457", + "ident": "MM-0002", + "type": "small_airport", + "name": "Hinthada Airport", + "latitude_deg": "17.633329391500002", + "longitude_deg": "95.4666976929", + "elevation_ft": "32", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-07", + "municipality": "Hinthada", + "scheduled_service": "no", + "gps_code": "VYHT", + "iata_code": "HEB", + "keywords": "Henzada Airport" + }, + { + "id": "42458", + "ident": "MM-0003", + "type": "small_airport", + "name": "Langkho Airport", + "latitude_deg": "20.350000381469727", + "longitude_deg": "98.01667022705078", + "elevation_ft": "1014", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-17", + "municipality": "Langhko", + "scheduled_service": "no" + }, + { + "id": "42459", + "ident": "MM-0004", + "type": "small_airport", + "name": "Myoungmya Airport", + "latitude_deg": "16.570999145507812", + "longitude_deg": "94.93229675292969", + "elevation_ft": "85", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-07", + "municipality": "Myoungmya", + "scheduled_service": "no" + }, + { + "id": "42460", + "ident": "MM-0005", + "type": "small_airport", + "name": "Shinbweyang Airport", + "latitude_deg": "26.68600082397461", + "longitude_deg": "96.21040344238281", + "elevation_ft": "1680", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-11", + "municipality": "Shinbweyang", + "scheduled_service": "no" + }, + { + "id": "347131", + "ident": "MM-0006", + "type": "heliport", + "name": "Preparis Heliport", + "latitude_deg": "14.87002", + "longitude_deg": "93.62233", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-06", + "municipality": "Cocokyun", + "scheduled_service": "no" + }, + { + "id": "347132", + "ident": "MM-0007", + "type": "heliport", + "name": "Preparis East Heliport", + "latitude_deg": "14.86987", + "longitude_deg": "93.62326", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-06", + "municipality": "Cocokyun", + "scheduled_service": "no" + }, + { + "id": "347133", + "ident": "MM-0008", + "type": "heliport", + "name": "Little Coco Island North Heliport", + "latitude_deg": "14.00171", + "longitude_deg": "93.22413", + "elevation_ft": "17", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-06", + "municipality": "Cocokyun", + "scheduled_service": "no" + }, + { + "id": "347134", + "ident": "MM-0009", + "type": "heliport", + "name": "Little Coco Island Heliport", + "latitude_deg": "13.98115", + "longitude_deg": "93.22502", + "elevation_ft": "204", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-06", + "municipality": "Cocokyun", + "scheduled_service": "no" + }, + { + "id": "347135", + "ident": "MM-0010", + "type": "heliport", + "name": "Table Island Heliport", + "latitude_deg": "14.18611", + "longitude_deg": "93.3636", + "elevation_ft": "52", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-06", + "municipality": "Cocokyun", + "scheduled_service": "no" + }, + { + "id": "355972", + "ident": "MM-0011", + "type": "heliport", + "name": "Zin Bar Heliport", + "latitude_deg": "14.679519", + "longitude_deg": "98.35862", + "elevation_ft": "2474", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-05", + "municipality": "Yebyu", + "scheduled_service": "no" + }, + { + "id": "4864", + "ident": "MM10", + "type": "small_airport", + "name": "Isla Cedros Airport", + "latitude_deg": "28.0376", + "longitude_deg": "-115.190001", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "gps_code": "MMCD", + "local_code": "ICD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Isla_de_Cedros_Airport", + "keywords": "MM10" + }, + { + "id": "4865", + "ident": "MM11", + "type": "small_airport", + "name": "El Durangueño Airport", + "latitude_deg": "24.418301", + "longitude_deg": "-104.886001", + "elevation_ft": "8202", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Canatlan", + "scheduled_service": "no", + "local_code": "DAG", + "keywords": "MM11, Rancho El Durangueno Airport" + }, + { + "id": "4866", + "ident": "MM12", + "type": "small_airport", + "name": "Bacubirito Airport", + "latitude_deg": "25.815701", + "longitude_deg": "-107.907997", + "elevation_ft": "591", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Sinaloa de Leyva", + "scheduled_service": "no", + "gps_code": "MM12", + "local_code": "BCU" + }, + { + "id": "4867", + "ident": "MM13", + "type": "small_airport", + "name": "Camargo Airport", + "latitude_deg": "27.5989", + "longitude_deg": "-105.103996", + "elevation_ft": "4265", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Santa Rosalia de Camargo", + "scheduled_service": "no", + "local_code": "CCA", + "keywords": "MM13, Ciudad Camargo Southeast Airport" + }, + { + "id": "4868", + "ident": "MM14", + "type": "closed", + "name": "Rio Verde Airport", + "latitude_deg": "21.9631", + "longitude_deg": "-100.0077", + "elevation_ft": "3281", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "Rio Verde", + "scheduled_service": "no", + "gps_code": "MM14" + }, + { + "id": "4870", + "ident": "MM16", + "type": "small_airport", + "name": "General Jesús Agustín Castro Airport", + "latitude_deg": "25.526501", + "longitude_deg": "-103.517997", + "elevation_ft": "3720", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Ciudad Lerdo", + "scheduled_service": "no", + "gps_code": "MM16", + "local_code": "LDD" + }, + { + "id": "4871", + "ident": "MM17", + "type": "small_airport", + "name": "La Trinidad Airport", + "latitude_deg": "23.96626", + "longitude_deg": "-98.833299", + "elevation_ft": "577", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Padilla", + "scheduled_service": "no", + "local_code": "LTP", + "keywords": "MM17, La Retama Southwest" + }, + { + "id": "4872", + "ident": "MM20", + "type": "small_airport", + "name": "Ingeniero Juan Antonio Perdomo Diaz Airport", + "latitude_deg": "18.874201", + "longitude_deg": "-96.958199", + "elevation_ft": "2960", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Cordoba", + "scheduled_service": "no", + "gps_code": "MM20", + "local_code": "CRV", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aeropuerto_Nacional_Ingeniero_Juan_Antonio_Perdomo_D%C3%ADaz", + "keywords": "Cordaba Airport, MX29" + }, + { + "id": "4873", + "ident": "MM21", + "type": "closed", + "name": "La Encarnacion Airport", + "latitude_deg": "25.736099", + "longitude_deg": "-100.224998", + "elevation_ft": "1560", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Monterrey", + "scheduled_service": "no", + "gps_code": "MM21", + "local_code": "MM21" + }, + { + "id": "4874", + "ident": "MM22", + "type": "small_airport", + "name": "La Pesca Airport", + "latitude_deg": "23.8022", + "longitude_deg": "-97.773697", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "gps_code": "MM22", + "local_code": "LPE", + "keywords": "La Pesca Base Aeronaval" + }, + { + "id": "4875", + "ident": "MM23", + "type": "small_airport", + "name": "Rancho Santa Ynés Airport", + "latitude_deg": "29.726614", + "longitude_deg": "-114.699997", + "elevation_ft": "1865", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "SIN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rancho_Santa_Inés_Airstrip", + "keywords": "MM23" + }, + { + "id": "4876", + "ident": "MM25", + "type": "small_airport", + "name": "Capitán Piloto Aviador José Covarrubias Pérez Airport", + "latitude_deg": "19.7085", + "longitude_deg": "-103.489998", + "elevation_ft": "4987", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Ciudad Guzman", + "scheduled_service": "no", + "local_code": "CGZ", + "keywords": "MM25, MX24" + }, + { + "id": "4878", + "ident": "MM27", + "type": "closed", + "name": "Cementos Mexicanos Airport", + "latitude_deg": "21.983999", + "longitude_deg": "-98.961899", + "elevation_ft": "302", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "Ciudad Valles", + "scheduled_service": "no", + "gps_code": "MM27", + "local_code": "CMX", + "keywords": "MX26" + }, + { + "id": "4879", + "ident": "MM28", + "type": "small_airport", + "name": "Tizayuca Airport", + "latitude_deg": "19.874000549316", + "longitude_deg": "-98.943603515625", + "elevation_ft": "7645", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-HID", + "municipality": "Tizayuca", + "scheduled_service": "no", + "gps_code": "MM28", + "local_code": "TIZ", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aer%C3%B3dromo_de_Tizayuca" + }, + { + "id": "4880", + "ident": "MM29", + "type": "small_airport", + "name": "Ta Lo De Soto Airport", + "latitude_deg": "16.463499", + "longitude_deg": "-98.393006", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Cuajinicuilapa", + "scheduled_service": "no", + "gps_code": "MM29", + "local_code": "CJP", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aeropuerto_Nacional_de_Cuajinicuilapa" + }, + { + "id": "4881", + "ident": "MM30", + "type": "small_airport", + "name": "El Tapacal Airport", + "latitude_deg": "24.658501", + "longitude_deg": "-107.552002", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Licenciado Benito Juárez", + "scheduled_service": "no", + "local_code": "TPK", + "keywords": "MM30, Campo Gobierno" + }, + { + "id": "4882", + "ident": "MM31", + "type": "small_airport", + "name": "Fausto Vega Santander Airport", + "latitude_deg": "20.9468", + "longitude_deg": "-97.375099", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Túxpam de Rodríguez Cano", + "scheduled_service": "no", + "gps_code": "MM31", + "local_code": "MM31" + }, + { + "id": "4883", + "ident": "MM32", + "type": "small_airport", + "name": "Puerto Libertad North Airport", + "latitude_deg": "29.9296", + "longitude_deg": "-112.655998", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Pitiquito", + "scheduled_service": "no", + "gps_code": "MM32", + "local_code": "MM32" + }, + { + "id": "313720", + "ident": "MM35", + "type": "small_airport", + "name": "Santa Bárbara Regional Airport", + "latitude_deg": "18.325237", + "longitude_deg": "-100.631024", + "elevation_ft": "876", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Pungarabato", + "scheduled_service": "no", + "gps_code": "MM35", + "local_code": "CAT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Barbara_Regional_Airport", + "keywords": "MM1C, MX23, Aerodromo Cd Altamirano" + }, + { + "id": "4884", + "ident": "MM36", + "type": "small_airport", + "name": "Rancho San Salvador Northeast Airport", + "latitude_deg": "26.678499221801758", + "longitude_deg": "-100.1709976196289", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "scheduled_service": "no", + "gps_code": "MM36", + "local_code": "MM36" + }, + { + "id": "4885", + "ident": "MM37", + "type": "small_airport", + "name": "San Lorenzo Airport", + "latitude_deg": "25.506038", + "longitude_deg": "-102.202003", + "elevation_ft": "4498", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Parras de La Fuente", + "scheduled_service": "no", + "local_code": "PAS", + "keywords": "MM37, Casa Madero" + }, + { + "id": "4886", + "ident": "MM38", + "type": "closed", + "name": "Falcon Dam Airport", + "latitude_deg": "26.521713", + "longitude_deg": "-99.148382", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Ciudad Mier", + "scheduled_service": "no", + "gps_code": "MM38", + "local_code": "MM38" + }, + { + "id": "4887", + "ident": "MM39", + "type": "small_airport", + "name": "Guamúchil Regional Airport", + "latitude_deg": "25.4387", + "longitude_deg": "-108.092003", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Salvador Alvarado", + "scheduled_service": "no", + "local_code": "GCH", + "keywords": "MM39" + }, + { + "id": "4888", + "ident": "MM41", + "type": "small_airport", + "name": "Leon Gonzales Pie de la Cuesta Airport", + "latitude_deg": "16.910801", + "longitude_deg": "-99.988571", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Acapulco", + "scheduled_service": "no", + "gps_code": "MM41", + "local_code": "TRC", + "wikipedia_link": "https://es.wikipedia.org/wiki/Base_A%C3%A9rea_Militar_n.%C2%BA_7", + "keywords": "MM1I, La Base Aérea n.º 7" + }, + { + "id": "4889", + "ident": "MM42", + "type": "small_airport", + "name": "Muzquiz New Airport", + "latitude_deg": "27.8563", + "longitude_deg": "-101.526001", + "elevation_ft": "1722", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Muzquiz", + "scheduled_service": "no", + "gps_code": "MM42", + "local_code": "MUZ" + }, + { + "id": "4890", + "ident": "MM44", + "type": "small_airport", + "name": "Agualeguas Old Airport", + "latitude_deg": "26.304399490356445", + "longitude_deg": "-99.55020141601562", + "elevation_ft": "676", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "scheduled_service": "no", + "gps_code": "MM44", + "local_code": "MM44" + }, + { + "id": "4892", + "ident": "MM47", + "type": "small_airport", + "name": "Jaujilla - Zacapu Municipal Airport", + "latitude_deg": "19.851499557495", + "longitude_deg": "-101.75199890137", + "elevation_ft": "6532", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Zacapu", + "scheduled_service": "no", + "gps_code": "MM47", + "local_code": "ZPU" + }, + { + "id": "4893", + "ident": "MM48", + "type": "small_airport", + "name": "Ciudad Pemex Airport", + "latitude_deg": "17.88010025024414", + "longitude_deg": "-92.47570037841797", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "scheduled_service": "no", + "gps_code": "MM48", + "local_code": "MM48" + }, + { + "id": "4895", + "ident": "MM50", + "type": "small_airport", + "name": "Cosalá Airport", + "latitude_deg": "24.420098", + "longitude_deg": "-106.698923", + "elevation_ft": "1289", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Cosalá", + "scheduled_service": "no", + "gps_code": "MM50", + "local_code": "CZP", + "keywords": "MM50" + }, + { + "id": "4896", + "ident": "MM51", + "type": "small_airport", + "name": "Rancho Guadalupe South Airport", + "latitude_deg": "26.63559913635254", + "longitude_deg": "-100.88999938964844", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "scheduled_service": "no", + "gps_code": "MM51", + "local_code": "MM51" + }, + { + "id": "4897", + "ident": "MM52", + "type": "small_airport", + "name": "Camaguey-Campo Cuatro Milpas Airport", + "latitude_deg": "25.652200698853", + "longitude_deg": "-108.53800201416", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "yes", + "local_code": "CMG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Campo_Cuatro_Milpas_Airport", + "keywords": "MM52" + }, + { + "id": "4898", + "ident": "MM53", + "type": "small_airport", + "name": "Nuevo Dolores Airport", + "latitude_deg": "24.061500549316406", + "longitude_deg": "-98.41560363769531", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "scheduled_service": "no", + "gps_code": "MM53", + "local_code": "MM53" + }, + { + "id": "4899", + "ident": "MM54", + "type": "small_airport", + "name": "Rancho Marina Vieja Airport", + "latitude_deg": "23.7381", + "longitude_deg": "-98.061202", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "gps_code": "MM54", + "local_code": "RMV" + }, + { + "id": "4900", + "ident": "MM56", + "type": "small_airport", + "name": "Xicotencatl Airport", + "latitude_deg": "22.953899", + "longitude_deg": "-98.9596", + "elevation_ft": "377", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Xicotencatl", + "scheduled_service": "no", + "gps_code": "MM56", + "local_code": "XIC" + }, + { + "id": "4904", + "ident": "MM61", + "type": "small_airport", + "name": "Ixmiquilpan Airport", + "latitude_deg": "20.486000061035156", + "longitude_deg": "-99.25879669189453", + "elevation_ft": "5577", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-HID", + "scheduled_service": "no", + "gps_code": "MM61", + "local_code": "MM61" + }, + { + "id": "319587", + "ident": "MM62", + "type": "small_airport", + "name": "Zacacoyuca Airport", + "latitude_deg": "18.269215", + "longitude_deg": "-99.510887", + "elevation_ft": "2890", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Iguala de la Independencia", + "scheduled_service": "no", + "gps_code": "MM62", + "local_code": "ZKA", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aer%C3%B3dromo_de_Zacacoyuca", + "keywords": "MM2B, MX50" + }, + { + "id": "4905", + "ident": "MM63", + "type": "small_airport", + "name": "Autlán Airport", + "latitude_deg": "19.7453", + "longitude_deg": "-104.336998", + "elevation_ft": "2900", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Autlán de Navarro", + "scheduled_service": "no", + "gps_code": "MM63", + "local_code": "AUN", + "keywords": "MM63, MX08" + }, + { + "id": "4906", + "ident": "MM64", + "type": "small_airport", + "name": "Constitucionalista Airport", + "latitude_deg": "26.9904", + "longitude_deg": "-102.032997", + "elevation_ft": "2450", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Cuatro Cienegas de Carranza", + "scheduled_service": "no", + "gps_code": "MM64", + "local_code": "CUC", + "keywords": "Cuatro Cienegas New Airport" + }, + { + "id": "4907", + "ident": "MM65", + "type": "small_airport", + "name": "La Calera Airport", + "latitude_deg": "31.2523", + "longitude_deg": "-109.608002", + "elevation_ft": "4213", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Agua Prieta", + "scheduled_service": "no", + "local_code": "LKE", + "keywords": "MM65, Agua Prieta South" + }, + { + "id": "4908", + "ident": "MM66", + "type": "small_airport", + "name": "Coahuayana Airport", + "latitude_deg": "18.684601", + "longitude_deg": "-103.676003", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "scheduled_service": "no", + "local_code": "CHY", + "keywords": "MM66" + }, + { + "id": "4909", + "ident": "MM67", + "type": "small_airport", + "name": "Ingeniero Manuel Moreno Torres Airport", + "latitude_deg": "23.6766", + "longitude_deg": "-100.623001", + "elevation_ft": "5118", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "Matehuala", + "scheduled_service": "no", + "gps_code": "MM67", + "local_code": "MTH", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aeropuerto_Nacional_Ingeniero_Manuel_Moreno_Torres", + "keywords": "MX73" + }, + { + "id": "4910", + "ident": "MM68", + "type": "small_airport", + "name": "Mina Hercules Airport", + "latitude_deg": "28.036600112915", + "longitude_deg": "-103.77100372314", + "elevation_ft": "4635", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Sierra Mojada", + "scheduled_service": "no", + "gps_code": "MM68", + "local_code": "HRC" + }, + { + "id": "43106", + "ident": "MM69", + "type": "small_airport", + "name": "Tasícuri-Magdalena de Kino / Rodolfo Soto Bartell Airport", + "latitude_deg": "30.674254", + "longitude_deg": "-110.932171", + "elevation_ft": "2542", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Magdalena de Kino", + "scheduled_service": "no", + "gps_code": "MM69", + "local_code": "TSI", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aer%C3%B3dromo_Rodolfo_Soto_Bartell" + }, + { + "id": "4913", + "ident": "MM72", + "type": "small_airport", + "name": "Cupul Airport", + "latitude_deg": "21.155716", + "longitude_deg": "-88.172918", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-YUC", + "municipality": "Tizimin", + "scheduled_service": "no", + "gps_code": "MM72", + "iata_code": "TZM", + "local_code": "MM72", + "keywords": "MXA3" + }, + { + "id": "4914", + "ident": "MM73", + "type": "small_airport", + "name": "Huetamo Airport", + "latitude_deg": "18.52739906311", + "longitude_deg": "-100.8509979248", + "elevation_ft": "984", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Huetamo", + "scheduled_service": "no", + "gps_code": "MM73", + "local_code": "HTM", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aer%C3%B3dromo_de_Huetamo", + "keywords": "MM2M" + }, + { + "id": "319375", + "ident": "MM74", + "type": "small_airport", + "name": "Old Chichen Itzá Airport", + "latitude_deg": "20.68973", + "longitude_deg": "-88.566817", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-YUC", + "municipality": "Tinum", + "scheduled_service": "no", + "gps_code": "MM74", + "keywords": "Pisté" + }, + { + "id": "4915", + "ident": "MM75", + "type": "small_airport", + "name": "Agua Prieta Southwest Airport", + "latitude_deg": "31.242901", + "longitude_deg": "-109.625", + "elevation_ft": "4000", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Agua Prieta", + "scheduled_service": "no", + "gps_code": "MM75", + "local_code": "MM75" + }, + { + "id": "4917", + "ident": "MM77", + "type": "small_airport", + "name": "Las Delicias Airport", + "latitude_deg": "28.21310043334961", + "longitude_deg": "-105.447998046875", + "elevation_ft": "3888", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "scheduled_service": "no", + "gps_code": "MM77", + "local_code": "MM77" + }, + { + "id": "4918", + "ident": "MM79", + "type": "small_airport", + "name": "El Fuerte Airport", + "latitude_deg": "26.398199", + "longitude_deg": "-108.612", + "elevation_ft": "246", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "El Fuerte", + "scheduled_service": "no", + "gps_code": "MM79", + "local_code": "FTE" + }, + { + "id": "4919", + "ident": "MM80", + "type": "small_airport", + "name": "Rancho La Milpita Airport", + "latitude_deg": "30.4809", + "longitude_deg": "-109.643997", + "elevation_ft": "4707", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Nacozari de García", + "scheduled_service": "no", + "gps_code": "MM80", + "local_code": "LCI", + "keywords": "Aeródromo La Caridad" + }, + { + "id": "4920", + "ident": "MM81", + "type": "small_airport", + "name": "Isla Socorro Airport", + "latitude_deg": "18.774200439453125", + "longitude_deg": "-110.93000030517578", + "elevation_ft": "1085", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "scheduled_service": "no", + "gps_code": "MM81", + "local_code": "MM81" + }, + { + "id": "4921", + "ident": "MM82", + "type": "small_airport", + "name": "Laguna Del Rey Airport", + "latitude_deg": "27.0238", + "longitude_deg": "-103.375", + "elevation_ft": "3450", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "scheduled_service": "no", + "local_code": "LRY", + "keywords": "MM82" + }, + { + "id": "4922", + "ident": "MM84", + "type": "small_airport", + "name": "Parral Airport", + "latitude_deg": "26.922100067139", + "longitude_deg": "-105.78199768066", + "elevation_ft": "6020", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Hidalgo Del Parral", + "scheduled_service": "no", + "gps_code": "MM84", + "local_code": "FCO", + "keywords": "Campo De Aviacion Parral" + }, + { + "id": "4688", + "ident": "MMAA", + "type": "large_airport", + "name": "General Juan N Alvarez International Airport", + "latitude_deg": "16.757099", + "longitude_deg": "-99.753998", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Acapulco", + "scheduled_service": "yes", + "gps_code": "MMAA", + "iata_code": "ACA", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Juan_N._%C3%81lvarez_International_Airport" + }, + { + "id": "4689", + "ident": "MMAL", + "type": "small_airport", + "name": "Agualeguas National Airport", + "latitude_deg": "26.334", + "longitude_deg": "-99.542397", + "elevation_ft": "676", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Agualeguas", + "scheduled_service": "no", + "gps_code": "MMAL", + "local_code": "AGL", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aeropuerto_Nacional_de_Agualeguas" + }, + { + "id": "4690", + "ident": "MMAN", + "type": "medium_airport", + "name": "Del Norte International Airport", + "latitude_deg": "25.865601", + "longitude_deg": "-100.237", + "elevation_ft": "1476", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Monterrey", + "scheduled_service": "no", + "gps_code": "MMAN", + "iata_code": "NTR", + "local_code": "ADN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Del_Norte_International_Airport", + "keywords": "BAM 14 Monterrey/Apodaca" + }, + { + "id": "4691", + "ident": "MMAS", + "type": "medium_airport", + "name": "Governor Jesús Terán Peredo International Airport", + "latitude_deg": "21.699589", + "longitude_deg": "-102.318372", + "elevation_ft": "6112", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-AGU", + "municipality": "Aguascalientes", + "scheduled_service": "yes", + "gps_code": "MMAS", + "iata_code": "AGU", + "home_link": "https://www.aeropuertosgap.com.mx/es/aguascalientes.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lic._Jes%C3%BAs_Ter%C3%A1n_Peredo_International_Airport", + "keywords": "Aguascalientes International, Licenciado Jesús Terán Peredo" + }, + { + "id": "4692", + "ident": "MMBT", + "type": "medium_airport", + "name": "Bahías de Huatulco International Airport", + "latitude_deg": "15.775611", + "longitude_deg": "-96.26079", + "elevation_ft": "464", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Huatulco", + "scheduled_service": "yes", + "gps_code": "MMBT", + "iata_code": "HUX", + "local_code": "HU1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bah%C3%ADas_de_Huatulco_International_Airport" + }, + { + "id": "29753", + "ident": "MMCA", + "type": "small_airport", + "name": "Cananea National Airport", + "latitude_deg": "31.06615", + "longitude_deg": "-110.097878", + "elevation_ft": "4921", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cananea", + "scheduled_service": "no", + "gps_code": "MMCA", + "iata_code": "CNA", + "local_code": "CNA" + }, + { + "id": "4693", + "ident": "MMCB", + "type": "medium_airport", + "name": "Cuernavaca - General Mariano Matamoros Airport", + "latitude_deg": "18.834801", + "longitude_deg": "-99.261299", + "elevation_ft": "4277", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MOR", + "municipality": "Temixco", + "scheduled_service": "yes", + "gps_code": "MMCB", + "iata_code": "CVJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Mariano_Matamoros_Airport" + }, + { + "id": "43060", + "ident": "MMCC", + "type": "small_airport", + "name": "Ciudad Acuña New International Airport", + "latitude_deg": "29.333662", + "longitude_deg": "-101.100555", + "elevation_ft": "1410", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no", + "gps_code": "MMCC", + "iata_code": "ACN", + "local_code": "EFN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ciudad_Acu%C3%B1a_International_Airport" + }, + { + "id": "4694", + "ident": "MMCE", + "type": "medium_airport", + "name": "Ciudad del Carmen International Airport", + "latitude_deg": "18.65369987487793", + "longitude_deg": "-91.79900360107422", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Ciudad del Carmen", + "scheduled_service": "yes", + "gps_code": "MMCE", + "iata_code": "CME", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ciudad_del_Carmen_International_Airport" + }, + { + "id": "4695", + "ident": "MMCG", + "type": "small_airport", + "name": "Nuevo Casas Grandes Municipal Airport", + "latitude_deg": "30.3974", + "longitude_deg": "-107.875", + "elevation_ft": "4850", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Nuevo Casas Grandes", + "scheduled_service": "no", + "gps_code": "MMCG", + "iata_code": "NCG", + "local_code": "NCG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nuevo_Casas_Grandes_Municipal_Airport" + }, + { + "id": "4696", + "ident": "MMCH", + "type": "small_airport", + "name": "Chilpancingo Airport", + "latitude_deg": "17.574239", + "longitude_deg": "-99.515424", + "elevation_ft": "4199", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Chilpancingo", + "scheduled_service": "no", + "gps_code": "MMCH", + "local_code": "CHG", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aeropuerto_Nacional_de_Chilpancingo" + }, + { + "id": "4697", + "ident": "MMCL", + "type": "medium_airport", + "name": "Bachigualato Federal International Airport", + "latitude_deg": "24.76504", + "longitude_deg": "-107.475228", + "elevation_ft": "108", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacán", + "scheduled_service": "yes", + "gps_code": "MMCL", + "iata_code": "CUL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bachigualato_Federal_International_Airport", + "keywords": "Federal de Bachigualato International Airport, Culiacán International Airport" + }, + { + "id": "4698", + "ident": "MMCM", + "type": "medium_airport", + "name": "Chetumal International Airport", + "latitude_deg": "18.50469970703125", + "longitude_deg": "-88.32679748535156", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Chetumal", + "scheduled_service": "yes", + "gps_code": "MMCM", + "iata_code": "CTM", + "home_link": "http://chetumal.asa.gob.mx/wb/webasa/chetumal_aeropuertos", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chetumal_International_Airport" + }, + { + "id": "4699", + "ident": "MMCN", + "type": "medium_airport", + "name": "Ciudad Obregón International Airport", + "latitude_deg": "27.39259910583496", + "longitude_deg": "-109.83300018310547", + "elevation_ft": "243", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Ciudad Obregón", + "scheduled_service": "yes", + "gps_code": "MMCN", + "iata_code": "CEN", + "home_link": "http://obregon.asa.gob.mx/wb/webasa/obregon_aeropuertos", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ciudad_Obreg%C3%B3n_International_Airport" + }, + { + "id": "29796", + "ident": "MMCO", + "type": "small_airport", + "name": "San Antonio Copalar Airport", + "latitude_deg": "16.176701", + "longitude_deg": "-92.050598", + "elevation_ft": "5161", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Comitán", + "scheduled_service": "no", + "gps_code": "MMCO", + "iata_code": "CJT" + }, + { + "id": "4700", + "ident": "MMCP", + "type": "medium_airport", + "name": "Ingeniero Alberto Acuña Ongay International Airport", + "latitude_deg": "19.816799163800003", + "longitude_deg": "-90.5002975464", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Campeche", + "scheduled_service": "yes", + "gps_code": "MMCP", + "iata_code": "CPE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ing._Alberto_Acu%C3%B1a_Ongay_International_Airport" + }, + { + "id": "4701", + "ident": "MMCS", + "type": "medium_airport", + "name": "Abraham González International Airport", + "latitude_deg": "31.63610076904297", + "longitude_deg": "-106.42900085449219", + "elevation_ft": "3904", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ciudad Juárez", + "scheduled_service": "yes", + "gps_code": "MMCS", + "iata_code": "CJS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abraham_Gonz%C3%A1lez_International_Airport" + }, + { + "id": "4702", + "ident": "MMCT", + "type": "medium_airport", + "name": "Chichen Itza International Airport", + "latitude_deg": "20.6413002014", + "longitude_deg": "-88.4461975098", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-YUC", + "municipality": "Chichen Itza", + "scheduled_service": "no", + "gps_code": "MMCT", + "iata_code": "CZA", + "home_link": "http://www.chichen-itza-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chichen_Itza_International_Airport" + }, + { + "id": "4703", + "ident": "MMCU", + "type": "medium_airport", + "name": "General Roberto Fierro Villalobos International Airport", + "latitude_deg": "28.702899932900003", + "longitude_deg": "-105.964996338", + "elevation_ft": "4462", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Chihuahua", + "scheduled_service": "yes", + "gps_code": "MMCU", + "iata_code": "CUU", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Roberto_Fierro_Villalobos_International_Airport" + }, + { + "id": "4704", + "ident": "MMCV", + "type": "medium_airport", + "name": "General Pedro Jose Mendez International Airport", + "latitude_deg": "23.7033004761", + "longitude_deg": "-98.9564971924", + "elevation_ft": "761", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Ciudad Victoria", + "scheduled_service": "yes", + "gps_code": "MMCV", + "iata_code": "CVM", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Pedro_J._M%C3%A9ndez_International_Airport" + }, + { + "id": "4705", + "ident": "MMCY", + "type": "medium_airport", + "name": "Captain Rogelio Castillo National Airport", + "latitude_deg": "20.546", + "longitude_deg": "-100.887001", + "elevation_ft": "5709", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "Celaya", + "scheduled_service": "yes", + "gps_code": "MMCY", + "iata_code": "CYW", + "local_code": "CYA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Captain_Rogelio_Castillo_National_Airport" + }, + { + "id": "4706", + "ident": "MMCZ", + "type": "medium_airport", + "name": "Cozumel International Airport", + "latitude_deg": "20.52239990234375", + "longitude_deg": "-86.92559814453125", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Cozumel", + "scheduled_service": "yes", + "gps_code": "MMCZ", + "iata_code": "CZM", + "home_link": "http://www.asur.com.mx/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cozumel_International_Airport" + }, + { + "id": "30860", + "ident": "MMDA", + "type": "medium_airport", + "name": "Ciudad Constitución National Airport", + "latitude_deg": "25.053801", + "longitude_deg": "-111.614998", + "elevation_ft": "213", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Comondú", + "scheduled_service": "yes", + "gps_code": "MMDA", + "iata_code": "CUA", + "local_code": "CCB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ciudad_Constituci%C3%B3n_Airport", + "keywords": "MM71, Cap. Jaime Emilio Real Cossio" + }, + { + "id": "29788", + "ident": "MMDM", + "type": "small_airport", + "name": "Ciudad Mante National Airport", + "latitude_deg": "22.743177", + "longitude_deg": "-99.017372", + "elevation_ft": "341", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Ciudad Mante", + "scheduled_service": "no", + "gps_code": "MMDM", + "iata_code": "MMC", + "local_code": "CDM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ciudad_Mante_National_Airport", + "keywords": "Cuauhtemoc Airport, Aeropuerto Nacional Las Huastecas" + }, + { + "id": "4707", + "ident": "MMDO", + "type": "medium_airport", + "name": "General Guadalupe Victoria International Airport", + "latitude_deg": "24.1242008209", + "longitude_deg": "-104.527999878", + "elevation_ft": "6104", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Durango", + "scheduled_service": "yes", + "gps_code": "MMDO", + "iata_code": "DGO", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Guadalupe_Victoria_International_Airport" + }, + { + "id": "4708", + "ident": "MMEP", + "type": "medium_airport", + "name": "Amado Nervo National Airport", + "latitude_deg": "21.4195", + "longitude_deg": "-104.843002", + "elevation_ft": "3020", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "Tepic", + "scheduled_service": "yes", + "gps_code": "MMEP", + "iata_code": "TPQ", + "local_code": "TNY", + "home_link": "http://tepic.asa.gob.mx/wb/webasa/tepic_aeropuertos", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amado_Nervo_National_Airport", + "keywords": "Tepic Airport" + }, + { + "id": "4709", + "ident": "MMES", + "type": "small_airport", + "name": "Ensenada International Airport / El Cipres Air Base", + "latitude_deg": "31.7953", + "longitude_deg": "-116.602997", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "yes", + "gps_code": "MMES", + "iata_code": "ESE", + "local_code": "ENS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ensenada_Airport", + "keywords": "\"El Ciprés\" Military Airbase Number 3" + }, + { + "id": "318685", + "ident": "MMGD", + "type": "small_airport", + "name": "Isla Guadalupe Airport", + "latitude_deg": "29.02287", + "longitude_deg": "-118.273417", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada (Isla Guadalupe)", + "scheduled_service": "no", + "gps_code": "MMGD" + }, + { + "id": "4710", + "ident": "MMGL", + "type": "large_airport", + "name": "Don Miguel Hidalgo Y Costilla International Airport", + "latitude_deg": "20.521799087524414", + "longitude_deg": "-103.31099700927734", + "elevation_ft": "5016", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Guadalajara", + "scheduled_service": "yes", + "gps_code": "MMGL", + "iata_code": "GDL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Don_Miguel_Hidalgo_y_Costilla_International_Airport" + }, + { + "id": "4711", + "ident": "MMGM", + "type": "medium_airport", + "name": "General José María Yáñez International Airport", + "latitude_deg": "27.9689998626709", + "longitude_deg": "-110.92500305175781", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Guaymas", + "scheduled_service": "yes", + "gps_code": "MMGM", + "iata_code": "GYM", + "home_link": "http://guaymas.asa.gob.mx/wb/webasa/guaymas_aeropuertos", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Jos%C3%A9_Mar%C3%ADa_Y%C3%A1%C3%B1ez_International_Airport" + }, + { + "id": "31554", + "ident": "MMGR", + "type": "small_airport", + "name": "Guerrero Negro Airport", + "latitude_deg": "28.0261", + "longitude_deg": "-114.024002", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "yes", + "gps_code": "MMGR", + "iata_code": "GUB", + "local_code": "GRN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guerrero_Negro_Airport", + "keywords": "MM58" + }, + { + "id": "29924", + "ident": "MMGT", + "type": "small_airport", + "name": "Rancho Medio Sitio Airport", + "latitude_deg": "20.9172", + "longitude_deg": "-101.334", + "elevation_ft": "6152", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "Silao", + "scheduled_service": "no", + "gps_code": "MMGT", + "local_code": "MTO" + }, + { + "id": "4712", + "ident": "MMHC", + "type": "small_airport", + "name": "Tehuacan Airport", + "latitude_deg": "18.49720001220703", + "longitude_deg": "-97.4198989868164", + "elevation_ft": "5509", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "scheduled_service": "no", + "gps_code": "MMHC", + "iata_code": "TCN" + }, + { + "id": "4713", + "ident": "MMHO", + "type": "large_airport", + "name": "General Ignacio P. Garcia International Airport", + "latitude_deg": "29.095899581900003", + "longitude_deg": "-111.047996521", + "elevation_ft": "627", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Hermosillo", + "scheduled_service": "yes", + "gps_code": "MMHO", + "iata_code": "HMO", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Ignacio_Pesqueira_Garcia_International_Airport" + }, + { + "id": "4714", + "ident": "MMIA", + "type": "medium_airport", + "name": "Licenciado Miguel de la Madrid Airport", + "latitude_deg": "19.277", + "longitude_deg": "-103.577002", + "elevation_ft": "2467", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COL", + "municipality": "Colima", + "scheduled_service": "yes", + "gps_code": "MMIA", + "iata_code": "CLQ", + "local_code": "COL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lic._Miguel_de_la_Madrid_Airport", + "keywords": "Lic. Miguel de la Madrid Airport, Colima Airport" + }, + { + "id": "4715", + "ident": "MMIM", + "type": "small_airport", + "name": "Isla Mujeres Airport", + "latitude_deg": "21.245962", + "longitude_deg": "-86.740365", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Isla Mujeres", + "scheduled_service": "no", + "gps_code": "MMIM", + "iata_code": "ISJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Isla_Mujeres_National_Airport" + }, + { + "id": "4716", + "ident": "MMIO", + "type": "medium_airport", + "name": "Plan De Guadalupe International Airport", + "latitude_deg": "25.54949951171875", + "longitude_deg": "-100.92900085449219", + "elevation_ft": "4778", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Saltillo", + "scheduled_service": "yes", + "gps_code": "MMIO", + "iata_code": "SLW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Plan_de_Guadalupe_International_Airport" + }, + { + "id": "4717", + "ident": "MMIT", + "type": "medium_airport", + "name": "Ixtepec Airport", + "latitude_deg": "16.449301", + "longitude_deg": "-95.093697", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Ixtepec", + "scheduled_service": "yes", + "gps_code": "MMIT", + "iata_code": "IZT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ixtepec_Airport" + }, + { + "id": "4718", + "ident": "MMJA", + "type": "medium_airport", + "name": "El Lencero Airport", + "latitude_deg": "19.4750995636", + "longitude_deg": "-96.7975006104", + "elevation_ft": "3127", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Xalapa", + "scheduled_service": "yes", + "gps_code": "MMJA", + "iata_code": "JAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Lencero_Airport" + }, + { + "id": "4719", + "ident": "MMJC", + "type": "small_airport", + "name": "Atizapán de Zaragoza - Doctor Jorge Jiménez Cantu National Airport", + "latitude_deg": "19.574496", + "longitude_deg": "-99.289241", + "elevation_ft": "8120", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Ciudad López Mateos", + "scheduled_service": "no", + "gps_code": "MMJC", + "iata_code": "AZP", + "local_code": "JJC", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aeropuerto_Nacional_Jorge_Jiménez_Cantú", + "keywords": "Jorge Jiménez Cantú" + }, + { + "id": "4720", + "ident": "MMLC", + "type": "medium_airport", + "name": "Lázaro Cárdenas Airport", + "latitude_deg": "18.0016994476", + "longitude_deg": "-102.221000671", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Lázaro Cárdenas", + "scheduled_service": "yes", + "gps_code": "MMLC", + "iata_code": "LZC", + "wikipedia_link": "https://en.wikipedia.org/wiki/L%C3%A1zaro_C%C3%A1rdenas_Airport" + }, + { + "id": "4721", + "ident": "MMLM", + "type": "medium_airport", + "name": "Valle del Fuerte International Airport", + "latitude_deg": "25.685447", + "longitude_deg": "-109.081055", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Los Mochis", + "scheduled_service": "yes", + "gps_code": "MMLM", + "iata_code": "LMM", + "home_link": "http://aeropuertosgap.com.mx/english/index-site.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Federal_del_Valle_del_Fuerte_International_Airport" + }, + { + "id": "4722", + "ident": "MMLO", + "type": "medium_airport", + "name": "Del Bajío International Airport", + "latitude_deg": "20.9935", + "longitude_deg": "-101.481003", + "elevation_ft": "5956", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "Silao", + "scheduled_service": "yes", + "gps_code": "MMLO", + "iata_code": "BJX", + "local_code": "BJ1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Del_Baj%C3%ADo_International_Airport" + }, + { + "id": "4723", + "ident": "MMLP", + "type": "medium_airport", + "name": "Manuel Márquez de León International Airport", + "latitude_deg": "24.072700500499998", + "longitude_deg": "-110.361999512", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "yes", + "gps_code": "MMLP", + "iata_code": "LAP", + "home_link": "http://aeropuertosgap.com.mx/aeropuertos/lapaz?lang=eng", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manuel_M%C3%A1rquez_de_Le%C3%B3n_International_Airport" + }, + { + "id": "4724", + "ident": "MMLT", + "type": "medium_airport", + "name": "Loreto International Airport", + "latitude_deg": "25.989200592041016", + "longitude_deg": "-111.3479995727539", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Loreto", + "scheduled_service": "yes", + "gps_code": "MMLT", + "iata_code": "LTO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Loreto_International_Airport" + }, + { + "id": "4725", + "ident": "MMMA", + "type": "medium_airport", + "name": "General Servando Canales International Airport", + "latitude_deg": "25.7698993683", + "longitude_deg": "-97.5252990723", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Matamoros", + "scheduled_service": "yes", + "gps_code": "MMMA", + "iata_code": "MAM", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Servando_Canales_International_Airport" + }, + { + "id": "4726", + "ident": "MMMD", + "type": "medium_airport", + "name": "Licenciado Manuel Crescencio Rejon Int Airport", + "latitude_deg": "20.937000274699997", + "longitude_deg": "-89.657699585", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-YUC", + "municipality": "Mérida", + "scheduled_service": "yes", + "gps_code": "MMMD", + "iata_code": "MID", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manuel_Crescencio_Rej%C3%B3n_International_Airport" + }, + { + "id": "31967", + "ident": "MMMG", + "type": "small_airport", + "name": "Mulege Airport", + "latitude_deg": "26.905347", + "longitude_deg": "-111.970725", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulege", + "scheduled_service": "no", + "gps_code": "MMMG", + "iata_code": "MUG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Muleg%C3%A9_Airstrip" + }, + { + "id": "4727", + "ident": "MMML", + "type": "medium_airport", + "name": "General Rodolfo Sánchez Taboada International Airport", + "latitude_deg": "32.6306", + "longitude_deg": "-115.241997", + "elevation_ft": "74", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "yes", + "gps_code": "MMML", + "iata_code": "MXL", + "local_code": "M1L", + "home_link": "http://aeropuertosgap.com.mx/aeropuertos/mexicali?lang=eng", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Rodolfo_S%C3%A1nchez_Taboada_International_Airport", + "keywords": "Mexicali Airport" + }, + { + "id": "4728", + "ident": "MMMM", + "type": "medium_airport", + "name": "General Francisco J. Mujica International Airport", + "latitude_deg": "19.849899", + "longitude_deg": "-101.025002", + "elevation_ft": "6033", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Morelia", + "scheduled_service": "yes", + "gps_code": "MMMM", + "iata_code": "MLM", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Francisco_J._Mujica_International_Airport" + }, + { + "id": "4729", + "ident": "MMMT", + "type": "medium_airport", + "name": "Minatitlán/Coatzacoalcos International Airport", + "latitude_deg": "18.103399", + "longitude_deg": "-94.580704", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Cosoleacaque", + "scheduled_service": "yes", + "gps_code": "MMMT", + "iata_code": "MTT", + "home_link": "http://www.asur.com.mx/asur/ingles/aeropuertos/minatitlan/minatitlan.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Minatitl%C3%A1n/Coatzacoalcos_International_Airport" + }, + { + "id": "4730", + "ident": "MMMV", + "type": "medium_airport", + "name": "Monclova International Airport", + "latitude_deg": "26.9557", + "longitude_deg": "-101.470001", + "elevation_ft": "1864", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "scheduled_service": "yes", + "gps_code": "MMMV", + "iata_code": "LOV", + "local_code": "MOV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Venustiano_Carranza_International_Airport" + }, + { + "id": "4731", + "ident": "MMMX", + "type": "large_airport", + "name": "Licenciado Benito Juarez International Airport", + "latitude_deg": "19.4363", + "longitude_deg": "-99.072098", + "elevation_ft": "7316", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Mexico City", + "scheduled_service": "yes", + "gps_code": "MMMX", + "iata_code": "MEX", + "local_code": "ME1", + "home_link": "https://www.aicm.com.mx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mexico_City_International_Airport", + "keywords": "AICM" + }, + { + "id": "4732", + "ident": "MMMY", + "type": "medium_airport", + "name": "General Mariano Escobedo International Airport", + "latitude_deg": "25.7785", + "longitude_deg": "-100.107002", + "elevation_ft": "1278", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Monterrey", + "scheduled_service": "yes", + "gps_code": "MMMY", + "iata_code": "MTY", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Mariano_Escobedo_International_Airport" + }, + { + "id": "4733", + "ident": "MMMZ", + "type": "large_airport", + "name": "General Rafael Buelna International Airport", + "latitude_deg": "23.1614", + "longitude_deg": "-106.265999", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Mazatlán", + "scheduled_service": "yes", + "gps_code": "MMMZ", + "iata_code": "MZT", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Rafael_Buelna_International_Airport" + }, + { + "id": "4734", + "ident": "MMNG", + "type": "small_airport", + "name": "Nogales International Airport", + "latitude_deg": "31.225756", + "longitude_deg": "-110.976934", + "elevation_ft": "3990", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Nogales", + "scheduled_service": "yes", + "gps_code": "MMNG", + "iata_code": "NOG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nogales_International_Airport_(Mexico)" + }, + { + "id": "4735", + "ident": "MMNL", + "type": "medium_airport", + "name": "Quetzalcóatl International Airport", + "latitude_deg": "27.443899", + "longitude_deg": "-99.570503", + "elevation_ft": "484", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Nuevo Laredo", + "scheduled_service": "yes", + "gps_code": "MMNL", + "iata_code": "NLD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quetzalc%C3%B3atl_International_Airport" + }, + { + "id": "4736", + "ident": "MMOX", + "type": "medium_airport", + "name": "Xoxocotlán International Airport", + "latitude_deg": "16.9999008179", + "longitude_deg": "-96.726600647", + "elevation_ft": "4989", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Oaxaca", + "scheduled_service": "yes", + "gps_code": "MMOX", + "iata_code": "OAX", + "home_link": "http://www.asur.com.mx/asur/ingles/aeropuertos/oaxaca/oaxaca.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Xoxocotl%C3%A1n_International_Airport" + }, + { + "id": "4737", + "ident": "MMPA", + "type": "medium_airport", + "name": "El Tajín National Airport", + "latitude_deg": "20.6026992798", + "longitude_deg": "-97.46080017090001", + "elevation_ft": "497", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Poza Rica", + "scheduled_service": "yes", + "gps_code": "MMPA", + "iata_code": "PAZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Taj%C3%ADn_National_Airport" + }, + { + "id": "4738", + "ident": "MMPB", + "type": "medium_airport", + "name": "Hermanos Serdán International Airport", + "latitude_deg": "19.1581001282", + "longitude_deg": "-98.3713989258", + "elevation_ft": "7361", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "Puebla", + "scheduled_service": "yes", + "gps_code": "MMPB", + "iata_code": "PBC", + "home_link": "http://www.aeropuertopuebla.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hermanos_Serd%C3%A1n_International_Airport" + }, + { + "id": "4739", + "ident": "MMPC", + "type": "small_airport", + "name": "Ingeniero Juan Guillermo Villasana Airport", + "latitude_deg": "20.0774", + "longitude_deg": "-98.782501", + "elevation_ft": "7600", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-HID", + "municipality": "Pachuca", + "scheduled_service": "no", + "gps_code": "MMPC", + "local_code": "PCA" + }, + { + "id": "4740", + "ident": "MMPE", + "type": "closed", + "name": "Former Puerto Peñasco Airport", + "latitude_deg": "31.3562", + "longitude_deg": "-113.526", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Puerto Peñasco", + "scheduled_service": "no", + "keywords": "PPE, MMPE" + }, + { + "id": "4741", + "ident": "MMPG", + "type": "medium_airport", + "name": "Piedras Negras International Airport", + "latitude_deg": "28.627399", + "longitude_deg": "-100.535004", + "elevation_ft": "901", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "scheduled_service": "yes", + "gps_code": "MMPG", + "iata_code": "PDS", + "local_code": "PNG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Piedras_Negras_International_Airport" + }, + { + "id": "308382", + "ident": "MMPL", + "type": "small_airport", + "name": "Punta Colorada Airport", + "latitude_deg": "23.575011", + "longitude_deg": "-109.535826", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Ribera", + "scheduled_service": "no", + "gps_code": "MMPL", + "iata_code": "PCO", + "local_code": "PCL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Punta_Colorada_Airstrip" + }, + { + "id": "4742", + "ident": "MMPN", + "type": "medium_airport", + "name": "Uruapan - Licenciado y General Ignacio Lopez Rayon International Airport", + "latitude_deg": "19.3967", + "longitude_deg": "-102.039001", + "elevation_ft": "5258", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Uruapan", + "scheduled_service": "yes", + "gps_code": "MMPN", + "iata_code": "UPN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Uruapan_International_Airport" + }, + { + "id": "346862", + "ident": "MMPO", + "type": "small_airport", + "name": "Pinotepa Nacional Airport", + "latitude_deg": "16.37921", + "longitude_deg": "-98.1171", + "elevation_ft": "833", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Santiago Pinotepa Nacional", + "scheduled_service": "no", + "local_code": "MCN", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aeródromo_de_Pinotepa_Nacional", + "keywords": "Aeródromo de Mancuernas" + }, + { + "id": "4743", + "ident": "MMPP", + "type": "small_airport", + "name": "Punta Pescadero Airport", + "latitude_deg": "23.803329", + "longitude_deg": "-109.707348", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no", + "gps_code": "MMPP", + "local_code": "PPC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Punta_Pescadero_Airstrip" + }, + { + "id": "4744", + "ident": "MMPQ", + "type": "small_airport", + "name": "Palenque International Airport", + "latitude_deg": "17.533153", + "longitude_deg": "-92.015484", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Palenque", + "scheduled_service": "yes", + "gps_code": "MMPQ", + "iata_code": "PQM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palenque_International_Airport" + }, + { + "id": "4745", + "ident": "MMPR", + "type": "large_airport", + "name": "President Gustavo Díaz Ordaz International Airport", + "latitude_deg": "20.680099", + "longitude_deg": "-105.253998", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Puerto Vallarta", + "scheduled_service": "yes", + "gps_code": "MMPR", + "iata_code": "PVR", + "home_link": "http://vallarta.aeropuertosgap.com.mx/index.php?lang=eng", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lic._Gustavo_D%C3%ADaz_Ordaz_International_Airport", + "keywords": "Licenciado Gustavo Díaz Ordaz" + }, + { + "id": "4746", + "ident": "MMPS", + "type": "medium_airport", + "name": "Puerto Escondido International Airport", + "latitude_deg": "15.8769", + "longitude_deg": "-97.089103", + "elevation_ft": "294", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Puerto Escondido", + "scheduled_service": "yes", + "gps_code": "MMPS", + "iata_code": "PXM", + "local_code": "P1M", + "wikipedia_link": "https://en.wikipedia.org/wiki/Puerto_Escondido_International_Airport" + }, + { + "id": "4747", + "ident": "MMQT", + "type": "medium_airport", + "name": "Querétaro Intercontinental Airport", + "latitude_deg": "20.6173", + "longitude_deg": "-100.185997", + "elevation_ft": "6296", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-QUE", + "municipality": "Querétaro", + "scheduled_service": "yes", + "gps_code": "MMQT", + "iata_code": "QRO", + "local_code": "QET", + "home_link": "http://www.aiq.com.mx/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quer%C3%A9taro_International_Airport" + }, + { + "id": "4748", + "ident": "MMRX", + "type": "medium_airport", + "name": "General Lucio Blanco International Airport", + "latitude_deg": "26.0089", + "longitude_deg": "-98.2285", + "elevation_ft": "139", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Reynosa", + "scheduled_service": "yes", + "gps_code": "MMRX", + "iata_code": "REX", + "local_code": "REI", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Lucio_Blanco_International_Airport" + }, + { + "id": "4749", + "ident": "MMSC", + "type": "closed", + "name": "San Cristóbal de las Casas Airport", + "latitude_deg": "16.6903", + "longitude_deg": "-92.530098", + "elevation_ft": "7707", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "San Cristóbal de las Casas", + "scheduled_service": "no", + "gps_code": "MMSC", + "iata_code": "SZT", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Crist%C3%B3bal_de_las_Casas_National_Airport", + "keywords": "Corazón de María" + }, + { + "id": "4750", + "ident": "MMSD", + "type": "large_airport", + "name": "Los Cabos International Airport", + "latitude_deg": "23.1518", + "longitude_deg": "-109.721001", + "elevation_ft": "374", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "San José del Cabo", + "scheduled_service": "yes", + "gps_code": "MMSD", + "iata_code": "SJD", + "home_link": "http://loscabos.aeropuertosgap.com.mx/index.php?lang=eng", + "wikipedia_link": "https://en.wikipedia.org/wiki/Los_Cabos_International_Airport" + }, + { + "id": "4751", + "ident": "MMSF", + "type": "small_airport", + "name": "San Felipe International Airport", + "latitude_deg": "30.929912", + "longitude_deg": "-114.808388", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "gps_code": "MMSF", + "iata_code": "SFH", + "local_code": "SFE", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Felipe_International_Airport" + }, + { + "id": "323045", + "ident": "MMSG", + "type": "small_airport", + "name": "Air Base No. 11 Santa Gertrudis", + "latitude_deg": "27.784117", + "longitude_deg": "-105.702471", + "elevation_ft": "4659", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Saucillo", + "scheduled_service": "no", + "gps_code": "MMSG", + "wikipedia_link": "https://es.wikipedia.org/wiki/Base_a%C3%A9rea_n.%C2%BA_11_Santa_Gertrudis", + "keywords": "Teniente Coronel Juan Pablo Aldasoro Suárez" + }, + { + "id": "4869", + "ident": "MMSL", + "type": "medium_airport", + "name": "Cabo San Lucas International Airport", + "latitude_deg": "22.948211", + "longitude_deg": "-109.938155", + "elevation_ft": "459", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Cabo San Lucas", + "scheduled_service": "no", + "gps_code": "MMSL", + "local_code": "CSL", + "home_link": "http://caboairport.caboconnections.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cabo_San_Lucas_International_Airport", + "keywords": "MM15" + }, + { + "id": "31923", + "ident": "MMSM", + "type": "large_airport", + "name": "Santa Lucía Air Force Base / General Felipe Ángeles International Airport", + "latitude_deg": "19.7458", + "longitude_deg": "-99.0145", + "elevation_ft": "7369", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Mexico City (Santa Lucía)", + "scheduled_service": "no", + "gps_code": "MMSM", + "iata_code": "NLU", + "home_link": "https://www.gob.mx/nuevoaeropuertofelipeangeles", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mexico_City_Santa_Lucía_Airport", + "keywords": "Santa Lucia AFB, Mexico City Santa Lucía Airport, Zumpango" + }, + { + "id": "4752", + "ident": "MMSP", + "type": "medium_airport", + "name": "Ponciano Arriaga International Airport", + "latitude_deg": "22.254299163800003", + "longitude_deg": "-100.930999756", + "elevation_ft": "6035", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "San Luis Potosí", + "scheduled_service": "yes", + "gps_code": "MMSP", + "iata_code": "SLP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ponciano_Arriaga_International_Airport", + "keywords": "Estafeta" + }, + { + "id": "4753", + "ident": "MMTA", + "type": "small_airport", + "name": "Tlaxcala Airport", + "latitude_deg": "19.537992", + "longitude_deg": "-98.173492", + "elevation_ft": "8229", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TLA", + "scheduled_service": "no", + "gps_code": "MMTA", + "wikipedia_link": "https://es.wikipedia.org/wiki/Estaci%C3%B3n_a%C3%A9rea_n.%C2%B0_9_Atlangatepec", + "keywords": "Estación aérea n.° 9 Atlangatepec" + }, + { + "id": "4754", + "ident": "MMTB", + "type": "medium_airport", + "name": "Terán Air Base", + "latitude_deg": "16.739901", + "longitude_deg": "-93.173301", + "elevation_ft": "1909", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Tuxtla Gutiérrez", + "scheduled_service": "no", + "gps_code": "MMTB", + "local_code": "TGM", + "wikipedia_link": "http://es.wikipedia.org/wiki/Base_A%C3%A9rea_No._6_Ter%C3%A1n", + "keywords": "Angel Albino Corzo Airport" + }, + { + "id": "4755", + "ident": "MMTC", + "type": "medium_airport", + "name": "Francisco Sarabia Tinoco International Airport", + "latitude_deg": "25.5683", + "longitude_deg": "-103.411003", + "elevation_ft": "3688", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Torreón", + "scheduled_service": "yes", + "gps_code": "MMTC", + "iata_code": "TRC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Francisco_Sarabia_International_Airport" + }, + { + "id": "43048", + "ident": "MMTG", + "type": "medium_airport", + "name": "Angel Albino Corzo International Airport", + "latitude_deg": "16.5636005402", + "longitude_deg": "-93.02249908450001", + "elevation_ft": "1499", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Tuxtla Gutiérrez", + "scheduled_service": "yes", + "gps_code": "MMTG", + "iata_code": "TGZ", + "local_code": "TGZ", + "home_link": "http://www.chiapas.aero/index.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Angel_Albino_Corzo_International_Airport" + }, + { + "id": "4757", + "ident": "MMTJ", + "type": "large_airport", + "name": "General Abelardo L. Rodríguez International Airport", + "latitude_deg": "32.541099548339844", + "longitude_deg": "-116.97000122070312", + "elevation_ft": "489", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Tijuana", + "scheduled_service": "yes", + "gps_code": "MMTJ", + "iata_code": "TIJ", + "home_link": "http://aeropuertosgap.com.mx/english/airports/tijuana-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Abelardo_L._Rodr%C3%ADguez_International_Airport" + }, + { + "id": "4758", + "ident": "MMTM", + "type": "medium_airport", + "name": "General Francisco Javier Mina International Airport", + "latitude_deg": "22.2964000702", + "longitude_deg": "-97.8658981323", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Tampico", + "scheduled_service": "yes", + "gps_code": "MMTM", + "iata_code": "TAM", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Francisco_Javier_Mina_International_Airport" + }, + { + "id": "4759", + "ident": "MMTN", + "type": "small_airport", + "name": "Tamuin Airport", + "latitude_deg": "22.0383", + "longitude_deg": "-98.806502", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "scheduled_service": "no", + "gps_code": "MMTN", + "iata_code": "TSL", + "local_code": "TMN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tamu%C3%ADn_National_Airport" + }, + { + "id": "4760", + "ident": "MMTO", + "type": "medium_airport", + "name": "President Adolfo López Mateos International Airport", + "latitude_deg": "19.337099", + "longitude_deg": "-99.566002", + "elevation_ft": "8466", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Toluca", + "scheduled_service": "yes", + "gps_code": "MMTO", + "iata_code": "TLC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lic._Adolfo_L%C3%B3pez_Mateos_International_Airport", + "keywords": "Licenciado Adolfo López Mateos" + }, + { + "id": "4761", + "ident": "MMTP", + "type": "medium_airport", + "name": "Tapachula International Airport", + "latitude_deg": "14.7943000793", + "longitude_deg": "-92.3700027466", + "elevation_ft": "97", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Tapachula", + "scheduled_service": "yes", + "gps_code": "MMTP", + "iata_code": "TAP", + "home_link": "http://www.asur.com.mx/asur/Ingles/aeropuertos/tapachula/tapachula.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tapachula_International_Airport" + }, + { + "id": "30499", + "ident": "MMTX", + "type": "small_airport", + "name": "Zapotiltic - Tuxpan Airport", + "latitude_deg": "19.5996", + "longitude_deg": "-103.371", + "elevation_ft": "3900", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Zapotiltic", + "scheduled_service": "no", + "gps_code": "MMTX", + "local_code": "ZPC", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aeropuerto_Nacional_de_Zapotiltic" + }, + { + "id": "4762", + "ident": "MMUN", + "type": "large_airport", + "name": "Cancún International Airport", + "latitude_deg": "21.036500930800003", + "longitude_deg": "-86.8770980835", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Cancún", + "scheduled_service": "yes", + "gps_code": "MMUN", + "iata_code": "CUN", + "home_link": "http://www.asur.com.mx/asur/ingles/aeropuertos/cancun/cancun.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Canc%C3%BAn_International_Airport" + }, + { + "id": "302214", + "ident": "MMV", + "type": "small_airport", + "name": "Mal Airport", + "latitude_deg": "-1.39139", + "longitude_deg": "144.17131", + "elevation_ft": "6", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MRL", + "municipality": "Mal Island", + "scheduled_service": "no", + "gps_code": "AYMM", + "iata_code": "MMV", + "local_code": "MAL" + }, + { + "id": "4763", + "ident": "MMVA", + "type": "medium_airport", + "name": "Carlos Rovirosa Pérez International Airport", + "latitude_deg": "17.996999740600586", + "longitude_deg": "-92.81739807128906", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Villahermosa", + "scheduled_service": "yes", + "gps_code": "MMVA", + "iata_code": "VSA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carlos_Rovirosa_P%C3%A9rez_International_Airport", + "keywords": "Villahermosa International Airport" + }, + { + "id": "4764", + "ident": "MMVR", + "type": "medium_airport", + "name": "General Heriberto Jara International Airport", + "latitude_deg": "19.1459007263", + "longitude_deg": "-96.1873016357", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Veracruz", + "scheduled_service": "yes", + "gps_code": "MMVR", + "iata_code": "VER", + "home_link": "http://www.asur.com.mx/asur/ingles/aeropuertos/veracruz/veracruz.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Heriberto_Jara_International_Airport" + }, + { + "id": "4765", + "ident": "MMZC", + "type": "medium_airport", + "name": "General Leobardo C. Ruiz International Airport", + "latitude_deg": "22.8971004486", + "longitude_deg": "-102.68699646", + "elevation_ft": "7141", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ZAC", + "municipality": "Zacatecas", + "scheduled_service": "yes", + "gps_code": "MMZC", + "iata_code": "ZCL", + "home_link": "http://www.oma.aero/es/aeropuertos/zacatecas/", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Leobardo_C._Ruiz_International_Airport", + "keywords": "Zacatecas International Airport" + }, + { + "id": "4766", + "ident": "MMZH", + "type": "medium_airport", + "name": "Ixtapa Zihuatanejo International Airport", + "latitude_deg": "17.601601", + "longitude_deg": "-101.460999", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Ixtapa", + "scheduled_service": "yes", + "gps_code": "MMZH", + "iata_code": "ZIH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ixtapa-Zihuatanejo_International_Airport" + }, + { + "id": "4767", + "ident": "MMZM", + "type": "small_airport", + "name": "Zamora Airport", + "latitude_deg": "20.045", + "longitude_deg": "-102.276001", + "elevation_ft": "5141", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "scheduled_service": "no", + "gps_code": "MMZM", + "iata_code": "ZMM", + "local_code": "ZAM" + }, + { + "id": "4768", + "ident": "MMZO", + "type": "medium_airport", + "name": "Playa De Oro International Airport", + "latitude_deg": "19.1448", + "longitude_deg": "-104.558998", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COL", + "municipality": "Manzanillo", + "scheduled_service": "yes", + "gps_code": "MMZO", + "iata_code": "ZLO", + "home_link": "http://manzanillo.aeropuertosgap.com.mx/index.php?lang=eng", + "wikipedia_link": "https://en.wikipedia.org/wiki/Playa_de_Oro_International_Airport", + "keywords": "Manzanillo Costalegre" + }, + { + "id": "4769", + "ident": "MMZP", + "type": "small_airport", + "name": "Zapopan Airport", + "latitude_deg": "20.747922", + "longitude_deg": "-103.461709", + "elevation_ft": "5333", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "scheduled_service": "no", + "gps_code": "MMZP", + "local_code": "ZAP" + }, + { + "id": "335268", + "ident": "MN-0001", + "type": "closed", + "name": "Gurzandzagal East Airport", + "latitude_deg": "49.194129", + "longitude_deg": "115.336039", + "elevation_ft": "2312", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-061", + "scheduled_service": "no" + }, + { + "id": "355961", + "ident": "MN-0002", + "type": "closed", + "name": "Oyu-Tolgoi Airport", + "latitude_deg": "43.115911", + "longitude_deg": "106.861626", + "elevation_ft": "3961", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-055", + "municipality": "Khanbogd, Ömnögovi", + "scheduled_service": "no", + "keywords": "ZMOT" + }, + { + "id": "355968", + "ident": "MN-0003", + "type": "small_airport", + "name": "Bulgan Airport", + "latitude_deg": "44.09521", + "longitude_deg": "103.53464", + "elevation_ft": "4311", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-055", + "municipality": "Bulgan, Ömnögovi", + "scheduled_service": "no" + }, + { + "id": "31983", + "ident": "MN-MXW", + "type": "small_airport", + "name": "Mandalgobi Airport", + "latitude_deg": "45.7380981445", + "longitude_deg": "106.268997192", + "elevation_ft": "4550", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-059", + "municipality": "Mandalgobi", + "scheduled_service": "yes", + "gps_code": "ZMMG", + "iata_code": "MXW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mandalgovi_Airport" + }, + { + "id": "32539", + "ident": "MN-ULZ", + "type": "small_airport", + "name": "Jibhalanta Airport", + "latitude_deg": "47.7146987915", + "longitude_deg": "96.8471984863", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-057", + "municipality": "Uliastai", + "scheduled_service": "no", + "keywords": "ULZ" + }, + { + "id": "22108", + "ident": "MN00", + "type": "small_airport", + "name": "Webb Lake Airport", + "latitude_deg": "46.95980072", + "longitude_deg": "-94.42469788", + "elevation_ft": "1359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hackensack", + "scheduled_service": "no", + "gps_code": "MN00", + "local_code": "MN00" + }, + { + "id": "22109", + "ident": "MN01", + "type": "small_airport", + "name": "Hammars Farm Airport", + "latitude_deg": "47.277814", + "longitude_deg": "-96.614012", + "elevation_ft": "886", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Ada", + "scheduled_service": "no", + "gps_code": "MN01", + "local_code": "MN01" + }, + { + "id": "22110", + "ident": "MN02", + "type": "seaplane_base", + "name": "Lake Minnewashta Seaplane Base", + "latitude_deg": "44.880501", + "longitude_deg": "-93.6091", + "elevation_ft": "944", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Excelsior", + "scheduled_service": "no", + "gps_code": "MN02", + "local_code": "MN02", + "keywords": "MY23, Andings Landing" + }, + { + "id": "22111", + "ident": "MN03", + "type": "closed", + "name": "Bolduc Seaplane Base", + "latitude_deg": "47.597698", + "longitude_deg": "-93.410797", + "elevation_ft": "1325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Bigfork", + "scheduled_service": "no", + "keywords": "MN03" + }, + { + "id": "22112", + "ident": "MN04", + "type": "closed", + "name": "Aggies Landing Airport", + "latitude_deg": "45.773602", + "longitude_deg": "-95.262802", + "elevation_ft": "1387", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Alexandria", + "scheduled_service": "no", + "keywords": "MN04" + }, + { + "id": "22113", + "ident": "MN05", + "type": "seaplane_base", + "name": "Jordan Seaplane Base", + "latitude_deg": "47.597198486328125", + "longitude_deg": "-94.8469009399414", + "elevation_ft": "1344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Bemidji", + "scheduled_service": "no", + "gps_code": "MN05", + "local_code": "MN05" + }, + { + "id": "22114", + "ident": "MN06", + "type": "small_airport", + "name": "Pulkrabek Landing Field", + "latitude_deg": "48.053773", + "longitude_deg": "-96.788167", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Angus", + "scheduled_service": "no", + "gps_code": "MN06", + "local_code": "MN06" + }, + { + "id": "22115", + "ident": "MN07", + "type": "heliport", + "name": "Health One Mercy Hospital Heliport", + "latitude_deg": "45.18360137939453", + "longitude_deg": "-93.37020111083984", + "elevation_ft": "867", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Anoka", + "scheduled_service": "no", + "gps_code": "MN07", + "local_code": "MN07" + }, + { + "id": "22116", + "ident": "MN08", + "type": "small_airport", + "name": "Eagles Nest Aerodrome", + "latitude_deg": "44.12649917602539", + "longitude_deg": "-93.8718032836914", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Eagle Lake", + "scheduled_service": "no", + "gps_code": "MN08", + "local_code": "MN08" + }, + { + "id": "22117", + "ident": "MN09", + "type": "seaplane_base", + "name": "Crystal Lake Seaplane Base", + "latitude_deg": "44.722198", + "longitude_deg": "-93.266899", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Burnsville", + "scheduled_service": "no", + "gps_code": "MN09", + "local_code": "MN09", + "keywords": "Apple Valley" + }, + { + "id": "22118", + "ident": "MN10", + "type": "heliport", + "name": "Abbott Northwestern Hospital Heliport", + "latitude_deg": "44.954521", + "longitude_deg": "-93.260202", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Minneapolis", + "scheduled_service": "no", + "gps_code": "MN10", + "local_code": "MN10" + }, + { + "id": "22119", + "ident": "MN11", + "type": "small_airport", + "name": "Lorenz Airport", + "latitude_deg": "45.29999923706055", + "longitude_deg": "-95.54499816894531", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Benson", + "scheduled_service": "no", + "gps_code": "MN11", + "local_code": "MN11" + }, + { + "id": "22120", + "ident": "MN12", + "type": "small_airport", + "name": "Robco Airport", + "latitude_deg": "47.19889831542969", + "longitude_deg": "-94.752197265625", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Laporte", + "scheduled_service": "no", + "gps_code": "MN12", + "local_code": "MN12" + }, + { + "id": "22121", + "ident": "MN13", + "type": "small_airport", + "name": "Moberg Air Base", + "latitude_deg": "47.49610137939453", + "longitude_deg": "-94.95279693603516", + "elevation_ft": "1373", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Bemidji", + "scheduled_service": "no", + "gps_code": "MN13", + "local_code": "MN13" + }, + { + "id": "22122", + "ident": "MN14", + "type": "heliport", + "name": "United Hospital District Heliport", + "latitude_deg": "43.63370132446289", + "longitude_deg": "-94.10009765625", + "elevation_ft": "1089", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Blue Earth", + "scheduled_service": "no", + "gps_code": "MN14", + "local_code": "MN14" + }, + { + "id": "22123", + "ident": "MN15", + "type": "closed", + "name": "Empire Farm Strip", + "latitude_deg": "44.794998", + "longitude_deg": "-93.853897", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Bongards", + "scheduled_service": "no", + "keywords": "MN15" + }, + { + "id": "45487", + "ident": "MN16", + "type": "heliport", + "name": "Virginia Regional Hospital Heliport", + "latitude_deg": "47.531389", + "longitude_deg": "-92.548056", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Virginia", + "scheduled_service": "no", + "gps_code": "MN16", + "local_code": "MN16" + }, + { + "id": "22124", + "ident": "MN17", + "type": "small_airport", + "name": "Jackson Field", + "latitude_deg": "46.27220154", + "longitude_deg": "-94.23940277", + "elevation_ft": "1225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Brainerd", + "scheduled_service": "no", + "gps_code": "MN17", + "local_code": "MN17" + }, + { + "id": "22125", + "ident": "MN18", + "type": "small_airport", + "name": "Barrett Airport", + "latitude_deg": "46.178199768066406", + "longitude_deg": "-94.0886001586914", + "elevation_ft": "1275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Brainerd", + "scheduled_service": "no", + "gps_code": "MN18", + "local_code": "MN18" + }, + { + "id": "22126", + "ident": "MN19", + "type": "small_airport", + "name": "Brandt Airport", + "latitude_deg": "45.047298431396484", + "longitude_deg": "-93.8364028930664", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Delano", + "scheduled_service": "no", + "gps_code": "MN19", + "local_code": "MN19" + }, + { + "id": "22127", + "ident": "MN20", + "type": "small_airport", + "name": "Runke's Field", + "latitude_deg": "44.910499572753906", + "longitude_deg": "-94.57140350341797", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Cedar Mills", + "scheduled_service": "no", + "gps_code": "MN20", + "local_code": "MN20" + }, + { + "id": "22128", + "ident": "MN21", + "type": "seaplane_base", + "name": "Rileys Landing Seaplane Base", + "latitude_deg": "44.83330154418945", + "longitude_deg": "-93.53359985351562", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Chanhassen Village", + "scheduled_service": "no", + "gps_code": "MN21", + "local_code": "MN21" + }, + { + "id": "22129", + "ident": "MN23", + "type": "closed", + "name": "Dupre's Airport", + "latitude_deg": "45.3158", + "longitude_deg": "-92.885803", + "elevation_ft": "936", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Chisago", + "scheduled_service": "no", + "keywords": "MN23" + }, + { + "id": "22130", + "ident": "MN24", + "type": "small_airport", + "name": "Surfside Airport", + "latitude_deg": "45.150001525878906", + "longitude_deg": "-93.11689758300781", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Circle Pines", + "scheduled_service": "no", + "gps_code": "MN24", + "local_code": "MN24" + }, + { + "id": "22131", + "ident": "MN25", + "type": "heliport", + "name": "Mahnomen County & Village Hospital Heliport", + "latitude_deg": "47.3119010925293", + "longitude_deg": "-95.9738998413086", + "elevation_ft": "1234", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Mahnomen", + "scheduled_service": "no", + "gps_code": "MN25", + "local_code": "MN25" + }, + { + "id": "22132", + "ident": "MN26", + "type": "heliport", + "name": "Tri-County Heliport", + "latitude_deg": "46.44660186767578", + "longitude_deg": "-95.13310241699219", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Wadena", + "scheduled_service": "no", + "gps_code": "MN26", + "local_code": "MN26" + }, + { + "id": "22133", + "ident": "MN27", + "type": "heliport", + "name": "Fairview Southdale Hospital Heliport", + "latitude_deg": "44.887001037597656", + "longitude_deg": "-93.32659912109375", + "elevation_ft": "867", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Edina", + "scheduled_service": "no", + "gps_code": "MN27", + "local_code": "MN27" + }, + { + "id": "22134", + "ident": "MN28", + "type": "small_airport", + "name": "Lux Strip", + "latitude_deg": "44.983001708984375", + "longitude_deg": "-94.74810028076172", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Cosmos", + "scheduled_service": "no", + "gps_code": "MN28", + "local_code": "MN28" + }, + { + "id": "22135", + "ident": "MN29", + "type": "closed", + "name": "Buffalo Lake Seaplane Base", + "latitude_deg": "45.162201", + "longitude_deg": "-93.910797", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Buffalo", + "scheduled_service": "no", + "keywords": "MN29" + }, + { + "id": "22136", + "ident": "MN30", + "type": "seaplane_base", + "name": "Busch's Fish Lake Seaplane Base", + "latitude_deg": "45.09410095214844", + "longitude_deg": "-93.46520233154297", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Maple Grove", + "scheduled_service": "no", + "gps_code": "MN30", + "local_code": "MN30" + }, + { + "id": "22137", + "ident": "MN31", + "type": "small_airport", + "name": "L & M Aerodrome", + "latitude_deg": "45.062198638916016", + "longitude_deg": "-94.5792007446289", + "elevation_ft": "1205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Litchfield", + "scheduled_service": "no", + "gps_code": "MN31", + "local_code": "MN31" + }, + { + "id": "22138", + "ident": "MN32", + "type": "small_airport", + "name": "Nietz Airstrip", + "latitude_deg": "44.19139862060547", + "longitude_deg": "-92.45269775390625", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Oronoco", + "scheduled_service": "no", + "gps_code": "MN32", + "local_code": "MN32" + }, + { + "id": "22139", + "ident": "MN33", + "type": "heliport", + "name": "St Mary's Hospital Heliport", + "latitude_deg": "46.793800354003906", + "longitude_deg": "-92.0978012084961", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Duluth", + "scheduled_service": "no", + "gps_code": "MN33", + "local_code": "MN33" + }, + { + "id": "22140", + "ident": "MN34", + "type": "heliport", + "name": "St Olaf Hospital Heliport", + "latitude_deg": "43.675201416015625", + "longitude_deg": "-92.97709655761719", + "elevation_ft": "1202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "MN34", + "local_code": "MN34" + }, + { + "id": "22141", + "ident": "MN35", + "type": "seaplane_base", + "name": "Wild Rice Lake Seaplane Base", + "latitude_deg": "46.899898529052734", + "longitude_deg": "-92.16210174560547", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Duluth", + "scheduled_service": "no", + "gps_code": "MN35", + "local_code": "MN35" + }, + { + "id": "22142", + "ident": "MN36", + "type": "heliport", + "name": "Mosquito Heliport", + "latitude_deg": "45.68619918823242", + "longitude_deg": "-94.19999694824219", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Rice", + "scheduled_service": "no", + "gps_code": "MN36", + "local_code": "MN36" + }, + { + "id": "22143", + "ident": "MN37", + "type": "closed", + "name": "Shelton's Private Airport", + "latitude_deg": "46.944901", + "longitude_deg": "-92.357101", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Saginaw", + "scheduled_service": "no", + "keywords": "MN37" + }, + { + "id": "22144", + "ident": "MN38", + "type": "closed", + "name": "Spud Field", + "latitude_deg": "47.924999", + "longitude_deg": "-96.983704", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "East Grand Forks", + "scheduled_service": "no", + "keywords": "MN38" + }, + { + "id": "22145", + "ident": "MN39", + "type": "heliport", + "name": "Winona Health Services Heliport", + "latitude_deg": "44.033853", + "longitude_deg": "-91.623305", + "elevation_ft": "666", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Winona", + "scheduled_service": "no", + "gps_code": "MN39", + "local_code": "MN39", + "keywords": "Community Memorial Hospital" + }, + { + "id": "22146", + "ident": "MN40", + "type": "small_airport", + "name": "Meadowvale Airport", + "latitude_deg": "45.36249923706055", + "longitude_deg": "-93.5886001586914", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Elk River", + "scheduled_service": "no", + "gps_code": "MN40", + "local_code": "MN40" + }, + { + "id": "45489", + "ident": "MN41", + "type": "small_airport", + "name": "Timmers Landing Field", + "latitude_deg": "44.973428", + "longitude_deg": "-94.214186", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Silver Lake", + "scheduled_service": "no", + "gps_code": "MN41", + "local_code": "MN41" + }, + { + "id": "22147", + "ident": "MN42", + "type": "small_airport", + "name": "Oak Lake Air Strip", + "latitude_deg": "47.658599853515625", + "longitude_deg": "-95.94609832763672", + "elevation_ft": "1204", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Erskine", + "scheduled_service": "no", + "gps_code": "MN42", + "local_code": "MN42" + }, + { + "id": "22148", + "ident": "MN43", + "type": "heliport", + "name": "Kanabec Hospital Heliport", + "latitude_deg": "45.8744010925293", + "longitude_deg": "-93.28990173339844", + "elevation_ft": "1005", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Mora", + "scheduled_service": "no", + "gps_code": "MN43", + "local_code": "MN43" + }, + { + "id": "22149", + "ident": "MN44", + "type": "small_airport", + "name": "Angen Field", + "latitude_deg": "45.9364013671875", + "longitude_deg": "-95.52619934082031", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Garfield", + "scheduled_service": "no", + "gps_code": "MN44", + "local_code": "MN44" + }, + { + "id": "22150", + "ident": "MN45", + "type": "small_airport", + "name": "Jennrich Field", + "latitude_deg": "44.56610107421875", + "longitude_deg": "-93.1322021484375", + "elevation_ft": "951", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Farmington", + "scheduled_service": "no", + "gps_code": "MN45", + "local_code": "MN45" + }, + { + "id": "22151", + "ident": "MN46", + "type": "closed", + "name": "Lucht Field", + "latitude_deg": "44.603954", + "longitude_deg": "-93.094505", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Farmington", + "scheduled_service": "no", + "keywords": "MN46" + }, + { + "id": "22152", + "ident": "MN47", + "type": "small_airport", + "name": "Cameron's Airport", + "latitude_deg": "45.54970169", + "longitude_deg": "-93.46980286", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "MN47", + "local_code": "MN47" + }, + { + "id": "22153", + "ident": "MN48", + "type": "heliport", + "name": "St Luke Hospital Heliport", + "latitude_deg": "46.797401428222656", + "longitude_deg": "-92.08599853515625", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Duluth", + "scheduled_service": "no", + "gps_code": "MN48", + "local_code": "MN48" + }, + { + "id": "22154", + "ident": "MN49", + "type": "small_airport", + "name": "Tuma Private Airport", + "latitude_deg": "44.42390060424805", + "longitude_deg": "-93.4843978881836", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Montgomery", + "scheduled_service": "no", + "gps_code": "MN49", + "local_code": "MN49" + }, + { + "id": "22155", + "ident": "MN50", + "type": "small_airport", + "name": "Arthur Field", + "latitude_deg": "48.370201110839844", + "longitude_deg": "-95.80690002441406", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Gatzke", + "scheduled_service": "no", + "gps_code": "MN50", + "local_code": "MN50" + }, + { + "id": "22156", + "ident": "MN51", + "type": "closed", + "name": "Bowers Airport", + "latitude_deg": "45.453602", + "longitude_deg": "-92.974701", + "elevation_ft": "909", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Stacy", + "scheduled_service": "no", + "keywords": "MN51" + }, + { + "id": "22157", + "ident": "MN52", + "type": "small_airport", + "name": "Gospel Ranch Airport", + "latitude_deg": "47.22909927", + "longitude_deg": "-93.09210205", + "elevation_ft": "1360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hibbing", + "scheduled_service": "no", + "gps_code": "MN52", + "local_code": "MN52" + }, + { + "id": "22158", + "ident": "MN53", + "type": "closed", + "name": "Stanley Field", + "latitude_deg": "45.582199", + "longitude_deg": "-96.5765", + "elevation_ft": "1112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Graceville", + "scheduled_service": "no", + "keywords": "MN53" + }, + { + "id": "22159", + "ident": "MN54", + "type": "closed", + "name": "Gunflint Seaplane Base", + "latitude_deg": "48.091599", + "longitude_deg": "-90.708397", + "elevation_ft": "1543", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Grand Marais", + "scheduled_service": "no", + "keywords": "MN54" + }, + { + "id": "22160", + "ident": "MN55", + "type": "small_airport", + "name": "Sandy Flats Airport", + "latitude_deg": "44.7052001953125", + "longitude_deg": "-92.81189727783203", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hastings", + "scheduled_service": "no", + "gps_code": "MN55", + "local_code": "MN55" + }, + { + "id": "22161", + "ident": "MN56", + "type": "heliport", + "name": "Charlton Building Heliport", + "latitude_deg": "44.0182991027832", + "longitude_deg": "-92.45179748535156", + "elevation_ft": "1086", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Rochester", + "scheduled_service": "no", + "gps_code": "MN56", + "local_code": "MN56" + }, + { + "id": "45490", + "ident": "MN57", + "type": "small_airport", + "name": "Bush Field", + "latitude_deg": "46.036072", + "longitude_deg": "-92.988008", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hinckley", + "scheduled_service": "no", + "gps_code": "MN57", + "local_code": "MN57" + }, + { + "id": "22162", + "ident": "MN58", + "type": "small_airport", + "name": "Sky Meadow Airport", + "latitude_deg": "44.698098", + "longitude_deg": "-92.865136", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hastings", + "scheduled_service": "no", + "gps_code": "MN58", + "local_code": "MN58" + }, + { + "id": "22163", + "ident": "MN59", + "type": "heliport", + "name": "District One Hospital Heliport", + "latitude_deg": "44.289398193359375", + "longitude_deg": "-93.25800323486328", + "elevation_ft": "1065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Faribault", + "scheduled_service": "no", + "gps_code": "MN59", + "local_code": "MN59" + }, + { + "id": "22164", + "ident": "MN60", + "type": "closed", + "name": "Itzen Air Strip", + "latitude_deg": "45.763302", + "longitude_deg": "-96.215599", + "elevation_ft": "1053", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Herman", + "scheduled_service": "no", + "keywords": "MN60" + }, + { + "id": "22165", + "ident": "MN61", + "type": "closed", + "name": "Ward Airport", + "latitude_deg": "43.760201", + "longitude_deg": "-93.178001", + "elevation_ft": "1205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hollandale", + "scheduled_service": "no", + "keywords": "MN61" + }, + { + "id": "22166", + "ident": "MN62", + "type": "small_airport", + "name": "Quast Airport", + "latitude_deg": "44.849998474121094", + "longitude_deg": "-94.35030364990234", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hutchinson", + "scheduled_service": "no", + "gps_code": "MN62", + "local_code": "MN62" + }, + { + "id": "22167", + "ident": "MN63", + "type": "small_airport", + "name": "Stocker Private Airport", + "latitude_deg": "44.68330001831055", + "longitude_deg": "-93.63690185546875", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Jordan", + "scheduled_service": "no", + "gps_code": "MN63", + "local_code": "MN63" + }, + { + "id": "22168", + "ident": "MN64", + "type": "closed", + "name": "H Reder Field", + "latitude_deg": "43.695802", + "longitude_deg": "-95.172501", + "elevation_ft": "1504", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Lakefield", + "scheduled_service": "no", + "keywords": "MN64" + }, + { + "id": "22169", + "ident": "MN65", + "type": "heliport", + "name": "Meeker County Memorial Hospital Heliport", + "latitude_deg": "45.119802", + "longitude_deg": "-94.529851", + "elevation_ft": "1135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Litchfield", + "scheduled_service": "no", + "gps_code": "MN65", + "local_code": "MN65" + }, + { + "id": "22170", + "ident": "MN66", + "type": "small_airport", + "name": "Ingleside Airport", + "latitude_deg": "45.0630989074707", + "longitude_deg": "-93.65229797363281", + "elevation_ft": "1021", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Loretto", + "scheduled_service": "no", + "gps_code": "MN66", + "local_code": "MN66" + }, + { + "id": "22171", + "ident": "MN67", + "type": "small_airport", + "name": "Sky Park Airport", + "latitude_deg": "44.6596984863", + "longitude_deg": "-93.51830291750001", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Lydia", + "scheduled_service": "no", + "gps_code": "MN67", + "local_code": "MN67" + }, + { + "id": "22172", + "ident": "MN68", + "type": "closed", + "name": "Pangerl Airport", + "latitude_deg": "45.700802", + "longitude_deg": "-93.371597", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Braham", + "scheduled_service": "no", + "keywords": "MN68" + }, + { + "id": "22173", + "ident": "MN69", + "type": "small_airport", + "name": "Maple Airport", + "latitude_deg": "45.00270080566406", + "longitude_deg": "-93.6718978881836", + "elevation_ft": "1026", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Maple Plain", + "scheduled_service": "no", + "gps_code": "MN69", + "local_code": "MN69" + }, + { + "id": "22174", + "ident": "MN70", + "type": "heliport", + "name": "Springfield Medical Center-Mayo Health System Heliport", + "latitude_deg": "44.24660110473633", + "longitude_deg": "-94.9717025756836", + "elevation_ft": "1075", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "MN70", + "local_code": "MN70" + }, + { + "id": "22175", + "ident": "MN71", + "type": "closed", + "name": "Ziermann Airport", + "latitude_deg": "44.875", + "longitude_deg": "-93.891899", + "elevation_ft": "988", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Mayer", + "scheduled_service": "no", + "keywords": "MN71" + }, + { + "id": "22176", + "ident": "MN72", + "type": "closed", + "name": "Peil's Vermillion Wings Seaplane Base", + "latitude_deg": "47.885502", + "longitude_deg": "-92.405197", + "elevation_ft": "1360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Tower", + "scheduled_service": "no", + "keywords": "MN72" + }, + { + "id": "22177", + "ident": "MN73", + "type": "seaplane_base", + "name": "Snell's Seaplane Base", + "latitude_deg": "47.64720153808594", + "longitude_deg": "-93.74500274658203", + "elevation_ft": "1351", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Marcell", + "scheduled_service": "no", + "gps_code": "MN73", + "local_code": "MN73" + }, + { + "id": "22178", + "ident": "MN74", + "type": "small_airport", + "name": "B & D Flyers International Airport", + "latitude_deg": "43.830501556399994", + "longitude_deg": "-93.84049987790002", + "elevation_ft": "1055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Minnesota Lake", + "scheduled_service": "no", + "gps_code": "MN74", + "local_code": "MN74" + }, + { + "id": "22179", + "ident": "MN75", + "type": "seaplane_base", + "name": "Krezowski Seaplane Base", + "latitude_deg": "46.7582016", + "longitude_deg": "-93.28230286", + "elevation_ft": "1214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Mcgregor", + "scheduled_service": "no", + "gps_code": "MN75", + "local_code": "MN75" + }, + { + "id": "22180", + "ident": "MN76", + "type": "seaplane_base", + "name": "Marty's Tranquility Base", + "latitude_deg": "44.699962616", + "longitude_deg": "-93.47189331050001", + "elevation_ft": "911", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Prior Lake", + "scheduled_service": "no", + "gps_code": "MN76", + "local_code": "MN76", + "keywords": "45D" + }, + { + "id": "22181", + "ident": "MN77", + "type": "small_airport", + "name": "Jerger's Field", + "latitude_deg": "46.92348", + "longitude_deg": "-96.716123", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Moorhead", + "scheduled_service": "no", + "gps_code": "MN77", + "local_code": "MN77" + }, + { + "id": "22182", + "ident": "MN78", + "type": "closed", + "name": "Turtle Lake Seaplane Base", + "latitude_deg": "47.6166", + "longitude_deg": "-94.866897", + "elevation_ft": "1344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Bemidji", + "scheduled_service": "no", + "keywords": "MN78" + }, + { + "id": "22183", + "ident": "MN79", + "type": "closed", + "name": "Schroeder Airport", + "latitude_deg": "45.4314", + "longitude_deg": "-93.857697", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Becker", + "scheduled_service": "no", + "keywords": "MN79" + }, + { + "id": "22184", + "ident": "MN80", + "type": "seaplane_base", + "name": "The Pass Seaplane Base", + "latitude_deg": "44.914398193359375", + "longitude_deg": "-93.6884994506836", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Mound", + "scheduled_service": "no", + "gps_code": "MN80", + "local_code": "MN80" + }, + { + "id": "22185", + "ident": "MN81", + "type": "small_airport", + "name": "J J and T Airport", + "latitude_deg": "47.98889923095703", + "longitude_deg": "-97.03119659423828", + "elevation_ft": "828", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "East Grand Forks", + "scheduled_service": "no", + "gps_code": "MN81", + "local_code": "MN81" + }, + { + "id": "22186", + "ident": "MN82", + "type": "closed", + "name": "Fairview Red Wing Hospital Heliport", + "latitude_deg": "44.5602", + "longitude_deg": "-92.546303", + "elevation_ft": "793", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Red Wing", + "scheduled_service": "no", + "keywords": "MN82" + }, + { + "id": "22187", + "ident": "MN83", + "type": "heliport", + "name": "International Falls Memorial Heliport", + "latitude_deg": "48.59550094604492", + "longitude_deg": "-93.43180084228516", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "International Falls", + "scheduled_service": "no", + "gps_code": "MN83", + "local_code": "MN83" + }, + { + "id": "22188", + "ident": "MN84", + "type": "closed", + "name": "Bachand Airport", + "latitude_deg": "47.813903", + "longitude_deg": "-95.891998", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Oklee", + "scheduled_service": "no", + "keywords": "http://www.airnav.com/airport/MN84" + }, + { + "id": "22189", + "ident": "MN85", + "type": "small_airport", + "name": "Swiderski Field", + "latitude_deg": "46.03329849243164", + "longitude_deg": "-93.6613998413086", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Onamia", + "scheduled_service": "no", + "gps_code": "MN85", + "local_code": "MN85" + }, + { + "id": "22190", + "ident": "MN86", + "type": "small_airport", + "name": "Sky Manor Aero Estates Airport", + "latitude_deg": "47.045799255371094", + "longitude_deg": "-95.12249755859375", + "elevation_ft": "1492", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Park Rapids", + "scheduled_service": "no", + "gps_code": "MN86", + "local_code": "MN86" + }, + { + "id": "22191", + "ident": "MN87", + "type": "small_airport", + "name": "Cooks Landing Airport", + "latitude_deg": "45.24359893798828", + "longitude_deg": "-93.2217025756836", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Ham Lake", + "scheduled_service": "no", + "gps_code": "MN87", + "local_code": "MN87" + }, + { + "id": "22192", + "ident": "MN88", + "type": "small_airport", + "name": "Empire Valley Airport", + "latitude_deg": "45.28689956665039", + "longitude_deg": "-94.67530059814453", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Paynesville", + "scheduled_service": "no", + "gps_code": "MN88", + "local_code": "MN88" + }, + { + "id": "22193", + "ident": "MN89", + "type": "small_airport", + "name": "Aerovilla Airport", + "latitude_deg": "46.616600036621094", + "longitude_deg": "-95.65029907226562", + "elevation_ft": "1374", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Perham", + "scheduled_service": "no", + "gps_code": "MN89", + "local_code": "MN89" + }, + { + "id": "22194", + "ident": "MN90", + "type": "heliport", + "name": "Luverne Community Hospital Heliport", + "latitude_deg": "43.67290115356445", + "longitude_deg": "-96.20989990234375", + "elevation_ft": "1427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Luverne", + "scheduled_service": "no", + "gps_code": "MN90", + "local_code": "MN90" + }, + { + "id": "22195", + "ident": "MN91", + "type": "small_airport", + "name": "Reynolds Field", + "latitude_deg": "45.537498474121094", + "longitude_deg": "-93.51409912109375", + "elevation_ft": "985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "MN91", + "local_code": "MN91" + }, + { + "id": "22196", + "ident": "MN92", + "type": "small_airport", + "name": "Lennartson Airport", + "latitude_deg": "46.749900817871094", + "longitude_deg": "-92.30020141601562", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Proctor", + "scheduled_service": "no", + "gps_code": "MN92", + "local_code": "MN92" + }, + { + "id": "22197", + "ident": "MN93", + "type": "closed", + "name": "Chandler Field", + "latitude_deg": "46.105499", + "longitude_deg": "-94.516998", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Randall", + "scheduled_service": "no", + "keywords": "MN93" + }, + { + "id": "22198", + "ident": "MN94", + "type": "heliport", + "name": "Mille Lacs Heliport", + "latitude_deg": "46.073001861572266", + "longitude_deg": "-93.6624984741211", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Onamia", + "scheduled_service": "no", + "gps_code": "MN94", + "local_code": "MN94" + }, + { + "id": "22199", + "ident": "MN95", + "type": "small_airport", + "name": "Velo Airstrip", + "latitude_deg": "46.51110076904297", + "longitude_deg": "-96.19200134277344", + "elevation_ft": "1386", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Rothsay", + "scheduled_service": "no", + "gps_code": "MN95", + "local_code": "MN95" + }, + { + "id": "22200", + "ident": "MN96", + "type": "closed", + "name": "Rohwer Airport", + "latitude_deg": "43.5983", + "longitude_deg": "-95.817002", + "elevation_ft": "1640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Rushmore", + "scheduled_service": "no", + "keywords": "MN96" + }, + { + "id": "22201", + "ident": "MN97", + "type": "closed", + "name": "Thens Private Airstrip", + "latitude_deg": "45.590195", + "longitude_deg": "-94.204399", + "elevation_ft": "1042", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Saint Cloud", + "scheduled_service": "no", + "keywords": "MN97" + }, + { + "id": "22202", + "ident": "MN98", + "type": "closed", + "name": "Aero-Plain Airport", + "latitude_deg": "45.410947", + "longitude_deg": "-93.384937", + "elevation_ft": "931", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Saint Francis", + "scheduled_service": "no", + "keywords": "MN98" + }, + { + "id": "22203", + "ident": "MN99", + "type": "small_airport", + "name": "Serenity Airport", + "latitude_deg": "44.91559982299805", + "longitude_deg": "-94.08889770507812", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Lester Prairie", + "scheduled_service": "no", + "gps_code": "MN99", + "local_code": "MN99" + }, + { + "id": "42161", + "ident": "MNAL", + "type": "small_airport", + "name": "Alamicamba Airport", + "latitude_deg": "13.512299537658691", + "longitude_deg": "-84.24710083007812", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-AN", + "municipality": "Alamicamba", + "scheduled_service": "no", + "gps_code": "MNAL" + }, + { + "id": "42169", + "ident": "MNAM", + "type": "small_airport", + "name": "Altamira Airport", + "latitude_deg": "12.135983", + "longitude_deg": "-85.716461", + "elevation_ft": "121", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-BO", + "municipality": "Altamira", + "scheduled_service": "no", + "gps_code": "MNAM" + }, + { + "id": "42170", + "ident": "MNBC", + "type": "small_airport", + "name": "Boaco Airport", + "latitude_deg": "12.469099998474121", + "longitude_deg": "-85.66259765625", + "elevation_ft": "1184", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-BO", + "municipality": "Boaco", + "scheduled_service": "no", + "gps_code": "MNBC" + }, + { + "id": "4770", + "ident": "MNBL", + "type": "medium_airport", + "name": "Bluefields Airport", + "latitude_deg": "11.991", + "longitude_deg": "-83.774101", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-AS", + "municipality": "Bluefileds", + "scheduled_service": "yes", + "gps_code": "MNBL", + "iata_code": "BEF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bluefields_Airport" + }, + { + "id": "4771", + "ident": "MNBR", + "type": "small_airport", + "name": "Los Brasiles Airport", + "latitude_deg": "12.1899995803833", + "longitude_deg": "-86.35389709472656", + "elevation_ft": "262", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-MN", + "municipality": "Los Brasiles", + "scheduled_service": "no", + "gps_code": "MNBR" + }, + { + "id": "30809", + "ident": "MNBZ", + "type": "small_airport", + "name": "San Pedro Airport", + "latitude_deg": "14.031524", + "longitude_deg": "-84.624311", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-AN", + "municipality": "Bonanza", + "scheduled_service": "no", + "gps_code": "MNBZ", + "iata_code": "BZA" + }, + { + "id": "316239", + "ident": "MNCE", + "type": "small_airport", + "name": "Costa Esmeralda Airport", + "latitude_deg": "11.427542", + "longitude_deg": "-86.033361", + "elevation_ft": "84", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-RI", + "municipality": "Tola", + "scheduled_service": "yes", + "gps_code": "MNCE", + "iata_code": "ECI", + "local_code": "ECI", + "home_link": "http://www.mukulresort.com/costa-esmeralda-airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Costa_Esmeralda_Airport" + }, + { + "id": "42171", + "ident": "MNCH", + "type": "small_airport", + "name": "Chinandega Germán Pomares Ordóñez Airport", + "latitude_deg": "12.639548", + "longitude_deg": "-87.137753", + "elevation_ft": "174", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-CI", + "municipality": "Chinandega", + "scheduled_service": "no", + "gps_code": "MNCH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chinandega_Airport" + }, + { + "id": "42164", + "ident": "MNCI", + "type": "small_airport", + "name": "Corn Island Airport", + "latitude_deg": "12.174785", + "longitude_deg": "-83.059445", + "elevation_ft": "1", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-AS", + "municipality": "Corn Island", + "scheduled_service": "no", + "gps_code": "MNCI", + "iata_code": "RNI" + }, + { + "id": "42172", + "ident": "MNCT", + "type": "small_airport", + "name": "Corinto Airport", + "latitude_deg": "12.478899955749512", + "longitude_deg": "-87.17720031738281", + "elevation_ft": "1", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-CI", + "municipality": "Chinandega", + "scheduled_service": "no", + "gps_code": "MNCT" + }, + { + "id": "42178", + "ident": "MNDM", + "type": "small_airport", + "name": "Dos Montes Airport", + "latitude_deg": "12.80049991607666", + "longitude_deg": "-86.14830017089844", + "elevation_ft": "1469", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-MT", + "municipality": "Dos Montes", + "scheduled_service": "no", + "gps_code": "MNDM" + }, + { + "id": "42167", + "ident": "MNEP", + "type": "closed", + "name": "La Esperanza Airport", + "latitude_deg": "12.199532", + "longitude_deg": "-84.276385", + "elevation_ft": "88", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-AS", + "municipality": "La Esperanza", + "scheduled_service": "no", + "keywords": "MNEP" + }, + { + "id": "42175", + "ident": "MNES", + "type": "small_airport", + "name": "Estelí Airport", + "latitude_deg": "13.111700057983398", + "longitude_deg": "-86.36329650878906", + "elevation_ft": "2811", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-ES", + "municipality": "Estelí", + "scheduled_service": "no", + "gps_code": "MNES" + }, + { + "id": "4772", + "ident": "MNFC", + "type": "small_airport", + "name": "Punta Huete (Panchito) Airport", + "latitude_deg": "12.353400230407715", + "longitude_deg": "-86.18289947509766", + "elevation_ft": "217", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-MN", + "municipality": "Punta Huete", + "scheduled_service": "no", + "gps_code": "MNFC", + "local_code": "MN1A" + }, + { + "id": "42165", + "ident": "MNFF", + "type": "small_airport", + "name": "El Bluff Airport", + "latitude_deg": "11.989854", + "longitude_deg": "-83.691745", + "elevation_ft": "1", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-AS", + "municipality": "El Bluff", + "scheduled_service": "no", + "gps_code": "MNFF" + }, + { + "id": "42173", + "ident": "MNHG", + "type": "small_airport", + "name": "Hato Grande Airport", + "latitude_deg": "11.981199", + "longitude_deg": "-85.43357", + "elevation_ft": "177", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-CO", + "municipality": "Hato Grande", + "scheduled_service": "no", + "gps_code": "MNHG" + }, + { + "id": "42176", + "ident": "MNJG", + "type": "small_airport", + "name": "Jinotega", + "latitude_deg": "13.085700035095215", + "longitude_deg": "-85.98770141601562", + "elevation_ft": "3232", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-JI", + "municipality": "Jinotega", + "scheduled_service": "no", + "gps_code": "MNJG" + }, + { + "id": "42174", + "ident": "MNJU", + "type": "closed", + "name": "Juigalpa Airport", + "latitude_deg": "12.1", + "longitude_deg": "-85.366669", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-CO", + "municipality": "Juigalpa", + "scheduled_service": "no", + "gps_code": "MNJU" + }, + { + "id": "42166", + "ident": "MNKW", + "type": "small_airport", + "name": "Karawala Airport", + "latitude_deg": "12.89210033416748", + "longitude_deg": "-83.58290100097656", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-AS", + "municipality": "Karawala", + "scheduled_service": "no", + "gps_code": "MNKW" + }, + { + "id": "4773", + "ident": "MNLN", + "type": "small_airport", + "name": "Leon (Fanor Urroz) Airport", + "latitude_deg": "12.429200172424316", + "longitude_deg": "-86.90280151367188", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-LE", + "municipality": "León", + "scheduled_service": "no", + "gps_code": "MNLN" + }, + { + "id": "318055", + "ident": "MNLP", + "type": "small_airport", + "name": "Omtepe Airport", + "latitude_deg": "11.523616", + "longitude_deg": "-85.702995", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-RI", + "municipality": "Omtepe Island", + "scheduled_service": "yes", + "gps_code": "MNLP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ometepe_Airport", + "keywords": "La Paloma, Moyogalpa" + }, + { + "id": "42162", + "ident": "MNMA", + "type": "closed", + "name": "Macantaca Airport", + "latitude_deg": "13.322019", + "longitude_deg": "-84.154601", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-AS", + "municipality": "Macantaca", + "scheduled_service": "no", + "keywords": "MNMA, Makantaca, Makantaka, Zelaya" + }, + { + "id": "4774", + "ident": "MNMG", + "type": "medium_airport", + "name": "Augusto C. Sandino (Managua) International Airport", + "latitude_deg": "12.141500473022461", + "longitude_deg": "-86.16819763183594", + "elevation_ft": "194", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-MN", + "municipality": "Managua", + "scheduled_service": "yes", + "gps_code": "MNMG", + "iata_code": "MGA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Augusto_C._Sandino_International_Airport" + }, + { + "id": "4775", + "ident": "MNMR", + "type": "small_airport", + "name": "Montelimar Airport", + "latitude_deg": "11.80519962310791", + "longitude_deg": "-86.51129913330078", + "elevation_ft": "94", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-MN", + "municipality": "Montelimar", + "scheduled_service": "no", + "gps_code": "MNMR", + "local_code": "MN1B" + }, + { + "id": "343860", + "ident": "MNMT", + "type": "small_airport", + "name": "La Cumplida Airport", + "latitude_deg": "12.996027", + "longitude_deg": "-85.852146", + "elevation_ft": "2420", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-MT", + "municipality": "La Cumplida", + "scheduled_service": "no", + "gps_code": "MNMT", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Cumplida_Airport", + "keywords": "Santa Emilia" + }, + { + "id": "42168", + "ident": "MNNG", + "type": "closed", + "name": "Nueva Guinea Airport", + "latitude_deg": "11.686994", + "longitude_deg": "-84.457011", + "elevation_ft": "606", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-AS", + "municipality": "Nueva Guinea", + "scheduled_service": "no", + "gps_code": "MNNG", + "iata_code": "NVG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nueva_Guinea_Airport" + }, + { + "id": "313383", + "ident": "MNP", + "type": "closed", + "name": "Maron Island Airport", + "latitude_deg": "-1.5504", + "longitude_deg": "145.0168", + "elevation_ft": "4", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MRL", + "municipality": "Hermit Islands", + "scheduled_service": "no", + "iata_code": "MNP" + }, + { + "id": "4776", + "ident": "MNPC", + "type": "medium_airport", + "name": "Puerto Cabezas Airport", + "latitude_deg": "14.047200202941895", + "longitude_deg": "-83.38670349121094", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-AN", + "municipality": "Puerto Cabezas", + "scheduled_service": "yes", + "gps_code": "MNPC", + "iata_code": "PUZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Puerto_Cabezas_Airport" + }, + { + "id": "42177", + "ident": "MNPP", + "type": "small_airport", + "name": "El Papalonal Airport", + "latitude_deg": "12.465700149536133", + "longitude_deg": "-86.46790313720703", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-LE", + "municipality": "El Papalonal", + "scheduled_service": "no", + "gps_code": "MNPP" + }, + { + "id": "42179", + "ident": "MNRS", + "type": "small_airport", + "name": "Rivas", + "latitude_deg": "11.42770004272461", + "longitude_deg": "-85.8385009765625", + "elevation_ft": "174", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-RI", + "municipality": "Rivas", + "scheduled_service": "no", + "gps_code": "MNRS" + }, + { + "id": "31930", + "ident": "MNRT", + "type": "small_airport", + "name": "Rosita Airport", + "latitude_deg": "13.889699935913086", + "longitude_deg": "-84.40889739990234", + "elevation_ft": "193", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-AN", + "municipality": "La Rosita", + "scheduled_service": "no", + "gps_code": "MNRT", + "iata_code": "RFS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rosita_Airport" + }, + { + "id": "42180", + "ident": "MNSC", + "type": "small_airport", + "name": "San Carlos", + "latitude_deg": "11.133399963378906", + "longitude_deg": "-84.7699966430664", + "elevation_ft": "91", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-SJ", + "municipality": "San Carlos", + "scheduled_service": "no", + "gps_code": "MNSC", + "iata_code": "NCR" + }, + { + "id": "42163", + "ident": "MNSI", + "type": "small_airport", + "name": "Siuna", + "latitude_deg": "13.727222442626953", + "longitude_deg": "-84.77777862548828", + "elevation_ft": "606", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-AN", + "municipality": "Siuna", + "scheduled_service": "no", + "gps_code": "MNSI", + "iata_code": "SIU" + }, + { + "id": "32676", + "ident": "MNWP", + "type": "small_airport", + "name": "Waspam Airport", + "latitude_deg": "14.7391996383667", + "longitude_deg": "-83.96939849853516", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-AN", + "municipality": "Waspam", + "scheduled_service": "no", + "gps_code": "MNWP", + "iata_code": "WSP" + }, + { + "id": "336601", + "ident": "MO-0001", + "type": "heliport", + "name": "Conde S. Januário Hospital Helipad", + "latitude_deg": "22.194657", + "longitude_deg": "113.546807", + "continent": "AS", + "iso_country": "MO", + "iso_region": "MO-U-A", + "municipality": "Sé", + "scheduled_service": "no" + }, + { + "id": "340575", + "ident": "MO-0002", + "type": "heliport", + "name": "Macau Heliport at Taipa Ferry Terminal", + "latitude_deg": "22.166616", + "longitude_deg": "113.577416", + "continent": "AS", + "iso_country": "MO", + "iso_region": "MO-U-A", + "municipality": "Freguesia de Nossa Senhora do Carmo (Taipa)", + "scheduled_service": "no" + }, + { + "id": "22204", + "ident": "MO00", + "type": "small_airport", + "name": "Turkey Mountain Airport", + "latitude_deg": "36.591696", + "longitude_deg": "-93.663887", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Shell Knob", + "scheduled_service": "no", + "gps_code": "MO00", + "local_code": "MO00", + "keywords": "Turkey Mountain Estates" + }, + { + "id": "22205", + "ident": "MO01", + "type": "small_airport", + "name": "Cuinche Airport", + "latitude_deg": "37.25", + "longitude_deg": "-93.10600280761719", + "elevation_ft": "1475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Strafford", + "scheduled_service": "no", + "gps_code": "MO01", + "local_code": "MO01" + }, + { + "id": "22206", + "ident": "MO02", + "type": "small_airport", + "name": "Morgan Airport", + "latitude_deg": "37.91669845581055", + "longitude_deg": "-91.68350219726562", + "elevation_ft": "1018", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Rolla", + "scheduled_service": "no", + "gps_code": "MO02", + "local_code": "MO02" + }, + { + "id": "22207", + "ident": "MO03", + "type": "small_airport", + "name": "Moders Airport", + "latitude_deg": "38.424198150634766", + "longitude_deg": "-90.58290100097656", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "House Springs", + "scheduled_service": "no", + "gps_code": "MO03", + "local_code": "MO03" + }, + { + "id": "22208", + "ident": "MO04", + "type": "closed", + "name": "Lyell Airport", + "latitude_deg": "39.708056", + "longitude_deg": "-91.854387", + "elevation_ft": "769", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hunnewell", + "scheduled_service": "no", + "keywords": "MO04" + }, + { + "id": "22209", + "ident": "MO05", + "type": "heliport", + "name": "Truman Medical Center West Heliport", + "latitude_deg": "39.08420181274414", + "longitude_deg": "-94.57420349121094", + "elevation_ft": "983", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kansas City", + "scheduled_service": "no", + "gps_code": "MO05", + "local_code": "MO05" + }, + { + "id": "22210", + "ident": "MO06", + "type": "closed", + "name": "Barton County Memorial Hospital Heliport", + "latitude_deg": "37.506705", + "longitude_deg": "-94.275624", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lamar", + "scheduled_service": "no", + "keywords": "MO06" + }, + { + "id": "22211", + "ident": "MO07", + "type": "small_airport", + "name": "Adventures Aloft Airport", + "latitude_deg": "38.872501373291016", + "longitude_deg": "-91.30020141601562", + "elevation_ft": "871", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Jonesburg", + "scheduled_service": "no", + "gps_code": "MO07", + "local_code": "MO07" + }, + { + "id": "22212", + "ident": "MO08", + "type": "small_airport", + "name": "Homan Field", + "latitude_deg": "38.66279983520508", + "longitude_deg": "-93.33270263671875", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Sedalia", + "scheduled_service": "no", + "gps_code": "MO08", + "local_code": "MO08" + }, + { + "id": "22213", + "ident": "MO09", + "type": "small_airport", + "name": "Sharpe Farms Airport", + "latitude_deg": "40.022784", + "longitude_deg": "-91.870962", + "elevation_ft": "702", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lewistown", + "scheduled_service": "no", + "gps_code": "MO09", + "local_code": "MO09" + }, + { + "id": "22214", + "ident": "MO10", + "type": "small_airport", + "name": "Hawk Air Airport", + "latitude_deg": "39.20429992675781", + "longitude_deg": "-92.26239776611328", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Sturgeon", + "scheduled_service": "no", + "gps_code": "MO10", + "local_code": "MO10" + }, + { + "id": "22215", + "ident": "MO11", + "type": "small_airport", + "name": "Barron Aviation Airport", + "latitude_deg": "39.400327", + "longitude_deg": "-91.580832", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Perry", + "scheduled_service": "no", + "gps_code": "MO11", + "local_code": "MO11" + }, + { + "id": "22216", + "ident": "MO12", + "type": "heliport", + "name": "Saint Lukes Hospital West Heliport", + "latitude_deg": "38.650277", + "longitude_deg": "-90.503192", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Chesterfield", + "scheduled_service": "no", + "gps_code": "MO12", + "local_code": "MO12" + }, + { + "id": "22217", + "ident": "MO13", + "type": "closed", + "name": "Blue Hollow Airpark", + "latitude_deg": "37.7976", + "longitude_deg": "-92.829201", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Eldridge", + "scheduled_service": "no", + "keywords": "MO13" + }, + { + "id": "22218", + "ident": "MO14", + "type": "small_airport", + "name": "Marshall Field", + "latitude_deg": "37.422778", + "longitude_deg": "-93.208611", + "elevation_ft": "1166", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Fair Grove", + "scheduled_service": "no", + "gps_code": "MO14", + "local_code": "MO14" + }, + { + "id": "22219", + "ident": "MO15", + "type": "closed", + "name": "Beckner Field", + "latitude_deg": "37.387501", + "longitude_deg": "-92.957397", + "elevation_ft": "1285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Marshfield", + "scheduled_service": "no", + "keywords": "MO15" + }, + { + "id": "22220", + "ident": "MO16", + "type": "small_airport", + "name": "Baugh Flight Park Ultralightport", + "latitude_deg": "37.16389846801758", + "longitude_deg": "-94.16829681396484", + "elevation_ft": "984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Avilla", + "scheduled_service": "no", + "gps_code": "MO16", + "local_code": "MO16" + }, + { + "id": "22221", + "ident": "MO17", + "type": "small_airport", + "name": "Garst Airport", + "latitude_deg": "40.47919845581055", + "longitude_deg": "-95.64610290527344", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Watson", + "scheduled_service": "no", + "gps_code": "MO17", + "local_code": "MO17" + }, + { + "id": "22222", + "ident": "MO18", + "type": "closed", + "name": "Clevenger Airport", + "latitude_deg": "38.947201", + "longitude_deg": "-94.2491", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Blue Springs", + "scheduled_service": "no", + "keywords": "MO18" + }, + { + "id": "22223", + "ident": "MO19", + "type": "heliport", + "name": "American Legion-Village of Centertown Heliport", + "latitude_deg": "38.61309814453125", + "longitude_deg": "-92.41210174560547", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Centertown", + "scheduled_service": "no", + "gps_code": "MO19", + "local_code": "MO19" + }, + { + "id": "22224", + "ident": "MO2", + "type": "small_airport", + "name": "Flying Bar H Ranch Airport", + "latitude_deg": "37.175201", + "longitude_deg": "-93.128899", + "elevation_ft": "1375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Rogersville", + "scheduled_service": "no", + "gps_code": "KMO2", + "local_code": "MO2" + }, + { + "id": "22225", + "ident": "MO20", + "type": "heliport", + "name": "Nevada Regional Medical Center Heliport", + "latitude_deg": "37.831887", + "longitude_deg": "-94.360564", + "elevation_ft": "856", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Nevada", + "scheduled_service": "no", + "gps_code": "MO20", + "local_code": "MO20" + }, + { + "id": "22226", + "ident": "MO21", + "type": "heliport", + "name": "St Joseph Health Center Heliport", + "latitude_deg": "38.936100006103516", + "longitude_deg": "-94.60440063476562", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kansas City", + "scheduled_service": "no", + "gps_code": "MO21", + "local_code": "MO21" + }, + { + "id": "22227", + "ident": "MO22", + "type": "small_airport", + "name": "Jta Asbell Field", + "latitude_deg": "37.19169998168945", + "longitude_deg": "-94.54969787597656", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Carl Junction", + "scheduled_service": "no", + "gps_code": "MO22", + "local_code": "MO22" + }, + { + "id": "22228", + "ident": "MO23", + "type": "small_airport", + "name": "Phillips Field", + "latitude_deg": "38.640581", + "longitude_deg": "-92.529229", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "California", + "scheduled_service": "no", + "gps_code": "MO23", + "local_code": "MO23" + }, + { + "id": "22229", + "ident": "MO24", + "type": "small_airport", + "name": "Lonesome Sky Airport", + "latitude_deg": "40.142799377441406", + "longitude_deg": "-95.38829803466797", + "elevation_ft": "868", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Craig", + "scheduled_service": "no", + "gps_code": "MO24", + "local_code": "MO24" + }, + { + "id": "22230", + "ident": "MO25", + "type": "closed", + "name": "Show Me The Sky Airport", + "latitude_deg": "40.137503", + "longitude_deg": "-94.925598", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Barnard", + "scheduled_service": "no", + "keywords": "MO25" + }, + { + "id": "22231", + "ident": "MO26", + "type": "small_airport", + "name": "Peterson Farm Airport", + "latitude_deg": "39.39390182495117", + "longitude_deg": "-94.35299682617188", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kearney", + "scheduled_service": "no", + "gps_code": "MO26", + "local_code": "MO26" + }, + { + "id": "22232", + "ident": "MO27", + "type": "small_airport", + "name": "Ccc Airport", + "latitude_deg": "39.73529815673828", + "longitude_deg": "-94.19270324707031", + "elevation_ft": "984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Cameron", + "scheduled_service": "no", + "gps_code": "MO27", + "local_code": "MO27" + }, + { + "id": "22233", + "ident": "MO28", + "type": "heliport", + "name": "Blue Springs Heliport", + "latitude_deg": "39.027000427246094", + "longitude_deg": "-94.26360321044922", + "elevation_ft": "287", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Blue Springs", + "scheduled_service": "no", + "gps_code": "MO28", + "local_code": "MO28" + }, + { + "id": "22234", + "ident": "MO29", + "type": "small_airport", + "name": "Inter-State Airport", + "latitude_deg": "38.77220153808594", + "longitude_deg": "-94.33489990234375", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Pleasant Hill", + "scheduled_service": "no", + "gps_code": "MO29", + "local_code": "MO29" + }, + { + "id": "22235", + "ident": "MO30", + "type": "small_airport", + "name": "Harbour Airport", + "latitude_deg": "38.269901", + "longitude_deg": "-92.8115", + "elevation_ft": "823", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Gravois Mills", + "scheduled_service": "no", + "gps_code": "MO30", + "local_code": "MO30", + "keywords": "7L7" + }, + { + "id": "22236", + "ident": "MO31", + "type": "small_airport", + "name": "Malina Airport", + "latitude_deg": "37.04949951171875", + "longitude_deg": "-93.07240295410156", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Rogersville", + "scheduled_service": "no", + "gps_code": "MO31", + "local_code": "MO31" + }, + { + "id": "22237", + "ident": "MO32", + "type": "small_airport", + "name": "Table Rock Airport", + "latitude_deg": "36.52870178222656", + "longitude_deg": "-93.6769027709961", + "elevation_ft": "1053", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Golden", + "scheduled_service": "no", + "gps_code": "MO32", + "local_code": "MO32" + }, + { + "id": "22238", + "ident": "MO33", + "type": "small_airport", + "name": "Barlet's Base Airport", + "latitude_deg": "37.12919998168945", + "longitude_deg": "-94.25379943847656", + "elevation_ft": "1068", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Carthage", + "scheduled_service": "no", + "gps_code": "MO33", + "local_code": "MO33" + }, + { + "id": "22239", + "ident": "MO34", + "type": "small_airport", + "name": "Ellingsen Field", + "latitude_deg": "37.35969924926758", + "longitude_deg": "-93.6624984741211", + "elevation_ft": "1115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Everton", + "scheduled_service": "no", + "gps_code": "MO34", + "local_code": "MO34" + }, + { + "id": "22240", + "ident": "MO35", + "type": "small_airport", + "name": "Harvey Airport", + "latitude_deg": "39.212799072265625", + "longitude_deg": "-90.91739654541016", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Eolia", + "scheduled_service": "no", + "gps_code": "MO35", + "local_code": "MO35" + }, + { + "id": "22241", + "ident": "MO36", + "type": "small_airport", + "name": "Riddle's Roost Airport", + "latitude_deg": "38.832000732421875", + "longitude_deg": "-90.92510223388672", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Foristell", + "scheduled_service": "no", + "gps_code": "MO36", + "local_code": "MO36" + }, + { + "id": "22242", + "ident": "MO37", + "type": "small_airport", + "name": "Ridgeview Ranch Airport", + "latitude_deg": "38.721346", + "longitude_deg": "-94.381056", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Harrisonville", + "scheduled_service": "no", + "gps_code": "MO37", + "local_code": "MO37" + }, + { + "id": "22243", + "ident": "MO38", + "type": "heliport", + "name": "Table Rock Heliport", + "latitude_deg": "36.6383", + "longitude_deg": "-93.2824", + "elevation_ft": "1047", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Branson", + "scheduled_service": "no", + "gps_code": "MO38", + "local_code": "MO38" + }, + { + "id": "22244", + "ident": "MO39", + "type": "small_airport", + "name": "Baldwin Airport", + "latitude_deg": "39.110958", + "longitude_deg": "-91.040446", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Silex", + "scheduled_service": "no", + "gps_code": "MO39", + "local_code": "MO39" + }, + { + "id": "22245", + "ident": "MO40", + "type": "heliport", + "name": "Salem Memorial Hospital Heliport", + "latitude_deg": "37.659898", + "longitude_deg": "-91.570607", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "MO40", + "local_code": "MO40", + "keywords": "Air Evac 18 Heliport" + }, + { + "id": "22246", + "ident": "MO41", + "type": "heliport", + "name": "Air Evac 23 Heliport", + "latitude_deg": "38.982108", + "longitude_deg": "-90.963165", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "MO41", + "local_code": "MO41", + "keywords": "Landing Pad Heliport" + }, + { + "id": "22247", + "ident": "MO42", + "type": "closed", + "name": "Wileys Air Strip", + "latitude_deg": "40.376403", + "longitude_deg": "-92.072403", + "elevation_ft": "662", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Gorin", + "scheduled_service": "no", + "keywords": "MO42" + }, + { + "id": "22248", + "ident": "MO43", + "type": "small_airport", + "name": "Wilkins Airport", + "latitude_deg": "38.96849822998047", + "longitude_deg": "-91.44349670410156", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Montgomery City", + "scheduled_service": "no", + "gps_code": "MO43", + "local_code": "MO43" + }, + { + "id": "22249", + "ident": "MO44", + "type": "heliport", + "name": "St Joseph Health Center Heliport", + "latitude_deg": "38.780809", + "longitude_deg": "-90.485443", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Saint Charles", + "scheduled_service": "no", + "gps_code": "MO44", + "local_code": "MO44" + }, + { + "id": "22250", + "ident": "MO45", + "type": "small_airport", + "name": "Sky-Vu Airport", + "latitude_deg": "38.8922004699707", + "longitude_deg": "-91.56600189208984", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Montgomery City", + "scheduled_service": "no", + "gps_code": "MO45", + "local_code": "MO45" + }, + { + "id": "22251", + "ident": "MO46", + "type": "small_airport", + "name": "Walker Airport", + "latitude_deg": "39.520302", + "longitude_deg": "-91.171799", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Louisiana", + "scheduled_service": "no", + "gps_code": "MO46", + "local_code": "MO46" + }, + { + "id": "22252", + "ident": "MO47", + "type": "heliport", + "name": "Air Ambulance Heliport", + "latitude_deg": "39.17276", + "longitude_deg": "-91.878973", + "elevation_ft": "764", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Mexico", + "scheduled_service": "no", + "gps_code": "MO47", + "local_code": "MO47" + }, + { + "id": "22253", + "ident": "MO48", + "type": "heliport", + "name": "Mosaic Life Care Heliport", + "latitude_deg": "39.771771", + "longitude_deg": "-94.772373", + "elevation_ft": "923", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St. Joseph", + "scheduled_service": "no", + "gps_code": "MU43", + "local_code": "MU43", + "keywords": "MO48, Heartland Hospital East" + }, + { + "id": "22254", + "ident": "MO49", + "type": "small_airport", + "name": "Five Mile Airport", + "latitude_deg": "36.96924", + "longitude_deg": "-94.577289", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Joplin", + "scheduled_service": "no", + "gps_code": "MO49", + "local_code": "MO49" + }, + { + "id": "22255", + "ident": "MO5", + "type": "small_airport", + "name": "Bollinger-Crass Memorial Airport", + "latitude_deg": "37.00699996948242", + "longitude_deg": "-91.0071029663086", + "elevation_ft": "647", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Van Buren", + "scheduled_service": "no", + "gps_code": "MO5", + "local_code": "MO5" + }, + { + "id": "22256", + "ident": "MO50", + "type": "heliport", + "name": "Saint Francis Medical Center Heliport", + "latitude_deg": "37.303445", + "longitude_deg": "-89.569853", + "elevation_ft": "455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Cape Girardeau", + "scheduled_service": "no", + "gps_code": "MO50", + "local_code": "MO50" + }, + { + "id": "22257", + "ident": "MO51", + "type": "small_airport", + "name": "Schaback Strip", + "latitude_deg": "39.42359924316406", + "longitude_deg": "-94.84770202636719", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Weston", + "scheduled_service": "no", + "gps_code": "MO51", + "local_code": "MO51" + }, + { + "id": "22258", + "ident": "MO52", + "type": "closed", + "name": "Skyriders Airport", + "latitude_deg": "37.873857", + "longitude_deg": "-93.386279", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Wheatland", + "scheduled_service": "no", + "keywords": "MO52" + }, + { + "id": "22259", + "ident": "MO53", + "type": "small_airport", + "name": "Meadows Airport", + "latitude_deg": "40.233299255371094", + "longitude_deg": "-93.93360137939453", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Bethany", + "scheduled_service": "no", + "gps_code": "MO53", + "local_code": "MO53" + }, + { + "id": "22260", + "ident": "MO54", + "type": "small_airport", + "name": "Dudley Airport", + "latitude_deg": "36.783451", + "longitude_deg": "-90.088859", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Dudley", + "scheduled_service": "no", + "gps_code": "MO54", + "local_code": "MO54" + }, + { + "id": "22261", + "ident": "MO55", + "type": "heliport", + "name": "St Louis University Hospital Heliport", + "latitude_deg": "38.622886", + "longitude_deg": "-90.239229", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no", + "gps_code": "MO55", + "local_code": "MO55" + }, + { + "id": "22262", + "ident": "MO56", + "type": "small_airport", + "name": "Lost Mine Airport", + "latitude_deg": "36.514198303222656", + "longitude_deg": "-92.64019775390625", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Theodosia", + "scheduled_service": "no", + "gps_code": "MO56", + "local_code": "MO56" + }, + { + "id": "22263", + "ident": "MO57", + "type": "small_airport", + "name": "Henderson Mounds E B G Airport", + "latitude_deg": "36.707000732421875", + "longitude_deg": "-89.4666976928711", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "East Prairie", + "scheduled_service": "no", + "gps_code": "MO57", + "local_code": "MO57" + }, + { + "id": "22264", + "ident": "MO58", + "type": "small_airport", + "name": "Waldemer Flying W Ranch Airport", + "latitude_deg": "36.65840148925781", + "longitude_deg": "-90.6404037475586", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Fairdealing", + "scheduled_service": "no", + "gps_code": "MO58", + "local_code": "MO58" + }, + { + "id": "22265", + "ident": "MO59", + "type": "small_airport", + "name": "K & N Field", + "latitude_deg": "38.91450119018555", + "longitude_deg": "-90.90010070800781", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Moscow Mills", + "scheduled_service": "no", + "gps_code": "MO59", + "local_code": "MO59" + }, + { + "id": "325753", + "ident": "MO60", + "type": "heliport", + "name": "SSM Health St. Clare Hospital-Fenton Heliport", + "latitude_deg": "38.529444", + "longitude_deg": "-90.476666", + "elevation_ft": "559", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St. Louis", + "scheduled_service": "no", + "gps_code": "MO60", + "local_code": "MO60" + }, + { + "id": "22266", + "ident": "MO61", + "type": "small_airport", + "name": "Bel-Voir Acres Airport", + "latitude_deg": "36.561814", + "longitude_deg": "-93.639264", + "elevation_ft": "1139", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Golden", + "scheduled_service": "no", + "gps_code": "MO04", + "local_code": "MO04", + "keywords": "MO61" + }, + { + "id": "22267", + "ident": "MO62", + "type": "small_airport", + "name": "Hibbs Farm Airport", + "latitude_deg": "40.51029968261719", + "longitude_deg": "-94.58159637451172", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Sheridan", + "scheduled_service": "no", + "gps_code": "MO62", + "local_code": "MO62" + }, + { + "id": "22268", + "ident": "MO63", + "type": "heliport", + "name": "Spelman/St. Luke's Hospital Heliport", + "latitude_deg": "39.252201080322266", + "longitude_deg": "-94.64610290527344", + "elevation_ft": "1061", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kansas City", + "scheduled_service": "no", + "gps_code": "MO63", + "local_code": "MO63" + }, + { + "id": "22269", + "ident": "MO64", + "type": "small_airport", + "name": "Kimberling Airport", + "latitude_deg": "36.609798431396484", + "longitude_deg": "-93.4446029663086", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kimberling City", + "scheduled_service": "no", + "gps_code": "MO64", + "local_code": "MO64" + }, + { + "id": "22270", + "ident": "MO65", + "type": "small_airport", + "name": "Misty Meadows Airport", + "latitude_deg": "36.58340072631836", + "longitude_deg": "-93.10299682617188", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kirbyville", + "scheduled_service": "no", + "gps_code": "MO65", + "local_code": "MO65" + }, + { + "id": "45503", + "ident": "MO66", + "type": "small_airport", + "name": "Linden Air Airport", + "latitude_deg": "37.059167", + "longitude_deg": "-93.145556", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Ozark", + "scheduled_service": "no", + "gps_code": "MO66", + "local_code": "MO66" + }, + { + "id": "22271", + "ident": "MO67", + "type": "small_airport", + "name": "Hayes Field", + "latitude_deg": "36.71120071411133", + "longitude_deg": "-90.31400299072266", + "elevation_ft": "323", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Poplar Bluff", + "scheduled_service": "no", + "gps_code": "MO67", + "local_code": "MO67" + }, + { + "id": "22272", + "ident": "MO68", + "type": "small_airport", + "name": "Eads Ridge Airport", + "latitude_deg": "37.40530014038086", + "longitude_deg": "-93.09960174560547", + "elevation_ft": "1310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Fair Grove", + "scheduled_service": "no", + "gps_code": "MO68", + "local_code": "MO68" + }, + { + "id": "22273", + "ident": "MO69", + "type": "heliport", + "name": "Baptist Medical Center Heliport", + "latitude_deg": "39.006099700927734", + "longitude_deg": "-94.57720184326172", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kansas City", + "scheduled_service": "no", + "gps_code": "MO69", + "local_code": "MO69" + }, + { + "id": "22274", + "ident": "MO7", + "type": "heliport", + "name": "St Louis Downtown Heliport", + "latitude_deg": "38.625142", + "longitude_deg": "-90.182912", + "elevation_ft": "387", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no", + "gps_code": "KMO7", + "local_code": "MO7" + }, + { + "id": "22275", + "ident": "MO70", + "type": "heliport", + "name": "St Francis Hospital Heliport", + "latitude_deg": "40.32809829711914", + "longitude_deg": "-90.8761978149414", + "elevation_ft": "1115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Maryville", + "scheduled_service": "no", + "gps_code": "MO70", + "local_code": "MO70" + }, + { + "id": "22276", + "ident": "MO71", + "type": "small_airport", + "name": "Block Air Village Airport", + "latitude_deg": "39.46310043334961", + "longitude_deg": "-94.41829681396484", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Holt", + "scheduled_service": "no", + "gps_code": "MO71", + "local_code": "MO71" + }, + { + "id": "22277", + "ident": "MO72", + "type": "small_airport", + "name": "Flying 'J' Ranch Airport", + "latitude_deg": "37.04029846191406", + "longitude_deg": "-90.8667984008789", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Van Buren", + "scheduled_service": "no", + "gps_code": "MO72", + "local_code": "MO72" + }, + { + "id": "22278", + "ident": "MO73", + "type": "small_airport", + "name": "Rolling Shoals Farm Airport", + "latitude_deg": "36.989904", + "longitude_deg": "-90.563092", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Williamsville", + "scheduled_service": "no", + "gps_code": "MO73", + "local_code": "MO73" + }, + { + "id": "22279", + "ident": "MO74", + "type": "small_airport", + "name": "Cedar Creek Airport", + "latitude_deg": "38.919443", + "longitude_deg": "-92.163676", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "MO74", + "local_code": "MO74" + }, + { + "id": "22280", + "ident": "MO75", + "type": "small_airport", + "name": "Brownsberger Airport", + "latitude_deg": "38.302662", + "longitude_deg": "-94.051339", + "elevation_ft": "794", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Montrose", + "scheduled_service": "no", + "gps_code": "MO75", + "local_code": "MO75" + }, + { + "id": "22281", + "ident": "MO76", + "type": "heliport", + "name": "Life Line 2 Heliport", + "latitude_deg": "37.8232444", + "longitude_deg": "-92.1610167", + "elevation_ft": "1059", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Saint Robert", + "scheduled_service": "yes", + "gps_code": "MO76", + "local_code": "MO76" + }, + { + "id": "22282", + "ident": "MO77", + "type": "small_airport", + "name": "Arnika Ranch Airport", + "latitude_deg": "36.975101470947266", + "longitude_deg": "-92.5427017211914", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Ava", + "scheduled_service": "no", + "gps_code": "MO77", + "local_code": "MO77" + }, + { + "id": "22283", + "ident": "MO78", + "type": "small_airport", + "name": "Stickle Cattle Farms Airport", + "latitude_deg": "38.315785", + "longitude_deg": "-91.780708", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Belle", + "scheduled_service": "no", + "gps_code": "MO78", + "local_code": "MO78" + }, + { + "id": "22284", + "ident": "MO79", + "type": "small_airport", + "name": "Sky Ranch II Airport", + "latitude_deg": "37.679285", + "longitude_deg": "-90.714624", + "elevation_ft": "1049", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Belleview", + "scheduled_service": "no", + "gps_code": "5MU9", + "local_code": "5MU9", + "keywords": "MO79, Ironton" + }, + { + "id": "22285", + "ident": "MO80", + "type": "small_airport", + "name": "Oak Ridge Airpark", + "latitude_deg": "37.160598", + "longitude_deg": "-92.323501", + "elevation_ft": "1482", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Mountain Grove", + "scheduled_service": "no", + "gps_code": "MO80", + "local_code": "MO80", + "keywords": "Johnston's Nest Aerodrome" + }, + { + "id": "22286", + "ident": "MO81", + "type": "small_airport", + "name": "Dove Airstrip", + "latitude_deg": "37.668401", + "longitude_deg": "-90.611829", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Bismarck", + "scheduled_service": "no", + "gps_code": "MO81", + "local_code": "MO81" + }, + { + "id": "22287", + "ident": "MO82", + "type": "small_airport", + "name": "Howard Airport", + "latitude_deg": "40.40663", + "longitude_deg": "-92.055854", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Gorin", + "scheduled_service": "no", + "gps_code": "MO82", + "local_code": "MO82" + }, + { + "id": "22288", + "ident": "MO83", + "type": "small_airport", + "name": "Widmark Airport", + "latitude_deg": "40.25310134887695", + "longitude_deg": "-92.95490264892578", + "elevation_ft": "1045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Green City", + "scheduled_service": "no", + "gps_code": "MO83", + "local_code": "MO83" + }, + { + "id": "22289", + "ident": "MO84", + "type": "small_airport", + "name": "Viburnum Airport", + "latitude_deg": "37.71670150756836", + "longitude_deg": "-91.13349914550781", + "elevation_ft": "1272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Viburnum", + "scheduled_service": "no", + "gps_code": "MO84", + "local_code": "MO84" + }, + { + "id": "22290", + "ident": "MO85", + "type": "small_airport", + "name": "Wells Airport", + "latitude_deg": "37.25170135498047", + "longitude_deg": "-92.83380126953125", + "elevation_ft": "1530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Marshfield", + "scheduled_service": "no", + "gps_code": "MO85", + "local_code": "MO85" + }, + { + "id": "22291", + "ident": "MO86", + "type": "small_airport", + "name": "Sanctuary Airport", + "latitude_deg": "38.95970153808594", + "longitude_deg": "-91.30390167236328", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Bellflower", + "scheduled_service": "no", + "gps_code": "MO86", + "local_code": "MO86" + }, + { + "id": "22292", + "ident": "MO87", + "type": "small_airport", + "name": "Powis Airport", + "latitude_deg": "38.94580078125", + "longitude_deg": "-94.16190338134766", + "elevation_ft": "879", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Oak Grove", + "scheduled_service": "no", + "gps_code": "MO87", + "local_code": "MO87" + }, + { + "id": "22293", + "ident": "MO88", + "type": "small_airport", + "name": "Feutz Airport", + "latitude_deg": "39.097093", + "longitude_deg": "-92.008762", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hatton", + "scheduled_service": "no", + "gps_code": "MO88", + "local_code": "MO88" + }, + { + "id": "22294", + "ident": "MO89", + "type": "closed", + "name": "Bar-Vik Airport", + "latitude_deg": "38.174198", + "longitude_deg": "-92.858498", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Laurie", + "scheduled_service": "no", + "keywords": "MO89" + }, + { + "id": "22295", + "ident": "MO91", + "type": "heliport", + "name": "Barnes Jewish Hospital Heliport", + "latitude_deg": "38.633399963378906", + "longitude_deg": "-90.2500991821289", + "elevation_ft": "513", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no", + "gps_code": "MO91", + "local_code": "MO91" + }, + { + "id": "22296", + "ident": "MO92", + "type": "heliport", + "name": "SSM Health Depaul Hospital-St. Louis Heliport", + "latitude_deg": "38.752169", + "longitude_deg": "-90.4324", + "elevation_ft": "543", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Bridgeton", + "scheduled_service": "no", + "gps_code": "MO92", + "local_code": "MO92", + "keywords": "Depaul Health Center Heliport" + }, + { + "id": "22297", + "ident": "MO93", + "type": "small_airport", + "name": "Keeven Air Ranch Airport", + "latitude_deg": "39.044819", + "longitude_deg": "-91.148094", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hawk Point", + "scheduled_service": "no", + "gps_code": "MO93", + "local_code": "MO93" + }, + { + "id": "22298", + "ident": "MO94", + "type": "small_airport", + "name": "Starr Airport", + "latitude_deg": "39.5", + "longitude_deg": "-94.5802001953125", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Trimble", + "scheduled_service": "no", + "gps_code": "MO94", + "local_code": "MO94" + }, + { + "id": "22299", + "ident": "MO95", + "type": "closed", + "name": "Hawkins Airport", + "latitude_deg": "39.4417", + "longitude_deg": "-93.662201", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Carrollton", + "scheduled_service": "no", + "keywords": "MO95" + }, + { + "id": "22300", + "ident": "MO96", + "type": "small_airport", + "name": "Ray Johnson Inc Airport", + "latitude_deg": "37.41619873046875", + "longitude_deg": "-90.9635009765625", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Centerville", + "scheduled_service": "no", + "gps_code": "MO96", + "local_code": "MO96" + }, + { + "id": "22301", + "ident": "MO97", + "type": "heliport", + "name": "SSM Health St. Joseph Hospital-Wentzville Heliport", + "latitude_deg": "38.822722", + "longitude_deg": "-90.881483", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Wentzville", + "scheduled_service": "no", + "gps_code": "MO97", + "local_code": "MO97", + "keywords": "Doctors Hospital-Wentzville" + }, + { + "id": "22302", + "ident": "MO98", + "type": "small_airport", + "name": "Williams Airport", + "latitude_deg": "38.71310043334961", + "longitude_deg": "-94.58499908447266", + "elevation_ft": "985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "MO98", + "local_code": "MO98" + }, + { + "id": "22303", + "ident": "MO99", + "type": "small_airport", + "name": "Miller Airport", + "latitude_deg": "38.117524", + "longitude_deg": "-93.073318", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Climax Springs", + "scheduled_service": "no", + "gps_code": "MO99", + "local_code": "MO99" + }, + { + "id": "330319", + "ident": "MOH", + "type": "small_airport", + "name": "Maleo Airport", + "latitude_deg": "-2.203333", + "longitude_deg": "121.660278", + "elevation_ft": "12", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-ST", + "municipality": "Morowali", + "scheduled_service": "yes", + "iata_code": "MOH", + "local_code": "MOH", + "home_link": "https://en.wikipedia.org/wiki/Maleo_Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maleo_Airport" + }, + { + "id": "22304", + "ident": "MOS", + "type": "small_airport", + "name": "Moses Point Airport", + "latitude_deg": "64.694116", + "longitude_deg": "-162.060699", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Elim", + "scheduled_service": "no", + "iata_code": "MOS", + "local_code": "MOS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moses_Point_Airport" + }, + { + "id": "351420", + "ident": "MP-0001", + "type": "closed", + "name": "Tinian North Field", + "latitude_deg": "15.07242", + "longitude_deg": "145.6382", + "elevation_ft": "150", + "continent": "OC", + "iso_country": "MP", + "iso_region": "MP-U-A", + "municipality": "San Jose, Tinian", + "scheduled_service": "no" + }, + { + "id": "5322", + "ident": "MP00", + "type": "closed", + "name": "Pedasí Airport", + "latitude_deg": "7.55688", + "longitude_deg": "-80.0233", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-7", + "municipality": "Pedasí", + "scheduled_service": "no", + "keywords": "PDM, Capt Justiniano Montenegro, MP00" + }, + { + "id": "5323", + "ident": "MP01", + "type": "small_airport", + "name": "Finca Ceiba Airport", + "latitude_deg": "8.354999542236328", + "longitude_deg": "-82.8364028930664", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-4", + "municipality": "Finca Jaguá", + "scheduled_service": "no", + "gps_code": "MP01", + "local_code": "MP01" + }, + { + "id": "5324", + "ident": "MP02", + "type": "small_airport", + "name": "Finca 45 Airport", + "latitude_deg": "9.543330192565918", + "longitude_deg": "-82.73380279541016", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-1", + "municipality": "Dos Caños", + "scheduled_service": "no", + "gps_code": "MP02", + "local_code": "MP02" + }, + { + "id": "5325", + "ident": "MP03", + "type": "small_airport", + "name": "La Cabezona Airport", + "latitude_deg": "8.3457", + "longitude_deg": "-82.5042", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-4", + "municipality": "Guarumal", + "scheduled_service": "no", + "gps_code": "MP03", + "local_code": "MP03" + }, + { + "id": "5326", + "ident": "MP17", + "type": "small_airport", + "name": "Finca 67 Airport", + "latitude_deg": "9.434410095214844", + "longitude_deg": "-82.49909973144531", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-1", + "municipality": "Changuinola", + "scheduled_service": "no", + "gps_code": "MP17", + "local_code": "MP17" + }, + { + "id": "5327", + "ident": "MP18", + "type": "small_airport", + "name": "Penonome Airport", + "latitude_deg": "8.503829956054688", + "longitude_deg": "-80.36029815673828", + "elevation_ft": "282", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-2", + "municipality": "Penonome", + "scheduled_service": "no", + "gps_code": "MP18", + "local_code": "MP18" + }, + { + "id": "5330", + "ident": "MP21", + "type": "small_airport", + "name": "Alvaro Berroa Airport", + "latitude_deg": "8.770389556884766", + "longitude_deg": "-82.66439819335938", + "elevation_ft": "5000", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-4", + "municipality": "Nueva California", + "scheduled_service": "no", + "gps_code": "MP21", + "local_code": "MP21" + }, + { + "id": "5331", + "ident": "MP22", + "type": "small_airport", + "name": "Ingenio Santa Rosa Airport", + "latitude_deg": "8.195219993591309", + "longitude_deg": "-80.65869903564453", + "elevation_ft": "109", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-2", + "municipality": "Ingenio Santa Rosa", + "scheduled_service": "no", + "gps_code": "MP22", + "local_code": "MP22" + }, + { + "id": "5332", + "ident": "MP23", + "type": "small_airport", + "name": "Capt. Alex H. Bosquez Airport", + "latitude_deg": "9.16628", + "longitude_deg": "-79.545205", + "elevation_ft": "394", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-8", + "municipality": "Calzada Larga", + "scheduled_service": "no", + "gps_code": "MPCL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Calzada_Larga_Airport", + "keywords": "MP23" + }, + { + "id": "5333", + "ident": "MP24", + "type": "small_airport", + "name": "Cap. Krish E. Persaud Airport", + "latitude_deg": "8.58846", + "longitude_deg": "-79.889702", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-10", + "municipality": "Chame District", + "scheduled_service": "no", + "gps_code": "MPCM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chame_Airport", + "keywords": "Chame Airfield #1, MP24" + }, + { + "id": "5334", + "ident": "MP26", + "type": "small_airport", + "name": "Punta Cocos Airport", + "latitude_deg": "8.224849700927734", + "longitude_deg": "-78.90440368652344", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-8", + "municipality": "Punta Cocos", + "scheduled_service": "no", + "gps_code": "MP26", + "local_code": "MP26" + }, + { + "id": "5335", + "ident": "MP27", + "type": "small_airport", + "name": "Deborah Airport", + "latitude_deg": "9.51614", + "longitude_deg": "-82.595497", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-1", + "municipality": "Guabito", + "scheduled_service": "no", + "gps_code": "MP27", + "local_code": "MP27", + "keywords": "Guabito California" + }, + { + "id": "4786", + "ident": "MPBO", + "type": "medium_airport", + "name": "Bocas del Toro International Airport", + "latitude_deg": "9.34085", + "longitude_deg": "-82.250801", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-1", + "municipality": "Isla Colón", + "scheduled_service": "yes", + "gps_code": "MPBO", + "iata_code": "BOC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bocas_del_Toro_%22Isla_Colón%22_International_Airport", + "keywords": "Jose Ezequiel Hall" + }, + { + "id": "4787", + "ident": "MPCE", + "type": "medium_airport", + "name": "Alonso Valderrama Airport", + "latitude_deg": "7.98784", + "longitude_deg": "-80.409837", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-6", + "municipality": "Chitré", + "scheduled_service": "yes", + "gps_code": "MPCE", + "iata_code": "CTD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chitré_Alonso_Valderrama_Airport" + }, + { + "id": "4788", + "ident": "MPCH", + "type": "medium_airport", + "name": "Changuinola Captain Manuel Niño International Airport", + "latitude_deg": "9.458962", + "longitude_deg": "-82.515062", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-1", + "municipality": "Changuinola", + "scheduled_service": "yes", + "gps_code": "MPCH", + "iata_code": "CHX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Changuinola_%22Capit%C3%A1n_Manuel_Ni%C3%B1o%22_International_Airport" + }, + { + "id": "4789", + "ident": "MPDA", + "type": "medium_airport", + "name": "Enrique Malek International Airport", + "latitude_deg": "8.391", + "longitude_deg": "-82.434998", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-4", + "municipality": "David", + "scheduled_service": "yes", + "gps_code": "MPDA", + "iata_code": "DAV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Enrique_Malek_International_Airport" + }, + { + "id": "4790", + "ident": "MPEJ", + "type": "medium_airport", + "name": "Enrique Adolfo Jimenez Airport", + "latitude_deg": "9.356639862060547", + "longitude_deg": "-79.86740112304688", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-3", + "municipality": "Colón", + "scheduled_service": "yes", + "gps_code": "MPEJ", + "iata_code": "ONX" + }, + { + "id": "42190", + "ident": "MPFS", + "type": "small_airport", + "name": "Fort Sherman Airport", + "latitude_deg": "9.365090370178223", + "longitude_deg": "-79.94979858398438", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-3", + "municipality": "Fort Sherman", + "scheduled_service": "no", + "gps_code": "MPFS" + }, + { + "id": "302532", + "ident": "MPG", + "type": "small_airport", + "name": "Makini Airport", + "latitude_deg": "-6.532222222220001", + "longitude_deg": "147.651166667", + "elevation_ft": "2530", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Makini", + "scheduled_service": "no", + "gps_code": "AYMJ", + "iata_code": "MPG", + "local_code": "MAK" + }, + { + "id": "30768", + "ident": "MPHO", + "type": "small_airport", + "name": "Panamá Pacífico International Airport", + "latitude_deg": "8.91479", + "longitude_deg": "-79.599602", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-10", + "municipality": "Panamá City", + "scheduled_service": "yes", + "gps_code": "MPPA", + "iata_code": "BLB", + "home_link": "http://www.panamapacifico.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Panam%C3%A1_Pac%C3%ADfico_International_Airport", + "keywords": "HOW, Howard Air Force Base, Panama Pacifico" + }, + { + "id": "316555", + "ident": "MPI", + "type": "small_airport", + "name": "Mamitupo Airport", + "latitude_deg": "9.1851", + "longitude_deg": "-77.9841", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Mamitupo", + "scheduled_service": "no", + "iata_code": "MPI", + "keywords": "Mamitupu" + }, + { + "id": "31937", + "ident": "MPJE", + "type": "small_airport", + "name": "Jaqué Airport", + "latitude_deg": "7.51778", + "longitude_deg": "-78.157204", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-5", + "municipality": "Jaqué", + "scheduled_service": "yes", + "gps_code": "MPJE", + "iata_code": "JQE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jaqué_Airport" + }, + { + "id": "32164", + "ident": "MPLP", + "type": "closed", + "name": "Captain Ramon Xatruch Airport", + "latitude_deg": "8.40667", + "longitude_deg": "-78.141701", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-5", + "municipality": "La Palma", + "scheduled_service": "no", + "gps_code": "MPLP", + "iata_code": "PLP" + }, + { + "id": "346902", + "ident": "MPMC", + "type": "small_airport", + "name": "Chame Mayor Airport", + "latitude_deg": "8.591418", + "longitude_deg": "-79.869189", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-10", + "municipality": "Chame", + "scheduled_service": "no", + "gps_code": "MPMC" + }, + { + "id": "4791", + "ident": "MPMG", + "type": "medium_airport", + "name": "Marcos A. Gelabert International Airport", + "latitude_deg": "8.973340034484863", + "longitude_deg": "-79.55560302734375", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-8", + "municipality": "Albrook", + "scheduled_service": "yes", + "gps_code": "MPMG", + "iata_code": "PAC", + "keywords": "Balboa. Albrook AFS. MPLB" + }, + { + "id": "31939", + "ident": "MPNU", + "type": "small_airport", + "name": "Augusto Vergara Airport", + "latitude_deg": "7.8573799133301", + "longitude_deg": "-80.276100158691", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-7", + "municipality": "Los Santos", + "scheduled_service": "no", + "gps_code": "MPNU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Augusto_Vergara_Airport", + "keywords": "Guararé" + }, + { + "id": "42197", + "ident": "MPOA", + "type": "small_airport", + "name": "Puerto Obaldía Airport", + "latitude_deg": "8.668639", + "longitude_deg": "-77.417393", + "elevation_ft": "223", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Puerto Obaldía", + "scheduled_service": "no", + "gps_code": "MPOA", + "iata_code": "PUE" + }, + { + "id": "346878", + "ident": "MPPD", + "type": "small_airport", + "name": "Capt. J. Montenegro Airport", + "latitude_deg": "7.534801", + "longitude_deg": "-80.043347", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-7", + "municipality": "Pedasí", + "scheduled_service": "yes", + "gps_code": "MPPD", + "iata_code": "PDM" + }, + { + "id": "31940", + "ident": "MPRH", + "type": "small_airport", + "name": "Scarlett Martinez International Airport", + "latitude_deg": "8.375880241394", + "longitude_deg": "-80.127899169922", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-2", + "municipality": "Río Hato", + "scheduled_service": "yes", + "gps_code": "MPSM", + "iata_code": "RIH", + "wikipedia_link": "https://en.wikipedia.org/wiki/R%C3%ADo_Hato_Airport", + "keywords": "MPRH, Río Hato Army Air Base, Captain Scarlett Martinez" + }, + { + "id": "4792", + "ident": "MPSA", + "type": "medium_airport", + "name": "Ruben Cantu Airport", + "latitude_deg": "8.085599899291992", + "longitude_deg": "-80.94529724121094", + "elevation_ft": "272", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-9", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "MPSA", + "iata_code": "SYP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ruben_Cantu_Airport", + "keywords": "Santiago" + }, + { + "id": "4793", + "ident": "MPTO", + "type": "large_airport", + "name": "Tocumen International Airport", + "latitude_deg": "9.0713596344", + "longitude_deg": "-79.3834991455", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-8", + "municipality": "Tocumen", + "scheduled_service": "yes", + "gps_code": "MPTO", + "iata_code": "PTY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tocumen_International_Airport", + "keywords": "La Joya No 1" + }, + { + "id": "302531", + "ident": "MPU", + "type": "small_airport", + "name": "Mapua(Mabua) Airport", + "latitude_deg": "-2.81138888889", + "longitude_deg": "151.991111111", + "elevation_ft": "40", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NIK", + "municipality": "Tatau Island", + "scheduled_service": "no", + "gps_code": "AYMZ", + "iata_code": "MPU", + "local_code": "MBU" + }, + { + "id": "42187", + "ident": "MPVR", + "type": "small_airport", + "name": "El Porvenir Airport", + "latitude_deg": "9.559212", + "longitude_deg": "-78.946631", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "El Porvenir", + "scheduled_service": "no", + "gps_code": "MPVR", + "iata_code": "PVE", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Porvenir_Airport" + }, + { + "id": "32008", + "ident": "MPWN", + "type": "small_airport", + "name": "San Blas Airport", + "latitude_deg": "9.452863", + "longitude_deg": "-78.978917", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Carti", + "scheduled_service": "no", + "gps_code": "MPWN", + "iata_code": "NBL" + }, + { + "id": "306954", + "ident": "MPX", + "type": "small_airport", + "name": "Miyanmin Airport", + "latitude_deg": "-4.903055555560001", + "longitude_deg": "141.620833333", + "elevation_ft": "2500", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Miyanmin", + "scheduled_service": "no", + "gps_code": "AYIY", + "iata_code": "MPX", + "local_code": "MIM" + }, + { + "id": "4794", + "ident": "MPZL", + "type": "small_airport", + "name": "Finca 32 Airport", + "latitude_deg": "9.42708969116211", + "longitude_deg": "-82.56269836425781", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-1", + "municipality": "La Dalia", + "scheduled_service": "no", + "gps_code": "MPZL" + }, + { + "id": "336095", + "ident": "MQ-0001", + "type": "heliport", + "name": "Bouillon Heliport", + "latitude_deg": "14.840883", + "longitude_deg": "-61.106912", + "continent": "NA", + "iso_country": "MQ", + "iso_region": "MQ-U-A", + "municipality": "L'Ajoupa-Bouillon", + "scheduled_service": "no" + }, + { + "id": "336096", + "ident": "MQ-0002", + "type": "heliport", + "name": "Bellefontaine Heliport", + "latitude_deg": "14.66652", + "longitude_deg": "-61.158803", + "continent": "NA", + "iso_country": "MQ", + "iso_region": "MQ-U-A", + "municipality": "Bellefontaine", + "scheduled_service": "no" + }, + { + "id": "336097", + "ident": "MQ-0003", + "type": "closed", + "name": "Le Carbet Aerodrome", + "latitude_deg": "14.706979", + "longitude_deg": "-61.171937", + "continent": "NA", + "iso_country": "MQ", + "iso_region": "MQ-U-A", + "municipality": "Le Carbet", + "scheduled_service": "no" + }, + { + "id": "302536", + "ident": "MQO", + "type": "small_airport", + "name": "Malam Airport", + "latitude_deg": "-8.70916666667", + "longitude_deg": "142.649722222", + "elevation_ft": "126", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Malam", + "scheduled_service": "no", + "gps_code": "AYMQ", + "iata_code": "MQO", + "local_code": "MAA" + }, + { + "id": "318016", + "ident": "MR-0001", + "type": "closed", + "name": "Old Néma Airport", + "latitude_deg": "16.6057", + "longitude_deg": "-7.2835", + "elevation_ft": "820", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-01", + "municipality": "Néma", + "scheduled_service": "no", + "keywords": "Néma South" + }, + { + "id": "318017", + "ident": "MR-0002", + "type": "closed", + "name": "Bou Gara Airport", + "latitude_deg": "16.5334", + "longitude_deg": "-10.7912", + "elevation_ft": "520", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-03", + "municipality": "Bou Gara", + "scheduled_service": "no" + }, + { + "id": "347421", + "ident": "MR-0003", + "type": "closed", + "name": "Old Bir Moghrein Airport", + "latitude_deg": "25.23513", + "longitude_deg": "-11.58825", + "elevation_ft": "1240", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-11", + "municipality": "Bir Moghrein", + "scheduled_service": "no", + "keywords": "GQPT" + }, + { + "id": "347423", + "ident": "MR-0004", + "type": "small_airport", + "name": "Twajeel Airport", + "latitude_deg": "22.16864", + "longitude_deg": "-12.68248", + "elevation_ft": "1198", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-11", + "municipality": "Twajeel", + "scheduled_service": "no" + }, + { + "id": "347424", + "ident": "MR-0005", + "type": "small_airport", + "name": "Taziazet Mine Airport", + "latitude_deg": "20.58434", + "longitude_deg": "-15.47742", + "elevation_ft": "364", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-12", + "municipality": "Taziazet", + "scheduled_service": "no", + "keywords": "Tasiast, Taziazet" + }, + { + "id": "351855", + "ident": "MR-0006", + "type": "small_airport", + "name": "Bassikounou Airport", + "latitude_deg": "15.8872", + "longitude_deg": "-5.91618", + "elevation_ft": "866", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-01", + "municipality": "Bassikounou", + "scheduled_service": "no" + }, + { + "id": "351856", + "ident": "MR-0007", + "type": "heliport", + "name": "Fassala Heliport", + "latitude_deg": "15.55045", + "longitude_deg": "-5.51966", + "elevation_ft": "866", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-01", + "municipality": "Fassala", + "scheduled_service": "no" + }, + { + "id": "351857", + "ident": "MR-0008", + "type": "heliport", + "name": "Bassikounou Heliport", + "latitude_deg": "15.88407", + "longitude_deg": "-5.92856", + "elevation_ft": "866", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-01", + "municipality": "Bassikounou", + "scheduled_service": "no" + }, + { + "id": "353303", + "ident": "MR-0009", + "type": "small_airport", + "name": "Rosso Airport", + "latitude_deg": "16.54584", + "longitude_deg": "-15.79407", + "elevation_ft": "23", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-06", + "municipality": "Rosso", + "scheduled_service": "no" + }, + { + "id": "429800", + "ident": "MR-0010", + "type": "heliport", + "name": "Choum Heliport", + "latitude_deg": "21.30503", + "longitude_deg": "-13.0665", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-07", + "municipality": "Choum", + "scheduled_service": "no" + }, + { + "id": "429810", + "ident": "MR-0011", + "type": "closed", + "name": "Aleg Airport", + "latitude_deg": "17.06862", + "longitude_deg": "-13.9084", + "continent": "AF", + "iso_country": "MR", + "iso_region": "MR-05", + "municipality": "Aleg", + "scheduled_service": "no", + "keywords": "LEG" + }, + { + "id": "41922", + "ident": "MRAD", + "type": "small_airport", + "name": "Aerodamas Airport", + "latitude_deg": "9.45777702331543", + "longitude_deg": "-84.20899963378906", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Quepos", + "scheduled_service": "no", + "gps_code": "MRAD" + }, + { + "id": "326342", + "ident": "MRAG", + "type": "small_airport", + "name": "Altagracia Airport", + "latitude_deg": "9.332707", + "longitude_deg": "-83.582653", + "elevation_ft": "3168", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-SJ", + "municipality": "AltaGracia Resort", + "scheduled_service": "no", + "gps_code": "MRAG" + }, + { + "id": "41923", + "ident": "MRAJ", + "type": "small_airport", + "name": "Aranjuez Airport", + "latitude_deg": "10.057268", + "longitude_deg": "-84.807556", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Miramar", + "scheduled_service": "no", + "gps_code": "MRAJ" + }, + { + "id": "326341", + "ident": "MRAL", + "type": "small_airport", + "name": "Altomonte Airport", + "latitude_deg": "9.363861", + "longitude_deg": "-83.626046", + "elevation_ft": "2822", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-SJ", + "municipality": "Trinidad", + "scheduled_service": "no", + "gps_code": "MRAL" + }, + { + "id": "41924", + "ident": "MRAM", + "type": "small_airport", + "name": "Amubri Airport", + "latitude_deg": "9.52163028717041", + "longitude_deg": "-82.95469665527344", + "elevation_ft": "301", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Amubri", + "scheduled_service": "no", + "gps_code": "MRAM" + }, + { + "id": "41925", + "ident": "MRAN", + "type": "small_airport", + "name": "La Fortuna Arenal Airport", + "latitude_deg": "10.469311", + "longitude_deg": "-84.579073", + "elevation_ft": "342", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-A", + "municipality": "La Fortuna", + "scheduled_service": "no", + "gps_code": "MRAN", + "iata_code": "FON", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Fortuna_Arenal_Airport" + }, + { + "id": "4795", + "ident": "MRAO", + "type": "medium_airport", + "name": "Aerotortuguero Airport", + "latitude_deg": "10.42", + "longitude_deg": "-83.6095", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Roxana", + "scheduled_service": "yes", + "gps_code": "MRAO", + "iata_code": "TTQ" + }, + { + "id": "41926", + "ident": "MRAR", + "type": "small_airport", + "name": "Atirro Airport", + "latitude_deg": "9.850000381469727", + "longitude_deg": "-83.6500015258789", + "elevation_ft": "1936", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-C", + "municipality": "Turrialba", + "scheduled_service": "no", + "gps_code": "MRAR" + }, + { + "id": "41927", + "ident": "MRAT", + "type": "small_airport", + "name": "Altamira de San Carlos Airport", + "latitude_deg": "10.51669979095459", + "longitude_deg": "-84.36669921875", + "elevation_ft": "226", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-A", + "municipality": "San Carlos", + "scheduled_service": "no", + "gps_code": "MRAT" + }, + { + "id": "4796", + "ident": "MRBA", + "type": "medium_airport", + "name": "Buenos Aires Airport", + "latitude_deg": "9.163949", + "longitude_deg": "-83.330171", + "elevation_ft": "1214", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Punta Arenas", + "scheduled_service": "no", + "gps_code": "MRBA", + "iata_code": "BAI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buenos_Aires_Airport_(Costa_Rica)" + }, + { + "id": "41928", + "ident": "MRBB", + "type": "small_airport", + "name": "Babilonia Airport", + "latitude_deg": "10.133333206176758", + "longitude_deg": "-83.58333587646484", + "elevation_ft": "591", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Siquirres", + "scheduled_service": "no", + "gps_code": "MRBB" + }, + { + "id": "4797", + "ident": "MRBC", + "type": "medium_airport", + "name": "Barra del Colorado Airport", + "latitude_deg": "10.768699645996094", + "longitude_deg": "-83.58560180664062", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Pococi", + "scheduled_service": "yes", + "gps_code": "MRBC", + "iata_code": "BCL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barra_del_Colorado_Airport" + }, + { + "id": "41929", + "ident": "MRBM", + "type": "small_airport", + "name": "Bremen Airport", + "latitude_deg": "10.219499588012695", + "longitude_deg": "-83.58450317382812", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Guacimo", + "scheduled_service": "no", + "gps_code": "MRBM" + }, + { + "id": "41930", + "ident": "MRBN", + "type": "small_airport", + "name": "Bataan (Monte Libano) Airport", + "latitude_deg": "10.083333015441895", + "longitude_deg": "-83.31666564941406", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Limón", + "scheduled_service": "no", + "gps_code": "MRBN" + }, + { + "id": "41931", + "ident": "MRBO", + "type": "small_airport", + "name": "Boca Naranjo Airport", + "latitude_deg": "9.391960144042969", + "longitude_deg": "-84.12590026855469", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Quepos", + "scheduled_service": "no", + "gps_code": "MRBO" + }, + { + "id": "41932", + "ident": "MRBP", + "type": "small_airport", + "name": "Barra de Parismina Airport", + "latitude_deg": "10.300000190734863", + "longitude_deg": "-83.3499984741211", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Pococi", + "scheduled_service": "no", + "gps_code": "MRBP" + }, + { + "id": "314927", + "ident": "MRBT", + "type": "small_airport", + "name": "Barra del Tortuguero", + "latitude_deg": "10.569", + "longitude_deg": "-83.5149", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Tortuguero", + "scheduled_service": "no", + "gps_code": "MRBT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tortuguero_Airport" + }, + { + "id": "41933", + "ident": "MRCA", + "type": "small_airport", + "name": "Codela Airport", + "latitude_deg": "10.4139995575", + "longitude_deg": "-85.0916976929", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Guapiles", + "scheduled_service": "no", + "gps_code": "MRCA" + }, + { + "id": "4798", + "ident": "MRCC", + "type": "medium_airport", + "name": "Coto 47 Airport", + "latitude_deg": "8.60155963897705", + "longitude_deg": "-82.96859741210938", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Corredores", + "scheduled_service": "yes", + "gps_code": "MRCC", + "iata_code": "OTR" + }, + { + "id": "41934", + "ident": "MRCE", + "type": "small_airport", + "name": "Carate Airport", + "latitude_deg": "8.445110321044922", + "longitude_deg": "-83.46499633789062", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Golfito", + "scheduled_service": "no", + "gps_code": "MRCE" + }, + { + "id": "4799", + "ident": "MRCH", + "type": "small_airport", + "name": "Chacarita Airport", + "latitude_deg": "9.98141002655", + "longitude_deg": "-84.7726974487", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Puntarenas", + "scheduled_service": "no", + "gps_code": "MRCH", + "iata_code": "JAP" + }, + { + "id": "41935", + "ident": "MRCI", + "type": "small_airport", + "name": "Ciruelas Airport", + "latitude_deg": "10.516667366027832", + "longitude_deg": "-85.3499984741211", + "elevation_ft": "361", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Bagaces", + "scheduled_service": "no", + "gps_code": "MRCI" + }, + { + "id": "326339", + "ident": "MRCJ", + "type": "small_airport", + "name": "Cajuela/San Isidro Airport", + "latitude_deg": "9.38862", + "longitude_deg": "-83.68812", + "elevation_ft": "2575", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-SJ", + "municipality": "San Isidro", + "scheduled_service": "no", + "gps_code": "MRCJ" + }, + { + "id": "41936", + "ident": "MRCL", + "type": "small_airport", + "name": "Coyolar Airport", + "latitude_deg": "10.667222023010254", + "longitude_deg": "-85.51139068603516", + "elevation_ft": "262", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Liberia", + "scheduled_service": "no", + "gps_code": "MRCL" + }, + { + "id": "41937", + "ident": "MRCO", + "type": "small_airport", + "name": "El Cerrito Airport", + "latitude_deg": "10.45359992980957", + "longitude_deg": "-85.55819702148438", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Filadelfia", + "scheduled_service": "no", + "gps_code": "MRCO" + }, + { + "id": "32210", + "ident": "MRCR", + "type": "small_airport", + "name": "Playa Samara/Carrillo Airport", + "latitude_deg": "9.8705101013184", + "longitude_deg": "-85.481399536133", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Carrillo", + "scheduled_service": "yes", + "gps_code": "MRCR", + "iata_code": "PLD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carrillo_Airport", + "keywords": "RIK" + }, + { + "id": "4800", + "ident": "MRCV", + "type": "small_airport", + "name": "Cabo Velas Airport", + "latitude_deg": "10.355699539185", + "longitude_deg": "-85.852897644043", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Nicoya", + "scheduled_service": "no", + "gps_code": "MRCV" + }, + { + "id": "41938", + "ident": "MRCZ", + "type": "small_airport", + "name": "Carrizal Airport", + "latitude_deg": "10.087599754333496", + "longitude_deg": "-84.16950225830078", + "elevation_ft": "4650", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-A", + "municipality": "Carrizal", + "scheduled_service": "no", + "gps_code": "MRCZ" + }, + { + "id": "4801", + "ident": "MRDC", + "type": "small_airport", + "name": "Duacari 2 Airport", + "latitude_deg": "10.351499557495117", + "longitude_deg": "-83.63050079345703", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Guapiles", + "scheduled_service": "no", + "gps_code": "MRDC" + }, + { + "id": "41939", + "ident": "MRDD", + "type": "small_airport", + "name": "Don Diego Airport", + "latitude_deg": "9.550000190734863", + "longitude_deg": "-82.88333129882812", + "elevation_ft": "161", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Limón", + "scheduled_service": "no", + "gps_code": "MRDD" + }, + { + "id": "31945", + "ident": "MRDK", + "type": "small_airport", + "name": "Drake Bay Airport", + "latitude_deg": "8.71889019012", + "longitude_deg": "-83.6417007446", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Puntarenas", + "scheduled_service": "no", + "gps_code": "MRDK", + "iata_code": "DRK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Drake_Bay_Airport" + }, + { + "id": "41940", + "ident": "MRDM", + "type": "small_airport", + "name": "Dos Marías Airport", + "latitude_deg": "9.927909851074219", + "longitude_deg": "-84.98999786376953", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Chorotega", + "scheduled_service": "no", + "gps_code": "MRDM" + }, + { + "id": "31946", + "ident": "MRDO", + "type": "small_airport", + "name": "Dieciocho Airport", + "latitude_deg": "8.90369987487793", + "longitude_deg": "-83.42980194091797", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Puntarenas", + "scheduled_service": "no", + "gps_code": "MRDO" + }, + { + "id": "4802", + "ident": "MREC", + "type": "small_airport", + "name": "El Carmen de Siquirres Airport", + "latitude_deg": "10.20199966430664", + "longitude_deg": "-83.47219848632812", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Siquirres", + "scheduled_service": "no", + "gps_code": "MREC" + }, + { + "id": "41941", + "ident": "MRED", + "type": "small_airport", + "name": "El Descanso de Poco Sol Airport", + "latitude_deg": "10.866700172424316", + "longitude_deg": "-84.5333023071289", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-A", + "municipality": "San Carlos", + "scheduled_service": "no", + "gps_code": "MRED" + }, + { + "id": "41942", + "ident": "MREO", + "type": "small_airport", + "name": "El Ceibo Airport", + "latitude_deg": "10.533332824707031", + "longitude_deg": "-83.8499984741211", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-H", + "municipality": "Ticabán", + "scheduled_service": "no", + "gps_code": "MREO" + }, + { + "id": "41943", + "ident": "MRER", + "type": "small_airport", + "name": "El Ron Ron Airport", + "latitude_deg": "10.300299644470215", + "longitude_deg": "-84.45010375976562", + "elevation_ft": "2109", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-A", + "municipality": "Ron Ron", + "scheduled_service": "no", + "gps_code": "MRER" + }, + { + "id": "41944", + "ident": "MRET", + "type": "small_airport", + "name": "Esterillos / Finca Airport", + "latitude_deg": "9.533332824707031", + "longitude_deg": "-84.46666717529297", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Parrita", + "scheduled_service": "no", + "gps_code": "MRET" + }, + { + "id": "41945", + "ident": "MRFD", + "type": "small_airport", + "name": "Finca Delicias Airport", + "latitude_deg": "8.957706", + "longitude_deg": "-83.550308", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Puerto Cortés", + "scheduled_service": "no", + "gps_code": "MRFD", + "keywords": "Delicias de Puerto Cortes" + }, + { + "id": "4803", + "ident": "MRFI", + "type": "small_airport", + "name": "Finca 10 / Nuevo Palmar Sur Airport", + "latitude_deg": "8.916350364685059", + "longitude_deg": "-83.5073013305664", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Puntarenas", + "scheduled_service": "no", + "gps_code": "MRFI" + }, + { + "id": "41946", + "ident": "MRFL", + "type": "small_airport", + "name": "Flamingo Airport", + "latitude_deg": "10.418600082397461", + "longitude_deg": "-85.78269958496094", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Brasilito", + "scheduled_service": "no", + "gps_code": "MRFL", + "iata_code": "FMG" + }, + { + "id": "41947", + "ident": "MRFP", + "type": "small_airport", + "name": "Frutez - Pital Airport", + "latitude_deg": "10.447400093078613", + "longitude_deg": "-84.36900329589844", + "elevation_ft": "617", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-A", + "municipality": "San Carlos", + "scheduled_service": "no", + "gps_code": "MRFP" + }, + { + "id": "31947", + "ident": "MRFS", + "type": "small_airport", + "name": "Finca 63 (Coto 63) Airport", + "latitude_deg": "8.65250015258789", + "longitude_deg": "-83.06529998779297", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Puntarenas", + "scheduled_service": "no", + "gps_code": "MRFS" + }, + { + "id": "41948", + "ident": "MRGA", + "type": "small_airport", + "name": "Garza Airport", + "latitude_deg": "9.91670036315918", + "longitude_deg": "-85.63330078125", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Garza", + "scheduled_service": "no", + "gps_code": "MRGA" + }, + { + "id": "4804", + "ident": "MRGF", + "type": "medium_airport", + "name": "Golfito Airport", + "latitude_deg": "8.654009819030762", + "longitude_deg": "-83.18219757080078", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Golfito", + "scheduled_service": "yes", + "gps_code": "MRGF", + "iata_code": "GLF" + }, + { + "id": "4805", + "ident": "MRGP", + "type": "medium_airport", + "name": "Guapiles Airport", + "latitude_deg": "10.2172002792", + "longitude_deg": "-83.79699707030001", + "elevation_ft": "883", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Pococi", + "scheduled_service": "no", + "gps_code": "MRGP", + "iata_code": "GPL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gu%C3%A1piles_Airport" + }, + { + "id": "41949", + "ident": "MRGT", + "type": "small_airport", + "name": "Guatuso Airport", + "latitude_deg": "10.683333396911621", + "longitude_deg": "-84.83333587646484", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-A", + "municipality": "Alajuela", + "scheduled_service": "no", + "gps_code": "MRGT" + }, + { + "id": "41950", + "ident": "MRHB", + "type": "heliport", + "name": "Helibancosta Heliport", + "latitude_deg": "9.935449600219727", + "longitude_deg": "-84.08049774169922", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-SJ", + "municipality": "Area metropolitana", + "scheduled_service": "no", + "gps_code": "MRHB" + }, + { + "id": "41951", + "ident": "MRHG", + "type": "small_airport", + "name": "Hacienda Rancho Grande Airport", + "latitude_deg": "10.449999809265137", + "longitude_deg": "-84.08333587646484", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-H", + "municipality": "Sarapiqui", + "scheduled_service": "no", + "gps_code": "MRHG" + }, + { + "id": "41952", + "ident": "MRHH", + "type": "small_airport", + "name": "Hacienda Homuha Airport", + "latitude_deg": "10.800000190734863", + "longitude_deg": "-84.36666870117188", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-A", + "municipality": "San Carlos", + "scheduled_service": "no", + "gps_code": "MRHH" + }, + { + "id": "41953", + "ident": "MRHO", + "type": "small_airport", + "name": "Hacienda Rio Cuarto Airport", + "latitude_deg": "10.566666603088379", + "longitude_deg": "-84.1500015258789", + "elevation_ft": "197", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-H", + "municipality": "Sarapiqui", + "scheduled_service": "no", + "gps_code": "MRHO" + }, + { + "id": "41954", + "ident": "MRHP", + "type": "small_airport", + "name": "Hacienda La Pacífica Airport", + "latitude_deg": "10.451918", + "longitude_deg": "-85.149725", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Cañas", + "scheduled_service": "no", + "gps_code": "MRHP" + }, + { + "id": "41955", + "ident": "MRHS", + "type": "small_airport", + "name": "Hacienda La Suerte Airport", + "latitude_deg": "10.449999809265137", + "longitude_deg": "-83.66666412353516", + "elevation_ft": "492", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Pococi", + "scheduled_service": "no", + "gps_code": "MRHS" + }, + { + "id": "32147", + "ident": "MRIA", + "type": "small_airport", + "name": "Islita Airport", + "latitude_deg": "9.856109619140625", + "longitude_deg": "-85.37079620361328", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Nandayure", + "scheduled_service": "yes", + "gps_code": "MRIA", + "iata_code": "PBP" + }, + { + "id": "41956", + "ident": "MRIS", + "type": "small_airport", + "name": "Las Islas Airport", + "latitude_deg": "10.558300018310547", + "longitude_deg": "-83.9740982055664", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-H", + "municipality": "San Carlos", + "scheduled_service": "no", + "gps_code": "MRIS" + }, + { + "id": "41957", + "ident": "MRJO", + "type": "small_airport", + "name": "Jaco Airport", + "latitude_deg": "9.555270195007324", + "longitude_deg": "-84.556396484375", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Jaco", + "scheduled_service": "no", + "gps_code": "MRJO" + }, + { + "id": "41958", + "ident": "MRLA", + "type": "small_airport", + "name": "La Zampoña Airport", + "latitude_deg": "10.266667366027832", + "longitude_deg": "-85.43333435058594", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Guanacaste", + "scheduled_service": "no", + "gps_code": "MRLA" + }, + { + "id": "4806", + "ident": "MRLB", + "type": "large_airport", + "name": "Guanacaste Airport", + "latitude_deg": "10.5933", + "longitude_deg": "-85.544403", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Liberia", + "scheduled_service": "yes", + "gps_code": "MRLB", + "iata_code": "LIR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Daniel_Oduber_Quir%C3%B3s_International_Airport", + "keywords": "Daniel Oduber Quiros International, Liberia International" + }, + { + "id": "4807", + "ident": "MRLC", + "type": "medium_airport", + "name": "Los Chiles Airport", + "latitude_deg": "11.035300254821777", + "longitude_deg": "-84.70610046386719", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-A", + "municipality": "Los Chiles", + "scheduled_service": "no", + "gps_code": "MRLC", + "iata_code": "LSL" + }, + { + "id": "31948", + "ident": "MRLE", + "type": "small_airport", + "name": "Laurel Airport", + "latitude_deg": "8.440409660339355", + "longitude_deg": "-82.90650177001953", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Puntarenas", + "scheduled_service": "no", + "gps_code": "MRLE" + }, + { + "id": "31949", + "ident": "MRLF", + "type": "small_airport", + "name": "La Flor Airport", + "latitude_deg": "10.649999618530273", + "longitude_deg": "-85.53299713134766", + "elevation_ft": "177", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Liberia", + "scheduled_service": "no", + "gps_code": "MRLF" + }, + { + "id": "41959", + "ident": "MRLG", + "type": "small_airport", + "name": "La Garroba Airport", + "latitude_deg": "10.800000190734863", + "longitude_deg": "-84.91666412353516", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-A", + "municipality": "Upala", + "scheduled_service": "no", + "gps_code": "MRLG" + }, + { + "id": "41960", + "ident": "MRLI", + "type": "small_airport", + "name": "La Ligia Airport", + "latitude_deg": "9.515270233154297", + "longitude_deg": "-84.30149841308594", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Parrita", + "scheduled_service": "no", + "gps_code": "MRLI" + }, + { + "id": "41961", + "ident": "MRLL", + "type": "small_airport", + "name": "Las Lomas Airport", + "latitude_deg": "10.066666603088379", + "longitude_deg": "-83.58333587646484", + "elevation_ft": "1325", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Siquirres", + "scheduled_service": "no", + "gps_code": "MRLL" + }, + { + "id": "4808", + "ident": "MRLM", + "type": "medium_airport", + "name": "Limon International Airport", + "latitude_deg": "9.95796012878418", + "longitude_deg": "-83.02200317382812", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Puerto Limon", + "scheduled_service": "yes", + "gps_code": "MRLM", + "iata_code": "LIO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lim%C3%B3n_International_Airport" + }, + { + "id": "41962", + "ident": "MRLN", + "type": "small_airport", + "name": "La Guinea Airport", + "latitude_deg": "10.420700073242188", + "longitude_deg": "-85.47200012207031", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Nicoya", + "scheduled_service": "no", + "gps_code": "MRLN" + }, + { + "id": "41963", + "ident": "MRLO", + "type": "heliport", + "name": "La Loma Heliport", + "latitude_deg": "9.925832748413086", + "longitude_deg": "-84.08333587646484", + "elevation_ft": "3461", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-SJ", + "municipality": "Escazu", + "scheduled_service": "no", + "gps_code": "MRLO" + }, + { + "id": "41964", + "ident": "MRLP", + "type": "small_airport", + "name": "Las Piedras Airport", + "latitude_deg": "10.366666793823242", + "longitude_deg": "-85.19999694824219", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Cañas", + "scheduled_service": "no", + "gps_code": "MRLP" + }, + { + "id": "41965", + "ident": "MRLS", + "type": "heliport", + "name": "La Victoria de Sarapiqui Heliport", + "latitude_deg": "10.316699981689453", + "longitude_deg": "-83.91670227050781", + "elevation_ft": "889", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-H", + "municipality": "Sarapiqui", + "scheduled_service": "no", + "gps_code": "MRLS" + }, + { + "id": "31950", + "ident": "MRLT", + "type": "small_airport", + "name": "Las Trancas Airport", + "latitude_deg": "10.567000389099121", + "longitude_deg": "-85.5999984741211", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Las Trancas", + "scheduled_service": "no", + "gps_code": "MRLT" + }, + { + "id": "41966", + "ident": "MRLV", + "type": "small_airport", + "name": "La Cueva Airport", + "latitude_deg": "10.68120002746582", + "longitude_deg": "-85.5280990600586", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Liberia", + "scheduled_service": "no", + "gps_code": "MRLV" + }, + { + "id": "41967", + "ident": "MRLY", + "type": "small_airport", + "name": "La Yolanda Airport", + "latitude_deg": "9.550000190734863", + "longitude_deg": "-84.56666564941406", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Parrita", + "scheduled_service": "no", + "gps_code": "MRLY" + }, + { + "id": "41968", + "ident": "MRLZ", + "type": "small_airport", + "name": "La Zopilota Airport", + "latitude_deg": "10.483599662780762", + "longitude_deg": "-85.46199798583984", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Guanacaste", + "scheduled_service": "no", + "gps_code": "MRLZ" + }, + { + "id": "41969", + "ident": "MRMA", + "type": "small_airport", + "name": "Monte Alto Airport", + "latitude_deg": "10.083333015441895", + "longitude_deg": "-85.26667022705078", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Abangares", + "scheduled_service": "no", + "gps_code": "MRMA" + }, + { + "id": "41970", + "ident": "MRMC", + "type": "small_airport", + "name": "Murcielago Airport", + "latitude_deg": "10.916666984558105", + "longitude_deg": "-85.71666717529297", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "La Cruz", + "scheduled_service": "no", + "gps_code": "MRMC" + }, + { + "id": "41971", + "ident": "MRMJ", + "type": "small_airport", + "name": "Mojica Airport", + "latitude_deg": "10.4307003021", + "longitude_deg": "-85.17459869380001", + "elevation_ft": "87", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Cañas", + "scheduled_service": "no", + "gps_code": "MRMJ", + "iata_code": "CSC" + }, + { + "id": "32012", + "ident": "MRNC", + "type": "small_airport", + "name": "Guanacaste Airport", + "latitude_deg": "10.139399528503418", + "longitude_deg": "-85.44580078125", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Nicoya/Guanacate", + "scheduled_service": "no", + "gps_code": "MRNC", + "iata_code": "NCT" + }, + { + "id": "326340", + "ident": "MRNI", + "type": "small_airport", + "name": "La Bonita Airport", + "latitude_deg": "9.389821", + "longitude_deg": "-83.677897", + "elevation_ft": "2643", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-SJ", + "municipality": "San Isidro", + "scheduled_service": "no", + "gps_code": "MRNI" + }, + { + "id": "4809", + "ident": "MRNS", + "type": "medium_airport", + "name": "Nosara Airport", + "latitude_deg": "9.976490020750001", + "longitude_deg": "-85.65299987790002", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Nicoya", + "scheduled_service": "yes", + "gps_code": "MRNS", + "iata_code": "NOB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nosara_Airport" + }, + { + "id": "4810", + "ident": "MROC", + "type": "medium_airport", + "name": "Juan Santamaría International Airport", + "latitude_deg": "9.99386", + "longitude_deg": "-84.208801", + "elevation_ft": "3021", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-A", + "municipality": "San José (Alajuela)", + "scheduled_service": "yes", + "gps_code": "MROC", + "iata_code": "SJO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Juan_Santamar%C3%ADa_International_Airport" + }, + { + "id": "31951", + "ident": "MRPA", + "type": "small_airport", + "name": "Palo Arco Airport", + "latitude_deg": "9.851409912109375", + "longitude_deg": "-85.23789978027344", + "elevation_ft": "324", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Nandayure", + "scheduled_service": "no", + "gps_code": "MRPA" + }, + { + "id": "31952", + "ident": "MRPB", + "type": "closed", + "name": "Playa Blanca (J. W. Berteus) Airport", + "latitude_deg": "8.64999", + "longitude_deg": "-83.432998657227", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Puntarenas", + "scheduled_service": "no", + "gps_code": "MRPB" + }, + { + "id": "31953", + "ident": "MRPC", + "type": "closed", + "name": "Paso Canoas Airport", + "latitude_deg": "8.530931", + "longitude_deg": "-82.841367", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Paso Canoas", + "scheduled_service": "no", + "gps_code": "MRPC" + }, + { + "id": "4811", + "ident": "MRPD", + "type": "small_airport", + "name": "Pandora Airport", + "latitude_deg": "9.732170104980469", + "longitude_deg": "-82.98320007324219", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Limón", + "scheduled_service": "no", + "gps_code": "MRPD" + }, + { + "id": "32160", + "ident": "MRPJ", + "type": "medium_airport", + "name": "Puerto Jimenez Airport", + "latitude_deg": "8.533329963684082", + "longitude_deg": "-83.30000305175781", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Puerto Jimenez", + "scheduled_service": "yes", + "gps_code": "MRPJ", + "iata_code": "PJM", + "home_link": "http://www.natureair.com/destinations/jimenez_costa_rica.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Puerto_Jimenez_Airport", + "keywords": "Corcovado National Park" + }, + { + "id": "326338", + "ident": "MRPK", + "type": "small_airport", + "name": "Papa Kilo Airport", + "latitude_deg": "9.157537", + "longitude_deg": "-83.735446", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Uvita", + "scheduled_service": "no", + "gps_code": "MRPK" + }, + { + "id": "41972", + "ident": "MRPL", + "type": "small_airport", + "name": "Portalón Airport", + "latitude_deg": "9.357979774475098", + "longitude_deg": "-83.97949981689453", + "elevation_ft": "206", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Portalón", + "scheduled_service": "no", + "gps_code": "MRPL" + }, + { + "id": "4812", + "ident": "MRPM", + "type": "medium_airport", + "name": "Palmar Sur Airport", + "latitude_deg": "8.95103", + "longitude_deg": "-83.468597", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Palmar Sur", + "scheduled_service": "yes", + "gps_code": "MRPM", + "iata_code": "PMZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palmar_Sur_Airport" + }, + { + "id": "41973", + "ident": "MRPN", + "type": "small_airport", + "name": "Pelon Nuevo Airport", + "latitude_deg": "10.486700057983398", + "longitude_deg": "-85.41419982910156", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Liberia", + "scheduled_service": "no", + "gps_code": "MRPN" + }, + { + "id": "41974", + "ident": "MRPO", + "type": "small_airport", + "name": "Punta Banco Airport", + "latitude_deg": "8.35731029510498", + "longitude_deg": "-83.13690185546875", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Puntarenas", + "scheduled_service": "no", + "gps_code": "MRPO" + }, + { + "id": "41975", + "ident": "MRPP", + "type": "small_airport", + "name": "Playa Pájaros Airport", + "latitude_deg": "9.858309745788574", + "longitude_deg": "-84.69439697265625", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Paquera", + "scheduled_service": "no", + "gps_code": "MRPP" + }, + { + "id": "41976", + "ident": "MRPS", + "type": "small_airport", + "name": "Peñas Blancas Airport", + "latitude_deg": "10.315600395202637", + "longitude_deg": "-85.6780014038086", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "gps_code": "MRPS" + }, + { + "id": "41977", + "ident": "MRPT", + "type": "small_airport", + "name": "Agropecuaria Playa Caletas Airport", + "latitude_deg": "9.750128", + "longitude_deg": "-85.250738", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Nicoya/Guanacate", + "scheduled_service": "no", + "gps_code": "MRPT" + }, + { + "id": "4813", + "ident": "MRPV", + "type": "medium_airport", + "name": "Tobías Bolaños International Airport", + "latitude_deg": "9.95705", + "longitude_deg": "-84.139801", + "elevation_ft": "3287", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-SJ", + "municipality": "San Jose", + "scheduled_service": "yes", + "gps_code": "MRPV", + "iata_code": "SYQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tob%C3%ADas_Bola%C3%B1os_International_Airport", + "keywords": "Aeropuerto Internacional Tobías Bolaños Palma" + }, + { + "id": "41978", + "ident": "MRPY", + "type": "small_airport", + "name": "Playa Ballena Airport", + "latitude_deg": "9.122420310974121", + "longitude_deg": "-83.7063980102539", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Puntarenas", + "scheduled_service": "no", + "gps_code": "MRPY" + }, + { + "id": "41979", + "ident": "MRQA", + "type": "small_airport", + "name": "Quebrada Azul Airport", + "latitude_deg": "10.400451", + "longitude_deg": "-84.487567", + "elevation_ft": "197", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-A", + "municipality": "Florencia", + "scheduled_service": "no", + "gps_code": "MRQA" + }, + { + "id": "4814", + "ident": "MRQP", + "type": "medium_airport", + "name": "Quepos Managua Airport", + "latitude_deg": "9.443160057067871", + "longitude_deg": "-84.12979888916016", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Quepos", + "scheduled_service": "yes", + "gps_code": "MRQP", + "iata_code": "XQP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quepos_Managua_Airport" + }, + { + "id": "41980", + "ident": "MRRF", + "type": "small_airport", + "name": "Rio Frio / Progreso Airport", + "latitude_deg": "10.327400207519531", + "longitude_deg": "-83.88760375976562", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-H", + "municipality": "Rio Frio / Progreso", + "scheduled_service": "no", + "gps_code": "MRRF", + "iata_code": "RFR" + }, + { + "id": "41981", + "ident": "MRRH", + "type": "small_airport", + "name": "Rancho Humo Airport", + "latitude_deg": "10.316666603088379", + "longitude_deg": "-85.33333587646484", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "gps_code": "MRRH" + }, + { + "id": "41982", + "ident": "MRRM", + "type": "heliport", + "name": "Los Sueños Heliport", + "latitude_deg": "9.677499771118164", + "longitude_deg": "-84.67166900634766", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Marina Resort", + "scheduled_service": "no", + "gps_code": "MRRM" + }, + { + "id": "41983", + "ident": "MRRN", + "type": "small_airport", + "name": "Rancho Nuevo Airport", + "latitude_deg": "9.566666603088379", + "longitude_deg": "-84.51667022705078", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Puntarenas", + "scheduled_service": "no", + "gps_code": "MRRN" + }, + { + "id": "41984", + "ident": "MRRX", + "type": "small_airport", + "name": "Roxana Farms Airport", + "latitude_deg": "10.308199882507324", + "longitude_deg": "-83.75430297851562", + "elevation_ft": "312", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Limón", + "scheduled_service": "no", + "gps_code": "MRRX" + }, + { + "id": "31954", + "ident": "MRSA", + "type": "small_airport", + "name": "San Alberto Airport", + "latitude_deg": "10.146599769592285", + "longitude_deg": "-83.48819732666016", + "elevation_ft": "88", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Limón", + "scheduled_service": "no", + "gps_code": "MRSA" + }, + { + "id": "41985", + "ident": "MRSB", + "type": "small_airport", + "name": "San Cristobal Airport", + "latitude_deg": "10.5", + "longitude_deg": "-84.56666564941406", + "elevation_ft": "259", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-A", + "municipality": "San Carlos", + "scheduled_service": "no", + "gps_code": "MRSB" + }, + { + "id": "41986", + "ident": "MRSC", + "type": "small_airport", + "name": "Santa Cruz Airport", + "latitude_deg": "10.273799896240234", + "longitude_deg": "-85.59149932861328", + "elevation_ft": "206", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "gps_code": "MRSC" + }, + { + "id": "41987", + "ident": "MRSE", + "type": "heliport", + "name": "San Jose Heliport", + "latitude_deg": "9.933333396911621", + "longitude_deg": "-84.16666412353516", + "elevation_ft": "3296", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-SJ", + "municipality": "San José", + "scheduled_service": "no", + "gps_code": "MRSE" + }, + { + "id": "41988", + "ident": "MRSF", + "type": "small_airport", + "name": "Santa Fe Airport", + "latitude_deg": "9.300000190734863", + "longitude_deg": "-83.61666870117188", + "elevation_ft": "1995", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-SJ", + "municipality": "Pérez Zeledón", + "scheduled_service": "no", + "gps_code": "MRSF" + }, + { + "id": "4815", + "ident": "MRSG", + "type": "small_airport", + "name": "Santa Clara De Guapiles Airport", + "latitude_deg": "10.288299560546875", + "longitude_deg": "-83.7135009765625", + "elevation_ft": "262", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Limón", + "scheduled_service": "no", + "gps_code": "MRSG" + }, + { + "id": "41989", + "ident": "MRSH", + "type": "small_airport", + "name": "Shiroles Airport", + "latitude_deg": "9.580769538879395", + "longitude_deg": "-82.95989990234375", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Talamanca", + "scheduled_service": "no", + "gps_code": "MRSH" + }, + { + "id": "41990", + "ident": "MRSI", + "type": "small_airport", + "name": "San Isidro del General Airport", + "latitude_deg": "9.35262", + "longitude_deg": "-83.713097", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-SJ", + "municipality": "Pérez Zeledón", + "scheduled_service": "no", + "gps_code": "MRSI", + "iata_code": "IPZ" + }, + { + "id": "31955", + "ident": "MRSL", + "type": "small_airport", + "name": "Salama Airport", + "latitude_deg": "8.789362", + "longitude_deg": "-83.271432", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Salama", + "scheduled_service": "no", + "gps_code": "MRSL" + }, + { + "id": "41991", + "ident": "MRSM", + "type": "small_airport", + "name": "Santa Marta Airport", + "latitude_deg": "9.916666984558105", + "longitude_deg": "-84.61666870117188", + "elevation_ft": "417", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-A", + "municipality": "Orotina", + "scheduled_service": "no", + "gps_code": "MRSM" + }, + { + "id": "324217", + "ident": "MRSN", + "type": "small_airport", + "name": "Sirena Aerodrome", + "latitude_deg": "8.4776", + "longitude_deg": "-83.591343", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Península de Osa", + "scheduled_service": "no", + "gps_code": "MRSN" + }, + { + "id": "31956", + "ident": "MRSO", + "type": "small_airport", + "name": "Santa Maria De Guacimo Airport", + "latitude_deg": "10.267000198364258", + "longitude_deg": "-83.61699676513672", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Guapiles", + "scheduled_service": "no", + "gps_code": "MRSO" + }, + { + "id": "41992", + "ident": "MRSP", + "type": "small_airport", + "name": "San Pedro Airport", + "latitude_deg": "10.417900085449219", + "longitude_deg": "-83.75299835205078", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "San Pedro", + "scheduled_service": "no", + "gps_code": "MRSP" + }, + { + "id": "41993", + "ident": "MRSQ", + "type": "small_airport", + "name": "Sarapigui Airport", + "latitude_deg": "10.471518", + "longitude_deg": "-83.906788", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-H", + "municipality": "San Carlos", + "scheduled_service": "no", + "gps_code": "MRSQ" + }, + { + "id": "41994", + "ident": "MRST", + "type": "small_airport", + "name": "San Agustin Airport", + "latitude_deg": "10.066666603088379", + "longitude_deg": "-84.88333129882812", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Puntarenas", + "scheduled_service": "no", + "gps_code": "MRST" + }, + { + "id": "4816", + "ident": "MRSV", + "type": "medium_airport", + "name": "San Vito De Java Airport", + "latitude_deg": "8.826109886169434", + "longitude_deg": "-82.95890045166016", + "elevation_ft": "3228", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Coto Brus", + "scheduled_service": "no", + "gps_code": "MRSV", + "iata_code": "TOO" + }, + { + "id": "41995", + "ident": "MRSX", + "type": "small_airport", + "name": "Sixaola Airport", + "latitude_deg": "9.503889", + "longitude_deg": "-82.63135", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Sixaola", + "scheduled_service": "no", + "gps_code": "MRSX" + }, + { + "id": "331085", + "ident": "MRT", + "type": "small_airport", + "name": "Moroak Airport", + "latitude_deg": "-14.818133", + "longitude_deg": "133.700594", + "elevation_ft": "227", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Moroak", + "scheduled_service": "no", + "iata_code": "MRT" + }, + { + "id": "41996", + "ident": "MRTB", + "type": "small_airport", + "name": "Ticaban Airport", + "latitude_deg": "10.366666793823242", + "longitude_deg": "-83.8499984741211", + "elevation_ft": "246", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Pococi", + "scheduled_service": "no", + "gps_code": "MRTB" + }, + { + "id": "41997", + "ident": "MRTG", + "type": "small_airport", + "name": "Taboga Airport", + "latitude_deg": "10.350000381469727", + "longitude_deg": "-85.19999694824219", + "elevation_ft": "108", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Cañas", + "scheduled_service": "no", + "gps_code": "MRTG" + }, + { + "id": "41998", + "ident": "MRTL", + "type": "small_airport", + "name": "Talolinga Airport", + "latitude_deg": "10.30840015411377", + "longitude_deg": "-85.46839904785156", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Nicoya", + "scheduled_service": "no", + "gps_code": "MRTL" + }, + { + "id": "41999", + "ident": "MRTM", + "type": "small_airport", + "name": "Tamarindo Airport", + "latitude_deg": "10.313500404358", + "longitude_deg": "-85.815498352051", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Tamarindo", + "scheduled_service": "no", + "gps_code": "MRTM", + "iata_code": "TNO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tamarindo_Airport" + }, + { + "id": "42000", + "ident": "MRTR", + "type": "small_airport", + "name": "Tambor Airport", + "latitude_deg": "9.739307", + "longitude_deg": "-85.016199", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-P", + "municipality": "Nicoya", + "scheduled_service": "no", + "gps_code": "MRTR", + "iata_code": "TMU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tambor_Airport" + }, + { + "id": "4817", + "ident": "MRUP", + "type": "medium_airport", + "name": "Upala Airport", + "latitude_deg": "10.8922", + "longitude_deg": "-85.016197", + "elevation_ft": "184", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-A", + "municipality": "Upala", + "scheduled_service": "no", + "gps_code": "MRUP", + "iata_code": "UPL", + "home_link": "https://www.facebook.com/AerodromoUpala/", + "wikipedia_link": "https://en.m.wikipedia.org/wiki/Upala_Airport" + }, + { + "id": "42001", + "ident": "MRYT", + "type": "small_airport", + "name": "Yucatica Airport", + "latitude_deg": "10.333333015441895", + "longitude_deg": "-83.66666412353516", + "elevation_ft": "151", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-L", + "municipality": "Guacimo", + "scheduled_service": "no", + "gps_code": "MRYT" + }, + { + "id": "42002", + "ident": "MRZP", + "type": "small_airport", + "name": "Zapotal De Guanacaste Airport", + "latitude_deg": "9.994009971618652", + "longitude_deg": "-85.3102035522461", + "elevation_ft": "1305", + "continent": "NA", + "iso_country": "CR", + "iso_region": "CR-G", + "municipality": "Zapotal", + "scheduled_service": "no", + "gps_code": "MRZP" + }, + { + "id": "22306", + "ident": "MS00", + "type": "small_airport", + "name": "Double O Ranch Airport", + "latitude_deg": "34.98889923095703", + "longitude_deg": "-89.91529846191406", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Olive Branch", + "scheduled_service": "no", + "gps_code": "MS00", + "local_code": "MS00" + }, + { + "id": "22307", + "ident": "MS01", + "type": "heliport", + "name": "Bolivar County Hospital Heliport", + "latitude_deg": "33.74807", + "longitude_deg": "-90.70806", + "elevation_ft": "143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "MS01", + "local_code": "MS01" + }, + { + "id": "22308", + "ident": "MS02", + "type": "heliport", + "name": "Pascagoula Refinery Pad Nr 3 Heliport", + "latitude_deg": "30.348800659179688", + "longitude_deg": "-88.47810363769531", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Pascagoula", + "scheduled_service": "no", + "gps_code": "MS02", + "local_code": "MS02" + }, + { + "id": "22309", + "ident": "MS03", + "type": "small_airport", + "name": "Christmas Airport", + "latitude_deg": "33.924641", + "longitude_deg": "-90.788944", + "elevation_ft": "153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Shelby", + "scheduled_service": "no", + "gps_code": "MS03", + "local_code": "MS03" + }, + { + "id": "22310", + "ident": "MS04", + "type": "closed", + "name": "Hopper Field", + "latitude_deg": "33.622501", + "longitude_deg": "-88.286102", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Steens", + "scheduled_service": "no", + "keywords": "MS04" + }, + { + "id": "22311", + "ident": "MS05", + "type": "heliport", + "name": "Delta Regional Medical Center Heliport", + "latitude_deg": "33.411566", + "longitude_deg": "-91.034068", + "elevation_ft": "123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "MS05", + "local_code": "MS05", + "keywords": "Air Evac 87 Heliport" + }, + { + "id": "22312", + "ident": "MS06", + "type": "small_airport", + "name": "Linwood Airport", + "latitude_deg": "32.790401458740234", + "longitude_deg": "-90.13809967041016", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Linwood", + "scheduled_service": "no", + "gps_code": "MS06", + "local_code": "MS06" + }, + { + "id": "22313", + "ident": "MS07", + "type": "heliport", + "name": "Echelon Heliport", + "latitude_deg": "32.38570022583008", + "longitude_deg": "-90.18730163574219", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "MS07", + "local_code": "MS07" + }, + { + "id": "22314", + "ident": "MS08", + "type": "small_airport", + "name": "Harrell Field", + "latitude_deg": "32.4739", + "longitude_deg": "-89.851799", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Pisgah", + "scheduled_service": "no", + "gps_code": "MS08", + "local_code": "MS08" + }, + { + "id": "22315", + "ident": "MS09", + "type": "small_airport", + "name": "Glidwell Flying Service Airport", + "latitude_deg": "34.09639", + "longitude_deg": "-90.70412", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Alligator", + "scheduled_service": "no", + "gps_code": "MS09", + "local_code": "MS09" + }, + { + "id": "22316", + "ident": "MS10", + "type": "small_airport", + "name": "Turner Field", + "latitude_deg": "33.15850067138672", + "longitude_deg": "-90.50430297851562", + "elevation_ft": "109", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Belzoni", + "scheduled_service": "no", + "gps_code": "MS10", + "local_code": "MS10" + }, + { + "id": "22317", + "ident": "MS11", + "type": "small_airport", + "name": "Mohr Farm Airport", + "latitude_deg": "32.208499908447266", + "longitude_deg": "-89.94170379638672", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Brandon", + "scheduled_service": "no", + "gps_code": "MS11", + "local_code": "MS11" + }, + { + "id": "22318", + "ident": "MS13", + "type": "small_airport", + "name": "Eifling Farms Airport", + "latitude_deg": "33.07569885253906", + "longitude_deg": "-90.95339965820312", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Glen Allan", + "scheduled_service": "no", + "gps_code": "MS13", + "local_code": "MS13" + }, + { + "id": "45501", + "ident": "MS14", + "type": "small_airport", + "name": "John Farese Airpark", + "latitude_deg": "34.813889", + "longitude_deg": "-89.199617", + "elevation_ft": "565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "MS14", + "local_code": "MS14" + }, + { + "id": "22319", + "ident": "MS15", + "type": "small_airport", + "name": "Country Club Airport", + "latitude_deg": "33.331199645996094", + "longitude_deg": "-91.03700256347656", + "elevation_ft": "117", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "MS15", + "local_code": "MS15" + }, + { + "id": "22320", + "ident": "MS16", + "type": "heliport", + "name": "Greenwood-Leflore Hospital Heliport", + "latitude_deg": "33.51959991455078", + "longitude_deg": "-90.20089721679688", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Greenwood", + "scheduled_service": "no", + "gps_code": "MS16", + "local_code": "MS16" + }, + { + "id": "22321", + "ident": "MS17", + "type": "heliport", + "name": "Memorial Hospital Heliport", + "latitude_deg": "30.367872", + "longitude_deg": "-89.116879", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Gulfport", + "scheduled_service": "no", + "gps_code": "MS17", + "local_code": "MS17" + }, + { + "id": "22322", + "ident": "MS18", + "type": "small_airport", + "name": "Dilworth Airport", + "latitude_deg": "34.77000045776367", + "longitude_deg": "-88.60559844970703", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Corinth", + "scheduled_service": "no", + "gps_code": "MS18", + "local_code": "MS18" + }, + { + "id": "22323", + "ident": "MS19", + "type": "heliport", + "name": "Pascagoula Refinery Pad Nr 2 Heliport", + "latitude_deg": "30.354900360107422", + "longitude_deg": "-88.49140167236328", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Pascagoula", + "scheduled_service": "no", + "gps_code": "MS19", + "local_code": "MS19" + }, + { + "id": "22324", + "ident": "MS20", + "type": "small_airport", + "name": "Newell Flying Service Airport", + "latitude_deg": "33.354801177978516", + "longitude_deg": "-90.5790023803711", + "elevation_ft": "126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Inverness", + "scheduled_service": "no", + "gps_code": "MS20", + "local_code": "MS20" + }, + { + "id": "22325", + "ident": "MS21", + "type": "small_airport", + "name": "Lester Field", + "latitude_deg": "33.33209991455078", + "longitude_deg": "-90.58200073242188", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Inverness", + "scheduled_service": "no", + "gps_code": "MS21", + "local_code": "MS21" + }, + { + "id": "22326", + "ident": "MS22", + "type": "small_airport", + "name": "Murphey Flying Service Airport", + "latitude_deg": "33.48899841308594", + "longitude_deg": "-90.35700225830078", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Itta Bena", + "scheduled_service": "no", + "gps_code": "MS22", + "local_code": "MS22" + }, + { + "id": "22327", + "ident": "MS23", + "type": "closed", + "name": "Forest Home Airport", + "latitude_deg": "31.006701", + "longitude_deg": "-91.203102", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Woodville", + "scheduled_service": "no", + "keywords": "MS23" + }, + { + "id": "22328", + "ident": "MS24", + "type": "small_airport", + "name": "Joe Sanford Field", + "latitude_deg": "32.24679946899414", + "longitude_deg": "-90.5822982788086", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Edwards", + "scheduled_service": "no", + "gps_code": "MS24", + "local_code": "MS24" + }, + { + "id": "22329", + "ident": "MS25", + "type": "closed", + "name": "Huntley Airport", + "latitude_deg": "33.398912", + "longitude_deg": "-90.967036", + "elevation_ft": "117", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Leland", + "scheduled_service": "no", + "keywords": "MS25" + }, + { + "id": "22330", + "ident": "MS26", + "type": "small_airport", + "name": "Cedar Creek Air Ranch Airport", + "latitude_deg": "30.802200317382812", + "longitude_deg": "-88.54750061035156", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Lucedale", + "scheduled_service": "no", + "gps_code": "MS26", + "local_code": "MS26" + }, + { + "id": "22331", + "ident": "MS27", + "type": "small_airport", + "name": "Aerohead Airport", + "latitude_deg": "30.706899642944336", + "longitude_deg": "-88.42919921875", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Hurley", + "scheduled_service": "no", + "gps_code": "MS27", + "local_code": "MS27" + }, + { + "id": "22332", + "ident": "MS28", + "type": "small_airport", + "name": "Alcorn State University Airport", + "latitude_deg": "31.868799209594727", + "longitude_deg": "-91.13480377197266", + "elevation_ft": "269", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Lorman", + "scheduled_service": "no", + "gps_code": "MS28", + "local_code": "MS28" + }, + { + "id": "45502", + "ident": "MS29", + "type": "small_airport", + "name": "Pace Airstrip", + "latitude_deg": "32.601944", + "longitude_deg": "-89.863889", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Canton", + "scheduled_service": "no", + "gps_code": "MS29", + "local_code": "MS29" + }, + { + "id": "22333", + "ident": "MS30", + "type": "small_airport", + "name": "Abide Airpark", + "latitude_deg": "33.30569839477539", + "longitude_deg": "-90.99040222167969", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "MS30", + "local_code": "MS30" + }, + { + "id": "22334", + "ident": "MS31", + "type": "heliport", + "name": "Panola Medical Center Heliport", + "latitude_deg": "34.306527", + "longitude_deg": "-89.913341", + "elevation_ft": "337", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Batesville", + "scheduled_service": "no", + "gps_code": "MS31", + "local_code": "MS31", + "keywords": "Tri Lakes Medical Center" + }, + { + "id": "22335", + "ident": "MS32", + "type": "heliport", + "name": "Andersons Hospital Heliport", + "latitude_deg": "32.36819839477539", + "longitude_deg": "-88.69889831542969", + "elevation_ft": "298", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Meridian", + "scheduled_service": "no", + "gps_code": "MS32", + "local_code": "MS32" + }, + { + "id": "22336", + "ident": "MS33", + "type": "small_airport", + "name": "Hobbs Airport", + "latitude_deg": "33.41680145263672", + "longitude_deg": "-90.49449920654297", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Moorhead", + "scheduled_service": "no", + "gps_code": "MS33", + "local_code": "MS33" + }, + { + "id": "22337", + "ident": "MS34", + "type": "small_airport", + "name": "Reality Plantation Airport", + "latitude_deg": "32.69820022583008", + "longitude_deg": "-90.94650268554688", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Onward", + "scheduled_service": "no", + "gps_code": "MS34", + "local_code": "MS34" + }, + { + "id": "22338", + "ident": "MS35", + "type": "small_airport", + "name": "Wade Airport", + "latitude_deg": "32.98173", + "longitude_deg": "-90.966062", + "elevation_ft": "106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Rolling Fork", + "scheduled_service": "no", + "gps_code": "MS35", + "local_code": "MS35", + "keywords": "Eagle Nest" + }, + { + "id": "22339", + "ident": "MS36", + "type": "small_airport", + "name": "Supplejack Airport", + "latitude_deg": "32.650001525878906", + "longitude_deg": "-89.9708023071289", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Canton", + "scheduled_service": "no", + "gps_code": "MS36", + "local_code": "MS36" + }, + { + "id": "22340", + "ident": "MS37", + "type": "small_airport", + "name": "West Bolivar Flying Service Airport", + "latitude_deg": "33.6534", + "longitude_deg": "-90.988998", + "elevation_ft": "136", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Benoit", + "scheduled_service": "no", + "gps_code": "MS37", + "local_code": "MS37", + "keywords": "Benoit Flying Services" + }, + { + "id": "22341", + "ident": "MS38", + "type": "small_airport", + "name": "Flautt Airport", + "latitude_deg": "33.87229919433594", + "longitude_deg": "-90.28340148925781", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Swan Lake", + "scheduled_service": "no", + "gps_code": "MS38", + "local_code": "MS38" + }, + { + "id": "22342", + "ident": "MS39", + "type": "small_airport", + "name": "Smith County Airport", + "latitude_deg": "31.820999145507812", + "longitude_deg": "-89.4583969116211", + "elevation_ft": "332", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Taylorsville", + "scheduled_service": "no", + "gps_code": "MS39", + "local_code": "MS39" + }, + { + "id": "22343", + "ident": "MS40", + "type": "small_airport", + "name": "Southland Flying Service Inc. Airport", + "latitude_deg": "33.22560119628906", + "longitude_deg": "-90.24669647216797", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Tchula", + "scheduled_service": "no", + "gps_code": "MS40", + "local_code": "MS40" + }, + { + "id": "22344", + "ident": "MS41", + "type": "small_airport", + "name": "Flying Y Service Airport", + "latitude_deg": "34.00304", + "longitude_deg": "-90.425949", + "elevation_ft": "149", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Tutwiler", + "scheduled_service": "no", + "gps_code": "MS41", + "local_code": "MS41", + "keywords": "Williams" + }, + { + "id": "22345", + "ident": "MS42", + "type": "small_airport", + "name": "Mississippi Petrified Forest Airport", + "latitude_deg": "32.52040100097656", + "longitude_deg": "-90.32369995117188", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Flora", + "scheduled_service": "no", + "gps_code": "MS42", + "local_code": "MS42" + }, + { + "id": "22346", + "ident": "MS43", + "type": "small_airport", + "name": "Whitaker Airport", + "latitude_deg": "32.55179977416992", + "longitude_deg": "-90.83039855957031", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Vicksburg", + "scheduled_service": "no", + "gps_code": "MS43", + "local_code": "MS43" + }, + { + "id": "22347", + "ident": "MS45", + "type": "small_airport", + "name": "Dale Landing Strip", + "latitude_deg": "32.15629959106445", + "longitude_deg": "-91.12460327148438", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Yokena", + "scheduled_service": "no", + "gps_code": "MS45", + "local_code": "MS45" + }, + { + "id": "22348", + "ident": "MS46", + "type": "heliport", + "name": "St Dominic-Jackson Memorial Hospital Heliport", + "latitude_deg": "32.333349", + "longitude_deg": "-90.163861", + "elevation_ft": "353", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "MS46", + "local_code": "MS46" + }, + { + "id": "22349", + "ident": "MS47", + "type": "heliport", + "name": "Southwest Regional Medical Center Heliport", + "latitude_deg": "31.250873", + "longitude_deg": "-90.474547", + "elevation_ft": "413", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "McComb", + "scheduled_service": "no", + "gps_code": "MS47", + "local_code": "MS47" + }, + { + "id": "22350", + "ident": "MS48", + "type": "small_airport", + "name": "George Ford Airport", + "latitude_deg": "30.62190055847168", + "longitude_deg": "-89.69650268554688", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Picayune", + "scheduled_service": "no", + "gps_code": "MS48", + "local_code": "MS48" + }, + { + "id": "22351", + "ident": "MS49", + "type": "small_airport", + "name": "Mc Gehee Air Park", + "latitude_deg": "31.165001", + "longitude_deg": "-90.816164", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Liberty", + "scheduled_service": "no", + "gps_code": "MS49", + "local_code": "MS49" + }, + { + "id": "22352", + "ident": "MS50", + "type": "small_airport", + "name": "Clay Airport", + "latitude_deg": "31.579299926757812", + "longitude_deg": "-90.11119842529297", + "elevation_ft": "201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Monticello", + "scheduled_service": "no", + "gps_code": "MS50", + "local_code": "MS50" + }, + { + "id": "22353", + "ident": "MS52", + "type": "small_airport", + "name": "Leuth Flying Service Airport", + "latitude_deg": "33.92369842529297", + "longitude_deg": "-88.73059844970703", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Okolona", + "scheduled_service": "no", + "gps_code": "MS52", + "local_code": "MS52" + }, + { + "id": "22354", + "ident": "MS53", + "type": "closed", + "name": "Wolf River Ranch Airport", + "latitude_deg": "30.916584", + "longitude_deg": "-89.444826", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Lumberton", + "scheduled_service": "no", + "gps_code": "MS53", + "local_code": "MS53" + }, + { + "id": "22355", + "ident": "MS54", + "type": "small_airport", + "name": "Burney Farms Airport", + "latitude_deg": "34.00979995727539", + "longitude_deg": "-89.73619842529297", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Coffeeville", + "scheduled_service": "no", + "gps_code": "MS54", + "local_code": "MS54" + }, + { + "id": "22356", + "ident": "MS55", + "type": "small_airport", + "name": "Schloss Adlers Airport", + "latitude_deg": "34.8109016418457", + "longitude_deg": "-89.57839965820312", + "elevation_ft": "478", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Red Banks", + "scheduled_service": "no", + "gps_code": "MS55", + "local_code": "MS55" + }, + { + "id": "22357", + "ident": "MS56", + "type": "heliport", + "name": "Gilmore Memorial Hospital Heliport", + "latitude_deg": "33.977585", + "longitude_deg": "-88.475078", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Amory", + "scheduled_service": "no", + "gps_code": "MS56", + "local_code": "MS56" + }, + { + "id": "22358", + "ident": "MS57", + "type": "small_airport", + "name": "Fred Netterville Lumber Company / Wilkinson Community Airport", + "latitude_deg": "31.220558", + "longitude_deg": "-91.24602", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Woodville", + "scheduled_service": "no", + "gps_code": "MS57", + "local_code": "MS57" + }, + { + "id": "22359", + "ident": "MS58", + "type": "small_airport", + "name": "Tullos Field", + "latitude_deg": "32.165401458740234", + "longitude_deg": "-90.04399871826172", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Florence", + "scheduled_service": "no", + "gps_code": "MS58", + "local_code": "MS58" + }, + { + "id": "22360", + "ident": "MS59", + "type": "small_airport", + "name": "Valley of The Moon Airport", + "latitude_deg": "31.996999740600586", + "longitude_deg": "-90.84220123291016", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Hermanville", + "scheduled_service": "no", + "gps_code": "MS59", + "local_code": "MS59" + }, + { + "id": "22361", + "ident": "MS60", + "type": "heliport", + "name": "Lundys Heliport", + "latitude_deg": "30.454599380493164", + "longitude_deg": "-88.9375", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Biloxi", + "scheduled_service": "no", + "gps_code": "MS60", + "local_code": "MS60" + }, + { + "id": "22362", + "ident": "MS61", + "type": "small_airport", + "name": "Simpson Field", + "latitude_deg": "30.625200271606445", + "longitude_deg": "-89.7333984375", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Picayune", + "scheduled_service": "no", + "gps_code": "MS61", + "local_code": "MS61" + }, + { + "id": "22363", + "ident": "MS62", + "type": "small_airport", + "name": "Davis Field", + "latitude_deg": "34.9911994934082", + "longitude_deg": "-89.81559753417969", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Olive Branch", + "scheduled_service": "no", + "gps_code": "MS62", + "local_code": "MS62" + }, + { + "id": "22364", + "ident": "MS63", + "type": "small_airport", + "name": "Rye Field", + "latitude_deg": "34.054298400878906", + "longitude_deg": "-88.37120056152344", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Smithville", + "scheduled_service": "no", + "gps_code": "MS63", + "local_code": "MS63" + }, + { + "id": "22365", + "ident": "MS64", + "type": "small_airport", + "name": "Vaiden Landing Airport", + "latitude_deg": "34.848342", + "longitude_deg": "-89.877992", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Hernando", + "scheduled_service": "no", + "gps_code": "MS64", + "local_code": "MS64" + }, + { + "id": "22366", + "ident": "MS65", + "type": "small_airport", + "name": "Delta Flying Service Inc Airport", + "latitude_deg": "34.95009994506836", + "longitude_deg": "-90.20010375976562", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Walls", + "scheduled_service": "no", + "gps_code": "MS65", + "local_code": "MS65" + }, + { + "id": "22367", + "ident": "MS66", + "type": "small_airport", + "name": "Kennedy Executive Airport", + "latitude_deg": "30.445999145507812", + "longitude_deg": "-88.9259033203125", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Biloxi", + "scheduled_service": "no", + "gps_code": "MS66", + "local_code": "MS66" + }, + { + "id": "22368", + "ident": "MS67", + "type": "heliport", + "name": "Gulf Coast Community Hospital Emergency Heliport", + "latitude_deg": "30.390857", + "longitude_deg": "-88.998821", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Biloxi", + "scheduled_service": "no", + "gps_code": "MS67", + "local_code": "MS67" + }, + { + "id": "22369", + "ident": "MS68", + "type": "closed", + "name": "Lamb's Field", + "latitude_deg": "34.3265", + "longitude_deg": "-88.572502", + "elevation_ft": "458", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Mantachie", + "scheduled_service": "no", + "keywords": "MS68" + }, + { + "id": "22370", + "ident": "MS69", + "type": "small_airport", + "name": "Falcon Field", + "latitude_deg": "32.10879898071289", + "longitude_deg": "-90.04650115966797", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Star", + "scheduled_service": "no", + "gps_code": "MS69", + "local_code": "MS69" + }, + { + "id": "22371", + "ident": "MS70", + "type": "small_airport", + "name": "Mc Lain -Calico Airport", + "latitude_deg": "32.7354011536", + "longitude_deg": "-88.92590332030001", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "MS70", + "local_code": "MS70" + }, + { + "id": "22372", + "ident": "MS71", + "type": "small_airport", + "name": "Slobovia Outernational Airport", + "latitude_deg": "32.49509811401367", + "longitude_deg": "-90.29290008544922", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Pocahontas", + "scheduled_service": "no", + "gps_code": "MS71", + "local_code": "MS71" + }, + { + "id": "22373", + "ident": "MS72", + "type": "heliport", + "name": "Singing River Hospital Heliport", + "latitude_deg": "30.376100540161133", + "longitude_deg": "-88.53109741210938", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Pascagoula", + "scheduled_service": "no", + "gps_code": "MS72", + "local_code": "MS72" + }, + { + "id": "22374", + "ident": "MS73", + "type": "heliport", + "name": "Segars Heliport", + "latitude_deg": "34.752899169921875", + "longitude_deg": "-88.21839904785156", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Iuka", + "scheduled_service": "no", + "gps_code": "MS73", + "local_code": "MS73" + }, + { + "id": "22375", + "ident": "MS74", + "type": "closed", + "name": "Lee's Field", + "latitude_deg": "30.536301", + "longitude_deg": "-89.5112", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Picayune", + "scheduled_service": "no", + "keywords": "MS74" + }, + { + "id": "22376", + "ident": "MS75", + "type": "small_airport", + "name": "Lewis Airport", + "latitude_deg": "33.013999938964844", + "longitude_deg": "-91.03900146484375", + "elevation_ft": "112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Glen Allan", + "scheduled_service": "no", + "gps_code": "MS75", + "local_code": "MS75" + }, + { + "id": "22377", + "ident": "MS76", + "type": "small_airport", + "name": "Wade Field", + "latitude_deg": "33.77289962768555", + "longitude_deg": "-89.24259948730469", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Calhoun City", + "scheduled_service": "no", + "gps_code": "MS76", + "local_code": "MS76" + }, + { + "id": "22378", + "ident": "MS77", + "type": "small_airport", + "name": "Lang Flying Service Airport", + "latitude_deg": "33.3317985534668", + "longitude_deg": "-90.64320373535156", + "elevation_ft": "114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Inverness", + "scheduled_service": "no", + "gps_code": "MS77", + "local_code": "MS77" + }, + { + "id": "22379", + "ident": "MS78", + "type": "heliport", + "name": "Pascagoula Refinery Pad Nr 1 Heliport", + "latitude_deg": "30.32939910888672", + "longitude_deg": "-88.50830078125", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Pascagoula", + "scheduled_service": "no", + "gps_code": "MS78", + "local_code": "MS78" + }, + { + "id": "22380", + "ident": "MS79", + "type": "heliport", + "name": "Parkview Regional Medical Center Heliport", + "latitude_deg": "32.34600067138672", + "longitude_deg": "-90.8583984375", + "elevation_ft": "252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Vicksburg", + "scheduled_service": "no", + "gps_code": "MS79", + "local_code": "MS79" + }, + { + "id": "22381", + "ident": "MS80", + "type": "small_airport", + "name": "Hasting Airpark", + "latitude_deg": "33.994598388671875", + "longitude_deg": "-89.3125991821289", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Bruce", + "scheduled_service": "no", + "gps_code": "MS80", + "local_code": "MS80" + }, + { + "id": "22382", + "ident": "MS81", + "type": "heliport", + "name": "Forrest General Hospital Heliport", + "latitude_deg": "31.31920051574707", + "longitude_deg": "-89.3302993774414", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Hattiesburg", + "scheduled_service": "no", + "gps_code": "MS81", + "local_code": "MS81" + }, + { + "id": "22383", + "ident": "MS82", + "type": "small_airport", + "name": "Shade Tree Field", + "latitude_deg": "30.510499954223633", + "longitude_deg": "-89.14730072021484", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Lyman", + "scheduled_service": "no", + "gps_code": "MS82", + "local_code": "MS82" + }, + { + "id": "22384", + "ident": "MS83", + "type": "closed", + "name": "Alton Field", + "latitude_deg": "32.029957", + "longitude_deg": "-90.101082", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Harrisville", + "scheduled_service": "no", + "keywords": "MS83" + }, + { + "id": "45494", + "ident": "MS84", + "type": "heliport", + "name": "Beaman Heliport", + "latitude_deg": "31.361556", + "longitude_deg": "-89.161333", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Petal", + "scheduled_service": "no", + "gps_code": "MS84", + "local_code": "MS84" + }, + { + "id": "22385", + "ident": "MS85", + "type": "small_airport", + "name": "Skelton Airport", + "latitude_deg": "33.597900390625", + "longitude_deg": "-90.80290222167969", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Shaw", + "scheduled_service": "no", + "gps_code": "MS85", + "local_code": "MS85" + }, + { + "id": "22386", + "ident": "MS86", + "type": "small_airport", + "name": "Oglesby Farms Inc. Airport", + "latitude_deg": "33.05009841918945", + "longitude_deg": "-91.0833969116211", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Glen Allan", + "scheduled_service": "no", + "gps_code": "MS86", + "local_code": "MS86" + }, + { + "id": "22387", + "ident": "MS87", + "type": "heliport", + "name": "Ben L. Briggs Heliport", + "latitude_deg": "30.370500564575195", + "longitude_deg": "-88.55699920654297", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Pascagoula", + "scheduled_service": "no", + "gps_code": "MS87", + "local_code": "MS87" + }, + { + "id": "22388", + "ident": "MS88", + "type": "small_airport", + "name": "Oreck Airport", + "latitude_deg": "30.77739906311035", + "longitude_deg": "-89.72509765625", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Poplarville", + "scheduled_service": "no", + "gps_code": "MS88", + "local_code": "MS88" + }, + { + "id": "22389", + "ident": "MS89", + "type": "heliport", + "name": "Gulfport Jail Heliport", + "latitude_deg": "30.43829917907715", + "longitude_deg": "-89.060302734375", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Gulfport", + "scheduled_service": "no", + "gps_code": "MS89", + "local_code": "MS89" + }, + { + "id": "22390", + "ident": "MS90", + "type": "small_airport", + "name": "Flowood Industrial Airport", + "latitude_deg": "32.315601", + "longitude_deg": "-90.1436", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Flowood", + "scheduled_service": "no", + "gps_code": "MS90", + "local_code": "MS90" + }, + { + "id": "22391", + "ident": "MS91", + "type": "heliport", + "name": "Adjutant General Office Heliport", + "latitude_deg": "32.324729", + "longitude_deg": "-90.165911", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "MS91", + "local_code": "MS91" + }, + { + "id": "22392", + "ident": "MS92", + "type": "small_airport", + "name": "Heigle Field", + "latitude_deg": "32.920101165771484", + "longitude_deg": "-91.02570343017578", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Mayersville", + "scheduled_service": "no", + "gps_code": "MS92", + "local_code": "MS92" + }, + { + "id": "22393", + "ident": "MS93", + "type": "small_airport", + "name": "Hooper Skylark Field", + "latitude_deg": "30.726600646972656", + "longitude_deg": "-89.73169708251953", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Mc Neil", + "scheduled_service": "no", + "gps_code": "MS93", + "local_code": "MS93" + }, + { + "id": "22394", + "ident": "MS94", + "type": "heliport", + "name": "Nwmrmc Heliport", + "latitude_deg": "34.17839813232422", + "longitude_deg": "-90.55180358886719", + "elevation_ft": "168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Clarksdale", + "scheduled_service": "no", + "gps_code": "MS94", + "local_code": "MS94" + }, + { + "id": "22395", + "ident": "MS95", + "type": "small_airport", + "name": "Dorr Field", + "latitude_deg": "33.8473014831543", + "longitude_deg": "-90.72509765625", + "elevation_ft": "142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Merigold", + "scheduled_service": "no", + "gps_code": "MS95", + "local_code": "MS95" + }, + { + "id": "22396", + "ident": "MS96", + "type": "small_airport", + "name": "Barrett Field", + "latitude_deg": "32.76679992675781", + "longitude_deg": "-89.10009765625", + "elevation_ft": "435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "MS96", + "local_code": "MS96" + }, + { + "id": "22397", + "ident": "MS97", + "type": "closed", + "name": "VA Hospital Heliport", + "latitude_deg": "30.4149", + "longitude_deg": "-88.942802", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Biloxi", + "scheduled_service": "no", + "keywords": "MS97" + }, + { + "id": "22398", + "ident": "MS98", + "type": "closed", + "name": "Farmco Field", + "latitude_deg": "30.767504", + "longitude_deg": "-88.602505", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Lucedale", + "scheduled_service": "no", + "gps_code": "MS98", + "local_code": "MS98" + }, + { + "id": "22399", + "ident": "MS99", + "type": "closed", + "name": "Rocking T Ranch Airport", + "latitude_deg": "30.251357", + "longitude_deg": "-89.545527", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Bay St. Louis", + "scheduled_service": "no", + "keywords": "MS99" + }, + { + "id": "42003", + "ident": "MSAC", + "type": "small_airport", + "name": "La Aramuaca Airport", + "latitude_deg": "13.447990417480469", + "longitude_deg": "-88.12010955810547", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-SM", + "municipality": "San Miguel", + "scheduled_service": "no", + "gps_code": "MSAC" + }, + { + "id": "314139", + "ident": "MSB", + "type": "seaplane_base", + "name": "Marigot Seaplane Base", + "latitude_deg": "18.0696", + "longitude_deg": "-63.087", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "MF", + "iso_region": "MF-U-A", + "municipality": "Saint Martin", + "scheduled_service": "no", + "iata_code": "MSB" + }, + { + "id": "42004", + "ident": "MSBS", + "type": "small_airport", + "name": "Barillas Airport", + "latitude_deg": "13.265262603759766", + "longitude_deg": "-88.49913024902344", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-US", + "municipality": "Barrillas", + "scheduled_service": "no", + "gps_code": "MSBS" + }, + { + "id": "42005", + "ident": "MSCD", + "type": "small_airport", + "name": "Ceiba Doblada Airport", + "latitude_deg": "13.213010787963867", + "longitude_deg": "-88.60281372070312", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-US", + "municipality": "Ceiba Doblada", + "scheduled_service": "no", + "gps_code": "MSCD" + }, + { + "id": "42006", + "ident": "MSCH", + "type": "small_airport", + "name": "La Chepona Airport", + "latitude_deg": "13.186094", + "longitude_deg": "-88.406448", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-US", + "municipality": "La Chepona", + "scheduled_service": "no", + "gps_code": "MSCH", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Chepona_Airport" + }, + { + "id": "42007", + "ident": "MSCM", + "type": "small_airport", + "name": "Corral De Mulas Airport", + "latitude_deg": "13.205588340759277", + "longitude_deg": "-88.5473403930664", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-US", + "municipality": "Corral de Mulas", + "scheduled_service": "no", + "gps_code": "MSCM" + }, + { + "id": "42008", + "ident": "MSCN", + "type": "small_airport", + "name": "Casas Nuevas Airport", + "latitude_deg": "13.309972763061523", + "longitude_deg": "-88.50586700439453", + "elevation_ft": "157", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-US", + "municipality": "Jiquilisco", + "scheduled_service": "no", + "gps_code": "MSCN" + }, + { + "id": "42009", + "ident": "MSCR", + "type": "small_airport", + "name": "La Carrera Airport", + "latitude_deg": "13.328702926635742", + "longitude_deg": "-88.52091979980469", + "elevation_ft": "254", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-US", + "municipality": "Jiquilisco", + "scheduled_service": "no", + "gps_code": "MSCR" + }, + { + "id": "42010", + "ident": "MSES", + "type": "small_airport", + "name": "Espiritu Santo Airport", + "latitude_deg": "13.219324111938477", + "longitude_deg": "-88.55404663085938", + "elevation_ft": "1", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-US", + "municipality": "Espíritu Santo", + "scheduled_service": "no", + "gps_code": "MSES" + }, + { + "id": "4818", + "ident": "MSET", + "type": "small_airport", + "name": "El Tamarindo Airport", + "latitude_deg": "13.1625995636", + "longitude_deg": "-87.904800415", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-UN", + "municipality": "Canoguero", + "scheduled_service": "no", + "gps_code": "MSET", + "local_code": "MS1A", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Tamarindo_Airport" + }, + { + "id": "42011", + "ident": "MSJC", + "type": "small_airport", + "name": "El Jocotillo Airport", + "latitude_deg": "13.577824", + "longitude_deg": "-89.733238", + "elevation_ft": "127", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-SO", + "municipality": "El Jocotillo", + "scheduled_service": "no", + "gps_code": "MSJC" + }, + { + "id": "42012", + "ident": "MSLC", + "type": "small_airport", + "name": "La Cabaña Airport", + "latitude_deg": "14.009810447692871", + "longitude_deg": "-89.18476104736328", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-SS", + "municipality": "La Cabaña", + "scheduled_service": "no", + "gps_code": "MSLC" + }, + { + "id": "4819", + "ident": "MSLD", + "type": "small_airport", + "name": "Los Comandos Airport", + "latitude_deg": "13.726200103759766", + "longitude_deg": "-88.10669708251953", + "elevation_ft": "919", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-MO", + "municipality": "San Francisco Gotera", + "scheduled_service": "no", + "gps_code": "MSLD", + "local_code": "MS1B" + }, + { + "id": "42013", + "ident": "MSLG", + "type": "closed", + "name": "La Gloria Airport", + "latitude_deg": "13.71474", + "longitude_deg": "-89.191345", + "elevation_ft": "2163", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-SS", + "municipality": "San Salvador", + "scheduled_service": "no", + "gps_code": "MSLG" + }, + { + "id": "42014", + "ident": "MSLM", + "type": "small_airport", + "name": "Las Mesas Airport", + "latitude_deg": "13.487070083618164", + "longitude_deg": "-89.19265747070312", + "elevation_ft": "187", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-LI", + "municipality": "Las Mesas", + "scheduled_service": "no", + "gps_code": "MSLM" + }, + { + "id": "4820", + "ident": "MSLP", + "type": "large_airport", + "name": "Monseñor Óscar Arnulfo Romero International Airport", + "latitude_deg": "13.4409", + "longitude_deg": "-89.055702", + "elevation_ft": "101", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-PA", + "municipality": "San Salvador (San Luis Talpa)", + "scheduled_service": "yes", + "gps_code": "MSLP", + "iata_code": "SAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monse%C3%B1or_%C3%93scar_Arnulfo_Romero_International_Airport" + }, + { + "id": "42015", + "ident": "MSPT", + "type": "small_airport", + "name": "El Platanar Airport", + "latitude_deg": "13.945300102233887", + "longitude_deg": "-89.06279754638672", + "elevation_ft": "1354", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-CU", + "municipality": "Suchitoto", + "scheduled_service": "no", + "gps_code": "MSPT" + }, + { + "id": "42016", + "ident": "MSRC", + "type": "small_airport", + "name": "El Ronco Airport", + "latitude_deg": "14.31871509552002", + "longitude_deg": "-89.50689697265625", + "elevation_ft": "1460", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-SA", + "municipality": "Metapán", + "scheduled_service": "no", + "gps_code": "MSRC" + }, + { + "id": "299894", + "ident": "MSSA", + "type": "small_airport", + "name": "El Palmer Airport", + "latitude_deg": "14.0672222222", + "longitude_deg": "-89.6322222222", + "elevation_ft": "2229", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-SA", + "municipality": "Santa Ana", + "scheduled_service": "no", + "gps_code": "MSSA" + }, + { + "id": "42017", + "ident": "MSSJ", + "type": "small_airport", + "name": "Punta San Juan Airport", + "latitude_deg": "13.17873477935791", + "longitude_deg": "-88.47315979003906", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-US", + "municipality": "Corral de Mulas", + "scheduled_service": "no", + "gps_code": "MSSJ" + }, + { + "id": "31958", + "ident": "MSSM", + "type": "small_airport", + "name": "El Papalon Airport", + "latitude_deg": "13.4441", + "longitude_deg": "-88.126999", + "elevation_ft": "283", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-SM", + "municipality": "San Miguel", + "scheduled_service": "no", + "gps_code": "MSSM", + "keywords": "MSPP, San Miguel Regional" + }, + { + "id": "42018", + "ident": "MSSN", + "type": "small_airport", + "name": "San Ramon Airport", + "latitude_deg": "13.197465896606445", + "longitude_deg": "-87.9609146118164", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-UN", + "municipality": "San Ramón", + "scheduled_service": "no", + "gps_code": "MSSN" + }, + { + "id": "4821", + "ident": "MSSS", + "type": "medium_airport", + "name": "Ilopango International Airport", + "latitude_deg": "13.69950008392334", + "longitude_deg": "-89.11990356445312", + "elevation_ft": "2021", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-SS", + "municipality": "San Salvador", + "scheduled_service": "no", + "gps_code": "MSSS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ilopango_International_Airport" + }, + { + "id": "42019", + "ident": "MSZT", + "type": "small_airport", + "name": "El Zapote Airport", + "latitude_deg": "13.707954406738281", + "longitude_deg": "-90.0262680053711", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-AH", + "municipality": "Barra de Santiago", + "scheduled_service": "no", + "gps_code": "MSZT" + }, + { + "id": "312346", + "ident": "MT-0001", + "type": "closed", + "name": "RAF Hal Far", + "latitude_deg": "35.81333", + "longitude_deg": "14.513379", + "elevation_ft": "235", + "continent": "EU", + "iso_country": "MT", + "iso_region": "MT-05", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Hal_Far", + "keywords": "HMS Falcon" + }, + { + "id": "312347", + "ident": "MT-0002", + "type": "closed", + "name": "RAF Safi", + "latitude_deg": "35.839985", + "longitude_deg": "14.494478", + "continent": "EU", + "iso_country": "MT", + "iso_region": "MT-25", + "municipality": "Safi", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Maintenance_Base_Safi" + }, + { + "id": "312348", + "ident": "MT-0003", + "type": "closed", + "name": "Ta' Qali", + "latitude_deg": "35.896914", + "longitude_deg": "14.418733", + "continent": "EU", + "iso_country": "MT", + "iso_region": "MT-01", + "scheduled_service": "no" + }, + { + "id": "312349", + "ident": "MT-0004", + "type": "closed", + "name": "RAF Krendi", + "latitude_deg": "35.835423", + "longitude_deg": "14.435584", + "continent": "EU", + "iso_country": "MT", + "iso_region": "MT-44", + "municipality": "Qrendi", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Krendi" + }, + { + "id": "312350", + "ident": "MT-0005", + "type": "closed", + "name": "Marsa Airfield", + "latitude_deg": "35.876926", + "longitude_deg": "14.489352", + "continent": "EU", + "iso_country": "MT", + "iso_region": "MT-26", + "municipality": "Marsa", + "scheduled_service": "no" + }, + { + "id": "354236", + "ident": "MT-0006", + "type": "closed", + "name": "Ta' Lambert Airfield", + "latitude_deg": "36.03082", + "longitude_deg": "14.264878", + "elevation_ft": "328", + "continent": "EU", + "iso_country": "MT", + "iso_region": "MT-62", + "municipality": "Xewkija", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ta%27_Lambert_Aerodrome" + }, + { + "id": "22400", + "ident": "MT01", + "type": "small_airport", + "name": "Owen Bros Airport", + "latitude_deg": "47.61800003051758", + "longitude_deg": "-110.09200286865234", + "elevation_ft": "3106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Geraldine", + "scheduled_service": "no", + "gps_code": "MT01", + "local_code": "MT01" + }, + { + "id": "22401", + "ident": "MT02", + "type": "small_airport", + "name": "Hellinger Airport", + "latitude_deg": "48.538299560546875", + "longitude_deg": "-111.49700164794922", + "elevation_ft": "3215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Devon", + "scheduled_service": "no", + "gps_code": "MT02", + "local_code": "MT02" + }, + { + "id": "45510", + "ident": "MT03", + "type": "small_airport", + "name": "Lakeside Airport", + "latitude_deg": "47.993408", + "longitude_deg": "-114.224306", + "elevation_ft": "3440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Lakeside", + "scheduled_service": "no", + "gps_code": "MT03", + "local_code": "MT03" + }, + { + "id": "22402", + "ident": "MT04", + "type": "small_airport", + "name": "Olfert Airport", + "latitude_deg": "48.40420150756836", + "longitude_deg": "-106.00900268554688", + "elevation_ft": "2750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Lustre", + "scheduled_service": "no", + "gps_code": "MT04", + "local_code": "MT04" + }, + { + "id": "22403", + "ident": "MT05", + "type": "small_airport", + "name": "Laird Ranch Airport", + "latitude_deg": "45.66809844970703", + "longitude_deg": "-104.7030029296875", + "elevation_ft": "3462", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Ekalaka", + "scheduled_service": "no", + "gps_code": "MT05", + "local_code": "MT05" + }, + { + "id": "22404", + "ident": "MT06", + "type": "small_airport", + "name": "Duncan Airport", + "latitude_deg": "46.570461", + "longitude_deg": "-112.175274", + "elevation_ft": "4260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Helena", + "scheduled_service": "no", + "gps_code": "MT06", + "local_code": "MT06" + }, + { + "id": "22405", + "ident": "MT07", + "type": "closed", + "name": "Langhus Airstrip", + "latitude_deg": "46.041598", + "longitude_deg": "-110.158997", + "elevation_ft": "5785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Melville", + "scheduled_service": "no", + "keywords": "MT07" + }, + { + "id": "22406", + "ident": "MT08", + "type": "small_airport", + "name": "Zortman Airport", + "latitude_deg": "47.91669845581055", + "longitude_deg": "-108.48300170898438", + "elevation_ft": "3900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Zortman", + "scheduled_service": "no", + "gps_code": "MT08", + "local_code": "MT08" + }, + { + "id": "22407", + "ident": "MT09", + "type": "closed", + "name": "Floyd Ranch Airport", + "latitude_deg": "48.850049", + "longitude_deg": "-106.596209", + "elevation_ft": "2948", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Opheim", + "scheduled_service": "no", + "keywords": "MT09" + }, + { + "id": "22408", + "ident": "MT10", + "type": "heliport", + "name": "Riverside Heliport", + "latitude_deg": "48.215514", + "longitude_deg": "-114.298047", + "elevation_ft": "2930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Kalispell", + "scheduled_service": "no", + "gps_code": "MT10", + "local_code": "MT10" + }, + { + "id": "22409", + "ident": "MT11", + "type": "closed", + "name": "Etchart Field", + "latitude_deg": "48.3167", + "longitude_deg": "-106.834", + "elevation_ft": "2157", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Tampico", + "scheduled_service": "no", + "keywords": "MT11" + }, + { + "id": "22410", + "ident": "MT12", + "type": "closed", + "name": "Smith Field", + "latitude_deg": "45.938499", + "longitude_deg": "-112.564003", + "elevation_ft": "6000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Butte", + "scheduled_service": "no", + "keywords": "MT12" + }, + { + "id": "22411", + "ident": "MT13", + "type": "closed", + "name": "White Sulphur Springs Ranger Station Heliport", + "latitude_deg": "46.5513", + "longitude_deg": "-110.913001", + "elevation_ft": "5160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "White Sulphur Springs", + "scheduled_service": "no", + "keywords": "MT13" + }, + { + "id": "22412", + "ident": "MT14", + "type": "small_airport", + "name": "Jerry Creek Airport", + "latitude_deg": "45.82350158691406", + "longitude_deg": "-112.88600158691406", + "elevation_ft": "5940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Wise River", + "scheduled_service": "no", + "gps_code": "MT14", + "local_code": "MT14" + }, + { + "id": "22413", + "ident": "MT15", + "type": "small_airport", + "name": "Fort Harrison Army Airfield", + "latitude_deg": "46.624651", + "longitude_deg": "-112.110927", + "elevation_ft": "4050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Helena", + "scheduled_service": "no", + "gps_code": "MT15", + "local_code": "MT15" + }, + { + "id": "22414", + "ident": "MT16", + "type": "closed", + "name": "Buffalo Trail Ranch Strip", + "latitude_deg": "47.013802", + "longitude_deg": "-113.282997", + "elevation_ft": "3906", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Ovando", + "scheduled_service": "no", + "keywords": "MT16" + }, + { + "id": "22415", + "ident": "MT17", + "type": "closed", + "name": "Wurtz Airport", + "latitude_deg": "48.904999", + "longitude_deg": "-114.382004", + "elevation_ft": "3800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Polebridge", + "scheduled_service": "no", + "keywords": "MT17" + }, + { + "id": "45509", + "ident": "MT18", + "type": "small_airport", + "name": "Torres Airport", + "latitude_deg": "48.287534", + "longitude_deg": "-114.183698", + "elevation_ft": "3078", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Columbia Falls", + "scheduled_service": "no", + "gps_code": "MT18", + "local_code": "MT18", + "keywords": "Hoerner" + }, + { + "id": "22416", + "ident": "MT19", + "type": "small_airport", + "name": "Hoversland Airport", + "latitude_deg": "47.591", + "longitude_deg": "-114.052002", + "elevation_ft": "3330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Ronan", + "scheduled_service": "no", + "gps_code": "MT19", + "local_code": "MT19", + "keywords": "Olson Airport" + }, + { + "id": "22417", + "ident": "MT20", + "type": "small_airport", + "name": "Hollstein Ranch Airport", + "latitude_deg": "46.858299255371094", + "longitude_deg": "-104.0989990234375", + "elevation_ft": "2778", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Wibaux", + "scheduled_service": "no", + "gps_code": "MT20", + "local_code": "MT20" + }, + { + "id": "22418", + "ident": "MT21", + "type": "closed", + "name": "Flying Arrow Ranch Airport", + "latitude_deg": "45.9016", + "longitude_deg": "-112.549004", + "elevation_ft": "5950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Butte", + "scheduled_service": "no", + "keywords": "MT21" + }, + { + "id": "22419", + "ident": "MT22", + "type": "closed", + "name": "Tezak's-Colterville-Spur Airport", + "latitude_deg": "45.399899", + "longitude_deg": "-112.167", + "elevation_ft": "5000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Sheridan", + "scheduled_service": "no", + "keywords": "MT22" + }, + { + "id": "22420", + "ident": "MT23", + "type": "heliport", + "name": "St Patrick Hospital Heliport", + "latitude_deg": "46.872100830078125", + "longitude_deg": "-114.0009994506836", + "elevation_ft": "3282", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Missoula", + "scheduled_service": "no", + "gps_code": "MT23", + "local_code": "MT23" + }, + { + "id": "22421", + "ident": "MT24", + "type": "closed", + "name": "Beacon Star Antique Airfield", + "latitude_deg": "46.972198", + "longitude_deg": "-109.613998", + "elevation_ft": "4320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Moore", + "scheduled_service": "no", + "keywords": "MT24" + }, + { + "id": "22422", + "ident": "MT25", + "type": "heliport", + "name": "St Vincent Hospital Heliport", + "latitude_deg": "45.78329849243164", + "longitude_deg": "-108.50199890136719", + "elevation_ft": "3300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Billings", + "scheduled_service": "no", + "gps_code": "MT25", + "local_code": "MT25" + }, + { + "id": "22423", + "ident": "MT26", + "type": "closed", + "name": "Ranch Strip", + "latitude_deg": "47.470501", + "longitude_deg": "-111.237", + "elevation_ft": "3355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Great Falls", + "scheduled_service": "no" + }, + { + "id": "22424", + "ident": "MT27", + "type": "heliport", + "name": "Columbus Hospital Heliport", + "latitude_deg": "47.488051", + "longitude_deg": "-111.296879", + "elevation_ft": "3418", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Great Falls", + "scheduled_service": "no", + "gps_code": "MT27", + "local_code": "MT27" + }, + { + "id": "22425", + "ident": "MT28", + "type": "heliport", + "name": "Kalispell Regional Hospital Heliport", + "latitude_deg": "48.213307", + "longitude_deg": "-114.324009", + "elevation_ft": "2975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Kalispell", + "scheduled_service": "no", + "gps_code": "MT28", + "local_code": "MT28" + }, + { + "id": "22426", + "ident": "MT29", + "type": "small_airport", + "name": "Sunday Creek Airpark", + "latitude_deg": "46.47890090942383", + "longitude_deg": "-105.85800170898438", + "elevation_ft": "2490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Miles City", + "scheduled_service": "no", + "gps_code": "MT29", + "local_code": "MT29" + }, + { + "id": "22427", + "ident": "MT30", + "type": "small_airport", + "name": "Trapper Creek Strip", + "latitude_deg": "45.94020080566406", + "longitude_deg": "-114.13700103759766", + "elevation_ft": "4040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Conner", + "scheduled_service": "no", + "gps_code": "MT30", + "local_code": "MT30" + }, + { + "id": "22428", + "ident": "MT31", + "type": "heliport", + "name": "Central Montana Hospital and Nursing Home Heliport", + "latitude_deg": "47.05799865722656", + "longitude_deg": "-109.44000244140625", + "elevation_ft": "4200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Lewistown", + "scheduled_service": "no", + "gps_code": "MT31", + "local_code": "MT31" + }, + { + "id": "22429", + "ident": "MT32", + "type": "small_airport", + "name": "Ckye Field", + "latitude_deg": "46.53879928588867", + "longitude_deg": "-114.04000091552734", + "elevation_ft": "3600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Stevensville", + "scheduled_service": "no", + "gps_code": "MT32", + "local_code": "MT32" + }, + { + "id": "22430", + "ident": "MT33", + "type": "small_airport", + "name": "Bair Airport", + "latitude_deg": "47.409400939941406", + "longitude_deg": "-111.48699951171875", + "elevation_ft": "3340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Ulm", + "scheduled_service": "no", + "gps_code": "MT33", + "local_code": "MT33" + }, + { + "id": "22431", + "ident": "MT34", + "type": "small_airport", + "name": "Ruff Airport", + "latitude_deg": "46.13330078125", + "longitude_deg": "-107.5510025024414", + "elevation_ft": "2740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Custer", + "scheduled_service": "no", + "gps_code": "MT34", + "local_code": "MT34" + }, + { + "id": "22432", + "ident": "MT35", + "type": "heliport", + "name": "St Peter's Community Hospital Heliport", + "latitude_deg": "46.5817", + "longitude_deg": "-111.99608", + "elevation_ft": "4115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Helena", + "scheduled_service": "no", + "gps_code": "MT35", + "local_code": "MT35" + }, + { + "id": "22433", + "ident": "MT36", + "type": "closed", + "name": "Cottontail Ranch Airport", + "latitude_deg": "46.132198", + "longitude_deg": "-110.046997", + "elevation_ft": "5340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Melville", + "scheduled_service": "no", + "keywords": "MT36" + }, + { + "id": "22434", + "ident": "MT37", + "type": "small_airport", + "name": "Sanders Airport", + "latitude_deg": "48.12435", + "longitude_deg": "-114.240711", + "elevation_ft": "2910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Kalispell", + "scheduled_service": "no", + "gps_code": "MT37", + "local_code": "MT37" + }, + { + "id": "22435", + "ident": "MT38", + "type": "small_airport", + "name": "Swank Airport", + "latitude_deg": "48.40340042114258", + "longitude_deg": "-105.15699768066406", + "elevation_ft": "2205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Poplar", + "scheduled_service": "no", + "gps_code": "MT38", + "local_code": "MT38" + }, + { + "id": "22436", + "ident": "MT39", + "type": "small_airport", + "name": "Black Canyon Ranch Airport", + "latitude_deg": "47.102717", + "longitude_deg": "-113.311803", + "elevation_ft": "4260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Seeley Lake", + "scheduled_service": "no", + "gps_code": "MT39", + "local_code": "MT39" + }, + { + "id": "22437", + "ident": "MT40", + "type": "small_airport", + "name": "Horner Field", + "latitude_deg": "47.593655", + "longitude_deg": "-111.270213", + "elevation_ft": "3430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Great Falls", + "scheduled_service": "no", + "local_code": "MT49", + "keywords": "MT40" + }, + { + "id": "22438", + "ident": "MT41", + "type": "small_airport", + "name": "Jefco Skypark Airport", + "latitude_deg": "45.878299713134766", + "longitude_deg": "-112.11699676513672", + "elevation_ft": "4510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Whitehall", + "scheduled_service": "no", + "gps_code": "MT41", + "local_code": "MT41" + }, + { + "id": "22439", + "ident": "MT42", + "type": "small_airport", + "name": "Hasskamp STOLport", + "latitude_deg": "45.910499572753906", + "longitude_deg": "-111.51399993896484", + "elevation_ft": "4052", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Three Forks", + "scheduled_service": "no", + "gps_code": "MT42", + "local_code": "MT42" + }, + { + "id": "22440", + "ident": "MT43", + "type": "small_airport", + "name": "Klies Air Strip", + "latitude_deg": "46.34629821777344", + "longitude_deg": "-112.34400177001953", + "elevation_ft": "6300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Basin", + "scheduled_service": "no", + "gps_code": "MT43", + "local_code": "MT43" + }, + { + "id": "22441", + "ident": "MT44", + "type": "heliport", + "name": "Missoula Unit Heliport", + "latitude_deg": "46.855499267578125", + "longitude_deg": "-114.05899810791016", + "elevation_ft": "3145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Missoula", + "scheduled_service": "no", + "gps_code": "MT44", + "local_code": "MT44" + }, + { + "id": "22442", + "ident": "MT45", + "type": "small_airport", + "name": "Castleberry Airport", + "latitude_deg": "45.90890121459961", + "longitude_deg": "-104.57599639892578", + "elevation_ft": "3373", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Ekalaka", + "scheduled_service": "no", + "gps_code": "MT45", + "local_code": "MT45" + }, + { + "id": "22443", + "ident": "MT46", + "type": "closed", + "name": "Lakeview Airport", + "latitude_deg": "44.619432", + "longitude_deg": "-111.798163", + "elevation_ft": "6630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Lima", + "scheduled_service": "no", + "keywords": "MT46" + }, + { + "id": "22444", + "ident": "MT47", + "type": "small_airport", + "name": "Metzel Creek Airport", + "latitude_deg": "44.6869010925293", + "longitude_deg": "-111.89399719238281", + "elevation_ft": "6691", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Lakeview", + "scheduled_service": "no", + "gps_code": "MT47", + "local_code": "MT47" + }, + { + "id": "22445", + "ident": "MT48", + "type": "small_airport", + "name": "Flying Y Ranch Airport", + "latitude_deg": "45.42629", + "longitude_deg": "-110.656532", + "elevation_ft": "4857", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Livingston", + "scheduled_service": "no", + "gps_code": "MT48", + "local_code": "MT48" + }, + { + "id": "22446", + "ident": "MT49", + "type": "small_airport", + "name": "Ford's South Airport", + "latitude_deg": "46.923500061035156", + "longitude_deg": "-114.08799743652344", + "elevation_ft": "3200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Lolo", + "scheduled_service": "no", + "gps_code": "MT49", + "local_code": "MT49" + }, + { + "id": "22447", + "ident": "MT50", + "type": "small_airport", + "name": "Lanning Ranch Airport", + "latitude_deg": "45.087799072265625", + "longitude_deg": "-104.81900024414062", + "elevation_ft": "3995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Alzada", + "scheduled_service": "no", + "gps_code": "MT50", + "local_code": "MT50" + }, + { + "id": "22448", + "ident": "MT51", + "type": "small_airport", + "name": "Zerbe Airport", + "latitude_deg": "48.277000427246094", + "longitude_deg": "-105.96199798583984", + "elevation_ft": "2720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Frazer", + "scheduled_service": "no", + "gps_code": "MT51", + "local_code": "MT51" + }, + { + "id": "22449", + "ident": "MT52", + "type": "small_airport", + "name": "Nine Mile Airport", + "latitude_deg": "47.077701568603516", + "longitude_deg": "-114.41300201416016", + "elevation_ft": "3364", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Huson", + "scheduled_service": "no", + "gps_code": "MT52", + "local_code": "MT52" + }, + { + "id": "22450", + "ident": "MT53", + "type": "small_airport", + "name": "Carson Field", + "latitude_deg": "48.09469985961914", + "longitude_deg": "-114.85199737548828", + "elevation_ft": "3550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Kalispell", + "scheduled_service": "no", + "gps_code": "MT53", + "local_code": "MT53" + }, + { + "id": "22451", + "ident": "MT54", + "type": "small_airport", + "name": "Weaver Airport", + "latitude_deg": "48.243900299072266", + "longitude_deg": "-114.24400329589844", + "elevation_ft": "2929", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Kalispell", + "scheduled_service": "no", + "gps_code": "MT54", + "local_code": "MT54" + }, + { + "id": "22452", + "ident": "MT55", + "type": "heliport", + "name": "Billings Clinic Helipad", + "latitude_deg": "45.789533", + "longitude_deg": "-108.512828", + "elevation_ft": "3137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Billings", + "scheduled_service": "no", + "gps_code": "MT55", + "local_code": "MT55", + "keywords": "Deaconess Medical Center of Billings Inc." + }, + { + "id": "22453", + "ident": "MT56", + "type": "heliport", + "name": "Sourdough Island on Salmon Lake Heliport", + "latitude_deg": "47.09989929199219", + "longitude_deg": "-113.41799926757812", + "elevation_ft": "3980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Seeley Lake", + "scheduled_service": "no", + "gps_code": "MT56", + "local_code": "MT56" + }, + { + "id": "22454", + "ident": "MT57", + "type": "closed", + "name": "Libby Heliport", + "latitude_deg": "48.392799", + "longitude_deg": "-115.544998", + "elevation_ft": "2072", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Libby", + "scheduled_service": "no", + "keywords": "MT57" + }, + { + "id": "22455", + "ident": "MT58", + "type": "small_airport", + "name": "Nelson Airport", + "latitude_deg": "47.766700744628906", + "longitude_deg": "-106.18800354003906", + "elevation_ft": "2425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Haxby / Fort Peck", + "scheduled_service": "no", + "gps_code": "MT58", + "local_code": "MT58" + }, + { + "id": "22456", + "ident": "MT59", + "type": "closed", + "name": "Gardner Airport", + "latitude_deg": "45.2672", + "longitude_deg": "-104.857002", + "elevation_ft": "3560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Hammond", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gardner_Airport_(Montana)", + "keywords": "MT59" + }, + { + "id": "22457", + "ident": "MT60", + "type": "small_airport", + "name": "Langton Airstrip", + "latitude_deg": "48.81439971923828", + "longitude_deg": "-114.35399627685547", + "elevation_ft": "3900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Polebridge", + "scheduled_service": "no", + "gps_code": "MT60", + "local_code": "MT60" + }, + { + "id": "22458", + "ident": "MT61", + "type": "closed", + "name": "Red Mountain Heliport", + "latitude_deg": "46.516602", + "longitude_deg": "-112.200996", + "elevation_ft": "5550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Helena", + "scheduled_service": "no" + }, + { + "id": "22459", + "ident": "MT62", + "type": "closed", + "name": "Ted Luark Private STOLport", + "latitude_deg": "47.0666", + "longitude_deg": "-114.484", + "elevation_ft": "3500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Huson", + "scheduled_service": "no", + "keywords": "MT62" + }, + { + "id": "22460", + "ident": "MT63", + "type": "closed", + "name": "Lee Metcalf National Wildlife Refuge Airport", + "latitude_deg": "46.5555", + "longitude_deg": "-114.072998", + "elevation_ft": "3315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Stevensville", + "scheduled_service": "no", + "keywords": "MT63" + }, + { + "id": "22461", + "ident": "MT64", + "type": "heliport", + "name": "Mineral County Hospital Heliport", + "latitude_deg": "47.18439865112305", + "longitude_deg": "-114.87000274658203", + "elevation_ft": "2800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Superior", + "scheduled_service": "no", + "gps_code": "MT64", + "local_code": "MT64" + }, + { + "id": "323362", + "ident": "MT65", + "type": "small_airport", + "name": "Smithfield Airport", + "latitude_deg": "47.116515", + "longitude_deg": "-109.382105", + "elevation_ft": "4370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Lewistown", + "scheduled_service": "no", + "gps_code": "MT65", + "local_code": "MT65" + }, + { + "id": "22462", + "ident": "MT66", + "type": "closed", + "name": "Livingston Memorial Hospital Heliport", + "latitude_deg": "45.649093", + "longitude_deg": "-110.568579", + "elevation_ft": "4487", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Livingston", + "scheduled_service": "no", + "keywords": "MT66" + }, + { + "id": "22463", + "ident": "MT67", + "type": "heliport", + "name": "Granite County Memorial Hospital Heliport", + "latitude_deg": "46.329898834228516", + "longitude_deg": "-113.29499816894531", + "elevation_ft": "5280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Philipsburg", + "scheduled_service": "no", + "gps_code": "MT67", + "local_code": "MT67" + }, + { + "id": "22464", + "ident": "MT68", + "type": "closed", + "name": "Wood Strip", + "latitude_deg": "46.6208", + "longitude_deg": "-111.938003", + "elevation_ft": "3850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Helena", + "scheduled_service": "no", + "keywords": "MT68" + }, + { + "id": "330677", + "ident": "MT69", + "type": "small_airport", + "name": "Littlebear Airport", + "latitude_deg": "47.727724", + "longitude_deg": "-115.464614", + "elevation_ft": "2579", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Thompson Falls", + "scheduled_service": "no", + "gps_code": "MT69", + "local_code": "MT69" + }, + { + "id": "22465", + "ident": "MT70", + "type": "heliport", + "name": "Benefis Healthcare Heliport", + "latitude_deg": "47.49184", + "longitude_deg": "-111.25983", + "elevation_ft": "3459", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Great Falls", + "scheduled_service": "no", + "gps_code": "MT70", + "local_code": "MT70", + "keywords": "Montana Deaconess Medical Center Heliport" + }, + { + "id": "22466", + "ident": "MT71", + "type": "small_airport", + "name": "Edsall Field", + "latitude_deg": "45.724098205566406", + "longitude_deg": "-111.04299926757812", + "elevation_ft": "4659", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Bozeman", + "scheduled_service": "no", + "gps_code": "MT71", + "local_code": "MT71" + }, + { + "id": "22467", + "ident": "MT72", + "type": "small_airport", + "name": "Hedditch Airport", + "latitude_deg": "46.346001", + "longitude_deg": "-114.176003", + "elevation_ft": "3663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Victor", + "scheduled_service": "no", + "gps_code": "MT72", + "local_code": "MT72" + }, + { + "id": "22468", + "ident": "MT73", + "type": "closed", + "name": "Camas Airport", + "latitude_deg": "46.850805", + "longitude_deg": "-113.538", + "elevation_ft": "3870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Missoula", + "scheduled_service": "no", + "keywords": "MT73" + }, + { + "id": "22469", + "ident": "MT74", + "type": "small_airport", + "name": "Sikorski Ranch Airport", + "latitude_deg": "46.10689926147461", + "longitude_deg": "-104.41500091552734", + "elevation_ft": "3330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Ekalaka", + "scheduled_service": "no", + "gps_code": "MT74", + "local_code": "MT74" + }, + { + "id": "22470", + "ident": "MT75", + "type": "small_airport", + "name": "Buchanan Ranch Airport", + "latitude_deg": "47.430198669433594", + "longitude_deg": "-111.45999908447266", + "elevation_ft": "3345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Great Falls", + "scheduled_service": "no", + "gps_code": "MT75", + "local_code": "MT75" + }, + { + "id": "22471", + "ident": "MT76", + "type": "small_airport", + "name": "Smith Farms Airport", + "latitude_deg": "47.39970016479492", + "longitude_deg": "-111.47000122070312", + "elevation_ft": "3340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Great Falls", + "scheduled_service": "no", + "gps_code": "MT76", + "local_code": "MT76" + }, + { + "id": "22472", + "ident": "MT77", + "type": "small_airport", + "name": "Peterson Ranch Airport", + "latitude_deg": "47.608701", + "longitude_deg": "-110.906535", + "elevation_ft": "3340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Highwood", + "scheduled_service": "no", + "gps_code": "MT77", + "local_code": "MT77" + }, + { + "id": "22473", + "ident": "MT78", + "type": "heliport", + "name": "Clark Fork Valley Hospital Heliport", + "latitude_deg": "47.468299865722656", + "longitude_deg": "-114.88899993896484", + "elevation_ft": "2462", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Plains", + "scheduled_service": "no", + "gps_code": "MT78", + "local_code": "MT78" + }, + { + "id": "22474", + "ident": "MT79", + "type": "small_airport", + "name": "Sand Creek Wildlife Station Airport", + "latitude_deg": "47.58420181274414", + "longitude_deg": "-108.70899963378906", + "elevation_ft": "2940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Roy", + "scheduled_service": "no", + "gps_code": "MT79", + "local_code": "MT79" + }, + { + "id": "22475", + "ident": "MT80", + "type": "small_airport", + "name": "Vine Airport", + "latitude_deg": "48.04309844970703", + "longitude_deg": "-105.60900115966797", + "elevation_ft": "2075", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Wolf Point", + "scheduled_service": "no", + "gps_code": "MT80", + "local_code": "MT80" + }, + { + "id": "22476", + "ident": "MT81", + "type": "small_airport", + "name": "Thompson Field", + "latitude_deg": "45.802737", + "longitude_deg": "-111.138969", + "elevation_ft": "4400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Belgrade", + "scheduled_service": "no", + "gps_code": "MT81", + "local_code": "MT81" + }, + { + "id": "22477", + "ident": "MT82", + "type": "closed", + "name": "Baxter Strip", + "latitude_deg": "46.3083", + "longitude_deg": "-109.872002", + "elevation_ft": "4520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Harlowton", + "scheduled_service": "no", + "keywords": "MT82" + }, + { + "id": "22478", + "ident": "MT83", + "type": "small_airport", + "name": "Ten Mile Airport", + "latitude_deg": "46.571153", + "longitude_deg": "-112.180072", + "elevation_ft": "4294", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Helena", + "scheduled_service": "no", + "gps_code": "MT83", + "local_code": "MT83" + }, + { + "id": "22479", + "ident": "MT84", + "type": "closed", + "name": "Mower Field", + "latitude_deg": "48.22017", + "longitude_deg": "-114.376559", + "elevation_ft": "4000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Kalispell", + "scheduled_service": "no", + "keywords": "MT84" + }, + { + "id": "22480", + "ident": "MT85", + "type": "small_airport", + "name": "Redfield Ag Strip", + "latitude_deg": "48.75889968869999", + "longitude_deg": "-106.364997864", + "elevation_ft": "3100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Opheim", + "scheduled_service": "no", + "gps_code": "MT85", + "local_code": "MT85" + }, + { + "id": "22481", + "ident": "MT86", + "type": "small_airport", + "name": "Bar E Airport", + "latitude_deg": "47.164355", + "longitude_deg": "-112.113197", + "elevation_ft": "3875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Helena", + "scheduled_service": "no", + "gps_code": "MT86", + "local_code": "MT86" + }, + { + "id": "22482", + "ident": "MT87", + "type": "small_airport", + "name": "Oglesby Farms Inc Airport", + "latitude_deg": "48.66669845581055", + "longitude_deg": "-105.93399810791016", + "elevation_ft": "2850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Peerless", + "scheduled_service": "no", + "gps_code": "MT87", + "local_code": "MT87" + }, + { + "id": "22483", + "ident": "MT88", + "type": "small_airport", + "name": "Campbell Ranch Airport", + "latitude_deg": "48.004398345947266", + "longitude_deg": "-114.9990005493164", + "elevation_ft": "3360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "MT88", + "local_code": "MT88" + }, + { + "id": "22484", + "ident": "MT89", + "type": "closed", + "name": "Foster Ranches Airport", + "latitude_deg": "45.7999", + "longitude_deg": "-110.533997", + "elevation_ft": "4680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Livingston", + "scheduled_service": "no", + "keywords": "MT89" + }, + { + "id": "22485", + "ident": "MT90", + "type": "small_airport", + "name": "J B Airport", + "latitude_deg": "48.38779830932617", + "longitude_deg": "-105.33499908447266", + "elevation_ft": "2710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Wolf Point", + "scheduled_service": "no", + "gps_code": "MT90", + "local_code": "MT90" + }, + { + "id": "22486", + "ident": "MT91", + "type": "closed", + "name": "North Country Pad Heliport", + "latitude_deg": "48.093286", + "longitude_deg": "-114.087417", + "elevation_ft": "3000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Bigfork", + "scheduled_service": "no", + "keywords": "MT91" + }, + { + "id": "22487", + "ident": "MT92", + "type": "seaplane_base", + "name": "Dave's Landing Seaplane Base", + "latitude_deg": "47.590301513671875", + "longitude_deg": "-115.33699798583984", + "elevation_ft": "2395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Thompson Falls", + "scheduled_service": "no", + "gps_code": "MT92", + "local_code": "MT92" + }, + { + "id": "22488", + "ident": "MT93", + "type": "small_airport", + "name": "Larner Field", + "latitude_deg": "46.28710174560547", + "longitude_deg": "-112.75800323486328", + "elevation_ft": "4710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Deer Lodge", + "scheduled_service": "no", + "gps_code": "MT93", + "local_code": "MT93" + }, + { + "id": "22489", + "ident": "MT94", + "type": "small_airport", + "name": "Ousel Falls Airport", + "latitude_deg": "45.24660110473633", + "longitude_deg": "-111.3290023803711", + "elevation_ft": "6600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Big Sky", + "scheduled_service": "no", + "gps_code": "MT94", + "local_code": "MT94" + }, + { + "id": "22490", + "ident": "MT95", + "type": "small_airport", + "name": "Flathead Lake Sky Ranch Airport", + "latitude_deg": "48.11690139770508", + "longitude_deg": "-114.18599700927734", + "elevation_ft": "2905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Kalispell", + "scheduled_service": "no", + "gps_code": "MT95", + "local_code": "MT95" + }, + { + "id": "22491", + "ident": "MT96", + "type": "closed", + "name": "Wilhelm Airstrip", + "latitude_deg": "46.7402", + "longitude_deg": "-112.035004", + "elevation_ft": "4000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Helena", + "scheduled_service": "no", + "keywords": "MT96" + }, + { + "id": "22492", + "ident": "MT97", + "type": "small_airport", + "name": "Frampton Airport", + "latitude_deg": "47.977475", + "longitude_deg": "-115.766401", + "elevation_ft": "2400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Noxon", + "scheduled_service": "no", + "gps_code": "MT97", + "local_code": "MT97" + }, + { + "id": "22493", + "ident": "MT98", + "type": "closed", + "name": "Big Beaver Creek Ranch Airport", + "latitude_deg": "47.698002", + "longitude_deg": "-115.551003", + "elevation_ft": "2600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Trout Creek", + "scheduled_service": "no", + "keywords": "MT98" + }, + { + "id": "22494", + "ident": "MT99", + "type": "heliport", + "name": "Ccmh Heliport", + "latitude_deg": "45.17770004272461", + "longitude_deg": "-109.25399780273438", + "elevation_ft": "5555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Red Lodge", + "scheduled_service": "no", + "gps_code": "MT99", + "local_code": "MT99" + }, + { + "id": "4822", + "ident": "MTCA", + "type": "medium_airport", + "name": "Les Cayes Airport", + "latitude_deg": "18.271099090576172", + "longitude_deg": "-73.78829956054688", + "elevation_ft": "203", + "continent": "NA", + "iso_country": "HT", + "iso_region": "HT-SD", + "municipality": "Les Cayes", + "scheduled_service": "yes", + "gps_code": "MTCA", + "iata_code": "CYA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Les_Cayes_Airport" + }, + { + "id": "4823", + "ident": "MTCH", + "type": "medium_airport", + "name": "Cap Haitien International Airport", + "latitude_deg": "19.726734", + "longitude_deg": "-72.199576", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "HT", + "iso_region": "HT-ND", + "municipality": "Cap Haitien", + "scheduled_service": "yes", + "gps_code": "MTCH", + "iata_code": "CAP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cap-Ha%C3%AFtien_International_Airport" + }, + { + "id": "22495", + "ident": "MTF", + "type": "small_airport", + "name": "Metro Field", + "latitude_deg": "64.80680084229999", + "longitude_deg": "-147.761993408", + "elevation_ft": "432", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fairbanks", + "scheduled_service": "no", + "gps_code": "MTF", + "iata_code": "MTX", + "local_code": "MTF" + }, + { + "id": "4824", + "ident": "MTJA", + "type": "medium_airport", + "name": "Jacmel Airport", + "latitude_deg": "18.241100311279297", + "longitude_deg": "-72.51850128173828", + "elevation_ft": "167", + "continent": "NA", + "iso_country": "HT", + "iso_region": "HT-SE", + "municipality": "Jacmel", + "scheduled_service": "yes", + "gps_code": "MTJA", + "iata_code": "JAK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jacmel_Airport" + }, + { + "id": "31696", + "ident": "MTJE", + "type": "medium_airport", + "name": "Jérémie Airport", + "latitude_deg": "18.66309928894043", + "longitude_deg": "-74.17030334472656", + "elevation_ft": "147", + "continent": "NA", + "iso_country": "HT", + "iso_region": "HT-GA", + "municipality": "Jeremie", + "scheduled_service": "yes", + "gps_code": "MTJE", + "iata_code": "JEE", + "wikipedia_link": "https://en.wikipedia.org/wiki/J%C3%A9r%C3%A9mie_Airport" + }, + { + "id": "4825", + "ident": "MTPP", + "type": "large_airport", + "name": "Toussaint Louverture International Airport", + "latitude_deg": "18.58", + "longitude_deg": "-72.292503", + "elevation_ft": "122", + "continent": "NA", + "iso_country": "HT", + "iso_region": "HT-OU", + "municipality": "Port-au-Prince", + "scheduled_service": "yes", + "gps_code": "MTPP", + "iata_code": "PAP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toussaint_Louverture_International_Airport" + }, + { + "id": "32146", + "ident": "MTPX", + "type": "medium_airport", + "name": "Port-de-Paix Airport", + "latitude_deg": "19.934045", + "longitude_deg": "-72.84801", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "HT", + "iso_region": "HT-NO", + "municipality": "Port-de-Paix", + "scheduled_service": "no", + "gps_code": "MTPX", + "iata_code": "PAX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port-de-Paix_Airport" + }, + { + "id": "42153", + "ident": "MTRH", + "type": "closed", + "name": "Trojes Airport", + "latitude_deg": "15.404218", + "longitude_deg": "-86.682687", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-YO", + "municipality": "Trojes", + "scheduled_service": "no", + "keywords": "MTRH" + }, + { + "id": "31963", + "ident": "MTU", + "type": "small_airport", + "name": "Montepuez Airport", + "latitude_deg": "-13.121899604797363", + "longitude_deg": "39.052799224853516", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-P", + "municipality": "Montepuez", + "scheduled_service": "no", + "iata_code": "MTU" + }, + { + "id": "42756", + "ident": "MU-0001", + "type": "small_airport", + "name": "Agalega Island Airstrip", + "latitude_deg": "-10.3731002808", + "longitude_deg": "56.6097984314", + "elevation_ft": "4", + "continent": "AF", + "iso_country": "MU", + "iso_region": "MU-AG", + "municipality": "Vingt Cinq", + "scheduled_service": "no", + "gps_code": "FIMA", + "keywords": "North Island" + }, + { + "id": "329638", + "ident": "MU-0002", + "type": "small_airport", + "name": "Skydive Austral Airstrip", + "latitude_deg": "-20.123915", + "longitude_deg": "57.682244", + "continent": "AF", + "iso_country": "MU", + "iso_region": "MU-RP", + "scheduled_service": "no", + "home_link": "http://www.islandwingsmauritius.com" + }, + { + "id": "22497", + "ident": "MU00", + "type": "small_airport", + "name": "Samuel L. Clemens Memorial Airport", + "latitude_deg": "39.44449996948242", + "longitude_deg": "-91.95179748535156", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "MU00", + "local_code": "MU00" + }, + { + "id": "22498", + "ident": "MU01", + "type": "heliport", + "name": "Dogwood Canyon Heliport", + "latitude_deg": "36.49919891357422", + "longitude_deg": "-93.45850372314453", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Blue Eye", + "scheduled_service": "no", + "gps_code": "MU01", + "local_code": "MU01" + }, + { + "id": "22499", + "ident": "MU02", + "type": "small_airport", + "name": "C.E.F. Airport", + "latitude_deg": "38.80979919433594", + "longitude_deg": "-91.10350036621094", + "elevation_ft": "638", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Warrenton", + "scheduled_service": "no", + "gps_code": "MU02", + "local_code": "MU02" + }, + { + "id": "22500", + "ident": "MU03", + "type": "closed", + "name": "Leo's Angus Ranch Airport", + "latitude_deg": "38.480001", + "longitude_deg": "-94.197403", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Dayton", + "scheduled_service": "no", + "keywords": "MU03" + }, + { + "id": "22501", + "ident": "MU04", + "type": "small_airport", + "name": "Broadwater Airport", + "latitude_deg": "36.58980178833008", + "longitude_deg": "-89.92009735107422", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Malden", + "scheduled_service": "no", + "gps_code": "MU04", + "local_code": "MU04" + }, + { + "id": "22502", + "ident": "MU05", + "type": "heliport", + "name": "Arch Heliport", + "latitude_deg": "38.61840057373047", + "longitude_deg": "-90.21730041503906", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no", + "gps_code": "MU05", + "local_code": "MU05" + }, + { + "id": "22503", + "ident": "MU06", + "type": "heliport", + "name": "V.A. Medical Center Heliport", + "latitude_deg": "38.6423", + "longitude_deg": "-90.230698", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no", + "keywords": "MU06" + }, + { + "id": "22504", + "ident": "MU07", + "type": "small_airport", + "name": "Angle Bar M Airport", + "latitude_deg": "38.39469909667969", + "longitude_deg": "-94.3102035522461", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Adrian", + "scheduled_service": "no", + "gps_code": "MU07", + "local_code": "MU07" + }, + { + "id": "22505", + "ident": "MU08", + "type": "heliport", + "name": "Lee's Summit Heliport", + "latitude_deg": "38.92219924926758", + "longitude_deg": "-94.40380096435547", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lee's Summit", + "scheduled_service": "no", + "gps_code": "MU08", + "local_code": "MU08" + }, + { + "id": "22506", + "ident": "MU09", + "type": "small_airport", + "name": "Hester Airport", + "latitude_deg": "40.466833", + "longitude_deg": "-95.023426", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Burlington Junction", + "scheduled_service": "no", + "gps_code": "MU09", + "local_code": "MU09" + }, + { + "id": "22507", + "ident": "MU10", + "type": "heliport", + "name": "Southeast Mo Hospital Heliport", + "latitude_deg": "37.31060028076172", + "longitude_deg": "-89.54060363769531", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Cape Girardeau", + "scheduled_service": "no", + "gps_code": "MU10", + "local_code": "MU10" + }, + { + "id": "22508", + "ident": "MU11", + "type": "small_airport", + "name": "Eagle's Landing Airport", + "latitude_deg": "38.220886", + "longitude_deg": "-93.0127", + "elevation_ft": "822", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Climax Springs", + "scheduled_service": "no", + "gps_code": "MU11", + "local_code": "MU11" + }, + { + "id": "22509", + "ident": "MU12", + "type": "closed", + "name": "Childress Airstrip", + "latitude_deg": "37.138957", + "longitude_deg": "-93.217543", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Springfield", + "scheduled_service": "no", + "keywords": "MU12" + }, + { + "id": "22510", + "ident": "MU13", + "type": "closed", + "name": "Bakers Landing Airport", + "latitude_deg": "37.059799", + "longitude_deg": "-93.600998", + "elevation_ft": "1340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Billings", + "scheduled_service": "no", + "keywords": "MU13" + }, + { + "id": "345618", + "ident": "MU14", + "type": "small_airport", + "name": "Pepper Field", + "latitude_deg": "38.299363", + "longitude_deg": "-91.689781", + "elevation_ft": "1043", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Belle", + "scheduled_service": "no", + "gps_code": "MU14", + "local_code": "MU14" + }, + { + "id": "22511", + "ident": "MU15", + "type": "heliport", + "name": "Madison Memorial Heliport", + "latitude_deg": "37.555599212646484", + "longitude_deg": "-90.30400085449219", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Fredericktown", + "scheduled_service": "no", + "gps_code": "MU15", + "local_code": "MU15" + }, + { + "id": "22512", + "ident": "MU16", + "type": "small_airport", + "name": "Spillman Field", + "latitude_deg": "40.000301361083984", + "longitude_deg": "-93.78990173339844", + "elevation_ft": "981", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Jamesport", + "scheduled_service": "no", + "gps_code": "MU16", + "local_code": "MU16" + }, + { + "id": "329432", + "ident": "MU17", + "type": "heliport", + "name": "Ray County Memorial Hospital Heliport", + "latitude_deg": "39.263369", + "longitude_deg": "-93.95705", + "elevation_ft": "827", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "MU17", + "local_code": "MU17" + }, + { + "id": "22513", + "ident": "MU18", + "type": "small_airport", + "name": "Stark Airport", + "latitude_deg": "38.78103", + "longitude_deg": "-91.16451", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Warrenton", + "scheduled_service": "no", + "gps_code": "MU18", + "local_code": "MU18" + }, + { + "id": "22514", + "ident": "MU19", + "type": "small_airport", + "name": "Cherokee Airpark", + "latitude_deg": "37.551700592041016", + "longitude_deg": "-93.40019989013672", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Bolivar", + "scheduled_service": "no", + "gps_code": "MU19", + "local_code": "MU19" + }, + { + "id": "22515", + "ident": "MU20", + "type": "small_airport", + "name": "Robbins Airport", + "latitude_deg": "38.94559860229492", + "longitude_deg": "-93.9646987915039", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Odessa", + "scheduled_service": "no", + "gps_code": "MU20", + "local_code": "MU20" + }, + { + "id": "22516", + "ident": "MU21", + "type": "small_airport", + "name": "Miller Farm Airport", + "latitude_deg": "38.52370071411133", + "longitude_deg": "-91.5177001953125", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Bay", + "scheduled_service": "no", + "gps_code": "MU21", + "local_code": "MU21" + }, + { + "id": "22517", + "ident": "MU22", + "type": "closed", + "name": "Ky-3 Heliport", + "latitude_deg": "37.183101", + "longitude_deg": "-93.303201", + "elevation_ft": "1285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Springfield", + "scheduled_service": "no", + "keywords": "MU22" + }, + { + "id": "22518", + "ident": "MU23", + "type": "small_airport", + "name": "White Cloud Flying Field", + "latitude_deg": "39.030736", + "longitude_deg": "-92.393303", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "MU23", + "local_code": "MU23" + }, + { + "id": "22519", + "ident": "MU24", + "type": "small_airport", + "name": "Someday Ranch Airport", + "latitude_deg": "36.57170104980469", + "longitude_deg": "-93.03679656982422", + "elevation_ft": "812", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Cedarcreek", + "scheduled_service": "no", + "gps_code": "MU24", + "local_code": "MU24" + }, + { + "id": "22520", + "ident": "MU25", + "type": "small_airport", + "name": "Piney Bend Airport", + "latitude_deg": "37.437801361083984", + "longitude_deg": "-91.94930267333984", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "MU25", + "local_code": "MU25" + }, + { + "id": "22521", + "ident": "MU26", + "type": "small_airport", + "name": "Robinson Airport", + "latitude_deg": "38.773101806640625", + "longitude_deg": "-94.56529998779297", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Belton", + "scheduled_service": "no", + "gps_code": "MU26", + "local_code": "MU26" + }, + { + "id": "22522", + "ident": "MU27", + "type": "small_airport", + "name": "Woodfield Airpark Inc Airport", + "latitude_deg": "37.468101501464844", + "longitude_deg": "-93.92939758300781", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lockwood", + "scheduled_service": "no", + "gps_code": "MU27", + "local_code": "MU27" + }, + { + "id": "22523", + "ident": "MU28", + "type": "closed", + "name": "Fabick Heliport", + "latitude_deg": "38.540298", + "longitude_deg": "-90.441803", + "elevation_ft": "434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Fenton", + "scheduled_service": "no", + "keywords": "MU28" + }, + { + "id": "22524", + "ident": "MU29", + "type": "heliport", + "name": "Three Rivers Healthcare Hospital Heliport", + "latitude_deg": "36.77399826049805", + "longitude_deg": "-90.43190002441406", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Poplar Bluff", + "scheduled_service": "no", + "gps_code": "MU29", + "local_code": "MU29" + }, + { + "id": "333428", + "ident": "MU30", + "type": "heliport", + "name": "Progress West Hospital Heliport", + "latitude_deg": "38.716381", + "longitude_deg": "-90.699275", + "elevation_ft": "561", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "O'Fallon", + "scheduled_service": "no", + "gps_code": "MU30", + "local_code": "MU30", + "keywords": "BJC Healthcare Heliport" + }, + { + "id": "22525", + "ident": "MU31", + "type": "closed", + "name": "Fostaire Heliport", + "latitude_deg": "38.625", + "longitude_deg": "-90.183403", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no", + "keywords": "MU31" + }, + { + "id": "22526", + "ident": "MU32", + "type": "small_airport", + "name": "Sugar Branch Airport", + "latitude_deg": "38.951575", + "longitude_deg": "-92.447923", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "MU32", + "local_code": "MU32" + }, + { + "id": "22527", + "ident": "MU33", + "type": "small_airport", + "name": "Harrison Airport", + "latitude_deg": "40.076331", + "longitude_deg": "-92.319374", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hurdland", + "scheduled_service": "no", + "gps_code": "0MO6", + "local_code": "0MO6", + "keywords": "MU33" + }, + { + "id": "22528", + "ident": "MU34", + "type": "small_airport", + "name": "Haven Wood Airport", + "latitude_deg": "37.33620071411133", + "longitude_deg": "-91.39459991455078", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Round Spring", + "scheduled_service": "no", + "gps_code": "MU34", + "local_code": "MU34" + }, + { + "id": "22529", + "ident": "MU35", + "type": "small_airport", + "name": "Tallen Airport", + "latitude_deg": "40.26750183105469", + "longitude_deg": "-94.7865982055664", + "elevation_ft": "1123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Arkoe", + "scheduled_service": "no", + "gps_code": "MU35", + "local_code": "MU35" + }, + { + "id": "22530", + "ident": "MU36", + "type": "heliport", + "name": "Eagle's Roost Heliport", + "latitude_deg": "38.185001373291016", + "longitude_deg": "-92.69599914550781", + "elevation_ft": "729", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Bagnel", + "scheduled_service": "no", + "gps_code": "MU36", + "local_code": "MU36" + }, + { + "id": "22531", + "ident": "MU37", + "type": "heliport", + "name": "University Hospitals & Clinics Heliport", + "latitude_deg": "38.937767", + "longitude_deg": "-92.327978", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "MU37", + "local_code": "MU37" + }, + { + "id": "22532", + "ident": "MU38", + "type": "small_airport", + "name": "Bogard-Cowgill Airport", + "latitude_deg": "40.1788804", + "longitude_deg": "-93.131678", + "elevation_ft": "953", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Milan", + "scheduled_service": "no", + "gps_code": "MU38", + "local_code": "MU38", + "keywords": "Cowgill-Roemer Airport" + }, + { + "id": "22533", + "ident": "MU39", + "type": "heliport", + "name": "Van's Heliport", + "latitude_deg": "37.22090148925781", + "longitude_deg": "-93.13849639892578", + "elevation_ft": "1390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "MU39", + "local_code": "MU39" + }, + { + "id": "22534", + "ident": "MU40", + "type": "small_airport", + "name": "Lake Village Airport", + "latitude_deg": "39.461307", + "longitude_deg": "-92.010508", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "MU40", + "local_code": "MU40" + }, + { + "id": "22535", + "ident": "MU41", + "type": "small_airport", + "name": "Ingram Private Airport", + "latitude_deg": "36.795199", + "longitude_deg": "-93.899517", + "elevation_ft": "1485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Purdy", + "scheduled_service": "no", + "gps_code": "MU41", + "local_code": "MU41" + }, + { + "id": "22536", + "ident": "MU42", + "type": "closed", + "name": "Strutman Field", + "latitude_deg": "38.7528", + "longitude_deg": "-90.787102", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Wentzville", + "scheduled_service": "no" + }, + { + "id": "22537", + "ident": "MU44", + "type": "heliport", + "name": "Texas County Memorial Hospital Heliport", + "latitude_deg": "37.3170013428", + "longitude_deg": "-91.9615020752", + "elevation_ft": "1228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "MU44", + "local_code": "MU44" + }, + { + "id": "22538", + "ident": "MU45", + "type": "heliport", + "name": "Missouri Delta Heliport", + "latitude_deg": "36.890828", + "longitude_deg": "-89.581616", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Sikeston", + "scheduled_service": "no", + "gps_code": "MU45", + "local_code": "MU45" + }, + { + "id": "22539", + "ident": "MU46", + "type": "closed", + "name": "St Louis Children's Hospital Heliport", + "latitude_deg": "38.634201", + "longitude_deg": "-90.256798", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no", + "keywords": "MU46" + }, + { + "id": "22540", + "ident": "MU47", + "type": "heliport", + "name": "Nemo Coal County Heliport", + "latitude_deg": "39.500301361083984", + "longitude_deg": "-92.51629638671875", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Cairo", + "scheduled_service": "no", + "gps_code": "MU47", + "local_code": "MU47" + }, + { + "id": "22541", + "ident": "MU48", + "type": "small_airport", + "name": "Sunburst Ranch Airport", + "latitude_deg": "36.648399353027344", + "longitude_deg": "-92.22039794921875", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Gainesville", + "scheduled_service": "no", + "gps_code": "MU48", + "local_code": "MU48" + }, + { + "id": "22542", + "ident": "MU49", + "type": "heliport", + "name": "Riley Brancus Ranch Heliport", + "latitude_deg": "39.55390167236328", + "longitude_deg": "-92.56739807128906", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Huntsville", + "scheduled_service": "no", + "gps_code": "MU49", + "local_code": "MU49" + }, + { + "id": "22543", + "ident": "MU50", + "type": "heliport", + "name": "Riley House Heliport", + "latitude_deg": "39.412498474121094", + "longitude_deg": "-92.46209716796875", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Moberly", + "scheduled_service": "no", + "gps_code": "MU50", + "local_code": "MU50" + }, + { + "id": "22544", + "ident": "MU51", + "type": "heliport", + "name": "Clarion Heliport", + "latitude_deg": "38.622798919677734", + "longitude_deg": "-90.1865005493164", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no", + "gps_code": "MU51", + "local_code": "MU51" + }, + { + "id": "22545", + "ident": "MU52", + "type": "heliport", + "name": "Cardinal Glennon Heliport", + "latitude_deg": "38.625099182128906", + "longitude_deg": "-90.24259948730469", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no", + "gps_code": "MU52", + "local_code": "MU52" + }, + { + "id": "22546", + "ident": "MU53", + "type": "heliport", + "name": "Twin Rivers Regional Medical Center Heliport", + "latitude_deg": "36.23590087890625", + "longitude_deg": "-90.04090118408203", + "elevation_ft": "262", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kennett", + "scheduled_service": "no", + "gps_code": "MU53", + "local_code": "MU53" + }, + { + "id": "22547", + "ident": "MU54", + "type": "heliport", + "name": "General John J Pershing Memorial Hospital Heliport", + "latitude_deg": "39.7750015259", + "longitude_deg": "-93.06739807130002", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Brookfield", + "scheduled_service": "no", + "gps_code": "MU54", + "local_code": "MU54" + }, + { + "id": "22548", + "ident": "MU55", + "type": "closed", + "name": "Bauer PGI Airport", + "latitude_deg": "38.1367", + "longitude_deg": "-94.173798", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Appleton City", + "scheduled_service": "no", + "keywords": "MU55" + }, + { + "id": "22549", + "ident": "MU56", + "type": "closed", + "name": "Brown Field", + "latitude_deg": "36.708801", + "longitude_deg": "-90.268204", + "elevation_ft": "323", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Broseley", + "scheduled_service": "no", + "keywords": "MU56" + }, + { + "id": "333413", + "ident": "MU57", + "type": "small_airport", + "name": "Flib Field", + "latitude_deg": "37.518574", + "longitude_deg": "-92.816926", + "elevation_ft": "1418", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Conway", + "scheduled_service": "no", + "gps_code": "MU57", + "local_code": "MU57" + }, + { + "id": "22550", + "ident": "MU58", + "type": "heliport", + "name": "Va Medical Center Heliport", + "latitude_deg": "39.06420135498047", + "longitude_deg": "-94.52549743652344", + "elevation_ft": "941", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kansas City", + "scheduled_service": "no", + "gps_code": "MU58", + "local_code": "MU58" + }, + { + "id": "22551", + "ident": "MU59", + "type": "heliport", + "name": "Lester E. Cox Medical Center North Heliport", + "latitude_deg": "37.22529983520508", + "longitude_deg": "-93.29070281982422", + "elevation_ft": "1325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "MU59", + "local_code": "MU59" + }, + { + "id": "22552", + "ident": "MU60", + "type": "heliport", + "name": "Western Missouri Medical Center Heliport", + "latitude_deg": "38.766831", + "longitude_deg": "-93.721842", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Warrensburg", + "scheduled_service": "no", + "gps_code": "MU60", + "local_code": "MU60" + }, + { + "id": "22553", + "ident": "MU61", + "type": "heliport", + "name": "Research Belton Hospital Heliport", + "latitude_deg": "38.816645", + "longitude_deg": "-94.503593", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Belton", + "scheduled_service": "no", + "gps_code": "MU61", + "local_code": "MU61" + }, + { + "id": "22554", + "ident": "MU62", + "type": "small_airport", + "name": "Hilltop Airport", + "latitude_deg": "38.56330108642578", + "longitude_deg": "-94.59110260009766", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Drexel", + "scheduled_service": "no", + "gps_code": "MU62", + "local_code": "MU62" + }, + { + "id": "22555", + "ident": "MU63", + "type": "small_airport", + "name": "Blumenstetter Airport", + "latitude_deg": "37.435001373291016", + "longitude_deg": "-93.06680297851562", + "elevation_ft": "1327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Elkland", + "scheduled_service": "no", + "gps_code": "MU63", + "local_code": "MU63" + }, + { + "id": "22556", + "ident": "MU64", + "type": "heliport", + "name": "Capital Region Medical Center Heliport", + "latitude_deg": "38.565834", + "longitude_deg": "-92.182462", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Jefferson City", + "scheduled_service": "no", + "gps_code": "MU64", + "local_code": "MU64" + }, + { + "id": "22557", + "ident": "MU65", + "type": "small_airport", + "name": "Lakeside Airport", + "latitude_deg": "37.769500732421875", + "longitude_deg": "-90.4656982421875", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Farmington", + "scheduled_service": "no", + "gps_code": "MU65", + "local_code": "MU65" + }, + { + "id": "22558", + "ident": "MU66", + "type": "heliport", + "name": "Winfield Manor Heliport", + "latitude_deg": "39.017799377441406", + "longitude_deg": "-90.81790161132812", + "elevation_ft": "732", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Winfield", + "scheduled_service": "no", + "gps_code": "MU66", + "local_code": "MU66" + }, + { + "id": "22559", + "ident": "MU67", + "type": "heliport", + "name": "Dst Heliport", + "latitude_deg": "39.012001037597656", + "longitude_deg": "-94.510498046875", + "elevation_ft": "722", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kansas City", + "scheduled_service": "no", + "gps_code": "MU67", + "local_code": "MU67" + }, + { + "id": "22560", + "ident": "MU68", + "type": "small_airport", + "name": "Eu-Wish Airport", + "latitude_deg": "38.66889953613281", + "longitude_deg": "-91.53600311279297", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hermann", + "scheduled_service": "no", + "gps_code": "MU68", + "local_code": "MU68" + }, + { + "id": "22561", + "ident": "MU69", + "type": "small_airport", + "name": "Peterman Airport", + "latitude_deg": "37.86949920654297", + "longitude_deg": "-93.6259994506836", + "elevation_ft": "888", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Collins", + "scheduled_service": "no", + "gps_code": "MU69", + "local_code": "MU69" + }, + { + "id": "22562", + "ident": "MU70", + "type": "small_airport", + "name": "Skyview Airport", + "latitude_deg": "36.99509811401367", + "longitude_deg": "-93.13880157470703", + "elevation_ft": "1360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Ozark", + "scheduled_service": "no", + "gps_code": "MU70", + "local_code": "MU70" + }, + { + "id": "22563", + "ident": "MU71", + "type": "small_airport", + "name": "Vandahl Airport", + "latitude_deg": "39.34749984741211", + "longitude_deg": "-94.85800170898438", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Weston", + "scheduled_service": "no", + "gps_code": "MU71", + "local_code": "MU71" + }, + { + "id": "351120", + "ident": "MU72", + "type": "small_airport", + "name": "Maune Ultralight Flightpark", + "latitude_deg": "38.424714", + "longitude_deg": "-90.896587", + "elevation_ft": "486", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Villa Ridge", + "scheduled_service": "no", + "gps_code": "MU72", + "local_code": "MU72" + }, + { + "id": "348579", + "ident": "MU73", + "type": "small_airport", + "name": "Spencer Field", + "latitude_deg": "36.926394", + "longitude_deg": "-93.289389", + "elevation_ft": "1322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Highlandville", + "scheduled_service": "no", + "gps_code": "MU73", + "local_code": "MU73" + }, + { + "id": "334245", + "ident": "MU75", + "type": "heliport", + "name": "SSM Health St Mary's Heliport", + "latitude_deg": "38.558725", + "longitude_deg": "-92.220331", + "elevation_ft": "757", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Jefferson City", + "scheduled_service": "no", + "gps_code": "MU75", + "local_code": "MU75" + }, + { + "id": "333436", + "ident": "MU76", + "type": "heliport", + "name": "Fisher Delta Research Center Lee Farm Heliport", + "latitude_deg": "36.395875", + "longitude_deg": "-89.613757", + "elevation_ft": "284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Portageville", + "scheduled_service": "no", + "gps_code": "MU76", + "local_code": "MU76" + }, + { + "id": "22564", + "ident": "MU77", + "type": "small_airport", + "name": "Aero Britton Airport", + "latitude_deg": "39.1292", + "longitude_deg": "-92.730698", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Fayette", + "scheduled_service": "no", + "gps_code": "MU77", + "local_code": "MU77" + }, + { + "id": "45505", + "ident": "MU78", + "type": "small_airport", + "name": "Taylor Field", + "latitude_deg": "37.847964", + "longitude_deg": "-92.188933", + "elevation_ft": "1022", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Waynesville", + "scheduled_service": "no", + "gps_code": "MU78", + "local_code": "MU78" + }, + { + "id": "333435", + "ident": "MU79", + "type": "heliport", + "name": "Delta Center Heliport #1", + "latitude_deg": "36.416042", + "longitude_deg": "-89.700885", + "elevation_ft": "284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Portageville", + "scheduled_service": "no", + "gps_code": "MU79", + "local_code": "MU79" + }, + { + "id": "22565", + "ident": "MU84", + "type": "small_airport", + "name": "Michael Farm Airport", + "latitude_deg": "38.89950180053711", + "longitude_deg": "-94.22940063476562", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lone Jack", + "scheduled_service": "no", + "gps_code": "MU84", + "local_code": "MU84" + }, + { + "id": "22566", + "ident": "MU85", + "type": "small_airport", + "name": "Thomas Airport", + "latitude_deg": "38.95500183105469", + "longitude_deg": "-94.12740325927734", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Oak Grove", + "scheduled_service": "no", + "gps_code": "MU85", + "local_code": "MU85" + }, + { + "id": "22567", + "ident": "MU86", + "type": "small_airport", + "name": "Taus River Ranch Airport", + "latitude_deg": "37.41999816894531", + "longitude_deg": "-91.95770263671875", + "elevation_ft": "956", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "MU86", + "local_code": "MU86" + }, + { + "id": "22568", + "ident": "MU87", + "type": "heliport", + "name": "St Mary's Health Center Heliport", + "latitude_deg": "38.58359909057617", + "longitude_deg": "-92.15129852294922", + "elevation_ft": "549", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Jefferson City", + "scheduled_service": "no", + "gps_code": "MU87", + "local_code": "MU87" + }, + { + "id": "344279", + "ident": "MU88", + "type": "small_airport", + "name": "Yarbro Field", + "latitude_deg": "36.858356", + "longitude_deg": "-90.399869", + "elevation_ft": "518", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Poplar Bluff", + "scheduled_service": "no", + "gps_code": "MU88", + "local_code": "MU88" + }, + { + "id": "22569", + "ident": "MU89", + "type": "small_airport", + "name": "Woodland Airstrip", + "latitude_deg": "38.911999", + "longitude_deg": "-91.035698", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "MU89", + "local_code": "MU89" + }, + { + "id": "22570", + "ident": "MU90", + "type": "heliport", + "name": "Falcon Heliport", + "latitude_deg": "38.957000732421875", + "longitude_deg": "-94.37660217285156", + "elevation_ft": "971", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lees Summit", + "scheduled_service": "no", + "gps_code": "MU90", + "local_code": "MU90" + }, + { + "id": "22571", + "ident": "MU91", + "type": "heliport", + "name": "Lake Regional Health System Heliport", + "latitude_deg": "38.120574", + "longitude_deg": "-92.681716", + "elevation_ft": "818", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Osage Beach", + "scheduled_service": "no", + "gps_code": "MU91", + "local_code": "MU91", + "keywords": "LOGH Heliport" + }, + { + "id": "22572", + "ident": "MU92", + "type": "heliport", + "name": "Northeast Regional Medical Center Heliport", + "latitude_deg": "40.192068", + "longitude_deg": "-92.590595", + "elevation_ft": "975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kirksville", + "scheduled_service": "no", + "gps_code": "MU92", + "local_code": "MU92" + }, + { + "id": "22573", + "ident": "MU93", + "type": "heliport", + "name": "Breech Medical Center Heliport", + "latitude_deg": "37.6870002746582", + "longitude_deg": "-92.66300201416016", + "elevation_ft": "1230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lebanan", + "scheduled_service": "no", + "gps_code": "MU93", + "local_code": "MU93" + }, + { + "id": "22574", + "ident": "MU94", + "type": "heliport", + "name": "Galmey Heliport", + "latitude_deg": "37.893236", + "longitude_deg": "-93.36212", + "elevation_ft": "968", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Wheatland", + "scheduled_service": "no", + "gps_code": "MU94", + "local_code": "MU94" + }, + { + "id": "22575", + "ident": "MU95", + "type": "heliport", + "name": "First Precinct Police Heliport", + "latitude_deg": "38.798099517822266", + "longitude_deg": "-90.23619842529297", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Blackjack", + "scheduled_service": "no", + "gps_code": "MU95", + "local_code": "MU95" + }, + { + "id": "22576", + "ident": "MU96", + "type": "heliport", + "name": "Refueling Pad Heliport", + "latitude_deg": "38.93479919433594", + "longitude_deg": "-92.32630157470703", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "MU96", + "local_code": "MU96" + }, + { + "id": "22577", + "ident": "MU97", + "type": "closed", + "name": "Platte Valley Airport", + "latitude_deg": "39.365731", + "longitude_deg": "-94.758173", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Platte City", + "scheduled_service": "no", + "keywords": "MU97" + }, + { + "id": "22578", + "ident": "MU98", + "type": "small_airport", + "name": "Eagles Nest Airport", + "latitude_deg": "36.5180556", + "longitude_deg": "-93.6836111", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Eagle Rock", + "scheduled_service": "no", + "gps_code": "MU98", + "local_code": "MU98" + }, + { + "id": "22579", + "ident": "MU99", + "type": "closed", + "name": "Fabick-Colmarile Heliport", + "latitude_deg": "38.525002", + "longitude_deg": "-90.453903", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Fenton", + "scheduled_service": "no", + "keywords": "MU99" + }, + { + "id": "42279", + "ident": "MUAT", + "type": "closed", + "name": "Antilla Airport", + "latitude_deg": "20.840669", + "longitude_deg": "-75.729759", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-11", + "municipality": "Antilla", + "scheduled_service": "no", + "gps_code": "MUAT" + }, + { + "id": "4826", + "ident": "MUBA", + "type": "medium_airport", + "name": "Gustavo Rizo Airport", + "latitude_deg": "20.365299224853516", + "longitude_deg": "-74.5062026977539", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-14", + "municipality": "Baracoa", + "scheduled_service": "yes", + "gps_code": "MUBA", + "iata_code": "BCA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gustavo_Rizo_Airport" + }, + { + "id": "42290", + "ident": "MUBE", + "type": "small_airport", + "name": "El Caribe Airport", + "latitude_deg": "22.351200103759766", + "longitude_deg": "-83.39900207519531", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-01", + "municipality": "El Caribe", + "scheduled_service": "no", + "gps_code": "MUBE" + }, + { + "id": "31965", + "ident": "MUBO", + "type": "small_airport", + "name": "Batabanó Airport", + "latitude_deg": "22.718599", + "longitude_deg": "-82.2686", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-16", + "municipality": "Batabanó", + "scheduled_service": "no", + "gps_code": "MUBO" + }, + { + "id": "4827", + "ident": "MUBR", + "type": "small_airport", + "name": "Las Brujas Airport", + "latitude_deg": "22.621299743699996", + "longitude_deg": "-79.1472015381", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-07", + "municipality": "Cayo Santa Maria", + "scheduled_service": "no", + "gps_code": "MUBR", + "iata_code": "BWW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Las_Brujas_Airport_(Cuba)" + }, + { + "id": "4828", + "ident": "MUBY", + "type": "medium_airport", + "name": "Carlos Manuel de Cespedes Airport", + "latitude_deg": "20.3964", + "longitude_deg": "-76.621399", + "elevation_ft": "203", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-12", + "municipality": "Bayamo", + "scheduled_service": "yes", + "gps_code": "MUBY", + "iata_code": "BYM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carlos_Manuel_C%C3%A9spedes_Airport" + }, + { + "id": "4829", + "ident": "MUCA", + "type": "medium_airport", + "name": "Maximo Gomez Airport", + "latitude_deg": "22.027099609375", + "longitude_deg": "-78.78959655761719", + "elevation_ft": "335", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-08", + "municipality": "Ciego de Avila", + "scheduled_service": "yes", + "gps_code": "MUCA", + "iata_code": "AVI", + "wikipedia_link": "https://en.wikipedia.org/wiki/M%C3%A1ximo_G%C3%B3mez_Airport" + }, + { + "id": "4830", + "ident": "MUCB", + "type": "small_airport", + "name": "Caibarién Airport", + "latitude_deg": "22.506399154663086", + "longitude_deg": "-79.46980285644531", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-05", + "municipality": "Caibarién", + "scheduled_service": "no", + "gps_code": "MUCB" + }, + { + "id": "4831", + "ident": "MUCC", + "type": "medium_airport", + "name": "Jardines Del Rey Airport", + "latitude_deg": "22.461000442499998", + "longitude_deg": "-78.32839965820001", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-08", + "municipality": "Cayo Coco", + "scheduled_service": "yes", + "gps_code": "MUCC", + "iata_code": "CCC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jardines_del_Rey_Airport", + "keywords": "Cayo Coco" + }, + { + "id": "42287", + "ident": "MUCD", + "type": "small_airport", + "name": "Ciego De Avila Sur Airport", + "latitude_deg": "21.821199417114258", + "longitude_deg": "-78.75669860839844", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-08", + "municipality": "Ciego de Avila", + "scheduled_service": "no", + "gps_code": "MUCD" + }, + { + "id": "4832", + "ident": "MUCF", + "type": "medium_airport", + "name": "Jaime Gonzalez Airport", + "latitude_deg": "22.149999618530273", + "longitude_deg": "-80.41419982910156", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-06", + "municipality": "Cienfuegos", + "scheduled_service": "yes", + "gps_code": "MUCF", + "iata_code": "CFG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jaime_Gonz%C3%A1lez_Airport", + "keywords": "Las Villas Airport" + }, + { + "id": "4833", + "ident": "MUCL", + "type": "medium_airport", + "name": "Vilo Acuña International Airport", + "latitude_deg": "21.6165008545", + "longitude_deg": "-81.5459976196", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-99", + "municipality": "Cayo Largo del Sur", + "scheduled_service": "yes", + "gps_code": "MUCL", + "iata_code": "CYO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vilo_Acu%C3%B1a_Airport" + }, + { + "id": "4834", + "ident": "MUCM", + "type": "medium_airport", + "name": "Ignacio Agramonte International Airport", + "latitude_deg": "21.420299530029297", + "longitude_deg": "-77.84750366210938", + "elevation_ft": "413", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "municipality": "Camaguey", + "scheduled_service": "yes", + "gps_code": "MUCM", + "iata_code": "CMW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ignacio_Agramonte_International_Airport" + }, + { + "id": "31966", + "ident": "MUCO", + "type": "small_airport", + "name": "Colón Airport", + "latitude_deg": "22.7111", + "longitude_deg": "-80.922798", + "elevation_ft": "155", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-04", + "municipality": "Colón", + "scheduled_service": "no", + "gps_code": "MUCO", + "keywords": "QCO" + }, + { + "id": "4835", + "ident": "MUCU", + "type": "medium_airport", + "name": "Antonio Maceo International Airport", + "latitude_deg": "19.96980094909668", + "longitude_deg": "-75.83540344238281", + "elevation_ft": "249", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-13", + "municipality": "Santiago", + "scheduled_service": "yes", + "gps_code": "MUCU", + "iata_code": "SCU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Antonio_Maceo_Airport" + }, + { + "id": "42288", + "ident": "MUCV", + "type": "small_airport", + "name": "Las Clavellinas Airport", + "latitude_deg": "22.228700637817383", + "longitude_deg": "-84.37200164794922", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-01", + "municipality": "Las Clavellinas", + "scheduled_service": "no", + "gps_code": "MUCV" + }, + { + "id": "42298", + "ident": "MUCY", + "type": "small_airport", + "name": "Cayajabo Airport", + "latitude_deg": "22.864444732666016", + "longitude_deg": "-82.8558349609375", + "elevation_ft": "259", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-15", + "municipality": "Cayajabo", + "scheduled_service": "no", + "gps_code": "MUCY" + }, + { + "id": "4836", + "ident": "MUFL", + "type": "small_airport", + "name": "Florida Airport", + "latitude_deg": "21.49970054626465", + "longitude_deg": "-78.20279693603516", + "elevation_ft": "197", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "municipality": "Florida", + "scheduled_service": "no", + "gps_code": "MUFL" + }, + { + "id": "42284", + "ident": "MUGA", + "type": "small_airport", + "name": "Central Agramonte Airport", + "latitude_deg": "21.549999237060547", + "longitude_deg": "-78.23332977294922", + "elevation_ft": "196", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "municipality": "Florida", + "scheduled_service": "no", + "gps_code": "MUGA" + }, + { + "id": "4837", + "ident": "MUGM", + "type": "medium_airport", + "name": "Leeward Point Field", + "latitude_deg": "19.9065", + "longitude_deg": "-75.2071", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-14", + "municipality": "Guantanamo Bay Naval Station", + "scheduled_service": "no", + "gps_code": "MUGM", + "iata_code": "NBW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leeward_Point_Field", + "keywords": "Gitmo, Leeward Point Fld" + }, + { + "id": "4838", + "ident": "MUGT", + "type": "medium_airport", + "name": "Mariana Grajales Airport", + "latitude_deg": "20.08530044555664", + "longitude_deg": "-75.1583023071289", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-14", + "municipality": "Guantánamo", + "scheduled_service": "yes", + "gps_code": "MUGT", + "iata_code": "GAO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mariana_Grajales_Airport", + "keywords": "Aerodromo los Caños" + }, + { + "id": "4839", + "ident": "MUHA", + "type": "large_airport", + "name": "José Martí International Airport", + "latitude_deg": "22.989200592041016", + "longitude_deg": "-82.40910339355469", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-03", + "municipality": "Havana", + "scheduled_service": "yes", + "gps_code": "MUHA", + "iata_code": "HAV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jos%C3%A9_Mart%C3%AD_International_Airport", + "keywords": "Habana" + }, + { + "id": "4840", + "ident": "MUHG", + "type": "medium_airport", + "name": "Frank Pais International Airport", + "latitude_deg": "20.785600662231445", + "longitude_deg": "-76.31510162353516", + "elevation_ft": "361", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-11", + "municipality": "Holguin", + "scheduled_service": "yes", + "gps_code": "MUHG", + "iata_code": "HOG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Frank_Pa%C3%ADs_Airport" + }, + { + "id": "42285", + "ident": "MUIV", + "type": "small_airport", + "name": "Nuevitas Airport", + "latitude_deg": "21.553800582885742", + "longitude_deg": "-77.25859832763672", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "municipality": "Nuevitas", + "scheduled_service": "no", + "gps_code": "MUIV" + }, + { + "id": "4841", + "ident": "MUKW", + "type": "medium_airport", + "name": "Kawama Airport", + "latitude_deg": "23.124001", + "longitude_deg": "-81.301598", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-04", + "municipality": "Varadero", + "scheduled_service": "no", + "gps_code": "MUKW", + "iata_code": "VRO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kawama_Airport" + }, + { + "id": "4842", + "ident": "MULB", + "type": "small_airport", + "name": "Ciudad Libertad Airport", + "latitude_deg": "23.093900680541992", + "longitude_deg": "-82.43810272216797", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-03", + "municipality": "Havana", + "scheduled_service": "no", + "gps_code": "MULB" + }, + { + "id": "4843", + "ident": "MULM", + "type": "medium_airport", + "name": "La Coloma Airport", + "latitude_deg": "22.33609962463379", + "longitude_deg": "-83.64189910888672", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-01", + "municipality": "Pinar del Rio", + "scheduled_service": "no", + "gps_code": "MULM", + "iata_code": "LCL" + }, + { + "id": "42277", + "ident": "MUMA", + "type": "small_airport", + "name": "Alfredo Noa Díaz Airport", + "latitude_deg": "20.242374", + "longitude_deg": "-74.148268", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-14", + "municipality": "Maisí", + "scheduled_service": "no", + "gps_code": "MUMA", + "iata_code": "UMA", + "keywords": "Punta de Maisí" + }, + { + "id": "4844", + "ident": "MUMG", + "type": "small_airport", + "name": "Managua Airport", + "latitude_deg": "22.969900131225586", + "longitude_deg": "-82.2748031616211", + "elevation_ft": "377", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-03", + "municipality": "Managua", + "scheduled_service": "no", + "gps_code": "MUMG" + }, + { + "id": "42293", + "ident": "MUMH", + "type": "small_airport", + "name": "Matahambre Airport", + "latitude_deg": "22.587499618530273", + "longitude_deg": "-83.94499969482422", + "elevation_ft": "396", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-01", + "municipality": "Matahambre", + "scheduled_service": "no", + "gps_code": "MUMH" + }, + { + "id": "31914", + "ident": "MUMJ", + "type": "small_airport", + "name": "Mayajigua Airport", + "latitude_deg": "22.23080062866211", + "longitude_deg": "-79.06220245361328", + "elevation_ft": "173", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-07", + "municipality": "Mayajigua", + "scheduled_service": "no", + "gps_code": "MUMJ", + "iata_code": "MJG" + }, + { + "id": "4845", + "ident": "MUML", + "type": "closed", + "name": "Mariel Airport", + "latitude_deg": "23.007400512695312", + "longitude_deg": "-82.7676010131836", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-15", + "municipality": "Mariel", + "scheduled_service": "no", + "gps_code": "MUML" + }, + { + "id": "4846", + "ident": "MUMO", + "type": "medium_airport", + "name": "Orestes Acosta Airport", + "latitude_deg": "20.653900146484375", + "longitude_deg": "-74.92220306396484", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-11", + "municipality": "Moa", + "scheduled_service": "no", + "gps_code": "MUMO", + "iata_code": "MOA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orestes_Acosta_Airport" + }, + { + "id": "42301", + "ident": "MUMT", + "type": "small_airport", + "name": "Matanzas Airport", + "latitude_deg": "23.010000228881836", + "longitude_deg": "-81.51000213623047", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-04", + "municipality": "Matanzas", + "scheduled_service": "no", + "gps_code": "MUMT" + }, + { + "id": "4847", + "ident": "MUMZ", + "type": "medium_airport", + "name": "Sierra Maestra International Airport", + "latitude_deg": "20.288605", + "longitude_deg": "-77.087545", + "elevation_ft": "112", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-12", + "municipality": "Manzanillo", + "scheduled_service": "yes", + "gps_code": "MUMZ", + "iata_code": "MZO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sierra_Maestra_Airport" + }, + { + "id": "4848", + "ident": "MUNB", + "type": "medium_airport", + "name": "San Nicolas De Bari Airport", + "latitude_deg": "22.7561", + "longitude_deg": "-81.920898", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-16", + "municipality": "San Nicolás", + "scheduled_service": "no", + "gps_code": "MUNB", + "iata_code": "QSN" + }, + { + "id": "31664", + "ident": "MUNC", + "type": "small_airport", + "name": "Nicaro Airport", + "latitude_deg": "20.688600540161133", + "longitude_deg": "-75.53150177001953", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-11", + "municipality": "Nicaro", + "scheduled_service": "no", + "gps_code": "MUNC", + "iata_code": "ICR" + }, + { + "id": "4849", + "ident": "MUNG", + "type": "medium_airport", + "name": "Rafael Cabrera Airport", + "latitude_deg": "21.834699630737305", + "longitude_deg": "-82.78379821777344", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-99", + "municipality": "Nueva Gerona", + "scheduled_service": "yes", + "gps_code": "MUNG", + "iata_code": "GER", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rafael_P%C3%A9rez_Airport" + }, + { + "id": "4850", + "ident": "MUOC", + "type": "closed", + "name": "Cayo Coco Airport", + "latitude_deg": "22.513200759900002", + "longitude_deg": "-78.51100158690001", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-08", + "municipality": "Cayo Coco", + "scheduled_service": "no", + "gps_code": "MUOC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cayo_Coco_Airport", + "keywords": "CCC" + }, + { + "id": "42291", + "ident": "MUPA", + "type": "small_airport", + "name": "Punta Alegre Airport", + "latitude_deg": "22.379999", + "longitude_deg": "-78.817497", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-08", + "municipality": "Punta Alegre", + "scheduled_service": "no", + "gps_code": "MUPA" + }, + { + "id": "4851", + "ident": "MUPB", + "type": "medium_airport", + "name": "Playa Baracoa Airport", + "latitude_deg": "23.032800674399997", + "longitude_deg": "-82.5793991089", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-15", + "municipality": "Havana", + "scheduled_service": "yes", + "gps_code": "MUPB", + "iata_code": "UPB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Playa_Baracoa_Airport" + }, + { + "id": "42275", + "ident": "MUPL", + "type": "closed", + "name": "Pilon Airport", + "latitude_deg": "19.865882", + "longitude_deg": "-77.354575", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-12", + "municipality": "Pilon", + "scheduled_service": "no", + "keywords": "MUPL" + }, + { + "id": "4852", + "ident": "MUPR", + "type": "closed", + "name": "Pinar Del Rio Airport", + "latitude_deg": "22.421095", + "longitude_deg": "-83.678398", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-01", + "municipality": "Pinar del Rio", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pinar_del_Río_Airport", + "keywords": "MUPR, QPD" + }, + { + "id": "4853", + "ident": "MUSA", + "type": "small_airport", + "name": "San Antonio de los Baños Airfield", + "latitude_deg": "22.8715", + "longitude_deg": "-82.5093", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-15", + "municipality": "San Antonio de los Baños", + "scheduled_service": "no", + "gps_code": "MUSA", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Antonio_de_los_Baños_Airfield" + }, + { + "id": "4854", + "ident": "MUSC", + "type": "medium_airport", + "name": "Abel Santamaria Airport", + "latitude_deg": "22.49220085144043", + "longitude_deg": "-79.943603515625", + "elevation_ft": "338", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-05", + "municipality": "Santa Clara", + "scheduled_service": "no", + "gps_code": "MUSC", + "iata_code": "SNU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abel_Santa_Mar%C3%ADa_Airport" + }, + { + "id": "42297", + "ident": "MUSG", + "type": "small_airport", + "name": "Sagua La Grande Airport", + "latitude_deg": "22.801599502563477", + "longitude_deg": "-80.05480194091797", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-05", + "municipality": "Sagua la Grande", + "scheduled_service": "no", + "gps_code": "MUSG" + }, + { + "id": "32336", + "ident": "MUSJ", + "type": "medium_airport", + "name": "San Julian Air Base", + "latitude_deg": "22.095300674438477", + "longitude_deg": "-84.1520004272461", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-01", + "municipality": "Pinar Del Rio", + "scheduled_service": "no", + "gps_code": "MUSJ", + "iata_code": "SNJ" + }, + { + "id": "4855", + "ident": "MUSL", + "type": "small_airport", + "name": "Joaquín de Agüero Airport", + "latitude_deg": "21.509455906699998", + "longitude_deg": "-77.02059745790001", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-09", + "municipality": "Playa Santa Lucía", + "scheduled_service": "no", + "gps_code": "MUSL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Joaqu%C3%ADn_de_Ag%C3%BCero_Airport", + "keywords": "Joaquin de Aguero Airport" + }, + { + "id": "4856", + "ident": "MUSN", + "type": "medium_airport", + "name": "Siguanea Airport", + "latitude_deg": "21.642499923706055", + "longitude_deg": "-82.9551010131836", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-99", + "municipality": "Isla de la Juventud", + "scheduled_service": "no", + "gps_code": "MUSN", + "iata_code": "SZJ" + }, + { + "id": "4857", + "ident": "MUSS", + "type": "small_airport", + "name": "Sancti Spiritus Airport", + "latitude_deg": "21.9704", + "longitude_deg": "-79.442703", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-07", + "municipality": "Sancti Spiritus", + "scheduled_service": "no", + "gps_code": "MUSS", + "iata_code": "USS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sancti_Sp%C3%ADritus_Airport" + }, + { + "id": "4858", + "ident": "MUTD", + "type": "medium_airport", + "name": "Alberto Delgado Airport", + "latitude_deg": "21.788299560546875", + "longitude_deg": "-79.99720001220703", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-07", + "municipality": "Trinidad", + "scheduled_service": "yes", + "gps_code": "MUTD", + "iata_code": "TND" + }, + { + "id": "42281", + "ident": "MUTI", + "type": "small_airport", + "name": "Manati Airport", + "latitude_deg": "21.310699462890625", + "longitude_deg": "-76.92019653320312", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-10", + "municipality": "Manati", + "scheduled_service": "no", + "gps_code": "MUTI" + }, + { + "id": "4859", + "ident": "MUVR", + "type": "large_airport", + "name": "Juan Gualberto Gomez International Airport", + "latitude_deg": "23.034400939941406", + "longitude_deg": "-81.435302734375", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-04", + "municipality": "Varadero", + "scheduled_service": "yes", + "gps_code": "MUVR", + "iata_code": "VRA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Juan_Gualberto_G%C3%B3mez_Airport" + }, + { + "id": "4860", + "ident": "MUVT", + "type": "medium_airport", + "name": "Hermanos Ameijeiras Airport", + "latitude_deg": "20.987600326538086", + "longitude_deg": "-76.93579864501953", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "CU", + "iso_region": "CU-10", + "municipality": "Las Tunas", + "scheduled_service": "yes", + "gps_code": "MUVT", + "iata_code": "VTU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hermanos_Ameijeiras_Airport" + }, + { + "id": "308670", + "ident": "MV-0001", + "type": "seaplane_base", + "name": "Biyadoo Island", + "latitude_deg": "3.92496803919", + "longitude_deg": "73.4516716003", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-MLE", + "scheduled_service": "no" + }, + { + "id": "343539", + "ident": "MV-0002", + "type": "seaplane_base", + "name": "Kudafushi Resort & Spa Seaplane Base", + "latitude_deg": "5.50897", + "longitude_deg": "72.98045", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-13", + "municipality": "Kudafushi", + "scheduled_service": "no" + }, + { + "id": "343540", + "ident": "MV-0003", + "type": "seaplane_base", + "name": "Anantara Kihavah Maldives Villa Seaplane Base", + "latitude_deg": "5.29819", + "longitude_deg": "73.0575", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-20", + "municipality": "Kihavah Huravalhi", + "scheduled_service": "no" + }, + { + "id": "343541", + "ident": "MV-0004", + "type": "seaplane_base", + "name": "Four Seasons Private Island Seaplane Base", + "latitude_deg": "5.31731", + "longitude_deg": "73.07896", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-20", + "municipality": "Voavah", + "scheduled_service": "no" + }, + { + "id": "343542", + "ident": "MV-0005", + "type": "seaplane_base", + "name": "Vakkaru Island Resort Seaplane Base", + "latitude_deg": "5.13636", + "longitude_deg": "72.91026", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-20", + "municipality": "Vakkaru", + "scheduled_service": "no" + }, + { + "id": "343543", + "ident": "MV-0006", + "type": "seaplane_base", + "name": "Dreamland Maldives Seaplane Base", + "latitude_deg": "5.21786", + "longitude_deg": "73.15481", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-20", + "municipality": "Hirundhoo", + "scheduled_service": "no", + "keywords": "Hirundhoo, Hirundu" + }, + { + "id": "343544", + "ident": "MV-0007", + "type": "seaplane_base", + "name": "Robinson Club Noonu Seaplane Base", + "latitude_deg": "5.8048", + "longitude_deg": "73.29992", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-25", + "municipality": "Orivaru", + "scheduled_service": "no" + }, + { + "id": "343545", + "ident": "MV-0008", + "type": "seaplane_base", + "name": "Niyama Private Islands Seaplane Base", + "latitude_deg": "2.68125", + "longitude_deg": "72.93134", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-17", + "municipality": "Olhuveli", + "scheduled_service": "no" + }, + { + "id": "343546", + "ident": "MV-0009", + "type": "seaplane_base", + "name": "Kandima Island Resort Seaplane Base", + "latitude_deg": "2.7391", + "longitude_deg": "73.01475", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-17", + "municipality": "Boduthakurufaanu Magu", + "scheduled_service": "no" + }, + { + "id": "343547", + "ident": "MV-0010", + "type": "seaplane_base", + "name": "Baglioni Resort Seaplane Base", + "latitude_deg": "2.9477", + "longitude_deg": "72.9167", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-17", + "municipality": "Rinbudhoo", + "scheduled_service": "no", + "keywords": "Maagau" + }, + { + "id": "343548", + "ident": "MV-0011", + "type": "seaplane_base", + "name": "Maalefushi Seaplane Base", + "latitude_deg": "2.31339", + "longitude_deg": "73.29609", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-08", + "municipality": "Maalefushi", + "scheduled_service": "no" + }, + { + "id": "314180", + "ident": "MVI", + "type": "closed", + "name": "Manetai Airport", + "latitude_deg": "-6.12", + "longitude_deg": "155.39", + "elevation_ft": "170", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NSB", + "municipality": "Manetai", + "scheduled_service": "no", + "iata_code": "MVI" + }, + { + "id": "314181", + "ident": "MVJ", + "type": "closed", + "name": "Marlboro Airport", + "latitude_deg": "18.019", + "longitude_deg": "-77.495001", + "elevation_ft": "2080", + "continent": "NA", + "iso_country": "JM", + "iso_region": "JM-12", + "municipality": "Mandeville", + "scheduled_service": "no", + "keywords": "MVJ" + }, + { + "id": "351654", + "ident": "MW-0001", + "type": "small_airport", + "name": "Chintheche Aerodrome", + "latitude_deg": "-11.8353", + "longitude_deg": "34.16446", + "elevation_ft": "1650", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-NB", + "municipality": "Chintheche", + "scheduled_service": "no" + }, + { + "id": "4861", + "ident": "MWCB", + "type": "medium_airport", + "name": "Charles Kirkconnell International Airport", + "latitude_deg": "19.687", + "longitude_deg": "-79.882797", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "KY", + "iso_region": "KY-U-A", + "municipality": "Cayman Brac", + "scheduled_service": "yes", + "gps_code": "MWCB", + "iata_code": "CYB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gerrard_Smith_International_Airport" + }, + { + "id": "31977", + "ident": "MWCL", + "type": "medium_airport", + "name": "Edward Bodden Little Cayman Airfield", + "latitude_deg": "19.660161", + "longitude_deg": "-80.088826", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "KY", + "iso_region": "KY-U-A", + "municipality": "Little Cayman", + "scheduled_service": "no", + "gps_code": "MWCL", + "iata_code": "LYB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Edward_Bodden_Airfield", + "keywords": "Little Cayman Airport" + }, + { + "id": "4862", + "ident": "MWCR", + "type": "large_airport", + "name": "Owen Roberts International Airport", + "latitude_deg": "19.292800903299998", + "longitude_deg": "-81.3576965332", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "KY", + "iso_region": "KY-U-A", + "municipality": "Georgetown", + "scheduled_service": "yes", + "gps_code": "MWCR", + "iata_code": "GCM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Owen_Roberts_International_Airport", + "keywords": "Grand Cayman, George Town" + }, + { + "id": "314230", + "ident": "MWR", + "type": "small_airport", + "name": "Motswari Airport", + "latitude_deg": "-24.1903", + "longitude_deg": "31.3864", + "elevation_ft": "1160", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Motswari Private Game Reserve", + "scheduled_service": "no", + "iata_code": "MWR" + }, + { + "id": "352358", + "ident": "MWU", + "type": "small_airport", + "name": "Mussau Airport", + "latitude_deg": "-1.45", + "longitude_deg": "149.7", + "elevation_ft": "141", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NIK", + "municipality": "Mussau Island", + "scheduled_service": "no", + "iata_code": "MWU" + }, + { + "id": "43045", + "ident": "MX-0001", + "type": "small_airport", + "name": "Yécora Airport", + "latitude_deg": "28.354700088501", + "longitude_deg": "-108.92500305176", + "elevation_ft": "5038", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Yécora", + "scheduled_service": "no", + "local_code": "YEC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Y%C3%A9cora,_Sonora" + }, + { + "id": "46095", + "ident": "MX-0002", + "type": "small_airport", + "name": "Meling Ranch Airstrip", + "latitude_deg": "30.975328", + "longitude_deg": "-115.737877", + "elevation_ft": "2110", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "MNG" + }, + { + "id": "29787", + "ident": "MX-0003", + "type": "closed", + "name": "Ciudad Acuña Old Airport", + "latitude_deg": "29.331699", + "longitude_deg": "-100.981003", + "elevation_ft": "971", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "46096", + "ident": "MX-0004", + "type": "small_airport", + "name": "Alfonsinas Airstrip", + "latitude_deg": "29.806009", + "longitude_deg": "-114.396633", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "ASN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alfonsina%27s_Airstrip" + }, + { + "id": "46097", + "ident": "MX-0005", + "type": "small_airport", + "name": "Villas Mar de Cortez Airport", + "latitude_deg": "29.793059", + "longitude_deg": "-114.401836", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "VMC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rancho_Grande_Airstrip", + "keywords": "Rancho Grande, MMRG" + }, + { + "id": "46098", + "ident": "MX-0006", + "type": "small_airport", + "name": "Punta San Francisquito Airstrip", + "latitude_deg": "28.412616", + "longitude_deg": "-112.859588", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "PSF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Punta_San_Francisquito_Airfield" + }, + { + "id": "46099", + "ident": "MX-0007", + "type": "small_airport", + "name": "Rancho San Cristobal Airstrip", + "latitude_deg": "26.851259", + "longitude_deg": "-113.140211", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no", + "local_code": "RCX", + "home_link": "http://www.aridabajahotel.com.mx/english/airstrip/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Laguna_San_Ignacio_Airstrip", + "keywords": "Laguna San Ignacio" + }, + { + "id": "43104", + "ident": "MX-0008", + "type": "small_airport", + "name": "Bahía de Kino Airport", + "latitude_deg": "28.8601", + "longitude_deg": "-111.976997", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Hermosillo", + "scheduled_service": "no", + "local_code": "BHK" + }, + { + "id": "300518", + "ident": "MX-0009", + "type": "small_airport", + "name": "Trinidad Ramos Valdez Airport", + "latitude_deg": "20.370806", + "longitude_deg": "-104.826465", + "elevation_ft": "3799", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Talpa de Allende", + "scheduled_service": "no", + "local_code": "TLJ" + }, + { + "id": "300560", + "ident": "MX-0010", + "type": "small_airport", + "name": "General Gonzalo Curiel García - Mascota National Airport", + "latitude_deg": "20.538436", + "longitude_deg": "-104.805589", + "elevation_ft": "4055", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Mascota", + "scheduled_service": "no", + "local_code": "MAS" + }, + { + "id": "300562", + "ident": "MX-0011", + "type": "small_airport", + "name": "San Sebastián Airport", + "latitude_deg": "20.7658916667", + "longitude_deg": "-104.8685", + "elevation_ft": "4232", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "San Sebastian Del Oeste", + "scheduled_service": "no", + "local_code": "SSB" + }, + { + "id": "300563", + "ident": "MX-0012", + "type": "small_airport", + "name": "El Llano Airport", + "latitude_deg": "21.0753", + "longitude_deg": "-105.2264", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "Compostela", + "scheduled_service": "no", + "local_code": "LLF" + }, + { + "id": "300697", + "ident": "MX-0013", + "type": "small_airport", + "name": "Sahuaripa Airport", + "latitude_deg": "29.0303285675", + "longitude_deg": "-109.258024693", + "elevation_ft": "1759", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Sahuaripa", + "scheduled_service": "no", + "local_code": "SAH" + }, + { + "id": "308285", + "ident": "MX-0014", + "type": "small_airport", + "name": "San Miguel de Allende Airport", + "latitude_deg": "20.908333", + "longitude_deg": "-100.702778", + "elevation_ft": "6682", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "San Miguel de Allende", + "scheduled_service": "no", + "local_code": "SMA", + "keywords": "San Julian" + }, + { + "id": "308376", + "ident": "MX-0015", + "type": "small_airport", + "name": "Bahía Asunción Airstrip", + "latitude_deg": "27.183611", + "longitude_deg": "-114.277222", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no", + "local_code": "BSU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bah%C3%ADa_Asunci%C3%B3n_Airstrip" + }, + { + "id": "308377", + "ident": "MX-0016", + "type": "small_airport", + "name": "Bahía Tortugas Airfield", + "latitude_deg": "27.706336", + "longitude_deg": "-114.912922", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no", + "gps_code": "MX13", + "local_code": "BTR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bah%C3%ADa_Tortugas_Airfield" + }, + { + "id": "308378", + "ident": "MX-0017", + "type": "small_airport", + "name": "Cadejé Airstrip", + "latitude_deg": "26.370833", + "longitude_deg": "-112.513611", + "elevation_ft": "237", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Comondú", + "scheduled_service": "no", + "local_code": "CDJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cadej%C3%A9_Airstrip" + }, + { + "id": "308379", + "ident": "MX-0018", + "type": "small_airport", + "name": "Bahía Ballenas Airstrip", + "latitude_deg": "26.805556", + "longitude_deg": "-113.476389", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no", + "local_code": "BBS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bah%C3%ADa_Ballenas_Airstrip", + "keywords": "Campo René" + }, + { + "id": "308380", + "ident": "MX-0019", + "type": "small_airport", + "name": "Melitón Albáñez Domínguez Airstrip", + "latitude_deg": "23.667222", + "longitude_deg": "-110.442222", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no", + "local_code": "MOA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Melit%C3%B3n_Alb%C3%A1%C3%B1ez_Dom%C3%ADnguez_Airstrip" + }, + { + "id": "308381", + "ident": "MX-0020", + "type": "small_airport", + "name": "Isla Natividad Airstrip", + "latitude_deg": "27.857778", + "longitude_deg": "-115.165", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no", + "local_code": "ISN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Isla_Natividad_Airstrip" + }, + { + "id": "308384", + "ident": "MX-0021", + "type": "small_airport", + "name": "Todos Santos Airstrip", + "latitude_deg": "23.498333", + "longitude_deg": "-110.201944", + "elevation_ft": "432", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no", + "local_code": "TSN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Todos_Santos_Airstrip" + }, + { + "id": "308388", + "ident": "MX-0022", + "type": "small_airport", + "name": "Rancho El Caracol Airfield", + "latitude_deg": "27.515833", + "longitude_deg": "-113.329722", + "elevation_ft": "238", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no", + "local_code": "ROL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rancho_El_Caracol_Airfield" + }, + { + "id": "308389", + "ident": "MX-0023", + "type": "closed", + "name": "Rancho Chávez Airstrip", + "latitude_deg": "26.895556", + "longitude_deg": "-112.052222", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rancho_Ch%C3%A1vez_Airstrip" + }, + { + "id": "308390", + "ident": "MX-0024", + "type": "small_airport", + "name": "Rancho Las Cruces Airstrip", + "latitude_deg": "24.206667", + "longitude_deg": "-110.084722", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no", + "local_code": "LCS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rancho_Las_Cruces_Airstrip" + }, + { + "id": "308394", + "ident": "MX-0025", + "type": "small_airport", + "name": "Río de Agua de Vida Airstrip", + "latitude_deg": "26.1775", + "longitude_deg": "-112.114167", + "elevation_ft": "338", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Comondú", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/R%C3%ADo_de_Agua_de_Vida_Airstrip" + }, + { + "id": "308395", + "ident": "MX-0026", + "type": "small_airport", + "name": "Palo Blanco Airstrip", + "latitude_deg": "26.148333", + "longitude_deg": "-112.106667", + "elevation_ft": "819", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Comondú", + "scheduled_service": "no", + "local_code": "ENW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palo_Blanco_Airstrip" + }, + { + "id": "308396", + "ident": "MX-0027", + "type": "small_airport", + "name": "Isla San Marcos Airstrip", + "latitude_deg": "27.1875", + "longitude_deg": "-112.07", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no", + "local_code": "ISM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Isla_San_Marcos_Airstrip" + }, + { + "id": "308397", + "ident": "MX-0028", + "type": "small_airport", + "name": "San Lucas Military Airstrip", + "latitude_deg": "27.208757", + "longitude_deg": "-112.218034", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no", + "gps_code": "MX94", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Lucas_Military_Airstrip" + }, + { + "id": "308398", + "ident": "MX-0029", + "type": "small_airport", + "name": "Puerto Cortés Airstrip", + "latitude_deg": "24.475", + "longitude_deg": "-111.8258", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Comondú", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Puerto_Cort%C3%A9s_Airstrip" + }, + { + "id": "308400", + "ident": "MX-0030", + "type": "small_airport", + "name": "Santa María de Mulegé Airport", + "latitude_deg": "27.394079", + "longitude_deg": "-112.305336", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no", + "local_code": "SMM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Mar%C3%ADa_de_Muleg%C3%A9_Airport" + }, + { + "id": "308401", + "ident": "MX-0031", + "type": "closed", + "name": "San Juanico Airstrip", + "latitude_deg": "26.260833", + "longitude_deg": "-112.486111", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Comondú", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Juanico_Airstrip" + }, + { + "id": "308402", + "ident": "MX-0032", + "type": "small_airport", + "name": "Península de los Sueños Airstrip", + "latitude_deg": "24.026944", + "longitude_deg": "-109.837501", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no", + "local_code": "LAR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Punta_Arena_Airstrip", + "keywords": "Las Arenas Airport, Punta Arena Airstrip" + }, + { + "id": "308621", + "ident": "MX-0033", + "type": "small_airport", + "name": "Real del Castillo Airstrip", + "latitude_deg": "31.8809", + "longitude_deg": "-116.1994", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ojos Negros", + "scheduled_service": "no", + "local_code": "RCO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Real_del_Castillo_Airstrip" + }, + { + "id": "308622", + "ident": "MX-0034", + "type": "small_airport", + "name": "Punta Final Airstrip", + "latitude_deg": "29.73536", + "longitude_deg": "-114.31228", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "PFL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Punta_Final_Airstrip" + }, + { + "id": "308623", + "ident": "MX-0035", + "type": "small_airport", + "name": "Punta Prieta Airstrip", + "latitude_deg": "28.9217", + "longitude_deg": "-114.1516", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Punta_Prieta_Airstrip" + }, + { + "id": "308624", + "ident": "MX-0036", + "type": "small_airport", + "name": "Punta San Carlos Airstrip", + "latitude_deg": "29.6194", + "longitude_deg": "-115.5028", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "PSK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Punta_San_Carlos_Airstrip" + }, + { + "id": "308639", + "ident": "MX-0037", + "type": "closed", + "name": "Tecate Airport", + "latitude_deg": "32.5408", + "longitude_deg": "-116.6386", + "elevation_ft": "2025", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Tecate", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tecate_Airport" + }, + { + "id": "313718", + "ident": "MX-0038", + "type": "small_airport", + "name": "Isla María Airport", + "latitude_deg": "21.65023", + "longitude_deg": "-106.53817", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "San Blas", + "scheduled_service": "no" + }, + { + "id": "313719", + "ident": "MX-0039", + "type": "small_airport", + "name": "Puerto Adolfo López Mateos Airstrip", + "latitude_deg": "25.19709", + "longitude_deg": "-112.11385", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Comondú", + "scheduled_service": "no", + "local_code": "MTB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Puerto_Adolfo_L%C3%B3pez_Mateos_Airstrip", + "keywords": "Matancitas Airport" + }, + { + "id": "313721", + "ident": "MX-0040", + "type": "small_airport", + "name": "Santa Cruz Airfield", + "latitude_deg": "17.768944", + "longitude_deg": "-98.576988", + "elevation_ft": "3038", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Huamuxtitlan", + "scheduled_service": "no", + "local_code": "SHX" + }, + { + "id": "315220", + "ident": "MX-0041", + "type": "small_airport", + "name": "Turismo Lago Guerrero Airport", + "latitude_deg": "24.044689", + "longitude_deg": "-98.705417", + "elevation_ft": "489", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Huachinera", + "scheduled_service": "no", + "local_code": "TLG", + "keywords": "Big Bass" + }, + { + "id": "315221", + "ident": "MX-0042", + "type": "small_airport", + "name": "Agricola Las Isabeles Airport", + "latitude_deg": "30.2732", + "longitude_deg": "-106.7503", + "elevation_ft": "4227", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Villa Ahumada", + "scheduled_service": "no", + "local_code": "AIB" + }, + { + "id": "315222", + "ident": "MX-0043", + "type": "small_airport", + "name": "Capitan Birotes Airport", + "latitude_deg": "24.8317", + "longitude_deg": "-107.6696", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Navolato", + "scheduled_service": "no", + "local_code": "CEB" + }, + { + "id": "315224", + "ident": "MX-0044", + "type": "small_airport", + "name": "Cabo Cortes Airstrip", + "latitude_deg": "23.5109", + "longitude_deg": "-109.4829", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Los Cabos", + "scheduled_service": "no", + "local_code": "ACC", + "keywords": "Aeródromo Cabo Cortes" + }, + { + "id": "315225", + "ident": "MX-0045", + "type": "small_airport", + "name": "Club Aereo Del Yaqui Airport", + "latitude_deg": "27.447", + "longitude_deg": "-110.02", + "elevation_ft": "87", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cajeme", + "scheduled_service": "no", + "local_code": "ADY" + }, + { + "id": "315226", + "ident": "MX-0046", + "type": "small_airport", + "name": "Santa Ana Maloapan Airport", + "latitude_deg": "20.0623", + "longitude_deg": "-97.0872", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Martinez De La Torre", + "scheduled_service": "no", + "local_code": "SAV" + }, + { + "id": "315227", + "ident": "MX-0047", + "type": "small_airport", + "name": "Rancho Santa Rosa Airstrip", + "latitude_deg": "21.4441", + "longitude_deg": "-100.937", + "elevation_ft": "7060", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "San Diego De La Union", + "scheduled_service": "no", + "local_code": "GAA" + }, + { + "id": "315228", + "ident": "MX-0048", + "type": "small_airport", + "name": "Aerofumigaciones Nayarit Airstrip", + "latitude_deg": "32.3143", + "longitude_deg": "-115.274", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "AST" + }, + { + "id": "315229", + "ident": "MX-0049", + "type": "closed", + "name": "Potrero de Los Medina Airstrip", + "latitude_deg": "25.5335", + "longitude_deg": "-107.3613", + "elevation_ft": "3770", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "POM" + }, + { + "id": "315230", + "ident": "MX-0050", + "type": "small_airport", + "name": "Los Aztecas Airport", + "latitude_deg": "22.5141", + "longitude_deg": "-98.6325", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Ciudad Mante", + "scheduled_service": "no", + "local_code": "AZT" + }, + { + "id": "315231", + "ident": "MX-0051", + "type": "small_airport", + "name": "Hacienda Guadalupe Airport", + "latitude_deg": "29.0259", + "longitude_deg": "-102.3968", + "elevation_ft": "3850", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Melchor Muzquiz", + "scheduled_service": "no", + "local_code": "HGU" + }, + { + "id": "315233", + "ident": "MX-0052", + "type": "small_airport", + "name": "Campeche Airport", + "latitude_deg": "32.5318", + "longitude_deg": "-114.9898", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "CXE" + }, + { + "id": "315234", + "ident": "MX-0053", + "type": "small_airport", + "name": "Santa Fe Airport", + "latitude_deg": "30.6644", + "longitude_deg": "-112.2875", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Caborca", + "scheduled_service": "no", + "local_code": "SFC" + }, + { + "id": "315235", + "ident": "MX-0054", + "type": "small_airport", + "name": "La Escuadra Airport", + "latitude_deg": "24.068", + "longitude_deg": "-99.0108", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Padilla", + "scheduled_service": "no", + "local_code": "LEQ" + }, + { + "id": "315237", + "ident": "MX-0055", + "type": "small_airport", + "name": "Puertecitos Airport", + "latitude_deg": "30.3537", + "longitude_deg": "-114.6394", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "PRC" + }, + { + "id": "315238", + "ident": "MX-0056", + "type": "small_airport", + "name": "Pista Nuevo Leon Baja II", + "latitude_deg": "32.4159", + "longitude_deg": "-115.171", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "NVO" + }, + { + "id": "315246", + "ident": "MX-0057", + "type": "closed", + "name": "Bahía Soledad Airstrip", + "latitude_deg": "31.584", + "longitude_deg": "-116.6502", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "BSO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bah%C3%ADa_Soledad_Airstrip" + }, + { + "id": "315353", + "ident": "MX-0058", + "type": "small_airport", + "name": "La Pichihuila Airstrip", + "latitude_deg": "26.3591", + "longitude_deg": "-107.8008", + "elevation_ft": "4610", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Morelos", + "scheduled_service": "no", + "local_code": "LPH", + "keywords": "Rio Sinaloa" + }, + { + "id": "315354", + "ident": "MX-0059", + "type": "small_airport", + "name": "Zarupa Airstrip", + "latitude_deg": "26.4642", + "longitude_deg": "-107.7969", + "elevation_ft": "5542", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Morelos", + "scheduled_service": "no", + "local_code": "ZRA", + "keywords": "La Laguna" + }, + { + "id": "315355", + "ident": "MX-0060", + "type": "small_airport", + "name": "Macho Bayo Airstrip", + "latitude_deg": "24.7462", + "longitude_deg": "-106.2206", + "elevation_ft": "7956", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Otáez", + "scheduled_service": "no", + "local_code": "MBY" + }, + { + "id": "315356", + "ident": "MX-0061", + "type": "small_airport", + "name": "Moralar Airstrip", + "latitude_deg": "17.6321", + "longitude_deg": "-94.9098", + "elevation_ft": "166", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "San Juan Evangelista", + "scheduled_service": "no", + "local_code": "MRR" + }, + { + "id": "315357", + "ident": "MX-0062", + "type": "closed", + "name": "Rancho Medio Kilo Airport", + "latitude_deg": "21.9998", + "longitude_deg": "-102.2673", + "elevation_ft": "6202", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-AGU", + "municipality": "San Francisco de los Romo", + "scheduled_service": "no", + "keywords": "RMK" + }, + { + "id": "315358", + "ident": "MX-0063", + "type": "small_airport", + "name": "San Luis Airport", + "latitude_deg": "32.4993", + "longitude_deg": "-115.146", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "SUI" + }, + { + "id": "315359", + "ident": "MX-0064", + "type": "small_airport", + "name": "Vizcaino Airport", + "latitude_deg": "27.464", + "longitude_deg": "-113.2892", + "elevation_ft": "249", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no", + "local_code": "VZM" + }, + { + "id": "315361", + "ident": "MX-0065", + "type": "closed", + "name": "La Joya Airport", + "latitude_deg": "25.5353", + "longitude_deg": "-103.348", + "elevation_ft": "3681", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Torreón", + "scheduled_service": "no" + }, + { + "id": "315609", + "ident": "MX-0066", + "type": "small_airport", + "name": "Jalpan Airstrip", + "latitude_deg": "21.2509", + "longitude_deg": "-99.4802", + "elevation_ft": "2343", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-QUE", + "municipality": "Jalpan de Serra", + "scheduled_service": "no", + "local_code": "JPN" + }, + { + "id": "315610", + "ident": "MX-0067", + "type": "small_airport", + "name": "Jazmines de Coyultita Airstrip", + "latitude_deg": "22.0022", + "longitude_deg": "-104.648", + "elevation_ft": "3480", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "El Nayar", + "scheduled_service": "no", + "local_code": "JCN" + }, + { + "id": "315612", + "ident": "MX-0068", + "type": "small_airport", + "name": "El Janeño Airstrip", + "latitude_deg": "31.1508", + "longitude_deg": "-111.9748", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Altar", + "scheduled_service": "no", + "local_code": "JNN" + }, + { + "id": "315810", + "ident": "MX-0069", + "type": "small_airport", + "name": "Hernandez Ranch Airstrip", + "latitude_deg": "19.3293", + "longitude_deg": "-102.3274", + "elevation_ft": "7026", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Tancitaro", + "scheduled_service": "no", + "local_code": "HRH" + }, + { + "id": "315811", + "ident": "MX-0070", + "type": "small_airport", + "name": "Loma Roja Airport", + "latitude_deg": "19.2526", + "longitude_deg": "-97.6775", + "elevation_ft": "7721", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "Rafael Lara Grajales", + "scheduled_service": "no", + "local_code": "RLS" + }, + { + "id": "315818", + "ident": "MX-0071", + "type": "small_airport", + "name": "Los Olivos Airstrip", + "latitude_deg": "30.5782", + "longitude_deg": "-112.9485", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Caborca", + "scheduled_service": "no", + "local_code": "LOC" + }, + { + "id": "316085", + "ident": "MX-0072", + "type": "small_airport", + "name": "Aerofumigaciones Maranatu Airport", + "latitude_deg": "24.4776", + "longitude_deg": "-107.4082", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "AFM" + }, + { + "id": "316086", + "ident": "MX-0073", + "type": "small_airport", + "name": "C.P.A. Rodolfo Amparan Rosales Airport", + "latitude_deg": "28.8592", + "longitude_deg": "-105.8702", + "elevation_ft": "4125", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Aldama", + "scheduled_service": "no", + "local_code": "RAV" + }, + { + "id": "316087", + "ident": "MX-0074", + "type": "small_airport", + "name": "Manjarrez de Caborca Airport", + "latitude_deg": "30.7009", + "longitude_deg": "-112.2293", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Caborca", + "scheduled_service": "no", + "local_code": "MCB", + "keywords": "MX16" + }, + { + "id": "316088", + "ident": "MX-0075", + "type": "small_airport", + "name": "Las Cruces Airstrip", + "latitude_deg": "25.5792", + "longitude_deg": "-108.4128", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "JRS" + }, + { + "id": "316089", + "ident": "MX-0076", + "type": "heliport", + "name": "Plaza Corporativo Banamex Helipad", + "latitude_deg": "19.374", + "longitude_deg": "-99.2588", + "elevation_ft": "8416", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Alvaro Obregon", + "scheduled_service": "no", + "local_code": "HBA" + }, + { + "id": "316090", + "ident": "MX-0077", + "type": "small_airport", + "name": "El Jaguey Airport", + "latitude_deg": "21.23115", + "longitude_deg": "-100.836", + "elevation_ft": "6525", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "Dolores Hidalgo", + "scheduled_service": "no", + "local_code": "JGY" + }, + { + "id": "316092", + "ident": "MX-0078", + "type": "small_airport", + "name": "San Juan de Camarones Airstrip", + "latitude_deg": "24.9237", + "longitude_deg": "-106.4101", + "elevation_ft": "2300", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Santiago Papasquiaro", + "scheduled_service": "no", + "local_code": "SDC" + }, + { + "id": "316094", + "ident": "MX-0079", + "type": "small_airport", + "name": "San Fernando Airport", + "latitude_deg": "24.8341", + "longitude_deg": "-98.1025", + "elevation_ft": "214", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "San Fernando", + "scheduled_service": "no", + "local_code": "SFR" + }, + { + "id": "316095", + "ident": "MX-0080", + "type": "closed", + "name": "La Candelaria Borders Airport", + "latitude_deg": "28.3428", + "longitude_deg": "-100.5055", + "elevation_ft": "892", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Guerrero", + "scheduled_service": "no", + "local_code": "LCD" + }, + { + "id": "316360", + "ident": "MX-0081", + "type": "small_airport", + "name": "Punta Colonet Airport", + "latitude_deg": "30.9582", + "longitude_deg": "-116.2409", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "PCT" + }, + { + "id": "316361", + "ident": "MX-0082", + "type": "small_airport", + "name": "Loma Blanca Airport", + "latitude_deg": "19.0743", + "longitude_deg": "-102.7991", + "elevation_ft": "1035", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Tepalcatepec", + "scheduled_service": "no", + "local_code": "LBH" + }, + { + "id": "316362", + "ident": "MX-0083", + "type": "small_airport", + "name": "No Le Hace Airstrip", + "latitude_deg": "24.814", + "longitude_deg": "-97.9204", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "San Fernando", + "scheduled_service": "no", + "local_code": "NLH" + }, + { + "id": "316363", + "ident": "MX-0084", + "type": "small_airport", + "name": "Miguel Aleman Airport", + "latitude_deg": "16.2178", + "longitude_deg": "-92.1115", + "elevation_ft": "5287", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Comitán", + "scheduled_service": "no", + "local_code": "MAX" + }, + { + "id": "316364", + "ident": "MX-0085", + "type": "small_airport", + "name": "El Jardin Airport", + "latitude_deg": "29.1741", + "longitude_deg": "-102.585", + "elevation_ft": "4135", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ocampo", + "scheduled_service": "no", + "local_code": "JDN" + }, + { + "id": "316365", + "ident": "MX-0086", + "type": "heliport", + "name": "Arena Ciudad de Mexico Helipad I", + "latitude_deg": "19.4958", + "longitude_deg": "-99.1757", + "elevation_ft": "7385", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Azcapotzalco", + "scheduled_service": "no", + "local_code": "HAV" + }, + { + "id": "316366", + "ident": "MX-0087", + "type": "heliport", + "name": "Arena Ciudad de Mexico Helipad II", + "latitude_deg": "19.4951", + "longitude_deg": "-99.1753", + "elevation_ft": "7376", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Azcapotzalco", + "scheduled_service": "no", + "local_code": "HAR" + }, + { + "id": "316367", + "ident": "MX-0088", + "type": "small_airport", + "name": "Santa Paula Airport", + "latitude_deg": "25.8466", + "longitude_deg": "-108.9707", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Ahome", + "scheduled_service": "no", + "local_code": "PAU" + }, + { + "id": "316533", + "ident": "MX-0089", + "type": "small_airport", + "name": "Hacienda Panoaya Airfield", + "latitude_deg": "19.1428", + "longitude_deg": "-98.7681", + "elevation_ft": "8130", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Amecameca", + "scheduled_service": "no", + "local_code": "PNY" + }, + { + "id": "316534", + "ident": "MX-0090", + "type": "small_airport", + "name": "Malvinas Airstrip", + "latitude_deg": "22.686", + "longitude_deg": "-97.9286", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Aldama", + "scheduled_service": "no", + "local_code": "MAV" + }, + { + "id": "316535", + "ident": "MX-0091", + "type": "small_airport", + "name": "El Lloron Airstrip", + "latitude_deg": "30.6925", + "longitude_deg": "-105.5041", + "elevation_ft": "5090", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe", + "scheduled_service": "no", + "local_code": "RLZ" + }, + { + "id": "316536", + "ident": "MX-0092", + "type": "small_airport", + "name": "Alizal Airport", + "latitude_deg": "25.4541", + "longitude_deg": "-106.9211", + "elevation_ft": "7895", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "ALX" + }, + { + "id": "316537", + "ident": "MX-0093", + "type": "small_airport", + "name": "Las Potrancas Airport", + "latitude_deg": "23.041", + "longitude_deg": "-98.1533", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Villa Aldama", + "scheduled_service": "no", + "local_code": "PTA" + }, + { + "id": "316538", + "ident": "MX-0094", + "type": "heliport", + "name": "Hotel Camino Real Monterrey Helipad", + "latitude_deg": "25.6505", + "longitude_deg": "-100.3345", + "elevation_ft": "2068", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Monterrey", + "scheduled_service": "no", + "local_code": "HRE" + }, + { + "id": "316677", + "ident": "MX-0095", + "type": "closed", + "name": "Pochutla Airport", + "latitude_deg": "15.7317", + "longitude_deg": "-96.4686", + "elevation_ft": "528", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "San Pedro Pochutla", + "scheduled_service": "no", + "keywords": "PUH" + }, + { + "id": "316705", + "ident": "MX-0096", + "type": "small_airport", + "name": "Guadalupe Airstrip", + "latitude_deg": "25.189", + "longitude_deg": "-100.767", + "elevation_ft": "6730", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Arteaga", + "scheduled_service": "no", + "local_code": "RGP" + }, + { + "id": "316706", + "ident": "MX-0097", + "type": "small_airport", + "name": "Mieleras Airport", + "latitude_deg": "25.4682", + "longitude_deg": "-103.3477", + "elevation_ft": "3715", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Torreon", + "scheduled_service": "no", + "local_code": "APS" + }, + { + "id": "316707", + "ident": "MX-0098", + "type": "small_airport", + "name": "El Baztán Airstrip", + "latitude_deg": "18.7415", + "longitude_deg": "-101.1619", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Huetamo", + "scheduled_service": "no", + "local_code": "BCM", + "keywords": "Bastán" + }, + { + "id": "316708", + "ident": "MX-0099", + "type": "small_airport", + "name": "Nido de Águilas Airport", + "latitude_deg": "23.8237", + "longitude_deg": "-98.178", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "NAG" + }, + { + "id": "316710", + "ident": "MX-0100", + "type": "small_airport", + "name": "Manantiales Airport", + "latitude_deg": "22.953", + "longitude_deg": "-98.4122", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Gonzalez", + "scheduled_service": "no", + "local_code": "RMA" + }, + { + "id": "316711", + "ident": "MX-0101", + "type": "small_airport", + "name": "Rancho Las Hermanas Airstrip", + "latitude_deg": "28.591", + "longitude_deg": "-101.6132", + "elevation_ft": "2465", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no", + "local_code": "RHZ" + }, + { + "id": "316712", + "ident": "MX-0102", + "type": "small_airport", + "name": "Rincon de Maria Airport", + "latitude_deg": "28.5552", + "longitude_deg": "-102.0583", + "elevation_ft": "2690", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Melchor Múzquiz", + "scheduled_service": "no", + "local_code": "CGB", + "keywords": "La Babia" + }, + { + "id": "316874", + "ident": "MX-0103", + "type": "small_airport", + "name": "Agropecuaria Amparan Airstrip", + "latitude_deg": "26.976", + "longitude_deg": "-109.5389", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Navojoa", + "scheduled_service": "no", + "local_code": "AAP" + }, + { + "id": "316875", + "ident": "MX-0104", + "type": "small_airport", + "name": "El Zamora Airport", + "latitude_deg": "23.4243", + "longitude_deg": "-97.9212", + "elevation_ft": "544", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "EZM" + }, + { + "id": "316876", + "ident": "MX-0105", + "type": "small_airport", + "name": "Albatros Residencial Aereo", + "latitude_deg": "18.5926", + "longitude_deg": "-99.26", + "elevation_ft": "3190", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MOR", + "municipality": "Jojutla", + "scheduled_service": "no", + "local_code": "ABT" + }, + { + "id": "316877", + "ident": "MX-0106", + "type": "small_airport", + "name": "Santo Tomas Airport", + "latitude_deg": "14.6448", + "longitude_deg": "-92.205", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Suchiate", + "scheduled_service": "no", + "local_code": "STT" + }, + { + "id": "316878", + "ident": "MX-0107", + "type": "small_airport", + "name": "La Base Airport", + "latitude_deg": "14.7607", + "longitude_deg": "-92.3414", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Tapachula", + "scheduled_service": "no", + "local_code": "LAA" + }, + { + "id": "316879", + "ident": "MX-0108", + "type": "small_airport", + "name": "Tancholin Airport", + "latitude_deg": "21.652", + "longitude_deg": "-98.5955", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Tempoal", + "scheduled_service": "no", + "local_code": "TNH", + "keywords": "MXA0" + }, + { + "id": "316880", + "ident": "MX-0109", + "type": "small_airport", + "name": "Acaponeta Airport", + "latitude_deg": "22.4832", + "longitude_deg": "-105.4118", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "Acaponeta", + "scheduled_service": "no", + "local_code": "ACP", + "keywords": "MX02" + }, + { + "id": "316883", + "ident": "MX-0110", + "type": "small_airport", + "name": "La Gloria Airport", + "latitude_deg": "26.3304", + "longitude_deg": "-99.4858", + "elevation_ft": "526", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Agualeguas", + "scheduled_service": "no", + "local_code": "TKT" + }, + { + "id": "316891", + "ident": "MX-0111", + "type": "small_airport", + "name": "Tenosique Airport", + "latitude_deg": "17.463505", + "longitude_deg": "-91.406689", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Tenosique de Pino Suárez", + "scheduled_service": "no", + "gps_code": "MM46", + "keywords": "MM1N, MXA1" + }, + { + "id": "316893", + "ident": "MX-0112", + "type": "closed", + "name": "Santiago Airport", + "latitude_deg": "19.4898", + "longitude_deg": "-97.5684", + "elevation_ft": "7730", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "Libres", + "scheduled_service": "no", + "local_code": "SGS" + }, + { + "id": "316894", + "ident": "MX-0113", + "type": "small_airport", + "name": "Región Carbonifera Airport", + "latitude_deg": "27.9746", + "longitude_deg": "-101.2125", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Sabinas", + "scheduled_service": "no", + "local_code": "RCF" + }, + { + "id": "317108", + "ident": "MX-0114", + "type": "small_airport", + "name": "Rancho La Nutria Airport", + "latitude_deg": "24.9", + "longitude_deg": "-99.771132", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Linares", + "scheduled_service": "no", + "local_code": "LNU" + }, + { + "id": "317109", + "ident": "MX-0115", + "type": "heliport", + "name": "Veronica Heliport", + "latitude_deg": "19.441628", + "longitude_deg": "-99.177538", + "elevation_ft": "7365", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HVE" + }, + { + "id": "317110", + "ident": "MX-0116", + "type": "small_airport", + "name": "El Limon de Badiraguato Airstrip", + "latitude_deg": "25.8242", + "longitude_deg": "-107.2327", + "elevation_ft": "4060", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "LDB" + }, + { + "id": "317111", + "ident": "MX-0117", + "type": "small_airport", + "name": "Rancho Madero Airport", + "latitude_deg": "27.3805", + "longitude_deg": "-104.88", + "elevation_ft": "4305", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ciudad Jimenez", + "scheduled_service": "no", + "local_code": "RMF" + }, + { + "id": "317112", + "ident": "MX-0118", + "type": "small_airport", + "name": "La Azufrosa Airport", + "latitude_deg": "28.1019", + "longitude_deg": "-102.1963", + "elevation_ft": "3770", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Acampo", + "scheduled_service": "no", + "local_code": "RLA" + }, + { + "id": "317113", + "ident": "MX-0119", + "type": "small_airport", + "name": "La Azufrosa I Airport", + "latitude_deg": "27.399", + "longitude_deg": "-100.7756", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Progreso", + "scheduled_service": "no", + "local_code": "AZF" + }, + { + "id": "317353", + "ident": "MX-0120", + "type": "small_airport", + "name": "Nicolas Bravo Airport", + "latitude_deg": "17.734577", + "longitude_deg": "-92.62813", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Macuspana", + "scheduled_service": "no", + "local_code": "NBT" + }, + { + "id": "317354", + "ident": "MX-0121", + "type": "small_airport", + "name": "La Joya Brun Airstrip", + "latitude_deg": "19.4444", + "longitude_deg": "-103.6713", + "elevation_ft": "4790", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COL", + "municipality": "Comala", + "scheduled_service": "no", + "local_code": "JYB" + }, + { + "id": "317355", + "ident": "MX-0122", + "type": "small_airport", + "name": "El Jabali Airport", + "latitude_deg": "19.448475", + "longitude_deg": "-103.683921", + "elevation_ft": "4575", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COL", + "municipality": "Comala", + "scheduled_service": "no", + "local_code": "UJI" + }, + { + "id": "317356", + "ident": "MX-0123", + "type": "small_airport", + "name": "La Simiente Airstrip", + "latitude_deg": "22.1806", + "longitude_deg": "-98.4142", + "elevation_ft": "97", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "Ebano", + "scheduled_service": "no", + "local_code": "SIM" + }, + { + "id": "317357", + "ident": "MX-0124", + "type": "small_airport", + "name": "Chantol Airstrip", + "latitude_deg": "22.0943", + "longitude_deg": "-99.0963", + "elevation_ft": "444", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "Ciudad Valles", + "scheduled_service": "no", + "local_code": "CTK" + }, + { + "id": "317358", + "ident": "MX-0125", + "type": "small_airport", + "name": "Covadonga Airport", + "latitude_deg": "21.9117", + "longitude_deg": "-98.9564", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "Ciudad Valles", + "scheduled_service": "no", + "local_code": "CVD" + }, + { + "id": "317468", + "ident": "MX-0126", + "type": "small_airport", + "name": "Algodonera de Tapachula Airport", + "latitude_deg": "14.822495", + "longitude_deg": "-92.333216", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Tapachula", + "scheduled_service": "no", + "local_code": "ALG" + }, + { + "id": "317470", + "ident": "MX-0127", + "type": "small_airport", + "name": "Potrerillos Airstrip", + "latitude_deg": "25.7972", + "longitude_deg": "-99.2511", + "elevation_ft": "463", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "China", + "scheduled_service": "no", + "local_code": "PLL" + }, + { + "id": "317471", + "ident": "MX-0128", + "type": "heliport", + "name": "Nutec Heliport", + "latitude_deg": "25.6888", + "longitude_deg": "-100.5067", + "elevation_ft": "2582", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Monterrey", + "scheduled_service": "no", + "local_code": "HNC" + }, + { + "id": "317472", + "ident": "MX-0129", + "type": "small_airport", + "name": "La Equis Airport", + "latitude_deg": "30.512437", + "longitude_deg": "-106.432979", + "elevation_ft": "4138", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Villa Ahumada", + "scheduled_service": "no", + "local_code": "RLX" + }, + { + "id": "317959", + "ident": "MX-0130", + "type": "small_airport", + "name": "Terminal Airport", + "latitude_deg": "24.6862", + "longitude_deg": "-101.42491", + "elevation_ft": "6200", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ZAC", + "municipality": "Mazapil", + "scheduled_service": "no", + "local_code": "TEI", + "keywords": "Mazapil, Terminal de Providencia" + }, + { + "id": "317960", + "ident": "MX-0131", + "type": "small_airport", + "name": "Santa Elena Airstrip", + "latitude_deg": "29.6391", + "longitude_deg": "-101.8959", + "elevation_ft": "1845", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no", + "local_code": "STX" + }, + { + "id": "317961", + "ident": "MX-0132", + "type": "small_airport", + "name": "Los Algodones Airport", + "latitude_deg": "25.8699", + "longitude_deg": "-100.339", + "elevation_ft": "1630", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "El Carmen", + "scheduled_service": "no", + "local_code": "AGD" + }, + { + "id": "317962", + "ident": "MX-0133", + "type": "small_airport", + "name": "Aerodeportes Airfield", + "latitude_deg": "25.522305", + "longitude_deg": "-100.079413", + "elevation_ft": "1292", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Cadereyta Jiménez", + "scheduled_service": "no", + "local_code": "AED" + }, + { + "id": "317963", + "ident": "MX-0134", + "type": "small_airport", + "name": "El Preson Airport", + "latitude_deg": "30.928714", + "longitude_deg": "-106.4297", + "elevation_ft": "4110", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Villa Ahumada", + "scheduled_service": "no", + "local_code": "RVP" + }, + { + "id": "317964", + "ident": "MX-0135", + "type": "closed", + "name": "Transpacifico Airfield", + "latitude_deg": "25.7982", + "longitude_deg": "-108.9527", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Ahome", + "scheduled_service": "no", + "local_code": "TRP" + }, + { + "id": "317965", + "ident": "MX-0136", + "type": "heliport", + "name": "Reforma 222 Heliport", + "latitude_deg": "19.4289", + "longitude_deg": "-99.1621", + "elevation_ft": "7748", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Mexico City", + "scheduled_service": "no", + "local_code": "HRX" + }, + { + "id": "318228", + "ident": "MX-0137", + "type": "small_airport", + "name": "Rancho La Peña Airport", + "latitude_deg": "28.6356", + "longitude_deg": "-102.2231", + "elevation_ft": "3175", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Melchor Múzquiz", + "scheduled_service": "no", + "local_code": "RLP" + }, + { + "id": "318377", + "ident": "MX-0138", + "type": "small_airport", + "name": "Lampazos de Naranjo Airport", + "latitude_deg": "27.014617", + "longitude_deg": "-100.510744", + "elevation_ft": "1063", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Lampazos de Naranjo", + "scheduled_service": "no", + "local_code": "LMP" + }, + { + "id": "318378", + "ident": "MX-0139", + "type": "small_airport", + "name": "Los Pilares Airport", + "latitude_deg": "28.84771", + "longitude_deg": "-102.635317", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ocampo", + "scheduled_service": "no", + "local_code": "LIR" + }, + { + "id": "318379", + "ident": "MX-0140", + "type": "small_airport", + "name": "Boquillas del Carmen Airport", + "latitude_deg": "29.177923", + "longitude_deg": "-102.91133", + "elevation_ft": "2008", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ocampo", + "scheduled_service": "no" + }, + { + "id": "318687", + "ident": "MX-0141", + "type": "heliport", + "name": "Campamento Sur Helipad", + "latitude_deg": "28.883996", + "longitude_deg": "-118.293915", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada (Isla Guadalupe)", + "scheduled_service": "no" + }, + { + "id": "318688", + "ident": "MX-0142", + "type": "closed", + "name": "Former Isla Guadalupe Airfield", + "latitude_deg": "29.011337", + "longitude_deg": "-118.261989", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada (Isla Guadalupe)", + "scheduled_service": "no" + }, + { + "id": "318859", + "ident": "MX-0143", + "type": "small_airport", + "name": "Cielito Lindo Airport", + "latitude_deg": "30.409918", + "longitude_deg": "-115.919261", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Rancho los Pinos", + "scheduled_service": "no", + "local_code": "CND" + }, + { + "id": "318872", + "ident": "MX-0144", + "type": "small_airport", + "name": "Melgoza Airport", + "latitude_deg": "32.257159", + "longitude_deg": "-115.175686", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "MLZ" + }, + { + "id": "318873", + "ident": "MX-0145", + "type": "small_airport", + "name": "La Rosa Airport", + "latitude_deg": "27.81014", + "longitude_deg": "-100.65745", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Juárez", + "scheduled_service": "no", + "local_code": "RSA" + }, + { + "id": "318874", + "ident": "MX-0146", + "type": "small_airport", + "name": "Los Ebanos Airport", + "latitude_deg": "25.34254", + "longitude_deg": "-97.73329", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Matamoros", + "scheduled_service": "no", + "local_code": "LET" + }, + { + "id": "318876", + "ident": "MX-0147", + "type": "small_airport", + "name": "Pielagos Airport", + "latitude_deg": "24.71256", + "longitude_deg": "-105.8624", + "elevation_ft": "7900", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Otáez", + "scheduled_service": "no", + "local_code": "PLG" + }, + { + "id": "318877", + "ident": "MX-0148", + "type": "closed", + "name": "Juarez Hermanos Airstrip", + "latitude_deg": "32.54633", + "longitude_deg": "-114.92859", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "JUH" + }, + { + "id": "318878", + "ident": "MX-0149", + "type": "small_airport", + "name": "Aerofumigaciones Castro Airport", + "latitude_deg": "32.543656", + "longitude_deg": "-114.928305", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "AFC" + }, + { + "id": "318879", + "ident": "MX-0150", + "type": "small_airport", + "name": "La Burra Airport", + "latitude_deg": "28.06394", + "longitude_deg": "-100.16332", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Guerrero", + "scheduled_service": "no", + "local_code": "LUA" + }, + { + "id": "318880", + "ident": "MX-0151", + "type": "heliport", + "name": "Esmeralda Tower I Helipad", + "latitude_deg": "19.42944", + "longitude_deg": "-99.205804", + "elevation_ft": "7794", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HTE" + }, + { + "id": "318881", + "ident": "MX-0152", + "type": "heliport", + "name": "Esmeralda Tower II Helipad", + "latitude_deg": "19.42911", + "longitude_deg": "-99.205319", + "elevation_ft": "7792", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HET" + }, + { + "id": "318882", + "ident": "MX-0153", + "type": "small_airport", + "name": "La Rivera Airport", + "latitude_deg": "30.84809", + "longitude_deg": "-112.92075", + "elevation_ft": "139", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Caborca", + "scheduled_service": "no", + "local_code": "YFA" + }, + { + "id": "318883", + "ident": "MX-0154", + "type": "small_airport", + "name": "La Victoria Airport", + "latitude_deg": "23.6813", + "longitude_deg": "-98.048908", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "LVC" + }, + { + "id": "318885", + "ident": "MX-0155", + "type": "small_airport", + "name": "Mosqueda Airport", + "latitude_deg": "32.16331", + "longitude_deg": "-115.27344", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "CMB" + }, + { + "id": "318886", + "ident": "MX-0156", + "type": "small_airport", + "name": "Canoitas Airport", + "latitude_deg": "28.063333", + "longitude_deg": "-100.400001", + "elevation_ft": "591", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Villa Hidalgo", + "scheduled_service": "no", + "local_code": "CTC" + }, + { + "id": "318888", + "ident": "MX-0157", + "type": "small_airport", + "name": "La Constancia Airport", + "latitude_deg": "25.95686", + "longitude_deg": "-108.88524", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "El Fuerte", + "scheduled_service": "no", + "local_code": "CSI" + }, + { + "id": "318889", + "ident": "MX-0158", + "type": "small_airport", + "name": "Las Brechas Airport", + "latitude_deg": "29.28228", + "longitude_deg": "-110.80762", + "elevation_ft": "978", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Hermosillo", + "scheduled_service": "no", + "local_code": "BRE" + }, + { + "id": "318890", + "ident": "MX-0159", + "type": "small_airport", + "name": "Rancho Santa Monica Airport", + "latitude_deg": "29.628898", + "longitude_deg": "-106.939702", + "elevation_ft": "6990", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "San Buenaventura", + "scheduled_service": "no", + "local_code": "SMW" + }, + { + "id": "318891", + "ident": "MX-0160", + "type": "small_airport", + "name": "Los Halcones Airstrip", + "latitude_deg": "25.52802", + "longitude_deg": "-108.64768", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "LHC" + }, + { + "id": "318895", + "ident": "MX-0161", + "type": "heliport", + "name": "BBVA Bancomer Tower Helipad", + "latitude_deg": "19.422852", + "longitude_deg": "-99.174745", + "elevation_ft": "8100", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "HBG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Torre_BBVA_Bancomer" + }, + { + "id": "318896", + "ident": "MX-0162", + "type": "heliport", + "name": "BBVA Bancomer Operating Center Helipad", + "latitude_deg": "19.44145", + "longitude_deg": "-99.18399", + "elevation_ft": "7844", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HBF" + }, + { + "id": "318897", + "ident": "MX-0163", + "type": "heliport", + "name": "Pemex Southern Region Administrative Technical Center Helipad", + "latitude_deg": "18.018495", + "longitude_deg": "-92.953132", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Villahermosa", + "scheduled_service": "no", + "local_code": "HBD" + }, + { + "id": "318898", + "ident": "MX-0164", + "type": "small_airport", + "name": "Aero Fumigaciones David Airport", + "latitude_deg": "22.66174", + "longitude_deg": "-98.44989", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Gonzalez", + "scheduled_service": "no", + "local_code": "AFD" + }, + { + "id": "318937", + "ident": "MX-0165", + "type": "small_airport", + "name": "Candelaria Airport", + "latitude_deg": "18.182725", + "longitude_deg": "-91.020082", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Candeleria", + "scheduled_service": "no", + "local_code": "CRA" + }, + { + "id": "318938", + "ident": "MX-0166", + "type": "small_airport", + "name": "Escárcega North Airport", + "latitude_deg": "18.666948", + "longitude_deg": "-90.729603", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Escárcega", + "scheduled_service": "no" + }, + { + "id": "318939", + "ident": "MX-0167", + "type": "small_airport", + "name": "Benny Airport", + "latitude_deg": "22.736377", + "longitude_deg": "-98.3340101", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Villa Manuel", + "scheduled_service": "no", + "local_code": "BNY" + }, + { + "id": "318940", + "ident": "MX-0168", + "type": "small_airport", + "name": "Pulticub Airport", + "latitude_deg": "19.075874", + "longitude_deg": "-87.560513", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Pulticub", + "scheduled_service": "no", + "local_code": "PTU", + "keywords": "Felipe Carrillo Puerto" + }, + { + "id": "318941", + "ident": "MX-0169", + "type": "small_airport", + "name": "Mahahual Airport", + "latitude_deg": "18.75919", + "longitude_deg": "-87.699592", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Mahahual", + "scheduled_service": "no", + "local_code": "MHL" + }, + { + "id": "318942", + "ident": "MX-0170", + "type": "small_airport", + "name": "Xcalak Airport", + "latitude_deg": "18.266738", + "longitude_deg": "-87.85515", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Xcalak", + "scheduled_service": "no", + "local_code": "XCA", + "keywords": "Xcalac" + }, + { + "id": "318943", + "ident": "MX-0171", + "type": "small_airport", + "name": "Holbox Airport", + "latitude_deg": "21.518237", + "longitude_deg": "-87.383596", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Holbox", + "scheduled_service": "no", + "local_code": "HOL" + }, + { + "id": "318944", + "ident": "MX-0172", + "type": "small_airport", + "name": "Rancho San Jose Airport", + "latitude_deg": "17.586968", + "longitude_deg": "-92.950389", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Teapa", + "scheduled_service": "no", + "local_code": "RSJ" + }, + { + "id": "318974", + "ident": "MX-0173", + "type": "small_airport", + "name": "Escárcega Airport", + "latitude_deg": "18.60333", + "longitude_deg": "-90.71525", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Escárcega", + "scheduled_service": "no", + "local_code": "ESC" + }, + { + "id": "319037", + "ident": "MX-0174", + "type": "small_airport", + "name": "La Laguna Airport", + "latitude_deg": "19.80858", + "longitude_deg": "-90.138868", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Campeche", + "scheduled_service": "no", + "local_code": "LLH" + }, + { + "id": "319038", + "ident": "MX-0175", + "type": "heliport", + "name": "Sea Fox 2 Helipad", + "latitude_deg": "19.507449", + "longitude_deg": "-92.000293", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Ciudad del Carmen", + "scheduled_service": "no", + "local_code": "HFX" + }, + { + "id": "319039", + "ident": "MX-0176", + "type": "small_airport", + "name": "La Joya Airport", + "latitude_deg": "19.473956", + "longitude_deg": "-90.663385", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Champoton", + "scheduled_service": "no", + "local_code": "JYA" + }, + { + "id": "319040", + "ident": "MX-0177", + "type": "heliport", + "name": "Balder Platform Helipad", + "latitude_deg": "20.153239", + "longitude_deg": "-91.965086", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Ciudad Del Carmen", + "scheduled_service": "no", + "local_code": "BLR" + }, + { + "id": "319049", + "ident": "MX-0178", + "type": "closed", + "name": "Las Choapas Airport", + "latitude_deg": "17.83925", + "longitude_deg": "-94.098633", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Las Choapas", + "scheduled_service": "no" + }, + { + "id": "319050", + "ident": "MX-0179", + "type": "small_airport", + "name": "El Cayal Airport", + "latitude_deg": "19.76752", + "longitude_deg": "-90.170298", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Hopelchen", + "scheduled_service": "no", + "local_code": "CYL" + }, + { + "id": "319052", + "ident": "MX-0180", + "type": "small_airport", + "name": "Mata Larga Airport", + "latitude_deg": "18.40338", + "longitude_deg": "-91.38328", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "El Carmen", + "scheduled_service": "no", + "local_code": "MTF" + }, + { + "id": "319058", + "ident": "MX-0181", + "type": "small_airport", + "name": "Palizada Airport", + "latitude_deg": "18.26775", + "longitude_deg": "-92.0907", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Palizada", + "scheduled_service": "no", + "local_code": "PZA" + }, + { + "id": "319059", + "ident": "MX-0182", + "type": "small_airport", + "name": "Xpujil Airport", + "latitude_deg": "18.51111", + "longitude_deg": "-89.40226", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Calakmul", + "scheduled_service": "no", + "local_code": "XJL" + }, + { + "id": "319120", + "ident": "MX-0183", + "type": "small_airport", + "name": "Los Bravos De Bonfil Airport", + "latitude_deg": "17.98953", + "longitude_deg": "-91.68843", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Ciudad Del Carmen", + "scheduled_service": "no", + "local_code": "LBB" + }, + { + "id": "319121", + "ident": "MX-0184", + "type": "heliport", + "name": "Jupiter I Platform Helipad", + "latitude_deg": "19.520472", + "longitude_deg": "-92.184506", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Zonda De Campeche", + "scheduled_service": "no", + "local_code": "HJU" + }, + { + "id": "319122", + "ident": "MX-0185", + "type": "heliport", + "name": "Hermod Platform Helipad", + "latitude_deg": "18.927222", + "longitude_deg": "-92.671667", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Ciudad Del Carmen", + "scheduled_service": "no", + "local_code": "HDH" + }, + { + "id": "319123", + "ident": "MX-0186", + "type": "small_airport", + "name": "La Piedrera Airport", + "latitude_deg": "25.10145", + "longitude_deg": "-107.92163", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Mocorito", + "scheduled_service": "no", + "local_code": "PDE", + "keywords": "Aerofumigaciones de Palmitas" + }, + { + "id": "319311", + "ident": "MX-0187", + "type": "small_airport", + "name": "Insurgente Marcos Escobedo Airport", + "latitude_deg": "21.99162", + "longitude_deg": "-103.282928", + "elevation_ft": "5709", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Colotlán", + "scheduled_service": "no", + "local_code": "COT", + "keywords": "MM33, MM0Z" + }, + { + "id": "319315", + "ident": "MX-0188", + "type": "small_airport", + "name": "La Reforma de Guerrero Airport", + "latitude_deg": "28.22295", + "longitude_deg": "-100.58693", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Guerrero", + "scheduled_service": "no", + "local_code": "RFG" + }, + { + "id": "319317", + "ident": "MX-0189", + "type": "small_airport", + "name": "La Colonia Airport", + "latitude_deg": "19.616961", + "longitude_deg": "-104.450942", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Casimiro Castillo", + "scheduled_service": "no", + "local_code": "CLD" + }, + { + "id": "319318", + "ident": "MX-0190", + "type": "small_airport", + "name": "Paco Airport", + "latitude_deg": "20.308378", + "longitude_deg": "-103.159506", + "elevation_ft": "5019", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Chapala", + "scheduled_service": "no", + "local_code": "PAK", + "keywords": "Aeróclub Chapala" + }, + { + "id": "319319", + "ident": "MX-0191", + "type": "small_airport", + "name": "Barra de Navidad Airport", + "latitude_deg": "19.219431", + "longitude_deg": "-104.661502", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Cihuatlan", + "scheduled_service": "no", + "local_code": "BND" + }, + { + "id": "319320", + "ident": "MX-0192", + "type": "small_airport", + "name": "Cuautla Airport", + "latitude_deg": "20.191474", + "longitude_deg": "-104.413804", + "elevation_ft": "5845", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Cuautla", + "scheduled_service": "no", + "local_code": "CUJ" + }, + { + "id": "319321", + "ident": "MX-0193", + "type": "small_airport", + "name": "Ocotlan Airport", + "latitude_deg": "20.371175", + "longitude_deg": "-102.773541", + "elevation_ft": "5030", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Ocotlan", + "scheduled_service": "no", + "local_code": "OCT", + "keywords": "MM43, MM1K, Aerofumigaciones Rivera, Aerofumigaciones Villaseñor" + }, + { + "id": "319322", + "ident": "MX-0194", + "type": "small_airport", + "name": "San Gabriel Airport", + "latitude_deg": "19.696336", + "longitude_deg": "-103.833835", + "elevation_ft": "3850", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "San Gabriel", + "scheduled_service": "no", + "local_code": "SGB" + }, + { + "id": "319334", + "ident": "MX-0195", + "type": "small_airport", + "name": "San Martin De Bolaños Airport", + "latitude_deg": "21.691584", + "longitude_deg": "-103.827029", + "elevation_ft": "2925", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "San Martin De Bolaños", + "scheduled_service": "no", + "local_code": "SMB" + }, + { + "id": "319335", + "ident": "MX-0196", + "type": "small_airport", + "name": "Tepatitlan Municipal Airport", + "latitude_deg": "20.784594", + "longitude_deg": "-102.674106", + "elevation_ft": "6300", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Tepatitlan de Morelos", + "scheduled_service": "no", + "local_code": "TAA", + "keywords": "Los Altos" + }, + { + "id": "319336", + "ident": "MX-0197", + "type": "small_airport", + "name": "El Petacal Airport", + "latitude_deg": "19.623799", + "longitude_deg": "-103.84353", + "elevation_ft": "3630", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Toliman", + "scheduled_service": "no", + "local_code": "PTL", + "keywords": "PTJ" + }, + { + "id": "319337", + "ident": "MX-0198", + "type": "small_airport", + "name": "La Gloria III Airport", + "latitude_deg": "19.897267", + "longitude_deg": "-105.294851", + "elevation_ft": "147", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Tomatlán", + "scheduled_service": "no", + "local_code": "GLR" + }, + { + "id": "319338", + "ident": "MX-0199", + "type": "small_airport", + "name": "Costalegre Airport", + "latitude_deg": "19.718896", + "longitude_deg": "-105.232721", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Tomatlán", + "scheduled_service": "no", + "local_code": "COJ", + "keywords": "Chalacatepec Airport" + }, + { + "id": "319339", + "ident": "MX-0200", + "type": "small_airport", + "name": "Los Gonzalez Airport", + "latitude_deg": "20.553263", + "longitude_deg": "-102.692352", + "elevation_ft": "5090", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Tototlán", + "scheduled_service": "no", + "local_code": "LGF" + }, + { + "id": "319341", + "ident": "MX-0201", + "type": "small_airport", + "name": "Los Cerritos Airport", + "latitude_deg": "20.418767", + "longitude_deg": "-102.923414", + "elevation_ft": "5139", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Zapotlan del Rey", + "scheduled_service": "no", + "local_code": "CEE" + }, + { + "id": "319369", + "ident": "MX-0202", + "type": "small_airport", + "name": "Guayaberos Airport", + "latitude_deg": "21.7406", + "longitude_deg": "-102.9661", + "elevation_ft": "4940", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ZAC", + "municipality": "Huanusco", + "scheduled_service": "no", + "local_code": "GBS" + }, + { + "id": "319370", + "ident": "MX-0203", + "type": "small_airport", + "name": "Cedros Airport", + "latitude_deg": "24.6353", + "longitude_deg": "-101.79655", + "elevation_ft": "5600", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ZAC", + "municipality": "Mazapil", + "scheduled_service": "no", + "local_code": "CED" + }, + { + "id": "319371", + "ident": "MX-0204", + "type": "small_airport", + "name": "Rancho El Tulillo Airport", + "latitude_deg": "23.82449", + "longitude_deg": "-101.787196", + "elevation_ft": "6920", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ZAC", + "municipality": "Mazapil", + "scheduled_service": "no", + "local_code": "TOO" + }, + { + "id": "319372", + "ident": "MX-0205", + "type": "small_airport", + "name": "Ramon Lopez Velarde Airport", + "latitude_deg": "21.75929", + "longitude_deg": "-103.30188", + "elevation_ft": "5635", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ZAC", + "municipality": "Tlaltenango", + "scheduled_service": "no", + "local_code": "RLY" + }, + { + "id": "319373", + "ident": "MX-0206", + "type": "small_airport", + "name": "Aerolandia Airport", + "latitude_deg": "19.583748", + "longitude_deg": "-98.089833", + "elevation_ft": "8862", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TLA", + "municipality": "Tlaxco", + "scheduled_service": "no", + "local_code": "AER" + }, + { + "id": "319374", + "ident": "MX-0207", + "type": "small_airport", + "name": "Santa Rosa de Lima Airport", + "latitude_deg": "20.596398", + "longitude_deg": "-90.080502", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-YUC", + "municipality": "Maxcanú", + "scheduled_service": "no", + "local_code": "SRS" + }, + { + "id": "319376", + "ident": "MX-0208", + "type": "small_airport", + "name": "Balancan Airstrip", + "latitude_deg": "17.875324", + "longitude_deg": "-91.5513", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Balancan", + "scheduled_service": "no", + "local_code": "PIB" + }, + { + "id": "319377", + "ident": "MX-0209", + "type": "small_airport", + "name": "San António Airport", + "latitude_deg": "17.979734", + "longitude_deg": "-93.231776", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Cunduacan", + "scheduled_service": "no", + "local_code": "SAC" + }, + { + "id": "319378", + "ident": "MX-0210", + "type": "small_airport", + "name": "Xiquipilli Airport", + "latitude_deg": "17.911553", + "longitude_deg": "-91.749201", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Emiliano Zapata", + "scheduled_service": "no", + "local_code": "XQI" + }, + { + "id": "319379", + "ident": "MX-0211", + "type": "small_airport", + "name": "La Giralda Airport", + "latitude_deg": "17.685186", + "longitude_deg": "-93.384514", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Huamanguillo", + "scheduled_service": "no", + "local_code": "GIH" + }, + { + "id": "319380", + "ident": "MX-0212", + "type": "closed", + "name": "La Ceiba Airport", + "latitude_deg": "17.921538", + "longitude_deg": "-93.57529", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Tecominoacán", + "scheduled_service": "no", + "local_code": "CBA" + }, + { + "id": "319381", + "ident": "MX-0213", + "type": "small_airport", + "name": "Campo David Airport", + "latitude_deg": "17.637752", + "longitude_deg": "-93.408717", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Huimanguillo", + "scheduled_service": "no", + "local_code": "CDV" + }, + { + "id": "319382", + "ident": "MX-0214", + "type": "small_airport", + "name": "Morelos Airstrip", + "latitude_deg": "32.62521", + "longitude_deg": "-114.885057", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "PMX", + "keywords": "Aerofumigaciones Tres Valles" + }, + { + "id": "319383", + "ident": "MX-0215", + "type": "small_airport", + "name": "Lomas Tristes Airport", + "latitude_deg": "17.576836", + "longitude_deg": "-92.569234", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Tacotalpa", + "scheduled_service": "no", + "local_code": "LTT" + }, + { + "id": "319384", + "ident": "MX-0216", + "type": "small_airport", + "name": "San Carlos Airport", + "latitude_deg": "17.584395", + "longitude_deg": "-92.82096", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Tacotalpa", + "scheduled_service": "no", + "local_code": "OFS" + }, + { + "id": "319385", + "ident": "MX-0217", + "type": "small_airport", + "name": "Rancho San Jose de Pedrero Airport", + "latitude_deg": "17.716684", + "longitude_deg": "-92.946102", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Teapa", + "scheduled_service": "no", + "local_code": "RJS" + }, + { + "id": "319393", + "ident": "MX-0218", + "type": "small_airport", + "name": "La Florida Airport", + "latitude_deg": "17.654391", + "longitude_deg": "-92.967664", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Teapa", + "scheduled_service": "no", + "local_code": "LFA" + }, + { + "id": "319394", + "ident": "MX-0219", + "type": "small_airport", + "name": "La Pista Airport", + "latitude_deg": "17.608573", + "longitude_deg": "-93.011254", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Teapa", + "scheduled_service": "no", + "local_code": "PTT" + }, + { + "id": "319395", + "ident": "MX-0220", + "type": "small_airport", + "name": "Jorge Efrain Airport", + "latitude_deg": "17.674206", + "longitude_deg": "-92.969815", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Teapa", + "scheduled_service": "no", + "local_code": "JEF", + "keywords": "Aerofumigaciones Jorge Efrain, IDAJEF Flight School" + }, + { + "id": "319396", + "ident": "MX-0221", + "type": "small_airport", + "name": "San Fernando Airstrip", + "latitude_deg": "17.611649", + "longitude_deg": "-92.99586", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Teapa", + "scheduled_service": "no", + "local_code": "NDO" + }, + { + "id": "319397", + "ident": "MX-0222", + "type": "small_airport", + "name": "Monterrey Airport", + "latitude_deg": "17.661922", + "longitude_deg": "-92.986369", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Teapa", + "scheduled_service": "no", + "local_code": "MTV" + }, + { + "id": "319402", + "ident": "MX-0223", + "type": "small_airport", + "name": "Los Cerones Airport", + "latitude_deg": "22.139843", + "longitude_deg": "-98.516517", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "Ebano", + "scheduled_service": "no", + "local_code": "LCX" + }, + { + "id": "319403", + "ident": "MX-0224", + "type": "small_airport", + "name": "Nuevo Temalacaco Airport", + "latitude_deg": "22.287539", + "longitude_deg": "-98.613067", + "elevation_ft": "236", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "Ebano", + "scheduled_service": "no", + "local_code": "NTC", + "keywords": "MX34" + }, + { + "id": "319404", + "ident": "MX-0225", + "type": "small_airport", + "name": "Palula Airport", + "latitude_deg": "23.809294", + "longitude_deg": "-101.408446", + "elevation_ft": "7070", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "Real del Catorce", + "scheduled_service": "no", + "local_code": "PLU" + }, + { + "id": "319405", + "ident": "MX-0226", + "type": "small_airport", + "name": "Campo Rio Verde Airport", + "latitude_deg": "21.917274", + "longitude_deg": "-99.939137", + "elevation_ft": "3240", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "Rio Verde", + "scheduled_service": "no", + "gps_code": "MM14", + "local_code": "RVR", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aeropuerto_Nacional_Campo_R%C3%ADo_Verde" + }, + { + "id": "319407", + "ident": "MX-0227", + "type": "small_airport", + "name": "Moctezuma Airport", + "latitude_deg": "21.916127", + "longitude_deg": "-98.5521", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "San Vicente Tancuayalab", + "scheduled_service": "no", + "local_code": "MOE" + }, + { + "id": "319408", + "ident": "MX-0228", + "type": "small_airport", + "name": "La Ensenada Airport", + "latitude_deg": "21.938353", + "longitude_deg": "-98.514968", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "San Vicente Tancuayalab", + "scheduled_service": "no", + "local_code": "EEG" + }, + { + "id": "319409", + "ident": "MX-0229", + "type": "small_airport", + "name": "Ju-Bar Airport", + "latitude_deg": "22.161984", + "longitude_deg": "-98.515318", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "Tamuin", + "scheduled_service": "no", + "local_code": "JUR" + }, + { + "id": "319410", + "ident": "MX-0230", + "type": "small_airport", + "name": "Hualul Airport", + "latitude_deg": "21.911766", + "longitude_deg": "-98.730239", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "Tamuin", + "scheduled_service": "no", + "local_code": "GGH" + }, + { + "id": "319411", + "ident": "MX-0231", + "type": "small_airport", + "name": "Santa Ana de Vanegas Airport", + "latitude_deg": "24.171264", + "longitude_deg": "-100.912954", + "elevation_ft": "5630", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "Vanegas", + "scheduled_service": "no", + "local_code": "SNV" + }, + { + "id": "319465", + "ident": "MX-0232", + "type": "small_airport", + "name": "Lorenzos Airstrip", + "latitude_deg": "21.111266", + "longitude_deg": "-86.836935", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Cancún", + "scheduled_service": "no", + "local_code": "AGK" + }, + { + "id": "319466", + "ident": "MX-0233", + "type": "small_airport", + "name": "Viento y Sol Airstrip", + "latitude_deg": "21.104981", + "longitude_deg": "-86.835101", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Cancún", + "scheduled_service": "no", + "local_code": "VYS" + }, + { + "id": "319467", + "ident": "MX-0234", + "type": "small_airport", + "name": "Capitán Eduardo A. Toledo Airport", + "latitude_deg": "20.42323", + "longitude_deg": "-86.99633", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Cozumel", + "scheduled_service": "no", + "local_code": "CET", + "wikipedia_link": "https://translate.google.com/translate?hl=en&sl=es&u=https://es.wikipedia.org/wiki/Aer%25C3%25B3dromo_Capit%25C3%25A1n_Eduardo_T" + }, + { + "id": "319470", + "ident": "MX-0235", + "type": "small_airport", + "name": "Punta Pajaros Airport", + "latitude_deg": "19.61463", + "longitude_deg": "-87.42622", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Felipe Carrillo Puerto", + "scheduled_service": "no", + "local_code": "PPS" + }, + { + "id": "319477", + "ident": "MX-0236", + "type": "small_airport", + "name": "Felipe Carrillo Puerto Airport", + "latitude_deg": "19.61013", + "longitude_deg": "-88.074291", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Felipe Carrillo Puerto", + "scheduled_service": "no", + "local_code": "FCQ", + "keywords": "MM55, MM1V" + }, + { + "id": "319478", + "ident": "MX-0237", + "type": "small_airport", + "name": "Kohunlinch Airport", + "latitude_deg": "18.453315", + "longitude_deg": "-88.821866", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Othon Pompeyo Blanco", + "scheduled_service": "no", + "local_code": "KLI" + }, + { + "id": "319479", + "ident": "MX-0238", + "type": "small_airport", + "name": "Pucte Airport", + "latitude_deg": "18.2654", + "longitude_deg": "-88.69206", + "elevation_ft": "119", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Othon Pompeyo Blanco", + "scheduled_service": "no", + "local_code": "PCU" + }, + { + "id": "319480", + "ident": "MX-0239", + "type": "small_airport", + "name": "Xcaret Airport", + "latitude_deg": "20.58035", + "longitude_deg": "-87.12706", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Solidaridad", + "scheduled_service": "no", + "local_code": "XRT" + }, + { + "id": "319543", + "ident": "MX-0240", + "type": "closed", + "name": "Jorge Llerenas Silva Airport", + "latitude_deg": "19.220117", + "longitude_deg": "-103.730378", + "elevation_ft": "1475", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COL", + "municipality": "Colima", + "scheduled_service": "no", + "local_code": "JLS" + }, + { + "id": "319544", + "ident": "MX-0241", + "type": "small_airport", + "name": "Chavarín Airport", + "latitude_deg": "19.19735", + "longitude_deg": "-104.54093", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COL", + "municipality": "Manzanillo", + "scheduled_service": "no", + "local_code": "CHV" + }, + { + "id": "319549", + "ident": "MX-0242", + "type": "small_airport", + "name": "La Tigrera Airport", + "latitude_deg": "19.02606", + "longitude_deg": "-104.23294", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COL", + "municipality": "Manzanillo", + "scheduled_service": "no", + "local_code": "TGR", + "keywords": "Skydive Paracaidismo Manzanillo" + }, + { + "id": "319550", + "ident": "MX-0243", + "type": "small_airport", + "name": "Cerro de Ortega Airport", + "latitude_deg": "18.781", + "longitude_deg": "-103.75662", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COL", + "municipality": "Tecoman", + "scheduled_service": "no", + "local_code": "COG" + }, + { + "id": "319551", + "ident": "MX-0244", + "type": "small_airport", + "name": "Rancho Lanzarote Airport", + "latitude_deg": "19.671371", + "longitude_deg": "-99.322761", + "elevation_ft": "7878", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Cañada de Cisneros", + "scheduled_service": "no", + "local_code": "RZT" + }, + { + "id": "319552", + "ident": "MX-0245", + "type": "small_airport", + "name": "Aeroclub Valle de Bravo Airfield", + "latitude_deg": "19.145245", + "longitude_deg": "-100.074855", + "elevation_ft": "7229", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Valle de Bravo", + "scheduled_service": "no", + "local_code": "ACJ", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aer%C3%B3dromo_de_Valle_de_Bravo", + "keywords": "MX69" + }, + { + "id": "319575", + "ident": "MX-0246", + "type": "small_airport", + "name": "La Begoña Airport", + "latitude_deg": "21.1259", + "longitude_deg": "-100.40626", + "elevation_ft": "6740", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "Doctor Mora", + "scheduled_service": "no", + "local_code": "LBG" + }, + { + "id": "319576", + "ident": "MX-0247", + "type": "small_airport", + "name": "Sofía Airport", + "latitude_deg": "20.53887", + "longitude_deg": "-101.45003", + "elevation_ft": "5650", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "Irapuato", + "scheduled_service": "no", + "local_code": "SOF" + }, + { + "id": "319577", + "ident": "MX-0248", + "type": "small_airport", + "name": "Campo Cortés Airport", + "latitude_deg": "20.775255", + "longitude_deg": "-101.347954", + "elevation_ft": "5748", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "Irapuato", + "scheduled_service": "no", + "local_code": "CCR" + }, + { + "id": "319578", + "ident": "MX-0249", + "type": "small_airport", + "name": "Military Air Station 6", + "latitude_deg": "20.67486", + "longitude_deg": "-101.3111", + "elevation_ft": "5700", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "Irapuato", + "scheduled_service": "no", + "wikipedia_link": "https://es.wikipedia.org/wiki/Estaci%C3%B3n_a%C3%A9rea_n.%C2%B0_6_Irapuato", + "keywords": "MM70, MM2K, EAM-6" + }, + { + "id": "319579", + "ident": "MX-0250", + "type": "closed", + "name": "Santa Rosalia Airport", + "latitude_deg": "21.03045", + "longitude_deg": "-101.670569", + "elevation_ft": "5865", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "León", + "scheduled_service": "no", + "keywords": "MDD" + }, + { + "id": "319582", + "ident": "MX-0251", + "type": "small_airport", + "name": "Los Filos Airport", + "latitude_deg": "17.8918", + "longitude_deg": "-99.6691", + "elevation_ft": "4757", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Eduardo Neri", + "scheduled_service": "no", + "local_code": "FIL" + }, + { + "id": "319583", + "ident": "MX-0252", + "type": "closed", + "name": "Tecuixiapan", + "latitude_deg": "17.97788", + "longitude_deg": "-99.38776", + "elevation_ft": "2440", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Tepecoacuilco de Trujano", + "scheduled_service": "no", + "keywords": "FIL" + }, + { + "id": "319584", + "ident": "MX-0253", + "type": "small_airport", + "name": "Las Bodas Airport", + "latitude_deg": "17.2667", + "longitude_deg": "-100.9645", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Tecpan de Galeana", + "scheduled_service": "no", + "local_code": "BDA" + }, + { + "id": "319585", + "ident": "MX-0254", + "type": "small_airport", + "name": "Taxco Airport", + "latitude_deg": "18.5736", + "longitude_deg": "-99.5962", + "elevation_ft": "6265", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Taxco de Alarcón", + "scheduled_service": "no", + "local_code": "TXC" + }, + { + "id": "319588", + "ident": "MX-0255", + "type": "small_airport", + "name": "Atoyac Airstrip", + "latitude_deg": "17.219413", + "longitude_deg": "-100.447935", + "elevation_ft": "205", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Atoyac de Alvarez", + "scheduled_service": "no", + "local_code": "ATY" + }, + { + "id": "319589", + "ident": "MX-0256", + "type": "closed", + "name": "Arcelia Airport", + "latitude_deg": "18.2979", + "longitude_deg": "-100.289", + "elevation_ft": "1375", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Arcelia", + "scheduled_service": "no", + "local_code": "ARC", + "keywords": "MX05" + }, + { + "id": "319653", + "ident": "MX-0257", + "type": "small_airport", + "name": "El Pinocho Airport", + "latitude_deg": "19.47655", + "longitude_deg": "-100.4332", + "elevation_ft": "6265", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Zitácuaro", + "scheduled_service": "no", + "local_code": "PIO" + }, + { + "id": "319678", + "ident": "MX-0258", + "type": "small_airport", + "name": "Farías Airport", + "latitude_deg": "19.165125", + "longitude_deg": "-102.856476", + "elevation_ft": "1243", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Tepalcatepec", + "scheduled_service": "no", + "local_code": "JFV" + }, + { + "id": "319679", + "ident": "MX-0259", + "type": "small_airport", + "name": "Aerofumigaciones Lopez Airport", + "latitude_deg": "19.20205", + "longitude_deg": "-102.83707", + "elevation_ft": "1251", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Tepalcatepec", + "scheduled_service": "no", + "local_code": "ALP" + }, + { + "id": "319680", + "ident": "MX-0260", + "type": "small_airport", + "name": "Silva Airport", + "latitude_deg": "19.205658", + "longitude_deg": "-102.831381", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Tepalcatepec", + "scheduled_service": "no", + "local_code": "SIV" + }, + { + "id": "319681", + "ident": "MX-0261", + "type": "small_airport", + "name": "Cutzarondiro", + "latitude_deg": "19.178122", + "longitude_deg": "-101.500299", + "elevation_ft": "4710", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Tacámbaro", + "scheduled_service": "no", + "local_code": "ACK" + }, + { + "id": "319696", + "ident": "MX-0262", + "type": "small_airport", + "name": "Pátzcuaro - Purépecha Airport", + "latitude_deg": "19.54572", + "longitude_deg": "-101.57533", + "elevation_ft": "6745", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Pátzcuaro", + "scheduled_service": "no", + "local_code": "PUR", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aer%C3%B3dromo_de_P%C3%A1tzcuaro", + "keywords": "MX84, Tzurumútaro" + }, + { + "id": "319698", + "ident": "MX-0263", + "type": "small_airport", + "name": "Aerosam Airport", + "latitude_deg": "18.98022", + "longitude_deg": "-102.71668", + "elevation_ft": "983", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Aguililla", + "scheduled_service": "no", + "local_code": "BAG" + }, + { + "id": "319699", + "ident": "MX-0264", + "type": "small_airport", + "name": "Aguililla Airport", + "latitude_deg": "18.742388", + "longitude_deg": "-102.801245", + "elevation_ft": "3175", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Aguililla", + "scheduled_service": "no", + "local_code": "AGI" + }, + { + "id": "319700", + "ident": "MX-0265", + "type": "small_airport", + "name": "Carlos Díaz Becerril Airport", + "latitude_deg": "19.2371", + "longitude_deg": "-101.67952", + "elevation_ft": "6760", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Ario de Rosales", + "scheduled_service": "no", + "local_code": "CDB" + }, + { + "id": "319701", + "ident": "MX-0266", + "type": "closed", + "name": "Los Capires Airport", + "latitude_deg": "18.354552", + "longitude_deg": "-101.986662", + "elevation_ft": "1680", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Arteaga", + "scheduled_service": "no", + "local_code": "CPR", + "keywords": "MX68, El Infiernillo" + }, + { + "id": "319702", + "ident": "MX-0267", + "type": "small_airport", + "name": "Pista Aérea Cadenas", + "latitude_deg": "19.205697", + "longitude_deg": "-102.617601", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Buenavista Tomatlán", + "scheduled_service": "no", + "local_code": "PAC" + }, + { + "id": "319704", + "ident": "MX-0268", + "type": "small_airport", + "name": "And Port Airport", + "latitude_deg": "19.22791", + "longitude_deg": "-102.68606", + "elevation_ft": "1365", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Buenavista Tomatlán", + "scheduled_service": "no", + "local_code": "ANP" + }, + { + "id": "319785", + "ident": "MX-0269", + "type": "small_airport", + "name": "Rancho El Jaralito", + "latitude_deg": "21.655", + "longitude_deg": "-100.7765", + "elevation_ft": "6130", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "Santa Maria del Rio", + "scheduled_service": "no", + "local_code": "EJR" + }, + { + "id": "319786", + "ident": "MX-0270", + "type": "small_airport", + "name": "Rancho Providencia Airport", + "latitude_deg": "30.2948", + "longitude_deg": "-106.7515", + "elevation_ft": "4205", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Villa Ahumada", + "scheduled_service": "no", + "local_code": "RPX" + }, + { + "id": "319787", + "ident": "MX-0271", + "type": "small_airport", + "name": "Palos Dulces Airport", + "latitude_deg": "25.5385", + "longitude_deg": "-108.490661", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "PDI" + }, + { + "id": "319788", + "ident": "MX-0272", + "type": "small_airport", + "name": "El Fortin Airport", + "latitude_deg": "27.981798", + "longitude_deg": "-102.094792", + "elevation_ft": "3315", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "San Buenaventura", + "scheduled_service": "no", + "local_code": "EFO" + }, + { + "id": "331489", + "ident": "MX-0273", + "type": "small_airport", + "name": "Cucuyulapa Airport", + "latitude_deg": "17.981889", + "longitude_deg": "-93.242028", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Conduacan", + "scheduled_service": "no", + "local_code": "ACU" + }, + { + "id": "319790", + "ident": "MX-0274", + "type": "small_airport", + "name": "Aero Club Manitoba Airport", + "latitude_deg": "28.6558", + "longitude_deg": "-106.9005", + "elevation_ft": "6545", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "AMT" + }, + { + "id": "319791", + "ident": "MX-0275", + "type": "heliport", + "name": "Pesca Azteca Heliport", + "latitude_deg": "23.21403", + "longitude_deg": "-106.3942", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Mazatlán", + "scheduled_service": "no", + "local_code": "HQK" + }, + { + "id": "319792", + "ident": "MX-0276", + "type": "heliport", + "name": "Reforma 115 Helipad", + "latitude_deg": "19.4278", + "longitude_deg": "-99.2041", + "elevation_ft": "7841", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HRQ" + }, + { + "id": "319793", + "ident": "MX-0277", + "type": "small_airport", + "name": "Rancho Los Chirriones Airport", + "latitude_deg": "31.0276", + "longitude_deg": "-109.204", + "elevation_ft": "3500", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Agua Prieta", + "scheduled_service": "no", + "local_code": "RLC" + }, + { + "id": "319794", + "ident": "MX-0278", + "type": "heliport", + "name": "Ángeles Hospital Helipad", + "latitude_deg": "22.1519", + "longitude_deg": "-101.0215", + "elevation_ft": "6033", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "San Luis Potosi", + "scheduled_service": "no", + "local_code": "HGD" + }, + { + "id": "319846", + "ident": "MX-0279", + "type": "small_airport", + "name": "Ultraligeros del Desierto Airport", + "latitude_deg": "31.39144", + "longitude_deg": "-113.5371", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Puerto Peñasco", + "scheduled_service": "no", + "local_code": "UDD" + }, + { + "id": "319847", + "ident": "MX-0280", + "type": "heliport", + "name": "Inmobiliaria Montes Urales 770 Helipad", + "latitude_deg": "19.423962", + "longitude_deg": "-99.20428", + "elevation_ft": "7546", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HUR", + "home_link": "http://www.inmobiliariabrom.com/urales_770.php?i=en" + }, + { + "id": "319848", + "ident": "MX-0281", + "type": "heliport", + "name": "El Roble Helipad", + "latitude_deg": "23.762278", + "longitude_deg": "-99.143389", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Ciudad Victoria", + "scheduled_service": "no", + "local_code": "HRB" + }, + { + "id": "319849", + "ident": "MX-0282", + "type": "small_airport", + "name": "Carneros Airport", + "latitude_deg": "29.510361", + "longitude_deg": "-106.12885", + "elevation_ft": "4600", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Chihuahua", + "scheduled_service": "no", + "local_code": "ACF" + }, + { + "id": "319850", + "ident": "MX-0283", + "type": "heliport", + "name": "Royal Holiday Helipad", + "latitude_deg": "19.35075", + "longitude_deg": "-99.186944", + "elevation_ft": "7576", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Alvaro Obregon", + "scheduled_service": "no", + "local_code": "HUY" + }, + { + "id": "319851", + "ident": "MX-0284", + "type": "small_airport", + "name": "Las Bugambilias Airport", + "latitude_deg": "21.607", + "longitude_deg": "-104.8325", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "Tepic", + "scheduled_service": "no", + "local_code": "BGM" + }, + { + "id": "319852", + "ident": "MX-0285", + "type": "small_airport", + "name": "Rancho El Papalote Airport", + "latitude_deg": "27.89929", + "longitude_deg": "-100.50765", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Guerrero", + "scheduled_service": "no", + "local_code": "RPE" + }, + { + "id": "319855", + "ident": "MX-0286", + "type": "small_airport", + "name": "La Angostura Airport", + "latitude_deg": "30.8507", + "longitude_deg": "-112.814801", + "elevation_ft": "217", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Caborca", + "scheduled_service": "no", + "local_code": "LTA" + }, + { + "id": "319856", + "ident": "MX-0287", + "type": "small_airport", + "name": "JBS Airport", + "latitude_deg": "25.4406", + "longitude_deg": "-108.38896", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "JBS" + }, + { + "id": "319857", + "ident": "MX-0288", + "type": "small_airport", + "name": "Cap. Jorge García Lopez Airport", + "latitude_deg": "21.0413", + "longitude_deg": "-104.4431", + "elevation_ft": "3345", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "Ixtlan del Rio", + "scheduled_service": "no", + "local_code": "IXL", + "keywords": "Ixtlan II" + }, + { + "id": "319858", + "ident": "MX-0289", + "type": "small_airport", + "name": "Margaritas Airport", + "latitude_deg": "28.6836", + "longitude_deg": "-101.780501", + "elevation_ft": "2870", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no", + "local_code": "MGR" + }, + { + "id": "319859", + "ident": "MX-0290", + "type": "small_airport", + "name": "Rancho Productor de Leche Villa Ahumada Airport", + "latitude_deg": "30.475351", + "longitude_deg": "-106.514831", + "elevation_ft": "4070", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Villa Ahumada", + "scheduled_service": "no", + "local_code": "PLE" + }, + { + "id": "319960", + "ident": "MX-0291", + "type": "small_airport", + "name": "El Bolsón Airport", + "latitude_deg": "24.7951", + "longitude_deg": "-107.7231", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Navolato", + "scheduled_service": "no", + "local_code": "BLO" + }, + { + "id": "319961", + "ident": "MX-0292", + "type": "small_airport", + "name": "Santa Rosa Airstrip", + "latitude_deg": "25.3462", + "longitude_deg": "-107.103", + "elevation_ft": "2080", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "SRW" + }, + { + "id": "319962", + "ident": "MX-0293", + "type": "small_airport", + "name": "Dos Amigos Airstrip", + "latitude_deg": "30.506614", + "longitude_deg": "-115.887121", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "DAS" + }, + { + "id": "319963", + "ident": "MX-0294", + "type": "small_airport", + "name": "Rancho Laguna Vista Airport", + "latitude_deg": "24.7959", + "longitude_deg": "-97.85", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "San Fernando", + "scheduled_service": "no", + "local_code": "LNY" + }, + { + "id": "319964", + "ident": "MX-0295", + "type": "small_airport", + "name": "La Poza Airport", + "latitude_deg": "22.132", + "longitude_deg": "-98.2066", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Panuco", + "scheduled_service": "no", + "local_code": "LPJ" + }, + { + "id": "319966", + "ident": "MX-0296", + "type": "closed", + "name": "Pavlovich Aviation Airport", + "latitude_deg": "28.9979", + "longitude_deg": "-111.0527", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Hermosillo", + "scheduled_service": "no", + "local_code": "PAV" + }, + { + "id": "319967", + "ident": "MX-0297", + "type": "small_airport", + "name": "El Toro Airport", + "latitude_deg": "26.262677", + "longitude_deg": "-102.122664", + "elevation_ft": "5030", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Cuatro Cienegas", + "scheduled_service": "no", + "local_code": "ELT" + }, + { + "id": "319968", + "ident": "MX-0298", + "type": "small_airport", + "name": "La Curva Airport", + "latitude_deg": "18.9872", + "longitude_deg": "-102.0851", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Nueva Italia", + "scheduled_service": "no", + "local_code": "CUV" + }, + { + "id": "319969", + "ident": "MX-0299", + "type": "small_airport", + "name": "Rancho Magaña Airport", + "latitude_deg": "30.635", + "longitude_deg": "-115.9577", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "MAG" + }, + { + "id": "319970", + "ident": "MX-0300", + "type": "small_airport", + "name": "Rancho Grande Airport", + "latitude_deg": "29.8252", + "longitude_deg": "-111.2448", + "elevation_ft": "2400", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Carbo", + "scheduled_service": "no", + "local_code": "RGE", + "home_link": "http://www.ranchograndehunting.com/id2.html", + "keywords": "Rancho Grande Hunting Lodge" + }, + { + "id": "319971", + "ident": "MX-0301", + "type": "small_airport", + "name": "San Pantaleon Airstrip", + "latitude_deg": "26.6532", + "longitude_deg": "-108.094301", + "elevation_ft": "1510", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Choix", + "scheduled_service": "no", + "local_code": "SPN" + }, + { + "id": "319972", + "ident": "MX-0302", + "type": "small_airport", + "name": "Vallecitos Airport", + "latitude_deg": "25.7185", + "longitude_deg": "-107.1572", + "elevation_ft": "3950", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "VLL" + }, + { + "id": "321116", + "ident": "MX-0303", + "type": "small_airport", + "name": "San Roberto Airport", + "latitude_deg": "27.104167", + "longitude_deg": "-100.831389", + "elevation_ft": "1230", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Lampazos", + "scheduled_service": "no", + "local_code": "SRE", + "keywords": "Runway is in Coahuila and Nuevo León" + }, + { + "id": "321117", + "ident": "MX-0304", + "type": "small_airport", + "name": "San Jorge Airport", + "latitude_deg": "23.612555", + "longitude_deg": "-97.877543", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "JOG" + }, + { + "id": "321118", + "ident": "MX-0305", + "type": "small_airport", + "name": "Cuautla de Huitzililla Airport", + "latitude_deg": "18.700277", + "longitude_deg": "-98.891944", + "elevation_ft": "3989", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MOR", + "municipality": "Ayala", + "scheduled_service": "no", + "local_code": "KHU", + "keywords": "Skydive Cuautla" + }, + { + "id": "321119", + "ident": "MX-0306", + "type": "small_airport", + "name": "Los Barrancos Airport", + "latitude_deg": "23.639325", + "longitude_deg": "-98.464417", + "elevation_ft": "1657", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "BAO" + }, + { + "id": "321120", + "ident": "MX-0307", + "type": "small_airport", + "name": "Carboneras Airport", + "latitude_deg": "23.239639", + "longitude_deg": "-97.888806", + "elevation_ft": "469", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Gonzalez", + "scheduled_service": "no", + "local_code": "RCB" + }, + { + "id": "321121", + "ident": "MX-0308", + "type": "small_airport", + "name": "Los Novillos Airport", + "latitude_deg": "27.516134", + "longitude_deg": "-104.15789", + "elevation_ft": "4701", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ciudad Jimenez", + "scheduled_service": "no", + "local_code": "NOV" + }, + { + "id": "321122", + "ident": "MX-0309", + "type": "heliport", + "name": "Femsa Helipad", + "latitude_deg": "25.695303", + "longitude_deg": "-100.317478", + "elevation_ft": "1542", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Monterrey", + "scheduled_service": "no", + "local_code": "HFD", + "keywords": "Cuauhtemoc Moctezuma Brewery-Heineken" + }, + { + "id": "321146", + "ident": "MX-0310", + "type": "small_airport", + "name": "Husky Airport", + "latitude_deg": "22.7891", + "longitude_deg": "-98.49", + "elevation_ft": "236", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Gonzalez", + "scheduled_service": "no", + "local_code": "AHS" + }, + { + "id": "321147", + "ident": "MX-0311", + "type": "small_airport", + "name": "Huerta Los Sauces Airport", + "latitude_deg": "27.0992", + "longitude_deg": "-105.0778", + "elevation_ft": "4698", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Villa Lopez", + "scheduled_service": "no", + "local_code": "LSA", + "keywords": "HIS" + }, + { + "id": "321149", + "ident": "MX-0312", + "type": "small_airport", + "name": "Rancho Don Roberto Airport", + "latitude_deg": "27.2385", + "longitude_deg": "-100.9146", + "elevation_ft": "1312", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Progreso", + "scheduled_service": "no", + "local_code": "RRB" + }, + { + "id": "321150", + "ident": "MX-0313", + "type": "small_airport", + "name": "Rancho El Bernal Airport", + "latitude_deg": "22.7004", + "longitude_deg": "-98.5009", + "elevation_ft": "262", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Gonzalez", + "scheduled_service": "no", + "local_code": "RBL" + }, + { + "id": "321151", + "ident": "MX-0314", + "type": "small_airport", + "name": "Betty Airport", + "latitude_deg": "22.8155", + "longitude_deg": "-98.5574", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Gonzalez", + "scheduled_service": "no", + "local_code": "BTY" + }, + { + "id": "321152", + "ident": "MX-0315", + "type": "small_airport", + "name": "Agua Zarca Airport", + "latitude_deg": "23.295", + "longitude_deg": "-97.8875", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "RAZ" + }, + { + "id": "321153", + "ident": "MX-0316", + "type": "small_airport", + "name": "La Palma Airport", + "latitude_deg": "22.8664", + "longitude_deg": "-98.386701", + "elevation_ft": "492", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Gonzalez", + "scheduled_service": "no", + "local_code": "PAE" + }, + { + "id": "321154", + "ident": "MX-0317", + "type": "small_airport", + "name": "Alicia Airport", + "latitude_deg": "22.8728", + "longitude_deg": "-98.5864", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Gonzalez", + "scheduled_service": "no", + "local_code": "ASH" + }, + { + "id": "321155", + "ident": "MX-0318", + "type": "heliport", + "name": "Editora Helipad", + "latitude_deg": "25.674269", + "longitude_deg": "-100.308161", + "elevation_ft": "1837", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Monterrey", + "scheduled_service": "no", + "local_code": "HED" + }, + { + "id": "321156", + "ident": "MX-0319", + "type": "heliport", + "name": "Hotel Tecnoparque Helipad", + "latitude_deg": "19.505984", + "longitude_deg": "-99.179256", + "elevation_ft": "7477", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Azcapotzalco", + "scheduled_service": "no", + "local_code": "HTN" + }, + { + "id": "321169", + "ident": "MX-0320", + "type": "heliport", + "name": "Hacienda Huajuco Heliport", + "latitude_deg": "25.536539", + "longitude_deg": "-100.199986", + "elevation_ft": "1913", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Monterrey", + "scheduled_service": "no", + "local_code": "HHH" + }, + { + "id": "321170", + "ident": "MX-0321", + "type": "small_airport", + "name": "Rancho San Gerardo Airport", + "latitude_deg": "26.979194", + "longitude_deg": "-100.264721", + "elevation_ft": "984", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Lampazos de Naranjo", + "scheduled_service": "no", + "local_code": "SGE" + }, + { + "id": "321171", + "ident": "MX-0322", + "type": "small_airport", + "name": "Bonfil Airport", + "latitude_deg": "32.300833", + "longitude_deg": "-114.975", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "San Luis Río Colorado", + "scheduled_service": "no", + "local_code": "PBO" + }, + { + "id": "321173", + "ident": "MX-0323", + "type": "heliport", + "name": "La Prensa Helipad", + "latitude_deg": "19.43719", + "longitude_deg": "-99.148063", + "elevation_ft": "7503", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "HNP" + }, + { + "id": "321174", + "ident": "MX-0324", + "type": "small_airport", + "name": "López Airstrip", + "latitude_deg": "32.409944", + "longitude_deg": "-115.049083", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "LOP", + "keywords": "Silva" + }, + { + "id": "321175", + "ident": "MX-0325", + "type": "small_airport", + "name": "El Salto Airport", + "latitude_deg": "23.77356", + "longitude_deg": "-105.326658", + "elevation_ft": "8464", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "El Salto", + "scheduled_service": "no", + "local_code": "ELS" + }, + { + "id": "321176", + "ident": "MX-0326", + "type": "small_airport", + "name": "Rancho Loma Blanca Airport", + "latitude_deg": "29.70041", + "longitude_deg": "-102.137158", + "elevation_ft": "1476", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no", + "local_code": "RLW" + }, + { + "id": "321644", + "ident": "MX-0327", + "type": "heliport", + "name": "Fideicomiso 869 Helipad", + "latitude_deg": "19.359694", + "longitude_deg": "-99.276806", + "elevation_ft": "8891", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuajimalpa", + "scheduled_service": "no", + "local_code": "HFA" + }, + { + "id": "321645", + "ident": "MX-0328", + "type": "small_airport", + "name": "El Romance Airport", + "latitude_deg": "23.374222", + "longitude_deg": "-97.928584", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "RRN" + }, + { + "id": "321646", + "ident": "MX-0329", + "type": "small_airport", + "name": "La Pinta Airport", + "latitude_deg": "25.447861", + "longitude_deg": "-98.473083", + "elevation_ft": "151", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "China", + "scheduled_service": "no", + "local_code": "PIT" + }, + { + "id": "321647", + "ident": "MX-0330", + "type": "small_airport", + "name": "Ejido Eréndira Airport", + "latitude_deg": "31.288028", + "longitude_deg": "-116.391722", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "EER" + }, + { + "id": "321648", + "ident": "MX-0331", + "type": "small_airport", + "name": "Sianori Airport", + "latitude_deg": "25.262284", + "longitude_deg": "-106.8017", + "elevation_ft": "2947", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Topia", + "scheduled_service": "no", + "local_code": "SIW" + }, + { + "id": "321649", + "ident": "MX-0332", + "type": "small_airport", + "name": "Mayocoba Agricultural Airstrip", + "latitude_deg": "25.933889", + "longitude_deg": "-109.210556", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Ahome", + "scheduled_service": "no", + "local_code": "PMY" + }, + { + "id": "321650", + "ident": "MX-0333", + "type": "small_airport", + "name": "Vista Alegre Airport", + "latitude_deg": "22.549127", + "longitude_deg": "-98.057853", + "elevation_ft": "174", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Altamira", + "scheduled_service": "no", + "local_code": "VAE" + }, + { + "id": "321651", + "ident": "MX-0334", + "type": "small_airport", + "name": "San Lorenzo Acuña Airport", + "latitude_deg": "29.308333", + "longitude_deg": "-101.090278", + "elevation_ft": "1168", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no", + "local_code": "LOR" + }, + { + "id": "321652", + "ident": "MX-0335", + "type": "small_airport", + "name": "El Seco Airport", + "latitude_deg": "29.414349", + "longitude_deg": "-101.397725", + "elevation_ft": "1312", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no", + "local_code": "ESE" + }, + { + "id": "321653", + "ident": "MX-0336", + "type": "heliport", + "name": "Torre Morelos Heliport", + "latitude_deg": "18.818611", + "longitude_deg": "-99.218473", + "elevation_ft": "4045", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MOR", + "municipality": "Temixco", + "scheduled_service": "no", + "local_code": "HMR" + }, + { + "id": "321654", + "ident": "MX-0337", + "type": "heliport", + "name": "Poligono 3 Heliport", + "latitude_deg": "19.385748", + "longitude_deg": "-99.2462", + "elevation_ft": "8232", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Alvaro Obregon", + "scheduled_service": "no", + "local_code": "HFP" + }, + { + "id": "321655", + "ident": "MX-0338", + "type": "small_airport", + "name": "La Concordia Airport", + "latitude_deg": "17.577593", + "longitude_deg": "-93.412714", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Ostuacan", + "scheduled_service": "no", + "local_code": "CCJ" + }, + { + "id": "321656", + "ident": "MX-0339", + "type": "small_airport", + "name": "Aguaje del Monte Airport", + "latitude_deg": "28.725771", + "longitude_deg": "-109.817585", + "elevation_ft": "1801", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "San Javier", + "scheduled_service": "no", + "local_code": "AGM" + }, + { + "id": "321657", + "ident": "MX-0340", + "type": "small_airport", + "name": "El Gavilán Airport", + "latitude_deg": "24.760055", + "longitude_deg": "-107.749174", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Navolato", + "scheduled_service": "no", + "local_code": "GVN" + }, + { + "id": "321672", + "ident": "MX-0341", + "type": "small_airport", + "name": "Valle de Banderas Airport", + "latitude_deg": "20.808405", + "longitude_deg": "-105.255848", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "Bahia de Banderas", + "scheduled_service": "no", + "local_code": "VBS", + "keywords": "Ejidal Airstrip" + }, + { + "id": "321691", + "ident": "MX-0342", + "type": "small_airport", + "name": "Pista Aérea de Tuxpan", + "latitude_deg": "21.942507", + "longitude_deg": "-105.274911", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "Tuxpan", + "scheduled_service": "no", + "local_code": "TXP" + }, + { + "id": "321692", + "ident": "MX-0343", + "type": "small_airport", + "name": "La Pochoteca Airport", + "latitude_deg": "21.583759", + "longitude_deg": "-104.6885332", + "elevation_ft": "2657", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "Tepic", + "scheduled_service": "no", + "local_code": "PCK" + }, + { + "id": "321693", + "ident": "MX-0344", + "type": "small_airport", + "name": "Loma Bonita de Puerta Azul Airport", + "latitude_deg": "21.839676", + "longitude_deg": "-105.172792", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "Santiago Ixcuintla", + "scheduled_service": "no", + "local_code": "SIT" + }, + { + "id": "321694", + "ident": "MX-0345", + "type": "small_airport", + "name": "Amatlan de Jora Airport", + "latitude_deg": "21.393753", + "longitude_deg": "-104.128434", + "elevation_ft": "4757", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "La Yesca", + "scheduled_service": "no", + "local_code": "AMA" + }, + { + "id": "321695", + "ident": "MX-0346", + "type": "small_airport", + "name": "Apozolco Airport", + "latitude_deg": "21.430033", + "longitude_deg": "-103.905605", + "elevation_ft": "2362", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "La Yesca", + "scheduled_service": "no", + "local_code": "APJ" + }, + { + "id": "321696", + "ident": "MX-0347", + "type": "small_airport", + "name": "Mecatillo Airport", + "latitude_deg": "21.240628", + "longitude_deg": "-104.167934", + "elevation_ft": "3560", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "La Yesca", + "scheduled_service": "no", + "local_code": "MDM" + }, + { + "id": "321697", + "ident": "MX-0348", + "type": "small_airport", + "name": "El Trapiche Airport", + "latitude_deg": "21.442661", + "longitude_deg": "-104.197225", + "elevation_ft": "4593", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "La Yesca", + "scheduled_service": "no", + "local_code": "ETN" + }, + { + "id": "321698", + "ident": "MX-0349", + "type": "small_airport", + "name": "Huajimic Airport", + "latitude_deg": "21.682934", + "longitude_deg": "-104.305722", + "elevation_ft": "3642", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "La Yesca", + "scheduled_service": "no", + "local_code": "HIC" + }, + { + "id": "321699", + "ident": "MX-0350", + "type": "small_airport", + "name": "San Juan Ixtapalapa Airport", + "latitude_deg": "21.49986", + "longitude_deg": "-104.067751", + "elevation_ft": "6004", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "La Yesca", + "scheduled_service": "no", + "local_code": "SJX" + }, + { + "id": "321802", + "ident": "MX-0351", + "type": "small_airport", + "name": "Santa Efigenia Airport", + "latitude_deg": "24.748404", + "longitude_deg": "-106.317911", + "elevation_ft": "3648", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Santiago Papasquiaro", + "scheduled_service": "no", + "local_code": "SEF" + }, + { + "id": "321803", + "ident": "MX-0352", + "type": "small_airport", + "name": "Leo Airport", + "latitude_deg": "27.9881", + "longitude_deg": "-111.038887", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Guaymas", + "scheduled_service": "no", + "local_code": "BLB" + }, + { + "id": "321804", + "ident": "MX-0353", + "type": "small_airport", + "name": "El Llano Airport", + "latitude_deg": "26.841677", + "longitude_deg": "-107.0971", + "elevation_ft": "7884", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guachochi", + "scheduled_service": "no", + "local_code": "RCU" + }, + { + "id": "321805", + "ident": "MX-0354", + "type": "small_airport", + "name": "El Patrocinio Airport", + "latitude_deg": "25.777028", + "longitude_deg": "-102.956639", + "elevation_ft": "3609", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "San Pedro", + "scheduled_service": "no", + "local_code": "PTN" + }, + { + "id": "321806", + "ident": "MX-0355", + "type": "small_airport", + "name": "Mesa de Cartujanos Airstrip", + "latitude_deg": "26.951026", + "longitude_deg": "-100.713416", + "elevation_ft": "2821", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Candela", + "scheduled_service": "no", + "local_code": "RMC" + }, + { + "id": "321807", + "ident": "MX-0356", + "type": "small_airport", + "name": "C.P.A. Leonardo López Hernandez Airport", + "latitude_deg": "16.495761", + "longitude_deg": "-94.39862", + "elevation_ft": "197", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Sto. Domingo Zanatepec", + "scheduled_service": "no", + "local_code": "LHV" + }, + { + "id": "321808", + "ident": "MX-0357", + "type": "small_airport", + "name": "El Dury Airport", + "latitude_deg": "25.757672", + "longitude_deg": "-104.434218", + "elevation_ft": "6037", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "San Pedro del Gallo", + "scheduled_service": "no", + "local_code": "EDR" + }, + { + "id": "321809", + "ident": "MX-0358", + "type": "small_airport", + "name": "Mesa de Fronteras Airport", + "latitude_deg": "30.951281", + "longitude_deg": "-109.753835", + "elevation_ft": "4363", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Fronteras", + "scheduled_service": "no", + "local_code": "MDF" + }, + { + "id": "321810", + "ident": "MX-0359", + "type": "small_airport", + "name": "Los Gloriosos Airport", + "latitude_deg": "27.093586", + "longitude_deg": "-99.982531", + "elevation_ft": "787", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Ciudad Anahuac", + "scheduled_service": "no", + "local_code": "LGI" + }, + { + "id": "321811", + "ident": "MX-0360", + "type": "small_airport", + "name": "Tumbiscatio Airport", + "latitude_deg": "18.519963", + "longitude_deg": "-102.375289", + "elevation_ft": "3035", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Tumbiscatio de Ruiz", + "scheduled_service": "no", + "local_code": "TBC" + }, + { + "id": "321819", + "ident": "MX-0361", + "type": "small_airport", + "name": "Punta Bufeo Airport", + "latitude_deg": "29.907", + "longitude_deg": "-114.447676", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "PBF" + }, + { + "id": "321820", + "ident": "MX-0362", + "type": "small_airport", + "name": "El Socorrito Airport", + "latitude_deg": "30.320266", + "longitude_deg": "-115.821263", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "SCO" + }, + { + "id": "321821", + "ident": "MX-0363", + "type": "small_airport", + "name": "Rancho El Milagro Airport", + "latitude_deg": "30.61667", + "longitude_deg": "-115.929698", + "elevation_ft": "171", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "RML" + }, + { + "id": "321822", + "ident": "MX-0364", + "type": "small_airport", + "name": "Rancho Santa Maria Airport", + "latitude_deg": "28.753366", + "longitude_deg": "-105.677934", + "elevation_ft": "3898", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Aldama", + "scheduled_service": "no", + "local_code": "CFF" + }, + { + "id": "321823", + "ident": "MX-0365", + "type": "small_airport", + "name": "San Juan de Norotal Airstrip", + "latitude_deg": "25.151131", + "longitude_deg": "-106.978812", + "elevation_ft": "2123", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "SJW" + }, + { + "id": "321824", + "ident": "MX-0366", + "type": "small_airport", + "name": "Ganaderia Santo Domingo Airport", + "latitude_deg": "28.942346", + "longitude_deg": "-102.393098", + "elevation_ft": "4380", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Melchor Muzquiz", + "scheduled_service": "no", + "local_code": "GSD" + }, + { + "id": "321825", + "ident": "MX-0367", + "type": "small_airport", + "name": "Baborigame Airport", + "latitude_deg": "26.433538", + "longitude_deg": "-107.270901", + "elevation_ft": "6453", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe Y Calvo", + "scheduled_service": "no", + "local_code": "BAB" + }, + { + "id": "321826", + "ident": "MX-0368", + "type": "small_airport", + "name": "El Barril Airport", + "latitude_deg": "28.306719", + "longitude_deg": "-112.885271", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "El Barril", + "scheduled_service": "no", + "local_code": "EBI" + }, + { + "id": "321827", + "ident": "MX-0369", + "type": "small_airport", + "name": "El Cobano Airport", + "latitude_deg": "19.155378", + "longitude_deg": "-102.008585", + "elevation_ft": "2139", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Gabriel Zamora", + "scheduled_service": "no", + "local_code": "COB" + }, + { + "id": "321828", + "ident": "MX-0370", + "type": "small_airport", + "name": "La Huerta Airport", + "latitude_deg": "27.455281", + "longitude_deg": "-110.019717", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cajeme", + "scheduled_service": "no", + "local_code": "JMS", + "keywords": "El Paraiso" + }, + { + "id": "321840", + "ident": "MX-0371", + "type": "small_airport", + "name": "El Buen Pastor Airstrip", + "latitude_deg": "30.571796", + "longitude_deg": "-115.92079", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "EBP" + }, + { + "id": "321844", + "ident": "MX-0372", + "type": "small_airport", + "name": "Los Pinos Airport", + "latitude_deg": "30.41432", + "longitude_deg": "-115.868816", + "elevation_ft": "108", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "PIN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Los_Pinos_Airstrip" + }, + { + "id": "321845", + "ident": "MX-0373", + "type": "heliport", + "name": "Rancho La Fortuna Heliport", + "latitude_deg": "19.041877", + "longitude_deg": "-98.261044", + "elevation_ft": "6978", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "Puebla", + "scheduled_service": "no", + "local_code": "HRI" + }, + { + "id": "321846", + "ident": "MX-0374", + "type": "small_airport", + "name": "Sergio Perez de León Airport", + "latitude_deg": "25.505964", + "longitude_deg": "-100.083046", + "elevation_ft": "1299", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Cadereyta Jiménez", + "scheduled_service": "no", + "local_code": "SPL", + "keywords": "SPL" + }, + { + "id": "321847", + "ident": "MX-0375", + "type": "small_airport", + "name": "Guachochi Airport", + "latitude_deg": "26.842652", + "longitude_deg": "-107.061353", + "elevation_ft": "8005", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guachochi", + "scheduled_service": "no", + "local_code": "GCC", + "keywords": "Aero Jomacha" + }, + { + "id": "321849", + "ident": "MX-0376", + "type": "heliport", + "name": "Televisa San Angel Heliport", + "latitude_deg": "19.344223", + "longitude_deg": "-99.204256", + "elevation_ft": "7772", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Alvaro Obregon", + "scheduled_service": "no", + "local_code": "HTW" + }, + { + "id": "321850", + "ident": "MX-0377", + "type": "small_airport", + "name": "Fumigaciones Aereas Perez Airport", + "latitude_deg": "24.9652", + "longitude_deg": "-107.754583", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Mocorito", + "scheduled_service": "no", + "local_code": "FAP" + }, + { + "id": "321851", + "ident": "MX-0378", + "type": "small_airport", + "name": "El Laurel Airstrip", + "latitude_deg": "25.237494", + "longitude_deg": "-106.837591", + "elevation_ft": "3281", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Topia", + "scheduled_service": "no", + "local_code": "LUE" + }, + { + "id": "321852", + "ident": "MX-0379", + "type": "heliport", + "name": "Paseo Tec Heliport", + "latitude_deg": "25.654779", + "longitude_deg": "-100.292795", + "elevation_ft": "2047", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Monterrey", + "scheduled_service": "no", + "local_code": "HPT" + }, + { + "id": "321853", + "ident": "MX-0380", + "type": "small_airport", + "name": "Nahuatl Airstrip", + "latitude_deg": "22.694137", + "longitude_deg": "-104.620994", + "elevation_ft": "3314", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Mezquital", + "scheduled_service": "no", + "local_code": "NAH" + }, + { + "id": "322552", + "ident": "MX-0381", + "type": "heliport", + "name": "Gobierno del Estado de Puebla Heliport", + "latitude_deg": "19.076367", + "longitude_deg": "-98.164005", + "elevation_ft": "7277", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "Puebla", + "scheduled_service": "no", + "local_code": "HPW" + }, + { + "id": "322553", + "ident": "MX-0382", + "type": "heliport", + "name": "Titanic Heliport", + "latitude_deg": "32.286711", + "longitude_deg": "-117.037815", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Rosarito", + "scheduled_service": "no", + "local_code": "HTI" + }, + { + "id": "322554", + "ident": "MX-0383", + "type": "small_airport", + "name": "La Noria Airport", + "latitude_deg": "24.90499", + "longitude_deg": "-107.281708", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacán", + "scheduled_service": "no", + "local_code": "NOA" + }, + { + "id": "322555", + "ident": "MX-0384", + "type": "small_airport", + "name": "San Agustin Airport", + "latitude_deg": "27.406389", + "longitude_deg": "-110.233888", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "San Ignacio", + "scheduled_service": "no", + "local_code": "AGS" + }, + { + "id": "322556", + "ident": "MX-0385", + "type": "small_airport", + "name": "El Fresnal Airport", + "latitude_deg": "31.038086", + "longitude_deg": "-107.530996", + "elevation_ft": "4049", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ascencion", + "scheduled_service": "no", + "local_code": "FNL" + }, + { + "id": "322557", + "ident": "MX-0386", + "type": "small_airport", + "name": "San Isidro Labrador Airport", + "latitude_deg": "27.370417", + "longitude_deg": "-109.908056", + "elevation_ft": "138", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cajeme", + "scheduled_service": "no", + "local_code": "SIL" + }, + { + "id": "322559", + "ident": "MX-0387", + "type": "small_airport", + "name": "La Esperanza I Airport", + "latitude_deg": "18.987527", + "longitude_deg": "-102.112083", + "elevation_ft": "1099", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Nueva Italia", + "scheduled_service": "no", + "local_code": "LEE" + }, + { + "id": "322560", + "ident": "MX-0388", + "type": "small_airport", + "name": "Las Alamandas Airport", + "latitude_deg": "19.6225", + "longitude_deg": "-105.170937", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "La Huerta", + "scheduled_service": "no", + "local_code": "AMD" + }, + { + "id": "322561", + "ident": "MX-0389", + "type": "small_airport", + "name": "El Paraiso Airport", + "latitude_deg": "22.806972", + "longitude_deg": "-98.487", + "elevation_ft": "213", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Gonzalez", + "scheduled_service": "no", + "local_code": "PAG" + }, + { + "id": "322562", + "ident": "MX-0390", + "type": "small_airport", + "name": "La Alameda Mocorito Airport", + "latitude_deg": "25.48014", + "longitude_deg": "-107.932295", + "elevation_ft": "262", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Mocorito", + "scheduled_service": "no", + "local_code": "MFP", + "keywords": "FRA" + }, + { + "id": "322563", + "ident": "MX-0391", + "type": "small_airport", + "name": "Guadalupe de Llera Airport", + "latitude_deg": "23.388579", + "longitude_deg": "-98.781319", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Llera de Canales", + "scheduled_service": "no", + "local_code": "RGA" + }, + { + "id": "322564", + "ident": "MX-0392", + "type": "small_airport", + "name": "Pueblito Airport", + "latitude_deg": "29.068194", + "longitude_deg": "-105.126663", + "elevation_ft": "3412", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Aldama", + "scheduled_service": "no", + "local_code": "PBL" + }, + { + "id": "322565", + "ident": "MX-0393", + "type": "heliport", + "name": "Alsavision Heliport", + "latitude_deg": "19.436581", + "longitude_deg": "-99.201368", + "elevation_ft": "7523", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HSV" + }, + { + "id": "322566", + "ident": "MX-0394", + "type": "heliport", + "name": "Jumex 303 Heliport", + "latitude_deg": "19.440583", + "longitude_deg": "-99.20325", + "elevation_ft": "7303", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HJM" + }, + { + "id": "322590", + "ident": "MX-0395", + "type": "closed", + "name": "Palenque Old Airport", + "latitude_deg": "17.533596", + "longitude_deg": "-91.984442", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Palenque", + "scheduled_service": "no" + }, + { + "id": "322822", + "ident": "MX-0396", + "type": "heliport", + "name": "Hospital Dr. Manuel Gea González Heliport", + "latitude_deg": "19.290366", + "longitude_deg": "-99.161456", + "elevation_ft": "7552", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Tlalpan", + "scheduled_service": "no", + "local_code": "HGG" + }, + { + "id": "322823", + "ident": "MX-0397", + "type": "heliport", + "name": "Ecatepec Heliport", + "latitude_deg": "19.598723", + "longitude_deg": "-99.049292", + "elevation_ft": "7424", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Ecatepec de Morelos", + "scheduled_service": "no", + "local_code": "HEP" + }, + { + "id": "322824", + "ident": "MX-0398", + "type": "heliport", + "name": "SSP Aguascalientes Heliport", + "latitude_deg": "21.877302", + "longitude_deg": "-102.257426", + "elevation_ft": "6256", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-AGU", + "municipality": "Aguascalientes", + "scheduled_service": "no", + "local_code": "HJN", + "keywords": "HAN" + }, + { + "id": "322825", + "ident": "MX-0399", + "type": "small_airport", + "name": "Huajuapan Airport", + "latitude_deg": "17.815672", + "longitude_deg": "-97.743611", + "elevation_ft": "5440", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Huajuapan", + "scheduled_service": "no", + "local_code": "JPA" + }, + { + "id": "322826", + "ident": "MX-0400", + "type": "small_airport", + "name": "Plan de Iguala Airport", + "latitude_deg": "22.043206", + "longitude_deg": "-98.473092", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "Ebano", + "scheduled_service": "no", + "local_code": "PLA" + }, + { + "id": "322827", + "ident": "MX-0401", + "type": "heliport", + "name": "Centro de Datos Heliport", + "latitude_deg": "20.755789", + "longitude_deg": "-100.317596", + "elevation_ft": "6490", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-QUE", + "municipality": "Querétaro", + "scheduled_service": "no", + "local_code": "HQS" + }, + { + "id": "322828", + "ident": "MX-0402", + "type": "small_airport", + "name": "Fumigaciones Aereas Cervantes Airport", + "latitude_deg": "27.420556", + "longitude_deg": "-110.1", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Bácum", + "scheduled_service": "no", + "local_code": "CFU" + }, + { + "id": "322829", + "ident": "MX-0403", + "type": "small_airport", + "name": "San Jorge Airport", + "latitude_deg": "19.285793", + "longitude_deg": "-90.300021", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Champoton", + "scheduled_service": "no", + "local_code": "SJQ" + }, + { + "id": "322830", + "ident": "MX-0404", + "type": "heliport", + "name": "Cabo Real Heliport", + "latitude_deg": "22.993656", + "longitude_deg": "-109.767664", + "elevation_ft": "299", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Los Cabos", + "scheduled_service": "no", + "local_code": "HCJ" + }, + { + "id": "322961", + "ident": "MX-0405", + "type": "small_airport", + "name": "Enrique Cardenaz Gonzalez Airport", + "latitude_deg": "25.617376", + "longitude_deg": "-97.81669", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Valle Hermoso", + "scheduled_service": "no", + "local_code": "ECG" + }, + { + "id": "322962", + "ident": "MX-0406", + "type": "small_airport", + "name": "Kilo Airport", + "latitude_deg": "25.837279", + "longitude_deg": "-98.117336", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "scheduled_service": "no", + "local_code": "TRM" + }, + { + "id": "322963", + "ident": "MX-0407", + "type": "small_airport", + "name": "Paso Real Airstrip", + "latitude_deg": "24.824711", + "longitude_deg": "-98.164431", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "San Fernando", + "scheduled_service": "no" + }, + { + "id": "322967", + "ident": "MX-0408", + "type": "small_airport", + "name": "Bravo Airport", + "latitude_deg": "25.972194", + "longitude_deg": "-98.119168", + "elevation_ft": "138", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Rio Bravo", + "scheduled_service": "no", + "local_code": "AAB", + "keywords": "MMRR" + }, + { + "id": "322968", + "ident": "MX-0409", + "type": "small_airport", + "name": "Peña Flor Airport", + "latitude_deg": "24.563284", + "longitude_deg": "-103.032122", + "elevation_ft": "5627", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Simón Bolívar", + "scheduled_service": "no", + "local_code": "PFO" + }, + { + "id": "322969", + "ident": "MX-0410", + "type": "small_airport", + "name": "Cuixmala Airport", + "latitude_deg": "19.379351", + "longitude_deg": "-104.987386", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "La Huerta", + "scheduled_service": "no", + "local_code": "CIX" + }, + { + "id": "322970", + "ident": "MX-0411", + "type": "heliport", + "name": "PFP Heliport", + "latitude_deg": "19.316187", + "longitude_deg": "-99.22046", + "elevation_ft": "8110", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Magdalena Contreras", + "scheduled_service": "no", + "local_code": "PFP", + "home_link": "http://www.cns.gob.mx/portalWebApp/wlp.c?__c=7f9", + "keywords": "Pedregal Tower" + }, + { + "id": "322980", + "ident": "MX-0412", + "type": "small_airport", + "name": "San Luis de Ocosingo Airport", + "latitude_deg": "16.891884", + "longitude_deg": "-92.054834", + "elevation_ft": "3035", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Ocosingo", + "scheduled_service": "no", + "local_code": "OCO" + }, + { + "id": "323046", + "ident": "MX-0413", + "type": "small_airport", + "name": "Air Station No. 8 Loma Bonita", + "latitude_deg": "18.023333", + "longitude_deg": "-95.853611", + "elevation_ft": "174", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Loma Bonita", + "scheduled_service": "no", + "wikipedia_link": "https://es.wikipedia.org/wiki/Estaci%C3%B3n_a%C3%A9rea_n.%C2%B0_8_Loma_Bonita", + "keywords": "MX67" + }, + { + "id": "323390", + "ident": "MX-0414", + "type": "small_airport", + "name": "Tayoltita Airport", + "latitude_deg": "24.109686", + "longitude_deg": "-105.922812", + "elevation_ft": "1837", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "San Dimas", + "scheduled_service": "no", + "local_code": "TAY" + }, + { + "id": "323391", + "ident": "MX-0415", + "type": "small_airport", + "name": "Topía Airport", + "latitude_deg": "25.210781", + "longitude_deg": "-106.569451", + "elevation_ft": "5738", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Topía", + "scheduled_service": "no", + "local_code": "TOP" + }, + { + "id": "323392", + "ident": "MX-0416", + "type": "small_airport", + "name": "Canelas Airstrip", + "latitude_deg": "25.128263", + "longitude_deg": "-106.552689", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Canelas", + "scheduled_service": "no", + "local_code": "CAN" + }, + { + "id": "323393", + "ident": "MX-0417", + "type": "small_airport", + "name": "El Palmarito Airstrip", + "latitude_deg": "23.887633", + "longitude_deg": "-105.719018", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "El Palmarito", + "scheduled_service": "no" + }, + { + "id": "323394", + "ident": "MX-0418", + "type": "small_airport", + "name": "Elota Airstrip", + "latitude_deg": "23.935466", + "longitude_deg": "-106.872801", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "La Cruz", + "scheduled_service": "no" + }, + { + "id": "323395", + "ident": "MX-0419", + "type": "small_airport", + "name": "Ejidal Airstrip", + "latitude_deg": "23.909576", + "longitude_deg": "-106.897357", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "La Cruz", + "scheduled_service": "no" + }, + { + "id": "323396", + "ident": "MX-0420", + "type": "small_airport", + "name": "Bayosa Airstrip", + "latitude_deg": "24.770113", + "longitude_deg": "-106.77038", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Bayosa", + "scheduled_service": "no" + }, + { + "id": "323397", + "ident": "MX-0421", + "type": "small_airport", + "name": "Tamazula de Victoria Airport", + "latitude_deg": "24.966947", + "longitude_deg": "-106.956454", + "elevation_ft": "847", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula de Victoria", + "scheduled_service": "no", + "local_code": "TZA" + }, + { + "id": "323398", + "ident": "MX-0422", + "type": "small_airport", + "name": "Badiraguato Airport", + "latitude_deg": "25.355589", + "longitude_deg": "-107.556547", + "elevation_ft": "832", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no" + }, + { + "id": "323399", + "ident": "MX-0423", + "type": "small_airport", + "name": "Témoris Airport", + "latitude_deg": "27.261718", + "longitude_deg": "-108.29294", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guazapares", + "scheduled_service": "no", + "local_code": "TMS" + }, + { + "id": "323400", + "ident": "MX-0424", + "type": "medium_airport", + "name": "Creel International Airport", + "latitude_deg": "27.725133", + "longitude_deg": "-107.652015", + "elevation_ft": "8132", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Bocoyna (Creel)", + "scheduled_service": "no", + "gps_code": "MX31", + "keywords": "Barrancas del Cobre Regional" + }, + { + "id": "323401", + "ident": "MX-0425", + "type": "small_airport", + "name": "Carichí Airstrip", + "latitude_deg": "27.917501", + "longitude_deg": "-107.043159", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Carichí", + "scheduled_service": "no" + }, + { + "id": "323402", + "ident": "MX-0426", + "type": "small_airport", + "name": "Bajichic Airport", + "latitude_deg": "27.600945", + "longitude_deg": "-107.122756", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Bajichic", + "scheduled_service": "no" + }, + { + "id": "323403", + "ident": "MX-0427", + "type": "small_airport", + "name": "Norogachi Airstrip", + "latitude_deg": "27.277004", + "longitude_deg": "-107.1499", + "elevation_ft": "7201", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guachochi", + "scheduled_service": "no", + "local_code": "NOR" + }, + { + "id": "323404", + "ident": "MX-0428", + "type": "small_airport", + "name": "San Bias Airport", + "latitude_deg": "21.546076", + "longitude_deg": "-105.28736", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "San Bias", + "scheduled_service": "no" + }, + { + "id": "323406", + "ident": "MX-0429", + "type": "small_airport", + "name": "Tecubichi Airstrip", + "latitude_deg": "27.678451", + "longitude_deg": "-106.842784", + "elevation_ft": "6890", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Carichi", + "scheduled_service": "no", + "local_code": "TEB" + }, + { + "id": "323407", + "ident": "MX-0430", + "type": "small_airport", + "name": "La Vainilla Airport", + "latitude_deg": "25.193032", + "longitude_deg": "-106.860011", + "elevation_ft": "2297", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "LVL" + }, + { + "id": "323408", + "ident": "MX-0431", + "type": "small_airport", + "name": "Platanar Airstrip", + "latitude_deg": "25.204562", + "longitude_deg": "-106.775905", + "elevation_ft": "2707", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "EPA" + }, + { + "id": "323410", + "ident": "MX-0432", + "type": "small_airport", + "name": "Las Adjuntas Airstrip", + "latitude_deg": "25.151134", + "longitude_deg": "-106.802541", + "elevation_ft": "2707", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "ADJ" + }, + { + "id": "323414", + "ident": "MX-0433", + "type": "small_airport", + "name": "Teacapán Naval Air Station / Escuinapa National Airport", + "latitude_deg": "22.536739", + "longitude_deg": "-105.716886", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Teacapán", + "scheduled_service": "no", + "gps_code": "MXNT", + "keywords": "Aeropuerto Nacional de Escuinapa" + }, + { + "id": "323415", + "ident": "MX-0434", + "type": "small_airport", + "name": "El Rosario Airstrip", + "latitude_deg": "22.990108", + "longitude_deg": "-105.86885", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "El Rosario", + "scheduled_service": "no" + }, + { + "id": "323416", + "ident": "MX-0435", + "type": "small_airport", + "name": "Mesa del Nayar Airport", + "latitude_deg": "22.201221", + "longitude_deg": "-104.647072", + "elevation_ft": "4445", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "Mesa del Nayar", + "scheduled_service": "no", + "local_code": "MAN" + }, + { + "id": "323417", + "ident": "MX-0436", + "type": "small_airport", + "name": "Huazamota Airstrip", + "latitude_deg": "22.525853", + "longitude_deg": "-104.497873", + "elevation_ft": "1969", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Mezquital", + "scheduled_service": "no", + "local_code": "HZM" + }, + { + "id": "323418", + "ident": "MX-0437", + "type": "small_airport", + "name": "La Candelaria Airstrip", + "latitude_deg": "23.08303", + "longitude_deg": "-104.545296", + "elevation_ft": "6365", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Mezquital", + "scheduled_service": "no", + "local_code": "LCN" + }, + { + "id": "323419", + "ident": "MX-0438", + "type": "small_airport", + "name": "Los Charcos Airstrip", + "latitude_deg": "23.000115", + "longitude_deg": "-104.293973", + "elevation_ft": "8879", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Mezquital", + "scheduled_service": "no", + "local_code": "LOS" + }, + { + "id": "323420", + "ident": "MX-0439", + "type": "small_airport", + "name": "Nueva Colonia Airstrip", + "latitude_deg": "22.316867", + "longitude_deg": "-104.0207", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Nueva Colonia", + "scheduled_service": "no" + }, + { + "id": "323421", + "ident": "MX-0440", + "type": "small_airport", + "name": "Santa Catarina Airstrip", + "latitude_deg": "22.218361", + "longitude_deg": "-104.059687", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Santa Catarina", + "scheduled_service": "no" + }, + { + "id": "323422", + "ident": "MX-0441", + "type": "small_airport", + "name": "San Andrés Cohamiata Airstrip", + "latitude_deg": "22.190108", + "longitude_deg": "-104.244516", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "San Andrés Cohamiata", + "scheduled_service": "no" + }, + { + "id": "323423", + "ident": "MX-0442", + "type": "small_airport", + "name": "Santa Clara Airstrip", + "latitude_deg": "22.236136", + "longitude_deg": "-104.271938", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Santa Clara", + "scheduled_service": "no" + }, + { + "id": "323425", + "ident": "MX-0443", + "type": "small_airport", + "name": "Chimaltitán Airstrip", + "latitude_deg": "21.787215", + "longitude_deg": "-103.774474", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Chimaltitán", + "scheduled_service": "no" + }, + { + "id": "323426", + "ident": "MX-0444", + "type": "small_airport", + "name": "Tuxpan de Bolaños Airstrip", + "latitude_deg": "21.88036", + "longitude_deg": "-104.019506", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Tuxpan de Bolaños", + "scheduled_service": "no" + }, + { + "id": "323427", + "ident": "MX-0445", + "type": "small_airport", + "name": "Puente de Camotlán Airstrip", + "latitude_deg": "21.708936", + "longitude_deg": "-104.09111", + "elevation_ft": "3695", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "Puente de Camotlán", + "scheduled_service": "no", + "local_code": "PCM" + }, + { + "id": "323428", + "ident": "MX-0446", + "type": "closed", + "name": "El Rosario Airstrip", + "latitude_deg": "20.892698", + "longitude_deg": "-104.478155", + "elevation_ft": "2625", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "El Rosario", + "scheduled_service": "no", + "local_code": "ELR" + }, + { + "id": "323441", + "ident": "MX-0447", + "type": "small_airport", + "name": "Del Mayo Airport", + "latitude_deg": "26.896361", + "longitude_deg": "-109.525027", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Etchojoa", + "scheduled_service": "no", + "local_code": "ADM" + }, + { + "id": "323448", + "ident": "MX-0448", + "type": "heliport", + "name": "Hospital 120 Camas Tlahuac Heliport", + "latitude_deg": "19.286887", + "longitude_deg": "-99.052482", + "elevation_ft": "7451", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Tlahuac", + "scheduled_service": "no", + "local_code": "HTF" + }, + { + "id": "323449", + "ident": "MX-0449", + "type": "small_airport", + "name": "Cap. P.A. Roberto Chavez Balderas Airport", + "latitude_deg": "25.300041", + "longitude_deg": "-99.721716", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "General Teran", + "scheduled_service": "no", + "local_code": "PAR" + }, + { + "id": "323450", + "ident": "MX-0450", + "type": "heliport", + "name": "Comandancia Norte Heliport", + "latitude_deg": "28.70467", + "longitude_deg": "-106.12176", + "elevation_ft": "4826", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Chihuahua", + "scheduled_service": "no", + "local_code": "HND" + }, + { + "id": "323451", + "ident": "MX-0451", + "type": "small_airport", + "name": "El Chapote Airstrip", + "latitude_deg": "27.268005", + "longitude_deg": "-101.051459", + "elevation_ft": "1312", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Progreso", + "scheduled_service": "no", + "local_code": "EHT" + }, + { + "id": "323452", + "ident": "MX-0452", + "type": "small_airport", + "name": "Villa de Ocampo Airport", + "latitude_deg": "26.44424", + "longitude_deg": "-105.499956", + "elevation_ft": "5655", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Villa de Ocampo", + "scheduled_service": "no", + "local_code": "VOO" + }, + { + "id": "323453", + "ident": "MX-0453", + "type": "heliport", + "name": "Edificio de Justicia Estatal Heliport", + "latitude_deg": "19.289303", + "longitude_deg": "-99.638334", + "elevation_ft": "8799", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Toluca", + "scheduled_service": "no", + "local_code": "HJE" + }, + { + "id": "323454", + "ident": "MX-0454", + "type": "small_airport", + "name": "La Pinosa Airstrip", + "latitude_deg": "25.168091", + "longitude_deg": "-107.118611", + "elevation_ft": "3871", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "PNC" + }, + { + "id": "323455", + "ident": "MX-0455", + "type": "small_airport", + "name": "Yamoriba Airstrip", + "latitude_deg": "24.233892", + "longitude_deg": "-105.820197", + "elevation_ft": "5413", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "San Dimas", + "scheduled_service": "no", + "local_code": "YMA" + }, + { + "id": "323456", + "ident": "MX-0456", + "type": "heliport", + "name": "Centro Medico ABC Santa Fe Heliport", + "latitude_deg": "19.357398", + "longitude_deg": "-99.282896", + "elevation_ft": "8994", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Alvaro Obregon", + "scheduled_service": "no", + "local_code": "HAB" + }, + { + "id": "323457", + "ident": "MX-0457", + "type": "heliport", + "name": "Cabo Sky Tours Heliport", + "latitude_deg": "22.894599", + "longitude_deg": "-109.901943", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Los Cabos", + "scheduled_service": "no", + "local_code": "ASL" + }, + { + "id": "323580", + "ident": "MX-0458", + "type": "small_airport", + "name": "Chinatú Airstrip", + "latitude_deg": "26.182586", + "longitude_deg": "-106.595219", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no" + }, + { + "id": "323581", + "ident": "MX-0459", + "type": "small_airport", + "name": "El Zorrillo Airport", + "latitude_deg": "26.055491", + "longitude_deg": "-106.970514", + "elevation_ft": "8464", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "EZO" + }, + { + "id": "323857", + "ident": "MX-0460", + "type": "small_airport", + "name": "San Bernardino de Milpillas Chico Airstrip", + "latitude_deg": "23.385099", + "longitude_deg": "-105.144418", + "elevation_ft": "6234", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Pueblo Nuevo", + "scheduled_service": "no", + "local_code": "LOD" + }, + { + "id": "323858", + "ident": "MX-0461", + "type": "small_airport", + "name": "San Francisco del Mezquital Airstrip", + "latitude_deg": "23.495019", + "longitude_deg": "-104.39784", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Mezquital", + "scheduled_service": "no" + }, + { + "id": "323859", + "ident": "MX-0462", + "type": "small_airport", + "name": "Llano Grande Airstrip", + "latitude_deg": "22.785651", + "longitude_deg": "-105.100625", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "Llano Grande", + "scheduled_service": "no" + }, + { + "id": "323864", + "ident": "MX-0463", + "type": "heliport", + "name": "Farallon Heliport", + "latitude_deg": "19.322728", + "longitude_deg": "-99.204347", + "elevation_ft": "7677", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Alvaro Obregon", + "scheduled_service": "no", + "local_code": "HFN" + }, + { + "id": "323865", + "ident": "MX-0464", + "type": "heliport", + "name": "Elektra Heliport", + "latitude_deg": "19.296813", + "longitude_deg": "-99.185982", + "elevation_ft": "7677", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Tlalpan", + "scheduled_service": "no", + "local_code": "HEK" + }, + { + "id": "323866", + "ident": "MX-0465", + "type": "heliport", + "name": "Elektra Ii Heliport", + "latitude_deg": "19.29622", + "longitude_deg": "-99.185664", + "elevation_ft": "7677", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Tlalpan", + "scheduled_service": "no", + "local_code": "HKT" + }, + { + "id": "323867", + "ident": "MX-0466", + "type": "heliport", + "name": "TV Azteca Heliport", + "latitude_deg": "19.30475", + "longitude_deg": "-99.210278", + "elevation_ft": "7959", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Tlalpan", + "scheduled_service": "no", + "local_code": "HZT" + }, + { + "id": "323868", + "ident": "MX-0467", + "type": "heliport", + "name": "Hospital Angeles de Las Lomas Heliport", + "latitude_deg": "19.394188", + "longitude_deg": "-99.281978", + "elevation_ft": "8399", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Huixquilucan", + "scheduled_service": "no", + "local_code": "HAO" + }, + { + "id": "323869", + "ident": "MX-0468", + "type": "heliport", + "name": "Nestle Heliport", + "latitude_deg": "19.438293", + "longitude_deg": "-99.188492", + "elevation_ft": "7497", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HPN" + }, + { + "id": "323870", + "ident": "MX-0469", + "type": "heliport", + "name": "Cabo de Peñas Heliport", + "latitude_deg": "19.402196", + "longitude_deg": "-99.275016", + "elevation_ft": "8289", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Huixquilucan", + "scheduled_service": "no", + "local_code": "HPP" + }, + { + "id": "323878", + "ident": "MX-0470", + "type": "small_airport", + "name": "San Martín de Bolaños Airstrip", + "latitude_deg": "21.509215", + "longitude_deg": "-103.804158", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "San Martín de Bolaños", + "scheduled_service": "no" + }, + { + "id": "323915", + "ident": "MX-0471", + "type": "closed", + "name": "Aduana de Sonoyta Airstrip", + "latitude_deg": "31.636762", + "longitude_deg": "-112.812528", + "elevation_ft": "1728", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Sonoyta", + "scheduled_service": "no", + "keywords": "MMWX, Aduana San Emeterio, Los Toritos" + }, + { + "id": "323925", + "ident": "MX-0472", + "type": "small_airport", + "name": "Santa María de Otáez Airport", + "latitude_deg": "24.699766", + "longitude_deg": "-106", + "elevation_ft": "4501", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Otáez", + "scheduled_service": "no", + "local_code": "MOX" + }, + { + "id": "323926", + "ident": "MX-0473", + "type": "heliport", + "name": "J.W. Marriott Heliport", + "latitude_deg": "19.427299", + "longitude_deg": "-99.194406", + "elevation_ft": "7474", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HJW" + }, + { + "id": "323927", + "ident": "MX-0474", + "type": "small_airport", + "name": "El Rincon Airstrip", + "latitude_deg": "25.235992", + "longitude_deg": "-106.769275", + "elevation_ft": "1781", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Topia", + "scheduled_service": "no", + "local_code": "RNC" + }, + { + "id": "323928", + "ident": "MX-0475", + "type": "small_airport", + "name": "Los Violines Poniente Airport", + "latitude_deg": "30.305161", + "longitude_deg": "-106.479226", + "elevation_ft": "4167", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Villa Ahumada", + "scheduled_service": "no", + "local_code": "VSP" + }, + { + "id": "323929", + "ident": "MX-0476", + "type": "small_airport", + "name": "General Roberto Fierro Airport", + "latitude_deg": "28.568056", + "longitude_deg": "-107.467221", + "elevation_ft": "6798", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ciudad Guerrero", + "scheduled_service": "no", + "local_code": "CDG" + }, + { + "id": "323930", + "ident": "MX-0477", + "type": "small_airport", + "name": "Rancho La Escondida Airport", + "latitude_deg": "28.858056", + "longitude_deg": "-101.873888", + "elevation_ft": "3251", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no", + "local_code": "REC" + }, + { + "id": "323931", + "ident": "MX-0478", + "type": "heliport", + "name": "Palacio de Hierro Durango Heliport", + "latitude_deg": "19.418739", + "longitude_deg": "-99.169072", + "elevation_ft": "7438", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "HDX" + }, + { + "id": "323932", + "ident": "MX-0479", + "type": "small_airport", + "name": "El Contadero Airport", + "latitude_deg": "23.786944", + "longitude_deg": "-97.878056", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "CTF" + }, + { + "id": "323933", + "ident": "MX-0480", + "type": "small_airport", + "name": "Ingenio de Huixtla Airport", + "latitude_deg": "15.086121", + "longitude_deg": "-92.502777", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Huixtla", + "scheduled_service": "no", + "local_code": "IHC", + "keywords": "Garcia" + }, + { + "id": "323934", + "ident": "MX-0481", + "type": "small_airport", + "name": "Rancho Santa Anita Airport", + "latitude_deg": "29.673203", + "longitude_deg": "-105.280751", + "elevation_ft": "3901", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Coyame del Sotol", + "scheduled_service": "no", + "local_code": "RTA" + }, + { + "id": "323935", + "ident": "MX-0482", + "type": "small_airport", + "name": "Rancho La Rosita Airport", + "latitude_deg": "28.347778", + "longitude_deg": "-101.672778", + "elevation_ft": "1949", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Melchor Múzquiz", + "scheduled_service": "no", + "local_code": "RLR" + }, + { + "id": "323936", + "ident": "MX-0483", + "type": "small_airport", + "name": "Minera La Perla Airport", + "latitude_deg": "28.342132", + "longitude_deg": "-104.515177", + "elevation_ft": "4715", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Camargo", + "scheduled_service": "no", + "local_code": "MLP" + }, + { + "id": "323937", + "ident": "MX-0484", + "type": "small_airport", + "name": "Buenavista de Atascaderos Airport", + "latitude_deg": "25.756865", + "longitude_deg": "-106.797866", + "elevation_ft": "7382", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "BVA" + }, + { + "id": "323938", + "ident": "MX-0485", + "type": "small_airport", + "name": "Ganaderia Cimarron Airport", + "latitude_deg": "28.310814", + "longitude_deg": "-102.402143", + "elevation_ft": "4790", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "San Buenaventura", + "scheduled_service": "no", + "local_code": "GAB" + }, + { + "id": "323939", + "ident": "MX-0486", + "type": "small_airport", + "name": "Rancho Rio Grande", + "latitude_deg": "28.199464", + "longitude_deg": "-100.233572", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Guerrero", + "scheduled_service": "no", + "local_code": "RRG" + }, + { + "id": "324210", + "ident": "MX-0487", + "type": "small_airport", + "name": "Los Ángeles Airport", + "latitude_deg": "29.500556", + "longitude_deg": "-101.667571", + "elevation_ft": "1772", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no", + "local_code": "LAN" + }, + { + "id": "324211", + "ident": "MX-0488", + "type": "small_airport", + "name": "Zoquipan Airstrip", + "latitude_deg": "22.013807", + "longitude_deg": "-104.544069", + "elevation_ft": "1703", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "El Nayar", + "scheduled_service": "no", + "local_code": "ZQN" + }, + { + "id": "324213", + "ident": "MX-0489", + "type": "small_airport", + "name": "El Desemboque Airport", + "latitude_deg": "28.781083", + "longitude_deg": "-101.30071", + "elevation_ft": "1542", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no", + "local_code": "EDQ", + "keywords": "Rancho Tio Tacho" + }, + { + "id": "324214", + "ident": "MX-0490", + "type": "small_airport", + "name": "Los Pecos Airstrip", + "latitude_deg": "29.654077", + "longitude_deg": "-101.466669", + "elevation_ft": "1362", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no", + "local_code": "RPB" + }, + { + "id": "324215", + "ident": "MX-0491", + "type": "closed", + "name": "Santa Christine Airport", + "latitude_deg": "27.364701", + "longitude_deg": "-100.624465", + "elevation_ft": "919", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Progreso", + "scheduled_service": "no", + "local_code": "SFW" + }, + { + "id": "324216", + "ident": "MX-0492", + "type": "small_airport", + "name": "Rancho San Antonio Airstrip", + "latitude_deg": "31.322506", + "longitude_deg": "-110.590133", + "elevation_ft": "3937", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "local_code": "RNA" + }, + { + "id": "324218", + "ident": "MX-0493", + "type": "small_airport", + "name": "San Pedro del Gallo Airport", + "latitude_deg": "25.561266", + "longitude_deg": "-104.285241", + "elevation_ft": "5725", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "San Pedro del Gallo", + "scheduled_service": "no", + "local_code": "SPG" + }, + { + "id": "324219", + "ident": "MX-0494", + "type": "small_airport", + "name": "Venecia Airport", + "latitude_deg": "26.202206", + "longitude_deg": "-98.558212", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Ciudad Díaz Ordaz", + "scheduled_service": "no", + "local_code": "VEA" + }, + { + "id": "324220", + "ident": "MX-0495", + "type": "small_airport", + "name": "Las Islas Airport", + "latitude_deg": "32.561902", + "longitude_deg": "-115.258558", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "ISL" + }, + { + "id": "324221", + "ident": "MX-0496", + "type": "small_airport", + "name": "Trampa Santa Rosa Airport", + "latitude_deg": "29.636925", + "longitude_deg": "-101.469959", + "elevation_ft": "1345", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no", + "local_code": "TRS" + }, + { + "id": "324222", + "ident": "MX-0497", + "type": "heliport", + "name": "Torrey Heliport", + "latitude_deg": "25.696056", + "longitude_deg": "-100.177056", + "elevation_ft": "1486", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Guadalupe", + "scheduled_service": "no", + "local_code": "HRY" + }, + { + "id": "324223", + "ident": "MX-0498", + "type": "small_airport", + "name": "Rancho El Porvenir Airport", + "latitude_deg": "28.576416", + "longitude_deg": "-100.936635", + "elevation_ft": "1148", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no", + "local_code": "RPV" + }, + { + "id": "324224", + "ident": "MX-0499", + "type": "heliport", + "name": "Reforma Plus Heliport", + "latitude_deg": "19.393754", + "longitude_deg": "-99.239085", + "elevation_ft": "8438", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HRP" + }, + { + "id": "324225", + "ident": "MX-0500", + "type": "heliport", + "name": "Vertientes Heliport", + "latitude_deg": "19.408319", + "longitude_deg": "-99.231275", + "elevation_ft": "7579", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HVS" + }, + { + "id": "324226", + "ident": "MX-0501", + "type": "heliport", + "name": "Constituyentes Heliport", + "latitude_deg": "19.39425", + "longitude_deg": "-99.237194", + "elevation_ft": "8071", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HOC" + }, + { + "id": "324227", + "ident": "MX-0502", + "type": "heliport", + "name": "Irla Heliport", + "latitude_deg": "19.394245", + "longitude_deg": "-99.239232", + "elevation_ft": "8576", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HDL" + }, + { + "id": "324228", + "ident": "MX-0503", + "type": "small_airport", + "name": "El Refugio Airport", + "latitude_deg": "26.814846", + "longitude_deg": "-105.619571", + "elevation_ft": "5200", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Villa Matamoros", + "scheduled_service": "no", + "local_code": "RFU" + }, + { + "id": "324229", + "ident": "MX-0504", + "type": "small_airport", + "name": "San Manolo Airport", + "latitude_deg": "27.147258", + "longitude_deg": "-100.747276", + "elevation_ft": "1106", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Lampazos", + "scheduled_service": "no", + "local_code": "MLO" + }, + { + "id": "324230", + "ident": "MX-0505", + "type": "small_airport", + "name": "Marte R. Gomez Airport", + "latitude_deg": "14.905922", + "longitude_deg": "-92.4465", + "elevation_ft": "84", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Mazatan", + "scheduled_service": "no", + "local_code": "MRM" + }, + { + "id": "324231", + "ident": "MX-0506", + "type": "small_airport", + "name": "Santa Maria Paras Airstrip", + "latitude_deg": "26.446838", + "longitude_deg": "-99.666483", + "elevation_ft": "922", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Paras", + "scheduled_service": "no", + "local_code": "SMK" + }, + { + "id": "324232", + "ident": "MX-0507", + "type": "small_airport", + "name": "El Aguila Ranch Airport", + "latitude_deg": "27.986694", + "longitude_deg": "-100.225724", + "elevation_ft": "899", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Guerrero", + "scheduled_service": "no", + "local_code": "EAG" + }, + { + "id": "324233", + "ident": "MX-0508", + "type": "small_airport", + "name": "El Palmar Ranch Airstrip", + "latitude_deg": "22.797147", + "longitude_deg": "-99.140886", + "elevation_ft": "394", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Ciudad Mante", + "scheduled_service": "no", + "local_code": "PLR" + }, + { + "id": "324234", + "ident": "MX-0509", + "type": "small_airport", + "name": "La Jaiba Airport", + "latitude_deg": "23.741128", + "longitude_deg": "-98.223815", + "elevation_ft": "984", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "LJA" + }, + { + "id": "324237", + "ident": "MX-0510", + "type": "heliport", + "name": "Plaza Cuicuilco Heliport", + "latitude_deg": "19.298592", + "longitude_deg": "-99.183196", + "elevation_ft": "7651", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Tlalpan", + "scheduled_service": "no", + "local_code": "HPV" + }, + { + "id": "324239", + "ident": "MX-0511", + "type": "heliport", + "name": "Americas Country Heliport", + "latitude_deg": "20.702397", + "longitude_deg": "-103.376303", + "elevation_ft": "5280", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Guadalajara", + "scheduled_service": "no", + "local_code": "HAZ" + }, + { + "id": "324242", + "ident": "MX-0512", + "type": "small_airport", + "name": "Santa Rosa de Hopelchen Airstrip", + "latitude_deg": "19.849668", + "longitude_deg": "-89.693175", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Hopelchen", + "scheduled_service": "no", + "local_code": "SRH" + }, + { + "id": "324243", + "ident": "MX-0513", + "type": "small_airport", + "name": "Santa Cecilia Airport", + "latitude_deg": "27.369395", + "longitude_deg": "-109.938403", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cajeme", + "scheduled_service": "no", + "local_code": "SXA" + }, + { + "id": "324244", + "ident": "MX-0514", + "type": "small_airport", + "name": "Golfo de Santa Clara Airport", + "latitude_deg": "31.708581", + "longitude_deg": "-114.524374", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "San Luis Río Colorado", + "scheduled_service": "no", + "local_code": "GSC" + }, + { + "id": "324245", + "ident": "MX-0515", + "type": "small_airport", + "name": "El Mochomo Airport", + "latitude_deg": "25.196893", + "longitude_deg": "-108.068683", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Angostura", + "scheduled_service": "no", + "local_code": "MOH" + }, + { + "id": "324246", + "ident": "MX-0516", + "type": "small_airport", + "name": "Santa Teresa Airport", + "latitude_deg": "26.8775", + "longitude_deg": "-99.890557", + "elevation_ft": "459", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Vallecillo", + "scheduled_service": "no", + "local_code": "SKT" + }, + { + "id": "324247", + "ident": "MX-0517", + "type": "small_airport", + "name": "Mochicahui Airport", + "latitude_deg": "25.91075", + "longitude_deg": "-108.918388", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "El Fuerte", + "scheduled_service": "no", + "local_code": "MHH" + }, + { + "id": "324248", + "ident": "MX-0518", + "type": "small_airport", + "name": "Aero Agricola El Caimanero Airport", + "latitude_deg": "24.944324", + "longitude_deg": "-107.751679", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Navolato", + "scheduled_service": "no", + "local_code": "AAC" + }, + { + "id": "324249", + "ident": "MX-0519", + "type": "small_airport", + "name": "El Centenario Airport", + "latitude_deg": "23.662874", + "longitude_deg": "-97.95002", + "elevation_ft": "1201", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "CTI" + }, + { + "id": "324250", + "ident": "MX-0520", + "type": "small_airport", + "name": "El Bonito Airport", + "latitude_deg": "29.018056", + "longitude_deg": "-102.014444", + "elevation_ft": "4265", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no", + "local_code": "EBO" + }, + { + "id": "324251", + "ident": "MX-0521", + "type": "closed", + "name": "Dolores Airport", + "latitude_deg": "25.563105", + "longitude_deg": "-98.607593", + "elevation_ft": "492", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "General Teran", + "scheduled_service": "no", + "local_code": "DLD" + }, + { + "id": "324252", + "ident": "MX-0522", + "type": "small_airport", + "name": "Topila Airport", + "latitude_deg": "22.102013", + "longitude_deg": "-97.975933", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Tampico El Alto", + "scheduled_service": "no", + "local_code": "TOI" + }, + { + "id": "324253", + "ident": "MX-0523", + "type": "heliport", + "name": "Casa de Gobierno Tamaulipas Heliport", + "latitude_deg": "23.762275", + "longitude_deg": "-99.138064", + "elevation_ft": "1001", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Ciudad Victoria", + "scheduled_service": "no", + "local_code": "HGX" + }, + { + "id": "324254", + "ident": "MX-0524", + "type": "small_airport", + "name": "Mesa Loma Prieta Airport", + "latitude_deg": "23.763178", + "longitude_deg": "-98.74587", + "elevation_ft": "1148", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Casas", + "scheduled_service": "no", + "local_code": "JMV" + }, + { + "id": "324255", + "ident": "MX-0525", + "type": "small_airport", + "name": "El Duraznito Airstrip", + "latitude_deg": "27.538889", + "longitude_deg": "-108.681389", + "elevation_ft": "5023", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Chinipas", + "scheduled_service": "no", + "local_code": "DZN" + }, + { + "id": "324256", + "ident": "MX-0526", + "type": "small_airport", + "name": "El Blanquillo Airport", + "latitude_deg": "17.577833", + "longitude_deg": "-93.063", + "elevation_ft": "262", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Pichucalco", + "scheduled_service": "no", + "local_code": "EBC" + }, + { + "id": "324257", + "ident": "MX-0527", + "type": "small_airport", + "name": "Rancho El Pato Airport", + "latitude_deg": "28.193321", + "longitude_deg": "-101.555128", + "elevation_ft": "1801", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "San Juan de Sabinas", + "scheduled_service": "no", + "local_code": "RPA" + }, + { + "id": "324258", + "ident": "MX-0528", + "type": "small_airport", + "name": "Las Higueras Airport", + "latitude_deg": "21.818613", + "longitude_deg": "-104.521592", + "elevation_ft": "1476", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "El Nayar", + "scheduled_service": "no", + "local_code": "LSH" + }, + { + "id": "324259", + "ident": "MX-0529", + "type": "small_airport", + "name": "Higuera Gorda Airport", + "latitude_deg": "21.679373", + "longitude_deg": "-104.531888", + "elevation_ft": "1772", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "El Nayar", + "scheduled_service": "no", + "local_code": "HGO" + }, + { + "id": "324260", + "ident": "MX-0530", + "type": "small_airport", + "name": "La Encantada Airport", + "latitude_deg": "28.409801", + "longitude_deg": "-102.614401", + "elevation_ft": "4265", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ocampo", + "scheduled_service": "no", + "local_code": "ENT" + }, + { + "id": "324261", + "ident": "MX-0531", + "type": "heliport", + "name": "Corpo Santa Fe 505 Heliport", + "latitude_deg": "19.357995", + "longitude_deg": "-99.274123", + "elevation_ft": "8978", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuajimalpa", + "scheduled_service": "no", + "local_code": "HYC" + }, + { + "id": "324262", + "ident": "MX-0532", + "type": "heliport", + "name": "Opcion Santa Fe III Heliport", + "latitude_deg": "19.357481", + "longitude_deg": "-99.275128", + "elevation_ft": "8619", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuajimalpa", + "scheduled_service": "no", + "local_code": "HCF" + }, + { + "id": "324263", + "ident": "MX-0533", + "type": "small_airport", + "name": "Coahuila Strip", + "latitude_deg": "32.276763", + "longitude_deg": "-114.965679", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "San Luis Río Colorado", + "scheduled_service": "no", + "local_code": "PHA" + }, + { + "id": "324264", + "ident": "MX-0534", + "type": "small_airport", + "name": "Rancho BBB Airport", + "latitude_deg": "25.711499", + "longitude_deg": "-108.30648", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "BBB" + }, + { + "id": "324265", + "ident": "MX-0535", + "type": "small_airport", + "name": "Campo Montelargo Airport", + "latitude_deg": "24.9392", + "longitude_deg": "-107.864188", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Navolato", + "scheduled_service": "no", + "local_code": "MLR" + }, + { + "id": "324266", + "ident": "MX-0536", + "type": "small_airport", + "name": "Las Varas Airport", + "latitude_deg": "21.189617", + "longitude_deg": "-105.149591", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "Compostela", + "scheduled_service": "no", + "local_code": "VAS" + }, + { + "id": "324275", + "ident": "MX-0537", + "type": "small_airport", + "name": "Campo Berlin Airport", + "latitude_deg": "24.821968", + "longitude_deg": "-107.580246", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Navolato", + "scheduled_service": "no", + "local_code": "ACB" + }, + { + "id": "324276", + "ident": "MX-0538", + "type": "small_airport", + "name": "Rancho Cerro Blanco Airport", + "latitude_deg": "27.773338", + "longitude_deg": "-106.015214", + "elevation_ft": "5052", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Satevo", + "scheduled_service": "no", + "local_code": "RCW" + }, + { + "id": "324277", + "ident": "MX-0539", + "type": "small_airport", + "name": "Morris Airport", + "latitude_deg": "24.608317", + "longitude_deg": "-107.449834", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "MRI" + }, + { + "id": "324279", + "ident": "MX-0540", + "type": "small_airport", + "name": "Campo La Primavera Airport", + "latitude_deg": "24.714586", + "longitude_deg": "-107.415919", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "CPV" + }, + { + "id": "324280", + "ident": "MX-0541", + "type": "small_airport", + "name": "Loma Linda Airstrip", + "latitude_deg": "25.840642", + "longitude_deg": "-107.322625", + "elevation_ft": "2763", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "LNA" + }, + { + "id": "324281", + "ident": "MX-0542", + "type": "small_airport", + "name": "Bamopa Airport", + "latitude_deg": "25.527798", + "longitude_deg": "-107.296706", + "elevation_ft": "1496", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "BAM" + }, + { + "id": "324293", + "ident": "MX-0543", + "type": "small_airport", + "name": "La Perla Airport", + "latitude_deg": "24.719854", + "longitude_deg": "-107.540039", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Navolato", + "scheduled_service": "no", + "local_code": "PRL" + }, + { + "id": "324294", + "ident": "MX-0544", + "type": "small_airport", + "name": "La Providencia de Acapetahua Airport", + "latitude_deg": "15.286305", + "longitude_deg": "-92.749889", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Escuintla", + "scheduled_service": "no", + "local_code": "PRV" + }, + { + "id": "324295", + "ident": "MX-0545", + "type": "small_airport", + "name": "Los Lobos Airport", + "latitude_deg": "26.043294", + "longitude_deg": "-104.870018", + "elevation_ft": "6335", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Villa Hidalgo", + "scheduled_service": "no", + "local_code": "LBX" + }, + { + "id": "324296", + "ident": "MX-0546", + "type": "closed", + "name": "Santa Teresa Airport", + "latitude_deg": "22.495096", + "longitude_deg": "-104.771744", + "elevation_ft": "6650", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "El Nayar", + "scheduled_service": "no", + "local_code": "STJ" + }, + { + "id": "324297", + "ident": "MX-0547", + "type": "small_airport", + "name": "Las Salvias Airstrip", + "latitude_deg": "25.664613", + "longitude_deg": "-107.499709", + "elevation_ft": "2943", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacán", + "scheduled_service": "no", + "local_code": "SAL" + }, + { + "id": "324298", + "ident": "MX-0548", + "type": "small_airport", + "name": "El Capiro Airstrip", + "latitude_deg": "28.231169", + "longitude_deg": "-102.568148", + "elevation_ft": "4134", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ocampo", + "scheduled_service": "no", + "local_code": "CPG", + "keywords": "Rancho El Bufalo" + }, + { + "id": "324299", + "ident": "MX-0549", + "type": "small_airport", + "name": "Santa Anita del Yaqui Airport", + "latitude_deg": "27.312946", + "longitude_deg": "-109.881604", + "elevation_ft": "138", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cajeme", + "scheduled_service": "no", + "local_code": "SNY" + }, + { + "id": "324300", + "ident": "MX-0550", + "type": "small_airport", + "name": "Santa Barbara I Airport", + "latitude_deg": "27.476666", + "longitude_deg": "-109.979722", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cajeme", + "scheduled_service": "no", + "local_code": "STB" + }, + { + "id": "324301", + "ident": "MX-0551", + "type": "small_airport", + "name": "Atlixco Airport", + "latitude_deg": "18.850475", + "longitude_deg": "-98.447013", + "elevation_ft": "5755", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "Atlixco", + "scheduled_service": "no", + "local_code": "AOC", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aer%C3%B3dromo_de_Atlixco", + "keywords": "Acocotla" + }, + { + "id": "324302", + "ident": "MX-0552", + "type": "small_airport", + "name": "Dolores Nay Airport", + "latitude_deg": "22.349301", + "longitude_deg": "-104.949114", + "elevation_ft": "1575", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "El Nayar", + "scheduled_service": "no", + "local_code": "DNY" + }, + { + "id": "324303", + "ident": "MX-0553", + "type": "small_airport", + "name": "San Antonio El Russio Airport", + "latitude_deg": "27.521079", + "longitude_deg": "-100.800533", + "elevation_ft": "919", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Juárez", + "scheduled_service": "no", + "local_code": "SAW" + }, + { + "id": "324304", + "ident": "MX-0554", + "type": "small_airport", + "name": "Rancho El Salado Airstrip", + "latitude_deg": "29.639167", + "longitude_deg": "-101.759166", + "elevation_ft": "1565", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no", + "local_code": "RSX" + }, + { + "id": "324305", + "ident": "MX-0555", + "type": "small_airport", + "name": "Aerofumigaciones Sarabia Airport", + "latitude_deg": "24.872339", + "longitude_deg": "-107.487607", + "elevation_ft": "1312", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "El Limón de los Ramos", + "scheduled_service": "no", + "local_code": "ASB" + }, + { + "id": "324306", + "ident": "MX-0556", + "type": "small_airport", + "name": "Guamúchil Evora Airport", + "latitude_deg": "25.406723", + "longitude_deg": "-108.072245", + "elevation_ft": "236", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Salvador Alvarado", + "scheduled_service": "no", + "local_code": "EVO" + }, + { + "id": "324307", + "ident": "MX-0557", + "type": "small_airport", + "name": "La Pitaya Airport", + "latitude_deg": "27.20518", + "longitude_deg": "-100.600197", + "elevation_ft": "919", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Lampazos", + "scheduled_service": "no", + "local_code": "LPY" + }, + { + "id": "324308", + "ident": "MX-0558", + "type": "small_airport", + "name": "El Alamo Airport", + "latitude_deg": "29.097778", + "longitude_deg": "-101.189388", + "elevation_ft": "1421", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Jimenez", + "scheduled_service": "no", + "local_code": "EAU" + }, + { + "id": "324309", + "ident": "MX-0559", + "type": "small_airport", + "name": "Montemorelos Airport", + "latitude_deg": "25.145338", + "longitude_deg": "-99.844681", + "elevation_ft": "919", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Montemorelos", + "scheduled_service": "no", + "local_code": "MTM" + }, + { + "id": "324310", + "ident": "MX-0560", + "type": "small_airport", + "name": "Santa Cruz Airport", + "latitude_deg": "28.216379", + "longitude_deg": "-101.876637", + "elevation_ft": "2572", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Melchor Muzquiz", + "scheduled_service": "no", + "local_code": "SAX" + }, + { + "id": "325173", + "ident": "MX-0561", + "type": "small_airport", + "name": "Campo 107 Airport", + "latitude_deg": "28.798056", + "longitude_deg": "-107.0475", + "elevation_ft": "6598", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "CPI" + }, + { + "id": "325174", + "ident": "MX-0562", + "type": "small_airport", + "name": "Rancho La Margarita Airport", + "latitude_deg": "29.224167", + "longitude_deg": "-101.243611", + "elevation_ft": "1394", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no", + "local_code": "LMT" + }, + { + "id": "325175", + "ident": "MX-0563", + "type": "small_airport", + "name": "Rancho Las Pilas Airport", + "latitude_deg": "28.838333", + "longitude_deg": "-101.996667", + "elevation_ft": "3576", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Melchor Muzquiz", + "scheduled_service": "no", + "local_code": "RLI" + }, + { + "id": "325176", + "ident": "MX-0564", + "type": "small_airport", + "name": "El Carrizo Ahome Airport", + "latitude_deg": "26.263685", + "longitude_deg": "-109.048888", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Ahome", + "scheduled_service": "no", + "local_code": "CRH" + }, + { + "id": "325177", + "ident": "MX-0565", + "type": "small_airport", + "name": "Rancho El Infante Airport", + "latitude_deg": "28.764444", + "longitude_deg": "-101.935", + "elevation_ft": "3235", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Melchor Muzquiz", + "scheduled_service": "no", + "local_code": "EIF" + }, + { + "id": "325178", + "ident": "MX-0566", + "type": "small_airport", + "name": "Tampachiche Airport", + "latitude_deg": "21.981389", + "longitude_deg": "-97.716111", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Tampico El Alto", + "scheduled_service": "no", + "local_code": "THI" + }, + { + "id": "325179", + "ident": "MX-0567", + "type": "small_airport", + "name": "Rancho El Campanero Airport", + "latitude_deg": "27.028333", + "longitude_deg": "-100.383333", + "elevation_ft": "1017", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Lampazos de Naranjo", + "scheduled_service": "no", + "local_code": "RCN" + }, + { + "id": "325180", + "ident": "MX-0568", + "type": "heliport", + "name": "Plaza Insurgentes Sur (3) Heliport", + "latitude_deg": "19.352302", + "longitude_deg": "-99.187173", + "elevation_ft": "7782", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Alvaro Obregon", + "scheduled_service": "no", + "local_code": "HPE" + }, + { + "id": "325181", + "ident": "MX-0569", + "type": "small_airport", + "name": "C.P.A Jesus Ernesto Lozano Jimenez Airport", + "latitude_deg": "26.967253", + "longitude_deg": "-105.426192", + "elevation_ft": "5446", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Allende", + "scheduled_service": "no", + "local_code": "ELQ" + }, + { + "id": "325182", + "ident": "MX-0570", + "type": "small_airport", + "name": "Aeromar Airport", + "latitude_deg": "24.75709", + "longitude_deg": "-107.652073", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "General Ángel Flores", + "scheduled_service": "no", + "local_code": "ARM" + }, + { + "id": "325183", + "ident": "MX-0571", + "type": "heliport", + "name": "Organizacion Editorial Mexicana Heliport", + "latitude_deg": "19.438423", + "longitude_deg": "-99.159725", + "elevation_ft": "7391", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "HOE" + }, + { + "id": "325184", + "ident": "MX-0572", + "type": "heliport", + "name": "Centro Corporativo Santander Heliport", + "latitude_deg": "19.376051", + "longitude_deg": "-99.255873", + "elevation_ft": "8274", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Alvaro Obregon", + "scheduled_service": "no", + "local_code": "HCS" + }, + { + "id": "325186", + "ident": "MX-0573", + "type": "small_airport", + "name": "San Jose Airport", + "latitude_deg": "24.730507", + "longitude_deg": "-106.605687", + "elevation_ft": "1476", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "SJO" + }, + { + "id": "325187", + "ident": "MX-0574", + "type": "small_airport", + "name": "San Ignacio Airport", + "latitude_deg": "23.941039", + "longitude_deg": "-106.437371", + "elevation_ft": "492", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "San Ignacio", + "scheduled_service": "no", + "local_code": "SIG" + }, + { + "id": "325188", + "ident": "MX-0575", + "type": "small_airport", + "name": "La Coma Airport", + "latitude_deg": "23.041987", + "longitude_deg": "-98.107789", + "elevation_ft": "591", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Aldama", + "scheduled_service": "no", + "local_code": "LKA" + }, + { + "id": "325190", + "ident": "MX-0576", + "type": "small_airport", + "name": "San Rafael Airport", + "latitude_deg": "24.66745", + "longitude_deg": "-107.401428", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "SRY" + }, + { + "id": "325191", + "ident": "MX-0577", + "type": "small_airport", + "name": "Campo Diez Airport", + "latitude_deg": "28.738889", + "longitude_deg": "-106.928333", + "elevation_ft": "6499", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "CDI" + }, + { + "id": "325192", + "ident": "MX-0578", + "type": "small_airport", + "name": "El Vallado Airport", + "latitude_deg": "25.947874", + "longitude_deg": "-107.368445", + "elevation_ft": "2231", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "VLO" + }, + { + "id": "325193", + "ident": "MX-0579", + "type": "small_airport", + "name": "Los Veneros Airstrip", + "latitude_deg": "26.326111", + "longitude_deg": "-107.910556", + "elevation_ft": "5020", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Morelos", + "scheduled_service": "no", + "local_code": "VRS" + }, + { + "id": "325194", + "ident": "MX-0580", + "type": "small_airport", + "name": "Rancho Sierra Hermosa Airstrip", + "latitude_deg": "27.956056", + "longitude_deg": "-102.066555", + "elevation_ft": "3451", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "San Buenaventura", + "scheduled_service": "no", + "local_code": "RSH" + }, + { + "id": "325195", + "ident": "MX-0581", + "type": "small_airport", + "name": "Rancho de Burgos Airstrip", + "latitude_deg": "26.571449", + "longitude_deg": "-107.933854", + "elevation_ft": "5413", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Morelos", + "scheduled_service": "no", + "local_code": "RDB" + }, + { + "id": "325196", + "ident": "MX-0582", + "type": "heliport", + "name": "Park Plaza I Heliport", + "latitude_deg": "19.364642", + "longitude_deg": "-99.259665", + "elevation_ft": "8655", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuajimalpa", + "scheduled_service": "no", + "local_code": "HPD" + }, + { + "id": "325197", + "ident": "MX-0583", + "type": "small_airport", + "name": "Santiago de Los Caballeros Airstrip", + "latitude_deg": "25.557614", + "longitude_deg": "-107.366323", + "elevation_ft": "3215", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "SCS" + }, + { + "id": "325198", + "ident": "MX-0584", + "type": "small_airport", + "name": "Francisco Bruno Barrera Airport", + "latitude_deg": "26.083758", + "longitude_deg": "-99.599239", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Cerralvo", + "scheduled_service": "no", + "local_code": "FBB" + }, + { + "id": "325199", + "ident": "MX-0585", + "type": "small_airport", + "name": "Concheros Airport", + "latitude_deg": "25.777166", + "longitude_deg": "-108.850611", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "CON" + }, + { + "id": "325200", + "ident": "MX-0586", + "type": "small_airport", + "name": "La Piedad Airport", + "latitude_deg": "20.312778", + "longitude_deg": "-101.996111", + "elevation_ft": "5545", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "La Piedad", + "scheduled_service": "no", + "local_code": "LPD" + }, + { + "id": "325201", + "ident": "MX-0587", + "type": "heliport", + "name": "Fundicion Residencial Heliport", + "latitude_deg": "19.427458", + "longitude_deg": "-99.189286", + "elevation_ft": "7451", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HFU" + }, + { + "id": "325204", + "ident": "MX-0588", + "type": "closed", + "name": "Hermanos Rodriguez Airport", + "latitude_deg": "18.935", + "longitude_deg": "-103.954167", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COL", + "municipality": "Armeria", + "scheduled_service": "no", + "local_code": "RDZ" + }, + { + "id": "325216", + "ident": "MX-0589", + "type": "closed", + "name": "Carlos A Carrillo Airport", + "latitude_deg": "18.390305", + "longitude_deg": "-95.726691", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Cosamaloapan", + "scheduled_service": "no" + }, + { + "id": "325217", + "ident": "MX-0590", + "type": "small_airport", + "name": "Cerro Azul Airport", + "latitude_deg": "21.156879", + "longitude_deg": "-97.756401", + "elevation_ft": "463", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Cerro Azul", + "scheduled_service": "no" + }, + { + "id": "325218", + "ident": "MX-0591", + "type": "small_airport", + "name": "Chamela Airport", + "latitude_deg": "19.533333", + "longitude_deg": "-105.075278", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Chamela", + "scheduled_service": "no", + "local_code": "CHM" + }, + { + "id": "325219", + "ident": "MX-0592", + "type": "small_airport", + "name": "General Miguel Alemán Airport", + "latitude_deg": "18.209182", + "longitude_deg": "-96.091368", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Cosamaloapan", + "scheduled_service": "no", + "local_code": "AMV", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aer%C3%B3dromo_General_Miguel_Alem%C3%A1n", + "keywords": "MX22" + }, + { + "id": "325243", + "ident": "MX-0593", + "type": "small_airport", + "name": "El Gallito Airstrip", + "latitude_deg": "26.89451", + "longitude_deg": "-111.955771", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no", + "local_code": "GLL", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Gallito_Airstrip", + "keywords": "MX76" + }, + { + "id": "325252", + "ident": "MX-0594", + "type": "closed", + "name": "Ingeniero Fernando Espinoza Gutiérrez Airport", + "latitude_deg": "20.623719", + "longitude_deg": "-100.368867", + "elevation_ft": "6460", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-QUE", + "municipality": "Santiago de Querétaro", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ing._Fernando_Espinoza_Guti%C3%A9rrez_International_Airport", + "keywords": "QRO, MMQT" + }, + { + "id": "325259", + "ident": "MX-0595", + "type": "small_airport", + "name": "Ayuquila Airport", + "latitude_deg": "25.223621", + "longitude_deg": "-111.759541", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Comondú", + "scheduled_service": "no", + "local_code": "AYL" + }, + { + "id": "325265", + "ident": "MX-0596", + "type": "seaplane_base", + "name": "Paredes Seaplane Base", + "latitude_deg": "31.311", + "longitude_deg": "-113.552331", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Puerto Peñasco", + "scheduled_service": "no", + "local_code": "PDZ" + }, + { + "id": "325331", + "ident": "MX-0597", + "type": "heliport", + "name": "Reforma 211-213 Heliport", + "latitude_deg": "19.430405", + "longitude_deg": "-99.162178", + "elevation_ft": "7326", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuahutemoc", + "scheduled_service": "no", + "local_code": "HRA" + }, + { + "id": "326210", + "ident": "MX-0598", + "type": "small_airport", + "name": "Santa Catarina de Tepehuanes Airport", + "latitude_deg": "25.339002", + "longitude_deg": "-105.739309", + "elevation_ft": "6024", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Santa Catarina de Tepehuanes", + "scheduled_service": "no" + }, + { + "id": "326211", + "ident": "MX-0599", + "type": "small_airport", + "name": "Santiago Papasquiaro Airport", + "latitude_deg": "25.085305", + "longitude_deg": "-105.43466", + "elevation_ft": "5693", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Santiago Papasquiaro", + "scheduled_service": "no" + }, + { + "id": "326212", + "ident": "MX-0600", + "type": "small_airport", + "name": "Rodeo Airport", + "latitude_deg": "25.198203", + "longitude_deg": "-104.577223", + "elevation_ft": "4485", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Rodeo", + "scheduled_service": "no" + }, + { + "id": "326213", + "ident": "MX-0601", + "type": "heliport", + "name": "Prison 14 Helipad", + "latitude_deg": "25.828086", + "longitude_deg": "-103.542975", + "elevation_ft": "3626", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Bermejillo", + "scheduled_service": "no" + }, + { + "id": "326214", + "ident": "MX-0602", + "type": "heliport", + "name": "Prison 13 Helipad", + "latitude_deg": "16.383432", + "longitude_deg": "-96.591587", + "elevation_ft": "5186", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Monjas", + "scheduled_service": "no" + }, + { + "id": "326215", + "ident": "MX-0603", + "type": "heliport", + "name": "Prison 1 Helipad", + "latitude_deg": "19.421584", + "longitude_deg": "-99.750799", + "elevation_ft": "8524", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Toluca de Lerdo", + "scheduled_service": "no" + }, + { + "id": "326226", + "ident": "MX-0604", + "type": "small_airport", + "name": "Vascogil Airport", + "latitude_deg": "24.900937", + "longitude_deg": "-106.38515", + "elevation_ft": "3412", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Santiago Papasquiaro", + "scheduled_service": "no", + "local_code": "VGL" + }, + { + "id": "326227", + "ident": "MX-0605", + "type": "small_airport", + "name": "Cienega de Nuestra Señora Airport", + "latitude_deg": "25.065848", + "longitude_deg": "-106.327951", + "elevation_ft": "7999", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Santiago Papasquiaro", + "scheduled_service": "no", + "local_code": "CNE" + }, + { + "id": "326228", + "ident": "MX-0606", + "type": "small_airport", + "name": "San Miguel del Alto Durango Airport", + "latitude_deg": "24.84044", + "longitude_deg": "-106.394173", + "elevation_ft": "3278", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Santiago Papasquiaro", + "scheduled_service": "no", + "local_code": "SMD" + }, + { + "id": "326229", + "ident": "MX-0607", + "type": "small_airport", + "name": "El Guamuchil Airstrip", + "latitude_deg": "24.833722", + "longitude_deg": "-106.54809", + "elevation_ft": "771", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Santiago Papasquiaro", + "scheduled_service": "no", + "local_code": "EGM" + }, + { + "id": "326230", + "ident": "MX-0608", + "type": "small_airport", + "name": "Los Ayuches Airport", + "latitude_deg": "24.827912", + "longitude_deg": "-106.509962", + "elevation_ft": "1585", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Santiago Papasquiaro", + "scheduled_service": "no", + "local_code": "AYC" + }, + { + "id": "326231", + "ident": "MX-0609", + "type": "small_airport", + "name": "Las Cañas Airport", + "latitude_deg": "24.954544", + "longitude_deg": "-106.419465", + "elevation_ft": "1499", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Santiago Papasquiaro", + "scheduled_service": "no", + "local_code": "CNZ" + }, + { + "id": "326232", + "ident": "MX-0610", + "type": "small_airport", + "name": "San Diego Airport", + "latitude_deg": "24.894589", + "longitude_deg": "-106.119284", + "elevation_ft": "4501", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Santiago Papasquiaro", + "scheduled_service": "no", + "local_code": "DIH" + }, + { + "id": "326233", + "ident": "MX-0611", + "type": "small_airport", + "name": "Las Flores Airport", + "latitude_deg": "24.798599", + "longitude_deg": "-106.467681", + "elevation_ft": "1998", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Santiago Papasquiaro", + "scheduled_service": "no", + "local_code": "FLO" + }, + { + "id": "326234", + "ident": "MX-0612", + "type": "small_airport", + "name": "Soyupa Airport", + "latitude_deg": "24.797138", + "longitude_deg": "-106.3592", + "elevation_ft": "1680", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Santiago Papasquiaro", + "scheduled_service": "no", + "local_code": "SYU" + }, + { + "id": "326235", + "ident": "MX-0613", + "type": "small_airport", + "name": "San Juan Viejo Airstrip", + "latitude_deg": "24.841584", + "longitude_deg": "-106.442602", + "elevation_ft": "1870", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Santiago Papasquiaro", + "scheduled_service": "no", + "local_code": "SVI" + }, + { + "id": "326238", + "ident": "MX-0614", + "type": "small_airport", + "name": "Mina de Palmarejo Airport", + "latitude_deg": "27.382432", + "longitude_deg": "-108.408217", + "elevation_ft": "3701", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Chinipas de Almada", + "scheduled_service": "no", + "local_code": "MPJ" + }, + { + "id": "326239", + "ident": "MX-0615", + "type": "small_airport", + "name": "Sotolar Airport", + "latitude_deg": "24.952362", + "longitude_deg": "-99.616978", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Linares", + "scheduled_service": "no", + "local_code": "STO" + }, + { + "id": "326240", + "ident": "MX-0616", + "type": "heliport", + "name": "Hotel Palmas Heliport", + "latitude_deg": "19.027371", + "longitude_deg": "-98.229914", + "elevation_ft": "7041", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "San Andres Cholula", + "scheduled_service": "no", + "local_code": "HPH" + }, + { + "id": "326241", + "ident": "MX-0617", + "type": "small_airport", + "name": "Pacana Airport", + "latitude_deg": "20.611181", + "longitude_deg": "-103.819054", + "elevation_ft": "5381", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "San Martín de Hidalgo", + "scheduled_service": "no", + "local_code": "PCC" + }, + { + "id": "326242", + "ident": "MX-0618", + "type": "heliport", + "name": "The Westin Heliport", + "latitude_deg": "20.653306", + "longitude_deg": "-103.389431", + "elevation_ft": "5011", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Zapopan", + "scheduled_service": "no", + "local_code": "HWE" + }, + { + "id": "326243", + "ident": "MX-0619", + "type": "heliport", + "name": "Centro de Congresos Queretaro Heliport", + "latitude_deg": "20.577556", + "longitude_deg": "-100.347016", + "elevation_ft": "6612", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-QUE", + "municipality": "Queretaro", + "scheduled_service": "no", + "local_code": "HQO" + }, + { + "id": "326244", + "ident": "MX-0620", + "type": "heliport", + "name": "Governor's Heliport", + "latitude_deg": "20.624986", + "longitude_deg": "-100.367994", + "elevation_ft": "6490", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-QUE", + "municipality": "Queretaro", + "scheduled_service": "no", + "local_code": "HQU" + }, + { + "id": "326245", + "ident": "MX-0621", + "type": "heliport", + "name": "Eurocopter de México Heliport", + "latitude_deg": "20.623578", + "longitude_deg": "-100.170712", + "elevation_ft": "6260", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-QUE", + "municipality": "El Marquez", + "scheduled_service": "no", + "local_code": "HEC", + "keywords": "Airbus Helicopters" + }, + { + "id": "326412", + "ident": "MX-0622", + "type": "heliport", + "name": "Doctors Hospital Helipad", + "latitude_deg": "25.684117", + "longitude_deg": "-100.355942", + "elevation_ft": "2031", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Monterrey", + "scheduled_service": "no", + "local_code": "HHO" + }, + { + "id": "326413", + "ident": "MX-0623", + "type": "small_airport", + "name": "La Huerta Godoy Airport", + "latitude_deg": "24.721802", + "longitude_deg": "-107.785007", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Navolato", + "scheduled_service": "no", + "local_code": "LHG" + }, + { + "id": "326414", + "ident": "MX-0624", + "type": "small_airport", + "name": "Tarachi Airport", + "latitude_deg": "28.807181", + "longitude_deg": "-108.929022", + "elevation_ft": "4003", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Arivechi", + "scheduled_service": "no", + "local_code": "TAR" + }, + { + "id": "326416", + "ident": "MX-0625", + "type": "heliport", + "name": "Car One Gonzalitos Heliport", + "latitude_deg": "25.674393", + "longitude_deg": "-100.353388", + "elevation_ft": "1932", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Monterrey", + "scheduled_service": "no", + "local_code": "HGZ" + }, + { + "id": "326417", + "ident": "MX-0626", + "type": "small_airport", + "name": "Huerta Caimanero Airport", + "latitude_deg": "24.650429", + "longitude_deg": "-107.559395", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Licenciado Benito Juárez", + "scheduled_service": "no", + "local_code": "AHC" + }, + { + "id": "326418", + "ident": "MX-0627", + "type": "heliport", + "name": "Corporativo 261 Heliport", + "latitude_deg": "19.357411", + "longitude_deg": "-99.197744", + "elevation_ft": "8464", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Alvaro Obregon", + "scheduled_service": "no", + "local_code": "HHG" + }, + { + "id": "326419", + "ident": "MX-0628", + "type": "heliport", + "name": "Hospital General Ajusco Medio Helipad", + "latitude_deg": "19.272389", + "longitude_deg": "-99.207695", + "elevation_ft": "8592", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Tlalpan", + "scheduled_service": "no", + "local_code": "HAH" + }, + { + "id": "326420", + "ident": "MX-0629", + "type": "small_airport", + "name": "Los Cuates Airport", + "latitude_deg": "26.877293", + "longitude_deg": "-100.112166", + "elevation_ft": "732", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Lampazos de Naranjo", + "scheduled_service": "no", + "local_code": "LCT" + }, + { + "id": "326421", + "ident": "MX-0630", + "type": "heliport", + "name": "Torre Equss Norte Helipad", + "latitude_deg": "25.647391", + "longitude_deg": "-100.353819", + "elevation_ft": "2064", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Monterrey", + "scheduled_service": "no", + "local_code": "HHK" + }, + { + "id": "326422", + "ident": "MX-0631", + "type": "heliport", + "name": "Torre Equss Sur Helipad", + "latitude_deg": "25.646751", + "longitude_deg": "-100.353822", + "elevation_ft": "2064", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Monterrey", + "scheduled_service": "no", + "local_code": "HHJ" + }, + { + "id": "326423", + "ident": "MX-0632", + "type": "small_airport", + "name": "San Mateo Yucutindoo Airport", + "latitude_deg": "16.732864", + "longitude_deg": "-97.490938", + "elevation_ft": "3927", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Zapotitlan del Rio", + "scheduled_service": "no", + "local_code": "SMY" + }, + { + "id": "326424", + "ident": "MX-0633", + "type": "small_airport", + "name": "La Laguna Airport", + "latitude_deg": "16.537772", + "longitude_deg": "-97.479874", + "elevation_ft": "3475", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Santa Cruz Zenzontepec", + "scheduled_service": "no", + "local_code": "LLG" + }, + { + "id": "326425", + "ident": "MX-0634", + "type": "small_airport", + "name": "Pista del Centro", + "latitude_deg": "16.643715", + "longitude_deg": "-97.491992", + "elevation_ft": "5367", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Santiago Amoltepec", + "scheduled_service": "no", + "local_code": "PDC" + }, + { + "id": "326426", + "ident": "MX-0635", + "type": "small_airport", + "name": "Barranca Honda Airport", + "latitude_deg": "16.669065", + "longitude_deg": "-97.468485", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Santiago Amoltepec", + "scheduled_service": "no", + "local_code": "BAH" + }, + { + "id": "326427", + "ident": "MX-0636", + "type": "small_airport", + "name": "Francisco Sarabia Airport", + "latitude_deg": "23.928181", + "longitude_deg": "-104.580387", + "elevation_ft": "6234", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Durango", + "scheduled_service": "no", + "local_code": "FSA" + }, + { + "id": "326476", + "ident": "MX-0637", + "type": "small_airport", + "name": "El Retoño Airport", + "latitude_deg": "23.691111", + "longitude_deg": "-98.371389", + "elevation_ft": "866", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "RTO" + }, + { + "id": "326477", + "ident": "MX-0638", + "type": "small_airport", + "name": "Mesa Tortugas Airstrip", + "latitude_deg": "24.740639", + "longitude_deg": "-106.166856", + "elevation_ft": "6178", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Otáez", + "scheduled_service": "no", + "local_code": "MST" + }, + { + "id": "326478", + "ident": "MX-0639", + "type": "heliport", + "name": "Hospital Angeles del Carmen Helipad", + "latitude_deg": "20.680883", + "longitude_deg": "-103.399016", + "elevation_ft": "5387", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Guadalajara", + "scheduled_service": "no", + "local_code": "HGH" + }, + { + "id": "326479", + "ident": "MX-0640", + "type": "heliport", + "name": "Camino Real México Heliport", + "latitude_deg": "19.428945", + "longitude_deg": "-99.178844", + "elevation_ft": "7723", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HHR" + }, + { + "id": "326480", + "ident": "MX-0641", + "type": "small_airport", + "name": "Cerros Colorados Airport", + "latitude_deg": "25.792674", + "longitude_deg": "-104.330372", + "elevation_ft": "5840", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "San Pedro del Gallo", + "scheduled_service": "no", + "local_code": "CEC" + }, + { + "id": "326481", + "ident": "MX-0642", + "type": "small_airport", + "name": "El Cuervo Airport", + "latitude_deg": "27.571972", + "longitude_deg": "-100.297778", + "elevation_ft": "787", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Anahuac", + "scheduled_service": "no", + "local_code": "JGT" + }, + { + "id": "326482", + "ident": "MX-0643", + "type": "small_airport", + "name": "Los Pinitos Airport", + "latitude_deg": "25.66475", + "longitude_deg": "-108.513233", + "elevation_ft": "344", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "LPN" + }, + { + "id": "326484", + "ident": "MX-0644", + "type": "small_airport", + "name": "Rancho de Lauro Airstrip", + "latitude_deg": "25.762131", + "longitude_deg": "-107.057514", + "elevation_ft": "6102", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "DLA" + }, + { + "id": "326485", + "ident": "MX-0645", + "type": "heliport", + "name": "Hospital Cima Helipad", + "latitude_deg": "28.629832", + "longitude_deg": "-106.124904", + "elevation_ft": "5085", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Chihuahua", + "scheduled_service": "no", + "local_code": "HDD" + }, + { + "id": "326486", + "ident": "MX-0646", + "type": "heliport", + "name": "Interlomas Motors Helipad", + "latitude_deg": "19.400289", + "longitude_deg": "-99.272697", + "elevation_ft": "8186", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Huixquilucan", + "scheduled_service": "no", + "local_code": "HIF" + }, + { + "id": "326487", + "ident": "MX-0647", + "type": "small_airport", + "name": "Lorenzos de Baja Airport", + "latitude_deg": "30.4895", + "longitude_deg": "-115.977806", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "LZB" + }, + { + "id": "326488", + "ident": "MX-0648", + "type": "heliport", + "name": "Holiday Inn Express Puebla Helipad", + "latitude_deg": "19.059421", + "longitude_deg": "-98.220343", + "elevation_ft": "7139", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "Puebla", + "scheduled_service": "no", + "local_code": "HHI" + }, + { + "id": "326489", + "ident": "MX-0649", + "type": "heliport", + "name": "Villa Angeles Heliport", + "latitude_deg": "16.832014", + "longitude_deg": "-99.864421", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Acapulco", + "scheduled_service": "no", + "local_code": "HVB" + }, + { + "id": "326490", + "ident": "MX-0650", + "type": "small_airport", + "name": "Alicitos de Olivas Airstrip", + "latitude_deg": "26.184986", + "longitude_deg": "-107.279808", + "elevation_ft": "3150", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "AAT" + }, + { + "id": "326594", + "ident": "MX-0651", + "type": "heliport", + "name": "Torre Acuario Heliport", + "latitude_deg": "19.364445", + "longitude_deg": "-99.260916", + "elevation_ft": "8530", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuajimalpa", + "scheduled_service": "no", + "local_code": "HTA" + }, + { + "id": "326595", + "ident": "MX-0652", + "type": "heliport", + "name": "Hospital Angeles de Tijuana Heliport", + "latitude_deg": "32.517911", + "longitude_deg": "-117.008296", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Tijuana", + "scheduled_service": "no", + "local_code": "HHB" + }, + { + "id": "326597", + "ident": "MX-0653", + "type": "heliport", + "name": "HSBC Heliport", + "latitude_deg": "19.427771", + "longitude_deg": "-99.168641", + "elevation_ft": "7841", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "HIT" + }, + { + "id": "326598", + "ident": "MX-0654", + "type": "heliport", + "name": "Hospital San José Heliport", + "latitude_deg": "20.672616", + "longitude_deg": "-103.409207", + "elevation_ft": "5269", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Zapopan", + "scheduled_service": "no", + "local_code": "HHS" + }, + { + "id": "326599", + "ident": "MX-0655", + "type": "heliport", + "name": "Torre Banorte Heliport", + "latitude_deg": "19.357803", + "longitude_deg": "-99.274419", + "elevation_ft": "8953", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuajimalpa", + "scheduled_service": "no", + "local_code": "HMB" + }, + { + "id": "326600", + "ident": "MX-0656", + "type": "heliport", + "name": "Tlatelolco II Heliport", + "latitude_deg": "19.433636", + "longitude_deg": "-99.14412", + "elevation_ft": "7710", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "HIY" + }, + { + "id": "326601", + "ident": "MX-0657", + "type": "heliport", + "name": "Triangulo Las Animas Heliport", + "latitude_deg": "19.04336", + "longitude_deg": "-98.233921", + "elevation_ft": "7171", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "Puebla", + "scheduled_service": "no", + "local_code": "HAQ" + }, + { + "id": "326602", + "ident": "MX-0658", + "type": "small_airport", + "name": "La Esperanza Airport", + "latitude_deg": "25.530349", + "longitude_deg": "-103.295785", + "elevation_ft": "3658", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Matamoros", + "scheduled_service": "no", + "local_code": "EPZ" + }, + { + "id": "326603", + "ident": "MX-0659", + "type": "heliport", + "name": "El Cortijo Heliport", + "latitude_deg": "19.402732", + "longitude_deg": "-99.276972", + "elevation_ft": "8163", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Huixquilucan", + "scheduled_service": "no", + "local_code": "HJO" + }, + { + "id": "326604", + "ident": "MX-0660", + "type": "heliport", + "name": "Hospital General de Teziutlan Heliport", + "latitude_deg": "19.821944", + "longitude_deg": "-97.376916", + "elevation_ft": "6302", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "Teziutlan", + "scheduled_service": "no", + "local_code": "HUQ" + }, + { + "id": "326605", + "ident": "MX-0661", + "type": "heliport", + "name": "Complejo Medico Del Sur Heliport", + "latitude_deg": "18.984611", + "longitude_deg": "-98.242027", + "elevation_ft": "6982", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "Puebla", + "scheduled_service": "no", + "local_code": "HUO" + }, + { + "id": "326606", + "ident": "MX-0662", + "type": "heliport", + "name": "One O One Heliport", + "latitude_deg": "19.359167", + "longitude_deg": "-99.279083", + "elevation_ft": "8835", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuajimalpa", + "scheduled_service": "no", + "local_code": "HBJ" + }, + { + "id": "326607", + "ident": "MX-0663", + "type": "small_airport", + "name": "Llano Grande Airport", + "latitude_deg": "16.297562", + "longitude_deg": "-94.164531", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "San Pedro Tapanatepec", + "scheduled_service": "no", + "local_code": "LGR" + }, + { + "id": "326608", + "ident": "MX-0664", + "type": "small_airport", + "name": "El Charco Airport", + "latitude_deg": "28.391899", + "longitude_deg": "-106.208992", + "elevation_ft": "5748", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Chihuahua", + "scheduled_service": "no", + "local_code": "SCH" + }, + { + "id": "326609", + "ident": "MX-0665", + "type": "heliport", + "name": "Reforma Latino Heliport", + "latitude_deg": "19.427335", + "longitude_deg": "-99.165401", + "elevation_ft": "7946", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "HLR" + }, + { + "id": "326614", + "ident": "MX-0666", + "type": "heliport", + "name": "Casa Marlin Heliport", + "latitude_deg": "16.809624", + "longitude_deg": "-99.839753", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Acapulco", + "scheduled_service": "no", + "local_code": "HVG" + }, + { + "id": "326615", + "ident": "MX-0667", + "type": "small_airport", + "name": "Terrero Airstrip", + "latitude_deg": "25.675318", + "longitude_deg": "-107.646194", + "elevation_ft": "1936", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Mocorito", + "scheduled_service": "no", + "local_code": "TRO" + }, + { + "id": "326617", + "ident": "MX-0668", + "type": "small_airport", + "name": "El Cortijo de Guanetipa Airstrip", + "latitude_deg": "25.27639", + "longitude_deg": "-107.180162", + "elevation_ft": "4331", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "EDG" + }, + { + "id": "327192", + "ident": "MX-0669", + "type": "heliport", + "name": "Hospital de Traumatologia y Ortopedia Heliport", + "latitude_deg": "19.086501", + "longitude_deg": "-98.198674", + "elevation_ft": "7274", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "Puebla", + "scheduled_service": "no", + "local_code": "HUN" + }, + { + "id": "327193", + "ident": "MX-0670", + "type": "heliport", + "name": "Rey de Plata Heliport", + "latitude_deg": "18.311135", + "longitude_deg": "-99.930071", + "elevation_ft": "4039", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Teloloapan", + "scheduled_service": "no", + "local_code": "HRU" + }, + { + "id": "327195", + "ident": "MX-0671", + "type": "heliport", + "name": "Acapulco General Hospital Heliport", + "latitude_deg": "16.930778", + "longitude_deg": "-99.820689", + "elevation_ft": "87", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Acapulco", + "scheduled_service": "no", + "local_code": "HHU" + }, + { + "id": "327197", + "ident": "MX-0672", + "type": "heliport", + "name": "Minerales Inguaran Heliport", + "latitude_deg": "20.557339", + "longitude_deg": "-100.484461", + "elevation_ft": "6047", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-QUE", + "municipality": "Corregidora", + "scheduled_service": "no", + "local_code": "HIU" + }, + { + "id": "327198", + "ident": "MX-0673", + "type": "small_airport", + "name": "Herradura de La Villita Airport", + "latitude_deg": "24.813283", + "longitude_deg": "-107.278964", + "elevation_ft": "243", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "LVA" + }, + { + "id": "327569", + "ident": "MX-0674", + "type": "small_airport", + "name": "La Campanera Airport", + "latitude_deg": "24.94838", + "longitude_deg": "-107.469321", + "elevation_ft": "344", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "SBL" + }, + { + "id": "327570", + "ident": "MX-0675", + "type": "small_airport", + "name": "Las Brisas Airport", + "latitude_deg": "25.485411", + "longitude_deg": "-108.247925", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "BGA" + }, + { + "id": "327792", + "ident": "MX-0676", + "type": "small_airport", + "name": "Harpe Airport", + "latitude_deg": "30.132725", + "longitude_deg": "-106.408644", + "elevation_ft": "4698", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Villa Ahumada", + "scheduled_service": "no", + "local_code": "ARP" + }, + { + "id": "327793", + "ident": "MX-0677", + "type": "heliport", + "name": "GPM Aeroservicio Toluca Heliport", + "latitude_deg": "19.337221", + "longitude_deg": "-99.590443", + "elevation_ft": "8514", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "San Mateo Otzacatipan", + "scheduled_service": "no", + "local_code": "HRG" + }, + { + "id": "327794", + "ident": "MX-0678", + "type": "small_airport", + "name": "La Rosca Airport", + "latitude_deg": "25.403452", + "longitude_deg": "-108.121214", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Angostura", + "scheduled_service": "no", + "local_code": "ROS" + }, + { + "id": "327795", + "ident": "MX-0679", + "type": "seaplane_base", + "name": "Isla de La Pasion Seaplane Base", + "latitude_deg": "20.543472", + "longitude_deg": "-86.867778", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Cozumel", + "scheduled_service": "no", + "local_code": "ILP" + }, + { + "id": "327796", + "ident": "MX-0680", + "type": "small_airport", + "name": "Bodegas Generales del Campo Airport", + "latitude_deg": "28.775415", + "longitude_deg": "-107.087487", + "elevation_ft": "6637", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "BGC" + }, + { + "id": "327797", + "ident": "MX-0681", + "type": "small_airport", + "name": "El Cachorro Airport", + "latitude_deg": "27.524145", + "longitude_deg": "-105.34933", + "elevation_ft": "4340", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Camargo", + "scheduled_service": "no", + "local_code": "CHO" + }, + { + "id": "327971", + "ident": "MX-0682", + "type": "heliport", + "name": "Torre Diana Heliport", + "latitude_deg": "19.426659", + "longitude_deg": "-99.171773", + "elevation_ft": "7854", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuahutemoc", + "scheduled_service": "no", + "local_code": "HDI" + }, + { + "id": "327972", + "ident": "MX-0683", + "type": "heliport", + "name": "Inecol Heliport", + "latitude_deg": "19.512319", + "longitude_deg": "-96.945087", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Jalapa", + "scheduled_service": "no", + "local_code": "HLL" + }, + { + "id": "327973", + "ident": "MX-0684", + "type": "small_airport", + "name": "Carboneras Airstrip", + "latitude_deg": "24.767389", + "longitude_deg": "-107.232539", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "BCB" + }, + { + "id": "327974", + "ident": "MX-0685", + "type": "heliport", + "name": "Cantarell II Platform Helipad", + "latitude_deg": "18.501817", + "longitude_deg": "-93.520564", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Villahermosa", + "scheduled_service": "yes", + "local_code": "HRS" + }, + { + "id": "327975", + "ident": "MX-0686", + "type": "heliport", + "name": "Cantarell I Platform Helipad", + "latitude_deg": "18.69515", + "longitude_deg": "-93.332928", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Villahermosa", + "scheduled_service": "no", + "local_code": "HRR" + }, + { + "id": "327976", + "ident": "MX-0687", + "type": "small_airport", + "name": "Agricola La Tuxcana Airport", + "latitude_deg": "19.729351", + "longitude_deg": "-103.977854", + "elevation_ft": "2858", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Tuxcacuesco", + "scheduled_service": "yes", + "local_code": "TUX" + }, + { + "id": "327977", + "ident": "MX-0688", + "type": "small_airport", + "name": "Carbonera Airport", + "latitude_deg": "24.762537", + "longitude_deg": "-107.214607", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "CAR" + }, + { + "id": "327978", + "ident": "MX-0689", + "type": "heliport", + "name": "Parque Toreo III Heliport", + "latitude_deg": "19.454586", + "longitude_deg": "-99.218205", + "elevation_ft": "7838", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Naucalpan", + "scheduled_service": "no", + "local_code": "HLY" + }, + { + "id": "327979", + "ident": "MX-0690", + "type": "heliport", + "name": "Parque Toreo I Heliport", + "latitude_deg": "19.455612", + "longitude_deg": "-99.219321", + "elevation_ft": "7959", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Naucalpan", + "scheduled_service": "no", + "local_code": "HLX" + }, + { + "id": "327980", + "ident": "MX-0691", + "type": "small_airport", + "name": "Comitan Airport", + "latitude_deg": "16.267719", + "longitude_deg": "-92.081566", + "elevation_ft": "5364", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Comitán", + "scheduled_service": "no", + "local_code": "COM" + }, + { + "id": "327981", + "ident": "MX-0692", + "type": "small_airport", + "name": "Mi Ranchito Airport", + "latitude_deg": "24.887225", + "longitude_deg": "-107.646183", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "MRT" + }, + { + "id": "327982", + "ident": "MX-0693", + "type": "heliport", + "name": "Guerrero State Government Center Heliport", + "latitude_deg": "16.855763", + "longitude_deg": "-99.897585", + "elevation_ft": "108", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Acapulco", + "scheduled_service": "no", + "local_code": "HFS" + }, + { + "id": "327983", + "ident": "MX-0694", + "type": "heliport", + "name": "Altia Heliport", + "latitude_deg": "17.990125", + "longitude_deg": "-92.963934", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Villahermosa", + "scheduled_service": "no", + "local_code": "HIO" + }, + { + "id": "327984", + "ident": "MX-0695", + "type": "small_airport", + "name": "Rancho Carretas Airstrip", + "latitude_deg": "30.653311", + "longitude_deg": "-108.790358", + "elevation_ft": "5095", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Janos", + "scheduled_service": "no", + "local_code": "RCR" + }, + { + "id": "327985", + "ident": "MX-0696", + "type": "small_airport", + "name": "El Burro Airport", + "latitude_deg": "30.547444", + "longitude_deg": "-106.164028", + "elevation_ft": "4301", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Villa Ahumada", + "scheduled_service": "no", + "local_code": "CAB" + }, + { + "id": "327986", + "ident": "MX-0697", + "type": "small_airport", + "name": "Rancho Santa Anita Airport", + "latitude_deg": "30.864844", + "longitude_deg": "-108.751778", + "elevation_ft": "4721", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Janos", + "scheduled_service": "no", + "local_code": "PSA" + }, + { + "id": "327987", + "ident": "MX-0698", + "type": "small_airport", + "name": "Santa Ema Airport", + "latitude_deg": "28.72777", + "longitude_deg": "-105.98844", + "elevation_ft": "3944", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Chihuahua", + "scheduled_service": "no", + "local_code": "EME" + }, + { + "id": "327988", + "ident": "MX-0699", + "type": "heliport", + "name": "La Viga Heliport", + "latitude_deg": "19.379666", + "longitude_deg": "-99.121461", + "elevation_ft": "7520", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Iztapalapa", + "scheduled_service": "no", + "local_code": "HVD" + }, + { + "id": "327989", + "ident": "MX-0700", + "type": "small_airport", + "name": "Rancho Los Jabines Airport", + "latitude_deg": "19.099666", + "longitude_deg": "-90.335201", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Champoton", + "scheduled_service": "no", + "local_code": "JAB" + }, + { + "id": "327991", + "ident": "MX-0701", + "type": "heliport", + "name": "Casa Nayaá Heliport", + "latitude_deg": "18.703868", + "longitude_deg": "-99.488478", + "elevation_ft": "3953", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Pilcaya", + "scheduled_service": "no", + "local_code": "HAY" + }, + { + "id": "327993", + "ident": "MX-0702", + "type": "heliport", + "name": "La Viña Heliport", + "latitude_deg": "19.675769", + "longitude_deg": "-101.204954", + "elevation_ft": "6384", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Morelia", + "scheduled_service": "no", + "local_code": "HVV" + }, + { + "id": "327994", + "ident": "MX-0703", + "type": "small_airport", + "name": "Nayarit Airport", + "latitude_deg": "19.206778", + "longitude_deg": "-90.301428", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Champoton", + "scheduled_service": "no", + "local_code": "NAY" + }, + { + "id": "327996", + "ident": "MX-0704", + "type": "heliport", + "name": "JV Nuevo León Heliport", + "latitude_deg": "19.403931", + "longitude_deg": "-99.170963", + "elevation_ft": "7434", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "HIK" + }, + { + "id": "327997", + "ident": "MX-0705", + "type": "heliport", + "name": "Itam Naval Militar Heliport", + "latitude_deg": "19.343681", + "longitude_deg": "-99.202069", + "elevation_ft": "7664", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Itam Naval Militar", + "scheduled_service": "no", + "local_code": "HJN" + }, + { + "id": "327999", + "ident": "MX-0706", + "type": "small_airport", + "name": "Mina La India Airport", + "latitude_deg": "28.725028", + "longitude_deg": "-108.886918", + "elevation_ft": "5577", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Sahuaripa", + "scheduled_service": "no", + "local_code": "MLI" + }, + { + "id": "328255", + "ident": "MX-0707", + "type": "heliport", + "name": "Fuente Bella Heliport", + "latitude_deg": "19.310564", + "longitude_deg": "-99.219605", + "elevation_ft": "8123", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Tlalpan", + "scheduled_service": "no", + "local_code": "HFL" + }, + { + "id": "328256", + "ident": "MX-0708", + "type": "heliport", + "name": "Corpofe Heliport", + "latitude_deg": "19.366764", + "longitude_deg": "-99.262233", + "elevation_ft": "8517", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Alvaro Obregon", + "scheduled_service": "no", + "local_code": "HFF" + }, + { + "id": "328257", + "ident": "MX-0709", + "type": "small_airport", + "name": "Arroyo Verde Airstrip", + "latitude_deg": "26.445208", + "longitude_deg": "-107.440052", + "elevation_ft": "5823", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "ARV" + }, + { + "id": "328258", + "ident": "MX-0710", + "type": "small_airport", + "name": "Tierra Floja Airport", + "latitude_deg": "26.456239", + "longitude_deg": "-107.377433", + "elevation_ft": "7592", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "TFL" + }, + { + "id": "328259", + "ident": "MX-0711", + "type": "heliport", + "name": "Centro de Negocios Toluca Heliport", + "latitude_deg": "19.279787", + "longitude_deg": "-99.607697", + "elevation_ft": "8648", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Toluca", + "scheduled_service": "no", + "local_code": "HNG" + }, + { + "id": "328260", + "ident": "MX-0712", + "type": "heliport", + "name": "Torre Virreyes Heliport", + "latitude_deg": "19.42492", + "longitude_deg": "-99.203155", + "elevation_ft": "7877", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HVY" + }, + { + "id": "328261", + "ident": "MX-0713", + "type": "small_airport", + "name": "Algodonera del Oasis Airstrip", + "latitude_deg": "28.939497", + "longitude_deg": "-104.644612", + "elevation_ft": "3944", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ojinaga", + "scheduled_service": "no", + "local_code": "AGO" + }, + { + "id": "328262", + "ident": "MX-0714", + "type": "heliport", + "name": "Desarrollo Patrimonial City Heliport", + "latitude_deg": "19.027828", + "longitude_deg": "-98.235799", + "elevation_ft": "7152", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "San Andres Cholula", + "scheduled_service": "no", + "local_code": "HDP" + }, + { + "id": "328263", + "ident": "MX-0715", + "type": "heliport", + "name": "Grupo Imagen Heliport", + "latitude_deg": "19.3384", + "longitude_deg": "-99.182172", + "elevation_ft": "7520", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Coyoacan", + "scheduled_service": "no", + "local_code": "HHW" + }, + { + "id": "328264", + "ident": "MX-0716", + "type": "heliport", + "name": "Jalmolonga Heliport", + "latitude_deg": "18.91547", + "longitude_deg": "-99.49497", + "elevation_ft": "5033", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Malinalco", + "scheduled_service": "no", + "local_code": "HJP" + }, + { + "id": "328265", + "ident": "MX-0717", + "type": "small_airport", + "name": "El Nopal Airport", + "latitude_deg": "23.173322", + "longitude_deg": "-98.113525", + "elevation_ft": "817", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Aldama", + "scheduled_service": "no", + "local_code": "RYO" + }, + { + "id": "328266", + "ident": "MX-0718", + "type": "small_airport", + "name": "La Nueva Gloria Airport", + "latitude_deg": "22.692388", + "longitude_deg": "-98.227722", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Aldama", + "scheduled_service": "no", + "local_code": "LNG" + }, + { + "id": "328267", + "ident": "MX-0719", + "type": "heliport", + "name": "El Financiero Heliport", + "latitude_deg": "19.303674", + "longitude_deg": "-99.201274", + "elevation_ft": "7874", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Tlalpan", + "scheduled_service": "no", + "local_code": "HEL" + }, + { + "id": "328268", + "ident": "MX-0720", + "type": "heliport", + "name": "Corporativo Santa Fe Heliport", + "latitude_deg": "19.358603", + "longitude_deg": "-99.278556", + "elevation_ft": "8907", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuajimalpa", + "scheduled_service": "no", + "local_code": "HDA" + }, + { + "id": "328269", + "ident": "MX-0721", + "type": "small_airport", + "name": "El Retorno Airport", + "latitude_deg": "26.784837", + "longitude_deg": "-99.307085", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Guerrero", + "scheduled_service": "no", + "local_code": "ERT" + }, + { + "id": "328270", + "ident": "MX-0722", + "type": "heliport", + "name": "Hospital Star Medica Queretaro Heliport", + "latitude_deg": "20.617332", + "longitude_deg": "-100.407158", + "elevation_ft": "6129", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-QUE", + "municipality": "Querétaro", + "scheduled_service": "no", + "local_code": "HSU" + }, + { + "id": "328271", + "ident": "MX-0723", + "type": "heliport", + "name": "Espacio Santa Fe Heliport", + "latitude_deg": "19.363028", + "longitude_deg": "-99.2815", + "elevation_ft": "9108", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuajimalpa", + "scheduled_service": "no", + "local_code": "HEI" + }, + { + "id": "328272", + "ident": "MX-0724", + "type": "heliport", + "name": "Plaza Antair Heliport", + "latitude_deg": "28.508733", + "longitude_deg": "-100.703919", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Piedras Negras", + "scheduled_service": "no", + "local_code": "HNI" + }, + { + "id": "328273", + "ident": "MX-0725", + "type": "small_airport", + "name": "La Esperanza Airport", + "latitude_deg": "25.354368", + "longitude_deg": "-108.2187", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Angostura", + "scheduled_service": "no", + "local_code": "LAE" + }, + { + "id": "328274", + "ident": "MX-0726", + "type": "small_airport", + "name": "Aerofumigaciones El Primo Airport", + "latitude_deg": "22.748998", + "longitude_deg": "-98.411585", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Gonzalez", + "scheduled_service": "no", + "local_code": "AEP" + }, + { + "id": "328275", + "ident": "MX-0727", + "type": "small_airport", + "name": "Aerofumigaciones Puerto Rico Airport", + "latitude_deg": "24.728997", + "longitude_deg": "-107.680568", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Navolato", + "scheduled_service": "no", + "local_code": "APR" + }, + { + "id": "328276", + "ident": "MX-0728", + "type": "heliport", + "name": "Hospital Cordoba Heliport", + "latitude_deg": "18.897115", + "longitude_deg": "-96.942686", + "elevation_ft": "3028", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Cordoba", + "scheduled_service": "no", + "local_code": "HHC" + }, + { + "id": "328277", + "ident": "MX-0729", + "type": "small_airport", + "name": "El Mezquite Rojo Airport", + "latitude_deg": "25.057181", + "longitude_deg": "-97.742385", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "San Fernando", + "scheduled_service": "no", + "local_code": "MWS" + }, + { + "id": "328278", + "ident": "MX-0730", + "type": "small_airport", + "name": "Cap. Juan de Dios Ortiz Airfield", + "latitude_deg": "19.702357", + "longitude_deg": "-98.811452", + "elevation_ft": "7582", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "San Matín de Las Pirámides", + "scheduled_service": "no", + "local_code": "JDO" + }, + { + "id": "328279", + "ident": "MX-0731", + "type": "small_airport", + "name": "C.P.A. Roberto Nevarez Dominguez Airport", + "latitude_deg": "18.793401", + "longitude_deg": "-103.786115", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COL", + "municipality": "Tecomán", + "scheduled_service": "no", + "local_code": "RNZ" + }, + { + "id": "328280", + "ident": "MX-0732", + "type": "heliport", + "name": "Real del Monte Heliport", + "latitude_deg": "20.137842", + "longitude_deg": "-98.729175", + "elevation_ft": "8005", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-HID", + "municipality": "Pachuca", + "scheduled_service": "no", + "local_code": "HRM" + }, + { + "id": "328281", + "ident": "MX-0733", + "type": "small_airport", + "name": "Campo Sonora Airstrip", + "latitude_deg": "28.089865", + "longitude_deg": "-110.534182", + "elevation_ft": "233", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Guaymas", + "scheduled_service": "no", + "local_code": "CSA" + }, + { + "id": "328282", + "ident": "MX-0734", + "type": "small_airport", + "name": "El Pozo Airport", + "latitude_deg": "24.921469", + "longitude_deg": "-107.256425", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacán", + "scheduled_service": "no", + "local_code": "PZO" + }, + { + "id": "328283", + "ident": "MX-0735", + "type": "heliport", + "name": "Centro Tecnologico Heliport", + "latitude_deg": "19.543493", + "longitude_deg": "-99.275021", + "elevation_ft": "7871", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Atizapán de Zaragoza", + "scheduled_service": "no", + "local_code": "HLF" + }, + { + "id": "328352", + "ident": "MX-0736", + "type": "heliport", + "name": "Dirección de Seguridad Pública Municipal Heliport", + "latitude_deg": "32.609342", + "longitude_deg": "-115.477417", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "HDM" + }, + { + "id": "328353", + "ident": "MX-0737", + "type": "small_airport", + "name": "Huachinera Airport", + "latitude_deg": "30.206291", + "longitude_deg": "-108.950653", + "elevation_ft": "3701", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Huachinera", + "scheduled_service": "no", + "local_code": "PHU", + "keywords": "Pista Huachinera" + }, + { + "id": "328354", + "ident": "MX-0738", + "type": "heliport", + "name": "Helipuerto Montemayor", + "latitude_deg": "25.670483", + "longitude_deg": "-100.390233", + "elevation_ft": "1988", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "San Pedro Garza Garcia", + "scheduled_service": "no", + "local_code": "HCN" + }, + { + "id": "328355", + "ident": "MX-0739", + "type": "small_airport", + "name": "Vientos de la Vega Airport", + "latitude_deg": "20.605191", + "longitude_deg": "-103.839562", + "elevation_ft": "4160", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Teuchitlán", + "scheduled_service": "no", + "local_code": "PVW", + "keywords": "VW Airport" + }, + { + "id": "328356", + "ident": "MX-0740", + "type": "small_airport", + "name": "La Gloria de Coahuila Airport", + "latitude_deg": "28.057181", + "longitude_deg": "-100.491992", + "elevation_ft": "984", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Guerrero", + "scheduled_service": "no", + "local_code": "LGA" + }, + { + "id": "328625", + "ident": "MX-0741", + "type": "small_airport", + "name": "Las Encantadas Airstrip", + "latitude_deg": "29.909806", + "longitude_deg": "-114.467944", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "END" + }, + { + "id": "328626", + "ident": "MX-0742", + "type": "small_airport", + "name": "Las Macayas Airport", + "latitude_deg": "18.293941", + "longitude_deg": "-96.194465", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Tres Valles", + "scheduled_service": "no", + "local_code": "LMV" + }, + { + "id": "328628", + "ident": "MX-0743", + "type": "small_airport", + "name": "Las Ilusiones Airport", + "latitude_deg": "24.730306", + "longitude_deg": "-107.544722", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Navolato", + "scheduled_service": "no", + "local_code": "LIL" + }, + { + "id": "328629", + "ident": "MX-0744", + "type": "small_airport", + "name": "Tres Amigos de Guerrero Airport", + "latitude_deg": "28.02375", + "longitude_deg": "-100.434713", + "elevation_ft": "951", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COL", + "municipality": "Guerrero", + "scheduled_service": "no", + "local_code": "TAF" + }, + { + "id": "328631", + "ident": "MX-0745", + "type": "small_airport", + "name": "Cerro Bola Airport", + "latitude_deg": "28.614109", + "longitude_deg": "-102.091901", + "elevation_ft": "3100", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Muzquiz", + "scheduled_service": "no", + "local_code": "CBD" + }, + { + "id": "328632", + "ident": "MX-0746", + "type": "small_airport", + "name": "San Francisco Airport", + "latitude_deg": "28.564956", + "longitude_deg": "-101.249529", + "elevation_ft": "1795", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no", + "local_code": "SFF" + }, + { + "id": "328633", + "ident": "MX-0747", + "type": "heliport", + "name": "Centro Corporativo Bosques Heliport", + "latitude_deg": "19.387668", + "longitude_deg": "-99.251008", + "elevation_ft": "8645", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuajimalpa", + "scheduled_service": "no", + "local_code": "HCB" + }, + { + "id": "328634", + "ident": "MX-0748", + "type": "small_airport", + "name": "Rancho El 13 Airstrip", + "latitude_deg": "27.324319", + "longitude_deg": "-100.642845", + "elevation_ft": "1083", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Lampazos de Naranjo", + "scheduled_service": "no", + "local_code": "RTZ" + }, + { + "id": "328635", + "ident": "MX-0749", + "type": "small_airport", + "name": "Sisoguichi Airport", + "latitude_deg": "27.775416", + "longitude_deg": "-107.491609", + "elevation_ft": "7349", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Bocoyna", + "scheduled_service": "no", + "local_code": "SOG" + }, + { + "id": "328636", + "ident": "MX-0750", + "type": "small_airport", + "name": "Manuel Benavides Airport", + "latitude_deg": "29.118098", + "longitude_deg": "-103.913676", + "elevation_ft": "3609", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Manuel Benavides", + "scheduled_service": "no", + "local_code": "MBS" + }, + { + "id": "328651", + "ident": "MX-0751", + "type": "heliport", + "name": "Hospital Dalinde Heliport", + "latitude_deg": "19.405209", + "longitude_deg": "-99.167783", + "elevation_ft": "7415", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "HHD" + }, + { + "id": "328652", + "ident": "MX-0752", + "type": "small_airport", + "name": "Bacis Airport", + "latitude_deg": "24.568748", + "longitude_deg": "-105.890136", + "elevation_ft": "5712", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Otáez", + "scheduled_service": "no", + "local_code": "BAI" + }, + { + "id": "328653", + "ident": "MX-0753", + "type": "small_airport", + "name": "Pista Brekamaje", + "latitude_deg": "32.420389", + "longitude_deg": "-115.160327", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "BKE", + "keywords": "Aerofumigaciones Zavala" + }, + { + "id": "328654", + "ident": "MX-0754", + "type": "small_airport", + "name": "Batopito Airstrip", + "latitude_deg": "25.295667", + "longitude_deg": "-107.547722", + "elevation_ft": "1214", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "BTT" + }, + { + "id": "328656", + "ident": "MX-0755", + "type": "small_airport", + "name": "Rancho La Nogalera Airport", + "latitude_deg": "23.965859", + "longitude_deg": "-104.599429", + "elevation_ft": "6201", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Durango", + "scheduled_service": "no", + "local_code": "RNG" + }, + { + "id": "328658", + "ident": "MX-0756", + "type": "small_airport", + "name": "San Juanito Airport", + "latitude_deg": "27.979306", + "longitude_deg": "-107.595056", + "elevation_ft": "7874", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Bocoyna", + "scheduled_service": "no", + "local_code": "JTO" + }, + { + "id": "328660", + "ident": "MX-0757", + "type": "small_airport", + "name": "La Guarida Airport", + "latitude_deg": "29.702426", + "longitude_deg": "-105.088574", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Coyame del Sotol", + "scheduled_service": "no", + "local_code": "GUA" + }, + { + "id": "328661", + "ident": "MX-0758", + "type": "closed", + "name": "Hotel Riu Palace Heliport", + "latitude_deg": "20.665968", + "longitude_deg": "-103.393981", + "elevation_ft": "5814", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Guadalajara", + "scheduled_service": "no", + "keywords": "HRX" + }, + { + "id": "328662", + "ident": "MX-0759", + "type": "small_airport", + "name": "La Gran China Airport", + "latitude_deg": "25.744458", + "longitude_deg": "-108.480475", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Sinaloa de Leyva", + "scheduled_service": "no", + "local_code": "GCN" + }, + { + "id": "328663", + "ident": "MX-0760", + "type": "small_airport", + "name": "Campo El Patole Airport", + "latitude_deg": "23.73861", + "longitude_deg": "-106.830833", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "San Ignacio", + "scheduled_service": "no", + "local_code": "OLE" + }, + { + "id": "328664", + "ident": "MX-0761", + "type": "small_airport", + "name": "La Grulla Airport", + "latitude_deg": "31.699373", + "longitude_deg": "-116.624772", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "GYA" + }, + { + "id": "328665", + "ident": "MX-0762", + "type": "small_airport", + "name": "Rancho El Trofis Airport", + "latitude_deg": "22.455043", + "longitude_deg": "-98.763331", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Ciudad Mante", + "scheduled_service": "no", + "local_code": "RTF" + }, + { + "id": "328772", + "ident": "MX-0763", + "type": "heliport", + "name": "Terracota Cien Heliport", + "latitude_deg": "19.358591", + "longitude_deg": "-99.276232", + "elevation_ft": "8813", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuajimalpa", + "scheduled_service": "no", + "local_code": "HLO" + }, + { + "id": "328773", + "ident": "MX-0764", + "type": "heliport", + "name": "Torre Gan Heliport", + "latitude_deg": "19.428267", + "longitude_deg": "-99.180858", + "elevation_ft": "7552", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HGN" + }, + { + "id": "328774", + "ident": "MX-0765", + "type": "heliport", + "name": "Punto Central Heliport", + "latitude_deg": "25.646193", + "longitude_deg": "-100.354666", + "elevation_ft": "2070", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "San Pedro Garza Garcia", + "scheduled_service": "no", + "local_code": "HVF" + }, + { + "id": "328780", + "ident": "MX-0766", + "type": "small_airport", + "name": "Jimenez Airport", + "latitude_deg": "27.129875", + "longitude_deg": "-104.952575", + "elevation_ft": "3773", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Jimenez", + "scheduled_service": "no", + "local_code": "CJM" + }, + { + "id": "328783", + "ident": "MX-0767", + "type": "heliport", + "name": "Torre Ejecutiva Pemex Heliport", + "latitude_deg": "19.438973", + "longitude_deg": "-99.174883", + "elevation_ft": "8071", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HPM" + }, + { + "id": "328835", + "ident": "MX-0768", + "type": "small_airport", + "name": "Santa Teresa Airport", + "latitude_deg": "14.665036", + "longitude_deg": "-92.327463", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Tapachula", + "scheduled_service": "no", + "local_code": "PTE" + }, + { + "id": "328836", + "ident": "MX-0769", + "type": "small_airport", + "name": "Felipe Terrones Acosta Airport", + "latitude_deg": "18.490008", + "longitude_deg": "-96.359507", + "elevation_ft": "249", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Tierra Blanca", + "scheduled_service": "no", + "local_code": "FTA" + }, + { + "id": "328837", + "ident": "MX-0770", + "type": "small_airport", + "name": "Club Aereo Francisco Lobo Airport", + "latitude_deg": "25.794346", + "longitude_deg": "-100.446327", + "elevation_ft": "1962", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "De Garcia", + "scheduled_service": "no", + "local_code": "AFL" + }, + { + "id": "328838", + "ident": "MX-0771", + "type": "small_airport", + "name": "Rancho Agua Blanca Airstrip", + "latitude_deg": "30.775427", + "longitude_deg": "-108.689506", + "elevation_ft": "4790", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Janos", + "scheduled_service": "no", + "local_code": "RAB" + }, + { + "id": "328839", + "ident": "MX-0772", + "type": "heliport", + "name": "Torre Caballito Heliport", + "latitude_deg": "19.436599", + "longitude_deg": "-99.148848", + "elevation_ft": "7769", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "HTC" + }, + { + "id": "328840", + "ident": "MX-0773", + "type": "small_airport", + "name": "Rancho Oaxaca Airport", + "latitude_deg": "30.727366", + "longitude_deg": "-109.057456", + "elevation_ft": "2953", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Bavispe", + "scheduled_service": "no", + "local_code": "ROX" + }, + { + "id": "328841", + "ident": "MX-0774", + "type": "small_airport", + "name": "El Palmar Airport", + "latitude_deg": "28.007957", + "longitude_deg": "-102.177837", + "elevation_ft": "4016", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "San Buenaventura", + "scheduled_service": "no", + "local_code": "EPM" + }, + { + "id": "328842", + "ident": "MX-0775", + "type": "small_airport", + "name": "Pista Queretaro", + "latitude_deg": "32.53233", + "longitude_deg": "-115.156521", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "PQR" + }, + { + "id": "328843", + "ident": "MX-0776", + "type": "small_airport", + "name": "Lazaro Cardenas Airfield", + "latitude_deg": "32.592669", + "longitude_deg": "-115.006108", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "PLZ", + "keywords": "Pista Lazaro Cardenas" + }, + { + "id": "328844", + "ident": "MX-0777", + "type": "heliport", + "name": "Omega Heliport", + "latitude_deg": "19.428667", + "longitude_deg": "-99.200036", + "elevation_ft": "7720", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HOM" + }, + { + "id": "328845", + "ident": "MX-0778", + "type": "heliport", + "name": "Lomas Altas Heliport", + "latitude_deg": "19.398928", + "longitude_deg": "-99.229013", + "elevation_ft": "7772", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HFE" + }, + { + "id": "328846", + "ident": "MX-0779", + "type": "heliport", + "name": "El Universal Heliport", + "latitude_deg": "19.434329", + "longitude_deg": "-99.149613", + "elevation_ft": "7461", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuauhtémoc", + "scheduled_service": "yes", + "local_code": "HEU" + }, + { + "id": "328847", + "ident": "MX-0780", + "type": "heliport", + "name": "Hotel Nikko Heliport", + "latitude_deg": "19.42723", + "longitude_deg": "-99.192743", + "elevation_ft": "7835", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HNK" + }, + { + "id": "328848", + "ident": "MX-0781", + "type": "small_airport", + "name": "Los Barajas Airport", + "latitude_deg": "19.001417", + "longitude_deg": "-102.217531", + "elevation_ft": "1115", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Parácuaro", + "scheduled_service": "no", + "local_code": "LBS" + }, + { + "id": "328849", + "ident": "MX-0782", + "type": "small_airport", + "name": "El Socorro Airport", + "latitude_deg": "28.952572", + "longitude_deg": "-111.253725", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Hermosillo", + "scheduled_service": "no", + "local_code": "AES" + }, + { + "id": "328850", + "ident": "MX-0783", + "type": "small_airport", + "name": "La Palmosa Airstrip", + "latitude_deg": "26.395244", + "longitude_deg": "-101.786209", + "elevation_ft": "4003", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Cuatro Cienegas", + "scheduled_service": "no", + "local_code": "LPO" + }, + { + "id": "328851", + "ident": "MX-0784", + "type": "heliport", + "name": "Hospital Zambrano Hellion Heliport", + "latitude_deg": "25.646548", + "longitude_deg": "-100.334233", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "San Pedro Garza García", + "scheduled_service": "no", + "local_code": "HZE" + }, + { + "id": "328852", + "ident": "MX-0785", + "type": "heliport", + "name": "ITAM Santa Teresa Heliport", + "latitude_deg": "19.31125", + "longitude_deg": "-99.223361", + "elevation_ft": "8366", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Magdalena Contreras", + "scheduled_service": "no", + "local_code": "HIG" + }, + { + "id": "328853", + "ident": "MX-0786", + "type": "small_airport", + "name": "Hacienda Cuajomulco Airport", + "latitude_deg": "28.371017", + "longitude_deg": "-100.913062", + "elevation_ft": "1388", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Morelos", + "scheduled_service": "no", + "local_code": "CML" + }, + { + "id": "328854", + "ident": "MX-0787", + "type": "small_airport", + "name": "Los Manueles Airport", + "latitude_deg": "23.441519", + "longitude_deg": "-97.876035", + "elevation_ft": "249", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "RLM" + }, + { + "id": "328855", + "ident": "MX-0788", + "type": "small_airport", + "name": "La Laguna Airport", + "latitude_deg": "23.714605", + "longitude_deg": "-97.826712", + "elevation_ft": "151", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "LGU" + }, + { + "id": "328856", + "ident": "MX-0789", + "type": "small_airport", + "name": "Troncón Airstrip", + "latitude_deg": "32.55492", + "longitude_deg": "-114.996577", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "PTR", + "keywords": "Aerofumigaciones Troncón" + }, + { + "id": "328857", + "ident": "MX-0790", + "type": "closed", + "name": "Sefuver Heliport", + "latitude_deg": "19.180036", + "longitude_deg": "-96.319808", + "elevation_ft": "74", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Marlio Fabio Altamirano", + "scheduled_service": "no", + "local_code": "HSO", + "keywords": "HSO" + }, + { + "id": "328858", + "ident": "MX-0791", + "type": "small_airport", + "name": "San Jacinto Airport", + "latitude_deg": "25.899278", + "longitude_deg": "-103.988694", + "elevation_ft": "5577", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Mapimí", + "scheduled_service": "no", + "local_code": "SJK" + }, + { + "id": "328859", + "ident": "MX-0792", + "type": "small_airport", + "name": "Leona Vicario Airport", + "latitude_deg": "32.120496", + "longitude_deg": "-115.169902", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "LVO" + }, + { + "id": "328860", + "ident": "MX-0793", + "type": "small_airport", + "name": "La Palma Airport", + "latitude_deg": "28.538646", + "longitude_deg": "-102.397176", + "elevation_ft": "4295", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Muzquiz", + "scheduled_service": "no", + "local_code": "LPM" + }, + { + "id": "328861", + "ident": "MX-0794", + "type": "small_airport", + "name": "Cacaraguas Airport", + "latitude_deg": "24.892034", + "longitude_deg": "-107.584271", + "elevation_ft": "151", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "CGU" + }, + { + "id": "328866", + "ident": "MX-0795", + "type": "heliport", + "name": "Centro Bancomer Heliport", + "latitude_deg": "19.361362", + "longitude_deg": "-99.16852", + "elevation_ft": "7526", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Benito Juarez", + "scheduled_service": "no", + "local_code": "HBC" + }, + { + "id": "328868", + "ident": "MX-0796", + "type": "small_airport", + "name": "Yack Airport", + "latitude_deg": "22.324155", + "longitude_deg": "-98.164632", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Panuco", + "scheduled_service": "no", + "local_code": "YAK" + }, + { + "id": "328869", + "ident": "MX-0797", + "type": "small_airport", + "name": "Pista Aeroagricola Guayparime", + "latitude_deg": "25.751576", + "longitude_deg": "-108.769897", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "PIG" + }, + { + "id": "328870", + "ident": "MX-0798", + "type": "closed", + "name": "Buenavista Airstrip", + "latitude_deg": "25.854755", + "longitude_deg": "-98.638303", + "elevation_ft": "138", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "General Bravo", + "scheduled_service": "no", + "local_code": "BUE" + }, + { + "id": "328871", + "ident": "MX-0799", + "type": "heliport", + "name": "Helipuerto Estado de Mexico", + "latitude_deg": "19.293806", + "longitude_deg": "-99.657389", + "elevation_ft": "8770", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Toluca", + "scheduled_service": "no", + "local_code": "HEM" + }, + { + "id": "328872", + "ident": "MX-0800", + "type": "heliport", + "name": "Plaza Scotiabank Heliport", + "latitude_deg": "19.4285", + "longitude_deg": "-99.203389", + "elevation_ft": "7759", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HPX" + }, + { + "id": "328873", + "ident": "MX-0801", + "type": "heliport", + "name": "Parque Reforma Heliport", + "latitude_deg": "19.429259", + "longitude_deg": "-99.202941", + "elevation_ft": "7644", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HCR" + }, + { + "id": "328874", + "ident": "MX-0802", + "type": "small_airport", + "name": "Tecolotlan Airstrip", + "latitude_deg": "20.19999", + "longitude_deg": "-104.082292", + "elevation_ft": "4150", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Tecolotlan", + "scheduled_service": "no", + "local_code": "TEO" + }, + { + "id": "328875", + "ident": "MX-0803", + "type": "closed", + "name": "Rancho Ebanos Airport", + "latitude_deg": "23.481217", + "longitude_deg": "-97.7885", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "REB" + }, + { + "id": "328876", + "ident": "MX-0804", + "type": "small_airport", + "name": "El Potrero Airport", + "latitude_deg": "27.610501", + "longitude_deg": "-100.748291", + "elevation_ft": "984", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Juárez", + "scheduled_service": "no", + "local_code": "POE" + }, + { + "id": "328877", + "ident": "MX-0805", + "type": "heliport", + "name": "Torre del Castillo Heliport", + "latitude_deg": "19.427706", + "longitude_deg": "-99.187929", + "elevation_ft": "7693", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HTH" + }, + { + "id": "328878", + "ident": "MX-0806", + "type": "small_airport", + "name": "Rancho El Jabali Airport", + "latitude_deg": "27.1925", + "longitude_deg": "-100.829444", + "elevation_ft": "1230", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Lampazos", + "scheduled_service": "no", + "local_code": "RJA" + }, + { + "id": "328879", + "ident": "MX-0807", + "type": "small_airport", + "name": "La Loma Airport", + "latitude_deg": "30.609833", + "longitude_deg": "-111.400556", + "elevation_ft": "2001", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Trincheras", + "scheduled_service": "no", + "local_code": "LLT" + }, + { + "id": "328880", + "ident": "MX-0808", + "type": "small_airport", + "name": "La Peñita Airport", + "latitude_deg": "25.203715", + "longitude_deg": "-98.203898", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "San Fernando", + "scheduled_service": "no", + "local_code": "PEI" + }, + { + "id": "328881", + "ident": "MX-0809", + "type": "small_airport", + "name": "Palo Chino Airport", + "latitude_deg": "25.766915", + "longitude_deg": "-104.667011", + "elevation_ft": "6020", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Villa Hidalgo", + "scheduled_service": "no", + "local_code": "PHO" + }, + { + "id": "328882", + "ident": "MX-0810", + "type": "heliport", + "name": "Hospital Angeles Heliport", + "latitude_deg": "19.312054", + "longitude_deg": "-99.220525", + "elevation_ft": "7733", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Magdalena Contreras", + "scheduled_service": "no", + "local_code": "HHA" + }, + { + "id": "328883", + "ident": "MX-0811", + "type": "small_airport", + "name": "Rancho San Antonio Airport", + "latitude_deg": "22.694135", + "longitude_deg": "-99.024222", + "elevation_ft": "292", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Ciudad Mante", + "scheduled_service": "no", + "local_code": "RAM" + }, + { + "id": "328885", + "ident": "MX-0812", + "type": "small_airport", + "name": "Tututepec Airport", + "latitude_deg": "16.106927", + "longitude_deg": "-97.614763", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Villa Tututepec", + "scheduled_service": "no", + "local_code": "TTP" + }, + { + "id": "328887", + "ident": "MX-0813", + "type": "small_airport", + "name": "Cpa. Roberto Yáñez Cruz Airport", + "latitude_deg": "16.279363", + "longitude_deg": "-97.831645", + "elevation_ft": "1509", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Santiago Jamiltepec", + "scheduled_service": "no", + "local_code": "RYC", + "keywords": "Jamiltepec Airport" + }, + { + "id": "329047", + "ident": "MX-0814", + "type": "heliport", + "name": "Reforma 180 Heliport", + "latitude_deg": "19.429596", + "longitude_deg": "-99.160895", + "elevation_ft": "7871", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "HPA" + }, + { + "id": "329048", + "ident": "MX-0815", + "type": "heliport", + "name": "Aristos Mexico Heliport", + "latitude_deg": "19.427924", + "longitude_deg": "-99.162967", + "elevation_ft": "7529", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "HAM" + }, + { + "id": "329049", + "ident": "MX-0816", + "type": "small_airport", + "name": "El Frater Airport", + "latitude_deg": "21.947778", + "longitude_deg": "-98.506389", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Panuco", + "scheduled_service": "no", + "local_code": "EFE" + }, + { + "id": "329050", + "ident": "MX-0817", + "type": "small_airport", + "name": "La Yesca de Hermosillo Airport", + "latitude_deg": "29.006353", + "longitude_deg": "-111.061812", + "elevation_ft": "548", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Hermosillo", + "scheduled_service": "no", + "local_code": "LYH" + }, + { + "id": "329051", + "ident": "MX-0818", + "type": "small_airport", + "name": "Isla Fronton Airport", + "latitude_deg": "21.80359", + "longitude_deg": "-97.654501", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Ozuluama", + "scheduled_service": "no", + "local_code": "OZM" + }, + { + "id": "329086", + "ident": "MX-0819", + "type": "small_airport", + "name": "Rancho La Zorra Airport", + "latitude_deg": "27.245528", + "longitude_deg": "-100.974417", + "elevation_ft": "1414", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Progreso", + "scheduled_service": "no", + "local_code": "RZR" + }, + { + "id": "329087", + "ident": "MX-0820", + "type": "small_airport", + "name": "Hacienda San Juan Airport", + "latitude_deg": "23.894012", + "longitude_deg": "-98.227902", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "HSJ" + }, + { + "id": "329088", + "ident": "MX-0821", + "type": "small_airport", + "name": "Ejido Juan Álvarez Airport", + "latitude_deg": "31.168868", + "longitude_deg": "-112.805623", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Caborca", + "scheduled_service": "no", + "local_code": "EJJ" + }, + { + "id": "329089", + "ident": "MX-0822", + "type": "small_airport", + "name": "Los Fresnos Airport", + "latitude_deg": "25.918278", + "longitude_deg": "-98.014096", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Rio Bravo", + "scheduled_service": "no", + "local_code": "LFE" + }, + { + "id": "329092", + "ident": "MX-0823", + "type": "small_airport", + "name": "El Temazcal Airport", + "latitude_deg": "23.350393", + "longitude_deg": "-104.243614", + "elevation_ft": "8268", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Suchil", + "scheduled_service": "no", + "local_code": "TZC" + }, + { + "id": "329093", + "ident": "MX-0824", + "type": "small_airport", + "name": "Cienega Prieta Airport", + "latitude_deg": "26.419263", + "longitude_deg": "-107.616613", + "elevation_ft": "7290", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Morelos", + "scheduled_service": "no", + "local_code": "CNP" + }, + { + "id": "329094", + "ident": "MX-0825", + "type": "small_airport", + "name": "Ejido Pueblo Viejo Airport", + "latitude_deg": "24.15011", + "longitude_deg": "-106.156387", + "elevation_ft": "3799", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "San Ignacio", + "scheduled_service": "no", + "local_code": "PVJ" + }, + { + "id": "329097", + "ident": "MX-0826", + "type": "heliport", + "name": "Torre del Bosque Heliport", + "latitude_deg": "19.428465", + "longitude_deg": "-99.204613", + "elevation_ft": "7841", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HTB" + }, + { + "id": "329098", + "ident": "MX-0827", + "type": "small_airport", + "name": "La Escondida Airport", + "latitude_deg": "22.590583", + "longitude_deg": "-97.996556", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Altamira", + "scheduled_service": "no", + "local_code": "RLD" + }, + { + "id": "329100", + "ident": "MX-0828", + "type": "heliport", + "name": "Dos Bocas Heliport", + "latitude_deg": "18.431797", + "longitude_deg": "-93.197542", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Paraiso", + "scheduled_service": "no", + "local_code": "HOB" + }, + { + "id": "329101", + "ident": "MX-0829", + "type": "heliport", + "name": "Torre Bosques Heliport", + "latitude_deg": "19.408083", + "longitude_deg": "-99.285028", + "elevation_ft": "8074", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Huixquilucan", + "scheduled_service": "no", + "local_code": "HAW" + }, + { + "id": "329102", + "ident": "MX-0830", + "type": "heliport", + "name": "ITAM Rio Hondo Heliport", + "latitude_deg": "19.345203", + "longitude_deg": "-99.200829", + "elevation_ft": "7382", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Alvaro Obregon", + "scheduled_service": "no", + "local_code": "HIH" + }, + { + "id": "329103", + "ident": "MX-0831", + "type": "small_airport", + "name": "Hacienda El Caballo Airport", + "latitude_deg": "28.912919", + "longitude_deg": "-101.166525", + "elevation_ft": "1575", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no", + "local_code": "HDC" + }, + { + "id": "329104", + "ident": "MX-0832", + "type": "small_airport", + "name": "Cuestecitas Airport", + "latitude_deg": "22.773537", + "longitude_deg": "-98.050343", + "elevation_ft": "121", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Aldama", + "scheduled_service": "no", + "local_code": "CSS" + }, + { + "id": "329107", + "ident": "MX-0833", + "type": "small_airport", + "name": "Campo San Javier Airstrip", + "latitude_deg": "25.453063", + "longitude_deg": "-108.319931", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "CSX" + }, + { + "id": "331490", + "ident": "MX-0834", + "type": "small_airport", + "name": "Rancho Joali Airport", + "latitude_deg": "17.268044", + "longitude_deg": "-93.537263", + "elevation_ft": "279", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Tecpatan", + "scheduled_service": "no", + "local_code": "RJO" + }, + { + "id": "329152", + "ident": "MX-0835", + "type": "small_airport", + "name": "Vaquerias Airstrip", + "latitude_deg": "25.083333", + "longitude_deg": "-99", + "elevation_ft": "479", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "China", + "scheduled_service": "no", + "local_code": "VQS" + }, + { + "id": "329153", + "ident": "MX-0836", + "type": "small_airport", + "name": "La Roca Airport", + "latitude_deg": "21.247906", + "longitude_deg": "-100.661987", + "elevation_ft": "6617", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "San Luis de La Paz", + "scheduled_service": "no", + "local_code": "LRC" + }, + { + "id": "329154", + "ident": "MX-0837", + "type": "small_airport", + "name": "El Sacrificio Airstrip", + "latitude_deg": "29.694401", + "longitude_deg": "-105.817049", + "elevation_ft": "4304", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Coyame del Sotol", + "scheduled_service": "no", + "local_code": "SCF" + }, + { + "id": "329155", + "ident": "MX-0838", + "type": "small_airport", + "name": "El Alamo Airport", + "latitude_deg": "32.490878", + "longitude_deg": "-115.184342", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "ALM" + }, + { + "id": "329156", + "ident": "MX-0839", + "type": "small_airport", + "name": "Tequesquitengo Airport", + "latitude_deg": "18.6466", + "longitude_deg": "-99.260941", + "elevation_ft": "3271", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MOR", + "municipality": "Puente de Ixtla", + "scheduled_service": "no", + "local_code": "TQE" + }, + { + "id": "329181", + "ident": "MX-0840", + "type": "heliport", + "name": "Punto Polanco Heliport", + "latitude_deg": "19.439452", + "longitude_deg": "-99.18508", + "elevation_ft": "7720", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HPJ" + }, + { + "id": "329182", + "ident": "MX-0841", + "type": "heliport", + "name": "Tragamex Legaria Heliport", + "latitude_deg": "19.444305", + "longitude_deg": "-99.21175", + "elevation_ft": "7529", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Tragamex Legaria", + "scheduled_service": "no", + "local_code": "HRT" + }, + { + "id": "329183", + "ident": "MX-0842", + "type": "small_airport", + "name": "La Unión Airstrip", + "latitude_deg": "18.431804", + "longitude_deg": "-93.33836", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Paraíso", + "scheduled_service": "no", + "local_code": "UNI" + }, + { + "id": "329184", + "ident": "MX-0843", + "type": "heliport", + "name": "Interpol México Heliport", + "latitude_deg": "19.452574", + "longitude_deg": "-99.213989", + "elevation_ft": "7506", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HJD" + }, + { + "id": "329185", + "ident": "MX-0844", + "type": "small_airport", + "name": "Murallas Airport", + "latitude_deg": "14.734519", + "longitude_deg": "-92.327917", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Tapachula", + "scheduled_service": "no", + "local_code": "MUR" + }, + { + "id": "329186", + "ident": "MX-0845", + "type": "heliport", + "name": "Corporativo Century Plaza Heliport", + "latitude_deg": "19.360856", + "longitude_deg": "-99.267647", + "elevation_ft": "8760", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuajimalpa", + "scheduled_service": "no", + "local_code": "HBH" + }, + { + "id": "329187", + "ident": "MX-0846", + "type": "small_airport", + "name": "Zapotal Airport", + "latitude_deg": "22.744449", + "longitude_deg": "-98.035494", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Aldama", + "scheduled_service": "no", + "local_code": "ZAT" + }, + { + "id": "329188", + "ident": "MX-0847", + "type": "heliport", + "name": "Torre Polanco Heliport", + "latitude_deg": "19.43299", + "longitude_deg": "-99.181508", + "elevation_ft": "7799", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HPL" + }, + { + "id": "329189", + "ident": "MX-0848", + "type": "heliport", + "name": "Legaria Heliport", + "latitude_deg": "19.447833", + "longitude_deg": "-99.206944", + "elevation_ft": "7441", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HLG" + }, + { + "id": "329190", + "ident": "MX-0849", + "type": "heliport", + "name": "Legaria II Heliport", + "latitude_deg": "19.448121", + "longitude_deg": "-99.207363", + "elevation_ft": "7441", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HLH" + }, + { + "id": "329191", + "ident": "MX-0850", + "type": "small_airport", + "name": "El Mito Airstrip", + "latitude_deg": "26.621113", + "longitude_deg": "-100.98625", + "elevation_ft": "2743", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Candela", + "scheduled_service": "no", + "local_code": "ETO" + }, + { + "id": "329192", + "ident": "MX-0851", + "type": "heliport", + "name": "Santa Genoveva Heliport", + "latitude_deg": "19.550995", + "longitude_deg": "-90.020282", + "elevation_ft": "289", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Campeche", + "scheduled_service": "no", + "local_code": "HAN" + }, + { + "id": "329193", + "ident": "MX-0852", + "type": "heliport", + "name": "Edificio Falcon Heliport", + "latitude_deg": "19.442442", + "longitude_deg": "-99.204703", + "elevation_ft": "7608", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HKX" + }, + { + "id": "329194", + "ident": "MX-0853", + "type": "heliport", + "name": "Edificio Telcel", + "latitude_deg": "19.441485", + "longitude_deg": "-99.203471", + "elevation_ft": "7743", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HKY" + }, + { + "id": "329195", + "ident": "MX-0854", + "type": "small_airport", + "name": "El Carrizal Airstrip", + "latitude_deg": "16.523419", + "longitude_deg": "-97.435392", + "elevation_ft": "3935", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Santa Cruz Zenzontepec", + "scheduled_service": "no", + "local_code": "CRZ" + }, + { + "id": "329214", + "ident": "MX-0855", + "type": "heliport", + "name": "Edificio Viviendas 1 & 2", + "latitude_deg": "19.44252", + "longitude_deg": "-99.204019", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HKW" + }, + { + "id": "329215", + "ident": "MX-0856", + "type": "heliport", + "name": "Edificio Zurich Heliport", + "latitude_deg": "19.442436", + "longitude_deg": "-99.203403", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HKZ" + }, + { + "id": "329216", + "ident": "MX-0857", + "type": "heliport", + "name": "Compañía Periodistica Esto Heliport", + "latitude_deg": "16.851691", + "longitude_deg": "-99.85614", + "elevation_ft": "222", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Acapulco", + "scheduled_service": "no", + "local_code": "HEQ" + }, + { + "id": "329217", + "ident": "MX-0858", + "type": "small_airport", + "name": "El Caracol Airport", + "latitude_deg": "23.978613", + "longitude_deg": "-98.519064", + "elevation_ft": "738", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Jimenez", + "scheduled_service": "no", + "local_code": "CJT" + }, + { + "id": "329218", + "ident": "MX-0859", + "type": "heliport", + "name": "Cinepolis Heliport", + "latitude_deg": "19.715171", + "longitude_deg": "-101.119145", + "elevation_ft": "6886", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Morelia", + "scheduled_service": "no", + "local_code": "HCP" + }, + { + "id": "329219", + "ident": "MX-0860", + "type": "closed", + "name": "Cruz Azul Heliport", + "latitude_deg": "19.305037", + "longitude_deg": "-99.164092", + "elevation_ft": "7336", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Coyoacán", + "scheduled_service": "no", + "local_code": "HOZ" + }, + { + "id": "329220", + "ident": "MX-0861", + "type": "small_airport", + "name": "Mirador Santa Rosa Airport", + "latitude_deg": "27.71831", + "longitude_deg": "-100.86907", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Juárez", + "scheduled_service": "no", + "local_code": "ALD" + }, + { + "id": "329221", + "ident": "MX-0862", + "type": "heliport", + "name": "Hospital General Cabo San Lucas Heliport", + "latitude_deg": "22.903006", + "longitude_deg": "-109.92539", + "elevation_ft": "174", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Los Cabos", + "scheduled_service": "no", + "local_code": "HHQ" + }, + { + "id": "329370", + "ident": "MX-0863", + "type": "small_airport", + "name": "Rancho La Paloma Airport", + "latitude_deg": "24.023004", + "longitude_deg": "-98.715164", + "elevation_ft": "476", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Padilla", + "scheduled_service": "no", + "local_code": "RPT" + }, + { + "id": "329371", + "ident": "MX-0864", + "type": "small_airport", + "name": "Morgan Airstrip", + "latitude_deg": "25.718111", + "longitude_deg": "-108.726917", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "PMN", + "keywords": "Pista Morgan" + }, + { + "id": "329372", + "ident": "MX-0865", + "type": "small_airport", + "name": "El Rodeo Airport", + "latitude_deg": "25.005222", + "longitude_deg": "-107.724443", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Mocorito", + "scheduled_service": "no", + "local_code": "ROD" + }, + { + "id": "329373", + "ident": "MX-0866", + "type": "small_airport", + "name": "Palmarejito Airstrip", + "latitude_deg": "25.192013", + "longitude_deg": "-106.791193", + "elevation_ft": "2953", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Topia", + "scheduled_service": "no", + "local_code": "PLJ" + }, + { + "id": "329375", + "ident": "MX-0867", + "type": "small_airport", + "name": "Cedros Airport", + "latitude_deg": "25.886709", + "longitude_deg": "-108.888927", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "El Fuerte", + "scheduled_service": "no", + "local_code": "CDS" + }, + { + "id": "329376", + "ident": "MX-0868", + "type": "small_airport", + "name": "Los Pintos Airport", + "latitude_deg": "28.560555", + "longitude_deg": "-101.679722", + "elevation_ft": "2329", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no", + "local_code": "LNP" + }, + { + "id": "329377", + "ident": "MX-0869", + "type": "heliport", + "name": "Safe Regency Platform Heliport", + "latitude_deg": "19.400092", + "longitude_deg": "-92.039283", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Zonda de Campeche", + "scheduled_service": "no", + "local_code": "HPR" + }, + { + "id": "329399", + "ident": "MX-0870", + "type": "small_airport", + "name": "Lagarto Airport", + "latitude_deg": "24.629667", + "longitude_deg": "-107.480297", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "LRO" + }, + { + "id": "329400", + "ident": "MX-0871", + "type": "heliport", + "name": "Antair Heliport", + "latitude_deg": "26.882401", + "longitude_deg": "-101.445925", + "elevation_ft": "2060", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Monclova", + "scheduled_service": "no", + "local_code": "HST" + }, + { + "id": "329401", + "ident": "MX-0872", + "type": "heliport", + "name": "Olas Altas Heliport", + "latitude_deg": "24.034278", + "longitude_deg": "-110.335833", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no", + "local_code": "HOA" + }, + { + "id": "329402", + "ident": "MX-0873", + "type": "small_airport", + "name": "Granados Airstrip", + "latitude_deg": "29.859648", + "longitude_deg": "-109.321992", + "elevation_ft": "1868", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Granados", + "scheduled_service": "no", + "local_code": "GRA" + }, + { + "id": "329404", + "ident": "MX-0874", + "type": "small_airport", + "name": "Nácori Chico Airport", + "latitude_deg": "29.680817", + "longitude_deg": "-108.982169", + "elevation_ft": "2710", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Nácori Chico", + "scheduled_service": "no", + "local_code": "NAC" + }, + { + "id": "329405", + "ident": "MX-0875", + "type": "small_airport", + "name": "Bacadéhuachi Airport", + "latitude_deg": "29.820377", + "longitude_deg": "-109.142125", + "elevation_ft": "2342", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Bacadéhuachi", + "scheduled_service": "no", + "local_code": "BAC" + }, + { + "id": "329406", + "ident": "MX-0876", + "type": "small_airport", + "name": "Guayparime II Airport", + "latitude_deg": "25.7426", + "longitude_deg": "-108.957343", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Ahome", + "scheduled_service": "no", + "local_code": "GYE" + }, + { + "id": "329407", + "ident": "MX-0877", + "type": "small_airport", + "name": "Monteverde Airport", + "latitude_deg": "27.355336", + "longitude_deg": "-100.684444", + "elevation_ft": "1001", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Progreso", + "scheduled_service": "no", + "local_code": "MVE" + }, + { + "id": "329408", + "ident": "MX-0878", + "type": "small_airport", + "name": "El Purgatorio Airstrip", + "latitude_deg": "25.485908", + "longitude_deg": "-106.616914", + "elevation_ft": "5151", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tepehuanes", + "scheduled_service": "no", + "local_code": "PGT" + }, + { + "id": "329409", + "ident": "MX-0879", + "type": "small_airport", + "name": "San Fernando Airstrip", + "latitude_deg": "26.222521", + "longitude_deg": "-107.22783", + "elevation_ft": "6430", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "SFN" + }, + { + "id": "329411", + "ident": "MX-0880", + "type": "heliport", + "name": "Mundo Infantil Heliport", + "latitude_deg": "18.939391", + "longitude_deg": "-99.194942", + "elevation_ft": "5052", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MOR", + "municipality": "Cuernavaca", + "scheduled_service": "no", + "local_code": "HIM" + }, + { + "id": "329412", + "ident": "MX-0881", + "type": "heliport", + "name": "Secretaría de Marina Abierto A La Operación Civil En Emergencia Heliport", + "latitude_deg": "19.32311", + "longitude_deg": "-99.125722", + "elevation_ft": "7438", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Coyoacán", + "scheduled_service": "no", + "local_code": "HHN" + }, + { + "id": "329413", + "ident": "MX-0882", + "type": "small_airport", + "name": "Familia Baldenebro Jaimes Airport", + "latitude_deg": "27.374776", + "longitude_deg": "-109.937428", + "elevation_ft": "119", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Ciudad Obregon", + "scheduled_service": "no", + "local_code": "FBJ" + }, + { + "id": "329414", + "ident": "MX-0883", + "type": "small_airport", + "name": "El Zopilote Airport", + "latitude_deg": "18.246933", + "longitude_deg": "-95.721035", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Carlos Carrillo", + "scheduled_service": "no", + "local_code": "AZK" + }, + { + "id": "329415", + "ident": "MX-0884", + "type": "heliport", + "name": "Tribunal Superior de Justicia Heliport", + "latitude_deg": "19.433914", + "longitude_deg": "-99.143475", + "elevation_ft": "7631", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuahutemoc", + "scheduled_service": "no", + "local_code": "HTJ" + }, + { + "id": "329416", + "ident": "MX-0885", + "type": "small_airport", + "name": "El Dorado Airport", + "latitude_deg": "24.321481", + "longitude_deg": "-107.398628", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "El Dorado", + "scheduled_service": "no", + "local_code": "EDD" + }, + { + "id": "329417", + "ident": "MX-0886", + "type": "heliport", + "name": "Hospital Angeles Ciudad Juárez Heliport", + "latitude_deg": "31.71365", + "longitude_deg": "-106.392306", + "elevation_ft": "5905", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ciudad Juárez", + "scheduled_service": "no", + "local_code": "HDJ" + }, + { + "id": "329505", + "ident": "MX-0887", + "type": "heliport", + "name": "Hospital de Alta Especialidad Ixtapaluca Heliport", + "latitude_deg": "19.318264", + "longitude_deg": "-98.855454", + "elevation_ft": "7451", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Ixtapaluca", + "scheduled_service": "no", + "local_code": "HIX" + }, + { + "id": "329506", + "ident": "MX-0888", + "type": "heliport", + "name": "Magnocentro 26 Heliport", + "latitude_deg": "19.406889", + "longitude_deg": "-99.271889", + "elevation_ft": "8235", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Huixquilucan", + "scheduled_service": "no", + "local_code": "HFR" + }, + { + "id": "329507", + "ident": "MX-0889", + "type": "small_airport", + "name": "Cahuisori Airport", + "latitude_deg": "28.247351", + "longitude_deg": "-108.273105", + "elevation_ft": "6800", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ocampo", + "scheduled_service": "no", + "local_code": "CHR" + }, + { + "id": "329508", + "ident": "MX-0890", + "type": "heliport", + "name": "Transpais Heliport", + "latitude_deg": "23.720194", + "longitude_deg": "-99.081667", + "elevation_ft": "951", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Ciudad Victoria", + "scheduled_service": "no", + "local_code": "HTT" + }, + { + "id": "329509", + "ident": "MX-0891", + "type": "small_airport", + "name": "El Centenario Airstrip", + "latitude_deg": "26.948111", + "longitude_deg": "-99.866389", + "elevation_ft": "466", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Anáhuac", + "scheduled_service": "no", + "local_code": "CTO" + }, + { + "id": "329510", + "ident": "MX-0892", + "type": "heliport", + "name": "El Encinal Heliport", + "latitude_deg": "18.034834", + "longitude_deg": "-96.156461", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "San Juan Bautista Tuxtepec", + "scheduled_service": "no", + "local_code": "HNL" + }, + { + "id": "329511", + "ident": "MX-0893", + "type": "heliport", + "name": "Car One Heliport", + "latitude_deg": "25.633139", + "longitude_deg": "-100.30111", + "elevation_ft": "1916", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Monterrey", + "scheduled_service": "no", + "local_code": "HCO" + }, + { + "id": "329512", + "ident": "MX-0894", + "type": "heliport", + "name": "Hospital Regional de Alta Especialidad del Bajío Heliport", + "latitude_deg": "21.062138", + "longitude_deg": "-101.577912", + "elevation_ft": "6004", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "León", + "scheduled_service": "no", + "local_code": "HGI" + }, + { + "id": "329513", + "ident": "MX-0895", + "type": "heliport", + "name": "Agua Dulce Heliport", + "latitude_deg": "22.256361", + "longitude_deg": "-97.85936", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Ciudad Madero", + "scheduled_service": "no", + "local_code": "HOD" + }, + { + "id": "329514", + "ident": "MX-0896", + "type": "small_airport", + "name": "El Paraiso Airport", + "latitude_deg": "23.047647", + "longitude_deg": "-97.822402", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "scheduled_service": "no", + "local_code": "ERP" + }, + { + "id": "329515", + "ident": "MX-0897", + "type": "heliport", + "name": "Maiz Transforma Heliport", + "latitude_deg": "25.65652", + "longitude_deg": "-100.387695", + "elevation_ft": "2090", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "San Pedro Garza Garcia", + "scheduled_service": "no", + "local_code": "HFJ" + }, + { + "id": "329516", + "ident": "MX-0898", + "type": "small_airport", + "name": "Col. Alamillo Airport", + "latitude_deg": "29.441338", + "longitude_deg": "-107.912055", + "elevation_ft": "4101", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Medera", + "scheduled_service": "no", + "local_code": "ACN" + }, + { + "id": "329517", + "ident": "MX-0899", + "type": "small_airport", + "name": "Los Tuxtlas Regional Airport", + "latitude_deg": "18.398211", + "longitude_deg": "-95.222448", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "San Andres Tuxtla", + "scheduled_service": "no", + "local_code": "LTX" + }, + { + "id": "329518", + "ident": "MX-0900", + "type": "small_airport", + "name": "Las Cuevas Airport", + "latitude_deg": "28.073", + "longitude_deg": "-100.391888", + "elevation_ft": "873", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Guerrero", + "scheduled_service": "no", + "local_code": "LCW" + }, + { + "id": "329519", + "ident": "MX-0901", + "type": "small_airport", + "name": "Farallon Airport", + "latitude_deg": "25.736639", + "longitude_deg": "-108.927861", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Ahome", + "scheduled_service": "no", + "local_code": "FRL" + }, + { + "id": "329556", + "ident": "MX-0902", + "type": "small_airport", + "name": "Mesa de Los Toros Airport", + "latitude_deg": "25.411213", + "longitude_deg": "-106.635014", + "elevation_ft": "6037", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tepehuanes", + "scheduled_service": "no", + "local_code": "MDT" + }, + { + "id": "329557", + "ident": "MX-0903", + "type": "heliport", + "name": "Industria del Hierro Heliport", + "latitude_deg": "20.6125", + "longitude_deg": "-100.396639", + "elevation_ft": "6069", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-QUE", + "municipality": "Queretaro", + "scheduled_service": "no", + "local_code": "HIQ" + }, + { + "id": "329558", + "ident": "MX-0904", + "type": "small_airport", + "name": "San Vicente Airport", + "latitude_deg": "18.715536", + "longitude_deg": "-103.655154", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Coahuayana", + "scheduled_service": "no", + "local_code": "SVL" + }, + { + "id": "329559", + "ident": "MX-0905", + "type": "small_airport", + "name": "Campo San Pablo Airstrip", + "latitude_deg": "28.013371", + "longitude_deg": "-110.659224", + "elevation_ft": "194", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Empalme", + "scheduled_service": "no", + "local_code": "CWP" + }, + { + "id": "329560", + "ident": "MX-0906", + "type": "heliport", + "name": "Yautepec Nieto Heliport", + "latitude_deg": "18.814527", + "longitude_deg": "-99.094826", + "elevation_ft": "3543", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MOR", + "municipality": "Yautepec", + "scheduled_service": "no", + "local_code": "HNM" + }, + { + "id": "329561", + "ident": "MX-0907", + "type": "small_airport", + "name": "Rancho El Gato Airport", + "latitude_deg": "25.86925", + "longitude_deg": "-98.607333", + "elevation_ft": "377", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "General Bravo", + "scheduled_service": "no", + "local_code": "TAG" + }, + { + "id": "329562", + "ident": "MX-0908", + "type": "small_airport", + "name": "El Jefe Airstrip", + "latitude_deg": "23.215528", + "longitude_deg": "-98.842806", + "elevation_ft": "594", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Llera de Canales", + "scheduled_service": "no", + "local_code": "AEJ" + }, + { + "id": "329563", + "ident": "MX-0909", + "type": "small_airport", + "name": "Yalcok Airport", + "latitude_deg": "16.344274", + "longitude_deg": "-91.993828", + "elevation_ft": "5177", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Margaritas", + "scheduled_service": "yes", + "local_code": "YLK" + }, + { + "id": "329564", + "ident": "MX-0910", + "type": "small_airport", + "name": "Ganaderia 21 de Enero, S.A. de C.V. Airport", + "latitude_deg": "24.684838", + "longitude_deg": "-99.401367", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Villagrán", + "scheduled_service": "no", + "local_code": "DDD" + }, + { + "id": "329565", + "ident": "MX-0911", + "type": "heliport", + "name": "Chiapas Tower Heliport", + "latitude_deg": "16.754619", + "longitude_deg": "-93.081008", + "elevation_ft": "1663", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Tuxtla Gutierrez", + "scheduled_service": "no", + "local_code": "HCL" + }, + { + "id": "329685", + "ident": "MX-0912", + "type": "heliport", + "name": "Angeles de Torreón Heliport", + "latitude_deg": "25.516516", + "longitude_deg": "-103.395063", + "elevation_ft": "3688", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Torreon", + "scheduled_service": "no", + "local_code": "HBT" + }, + { + "id": "329686", + "ident": "MX-0913", + "type": "small_airport", + "name": "Aerofumigaciones La Nanchi Airport", + "latitude_deg": "24.939336", + "longitude_deg": "-107.339626", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "LNL" + }, + { + "id": "329687", + "ident": "MX-0914", + "type": "small_airport", + "name": "Mesa del Huracán Airport", + "latitude_deg": "29.679606", + "longitude_deg": "-108.251132", + "elevation_ft": "7283", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Madera", + "scheduled_service": "no", + "local_code": "MDN" + }, + { + "id": "329688", + "ident": "MX-0915", + "type": "small_airport", + "name": "Santo Niño Airport", + "latitude_deg": "28.265692", + "longitude_deg": "-105.532416", + "elevation_ft": "3825", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Rosales", + "scheduled_service": "no", + "local_code": "STN" + }, + { + "id": "329689", + "ident": "MX-0916", + "type": "heliport", + "name": "Comisión Nacional del Agua Heliport", + "latitude_deg": "19.337423", + "longitude_deg": "-99.189627", + "elevation_ft": "7623", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Coyoacán", + "scheduled_service": "no", + "local_code": "HNF" + }, + { + "id": "329690", + "ident": "MX-0917", + "type": "small_airport", + "name": "Bahía Airstrip", + "latitude_deg": "30.601936", + "longitude_deg": "-112.98109", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Caborca", + "scheduled_service": "no", + "local_code": "BHA" + }, + { + "id": "329691", + "ident": "MX-0918", + "type": "small_airport", + "name": "Yucatan Airstrip", + "latitude_deg": "32.613952", + "longitude_deg": "-115.083503", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "YTN" + }, + { + "id": "329692", + "ident": "MX-0919", + "type": "heliport", + "name": "Torre Mayor Heliport", + "latitude_deg": "19.424278", + "longitude_deg": "-99.175421", + "elevation_ft": "8117", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "HMT" + }, + { + "id": "329693", + "ident": "MX-0920", + "type": "small_airport", + "name": "La Miseria Airstrip", + "latitude_deg": "24.959335", + "longitude_deg": "-107.606945", + "elevation_ft": "239", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "LMS" + }, + { + "id": "329694", + "ident": "MX-0921", + "type": "small_airport", + "name": "La Mezquitosa Airport", + "latitude_deg": "27.652889", + "longitude_deg": "-100.530917", + "elevation_ft": "883", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Juárez", + "scheduled_service": "no", + "local_code": "RMZ" + }, + { + "id": "329695", + "ident": "MX-0922", + "type": "heliport", + "name": "Hospital General de Veracruz Heliport", + "latitude_deg": "19.1853", + "longitude_deg": "-96.131581", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Veracruz", + "scheduled_service": "no", + "local_code": "HXY" + }, + { + "id": "329696", + "ident": "MX-0923", + "type": "small_airport", + "name": "Las Cartucheras Airport", + "latitude_deg": "29.142653", + "longitude_deg": "-107.103343", + "elevation_ft": "6680", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Namiquipa", + "scheduled_service": "no", + "local_code": "ALQ" + }, + { + "id": "329697", + "ident": "MX-0924", + "type": "small_airport", + "name": "Tigre Airport", + "latitude_deg": "27.405496", + "longitude_deg": "-109.963084", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cajeme", + "scheduled_service": "no", + "local_code": "TGS" + }, + { + "id": "329698", + "ident": "MX-0925", + "type": "small_airport", + "name": "El Bajío Airstrip", + "latitude_deg": "24.932938", + "longitude_deg": "-106.627952", + "elevation_ft": "7387", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Santiago Papasquiaro", + "scheduled_service": "no", + "local_code": "BAJ" + }, + { + "id": "329704", + "ident": "MX-0926", + "type": "small_airport", + "name": "Ursulo Galvan Airstrip", + "latitude_deg": "28.06607", + "longitude_deg": "-110.623712", + "elevation_ft": "157", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Empalme", + "scheduled_service": "no", + "local_code": "UGA" + }, + { + "id": "329705", + "ident": "MX-0927", + "type": "heliport", + "name": "Fiesta Americana Heliport", + "latitude_deg": "19.149444", + "longitude_deg": "-96.094444", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Boca del Rio", + "scheduled_service": "no", + "local_code": "HFM" + }, + { + "id": "329706", + "ident": "MX-0928", + "type": "heliport", + "name": "Villa Angeles II Heliport", + "latitude_deg": "16.832464", + "longitude_deg": "-99.86433", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Acapulco", + "scheduled_service": "no", + "local_code": "HVO" + }, + { + "id": "329707", + "ident": "MX-0929", + "type": "small_airport", + "name": "San António Airport", + "latitude_deg": "24.962257", + "longitude_deg": "-107.641944", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "SAN" + }, + { + "id": "329708", + "ident": "MX-0930", + "type": "heliport", + "name": "Villa Angeles I Heliport", + "latitude_deg": "19.314639", + "longitude_deg": "-99.205581", + "elevation_ft": "7848", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Alvaro Obregon", + "scheduled_service": "no", + "local_code": "HOV" + }, + { + "id": "329709", + "ident": "MX-0931", + "type": "small_airport", + "name": "La Cienega Airstrip", + "latitude_deg": "24.863863", + "longitude_deg": "-106.603749", + "elevation_ft": "6974", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Santiago Papasquiaro", + "scheduled_service": "no", + "local_code": "CES" + }, + { + "id": "329710", + "ident": "MX-0932", + "type": "heliport", + "name": "Hospital ISSSTE Morelia Heliport", + "latitude_deg": "19.73348", + "longitude_deg": "-101.105081", + "elevation_ft": "6194", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Morelia", + "scheduled_service": "no", + "local_code": "HHX" + }, + { + "id": "329711", + "ident": "MX-0933", + "type": "heliport", + "name": "Inite Heliport", + "latitude_deg": "16.828557", + "longitude_deg": "-99.914417", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Acapulco", + "scheduled_service": "no", + "local_code": "HIE" + }, + { + "id": "329712", + "ident": "MX-0934", + "type": "small_airport", + "name": "Los Pipos Airport", + "latitude_deg": "20.309194", + "longitude_deg": "-97.323028", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Papantla", + "scheduled_service": "no", + "local_code": "LOE" + }, + { + "id": "329713", + "ident": "MX-0935", + "type": "small_airport", + "name": "San Joaquin Aitport", + "latitude_deg": "27.352154", + "longitude_deg": "-109.965952", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cajeme", + "scheduled_service": "no", + "local_code": "SNQ" + }, + { + "id": "330065", + "ident": "MX-0936", + "type": "heliport", + "name": "Los Leones Heliport", + "latitude_deg": "28.739082", + "longitude_deg": "-105.981582", + "elevation_ft": "4461", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Chihuahua", + "scheduled_service": "no", + "local_code": "HLW" + }, + { + "id": "330066", + "ident": "MX-0937", + "type": "heliport", + "name": "Helimaz Chiapas", + "latitude_deg": "14.772546", + "longitude_deg": "-92.382491", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Tapachula", + "scheduled_service": "no", + "local_code": "HLF" + }, + { + "id": "330085", + "ident": "MX-0938", + "type": "heliport", + "name": "C5i Guanajuato", + "latitude_deg": "21.010381", + "longitude_deg": "-101.513821", + "elevation_ft": "5896", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "Silao", + "scheduled_service": "no", + "local_code": "HZP" + }, + { + "id": "330086", + "ident": "MX-0939", + "type": "small_airport", + "name": "La Frontera Airstrip", + "latitude_deg": "27.0403", + "longitude_deg": "-105.046919", + "elevation_ft": "47", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Villa Lopez", + "scheduled_service": "no", + "local_code": "LFR" + }, + { + "id": "330111", + "ident": "MX-0940", + "type": "heliport", + "name": "Banorte Talapan III Heliport", + "latitude_deg": "19.313581", + "longitude_deg": "-99.136832", + "elevation_ft": "7460", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Tlalpan", + "scheduled_service": "no", + "local_code": "HFB" + }, + { + "id": "330117", + "ident": "MX-0941", + "type": "small_airport", + "name": "Bonito Valle Airport", + "latitude_deg": "32.576638", + "longitude_deg": "-114.983387", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "BOV" + }, + { + "id": "330118", + "ident": "MX-0942", + "type": "heliport", + "name": "Tlalnepantla de Baz Heliport", + "latitude_deg": "19.538814", + "longitude_deg": "-99.196401", + "elevation_ft": "7474", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Tlalnepantla de Baz", + "scheduled_service": "no", + "local_code": "HEZ" + }, + { + "id": "330119", + "ident": "MX-0943", + "type": "heliport", + "name": "Hotel Conrad Heliport", + "latitude_deg": "22.138441", + "longitude_deg": "-101.030374", + "elevation_ft": "6102", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "San Luis Potosi", + "scheduled_service": "no", + "local_code": "HON" + }, + { + "id": "330120", + "ident": "MX-0944", + "type": "small_airport", + "name": "Elevate Airport", + "latitude_deg": "19.310365", + "longitude_deg": "-103.642049", + "elevation_ft": "2575", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COL", + "municipality": "Cuauhtemoc", + "scheduled_service": "no", + "local_code": "ELE" + }, + { + "id": "330122", + "ident": "MX-0945", + "type": "heliport", + "name": "Planta Audi Mexico Heliport", + "latitude_deg": "19.216386", + "longitude_deg": "-97.746389", + "elevation_ft": "7743", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "San Jose Chiapa", + "scheduled_service": "no", + "local_code": "HDU" + }, + { + "id": "330129", + "ident": "MX-0946", + "type": "heliport", + "name": "Hípico Cuatrocuatros Heliport", + "latitude_deg": "31.950358", + "longitude_deg": "-116.752431", + "elevation_ft": "561", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "HHF" + }, + { + "id": "330133", + "ident": "MX-0947", + "type": "heliport", + "name": "Aurum Heliport", + "latitude_deg": "25.658536", + "longitude_deg": "-100.342783", + "elevation_ft": "2165", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "San Pedro Garza Garcia", + "scheduled_service": "no", + "local_code": "HIS" + }, + { + "id": "330137", + "ident": "MX-0948", + "type": "heliport", + "name": "Corporativo Nieto Heliport", + "latitude_deg": "20.586111", + "longitude_deg": "-100.370832", + "elevation_ft": "6037", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-QUE", + "municipality": "Querétaro", + "scheduled_service": "no", + "local_code": "HNQ" + }, + { + "id": "330139", + "ident": "MX-0949", + "type": "closed", + "name": "Rancho Calvillo Airstrip", + "latitude_deg": "27.907326", + "longitude_deg": "-101.709848", + "elevation_ft": "1768", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Muzquiz", + "scheduled_service": "no", + "local_code": "RCV" + }, + { + "id": "330140", + "ident": "MX-0950", + "type": "heliport", + "name": "Desarrollo Las Americas Heliport", + "latitude_deg": "20.697928", + "longitude_deg": "-103.373451", + "elevation_ft": "5157", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Guadalajara", + "scheduled_service": "no", + "local_code": "HRD" + }, + { + "id": "330142", + "ident": "MX-0951", + "type": "small_airport", + "name": "8 de Mayo Airstrip", + "latitude_deg": "28.916686", + "longitude_deg": "-111.357124", + "elevation_ft": "312", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Hermosillo", + "scheduled_service": "no", + "local_code": "MAY" + }, + { + "id": "330143", + "ident": "MX-0952", + "type": "heliport", + "name": "Telmex Puebla Heliport", + "latitude_deg": "19.049222", + "longitude_deg": "-98.232417", + "elevation_ft": "7156", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "Puebla", + "scheduled_service": "no", + "local_code": "HSZ" + }, + { + "id": "330144", + "ident": "MX-0953", + "type": "heliport", + "name": "Mexipuerto Ecatepec Heliport", + "latitude_deg": "19.5345", + "longitude_deg": "-99.026752", + "elevation_ft": "7336", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Ecatepec", + "scheduled_service": "yes", + "local_code": "HXE" + }, + { + "id": "330148", + "ident": "MX-0954", + "type": "small_airport", + "name": "Mesa de Los Huicholes Airstrip", + "latitude_deg": "22.251487", + "longitude_deg": "-104.970773", + "elevation_ft": "3763", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "El Nayar", + "scheduled_service": "no", + "local_code": "MDH" + }, + { + "id": "330149", + "ident": "MX-0955", + "type": "small_airport", + "name": "Jesus Maria Airport", + "latitude_deg": "22.264644", + "longitude_deg": "-104.486614", + "elevation_ft": "2454", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "El Nayar", + "scheduled_service": "no", + "local_code": "JMA" + }, + { + "id": "330151", + "ident": "MX-0956", + "type": "small_airport", + "name": "Los Gavilanes Airport", + "latitude_deg": "22.079585", + "longitude_deg": "-104.585335", + "elevation_ft": "4167", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "El Nayar", + "scheduled_service": "no", + "local_code": "GAV" + }, + { + "id": "330152", + "ident": "MX-0957", + "type": "closed", + "name": "El Potrero Airport", + "latitude_deg": "21.341221", + "longitude_deg": "-104.316192", + "elevation_ft": "3937", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "La Yesca", + "scheduled_service": "no", + "local_code": "ELX" + }, + { + "id": "330153", + "ident": "MX-0958", + "type": "heliport", + "name": "Manzanilla Heliport", + "latitude_deg": "20.747618", + "longitude_deg": "-105.386523", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "Bahia de Banderas", + "scheduled_service": "no", + "local_code": "HNY" + }, + { + "id": "330154", + "ident": "MX-0959", + "type": "small_airport", + "name": "Guadalupe Ocotan Airstrip", + "latitude_deg": "22.057279", + "longitude_deg": "-104.295773", + "elevation_ft": "5249", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "La Yesca", + "scheduled_service": "no", + "local_code": "GPE" + }, + { + "id": "330211", + "ident": "MX-0960", + "type": "small_airport", + "name": "El Limón Airport", + "latitude_deg": "23.9542", + "longitude_deg": "-97.784317", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "LMN" + }, + { + "id": "330212", + "ident": "MX-0961", + "type": "heliport", + "name": "SEIDO Heliport", + "latitude_deg": "19.44068", + "longitude_deg": "-99.144342", + "elevation_ft": "7382", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "HJC" + }, + { + "id": "330213", + "ident": "MX-0962", + "type": "closed", + "name": "Rancho El Salto Airstrip", + "latitude_deg": "29.093251", + "longitude_deg": "-100.7641", + "elevation_ft": "968", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Jimenez", + "scheduled_service": "no", + "local_code": "RES" + }, + { + "id": "330214", + "ident": "MX-0963", + "type": "small_airport", + "name": "Luz del Mar Airport", + "latitude_deg": "23.346173", + "longitude_deg": "-97.77891", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "LDM" + }, + { + "id": "330215", + "ident": "MX-0964", + "type": "small_airport", + "name": "El Palmito Airstrip", + "latitude_deg": "25.942433", + "longitude_deg": "-107.143053", + "elevation_ft": "4603", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "PLM" + }, + { + "id": "330219", + "ident": "MX-0965", + "type": "heliport", + "name": "La Muralla IV Platform Helipad", + "latitude_deg": "19.197463", + "longitude_deg": "-95.157592", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Veracruz", + "scheduled_service": "no", + "local_code": "HLN", + "home_link": "https://www.marinetraffic.com/en/ais/details/ships/shipid:413369/mmsi:353960000/imo:8770091/vessel:LA_MURALLA_IV" + }, + { + "id": "330220", + "ident": "MX-0966", + "type": "heliport", + "name": "Corporativo Cervantes Heliport", + "latitude_deg": "19.4405", + "longitude_deg": "-99.202669", + "elevation_ft": "7733", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HCX" + }, + { + "id": "330221", + "ident": "MX-0967", + "type": "heliport", + "name": "Creel Heliport", + "latitude_deg": "27.740385", + "longitude_deg": "-107.632159", + "elevation_ft": "7612", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Bocoyna", + "scheduled_service": "no", + "local_code": "HEE" + }, + { + "id": "330223", + "ident": "MX-0968", + "type": "heliport", + "name": "Inversiones Mineras La Sorpresa Heliport", + "latitude_deg": "24.945271", + "longitude_deg": "-106.254328", + "elevation_ft": "7119", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Santiago Papasquiaro", + "scheduled_service": "no", + "local_code": "HJB" + }, + { + "id": "330224", + "ident": "MX-0969", + "type": "heliport", + "name": "Independencia I Platform Helipad", + "latitude_deg": "19.683333", + "longitude_deg": "-95.785277", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Tuxpan", + "scheduled_service": "no", + "local_code": "HIP" + }, + { + "id": "330225", + "ident": "MX-0970", + "type": "small_airport", + "name": "Santa Rosalia Airstrip", + "latitude_deg": "18.112634", + "longitude_deg": "-93.354523", + "elevation_ft": "548", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Cananea", + "scheduled_service": "no", + "local_code": "SRC" + }, + { + "id": "330226", + "ident": "MX-0971", + "type": "heliport", + "name": "General Rafael Buelna Tenorio Heliport", + "latitude_deg": "25.485986", + "longitude_deg": "-107.926166", + "elevation_ft": "256", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Mocorito", + "scheduled_service": "no", + "local_code": "HLB", + "keywords": "Mario Lopez Valdez" + }, + { + "id": "330227", + "ident": "MX-0972", + "type": "small_airport", + "name": "San Jacinto Tlacotepec Airport", + "latitude_deg": "16.523787", + "longitude_deg": "-97.388194", + "elevation_ft": "3543", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "San Jacinto Tlacotepec", + "scheduled_service": "no", + "local_code": "SJT" + }, + { + "id": "330228", + "ident": "MX-0973", + "type": "small_airport", + "name": "Las Cuevas Airstrip", + "latitude_deg": "16.63535", + "longitude_deg": "-97.574998", + "elevation_ft": "3977", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Santiago Amoltepec", + "scheduled_service": "no", + "local_code": "LCV" + }, + { + "id": "330229", + "ident": "MX-0974", + "type": "small_airport", + "name": "Rodríguez Airport", + "latitude_deg": "26.317875", + "longitude_deg": "-109.029528", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Ahome", + "scheduled_service": "no", + "local_code": "RZZ" + }, + { + "id": "330231", + "ident": "MX-0975", + "type": "small_airport", + "name": "Los Eucaliptos Airport", + "latitude_deg": "25.6326", + "longitude_deg": "-108.614035", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "ETS" + }, + { + "id": "330232", + "ident": "MX-0976", + "type": "heliport", + "name": "Tango Heliport", + "latitude_deg": "20.486025", + "longitude_deg": "-97.512659", + "elevation_ft": "194", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Coatzintla", + "scheduled_service": "no", + "local_code": "HGQ" + }, + { + "id": "330243", + "ident": "MX-0977", + "type": "heliport", + "name": "Granja El Angel Heliport", + "latitude_deg": "18.893752", + "longitude_deg": "-99.005321", + "elevation_ft": "4216", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MOR", + "municipality": "Yautepec", + "scheduled_service": "no", + "local_code": "HGY" + }, + { + "id": "330244", + "ident": "MX-0978", + "type": "small_airport", + "name": "Santa Patricia Airport", + "latitude_deg": "27.471326", + "longitude_deg": "-110.081912", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cajeme", + "scheduled_service": "no", + "local_code": "ONE" + }, + { + "id": "330245", + "ident": "MX-0979", + "type": "heliport", + "name": "Plaza Insurgentes Sur (4) Heliport", + "latitude_deg": "19.351939", + "longitude_deg": "-99.187649", + "elevation_ft": "7782", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Alvaro Obregon", + "scheduled_service": "no", + "local_code": "HPF" + }, + { + "id": "330247", + "ident": "MX-0980", + "type": "small_airport", + "name": "Charole Airport", + "latitude_deg": "26.528028", + "longitude_deg": "-111.465389", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Loreto", + "scheduled_service": "no", + "local_code": "CHA" + }, + { + "id": "330248", + "ident": "MX-0981", + "type": "small_airport", + "name": "Nueva Laguna Blanca, S.A. de C.V. Airport", + "latitude_deg": "18.133573", + "longitude_deg": "-91.769577", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Palizada", + "scheduled_service": "no", + "local_code": "NLB" + }, + { + "id": "330249", + "ident": "MX-0982", + "type": "small_airport", + "name": "El Fenix Airport", + "latitude_deg": "19.018395", + "longitude_deg": "-102.285012", + "elevation_ft": "1037", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Parácuaro", + "scheduled_service": "no", + "local_code": "FNY", + "keywords": "Aerofumigaciones F N Y" + }, + { + "id": "330250", + "ident": "MX-0983", + "type": "small_airport", + "name": "Promesa Airport", + "latitude_deg": "22.782703", + "longitude_deg": "-98.691906", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Gonzalez", + "scheduled_service": "no", + "local_code": "PDM" + }, + { + "id": "330251", + "ident": "MX-0984", + "type": "small_airport", + "name": "El Capitan Airport", + "latitude_deg": "25.709678", + "longitude_deg": "-108.597702", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Sinaloa de Leyva", + "scheduled_service": "no", + "local_code": "EKP" + }, + { + "id": "330257", + "ident": "MX-0985", + "type": "heliport", + "name": "Grupo Tradeco Heliport", + "latitude_deg": "19.362644", + "longitude_deg": "-99.183222", + "elevation_ft": "7733", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Benito Juárez", + "scheduled_service": "no", + "local_code": "HGC" + }, + { + "id": "330261", + "ident": "MX-0986", + "type": "heliport", + "name": "Destiladeras Cabo Este Heliport", + "latitude_deg": "23.163403", + "longitude_deg": "-109.491564", + "elevation_ft": "109", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Los Cabos", + "scheduled_service": "no", + "local_code": "HDE" + }, + { + "id": "330262", + "ident": "MX-0987", + "type": "heliport", + "name": "World Plaza Heliport", + "latitude_deg": "19.359685", + "longitude_deg": "-99.271258", + "elevation_ft": "8944", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuajimalpa", + "scheduled_service": "no", + "local_code": "HWP" + }, + { + "id": "330263", + "ident": "MX-0988", + "type": "heliport", + "name": "Bicentenario Municipio de Aguascalientes Heliport", + "latitude_deg": "21.837057", + "longitude_deg": "-102.286245", + "elevation_ft": "6181", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-AGU", + "municipality": "Aguascalientes", + "scheduled_service": "no", + "local_code": "HBM" + }, + { + "id": "330264", + "ident": "MX-0989", + "type": "heliport", + "name": "Hotel Centro Histórico Heliport", + "latitude_deg": "19.434589", + "longitude_deg": "-99.146434", + "elevation_ft": "7546", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "HOY" + }, + { + "id": "330266", + "ident": "MX-0990", + "type": "small_airport", + "name": "San José de Los Leones Airport", + "latitude_deg": "24.272572", + "longitude_deg": "-97.79021", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "SDL" + }, + { + "id": "330267", + "ident": "MX-0991", + "type": "closed", + "name": "San Pedro Airport", + "latitude_deg": "22.649481", + "longitude_deg": "-99.175271", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Antiguo Morelos", + "scheduled_service": "no", + "local_code": "SPY" + }, + { + "id": "330268", + "ident": "MX-0992", + "type": "heliport", + "name": "Hospital Cristus Muguerza Helipad", + "latitude_deg": "25.589176", + "longitude_deg": "-100.25841", + "elevation_ft": "1957", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Monterrey", + "scheduled_service": "no", + "local_code": "HZO" + }, + { + "id": "330269", + "ident": "MX-0993", + "type": "small_airport", + "name": "El Guayabo Airstrip", + "latitude_deg": "25.822401", + "longitude_deg": "-107.274996", + "elevation_ft": "3986", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "AGY" + }, + { + "id": "330270", + "ident": "MX-0994", + "type": "small_airport", + "name": "El Puerto Airstrip", + "latitude_deg": "25.938336", + "longitude_deg": "-107.15732", + "elevation_ft": "4362", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "PTO" + }, + { + "id": "330271", + "ident": "MX-0995", + "type": "closed", + "name": "Angeles Espinosa Yglesias Heliport", + "latitude_deg": "19.956023", + "longitude_deg": "-98.063448", + "elevation_ft": "8543", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "Zacatlan", + "scheduled_service": "no", + "local_code": "HAE" + }, + { + "id": "330272", + "ident": "MX-0996", + "type": "small_airport", + "name": "Mazfly S.C. Airport", + "latitude_deg": "23.255225", + "longitude_deg": "-106.214995", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Mazatlán", + "scheduled_service": "no", + "local_code": "MSC", + "keywords": "El Roble" + }, + { + "id": "330273", + "ident": "MX-0997", + "type": "heliport", + "name": "Punta Santa Fe Heliport", + "latitude_deg": "19.364643", + "longitude_deg": "-99.266804", + "elevation_ft": "8451", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Alvaro Obregon", + "scheduled_service": "no", + "local_code": "HFC" + }, + { + "id": "330276", + "ident": "MX-0998", + "type": "heliport", + "name": "I.M.S.S. Heliport", + "latitude_deg": "19.423293", + "longitude_deg": "-99.173822", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Benito Juarez", + "scheduled_service": "no", + "local_code": "HWI" + }, + { + "id": "330277", + "ident": "MX-0999", + "type": "small_airport", + "name": "Chicorrabias Airport", + "latitude_deg": "25.543494", + "longitude_deg": "-108.57037", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "CHB" + }, + { + "id": "330278", + "ident": "MX-1000", + "type": "heliport", + "name": "Lic. Adolfo Lopez Mateos Heliport", + "latitude_deg": "19.358478", + "longitude_deg": "-99.173164", + "elevation_ft": "7448", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Benito Juarez", + "scheduled_service": "no", + "local_code": "HLM" + }, + { + "id": "330293", + "ident": "MX-1001", + "type": "heliport", + "name": "Los Pirules Heliport", + "latitude_deg": "19.508811", + "longitude_deg": "-99.23216", + "elevation_ft": "7572", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Naucalpan", + "scheduled_service": "no", + "local_code": "HAP" + }, + { + "id": "330294", + "ident": "MX-1002", + "type": "small_airport", + "name": "Estrella Airport", + "latitude_deg": "28.639387", + "longitude_deg": "-108.773046", + "elevation_ft": "4551", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Sahuaripa", + "scheduled_service": "no", + "local_code": "ESA" + }, + { + "id": "330295", + "ident": "MX-1003", + "type": "small_airport", + "name": "Rancho Agua Buena Airport", + "latitude_deg": "27.384008", + "longitude_deg": "-101.154392", + "elevation_ft": "1158", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Progreso", + "scheduled_service": "no", + "local_code": "RRA" + }, + { + "id": "330296", + "ident": "MX-1004", + "type": "small_airport", + "name": "El Arenoso Airport", + "latitude_deg": "28.219292", + "longitude_deg": "-110.587661", + "elevation_ft": "367", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Guaymas", + "scheduled_service": "no", + "local_code": "ELA" + }, + { + "id": "330297", + "ident": "MX-1005", + "type": "small_airport", + "name": "Acatita Airport", + "latitude_deg": "25.319443", + "longitude_deg": "-108.03553", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Angostura", + "scheduled_service": "no", + "local_code": "ACT" + }, + { + "id": "330298", + "ident": "MX-1006", + "type": "small_airport", + "name": "Rancho El Girasol Heliport", + "latitude_deg": "20.962883", + "longitude_deg": "-100.757674", + "elevation_ft": "6499", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "San Miguel de Allende", + "scheduled_service": "no", + "local_code": "HHV" + }, + { + "id": "330299", + "ident": "MX-1007", + "type": "heliport", + "name": "Torre Medica Angeles Heliport", + "latitude_deg": "19.311436", + "longitude_deg": "-99.220995", + "elevation_ft": "8074", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Magdalena Contreras", + "scheduled_service": "no", + "local_code": "HNT" + }, + { + "id": "330301", + "ident": "MX-1008", + "type": "heliport", + "name": "Grupo Rio San Juan Heliport", + "latitude_deg": "26.05922", + "longitude_deg": "-98.368308", + "elevation_ft": "227", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Reynosa", + "scheduled_service": "no", + "local_code": "HGS" + }, + { + "id": "330302", + "ident": "MX-1009", + "type": "small_airport", + "name": "Los Mangos Airport", + "latitude_deg": "24.684567", + "longitude_deg": "-107.546934", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Licenciado Benito Juárez", + "scheduled_service": "no", + "local_code": "MGS" + }, + { + "id": "330729", + "ident": "MX-1010", + "type": "small_airport", + "name": "Piedras Blancas Airport", + "latitude_deg": "25.294266", + "longitude_deg": "-100.016139", + "elevation_ft": "1476", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Allende", + "scheduled_service": "no", + "local_code": "PNL" + }, + { + "id": "330730", + "ident": "MX-1011", + "type": "small_airport", + "name": "La Anacua Airport", + "latitude_deg": "23.410833", + "longitude_deg": "-97.832639", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "LNC" + }, + { + "id": "330732", + "ident": "MX-1012", + "type": "small_airport", + "name": "Santa Cecilia Airstrip", + "latitude_deg": "28.399726", + "longitude_deg": "-101.280801", + "elevation_ft": "2001", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no", + "local_code": "SCE" + }, + { + "id": "330733", + "ident": "MX-1013", + "type": "small_airport", + "name": "El Ahijadero Airport", + "latitude_deg": "18.752336", + "longitude_deg": "-96.197277", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Tlalixcoyan", + "scheduled_service": "no", + "local_code": "AHO" + }, + { + "id": "330734", + "ident": "MX-1014", + "type": "heliport", + "name": "Humberto Lobo Morales Heliport", + "latitude_deg": "25.64295", + "longitude_deg": "-100.359967", + "elevation_ft": "2119", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Garza Garcia", + "scheduled_service": "no", + "local_code": "HHL" + }, + { + "id": "330735", + "ident": "MX-1015", + "type": "heliport", + "name": "Puebla Inversionista Heliport", + "latitude_deg": "19.329689", + "longitude_deg": "-99.214151", + "elevation_ft": "7743", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Magdalena Contreras", + "scheduled_service": "no", + "local_code": "HPI" + }, + { + "id": "330736", + "ident": "MX-1016", + "type": "heliport", + "name": "Milenio Diario Antes Novedades Editores Heliport", + "latitude_deg": "19.431855", + "longitude_deg": "-99.148564", + "elevation_ft": "7402", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "HMD" + }, + { + "id": "330737", + "ident": "MX-1017", + "type": "small_airport", + "name": "Jose Angel Espinoza Ferrusquilla Airport", + "latitude_deg": "26.719957", + "longitude_deg": "-108.332229", + "elevation_ft": "787", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Choix", + "scheduled_service": "no", + "local_code": "FRR", + "keywords": "CHX" + }, + { + "id": "330738", + "ident": "MX-1018", + "type": "heliport", + "name": "Pegaso-Cozumel Heliport", + "latitude_deg": "20.474639", + "longitude_deg": "-86.975889", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Cozumel", + "scheduled_service": "no", + "local_code": "HCZ" + }, + { + "id": "330739", + "ident": "MX-1019", + "type": "small_airport", + "name": "Quinta Palos Airport", + "latitude_deg": "20.484128", + "longitude_deg": "-100.089872", + "elevation_ft": "6230", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-QUE", + "municipality": "Pedro Escobedo", + "scheduled_service": "no", + "local_code": "QPA", + "keywords": "Aerofumigaciones de Querétaro" + }, + { + "id": "330742", + "ident": "MX-1020", + "type": "small_airport", + "name": "Rancho Santo Domingo Airport", + "latitude_deg": "22.601441", + "longitude_deg": "-97.93166", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Altamira", + "scheduled_service": "no", + "local_code": "SDI" + }, + { + "id": "330743", + "ident": "MX-1021", + "type": "heliport", + "name": "ISSSTE Tultitlan Hospital Helipad", + "latitude_deg": "19.62867", + "longitude_deg": "-99.163741", + "elevation_ft": "7438", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Tultitlan", + "scheduled_service": "no", + "local_code": "HHT" + }, + { + "id": "330744", + "ident": "MX-1022", + "type": "small_airport", + "name": "Teras Airport", + "latitude_deg": "27.226051", + "longitude_deg": "-110.00111", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cajeme", + "scheduled_service": "no", + "local_code": "TRX" + }, + { + "id": "330745", + "ident": "MX-1023", + "type": "small_airport", + "name": "Rancho El Coyote Airport", + "latitude_deg": "27.949347", + "longitude_deg": "-100.284581", + "elevation_ft": "787", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Guerrero", + "scheduled_service": "no", + "local_code": "CYO" + }, + { + "id": "330779", + "ident": "MX-1024", + "type": "heliport", + "name": "Maritima y Servicios Heliport", + "latitude_deg": "19.079971", + "longitude_deg": "-104.290852", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COL", + "municipality": "Manzanillo", + "scheduled_service": "no", + "local_code": "HRV" + }, + { + "id": "330780", + "ident": "MX-1025", + "type": "small_airport", + "name": "Valle del Rosario Airport", + "latitude_deg": "26.335639", + "longitude_deg": "-101.545", + "elevation_ft": "4180", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Cuatro Cienegas", + "scheduled_service": "no", + "local_code": "VRO" + }, + { + "id": "330933", + "ident": "MX-1026", + "type": "small_airport", + "name": "El Divisadero Airport", + "latitude_deg": "27.562272", + "longitude_deg": "-102.120187", + "elevation_ft": "4413", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ocampo", + "scheduled_service": "no", + "local_code": "EDV" + }, + { + "id": "330934", + "ident": "MX-1027", + "type": "small_airport", + "name": "El Pelon Airport", + "latitude_deg": "27.218032", + "longitude_deg": "-104.841307", + "elevation_ft": "4400", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ciudad Juarez", + "scheduled_service": "no", + "local_code": "ELP" + }, + { + "id": "330936", + "ident": "MX-1028", + "type": "small_airport", + "name": "Carricitos Airport", + "latitude_deg": "28.047666", + "longitude_deg": "-100.38445", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Guerrero", + "scheduled_service": "no", + "local_code": "CCS" + }, + { + "id": "330941", + "ident": "MX-1029", + "type": "small_airport", + "name": "Rancho San Francisco Airport", + "latitude_deg": "25.47675", + "longitude_deg": "-99.549334", + "elevation_ft": "617", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "General Terán", + "scheduled_service": "no", + "local_code": "RSK" + }, + { + "id": "330942", + "ident": "MX-1030", + "type": "small_airport", + "name": "San José Airport", + "latitude_deg": "27.848115", + "longitude_deg": "-104.204827", + "elevation_ft": "5157", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Camargo", + "scheduled_service": "yes", + "local_code": "SJE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jorge_Enrique_Gonz%C3%A1lez_Torres_Airport" + }, + { + "id": "330968", + "ident": "MX-1031", + "type": "small_airport", + "name": "Rancho El Retiro", + "latitude_deg": "27.335733", + "longitude_deg": "-105.120207", + "elevation_ft": "4160", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Valle de Allende", + "scheduled_service": "no", + "local_code": "RTC" + }, + { + "id": "330971", + "ident": "MX-1032", + "type": "small_airport", + "name": "Islita Airport", + "latitude_deg": "32.39389", + "longitude_deg": "-114.865157", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "San Luis Río Colorado", + "scheduled_service": "no", + "local_code": "ITA" + }, + { + "id": "330972", + "ident": "MX-1033", + "type": "small_airport", + "name": "Pista Ocampo", + "latitude_deg": "28.189101", + "longitude_deg": "-108.382767", + "elevation_ft": "6798", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ocampo", + "scheduled_service": "no", + "local_code": "PTP" + }, + { + "id": "330973", + "ident": "MX-1034", + "type": "heliport", + "name": "Medica Sur Heliport", + "latitude_deg": "19.29791", + "longitude_deg": "-99.16207", + "elevation_ft": "7480", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Tlalpan", + "scheduled_service": "no", + "local_code": "HMQ" + }, + { + "id": "330974", + "ident": "MX-1035", + "type": "heliport", + "name": "Centenario GR Platform Helipad", + "latitude_deg": "19.094167", + "longitude_deg": "-94.831389", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Veracruz", + "scheduled_service": "no", + "local_code": "HII" + }, + { + "id": "330975", + "ident": "MX-1036", + "type": "small_airport", + "name": "Las Gemelas Airport", + "latitude_deg": "25.883029", + "longitude_deg": "-98.121273", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Rio Bravo", + "scheduled_service": "no", + "local_code": "VMV" + }, + { + "id": "330976", + "ident": "MX-1037", + "type": "small_airport", + "name": "Coyotillos Airport", + "latitude_deg": "27.681488", + "longitude_deg": "-100.594043", + "elevation_ft": "912", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Juárez", + "scheduled_service": "no", + "local_code": "CTL" + }, + { + "id": "330977", + "ident": "MX-1038", + "type": "closed", + "name": "El Naranjo", + "latitude_deg": "25.013333", + "longitude_deg": "-99.477222", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "NJO" + }, + { + "id": "330978", + "ident": "MX-1039", + "type": "small_airport", + "name": "Tototan Airstrip", + "latitude_deg": "18.367495", + "longitude_deg": "-102.772036", + "elevation_ft": "1148", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Aguililla", + "scheduled_service": "no", + "local_code": "TTO" + }, + { + "id": "330979", + "ident": "MX-1040", + "type": "small_airport", + "name": "Aguascalientes Airport", + "latitude_deg": "32.27852", + "longitude_deg": "-115.115764", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "ASS" + }, + { + "id": "330980", + "ident": "MX-1041", + "type": "closed", + "name": "Cerros Prietos Airport", + "latitude_deg": "27.198565", + "longitude_deg": "-104.978905", + "elevation_ft": "4396", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ciudad Jimenez", + "scheduled_service": "no", + "local_code": "CPZ" + }, + { + "id": "330986", + "ident": "MX-1042", + "type": "heliport", + "name": "Hospital San Jose Tec de Monterrey Heliport", + "latitude_deg": "25.673644", + "longitude_deg": "-100.348584", + "elevation_ft": "1949", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Monterrey", + "scheduled_service": "no", + "local_code": "HJS" + }, + { + "id": "330987", + "ident": "MX-1043", + "type": "heliport", + "name": "Moras Heliport", + "latitude_deg": "19.363866", + "longitude_deg": "-99.175854", + "elevation_ft": "7441", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Benito Juarez", + "scheduled_service": "no", + "local_code": "HMV" + }, + { + "id": "330988", + "ident": "MX-1044", + "type": "heliport", + "name": "Hospital Ángeles de Xalapa Heliport", + "latitude_deg": "19.515619", + "longitude_deg": "-96.881742", + "elevation_ft": "4254", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Xalapa", + "scheduled_service": "no", + "local_code": "HAL" + }, + { + "id": "330989", + "ident": "MX-1045", + "type": "heliport", + "name": "Servicios Aéreos del Estado de México Heliport", + "latitude_deg": "19.256853", + "longitude_deg": "-99.716511", + "elevation_ft": "9121", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Cacalomacan", + "scheduled_service": "no", + "local_code": "HES" + }, + { + "id": "330990", + "ident": "MX-1046", + "type": "heliport", + "name": "Aero Anáhuac Heliport", + "latitude_deg": "19.516706", + "longitude_deg": "-100.41015", + "elevation_ft": "7546", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Zitacuaro", + "scheduled_service": "no", + "local_code": "HZI" + }, + { + "id": "330991", + "ident": "MX-1047", + "type": "heliport", + "name": "Xitle Heliport", + "latitude_deg": "19.287744", + "longitude_deg": "-99.149078", + "elevation_ft": "7717", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Tlalpan", + "scheduled_service": "no", + "local_code": "HXI" + }, + { + "id": "330992", + "ident": "MX-1048", + "type": "heliport", + "name": "Centro Nacional de Rehabilitacion", + "latitude_deg": "19.289063", + "longitude_deg": "-99.148952", + "elevation_ft": "7502", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Tlalpan", + "scheduled_service": "no", + "local_code": "HSS" + }, + { + "id": "331491", + "ident": "MX-1049", + "type": "small_airport", + "name": "San Jose Produce Airport", + "latitude_deg": "17.957582", + "longitude_deg": "-93.25147", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Reforma", + "scheduled_service": "no", + "local_code": "SPJ" + }, + { + "id": "331492", + "ident": "MX-1050", + "type": "small_airport", + "name": "Jagueyes Airport", + "latitude_deg": "29.243539", + "longitude_deg": "-107.081405", + "elevation_ft": "6460", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Namiquipa", + "scheduled_service": "no", + "local_code": "JAG" + }, + { + "id": "331494", + "ident": "MX-1051", + "type": "heliport", + "name": "Centro Medico Nacional 20 de Noviembre Helipad", + "latitude_deg": "19.373043", + "longitude_deg": "-99.171158", + "elevation_ft": "7418", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Benito Juarez", + "scheduled_service": "no", + "local_code": "HNB" + }, + { + "id": "331495", + "ident": "MX-1052", + "type": "small_airport", + "name": "Campo Patricia Airport", + "latitude_deg": "24.549778", + "longitude_deg": "-107.440116", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "PTI" + }, + { + "id": "331520", + "ident": "MX-1053", + "type": "small_airport", + "name": "El Tigre Airport", + "latitude_deg": "25.139332", + "longitude_deg": "-106.896353", + "elevation_ft": "1969", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "ETG" + }, + { + "id": "331521", + "ident": "MX-1054", + "type": "small_airport", + "name": "Huepaverachi Airport", + "latitude_deg": "29.533136", + "longitude_deg": "-108.99295", + "elevation_ft": "2625", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Nácori Chico", + "scheduled_service": "no", + "local_code": "HUV" + }, + { + "id": "331523", + "ident": "MX-1055", + "type": "heliport", + "name": "Marina Vallarta Heliport", + "latitude_deg": "20.653186", + "longitude_deg": "-105.244269", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Puerto Vallarta", + "scheduled_service": "no", + "local_code": "HVA" + }, + { + "id": "331558", + "ident": "MX-1056", + "type": "small_airport", + "name": "Cedro Solo Airstrip", + "latitude_deg": "28.507972", + "longitude_deg": "-101.408649", + "elevation_ft": "2651", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no", + "local_code": "CDO" + }, + { + "id": "331559", + "ident": "MX-1057", + "type": "small_airport", + "name": "Aguaje Blanco Airstrip", + "latitude_deg": "25.571001", + "longitude_deg": "-104.884563", + "elevation_ft": "4951", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Inde", + "scheduled_service": "no", + "local_code": "AGB" + }, + { + "id": "331560", + "ident": "MX-1058", + "type": "small_airport", + "name": "Los Napuchis Airport", + "latitude_deg": "27.321838", + "longitude_deg": "-107.515543", + "elevation_ft": "7546", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guachochi", + "scheduled_service": "no", + "local_code": "NAA" + }, + { + "id": "331561", + "ident": "MX-1059", + "type": "small_airport", + "name": "La Pajarera Airport", + "latitude_deg": "20.152327", + "longitude_deg": "-96.945939", + "elevation_ft": "144", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "San Rafael", + "scheduled_service": "no", + "local_code": "LPV" + }, + { + "id": "331562", + "ident": "MX-1060", + "type": "small_airport", + "name": "El Limon de Los Peña Airstrip", + "latitude_deg": "24.365724", + "longitude_deg": "-106.433856", + "elevation_ft": "4954", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "ELI" + }, + { + "id": "331563", + "ident": "MX-1061", + "type": "small_airport", + "name": "La Lagunita Airstrip", + "latitude_deg": "24.30658", + "longitude_deg": "-106.441546", + "elevation_ft": "4823", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "LLW" + }, + { + "id": "331564", + "ident": "MX-1062", + "type": "small_airport", + "name": "Mesa Larga Airport", + "latitude_deg": "26.518321", + "longitude_deg": "-107.68036", + "elevation_ft": "7808", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Morelos", + "scheduled_service": "no", + "local_code": "MLF" + }, + { + "id": "331565", + "ident": "MX-1063", + "type": "small_airport", + "name": "Paredones Airport", + "latitude_deg": "29.949722", + "longitude_deg": "-114.511389", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "PRD" + }, + { + "id": "331566", + "ident": "MX-1064", + "type": "small_airport", + "name": "Masahiashi Airport", + "latitude_deg": "26.504838", + "longitude_deg": "-107.730512", + "elevation_ft": "7257", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Morelos", + "scheduled_service": "no", + "local_code": "MML" + }, + { + "id": "331571", + "ident": "MX-1065", + "type": "heliport", + "name": "Bardahl Toluca Heliport", + "latitude_deg": "19.382639", + "longitude_deg": "-99.57673", + "elevation_ft": "8465", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Toluca", + "scheduled_service": "no", + "local_code": "HTD" + }, + { + "id": "331572", + "ident": "MX-1066", + "type": "heliport", + "name": "Banco del Bajio Helipad", + "latitude_deg": "21.167345", + "longitude_deg": "-101.691294", + "elevation_ft": "6086", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "León", + "scheduled_service": "no", + "local_code": "HUD" + }, + { + "id": "331573", + "ident": "MX-1067", + "type": "heliport", + "name": "Hospital General de Alta Resolucion, ISSSTE Morelos Helipad", + "latitude_deg": "18.847314", + "longitude_deg": "-99.197565", + "elevation_ft": "4157", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MOR", + "municipality": "Emiliano Zapata", + "scheduled_service": "no", + "local_code": "HGR" + }, + { + "id": "331574", + "ident": "MX-1068", + "type": "heliport", + "name": "Toyota Heliport", + "latitude_deg": "32.498443", + "longitude_deg": "-116.72252", + "elevation_ft": "967", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Tecate", + "scheduled_service": "no", + "local_code": "HYT" + }, + { + "id": "331575", + "ident": "MX-1069", + "type": "heliport", + "name": "ISSSTE Querertaro Hospital Helipad", + "latitude_deg": "20.593213", + "longitude_deg": "-100.407085", + "elevation_ft": "6063", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-QUE", + "municipality": "Querertaro", + "scheduled_service": "no", + "local_code": "HIZ" + }, + { + "id": "331576", + "ident": "MX-1070", + "type": "heliport", + "name": "Santa Fe 443 Helipad", + "latitude_deg": "19.361843", + "longitude_deg": "-99.268016", + "elevation_ft": "8924", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuajimalpa", + "scheduled_service": "no", + "local_code": "HSA" + }, + { + "id": "331650", + "ident": "MX-1071", + "type": "small_airport", + "name": "Maran Airport", + "latitude_deg": "32.538278", + "longitude_deg": "-115.423278", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "MRP" + }, + { + "id": "331651", + "ident": "MX-1072", + "type": "small_airport", + "name": "El Siete Airport", + "latitude_deg": "22.601557", + "longitude_deg": "-98.914564", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Ciudad Mante", + "scheduled_service": "no", + "local_code": "STE" + }, + { + "id": "331652", + "ident": "MX-1073", + "type": "heliport", + "name": "Torre Zentrum Heliport", + "latitude_deg": "19.358469", + "longitude_deg": "-99.273183", + "elevation_ft": "8980", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuajimalpa", + "scheduled_service": "no", + "local_code": "HZN" + }, + { + "id": "331653", + "ident": "MX-1074", + "type": "small_airport", + "name": "Rancho Los Pinos Airport", + "latitude_deg": "22.755741", + "longitude_deg": "-98.829013", + "elevation_ft": "197", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Ciudad Mante", + "scheduled_service": "no", + "local_code": "RPU" + }, + { + "id": "331654", + "ident": "MX-1075", + "type": "small_airport", + "name": "Rancho La Joya Airport", + "latitude_deg": "26.301306", + "longitude_deg": "-99.635639", + "elevation_ft": "741", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Agualeguas", + "scheduled_service": "no", + "local_code": "RHD" + }, + { + "id": "331655", + "ident": "MX-1076", + "type": "heliport", + "name": "Hotel Terranova Heliport", + "latitude_deg": "18.112015", + "longitude_deg": "-94.440509", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Coatzacoalcos", + "scheduled_service": "no", + "local_code": "HTU" + }, + { + "id": "331656", + "ident": "MX-1077", + "type": "small_airport", + "name": "Rancho Peñitas Airport", + "latitude_deg": "22.748804", + "longitude_deg": "-98.654265", + "elevation_ft": "154", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Gonzalez", + "scheduled_service": "no", + "local_code": "RPW" + }, + { + "id": "331750", + "ident": "MX-1078", + "type": "small_airport", + "name": "Rancho Las Palmas", + "latitude_deg": "25.218083", + "longitude_deg": "-99.919583", + "elevation_ft": "1509", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Montemorelos", + "scheduled_service": "no", + "local_code": "CSJ" + }, + { + "id": "331751", + "ident": "MX-1079", + "type": "small_airport", + "name": "Morelos Airport", + "latitude_deg": "26.686989", + "longitude_deg": "-107.683367", + "elevation_ft": "2221", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Morelos", + "scheduled_service": "no", + "local_code": "MOR" + }, + { + "id": "331752", + "ident": "MX-1080", + "type": "small_airport", + "name": "Solidaridad Airport", + "latitude_deg": "27.391331", + "longitude_deg": "-110.01725", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cajeme", + "scheduled_service": "no", + "local_code": "SLD" + }, + { + "id": "331753", + "ident": "MX-1081", + "type": "small_airport", + "name": "El Duraznito de Choix Airstrip", + "latitude_deg": "26.641581", + "longitude_deg": "-108.013984", + "elevation_ft": "3999", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Morelos", + "scheduled_service": "no", + "local_code": "EDC" + }, + { + "id": "331754", + "ident": "MX-1082", + "type": "small_airport", + "name": "Pueblo Yaqui Airport", + "latitude_deg": "27.313179", + "longitude_deg": "-110.018683", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cajeme", + "scheduled_service": "no", + "local_code": "PBY" + }, + { + "id": "331755", + "ident": "MX-1083", + "type": "heliport", + "name": "Hospital Angeles de Puebla Helipad", + "latitude_deg": "19.021194", + "longitude_deg": "-98.235729", + "elevation_ft": "7110", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "Puebla", + "scheduled_service": "no", + "local_code": "HOP" + }, + { + "id": "331756", + "ident": "MX-1084", + "type": "small_airport", + "name": "Jalisquillo Airport", + "latitude_deg": "18.34568", + "longitude_deg": "-96.184795", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Tres Valles", + "scheduled_service": "no", + "local_code": "JLO" + }, + { + "id": "331757", + "ident": "MX-1085", + "type": "small_airport", + "name": "Sindicato Nacional de Los Trabajadores de La Educación Heliport", + "latitude_deg": "19.34696", + "longitude_deg": "-99.281555", + "elevation_ft": "8553", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuajimalpa", + "scheduled_service": "no", + "local_code": "HSN" + }, + { + "id": "331758", + "ident": "MX-1086", + "type": "small_airport", + "name": "Toro Bravo Airport", + "latitude_deg": "18.12463", + "longitude_deg": "-96.111918", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Toro Bravo", + "scheduled_service": "no", + "local_code": "MFS" + }, + { + "id": "331759", + "ident": "MX-1087", + "type": "heliport", + "name": "Capital Helipad", + "latitude_deg": "19.428483", + "longitude_deg": "-99.2068", + "elevation_ft": "7654", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HUM" + }, + { + "id": "331910", + "ident": "MX-1088", + "type": "heliport", + "name": "Bachoco Heliport", + "latitude_deg": "24.801325", + "longitude_deg": "-107.840546", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Navolato", + "scheduled_service": "no", + "local_code": "HBU" + }, + { + "id": "331911", + "ident": "MX-1089", + "type": "heliport", + "name": "Helipuerto JV", + "latitude_deg": "19.009448", + "longitude_deg": "-98.265873", + "elevation_ft": "6857", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "San Andres Cholula", + "scheduled_service": "no", + "local_code": "HJV" + }, + { + "id": "331912", + "ident": "MX-1090", + "type": "small_airport", + "name": "El Jacal Airstrip", + "latitude_deg": "26.036023", + "longitude_deg": "-107.323613", + "elevation_ft": "5347", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Potrero de Bejarano", + "scheduled_service": "no", + "local_code": "JCL" + }, + { + "id": "331913", + "ident": "MX-1091", + "type": "small_airport", + "name": "Club de Vuelo Cadereyta S.C.", + "latitude_deg": "25.432475", + "longitude_deg": "-99.934738", + "elevation_ft": "1083", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Cadereyta Jiménez", + "scheduled_service": "no", + "local_code": "IER" + }, + { + "id": "331914", + "ident": "MX-1092", + "type": "heliport", + "name": "Estacion PFP Iztapalapa Heliport", + "latitude_deg": "19.372985", + "longitude_deg": "-99.060901", + "elevation_ft": "7343", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Iztapalapa", + "scheduled_service": "no", + "local_code": "HFI" + }, + { + "id": "331915", + "ident": "MX-1093", + "type": "heliport", + "name": "Hotel Camino Real Helipad", + "latitude_deg": "19.549481", + "longitude_deg": "-99.207441", + "elevation_ft": "7497", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Tlalnepantla", + "scheduled_service": "no", + "local_code": "HHE" + }, + { + "id": "332071", + "ident": "MX-1094", + "type": "heliport", + "name": "Ejido Mondongo Heliport", + "latitude_deg": "19.457621", + "longitude_deg": "-96.750939", + "elevation_ft": "1969", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Emiliano Zapata", + "scheduled_service": "no", + "local_code": "EMN" + }, + { + "id": "332072", + "ident": "MX-1095", + "type": "small_airport", + "name": "Pajacuaran Airport", + "latitude_deg": "20.164428", + "longitude_deg": "-102.618806", + "elevation_ft": "5010", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Pajacuaran", + "scheduled_service": "no", + "local_code": "PJC" + }, + { + "id": "332073", + "ident": "MX-1096", + "type": "small_airport", + "name": "Mezquital Strip", + "latitude_deg": "32.518734", + "longitude_deg": "-114.911242", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "MZQ", + "keywords": "Aero Fumigaciones Mezquital, Hermosillo Northeast, Mezquital" + }, + { + "id": "332074", + "ident": "MX-1097", + "type": "heliport", + "name": "Televisa Chapultepec Heliport", + "latitude_deg": "19.426676", + "longitude_deg": "-99.149633", + "elevation_ft": "7369", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "HEW" + }, + { + "id": "332075", + "ident": "MX-1098", + "type": "small_airport", + "name": "Nuevo Santa Rosa Airport", + "latitude_deg": "25.805825", + "longitude_deg": "-108.934456", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Ahome", + "scheduled_service": "no", + "local_code": "NSR" + }, + { + "id": "332076", + "ident": "MX-1099", + "type": "heliport", + "name": "Centro Nacional SCT Heliport", + "latitude_deg": "19.394186", + "longitude_deg": "-99.146731", + "elevation_ft": "7300", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Benito Juarez", + "scheduled_service": "no", + "local_code": "SCT" + }, + { + "id": "332077", + "ident": "MX-1100", + "type": "heliport", + "name": "Hospiten Cancún Heliport", + "latitude_deg": "21.138861", + "longitude_deg": "-86.822725", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Cancún", + "scheduled_service": "no", + "local_code": "HNN" + }, + { + "id": "332079", + "ident": "MX-1101", + "type": "small_airport", + "name": "La Herradura de Mexico Airstrip", + "latitude_deg": "24.945054", + "longitude_deg": "-101.624106", + "elevation_ft": "5499", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Parras de la Fuente", + "scheduled_service": "no", + "local_code": "EGO" + }, + { + "id": "332080", + "ident": "MX-1102", + "type": "small_airport", + "name": "El Tigre Airstrip", + "latitude_deg": "26.110072", + "longitude_deg": "-107.269309", + "elevation_ft": "3510", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "ETR" + }, + { + "id": "332081", + "ident": "MX-1103", + "type": "heliport", + "name": "Hospital Angeles Leon Helipad", + "latitude_deg": "21.157293", + "longitude_deg": "-101.701029", + "elevation_ft": "6108", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "León", + "scheduled_service": "no", + "local_code": "HGA" + }, + { + "id": "332517", + "ident": "MX-1104", + "type": "small_airport", + "name": "La Guajolota Airport", + "latitude_deg": "22.953498", + "longitude_deg": "-104.63009", + "elevation_ft": "6824", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Mezquital", + "scheduled_service": "no", + "local_code": "LGL" + }, + { + "id": "332522", + "ident": "MX-1105", + "type": "small_airport", + "name": "Las Norias Airstrip", + "latitude_deg": "22.656032", + "longitude_deg": "-105.01953", + "elevation_ft": "5440", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Mezquital", + "scheduled_service": "no", + "local_code": "LNR" + }, + { + "id": "332531", + "ident": "MX-1106", + "type": "small_airport", + "name": "Chilicote Airport", + "latitude_deg": "24.869697", + "longitude_deg": "-107.582581", + "elevation_ft": "128", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Navolato", + "scheduled_service": "no", + "local_code": "CHE" + }, + { + "id": "332532", + "ident": "MX-1107", + "type": "small_airport", + "name": "El Amate Airport", + "latitude_deg": "18.383524", + "longitude_deg": "-95.877728", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Santiago Ixmatlahuacan", + "scheduled_service": "no", + "local_code": "EMV" + }, + { + "id": "332533", + "ident": "MX-1108", + "type": "small_airport", + "name": "El Diamante del Mar Airport", + "latitude_deg": "30.089695", + "longitude_deg": "-115.747619", + "elevation_ft": "459", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "DDM" + }, + { + "id": "332534", + "ident": "MX-1109", + "type": "heliport", + "name": "Seguridad Publica de Cancun Helipad", + "latitude_deg": "19.424813", + "longitude_deg": "-99.1679", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Benito Juarez (Cancun)", + "scheduled_service": "no", + "local_code": "HSQ" + }, + { + "id": "332535", + "ident": "MX-1110", + "type": "heliport", + "name": "Cerro de La Corona Heliport", + "latitude_deg": "25.628352", + "longitude_deg": "-100.357012", + "elevation_ft": "2940", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "San Pedro Garza Garcia", + "scheduled_service": "no", + "local_code": "HGE" + }, + { + "id": "332538", + "ident": "MX-1111", + "type": "small_airport", + "name": "Santa Fe Airstrip", + "latitude_deg": "24.576612", + "longitude_deg": "-106.320705", + "elevation_ft": "2951", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "SNF" + }, + { + "id": "332539", + "ident": "MX-1112", + "type": "small_airport", + "name": "Sianori Airstrip", + "latitude_deg": "25.265214", + "longitude_deg": "-106.754344", + "elevation_ft": "3048", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Topia", + "scheduled_service": "no" + }, + { + "id": "332540", + "ident": "MX-1113", + "type": "heliport", + "name": "Hospital Angeles Acoxpa Helipad", + "latitude_deg": "19.299236", + "longitude_deg": "-99.135244", + "elevation_ft": "7415", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Tlalpan", + "scheduled_service": "no", + "local_code": "HBK" + }, + { + "id": "332541", + "ident": "MX-1114", + "type": "small_airport", + "name": "Valle Bonito Airport", + "latitude_deg": "16.794311", + "longitude_deg": "-93.414559", + "elevation_ft": "2598", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Ocozocoautla", + "scheduled_service": "no", + "local_code": "VBT" + }, + { + "id": "332542", + "ident": "MX-1115", + "type": "small_airport", + "name": "La Palma Airport", + "latitude_deg": "24.828106", + "longitude_deg": "-107.637403", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Navolato", + "scheduled_service": "no", + "local_code": "PML" + }, + { + "id": "332543", + "ident": "MX-1116", + "type": "small_airport", + "name": "El Brasil Airport", + "latitude_deg": "23.328188", + "longitude_deg": "-97.774072", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "BRX" + }, + { + "id": "332544", + "ident": "MX-1117", + "type": "small_airport", + "name": "Rancho del Carmen Airport", + "latitude_deg": "23.862135", + "longitude_deg": "-104.923618", + "elevation_ft": "7697", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Durango", + "scheduled_service": "no", + "local_code": "RCA" + }, + { + "id": "332550", + "ident": "MX-1118", + "type": "heliport", + "name": "Torre Empresarial Helipad", + "latitude_deg": "17.995933", + "longitude_deg": "-92.939224", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Villahermosa", + "scheduled_service": "no", + "local_code": "HEH" + }, + { + "id": "332551", + "ident": "MX-1119", + "type": "small_airport", + "name": "Terrenates Airport", + "latitude_deg": "25.70654", + "longitude_deg": "-104.644431", + "elevation_ft": "6168", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Villa Hidalgo", + "scheduled_service": "no", + "local_code": "TRT" + }, + { + "id": "332553", + "ident": "MX-1120", + "type": "small_airport", + "name": "Palmarejo Airport", + "latitude_deg": "24.696077", + "longitude_deg": "-106.422672", + "elevation_ft": "3018", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "PJO" + }, + { + "id": "332554", + "ident": "MX-1121", + "type": "heliport", + "name": "Najucal Heliport", + "latitude_deg": "18.354538", + "longitude_deg": "-95.325275", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Minatitlan", + "scheduled_service": "no", + "local_code": "HNX" + }, + { + "id": "332556", + "ident": "MX-1122", + "type": "small_airport", + "name": "La Campana Airport", + "latitude_deg": "24.556453", + "longitude_deg": "-106.223845", + "elevation_ft": "3630", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "CAP" + }, + { + "id": "332557", + "ident": "MX-1123", + "type": "heliport", + "name": "Aero Servicios Helipad", + "latitude_deg": "19.349063", + "longitude_deg": "-99.190965", + "elevation_ft": "7316", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Alvaro Obregon", + "scheduled_service": "no", + "local_code": "HAS" + }, + { + "id": "332930", + "ident": "MX-1124", + "type": "heliport", + "name": "Bardahl Ajusco Heliport", + "latitude_deg": "19.2078", + "longitude_deg": "-99.219033", + "elevation_ft": "10074", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Tlalpan", + "scheduled_service": "no", + "local_code": "HDT" + }, + { + "id": "332933", + "ident": "MX-1125", + "type": "small_airport", + "name": "El Zapatero Airstrip", + "latitude_deg": "24.598065", + "longitude_deg": "-106.381871", + "elevation_ft": "2297", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "ZPV" + }, + { + "id": "332934", + "ident": "MX-1126", + "type": "small_airport", + "name": "La Campanilla Airstrip", + "latitude_deg": "24.633872", + "longitude_deg": "-106.152005", + "elevation_ft": "4921", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "CAM" + }, + { + "id": "332935", + "ident": "MX-1127", + "type": "heliport", + "name": "Coorporativo Blanco Helipad", + "latitude_deg": "20.613932", + "longitude_deg": "-100.411332", + "elevation_ft": "6257", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-QUE", + "municipality": "Tequisquiapan", + "scheduled_service": "no", + "local_code": "HBV" + }, + { + "id": "332936", + "ident": "MX-1128", + "type": "small_airport", + "name": "El Igualamo Airport", + "latitude_deg": "24.683404", + "longitude_deg": "-106.600749", + "elevation_ft": "5906", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "IGL" + }, + { + "id": "332937", + "ident": "MX-1129", + "type": "small_airport", + "name": "El Limon Las Coloradas Airport", + "latitude_deg": "24.771948", + "longitude_deg": "-106.581545", + "elevation_ft": "5810", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "LLL" + }, + { + "id": "332938", + "ident": "MX-1130", + "type": "small_airport", + "name": "Nuevo Mexico Airport", + "latitude_deg": "26.533098", + "longitude_deg": "-104.226952", + "elevation_ft": "3281", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Mapimí", + "scheduled_service": "no", + "local_code": "NMX" + }, + { + "id": "332939", + "ident": "MX-1131", + "type": "small_airport", + "name": "El Verano Airport", + "latitude_deg": "24.322994", + "longitude_deg": "-106.499931", + "elevation_ft": "2894", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "VVG" + }, + { + "id": "332940", + "ident": "MX-1132", + "type": "small_airport", + "name": "Tres Encinos Airport", + "latitude_deg": "18.243167", + "longitude_deg": "-96.072389", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Tres Encinos", + "scheduled_service": "no", + "local_code": "TES" + }, + { + "id": "332941", + "ident": "MX-1133", + "type": "small_airport", + "name": "San Ignacio 2 Airport", + "latitude_deg": "26.841456", + "longitude_deg": "-107.840139", + "elevation_ft": "1378", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Batopilas", + "scheduled_service": "no", + "local_code": "IGB" + }, + { + "id": "332942", + "ident": "MX-1134", + "type": "small_airport", + "name": "San Martin Airport", + "latitude_deg": "28.123504", + "longitude_deg": "-110.680947", + "elevation_ft": "184", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Empalme", + "scheduled_service": "no", + "local_code": "SMP" + }, + { + "id": "332943", + "ident": "MX-1135", + "type": "heliport", + "name": "Corporativo 5010 Helipad", + "latitude_deg": "19.303783", + "longitude_deg": "-99.182989", + "elevation_ft": "7703", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Coyoacan", + "scheduled_service": "no", + "local_code": "HRO" + }, + { + "id": "332944", + "ident": "MX-1136", + "type": "small_airport", + "name": "Aeroservicios La Victoria Airport", + "latitude_deg": "27.405433", + "longitude_deg": "-109.959497", + "elevation_ft": "87", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cajeme", + "scheduled_service": "no", + "local_code": "ASV" + }, + { + "id": "333485", + "ident": "MX-1137", + "type": "heliport", + "name": "Hospital San Angel Inn Universidad Helipad", + "latitude_deg": "19.358998", + "longitude_deg": "-99.167452", + "elevation_ft": "7579", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Benito Juárez", + "scheduled_service": "no", + "local_code": "HUS" + }, + { + "id": "333486", + "ident": "MX-1138", + "type": "heliport", + "name": "Midtown Jalisco Helipad", + "latitude_deg": "20.694181", + "longitude_deg": "-103.375093", + "elevation_ft": "5655", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Guadalajara", + "scheduled_service": "no", + "local_code": "HJL" + }, + { + "id": "333487", + "ident": "MX-1139", + "type": "heliport", + "name": "Zimas Heliport", + "latitude_deg": "25.639819", + "longitude_deg": "-100.407872", + "elevation_ft": "3314", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "San Pedro Garza Garcia", + "scheduled_service": "no", + "local_code": "HJF" + }, + { + "id": "333488", + "ident": "MX-1140", + "type": "small_airport", + "name": "La Valentina Airport", + "latitude_deg": "14.720765", + "longitude_deg": "-92.27652", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Tapachula", + "scheduled_service": "no", + "local_code": "LAV" + }, + { + "id": "333489", + "ident": "MX-1141", + "type": "heliport", + "name": "Centro Medico Culiacan Hospital Angeles Helipad", + "latitude_deg": "24.795783", + "longitude_deg": "-107.437529", + "elevation_ft": "197", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "HHQ" + }, + { + "id": "333490", + "ident": "MX-1142", + "type": "small_airport", + "name": "Santa Elena Airport", + "latitude_deg": "25.990056", + "longitude_deg": "-97.760083", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Matamoros", + "scheduled_service": "no", + "local_code": "STL" + }, + { + "id": "333491", + "ident": "MX-1143", + "type": "heliport", + "name": "Los Encinos Heliport", + "latitude_deg": "25.626964", + "longitude_deg": "-100.347812", + "elevation_ft": "2297", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "San Pedro Garza Garcia", + "scheduled_service": "no", + "local_code": "HLU" + }, + { + "id": "333492", + "ident": "MX-1144", + "type": "small_airport", + "name": "La Aurora Airport", + "latitude_deg": "32.236703", + "longitude_deg": "-115.010247", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "San Luis Río Colorado", + "scheduled_service": "no", + "local_code": "LAU" + }, + { + "id": "333493", + "ident": "MX-1145", + "type": "heliport", + "name": "Ssp Guanajuato Heliport", + "latitude_deg": "20.957472", + "longitude_deg": "-101.295093", + "elevation_ft": "6286", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "Guanajuato", + "scheduled_service": "no", + "local_code": "HSG" + }, + { + "id": "333494", + "ident": "MX-1146", + "type": "heliport", + "name": "Skytex Heliport", + "latitude_deg": "19.217155", + "longitude_deg": "-98.404241", + "elevation_ft": "7513", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "Huejotzingo", + "scheduled_service": "no", + "local_code": "HSX" + }, + { + "id": "333495", + "ident": "MX-1147", + "type": "small_airport", + "name": "San José del Llano Airport", + "latitude_deg": "25.775815", + "longitude_deg": "-107.33419", + "elevation_ft": "2139", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "SJL" + }, + { + "id": "333496", + "ident": "MX-1148", + "type": "small_airport", + "name": "El Palmoso", + "latitude_deg": "23.187312", + "longitude_deg": "-97.887475", + "elevation_ft": "427", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Villa Aldama", + "scheduled_service": "no", + "local_code": "PMS" + }, + { + "id": "333497", + "ident": "MX-1149", + "type": "small_airport", + "name": "La Chijolosa Airport", + "latitude_deg": "22.803046", + "longitude_deg": "-98.580751", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Gonzalez", + "scheduled_service": "no", + "local_code": "JVA" + }, + { + "id": "333498", + "ident": "MX-1150", + "type": "small_airport", + "name": "Huixiopa de La Loma Colorada Airport", + "latitude_deg": "25.762523", + "longitude_deg": "-107.194666", + "elevation_ft": "3002", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "XIO" + }, + { + "id": "333499", + "ident": "MX-1151", + "type": "small_airport", + "name": "Galancita Airstrip", + "latitude_deg": "25.157987", + "longitude_deg": "-106.767948", + "elevation_ft": "2953", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Topia", + "scheduled_service": "no", + "local_code": "GSA" + }, + { + "id": "333500", + "ident": "MX-1152", + "type": "small_airport", + "name": "El Pinal Airstrip", + "latitude_deg": "25.894631", + "longitude_deg": "-107.502294", + "elevation_ft": "3937", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "EPP" + }, + { + "id": "333501", + "ident": "MX-1153", + "type": "small_airport", + "name": "Cabrera Airstrip", + "latitude_deg": "26.209104", + "longitude_deg": "-107.543535", + "elevation_ft": "6283", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "CBT" + }, + { + "id": "333502", + "ident": "MX-1154", + "type": "small_airport", + "name": "El Limon de Copalquin Airstrip", + "latitude_deg": "25.488781", + "longitude_deg": "-107.095971", + "elevation_ft": "1801", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "LIM" + }, + { + "id": "333507", + "ident": "MX-1155", + "type": "heliport", + "name": "Torre Libertad Helipad", + "latitude_deg": "19.42566", + "longitude_deg": "-99.17235", + "elevation_ft": "7871", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuahutémoc", + "scheduled_service": "no", + "local_code": "HLI" + }, + { + "id": "333508", + "ident": "MX-1156", + "type": "small_airport", + "name": "El Roble Gordo Airstrip", + "latitude_deg": "25.849289", + "longitude_deg": "-107.337456", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "RDO" + }, + { + "id": "333509", + "ident": "MX-1157", + "type": "small_airport", + "name": "Pista Iñiguez II", + "latitude_deg": "32.536358", + "longitude_deg": "-115.081251", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "INZ" + }, + { + "id": "333510", + "ident": "MX-1158", + "type": "heliport", + "name": "Hospital ABC Helipad", + "latitude_deg": "19.400622", + "longitude_deg": "-99.203944", + "elevation_ft": "7743", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Alvaro Obregon", + "scheduled_service": "no", + "local_code": "HIN" + }, + { + "id": "333511", + "ident": "MX-1159", + "type": "heliport", + "name": "Leon Heliport", + "latitude_deg": "21.065984", + "longitude_deg": "-101.682286", + "elevation_ft": "5856", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "León", + "scheduled_service": "no", + "local_code": "HLA" + }, + { + "id": "333512", + "ident": "MX-1160", + "type": "heliport", + "name": "Azteca Novelas Helipad", + "latitude_deg": "19.324194", + "longitude_deg": "-99.13716", + "elevation_ft": "7392", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Tlalpan", + "scheduled_service": "no", + "local_code": "HNZ" + }, + { + "id": "333513", + "ident": "MX-1161", + "type": "small_airport", + "name": "La Tuna de Badiraguato Airport", + "latitude_deg": "25.694228", + "longitude_deg": "-107.140603", + "elevation_ft": "4331", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "BAD" + }, + { + "id": "333514", + "ident": "MX-1162", + "type": "small_airport", + "name": "Campo Verde Airport", + "latitude_deg": "22.697556", + "longitude_deg": "-98.434333", + "elevation_ft": "233", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Villa Gonzalez", + "scheduled_service": "no", + "local_code": "CVG" + }, + { + "id": "333515", + "ident": "MX-1163", + "type": "small_airport", + "name": "Portugués de Gálvez Airport", + "latitude_deg": "25.729221", + "longitude_deg": "-108.40991", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "PDG" + }, + { + "id": "333516", + "ident": "MX-1164", + "type": "small_airport", + "name": "Villa Juárez Airport", + "latitude_deg": "27.081861", + "longitude_deg": "-109.845", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Benito Juárez", + "scheduled_service": "no", + "local_code": "PIV" + }, + { + "id": "333517", + "ident": "MX-1165", + "type": "small_airport", + "name": "Las Trancas Airstrip", + "latitude_deg": "24.749131", + "longitude_deg": "-106.636391", + "elevation_ft": "3445", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "LTQ" + }, + { + "id": "333518", + "ident": "MX-1166", + "type": "heliport", + "name": "Hospital General del ISSSTE Tuxtla Gutierrez Helipad", + "latitude_deg": "16.748686", + "longitude_deg": "-93.075078", + "elevation_ft": "1785", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Tuxtla Gutierrez", + "scheduled_service": "yes", + "local_code": "HUA" + }, + { + "id": "333519", + "ident": "MX-1167", + "type": "heliport", + "name": "VZ Flights Helipad", + "latitude_deg": "19.428128", + "longitude_deg": "-99.20628", + "elevation_ft": "7595", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HVZ" + }, + { + "id": "333520", + "ident": "MX-1168", + "type": "small_airport", + "name": "Cienega de Araujo Airport", + "latitude_deg": "26.013913", + "longitude_deg": "-107.276602", + "elevation_ft": "4496", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "CIE" + }, + { + "id": "333521", + "ident": "MX-1169", + "type": "small_airport", + "name": "Bazonopita de Abajo Airport", + "latitude_deg": "26.04005", + "longitude_deg": "-107.253749", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "BSN" + }, + { + "id": "333522", + "ident": "MX-1170", + "type": "heliport", + "name": "El Sol de Durango Helipad", + "latitude_deg": "24.028606", + "longitude_deg": "-104.645167", + "elevation_ft": "6202", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Durango", + "scheduled_service": "no", + "local_code": "HSD" + }, + { + "id": "333523", + "ident": "MX-1171", + "type": "small_airport", + "name": "El Cajoncito Airport", + "latitude_deg": "25.935667", + "longitude_deg": "-107.204056", + "elevation_ft": "2231", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "CJC" + }, + { + "id": "333836", + "ident": "MX-1172", + "type": "heliport", + "name": "Torre Medica Hospital Puebla Helipad", + "latitude_deg": "19.030425", + "longitude_deg": "-98.228446", + "elevation_ft": "6969", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "Puebla", + "scheduled_service": "no", + "local_code": "HHP" + }, + { + "id": "333837", + "ident": "MX-1173", + "type": "heliport", + "name": "Rancho La Parroquia Heliport", + "latitude_deg": "19.146111", + "longitude_deg": "-96.216389", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Veracruz", + "scheduled_service": "no", + "local_code": "HPQ" + }, + { + "id": "333838", + "ident": "MX-1174", + "type": "closed", + "name": "Pancho Villa Airstrip", + "latitude_deg": "27.392444", + "longitude_deg": "-109.808972", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cajeme", + "scheduled_service": "no", + "local_code": "PXV" + }, + { + "id": "333839", + "ident": "MX-1175", + "type": "small_airport", + "name": "La Herradura Airport", + "latitude_deg": "27.590952", + "longitude_deg": "-100.604821", + "elevation_ft": "876", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Juárez", + "scheduled_service": "no", + "local_code": "LHA" + }, + { + "id": "333840", + "ident": "MX-1176", + "type": "small_airport", + "name": "Las Vegas Airport", + "latitude_deg": "23.130833", + "longitude_deg": "-97.849444", + "elevation_ft": "299", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Villa Aldama", + "scheduled_service": "no", + "local_code": "RVG" + }, + { + "id": "333841", + "ident": "MX-1177", + "type": "small_airport", + "name": "El Novillo de Guerrero", + "latitude_deg": "27.856265", + "longitude_deg": "-100.368047", + "elevation_ft": "879", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Guerrero", + "scheduled_service": "no", + "local_code": "ACG" + }, + { + "id": "333842", + "ident": "MX-1178", + "type": "small_airport", + "name": "Rancho El Alamo Airstrip", + "latitude_deg": "29.724806", + "longitude_deg": "-107.132052", + "elevation_ft": "5906", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "San Buenaventura", + "scheduled_service": "no", + "local_code": "EAE" + }, + { + "id": "333843", + "ident": "MX-1179", + "type": "small_airport", + "name": "Pie de La Cuesta de San Jerónimo Airstrip", + "latitude_deg": "25.100465", + "longitude_deg": "-106.928719", + "elevation_ft": "1804", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "PEJ" + }, + { + "id": "333844", + "ident": "MX-1180", + "type": "small_airport", + "name": "Hacienda Tulapan Airport", + "latitude_deg": "25.272912", + "longitude_deg": "-99.990606", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Ciudad de Allende", + "scheduled_service": "no", + "local_code": "RJV" + }, + { + "id": "333845", + "ident": "MX-1181", + "type": "small_airport", + "name": "El Hato Airport", + "latitude_deg": "14.639444", + "longitude_deg": "-92.310278", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Tapachula", + "scheduled_service": "no", + "local_code": "HAT" + }, + { + "id": "333846", + "ident": "MX-1182", + "type": "small_airport", + "name": "Las Margaritas Airstrip", + "latitude_deg": "23.289692", + "longitude_deg": "-104.250094", + "elevation_ft": "8268", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Suchil", + "scheduled_service": "no", + "local_code": "MGD" + }, + { + "id": "333847", + "ident": "MX-1183", + "type": "small_airport", + "name": "Barbechitos Airport", + "latitude_deg": "26.409437", + "longitude_deg": "-107.03325", + "elevation_ft": "7776", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "BBC" + }, + { + "id": "334448", + "ident": "MX-1184", + "type": "closed", + "name": "Rancho Granja Orquidea Airport", + "latitude_deg": "31.88788", + "longitude_deg": "-112.86867", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Sonoyta", + "scheduled_service": "no" + }, + { + "id": "334449", + "ident": "MX-1185", + "type": "closed", + "name": "Sonoyta Airport", + "latitude_deg": "31.84765", + "longitude_deg": "-112.8318", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Sonoyta", + "scheduled_service": "no" + }, + { + "id": "334451", + "ident": "MX-1186", + "type": "small_airport", + "name": "El Pinacate Airport", + "latitude_deg": "31.50727", + "longitude_deg": "-113.41819", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Puerto Peñasco", + "scheduled_service": "no" + }, + { + "id": "334452", + "ident": "MX-1187", + "type": "closed", + "name": "Santa Clara Sur Airport", + "latitude_deg": "31.51299", + "longitude_deg": "-114.13493", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "San Luis Río Colorado", + "scheduled_service": "no" + }, + { + "id": "334818", + "ident": "MX-1188", + "type": "small_airport", + "name": "Naco Municipal Airport", + "latitude_deg": "31.326092", + "longitude_deg": "-109.938898", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Naco", + "scheduled_service": "no" + }, + { + "id": "334819", + "ident": "MX-1189", + "type": "small_airport", + "name": "Cuarto de Milla Strip", + "latitude_deg": "31.31153", + "longitude_deg": "-109.95716", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Naco", + "scheduled_service": "no" + }, + { + "id": "334820", + "ident": "MX-1190", + "type": "closed", + "name": "Colonia Morelos Airstrip", + "latitude_deg": "30.8338", + "longitude_deg": "-109.22592", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Agua Prieta", + "scheduled_service": "no" + }, + { + "id": "334821", + "ident": "MX-1191", + "type": "closed", + "name": "Arroyo Chinoso Airstrip", + "latitude_deg": "30.80066", + "longitude_deg": "-109.0659", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Agua Prieta", + "scheduled_service": "no" + }, + { + "id": "334822", + "ident": "MX-1192", + "type": "closed", + "name": "(Old) Rancho Oaxaca Airport", + "latitude_deg": "30.72869", + "longitude_deg": "-109.04692", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Bavispe", + "scheduled_service": "no" + }, + { + "id": "334823", + "ident": "MX-1193", + "type": "small_airport", + "name": "Rancho Agua Blanca 2 Airstrip", + "latitude_deg": "30.778272", + "longitude_deg": "-108.675213", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Janos", + "scheduled_service": "no" + }, + { + "id": "334824", + "ident": "MX-1194", + "type": "small_airport", + "name": "Rancho Agua Blanca 3 Airstrip", + "latitude_deg": "30.78403", + "longitude_deg": "-108.68564", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Janos", + "scheduled_service": "no" + }, + { + "id": "334825", + "ident": "MX-1195", + "type": "closed", + "name": "San Bernardino Lagunas Airport", + "latitude_deg": "31.31526", + "longitude_deg": "-109.27765", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Agua Prieta", + "scheduled_service": "no" + }, + { + "id": "334853", + "ident": "MX-1196", + "type": "small_airport", + "name": "Pista Macuiles", + "latitude_deg": "18.289332", + "longitude_deg": "-96.186258", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Tres Valles", + "scheduled_service": "no", + "local_code": "PMC" + }, + { + "id": "334856", + "ident": "MX-1197", + "type": "small_airport", + "name": "Anna Airstrip", + "latitude_deg": "22.911556", + "longitude_deg": "-98.310583", + "elevation_ft": "587", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Aldama", + "scheduled_service": "no", + "local_code": "ANS" + }, + { + "id": "334859", + "ident": "MX-1198", + "type": "small_airport", + "name": "Puerto Palomas Airstrip", + "latitude_deg": "31.750303", + "longitude_deg": "-107.635181", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Puerto Palomas", + "scheduled_service": "no", + "keywords": "puerto palomas" + }, + { + "id": "334860", + "ident": "MX-1199", + "type": "small_airport", + "name": "El Loreto Airport", + "latitude_deg": "20.339295", + "longitude_deg": "-102.473817", + "elevation_ft": "5131", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "La Barca", + "scheduled_service": "no", + "local_code": "LOY" + }, + { + "id": "334863", + "ident": "MX-1200", + "type": "small_airport", + "name": "La Pequeña Joya Airport", + "latitude_deg": "24.678611", + "longitude_deg": "-107.477222", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "PJY" + }, + { + "id": "334868", + "ident": "MX-1201", + "type": "small_airport", + "name": "Calamajue Airstrip", + "latitude_deg": "29.687866", + "longitude_deg": "-114.161983", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "PCJ", + "keywords": "Pista Calamajue" + }, + { + "id": "334869", + "ident": "MX-1202", + "type": "small_airport", + "name": "Las Americas Airport", + "latitude_deg": "25.593455", + "longitude_deg": "-108.310626", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "AMS" + }, + { + "id": "334870", + "ident": "MX-1203", + "type": "closed", + "name": "Barreales Airstrip", + "latitude_deg": "31.40224", + "longitude_deg": "-106.16169", + "elevation_ft": "3629", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe", + "scheduled_service": "no" + }, + { + "id": "334871", + "ident": "MX-1204", + "type": "small_airport", + "name": "Rosales Airstrip", + "latitude_deg": "25.897768", + "longitude_deg": "-108.949292", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "El Fuerte", + "scheduled_service": "no", + "local_code": "RAL" + }, + { + "id": "334872", + "ident": "MX-1205", + "type": "small_airport", + "name": "Pista El Rocio", + "latitude_deg": "22.505143", + "longitude_deg": "-98.525519", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Gonzalez", + "scheduled_service": "no", + "local_code": "PEY" + }, + { + "id": "335012", + "ident": "MX-1206", + "type": "closed", + "name": "El Camaron Airstrip", + "latitude_deg": "23.060967", + "longitude_deg": "-97.871243", + "elevation_ft": "249", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Aldama", + "scheduled_service": "no", + "local_code": "CMT" + }, + { + "id": "335013", + "ident": "MX-1207", + "type": "small_airport", + "name": "Rancho Maria 4 Airport", + "latitude_deg": "30.425085", + "longitude_deg": "-107.769184", + "elevation_ft": "5085", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Nuevo Casas Grandes", + "scheduled_service": "no", + "local_code": "RMQ" + }, + { + "id": "335014", + "ident": "MX-1208", + "type": "closed", + "name": "La Mision Airport", + "latitude_deg": "23.831886", + "longitude_deg": "-99.180386", + "elevation_ft": "942", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Ciudad Victoria", + "scheduled_service": "no", + "local_code": "LMK" + }, + { + "id": "335015", + "ident": "MX-1209", + "type": "small_airport", + "name": "Francisco Garza Airport and Heliport", + "latitude_deg": "25.65005", + "longitude_deg": "-100.414152", + "elevation_ft": "2484", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "San Pedro Garza García", + "scheduled_service": "no", + "local_code": "HFG", + "keywords": "Casa Verde" + }, + { + "id": "335016", + "ident": "MX-1210", + "type": "small_airport", + "name": "El Caimanero Airport", + "latitude_deg": "25.621944", + "longitude_deg": "-108.445278", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "CRO" + }, + { + "id": "335017", + "ident": "MX-1211", + "type": "heliport", + "name": "Cuernavaca Golf Club Heliport", + "latitude_deg": "18.910189", + "longitude_deg": "-99.237807", + "elevation_ft": "4902", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MOR", + "municipality": "Cuernavaca", + "scheduled_service": "no", + "local_code": "HCV" + }, + { + "id": "335018", + "ident": "MX-1212", + "type": "heliport", + "name": "Hospital San Javier Helipad", + "latitude_deg": "20.687923", + "longitude_deg": "-103.389818", + "elevation_ft": "5331", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Guadalajara", + "scheduled_service": "no", + "local_code": "HJG" + }, + { + "id": "335019", + "ident": "MX-1213", + "type": "small_airport", + "name": "La Guacamaya Airport", + "latitude_deg": "29.724284", + "longitude_deg": "-110.90385", + "elevation_ft": "1542", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Carbó", + "scheduled_service": "no", + "local_code": "LGY" + }, + { + "id": "335020", + "ident": "MX-1214", + "type": "small_airport", + "name": "El Coche Airport", + "latitude_deg": "27.526694", + "longitude_deg": "-100.243472", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Anahuac", + "scheduled_service": "no", + "local_code": "ELC" + }, + { + "id": "335021", + "ident": "MX-1215", + "type": "small_airport", + "name": "Cinco Llagas Airport", + "latitude_deg": "26.210539", + "longitude_deg": "-107.32471", + "elevation_ft": "3602", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "CLL" + }, + { + "id": "335022", + "ident": "MX-1216", + "type": "small_airport", + "name": "Montañas del Gualul Airport", + "latitude_deg": "22.556944", + "longitude_deg": "-98.340972", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Villa Gonzalez", + "scheduled_service": "no", + "local_code": "MDG" + }, + { + "id": "335371", + "ident": "MX-1217", + "type": "small_airport", + "name": "Sofi Airport", + "latitude_deg": "24.86272", + "longitude_deg": "-107.614563", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Navolato", + "scheduled_service": "no", + "local_code": "SOF" + }, + { + "id": "335372", + "ident": "MX-1218", + "type": "small_airport", + "name": "Zacatecas Airstrip", + "latitude_deg": "32.165907", + "longitude_deg": "-115.039982", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "ZAC" + }, + { + "id": "335373", + "ident": "MX-1219", + "type": "small_airport", + "name": "Calderitas Airport", + "latitude_deg": "19.164045", + "longitude_deg": "-102.841406", + "elevation_ft": "1181", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Tepalcatepec", + "scheduled_service": "no", + "local_code": "CAL" + }, + { + "id": "335374", + "ident": "MX-1220", + "type": "small_airport", + "name": "Bavispe Airport", + "latitude_deg": "30.47439", + "longitude_deg": "-108.953305", + "elevation_ft": "3396", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Bavispe", + "scheduled_service": "no", + "local_code": "BAV" + }, + { + "id": "335375", + "ident": "MX-1221", + "type": "small_airport", + "name": "La Mora Airport", + "latitude_deg": "30.593272", + "longitude_deg": "-108.945562", + "elevation_ft": "3281", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Bavispe", + "scheduled_service": "no", + "local_code": "LAM" + }, + { + "id": "335376", + "ident": "MX-1222", + "type": "heliport", + "name": "C5i Michoacan Helipad", + "latitude_deg": "19.66864", + "longitude_deg": "-101.300737", + "elevation_ft": "6424", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Morelia", + "scheduled_service": "no", + "local_code": "HPU" + }, + { + "id": "335377", + "ident": "MX-1223", + "type": "heliport", + "name": "Dr. Aquiles Calles Ramirez Helipad", + "latitude_deg": "21.515619", + "longitude_deg": "-104.813803", + "elevation_ft": "2995", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "Tepic", + "scheduled_service": "no", + "local_code": "HDB", + "home_link": "https://www.gob.mx/shcp/acciones-y-programas/hospital-general-aquiles-calles-ramirez-en-tepic" + }, + { + "id": "335378", + "ident": "MX-1224", + "type": "small_airport", + "name": "Las Escobas Airport", + "latitude_deg": "23.779016", + "longitude_deg": "-104.051925", + "elevation_ft": "6207", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Nombre de Dios", + "scheduled_service": "no", + "local_code": "LES" + }, + { + "id": "335379", + "ident": "MX-1225", + "type": "small_airport", + "name": "Buenos Aires 2 Airstrip", + "latitude_deg": "14.907128", + "longitude_deg": "-92.536123", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Mazatan", + "scheduled_service": "no", + "local_code": "AIR" + }, + { + "id": "335380", + "ident": "MX-1226", + "type": "heliport", + "name": "Hospital Bahia de Banderas Helipad", + "latitude_deg": "20.747441", + "longitude_deg": "-105.267735", + "elevation_ft": "132", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "Bahia de Banderas", + "scheduled_service": "no", + "local_code": "HZB", + "home_link": "http://www.imss.gob.mx/prensa/archivo/202004/201" + }, + { + "id": "335381", + "ident": "MX-1227", + "type": "heliport", + "name": "Hospital General ISSSTE Tláhuac Helipad", + "latitude_deg": "19.280064", + "longitude_deg": "-99.049444", + "elevation_ft": "7362", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Tláhuac", + "scheduled_service": "no", + "local_code": "HOT" + }, + { + "id": "335382", + "ident": "MX-1228", + "type": "heliport", + "name": "Via Dorada Helipad", + "latitude_deg": "20.094585", + "longitude_deg": "-98.775967", + "elevation_ft": "8018", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-HID", + "municipality": "Pachuca", + "scheduled_service": "no", + "local_code": "HVR" + }, + { + "id": "335383", + "ident": "MX-1229", + "type": "small_airport", + "name": "Rancho Santa Cruz Airport", + "latitude_deg": "31.99882", + "longitude_deg": "-116.639787", + "elevation_ft": "988", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "RSC" + }, + { + "id": "335384", + "ident": "MX-1230", + "type": "small_airport", + "name": "El Corazon Airport", + "latitude_deg": "24.507189", + "longitude_deg": "-107.307921", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacán", + "scheduled_service": "no", + "local_code": "ZON" + }, + { + "id": "335395", + "ident": "MX-1231", + "type": "heliport", + "name": "Reforma 509 Helipads", + "latitude_deg": "19.424192", + "longitude_deg": "-99.175773", + "elevation_ft": "8127", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuahutemoc", + "scheduled_service": "no", + "local_code": "HZZ" + }, + { + "id": "335396", + "ident": "MX-1232", + "type": "heliport", + "name": "Ing. David Torres Heliport", + "latitude_deg": "19.090767", + "longitude_deg": "-96.231092", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Medellin de Bravo", + "scheduled_service": "no", + "local_code": "HGO" + }, + { + "id": "335397", + "ident": "MX-1233", + "type": "heliport", + "name": "Torre Elemental Helipad", + "latitude_deg": "18.997875", + "longitude_deg": "-98.279443", + "elevation_ft": "6923", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "San Andres Cholula", + "scheduled_service": "no", + "local_code": "HGK" + }, + { + "id": "335935", + "ident": "MX-1234", + "type": "closed", + "name": "Rancho Dos Cachorros Airport", + "latitude_deg": "31.333185", + "longitude_deg": "-106.468055", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ciudad Juárez", + "scheduled_service": "no" + }, + { + "id": "335936", + "ident": "MX-1235", + "type": "heliport", + "name": "Rancho Dos Cachorros Heliport", + "latitude_deg": "31.33461", + "longitude_deg": "-106.46643", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ciudad Juárez", + "scheduled_service": "no" + }, + { + "id": "335962", + "ident": "MX-1236", + "type": "small_airport", + "name": "Llano Colorado Airstrip", + "latitude_deg": "31.253735", + "longitude_deg": "-116.154156", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no" + }, + { + "id": "335963", + "ident": "MX-1237", + "type": "small_airport", + "name": "Colonia Lázaro Cárdenas Airstrip", + "latitude_deg": "31.39129", + "longitude_deg": "-115.72941", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "San Quintín", + "scheduled_service": "no" + }, + { + "id": "335964", + "ident": "MX-1238", + "type": "small_airport", + "name": "Sierra Juárez Airstrip", + "latitude_deg": "32.13123", + "longitude_deg": "-116.01599", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no" + }, + { + "id": "335965", + "ident": "MX-1239", + "type": "closed", + "name": "San Faustino Airstrip", + "latitude_deg": "32.19479", + "longitude_deg": "-116.148469", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no" + }, + { + "id": "335980", + "ident": "MX-1240", + "type": "small_airport", + "name": "Bacoachi Airstrip", + "latitude_deg": "30.646294", + "longitude_deg": "-109.975526", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Bacoachi", + "scheduled_service": "no", + "local_code": "BAK" + }, + { + "id": "335981", + "ident": "MX-1241", + "type": "small_airport", + "name": "Baltasar Airstrip", + "latitude_deg": "30.983", + "longitude_deg": "-109.70786", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Fronteras", + "scheduled_service": "no" + }, + { + "id": "335982", + "ident": "MX-1242", + "type": "small_airport", + "name": "Bacanuchi Airstrip", + "latitude_deg": "30.61437", + "longitude_deg": "-110.234134", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Arizpe", + "scheduled_service": "no" + }, + { + "id": "335983", + "ident": "MX-1243", + "type": "closed", + "name": "La Cienega Airstrip", + "latitude_deg": "30.925236", + "longitude_deg": "-110.865633", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Imuris", + "scheduled_service": "no" + }, + { + "id": "335988", + "ident": "MX-1244", + "type": "small_airport", + "name": "Rancho El Espía Airstrip", + "latitude_deg": "31.383496", + "longitude_deg": "-107.981328", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ascensión", + "scheduled_service": "no" + }, + { + "id": "335989", + "ident": "MX-1245", + "type": "small_airport", + "name": "Las Bolas / La Huato Airstrip", + "latitude_deg": "31.06689", + "longitude_deg": "-108.7446", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Janos", + "scheduled_service": "no" + }, + { + "id": "335990", + "ident": "MX-1246", + "type": "small_airport", + "name": "Sierra de Enmedio / Venton Northwest Airstrip", + "latitude_deg": "31.02552", + "longitude_deg": "-108.62917", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Janos", + "scheduled_service": "no" + }, + { + "id": "335991", + "ident": "MX-1247", + "type": "closed", + "name": "San Miguelito Airstrip", + "latitude_deg": "30.529293", + "longitude_deg": "-108.971747", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Bavispe", + "scheduled_service": "no" + }, + { + "id": "336080", + "ident": "MX-1248", + "type": "small_airport", + "name": "Hacienda San Francisco Airstrip", + "latitude_deg": "31.2358", + "longitude_deg": "-108.6507", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Janos", + "scheduled_service": "no" + }, + { + "id": "336081", + "ident": "MX-1249", + "type": "closed", + "name": "Rancho Sierra de Enmedio Airstrip", + "latitude_deg": "30.98557", + "longitude_deg": "-108.5906", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Janos", + "scheduled_service": "no" + }, + { + "id": "336082", + "ident": "MX-1250", + "type": "small_airport", + "name": "Colonia Oquita Montenegro Airstrip", + "latitude_deg": "31.1611", + "longitude_deg": "-109.2203", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Agua Prieta", + "scheduled_service": "no" + }, + { + "id": "336083", + "ident": "MX-1251", + "type": "closed", + "name": "El Chalet Airstrip", + "latitude_deg": "30.6756", + "longitude_deg": "-109.3514", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Nacozari de García", + "scheduled_service": "no" + }, + { + "id": "336084", + "ident": "MX-1252", + "type": "closed", + "name": "La Ranchería Airstrip", + "latitude_deg": "30.571", + "longitude_deg": "-109.3772", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Nacozari de García", + "scheduled_service": "no" + }, + { + "id": "336085", + "ident": "MX-1253", + "type": "small_airport", + "name": "Rancho Nuevo Airstrip", + "latitude_deg": "30.42416", + "longitude_deg": "-109.43484", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Villa Hidalgo", + "scheduled_service": "no" + }, + { + "id": "336217", + "ident": "MX-1254", + "type": "closed", + "name": "Mier Airfield", + "latitude_deg": "26.416581", + "longitude_deg": "-99.153446", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Ciudad Mier", + "scheduled_service": "no" + }, + { + "id": "336218", + "ident": "MX-1255", + "type": "small_airport", + "name": "Rancho El Mezquitito Airfield / Miguel Alemán Aerodrome", + "latitude_deg": "26.34138", + "longitude_deg": "-99.01626", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Ciudad Miguel Alemán", + "scheduled_service": "no" + }, + { + "id": "336233", + "ident": "MX-1256", + "type": "closed", + "name": "Rancho Los Gutierrez Airfield", + "latitude_deg": "27.119169", + "longitude_deg": "-99.79944", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Anáhuac", + "scheduled_service": "no" + }, + { + "id": "336234", + "ident": "MX-1257", + "type": "closed", + "name": "Huizachitos Airfield", + "latitude_deg": "25.99301", + "longitude_deg": "-98.70126", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "General Bravo", + "scheduled_service": "no" + }, + { + "id": "336290", + "ident": "MX-1258", + "type": "closed", + "name": "El Aterrizaje Airstrip", + "latitude_deg": "31.250103", + "longitude_deg": "-105.881349", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Práxedis G. Guerrero", + "scheduled_service": "no" + }, + { + "id": "336291", + "ident": "MX-1259", + "type": "closed", + "name": "El Porvenir Airstrip", + "latitude_deg": "31.224206", + "longitude_deg": "-105.878999", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Práxedis G. Guerrero", + "scheduled_service": "no" + }, + { + "id": "336339", + "ident": "MX-1260", + "type": "heliport", + "name": "Pinfra Helipad", + "latitude_deg": "19.389438", + "longitude_deg": "-99.251878", + "elevation_ft": "8182", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuajimalpa", + "scheduled_service": "no", + "local_code": "HTR", + "keywords": "Tribasa" + }, + { + "id": "336340", + "ident": "MX-1261", + "type": "small_airport", + "name": "Chiconcuac Airport", + "latitude_deg": "18.775651", + "longitude_deg": "-99.213962", + "elevation_ft": "3799", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MOR", + "municipality": "Xochitepec", + "scheduled_service": "no", + "local_code": "CHC" + }, + { + "id": "336342", + "ident": "MX-1262", + "type": "small_airport", + "name": "Platanar de Coluta Airstrip", + "latitude_deg": "25.118535", + "longitude_deg": "-106.73737", + "elevation_ft": "2717", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "PDU" + }, + { + "id": "336344", + "ident": "MX-1263", + "type": "small_airport", + "name": "El Rocio Airport", + "latitude_deg": "30.851285", + "longitude_deg": "-112.417184", + "elevation_ft": "5512", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Caborca", + "scheduled_service": "no", + "local_code": "ROO" + }, + { + "id": "336345", + "ident": "MX-1264", + "type": "small_airport", + "name": "El Pedernal Airport", + "latitude_deg": "30.842592", + "longitude_deg": "-112.737144", + "elevation_ft": "269", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Caborca", + "scheduled_service": "no", + "local_code": "PNA" + }, + { + "id": "336346", + "ident": "MX-1265", + "type": "small_airport", + "name": "El Cohete Airstrip", + "latitude_deg": "22.795757", + "longitude_deg": "-98.140193", + "elevation_ft": "262", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Aldama", + "scheduled_service": "no", + "local_code": "LUK" + }, + { + "id": "336347", + "ident": "MX-1266", + "type": "small_airport", + "name": "Rancho La Mision Airport", + "latitude_deg": "22.969278", + "longitude_deg": "-98.397461", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Gonzalez", + "scheduled_service": "no", + "local_code": "LMB" + }, + { + "id": "336370", + "ident": "MX-1267", + "type": "small_airport", + "name": "Rancho Don Ricardo Airstrip", + "latitude_deg": "22.701099", + "longitude_deg": "-98.890622", + "elevation_ft": "194", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Rancho Don Ricardo", + "scheduled_service": "no", + "local_code": "RDT" + }, + { + "id": "336371", + "ident": "MX-1268", + "type": "closed", + "name": "Rancho El Cibolo Airstrip", + "latitude_deg": "29.510658", + "longitude_deg": "-102.370734", + "elevation_ft": "3675", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no", + "local_code": "CIC" + }, + { + "id": "336372", + "ident": "MX-1269", + "type": "heliport", + "name": "Torre II Helipad", + "latitude_deg": "19.387631", + "longitude_deg": "-99.251035", + "elevation_ft": "8629", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuajimalpa", + "scheduled_service": "no", + "local_code": "HID" + }, + { + "id": "336373", + "ident": "MX-1270", + "type": "small_airport", + "name": "Agrodesarrollo Carbonera Airport", + "latitude_deg": "25.317222", + "longitude_deg": "-99.223361", + "elevation_ft": "689", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "General Terán", + "scheduled_service": "no", + "local_code": "ADC" + }, + { + "id": "336374", + "ident": "MX-1271", + "type": "heliport", + "name": "Torre Optima Helipad", + "latitude_deg": "19.430307", + "longitude_deg": "-99.211276", + "elevation_ft": "7867", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HTP" + }, + { + "id": "336375", + "ident": "MX-1272", + "type": "small_airport", + "name": "Campo Puerto Rico Airport", + "latitude_deg": "24.5253", + "longitude_deg": "-107.251228", + "elevation_ft": "262", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "CPK" + }, + { + "id": "336376", + "ident": "MX-1273", + "type": "small_airport", + "name": "El Gargaliote Airport", + "latitude_deg": "29.460606", + "longitude_deg": "-105.608492", + "elevation_ft": "4367", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Aldama", + "scheduled_service": "no", + "local_code": "GBF" + }, + { + "id": "336377", + "ident": "MX-1274", + "type": "heliport", + "name": "Helipuerto Agencia Estatal de Investigaciones Monterrey", + "latitude_deg": "25.693242", + "longitude_deg": "-100.294404", + "elevation_ft": "1696", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Monterrey", + "scheduled_service": "no", + "local_code": "HAI" + }, + { + "id": "336378", + "ident": "MX-1275", + "type": "small_airport", + "name": "Huatabampo Base Airstrip", + "latitude_deg": "26.788295", + "longitude_deg": "-109.61552", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Huatabampo", + "scheduled_service": "no", + "local_code": "PBH" + }, + { + "id": "336379", + "ident": "MX-1276", + "type": "small_airport", + "name": "Navojoa Base Airstrip", + "latitude_deg": "26.998917", + "longitude_deg": "-109.467248", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Navojoa", + "scheduled_service": "no", + "local_code": "PBN" + }, + { + "id": "336380", + "ident": "MX-1277", + "type": "small_airport", + "name": "Coluta Airstrip", + "latitude_deg": "25.109306", + "longitude_deg": "-106.733326", + "elevation_ft": "2044", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "CLU" + }, + { + "id": "336381", + "ident": "MX-1278", + "type": "small_airport", + "name": "El Cristo Airport", + "latitude_deg": "20.473577", + "longitude_deg": "-97.056034", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Tecolutla", + "scheduled_service": "no", + "local_code": "CRX" + }, + { + "id": "336382", + "ident": "MX-1279", + "type": "closed", + "name": "Elmore and Sthal Airstrip", + "latitude_deg": "22.671828", + "longitude_deg": "-98.538587", + "elevation_ft": "138", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Gonzalez", + "scheduled_service": "no", + "local_code": "EAS", + "keywords": "EAS" + }, + { + "id": "336384", + "ident": "MX-1280", + "type": "small_airport", + "name": "El Baculo Airport", + "latitude_deg": "29.255486", + "longitude_deg": "-102.12764", + "elevation_ft": "3478", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no", + "local_code": "BCL" + }, + { + "id": "336388", + "ident": "MX-1281", + "type": "small_airport", + "name": "Pablo L. Sidar Airport", + "latitude_deg": "18.772466", + "longitude_deg": "-103.174528", + "elevation_ft": "3346", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Coalcoman", + "scheduled_service": "no", + "local_code": "CLM" + }, + { + "id": "336389", + "ident": "MX-1282", + "type": "small_airport", + "name": "Las Praderas Airport", + "latitude_deg": "24.007047", + "longitude_deg": "-104.549525", + "elevation_ft": "6089", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Durango", + "scheduled_service": "no", + "local_code": "PGD", + "keywords": "Rancho las Águilas" + }, + { + "id": "336446", + "ident": "MX-1283", + "type": "small_airport", + "name": "Fertilizantes DAF Airstrip", + "latitude_deg": "32.589798", + "longitude_deg": "-114.960916", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no" + }, + { + "id": "336447", + "ident": "MX-1284", + "type": "small_airport", + "name": "Aerofumigaciones Monterrey Airstrip", + "latitude_deg": "32.55138", + "longitude_deg": "-115.052272", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no" + }, + { + "id": "336448", + "ident": "MX-1285", + "type": "small_airport", + "name": "La Rumorosa Airstrip", + "latitude_deg": "32.525051", + "longitude_deg": "-116.035865", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Tecate", + "scheduled_service": "no" + }, + { + "id": "336449", + "ident": "MX-1286", + "type": "small_airport", + "name": "Arroyo de Agua Grande Airport", + "latitude_deg": "32.419303", + "longitude_deg": "-115.896159", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Tecate", + "scheduled_service": "no" + }, + { + "id": "336450", + "ident": "MX-1287", + "type": "small_airport", + "name": "Rancho las Juntas Airport", + "latitude_deg": "32.50027", + "longitude_deg": "-116.371", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Tecate", + "scheduled_service": "no" + }, + { + "id": "336451", + "ident": "MX-1288", + "type": "small_airport", + "name": "Rancho Sandoval Airstrip", + "latitude_deg": "32.108712", + "longitude_deg": "-116.543291", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "keywords": "Colonia de Guadalupe NE" + }, + { + "id": "336452", + "ident": "MX-1289", + "type": "closed", + "name": "New Ensenada Airport", + "latitude_deg": "31.898546", + "longitude_deg": "-116.20368", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ojos Negros", + "scheduled_service": "no" + }, + { + "id": "336920", + "ident": "MX-1290", + "type": "small_airport", + "name": "Desierto de Sonora Airport", + "latitude_deg": "31.82887", + "longitude_deg": "-112.75749", + "elevation_ft": "1432", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Sonoyta", + "scheduled_service": "no" + }, + { + "id": "337311", + "ident": "MX-1291", + "type": "small_airport", + "name": "Tepache Airport", + "latitude_deg": "29.52914", + "longitude_deg": "-109.51955", + "elevation_ft": "2012", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Tepache", + "scheduled_service": "no" + }, + { + "id": "337312", + "ident": "MX-1292", + "type": "small_airport", + "name": "Huásabas Airport", + "latitude_deg": "29.907422", + "longitude_deg": "-109.306347", + "elevation_ft": "1801", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Huásabas", + "scheduled_service": "no" + }, + { + "id": "337314", + "ident": "MX-1293", + "type": "closed", + "name": "San Patricio la Mesa Airstrip", + "latitude_deg": "29.790556", + "longitude_deg": "-109.687569", + "elevation_ft": "2122", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Moctezuma", + "scheduled_service": "no" + }, + { + "id": "337315", + "ident": "MX-1294", + "type": "closed", + "name": "San Rafael de la Noria Airstrip", + "latitude_deg": "30.1667", + "longitude_deg": "-109.7673", + "elevation_ft": "2822", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cumpas", + "scheduled_service": "no" + }, + { + "id": "337316", + "ident": "MX-1295", + "type": "small_airport", + "name": "Santa Rosa Airstrip", + "latitude_deg": "30.353", + "longitude_deg": "-109.8514", + "elevation_ft": "3236", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Arizpe", + "scheduled_service": "no" + }, + { + "id": "337317", + "ident": "MX-1296", + "type": "closed", + "name": "Baviácora Airstrip", + "latitude_deg": "29.7252", + "longitude_deg": "-110.157", + "elevation_ft": "1972", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Baviácora", + "scheduled_service": "no" + }, + { + "id": "337318", + "ident": "MX-1297", + "type": "small_airport", + "name": "Aconchi Airport", + "latitude_deg": "29.8356", + "longitude_deg": "-110.2239", + "elevation_ft": "2041", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Aconchi", + "scheduled_service": "no" + }, + { + "id": "337319", + "ident": "MX-1298", + "type": "closed", + "name": "San Felipe de Jesús Airport", + "latitude_deg": "29.8659", + "longitude_deg": "-110.2383", + "elevation_ft": "2030", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "San Felipe de Jesús", + "scheduled_service": "no" + }, + { + "id": "337320", + "ident": "MX-1299", + "type": "small_airport", + "name": "Huépac Airport", + "latitude_deg": "29.9113", + "longitude_deg": "-110.2067", + "elevation_ft": "2117", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Huépac", + "scheduled_service": "no" + }, + { + "id": "337321", + "ident": "MX-1300", + "type": "small_airport", + "name": "Banámichi Airport", + "latitude_deg": "30.0157", + "longitude_deg": "-110.2072", + "elevation_ft": "2323", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Banámichi", + "scheduled_service": "no" + }, + { + "id": "337322", + "ident": "MX-1301", + "type": "small_airport", + "name": "Sinoquipe Airport", + "latitude_deg": "30.1606", + "longitude_deg": "-110.2505", + "elevation_ft": "2484", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Arizpe", + "scheduled_service": "no" + }, + { + "id": "337323", + "ident": "MX-1302", + "type": "small_airport", + "name": "Arizpe Airport", + "latitude_deg": "30.372701", + "longitude_deg": "-110.1641", + "elevation_ft": "2852", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Arizpe", + "scheduled_service": "no" + }, + { + "id": "337324", + "ident": "MX-1303", + "type": "small_airport", + "name": "Buenavista Airport", + "latitude_deg": "30.3939", + "longitude_deg": "-110.0504", + "elevation_ft": "3038", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Arizpe", + "scheduled_service": "no" + }, + { + "id": "337325", + "ident": "MX-1304", + "type": "closed", + "name": "Chinapa Airport", + "latitude_deg": "30.4335", + "longitude_deg": "-110.0361", + "elevation_ft": "3038", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Arizpe", + "scheduled_service": "no" + }, + { + "id": "337326", + "ident": "MX-1305", + "type": "closed", + "name": "Old Bacoachi Airstrip", + "latitude_deg": "30.62667", + "longitude_deg": "-109.96467", + "elevation_ft": "3449", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Bacoachi", + "scheduled_service": "no" + }, + { + "id": "337327", + "ident": "MX-1306", + "type": "small_airport", + "name": "San Buenaventura Airport", + "latitude_deg": "29.83441", + "longitude_deg": "-107.44408", + "elevation_ft": "5189", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "San Buenaventura", + "scheduled_service": "no" + }, + { + "id": "337329", + "ident": "MX-1307", + "type": "closed", + "name": "San Lorencito Airport", + "latitude_deg": "29.9124", + "longitude_deg": "-106.39658", + "elevation_ft": "5179", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Villa Ahumada", + "scheduled_service": "no" + }, + { + "id": "337330", + "ident": "MX-1308", + "type": "closed", + "name": "Rayón Airstrip", + "latitude_deg": "29.70731", + "longitude_deg": "-110.5421", + "elevation_ft": "1987", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Rayón", + "scheduled_service": "no" + }, + { + "id": "337331", + "ident": "MX-1309", + "type": "small_airport", + "name": "Opodepe Airport", + "latitude_deg": "29.92847", + "longitude_deg": "-110.61753", + "elevation_ft": "2260", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Opodepe", + "scheduled_service": "no" + }, + { + "id": "337336", + "ident": "MX-1310", + "type": "small_airport", + "name": "Colonia Juárez Nuevo Airport", + "latitude_deg": "30.3073", + "longitude_deg": "-108.096113", + "elevation_ft": "5325", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Nuevo Casas Grandes", + "scheduled_service": "no", + "local_code": "CJN" + }, + { + "id": "337337", + "ident": "MX-1311", + "type": "small_airport", + "name": "Las Mulas Airport", + "latitude_deg": "25.954418", + "longitude_deg": "-104.874941", + "elevation_ft": "6286", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Villa Hidalgo", + "scheduled_service": "no", + "local_code": "LMH" + }, + { + "id": "337338", + "ident": "MX-1312", + "type": "small_airport", + "name": "Rancho El 24 Airport", + "latitude_deg": "30.301196", + "longitude_deg": "-105.939435", + "elevation_ft": "4672", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Villa Ahumada", + "scheduled_service": "no", + "local_code": "TFB" + }, + { + "id": "337339", + "ident": "MX-1313", + "type": "heliport", + "name": "Palmore Heliport", + "latitude_deg": "28.618687", + "longitude_deg": "-106.089944", + "elevation_ft": "4790", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Chihuahua", + "scheduled_service": "no", + "local_code": "HSP" + }, + { + "id": "337411", + "ident": "MX-1314", + "type": "small_airport", + "name": "Pie de La Cuesta de La Bajada Airstrip", + "latitude_deg": "25.066416", + "longitude_deg": "-106.791723", + "elevation_ft": "1903", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "PEB" + }, + { + "id": "337412", + "ident": "MX-1315", + "type": "small_airport", + "name": "Cruz Negra Airstrip", + "latitude_deg": "22.000494", + "longitude_deg": "-98.34579", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Panuco", + "scheduled_service": "no", + "local_code": "XNE" + }, + { + "id": "337413", + "ident": "MX-1316", + "type": "small_airport", + "name": "Tanchijol Airstrip", + "latitude_deg": "21.725507", + "longitude_deg": "-98.438809", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "El Higo", + "scheduled_service": "no", + "local_code": "TCJ" + }, + { + "id": "337414", + "ident": "MX-1317", + "type": "small_airport", + "name": "Cuatro Caminos Airport", + "latitude_deg": "22.51442", + "longitude_deg": "-98.835057", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Ciudad Mante", + "scheduled_service": "no", + "local_code": "CCM" + }, + { + "id": "337415", + "ident": "MX-1318", + "type": "seaplane_base", + "name": "Punta Soliman Seaplane Base", + "latitude_deg": "20.284781", + "longitude_deg": "-87.374525", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Solidaridad", + "scheduled_service": "no", + "local_code": "PSM" + }, + { + "id": "337416", + "ident": "MX-1319", + "type": "small_airport", + "name": "Gatos Bravos Airport", + "latitude_deg": "24.67502", + "longitude_deg": "-107.669653", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Navolato", + "scheduled_service": "no", + "local_code": "GBV" + }, + { + "id": "337417", + "ident": "MX-1320", + "type": "small_airport", + "name": "Acuagranjas Airport", + "latitude_deg": "17.480362", + "longitude_deg": "-93.491496", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Ostuacan", + "scheduled_service": "no", + "local_code": "ADL" + }, + { + "id": "337418", + "ident": "MX-1321", + "type": "small_airport", + "name": "Pista Leo", + "latitude_deg": "17.585449", + "longitude_deg": "-92.977123", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Teapa", + "scheduled_service": "no", + "local_code": "JEP" + }, + { + "id": "337419", + "ident": "MX-1322", + "type": "closed", + "name": "Aero Fumigaciones Cessna Airstrip", + "latitude_deg": "25.531367", + "longitude_deg": "-108.584597", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "AFE", + "keywords": "AFE" + }, + { + "id": "337420", + "ident": "MX-1323", + "type": "small_airport", + "name": "Villa Hidalgo Airstrip", + "latitude_deg": "30.168653", + "longitude_deg": "-109.330637", + "elevation_ft": "2133", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Villa Hidalgo", + "scheduled_service": "no", + "local_code": "AVH" + }, + { + "id": "337421", + "ident": "MX-1324", + "type": "small_airport", + "name": "Aerofumigaciones La 300 Airport", + "latitude_deg": "25.244492", + "longitude_deg": "-108.09415", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Angostura", + "scheduled_service": "no", + "local_code": "ELD" + }, + { + "id": "337422", + "ident": "MX-1325", + "type": "small_airport", + "name": "Aerofumigaciones Quila Airport", + "latitude_deg": "23.239542", + "longitude_deg": "-98.805102", + "elevation_ft": "597", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Llera de Canales", + "scheduled_service": "no", + "local_code": "QUI" + }, + { + "id": "337423", + "ident": "MX-1326", + "type": "heliport", + "name": "Agua Helipad", + "latitude_deg": "19.315123", + "longitude_deg": "-99.20561", + "elevation_ft": "7762", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Alvaro Obregon", + "scheduled_service": "no", + "local_code": "HAG" + }, + { + "id": "337424", + "ident": "MX-1327", + "type": "small_airport", + "name": "Aguachile Airstrip", + "latitude_deg": "29.210977", + "longitude_deg": "-102.573906", + "elevation_ft": "3937", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no", + "local_code": "RGH" + }, + { + "id": "337428", + "ident": "MX-1328", + "type": "small_airport", + "name": "Amaculi Airstrip", + "latitude_deg": "24.619886", + "longitude_deg": "-106.599441", + "elevation_ft": "1575", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "AMQ" + }, + { + "id": "337430", + "ident": "MX-1329", + "type": "small_airport", + "name": "Las Cruces Airstrip", + "latitude_deg": "18.748776", + "longitude_deg": "-102.243222", + "elevation_ft": "889", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Tumbiscatio", + "scheduled_service": "no", + "local_code": "LKS" + }, + { + "id": "337431", + "ident": "MX-1330", + "type": "heliport", + "name": "Tuxtla Gutiérrez Hospital Helipad", + "latitude_deg": "16.751827", + "longitude_deg": "-93.078099", + "elevation_ft": "1683", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Tuxtla Gutierrez", + "scheduled_service": "no", + "keywords": "HTG" + }, + { + "id": "337432", + "ident": "MX-1331", + "type": "small_airport", + "name": "San Jose Independencia Airstrip", + "latitude_deg": "18.384367", + "longitude_deg": "-96.077023", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Tres Valles", + "scheduled_service": "no", + "local_code": "NSJ" + }, + { + "id": "337433", + "ident": "MX-1332", + "type": "small_airport", + "name": "El Bajio del Oso Airfield", + "latitude_deg": "30.276497", + "longitude_deg": "-108.924948", + "elevation_ft": "3543", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Bacerac", + "scheduled_service": "no", + "local_code": "BDO" + }, + { + "id": "337434", + "ident": "MX-1333", + "type": "heliport", + "name": "Hospital Angeles Lindavista Helipad", + "latitude_deg": "19.487196", + "longitude_deg": "-99.129515", + "elevation_ft": "7343", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Gustavo A. Madero", + "scheduled_service": "no", + "local_code": "HLV" + }, + { + "id": "337435", + "ident": "MX-1334", + "type": "small_airport", + "name": "Vista Hermosa Airport", + "latitude_deg": "18.649854", + "longitude_deg": "-99.261442", + "elevation_ft": "3268", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MOR", + "municipality": "Puente de Ixtla", + "scheduled_service": "no", + "local_code": "VHA" + }, + { + "id": "337436", + "ident": "MX-1335", + "type": "small_airport", + "name": "Erendira Airport", + "latitude_deg": "14.750139", + "longitude_deg": "-92.3413", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Tapachula", + "scheduled_service": "no", + "local_code": "ERN" + }, + { + "id": "337437", + "ident": "MX-1336", + "type": "small_airport", + "name": "Los Ocaliptos Airport", + "latitude_deg": "25.054929", + "longitude_deg": "-107.9", + "elevation_ft": "197", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Mocorito", + "scheduled_service": "no", + "local_code": "OCL" + }, + { + "id": "337438", + "ident": "MX-1337", + "type": "small_airport", + "name": "La Soledad Airport", + "latitude_deg": "25.906567", + "longitude_deg": "-108.928553", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "El Fuerte", + "scheduled_service": "no", + "local_code": "LSD" + }, + { + "id": "337439", + "ident": "MX-1338", + "type": "small_airport", + "name": "La Fortuna Airport", + "latitude_deg": "28.987625", + "longitude_deg": "-111.062756", + "elevation_ft": "545", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Hermosillo", + "scheduled_service": "no", + "local_code": "FTN" + }, + { + "id": "337440", + "ident": "MX-1339", + "type": "small_airport", + "name": "Los Terreros Airport", + "latitude_deg": "28.676545", + "longitude_deg": "-101.532748", + "elevation_ft": "3100", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no", + "local_code": "DLM" + }, + { + "id": "337441", + "ident": "MX-1340", + "type": "small_airport", + "name": "San Nicolas Airstrip", + "latitude_deg": "25.098454", + "longitude_deg": "-106.677332", + "elevation_ft": "2953", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "NLA" + }, + { + "id": "337442", + "ident": "MX-1341", + "type": "heliport", + "name": "Corporativo GBM Helipad", + "latitude_deg": "19.363563", + "longitude_deg": "-99.182746", + "elevation_ft": "7854", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Alvaro Obregon", + "scheduled_service": "no", + "local_code": "HBW" + }, + { + "id": "337446", + "ident": "MX-1342", + "type": "small_airport", + "name": "Mesa del Alamo Airstrip", + "latitude_deg": "27.487068", + "longitude_deg": "-106.877446", + "elevation_ft": "4003", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Nonoava", + "scheduled_service": "no", + "local_code": "MDL" + }, + { + "id": "337447", + "ident": "MX-1343", + "type": "heliport", + "name": "Coca Cola Helipad", + "latitude_deg": "19.429034", + "longitude_deg": "-99.184951", + "elevation_ft": "7573", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HCC" + }, + { + "id": "337448", + "ident": "MX-1344", + "type": "heliport", + "name": "Residencial del Bosque II Helipad", + "latitude_deg": "19.429378", + "longitude_deg": "-99.18434", + "elevation_ft": "7464", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HRW" + }, + { + "id": "337449", + "ident": "MX-1345", + "type": "small_airport", + "name": "La Panza Airport", + "latitude_deg": "24.54523", + "longitude_deg": "-107.538353", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Navolato", + "scheduled_service": "no", + "local_code": "PZS" + }, + { + "id": "337450", + "ident": "MX-1346", + "type": "small_airport", + "name": "La Mota Airport", + "latitude_deg": "26.836111", + "longitude_deg": "-101.110278", + "elevation_ft": "2090", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Monclova", + "scheduled_service": "no", + "local_code": "SHM" + }, + { + "id": "337451", + "ident": "MX-1347", + "type": "heliport", + "name": "Nacozari Helipad", + "latitude_deg": "30.482436", + "longitude_deg": "-109.642729", + "elevation_ft": "4757", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Nacozari de García", + "scheduled_service": "no", + "local_code": "HNS" + }, + { + "id": "337452", + "ident": "MX-1348", + "type": "small_airport", + "name": "La Mesa Airstrip", + "latitude_deg": "21.760307", + "longitude_deg": "-97.76521", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Ozuluama", + "scheduled_service": "no", + "local_code": "LMX" + }, + { + "id": "337454", + "ident": "MX-1349", + "type": "closed", + "name": "El Escondido Airport", + "latitude_deg": "30.308689", + "longitude_deg": "-105.865932", + "elevation_ft": "5361", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Villa Ahumada", + "scheduled_service": "no", + "local_code": "NYZ" + }, + { + "id": "337470", + "ident": "MX-1350", + "type": "small_airport", + "name": "Campo Santa Aurora", + "latitude_deg": "24.510611", + "longitude_deg": "-107.395444", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "CSR" + }, + { + "id": "337471", + "ident": "MX-1351", + "type": "small_airport", + "name": "La Cieneguita Airstrip", + "latitude_deg": "28.163087", + "longitude_deg": "-108.529344", + "elevation_ft": "2920", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Moris", + "scheduled_service": "no", + "local_code": "CGT" + }, + { + "id": "337472", + "ident": "MX-1352", + "type": "small_airport", + "name": "La Michoacana Airport", + "latitude_deg": "24.712222", + "longitude_deg": "-107.629167", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Navolato", + "scheduled_service": "no", + "local_code": "MHC" + }, + { + "id": "337473", + "ident": "MX-1353", + "type": "small_airport", + "name": "El Pillaje Airport", + "latitude_deg": "27.681932", + "longitude_deg": "-100.191579", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Anáhuac", + "scheduled_service": "no", + "local_code": "RPH", + "keywords": "Los Sauces" + }, + { + "id": "337474", + "ident": "MX-1354", + "type": "small_airport", + "name": "Los Mártires Airport", + "latitude_deg": "27.354854", + "longitude_deg": "-113.222598", + "elevation_ft": "262", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no", + "local_code": "LMF" + }, + { + "id": "337475", + "ident": "MX-1355", + "type": "small_airport", + "name": "El Tigre Airport", + "latitude_deg": "23.992046", + "longitude_deg": "-99.999876", + "elevation_ft": "5771", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Aramberri", + "scheduled_service": "no", + "local_code": "TGE" + }, + { + "id": "337476", + "ident": "MX-1356", + "type": "small_airport", + "name": "Huapoca Airport", + "latitude_deg": "29.140786", + "longitude_deg": "-108.297665", + "elevation_ft": "4800", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Ciudad Madera", + "scheduled_service": "no", + "local_code": "POK" + }, + { + "id": "337477", + "ident": "MX-1357", + "type": "seaplane_base", + "name": "Banco Chinchorro Seaplane Base", + "latitude_deg": "18.587333", + "longitude_deg": "-87.325317", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Othon Pompeyo Blano", + "scheduled_service": "no", + "local_code": "BCQ" + }, + { + "id": "337478", + "ident": "MX-1358", + "type": "small_airport", + "name": "La Laguna Airstrip", + "latitude_deg": "25.099688", + "longitude_deg": "-106.991022", + "elevation_ft": "3202", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "LAF" + }, + { + "id": "337479", + "ident": "MX-1359", + "type": "small_airport", + "name": "El Viejo Airport", + "latitude_deg": "27.834579", + "longitude_deg": "-100.279877", + "elevation_ft": "787", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Villa Hidalgo", + "scheduled_service": "no", + "local_code": "ELV" + }, + { + "id": "337620", + "ident": "MX-1360", + "type": "small_airport", + "name": "Charcas Airport", + "latitude_deg": "23.14738", + "longitude_deg": "-101.12137", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "Charcas", + "scheduled_service": "no" + }, + { + "id": "337621", + "ident": "MX-1361", + "type": "small_airport", + "name": "Villa de Arista Airport", + "latitude_deg": "22.64979", + "longitude_deg": "-100.82994", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "Villa de Arista", + "scheduled_service": "no" + }, + { + "id": "337622", + "ident": "MX-1362", + "type": "heliport", + "name": "Tangamanga Park #1 Heliport", + "latitude_deg": "22.12141", + "longitude_deg": "-101.00911", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "San Luis Potosí", + "scheduled_service": "no" + }, + { + "id": "337623", + "ident": "MX-1363", + "type": "small_airport", + "name": "Juan Murillo Airport", + "latitude_deg": "23.950528", + "longitude_deg": "-106.927335", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Cruz de Elota", + "scheduled_service": "no", + "local_code": "JMR" + }, + { + "id": "337624", + "ident": "MX-1364", + "type": "small_airport", + "name": "Medina Airport", + "latitude_deg": "24.588363", + "longitude_deg": "-107.368811", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacán", + "scheduled_service": "no", + "local_code": "MNA" + }, + { + "id": "337625", + "ident": "MX-1365", + "type": "small_airport", + "name": "Leon's Airstrip", + "latitude_deg": "23.980783", + "longitude_deg": "-106.949587", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Cruz de Elota", + "scheduled_service": "no", + "local_code": "LEO" + }, + { + "id": "337626", + "ident": "MX-1366", + "type": "small_airport", + "name": "Copalquin Airstrip", + "latitude_deg": "25.518558", + "longitude_deg": "-107.080672", + "elevation_ft": "3796", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "CPQ" + }, + { + "id": "337627", + "ident": "MX-1367", + "type": "closed", + "name": "Rancho El Chicural Airstrip", + "latitude_deg": "26.472455", + "longitude_deg": "-108.932362", + "elevation_ft": "3002", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Tesopaco", + "scheduled_service": "no", + "local_code": "RUL" + }, + { + "id": "337628", + "ident": "MX-1368", + "type": "small_airport", + "name": "Pista El Alamo", + "latitude_deg": "24.677223", + "longitude_deg": "-107.789011", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "FGD" + }, + { + "id": "337629", + "ident": "MX-1369", + "type": "small_airport", + "name": "Torreon Airport", + "latitude_deg": "32.596389", + "longitude_deg": "-114.945833", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "TOR" + }, + { + "id": "337630", + "ident": "MX-1370", + "type": "small_airport", + "name": "Los Frailes Airstrip", + "latitude_deg": "23.366949", + "longitude_deg": "-109.432325", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "San José del Cabo", + "scheduled_service": "no", + "local_code": "LFS" + }, + { + "id": "337640", + "ident": "MX-1371", + "type": "small_airport", + "name": "Agua Caliente Airstrip", + "latitude_deg": "30.67055", + "longitude_deg": "-115.14067", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no" + }, + { + "id": "337676", + "ident": "MX-1372", + "type": "closed", + "name": "Old Navojoa Airport", + "latitude_deg": "27.0806", + "longitude_deg": "-109.4257", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Navojoa", + "scheduled_service": "no" + }, + { + "id": "337782", + "ident": "MX-1373", + "type": "closed", + "name": "Mexiquito Airstrip", + "latitude_deg": "27.5107", + "longitude_deg": "-100.60174", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Progreso", + "scheduled_service": "no" + }, + { + "id": "337783", + "ident": "MX-1374", + "type": "closed", + "name": "Minas de la Luz Airstrip", + "latitude_deg": "27.58407", + "longitude_deg": "-101.47831", + "elevation_ft": "1808", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Progreso", + "scheduled_service": "no" + }, + { + "id": "337784", + "ident": "MX-1375", + "type": "small_airport", + "name": "San Ignacio Airstrip", + "latitude_deg": "27.62091", + "longitude_deg": "-101.51227", + "elevation_ft": "1893", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Progreso", + "scheduled_service": "no" + }, + { + "id": "337786", + "ident": "MX-1376", + "type": "closed", + "name": "La Soledad Airstrip", + "latitude_deg": "27.68412", + "longitude_deg": "-101.59149", + "elevation_ft": "2141", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Progreso", + "scheduled_service": "no" + }, + { + "id": "337787", + "ident": "MX-1377", + "type": "closed", + "name": "El Dique Airstrip", + "latitude_deg": "27.45522", + "longitude_deg": "-100.57625", + "elevation_ft": "897", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Progreso", + "scheduled_service": "no" + }, + { + "id": "337799", + "ident": "MX-1378", + "type": "heliport", + "name": "Coronado Sur Heliport", + "latitude_deg": "32.412419", + "longitude_deg": "-117.244563", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Rosarito", + "scheduled_service": "no" + }, + { + "id": "337800", + "ident": "MX-1379", + "type": "closed", + "name": "Agua Caliente Airstrip", + "latitude_deg": "32.49909", + "longitude_deg": "-116.99957", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Tijuana", + "scheduled_service": "no" + }, + { + "id": "337956", + "ident": "MX-1380", + "type": "closed", + "name": "Old Matamoros Airport", + "latitude_deg": "25.7572", + "longitude_deg": "-97.52694", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Matamoros", + "scheduled_service": "no" + }, + { + "id": "338022", + "ident": "MX-1381", + "type": "small_airport", + "name": "La Campana Airstrip", + "latitude_deg": "23.776744", + "longitude_deg": "-110.271235", + "elevation_ft": "722", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no", + "local_code": "LCA" + }, + { + "id": "338023", + "ident": "MX-1382", + "type": "heliport", + "name": "Iusa II Heliport", + "latitude_deg": "19.637283", + "longitude_deg": "-99.782875", + "elevation_ft": "8363", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Jocotitlan", + "scheduled_service": "no", + "local_code": "HIW" + }, + { + "id": "338024", + "ident": "MX-1383", + "type": "small_airport", + "name": "Los Aztecas I Airstrip", + "latitude_deg": "22.502982", + "longitude_deg": "-98.597821", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Ciudad Mante", + "scheduled_service": "no", + "local_code": "LZS" + }, + { + "id": "338025", + "ident": "MX-1384", + "type": "small_airport", + "name": "San Pedro de La Cueva Airport", + "latitude_deg": "29.290357", + "longitude_deg": "-109.750983", + "elevation_ft": "1207", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Batuc", + "scheduled_service": "no", + "local_code": "SQA" + }, + { + "id": "338026", + "ident": "MX-1385", + "type": "small_airport", + "name": "Pista San Francisco", + "latitude_deg": "24.373294", + "longitude_deg": "-107.17495", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "SFP" + }, + { + "id": "338027", + "ident": "MX-1386", + "type": "closed", + "name": "Santa Maria Agricola Airport", + "latitude_deg": "25.603799", + "longitude_deg": "-108.303995", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "SMZ" + }, + { + "id": "338028", + "ident": "MX-1387", + "type": "small_airport", + "name": "Calaveras Airport", + "latitude_deg": "25.54429", + "longitude_deg": "-103.54773", + "elevation_ft": "3734", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Ciudad Lerdo", + "scheduled_service": "no", + "local_code": "CVE" + }, + { + "id": "338029", + "ident": "MX-1388", + "type": "small_airport", + "name": "La Esmeralda Airstrip", + "latitude_deg": "18.294771", + "longitude_deg": "-96.028136", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Cosamaloapan", + "scheduled_service": "no", + "local_code": "LED" + }, + { + "id": "338030", + "ident": "MX-1389", + "type": "heliport", + "name": "ISSSTE Veracruz Helipad", + "latitude_deg": "19.171893", + "longitude_deg": "-96.13492", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Veracruz", + "scheduled_service": "no", + "local_code": "HIV", + "home_link": "https://www.gob.mx/issste/prensa/165126" + }, + { + "id": "338034", + "ident": "MX-1390", + "type": "heliport", + "name": "Torre Zapopan Helipad", + "latitude_deg": "20.707418", + "longitude_deg": "-103.415337", + "elevation_ft": "5512", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Zapopan", + "scheduled_service": "no", + "local_code": "HTZ", + "keywords": "Inbursa Tower" + }, + { + "id": "338101", + "ident": "MX-1391", + "type": "small_airport", + "name": "El Pedregal Airstrip", + "latitude_deg": "30.46217", + "longitude_deg": "-115.9662", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "PGL" + }, + { + "id": "338102", + "ident": "MX-1392", + "type": "small_airport", + "name": "San Quintín (Bahía Falsa) Airstrip", + "latitude_deg": "30.44", + "longitude_deg": "-115.98527", + "elevation_ft": "61", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no" + }, + { + "id": "338104", + "ident": "MX-1393", + "type": "small_airport", + "name": "Las Palmas Airstrip", + "latitude_deg": "30.55817", + "longitude_deg": "-115.90249", + "elevation_ft": "276", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no" + }, + { + "id": "338105", + "ident": "MX-1394", + "type": "small_airport", + "name": "Santa Rosalita Airstrip", + "latitude_deg": "28.6819", + "longitude_deg": "-114.2235", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no" + }, + { + "id": "338107", + "ident": "MX-1395", + "type": "small_airport", + "name": "Villa Jesús María Airstrip", + "latitude_deg": "28.27687", + "longitude_deg": "-114.00776", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no" + }, + { + "id": "338108", + "ident": "MX-1396", + "type": "small_airport", + "name": "La Bocana Airstrip", + "latitude_deg": "26.82595", + "longitude_deg": "-113.67142", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no" + }, + { + "id": "338109", + "ident": "MX-1397", + "type": "small_airport", + "name": "La Vinatería Airstrip", + "latitude_deg": "26.18256", + "longitude_deg": "-112.11005", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Comondú", + "scheduled_service": "no" + }, + { + "id": "338110", + "ident": "MX-1398", + "type": "small_airport", + "name": "Las Barrancas Airstrip", + "latitude_deg": "25.99302", + "longitude_deg": "-112.19211", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Comondú", + "scheduled_service": "no" + }, + { + "id": "338111", + "ident": "MX-1399", + "type": "closed", + "name": "Las Barrancas North Airstrip", + "latitude_deg": "26.021", + "longitude_deg": "-112.2035", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Comondú", + "scheduled_service": "no" + }, + { + "id": "338112", + "ident": "MX-1400", + "type": "small_airport", + "name": "Platano Airstrip", + "latitude_deg": "25.522227", + "longitude_deg": "-107.113556", + "elevation_ft": "3691", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "PLX" + }, + { + "id": "338113", + "ident": "MX-1401", + "type": "closed", + "name": "La Poza Grande Airstrip", + "latitude_deg": "25.77057", + "longitude_deg": "-112.03964", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Comondú", + "scheduled_service": "no" + }, + { + "id": "338114", + "ident": "MX-1402", + "type": "small_airport", + "name": "Bastantita Airstrip", + "latitude_deg": "25.412588", + "longitude_deg": "-107.053281", + "elevation_ft": "7398", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "BST" + }, + { + "id": "338115", + "ident": "MX-1403", + "type": "closed", + "name": "Punta Paredón Airstrip", + "latitude_deg": "24.7473", + "longitude_deg": "-111.96992", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Comondú", + "scheduled_service": "no" + }, + { + "id": "338116", + "ident": "MX-1404", + "type": "closed", + "name": "El Conejo Airstrip", + "latitude_deg": "24.0719", + "longitude_deg": "-110.993", + "elevation_ft": "64", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no" + }, + { + "id": "338117", + "ident": "MX-1405", + "type": "closed", + "name": "El Conejo Viejo Airstrip", + "latitude_deg": "24.107681", + "longitude_deg": "-110.957829", + "elevation_ft": "162", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no" + }, + { + "id": "338118", + "ident": "MX-1406", + "type": "closed", + "name": "El Conejo Viejo South Airstrip", + "latitude_deg": "24.0921", + "longitude_deg": "-110.9604", + "elevation_ft": "233", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no" + }, + { + "id": "338119", + "ident": "MX-1407", + "type": "closed", + "name": "La Garita Airstrip", + "latitude_deg": "23.62949", + "longitude_deg": "-110.24101", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no" + }, + { + "id": "338120", + "ident": "MX-1408", + "type": "closed", + "name": "Punta Lobos Airstrip", + "latitude_deg": "23.4284", + "longitude_deg": "-110.2186", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no" + }, + { + "id": "338121", + "ident": "MX-1409", + "type": "closed", + "name": "Punta Santa María Airstrip", + "latitude_deg": "22.9362", + "longitude_deg": "-109.8238", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Cabo San Lucas", + "scheduled_service": "no" + }, + { + "id": "338122", + "ident": "MX-1410", + "type": "small_airport", + "name": "Ton Airstrip", + "latitude_deg": "25.455985", + "longitude_deg": "-111.891761", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Comondú", + "scheduled_service": "no", + "local_code": "PAW", + "keywords": "Pista Aérea Ton" + }, + { + "id": "338124", + "ident": "MX-1411", + "type": "closed", + "name": "Boca del Álamo Airstrip", + "latitude_deg": "23.88882", + "longitude_deg": "-109.809852", + "elevation_ft": "219", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no" + }, + { + "id": "338125", + "ident": "MX-1412", + "type": "closed", + "name": "Puerto Mexia Airstrip", + "latitude_deg": "24.2928", + "longitude_deg": "-110.1974", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no" + }, + { + "id": "338126", + "ident": "MX-1413", + "type": "closed", + "name": "San Juan Nepomuceno Airstrip", + "latitude_deg": "24.26496", + "longitude_deg": "-110.33468", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no" + }, + { + "id": "338127", + "ident": "MX-1414", + "type": "closed", + "name": "San Juan de la Costa Airstrip", + "latitude_deg": "24.3705", + "longitude_deg": "-110.68169", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no" + }, + { + "id": "338128", + "ident": "MX-1415", + "type": "closed", + "name": "Tripuí Airport", + "latitude_deg": "25.799724", + "longitude_deg": "-111.320644", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Loreto", + "scheduled_service": "no" + }, + { + "id": "338129", + "ident": "MX-1416", + "type": "closed", + "name": "El Ciprés Airstrip", + "latitude_deg": "24.196", + "longitude_deg": "-110.2325", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no" + }, + { + "id": "338130", + "ident": "MX-1417", + "type": "closed", + "name": "Lote Once Airstrip", + "latitude_deg": "26.2597", + "longitude_deg": "-111.5605", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Loreto", + "scheduled_service": "no" + }, + { + "id": "338131", + "ident": "MX-1418", + "type": "small_airport", + "name": "San Juan Bautista Londó Airstrip", + "latitude_deg": "26.222", + "longitude_deg": "-111.47421", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Loreto", + "scheduled_service": "no" + }, + { + "id": "338132", + "ident": "MX-1419", + "type": "small_airport", + "name": "Punta Amolares Airstrip", + "latitude_deg": "26.7198", + "longitude_deg": "-111.8152", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no" + }, + { + "id": "338133", + "ident": "MX-1420", + "type": "heliport", + "name": "Helipuerto Secretaria de Seguridad Publica", + "latitude_deg": "25.703582", + "longitude_deg": "-100.35205", + "elevation_ft": "1827", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Monterrey", + "scheduled_service": "no", + "local_code": "HSM" + }, + { + "id": "338134", + "ident": "MX-1421", + "type": "small_airport", + "name": "Punta San Pedro Airstrip", + "latitude_deg": "26.818", + "longitude_deg": "-111.8842", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no" + }, + { + "id": "338135", + "ident": "MX-1422", + "type": "closed", + "name": "Punta Guadalupe Airstrip", + "latitude_deg": "26.8333", + "longitude_deg": "-111.83489", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no" + }, + { + "id": "338136", + "ident": "MX-1423", + "type": "small_airport", + "name": "Marabasco Airstrip", + "latitude_deg": "19.222666", + "longitude_deg": "-104.525557", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COL", + "municipality": "Manzanillo", + "scheduled_service": "no", + "local_code": "MRB" + }, + { + "id": "338138", + "ident": "MX-1424", + "type": "small_airport", + "name": "Rancho San Carlos Airport", + "latitude_deg": "23.510144", + "longitude_deg": "-97.960346", + "elevation_ft": "459", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "SCK" + }, + { + "id": "338139", + "ident": "MX-1425", + "type": "closed", + "name": "El Huerfanito Airstrip", + "latitude_deg": "30.11588", + "longitude_deg": "-114.62871", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "EHF", + "keywords": "Campo San Juan del Mar" + }, + { + "id": "338140", + "ident": "MX-1426", + "type": "small_airport", + "name": "Campo Cristina Airstrip", + "latitude_deg": "30.53022", + "longitude_deg": "-114.65558", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no" + }, + { + "id": "338141", + "ident": "MX-1427", + "type": "small_airport", + "name": "Muller Airstrip", + "latitude_deg": "32.25337", + "longitude_deg": "-115.17829", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "MLL", + "keywords": "Aerofumigaciones Muller" + }, + { + "id": "338142", + "ident": "MX-1428", + "type": "small_airport", + "name": "El Paraiso Villalobos Airport", + "latitude_deg": "14.866923", + "longitude_deg": "-92.367049", + "elevation_ft": "144", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Mazatan", + "scheduled_service": "no", + "local_code": "PAO" + }, + { + "id": "338143", + "ident": "MX-1429", + "type": "small_airport", + "name": "El Cedrito Airstrip", + "latitude_deg": "29.215833", + "longitude_deg": "-101.888333", + "elevation_ft": "3091", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no", + "local_code": "ECE" + }, + { + "id": "338145", + "ident": "MX-1430", + "type": "small_airport", + "name": "Unión Granjas Elizabeth Airstrip", + "latitude_deg": "27.65035", + "longitude_deg": "-113.37446", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no", + "local_code": "UGE" + }, + { + "id": "338146", + "ident": "MX-1431", + "type": "small_airport", + "name": "Rancho El Piloto Airstrip", + "latitude_deg": "27.61371", + "longitude_deg": "-113.44115", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no", + "local_code": "REP" + }, + { + "id": "338147", + "ident": "MX-1432", + "type": "closed", + "name": "Gustavo Díaz Ordaz Airstrip", + "latitude_deg": "27.6656", + "longitude_deg": "-113.4298", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no" + }, + { + "id": "338148", + "ident": "MX-1433", + "type": "closed", + "name": "San Francisco Airstrip", + "latitude_deg": "27.63057", + "longitude_deg": "-113.4242", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no" + }, + { + "id": "338149", + "ident": "MX-1434", + "type": "closed", + "name": "El Regalo Airstrip", + "latitude_deg": "27.7017", + "longitude_deg": "-113.4378", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no" + }, + { + "id": "338150", + "ident": "MX-1435", + "type": "closed", + "name": "Old Guerrero Negro Airport", + "latitude_deg": "27.9715", + "longitude_deg": "-114.0523", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no" + }, + { + "id": "338151", + "ident": "MX-1436", + "type": "small_airport", + "name": "El Arco Airstrip", + "latitude_deg": "28.002", + "longitude_deg": "-113.3905", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no" + }, + { + "id": "338152", + "ident": "MX-1437", + "type": "closed", + "name": "Aguascalientes South Airstrip", + "latitude_deg": "32.2701", + "longitude_deg": "-115.1075", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no" + }, + { + "id": "338154", + "ident": "MX-1438", + "type": "heliport", + "name": "Puerto Peñasco Naval Heliport", + "latitude_deg": "31.306", + "longitude_deg": "-113.54736", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Puerto Peñasco", + "scheduled_service": "no" + }, + { + "id": "338155", + "ident": "MX-1439", + "type": "closed", + "name": "Campo Julio Airstrip", + "latitude_deg": "29.9881", + "longitude_deg": "-112.7262", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Pitiquito", + "scheduled_service": "no" + }, + { + "id": "338156", + "ident": "MX-1440", + "type": "small_airport", + "name": "Desemboque de los Seris Airstrip", + "latitude_deg": "29.50602", + "longitude_deg": "-112.40643", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Pitiquito", + "scheduled_service": "no" + }, + { + "id": "338157", + "ident": "MX-1441", + "type": "small_airport", + "name": "Pozo Coyote Airstrip", + "latitude_deg": "29.62323", + "longitude_deg": "-112.36126", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Pitiquito", + "scheduled_service": "no" + }, + { + "id": "338158", + "ident": "MX-1442", + "type": "closed", + "name": "Arivaipa Airstrip", + "latitude_deg": "29.60506", + "longitude_deg": "-112.22172", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Pitiquito", + "scheduled_service": "no" + }, + { + "id": "338159", + "ident": "MX-1443", + "type": "closed", + "name": "Los Lobos Airstrip", + "latitude_deg": "29.5678", + "longitude_deg": "-112.16731", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Pitiquito", + "scheduled_service": "no" + }, + { + "id": "338160", + "ident": "MX-1444", + "type": "closed", + "name": "Punta Chueca Airstrip", + "latitude_deg": "29.01814", + "longitude_deg": "-112.1632", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Hermosillo", + "scheduled_service": "no" + }, + { + "id": "338161", + "ident": "MX-1445", + "type": "small_airport", + "name": "Tiburón Aerodrome", + "latitude_deg": "29.01713", + "longitude_deg": "-112.20032", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Hermosillo", + "scheduled_service": "no" + }, + { + "id": "338162", + "ident": "MX-1446", + "type": "closed", + "name": "Kino Nuevo Airstrip", + "latitude_deg": "28.86338", + "longitude_deg": "-112.02773", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Hermosillo", + "scheduled_service": "no" + }, + { + "id": "338163", + "ident": "MX-1447", + "type": "closed", + "name": "Puesta del Sol Airstrip", + "latitude_deg": "27.978", + "longitude_deg": "-111.1045", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Guaymas", + "scheduled_service": "no" + }, + { + "id": "338164", + "ident": "MX-1448", + "type": "closed", + "name": "Venecia Airstrip", + "latitude_deg": "27.9444", + "longitude_deg": "-110.8107", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Empalme", + "scheduled_service": "no" + }, + { + "id": "338165", + "ident": "MX-1449", + "type": "closed", + "name": "Campo Veintisiete Airstrip", + "latitude_deg": "27.48119", + "longitude_deg": "-110.04047", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cajeme", + "scheduled_service": "no" + }, + { + "id": "338166", + "ident": "MX-1450", + "type": "closed", + "name": "Las Bocas Airstrip", + "latitude_deg": "26.5857", + "longitude_deg": "-109.3253", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Huatabampo", + "scheduled_service": "no" + }, + { + "id": "338167", + "ident": "MX-1451", + "type": "small_airport", + "name": "Camahuiroa North Airstrip", + "latitude_deg": "26.5512", + "longitude_deg": "-109.2921", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Huatabampo", + "scheduled_service": "no" + }, + { + "id": "338168", + "ident": "MX-1452", + "type": "closed", + "name": "Camahuiroa Airstrip", + "latitude_deg": "26.54216", + "longitude_deg": "-109.28658", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Huatabampo", + "scheduled_service": "no" + }, + { + "id": "338169", + "ident": "MX-1453", + "type": "small_airport", + "name": "Camahuiroa South Airstrip", + "latitude_deg": "26.52846", + "longitude_deg": "-109.27402", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Huatabampo", + "scheduled_service": "no" + }, + { + "id": "338197", + "ident": "MX-1454", + "type": "small_airport", + "name": "Surutato Airstrip", + "latitude_deg": "25.79738", + "longitude_deg": "-107.554479", + "elevation_ft": "4692", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "SUR" + }, + { + "id": "338198", + "ident": "MX-1455", + "type": "small_airport", + "name": "Santa Rita Airstrip", + "latitude_deg": "25.925705", + "longitude_deg": "-107.497509", + "elevation_ft": "2887", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "STK" + }, + { + "id": "338211", + "ident": "MX-1456", + "type": "small_airport", + "name": "Rancho Valle de Colombia Airstrip", + "latitude_deg": "28.366944", + "longitude_deg": "-102.302222", + "elevation_ft": "4245", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Melchor Muzquiz", + "scheduled_service": "no", + "local_code": "VLC" + }, + { + "id": "338212", + "ident": "MX-1457", + "type": "small_airport", + "name": "Los Gonzalez de Gorongoros Airport", + "latitude_deg": "19.212384", + "longitude_deg": "-102.840681", + "elevation_ft": "1312", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Tepalcatepec", + "scheduled_service": "no", + "local_code": "LGT" + }, + { + "id": "338213", + "ident": "MX-1458", + "type": "heliport", + "name": "Punta Estrella Heliport", + "latitude_deg": "19.53962", + "longitude_deg": "-87.424092", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Felipe Carrillo Puerto", + "scheduled_service": "no", + "local_code": "HAJ" + }, + { + "id": "338214", + "ident": "MX-1459", + "type": "closed", + "name": "Tapias Airport", + "latitude_deg": "24.750222", + "longitude_deg": "-100.032234", + "elevation_ft": "5440", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Galeana", + "scheduled_service": "no", + "local_code": "TPI" + }, + { + "id": "338215", + "ident": "MX-1460", + "type": "heliport", + "name": "Universidad de Las Americas Heliport", + "latitude_deg": "19.055242", + "longitude_deg": "-98.284668", + "elevation_ft": "6965", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "Cholula", + "scheduled_service": "no", + "local_code": "HAU" + }, + { + "id": "338220", + "ident": "MX-1461", + "type": "seaplane_base", + "name": "Trans Caribe Nichupte Seaplane Base", + "latitude_deg": "21.093889", + "longitude_deg": "-86.794444", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Cancún", + "scheduled_service": "no", + "local_code": "HTN" + }, + { + "id": "338221", + "ident": "MX-1462", + "type": "closed", + "name": "El Pichol Airstrip", + "latitude_deg": "26.514782", + "longitude_deg": "-108.069119", + "elevation_ft": "4498", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Choix", + "scheduled_service": "no", + "local_code": "PHL" + }, + { + "id": "338222", + "ident": "MX-1463", + "type": "small_airport", + "name": "Nuestra Señora de Loreto Airport", + "latitude_deg": "27.405623", + "longitude_deg": "-109.953618", + "elevation_ft": "112", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cajeme", + "scheduled_service": "no", + "local_code": "NSL" + }, + { + "id": "338223", + "ident": "MX-1464", + "type": "small_airport", + "name": "Rancho El Tule Airstrip", + "latitude_deg": "28.118224", + "longitude_deg": "-106.777561", + "elevation_ft": "6148", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Cusihuiriachi", + "scheduled_service": "no", + "local_code": "RTL" + }, + { + "id": "338491", + "ident": "MX-1465", + "type": "heliport", + "name": "Arrecife Alacranes (Isla Pérez) Helipad", + "latitude_deg": "22.38182", + "longitude_deg": "-89.68306", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-YUC", + "municipality": "Progreso", + "scheduled_service": "no" + }, + { + "id": "338536", + "ident": "MX-1466", + "type": "closed", + "name": "Las Conchas Airstrip", + "latitude_deg": "31.29658", + "longitude_deg": "-113.51475", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Puerto Peñasco", + "scheduled_service": "no" + }, + { + "id": "338542", + "ident": "MX-1467", + "type": "closed", + "name": "Rancherías Airstrip", + "latitude_deg": "27.68211", + "longitude_deg": "-99.94838", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Hidalgo", + "scheduled_service": "no" + }, + { + "id": "338543", + "ident": "MX-1468", + "type": "closed", + "name": "Comitas Airstrip", + "latitude_deg": "27.65015", + "longitude_deg": "-99.95504", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Anáhuac", + "scheduled_service": "no" + }, + { + "id": "338548", + "ident": "MX-1469", + "type": "closed", + "name": "Rancho el Poker Southwest Airport", + "latitude_deg": "32.02469", + "longitude_deg": "-115.00009", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no" + }, + { + "id": "338945", + "ident": "MX-1470", + "type": "closed", + "name": "Rancho Banori Airport", + "latitude_deg": "31.59549", + "longitude_deg": "-112.15794", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Caborca", + "scheduled_service": "no" + }, + { + "id": "338946", + "ident": "MX-1471", + "type": "closed", + "name": "Los Molinos Airstrip", + "latitude_deg": "31.14402", + "longitude_deg": "-111.74862", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Altar", + "scheduled_service": "no" + }, + { + "id": "338947", + "ident": "MX-1472", + "type": "small_airport", + "name": "La Cholla Gold Mine Airstrip", + "latitude_deg": "31.40079", + "longitude_deg": "-112.70235", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Sonoyta", + "scheduled_service": "no" + }, + { + "id": "338948", + "ident": "MX-1473", + "type": "closed", + "name": "Campo Santa Anita Airstrip", + "latitude_deg": "31.067903", + "longitude_deg": "-112.005953", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Altar", + "scheduled_service": "no" + }, + { + "id": "338949", + "ident": "MX-1474", + "type": "small_airport", + "name": "Juan García Cabral Airstrip", + "latitude_deg": "30.81833", + "longitude_deg": "-112.49668", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Caborca", + "scheduled_service": "no" + }, + { + "id": "338950", + "ident": "MX-1475", + "type": "small_airport", + "name": "El Pinito Airstrip", + "latitude_deg": "30.73226", + "longitude_deg": "-112.33228", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Caborca", + "scheduled_service": "no" + }, + { + "id": "338951", + "ident": "MX-1476", + "type": "small_airport", + "name": "Rafael Muñoz Espinoza Airstrip", + "latitude_deg": "30.72352", + "longitude_deg": "-112.20119", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Caborca", + "scheduled_service": "no" + }, + { + "id": "338952", + "ident": "MX-1477", + "type": "small_airport", + "name": "Rancho Divino Niño Airstrip", + "latitude_deg": "30.73278", + "longitude_deg": "-111.7833", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Altar", + "scheduled_service": "no" + }, + { + "id": "338953", + "ident": "MX-1478", + "type": "small_airport", + "name": "Sáric Airport", + "latitude_deg": "31.11287", + "longitude_deg": "-111.3829", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Sáric", + "scheduled_service": "no" + }, + { + "id": "338954", + "ident": "MX-1479", + "type": "small_airport", + "name": "Cuitaca Airstrip", + "latitude_deg": "30.99278", + "longitude_deg": "-110.48913", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Caborca", + "scheduled_service": "no" + }, + { + "id": "338955", + "ident": "MX-1480", + "type": "closed", + "name": "Rancho San Rafael Airstrip", + "latitude_deg": "30.91939", + "longitude_deg": "-110.62045", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Ímuris", + "scheduled_service": "no" + }, + { + "id": "338959", + "ident": "MX-1481", + "type": "closed", + "name": "Las Pedradas Airport", + "latitude_deg": "30.83626", + "longitude_deg": "-111.26349", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Tubutama", + "scheduled_service": "no" + }, + { + "id": "338960", + "ident": "MX-1482", + "type": "closed", + "name": "Santa Cecilia Airstrip", + "latitude_deg": "30.7478", + "longitude_deg": "-112.48774", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Caborca", + "scheduled_service": "no" + }, + { + "id": "339172", + "ident": "MX-1483", + "type": "closed", + "name": "Mexico City Texcoco Airport", + "latitude_deg": "19.5", + "longitude_deg": "-98.997222", + "elevation_ft": "7332", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Mexico City", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mexico_City_Texcoco_Airport", + "keywords": "NAICM" + }, + { + "id": "339220", + "ident": "MX-1484", + "type": "heliport", + "name": "JV Veracruz Helipad", + "latitude_deg": "19.134972", + "longitude_deg": "-96.10422", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Veracruz", + "scheduled_service": "no", + "local_code": "HJJ" + }, + { + "id": "339224", + "ident": "MX-1485", + "type": "heliport", + "name": "JV Jalapa Helipad", + "latitude_deg": "19.515028", + "longitude_deg": "-96.882259", + "elevation_ft": "4282", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Jalapa", + "scheduled_service": "no", + "local_code": "HJX" + }, + { + "id": "339235", + "ident": "MX-1486", + "type": "heliport", + "name": "Semi 1 Platform Helipad", + "latitude_deg": "19.483611", + "longitude_deg": "-91.954722", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Ciudad del Carmen", + "scheduled_service": "no", + "local_code": "HUI" + }, + { + "id": "339237", + "ident": "MX-1487", + "type": "small_airport", + "name": "Agrícola La Fortuna Airport", + "latitude_deg": "24.737604", + "longitude_deg": "-107.72732", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Navolato", + "scheduled_service": "no", + "local_code": "ALF" + }, + { + "id": "339241", + "ident": "MX-1488", + "type": "small_airport", + "name": "Chinipas Airport", + "latitude_deg": "27.402976", + "longitude_deg": "-108.53856", + "elevation_ft": "1411", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Chinipas", + "scheduled_service": "no", + "local_code": "CHS" + }, + { + "id": "339246", + "ident": "MX-1489", + "type": "heliport", + "name": "Los Encinos Heliport", + "latitude_deg": "19.283869", + "longitude_deg": "-99.472988", + "elevation_ft": "8727", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Ocoyoacac", + "scheduled_service": "no", + "local_code": "HEO" + }, + { + "id": "339247", + "ident": "MX-1490", + "type": "small_airport", + "name": "Chapotito Airport", + "latitude_deg": "24.339482", + "longitude_deg": "-97.915081", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "CSM" + }, + { + "id": "339248", + "ident": "MX-1491", + "type": "heliport", + "name": "Plaza Insurgentes Sur Helipads", + "latitude_deg": "19.350951", + "longitude_deg": "-99.186571", + "elevation_ft": "7782", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Alvaro Obregon", + "scheduled_service": "no", + "local_code": "HPK" + }, + { + "id": "339249", + "ident": "MX-1492", + "type": "small_airport", + "name": "Parras El Alto Airstrip", + "latitude_deg": "25.375556", + "longitude_deg": "-101.898333", + "elevation_ft": "5571", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Parras de La Fuente", + "scheduled_service": "no", + "local_code": "PEA" + }, + { + "id": "339250", + "ident": "MX-1493", + "type": "small_airport", + "name": "San Miguel de Cruces Airstrip", + "latitude_deg": "24.415892", + "longitude_deg": "-105.843058", + "elevation_ft": "8530", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "San Dimas", + "scheduled_service": "no", + "local_code": "SCX" + }, + { + "id": "339255", + "ident": "MX-1494", + "type": "small_airport", + "name": "Patria Vieja Airstrip", + "latitude_deg": "18.246111", + "longitude_deg": "-96.582222", + "elevation_ft": "248", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "San Jose Independencia", + "scheduled_service": "no", + "local_code": "PTV" + }, + { + "id": "339265", + "ident": "MX-1495", + "type": "small_airport", + "name": "Los Sapos Airstrip", + "latitude_deg": "30.790852", + "longitude_deg": "-112.430359", + "elevation_ft": "699", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Caborca", + "scheduled_service": "no", + "local_code": "APU" + }, + { + "id": "339277", + "ident": "MX-1496", + "type": "closed", + "name": "San Jose de las Piedras Airport", + "latitude_deg": "28.79319", + "longitude_deg": "-102.70617", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ocampo", + "scheduled_service": "no" + }, + { + "id": "339278", + "ident": "MX-1497", + "type": "heliport", + "name": "Ficonsa Helipad", + "latitude_deg": "19.438099", + "longitude_deg": "-99.204161", + "elevation_ft": "7582", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HEV" + }, + { + "id": "339286", + "ident": "MX-1498", + "type": "closed", + "name": "La Campana de San Quintin Airport", + "latitude_deg": "30.570982", + "longitude_deg": "-115.951145", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "local_code": "LQN" + }, + { + "id": "339296", + "ident": "MX-1499", + "type": "small_airport", + "name": "El Encino Airstrip", + "latitude_deg": "26.597401", + "longitude_deg": "-108.086189", + "elevation_ft": "1893", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Choix", + "scheduled_service": "no", + "local_code": "EEC" + }, + { + "id": "339305", + "ident": "MX-1500", + "type": "closed", + "name": "Huexca Airstrip", + "latitude_deg": "18.803065", + "longitude_deg": "-98.881856", + "elevation_ft": "4593", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MOR", + "municipality": "Yecapixtla", + "scheduled_service": "no", + "local_code": "HUC" + }, + { + "id": "339501", + "ident": "MX-1501", + "type": "small_airport", + "name": "Rancho San José Airstrip", + "latitude_deg": "29.64661", + "longitude_deg": "-102.33542", + "elevation_ft": "2447", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "339824", + "ident": "MX-1502", + "type": "small_airport", + "name": "Saucito de los Dominguez Airstrip", + "latitude_deg": "26.19647", + "longitude_deg": "-107.34245", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no" + }, + { + "id": "339826", + "ident": "MX-1503", + "type": "small_airport", + "name": "Saucito de Araujo Airstrip", + "latitude_deg": "25.949912", + "longitude_deg": "-107.245724", + "elevation_ft": "4058", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "SGC" + }, + { + "id": "339827", + "ident": "MX-1504", + "type": "small_airport", + "name": "Bonanza Airport", + "latitude_deg": "32.446841", + "longitude_deg": "-115.187058", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "BNZ" + }, + { + "id": "339828", + "ident": "MX-1505", + "type": "small_airport", + "name": "La Paloma Airport", + "latitude_deg": "25.476675", + "longitude_deg": "-108.215203", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "LPF" + }, + { + "id": "339829", + "ident": "MX-1506", + "type": "small_airport", + "name": "Mesa de San Rafael Airstrip", + "latitude_deg": "25.795525", + "longitude_deg": "-106.661164", + "elevation_ft": "8396", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "EJL" + }, + { + "id": "339832", + "ident": "MX-1507", + "type": "small_airport", + "name": "El Rodeo Airstrip", + "latitude_deg": "24.602016", + "longitude_deg": "-106.242299", + "elevation_ft": "2161", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "ERD" + }, + { + "id": "339834", + "ident": "MX-1508", + "type": "small_airport", + "name": "San Juan Nepomuceno Airstrip", + "latitude_deg": "26.34573", + "longitude_deg": "-107.44005", + "elevation_ft": "1247", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "SJU" + }, + { + "id": "339835", + "ident": "MX-1509", + "type": "small_airport", + "name": "Calabacitas Airstrip", + "latitude_deg": "26.31899", + "longitude_deg": "-107.45617", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no" + }, + { + "id": "339836", + "ident": "MX-1510", + "type": "small_airport", + "name": "Santa María Magdalena de Taxicaringa Airstrip", + "latitude_deg": "23.22503", + "longitude_deg": "-104.77294", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Mezquital", + "scheduled_service": "no" + }, + { + "id": "339837", + "ident": "MX-1511", + "type": "small_airport", + "name": "Llano Grande de Milpillas Chico Airstrip", + "latitude_deg": "23.40651", + "longitude_deg": "-105.05577", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Pueblo Nuevo", + "scheduled_service": "no" + }, + { + "id": "339838", + "ident": "MX-1512", + "type": "small_airport", + "name": "Arroyo de Lajas Airstrip", + "latitude_deg": "25.95273", + "longitude_deg": "-106.29888", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Guanaceví", + "scheduled_service": "no" + }, + { + "id": "339839", + "ident": "MX-1513", + "type": "small_airport", + "name": "La Joya Airstrip", + "latitude_deg": "26.26629", + "longitude_deg": "-106.73617", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no" + }, + { + "id": "339840", + "ident": "MX-1514", + "type": "small_airport", + "name": "Pesachi Airstrip", + "latitude_deg": "27.0818", + "longitude_deg": "-107.18143", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guachochi", + "scheduled_service": "no" + }, + { + "id": "339841", + "ident": "MX-1515", + "type": "closed", + "name": "Siquirichi Airstrip", + "latitude_deg": "27.2657", + "longitude_deg": "-107.21013", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guachochi", + "scheduled_service": "no" + }, + { + "id": "339842", + "ident": "MX-1516", + "type": "small_airport", + "name": "Urique Airport", + "latitude_deg": "27.21157", + "longitude_deg": "-107.91725", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Urique", + "scheduled_service": "no" + }, + { + "id": "339843", + "ident": "MX-1517", + "type": "closed", + "name": "Tubares Airstrip", + "latitude_deg": "26.94259", + "longitude_deg": "-108.00339", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Urique", + "scheduled_service": "no" + }, + { + "id": "339844", + "ident": "MX-1518", + "type": "small_airport", + "name": "San Ignacio Airport", + "latitude_deg": "26.84708", + "longitude_deg": "-107.84547", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Batopilas", + "scheduled_service": "no" + }, + { + "id": "339845", + "ident": "MX-1519", + "type": "small_airport", + "name": "San José de Gracia Airstrip", + "latitude_deg": "26.15222", + "longitude_deg": "-107.89612", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Sinaloa", + "scheduled_service": "no" + }, + { + "id": "339846", + "ident": "MX-1520", + "type": "small_airport", + "name": "Bacayopa Airstrip", + "latitude_deg": "26.452554", + "longitude_deg": "-108.102969", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Choix", + "scheduled_service": "no", + "local_code": "BCY" + }, + { + "id": "339847", + "ident": "MX-1521", + "type": "small_airport", + "name": "Tetaroba Airstrip", + "latitude_deg": "26.38764", + "longitude_deg": "-108.4895", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "El Fuerte", + "scheduled_service": "no" + }, + { + "id": "339848", + "ident": "MX-1522", + "type": "closed", + "name": "Chinobampo Airport", + "latitude_deg": "26.38706", + "longitude_deg": "-108.36095", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Chinobampo", + "scheduled_service": "no" + }, + { + "id": "339849", + "ident": "MX-1523", + "type": "small_airport", + "name": "Rancho Mesa Los Leales Airstrip", + "latitude_deg": "26.38172", + "longitude_deg": "-107.77695", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Morelos", + "scheduled_service": "no" + }, + { + "id": "339850", + "ident": "MX-1524", + "type": "small_airport", + "name": "Rincón de Huajupa Airstrip", + "latitude_deg": "24.83127", + "longitude_deg": "-106.51836", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Santiago Papasquiaro", + "scheduled_service": "no" + }, + { + "id": "339852", + "ident": "MX-1525", + "type": "small_airport", + "name": "La Vega del Oso Airstrip", + "latitude_deg": "25.344567", + "longitude_deg": "-106.731603", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Topía", + "scheduled_service": "no" + }, + { + "id": "339853", + "ident": "MX-1526", + "type": "small_airport", + "name": "Rancho Santo Niño Airstrip", + "latitude_deg": "29.39955", + "longitude_deg": "-110.3841", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Ures", + "scheduled_service": "no" + }, + { + "id": "339854", + "ident": "MX-1527", + "type": "small_airport", + "name": "El Javian Airstrip", + "latitude_deg": "29.39994", + "longitude_deg": "-110.42039", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Ures", + "scheduled_service": "no" + }, + { + "id": "339855", + "ident": "MX-1528", + "type": "closed", + "name": "El Socorro Airstrip", + "latitude_deg": "29.0334", + "longitude_deg": "-110.343", + "elevation_ft": "1522", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Mazatán", + "scheduled_service": "no" + }, + { + "id": "339857", + "ident": "MX-1529", + "type": "small_airport", + "name": "Valle del Rosario Airport", + "latitude_deg": "27.32167", + "longitude_deg": "-106.29144", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Valle del Rosario", + "scheduled_service": "no" + }, + { + "id": "339877", + "ident": "MX-1530", + "type": "closed", + "name": "Lajitas Airstrip", + "latitude_deg": "29.25117", + "longitude_deg": "-103.7997", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Manuel Benavides", + "scheduled_service": "no" + }, + { + "id": "339881", + "ident": "MX-1531", + "type": "closed", + "name": "San Eduardo Airstrip", + "latitude_deg": "29.72131", + "longitude_deg": "-105.24423", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Coyame del Sotol", + "scheduled_service": "no" + }, + { + "id": "339882", + "ident": "MX-1532", + "type": "closed", + "name": "Cuchillo Parado Airport", + "latitude_deg": "29.43979", + "longitude_deg": "-104.86992", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Coyame del Sotol", + "scheduled_service": "no" + }, + { + "id": "339883", + "ident": "MX-1533", + "type": "closed", + "name": "El Refugio Airstrip", + "latitude_deg": "29.43479", + "longitude_deg": "-104.85808", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Coyame del Sotol", + "scheduled_service": "no" + }, + { + "id": "339884", + "ident": "MX-1534", + "type": "small_airport", + "name": "Santiago de Coyame Airport", + "latitude_deg": "29.44905", + "longitude_deg": "-105.09458", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Coyame del Sotol", + "scheduled_service": "no" + }, + { + "id": "339885", + "ident": "MX-1535", + "type": "closed", + "name": "San Pedro Airstrip", + "latitude_deg": "29.32945", + "longitude_deg": "-104.91749", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Coyame del Sotol", + "scheduled_service": "no" + }, + { + "id": "339886", + "ident": "MX-1536", + "type": "closed", + "name": "La Cantera Airstrip", + "latitude_deg": "29.25816", + "longitude_deg": "-104.99779", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Coyame del Sotol", + "scheduled_service": "no" + }, + { + "id": "339887", + "ident": "MX-1537", + "type": "closed", + "name": "Francisco I Portillo (Las Vigas) Airstrip", + "latitude_deg": "29.25928", + "longitude_deg": "-104.99086", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Coyame del Sotol", + "scheduled_service": "no" + }, + { + "id": "339896", + "ident": "MX-1538", + "type": "small_airport", + "name": "San Juan de Guadalupe Airport", + "latitude_deg": "24.63395", + "longitude_deg": "-102.76709", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "San Juan de Guadalupe", + "scheduled_service": "no" + }, + { + "id": "339897", + "ident": "MX-1539", + "type": "small_airport", + "name": "General Felipe Angeles Airport", + "latitude_deg": "24.62042", + "longitude_deg": "-101.95781", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ZAC", + "municipality": "Mazapil", + "scheduled_service": "no" + }, + { + "id": "339898", + "ident": "MX-1540", + "type": "small_airport", + "name": "San Marcos del Tapado Airport", + "latitude_deg": "24.6117", + "longitude_deg": "-101.3628", + "elevation_ft": "6096", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ZAC", + "municipality": "Concepción del Oro", + "scheduled_service": "no" + }, + { + "id": "339899", + "ident": "MX-1541", + "type": "heliport", + "name": "Peñasquito Heliport", + "latitude_deg": "24.656563", + "longitude_deg": "-101.71605", + "elevation_ft": "6152", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ZAC", + "municipality": "Mazapil", + "scheduled_service": "no", + "local_code": "HPS" + }, + { + "id": "339900", + "ident": "MX-1542", + "type": "closed", + "name": "Norotal Airstrip", + "latitude_deg": "25.144313", + "longitude_deg": "-107.022672", + "elevation_ft": "2297", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "NRT" + }, + { + "id": "339901", + "ident": "MX-1543", + "type": "small_airport", + "name": "Rincon de Los Garza Airstrip", + "latitude_deg": "28.794008", + "longitude_deg": "-102.126675", + "elevation_ft": "4649", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Melchor Muzquiz", + "scheduled_service": "no", + "local_code": "RGZ" + }, + { + "id": "339902", + "ident": "MX-1544", + "type": "closed", + "name": "La Trinidad Airport", + "latitude_deg": "25.736398", + "longitude_deg": "-108.516448", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "LTB" + }, + { + "id": "339903", + "ident": "MX-1545", + "type": "closed", + "name": "Aereo Servicio Nuñez Airport", + "latitude_deg": "32.60775", + "longitude_deg": "-115.275917", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "ANZ", + "keywords": "ANZ" + }, + { + "id": "339906", + "ident": "MX-1546", + "type": "closed", + "name": "Villa de Cos Airstrip", + "latitude_deg": "23.29047", + "longitude_deg": "-102.32968", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ZAC", + "municipality": "Villa de Cos", + "scheduled_service": "no" + }, + { + "id": "339907", + "ident": "MX-1547", + "type": "closed", + "name": "Zancarrón Airstrip", + "latitude_deg": "23.400151", + "longitude_deg": "-102.20894", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "Santo Domingo", + "scheduled_service": "no" + }, + { + "id": "339908", + "ident": "MX-1548", + "type": "small_airport", + "name": "Santa Rosa Airstrip", + "latitude_deg": "25.74222", + "longitude_deg": "-102.00054", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Parras de la Fuente", + "scheduled_service": "no" + }, + { + "id": "339909", + "ident": "MX-1549", + "type": "small_airport", + "name": "Santa Anita Airstrip", + "latitude_deg": "25.7634", + "longitude_deg": "-102.9523", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "San Pedro", + "scheduled_service": "no" + }, + { + "id": "339910", + "ident": "MX-1550", + "type": "small_airport", + "name": "Cuarto Lote Flores Airstrip", + "latitude_deg": "25.78133", + "longitude_deg": "-102.96378", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "San Pedro", + "scheduled_service": "no" + }, + { + "id": "339911", + "ident": "MX-1551", + "type": "closed", + "name": "Benito Borrego Castillo Airstrip", + "latitude_deg": "25.748718", + "longitude_deg": "-103.03928", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "San Pedro", + "scheduled_service": "no" + }, + { + "id": "339912", + "ident": "MX-1552", + "type": "small_airport", + "name": "El Alicante Airstrip", + "latitude_deg": "27.95001", + "longitude_deg": "-103.56827", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ocampo", + "scheduled_service": "no" + }, + { + "id": "339913", + "ident": "MX-1553", + "type": "closed", + "name": "El Jobero Airstrip", + "latitude_deg": "28.66918", + "longitude_deg": "-103.77179", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Manuel Benavides", + "scheduled_service": "no" + }, + { + "id": "339914", + "ident": "MX-1554", + "type": "closed", + "name": "La Rosita Airstrip", + "latitude_deg": "28.429207", + "longitude_deg": "-103.297493", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ocampo", + "scheduled_service": "no" + }, + { + "id": "339915", + "ident": "MX-1555", + "type": "small_airport", + "name": "Santa Fe del Pino Airstrip", + "latitude_deg": "28.65986", + "longitude_deg": "-103.19836", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ocampo", + "scheduled_service": "no" + }, + { + "id": "339916", + "ident": "MX-1556", + "type": "small_airport", + "name": "San Miguel Airstrip", + "latitude_deg": "28.65219", + "longitude_deg": "-102.95493", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ocampo", + "scheduled_service": "no" + }, + { + "id": "339917", + "ident": "MX-1557", + "type": "small_airport", + "name": "Loma El Billar Airstrip", + "latitude_deg": "28.71003", + "longitude_deg": "-103.04426", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ocampo", + "scheduled_service": "no" + }, + { + "id": "339918", + "ident": "MX-1558", + "type": "small_airport", + "name": "Piedritas Airport", + "latitude_deg": "28.77473", + "longitude_deg": "-103.07528", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ocampo", + "scheduled_service": "no" + }, + { + "id": "339919", + "ident": "MX-1559", + "type": "closed", + "name": "Rancho Santa Cruz Airstrip", + "latitude_deg": "26.82844", + "longitude_deg": "-101.10174", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Monclova", + "scheduled_service": "no" + }, + { + "id": "339936", + "ident": "MX-1560", + "type": "small_airport", + "name": "El Muchacho Airport", + "latitude_deg": "29.828452", + "longitude_deg": "-106.907691", + "elevation_ft": "5167", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "San Buenaventura", + "scheduled_service": "no", + "local_code": "ELM" + }, + { + "id": "339939", + "ident": "MX-1561", + "type": "closed", + "name": "El Centenario Airstrip", + "latitude_deg": "21.26786", + "longitude_deg": "-98.32724", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Platon Sanchez", + "scheduled_service": "no", + "local_code": "BJO" + }, + { + "id": "339945", + "ident": "MX-1562", + "type": "small_airport", + "name": "Isla del Toro Airstrip", + "latitude_deg": "21.563367", + "longitude_deg": "-97.513887", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Tamiahua", + "scheduled_service": "no", + "local_code": "IDT" + }, + { + "id": "339951", + "ident": "MX-1563", + "type": "heliport", + "name": "Mision del Sol Heliport", + "latitude_deg": "18.887792", + "longitude_deg": "-99.193056", + "elevation_ft": "4511", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MOR", + "municipality": "Jiutepec", + "scheduled_service": "no", + "local_code": "HOS" + }, + { + "id": "339952", + "ident": "MX-1564", + "type": "small_airport", + "name": "Jova Agrícola Airport", + "latitude_deg": "24.907009", + "longitude_deg": "-107.513838", + "elevation_ft": "194", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "El Limón de los Ramos", + "scheduled_service": "no", + "local_code": "AJC" + }, + { + "id": "339953", + "ident": "MX-1565", + "type": "closed", + "name": "Oro Verde Airport", + "latitude_deg": "20.189401", + "longitude_deg": "-97.769072", + "elevation_ft": "2020", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-PUE", + "municipality": "Jopala", + "scheduled_service": "no", + "local_code": "ORV" + }, + { + "id": "339956", + "ident": "MX-1566", + "type": "heliport", + "name": "Mocel Helipad", + "latitude_deg": "19.410618", + "longitude_deg": "-99.184903", + "elevation_ft": "7589", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HML" + }, + { + "id": "339957", + "ident": "MX-1567", + "type": "closed", + "name": "Rancho Buenos Aires Airport", + "latitude_deg": "24.639879", + "longitude_deg": "-99.24993", + "elevation_ft": "1083", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Villagrán", + "scheduled_service": "no", + "local_code": "RBU" + }, + { + "id": "340019", + "ident": "MX-1568", + "type": "small_airport", + "name": "Huizopa de Dolores Airport", + "latitude_deg": "28.948955", + "longitude_deg": "-108.546038", + "elevation_ft": "6125", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Madera", + "scheduled_service": "no", + "local_code": "SPA" + }, + { + "id": "340020", + "ident": "MX-1569", + "type": "small_airport", + "name": "Ejido Gonzalez Airport", + "latitude_deg": "22.8036", + "longitude_deg": "-98.412266", + "elevation_ft": "312", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Gonzalez", + "scheduled_service": "no", + "local_code": "AEG" + }, + { + "id": "340021", + "ident": "MX-1570", + "type": "small_airport", + "name": "El Limonal Airport", + "latitude_deg": "22.651987", + "longitude_deg": "-98.564615", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Llera de Gonzalez", + "scheduled_service": "no", + "local_code": "ELY" + }, + { + "id": "340948", + "ident": "MX-1571", + "type": "closed", + "name": "Mandujano Airstrip", + "latitude_deg": "32.27492", + "longitude_deg": "-115.17862", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no" + }, + { + "id": "341168", + "ident": "MX-1572", + "type": "closed", + "name": "Old Nuevo Laredo Airport", + "latitude_deg": "27.44451", + "longitude_deg": "-99.51946", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Nuevo Laredo", + "scheduled_service": "no" + }, + { + "id": "341381", + "ident": "MX-1573", + "type": "closed", + "name": "Hermenegildo Galeana Airport", + "latitude_deg": "30.11611", + "longitude_deg": "-107.60895", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Hermenegildo Galeana", + "scheduled_service": "no" + }, + { + "id": "341382", + "ident": "MX-1574", + "type": "small_airport", + "name": "La Mesa Tres Ríos Airport", + "latitude_deg": "29.84318", + "longitude_deg": "-108.71673", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Nácori Chico", + "scheduled_service": "no" + }, + { + "id": "341383", + "ident": "MX-1575", + "type": "closed", + "name": "Comunidad San Miguel Airport", + "latitude_deg": "30.12388", + "longitude_deg": "-111.10211", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Benjamín Hill", + "scheduled_service": "no" + }, + { + "id": "341384", + "ident": "MX-1576", + "type": "small_airport", + "name": "La Julia Airport", + "latitude_deg": "30.17889", + "longitude_deg": "-111.06958", + "elevation_ft": "2616", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Benjamín Hill", + "scheduled_service": "no" + }, + { + "id": "341388", + "ident": "MX-1577", + "type": "small_airport", + "name": "Estación Llano Airport", + "latitude_deg": "30.36774", + "longitude_deg": "-111.09463", + "elevation_ft": "2327", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Santa Ana", + "scheduled_service": "no" + }, + { + "id": "341401", + "ident": "MX-1578", + "type": "small_airport", + "name": "El Orégano Airport", + "latitude_deg": "29.78324", + "longitude_deg": "-111.9382", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Pitiquito", + "scheduled_service": "no" + }, + { + "id": "341408", + "ident": "MX-1579", + "type": "closed", + "name": "Los Chinos Airport", + "latitude_deg": "29.44662", + "longitude_deg": "-109.12076", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Aros", + "scheduled_service": "no" + }, + { + "id": "341409", + "ident": "MX-1580", + "type": "small_airport", + "name": "Cerro La Guata Airport", + "latitude_deg": "29.55381", + "longitude_deg": "-108.91787", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Nácori Chico", + "scheduled_service": "no" + }, + { + "id": "341410", + "ident": "MX-1581", + "type": "closed", + "name": "Canadá del Palmar Airport", + "latitude_deg": "29.37527", + "longitude_deg": "-108.948", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Sahuaripa", + "scheduled_service": "no" + }, + { + "id": "341427", + "ident": "MX-1582", + "type": "closed", + "name": "El Norte Airport", + "latitude_deg": "29.64272", + "longitude_deg": "-108.39028", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Madera", + "scheduled_service": "no" + }, + { + "id": "341428", + "ident": "MX-1583", + "type": "closed", + "name": "Palos Blancos Airport", + "latitude_deg": "30.33792", + "longitude_deg": "-106.2016", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Villa Ahumada", + "scheduled_service": "no" + }, + { + "id": "341448", + "ident": "MX-1584", + "type": "small_airport", + "name": "Carrales Armendáriz Airport", + "latitude_deg": "29.48773", + "longitude_deg": "-104.40213", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ojinaga", + "scheduled_service": "no" + }, + { + "id": "341449", + "ident": "MX-1585", + "type": "closed", + "name": "Los Fresnos Airport", + "latitude_deg": "30.352435", + "longitude_deg": "-104.828007", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ojinaga", + "scheduled_service": "no" + }, + { + "id": "341450", + "ident": "MX-1586", + "type": "closed", + "name": "Los Pilares Airport", + "latitude_deg": "30.41446", + "longitude_deg": "-104.86985", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ojinaga", + "scheduled_service": "no" + }, + { + "id": "341452", + "ident": "MX-1587", + "type": "closed", + "name": "Manuel Ojinaga Airport", + "latitude_deg": "29.52898", + "longitude_deg": "-104.44738", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ojinaga", + "scheduled_service": "no" + }, + { + "id": "341697", + "ident": "MX-1588", + "type": "heliport", + "name": "Icacos Naval Base Heliport 1", + "latitude_deg": "16.838675", + "longitude_deg": "-99.84899", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Acapulco", + "scheduled_service": "no" + }, + { + "id": "341698", + "ident": "MX-1589", + "type": "heliport", + "name": "Icacos Naval Base Heliport 2", + "latitude_deg": "16.836551", + "longitude_deg": "-99.850588", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Acapulco", + "scheduled_service": "no" + }, + { + "id": "341699", + "ident": "MX-1590", + "type": "heliport", + "name": "Icacos Naval Base Heliport 3", + "latitude_deg": "16.83606", + "longitude_deg": "-99.850822", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Acapulco", + "scheduled_service": "no" + }, + { + "id": "341700", + "ident": "MX-1591", + "type": "heliport", + "name": "Icacos Naval Base Heliport 4", + "latitude_deg": "16.836356", + "longitude_deg": "-99.849009", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Acapulco", + "scheduled_service": "no" + }, + { + "id": "341701", + "ident": "MX-1592", + "type": "heliport", + "name": "Guitarron Helipad", + "latitude_deg": "16.834877", + "longitude_deg": "-99.859355", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GRO", + "municipality": "Acapulco", + "scheduled_service": "no" + }, + { + "id": "341781", + "ident": "MX-1593", + "type": "heliport", + "name": "AVE Arandas Helipad", + "latitude_deg": "20.713522", + "longitude_deg": "-102.369624", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Fraccionamiento Rinconada de los Vázquez", + "scheduled_service": "no" + }, + { + "id": "341782", + "ident": "MX-1594", + "type": "heliport", + "name": "Cruz Verde Heliport", + "latitude_deg": "20.72869", + "longitude_deg": "-103.383587", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Zapopan", + "scheduled_service": "no" + }, + { + "id": "341783", + "ident": "MX-1595", + "type": "heliport", + "name": "SUEG Pénjamo", + "latitude_deg": "20.417407", + "longitude_deg": "-101.728618", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "Pénjamo", + "scheduled_service": "no" + }, + { + "id": "341784", + "ident": "MX-1596", + "type": "heliport", + "name": "Aztec Foundation Helipad", + "latitude_deg": "19.428802", + "longitude_deg": "-99.205962", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no" + }, + { + "id": "341785", + "ident": "MX-1597", + "type": "heliport", + "name": "Esmeralda Tower III Heliport", + "latitude_deg": "19.4288", + "longitude_deg": "-99.204963", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no" + }, + { + "id": "341786", + "ident": "MX-1598", + "type": "heliport", + "name": "Miguel Hidalgo Centenary Hospital Helipad", + "latitude_deg": "21.895859", + "longitude_deg": "-102.282751", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-AGU", + "municipality": "Aguascalientes", + "scheduled_service": "no" + }, + { + "id": "341787", + "ident": "MX-1599", + "type": "heliport", + "name": "IMSS Aguascalientes Zone 2 General Hospital Helipad", + "latitude_deg": "21.87649", + "longitude_deg": "-102.254646", + "elevation_ft": "6309", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-AGU", + "municipality": "Aguascalientes", + "scheduled_service": "no" + }, + { + "id": "341788", + "ident": "MX-1600", + "type": "heliport", + "name": "Federal Police Helipad", + "latitude_deg": "21.875568", + "longitude_deg": "-102.252276", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-AGU", + "municipality": "Aguascalientes", + "scheduled_service": "no" + }, + { + "id": "341789", + "ident": "MX-1601", + "type": "heliport", + "name": "Aguascalientes Fire Department Helipad", + "latitude_deg": "21.875291", + "longitude_deg": "-102.254925", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-AGU", + "municipality": "Aguascalientes", + "scheduled_service": "no" + }, + { + "id": "341790", + "ident": "MX-1602", + "type": "heliport", + "name": "Aguascalientes Municipal Police Helipad", + "latitude_deg": "21.875233", + "longitude_deg": "-102.252777", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-AGU", + "municipality": "Aguascalientes", + "scheduled_service": "no" + }, + { + "id": "341791", + "ident": "MX-1603", + "type": "heliport", + "name": "Military Zone XIV Helipad 1", + "latitude_deg": "21.900691", + "longitude_deg": "-102.266086", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-AGU", + "municipality": "Aguascalientes", + "scheduled_service": "no" + }, + { + "id": "341792", + "ident": "MX-1604", + "type": "heliport", + "name": "Military Zone XIV Helipad 2", + "latitude_deg": "21.901639", + "longitude_deg": "-102.267309", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-AGU", + "municipality": "Aguascalientes", + "scheduled_service": "no" + }, + { + "id": "341795", + "ident": "MX-1605", + "type": "small_airport", + "name": "Aerofumigaciones Díaz Airstrip", + "latitude_deg": "25.823929", + "longitude_deg": "-108.644029", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Sinaloa de Leyva", + "scheduled_service": "no" + }, + { + "id": "341796", + "ident": "MX-1606", + "type": "small_airport", + "name": "Aerofumigaciones Murillo Airstrip", + "latitude_deg": "24.663995", + "longitude_deg": "-107.539395", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Licenciado Benito Juárez", + "scheduled_service": "no" + }, + { + "id": "341797", + "ident": "MX-1607", + "type": "small_airport", + "name": "Aerofumigaciones Narvaez Airport", + "latitude_deg": "18.793468", + "longitude_deg": "-103.737391", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COL", + "municipality": "Tecomán", + "scheduled_service": "no" + }, + { + "id": "342344", + "ident": "MX-1608", + "type": "small_airport", + "name": "Salitral de Carrera Airport", + "latitude_deg": "22.88181", + "longitude_deg": "-102.07306", + "elevation_ft": "6654", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "Salitral de Carrera", + "scheduled_service": "no" + }, + { + "id": "342346", + "ident": "MX-1609", + "type": "closed", + "name": "Salinas de Hidalgo Airport", + "latitude_deg": "22.624284", + "longitude_deg": "-101.741756", + "elevation_ft": "6823", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SLP", + "municipality": "Salinas de Hidalgo", + "scheduled_service": "no" + }, + { + "id": "342691", + "ident": "MX-1610", + "type": "small_airport", + "name": "Las Mesas de Coluta Airstrip", + "latitude_deg": "25.10906", + "longitude_deg": "-106.75619", + "elevation_ft": "4318", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no" + }, + { + "id": "342698", + "ident": "MX-1611", + "type": "closed", + "name": "El Mezquite Airstrip", + "latitude_deg": "29.52111", + "longitude_deg": "-104.65244", + "elevation_ft": "2714", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ojinaga", + "scheduled_service": "no" + }, + { + "id": "343062", + "ident": "MX-1612", + "type": "small_airport", + "name": "Rancho Los Borregos Airport", + "latitude_deg": "27.91749", + "longitude_deg": "-99.98694", + "elevation_ft": "662", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Hidalgo", + "scheduled_service": "no" + }, + { + "id": "343219", + "ident": "MX-1613", + "type": "small_airport", + "name": "Cañon Agricultural Airstrip", + "latitude_deg": "25.28555", + "longitude_deg": "-111.7854", + "elevation_ft": "103", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Comondú", + "scheduled_service": "no" + }, + { + "id": "343220", + "ident": "MX-1614", + "type": "heliport", + "name": "Marina Heroica Naval Academy Heliport", + "latitude_deg": "19.0553", + "longitude_deg": "-95.9803", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Anton Lizardo", + "scheduled_service": "no" + }, + { + "id": "343221", + "ident": "MX-1615", + "type": "small_airport", + "name": "Marina Heroica Naval Academy Airfield", + "latitude_deg": "19.04705", + "longitude_deg": "-95.97628", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Anton Lizardo", + "scheduled_service": "no" + }, + { + "id": "343222", + "ident": "MX-1616", + "type": "heliport", + "name": "INIDETAM Heliport", + "latitude_deg": "19.0449", + "longitude_deg": "-95.9714", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Anton Lizardo", + "scheduled_service": "no" + }, + { + "id": "344861", + "ident": "MX-1617", + "type": "closed", + "name": "Los Apaches Airport", + "latitude_deg": "27.88356", + "longitude_deg": "-99.93278", + "elevation_ft": "553", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Hidalgo", + "scheduled_service": "no" + }, + { + "id": "344862", + "ident": "MX-1618", + "type": "closed", + "name": "Canoitas Airport", + "latitude_deg": "28.06206", + "longitude_deg": "-100.07325", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Hidalgo", + "scheduled_service": "no" + }, + { + "id": "344863", + "ident": "MX-1619", + "type": "small_airport", + "name": "Santa Bárbara Airport", + "latitude_deg": "27.79306", + "longitude_deg": "-100.09104", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Hidalgo", + "scheduled_service": "no" + }, + { + "id": "344937", + "ident": "MX-1620", + "type": "closed", + "name": "Guerrero Airport", + "latitude_deg": "28.32963", + "longitude_deg": "-100.38848", + "elevation_ft": "797", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Guerrero", + "scheduled_service": "no" + }, + { + "id": "344939", + "ident": "MX-1621", + "type": "closed", + "name": "El Pelon Airport", + "latitude_deg": "29.11811", + "longitude_deg": "-101.25596", + "elevation_ft": "1415", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Jimenez", + "scheduled_service": "no" + }, + { + "id": "344940", + "ident": "MX-1622", + "type": "closed", + "name": "Santa Martha de los Osos Airport", + "latitude_deg": "28.76783", + "longitude_deg": "-101.11009", + "elevation_ft": "1257", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no" + }, + { + "id": "344941", + "ident": "MX-1623", + "type": "closed", + "name": "Las Tiendas Airport", + "latitude_deg": "28.99191", + "longitude_deg": "-101.15065", + "elevation_ft": "1306", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no" + }, + { + "id": "345051", + "ident": "MX-1624", + "type": "heliport", + "name": "San Luis Río Colorado Military Checkpoint Heliport", + "latitude_deg": "32.41513", + "longitude_deg": "-114.55286", + "elevation_ft": "193", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "San Luis Río Colorado", + "scheduled_service": "no" + }, + { + "id": "345253", + "ident": "MX-1625", + "type": "heliport", + "name": "Tijuana General Hospital Heliport", + "latitude_deg": "32.5261", + "longitude_deg": "-117.00947", + "elevation_ft": "84", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Tijuana", + "scheduled_service": "no" + }, + { + "id": "345254", + "ident": "MX-1626", + "type": "closed", + "name": "Comales Airport", + "latitude_deg": "26.1832", + "longitude_deg": "-98.90707", + "elevation_ft": "233", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Ciudad Camargo", + "scheduled_service": "no" + }, + { + "id": "345262", + "ident": "MX-1627", + "type": "small_airport", + "name": "San Bruno Airport", + "latitude_deg": "27.15172", + "longitude_deg": "-112.15918", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no" + }, + { + "id": "345263", + "ident": "MX-1628", + "type": "small_airport", + "name": "Palo Verde South Airport", + "latitude_deg": "27.02458", + "longitude_deg": "-112.08525", + "elevation_ft": "177", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no" + }, + { + "id": "345264", + "ident": "MX-1629", + "type": "closed", + "name": "Mazapil Airport", + "latitude_deg": "24.64075", + "longitude_deg": "-101.54312", + "elevation_ft": "7677", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ZAC", + "municipality": "Mazapil", + "scheduled_service": "no" + }, + { + "id": "345265", + "ident": "MX-1630", + "type": "small_airport", + "name": "Mazapil East Airport", + "latitude_deg": "24.63762", + "longitude_deg": "-101.5299", + "elevation_ft": "7792", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ZAC", + "municipality": "Mazapil", + "scheduled_service": "no" + }, + { + "id": "345266", + "ident": "MX-1631", + "type": "small_airport", + "name": "Vicam Airport", + "latitude_deg": "27.62952", + "longitude_deg": "-110.30103", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guaymas", + "scheduled_service": "no" + }, + { + "id": "345267", + "ident": "MX-1632", + "type": "closed", + "name": "Oviáchic Airport", + "latitude_deg": "27.81501", + "longitude_deg": "-109.91012", + "elevation_ft": "231", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cajeme", + "scheduled_service": "no" + }, + { + "id": "345268", + "ident": "MX-1633", + "type": "closed", + "name": "Quiriego Airport", + "latitude_deg": "27.5286", + "longitude_deg": "-109.25714", + "elevation_ft": "765", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Quiriego", + "scheduled_service": "no" + }, + { + "id": "345726", + "ident": "MX-1634", + "type": "closed", + "name": "Mesa El Elefante Airport", + "latitude_deg": "29.76262", + "longitude_deg": "-101.51469", + "elevation_ft": "1243", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "345735", + "ident": "MX-1635", + "type": "small_airport", + "name": "La Pistola Airport", + "latitude_deg": "29.63504", + "longitude_deg": "-101.40575", + "elevation_ft": "1394", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "345984", + "ident": "MX-1636", + "type": "closed", + "name": "Estación Méndez Airport", + "latitude_deg": "31.582715", + "longitude_deg": "-106.523867", + "elevation_ft": "4159", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ciudad Juárez", + "scheduled_service": "no" + }, + { + "id": "345985", + "ident": "MX-1637", + "type": "closed", + "name": "Samalayuca Airport", + "latitude_deg": "31.34945", + "longitude_deg": "-106.47354", + "elevation_ft": "4161", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ciudad Juárez", + "scheduled_service": "no" + }, + { + "id": "345986", + "ident": "MX-1638", + "type": "small_airport", + "name": "Los Huesos Airport", + "latitude_deg": "27.55328", + "longitude_deg": "-100.47236", + "elevation_ft": "837", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Juárez", + "scheduled_service": "no" + }, + { + "id": "345987", + "ident": "MX-1639", + "type": "closed", + "name": "Monteverde Viejo Airport", + "latitude_deg": "27.37114", + "longitude_deg": "-100.69578", + "elevation_ft": "1001", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Progreso", + "scheduled_service": "no" + }, + { + "id": "346001", + "ident": "MX-1640", + "type": "closed", + "name": "La Tinaja Airport", + "latitude_deg": "31.37429", + "longitude_deg": "-111.35285", + "elevation_ft": "3389", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Sáric", + "scheduled_service": "no" + }, + { + "id": "346158", + "ident": "MX-1641", + "type": "closed", + "name": "Agua Verde Airport", + "latitude_deg": "29.80098", + "longitude_deg": "-102.16746", + "elevation_ft": "1457", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "347451", + "ident": "MX-1642", + "type": "heliport", + "name": "IMSS 66 Regional General Hospital Heliport", + "latitude_deg": "31.62049", + "longitude_deg": "-106.38458", + "elevation_ft": "3896", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ciudad Juárez", + "scheduled_service": "no" + }, + { + "id": "347556", + "ident": "MX-1643", + "type": "heliport", + "name": "IMSS 30 Regional General Hospital Heliport", + "latitude_deg": "32.66141", + "longitude_deg": "-115.46792", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no" + }, + { + "id": "347557", + "ident": "MX-1644", + "type": "heliport", + "name": "Women's and Children's Hospital Heliport", + "latitude_deg": "32.62344", + "longitude_deg": "-115.37542", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no" + }, + { + "id": "347990", + "ident": "MX-1645", + "type": "small_airport", + "name": "La Linda Airport", + "latitude_deg": "29.44143", + "longitude_deg": "-102.81512", + "elevation_ft": "1732", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "347992", + "ident": "MX-1646", + "type": "closed", + "name": "Mesa La Pista Airport", + "latitude_deg": "29.43188", + "longitude_deg": "-102.8079", + "elevation_ft": "1808", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "347993", + "ident": "MX-1647", + "type": "closed", + "name": "Norias de Boquillas del Carmen Airport", + "latitude_deg": "29.09594", + "longitude_deg": "-102.83384", + "elevation_ft": "2773", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ocampo", + "scheduled_service": "no" + }, + { + "id": "347994", + "ident": "MX-1648", + "type": "small_airport", + "name": "Rancho Santa María Airport", + "latitude_deg": "29.55711", + "longitude_deg": "-101.91514", + "elevation_ft": "2008", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "347995", + "ident": "MX-1649", + "type": "small_airport", + "name": "Rancho El Salado West Airport", + "latitude_deg": "29.65201", + "longitude_deg": "-101.78009", + "elevation_ft": "1675", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "347996", + "ident": "MX-1650", + "type": "small_airport", + "name": "Rancho Los Albertos Airport", + "latitude_deg": "29.58424", + "longitude_deg": "-101.64497", + "elevation_ft": "1814", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "348282", + "ident": "MX-1651", + "type": "closed", + "name": "Paso La Yegua Airport", + "latitude_deg": "27.09831", + "longitude_deg": "-99.8095", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Anáhuac", + "scheduled_service": "no" + }, + { + "id": "348283", + "ident": "MX-1652", + "type": "closed", + "name": "El Brasil Airport", + "latitude_deg": "25.88954", + "longitude_deg": "-98.99664", + "elevation_ft": "374", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Doctor Coss", + "scheduled_service": "no" + }, + { + "id": "348284", + "ident": "MX-1653", + "type": "closed", + "name": "San Felipe Airport", + "latitude_deg": "25.95666", + "longitude_deg": "-99.03787", + "elevation_ft": "329", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Doctor Coss", + "scheduled_service": "no" + }, + { + "id": "348285", + "ident": "MX-1654", + "type": "closed", + "name": "Doctor Coss Airport", + "latitude_deg": "25.93559", + "longitude_deg": "-99.17397", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Doctor Coss", + "scheduled_service": "no" + }, + { + "id": "348304", + "ident": "MX-1655", + "type": "small_airport", + "name": "La Púrica Airport", + "latitude_deg": "30.4546", + "longitude_deg": "-109.69585", + "elevation_ft": "4080", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Nacozari de García", + "scheduled_service": "no" + }, + { + "id": "348305", + "ident": "MX-1656", + "type": "small_airport", + "name": "Fronteras Airport", + "latitude_deg": "30.88896", + "longitude_deg": "-109.59709", + "elevation_ft": "3848", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Fronteras", + "scheduled_service": "no" + }, + { + "id": "348306", + "ident": "MX-1657", + "type": "small_airport", + "name": "Arroyo San Juan de la Mucha Agua Airstrip", + "latitude_deg": "27.34596", + "longitude_deg": "-100.42607", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Lampazos de Naranjo", + "scheduled_service": "no" + }, + { + "id": "348307", + "ident": "MX-1658", + "type": "closed", + "name": "San Miguel Airstrip", + "latitude_deg": "27.06245", + "longitude_deg": "-99.96933", + "elevation_ft": "571", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Anáhuac", + "scheduled_service": "no" + }, + { + "id": "348308", + "ident": "MX-1659", + "type": "closed", + "name": "La Gloria Airstrip", + "latitude_deg": "26.91888", + "longitude_deg": "-99.8121", + "elevation_ft": "461", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Anáhuac", + "scheduled_service": "no" + }, + { + "id": "348309", + "ident": "MX-1660", + "type": "small_airport", + "name": "Arroyo Carrizalejos Airport", + "latitude_deg": "26.38208", + "longitude_deg": "-99.60298", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Agualeguas", + "scheduled_service": "no" + }, + { + "id": "348310", + "ident": "MX-1661", + "type": "small_airport", + "name": "San Felipe Airport", + "latitude_deg": "26.64943", + "longitude_deg": "-99.83051", + "elevation_ft": "607", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Vallecillo", + "scheduled_service": "no" + }, + { + "id": "348311", + "ident": "MX-1662", + "type": "closed", + "name": "El Cerrito Airstrip", + "latitude_deg": "26.62383", + "longitude_deg": "-99.7932", + "elevation_ft": "548", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Vallecillo", + "scheduled_service": "no" + }, + { + "id": "348396", + "ident": "MX-1663", + "type": "small_airport", + "name": "Santa Margarita Airport", + "latitude_deg": "29.47418", + "longitude_deg": "-101.50274", + "elevation_ft": "1568", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "348397", + "ident": "MX-1664", + "type": "small_airport", + "name": "El Rey Airport", + "latitude_deg": "29.53661", + "longitude_deg": "-101.44093", + "elevation_ft": "1342", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "348398", + "ident": "MX-1665", + "type": "closed", + "name": "Santa Ana Airstrip", + "latitude_deg": "29.72441", + "longitude_deg": "-101.43562", + "elevation_ft": "1526", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "348630", + "ident": "MX-1666", + "type": "closed", + "name": "Los Ébanos Airport", + "latitude_deg": "24.71507", + "longitude_deg": "-97.75096", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "San Fernando", + "scheduled_service": "no" + }, + { + "id": "348631", + "ident": "MX-1667", + "type": "small_airport", + "name": "El Puma Airport", + "latitude_deg": "23.77922", + "longitude_deg": "-97.95611", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "EPU" + }, + { + "id": "348632", + "ident": "MX-1668", + "type": "small_airport", + "name": "Güémez Airport", + "latitude_deg": "23.90318", + "longitude_deg": "-99.01402", + "elevation_ft": "577", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Güémez", + "scheduled_service": "no" + }, + { + "id": "348633", + "ident": "MX-1669", + "type": "small_airport", + "name": "Tampiquito Airport", + "latitude_deg": "23.82021", + "longitude_deg": "-98.18152", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no" + }, + { + "id": "348634", + "ident": "MX-1670", + "type": "closed", + "name": "El Mirador Airport", + "latitude_deg": "24.09614", + "longitude_deg": "-98.67759", + "elevation_ft": "732", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Padilla", + "scheduled_service": "no" + }, + { + "id": "348635", + "ident": "MX-1671", + "type": "closed", + "name": "El Panal Airport", + "latitude_deg": "24.09445", + "longitude_deg": "-98.73595", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Padilla", + "scheduled_service": "no" + }, + { + "id": "348651", + "ident": "MX-1672", + "type": "closed", + "name": "Villa Mainero Airport", + "latitude_deg": "24.5639", + "longitude_deg": "-99.60895", + "elevation_ft": "1555", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Mainero", + "scheduled_service": "no" + }, + { + "id": "348652", + "ident": "MX-1673", + "type": "small_airport", + "name": "San Rafael Airport", + "latitude_deg": "25.03863", + "longitude_deg": "-100.57766", + "elevation_ft": "6191", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Galeana", + "scheduled_service": "no" + }, + { + "id": "348653", + "ident": "MX-1674", + "type": "small_airport", + "name": "El Ranchito Airport", + "latitude_deg": "25.07004", + "longitude_deg": "-100.63248", + "elevation_ft": "6194", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Galeana", + "scheduled_service": "no", + "local_code": "ERG" + }, + { + "id": "348654", + "ident": "MX-1675", + "type": "small_airport", + "name": "El Guajuco Airport", + "latitude_deg": "25.32507", + "longitude_deg": "-99.95776", + "elevation_ft": "1319", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Ciudad de Allende", + "scheduled_service": "no" + }, + { + "id": "348655", + "ident": "MX-1676", + "type": "closed", + "name": "Las Blancas Airport", + "latitude_deg": "25.21763", + "longitude_deg": "-99.32398", + "elevation_ft": "768", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "General Terán", + "scheduled_service": "no" + }, + { + "id": "348656", + "ident": "MX-1677", + "type": "closed", + "name": "La Mascota Airport", + "latitude_deg": "25.39906", + "longitude_deg": "-99.26872", + "elevation_ft": "643", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "General Terán", + "scheduled_service": "no" + }, + { + "id": "348657", + "ident": "MX-1678", + "type": "small_airport", + "name": "El Carrizo Airport", + "latitude_deg": "25.53201", + "longitude_deg": "-99.61459", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Los Ramones", + "scheduled_service": "no" + }, + { + "id": "348658", + "ident": "MX-1679", + "type": "closed", + "name": "Moctezuma Airport", + "latitude_deg": "29.82283", + "longitude_deg": "-109.67903", + "elevation_ft": "2136", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Moctezuma", + "scheduled_service": "no" + }, + { + "id": "348700", + "ident": "MX-1680", + "type": "closed", + "name": "El Pilón de La Purísima Airport", + "latitude_deg": "26.20105", + "longitude_deg": "-112.05793", + "elevation_ft": "364", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Comondú", + "scheduled_service": "no" + }, + { + "id": "348701", + "ident": "MX-1681", + "type": "closed", + "name": "El Rosarito Airport", + "latitude_deg": "26.45728", + "longitude_deg": "-111.64594", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Loreto", + "scheduled_service": "no" + }, + { + "id": "348702", + "ident": "MX-1682", + "type": "small_airport", + "name": "El Medano (Santa Rita) Airport", + "latitude_deg": "24.58935", + "longitude_deg": "-111.48098", + "elevation_ft": "144", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no" + }, + { + "id": "348703", + "ident": "MX-1683", + "type": "closed", + "name": "Agua Verde Airport", + "latitude_deg": "24.4989", + "longitude_deg": "-111.52298", + "elevation_ft": "61", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no" + }, + { + "id": "348704", + "ident": "MX-1684", + "type": "small_airport", + "name": "Los Remedios East Airstrip", + "latitude_deg": "24.62277", + "longitude_deg": "-106.38876", + "elevation_ft": "1556", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no" + }, + { + "id": "348705", + "ident": "MX-1685", + "type": "small_airport", + "name": "Los Remedios Airstrip", + "latitude_deg": "24.61581", + "longitude_deg": "-106.40392", + "elevation_ft": "1475", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "REW" + }, + { + "id": "348706", + "ident": "MX-1686", + "type": "closed", + "name": "José María Pino Suárez Airport", + "latitude_deg": "19.95114", + "longitude_deg": "-105.34191", + "elevation_ft": "106", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "José María Pino Suárez", + "scheduled_service": "no" + }, + { + "id": "348708", + "ident": "MX-1687", + "type": "closed", + "name": "Nueva Italia Airport", + "latitude_deg": "19.003", + "longitude_deg": "-102.10045", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Nueva Italia", + "scheduled_service": "no" + }, + { + "id": "348727", + "ident": "MX-1688", + "type": "small_airport", + "name": "El Llano Airport", + "latitude_deg": "30.352299", + "longitude_deg": "-107.122106", + "elevation_ft": "4334", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Villa Ahumada", + "scheduled_service": "no" + }, + { + "id": "348728", + "ident": "MX-1689", + "type": "small_airport", + "name": "Cumpas Airport", + "latitude_deg": "30.03584", + "longitude_deg": "-109.76288", + "elevation_ft": "2699", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cumpas", + "scheduled_service": "no" + }, + { + "id": "348731", + "ident": "MX-1690", + "type": "closed", + "name": "Maravillas Airport", + "latitude_deg": "31.01548", + "longitude_deg": "-106.6402", + "elevation_ft": "4229", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Villa Ahumada", + "scheduled_service": "no" + }, + { + "id": "348733", + "ident": "MX-1691", + "type": "closed", + "name": "Los Tríos Airport", + "latitude_deg": "31.38214", + "longitude_deg": "-107.60331", + "elevation_ft": "4041", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ascensión", + "scheduled_service": "no" + }, + { + "id": "348736", + "ident": "MX-1692", + "type": "small_airport", + "name": "Pitiquito Airport", + "latitude_deg": "30.69137", + "longitude_deg": "-112.0707", + "elevation_ft": "995", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Pitiquito", + "scheduled_service": "no" + }, + { + "id": "348741", + "ident": "MX-1693", + "type": "small_airport", + "name": "Charming Campestre Airport", + "latitude_deg": "25.32728", + "longitude_deg": "-100.00957", + "elevation_ft": "1604", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Ciudad de Allende", + "scheduled_service": "no" + }, + { + "id": "348769", + "ident": "MX-1694", + "type": "closed", + "name": "Torre Alta Airport", + "latitude_deg": "31.56374", + "longitude_deg": "-107.67752", + "elevation_ft": "4055", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ascensión", + "scheduled_service": "no" + }, + { + "id": "348781", + "ident": "MX-1695", + "type": "small_airport", + "name": "Matomí Airport", + "latitude_deg": "30.46076", + "longitude_deg": "-115.06512", + "elevation_ft": "2321", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no" + }, + { + "id": "348782", + "ident": "MX-1696", + "type": "closed", + "name": "Dieciocho de Mayo Airport", + "latitude_deg": "24.32678", + "longitude_deg": "-98.43304", + "elevation_ft": "659", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Jiménez", + "scheduled_service": "no" + }, + { + "id": "348783", + "ident": "MX-1697", + "type": "closed", + "name": "Godornices Airport", + "latitude_deg": "28.62339", + "longitude_deg": "-102.14178", + "elevation_ft": "2844", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Muzquiz", + "scheduled_service": "no" + }, + { + "id": "348785", + "ident": "MX-1698", + "type": "small_airport", + "name": "Méndez Airport", + "latitude_deg": "25.11133", + "longitude_deg": "-98.58721", + "elevation_ft": "256", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Méndez", + "scheduled_service": "no" + }, + { + "id": "348822", + "ident": "MX-1699", + "type": "small_airport", + "name": "El Quelele Airport", + "latitude_deg": "24.19076", + "longitude_deg": "-110.51644", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no" + }, + { + "id": "348823", + "ident": "MX-1700", + "type": "small_airport", + "name": "Las Parcelas Airport", + "latitude_deg": "24.19563", + "longitude_deg": "-110.51887", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no" + }, + { + "id": "348824", + "ident": "MX-1701", + "type": "closed", + "name": "El Mogote Airport", + "latitude_deg": "24.16566", + "longitude_deg": "-110.35872", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no" + }, + { + "id": "348825", + "ident": "MX-1702", + "type": "small_airport", + "name": "General Juan Domínguez Cota Airport", + "latitude_deg": "23.95577", + "longitude_deg": "-109.96124", + "elevation_ft": "144", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no" + }, + { + "id": "348826", + "ident": "MX-1703", + "type": "small_airport", + "name": "Ejido de Vergel Airport", + "latitude_deg": "26.48288", + "longitude_deg": "-106.38474", + "elevation_ft": "9055", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Balleza", + "scheduled_service": "no" + }, + { + "id": "348827", + "ident": "MX-1704", + "type": "small_airport", + "name": "Cumbres de Sinforosa Airport", + "latitude_deg": "26.70525", + "longitude_deg": "-107.08175", + "elevation_ft": "7920", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guachochi", + "scheduled_service": "no" + }, + { + "id": "348828", + "ident": "MX-1705", + "type": "small_airport", + "name": "Aboreachi Airport", + "latitude_deg": "27.13782", + "longitude_deg": "-107.31264", + "elevation_ft": "7530", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guachochi", + "scheduled_service": "no" + }, + { + "id": "348829", + "ident": "MX-1706", + "type": "closed", + "name": "Machogueachi Airport", + "latitude_deg": "27.7132", + "longitude_deg": "-107.61641", + "elevation_ft": "7652", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Bocoyna", + "scheduled_service": "no" + }, + { + "id": "348830", + "ident": "MX-1707", + "type": "closed", + "name": "Bocoyna Airport", + "latitude_deg": "27.92614", + "longitude_deg": "-107.60103", + "elevation_ft": "8002", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Bocoyna", + "scheduled_service": "no" + }, + { + "id": "348865", + "ident": "MX-1708", + "type": "closed", + "name": "Chihuahuita Airport", + "latitude_deg": "26.15698", + "longitude_deg": "-109.06694", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Ahome", + "scheduled_service": "no" + }, + { + "id": "348866", + "ident": "MX-1709", + "type": "closed", + "name": "Bacoporobampo Airport", + "latitude_deg": "25.90173", + "longitude_deg": "-109.01784", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Los Mochis", + "scheduled_service": "no" + }, + { + "id": "348883", + "ident": "MX-1710", + "type": "small_airport", + "name": "La Luz Airport", + "latitude_deg": "28.1614", + "longitude_deg": "-100.75935", + "elevation_ft": "1404", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Guerrero", + "scheduled_service": "no" + }, + { + "id": "348884", + "ident": "MX-1711", + "type": "closed", + "name": "La Huérfana Airport", + "latitude_deg": "29.34453", + "longitude_deg": "-101.72447", + "elevation_ft": "2220", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "348885", + "ident": "MX-1712", + "type": "closed", + "name": "San Fernando Airport", + "latitude_deg": "29.4147", + "longitude_deg": "-101.71494", + "elevation_ft": "1976", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "348886", + "ident": "MX-1713", + "type": "closed", + "name": "Chupadero del Caballo Airport", + "latitude_deg": "29.39339", + "longitude_deg": "-101.81127", + "elevation_ft": "2126", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "348887", + "ident": "MX-1714", + "type": "small_airport", + "name": "Santa Teresa Airport", + "latitude_deg": "29.36086", + "longitude_deg": "-101.90683", + "elevation_ft": "2460", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "348888", + "ident": "MX-1715", + "type": "closed", + "name": "Santo Toribio Airport", + "latitude_deg": "29.4411", + "longitude_deg": "-101.93327", + "elevation_ft": "2408", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "348889", + "ident": "MX-1716", + "type": "closed", + "name": "El Mosco Airport", + "latitude_deg": "29.49796", + "longitude_deg": "-102.04574", + "elevation_ft": "2406", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "348890", + "ident": "MX-1717", + "type": "small_airport", + "name": "El Reseco Airport", + "latitude_deg": "29.24914", + "longitude_deg": "-101.42438", + "elevation_ft": "1735", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "348891", + "ident": "MX-1718", + "type": "closed", + "name": "Rancho Lagunitas Airport", + "latitude_deg": "29.10242", + "longitude_deg": "-101.82901", + "elevation_ft": "3045", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no" + }, + { + "id": "348892", + "ident": "MX-1719", + "type": "closed", + "name": "San Vicente Airport", + "latitude_deg": "29.07989", + "longitude_deg": "-101.87303", + "elevation_ft": "3450", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no" + }, + { + "id": "348893", + "ident": "MX-1720", + "type": "small_airport", + "name": "San Jorge Airport", + "latitude_deg": "28.96032", + "longitude_deg": "-101.86485", + "elevation_ft": "3888", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no" + }, + { + "id": "348894", + "ident": "MX-1721", + "type": "small_airport", + "name": "El Porvenir Airport", + "latitude_deg": "28.97413", + "longitude_deg": "-101.89407", + "elevation_ft": "3980", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no" + }, + { + "id": "348895", + "ident": "MX-1722", + "type": "small_airport", + "name": "Los Caballos Airport", + "latitude_deg": "28.89354", + "longitude_deg": "-101.81613", + "elevation_ft": "3452", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no" + }, + { + "id": "348896", + "ident": "MX-1723", + "type": "small_airport", + "name": "Los Potros Airport", + "latitude_deg": "28.91736", + "longitude_deg": "-101.77108", + "elevation_ft": "3645", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no" + }, + { + "id": "348897", + "ident": "MX-1724", + "type": "small_airport", + "name": "Siete Hermanos Airport", + "latitude_deg": "28.69872", + "longitude_deg": "-101.5924", + "elevation_ft": "2753", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no" + }, + { + "id": "348898", + "ident": "MX-1725", + "type": "small_airport", + "name": "San Javier Airport", + "latitude_deg": "28.50667", + "longitude_deg": "-101.72992", + "elevation_ft": "2207", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Melchor Múzquiz", + "scheduled_service": "no" + }, + { + "id": "348899", + "ident": "MX-1726", + "type": "small_airport", + "name": "La Nesta Airport", + "latitude_deg": "28.37203", + "longitude_deg": "-101.6246", + "elevation_ft": "1812", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Melchor Múzquiz", + "scheduled_service": "no" + }, + { + "id": "348900", + "ident": "MX-1727", + "type": "small_airport", + "name": "La Comunidad Airport", + "latitude_deg": "28.37105", + "longitude_deg": "-101.58062", + "elevation_ft": "1822", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Melchor Múzquiz", + "scheduled_service": "no" + }, + { + "id": "348901", + "ident": "MX-1728", + "type": "closed", + "name": "El Oso Airport", + "latitude_deg": "28.23558", + "longitude_deg": "-101.51281", + "elevation_ft": "1588", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Melchor Múzquiz", + "scheduled_service": "no" + }, + { + "id": "348902", + "ident": "MX-1729", + "type": "closed", + "name": "Dos Hermanas Airport", + "latitude_deg": "28.2828", + "longitude_deg": "-101.33017", + "elevation_ft": "1798", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Melchor Múzquiz", + "scheduled_service": "no" + }, + { + "id": "348903", + "ident": "MX-1730", + "type": "small_airport", + "name": "El Treinta Airport", + "latitude_deg": "28.31764", + "longitude_deg": "-101.38026", + "elevation_ft": "1780", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Melchor Múzquiz", + "scheduled_service": "no" + }, + { + "id": "348904", + "ident": "MX-1731", + "type": "closed", + "name": "Las Conchas Airport", + "latitude_deg": "28.32006", + "longitude_deg": "-101.09692", + "elevation_ft": "1644", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Morelos", + "scheduled_service": "no" + }, + { + "id": "348905", + "ident": "MX-1732", + "type": "small_airport", + "name": "Rancho Tio Tacho Airport", + "latitude_deg": "28.769458", + "longitude_deg": "-101.328249", + "elevation_ft": "1547", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no" + }, + { + "id": "348906", + "ident": "MX-1733", + "type": "closed", + "name": "El Capitán Airport", + "latitude_deg": "28.8396", + "longitude_deg": "-101.23808", + "elevation_ft": "1434", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no" + }, + { + "id": "348907", + "ident": "MX-1734", + "type": "closed", + "name": "Atotonilco Airport", + "latitude_deg": "30.47452", + "longitude_deg": "-106.17929", + "elevation_ft": "4600", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Villa Ahumada", + "scheduled_service": "no" + }, + { + "id": "348909", + "ident": "MX-1735", + "type": "closed", + "name": "San Vicente Airport", + "latitude_deg": "31.31713", + "longitude_deg": "-116.26023", + "elevation_ft": "417", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no" + }, + { + "id": "348910", + "ident": "MX-1736", + "type": "closed", + "name": "Agua Blanca Airport", + "latitude_deg": "29.96137", + "longitude_deg": "-115.72936", + "elevation_ft": "248", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no" + }, + { + "id": "348911", + "ident": "MX-1737", + "type": "small_airport", + "name": "Cañon San Vicente Airport", + "latitude_deg": "29.825", + "longitude_deg": "-115.66422", + "elevation_ft": "178", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no" + }, + { + "id": "348912", + "ident": "MX-1738", + "type": "closed", + "name": "Puerto Canoas Airport", + "latitude_deg": "29.43174", + "longitude_deg": "-115.11183", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no" + }, + { + "id": "348914", + "ident": "MX-1739", + "type": "closed", + "name": "El Frijolar Airport", + "latitude_deg": "25.96117", + "longitude_deg": "-107.282009", + "elevation_ft": "5184", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "FRJ", + "keywords": "FRJ" + }, + { + "id": "348922", + "ident": "MX-1740", + "type": "small_airport", + "name": "El Freno Airfield", + "latitude_deg": "18.075858", + "longitude_deg": "-91.915698", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CAM", + "municipality": "Palizada", + "scheduled_service": "no", + "local_code": "FRN" + }, + { + "id": "348936", + "ident": "MX-1741", + "type": "closed", + "name": "Arroyo Cerro Bola Airport", + "latitude_deg": "30.62178", + "longitude_deg": "-105.04782", + "elevation_ft": "1409", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe", + "scheduled_service": "no" + }, + { + "id": "348937", + "ident": "MX-1742", + "type": "heliport", + "name": "El Realito Heliport", + "latitude_deg": "25.103389", + "longitude_deg": "-107.172242", + "elevation_ft": "207", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "HRJ" + }, + { + "id": "348938", + "ident": "MX-1743", + "type": "heliport", + "name": "San Francisco Heliport", + "latitude_deg": "19.335984", + "longitude_deg": "-99.264033", + "elevation_ft": "8615", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Alvaro Obregon", + "scheduled_service": "no", + "local_code": "HSF" + }, + { + "id": "348939", + "ident": "MX-1744", + "type": "closed", + "name": "Hotel Solaris Heliport", + "latitude_deg": "18.709482", + "longitude_deg": "-99.119514", + "elevation_ft": "3609", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MOR", + "municipality": "Tlaltizapan", + "scheduled_service": "no", + "local_code": "HSL", + "keywords": "HSL" + }, + { + "id": "348942", + "ident": "MX-1745", + "type": "heliport", + "name": "Unitec Guadalajara Helipad", + "latitude_deg": "20.678111", + "longitude_deg": "-103.456194", + "elevation_ft": "5568", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Guadalajara", + "scheduled_service": "yes", + "local_code": "HTG" + }, + { + "id": "348943", + "ident": "MX-1746", + "type": "heliport", + "name": "Televisa Santa Fe Heliport", + "latitude_deg": "19.374935", + "longitude_deg": "-99.250483", + "elevation_ft": "8140", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuajimalpa", + "scheduled_service": "no", + "local_code": "HTL" + }, + { + "id": "348944", + "ident": "MX-1747", + "type": "small_airport", + "name": "Lindavista Airstrip.", + "latitude_deg": "22.541852", + "longitude_deg": "-98.281589", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Altamira", + "scheduled_service": "no", + "local_code": "LDV" + }, + { + "id": "348945", + "ident": "MX-1748", + "type": "small_airport", + "name": "La Gloria Airport", + "latitude_deg": "28.912108", + "longitude_deg": "-110.812025", + "elevation_ft": "853", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "La Colorada", + "scheduled_service": "no", + "local_code": "LGK" + }, + { + "id": "348947", + "ident": "MX-1749", + "type": "heliport", + "name": "Torre Telmex Helipad", + "latitude_deg": "19.434482", + "longitude_deg": "-99.166868", + "elevation_ft": "7576", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Cuauhtémoc", + "scheduled_service": "no", + "local_code": "HTX" + }, + { + "id": "348948", + "ident": "MX-1750", + "type": "heliport", + "name": "Unefon Helipad", + "latitude_deg": "19.305893", + "longitude_deg": "-99.210631", + "elevation_ft": "7936", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Tlalpan", + "scheduled_service": "no", + "local_code": "HUF" + }, + { + "id": "348949", + "ident": "MX-1751", + "type": "heliport", + "name": "Unitec Campus Sur Helipad", + "latitude_deg": "19.355921", + "longitude_deg": "-99.118202", + "elevation_ft": "7316", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Iztapalapa", + "scheduled_service": "no", + "local_code": "HUG" + }, + { + "id": "348958", + "ident": "MX-1752", + "type": "heliport", + "name": "Hospital Angeles de Villahermosa Helipad", + "latitude_deg": "17.996433", + "longitude_deg": "-92.95316", + "elevation_ft": "93", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAB", + "municipality": "Villahermosa", + "scheduled_service": "no", + "local_code": "HVI" + }, + { + "id": "348963", + "ident": "MX-1753", + "type": "small_airport", + "name": "Huaynamota Airport", + "latitude_deg": "21.921578", + "longitude_deg": "-104.513272", + "elevation_ft": "2165", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "El Nayar", + "scheduled_service": "no", + "local_code": "HYM" + }, + { + "id": "348968", + "ident": "MX-1754", + "type": "small_airport", + "name": "El Huizache Airport", + "latitude_deg": "25.914085", + "longitude_deg": "-98.113914", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Rio Bravo", + "scheduled_service": "no", + "local_code": "HZH" + }, + { + "id": "348970", + "ident": "MX-1755", + "type": "closed", + "name": "Huatabampo Airstrip.", + "latitude_deg": "26.813498", + "longitude_deg": "-109.642586", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Huatabampo", + "scheduled_service": "no", + "local_code": "HZU" + }, + { + "id": "348972", + "ident": "MX-1756", + "type": "small_airport", + "name": "Isaac Castro Sahade Airport", + "latitude_deg": "20.623983", + "longitude_deg": "-99.968895", + "elevation_ft": "6404", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-QUE", + "municipality": "Tequisquiapan", + "scheduled_service": "no", + "local_code": "ICS" + }, + { + "id": "348973", + "ident": "MX-1757", + "type": "small_airport", + "name": "Laboratorio del Desierto Airstrip", + "latitude_deg": "26.692385", + "longitude_deg": "-103.747458", + "elevation_ft": "3789", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Mapimi", + "scheduled_service": "no" + }, + { + "id": "348976", + "ident": "MX-1758", + "type": "small_airport", + "name": "JBT Airport", + "latitude_deg": "25.638023", + "longitude_deg": "-108.611389", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "JBT" + }, + { + "id": "348977", + "ident": "MX-1759", + "type": "small_airport", + "name": "Jesus Maria Airstrip", + "latitude_deg": "26.859136", + "longitude_deg": "-107.665179", + "elevation_ft": "3691", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Batopilas", + "scheduled_service": "no", + "local_code": "JMC" + }, + { + "id": "348978", + "ident": "MX-1760", + "type": "small_airport", + "name": "Bahía la Choya Ultralightport", + "latitude_deg": "31.33658", + "longitude_deg": "-113.61543", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Puerto Peñasco", + "scheduled_service": "no" + }, + { + "id": "348979", + "ident": "MX-1761", + "type": "small_airport", + "name": "Colonia Ortiz Garza Airport", + "latitude_deg": "31.48073", + "longitude_deg": "-113.4009", + "elevation_ft": "177", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Puerto Peñasco", + "scheduled_service": "no" + }, + { + "id": "348980", + "ident": "MX-1762", + "type": "closed", + "name": "La Providencia Airport", + "latitude_deg": "30.38256", + "longitude_deg": "-110.05961", + "elevation_ft": "3056", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Arizpe", + "scheduled_service": "no" + }, + { + "id": "348983", + "ident": "MX-1763", + "type": "small_airport", + "name": "Janitzio Airstrip", + "latitude_deg": "32.511776", + "longitude_deg": "-114.855293", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "JNZ" + }, + { + "id": "348988", + "ident": "MX-1764", + "type": "small_airport", + "name": "San Jose del Progreso Airport.", + "latitude_deg": "16.07901", + "longitude_deg": "-97.700958", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Tututepec", + "scheduled_service": "no", + "local_code": "JPT" + }, + { + "id": "348989", + "ident": "MX-1765", + "type": "small_airport", + "name": "Jose Galindo Ruiz Airport", + "latitude_deg": "24.438476", + "longitude_deg": "-107.372915", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "JSG" + }, + { + "id": "348990", + "ident": "MX-1766", + "type": "small_airport", + "name": "Las Azoteas Airstrip", + "latitude_deg": "24.171741", + "longitude_deg": "-106.176628", + "elevation_ft": "4216", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "San Ignacio", + "scheduled_service": "no", + "local_code": "LAS" + }, + { + "id": "348991", + "ident": "MX-1767", + "type": "small_airport", + "name": "Las Aguilas Airport", + "latitude_deg": "25.677008", + "longitude_deg": "-108.562698", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "LAX" + }, + { + "id": "348993", + "ident": "MX-1768", + "type": "small_airport", + "name": "Las Carreras Airstrip", + "latitude_deg": "28.847181", + "longitude_deg": "-101.549614", + "elevation_ft": "2165", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Zaragoza", + "scheduled_service": "no", + "local_code": "LCQ" + }, + { + "id": "348995", + "ident": "MX-1769", + "type": "small_airport", + "name": "Las Flores Airport", + "latitude_deg": "26.04352", + "longitude_deg": "-107.438672", + "elevation_ft": "3740", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "LFX" + }, + { + "id": "348999", + "ident": "MX-1770", + "type": "small_airport", + "name": "Las Lagartijas Airstrip", + "latitude_deg": "31.42107", + "longitude_deg": "-108.01354", + "elevation_ft": "4175", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ascensión", + "scheduled_service": "no" + }, + { + "id": "349000", + "ident": "MX-1771", + "type": "closed", + "name": "Llano Blanco Airport", + "latitude_deg": "31.43081", + "longitude_deg": "-107.95018", + "elevation_ft": "4160", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ascensión", + "scheduled_service": "no" + }, + { + "id": "349001", + "ident": "MX-1772", + "type": "closed", + "name": "Los Castillo Airport", + "latitude_deg": "31.53094", + "longitude_deg": "-108.17707", + "elevation_ft": "4177", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ascensión", + "scheduled_service": "no" + }, + { + "id": "349002", + "ident": "MX-1773", + "type": "closed", + "name": "Rancho Los Lamentos Airport", + "latitude_deg": "31.75569", + "longitude_deg": "-108.07974", + "elevation_ft": "4389", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ascensión", + "scheduled_service": "no", + "keywords": "Emiliano Zapata" + }, + { + "id": "349028", + "ident": "MX-1774", + "type": "closed", + "name": "Las Glorias Airstrip", + "latitude_deg": "29.646381", + "longitude_deg": "-111.496223", + "elevation_ft": "1542", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Hermosillo", + "scheduled_service": "no", + "local_code": "LGB", + "keywords": "LGB" + }, + { + "id": "349029", + "ident": "MX-1775", + "type": "small_airport", + "name": "Llano Grande Airport", + "latitude_deg": "22.870205", + "longitude_deg": "-104.520729", + "elevation_ft": "7428", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Mezquital", + "scheduled_service": "no", + "local_code": "LGE" + }, + { + "id": "349030", + "ident": "MX-1776", + "type": "small_airport", + "name": "La Cienega del Ojito Airport", + "latitude_deg": "26.039202", + "longitude_deg": "-107.370537", + "elevation_ft": "3937", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "LGG" + }, + { + "id": "349031", + "ident": "MX-1777", + "type": "closed", + "name": "Represito de Lujan Airport", + "latitude_deg": "28.602628", + "longitude_deg": "-110.742381", + "elevation_ft": "899", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "La Colorada", + "scheduled_service": "no", + "local_code": "LJN", + "keywords": "LJN" + }, + { + "id": "349032", + "ident": "MX-1778", + "type": "small_airport", + "name": "La Lomita", + "latitude_deg": "22.839455", + "longitude_deg": "-98.491585", + "elevation_ft": "269", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Gonzalez", + "scheduled_service": "no", + "local_code": "LLM" + }, + { + "id": "349036", + "ident": "MX-1779", + "type": "small_airport", + "name": "La Manga Airstrip", + "latitude_deg": "21.489631", + "longitude_deg": "-104.142859", + "elevation_ft": "5577", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "La Yesca", + "scheduled_service": "no", + "local_code": "LMA" + }, + { + "id": "349037", + "ident": "MX-1780", + "type": "small_airport", + "name": "Rancho La Encantada Airstrip", + "latitude_deg": "24.38701", + "longitude_deg": "-97.947149", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "San Fernando", + "scheduled_service": "no", + "local_code": "LND" + }, + { + "id": "349039", + "ident": "MX-1781", + "type": "small_airport", + "name": "Reyna Diana Airport", + "latitude_deg": "27.018917", + "longitude_deg": "-109.585724", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Etchojoa", + "scheduled_service": "no", + "local_code": "LRJ" + }, + { + "id": "349050", + "ident": "MX-1782", + "type": "small_airport", + "name": "La Luna Airport", + "latitude_deg": "24.66256", + "longitude_deg": "-107.519792", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Licenciado Benito Juárez", + "scheduled_service": "no", + "local_code": "LUN" + }, + { + "id": "349055", + "ident": "MX-1783", + "type": "small_airport", + "name": "Mineral de Polanco Airport", + "latitude_deg": "26.84161", + "longitude_deg": "-107.636951", + "elevation_ft": "4878", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Batopilas", + "scheduled_service": "no", + "local_code": "MDP" + }, + { + "id": "349056", + "ident": "MX-1784", + "type": "closed", + "name": "Mesa de Los Saucedo Airstrip", + "latitude_deg": "21.461529", + "longitude_deg": "-103.97508", + "elevation_ft": "4593", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "La Yesca", + "scheduled_service": "no", + "local_code": "MDS" + }, + { + "id": "349092", + "ident": "MX-1785", + "type": "small_airport", + "name": "La Providencia Airport", + "latitude_deg": "30.55242", + "longitude_deg": "-111.14665", + "elevation_ft": "2255", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Santa Ana", + "scheduled_service": "no" + }, + { + "id": "349093", + "ident": "MX-1786", + "type": "closed", + "name": "Santa Ana Viejo Airport", + "latitude_deg": "30.54633", + "longitude_deg": "-111.14935", + "elevation_ft": "2226", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Santa Ana", + "scheduled_service": "no" + }, + { + "id": "349094", + "ident": "MX-1787", + "type": "closed", + "name": "El Represo Airport", + "latitude_deg": "30.55709", + "longitude_deg": "-111.06313", + "elevation_ft": "2555", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Santa Ana", + "scheduled_service": "no" + }, + { + "id": "349100", + "ident": "MX-1788", + "type": "small_airport", + "name": "Divisadero Barrancas Airstrip", + "latitude_deg": "27.525237", + "longitude_deg": "-107.830403", + "elevation_ft": "6998", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Bocoyna", + "scheduled_service": "no", + "local_code": "ADB" + }, + { + "id": "349101", + "ident": "MX-1789", + "type": "small_airport", + "name": "Rancho El Tinieblo Airstrip", + "latitude_deg": "24.323811", + "longitude_deg": "-98.506165", + "elevation_ft": "663", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Jimenez", + "scheduled_service": "no", + "local_code": "AET" + }, + { + "id": "349151", + "ident": "MX-1790", + "type": "small_airport", + "name": "Rancho El Casco Airport", + "latitude_deg": "22.725316", + "longitude_deg": "-98.546365", + "elevation_ft": "167", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Gonzalez", + "scheduled_service": "no", + "local_code": "ASO" + }, + { + "id": "349152", + "ident": "MX-1791", + "type": "small_airport", + "name": "Tonala Airport", + "latitude_deg": "15.955408", + "longitude_deg": "-93.792998", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Tonala", + "scheduled_service": "no", + "local_code": "ATG" + }, + { + "id": "349158", + "ident": "MX-1792", + "type": "closed", + "name": "El Azulejo Airfield", + "latitude_deg": "27.985495", + "longitude_deg": "-100.372719", + "elevation_ft": "853", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Guerrero", + "scheduled_service": "no", + "local_code": "AZU" + }, + { + "id": "349159", + "ident": "MX-1793", + "type": "small_airport", + "name": "Babunica Airstrip", + "latitude_deg": "25.559193", + "longitude_deg": "-107.311752", + "elevation_ft": "2297", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Babunica", + "scheduled_service": "no", + "local_code": "BAU" + }, + { + "id": "349161", + "ident": "MX-1794", + "type": "seaplane_base", + "name": "Bahia Mujeres Seaplane Base", + "latitude_deg": "21.220612", + "longitude_deg": "-86.800697", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Isla Mujeres", + "scheduled_service": "no", + "local_code": "BMS" + }, + { + "id": "349162", + "ident": "MX-1795", + "type": "small_airport", + "name": "Club de Aviones Ultraligeros de Hermosillo Airstrip", + "latitude_deg": "28.837706", + "longitude_deg": "-111.048462", + "elevation_ft": "669", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Hermosillo", + "scheduled_service": "no", + "local_code": "CAG" + }, + { + "id": "349184", + "ident": "MX-1796", + "type": "small_airport", + "name": "Isla Juana Ramirez Airstrip", + "latitude_deg": "21.843664", + "longitude_deg": "-97.690161", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Ozuluama de Mascareñas", + "scheduled_service": "no", + "local_code": "IJR" + }, + { + "id": "349185", + "ident": "MX-1797", + "type": "heliport", + "name": "C5i Hidalgo Heliport", + "latitude_deg": "20.008017", + "longitude_deg": "-98.819806", + "elevation_ft": "7726", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-HID", + "municipality": "Zapotlan de Juarez", + "scheduled_service": "no", + "local_code": "HUL" + }, + { + "id": "349186", + "ident": "MX-1798", + "type": "heliport", + "name": "Hospital IMSS Tapachula Helipad.", + "latitude_deg": "14.911269", + "longitude_deg": "-92.275994", + "elevation_ft": "633", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Tapachula", + "scheduled_service": "no", + "local_code": "HUT" + }, + { + "id": "349187", + "ident": "MX-1799", + "type": "small_airport", + "name": "La Gorriona Airstrip", + "latitude_deg": "28.320022", + "longitude_deg": "-102.136846", + "elevation_ft": "4150", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "San Buenaventura", + "scheduled_service": "no", + "local_code": "LGN" + }, + { + "id": "349188", + "ident": "MX-1800", + "type": "small_airport", + "name": "Rancho El Huarache Airport", + "latitude_deg": "25.244812", + "longitude_deg": "-99.774474", + "elevation_ft": "1204", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Montemorelos", + "scheduled_service": "no", + "local_code": "REH" + }, + { + "id": "349189", + "ident": "MX-1801", + "type": "heliport", + "name": "Imperial Heliport", + "latitude_deg": "18.927149", + "longitude_deg": "-98.93366", + "elevation_ft": "5082", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MOR", + "municipality": "Atlatlahucan", + "scheduled_service": "no", + "local_code": "HOJ" + }, + { + "id": "349191", + "ident": "MX-1802", + "type": "heliport", + "name": "Hangar Heliport", + "latitude_deg": "19.03997", + "longitude_deg": "-96.132367", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Medellin de Bravo", + "scheduled_service": "no", + "local_code": "HNJ" + }, + { + "id": "349192", + "ident": "MX-1803", + "type": "small_airport", + "name": "El Potrero Aitport", + "latitude_deg": "24.943009", + "longitude_deg": "-107.05106", + "elevation_ft": "873", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacán", + "scheduled_service": "no", + "local_code": "PRO" + }, + { + "id": "349193", + "ident": "MX-1804", + "type": "small_airport", + "name": "Santa Rosa de Vizcaino Airstrip", + "latitude_deg": "27.626338", + "longitude_deg": "-113.345969", + "elevation_ft": "272", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulege", + "scheduled_service": "no", + "local_code": "SRV" + }, + { + "id": "349194", + "ident": "MX-1805", + "type": "heliport", + "name": "Rancho San Ramon Heliport", + "latitude_deg": "19.73076", + "longitude_deg": "-99.152813", + "elevation_ft": "7382", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Teoloyucan", + "scheduled_service": "no", + "local_code": "HSB" + }, + { + "id": "349195", + "ident": "MX-1806", + "type": "small_airport", + "name": "Huixiopa Airstrip", + "latitude_deg": "25.757344", + "longitude_deg": "-107.185804", + "elevation_ft": "2920", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "XIP" + }, + { + "id": "349196", + "ident": "MX-1807", + "type": "heliport", + "name": "Texcalucan Heliport", + "latitude_deg": "19.410416", + "longitude_deg": "-99.306563", + "elevation_ft": "8346", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Texcalucan", + "scheduled_service": "no", + "local_code": "HVH" + }, + { + "id": "349217", + "ident": "MX-1808", + "type": "small_airport", + "name": "Colorado Airstrip", + "latitude_deg": "28.694484", + "longitude_deg": "-101.197386", + "elevation_ft": "1575", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Piedras Negras", + "scheduled_service": "no", + "local_code": "CDQ" + }, + { + "id": "349218", + "ident": "MX-1809", + "type": "small_airport", + "name": "Cienega del Toro Airstrip", + "latitude_deg": "25.09821", + "longitude_deg": "-100.31456", + "elevation_ft": "7054", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Galeana", + "scheduled_service": "no", + "local_code": "CDT" + }, + { + "id": "349219", + "ident": "MX-1810", + "type": "small_airport", + "name": "Cerro de Enmedio Airstrip", + "latitude_deg": "25.296396", + "longitude_deg": "-100.782166", + "elevation_ft": "6693", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Arteaga", + "scheduled_service": "no", + "local_code": "CDW" + }, + { + "id": "349220", + "ident": "MX-1811", + "type": "closed", + "name": "Copa de Oro Airstrip", + "latitude_deg": "23.024389", + "longitude_deg": "-97.832533", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Villa Aldama", + "scheduled_service": "no", + "local_code": "CDX", + "keywords": "CDX" + }, + { + "id": "349221", + "ident": "MX-1812", + "type": "small_airport", + "name": "Cadereyta Airport", + "latitude_deg": "20.729606", + "longitude_deg": "-99.777929", + "elevation_ft": "6890", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-QUE", + "municipality": "Cadereyta de Montes", + "scheduled_service": "no", + "local_code": "CDY" + }, + { + "id": "349232", + "ident": "MX-1813", + "type": "small_airport", + "name": "La Cienega Airstrip", + "latitude_deg": "25.776629", + "longitude_deg": "-107.423061", + "elevation_ft": "5423", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "CIM" + }, + { + "id": "349234", + "ident": "MX-1814", + "type": "small_airport", + "name": "La Ciruelilla Airstrip", + "latitude_deg": "21.541454", + "longitude_deg": "-103.970135", + "elevation_ft": "6890", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "La Yesca", + "scheduled_service": "no", + "local_code": "CIR" + }, + { + "id": "349235", + "ident": "MX-1815", + "type": "small_airport", + "name": "Cienega de Los Beltrán Airstrip", + "latitude_deg": "24.625094", + "longitude_deg": "-106.304483", + "elevation_ft": "2400", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "CNB" + }, + { + "id": "349369", + "ident": "MX-1816", + "type": "small_airport", + "name": "La Pitahayita Airport", + "latitude_deg": "25.68989", + "longitude_deg": "-107.37298", + "elevation_ft": "3304", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no" + }, + { + "id": "349377", + "ident": "MX-1817", + "type": "closed", + "name": "Otra Banda de Badiraguato Airport", + "latitude_deg": "25.35793", + "longitude_deg": "-107.54599", + "elevation_ft": "669", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no" + }, + { + "id": "349378", + "ident": "MX-1818", + "type": "small_airport", + "name": "Maturipa Airport", + "latitude_deg": "25.44777", + "longitude_deg": "-107.29931", + "elevation_ft": "1814", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no" + }, + { + "id": "349379", + "ident": "MX-1819", + "type": "small_airport", + "name": "Las Mesas de la Concepcion Airport", + "latitude_deg": "25.3328", + "longitude_deg": "-106.90743", + "elevation_ft": "3904", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no" + }, + { + "id": "349380", + "ident": "MX-1820", + "type": "small_airport", + "name": "La Haciendita Airport", + "latitude_deg": "25.33258", + "longitude_deg": "-106.90471", + "elevation_ft": "3776", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no" + }, + { + "id": "349381", + "ident": "MX-1821", + "type": "small_airport", + "name": "San Dario Airport", + "latitude_deg": "25.3841", + "longitude_deg": "-106.92655", + "elevation_ft": "6650", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no" + }, + { + "id": "349382", + "ident": "MX-1822", + "type": "small_airport", + "name": "La Mesa de Las Milpas Airport", + "latitude_deg": "25.45521", + "longitude_deg": "-106.83514", + "elevation_ft": "8259", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no" + }, + { + "id": "349383", + "ident": "MX-1823", + "type": "small_airport", + "name": "La Joyita Airport", + "latitude_deg": "25.4736", + "longitude_deg": "-106.85053", + "elevation_ft": "8673", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no" + }, + { + "id": "349384", + "ident": "MX-1824", + "type": "small_airport", + "name": "El Filtro Airport", + "latitude_deg": "25.15305", + "longitude_deg": "-107.02975", + "elevation_ft": "2677", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no" + }, + { + "id": "349385", + "ident": "MX-1825", + "type": "small_airport", + "name": "Potrerillo Airport", + "latitude_deg": "25.15593", + "longitude_deg": "-107.03619", + "elevation_ft": "2807", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no" + }, + { + "id": "349386", + "ident": "MX-1826", + "type": "small_airport", + "name": "El Platanar Airport", + "latitude_deg": "25.12705", + "longitude_deg": "-107.01085", + "elevation_ft": "2524", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no" + }, + { + "id": "349387", + "ident": "MX-1827", + "type": "small_airport", + "name": "Portezuelo Airport", + "latitude_deg": "25.10079", + "longitude_deg": "-107.00946", + "elevation_ft": "1638", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "POU" + }, + { + "id": "349388", + "ident": "MX-1828", + "type": "small_airport", + "name": "El Muerto Airport", + "latitude_deg": "25.09069", + "longitude_deg": "-106.95379", + "elevation_ft": "1892", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no" + }, + { + "id": "349389", + "ident": "MX-1829", + "type": "small_airport", + "name": "Los Vasitos Airport", + "latitude_deg": "25.131", + "longitude_deg": "-106.93247", + "elevation_ft": "2090", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no" + }, + { + "id": "349390", + "ident": "MX-1830", + "type": "small_airport", + "name": "Los de Diarte Airport", + "latitude_deg": "25.14011", + "longitude_deg": "-106.85146", + "elevation_ft": "2104", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no" + }, + { + "id": "349391", + "ident": "MX-1831", + "type": "closed", + "name": "Arroyo Potrerillos Airport", + "latitude_deg": "25.1468", + "longitude_deg": "-106.86655", + "elevation_ft": "2213", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no" + }, + { + "id": "349392", + "ident": "MX-1832", + "type": "small_airport", + "name": "Cerro La Lobera Airport", + "latitude_deg": "25.05588", + "longitude_deg": "-106.93064", + "elevation_ft": "2909", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no" + }, + { + "id": "349393", + "ident": "MX-1833", + "type": "small_airport", + "name": "Amacuable Airport", + "latitude_deg": "25.03294", + "longitude_deg": "-106.89623", + "elevation_ft": "1358", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no" + }, + { + "id": "349394", + "ident": "MX-1834", + "type": "small_airport", + "name": "Tamazula de Victoria North Airport", + "latitude_deg": "24.97034", + "longitude_deg": "-106.9507", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no" + }, + { + "id": "349395", + "ident": "MX-1835", + "type": "small_airport", + "name": "Las Milpas Airport", + "latitude_deg": "24.88844", + "longitude_deg": "-107.04868", + "elevation_ft": "586", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacán", + "scheduled_service": "no" + }, + { + "id": "349396", + "ident": "MX-1836", + "type": "small_airport", + "name": "Agua Blanca Airport", + "latitude_deg": "24.90188", + "longitude_deg": "-107.30464", + "elevation_ft": "331", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacán", + "scheduled_service": "no" + }, + { + "id": "349566", + "ident": "MX-1837", + "type": "small_airport", + "name": "Miramar Airport", + "latitude_deg": "23.554035", + "longitude_deg": "-97.799445", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "MIA" + }, + { + "id": "349567", + "ident": "MX-1838", + "type": "small_airport", + "name": "El Milagro de San Jose Airstrip", + "latitude_deg": "24.617174", + "longitude_deg": "-107.508044", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "MIZ" + }, + { + "id": "349568", + "ident": "MX-1839", + "type": "small_airport", + "name": "Los Miles Airstrip", + "latitude_deg": "23.04769", + "longitude_deg": "-97.794596", + "elevation_ft": "249", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Aldama", + "scheduled_service": "no", + "local_code": "MLT" + }, + { + "id": "349571", + "ident": "MX-1840", + "type": "small_airport", + "name": "Matarachi Airport", + "latitude_deg": "28.677222", + "longitude_deg": "-108.825722", + "elevation_ft": "5249", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Sahuaripa", + "scheduled_service": "no", + "local_code": "MRA" + }, + { + "id": "349572", + "ident": "MX-1841", + "type": "small_airport", + "name": "Mesa del Frijol Airport", + "latitude_deg": "26.309614", + "longitude_deg": "-107.913017", + "elevation_ft": "5384", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Sinaloa de Leyva", + "scheduled_service": "no", + "local_code": "MSF" + }, + { + "id": "349587", + "ident": "MX-1842", + "type": "small_airport", + "name": "El Mixteco Airstrip", + "latitude_deg": "25.676646", + "longitude_deg": "-108.742606", + "elevation_ft": "112", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "MXT" + }, + { + "id": "349588", + "ident": "MX-1843", + "type": "small_airport", + "name": "Los Nogales Airfield", + "latitude_deg": "29.66785", + "longitude_deg": "-107.127167", + "elevation_ft": "6201", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "San Buenaventura", + "scheduled_service": "no", + "local_code": "NGS" + }, + { + "id": "349589", + "ident": "MX-1844", + "type": "small_airport", + "name": "Ojito de Camellones Airport", + "latitude_deg": "25.055055", + "longitude_deg": "-106.210939", + "elevation_ft": "7808", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Canelas", + "scheduled_service": "no", + "local_code": "OJC" + }, + { + "id": "349590", + "ident": "MX-1845", + "type": "small_airport", + "name": "Pericos Airport", + "latitude_deg": "25.064939", + "longitude_deg": "-107.722664", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Mocorito", + "scheduled_service": "no", + "local_code": "PCS" + }, + { + "id": "349604", + "ident": "MX-1846", + "type": "small_airport", + "name": "Pista Elizalde", + "latitude_deg": "25.678212", + "longitude_deg": "-108.815728", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "PEE" + }, + { + "id": "349605", + "ident": "MX-1847", + "type": "closed", + "name": "Del Pacifico Airport", + "latitude_deg": "25.607219", + "longitude_deg": "-108.585681", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "PGS", + "keywords": "PGS" + }, + { + "id": "349606", + "ident": "MX-1848", + "type": "small_airport", + "name": "Piedra de Cal Airport", + "latitude_deg": "21.56654", + "longitude_deg": "-98.113017", + "elevation_ft": "259", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Tantoyucan", + "scheduled_service": "no", + "local_code": "PIE" + }, + { + "id": "349607", + "ident": "MX-1849", + "type": "small_airport", + "name": "Picacho Airport", + "latitude_deg": "25.96663", + "longitude_deg": "-107.389072", + "elevation_ft": "2756", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "PKC", + "keywords": "San Javier" + }, + { + "id": "349608", + "ident": "MX-1850", + "type": "small_airport", + "name": "Potrero del Mascabresto Airstrip", + "latitude_deg": "24.719244", + "longitude_deg": "-106.552405", + "elevation_ft": "2566", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "PMT" + }, + { + "id": "349609", + "ident": "MX-1851", + "type": "small_airport", + "name": "Popota Airstrip", + "latitude_deg": "21.516283", + "longitude_deg": "-103.893671", + "elevation_ft": "3473", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "La Yesca", + "scheduled_service": "no", + "local_code": "POT" + }, + { + "id": "349623", + "ident": "MX-1852", + "type": "closed", + "name": "La Peña Airport", + "latitude_deg": "29.547202", + "longitude_deg": "-102.52048", + "elevation_ft": "3061", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "349629", + "ident": "MX-1853", + "type": "closed", + "name": "Lomas de Tomás Airport", + "latitude_deg": "29.79235", + "longitude_deg": "-102.3126", + "elevation_ft": "2533", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "349630", + "ident": "MX-1854", + "type": "closed", + "name": "La Chulita Airport", + "latitude_deg": "29.80654", + "longitude_deg": "-102.28377", + "elevation_ft": "2808", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "349631", + "ident": "MX-1855", + "type": "small_airport", + "name": "La Reforma Airport", + "latitude_deg": "29.69011", + "longitude_deg": "-101.88124", + "elevation_ft": "1893", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "349632", + "ident": "MX-1856", + "type": "closed", + "name": "Llano de los Buras Airport", + "latitude_deg": "29.49826", + "longitude_deg": "-102.49912", + "elevation_ft": "3066", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "349633", + "ident": "MX-1857", + "type": "closed", + "name": "Las Norias Airport", + "latitude_deg": "29.22489", + "longitude_deg": "-102.35962", + "elevation_ft": "3366", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "349634", + "ident": "MX-1858", + "type": "closed", + "name": "Venustiano Carranza Airport", + "latitude_deg": "29.19718", + "longitude_deg": "-102.41265", + "elevation_ft": "3422", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "349704", + "ident": "MX-1859", + "type": "small_airport", + "name": "El Cangrejal Airstrip", + "latitude_deg": "23.702131", + "longitude_deg": "-97.788185", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Soto La Marina", + "scheduled_service": "no", + "local_code": "RCJ" + }, + { + "id": "349705", + "ident": "MX-1860", + "type": "small_airport", + "name": "Rancho El Comandante Airport", + "latitude_deg": "28.475278", + "longitude_deg": "-101.823333", + "elevation_ft": "2116", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Muzquiz", + "scheduled_service": "no", + "local_code": "RCT" + }, + { + "id": "349706", + "ident": "MX-1861", + "type": "small_airport", + "name": "Rancho de Luna Airstrip", + "latitude_deg": "26.083189", + "longitude_deg": "-107.319056", + "elevation_ft": "4921", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "RDU" + }, + { + "id": "349710", + "ident": "MX-1862", + "type": "small_airport", + "name": "Rancho Viejo Airstrip", + "latitude_deg": "26.0304", + "longitude_deg": "-107.210898", + "elevation_ft": "2953", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "RJD" + }, + { + "id": "349711", + "ident": "MX-1863", + "type": "small_airport", + "name": "Las Norias Airstrip", + "latitude_deg": "27.760286", + "longitude_deg": "-101.763367", + "elevation_ft": "3287", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Buenaventura", + "scheduled_service": "no", + "local_code": "RLQ" + }, + { + "id": "349716", + "ident": "MX-1864", + "type": "small_airport", + "name": "Rancho Puerto Angel Airstrip", + "latitude_deg": "27.921162", + "longitude_deg": "-100.841217", + "elevation_ft": "1706", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Villa Union", + "scheduled_service": "no", + "local_code": "RNF" + }, + { + "id": "349717", + "ident": "MX-1865", + "type": "small_airport", + "name": "Rancho Santo Niño Airstrip", + "latitude_deg": "27.683069", + "longitude_deg": "-102.231972", + "elevation_ft": "5430", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ocampo", + "scheduled_service": "no", + "local_code": "RNS" + }, + { + "id": "349718", + "ident": "MX-1866", + "type": "small_airport", + "name": "Rancho Santa Ana Airstrip", + "latitude_deg": "28.873727", + "longitude_deg": "-105.912677", + "elevation_ft": "4127", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Aldama", + "scheduled_service": "no", + "local_code": "RNT" + }, + { + "id": "349743", + "ident": "MX-1867", + "type": "small_airport", + "name": "Santo Domingo Airstrip", + "latitude_deg": "26.128244", + "longitude_deg": "-107.153862", + "elevation_ft": "3253", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "SDM" + }, + { + "id": "349750", + "ident": "MX-1868", + "type": "small_airport", + "name": "Santo Domingo Airstrip", + "latitude_deg": "30.4636", + "longitude_deg": "-110.534775", + "elevation_ft": "3560", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cucurpe", + "scheduled_service": "no", + "local_code": "SGU" + }, + { + "id": "349751", + "ident": "MX-1869", + "type": "small_airport", + "name": "San Gregorio Airstrip", + "latitude_deg": "24.841259", + "longitude_deg": "-106.193665", + "elevation_ft": "1998", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Santiago Papasquiaro", + "scheduled_service": "no", + "local_code": "SGR" + }, + { + "id": "349752", + "ident": "MX-1870", + "type": "small_airport", + "name": "Sierrita Airstrip", + "latitude_deg": "25.251246", + "longitude_deg": "-106.910716", + "elevation_ft": "3350", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "SIE", + "keywords": "La Pista" + }, + { + "id": "349790", + "ident": "MX-1871", + "type": "small_airport", + "name": "San Juan de Frailes Airstrip", + "latitude_deg": "24.663994", + "longitude_deg": "-106.403664", + "elevation_ft": "1941", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "SJF" + }, + { + "id": "349848", + "ident": "MX-1872", + "type": "closed", + "name": "Rancho San Vicente Airport", + "latitude_deg": "27.72545", + "longitude_deg": "-100.04792", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Hidalgo", + "scheduled_service": "no" + }, + { + "id": "349849", + "ident": "MX-1873", + "type": "small_airport", + "name": "Los Tiernos Airport", + "latitude_deg": "28.02308", + "longitude_deg": "-100.0179", + "elevation_ft": "553", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Hidalgo", + "scheduled_service": "no" + }, + { + "id": "349994", + "ident": "MX-1874", + "type": "small_airport", + "name": "Santa Maria Airport", + "latitude_deg": "25.515518", + "longitude_deg": "-108.318125", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "STH" + }, + { + "id": "349995", + "ident": "MX-1875", + "type": "small_airport", + "name": "Santa Rosa Airstrip", + "latitude_deg": "26.41539", + "longitude_deg": "-107.924957", + "elevation_ft": "3630", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Morelos", + "scheduled_service": "no", + "local_code": "STR" + }, + { + "id": "349996", + "ident": "MX-1876", + "type": "small_airport", + "name": "Santa Maria de Los Remedios Airstrip", + "latitude_deg": "24.554546", + "longitude_deg": "-106.255386", + "elevation_ft": "4144", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "STV" + }, + { + "id": "349997", + "ident": "MX-1877", + "type": "small_airport", + "name": "Tameapa Airport", + "latitude_deg": "25.649322", + "longitude_deg": "-107.381347", + "elevation_ft": "3678", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "TAQ" + }, + { + "id": "349998", + "ident": "MX-1878", + "type": "small_airport", + "name": "Tecuixiapa Airstrip", + "latitude_deg": "25.853054", + "longitude_deg": "-107.384566", + "elevation_ft": "1893", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Badiraguato", + "scheduled_service": "no", + "local_code": "TCS" + }, + { + "id": "349999", + "ident": "MX-1879", + "type": "heliport", + "name": "Unitec Campus Atizapán Heliport", + "latitude_deg": "19.546657", + "longitude_deg": "-99.242168", + "elevation_ft": "7578", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Atizapán de Zaragoza", + "scheduled_service": "no", + "local_code": "UCA" + }, + { + "id": "350000", + "ident": "MX-1880", + "type": "small_airport", + "name": "Huerta 7433 Airstrip", + "latitude_deg": "28.885564", + "longitude_deg": "-105.44305", + "elevation_ft": "3533", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Aldama", + "scheduled_service": "no", + "local_code": "UER" + }, + { + "id": "350003", + "ident": "MX-1881", + "type": "small_airport", + "name": "Valle de Tapachula Airport", + "latitude_deg": "14.7267", + "longitude_deg": "-92.306775", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Tapachula", + "scheduled_service": "no", + "local_code": "VTP" + }, + { + "id": "350006", + "ident": "MX-1882", + "type": "closed", + "name": "Xpujil Airstrip", + "latitude_deg": "17.787941", + "longitude_deg": "-95.863137", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-VER", + "municipality": "Playa Vicente", + "scheduled_service": "no", + "local_code": "XLS", + "keywords": "XLS" + }, + { + "id": "350007", + "ident": "MX-1883", + "type": "small_airport", + "name": "Yoquivo Airport", + "latitude_deg": "27.014287", + "longitude_deg": "-107.535199", + "elevation_ft": "6791", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Batopilas", + "scheduled_service": "no", + "local_code": "YOQ" + }, + { + "id": "350008", + "ident": "MX-1884", + "type": "heliport", + "name": "Tepic Heliport", + "latitude_deg": "21.473444", + "longitude_deg": "-104.854973", + "elevation_ft": "3012", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NAY", + "municipality": "Tepic", + "scheduled_service": "no" + }, + { + "id": "350010", + "ident": "MX-1885", + "type": "small_airport", + "name": "Carrizal Airport", + "latitude_deg": "23.711476", + "longitude_deg": "-110.287575", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no", + "local_code": "CRM" + }, + { + "id": "350011", + "ident": "MX-1886", + "type": "small_airport", + "name": "El Carrizo de La Petaca Airstrip", + "latitude_deg": "24.681932", + "longitude_deg": "-106.319869", + "elevation_ft": "4321", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Tamazula", + "scheduled_service": "no", + "local_code": "CRP" + }, + { + "id": "350012", + "ident": "MX-1887", + "type": "small_airport", + "name": "El Corral Falso Airstrip", + "latitude_deg": "25.851152", + "longitude_deg": "-107.628089", + "elevation_ft": "4757", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Sinaloa de Leyva", + "scheduled_service": "no", + "local_code": "CRR" + }, + { + "id": "350013", + "ident": "MX-1888", + "type": "small_airport", + "name": "Camposanto Airport", + "latitude_deg": "24.600675", + "longitude_deg": "-107.200692", + "elevation_ft": "318", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Culiacan", + "scheduled_service": "no", + "local_code": "CST" + }, + { + "id": "350018", + "ident": "MX-1889", + "type": "small_airport", + "name": "Cienega de Silva Airport", + "latitude_deg": "25.855642", + "longitude_deg": "-107.152416", + "elevation_ft": "4478", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe y Calvo", + "scheduled_service": "no", + "local_code": "CSY" + }, + { + "id": "350019", + "ident": "MX-1890", + "type": "small_airport", + "name": "Chino de Los Lopez Airport", + "latitude_deg": "25.499744", + "longitude_deg": "-108.419523", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "Guasave", + "scheduled_service": "no", + "local_code": "CSZ" + }, + { + "id": "350020", + "ident": "MX-1891", + "type": "small_airport", + "name": "Coyotes Airport", + "latitude_deg": "23.864117", + "longitude_deg": "-105.309126", + "elevation_ft": "7200", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Pueblo Nuevo", + "scheduled_service": "no", + "local_code": "CYS" + }, + { + "id": "350021", + "ident": "MX-1892", + "type": "small_airport", + "name": "Dolores Airport", + "latitude_deg": "25.305214", + "longitude_deg": "-104.133339", + "elevation_ft": "4242", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Nazas", + "scheduled_service": "no", + "local_code": "DLS" + }, + { + "id": "350064", + "ident": "MX-1893", + "type": "small_airport", + "name": "La Herradura Airport", + "latitude_deg": "29.7253", + "longitude_deg": "-101.6886", + "elevation_ft": "1368", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "350065", + "ident": "MX-1894", + "type": "heliport", + "name": "El Centinela Military Checkpoint Heliport", + "latitude_deg": "32.56754", + "longitude_deg": "-115.9359", + "elevation_ft": "856", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Tecate", + "scheduled_service": "no" + }, + { + "id": "350066", + "ident": "MX-1895", + "type": "heliport", + "name": "San Ignacio Military Checkpoint Heliport", + "latitude_deg": "27.29003", + "longitude_deg": "-112.92921", + "elevation_ft": "564", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no" + }, + { + "id": "350067", + "ident": "MX-1896", + "type": "heliport", + "name": "Zacatecas Military Checkpoint Heliport", + "latitude_deg": "22.73285", + "longitude_deg": "-102.34156", + "elevation_ft": "7056", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ZAC", + "municipality": "Trancoso", + "scheduled_service": "no" + }, + { + "id": "350068", + "ident": "MX-1897", + "type": "heliport", + "name": "Samalayuca Military Checkpoint Heliport", + "latitude_deg": "31.30323", + "longitude_deg": "-106.49412", + "elevation_ft": "4210", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ciudad Juárez", + "scheduled_service": "no" + }, + { + "id": "350069", + "ident": "MX-1898", + "type": "heliport", + "name": "El Doctor Vehicle Inspection Station Heliport", + "latitude_deg": "31.9605", + "longitude_deg": "-114.7445", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "San Luis Río Colorado", + "scheduled_service": "no" + }, + { + "id": "350096", + "ident": "MX-1899", + "type": "closed", + "name": "Playa Bagdad Airport", + "latitude_deg": "25.80273", + "longitude_deg": "-97.19772", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Matamoros", + "scheduled_service": "no" + }, + { + "id": "350246", + "ident": "MX-1900", + "type": "heliport", + "name": "La Coma Military Heliport", + "latitude_deg": "24.51847", + "longitude_deg": "-98.31579", + "elevation_ft": "545", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Cruillas", + "scheduled_service": "no" + }, + { + "id": "350407", + "ident": "MX-1901", + "type": "heliport", + "name": "Rodolfo Torre Cantu Heliport", + "latitude_deg": "26.32507", + "longitude_deg": "-98.83083", + "elevation_ft": "167", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Ciudad Camargo", + "scheduled_service": "no" + }, + { + "id": "350430", + "ident": "MX-1902", + "type": "small_airport", + "name": "El Coyote Airstrip", + "latitude_deg": "28.915699", + "longitude_deg": "-105.859146", + "elevation_ft": "4068", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Aldama", + "scheduled_service": "no", + "local_code": "ECX" + }, + { + "id": "350431", + "ident": "MX-1903", + "type": "small_airport", + "name": "El Llano de La Vega del Oso Airstrip", + "latitude_deg": "25.339643", + "longitude_deg": "-106.737113", + "elevation_ft": "2198", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Topia", + "scheduled_service": "no", + "local_code": "EDO" + }, + { + "id": "350432", + "ident": "MX-1904", + "type": "small_airport", + "name": "Ejido Oaxaca Airstrip", + "latitude_deg": "32.33229", + "longitude_deg": "-115.19002", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no", + "local_code": "EJO" + }, + { + "id": "350434", + "ident": "MX-1905", + "type": "small_airport", + "name": "El Rodriguez Airport", + "latitude_deg": "28.239126", + "longitude_deg": "-109.994774", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cajeme", + "scheduled_service": "no", + "local_code": "ERZ" + }, + { + "id": "350440", + "ident": "MX-1906", + "type": "small_airport", + "name": "El Carrizo Airstrip.", + "latitude_deg": "24.122501", + "longitude_deg": "-106.118338", + "elevation_ft": "4003", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SIN", + "municipality": "San Ignacio", + "scheduled_service": "no" + }, + { + "id": "350441", + "ident": "MX-1907", + "type": "heliport", + "name": "Casa Blanca Heliport", + "latitude_deg": "19.600365", + "longitude_deg": "-87.413138", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Felipe Carrillo Puerto", + "scheduled_service": "no", + "local_code": "HBS" + }, + { + "id": "350752", + "ident": "MX-1908", + "type": "closed", + "name": "Las Flores Airport", + "latitude_deg": "29.82759", + "longitude_deg": "-102.23236", + "elevation_ft": "1588", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "350753", + "ident": "MX-1909", + "type": "closed", + "name": "La Leona Airport", + "latitude_deg": "29.82672", + "longitude_deg": "-102.27381", + "elevation_ft": "2234", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "351403", + "ident": "MX-1910", + "type": "heliport", + "name": "La Cascada Heliport", + "latitude_deg": "20.504461", + "longitude_deg": "-105.241417", + "elevation_ft": "4068", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Puerto Vallarta", + "scheduled_service": "no", + "local_code": "HKD" + }, + { + "id": "351409", + "ident": "MX-1911", + "type": "heliport", + "name": "Torre Aleph Helipad", + "latitude_deg": "19.339117", + "longitude_deg": "-99.190798", + "elevation_ft": "7969", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Alvaro Obregon", + "scheduled_service": "no", + "local_code": "HLQ" + }, + { + "id": "351410", + "ident": "MX-1912", + "type": "heliport", + "name": "Torre Lomas Helipad", + "latitude_deg": "19.428518", + "longitude_deg": "-99.216059", + "elevation_ft": "7372", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Torre Lomas", + "scheduled_service": "no", + "local_code": "HLT" + }, + { + "id": "351417", + "ident": "MX-1913", + "type": "heliport", + "name": "Moliere 222 Helipad", + "latitude_deg": "19.435084", + "longitude_deg": "-99.202804", + "elevation_ft": "7352", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HME" + }, + { + "id": "351421", + "ident": "MX-1914", + "type": "heliport", + "name": "Embarcadero Heliport", + "latitude_deg": "21.144041", + "longitude_deg": "-86.788334", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Cancún", + "scheduled_service": "no", + "local_code": "HMG", + "keywords": "HMB" + }, + { + "id": "351424", + "ident": "MX-1915", + "type": "heliport", + "name": "Moliere 222 I Helipad", + "latitude_deg": "19.43562", + "longitude_deg": "-99.202423", + "elevation_ft": "7543", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DIF", + "municipality": "Miguel Hidalgo", + "scheduled_service": "no", + "local_code": "HMN" + }, + { + "id": "351550", + "ident": "MX-1916", + "type": "heliport", + "name": "Rancho Azul Heliport", + "latitude_deg": "19.72535", + "longitude_deg": "-98.943714", + "elevation_ft": "7438", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MEX", + "municipality": "Tecámac", + "scheduled_service": "no", + "local_code": "HOG" + }, + { + "id": "352599", + "ident": "MX-1917", + "type": "closed", + "name": "Jaboncillos Airport", + "latitude_deg": "28.96752", + "longitude_deg": "-102.8102", + "elevation_ft": "2874", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "352600", + "ident": "MX-1918", + "type": "closed", + "name": "Arroyo Nopaloso Airport", + "latitude_deg": "28.97143", + "longitude_deg": "-102.79432", + "elevation_ft": "2994", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "352601", + "ident": "MX-1919", + "type": "closed", + "name": "Arroyo La Presa Airport", + "latitude_deg": "28.96482", + "longitude_deg": "-102.79342", + "elevation_ft": "2997", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "352761", + "ident": "MX-1920", + "type": "closed", + "name": "La Paloma Airport", + "latitude_deg": "30.76085", + "longitude_deg": "-109.59401", + "elevation_ft": "3939", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Fronteras", + "scheduled_service": "no" + }, + { + "id": "352763", + "ident": "MX-1921", + "type": "heliport", + "name": "Juan María de Salvatierra Hospital Heliport", + "latitude_deg": "24.111294", + "longitude_deg": "-110.319069", + "elevation_ft": "61", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Paz", + "scheduled_service": "no", + "local_code": "HJR" + }, + { + "id": "352772", + "ident": "MX-1922", + "type": "heliport", + "name": "Torre Citadel Helipad", + "latitude_deg": "20.717509", + "longitude_deg": "-103.423346", + "elevation_ft": "5689", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-JAL", + "municipality": "Zapopan", + "scheduled_service": "no", + "local_code": "HCT" + }, + { + "id": "352777", + "ident": "MX-1923", + "type": "closed", + "name": "Rancho Palomino Airport", + "latitude_deg": "30.53232", + "longitude_deg": "-105.20645", + "elevation_ft": "3957", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Guadalupe", + "scheduled_service": "no" + }, + { + "id": "352778", + "ident": "MX-1924", + "type": "closed", + "name": "El Coyote Airport", + "latitude_deg": "30.42907", + "longitude_deg": "-105.11994", + "elevation_ft": "3769", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Coyame del Sotol", + "scheduled_service": "no" + }, + { + "id": "352779", + "ident": "MX-1925", + "type": "closed", + "name": "El Cuervo Airport", + "latitude_deg": "30.23888", + "longitude_deg": "-105.1373", + "elevation_ft": "3796", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Coyame del Sotol", + "scheduled_service": "no" + }, + { + "id": "352780", + "ident": "MX-1926", + "type": "closed", + "name": "Rancho El Cuatraldo Airport", + "latitude_deg": "30.13661", + "longitude_deg": "-104.93969", + "elevation_ft": "4104", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Coyame del Sotol", + "scheduled_service": "no" + }, + { + "id": "352851", + "ident": "MX-1927", + "type": "small_airport", + "name": "Alfa Estrella Airport", + "latitude_deg": "30.70349", + "longitude_deg": "-112.98299", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Caborca", + "scheduled_service": "no" + }, + { + "id": "352852", + "ident": "MX-1928", + "type": "closed", + "name": "Bamori Airport", + "latitude_deg": "30.86179", + "longitude_deg": "-111.78461", + "elevation_ft": "1745", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Oquitoa", + "scheduled_service": "no" + }, + { + "id": "352930", + "ident": "MX-1929", + "type": "closed", + "name": "Rancho Nuevo Airport", + "latitude_deg": "29.45107", + "longitude_deg": "-102.56326", + "elevation_ft": "2930", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "352931", + "ident": "MX-1930", + "type": "closed", + "name": "El Veinte (La Lupe) Airport", + "latitude_deg": "29.32174", + "longitude_deg": "-102.69688", + "elevation_ft": "2762", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "352932", + "ident": "MX-1931", + "type": "closed", + "name": "La Palma (La Noria) Airport", + "latitude_deg": "29.34345", + "longitude_deg": "-102.63913", + "elevation_ft": "3068", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "352933", + "ident": "MX-1932", + "type": "closed", + "name": "Pico Etéreo Airport", + "latitude_deg": "29.33797", + "longitude_deg": "-102.56885", + "elevation_ft": "3750", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "352934", + "ident": "MX-1933", + "type": "closed", + "name": "Mal Abrigo Airport", + "latitude_deg": "29.33022", + "longitude_deg": "-102.55469", + "elevation_ft": "3825", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "352944", + "ident": "MX-1934", + "type": "heliport", + "name": "IMSS 270 General Regional Hospital Heliport", + "latitude_deg": "25.937557", + "longitude_deg": "-98.269008", + "elevation_ft": "197", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Reynosa", + "scheduled_service": "no" + }, + { + "id": "353001", + "ident": "MX-1935", + "type": "closed", + "name": "La Comisaría (San Rosendo) Airport", + "latitude_deg": "29.62159", + "longitude_deg": "-102.55016", + "elevation_ft": "2757", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ciudad Acuña", + "scheduled_service": "no" + }, + { + "id": "353010", + "ident": "MX-1936", + "type": "closed", + "name": "Francisco I Madero Airport", + "latitude_deg": "25.08362", + "longitude_deg": "-98.9187", + "elevation_ft": "397", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Burgos", + "scheduled_service": "no" + }, + { + "id": "353059", + "ident": "MX-1937", + "type": "small_airport", + "name": "Sierra Rica Airport", + "latitude_deg": "31.77542", + "longitude_deg": "-108.14504", + "elevation_ft": "4668", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ascensión", + "scheduled_service": "no" + }, + { + "id": "353061", + "ident": "MX-1938", + "type": "closed", + "name": "Las Arcinas Airport", + "latitude_deg": "31.4303", + "longitude_deg": "-108.18394", + "elevation_ft": "4318", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ascensión", + "scheduled_service": "no" + }, + { + "id": "353062", + "ident": "MX-1939", + "type": "small_airport", + "name": "Mario Palau Airport", + "latitude_deg": "27.19286", + "longitude_deg": "-100.16312", + "elevation_ft": "636", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Anáhuac", + "scheduled_service": "no" + }, + { + "id": "353070", + "ident": "MX-1940", + "type": "small_airport", + "name": "La Mesa Airport", + "latitude_deg": "32.10598", + "longitude_deg": "-114.98503", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no" + }, + { + "id": "353071", + "ident": "MX-1941", + "type": "small_airport", + "name": "Ciudad Coahuila South Airport", + "latitude_deg": "32.167171", + "longitude_deg": "-115.003204", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Mexicali", + "scheduled_service": "no" + }, + { + "id": "353076", + "ident": "MX-1942", + "type": "closed", + "name": "La Llorona Airport", + "latitude_deg": "25.60934", + "longitude_deg": "-98.3534", + "elevation_ft": "292", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Reynosa", + "scheduled_service": "no" + }, + { + "id": "353222", + "ident": "MX-1943", + "type": "closed", + "name": "Los Barandales Airport", + "latitude_deg": "29.12782", + "longitude_deg": "-102.6808", + "elevation_ft": "5365", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ocampo", + "scheduled_service": "no" + }, + { + "id": "353223", + "ident": "MX-1944", + "type": "closed", + "name": "Río Verde (Lampazos) Airport", + "latitude_deg": "24.89877", + "longitude_deg": "-99.53638", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Linares", + "scheduled_service": "no" + }, + { + "id": "353224", + "ident": "MX-1945", + "type": "small_airport", + "name": "Ricardo Flores Magón Airport", + "latitude_deg": "29.93311", + "longitude_deg": "-106.96098", + "elevation_ft": "4896", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Buenaventura", + "scheduled_service": "no" + }, + { + "id": "353225", + "ident": "MX-1946", + "type": "closed", + "name": "San Jose Airport", + "latitude_deg": "30.4034", + "longitude_deg": "-107.95895", + "elevation_ft": "4835", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Nuevo Casas Grandes", + "scheduled_service": "no" + }, + { + "id": "353226", + "ident": "MX-1947", + "type": "small_airport", + "name": "El Tío Pancho Airport", + "latitude_deg": "30.42436", + "longitude_deg": "-107.97139", + "elevation_ft": "4662", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Nuevo Casas Grandes", + "scheduled_service": "no" + }, + { + "id": "353237", + "ident": "MX-1948", + "type": "small_airport", + "name": "Janos Airport", + "latitude_deg": "30.88384", + "longitude_deg": "-108.20734", + "elevation_ft": "4530", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Janos", + "scheduled_service": "no" + }, + { + "id": "353238", + "ident": "MX-1949", + "type": "small_airport", + "name": "Bacerac Airport", + "latitude_deg": "30.36254", + "longitude_deg": "-108.93616", + "elevation_ft": "3510", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Bacerac", + "scheduled_service": "no" + }, + { + "id": "353249", + "ident": "MX-1950", + "type": "small_airport", + "name": "Candela Airport", + "latitude_deg": "26.8551", + "longitude_deg": "-100.67149", + "elevation_ft": "1424", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Candela", + "scheduled_service": "no" + }, + { + "id": "353250", + "ident": "MX-1951", + "type": "closed", + "name": "Former Cuatrociénegas Airport", + "latitude_deg": "27.0043", + "longitude_deg": "-102.07226", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Cuatro Ciénegas de Carranza", + "scheduled_service": "no" + }, + { + "id": "353251", + "ident": "MX-1952", + "type": "closed", + "name": "Ocampo Airport", + "latitude_deg": "27.27126", + "longitude_deg": "-102.35898", + "elevation_ft": "3540", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Ocampo", + "scheduled_service": "no" + }, + { + "id": "353253", + "ident": "MX-1953", + "type": "closed", + "name": "Presa El Cinco Airport", + "latitude_deg": "24.84364", + "longitude_deg": "-99.47433", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Linares", + "scheduled_service": "no" + }, + { + "id": "353254", + "ident": "MX-1954", + "type": "closed", + "name": "Cerro Prieto Airport", + "latitude_deg": "24.91241", + "longitude_deg": "-99.38997", + "elevation_ft": "923", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Linares", + "scheduled_service": "no" + }, + { + "id": "353255", + "ident": "MX-1955", + "type": "closed", + "name": "El Toreo (Las Parras) Airport", + "latitude_deg": "24.92192", + "longitude_deg": "-99.49508", + "elevation_ft": "1004", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Linares", + "scheduled_service": "no" + }, + { + "id": "353256", + "ident": "MX-1956", + "type": "closed", + "name": "Linares Civil Airport (under construction)", + "latitude_deg": "24.93625", + "longitude_deg": "-99.55194", + "elevation_ft": "1119", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "Linares", + "scheduled_service": "no" + }, + { + "id": "353265", + "ident": "MX-1957", + "type": "closed", + "name": "El Mimbre Airport", + "latitude_deg": "26.77258", + "longitude_deg": "-100.72119", + "elevation_ft": "1670", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Candela", + "scheduled_service": "no" + }, + { + "id": "353365", + "ident": "MX-1958", + "type": "closed", + "name": "Former Cananea Airport", + "latitude_deg": "31.00059", + "longitude_deg": "-110.26546", + "elevation_ft": "5039", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cananea", + "scheduled_service": "no" + }, + { + "id": "353370", + "ident": "MX-1959", + "type": "closed", + "name": "Rancho Cerro Colorado Airport", + "latitude_deg": "30.81493", + "longitude_deg": "-110.03328", + "elevation_ft": "4093", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Bacoachi", + "scheduled_service": "no" + }, + { + "id": "353373", + "ident": "MX-1960", + "type": "small_airport", + "name": "La Gurruña Airport", + "latitude_deg": "30.59484", + "longitude_deg": "-109.86541", + "elevation_ft": "3916", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Bacoachi", + "scheduled_service": "no" + }, + { + "id": "353374", + "ident": "MX-1961", + "type": "small_airport", + "name": "Murucutachi Mine Airport", + "latitude_deg": "30.39566", + "longitude_deg": "-109.94234", + "elevation_ft": "3965", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Arizpe", + "scheduled_service": "no" + }, + { + "id": "353375", + "ident": "MX-1962", + "type": "small_airport", + "name": "Las Virginias - Campo Diez Airport", + "latitude_deg": "30.95234", + "longitude_deg": "-108.58943", + "elevation_ft": "4572", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Janos", + "scheduled_service": "no" + }, + { + "id": "353376", + "ident": "MX-1963", + "type": "small_airport", + "name": "Las Virginias - Campo Cinco Airport", + "latitude_deg": "30.92399", + "longitude_deg": "-108.62509", + "elevation_ft": "4590", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Janos", + "scheduled_service": "no" + }, + { + "id": "353377", + "ident": "MX-1964", + "type": "small_airport", + "name": "El Revolcado Airport", + "latitude_deg": "30.83094", + "longitude_deg": "-108.71402", + "elevation_ft": "4694", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Janos", + "scheduled_service": "no" + }, + { + "id": "353580", + "ident": "MX-1965", + "type": "closed", + "name": "Güinolosa Airport", + "latitude_deg": "26.94931", + "longitude_deg": "-107.90806", + "elevation_ft": "1056", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Batopilas", + "scheduled_service": "no", + "keywords": "Güinoloza" + }, + { + "id": "354476", + "ident": "MX-1966", + "type": "heliport", + "name": "ToFly7 Helipad", + "latitude_deg": "20.822324", + "longitude_deg": "-86.921146", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-YUC", + "municipality": "Cancún", + "scheduled_service": "no", + "home_link": "https://www.tofly7.com.mx/" + }, + { + "id": "354963", + "ident": "MX-1967", + "type": "closed", + "name": "Santa Clara del Castillo Airport", + "latitude_deg": "25.86624", + "longitude_deg": "-98.4509", + "elevation_ft": "407", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Reynosa", + "scheduled_service": "no" + }, + { + "id": "354976", + "ident": "MX-1968", + "type": "small_airport", + "name": "San Juanito Airport", + "latitude_deg": "25.40549", + "longitude_deg": "-98.67124", + "elevation_ft": "371", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-NLE", + "municipality": "China", + "scheduled_service": "no" + }, + { + "id": "356045", + "ident": "MX-1969", + "type": "closed", + "name": "Cucurpe Airport", + "latitude_deg": "30.33599", + "longitude_deg": "-110.72761", + "elevation_ft": "2870", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cucurpe", + "scheduled_service": "no" + }, + { + "id": "356317", + "ident": "MX-1970", + "type": "closed", + "name": "Rio Usumacinta Airstrip", + "latitude_deg": "16.813384", + "longitude_deg": "-90.871729", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Ocosingo", + "scheduled_service": "no", + "keywords": "Corozal, Echeverria" + }, + { + "id": "356319", + "ident": "MX-1971", + "type": "closed", + "name": "Agua Azul Mohogani Airstrip", + "latitude_deg": "16.762141", + "longitude_deg": "-90.795822", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Ocosingo", + "scheduled_service": "no" + }, + { + "id": "356411", + "ident": "MX-1972", + "type": "small_airport", + "name": "Fraccionamento Vergel de la Sierra Airport", + "latitude_deg": "21.40111", + "longitude_deg": "-101.65491", + "elevation_ft": "8629", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "San Felipe", + "scheduled_service": "no" + }, + { + "id": "356412", + "ident": "MX-1973", + "type": "small_airport", + "name": "El Tepozán Airport", + "latitude_deg": "20.89613", + "longitude_deg": "-101.92768", + "elevation_ft": "5817", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "San Ángel", + "scheduled_service": "no", + "keywords": "Fumigaciones Aereas San Ángel" + }, + { + "id": "356413", + "ident": "MX-1974", + "type": "closed", + "name": "Ganadería Valparaíso Airport", + "latitude_deg": "23.48372", + "longitude_deg": "-103.08849", + "elevation_ft": "7186", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ZAC", + "municipality": "Sain Alto", + "scheduled_service": "no", + "keywords": "Valparaiso Cattle Ranch, Valparaiso Ranch" + }, + { + "id": "356414", + "ident": "MX-1975", + "type": "closed", + "name": "San Francisco de Organos Airport", + "latitude_deg": "23.75413", + "longitude_deg": "-103.76388", + "elevation_ft": "7765", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ZAC", + "municipality": "San Francisco de Organos", + "scheduled_service": "no" + }, + { + "id": "356415", + "ident": "MX-1976", + "type": "closed", + "name": "Laguna El Llano Airport", + "latitude_deg": "24.24164", + "longitude_deg": "-104.43269", + "elevation_ft": "6119", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "Durango", + "scheduled_service": "no" + }, + { + "id": "356416", + "ident": "MX-1977", + "type": "small_airport", + "name": "San Juan del Río del Centauro del Norte Airport", + "latitude_deg": "24.77499", + "longitude_deg": "-104.48187", + "elevation_ft": "5683", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-DUR", + "municipality": "San Juan del Río del Centauro del Norte", + "scheduled_service": "no" + }, + { + "id": "356417", + "ident": "MX-1978", + "type": "closed", + "name": "Caracoles Airport", + "latitude_deg": "25.0224", + "longitude_deg": "-98.85319", + "elevation_ft": "377", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Burgos", + "scheduled_service": "no" + }, + { + "id": "356418", + "ident": "MX-1979", + "type": "closed", + "name": "San Isidro Airport", + "latitude_deg": "24.98692", + "longitude_deg": "-98.78961", + "elevation_ft": "531", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Burgos", + "scheduled_service": "no" + }, + { + "id": "356419", + "ident": "MX-1980", + "type": "closed", + "name": "Nuevo San Fernando Airport", + "latitude_deg": "24.96665", + "longitude_deg": "-98.1746", + "elevation_ft": "331", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "San Fernando", + "scheduled_service": "no" + }, + { + "id": "356420", + "ident": "MX-1981", + "type": "closed", + "name": "El Tigre Airport", + "latitude_deg": "20.8781", + "longitude_deg": "-101.894996", + "elevation_ft": "5676", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-GUA", + "municipality": "Purisima del Rincon", + "scheduled_service": "no", + "local_code": "TIG", + "keywords": "TIG" + }, + { + "id": "430123", + "ident": "MX-1982", + "type": "closed", + "name": "Cruillas Airport", + "latitude_deg": "24.74394", + "longitude_deg": "-98.51397", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-TAM", + "municipality": "Cruillas", + "scheduled_service": "no" + }, + { + "id": "430124", + "ident": "MX-1983", + "type": "closed", + "name": "Santo Domingo Airport", + "latitude_deg": "30.53322", + "longitude_deg": "-106.80485", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Villa Ahumada", + "scheduled_service": "no" + }, + { + "id": "430125", + "ident": "MX-1984", + "type": "closed", + "name": "Tierra Prietas Airport", + "latitude_deg": "30.7314", + "longitude_deg": "-107.05581", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Villa Ahumada", + "scheduled_service": "no" + }, + { + "id": "430126", + "ident": "MX-1985", + "type": "closed", + "name": "La Consolidada Airport", + "latitude_deg": "31.06243", + "longitude_deg": "-107.3276", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ascensión", + "scheduled_service": "no" + }, + { + "id": "430127", + "ident": "MX-1986", + "type": "closed", + "name": "Ojos de Santa Maria Airport", + "latitude_deg": "31.16268", + "longitude_deg": "-107.32803", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ascensión", + "scheduled_service": "no" + }, + { + "id": "430128", + "ident": "MX-1987", + "type": "closed", + "name": "Sabinal Viejo Airport", + "latitude_deg": "30.93735", + "longitude_deg": "-107.61817", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ascensión", + "scheduled_service": "no" + }, + { + "id": "430129", + "ident": "MX-1988", + "type": "closed", + "name": "Las Margaritas Airport", + "latitude_deg": "31.02832", + "longitude_deg": "-107.76734", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Ascensión", + "scheduled_service": "no" + }, + { + "id": "430130", + "ident": "MX-1989", + "type": "closed", + "name": "San Pedro Corralitos Airport", + "latitude_deg": "30.69903", + "longitude_deg": "-107.64504", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Nuevo Casas Grandes", + "scheduled_service": "no" + }, + { + "id": "430131", + "ident": "MX-1990", + "type": "closed", + "name": "Cerros Prietos Airport", + "latitude_deg": "30.79991", + "longitude_deg": "-107.97263", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHH", + "municipality": "Nuevo Casas Grandes", + "scheduled_service": "no" + }, + { + "id": "430268", + "ident": "MX-1991", + "type": "closed", + "name": "Pueblo de Álamos Airport", + "latitude_deg": "29.21183", + "longitude_deg": "-110.1325", + "elevation_ft": "1988", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Ures", + "scheduled_service": "no" + }, + { + "id": "430291", + "ident": "MX-1992", + "type": "closed", + "name": "Francisco Sarabia Airport", + "latitude_deg": "15.697065", + "longitude_deg": "-93.237727", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Pijijiapan", + "scheduled_service": "no" + }, + { + "id": "430292", + "ident": "MX-1993", + "type": "closed", + "name": "Tres Picos Airport", + "latitude_deg": "15.879408", + "longitude_deg": "-93.485155", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Tres Picos", + "scheduled_service": "no" + }, + { + "id": "430601", + "ident": "MX-1994", + "type": "small_airport", + "name": "Fumigaciones Aéreas Lozano Airport", + "latitude_deg": "30.10131", + "longitude_deg": "-107.36804", + "elevation_ft": "4593", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-COA", + "municipality": "Buenaventura", + "scheduled_service": "no", + "keywords": "Colonia el Valle" + }, + { + "id": "30631", + "ident": "MX-AJS", + "type": "small_airport", + "name": "Punta Abreojos Airport", + "latitude_deg": "26.7272", + "longitude_deg": "-113.558998", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no", + "iata_code": "AJS" + }, + { + "id": "30671", + "ident": "MX-AZG", + "type": "small_airport", + "name": "Apatzingán - Pablo L. Sidar Airport", + "latitude_deg": "19.093399", + "longitude_deg": "-102.393997", + "elevation_ft": "1033", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-MIC", + "municipality": "Apatzingán", + "scheduled_service": "no", + "gps_code": "MMAG", + "iata_code": "AZG", + "local_code": "AZG", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aeropuerto_Nacional_Pablo_L._Sidar", + "keywords": "MM16" + }, + { + "id": "43044", + "ident": "MX-CEO", + "type": "small_airport", + "name": "El Crucero Airport", + "latitude_deg": "27.407301", + "longitude_deg": "-109.928001", + "elevation_ft": "114", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Cajeme", + "scheduled_service": "no", + "local_code": "CEO" + }, + { + "id": "43107", + "ident": "MX-NVJ", + "type": "small_airport", + "name": "Navojoa Municipal Airport", + "latitude_deg": "26.992201", + "longitude_deg": "-109.416", + "elevation_ft": "981", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Navojoa", + "scheduled_service": "no", + "gps_code": "MMNV", + "local_code": "NVJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Navojoa_Airport" + }, + { + "id": "32148", + "ident": "MX-PCM", + "type": "small_airport", + "name": "Playa del Carmen Airport", + "latitude_deg": "20.622499465942", + "longitude_deg": "-87.08219909668", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Solidaridad", + "scheduled_service": "no", + "iata_code": "PCM", + "local_code": "PCE", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aeropuerto_Nacional_de_Playa_del_Carmen" + }, + { + "id": "32149", + "ident": "MX-PCV", + "type": "small_airport", + "name": "Punta Chivato Airport", + "latitude_deg": "27.069201", + "longitude_deg": "-111.961998", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no", + "iata_code": "PCV", + "local_code": "PCH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Punta_Chivato_Airstrip" + }, + { + "id": "32168", + "ident": "MX-PNO", + "type": "closed", + "name": "Former Pinotepa Nacional Airport", + "latitude_deg": "16.350002", + "longitude_deg": "-98.061996", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Pinotepa", + "scheduled_service": "no", + "keywords": "PNO, MMPO" + }, + { + "id": "32274", + "ident": "MX-SCX", + "type": "small_airport", + "name": "Salina Cruz Naval Air Station", + "latitude_deg": "16.212600708", + "longitude_deg": "-95.20159912110002", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-OAX", + "municipality": "Salina Cruz", + "scheduled_service": "yes", + "gps_code": "MMSZ", + "iata_code": "SCX", + "local_code": "MM57", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salina_Cruz_Airport" + }, + { + "id": "32291", + "ident": "MX-SGM", + "type": "small_airport", + "name": "San Ignacio Airport", + "latitude_deg": "27.2966", + "longitude_deg": "-112.938004", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "no", + "iata_code": "SGM", + "local_code": "SIY", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Ignacio_Airfield", + "keywords": "MM26" + }, + { + "id": "32483", + "ident": "MX-TUY", + "type": "small_airport", + "name": "Tulum Naval Air Station", + "latitude_deg": "20.227301", + "longitude_deg": "-87.438203", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-ROO", + "municipality": "Tulum", + "scheduled_service": "no", + "gps_code": "MMTU", + "iata_code": "TUY", + "local_code": "TUY", + "wikipedia_link": "https://sv.wikipedia.org/wiki/Tulum_Naval_Air_Station", + "keywords": "MM49" + }, + { + "id": "32494", + "ident": "MX-UAC", + "type": "small_airport", + "name": "San Luis Río Colorado Airport", + "latitude_deg": "32.445301", + "longitude_deg": "-114.797997", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "San Luis Río Colorado", + "scheduled_service": "no", + "gps_code": "MM76", + "iata_code": "UAC", + "local_code": "SLR", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Luis_R%C3%ADo_Colorado_Airport", + "keywords": "MM76" + }, + { + "id": "32690", + "ident": "MX-XAL", + "type": "small_airport", + "name": "Álamos Airport", + "latitude_deg": "27.035701", + "longitude_deg": "-108.947998", + "elevation_ft": "1312", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-SON", + "municipality": "Álamos", + "scheduled_service": "no", + "iata_code": "XAL", + "local_code": "ALA", + "keywords": "MM45" + }, + { + "id": "321994", + "ident": "MXC", + "type": "small_airport", + "name": "Monticello Airport", + "latitude_deg": "37.93243", + "longitude_deg": "-109.341225", + "elevation_ft": "6966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Monticello", + "scheduled_service": "no", + "iata_code": "MXC", + "local_code": "U64", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monticello_Airport_(Utah)" + }, + { + "id": "306955", + "ident": "MXK", + "type": "small_airport", + "name": "Mindik Airport", + "latitude_deg": "-6.47166666667", + "longitude_deg": "147.441138889", + "elevation_ft": "4200", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Mindik", + "scheduled_service": "no", + "gps_code": "AYMI", + "iata_code": "MXK", + "local_code": "MIK" + }, + { + "id": "314656", + "ident": "MY-0001", + "type": "heliport", + "name": "Investigator Shoal Helipad", + "latitude_deg": "8.11853", + "longitude_deg": "114.577985", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "scheduled_service": "no" + }, + { + "id": "314657", + "ident": "MY-0002", + "type": "heliport", + "name": "Mariveles Reef Helipad", + "latitude_deg": "7.966962", + "longitude_deg": "113.916362", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "scheduled_service": "no" + }, + { + "id": "339962", + "ident": "MY-0003", + "type": "small_airport", + "name": "Cameron Highlands Airstrip", + "latitude_deg": "4.440291", + "longitude_deg": "101.421724", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-06", + "municipality": "Ringlet", + "scheduled_service": "no" + }, + { + "id": "339976", + "ident": "MY-0004", + "type": "heliport", + "name": "Sultan Ahmad Haji Shah Hospital Helipad", + "latitude_deg": "3.45361", + "longitude_deg": "102.45338", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-06", + "municipality": "Temerloh", + "scheduled_service": "no" + }, + { + "id": "339977", + "ident": "MY-0005", + "type": "heliport", + "name": "KD Sultan Ismail Heliport", + "latitude_deg": "1.372145", + "longitude_deg": "104.093959", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-01", + "municipality": "Tanjung Pengelih", + "scheduled_service": "no" + }, + { + "id": "339978", + "ident": "MY-0006", + "type": "heliport", + "name": "KD Malaya Heliport", + "latitude_deg": "4.23302", + "longitude_deg": "100.61787", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-08", + "municipality": "Lumut", + "scheduled_service": "no" + }, + { + "id": "339979", + "ident": "MY-0007", + "type": "heliport", + "name": "TLDM Tanjung Gelang Heliport", + "latitude_deg": "3.96909", + "longitude_deg": "103.43113", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-06", + "municipality": "Kuantan", + "scheduled_service": "no" + }, + { + "id": "340521", + "ident": "MY-0008", + "type": "heliport", + "name": "Limbang Heliport", + "latitude_deg": "4.758474", + "longitude_deg": "115.009884", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Limbang", + "scheduled_service": "no" + }, + { + "id": "31918", + "ident": "MY-0009", + "type": "closed", + "name": "Old Mukah STOLport", + "latitude_deg": "2.907082", + "longitude_deg": "112.077756", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Mukah", + "scheduled_service": "yes", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mukah_Airport", + "keywords": "MKM, WBGK" + }, + { + "id": "354339", + "ident": "MY-0010", + "type": "heliport", + "name": "Station Uniform Helipad", + "latitude_deg": "7.60642", + "longitude_deg": "113.930363", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/en:Ardasier Reef" + }, + { + "id": "354857", + "ident": "MY-0011", + "type": "heliport", + "name": "Istana Negara Helipad", + "latitude_deg": "3.161877", + "longitude_deg": "101.666788", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-14", + "municipality": "Kuala Lumpur", + "scheduled_service": "no" + }, + { + "id": "354858", + "ident": "MY-0012", + "type": "heliport", + "name": "Sunway Tower Helipad", + "latitude_deg": "3.157058", + "longitude_deg": "101.703002", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-14", + "municipality": "Kuala Lumpur", + "scheduled_service": "no" + }, + { + "id": "354859", + "ident": "MY-0013", + "type": "heliport", + "name": "Sepang F1 Circuit Helipad", + "latitude_deg": "2.761501", + "longitude_deg": "101.739817", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-10", + "municipality": "Sepang", + "scheduled_service": "no" + }, + { + "id": "354861", + "ident": "MY-0014", + "type": "heliport", + "name": "Pit Lane Exit Helipad", + "latitude_deg": "2.760815", + "longitude_deg": "101.734392", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-10", + "municipality": "Sepang", + "scheduled_service": "no" + }, + { + "id": "41346", + "ident": "MY-0015", + "type": "small_airport", + "name": "Hunter (Morotai) Airport", + "latitude_deg": "4.4103899002075195", + "longitude_deg": "117.78700256347656", + "elevation_ft": "175", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Morotai", + "scheduled_service": "no" + }, + { + "id": "41347", + "ident": "MY-0016", + "type": "small_airport", + "name": "Jeroco Airport", + "latitude_deg": "5.406111240386963", + "longitude_deg": "118.3963851928711", + "elevation_ft": "60", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Jeroco", + "scheduled_service": "no" + }, + { + "id": "41348", + "ident": "MY-0017", + "type": "small_airport", + "name": "Kelabakan Airport", + "latitude_deg": "4.416388988494873", + "longitude_deg": "117.49639129638672", + "elevation_ft": "257", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Kelabakan", + "scheduled_service": "no" + }, + { + "id": "41349", + "ident": "MY-0018", + "type": "small_airport", + "name": "Kuala Kahaba Airport", + "latitude_deg": "5.11638879776001", + "longitude_deg": "116.14666748046875", + "elevation_ft": "1250", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Kuala Kahaba", + "scheduled_service": "no" + }, + { + "id": "41350", + "ident": "MY-0019", + "type": "small_airport", + "name": "Kuala Medamit Airport", + "latitude_deg": "4.466390132904053", + "longitude_deg": "114.91300201416016", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Kuala Medamit", + "scheduled_service": "no" + }, + { + "id": "41351", + "ident": "MY-0020", + "type": "small_airport", + "name": "Marak Parak Airport", + "latitude_deg": "6.312222003936768", + "longitude_deg": "116.72972106933594", + "elevation_ft": "400", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Marak Parak", + "scheduled_service": "no" + }, + { + "id": "41352", + "ident": "MY-0021", + "type": "small_airport", + "name": "Meligan Airport", + "latitude_deg": "4.681666851043701", + "longitude_deg": "115.69805908203125", + "elevation_ft": "1800", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Meligan", + "scheduled_service": "no" + }, + { + "id": "41353", + "ident": "MY-0022", + "type": "small_airport", + "name": "Meridi Airport", + "latitude_deg": "6.0941667556762695", + "longitude_deg": "116.97000122070312", + "elevation_ft": "300", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Meridi", + "scheduled_service": "no" + }, + { + "id": "41354", + "ident": "MY-0023", + "type": "small_airport", + "name": "Nangoh Airport", + "latitude_deg": "5.966388702392578", + "longitude_deg": "117.29638671875", + "elevation_ft": "100", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Nangoh", + "scheduled_service": "no" + }, + { + "id": "41355", + "ident": "MY-0024", + "type": "small_airport", + "name": "Pandewan Airport", + "latitude_deg": "4.974722385406494", + "longitude_deg": "116.47166442871094", + "elevation_ft": "1100", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Pandewan", + "scheduled_service": "no" + }, + { + "id": "41356", + "ident": "MY-0025", + "type": "small_airport", + "name": "Pa Ramudu Airport", + "latitude_deg": "3.555431", + "longitude_deg": "115.49503", + "elevation_ft": "2800", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Paramudu", + "scheduled_service": "no" + }, + { + "id": "41357", + "ident": "MY-0026", + "type": "small_airport", + "name": "Sook Airport", + "latitude_deg": "5.141388893127441", + "longitude_deg": "116.30777740478516", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Sook", + "scheduled_service": "no" + }, + { + "id": "41358", + "ident": "MY-0027", + "type": "small_airport", + "name": "Ulu Tomani Airport", + "latitude_deg": "4.696944236755371", + "longitude_deg": "115.86333465576172", + "elevation_ft": "1300", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Ulu Tomani", + "scheduled_service": "no" + }, + { + "id": "41359", + "ident": "MY-0028", + "type": "small_airport", + "name": "Wallace Bay Airport", + "latitude_deg": "4.244166851043701", + "longitude_deg": "117.65611267089844", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Wallace Bay", + "scheduled_service": "no" + }, + { + "id": "354862", + "ident": "MY-0029", + "type": "heliport", + "name": "Sepang F1 North Helipad", + "latitude_deg": "2.763797", + "longitude_deg": "101.73718", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-10", + "municipality": "Sepang", + "scheduled_service": "no" + }, + { + "id": "354863", + "ident": "MY-0030", + "type": "heliport", + "name": "Sepang F1 Parking A Helipad", + "latitude_deg": "2.758894", + "longitude_deg": "101.728113", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-10", + "municipality": "Sepang", + "scheduled_service": "no" + }, + { + "id": "354864", + "ident": "MY-0031", + "type": "heliport", + "name": "KLATCC Heliport", + "latitude_deg": "2.764049", + "longitude_deg": "101.701175", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-10", + "municipality": "Sepang", + "scheduled_service": "no" + }, + { + "id": "354865", + "ident": "MY-0032", + "type": "small_airport", + "name": "Terendak Camp Airstrip", + "latitude_deg": "2.295796", + "longitude_deg": "102.090654", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-04", + "municipality": "Mashid Tanah", + "scheduled_service": "no" + }, + { + "id": "354866", + "ident": "MY-0033", + "type": "heliport", + "name": "Johor Polo Club Helipad", + "latitude_deg": "1.479169", + "longitude_deg": "103.78247", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-01", + "municipality": "Johor Bahru", + "scheduled_service": "no" + }, + { + "id": "355054", + "ident": "MY-0034", + "type": "small_airport", + "name": "Pa Dali Airport", + "latitude_deg": "3.558464", + "longitude_deg": "115.555936", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Marudi", + "scheduled_service": "no" + }, + { + "id": "356343", + "ident": "MY-0035", + "type": "heliport", + "name": "Genting Heliport", + "latitude_deg": "3.42491", + "longitude_deg": "101.7914", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-06", + "municipality": "Genting Highlands", + "scheduled_service": "no" + }, + { + "id": "356344", + "ident": "MY-0036", + "type": "heliport", + "name": "Sarikei Hospital Heliport", + "latitude_deg": "2.13516", + "longitude_deg": "111.49218", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Sarikei", + "scheduled_service": "no" + }, + { + "id": "356345", + "ident": "MY-0037", + "type": "heliport", + "name": "Sibu Hospital Heliport", + "latitude_deg": "2.29754", + "longitude_deg": "111.88918", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Sibu", + "scheduled_service": "no" + }, + { + "id": "356346", + "ident": "MY-0038", + "type": "heliport", + "name": "Saratok Hospital Heliport", + "latitude_deg": "1.74693", + "longitude_deg": "111.34072", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Saratok", + "scheduled_service": "no" + }, + { + "id": "356347", + "ident": "MY-0039", + "type": "closed", + "name": "Felda Air Tawar Airport", + "latitude_deg": "1.67001", + "longitude_deg": "104.02488", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-01", + "municipality": "Air Tawar", + "scheduled_service": "no" + }, + { + "id": "356348", + "ident": "MY-0040", + "type": "small_airport", + "name": "Felda Lok Heng Airport", + "latitude_deg": "1.6945", + "longitude_deg": "104.08725", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-01", + "municipality": "Lok Heng", + "scheduled_service": "no" + }, + { + "id": "356349", + "ident": "MY-0041", + "type": "closed", + "name": "Felda Semenchu Airport", + "latitude_deg": "1.58898", + "longitude_deg": "104.16391", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-01", + "municipality": "Bandar Penawar", + "scheduled_service": "no" + }, + { + "id": "41314", + "ident": "MY-GTB", + "type": "closed", + "name": "Genting Airport", + "latitude_deg": "2.11666703224", + "longitude_deg": "111.699996948", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Genting", + "scheduled_service": "no", + "iata_code": "GTB" + }, + { + "id": "41315", + "ident": "MY-GTK", + "type": "small_airport", + "name": "Sungai Tekai Airport", + "latitude_deg": "2.64118", + "longitude_deg": "102.89297", + "elevation_ft": "160", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-01", + "municipality": "Sungai Tekai", + "scheduled_service": "no", + "iata_code": "GTK" + }, + { + "id": "35208", + "ident": "MY-LBP", + "type": "small_airport", + "name": "Long Banga Airport", + "latitude_deg": "3.202138", + "longitude_deg": "115.401811", + "elevation_ft": "750", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Long Banga", + "scheduled_service": "yes", + "iata_code": "LBP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Long_Banga_Airport" + }, + { + "id": "41317", + "ident": "MY-LLM", + "type": "small_airport", + "name": "Long Lama Airport", + "latitude_deg": "3.766669988632202", + "longitude_deg": "114.46666717529297", + "elevation_ft": "286", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Long Lama", + "scheduled_service": "no", + "iata_code": "LLM" + }, + { + "id": "41318", + "ident": "MY-MZS", + "type": "small_airport", + "name": "Mostyn Airport", + "latitude_deg": "4.616666793823242", + "longitude_deg": "118.1500015258789", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Mostyn", + "scheduled_service": "no", + "iata_code": "MZS" + }, + { + "id": "41320", + "ident": "MY-SPT", + "type": "small_airport", + "name": "Sipitang Airport", + "latitude_deg": "5.0833330154418945", + "longitude_deg": "115.55000305175781", + "elevation_ft": "44", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Sipitang", + "scheduled_service": "no", + "iata_code": "SPT" + }, + { + "id": "22580", + "ident": "MY00", + "type": "small_airport", + "name": "Sieg's Farm Airport", + "latitude_deg": "43.894100189208984", + "longitude_deg": "-94.493896484375", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Truman", + "scheduled_service": "no", + "gps_code": "MY00", + "local_code": "MY00" + }, + { + "id": "22581", + "ident": "MY01", + "type": "small_airport", + "name": "Roan Airport", + "latitude_deg": "48.14580154418945", + "longitude_deg": "-96.75260162353516", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Warren", + "scheduled_service": "no", + "gps_code": "MY01", + "local_code": "MY01" + }, + { + "id": "22582", + "ident": "MY03", + "type": "closed", + "name": "Braun's Airport", + "latitude_deg": "44.281601", + "longitude_deg": "-94.640503", + "elevation_ft": "1009", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Sleepy Eye", + "scheduled_service": "no", + "keywords": "MY03" + }, + { + "id": "22583", + "ident": "MY04", + "type": "small_airport", + "name": "Koch's Personal Field", + "latitude_deg": "44.65999984741211", + "longitude_deg": "-96.03730010986328", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Taunton", + "scheduled_service": "no", + "gps_code": "MY04", + "local_code": "MY04" + }, + { + "id": "22584", + "ident": "MY06", + "type": "small_airport", + "name": "Ramerth Airport", + "latitude_deg": "43.83140182495117", + "longitude_deg": "-95.5552978515625", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Fulda", + "scheduled_service": "no", + "gps_code": "MY06", + "local_code": "MY06" + }, + { + "id": "22585", + "ident": "MY07", + "type": "small_airport", + "name": "Nord Field", + "latitude_deg": "46.58330154418945", + "longitude_deg": "-96.60649871826172", + "elevation_ft": "948", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Wolverton", + "scheduled_service": "no", + "gps_code": "MY07", + "local_code": "MY07" + }, + { + "id": "22586", + "ident": "MY10", + "type": "small_airport", + "name": "Deters Farms Airport", + "latitude_deg": "43.561100006103516", + "longitude_deg": "-91.68150329589844", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Spring Grove", + "scheduled_service": "no", + "gps_code": "MY10", + "local_code": "MY10" + }, + { + "id": "22587", + "ident": "MY11", + "type": "small_airport", + "name": "Gilgenbach's Airport", + "latitude_deg": "43.521400451660156", + "longitude_deg": "-92.65850067138672", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Taopi", + "scheduled_service": "no", + "gps_code": "MY11", + "local_code": "MY11" + }, + { + "id": "22588", + "ident": "MY12", + "type": "small_airport", + "name": "Dykstra Acreage Airport", + "latitude_deg": "43.88079833984375", + "longitude_deg": "-96.25309753417969", + "elevation_ft": "1690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Trosky", + "scheduled_service": "no", + "gps_code": "MY12", + "local_code": "MY12" + }, + { + "id": "22589", + "ident": "MY13", + "type": "closed", + "name": "Swan Field", + "latitude_deg": "46.869301", + "longitude_deg": "-92.4571", + "elevation_ft": "1345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Saginaw", + "scheduled_service": "no", + "keywords": "MY13" + }, + { + "id": "22590", + "ident": "MY15", + "type": "small_airport", + "name": "Kastanek Airport", + "latitude_deg": "45.9557991027832", + "longitude_deg": "-93.9894027709961", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Pierz", + "scheduled_service": "no", + "gps_code": "MY15", + "local_code": "MY15" + }, + { + "id": "22591", + "ident": "MY17", + "type": "small_airport", + "name": "Swanson Private Airport", + "latitude_deg": "48.08890151977539", + "longitude_deg": "-95.77469635009766", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Goodridge", + "scheduled_service": "no", + "gps_code": "MY17", + "local_code": "MY17" + }, + { + "id": "22592", + "ident": "MY18", + "type": "small_airport", + "name": "Lino Air Park", + "latitude_deg": "45.187198638916016", + "longitude_deg": "-93.13050079345703", + "elevation_ft": "907", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Lino Lakes", + "scheduled_service": "no", + "gps_code": "MY18", + "local_code": "MY18" + }, + { + "id": "22593", + "ident": "MY19", + "type": "small_airport", + "name": "Schwenk Airport", + "latitude_deg": "45.170799255371094", + "longitude_deg": "-95.39250183105469", + "elevation_ft": "1082", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Murdock", + "scheduled_service": "no", + "gps_code": "MY19", + "local_code": "MY19" + }, + { + "id": "22594", + "ident": "MY20", + "type": "heliport", + "name": "Prudential Helistop", + "latitude_deg": "45.063899993896484", + "longitude_deg": "-93.44860076904297", + "elevation_ft": "956", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "MY20", + "local_code": "MY20" + }, + { + "id": "22595", + "ident": "MY21", + "type": "seaplane_base", + "name": "Kollar's Shoreview Marine Seaplane Base", + "latitude_deg": "45.03329849243164", + "longitude_deg": "-93.12519836425781", + "elevation_ft": "886", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Shoreview", + "scheduled_service": "no", + "gps_code": "MY21", + "local_code": "MY21" + }, + { + "id": "22596", + "ident": "MY22", + "type": "seaplane_base", + "name": "Hazelglade Resort Seaplane Base", + "latitude_deg": "46.1416015625", + "longitude_deg": "-93.52110290527344", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Wahkon", + "scheduled_service": "no", + "gps_code": "MY22", + "local_code": "MY22" + }, + { + "id": "22597", + "ident": "MY23", + "type": "seaplane_base", + "name": "Andings Landing Seaplane Base", + "latitude_deg": "44.88050079345703", + "longitude_deg": "-93.60859680175781", + "elevation_ft": "942", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Chanhassen", + "scheduled_service": "no", + "gps_code": "MY23", + "local_code": "MY23" + }, + { + "id": "22598", + "ident": "MY24", + "type": "small_airport", + "name": "Falk Private Airport", + "latitude_deg": "46.86220169067383", + "longitude_deg": "-95.05220031738281", + "elevation_ft": "1443", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Park Rapids", + "scheduled_service": "no", + "gps_code": "MY24", + "local_code": "MY24" + }, + { + "id": "22599", + "ident": "MY25", + "type": "small_airport", + "name": "Knapp Personal Use Airport", + "latitude_deg": "46.279998779296875", + "longitude_deg": "-96.33149719238281", + "elevation_ft": "1018", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Foxhome", + "scheduled_service": "no", + "gps_code": "MY25", + "local_code": "MY25" + }, + { + "id": "22600", + "ident": "MY26", + "type": "heliport", + "name": "Minnesota Valley Health Center Heliport", + "latitude_deg": "44.45330047607422", + "longitude_deg": "-93.91570281982422", + "elevation_ft": "839", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Le Sueur", + "scheduled_service": "no", + "gps_code": "MY26", + "local_code": "MY26" + }, + { + "id": "430455", + "ident": "MY27", + "type": "heliport", + "name": "Essentia Health St Mary Heliport", + "latitude_deg": "46.814654", + "longitude_deg": "-95.845134", + "elevation_ft": "1371", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Detroit Lakes", + "scheduled_service": "no", + "gps_code": "MY27", + "local_code": "MY27" + }, + { + "id": "22601", + "ident": "MY28", + "type": "small_airport", + "name": "Pinetree Airpark", + "latitude_deg": "45.57979965209961", + "longitude_deg": "-92.96309661865234", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Harris", + "scheduled_service": "no", + "gps_code": "MY28", + "local_code": "MY28" + }, + { + "id": "22602", + "ident": "MY29", + "type": "small_airport", + "name": "Kaiser's Airstrip", + "latitude_deg": "46.79690170288086", + "longitude_deg": "-96.09960174560547", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Lake Park", + "scheduled_service": "no", + "gps_code": "MY29", + "local_code": "MY29" + }, + { + "id": "22603", + "ident": "MY30", + "type": "closed", + "name": "Compressor Station 2207 Heliport", + "latitude_deg": "47.240007", + "longitude_deg": "-96.524911", + "elevation_ft": "901", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Ada", + "scheduled_service": "no", + "keywords": "MY30" + }, + { + "id": "22604", + "ident": "MY32", + "type": "seaplane_base", + "name": "Rosacker's Nr 2 Seaplane Base", + "latitude_deg": "46.36439895629883", + "longitude_deg": "-93.86000061035156", + "elevation_ft": "1261", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Deerwood", + "scheduled_service": "no", + "gps_code": "MY32", + "local_code": "MY32" + }, + { + "id": "22605", + "ident": "MY33", + "type": "seaplane_base", + "name": "Rosacker's Nr 1 Seaplane Base", + "latitude_deg": "45.076900482177734", + "longitude_deg": "-93.20439910888672", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "New Brighton", + "scheduled_service": "no", + "gps_code": "MY33", + "local_code": "MY33" + }, + { + "id": "22606", + "ident": "MY34", + "type": "seaplane_base", + "name": "Jorgensen's Landing Seaplane Base", + "latitude_deg": "44.73939895629883", + "longitude_deg": "-93.39579772949219", + "elevation_ft": "898", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Prior Lake", + "scheduled_service": "no", + "gps_code": "MY34", + "local_code": "MY34" + }, + { + "id": "22607", + "ident": "MY35", + "type": "small_airport", + "name": "Walker Field", + "latitude_deg": "44.93349838256836", + "longitude_deg": "-92.81770324707031", + "elevation_ft": "902", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Afton", + "scheduled_service": "no", + "gps_code": "MY35", + "local_code": "MY35" + }, + { + "id": "22608", + "ident": "MY36", + "type": "closed", + "name": "Fudpucker International Seaplane Base", + "latitude_deg": "44.908298", + "longitude_deg": "-93.583603", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Excelsior", + "scheduled_service": "no", + "keywords": "MY36" + }, + { + "id": "45491", + "ident": "MY37", + "type": "small_airport", + "name": "Eyota Airport", + "latitude_deg": "43.981803", + "longitude_deg": "-92.245942", + "elevation_ft": "1285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Eyota", + "scheduled_service": "no", + "gps_code": "MY37", + "local_code": "MY37", + "keywords": "Thomas Field" + }, + { + "id": "22609", + "ident": "MY38", + "type": "seaplane_base", + "name": "Irons Point Seaplane Base", + "latitude_deg": "47.843299865722656", + "longitude_deg": "-92.35070037841797", + "elevation_ft": "1358", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Tower", + "scheduled_service": "no", + "gps_code": "MY38", + "local_code": "MY38" + }, + { + "id": "22610", + "ident": "MY42", + "type": "small_airport", + "name": "Mathis Airport", + "latitude_deg": "47.863800048828125", + "longitude_deg": "-95.5270004272461", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Gonvick", + "scheduled_service": "no", + "gps_code": "MY42", + "local_code": "MY42" + }, + { + "id": "22611", + "ident": "MY43", + "type": "closed", + "name": "Becker Personal Airport", + "latitude_deg": "45.402699", + "longitude_deg": "-93.389397", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Saint Francis", + "scheduled_service": "no", + "keywords": "MY43" + }, + { + "id": "22612", + "ident": "MY44", + "type": "heliport", + "name": "Rice Memorial Hospital Heliport", + "latitude_deg": "45.12009811401367", + "longitude_deg": "-95.04660034179688", + "elevation_ft": "1179", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Willmar", + "scheduled_service": "no", + "gps_code": "MY44", + "local_code": "MY44" + }, + { + "id": "22613", + "ident": "MY46", + "type": "small_airport", + "name": "Hay Shakers Airport", + "latitude_deg": "44.279202", + "longitude_deg": "-94.213303", + "elevation_ft": "995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Nicollet", + "scheduled_service": "no", + "gps_code": "MY46", + "local_code": "MY46", + "keywords": "Mertesdorf" + }, + { + "id": "22614", + "ident": "MY47", + "type": "small_airport", + "name": "Guggenberger Airport", + "latitude_deg": "45.604698181152344", + "longitude_deg": "-94.21080017089844", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Sartell", + "scheduled_service": "no", + "gps_code": "MY47", + "local_code": "MY47" + }, + { + "id": "22615", + "ident": "MY48", + "type": "seaplane_base", + "name": "Lake Fremont Seaplane Base", + "latitude_deg": "45.45750045776367", + "longitude_deg": "-93.57830047607422", + "elevation_ft": "974", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Zimmerman", + "scheduled_service": "no", + "gps_code": "MY48", + "local_code": "MY48" + }, + { + "id": "22616", + "ident": "MY49", + "type": "closed", + "name": "Anderson Airport", + "latitude_deg": "47.787399", + "longitude_deg": "-93.060501", + "elevation_ft": "1310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Bear River", + "scheduled_service": "no", + "keywords": "MY49" + }, + { + "id": "22617", + "ident": "MY50", + "type": "small_airport", + "name": "Frontenac Airport", + "latitude_deg": "44.50337", + "longitude_deg": "-92.364404", + "elevation_ft": "793", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Lake City", + "scheduled_service": "no", + "gps_code": "MY50", + "local_code": "MY50" + }, + { + "id": "22618", + "ident": "MY52", + "type": "closed", + "name": "Turkey Track Airport", + "latitude_deg": "44.718601", + "longitude_deg": "-93.044098", + "elevation_ft": "923", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Coates", + "scheduled_service": "no", + "keywords": "MY52" + }, + { + "id": "22619", + "ident": "MY54", + "type": "small_airport", + "name": "Cloverleaf-East Bemidji Airport", + "latitude_deg": "47.43830108642578", + "longitude_deg": "-94.81220245361328", + "elevation_ft": "1445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Bemidji", + "scheduled_service": "no", + "gps_code": "MY54", + "local_code": "MY54" + }, + { + "id": "22620", + "ident": "MY55", + "type": "small_airport", + "name": "B I R Airport", + "latitude_deg": "46.419700622558594", + "longitude_deg": "-94.27529907226562", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "scheduled_service": "no", + "gps_code": "MY55", + "local_code": "MY55" + }, + { + "id": "22621", + "ident": "MY56", + "type": "small_airport", + "name": "Robertson Field", + "latitude_deg": "47.25239944458008", + "longitude_deg": "-92.8593978881836", + "elevation_ft": "1290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hibbing", + "scheduled_service": "no", + "gps_code": "MY56", + "local_code": "MY56" + }, + { + "id": "22622", + "ident": "MY57", + "type": "small_airport", + "name": "Fedor Airport", + "latitude_deg": "45.763301849365234", + "longitude_deg": "-94.4574966430664", + "elevation_ft": "1175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Holdingford", + "scheduled_service": "no", + "gps_code": "MY57", + "local_code": "MY57" + }, + { + "id": "22623", + "ident": "MY58", + "type": "small_airport", + "name": "Home-Base Airport", + "latitude_deg": "45.238800048828125", + "longitude_deg": "-95.92530059814453", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Holloway", + "scheduled_service": "no", + "gps_code": "MY58", + "local_code": "MY58" + }, + { + "id": "22624", + "ident": "MY59", + "type": "small_airport", + "name": "Gasper Airport", + "latitude_deg": "47.9015998840332", + "longitude_deg": "-96.61229705810547", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Euclid", + "scheduled_service": "no", + "gps_code": "MY59", + "local_code": "MY59" + }, + { + "id": "22625", + "ident": "MY60", + "type": "small_airport", + "name": "Hagen Airport", + "latitude_deg": "46.50270080566406", + "longitude_deg": "-95.61979675292969", + "elevation_ft": "1370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Richville", + "scheduled_service": "no", + "gps_code": "MY60", + "local_code": "MY60" + }, + { + "id": "22626", + "ident": "MY62", + "type": "small_airport", + "name": "Ultraflyte, Inc Ultralightport", + "latitude_deg": "46.665199279785156", + "longitude_deg": "-94.34329986572266", + "elevation_ft": "1270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Jenkins", + "scheduled_service": "no", + "gps_code": "MY62", + "local_code": "MY62" + }, + { + "id": "22627", + "ident": "MY64", + "type": "small_airport", + "name": "Schjeldrup Airport", + "latitude_deg": "47.03110122680664", + "longitude_deg": "-96.60230255126953", + "elevation_ft": "903", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Felton", + "scheduled_service": "no", + "gps_code": "MY64", + "local_code": "MY64" + }, + { + "id": "22628", + "ident": "MY65", + "type": "heliport", + "name": "University of Minnesota Hospitals & Clinics Heliport", + "latitude_deg": "44.97123", + "longitude_deg": "-93.23055", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Minneapolis", + "scheduled_service": "no", + "gps_code": "MY65", + "local_code": "MY65" + }, + { + "id": "22629", + "ident": "MY66", + "type": "small_airport", + "name": "North Star Ranch Airport", + "latitude_deg": "46.070499420166016", + "longitude_deg": "-93.84719848632812", + "elevation_ft": "1330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Onamia", + "scheduled_service": "no", + "gps_code": "MY66", + "local_code": "MY66" + }, + { + "id": "22630", + "ident": "MY68", + "type": "small_airport", + "name": "Johnsons Aero Repair Airport", + "latitude_deg": "45.777198791503906", + "longitude_deg": "-96.39140319824219", + "elevation_ft": "1028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Wheaton", + "scheduled_service": "no", + "gps_code": "MY68", + "local_code": "MY68" + }, + { + "id": "22631", + "ident": "MY71", + "type": "small_airport", + "name": "Mueller Airport", + "latitude_deg": "47.126399993896484", + "longitude_deg": "-96.78060150146484", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Georgetown", + "scheduled_service": "no", + "gps_code": "MY71", + "local_code": "MY71" + }, + { + "id": "22632", + "ident": "MY72", + "type": "small_airport", + "name": "Isle Private Airport", + "latitude_deg": "46.159698486328125", + "longitude_deg": "-93.4613037109375", + "elevation_ft": "1271", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Isle", + "scheduled_service": "no", + "gps_code": "MY72", + "local_code": "MY72" + }, + { + "id": "22633", + "ident": "MY73", + "type": "seaplane_base", + "name": "Lake Pulaski Seaplane Base", + "latitude_deg": "45.19860076904297", + "longitude_deg": "-93.8447036743164", + "elevation_ft": "958", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Buffalo", + "scheduled_service": "no", + "gps_code": "MY73", + "local_code": "MY73" + }, + { + "id": "45484", + "ident": "MY76", + "type": "seaplane_base", + "name": "Johnson's Sea Landing Seaplane Base", + "latitude_deg": "47.856094", + "longitude_deg": "-92.391675", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Tower", + "scheduled_service": "no", + "gps_code": "MY76", + "local_code": "MY76" + }, + { + "id": "22634", + "ident": "MY77", + "type": "heliport", + "name": "North Memorial Heliport", + "latitude_deg": "45.014554", + "longitude_deg": "-93.320308", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Robbinsdale", + "scheduled_service": "no", + "gps_code": "MY77", + "local_code": "MY77" + }, + { + "id": "22635", + "ident": "MY78", + "type": "closed", + "name": "Sunrise Airport", + "latitude_deg": "45.4291", + "longitude_deg": "-92.986298", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Stacy", + "scheduled_service": "no", + "keywords": "MY78" + }, + { + "id": "22636", + "ident": "MY79", + "type": "heliport", + "name": "Children's Hospital St Paul Heliport", + "latitude_deg": "44.942564", + "longitude_deg": "-93.107746", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "St Paul", + "scheduled_service": "no", + "gps_code": "MY79", + "local_code": "MY79" + }, + { + "id": "22637", + "ident": "MY80", + "type": "small_airport", + "name": "Rosenberg Airport", + "latitude_deg": "43.52220153808594", + "longitude_deg": "-94.5824966430664", + "elevation_ft": "1255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Ceylon", + "scheduled_service": "no", + "gps_code": "MY80", + "local_code": "MY80" + }, + { + "id": "22638", + "ident": "MY82", + "type": "closed", + "name": "Du Fresne Airport", + "latitude_deg": "45.213001", + "longitude_deg": "-93.074699", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Forest Lake", + "scheduled_service": "no", + "keywords": "MY82" + }, + { + "id": "22639", + "ident": "MY83", + "type": "seaplane_base", + "name": "Safe Air Seaplane Base", + "latitude_deg": "46.98659896850586", + "longitude_deg": "-94.12439727783203", + "elevation_ft": "1306", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Longville", + "scheduled_service": "no", + "gps_code": "MY83", + "local_code": "MY83" + }, + { + "id": "22640", + "ident": "MY84", + "type": "heliport", + "name": "Sioux Valley Hospital Heliport", + "latitude_deg": "44.31269836425781", + "longitude_deg": "-94.47550201416016", + "elevation_ft": "879", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "New Ulm", + "scheduled_service": "no", + "gps_code": "MY84", + "local_code": "MY84" + }, + { + "id": "22641", + "ident": "MY85", + "type": "closed", + "name": "Advance Machine Company Heliport", + "latitude_deg": "45.001908", + "longitude_deg": "-93.469675", + "elevation_ft": "973", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Plymouth", + "scheduled_service": "no", + "keywords": "MY85" + }, + { + "id": "22642", + "ident": "MY86", + "type": "seaplane_base", + "name": "Johnson Seaplane Base", + "latitude_deg": "45.15079879760742", + "longitude_deg": "-93.73999786376953", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Rockford", + "scheduled_service": "no", + "gps_code": "MY86", + "local_code": "MY86" + }, + { + "id": "22643", + "ident": "MY87", + "type": "heliport", + "name": "Saint Cloud Hospital Heliport", + "latitude_deg": "45.574292", + "longitude_deg": "-94.169348", + "elevation_ft": "1024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Saint Cloud", + "scheduled_service": "no", + "gps_code": "MY87", + "local_code": "MY87" + }, + { + "id": "22644", + "ident": "MY88", + "type": "small_airport", + "name": "Cary Airport", + "latitude_deg": "46.85749816894531", + "longitude_deg": "-94.98310089111328", + "elevation_ft": "1413", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Park Rapids", + "scheduled_service": "no", + "gps_code": "MY88", + "local_code": "MY88" + }, + { + "id": "22645", + "ident": "MY89", + "type": "small_airport", + "name": "Pavek Personal Airport", + "latitude_deg": "45.90829849243164", + "longitude_deg": "-92.90579986572266", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Pine City", + "scheduled_service": "no", + "gps_code": "MY89", + "local_code": "MY89" + }, + { + "id": "22646", + "ident": "MY90", + "type": "small_airport", + "name": "Al's Due North Airport", + "latitude_deg": "45.481845", + "longitude_deg": "-92.988545", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "North Branch", + "scheduled_service": "no", + "gps_code": "MY90", + "local_code": "MY90", + "keywords": "Scott's Due North" + }, + { + "id": "22647", + "ident": "MY91", + "type": "heliport", + "name": "Douglas County Hospital Heliport", + "latitude_deg": "45.873600006103516", + "longitude_deg": "-95.3772964477539", + "elevation_ft": "1418", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Alexandria", + "scheduled_service": "no", + "gps_code": "MY91", + "local_code": "MY91" + }, + { + "id": "22648", + "ident": "MY92", + "type": "small_airport", + "name": "Grohnke Field", + "latitude_deg": "45.728599548339844", + "longitude_deg": "-93.28829956054688", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Braham", + "scheduled_service": "no", + "gps_code": "MY92", + "local_code": "MY92" + }, + { + "id": "45486", + "ident": "MY93", + "type": "seaplane_base", + "name": "Johnston Seaplane Base", + "latitude_deg": "46.610833", + "longitude_deg": "-95.704444", + "elevation_ft": "1370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Perham", + "scheduled_service": "no", + "gps_code": "MY93", + "local_code": "MY93", + "keywords": "North Air" + }, + { + "id": "22649", + "ident": "MY94", + "type": "small_airport", + "name": "Country Haven Airport", + "latitude_deg": "46.752498626708984", + "longitude_deg": "-92.41919708251953", + "elevation_ft": "1309", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Cloquet", + "scheduled_service": "no", + "gps_code": "MY94", + "local_code": "MY94" + }, + { + "id": "22650", + "ident": "MY95", + "type": "small_airport", + "name": "Swanson Field", + "latitude_deg": "45.4463996887207", + "longitude_deg": "-93.38279724121094", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Crown", + "scheduled_service": "no", + "gps_code": "MY95", + "local_code": "MY95" + }, + { + "id": "22651", + "ident": "MY96", + "type": "seaplane_base", + "name": "Bahnsen Seaplane Base", + "latitude_deg": "44.416698", + "longitude_deg": "-93.330804", + "elevation_ft": "1004", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Faribault", + "scheduled_service": "no", + "gps_code": "MY96", + "local_code": "MY96", + "keywords": "Quist Seaplane Base" + }, + { + "id": "22652", + "ident": "MY97", + "type": "small_airport", + "name": "Nielsen's Airport", + "latitude_deg": "44.599141", + "longitude_deg": "-93.127585", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Farmington", + "scheduled_service": "no", + "gps_code": "MY97", + "local_code": "MY97" + }, + { + "id": "22653", + "ident": "MY98", + "type": "small_airport", + "name": "Pake Airport", + "latitude_deg": "47.045501708984375", + "longitude_deg": "-96.66560363769531", + "elevation_ft": "898", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Felton", + "scheduled_service": "no", + "gps_code": "MY98", + "local_code": "MY98" + }, + { + "id": "22654", + "ident": "MY99", + "type": "small_airport", + "name": "Johnston Airport", + "latitude_deg": "46.85749816894531", + "longitude_deg": "-96.23519897460938", + "elevation_ft": "1360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hawley", + "scheduled_service": "no", + "gps_code": "MY99", + "local_code": "MY99" + }, + { + "id": "35340", + "ident": "MYA0", + "type": "small_airport", + "name": "Moores Island Airport", + "latitude_deg": "26.317729", + "longitude_deg": "-77.561331", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-SO", + "municipality": "Moore's Island", + "scheduled_service": "no", + "gps_code": "MYAO", + "local_code": "MYAO", + "keywords": "Hard Bargain" + }, + { + "id": "4924", + "ident": "MYAB", + "type": "medium_airport", + "name": "Clarence A. Bain Airport", + "latitude_deg": "24.287701", + "longitude_deg": "-77.684601", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-SA", + "municipality": "Mangrove Cay", + "scheduled_service": "no", + "gps_code": "MYAB", + "iata_code": "MAY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clarence_A._Bain_Airport" + }, + { + "id": "4925", + "ident": "MYAF", + "type": "medium_airport", + "name": "Andros Town Airport", + "latitude_deg": "24.697900772094727", + "longitude_deg": "-77.79560089111328", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-NS", + "scheduled_service": "no", + "gps_code": "MYAF", + "iata_code": "ASD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Andros_Town_International_Airport" + }, + { + "id": "4926", + "ident": "MYAK", + "type": "medium_airport", + "name": "Congo Town Airport", + "latitude_deg": "24.158701", + "longitude_deg": "-77.589798", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-SA", + "municipality": "Andros", + "scheduled_service": "yes", + "gps_code": "MYAK", + "iata_code": "TZN", + "local_code": "COX", + "wikipedia_link": "https://en.wikipedia.org/wiki/South_Andros_Airport", + "keywords": "Congotown Airport, South Andros Airport" + }, + { + "id": "4927", + "ident": "MYAM", + "type": "medium_airport", + "name": "Leonard M Thompson International Airport", + "latitude_deg": "26.5114", + "longitude_deg": "-77.083503", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-CO", + "municipality": "Marsh Harbour", + "scheduled_service": "yes", + "gps_code": "MYAM", + "iata_code": "MHH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marsh_Harbour_Airport", + "keywords": "Marsh Harbour International" + }, + { + "id": "4928", + "ident": "MYAN", + "type": "medium_airport", + "name": "San Andros Airport", + "latitude_deg": "25.053800582885742", + "longitude_deg": "-78.04900360107422", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-NS", + "municipality": "Andros Island", + "scheduled_service": "yes", + "gps_code": "MYAN", + "iata_code": "SAQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Andros_Airport" + }, + { + "id": "4929", + "ident": "MYAP", + "type": "medium_airport", + "name": "Spring Point Airport", + "latitude_deg": "22.441799163800003", + "longitude_deg": "-73.97090148930002", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-AK", + "municipality": "Spring Point", + "scheduled_service": "yes", + "gps_code": "MYAP", + "iata_code": "AXP" + }, + { + "id": "4930", + "ident": "MYAS", + "type": "small_airport", + "name": "Sandy Point Airport", + "latitude_deg": "26.004698", + "longitude_deg": "-77.395622", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-SO", + "municipality": "Sandy Point", + "scheduled_service": "no", + "gps_code": "MYAS" + }, + { + "id": "4931", + "ident": "MYAT", + "type": "medium_airport", + "name": "Treasure Cay Airport", + "latitude_deg": "26.745300293", + "longitude_deg": "-77.3912963867", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-CO", + "municipality": "Treasure Cay", + "scheduled_service": "yes", + "gps_code": "MYAT", + "iata_code": "TCB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Treasure_Cay_Airport" + }, + { + "id": "29641", + "ident": "MYAW", + "type": "small_airport", + "name": "Walkers Cay Airport", + "latitude_deg": "27.259656", + "longitude_deg": "-78.400455", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-NO", + "municipality": "Walkers Cay", + "scheduled_service": "no", + "gps_code": "MYAW", + "iata_code": "WKR" + }, + { + "id": "4932", + "ident": "MYAX", + "type": "small_airport", + "name": "Spanish Cay Airport", + "latitude_deg": "26.950300216674805", + "longitude_deg": "-77.5438003540039", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-NO", + "scheduled_service": "no", + "gps_code": "MYAX" + }, + { + "id": "4933", + "ident": "MYBC", + "type": "medium_airport", + "name": "Chub Cay Airport", + "latitude_deg": "25.41710090637207", + "longitude_deg": "-77.88089752197266", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-NS", + "scheduled_service": "yes", + "gps_code": "MYBC", + "iata_code": "CCZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chub_Cay_International_Airport" + }, + { + "id": "4934", + "ident": "MYBG", + "type": "medium_airport", + "name": "Great Harbour Cay Airport", + "latitude_deg": "25.7383", + "longitude_deg": "-77.840103", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-BY", + "municipality": "Bullocks Harbour", + "scheduled_service": "no", + "gps_code": "MYBG", + "iata_code": "GHC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Great_Harbour_Cay_Airport" + }, + { + "id": "326434", + "ident": "MYBO", + "type": "small_airport", + "name": "Ocean Cay Airport", + "latitude_deg": "25.422916", + "longitude_deg": "-79.209471", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-BI", + "municipality": "Ocean Cay", + "scheduled_service": "no", + "gps_code": "MYBO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ocean_Cay_Airport", + "keywords": "Sandy Cay" + }, + { + "id": "4935", + "ident": "MYBS", + "type": "medium_airport", + "name": "South Bimini Airport", + "latitude_deg": "25.6998996735", + "longitude_deg": "-79.2647018433", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-BI", + "municipality": "South Bimini", + "scheduled_service": "yes", + "gps_code": "MYBS", + "iata_code": "BIM", + "wikipedia_link": "https://en.wikipedia.org/wiki/South_Bimini_Airport" + }, + { + "id": "4936", + "ident": "MYCA", + "type": "medium_airport", + "name": "Arthur's Town Airport", + "latitude_deg": "24.6294", + "longitude_deg": "-75.673797", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-CI", + "municipality": "Arthur's Town", + "scheduled_service": "yes", + "gps_code": "MYCA", + "iata_code": "ATC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arthur's_Town_Airport" + }, + { + "id": "4937", + "ident": "MYCB", + "type": "medium_airport", + "name": "New Bight Airport", + "latitude_deg": "24.3153", + "longitude_deg": "-75.452301", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-CI", + "municipality": "Cat Island", + "scheduled_service": "yes", + "gps_code": "MYCB", + "iata_code": "TBI", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Bight_Airport" + }, + { + "id": "30866", + "ident": "MYCC", + "type": "closed", + "name": "Cat Cay Airport", + "latitude_deg": "25.554555", + "longitude_deg": "-79.275151", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-BI", + "municipality": "North Cat Cay", + "scheduled_service": "no", + "gps_code": "MYCC", + "iata_code": "CXY", + "home_link": "https://www.catcayyachtclub.com/club/scripts/library/view_document.asp?NS=IS&DN=AIRPORT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cat_Cays_Airport" + }, + { + "id": "31985", + "ident": "MYCH", + "type": "small_airport", + "name": "Hawks Nest Airport", + "latitude_deg": "24.15449", + "longitude_deg": "-75.51796", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-CI", + "municipality": "Hawks Nest Creek", + "scheduled_service": "no", + "gps_code": "MYCH", + "home_link": "http://www.hawks-nest.com/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hawks_Nest_Airport" + }, + { + "id": "4938", + "ident": "MYCI", + "type": "medium_airport", + "name": "Colonel Hill Airport", + "latitude_deg": "22.7456", + "longitude_deg": "-74.182404", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-CK", + "municipality": "Colonel Hill", + "scheduled_service": "yes", + "gps_code": "MYCI", + "iata_code": "CRI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Colonial_Hill_Airport", + "keywords": "Crooked Island Airport" + }, + { + "id": "32181", + "ident": "MYCP", + "type": "small_airport", + "name": "Pitts Town Airport", + "latitude_deg": "22.8297", + "longitude_deg": "-74.3461", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-CK", + "municipality": "Pitts Town", + "scheduled_service": "no", + "gps_code": "MYCP", + "iata_code": "PWN" + }, + { + "id": "31986", + "ident": "MYCS", + "type": "small_airport", + "name": "Cay Sal Airport", + "latitude_deg": "23.696399688720703", + "longitude_deg": "-80.32129669189453", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-BI", + "municipality": "Cay Sal", + "scheduled_service": "no", + "gps_code": "MYCS" + }, + { + "id": "31987", + "ident": "MYCX", + "type": "closed", + "name": "Cutlass Bay Airport", + "latitude_deg": "24.149141", + "longitude_deg": "-75.398", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-CI", + "municipality": "Cutlass Bay", + "scheduled_service": "no", + "keywords": "MYCX" + }, + { + "id": "300108", + "ident": "MYCZ", + "type": "heliport", + "name": "AUTEC Heliport", + "latitude_deg": "24.709722", + "longitude_deg": "-77.7725", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-NS", + "municipality": "Andros Town", + "scheduled_service": "no", + "gps_code": "MYCZ", + "local_code": "NCZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Autec_Heliport", + "keywords": "Atlantic Undersea Test and Evaluation Center" + }, + { + "id": "46383", + "ident": "MYEB", + "type": "small_airport", + "name": "Black Point Airstrip", + "latitude_deg": "24.089488448799997", + "longitude_deg": "-76.3979172707", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-EX", + "municipality": "Black Point", + "scheduled_service": "no", + "gps_code": "MYEB" + }, + { + "id": "4939", + "ident": "MYEF", + "type": "medium_airport", + "name": "Exuma International Airport", + "latitude_deg": "23.562599", + "longitude_deg": "-75.877998", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-EX", + "municipality": "Moss Town", + "scheduled_service": "yes", + "gps_code": "MYEF", + "iata_code": "GGT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Exuma_International_Airport" + }, + { + "id": "4940", + "ident": "MYEG", + "type": "closed", + "name": "George Town Airport", + "latitude_deg": "23.4667", + "longitude_deg": "-75.7817", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-EX", + "municipality": "George Town", + "scheduled_service": "no", + "gps_code": "MYEG", + "wikipedia_link": "https://en.wikipedia.org/wiki/George_Town_Airport" + }, + { + "id": "4941", + "ident": "MYEH", + "type": "medium_airport", + "name": "North Eleuthera Airport", + "latitude_deg": "25.474899292", + "longitude_deg": "-76.6835021973", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-HI", + "municipality": "North Eleuthera", + "scheduled_service": "yes", + "gps_code": "MYEH", + "iata_code": "ELH", + "wikipedia_link": "https://en.wikipedia.org/wiki/North_Eleuthera_Airport" + }, + { + "id": "31989", + "ident": "MYEL", + "type": "small_airport", + "name": "Lee Stocking Airport", + "latitude_deg": "23.77560043334961", + "longitude_deg": "-76.10359954833984", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-EX", + "municipality": "Lee Stocking", + "scheduled_service": "no", + "gps_code": "MYEL" + }, + { + "id": "4942", + "ident": "MYEM", + "type": "medium_airport", + "name": "Governor's Harbour Airport", + "latitude_deg": "25.2847", + "longitude_deg": "-76.331001", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-CE", + "municipality": "Governor's Harbour", + "scheduled_service": "yes", + "gps_code": "MYEM", + "iata_code": "GHB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Governor's_Harbour_Airport" + }, + { + "id": "4943", + "ident": "MYEN", + "type": "medium_airport", + "name": "Normans Cay Airport", + "latitude_deg": "24.594299", + "longitude_deg": "-76.820198", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-EX", + "municipality": "Normans Cay", + "scheduled_service": "no", + "gps_code": "MYEN", + "iata_code": "NMC" + }, + { + "id": "4944", + "ident": "MYER", + "type": "medium_airport", + "name": "Rock Sound Airport", + "latitude_deg": "24.8950787333", + "longitude_deg": "-76.1768817902", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-SE", + "municipality": "Rock Sound", + "scheduled_service": "no", + "gps_code": "MYER", + "iata_code": "RSD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rock_Sound_International_Airport" + }, + { + "id": "4945", + "ident": "MYES", + "type": "medium_airport", + "name": "Staniel Cay Airport", + "latitude_deg": "24.169099807739258", + "longitude_deg": "-76.43910217285156", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-EX", + "scheduled_service": "no", + "gps_code": "MYES", + "iata_code": "TYM" + }, + { + "id": "31990", + "ident": "MYEY", + "type": "small_airport", + "name": "Hog Cay Airport", + "latitude_deg": "23.3972", + "longitude_deg": "-75.496902", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-EX", + "municipality": "Hog Cay", + "scheduled_service": "no", + "gps_code": "MYEY", + "keywords": "Blue Island Airfield" + }, + { + "id": "31991", + "ident": "MYGD", + "type": "small_airport", + "name": "Deep Water Cay Airport", + "latitude_deg": "26.63170051574707", + "longitude_deg": "-77.92169952392578", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-EG", + "municipality": "Deep Water Cay", + "scheduled_service": "no", + "gps_code": "MYGD" + }, + { + "id": "4946", + "ident": "MYGF", + "type": "medium_airport", + "name": "Grand Bahama International Airport", + "latitude_deg": "26.5587005615", + "longitude_deg": "-78.695602417", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-FP", + "municipality": "Freeport", + "scheduled_service": "yes", + "gps_code": "MYGF", + "iata_code": "FPO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Bahama_International_Airport" + }, + { + "id": "31992", + "ident": "MYGM", + "type": "small_airport", + "name": "Grand Bahama Auxiliary Airfield", + "latitude_deg": "26.631901", + "longitude_deg": "-78.3592", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-EG", + "municipality": "High Rock", + "scheduled_service": "no", + "gps_code": "MYGM", + "iata_code": "GBI" + }, + { + "id": "32679", + "ident": "MYGW", + "type": "small_airport", + "name": "West End Airport", + "latitude_deg": "26.685301", + "longitude_deg": "-78.974998", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-WG", + "municipality": "West End", + "scheduled_service": "no", + "gps_code": "MYGW", + "iata_code": "WTD", + "wikipedia_link": "https://en.wikipedia.org/wiki/West_End_Airport" + }, + { + "id": "4947", + "ident": "MYIG", + "type": "medium_airport", + "name": "Inagua Airport", + "latitude_deg": "20.975000381469727", + "longitude_deg": "-73.66690063476562", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-IN", + "municipality": "Matthew Town", + "scheduled_service": "yes", + "gps_code": "MYIG", + "iata_code": "IGA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Inagua_Airport" + }, + { + "id": "22655", + "ident": "MYK", + "type": "small_airport", + "name": "May Creek Airport", + "latitude_deg": "61.3357009888", + "longitude_deg": "-142.68699646", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "May Creek", + "scheduled_service": "yes", + "gps_code": "MYK", + "iata_code": "MYK", + "local_code": "MYK", + "wikipedia_link": "https://en.wikipedia.org/wiki/May_Creek_Airport" + }, + { + "id": "4948", + "ident": "MYLD", + "type": "medium_airport", + "name": "Deadman's Cay Airport", + "latitude_deg": "23.1790008545", + "longitude_deg": "-75.09359741210001", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-LI", + "municipality": "Deadman's Cay", + "scheduled_service": "yes", + "gps_code": "MYLD", + "iata_code": "LGI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Deadman's_Cay_Airport" + }, + { + "id": "326433", + "ident": "MYLR", + "type": "medium_airport", + "name": "Hard Bargain Airport", + "latitude_deg": "23.011194", + "longitude_deg": "-74.905889", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-LI", + "scheduled_service": "no", + "gps_code": "MYLR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hard_Bargain_Airport" + }, + { + "id": "4949", + "ident": "MYLS", + "type": "medium_airport", + "name": "Stella Maris Airport", + "latitude_deg": "23.582317", + "longitude_deg": "-75.268621", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-LI", + "municipality": "Stella Maris", + "scheduled_service": "yes", + "gps_code": "MYLS", + "iata_code": "SML", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stella_Maris_Airport" + }, + { + "id": "4950", + "ident": "MYMM", + "type": "medium_airport", + "name": "Mayaguana Airport", + "latitude_deg": "22.379499", + "longitude_deg": "-73.013494", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-MG", + "municipality": "Abrahams Bay", + "scheduled_service": "yes", + "gps_code": "MYMM", + "iata_code": "MYG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mayaguana_Airport" + }, + { + "id": "4951", + "ident": "MYNN", + "type": "large_airport", + "name": "Lynden Pindling International Airport", + "latitude_deg": "25.039", + "longitude_deg": "-77.466202", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-NP", + "municipality": "Nassau", + "scheduled_service": "yes", + "gps_code": "MYNN", + "iata_code": "NAS", + "home_link": "http://www.nas.bs/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lynden_Pindling_International_Airport", + "keywords": "Nassau International Airport" + }, + { + "id": "35304", + "ident": "MYPI", + "type": "closed", + "name": "Nassau Paradise Island Airport", + "latitude_deg": "25.078138", + "longitude_deg": "-77.298689", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-NP", + "municipality": "Nassau", + "scheduled_service": "no", + "gps_code": "MYPI", + "iata_code": "PID" + }, + { + "id": "4952", + "ident": "MYRD", + "type": "medium_airport", + "name": "Duncan Town Airport", + "latitude_deg": "22.181800842285156", + "longitude_deg": "-75.72949981689453", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-RI", + "scheduled_service": "no", + "gps_code": "MYRD", + "iata_code": "DCT" + }, + { + "id": "4953", + "ident": "MYRP", + "type": "small_airport", + "name": "Rum Cay Airport", + "latitude_deg": "23.68440055847168", + "longitude_deg": "-74.83619689941406", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-RC", + "scheduled_service": "no", + "gps_code": "MYRP", + "iata_code": "RCY" + }, + { + "id": "314051", + "ident": "MYS", + "type": "small_airport", + "name": "Moyale Airport", + "latitude_deg": "3.5623", + "longitude_deg": "39.0433", + "elevation_ft": "3887", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-OR", + "municipality": "Moyale", + "scheduled_service": "no", + "iata_code": "MYS" + }, + { + "id": "4954", + "ident": "MYSM", + "type": "medium_airport", + "name": "San Salvador Airport", + "latitude_deg": "24.063299", + "longitude_deg": "-74.524002", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-SS", + "municipality": "San Salvador", + "scheduled_service": "yes", + "gps_code": "MYSM", + "iata_code": "ZSA", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Salvador_Airport" + }, + { + "id": "306956", + "ident": "MYX", + "type": "small_airport", + "name": "Menyamya Airport", + "latitude_deg": "-7.21166666667", + "longitude_deg": "146.019361111", + "elevation_ft": "3880", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Menyamya", + "scheduled_service": "no", + "gps_code": "AYMC", + "iata_code": "MYX", + "local_code": "MYY" + }, + { + "id": "35341", + "ident": "MYX4", + "type": "small_airport", + "name": "Big Whale Cay Airport", + "latitude_deg": "25.399599", + "longitude_deg": "-77.791", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-NS", + "municipality": "Big Whale Cay", + "scheduled_service": "no", + "gps_code": "MYBW", + "keywords": "MYX4" + }, + { + "id": "35343", + "ident": "MYX5", + "type": "closed", + "name": "Cistern Field", + "latitude_deg": "25.7787", + "longitude_deg": "-77.885201", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-BY", + "municipality": "Cistern Cay", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cistern_Field", + "keywords": "MYBT, MYX5" + }, + { + "id": "35344", + "ident": "MYX6", + "type": "heliport", + "name": "Oakes Field-Nassau", + "latitude_deg": "25.04050064086914", + "longitude_deg": "-77.35150146484375", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-NP", + "municipality": "Nassau", + "scheduled_service": "no", + "gps_code": "MYX6", + "local_code": "MYX6" + }, + { + "id": "35345", + "ident": "MYX7", + "type": "small_airport", + "name": "Rudder Cut Cay Airport", + "latitude_deg": "23.88640022277832", + "longitude_deg": "-76.25370025634766", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-EX", + "municipality": "Rudder Cut Cay", + "scheduled_service": "no", + "gps_code": "MYX7", + "local_code": "MYX7" + }, + { + "id": "35346", + "ident": "MYX8", + "type": "small_airport", + "name": "Darby Island Airport", + "latitude_deg": "23.850299835205078", + "longitude_deg": "-76.22820281982422", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-EX", + "municipality": "Darby Island", + "scheduled_service": "no", + "gps_code": "MYX8", + "local_code": "MYX8" + }, + { + "id": "35347", + "ident": "MYXC", + "type": "small_airport", + "name": "Hog Key Airport", + "latitude_deg": "23.60070037841797", + "longitude_deg": "-75.33930206298828", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-LI", + "municipality": "Long Island", + "scheduled_service": "no", + "gps_code": "MYXC", + "local_code": "MYXC" + }, + { + "id": "31997", + "ident": "MYXD", + "type": "small_airport", + "name": "Leaf Cay Airport", + "latitude_deg": "24.149612", + "longitude_deg": "-76.473534", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-EX", + "municipality": "Leaf Cay", + "scheduled_service": "no", + "gps_code": "MYXD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leaf_Cay_Airport" + }, + { + "id": "337551", + "ident": "MYXF", + "type": "small_airport", + "name": "Little Darby Island Airport", + "latitude_deg": "23.85814", + "longitude_deg": "-76.22309", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-EX", + "municipality": "Little Darby Island", + "scheduled_service": "no", + "gps_code": "MYXF" + }, + { + "id": "35348", + "ident": "MYXH", + "type": "small_airport", + "name": "Sampson Cay Airport", + "latitude_deg": "24.215999603271484", + "longitude_deg": "-76.47850036621094", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-EX", + "municipality": "Sampson Cay", + "scheduled_service": "no", + "gps_code": "MYXH", + "local_code": "MYXH" + }, + { + "id": "35349", + "ident": "MYZ2", + "type": "closed", + "name": "Cape Eleuthera Airport", + "latitude_deg": "24.7861", + "longitude_deg": "-76.2962", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-SE", + "municipality": "Cape Eleuthera", + "scheduled_service": "no", + "gps_code": "MYEC", + "iata_code": "CEL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cape_Eleuthera_Airport", + "keywords": "MYZ2" + }, + { + "id": "35342", + "ident": "MYZ3", + "type": "small_airport", + "name": "Little Whale Cay Berry Islands Airport", + "latitude_deg": "25.441799", + "longitude_deg": "-77.761703", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "BS", + "iso_region": "BS-NS", + "municipality": "Little Whale Cay", + "scheduled_service": "no", + "gps_code": "MYBX", + "local_code": "MYZ3" + }, + { + "id": "318382", + "ident": "MZ-0001", + "type": "small_airport", + "name": "Mbatamila Airport", + "latitude_deg": "-12.169599", + "longitude_deg": "37.54545", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-A", + "scheduled_service": "no" + }, + { + "id": "318383", + "ident": "MZ-0002", + "type": "small_airport", + "name": "Macalonge Airport", + "latitude_deg": "-12.499796", + "longitude_deg": "35.428228", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-A", + "municipality": "Macalonge", + "scheduled_service": "no" + }, + { + "id": "318384", + "ident": "MZ-0003", + "type": "small_airport", + "name": "Metangula Airport", + "latitude_deg": "-12.701334", + "longitude_deg": "34.803468", + "elevation_ft": "1650", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-A", + "municipality": "Metangula", + "scheduled_service": "no" + }, + { + "id": "27303", + "ident": "MZ-0004", + "type": "closed", + "name": "Magaruque Airport", + "latitude_deg": "-21.9672451019", + "longitude_deg": "35.4247283936", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-I", + "municipality": "Magaruque Island", + "scheduled_service": "no", + "iata_code": "MFW" + }, + { + "id": "27304", + "ident": "MZ-0005", + "type": "small_airport", + "name": "Paradise Island Airport", + "latitude_deg": "-21.614999771118", + "longitude_deg": "35.338001251221", + "elevation_ft": "30", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-I", + "municipality": "Santa Carolina", + "scheduled_service": "no", + "iata_code": "NTC", + "keywords": "Santa Carolina Airport" + }, + { + "id": "318846", + "ident": "MZ-0006", + "type": "small_airport", + "name": "Xinavane Airport", + "latitude_deg": "-25.031328", + "longitude_deg": "32.748115", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-L", + "municipality": "Xinavane", + "scheduled_service": "no" + }, + { + "id": "318847", + "ident": "MZ-0007", + "type": "small_airport", + "name": "Quissico Airport", + "latitude_deg": "-24.70554", + "longitude_deg": "34.732691", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-I", + "municipality": "Quissico", + "scheduled_service": "no" + }, + { + "id": "318848", + "ident": "MZ-0008", + "type": "small_airport", + "name": "Massinga Airport", + "latitude_deg": "-23.345136", + "longitude_deg": "35.339172", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-I", + "municipality": "Massinga", + "scheduled_service": "no" + }, + { + "id": "318849", + "ident": "MZ-0009", + "type": "small_airport", + "name": "Homoine Airport", + "latitude_deg": "-23.866113", + "longitude_deg": "35.136698", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-I", + "municipality": "Homoine", + "scheduled_service": "no" + }, + { + "id": "318850", + "ident": "MZ-0010", + "type": "small_airport", + "name": "Mabote Airport", + "latitude_deg": "-22.044039", + "longitude_deg": "34.158814", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-I", + "municipality": "Mabote", + "scheduled_service": "no" + }, + { + "id": "318851", + "ident": "MZ-0011", + "type": "small_airport", + "name": "Baixo Pinda Airport", + "latitude_deg": "-14.210912", + "longitude_deg": "40.696848", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-N", + "municipality": "Nanatha", + "scheduled_service": "no" + }, + { + "id": "318852", + "ident": "MZ-0012", + "type": "small_airport", + "name": "Ibo Airport", + "latitude_deg": "-12.350174", + "longitude_deg": "40.602297", + "elevation_ft": "27", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-P", + "municipality": "Ibo", + "scheduled_service": "no", + "gps_code": "FQIB", + "iata_code": "IBO" + }, + { + "id": "318853", + "ident": "MZ-0013", + "type": "small_airport", + "name": "Matemo Airport", + "latitude_deg": "-12.201529", + "longitude_deg": "40.569915", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-P", + "municipality": "Matemo", + "scheduled_service": "no" + }, + { + "id": "318854", + "ident": "MZ-0014", + "type": "small_airport", + "name": "Medjumbe Airport", + "latitude_deg": "-11.817449", + "longitude_deg": "40.602972", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-P", + "municipality": "Medjumbe", + "scheduled_service": "no" + }, + { + "id": "318855", + "ident": "MZ-0015", + "type": "closed", + "name": "Tecomaji Airport", + "latitude_deg": "-10.776306", + "longitude_deg": "40.643912", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-P", + "municipality": "Tecomaji", + "scheduled_service": "no" + }, + { + "id": "318856", + "ident": "MZ-0016", + "type": "small_airport", + "name": "Mbamba Airport", + "latitude_deg": "-12.140706", + "longitude_deg": "38.318613", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-A", + "municipality": "Mbamba", + "scheduled_service": "no" + }, + { + "id": "318857", + "ident": "MZ-0017", + "type": "small_airport", + "name": "Lugenda Wilderness Camp Airstrip", + "latitude_deg": "-12.288658", + "longitude_deg": "37.818062", + "elevation_ft": "976", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-A", + "municipality": "Mbamba", + "scheduled_service": "no" + }, + { + "id": "318947", + "ident": "MZ-0018", + "type": "small_airport", + "name": "Buffalo Camp Airstrip", + "latitude_deg": "-20.913318", + "longitude_deg": "34.283153", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-S", + "municipality": "Machanga", + "scheduled_service": "no" + }, + { + "id": "318948", + "ident": "MZ-0019", + "type": "small_airport", + "name": "Québese Airport", + "latitude_deg": "-20.630937", + "longitude_deg": "34.066019", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-S", + "municipality": "Chibabava", + "scheduled_service": "no" + }, + { + "id": "318949", + "ident": "MZ-0020", + "type": "small_airport", + "name": "Machasi Airport", + "latitude_deg": "-20.823041", + "longitude_deg": "33.378488", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-B", + "municipality": "Machasi", + "scheduled_service": "no" + }, + { + "id": "318950", + "ident": "MZ-0021", + "type": "small_airport", + "name": "Massangena Airport", + "latitude_deg": "-21.587678", + "longitude_deg": "32.929183", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-G", + "municipality": "Massangena", + "scheduled_service": "no" + }, + { + "id": "318951", + "ident": "MZ-0022", + "type": "small_airport", + "name": "Tondo Lodge Airstrip", + "latitude_deg": "-21.425639", + "longitude_deg": "33.865274", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-I", + "municipality": "Gueligue", + "scheduled_service": "no" + }, + { + "id": "318952", + "ident": "MZ-0023", + "type": "small_airport", + "name": "Espungabera Airport", + "latitude_deg": "-20.438769", + "longitude_deg": "32.774927", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-B", + "municipality": "Espungabera", + "scheduled_service": "no" + }, + { + "id": "318954", + "ident": "MZ-0024", + "type": "small_airport", + "name": "Sussundenga Airport", + "latitude_deg": "-19.408009", + "longitude_deg": "33.28094", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-B", + "municipality": "Sussundenga", + "scheduled_service": "no" + }, + { + "id": "318955", + "ident": "MZ-0025", + "type": "small_airport", + "name": "Mafambisse Airport", + "latitude_deg": "-19.575645", + "longitude_deg": "34.633552", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-S", + "municipality": "Mafambisse", + "scheduled_service": "no" + }, + { + "id": "318956", + "ident": "MZ-0026", + "type": "small_airport", + "name": "Mague Airport", + "latitude_deg": "-15.810219", + "longitude_deg": "31.741015", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-T", + "municipality": "Mague", + "scheduled_service": "no" + }, + { + "id": "318957", + "ident": "MZ-0027", + "type": "small_airport", + "name": "Blanguete Airport", + "latitude_deg": "-15.684819", + "longitude_deg": "30.610828", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-T", + "scheduled_service": "no" + }, + { + "id": "318958", + "ident": "MZ-0028", + "type": "small_airport", + "name": "Zumbo Airport", + "latitude_deg": "-15.612746", + "longitude_deg": "30.421241", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-T", + "municipality": "Zumbo", + "scheduled_service": "no" + }, + { + "id": "318960", + "ident": "MZ-0029", + "type": "small_airport", + "name": "Zambue Airport", + "latitude_deg": "-15.132704", + "longitude_deg": "30.802094", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-T", + "municipality": "Zambue", + "scheduled_service": "no" + }, + { + "id": "318961", + "ident": "MZ-0030", + "type": "small_airport", + "name": "Fingoe Airport", + "latitude_deg": "-15.172786", + "longitude_deg": "31.906405", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-T", + "municipality": "Fingoe", + "scheduled_service": "no" + }, + { + "id": "318962", + "ident": "MZ-0031", + "type": "small_airport", + "name": "Milange Airport", + "latitude_deg": "-16.124602", + "longitude_deg": "35.734548", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-Q", + "municipality": "Milange", + "scheduled_service": "no" + }, + { + "id": "318963", + "ident": "MZ-0032", + "type": "small_airport", + "name": "Gile Airport", + "latitude_deg": "-16.163767", + "longitude_deg": "38.360793", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-Q", + "municipality": "Gile", + "scheduled_service": "no" + }, + { + "id": "318964", + "ident": "MZ-0033", + "type": "small_airport", + "name": "Chiure Airport", + "latitude_deg": "-13.407165", + "longitude_deg": "39.803192", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-P", + "municipality": "Chiure", + "scheduled_service": "no" + }, + { + "id": "318982", + "ident": "MZ-0034", + "type": "small_airport", + "name": "Macomia Airport", + "latitude_deg": "-12.271035", + "longitude_deg": "40.110719", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-P", + "municipality": "Macomia", + "scheduled_service": "no" + }, + { + "id": "318983", + "ident": "MZ-0035", + "type": "small_airport", + "name": "Meluco Airport", + "latitude_deg": "-12.525447", + "longitude_deg": "39.654529", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-P", + "municipality": "Meluco", + "scheduled_service": "no" + }, + { + "id": "318989", + "ident": "MZ-0036", + "type": "small_airport", + "name": "Malvernia Airport", + "latitude_deg": "-22.088361", + "longitude_deg": "31.693199", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-G", + "municipality": "Malvernia", + "scheduled_service": "no" + }, + { + "id": "319010", + "ident": "MZ-0037", + "type": "small_airport", + "name": "Macossa Airport", + "latitude_deg": "-17.86764", + "longitude_deg": "33.915103", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-B", + "municipality": "Macossa", + "scheduled_service": "no" + }, + { + "id": "319011", + "ident": "MZ-0038", + "type": "small_airport", + "name": "Mecanhelas Airport", + "latitude_deg": "-15.202762", + "longitude_deg": "35.870151", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-A", + "municipality": "Mecanhelas", + "scheduled_service": "no" + }, + { + "id": "319238", + "ident": "MZ-0039", + "type": "small_airport", + "name": "Mucumbura Airport", + "latitude_deg": "-16.187755", + "longitude_deg": "31.686824", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-T", + "municipality": "Mucumbura", + "scheduled_service": "no" + }, + { + "id": "319257", + "ident": "MZ-0040", + "type": "small_airport", + "name": "Catandica Airport", + "latitude_deg": "-18.136596", + "longitude_deg": "33.202238", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-B", + "municipality": "Catandica", + "scheduled_service": "no" + }, + { + "id": "321445", + "ident": "MZ-0041", + "type": "small_airport", + "name": "Vale Chassapa Airport", + "latitude_deg": "-18.394034", + "longitude_deg": "35.599975", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-S", + "municipality": "Vale Chassapa", + "scheduled_service": "no" + }, + { + "id": "321446", + "ident": "MZ-0042", + "type": "small_airport", + "name": "Mopeia Airport", + "latitude_deg": "-17.977031", + "longitude_deg": "35.705003", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-Q", + "municipality": "Mopeia", + "scheduled_service": "no" + }, + { + "id": "321447", + "ident": "MZ-0043", + "type": "small_airport", + "name": "Chemba Airport", + "latitude_deg": "-17.167836", + "longitude_deg": "34.882624", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-S", + "municipality": "Chemba", + "scheduled_service": "no" + }, + { + "id": "323203", + "ident": "MZ-0044", + "type": "small_airport", + "name": "Massingir Airport", + "latitude_deg": "-23.939579", + "longitude_deg": "32.153803", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-G", + "municipality": "Massingir", + "scheduled_service": "no" + }, + { + "id": "326991", + "ident": "MZ-0045", + "type": "small_airport", + "name": "Inhassoro Airstrip", + "latitude_deg": "-21.547634", + "longitude_deg": "35.119673", + "elevation_ft": "112", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-I", + "municipality": "Inhassoro", + "scheduled_service": "no" + }, + { + "id": "326992", + "ident": "MZ-0046", + "type": "small_airport", + "name": "Quirimba Airstrip", + "latitude_deg": "-12.429533", + "longitude_deg": "40.614222", + "elevation_ft": "39", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-P", + "municipality": "Quirimba Island", + "scheduled_service": "no" + }, + { + "id": "328330", + "ident": "MZ-0047", + "type": "small_airport", + "name": "Vamizi Airstrip", + "latitude_deg": "-11.030273", + "longitude_deg": "40.612378", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-P", + "municipality": "Cabo Delgado", + "scheduled_service": "no" + }, + { + "id": "340238", + "ident": "MZ-0048", + "type": "small_airport", + "name": "Afungi Airport", + "latitude_deg": "-10.84903", + "longitude_deg": "40.50541", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-P", + "municipality": "Palma", + "scheduled_service": "no" + }, + { + "id": "340239", + "ident": "MZ-0049", + "type": "closed", + "name": "Quiterajo Airstrip", + "latitude_deg": "-11.75407", + "longitude_deg": "40.42514", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-P", + "municipality": "Quiterajo", + "scheduled_service": "no" + }, + { + "id": "340240", + "ident": "MZ-0050", + "type": "closed", + "name": "Quinga Airstrip", + "latitude_deg": "-15.84374", + "longitude_deg": "40.23132", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-N", + "municipality": "Quinga", + "scheduled_service": "no" + }, + { + "id": "340241", + "ident": "MZ-0051", + "type": "small_airport", + "name": "Kenmare Moma Airport", + "latitude_deg": "-16.55068", + "longitude_deg": "39.62062", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-N", + "municipality": "Larde", + "scheduled_service": "no" + }, + { + "id": "340243", + "ident": "MZ-0052", + "type": "small_airport", + "name": "Pomene Airstrip", + "latitude_deg": "-22.94259", + "longitude_deg": "35.57047", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-I", + "municipality": "Pomene", + "scheduled_service": "no" + }, + { + "id": "340244", + "ident": "MZ-0053", + "type": "small_airport", + "name": "Zongoene Airport", + "latitude_deg": "-25.19949", + "longitude_deg": "33.50123", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-G", + "municipality": "Xai-Xai", + "scheduled_service": "no" + }, + { + "id": "340245", + "ident": "MZ-0054", + "type": "small_airport", + "name": "Machangulo Airport", + "latitude_deg": "-26.20306", + "longitude_deg": "32.93819", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-L", + "municipality": "Matutuine", + "scheduled_service": "no" + }, + { + "id": "342732", + "ident": "MZ-0055", + "type": "closed", + "name": "Moma Airport", + "latitude_deg": "-16.74466", + "longitude_deg": "39.21883", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-N", + "municipality": "Moma", + "scheduled_service": "no", + "local_code": "MMW" + }, + { + "id": "351655", + "ident": "MZ-0056", + "type": "closed", + "name": "Former Marromeu Airport", + "latitude_deg": "-18.29363", + "longitude_deg": "35.93434", + "elevation_ft": "43", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-S", + "municipality": "Marromeu", + "scheduled_service": "no", + "keywords": "RRM" + }, + { + "id": "351656", + "ident": "MZ-0057", + "type": "closed", + "name": "Chupanga Airport", + "latitude_deg": "-18.0336", + "longitude_deg": "35.61152", + "elevation_ft": "123", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-S", + "municipality": "Chupanga", + "scheduled_service": "no" + }, + { + "id": "351657", + "ident": "MZ-0058", + "type": "closed", + "name": "Tambara Airport", + "latitude_deg": "-16.73837", + "longitude_deg": "34.23129", + "elevation_ft": "486", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-B", + "municipality": "Tambara", + "scheduled_service": "no" + }, + { + "id": "351658", + "ident": "MZ-0059", + "type": "small_airport", + "name": "Emboqui Airport", + "latitude_deg": "-15.60454", + "longitude_deg": "32.41439", + "elevation_ft": "1240", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-T", + "municipality": "Emboqui", + "scheduled_service": "no" + }, + { + "id": "32441", + "ident": "MZ-TGS", + "type": "small_airport", + "name": "Chokwé Airport", + "latitude_deg": "-24.520599365234375", + "longitude_deg": "32.965301513671875", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-G", + "municipality": "Chokwé", + "scheduled_service": "no", + "iata_code": "TGS" + }, + { + "id": "4956", + "ident": "MZBZ", + "type": "large_airport", + "name": "Philip S. W. Goldson International Airport", + "latitude_deg": "17.539951", + "longitude_deg": "-88.303556", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-BZ", + "municipality": "Belize City", + "scheduled_service": "yes", + "gps_code": "MZBZ", + "iata_code": "BZE", + "home_link": "http://www.pgiabelize.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Philip_S._W._Goldson_International_Airport", + "keywords": "Belize International, Ladyville" + }, + { + "id": "309571", + "ident": "MZE", + "type": "small_airport", + "name": "Manatee Airport", + "latitude_deg": "17.27846", + "longitude_deg": "-89.0238", + "elevation_ft": "343", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-CY", + "scheduled_service": "no", + "iata_code": "MZE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manatee_Airport" + }, + { + "id": "338066", + "ident": "MZJC", + "type": "small_airport", + "name": "Johnny Chan Chen Airstrip", + "latitude_deg": "18.44031", + "longitude_deg": "-88.45334", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-CZL", + "municipality": "Chan Chen", + "scheduled_service": "no", + "gps_code": "MZJC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Johnny_Chan_Chen_Airstrip" + }, + { + "id": "325351", + "ident": "MZMF", + "type": "small_airport", + "name": "San Ignacio Town (Maya Flats) Airstrip", + "latitude_deg": "17.104872", + "longitude_deg": "-89.101129", + "elevation_ft": "351", + "continent": "NA", + "iso_country": "BZ", + "iso_region": "BZ-CY", + "municipality": "Maya Flats", + "scheduled_service": "no", + "gps_code": "MZMF", + "iata_code": "CYD", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Ignacio_Town_Airstrip", + "keywords": "Maya Flats Airstrip" + }, + { + "id": "22656", + "ident": "N00", + "type": "closed", + "name": "Maben Airport", + "latitude_deg": "42.272308", + "longitude_deg": "-74.394037", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "NY98", + "local_code": "NY98", + "keywords": "N00, NY98, Maben, Lexington, Prattsville" + }, + { + "id": "22657", + "ident": "N01", + "type": "heliport", + "name": "Mosquero Emergency Services Heliport", + "latitude_deg": "35.782444", + "longitude_deg": "-103.958028", + "elevation_ft": "5590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Mosquero", + "scheduled_service": "no", + "gps_code": "N01", + "local_code": "N01" + }, + { + "id": "45542", + "ident": "N02", + "type": "heliport", + "name": "Red River Heliport", + "latitude_deg": "36.709794", + "longitude_deg": "-105.418922", + "elevation_ft": "8617", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Red River", + "scheduled_service": "no", + "gps_code": "N02", + "local_code": "N02" + }, + { + "id": "22659", + "ident": "N04", + "type": "closed", + "name": "Griswold Airport", + "latitude_deg": "41.271198", + "longitude_deg": "-72.549698", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Madison", + "scheduled_service": "no", + "iata_code": "MPE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Griswold_Airport", + "keywords": "N04" + }, + { + "id": "22660", + "ident": "N05", + "type": "small_airport", + "name": "Hackettstown Airport", + "latitude_deg": "40.820098876953125", + "longitude_deg": "-74.8552017211914", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Hackettstown", + "scheduled_service": "no", + "gps_code": "N05", + "local_code": "N05" + }, + { + "id": "22661", + "ident": "N07", + "type": "small_airport", + "name": "Lincoln Park Airport", + "latitude_deg": "40.9474983215332", + "longitude_deg": "-74.31449890136719", + "elevation_ft": "182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Lincoln Park", + "scheduled_service": "no", + "gps_code": "N07", + "local_code": "N07", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lincoln_Park_Airport", + "keywords": "Manhattan, New York City, NYC" + }, + { + "id": "22662", + "ident": "N08", + "type": "small_airport", + "name": "Flanagan Field", + "latitude_deg": "35.55670166015625", + "longitude_deg": "-77.56060028076172", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Farmville", + "scheduled_service": "no", + "gps_code": "N08", + "local_code": "N08" + }, + { + "id": "22663", + "ident": "N09", + "type": "heliport", + "name": "Northfield Heliport", + "latitude_deg": "41.72370147705078", + "longitude_deg": "-73.1156997680664", + "elevation_ft": "903", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Thomaston", + "scheduled_service": "no", + "gps_code": "N09", + "local_code": "N09" + }, + { + "id": "22664", + "ident": "N10", + "type": "small_airport", + "name": "Perkiomen Valley Airport", + "latitude_deg": "40.203999", + "longitude_deg": "-75.430298", + "elevation_ft": "277", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Collegeville", + "scheduled_service": "no", + "local_code": "32PA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Perkiomen_Valley_Airport", + "keywords": "N10" + }, + { + "id": "22665", + "ident": "N15", + "type": "small_airport", + "name": "Kingston Airport", + "latitude_deg": "39.20309829711914", + "longitude_deg": "-117.06400299072266", + "elevation_ft": "5950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Kingston", + "scheduled_service": "no", + "gps_code": "N15", + "local_code": "N15", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kingston_Airport_(Nevada)" + }, + { + "id": "22666", + "ident": "N16", + "type": "small_airport", + "name": "Centre Airpark", + "latitude_deg": "40.81169891357422", + "longitude_deg": "-77.6572036743164", + "elevation_ft": "1307", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Centre Hall", + "scheduled_service": "no", + "gps_code": "N16", + "local_code": "N16" + }, + { + "id": "45545", + "ident": "N17", + "type": "small_airport", + "name": "Vaughn Municipal Airport", + "latitude_deg": "34.60458", + "longitude_deg": "-105.191822", + "elevation_ft": "5928", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Vaughn", + "scheduled_service": "no", + "local_code": "N17" + }, + { + "id": "4655", + "ident": "N20", + "type": "small_airport", + "name": "Ine Airport", + "latitude_deg": "7.005553", + "longitude_deg": "171.656959", + "elevation_ft": "4", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-ARN", + "municipality": "Arno Atoll", + "scheduled_service": "no", + "iata_code": "IMI", + "local_code": "N20" + }, + { + "id": "22667", + "ident": "N21", + "type": "small_airport", + "name": "Holly Ridge/Topsail Island Airport", + "latitude_deg": "34.491001", + "longitude_deg": "-77.531094", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Holly Ridge", + "scheduled_service": "no", + "local_code": "N21", + "keywords": "NC95" + }, + { + "id": "22668", + "ident": "N22", + "type": "small_airport", + "name": "Sky Manor Airport", + "latitude_deg": "34.716800689697266", + "longitude_deg": "-77.59220123291016", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "N22", + "local_code": "N22" + }, + { + "id": "22669", + "ident": "N25", + "type": "small_airport", + "name": "Blue Heron Airport", + "latitude_deg": "42.6973", + "longitude_deg": "-74.1996", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Delanson", + "scheduled_service": "no", + "local_code": "N25", + "keywords": "Flying K Ranch" + }, + { + "id": "316235", + "ident": "N26", + "type": "small_airport", + "name": "Derby Aerodrome", + "latitude_deg": "35.1332", + "longitude_deg": "-79.6313", + "elevation_ft": "517", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Ellerbe", + "scheduled_service": "no", + "gps_code": "KN26", + "local_code": "N26", + "keywords": "NR08" + }, + { + "id": "22670", + "ident": "N29", + "type": "small_airport", + "name": "Magdalena Airport", + "latitude_deg": "34.094298", + "longitude_deg": "-107.297051", + "elevation_ft": "6727", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Magdalena", + "scheduled_service": "no", + "local_code": "N29" + }, + { + "id": "22671", + "ident": "N30", + "type": "small_airport", + "name": "Cherry Ridge Airport", + "latitude_deg": "41.51530075073242", + "longitude_deg": "-75.25150299072266", + "elevation_ft": "1357", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Honesdale", + "scheduled_service": "no", + "gps_code": "N30", + "local_code": "N30" + }, + { + "id": "22672", + "ident": "N31", + "type": "closed", + "name": "Kutztown Airport", + "latitude_deg": "40.503276", + "longitude_deg": "-75.785758", + "elevation_ft": "512", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Kutztown", + "scheduled_service": "no", + "keywords": "N31" + }, + { + "id": "22673", + "ident": "N33", + "type": "heliport", + "name": "Picatinny Army Heliport", + "latitude_deg": "40.961134", + "longitude_deg": "-74.5272", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Dover", + "scheduled_service": "no", + "local_code": "N33" + }, + { + "id": "22674", + "ident": "N39", + "type": "heliport", + "name": "Meyers Heliport", + "latitude_deg": "35.506099700927734", + "longitude_deg": "-82.73419952392578", + "elevation_ft": "2350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Candler", + "scheduled_service": "no", + "gps_code": "N39", + "local_code": "N39" + }, + { + "id": "22675", + "ident": "N41", + "type": "small_airport", + "name": "Waterbury Airport", + "latitude_deg": "41.632381", + "longitude_deg": "-73.048182", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Waterbury", + "scheduled_service": "no", + "gps_code": "KN41", + "local_code": "N41" + }, + { + "id": "22676", + "ident": "N42", + "type": "small_airport", + "name": "Shippensburg Airport", + "latitude_deg": "40.05839920043945", + "longitude_deg": "-77.46219635009766", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Shippensburg", + "scheduled_service": "no", + "gps_code": "N42", + "local_code": "N42" + }, + { + "id": "22677", + "ident": "N43", + "type": "small_airport", + "name": "Braden Airpark", + "latitude_deg": "40.7421989440918", + "longitude_deg": "-75.2428970336914", + "elevation_ft": "399", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Easton", + "scheduled_service": "no", + "gps_code": "N43", + "local_code": "N43" + }, + { + "id": "22678", + "ident": "N45", + "type": "small_airport", + "name": "Kobelt Airport", + "latitude_deg": "41.627899169921875", + "longitude_deg": "-74.13379669189453", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Wallkill", + "scheduled_service": "no", + "gps_code": "N45", + "local_code": "N45" + }, + { + "id": "22679", + "ident": "N46", + "type": "heliport", + "name": "U S Heliport", + "latitude_deg": "34.98429870605469", + "longitude_deg": "-80.41909790039062", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Wingate", + "scheduled_service": "no", + "gps_code": "N46", + "local_code": "N46" + }, + { + "id": "22680", + "ident": "N48", + "type": "heliport", + "name": "Horsham Valley Airways Inc Heliport", + "latitude_deg": "40.20209884643555", + "longitude_deg": "-75.1781997680664", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Horsham", + "scheduled_service": "no", + "gps_code": "N48", + "local_code": "N48" + }, + { + "id": "22681", + "ident": "N50", + "type": "small_airport", + "name": "Li Calzi Airport", + "latitude_deg": "39.40840148925781", + "longitude_deg": "-75.23709869384766", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bridgeton", + "scheduled_service": "no", + "gps_code": "N50", + "local_code": "N50" + }, + { + "id": "22682", + "ident": "N56", + "type": "small_airport", + "name": "Great Valley Airport", + "latitude_deg": "42.205101013183594", + "longitude_deg": "-78.64720153808594", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Great Valley", + "scheduled_service": "no", + "gps_code": "N56", + "local_code": "N56" + }, + { + "id": "22683", + "ident": "N61", + "type": "small_airport", + "name": "Hinshaw (Greenacres) Airport", + "latitude_deg": "35.87369918823242", + "longitude_deg": "-79.52749633789062", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Liberty", + "scheduled_service": "no", + "gps_code": "N61", + "local_code": "N61" + }, + { + "id": "22684", + "ident": "N63", + "type": "small_airport", + "name": "Meadow Brook Field", + "latitude_deg": "36.30149841308594", + "longitude_deg": "-80.14839935302734", + "elevation_ft": "631", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Walnut Cove", + "scheduled_service": "no", + "gps_code": "N63", + "local_code": "N63" + }, + { + "id": "22685", + "ident": "N65", + "type": "small_airport", + "name": "Apex Airport", + "latitude_deg": "42.7295", + "longitude_deg": "-74.164001", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Delanson", + "scheduled_service": "no", + "gps_code": "65NK", + "local_code": "65NK", + "keywords": "N65, Knox" + }, + { + "id": "22686", + "ident": "N72", + "type": "small_airport", + "name": "Warwick Municipal Airport", + "latitude_deg": "41.287601470947266", + "longitude_deg": "-74.28710174560547", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Warwick", + "scheduled_service": "no", + "gps_code": "N72", + "local_code": "N72", + "wikipedia_link": "https://en.wikipedia.org/wiki/Warwick_Municipal_Airport" + }, + { + "id": "22687", + "ident": "N74", + "type": "small_airport", + "name": "Penns Cave Airport", + "latitude_deg": "40.89030075073242", + "longitude_deg": "-77.60250091552734", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Centre Hall", + "scheduled_service": "no", + "gps_code": "N74", + "local_code": "N74" + }, + { + "id": "22688", + "ident": "N75", + "type": "closed", + "name": "Twin Pine Airport", + "latitude_deg": "40.3083992004", + "longitude_deg": "-74.75789642330001", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Pennington", + "scheduled_service": "no", + "gps_code": "N75", + "local_code": "N75" + }, + { + "id": "22689", + "ident": "N83", + "type": "small_airport", + "name": "DS Butler Farm and Airfield", + "latitude_deg": "36.195099", + "longitude_deg": "-80.005302", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Oak Ridge", + "scheduled_service": "no", + "local_code": "N83" + }, + { + "id": "22690", + "ident": "N85", + "type": "small_airport", + "name": "Alexandria Field Airport", + "latitude_deg": "40.587552", + "longitude_deg": "-75.018382", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Pittstown", + "scheduled_service": "no", + "gps_code": "KN85", + "local_code": "N85" + }, + { + "id": "22691", + "ident": "N86", + "type": "small_airport", + "name": "Spanish Springs Airport", + "latitude_deg": "39.66659927368164", + "longitude_deg": "-119.7229995727539", + "elevation_ft": "4600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Reno", + "scheduled_service": "no", + "gps_code": "N86", + "local_code": "N86", + "wikipedia_link": "https://en.wikipedia.org/wiki/Spanish_Springs_Airport" + }, + { + "id": "22692", + "ident": "N88", + "type": "small_airport", + "name": "Kecks Airport", + "latitude_deg": "35.92649841308594", + "longitude_deg": "-79.62750244140625", + "elevation_ft": "724", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Julian", + "scheduled_service": "no", + "gps_code": "N88", + "local_code": "N88" + }, + { + "id": "22693", + "ident": "N92", + "type": "small_airport", + "name": "Laneys Airport", + "latitude_deg": "35.57429885864258", + "longitude_deg": "-81.11730194091797", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Maiden", + "scheduled_service": "no", + "gps_code": "N92", + "local_code": "N92" + }, + { + "id": "22695", + "ident": "N95", + "type": "heliport", + "name": "Carlisle Barracks Heliport", + "latitude_deg": "40.2036161336", + "longitude_deg": "-77.16305494310001", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Carlisle", + "scheduled_service": "no", + "gps_code": "N95", + "local_code": "N95" + }, + { + "id": "22696", + "ident": "N97", + "type": "small_airport", + "name": "Hiatt Airport", + "latitude_deg": "35.830079", + "longitude_deg": "-80.109451", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Thomasville", + "scheduled_service": "no", + "gps_code": "KN97", + "local_code": "N97" + }, + { + "id": "29533", + "ident": "NA-0001", + "type": "small_airport", + "name": "Afro Venture Airport", + "latitude_deg": "-24.837799072265625", + "longitude_deg": "15.906900405883789", + "elevation_ft": "2907", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "29535", + "ident": "NA-0002", + "type": "small_airport", + "name": "Aminuis Pan Landing Site", + "latitude_deg": "-23.607200622558594", + "longitude_deg": "19.915800094604492", + "elevation_ft": "4075", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "municipality": "Aminuis", + "scheduled_service": "no" + }, + { + "id": "29536", + "ident": "NA-0003", + "type": "small_airport", + "name": "Anib Lodge Landing Site", + "latitude_deg": "-24.43470001220703", + "longitude_deg": "18.104400634765625", + "elevation_ft": "3950", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "29537", + "ident": "NA-0004", + "type": "small_airport", + "name": "Aranos Airport", + "latitude_deg": "-24.128299713135", + "longitude_deg": "19.114999771118", + "elevation_ft": "3904", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Aranos", + "scheduled_service": "no", + "gps_code": "FYAN" + }, + { + "id": "29538", + "ident": "NA-0005", + "type": "small_airport", + "name": "Aranos Pan Landing Site", + "latitude_deg": "-24.109399795532227", + "longitude_deg": "19.288299560546875", + "elevation_ft": "3891", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Aranos", + "scheduled_service": "no" + }, + { + "id": "29540", + "ident": "NA-0006", + "type": "small_airport", + "name": "Auob Lodge Airport", + "latitude_deg": "-24.822799682617188", + "longitude_deg": "18.762800216674805", + "elevation_ft": "3730", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "29542", + "ident": "NA-0007", + "type": "closed", + "name": "Basaroot Landing Site", + "latitude_deg": "-23.7583007812", + "longitude_deg": "18.2938995361", + "elevation_ft": "4163", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "29543", + "ident": "NA-0008", + "type": "small_airport", + "name": "Bitterwasser N. Sta Airport", + "latitude_deg": "-23.865800857543945", + "longitude_deg": "17.991100311279297", + "elevation_ft": "4150", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "29544", + "ident": "NA-0009", + "type": "small_airport", + "name": "Bitterwasser North Airport", + "latitude_deg": "-23.86720085144043", + "longitude_deg": "17.979999542236328", + "elevation_ft": "4154", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "29546", + "ident": "NA-0010", + "type": "small_airport", + "name": "Blumfelde Pan Landing Site", + "latitude_deg": "-23.565000534057617", + "longitude_deg": "18.3710994720459", + "elevation_ft": "4219", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "29547", + "ident": "NA-0011", + "type": "small_airport", + "name": "Bush Breaks Lodge Landing Site", + "latitude_deg": "-22.327800750732422", + "longitude_deg": "19.750600814819336", + "elevation_ft": "4734", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "scheduled_service": "no" + }, + { + "id": "29549", + "ident": "NA-0012", + "type": "small_airport", + "name": "Bagani Airport", + "latitude_deg": "-18.11848", + "longitude_deg": "21.623296", + "elevation_ft": "3314", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KE", + "municipality": "Bagani", + "scheduled_service": "no", + "gps_code": "FYBG", + "iata_code": "BQI" + }, + { + "id": "29550", + "ident": "NA-0013", + "type": "small_airport", + "name": "Derm East Pan Landing Site", + "latitude_deg": "-23.66670036315918", + "longitude_deg": "18.216699600219727", + "elevation_ft": "4219", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Derm", + "scheduled_service": "no" + }, + { + "id": "29551", + "ident": "NA-0014", + "type": "small_airport", + "name": "Dordabis Carpet Airport", + "latitude_deg": "-22.95439910888672", + "longitude_deg": "17.639699935913086", + "elevation_ft": "4970", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "municipality": "Dordabis", + "scheduled_service": "no" + }, + { + "id": "29552", + "ident": "NA-0015", + "type": "small_airport", + "name": "Eirup Landing Site", + "latitude_deg": "-24.23189926147461", + "longitude_deg": "18.40920066833496", + "elevation_ft": "3921", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Eirup", + "scheduled_service": "no" + }, + { + "id": "29553", + "ident": "NA-0016", + "type": "small_airport", + "name": "Eureka Farm Airport", + "latitude_deg": "-21.198099", + "longitude_deg": "17.8211", + "elevation_ft": "4705", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OD", + "scheduled_service": "no" + }, + { + "id": "29554", + "ident": "NA-0017", + "type": "small_airport", + "name": "Georgia Peter Schomarz Landing Site", + "latitude_deg": "-23.28059959411621", + "longitude_deg": "18.634199142456055", + "elevation_ft": "4298", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "scheduled_service": "no" + }, + { + "id": "29557", + "ident": "NA-0018", + "type": "small_airport", + "name": "Greub Landing Site", + "latitude_deg": "-23.12190055847168", + "longitude_deg": "16.733600616455078", + "elevation_ft": "5604", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "scheduled_service": "no" + }, + { + "id": "29558", + "ident": "NA-0019", + "type": "small_airport", + "name": "Grootpan East Landing Site", + "latitude_deg": "-23.543100357055664", + "longitude_deg": "18.384199142456055", + "elevation_ft": "4259", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "29559", + "ident": "NA-0020", + "type": "small_airport", + "name": "Hannover N Airport", + "latitude_deg": "-23.361900329589844", + "longitude_deg": "17.80389976501465", + "elevation_ft": "4459", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "scheduled_service": "no" + }, + { + "id": "29560", + "ident": "NA-0021", + "type": "small_airport", + "name": "Haribes Dam Strip", + "latitude_deg": "-24.6210994720459", + "longitude_deg": "17.540800094604492", + "elevation_ft": "3894", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Haribes Dam", + "scheduled_service": "no" + }, + { + "id": "29561", + "ident": "NA-0022", + "type": "small_airport", + "name": "Hetaku Game Lodge Landing Site", + "latitude_deg": "-21.98189926147461", + "longitude_deg": "18.507200241088867", + "elevation_ft": "5128", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "scheduled_service": "no" + }, + { + "id": "29563", + "ident": "NA-0023", + "type": "small_airport", + "name": "Judaea Strip", + "latitude_deg": "-23.745800018310547", + "longitude_deg": "18.091100692749023", + "elevation_ft": "4216", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "29564", + "ident": "NA-0024", + "type": "small_airport", + "name": "Julia Landing Site", + "latitude_deg": "-22.969999313354492", + "longitude_deg": "18.193899154663086", + "elevation_ft": "4616", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "scheduled_service": "no" + }, + { + "id": "29567", + "ident": "NA-0025", + "type": "small_airport", + "name": "Kalkrand Pan Landing Site", + "latitude_deg": "-24.06220054626465", + "longitude_deg": "17.596900939941406", + "elevation_ft": "4022", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Kalkrand", + "scheduled_service": "no" + }, + { + "id": "29569", + "ident": "NA-0026", + "type": "small_airport", + "name": "Kamombombe East Airport", + "latitude_deg": "-21.614200592041016", + "longitude_deg": "16.055599212646484", + "elevation_ft": "4098", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ER", + "scheduled_service": "no" + }, + { + "id": "29570", + "ident": "NA-0027", + "type": "small_airport", + "name": "Kansimba Landing Site", + "latitude_deg": "-22.044700622558594", + "longitude_deg": "16.178600311279297", + "elevation_ft": "4098", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ER", + "scheduled_service": "no" + }, + { + "id": "29572", + "ident": "NA-0028", + "type": "small_airport", + "name": "Kentani Landing Site", + "latitude_deg": "-23.862199783325195", + "longitude_deg": "17.857200622558594", + "elevation_ft": "4055", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "29573", + "ident": "NA-0029", + "type": "small_airport", + "name": "Kentucky Sud Pan Landing Site", + "latitude_deg": "-22.7450008392334", + "longitude_deg": "19.31329917907715", + "elevation_ft": "4554", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "scheduled_service": "no" + }, + { + "id": "29574", + "ident": "NA-0030", + "type": "small_airport", + "name": "Kerweder Airport", + "latitude_deg": "-24.96310043334961", + "longitude_deg": "16.013599395751953", + "elevation_ft": "3179", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "29575", + "ident": "NA-0031", + "type": "small_airport", + "name": "Khorab Safari Lodge Airport", + "latitude_deg": "-19.641399", + "longitude_deg": "17.319401", + "elevation_ft": "4616", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OD", + "scheduled_service": "no" + }, + { + "id": "29576", + "ident": "NA-0032", + "type": "small_airport", + "name": "Kiripotib Landing Site", + "latitude_deg": "-23.32830047607422", + "longitude_deg": "17.946399688720703", + "elevation_ft": "4475", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "municipality": "Klein Nauas", + "scheduled_service": "no" + }, + { + "id": "29577", + "ident": "NA-0033", + "type": "small_airport", + "name": "Klein Aub 15M Landing Site", + "latitude_deg": "-23.790599822998047", + "longitude_deg": "16.658599853515625", + "elevation_ft": "5085", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Klein Aub", + "scheduled_service": "no" + }, + { + "id": "29578", + "ident": "NA-0034", + "type": "small_airport", + "name": "Klein Aub Pan Ok Landing Site", + "latitude_deg": "-23.78059959411621", + "longitude_deg": "16.645000457763672", + "elevation_ft": "5105", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Klein Aub", + "scheduled_service": "no" + }, + { + "id": "29580", + "ident": "NA-0035", + "type": "small_airport", + "name": "Louwater Pan Landing Site", + "latitude_deg": "-23.27720069885254", + "longitude_deg": "17.723600387573242", + "elevation_ft": "4551", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "scheduled_service": "no" + }, + { + "id": "29581", + "ident": "NA-0036", + "type": "small_airport", + "name": "Maltahoehe 4 Kal Landing Site", + "latitude_deg": "-24.531400680541992", + "longitude_deg": "17.18440055847168", + "elevation_ft": "4446", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Maltahoehe", + "scheduled_service": "no" + }, + { + "id": "29582", + "ident": "NA-0037", + "type": "small_airport", + "name": "Maltahoehe 5 Kal Landing Site", + "latitude_deg": "-24.11079978942871", + "longitude_deg": "17.564199447631836", + "elevation_ft": "4121", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Maltahoehe", + "scheduled_service": "no" + }, + { + "id": "29583", + "ident": "NA-0038", + "type": "small_airport", + "name": "Maltahoehe 6 Kal Landing Site", + "latitude_deg": "-24.12529945373535", + "longitude_deg": "17.55780029296875", + "elevation_ft": "4114", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Maltahoehe", + "scheduled_service": "no" + }, + { + "id": "29584", + "ident": "NA-0039", + "type": "small_airport", + "name": "Maltahoehe 7 Kal Landing Site", + "latitude_deg": "-24.336700439453125", + "longitude_deg": "17.340599060058594", + "elevation_ft": "4229", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Maltahoehe", + "scheduled_service": "no" + }, + { + "id": "29585", + "ident": "NA-0040", + "type": "small_airport", + "name": "Maltahoehe 8 Kal Landing Site", + "latitude_deg": "-24.343900680541992", + "longitude_deg": "17.332199096679688", + "elevation_ft": "4216", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Maltahoehe", + "scheduled_service": "no" + }, + { + "id": "29586", + "ident": "NA-0041", + "type": "small_airport", + "name": "Maltahoehe 9 Kal Landing Site", + "latitude_deg": "-24.510799407958984", + "longitude_deg": "17.18829917907715", + "elevation_ft": "4439", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Maltahoehe", + "scheduled_service": "no" + }, + { + "id": "29588", + "ident": "NA-0042", + "type": "small_airport", + "name": "Mbela Big Wings Landing Site", + "latitude_deg": "-23.74250030517578", + "longitude_deg": "17.911699295043945", + "elevation_ft": "4226", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "29589", + "ident": "NA-0043", + "type": "small_airport", + "name": "Meier Airstrip Landing Site", + "latitude_deg": "-24.89189910888672", + "longitude_deg": "16.200300216674805", + "elevation_ft": "4849", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "29591", + "ident": "NA-0044", + "type": "small_airport", + "name": "Moscow Landing Site", + "latitude_deg": "-25.183300018310547", + "longitude_deg": "19.256900787353516", + "elevation_ft": "3481", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42333", + "ident": "NA-0045", + "type": "small_airport", + "name": "Vredeshoop Landing Site", + "latitude_deg": "-27.100282669067383", + "longitude_deg": "19.53445053100586", + "elevation_ft": "2926", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "scheduled_service": "no" + }, + { + "id": "29594", + "ident": "NA-0046", + "type": "small_airport", + "name": "Namib Naukluft Landing Site", + "latitude_deg": "-23.9950008392334", + "longitude_deg": "15.9306001663208", + "elevation_ft": "3232", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "29595", + "ident": "NA-0047", + "type": "small_airport", + "name": "Namibia East Air Base", + "latitude_deg": "-17.775299", + "longitude_deg": "25.186701", + "elevation_ft": "3048", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-CA", + "municipality": "Impalila", + "scheduled_service": "no" + }, + { + "id": "29597", + "ident": "NA-0048", + "type": "small_airport", + "name": "Oha Kaua/Otjiwa Lodge Landing Site", + "latitude_deg": "-20.751699447631836", + "longitude_deg": "16.798599243164062", + "elevation_ft": "5121", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OD", + "scheduled_service": "no" + }, + { + "id": "29598", + "ident": "NA-0049", + "type": "small_airport", + "name": "Ohlsenhagen Landing Site", + "latitude_deg": "-22.271099090576172", + "longitude_deg": "19.00189971923828", + "elevation_ft": "4954", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "scheduled_service": "no" + }, + { + "id": "29601", + "ident": "NA-0050", + "type": "small_airport", + "name": "Okosongoro Airport Airport", + "latitude_deg": "-21.118099", + "longitude_deg": "16.0858", + "elevation_ft": "4872", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ER", + "scheduled_service": "no" + }, + { + "id": "29604", + "ident": "NA-0051", + "type": "small_airport", + "name": "Omawewoz Airport", + "latitude_deg": "-21.608299255371094", + "longitude_deg": "19.408599853515625", + "elevation_ft": "4623", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "municipality": "Omamewozonyanda", + "scheduled_service": "no" + }, + { + "id": "29606", + "ident": "NA-0052", + "type": "small_airport", + "name": "Omuramba Airport", + "latitude_deg": "-21.423099517822266", + "longitude_deg": "19.283599853515625", + "elevation_ft": "4728", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "scheduled_service": "no" + }, + { + "id": "29607", + "ident": "NA-0053", + "type": "small_airport", + "name": "Onjossa Airport", + "latitude_deg": "-22.16830062866211", + "longitude_deg": "16.301700592041016", + "elevation_ft": "4055", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ER", + "scheduled_service": "no" + }, + { + "id": "29613", + "ident": "NA-0054", + "type": "small_airport", + "name": "Roidina Peter Jo Airport", + "latitude_deg": "-21.18779945373535", + "longitude_deg": "16.06220054626465", + "elevation_ft": "4600", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ER", + "scheduled_service": "no" + }, + { + "id": "29614", + "ident": "NA-0055", + "type": "small_airport", + "name": "Rostock Ritz Lodge Airport", + "latitude_deg": "-23.542200088500977", + "longitude_deg": "15.838899612426758", + "elevation_ft": "2927", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "municipality": "Rostock", + "scheduled_service": "no" + }, + { + "id": "29615", + "ident": "NA-0056", + "type": "small_airport", + "name": "Schlip 1 Road113 Landing Site", + "latitude_deg": "-23.963600158691406", + "longitude_deg": "17.890600204467773", + "elevation_ft": "4049", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Schlip", + "scheduled_service": "no" + }, + { + "id": "29616", + "ident": "NA-0057", + "type": "small_airport", + "name": "Schlip 2 67 Road Landing Site", + "latitude_deg": "-24.05190086364746", + "longitude_deg": "17.369699478149414", + "elevation_ft": "4173", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Schlip", + "scheduled_service": "no" + }, + { + "id": "29617", + "ident": "NA-0058", + "type": "small_airport", + "name": "Schlip 2 87 Road Landing Site", + "latitude_deg": "-24.057199478149414", + "longitude_deg": "17.15999984741211", + "elevation_ft": "4383", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Schlip", + "scheduled_service": "no" + }, + { + "id": "29618", + "ident": "NA-0059", + "type": "small_airport", + "name": "Schlip Kalkrand1 Landing Site", + "latitude_deg": "-24.00189971923828", + "longitude_deg": "16.89419937133789", + "elevation_ft": "4606", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Schlip", + "scheduled_service": "no" + }, + { + "id": "29622", + "ident": "NA-0060", + "type": "small_airport", + "name": "Sossusvlei Lodge Landing Site", + "latitude_deg": "-24.49139976501465", + "longitude_deg": "15.823599815368652", + "elevation_ft": "2628", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "29625", + "ident": "NA-0061", + "type": "small_airport", + "name": "Stamprietpan Ok Landing Site", + "latitude_deg": "-24.349700927734375", + "longitude_deg": "18.32670021057129", + "elevation_ft": "3822", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Stampriet", + "scheduled_service": "no" + }, + { + "id": "29628", + "ident": "NA-0062", + "type": "small_airport", + "name": "Tatave Landing Site", + "latitude_deg": "-24.389999389648438", + "longitude_deg": "18.668100357055664", + "elevation_ft": "3839", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "29629", + "ident": "NA-0063", + "type": "small_airport", + "name": "Tivoli Landing Site", + "latitude_deg": "-23.461700439453125", + "longitude_deg": "18.014400482177734", + "elevation_ft": "4386", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "scheduled_service": "no" + }, + { + "id": "29632", + "ident": "NA-0064", + "type": "small_airport", + "name": "Unbekannt Landing Site", + "latitude_deg": "-21.130800247192383", + "longitude_deg": "18.78969955444336", + "elevation_ft": "4718", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "scheduled_service": "no" + }, + { + "id": "29633", + "ident": "NA-0065", + "type": "small_airport", + "name": "Weltevrede Rest Landing Site", + "latitude_deg": "-24.18079948425293", + "longitude_deg": "15.977499961853027", + "elevation_ft": "3563", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "29634", + "ident": "NA-0066", + "type": "small_airport", + "name": "Wittenau Pfanne Landing Site", + "latitude_deg": "-23.463899612426758", + "longitude_deg": "18.873300552368164", + "elevation_ft": "4222", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "scheduled_service": "no" + }, + { + "id": "29636", + "ident": "NA-0067", + "type": "small_airport", + "name": "Geluk Airstrip", + "latitude_deg": "-24.6733", + "longitude_deg": "15.7919", + "elevation_ft": "2402", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Sesriem", + "scheduled_service": "no", + "keywords": "Witwater West Airport" + }, + { + "id": "29637", + "ident": "NA-0068", + "type": "small_airport", + "name": "Wohlzufrieden Airport", + "latitude_deg": "-24.19059944152832", + "longitude_deg": "18.161100387573242", + "elevation_ft": "3960", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42334", + "ident": "NA-0069", + "type": "small_airport", + "name": "Rietfontein Airport", + "latitude_deg": "-26.7450008392334", + "longitude_deg": "20.03333282470703", + "elevation_ft": "2750", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Rietfontein", + "scheduled_service": "no" + }, + { + "id": "42335", + "ident": "NA-0070", + "type": "small_airport", + "name": "Guibes Landing Strip", + "latitude_deg": "-26.700000762939453", + "longitude_deg": "16.950000762939453", + "elevation_ft": "4091", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "scheduled_service": "no" + }, + { + "id": "42336", + "ident": "NA-0071", + "type": "small_airport", + "name": "Keetmansh Railroad Airport", + "latitude_deg": "-26.593050003051758", + "longitude_deg": "18.1422176361084", + "elevation_ft": "3231", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Keetmanshoop", + "scheduled_service": "no" + }, + { + "id": "42337", + "ident": "NA-0072", + "type": "small_airport", + "name": "Klipdrif Airstrip", + "latitude_deg": "-26.516666412353516", + "longitude_deg": "16.916667938232422", + "elevation_ft": "4245", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "scheduled_service": "no" + }, + { + "id": "42338", + "ident": "NA-0073", + "type": "small_airport", + "name": "Zuuberg Landing Site", + "latitude_deg": "-26.266666412353516", + "longitude_deg": "17", + "elevation_ft": "3645", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "scheduled_service": "no" + }, + { + "id": "42339", + "ident": "NA-0074", + "type": "small_airport", + "name": "Koes Airport", + "latitude_deg": "-25.937782287597656", + "longitude_deg": "19.12055015563965", + "elevation_ft": "3175", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Koes", + "scheduled_service": "no" + }, + { + "id": "42340", + "ident": "NA-0075", + "type": "small_airport", + "name": "Tses Airstrip", + "latitude_deg": "-25.890283584594727", + "longitude_deg": "18.12638282775879", + "elevation_ft": "3152", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Tses", + "scheduled_service": "no" + }, + { + "id": "42341", + "ident": "NA-0076", + "type": "small_airport", + "name": "Helmering Airstrip", + "latitude_deg": "-25.863332748413086", + "longitude_deg": "16.809999465942383", + "elevation_ft": "4563", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Helmeringhausen", + "scheduled_service": "no" + }, + { + "id": "42342", + "ident": "NA-0077", + "type": "closed", + "name": "Mata Mata Landing Site", + "latitude_deg": "-25.7677822113", + "longitude_deg": "20", + "elevation_ft": "3125", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "scheduled_service": "no" + }, + { + "id": "42343", + "ident": "NA-0078", + "type": "small_airport", + "name": "Brukkaros Landing Strip", + "latitude_deg": "-25.69944953918457", + "longitude_deg": "18.053049087524414", + "elevation_ft": "3190", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Brukkaros", + "scheduled_service": "no" + }, + { + "id": "42344", + "ident": "NA-0079", + "type": "small_airport", + "name": "Finger Gottes Airstrip", + "latitude_deg": "-25.497217178344727", + "longitude_deg": "18.172500610351562", + "elevation_ft": "3461", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42345", + "ident": "NA-0080", + "type": "small_airport", + "name": "Tweerivier Landing Site", + "latitude_deg": "-25.456382751464844", + "longitude_deg": "19.43833351135254", + "elevation_ft": "3325", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42346", + "ident": "NA-0081", + "type": "small_airport", + "name": "Guamus Airport", + "latitude_deg": "-25.197782516479492", + "longitude_deg": "18.273616790771484", + "elevation_ft": "3838", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42347", + "ident": "NA-0082", + "type": "small_airport", + "name": "Gibeon Airport", + "latitude_deg": "-25.127216339111328", + "longitude_deg": "17.76194953918457", + "elevation_ft": "3428", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Gibeon", + "scheduled_service": "no" + }, + { + "id": "42348", + "ident": "NA-0083", + "type": "small_airport", + "name": "Witbooisvley Landing Site", + "latitude_deg": "-25.068883895874023", + "longitude_deg": "18.45166778564453", + "elevation_ft": "3813", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Witbooisvley", + "scheduled_service": "no" + }, + { + "id": "42349", + "ident": "NA-0084", + "type": "small_airport", + "name": "Maltahoehe S Airport", + "latitude_deg": "-24.835599899291992", + "longitude_deg": "16.975200653076172", + "elevation_ft": "4465", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Maltahoehe", + "scheduled_service": "no" + }, + { + "id": "42350", + "ident": "NA-0085", + "type": "small_airport", + "name": "Katzensteg Airport", + "latitude_deg": "-24.769716262817383", + "longitude_deg": "18.988332748413086", + "elevation_ft": "3683", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "342731", + "ident": "NA-0086", + "type": "small_airport", + "name": "Plum Airport", + "latitude_deg": "-23.05403", + "longitude_deg": "14.60467", + "elevation_ft": "207", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ER", + "municipality": "Plum", + "scheduled_service": "no" + }, + { + "id": "42352", + "ident": "NA-0087", + "type": "small_airport", + "name": "Lendepas Landing Site", + "latitude_deg": "-24.745283126831055", + "longitude_deg": "20", + "elevation_ft": "3451", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "326993", + "ident": "NA-0088", + "type": "small_airport", + "name": "Ongava Lodge Airstrip", + "latitude_deg": "-19.328533", + "longitude_deg": "15.915003", + "elevation_ft": "3740", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KU", + "municipality": "Ombika", + "scheduled_service": "no", + "gps_code": "FYNG" + }, + { + "id": "42354", + "ident": "NA-0089", + "type": "small_airport", + "name": "Wandervogel Airstrip", + "latitude_deg": "-24.63916778564453", + "longitude_deg": "19.703332901000977", + "elevation_ft": "3605", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42355", + "ident": "NA-0090", + "type": "small_airport", + "name": "Kouwater Landing Site", + "latitude_deg": "-24.62638282775879", + "longitude_deg": "18.043617248535156", + "elevation_ft": "3777", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42356", + "ident": "NA-0091", + "type": "small_airport", + "name": "Salzbrunn Airstrip", + "latitude_deg": "-24.382699966430664", + "longitude_deg": "17.96980094909668", + "elevation_ft": "3863", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42357", + "ident": "NA-0092", + "type": "small_airport", + "name": "Gianti-1 Airport", + "latitude_deg": "-24.252599716186523", + "longitude_deg": "16.315500259399414", + "elevation_ft": "4521", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42358", + "ident": "NA-0093", + "type": "small_airport", + "name": "Kub Landing Site", + "latitude_deg": "-24.21554946899414", + "longitude_deg": "17.49333381652832", + "elevation_ft": "3982", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Kub", + "scheduled_service": "no" + }, + { + "id": "42359", + "ident": "NA-0094", + "type": "small_airport", + "name": "Twilight Airstrip", + "latitude_deg": "-24.167217254638672", + "longitude_deg": "17.989166259765625", + "elevation_ft": "4009", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42360", + "ident": "NA-0095", + "type": "small_airport", + "name": "Bullsport Landig Site", + "latitude_deg": "-24.116666793823242", + "longitude_deg": "16.366666793823242", + "elevation_ft": "5120", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42361", + "ident": "NA-0096", + "type": "small_airport", + "name": "Morester Landing Site", + "latitude_deg": "-24.116117477416992", + "longitude_deg": "19.977783203125", + "elevation_ft": "3863", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42362", + "ident": "NA-0097", + "type": "small_airport", + "name": "Lidfontein Landing Site", + "latitude_deg": "-24.081666946411133", + "longitude_deg": "18.196666717529297", + "elevation_ft": "3975", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "345910", + "ident": "NA-0098", + "type": "small_airport", + "name": "Orutjandja Airport", + "latitude_deg": "-18.8839", + "longitude_deg": "13.481598", + "elevation_ft": "2477", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KU", + "scheduled_service": "no" + }, + { + "id": "42364", + "ident": "NA-0099", + "type": "small_airport", + "name": "Nabus Landing Site", + "latitude_deg": "-24.038333892822266", + "longitude_deg": "18.975000381469727", + "elevation_ft": "3968", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42365", + "ident": "NA-0100", + "type": "small_airport", + "name": "Runnersrest Landing Site", + "latitude_deg": "-24.01333236694336", + "longitude_deg": "17.74471664428711", + "elevation_ft": "4031", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42366", + "ident": "NA-0101", + "type": "small_airport", + "name": "Victory Airstrip", + "latitude_deg": "-23.969717025756836", + "longitude_deg": "18.269166946411133", + "elevation_ft": "4048", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42367", + "ident": "NA-0102", + "type": "small_airport", + "name": "Rietoog Airport", + "latitude_deg": "-23.96666717529297", + "longitude_deg": "16.56388282775879", + "elevation_ft": "4902", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Rietoog", + "scheduled_service": "no" + }, + { + "id": "42368", + "ident": "NA-0103", + "type": "small_airport", + "name": "Hoachanas Airport", + "latitude_deg": "-23.915000915527344", + "longitude_deg": "18.04916763305664", + "elevation_ft": "4137", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Hoachanas", + "scheduled_service": "no" + }, + { + "id": "42369", + "ident": "NA-0104", + "type": "small_airport", + "name": "Droeplaas Landing Site", + "latitude_deg": "-23.81861686706543", + "longitude_deg": "19.082500457763672", + "elevation_ft": "4058", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42370", + "ident": "NA-0105", + "type": "small_airport", + "name": "Tsumis Airport", + "latitude_deg": "-23.72861671447754", + "longitude_deg": "17.440000534057617", + "elevation_ft": "4178", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Tsumis", + "scheduled_service": "no" + }, + { + "id": "42371", + "ident": "NA-0106", + "type": "small_airport", + "name": "Bimsfarm Landing Site", + "latitude_deg": "-23.72833251953125", + "longitude_deg": "18.147216796875", + "elevation_ft": "4215", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42372", + "ident": "NA-0107", + "type": "small_airport", + "name": "Olifantwater West Landing Site", + "latitude_deg": "-23.704999923706055", + "longitude_deg": "18.36166763305664", + "elevation_ft": "4187", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42373", + "ident": "NA-0108", + "type": "small_airport", + "name": "Gomnab Airport", + "latitude_deg": "-23.69179916381836", + "longitude_deg": "18.27239990234375", + "elevation_ft": "4190", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42374", + "ident": "NA-0109", + "type": "small_airport", + "name": "Neuloore Landing Site", + "latitude_deg": "-23.68221664428711", + "longitude_deg": "18.405550003051758", + "elevation_ft": "4172", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42375", + "ident": "NA-0110", + "type": "small_airport", + "name": "Nauchas Landing Site", + "latitude_deg": "-23.633333206176758", + "longitude_deg": "16.325000762939453", + "elevation_ft": "5842", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "municipality": "Nauchas", + "scheduled_service": "no" + }, + { + "id": "42376", + "ident": "NA-0111", + "type": "small_airport", + "name": "Kaukerus Landing Site", + "latitude_deg": "-23.617782592773438", + "longitude_deg": "17.872217178344727", + "elevation_ft": "4314", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42377", + "ident": "NA-0112", + "type": "small_airport", + "name": "Cowdray Airstrip", + "latitude_deg": "-23.54471778869629", + "longitude_deg": "17.787782669067383", + "elevation_ft": "4314", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "scheduled_service": "no" + }, + { + "id": "42378", + "ident": "NA-0113", + "type": "small_airport", + "name": "Rheinpfalz Landing Site", + "latitude_deg": "-23.52888298034668", + "longitude_deg": "17.989999771118164", + "elevation_ft": "4362", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42379", + "ident": "NA-0114", + "type": "small_airport", + "name": "Leonardville Airport", + "latitude_deg": "-23.50138282775879", + "longitude_deg": "18.787782669067383", + "elevation_ft": "4166", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "municipality": "Leonardville", + "scheduled_service": "no" + }, + { + "id": "42380", + "ident": "NA-0115", + "type": "small_airport", + "name": "Beenbreek Landing Site", + "latitude_deg": "-23.483299255371094", + "longitude_deg": "17.950000762939453", + "elevation_ft": "4399", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "scheduled_service": "no" + }, + { + "id": "42381", + "ident": "NA-0116", + "type": "small_airport", + "name": "Gamsberg Landing Site", + "latitude_deg": "-23.36669921875", + "longitude_deg": "16.25", + "elevation_ft": "5885", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "municipality": "Gamsberg", + "scheduled_service": "no" + }, + { + "id": "42382", + "ident": "NA-0117", + "type": "small_airport", + "name": "Gams Farm Landing Site", + "latitude_deg": "-23.366666793823242", + "longitude_deg": "16.299999237060547", + "elevation_ft": "6063", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "scheduled_service": "no" + }, + { + "id": "42383", + "ident": "NA-0118", + "type": "small_airport", + "name": "Rehoboth Town Airport", + "latitude_deg": "-23.321666717529297", + "longitude_deg": "17.071117401123047", + "elevation_ft": "4537", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Rehoboth", + "scheduled_service": "no" + }, + { + "id": "42384", + "ident": "NA-0119", + "type": "small_airport", + "name": "Klein Nauas Landing Site", + "latitude_deg": "-23.316667556762695", + "longitude_deg": "17.844167709350586", + "elevation_ft": "4474", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "municipality": "Klein Nauas", + "scheduled_service": "no" + }, + { + "id": "42385", + "ident": "NA-0120", + "type": "small_airport", + "name": "Rehoboth Airstrip", + "latitude_deg": "-23.3125", + "longitude_deg": "17.044450759887695", + "elevation_ft": "4537", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Rehoboth", + "scheduled_service": "no" + }, + { + "id": "42386", + "ident": "NA-0121", + "type": "small_airport", + "name": "Rehoboth Sta Airport", + "latitude_deg": "-23.310550689697266", + "longitude_deg": "17.18833351135254", + "elevation_ft": "4537", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Rehoboth", + "scheduled_service": "no" + }, + { + "id": "42387", + "ident": "NA-0122", + "type": "small_airport", + "name": "Rooisand Airport", + "latitude_deg": "-23.291201", + "longitude_deg": "16.110701", + "elevation_ft": "3796", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "municipality": "Chausib", + "scheduled_service": "no" + }, + { + "id": "42388", + "ident": "NA-0123", + "type": "small_airport", + "name": "Goellschau Farm Landing Site", + "latitude_deg": "-23.274999618530273", + "longitude_deg": "16.538883209228516", + "elevation_ft": "5934", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "municipality": "Goellschau", + "scheduled_service": "no" + }, + { + "id": "42389", + "ident": "NA-0124", + "type": "small_airport", + "name": "Louwater S M7 Airport", + "latitude_deg": "-23.25830078125", + "longitude_deg": "17.969900131225586", + "elevation_ft": "4504", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42390", + "ident": "NA-0125", + "type": "small_airport", + "name": "Garib Landing Site", + "latitude_deg": "-23.135000228881836", + "longitude_deg": "17.63279914855957", + "elevation_ft": "4750", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "municipality": "Garib", + "scheduled_service": "no" + }, + { + "id": "42391", + "ident": "NA-0126", + "type": "small_airport", + "name": "Nossob Gabel Landing Site", + "latitude_deg": "-23.120283126831055", + "longitude_deg": "18.70166778564453", + "elevation_ft": "4178", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "scheduled_service": "no" + }, + { + "id": "42392", + "ident": "NA-0127", + "type": "small_airport", + "name": "Doornpoort Airstrip", + "latitude_deg": "-23.073883056640625", + "longitude_deg": "18.051382064819336", + "elevation_ft": "4597", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "scheduled_service": "no" + }, + { + "id": "42393", + "ident": "NA-0128", + "type": "small_airport", + "name": "Oamites Landing Strip", + "latitude_deg": "-23.00749969482422", + "longitude_deg": "17.1169490814209", + "elevation_ft": "5450", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "municipality": "Oamites", + "scheduled_service": "no" + }, + { + "id": "42394", + "ident": "NA-0129", + "type": "small_airport", + "name": "Bergland Landing Strip", + "latitude_deg": "-22.97333335876465", + "longitude_deg": "17.144716262817383", + "elevation_ft": "5517", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "scheduled_service": "no" + }, + { + "id": "42395", + "ident": "NA-0130", + "type": "small_airport", + "name": "Krumneck Airport", + "latitude_deg": "-22.961383819580078", + "longitude_deg": "16.934450149536133", + "elevation_ft": "5768", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "municipality": "Krumneck", + "scheduled_service": "no" + }, + { + "id": "42396", + "ident": "NA-0131", + "type": "small_airport", + "name": "Keitzaub Landing Site", + "latitude_deg": "-22.810283660888672", + "longitude_deg": "18.849716186523438", + "elevation_ft": "4469", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "scheduled_service": "no" + }, + { + "id": "42397", + "ident": "NA-0132", + "type": "small_airport", + "name": "Spatzenfeld Landing Site", + "latitude_deg": "-22.785282135009766", + "longitude_deg": "18.88971710205078", + "elevation_ft": "4528", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "scheduled_service": "no" + }, + { + "id": "42398", + "ident": "NA-0133", + "type": "small_airport", + "name": "Aris Landrig Strip", + "latitude_deg": "-22.756383895874023", + "longitude_deg": "17.13526725769043", + "elevation_ft": "5820", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "municipality": "Aris", + "scheduled_service": "no" + }, + { + "id": "42399", + "ident": "NA-0134", + "type": "small_airport", + "name": "Okapanje Airport", + "latitude_deg": "-22.58916664123535", + "longitude_deg": "17.96554946899414", + "elevation_ft": "4922", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "municipality": "Okapanje", + "scheduled_service": "no" + }, + { + "id": "42400", + "ident": "NA-0135", + "type": "small_airport", + "name": "Gobabis Street-T Airport", + "latitude_deg": "-22.43611717224121", + "longitude_deg": "19.01361656188965", + "elevation_ft": "4815", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "municipality": "Gobabis", + "scheduled_service": "no" + }, + { + "id": "42401", + "ident": "NA-0136", + "type": "small_airport", + "name": "Ninette Landing Site", + "latitude_deg": "-22.399999618530273", + "longitude_deg": "18.75", + "elevation_ft": "4836", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "scheduled_service": "no" + }, + { + "id": "42402", + "ident": "NA-0137", + "type": "small_airport", + "name": "Solingen Airstrip", + "latitude_deg": "-22.39638328552246", + "longitude_deg": "19.11083221435547", + "elevation_ft": "4866", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "scheduled_service": "no" + }, + { + "id": "42403", + "ident": "NA-0138", + "type": "small_airport", + "name": "Eintracht Airstrip", + "latitude_deg": "-22.353050231933594", + "longitude_deg": "18.2450008392334", + "elevation_ft": "4958", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "scheduled_service": "no" + }, + { + "id": "42404", + "ident": "NA-0139", + "type": "small_airport", + "name": "Otjihaenena Landing Strip", + "latitude_deg": "-22.290283203125", + "longitude_deg": "17.77138328552246", + "elevation_ft": "5276", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "municipality": "Otjihaenena", + "scheduled_service": "no" + }, + { + "id": "42405", + "ident": "NA-0140", + "type": "small_airport", + "name": "Sandfontein Airstrip", + "latitude_deg": "-22.280282974243164", + "longitude_deg": "20", + "elevation_ft": "4161", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "municipality": "Sandfontein", + "scheduled_service": "no" + }, + { + "id": "42406", + "ident": "NA-0141", + "type": "small_airport", + "name": "Buitepos Airstrip", + "latitude_deg": "-22.266666412353516", + "longitude_deg": "20", + "elevation_ft": "4210", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "municipality": "Buitepos", + "scheduled_service": "no" + }, + { + "id": "42407", + "ident": "NA-0142", + "type": "small_airport", + "name": "Drimiopsis Landing Site", + "latitude_deg": "-22.066667556762695", + "longitude_deg": "19.066667556762695", + "elevation_ft": "5023", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "municipality": "Drimiopsis", + "scheduled_service": "no" + }, + { + "id": "42408", + "ident": "NA-0143", + "type": "small_airport", + "name": "Swa Knie Landing Site", + "latitude_deg": "-22", + "longitude_deg": "20", + "elevation_ft": "4345", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "scheduled_service": "no" + }, + { + "id": "42409", + "ident": "NA-0144", + "type": "small_airport", + "name": "Wilskrag Landing Site", + "latitude_deg": "-22", + "longitude_deg": "20.627782821655273", + "elevation_ft": "4094", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "scheduled_service": "no" + }, + { + "id": "42410", + "ident": "NA-0145", + "type": "small_airport", + "name": "Albrechts Aistrip", + "latitude_deg": "-21.9455509185791", + "longitude_deg": "16.06999969482422", + "elevation_ft": "4478", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ER", + "scheduled_service": "no" + }, + { + "id": "42411", + "ident": "NA-0146", + "type": "small_airport", + "name": "Okahennesiva Landing Site", + "latitude_deg": "-21.86528205871582", + "longitude_deg": "18.402782440185547", + "elevation_ft": "5284", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "scheduled_service": "no" + }, + { + "id": "42412", + "ident": "NA-0147", + "type": "small_airport", + "name": "Steinhausen Landing Site", + "latitude_deg": "-21.82444953918457", + "longitude_deg": "18.231950759887695", + "elevation_ft": "5382", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "municipality": "Steinhausen", + "scheduled_service": "no" + }, + { + "id": "42413", + "ident": "NA-0148", + "type": "small_airport", + "name": "Fortuna Landing Site", + "latitude_deg": "-21.808332443237305", + "longitude_deg": "19.90833282470703", + "elevation_ft": "4389", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "scheduled_service": "no" + }, + { + "id": "42414", + "ident": "NA-0149", + "type": "small_airport", + "name": "Okamapu Landing Site", + "latitude_deg": "-21.736949920654297", + "longitude_deg": "17.885000228881836", + "elevation_ft": "5541", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "scheduled_service": "no" + }, + { + "id": "42415", + "ident": "NA-0150", + "type": "small_airport", + "name": "Epukiro North Landing Site", + "latitude_deg": "-21.67526626586914", + "longitude_deg": "19.21693229675293", + "elevation_ft": "4770", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "municipality": "Epukiro", + "scheduled_service": "no" + }, + { + "id": "42416", + "ident": "NA-0151", + "type": "small_airport", + "name": "Epukiru Airport", + "latitude_deg": "-21.616666793823242", + "longitude_deg": "19.399999618530273", + "elevation_ft": "4633", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OH", + "municipality": "Epukiro", + "scheduled_service": "no" + }, + { + "id": "42417", + "ident": "NA-0152", + "type": "small_airport", + "name": "Onduruqea Lodge Airport", + "latitude_deg": "-21.602500915527344", + "longitude_deg": "16.073299407958984", + "elevation_ft": "4149", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ER", + "scheduled_service": "no" + }, + { + "id": "42418", + "ident": "NA-0153", + "type": "small_airport", + "name": "Hochfeld Airport", + "latitude_deg": "-21.49028205871582", + "longitude_deg": "17.85194969177246", + "elevation_ft": "5127", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OD", + "municipality": "Hochfeld", + "scheduled_service": "no" + }, + { + "id": "42419", + "ident": "NA-0154", + "type": "small_airport", + "name": "Godehoop Landing Site", + "latitude_deg": "-21.28333282470703", + "longitude_deg": "15.533332824707031", + "elevation_ft": "3567", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ER", + "municipality": "Okombahe", + "scheduled_service": "no" + }, + { + "id": "42420", + "ident": "NA-0155", + "type": "small_airport", + "name": "Rhenoster K Airport", + "latitude_deg": "-21.165283203125", + "longitude_deg": "16.40250015258789", + "elevation_ft": "4775", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ER", + "scheduled_service": "no" + }, + { + "id": "42421", + "ident": "NA-0156", + "type": "small_airport", + "name": "Omaha Landing Site", + "latitude_deg": "-21.13195037841797", + "longitude_deg": "16.5261173248291", + "elevation_ft": "4954", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OD", + "scheduled_service": "no" + }, + { + "id": "42422", + "ident": "NA-0157", + "type": "small_airport", + "name": "Otjiwarongo Center Airport", + "latitude_deg": "-20.463882446289062", + "longitude_deg": "16.647783279418945", + "elevation_ft": "4850", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OD", + "municipality": "Otjiwarongo", + "scheduled_service": "no" + }, + { + "id": "315399", + "ident": "NA-0158", + "type": "small_airport", + "name": "Isibis Airstrip", + "latitude_deg": "-23.4178", + "longitude_deg": "16.5075", + "elevation_ft": "5600", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KH", + "municipality": "Isibis", + "scheduled_service": "no" + }, + { + "id": "318395", + "ident": "NA-0159", + "type": "small_airport", + "name": "Khorixas Airport", + "latitude_deg": "-20.366192", + "longitude_deg": "15.059298", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KU", + "municipality": "Khorixas", + "scheduled_service": "no" + }, + { + "id": "318396", + "ident": "NA-0160", + "type": "small_airport", + "name": "Okongwati Airport", + "latitude_deg": "-17.43873", + "longitude_deg": "13.2782", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KU", + "municipality": "Okongwati", + "scheduled_service": "no" + }, + { + "id": "318397", + "ident": "NA-0161", + "type": "small_airport", + "name": "Okongo Airport", + "latitude_deg": "-17.565947", + "longitude_deg": "17.225298", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OW", + "municipality": "Okongo", + "scheduled_service": "no" + }, + { + "id": "318401", + "ident": "NA-0162", + "type": "small_airport", + "name": "Kongola Airport", + "latitude_deg": "-17.775197", + "longitude_deg": "23.307089", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-CA", + "municipality": "Kongola", + "scheduled_service": "no" + }, + { + "id": "318402", + "ident": "NA-0163", + "type": "closed", + "name": "Susuwe Airport", + "latitude_deg": "-17.775984", + "longitude_deg": "23.278472", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-CA", + "municipality": "Kongola", + "scheduled_service": "no" + }, + { + "id": "318404", + "ident": "NA-0164", + "type": "small_airport", + "name": "Sikereti Airport", + "latitude_deg": "-19.104117", + "longitude_deg": "20.698375", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KE", + "municipality": "Sikereti", + "scheduled_service": "no" + }, + { + "id": "318405", + "ident": "NA-0165", + "type": "small_airport", + "name": "Otjituuo Airport", + "latitude_deg": "-19.652406", + "longitude_deg": "18.558635", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OD", + "municipality": "Otjituuo", + "scheduled_service": "no" + }, + { + "id": "318406", + "ident": "NA-0166", + "type": "small_airport", + "name": "Okakarara Airport", + "latitude_deg": "-20.601996", + "longitude_deg": "17.468807", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OD", + "municipality": "Okakarara", + "scheduled_service": "no" + }, + { + "id": "318532", + "ident": "NA-0167", + "type": "small_airport", + "name": "B8 Airstrip", + "latitude_deg": "-19.059552", + "longitude_deg": "18.664579", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OD", + "scheduled_service": "no" + }, + { + "id": "318534", + "ident": "NA-0168", + "type": "small_airport", + "name": "Palmwag Airport", + "latitude_deg": "-19.873201", + "longitude_deg": "13.943931", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KU", + "municipality": "Palmwag", + "scheduled_service": "no" + }, + { + "id": "318535", + "ident": "NA-0169", + "type": "small_airport", + "name": "Ehomba Airport", + "latitude_deg": "-17.488", + "longitude_deg": "13.836836", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KU", + "municipality": "Ehomba", + "scheduled_service": "no" + }, + { + "id": "318537", + "ident": "NA-0170", + "type": "small_airport", + "name": "Uukwaluudhi Airport", + "latitude_deg": "-18.109282", + "longitude_deg": "14.410431", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OS", + "scheduled_service": "no" + }, + { + "id": "318834", + "ident": "NA-0171", + "type": "small_airport", + "name": "Outapi Airport", + "latitude_deg": "-17.574847", + "longitude_deg": "15.007946", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-OS", + "municipality": "Outapi", + "scheduled_service": "no" + }, + { + "id": "318844", + "ident": "NA-0172", + "type": "small_airport", + "name": "Haklesdoorn Airport", + "latitude_deg": "-28.886092", + "longitude_deg": "18.239166", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Haklesdoorn", + "scheduled_service": "no" + }, + { + "id": "319258", + "ident": "NA-0173", + "type": "small_airport", + "name": "Ndonga Linena Airstrip", + "latitude_deg": "-17.98345", + "longitude_deg": "20.534708", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KW", + "municipality": "Shitemo", + "scheduled_service": "no" + }, + { + "id": "322414", + "ident": "NA-0174", + "type": "small_airport", + "name": "Farm Etemba Landing Strip", + "latitude_deg": "-21.405111", + "longitude_deg": "15.606778", + "elevation_ft": "3503", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ER", + "municipality": "Etemba Wilderness Camp", + "scheduled_service": "no" + }, + { + "id": "322415", + "ident": "NA-0175", + "type": "small_airport", + "name": "Farm Dawib Ost Landing Strip", + "latitude_deg": "-21.774528", + "longitude_deg": "15.515361", + "elevation_ft": "3503", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-ER", + "municipality": "Hohenstein Lodge", + "scheduled_service": "no" + }, + { + "id": "322416", + "ident": "NA-0176", + "type": "small_airport", + "name": "Farm Gurus Landing Strip", + "latitude_deg": "-24.07675", + "longitude_deg": "17.610417", + "elevation_ft": "4061", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-HA", + "municipality": "Kalkrand", + "scheduled_service": "no" + }, + { + "id": "345911", + "ident": "NA-0177", + "type": "small_airport", + "name": "Desert Rhino Camp Airstrip", + "latitude_deg": "-20.036661", + "longitude_deg": "13.844147", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KU", + "scheduled_service": "no" + }, + { + "id": "351688", + "ident": "NA-0178", + "type": "small_airport", + "name": "Namushasha River Lodge Airport", + "latitude_deg": "-17.98384", + "longitude_deg": "23.30932", + "elevation_ft": "3161", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-CA", + "municipality": "Ngonga", + "scheduled_service": "no" + }, + { + "id": "353241", + "ident": "NA-0179", + "type": "small_airport", + "name": "Skuit Drift Airport", + "latitude_deg": "-28.37664", + "longitude_deg": "19.77924", + "elevation_ft": "3150", + "continent": "AF", + "iso_country": "NA", + "iso_region": "NA-KA", + "municipality": "Skuit Drift", + "scheduled_service": "no" + }, + { + "id": "22697", + "ident": "NA01", + "type": "small_airport", + "name": "Jenson Airport", + "latitude_deg": "47.66830062866211", + "longitude_deg": "-97.00540161132812", + "elevation_ft": "867", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Reynolds", + "scheduled_service": "no", + "gps_code": "NA01", + "local_code": "NA01" + }, + { + "id": "22698", + "ident": "NA02", + "type": "small_airport", + "name": "Saure Airport", + "latitude_deg": "47.704715", + "longitude_deg": "-97.054703", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Americus", + "scheduled_service": "no", + "gps_code": "NA02", + "local_code": "NA02" + }, + { + "id": "22699", + "ident": "NA03", + "type": "small_airport", + "name": "Boll Brothers Airstrip", + "latitude_deg": "48.67250061035156", + "longitude_deg": "-100.85800170898438", + "elevation_ft": "1453", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Russell", + "scheduled_service": "no", + "gps_code": "NA03", + "local_code": "NA03" + }, + { + "id": "22700", + "ident": "NA05", + "type": "small_airport", + "name": "Kraig Farms Airport", + "latitude_deg": "46.61220169067383", + "longitude_deg": "-97.43560028076172", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Sheldon", + "scheduled_service": "no", + "gps_code": "NA05", + "local_code": "NA05" + }, + { + "id": "22701", + "ident": "NA06", + "type": "small_airport", + "name": "Bouret Ranch Airport", + "latitude_deg": "47.86280059814453", + "longitude_deg": "-98.97260284423828", + "elevation_ft": "1505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Sheyenne", + "scheduled_service": "no", + "gps_code": "NA06", + "local_code": "NA06" + }, + { + "id": "22702", + "ident": "NA07", + "type": "small_airport", + "name": "Kornkven Airstrip", + "latitude_deg": "48.88639831542969", + "longitude_deg": "-100.69499969482422", + "elevation_ft": "1505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Souris", + "scheduled_service": "no", + "gps_code": "NA07", + "local_code": "NA07" + }, + { + "id": "22703", + "ident": "NA10", + "type": "small_airport", + "name": "Anderson Private Airport", + "latitude_deg": "48.38059997558594", + "longitude_deg": "-99.03369903564453", + "elevation_ft": "1460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Starkweather", + "scheduled_service": "no", + "gps_code": "NA10", + "local_code": "NA10" + }, + { + "id": "22704", + "ident": "NA12", + "type": "small_airport", + "name": "Johnson Private Airport", + "latitude_deg": "47.43170166015625", + "longitude_deg": "-100.84200286865234", + "elevation_ft": "1920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Turtle Lake", + "scheduled_service": "no", + "gps_code": "NA12", + "local_code": "NA12" + }, + { + "id": "22705", + "ident": "NA13", + "type": "small_airport", + "name": "Linrud Airstrip", + "latitude_deg": "48.12220001220703", + "longitude_deg": "-100.93699645996094", + "elevation_ft": "1605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Velva", + "scheduled_service": "no", + "gps_code": "NA13", + "local_code": "NA13" + }, + { + "id": "22706", + "ident": "NA17", + "type": "small_airport", + "name": "Jacob Gust Airport", + "latitude_deg": "46.94269943237305", + "longitude_deg": "-96.92900085449219", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "West Fargo", + "scheduled_service": "no", + "gps_code": "NA17", + "local_code": "NA17" + }, + { + "id": "22707", + "ident": "NA18", + "type": "small_airport", + "name": "Hought Airstrip", + "latitude_deg": "48.41339874267578", + "longitude_deg": "-103.83599853515625", + "elevation_ft": "2400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Williston", + "scheduled_service": "no", + "gps_code": "NA18", + "local_code": "NA18" + }, + { + "id": "22708", + "ident": "NA20", + "type": "closed", + "name": "Hudson's Strip", + "latitude_deg": "46.248001", + "longitude_deg": "-97.257301", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Wyndmere", + "scheduled_service": "no", + "keywords": "NA20" + }, + { + "id": "22709", + "ident": "NA21", + "type": "small_airport", + "name": "Thompson Private Airport", + "latitude_deg": "46.22829818725586", + "longitude_deg": "-97.23619842529297", + "elevation_ft": "1075", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Wyndmere", + "scheduled_service": "no", + "gps_code": "NA21", + "local_code": "NA21" + }, + { + "id": "22710", + "ident": "NA22", + "type": "small_airport", + "name": "Vernon Miller Private Airport", + "latitude_deg": "46.01250076293945", + "longitude_deg": "-103.7959976196289", + "elevation_ft": "3102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Rhame", + "scheduled_service": "no", + "gps_code": "NA22", + "local_code": "NA22" + }, + { + "id": "22711", + "ident": "NA25", + "type": "closed", + "name": "Holen Aerial Spray Airstrip", + "latitude_deg": "48.4986", + "longitude_deg": "-100.653", + "elevation_ft": "1460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Bantry", + "scheduled_service": "no", + "keywords": "NA25" + }, + { + "id": "22712", + "ident": "NA30", + "type": "small_airport", + "name": "Behrens Airstrip", + "latitude_deg": "48.270577", + "longitude_deg": "-101.39788", + "elevation_ft": "1742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "NA30", + "local_code": "NA30" + }, + { + "id": "22713", + "ident": "NA32", + "type": "small_airport", + "name": "Johnson Airstrip", + "latitude_deg": "46.89860153198242", + "longitude_deg": "-98.85870361328125", + "elevation_ft": "1548", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Eldridge", + "scheduled_service": "no", + "gps_code": "NA32", + "local_code": "NA32" + }, + { + "id": "22714", + "ident": "NA33", + "type": "small_airport", + "name": "Ripplinger Strip", + "latitude_deg": "48.0010986328125", + "longitude_deg": "-99.9260025024414", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Esmond", + "scheduled_service": "no", + "gps_code": "NA33", + "local_code": "NA33" + }, + { + "id": "22715", + "ident": "NA38", + "type": "small_airport", + "name": "Sabbe Brothers Landing Strip", + "latitude_deg": "47.950599670410156", + "longitude_deg": "-99.42960357666016", + "elevation_ft": "1572", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Maddock", + "scheduled_service": "no", + "gps_code": "NA38", + "local_code": "NA38" + }, + { + "id": "22716", + "ident": "NA39", + "type": "small_airport", + "name": "Dorbrinski Airport", + "latitude_deg": "47.89780044555664", + "longitude_deg": "-101.8550033569336", + "elevation_ft": "2133", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Makoti", + "scheduled_service": "no", + "gps_code": "NA39", + "local_code": "NA39" + }, + { + "id": "22717", + "ident": "NA44", + "type": "small_airport", + "name": "Georgeson Farm Strip", + "latitude_deg": "47.65420150756836", + "longitude_deg": "-99.15959930419922", + "elevation_ft": "1535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "New Rockford", + "scheduled_service": "no", + "gps_code": "NA44", + "local_code": "NA44" + }, + { + "id": "22718", + "ident": "NA49", + "type": "small_airport", + "name": "Paul Airstrip", + "latitude_deg": "48.41780090332031", + "longitude_deg": "-100.05500030517578", + "elevation_ft": "1530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Rugby", + "scheduled_service": "no", + "gps_code": "NA49", + "local_code": "NA49" + }, + { + "id": "22719", + "ident": "NA54", + "type": "small_airport", + "name": "Moser Airstrip", + "latitude_deg": "45.95500183105469", + "longitude_deg": "-100.44200134277344", + "elevation_ft": "1750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Westfield", + "scheduled_service": "no", + "gps_code": "NA54", + "local_code": "NA54" + }, + { + "id": "22720", + "ident": "NA55", + "type": "small_airport", + "name": "Hager Strip", + "latitude_deg": "46.2661018371582", + "longitude_deg": "-97.01619720458984", + "elevation_ft": "1037", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Barney", + "scheduled_service": "no", + "gps_code": "NA55", + "local_code": "NA55" + }, + { + "id": "22721", + "ident": "NA56", + "type": "small_airport", + "name": "Moffet Airstrip", + "latitude_deg": "46.30220031738281", + "longitude_deg": "-96.99150085449219", + "elevation_ft": "1028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Barney", + "scheduled_service": "no", + "gps_code": "NA56", + "local_code": "NA56" + }, + { + "id": "22722", + "ident": "NA60", + "type": "small_airport", + "name": "Dakota Airport", + "latitude_deg": "47.23500061035156", + "longitude_deg": "-97.03839874267578", + "elevation_ft": "903", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Grandin", + "scheduled_service": "no", + "gps_code": "NA60", + "local_code": "NA60" + }, + { + "id": "22723", + "ident": "NA61", + "type": "small_airport", + "name": "Tachenko Strip", + "latitude_deg": "47.29560089111328", + "longitude_deg": "-103.18900299072266", + "elevation_ft": "2686", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Grassy Butte", + "scheduled_service": "no", + "gps_code": "NA61", + "local_code": "NA61" + }, + { + "id": "22724", + "ident": "NA63", + "type": "small_airport", + "name": "Storseth Airstrip", + "latitude_deg": "48.66669845581055", + "longitude_deg": "-103.85600280761719", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Grenora", + "scheduled_service": "no", + "gps_code": "NA63", + "local_code": "NA63" + }, + { + "id": "22725", + "ident": "NA65", + "type": "small_airport", + "name": "Anderson Strip", + "latitude_deg": "48.53139877319336", + "longitude_deg": "-97.62809753417969", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Hoople", + "scheduled_service": "no", + "gps_code": "NA65", + "local_code": "NA65" + }, + { + "id": "22726", + "ident": "NA67", + "type": "small_airport", + "name": "Horsley Airstrip", + "latitude_deg": "48.9838981628418", + "longitude_deg": "-97.4645004272461", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Neche", + "scheduled_service": "no", + "gps_code": "NA67", + "local_code": "NA67" + }, + { + "id": "22727", + "ident": "NA70", + "type": "small_airport", + "name": "Smith Airstrip", + "latitude_deg": "47.77389907836914", + "longitude_deg": "-98.9884033203125", + "elevation_ft": "1535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Sheyenne", + "scheduled_service": "no", + "gps_code": "NA70", + "local_code": "NA70" + }, + { + "id": "22728", + "ident": "NA71", + "type": "small_airport", + "name": "M. Bodvig Airstrip", + "latitude_deg": "46.99580001831055", + "longitude_deg": "-99.67120361328125", + "elevation_ft": "1750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Tappen", + "scheduled_service": "no", + "gps_code": "NA71", + "local_code": "NA71" + }, + { + "id": "22729", + "ident": "NA73", + "type": "small_airport", + "name": "Welstad Farms Airstrip", + "latitude_deg": "48.563899993896484", + "longitude_deg": "-101", + "elevation_ft": "1480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Upham", + "scheduled_service": "no", + "gps_code": "NA73", + "local_code": "NA73" + }, + { + "id": "22730", + "ident": "NA75", + "type": "small_airport", + "name": "Lill Strip", + "latitude_deg": "47.67639923095703", + "longitude_deg": "-99.3904037475586", + "elevation_ft": "1560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Bremen", + "scheduled_service": "no", + "gps_code": "NA75", + "local_code": "NA75" + }, + { + "id": "22731", + "ident": "NA77", + "type": "small_airport", + "name": "Mc Gee Strip", + "latitude_deg": "45.9866981506", + "longitude_deg": "-103.846000671", + "elevation_ft": "3014", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Rhame", + "scheduled_service": "no", + "gps_code": "NA77", + "local_code": "NA77" + }, + { + "id": "22732", + "ident": "NA79", + "type": "small_airport", + "name": "Philbrick Private Airstrip", + "latitude_deg": "47.40420150756836", + "longitude_deg": "-100.88200378417969", + "elevation_ft": "1915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Turtle Lake", + "scheduled_service": "no", + "gps_code": "NA79", + "local_code": "NA79" + }, + { + "id": "22733", + "ident": "NA81", + "type": "small_airport", + "name": "Central Valley Aviation Airport", + "latitude_deg": "47.628299713134766", + "longitude_deg": "-97.08650207519531", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Buxton", + "scheduled_service": "no", + "gps_code": "NA81", + "local_code": "NA81" + }, + { + "id": "22734", + "ident": "NA84", + "type": "small_airport", + "name": "L. Seckerson Airstrip", + "latitude_deg": "46.800498962402344", + "longitude_deg": "-99.00509643554688", + "elevation_ft": "1740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Eldridge", + "scheduled_service": "no", + "gps_code": "NA84", + "local_code": "NA84" + }, + { + "id": "22735", + "ident": "NA86", + "type": "small_airport", + "name": "Johnson Private Airstrip", + "latitude_deg": "47.33330154418945", + "longitude_deg": "-97.9009017944336", + "elevation_ft": "1492", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Luverne", + "scheduled_service": "no", + "gps_code": "NA86", + "local_code": "NA86" + }, + { + "id": "22736", + "ident": "NA88", + "type": "small_airport", + "name": "Regan Airstrip", + "latitude_deg": "47.223899841308594", + "longitude_deg": "-100.4229965209961", + "elevation_ft": "2060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Regan", + "scheduled_service": "no", + "gps_code": "NA88", + "local_code": "NA88" + }, + { + "id": "22737", + "ident": "NA89", + "type": "small_airport", + "name": "Holzman Airstrip", + "latitude_deg": "46.222198486328125", + "longitude_deg": "-103.02100372314453", + "elevation_ft": "2840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Scranton", + "scheduled_service": "no", + "gps_code": "NA89", + "local_code": "NA89" + }, + { + "id": "22738", + "ident": "NA90", + "type": "small_airport", + "name": "Circle Z Landing Strip", + "latitude_deg": "47.46670150756836", + "longitude_deg": "-101.2229995727539", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Underwood", + "scheduled_service": "no", + "gps_code": "NA90", + "local_code": "NA90" + }, + { + "id": "22739", + "ident": "NA92", + "type": "small_airport", + "name": "Overland-Lohse Field", + "latitude_deg": "48.578602", + "longitude_deg": "-103.466003", + "elevation_ft": "2124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Alamo", + "scheduled_service": "no", + "gps_code": "27ND", + "local_code": "27ND", + "keywords": "NA92, Roy Lohse" + }, + { + "id": "22740", + "ident": "NA98", + "type": "small_airport", + "name": "Dilse Private Airstrip", + "latitude_deg": "46.3025016784668", + "longitude_deg": "-103.16999816894531", + "elevation_ft": "2878", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Scranton", + "scheduled_service": "no", + "gps_code": "NA98", + "local_code": "NA98" + }, + { + "id": "22741", + "ident": "NA99", + "type": "small_airport", + "name": "Bakko Airstrip", + "latitude_deg": "46.550498962402344", + "longitude_deg": "-97.03199768066406", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Walcott", + "scheduled_service": "no", + "gps_code": "NA99", + "local_code": "NA99" + }, + { + "id": "300544", + "ident": "NBS", + "type": "medium_airport", + "name": "Changbaishan Airport", + "latitude_deg": "42.066944", + "longitude_deg": "127.602222", + "elevation_ft": "2874", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-22", + "municipality": "Baishan", + "scheduled_service": "yes", + "gps_code": "ZYBS", + "iata_code": "NBS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Changbaishan_Airport" + }, + { + "id": "22742", + "ident": "NBV", + "type": "heliport", + "name": "Coastal Systems Station Heliport", + "latitude_deg": "30.174100875854", + "longitude_deg": "-85.753303527832", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City", + "scheduled_service": "no", + "gps_code": "KNBV", + "local_code": "NBV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Support_Activity_Panama_City", + "keywords": "Naval Surface Warfare Center Panama City Heliport" + }, + { + "id": "315559", + "ident": "NC-0001", + "type": "small_airport", + "name": "Île Hugon Airstrip", + "latitude_deg": "-22.041724", + "longitude_deg": "166.03215", + "elevation_ft": "25", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Hugon Island", + "scheduled_service": "no" + }, + { + "id": "349334", + "ident": "NC-0002", + "type": "small_airport", + "name": "Nakutakoin Ultralight Airport", + "latitude_deg": "-22.16896", + "longitude_deg": "166.4332", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Dumbéa", + "scheduled_service": "no", + "keywords": "NWDU, Dumbéa" + }, + { + "id": "349335", + "ident": "NC-0003", + "type": "heliport", + "name": "Médipôle de Koutio - Gaston-Bourret Territorial Central Hospital Heliport", + "latitude_deg": "-22.20842", + "longitude_deg": "166.45288", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Dumbéa-sur-Mer", + "scheduled_service": "no" + }, + { + "id": "349336", + "ident": "NC-0004", + "type": "heliport", + "name": "Méridien Heliport", + "latitude_deg": "-22.31222", + "longitude_deg": "166.44845", + "elevation_ft": "3", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Nouméa", + "scheduled_service": "no" + }, + { + "id": "349337", + "ident": "NC-0005", + "type": "small_airport", + "name": "Ouinne Private Airport", + "latitude_deg": "-21.96923", + "longitude_deg": "166.672", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Ouinne", + "scheduled_service": "no" + }, + { + "id": "5022", + "ident": "NC-0006", + "type": "closed", + "name": "Canala Airport", + "latitude_deg": "-21.520435", + "longitude_deg": "165.971947", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Canala", + "scheduled_service": "no", + "keywords": "NWWX" + }, + { + "id": "22743", + "ident": "NC00", + "type": "small_airport", + "name": "Moretz Riverside Landing Airport", + "latitude_deg": "35.560001373291016", + "longitude_deg": "-79.193603515625", + "elevation_ft": "326", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Sanford", + "scheduled_service": "no", + "gps_code": "NC00", + "local_code": "NC00" + }, + { + "id": "22744", + "ident": "NC01", + "type": "small_airport", + "name": "Harvey Point Defense Testing Activity Airport", + "latitude_deg": "36.09619903564453", + "longitude_deg": "-76.32710266113281", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hertford", + "scheduled_service": "no", + "gps_code": "NC01", + "local_code": "NC01" + }, + { + "id": "22745", + "ident": "NC02", + "type": "small_airport", + "name": "Boomerang Airport", + "latitude_deg": "35.21260070800781", + "longitude_deg": "-81.86650085449219", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Harris", + "scheduled_service": "no", + "gps_code": "NC02", + "local_code": "NC02" + }, + { + "id": "22746", + "ident": "NC03", + "type": "small_airport", + "name": "Darr Field", + "latitude_deg": "35.906607", + "longitude_deg": "-79.989223", + "elevation_ft": "874", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "High Point", + "scheduled_service": "no", + "gps_code": "NC03", + "local_code": "NC03" + }, + { + "id": "22747", + "ident": "NC04", + "type": "heliport", + "name": "Watauga County Hospital Heliport", + "latitude_deg": "36.19929885864258", + "longitude_deg": "-81.65149688720703", + "elevation_ft": "2988", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Boone", + "scheduled_service": "no", + "gps_code": "NC04", + "local_code": "NC04" + }, + { + "id": "22748", + "ident": "NC05", + "type": "small_airport", + "name": "Bradford Field Airport", + "latitude_deg": "35.4086990356", + "longitude_deg": "-80.7941970825", + "elevation_ft": "649", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Huntersville", + "scheduled_service": "no", + "gps_code": "NC05", + "local_code": "NC05" + }, + { + "id": "22749", + "ident": "NC06", + "type": "small_airport", + "name": "Elk River Airport", + "latitude_deg": "36.160474", + "longitude_deg": "-81.894809", + "elevation_ft": "3468", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Banner Elk", + "scheduled_service": "no", + "gps_code": "NC06", + "local_code": "NC06" + }, + { + "id": "22750", + "ident": "NC07", + "type": "heliport", + "name": "Charles A. Cannon, Jr Memorial Hospital Heliport", + "latitude_deg": "36.06669998168945", + "longitude_deg": "-81.86669921875", + "elevation_ft": "3000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Banner Elk", + "scheduled_service": "no", + "gps_code": "NC07", + "local_code": "NC07" + }, + { + "id": "22751", + "ident": "NC08", + "type": "small_airport", + "name": "Tusquittee Landing Airport", + "latitude_deg": "35.08539962768555", + "longitude_deg": "-83.73629760742188", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hayesville", + "scheduled_service": "no", + "gps_code": "NC08", + "local_code": "NC08" + }, + { + "id": "22752", + "ident": "NC09", + "type": "small_airport", + "name": "Stoneriver Airport", + "latitude_deg": "35.8838996887207", + "longitude_deg": "-80.77670288085938", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Statesville", + "scheduled_service": "no", + "gps_code": "NC09", + "local_code": "NC09" + }, + { + "id": "22753", + "ident": "NC10", + "type": "small_airport", + "name": "Nocarva Airport", + "latitude_deg": "36.54180145263672", + "longitude_deg": "-78.05799865722656", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Macon", + "scheduled_service": "no", + "gps_code": "NC10", + "local_code": "NC10" + }, + { + "id": "22754", + "ident": "NC11", + "type": "small_airport", + "name": "Deck Airpark", + "latitude_deg": "35.74150085449219", + "longitude_deg": "-78.92469787597656", + "elevation_ft": "338", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Apex", + "scheduled_service": "no", + "gps_code": "NC11", + "local_code": "NC11" + }, + { + "id": "22755", + "ident": "NC12", + "type": "small_airport", + "name": "Lee Creek Airport", + "latitude_deg": "35.38959884643555", + "longitude_deg": "-76.78469848632812", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Aurora", + "scheduled_service": "no", + "gps_code": "NC12", + "local_code": "NC12" + }, + { + "id": "22756", + "ident": "NC13", + "type": "small_airport", + "name": "Yorks Field", + "latitude_deg": "35.753566", + "longitude_deg": "-79.667933", + "elevation_ft": "571", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Ramseur", + "scheduled_service": "no", + "gps_code": "NC13", + "local_code": "NC13" + }, + { + "id": "22757", + "ident": "NC14", + "type": "small_airport", + "name": "Boone Inc Airport", + "latitude_deg": "36.196800231933594", + "longitude_deg": "-81.6395034790039", + "elevation_ft": "3120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Boone", + "scheduled_service": "no", + "gps_code": "NC14", + "local_code": "NC14" + }, + { + "id": "22758", + "ident": "NC15", + "type": "small_airport", + "name": "Raeford Rhyne Airpark", + "latitude_deg": "35.95709991455078", + "longitude_deg": "-80.97899627685547", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Statesville", + "scheduled_service": "no", + "gps_code": "NC15", + "local_code": "NC15" + }, + { + "id": "22759", + "ident": "NC16", + "type": "small_airport", + "name": "Brevard Airport", + "latitude_deg": "35.222599029541016", + "longitude_deg": "-82.72679901123047", + "elevation_ft": "2125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Brevard", + "scheduled_service": "no", + "gps_code": "NC16", + "local_code": "NC16" + }, + { + "id": "22760", + "ident": "NC17", + "type": "small_airport", + "name": "Wolf's Den Airport", + "latitude_deg": "34.980051", + "longitude_deg": "-76.302308", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Cedar Island", + "scheduled_service": "no", + "gps_code": "NC17", + "local_code": "NC17" + }, + { + "id": "22761", + "ident": "NC18", + "type": "closed", + "name": "Brickhouse Field", + "latitude_deg": "34.414101", + "longitude_deg": "-77.949699", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Burgaw", + "scheduled_service": "no", + "keywords": "NC18" + }, + { + "id": "22762", + "ident": "NC19", + "type": "small_airport", + "name": "Propst Airport", + "latitude_deg": "35.391035", + "longitude_deg": "-80.57527", + "elevation_ft": "621", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "NC19", + "local_code": "NC19", + "keywords": "0A1" + }, + { + "id": "22763", + "ident": "NC20", + "type": "small_airport", + "name": "Canaan Air Base", + "latitude_deg": "35.08727264", + "longitude_deg": "-77.16246796", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "New Bern", + "scheduled_service": "no", + "gps_code": "NC20", + "local_code": "NC20" + }, + { + "id": "22764", + "ident": "NC21", + "type": "small_airport", + "name": "Aero Plantation Airport", + "latitude_deg": "34.991798400878906", + "longitude_deg": "-80.74839782714844", + "elevation_ft": "634", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Weddington", + "scheduled_service": "no", + "gps_code": "NC21", + "local_code": "NC21" + }, + { + "id": "22765", + "ident": "NC22", + "type": "small_airport", + "name": "Charles Field", + "latitude_deg": "35.227500915527344", + "longitude_deg": "-78.5551986694336", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Dunn", + "scheduled_service": "no", + "gps_code": "NC22", + "local_code": "NC22" + }, + { + "id": "322195", + "ident": "NC23", + "type": "heliport", + "name": "Johnston Memorial Hospital Heliport", + "latitude_deg": "35.515658", + "longitude_deg": "-78.333507", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Smithfield", + "scheduled_service": "no", + "gps_code": "NC23", + "local_code": "NC23", + "keywords": "09NR" + }, + { + "id": "22766", + "ident": "NC24", + "type": "heliport", + "name": "Delta Air Base", + "latitude_deg": "35.21255", + "longitude_deg": "-80.72204", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Charlotte", + "scheduled_service": "no", + "gps_code": "NC24", + "local_code": "NC24" + }, + { + "id": "22767", + "ident": "NC25", + "type": "small_airport", + "name": "Gold Hill Airport", + "latitude_deg": "35.5089988708", + "longitude_deg": "-80.3112030029", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Gold Hill", + "scheduled_service": "no", + "gps_code": "NC25", + "local_code": "NC25" + }, + { + "id": "22768", + "ident": "NC26", + "type": "small_airport", + "name": "Long Island Airpark", + "latitude_deg": "35.661718", + "longitude_deg": "-80.971705", + "elevation_ft": "864", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Catawba", + "scheduled_service": "no", + "gps_code": "NC26", + "local_code": "NC26" + }, + { + "id": "22769", + "ident": "NC27", + "type": "small_airport", + "name": "Lower Creek Airport", + "latitude_deg": "35.94459915161133", + "longitude_deg": "-81.49009704589844", + "elevation_ft": "1195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Lenoir", + "scheduled_service": "no", + "gps_code": "NC27", + "local_code": "NC27" + }, + { + "id": "22770", + "ident": "NC28", + "type": "small_airport", + "name": "Meadstown Airstrip", + "latitude_deg": "36.200199127197266", + "longitude_deg": "-76.23580169677734", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Elizabeth City", + "scheduled_service": "no", + "gps_code": "NC28", + "local_code": "NC28" + }, + { + "id": "22771", + "ident": "NC29", + "type": "small_airport", + "name": "Bradley Field", + "latitude_deg": "35.62009811401367", + "longitude_deg": "-80.59760284423828", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "China Grove", + "scheduled_service": "no", + "gps_code": "NC29", + "local_code": "NC29" + }, + { + "id": "22772", + "ident": "NC30", + "type": "small_airport", + "name": "Miller Air Park", + "latitude_deg": "35.61399841308594", + "longitude_deg": "-80.74150085449219", + "elevation_ft": "864", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Mooresville", + "scheduled_service": "no", + "gps_code": "NC30", + "local_code": "NC30" + }, + { + "id": "22773", + "ident": "NC31", + "type": "small_airport", + "name": "Quiet Acres Airport", + "latitude_deg": "35.76490020751953", + "longitude_deg": "-80.02420043945312", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Thomasville", + "scheduled_service": "no", + "gps_code": "NC31", + "local_code": "NC31" + }, + { + "id": "22774", + "ident": "NC32", + "type": "small_airport", + "name": "Rivercliff Airport", + "latitude_deg": "36.025799", + "longitude_deg": "-80.436402", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Clemmons", + "scheduled_service": "no", + "gps_code": "NC32", + "local_code": "NC32", + "keywords": "Berts Airport" + }, + { + "id": "22775", + "ident": "NC33", + "type": "heliport", + "name": "Mission Hospital McDowell Heliport", + "latitude_deg": "35.662439", + "longitude_deg": "-82.029419", + "elevation_ft": "1470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "NC33", + "local_code": "NC33", + "home_link": "https://missionhealth.org/member-hospitals/mcdowell/", + "keywords": "02NC, McDowell Hospital" + }, + { + "id": "22776", + "ident": "NC34", + "type": "small_airport", + "name": "Miles Airport", + "latitude_deg": "35.970401763916016", + "longitude_deg": "-79.12470245361328", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Chapel Hill", + "scheduled_service": "no", + "gps_code": "NC34", + "local_code": "NC34" + }, + { + "id": "22777", + "ident": "NC35", + "type": "closed", + "name": "Spencer Airport", + "latitude_deg": "35.402901", + "longitude_deg": "-80.622002", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Concord", + "scheduled_service": "no", + "keywords": "NC35" + }, + { + "id": "22778", + "ident": "NC36", + "type": "small_airport", + "name": "Benton's Airfield", + "latitude_deg": "35.502899169921875", + "longitude_deg": "-78.0302963256836", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Pikeville", + "scheduled_service": "no", + "gps_code": "NC36", + "local_code": "NC36" + }, + { + "id": "22779", + "ident": "NC37", + "type": "small_airport", + "name": "Mountain View Aerodrome", + "latitude_deg": "36.338952", + "longitude_deg": "-79.823295", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Reidsville", + "scheduled_service": "no", + "gps_code": "NC37", + "local_code": "NC37" + }, + { + "id": "22780", + "ident": "NC38", + "type": "heliport", + "name": "Propst Heliport", + "latitude_deg": "35.628299713134766", + "longitude_deg": "-81.375", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hickory", + "scheduled_service": "no", + "gps_code": "NC38", + "local_code": "NC38" + }, + { + "id": "22781", + "ident": "NC39", + "type": "small_airport", + "name": "Enochville Airport", + "latitude_deg": "35.52429962158203", + "longitude_deg": "-80.64779663085938", + "elevation_ft": "789", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Kannapolis", + "scheduled_service": "no", + "gps_code": "NC39", + "local_code": "NC39" + }, + { + "id": "22782", + "ident": "NC40", + "type": "small_airport", + "name": "Holeman Field", + "latitude_deg": "36.499698638916016", + "longitude_deg": "-79.11859893798828", + "elevation_ft": "578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Roxboro", + "scheduled_service": "no", + "gps_code": "NC40", + "local_code": "NC40" + }, + { + "id": "22783", + "ident": "NC41", + "type": "heliport", + "name": "Hendrick Motorsports Heliport", + "latitude_deg": "35.357536", + "longitude_deg": "-80.705826", + "elevation_ft": "686", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "NC41", + "local_code": "NC41" + }, + { + "id": "22784", + "ident": "NC42", + "type": "small_airport", + "name": "Piney Ridge Airport", + "latitude_deg": "36.07210159301758", + "longitude_deg": "-80.69979858398438", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Yadkinville", + "scheduled_service": "no", + "gps_code": "NC42", + "local_code": "NC42" + }, + { + "id": "22785", + "ident": "NC43", + "type": "small_airport", + "name": "Bear Pen Airport", + "latitude_deg": "34.12519836425781", + "longitude_deg": "-78.33809661865234", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Supply", + "scheduled_service": "no", + "gps_code": "NC43", + "local_code": "NC43" + }, + { + "id": "22786", + "ident": "NC44", + "type": "small_airport", + "name": "Barclaysville Field", + "latitude_deg": "35.46689987182617", + "longitude_deg": "-78.68389892578125", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Angier", + "scheduled_service": "no", + "gps_code": "NC44", + "local_code": "NC44" + }, + { + "id": "22787", + "ident": "NC45", + "type": "small_airport", + "name": "Enfield-Shearin Airport", + "latitude_deg": "36.217201232910156", + "longitude_deg": "-77.63749694824219", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Enfield", + "scheduled_service": "no", + "gps_code": "NC45", + "local_code": "NC45" + }, + { + "id": "22788", + "ident": "NC46", + "type": "heliport", + "name": "Salisbury V.A. Medical Center Heliport", + "latitude_deg": "35.68349838256836", + "longitude_deg": "-80.48870086669922", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Salisbury", + "scheduled_service": "no", + "gps_code": "NC46", + "local_code": "NC46" + }, + { + "id": "22789", + "ident": "NC47", + "type": "small_airport", + "name": "South Oaks Aerodrome", + "latitude_deg": "35.482164", + "longitude_deg": "-77.355904", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Winterville", + "scheduled_service": "no", + "local_code": "05N", + "home_link": "https://www.southoaksaerodrome.org/", + "keywords": "NC47" + }, + { + "id": "22790", + "ident": "NC48", + "type": "small_airport", + "name": "Safe Field", + "latitude_deg": "34.75019836425781", + "longitude_deg": "-78.05999755859375", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Wallace", + "scheduled_service": "no", + "gps_code": "NC48", + "local_code": "NC48" + }, + { + "id": "22791", + "ident": "NC49", + "type": "small_airport", + "name": "Boyd Field", + "latitude_deg": "35.527801513671875", + "longitude_deg": "-77.19670104980469", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Grimesland", + "scheduled_service": "no", + "gps_code": "NC49", + "local_code": "NC49" + }, + { + "id": "22792", + "ident": "NC50", + "type": "small_airport", + "name": "Skyland Airport", + "latitude_deg": "36.460098", + "longitude_deg": "-81.361504", + "elevation_ft": "2860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Jefferson", + "scheduled_service": "no", + "gps_code": "NC50", + "local_code": "NC50" + }, + { + "id": "22793", + "ident": "NC51", + "type": "heliport", + "name": "Halifax Regional Medical Center Heliport", + "latitude_deg": "36.436798095703125", + "longitude_deg": "-77.64610290527344", + "elevation_ft": "169", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Roanoke Rapids", + "scheduled_service": "no", + "gps_code": "NC51", + "local_code": "NC51" + }, + { + "id": "22794", + "ident": "NC52", + "type": "small_airport", + "name": "Silver Creek Airport", + "latitude_deg": "35.72850036621094", + "longitude_deg": "-81.72899627685547", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Morganton", + "scheduled_service": "no", + "gps_code": "NC52", + "local_code": "NC52" + }, + { + "id": "22795", + "ident": "NC53", + "type": "heliport", + "name": "Tusquitee Heliport", + "latitude_deg": "35.07929992675781", + "longitude_deg": "-84.02490234375", + "elevation_ft": "1528", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Murphy", + "scheduled_service": "no", + "gps_code": "NC53", + "local_code": "NC53" + }, + { + "id": "22796", + "ident": "NC54", + "type": "small_airport", + "name": "Jackson Private Airport", + "latitude_deg": "34.878444", + "longitude_deg": "-76.358328", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Atlantic", + "scheduled_service": "no", + "gps_code": "NC54", + "local_code": "NC54" + }, + { + "id": "22797", + "ident": "NC55", + "type": "heliport", + "name": "Carowinds Heliport", + "latitude_deg": "35.102798", + "longitude_deg": "-80.953887", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Pineville", + "scheduled_service": "no", + "gps_code": "NC55", + "local_code": "NC55", + "keywords": "Paramounts Carowinds" + }, + { + "id": "22798", + "ident": "NC56", + "type": "small_airport", + "name": "Deer Run Airport", + "latitude_deg": "36.2047004699707", + "longitude_deg": "-78.46890258789062", + "elevation_ft": "405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Kittrell", + "scheduled_service": "no", + "gps_code": "NC56", + "local_code": "NC56" + }, + { + "id": "22799", + "ident": "NC57", + "type": "heliport", + "name": "Craven Regional Medical Center Heliport", + "latitude_deg": "35.11539840698242", + "longitude_deg": "-77.06379699707031", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "New Bern", + "scheduled_service": "no", + "gps_code": "NC57", + "local_code": "NC57" + }, + { + "id": "22800", + "ident": "NC58", + "type": "small_airport", + "name": "Gryder-Teague Airport", + "latitude_deg": "35.918656", + "longitude_deg": "-81.11942", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Taylorsville", + "scheduled_service": "no", + "gps_code": "NC58", + "local_code": "NC58" + }, + { + "id": "22801", + "ident": "NC59", + "type": "small_airport", + "name": "Alexander County Airport", + "latitude_deg": "35.85070037841797", + "longitude_deg": "-81.14399719238281", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Taylorsville", + "scheduled_service": "no", + "gps_code": "NC59", + "local_code": "NC59" + }, + { + "id": "22802", + "ident": "NC60", + "type": "heliport", + "name": "Atrium Health Cabarrus Heliport", + "latitude_deg": "35.435101", + "longitude_deg": "-80.601382", + "elevation_ft": "711", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "NC60", + "local_code": "NC60", + "keywords": "CHS Northeast Medical Center Heliport" + }, + { + "id": "22803", + "ident": "NC61", + "type": "small_airport", + "name": "Blackwater Airstrip", + "latitude_deg": "36.45940017700195", + "longitude_deg": "-76.21080017089844", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Moyock", + "scheduled_service": "no", + "gps_code": "NC61", + "local_code": "NC61" + }, + { + "id": "22804", + "ident": "NC62", + "type": "heliport", + "name": "Birds Nest Heliport", + "latitude_deg": "35.3578987121582", + "longitude_deg": "-79.8895034790039", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "NC62", + "local_code": "NC62" + }, + { + "id": "22805", + "ident": "NC63", + "type": "small_airport", + "name": "Robertson Field", + "latitude_deg": "36.135101318359375", + "longitude_deg": "-80.18479919433594", + "elevation_ft": "848", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Winston Salem", + "scheduled_service": "no", + "gps_code": "NC63", + "local_code": "NC63" + }, + { + "id": "22806", + "ident": "NC64", + "type": "small_airport", + "name": "Barringer Field", + "latitude_deg": "35.527801513671875", + "longitude_deg": "-80.69670104980469", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Kannapolis", + "scheduled_service": "no", + "gps_code": "NC64", + "local_code": "NC64" + }, + { + "id": "22807", + "ident": "NC65", + "type": "small_airport", + "name": "Yonder Airport", + "latitude_deg": "34.559600830078125", + "longitude_deg": "-78.26809692382812", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Atkinson", + "scheduled_service": "no", + "gps_code": "NC65", + "local_code": "NC65" + }, + { + "id": "22808", + "ident": "NC66", + "type": "small_airport", + "name": "Ventosa Plantation Airport", + "latitude_deg": "36.13130187988281", + "longitude_deg": "-77.2957992553711", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Scotland Neck", + "scheduled_service": "no", + "gps_code": "NC66", + "local_code": "NC66" + }, + { + "id": "45688", + "ident": "NC67", + "type": "small_airport", + "name": "Six Oaks Airport", + "latitude_deg": "35.467778", + "longitude_deg": "-82.4525", + "elevation_ft": "2015", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Fletcher", + "scheduled_service": "no", + "gps_code": "NC67", + "local_code": "NC67" + }, + { + "id": "22809", + "ident": "NC68", + "type": "heliport", + "name": "Jarrett Heliport", + "latitude_deg": "35.78030014038086", + "longitude_deg": "-81.33280181884766", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hickory", + "scheduled_service": "no", + "gps_code": "NC68", + "local_code": "NC68" + }, + { + "id": "22810", + "ident": "NC69", + "type": "small_airport", + "name": "Twin Oak Airport", + "latitude_deg": "34.87099838256836", + "longitude_deg": "-78.47419738769531", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "NC69", + "local_code": "NC69" + }, + { + "id": "8523", + "ident": "NC7", + "type": "small_airport", + "name": "Donald's Air Park Inc. Airport", + "latitude_deg": "35.733501434299995", + "longitude_deg": "-76.66970062259999", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "NC7", + "local_code": "7NC", + "keywords": "Formerly 1NC7" + }, + { + "id": "22811", + "ident": "NC70", + "type": "small_airport", + "name": "Mckee Airport", + "latitude_deg": "34.50490188598633", + "longitude_deg": "-79.10250091552734", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Fairmont", + "scheduled_service": "no", + "gps_code": "NC70", + "local_code": "NC70" + }, + { + "id": "22812", + "ident": "NC71", + "type": "small_airport", + "name": "E T Field", + "latitude_deg": "34.91790008544922", + "longitude_deg": "-79.05249786376953", + "elevation_ft": "187", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Parkton", + "scheduled_service": "no", + "gps_code": "NC71", + "local_code": "NC71" + }, + { + "id": "22813", + "ident": "NC72", + "type": "small_airport", + "name": "Hinton Field", + "latitude_deg": "35.451499938964844", + "longitude_deg": "-78.16000366210938", + "elevation_ft": "152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "NC72", + "local_code": "NC72" + }, + { + "id": "22814", + "ident": "NC73", + "type": "small_airport", + "name": "Hodges Farm Airport", + "latitude_deg": "35.43880081176758", + "longitude_deg": "-76.44940185546875", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Sladesville", + "scheduled_service": "no", + "gps_code": "NC73", + "local_code": "NC73" + }, + { + "id": "45687", + "ident": "NC74", + "type": "heliport", + "name": "Randolph Health Heliport", + "latitude_deg": "35.711064", + "longitude_deg": "-79.815888", + "elevation_ft": "817", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Asheboro", + "scheduled_service": "no", + "gps_code": "NC74", + "local_code": "NC74", + "keywords": "Randolph Hospital" + }, + { + "id": "22815", + "ident": "NC75", + "type": "small_airport", + "name": "Schneider Haven Airstrip", + "latitude_deg": "35.89830017089844", + "longitude_deg": "-80.72029876708984", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Harmony", + "scheduled_service": "no", + "gps_code": "NC75", + "local_code": "NC75" + }, + { + "id": "22816", + "ident": "NC76", + "type": "closed", + "name": "Massengill Airport", + "latitude_deg": "35.315966", + "longitude_deg": "-78.386292", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Newton Grove", + "scheduled_service": "no", + "keywords": "NC76" + }, + { + "id": "22817", + "ident": "NC77", + "type": "small_airport", + "name": "Chalfant Airport", + "latitude_deg": "35.4556999206543", + "longitude_deg": "-80.57559967041016", + "elevation_ft": "587", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "NC77", + "local_code": "NC77" + }, + { + "id": "22818", + "ident": "NC78", + "type": "closed", + "name": "Turbeville Airport", + "latitude_deg": "34.210201", + "longitude_deg": "-78.955299", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Tabor City", + "scheduled_service": "no", + "keywords": "NC78" + }, + { + "id": "22819", + "ident": "NC79", + "type": "closed", + "name": "Bear Creek Airport", + "latitude_deg": "35.407101", + "longitude_deg": "-80.357597", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Mount Pleasant", + "scheduled_service": "no", + "keywords": "NC79" + }, + { + "id": "22820", + "ident": "NC80", + "type": "heliport", + "name": "Morehead City State Port Terminal Heliport", + "latitude_deg": "34.716800689697266", + "longitude_deg": "-76.69969940185547", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Morehead City", + "scheduled_service": "no", + "gps_code": "NC80", + "local_code": "NC80" + }, + { + "id": "22821", + "ident": "NC81", + "type": "small_airport", + "name": "Cox Airport", + "latitude_deg": "35.751800537109375", + "longitude_deg": "-78.85970306396484", + "elevation_ft": "455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Apex", + "scheduled_service": "no", + "gps_code": "NC81", + "local_code": "NC81" + }, + { + "id": "22822", + "ident": "NC82", + "type": "small_airport", + "name": "Dublin Field", + "latitude_deg": "34.66960144042969", + "longitude_deg": "-78.70249938964844", + "elevation_ft": "126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Dublin", + "scheduled_service": "no", + "gps_code": "NC82", + "local_code": "NC82" + }, + { + "id": "22823", + "ident": "NC83", + "type": "heliport", + "name": "Cape Fear Valley Medical Center Heliport", + "latitude_deg": "35.03350067138672", + "longitude_deg": "-78.93720245361328", + "elevation_ft": "213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "NC83", + "local_code": "NC83" + }, + { + "id": "22824", + "ident": "NC84", + "type": "closed", + "name": "West Wind Heliport", + "latitude_deg": "35.534801", + "longitude_deg": "-82.9532", + "elevation_ft": "2700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Lake Junaluska", + "scheduled_service": "no", + "keywords": "NC84" + }, + { + "id": "22825", + "ident": "NC85", + "type": "heliport", + "name": "Sampson Regional Medical Center Heliport", + "latitude_deg": "35.00849914550781", + "longitude_deg": "-78.31919860839844", + "elevation_ft": "159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "NC85", + "local_code": "NC85" + }, + { + "id": "22826", + "ident": "NC86", + "type": "small_airport", + "name": "Rocking A Farm Airport", + "latitude_deg": "34.73360061645508", + "longitude_deg": "-78.75309753417969", + "elevation_ft": "58", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "White Oak", + "scheduled_service": "no", + "gps_code": "NC86", + "local_code": "NC86" + }, + { + "id": "22827", + "ident": "NC87", + "type": "small_airport", + "name": "Dogwood Farm Airport", + "latitude_deg": "34.88180160522461", + "longitude_deg": "-76.94270324707031", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Havelock", + "scheduled_service": "no", + "gps_code": "NC87", + "local_code": "NC87" + }, + { + "id": "22828", + "ident": "NC88", + "type": "heliport", + "name": "Outer Banks Heliport", + "latitude_deg": "35.98270034790039", + "longitude_deg": "-75.65129852294922", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Nags Head", + "scheduled_service": "no", + "gps_code": "NC88", + "local_code": "NC88" + }, + { + "id": "22829", + "ident": "NC89", + "type": "heliport", + "name": "Pungo District Hospital Heliport", + "latitude_deg": "35.54290008544922", + "longitude_deg": "-76.61720275878906", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Belhaven", + "scheduled_service": "no", + "gps_code": "NC89", + "local_code": "NC89" + }, + { + "id": "22830", + "ident": "NC90", + "type": "heliport", + "name": "WBTV Heliport", + "latitude_deg": "35.22661", + "longitude_deg": "-80.872496", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Charlotte", + "scheduled_service": "no", + "gps_code": "NC90", + "local_code": "NC90" + }, + { + "id": "22831", + "ident": "NC91", + "type": "heliport", + "name": "Vidant Health Heliport", + "latitude_deg": "35.608751", + "longitude_deg": "-77.40717", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "NC91", + "local_code": "NC91", + "keywords": "Pitt County Memorial Hospital Heliport" + }, + { + "id": "22832", + "ident": "NC92", + "type": "heliport", + "name": "Duke University North Heliport", + "latitude_deg": "36.006500244140625", + "longitude_deg": "-78.9385986328125", + "elevation_ft": "395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Durham", + "scheduled_service": "no", + "gps_code": "NC92", + "local_code": "NC92" + }, + { + "id": "22833", + "ident": "NC93", + "type": "small_airport", + "name": "South River Airport", + "latitude_deg": "35.777801513671875", + "longitude_deg": "-80.50140380859375", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Salisbury", + "scheduled_service": "no", + "gps_code": "NC93", + "local_code": "NC93" + }, + { + "id": "22834", + "ident": "NC94", + "type": "heliport", + "name": "Bladen County Hospital Heliport", + "latitude_deg": "34.619598388671875", + "longitude_deg": "-78.62529754638672", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Elizabethtown", + "scheduled_service": "no", + "gps_code": "NC94", + "local_code": "NC94" + }, + { + "id": "22835", + "ident": "NC95", + "type": "heliport", + "name": "Mission Hospitals Heliport", + "latitude_deg": "35.575298", + "longitude_deg": "-82.548501", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Asheville", + "scheduled_service": "no", + "gps_code": "NC95", + "local_code": "NC95", + "keywords": "96NC, St Josephs Mission Hospital" + }, + { + "id": "22836", + "ident": "NC96", + "type": "heliport", + "name": "Betsy Johnson Memorial Hospital Heliport", + "latitude_deg": "35.313201904296875", + "longitude_deg": "-78.63580322265625", + "elevation_ft": "208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Dunn", + "scheduled_service": "no", + "gps_code": "NC96", + "local_code": "NC96" + }, + { + "id": "22837", + "ident": "NC97", + "type": "small_airport", + "name": "Dirt Dobber's Grass Strip", + "latitude_deg": "35.3689", + "longitude_deg": "-81.522499", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Shelby", + "scheduled_service": "no", + "gps_code": "NC97", + "local_code": "NC97" + }, + { + "id": "22838", + "ident": "NC98", + "type": "heliport", + "name": "Sentara Albemarle Regional Medical Center Heliport", + "latitude_deg": "36.324462", + "longitude_deg": "-76.216881", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Elizabeth City", + "scheduled_service": "no", + "gps_code": "NC98", + "local_code": "NC98", + "keywords": "Albemarle Hospital Heliport" + }, + { + "id": "22839", + "ident": "NC99", + "type": "small_airport", + "name": "Bagwell Airport", + "latitude_deg": "35.67430114746094", + "longitude_deg": "-78.6072006225586", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Garner", + "scheduled_service": "no", + "gps_code": "NC99", + "local_code": "NC99" + }, + { + "id": "4957", + "ident": "NCAI", + "type": "small_airport", + "name": "Aitutaki Airport", + "latitude_deg": "-18.830900192260742", + "longitude_deg": "-159.76400756835938", + "elevation_ft": "14", + "continent": "OC", + "iso_country": "CK", + "iso_region": "CK-U-A", + "municipality": "Aitutaki", + "scheduled_service": "yes", + "gps_code": "NCAI", + "iata_code": "AIT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aitutaki_Airport" + }, + { + "id": "30629", + "ident": "NCAT", + "type": "small_airport", + "name": "Enua Airport", + "latitude_deg": "-19.96780014038086", + "longitude_deg": "-158.11900329589844", + "elevation_ft": "36", + "continent": "OC", + "iso_country": "CK", + "iso_region": "CK-U-A", + "municipality": "Atiu Island", + "scheduled_service": "yes", + "gps_code": "NCAT", + "iata_code": "AIU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Enua_Airport" + }, + { + "id": "22840", + "ident": "NCL", + "type": "heliport", + "name": "Comlantflt Heliport", + "latitude_deg": "36.92509841918945", + "longitude_deg": "-76.30439758300781", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Norfolk", + "scheduled_service": "no", + "gps_code": "NCL", + "local_code": "NCL" + }, + { + "id": "31900", + "ident": "NCMG", + "type": "small_airport", + "name": "Mangaia Island Airport", + "latitude_deg": "-21.895986557006836", + "longitude_deg": "-157.9066619873047", + "elevation_ft": "45", + "continent": "OC", + "iso_country": "CK", + "iso_region": "CK-U-A", + "municipality": "Mangaia Island", + "scheduled_service": "yes", + "gps_code": "NCMG", + "iata_code": "MGS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mangaia_Airport" + }, + { + "id": "31907", + "ident": "NCMH", + "type": "small_airport", + "name": "Manihiki Island Airport", + "latitude_deg": "-10.376700401306152", + "longitude_deg": "-161.0019989013672", + "continent": "OC", + "iso_country": "CK", + "iso_region": "CK-U-A", + "municipality": "Manihiki Island", + "scheduled_service": "yes", + "gps_code": "NCMH", + "iata_code": "MHX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manihiki_Island_Airport", + "keywords": "Humphrey Island" + }, + { + "id": "31968", + "ident": "NCMK", + "type": "small_airport", + "name": "Mauke Airport", + "latitude_deg": "-20.13610076904297", + "longitude_deg": "-157.34500122070312", + "elevation_ft": "26", + "continent": "OC", + "iso_country": "CK", + "iso_region": "CK-U-A", + "municipality": "Mauke Island", + "scheduled_service": "yes", + "gps_code": "NCMK", + "iata_code": "MUK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mauke_Airport", + "keywords": "Akatoka Manava Airport" + }, + { + "id": "32011", + "ident": "NCMN", + "type": "small_airport", + "name": "Manuae Airport", + "latitude_deg": "-19.269152", + "longitude_deg": "-158.959408", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "CK", + "iso_region": "CK-U-A", + "municipality": "Manuae", + "scheduled_service": "no", + "gps_code": "NCMN" + }, + { + "id": "31933", + "ident": "NCMR", + "type": "small_airport", + "name": "Mitiaro Island Airport", + "latitude_deg": "-19.842501", + "longitude_deg": "-157.703003", + "elevation_ft": "25", + "continent": "OC", + "iso_country": "CK", + "iso_region": "CK-U-A", + "municipality": "Mitiaro Island", + "scheduled_service": "yes", + "gps_code": "NCMR", + "iata_code": "MOI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mitiaro_Airport", + "keywords": "Nukuroa Airport" + }, + { + "id": "316695", + "ident": "NCPK", + "type": "small_airport", + "name": "Pukapuka Island Airport", + "latitude_deg": "-10.9145", + "longitude_deg": "-165.8393", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "CK", + "iso_region": "CK-U-A", + "municipality": "Pukapuka Atoll", + "scheduled_service": "no", + "gps_code": "NCPK", + "iata_code": "PZK", + "keywords": "Wale, Te Ulu-o-Te-Watu" + }, + { + "id": "32184", + "ident": "NCPY", + "type": "small_airport", + "name": "Tongareva Airport", + "latitude_deg": "-9.01436996459961", + "longitude_deg": "-158.03240966796875", + "elevation_ft": "8", + "continent": "OC", + "iso_country": "CK", + "iso_region": "CK-U-A", + "municipality": "Penrhyn Island", + "scheduled_service": "yes", + "gps_code": "NCPY", + "iata_code": "PYE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tongareva_Airport" + }, + { + "id": "4958", + "ident": "NCRG", + "type": "medium_airport", + "name": "Rarotonga International Airport", + "latitude_deg": "-21.2027", + "longitude_deg": "-159.806", + "elevation_ft": "19", + "continent": "OC", + "iso_country": "CK", + "iso_region": "CK-U-A", + "municipality": "Avarua", + "scheduled_service": "yes", + "gps_code": "NCRG", + "iata_code": "RAR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rarotonga_International_Airport" + }, + { + "id": "22841", + "ident": "NCY", + "type": "heliport", + "name": "Naval Wepons Station Helipad", + "latitude_deg": "37.2679225", + "longitude_deg": "-76.573286", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Yorktown", + "scheduled_service": "no", + "gps_code": "KNCY", + "local_code": "NCY" + }, + { + "id": "22842", + "ident": "ND01", + "type": "small_airport", + "name": "Nelson Airport", + "latitude_deg": "47.045799255371094", + "longitude_deg": "-97.1865005493164", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Amenia", + "scheduled_service": "no", + "gps_code": "ND01", + "local_code": "ND01" + }, + { + "id": "22843", + "ident": "ND02", + "type": "small_airport", + "name": "Ricketyback Field", + "latitude_deg": "47.811100006103516", + "longitude_deg": "-97.96009826660156", + "elevation_ft": "1510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Aneta", + "scheduled_service": "no", + "gps_code": "ND02", + "local_code": "ND02" + }, + { + "id": "331999", + "ident": "ND05", + "type": "heliport", + "name": "MCHS Hospital Heliport", + "latitude_deg": "47.803969", + "longitude_deg": "-103.26915", + "elevation_ft": "2083", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Watford City", + "scheduled_service": "no", + "gps_code": "ND05", + "local_code": "ND05" + }, + { + "id": "22844", + "ident": "ND07", + "type": "small_airport", + "name": "Punton Private Airport", + "latitude_deg": "47.00279998779297", + "longitude_deg": "-97.4072036743164", + "elevation_ft": "1105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Absaraka", + "scheduled_service": "no", + "gps_code": "ND07", + "local_code": "ND07" + }, + { + "id": "338957", + "ident": "ND08", + "type": "seaplane_base", + "name": "Gator Seaplane Base", + "latitude_deg": "47.767136", + "longitude_deg": "-100.310061", + "elevation_ft": "1588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Anamoose", + "scheduled_service": "no", + "gps_code": "ND08", + "local_code": "ND08" + }, + { + "id": "22845", + "ident": "ND09", + "type": "small_airport", + "name": "Bryn Airport", + "latitude_deg": "47.19110107421875", + "longitude_deg": "-98.16899871826172", + "elevation_ft": "1431", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Dazey", + "scheduled_service": "no", + "gps_code": "ND09", + "local_code": "ND09" + }, + { + "id": "22846", + "ident": "ND10", + "type": "closed", + "name": "Flying-N-Ranch Airport", + "latitude_deg": "46.548901", + "longitude_deg": "-96.786498", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Christine", + "scheduled_service": "no", + "keywords": "ND10" + }, + { + "id": "22847", + "ident": "ND11", + "type": "heliport", + "name": "R J Bohn Armory Heliport", + "latitude_deg": "46.83110046386719", + "longitude_deg": "-100.72000122070312", + "elevation_ft": "1768", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Bismarck", + "scheduled_service": "no", + "gps_code": "ND11", + "local_code": "ND11" + }, + { + "id": "329728", + "ident": "ND12", + "type": "small_airport", + "name": "Snyders Airport", + "latitude_deg": "46.586525", + "longitude_deg": "-100.472222", + "elevation_ft": "2017", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Hazelton", + "scheduled_service": "no", + "gps_code": "ND12", + "local_code": "ND12" + }, + { + "id": "22848", + "ident": "ND14", + "type": "small_airport", + "name": "Fordville Airport", + "latitude_deg": "48.23469924926758", + "longitude_deg": "-97.80180358886719", + "elevation_ft": "1154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Fordville", + "scheduled_service": "no", + "gps_code": "ND14", + "local_code": "ND14" + }, + { + "id": "22849", + "ident": "ND16", + "type": "small_airport", + "name": "Frei Private Airport", + "latitude_deg": "47.44169998168945", + "longitude_deg": "-102.24199676513672", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Halliday", + "scheduled_service": "no", + "gps_code": "ND16", + "local_code": "ND16" + }, + { + "id": "22850", + "ident": "ND18", + "type": "small_airport", + "name": "Judy Strip", + "latitude_deg": "48.50640106201172", + "longitude_deg": "-101.21700286865234", + "elevation_ft": "1570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Glenburn", + "scheduled_service": "no", + "gps_code": "ND18", + "local_code": "ND18" + }, + { + "id": "333470", + "ident": "ND19", + "type": "small_airport", + "name": "Stokka Airport", + "latitude_deg": "47.433589", + "longitude_deg": "-98.417904", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Sutton", + "scheduled_service": "no", + "gps_code": "ND19", + "local_code": "ND19" + }, + { + "id": "22851", + "ident": "ND20", + "type": "small_airport", + "name": "Gensrich Airport", + "latitude_deg": "47.704200744628906", + "longitude_deg": "-97.35009765625", + "elevation_ft": "1021", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Hatton", + "scheduled_service": "no", + "gps_code": "ND20", + "local_code": "ND20" + }, + { + "id": "348588", + "ident": "ND21", + "type": "heliport", + "name": "Standing Rock Hospital Heliport", + "latitude_deg": "46.095475", + "longitude_deg": "-100.627486", + "elevation_ft": "1637", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Fort Yates", + "scheduled_service": "no", + "gps_code": "ND21", + "local_code": "ND21" + }, + { + "id": "22852", + "ident": "ND22", + "type": "small_airport", + "name": "Fischer Private Airport", + "latitude_deg": "47.68330001831055", + "longitude_deg": "-101.5999984741211", + "elevation_ft": "2065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Garrison", + "scheduled_service": "no", + "gps_code": "ND22", + "local_code": "ND22" + }, + { + "id": "325423", + "ident": "ND23", + "type": "heliport", + "name": "Sanford Fargo Medical Center Heliport", + "latitude_deg": "46.846284", + "longitude_deg": "-96.87495", + "elevation_ft": "952", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Fargo", + "scheduled_service": "no", + "gps_code": "ND23", + "local_code": "ND23" + }, + { + "id": "22854", + "ident": "ND24", + "type": "small_airport", + "name": "Inkster Airport", + "latitude_deg": "48.14030075073242", + "longitude_deg": "-97.67259979248047", + "elevation_ft": "1092", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Inkster", + "scheduled_service": "no", + "gps_code": "ND24", + "local_code": "ND24" + }, + { + "id": "328077", + "ident": "ND25", + "type": "small_airport", + "name": "Prop Wash Field", + "latitude_deg": "48.064407", + "longitude_deg": "-102.907918", + "elevation_ft": "2340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Watford City", + "scheduled_service": "no", + "gps_code": "ND25", + "local_code": "ND25" + }, + { + "id": "22855", + "ident": "ND26", + "type": "small_airport", + "name": "Gajewski Field", + "latitude_deg": "47.900002", + "longitude_deg": "-103.658997", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Alexander", + "scheduled_service": "no", + "gps_code": "ND26", + "local_code": "ND26", + "keywords": "18U" + }, + { + "id": "22856", + "ident": "ND27", + "type": "heliport", + "name": "St Aloisius Medical Center Heliport", + "latitude_deg": "47.76689910888672", + "longitude_deg": "-99.931396484375", + "elevation_ft": "1595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Harvey", + "scheduled_service": "no", + "gps_code": "ND27", + "local_code": "ND27" + }, + { + "id": "22857", + "ident": "ND28", + "type": "heliport", + "name": "Towner County Medical Center Heliport", + "latitude_deg": "48.49309921", + "longitude_deg": "-99.21150208", + "elevation_ft": "1480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Cando", + "scheduled_service": "no", + "gps_code": "ND28", + "local_code": "ND28" + }, + { + "id": "22858", + "ident": "ND29", + "type": "small_airport", + "name": "Swenson Airport", + "latitude_deg": "46.66669845581055", + "longitude_deg": "-103.23400115966797", + "elevation_ft": "2900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Belfield", + "scheduled_service": "no", + "gps_code": "ND29", + "local_code": "ND29" + }, + { + "id": "22859", + "ident": "ND30", + "type": "heliport", + "name": "Sanford Health-Bismark Heliport", + "latitude_deg": "46.808252", + "longitude_deg": "-100.782562", + "elevation_ft": "1705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Bismarck", + "scheduled_service": "no", + "gps_code": "ND30", + "local_code": "ND30", + "keywords": "Medcenter One Hospital Med-I-Port Heliport" + }, + { + "id": "22860", + "ident": "ND32", + "type": "small_airport", + "name": "Kalainov Private Airport", + "latitude_deg": "46.91550064086914", + "longitude_deg": "-99.89450073242188", + "elevation_ft": "1845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Steele", + "scheduled_service": "no", + "gps_code": "ND32", + "local_code": "ND32" + }, + { + "id": "22861", + "ident": "ND33", + "type": "heliport", + "name": "Dawson Mediport Heliport", + "latitude_deg": "46.87670135498047", + "longitude_deg": "-99.7522964477539", + "elevation_ft": "1750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Dawson", + "scheduled_service": "no", + "gps_code": "ND33", + "local_code": "ND33" + }, + { + "id": "22862", + "ident": "ND34", + "type": "closed", + "name": "Moen Airport", + "latitude_deg": "48.275002", + "longitude_deg": "-103.349998", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Epping", + "scheduled_service": "no", + "keywords": "ND34" + }, + { + "id": "22863", + "ident": "ND35", + "type": "small_airport", + "name": "Lindemann Airport", + "latitude_deg": "46.70000076293945", + "longitude_deg": "-97.70040130615234", + "elevation_ft": "1199", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Lucca", + "scheduled_service": "no", + "gps_code": "ND35", + "local_code": "ND35" + }, + { + "id": "22864", + "ident": "ND36", + "type": "closed", + "name": "Don's Airport", + "latitude_deg": "48.638", + "longitude_deg": "-97.484802", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "St Thomas", + "scheduled_service": "no", + "keywords": "ND36" + }, + { + "id": "22865", + "ident": "ND38", + "type": "small_airport", + "name": "Rices Airpark", + "latitude_deg": "47.95830154418945", + "longitude_deg": "-99.5364990234375", + "elevation_ft": "1575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Maddock", + "scheduled_service": "no", + "gps_code": "ND38", + "local_code": "ND38" + }, + { + "id": "22866", + "ident": "ND40", + "type": "small_airport", + "name": "Rau Field", + "latitude_deg": "46.81669998168945", + "longitude_deg": "-99.25039672851562", + "elevation_ft": "1855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Medina", + "scheduled_service": "no", + "gps_code": "ND40", + "local_code": "ND40" + }, + { + "id": "22867", + "ident": "ND41", + "type": "small_airport", + "name": "Voller Airport", + "latitude_deg": "46.134700775146484", + "longitude_deg": "-100.11299896240234", + "elevation_ft": "1900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Strasburg", + "scheduled_service": "no", + "gps_code": "ND41", + "local_code": "ND41" + }, + { + "id": "22868", + "ident": "ND42", + "type": "small_airport", + "name": "Warren Pietsch Airport", + "latitude_deg": "48.10309982299805", + "longitude_deg": "-101.0780029296875", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Sawyer", + "scheduled_service": "no", + "gps_code": "ND42", + "local_code": "ND42" + }, + { + "id": "22869", + "ident": "ND43", + "type": "small_airport", + "name": "Flying S Ranch Airport", + "latitude_deg": "48.20000076293945", + "longitude_deg": "-101.40399932861328", + "elevation_ft": "1840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Minot", + "scheduled_service": "no", + "gps_code": "ND43", + "local_code": "ND43" + }, + { + "id": "22870", + "ident": "ND44", + "type": "small_airport", + "name": "Underwood Airport", + "latitude_deg": "47.46670151", + "longitude_deg": "-101.1340027", + "elevation_ft": "2035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Underwood", + "scheduled_service": "no", + "gps_code": "ND44", + "local_code": "ND44" + }, + { + "id": "22871", + "ident": "ND45", + "type": "heliport", + "name": "Essentia Health Fargo Heliport", + "latitude_deg": "46.831501", + "longitude_deg": "-96.829201", + "elevation_ft": "908", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Fargo", + "scheduled_service": "no", + "gps_code": "ND45", + "local_code": "ND45", + "keywords": "Dakota Specialty Institute Hospital Heliport, Innovis Health Heliport" + }, + { + "id": "22872", + "ident": "ND46", + "type": "heliport", + "name": "St Alexius Med-I-Port Heliport", + "latitude_deg": "46.807498931884766", + "longitude_deg": "-100.7770004272461", + "elevation_ft": "1697", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Bismarck", + "scheduled_service": "no", + "gps_code": "ND46", + "local_code": "ND46" + }, + { + "id": "22873", + "ident": "ND47", + "type": "small_airport", + "name": "Geske Airfield", + "latitude_deg": "46.64080047607422", + "longitude_deg": "-97.55110168457031", + "elevation_ft": "1103", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Enderlin", + "scheduled_service": "no", + "gps_code": "ND47", + "local_code": "ND47" + }, + { + "id": "22874", + "ident": "ND48", + "type": "heliport", + "name": "St. Luke's Hospital Heliport", + "latitude_deg": "46.88359832763672", + "longitude_deg": "-96.78559875488281", + "elevation_ft": "975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Fargo", + "scheduled_service": "no", + "gps_code": "ND48", + "local_code": "ND48" + }, + { + "id": "22875", + "ident": "ND49", + "type": "small_airport", + "name": "Krause Private Airport", + "latitude_deg": "46.22359848022461", + "longitude_deg": "-97.13040161132812", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Wyndmere", + "scheduled_service": "no", + "gps_code": "ND49", + "local_code": "ND49" + }, + { + "id": "22876", + "ident": "ND50", + "type": "heliport", + "name": "Sakakawea Medical Center Heliport", + "latitude_deg": "47.298301696777344", + "longitude_deg": "-101.61299896240234", + "elevation_ft": "1756", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Hazen", + "scheduled_service": "no", + "gps_code": "ND50", + "local_code": "ND50" + }, + { + "id": "22877", + "ident": "ND52", + "type": "small_airport", + "name": "True North Airpark", + "latitude_deg": "46.802799224853516", + "longitude_deg": "-97.01219940185547", + "elevation_ft": "913", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "West Fargo", + "scheduled_service": "no", + "gps_code": "ND52", + "local_code": "ND52" + }, + { + "id": "324402", + "ident": "ND53", + "type": "small_airport", + "name": "Pueppke Airport", + "latitude_deg": "47.046388", + "longitude_deg": "-97.388055", + "elevation_ft": "1099", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Ayr", + "scheduled_service": "no", + "gps_code": "ND53", + "local_code": "ND53" + }, + { + "id": "22878", + "ident": "ND54", + "type": "small_airport", + "name": "Whitman Field", + "latitude_deg": "47.12919998168945", + "longitude_deg": "-99.73040008544922", + "elevation_ft": "1783", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Robinson", + "scheduled_service": "no", + "gps_code": "ND54", + "local_code": "ND54" + }, + { + "id": "329609", + "ident": "ND55", + "type": "small_airport", + "name": "Sperr Airport", + "latitude_deg": "46.788111", + "longitude_deg": "-98.536965", + "elevation_ft": "1465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Ypsilanti", + "scheduled_service": "no", + "gps_code": "ND55", + "local_code": "ND55" + }, + { + "id": "22879", + "ident": "ND59", + "type": "small_airport", + "name": "Grieve Airport", + "latitude_deg": "46.98749923706055", + "longitude_deg": "-97.52950286865234", + "elevation_ft": "1208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Buffalo", + "scheduled_service": "no", + "gps_code": "ND59", + "local_code": "ND59" + }, + { + "id": "22880", + "ident": "ND60", + "type": "small_airport", + "name": "Frokjer Airport", + "latitude_deg": "47.958900451660156", + "longitude_deg": "-97.47979736328125", + "elevation_ft": "953", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Arvilla", + "scheduled_service": "no", + "gps_code": "ND60", + "local_code": "ND60" + }, + { + "id": "22881", + "ident": "ND62", + "type": "small_airport", + "name": "Brands Airport", + "latitude_deg": "46.84830093383789", + "longitude_deg": "-102.45800018310547", + "elevation_ft": "2423", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Taylor", + "scheduled_service": "no", + "gps_code": "ND62", + "local_code": "ND62" + }, + { + "id": "22882", + "ident": "ND65", + "type": "small_airport", + "name": "Letzring Airport", + "latitude_deg": "46.98889923095703", + "longitude_deg": "-101.35399627685547", + "elevation_ft": "2230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Center", + "scheduled_service": "no", + "gps_code": "ND65", + "local_code": "ND65" + }, + { + "id": "22883", + "ident": "ND68", + "type": "small_airport", + "name": "Vining Airport", + "latitude_deg": "46.9557991027832", + "longitude_deg": "-97.30120086669922", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Wheatland", + "scheduled_service": "no", + "gps_code": "ND68", + "local_code": "ND68" + }, + { + "id": "22884", + "ident": "ND72", + "type": "small_airport", + "name": "Lonetree Airstrip", + "latitude_deg": "47.68439865112305", + "longitude_deg": "-100.08499908447266", + "elevation_ft": "1647", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Harvey", + "scheduled_service": "no", + "gps_code": "ND72", + "local_code": "ND72" + }, + { + "id": "22885", + "ident": "ND73", + "type": "small_airport", + "name": "Peterson Airport", + "latitude_deg": "47.048301696777344", + "longitude_deg": "-97.25559997558594", + "elevation_ft": "999", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Amenia", + "scheduled_service": "no", + "gps_code": "ND73", + "local_code": "ND73" + }, + { + "id": "22886", + "ident": "ND74", + "type": "small_airport", + "name": "Smith Private Airport", + "latitude_deg": "47.0166015625", + "longitude_deg": "-97.16290283203125", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Amenia", + "scheduled_service": "no", + "gps_code": "ND74", + "local_code": "ND74" + }, + { + "id": "22887", + "ident": "ND75", + "type": "small_airport", + "name": "Pete's Tractor Salvage Airport", + "latitude_deg": "47.720001220703125", + "longitude_deg": "-100.26899719238281", + "elevation_ft": "1655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Anamoose", + "scheduled_service": "no", + "gps_code": "ND75", + "local_code": "ND75" + }, + { + "id": "22888", + "ident": "ND76", + "type": "closed", + "name": "Turner Field", + "latitude_deg": "47.0597", + "longitude_deg": "-97.156799", + "elevation_ft": "942", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Arthur", + "scheduled_service": "no", + "keywords": "ND76" + }, + { + "id": "22889", + "ident": "ND78", + "type": "small_airport", + "name": "Wilcox Farm Airport", + "latitude_deg": "47.040000915527344", + "longitude_deg": "-97.53700256347656", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Ayr", + "scheduled_service": "no", + "gps_code": "ND78", + "local_code": "ND78" + }, + { + "id": "22890", + "ident": "ND80", + "type": "small_airport", + "name": "Spitzer Airport", + "latitude_deg": "47.08169937133789", + "longitude_deg": "-100.7249984741211", + "elevation_ft": "2050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Baldwin", + "scheduled_service": "no", + "gps_code": "ND80", + "local_code": "ND80" + }, + { + "id": "22891", + "ident": "ND81", + "type": "heliport", + "name": "Grand Forks Par Site Heliport", + "latitude_deg": "48.72124", + "longitude_deg": "-97.908152", + "elevation_ft": "1182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Cavalier", + "scheduled_service": "no", + "gps_code": "ND81", + "local_code": "ND81" + }, + { + "id": "332819", + "ident": "ND82", + "type": "small_airport", + "name": "Y-Rock Airport", + "latitude_deg": "48.311303", + "longitude_deg": "-103.148025", + "elevation_ft": "2229", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Ray", + "scheduled_service": "no", + "gps_code": "ND82", + "local_code": "ND82" + }, + { + "id": "22892", + "ident": "ND85", + "type": "small_airport", + "name": "Humann Private Airstrip", + "latitude_deg": "46.493099212646484", + "longitude_deg": "-100.17900085449219", + "elevation_ft": "1980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Hazelton", + "scheduled_service": "no", + "gps_code": "ND85", + "local_code": "ND85" + }, + { + "id": "22893", + "ident": "ND86", + "type": "small_airport", + "name": "Peterson Airport", + "latitude_deg": "48.563899993896484", + "longitude_deg": "-103.96299743652344", + "elevation_ft": "2190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Grendra", + "scheduled_service": "no", + "gps_code": "ND86", + "local_code": "ND86" + }, + { + "id": "22894", + "ident": "ND87", + "type": "small_airport", + "name": "Indian Hill Resort Airport", + "latitude_deg": "47.60559844970703", + "longitude_deg": "-102.1050033569336", + "elevation_ft": "2010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Garrison", + "scheduled_service": "no", + "gps_code": "ND87", + "local_code": "ND87" + }, + { + "id": "22895", + "ident": "ND89", + "type": "small_airport", + "name": "Mutschler Field", + "latitude_deg": "47.05580139160156", + "longitude_deg": "-98.50700378417969", + "elevation_ft": "1490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Clementsville", + "scheduled_service": "no", + "gps_code": "ND89", + "local_code": "ND89" + }, + { + "id": "22896", + "ident": "ND90", + "type": "small_airport", + "name": "Dahl Private Airport", + "latitude_deg": "45.96659851074219", + "longitude_deg": "-97.73370361328125", + "elevation_ft": "1285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Cogswell/Brampton/", + "scheduled_service": "no", + "gps_code": "ND90", + "local_code": "ND90" + }, + { + "id": "22897", + "ident": "ND92", + "type": "closed", + "name": "Schroeder Airport", + "latitude_deg": "46.708302", + "longitude_deg": "-97.116997", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Davenport", + "scheduled_service": "no", + "keywords": "ND92" + }, + { + "id": "22898", + "ident": "ND96", + "type": "small_airport", + "name": "Sauter Airport", + "latitude_deg": "46.801700592041016", + "longitude_deg": "-100.67900085449219", + "elevation_ft": "1730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Bismark", + "scheduled_service": "no", + "gps_code": "ND96", + "local_code": "ND96" + }, + { + "id": "22899", + "ident": "ND98", + "type": "small_airport", + "name": "Cloud Nine Airport", + "latitude_deg": "46.760799407958984", + "longitude_deg": "-100.65499877929688", + "elevation_ft": "1830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "ND98", + "local_code": "ND98" + }, + { + "id": "22900", + "ident": "ND99", + "type": "small_airport", + "name": "Ellig Field", + "latitude_deg": "46.72019958496094", + "longitude_deg": "-96.80950164794922", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Hickson", + "scheduled_service": "no", + "gps_code": "ND99", + "local_code": "ND99" + }, + { + "id": "306967", + "ident": "NDI", + "type": "small_airport", + "name": "Namudi Airport", + "latitude_deg": "-9.47375", + "longitude_deg": "148.329416667", + "elevation_ft": "1044", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "municipality": "Namudi", + "scheduled_service": "no", + "gps_code": "AYNJ", + "iata_code": "NDI", + "local_code": "NAM" + }, + { + "id": "302538", + "ident": "NDN", + "type": "small_airport", + "name": "Nadunumu Airport", + "latitude_deg": "-9.14355555556", + "longitude_deg": "147.68425", + "elevation_ft": "5100", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Nadunumu", + "scheduled_service": "no", + "gps_code": "AYNC", + "iata_code": "NDN", + "local_code": "NDM" + }, + { + "id": "349430", + "ident": "NE-0001", + "type": "small_airport", + "name": "Niger Air Base 201", + "latitude_deg": "16.95575", + "longitude_deg": "8.01861", + "elevation_ft": "1667", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-1", + "municipality": "Agadez", + "scheduled_service": "no" + }, + { + "id": "354390", + "ident": "NE-0002", + "type": "small_airport", + "name": "Kourou Arkenné Airfield", + "latitude_deg": "22.782036", + "longitude_deg": "14.024777", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-1", + "municipality": "Toummo", + "scheduled_service": "no", + "keywords": "HDBR, Z23L, Toummo" + }, + { + "id": "354471", + "ident": "NE-0003", + "type": "small_airport", + "name": "Madama Military Base", + "latitude_deg": "21.951146", + "longitude_deg": "13.650711", + "elevation_ft": "1808", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-1", + "municipality": "Fort Madama", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Madama" + }, + { + "id": "356363", + "ident": "NE-0004", + "type": "small_airport", + "name": "Fachi Airport", + "latitude_deg": "18.1016", + "longitude_deg": "11.56553", + "continent": "AF", + "iso_country": "NE", + "iso_region": "NE-1", + "municipality": "Fachi", + "scheduled_service": "no" + }, + { + "id": "22901", + "ident": "NE01", + "type": "small_airport", + "name": "Schutte Airport", + "latitude_deg": "40.194698333740234", + "longitude_deg": "-98.35199737548828", + "elevation_ft": "1876", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Guide Rock", + "scheduled_service": "no", + "gps_code": "NE01", + "local_code": "NE01" + }, + { + "id": "22902", + "ident": "NE02", + "type": "heliport", + "name": "Pender Community Hospital Heliport", + "latitude_deg": "42.10609817504883", + "longitude_deg": "-96.71109771728516", + "elevation_ft": "1348", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Pender", + "scheduled_service": "no", + "gps_code": "NE02", + "local_code": "NE02" + }, + { + "id": "354132", + "ident": "NE03", + "type": "heliport", + "name": "Cherry County Hospital Heliport", + "latitude_deg": "42.878673", + "longitude_deg": "-100.537761", + "elevation_ft": "2575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Valentine", + "scheduled_service": "no", + "gps_code": "NE03", + "local_code": "NE03" + }, + { + "id": "22903", + "ident": "NE04", + "type": "small_airport", + "name": "Ely Airport", + "latitude_deg": "40.09450149536133", + "longitude_deg": "-98.3416976928711", + "elevation_ft": "1743", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Guide Rock", + "scheduled_service": "no", + "gps_code": "NE04", + "local_code": "NE04" + }, + { + "id": "22904", + "ident": "NE05", + "type": "heliport", + "name": "Cherry Heliport", + "latitude_deg": "40.56529998779297", + "longitude_deg": "-96.6613998413086", + "elevation_ft": "1370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Firth", + "scheduled_service": "no", + "gps_code": "NE05", + "local_code": "NE05" + }, + { + "id": "22905", + "ident": "NE06", + "type": "small_airport", + "name": "Woolf Brothers Airport", + "latitude_deg": "42.82500076293945", + "longitude_deg": "-98.42539978027344", + "elevation_ft": "1395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Lynch", + "scheduled_service": "no", + "gps_code": "NE06", + "local_code": "NE06" + }, + { + "id": "22906", + "ident": "NE08", + "type": "small_airport", + "name": "Larrabee Farm Airport", + "latitude_deg": "40.547877", + "longitude_deg": "-101.978284", + "elevation_ft": "3518", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Lamar", + "scheduled_service": "no", + "gps_code": "NE08", + "local_code": "NE08" + }, + { + "id": "22907", + "ident": "NE09", + "type": "small_airport", + "name": "Simpson Airport", + "latitude_deg": "41.96329879760742", + "longitude_deg": "-97.46730041503906", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Norfolk", + "scheduled_service": "no", + "gps_code": "NE09", + "local_code": "NE09" + }, + { + "id": "22908", + "ident": "NE10", + "type": "heliport", + "name": "Flying C Heliport", + "latitude_deg": "41.256900787353516", + "longitude_deg": "-96.24359893798828", + "elevation_ft": "1227", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Elkhorn", + "scheduled_service": "no", + "gps_code": "NE10", + "local_code": "NE10" + }, + { + "id": "22909", + "ident": "NE11", + "type": "small_airport", + "name": "Sky Ranch Airport", + "latitude_deg": "41.360001", + "longitude_deg": "-96.040298", + "elevation_ft": "1285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Omaha", + "scheduled_service": "no", + "gps_code": "NE24", + "local_code": "NE24", + "keywords": "NE11, Durands Sky Ranch" + }, + { + "id": "22910", + "ident": "NE12", + "type": "small_airport", + "name": "Sullivan Airstrip", + "latitude_deg": "41.23889923095703", + "longitude_deg": "-98.22810363769531", + "elevation_ft": "1745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "NE12", + "local_code": "NE12" + }, + { + "id": "22911", + "ident": "NE14", + "type": "heliport", + "name": "Ogallala Community Hospital Heliport", + "latitude_deg": "41.1505012512207", + "longitude_deg": "-101.72000122070312", + "elevation_ft": "3326", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Ogallala", + "scheduled_service": "no", + "gps_code": "NE14", + "local_code": "NE14" + }, + { + "id": "22912", + "ident": "NE15", + "type": "closed", + "name": "Starns Auxiliary Airport", + "latitude_deg": "41.049999", + "longitude_deg": "-96.382797", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Ashland", + "scheduled_service": "no", + "keywords": "NE15" + }, + { + "id": "22913", + "ident": "NE16", + "type": "heliport", + "name": "Gothenburg Memorial Hospital Heliport", + "latitude_deg": "40.939753", + "longitude_deg": "-100.154251", + "elevation_ft": "2680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Gothenburg", + "scheduled_service": "no", + "gps_code": "NE16", + "local_code": "NE16" + }, + { + "id": "22914", + "ident": "NE17", + "type": "small_airport", + "name": "Walts Aerial Service Airport", + "latitude_deg": "41.2486000061", + "longitude_deg": "-98.4559020996", + "elevation_ft": "1795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "St. Paul", + "scheduled_service": "no", + "gps_code": "NE17", + "local_code": "NE17" + }, + { + "id": "22915", + "ident": "NE18", + "type": "small_airport", + "name": "Krutz Airport", + "latitude_deg": "40.91419982910156", + "longitude_deg": "-97.08059692382812", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Seward", + "scheduled_service": "no", + "gps_code": "NE18", + "local_code": "NE18" + }, + { + "id": "22916", + "ident": "NE19", + "type": "small_airport", + "name": "Ag Air Airport", + "latitude_deg": "41.59579849243164", + "longitude_deg": "-102.81700134277344", + "elevation_ft": "3651", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Broadwater", + "scheduled_service": "no", + "gps_code": "NE19", + "local_code": "NE19" + }, + { + "id": "22917", + "ident": "NE20", + "type": "small_airport", + "name": "Bernadt Airport", + "latitude_deg": "40.186100006103516", + "longitude_deg": "-96.2114028930664", + "elevation_ft": "1290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Steinauer", + "scheduled_service": "no", + "gps_code": "NE20", + "local_code": "NE20" + }, + { + "id": "346701", + "ident": "NE21", + "type": "small_airport", + "name": "Clyde Airfield", + "latitude_deg": "40.286401", + "longitude_deg": "-99.593554", + "elevation_ft": "2250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Oxford", + "scheduled_service": "no", + "gps_code": "NE21", + "local_code": "NE21" + }, + { + "id": "324600", + "ident": "NE22", + "type": "heliport", + "name": "Great Plains Regional Medical Center Heliport", + "latitude_deg": "41.122238", + "longitude_deg": "-100.771183", + "elevation_ft": "2851", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "North Platte", + "scheduled_service": "no", + "gps_code": "NE22", + "local_code": "NE22" + }, + { + "id": "22918", + "ident": "NE24", + "type": "closed", + "name": "Polaks Sky Ranch Airport", + "latitude_deg": "41.033298", + "longitude_deg": "-96.817001", + "elevation_ft": "1268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Valparaiso", + "scheduled_service": "no", + "keywords": "NE24" + }, + { + "id": "22919", + "ident": "NE25", + "type": "small_airport", + "name": "Orr Field", + "latitude_deg": "41.18190002441406", + "longitude_deg": "-100.86000061035156", + "elevation_ft": "2860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "North Platte", + "scheduled_service": "no", + "gps_code": "NE25", + "local_code": "NE25" + }, + { + "id": "332473", + "ident": "NE26", + "type": "small_airport", + "name": "Treadway Air Airport", + "latitude_deg": "41.022319", + "longitude_deg": "-96.434558", + "elevation_ft": "1096", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "NE26", + "local_code": "NE26" + }, + { + "id": "22920", + "ident": "NE27", + "type": "closed", + "name": "Abie Sky Ranch Airport", + "latitude_deg": "41.368005", + "longitude_deg": "-96.949768", + "elevation_ft": "1440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Abie", + "scheduled_service": "no", + "keywords": "NE27" + }, + { + "id": "22921", + "ident": "NE28", + "type": "heliport", + "name": "Jubilee Heliport", + "latitude_deg": "41.35689926147461", + "longitude_deg": "-96.04889678955078", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Omaha", + "scheduled_service": "no", + "gps_code": "NE28", + "local_code": "NE28" + }, + { + "id": "22922", + "ident": "NE29", + "type": "small_airport", + "name": "Cavanaugh Airport", + "latitude_deg": "40.51390075683594", + "longitude_deg": "-99.01200103759766", + "elevation_ft": "2175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Minden", + "scheduled_service": "no", + "gps_code": "NE29", + "local_code": "NE29" + }, + { + "id": "22923", + "ident": "NE30", + "type": "small_airport", + "name": "Olson Field", + "latitude_deg": "40.57360076904297", + "longitude_deg": "-99.42040252685547", + "elevation_ft": "2330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Holdrege", + "scheduled_service": "no", + "gps_code": "NE30", + "local_code": "NE30" + }, + { + "id": "22924", + "ident": "NE31", + "type": "small_airport", + "name": "B.C. Air Airport", + "latitude_deg": "42.01449966430664", + "longitude_deg": "-97.5864028930664", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Battle Creek", + "scheduled_service": "no", + "gps_code": "NE31", + "local_code": "NE31" + }, + { + "id": "22925", + "ident": "NE32", + "type": "heliport", + "name": "Box Butte General Hospital Med-I-Port Heliport", + "latitude_deg": "42.11439895629883", + "longitude_deg": "-102.87100219726562", + "elevation_ft": "3929", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Alliance", + "scheduled_service": "no", + "gps_code": "NE32", + "local_code": "NE32" + }, + { + "id": "22926", + "ident": "NE33", + "type": "closed", + "name": "Clearidge Airport", + "latitude_deg": "40.709702", + "longitude_deg": "-96.4767", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Bennet", + "scheduled_service": "no", + "keywords": "NE33" + }, + { + "id": "22927", + "ident": "NE34", + "type": "small_airport", + "name": "Fehringer Aerodrome", + "latitude_deg": "41.038643", + "longitude_deg": "-102.955027", + "elevation_ft": "4300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Sidney", + "scheduled_service": "no", + "gps_code": "NE34", + "local_code": "NE34" + }, + { + "id": "22928", + "ident": "NE35", + "type": "small_airport", + "name": "Sutton Airport", + "latitude_deg": "40.05830001831055", + "longitude_deg": "-97.54119873046875", + "elevation_ft": "1583", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Chester", + "scheduled_service": "no", + "gps_code": "NE35", + "local_code": "NE35" + }, + { + "id": "22929", + "ident": "NE37", + "type": "small_airport", + "name": "Loseke Airstrip", + "latitude_deg": "41.47249984741211", + "longitude_deg": "-97.27140045166016", + "elevation_ft": "1490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "NE37", + "local_code": "NE37" + }, + { + "id": "22930", + "ident": "NE38", + "type": "small_airport", + "name": "Aknux Airport", + "latitude_deg": "40.709518", + "longitude_deg": "-98.559545", + "elevation_ft": "2025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Prosser", + "scheduled_service": "no", + "gps_code": "NE38", + "local_code": "NE38" + }, + { + "id": "22931", + "ident": "NE39", + "type": "small_airport", + "name": "Warbonnet Ag Strip", + "latitude_deg": "40.9500007629", + "longitude_deg": "-96.6502990723", + "elevation_ft": "1325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Davey", + "scheduled_service": "no", + "gps_code": "NE39", + "local_code": "NE39" + }, + { + "id": "22932", + "ident": "NE40", + "type": "small_airport", + "name": "Denton Airfield", + "latitude_deg": "40.71580123901367", + "longitude_deg": "-96.8677978515625", + "elevation_ft": "1270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Denton", + "scheduled_service": "no", + "gps_code": "NE40", + "local_code": "NE40" + }, + { + "id": "22933", + "ident": "NE41", + "type": "heliport", + "name": "Rgnl West Medical Center Heliport", + "latitude_deg": "41.88759994506836", + "longitude_deg": "-103.66400146484375", + "elevation_ft": "3985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Scottsbluff", + "scheduled_service": "no", + "gps_code": "NE41", + "local_code": "NE41" + }, + { + "id": "22934", + "ident": "NE42", + "type": "small_airport", + "name": "Dream Field", + "latitude_deg": "40.93330001831055", + "longitude_deg": "-96.70059967041016", + "elevation_ft": "1194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "NE42", + "local_code": "NE42" + }, + { + "id": "22935", + "ident": "NE43", + "type": "small_airport", + "name": "Musiel Airport", + "latitude_deg": "41.439701080322266", + "longitude_deg": "-96.75420379638672", + "elevation_ft": "1230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Morse Bluff", + "scheduled_service": "no", + "gps_code": "NE43", + "local_code": "NE43" + }, + { + "id": "22936", + "ident": "NE44", + "type": "small_airport", + "name": "Koinzan Airport", + "latitude_deg": "41.983299255371094", + "longitude_deg": "-98.08370208740234", + "elevation_ft": "1919", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Elgin", + "scheduled_service": "no", + "gps_code": "NE44", + "local_code": "NE44" + }, + { + "id": "22937", + "ident": "NE45", + "type": "closed", + "name": "Stewart Field", + "latitude_deg": "40.694401", + "longitude_deg": "-96.577795", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Bennet", + "scheduled_service": "no", + "keywords": "NE45" + }, + { + "id": "22938", + "ident": "NE46", + "type": "heliport", + "name": "Gemini Heliport", + "latitude_deg": "41.25419998168945", + "longitude_deg": "-96.06700134277344", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Omaha", + "scheduled_service": "no", + "gps_code": "NE46", + "local_code": "NE46" + }, + { + "id": "345060", + "ident": "NE48", + "type": "heliport", + "name": "Childrens Hospital & Medical Center Helipad", + "latitude_deg": "41.260779", + "longitude_deg": "-96.042003", + "elevation_ft": "1216", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Omaha", + "scheduled_service": "no", + "gps_code": "NE48", + "local_code": "NE48" + }, + { + "id": "22939", + "ident": "NE49", + "type": "small_airport", + "name": "Koke Airport", + "latitude_deg": "41.06669998168945", + "longitude_deg": "-96.25029754638672", + "elevation_ft": "1265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Gretna", + "scheduled_service": "no", + "gps_code": "NE49", + "local_code": "NE49" + }, + { + "id": "22940", + "ident": "NE50", + "type": "small_airport", + "name": "Sudbeck Field", + "latitude_deg": "42.615299224853516", + "longitude_deg": "-97.4103012084961", + "elevation_ft": "1480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hartington", + "scheduled_service": "no", + "gps_code": "NE50", + "local_code": "NE50" + }, + { + "id": "22941", + "ident": "NE51", + "type": "closed", + "name": "Kohles Airport", + "latitude_deg": "40.657203", + "longitude_deg": "-96.757797", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Martell", + "scheduled_service": "no", + "keywords": "NE51" + }, + { + "id": "22942", + "ident": "NE52", + "type": "closed", + "name": "Easton Field", + "latitude_deg": "40.077801", + "longitude_deg": "-97.614998", + "elevation_ft": "1578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hebron", + "scheduled_service": "no", + "keywords": "NE52" + }, + { + "id": "22943", + "ident": "NE53", + "type": "small_airport", + "name": "Liesveld Airport", + "latitude_deg": "40.59109878540039", + "longitude_deg": "-96.58889770507812", + "elevation_ft": "1385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Holland", + "scheduled_service": "no", + "gps_code": "NE53", + "local_code": "NE53" + }, + { + "id": "22944", + "ident": "NE54", + "type": "small_airport", + "name": "Dostal-Bradley Airport", + "latitude_deg": "41.70830154418945", + "longitude_deg": "-96.97949981689453", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Howells", + "scheduled_service": "no", + "gps_code": "NE54", + "local_code": "NE54" + }, + { + "id": "22945", + "ident": "NE55", + "type": "heliport", + "name": "Humboldt Hospital Heliport", + "latitude_deg": "40.162200927734375", + "longitude_deg": "-95.94190216064453", + "elevation_ft": "978", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Humboldt", + "scheduled_service": "no", + "gps_code": "NE55", + "local_code": "NE55" + }, + { + "id": "22946", + "ident": "NE56", + "type": "small_airport", + "name": "Werner Airport", + "latitude_deg": "41.341400146484375", + "longitude_deg": "-96.3949966430664", + "elevation_ft": "1157", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Valley", + "scheduled_service": "no", + "gps_code": "NE56", + "local_code": "NE56" + }, + { + "id": "22947", + "ident": "NE57", + "type": "small_airport", + "name": "Thomas Airport", + "latitude_deg": "40.092201232910156", + "longitude_deg": "-96.47810363769531", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Liberty", + "scheduled_service": "no", + "gps_code": "NE57", + "local_code": "NE57" + }, + { + "id": "22948", + "ident": "NE59", + "type": "small_airport", + "name": "Pester Airport", + "latitude_deg": "40.83330154418945", + "longitude_deg": "-96.56700134277344", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "NE59", + "local_code": "NE59" + }, + { + "id": "22949", + "ident": "NE60", + "type": "heliport", + "name": "St Elizabeth Community Health Center Heliport", + "latitude_deg": "40.80780029", + "longitude_deg": "-96.63079834", + "elevation_ft": "1252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "NE60", + "local_code": "NE60" + }, + { + "id": "22950", + "ident": "NE62", + "type": "heliport", + "name": "Ochsner Heliport", + "latitude_deg": "41.84360122680664", + "longitude_deg": "-97.41699981689453", + "elevation_ft": "1630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "NE62", + "local_code": "NE62" + }, + { + "id": "22951", + "ident": "NE64", + "type": "closed", + "name": "Luetkenhaus Airport", + "latitude_deg": "41.105301", + "longitude_deg": "-96.4095", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Memphis", + "scheduled_service": "no", + "keywords": "NE64" + }, + { + "id": "22952", + "ident": "NE65", + "type": "small_airport", + "name": "Roth Airport", + "latitude_deg": "40.766998291015625", + "longitude_deg": "-97.07779693603516", + "elevation_ft": "1485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "NE65", + "local_code": "NE65" + }, + { + "id": "324697", + "ident": "NE67", + "type": "small_airport", + "name": "Falk Air Field", + "latitude_deg": "42.107655", + "longitude_deg": "-97.341313", + "elevation_ft": "1710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hoskins", + "scheduled_service": "no", + "gps_code": "NE67", + "local_code": "NE67" + }, + { + "id": "22953", + "ident": "NE68", + "type": "heliport", + "name": "Faith Regional Health Services West Campus Heliport", + "latitude_deg": "42.03409957885742", + "longitude_deg": "-97.45269775390625", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Norfolk", + "scheduled_service": "no", + "gps_code": "NE68", + "local_code": "NE68" + }, + { + "id": "22954", + "ident": "NE69", + "type": "small_airport", + "name": "Browns Airport", + "latitude_deg": "40.8675003052", + "longitude_deg": "-96.1100006104", + "elevation_ft": "1183", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Weeping Water", + "scheduled_service": "no", + "gps_code": "NE69", + "iata_code": "EPG", + "local_code": "NE69" + }, + { + "id": "22955", + "ident": "NE71", + "type": "heliport", + "name": "Immanuel Medical Center Heliport", + "latitude_deg": "41.322200775146484", + "longitude_deg": "-96.02110290527344", + "elevation_ft": "1246", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Omaha", + "scheduled_service": "no", + "gps_code": "NE71", + "local_code": "NE71" + }, + { + "id": "22956", + "ident": "NE73", + "type": "closed", + "name": "Stinking Water Creek Airport", + "latitude_deg": "40.723301", + "longitude_deg": "-101.457001", + "elevation_ft": "3165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Elsie", + "scheduled_service": "no", + "keywords": "NE73" + }, + { + "id": "345423", + "ident": "NE75", + "type": "small_airport", + "name": "Kristijanto Airstrip", + "latitude_deg": "42.400342", + "longitude_deg": "-96.431304", + "elevation_ft": "1096", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Dakota City", + "scheduled_service": "no", + "gps_code": "NE75", + "local_code": "NE75" + }, + { + "id": "22957", + "ident": "NE76", + "type": "heliport", + "name": "St Francis Medical Center Heliport", + "latitude_deg": "40.92499924", + "longitude_deg": "-98.37259674", + "elevation_ft": "2106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Grand Island", + "scheduled_service": "no", + "gps_code": "NE76", + "local_code": "NE76" + }, + { + "id": "354674", + "ident": "NE77", + "type": "heliport", + "name": "Kearney Regional Medical Center Heliport", + "latitude_deg": "40.681659", + "longitude_deg": "-99.111593", + "elevation_ft": "2157", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Kearney", + "scheduled_service": "no", + "gps_code": "NE77", + "local_code": "NE77" + }, + { + "id": "346770", + "ident": "NE78", + "type": "small_airport", + "name": "Kohles Airport", + "latitude_deg": "42.074738", + "longitude_deg": "-97.318895", + "elevation_ft": "1686", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Norfolk", + "scheduled_service": "no", + "gps_code": "NE78", + "local_code": "NE78" + }, + { + "id": "22958", + "ident": "NE79", + "type": "small_airport", + "name": "Mueller Field", + "latitude_deg": "40.652801513671875", + "longitude_deg": "-96.62110137939453", + "elevation_ft": "1405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Roca", + "scheduled_service": "no", + "gps_code": "NE79", + "local_code": "NE79" + }, + { + "id": "22959", + "ident": "NE80", + "type": "small_airport", + "name": "Chambers Airfield", + "latitude_deg": "40.673066", + "longitude_deg": "-96.637813", + "elevation_ft": "1364", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Roca", + "scheduled_service": "no", + "gps_code": "NE80", + "local_code": "NE80", + "keywords": "Weaver Airport, Lincoln" + }, + { + "id": "346199", + "ident": "NE81", + "type": "small_airport", + "name": "Huffy's Airport", + "latitude_deg": "42.881487", + "longitude_deg": "-98.655762", + "elevation_ft": "1690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Spencer", + "scheduled_service": "no", + "gps_code": "NE81", + "local_code": "NE81" + }, + { + "id": "22960", + "ident": "NE82", + "type": "small_airport", + "name": "Nolte Farms Airport", + "latitude_deg": "40.932498931884766", + "longitude_deg": "-95.99949645996094", + "elevation_ft": "1245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Murray", + "scheduled_service": "no", + "gps_code": "NE82", + "local_code": "NE82" + }, + { + "id": "22961", + "ident": "NE83", + "type": "closed", + "name": "Moab Heliport", + "latitude_deg": "41.120603", + "longitude_deg": "-97.431395", + "elevation_ft": "1640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Shelby", + "scheduled_service": "no", + "keywords": "NE83" + }, + { + "id": "22962", + "ident": "NE84", + "type": "heliport", + "name": "Memorial Hospital Heliport", + "latitude_deg": "40.86830139160156", + "longitude_deg": "-98.0145034790039", + "elevation_ft": "1802", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Aurora", + "scheduled_service": "no", + "gps_code": "NE84", + "local_code": "NE84" + }, + { + "id": "22963", + "ident": "NE85", + "type": "small_airport", + "name": "Glaser Airport", + "latitude_deg": "41.687198638916016", + "longitude_deg": "-98.30259704589844", + "elevation_ft": "2035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Spalding", + "scheduled_service": "no", + "gps_code": "NE85", + "local_code": "NE85" + }, + { + "id": "22964", + "ident": "NE86", + "type": "small_airport", + "name": "Traudt Airport", + "latitude_deg": "40.66559982299805", + "longitude_deg": "-97.86979675292969", + "elevation_ft": "1725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Sutton", + "scheduled_service": "no", + "gps_code": "NE86", + "local_code": "NE86" + }, + { + "id": "22965", + "ident": "NE87", + "type": "small_airport", + "name": "Rempe Private Airport", + "latitude_deg": "40.097198486328125", + "longitude_deg": "-98.0647964477539", + "elevation_ft": "1760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Superior", + "scheduled_service": "no", + "gps_code": "NE87", + "local_code": "NE87" + }, + { + "id": "22966", + "ident": "NE88", + "type": "small_airport", + "name": "Novotny/Tonar Farms Airport", + "latitude_deg": "41.02080154418945", + "longitude_deg": "-96.86419677734375", + "elevation_ft": "1426", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Valparaiso", + "scheduled_service": "no", + "gps_code": "NE88", + "local_code": "NE88" + }, + { + "id": "22967", + "ident": "NE89", + "type": "closed", + "name": "Herberts Farm Airport", + "latitude_deg": "42.543303", + "longitude_deg": "-97.968699", + "elevation_ft": "1658", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Winnetoon", + "scheduled_service": "no", + "keywords": "NE89" + }, + { + "id": "22968", + "ident": "NE90", + "type": "heliport", + "name": "Mary Lanning Memorial Hospital Heliport", + "latitude_deg": "40.591400146484375", + "longitude_deg": "-98.38749694824219", + "elevation_ft": "1925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hastings", + "scheduled_service": "no", + "gps_code": "NE90", + "local_code": "NE90" + }, + { + "id": "22969", + "ident": "NE92", + "type": "small_airport", + "name": "Thomsen Airport", + "latitude_deg": "40.049400329589844", + "longitude_deg": "-96.66609954833984", + "elevation_ft": "1405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Wymore", + "scheduled_service": "no", + "gps_code": "NE92", + "local_code": "NE92" + }, + { + "id": "325513", + "ident": "NE94", + "type": "small_airport", + "name": "Feik Field Ultralight Flightpark", + "latitude_deg": "40.55678", + "longitude_deg": "-97.209544", + "elevation_ft": "1567", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Friend", + "scheduled_service": "no", + "gps_code": "NE94", + "local_code": "NE94" + }, + { + "id": "324593", + "ident": "NE95", + "type": "small_airport", + "name": "Frenchman Airport", + "latitude_deg": "40.229334", + "longitude_deg": "-100.856841", + "elevation_ft": "2590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Culbertson", + "scheduled_service": "no", + "gps_code": "NE95", + "local_code": "NE95" + }, + { + "id": "22970", + "ident": "NE99", + "type": "small_airport", + "name": "Hawkins Ranch Airport", + "latitude_deg": "41.57500076293945", + "longitude_deg": "-101.81800079345703", + "elevation_ft": "3680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Arthur", + "scheduled_service": "no", + "gps_code": "NE99", + "local_code": "NE99" + }, + { + "id": "45040", + "ident": "NFBG", + "type": "closed", + "name": "Biaugunu Airport", + "latitude_deg": "-16.4493799329", + "longitude_deg": "179.740104675", + "elevation_ft": "32", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-N", + "municipality": "Saqani, Cakaudrove", + "scheduled_service": "no", + "gps_code": "NFBG", + "iata_code": "AQS", + "keywords": "Saqani Airport" + }, + { + "id": "31662", + "ident": "NFCI", + "type": "small_airport", + "name": "Cicia Airport", + "latitude_deg": "-17.7432994843", + "longitude_deg": "-179.341995239", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-E", + "municipality": "Cicia", + "scheduled_service": "yes", + "gps_code": "NFCI", + "iata_code": "ICI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cicia_Airport" + }, + { + "id": "312330", + "ident": "NFCS", + "type": "seaplane_base", + "name": "Castaway Island Seaplane Base", + "latitude_deg": "-17.7358", + "longitude_deg": "177.129", + "elevation_ft": "0", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-W", + "municipality": "Castaway Island", + "scheduled_service": "no", + "gps_code": "NFCS", + "iata_code": "CST" + }, + { + "id": "301882", + "ident": "NFFA", + "type": "small_airport", + "name": "Ba Airport", + "latitude_deg": "-17.530799", + "longitude_deg": "177.690506", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-W", + "municipality": "Ba", + "scheduled_service": "no", + "gps_code": "NFFA", + "keywords": "BFJ" + }, + { + "id": "4959", + "ident": "NFFN", + "type": "medium_airport", + "name": "Nadi International Airport", + "latitude_deg": "-17.755399703979492", + "longitude_deg": "177.4429931640625", + "elevation_ft": "59", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-W", + "municipality": "Nadi", + "scheduled_service": "yes", + "gps_code": "NFFN", + "iata_code": "NAN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nadi_International_Airport" + }, + { + "id": "32176", + "ident": "NFFO", + "type": "small_airport", + "name": "Malolo Lailai Island Airport", + "latitude_deg": "-17.778448", + "longitude_deg": "177.196996", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-W", + "municipality": "Malolo Lailai Island", + "scheduled_service": "yes", + "gps_code": "NFFO", + "iata_code": "PTF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Malolo_Lailai_Airport" + }, + { + "id": "313476", + "ident": "NFFR", + "type": "small_airport", + "name": "Rabi Island Airport", + "latitude_deg": "-16.5337", + "longitude_deg": "179.9757", + "elevation_ft": "88", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-N", + "municipality": "Rabi Island", + "scheduled_service": "no", + "gps_code": "NFFR", + "iata_code": "RBI" + }, + { + "id": "344020", + "ident": "NFGO", + "type": "small_airport", + "name": "Mago Island Airstrip", + "latitude_deg": "-17.438646", + "longitude_deg": "-179.163601", + "elevation_ft": "315", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-E", + "municipality": "Mago Island", + "scheduled_service": "no", + "gps_code": "NFGO" + }, + { + "id": "32023", + "ident": "NFKB", + "type": "small_airport", + "name": "Kaibu Island Airport", + "latitude_deg": "-17.254199981689453", + "longitude_deg": "-179.48899841308594", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-N", + "municipality": "Kaibu Island", + "scheduled_service": "no", + "gps_code": "NFKB" + }, + { + "id": "31738", + "ident": "NFKD", + "type": "small_airport", + "name": "Vunisea Airport", + "latitude_deg": "-19.058099746699998", + "longitude_deg": "178.156997681", + "elevation_ft": "6", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-E", + "municipality": "Vunisea", + "scheduled_service": "yes", + "gps_code": "NFKD", + "iata_code": "KDV", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_Fiji", + "keywords": "Kadavu Island" + }, + { + "id": "31926", + "ident": "NFMA", + "type": "small_airport", + "name": "Mana Island Airport", + "latitude_deg": "-17.672844", + "longitude_deg": "177.0985", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-W", + "municipality": "Mana Island", + "scheduled_service": "yes", + "gps_code": "NFMA", + "iata_code": "MNF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mana_Island_Airport" + }, + { + "id": "31895", + "ident": "NFMO", + "type": "small_airport", + "name": "Moala Airport", + "latitude_deg": "-18.566699981699998", + "longitude_deg": "179.951004028", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-E", + "municipality": "Moala", + "scheduled_service": "yes", + "gps_code": "NFMO", + "iata_code": "MFJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moala_Airport" + }, + { + "id": "4960", + "ident": "NFNA", + "type": "medium_airport", + "name": "Nausori International Airport", + "latitude_deg": "-18.04330062866211", + "longitude_deg": "178.5590057373047", + "elevation_ft": "17", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-C", + "municipality": "Nausori", + "scheduled_service": "yes", + "gps_code": "NFNA", + "iata_code": "SUV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nausori_International_Airport" + }, + { + "id": "31810", + "ident": "NFNB", + "type": "small_airport", + "name": "Levuka Airfield", + "latitude_deg": "-17.7110996246", + "longitude_deg": "178.759002686", + "elevation_ft": "11", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-E", + "municipality": "Bureta", + "scheduled_service": "yes", + "gps_code": "NFNB", + "iata_code": "LEV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Levuka_Airfield" + }, + { + "id": "32026", + "ident": "NFNG", + "type": "small_airport", + "name": "Ngau Airport", + "latitude_deg": "-18.115600585899998", + "longitude_deg": "179.339996338", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-E", + "municipality": "Ngau", + "scheduled_service": "yes", + "gps_code": "NFNG", + "iata_code": "NGI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ngau_Airport" + }, + { + "id": "31860", + "ident": "NFNH", + "type": "small_airport", + "name": "Laucala Island Airport", + "latitude_deg": "-16.74810028076172", + "longitude_deg": "-179.66700744628906", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-N", + "municipality": "Laucala Island", + "scheduled_service": "no", + "gps_code": "NFNH", + "iata_code": "LUC" + }, + { + "id": "31829", + "ident": "NFNK", + "type": "small_airport", + "name": "Lakeba Island Airport", + "latitude_deg": "-18.1991996765", + "longitude_deg": "-178.817001343", + "elevation_ft": "280", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-E", + "municipality": "Lakeba Island", + "scheduled_service": "yes", + "gps_code": "NFNK", + "iata_code": "LKB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lakeba_Airport" + }, + { + "id": "4961", + "ident": "NFNL", + "type": "medium_airport", + "name": "Labasa Airport", + "latitude_deg": "-16.466699600219727", + "longitude_deg": "179.33999633789062", + "elevation_ft": "44", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-N", + "scheduled_service": "yes", + "gps_code": "NFNL", + "iata_code": "LBS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lambasa_Airport" + }, + { + "id": "32485", + "ident": "NFNM", + "type": "small_airport", + "name": "Matei Airport", + "latitude_deg": "-16.690599", + "longitude_deg": "-179.876999", + "elevation_ft": "60", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-N", + "municipality": "Matei", + "scheduled_service": "yes", + "gps_code": "NFNM", + "iata_code": "TVU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Matei_Airport", + "keywords": "Taveuni" + }, + { + "id": "31789", + "ident": "NFNO", + "type": "small_airport", + "name": "Koro Island Airport", + "latitude_deg": "-17.3458003998", + "longitude_deg": "179.42199707", + "elevation_ft": "358", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-E", + "municipality": "Koro Island", + "scheduled_service": "yes", + "gps_code": "NFNO", + "iata_code": "KXF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Koro_Airport" + }, + { + "id": "32233", + "ident": "NFNR", + "type": "small_airport", + "name": "Rotuma Airport", + "latitude_deg": "-12.482500076293945", + "longitude_deg": "177.0709991455078", + "elevation_ft": "22", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-R", + "municipality": "Rotuma", + "scheduled_service": "yes", + "gps_code": "NFNR", + "iata_code": "RTA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rotuma_Island_Airport", + "keywords": "Elsee" + }, + { + "id": "32397", + "ident": "NFNS", + "type": "small_airport", + "name": "Savusavu Airport", + "latitude_deg": "-16.803394", + "longitude_deg": "179.340587", + "elevation_ft": "17", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-N", + "municipality": "Savusavu", + "scheduled_service": "yes", + "gps_code": "NFNS", + "iata_code": "SVU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Savusavu_Airport" + }, + { + "id": "315553", + "ident": "NFNU", + "type": "closed", + "name": "Bui-Dama Airport", + "latitude_deg": "-16.8598", + "longitude_deg": "178.6232", + "elevation_ft": "90", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-N", + "municipality": "Bua", + "scheduled_service": "no", + "gps_code": "NFNU", + "iata_code": "BVF", + "keywords": "Ndalomo" + }, + { + "id": "32567", + "ident": "NFNV", + "type": "closed", + "name": "Vatukoula Airport", + "latitude_deg": "-17.499603", + "longitude_deg": "177.863075", + "elevation_ft": "156", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-W", + "municipality": "Vatukoula", + "scheduled_service": "no", + "gps_code": "NFNV", + "iata_code": "VAU" + }, + { + "id": "31719", + "ident": "NFNW", + "type": "small_airport", + "name": "Wakaya Island Airport", + "latitude_deg": "-17.617000579833984", + "longitude_deg": "179.01699829101562", + "elevation_ft": "130", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-E", + "municipality": "Wakaya Island", + "scheduled_service": "no", + "gps_code": "NFNW", + "iata_code": "KAY" + }, + { + "id": "32113", + "ident": "NFOL", + "type": "small_airport", + "name": "Ono-i-Lau Airport", + "latitude_deg": "-20.6589", + "longitude_deg": "-178.7411", + "elevation_ft": "110", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-E", + "municipality": "Ono-i-Lau", + "scheduled_service": "no", + "gps_code": "NFOL", + "iata_code": "ONU" + }, + { + "id": "312331", + "ident": "NFRS", + "type": "seaplane_base", + "name": "Treasure Island Seaplane Base", + "latitude_deg": "-17.6554", + "longitude_deg": "177.2654", + "elevation_ft": "0", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-W", + "municipality": "Treasure Island Resort", + "scheduled_service": "no", + "gps_code": "NFRS" + }, + { + "id": "32717", + "ident": "NFSW", + "type": "small_airport", + "name": "Yasawa Island Airport", + "latitude_deg": "-16.7589", + "longitude_deg": "177.544998", + "elevation_ft": "37", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-W", + "municipality": "Yasawa Island", + "scheduled_service": "no", + "gps_code": "NFSW", + "iata_code": "YAS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yasawa_Island_Airport" + }, + { + "id": "31024", + "ident": "NFTE", + "type": "small_airport", + "name": "Kaufana Airport", + "latitude_deg": "-21.378299713100002", + "longitude_deg": "-174.957992554", + "elevation_ft": "325", + "continent": "OC", + "iso_country": "TO", + "iso_region": "TO-01", + "municipality": "Eua Island", + "scheduled_service": "yes", + "gps_code": "NFTE", + "iata_code": "EUA", + "wikipedia_link": "https://en.wikipedia.org/wiki/'Eua_Airport" + }, + { + "id": "4962", + "ident": "NFTF", + "type": "medium_airport", + "name": "Fua'amotu International Airport", + "latitude_deg": "-21.241199493408203", + "longitude_deg": "-175.14999389648438", + "elevation_ft": "126", + "continent": "OC", + "iso_country": "TO", + "iso_region": "TO-04", + "municipality": "Nuku'alofa", + "scheduled_service": "yes", + "gps_code": "NFTF", + "iata_code": "TBU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fua'amotu_International_Airport" + }, + { + "id": "4963", + "ident": "NFTL", + "type": "medium_airport", + "name": "Lifuka Island Airport", + "latitude_deg": "-19.777000427246094", + "longitude_deg": "-174.34100341796875", + "elevation_ft": "31", + "continent": "OC", + "iso_country": "TO", + "iso_region": "TO-02", + "municipality": "Lifuka", + "scheduled_service": "yes", + "gps_code": "NFTL", + "iata_code": "HPA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lifuka_Island_Airport", + "keywords": "Salote Pilolevu Airport, Haapai" + }, + { + "id": "32024", + "ident": "NFTO", + "type": "small_airport", + "name": "Mata'aho Airport", + "latitude_deg": "-15.5708", + "longitude_deg": "-175.632996", + "elevation_ft": "160", + "continent": "OC", + "iso_country": "TO", + "iso_region": "TO-03", + "municipality": "Angaha, Niuafo'ou Island", + "scheduled_service": "yes", + "gps_code": "NFTO", + "iata_code": "NFO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mata'aho_Airport" + }, + { + "id": "32052", + "ident": "NFTP", + "type": "small_airport", + "name": "Kuini Lavenia Airport", + "latitude_deg": "-15.977297", + "longitude_deg": "-173.791089", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "TO", + "iso_region": "TO-03", + "municipality": "Niuatoputapu", + "scheduled_service": "yes", + "gps_code": "NFTP", + "iata_code": "NTT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Niuatoputapu_Airport" + }, + { + "id": "4964", + "ident": "NFTV", + "type": "medium_airport", + "name": "Vava'u International Airport", + "latitude_deg": "-18.58530044555664", + "longitude_deg": "-173.96200561523438", + "elevation_ft": "236", + "continent": "OC", + "iso_country": "TO", + "iso_region": "TO-05", + "municipality": "Vava'u Island", + "scheduled_service": "yes", + "gps_code": "NFTV", + "iata_code": "VAV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vava'u_International_Airport", + "keywords": "Vavau, Lupepau'u" + }, + { + "id": "315187", + "ident": "NFUL", + "type": "seaplane_base", + "name": "Turtle Island Seaplane Base", + "latitude_deg": "-16.966", + "longitude_deg": "177.368", + "elevation_ft": "0", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-W", + "municipality": "Nanuya Levu Island", + "scheduled_service": "no", + "gps_code": "NFUL", + "iata_code": "TTL" + }, + { + "id": "35321", + "ident": "NFVB", + "type": "small_airport", + "name": "Vanua Balavu Airport", + "latitude_deg": "-17.268999099731445", + "longitude_deg": "-178.9759979248047", + "elevation_ft": "76", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-E", + "municipality": "Vanua Balavu", + "scheduled_service": "yes", + "gps_code": "NFVB", + "iata_code": "VBV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vanuabalavu_Airport", + "keywords": "Vanuabalavu" + }, + { + "id": "32600", + "ident": "NFVL", + "type": "small_airport", + "name": "Vatulele Airport", + "latitude_deg": "-18.512500762939453", + "longitude_deg": "177.63900756835938", + "elevation_ft": "36", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-W", + "municipality": "Vatulele", + "scheduled_service": "no", + "gps_code": "NFVL", + "iata_code": "VTF" + }, + { + "id": "42463", + "ident": "NG-0001", + "type": "closed", + "name": "Agbara-Otor Airport", + "latitude_deg": "5.538911", + "longitude_deg": "6.088", + "elevation_ft": "43", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-DE", + "municipality": "Agbara-Otor", + "scheduled_service": "no" + }, + { + "id": "42464", + "ident": "NG-0002", + "type": "small_airport", + "name": "Kainji Air Base", + "latitude_deg": "9.895279", + "longitude_deg": "4.484224", + "elevation_ft": "689", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-NI", + "municipality": "New Bussa", + "scheduled_service": "no", + "keywords": "Kainji, Wawa" + }, + { + "id": "44578", + "ident": "NG-0003", + "type": "medium_airport", + "name": "Gombe Lawanti International Airport", + "latitude_deg": "10.298889", + "longitude_deg": "10.9", + "elevation_ft": "1590", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-GO", + "municipality": "Gombe", + "scheduled_service": "yes", + "gps_code": "DNGO", + "iata_code": "GMO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gombe_Lawanti_International_Airport" + }, + { + "id": "300565", + "ident": "NG-0004", + "type": "small_airport", + "name": "Port Harcourt City Airport / Port Harcourt Air Force Base", + "latitude_deg": "4.846111", + "longitude_deg": "7.021389", + "elevation_ft": "57", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-RI", + "municipality": "Port Harcourt", + "scheduled_service": "yes", + "iata_code": "PHG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Harcourt_NAF_Base", + "keywords": "Port Harcourt NAF Base" + }, + { + "id": "313797", + "ident": "NG-0005", + "type": "small_airport", + "name": "Srr Ahmadu Bello International Airport", + "latitude_deg": "12.480556", + "longitude_deg": "4.369445", + "elevation_ft": "775", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-KE", + "municipality": "Birinin Kebbi", + "scheduled_service": "yes", + "gps_code": "DNBK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kebbi_International_Airport#Airlines_and_destinations", + "keywords": "Kebbi International Airport" + }, + { + "id": "430357", + "ident": "NG-0006", + "type": "small_airport", + "name": "Okpoma Airport", + "latitude_deg": "4.29802", + "longitude_deg": "6.27635", + "elevation_ft": "47", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-BY", + "municipality": "Okpoma", + "scheduled_service": "no" + }, + { + "id": "330056", + "ident": "NG-0007", + "type": "small_airport", + "name": "Lokoja Airstrip", + "latitude_deg": "7.801829", + "longitude_deg": "6.582793", + "elevation_ft": "320", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-KO", + "municipality": "Lokoja", + "scheduled_service": "no" + }, + { + "id": "330057", + "ident": "NG-0008", + "type": "closed", + "name": "Suntai Airstrip", + "latitude_deg": "7.909458", + "longitude_deg": "10.374472", + "elevation_ft": "475", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-TA", + "municipality": "Suntai", + "scheduled_service": "no" + }, + { + "id": "341525", + "ident": "NG-0009", + "type": "heliport", + "name": "Nigeria LNG Helipad", + "latitude_deg": "4.38406", + "longitude_deg": "7.18491", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-RI", + "municipality": "Bonny", + "scheduled_service": "no" + }, + { + "id": "341526", + "ident": "NG-0010", + "type": "heliport", + "name": "Mazi Alex Otti Heliport", + "latitude_deg": "5.38936", + "longitude_deg": "7.90098", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-AB", + "municipality": "Arochukwu", + "scheduled_service": "no" + }, + { + "id": "341527", + "ident": "NG-0011", + "type": "heliport", + "name": "Shell Industrial Area Heliport", + "latitude_deg": "4.82821", + "longitude_deg": "7.03292", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-RI", + "municipality": "Port Harcourt", + "scheduled_service": "no" + }, + { + "id": "341528", + "ident": "NG-0012", + "type": "heliport", + "name": "Agip Heliport", + "latitude_deg": "4.7992", + "longitude_deg": "6.97343", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-RI", + "municipality": "Port Harcourt", + "scheduled_service": "no" + }, + { + "id": "341529", + "ident": "NG-0013", + "type": "heliport", + "name": "Exxon Mobil Aba Road Estate Heliport", + "latitude_deg": "4.86782", + "longitude_deg": "7.08422", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-RI", + "municipality": "Port Harcourt", + "scheduled_service": "no" + }, + { + "id": "341639", + "ident": "NG-0014", + "type": "heliport", + "name": "Daura Heliport", + "latitude_deg": "13.05149", + "longitude_deg": "8.30958", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-KT", + "municipality": "Daura", + "scheduled_service": "no" + }, + { + "id": "341640", + "ident": "NG-0015", + "type": "heliport", + "name": "Olusegun Obasanjo Presidential Library Abeokuta Helipad", + "latitude_deg": "7.12457", + "longitude_deg": "3.36565", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-OG", + "municipality": "Abeokuta", + "scheduled_service": "no" + }, + { + "id": "341641", + "ident": "NG-0016", + "type": "heliport", + "name": "June 12 Cultural Centre Abeokuta Helipad", + "latitude_deg": "7.1356", + "longitude_deg": "3.35426", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-OG", + "municipality": "Abeokuta", + "scheduled_service": "no" + }, + { + "id": "341643", + "ident": "NG-0018", + "type": "heliport", + "name": "Otuoke Heliport", + "latitude_deg": "4.78744", + "longitude_deg": "6.29216", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-BY", + "municipality": "Otuoke", + "scheduled_service": "no" + }, + { + "id": "341644", + "ident": "NG-0019", + "type": "heliport", + "name": "Yenagoa Heliport", + "latitude_deg": "4.95212", + "longitude_deg": "6.2714", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-BY", + "municipality": "Yenagoa", + "scheduled_service": "no" + }, + { + "id": "341690", + "ident": "NG-0020", + "type": "heliport", + "name": "Aso Rock Heliport", + "latitude_deg": "9.060744", + "longitude_deg": "7.515767", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-FC", + "municipality": "Abuja", + "scheduled_service": "no" + }, + { + "id": "341691", + "ident": "NG-0021", + "type": "heliport", + "name": "Maryland Heliport", + "latitude_deg": "6.572639", + "longitude_deg": "3.366441", + "elevation_ft": "95", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-LA", + "municipality": "Ikeja", + "scheduled_service": "no" + }, + { + "id": "341692", + "ident": "NG-0022", + "type": "heliport", + "name": "Moshood Abiola National Stadium Helipad", + "latitude_deg": "9.037663", + "longitude_deg": "7.450715", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-FC", + "municipality": "Abuja", + "scheduled_service": "no" + }, + { + "id": "341747", + "ident": "NG-0023", + "type": "heliport", + "name": "AMSH Helipad", + "latitude_deg": "7.601521", + "longitude_deg": "5.307133", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-EK", + "municipality": "Ado Ekiti", + "scheduled_service": "no" + }, + { + "id": "344673", + "ident": "NG-0024", + "type": "closed", + "name": "Bacita Airstrip", + "latitude_deg": "9.0421", + "longitude_deg": "4.9188", + "elevation_ft": "489", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-KW", + "municipality": "Bacita", + "scheduled_service": "no" + }, + { + "id": "352638", + "ident": "NG-0025", + "type": "heliport", + "name": "Forçados Terminal Heliport", + "latitude_deg": "5.35986", + "longitude_deg": "5.35239", + "elevation_ft": "11", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-DE", + "municipality": "Forçados", + "scheduled_service": "no" + }, + { + "id": "30689", + "ident": "NG-BCU", + "type": "small_airport", + "name": "Bauchi Airport", + "latitude_deg": "10.294402", + "longitude_deg": "9.816672", + "elevation_ft": "1998", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-BA", + "municipality": "Bauchi", + "scheduled_service": "no", + "gps_code": "DNBA", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=26", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bauchi_Airport", + "keywords": "BCU" + }, + { + "id": "32192", + "ident": "NG-QRW", + "type": "medium_airport", + "name": "Warri Airport", + "latitude_deg": "5.59611", + "longitude_deg": "5.81778", + "elevation_ft": "242", + "continent": "AF", + "iso_country": "NG", + "iso_region": "NG-DE", + "municipality": "Warri", + "scheduled_service": "yes", + "gps_code": "DNSU", + "iata_code": "QRW", + "home_link": "http://www.faannigeria.org/nigeria-airport.php?airport=25", + "wikipedia_link": "https://en.wikipedia.org/wiki/Warri_Airport", + "keywords": "Osubi Airstrip, Shell" + }, + { + "id": "30611", + "ident": "NGAB", + "type": "small_airport", + "name": "Abaiang Airport", + "latitude_deg": "1.79861", + "longitude_deg": "173.041", + "elevation_ft": "26", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-G", + "municipality": "Abaiang", + "scheduled_service": "no", + "gps_code": "NGAB", + "iata_code": "ABF" + }, + { + "id": "30696", + "ident": "NGBR", + "type": "small_airport", + "name": "Beru Airport", + "latitude_deg": "-1.3547199964523315", + "longitude_deg": "176.0070037841797", + "elevation_ft": "6", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-G", + "municipality": "Beru", + "scheduled_service": "no", + "gps_code": "NGBR", + "iata_code": "BEZ" + }, + { + "id": "44571", + "ident": "NGFU", + "type": "medium_airport", + "name": "Funafuti International Airport", + "latitude_deg": "-8.525", + "longitude_deg": "179.195999", + "elevation_ft": "9", + "continent": "OC", + "iso_country": "TV", + "iso_region": "TV-FUN", + "municipality": "Funafuti", + "scheduled_service": "yes", + "gps_code": "NGFU", + "iata_code": "FUN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Funafuti_International_Airport" + }, + { + "id": "31784", + "ident": "NGKT", + "type": "small_airport", + "name": "Kuria Airport", + "latitude_deg": "0.2186110019683838", + "longitude_deg": "173.44200134277344", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-G", + "municipality": "Kuria", + "scheduled_service": "no", + "gps_code": "NGKT", + "iata_code": "KUC" + }, + { + "id": "31928", + "ident": "NGMA", + "type": "small_airport", + "name": "Maiana Airport", + "latitude_deg": "1.0036100149154663", + "longitude_deg": "173.031005859375", + "elevation_ft": "8", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-G", + "municipality": "Maiana", + "scheduled_service": "no", + "gps_code": "NGMA", + "iata_code": "MNK" + }, + { + "id": "32000", + "ident": "NGMK", + "type": "small_airport", + "name": "Marakei Airport", + "latitude_deg": "2.058609962463379", + "longitude_deg": "173.27099609375", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-G", + "municipality": "Marakei", + "scheduled_service": "no", + "gps_code": "NGMK", + "iata_code": "MZK" + }, + { + "id": "31962", + "ident": "NGMN", + "type": "small_airport", + "name": "Makin Island Airport", + "latitude_deg": "3.3744399547576904", + "longitude_deg": "172.99200439453125", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-G", + "municipality": "Makin Island", + "scheduled_service": "no", + "gps_code": "NGMN", + "iata_code": "MTK" + }, + { + "id": "32029", + "ident": "NGNU", + "type": "small_airport", + "name": "Nikunau Airport", + "latitude_deg": "-1.31444001198", + "longitude_deg": "176.410003662", + "elevation_ft": "6", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-G", + "municipality": "Nikunau", + "scheduled_service": "no", + "gps_code": "NGNU", + "iata_code": "NIG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nikunau_Airport" + }, + { + "id": "32120", + "ident": "NGON", + "type": "small_airport", + "name": "Onotoa Airport", + "latitude_deg": "-1.7961100339889526", + "longitude_deg": "175.5260009765625", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-G", + "municipality": "Onotoa", + "scheduled_service": "no", + "gps_code": "NGON", + "iata_code": "OOT" + }, + { + "id": "356247", + "ident": "NGR", + "type": "closed", + "name": "Ningerum Airstrip", + "latitude_deg": "-5.669808", + "longitude_deg": "141.143214", + "elevation_ft": "299", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Ningerum", + "scheduled_service": "no", + "iata_code": "NGR", + "local_code": "NIN" + }, + { + "id": "4972", + "ident": "NGTA", + "type": "medium_airport", + "name": "Bonriki International Airport", + "latitude_deg": "1.38164", + "longitude_deg": "173.147003", + "elevation_ft": "9", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-G", + "municipality": "Tarawa", + "scheduled_service": "yes", + "gps_code": "NGTA", + "iata_code": "TRW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bonriki_International_Airport", + "keywords": "Bonriki, Mullinix" + }, + { + "id": "30619", + "ident": "NGTB", + "type": "small_airport", + "name": "Abemama Airport", + "latitude_deg": "0.490833", + "longitude_deg": "173.828995", + "elevation_ft": "8", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-G", + "municipality": "Abemama", + "scheduled_service": "no", + "gps_code": "NGTB", + "iata_code": "AEA" + }, + { + "id": "4973", + "ident": "NGTE", + "type": "medium_airport", + "name": "Tabiteuea North Airport", + "latitude_deg": "-1.2244700193405151", + "longitude_deg": "174.7760009765625", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-G", + "scheduled_service": "no", + "gps_code": "NGTE", + "iata_code": "TBF" + }, + { + "id": "32464", + "ident": "NGTM", + "type": "small_airport", + "name": "Tamana Island Airport", + "latitude_deg": "-2.485830068588257", + "longitude_deg": "175.97000122070312", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-G", + "municipality": "Tamana Island", + "scheduled_service": "no", + "gps_code": "NGTM", + "iata_code": "TMN" + }, + { + "id": "32043", + "ident": "NGTO", + "type": "small_airport", + "name": "Nonouti Airport", + "latitude_deg": "-0.6397219896316528", + "longitude_deg": "174.42799377441406", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-G", + "municipality": "Nonouti", + "scheduled_service": "no", + "gps_code": "NGTO", + "iata_code": "NON" + }, + { + "id": "30628", + "ident": "NGTR", + "type": "small_airport", + "name": "Arorae Island Airport", + "latitude_deg": "-2.61611008644104", + "longitude_deg": "176.80299377441406", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-G", + "municipality": "Arorae Island", + "scheduled_service": "no", + "gps_code": "NGTR", + "iata_code": "AIS" + }, + { + "id": "32479", + "ident": "NGTS", + "type": "small_airport", + "name": "Tabiteuea South Airport", + "latitude_deg": "-1.4744399785995483", + "longitude_deg": "175.06399536132812", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-G", + "municipality": "Tabiteuea South", + "scheduled_service": "no", + "gps_code": "NGTS", + "iata_code": "TSU" + }, + { + "id": "30681", + "ident": "NGTU", + "type": "small_airport", + "name": "Butaritari Airport", + "latitude_deg": "3.08583", + "longitude_deg": "172.811005", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-G", + "municipality": "Butaritari", + "scheduled_service": "yes", + "gps_code": "NGTU", + "iata_code": "BBG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Butaritari_Atoll_Airport", + "keywords": "Makin" + }, + { + "id": "30607", + "ident": "NGUK", + "type": "small_airport", + "name": "Aranuka Airport", + "latitude_deg": "0.185278", + "longitude_deg": "173.636993", + "elevation_ft": "6", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-G", + "municipality": "Buariki", + "scheduled_service": "yes", + "gps_code": "NGUK", + "iata_code": "AAK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aranuka_Airport", + "keywords": "Tarawa" + }, + { + "id": "321917", + "ident": "NH01", + "type": "seaplane_base", + "name": "Bellamy River Seaplane Base", + "latitude_deg": "43.1417917", + "longitude_deg": "-70.8462612", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Dover", + "scheduled_service": "no", + "gps_code": "NH01", + "local_code": "NH01" + }, + { + "id": "322129", + "ident": "NH02", + "type": "heliport", + "name": "Puzzo-Lakewood Heliport", + "latitude_deg": "43.482416", + "longitude_deg": "-71.2453056", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Alton", + "scheduled_service": "no", + "gps_code": "NH02", + "local_code": "NH02" + }, + { + "id": "324698", + "ident": "NH03", + "type": "heliport", + "name": "Granite Heliport", + "latitude_deg": "42.794167", + "longitude_deg": "-71.367778", + "elevation_ft": "217", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Hudson", + "scheduled_service": "no", + "gps_code": "NH03", + "local_code": "NH03" + }, + { + "id": "329017", + "ident": "NH04", + "type": "heliport", + "name": "Ciardelli Field Heliport", + "latitude_deg": "42.8057966", + "longitude_deg": "-71.618797", + "elevation_ft": "458", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "NH04", + "local_code": "NH04" + }, + { + "id": "324606", + "ident": "NH05", + "type": "heliport", + "name": "Seacoast Helicopters West Heliport", + "latitude_deg": "42.899444", + "longitude_deg": "-71.646666", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Mont Vernon", + "scheduled_service": "no", + "gps_code": "NH05", + "local_code": "NH05" + }, + { + "id": "22971", + "ident": "NH06", + "type": "heliport", + "name": "Dynasty Farms Heliport", + "latitude_deg": "42.80339813232422", + "longitude_deg": "-71.18280029296875", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "NH06", + "local_code": "NH06" + }, + { + "id": "22972", + "ident": "NH07", + "type": "small_airport", + "name": "Cooper Farm Airport", + "latitude_deg": "43.280399322509766", + "longitude_deg": "-71.45659637451172", + "elevation_ft": "485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Loudon", + "scheduled_service": "no", + "gps_code": "NH07", + "local_code": "NH07" + }, + { + "id": "322644", + "ident": "NH08", + "type": "heliport", + "name": "Marbina Woods Heliport", + "latitude_deg": "44.693292", + "longitude_deg": "-71.575008", + "elevation_ft": "1429", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "North Stratford", + "scheduled_service": "no", + "gps_code": "NH08", + "local_code": "NH08", + "keywords": "NHPAD Heliport" + }, + { + "id": "22973", + "ident": "NH09", + "type": "heliport", + "name": "Seabrook Station Heliport", + "latitude_deg": "42.89590072631836", + "longitude_deg": "-70.86119842529297", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Seabrook", + "scheduled_service": "no", + "gps_code": "NH09", + "local_code": "NH09" + }, + { + "id": "322809", + "ident": "NH10", + "type": "heliport", + "name": "Springfield Cove Heliport", + "latitude_deg": "43.560239", + "longitude_deg": "-71.194936", + "elevation_ft": "528", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Wolfeboro", + "scheduled_service": "no", + "gps_code": "NH10", + "local_code": "NH10" + }, + { + "id": "322802", + "ident": "NH11", + "type": "heliport", + "name": "Swain Hill Heliport", + "latitude_deg": "43.961", + "longitude_deg": "-71.8888333", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Warren", + "scheduled_service": "no", + "gps_code": "NH11", + "local_code": "NH11" + }, + { + "id": "321939", + "ident": "NH12", + "type": "seaplane_base", + "name": "Evans Seaplane Base", + "latitude_deg": "43.038295", + "longitude_deg": "-71.468561", + "elevation_ft": "182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Manchester", + "scheduled_service": "no", + "gps_code": "NH12", + "local_code": "NH12" + }, + { + "id": "22974", + "ident": "NH13", + "type": "heliport", + "name": "Concord Hospital Heliport", + "latitude_deg": "43.19729995727539", + "longitude_deg": "-71.56060028076172", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "NH13", + "local_code": "NH13" + }, + { + "id": "323295", + "ident": "NH14", + "type": "heliport", + "name": "Parker International Heliport", + "latitude_deg": "42.929442", + "longitude_deg": "-71.860833", + "elevation_ft": "1065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Greenfield", + "scheduled_service": "no", + "gps_code": "NH14", + "local_code": "NH14" + }, + { + "id": "22975", + "ident": "NH15", + "type": "small_airport", + "name": "Locke Lake Airport", + "latitude_deg": "43.38669967651367", + "longitude_deg": "-71.2333984375", + "elevation_ft": "702", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Barnstead", + "scheduled_service": "no", + "gps_code": "NH15", + "local_code": "NH15" + }, + { + "id": "22976", + "ident": "NH16", + "type": "small_airport", + "name": "Brookline Airport", + "latitude_deg": "42.741798", + "longitude_deg": "-71.707603", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Brookline", + "scheduled_service": "no", + "gps_code": "NH16", + "local_code": "NH16" + }, + { + "id": "22977", + "ident": "NH17", + "type": "small_airport", + "name": "Zim Airport", + "latitude_deg": "42.72760009765625", + "longitude_deg": "-71.71759796142578", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Mason", + "scheduled_service": "no", + "gps_code": "NH17", + "local_code": "NH17" + }, + { + "id": "22978", + "ident": "NH18", + "type": "small_airport", + "name": "Chickville Airport", + "latitude_deg": "43.73339844", + "longitude_deg": "-71.15119934", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Center Ossipee", + "scheduled_service": "no", + "gps_code": "NH18", + "local_code": "NH18" + }, + { + "id": "22979", + "ident": "NH19", + "type": "heliport", + "name": "Air-Wood Heliport", + "latitude_deg": "43.54309844970703", + "longitude_deg": "-72.35230255126953", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Plainfield", + "scheduled_service": "no", + "gps_code": "NH19", + "local_code": "NH19" + }, + { + "id": "22980", + "ident": "NH20", + "type": "small_airport", + "name": "Ward Field", + "latitude_deg": "43.4922981262207", + "longitude_deg": "-71.6458969116211", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Sanbornton", + "scheduled_service": "no", + "gps_code": "NH20", + "local_code": "NH20" + }, + { + "id": "22981", + "ident": "NH21", + "type": "heliport", + "name": "Abbott Heliport", + "latitude_deg": "44.148101806640625", + "longitude_deg": "-71.16809844970703", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "NH21", + "local_code": "NH21" + }, + { + "id": "22982", + "ident": "NH22", + "type": "heliport", + "name": "Lancaster Heliport", + "latitude_deg": "44.503700256347656", + "longitude_deg": "-71.56929779052734", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "NH22", + "local_code": "NH22" + }, + { + "id": "322812", + "ident": "NH23", + "type": "heliport", + "name": "Cottage Hospital Heliport", + "latitude_deg": "44.135409", + "longitude_deg": "-72.024478", + "elevation_ft": "551", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Woodsville", + "scheduled_service": "no", + "gps_code": "NH23", + "local_code": "NH23" + }, + { + "id": "22983", + "ident": "NH24", + "type": "heliport", + "name": "Prescott Hill Heliport", + "latitude_deg": "43.5452995300293", + "longitude_deg": "-71.99610137939453", + "elevation_ft": "1460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Grafton", + "scheduled_service": "no", + "gps_code": "NH24", + "local_code": "NH24" + }, + { + "id": "22984", + "ident": "NH25", + "type": "closed", + "name": "Flying H Skyport Airport", + "latitude_deg": "43.686699", + "longitude_deg": "-71.2892", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Melvin Village", + "scheduled_service": "no", + "keywords": "NH25" + }, + { + "id": "22985", + "ident": "NH26", + "type": "heliport", + "name": "Dragonwings Heliport", + "latitude_deg": "42.96730041503906", + "longitude_deg": "-71.57279968261719", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Bedford", + "scheduled_service": "no", + "gps_code": "NH26", + "local_code": "NH26" + }, + { + "id": "346700", + "ident": "NH27", + "type": "heliport", + "name": "Huggins Hospital Heliport", + "latitude_deg": "43.582252", + "longitude_deg": "-71.201706", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Wolfeboro", + "scheduled_service": "no", + "gps_code": "NH27", + "local_code": "NH27" + }, + { + "id": "28131", + "ident": "NH28", + "type": "heliport", + "name": "Hillsboro Ford Heliport", + "latitude_deg": "43.1100006104", + "longitude_deg": "-71.9172973633", + "elevation_ft": "551", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "NH28", + "local_code": "NH28" + }, + { + "id": "22986", + "ident": "NH29", + "type": "heliport", + "name": "Hollander's Heliport", + "latitude_deg": "43.582000732421875", + "longitude_deg": "-72.2031021118164", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Plainfield", + "scheduled_service": "no", + "gps_code": "NH29", + "local_code": "NH29" + }, + { + "id": "354676", + "ident": "NH30", + "type": "seaplane_base", + "name": "Avery Point Airport", + "latitude_deg": "43.675523", + "longitude_deg": "-71.402759", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Moultonborough", + "scheduled_service": "no", + "gps_code": "NH30", + "local_code": "NH30" + }, + { + "id": "22987", + "ident": "NH31", + "type": "small_airport", + "name": "Mountain View Field", + "latitude_deg": "43.65010070800781", + "longitude_deg": "-71.14949798583984", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Wolfeboro", + "scheduled_service": "no", + "gps_code": "NH31", + "local_code": "NH31" + }, + { + "id": "22988", + "ident": "NH32", + "type": "heliport", + "name": "Bentley Heliport", + "latitude_deg": "42.98149871826172", + "longitude_deg": "-70.918701171875", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Exeter", + "scheduled_service": "no", + "gps_code": "NH32", + "local_code": "NH32" + }, + { + "id": "22989", + "ident": "NH33", + "type": "heliport", + "name": "Brigham Heliport", + "latitude_deg": "43.195899963378906", + "longitude_deg": "-71.47730255126953", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Pembroke", + "scheduled_service": "no", + "gps_code": "NH33", + "local_code": "NH33" + }, + { + "id": "22990", + "ident": "NH34", + "type": "closed", + "name": "Wharf Heliport", + "latitude_deg": "43.084", + "longitude_deg": "-70.761398", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Portsmouth", + "scheduled_service": "no", + "keywords": "NH34" + }, + { + "id": "22991", + "ident": "NH35", + "type": "heliport", + "name": "Liberty Lane Heliport", + "latitude_deg": "42.950389", + "longitude_deg": "-70.85659", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Hampton", + "scheduled_service": "no", + "gps_code": "NH35", + "local_code": "NH35", + "keywords": "Fisher Scientific Heliport" + }, + { + "id": "324650", + "ident": "NH36", + "type": "heliport", + "name": "Weeks Medical Center Heliport", + "latitude_deg": "44.4865", + "longitude_deg": "-71.554", + "elevation_ft": "1009", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "NH36", + "local_code": "NH36" + }, + { + "id": "22992", + "ident": "NH37", + "type": "heliport", + "name": "Southern Nh Medical Center Heliport", + "latitude_deg": "42.75579833984375", + "longitude_deg": "-71.46199798583984", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Nashua", + "scheduled_service": "no", + "gps_code": "NH37", + "local_code": "NH37" + }, + { + "id": "22993", + "ident": "NH38", + "type": "small_airport", + "name": "Leavitt Airport", + "latitude_deg": "43.972599029541016", + "longitude_deg": "-71.1697998046875", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "NH38", + "local_code": "NH38" + }, + { + "id": "22994", + "ident": "NH39", + "type": "small_airport", + "name": "Frank D. Comerford Airport", + "latitude_deg": "43.03340148925781", + "longitude_deg": "-72.42980194091797", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Walpole", + "scheduled_service": "no", + "gps_code": "NH39", + "local_code": "NH39" + }, + { + "id": "22995", + "ident": "NH40", + "type": "small_airport", + "name": "Eagles Nest Airport", + "latitude_deg": "43.404701232910156", + "longitude_deg": "-71.95040130615234", + "elevation_ft": "998", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "New London", + "scheduled_service": "no", + "gps_code": "NH40", + "local_code": "NH40" + }, + { + "id": "22996", + "ident": "NH41", + "type": "heliport", + "name": "Merrimack Heliport", + "latitude_deg": "42.81700134277344", + "longitude_deg": "-71.50530242919922", + "elevation_ft": "209", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Merrimack", + "scheduled_service": "no", + "gps_code": "NH41", + "local_code": "NH41" + }, + { + "id": "22997", + "ident": "NH42", + "type": "heliport", + "name": "C.S.S. Heliport", + "latitude_deg": "42.73680114746094", + "longitude_deg": "-71.48149871826172", + "elevation_ft": "212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Nashua", + "scheduled_service": "no", + "gps_code": "NH42", + "local_code": "NH42" + }, + { + "id": "22998", + "ident": "NH43", + "type": "small_airport", + "name": "Murphy-Sherwood Park Airport", + "latitude_deg": "43.179501", + "longitude_deg": "-71.137001", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "West Nottingham", + "scheduled_service": "no", + "gps_code": "NH43", + "local_code": "NH43" + }, + { + "id": "22999", + "ident": "NH44", + "type": "heliport", + "name": "Dean Kamen Heliport", + "latitude_deg": "42.91669845581055", + "longitude_deg": "-71.51210021972656", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Bedford", + "scheduled_service": "no", + "gps_code": "NH44", + "local_code": "NH44" + }, + { + "id": "23000", + "ident": "NH45", + "type": "heliport", + "name": "Foss Heliport", + "latitude_deg": "42.937599182128906", + "longitude_deg": "-70.84259796142578", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Hampton", + "scheduled_service": "no", + "gps_code": "NH45", + "local_code": "NH45" + }, + { + "id": "23001", + "ident": "NH46", + "type": "heliport", + "name": "Austin's Landing Heliport", + "latitude_deg": "42.979801177978516", + "longitude_deg": "-71.69560241699219", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "New Boston", + "scheduled_service": "no", + "gps_code": "NH46", + "local_code": "NH46" + }, + { + "id": "324840", + "ident": "NH47", + "type": "heliport", + "name": "Monadnock Community Hospital Heliport", + "latitude_deg": "42.892515", + "longitude_deg": "-71.941116", + "elevation_ft": "806", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Peterborough", + "scheduled_service": "no", + "gps_code": "NH47", + "local_code": "NH47", + "keywords": "NH95" + }, + { + "id": "23002", + "ident": "NH48", + "type": "closed", + "name": "Springfield Point Heliport", + "latitude_deg": "43.557898", + "longitude_deg": "-71.191704", + "elevation_ft": "504", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Wolfeboro", + "scheduled_service": "no", + "keywords": "NH48" + }, + { + "id": "23003", + "ident": "NH49", + "type": "small_airport", + "name": "Bradley Field", + "latitude_deg": "43.969262", + "longitude_deg": "-71.680758", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Woodstock", + "scheduled_service": "no", + "gps_code": "NH49", + "local_code": "NH49" + }, + { + "id": "23004", + "ident": "NH50", + "type": "heliport", + "name": "Gordon Brown Heliport", + "latitude_deg": "42.841800689697266", + "longitude_deg": "-71.15950012207031", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Atkinson", + "scheduled_service": "no", + "gps_code": "NH50", + "local_code": "NH50" + }, + { + "id": "23005", + "ident": "NH51", + "type": "heliport", + "name": "Wickson Heliport", + "latitude_deg": "44.15589904785156", + "longitude_deg": "-71.15689849853516", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "NH51", + "local_code": "NH51" + }, + { + "id": "23006", + "ident": "NH52", + "type": "heliport", + "name": "Waste Heliport", + "latitude_deg": "43.205101013183594", + "longitude_deg": "-71.48419952392578", + "elevation_ft": "332", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "NH52", + "local_code": "NH52" + }, + { + "id": "23007", + "ident": "NH53", + "type": "heliport", + "name": "Norden Systems Heliport", + "latitude_deg": "42.83089828491211", + "longitude_deg": "-71.51090240478516", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Merrimack", + "scheduled_service": "no", + "gps_code": "NH53", + "local_code": "NH53" + }, + { + "id": "322343", + "ident": "NH54", + "type": "heliport", + "name": "Parkland Medical Center Heliport", + "latitude_deg": "42.877169", + "longitude_deg": "-71.315345", + "elevation_ft": "274", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Derry", + "scheduled_service": "no", + "gps_code": "NH54", + "local_code": "NH54" + }, + { + "id": "23008", + "ident": "NH55", + "type": "heliport", + "name": "Chopper One Heliport", + "latitude_deg": "42.84700012207031", + "longitude_deg": "-71.21890258789062", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Derry", + "scheduled_service": "no", + "gps_code": "NH55", + "local_code": "NH55" + }, + { + "id": "23009", + "ident": "NH56", + "type": "heliport", + "name": "Wentworth-Douglass Heliport", + "latitude_deg": "43.21289825439453", + "longitude_deg": "-70.87339782714844", + "elevation_ft": "149", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Dover", + "scheduled_service": "no", + "gps_code": "NH56", + "local_code": "NH56" + }, + { + "id": "23010", + "ident": "NH57", + "type": "heliport", + "name": "Exeter Hospital Heliport", + "latitude_deg": "42.981998443603516", + "longitude_deg": "-70.93620300292969", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Exeter", + "scheduled_service": "no", + "gps_code": "NH57", + "local_code": "NH57" + }, + { + "id": "23011", + "ident": "NH58", + "type": "heliport", + "name": "D.W. Heliport", + "latitude_deg": "43.41790008544922", + "longitude_deg": "-71.6447982788086", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "NH58", + "local_code": "NH58" + }, + { + "id": "23012", + "ident": "NH59", + "type": "heliport", + "name": "Speedway Heliport", + "latitude_deg": "43.365097", + "longitude_deg": "-71.459469", + "elevation_ft": "491", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Loudon", + "scheduled_service": "no", + "gps_code": "NH59", + "local_code": "NH59" + }, + { + "id": "23013", + "ident": "NH60", + "type": "small_airport", + "name": "Huff Memorial Airport", + "latitude_deg": "42.958877", + "longitude_deg": "-71.653126", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "New Boston", + "scheduled_service": "no", + "gps_code": "NH60", + "local_code": "NH60" + }, + { + "id": "23014", + "ident": "NH61", + "type": "small_airport", + "name": "Heaton Airport", + "latitude_deg": "42.968101501464844", + "longitude_deg": "-71.18119812011719", + "elevation_ft": "188", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Chester", + "scheduled_service": "no", + "gps_code": "NH61", + "local_code": "NH61" + }, + { + "id": "23015", + "ident": "NH62", + "type": "closed", + "name": "Millipore Heliport", + "latitude_deg": "42.798698", + "longitude_deg": "-71.982903", + "elevation_ft": "1132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Jaffrey", + "scheduled_service": "no", + "keywords": "NH62" + }, + { + "id": "23016", + "ident": "NH63", + "type": "heliport", + "name": "Weston Street Heliport", + "latitude_deg": "42.866798400899995", + "longitude_deg": "-71.2180023193", + "elevation_ft": "224", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Derry", + "scheduled_service": "no", + "gps_code": "NH63", + "local_code": "NH63" + }, + { + "id": "23017", + "ident": "NH64", + "type": "closed", + "name": "Pow-Wow Seaplane Base", + "latitude_deg": "42.9112", + "longitude_deg": "-71.033391", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Kingston", + "scheduled_service": "no", + "keywords": "NH64" + }, + { + "id": "23018", + "ident": "NH65", + "type": "heliport", + "name": "Dean Kamen Ii Heliport", + "latitude_deg": "42.922298431396484", + "longitude_deg": "-71.5083999633789", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Bedford", + "scheduled_service": "no", + "gps_code": "NH65", + "local_code": "NH65" + }, + { + "id": "23019", + "ident": "NH66", + "type": "heliport", + "name": "Temple Heliport", + "latitude_deg": "42.789798736572266", + "longitude_deg": "-71.83450317382812", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Temple", + "scheduled_service": "no", + "gps_code": "NH66", + "local_code": "NH66" + }, + { + "id": "23020", + "ident": "NH67", + "type": "small_airport", + "name": "Winterwood Airport", + "latitude_deg": "42.97840118408203", + "longitude_deg": "-71.0094985961914", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Brentwood", + "scheduled_service": "no", + "gps_code": "NH67", + "local_code": "NH67" + }, + { + "id": "23021", + "ident": "NH68", + "type": "seaplane_base", + "name": "Merrymeeting Lake Seaplane Base", + "latitude_deg": "43.47999954223633", + "longitude_deg": "-71.17019653320312", + "elevation_ft": "647", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "New Durham", + "scheduled_service": "no", + "gps_code": "NH68", + "local_code": "NH68" + }, + { + "id": "23022", + "ident": "NH69", + "type": "small_airport", + "name": "Windsock Village Airport", + "latitude_deg": "43.83060073852539", + "longitude_deg": "-71.18699645996094", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "West Ossipee", + "scheduled_service": "no", + "gps_code": "NH69", + "local_code": "NH69" + }, + { + "id": "23023", + "ident": "NH70", + "type": "heliport", + "name": "Forbes Heliport", + "latitude_deg": "44.04529953", + "longitude_deg": "-71.15779877", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "North Conway", + "scheduled_service": "no", + "gps_code": "NH70", + "local_code": "NH70" + }, + { + "id": "23024", + "ident": "NH71", + "type": "closed", + "name": "Loons Nest Seaplane Base", + "latitude_deg": "43.638214", + "longitude_deg": "-71.323212", + "elevation_ft": "504", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Tuftonboro", + "scheduled_service": "no", + "keywords": "NH71" + }, + { + "id": "23025", + "ident": "NH73", + "type": "heliport", + "name": "Meader's Heliport", + "latitude_deg": "43.79290008544922", + "longitude_deg": "-71.17729949951172", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Center Ossipee", + "scheduled_service": "no", + "gps_code": "NH73", + "local_code": "NH73" + }, + { + "id": "23026", + "ident": "NH74", + "type": "heliport", + "name": "Crowley Heliport", + "latitude_deg": "43.34090042114258", + "longitude_deg": "-71.47090148925781", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Loudon", + "scheduled_service": "no", + "gps_code": "NH74", + "local_code": "NH74" + }, + { + "id": "23027", + "ident": "NH75", + "type": "heliport", + "name": "Psnh Heliport", + "latitude_deg": "43.14509963989258", + "longitude_deg": "-71.47530364990234", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Bow", + "scheduled_service": "no", + "gps_code": "NH75", + "local_code": "NH75" + }, + { + "id": "23028", + "ident": "NH76", + "type": "small_airport", + "name": "Mason Airfield", + "latitude_deg": "42.729000091552734", + "longitude_deg": "-71.7842025756836", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Mason", + "scheduled_service": "no", + "gps_code": "NH76", + "local_code": "NH76" + }, + { + "id": "23029", + "ident": "NH77", + "type": "heliport", + "name": "Smiling Jack Heliport", + "latitude_deg": "43.62536", + "longitude_deg": "-71.56541", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Meredith", + "scheduled_service": "no", + "gps_code": "NH77", + "local_code": "NH77" + }, + { + "id": "23030", + "ident": "NH78", + "type": "small_airport", + "name": "Steck Farm Airport", + "latitude_deg": "42.74720001220703", + "longitude_deg": "-71.36920166015625", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Pelham", + "scheduled_service": "no", + "gps_code": "NH78", + "local_code": "NH78" + }, + { + "id": "23031", + "ident": "NH79", + "type": "heliport", + "name": "Falcon Station Heliport", + "latitude_deg": "43.04059982299805", + "longitude_deg": "-71.12560272216797", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "West Epping", + "scheduled_service": "no", + "gps_code": "NH79", + "local_code": "NH79" + }, + { + "id": "23032", + "ident": "NH80", + "type": "heliport", + "name": "Shanklin Heliport", + "latitude_deg": "42.825599670410156", + "longitude_deg": "-71.74169921875", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Wilton", + "scheduled_service": "no", + "gps_code": "NH80", + "local_code": "NH80" + }, + { + "id": "23033", + "ident": "NH81", + "type": "heliport", + "name": "Franklin Regional Hospital Heliport", + "latitude_deg": "43.44839859008789", + "longitude_deg": "-71.64620208740234", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "NH81", + "local_code": "NH81" + }, + { + "id": "23034", + "ident": "NH82", + "type": "heliport", + "name": "Dartmouth Hitchcock Medical Center Heliport", + "latitude_deg": "43.67670059", + "longitude_deg": "-72.270401", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "NH82", + "local_code": "NH82" + }, + { + "id": "23035", + "ident": "NH83", + "type": "heliport", + "name": "Chiefs Hut Heliport", + "latitude_deg": "43.109500885009766", + "longitude_deg": "-71.63839721679688", + "elevation_ft": "616", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Dunbarton", + "scheduled_service": "no", + "gps_code": "NH83", + "local_code": "NH83" + }, + { + "id": "23036", + "ident": "NH84", + "type": "small_airport", + "name": "Northwood Airport", + "latitude_deg": "43.20759963989258", + "longitude_deg": "-71.22119903564453", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Northwood", + "scheduled_service": "no", + "gps_code": "NH84", + "local_code": "NH84" + }, + { + "id": "23037", + "ident": "NH85", + "type": "heliport", + "name": "Sutton Heliport", + "latitude_deg": "44.033401", + "longitude_deg": "-71.1462", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "North Conway", + "scheduled_service": "no", + "gps_code": "NH85", + "local_code": "NH85", + "keywords": "Apte Heliport" + }, + { + "id": "23038", + "ident": "NH86", + "type": "small_airport", + "name": "Intervale Airport", + "latitude_deg": "43.17509841918945", + "longitude_deg": "-71.78730010986328", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Henniker", + "scheduled_service": "no", + "gps_code": "NH86", + "local_code": "NH86" + }, + { + "id": "23039", + "ident": "NH87", + "type": "heliport", + "name": "Blue Light Heliport", + "latitude_deg": "43.7338981628418", + "longitude_deg": "-71.6791000366211", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "NH87", + "local_code": "NH87" + }, + { + "id": "23040", + "ident": "NH88", + "type": "small_airport", + "name": "Country Club Air Park", + "latitude_deg": "43.067298889160156", + "longitude_deg": "-71.61119842529297", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Goffstown", + "scheduled_service": "no", + "gps_code": "NH88", + "local_code": "NH88" + }, + { + "id": "23041", + "ident": "NH91", + "type": "heliport", + "name": "Cheney Heliport", + "latitude_deg": "44.05030059814453", + "longitude_deg": "-71.17620086669922", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Hales Location", + "scheduled_service": "no", + "gps_code": "NH91", + "local_code": "NH91" + }, + { + "id": "23042", + "ident": "NH92", + "type": "heliport", + "name": "Littleton Hospital Heliport", + "latitude_deg": "44.31740189", + "longitude_deg": "-71.82649994", + "elevation_ft": "1155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Littleton", + "scheduled_service": "no", + "gps_code": "NH92", + "local_code": "NH92" + }, + { + "id": "23043", + "ident": "NH93", + "type": "heliport", + "name": "Sean Heliport", + "latitude_deg": "42.762901306152344", + "longitude_deg": "-71.31529998779297", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Pelham", + "scheduled_service": "no", + "gps_code": "NH93", + "local_code": "NH93" + }, + { + "id": "23044", + "ident": "NH94", + "type": "heliport", + "name": "Spring Creek Heliport", + "latitude_deg": "42.80780029296875", + "longitude_deg": "-71.68579864501953", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "NH94", + "local_code": "NH94" + }, + { + "id": "45529", + "ident": "NH96", + "type": "small_airport", + "name": "Wentworth Aerodrome Airport", + "latitude_deg": "43.873444", + "longitude_deg": "-71.904722", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Wentworth", + "scheduled_service": "no", + "gps_code": "NH96", + "local_code": "NH96" + }, + { + "id": "322297", + "ident": "NH98", + "type": "heliport", + "name": "Brady-Candia Heliport", + "latitude_deg": "43.044063", + "longitude_deg": "-71.316667", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Candia", + "scheduled_service": "no", + "gps_code": "NH98", + "local_code": "NH98" + }, + { + "id": "322641", + "ident": "NH99", + "type": "heliport", + "name": "New London Hospital Heliport", + "latitude_deg": "43.4200806", + "longitude_deg": "-71.9988583", + "elevation_ft": "1288", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "New London", + "scheduled_service": "no", + "gps_code": "NH99", + "local_code": "NH99" + }, + { + "id": "351336", + "ident": "NI-0001", + "type": "small_airport", + "name": "Santa Elena Airport", + "latitude_deg": "12.50328", + "longitude_deg": "-86.41501", + "elevation_ft": "153", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-LE", + "municipality": "Santa Elena", + "scheduled_service": "no" + }, + { + "id": "353395", + "ident": "NI-0002", + "type": "small_airport", + "name": "Malacataya Airport", + "latitude_deg": "12.15541", + "longitude_deg": "-85.84428", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-GR", + "municipality": "Malacataya", + "scheduled_service": "no" + }, + { + "id": "353396", + "ident": "NI-0003", + "type": "small_airport", + "name": "Aeroservicios ALA Airport", + "latitude_deg": "12.19348", + "longitude_deg": "-85.92086", + "elevation_ft": "167", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-GR", + "municipality": "Malacataya", + "scheduled_service": "no" + }, + { + "id": "353397", + "ident": "NI-0004", + "type": "small_airport", + "name": "Las Lajas Airport", + "latitude_deg": "12.15303", + "longitude_deg": "-85.90848", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-GR", + "municipality": "Malacataya", + "scheduled_service": "no" + }, + { + "id": "353398", + "ident": "NI-0005", + "type": "small_airport", + "name": "El Coyol Airport", + "latitude_deg": "12.22735", + "longitude_deg": "-85.92473", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-MN", + "municipality": "Tipitapa", + "scheduled_service": "no" + }, + { + "id": "353596", + "ident": "NI-0006", + "type": "small_airport", + "name": "La Esperanza Airport", + "latitude_deg": "11.31509", + "longitude_deg": "-85.90843", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-RI", + "municipality": "San Juan del Sur", + "scheduled_service": "no" + }, + { + "id": "353597", + "ident": "NI-0007", + "type": "small_airport", + "name": "Tierra Dorada Airport", + "latitude_deg": "12.25094", + "longitude_deg": "-83.75679", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-AS", + "municipality": "Kukra Hill", + "scheduled_service": "no" + }, + { + "id": "353600", + "ident": "NI-0008", + "type": "small_airport", + "name": "Las Parcelas Airport", + "latitude_deg": "12.35403", + "longitude_deg": "-86.78902", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-LE", + "municipality": "Las Parcelas", + "scheduled_service": "no" + }, + { + "id": "353601", + "ident": "NI-0009", + "type": "small_airport", + "name": "Las Chacaras Airport", + "latitude_deg": "12.37954", + "longitude_deg": "-86.82237", + "elevation_ft": "272", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-LE", + "municipality": "Las Chacaras", + "scheduled_service": "no" + }, + { + "id": "356443", + "ident": "NI-0010", + "type": "small_airport", + "name": "La Cicaya Airport", + "latitude_deg": "11.95437", + "longitude_deg": "-85.44539", + "continent": "NA", + "iso_country": "NI", + "iso_region": "NI-CO", + "municipality": "Hato Grande", + "scheduled_service": "no" + }, + { + "id": "331741", + "ident": "NIK", + "type": "small_airport", + "name": "Niokolo-Koba Airport", + "latitude_deg": "13.052014", + "longitude_deg": "-12.727162", + "elevation_ft": "285", + "continent": "AF", + "iso_country": "SN", + "iso_region": "SN-TC", + "municipality": "Niokolo-Koba National Park", + "scheduled_service": "no", + "iata_code": "NIK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Niokolo-Koba_Airport" + }, + { + "id": "23045", + "ident": "NIN", + "type": "small_airport", + "name": "Ninilchik Airport", + "latitude_deg": "60.020198822021484", + "longitude_deg": "-151.58900451660156", + "elevation_ft": "276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ninilchik", + "scheduled_service": "no", + "gps_code": "NIN", + "local_code": "NIN" + }, + { + "id": "4974", + "ident": "NIUE", + "type": "medium_airport", + "name": "Niue International Airport", + "latitude_deg": "-19.079030990600586", + "longitude_deg": "-169.92559814453125", + "elevation_ft": "209", + "continent": "OC", + "iso_country": "NU", + "iso_region": "NU-U-A", + "municipality": "Alofi", + "scheduled_service": "yes", + "gps_code": "NIUE", + "iata_code": "IUE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Niue_International_Airport", + "keywords": "Hanan International Airport" + }, + { + "id": "23046", + "ident": "NJ00", + "type": "seaplane_base", + "name": "Ridgefield Park Seaplane Base", + "latitude_deg": "40.84590148925781", + "longitude_deg": "-74.02870178222656", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Ridgefield Park", + "scheduled_service": "no", + "gps_code": "NJ00", + "local_code": "NJ00" + }, + { + "id": "346592", + "ident": "NJ01", + "type": "heliport", + "name": "Campbell's Soup Heliport", + "latitude_deg": "39.940467", + "longitude_deg": "-75.10668", + "elevation_ft": "1", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Camden", + "scheduled_service": "no", + "gps_code": "NJ01", + "local_code": "NJ01" + }, + { + "id": "23047", + "ident": "NJ02", + "type": "closed", + "name": "Alloway Airfield", + "latitude_deg": "39.541803", + "longitude_deg": "-75.304397", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Alloway", + "scheduled_service": "no", + "keywords": "NJ02" + }, + { + "id": "23048", + "ident": "NJ03", + "type": "closed", + "name": "S and C Echelon Heliport", + "latitude_deg": "39.852901", + "longitude_deg": "-74.999603", + "elevation_ft": "126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Ashland", + "scheduled_service": "no", + "keywords": "NJ03" + }, + { + "id": "23049", + "ident": "NJ04", + "type": "heliport", + "name": "At&T Cedarbrook Heliport", + "latitude_deg": "39.74589920043945", + "longitude_deg": "-74.92040252685547", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Atco", + "scheduled_service": "no", + "gps_code": "NJ04", + "local_code": "NJ04" + }, + { + "id": "23050", + "ident": "NJ05", + "type": "heliport", + "name": "Jersey Shore Medical Center Heliport", + "latitude_deg": "40.209776", + "longitude_deg": "-74.041067", + "elevation_ft": "104", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Neptune", + "scheduled_service": "no", + "gps_code": "NJ05", + "local_code": "NJ05" + }, + { + "id": "23051", + "ident": "NJ06", + "type": "small_airport", + "name": "B J Farms Airport", + "latitude_deg": "39.45759963989258", + "longitude_deg": "-75.27320098876953", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Shiloh", + "scheduled_service": "no", + "gps_code": "NJ06", + "local_code": "NJ06" + }, + { + "id": "23052", + "ident": "NJ07", + "type": "closed", + "name": "Newport Meadows Seaplane Base", + "latitude_deg": "39.433399", + "longitude_deg": "-75.402397", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Canton Lower Alloway Creek", + "scheduled_service": "no", + "keywords": "NJ07" + }, + { + "id": "23053", + "ident": "NJ08", + "type": "heliport", + "name": "Stone Harbor Golf Club Heliport", + "latitude_deg": "39.1068000793457", + "longitude_deg": "-74.80789947509766", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Cape May Court House", + "scheduled_service": "no", + "gps_code": "NJ08", + "local_code": "NJ08" + }, + { + "id": "23054", + "ident": "NJ09", + "type": "small_airport", + "name": "Matthews Airport", + "latitude_deg": "40.79180145263672", + "longitude_deg": "-75.07039642333984", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Belvidere", + "scheduled_service": "no", + "gps_code": "NJ09", + "local_code": "NJ09" + }, + { + "id": "23055", + "ident": "NJ10", + "type": "heliport", + "name": "Dayton Heliport", + "latitude_deg": "40.372811", + "longitude_deg": "-74.517375", + "elevation_ft": "104", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "South Brunswick", + "scheduled_service": "no", + "gps_code": "NJ10", + "local_code": "NJ10" + }, + { + "id": "23056", + "ident": "NJ11", + "type": "closed", + "name": "Mc Donoughs Heliport", + "latitude_deg": "40.972301", + "longitude_deg": "-74.940201", + "elevation_ft": "352", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Blairstown", + "scheduled_service": "no", + "keywords": "NJ11" + }, + { + "id": "23057", + "ident": "NJ12", + "type": "heliport", + "name": "New Jersey State Police Bloomfield Heliport", + "latitude_deg": "40.838153", + "longitude_deg": "-74.178625", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bloomfield", + "scheduled_service": "no", + "gps_code": "NJ12", + "local_code": "NJ12" + }, + { + "id": "23058", + "ident": "NJ13", + "type": "heliport", + "name": "Newbold Island Heliport", + "latitude_deg": "40.12620162963867", + "longitude_deg": "-74.26460266113281", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bordentown", + "scheduled_service": "no", + "gps_code": "NJ13", + "local_code": "NJ13" + }, + { + "id": "23059", + "ident": "NJ14", + "type": "closed", + "name": "Logan Plant Heliport", + "latitude_deg": "39.786214", + "longitude_deg": "-75.349077", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bridgeport", + "scheduled_service": "no", + "keywords": "NJ14" + }, + { + "id": "23060", + "ident": "NJ15", + "type": "heliport", + "name": "Burlington Generating Station Heliport", + "latitude_deg": "40.073699951171875", + "longitude_deg": "-74.87460327148438", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "NJ15", + "local_code": "NJ15" + }, + { + "id": "23061", + "ident": "NJ16", + "type": "small_airport", + "name": "Sliker Strip", + "latitude_deg": "40.749066667", + "longitude_deg": "-74.862786111", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Califon", + "scheduled_service": "no", + "gps_code": "NJ16", + "local_code": "NJ16" + }, + { + "id": "23062", + "ident": "NJ17", + "type": "heliport", + "name": "Cooper University Hospital Kelemen Heliport", + "latitude_deg": "39.940771", + "longitude_deg": "-75.116272", + "elevation_ft": "172", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Camden", + "scheduled_service": "no", + "gps_code": "NJ17", + "local_code": "NJ17", + "keywords": "Cooper Medical Center Heliport" + }, + { + "id": "23063", + "ident": "NJ18", + "type": "closed", + "name": "Our Lady of Lourdes Hospital Heliport", + "latitude_deg": "39.9268", + "longitude_deg": "-75.097397", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Camden", + "scheduled_service": "no", + "keywords": "NJ18" + }, + { + "id": "23064", + "ident": "NJ19", + "type": "heliport", + "name": "Deborah Heart & Lung Center Heliport", + "latitude_deg": "39.978588", + "longitude_deg": "-74.584149", + "elevation_ft": "103", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Browns Mills", + "scheduled_service": "no", + "gps_code": "NJ19", + "local_code": "NJ19" + }, + { + "id": "23065", + "ident": "NJ20", + "type": "small_airport", + "name": "Coyle Field", + "latitude_deg": "39.812599182128906", + "longitude_deg": "-74.42459869384766", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Chatsworth", + "scheduled_service": "no", + "gps_code": "NJ20", + "local_code": "NJ20" + }, + { + "id": "23066", + "ident": "NJ21", + "type": "closed", + "name": "Cherry Hill Inn Heliport", + "latitude_deg": "39.933399", + "longitude_deg": "-75.032997", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Cherry Hill", + "scheduled_service": "no", + "keywords": "NJ21" + }, + { + "id": "23067", + "ident": "NJ22", + "type": "heliport", + "name": "Hackensack Medical Center Heliport", + "latitude_deg": "40.88399887084961", + "longitude_deg": "-74.05599975585938", + "elevation_ft": "159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Hackensack", + "scheduled_service": "no", + "gps_code": "NJ22", + "local_code": "NJ22" + }, + { + "id": "23068", + "ident": "NJ23", + "type": "heliport", + "name": "Colgate Palmolive Heliport", + "latitude_deg": "40.03710174560547", + "longitude_deg": "-74.84320068359375", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Willingboro", + "scheduled_service": "no", + "gps_code": "NJ23", + "local_code": "NJ23" + }, + { + "id": "23069", + "ident": "NJ24", + "type": "small_airport", + "name": "Warren Grove Range Airport", + "latitude_deg": "39.701138", + "longitude_deg": "-74.404382", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bass River", + "scheduled_service": "no", + "gps_code": "NJ24", + "local_code": "NJ24" + }, + { + "id": "23070", + "ident": "NJ25", + "type": "small_airport", + "name": "Peaslees Airstrip", + "latitude_deg": "39.78929901123047", + "longitude_deg": "-75.2291030883789", + "elevation_ft": "99", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Clarksboro", + "scheduled_service": "no", + "gps_code": "NJ25", + "local_code": "NJ25" + }, + { + "id": "23071", + "ident": "NJ26", + "type": "heliport", + "name": "Hoffmann-La Roche Inc Heliport", + "latitude_deg": "40.834800720214844", + "longitude_deg": "-74.15260314941406", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Clifton", + "scheduled_service": "no", + "gps_code": "NJ26", + "local_code": "NJ26" + }, + { + "id": "23072", + "ident": "NJ27", + "type": "heliport", + "name": "Wrnj Heliport", + "latitude_deg": "40.846500396728516", + "longitude_deg": "-74.8041000366211", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Long Valley", + "scheduled_service": "no", + "gps_code": "NJ27", + "local_code": "NJ27" + }, + { + "id": "23073", + "ident": "NJ28", + "type": "heliport", + "name": "Nws Earle Heliport", + "latitude_deg": "40.25429916381836", + "longitude_deg": "-74.16899871826172", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Colts Neck", + "scheduled_service": "no", + "gps_code": "NJ28", + "local_code": "NJ28" + }, + { + "id": "23074", + "ident": "NJ29", + "type": "heliport", + "name": "South County Heliport", + "latitude_deg": "40.30009841918945", + "longitude_deg": "-74.53289794921875", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Cranbury", + "scheduled_service": "no", + "gps_code": "NJ29", + "local_code": "NJ29" + }, + { + "id": "23075", + "ident": "NJ30", + "type": "small_airport", + "name": "Paruszewski Farm Strip", + "latitude_deg": "39.530799865722656", + "longitude_deg": "-75.47720336914062", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "NJ30", + "local_code": "NJ30" + }, + { + "id": "23076", + "ident": "NJ31", + "type": "closed", + "name": "Arneytown Veteran's Cemetary Heliport", + "latitude_deg": "40.100705", + "longitude_deg": "-74.566001", + "elevation_ft": "154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Arneytown", + "scheduled_service": "no", + "keywords": "NJ31" + }, + { + "id": "23077", + "ident": "NJ32", + "type": "heliport", + "name": "Deepwater Station Heliport", + "latitude_deg": "39.68339920043945", + "longitude_deg": "-75.51629638671875", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Deepwater", + "scheduled_service": "no", + "gps_code": "NJ32", + "local_code": "NJ32" + }, + { + "id": "23078", + "ident": "NJ33", + "type": "heliport", + "name": "Darst Heliport", + "latitude_deg": "40.96979904174805", + "longitude_deg": "-74.9573974609375", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Blairstown", + "scheduled_service": "no", + "gps_code": "NJ33", + "local_code": "NJ33" + }, + { + "id": "23079", + "ident": "NJ34", + "type": "balloonport", + "name": "P & A Deptford Heliport", + "latitude_deg": "39.844601", + "longitude_deg": "-75.091301", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Deptford", + "scheduled_service": "no", + "keywords": "NJ34" + }, + { + "id": "23080", + "ident": "NJ35", + "type": "heliport", + "name": "Chem-Fleur Helistop", + "latitude_deg": "40.70199966430664", + "longitude_deg": "-74.13240051269531", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Newark", + "scheduled_service": "no", + "gps_code": "NJ35", + "local_code": "NJ35" + }, + { + "id": "23081", + "ident": "NJ36", + "type": "heliport", + "name": "Soverel Park Heliport", + "latitude_deg": "40.782901763916016", + "longitude_deg": "-74.21820068359375", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "East Orange", + "scheduled_service": "no", + "gps_code": "NJ36", + "local_code": "NJ36" + }, + { + "id": "23082", + "ident": "NJ37", + "type": "heliport", + "name": "Elmwood Park Heliport", + "latitude_deg": "40.75339889526367", + "longitude_deg": "-74.21710205078125", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "East Orange", + "scheduled_service": "no", + "gps_code": "NJ37", + "local_code": "NJ37" + }, + { + "id": "23083", + "ident": "NJ38", + "type": "heliport", + "name": "Martens Stadium Heliport", + "latitude_deg": "40.77399826049805", + "longitude_deg": "-74.20929718017578", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "East Orange", + "scheduled_service": "no", + "gps_code": "NJ38", + "local_code": "NJ38" + }, + { + "id": "23084", + "ident": "NJ39", + "type": "closed", + "name": "Oval Park Heliport", + "latitude_deg": "40.759838", + "longitude_deg": "-74.201188", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "East Orange", + "scheduled_service": "no", + "keywords": "NJ39" + }, + { + "id": "23085", + "ident": "NJ40", + "type": "heliport", + "name": "Hovtown Heliport", + "latitude_deg": "40.21929931640625", + "longitude_deg": "-74.09400177001953", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Tinton Falls", + "scheduled_service": "no", + "gps_code": "NJ40", + "local_code": "NJ40" + }, + { + "id": "23086", + "ident": "NJ41", + "type": "heliport", + "name": "Hudson Farm West Heliport", + "latitude_deg": "40.9879", + "longitude_deg": "-74.725197", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Andover", + "scheduled_service": "no", + "gps_code": "NJ41", + "local_code": "NJ41", + "keywords": "Westby Heliport" + }, + { + "id": "23087", + "ident": "NJ42", + "type": "closed", + "name": "Mosquito Commission Headquarters Heliport", + "latitude_deg": "40.28965", + "longitude_deg": "-74.094082", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Eatontown", + "scheduled_service": "no", + "keywords": "NJ42" + }, + { + "id": "23088", + "ident": "NJ43", + "type": "heliport", + "name": "Frigidaire Company Heliport", + "latitude_deg": "40.526798248291016", + "longitude_deg": "-74.3821029663086", + "elevation_ft": "124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Edison", + "scheduled_service": "no", + "gps_code": "NJ43", + "local_code": "NJ43" + }, + { + "id": "23089", + "ident": "NJ44", + "type": "heliport", + "name": "Liberty Hall Heliport", + "latitude_deg": "40.67509841918945", + "longitude_deg": "-74.24539947509766", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Elizabeth", + "scheduled_service": "no", + "gps_code": "NJ44", + "local_code": "NJ44" + }, + { + "id": "23090", + "ident": "NJ45", + "type": "closed", + "name": "City of Bridgeton Heliport", + "latitude_deg": "39.427898", + "longitude_deg": "-75.230698", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bridgeton", + "scheduled_service": "no", + "keywords": "NJ45" + }, + { + "id": "23091", + "ident": "NJ46", + "type": "small_airport", + "name": "Mar Bar L Farms Airport", + "latitude_deg": "40.276995", + "longitude_deg": "-74.387874", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Manalapan Township", + "scheduled_service": "no", + "gps_code": "NJ46", + "local_code": "NJ46" + }, + { + "id": "23092", + "ident": "NJ47", + "type": "small_airport", + "name": "Teeny Weeny Acres Airport", + "latitude_deg": "40.51679992675781", + "longitude_deg": "-74.88289642333984", + "elevation_ft": "565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Flemington", + "scheduled_service": "no", + "gps_code": "NJ47", + "local_code": "NJ47" + }, + { + "id": "23093", + "ident": "NJ48", + "type": "heliport", + "name": "Golden Nugget Atlantic City Heliport", + "latitude_deg": "39.379908", + "longitude_deg": "-74.426806", + "elevation_ft": "104", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Atlantic City", + "scheduled_service": "no", + "gps_code": "NJ48", + "local_code": "NJ48", + "keywords": "Trump's Castle Heliport" + }, + { + "id": "23094", + "ident": "NJ49", + "type": "closed", + "name": "Bradford Field", + "latitude_deg": "40.5007", + "longitude_deg": "-74.956001", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Flemington", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bradford_Field_(New_Jersey)", + "keywords": "NJ49" + }, + { + "id": "23095", + "ident": "NJ50", + "type": "small_airport", + "name": "The Landing Airport", + "latitude_deg": "40.4807014465", + "longitude_deg": "-74.96179962160001", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Flemington", + "scheduled_service": "no", + "gps_code": "NJ50", + "local_code": "NJ50" + }, + { + "id": "23096", + "ident": "NJ51", + "type": "heliport", + "name": "Florham Park Heliport", + "latitude_deg": "40.7918", + "longitude_deg": "-74.382894", + "elevation_ft": "186", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Florham Park", + "scheduled_service": "no", + "gps_code": "NJ51", + "local_code": "NJ51", + "keywords": "Prudential/Florham Park Heliport" + }, + { + "id": "23097", + "ident": "NJ52", + "type": "closed", + "name": "Folsom Airport", + "latitude_deg": "39.60042", + "longitude_deg": "-74.8322", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Folsom", + "scheduled_service": "no", + "keywords": "NJ52" + }, + { + "id": "23098", + "ident": "NJ53", + "type": "heliport", + "name": "NJ Hwy Auth-Admin Bldg Helispot", + "latitude_deg": "40.537300109899995", + "longitude_deg": "-74.2982025146", + "elevation_ft": "112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Fords", + "scheduled_service": "no", + "gps_code": "NJ53", + "local_code": "NJ53" + }, + { + "id": "23099", + "ident": "NJ54", + "type": "heliport", + "name": "George Washington Bridge Heliport", + "latitude_deg": "40.850101470947266", + "longitude_deg": "-73.96620178222656", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Fort Lee", + "scheduled_service": "no", + "gps_code": "NJ54", + "local_code": "NJ54" + }, + { + "id": "23100", + "ident": "NJ55", + "type": "heliport", + "name": "Greely Helipad Heliport", + "latitude_deg": "40.31679916381836", + "longitude_deg": "-74.03289794921875", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Fort Monmouth", + "scheduled_service": "no", + "gps_code": "NJ55", + "local_code": "NJ55" + }, + { + "id": "23101", + "ident": "NJ56", + "type": "heliport", + "name": "Charles Wood Helipad Heliport", + "latitude_deg": "40.29570007324219", + "longitude_deg": "-74.08319854736328", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Fort Monmouth", + "scheduled_service": "no", + "gps_code": "NJ56", + "local_code": "NJ56" + }, + { + "id": "23102", + "ident": "NJ57", + "type": "heliport", + "name": "Steeplechase Pier Heliport", + "latitude_deg": "39.35710144042969", + "longitude_deg": "-74.42019653320312", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Atlantic City", + "scheduled_service": "no", + "gps_code": "NJ57", + "local_code": "NJ57" + }, + { + "id": "23103", + "ident": "NJ58", + "type": "closed", + "name": "Nordheim Flying K Airpark", + "latitude_deg": "39.392601", + "longitude_deg": "-74.6063", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bargaintown", + "scheduled_service": "no", + "keywords": "NJ58" + }, + { + "id": "23104", + "ident": "NJ59", + "type": "small_airport", + "name": "Ekdahl Airport", + "latitude_deg": "40.182899475097656", + "longitude_deg": "-74.27880096435547", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Freehold", + "scheduled_service": "no", + "gps_code": "NJ59", + "local_code": "NJ59" + }, + { + "id": "23105", + "ident": "NJ60", + "type": "small_airport", + "name": "Cuddihy Landing Strip", + "latitude_deg": "40.18709945678711", + "longitude_deg": "-74.26709747314453", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Freehold", + "scheduled_service": "no", + "gps_code": "NJ60", + "local_code": "NJ60" + }, + { + "id": "23106", + "ident": "NJ61", + "type": "small_airport", + "name": "Malone Airport", + "latitude_deg": "40.541116", + "longitude_deg": "-75.024292", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Frenchtown", + "scheduled_service": "no", + "gps_code": "NJ61", + "local_code": "NJ61" + }, + { + "id": "23107", + "ident": "NJ62", + "type": "heliport", + "name": "Lz 1 Nldc Heliport", + "latitude_deg": "39.890098571777344", + "longitude_deg": "-74.58209991455078", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "New Lisbon", + "scheduled_service": "no", + "gps_code": "NJ62", + "local_code": "NJ62" + }, + { + "id": "23108", + "ident": "NJ63", + "type": "small_airport", + "name": "Eagles Lair Airport", + "latitude_deg": "40.467899322509766", + "longitude_deg": "-75.05039978027344", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Frenchtown", + "scheduled_service": "no", + "gps_code": "NJ63", + "local_code": "NJ63" + }, + { + "id": "23109", + "ident": "NJ64", + "type": "closed", + "name": "Reeder Airport", + "latitude_deg": "39.7057", + "longitude_deg": "-75.0802", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Glassboro", + "scheduled_service": "no", + "keywords": "NJ64" + }, + { + "id": "23110", + "ident": "NJ65", + "type": "small_airport", + "name": "John E. Rogers Airport", + "latitude_deg": "40.854501", + "longitude_deg": "-74.928005", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Great Meadows", + "scheduled_service": "no", + "gps_code": "NJ65", + "local_code": "NJ65" + }, + { + "id": "23111", + "ident": "NJ66", + "type": "closed", + "name": "Hackettstown Community Hospital Heliport", + "latitude_deg": "40.865398", + "longitude_deg": "-74.816299", + "elevation_ft": "612", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Hackettstown", + "scheduled_service": "no", + "keywords": "NJ66" + }, + { + "id": "23112", + "ident": "NJ67", + "type": "closed", + "name": "Caputo Helistop", + "latitude_deg": "39.880901", + "longitude_deg": "-74.994904", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Cherry Hill", + "scheduled_service": "no", + "keywords": "NJ67" + }, + { + "id": "23113", + "ident": "NJ68", + "type": "closed", + "name": "Getty Avenue Lot Heliport", + "latitude_deg": "40.902901", + "longitude_deg": "-74.166298", + "elevation_ft": "124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Paterson", + "scheduled_service": "no", + "keywords": "NJ68" + }, + { + "id": "23114", + "ident": "NJ69", + "type": "small_airport", + "name": "Ideal Mfg Corp Airport", + "latitude_deg": "39.65850067138672", + "longitude_deg": "-74.80239868164062", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Hammonton", + "scheduled_service": "no", + "gps_code": "NJ69", + "local_code": "NJ69" + }, + { + "id": "23115", + "ident": "NJ70", + "type": "heliport", + "name": "Northwest Gas Division Elizabethtown Gas Heliport", + "latitude_deg": "40.7209014893", + "longitude_deg": "-74.9723968506", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Hampton", + "scheduled_service": "no", + "gps_code": "NJ70", + "local_code": "NJ70" + }, + { + "id": "23116", + "ident": "NJ71", + "type": "heliport", + "name": "Holmansville Heliport", + "latitude_deg": "40.100101470947266", + "longitude_deg": "-74.31759643554688", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Holmansville", + "scheduled_service": "no", + "gps_code": "NJ71", + "local_code": "NJ71" + }, + { + "id": "23117", + "ident": "NJ72", + "type": "small_airport", + "name": "Hop Brook Farm Airport", + "latitude_deg": "40.351200103759766", + "longitude_deg": "-74.1812973022461", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Holmdel", + "scheduled_service": "no", + "gps_code": "NJ72", + "local_code": "NJ72" + }, + { + "id": "23118", + "ident": "NJ73", + "type": "heliport", + "name": "State Police Holmdel Helispot Heliport", + "latitude_deg": "40.3942985534668", + "longitude_deg": "-74.1792984008789", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Holmdel", + "scheduled_service": "no", + "gps_code": "NJ73", + "local_code": "NJ73" + }, + { + "id": "23119", + "ident": "NJ74", + "type": "small_airport", + "name": "Salem Airfield", + "latitude_deg": "39.562599182128906", + "longitude_deg": "-75.44960021972656", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "NJ74", + "local_code": "NJ74" + }, + { + "id": "23120", + "ident": "NJ75", + "type": "small_airport", + "name": "Werner Private Airport", + "latitude_deg": "40.350101470947266", + "longitude_deg": "-74.36630249023438", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Jamesburg", + "scheduled_service": "no", + "gps_code": "NJ75", + "local_code": "NJ75" + }, + { + "id": "23121", + "ident": "NJ76", + "type": "heliport", + "name": "Hq 78th Division Heliport", + "latitude_deg": "40.52450180053711", + "longitude_deg": "-74.42569732666016", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Edison", + "scheduled_service": "no", + "gps_code": "NJ76", + "local_code": "NJ76" + }, + { + "id": "42785", + "ident": "NJ77", + "type": "heliport", + "name": "Warren County Public Safety Department", + "latitude_deg": "40.74100113", + "longitude_deg": "-75.02149963", + "elevation_ft": "411", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "NJ77", + "local_code": "NJ77" + }, + { + "id": "23123", + "ident": "NJ78", + "type": "heliport", + "name": "Kearny Helistop", + "latitude_deg": "40.73699951171875", + "longitude_deg": "-74.0968017578125", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Kearny", + "scheduled_service": "no", + "gps_code": "NJ78", + "local_code": "NJ78" + }, + { + "id": "23124", + "ident": "NJ79", + "type": "small_airport", + "name": "Goat Hill Airport", + "latitude_deg": "40.35150146484375", + "longitude_deg": "-74.9093017578125", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Lambertville", + "scheduled_service": "no", + "gps_code": "NJ79", + "local_code": "NJ79" + }, + { + "id": "23125", + "ident": "NJ80", + "type": "heliport", + "name": "Seton Hall Heliport", + "latitude_deg": "40.7401008605957", + "longitude_deg": "-74.24849700927734", + "elevation_ft": "247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "South Orange", + "scheduled_service": "no", + "gps_code": "NJ80", + "local_code": "NJ80" + }, + { + "id": "23126", + "ident": "NJ81", + "type": "small_airport", + "name": "Free Spirit Airport", + "latitude_deg": "39.442298889160156", + "longitude_deg": "-74.94270324707031", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Vineland", + "scheduled_service": "no", + "gps_code": "NJ81", + "local_code": "NJ81" + }, + { + "id": "23127", + "ident": "NJ82", + "type": "heliport", + "name": "Bayway Refinery Heliport", + "latitude_deg": "40.636199951171875", + "longitude_deg": "-74.23429870605469", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Linden", + "scheduled_service": "no", + "gps_code": "NJ82", + "local_code": "NJ82" + }, + { + "id": "23128", + "ident": "NJ83", + "type": "heliport", + "name": "American Cyanamid Linden Heliport", + "latitude_deg": "40.600101470947266", + "longitude_deg": "-74.19960021972656", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Linden", + "scheduled_service": "no", + "gps_code": "NJ83", + "local_code": "NJ83" + }, + { + "id": "23129", + "ident": "NJ84", + "type": "small_airport", + "name": "Hidden Acres Farm Airport", + "latitude_deg": "39.433101654052734", + "longitude_deg": "-75.39669799804688", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bridgeton", + "scheduled_service": "no", + "gps_code": "NJ84", + "local_code": "NJ84" + }, + { + "id": "23130", + "ident": "NJ85", + "type": "heliport", + "name": "Atrium At Somerset Heliport", + "latitude_deg": "40.536800384521484", + "longitude_deg": "-74.52239990234375", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "NJ85", + "local_code": "NJ85" + }, + { + "id": "23131", + "ident": "NJ86", + "type": "closed", + "name": "Pacemaker Heliport", + "latitude_deg": "39.608501", + "longitude_deg": "-74.5718", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Lower Bank", + "scheduled_service": "no", + "keywords": "NJ86" + }, + { + "id": "23132", + "ident": "NJ87", + "type": "heliport", + "name": "University Hospital Rooftop Heliport", + "latitude_deg": "40.7408471", + "longitude_deg": "-74.1908417", + "elevation_ft": "237", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Newark", + "scheduled_service": "no", + "gps_code": "NJ87", + "local_code": "NJ87", + "keywords": "Univ of Medicine & Dentistry Rooftop Heliport" + }, + { + "id": "23133", + "ident": "NJ88", + "type": "heliport", + "name": "Tgp-325 Heliport", + "latitude_deg": "41.24589920043945", + "longitude_deg": "-74.64679718017578", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Sussex", + "scheduled_service": "no", + "gps_code": "NJ88", + "local_code": "NJ88" + }, + { + "id": "23134", + "ident": "NJ89", + "type": "heliport", + "name": "Southern Ocean Medical Center Heliport", + "latitude_deg": "39.72087", + "longitude_deg": "-74.28312", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Manahawkin", + "scheduled_service": "no", + "gps_code": "NJ89", + "local_code": "NJ89", + "keywords": "Southern Ocean County Hospital Heliport" + }, + { + "id": "23135", + "ident": "NJ90", + "type": "heliport", + "name": "Iff R & D Heliport", + "latitude_deg": "40.44029998779297", + "longitude_deg": "-74.15670013427734", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Union Beach", + "scheduled_service": "no", + "gps_code": "NJ90", + "local_code": "NJ90" + }, + { + "id": "23136", + "ident": "NJ91", + "type": "heliport", + "name": "National Starch and Chemical County Heliport", + "latitude_deg": "40.554298400878906", + "longitude_deg": "-74.57879638671875", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Finderne", + "scheduled_service": "no", + "gps_code": "NJ91", + "local_code": "NJ91" + }, + { + "id": "23137", + "ident": "NJ92", + "type": "heliport", + "name": "St Benedict's Heliport", + "latitude_deg": "40.73590087890625", + "longitude_deg": "-74.1771011352539", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Newark", + "scheduled_service": "no", + "gps_code": "NJ92", + "local_code": "NJ92" + }, + { + "id": "23138", + "ident": "NJ93", + "type": "heliport", + "name": "Alexanders-Menlo Park Heliport", + "latitude_deg": "40.547298431396484", + "longitude_deg": "-74.34130096435547", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Menlo Park", + "scheduled_service": "no", + "gps_code": "NJ93", + "local_code": "NJ93" + }, + { + "id": "23139", + "ident": "NJ94", + "type": "heliport", + "name": "C and T Helistop", + "latitude_deg": "39.95009994506836", + "longitude_deg": "-75.04959869384766", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Merchantville", + "scheduled_service": "no", + "gps_code": "NJ94", + "local_code": "NJ94" + }, + { + "id": "23140", + "ident": "NJ95", + "type": "small_airport", + "name": "Herr Brothers Airport", + "latitude_deg": "40.55569839477539", + "longitude_deg": "-75.07240295410156", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "NJ95", + "local_code": "NJ95" + }, + { + "id": "23141", + "ident": "NJ96", + "type": "closed", + "name": "Als Landing Strip", + "latitude_deg": "39.526199", + "longitude_deg": "-74.956596", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Minotola", + "scheduled_service": "no", + "keywords": "NJ96" + }, + { + "id": "23142", + "ident": "NJ97", + "type": "heliport", + "name": "New Jersey Turnpike Authority Heliport", + "latitude_deg": "39.956094", + "longitude_deg": "-74.919714", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Mount Laurel Township", + "scheduled_service": "no", + "gps_code": "NJ97", + "local_code": "NJ97", + "keywords": "New Jersey State Police Moorestown" + }, + { + "id": "23143", + "ident": "NJ98", + "type": "closed", + "name": "Zitone Airport", + "latitude_deg": "41.316374", + "longitude_deg": "-74.738356", + "elevation_ft": "587", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Montague", + "scheduled_service": "no", + "keywords": "NJ98" + }, + { + "id": "324691", + "ident": "NJ99", + "type": "heliport", + "name": "Vonage Heliport", + "latitude_deg": "40.349527", + "longitude_deg": "-74.190584", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Holmdel", + "scheduled_service": "no", + "gps_code": "NJ99", + "local_code": "NJ99" + }, + { + "id": "344104", + "ident": "NJJ", + "type": "small_airport", + "name": "Nenjiang Melgen Airport", + "latitude_deg": "49.236372", + "longitude_deg": "125.337052", + "elevation_ft": "800", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Heihe", + "scheduled_service": "no", + "iata_code": "NJJ" + }, + { + "id": "23144", + "ident": "NK0", + "type": "seaplane_base", + "name": "Maus Marineland Seaplane Base", + "latitude_deg": "42.810298919677734", + "longitude_deg": "-76.31079864501953", + "elevation_ft": "863", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "New Hope", + "scheduled_service": "no", + "gps_code": "NK0", + "local_code": "NK0" + }, + { + "id": "23145", + "ident": "NK01", + "type": "small_airport", + "name": "Countryman's Landing Strip", + "latitude_deg": "43.9995002746582", + "longitude_deg": "-75.60489654541016", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Carthage", + "scheduled_service": "no", + "gps_code": "NK01", + "local_code": "NK01" + }, + { + "id": "23146", + "ident": "NK04", + "type": "small_airport", + "name": "Shepard Airport", + "latitude_deg": "43.250099182128906", + "longitude_deg": "-75.99960327148438", + "elevation_ft": "463", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Constantia", + "scheduled_service": "no", + "gps_code": "NK04", + "local_code": "NK04" + }, + { + "id": "23147", + "ident": "NK05", + "type": "small_airport", + "name": "Tom N' Jerry Airport", + "latitude_deg": "42.354801177978516", + "longitude_deg": "-76.51609802246094", + "elevation_ft": "1490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Danby", + "scheduled_service": "no", + "gps_code": "NK05", + "local_code": "NK05" + }, + { + "id": "23148", + "ident": "NK06", + "type": "closed", + "name": "S.O.P. Airport", + "latitude_deg": "42.096199", + "longitude_deg": "-73.8554", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Germantown", + "scheduled_service": "no", + "gps_code": "NK06", + "local_code": "NK06" + }, + { + "id": "23149", + "ident": "NK07", + "type": "small_airport", + "name": "Big Island Airport", + "latitude_deg": "41.32789993286133", + "longitude_deg": "-74.40989685058594", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Goshen", + "scheduled_service": "no", + "gps_code": "NK07", + "local_code": "NK07" + }, + { + "id": "23150", + "ident": "NK08", + "type": "small_airport", + "name": "Sheeley's Farm Airport", + "latitude_deg": "41.8317985534668", + "longitude_deg": "-74.12989807128906", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "High Falls", + "scheduled_service": "no", + "gps_code": "NK08", + "local_code": "NK08" + }, + { + "id": "23151", + "ident": "NK09", + "type": "small_airport", + "name": "Eagle Ridge Airport", + "latitude_deg": "42.405601501464844", + "longitude_deg": "-76.82050323486328", + "elevation_ft": "1480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Burdett", + "scheduled_service": "no", + "gps_code": "NK09", + "local_code": "NK09" + }, + { + "id": "23152", + "ident": "NK10", + "type": "heliport", + "name": "D C Helicopters Heliport", + "latitude_deg": "42.49169921875", + "longitude_deg": "-77.50779724121094", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Cohocton", + "scheduled_service": "no", + "gps_code": "NK10", + "local_code": "NK10" + }, + { + "id": "23153", + "ident": "NK11", + "type": "heliport", + "name": "Troop B. Headquarters Heliport", + "latitude_deg": "44.30120086669922", + "longitude_deg": "-74.08070373535156", + "elevation_ft": "1663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Saranac Lake", + "scheduled_service": "no", + "gps_code": "NK11", + "local_code": "NK11" + }, + { + "id": "23154", + "ident": "NK12", + "type": "closed", + "name": "Donnelly Airport", + "latitude_deg": "42.770518", + "longitude_deg": "-78.542258", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Wales Center", + "scheduled_service": "no", + "keywords": "NK12" + }, + { + "id": "23155", + "ident": "NK13", + "type": "seaplane_base", + "name": "Snyder's Lake Seaplane Base", + "latitude_deg": "42.65840148925781", + "longitude_deg": "-73.63849639892578", + "elevation_ft": "488", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Wynantskill", + "scheduled_service": "no", + "gps_code": "NK13", + "local_code": "NK13" + }, + { + "id": "23156", + "ident": "NK14", + "type": "heliport", + "name": "Little Falls Ems Heliport", + "latitude_deg": "42.04090118408203", + "longitude_deg": "-74.83679962158203", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Little Falls", + "scheduled_service": "no", + "gps_code": "NK14", + "local_code": "NK14" + }, + { + "id": "23157", + "ident": "NK15", + "type": "seaplane_base", + "name": "Seventh Lake Seaplane Base", + "latitude_deg": "43.742801666259766", + "longitude_deg": "-74.76190185546875", + "elevation_ft": "1785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Inlet", + "scheduled_service": "no", + "gps_code": "NK15", + "local_code": "NK15" + }, + { + "id": "23158", + "ident": "NK16", + "type": "small_airport", + "name": "Hendricks Field", + "latitude_deg": "44.368099212646484", + "longitude_deg": "-75.40239715576172", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Gouverneur", + "scheduled_service": "no", + "gps_code": "NK16", + "local_code": "NK16" + }, + { + "id": "45674", + "ident": "NK17", + "type": "small_airport", + "name": "August Field", + "latitude_deg": "43.209361", + "longitude_deg": "-73.581711", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Gansevoort", + "scheduled_service": "no", + "gps_code": "NK17", + "local_code": "NK17" + }, + { + "id": "351266", + "ident": "NK18", + "type": "heliport", + "name": "Peconic Bay Medical Center Heliport", + "latitude_deg": "40.935262", + "longitude_deg": "-72.673348", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Riverhead", + "scheduled_service": "no", + "gps_code": "NK18", + "local_code": "NK18" + }, + { + "id": "23159", + "ident": "NK19", + "type": "small_airport", + "name": "Potoczak Airport", + "latitude_deg": "43.06119918823242", + "longitude_deg": "-78.6613998413086", + "elevation_ft": "582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Clarence Center", + "scheduled_service": "no", + "gps_code": "NK19", + "local_code": "NK19" + }, + { + "id": "23160", + "ident": "NK22", + "type": "closed", + "name": "One Ten Heliport", + "latitude_deg": "40.7421", + "longitude_deg": "-73.421303", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Farmingdale", + "scheduled_service": "no", + "keywords": "NK22" + }, + { + "id": "45666", + "ident": "NK23", + "type": "heliport", + "name": "Tetz Landing Heliport", + "latitude_deg": "41.548667", + "longitude_deg": "-74.469722", + "elevation_ft": "961", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Bloomingburg", + "scheduled_service": "no", + "gps_code": "NK23", + "local_code": "NK23" + }, + { + "id": "23161", + "ident": "NK24", + "type": "small_airport", + "name": "Tilden Airport", + "latitude_deg": "42.3473014831543", + "longitude_deg": "-76.87879943847656", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Montour Falls", + "scheduled_service": "no", + "gps_code": "NK24", + "local_code": "NK24" + }, + { + "id": "23162", + "ident": "NK25", + "type": "small_airport", + "name": "Cambria Airport", + "latitude_deg": "43.194157", + "longitude_deg": "-78.799381", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Lockport", + "scheduled_service": "no", + "gps_code": "NK25", + "local_code": "NK25" + }, + { + "id": "45660", + "ident": "NK26", + "type": "small_airport", + "name": "Old Forge Airport", + "latitude_deg": "43.725183", + "longitude_deg": "-74.976217", + "elevation_ft": "1753", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Old Forge", + "scheduled_service": "no", + "gps_code": "NK26", + "local_code": "NK26" + }, + { + "id": "23163", + "ident": "NK27", + "type": "small_airport", + "name": "Hedge Hop Field", + "latitude_deg": "42.48899841308594", + "longitude_deg": "-78.63480377197266", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Springville", + "scheduled_service": "no", + "gps_code": "NK27", + "local_code": "NK27" + }, + { + "id": "23164", + "ident": "NK28", + "type": "heliport", + "name": "Tgp-254 Heliport", + "latitude_deg": "42.48149871826172", + "longitude_deg": "-73.56289672851562", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Nassau", + "scheduled_service": "no", + "gps_code": "NK28", + "local_code": "NK28" + }, + { + "id": "23165", + "ident": "NK29", + "type": "closed", + "name": "Southampton Village Heliport", + "latitude_deg": "40.845148", + "longitude_deg": "-72.465872", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Southampton", + "scheduled_service": "no", + "gps_code": "NK29", + "local_code": "NK29" + }, + { + "id": "23166", + "ident": "NK30", + "type": "seaplane_base", + "name": "Private Sealanes-Jamaica Bay Seaplane Base", + "latitude_deg": "40.60530090332031", + "longitude_deg": "-73.90229797363281", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Brooklyn", + "scheduled_service": "no", + "gps_code": "NK30", + "local_code": "NK30" + }, + { + "id": "23167", + "ident": "NK31", + "type": "small_airport", + "name": "Dawn Patrol Aviation Airport", + "latitude_deg": "43.269500732421875", + "longitude_deg": "-78.14530181884766", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Albion", + "scheduled_service": "no", + "gps_code": "NK31", + "local_code": "NK31" + }, + { + "id": "23168", + "ident": "NK32", + "type": "closed", + "name": "New York ARNG Heliport", + "latitude_deg": "42.666698", + "longitude_deg": "-73.832901", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "NK32", + "local_code": "NK32" + }, + { + "id": "23169", + "ident": "NK33", + "type": "heliport", + "name": "Ny State Police - Troop T Heliport", + "latitude_deg": "42.6166992188", + "longitude_deg": "-73.7828979492", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "NK33", + "local_code": "NK33" + }, + { + "id": "23170", + "ident": "NK34", + "type": "heliport", + "name": "St Luke's Memorial Hospital Heliport", + "latitude_deg": "43.09619903564453", + "longitude_deg": "-75.27629852294922", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Utica", + "scheduled_service": "no", + "gps_code": "NK34", + "local_code": "NK34" + }, + { + "id": "23171", + "ident": "NK37", + "type": "heliport", + "name": "Winthrop University Hospital Heliport", + "latitude_deg": "40.741798400878906", + "longitude_deg": "-73.64399719238281", + "elevation_ft": "156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Mineola", + "scheduled_service": "no", + "gps_code": "NK37", + "local_code": "NK37" + }, + { + "id": "23172", + "ident": "NK38", + "type": "heliport", + "name": "Parker's Landing Heliport", + "latitude_deg": "41.65449905395508", + "longitude_deg": "-74.1404037475586", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Gardiner", + "scheduled_service": "no", + "gps_code": "NK38", + "local_code": "NK38" + }, + { + "id": "23173", + "ident": "NK39", + "type": "heliport", + "name": "One Police Plaza Heliport", + "latitude_deg": "40.71260070800781", + "longitude_deg": "-73.99960327148438", + "elevation_ft": "244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "New York", + "scheduled_service": "no", + "gps_code": "NK39", + "local_code": "NK39" + }, + { + "id": "23174", + "ident": "NK40", + "type": "heliport", + "name": "Regeneron Campus Heliport", + "latitude_deg": "41.112805", + "longitude_deg": "-73.862833", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "North Tarrytown", + "scheduled_service": "no", + "gps_code": "NK40", + "local_code": "NK40", + "keywords": "IBM Mount Pleasant" + }, + { + "id": "23175", + "ident": "NK41", + "type": "closed", + "name": "Mather Heliport", + "latitude_deg": "40.939098", + "longitude_deg": "-73.054398", + "elevation_ft": "203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Port Jefferson", + "scheduled_service": "no", + "keywords": "NK41" + }, + { + "id": "23176", + "ident": "NK42", + "type": "heliport", + "name": "St John's Episcopal Hospital Heliport", + "latitude_deg": "40.86949920654297", + "longitude_deg": "-73.2218017578125", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Smithtown", + "scheduled_service": "no", + "gps_code": "NK42", + "local_code": "NK42" + }, + { + "id": "23177", + "ident": "NK43", + "type": "small_airport", + "name": "Jerry Phibbs Airport", + "latitude_deg": "42.753296", + "longitude_deg": "-73.916528", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Schenectady", + "scheduled_service": "no", + "gps_code": "NK43", + "local_code": "NK43" + }, + { + "id": "45549", + "ident": "NK44", + "type": "closed", + "name": "Bethlehem Energy Center Heliport", + "latitude_deg": "42.594861", + "longitude_deg": "-73.76625", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Glenmont", + "scheduled_service": "no", + "keywords": "NK44" + }, + { + "id": "23178", + "ident": "NK45", + "type": "heliport", + "name": "St Charles Hospital Heliport", + "latitude_deg": "40.94649887084961", + "longitude_deg": "-73.06089782714844", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Port Jefferson", + "scheduled_service": "no", + "gps_code": "NK45", + "local_code": "NK45" + }, + { + "id": "23179", + "ident": "NK47", + "type": "closed", + "name": "Dalrymples Airport", + "latitude_deg": "42.041698", + "longitude_deg": "-76.833", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Elmira", + "scheduled_service": "no", + "keywords": "NK47" + }, + { + "id": "23180", + "ident": "NK48", + "type": "heliport", + "name": "Eastern Long Island Heliport", + "latitude_deg": "41.10969924926758", + "longitude_deg": "-72.36000061035156", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Greenport", + "scheduled_service": "no", + "gps_code": "NK48", + "local_code": "NK48" + }, + { + "id": "23181", + "ident": "NK49", + "type": "heliport", + "name": "IBM Owego Heliport", + "latitude_deg": "42.102442", + "longitude_deg": "-76.222945", + "elevation_ft": "907", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Owego", + "scheduled_service": "no", + "gps_code": "NK49", + "local_code": "NK49" + }, + { + "id": "23182", + "ident": "NK50", + "type": "heliport", + "name": "St Mary's Hospital Elevated Heliport", + "latitude_deg": "42.954200744628906", + "longitude_deg": "-74.21540069580078", + "elevation_ft": "335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Amsterdam", + "scheduled_service": "no", + "gps_code": "NK50", + "local_code": "NK50" + }, + { + "id": "23183", + "ident": "NK52", + "type": "closed", + "name": "Connelly Field", + "latitude_deg": "42.085098", + "longitude_deg": "-76.921303", + "elevation_ft": "1525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Elmira", + "scheduled_service": "no", + "keywords": "NK52" + }, + { + "id": "23184", + "ident": "NK53", + "type": "small_airport", + "name": "Dodge/Coppola/Wheeler Airport", + "latitude_deg": "42.20560073852539", + "longitude_deg": "-76.77050018310547", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Sullivanville", + "scheduled_service": "no", + "gps_code": "NK53", + "local_code": "NK53" + }, + { + "id": "23185", + "ident": "NK54", + "type": "small_airport", + "name": "Matejka Field", + "latitude_deg": "42.176700592041016", + "longitude_deg": "-76.64109802246094", + "elevation_ft": "1690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Erin", + "scheduled_service": "no", + "gps_code": "NK54", + "local_code": "NK54" + }, + { + "id": "23186", + "ident": "NK55", + "type": "heliport", + "name": "Onondaga County Sheriff's Department Heliport", + "latitude_deg": "43.085046", + "longitude_deg": "-76.286897", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Warners", + "scheduled_service": "no", + "gps_code": "NK55", + "local_code": "NK55" + }, + { + "id": "23187", + "ident": "NK56", + "type": "heliport", + "name": "IBM Fishkill Plant Number 2 Heliport", + "latitude_deg": "41.5434", + "longitude_deg": "-73.819", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hopewell Junction", + "scheduled_service": "no", + "gps_code": "NK56", + "local_code": "NK56" + }, + { + "id": "23188", + "ident": "NK57", + "type": "heliport", + "name": "Ross Heliport", + "latitude_deg": "43.11949920654297", + "longitude_deg": "-78.93589782714844", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Niagara Falls", + "scheduled_service": "no", + "gps_code": "NK57", + "local_code": "NK57" + }, + { + "id": "23189", + "ident": "NK58", + "type": "heliport", + "name": "Gibraltar Heliport", + "latitude_deg": "42.52840042114258", + "longitude_deg": "-78.90730285644531", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hamburg", + "scheduled_service": "no", + "gps_code": "NK58", + "local_code": "NK58" + }, + { + "id": "23190", + "ident": "NK59", + "type": "closed", + "name": "Copake Lake Seaplane Base", + "latitude_deg": "42.143101", + "longitude_deg": "-73.591202", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Copake", + "scheduled_service": "no", + "keywords": "NK59" + }, + { + "id": "23191", + "ident": "NK60", + "type": "closed", + "name": "Bostrup's Landing Seaplane Base", + "latitude_deg": "43.484798", + "longitude_deg": "-74.351799", + "elevation_ft": "1725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Lake Pleasant", + "scheduled_service": "no", + "keywords": "NK60" + }, + { + "id": "23192", + "ident": "NK61", + "type": "heliport", + "name": "General Electric R&D Center Heliport", + "latitude_deg": "42.82699966430664", + "longitude_deg": "-73.87460327148438", + "elevation_ft": "354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Schenectady", + "scheduled_service": "no", + "gps_code": "NK61", + "local_code": "NK61" + }, + { + "id": "23193", + "ident": "NK63", + "type": "closed", + "name": "Mercy Hospital Heliport", + "latitude_deg": "42.841702", + "longitude_deg": "-78.799797", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Buffalo", + "scheduled_service": "no", + "keywords": "NK63" + }, + { + "id": "23194", + "ident": "NK64", + "type": "heliport", + "name": "Albany Medical Center Heliport", + "latitude_deg": "42.653692", + "longitude_deg": "-73.775366", + "elevation_ft": "209", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "NK64", + "local_code": "NK64", + "keywords": "AMCH Heliport" + }, + { + "id": "23195", + "ident": "NK65", + "type": "heliport", + "name": "H & H Aviation Service Inc. Heliport", + "latitude_deg": "42.4833984375", + "longitude_deg": "-79.07749938964844", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Forestville", + "scheduled_service": "no", + "gps_code": "NK65", + "local_code": "NK65" + }, + { + "id": "23196", + "ident": "NK68", + "type": "small_airport", + "name": "White Birch Airport", + "latitude_deg": "42.051627", + "longitude_deg": "-75.316823", + "elevation_ft": "1860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hancock", + "scheduled_service": "no", + "gps_code": "NK68", + "local_code": "NK68", + "keywords": "White Birch Field" + }, + { + "id": "23197", + "ident": "NK71", + "type": "small_airport", + "name": "Marcellus Airport", + "latitude_deg": "43.011199951171875", + "longitude_deg": "-76.34970092773438", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Marcellus", + "scheduled_service": "no", + "gps_code": "NK71", + "local_code": "NK71" + }, + { + "id": "23198", + "ident": "NK72", + "type": "small_airport", + "name": "James Henion Private Field", + "latitude_deg": "42.37620162963867", + "longitude_deg": "-76.53240203857422", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Ithaca", + "scheduled_service": "no", + "gps_code": "NK72", + "local_code": "NK72" + }, + { + "id": "23199", + "ident": "NK73", + "type": "closed", + "name": "Ciba-Geigy Heliport", + "latitude_deg": "41.118401", + "longitude_deg": "-74.1343", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Suffern", + "scheduled_service": "no", + "keywords": "NK73" + }, + { + "id": "23200", + "ident": "NK74", + "type": "small_airport", + "name": "Match Mate Airport", + "latitude_deg": "42.74449920654297", + "longitude_deg": "-76.6635971069336", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Aurora", + "scheduled_service": "no", + "gps_code": "NK74", + "local_code": "NK74" + }, + { + "id": "23201", + "ident": "NK75", + "type": "heliport", + "name": "Thomas E. Perdue Heliport", + "latitude_deg": "44.93669891357422", + "longitude_deg": "-74.90969848632812", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Massena", + "scheduled_service": "no", + "gps_code": "NK75", + "local_code": "NK75" + }, + { + "id": "23202", + "ident": "NK76", + "type": "small_airport", + "name": "Grammar Airport", + "latitude_deg": "42.88249969482422", + "longitude_deg": "-77.05169677734375", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Geneva", + "scheduled_service": "no", + "gps_code": "NK76", + "local_code": "NK76" + }, + { + "id": "23203", + "ident": "NK77", + "type": "heliport", + "name": "Niagara Falls Memorial Parking Ramp Heliport", + "latitude_deg": "43.09389877319336", + "longitude_deg": "-79.05120086669922", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Niagara Falls", + "scheduled_service": "no", + "gps_code": "NK77", + "local_code": "NK77" + }, + { + "id": "23204", + "ident": "NK78", + "type": "heliport", + "name": "GE Management Development Institute Heliport", + "latitude_deg": "41.187813", + "longitude_deg": "-73.86817", + "elevation_ft": "181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Ossining", + "scheduled_service": "no", + "gps_code": "NK78", + "local_code": "NK78" + }, + { + "id": "23205", + "ident": "NK79", + "type": "small_airport", + "name": "Lewis Landing Airport", + "latitude_deg": "41.418399810791016", + "longitude_deg": "-74.53240203857422", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Slate Hill", + "scheduled_service": "no", + "gps_code": "NK79", + "local_code": "NK79" + }, + { + "id": "23206", + "ident": "NK80", + "type": "heliport", + "name": "Rainbow Air Heliport", + "latitude_deg": "43.08890151977539", + "longitude_deg": "-79.06230163574219", + "elevation_ft": "583", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Niagara Falls", + "scheduled_service": "no", + "gps_code": "NK80", + "local_code": "NK80" + }, + { + "id": "23207", + "ident": "NK81", + "type": "small_airport", + "name": "Roberts Roost Airport", + "latitude_deg": "42.633399963378906", + "longitude_deg": "-78.35530090332031", + "elevation_ft": "1751", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Arcade", + "scheduled_service": "no", + "gps_code": "NK81", + "local_code": "NK81" + }, + { + "id": "23208", + "ident": "NK82", + "type": "small_airport", + "name": "Engineers Airport", + "latitude_deg": "43.31589889526367", + "longitude_deg": "-76.01490020751953", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Constantia", + "scheduled_service": "no", + "gps_code": "NK82", + "local_code": "NK82" + }, + { + "id": "23209", + "ident": "NK83", + "type": "small_airport", + "name": "Nettie's Place Airport", + "latitude_deg": "42.709876", + "longitude_deg": "-74.223701", + "elevation_ft": "1330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Delanson", + "scheduled_service": "no", + "gps_code": "NK83", + "local_code": "NK83", + "keywords": "Boss Airport" + }, + { + "id": "23210", + "ident": "NK84", + "type": "heliport", + "name": "Safe Flight Instrument Corporation Heliport", + "latitude_deg": "41.081568", + "longitude_deg": "-73.712997", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "White Plains", + "scheduled_service": "no", + "gps_code": "NK84", + "local_code": "NK84" + }, + { + "id": "23211", + "ident": "NK85", + "type": "heliport", + "name": "Harris Hill Heliport", + "latitude_deg": "41.24449920654297", + "longitude_deg": "-73.68009948730469", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Bedford Hills", + "scheduled_service": "no", + "gps_code": "NK85", + "local_code": "NK85" + }, + { + "id": "23212", + "ident": "NK86", + "type": "closed", + "name": "Doms Heliport", + "latitude_deg": "41.367163", + "longitude_deg": "-74.249414", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Chester", + "scheduled_service": "no", + "gps_code": "NK86", + "local_code": "NK86" + }, + { + "id": "23213", + "ident": "NK87", + "type": "small_airport", + "name": "Merkle Airport", + "latitude_deg": "43.06669998168945", + "longitude_deg": "-78.59970092773438", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Clarence Center", + "scheduled_service": "no", + "gps_code": "NK87", + "local_code": "NK87" + }, + { + "id": "23214", + "ident": "NK89", + "type": "small_airport", + "name": "Ultralight Flight Farm Ultralightport", + "latitude_deg": "42.29169845581055", + "longitude_deg": "-77.05799865722656", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Monterey", + "scheduled_service": "no", + "gps_code": "NK89", + "local_code": "NK89" + }, + { + "id": "23215", + "ident": "NK90", + "type": "heliport", + "name": "TLI Heliport", + "latitude_deg": "41.14725", + "longitude_deg": "-73.86931", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Ossining", + "scheduled_service": "no", + "gps_code": "NK90", + "local_code": "NK90" + }, + { + "id": "23216", + "ident": "NK91", + "type": "small_airport", + "name": "Boyle's Landing Airport", + "latitude_deg": "42.816200256347656", + "longitude_deg": "-74.62460327148438", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Sharon Springs", + "scheduled_service": "no", + "gps_code": "NK91", + "local_code": "NK91" + }, + { + "id": "23217", + "ident": "NK92", + "type": "heliport", + "name": "Eab Plaza Heliport", + "latitude_deg": "40.71950149536133", + "longitude_deg": "-73.58290100097656", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Uniondale", + "scheduled_service": "no", + "gps_code": "NK92", + "local_code": "NK92" + }, + { + "id": "23218", + "ident": "NK95", + "type": "heliport", + "name": "Bastek Heliport", + "latitude_deg": "41.320899963378906", + "longitude_deg": "-74.50430297851562", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Pine Island", + "scheduled_service": "no", + "gps_code": "NK95", + "local_code": "NK95" + }, + { + "id": "23219", + "ident": "NK96", + "type": "heliport", + "name": "St Francis Hospital Heliport", + "latitude_deg": "41.71856", + "longitude_deg": "-73.928587", + "elevation_ft": "163", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Poughkeepsie", + "scheduled_service": "no", + "gps_code": "NK96", + "local_code": "NK96" + }, + { + "id": "311151", + "ident": "NKD", + "type": "small_airport", + "name": "Sinak Airport", + "latitude_deg": "-3.822249", + "longitude_deg": "137.839208", + "elevation_ft": "7334", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Sinak", + "scheduled_service": "no", + "iata_code": "NKD", + "local_code": "SIN", + "keywords": "WT10" + }, + { + "id": "43696", + "ident": "NL-0001", + "type": "heliport", + "name": "Antonius Ziekenhuis Heliport", + "latitude_deg": "53.03475952149999", + "longitude_deg": "5.639972209929999", + "elevation_ft": "14", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-FR", + "municipality": "Sneek", + "scheduled_service": "no", + "keywords": "EH0020" + }, + { + "id": "43697", + "ident": "NL-0002", + "type": "heliport", + "name": "Medisch Centrum Leeuwarden. Locatie Zuid Heliport", + "latitude_deg": "53.188507080078125", + "longitude_deg": "5.8028059005737305", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-FR", + "municipality": "Leeuwarden", + "scheduled_service": "no", + "keywords": "EH0013" + }, + { + "id": "43698", + "ident": "NL-0003", + "type": "heliport", + "name": "Ziekenhuis Talma Sionsberg Heliport", + "latitude_deg": "53.319637298583984", + "longitude_deg": "5.9930830001831055", + "elevation_ft": "4", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-FR", + "municipality": "Dokkum", + "scheduled_service": "no", + "keywords": "EH0007" + }, + { + "id": "43699", + "ident": "NL-0004", + "type": "heliport", + "name": "Streekziekenhuis Koningin Beatrix Heliport", + "latitude_deg": "51.97972106933594", + "longitude_deg": "6.700277805328369", + "elevation_ft": "110", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-GE", + "municipality": "Winterswijk", + "scheduled_service": "no", + "keywords": "EH0028" + }, + { + "id": "43700", + "ident": "NL-0005", + "type": "heliport", + "name": "Ziekenhuis Rivierenland Heliport", + "latitude_deg": "51.88972091674805", + "longitude_deg": "5.413888931274414", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-GE", + "municipality": "Tiel", + "scheduled_service": "no", + "keywords": "EH0022" + }, + { + "id": "43701", + "ident": "NL-0006", + "type": "heliport", + "name": "Universitair Medisch Centrum Heliport", + "latitude_deg": "53.22173309326172", + "longitude_deg": "6.576056003570557", + "elevation_ft": "80", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-GR", + "municipality": "Groningen", + "scheduled_service": "no", + "keywords": "EH0010" + }, + { + "id": "43702", + "ident": "NL-0007", + "type": "heliport", + "name": "Maastricht Universitair Medisch Centrum Heliport", + "latitude_deg": "50.834442138671875", + "longitude_deg": "5.712500095367432", + "elevation_ft": "165", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-LI", + "municipality": "Maastricht", + "scheduled_service": "no", + "keywords": "EH0015" + }, + { + "id": "43703", + "ident": "NL-0008", + "type": "heliport", + "name": "Viecuri Medisch Centrum Voor Noord-Limburg Heliport", + "latitude_deg": "51.358333587646484", + "longitude_deg": "6.152500152587891", + "elevation_ft": "58", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-LI", + "municipality": "Venlo", + "scheduled_service": "no", + "keywords": "EH0026" + }, + { + "id": "43704", + "ident": "NL-0009", + "type": "heliport", + "name": "Maxima Medisch Centrum Heliport", + "latitude_deg": "51.404998779296875", + "longitude_deg": "5.419722080230713", + "elevation_ft": "62", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NB", + "municipality": "Veldhoven", + "scheduled_service": "no", + "keywords": "EH0025" + }, + { + "id": "43705", + "ident": "NL-0010", + "type": "heliport", + "name": "St. Elisabeth Ziekenhuis Heliport", + "latitude_deg": "51.53889083862305", + "longitude_deg": "5.104722023010254", + "elevation_ft": "49", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NB", + "municipality": "Tilburg", + "scheduled_service": "no", + "keywords": "EH0023" + }, + { + "id": "43706", + "ident": "NL-0011", + "type": "heliport", + "name": "Rode Kruis Ziekenhuis Heliport", + "latitude_deg": "52.4791374206543", + "longitude_deg": "4.651556015014648", + "elevation_ft": "68", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NH", + "municipality": "Beverwijk", + "scheduled_service": "no", + "keywords": "EH0002" + }, + { + "id": "43707", + "ident": "NL-0012", + "type": "heliport", + "name": "Vu Medisch Centrum Heliport", + "latitude_deg": "52.33433532714844", + "longitude_deg": "4.8591108322143555", + "elevation_ft": "12", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NH", + "municipality": "Amsterdam", + "scheduled_service": "no", + "keywords": "EH0001" + }, + { + "id": "43708", + "ident": "NL-0013", + "type": "heliport", + "name": "Isala Klinieken. Locatie Sophia Heliport", + "latitude_deg": "52.51387405395508", + "longitude_deg": "6.127999782562256", + "elevation_ft": "6", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-OV", + "municipality": "Zwolle", + "scheduled_service": "no", + "keywords": "EH0029" + }, + { + "id": "43709", + "ident": "NL-0014", + "type": "heliport", + "name": "Medisch Spectrum Twente Heliport", + "latitude_deg": "52.215476989746094", + "longitude_deg": "6.891250133514404", + "elevation_ft": "130", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-OV", + "municipality": "Enschede", + "scheduled_service": "no", + "keywords": "EH0008" + }, + { + "id": "43710", + "ident": "NL-0015", + "type": "heliport", + "name": "Universitair Medisch Centrum Utrecht Heliport", + "latitude_deg": "52.086769104003906", + "longitude_deg": "5.181416988372803", + "elevation_ft": "91", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-UT", + "municipality": "Utrecht", + "scheduled_service": "no", + "keywords": "EH0024" + }, + { + "id": "43711", + "ident": "NL-0016", + "type": "heliport", + "name": "Albert Schweitzer Ziekenhuis. Locatie Amstelwijck Heliport", + "latitude_deg": "51.776344299316406", + "longitude_deg": "4.651111125946045", + "elevation_ft": "6", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZH", + "municipality": "Dordrecht", + "scheduled_service": "no", + "keywords": "EH0030" + }, + { + "id": "43712", + "ident": "NL-0017", + "type": "heliport", + "name": "Erasmus Medisch Centrum Heliport", + "latitude_deg": "51.90999984741211", + "longitude_deg": "4.470832824707031", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZH", + "municipality": "Rotterdam", + "scheduled_service": "no", + "keywords": "EH0018" + }, + { + "id": "43713", + "ident": "NL-0018", + "type": "heliport", + "name": "Leids Universitair Medisch Centrum Heliport", + "latitude_deg": "52.166255950927734", + "longitude_deg": "4.477972030639648", + "elevation_ft": "40", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZH", + "municipality": "Leiden", + "scheduled_service": "no", + "keywords": "EH0014" + }, + { + "id": "43714", + "ident": "NL-0019", + "type": "heliport", + "name": "Mc Haaglanden. Locatie Westeinde Heliport", + "latitude_deg": "52.07400894165039", + "longitude_deg": "4.300278186798096", + "elevation_ft": "22", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZH", + "municipality": "Den Haag", + "scheduled_service": "no", + "keywords": "EH0005" + }, + { + "id": "43715", + "ident": "NL-0020", + "type": "heliport", + "name": "Medisch Centrum Rijnmond. Locatie Zuid Heliport", + "latitude_deg": "51.885555267333984", + "longitude_deg": "4.503056049346924", + "elevation_ft": "4", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZH", + "municipality": "Rotterdam", + "scheduled_service": "no", + "keywords": "EH0019" + }, + { + "id": "43716", + "ident": "NL-0021", + "type": "heliport", + "name": "Oosterschelde Ziekenhuis Heliport", + "latitude_deg": "51.48480224609375", + "longitude_deg": "3.9105000495910645", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZL", + "municipality": "Goes", + "scheduled_service": "no", + "keywords": "EH0009" + }, + { + "id": "43717", + "ident": "NL-0022", + "type": "heliport", + "name": "Ziekenhuis Zeeuws-Vlaanderen. Locatie De Honte Heliport", + "latitude_deg": "51.30833435058594", + "longitude_deg": "3.862499952316284", + "elevation_ft": "6", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZL", + "municipality": "Terneuzen", + "scheduled_service": "no", + "keywords": "EH0021" + }, + { + "id": "45159", + "ident": "NL-0023", + "type": "small_airport", + "name": "Maldens Vlak Glider field", + "latitude_deg": "51.785259", + "longitude_deg": "5.88099", + "elevation_ft": "89", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-GE", + "municipality": "Malden", + "scheduled_service": "no", + "home_link": "http://www.nijac.nl/?pid=11", + "keywords": "NijAC, gliding, Nijmegen, Groesbeek" + }, + { + "id": "299505", + "ident": "NL-0024", + "type": "small_airport", + "name": "Middenmeer Aerodrome", + "latitude_deg": "52.815368824100005", + "longitude_deg": "5.0216960907", + "elevation_ft": "-14", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NH", + "municipality": "Wieringermeer", + "scheduled_service": "no", + "home_link": "http://www.vliegclubwieringermeer.nl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Middenmeer_Aerodrome" + }, + { + "id": "299506", + "ident": "NL-0025", + "type": "heliport", + "name": "Lukkien Heliport", + "latitude_deg": "52.0224444444", + "longitude_deg": "5.62394444444", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-GE", + "municipality": "Ede", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lukkien_Heliport" + }, + { + "id": "299507", + "ident": "NL-0026", + "type": "closed", + "name": "TrafficPort Venlo Airfield", + "latitude_deg": "51.393056", + "longitude_deg": "6.062778", + "elevation_ft": "75", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-LI", + "municipality": "Venlo", + "scheduled_service": "no", + "home_link": "http://www.trafficport.nl/airport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/TrafficPort_Venlo" + }, + { + "id": "299508", + "ident": "NL-0027", + "type": "small_airport", + "name": "Axel Glider Airfield", + "latitude_deg": "51.2555555556", + "longitude_deg": "3.89138888889", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZL", + "municipality": "Terneuzen", + "scheduled_service": "no" + }, + { + "id": "299509", + "ident": "NL-0028", + "type": "closed", + "name": "Glider Field Biddinghuizen", + "latitude_deg": "52.429167", + "longitude_deg": "5.674167", + "elevation_ft": "-20", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-FL", + "municipality": "Biddinghuizen", + "scheduled_service": "no", + "local_code": "EHLR", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Zweefvliegclub_Flevo" + }, + { + "id": "299510", + "ident": "NL-0029", + "type": "small_airport", + "name": "Glider Field Castricum", + "latitude_deg": "52.5366666667", + "longitude_deg": "4.62666666667", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NH", + "municipality": "Castricum", + "scheduled_service": "no" + }, + { + "id": "299511", + "ident": "NL-0030", + "type": "small_airport", + "name": "Glider Field De Voorst", + "latitude_deg": "52.684722", + "longitude_deg": "5.910556", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-FL", + "municipality": "Marknesse", + "scheduled_service": "no", + "gps_code": "EHDV", + "home_link": "https://www.zcnop.nl/" + }, + { + "id": "299512", + "ident": "NL-0031", + "type": "small_airport", + "name": "Haamstede Airfield", + "latitude_deg": "51.7088888889", + "longitude_deg": "3.7122222222200003", + "elevation_ft": "15", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZL", + "municipality": "Schouwen-Duiveland", + "scheduled_service": "no" + }, + { + "id": "299513", + "ident": "NL-0032", + "type": "heliport", + "name": "Heli Holland Heliport", + "latitude_deg": "52.803333", + "longitude_deg": "6.957222", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-DR", + "municipality": "Emmer- Compascuum", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Heli_Holland" + }, + { + "id": "299514", + "ident": "NL-0033", + "type": "small_airport", + "name": "Langeveld Glider Field", + "latitude_deg": "52.297778", + "longitude_deg": "4.513611", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZH", + "municipality": "Noordwijk", + "scheduled_service": "no", + "home_link": "http://www.kzc.nl/" + }, + { + "id": "299515", + "ident": "NL-0034", + "type": "small_airport", + "name": "Aeroclub Nistelrode", + "latitude_deg": "51.683333333300006", + "longitude_deg": "5.549444444440001", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NB", + "municipality": "Bernheze", + "scheduled_service": "no", + "home_link": "http://www.acnistelrode.nl/index.html" + }, + { + "id": "299516", + "ident": "NL-0035", + "type": "small_airport", + "name": "Glider site Schinveld", + "latitude_deg": "50.980833333300005", + "longitude_deg": "5.998611111110001", + "elevation_ft": "180", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-LI", + "municipality": "Onderbanken", + "scheduled_service": "no" + }, + { + "id": "299517", + "ident": "NL-0036", + "type": "small_airport", + "name": "Veendam Glider Site", + "latitude_deg": "53.0844444444", + "longitude_deg": "6.823611111110001", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-GR", + "municipality": "Veendam", + "scheduled_service": "no" + }, + { + "id": "299518", + "ident": "NL-0037", + "type": "small_airport", + "name": "Venlo Airfield", + "latitude_deg": "51.3630555556", + "longitude_deg": "6.216111111110001", + "elevation_ft": "145", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-LI", + "municipality": "Venlo", + "scheduled_service": "no" + }, + { + "id": "299519", + "ident": "NL-0038", + "type": "closed", + "name": "Venlo-Herongen Air Base", + "latitude_deg": "51.368611", + "longitude_deg": "6.211944", + "elevation_ft": "135", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-LI", + "municipality": "Venlo", + "scheduled_service": "no", + "keywords": "ALG,Y55" + }, + { + "id": "299521", + "ident": "NL-0039", + "type": "closed", + "name": "Havelte Airport", + "latitude_deg": "52.7838888889", + "longitude_deg": "6.2375", + "elevation_ft": "36", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-DR", + "scheduled_service": "no" + }, + { + "id": "299522", + "ident": "NL-0040", + "type": "closed", + "name": "Peest Airport", + "latitude_deg": "53.05", + "longitude_deg": "6.5", + "elevation_ft": "32", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-DR", + "scheduled_service": "no" + }, + { + "id": "299528", + "ident": "NL-0041", + "type": "closed", + "name": "Wieringermeer Glider Field", + "latitude_deg": "52.820556", + "longitude_deg": "4.926389", + "elevation_ft": "-15", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NH", + "scheduled_service": "no" + }, + { + "id": "299529", + "ident": "NL-0042", + "type": "closed", + "name": "Buiksloot Airfield", + "latitude_deg": "52.4072222222", + "longitude_deg": "4.89527777778", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NH", + "municipality": "Amsterdam", + "scheduled_service": "no" + }, + { + "id": "299530", + "ident": "NL-0043", + "type": "closed", + "name": "Bergen Airfield", + "latitude_deg": "52.6472222222", + "longitude_deg": "4.69222222222", + "elevation_ft": "-3", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NH", + "municipality": "Alkmaar", + "scheduled_service": "no" + }, + { + "id": "301012", + "ident": "NL-0044", + "type": "closed", + "name": "Ypenburg Airbase", + "latitude_deg": "52.041111", + "longitude_deg": "4.356944", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZH", + "municipality": "Den Haag", + "scheduled_service": "no", + "gps_code": "EHYB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ypenburg_Airport" + }, + { + "id": "312620", + "ident": "NL-0045", + "type": "closed", + "name": "Eindhoven Heliport", + "latitude_deg": "51.423731", + "longitude_deg": "5.47449", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NB", + "scheduled_service": "no" + }, + { + "id": "312621", + "ident": "NL-0046", + "type": "heliport", + "name": "Helihaven P. van Zutphen", + "latitude_deg": "51.535422", + "longitude_deg": "5.378821", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NB", + "scheduled_service": "no" + }, + { + "id": "315182", + "ident": "NL-0047", + "type": "heliport", + "name": "Keteloog Helipad", + "latitude_deg": "52.59254", + "longitude_deg": "5.73863", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-FL", + "scheduled_service": "no" + }, + { + "id": "315183", + "ident": "NL-0048", + "type": "heliport", + "name": "TT Circuit Assen Helipad", + "latitude_deg": "52.96013", + "longitude_deg": "6.525208", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-DR", + "scheduled_service": "no" + }, + { + "id": "332663", + "ident": "NL-0049", + "type": "closed", + "name": "Keent Aerodrome", + "latitude_deg": "51.765556", + "longitude_deg": "5.687222", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NB", + "scheduled_service": "no", + "local_code": "B82", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Vliegveld_Keent" + }, + { + "id": "332665", + "ident": "NL-0050", + "type": "small_airport", + "name": "Soesterberg Glidersite", + "latitude_deg": "52.133889", + "longitude_deg": "5.264167", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-UT", + "scheduled_service": "no" + }, + { + "id": "329142", + "ident": "NL-0051", + "type": "heliport", + "name": "HeliAir", + "latitude_deg": "52.1245219", + "longitude_deg": "5.7356178", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-GE", + "scheduled_service": "no", + "home_link": "http://heliair.nl" + }, + { + "id": "329917", + "ident": "NL-0052", + "type": "small_airport", + "name": "Zweefvliegveld Noordkop", + "latitude_deg": "52.89512", + "longitude_deg": "5.004628", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NH", + "scheduled_service": "no", + "home_link": "http://www.zweef.nl" + }, + { + "id": "332666", + "ident": "NL-0053", + "type": "closed", + "name": "Ockenburg Airport", + "latitude_deg": "52.06", + "longitude_deg": "4.216667", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZH", + "municipality": "Den Haag", + "scheduled_service": "no", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Vliegveld_Ockenburg" + }, + { + "id": "332667", + "ident": "NL-0054", + "type": "closed", + "name": "Waalhaven Airport", + "latitude_deg": "51.875833", + "longitude_deg": "4.443056", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZH", + "municipality": "Rotterdam", + "scheduled_service": "no", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Vliegveld_Waalhaven" + }, + { + "id": "332668", + "ident": "NL-0055", + "type": "closed", + "name": "Schijndel Airbase B.85", + "latitude_deg": "51.6065", + "longitude_deg": "5.476694", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-U-A", + "scheduled_service": "no", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Vliegveld_B.85_Schijndel" + }, + { + "id": "332669", + "ident": "NL-0056", + "type": "closed", + "name": "Vliegpark Vlissingen", + "latitude_deg": "51.459722", + "longitude_deg": "3.583056", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZL", + "municipality": "Vlissingen", + "scheduled_service": "no", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Vliegpark_Vlissingen" + }, + { + "id": "332670", + "ident": "NL-0057", + "type": "closed", + "name": "Vliegveld B.84 De Rips", + "latitude_deg": "51.557778", + "longitude_deg": "5.759167", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-U-A", + "scheduled_service": "no", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Vliegveld_B.84_De_Rips" + }, + { + "id": "332671", + "ident": "NL-0058", + "type": "closed", + "name": "Vliegveld B.91 De Kluis", + "latitude_deg": "51.796667", + "longitude_deg": "5.853056", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-U-A", + "scheduled_service": "no", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Vliegveld_B.91_De_Kluis" + }, + { + "id": "332672", + "ident": "NL-0059", + "type": "closed", + "name": "Vliegveld Kessel", + "latitude_deg": "51.812472", + "longitude_deg": "5.405583", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NB", + "scheduled_service": "no", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Vliegveld_Kessel" + }, + { + "id": "332673", + "ident": "NL-0060", + "type": "closed", + "name": "Vliegveld B.89 Mill", + "latitude_deg": "51.698611", + "longitude_deg": "5.751389", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NB", + "scheduled_service": "no", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Vliegveld_B.89_Mill" + }, + { + "id": "332674", + "ident": "NL-0061", + "type": "closed", + "name": "Vliegveld Maaldrift", + "latitude_deg": "52.151111", + "longitude_deg": "4.427222", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZH", + "municipality": "Wassenaar", + "scheduled_service": "no", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Vliegveld_Maaldrift" + }, + { + "id": "332675", + "ident": "NL-0062", + "type": "closed", + "name": "Vliegveld B.86 Helmond", + "latitude_deg": "51.478278", + "longitude_deg": "5.716583", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NB", + "scheduled_service": "no", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Vliegveld_B.86_Helmond" + }, + { + "id": "332676", + "ident": "NL-0063", + "type": "closed", + "name": "Vliegveld B.88 Heesch", + "latitude_deg": "51.715278", + "longitude_deg": "5.568611", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NB", + "scheduled_service": "no", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Vliegveld_B.88_Heesch" + }, + { + "id": "332677", + "ident": "NL-0064", + "type": "closed", + "name": "Vliegkamp Ede", + "latitude_deg": "52.066944", + "longitude_deg": "5.665556", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-GE", + "municipality": "Ede", + "scheduled_service": "no", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Vliegkamp_Ede" + }, + { + "id": "332678", + "ident": "NL-0065", + "type": "closed", + "name": "Vliegveld Boxmeer", + "latitude_deg": "51.626056", + "longitude_deg": "5.931806", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NB", + "scheduled_service": "no", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Vliegveld_Boxmeer" + }, + { + "id": "332679", + "ident": "NL-0066", + "type": "closed", + "name": "Vliegveld Buiksloot", + "latitude_deg": "52.407222", + "longitude_deg": "4.895278", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NH", + "municipality": "Amsterdam", + "scheduled_service": "no", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Vliegveld_Buiksloot" + }, + { + "id": "332680", + "ident": "NL-0067", + "type": "closed", + "name": "Witten Glidersite", + "latitude_deg": "52.965093", + "longitude_deg": "6.508605", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-DR", + "municipality": "Assen", + "scheduled_service": "no" + }, + { + "id": "332682", + "ident": "NL-0068", + "type": "closed", + "name": "Rotterdan Red Bull Airport", + "latitude_deg": "51.898628", + "longitude_deg": "4.473506", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZH", + "municipality": "Rotterdam", + "scheduled_service": "no" + }, + { + "id": "334189", + "ident": "NL-0069", + "type": "closed", + "name": "Oostvoorne Airfield", + "latitude_deg": "51.915593", + "longitude_deg": "4.072816", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZH", + "municipality": "Oostvoorne", + "scheduled_service": "no" + }, + { + "id": "334190", + "ident": "NL-0070", + "type": "closed", + "name": "Voorburg Airfield", + "latitude_deg": "52.07389", + "longitude_deg": "4.33972", + "elevation_ft": "5", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZH", + "municipality": "Voorburg", + "scheduled_service": "no" + }, + { + "id": "334191", + "ident": "NL-0071", + "type": "closed", + "name": "Eemshaven Airfield", + "latitude_deg": "53.445011", + "longitude_deg": "6.800237", + "elevation_ft": "2", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-GR", + "scheduled_service": "no", + "keywords": "Private airfield,cropdusting" + }, + { + "id": "334192", + "ident": "NL-0072", + "type": "closed", + "name": "Breskens Airfield", + "latitude_deg": "51.39278", + "longitude_deg": "3.53917", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZL", + "scheduled_service": "no" + }, + { + "id": "334999", + "ident": "NL-0073", + "type": "closed", + "name": "Vught", + "latitude_deg": "51.659299", + "longitude_deg": "5.271034", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-NB", + "municipality": "Vught", + "scheduled_service": "no", + "home_link": "https://www.bhic.nl/ontdekken/verhalen/noodlandingsterrein-vught" + }, + { + "id": "337279", + "ident": "NL-0074", + "type": "heliport", + "name": "Helihaven Nationaal Lucht- en Ruimtevaartlaboratorium (NLR)", + "latitude_deg": "52.680896", + "longitude_deg": "5.925617", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-FL", + "municipality": "Marknesse", + "scheduled_service": "no", + "home_link": "https://www.flevoland.nl/getmedia/a2de6832-03c5-444f-838a-8fb8cf58dc06/Ontwerp-Luchthavenregeling-Koninklijk-Nederlands-Lucht-en" + }, + { + "id": "337280", + "ident": "NL-0075", + "type": "small_airport", + "name": "Koninklijk Nederlands Lucht- en Ruimtevaartcentrum (NLR)", + "latitude_deg": "52.680884", + "longitude_deg": "5.922704", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-FL", + "municipality": "Marknesse", + "scheduled_service": "no", + "home_link": "https://www.flevoland.nl/getmedia/a2de6832-03c5-444f-838a-8fb8cf58dc06/Ontwerp-Luchthavenregeling-Koninklijk-Nederlands-Lucht-en" + }, + { + "id": "340432", + "ident": "NL-0076", + "type": "heliport", + "name": "Terschelling Heliport", + "latitude_deg": "53.384129", + "longitude_deg": "5.278094", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-FR", + "municipality": "Terschelling", + "scheduled_service": "no" + }, + { + "id": "340433", + "ident": "NL-0077", + "type": "heliport", + "name": "Schiermonnikoog Heliport", + "latitude_deg": "53.473141", + "longitude_deg": "6.194632", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-FR", + "municipality": "Schiermonnikoog", + "scheduled_service": "no", + "gps_code": "EHSO" + }, + { + "id": "343401", + "ident": "NL-0078", + "type": "heliport", + "name": "Grand Hotel Huis ter Duin", + "latitude_deg": "52.240957", + "longitude_deg": "4.425935", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-ZH", + "municipality": "Noordwijk", + "scheduled_service": "no", + "home_link": "https://huisterduin.com/" + }, + { + "id": "347320", + "ident": "NL-0079", + "type": "heliport", + "name": "Marnewaard", + "latitude_deg": "53.380718", + "longitude_deg": "6.257744", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-GR", + "municipality": "Het Hogeland", + "scheduled_service": "no", + "keywords": "military,heliport" + }, + { + "id": "430394", + "ident": "NL-0080", + "type": "heliport", + "name": "Vliehors (Shooting Range and Heliport)", + "latitude_deg": "53.24185", + "longitude_deg": "4.92264", + "elevation_ft": "5", + "continent": "EU", + "iso_country": "NL", + "iso_region": "NL-FR", + "municipality": "Vlieland", + "scheduled_service": "no", + "gps_code": "EHVL", + "home_link": "https://wetten.overheid.nl/BWBR0029858/2010-11-01#Bijlage", + "wikipedia_link": "https://nl.wikipedia.org/wiki/Vliehors", + "keywords": "Military,Shooting Range, Heliport" + }, + { + "id": "316547", + "ident": "NLH", + "type": "medium_airport", + "name": "Ninglang Luguhu Airport", + "latitude_deg": "27.5403", + "longitude_deg": "100.7593", + "elevation_ft": "10804", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Ninglang", + "scheduled_service": "yes", + "gps_code": "ZPNL", + "iata_code": "NLH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ninglang_Luguhu_Airport" + }, + { + "id": "31215", + "ident": "NLWF", + "type": "medium_airport", + "name": "Pointe Vele Airport", + "latitude_deg": "-14.3114004135", + "longitude_deg": "-178.065994263", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "WF", + "iso_region": "WF-U-A", + "municipality": "Futuna Island", + "scheduled_service": "yes", + "gps_code": "NLWF", + "iata_code": "FUT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pointe_Vele_Airport" + }, + { + "id": "4975", + "ident": "NLWW", + "type": "medium_airport", + "name": "Hihifo Airport", + "latitude_deg": "-13.2383003235", + "longitude_deg": "-176.199005127", + "elevation_ft": "79", + "continent": "OC", + "iso_country": "WF", + "iso_region": "WF-U-A", + "municipality": "Wallis Island", + "scheduled_service": "yes", + "gps_code": "NLWW", + "iata_code": "WLS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hihifo_Airport" + }, + { + "id": "23220", + "ident": "NM00", + "type": "heliport", + "name": "Albuquerque Regional Medical Center Heliport", + "latitude_deg": "35.088842", + "longitude_deg": "-106.636362", + "elevation_ft": "5037", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "no", + "gps_code": "NM00", + "local_code": "NM00" + }, + { + "id": "23221", + "ident": "NM01", + "type": "small_airport", + "name": "Rancho Magdalena Airport", + "latitude_deg": "34.098283", + "longitude_deg": "-107.297466", + "elevation_ft": "6676", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Magdalena", + "scheduled_service": "no", + "gps_code": "NM01", + "local_code": "NM01" + }, + { + "id": "23222", + "ident": "NM02", + "type": "small_airport", + "name": "Biplane Ranch Airport", + "latitude_deg": "34.929303", + "longitude_deg": "-106.174279", + "elevation_ft": "6500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Moriarty", + "scheduled_service": "no", + "gps_code": "NM02", + "local_code": "NM02" + }, + { + "id": "23223", + "ident": "NM03", + "type": "closed", + "name": "K-D Field", + "latitude_deg": "33.275101", + "longitude_deg": "-104.369003", + "elevation_ft": "3465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Dexter", + "scheduled_service": "no", + "keywords": "NM03" + }, + { + "id": "23224", + "ident": "NM04", + "type": "closed", + "name": "Keller Field", + "latitude_deg": "36.685047", + "longitude_deg": "-108.08301", + "elevation_ft": "5345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Farmington", + "scheduled_service": "no", + "keywords": "NM04" + }, + { + "id": "23225", + "ident": "NM05", + "type": "closed", + "name": "Williams Airport", + "latitude_deg": "36.744523", + "longitude_deg": "-108.149092", + "elevation_ft": "5500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Farmington", + "scheduled_service": "no", + "keywords": "NM05" + }, + { + "id": "23226", + "ident": "NM06", + "type": "heliport", + "name": "St Vincent Hospital Heliport", + "latitude_deg": "35.65950012207031", + "longitude_deg": "-105.94599914550781", + "elevation_ft": "7012", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Santa Fe", + "scheduled_service": "no", + "gps_code": "NM06", + "local_code": "NM06" + }, + { + "id": "23227", + "ident": "NM07", + "type": "heliport", + "name": "Home Heliport", + "latitude_deg": "34.83060073852539", + "longitude_deg": "-106.677001953125", + "elevation_ft": "4860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Peralta", + "scheduled_service": "no", + "gps_code": "NM07", + "local_code": "NM07" + }, + { + "id": "23228", + "ident": "NM08", + "type": "small_airport", + "name": "Solo Ranch Airport", + "latitude_deg": "32.262532", + "longitude_deg": "-107.393332", + "elevation_ft": "4200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Deming", + "scheduled_service": "no", + "gps_code": "NM08", + "local_code": "NM08" + }, + { + "id": "23229", + "ident": "NM09", + "type": "small_airport", + "name": "First Aero Squadron Airpark", + "latitude_deg": "31.867300033569336", + "longitude_deg": "-107.63600158691406", + "elevation_ft": "4140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "NM09", + "local_code": "NM09" + }, + { + "id": "23230", + "ident": "NM10", + "type": "small_airport", + "name": "Tequesquite Ranch Airport", + "latitude_deg": "35.87919998168945", + "longitude_deg": "-103.81300354003906", + "elevation_ft": "4500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albert", + "scheduled_service": "no", + "gps_code": "NM10", + "local_code": "NM10" + }, + { + "id": "23231", + "ident": "NM11", + "type": "heliport", + "name": "University of New Mexico Hospital Heliport", + "latitude_deg": "35.087979", + "longitude_deg": "-106.618491", + "elevation_ft": "5273", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "no", + "gps_code": "NM11", + "local_code": "NM11" + }, + { + "id": "23232", + "ident": "NM12", + "type": "closed", + "name": "Chowning Heliport", + "latitude_deg": "35.187801", + "longitude_deg": "-106.522003", + "elevation_ft": "5750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "no", + "keywords": "NM12" + }, + { + "id": "23233", + "ident": "NM13", + "type": "closed", + "name": "Burris E Station Airport", + "latitude_deg": "32.247797", + "longitude_deg": "-107.187767", + "elevation_ft": "4300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Las Cruces", + "scheduled_service": "no", + "keywords": "NM13" + }, + { + "id": "23234", + "ident": "NM14", + "type": "closed", + "name": "Burris E Ranch Airport", + "latitude_deg": "32.310198", + "longitude_deg": "-107.295885", + "elevation_ft": "4400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Deming", + "scheduled_service": "no", + "keywords": "NM14, deming, burris e" + }, + { + "id": "23235", + "ident": "NM15", + "type": "closed", + "name": "Clavel Ranch Airport", + "latitude_deg": "36.046101", + "longitude_deg": "-103.887001", + "elevation_ft": "5534", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Roy", + "scheduled_service": "no", + "keywords": "NM15" + }, + { + "id": "23236", + "ident": "NM16", + "type": "small_airport", + "name": "Chama Land and Cattle Company Airport", + "latitude_deg": "36.88026", + "longitude_deg": "-106.571388", + "elevation_ft": "8025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Chama", + "scheduled_service": "no", + "gps_code": "NM16", + "local_code": "NM16" + }, + { + "id": "23237", + "ident": "NM17", + "type": "small_airport", + "name": "Ray Ranch Airport", + "latitude_deg": "35.929797", + "longitude_deg": "-104.180488", + "elevation_ft": "5850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Roy", + "scheduled_service": "no", + "gps_code": "NM17", + "local_code": "NM17", + "keywords": "Stinebaugh Drilling Inc Airport" + }, + { + "id": "332490", + "ident": "NM18", + "type": "small_airport", + "name": "Flying H Airport", + "latitude_deg": "34.540172", + "longitude_deg": "-106.7779", + "elevation_ft": "4775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Bosque", + "scheduled_service": "no", + "gps_code": "NM40", + "local_code": "NM40", + "keywords": "NM18" + }, + { + "id": "23238", + "ident": "NM19", + "type": "heliport", + "name": "Ruidoso Heliport", + "latitude_deg": "33.35150146484375", + "longitude_deg": "-105.66300201416016", + "elevation_ft": "6838", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Ruidoso", + "scheduled_service": "no", + "gps_code": "NM19", + "local_code": "NM19" + }, + { + "id": "23239", + "ident": "NM20", + "type": "small_airport", + "name": "Benedict Airpark", + "latitude_deg": "33.25199890136719", + "longitude_deg": "-104.44200134277344", + "elevation_ft": "3556", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Roswell", + "scheduled_service": "no", + "gps_code": "NM20", + "local_code": "NM20" + }, + { + "id": "23240", + "ident": "NM21", + "type": "closed", + "name": "Patterson Ranch Airport", + "latitude_deg": "35.174999", + "longitude_deg": "-105.870003", + "elevation_ft": "6696", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Stanley", + "scheduled_service": "no", + "keywords": "NM21" + }, + { + "id": "23241", + "ident": "NM22", + "type": "heliport", + "name": "Sierra Vista Hospital Heliport", + "latitude_deg": "33.140661", + "longitude_deg": "-107.24096", + "elevation_ft": "4250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Truth or Consequences", + "scheduled_service": "no", + "gps_code": "NM22", + "local_code": "NM22" + }, + { + "id": "23242", + "ident": "NM23", + "type": "closed", + "name": "IHS Hospital Heliport", + "latitude_deg": "33.162662", + "longitude_deg": "-105.763932", + "elevation_ft": "6660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Mescalero", + "scheduled_service": "no", + "keywords": "NM23" + }, + { + "id": "23243", + "ident": "NM24", + "type": "small_airport", + "name": "Eastside Airport", + "latitude_deg": "36.922244", + "longitude_deg": "-106.560173", + "elevation_ft": "8030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Chama", + "scheduled_service": "no", + "gps_code": "NM24", + "local_code": "NM24" + }, + { + "id": "23244", + "ident": "NM25", + "type": "small_airport", + "name": "Lincoln Station Airport", + "latitude_deg": "34.12139", + "longitude_deg": "-105.6777", + "elevation_ft": "6655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Corona", + "scheduled_service": "no", + "gps_code": "NM25", + "local_code": "NM25" + }, + { + "id": "23245", + "ident": "NM26", + "type": "small_airport", + "name": "Luna Landing Airport", + "latitude_deg": "32.100101470947266", + "longitude_deg": "-107.822998046875", + "elevation_ft": "4250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Deming", + "scheduled_service": "no", + "gps_code": "NM26", + "local_code": "NM26" + }, + { + "id": "23246", + "ident": "NM27", + "type": "small_airport", + "name": "Sanostee Airport", + "latitude_deg": "36.422501", + "longitude_deg": "-108.861", + "elevation_ft": "5950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Gallup", + "scheduled_service": "no", + "gps_code": "NM27", + "local_code": "NM27", + "keywords": "Tséʼałnáoztʼiʼí" + }, + { + "id": "23247", + "ident": "NM28", + "type": "small_airport", + "name": "Beckett Farm Airport", + "latitude_deg": "33.05699920654297", + "longitude_deg": "-106.0250015258789", + "elevation_ft": "4430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Tularosa", + "scheduled_service": "no", + "gps_code": "NM28", + "local_code": "NM28" + }, + { + "id": "23248", + "ident": "NM29", + "type": "small_airport", + "name": "Rosebud Airport", + "latitude_deg": "35.83393", + "longitude_deg": "-103.43241", + "elevation_ft": "4820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Amistad", + "scheduled_service": "no", + "gps_code": "NM29", + "local_code": "NM29" + }, + { + "id": "23249", + "ident": "NM30", + "type": "closed", + "name": "Mitchell Farms Airport", + "latitude_deg": "34.874261", + "longitude_deg": "-103.067456", + "elevation_ft": "4475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Bellview", + "scheduled_service": "no" + }, + { + "id": "45540", + "ident": "NM31", + "type": "small_airport", + "name": "Elk Valley Airstrip", + "latitude_deg": "34.496208", + "longitude_deg": "-108.029722", + "elevation_ft": "7600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Pie Town", + "scheduled_service": "no", + "gps_code": "NM31", + "local_code": "NM31" + }, + { + "id": "23250", + "ident": "NM32", + "type": "small_airport", + "name": "Bell Ranch Waggoner Airport", + "latitude_deg": "35.707801818847656", + "longitude_deg": "-104.06099700927734", + "elevation_ft": "4725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Bell Ranch", + "scheduled_service": "no", + "gps_code": "NM32", + "local_code": "NM32" + }, + { + "id": "23251", + "ident": "NM33", + "type": "small_airport", + "name": "Bell Ranch Headquarters Airport", + "latitude_deg": "35.529058", + "longitude_deg": "-104.097378", + "elevation_ft": "4400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Bell Ranch", + "scheduled_service": "no", + "gps_code": "NM33", + "local_code": "NM33" + }, + { + "id": "23252", + "ident": "NM34", + "type": "heliport", + "name": "Keelin Heliport", + "latitude_deg": "32.97529983520508", + "longitude_deg": "-105.98200225830078", + "elevation_ft": "4500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Alamogordo", + "scheduled_service": "no", + "gps_code": "NM34", + "local_code": "NM34" + }, + { + "id": "23253", + "ident": "NM35", + "type": "heliport", + "name": "Socorro General Hospital Heliport", + "latitude_deg": "34.036935", + "longitude_deg": "-106.910884", + "elevation_ft": "4803", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Socorro", + "scheduled_service": "no", + "gps_code": "NM35", + "local_code": "NM35" + }, + { + "id": "23254", + "ident": "NM36", + "type": "small_airport", + "name": "Candy Kitchen Ranch Airport", + "latitude_deg": "34.902801513671875", + "longitude_deg": "-108.51499938964844", + "elevation_ft": "7220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Ramah", + "scheduled_service": "no", + "gps_code": "NM36", + "local_code": "NM36" + }, + { + "id": "23255", + "ident": "NM37", + "type": "small_airport", + "name": "Adobe Ranch Private Airport", + "latitude_deg": "33.5765", + "longitude_deg": "-107.900002", + "elevation_ft": "7354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Magdalena", + "scheduled_service": "no", + "gps_code": "NM37", + "local_code": "NM37" + }, + { + "id": "23256", + "ident": "NM38", + "type": "small_airport", + "name": "Double V Ranch Airport", + "latitude_deg": "34.1172981262207", + "longitude_deg": "-104.427001953125", + "elevation_ft": "4114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Fort Sumner", + "scheduled_service": "no", + "gps_code": "NM38", + "local_code": "NM38" + }, + { + "id": "23257", + "ident": "NM39", + "type": "closed", + "name": "Davenport Airport", + "latitude_deg": "36.632801", + "longitude_deg": "-108.310997", + "elevation_ft": "5720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Farmington", + "scheduled_service": "no", + "keywords": "NM39" + }, + { + "id": "23258", + "ident": "NM40", + "type": "closed", + "name": "Gorby Ranch Airport", + "latitude_deg": "32.963402", + "longitude_deg": "-105.999", + "elevation_ft": "4400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Alamogordo", + "scheduled_service": "no", + "keywords": "NM40" + }, + { + "id": "23259", + "ident": "NM41", + "type": "small_airport", + "name": "Happy Mountain Airport", + "latitude_deg": "34.06119918823242", + "longitude_deg": "-108.09600067138672", + "elevation_ft": "7250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Pie Town", + "scheduled_service": "no", + "gps_code": "NM41", + "local_code": "NM41" + }, + { + "id": "23260", + "ident": "NM42", + "type": "small_airport", + "name": "Aero Tech Inc Airport", + "latitude_deg": "34.415372", + "longitude_deg": "-103.134595", + "elevation_ft": "4250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Clovis", + "scheduled_service": "no", + "gps_code": "NM42", + "local_code": "NM42" + }, + { + "id": "23261", + "ident": "NM43", + "type": "heliport", + "name": "Southwell H.Q. Heliport", + "latitude_deg": "31.994400024414062", + "longitude_deg": "-108.37100219726562", + "elevation_ft": "4495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Hachita", + "scheduled_service": "no", + "gps_code": "NM43", + "local_code": "NM43" + }, + { + "id": "23262", + "ident": "NM44", + "type": "closed", + "name": "Bojax Ranch Airport", + "latitude_deg": "34.016242", + "longitude_deg": "-104.115994", + "elevation_ft": "3920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Elida", + "scheduled_service": "no", + "gps_code": "NM44", + "local_code": "NM44" + }, + { + "id": "23263", + "ident": "NM45", + "type": "heliport", + "name": "Pay Jay Nr 1 Heliport", + "latitude_deg": "32.839298248291016", + "longitude_deg": "-104.4020004272461", + "elevation_ft": "3386", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Artesia", + "scheduled_service": "no", + "gps_code": "NM45", + "local_code": "NM45" + }, + { + "id": "23264", + "ident": "NM46", + "type": "heliport", + "name": "Pay Jay Nr 2 Heliport", + "latitude_deg": "32.84040069580078", + "longitude_deg": "-104.4010009765625", + "elevation_ft": "3385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Artesia", + "scheduled_service": "no", + "gps_code": "NM46", + "local_code": "NM46" + }, + { + "id": "23265", + "ident": "NM47", + "type": "small_airport", + "name": "2x4 Ranch Airport", + "latitude_deg": "32.779012", + "longitude_deg": "-104.38028", + "elevation_ft": "3360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Artesia", + "scheduled_service": "no", + "gps_code": "NM47", + "local_code": "NM47", + "keywords": "2 x 4" + }, + { + "id": "23266", + "ident": "NM48", + "type": "small_airport", + "name": "Ensenada Airport", + "latitude_deg": "36.728808", + "longitude_deg": "-106.493897", + "elevation_ft": "7640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Tierra Amarilla", + "scheduled_service": "no", + "gps_code": "NM48", + "local_code": "NM48" + }, + { + "id": "23267", + "ident": "NM49", + "type": "small_airport", + "name": "J & M Farms Airport", + "latitude_deg": "34.58150100708008", + "longitude_deg": "-106.07499694824219", + "elevation_ft": "6135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Willard", + "scheduled_service": "no", + "gps_code": "NM49", + "local_code": "NM49" + }, + { + "id": "23268", + "ident": "NM50", + "type": "heliport", + "name": "Lovelace Westside Hospital Heliport", + "latitude_deg": "35.206811", + "longitude_deg": "-106.676181", + "elevation_ft": "5218", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "no", + "gps_code": "NM50", + "local_code": "NM50", + "keywords": "St Joseph West Mesa Hospital" + }, + { + "id": "23269", + "ident": "NM51", + "type": "small_airport", + "name": "Chloride Airport", + "latitude_deg": "33.328399658203125", + "longitude_deg": "-107.66200256347656", + "elevation_ft": "6202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Chloride", + "scheduled_service": "no", + "gps_code": "NM51", + "local_code": "NM51" + }, + { + "id": "23270", + "ident": "NM52", + "type": "small_airport", + "name": "Camco Ranch Airport", + "latitude_deg": "35.574822", + "longitude_deg": "-103.281956", + "elevation_ft": "4255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Nara Visa", + "scheduled_service": "no", + "gps_code": "NM52", + "local_code": "NM52" + }, + { + "id": "23271", + "ident": "NM53", + "type": "small_airport", + "name": "San Miguel Ranch Airport", + "latitude_deg": "35.5099983215332", + "longitude_deg": "-104.58399963378906", + "elevation_ft": "6300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Las Vegas", + "scheduled_service": "no", + "gps_code": "NM53", + "local_code": "NM53" + }, + { + "id": "23272", + "ident": "NM54", + "type": "closed", + "name": "District 5 Headquarters Heliport", + "latitude_deg": "35.108495", + "longitude_deg": "-106.605282", + "elevation_ft": "5180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "no", + "keywords": "NM54, \"Sheraton Inn\"" + }, + { + "id": "23273", + "ident": "NM55", + "type": "small_airport", + "name": "Whitewater Mesa Ranch Airport", + "latitude_deg": "33.363584", + "longitude_deg": "-108.86186", + "elevation_ft": "5460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Glenwood", + "scheduled_service": "no", + "gps_code": "NM55", + "local_code": "NM55" + }, + { + "id": "23274", + "ident": "NM56", + "type": "small_airport", + "name": "Mystic Bluffs Airport", + "latitude_deg": "35.1652984619", + "longitude_deg": "-108.458999634", + "elevation_ft": "6980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Ramah", + "scheduled_service": "no", + "gps_code": "NM56", + "local_code": "NM56" + }, + { + "id": "23275", + "ident": "NM57", + "type": "heliport", + "name": "Governor's Residence Heliport", + "latitude_deg": "35.70640182495117", + "longitude_deg": "-105.93000030517578", + "elevation_ft": "7200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Santa Fe", + "scheduled_service": "no", + "gps_code": "NM57", + "local_code": "NM57" + }, + { + "id": "23276", + "ident": "NM58", + "type": "heliport", + "name": "Emergency Operations Center Heliport", + "latitude_deg": "33.140167", + "longitude_deg": "-107.247916", + "elevation_ft": "4320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Truth or Consequences", + "scheduled_service": "no", + "gps_code": "NM58", + "local_code": "NM58" + }, + { + "id": "23277", + "ident": "NM59", + "type": "closed", + "name": "Price's Dairy Airport", + "latitude_deg": "34.98569", + "longitude_deg": "-106.6708", + "elevation_ft": "4921", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "no", + "keywords": "NM59" + }, + { + "id": "23278", + "ident": "NM60", + "type": "closed", + "name": "Hoffmann Helicopters Heliport", + "latitude_deg": "33.403999", + "longitude_deg": "-103.087997", + "elevation_ft": "4158", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Texico", + "scheduled_service": "no", + "keywords": "NM60" + }, + { + "id": "23279", + "ident": "NM61", + "type": "closed", + "name": "New Mexico Soaring Ranch Airport", + "latitude_deg": "35.127213", + "longitude_deg": "-106.143613", + "elevation_ft": "6530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Edgewood", + "scheduled_service": "no", + "gps_code": "NM61", + "local_code": "NM61" + }, + { + "id": "23280", + "ident": "NM62", + "type": "heliport", + "name": "Sjrmc Heliport", + "latitude_deg": "36.72420120239258", + "longitude_deg": "-108.21800231933594", + "elevation_ft": "5280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Farmington", + "scheduled_service": "no", + "gps_code": "NM62", + "local_code": "NM62" + }, + { + "id": "23281", + "ident": "NM63", + "type": "small_airport", + "name": "Big Sky Airport", + "latitude_deg": "35.16579818725586", + "longitude_deg": "-106.01200103759766", + "elevation_ft": "6200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Stanley", + "scheduled_service": "no", + "gps_code": "NM63", + "local_code": "NM63" + }, + { + "id": "23282", + "ident": "NM64", + "type": "small_airport", + "name": "Gray Ranch Airport", + "latitude_deg": "31.45870018005371", + "longitude_deg": "-108.86299896240234", + "elevation_ft": "5155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Animas", + "scheduled_service": "no", + "gps_code": "NM64", + "local_code": "NM64" + }, + { + "id": "23283", + "ident": "NM65", + "type": "heliport", + "name": "Taos County Hospital Heliport", + "latitude_deg": "36.36920166015625", + "longitude_deg": "-105.5719985961914", + "elevation_ft": "7064", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Taos", + "scheduled_service": "no", + "gps_code": "NM65", + "local_code": "NM65" + }, + { + "id": "23284", + "ident": "NM66", + "type": "small_airport", + "name": "Poco Loco Airport", + "latitude_deg": "34.415199279785156", + "longitude_deg": "-108.0770034790039", + "elevation_ft": "7420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Pie Town", + "scheduled_service": "no", + "gps_code": "NM66", + "local_code": "NM66" + }, + { + "id": "23285", + "ident": "NM67", + "type": "small_airport", + "name": "La Mesa Park Airport", + "latitude_deg": "36.856998443603516", + "longitude_deg": "-104.447998046875", + "elevation_ft": "6578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Raton", + "scheduled_service": "no", + "gps_code": "NM67", + "local_code": "NM67" + }, + { + "id": "23286", + "ident": "NM68", + "type": "closed", + "name": "Rael Ranch Horse Pasture Airport", + "latitude_deg": "33.803356", + "longitude_deg": "-108.346554", + "elevation_ft": "6950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Quemado", + "scheduled_service": "no", + "gps_code": "NM68", + "local_code": "NM68" + }, + { + "id": "23287", + "ident": "NM69", + "type": "small_airport", + "name": "Casas Adobes Airpark", + "latitude_deg": "32.81420135498047", + "longitude_deg": "-107.94000244140625", + "elevation_ft": "5800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Mimbres", + "scheduled_service": "no", + "gps_code": "NM69", + "local_code": "NM69" + }, + { + "id": "23288", + "ident": "NM70", + "type": "small_airport", + "name": "Rodeo Airport", + "latitude_deg": "31.948484", + "longitude_deg": "-109.046173", + "elevation_ft": "4157", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Rodeo", + "scheduled_service": "no", + "gps_code": "NM70", + "local_code": "NM70" + }, + { + "id": "23289", + "ident": "NM71", + "type": "small_airport", + "name": "Three Rivers Ranch Airport", + "latitude_deg": "33.332859", + "longitude_deg": "-106.028323", + "elevation_ft": "4807", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Tularosa", + "scheduled_service": "no", + "gps_code": "NM71", + "local_code": "NM71" + }, + { + "id": "23290", + "ident": "NM72", + "type": "closed", + "name": "Turner Ridgeport Airport", + "latitude_deg": "32.741976", + "longitude_deg": "-108.288004", + "elevation_ft": "6037", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Silver City", + "scheduled_service": "no", + "keywords": "NM72" + }, + { + "id": "23291", + "ident": "NM73", + "type": "small_airport", + "name": "Akin and Akin Airport", + "latitude_deg": "34.77734", + "longitude_deg": "-103.855448", + "elevation_ft": "4858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Mc Alister", + "scheduled_service": "no", + "gps_code": "NM73", + "local_code": "NM73" + }, + { + "id": "23292", + "ident": "NM74", + "type": "small_airport", + "name": "Cubero Airport", + "latitude_deg": "35.087501525878906", + "longitude_deg": "-107.56300354003906", + "elevation_ft": "6192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Cubero", + "scheduled_service": "no", + "gps_code": "NM74", + "local_code": "NM74" + }, + { + "id": "23293", + "ident": "NM75", + "type": "small_airport", + "name": "Doolittle Ranch Airport", + "latitude_deg": "35.823358", + "longitude_deg": "-104.946785", + "elevation_ft": "6549", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Watrous", + "scheduled_service": "no", + "gps_code": "NM75", + "local_code": "NM75" + }, + { + "id": "23294", + "ident": "NM76", + "type": "small_airport", + "name": "Park Springs Airport", + "latitude_deg": "35.260799407958984", + "longitude_deg": "-104.91899871826172", + "elevation_ft": "5115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Anton Chico", + "scheduled_service": "no", + "gps_code": "NM76", + "local_code": "NM76" + }, + { + "id": "23295", + "ident": "NM77", + "type": "heliport", + "name": "Memorial Medical Center Heliport", + "latitude_deg": "32.291717", + "longitude_deg": "-106.735407", + "elevation_ft": "4028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Las Cruces", + "scheduled_service": "no", + "gps_code": "NM77", + "local_code": "NM77" + }, + { + "id": "23296", + "ident": "NM78", + "type": "small_airport", + "name": "Hacienda Sur Luna Airport", + "latitude_deg": "31.877899169921875", + "longitude_deg": "-107.64600372314453", + "elevation_ft": "4150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "NM78", + "local_code": "NM78" + }, + { + "id": "23297", + "ident": "NM79", + "type": "closed", + "name": "Shoestring Ranch Airport", + "latitude_deg": "32.445572", + "longitude_deg": "-106.678233", + "elevation_ft": "4440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Organ", + "scheduled_service": "no", + "local_code": "NM79" + }, + { + "id": "23298", + "ident": "NM80", + "type": "small_airport", + "name": "Quemado Airport", + "latitude_deg": "34.340301513671875", + "longitude_deg": "-108.51499938964844", + "elevation_ft": "6917", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Quemado", + "scheduled_service": "no", + "gps_code": "NM80", + "local_code": "NM80" + }, + { + "id": "23299", + "ident": "NM81", + "type": "heliport", + "name": "St Johns College Helispot Heliport", + "latitude_deg": "35.6692008972", + "longitude_deg": "-105.912002563", + "elevation_ft": "7220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Santa Fe", + "scheduled_service": "no", + "gps_code": "NM81", + "local_code": "NM81" + }, + { + "id": "23300", + "ident": "NM82", + "type": "closed", + "name": "KRQE Heliport", + "latitude_deg": "35.066702", + "longitude_deg": "-106.649918", + "elevation_ft": "5000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "no", + "home_link": "http://krqe.com/", + "keywords": "NM82" + }, + { + "id": "23301", + "ident": "NM83", + "type": "small_airport", + "name": "Industrial Airpark", + "latitude_deg": "32.7668", + "longitude_deg": "-103.209", + "elevation_ft": "3707", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Hobbs", + "scheduled_service": "no", + "gps_code": "NM83", + "iata_code": "HBB", + "local_code": "NM83", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hobbs_Army_Airfield", + "keywords": "Hobbs Army Airfield, Hobbs Municipal Airport, Crossroads Intercontinental Airport" + }, + { + "id": "23302", + "ident": "NM84", + "type": "small_airport", + "name": "G Bar F Ranch Airport", + "latitude_deg": "33.544498443603516", + "longitude_deg": "-105.3759994506836", + "elevation_ft": "6505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Capitan", + "scheduled_service": "no", + "gps_code": "NM84", + "local_code": "NM84" + }, + { + "id": "23303", + "ident": "NM85", + "type": "heliport", + "name": "Gila Regional Heliport", + "latitude_deg": "32.798099517822266", + "longitude_deg": "-108.26100158691406", + "elevation_ft": "6097", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Silver City", + "scheduled_service": "no", + "gps_code": "NM85", + "local_code": "NM85" + }, + { + "id": "23304", + "ident": "NM86", + "type": "small_airport", + "name": "Playas Air Strip", + "latitude_deg": "31.936800003051758", + "longitude_deg": "-108.53700256347656", + "elevation_ft": "4519", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Playas", + "scheduled_service": "no", + "gps_code": "NM86", + "local_code": "NM86" + }, + { + "id": "23305", + "ident": "NM87", + "type": "small_airport", + "name": "Jenkins Airport", + "latitude_deg": "33.239231", + "longitude_deg": "-104.474158", + "elevation_ft": "3600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Roswell", + "scheduled_service": "no", + "gps_code": "NM87", + "local_code": "NM87" + }, + { + "id": "23306", + "ident": "NM88", + "type": "small_airport", + "name": "Skywagon Farm Airport", + "latitude_deg": "34.54330063", + "longitude_deg": "-106.7600021", + "elevation_ft": "4770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Bosque", + "scheduled_service": "no", + "gps_code": "NM88", + "local_code": "NM88" + }, + { + "id": "23307", + "ident": "NM89", + "type": "small_airport", + "name": "Manzano-Mountain Air Ranch Airport", + "latitude_deg": "34.7796", + "longitude_deg": "-106.5159", + "elevation_ft": "5630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Los Lunas", + "scheduled_service": "no", + "gps_code": "NM89", + "local_code": "NM89", + "keywords": "Valencia Community Air Ranch" + }, + { + "id": "23308", + "ident": "NM90", + "type": "small_airport", + "name": "Amigos Del Cielo Airport", + "latitude_deg": "31.902736", + "longitude_deg": "-109.024479", + "elevation_ft": "4107", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Rodeo", + "scheduled_service": "no", + "gps_code": "NM90", + "local_code": "NM90", + "keywords": "rodeo, amigos del cielo" + }, + { + "id": "23309", + "ident": "NM91", + "type": "small_airport", + "name": "High Lonesome Airport", + "latitude_deg": "34.62229919", + "longitude_deg": "-108.7900009", + "elevation_ft": "7474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Fence Lake", + "scheduled_service": "no", + "gps_code": "NM91", + "local_code": "NM91" + }, + { + "id": "45544", + "ident": "NM92", + "type": "small_airport", + "name": "Tierra de Dios Airport", + "latitude_deg": "35.295478", + "longitude_deg": "-105.614405", + "elevation_ft": "7050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Rowe", + "scheduled_service": "no", + "gps_code": "NM92", + "local_code": "NM92" + }, + { + "id": "45543", + "ident": "NM93", + "type": "heliport", + "name": "Lovelace Regional Hospital - Roswell Heliport", + "latitude_deg": "33.41762", + "longitude_deg": "-104.521378", + "elevation_ft": "3599", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Roswell", + "scheduled_service": "no", + "gps_code": "NM93", + "local_code": "NM93", + "keywords": "Roswell Regional Hospital" + }, + { + "id": "45541", + "ident": "NM94", + "type": "heliport", + "name": "Nor-Lea Hospital Heliport", + "latitude_deg": "32.965524", + "longitude_deg": "-103.346345", + "elevation_ft": "3925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Lovington", + "scheduled_service": "no", + "gps_code": "NM94", + "local_code": "NM94" + }, + { + "id": "316556", + "ident": "NND", + "type": "small_airport", + "name": "Nangade Airport", + "latitude_deg": "-11.073", + "longitude_deg": "39.68", + "elevation_ft": "825", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-P", + "municipality": "Nangade", + "scheduled_service": "no", + "iata_code": "NND" + }, + { + "id": "41541", + "ident": "NO-0001", + "type": "small_airport", + "name": "Haga Airfield", + "latitude_deg": "60.020267486572266", + "longitude_deg": "11.37908935546875", + "elevation_ft": "489", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "scheduled_service": "no", + "wikipedia_link": "http://no.wikipedia.org/wiki/Haga_flyplass" + }, + { + "id": "41542", + "ident": "NO-0002", + "type": "small_airport", + "name": "Maarud", + "latitude_deg": "60.181304931640625", + "longitude_deg": "11.564483642578125", + "elevation_ft": "430", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "scheduled_service": "no", + "wikipedia_link": "http://no.wikipedia.org/wiki/Maarud_flyplass" + }, + { + "id": "41543", + "ident": "NO-0003", + "type": "seaplane_base", + "name": "Kilen Seaplane Base", + "latitude_deg": "59.89238", + "longitude_deg": "10.59803", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "scheduled_service": "no", + "home_link": "http://www.kilensjoflyklubb.no/" + }, + { + "id": "43129", + "ident": "NO-0004", + "type": "closed", + "name": "Gressholmen Seaplane Base", + "latitude_deg": "59.883888244628906", + "longitude_deg": "10.716667175292969", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-03", + "municipality": "Oslo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gressholmen_Airport" + }, + { + "id": "43130", + "ident": "NO-0005", + "type": "closed", + "name": "Lindøye Seaplane Base", + "latitude_deg": "59.890960693359375", + "longitude_deg": "10.718278884887695", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-03", + "municipality": "Oslo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lind%C3%B8ya" + }, + { + "id": "43131", + "ident": "NO-0006", + "type": "closed", + "name": "Stavanger Airport Forus", + "latitude_deg": "58.89440155", + "longitude_deg": "5.69944000244", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-11", + "municipality": "Stavanger", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stavanger_Airport,_Forus", + "keywords": "Stavanger lufthavn, Forus" + }, + { + "id": "44320", + "ident": "NO-0007", + "type": "small_airport", + "name": "Vermundsjøen Ice Runway", + "latitude_deg": "60.696209", + "longitude_deg": "12.38142", + "elevation_ft": "700", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "scheduled_service": "no", + "keywords": "winter only, frozen lake" + }, + { + "id": "44871", + "ident": "NO-0008", + "type": "small_airport", + "name": "Salangen Airfield Elvenes", + "latitude_deg": "68.870697", + "longitude_deg": "17.978399", + "elevation_ft": "27", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Salangen", + "scheduled_service": "no", + "gps_code": "ENLV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salangen_Airport,_Elvenes" + }, + { + "id": "44872", + "ident": "NO-0009", + "type": "small_airport", + "name": "Grong/Bjørgan Airfield", + "latitude_deg": "64.395309", + "longitude_deg": "12.34108", + "elevation_ft": "550", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-50", + "municipality": "Grong", + "scheduled_service": "no" + }, + { + "id": "44874", + "ident": "NO-0010", + "type": "small_airport", + "name": "Graundalen", + "latitude_deg": "64.0169448852539", + "longitude_deg": "12.682222366333008", + "elevation_ft": "1562", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-50", + "municipality": "Snåsa", + "scheduled_service": "no" + }, + { + "id": "44875", + "ident": "NO-0011", + "type": "small_airport", + "name": "Henning (Nedre Langli)", + "latitude_deg": "63.93138885498047", + "longitude_deg": "11.59000015258789", + "elevation_ft": "316", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-50", + "municipality": "Steinkjer", + "scheduled_service": "no" + }, + { + "id": "44876", + "ident": "NO-0012", + "type": "small_airport", + "name": "Frosta Airfield", + "latitude_deg": "63.57415771484375", + "longitude_deg": "10.719437599182129", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-50", + "municipality": "Frosta", + "scheduled_service": "no" + }, + { + "id": "44877", + "ident": "NO-0013", + "type": "small_airport", + "name": "Agdenes Airfield Breivika", + "latitude_deg": "63.628887", + "longitude_deg": "9.72749996", + "elevation_ft": "260", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-50", + "municipality": "Agdenes", + "scheduled_service": "no" + }, + { + "id": "44878", + "ident": "NO-0014", + "type": "small_airport", + "name": "Meråker Airfield Øian", + "latitude_deg": "63.37083435", + "longitude_deg": "11.8125", + "elevation_ft": "1010", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-50", + "municipality": "Meråker", + "scheduled_service": "no" + }, + { + "id": "44879", + "ident": "NO-0015", + "type": "small_airport", + "name": "Ler Airfield", + "latitude_deg": "63.197383880615234", + "longitude_deg": "10.290842056274414", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-50", + "municipality": "Melhus", + "scheduled_service": "no" + }, + { + "id": "44880", + "ident": "NO-0016", + "type": "small_airport", + "name": "Fiske Airfield", + "latitude_deg": "63.012447357177734", + "longitude_deg": "9.046683311462402", + "elevation_ft": "132", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-15", + "municipality": "Surnadal", + "scheduled_service": "no" + }, + { + "id": "44881", + "ident": "NO-0017", + "type": "small_airport", + "name": "Gravvold Airfield", + "latitude_deg": "63.054722", + "longitude_deg": "8.714167", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-15", + "municipality": "Surnadal", + "scheduled_service": "no" + }, + { + "id": "44882", + "ident": "NO-0018", + "type": "small_airport", + "name": "Gossen Airfield", + "latitude_deg": "62.834999084472656", + "longitude_deg": "6.829999923706055", + "elevation_ft": "46", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-15", + "municipality": "Aukra", + "scheduled_service": "no" + }, + { + "id": "44887", + "ident": "NO-0019", + "type": "small_airport", + "name": "Bjorli Airfield", + "latitude_deg": "62.234754", + "longitude_deg": "8.245797", + "elevation_ft": "1915", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Lesja", + "scheduled_service": "no", + "gps_code": "ENLB" + }, + { + "id": "44888", + "ident": "NO-0020", + "type": "small_airport", + "name": "Wadahl", + "latitude_deg": "61.49944305419922", + "longitude_deg": "9.798333168029785", + "elevation_ft": "3150", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Sør-Fron", + "scheduled_service": "no" + }, + { + "id": "44889", + "ident": "NO-0021", + "type": "small_airport", + "name": "Atna", + "latitude_deg": "61.725799560546875", + "longitude_deg": "10.84220027923584", + "elevation_ft": "1170", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Stor-Elvdal", + "scheduled_service": "no" + }, + { + "id": "44890", + "ident": "NO-0022", + "type": "small_airport", + "name": "Sølenstua Airfield", + "latitude_deg": "61.836666107177734", + "longitude_deg": "11.726666450500488", + "elevation_ft": "1900", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Rendalen", + "scheduled_service": "no" + }, + { + "id": "44891", + "ident": "NO-0023", + "type": "small_airport", + "name": "Rena Airfield Landsørkje", + "latitude_deg": "61.186216", + "longitude_deg": "11.374443", + "elevation_ft": "828", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Åmot", + "scheduled_service": "no" + }, + { + "id": "44892", + "ident": "NO-0024", + "type": "small_airport", + "name": "Mesnali Airfield", + "latitude_deg": "61.083875", + "longitude_deg": "10.684208", + "elevation_ft": "1831", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Ringsaker", + "scheduled_service": "no" + }, + { + "id": "44893", + "ident": "NO-0025", + "type": "small_airport", + "name": "Husodden Airfield", + "latitude_deg": "60.74833297729492", + "longitude_deg": "10.239999771118164", + "elevation_ft": "440", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Søndre Land", + "scheduled_service": "no" + }, + { + "id": "44894", + "ident": "NO-0026", + "type": "small_airport", + "name": "Evje Airfield", + "latitude_deg": "58.60472106933594", + "longitude_deg": "7.8125", + "elevation_ft": "602", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-42", + "municipality": "Evje og Hornnes", + "scheduled_service": "no" + }, + { + "id": "44895", + "ident": "NO-0027", + "type": "small_airport", + "name": "Torsnes Airfield", + "latitude_deg": "59.195556640625", + "longitude_deg": "11.063888549804688", + "elevation_ft": "15", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Borge", + "scheduled_service": "no" + }, + { + "id": "44896", + "ident": "NO-0028", + "type": "closed", + "name": "Vestby Airfield", + "latitude_deg": "59.62055587768555", + "longitude_deg": "10.70111083984375", + "elevation_ft": "300", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Vestby", + "scheduled_service": "no" + }, + { + "id": "46461", + "ident": "NO-0029", + "type": "small_airport", + "name": "Gjølstad Airfield", + "latitude_deg": "60.2666666667", + "longitude_deg": "12.020833333299999", + "elevation_ft": "495", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Kongsvinger", + "scheduled_service": "no" + }, + { + "id": "46502", + "ident": "NO-0030", + "type": "small_airport", + "name": "Ose Airfield", + "latitude_deg": "58.93967", + "longitude_deg": "7.692545", + "elevation_ft": "673", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-42", + "municipality": "Byglund", + "scheduled_service": "no", + "keywords": "ENBY" + }, + { + "id": "301829", + "ident": "NO-0031", + "type": "small_airport", + "name": "Feiring Airfield", + "latitude_deg": "60.5122939002", + "longitude_deg": "11.1881053448", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Feiring", + "scheduled_service": "no" + }, + { + "id": "308241", + "ident": "NO-0032", + "type": "small_airport", + "name": "Bøverbru Airfield", + "latitude_deg": "60.637222", + "longitude_deg": "10.677222", + "elevation_ft": "1348", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "scheduled_service": "no", + "gps_code": "ENBB", + "wikipedia_link": "http://no.wikipedia.org/wiki/Bøverbru_lufthavn" + }, + { + "id": "308253", + "ident": "NO-0033", + "type": "closed", + "name": "Lillehammer Mjøsisen Ice Runway", + "latitude_deg": "61.095", + "longitude_deg": "10.44", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Lillehammer", + "scheduled_service": "no", + "keywords": "Vingnesvika, Mjøsa, Mjøsisen" + }, + { + "id": "314041", + "ident": "NO-0034", + "type": "closed", + "name": "Longyearbyen Airport", + "latitude_deg": "78.214", + "longitude_deg": "15.78", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-21", + "municipality": "Longyearbeyen", + "scheduled_service": "no", + "keywords": "Old Svalbard Airport" + }, + { + "id": "315190", + "ident": "NO-0035", + "type": "closed", + "name": "Old Båtsfjord Airport", + "latitude_deg": "70.5996", + "longitude_deg": "29.6581", + "elevation_ft": "130", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Båtsfjord", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/B%C3%A5tsfjord_Airport_(1973%E2%80%931999)" + }, + { + "id": "316410", + "ident": "NO-0036", + "type": "small_airport", + "name": "Ljørdalen Flyplass", + "latitude_deg": "61.3561484", + "longitude_deg": "12.7570594", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "scheduled_service": "no" + }, + { + "id": "316518", + "ident": "NO-0037", + "type": "heliport", + "name": "Sandnessjøen Heliport, Hospital", + "latitude_deg": "66.01786", + "longitude_deg": "12.615999", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "municipality": "Sandnessjøen", + "scheduled_service": "no" + }, + { + "id": "316639", + "ident": "NO-0038", + "type": "small_airport", + "name": "Masjok", + "latitude_deg": "70.2632144", + "longitude_deg": "28.1542476", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "scheduled_service": "no" + }, + { + "id": "317759", + "ident": "NO-0039", + "type": "small_airport", + "name": "Huseby Airstrip", + "latitude_deg": "59.266927", + "longitude_deg": "10.810549", + "elevation_ft": "125", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Fredrikstad", + "scheduled_service": "no", + "wikipedia_link": "https://no.wikipedia.org/wiki/Huseby_flyplass" + }, + { + "id": "317760", + "ident": "NO-0040", + "type": "small_airport", + "name": "Veum Airstrip", + "latitude_deg": "59.259246", + "longitude_deg": "10.928714", + "elevation_ft": "75", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Fredrikstad", + "scheduled_service": "no", + "wikipedia_link": "https://no.wikipedia.org/wiki/Veum_flyplass" + }, + { + "id": "317761", + "ident": "NO-0041", + "type": "small_airport", + "name": "Spydeberg Airstrip", + "latitude_deg": "59.664273", + "longitude_deg": "11.120224", + "elevation_ft": "500", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Spydeberg", + "scheduled_service": "no", + "wikipedia_link": "https://no.wikipedia.org/wiki/Spydeberg_flyplass" + }, + { + "id": "318070", + "ident": "NO-0042", + "type": "small_airport", + "name": "Rompene Airport", + "latitude_deg": "60.928665", + "longitude_deg": "5.160522", + "elevation_ft": "138", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Dalsøyra", + "scheduled_service": "no", + "home_link": "http://www.hardangermikrofly.com/gulen.html" + }, + { + "id": "318071", + "ident": "NO-0043", + "type": "closed", + "name": "Ripel Airstrip", + "latitude_deg": "59.937908", + "longitude_deg": "5.990483", + "elevation_ft": "157", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Dimmelsvik", + "scheduled_service": "no" + }, + { + "id": "318217", + "ident": "NO-0044", + "type": "heliport", + "name": "Haukeland Universitetssykehus Heliport", + "latitude_deg": "60.373145", + "longitude_deg": "5.358187", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Bergen", + "scheduled_service": "no", + "gps_code": "ENBX" + }, + { + "id": "318218", + "ident": "NO-0045", + "type": "heliport", + "name": "Kalnes Sykehus Heliport", + "latitude_deg": "59.318903", + "longitude_deg": "11.023619", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "scheduled_service": "no" + }, + { + "id": "318219", + "ident": "NO-0046", + "type": "closed", + "name": "Kjøllefjord Airport", + "latitude_deg": "70.940661", + "longitude_deg": "27.348868", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Kjøllefjord", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kj%C3%B8llefjord_Airport" + }, + { + "id": "319094", + "ident": "NO-0047", + "type": "heliport", + "name": "Bykle Heliport, Hovden", + "latitude_deg": "59.52691", + "longitude_deg": "7.368471", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-42", + "municipality": "Bykle", + "scheduled_service": "no" + }, + { + "id": "319100", + "ident": "NO-0048", + "type": "heliport", + "name": "Harstad Heliport, Stangnes South", + "latitude_deg": "68.779639", + "longitude_deg": "16.595484", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Harstad", + "scheduled_service": "no" + }, + { + "id": "319102", + "ident": "NO-0049", + "type": "heliport", + "name": "Harstad Heliport, Hospital", + "latitude_deg": "68.795754", + "longitude_deg": "16.525452", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Harstad", + "scheduled_service": "no" + }, + { + "id": "319106", + "ident": "NO-0050", + "type": "heliport", + "name": "Kinsarvik Heliport, Husemoen", + "latitude_deg": "60.361583", + "longitude_deg": "6.740877", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Kinsarvik", + "scheduled_service": "no" + }, + { + "id": "319107", + "ident": "NO-0051", + "type": "heliport", + "name": "Kristiansand Heliport, Hospital", + "latitude_deg": "58.164124", + "longitude_deg": "7.981816", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-42", + "municipality": "Kristiansand", + "scheduled_service": "no" + }, + { + "id": "319108", + "ident": "NO-0052", + "type": "heliport", + "name": "Kristiansund Heliport, Hospital", + "latitude_deg": "63.107631", + "longitude_deg": "7.723485", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-15", + "municipality": "Kristiansund", + "scheduled_service": "no" + }, + { + "id": "319111", + "ident": "NO-0053", + "type": "heliport", + "name": "Molde Heliport, Hospital", + "latitude_deg": "62.737088", + "longitude_deg": "7.135475", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-15", + "municipality": "Molde", + "scheduled_service": "no" + }, + { + "id": "319133", + "ident": "NO-0054", + "type": "small_airport", + "name": "Stryn Airstrip", + "latitude_deg": "61.910104", + "longitude_deg": "6.755442", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Stryn", + "scheduled_service": "no" + }, + { + "id": "319148", + "ident": "NO-0055", + "type": "heliport", + "name": "Suldal Heliport", + "latitude_deg": "59.483614", + "longitude_deg": "6.272332", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-11", + "municipality": "Suldal", + "scheduled_service": "no" + }, + { + "id": "319149", + "ident": "NO-0056", + "type": "heliport", + "name": "Stryn Heliport", + "latitude_deg": "61.898835", + "longitude_deg": "6.618564", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Stryn", + "scheduled_service": "no" + }, + { + "id": "319150", + "ident": "NO-0057", + "type": "heliport", + "name": "Tønsberg Heliport, Hospital", + "latitude_deg": "59.273235", + "longitude_deg": "10.41618", + "elevation_ft": "130", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-38", + "municipality": "Tønsberg", + "scheduled_service": "no", + "gps_code": "ENTH" + }, + { + "id": "319151", + "ident": "NO-0058", + "type": "heliport", + "name": "Tromsø Heliport, University Hospital", + "latitude_deg": "69.683925", + "longitude_deg": "18.984699", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Tromsø", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Troms%C3%B8_Heliport,_University_Hospital" + }, + { + "id": "319355", + "ident": "NO-0059", + "type": "small_airport", + "name": "Setermoen Airstrip", + "latitude_deg": "68.855913", + "longitude_deg": "18.351421", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Setermoen", + "scheduled_service": "no" + }, + { + "id": "319356", + "ident": "NO-0060", + "type": "small_airport", + "name": "Overhalla Airstrip", + "latitude_deg": "64.528154", + "longitude_deg": "11.989258", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-50", + "municipality": "Overhalla", + "scheduled_service": "no" + }, + { + "id": "319357", + "ident": "NO-0061", + "type": "small_airport", + "name": "Eidsberg Airstrip", + "latitude_deg": "59.535537", + "longitude_deg": "11.243937", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "scheduled_service": "no" + }, + { + "id": "319358", + "ident": "NO-0062", + "type": "small_airport", + "name": "Trøgstad Airfield", + "latitude_deg": "59.68386", + "longitude_deg": "11.295353", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "scheduled_service": "no" + }, + { + "id": "320232", + "ident": "NO-0063", + "type": "small_airport", + "name": "Gjerstad Gård Airstrip", + "latitude_deg": "60.2574", + "longitude_deg": "11.7511", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Skarnes", + "scheduled_service": "no", + "home_link": "http://www.xn--gjerstadgrd-58a.no/" + }, + { + "id": "320943", + "ident": "NO-0064", + "type": "small_airport", + "name": "Svenningdal Airstrip", + "latitude_deg": "65.442929", + "longitude_deg": "13.407617", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "scheduled_service": "no" + }, + { + "id": "320989", + "ident": "NO-0065", + "type": "heliport", + "name": "Haakonsvern Heliport", + "latitude_deg": "60.332448", + "longitude_deg": "5.232265", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Bergen", + "scheduled_service": "no" + }, + { + "id": "322518", + "ident": "NO-0066", + "type": "heliport", + "name": "Kårstø Heliport", + "latitude_deg": "59.279738", + "longitude_deg": "5.527145", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-11", + "municipality": "Kårstø", + "scheduled_service": "no" + }, + { + "id": "322796", + "ident": "NO-0067", + "type": "closed", + "name": "Herdla Airport", + "latitude_deg": "60.578382", + "longitude_deg": "4.960047", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Bergen", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Herdla_Airport" + }, + { + "id": "322797", + "ident": "NO-0068", + "type": "seaplane_base", + "name": "Bergen Seaplane Base, Sandviken", + "latitude_deg": "60.408154", + "longitude_deg": "5.319931", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Bergen", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bergen_Airport,_Sandviken" + }, + { + "id": "322798", + "ident": "NO-0069", + "type": "heliport", + "name": "Bergen Heliport, Sandviken", + "latitude_deg": "60.409302", + "longitude_deg": "5.317071", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Bergen", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bergen_Airport,_Sandviken" + }, + { + "id": "322981", + "ident": "NO-0070", + "type": "small_airport", + "name": "Gulli Airstrip", + "latitude_deg": "60.133889", + "longitude_deg": "11.453333", + "elevation_ft": "500", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Nes", + "scheduled_service": "no", + "wikipedia_link": "https://no.wikipedia.org/wiki/Gulli_flyplass" + }, + { + "id": "325185", + "ident": "NO-0071", + "type": "closed", + "name": "Hurdal Airstrip", + "latitude_deg": "60.361748", + "longitude_deg": "11.091508", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "scheduled_service": "no" + }, + { + "id": "329238", + "ident": "NO-0072", + "type": "heliport", + "name": "Airlift Ljosland", + "latitude_deg": "58.7899624", + "longitude_deg": "7.3558677", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-42", + "municipality": "Ljosland", + "scheduled_service": "no" + }, + { + "id": "326391", + "ident": "NO-0073", + "type": "small_airport", + "name": "Ballangen Airfield", + "latitude_deg": "68.33635", + "longitude_deg": "16.830884", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "municipality": "Ballangen", + "scheduled_service": "no" + }, + { + "id": "332095", + "ident": "NO-0074", + "type": "small_airport", + "name": "Villmobakken Airstrip", + "latitude_deg": "70.2121625", + "longitude_deg": "19.6235079", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "scheduled_service": "no" + }, + { + "id": "328685", + "ident": "NO-0075", + "type": "closed", + "name": "Gamvik Airport", + "latitude_deg": "71.078925", + "longitude_deg": "28.225927", + "elevation_ft": "79", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Gamvik", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gamvik_Airport", + "keywords": "Slettnes" + }, + { + "id": "329250", + "ident": "NO-0076", + "type": "heliport", + "name": "Djupvik Heliport", + "latitude_deg": "68.451455", + "longitude_deg": "17.532497", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "municipality": "Narvik", + "scheduled_service": "no" + }, + { + "id": "332157", + "ident": "NO-0077", + "type": "small_airport", + "name": "Gairasmoen Airstrip", + "latitude_deg": "69.9588154", + "longitude_deg": "24.9638128", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "scheduled_service": "no" + }, + { + "id": "332210", + "ident": "NO-0078", + "type": "small_airport", + "name": "Maggi Beach Airstrip", + "latitude_deg": "69.457328", + "longitude_deg": "25.460852", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "scheduled_service": "no" + }, + { + "id": "332211", + "ident": "NO-0079", + "type": "small_airport", + "name": "Veslemoen Airstrip", + "latitude_deg": "70.2900176", + "longitude_deg": "24.1102749", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "scheduled_service": "no" + }, + { + "id": "332212", + "ident": "NO-0080", + "type": "small_airport", + "name": "Ravnastua Airstrip", + "latitude_deg": "69.527306", + "longitude_deg": "24.95613", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "scheduled_service": "no", + "keywords": "Gárdin" + }, + { + "id": "332374", + "ident": "NO-0081", + "type": "heliport", + "name": "Tana Bru Heliport", + "latitude_deg": "70.200968", + "longitude_deg": "28.1920029", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "scheduled_service": "no" + }, + { + "id": "332946", + "ident": "NO-0082", + "type": "small_airport", + "name": "Skogn Flyplass", + "latitude_deg": "63.695658", + "longitude_deg": "11.226687", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-50", + "scheduled_service": "no" + }, + { + "id": "332947", + "ident": "NO-0083", + "type": "small_airport", + "name": "Skarva Airfield", + "latitude_deg": "63.845275", + "longitude_deg": "11.344714", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-50", + "scheduled_service": "no" + }, + { + "id": "333671", + "ident": "NO-0084", + "type": "small_airport", + "name": "Åsegardmoen Airfield", + "latitude_deg": "68.790262", + "longitude_deg": "16.447434", + "elevation_ft": "325", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-54", + "municipality": "Harstad", + "scheduled_service": "no" + }, + { + "id": "334040", + "ident": "NO-0085", + "type": "small_airport", + "name": "Lier flyplass", + "latitude_deg": "59.884192", + "longitude_deg": "10.280081", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Sylling", + "scheduled_service": "no" + }, + { + "id": "336495", + "ident": "NO-0086", + "type": "small_airport", + "name": "Askestad Airstrip", + "latitude_deg": "59.74841", + "longitude_deg": "10.35351", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "scheduled_service": "no" + }, + { + "id": "336883", + "ident": "NO-0087", + "type": "heliport", + "name": "Hovland Hovedgaard Heliport", + "latitude_deg": "60.262379", + "longitude_deg": "5.244887", + "elevation_ft": "46", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "municipality": "Hjellestad", + "scheduled_service": "no" + }, + { + "id": "337058", + "ident": "NO-0088", + "type": "heliport", + "name": "Politiets nasjonale beredskapssenter Heliport", + "latitude_deg": "59.803322", + "longitude_deg": "10.840727", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "scheduled_service": "no" + }, + { + "id": "337924", + "ident": "NO-0089", + "type": "heliport", + "name": "Hegglandsdalen Flyplass", + "latitude_deg": "60.21776", + "longitude_deg": "5.52723", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-46", + "scheduled_service": "no" + }, + { + "id": "344033", + "ident": "NO-0090", + "type": "small_airport", + "name": "Løten Forest Airstrip", + "latitude_deg": "60.81586", + "longitude_deg": "11.40666", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "scheduled_service": "no" + }, + { + "id": "344170", + "ident": "NO-0091", + "type": "small_airport", + "name": "Hjerkinn flyplass", + "latitude_deg": "62.19536", + "longitude_deg": "9.63733", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "scheduled_service": "no", + "wikipedia_link": "https://no.wikipedia.org/wiki/Hjerkinn_flyplass", + "keywords": "Hjerkinnsholen" + }, + { + "id": "345031", + "ident": "NO-0092", + "type": "small_airport", + "name": "Skitnerød flyplass", + "latitude_deg": "58.98093", + "longitude_deg": "9.84491", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-38", + "scheduled_service": "no" + }, + { + "id": "345600", + "ident": "NO-0093", + "type": "small_airport", + "name": "Ruteig Airstrip", + "latitude_deg": "59.47519", + "longitude_deg": "10.19461", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-38", + "scheduled_service": "no" + }, + { + "id": "346206", + "ident": "NO-0094", + "type": "small_airport", + "name": "Blestergrende Airstrip", + "latitude_deg": "62.079959", + "longitude_deg": "9.060599", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "scheduled_service": "no" + }, + { + "id": "346268", + "ident": "NO-0095", + "type": "small_airport", + "name": "Nord-Herøy Island Airstrip", + "latitude_deg": "65.98784", + "longitude_deg": "12.30965", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-18", + "scheduled_service": "no" + }, + { + "id": "346542", + "ident": "NO-0096", + "type": "seaplane_base", + "name": "Sola Sjø, Sømmevågen", + "latitude_deg": "58.89914", + "longitude_deg": "5.63323", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-11", + "scheduled_service": "no" + }, + { + "id": "346800", + "ident": "NO-0097", + "type": "small_airport", + "name": "Haslemoen Flyplass", + "latitude_deg": "60.655664", + "longitude_deg": "11.909072", + "elevation_ft": "575", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Våler", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Haslemoen_Airstrip" + }, + { + "id": "348264", + "ident": "NO-0098", + "type": "closed", + "name": "Ålesund Sørneset Seaplane Base", + "latitude_deg": "62.46868", + "longitude_deg": "6.2264", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-15", + "municipality": "Ålesund", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%85lesund_Airport,_S%C3%B8rneset" + }, + { + "id": "28117", + "ident": "NO-0099", + "type": "closed", + "name": "Oslo, Fornebu Airport", + "latitude_deg": "59.895802", + "longitude_deg": "10.6172", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-30", + "municipality": "Oslo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oslo_Airport%2C_Fornebu", + "keywords": "ENFB, FBU" + }, + { + "id": "352332", + "ident": "NO-0100", + "type": "small_airport", + "name": "Storsjøen Ice", + "latitude_deg": "60.40975", + "longitude_deg": "11.620789", + "elevation_ft": "433", + "continent": "EU", + "iso_country": "NO", + "iso_region": "NO-34", + "municipality": "Nord-Odal", + "scheduled_service": "no", + "home_link": "https://www.facebook.com/groups/608370225975537", + "keywords": "winter, ice" + }, + { + "id": "306971", + "ident": "NOM", + "type": "small_airport", + "name": "Nomad River Airport", + "latitude_deg": "-6.294", + "longitude_deg": "142.234166667", + "elevation_ft": "305", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Nomad River", + "scheduled_service": "no", + "iata_code": "NOM", + "local_code": "NDR", + "wikipedia_link": "https://en.wikipedia.org/w/index.php?title=Nomad_River_Airport&action=edit&redlink=1" + }, + { + "id": "308248", + "ident": "NOO", + "type": "small_airport", + "name": "Naoro Airport", + "latitude_deg": "-9.254455", + "longitude_deg": "147.621352", + "elevation_ft": "2372", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Naoro Vilage", + "scheduled_service": "no", + "iata_code": "NOO", + "local_code": "NAO" + }, + { + "id": "308292", + "ident": "NP-0001", + "type": "small_airport", + "name": "Kamal Bazar Airport", + "latitude_deg": "29.0531", + "longitude_deg": "81.34256", + "elevation_ft": "6440", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P7", + "municipality": "Kamal Bazar", + "scheduled_service": "no" + }, + { + "id": "315129", + "ident": "NP-0002", + "type": "small_airport", + "name": "Talcha Rara Mugu Airport", + "latitude_deg": "29.5211", + "longitude_deg": "82.1468", + "elevation_ft": "8970", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P6", + "municipality": "Karkibada", + "scheduled_service": "no", + "gps_code": "VNRR", + "local_code": "VNT1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Talcha_Airport" + }, + { + "id": "342097", + "ident": "NP-0003", + "type": "medium_airport", + "name": "Pokhara International Airport", + "latitude_deg": "28.1838", + "longitude_deg": "84.0147", + "elevation_ft": "2595", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P4", + "municipality": "Pokhara", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pokhara_International_Airport" + }, + { + "id": "350891", + "ident": "NP-0004", + "type": "heliport", + "name": "Hotel Everest View Heliport", + "latitude_deg": "27.8156", + "longitude_deg": "86.72319", + "elevation_ft": "12623", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Khumjung", + "scheduled_service": "no" + }, + { + "id": "350892", + "ident": "NP-0005", + "type": "heliport", + "name": "Tengboche Monastery Heliport", + "latitude_deg": "27.83644", + "longitude_deg": "86.76099", + "elevation_ft": "12703", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Khumjung", + "scheduled_service": "no" + }, + { + "id": "350893", + "ident": "NP-0006", + "type": "heliport", + "name": "Rivendell Lodge Heliport", + "latitude_deg": "27.84001", + "longitude_deg": "86.7697", + "elevation_ft": "12182", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Khumjung", + "scheduled_service": "no" + }, + { + "id": "350894", + "ident": "NP-0007", + "type": "heliport", + "name": "Mount Everest Base Camp Heliport", + "latitude_deg": "28.00369", + "longitude_deg": "86.85324", + "elevation_ft": "17372", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Khumjung", + "scheduled_service": "no" + }, + { + "id": "350895", + "ident": "NP-0008", + "type": "heliport", + "name": "Pheriche Heliport", + "latitude_deg": "27.89382", + "longitude_deg": "86.8189", + "elevation_ft": "13957", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Khumjung", + "scheduled_service": "no" + }, + { + "id": "350896", + "ident": "NP-0009", + "type": "heliport", + "name": "Kala Patthar Heliport", + "latitude_deg": "27.98714", + "longitude_deg": "86.83184", + "elevation_ft": "17347", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Khumjung", + "scheduled_service": "no" + }, + { + "id": "350897", + "ident": "NP-0010", + "type": "heliport", + "name": "Tengboche Heliport", + "latitude_deg": "27.83571", + "longitude_deg": "86.76515", + "elevation_ft": "12648", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Khumjung", + "scheduled_service": "no" + }, + { + "id": "350898", + "ident": "NP-0011", + "type": "heliport", + "name": "Khumjung Heliport", + "latitude_deg": "27.82213", + "longitude_deg": "86.72294", + "elevation_ft": "12418", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Khumjung", + "scheduled_service": "no" + }, + { + "id": "350899", + "ident": "NP-0012", + "type": "heliport", + "name": "Namche Bazar Heliport", + "latitude_deg": "27.80332", + "longitude_deg": "86.70641", + "elevation_ft": "11512", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Namche", + "scheduled_service": "no" + }, + { + "id": "350900", + "ident": "NP-0013", + "type": "heliport", + "name": "Thame Helipad Solukhumbu Nepal", + "latitude_deg": "27.83057", + "longitude_deg": "86.65257", + "elevation_ft": "12408", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Namche", + "scheduled_service": "no" + }, + { + "id": "350901", + "ident": "NP-0014", + "type": "heliport", + "name": "Lokhim Heliport", + "latitude_deg": "27.43895", + "longitude_deg": "86.7452", + "elevation_ft": "5440", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Lokhim", + "scheduled_service": "no" + }, + { + "id": "350902", + "ident": "NP-0015", + "type": "small_airport", + "name": "Khanidanda Airport", + "latitude_deg": "27.18117", + "longitude_deg": "86.77185", + "elevation_ft": "4455", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Diktel", + "scheduled_service": "no" + }, + { + "id": "350903", + "ident": "NP-0016", + "type": "heliport", + "name": "Magpa Army Heliport", + "latitude_deg": "27.35687", + "longitude_deg": "86.74819", + "elevation_ft": "6936", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Magpa", + "scheduled_service": "no" + }, + { + "id": "351650", + "ident": "NP-0017", + "type": "heliport", + "name": "Pathibhara Devi Temple Heliport", + "latitude_deg": "27.42868", + "longitude_deg": "87.76665", + "elevation_ft": "12398", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Taplejung", + "scheduled_service": "no" + }, + { + "id": "351651", + "ident": "NP-0018", + "type": "heliport", + "name": "Pathibhara Lodge Heliport", + "latitude_deg": "27.41639", + "longitude_deg": "87.7621", + "elevation_ft": "10486", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Taplejung", + "scheduled_service": "no" + }, + { + "id": "35199", + "ident": "NP-MWP", + "type": "small_airport", + "name": "Mountain Airport", + "latitude_deg": "28", + "longitude_deg": "85.333", + "elevation_ft": "8700", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P3", + "municipality": "Mountain", + "scheduled_service": "no", + "keywords": "MWP" + }, + { + "id": "312744", + "ident": "NPG", + "type": "small_airport", + "name": "Nipa Airport", + "latitude_deg": "-6.1454", + "longitude_deg": "143.4531", + "elevation_ft": "5765", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Nipa", + "scheduled_service": "no", + "iata_code": "NPG" + }, + { + "id": "45690", + "ident": "NR00", + "type": "heliport", + "name": "Valley Heliport", + "latitude_deg": "35.081111", + "longitude_deg": "-78.945833", + "elevation_ft": "232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "NR00", + "local_code": "NR00" + }, + { + "id": "45682", + "ident": "NR01", + "type": "closed", + "name": "Kitty Hawk One Heliport", + "latitude_deg": "36.072009", + "longitude_deg": "-75.693725", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Kitty Hawk", + "scheduled_service": "no", + "keywords": "NR01" + }, + { + "id": "45697", + "ident": "NR02", + "type": "small_airport", + "name": "Jordan Field", + "latitude_deg": "35.237778", + "longitude_deg": "-79.995556", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Mount Gilead", + "scheduled_service": "no", + "gps_code": "NR02", + "local_code": "NR02" + }, + { + "id": "346062", + "ident": "NR03", + "type": "heliport", + "name": "Highlands - Cashiers Hospital Heliport", + "latitude_deg": "35.086006", + "longitude_deg": "-83.186867", + "elevation_ft": "3960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Highlands", + "scheduled_service": "no", + "gps_code": "NR03", + "local_code": "NR03" + }, + { + "id": "45689", + "ident": "NR04", + "type": "small_airport", + "name": "Southern Skies Airstrip", + "latitude_deg": "35.960278", + "longitude_deg": "-81.173056", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Taylorsville", + "scheduled_service": "no", + "gps_code": "NR04", + "local_code": "NR04" + }, + { + "id": "45684", + "ident": "NR05", + "type": "closed", + "name": "Lowe's Wilkesboro Heliport", + "latitude_deg": "36.146972", + "longitude_deg": "-81.204715", + "elevation_ft": "1163", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Wilkesboro", + "scheduled_service": "no", + "keywords": "NR05" + }, + { + "id": "45680", + "ident": "NR06", + "type": "heliport", + "name": "Hunter Construction Heliport", + "latitude_deg": "35.562778", + "longitude_deg": "-80.830278", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Mooresville", + "scheduled_service": "no", + "gps_code": "NR06", + "local_code": "NR06" + }, + { + "id": "346682", + "ident": "NR07", + "type": "heliport", + "name": "Yancey EMS Medical Heliport", + "latitude_deg": "35.917007", + "longitude_deg": "-82.33268", + "elevation_ft": "2820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Burnsville", + "scheduled_service": "no", + "gps_code": "NR07", + "local_code": "NR07" + }, + { + "id": "324482", + "ident": "NR15", + "type": "heliport", + "name": "Brunswick Nuclear Plant Helipad", + "latitude_deg": "33.953409", + "longitude_deg": "-78.012394", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Southport", + "scheduled_service": "no", + "gps_code": "NR15", + "local_code": "NR15" + }, + { + "id": "337226", + "ident": "NR17", + "type": "closed", + "name": "Wilson Medical Center Heliport", + "latitude_deg": "35.71741", + "longitude_deg": "-77.944361", + "elevation_ft": "147", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Wilson", + "scheduled_service": "no", + "gps_code": "NR17", + "local_code": "NR17" + }, + { + "id": "345612", + "ident": "NR20", + "type": "small_airport", + "name": "Raeford West Airport", + "latitude_deg": "35.030554", + "longitude_deg": "-79.236649", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Raeford", + "scheduled_service": "no", + "gps_code": "NR20", + "local_code": "NR20" + }, + { + "id": "324420", + "ident": "NR25", + "type": "heliport", + "name": "Vidant Multispecialty Clinic Heliport", + "latitude_deg": "35.550277", + "longitude_deg": "-76.623888", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Belhaven", + "scheduled_service": "no", + "gps_code": "NR25", + "local_code": "NR25" + }, + { + "id": "341619", + "ident": "NR27", + "type": "heliport", + "name": "Saw Home Heliport", + "latitude_deg": "35.970895", + "longitude_deg": "-77.850451", + "elevation_ft": "158", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Rocky Mount", + "scheduled_service": "no", + "gps_code": "NR27", + "local_code": "NR27" + }, + { + "id": "337165", + "ident": "NR28", + "type": "heliport", + "name": "Sampson County Heliport", + "latitude_deg": "35.196975", + "longitude_deg": "-78.484692", + "elevation_ft": "192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Dunn", + "scheduled_service": "no", + "gps_code": "NR28", + "local_code": "NR28" + }, + { + "id": "325064", + "ident": "NR30", + "type": "heliport", + "name": "Atrium Health Harrisburg Heliport", + "latitude_deg": "35.285888", + "longitude_deg": "-80.666383", + "elevation_ft": "723", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Charlotte", + "scheduled_service": "no", + "gps_code": "NR30", + "local_code": "NR30", + "keywords": "Harrisburg Hospital Heliport" + }, + { + "id": "337166", + "ident": "NR35", + "type": "heliport", + "name": "Central Carolina Hospital Heliport", + "latitude_deg": "35.468936", + "longitude_deg": "-79.186234", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Sanford", + "scheduled_service": "no", + "gps_code": "NR35", + "local_code": "NR35" + }, + { + "id": "335349", + "ident": "NR37", + "type": "small_airport", + "name": "Suter Field", + "latitude_deg": "35.057099", + "longitude_deg": "-77.462266", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Trenton", + "scheduled_service": "no", + "gps_code": "NR37", + "local_code": "NR37" + }, + { + "id": "325832", + "ident": "NR40", + "type": "small_airport", + "name": "Als Airport", + "latitude_deg": "35.820833", + "longitude_deg": "-77.378889", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Bethel", + "scheduled_service": "no", + "gps_code": "NR40", + "local_code": "NR40" + }, + { + "id": "341621", + "ident": "NR51", + "type": "heliport", + "name": "Firing Range Heliport", + "latitude_deg": "35.799285", + "longitude_deg": "-77.603479", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Pinetops", + "scheduled_service": "no", + "gps_code": "NR51", + "local_code": "NR51" + }, + { + "id": "341622", + "ident": "NR66", + "type": "heliport", + "name": "JLW Home Heliport", + "latitude_deg": "35.964722", + "longitude_deg": "-77.860833", + "elevation_ft": "158", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Rocky Mount", + "scheduled_service": "no", + "gps_code": "NR66", + "local_code": "NR66" + }, + { + "id": "341069", + "ident": "NR68", + "type": "small_airport", + "name": "Loop Field Ultralight Flightpark", + "latitude_deg": "35.405597", + "longitude_deg": "-78.940375", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Lillington", + "scheduled_service": "no", + "gps_code": "NR68", + "local_code": "NR68" + }, + { + "id": "346554", + "ident": "NR80", + "type": "heliport", + "name": "CaroMont Regional Medical Center Heliport", + "latitude_deg": "35.274038", + "longitude_deg": "-81.139183", + "elevation_ft": "789", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Gastonia", + "scheduled_service": "no", + "gps_code": "NR80", + "local_code": "NR80" + }, + { + "id": "338956", + "ident": "NR84", + "type": "heliport", + "name": "Warren Recreational Complex Heliport", + "latitude_deg": "36.434486", + "longitude_deg": "-78.129989", + "elevation_ft": "438", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Warrenton", + "scheduled_service": "no", + "gps_code": "NR84", + "local_code": "NR84" + }, + { + "id": "345567", + "ident": "NR88", + "type": "small_airport", + "name": "Tobacco Road Airport", + "latitude_deg": "35.280564", + "longitude_deg": "-79.387797", + "elevation_ft": "478", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Carthage", + "scheduled_service": "no", + "gps_code": "NR88", + "local_code": "NR88" + }, + { + "id": "341624", + "ident": "NR89", + "type": "heliport", + "name": "Steve's Farm Heliport", + "latitude_deg": "36.044722", + "longitude_deg": "-77.601667", + "elevation_ft": "104", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Whitakers", + "scheduled_service": "no", + "gps_code": "NR89", + "local_code": "NR89" + }, + { + "id": "337167", + "ident": "NR91", + "type": "heliport", + "name": "Lumberton Emergency Rescue Unit Heliport", + "latitude_deg": "34.639047", + "longitude_deg": "-79.004408", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Lumberton", + "scheduled_service": "no", + "gps_code": "NR91", + "local_code": "NR91" + }, + { + "id": "346754", + "ident": "NR94", + "type": "small_airport", + "name": "Heavenly Acres Airport", + "latitude_deg": "36.522324", + "longitude_deg": "-80.27755", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Lawsonville", + "scheduled_service": "no", + "gps_code": "NR94", + "local_code": "NR94", + "keywords": "https://www.airnav.com/airport/NR94" + }, + { + "id": "324948", + "ident": "NR99", + "type": "heliport", + "name": "Corolla Fire Station Heliport", + "latitude_deg": "36.331436", + "longitude_deg": "-75.813566", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Corolla", + "scheduled_service": "no", + "gps_code": "NR99", + "local_code": "NR99" + }, + { + "id": "23311", + "ident": "NRC", + "type": "closed", + "name": "NASA Crows Landing Airport", + "latitude_deg": "37.408000946045", + "longitude_deg": "-121.10900115967", + "elevation_ft": "166", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Crows Landing", + "scheduled_service": "no", + "gps_code": "KNRC", + "iata_code": "NRC", + "local_code": "NRC", + "wikipedia_link": "https://en.wikipedia.org/wiki/NASA_Crows_Landing_Airport", + "keywords": "NALF Crows Landing" + }, + { + "id": "316557", + "ident": "NRY", + "type": "small_airport", + "name": "Newry Airport", + "latitude_deg": "-16.0442", + "longitude_deg": "129.2638", + "elevation_ft": "304", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Newry", + "scheduled_service": "no", + "iata_code": "NRY" + }, + { + "id": "32097", + "ident": "NSAS", + "type": "small_airport", + "name": "Ofu Airport", + "latitude_deg": "-14.1844", + "longitude_deg": "-169.669998", + "elevation_ft": "9", + "continent": "OC", + "iso_country": "AS", + "iso_region": "AS-MA", + "municipality": "Ofu", + "scheduled_service": "yes", + "gps_code": "NSAS", + "iata_code": "OFU", + "local_code": "Z08", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ofu_Airport" + }, + { + "id": "30608", + "ident": "NSAU", + "type": "small_airport", + "name": "Asau Airport", + "latitude_deg": "-13.505132", + "longitude_deg": "-172.627888", + "continent": "OC", + "iso_country": "WS", + "iso_region": "WS-VS", + "municipality": "Asau", + "scheduled_service": "yes", + "gps_code": "NSAU", + "iata_code": "AAU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Asau_Airport" + }, + { + "id": "4976", + "ident": "NSFA", + "type": "medium_airport", + "name": "Faleolo International Airport", + "latitude_deg": "-13.829999923706055", + "longitude_deg": "-172.00799560546875", + "elevation_ft": "58", + "continent": "OC", + "iso_country": "WS", + "iso_region": "WS-AA", + "municipality": "Apia", + "scheduled_service": "yes", + "gps_code": "NSFA", + "iata_code": "APW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Faleolo_International_Airport" + }, + { + "id": "31127", + "ident": "NSFI", + "type": "closed", + "name": "Fagali'i Airport", + "latitude_deg": "-13.849167", + "longitude_deg": "-171.739866", + "elevation_ft": "131", + "continent": "OC", + "iso_country": "WS", + "iso_region": "WS-TU", + "municipality": "Apia", + "scheduled_service": "no", + "gps_code": "NSFI", + "iata_code": "FGI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fagali'i_Airport" + }, + { + "id": "4977", + "ident": "NSFQ", + "type": "medium_airport", + "name": "Fitiuta Airport", + "latitude_deg": "-14.215622", + "longitude_deg": "-169.424254", + "elevation_ft": "110", + "continent": "OC", + "iso_country": "AS", + "iso_region": "AS-MA", + "municipality": "Fitiuta Village", + "scheduled_service": "yes", + "gps_code": "NSFQ", + "iata_code": "FTI", + "local_code": "FAQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fitiuta_Airport" + }, + { + "id": "35173", + "ident": "NSMA", + "type": "small_airport", + "name": "Maota Airport", + "latitude_deg": "-13.742300033569336", + "longitude_deg": "-172.25799560546875", + "continent": "OC", + "iso_country": "WS", + "iso_region": "WS-PA", + "municipality": "Maota", + "scheduled_service": "yes", + "gps_code": "NSMA", + "iata_code": "MXS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maota_Airport", + "keywords": "Savaii Island" + }, + { + "id": "4978", + "ident": "NSTU", + "type": "medium_airport", + "name": "Pago Pago International Airport", + "latitude_deg": "-14.331", + "longitude_deg": "-170.710007", + "elevation_ft": "32", + "continent": "OC", + "iso_country": "AS", + "iso_region": "AS-WT", + "municipality": "Pago Pago", + "scheduled_service": "yes", + "gps_code": "NSTU", + "iata_code": "PPG", + "local_code": "PPG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pago_Pago_International_Airport" + }, + { + "id": "316560", + "ident": "NTA", + "type": "closed", + "name": "Natadola Airport", + "latitude_deg": "-18.0677", + "longitude_deg": "177.315", + "elevation_ft": "12", + "continent": "OC", + "iso_country": "FJ", + "iso_region": "FJ-W", + "municipality": "Mbatiri", + "scheduled_service": "no", + "iata_code": "NTA" + }, + { + "id": "4979", + "ident": "NTAA", + "type": "large_airport", + "name": "Faa'a International Airport", + "latitude_deg": "-17.553699", + "longitude_deg": "-149.606995", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Papeete", + "scheduled_service": "yes", + "gps_code": "NTAA", + "iata_code": "PPT", + "home_link": "https://www.aeroports-voyages.fr/en/airport/tahiti-island/PPT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Faa'a_International_Airport" + }, + { + "id": "309518", + "ident": "NTAM", + "type": "small_airport", + "name": "Rimatara Airport", + "latitude_deg": "-22.63725", + "longitude_deg": "-152.8059", + "elevation_ft": "60", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Rimatara Island", + "scheduled_service": "yes", + "gps_code": "NTAM", + "iata_code": "RMT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rimatara_Airport" + }, + { + "id": "4980", + "ident": "NTAR", + "type": "medium_airport", + "name": "Rurutu Airport", + "latitude_deg": "-22.434099197387695", + "longitude_deg": "-151.36099243164062", + "elevation_ft": "18", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "scheduled_service": "yes", + "gps_code": "NTAR", + "iata_code": "RUR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rurutu_Airport" + }, + { + "id": "4981", + "ident": "NTAT", + "type": "medium_airport", + "name": "Tubuai Airport", + "latitude_deg": "-23.365400314331055", + "longitude_deg": "-149.5240020751953", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "scheduled_service": "yes", + "gps_code": "NTAT", + "iata_code": "TUB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tubuai_-_Mataura_Airport" + }, + { + "id": "4982", + "ident": "NTAV", + "type": "small_airport", + "name": "Raivavae Airport", + "latitude_deg": "-23.885200500499998", + "longitude_deg": "-147.662002563", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "scheduled_service": "no", + "gps_code": "NTAV", + "iata_code": "RVV" + }, + { + "id": "4983", + "ident": "NTGA", + "type": "medium_airport", + "name": "Anaa Airport", + "latitude_deg": "-17.3526", + "longitude_deg": "-145.509995", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Anaa", + "scheduled_service": "yes", + "gps_code": "NTGA", + "iata_code": "AAA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anaa_Airport" + }, + { + "id": "4984", + "ident": "NTGB", + "type": "medium_airport", + "name": "Fangatau Airport", + "latitude_deg": "-15.81995", + "longitude_deg": "-140.88729", + "elevation_ft": "9", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Fangatau", + "scheduled_service": "no", + "gps_code": "NTGB", + "iata_code": "FGU" + }, + { + "id": "4985", + "ident": "NTGC", + "type": "medium_airport", + "name": "Tikehau Airport", + "latitude_deg": "-15.119600296020508", + "longitude_deg": "-148.2310028076172", + "elevation_ft": "6", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "scheduled_service": "yes", + "gps_code": "NTGC", + "iata_code": "TIH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tikehau_Airport" + }, + { + "id": "30648", + "ident": "NTGD", + "type": "small_airport", + "name": "Apataki Airport", + "latitude_deg": "-15.5736", + "longitude_deg": "-146.414993", + "elevation_ft": "8", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Apataki", + "scheduled_service": "yes", + "gps_code": "NTGD", + "iata_code": "APK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Apataki_Airport" + }, + { + "id": "4986", + "ident": "NTGE", + "type": "medium_airport", + "name": "Reao Airport", + "latitude_deg": "-18.46652", + "longitude_deg": "-136.43855", + "elevation_ft": "12", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Reao", + "scheduled_service": "no", + "gps_code": "NTGE", + "iata_code": "REA" + }, + { + "id": "4987", + "ident": "NTGF", + "type": "medium_airport", + "name": "Fakarava Airport", + "latitude_deg": "-16.054100036621094", + "longitude_deg": "-145.65699768066406", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "scheduled_service": "yes", + "gps_code": "NTGF", + "iata_code": "FAV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fakarava_Airport" + }, + { + "id": "313345", + "ident": "NTGG", + "type": "small_airport", + "name": "Nengo-Nengo Airport", + "latitude_deg": "-18.7506", + "longitude_deg": "-141.7591", + "elevation_ft": "21", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Nengonengo Atoll", + "scheduled_service": "no", + "gps_code": "NTGG", + "keywords": "Negonego" + }, + { + "id": "31577", + "ident": "NTGH", + "type": "small_airport", + "name": "Hikueru Airport", + "latitude_deg": "-17.548297", + "longitude_deg": "-142.612037", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Hikueru", + "scheduled_service": "no", + "gps_code": "NTGH", + "iata_code": "HHZ" + }, + { + "id": "4988", + "ident": "NTGI", + "type": "medium_airport", + "name": "Manihi Airport", + "latitude_deg": "-14.436800003051758", + "longitude_deg": "-146.07000732421875", + "elevation_ft": "14", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "scheduled_service": "yes", + "gps_code": "NTGI", + "iata_code": "XMH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manihi_Airport" + }, + { + "id": "4989", + "ident": "NTGJ", + "type": "medium_airport", + "name": "Totegegie Airport", + "latitude_deg": "-23.07990074157715", + "longitude_deg": "-134.88999938964844", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "scheduled_service": "yes", + "gps_code": "NTGJ", + "iata_code": "GMR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Totegegie_Airport" + }, + { + "id": "4990", + "ident": "NTGK", + "type": "medium_airport", + "name": "Kaukura Airport", + "latitude_deg": "-15.6633", + "longitude_deg": "-146.884995", + "elevation_ft": "11", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Raitahiti", + "scheduled_service": "yes", + "gps_code": "NTGK", + "iata_code": "KKR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kaukura_Airport" + }, + { + "id": "4991", + "ident": "NTGM", + "type": "medium_airport", + "name": "Makemo Airport", + "latitude_deg": "-16.5839", + "longitude_deg": "-143.658005", + "elevation_ft": "3", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Makemo", + "scheduled_service": "yes", + "gps_code": "NTGM", + "iata_code": "MKP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Makemo_Airport" + }, + { + "id": "32005", + "ident": "NTGN", + "type": "small_airport", + "name": "Napuka Island Airport", + "latitude_deg": "-14.176799774169922", + "longitude_deg": "-141.26699829101562", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Napuka Island", + "scheduled_service": "no", + "gps_code": "NTGN", + "iata_code": "NAU" + }, + { + "id": "32456", + "ident": "NTGO", + "type": "small_airport", + "name": "Tatakoto Airport", + "latitude_deg": "-17.355226", + "longitude_deg": "-138.44734", + "elevation_ft": "12", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Tatakoto", + "scheduled_service": "no", + "gps_code": "NTGO", + "iata_code": "TKV" + }, + { + "id": "4992", + "ident": "NTGP", + "type": "medium_airport", + "name": "Puka Puka Airport", + "latitude_deg": "-14.809499740600586", + "longitude_deg": "-138.81300354003906", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "scheduled_service": "no", + "gps_code": "NTGP", + "iata_code": "PKP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Puka-Puka_Airport" + }, + { + "id": "32177", + "ident": "NTGQ", + "type": "small_airport", + "name": "Pukaruha Airport", + "latitude_deg": "-18.295726", + "longitude_deg": "-137.016291", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Pukaruha", + "scheduled_service": "no", + "gps_code": "NTGQ", + "iata_code": "PUK" + }, + { + "id": "32049", + "ident": "NTGR", + "type": "small_airport", + "name": "Aratika-Perles Airport", + "latitude_deg": "-15.622861", + "longitude_deg": "-145.496578", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Aratika Atoll", + "scheduled_service": "no", + "gps_code": "NTGR" + }, + { + "id": "44636", + "ident": "NTGS", + "type": "small_airport", + "name": "Marutea Airport", + "latitude_deg": "-21.482194900512695", + "longitude_deg": "-135.63705444335938", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Auorotini", + "scheduled_service": "no", + "gps_code": "NTGS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marutea_Sud" + }, + { + "id": "4993", + "ident": "NTGT", + "type": "medium_airport", + "name": "Takapoto Airport", + "latitude_deg": "-14.709500312805176", + "longitude_deg": "-145.24600219726562", + "elevation_ft": "12", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "scheduled_service": "yes", + "gps_code": "NTGT", + "iata_code": "TKP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Takapoto_Airport" + }, + { + "id": "4994", + "ident": "NTGU", + "type": "medium_airport", + "name": "Arutua Airport", + "latitude_deg": "-15.248299598693848", + "longitude_deg": "-146.61700439453125", + "elevation_ft": "9", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "scheduled_service": "yes", + "gps_code": "NTGU", + "iata_code": "AXR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arutua_Airport" + }, + { + "id": "4995", + "ident": "NTGV", + "type": "medium_airport", + "name": "Mataiva Airport", + "latitude_deg": "-14.8681001663208", + "longitude_deg": "-148.7169952392578", + "elevation_ft": "11", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "scheduled_service": "yes", + "gps_code": "NTGV", + "iata_code": "MVT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mataiva_Airport" + }, + { + "id": "32055", + "ident": "NTGW", + "type": "small_airport", + "name": "Nukutavake Airport", + "latitude_deg": "-19.284613", + "longitude_deg": "-138.768367", + "elevation_ft": "17", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Nukutavake", + "scheduled_service": "no", + "gps_code": "NTGW", + "iata_code": "NUK" + }, + { + "id": "4996", + "ident": "NTGY", + "type": "small_airport", + "name": "Tureia Airport", + "latitude_deg": "-20.784262", + "longitude_deg": "-138.56796", + "elevation_ft": "12", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Tureia", + "scheduled_service": "no", + "gps_code": "NTGY", + "iata_code": "ZTA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tureia_Airport" + }, + { + "id": "4997", + "ident": "NTHE", + "type": "medium_airport", + "name": "Ahe Airport", + "latitude_deg": "-14.428099632263184", + "longitude_deg": "-146.2570037841797", + "elevation_ft": "11", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Ahe Atoll", + "scheduled_service": "yes", + "gps_code": "NTHE", + "iata_code": "AHE", + "home_link": "http://www.sia.aviation-civile.gouv.fr/aip/enligne/PDF_AIPparSSection/AIP%20PAC-P/AD/2/0703_AD%202.NTHE.pdf", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ahe_Airport", + "keywords": "Tenukupara" + }, + { + "id": "31752", + "ident": "NTKA", + "type": "small_airport", + "name": "Kauehi Airport", + "latitude_deg": "-15.780799865722656", + "longitude_deg": "-145.12399291992188", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Kauehi", + "scheduled_service": "no", + "gps_code": "NTKA", + "iata_code": "KHZ" + }, + { + "id": "4998", + "ident": "NTKF", + "type": "small_airport", + "name": "Faaite Airport", + "latitude_deg": "-16.68657", + "longitude_deg": "-145.329394", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Faaite", + "scheduled_service": "no", + "gps_code": "NTKF", + "iata_code": "FAC" + }, + { + "id": "31128", + "ident": "NTKH", + "type": "small_airport", + "name": "Fakahina Airport", + "latitude_deg": "-15.992259", + "longitude_deg": "-140.164246", + "elevation_ft": "3", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Fakahina", + "scheduled_service": "no", + "gps_code": "NTKH", + "iata_code": "FHZ" + }, + { + "id": "4999", + "ident": "NTKK", + "type": "small_airport", + "name": "Aratika Nord Airport", + "latitude_deg": "-15.4853000641", + "longitude_deg": "-145.470001221", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "scheduled_service": "no", + "gps_code": "NTKK", + "iata_code": "RKA" + }, + { + "id": "32050", + "ident": "NTKM", + "type": "small_airport", + "name": "Takume Airport", + "latitude_deg": "-15.857434", + "longitude_deg": "-142.266469", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Takume", + "scheduled_service": "no", + "gps_code": "NTKM", + "iata_code": "TJN", + "keywords": "Ohomo" + }, + { + "id": "313344", + "ident": "NTKN", + "type": "small_airport", + "name": "Naiu Airport", + "latitude_deg": "-16.1191", + "longitude_deg": "-146.3683", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Naiu Atoll", + "scheduled_service": "no", + "gps_code": "NTKN", + "iata_code": "NIU", + "keywords": "Tupana" + }, + { + "id": "302302", + "ident": "NTKO", + "type": "small_airport", + "name": "Raroia Airport", + "latitude_deg": "-16.050485", + "longitude_deg": "-142.476568", + "elevation_ft": "18", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Raroia", + "scheduled_service": "no", + "gps_code": "NTKO", + "iata_code": "RRR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Raroia_Airport" + }, + { + "id": "5000", + "ident": "NTKR", + "type": "medium_airport", + "name": "Takaroa Airport", + "latitude_deg": "-14.45580005645752", + "longitude_deg": "-145.02499389648438", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "scheduled_service": "yes", + "gps_code": "NTKR", + "iata_code": "TKX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Takaroa_Airport" + }, + { + "id": "32051", + "ident": "NTKT", + "type": "small_airport", + "name": "Katiu Airport", + "latitude_deg": "-16.3393993378", + "longitude_deg": "-144.402999878", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Katiu", + "scheduled_service": "no", + "gps_code": "NTKT", + "iata_code": "KXU", + "keywords": "Taungataki" + }, + { + "id": "313348", + "ident": "NTKU", + "type": "small_airport", + "name": "Nukutepipi Airport", + "latitude_deg": "-20.700054", + "longitude_deg": "-143.045933", + "elevation_ft": "32", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Nukutepipi", + "scheduled_service": "no", + "gps_code": "NTKU", + "iata_code": "NKP", + "keywords": "Nukutipipi" + }, + { + "id": "5001", + "ident": "NTMD", + "type": "medium_airport", + "name": "Nuku Hiva Airport", + "latitude_deg": "-8.7956", + "longitude_deg": "-140.229004", + "elevation_ft": "220", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Nuku Hiva", + "scheduled_service": "yes", + "gps_code": "NTMD", + "iata_code": "NHV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nuku_Hiva_Airport" + }, + { + "id": "5002", + "ident": "NTMN", + "type": "medium_airport", + "name": "Hiva Oa-Atuona Airport", + "latitude_deg": "-9.76879024506", + "longitude_deg": "-139.011001587", + "elevation_ft": "1481", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Hiva Oa Island", + "scheduled_service": "yes", + "gps_code": "NTMN", + "iata_code": "AUQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atuona_Airport", + "keywords": "HIX" + }, + { + "id": "32499", + "ident": "NTMP", + "type": "small_airport", + "name": "Ua Pou Airport", + "latitude_deg": "-9.35167", + "longitude_deg": "-140.078003", + "elevation_ft": "16", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Ua Pou", + "scheduled_service": "yes", + "gps_code": "NTMP", + "iata_code": "UAP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ua_Pou_Airport" + }, + { + "id": "32497", + "ident": "NTMU", + "type": "small_airport", + "name": "Ua Huka Airport", + "latitude_deg": "-8.936228", + "longitude_deg": "-139.554062", + "elevation_ft": "160", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Ua Huka", + "scheduled_service": "yes", + "gps_code": "NTMU", + "iata_code": "UAH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ua_Huka_Airport" + }, + { + "id": "5003", + "ident": "NTTB", + "type": "medium_airport", + "name": "Bora Bora Airport", + "latitude_deg": "-16.444400787353516", + "longitude_deg": "-151.75100708007812", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Motu Mute", + "scheduled_service": "yes", + "gps_code": "NTTB", + "iata_code": "BOB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bora_Bora_Airport" + }, + { + "id": "32480", + "ident": "NTTE", + "type": "small_airport", + "name": "Tetiaroa Airport", + "latitude_deg": "-17.015095", + "longitude_deg": "-149.589372", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Tetiaroa", + "scheduled_service": "no", + "gps_code": "NTTE", + "iata_code": "TTI" + }, + { + "id": "5004", + "ident": "NTTG", + "type": "medium_airport", + "name": "Rangiroa Airport", + "latitude_deg": "-14.954299926757812", + "longitude_deg": "-147.66099548339844", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "scheduled_service": "yes", + "gps_code": "NTTG", + "iata_code": "RGI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rangiroa_Airport" + }, + { + "id": "5005", + "ident": "NTTH", + "type": "medium_airport", + "name": "Huahine-Fare Airport", + "latitude_deg": "-16.687084", + "longitude_deg": "-151.021593", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Fare", + "scheduled_service": "yes", + "gps_code": "NTTH", + "iata_code": "HUH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Huahine_-_Fare_Airport" + }, + { + "id": "5006", + "ident": "NTTM", + "type": "medium_airport", + "name": "Moorea Temae Airport", + "latitude_deg": "-17.48979", + "longitude_deg": "-149.761777", + "elevation_ft": "9", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Moorea-Maiao", + "scheduled_service": "yes", + "gps_code": "NTTM", + "iata_code": "MOZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moorea_Airport", + "keywords": "Temae Airport, Moorea Temae Airport" + }, + { + "id": "5007", + "ident": "NTTO", + "type": "medium_airport", + "name": "Hao Airport", + "latitude_deg": "-18.0748", + "longitude_deg": "-140.945999", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Otepa", + "scheduled_service": "yes", + "gps_code": "NTTO", + "iata_code": "HOI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hao_Airport" + }, + { + "id": "5008", + "ident": "NTTP", + "type": "medium_airport", + "name": "Maupiti Airport", + "latitude_deg": "-16.42650032043457", + "longitude_deg": "-152.24400329589844", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "scheduled_service": "yes", + "gps_code": "NTTP", + "iata_code": "MAU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maupiti_Airport" + }, + { + "id": "5009", + "ident": "NTTR", + "type": "medium_airport", + "name": "Raiatea Airport", + "latitude_deg": "-16.7229", + "longitude_deg": "-151.466003", + "elevation_ft": "3", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Uturoa", + "scheduled_service": "yes", + "gps_code": "NTTR", + "iata_code": "RFP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Raiatea_Airport" + }, + { + "id": "313347", + "ident": "NTTU", + "type": "small_airport", + "name": "Tupai Airport", + "latitude_deg": "-16.2423", + "longitude_deg": "-151.8338", + "elevation_ft": "32", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Tupai Atoll", + "scheduled_service": "no", + "gps_code": "NTTU", + "iata_code": "TPX", + "keywords": "Motu Iti" + }, + { + "id": "32053", + "ident": "NTTX", + "type": "small_airport", + "name": "Moruroa Airport", + "latitude_deg": "-21.80978", + "longitude_deg": "-138.813385", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Moruroa Atoll", + "scheduled_service": "no", + "gps_code": "NTTX", + "iata_code": "UOA" + }, + { + "id": "32573", + "ident": "NTUV", + "type": "small_airport", + "name": "Vahitahi Airport", + "latitude_deg": "-18.780697", + "longitude_deg": "-138.85568", + "elevation_ft": "9", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Vahitahi", + "scheduled_service": "no", + "gps_code": "NTUV", + "iata_code": "VHZ" + }, + { + "id": "317282", + "ident": "NUF", + "type": "seaplane_base", + "name": "Castlereagh Lake Seaplane Base", + "latitude_deg": "6.86", + "longitude_deg": "80.584", + "elevation_ft": "3580", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-2", + "municipality": "Hatton", + "scheduled_service": "no", + "iata_code": "NUF", + "keywords": "Castlereigh Reservoir" + }, + { + "id": "308517", + "ident": "NUG", + "type": "small_airport", + "name": "Nuguria Airstrip", + "latitude_deg": "-3.4075", + "longitude_deg": "154.7383", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NSB", + "municipality": "Nuguria Island", + "scheduled_service": "no", + "gps_code": "AYNI", + "iata_code": "NUG", + "local_code": "NGA" + }, + { + "id": "355167", + "ident": "NUT", + "type": "closed", + "name": "Nutuve Airport", + "latitude_deg": "-5.35485", + "longitude_deg": "151.6695", + "elevation_ft": "1100", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EBR", + "municipality": "Parakaman", + "scheduled_service": "no", + "iata_code": "NUT", + "keywords": "Nuiuve" + }, + { + "id": "23312", + "ident": "NV00", + "type": "small_airport", + "name": "Valley View Airport", + "latitude_deg": "36.257954", + "longitude_deg": "-115.992379", + "elevation_ft": "2740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Pahrump", + "scheduled_service": "no", + "gps_code": "NV00", + "local_code": "NV00" + }, + { + "id": "355684", + "ident": "NV01", + "type": "heliport", + "name": "Echo Bay Marina Heliport", + "latitude_deg": "36.299117", + "longitude_deg": "-114.403655", + "elevation_ft": "1217", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "scheduled_service": "no", + "gps_code": "NV01", + "local_code": "NV01" + }, + { + "id": "23313", + "ident": "NV02", + "type": "small_airport", + "name": "O'Toole Ranch Airport", + "latitude_deg": "39.0669", + "longitude_deg": "-117.420312", + "elevation_ft": "6520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "NV02", + "local_code": "NV02" + }, + { + "id": "23314", + "ident": "NV03", + "type": "closed", + "name": "Las Vegas Helicopters Heliport", + "latitude_deg": "36.108101", + "longitude_deg": "-115.174004", + "elevation_ft": "2133", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "keywords": "NV03" + }, + { + "id": "23315", + "ident": "NV04", + "type": "small_airport", + "name": "Marys River Ranch Airport", + "latitude_deg": "41.31629943847656", + "longitude_deg": "-115.25", + "elevation_ft": "5600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Deeth", + "scheduled_service": "no", + "gps_code": "NV04", + "local_code": "NV04" + }, + { + "id": "23316", + "ident": "NV05", + "type": "small_airport", + "name": "Soldier Meadow Nr 2 Airport", + "latitude_deg": "41.12350082397461", + "longitude_deg": "-119.13899993896484", + "elevation_ft": "4150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Gerlach", + "scheduled_service": "no", + "gps_code": "NV05", + "local_code": "NV05" + }, + { + "id": "23317", + "ident": "NV06", + "type": "small_airport", + "name": "Soldier Meadow Nr 1 Airport", + "latitude_deg": "41.3827018737793", + "longitude_deg": "-119.16899871826172", + "elevation_ft": "4494", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Gerlach", + "scheduled_service": "no", + "gps_code": "NV06", + "local_code": "NV06" + }, + { + "id": "23318", + "ident": "NV07", + "type": "small_airport", + "name": "Sunnyside / Kirch Wildlife Management Area Airport", + "latitude_deg": "38.4147", + "longitude_deg": "-115.037003", + "elevation_ft": "5288", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Lund", + "scheduled_service": "no", + "gps_code": "NV07", + "local_code": "NV07" + }, + { + "id": "23319", + "ident": "NV08", + "type": "small_airport", + "name": "Petan Ranch Airport", + "latitude_deg": "41.737998962402344", + "longitude_deg": "-116.21600341796875", + "elevation_ft": "5616", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Mountain City", + "scheduled_service": "no", + "gps_code": "NV08", + "local_code": "NV08" + }, + { + "id": "23320", + "ident": "NV09", + "type": "small_airport", + "name": "H Bar H Airport", + "latitude_deg": "39.72439956665039", + "longitude_deg": "-119.89900207519531", + "elevation_ft": "5220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Reno", + "scheduled_service": "no", + "gps_code": "NV09", + "local_code": "NV09" + }, + { + "id": "23321", + "ident": "NV10", + "type": "closed", + "name": "Car Country Heliport", + "latitude_deg": "35.987999", + "longitude_deg": "-114.926003", + "elevation_ft": "2300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Henderson", + "scheduled_service": "no", + "keywords": "NV10" + }, + { + "id": "23322", + "ident": "NV11", + "type": "small_airport", + "name": "Yucca Airstrip", + "latitude_deg": "36.950987", + "longitude_deg": "-116.041718", + "elevation_ft": "3919", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Mercury", + "scheduled_service": "no", + "gps_code": "NV11", + "iata_code": "UCC", + "local_code": "NV11", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yucca_Airstrip" + }, + { + "id": "23323", + "ident": "NV12", + "type": "small_airport", + "name": "I-L Ranch Airport", + "latitude_deg": "41.56261", + "longitude_deg": "-116.409545", + "elevation_ft": "5368", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Tuscarora", + "scheduled_service": "no", + "gps_code": "NV12", + "local_code": "NV12" + }, + { + "id": "23324", + "ident": "NV13", + "type": "small_airport", + "name": "Bailey Ranch Airport", + "latitude_deg": "39.282798767089844", + "longitude_deg": "-119.8280029296875", + "elevation_ft": "5060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Carson City", + "scheduled_service": "no", + "gps_code": "NV13", + "local_code": "NV13" + }, + { + "id": "23325", + "ident": "NV14", + "type": "small_airport", + "name": "Juniper Airport", + "latitude_deg": "41.355499", + "longitude_deg": "-114.230003", + "elevation_ft": "5400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Montello", + "scheduled_service": "no", + "gps_code": "NV14", + "local_code": "NV14" + }, + { + "id": "23326", + "ident": "NV15", + "type": "heliport", + "name": "Carson-Tahoe Regional Medical Center Heliport", + "latitude_deg": "39.20280075073242", + "longitude_deg": "-119.78399658203125", + "elevation_ft": "4850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Carson City", + "scheduled_service": "no", + "gps_code": "NV15", + "local_code": "NV15" + }, + { + "id": "23327", + "ident": "NV16", + "type": "closed", + "name": "Lackerman Ranch Airport", + "latitude_deg": "40.999298", + "longitude_deg": "-119.936996", + "elevation_ft": "4706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Gerlach", + "scheduled_service": "no", + "keywords": "NV16" + }, + { + "id": "23328", + "ident": "NV17", + "type": "small_airport", + "name": "Youngberg Ranch Airport", + "latitude_deg": "39.67319869995117", + "longitude_deg": "-119.81300354003906", + "elevation_ft": "4960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Lemmon Valley", + "scheduled_service": "no", + "gps_code": "NV17", + "local_code": "NV17" + }, + { + "id": "355686", + "ident": "NV18", + "type": "heliport", + "name": "Logandale Fire/EMS Heliport", + "latitude_deg": "36.673281", + "longitude_deg": "-114.524639", + "elevation_ft": "1798", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Logandale", + "scheduled_service": "no", + "gps_code": "NV18", + "local_code": "NV18" + }, + { + "id": "23329", + "ident": "NV19", + "type": "closed", + "name": "Nevada Dept of Wildlife State Headquarters Heliport", + "latitude_deg": "39.5396", + "longitude_deg": "-119.806999", + "elevation_ft": "4500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Reno", + "scheduled_service": "no", + "keywords": "NV19" + }, + { + "id": "23330", + "ident": "NV20", + "type": "closed", + "name": "Topaz Ranch Heliport", + "latitude_deg": "38.761002", + "longitude_deg": "-119.533997", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Wellington", + "scheduled_service": "no", + "keywords": "NV20" + }, + { + "id": "23331", + "ident": "NV21", + "type": "heliport", + "name": "Sky Ranch Heliport", + "latitude_deg": "35.7952995300293", + "longitude_deg": "-115.62699890136719", + "elevation_ft": "2600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Sandy Valley", + "scheduled_service": "no", + "gps_code": "NV21", + "local_code": "NV21" + }, + { + "id": "23332", + "ident": "NV22", + "type": "small_airport", + "name": "Red Rock Ranch Airport", + "latitude_deg": "40.31269836425781", + "longitude_deg": "-115.89700317382812", + "elevation_ft": "6158", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Elko", + "scheduled_service": "no", + "gps_code": "NV22", + "local_code": "NV22" + }, + { + "id": "23333", + "ident": "NV23", + "type": "small_airport", + "name": "Air Sailing Gliderport", + "latitude_deg": "39.86906", + "longitude_deg": "-119.703026", + "elevation_ft": "4300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Sparks", + "scheduled_service": "no", + "gps_code": "NV23", + "local_code": "NV23" + }, + { + "id": "23334", + "ident": "NV24", + "type": "closed", + "name": "Fort Ruby Ranch Airstrip", + "latitude_deg": "40.057999", + "longitude_deg": "-115.505997", + "elevation_ft": "6006", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Ruby Valley", + "scheduled_service": "no", + "keywords": "NV24" + }, + { + "id": "23335", + "ident": "NV25", + "type": "heliport", + "name": "St Rose de Lima Dominican Hospital Heliport", + "latitude_deg": "36.038126", + "longitude_deg": "-114.984623", + "elevation_ft": "1890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Henderson", + "scheduled_service": "no", + "gps_code": "NV25", + "local_code": "NV25" + }, + { + "id": "23336", + "ident": "NV26", + "type": "closed", + "name": "Voc Tech Airport", + "latitude_deg": "36.079102", + "longitude_deg": "-115.069", + "elevation_ft": "1913", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Henderson", + "scheduled_service": "no", + "keywords": "NV26" + }, + { + "id": "23337", + "ident": "NV27", + "type": "small_airport", + "name": "Circle L Ranch Airport", + "latitude_deg": "37.71659851074219", + "longitude_deg": "-118.08399963378906", + "elevation_ft": "4835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Dyer", + "scheduled_service": "no", + "gps_code": "NV27", + "local_code": "NV27" + }, + { + "id": "23338", + "ident": "NV28", + "type": "heliport", + "name": "Rlb Heliport", + "latitude_deg": "39.392398834228516", + "longitude_deg": "-119.82099914550781", + "elevation_ft": "5707", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Reno", + "scheduled_service": "no", + "gps_code": "NV28", + "local_code": "NV28" + }, + { + "id": "23339", + "ident": "NV29", + "type": "closed", + "name": "Excalibur Hotel/Casino Heliport", + "latitude_deg": "36.09814", + "longitude_deg": "-115.175405", + "elevation_ft": "2375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "keywords": "NV29" + }, + { + "id": "23340", + "ident": "NV30", + "type": "small_airport", + "name": "Dixie Valley Airport", + "latitude_deg": "39.96659851074219", + "longitude_deg": "-117.8280029296875", + "elevation_ft": "3443", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Fallon", + "scheduled_service": "no", + "gps_code": "NV30", + "local_code": "NV30" + }, + { + "id": "23341", + "ident": "NV31", + "type": "small_airport", + "name": "Barker Creek Ranch Airstrip", + "latitude_deg": "38.80580139160156", + "longitude_deg": "-117.03099822998047", + "elevation_ft": "6620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Round Mountain", + "scheduled_service": "no", + "gps_code": "NV31", + "local_code": "NV31" + }, + { + "id": "23342", + "ident": "NV32", + "type": "heliport", + "name": "Nev Fish & Game Reg III Headquarters Heliport", + "latitude_deg": "36.1875", + "longitude_deg": "-115.20400238", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "gps_code": "NV32", + "local_code": "NV32" + }, + { + "id": "23343", + "ident": "NV33", + "type": "small_airport", + "name": "Farias Wheel Airport", + "latitude_deg": "38.833199", + "longitude_deg": "-119.396004", + "elevation_ft": "4848", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Wellington", + "scheduled_service": "no", + "gps_code": "NV33", + "local_code": "NV33" + }, + { + "id": "23344", + "ident": "NV34", + "type": "heliport", + "name": "University Medical Center Southern Nevada Heliport", + "latitude_deg": "36.159752", + "longitude_deg": "-115.166088", + "elevation_ft": "2096", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "gps_code": "NV34", + "local_code": "NV34" + }, + { + "id": "23345", + "ident": "NV35", + "type": "small_airport", + "name": "Hudson Airport", + "latitude_deg": "39.54439926147461", + "longitude_deg": "-117.7509994506836", + "elevation_ft": "5180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "NV35", + "local_code": "NV35" + }, + { + "id": "23346", + "ident": "NV36", + "type": "closed", + "name": "Imvite Airport", + "latitude_deg": "36.447701", + "longitude_deg": "-116.454002", + "elevation_ft": "2250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Amargosa Valley", + "scheduled_service": "no", + "keywords": "NV36" + }, + { + "id": "23347", + "ident": "NV37", + "type": "heliport", + "name": "El Dorado Substation Heliport", + "latitude_deg": "35.795355", + "longitude_deg": "-115.007613", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Searchlight", + "scheduled_service": "no", + "gps_code": "NV37", + "local_code": "NV37" + }, + { + "id": "23348", + "ident": "NV38", + "type": "heliport", + "name": "KLAS-TV Channel 8 Heliport", + "latitude_deg": "36.130658", + "longitude_deg": "-115.161729", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "gps_code": "NV38", + "local_code": "NV38" + }, + { + "id": "23349", + "ident": "NV40", + "type": "heliport", + "name": "Action Heliport", + "latitude_deg": "35.95000076293945", + "longitude_deg": "-115.16699981689453", + "elevation_ft": "2460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "gps_code": "NV40", + "local_code": "NV40" + }, + { + "id": "23350", + "ident": "NV41", + "type": "small_airport", + "name": "Sulphur Airport", + "latitude_deg": "40.869108", + "longitude_deg": "-118.729189", + "elevation_ft": "4068", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Gerlach", + "scheduled_service": "no", + "keywords": "NV41" + }, + { + "id": "23351", + "ident": "NV42", + "type": "small_airport", + "name": "Heritage Airport", + "latitude_deg": "35.77579879760742", + "longitude_deg": "-115.63099670410156", + "elevation_ft": "2575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Jean", + "scheduled_service": "no", + "gps_code": "NV42", + "local_code": "NV42" + }, + { + "id": "23352", + "ident": "NV44", + "type": "small_airport", + "name": "Justover Field", + "latitude_deg": "39.75519943237305", + "longitude_deg": "-119.5989990234375", + "elevation_ft": "4480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Sparks", + "scheduled_service": "no", + "gps_code": "NV44", + "local_code": "NV44" + }, + { + "id": "23353", + "ident": "NV47", + "type": "small_airport", + "name": "Palomino Airport", + "latitude_deg": "39.830786", + "longitude_deg": "-119.682663", + "elevation_ft": "4240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Sparks", + "scheduled_service": "no", + "gps_code": "NV47", + "local_code": "NV47" + }, + { + "id": "23354", + "ident": "NV48", + "type": "heliport", + "name": "Circus Circus Heliport", + "latitude_deg": "36.137421", + "longitude_deg": "-115.16821", + "elevation_ft": "2122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "gps_code": "NV48", + "local_code": "NV48" + }, + { + "id": "23355", + "ident": "NV49", + "type": "closed", + "name": "Hacienda Hotel Heliport", + "latitude_deg": "36.091599", + "longitude_deg": "-115.174004", + "elevation_ft": "2172", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "keywords": "NV49" + }, + { + "id": "23356", + "ident": "NV52", + "type": "closed", + "name": "City Hall Complex Heliport", + "latitude_deg": "36.172199", + "longitude_deg": "-115.140999", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "keywords": "NV52" + }, + { + "id": "23357", + "ident": "NV53", + "type": "heliport", + "name": "Valley Hospital Medical Center Heliport", + "latitude_deg": "36.162806", + "longitude_deg": "-115.168089", + "elevation_ft": "2055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "gps_code": "NV53", + "local_code": "NV53" + }, + { + "id": "23358", + "ident": "NV54", + "type": "small_airport", + "name": "Flying S Ranch Ultralightport", + "latitude_deg": "36.30699920654297", + "longitude_deg": "-115.98899841308594", + "elevation_ft": "2800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Pahrump", + "scheduled_service": "no", + "gps_code": "NV54", + "local_code": "NV54" + }, + { + "id": "23359", + "ident": "NV55", + "type": "small_airport", + "name": "Pinenut Airport", + "latitude_deg": "38.89889907836914", + "longitude_deg": "-119.64900207519531", + "elevation_ft": "5260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Gardnerville", + "scheduled_service": "no", + "gps_code": "NV55", + "local_code": "NV55" + }, + { + "id": "23360", + "ident": "NV56", + "type": "small_airport", + "name": "Wine Glass Ranch Airport", + "latitude_deg": "38.799400329589844", + "longitude_deg": "-117.17500305175781", + "elevation_ft": "5568", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Round Mountain", + "scheduled_service": "no", + "gps_code": "NV56", + "local_code": "NV56" + }, + { + "id": "23361", + "ident": "NV57", + "type": "heliport", + "name": "Renown Regional Medical Center Heliport", + "latitude_deg": "39.525248", + "longitude_deg": "-119.795741", + "elevation_ft": "4504", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Reno", + "scheduled_service": "no", + "gps_code": "NV57", + "local_code": "NV57", + "keywords": "Washoe Medical Center Heliport" + }, + { + "id": "23362", + "ident": "NV58", + "type": "heliport", + "name": "St Mary's Regional Medical Center Heliport", + "latitude_deg": "39.53295", + "longitude_deg": "-119.818379", + "elevation_ft": "4600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Reno", + "scheduled_service": "no", + "gps_code": "NV58", + "local_code": "NV58" + }, + { + "id": "23363", + "ident": "NV60", + "type": "heliport", + "name": "Carson-Tahoe Hospital Heliport", + "latitude_deg": "39.17129898071289", + "longitude_deg": "-119.77200317382812", + "elevation_ft": "4710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Carson City", + "scheduled_service": "no", + "gps_code": "NV60", + "local_code": "NV60" + }, + { + "id": "23364", + "ident": "NV61", + "type": "heliport", + "name": "Gilbert Development Corporation Heliport", + "latitude_deg": "36.218791", + "longitude_deg": "-115.133528", + "elevation_ft": "1981", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "North Las Vegas", + "scheduled_service": "no", + "gps_code": "NV61", + "local_code": "NV61" + }, + { + "id": "45959", + "ident": "NV62", + "type": "closed", + "name": "Valley Medical Center Heliport", + "latitude_deg": "36.162781", + "longitude_deg": "-115.168087", + "elevation_ft": "2057", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "gps_code": "NV62", + "local_code": "NV62" + }, + { + "id": "23365", + "ident": "NV63", + "type": "closed", + "name": "Claude I. Howard Heliport", + "latitude_deg": "36.083302", + "longitude_deg": "-115.176003", + "elevation_ft": "2170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "keywords": "NV63" + }, + { + "id": "23366", + "ident": "NV64", + "type": "small_airport", + "name": "Swanson Ranch 3 Airport", + "latitude_deg": "40.00830078125", + "longitude_deg": "-117.39199829101562", + "elevation_ft": "4940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Battle Mountain", + "scheduled_service": "no", + "gps_code": "NV64", + "local_code": "NV64" + }, + { + "id": "23367", + "ident": "NV67", + "type": "small_airport", + "name": "Pilot Creek Ranches Airport", + "latitude_deg": "41.11579895019531", + "longitude_deg": "-114.11399841308594", + "elevation_ft": "4980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Montello", + "scheduled_service": "no", + "gps_code": "NV67", + "local_code": "NV67" + }, + { + "id": "23368", + "ident": "NV68", + "type": "small_airport", + "name": "Pine Grove Airport", + "latitude_deg": "41.56570053100586", + "longitude_deg": "-117.80899810791016", + "elevation_ft": "4250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Orovada", + "scheduled_service": "no", + "gps_code": "NV68", + "local_code": "NV68" + }, + { + "id": "23369", + "ident": "NV69", + "type": "heliport", + "name": "Northern Nevada Medical Center Heliport", + "latitude_deg": "39.50550079345703", + "longitude_deg": "-119.69300079345703", + "elevation_ft": "4460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Sparks", + "scheduled_service": "no", + "gps_code": "NV69", + "local_code": "NV69" + }, + { + "id": "23370", + "ident": "NV72", + "type": "small_airport", + "name": "Sweetwater (USMC) Airport", + "latitude_deg": "38.509799957300004", + "longitude_deg": "-119.217002869", + "elevation_ft": "6837", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Wellington", + "scheduled_service": "no", + "gps_code": "NV72", + "local_code": "NV72" + }, + { + "id": "23371", + "ident": "NV73", + "type": "closed", + "name": "Precious Materials Heliport", + "latitude_deg": "36.341599", + "longitude_deg": "-116.049004", + "elevation_ft": "2850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Pahrump", + "scheduled_service": "no", + "keywords": "NV73" + }, + { + "id": "23372", + "ident": "NV74", + "type": "small_airport", + "name": "Calvada Meadows Airport", + "latitude_deg": "36.271099", + "longitude_deg": "-115.995003", + "elevation_ft": "2726", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Pahrump", + "scheduled_service": "no", + "local_code": "74P", + "home_link": "http://www.calvadameadows.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Calvada_Meadows_Airport", + "keywords": "NV74" + }, + { + "id": "23373", + "ident": "NV75", + "type": "heliport", + "name": "SCE Mohave Generating Station Heliport", + "latitude_deg": "35.151003", + "longitude_deg": "-114.592458", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Laughlin", + "scheduled_service": "no", + "gps_code": "NV75", + "local_code": "NV75" + }, + { + "id": "23374", + "ident": "NV77", + "type": "closed", + "name": "Empire Farms Airport", + "latitude_deg": "40.435699", + "longitude_deg": "-119.461998", + "elevation_ft": "4085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Empire", + "scheduled_service": "no", + "keywords": "NV77" + }, + { + "id": "23375", + "ident": "NV78", + "type": "heliport", + "name": "Remsa/Care Flight Heliport", + "latitude_deg": "39.500999450683594", + "longitude_deg": "-119.75199890136719", + "elevation_ft": "4400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Reno", + "scheduled_service": "no", + "gps_code": "NV78", + "local_code": "NV78" + }, + { + "id": "45519", + "ident": "NV83", + "type": "small_airport", + "name": "Hadley Airport", + "latitude_deg": "38.694098", + "longitude_deg": "-117.146752", + "elevation_ft": "5744", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Round Mountain", + "scheduled_service": "no", + "gps_code": "NV83", + "local_code": "NV83" + }, + { + "id": "330685", + "ident": "NV86", + "type": "heliport", + "name": "Sunrise Medical Center Heliport", + "latitude_deg": "36.132624", + "longitude_deg": "-115.135511", + "elevation_ft": "2037", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "gps_code": "NV86", + "local_code": "NV86" + }, + { + "id": "331783", + "ident": "NV89", + "type": "small_airport", + "name": "Red Owl Ranch Airport", + "latitude_deg": "40.502333", + "longitude_deg": "-116.546769", + "elevation_ft": "4850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Crescent Valley", + "scheduled_service": "no", + "gps_code": "NV89", + "local_code": "NV89" + }, + { + "id": "331823", + "ident": "NV91", + "type": "heliport", + "name": "Fly Sin City #1 Heliport", + "latitude_deg": "35.844903", + "longitude_deg": "-115.5482", + "elevation_ft": "4331", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Sandy Valley", + "scheduled_service": "no", + "gps_code": "NV91", + "local_code": "NV91" + }, + { + "id": "331824", + "ident": "NV92", + "type": "heliport", + "name": "Fly Sin City #2 Heliport", + "latitude_deg": "35.849294", + "longitude_deg": "-115.555275", + "elevation_ft": "3727", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Sandy Valley", + "scheduled_service": "no", + "gps_code": "NV92", + "local_code": "NV92" + }, + { + "id": "331698", + "ident": "NV93", + "type": "heliport", + "name": "Fly Sin City #3 Heliport", + "latitude_deg": "35.844903", + "longitude_deg": "-115.556925", + "elevation_ft": "3675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Sandy Valley", + "scheduled_service": "no", + "gps_code": "NV93", + "local_code": "NV93" + }, + { + "id": "23376", + "ident": "NV96", + "type": "small_airport", + "name": "Rolling Thunder Airport", + "latitude_deg": "39.823563", + "longitude_deg": "-119.658331", + "elevation_ft": "4240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Sparks", + "scheduled_service": "no", + "gps_code": "NV96", + "local_code": "NV96" + }, + { + "id": "23377", + "ident": "NV97", + "type": "small_airport", + "name": "Desert Creek Airport", + "latitude_deg": "38.684200286865234", + "longitude_deg": "-119.3219985961914", + "elevation_ft": "5358", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Wellington", + "scheduled_service": "no", + "gps_code": "NV97", + "local_code": "NV97" + }, + { + "id": "23378", + "ident": "NV98", + "type": "small_airport", + "name": "Caas Airport", + "latitude_deg": "36.150299072265625", + "longitude_deg": "-115.9000015258789", + "elevation_ft": "2800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Pahrump", + "scheduled_service": "no", + "gps_code": "NV98", + "local_code": "NV98" + }, + { + "id": "23379", + "ident": "NV99", + "type": "closed", + "name": "Maverick Heliport", + "latitude_deg": "35.934399", + "longitude_deg": "-115.181998", + "elevation_ft": "2550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "keywords": "NV99" + }, + { + "id": "31964", + "ident": "NVSA", + "type": "small_airport", + "name": "Mota Lava Airport", + "latitude_deg": "-13.6660003662", + "longitude_deg": "167.712005615", + "elevation_ft": "63", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-TOB", + "municipality": "Ablow", + "scheduled_service": "yes", + "gps_code": "NVSA", + "iata_code": "MTV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mota_Lava_Airport" + }, + { + "id": "32323", + "ident": "NVSC", + "type": "small_airport", + "name": "Sola Airport", + "latitude_deg": "-13.8516998291", + "longitude_deg": "167.537002563", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-TOB", + "municipality": "Sola", + "scheduled_service": "yes", + "gps_code": "NVSC", + "iata_code": "SLH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vanua_Lava_Airport", + "keywords": "Vanua Lava Airport" + }, + { + "id": "32469", + "ident": "NVSD", + "type": "small_airport", + "name": "Torres Airstrip", + "latitude_deg": "-13.3280000687", + "longitude_deg": "166.638000488", + "elevation_ft": "75", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-TOB", + "municipality": "Loh/Linua", + "scheduled_service": "yes", + "gps_code": "NVSD", + "iata_code": "TOH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Torres_Airport", + "keywords": "Loh Island," + }, + { + "id": "30961", + "ident": "NVSE", + "type": "small_airport", + "name": "Siwo Airport", + "latitude_deg": "-17.0902996063", + "longitude_deg": "168.343002319", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-SEE", + "municipality": "Emae Island", + "scheduled_service": "yes", + "gps_code": "NVSE", + "iata_code": "EAE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Siwo_Airport", + "keywords": "Sangafa Airport, Emae Airport" + }, + { + "id": "30817", + "ident": "NVSF", + "type": "small_airport", + "name": "Craig Cove Airport", + "latitude_deg": "-16.264999", + "longitude_deg": "167.923996", + "elevation_ft": "69", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-MAP", + "municipality": "Craig Cove", + "scheduled_service": "yes", + "gps_code": "NVSF", + "iata_code": "CCV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Craig_Cove_Airport" + }, + { + "id": "31841", + "ident": "NVSG", + "type": "small_airport", + "name": "Longana Airport", + "latitude_deg": "-15.3066997528", + "longitude_deg": "167.966995239", + "elevation_ft": "167", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-PAM", + "municipality": "Longana", + "scheduled_service": "yes", + "gps_code": "NVSG", + "iata_code": "LOD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Longana_Airport" + }, + { + "id": "35161", + "ident": "NVSH", + "type": "small_airport", + "name": "Sara Airport", + "latitude_deg": "-15.4708003998", + "longitude_deg": "168.151992798", + "elevation_ft": "493", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-PAM", + "municipality": "Pentecost Island", + "scheduled_service": "yes", + "gps_code": "NVSH", + "iata_code": "SSR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sara_Airport" + }, + { + "id": "35163", + "ident": "NVSI", + "type": "small_airport", + "name": "Tavie Airport", + "latitude_deg": "-16.438999176", + "longitude_deg": "168.257003784", + "elevation_ft": "160", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-MAP", + "municipality": "Paama Island", + "scheduled_service": "yes", + "gps_code": "NVSI", + "iata_code": "PBJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paama_Airport", + "keywords": "Paama Airport" + }, + { + "id": "31847", + "ident": "NVSL", + "type": "small_airport", + "name": "Lamap Airport", + "latitude_deg": "-16.4611228", + "longitude_deg": "167.829253", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-MAP", + "municipality": "Lamap", + "scheduled_service": "yes", + "gps_code": "NVSL", + "iata_code": "LPM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Malekoula_Airport", + "keywords": "Malekoula Airport" + }, + { + "id": "31835", + "ident": "NVSM", + "type": "small_airport", + "name": "Lamen Bay Airport", + "latitude_deg": "-16.584199905400002", + "longitude_deg": "168.158996582", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-SEE", + "municipality": "Lamen Bay", + "scheduled_service": "yes", + "gps_code": "NVSM", + "iata_code": "LNB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lamen_Bay_Airport" + }, + { + "id": "35159", + "ident": "NVSN", + "type": "small_airport", + "name": "Maewo-Naone Airport", + "latitude_deg": "-15", + "longitude_deg": "168.082992554", + "elevation_ft": "509", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-PAM", + "municipality": "Maewo Island", + "scheduled_service": "yes", + "gps_code": "NVSN", + "iata_code": "MWF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maewo-Naone_Airport" + }, + { + "id": "31836", + "ident": "NVSO", + "type": "small_airport", + "name": "Lonorore Airport", + "latitude_deg": "-15.865599632299999", + "longitude_deg": "168.17199707", + "elevation_ft": "43", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-PAM", + "municipality": "Lonorore", + "scheduled_service": "yes", + "gps_code": "NVSO", + "iata_code": "LNE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lonorore_Airport", + "keywords": "Pentecost Island" + }, + { + "id": "32056", + "ident": "NVSP", + "type": "small_airport", + "name": "Norsup Airport", + "latitude_deg": "-16.0797", + "longitude_deg": "167.401001", + "elevation_ft": "23", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-MAP", + "municipality": "Norsup", + "scheduled_service": "yes", + "gps_code": "NVSP", + "iata_code": "NUS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Norsup_Airport" + }, + { + "id": "35158", + "ident": "NVSQ", + "type": "medium_airport", + "name": "Gaua Island Airport", + "latitude_deg": "-14.218099594099998", + "longitude_deg": "167.587005615", + "elevation_ft": "100", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-TOB", + "municipality": "Gaua Island", + "scheduled_service": "yes", + "gps_code": "NVSQ", + "iata_code": "ZGU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gaua_Airport", + "keywords": "Banks Islands" + }, + { + "id": "32200", + "ident": "NVSR", + "type": "small_airport", + "name": "Redcliffe Airport", + "latitude_deg": "-15.472000122099999", + "longitude_deg": "167.835006714", + "elevation_ft": "36", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-PAM", + "municipality": "Redcliffe", + "scheduled_service": "yes", + "gps_code": "NVSR", + "iata_code": "RCL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Redcliffe_Airport_(Vanuatu)" + }, + { + "id": "5010", + "ident": "NVSS", + "type": "medium_airport", + "name": "Santo Pekoa International Airport", + "latitude_deg": "-15.505000114399998", + "longitude_deg": "167.220001221", + "elevation_ft": "184", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-SAM", + "municipality": "Luganville", + "scheduled_service": "yes", + "gps_code": "NVSS", + "iata_code": "SON", + "home_link": "http://www.airports.vu/Santo%20Pekoa/Santo%20Pekoa.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santo-Pekoa_International_Airport" + }, + { + "id": "32437", + "ident": "NVST", + "type": "small_airport", + "name": "Tongoa Airport", + "latitude_deg": "-16.8910999298", + "longitude_deg": "168.550994873", + "elevation_ft": "443", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-SEE", + "municipality": "Tongoa Island", + "scheduled_service": "yes", + "gps_code": "NVST", + "iata_code": "TGH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tongoa_Airport" + }, + { + "id": "35164", + "ident": "NVSU", + "type": "small_airport", + "name": "Uléi Airport", + "latitude_deg": "-16.3297", + "longitude_deg": "168.3011", + "elevation_ft": "170", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-MAP", + "municipality": "Ambrym Island", + "scheduled_service": "yes", + "gps_code": "NVSU", + "iata_code": "ULB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ulei_Airport" + }, + { + "id": "32583", + "ident": "NVSV", + "type": "small_airport", + "name": "Valesdir Airport", + "latitude_deg": "-16.796100616500002", + "longitude_deg": "168.177001953", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-SEE", + "municipality": "Epi Island", + "scheduled_service": "yes", + "gps_code": "NVSV", + "iata_code": "VLS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valesdir_Airport" + }, + { + "id": "32658", + "ident": "NVSW", + "type": "small_airport", + "name": "Walaha Airport", + "latitude_deg": "-15.411999702500001", + "longitude_deg": "167.690994263", + "elevation_ft": "151", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-PAM", + "municipality": "Walaha", + "scheduled_service": "yes", + "gps_code": "NVSW", + "iata_code": "WLH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Walaha_Airport" + }, + { + "id": "35162", + "ident": "NVSX", + "type": "small_airport", + "name": "Southwest Bay Airport", + "latitude_deg": "-16.4864", + "longitude_deg": "167.4472", + "elevation_ft": "68", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-MAP", + "municipality": "Malekula Island", + "scheduled_service": "yes", + "gps_code": "NVSX", + "iata_code": "SWJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/South_West_Bay_Airport" + }, + { + "id": "35160", + "ident": "NVSZ", + "type": "small_airport", + "name": "North West Santo Airport", + "latitude_deg": "-14.881699562099998", + "longitude_deg": "166.557998657", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-SAM", + "municipality": "Olpoi", + "scheduled_service": "yes", + "gps_code": "NVSZ", + "iata_code": "OLJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Olpoi_Airport", + "keywords": "Lajmoli Airport, Olpoi Airport" + }, + { + "id": "30663", + "ident": "NVVA", + "type": "small_airport", + "name": "Aneityum Airport", + "latitude_deg": "-20.2492008209", + "longitude_deg": "169.770996094", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-TAE", + "municipality": "Anatom Island", + "scheduled_service": "yes", + "gps_code": "NVVA", + "iata_code": "AUY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anatom_Airport", + "keywords": "Anelghowhat Airport, Anatom Airport" + }, + { + "id": "30665", + "ident": "NVVB", + "type": "small_airport", + "name": "Aniwa Airport", + "latitude_deg": "-19.2346", + "longitude_deg": "169.6009", + "elevation_ft": "69", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-TAE", + "municipality": "Aniwa", + "scheduled_service": "yes", + "gps_code": "NVVB", + "iata_code": "AWD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aniwa_Airport" + }, + { + "id": "30926", + "ident": "NVVD", + "type": "small_airport", + "name": "Dillon's Bay Airport", + "latitude_deg": "-18.7693996429", + "longitude_deg": "169.00100708", + "elevation_ft": "630", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-TAE", + "municipality": "Dillon's Bay", + "scheduled_service": "yes", + "gps_code": "NVVD", + "iata_code": "DLY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dillon's_Bay_Airport" + }, + { + "id": "31209", + "ident": "NVVF", + "type": "small_airport", + "name": "Futuna Airport", + "latitude_deg": "-19.516399383499998", + "longitude_deg": "170.231994629", + "elevation_ft": "95", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-TAE", + "municipality": "Futuna Island", + "scheduled_service": "yes", + "gps_code": "NVVF", + "iata_code": "FTA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Futuna_Airport" + }, + { + "id": "31682", + "ident": "NVVI", + "type": "small_airport", + "name": "Ipota Airport", + "latitude_deg": "-18.856389", + "longitude_deg": "169.283333", + "elevation_ft": "23", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-TAE", + "municipality": "Ipota", + "scheduled_service": "yes", + "gps_code": "NVVI", + "iata_code": "IPA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ipota_Airport" + }, + { + "id": "32058", + "ident": "NVVJ", + "type": "small_airport", + "name": "Forari Airport", + "latitude_deg": "-17.701099395751953", + "longitude_deg": "168.52699279785156", + "elevation_ft": "351", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-SEE", + "municipality": "Forari", + "scheduled_service": "no", + "gps_code": "NVVJ" + }, + { + "id": "32059", + "ident": "NVVK", + "type": "small_airport", + "name": "Lenakel Airport", + "latitude_deg": "-19.5161", + "longitude_deg": "169.2625", + "elevation_ft": "246", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-TAE", + "municipality": "Lenakel", + "scheduled_service": "no", + "gps_code": "NVVK" + }, + { + "id": "32526", + "ident": "NVVQ", + "type": "closed", + "name": "Quoin Hill Airfield", + "latitude_deg": "-17.540001", + "longitude_deg": "168.442001", + "elevation_ft": "16", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-SEE", + "municipality": "Quoin Hill", + "scheduled_service": "no", + "gps_code": "NVVQ", + "iata_code": "UIQ" + }, + { + "id": "5011", + "ident": "NVVV", + "type": "large_airport", + "name": "Bauerfield International Airport", + "latitude_deg": "-17.699301", + "longitude_deg": "168.320007", + "elevation_ft": "70", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-SEE", + "municipality": "Port Vila", + "scheduled_service": "yes", + "gps_code": "NVVV", + "iata_code": "VLI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bauerfield_International_Airport", + "keywords": "Efate Field, Vila Field, McDonald Field, Bauer Field" + }, + { + "id": "5012", + "ident": "NVVW", + "type": "medium_airport", + "name": "Tanna Airport", + "latitude_deg": "-19.45509910583496", + "longitude_deg": "169.2239990234375", + "elevation_ft": "19", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-TAE", + "scheduled_service": "yes", + "gps_code": "NVVW", + "iata_code": "TAH", + "wikipedia_link": "https://en.wikipedia.org/wiki/White_Grass_Airport" + }, + { + "id": "306972", + "ident": "NWT", + "type": "small_airport", + "name": "Nowata Airport", + "latitude_deg": "-9.984166666669998", + "longitude_deg": "149.729166667", + "elevation_ft": "2040", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Nowata", + "scheduled_service": "no", + "gps_code": "AYNW", + "iata_code": "NWT", + "local_code": "NTA" + }, + { + "id": "32439", + "ident": "NWWA", + "type": "medium_airport", + "name": "Tiga Airport", + "latitude_deg": "-21.096099853515625", + "longitude_deg": "167.8040008544922", + "elevation_ft": "128", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Tiga", + "scheduled_service": "yes", + "gps_code": "NWWA", + "iata_code": "TGJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tiga_Airport" + }, + { + "id": "32060", + "ident": "NWWB", + "type": "small_airport", + "name": "Bourail - Poé Airport", + "latitude_deg": "-21.609604", + "longitude_deg": "165.397103", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Poé", + "scheduled_service": "no", + "gps_code": "NWWB" + }, + { + "id": "30778", + "ident": "NWWC", + "type": "medium_airport", + "name": "Île Art - Waala Airport", + "latitude_deg": "-19.720521", + "longitude_deg": "163.661077", + "elevation_ft": "306", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Waala", + "scheduled_service": "yes", + "gps_code": "NWWC", + "iata_code": "BMY", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%8Ele_Art_-_Waala_Airport", + "keywords": "Belep Islands Airport" + }, + { + "id": "5013", + "ident": "NWWD", + "type": "medium_airport", + "name": "Koné Airport", + "latitude_deg": "-21.053551", + "longitude_deg": "164.838768", + "elevation_ft": "23", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Koné", + "scheduled_service": "yes", + "gps_code": "NWWD", + "iata_code": "KNQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kon%C3%A9_Airport" + }, + { + "id": "5014", + "ident": "NWWE", + "type": "medium_airport", + "name": "Île des Pins Airport", + "latitude_deg": "-22.588899612426758", + "longitude_deg": "167.45599365234375", + "elevation_ft": "315", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Île des Pins", + "scheduled_service": "yes", + "gps_code": "NWWE", + "iata_code": "ILP", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%8Ele_des_Pins_Airport" + }, + { + "id": "32061", + "ident": "NWWF", + "type": "closed", + "name": "Voh Airport", + "latitude_deg": "-20.966999", + "longitude_deg": "164.699997", + "elevation_ft": "33", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Voh", + "scheduled_service": "no", + "gps_code": "NWWF" + }, + { + "id": "31605", + "ident": "NWWH", + "type": "small_airport", + "name": "Nesson Airport", + "latitude_deg": "-21.257288", + "longitude_deg": "165.61821", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Houailou", + "scheduled_service": "no", + "gps_code": "NWWH", + "iata_code": "HLU" + }, + { + "id": "349333", + "ident": "NWWI", + "type": "small_airport", + "name": "Hienghène Airport", + "latitude_deg": "-20.69446", + "longitude_deg": "164.99249", + "elevation_ft": "18", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Hienghène", + "scheduled_service": "no", + "gps_code": "NWWI" + }, + { + "id": "5015", + "ident": "NWWK", + "type": "medium_airport", + "name": "Koumac Airport", + "latitude_deg": "-20.546323", + "longitude_deg": "164.255648", + "elevation_ft": "42", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Koumac", + "scheduled_service": "yes", + "gps_code": "NWWK", + "iata_code": "KOC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Koumac_Airport" + }, + { + "id": "5016", + "ident": "NWWL", + "type": "medium_airport", + "name": "Lifou Airport", + "latitude_deg": "-20.774799346923828", + "longitude_deg": "167.24000549316406", + "elevation_ft": "92", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Lifou", + "scheduled_service": "yes", + "gps_code": "NWWL", + "iata_code": "LIF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lifou_Airport" + }, + { + "id": "5017", + "ident": "NWWM", + "type": "large_airport", + "name": "Nouméa Magenta Airport", + "latitude_deg": "-22.258301", + "longitude_deg": "166.473007", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Nouméa", + "scheduled_service": "yes", + "gps_code": "NWWM", + "iata_code": "GEA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Noum%C3%A9a_Magenta_Airport", + "keywords": "l'Aéroport de Nouméa Magenta" + }, + { + "id": "31681", + "ident": "NWWO", + "type": "closed", + "name": "Île Ouen/Edmond Cané Airport", + "latitude_deg": "-22.460295", + "longitude_deg": "166.782718", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Ouara", + "scheduled_service": "no", + "gps_code": "NWWO", + "iata_code": "IOU" + }, + { + "id": "32180", + "ident": "NWWP", + "type": "small_airport", + "name": "Poum / Malabou Airport", + "latitude_deg": "-20.289155", + "longitude_deg": "164.09935", + "elevation_ft": "6", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Malabou", + "scheduled_service": "no", + "gps_code": "NWWP", + "iata_code": "PUV" + }, + { + "id": "32150", + "ident": "NWWQ", + "type": "small_airport", + "name": "Mueo Airport", + "latitude_deg": "-21.316456", + "longitude_deg": "164.999399", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Népoui", + "scheduled_service": "no", + "gps_code": "NWWQ", + "iata_code": "PDC" + }, + { + "id": "5018", + "ident": "NWWR", + "type": "medium_airport", + "name": "Maré Airport", + "latitude_deg": "-21.481700897216797", + "longitude_deg": "168.03799438476562", + "elevation_ft": "141", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Maré", + "scheduled_service": "yes", + "gps_code": "NWWR", + "iata_code": "MEE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mar%C3%A9_Airport" + }, + { + "id": "32062", + "ident": "NWWS", + "type": "closed", + "name": "Plaine des Lacs Airport", + "latitude_deg": "-22.270616", + "longitude_deg": "166.926301", + "elevation_ft": "902", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Plaine des Lacs", + "scheduled_service": "no", + "gps_code": "NWWS" + }, + { + "id": "32063", + "ident": "NWWT", + "type": "small_airport", + "name": "Oua Tom Airport", + "latitude_deg": "-21.819700241088867", + "longitude_deg": "165.86099243164062", + "elevation_ft": "98", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "La Foa", + "scheduled_service": "no", + "gps_code": "NWWT", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Foa_-_Oua_Tom_Airport" + }, + { + "id": "5019", + "ident": "NWWU", + "type": "medium_airport", + "name": "Touho Airport", + "latitude_deg": "-20.790127", + "longitude_deg": "165.259524", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Touho", + "scheduled_service": "yes", + "gps_code": "NWWU", + "iata_code": "TOU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Touho_Airport" + }, + { + "id": "5020", + "ident": "NWWV", + "type": "medium_airport", + "name": "Ouvéa Airport", + "latitude_deg": "-20.640600204467773", + "longitude_deg": "166.572998046875", + "elevation_ft": "23", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Ouvéa", + "scheduled_service": "yes", + "gps_code": "NWWV", + "iata_code": "UVE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ouv%C3%A9a_Airport" + }, + { + "id": "5021", + "ident": "NWWW", + "type": "medium_airport", + "name": "La Tontouta International Airport", + "latitude_deg": "-22.014601", + "longitude_deg": "166.212997", + "elevation_ft": "52", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Nouméa (La Tontouta)", + "scheduled_service": "yes", + "gps_code": "NWWW", + "iata_code": "NOU", + "home_link": "http://www.cci-nc.com/tontouta/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Tontouta_International_Airport", + "keywords": "Aéroport de Nouméa - La Tontouta" + }, + { + "id": "32064", + "ident": "NWWY", + "type": "small_airport", + "name": "Ouaco Airport", + "latitude_deg": "-20.855494", + "longitude_deg": "164.535542", + "elevation_ft": "69", + "continent": "OC", + "iso_country": "NC", + "iso_region": "NC-U-A", + "municipality": "Ouaco", + "scheduled_service": "no", + "gps_code": "NWWY" + }, + { + "id": "23380", + "ident": "NX01", + "type": "small_airport", + "name": "Cole Landing Zone Airport", + "latitude_deg": "35.27790069580078", + "longitude_deg": "-94.22429656982422", + "elevation_ft": "811", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "scheduled_service": "no", + "gps_code": "NX01", + "local_code": "NX01" + }, + { + "id": "45957", + "ident": "NXF", + "type": "closed", + "name": "MCOLF Camp Pendleton (Red Beach) Airport", + "latitude_deg": "33.285643", + "longitude_deg": "-117.456476", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceanside", + "scheduled_service": "no", + "keywords": "KNXF, NXF" + }, + { + "id": "23381", + "ident": "NY00", + "type": "small_airport", + "name": "Basher Field", + "latitude_deg": "42.56669998168945", + "longitude_deg": "-78.55609893798828", + "elevation_ft": "1855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Sardinia", + "scheduled_service": "no", + "gps_code": "NY00", + "local_code": "NY00" + }, + { + "id": "23382", + "ident": "NY01", + "type": "small_airport", + "name": "Knowlesville Airport", + "latitude_deg": "43.22090148925781", + "longitude_deg": "-78.31500244140625", + "elevation_ft": "555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Knowlesville", + "scheduled_service": "no", + "gps_code": "NY01", + "local_code": "NY01" + }, + { + "id": "23383", + "ident": "NY02", + "type": "small_airport", + "name": "Mountain Top Airport", + "latitude_deg": "42.487300872802734", + "longitude_deg": "-74.78019714355469", + "elevation_ft": "1960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Davenport", + "scheduled_service": "no", + "gps_code": "NY02", + "local_code": "NY02" + }, + { + "id": "23384", + "ident": "NY03", + "type": "closed", + "name": "Skytop Airport", + "latitude_deg": "41.874428", + "longitude_deg": "-74.978528", + "elevation_ft": "2094", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Roscoe", + "scheduled_service": "no", + "keywords": "NY03" + }, + { + "id": "23385", + "ident": "NY04", + "type": "closed", + "name": "East Arcade Airport", + "latitude_deg": "42.585602", + "longitude_deg": "-78.3491968", + "elevation_ft": "1830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Arcade", + "scheduled_service": "no", + "keywords": "NY04" + }, + { + "id": "23386", + "ident": "NY05", + "type": "small_airport", + "name": "Hogan Airport", + "latitude_deg": "42.78150177001953", + "longitude_deg": "-74.32569885253906", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Esperance", + "scheduled_service": "no", + "gps_code": "NY05", + "local_code": "NY05" + }, + { + "id": "23387", + "ident": "NY06", + "type": "small_airport", + "name": "Gaines Valley Aviation Airport", + "latitude_deg": "43.2963981628418", + "longitude_deg": "-78.21389770507812", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Albion", + "scheduled_service": "no", + "gps_code": "NY06", + "local_code": "NY06" + }, + { + "id": "23388", + "ident": "NY07", + "type": "small_airport", + "name": "Hurlbut Field", + "latitude_deg": "44.545799255371094", + "longitude_deg": "-75.16110229492188", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Canton", + "scheduled_service": "no", + "gps_code": "NY07", + "local_code": "NY07" + }, + { + "id": "23389", + "ident": "NY08", + "type": "heliport", + "name": "Port Jervis Fire Department Heliport", + "latitude_deg": "41.37699890136719", + "longitude_deg": "-74.6760025024414", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Port Jervis", + "scheduled_service": "no", + "gps_code": "NY08", + "local_code": "NY08" + }, + { + "id": "23390", + "ident": "NY09", + "type": "closed", + "name": "Middle Hope Airport", + "latitude_deg": "41.561199", + "longitude_deg": "-74.016296", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Newburgh", + "scheduled_service": "no", + "keywords": "NY09" + }, + { + "id": "23391", + "ident": "NY1", + "type": "small_airport", + "name": "Kline Kill Airport", + "latitude_deg": "42.350101470947266", + "longitude_deg": "-73.63710021972656", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Ghent", + "scheduled_service": "no", + "gps_code": "NY1", + "local_code": "NY1" + }, + { + "id": "23392", + "ident": "NY10", + "type": "small_airport", + "name": "Duflo Airport", + "latitude_deg": "43.84260177612305", + "longitude_deg": "-75.43070220947266", + "elevation_ft": "789", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "New Bremen", + "scheduled_service": "no", + "gps_code": "NY10", + "local_code": "NY10" + }, + { + "id": "23393", + "ident": "NY11", + "type": "small_airport", + "name": "Lakestone Farm Airport", + "latitude_deg": "43.035301208496094", + "longitude_deg": "-77.30799865722656", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Macedon", + "scheduled_service": "no", + "gps_code": "NY11", + "local_code": "NY11" + }, + { + "id": "23394", + "ident": "NY12", + "type": "heliport", + "name": "Auburn Community Hospital Heliport", + "latitude_deg": "42.941052", + "longitude_deg": "-76.564331", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "NY12", + "local_code": "NY12" + }, + { + "id": "23395", + "ident": "NY13", + "type": "small_airport", + "name": "D'Amico Airport", + "latitude_deg": "43.0908", + "longitude_deg": "-76.98864", + "elevation_ft": "515", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Lyons", + "scheduled_service": "no", + "gps_code": "NY13", + "local_code": "NY13" + }, + { + "id": "23396", + "ident": "NY14", + "type": "closed", + "name": "Wyde Heliport", + "latitude_deg": "41.666502", + "longitude_deg": "-74.736297", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Monticello", + "scheduled_service": "no", + "keywords": "NY14" + }, + { + "id": "23397", + "ident": "NY15", + "type": "small_airport", + "name": "Lakeville Airport", + "latitude_deg": "42.8265", + "longitude_deg": "-77.714401", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Lakeville", + "scheduled_service": "no", + "gps_code": "NY15", + "local_code": "NY15", + "keywords": "Hannas Acres" + }, + { + "id": "23398", + "ident": "NY16", + "type": "small_airport", + "name": "Oak Ridge Airport", + "latitude_deg": "43.0984001159668", + "longitude_deg": "-77.18190002441406", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "East Palmyra", + "scheduled_service": "no", + "gps_code": "NY16", + "local_code": "NY16" + }, + { + "id": "23399", + "ident": "NY17", + "type": "small_airport", + "name": "Adirondack Airpark Estates Airport", + "latitude_deg": "44.601983", + "longitude_deg": "-73.853138", + "elevation_ft": "1352", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Saranac", + "scheduled_service": "no", + "gps_code": "NY17", + "local_code": "NY17" + }, + { + "id": "23400", + "ident": "NY18", + "type": "small_airport", + "name": "Neno Airport", + "latitude_deg": "42.4487", + "longitude_deg": "-76.616897", + "elevation_ft": "1283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Ithaca", + "scheduled_service": "no", + "gps_code": "NY18", + "local_code": "NY18", + "keywords": "Neno International" + }, + { + "id": "23401", + "ident": "NY19", + "type": "small_airport", + "name": "Walls Airport", + "latitude_deg": "43.04399871826172", + "longitude_deg": "-76.46189880371094", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Elbridge", + "scheduled_service": "no", + "gps_code": "NY19", + "local_code": "NY19" + }, + { + "id": "23402", + "ident": "NY20", + "type": "small_airport", + "name": "Nellis Field", + "latitude_deg": "42.962592", + "longitude_deg": "-74.681904", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Fort Plain", + "scheduled_service": "no", + "gps_code": "NY20", + "local_code": "NY20" + }, + { + "id": "23403", + "ident": "NY21", + "type": "heliport", + "name": "Dewitt Heliport", + "latitude_deg": "43.20330047607422", + "longitude_deg": "-77.52359771728516", + "elevation_ft": "375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Webster", + "scheduled_service": "no", + "gps_code": "NY21", + "local_code": "NY21" + }, + { + "id": "23404", + "ident": "NY22", + "type": "heliport", + "name": "NYPD Air Operations (Floyd Bennett Field) Heliport", + "latitude_deg": "40.5905", + "longitude_deg": "-73.8805", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "New York", + "scheduled_service": "no", + "gps_code": "NY22", + "local_code": "NY22" + }, + { + "id": "23405", + "ident": "NY23", + "type": "small_airport", + "name": "MAC Airport", + "latitude_deg": "42.987597", + "longitude_deg": "-74.966499", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Mohawk", + "scheduled_service": "no", + "gps_code": "NY23", + "local_code": "NY23", + "keywords": "Mohawk Aviation Center" + }, + { + "id": "23406", + "ident": "NY24", + "type": "small_airport", + "name": "Taylor Johnson Airport", + "latitude_deg": "43.12779998779297", + "longitude_deg": "-78.97000122070312", + "elevation_ft": "633", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Niagara Falls", + "scheduled_service": "no", + "gps_code": "NY24", + "local_code": "NY24" + }, + { + "id": "23407", + "ident": "NY25", + "type": "closed", + "name": "F&F Airpark Airport", + "latitude_deg": "42.452024", + "longitude_deg": "-75.010956", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Oneonta", + "scheduled_service": "no", + "keywords": "NY25" + }, + { + "id": "23408", + "ident": "NY26", + "type": "small_airport", + "name": "Sky-Ranch Airport", + "latitude_deg": "42.983398", + "longitude_deg": "-74.899597", + "elevation_ft": "1330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Mohawk", + "scheduled_service": "no", + "gps_code": "NY26", + "local_code": "NY26" + }, + { + "id": "23409", + "ident": "NY27", + "type": "small_airport", + "name": "South Dayton Airport", + "latitude_deg": "42.37089920043945", + "longitude_deg": "-79.0094985961914", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "South Dayton", + "scheduled_service": "no", + "gps_code": "NY27", + "local_code": "NY27" + }, + { + "id": "23410", + "ident": "NY28", + "type": "small_airport", + "name": "Anthonson Airport", + "latitude_deg": "43.070899963378906", + "longitude_deg": "-76.40799713134766", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Jordan", + "scheduled_service": "no", + "gps_code": "NY28", + "local_code": "NY28" + }, + { + "id": "23411", + "ident": "NY29", + "type": "small_airport", + "name": "Schuyler Airport", + "latitude_deg": "42.45199966430664", + "longitude_deg": "-76.9115982055664", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Watkins Glen", + "scheduled_service": "no", + "gps_code": "NY29", + "local_code": "NY29" + }, + { + "id": "23412", + "ident": "NY30", + "type": "heliport", + "name": "Hilltop Heliport", + "latitude_deg": "41.67002", + "longitude_deg": "-74.75852", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Monticello", + "scheduled_service": "no", + "gps_code": "NY30", + "local_code": "NY30" + }, + { + "id": "23413", + "ident": "NY31", + "type": "small_airport", + "name": "Rabbit Lane Airport", + "latitude_deg": "43.22370147705078", + "longitude_deg": "-76.3687973022461", + "elevation_ft": "405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "NY31", + "local_code": "NY31" + }, + { + "id": "23414", + "ident": "NY32", + "type": "closed", + "name": "Fort Hill Airport", + "latitude_deg": "42.902002", + "longitude_deg": "-77.547798", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "West Bloomfield", + "scheduled_service": "no", + "keywords": "NY32" + }, + { + "id": "23415", + "ident": "NY33", + "type": "closed", + "name": "Westerlo Airport", + "latitude_deg": "42.522301", + "longitude_deg": "-74.028702", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Westerlo", + "scheduled_service": "no", + "keywords": "NY33" + }, + { + "id": "23416", + "ident": "NY34", + "type": "small_airport", + "name": "Randall's Roost Airport", + "latitude_deg": "42.162200927734375", + "longitude_deg": "-77.42749786376953", + "elevation_ft": "1825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Cameron", + "scheduled_service": "no", + "gps_code": "NY34", + "local_code": "NY34" + }, + { + "id": "23417", + "ident": "NY35", + "type": "small_airport", + "name": "Stanton Airport", + "latitude_deg": "41.750099182128906", + "longitude_deg": "-74.11630249023438", + "elevation_ft": "303", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "New Paltz", + "scheduled_service": "no", + "gps_code": "NY35", + "local_code": "NY35" + }, + { + "id": "23418", + "ident": "NY36", + "type": "heliport", + "name": "Adirondack Medical Center Heliport", + "latitude_deg": "44.344398498535156", + "longitude_deg": "-74.14250183105469", + "elevation_ft": "1594", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Saranac Lake", + "scheduled_service": "no", + "gps_code": "NY36", + "local_code": "NY36" + }, + { + "id": "23419", + "ident": "NY37", + "type": "small_airport", + "name": "Galway Airport", + "latitude_deg": "43.00920104980469", + "longitude_deg": "-74.09120178222656", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Galway", + "scheduled_service": "no", + "gps_code": "NY37", + "local_code": "NY37" + }, + { + "id": "23420", + "ident": "NY38", + "type": "closed", + "name": "Mc Bride's Airport", + "latitude_deg": "42.8531", + "longitude_deg": "-77.124702", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Gorham", + "scheduled_service": "no", + "keywords": "NY38" + }, + { + "id": "23421", + "ident": "NY39", + "type": "heliport", + "name": "Virgil Excavation Heliport", + "latitude_deg": "43.13059997558594", + "longitude_deg": "-77.73359680175781", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Rochester", + "scheduled_service": "no", + "gps_code": "NY39", + "local_code": "NY39" + }, + { + "id": "23422", + "ident": "NY40", + "type": "small_airport", + "name": "Gentzke Aeronautical Park Airport", + "latitude_deg": "42.610599517822266", + "longitude_deg": "-78.59559631347656", + "elevation_ft": "1750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Holland", + "scheduled_service": "no", + "gps_code": "NY40", + "local_code": "NY40" + }, + { + "id": "23423", + "ident": "NY41", + "type": "closed", + "name": "Best Western Red Jacket Inn Heliport", + "latitude_deg": "43.072601", + "longitude_deg": "-78.985298", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Niagara Falls", + "scheduled_service": "no", + "keywords": "NY41" + }, + { + "id": "23424", + "ident": "NY42", + "type": "small_airport", + "name": "Paradise Airport", + "latitude_deg": "43.219988", + "longitude_deg": "-76.68945", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Red Creek", + "scheduled_service": "no", + "gps_code": "NY42", + "local_code": "NY42" + }, + { + "id": "23425", + "ident": "NY43", + "type": "heliport", + "name": "Mountain View Heliport", + "latitude_deg": "42.156671", + "longitude_deg": "-73.999132", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Saugerties", + "scheduled_service": "no", + "gps_code": "NY43", + "local_code": "NY43" + }, + { + "id": "23426", + "ident": "NY44", + "type": "heliport", + "name": "IBM Somers Heliport", + "latitude_deg": "41.316952", + "longitude_deg": "-73.679854", + "elevation_ft": "495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Somers", + "scheduled_service": "no", + "gps_code": "NY44", + "local_code": "NY44" + }, + { + "id": "23427", + "ident": "NY45", + "type": "heliport", + "name": "Robins Island South Heliport", + "latitude_deg": "40.962799072265625", + "longitude_deg": "-72.45670318603516", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Southold", + "scheduled_service": "no", + "gps_code": "NY45", + "local_code": "NY45" + }, + { + "id": "23428", + "ident": "NY46", + "type": "heliport", + "name": "Bel-Aire Farms Heliport", + "latitude_deg": "41.849028", + "longitude_deg": "-73.599786", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Amenia", + "scheduled_service": "no", + "gps_code": "NY46", + "local_code": "NY46" + }, + { + "id": "23429", + "ident": "NY47", + "type": "heliport", + "name": "Wyeth Ayerst Heliport", + "latitude_deg": "41.07749938964844", + "longitude_deg": "-74.02469635009766", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Pearl River", + "scheduled_service": "no", + "gps_code": "NY47", + "local_code": "NY47" + }, + { + "id": "23430", + "ident": "NY48", + "type": "small_airport", + "name": "Grace's Landing Airport", + "latitude_deg": "42.33810043334961", + "longitude_deg": "-74.7490005493164", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "South Kortright", + "scheduled_service": "no", + "gps_code": "NY48", + "local_code": "NY48" + }, + { + "id": "23431", + "ident": "NY49", + "type": "small_airport", + "name": "Mesmer Airport", + "latitude_deg": "42.991523", + "longitude_deg": "-78.985764", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Grand Island", + "scheduled_service": "no", + "gps_code": "NY49", + "local_code": "NY49" + }, + { + "id": "23432", + "ident": "NY50", + "type": "small_airport", + "name": "Johnson Airport", + "latitude_deg": "42.992144", + "longitude_deg": "-74.137459", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Amsterdam", + "scheduled_service": "no", + "gps_code": "NY50", + "local_code": "NY50" + }, + { + "id": "23433", + "ident": "NY51", + "type": "small_airport", + "name": "Russell Airport", + "latitude_deg": "42.87009811401367", + "longitude_deg": "-74.49929809570312", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Canajoharie", + "scheduled_service": "no", + "gps_code": "NY51", + "local_code": "NY51" + }, + { + "id": "23434", + "ident": "NY52", + "type": "heliport", + "name": "Staten Island University Hospital Heliport", + "latitude_deg": "40.584206", + "longitude_deg": "-74.08326", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Staten Island", + "scheduled_service": "no", + "gps_code": "NY52", + "local_code": "NY52" + }, + { + "id": "23435", + "ident": "NY53", + "type": "closed", + "name": "Tri County Airways Airport", + "latitude_deg": "42.738998", + "longitude_deg": "-75.300201", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "West Edmeston", + "scheduled_service": "no", + "keywords": "NY53" + }, + { + "id": "23436", + "ident": "NY54", + "type": "heliport", + "name": "Evergreen Mountain Heliport", + "latitude_deg": "42.19275", + "longitude_deg": "-74.326646", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "West Kill", + "scheduled_service": "no", + "gps_code": "NY54", + "local_code": "NY54" + }, + { + "id": "23437", + "ident": "NY55", + "type": "small_airport", + "name": "Grund Field", + "latitude_deg": "42.44729995727539", + "longitude_deg": "-76.5969009399414", + "elevation_ft": "1453", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Ithaca", + "scheduled_service": "no", + "gps_code": "NY55", + "local_code": "NY55" + }, + { + "id": "23438", + "ident": "NY57", + "type": "small_airport", + "name": "Remsen City Airport", + "latitude_deg": "43.36009979248047", + "longitude_deg": "-75.18460083007812", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Remsen", + "scheduled_service": "no", + "gps_code": "NY57", + "local_code": "NY57" + }, + { + "id": "23439", + "ident": "NY58", + "type": "closed", + "name": "Snow Field", + "latitude_deg": "42.956699", + "longitude_deg": "-74.081497", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Amsterdam", + "scheduled_service": "no", + "keywords": "NY58" + }, + { + "id": "23440", + "ident": "NY59", + "type": "small_airport", + "name": "Valenty Mierek Airport", + "latitude_deg": "43.387298583984375", + "longitude_deg": "-75.48629760742188", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Ava", + "scheduled_service": "no", + "gps_code": "NY59", + "local_code": "NY59" + }, + { + "id": "23441", + "ident": "NY60", + "type": "small_airport", + "name": "Vasile Field", + "latitude_deg": "44.76250076293945", + "longitude_deg": "-73.5593032836914", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Beekmanton", + "scheduled_service": "no", + "gps_code": "NY60", + "local_code": "NY60" + }, + { + "id": "23442", + "ident": "NY61", + "type": "seaplane_base", + "name": "Eagle Nest Seaplane Base", + "latitude_deg": "43.82979965209961", + "longitude_deg": "-74.49539947509766", + "elevation_ft": "1790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Blue Mountain Lake", + "scheduled_service": "no", + "gps_code": "NY61", + "local_code": "NY61" + }, + { + "id": "23443", + "ident": "NY62", + "type": "small_airport", + "name": "Curtis Airport", + "latitude_deg": "43.14580154418945", + "longitude_deg": "-75.54190063476562", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Verona", + "scheduled_service": "no", + "gps_code": "NY62", + "local_code": "NY62" + }, + { + "id": "23444", + "ident": "NY63", + "type": "small_airport", + "name": "Archdale Meadows Airport", + "latitude_deg": "43.05438", + "longitude_deg": "-73.47197", + "elevation_ft": "584", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Greenwich", + "scheduled_service": "no", + "gps_code": "NY63", + "local_code": "NY63" + }, + { + "id": "23445", + "ident": "NY64", + "type": "small_airport", + "name": "The Pines Airport", + "latitude_deg": "43.102901458740234", + "longitude_deg": "-74.15509796142578", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Broadalbin", + "scheduled_service": "no", + "gps_code": "NY64", + "local_code": "NY64" + }, + { + "id": "23446", + "ident": "NY65", + "type": "small_airport", + "name": "Circle K Ranch Airport", + "latitude_deg": "43.136788", + "longitude_deg": "-74.115357", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Broadalbin", + "scheduled_service": "no", + "gps_code": "NY65", + "local_code": "NY65" + }, + { + "id": "23447", + "ident": "NY66", + "type": "small_airport", + "name": "Lewis Field", + "latitude_deg": "43.128532", + "longitude_deg": "-74.124758", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Broadalbin", + "scheduled_service": "no", + "gps_code": "NY66", + "local_code": "NY66", + "keywords": "The Farm Airport" + }, + { + "id": "23448", + "ident": "NY67", + "type": "small_airport", + "name": "Carter Flight Park Ultralightport", + "latitude_deg": "42.993099212646484", + "longitude_deg": "-75.91169738769531", + "elevation_ft": "1301", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Manlius", + "scheduled_service": "no", + "gps_code": "NY67", + "local_code": "NY67" + }, + { + "id": "23449", + "ident": "NY68", + "type": "small_airport", + "name": "Richfield Airport", + "latitude_deg": "42.86119842529297", + "longitude_deg": "-74.94539642333984", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Richfield Springs", + "scheduled_service": "no", + "gps_code": "NY68", + "local_code": "NY68" + }, + { + "id": "23450", + "ident": "NY69", + "type": "small_airport", + "name": "John Gonzales Field", + "latitude_deg": "44.12009811401367", + "longitude_deg": "-76.30130004882812", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Cape Vincent", + "scheduled_service": "no", + "gps_code": "NY69", + "local_code": "NY69" + }, + { + "id": "45663", + "ident": "NY70", + "type": "small_airport", + "name": "Scott'S Sky Ranch Airport", + "latitude_deg": "42.648889", + "longitude_deg": "-77.920278", + "elevation_ft": "1221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Mount Morris", + "scheduled_service": "no", + "gps_code": "NY70", + "local_code": "NY70" + }, + { + "id": "23451", + "ident": "NY71", + "type": "closed", + "name": "O'Riley Airport", + "latitude_deg": "42.975602", + "longitude_deg": "-74.729897", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Fort Plain", + "scheduled_service": "no", + "keywords": "NY71" + }, + { + "id": "23452", + "ident": "NY72", + "type": "small_airport", + "name": "Poolsbrook Aerodrome", + "latitude_deg": "43.07229995727539", + "longitude_deg": "-75.9384994506836", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Manlius", + "scheduled_service": "no", + "gps_code": "NY72", + "local_code": "NY72" + }, + { + "id": "23453", + "ident": "NY73", + "type": "small_airport", + "name": "Miller Field", + "latitude_deg": "42.31809997558594", + "longitude_deg": "-75.5990982055664", + "elevation_ft": "1580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Coventryville", + "scheduled_service": "no", + "gps_code": "NY73", + "local_code": "NY73" + }, + { + "id": "23454", + "ident": "NY74", + "type": "small_airport", + "name": "Deer Run Airport", + "latitude_deg": "42.323699951171875", + "longitude_deg": "-73.87319946289062", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Coxsackie", + "scheduled_service": "no", + "gps_code": "NY74", + "local_code": "NY74" + }, + { + "id": "45551", + "ident": "NY75", + "type": "heliport", + "name": "Ch 12 News Woodbury Heliport", + "latitude_deg": "40.804694", + "longitude_deg": "-73.489611", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Woodbury", + "scheduled_service": "no", + "gps_code": "NY75", + "local_code": "NY75" + }, + { + "id": "23455", + "ident": "NY76", + "type": "small_airport", + "name": "Neverland Airport", + "latitude_deg": "42.31566619873047", + "longitude_deg": "-78.89533233642578", + "elevation_ft": "1901", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Cattaraugus", + "scheduled_service": "no", + "gps_code": "NY76", + "local_code": "NY76" + }, + { + "id": "23456", + "ident": "NY77", + "type": "small_airport", + "name": "Wandervogel Gliderport", + "latitude_deg": "42.718101501464844", + "longitude_deg": "-74.16349792480469", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Delanson", + "scheduled_service": "no", + "gps_code": "NY77", + "local_code": "NY77" + }, + { + "id": "23457", + "ident": "NY78", + "type": "closed", + "name": "Downsville Airport", + "latitude_deg": "42.0528", + "longitude_deg": "-75.014753", + "elevation_ft": "1087", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Downsville", + "scheduled_service": "no", + "keywords": "NY78" + }, + { + "id": "23458", + "ident": "NY79", + "type": "small_airport", + "name": "Keysa Airport", + "latitude_deg": "42.59669876098633", + "longitude_deg": "-78.34030151367188", + "elevation_ft": "1620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Bliss", + "scheduled_service": "no", + "gps_code": "NY79", + "local_code": "NY79" + }, + { + "id": "45548", + "ident": "NY80", + "type": "balloonport", + "name": "Aurora Balloonport", + "latitude_deg": "42.696389", + "longitude_deg": "-78.569167", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "South Wales", + "scheduled_service": "no", + "gps_code": "NY80", + "local_code": "NY80" + }, + { + "id": "23459", + "ident": "NY81", + "type": "closed", + "name": "Heldeberg Airstrip", + "latitude_deg": "42.611198", + "longitude_deg": "-74.064796", + "elevation_ft": "1237", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "East Berne", + "scheduled_service": "no", + "keywords": "NY81" + }, + { + "id": "23460", + "ident": "NY82", + "type": "small_airport", + "name": "Alexander Farm Airport", + "latitude_deg": "42.58060073852539", + "longitude_deg": "-73.61620330810547", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "East Schodack", + "scheduled_service": "no", + "gps_code": "NY82", + "local_code": "NY82" + }, + { + "id": "23461", + "ident": "NY83", + "type": "seaplane_base", + "name": "Essex Boatworks Seaplane Base", + "latitude_deg": "44.30009841918945", + "longitude_deg": "-73.34960174560547", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Essex", + "scheduled_service": "no", + "gps_code": "NY83", + "local_code": "NY83" + }, + { + "id": "23462", + "ident": "NY84", + "type": "closed", + "name": "Richter Aero Airport", + "latitude_deg": "44.279202", + "longitude_deg": "-73.3787", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Essex", + "scheduled_service": "no", + "keywords": "NY84" + }, + { + "id": "23463", + "ident": "NY85", + "type": "closed", + "name": "Hickory Hollow Airport", + "latitude_deg": "43.2495", + "longitude_deg": "-75.313797", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Floyd", + "scheduled_service": "no", + "keywords": "NY85" + }, + { + "id": "23464", + "ident": "NY86", + "type": "small_airport", + "name": "Waxwing Airport", + "latitude_deg": "42.51259994506836", + "longitude_deg": "-74.11489868164062", + "elevation_ft": "1680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Rensselaerville", + "scheduled_service": "no", + "gps_code": "NY86", + "local_code": "NY86" + }, + { + "id": "23465", + "ident": "NY87", + "type": "small_airport", + "name": "Amsterdam Airfield", + "latitude_deg": "42.96260070800781", + "longitude_deg": "-74.25370025634766", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Fort Johnson", + "scheduled_service": "no", + "gps_code": "NY87", + "local_code": "NY87" + }, + { + "id": "23466", + "ident": "NY88", + "type": "small_airport", + "name": "Hickory Acres Airport", + "latitude_deg": "42.883399963378906", + "longitude_deg": "-74.69129943847656", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Fort Plain", + "scheduled_service": "no", + "gps_code": "NY88", + "local_code": "NY88" + }, + { + "id": "23467", + "ident": "NY89", + "type": "small_airport", + "name": "Goose Creek Airport", + "latitude_deg": "42.078285", + "longitude_deg": "-79.393506", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Jamestown", + "scheduled_service": "no", + "gps_code": "NY89", + "local_code": "NY89", + "keywords": "Fairbank Farms" + }, + { + "id": "23468", + "ident": "NY9", + "type": "seaplane_base", + "name": "Long Lake /Helms Seaplane Base", + "latitude_deg": "43.975101", + "longitude_deg": "-74.420403", + "elevation_ft": "1629", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Long Lake", + "scheduled_service": "no", + "local_code": "NY9", + "keywords": "NY33" + }, + { + "id": "23469", + "ident": "NY90", + "type": "heliport", + "name": "Medina Memorial Hospital Heliport", + "latitude_deg": "43.22309875488281", + "longitude_deg": "-78.39810180664062", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Medina", + "scheduled_service": "no", + "gps_code": "NY90", + "local_code": "NY90" + }, + { + "id": "23470", + "ident": "NY91", + "type": "small_airport", + "name": "Smithfield Airport", + "latitude_deg": "42.994026", + "longitude_deg": "-75.702774", + "elevation_ft": "1465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Peterboro", + "scheduled_service": "no", + "gps_code": "NY91", + "local_code": "NY91", + "keywords": "Cloverdale Farm" + }, + { + "id": "23471", + "ident": "NY92", + "type": "small_airport", + "name": "Owasco Airport", + "latitude_deg": "42.736493", + "longitude_deg": "-76.486065", + "elevation_ft": "1378", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Moravia", + "scheduled_service": "no", + "local_code": "2N4", + "keywords": "92NK, NY92, Y92" + }, + { + "id": "45661", + "ident": "NY93", + "type": "closed", + "name": "Phillipsburg Landing Heliport", + "latitude_deg": "41.432319", + "longitude_deg": "-74.36364", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Middletown", + "scheduled_service": "no", + "gps_code": "NY93", + "local_code": "NY93" + }, + { + "id": "23472", + "ident": "NY94", + "type": "small_airport", + "name": "Old Rhinebeck Aerodrome", + "latitude_deg": "41.9715", + "longitude_deg": "-73.8629", + "elevation_ft": "323", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Rhinebeck", + "scheduled_service": "no", + "gps_code": "NY94", + "local_code": "NY94", + "home_link": "http://www.oldrhinebeck.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Old_Rhinebeck_Aerodrome" + }, + { + "id": "23473", + "ident": "NY96", + "type": "small_airport", + "name": "Mexico Airdrome Airport", + "latitude_deg": "43.426700592041016", + "longitude_deg": "-76.19380187988281", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Mexico", + "scheduled_service": "no", + "gps_code": "NY96", + "local_code": "NY96" + }, + { + "id": "23474", + "ident": "NY97", + "type": "small_airport", + "name": "Northway Airport", + "latitude_deg": "44.66669845581055", + "longitude_deg": "-73.56620025634766", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Morrisonville", + "scheduled_service": "no", + "gps_code": "NY97", + "local_code": "NY97" + }, + { + "id": "23475", + "ident": "NY99", + "type": "heliport", + "name": "Lakeview Shock Incarceration Center Heliport", + "latitude_deg": "42.40729904174805", + "longitude_deg": "-79.44059753417969", + "elevation_ft": "678", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Brocton", + "scheduled_service": "no", + "gps_code": "NY99", + "local_code": "NY99" + }, + { + "id": "28105", + "ident": "NYA", + "type": "small_airport", + "name": "Natya Airport", + "latitude_deg": "-35.162805", + "longitude_deg": "143.367798", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no" + }, + { + "id": "42261", + "ident": "NZ-0001", + "type": "small_airport", + "name": "Mesopotamia Station Airstrip", + "latitude_deg": "-43.641170501708984", + "longitude_deg": "170.90237426757812", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "scheduled_service": "no", + "home_link": "http://www.mesopotamia.co.nz/transport.html" + }, + { + "id": "42498", + "ident": "NZ-0002", + "type": "small_airport", + "name": "Arrowsmith Station", + "latitude_deg": "-43.46634292602539", + "longitude_deg": "171.162353515625", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "scheduled_service": "no" + }, + { + "id": "46372", + "ident": "NZ-0003", + "type": "small_airport", + "name": "Hawea Downs", + "latitude_deg": "-44.660900092300004", + "longitude_deg": "169.239664078", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-OTA", + "scheduled_service": "no" + }, + { + "id": "42500", + "ident": "NZ-0004", + "type": "small_airport", + "name": "Hakatere Airstrip", + "latitude_deg": "-43.57743835449219", + "longitude_deg": "171.17091369628906", + "elevation_ft": "2000", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "scheduled_service": "no" + }, + { + "id": "42501", + "ident": "NZ-0005", + "type": "small_airport", + "name": "Lake Haupiri/Gloriavale Christian Community Airport", + "latitude_deg": "-42.6012001038", + "longitude_deg": "171.699005127", + "elevation_ft": "600", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "scheduled_service": "no", + "gps_code": "NZHP" + }, + { + "id": "42502", + "ident": "NZ-0006", + "type": "closed", + "name": "Arkwrights Airstrip/Dunsandel (Private)", + "latitude_deg": "-43.6785507202", + "longitude_deg": "172.117477417", + "elevation_ft": "285", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "scheduled_service": "no", + "home_link": "http://anzfc.inet.net.nz/arkwrights.htm" + }, + { + "id": "42503", + "ident": "NZ-0007", + "type": "small_airport", + "name": "Dunsandel", + "latitude_deg": "-43.68368911743164", + "longitude_deg": "172.1490020751953", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "scheduled_service": "no" + }, + { + "id": "42504", + "ident": "NZ-0008", + "type": "small_airport", + "name": "Cattle Creek Airstrip", + "latitude_deg": "-44.51150131225586", + "longitude_deg": "170.6699981689453", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "scheduled_service": "no" + }, + { + "id": "42505", + "ident": "NZ-0009", + "type": "small_airport", + "name": "Manuka Point Lodge Airstrip", + "latitude_deg": "-43.274559020996094", + "longitude_deg": "171.21755981445312", + "elevation_ft": "1800", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "scheduled_service": "no", + "home_link": "http://www.manukapoint.com" + }, + { + "id": "42506", + "ident": "NZ-0010", + "type": "small_airport", + "name": "Dingleburn Station Airstrip", + "latitude_deg": "-44.4380989074707", + "longitude_deg": "169.39100646972656", + "elevation_ft": "1000", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-OTA", + "scheduled_service": "no", + "home_link": "http://www.dingleburnstation.com/" + }, + { + "id": "42725", + "ident": "NZ-0011", + "type": "small_airport", + "name": "Worthy Lodge airstrip (Ladbrooks)", + "latitude_deg": "-43.63935089111328", + "longitude_deg": "172.52540588378906", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "scheduled_service": "no", + "keywords": "Christchurch, Lincoln" + }, + { + "id": "42726", + "ident": "NZ-0012", + "type": "small_airport", + "name": "Kings (Ladbrooks)", + "latitude_deg": "-43.63925552368164", + "longitude_deg": "172.53067016601562", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "scheduled_service": "no" + }, + { + "id": "42727", + "ident": "NZ-0013", + "type": "small_airport", + "name": "Culverden", + "latitude_deg": "-42.76765060424805", + "longitude_deg": "172.8919677734375", + "elevation_ft": "597", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "municipality": "Hurunui District Council", + "scheduled_service": "no", + "home_link": "http://anzfc.inet.net.nz/culverden.htm" + }, + { + "id": "42728", + "ident": "NZ-0014", + "type": "small_airport", + "name": "Big Bay Beach Airstrip", + "latitude_deg": "-44.294983", + "longitude_deg": "168.114944", + "elevation_ft": "1", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "municipality": "Big Bay", + "scheduled_service": "no" + }, + { + "id": "43024", + "ident": "NZ-0015", + "type": "small_airport", + "name": "Taitapu Ag strip", + "latitude_deg": "-43.67060089111328", + "longitude_deg": "172.58999633789062", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "municipality": "Taitapu", + "scheduled_service": "no" + }, + { + "id": "43198", + "ident": "NZ-0016", + "type": "small_airport", + "name": "Cape Campbell airstrip", + "latitude_deg": "-41.74589920043945", + "longitude_deg": "174.27200317382812", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-MBH", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cape_Campbell" + }, + { + "id": "43201", + "ident": "NZ-0017", + "type": "small_airport", + "name": "Neils Beach Aerodrome", + "latitude_deg": "-43.997523", + "longitude_deg": "168.661659", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "municipality": "Neils Beach", + "scheduled_service": "no" + }, + { + "id": "46489", + "ident": "NZ-0018", + "type": "small_airport", + "name": "Gorge River Airstrip", + "latitude_deg": "-44.184574", + "longitude_deg": "168.192444", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "municipality": "Haast", + "scheduled_service": "no" + }, + { + "id": "308629", + "ident": "NZ-0019", + "type": "heliport", + "name": "Jennian Hangar, Waikato Hospital Heliport", + "latitude_deg": "-37.806281", + "longitude_deg": "175.280897", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "NZHH" + }, + { + "id": "314996", + "ident": "NZ-0020", + "type": "small_airport", + "name": "Center Island Airstrip", + "latitude_deg": "-46.4549", + "longitude_deg": "167.8495", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-STL", + "municipality": "Raratoka Island", + "scheduled_service": "no" + }, + { + "id": "314997", + "ident": "NZ-0021", + "type": "small_airport", + "name": "Glenshe Airstrip", + "latitude_deg": "-45.0419", + "longitude_deg": "170.2403", + "elevation_ft": "1637", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-OTA", + "scheduled_service": "no" + }, + { + "id": "315006", + "ident": "NZ-0022", + "type": "small_airport", + "name": "Cromwell/Louburn Airport", + "latitude_deg": "-44.982756", + "longitude_deg": "169.215696", + "elevation_ft": "1010", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-OTA", + "municipality": "Cromwell", + "scheduled_service": "no", + "gps_code": "NZCW", + "keywords": "Mount Pisa" + }, + { + "id": "315020", + "ident": "NZ-0023", + "type": "heliport", + "name": "Middlemore Hospital Helipad", + "latitude_deg": "-36.9632", + "longitude_deg": "174.8452", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-AUK", + "municipality": "Aukland", + "scheduled_service": "no" + }, + { + "id": "321157", + "ident": "NZ-0024", + "type": "heliport", + "name": "Wairakei Helipad", + "latitude_deg": "-38.643244", + "longitude_deg": "176.088245", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "municipality": "Taupo", + "scheduled_service": "no", + "gps_code": "NZHF", + "home_link": "http://www.helicoptertours.co.nz/", + "keywords": "Huka Falls" + }, + { + "id": "429814", + "ident": "NZ-0025", + "type": "closed", + "name": "Gorge Creek Airstrip", + "latitude_deg": "-44.20799", + "longitude_deg": "168.30895", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "municipality": "Haast", + "scheduled_service": "no" + }, + { + "id": "326631", + "ident": "NZ-0026", + "type": "small_airport", + "name": "Pitt Island Aerodrome", + "latitude_deg": "-44.293167", + "longitude_deg": "-176.203476", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WGN", + "municipality": "Pitt Island", + "scheduled_service": "yes", + "gps_code": "NZPT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pitt_Island" + }, + { + "id": "326632", + "ident": "NZ-0027", + "type": "small_airport", + "name": "Raoul Island Airstrip", + "latitude_deg": "-29.243879", + "longitude_deg": "-177.936544", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-XX", + "municipality": "Kermadec Islands", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kermadec_Islands#Raoul_Island_Station" + }, + { + "id": "348795", + "ident": "NZ-0028", + "type": "closed", + "name": "Chatham Islands / Te Hapupu Airport", + "latitude_deg": "-43.791687", + "longitude_deg": "-176.354689", + "elevation_ft": "37", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WGN", + "municipality": "Te One", + "scheduled_service": "no" + }, + { + "id": "429815", + "ident": "NZ-0029", + "type": "small_airport", + "name": "Fox Glacier Aerodrome", + "latitude_deg": "-43.46111", + "longitude_deg": "170.01702", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "municipality": "Fox Glacier", + "scheduled_service": "no", + "gps_code": "NZFO", + "iata_code": "FGL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fox_Glacier_Aerodrome" + }, + { + "id": "429816", + "ident": "NZ-0030", + "type": "small_airport", + "name": "Jackson Bay Aerodrome", + "latitude_deg": "-43.91599", + "longitude_deg": "168.88258", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "municipality": "Jackson Bay", + "scheduled_service": "no" + }, + { + "id": "429817", + "ident": "NZ-0031", + "type": "small_airport", + "name": "Cascade Lagoon Airstrip", + "latitude_deg": "-44.02742", + "longitude_deg": "168.37023", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "municipality": "Jackson Bay", + "scheduled_service": "no" + }, + { + "id": "429818", + "ident": "NZ-0032", + "type": "small_airport", + "name": "Hope River Airstrip", + "latitude_deg": "-44.08595", + "longitude_deg": "168.3253", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "municipality": "Jackson Bay", + "scheduled_service": "no" + }, + { + "id": "429819", + "ident": "NZ-0033", + "type": "small_airport", + "name": "Hollyford River Aerodrome", + "latitude_deg": "-44.36083", + "longitude_deg": "168.00876", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-STL", + "municipality": "Jamestown", + "scheduled_service": "no" + }, + { + "id": "429820", + "ident": "NZ-0034", + "type": "small_airport", + "name": "Hollyford Airstrip", + "latitude_deg": "-44.7369", + "longitude_deg": "168.13302", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-STL", + "municipality": "Milford Sound", + "scheduled_service": "no" + }, + { + "id": "429821", + "ident": "NZ-0035", + "type": "small_airport", + "name": "Cascade Station Airstrip", + "latitude_deg": "-44.09453", + "longitude_deg": "168.5187", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "municipality": "Jackson Bay", + "scheduled_service": "no" + }, + { + "id": "429822", + "ident": "NZ-0036", + "type": "small_airport", + "name": "Karangarua River Airstrip", + "latitude_deg": "-43.567869", + "longitude_deg": "169.785172", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "municipality": "Karangarua", + "scheduled_service": "no" + }, + { + "id": "429824", + "ident": "NZ-0037", + "type": "small_airport", + "name": "Paringa Airstrip", + "latitude_deg": "-43.7131", + "longitude_deg": "169.47975", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "municipality": "Paringa", + "scheduled_service": "no" + }, + { + "id": "429825", + "ident": "NZ-0038", + "type": "small_airport", + "name": "Cook Flat Airstrip", + "latitude_deg": "-43.45774", + "longitude_deg": "169.93639", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "municipality": "Fox Glacier", + "scheduled_service": "no" + }, + { + "id": "429910", + "ident": "NZ-0039", + "type": "small_airport", + "name": "Te Paki Airport", + "latitude_deg": "-34.49023", + "longitude_deg": "172.76732", + "elevation_ft": "595", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Te Kao", + "scheduled_service": "no" + }, + { + "id": "429912", + "ident": "NZ-0040", + "type": "closed", + "name": "Paua Airport", + "latitude_deg": "-34.55534", + "longitude_deg": "172.89262", + "elevation_ft": "295", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Te Kao", + "scheduled_service": "no" + }, + { + "id": "429913", + "ident": "NZ-0041", + "type": "small_airport", + "name": "Rarawa Airport", + "latitude_deg": "-34.70214", + "longitude_deg": "173.02269", + "elevation_ft": "171", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Ngataki", + "scheduled_service": "no" + }, + { + "id": "429914", + "ident": "NZ-0042", + "type": "small_airport", + "name": "Ngataki Airport", + "latitude_deg": "-34.76319", + "longitude_deg": "173.05531", + "elevation_ft": "194", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Ngataki", + "scheduled_service": "no" + }, + { + "id": "429915", + "ident": "NZ-0043", + "type": "small_airport", + "name": "Waihopo Airstrip", + "latitude_deg": "-34.77493", + "longitude_deg": "173.09582", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Houhora", + "scheduled_service": "no" + }, + { + "id": "429916", + "ident": "NZ-0044", + "type": "small_airport", + "name": "Houhora North Airstrip", + "latitude_deg": "-34.76675", + "longitude_deg": "173.11199", + "elevation_ft": "180", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Houhora", + "scheduled_service": "no" + }, + { + "id": "429917", + "ident": "NZ-0045", + "type": "small_airport", + "name": "Sandhills Airstrip", + "latitude_deg": "-35.05828", + "longitude_deg": "173.21385", + "elevation_ft": "85", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Awanui", + "scheduled_service": "no" + }, + { + "id": "429918", + "ident": "NZ-0046", + "type": "small_airport", + "name": "Puriri Block Airstrip", + "latitude_deg": "-35.06246", + "longitude_deg": "173.33653", + "elevation_ft": "482", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Kaingaroa", + "scheduled_service": "no" + }, + { + "id": "429919", + "ident": "NZ-0047", + "type": "small_airport", + "name": "Fisher Riley North Airstrip", + "latitude_deg": "-35.07869", + "longitude_deg": "173.36623", + "elevation_ft": "481", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Kaitaia", + "scheduled_service": "no" + }, + { + "id": "429920", + "ident": "NZ-0048", + "type": "small_airport", + "name": "Fisher Riley South Airstrip", + "latitude_deg": "-35.10338", + "longitude_deg": "173.36966", + "elevation_ft": "340", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Kaitaia", + "scheduled_service": "no" + }, + { + "id": "429921", + "ident": "NZ-0049", + "type": "small_airport", + "name": "Pamapuria Airstrip", + "latitude_deg": "-35.13336", + "longitude_deg": "173.36834", + "elevation_ft": "302", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Kaitaia", + "scheduled_service": "no" + }, + { + "id": "429922", + "ident": "NZ-0050", + "type": "small_airport", + "name": "Te Rore Airstrip", + "latitude_deg": "-35.1806", + "longitude_deg": "173.37799", + "elevation_ft": "978", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Kaitaia", + "scheduled_service": "no" + }, + { + "id": "429923", + "ident": "NZ-0051", + "type": "small_airport", + "name": "Takahue Airstrip", + "latitude_deg": "-35.21042", + "longitude_deg": "173.34838", + "elevation_ft": "497", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Kaitaia", + "scheduled_service": "no" + }, + { + "id": "429924", + "ident": "NZ-0052", + "type": "small_airport", + "name": "Broadwood Airstrip", + "latitude_deg": "-35.25414", + "longitude_deg": "173.37782", + "elevation_ft": "413", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Broadwood", + "scheduled_service": "no" + }, + { + "id": "429925", + "ident": "NZ-0053", + "type": "small_airport", + "name": "Pukemiro Airstrip", + "latitude_deg": "-35.24984", + "longitude_deg": "173.35164", + "elevation_ft": "599", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Broadwood", + "scheduled_service": "no" + }, + { + "id": "429926", + "ident": "NZ-0054", + "type": "small_airport", + "name": "Wairapakuru Airstrip", + "latitude_deg": "-35.25494", + "longitude_deg": "173.44751", + "elevation_ft": "640", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Broadwood", + "scheduled_service": "no" + }, + { + "id": "429927", + "ident": "NZ-0055", + "type": "small_airport", + "name": "Ngatieke Airstrip", + "latitude_deg": "-35.26833", + "longitude_deg": "173.4582", + "elevation_ft": "774", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Broadwood", + "scheduled_service": "no" + }, + { + "id": "429928", + "ident": "NZ-0056", + "type": "small_airport", + "name": "Ahu Airstrip", + "latitude_deg": "-35.29343", + "longitude_deg": "173.46148", + "elevation_ft": "479", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Kohukohu", + "scheduled_service": "no" + }, + { + "id": "429929", + "ident": "NZ-0057", + "type": "small_airport", + "name": "Paponga Airstrip", + "latitude_deg": "-35.290158", + "longitude_deg": "173.424514", + "elevation_ft": "723", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Broadwood", + "scheduled_service": "no" + }, + { + "id": "429930", + "ident": "NZ-0058", + "type": "small_airport", + "name": "Pawarenga Road Airstrip", + "latitude_deg": "-35.29625", + "longitude_deg": "173.36919", + "elevation_ft": "367", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Broadwood", + "scheduled_service": "no" + }, + { + "id": "429931", + "ident": "NZ-0059", + "type": "small_airport", + "name": "Runaruna Airstrip", + "latitude_deg": "-35.32377", + "longitude_deg": "173.33705", + "elevation_ft": "410", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Broadwood", + "scheduled_service": "no" + }, + { + "id": "429932", + "ident": "NZ-0060", + "type": "small_airport", + "name": "Kohe Airstrip", + "latitude_deg": "-35.31355", + "longitude_deg": "173.29435", + "elevation_ft": "349", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Pawarenga", + "scheduled_service": "no" + }, + { + "id": "429933", + "ident": "NZ-0061", + "type": "small_airport", + "name": "Mangamuka Bridge Airstrip", + "latitude_deg": "-35.24734", + "longitude_deg": "173.5394", + "elevation_ft": "371", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Mangamuka", + "scheduled_service": "no" + }, + { + "id": "429934", + "ident": "NZ-0062", + "type": "small_airport", + "name": "Rotokoma Airstrip", + "latitude_deg": "-35.26083", + "longitude_deg": "173.56304", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Umawera", + "scheduled_service": "no" + }, + { + "id": "429935", + "ident": "NZ-0063", + "type": "small_airport", + "name": "Kahikatoa Airstrip", + "latitude_deg": "-35.28273", + "longitude_deg": "173.5509", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Umawera", + "scheduled_service": "no" + }, + { + "id": "429936", + "ident": "NZ-0064", + "type": "small_airport", + "name": "Umawera Airstrip", + "latitude_deg": "-35.28507", + "longitude_deg": "173.59184", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Umawera", + "scheduled_service": "no" + }, + { + "id": "429937", + "ident": "NZ-0065", + "type": "small_airport", + "name": "Rangiahua Airstrip", + "latitude_deg": "-35.315655", + "longitude_deg": "173.649822", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Horeke", + "scheduled_service": "no" + }, + { + "id": "429938", + "ident": "NZ-0066", + "type": "small_airport", + "name": "Waimaho Airstrip", + "latitude_deg": "-35.331852", + "longitude_deg": "173.698932", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Ōkaihau", + "scheduled_service": "no" + }, + { + "id": "429939", + "ident": "NZ-0067", + "type": "closed", + "name": "Ōkaihau South Airstrip", + "latitude_deg": "-35.34636", + "longitude_deg": "173.73629", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Ōkaihau", + "scheduled_service": "no" + }, + { + "id": "429940", + "ident": "NZ-0068", + "type": "small_airport", + "name": "Waihou Valley Airstrip", + "latitude_deg": "-35.29749", + "longitude_deg": "173.73129", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Ōkaihau", + "scheduled_service": "no" + }, + { + "id": "429941", + "ident": "NZ-0069", + "type": "small_airport", + "name": "Omapere Airstrip", + "latitude_deg": "-35.388037", + "longitude_deg": "173.785613", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Kaikohe", + "scheduled_service": "no" + }, + { + "id": "429942", + "ident": "NZ-0070", + "type": "small_airport", + "name": "Remuera Settlement Airstrip", + "latitude_deg": "-35.37404", + "longitude_deg": "173.82952", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Kaikohe", + "scheduled_service": "no" + }, + { + "id": "429943", + "ident": "NZ-0071", + "type": "small_airport", + "name": "Maungaparenua Airstrip", + "latitude_deg": "-35.21926", + "longitude_deg": "173.87409", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Waipapa", + "scheduled_service": "no" + }, + { + "id": "429944", + "ident": "NZ-0072", + "type": "small_airport", + "name": "Pouerua Airstrip", + "latitude_deg": "-35.370921", + "longitude_deg": "173.938174", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Pakaraka", + "scheduled_service": "no" + }, + { + "id": "429945", + "ident": "NZ-0073", + "type": "small_airport", + "name": "Waiaruhe Airstrip", + "latitude_deg": "-35.35806", + "longitude_deg": "173.91905", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Pakaraka", + "scheduled_service": "no" + }, + { + "id": "429946", + "ident": "NZ-0074", + "type": "closed", + "name": "Ngahuha Airstrip", + "latitude_deg": "-35.37072", + "longitude_deg": "173.98747", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Pakaraka", + "scheduled_service": "no" + }, + { + "id": "429947", + "ident": "NZ-0075", + "type": "small_airport", + "name": "Te Kene Airstrip", + "latitude_deg": "-35.338778", + "longitude_deg": "173.977186", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Pakaraka", + "scheduled_service": "no" + }, + { + "id": "429948", + "ident": "NZ-0076", + "type": "small_airport", + "name": "Toots Airstrip", + "latitude_deg": "-35.38188", + "longitude_deg": "174.09782", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Kawakawa", + "scheduled_service": "no" + }, + { + "id": "429949", + "ident": "NZ-0077", + "type": "small_airport", + "name": "Waitotehoanga Airstrip", + "latitude_deg": "-35.46282", + "longitude_deg": "174.09264", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Maromaku", + "scheduled_service": "no" + }, + { + "id": "429950", + "ident": "NZ-0078", + "type": "small_airport", + "name": "Maromaku West Airstrip", + "latitude_deg": "-35.46502", + "longitude_deg": "174.0892", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Maromaku", + "scheduled_service": "no" + }, + { + "id": "429951", + "ident": "NZ-0079", + "type": "small_airport", + "name": "Ruapekapeka Airstrip", + "latitude_deg": "-35.4657", + "longitude_deg": "174.16772", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Hūkerenui", + "scheduled_service": "no" + }, + { + "id": "429952", + "ident": "NZ-0080", + "type": "small_airport", + "name": "Koheroa Airstrip", + "latitude_deg": "-35.46497", + "longitude_deg": "174.18424", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Hūkerenui", + "scheduled_service": "no" + }, + { + "id": "429953", + "ident": "NZ-0081", + "type": "closed", + "name": "Henty Airstrip", + "latitude_deg": "-35.45401", + "longitude_deg": "174.23625", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Whakapara", + "scheduled_service": "no" + }, + { + "id": "429954", + "ident": "NZ-0082", + "type": "closed", + "name": "Puhipuhi Airstrip", + "latitude_deg": "-35.48307", + "longitude_deg": "174.26677", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Whakapara", + "scheduled_service": "no" + }, + { + "id": "429955", + "ident": "NZ-0083", + "type": "closed", + "name": "Gibbs Airstrip", + "latitude_deg": "-35.51644", + "longitude_deg": "174.24986", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Whakapara", + "scheduled_service": "no" + }, + { + "id": "429956", + "ident": "NZ-0084", + "type": "small_airport", + "name": "Waro Airstrip", + "latitude_deg": "-35.580692", + "longitude_deg": "174.274725", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Hikurangi", + "scheduled_service": "no" + }, + { + "id": "429957", + "ident": "NZ-0085", + "type": "small_airport", + "name": "Tahere Airstrip", + "latitude_deg": "-35.69626", + "longitude_deg": "174.43641", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Whareora", + "scheduled_service": "no" + }, + { + "id": "11", + "ident": "NZ12", + "type": "small_airport", + "name": "Palmer Station Airport", + "latitude_deg": "-64.774582", + "longitude_deg": "-64.035907", + "elevation_ft": "149", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Palmer Station", + "scheduled_service": "no", + "gps_code": "NZ0B", + "local_code": "NZ0B", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palmer_Station" + }, + { + "id": "5023", + "ident": "NZAA", + "type": "large_airport", + "name": "Auckland International Airport", + "latitude_deg": "-37.01199", + "longitude_deg": "174.786331", + "elevation_ft": "23", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-AUK", + "municipality": "Auckland", + "scheduled_service": "yes", + "gps_code": "NZAA", + "iata_code": "AKL", + "home_link": "http://www.auckland-airport.co.nz/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Auckland_International_Airport" + }, + { + "id": "32067", + "ident": "NZAE", + "type": "small_airport", + "name": "Mount Tarawera Airport", + "latitude_deg": "-38.233001708984375", + "longitude_deg": "176.51699829101562", + "elevation_ft": "3100", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-BOP", + "municipality": "Mount Tarawera", + "scheduled_service": "no", + "gps_code": "NZAE" + }, + { + "id": "30123", + "ident": "NZAG", + "type": "closed", + "name": "Matarangi Airport", + "latitude_deg": "-36.731701", + "longitude_deg": "175.649994", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "municipality": "Matarangi", + "scheduled_service": "no", + "keywords": "NZAG" + }, + { + "id": "44831", + "ident": "NZAH", + "type": "heliport", + "name": "Taharoa Iron Sands Heliport", + "latitude_deg": "-38.165000915527344", + "longitude_deg": "174.7050018310547", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "municipality": "Taharoa", + "scheduled_service": "no", + "gps_code": "NZAH" + }, + { + "id": "44672", + "ident": "NZAL", + "type": "heliport", + "name": "Avalon Heliport", + "latitude_deg": "-41.18669891357422", + "longitude_deg": "174.94400024414062", + "elevation_ft": "93", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WGN", + "municipality": "Wellington", + "scheduled_service": "no", + "gps_code": "NZAL" + }, + { + "id": "32068", + "ident": "NZAN", + "type": "small_airport", + "name": "Alfredton Airport", + "latitude_deg": "-40.69810104370117", + "longitude_deg": "175.8560028076172", + "elevation_ft": "500", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-MWT", + "municipality": "Alfredton", + "scheduled_service": "no", + "gps_code": "NZAN" + }, + { + "id": "5024", + "ident": "NZAP", + "type": "medium_airport", + "name": "Taupo Airport", + "latitude_deg": "-38.73970031738281", + "longitude_deg": "176.08399963378906", + "elevation_ft": "1335", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "municipality": "Taupo", + "scheduled_service": "yes", + "gps_code": "NZAP", + "iata_code": "TUO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taupo_Airport" + }, + { + "id": "5025", + "ident": "NZAR", + "type": "medium_airport", + "name": "Ardmore Airport", + "latitude_deg": "-37.029701232910156", + "longitude_deg": "174.97300720214844", + "elevation_ft": "111", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-AUK", + "municipality": "Manurewa", + "scheduled_service": "no", + "gps_code": "NZAR", + "iata_code": "AMZ", + "home_link": "http://www.nzar.co.nz/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ardmore_Airport" + }, + { + "id": "29672", + "ident": "NZAS", + "type": "small_airport", + "name": "Ashburton Aerodrome", + "latitude_deg": "-43.90330123901367", + "longitude_deg": "171.7969970703125", + "elevation_ft": "302", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "scheduled_service": "no", + "gps_code": "NZAS", + "iata_code": "ASG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ashburton_Aerodrome" + }, + { + "id": "29682", + "ident": "NZBA", + "type": "small_airport", + "name": "Balclutha Aerodrome", + "latitude_deg": "-46.245459", + "longitude_deg": "169.74864", + "elevation_ft": "22", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-OTA", + "municipality": "Balclutha", + "scheduled_service": "no", + "gps_code": "NZBA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Balclutha_Aerodrome" + }, + { + "id": "44670", + "ident": "NZBC", + "type": "heliport", + "name": "ASB Bank Centre Heliport", + "latitude_deg": "-36.84989929199219", + "longitude_deg": "174.76199340820312", + "elevation_ft": "468", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-AUK", + "municipality": "Aukland", + "scheduled_service": "no", + "gps_code": "NZBC" + }, + { + "id": "44678", + "ident": "NZBW", + "type": "heliport", + "name": "Burwood Hospital Heliport", + "latitude_deg": "-43.479698181152344", + "longitude_deg": "172.68699645996094", + "elevation_ft": "16", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "municipality": "Christchurch", + "scheduled_service": "no", + "gps_code": "NZBW" + }, + { + "id": "29767", + "ident": "NZCB", + "type": "small_airport", + "name": "Centre Bush Aerodrome", + "latitude_deg": "-46.040000915527344", + "longitude_deg": "168.31199645996094", + "elevation_ft": "255", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-STL", + "municipality": "Centre Bush", + "scheduled_service": "no", + "gps_code": "NZCB" + }, + { + "id": "355373", + "ident": "NZCG", + "type": "small_airport", + "name": "Centennial Park Aerodrome", + "latitude_deg": "-38.665278", + "longitude_deg": "176.134722", + "elevation_ft": "1506", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "municipality": "Taupo", + "scheduled_service": "no", + "gps_code": "NZCG" + }, + { + "id": "5026", + "ident": "NZCH", + "type": "large_airport", + "name": "Christchurch International Airport", + "latitude_deg": "-43.48939895629883", + "longitude_deg": "172.53199768066406", + "elevation_ft": "123", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "municipality": "Christchurch", + "scheduled_service": "yes", + "gps_code": "NZCH", + "iata_code": "CHC", + "home_link": "http://www.christchurchairport.co.nz/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Christchurch_International_Airport" + }, + { + "id": "5027", + "ident": "NZCI", + "type": "medium_airport", + "name": "Chatham Islands / Tuuta Airport", + "latitude_deg": "-43.81189", + "longitude_deg": "-176.46514", + "elevation_ft": "43", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WGN", + "municipality": "Te One", + "scheduled_service": "yes", + "gps_code": "NZCI", + "iata_code": "CHT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chatham_Islands_/_Tuuta_Airport", + "keywords": "Karewa" + }, + { + "id": "29810", + "ident": "NZCS", + "type": "small_airport", + "name": "Cromwell Racecourse Aerodrome", + "latitude_deg": "-45.04859924316406", + "longitude_deg": "169.17100524902344", + "elevation_ft": "856", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-OTA", + "scheduled_service": "no", + "gps_code": "NZCS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cromwell_Racecourse_Aerodrome" + }, + { + "id": "29804", + "ident": "NZCX", + "type": "small_airport", + "name": "Coromandel Aerodrome", + "latitude_deg": "-36.79169845581055", + "longitude_deg": "175.50900268554688", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "scheduled_service": "no", + "gps_code": "NZCX", + "iata_code": "CMV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coromandel_Aerodrome" + }, + { + "id": "29817", + "ident": "NZDA", + "type": "small_airport", + "name": "Dargaville Aerodrome", + "latitude_deg": "-35.939701080322266", + "longitude_deg": "173.8939971923828", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "scheduled_service": "no", + "gps_code": "NZDA", + "iata_code": "DGR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dargaville_Aerodrome" + }, + { + "id": "44804", + "ident": "NZDC", + "type": "heliport", + "name": "Dunedin City Heliport", + "latitude_deg": "-45.882596", + "longitude_deg": "170.507947", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-OTA", + "municipality": "Dunedin", + "scheduled_service": "no", + "gps_code": "NZDC" + }, + { + "id": "44805", + "ident": "NZDH", + "type": "heliport", + "name": "Dunedin Hospital Helipad", + "latitude_deg": "-45.868871", + "longitude_deg": "170.509674", + "elevation_ft": "159", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-OTA", + "municipality": "Dunedin", + "scheduled_service": "no", + "gps_code": "NZDH" + }, + { + "id": "5028", + "ident": "NZDN", + "type": "medium_airport", + "name": "Dunedin International Airport", + "latitude_deg": "-45.928101", + "longitude_deg": "170.197998", + "elevation_ft": "4", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-OTA", + "municipality": "Dunedin", + "scheduled_service": "yes", + "gps_code": "NZDN", + "iata_code": "DUD", + "home_link": "http://www.dnairport.co.nz/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dunedin_International_Airport" + }, + { + "id": "429844", + "ident": "NZDU", + "type": "heliport", + "name": "Dunstan Hospital Heliport", + "latitude_deg": "-45.20092", + "longitude_deg": "169.331669", + "elevation_ft": "554", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-OTA", + "municipality": "Clyde", + "scheduled_service": "no", + "gps_code": "NZDU" + }, + { + "id": "29816", + "ident": "NZDV", + "type": "small_airport", + "name": "Dannevirke Aerodrome", + "latitude_deg": "-40.22829818725586", + "longitude_deg": "176.07899475097656", + "elevation_ft": "640", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-MWT", + "scheduled_service": "no", + "gps_code": "NZDV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dannevirke_Aerodrome" + }, + { + "id": "30559", + "ident": "NZES", + "type": "small_airport", + "name": "Wharepapa South Airport", + "latitude_deg": "-38.14830017089844", + "longitude_deg": "175.5500030517578", + "elevation_ft": "443", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "scheduled_service": "no", + "gps_code": "NZES" + }, + { + "id": "355372", + "ident": "NZEV", + "type": "heliport", + "name": "Eves Valley Heliport", + "latitude_deg": "-41.339923", + "longitude_deg": "173.077329", + "elevation_ft": "126", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NSN", + "municipality": "Eves Valley", + "scheduled_service": "no", + "gps_code": "NZEV" + }, + { + "id": "29873", + "ident": "NZFF", + "type": "small_airport", + "name": "Forest Field Aerodrome", + "latitude_deg": "-43.385799407958984", + "longitude_deg": "172.36099243164062", + "elevation_ft": "381", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "scheduled_service": "no", + "gps_code": "NZFF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Forest_Field_Aerodrome" + }, + { + "id": "44806", + "ident": "NZFG", + "type": "heliport", + "name": "Fern Gully Heliport", + "latitude_deg": "-46.8949825431", + "longitude_deg": "168.11103344", + "elevation_ft": "70", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-STL", + "municipality": "Oban", + "scheduled_service": "no", + "gps_code": "NZFG" + }, + { + "id": "44807", + "ident": "NZFH", + "type": "heliport", + "name": "Fox Heliport", + "latitude_deg": "-43.4631", + "longitude_deg": "170", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "municipality": "Fox", + "scheduled_service": "no", + "gps_code": "NZFH", + "keywords": "FGL" + }, + { + "id": "5029", + "ident": "NZFI", + "type": "small_airport", + "name": "Feilding Airport", + "latitude_deg": "-40.25579833984375", + "longitude_deg": "175.60499572753906", + "elevation_ft": "214", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-MWT", + "municipality": "Feilding", + "scheduled_service": "no", + "gps_code": "NZFI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Feilding_Aerodrome" + }, + { + "id": "29877", + "ident": "NZFJ", + "type": "small_airport", + "name": "Franz Josef Aerodrome", + "latitude_deg": "-43.36309814453125", + "longitude_deg": "170.13400268554688", + "elevation_ft": "240", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "scheduled_service": "no", + "gps_code": "NZFJ", + "iata_code": "WHO" + }, + { + "id": "29876", + "ident": "NZFP", + "type": "small_airport", + "name": "Foxpine Aerodrome", + "latitude_deg": "-40.45669937133789", + "longitude_deg": "175.27000427246094", + "elevation_ft": "39", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-MWT", + "scheduled_service": "no", + "gps_code": "NZFP" + }, + { + "id": "319530", + "ident": "NZFR", + "type": "heliport", + "name": "Franz Josef Heliport", + "latitude_deg": "-43.37657", + "longitude_deg": "170.19396", + "elevation_ft": "434", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "municipality": "Franz Josef Glacier", + "scheduled_service": "no", + "gps_code": "NZFR" + }, + { + "id": "29870", + "ident": "NZFT", + "type": "small_airport", + "name": "Flat Point Aerodrome", + "latitude_deg": "-41.243385", + "longitude_deg": "175.960228", + "elevation_ft": "46", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WGN", + "municipality": "Flat Point", + "scheduled_service": "no", + "gps_code": "NZFT" + }, + { + "id": "340683", + "ident": "NZFX", + "type": "small_airport", + "name": "Phoenix Airfield", + "latitude_deg": "-77.956389", + "longitude_deg": "166.766667", + "elevation_ft": "18", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "McMurdo Station", + "scheduled_service": "no", + "gps_code": "NZFX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Phoenix_Airfield" + }, + { + "id": "29886", + "ident": "NZGA", + "type": "small_airport", + "name": "Galatea Airfield", + "latitude_deg": "-38.403900146484375", + "longitude_deg": "176.74400329589844", + "elevation_ft": "594", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-BOP", + "scheduled_service": "no", + "gps_code": "NZGA" + }, + { + "id": "29913", + "ident": "NZGB", + "type": "small_airport", + "name": "Great Barrier Aerodrome", + "latitude_deg": "-36.24140167236328", + "longitude_deg": "175.4720001220703", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-AUK", + "municipality": "Claris", + "scheduled_service": "no", + "gps_code": "NZGB", + "iata_code": "GBZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Great_Barrier_Aerodrome" + }, + { + "id": "29901", + "ident": "NZGC", + "type": "small_airport", + "name": "Gore3 Airport", + "latitude_deg": "-46.156700134277344", + "longitude_deg": "168.8979949951172", + "elevation_ft": "200", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-STL", + "scheduled_service": "no", + "gps_code": "NZGC" + }, + { + "id": "319531", + "ident": "NZGH", + "type": "heliport", + "name": "Glacier Country Heliport", + "latitude_deg": "-43.38722", + "longitude_deg": "170.18", + "elevation_ft": "457", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "municipality": "Franz Josef Glacier", + "scheduled_service": "no", + "gps_code": "NZGH" + }, + { + "id": "44808", + "ident": "NZGI", + "type": "heliport", + "name": "Garden City Heliport", + "latitude_deg": "-43.49330139160156", + "longitude_deg": "172.54800415039062", + "elevation_ft": "89", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "municipality": "Christchurch", + "scheduled_service": "no", + "gps_code": "NZGI" + }, + { + "id": "29917", + "ident": "NZGM", + "type": "small_airport", + "name": "Greymouth Airport", + "latitude_deg": "-42.461700439453125", + "longitude_deg": "171.19000244140625", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "scheduled_service": "no", + "gps_code": "NZGM", + "iata_code": "GMN" + }, + { + "id": "29918", + "ident": "NZGR", + "type": "small_airport", + "name": "Great Mercury Airport", + "latitude_deg": "-36.593635", + "longitude_deg": "175.764598", + "elevation_ft": "180", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "municipality": "Great Mercury Island / Ahuahu", + "scheduled_service": "no", + "gps_code": "NZGR" + }, + { + "id": "5030", + "ident": "NZGS", + "type": "medium_airport", + "name": "Gisborne Airport", + "latitude_deg": "-38.663299560546875", + "longitude_deg": "177.97799682617188", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-GIS", + "municipality": "Gisborne", + "scheduled_service": "yes", + "gps_code": "NZGS", + "iata_code": "GIS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gisborne_Airport" + }, + { + "id": "5031", + "ident": "NZGT", + "type": "medium_airport", + "name": "Glentanner Airport", + "latitude_deg": "-43.906700134277344", + "longitude_deg": "170.1280059814453", + "elevation_ft": "1824", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "municipality": "Glentanner Station", + "scheduled_service": "no", + "gps_code": "NZGT", + "iata_code": "GTN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Glentanner_Aerodrome", + "keywords": "Lake Pukaki" + }, + { + "id": "29896", + "ident": "NZGY", + "type": "small_airport", + "name": "Glenorchy Airport", + "latitude_deg": "-44.871700286865234", + "longitude_deg": "168.3979949951172", + "elevation_ft": "1260", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-OTA", + "scheduled_service": "no", + "gps_code": "NZGY" + }, + { + "id": "29941", + "ident": "NZHA", + "type": "small_airport", + "name": "Hawera Airport", + "latitude_deg": "-39.55329895019531", + "longitude_deg": "174.26699829101562", + "elevation_ft": "371", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-TKI", + "municipality": "Hawera", + "scheduled_service": "no", + "gps_code": "NZHA" + }, + { + "id": "29674", + "ident": "NZHB", + "type": "closed", + "name": "Auckland Hobsonville Airport", + "latitude_deg": "-36.791698455811", + "longitude_deg": "174.66400146484", + "elevation_ft": "59", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-AUK", + "scheduled_service": "no", + "gps_code": "NZHB" + }, + { + "id": "429846", + "ident": "NZHC", + "type": "heliport", + "name": "Wanaka Lakes Health Centre Heliport", + "latitude_deg": "-44.709338", + "longitude_deg": "169.136512", + "elevation_ft": "1106", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-OTA", + "municipality": "Wanaka", + "scheduled_service": "no", + "gps_code": "NZHC" + }, + { + "id": "5032", + "ident": "NZHK", + "type": "medium_airport", + "name": "Hokitika Airfield", + "latitude_deg": "-42.713600158691406", + "longitude_deg": "170.98500061035156", + "elevation_ft": "146", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "scheduled_service": "yes", + "gps_code": "NZHK", + "iata_code": "HKK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hokitika_Airport" + }, + { + "id": "5033", + "ident": "NZHN", + "type": "medium_airport", + "name": "Hamilton International Airport", + "latitude_deg": "-37.8666992188", + "longitude_deg": "175.332000732", + "elevation_ft": "172", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "municipality": "Hamilton", + "scheduled_service": "yes", + "gps_code": "NZHN", + "iata_code": "HLZ", + "home_link": "http://www.hamiltonairport.co.nz/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hamilton_International_Airport" + }, + { + "id": "29936", + "ident": "NZHR", + "type": "small_airport", + "name": "Hanmer Springs Airport", + "latitude_deg": "-42.55080032348633", + "longitude_deg": "172.82699584960938", + "elevation_ft": "1109", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "scheduled_service": "no", + "gps_code": "NZHR", + "home_link": "http://anzfc.inet.net.nz/hanmer.htm" + }, + { + "id": "5034", + "ident": "NZHS", + "type": "small_airport", + "name": "Hastings Aerodrome", + "latitude_deg": "-39.646702", + "longitude_deg": "176.766998", + "elevation_ft": "72", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-HKB", + "municipality": "Bridge Pa", + "scheduled_service": "no", + "gps_code": "NZHS", + "home_link": "http://www.hbecac.co.nz/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hastings_Aerodrome" + }, + { + "id": "29931", + "ident": "NZHT", + "type": "small_airport", + "name": "Haast Aerodrome", + "latitude_deg": "-43.865299", + "longitude_deg": "169.041", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "municipality": "Haast", + "scheduled_service": "no", + "gps_code": "NZHT" + }, + { + "id": "5035", + "ident": "NZIR", + "type": "closed", + "name": "McMurdo Station Ice Runway", + "latitude_deg": "-77.854391", + "longitude_deg": "166.464387", + "elevation_ft": "1", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "McMurdo Station", + "scheduled_service": "no", + "gps_code": "NZIR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ice_Runway" + }, + { + "id": "44835", + "ident": "NZJA", + "type": "heliport", + "name": "Tauranga Hospital Heliport", + "latitude_deg": "-37.7057991027832", + "longitude_deg": "176.1490020751953", + "elevation_ft": "17", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-BOP", + "municipality": "Tauranga", + "scheduled_service": "no", + "gps_code": "NZJA" + }, + { + "id": "44841", + "ident": "NZJB", + "type": "heliport", + "name": "Wairau Hospital Heliport", + "latitude_deg": "-41.53689956665039", + "longitude_deg": "173.94400024414062", + "elevation_ft": "100", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-MBH", + "municipality": "Blenheim", + "scheduled_service": "no", + "gps_code": "NZJB" + }, + { + "id": "44802", + "ident": "NZJC", + "type": "heliport", + "name": "Christchurch Hospital Heliport", + "latitude_deg": "-43.53670120239258", + "longitude_deg": "172.6219940185547", + "elevation_ft": "55", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "municipality": "Christchurch", + "scheduled_service": "no", + "gps_code": "NZJC" + }, + { + "id": "429840", + "ident": "NZJD", + "type": "heliport", + "name": "Thames Hospital Heliport", + "latitude_deg": "-37.135824", + "longitude_deg": "175.544529", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "municipality": "Thames", + "scheduled_service": "no", + "gps_code": "NZJD" + }, + { + "id": "44803", + "ident": "NZJE", + "type": "heliport", + "name": "Dargaville Hospital Heliport", + "latitude_deg": "-35.92890167236328", + "longitude_deg": "173.87600708007812", + "elevation_ft": "102", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Dargaville", + "scheduled_service": "no", + "gps_code": "NZJE" + }, + { + "id": "44809", + "ident": "NZJG", + "type": "heliport", + "name": "Gisborne Hospital Heliport", + "latitude_deg": "-38.6411018371582", + "longitude_deg": "178.00399780273438", + "elevation_ft": "51", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-GIS", + "municipality": "Gisborne", + "scheduled_service": "no", + "gps_code": "NZJG" + }, + { + "id": "308785", + "ident": "NZJH", + "type": "heliport", + "name": "Hastings Hospital Heliport", + "latitude_deg": "-39.629236", + "longitude_deg": "176.82404", + "elevation_ft": "36", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-HKB", + "municipality": "Hastings", + "scheduled_service": "no", + "gps_code": "NZJH" + }, + { + "id": "44673", + "ident": "NZJI", + "type": "heliport", + "name": "Bay of Islands Hospital Heliport", + "latitude_deg": "-35.385833740234375", + "longitude_deg": "174.07028198242188", + "elevation_ft": "200", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Kawakawa", + "scheduled_service": "no", + "gps_code": "NZJI" + }, + { + "id": "44810", + "ident": "NZJK", + "type": "heliport", + "name": "Kaitaia Hospital Heliport", + "latitude_deg": "-35.11830139160156", + "longitude_deg": "173.26100158691406", + "elevation_ft": "100", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Kaitaia", + "scheduled_service": "no", + "gps_code": "NZJK" + }, + { + "id": "44671", + "ident": "NZJL", + "type": "heliport", + "name": "Aukland Hospital Helipad", + "latitude_deg": "-36.85919952392578", + "longitude_deg": "174.7689971923828", + "elevation_ft": "204", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-AUK", + "municipality": "Aukland", + "scheduled_service": "no", + "gps_code": "NZJL" + }, + { + "id": "44824", + "ident": "NZJM", + "type": "heliport", + "name": "Palmerston North Hospital Heliport", + "latitude_deg": "-40.337799072265625", + "longitude_deg": "175.61900329589844", + "elevation_ft": "128", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-MWT", + "municipality": "Palmerston North", + "scheduled_service": "no", + "gps_code": "NZJM" + }, + { + "id": "44822", + "ident": "NZJN", + "type": "heliport", + "name": "North Shore Hospital Heliport", + "latitude_deg": "-36.781700134277344", + "longitude_deg": "174.75900268554688", + "elevation_ft": "70", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-AUK", + "municipality": "North Shore City", + "scheduled_service": "no", + "gps_code": "NZJN" + }, + { + "id": "44827", + "ident": "NZJO", + "type": "heliport", + "name": "Rotorua Hospital Heliport", + "latitude_deg": "-38.131900787353516", + "longitude_deg": "176.2469940185547", + "elevation_ft": "979", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-BOP", + "municipality": "Rotorua", + "scheduled_service": "no", + "gps_code": "NZJO" + }, + { + "id": "44837", + "ident": "NZJP", + "type": "heliport", + "name": "Te Puia Springs Hospital Heliport", + "latitude_deg": "-38.05481607579999", + "longitude_deg": "178.304291368", + "elevation_ft": "760", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-GIS", + "municipality": "Te Puia Springs", + "scheduled_service": "no", + "gps_code": "NZJP" + }, + { + "id": "44832", + "ident": "NZJQ", + "type": "heliport", + "name": "Taranaki Base Hospital Heliport", + "latitude_deg": "-39.07292", + "longitude_deg": "174.054787", + "elevation_ft": "104", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-TKI", + "municipality": "New Plymouth", + "scheduled_service": "no", + "gps_code": "NZJQ" + }, + { + "id": "44846", + "ident": "NZJR", + "type": "heliport", + "name": "Whangarei Hospital Helipad", + "latitude_deg": "-35.735078", + "longitude_deg": "174.303428", + "elevation_ft": "154", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Whangarei", + "scheduled_service": "no", + "gps_code": "NZJR" + }, + { + "id": "44830", + "ident": "NZJS", + "type": "heliport", + "name": "Southland - Kew Hospital Heliport", + "latitude_deg": "-46.437198638916016", + "longitude_deg": "168.35899353027344", + "elevation_ft": "29", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-STL", + "municipality": "Invercargill", + "scheduled_service": "no", + "gps_code": "NZJS" + }, + { + "id": "44833", + "ident": "NZJT", + "type": "heliport", + "name": "Taumarunui Hospital Heliport", + "latitude_deg": "-38.88970184326172", + "longitude_deg": "175.25100708007812", + "elevation_ft": "675", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-MWT", + "municipality": "Taumarunui", + "scheduled_service": "no", + "gps_code": "NZJT" + }, + { + "id": "44844", + "ident": "NZJU", + "type": "heliport", + "name": "Wanganui Hospital Heliport", + "latitude_deg": "-39.94329833984375", + "longitude_deg": "175.03900146484375", + "elevation_ft": "42", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-MWT", + "municipality": "Wanganui", + "scheduled_service": "no", + "gps_code": "NZJU" + }, + { + "id": "44843", + "ident": "NZJV", + "type": "heliport", + "name": "Waitakere Hospital Heliport", + "latitude_deg": "-36.870601654052734", + "longitude_deg": "174.63099670410156", + "elevation_ft": "70", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-AUK", + "municipality": "Waitakere", + "scheduled_service": "no", + "gps_code": "NZJV" + }, + { + "id": "44826", + "ident": "NZJW", + "type": "heliport", + "name": "Rawene Hospital Heliport", + "latitude_deg": "-35.407158", + "longitude_deg": "173.506522", + "elevation_ft": "149", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Rawene", + "scheduled_service": "no", + "gps_code": "NZJW" + }, + { + "id": "44838", + "ident": "NZJX", + "type": "heliport", + "name": "Tokoroa Hospital Heliport", + "latitude_deg": "-38.23189926147461", + "longitude_deg": "175.86099243164062", + "elevation_ft": "1200", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "municipality": "Tokoroa", + "scheduled_service": "no", + "gps_code": "NZJX" + }, + { + "id": "44842", + "ident": "NZJY", + "type": "heliport", + "name": "Wairoa Hospital Heliport", + "latitude_deg": "-39.04249954223633", + "longitude_deg": "177.41400146484375", + "elevation_ft": "59", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-HKB", + "municipality": "Wairoa", + "scheduled_service": "no", + "gps_code": "NZJY" + }, + { + "id": "44834", + "ident": "NZJZ", + "type": "heliport", + "name": "Taupo Hospital Heliport", + "latitude_deg": "-38.69860076904297", + "longitude_deg": "176.0989990234375", + "elevation_ft": "1349", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "municipality": "Taupo", + "scheduled_service": "no", + "gps_code": "NZJZ" + }, + { + "id": "30021", + "ident": "NZKC", + "type": "small_airport", + "name": "Kelly Field", + "latitude_deg": "-37.256099700927734", + "longitude_deg": "175.07200622558594", + "elevation_ft": "52", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "scheduled_service": "no", + "gps_code": "NZKC" + }, + { + "id": "44819", + "ident": "NZKD", + "type": "small_airport", + "name": "Motu Kaikoura Island Aerodrome", + "latitude_deg": "-36.1781005859375", + "longitude_deg": "175.32400512695312", + "elevation_ft": "400", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-AUK", + "municipality": "Kaikoura Island", + "scheduled_service": "no", + "gps_code": "NZKD" + }, + { + "id": "30547", + "ident": "NZKE", + "type": "small_airport", + "name": "Waiheke Reeve Airport", + "latitude_deg": "-36.80889892578125", + "longitude_deg": "175.08599853515625", + "elevation_ft": "226", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-AUK", + "scheduled_service": "no", + "gps_code": "NZKE", + "iata_code": "WIK" + }, + { + "id": "30002", + "ident": "NZKF", + "type": "small_airport", + "name": "Kaipara Flats Airport", + "latitude_deg": "-36.40639877319336", + "longitude_deg": "174.58700561523438", + "elevation_ft": "112", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-AUK", + "scheduled_service": "no", + "gps_code": "NZKF" + }, + { + "id": "44812", + "ident": "NZKH", + "type": "heliport", + "name": "Kenepuru Hospital Heliport", + "latitude_deg": "-41.14500045776367", + "longitude_deg": "174.8350067138672", + "elevation_ft": "89", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WGN", + "municipality": "Wellington", + "scheduled_service": "no", + "gps_code": "NZKH" + }, + { + "id": "30001", + "ident": "NZKI", + "type": "small_airport", + "name": "Kaikoura Airport", + "latitude_deg": "-42.42499923706055", + "longitude_deg": "173.60499572753906", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "scheduled_service": "no", + "gps_code": "NZKI", + "iata_code": "KBZ" + }, + { + "id": "5036", + "ident": "NZKK", + "type": "medium_airport", + "name": "Kerikeri Airport", + "latitude_deg": "-35.259148", + "longitude_deg": "173.913317", + "elevation_ft": "492", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Kerikeri", + "scheduled_service": "yes", + "gps_code": "NZKK", + "iata_code": "KKE", + "home_link": "http://www.kerikeri-airport.co.nz/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kerikeri_Airport", + "keywords": "Bay of Islands Airport" + }, + { + "id": "30010", + "ident": "NZKM", + "type": "small_airport", + "name": "Karamea Airport", + "latitude_deg": "-41.236698150634766", + "longitude_deg": "172.10499572753906", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "scheduled_service": "no", + "gps_code": "NZKM" + }, + { + "id": "429848", + "ident": "NZKN", + "type": "heliport", + "name": "Kensington Park Heliport", + "latitude_deg": "-35.704583", + "longitude_deg": "174.313041", + "elevation_ft": "131", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Whangarei", + "scheduled_service": "no", + "gps_code": "NZKN" + }, + { + "id": "30000", + "ident": "NZKO", + "type": "small_airport", + "name": "Kaikohe Airport", + "latitude_deg": "-35.451099", + "longitude_deg": "173.817001", + "elevation_ft": "571", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Kaikohe", + "scheduled_service": "no", + "gps_code": "NZKO", + "iata_code": "KKO" + }, + { + "id": "5037", + "ident": "NZKT", + "type": "medium_airport", + "name": "Kaitaia Airport", + "latitude_deg": "-35.069837", + "longitude_deg": "173.287053", + "elevation_ft": "270", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Awanui", + "scheduled_service": "yes", + "gps_code": "NZKT", + "iata_code": "KAT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kaitaia_Airport" + }, + { + "id": "44813", + "ident": "NZKU", + "type": "heliport", + "name": "Kupe Helipad", + "latitude_deg": "-39.79999923706055", + "longitude_deg": "174.11700439453125", + "elevation_ft": "100", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-TKI", + "municipality": "Kupe Platform", + "scheduled_service": "no", + "gps_code": "NZKU" + }, + { + "id": "30043", + "ident": "NZKY", + "type": "small_airport", + "name": "Kowhai Aerodrome", + "latitude_deg": "-39.8461", + "longitude_deg": "176.423004", + "elevation_ft": "840", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-HKB", + "municipality": "Kowhai", + "scheduled_service": "no", + "gps_code": "NZKY" + }, + { + "id": "32070", + "ident": "NZLD", + "type": "small_airport", + "name": "Limestone Downs Airport", + "latitude_deg": "-37.47999954223633", + "longitude_deg": "174.7449951171875", + "elevation_ft": "596", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "municipality": "Limestone Downs", + "scheduled_service": "no", + "gps_code": "NZLD" + }, + { + "id": "30060", + "ident": "NZLE", + "type": "small_airport", + "name": "Lake Station Airport", + "latitude_deg": "-41.75920104980469", + "longitude_deg": "172.74600219726562", + "elevation_ft": "1709", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-TAS", + "scheduled_service": "no", + "gps_code": "NZLE" + }, + { + "id": "44828", + "ident": "NZLF", + "type": "heliport", + "name": "Rotorua Lakefront Heliport", + "latitude_deg": "-38.129398345947266", + "longitude_deg": "176.2530059814453", + "elevation_ft": "935", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-BOP", + "municipality": "Rotorua", + "scheduled_service": "no", + "gps_code": "NZLF" + }, + { + "id": "32071", + "ident": "NZLT", + "type": "seaplane_base", + "name": "Lake Taupo Water Airport", + "latitude_deg": "-38.7317008972168", + "longitude_deg": "176.03500366210938", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "municipality": "Lake Taupo", + "scheduled_service": "no", + "gps_code": "NZLT" + }, + { + "id": "5038", + "ident": "NZLX", + "type": "medium_airport", + "name": "Alexandra Aerodrome", + "latitude_deg": "-45.210495", + "longitude_deg": "169.371113", + "elevation_ft": "752", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-OTA", + "municipality": "Alexandra", + "scheduled_service": "no", + "gps_code": "NZLX", + "iata_code": "ALR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alexandra_Aerodrome" + }, + { + "id": "30124", + "ident": "NZMA", + "type": "small_airport", + "name": "Matamata Glider Airport", + "latitude_deg": "-37.73440170288086", + "longitude_deg": "175.74200439453125", + "elevation_ft": "180", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "scheduled_service": "no", + "gps_code": "NZMA", + "iata_code": "MTA" + }, + { + "id": "44818", + "ident": "NZMB", + "type": "heliport", + "name": "Mechanics Bay Heliport", + "latitude_deg": "-36.846525628100004", + "longitude_deg": "174.787872434", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-AUK", + "municipality": "Auckland City", + "scheduled_service": "no", + "gps_code": "NZMB", + "iata_code": "MHB" + }, + { + "id": "5039", + "ident": "NZMC", + "type": "medium_airport", + "name": "Mount Cook Airport", + "latitude_deg": "-43.76499938964844", + "longitude_deg": "170.13299560546875", + "elevation_ft": "2153", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "scheduled_service": "no", + "gps_code": "NZMC", + "iata_code": "MON" + }, + { + "id": "30132", + "ident": "NZME", + "type": "small_airport", + "name": "Mercer1 PDZ Airport", + "latitude_deg": "-37.25749969482422", + "longitude_deg": "175.11500549316406", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "scheduled_service": "no", + "gps_code": "NZME" + }, + { + "id": "30138", + "ident": "NZMF", + "type": "small_airport", + "name": "Milford Sound Airport", + "latitude_deg": "-44.673301696777344", + "longitude_deg": "167.92300415039062", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-STL", + "scheduled_service": "no", + "gps_code": "NZMF", + "iata_code": "MFN" + }, + { + "id": "30108", + "ident": "NZMG", + "type": "heliport", + "name": "Mangonui Heliport", + "latitude_deg": "-34.995601654052734", + "longitude_deg": "173.46400451660156", + "elevation_ft": "3", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "scheduled_service": "no", + "gps_code": "NZMG" + }, + { + "id": "44840", + "ident": "NZMH", + "type": "heliport", + "name": "Wairarapa Hospital Heliport", + "latitude_deg": "-40.9474983215332", + "longitude_deg": "175.6750030517578", + "elevation_ft": "367", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WGN", + "municipality": "Masterton", + "scheduled_service": "no", + "gps_code": "NZMH" + }, + { + "id": "30115", + "ident": "NZMJ", + "type": "small_airport", + "name": "Martins Bay Aerodrome", + "latitude_deg": "-44.365971", + "longitude_deg": "168.016255", + "elevation_ft": "348", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-STL", + "municipality": "Jamestown", + "scheduled_service": "no", + "gps_code": "NZMJ" + }, + { + "id": "30166", + "ident": "NZMK", + "type": "small_airport", + "name": "Motueka Airport", + "latitude_deg": "-41.12329864501953", + "longitude_deg": "172.98899841308594", + "elevation_ft": "39", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-TAS", + "scheduled_service": "no", + "gps_code": "NZMK", + "iata_code": "MZP" + }, + { + "id": "32072", + "ident": "NZML", + "type": "small_airport", + "name": "Molesworth Airport", + "latitude_deg": "-42.08300018310547", + "longitude_deg": "173.2830047607422", + "elevation_ft": "2813", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-MBH", + "municipality": "Molesworth", + "scheduled_service": "no", + "gps_code": "NZML" + }, + { + "id": "5040", + "ident": "NZMO", + "type": "medium_airport", + "name": "Manapouri Airport", + "latitude_deg": "-45.53310012817383", + "longitude_deg": "167.64999389648438", + "elevation_ft": "687", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-STL", + "scheduled_service": "no", + "gps_code": "NZMO", + "iata_code": "TEU" + }, + { + "id": "30204", + "ident": "NZMQ", + "type": "heliport", + "name": "Oaonui Heliport", + "latitude_deg": "-39.39984130859375", + "longitude_deg": "173.8098602294922", + "elevation_ft": "112", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-TKI", + "municipality": "Oaonui", + "scheduled_service": "no", + "gps_code": "NZMQ" + }, + { + "id": "30173", + "ident": "NZMR", + "type": "small_airport", + "name": "Murchison Airport", + "latitude_deg": "-41.79669952392578", + "longitude_deg": "172.31500244140625", + "elevation_ft": "531", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-TAS", + "municipality": "Murchison", + "scheduled_service": "no", + "gps_code": "NZMR" + }, + { + "id": "5041", + "ident": "NZMS", + "type": "medium_airport", + "name": "Hood Airport", + "latitude_deg": "-40.974634", + "longitude_deg": "175.63454", + "elevation_ft": "364", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WGN", + "municipality": "Masterton", + "scheduled_service": "no", + "gps_code": "NZMS", + "iata_code": "MRO", + "home_link": "http://www.svas.org.nz/pages/hood_aerodrome_location.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hood_Aerodrome" + }, + { + "id": "32073", + "ident": "NZMT", + "type": "small_airport", + "name": "Martinborough Airport", + "latitude_deg": "-41.21419906616211", + "longitude_deg": "175.48599243164062", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WGN", + "municipality": "Martinborough", + "scheduled_service": "no", + "gps_code": "NZMT" + }, + { + "id": "30102", + "ident": "NZMW", + "type": "small_airport", + "name": "Makarora Airstrip", + "latitude_deg": "-44.2317008972168", + "longitude_deg": "169.22999572753906", + "elevation_ft": "1142", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-OTA", + "scheduled_service": "no", + "gps_code": "NZMW" + }, + { + "id": "44814", + "ident": "NZMX", + "type": "heliport", + "name": "Maari Heliport", + "latitude_deg": "-39.974998474121094", + "longitude_deg": "173.29200744628906", + "elevation_ft": "60", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-TKI", + "municipality": "Maari Platform", + "scheduled_service": "no", + "gps_code": "NZMX" + }, + { + "id": "32074", + "ident": "NZMZ", + "type": "small_airport", + "name": "Matakana Island Airport", + "latitude_deg": "-37.599998474121094", + "longitude_deg": "176.08299255371094", + "elevation_ft": "95", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-BOP", + "municipality": "Matakana Island", + "scheduled_service": "no", + "gps_code": "NZMZ" + }, + { + "id": "30192", + "ident": "NZNE", + "type": "small_airport", + "name": "North Shore Aerodrome", + "latitude_deg": "-36.656700134277344", + "longitude_deg": "174.65499877929688", + "elevation_ft": "210", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-AUK", + "municipality": "Dairy Flat", + "scheduled_service": "no", + "gps_code": "NZNE", + "wikipedia_link": "https://en.wikipedia.org/wiki/North_Shore_Aerodrome", + "keywords": "Dairy Flat Airfield" + }, + { + "id": "429841", + "ident": "NZNF", + "type": "small_airport", + "name": "Norfolk Airport", + "latitude_deg": "-39.205122", + "longitude_deg": "174.222565", + "elevation_ft": "875", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-TKI", + "municipality": "Inglewood", + "scheduled_service": "no", + "gps_code": "NZNF" + }, + { + "id": "44821", + "ident": "NZNH", + "type": "heliport", + "name": "Nelson Hospital Heliport", + "latitude_deg": "-41.288299560546875", + "longitude_deg": "173.27200317382812", + "elevation_ft": "180", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NSN", + "municipality": "Nelson", + "scheduled_service": "no", + "gps_code": "NZNH" + }, + { + "id": "5042", + "ident": "NZNP", + "type": "medium_airport", + "name": "New Plymouth Airport", + "latitude_deg": "-39.00859832763672", + "longitude_deg": "174.1790008544922", + "elevation_ft": "97", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-TKI", + "municipality": "New Plymouth", + "scheduled_service": "yes", + "gps_code": "NZNP", + "iata_code": "NPL", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Plymouth_Airport" + }, + { + "id": "5043", + "ident": "NZNR", + "type": "medium_airport", + "name": "Hawke's Bay Airport", + "latitude_deg": "-39.465801", + "longitude_deg": "176.869995", + "elevation_ft": "6", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-HKB", + "municipality": "Napier", + "scheduled_service": "yes", + "gps_code": "NZNR", + "iata_code": "NPE", + "home_link": "http://www.hawkesbay-airport.co.nz/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Napier_Airport" + }, + { + "id": "5044", + "ident": "NZNS", + "type": "medium_airport", + "name": "Nelson Airport", + "latitude_deg": "-41.298302", + "longitude_deg": "173.220993", + "elevation_ft": "17", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NSN", + "municipality": "Nelson", + "scheduled_service": "yes", + "gps_code": "NZNS", + "iata_code": "NSN", + "home_link": "http://www.nelsonairport.co.nz/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nelson_Airport_(New_Zealand)" + }, + { + "id": "5045", + "ident": "NZNV", + "type": "medium_airport", + "name": "Invercargill Airport", + "latitude_deg": "-46.41239929199219", + "longitude_deg": "168.31300354003906", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-STL", + "municipality": "Invercargill", + "scheduled_service": "yes", + "gps_code": "NZNV", + "iata_code": "IVC", + "home_link": "http://www.invercargillairport.co.nz/index.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Invercargill_Airport" + }, + { + "id": "30215", + "ident": "NZOA", + "type": "small_airport", + "name": "Omarama Glider Airport", + "latitude_deg": "-44.486698150634766", + "longitude_deg": "169.98599243164062", + "elevation_ft": "1381", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "scheduled_service": "no", + "gps_code": "NZOA" + }, + { + "id": "44823", + "ident": "NZOB", + "type": "heliport", + "name": "Ocean Beach Heliport", + "latitude_deg": "-46.589698791503906", + "longitude_deg": "168.30599975585938", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-STL", + "municipality": "Ocean Beach", + "scheduled_service": "no", + "gps_code": "NZOB" + }, + { + "id": "429843", + "ident": "NZOG", + "type": "heliport", + "name": "Makarora Heliport", + "latitude_deg": "-44.233204", + "longitude_deg": "169.230083", + "elevation_ft": "990", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-OTA", + "municipality": "Makarora", + "scheduled_service": "no", + "gps_code": "NZOG" + }, + { + "id": "5046", + "ident": "NZOH", + "type": "medium_airport", + "name": "RNZAF Base Ohakea", + "latitude_deg": "-40.20600128173828", + "longitude_deg": "175.38800048828125", + "elevation_ft": "164", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-MWT", + "scheduled_service": "no", + "gps_code": "NZOH", + "iata_code": "OHA", + "home_link": "http://www.airforce.mil.nz/about/hqbases/boh.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/RNZAF_Base_Ohakea" + }, + { + "id": "32075", + "ident": "NZOI", + "type": "small_airport", + "name": "Motiti Island Airport", + "latitude_deg": "-37.632999420166016", + "longitude_deg": "176.41700744628906", + "elevation_ft": "135", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-BOP", + "municipality": "Motiti Island", + "scheduled_service": "no", + "gps_code": "NZOI" + }, + { + "id": "30214", + "ident": "NZOM", + "type": "small_airport", + "name": "Omaka Blenheim Airport", + "latitude_deg": "-41.540000915527344", + "longitude_deg": "173.9219970703125", + "elevation_ft": "102", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-MBH", + "municipality": "Blenheim", + "scheduled_service": "no", + "gps_code": "NZOM" + }, + { + "id": "30217", + "ident": "NZOP", + "type": "small_airport", + "name": "Opotiki Airport", + "latitude_deg": "-38.022499084472656", + "longitude_deg": "177.3070068359375", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-BOP", + "scheduled_service": "no", + "gps_code": "NZOP" + }, + { + "id": "429845", + "ident": "NZOR", + "type": "heliport", + "name": "Oamaru Hospital Heliport", + "latitude_deg": "-45.099344", + "longitude_deg": "170.967479", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-OTA", + "municipality": "Oamaru", + "scheduled_service": "no", + "gps_code": "NZOR" + }, + { + "id": "329325", + "ident": "NZOT", + "type": "small_airport", + "name": "Otaki Airport", + "latitude_deg": "-40.785582", + "longitude_deg": "175.1513", + "elevation_ft": "114", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WGN", + "municipality": "Otaki", + "scheduled_service": "yes", + "gps_code": "NZOT" + }, + { + "id": "5047", + "ident": "NZOU", + "type": "medium_airport", + "name": "Oamaru Airport", + "latitude_deg": "-44.970001220703125", + "longitude_deg": "171.08200073242188", + "elevation_ft": "99", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-OTA", + "scheduled_service": "yes", + "gps_code": "NZOU", + "iata_code": "OAM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oamaru_Aerodrome" + }, + { + "id": "30208", + "ident": "NZOX", + "type": "small_airport", + "name": "Okiwi Station Airport", + "latitude_deg": "-36.146400451660156", + "longitude_deg": "175.41900634765625", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-AUK", + "scheduled_service": "no", + "gps_code": "NZOX" + }, + { + "id": "30232", + "ident": "NZPA", + "type": "small_airport", + "name": "Paihia Private Airport", + "latitude_deg": "-35.28219985961914", + "longitude_deg": "174.09100341796875", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "scheduled_service": "no", + "gps_code": "NZPA" + }, + { + "id": "5048", + "ident": "NZPG", + "type": "closed", + "name": "McMurdo Station Pegasus Field", + "latitude_deg": "-77.963402", + "longitude_deg": "166.524994", + "elevation_ft": "18", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "McMurdo Station", + "scheduled_service": "no", + "gps_code": "NZPG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pegasus_blue_ice_runway" + }, + { + "id": "30300", + "ident": "NZPH", + "type": "small_airport", + "name": "Pudding Hill Aerodrome", + "latitude_deg": "-43.594200134277344", + "longitude_deg": "171.531005859375", + "elevation_ft": "1558", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "scheduled_service": "no", + "gps_code": "NZPH" + }, + { + "id": "30242", + "ident": "NZPI", + "type": "small_airport", + "name": "Parakai Aerodrome", + "latitude_deg": "-36.65190124511719", + "longitude_deg": "174.43600463867188", + "elevation_ft": "49", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-AUK", + "scheduled_service": "no", + "gps_code": "NZPI" + }, + { + "id": "32076", + "ident": "NZPK", + "type": "closed", + "name": "Pikes Point Airport", + "latitude_deg": "-36.9282989502", + "longitude_deg": "174.81199646", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-AUK", + "municipality": "Pikes Point", + "scheduled_service": "no", + "gps_code": "NZPK" + }, + { + "id": "5049", + "ident": "NZPM", + "type": "medium_airport", + "name": "Palmerston North Airport", + "latitude_deg": "-40.32059860229492", + "longitude_deg": "175.61700439453125", + "elevation_ft": "151", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-MWT", + "scheduled_service": "yes", + "gps_code": "NZPM", + "iata_code": "PMR", + "home_link": "http://www.pnairport.co.nz/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palmerston_North_International_Airport" + }, + { + "id": "30267", + "ident": "NZPN", + "type": "small_airport", + "name": "Picton Aerodrome", + "latitude_deg": "-41.346099853516", + "longitude_deg": "173.95599365234", + "elevation_ft": "161", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-MBH", + "municipality": "Koromiko", + "scheduled_service": "yes", + "gps_code": "NZPN", + "iata_code": "PCN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Picton_Aerodrome" + }, + { + "id": "30280", + "ident": "NZPO", + "type": "small_airport", + "name": "Pōrangahau Aerodrome", + "latitude_deg": "-40.279264", + "longitude_deg": "176.6502", + "elevation_ft": "200", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-HKB", + "municipality": "Pōrangahau", + "scheduled_service": "no", + "gps_code": "NZPO" + }, + { + "id": "5050", + "ident": "NZPP", + "type": "medium_airport", + "name": "Paraparaumu Airport", + "latitude_deg": "-40.904701232910156", + "longitude_deg": "174.98899841308594", + "elevation_ft": "22", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WGN", + "scheduled_service": "no", + "gps_code": "NZPP", + "iata_code": "PPQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paraparaumu_Airport" + }, + { + "id": "429831", + "ident": "NZPW", + "type": "small_airport", + "name": "Papawai Airfield", + "latitude_deg": "-41.104009", + "longitude_deg": "175.500326", + "elevation_ft": "128", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WGN", + "municipality": "Papawai", + "scheduled_service": "no", + "gps_code": "NZPW" + }, + { + "id": "5051", + "ident": "NZQN", + "type": "medium_airport", + "name": "Queenstown International Airport", + "latitude_deg": "-45.021099", + "longitude_deg": "168.738998", + "elevation_ft": "1171", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-OTA", + "municipality": "Queenstown", + "scheduled_service": "yes", + "gps_code": "NZQN", + "iata_code": "ZQN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Queenstown_International_Airport" + }, + { + "id": "44825", + "ident": "NZQW", + "type": "heliport", + "name": "Queens Wharf Heliport", + "latitude_deg": "-41.28580093383789", + "longitude_deg": "174.77999877929688", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WGN", + "municipality": "Wellington", + "scheduled_service": "no", + "gps_code": "NZQW" + }, + { + "id": "30315", + "ident": "NZRA", + "type": "small_airport", + "name": "Raglan Aerodrome", + "latitude_deg": "-37.804699", + "longitude_deg": "174.860001", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "municipality": "Raglan", + "scheduled_service": "no", + "gps_code": "NZRA", + "iata_code": "RAG" + }, + { + "id": "30358", + "ident": "NZRC", + "type": "small_airport", + "name": "Ryan's Creek Aerodrome", + "latitude_deg": "-46.8997", + "longitude_deg": "168.100998", + "elevation_ft": "62", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-STL", + "municipality": "Oban", + "scheduled_service": "no", + "gps_code": "NZRC", + "iata_code": "SZS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ryan%27s_Creek_Aerodrome", + "keywords": "stewart island,rakiura" + }, + { + "id": "32077", + "ident": "NZRI", + "type": "small_airport", + "name": "Rangitata Island Airport", + "latitude_deg": "-44.084999084472656", + "longitude_deg": "171.41600036621094", + "elevation_ft": "288", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "municipality": "Rangitata Island", + "scheduled_service": "no", + "gps_code": "NZRI", + "home_link": "http://www.mothmanor.co.nz/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rangitata_Island" + }, + { + "id": "30321", + "ident": "NZRK", + "type": "small_airport", + "name": "Rangitaiki Airfield", + "latitude_deg": "-38.88639831542969", + "longitude_deg": "176.36399841308594", + "elevation_ft": "2323", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-BOP", + "scheduled_service": "no", + "gps_code": "NZRK" + }, + { + "id": "44829", + "ident": "NZRL", + "type": "seaplane_base", + "name": "Rotorua Lakes Water Aerodrome", + "latitude_deg": "-38.08330154418945", + "longitude_deg": "176.26699829101562", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-BOP", + "municipality": "Lake Rotorua", + "scheduled_service": "no", + "gps_code": "NZRL" + }, + { + "id": "5052", + "ident": "NZRO", + "type": "medium_airport", + "name": "Rotorua Regional Airport", + "latitude_deg": "-38.10919952392578", + "longitude_deg": "176.31700134277344", + "elevation_ft": "935", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-BOP", + "municipality": "Rotorua", + "scheduled_service": "yes", + "gps_code": "NZRO", + "iata_code": "ROT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rotorua_Regional_Airport" + }, + { + "id": "30320", + "ident": "NZRT", + "type": "small_airport", + "name": "Rangiora Airfield", + "latitude_deg": "-43.290000915527344", + "longitude_deg": "172.54200744628906", + "elevation_ft": "180", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "municipality": "Rangiora", + "scheduled_service": "no", + "gps_code": "NZRT", + "home_link": "http://www.rangiora.com/pages/rangiora-airport-and-airfield.php" + }, + { + "id": "5053", + "ident": "NZRU", + "type": "small_airport", + "name": "Waiouru Airport", + "latitude_deg": "-39.4463996887207", + "longitude_deg": "175.6580047607422", + "elevation_ft": "2686", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-MWT", + "scheduled_service": "no", + "gps_code": "NZRU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Waiouru_Army_Camp" + }, + { + "id": "30352", + "ident": "NZRW", + "type": "small_airport", + "name": "Ruawai Aerodrome", + "latitude_deg": "-36.097198486328125", + "longitude_deg": "173.9770050048828", + "elevation_ft": "62", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "scheduled_service": "no", + "gps_code": "NZRW" + }, + { + "id": "30351", + "ident": "NZRX", + "type": "small_airport", + "name": "Roxburgh Aerodrome", + "latitude_deg": "-45.51169967651367", + "longitude_deg": "169.31700134277344", + "elevation_ft": "463", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-OTA", + "scheduled_service": "no", + "gps_code": "NZRX" + }, + { + "id": "30442", + "ident": "NZSD", + "type": "small_airport", + "name": "Stratford Airport", + "latitude_deg": "-39.31890106201172", + "longitude_deg": "174.30999755859375", + "elevation_ft": "951", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-TKI", + "municipality": "Stratford", + "scheduled_service": "no", + "gps_code": "NZSD" + }, + { + "id": "30433", + "ident": "NZSL", + "type": "small_airport", + "name": "Springhill Airport", + "latitude_deg": "-36.32360076904297", + "longitude_deg": "174.55599975585938", + "elevation_ft": "102", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-AUK", + "scheduled_service": "no", + "gps_code": "NZSL" + }, + { + "id": "44815", + "ident": "NZSO", + "type": "seaplane_base", + "name": "Marlborough Sounds Water Aerodrome", + "latitude_deg": "-41.0088996887207", + "longitude_deg": "174.08900451660156", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-MBH", + "municipality": "Malborough Sounds", + "scheduled_service": "no", + "gps_code": "NZSO" + }, + { + "id": "5054", + "ident": "NZSP", + "type": "medium_airport", + "name": "South Pole Station Airport", + "latitude_deg": "-90", + "longitude_deg": "0", + "elevation_ft": "9300", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Amundsen-Scott South Pole Station", + "scheduled_service": "no", + "gps_code": "NZSP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amundsen-Scott_South_Pole_Station" + }, + { + "id": "30476", + "ident": "NZTA", + "type": "small_airport", + "name": "Te Aroha Airfield", + "latitude_deg": "-37.474700927734375", + "longitude_deg": "175.6179962158203", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "scheduled_service": "no", + "gps_code": "NZTA" + }, + { + "id": "30477", + "ident": "NZTE", + "type": "small_airport", + "name": "Te Kowhai Airfield", + "latitude_deg": "-37.744202", + "longitude_deg": "175.160995", + "elevation_ft": "49", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "municipality": "Te Kowhai", + "scheduled_service": "no", + "gps_code": "NZTE" + }, + { + "id": "5055", + "ident": "NZTG", + "type": "medium_airport", + "name": "Tauranga Airport", + "latitude_deg": "-37.67190170288086", + "longitude_deg": "176.1959991455078", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-BOP", + "municipality": "Tauranga", + "scheduled_service": "yes", + "gps_code": "NZTG", + "iata_code": "TRG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tauranga_Airport" + }, + { + "id": "30483", + "ident": "NZTH", + "type": "small_airport", + "name": "Thames Aerodrome", + "latitude_deg": "-37.156700134277344", + "longitude_deg": "175.5500030517578", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "scheduled_service": "no", + "gps_code": "NZTH", + "iata_code": "TMZ" + }, + { + "id": "30463", + "ident": "NZTI", + "type": "small_airport", + "name": "Taieri Airport", + "latitude_deg": "-45.86000061035156", + "longitude_deg": "170.35800170898438", + "elevation_ft": "92", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-OTA", + "scheduled_service": "no", + "gps_code": "NZTI" + }, + { + "id": "30464", + "ident": "NZTK", + "type": "small_airport", + "name": "Takaka Airport", + "latitude_deg": "-40.81330108642578", + "longitude_deg": "172.77499389648438", + "elevation_ft": "102", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-TAS", + "scheduled_service": "no", + "gps_code": "NZTK", + "iata_code": "KTF" + }, + { + "id": "30465", + "ident": "NZTL", + "type": "small_airport", + "name": "Tekapo Aerodrome", + "latitude_deg": "-44.0052986145", + "longitude_deg": "170.444000244", + "elevation_ft": "2496", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "scheduled_service": "no", + "gps_code": "NZTL", + "home_link": "http://www.airsafaris.co.nz/flights/Tekapo/" + }, + { + "id": "30473", + "ident": "NZTM", + "type": "small_airport", + "name": "Taumarunui Airport", + "latitude_deg": "-38.83940124511719", + "longitude_deg": "175.26199340820312", + "elevation_ft": "902", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-MWT", + "scheduled_service": "no", + "gps_code": "NZTM" + }, + { + "id": "30498", + "ident": "NZTN", + "type": "small_airport", + "name": "Turangi Airport", + "latitude_deg": "-38.968299865722656", + "longitude_deg": "175.81399536132812", + "elevation_ft": "1220", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "scheduled_service": "no", + "gps_code": "NZTN" + }, + { + "id": "30489", + "ident": "NZTO", + "type": "small_airport", + "name": "Tokoroa Airfield", + "latitude_deg": "-38.236698150634766", + "longitude_deg": "175.89199829101562", + "elevation_ft": "1220", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "municipality": "Tokoroa", + "scheduled_service": "no", + "gps_code": "NZTO", + "iata_code": "TKZ" + }, + { + "id": "44836", + "ident": "NZTQ", + "type": "heliport", + "name": "Te Kuiti Hospital Heliport", + "latitude_deg": "-38.333900451660156", + "longitude_deg": "175.15199279785156", + "elevation_ft": "250", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "municipality": "Te Kuiti", + "scheduled_service": "no", + "gps_code": "NZTQ" + }, + { + "id": "30462", + "ident": "NZTS", + "type": "small_airport", + "name": "Taharoa Aerodrome", + "latitude_deg": "-38.18109893798828", + "longitude_deg": "174.70799255371094", + "elevation_ft": "69", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "municipality": "Taharoa", + "scheduled_service": "no", + "gps_code": "NZTS", + "iata_code": "THH" + }, + { + "id": "30478", + "ident": "NZTT", + "type": "small_airport", + "name": "Te Kuiti Aerodrome", + "latitude_deg": "-38.30351", + "longitude_deg": "175.147805", + "elevation_ft": "161", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "municipality": "Te Kuiti", + "scheduled_service": "no", + "gps_code": "NZTT" + }, + { + "id": "5056", + "ident": "NZTU", + "type": "medium_airport", + "name": "Timaru Airport", + "latitude_deg": "-44.302799224853516", + "longitude_deg": "171.22500610351562", + "elevation_ft": "89", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "scheduled_service": "yes", + "gps_code": "NZTU", + "iata_code": "TIU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Richard_Pearse_Airport" + }, + { + "id": "30475", + "ident": "NZTZ", + "type": "closed", + "name": "Te Anau Airport", + "latitude_deg": "-45.462799", + "longitude_deg": "167.701004", + "elevation_ft": "791", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-STL", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Te_Anau_Aerodrome", + "keywords": "NZTZ" + }, + { + "id": "44816", + "ident": "NZUA", + "type": "heliport", + "name": "Maui A Heliport", + "latitude_deg": "-39.55830001831055", + "longitude_deg": "173.4499969482422", + "elevation_ft": "157", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-TKI", + "municipality": "Maui A Platform", + "scheduled_service": "no", + "gps_code": "NZUA" + }, + { + "id": "44817", + "ident": "NZUB", + "type": "heliport", + "name": "Maui B Heliport", + "latitude_deg": "-39.650001525878906", + "longitude_deg": "173.30799865722656", + "elevation_ft": "114", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-TKI", + "municipality": "Maui B Platform", + "scheduled_service": "no", + "gps_code": "NZUB" + }, + { + "id": "44839", + "ident": "NZUI", + "type": "heliport", + "name": "Tui Helipad", + "latitude_deg": "-39.43190002441406", + "longitude_deg": "173.23300170898438", + "elevation_ft": "60", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-TKI", + "municipality": "Tui Platform", + "scheduled_service": "no", + "gps_code": "NZUI" + }, + { + "id": "5057", + "ident": "NZUK", + "type": "medium_airport", + "name": "Pukaki Airport", + "latitude_deg": "-44.2350006104", + "longitude_deg": "170.117996216", + "elevation_ft": "1575", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "municipality": "Twitzel", + "scheduled_service": "no", + "gps_code": "NZUK", + "iata_code": "TWZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pukaki_Airport" + }, + { + "id": "30250", + "ident": "NZUN", + "type": "small_airport", + "name": "Pauanui Aerodrome", + "latitude_deg": "-37.021068", + "longitude_deg": "175.863626", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "municipality": "Pauanui", + "scheduled_service": "no", + "gps_code": "NZUN" + }, + { + "id": "44820", + "ident": "NZUR", + "type": "heliport", + "name": "Murchison Hospital Heliport", + "latitude_deg": "-41.806525", + "longitude_deg": "172.328158", + "elevation_ft": "573", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-TAS", + "municipality": "Murchison", + "scheduled_service": "no", + "gps_code": "NZUR" + }, + { + "id": "30107", + "ident": "NZVL", + "type": "small_airport", + "name": "Mandeville Aerodrome", + "latitude_deg": "-45.990299224853516", + "longitude_deg": "168.81199645996094", + "elevation_ft": "351", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-STL", + "scheduled_service": "no", + "gps_code": "NZVL" + }, + { + "id": "32078", + "ident": "NZVR", + "type": "small_airport", + "name": "Taihape Airport", + "latitude_deg": "-39.685001373291016", + "longitude_deg": "175.78900146484375", + "elevation_ft": "1550", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-MWT", + "municipality": "Taihape", + "scheduled_service": "no", + "gps_code": "NZVR" + }, + { + "id": "5058", + "ident": "NZWB", + "type": "medium_airport", + "name": "Woodbourne Airport", + "latitude_deg": "-41.5182991027832", + "longitude_deg": "173.8699951171875", + "elevation_ft": "109", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-MBH", + "municipality": "Blenheim", + "scheduled_service": "yes", + "gps_code": "NZWB", + "iata_code": "BHE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Woodbourne_Airport" + }, + { + "id": "5059", + "ident": "NZWD", + "type": "medium_airport", + "name": "Williams Field", + "latitude_deg": "-77.86740112304688", + "longitude_deg": "167.0570068359375", + "elevation_ft": "68", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "McMurdo Station", + "scheduled_service": "no", + "gps_code": "NZWD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Williams_Field", + "keywords": "Willies Field" + }, + { + "id": "44811", + "ident": "NZWE", + "type": "heliport", + "name": "Kauaroa Bay Heliport", + "latitude_deg": "-36.8297004699707", + "longitude_deg": "175.0659942626953", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-AUK", + "municipality": "Poukaraka Flats", + "scheduled_service": "no", + "gps_code": "NZWE" + }, + { + "id": "5060", + "ident": "NZWF", + "type": "medium_airport", + "name": "Wanaka Airport", + "latitude_deg": "-44.722954", + "longitude_deg": "169.248419", + "elevation_ft": "1142", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-OTA", + "municipality": "Wanaka", + "scheduled_service": "yes", + "gps_code": "NZWF", + "iata_code": "WKA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wanaka_Airport", + "keywords": "Luggate Airport" + }, + { + "id": "5061", + "ident": "NZWG", + "type": "closed", + "name": "Wigram Airport", + "latitude_deg": "-43.5511016846", + "longitude_deg": "172.552993774", + "elevation_ft": "74", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "municipality": "Christchurch", + "scheduled_service": "no", + "gps_code": "NZWG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wigram_Aerodrome" + }, + { + "id": "44845", + "ident": "NZWH", + "type": "heliport", + "name": "Wellington Hospital Heliport", + "latitude_deg": "-41.30830001831055", + "longitude_deg": "174.7790069580078", + "elevation_ft": "290", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WGN", + "municipality": "Wellington", + "scheduled_service": "no", + "gps_code": "NZWH" + }, + { + "id": "30556", + "ident": "NZWJ", + "type": "small_airport", + "name": "Wellsford Airport", + "latitude_deg": "-36.29690170288086", + "longitude_deg": "174.5229949951172", + "elevation_ft": "194", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-AUK", + "scheduled_service": "no", + "gps_code": "NZWJ" + }, + { + "id": "5062", + "ident": "NZWK", + "type": "medium_airport", + "name": "Whakatane Airport", + "latitude_deg": "-37.92060089111328", + "longitude_deg": "176.91400146484375", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-BOP", + "scheduled_service": "yes", + "gps_code": "NZWK", + "iata_code": "WHK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Whakatane_Airport" + }, + { + "id": "30557", + "ident": "NZWL", + "type": "small_airport", + "name": "West Melton Aerodrome", + "latitude_deg": "-43.47669982910156", + "longitude_deg": "172.39700317382812", + "elevation_ft": "312", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "scheduled_service": "no", + "gps_code": "NZWL" + }, + { + "id": "30548", + "ident": "NZWM", + "type": "small_airport", + "name": "Waimate Airport", + "latitude_deg": "-44.790343", + "longitude_deg": "171.090087", + "elevation_ft": "79", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-CAN", + "municipality": "Waimate", + "scheduled_service": "no", + "gps_code": "NZWM" + }, + { + "id": "5063", + "ident": "NZWN", + "type": "large_airport", + "name": "Wellington International Airport", + "latitude_deg": "-41.3272018433", + "longitude_deg": "174.804992676", + "elevation_ft": "41", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WGN", + "municipality": "Wellington", + "scheduled_service": "yes", + "gps_code": "NZWN", + "iata_code": "WLG", + "home_link": "http://www.wellingtonairport.co.nz/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wellington_International_Airport" + }, + { + "id": "5064", + "ident": "NZWO", + "type": "medium_airport", + "name": "Wairoa Airport", + "latitude_deg": "-39.006900787353516", + "longitude_deg": "177.40699768066406", + "elevation_ft": "42", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-HKB", + "municipality": "Wairoa", + "scheduled_service": "no", + "gps_code": "NZWO", + "iata_code": "WIR" + }, + { + "id": "5065", + "ident": "NZWP", + "type": "medium_airport", + "name": "RNZAF Base Auckland-Whenuapai", + "latitude_deg": "-36.78779983520508", + "longitude_deg": "174.6300048828125", + "elevation_ft": "100", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-AUK", + "scheduled_service": "no", + "gps_code": "NZWP", + "home_link": "http://www.airforce.mil.nz/about-us/hq-and-bases/auckland.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/RNZAF_Base_Auckland" + }, + { + "id": "429911", + "ident": "NZWQ", + "type": "small_airport", + "name": "Waitiki Aerodrome", + "latitude_deg": "-34.52782", + "longitude_deg": "172.83805", + "elevation_ft": "190", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Te Kao", + "scheduled_service": "no", + "gps_code": "NZWQ" + }, + { + "id": "5066", + "ident": "NZWR", + "type": "medium_airport", + "name": "Whangarei Airport", + "latitude_deg": "-35.769253", + "longitude_deg": "174.363713", + "elevation_ft": "133", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-NTL", + "municipality": "Whangarei", + "scheduled_service": "yes", + "gps_code": "NZWR", + "iata_code": "WRE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Whangarei_Airport" + }, + { + "id": "5067", + "ident": "NZWS", + "type": "medium_airport", + "name": "Westport Airport", + "latitude_deg": "-41.737111", + "longitude_deg": "171.579033", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WTC", + "municipality": "Westport", + "scheduled_service": "yes", + "gps_code": "NZWS", + "iata_code": "WSZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Westport_Airport_(New_Zealand)" + }, + { + "id": "30560", + "ident": "NZWT", + "type": "small_airport", + "name": "Whitianga Airport", + "latitude_deg": "-36.828731", + "longitude_deg": "175.682802", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-WKO", + "municipality": "Whitianga", + "scheduled_service": "no", + "gps_code": "NZWT", + "iata_code": "WTZ" + }, + { + "id": "5068", + "ident": "NZWU", + "type": "medium_airport", + "name": "Wanganui Airport", + "latitude_deg": "-39.96220016479492", + "longitude_deg": "175.02499389648438", + "elevation_ft": "27", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-MWT", + "municipality": "Wanganui", + "scheduled_service": "yes", + "gps_code": "NZWU", + "iata_code": "WAG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wanganui_Airport" + }, + { + "id": "30546", + "ident": "NZWV", + "type": "small_airport", + "name": "Waihi Beach Airport", + "latitude_deg": "-37.43000030517578", + "longitude_deg": "175.95199584960938", + "elevation_ft": "3", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-BOP", + "scheduled_service": "no", + "gps_code": "NZWV" + }, + { + "id": "30549", + "ident": "NZYP", + "type": "small_airport", + "name": "Waipukurau Airport", + "latitude_deg": "-39.996700286865234", + "longitude_deg": "176.53700256347656", + "elevation_ft": "430", + "continent": "OC", + "iso_country": "NZ", + "iso_region": "NZ-HKB", + "scheduled_service": "no", + "gps_code": "NZYP" + }, + { + "id": "23477", + "ident": "O01", + "type": "heliport", + "name": "Heussler Hamburg Heliport", + "latitude_deg": "42.788795471191406", + "longitude_deg": "-78.84899139404297", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hamburg", + "scheduled_service": "no", + "gps_code": "O01", + "local_code": "O01" + }, + { + "id": "23478", + "ident": "O03", + "type": "small_airport", + "name": "Morgantown Airport", + "latitude_deg": "40.157541", + "longitude_deg": "-75.869222", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Morgantown", + "scheduled_service": "no", + "gps_code": "KO03", + "local_code": "O03" + }, + { + "id": "23479", + "ident": "O06", + "type": "seaplane_base", + "name": "Lake Oroville Landing Area Seaplane Base", + "latitude_deg": "39.56660079956055", + "longitude_deg": "-121.46800231933594", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oroville", + "scheduled_service": "no", + "gps_code": "O06", + "local_code": "O06" + }, + { + "id": "23480", + "ident": "O07", + "type": "closed", + "name": "Westheimer Air Park", + "latitude_deg": "29.69514", + "longitude_deg": "-95.79607", + "elevation_ft": "117", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Westheimer_Air_Park", + "keywords": "O07, 5TA4" + }, + { + "id": "23481", + "ident": "O12", + "type": "seaplane_base", + "name": "Grand Lake St Marys Seaplane Base", + "latitude_deg": "40.54100036621094", + "longitude_deg": "-84.4906997680664", + "elevation_ft": "871", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "St Marys", + "scheduled_service": "no", + "gps_code": "O12", + "local_code": "O12" + }, + { + "id": "23482", + "ident": "O13", + "type": "small_airport", + "name": "Haddock Field", + "latitude_deg": "35.20050048828125", + "longitude_deg": "-99.89769744873047", + "elevation_ft": "2097", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Erick", + "scheduled_service": "no", + "gps_code": "O13", + "local_code": "O13" + }, + { + "id": "23483", + "ident": "O14", + "type": "small_airport", + "name": "Neil's Sky Ranch Airport", + "latitude_deg": "34.89080047607422", + "longitude_deg": "-97.99829864501953", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ninnekah", + "scheduled_service": "no", + "gps_code": "O14", + "local_code": "O14" + }, + { + "id": "23484", + "ident": "O18", + "type": "small_airport", + "name": "Buzzards Roost Airport", + "latitude_deg": "36.14400100708008", + "longitude_deg": "-95.4177017211914", + "elevation_ft": "661", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Inola", + "scheduled_service": "no", + "gps_code": "O18", + "local_code": "O18" + }, + { + "id": "23485", + "ident": "O19", + "type": "small_airport", + "name": "Kneeland Airport", + "latitude_deg": "40.718639", + "longitude_deg": "-123.927298", + "elevation_ft": "2737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Kneeland", + "scheduled_service": "no", + "iata_code": "NLN", + "local_code": "O19", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kneeland_Airport", + "keywords": "Arcata" + }, + { + "id": "23486", + "ident": "O21", + "type": "small_airport", + "name": "Hoopa Airport", + "latitude_deg": "41.04290008544922", + "longitude_deg": "-123.66799926757812", + "elevation_ft": "356", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hoopa", + "scheduled_service": "no", + "gps_code": "O21", + "local_code": "O21", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hoopa_Airport" + }, + { + "id": "23487", + "ident": "O23", + "type": "closed", + "name": "Pinnacles Ranch Airport", + "latitude_deg": "36.510201", + "longitude_deg": "-121.135002", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Paicines", + "scheduled_service": "no", + "keywords": "O23, CL56" + }, + { + "id": "23488", + "ident": "O31", + "type": "small_airport", + "name": "Healdsburg Municipal Airport", + "latitude_deg": "38.6534996033", + "longitude_deg": "-122.899002075", + "elevation_ft": "278", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Healdsburg", + "scheduled_service": "no", + "gps_code": "KHES", + "local_code": "HES", + "wikipedia_link": "https://en.wikipedia.org/wiki/Healdsburg_Municipal_Airport", + "keywords": "Formerly O31" + }, + { + "id": "23489", + "ident": "O33", + "type": "small_airport", + "name": "Samoa Field Airport", + "latitude_deg": "40.78099823", + "longitude_deg": "-124.211997986", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Eureka", + "scheduled_service": "no", + "gps_code": "O33", + "local_code": "O33", + "home_link": "http://www.ci.eureka.ca.gov/depts/engineering/property_management/samoa_field_airport.asp", + "keywords": "Eureka Municipal Airport" + }, + { + "id": "23490", + "ident": "O34", + "type": "closed", + "name": "Molly's Landing Heliport", + "latitude_deg": "36.207298", + "longitude_deg": "-95.725802", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Catoosa", + "scheduled_service": "no", + "keywords": "O34" + }, + { + "id": "23491", + "ident": "O38", + "type": "small_airport", + "name": "Gundys Airport", + "latitude_deg": "36.26679992675781", + "longitude_deg": "-95.78359985351562", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Owasso", + "scheduled_service": "no", + "gps_code": "O38", + "local_code": "O38" + }, + { + "id": "23492", + "ident": "O39", + "type": "small_airport", + "name": "Ravendale Airport", + "latitude_deg": "40.803593", + "longitude_deg": "-120.366193", + "elevation_ft": "5299", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ravendale", + "scheduled_service": "no", + "gps_code": "KO39", + "local_code": "O39" + }, + { + "id": "23493", + "ident": "O44", + "type": "small_airport", + "name": "Mc Caslin Airport", + "latitude_deg": "35.092300415", + "longitude_deg": "-97.3364028931", + "elevation_ft": "1135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "O44", + "local_code": "O44" + }, + { + "id": "23494", + "ident": "O45", + "type": "small_airport", + "name": "Hooker Municipal Airport", + "latitude_deg": "36.85710144042969", + "longitude_deg": "-101.22699737548828", + "elevation_ft": "2998", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hooker", + "scheduled_service": "no", + "gps_code": "O45", + "local_code": "O45" + }, + { + "id": "23495", + "ident": "O55", + "type": "small_airport", + "name": "Southard Field", + "latitude_deg": "41.13959884643555", + "longitude_deg": "-121.1240005493164", + "elevation_ft": "4158", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bieber", + "scheduled_service": "no", + "gps_code": "O55", + "local_code": "O55" + }, + { + "id": "46091", + "ident": "O62", + "type": "closed", + "name": "Carmel Valley Vintage Airfield", + "latitude_deg": "36.481484", + "longitude_deg": "-121.729116", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Carmel Valley", + "scheduled_service": "no", + "keywords": "O62" + }, + { + "id": "23496", + "ident": "O63", + "type": "small_airport", + "name": "Exeter Airport", + "latitude_deg": "36.243", + "longitude_deg": "-119.150002", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Exeter", + "scheduled_service": "no", + "gps_code": "CN63", + "local_code": "CN63", + "keywords": "O63" + }, + { + "id": "23497", + "ident": "O64", + "type": "heliport", + "name": "Port of Catoosa Heliport", + "latitude_deg": "36.23149871826172", + "longitude_deg": "-95.73919677734375", + "elevation_ft": "601", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Catoosa", + "scheduled_service": "no", + "gps_code": "O64", + "local_code": "O64" + }, + { + "id": "23498", + "ident": "O66", + "type": "closed", + "name": "Homestead Farms Airport", + "latitude_deg": "36.6917", + "longitude_deg": "-97.7267", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Pond Creek", + "scheduled_service": "no", + "keywords": "O66" + }, + { + "id": "23499", + "ident": "O74", + "type": "small_airport", + "name": "Elliotts Landing Airport", + "latitude_deg": "40.52470016479492", + "longitude_deg": "-83.51170349121094", + "elevation_ft": "1045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mount Victory", + "scheduled_service": "no", + "gps_code": "O74", + "local_code": "O74" + }, + { + "id": "23500", + "ident": "O85", + "type": "small_airport", + "name": "Benton Field", + "latitude_deg": "40.5749015808", + "longitude_deg": "-122.407997131", + "elevation_ft": "719", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Redding", + "scheduled_service": "no", + "gps_code": "O85", + "iata_code": "BZF", + "local_code": "O85", + "wikipedia_link": "https://en.wikipedia.org/wiki/Benton_Field" + }, + { + "id": "23501", + "ident": "OA00", + "type": "small_airport", + "name": "Taildragger Airport", + "latitude_deg": "40.117000579833984", + "longitude_deg": "-81.57119750976562", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "OA00", + "local_code": "OA00" + }, + { + "id": "23502", + "ident": "OA03", + "type": "heliport", + "name": "B & W Metals Company Heliport", + "latitude_deg": "39.34339904785156", + "longitude_deg": "-84.5365982055664", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "OA03", + "local_code": "OA03" + }, + { + "id": "23503", + "ident": "OA04", + "type": "small_airport", + "name": "Rutter Airport", + "latitude_deg": "41.097599029541016", + "longitude_deg": "-83.50270080566406", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Arcadia", + "scheduled_service": "no", + "gps_code": "OA04", + "local_code": "OA04" + }, + { + "id": "23504", + "ident": "OA05", + "type": "small_airport", + "name": "Hogan Airport", + "latitude_deg": "39.424198150634766", + "longitude_deg": "-84.65910339355469", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mc Gonigle", + "scheduled_service": "no", + "gps_code": "OA05", + "local_code": "OA05" + }, + { + "id": "23505", + "ident": "OA06", + "type": "heliport", + "name": "Massillon Community Hospital Heliport", + "latitude_deg": "40.80580139160156", + "longitude_deg": "-81.5156021118164", + "elevation_ft": "1026", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Massillon", + "scheduled_service": "no", + "gps_code": "OA06", + "local_code": "OA06" + }, + { + "id": "23506", + "ident": "OA07", + "type": "small_airport", + "name": "Hemlock Field", + "latitude_deg": "41.70140075683594", + "longitude_deg": "-80.86029815673828", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Rock Creek", + "scheduled_service": "no", + "gps_code": "OA07", + "local_code": "OA07" + }, + { + "id": "23507", + "ident": "OA08", + "type": "heliport", + "name": "Medflight Heliport", + "latitude_deg": "40.084999084472656", + "longitude_deg": "-83.06829833984375", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "OA08", + "local_code": "OA08" + }, + { + "id": "23508", + "ident": "OA09", + "type": "heliport", + "name": "Madison Health Heliport", + "latitude_deg": "39.893268", + "longitude_deg": "-83.452507", + "elevation_ft": "1057", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "London", + "scheduled_service": "no", + "gps_code": "OA09", + "local_code": "OA09", + "keywords": "Madison County Hospital Heliport" + }, + { + "id": "23509", + "ident": "OA10", + "type": "small_airport", + "name": "Bernie's Airport", + "latitude_deg": "39.00859832763672", + "longitude_deg": "-83.9092025756836", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mount Orab", + "scheduled_service": "no", + "gps_code": "OA10", + "local_code": "OA10" + }, + { + "id": "23510", + "ident": "OA11", + "type": "small_airport", + "name": "Heitman Field", + "latitude_deg": "40.3760986328125", + "longitude_deg": "-84.25499725341797", + "elevation_ft": "998", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Anna", + "scheduled_service": "no", + "gps_code": "OA11", + "local_code": "OA11" + }, + { + "id": "23511", + "ident": "OA12", + "type": "small_airport", + "name": "Buena Vista Farm Airport", + "latitude_deg": "39.33440017700195", + "longitude_deg": "-84.06999969482422", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Morrow", + "scheduled_service": "no", + "gps_code": "OA12", + "local_code": "OA12" + }, + { + "id": "45710", + "ident": "OA14", + "type": "small_airport", + "name": "Roxford Airport", + "latitude_deg": "40.426367", + "longitude_deg": "-81.3202", + "elevation_ft": "872", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dennison", + "scheduled_service": "no", + "gps_code": "OA14", + "local_code": "OA14" + }, + { + "id": "45705", + "ident": "OA15", + "type": "heliport", + "name": "Fort Hamilton Hospital Heliport", + "latitude_deg": "39.416353", + "longitude_deg": "-84.573178", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "OA15", + "local_code": "OA15" + }, + { + "id": "45709", + "ident": "OA16", + "type": "small_airport", + "name": "Lost Bridge Airport", + "latitude_deg": "39.156111", + "longitude_deg": "-84.781667", + "elevation_ft": "818", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "North Bend", + "scheduled_service": "no", + "gps_code": "OA16", + "local_code": "OA16" + }, + { + "id": "45700", + "ident": "OA17", + "type": "heliport", + "name": "Bucyrus Community Hospital Heliport", + "latitude_deg": "40.818164", + "longitude_deg": "-82.980136", + "elevation_ft": "1004", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bucyrus", + "scheduled_service": "no", + "gps_code": "OA17", + "local_code": "OA17" + }, + { + "id": "45701", + "ident": "OA18", + "type": "heliport", + "name": "Creekside Ridge Heliport", + "latitude_deg": "41.1783", + "longitude_deg": "-81.526806", + "elevation_ft": "1081", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cuyahoga Falls", + "scheduled_service": "no", + "gps_code": "OA18", + "local_code": "OA18" + }, + { + "id": "45707", + "ident": "OA19", + "type": "small_airport", + "name": "Kiko Farm Airport", + "latitude_deg": "40.898889", + "longitude_deg": "-81.3", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "North Canton", + "scheduled_service": "no", + "gps_code": "OA19", + "local_code": "OA19" + }, + { + "id": "35357", + "ident": "OA1A", + "type": "heliport", + "name": "Marnah Ghar Heliport", + "latitude_deg": "32.336899", + "longitude_deg": "68.940598", + "elevation_ft": "5558", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-PKA", + "municipality": "Gomal", + "scheduled_service": "no", + "keywords": "Forward Operating Base Carlson" + }, + { + "id": "45706", + "ident": "OA21", + "type": "closed", + "name": "Fuller Heliport", + "latitude_deg": "41.390536", + "longitude_deg": "-81.288803", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Chagrin Falls", + "scheduled_service": "no", + "keywords": "OA21" + }, + { + "id": "45699", + "ident": "OA22", + "type": "heliport", + "name": "Bethesda North Hospital Heliport", + "latitude_deg": "39.251667", + "longitude_deg": "-84.343611", + "elevation_ft": "757", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Montgomery", + "scheduled_service": "no", + "gps_code": "OA22", + "local_code": "OA22" + }, + { + "id": "45713", + "ident": "OA23", + "type": "small_airport", + "name": "Heins Field", + "latitude_deg": "39.968667", + "longitude_deg": "-84.539", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Arcanum", + "scheduled_service": "no", + "gps_code": "OA23", + "local_code": "OA23" + }, + { + "id": "347098", + "ident": "OA26", + "type": "heliport", + "name": "Ashville Heliport", + "latitude_deg": "39.718106", + "longitude_deg": "-83.019378", + "elevation_ft": "706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ashville", + "scheduled_service": "no", + "gps_code": "OA26", + "local_code": "OA26" + }, + { + "id": "353905", + "ident": "OA33", + "type": "heliport", + "name": "Cincinnati Childrens EMS Helipad", + "latitude_deg": "39.14137", + "longitude_deg": "-84.502797", + "elevation_ft": "866", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cincinnati", + "scheduled_service": "no", + "gps_code": "OA33", + "local_code": "OA33" + }, + { + "id": "354679", + "ident": "OA40", + "type": "small_airport", + "name": "Autumn Orchard Airport", + "latitude_deg": "40.880278", + "longitude_deg": "-81.291667", + "elevation_ft": "1189", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Louisville", + "scheduled_service": "no", + "gps_code": "OA40", + "local_code": "OA40" + }, + { + "id": "46312", + "ident": "OA51", + "type": "small_airport", + "name": "Fighter Field Airport", + "latitude_deg": "40.206111", + "longitude_deg": "-83.228611", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Watkins", + "scheduled_service": "no", + "gps_code": "OA51", + "local_code": "OA51" + }, + { + "id": "345155", + "ident": "OA52", + "type": "heliport", + "name": "Ross Heart Hospial Helipad", + "latitude_deg": "39.995115", + "longitude_deg": "-83.018285", + "elevation_ft": "719", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "OA52", + "local_code": "OA52" + }, + { + "id": "23512", + "ident": "OA85", + "type": "small_airport", + "name": "Riverview Airport", + "latitude_deg": "40.13650131225586", + "longitude_deg": "-81.99369812011719", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dresden", + "scheduled_service": "no", + "gps_code": "OA85", + "local_code": "OA85" + }, + { + "id": "349531", + "ident": "OA86", + "type": "small_airport", + "name": "Silent P Airport", + "latitude_deg": "39.907356", + "longitude_deg": "-83.360314", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "West Jefferson", + "scheduled_service": "no", + "gps_code": "OA86", + "local_code": "OA86" + }, + { + "id": "301188", + "ident": "OAA", + "type": "small_airport", + "name": "Shank Air Base", + "latitude_deg": "33.922217", + "longitude_deg": "69.07794", + "elevation_ft": "6890", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-LOW", + "municipality": "Baraki Barak", + "scheduled_service": "no", + "gps_code": "OASH", + "iata_code": "OAA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Forward_Operating_Base_Shank", + "keywords": "Camp Dahlke, Camp Maiwand" + }, + { + "id": "35371", + "ident": "OAAK", + "type": "small_airport", + "name": "Andkhoy Airport", + "latitude_deg": "36.942659", + "longitude_deg": "65.206746", + "elevation_ft": "900", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-FYB", + "municipality": "Andkhoy", + "scheduled_service": "no", + "keywords": "Andkhoi" + }, + { + "id": "30739", + "ident": "OABN", + "type": "small_airport", + "name": "Bamyan Airport", + "latitude_deg": "34.808916", + "longitude_deg": "67.816629", + "elevation_ft": "8367", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-BAM", + "municipality": "Bamyan", + "scheduled_service": "no", + "gps_code": "OABN", + "iata_code": "BIN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bamyan_Airport", + "keywords": "Bamiyan" + }, + { + "id": "30795", + "ident": "OABT", + "type": "small_airport", + "name": "Bost Airport", + "latitude_deg": "31.5597", + "longitude_deg": "64.364998", + "elevation_ft": "2464", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-HEL", + "municipality": "Lashkar Gah", + "scheduled_service": "no", + "gps_code": "OABT", + "iata_code": "BST" + }, + { + "id": "30815", + "ident": "OACC", + "type": "small_airport", + "name": "Chaghcharan Airport", + "latitude_deg": "34.526465", + "longitude_deg": "65.27102", + "elevation_ft": "7383", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-GHO", + "municipality": "Chaghcharan", + "scheduled_service": "yes", + "gps_code": "OACC", + "iata_code": "CCN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chaghcharan_Airport", + "keywords": "Chakcharan" + }, + { + "id": "35372", + "ident": "OADS", + "type": "small_airport", + "name": "Sardeh Band Airport", + "latitude_deg": "33.3207015991", + "longitude_deg": "68.6364974976", + "elevation_ft": "6971", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-GHA", + "municipality": "Sardeh Band", + "scheduled_service": "no", + "gps_code": "OADS", + "iata_code": "SBF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sardeh_Band_Airport" + }, + { + "id": "30877", + "ident": "OADZ", + "type": "small_airport", + "name": "Darwaz Airport", + "latitude_deg": "38.461708", + "longitude_deg": "70.881608", + "elevation_ft": "5250", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-BDS", + "municipality": "Darwaz", + "scheduled_service": "no", + "gps_code": "OADZ", + "iata_code": "DAZ" + }, + { + "id": "333168", + "ident": "OAEM", + "type": "small_airport", + "name": "Ishkashim Airport", + "latitude_deg": "36.710868", + "longitude_deg": "71.615182", + "elevation_ft": "8420", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-BDS", + "municipality": "Ishkashim", + "scheduled_service": "no", + "gps_code": "OAEM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eshkashem_Airport", + "keywords": "Eshkashem Airport" + }, + { + "id": "31044", + "ident": "OAFR", + "type": "small_airport", + "name": "Farah Airport", + "latitude_deg": "32.366667", + "longitude_deg": "62.165347", + "elevation_ft": "3083", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-FRA", + "municipality": "Farah", + "scheduled_service": "no", + "gps_code": "OAFR", + "iata_code": "FAH" + }, + { + "id": "31065", + "ident": "OAFZ", + "type": "small_airport", + "name": "Fayzabad Airport", + "latitude_deg": "37.122148", + "longitude_deg": "70.5201", + "elevation_ft": "3872", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-BDS", + "municipality": "Fayzabad", + "scheduled_service": "yes", + "gps_code": "OAFZ", + "iata_code": "FBD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fayzabad_Airport" + }, + { + "id": "35373", + "ident": "OAGN", + "type": "closed", + "name": "Ghazni Airfield", + "latitude_deg": "33.5312", + "longitude_deg": "68.412903", + "elevation_ft": "7150", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-GHA", + "municipality": "Ghazni", + "scheduled_service": "no" + }, + { + "id": "35374", + "ident": "OAGZ", + "type": "small_airport", + "name": "Gardez Airport", + "latitude_deg": "33.627366", + "longitude_deg": "69.237023", + "elevation_ft": "7790", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-PIA", + "municipality": "Gardez", + "scheduled_service": "no", + "gps_code": "OAGZ", + "iata_code": "GRG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gardez_Airport" + }, + { + "id": "31787", + "ident": "OAHN", + "type": "small_airport", + "name": "Khwahan Airport", + "latitude_deg": "37.890021", + "longitude_deg": "70.20383", + "elevation_ft": "3593", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-BDS", + "municipality": "Khwahan", + "scheduled_service": "no", + "gps_code": "OAHN", + "iata_code": "KWH" + }, + { + "id": "5069", + "ident": "OAHR", + "type": "medium_airport", + "name": "Herat - Khwaja Abdullah Ansari International Airport", + "latitude_deg": "34.209999", + "longitude_deg": "62.228298", + "elevation_ft": "3206", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-HER", + "municipality": "Guzara", + "scheduled_service": "yes", + "gps_code": "OAHR", + "iata_code": "HEA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Herat_International_Airport" + }, + { + "id": "5070", + "ident": "OAIX", + "type": "medium_airport", + "name": "Bagram Airfield", + "latitude_deg": "34.946098", + "longitude_deg": "69.264999", + "elevation_ft": "4895", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-PAR", + "municipality": "Bagram", + "scheduled_service": "no", + "gps_code": "OAIX", + "iata_code": "OAI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bagram_Airfield", + "keywords": "Bagram Air Base" + }, + { + "id": "333170", + "ident": "OAJG", + "type": "small_airport", + "name": "Joghari Airport", + "latitude_deg": "33.158323", + "longitude_deg": "67.546136", + "elevation_ft": "8248", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-GHA", + "municipality": "Joghari", + "scheduled_service": "no", + "gps_code": "OAJG", + "keywords": "Jaghuri, Jaghori, Jaghowri" + }, + { + "id": "5071", + "ident": "OAJL", + "type": "medium_airport", + "name": "Jalalabad Airport", + "latitude_deg": "34.399799", + "longitude_deg": "70.498596", + "elevation_ft": "1814", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-NAN", + "municipality": "Jalalabad", + "scheduled_service": "no", + "gps_code": "OAJL", + "iata_code": "JAA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jalalabad_Airport" + }, + { + "id": "5072", + "ident": "OAKB", + "type": "medium_airport", + "name": "Kabul International Airport", + "latitude_deg": "34.565899", + "longitude_deg": "69.212303", + "elevation_ft": "5877", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-KAB", + "municipality": "Kabul", + "scheduled_service": "yes", + "gps_code": "OAKB", + "iata_code": "KBL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kabul_International_Airport", + "keywords": "Hamid Karzai International Airport, Khwaja Rawash Airport" + }, + { + "id": "32079", + "ident": "OAKG", + "type": "small_airport", + "name": "Khoja-i-Ghar Airport", + "latitude_deg": "37.083", + "longitude_deg": "69.366997", + "elevation_ft": "1607", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-TAK", + "municipality": "Khoja-i-Ghar", + "scheduled_service": "no", + "gps_code": "OAKG", + "keywords": "Khojaghar" + }, + { + "id": "5073", + "ident": "OAKN", + "type": "medium_airport", + "name": "Ahmad Shah Baba International Airport / Kandahar Airfield", + "latitude_deg": "31.5058", + "longitude_deg": "65.847801", + "elevation_ft": "3337", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-KAN", + "municipality": "Khvoshab", + "scheduled_service": "yes", + "gps_code": "OAKN", + "iata_code": "KDH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kandahar_International_Airport", + "keywords": "Kandahar International Airport" + }, + { + "id": "31750", + "ident": "OAKS", + "type": "small_airport", + "name": "Khost Airport", + "latitude_deg": "33.333401", + "longitude_deg": "69.952003", + "elevation_ft": "3756", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-KHO", + "municipality": "Khost", + "scheduled_service": "yes", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khost_Airport", + "keywords": "FOB Chapman, دخوست هوائی ډګر, Chapman, Khost International Airport, KHT, OAKS" + }, + { + "id": "35375", + "ident": "OALG", + "type": "small_airport", + "name": "Logar Airport", + "latitude_deg": "33.98649978637695", + "longitude_deg": "69.02310180664062", + "elevation_ft": "6333", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-LOW", + "scheduled_service": "no" + }, + { + "id": "35376", + "ident": "OALL", + "type": "small_airport", + "name": "Lal (Sarjangal) Airport", + "latitude_deg": "34.506716", + "longitude_deg": "66.298068", + "elevation_ft": "9220", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-GHO", + "municipality": "Lal", + "scheduled_service": "no" + }, + { + "id": "353642", + "ident": "OALP", + "type": "small_airport", + "name": "Little Pamir Airport", + "latitude_deg": "37.244444", + "longitude_deg": "74.251944", + "elevation_ft": "13340", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-BDS", + "municipality": "Erghail", + "scheduled_service": "no", + "gps_code": "OALP" + }, + { + "id": "35377", + "ident": "OAMK", + "type": "small_airport", + "name": "Muqur Airport", + "latitude_deg": "32.879601", + "longitude_deg": "67.848602", + "elevation_ft": "6600", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-GHA", + "municipality": "Muqur", + "scheduled_service": "no" + }, + { + "id": "5074", + "ident": "OAMN", + "type": "medium_airport", + "name": "Maymana Zahiraddin Faryabi Airport", + "latitude_deg": "35.930801", + "longitude_deg": "64.760902", + "elevation_ft": "2743", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-FYB", + "municipality": "Maymana", + "scheduled_service": "no", + "gps_code": "OAMN", + "iata_code": "MMZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maymana_Airport", + "keywords": "Maimana" + }, + { + "id": "5075", + "ident": "OAMS", + "type": "medium_airport", + "name": "Mazar-i-Sharif International Airport", + "latitude_deg": "36.706902", + "longitude_deg": "67.209702", + "elevation_ft": "1284", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-BAL", + "municipality": "Mazar-i-Sharif", + "scheduled_service": "yes", + "gps_code": "OAMS", + "iata_code": "MZR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mazar-i-Sharif_International_Airport", + "keywords": "Mazari Sharif" + }, + { + "id": "35378", + "ident": "OANL", + "type": "small_airport", + "name": "Nili Airport", + "latitude_deg": "33.739456", + "longitude_deg": "66.157408", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-DAY", + "municipality": "Nili", + "scheduled_service": "no", + "gps_code": "OANL", + "iata_code": "VCC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nili_Airport", + "keywords": "Nillli" + }, + { + "id": "35379", + "ident": "OAOG", + "type": "small_airport", + "name": "Urgun Airport", + "latitude_deg": "32.939933", + "longitude_deg": "69.150064", + "elevation_ft": "7300", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-PKA", + "municipality": "Urgun", + "scheduled_service": "no", + "gps_code": "OAOG", + "iata_code": "URN", + "keywords": "Urgoon" + }, + { + "id": "35380", + "ident": "OAPJ", + "type": "small_airport", + "name": "Panjab Airport", + "latitude_deg": "34.391726", + "longitude_deg": "67.020445", + "elevation_ft": "8800", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-BAM", + "municipality": "Panjab", + "scheduled_service": "no" + }, + { + "id": "355707", + "ident": "OAQA", + "type": "small_airport", + "name": "Qalat Airport", + "latitude_deg": "32.133839", + "longitude_deg": "66.898917", + "elevation_ft": "5383", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-ZAB", + "municipality": "Qalat", + "scheduled_service": "no", + "gps_code": "OAQA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qalat_Airport" + }, + { + "id": "32080", + "ident": "OAQM", + "type": "small_airport", + "name": "Koran va Monjan Airport", + "latitude_deg": "36.01707", + "longitude_deg": "70.76085", + "elevation_ft": "8420", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-BDS", + "municipality": "Koran va Monjan", + "scheduled_service": "no", + "gps_code": "OAQM", + "keywords": "Kron Monjan" + }, + { + "id": "31849", + "ident": "OAQN", + "type": "small_airport", + "name": "Qala-i-Naw Airport", + "latitude_deg": "34.985472", + "longitude_deg": "63.117404", + "elevation_ft": "2999", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-BDG", + "municipality": "Qala-i-Naw", + "scheduled_service": "no", + "gps_code": "OAQN", + "iata_code": "LQN" + }, + { + "id": "35381", + "ident": "OART", + "type": "small_airport", + "name": "Rostaq Airport", + "latitude_deg": "37.10681", + "longitude_deg": "69.848892", + "elevation_ft": "4543", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-TAK", + "municipality": "Rostaq", + "scheduled_service": "no", + "gps_code": "OART", + "keywords": "Rustag" + }, + { + "id": "35382", + "ident": "OARZ", + "type": "small_airport", + "name": "Razer Airport", + "latitude_deg": "36.029893", + "longitude_deg": "70.714159", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-BDS", + "municipality": "Skazar", + "scheduled_service": "no", + "gps_code": "OARZ" + }, + { + "id": "32081", + "ident": "OASA", + "type": "small_airport", + "name": "Sharana Airstrip", + "latitude_deg": "33.12575", + "longitude_deg": "68.838517", + "elevation_ft": "7340", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-PKA", + "municipality": "Sharana", + "scheduled_service": "no", + "gps_code": "OASA", + "iata_code": "OAS", + "keywords": "Sharana Air Base" + }, + { + "id": "5076", + "ident": "OASD", + "type": "small_airport", + "name": "Shindand Air Base", + "latitude_deg": "33.3913", + "longitude_deg": "62.261002", + "elevation_ft": "3773", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-FRA", + "municipality": "Shindand", + "scheduled_service": "no", + "gps_code": "OASD", + "iata_code": "OAH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shindand_Air_Base" + }, + { + "id": "5077", + "ident": "OASG", + "type": "small_airport", + "name": "Sheberghan Airport", + "latitude_deg": "36.751076", + "longitude_deg": "65.913038", + "elevation_ft": "1053", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-JOW", + "municipality": "Sheberghan", + "scheduled_service": "no", + "gps_code": "OASG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sheberghan_Airfield" + }, + { + "id": "32288", + "ident": "OASN", + "type": "small_airport", + "name": "Sheghnan Airport", + "latitude_deg": "37.497642", + "longitude_deg": "71.508484", + "elevation_ft": "6700", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-BDS", + "municipality": "Shiveh", + "scheduled_service": "no", + "gps_code": "OASN", + "iata_code": "SGA" + }, + { + "id": "35370", + "ident": "OATD", + "type": "heliport", + "name": "Toorghodi Heliport", + "latitude_deg": "35.222198486328125", + "longitude_deg": "62.29059982299805", + "elevation_ft": "2600", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-HER", + "municipality": "Kara Tapa", + "scheduled_service": "no" + }, + { + "id": "32449", + "ident": "OATN", + "type": "small_airport", + "name": "Tarinkot Airport", + "latitude_deg": "32.604198", + "longitude_deg": "65.865799", + "elevation_ft": "4429", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-ORU", + "municipality": "Tarinkot", + "scheduled_service": "no", + "gps_code": "OATN", + "iata_code": "TII", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tarinkot_Airport", + "keywords": "Tarin Kowt" + }, + { + "id": "35323", + "ident": "OATQ", + "type": "small_airport", + "name": "Taleqan Airport", + "latitude_deg": "36.770699", + "longitude_deg": "69.531998", + "elevation_ft": "2606", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-TAK", + "municipality": "Taleqan", + "scheduled_service": "no", + "gps_code": "OATQ", + "iata_code": "TQN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taloqan_Airport", + "keywords": "Taluqan, Taloqan" + }, + { + "id": "35383", + "ident": "OATW", + "type": "small_airport", + "name": "Taywarah Airport", + "latitude_deg": "33.54309", + "longitude_deg": "64.42542", + "elevation_ft": "7370", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-GHO", + "municipality": "Taywarah", + "scheduled_service": "no", + "keywords": "Teh Wareh" + }, + { + "id": "5078", + "ident": "OAUZ", + "type": "medium_airport", + "name": "Kunduz Airport", + "latitude_deg": "36.6651", + "longitude_deg": "68.910797", + "elevation_ft": "1457", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-KDZ", + "municipality": "Kunduz", + "scheduled_service": "no", + "gps_code": "OAUZ", + "iata_code": "UND", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kunduz_Airport", + "keywords": "Konduz" + }, + { + "id": "35384", + "ident": "OAYL", + "type": "small_airport", + "name": "Yakawlang (Yakolang) Airport", + "latitude_deg": "34.513302", + "longitude_deg": "66.303101", + "elevation_ft": "8700", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-GHO", + "municipality": "Yakawlang", + "scheduled_service": "no" + }, + { + "id": "35385", + "ident": "OAYQ", + "type": "small_airport", + "name": "Yangi Qaleh Airport", + "latitude_deg": "37.459", + "longitude_deg": "69.646599", + "elevation_ft": "1600", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-TAK", + "municipality": "Yangi Qaleh", + "scheduled_service": "no", + "gps_code": "OAYQ", + "keywords": "Yangi Qala" + }, + { + "id": "35386", + "ident": "OAYW", + "type": "small_airport", + "name": "Yawan Airport", + "latitude_deg": "37.563636", + "longitude_deg": "70.444496", + "elevation_ft": "5645", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-BDS", + "municipality": "Yawan", + "scheduled_service": "no", + "gps_code": "OAYW" + }, + { + "id": "35387", + "ident": "OAZI", + "type": "small_airport", + "name": "Camp Shorabak Airfield", + "latitude_deg": "31.848735", + "longitude_deg": "64.223175", + "elevation_ft": "2943", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-HEL", + "municipality": "Lashkar Gah", + "scheduled_service": "no", + "gps_code": "OAZI", + "iata_code": "OAZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_Shorabak", + "keywords": "Camp Bastion, Camp Leatherneck" + }, + { + "id": "32739", + "ident": "OAZJ", + "type": "small_airport", + "name": "Zaranj Airport", + "latitude_deg": "30.972222", + "longitude_deg": "61.865833", + "elevation_ft": "1572", + "continent": "AS", + "iso_country": "AF", + "iso_region": "AF-NIM", + "municipality": "Zaranj", + "scheduled_service": "no", + "gps_code": "OAZJ", + "iata_code": "ZAJ" + }, + { + "id": "5079", + "ident": "OBBI", + "type": "large_airport", + "name": "Bahrain International Airport", + "latitude_deg": "26.267295", + "longitude_deg": "50.63764", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "BH", + "iso_region": "BH-15", + "municipality": "Manama", + "scheduled_service": "yes", + "gps_code": "OBBI", + "iata_code": "BAH", + "home_link": "http://www.bahrainairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bahrain_International_Airport", + "keywords": "مطار البحرين الدولي" + }, + { + "id": "5080", + "ident": "OBBS", + "type": "medium_airport", + "name": "Sheik Isa Air Base", + "latitude_deg": "25.918399810791016", + "longitude_deg": "50.590599060058594", + "elevation_ft": "136", + "continent": "AS", + "iso_country": "BH", + "iso_region": "BH-14", + "municipality": "Sitrah", + "scheduled_service": "no", + "gps_code": "OBBS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shaikh_Isa_Air_Base", + "keywords": "Shakey's Pizza, Shaikh-Isa Air Base" + }, + { + "id": "301189", + "ident": "OBK", + "type": "closed", + "name": "Sky Harbor Airport", + "latitude_deg": "42.1438888889", + "longitude_deg": "-87.85555555559999", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Northbrook", + "scheduled_service": "no", + "iata_code": "OBK" + }, + { + "id": "319189", + "ident": "OBKH", + "type": "small_airport", + "name": "Sakhir Air Base", + "latitude_deg": "26.034533", + "longitude_deg": "50.524544", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "BH", + "iso_region": "BH-14", + "municipality": "Zallaq", + "scheduled_service": "no", + "gps_code": "OBKH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sakhir_Air_Base" + }, + { + "id": "316826", + "ident": "OCS", + "type": "small_airport", + "name": "Corisco International Airport", + "latitude_deg": "0.9125", + "longitude_deg": "9.3304", + "elevation_ft": "55", + "continent": "AF", + "iso_country": "GQ", + "iso_region": "GQ-LI", + "municipality": "Corisco Island", + "scheduled_service": "no", + "gps_code": "FGCO", + "iata_code": "OCS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Corisco_International_Airport" + }, + { + "id": "5752", + "ident": "OE43", + "type": "small_airport", + "name": "Arfa Airport", + "latitude_deg": "21.323601", + "longitude_deg": "41.198299", + "elevation_ft": "4155", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-02", + "municipality": "Ta'if", + "scheduled_service": "no", + "gps_code": "OE43", + "local_code": "OE43" + }, + { + "id": "5753", + "ident": "OE45", + "type": "small_airport", + "name": "Aramco Ras Khafji Airport", + "latitude_deg": "28.3899", + "longitude_deg": "48.516499", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Khafji", + "scheduled_service": "no", + "gps_code": "OE45", + "local_code": "OE45" + }, + { + "id": "5754", + "ident": "OE46", + "type": "small_airport", + "name": "Al Lidem Airport", + "latitude_deg": "20.475900650024414", + "longitude_deg": "44.75749969482422", + "elevation_ft": "2225", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "scheduled_service": "no", + "gps_code": "OE46", + "local_code": "OE46" + }, + { + "id": "42263", + "ident": "OE47", + "type": "small_airport", + "name": "Al Kharj Airport", + "latitude_deg": "24.060722", + "longitude_deg": "47.410805", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Al Kharj", + "scheduled_service": "no", + "gps_code": "OE47" + }, + { + "id": "5755", + "ident": "OE48", + "type": "small_airport", + "name": "Quz South Airport", + "latitude_deg": "18.8932", + "longitude_deg": "41.355", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-02", + "municipality": "Quz", + "scheduled_service": "no", + "gps_code": "OE48", + "local_code": "OE48" + }, + { + "id": "5756", + "ident": "OE49", + "type": "small_airport", + "name": "Mecca East Airport", + "latitude_deg": "21.4375", + "longitude_deg": "39.994202", + "elevation_ft": "1210", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-02", + "municipality": "Mecca", + "scheduled_service": "no", + "gps_code": "OE49", + "local_code": "OE49" + }, + { + "id": "5757", + "ident": "OE50", + "type": "small_airport", + "name": "King Abdulaziz Naval Base", + "latitude_deg": "26.941601", + "longitude_deg": "49.704102", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Jubail", + "scheduled_service": "no", + "gps_code": "OEJL", + "wikipedia_link": "https://en.wikipedia.org/wiki/King_Abdulaziz_Naval_Base", + "keywords": "OE50" + }, + { + "id": "5758", + "ident": "OE51", + "type": "small_airport", + "name": "Al Kharj East Airport", + "latitude_deg": "24.05150032043457", + "longitude_deg": "47.65420150756836", + "elevation_ft": "1650", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "scheduled_service": "no", + "gps_code": "OE51", + "local_code": "OE51" + }, + { + "id": "5759", + "ident": "OE52", + "type": "small_airport", + "name": "Al Artawiyah South Airport", + "latitude_deg": "26.611600875854492", + "longitude_deg": "45.321998596191406", + "elevation_ft": "1900", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "scheduled_service": "no", + "gps_code": "OE52", + "local_code": "OE52" + }, + { + "id": "5760", + "ident": "OE53", + "type": "small_airport", + "name": "King Abdul Aziz Military Academy Airport", + "latitude_deg": "24.942100524902344", + "longitude_deg": "46.39120101928711", + "elevation_ft": "2420", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "scheduled_service": "no", + "gps_code": "OE53", + "local_code": "OE53" + }, + { + "id": "5761", + "ident": "OE54", + "type": "small_airport", + "name": "Hafar Al Atk Airport", + "latitude_deg": "25.99340057373047", + "longitude_deg": "46.53670120239258", + "elevation_ft": "1970", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "scheduled_service": "no", + "gps_code": "OE54", + "local_code": "OE54" + }, + { + "id": "5762", + "ident": "OE55", + "type": "small_airport", + "name": "Aradah Airport", + "latitude_deg": "21.226999", + "longitude_deg": "55.2673", + "elevation_ft": "699", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Ardah", + "scheduled_service": "no", + "gps_code": "OEAD", + "keywords": "OE55, Ghafah Airport" + }, + { + "id": "5763", + "ident": "OE56", + "type": "small_airport", + "name": "Shubaytah Airport", + "latitude_deg": "22.709952", + "longitude_deg": "53.281131", + "elevation_ft": "305", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Shubaytah", + "scheduled_service": "no", + "gps_code": "OE56", + "local_code": "OE56", + "keywords": "Khalfan" + }, + { + "id": "5081", + "ident": "OEAA", + "type": "small_airport", + "name": "Abu Ali Airport", + "latitude_deg": "27.319099", + "longitude_deg": "49.587101", + "elevation_ft": "69", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Al Jubail", + "scheduled_service": "no", + "gps_code": "OEAA" + }, + { + "id": "5082", + "ident": "OEAB", + "type": "medium_airport", + "name": "Abha International Airport", + "latitude_deg": "18.2404", + "longitude_deg": "42.656601", + "elevation_ft": "6858", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-14", + "municipality": "Abha", + "scheduled_service": "yes", + "gps_code": "OEAB", + "iata_code": "AHB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abha_International_Airport", + "keywords": "Abha Regional Airport" + }, + { + "id": "5083", + "ident": "OEAH", + "type": "medium_airport", + "name": "Al-Ahsa International Airport", + "latitude_deg": "25.285299", + "longitude_deg": "49.485199", + "elevation_ft": "588", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Hofuf", + "scheduled_service": "yes", + "gps_code": "OEAH", + "iata_code": "HOF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Al-Ahsa_Domestic_Airport" + }, + { + "id": "5084", + "ident": "OEBA", + "type": "medium_airport", + "name": "King Saud Bin Abdulaziz (Al Baha) Airport", + "latitude_deg": "20.298506", + "longitude_deg": "41.636153", + "elevation_ft": "5486", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-11", + "municipality": "Al Aqiq", + "scheduled_service": "yes", + "gps_code": "OEBA", + "iata_code": "ABT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Al-Baha_Domestic_Airport", + "keywords": "Al-Aqiq" + }, + { + "id": "5085", + "ident": "OEBH", + "type": "medium_airport", + "name": "Bisha Airport", + "latitude_deg": "19.984399795532227", + "longitude_deg": "42.62089920043945", + "elevation_ft": "3887", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-14", + "scheduled_service": "yes", + "gps_code": "OEBH", + "iata_code": "BHH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bisha_Domestic_Airport" + }, + { + "id": "326438", + "ident": "OEBN", + "type": "small_airport", + "name": "Thablotin Airport", + "latitude_deg": "19.831632", + "longitude_deg": "54.022115", + "elevation_ft": "403", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Thabhloten", + "scheduled_service": "no", + "gps_code": "OEBN" + }, + { + "id": "5086", + "ident": "OEBQ", + "type": "small_airport", + "name": "Abqaiq Airport", + "latitude_deg": "25.911301", + "longitude_deg": "49.591202", + "elevation_ft": "229", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Buqayq", + "scheduled_service": "no", + "gps_code": "OEBQ" + }, + { + "id": "5087", + "ident": "OEDF", + "type": "large_airport", + "name": "King Fahd International Airport", + "latitude_deg": "26.471200942993164", + "longitude_deg": "49.79790115356445", + "elevation_ft": "72", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Ad Dammam", + "scheduled_service": "yes", + "gps_code": "OEDF", + "iata_code": "DMM", + "wikipedia_link": "https://en.wikipedia.org/wiki/King_Fahd_International_Airport" + }, + { + "id": "5088", + "ident": "OEDM", + "type": "medium_airport", + "name": "King Salman Abdulaziz Airport", + "latitude_deg": "24.4499", + "longitude_deg": "44.121201", + "elevation_ft": "3026", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Dawadmi", + "scheduled_service": "yes", + "gps_code": "OEDM", + "iata_code": "DWD", + "keywords": "Al Dawadmi Airport" + }, + { + "id": "5089", + "ident": "OEDR", + "type": "large_airport", + "name": "King Abdulaziz Air Base", + "latitude_deg": "26.2654", + "longitude_deg": "50.152", + "elevation_ft": "84", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Dhahran", + "scheduled_service": "no", + "gps_code": "OEDR", + "iata_code": "DHA", + "wikipedia_link": "https://en.wikipedia.org/wiki/King_Abdulaziz_Air_Base", + "keywords": "Dhahran international Airport, Dhahran Air Base, Dhahran Airport, Dhahran Airfield" + }, + { + "id": "30952", + "ident": "OEDW", + "type": "closed", + "name": "Dawadmi Domestic Airport", + "latitude_deg": "24.5", + "longitude_deg": "44.400002", + "elevation_ft": "3429", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Dawadmi", + "scheduled_service": "no", + "gps_code": "OEDW", + "keywords": "DWD, Prinz Salman bin Abdulaziz Airport, Dwadmi" + }, + { + "id": "326441", + "ident": "OEGH", + "type": "closed", + "name": "Al Ghat Airport", + "latitude_deg": "26.026479", + "longitude_deg": "44.959166", + "elevation_ft": "2509", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Al Ghat", + "scheduled_service": "no", + "gps_code": "OEGH" + }, + { + "id": "5090", + "ident": "OEGN", + "type": "medium_airport", + "name": "Jizan Regional Airport / King Abdullah bin Abdulaziz Airport", + "latitude_deg": "16.9011", + "longitude_deg": "42.5858", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-09", + "municipality": "Jizan", + "scheduled_service": "yes", + "gps_code": "OEGN", + "iata_code": "GIZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jizan_Regional_Airport", + "keywords": "Gizan" + }, + { + "id": "5091", + "ident": "OEGS", + "type": "medium_airport", + "name": "Gassim Airport", + "latitude_deg": "26.302799224853516", + "longitude_deg": "43.77439880371094", + "elevation_ft": "2126", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-05", + "scheduled_service": "yes", + "gps_code": "OEGS", + "iata_code": "ELQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gassim_Regional_Airport" + }, + { + "id": "5092", + "ident": "OEGT", + "type": "medium_airport", + "name": "Gurayat Domestic Airport", + "latitude_deg": "31.412413", + "longitude_deg": "37.278898", + "elevation_ft": "1672", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-08", + "municipality": "Gurayat", + "scheduled_service": "yes", + "gps_code": "OEGT", + "iata_code": "URY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gurayat_Domestic_Airport", + "keywords": "Guriat Airport" + }, + { + "id": "5093", + "ident": "OEHL", + "type": "medium_airport", + "name": "Ha'il Airport", + "latitude_deg": "27.437901", + "longitude_deg": "41.686298", + "elevation_ft": "3331", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-06", + "municipality": "Ha'il", + "scheduled_service": "yes", + "gps_code": "OEHL", + "iata_code": "HAS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ha'il_Regional_Airport", + "keywords": "Hail Airport" + }, + { + "id": "32088", + "ident": "OEHR", + "type": "small_airport", + "name": "Haradh Airport", + "latitude_deg": "24.09653", + "longitude_deg": "49.22432", + "elevation_ft": "110", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Harad", + "scheduled_service": "no", + "gps_code": "OEHR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Haradh_Airport" + }, + { + "id": "5094", + "ident": "OEHW", + "type": "small_airport", + "name": "Hawtah Airport", + "latitude_deg": "22.9678", + "longitude_deg": "46.899502", + "elevation_ft": "2091", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Hawtah", + "scheduled_service": "no", + "gps_code": "OEHW" + }, + { + "id": "5095", + "ident": "OEJB", + "type": "medium_airport", + "name": "Jubail Airport", + "latitude_deg": "27.038999557495117", + "longitude_deg": "49.40510177612305", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Jubail", + "scheduled_service": "no", + "gps_code": "OEJB", + "iata_code": "QJB", + "keywords": "OEJL" + }, + { + "id": "5096", + "ident": "OEJF", + "type": "medium_airport", + "name": "King Faisal Naval Base", + "latitude_deg": "21.348100662231445", + "longitude_deg": "39.17300033569336", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-02", + "municipality": "Jeddah", + "scheduled_service": "no", + "gps_code": "OEJF" + }, + { + "id": "5097", + "ident": "OEJN", + "type": "large_airport", + "name": "King Abdulaziz International Airport", + "latitude_deg": "21.6796", + "longitude_deg": "39.156502", + "elevation_ft": "48", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-02", + "municipality": "Jeddah", + "scheduled_service": "yes", + "gps_code": "OEJN", + "iata_code": "JED", + "home_link": "http://www.jed-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/King_Abdulaziz_International_Airport", + "keywords": "Mecca, Hajj" + }, + { + "id": "5098", + "ident": "OEKK", + "type": "medium_airport", + "name": "King Khaled Military City Airport", + "latitude_deg": "27.9009", + "longitude_deg": "45.528198", + "elevation_ft": "1352", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "King Khaled Military City", + "scheduled_service": "yes", + "gps_code": "OEKK", + "iata_code": "KMC", + "wikipedia_link": "https://en.wikipedia.org/wiki/King_Khaled_Military_City_Airport" + }, + { + "id": "5099", + "ident": "OEKM", + "type": "medium_airport", + "name": "King Khalid Air Base", + "latitude_deg": "18.2973", + "longitude_deg": "42.803501", + "elevation_ft": "6778", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-14", + "municipality": "Khamis Mushait", + "scheduled_service": "no", + "gps_code": "OEKM", + "iata_code": "KMX" + }, + { + "id": "5100", + "ident": "OEKR", + "type": "small_airport", + "name": "Old Khurais Airport", + "latitude_deg": "25.069599", + "longitude_deg": "48.194901", + "elevation_ft": "1300", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Khurais oil field", + "scheduled_service": "no", + "gps_code": "OEKR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khurais_Airport_(old)" + }, + { + "id": "5101", + "ident": "OEMA", + "type": "large_airport", + "name": "Prince Mohammad Bin Abdulaziz Airport", + "latitude_deg": "24.5534", + "longitude_deg": "39.705101", + "elevation_ft": "2151", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-03", + "municipality": "Medina", + "scheduled_service": "yes", + "gps_code": "OEMA", + "iata_code": "MED", + "home_link": "http://www.tibahairports.com/en-EN/Pages/Main.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Prince_Mohammad_Bin_Abdulaziz_Airport", + "keywords": "Medinah" + }, + { + "id": "5102", + "ident": "OENG", + "type": "medium_airport", + "name": "Najran Domestic Airport", + "latitude_deg": "17.611401", + "longitude_deg": "44.419201", + "elevation_ft": "3982", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-10", + "municipality": "Najran", + "scheduled_service": "yes", + "gps_code": "OENG", + "iata_code": "EAM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Najran_Domestic_Airport" + }, + { + "id": "332512", + "ident": "OENN", + "type": "medium_airport", + "name": "Neom Bay Airport", + "latitude_deg": "27.927598", + "longitude_deg": "35.28874", + "elevation_ft": "29", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-07", + "municipality": "Neom", + "scheduled_service": "yes", + "gps_code": "OENN", + "iata_code": "NUM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Neom_Airport", + "keywords": "Neom Bay, Sharma" + }, + { + "id": "32093", + "ident": "OENR", + "type": "small_airport", + "name": "Nariya Airport", + "latitude_deg": "27.5", + "longitude_deg": "48.5", + "elevation_ft": "180", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Nariya", + "scheduled_service": "no", + "gps_code": "OENR" + }, + { + "id": "349431", + "ident": "OEOM", + "type": "small_airport", + "name": "Umm Al Melh Border Guards Airport", + "latitude_deg": "19.11176", + "longitude_deg": "50.127353", + "elevation_ft": "860", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Umm Al Melh", + "scheduled_service": "no", + "gps_code": "OEOM" + }, + { + "id": "5103", + "ident": "OEPA", + "type": "medium_airport", + "name": "Al Qaisumah/Hafr Al Batin Airport", + "latitude_deg": "28.335199", + "longitude_deg": "46.125099", + "elevation_ft": "1174", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Qaisumah", + "scheduled_service": "yes", + "gps_code": "OEPA", + "iata_code": "AQI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Al_Qaisumah/Hafr_Al_Batin_Airport", + "keywords": "Qaisumah Domestic Airport" + }, + { + "id": "5104", + "ident": "OEPC", + "type": "small_airport", + "name": "Pump Station 3 Airport", + "latitude_deg": "25.1745", + "longitude_deg": "47.4884", + "elevation_ft": "1740", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Wasea", + "scheduled_service": "no", + "gps_code": "OEPC" + }, + { + "id": "5105", + "ident": "OEPF", + "type": "small_airport", + "name": "Pump Station 6 Airport", + "latitude_deg": "24.71030044555664", + "longitude_deg": "44.964500427246094", + "elevation_ft": "2530", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "scheduled_service": "no", + "gps_code": "OEPF" + }, + { + "id": "5106", + "ident": "OEPI", + "type": "small_airport", + "name": "Pump Station 9 Airport", + "latitude_deg": "24.276100158691406", + "longitude_deg": "42.143699645996094", + "elevation_ft": "3000", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "scheduled_service": "no", + "gps_code": "OEPI" + }, + { + "id": "5107", + "ident": "OEPJ", + "type": "small_airport", + "name": "Pump Station 10 Airport", + "latitude_deg": "24.1072998046875", + "longitude_deg": "41.0359992980957", + "elevation_ft": "2840", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-03", + "scheduled_service": "no", + "gps_code": "OEPJ" + }, + { + "id": "5108", + "ident": "OEPK", + "type": "small_airport", + "name": "Ipsa 3 Airport", + "latitude_deg": "27.954201", + "longitude_deg": "46.742599", + "elevation_ft": "1000", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Hafar al Batin", + "scheduled_service": "no", + "gps_code": "OEPK" + }, + { + "id": "5109", + "ident": "OEPS", + "type": "medium_airport", + "name": "Prince Sultan Air Base", + "latitude_deg": "24.062700271606445", + "longitude_deg": "47.580501556396484", + "elevation_ft": "1651", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "scheduled_service": "no", + "gps_code": "OEPS", + "iata_code": "AKH", + "keywords": "OEKH" + }, + { + "id": "5110", + "ident": "OERB", + "type": "small_airport", + "name": "Rabigh Airport", + "latitude_deg": "22.7026", + "longitude_deg": "39.069801", + "elevation_ft": "22", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-02", + "municipality": "Rabigh", + "scheduled_service": "no", + "gps_code": "OERB" + }, + { + "id": "5111", + "ident": "OERF", + "type": "medium_airport", + "name": "Rafha Domestic Airport", + "latitude_deg": "29.626399993896484", + "longitude_deg": "43.4906005859375", + "elevation_ft": "1474", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-08", + "municipality": "Rafha", + "scheduled_service": "yes", + "gps_code": "OERF", + "iata_code": "RAH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rafha_Domestic_Airport" + }, + { + "id": "5112", + "ident": "OERK", + "type": "large_airport", + "name": "King Khaled International Airport", + "latitude_deg": "24.957599639892578", + "longitude_deg": "46.69879913330078", + "elevation_ft": "2049", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "yes", + "gps_code": "OERK", + "iata_code": "RUH", + "wikipedia_link": "https://en.wikipedia.org/wiki/King_Khalid_International_Airport", + "keywords": "Riyad" + }, + { + "id": "5113", + "ident": "OERM", + "type": "medium_airport", + "name": "Ras Mishab Airport", + "latitude_deg": "28.079599", + "longitude_deg": "48.611", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Al Mishab", + "scheduled_service": "no", + "gps_code": "OERM" + }, + { + "id": "5114", + "ident": "OERR", + "type": "medium_airport", + "name": "Arar Domestic Airport", + "latitude_deg": "30.906600952148438", + "longitude_deg": "41.13819885253906", + "elevation_ft": "1813", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-08", + "municipality": "Arar", + "scheduled_service": "yes", + "gps_code": "OERR", + "iata_code": "RAE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arar_Domestic_Airport" + }, + { + "id": "5115", + "ident": "OERT", + "type": "medium_airport", + "name": "Ras Tanura Airport", + "latitude_deg": "26.723101", + "longitude_deg": "50.0308", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Ras Tanura", + "scheduled_service": "no", + "gps_code": "OERT" + }, + { + "id": "5116", + "ident": "OERY", + "type": "medium_airport", + "name": "Riyadh Air Base", + "latitude_deg": "24.709800720214844", + "longitude_deg": "46.72520065307617", + "elevation_ft": "2082", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no", + "gps_code": "OERY", + "iata_code": "XXN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Riyadh_Air_Base", + "keywords": "Riyad" + }, + { + "id": "5117", + "ident": "OESB", + "type": "small_airport", + "name": "Shaibah Airport", + "latitude_deg": "22.514781", + "longitude_deg": "53.964114", + "elevation_ft": "300", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Shaybah", + "scheduled_service": "no", + "gps_code": "OESB" + }, + { + "id": "5118", + "ident": "OESH", + "type": "medium_airport", + "name": "Sharurah Domestic Airport", + "latitude_deg": "17.4669", + "longitude_deg": "47.121399", + "elevation_ft": "2363", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-10", + "municipality": "Sharurah", + "scheduled_service": "yes", + "gps_code": "OESH", + "iata_code": "SHW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sharurah_Domestic_Airport" + }, + { + "id": "5119", + "ident": "OESK", + "type": "medium_airport", + "name": "Al-Jawf Domestic Airport", + "latitude_deg": "29.78510093688965", + "longitude_deg": "40.099998474121094", + "elevation_ft": "2261", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-12", + "municipality": "Al-Jawf", + "scheduled_service": "yes", + "gps_code": "OESK", + "iata_code": "AJF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Al-Jawf_Domestic_Airport", + "keywords": "Al Jouf Airport" + }, + { + "id": "5120", + "ident": "OESL", + "type": "small_airport", + "name": "As-Sulayyil Airport", + "latitude_deg": "20.464701", + "longitude_deg": "45.619598", + "elevation_ft": "2021", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "As-Sulayyil", + "scheduled_service": "no", + "gps_code": "OESL", + "iata_code": "SLF" + }, + { + "id": "5121", + "ident": "OETB", + "type": "medium_airport", + "name": "Tabuk Airport", + "latitude_deg": "28.3654", + "longitude_deg": "36.6189", + "elevation_ft": "2551", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-07", + "municipality": "Tabuk", + "scheduled_service": "yes", + "gps_code": "OETB", + "iata_code": "TUU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tabuk_Regional_Airport" + }, + { + "id": "5122", + "ident": "OETF", + "type": "medium_airport", + "name": "Ta’if Regional Airport", + "latitude_deg": "21.483001", + "longitude_deg": "40.543442", + "elevation_ft": "4848", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-02", + "municipality": "Ta’if", + "scheduled_service": "yes", + "gps_code": "OETF", + "iata_code": "TIF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ta%E2%80%99if_Regional_Airport", + "keywords": "Taif Airport" + }, + { + "id": "5123", + "ident": "OETH", + "type": "small_airport", + "name": "Thumamah Airport", + "latitude_deg": "25.21299934387207", + "longitude_deg": "46.64099884033203", + "elevation_ft": "1870", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "scheduled_service": "no", + "gps_code": "OETH", + "local_code": "OE44" + }, + { + "id": "5124", + "ident": "OETN", + "type": "medium_airport", + "name": "Ras Tanajib Airport", + "latitude_deg": "27.8678", + "longitude_deg": "48.7691", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "As Saffaniyah", + "scheduled_service": "no", + "gps_code": "OETN" + }, + { + "id": "5125", + "ident": "OETR", + "type": "medium_airport", + "name": "Turaif Domestic Airport", + "latitude_deg": "31.692188", + "longitude_deg": "38.731544", + "elevation_ft": "2803", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-08", + "municipality": "Turaif", + "scheduled_service": "yes", + "gps_code": "OETR", + "iata_code": "TUI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Turaif_Domestic_Airport" + }, + { + "id": "5126", + "ident": "OEUD", + "type": "small_airport", + "name": "Udhailiyah Airport", + "latitude_deg": "25.1511001587", + "longitude_deg": "49.3288002014", + "elevation_ft": "759", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Udhailiyah", + "scheduled_service": "no", + "gps_code": "OEUD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Udhayliyah_Airport" + }, + { + "id": "32094", + "ident": "OEUM", + "type": "small_airport", + "name": "Umm Lajj Airport", + "latitude_deg": "25.16699981689453", + "longitude_deg": "37.33300018310547", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-07", + "municipality": "Umm Lejj", + "scheduled_service": "no", + "gps_code": "OEUM" + }, + { + "id": "5127", + "ident": "OEWD", + "type": "medium_airport", + "name": "Wadi Al Dawasir Domestic Airport", + "latitude_deg": "20.504299", + "longitude_deg": "45.1996", + "elevation_ft": "2062", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Wadi Al Dawasir", + "scheduled_service": "yes", + "gps_code": "OEWD", + "iata_code": "WAE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wadi_al-Dawasir_Domestic_Airport" + }, + { + "id": "5128", + "ident": "OEWJ", + "type": "medium_airport", + "name": "Al Wajh Domestic Airport", + "latitude_deg": "26.198601", + "longitude_deg": "36.476398", + "elevation_ft": "66", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-07", + "municipality": "Al Wajh", + "scheduled_service": "yes", + "gps_code": "OEWJ", + "iata_code": "EJH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Al_Wajh_Domestic_Airport", + "keywords": "Wedjh, Wejh" + }, + { + "id": "5129", + "ident": "OEYN", + "type": "medium_airport", + "name": "Yanbu Airport / Prince Abdul Mohsin bin Abdulaziz international Airport", + "latitude_deg": "24.144199", + "longitude_deg": "38.0634", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-03", + "municipality": "Yanbu", + "scheduled_service": "yes", + "gps_code": "OEYN", + "iata_code": "YNB", + "home_link": "https://gaca.gov.sa/web/en-gb/airport/prince-abdulmohsin-bin-abdulaziz-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yanbu_Airport", + "keywords": "Yenbo" + }, + { + "id": "32751", + "ident": "OEZL", + "type": "small_airport", + "name": "Zilfi Airport", + "latitude_deg": "26.350000381469727", + "longitude_deg": "44.83300018310547", + "elevation_ft": "1900", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Zilfi", + "scheduled_service": "no", + "gps_code": "OEZL", + "iata_code": "ZUL" + }, + { + "id": "23514", + "ident": "OG00", + "type": "small_airport", + "name": "3 Rivers Recreation Area Airport", + "latitude_deg": "44.556757", + "longitude_deg": "-121.405696", + "elevation_ft": "2695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Culver", + "scheduled_service": "no", + "gps_code": "OG00", + "local_code": "OG00" + }, + { + "id": "23515", + "ident": "OG01", + "type": "small_airport", + "name": "Dunning Vineyards Airport", + "latitude_deg": "44.61464", + "longitude_deg": "-123.234839", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Corvallis", + "scheduled_service": "no", + "gps_code": "OG01", + "local_code": "OG01" + }, + { + "id": "23516", + "ident": "OG02", + "type": "small_airport", + "name": "Rieben Airport", + "latitude_deg": "45.61029815673828", + "longitude_deg": "-123.08000183105469", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Banks", + "scheduled_service": "no", + "gps_code": "OG02", + "local_code": "OG02" + }, + { + "id": "23517", + "ident": "OG03", + "type": "heliport", + "name": "Columbia Memorial Hospital Heliport", + "latitude_deg": "46.1882686679", + "longitude_deg": "-123.819742799", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Astoria", + "scheduled_service": "no", + "gps_code": "OG03", + "local_code": "OG03", + "wikipedia_link": "https://en.wikipedia.org/wiki/Columbia_Memorial_Hospital_Heliport" + }, + { + "id": "23518", + "ident": "OG04", + "type": "closed", + "name": "Rothrock Field", + "latitude_deg": "45.745606", + "longitude_deg": "-118.62505", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Adams", + "scheduled_service": "no", + "keywords": "OG04" + }, + { + "id": "23519", + "ident": "OG05", + "type": "small_airport", + "name": "Sundance Meadows Airport", + "latitude_deg": "43.9900016784668", + "longitude_deg": "-121.20600128173828", + "elevation_ft": "3850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Bend", + "scheduled_service": "no", + "gps_code": "OG05", + "local_code": "OG05" + }, + { + "id": "23520", + "ident": "OG06", + "type": "small_airport", + "name": "Table Rock Airport", + "latitude_deg": "43.21149826049805", + "longitude_deg": "-120.84300231933594", + "elevation_ft": "4305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Christmas Valley", + "scheduled_service": "no", + "gps_code": "OG06", + "local_code": "OG06" + }, + { + "id": "23521", + "ident": "OG07", + "type": "small_airport", + "name": "Cove Side Ranch Port Airport", + "latitude_deg": "45.33359909057617", + "longitude_deg": "-117.81999969482422", + "elevation_ft": "2770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Cove", + "scheduled_service": "no", + "gps_code": "OG07", + "local_code": "OG07" + }, + { + "id": "23522", + "ident": "OG08", + "type": "small_airport", + "name": "Curtis Airfield", + "latitude_deg": "45.80860137939453", + "longitude_deg": "-118.65599822998047", + "elevation_ft": "1805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Helix", + "scheduled_service": "no", + "gps_code": "OG08", + "local_code": "OG08" + }, + { + "id": "23523", + "ident": "OG09", + "type": "heliport", + "name": "Good Shepherd Hospital Heliport", + "latitude_deg": "45.8478109634", + "longitude_deg": "-119.30832088", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Hermiston", + "scheduled_service": "no", + "gps_code": "OG09", + "local_code": "OG09", + "wikipedia_link": "https://en.wikipedia.org/wiki/Good_Shepherd_Hospital_Heliport" + }, + { + "id": "23524", + "ident": "OG10", + "type": "small_airport", + "name": "Mt Hope Airport", + "latitude_deg": "44.557405", + "longitude_deg": "-122.82717", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "OG10", + "local_code": "OG10" + }, + { + "id": "23525", + "ident": "OG11", + "type": "heliport", + "name": "Rose Quarter Heliport", + "latitude_deg": "45.532808", + "longitude_deg": "-122.667229", + "elevation_ft": "138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "OG11", + "local_code": "OG11", + "keywords": "Rose Garden" + }, + { + "id": "23526", + "ident": "OG12", + "type": "small_airport", + "name": "Wilson Ranch Airport", + "latitude_deg": "44.21220016479492", + "longitude_deg": "-120.52400207519531", + "elevation_ft": "4220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Prineville", + "scheduled_service": "no", + "gps_code": "OG12", + "local_code": "OG12" + }, + { + "id": "23527", + "ident": "OG13", + "type": "small_airport", + "name": "Fly By Night Airport", + "latitude_deg": "42.24610137939453", + "longitude_deg": "-123.06999969482422", + "elevation_ft": "1660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Ruch", + "scheduled_service": "no", + "gps_code": "OG13", + "local_code": "OG13" + }, + { + "id": "23528", + "ident": "OG14", + "type": "small_airport", + "name": "Silvies Valley Ranch Airport", + "latitude_deg": "44.022441", + "longitude_deg": "-118.93115", + "elevation_ft": "4584", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Seneca", + "scheduled_service": "no", + "gps_code": "OG14", + "local_code": "OG14", + "keywords": "Ponderosa Ranch" + }, + { + "id": "23529", + "ident": "OG15", + "type": "small_airport", + "name": "Sage Ranch Airport", + "latitude_deg": "44.23320007324219", + "longitude_deg": "-121.39099884033203", + "elevation_ft": "3170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sisters", + "scheduled_service": "no", + "gps_code": "OG15", + "local_code": "OG15" + }, + { + "id": "23530", + "ident": "OG16", + "type": "small_airport", + "name": "Jim's Airstrip", + "latitude_deg": "44.382598876953125", + "longitude_deg": "-123.21299743652344", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Halsey", + "scheduled_service": "no", + "gps_code": "OG16", + "local_code": "OG16" + }, + { + "id": "23531", + "ident": "OG17", + "type": "small_airport", + "name": "Teed's Airport", + "latitude_deg": "42.184898376464844", + "longitude_deg": "-120.46600341796875", + "elevation_ft": "4930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Lakeview", + "scheduled_service": "no", + "gps_code": "OG17", + "local_code": "OG17" + }, + { + "id": "23532", + "ident": "OG18", + "type": "closed", + "name": "Lawen Strip", + "latitude_deg": "43.481589", + "longitude_deg": "-118.836837", + "elevation_ft": "4130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Lawen", + "scheduled_service": "no", + "keywords": "OG18" + }, + { + "id": "23533", + "ident": "OG19", + "type": "small_airport", + "name": "Bombay Farms Airport", + "latitude_deg": "44.65010070800781", + "longitude_deg": "-121.23799896240234", + "elevation_ft": "2385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Madras", + "scheduled_service": "no", + "gps_code": "OG19", + "local_code": "OG19" + }, + { + "id": "23534", + "ident": "OG20", + "type": "small_airport", + "name": "Fairways Airport", + "latitude_deg": "45.321651", + "longitude_deg": "-122.55184", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Oregon City", + "scheduled_service": "no", + "gps_code": "OG20", + "local_code": "OG20" + }, + { + "id": "23535", + "ident": "OG21", + "type": "small_airport", + "name": "Dry Creek Airpark", + "latitude_deg": "44.195098876953125", + "longitude_deg": "-120.822998046875", + "elevation_ft": "3625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Prineville", + "scheduled_service": "no", + "gps_code": "OG21", + "local_code": "OG21" + }, + { + "id": "23536", + "ident": "OG22", + "type": "heliport", + "name": "Mercy Hospital Heliport", + "latitude_deg": "43.242882", + "longitude_deg": "-123.366669", + "elevation_ft": "506", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Roseburg", + "scheduled_service": "no", + "local_code": "1OG1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mercy_Hospital_Heliport", + "keywords": "OG22" + }, + { + "id": "23537", + "ident": "OG23", + "type": "small_airport", + "name": "Poverty Hollow Airport", + "latitude_deg": "45.157100677490234", + "longitude_deg": "-123.39099884033203", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sheridan", + "scheduled_service": "no", + "gps_code": "OG23", + "local_code": "OG23" + }, + { + "id": "23538", + "ident": "OG24", + "type": "small_airport", + "name": "Flying D Ranch Airport", + "latitude_deg": "43.38869857788086", + "longitude_deg": "-123.22200012207031", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sutherlin", + "scheduled_service": "no", + "gps_code": "OG24", + "local_code": "OG24" + }, + { + "id": "23539", + "ident": "OG25", + "type": "small_airport", + "name": "Firefly Ranch Airfield", + "latitude_deg": "42.511199951171875", + "longitude_deg": "-122.92400360107422", + "elevation_ft": "1310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "White City", + "scheduled_service": "no", + "gps_code": "OG25", + "local_code": "OG25" + }, + { + "id": "23540", + "ident": "OG26", + "type": "closed", + "name": "Roscoes Airport", + "latitude_deg": "45.061901", + "longitude_deg": "-123.486", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Willamina", + "scheduled_service": "no", + "gps_code": "OG26", + "local_code": "OG26" + }, + { + "id": "23541", + "ident": "OG27", + "type": "small_airport", + "name": "Muddy Creek Airport", + "latitude_deg": "44.940101623535156", + "longitude_deg": "-118.01200103759766", + "elevation_ft": "3500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Haines", + "scheduled_service": "no", + "gps_code": "OG27", + "local_code": "OG27" + }, + { + "id": "23542", + "ident": "OG28", + "type": "small_airport", + "name": "The Green Trees Ranch Airport", + "latitude_deg": "44.68320083618164", + "longitude_deg": "-122.78299713134766", + "elevation_ft": "1139", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Scio", + "scheduled_service": "no", + "gps_code": "OG28", + "local_code": "OG28" + }, + { + "id": "23543", + "ident": "OG29", + "type": "small_airport", + "name": "Mc Kinnon Airpark", + "latitude_deg": "45.4306983948", + "longitude_deg": "-122.241996765", + "elevation_ft": "658", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sandy", + "scheduled_service": "no", + "gps_code": "OG29", + "local_code": "OG29" + }, + { + "id": "23544", + "ident": "OG30", + "type": "small_airport", + "name": "Aeroacres Airport", + "latitude_deg": "45.31650161743164", + "longitude_deg": "-122.6050033569336", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Oregon City", + "scheduled_service": "no", + "gps_code": "OG30", + "local_code": "OG30" + }, + { + "id": "23545", + "ident": "OG31", + "type": "small_airport", + "name": "Shady Cove Airpark", + "latitude_deg": "42.608674", + "longitude_deg": "-122.82951", + "elevation_ft": "1504", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Eagle Point", + "scheduled_service": "no", + "gps_code": "OG31", + "local_code": "OG31" + }, + { + "id": "23546", + "ident": "OG32", + "type": "heliport", + "name": "Mahlon Sweet Field", + "latitude_deg": "44.12649917602539", + "longitude_deg": "-123.2229995727539", + "elevation_ft": "364", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Eugene", + "scheduled_service": "no", + "gps_code": "OG32", + "local_code": "OG32" + }, + { + "id": "23547", + "ident": "OG33", + "type": "small_airport", + "name": "Oregon Sky Ranch Airport", + "latitude_deg": "45.87900161743164", + "longitude_deg": "-118.40499877929688", + "elevation_ft": "1357", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Milton/Freewater", + "scheduled_service": "no", + "gps_code": "OG33", + "local_code": "OG33" + }, + { + "id": "23548", + "ident": "OG34", + "type": "small_airport", + "name": "Meyer Riverside Airpark", + "latitude_deg": "45.39979934692383", + "longitude_deg": "-122.8290023803711", + "elevation_ft": "252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Tigard", + "scheduled_service": "no", + "gps_code": "OG34", + "local_code": "OG34" + }, + { + "id": "23549", + "ident": "OG35", + "type": "heliport", + "name": "Mountain View Hospital Heliport", + "latitude_deg": "44.638631793799995", + "longitude_deg": "-121.1202389", + "elevation_ft": "2299", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Madras", + "scheduled_service": "no", + "gps_code": "OG35", + "local_code": "OG35", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mountain_View_Hospital_Heliport" + }, + { + "id": "23550", + "ident": "OG36", + "type": "small_airport", + "name": "Munson Airport", + "latitude_deg": "44.25040054321289", + "longitude_deg": "-123.22799682617188", + "elevation_ft": "302", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Junction City", + "scheduled_service": "no", + "gps_code": "OG36", + "local_code": "OG36" + }, + { + "id": "23551", + "ident": "OG37", + "type": "heliport", + "name": "Salem Hospital Heliport", + "latitude_deg": "44.93349838", + "longitude_deg": "-123.0350037", + "elevation_ft": "274", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "OG37", + "local_code": "OG37", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salem_Hospital_Heliport" + }, + { + "id": "23552", + "ident": "OG38", + "type": "heliport", + "name": "Valley Medical Center Heliport", + "latitude_deg": "45.198914", + "longitude_deg": "-123.166381", + "elevation_ft": "159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "McMinnville", + "scheduled_service": "no", + "gps_code": "OG38", + "local_code": "OG38" + }, + { + "id": "23553", + "ident": "OG39", + "type": "small_airport", + "name": "Longview Ranch Airport", + "latitude_deg": "44.661104", + "longitude_deg": "-119.65255", + "elevation_ft": "2080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Kimberly", + "scheduled_service": "no", + "gps_code": "OG39", + "local_code": "OG39" + }, + { + "id": "23554", + "ident": "OG40", + "type": "small_airport", + "name": "Napier Ranch Airport", + "latitude_deg": "43.237300872802734", + "longitude_deg": "-123.49299621582031", + "elevation_ft": "485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Roseburg", + "scheduled_service": "no", + "gps_code": "OG40", + "local_code": "OG40" + }, + { + "id": "23555", + "ident": "OG41", + "type": "small_airport", + "name": "Nace Family Airstrip", + "latitude_deg": "42.77119827270508", + "longitude_deg": "-123.31500244140625", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Glendale", + "scheduled_service": "no", + "gps_code": "OG41", + "local_code": "OG41" + }, + { + "id": "23556", + "ident": "OG42", + "type": "small_airport", + "name": "Quail Field", + "latitude_deg": "45.6549", + "longitude_deg": "-118.589996", + "elevation_ft": "1610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Pendleton", + "scheduled_service": "no", + "gps_code": "OG42", + "local_code": "OG42" + }, + { + "id": "23557", + "ident": "OG43", + "type": "heliport", + "name": "Mid-Coloumbia Fire & Rescue Heliport", + "latitude_deg": "45.6062011719", + "longitude_deg": "-121.20400238", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "The Dalles", + "scheduled_service": "no", + "gps_code": "OG43", + "local_code": "OG43" + }, + { + "id": "23558", + "ident": "OG44", + "type": "small_airport", + "name": "Miss Kittys Strip Airport", + "latitude_deg": "45.1534", + "longitude_deg": "-123.237", + "elevation_ft": "155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Amity", + "scheduled_service": "no", + "gps_code": "OG44", + "local_code": "OG44", + "keywords": "Watts Landing" + }, + { + "id": "23559", + "ident": "OG45", + "type": "small_airport", + "name": "Bald Mountain Airport", + "latitude_deg": "44.61690139770508", + "longitude_deg": "-117.87200164794922", + "elevation_ft": "4640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Baker City", + "scheduled_service": "no", + "gps_code": "OG45", + "local_code": "OG45" + }, + { + "id": "23560", + "ident": "OG46", + "type": "heliport", + "name": "Tuality Hospital Heliport", + "latitude_deg": "45.52790069580078", + "longitude_deg": "-122.9800033569336", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "OG46", + "local_code": "OG46" + }, + { + "id": "23561", + "ident": "OG47", + "type": "heliport", + "name": "Three Valleys Ranch Heliport", + "latitude_deg": "44.49440002441406", + "longitude_deg": "-117.74700164794922", + "elevation_ft": "3455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Baker City", + "scheduled_service": "no", + "gps_code": "OG47", + "local_code": "OG47" + }, + { + "id": "23562", + "ident": "OG48", + "type": "small_airport", + "name": "Greer Airport", + "latitude_deg": "44.195899963378906", + "longitude_deg": "-123.072998046875", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Coburg", + "scheduled_service": "no", + "gps_code": "OG48", + "local_code": "OG48" + }, + { + "id": "23563", + "ident": "OG49", + "type": "small_airport", + "name": "Coca Cola Airport", + "latitude_deg": "44.42190170288086", + "longitude_deg": "-123.25900268554688", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Corvalis", + "scheduled_service": "no", + "gps_code": "OG49", + "local_code": "OG49" + }, + { + "id": "23564", + "ident": "OG50", + "type": "small_airport", + "name": "Cottonwood Creek Ranch Airport", + "latitude_deg": "43.847198486328125", + "longitude_deg": "-117.5739974975586", + "elevation_ft": "2555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Harper", + "scheduled_service": "no", + "gps_code": "OG50", + "local_code": "OG50" + }, + { + "id": "23565", + "ident": "OG51", + "type": "small_airport", + "name": "Six Springs Ranch Airport", + "latitude_deg": "44.48350143432617", + "longitude_deg": "-120.91600036621094", + "elevation_ft": "3780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Madras", + "scheduled_service": "no", + "gps_code": "OG51", + "local_code": "OG51" + }, + { + "id": "23566", + "ident": "OG52", + "type": "small_airport", + "name": "Jpm Airport", + "latitude_deg": "44.83919906616211", + "longitude_deg": "-123.25900268554688", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Monmouth", + "scheduled_service": "no", + "gps_code": "OG52", + "local_code": "OG52" + }, + { + "id": "23567", + "ident": "OG53", + "type": "small_airport", + "name": "Wildhorse Valley Airport", + "latitude_deg": "42.48789978027344", + "longitude_deg": "-118.60800170898438", + "elevation_ft": "4225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Andrews", + "scheduled_service": "no", + "gps_code": "OG53", + "local_code": "OG53" + }, + { + "id": "23568", + "ident": "OG54", + "type": "small_airport", + "name": "Shaniko Cattle Airport", + "latitude_deg": "44.96009826660156", + "longitude_deg": "-120.88500213623047", + "elevation_ft": "3300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Shaniko", + "scheduled_service": "no", + "gps_code": "OG54", + "local_code": "OG54" + }, + { + "id": "23569", + "ident": "OG55", + "type": "heliport", + "name": "Providence Newberg Medical Center Heliport", + "latitude_deg": "45.30820083618164", + "longitude_deg": "-122.93699645996094", + "elevation_ft": "207", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Newberg", + "scheduled_service": "no", + "gps_code": "OG55", + "local_code": "OG55" + }, + { + "id": "23570", + "ident": "OG56", + "type": "heliport", + "name": "Station Thirty Heliport", + "latitude_deg": "46.15190124511719", + "longitude_deg": "-123.79399871826172", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Astoria", + "scheduled_service": "no", + "gps_code": "OG56", + "local_code": "OG56" + }, + { + "id": "45730", + "ident": "OG57", + "type": "heliport", + "name": "Pier 126 Heliport", + "latitude_deg": "43.974783", + "longitude_deg": "-124.094067", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Florence", + "scheduled_service": "no", + "gps_code": "OG57", + "local_code": "OG57" + }, + { + "id": "46077", + "ident": "OG58", + "type": "heliport", + "name": "Erickson Air-Crane Admin Offices Heliport", + "latitude_deg": "42.405305", + "longitude_deg": "-122.948055", + "elevation_ft": "1212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Central Point", + "scheduled_service": "no", + "gps_code": "OG58", + "local_code": "OG58" + }, + { + "id": "23571", + "ident": "OG62", + "type": "heliport", + "name": "Myrtle Creek Municipal Heliport", + "latitude_deg": "43.023314", + "longitude_deg": "-123.281311", + "elevation_ft": "608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Myrtle Creek", + "scheduled_service": "no", + "gps_code": "OG62", + "local_code": "OG62" + }, + { + "id": "45728", + "ident": "OG63", + "type": "small_airport", + "name": "Gilbert Airport", + "latitude_deg": "45.648889", + "longitude_deg": "-123.039444", + "elevation_ft": "211", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "North Plains", + "scheduled_service": "no", + "gps_code": "OG63", + "local_code": "OG63" + }, + { + "id": "333111", + "ident": "OG64", + "type": "heliport", + "name": "River Bend Hospital Heliport", + "latitude_deg": "44.081312", + "longitude_deg": "-123.026243", + "elevation_ft": "589", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "OG64", + "local_code": "OG64" + }, + { + "id": "306980", + "ident": "OGE", + "type": "small_airport", + "name": "Ogeranang Airport", + "latitude_deg": "-6.46675", + "longitude_deg": "147.364166667", + "elevation_ft": "5850", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "scheduled_service": "no", + "gps_code": "AYOG", + "iata_code": "OGE", + "local_code": "OGN" + }, + { + "id": "315194", + "ident": "OGM", + "type": "small_airport", + "name": "Ogubsucum Airport", + "latitude_deg": "9.1383", + "longitude_deg": "-77.93385", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Ustupo", + "scheduled_service": "yes", + "iata_code": "OGM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ustupo_Airport" + }, + { + "id": "345149", + "ident": "OH01", + "type": "heliport", + "name": "Grant Medical Center Heliport", + "latitude_deg": "39.96065", + "longitude_deg": "-82.99152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "OH01", + "local_code": "OH01" + }, + { + "id": "23572", + "ident": "OH02", + "type": "closed", + "name": "Eickmeier Airport", + "latitude_deg": "41.294498", + "longitude_deg": "-83.954697", + "elevation_ft": "694", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mc Clure", + "scheduled_service": "no", + "keywords": "OH02" + }, + { + "id": "23573", + "ident": "OH03", + "type": "small_airport", + "name": "Woodworth Airport", + "latitude_deg": "41.792301177978516", + "longitude_deg": "-81.05819702148438", + "elevation_ft": "678", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "OH03", + "local_code": "OH03" + }, + { + "id": "346783", + "ident": "OH04", + "type": "heliport", + "name": "Knox Community Hospital Helipad", + "latitude_deg": "40.398827", + "longitude_deg": "-82.449024", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "OH04", + "local_code": "OH04" + }, + { + "id": "23574", + "ident": "OH05", + "type": "heliport", + "name": "Akron General Hospital Heliport", + "latitude_deg": "41.077032", + "longitude_deg": "-81.531308", + "elevation_ft": "938", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Akron", + "scheduled_service": "no", + "gps_code": "OH05", + "local_code": "OH05", + "keywords": "Akron General Medical Center" + }, + { + "id": "23575", + "ident": "OH07", + "type": "small_airport", + "name": "Sunset Strip", + "latitude_deg": "40.94390106201172", + "longitude_deg": "-81.23899841308594", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Marlboro", + "scheduled_service": "no", + "gps_code": "OH07", + "local_code": "OH07" + }, + { + "id": "348377", + "ident": "OH08", + "type": "heliport", + "name": "Fisher-Titus Medical Center Heliport", + "latitude_deg": "41.223698", + "longitude_deg": "-82.603406", + "elevation_ft": "771", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Norwalk", + "scheduled_service": "no", + "gps_code": "OH08", + "local_code": "OH08" + }, + { + "id": "23576", + "ident": "OH10", + "type": "heliport", + "name": "Midwestern Heliport", + "latitude_deg": "40.778099060058594", + "longitude_deg": "-81.53459930419922", + "elevation_ft": "986", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Massillon", + "scheduled_service": "no", + "gps_code": "OH10", + "local_code": "OH10" + }, + { + "id": "23577", + "ident": "OH11", + "type": "closed", + "name": "Arnold Airport", + "latitude_deg": "39.1106", + "longitude_deg": "-82.092202", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Harrisonville", + "scheduled_service": "no", + "keywords": "OH11" + }, + { + "id": "23578", + "ident": "OH12", + "type": "heliport", + "name": "Remington Heliport", + "latitude_deg": "40.097599029541016", + "longitude_deg": "-82.67130279541016", + "elevation_ft": "1175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Alexandria", + "scheduled_service": "no", + "gps_code": "OH12", + "local_code": "OH12" + }, + { + "id": "23579", + "ident": "OH13", + "type": "small_airport", + "name": "Bulick Field", + "latitude_deg": "40.76810073852539", + "longitude_deg": "-81.05819702148438", + "elevation_ft": "1285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Minerva", + "scheduled_service": "no", + "gps_code": "OH13", + "local_code": "OH13" + }, + { + "id": "23580", + "ident": "OH14", + "type": "closed", + "name": "Brown's Lakeside Landings Airport", + "latitude_deg": "40.279202", + "longitude_deg": "-82.9168", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Sunbury", + "scheduled_service": "no", + "keywords": "OH14" + }, + { + "id": "23581", + "ident": "OH15", + "type": "small_airport", + "name": "Minerva Airport", + "latitude_deg": "40.74589920043945", + "longitude_deg": "-81.14430236816406", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Minerva", + "scheduled_service": "no", + "gps_code": "OH15", + "local_code": "OH15" + }, + { + "id": "23582", + "ident": "OH16", + "type": "closed", + "name": "Middletown Hospital Heliport", + "latitude_deg": "39.510201", + "longitude_deg": "-84.375801", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Middletown", + "scheduled_service": "no", + "keywords": "OH16" + }, + { + "id": "23583", + "ident": "OH17", + "type": "closed", + "name": "August Acres Airport", + "latitude_deg": "40.162601", + "longitude_deg": "-82.781798", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Center Village", + "scheduled_service": "no", + "keywords": "OH17, 01I" + }, + { + "id": "23584", + "ident": "OH18", + "type": "small_airport", + "name": "Freefall Field", + "latitude_deg": "40.932498931884766", + "longitude_deg": "-83.14029693603516", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Sycamore", + "scheduled_service": "no", + "gps_code": "OH18", + "local_code": "OH18" + }, + { + "id": "23585", + "ident": "OH19", + "type": "small_airport", + "name": "Hiltner Airport", + "latitude_deg": "41.154998779296875", + "longitude_deg": "-84.21489715576172", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "North Creek", + "scheduled_service": "no", + "gps_code": "OH19", + "local_code": "OH19" + }, + { + "id": "23586", + "ident": "OH20", + "type": "closed", + "name": "Spring Valley Farm Airport", + "latitude_deg": "40.9198", + "longitude_deg": "-81.701202", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Marshallville", + "scheduled_service": "no", + "keywords": "OH20" + }, + { + "id": "23587", + "ident": "OH21", + "type": "small_airport", + "name": "Horning Airport", + "latitude_deg": "40.73619842529297", + "longitude_deg": "-82.75270080566406", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Galion", + "scheduled_service": "no", + "gps_code": "OH21", + "local_code": "OH21" + }, + { + "id": "23588", + "ident": "OH22", + "type": "small_airport", + "name": "Stoltzfus Airfield", + "latitude_deg": "40.761199951171875", + "longitude_deg": "-81.77899932861328", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Kidron", + "scheduled_service": "no", + "gps_code": "OH22", + "local_code": "OH22" + }, + { + "id": "23589", + "ident": "OH23", + "type": "heliport", + "name": "O'Bleness Memorial Hospital Heliport", + "latitude_deg": "39.326698303222656", + "longitude_deg": "-82.11430358886719", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Athens", + "scheduled_service": "no", + "gps_code": "OH23", + "local_code": "OH23" + }, + { + "id": "23590", + "ident": "OH24", + "type": "closed", + "name": "Brookfield Airpark", + "latitude_deg": "41.2248", + "longitude_deg": "-80.579003", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Brookfield", + "scheduled_service": "no", + "keywords": "OH24" + }, + { + "id": "23591", + "ident": "OH25", + "type": "heliport", + "name": "Grady Memorial Hospital Heliport", + "latitude_deg": "40.30609893798828", + "longitude_deg": "-83.09030151367188", + "elevation_ft": "969", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Delaware", + "scheduled_service": "no", + "gps_code": "OH25", + "local_code": "OH25" + }, + { + "id": "23592", + "ident": "OH26", + "type": "small_airport", + "name": "Birdland Airport", + "latitude_deg": "41.65639877319336", + "longitude_deg": "-81.106201171875", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Thompson", + "scheduled_service": "no", + "gps_code": "OH26", + "local_code": "OH26" + }, + { + "id": "23593", + "ident": "OH27", + "type": "small_airport", + "name": "Salem Lakefront Airport", + "latitude_deg": "40.80780029296875", + "longitude_deg": "-80.84539794921875", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "OH27", + "local_code": "OH27" + }, + { + "id": "23594", + "ident": "OH28", + "type": "small_airport", + "name": "Donner Field", + "latitude_deg": "39.36669921875", + "longitude_deg": "-83.5999984741211", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Leesburg", + "scheduled_service": "no", + "gps_code": "OH28", + "local_code": "OH28" + }, + { + "id": "23595", + "ident": "OH29", + "type": "small_airport", + "name": "Petersburg Airport", + "latitude_deg": "40.90060043334961", + "longitude_deg": "-80.5553970336914", + "elevation_ft": "1174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Petersburg", + "scheduled_service": "no", + "gps_code": "OH29", + "local_code": "OH29" + }, + { + "id": "23596", + "ident": "OH30", + "type": "heliport", + "name": "Whalen Heliport", + "latitude_deg": "38.993099212646484", + "longitude_deg": "-84.17030334472656", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Amelia", + "scheduled_service": "no", + "gps_code": "OH30", + "local_code": "OH30" + }, + { + "id": "23597", + "ident": "OH31", + "type": "heliport", + "name": "Sycamore Hospital Heliport", + "latitude_deg": "39.50419998168945", + "longitude_deg": "-84.24739837646484", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Miamisburg", + "scheduled_service": "no", + "gps_code": "OH31", + "local_code": "OH31" + }, + { + "id": "23598", + "ident": "OH32", + "type": "closed", + "name": "Stone Airport", + "latitude_deg": "41.006402", + "longitude_deg": "-83.427399", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Alvada", + "scheduled_service": "no", + "keywords": "OH32" + }, + { + "id": "23599", + "ident": "OH33", + "type": "closed", + "name": "Humphries Rotordrome Airport", + "latitude_deg": "39.056702", + "longitude_deg": "-84.204101", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Amelia", + "scheduled_service": "no", + "keywords": "OH33" + }, + { + "id": "23600", + "ident": "OH34", + "type": "small_airport", + "name": "Leis Airport", + "latitude_deg": "40.20589828491211", + "longitude_deg": "-84.6615982055664", + "elevation_ft": "1015", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ansonia", + "scheduled_service": "no", + "gps_code": "OH34", + "local_code": "OH34" + }, + { + "id": "23601", + "ident": "OH35", + "type": "closed", + "name": "Mission Field", + "latitude_deg": "39.4309", + "longitude_deg": "-82.822452", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Hallsville", + "scheduled_service": "no", + "gps_code": "OH35", + "local_code": "OH35" + }, + { + "id": "23602", + "ident": "OH36", + "type": "small_airport", + "name": "Riverside Airport", + "latitude_deg": "39.98619842529297", + "longitude_deg": "-81.98370361328125", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Zanesville", + "scheduled_service": "no", + "gps_code": "OH36", + "local_code": "OH36" + }, + { + "id": "23603", + "ident": "OH37", + "type": "closed", + "name": "Glade STOLport", + "latitude_deg": "39.011701", + "longitude_deg": "-82.788496", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Beaver", + "scheduled_service": "no", + "keywords": "OH37" + }, + { + "id": "23604", + "ident": "OH38", + "type": "small_airport", + "name": "Blue Bird Airport", + "latitude_deg": "39.31449890136719", + "longitude_deg": "-81.61650085449219", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Belpre", + "scheduled_service": "no", + "gps_code": "OH38", + "local_code": "OH38" + }, + { + "id": "23605", + "ident": "OH39", + "type": "closed", + "name": "Pine Lake Airport", + "latitude_deg": "40.234798", + "longitude_deg": "-82.919294", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Berkshire", + "scheduled_service": "no", + "keywords": "OH39" + }, + { + "id": "349534", + "ident": "OH40", + "type": "small_airport", + "name": "Eylesair Airport", + "latitude_deg": "40.37001", + "longitude_deg": "-83.112233", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Radnor", + "scheduled_service": "no", + "gps_code": "OH40", + "local_code": "OH40" + }, + { + "id": "23606", + "ident": "OH41", + "type": "closed", + "name": "Cutler Field", + "latitude_deg": "40.1931", + "longitude_deg": "-83.111902", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Powell", + "scheduled_service": "no", + "keywords": "OH41" + }, + { + "id": "23607", + "ident": "OH42", + "type": "small_airport", + "name": "Hawk's Nest Airport", + "latitude_deg": "40.54010009765625", + "longitude_deg": "-82.393798828125", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Butler", + "scheduled_service": "no", + "gps_code": "OH42", + "local_code": "OH42" + }, + { + "id": "23608", + "ident": "OH43", + "type": "small_airport", + "name": "Anderson Airport", + "latitude_deg": "39.83340072631836", + "longitude_deg": "-82.73320007324219", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Canal Winchester", + "scheduled_service": "no", + "gps_code": "OH43", + "local_code": "OH43" + }, + { + "id": "23609", + "ident": "OH44", + "type": "small_airport", + "name": "Head Field Airport", + "latitude_deg": "40.220273", + "longitude_deg": "-82.946992", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Galena", + "scheduled_service": "no", + "gps_code": "OH44", + "local_code": "OH44" + }, + { + "id": "23610", + "ident": "OH45", + "type": "small_airport", + "name": "Drake Airport", + "latitude_deg": "41.44704", + "longitude_deg": "-83.55731", + "elevation_ft": "655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bowling Green", + "scheduled_service": "no", + "gps_code": "OH45", + "local_code": "OH45" + }, + { + "id": "23611", + "ident": "OH46", + "type": "heliport", + "name": "Adena Regional Medical Center Heliport", + "latitude_deg": "39.39569", + "longitude_deg": "-82.969782", + "elevation_ft": "747", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Chillicothe", + "scheduled_service": "no", + "gps_code": "OH91", + "local_code": "OH91", + "keywords": "OH46, Medical Center Hospital" + }, + { + "id": "23612", + "ident": "OH47", + "type": "heliport", + "name": "District 9 Heliport", + "latitude_deg": "39.32419967651367", + "longitude_deg": "-82.9520034790039", + "elevation_ft": "619", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Chillicothe", + "scheduled_service": "no", + "gps_code": "OH47", + "local_code": "OH47" + }, + { + "id": "23613", + "ident": "OH48", + "type": "small_airport", + "name": "Alliance Airport", + "latitude_deg": "40.905601501464844", + "longitude_deg": "-81.06510162353516", + "elevation_ft": "1077", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Alliance", + "scheduled_service": "no", + "gps_code": "OH48", + "local_code": "OH48" + }, + { + "id": "23614", + "ident": "OH49", + "type": "heliport", + "name": "Christ Hospital Heliport", + "latitude_deg": "39.121015", + "longitude_deg": "-84.512592", + "elevation_ft": "873", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cincinnati", + "scheduled_service": "no", + "gps_code": "OH49", + "local_code": "OH49" + }, + { + "id": "23615", + "ident": "OH50", + "type": "small_airport", + "name": "Lindsey L.S. Airport", + "latitude_deg": "39.687599182128906", + "longitude_deg": "-83.0969009399414", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Circleville", + "scheduled_service": "no", + "gps_code": "OH50", + "local_code": "OH50" + }, + { + "id": "23616", + "ident": "OH51", + "type": "closed", + "name": "Miami Valley Career Technology Center Airport", + "latitude_deg": "39.843399", + "longitude_deg": "-84.331299", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Clayton", + "scheduled_service": "no", + "keywords": "OH51" + }, + { + "id": "23617", + "ident": "OH52", + "type": "heliport", + "name": "Columbus Heliport", + "latitude_deg": "39.9833984375", + "longitude_deg": "-83.02349853515625", + "elevation_ft": "733", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "OH52", + "local_code": "OH52" + }, + { + "id": "23618", + "ident": "OH53", + "type": "heliport", + "name": "Ohio Bldg Authority Heliport", + "latitude_deg": "39.962600708", + "longitude_deg": "-82.9993972778", + "elevation_ft": "1354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "OH53", + "local_code": "OH53" + }, + { + "id": "23619", + "ident": "OH54", + "type": "heliport", + "name": "Medical Center Heliport", + "latitude_deg": "39.99509811401367", + "longitude_deg": "-83.02100372314453", + "elevation_ft": "783", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "OH54", + "local_code": "OH54" + }, + { + "id": "23620", + "ident": "OH55", + "type": "closed", + "name": "St Elizabeth Medical Center Heliport", + "latitude_deg": "39.750099", + "longitude_deg": "-84.199899", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dayton", + "scheduled_service": "no", + "keywords": "OH55" + }, + { + "id": "23621", + "ident": "OH56", + "type": "closed", + "name": "Good Samaritan Hospital Heliport", + "latitude_deg": "39.7878", + "longitude_deg": "-84.234398", + "elevation_ft": "914", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dayton", + "scheduled_service": "no", + "home_link": "https://www.daytondailynews.com/news/good-samaritan-hospital-officially-closes-down-for-good-early-monday/VF0RkPjCigUBpg7VzM7E9L", + "keywords": "OH56" + }, + { + "id": "23622", + "ident": "OH57", + "type": "closed", + "name": "Berlin Station Landing Strip", + "latitude_deg": "40.2589", + "longitude_deg": "-83.011803", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Delaware", + "scheduled_service": "no", + "keywords": "OH57" + }, + { + "id": "23623", + "ident": "OH58", + "type": "heliport", + "name": "Cow Chip Creek Heliport", + "latitude_deg": "39.33369827270508", + "longitude_deg": "-84.13880157470703", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Morrow", + "scheduled_service": "no", + "gps_code": "OH58", + "local_code": "OH58" + }, + { + "id": "23624", + "ident": "OH59", + "type": "small_airport", + "name": "McIntosh Airport", + "latitude_deg": "39.695991", + "longitude_deg": "-84.448178", + "elevation_ft": "914", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Farmersville", + "scheduled_service": "no", + "gps_code": "OH59", + "local_code": "OH59", + "keywords": "Garwood Airport" + }, + { + "id": "23625", + "ident": "OH60", + "type": "small_airport", + "name": "Gerker Airfield", + "latitude_deg": "40.95370101928711", + "longitude_deg": "-84.27359771728516", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Fort Jennings", + "scheduled_service": "no", + "gps_code": "OH60", + "local_code": "OH60" + }, + { + "id": "23626", + "ident": "OH61", + "type": "small_airport", + "name": "Amanda Airport", + "latitude_deg": "39.63529968261719", + "longitude_deg": "-82.73789978027344", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Amanda", + "scheduled_service": "no", + "gps_code": "OH61", + "local_code": "OH61" + }, + { + "id": "347915", + "ident": "OH62", + "type": "heliport", + "name": "Southern Ohio Regional Medical Center Heliport", + "latitude_deg": "38.754527", + "longitude_deg": "-82.979484", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Portsmouth", + "scheduled_service": "no", + "gps_code": "OH62", + "local_code": "OH62" + }, + { + "id": "23627", + "ident": "OH63", + "type": "small_airport", + "name": "Jims Airport", + "latitude_deg": "39.600101470947266", + "longitude_deg": "-84.4166030883789", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Germantown", + "scheduled_service": "no", + "gps_code": "OH63", + "local_code": "OH63" + }, + { + "id": "23628", + "ident": "OH64", + "type": "small_airport", + "name": "Hummel Airport", + "latitude_deg": "39.593101501464844", + "longitude_deg": "-84.34380340576172", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Germantown", + "scheduled_service": "no", + "gps_code": "OH64", + "local_code": "OH64" + }, + { + "id": "23629", + "ident": "OH65", + "type": "small_airport", + "name": "Antique Acres Airpark", + "latitude_deg": "39.23939895629883", + "longitude_deg": "-84.10030364990234", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Goshen", + "scheduled_service": "no", + "gps_code": "OH65", + "local_code": "OH65" + }, + { + "id": "23630", + "ident": "OH66", + "type": "small_airport", + "name": "Obannon Creek Aerodrome", + "latitude_deg": "39.239498138427734", + "longitude_deg": "-84.17630004882812", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Goshen", + "scheduled_service": "no", + "gps_code": "OH66", + "local_code": "OH66" + }, + { + "id": "23631", + "ident": "OH67", + "type": "closed", + "name": "Sell Field", + "latitude_deg": "40.120602", + "longitude_deg": "-84.453598", + "elevation_ft": "1018", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bradford", + "scheduled_service": "no", + "keywords": "OH67" + }, + { + "id": "23632", + "ident": "OH68", + "type": "small_airport", + "name": "Raylene Airport", + "latitude_deg": "39.30009841918945", + "longitude_deg": "-84.7499008178711", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Harrison", + "scheduled_service": "no", + "gps_code": "OH68", + "local_code": "OH68" + }, + { + "id": "23633", + "ident": "OH69", + "type": "heliport", + "name": "Highland District Medical Heliport", + "latitude_deg": "39.22119903564453", + "longitude_deg": "-83.61080169677734", + "elevation_ft": "988", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "OH69", + "local_code": "OH69" + }, + { + "id": "23634", + "ident": "OH70", + "type": "heliport", + "name": "Gallenstein Heliport", + "latitude_deg": "39.188899993896484", + "longitude_deg": "-84.32990264892578", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Indian Hill", + "scheduled_service": "no", + "gps_code": "OH70", + "local_code": "OH70" + }, + { + "id": "23635", + "ident": "OH71", + "type": "small_airport", + "name": "Chapman Memorial Field", + "latitude_deg": "40.294799804688", + "longitude_deg": "-82.731300354004", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Centerburg", + "scheduled_service": "no", + "gps_code": "6CM", + "local_code": "6CM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chapman_Memorial_Field", + "keywords": "OH71, 00I" + }, + { + "id": "23636", + "ident": "OH72", + "type": "heliport", + "name": "Oak Hill Hospital Heliport", + "latitude_deg": "38.89590072631836", + "longitude_deg": "-82.57710266113281", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Oak Hill", + "scheduled_service": "no", + "gps_code": "OH72", + "local_code": "OH72" + }, + { + "id": "45698", + "ident": "OH73", + "type": "heliport", + "name": "Fulton County Health Center Heliport", + "latitude_deg": "41.537936", + "longitude_deg": "-84.132035", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wauseon", + "scheduled_service": "no", + "gps_code": "OH73", + "local_code": "OH73", + "keywords": "41 Heliport" + }, + { + "id": "23637", + "ident": "OH74", + "type": "closed", + "name": "Kearns Airport", + "latitude_deg": "40.0937", + "longitude_deg": "-82.716797", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Johnstown", + "scheduled_service": "no", + "keywords": "OH74" + }, + { + "id": "23638", + "ident": "OH75", + "type": "heliport", + "name": "Hardin Memorial Hospital Heliport", + "latitude_deg": "40.64950180053711", + "longitude_deg": "-83.59300231933594", + "elevation_ft": "1011", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Kenton", + "scheduled_service": "no", + "gps_code": "OH75", + "local_code": "OH75" + }, + { + "id": "23639", + "ident": "OH76", + "type": "heliport", + "name": "Waterwood Heliport", + "latitude_deg": "41.389198303222656", + "longitude_deg": "-82.45020294189453", + "elevation_ft": "587", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Vermilion", + "scheduled_service": "no", + "gps_code": "OH76", + "local_code": "OH76" + }, + { + "id": "23640", + "ident": "OH77", + "type": "small_airport", + "name": "Lumberton Airport", + "latitude_deg": "39.5531005859375", + "longitude_deg": "-83.85489654541016", + "elevation_ft": "1008", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wilmington", + "scheduled_service": "no", + "gps_code": "OH77", + "local_code": "OH77" + }, + { + "id": "23641", + "ident": "OH78", + "type": "small_airport", + "name": "Swigart Airport", + "latitude_deg": "39.96760177612305", + "longitude_deg": "-84.40879821777344", + "elevation_ft": "1005", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Laura", + "scheduled_service": "no", + "gps_code": "OH78", + "local_code": "OH78" + }, + { + "id": "23642", + "ident": "OH79", + "type": "heliport", + "name": "Vermilion Township Heliport", + "latitude_deg": "41.4022216797", + "longitude_deg": "-82.36666870120001", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Vermilion", + "scheduled_service": "no", + "gps_code": "OH79", + "local_code": "OH79" + }, + { + "id": "23643", + "ident": "OH80", + "type": "heliport", + "name": "District Nr 8 Heliport", + "latitude_deg": "39.430599212646484", + "longitude_deg": "-84.2833023071289", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "OH80", + "local_code": "OH80" + }, + { + "id": "23644", + "ident": "OH81", + "type": "closed", + "name": "Graham's Landing Airport", + "latitude_deg": "41.225602", + "longitude_deg": "-81.941498", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Valley City", + "scheduled_service": "no", + "keywords": "OH81" + }, + { + "id": "23645", + "ident": "OH82", + "type": "small_airport", + "name": "Graham Farm Airport", + "latitude_deg": "40.1534", + "longitude_deg": "-81.973503", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dresden", + "scheduled_service": "no", + "gps_code": "OH82", + "local_code": "OH82" + }, + { + "id": "23646", + "ident": "OH83", + "type": "heliport", + "name": "Lima Memorial Hospital Heliport", + "latitude_deg": "40.73619842529297", + "longitude_deg": "-84.08740234375", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lima", + "scheduled_service": "no", + "gps_code": "OH83", + "local_code": "OH83" + }, + { + "id": "23647", + "ident": "OH84", + "type": "heliport", + "name": "Odot District Nr 1 Heliport", + "latitude_deg": "40.77119827270508", + "longitude_deg": "-84.1061019897461", + "elevation_ft": "863", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lima", + "scheduled_service": "no", + "gps_code": "OH84", + "local_code": "OH84" + }, + { + "id": "23648", + "ident": "OH85", + "type": "heliport", + "name": "Marietta Memorial Hospital Heliport", + "latitude_deg": "39.43170166015625", + "longitude_deg": "-81.46430206298828", + "elevation_ft": "742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Marietta", + "scheduled_service": "no", + "gps_code": "OH85", + "local_code": "OH85" + }, + { + "id": "23649", + "ident": "OH86", + "type": "closed", + "name": "Deeds Field", + "latitude_deg": "39.648395", + "longitude_deg": "-82.539902", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Sugar Grove", + "scheduled_service": "no", + "keywords": "OH86" + }, + { + "id": "23650", + "ident": "OH87", + "type": "closed", + "name": "Providence Hospital Heliport", + "latitude_deg": "41.437", + "longitude_deg": "-82.712402", + "elevation_ft": "651", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Sandusky", + "scheduled_service": "no", + "keywords": "OH87" + }, + { + "id": "23651", + "ident": "OH88", + "type": "closed", + "name": "Roberts Airport", + "latitude_deg": "39.852798", + "longitude_deg": "-83.470497", + "elevation_ft": "1066", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "London", + "scheduled_service": "no", + "keywords": "OH88" + }, + { + "id": "23652", + "ident": "OH89", + "type": "heliport", + "name": "Selby General Hospital Heliport", + "latitude_deg": "39.440399169921875", + "longitude_deg": "-81.44259643554688", + "elevation_ft": "726", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Marietta", + "scheduled_service": "no", + "gps_code": "OH89", + "local_code": "OH89" + }, + { + "id": "23653", + "ident": "OH90", + "type": "small_airport", + "name": "Hochstetler Airport", + "latitude_deg": "41.707298278808594", + "longitude_deg": "-84.23470306396484", + "elevation_ft": "763", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lyons", + "scheduled_service": "no", + "gps_code": "OH90", + "local_code": "OH90" + }, + { + "id": "23654", + "ident": "OH91", + "type": "small_airport", + "name": "Dave Rice Ultralightport", + "latitude_deg": "40.70009995", + "longitude_deg": "-84.23439789", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lima", + "scheduled_service": "no", + "gps_code": "OH91", + "local_code": "OH91" + }, + { + "id": "23655", + "ident": "OH92", + "type": "small_airport", + "name": "Porter Airport", + "latitude_deg": "39.954200744628906", + "longitude_deg": "-82.18319702148438", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Hopewell", + "scheduled_service": "no", + "gps_code": "OH92", + "local_code": "OH92" + }, + { + "id": "23656", + "ident": "OH93", + "type": "small_airport", + "name": "Darby Airport", + "latitude_deg": "40.14030075073242", + "longitude_deg": "-83.39019775390625", + "elevation_ft": "972", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Milford Center", + "scheduled_service": "no", + "gps_code": "OH93", + "local_code": "OH93" + }, + { + "id": "23657", + "ident": "OH94", + "type": "closed", + "name": "Knore Airport", + "latitude_deg": "38.837601", + "longitude_deg": "-82.834901", + "elevation_ft": "674", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Minford", + "scheduled_service": "no", + "keywords": "OH94" + }, + { + "id": "23658", + "ident": "OH95", + "type": "small_airport", + "name": "Maplewood Orchard Airport", + "latitude_deg": "39.38420104980469", + "longitude_deg": "-84.16829681396484", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Morrow", + "scheduled_service": "no", + "gps_code": "OH95", + "local_code": "OH95" + }, + { + "id": "23659", + "ident": "OH96", + "type": "small_airport", + "name": "Neals Airport", + "latitude_deg": "39.033599853515625", + "longitude_deg": "-83.88610076904297", + "elevation_ft": "953", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mount Orab", + "scheduled_service": "no", + "gps_code": "OH96", + "local_code": "OH96" + }, + { + "id": "23660", + "ident": "OH97", + "type": "small_airport", + "name": "Carcioppolo Field", + "latitude_deg": "41.356884", + "longitude_deg": "-81.214441", + "elevation_ft": "1165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Auburn Center", + "scheduled_service": "no", + "gps_code": "OH97", + "local_code": "OH97" + }, + { + "id": "23661", + "ident": "OH98", + "type": "closed", + "name": "Lyttle Airport", + "latitude_deg": "40.0495", + "longitude_deg": "-82.788201", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "New Albany", + "scheduled_service": "no", + "keywords": "OH98" + }, + { + "id": "23662", + "ident": "OH99", + "type": "closed", + "name": "Planevue Airport", + "latitude_deg": "40.113998", + "longitude_deg": "-82.458199", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Newark", + "scheduled_service": "no", + "keywords": "OH99" + }, + { + "id": "23663", + "ident": "OI01", + "type": "small_airport", + "name": "Lazy-W Airport", + "latitude_deg": "39.51369857788086", + "longitude_deg": "-82.4489974975586", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Logan", + "scheduled_service": "no", + "gps_code": "OI01", + "local_code": "OI01" + }, + { + "id": "3345", + "ident": "OI03", + "type": "small_airport", + "name": "Garmsār Southwest Airport", + "latitude_deg": "35.174198", + "longitude_deg": "52.323299", + "elevation_ft": "2717", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-20", + "municipality": "Garmsār", + "scheduled_service": "no", + "gps_code": "OI03", + "local_code": "OI03" + }, + { + "id": "3346", + "ident": "OI05", + "type": "closed", + "name": "Dana Heliport", + "latitude_deg": "41.655899", + "longitude_deg": "-83.646599", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Toledo", + "scheduled_service": "no", + "keywords": "OI05" + }, + { + "id": "23665", + "ident": "OI06", + "type": "small_airport", + "name": "Wagner Airport", + "latitude_deg": "39.991687", + "longitude_deg": "-84.291615", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "West Milton", + "scheduled_service": "no", + "gps_code": "OI06", + "local_code": "OI06" + }, + { + "id": "23666", + "ident": "OI07", + "type": "small_airport", + "name": "Varns Farms Airport", + "latitude_deg": "40.827999114990234", + "longitude_deg": "-81.97969818115234", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wooster", + "scheduled_service": "no", + "gps_code": "OI07", + "local_code": "OI07" + }, + { + "id": "23667", + "ident": "OI08", + "type": "small_airport", + "name": "Davies Air Field", + "latitude_deg": "40.73889923095703", + "longitude_deg": "-81.87169647216797", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wooster", + "scheduled_service": "no", + "gps_code": "OI08", + "local_code": "OI08" + }, + { + "id": "23668", + "ident": "OI11", + "type": "small_airport", + "name": "Hibbetts Airport", + "latitude_deg": "40.63742", + "longitude_deg": "-81.112141", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Carrollton", + "scheduled_service": "no", + "gps_code": "OI11", + "local_code": "OI11" + }, + { + "id": "23669", + "ident": "OI12", + "type": "closed", + "name": "Fly-A-Way Farm Airport", + "latitude_deg": "40.250301", + "longitude_deg": "-82.994301", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Delaware", + "scheduled_service": "no", + "keywords": "OI12" + }, + { + "id": "3347", + "ident": "OI13", + "type": "small_airport", + "name": "Mahmudabad Airport", + "latitude_deg": "30", + "longitude_deg": "53.71149826049805", + "elevation_ft": "6970", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-07", + "scheduled_service": "no", + "gps_code": "OI13", + "local_code": "OI13" + }, + { + "id": "3348", + "ident": "OI19", + "type": "small_airport", + "name": "Firuzabad Air Base", + "latitude_deg": "35.5299", + "longitude_deg": "51.505798", + "elevation_ft": "3258", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Firuzabad", + "scheduled_service": "no", + "gps_code": "OI19", + "local_code": "OI19" + }, + { + "id": "3349", + "ident": "OI1C", + "type": "small_airport", + "name": "Mehtar Kalateh Airport", + "latitude_deg": "36.856899", + "longitude_deg": "54.202202", + "elevation_ft": "-64", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-27", + "municipality": "Mehtar Kalateh", + "scheduled_service": "no", + "gps_code": "OI1C", + "local_code": "OI1C" + }, + { + "id": "3350", + "ident": "OI20", + "type": "small_airport", + "name": "Bahregan Airport", + "latitude_deg": "29.840099", + "longitude_deg": "50.272701", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-18", + "municipality": "Imam Hassan", + "scheduled_service": "no", + "gps_code": "OI20", + "iata_code": "IAQ", + "local_code": "OI20" + }, + { + "id": "23671", + "ident": "OI22", + "type": "small_airport", + "name": "Carroll's Airport", + "latitude_deg": "41.333900451660156", + "longitude_deg": "-82.10260009765625", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Elyria", + "scheduled_service": "no", + "gps_code": "OI22", + "local_code": "OI22" + }, + { + "id": "23672", + "ident": "OI23", + "type": "heliport", + "name": "Emh Regional Medical Center Heliport", + "latitude_deg": "41.3650016784668", + "longitude_deg": "-82.09760284423828", + "elevation_ft": "867", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Elyria", + "scheduled_service": "no", + "gps_code": "OI23", + "local_code": "OI23" + }, + { + "id": "45708", + "ident": "OI24", + "type": "heliport", + "name": "Kokosing Heliport", + "latitude_deg": "40.491172", + "longitude_deg": "-82.560722", + "elevation_ft": "1095", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Fredericktown", + "scheduled_service": "no", + "gps_code": "OI24", + "local_code": "OI24" + }, + { + "id": "23674", + "ident": "OI25", + "type": "small_airport", + "name": "Ross Field", + "latitude_deg": "39.365299224853516", + "longitude_deg": "-83.35440063476562", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Greenfield", + "scheduled_service": "no", + "gps_code": "OI25", + "local_code": "OI25" + }, + { + "id": "23675", + "ident": "OI26", + "type": "closed", + "name": "Hillcrest Airport", + "latitude_deg": "39.5056", + "longitude_deg": "-84.698799", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Oxford", + "scheduled_service": "no", + "keywords": "OI26" + }, + { + "id": "23676", + "ident": "OI27", + "type": "small_airport", + "name": "Checkpoint Charlie Airport", + "latitude_deg": "39.55670166015625", + "longitude_deg": "-81.5696029663086", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lowell", + "scheduled_service": "no", + "gps_code": "OI27", + "local_code": "OI27" + }, + { + "id": "23677", + "ident": "OI28", + "type": "small_airport", + "name": "Lanker Airport", + "latitude_deg": "40.583900451660156", + "longitude_deg": "-82.6792984008789", + "elevation_ft": "1440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mount Gilead", + "scheduled_service": "no", + "gps_code": "OI28", + "local_code": "OI28" + }, + { + "id": "23678", + "ident": "OI29", + "type": "closed", + "name": "Yellowbird Farm Airport", + "latitude_deg": "38.854198", + "longitude_deg": "-83.230499", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Otway", + "scheduled_service": "no", + "keywords": "OI29" + }, + { + "id": "23679", + "ident": "OI31", + "type": "small_airport", + "name": "Pheasant Run Airport", + "latitude_deg": "41.709800720214844", + "longitude_deg": "-81.12480163574219", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Leroy", + "scheduled_service": "no", + "gps_code": "OI31", + "local_code": "OI31" + }, + { + "id": "23680", + "ident": "OI32", + "type": "small_airport", + "name": "Stoney's Airport", + "latitude_deg": "41.16822", + "longitude_deg": "-81.288046", + "elevation_ft": "1105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ravenna", + "scheduled_service": "no", + "gps_code": "OI32", + "local_code": "OI32" + }, + { + "id": "23681", + "ident": "OI33", + "type": "heliport", + "name": "Ruhlin Heliport", + "latitude_deg": "41.08639907836914", + "longitude_deg": "-81.72930145263672", + "elevation_ft": "1035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Sharon Center", + "scheduled_service": "no", + "gps_code": "OI33", + "local_code": "OI33" + }, + { + "id": "23682", + "ident": "OI34", + "type": "small_airport", + "name": "Fricke Airport", + "latitude_deg": "39.61309814453125", + "longitude_deg": "-83.99240112304688", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Spring Valley", + "scheduled_service": "no", + "gps_code": "OI34", + "local_code": "OI34" + }, + { + "id": "23683", + "ident": "OI35", + "type": "heliport", + "name": "Scott Park Heliport", + "latitude_deg": "41.639801025390625", + "longitude_deg": "-83.59329986572266", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Toledo", + "scheduled_service": "no", + "gps_code": "OI35", + "local_code": "OI35" + }, + { + "id": "23684", + "ident": "OI36", + "type": "small_airport", + "name": "Farpoint Airfield", + "latitude_deg": "39.622501373291016", + "longitude_deg": "-84.48310089111328", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Gratis", + "scheduled_service": "no", + "gps_code": "OI36", + "local_code": "OI36" + }, + { + "id": "23685", + "ident": "OI37", + "type": "heliport", + "name": "Rogers Heliport", + "latitude_deg": "39.80009841918945", + "longitude_deg": "-84.12079620361328", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dayton", + "scheduled_service": "no", + "gps_code": "OI37", + "local_code": "OI37" + }, + { + "id": "23686", + "ident": "OI38", + "type": "small_airport", + "name": "Hillview Airstrip", + "latitude_deg": "40.308435", + "longitude_deg": "-83.613545", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "East Liberty", + "scheduled_service": "no", + "gps_code": "OI38", + "local_code": "OI38" + }, + { + "id": "23687", + "ident": "OI39", + "type": "small_airport", + "name": "Vensil Farms Airport", + "latitude_deg": "40.1067008972168", + "longitude_deg": "-82.1321029663086", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Frazeysburg", + "scheduled_service": "no", + "gps_code": "OI39", + "local_code": "OI39" + }, + { + "id": "23688", + "ident": "OI40", + "type": "small_airport", + "name": "Hallelujah Field", + "latitude_deg": "39.202598571777344", + "longitude_deg": "-84.10469818115234", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Goshen", + "scheduled_service": "no", + "gps_code": "OI40", + "local_code": "OI40" + }, + { + "id": "45703", + "ident": "OI41", + "type": "small_airport", + "name": "Far View Airport", + "latitude_deg": "41.29393", + "longitude_deg": "-81.156006", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Hiram", + "scheduled_service": "no", + "gps_code": "OI41", + "local_code": "OI41", + "wikipedia_link": "https://en.wikipedia.org/wiki/Far_View_Airport", + "keywords": "86D" + }, + { + "id": "23689", + "ident": "OI42", + "type": "small_airport", + "name": "D. A. Chandler Airport", + "latitude_deg": "41.1328010559082", + "longitude_deg": "-82.46070098876953", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "New London", + "scheduled_service": "no", + "gps_code": "OI42", + "local_code": "OI42" + }, + { + "id": "23690", + "ident": "OI43", + "type": "heliport", + "name": "Back Achers Heliport", + "latitude_deg": "41.40340042114258", + "longitude_deg": "-81.908203125", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "North Olmsted", + "scheduled_service": "no", + "gps_code": "OI43", + "local_code": "OI43" + }, + { + "id": "23691", + "ident": "OI44", + "type": "heliport", + "name": "Mercy Health St Charles Hospital Heliport", + "latitude_deg": "41.63245", + "longitude_deg": "-83.482912", + "elevation_ft": "611", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Oregon", + "scheduled_service": "no", + "gps_code": "OI44", + "local_code": "OI44" + }, + { + "id": "23692", + "ident": "OI45", + "type": "small_airport", + "name": "Shootz Field", + "latitude_deg": "41.265098571777344", + "longitude_deg": "-81.65869903564453", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Richfield", + "scheduled_service": "no", + "gps_code": "OI45", + "local_code": "OI45" + }, + { + "id": "23693", + "ident": "OI46", + "type": "closed", + "name": "Sharondale Field", + "latitude_deg": "41.115101", + "longitude_deg": "-81.715103", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Sharon Center", + "scheduled_service": "no", + "gps_code": "OI46", + "local_code": "OI46" + }, + { + "id": "23694", + "ident": "OI47", + "type": "heliport", + "name": "Channel 10/Wbns-Tv Heliport", + "latitude_deg": "39.971500396728516", + "longitude_deg": "-83.027099609375", + "elevation_ft": "717", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "OI47", + "local_code": "OI47" + }, + { + "id": "23695", + "ident": "OI48", + "type": "heliport", + "name": "Tesar Heliport", + "latitude_deg": "41.28419876098633", + "longitude_deg": "-82.97029876708984", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Clyde", + "scheduled_service": "no", + "gps_code": "OI48", + "local_code": "OI48" + }, + { + "id": "23696", + "ident": "OI49", + "type": "small_airport", + "name": "Flying Acres Airport", + "latitude_deg": "40.3838996887207", + "longitude_deg": "-83.10690307617188", + "elevation_ft": "975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Delaware", + "scheduled_service": "no", + "gps_code": "OI49", + "local_code": "OI49" + }, + { + "id": "23697", + "ident": "OI50", + "type": "heliport", + "name": "1st District Police Station Heliport", + "latitude_deg": "41.44810104370117", + "longitude_deg": "-81.77899932861328", + "elevation_ft": "783", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "OI50", + "local_code": "OI50" + }, + { + "id": "23698", + "ident": "OI51", + "type": "heliport", + "name": "4th Dist Police Station Heliport", + "latitude_deg": "41.4720001221", + "longitude_deg": "-81.6195983887", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "OI51", + "local_code": "OI51" + }, + { + "id": "23699", + "ident": "OI52", + "type": "small_airport", + "name": "Lyons Field", + "latitude_deg": "39.625099182128906", + "longitude_deg": "-83.7833023071289", + "elevation_ft": "1045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Jamestown", + "scheduled_service": "no", + "gps_code": "OI52", + "local_code": "OI52" + }, + { + "id": "23700", + "ident": "OI53", + "type": "heliport", + "name": "St Vincent Hospital & Medical Center Heliport", + "latitude_deg": "41.667159", + "longitude_deg": "-83.541196", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Toledo", + "scheduled_service": "no", + "gps_code": "OI53", + "local_code": "OI53" + }, + { + "id": "23701", + "ident": "OI54", + "type": "heliport", + "name": "Mercy Hospital Helistop", + "latitude_deg": "41.65950012207031", + "longitude_deg": "-83.55269622802734", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Toledo", + "scheduled_service": "no", + "gps_code": "OI54", + "local_code": "OI54" + }, + { + "id": "23702", + "ident": "OI55", + "type": "small_airport", + "name": "Scheibe Field", + "latitude_deg": "40.75090026855469", + "longitude_deg": "-82.00430297851562", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wooster", + "scheduled_service": "no", + "gps_code": "OI55", + "local_code": "OI55" + }, + { + "id": "23703", + "ident": "OI56", + "type": "small_airport", + "name": "Lee's Dogpatch Airport", + "latitude_deg": "39.95320129", + "longitude_deg": "-82.64070129", + "elevation_ft": "1055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Kirkersville", + "scheduled_service": "no", + "gps_code": "OI56", + "local_code": "OI56" + }, + { + "id": "23704", + "ident": "OI57", + "type": "small_airport", + "name": "Mc Kinney Field", + "latitude_deg": "38.926998138399995", + "longitude_deg": "-83.9885025024", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Hamersville", + "scheduled_service": "no", + "gps_code": "OI57", + "local_code": "OI57" + }, + { + "id": "23705", + "ident": "OI58", + "type": "small_airport", + "name": "Lockeridge Airport", + "latitude_deg": "40.84170150756836", + "longitude_deg": "-81.43789672851562", + "elevation_ft": "1090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Canton", + "scheduled_service": "no", + "gps_code": "OI58", + "local_code": "OI58" + }, + { + "id": "23706", + "ident": "OI59", + "type": "small_airport", + "name": "Miller Airport", + "latitude_deg": "39.131699", + "longitude_deg": "-81.931801", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Pomeroy", + "scheduled_service": "no", + "gps_code": "OI59", + "local_code": "OI59" + }, + { + "id": "23707", + "ident": "OI60", + "type": "small_airport", + "name": "Gorman Airport", + "latitude_deg": "40.754798889160156", + "longitude_deg": "-82.3916015625", + "elevation_ft": "1230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mansfield", + "scheduled_service": "no", + "gps_code": "OI60", + "local_code": "OI60" + }, + { + "id": "23708", + "ident": "OI61", + "type": "heliport", + "name": "Mount Carmel Health Heliport", + "latitude_deg": "39.95759963989258", + "longitude_deg": "-83.02210235595703", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "OI61", + "local_code": "OI61" + }, + { + "id": "23709", + "ident": "OI62", + "type": "small_airport", + "name": "Rataiczak Airport", + "latitude_deg": "41.47639846801758", + "longitude_deg": "-81.31710052490234", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Russell", + "scheduled_service": "no", + "gps_code": "OI62", + "local_code": "OI62" + }, + { + "id": "23710", + "ident": "OI63", + "type": "heliport", + "name": "Mildon Heliport", + "latitude_deg": "39.55979919433594", + "longitude_deg": "-82.77519989013672", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Tarlton", + "scheduled_service": "no", + "gps_code": "OI63", + "local_code": "OI63" + }, + { + "id": "23711", + "ident": "OI64", + "type": "small_airport", + "name": "Bush Field", + "latitude_deg": "41.680599212646484", + "longitude_deg": "-81.03019714355469", + "elevation_ft": "1145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Thompson", + "scheduled_service": "no", + "gps_code": "OI64", + "local_code": "OI64" + }, + { + "id": "23712", + "ident": "OI65", + "type": "heliport", + "name": "Aultman Hospital Heliport", + "latitude_deg": "40.7957992554", + "longitude_deg": "-81.4039001465", + "elevation_ft": "191", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Canton", + "scheduled_service": "no", + "gps_code": "OI65", + "local_code": "OI65" + }, + { + "id": "23713", + "ident": "OI66", + "type": "closed", + "name": "Eibling Circle E Airport", + "latitude_deg": "40.740898", + "longitude_deg": "-83.670998", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dola", + "scheduled_service": "no", + "keywords": "OI66" + }, + { + "id": "23714", + "ident": "OI67", + "type": "closed", + "name": "Mc Clain Field", + "latitude_deg": "40.608398", + "longitude_deg": "-80.933144", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mechanicstown", + "scheduled_service": "no", + "keywords": "OI67" + }, + { + "id": "23715", + "ident": "OI68", + "type": "small_airport", + "name": "Hilty Field", + "latitude_deg": "40.94139862060547", + "longitude_deg": "-81.79779815673828", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Rittman", + "scheduled_service": "no", + "gps_code": "OI68", + "local_code": "OI68" + }, + { + "id": "23716", + "ident": "OI69", + "type": "small_airport", + "name": "Blackacre Farm Airport", + "latitude_deg": "41.77840042114258", + "longitude_deg": "-81.16699981689453", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Painesville", + "scheduled_service": "no", + "gps_code": "OI69", + "local_code": "OI69" + }, + { + "id": "23717", + "ident": "OI72", + "type": "small_airport", + "name": "Marvin Thiel Field", + "latitude_deg": "41.521688", + "longitude_deg": "-84.721098", + "elevation_ft": "859", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Blakeslee", + "scheduled_service": "no", + "gps_code": "OI72", + "local_code": "OI72" + }, + { + "id": "23718", + "ident": "OI73", + "type": "small_airport", + "name": "Williamson Airport", + "latitude_deg": "39.71260070800781", + "longitude_deg": "-83.80380249023438", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cedarville", + "scheduled_service": "no", + "gps_code": "OI73", + "local_code": "OI73" + }, + { + "id": "23719", + "ident": "OI75", + "type": "heliport", + "name": "Macks Heliport", + "latitude_deg": "40.9281005859375", + "longitude_deg": "-84.05770111083984", + "elevation_ft": "763", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus Grove", + "scheduled_service": "no", + "gps_code": "OI75", + "local_code": "OI75" + }, + { + "id": "23720", + "ident": "OI76", + "type": "seaplane_base", + "name": "Bieber's Seaplane Base", + "latitude_deg": "40.985502", + "longitude_deg": "-80.693522", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "North Lima", + "scheduled_service": "no", + "gps_code": "OI76", + "local_code": "OI76" + }, + { + "id": "23721", + "ident": "OI77", + "type": "small_airport", + "name": "Mc Ardle Airport", + "latitude_deg": "41.2159004211", + "longitude_deg": "-83.5579986572", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Fostoria", + "scheduled_service": "no", + "gps_code": "OI77", + "local_code": "OI77" + }, + { + "id": "23722", + "ident": "OI78", + "type": "closed", + "name": "Diebleys Airport", + "latitude_deg": "41.084801", + "longitude_deg": "-83.436302", + "elevation_ft": "823", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Fostoria", + "scheduled_service": "no", + "keywords": "OI78" + }, + { + "id": "23723", + "ident": "OI79", + "type": "heliport", + "name": "ProMedica Memorial Hospital Heliport", + "latitude_deg": "41.339729", + "longitude_deg": "-83.134822", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Fremont", + "scheduled_service": "no", + "gps_code": "OI79", + "local_code": "OI79" + }, + { + "id": "23724", + "ident": "OI80", + "type": "heliport", + "name": "T & A Land Development Heliport", + "latitude_deg": "41.29059982299805", + "longitude_deg": "-81.68389892578125", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Broadview Heights", + "scheduled_service": "no", + "gps_code": "OI80", + "local_code": "OI80" + }, + { + "id": "23725", + "ident": "OI81", + "type": "small_airport", + "name": "Mollica Airport", + "latitude_deg": "41.0713996887207", + "longitude_deg": "-80.75859832763672", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Austintown", + "scheduled_service": "no", + "gps_code": "OI81", + "local_code": "OI81" + }, + { + "id": "23726", + "ident": "OI82", + "type": "small_airport", + "name": "Russ Airport", + "latitude_deg": "38.912200927734375", + "longitude_deg": "-82.72489929199219", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "OI82", + "local_code": "OI82" + }, + { + "id": "23727", + "ident": "OI83", + "type": "heliport", + "name": "Meridia Hillcrest Hospital Heliport", + "latitude_deg": "41.51839828", + "longitude_deg": "-81.43479919", + "elevation_ft": "1093", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mayfield", + "scheduled_service": "no", + "gps_code": "OI83", + "local_code": "OI83" + }, + { + "id": "23728", + "ident": "OI84", + "type": "closed", + "name": "King Knoll Airport", + "latitude_deg": "39.3871", + "longitude_deg": "-84.797897", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Okeana", + "scheduled_service": "no", + "keywords": "Greater Okeana Metroplex Interplanetary Spaceport and Snack Bar, OI84" + }, + { + "id": "23729", + "ident": "OI85", + "type": "small_airport", + "name": "Mill Creek Airport", + "latitude_deg": "40.26839828491211", + "longitude_deg": "-83.22160339355469", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ostrander", + "scheduled_service": "no", + "gps_code": "OI85", + "local_code": "OI85" + }, + { + "id": "23730", + "ident": "OI86", + "type": "heliport", + "name": "Robinson Memorial Hospital Heliport", + "latitude_deg": "41.176399231", + "longitude_deg": "-81.2492980957", + "elevation_ft": "1126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ravenna", + "scheduled_service": "no", + "gps_code": "OI86", + "local_code": "OI86" + }, + { + "id": "23731", + "ident": "OI87", + "type": "heliport", + "name": "Firelands Regional Medical Center Heliport", + "latitude_deg": "41.446894", + "longitude_deg": "-82.711172", + "elevation_ft": "593", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Sandusky", + "scheduled_service": "no", + "gps_code": "OI87", + "local_code": "OI87" + }, + { + "id": "23732", + "ident": "OI88", + "type": "small_airport", + "name": "Mindzak Airfield", + "latitude_deg": "41.011199951171875", + "longitude_deg": "-82.43599700927734", + "elevation_ft": "1109", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Greenwich", + "scheduled_service": "no", + "gps_code": "OI88", + "local_code": "OI88" + }, + { + "id": "23733", + "ident": "OI89", + "type": "small_airport", + "name": "Mite Airport", + "latitude_deg": "39.64950180053711", + "longitude_deg": "-84.62999725341797", + "elevation_ft": "866", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Camden", + "scheduled_service": "no", + "gps_code": "OI89", + "local_code": "OI89" + }, + { + "id": "23734", + "ident": "OI90", + "type": "closed", + "name": "Sheriff's Heliport", + "latitude_deg": "40.614201", + "longitude_deg": "-83.108498", + "elevation_ft": "991", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Marion", + "scheduled_service": "no", + "keywords": "OI90" + }, + { + "id": "23735", + "ident": "OI91", + "type": "small_airport", + "name": "Hammond Airport", + "latitude_deg": "39.779701232910156", + "longitude_deg": "-83.9092025756836", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Yellow Springs", + "scheduled_service": "no", + "gps_code": "OI91", + "local_code": "OI91" + }, + { + "id": "23736", + "ident": "OI92", + "type": "closed", + "name": "Conklin Airport", + "latitude_deg": "41.391701", + "longitude_deg": "-83.7033", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bowling Green", + "scheduled_service": "no", + "keywords": "OI92" + }, + { + "id": "23737", + "ident": "OI93", + "type": "heliport", + "name": "Alaimo's Heliport", + "latitude_deg": "41.3400993347168", + "longitude_deg": "-81.61009979248047", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Brecksville", + "scheduled_service": "no", + "gps_code": "OI93", + "local_code": "OI93" + }, + { + "id": "23738", + "ident": "OI94", + "type": "heliport", + "name": "9 Newsport Heliport", + "latitude_deg": "39.08340072631836", + "longitude_deg": "-84.51239776611328", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cincinnati", + "scheduled_service": "no", + "gps_code": "OI94", + "local_code": "OI94" + }, + { + "id": "23739", + "ident": "OI95", + "type": "heliport", + "name": "Children's Hospital Heliport", + "latitude_deg": "39.95370101928711", + "longitude_deg": "-82.9813003540039", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "OI95", + "local_code": "OI95" + }, + { + "id": "23740", + "ident": "OI96", + "type": "heliport", + "name": "National Heliport", + "latitude_deg": "39.93510055541992", + "longitude_deg": "-82.83180236816406", + "elevation_ft": "798", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "OI96", + "local_code": "OI96" + }, + { + "id": "23741", + "ident": "OI97", + "type": "heliport", + "name": "St. Ann's Heliport", + "latitude_deg": "40.113399505615234", + "longitude_deg": "-82.94409942626953", + "elevation_ft": "806", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Westerville", + "scheduled_service": "no", + "gps_code": "OI97", + "local_code": "OI97" + }, + { + "id": "23742", + "ident": "OI98", + "type": "heliport", + "name": "St. Luke's Solon Emergency Center Heliport", + "latitude_deg": "41.390098571777344", + "longitude_deg": "-81.44509887695312", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Solon", + "scheduled_service": "no", + "gps_code": "OI98", + "local_code": "OI98" + }, + { + "id": "23743", + "ident": "OI99", + "type": "closed", + "name": "Mulholland Airport", + "latitude_deg": "40.573399", + "longitude_deg": "-84.489998", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Celina", + "scheduled_service": "no", + "keywords": "OI99" + }, + { + "id": "5130", + "ident": "OIAA", + "type": "medium_airport", + "name": "Abadan Airport", + "latitude_deg": "30.367887", + "longitude_deg": "48.230075", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-06", + "municipality": "Abadan", + "scheduled_service": "yes", + "gps_code": "OIAA", + "iata_code": "ABD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abadan_Airport" + }, + { + "id": "5131", + "ident": "OIAD", + "type": "medium_airport", + "name": "Dezful Airport", + "latitude_deg": "32.434399", + "longitude_deg": "48.397598", + "elevation_ft": "474", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-06", + "municipality": "Dezful", + "scheduled_service": "yes", + "gps_code": "OIAD", + "iata_code": "DEF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dezful_Airport", + "keywords": "Vahdati Air Base" + }, + { + "id": "5132", + "ident": "OIAG", + "type": "medium_airport", + "name": "Aghajari Airport", + "latitude_deg": "30.7444", + "longitude_deg": "49.6772", + "elevation_ft": "88", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-06", + "municipality": "Aghajari", + "scheduled_service": "no", + "gps_code": "OIAG", + "iata_code": "AKW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aghajari_Airport" + }, + { + "id": "5133", + "ident": "OIAH", + "type": "medium_airport", + "name": "Gachsaran Airport", + "latitude_deg": "30.333869", + "longitude_deg": "50.833796", + "elevation_ft": "2414", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-17", + "municipality": "Gachsaran", + "scheduled_service": "no", + "gps_code": "OIAH", + "iata_code": "GCH" + }, + { + "id": "5134", + "ident": "OIAI", + "type": "medium_airport", + "name": "Shahid Asiyaee Airport", + "latitude_deg": "32.001719", + "longitude_deg": "49.268599", + "elevation_ft": "1206", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-06", + "municipality": "Masjed Soleyman", + "scheduled_service": "no", + "gps_code": "OIAI", + "iata_code": "QMJ", + "keywords": "Shahid Asyaee" + }, + { + "id": "5135", + "ident": "OIAJ", + "type": "small_airport", + "name": "Omidiyeh Airport", + "latitude_deg": "30.8351993560791", + "longitude_deg": "49.5349006652832", + "elevation_ft": "85", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-06", + "municipality": "Omidiyeh", + "scheduled_service": "no", + "gps_code": "OIAJ", + "iata_code": "OMI" + }, + { + "id": "5136", + "ident": "OIAM", + "type": "medium_airport", + "name": "Mahshahr Airport", + "latitude_deg": "30.5562", + "longitude_deg": "49.151901", + "elevation_ft": "8", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-06", + "municipality": "Mahshahr", + "scheduled_service": "yes", + "gps_code": "OIAM", + "iata_code": "MRX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mahshahr_Airport" + }, + { + "id": "5137", + "ident": "OIAW", + "type": "medium_airport", + "name": "Lieutenant General Qasem Soleimani International Airport", + "latitude_deg": "31.3374", + "longitude_deg": "48.762001", + "elevation_ft": "66", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-06", + "municipality": "Ahvaz", + "scheduled_service": "yes", + "gps_code": "OIAW", + "iata_code": "AWZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ahvaz_International_Airport", + "keywords": "Ahvaz, Ahvaz International Airport, Ahwaz" + }, + { + "id": "5138", + "ident": "OIBA", + "type": "medium_airport", + "name": "Abu Musa Island Airport", + "latitude_deg": "25.8757", + "longitude_deg": "55.033001", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Abu Musa", + "scheduled_service": "yes", + "gps_code": "OIBA", + "iata_code": "AEU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abu_Musa_Airport" + }, + { + "id": "5139", + "ident": "OIBB", + "type": "medium_airport", + "name": "Bushehr Airport", + "latitude_deg": "28.9447994232", + "longitude_deg": "50.8345985413", + "elevation_ft": "68", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-18", + "municipality": "Bushehr", + "scheduled_service": "yes", + "gps_code": "OIBB", + "iata_code": "BUZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bushehr_Airport" + }, + { + "id": "5140", + "ident": "OIBH", + "type": "small_airport", + "name": "Bastak Airport", + "latitude_deg": "27.21269989013672", + "longitude_deg": "54.318599700927734", + "elevation_ft": "1350", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "scheduled_service": "no", + "gps_code": "OIBH" + }, + { + "id": "5141", + "ident": "OIBI", + "type": "closed", + "name": "Asaloyeh Airport", + "latitude_deg": "27.4814", + "longitude_deg": "52.615501", + "elevation_ft": "15", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-18", + "municipality": "Asaloyeh", + "scheduled_service": "no", + "gps_code": "OIBI", + "iata_code": "YEH", + "local_code": "OI15", + "wikipedia_link": "https://en.wikipedia.org/wiki/Asalouyeh_Airport", + "keywords": "AOY" + }, + { + "id": "5142", + "ident": "OIBJ", + "type": "medium_airport", + "name": "Jam Airport", + "latitude_deg": "27.820499420166016", + "longitude_deg": "52.35219955444336", + "elevation_ft": "2173", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-18", + "municipality": "Kangan", + "scheduled_service": "no", + "gps_code": "OIBJ", + "iata_code": "KNR", + "keywords": "Tohid, OIBM" + }, + { + "id": "5143", + "ident": "OIBK", + "type": "medium_airport", + "name": "Kish International Airport", + "latitude_deg": "26.5261993408", + "longitude_deg": "53.980201721200004", + "elevation_ft": "101", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Kish Island", + "scheduled_service": "yes", + "gps_code": "OIBK", + "iata_code": "KIH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kish_Airport" + }, + { + "id": "5144", + "ident": "OIBL", + "type": "medium_airport", + "name": "Bandar Lengeh International Airport", + "latitude_deg": "26.532283", + "longitude_deg": "54.82484", + "elevation_ft": "67", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Bandar Lengeh", + "scheduled_service": "yes", + "gps_code": "OIBL", + "iata_code": "BDH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bandar_Lengeh_Airport" + }, + { + "id": "42510", + "ident": "OIBN", + "type": "closed", + "name": "Borazjan Airport", + "latitude_deg": "29.266666", + "longitude_deg": "51.200001", + "elevation_ft": "265", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-18", + "municipality": "Borazjan", + "scheduled_service": "no", + "gps_code": "OIBN" + }, + { + "id": "5145", + "ident": "OIBP", + "type": "medium_airport", + "name": "Persian Gulf International Airport", + "latitude_deg": "27.379601", + "longitude_deg": "52.737701", + "elevation_ft": "27", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-18", + "municipality": "Asalouyeh", + "scheduled_service": "yes", + "gps_code": "OIBP", + "iata_code": "PGU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Persian_Gulf_Airport", + "keywords": "Khalije Fars, PSEEZ, Bandar Asalouyeh, Pars-Special-Zone, عسلویه" + }, + { + "id": "5146", + "ident": "OIBQ", + "type": "medium_airport", + "name": "Khark Island Airport", + "latitude_deg": "29.2603", + "longitude_deg": "50.323898", + "elevation_ft": "17", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-18", + "municipality": "Khark", + "scheduled_service": "no", + "gps_code": "OIBQ", + "iata_code": "KHK" + }, + { + "id": "5147", + "ident": "OIBS", + "type": "medium_airport", + "name": "Siri Airport", + "latitude_deg": "25.908899", + "longitude_deg": "54.539398", + "elevation_ft": "43", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Siri", + "scheduled_service": "no", + "gps_code": "OIBS", + "iata_code": "SXI" + }, + { + "id": "5148", + "ident": "OIBV", + "type": "medium_airport", + "name": "Lavan Island Airport", + "latitude_deg": "26.810300827026367", + "longitude_deg": "53.356300354003906", + "elevation_ft": "76", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "scheduled_service": "no", + "gps_code": "OIBV", + "iata_code": "LVP" + }, + { + "id": "32755", + "ident": "OICB", + "type": "small_airport", + "name": "Baneh Airport", + "latitude_deg": "35.987701416015625", + "longitude_deg": "45.84709930419922", + "elevation_ft": "4911", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-12", + "municipality": "Baneh", + "scheduled_service": "no", + "gps_code": "OICB" + }, + { + "id": "5149", + "ident": "OICC", + "type": "medium_airport", + "name": "Shahid Ashrafi Esfahani Airport", + "latitude_deg": "34.3459014893", + "longitude_deg": "47.1581001282", + "elevation_ft": "4307", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-05", + "municipality": "Kermanshah", + "scheduled_service": "yes", + "gps_code": "OICC", + "iata_code": "KSH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shahid_Ashrafi_Esfahani_Airport" + }, + { + "id": "32101", + "ident": "OICD", + "type": "small_airport", + "name": "Abdanan Airport", + "latitude_deg": "32.93450164794922", + "longitude_deg": "47.4833984375", + "elevation_ft": "2600", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-16", + "municipality": "Abdanan", + "scheduled_service": "no", + "gps_code": "OICD" + }, + { + "id": "42511", + "ident": "OICG", + "type": "closed", + "name": "Qasr-e Shirin Airport", + "latitude_deg": "34.516666", + "longitude_deg": "45.566666", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-05", + "municipality": "Qasr-e Shirin", + "scheduled_service": "no", + "gps_code": "OICG" + }, + { + "id": "5150", + "ident": "OICI", + "type": "medium_airport", + "name": "Ilam Airport", + "latitude_deg": "33.58660125732422", + "longitude_deg": "46.40480041503906", + "elevation_ft": "4404", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-16", + "municipality": "Ilam", + "scheduled_service": "no", + "gps_code": "OICI", + "iata_code": "IIL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ilam_Airport" + }, + { + "id": "5151", + "ident": "OICK", + "type": "medium_airport", + "name": "Khoram Abad Airport", + "latitude_deg": "33.43539810180664", + "longitude_deg": "48.282901763916016", + "elevation_ft": "3782", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-15", + "scheduled_service": "yes", + "gps_code": "OICK", + "iata_code": "KHD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khorramabad_Airport" + }, + { + "id": "5152", + "ident": "OICS", + "type": "medium_airport", + "name": "Sanandaj Airport", + "latitude_deg": "35.24589920043945", + "longitude_deg": "47.00920104980469", + "elevation_ft": "4522", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-12", + "scheduled_service": "yes", + "gps_code": "OICS", + "iata_code": "SDG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sanandaj_Airport" + }, + { + "id": "42512", + "ident": "OICZ", + "type": "small_airport", + "name": "Aligoodarz Airport", + "latitude_deg": "33.38359832763672", + "longitude_deg": "49.6963996887207", + "elevation_ft": "6505", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-15", + "scheduled_service": "no", + "gps_code": "OICZ" + }, + { + "id": "5153", + "ident": "OIFE", + "type": "small_airport", + "name": "Hesa Airport", + "latitude_deg": "32.92890167236328", + "longitude_deg": "51.561100006103516", + "elevation_ft": "5256", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-10", + "municipality": "Hesa", + "scheduled_service": "no", + "gps_code": "OIFE", + "iata_code": "IFH" + }, + { + "id": "5154", + "ident": "OIFH", + "type": "small_airport", + "name": "Shahid Vatanpour Army Air Base", + "latitude_deg": "32.567166", + "longitude_deg": "51.69111", + "elevation_ft": "5310", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-10", + "municipality": "Esfahan", + "scheduled_service": "no", + "gps_code": "OIFH" + }, + { + "id": "5155", + "ident": "OIFK", + "type": "medium_airport", + "name": "Kashan Airport", + "latitude_deg": "33.895302", + "longitude_deg": "51.577", + "elevation_ft": "3465", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-10", + "municipality": "Kashan", + "scheduled_service": "yes", + "gps_code": "OIFK", + "iata_code": "KKS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kashan_Airport" + }, + { + "id": "5156", + "ident": "OIFM", + "type": "medium_airport", + "name": "Esfahan Shahid Beheshti International Airport", + "latitude_deg": "32.75080108642578", + "longitude_deg": "51.86130142211914", + "elevation_ft": "5059", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-10", + "municipality": "Isfahan", + "scheduled_service": "yes", + "gps_code": "OIFM", + "iata_code": "IFN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Isfahan_International_Airport", + "keywords": "Isfahan Shahid Beheshti" + }, + { + "id": "5157", + "ident": "OIFP", + "type": "medium_airport", + "name": "Badr Air Base", + "latitude_deg": "32.621101", + "longitude_deg": "51.696999", + "elevation_ft": "5242", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-10", + "municipality": "Esfahan", + "scheduled_service": "no", + "gps_code": "OIFP", + "keywords": "Sepah Air Base" + }, + { + "id": "5158", + "ident": "OIFS", + "type": "medium_airport", + "name": "Shahrekord Airport", + "latitude_deg": "32.2971992493", + "longitude_deg": "50.842201232899995", + "elevation_ft": "6723", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-14", + "municipality": "Shahrekord", + "scheduled_service": "no", + "gps_code": "OIFS", + "iata_code": "CQD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shahrekord_Airport" + }, + { + "id": "32102", + "ident": "OIFV", + "type": "small_airport", + "name": "Zarrinshahr Airport", + "latitude_deg": "32.32740020751953", + "longitude_deg": "51.37730026245117", + "elevation_ft": "5650", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-10", + "municipality": "Zarrinshahr", + "scheduled_service": "no", + "gps_code": "OIFV" + }, + { + "id": "5159", + "ident": "OIGG", + "type": "medium_airport", + "name": "Sardar-e-Jangal Airport", + "latitude_deg": "37.323333", + "longitude_deg": "49.617778", + "elevation_ft": "-40", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-01", + "municipality": "Rasht", + "scheduled_service": "yes", + "gps_code": "OIGG", + "iata_code": "RAS", + "home_link": "http://rasht.airport.ir/HomePage.aspx?site=rasht.airport&lang=fa-IR&tabid=0", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rasht_Airport" + }, + { + "id": "5160", + "ident": "OIHH", + "type": "medium_airport", + "name": "Hamadan Airport", + "latitude_deg": "34.869202", + "longitude_deg": "48.552502", + "elevation_ft": "5755", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-13", + "municipality": "Hamadan", + "scheduled_service": "yes", + "gps_code": "OIHH", + "iata_code": "HDM" + }, + { + "id": "42513", + "ident": "OIHM", + "type": "small_airport", + "name": "Malayer Airport", + "latitude_deg": "34.28333282470703", + "longitude_deg": "48.81666564941406", + "elevation_ft": "5662", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-13", + "municipality": "Malayer", + "scheduled_service": "no", + "gps_code": "OIHM" + }, + { + "id": "5161", + "ident": "OIHR", + "type": "small_airport", + "name": "Arak Airport", + "latitude_deg": "34.138099670410156", + "longitude_deg": "49.8473014831543", + "elevation_ft": "5440", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-00", + "municipality": "Araak", + "scheduled_service": "no", + "gps_code": "OIHR", + "iata_code": "AJK" + }, + { + "id": "5162", + "ident": "OIHS", + "type": "medium_airport", + "name": "Nojeh Air Base", + "latitude_deg": "35.211601", + "longitude_deg": "48.6534", + "elevation_ft": "5609", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-13", + "municipality": "Amirabad", + "scheduled_service": "no", + "gps_code": "OIHS", + "keywords": "Hamadan Air Base" + }, + { + "id": "5163", + "ident": "OIIA", + "type": "small_airport", + "name": "Qazvin Azadi Airport", + "latitude_deg": "35.952099", + "longitude_deg": "50.450802", + "elevation_ft": "3769", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-26", + "municipality": "Gharpuz Abad", + "scheduled_service": "no", + "gps_code": "OIIA" + }, + { + "id": "330558", + "ident": "OIIB", + "type": "small_airport", + "name": "Eyvanekey Aflak-e-Asia Airport", + "latitude_deg": "35.360351", + "longitude_deg": "51.98659", + "elevation_ft": "3363", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-20", + "municipality": "Eyvanekey", + "scheduled_service": "no", + "gps_code": "OIIB", + "home_link": "http://bpkh.co.ir/index.php/en/homepage/91-box/28-boland-parvaz-khavar-eyvanaki-airport", + "keywords": "Aflak Asia" + }, + { + "id": "5164", + "ident": "OIIC", + "type": "small_airport", + "name": "Kushke Nosrat Airport", + "latitude_deg": "34.984001", + "longitude_deg": "50.806198", + "elevation_ft": "3008", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-25", + "municipality": "Qāshqābolāq", + "scheduled_service": "no", + "gps_code": "OIIC", + "local_code": "OI1B" + }, + { + "id": "5165", + "ident": "OIID", + "type": "small_airport", + "name": "Doshan Tappeh Air Base", + "latitude_deg": "35.702999", + "longitude_deg": "51.475101", + "elevation_ft": "4046", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Tehran", + "scheduled_service": "no", + "gps_code": "OIID" + }, + { + "id": "5166", + "ident": "OIIE", + "type": "large_airport", + "name": "Imam Khomeini International Airport", + "latitude_deg": "35.416099548339844", + "longitude_deg": "51.152198791503906", + "elevation_ft": "3305", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Tehran", + "scheduled_service": "yes", + "gps_code": "OIIE", + "iata_code": "IKA", + "home_link": "http://www.ikia.ir/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Imam_Khomeini_International_Airport", + "keywords": "Ahmadabad" + }, + { + "id": "5167", + "ident": "OIIG", + "type": "closed", + "name": "Ghale Morghi Airport", + "latitude_deg": "35.644798", + "longitude_deg": "51.380699", + "elevation_ft": "3627", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Tehran", + "scheduled_service": "no", + "gps_code": "OIIG" + }, + { + "id": "5168", + "ident": "OIII", + "type": "large_airport", + "name": "Mehrabad International Airport", + "latitude_deg": "35.68920135498047", + "longitude_deg": "51.31340026855469", + "elevation_ft": "3962", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-23", + "municipality": "Tehran", + "scheduled_service": "yes", + "gps_code": "OIII", + "iata_code": "THR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mehrabad_International_Airport" + }, + { + "id": "5169", + "ident": "OIIK", + "type": "medium_airport", + "name": "Qazvin Airport", + "latitude_deg": "36.240101", + "longitude_deg": "50.0471", + "elevation_ft": "4184", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-26", + "municipality": "Qazvin", + "scheduled_service": "no", + "gps_code": "OIIK", + "iata_code": "GZW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qazvin_Airport", + "keywords": "Ghazvin" + }, + { + "id": "5170", + "ident": "OIIM", + "type": "medium_airport", + "name": "Naja Airport", + "latitude_deg": "35.776299", + "longitude_deg": "50.881001", + "elevation_ft": "4040", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-30", + "municipality": "Karaj", + "scheduled_service": "no", + "gps_code": "OIIM" + }, + { + "id": "5171", + "ident": "OIIP", + "type": "medium_airport", + "name": "Payam Karaj International Airport", + "latitude_deg": "35.7761", + "longitude_deg": "50.826698", + "elevation_ft": "4170", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-30", + "municipality": "Karaj", + "scheduled_service": "yes", + "gps_code": "OIIP", + "iata_code": "PYK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Payam_International_Airport" + }, + { + "id": "42514", + "ident": "OIIQ", + "type": "closed", + "name": "Qom International Airport (under contstruction)", + "latitude_deg": "34.58114", + "longitude_deg": "50.657481", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-25", + "municipality": "Qom", + "scheduled_service": "no", + "gps_code": "OIIQ" + }, + { + "id": "32103", + "ident": "OIIS", + "type": "small_airport", + "name": "Semnan Municipal Airport", + "latitude_deg": "35.591099", + "longitude_deg": "53.495098", + "elevation_ft": "3665", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-20", + "municipality": "Semnan", + "scheduled_service": "yes", + "gps_code": "OIIS", + "iata_code": "SNX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Semnan_Municipal_Airport" + }, + { + "id": "42515", + "ident": "OIIU", + "type": "closed", + "name": "Damghan Airport", + "latitude_deg": "36.166698", + "longitude_deg": "54.343899", + "elevation_ft": "3887", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-20", + "municipality": "Damghan", + "scheduled_service": "no", + "gps_code": "OIIU" + }, + { + "id": "5172", + "ident": "OIKB", + "type": "medium_airport", + "name": "Bandar Abbas International Airport", + "latitude_deg": "27.218299865722656", + "longitude_deg": "56.37779998779297", + "elevation_ft": "22", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Bandar Abbas", + "scheduled_service": "yes", + "gps_code": "OIKB", + "iata_code": "BND", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bandar_Abbas_International_Airport" + }, + { + "id": "42516", + "ident": "OIKF", + "type": "closed", + "name": "Baft Airport", + "latitude_deg": "29.2342", + "longitude_deg": "56.606899", + "elevation_ft": "7385", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-08", + "municipality": "Baft", + "scheduled_service": "no", + "gps_code": "OIKF" + }, + { + "id": "5173", + "ident": "OIKJ", + "type": "medium_airport", + "name": "Jiroft Airport", + "latitude_deg": "28.723519", + "longitude_deg": "57.675037", + "elevation_ft": "2663", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-08", + "municipality": "Jiroft", + "scheduled_service": "no", + "gps_code": "OIKJ", + "iata_code": "JYR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jiroft_Airport", + "keywords": "Sabzevaran" + }, + { + "id": "5174", + "ident": "OIKK", + "type": "medium_airport", + "name": "Ayatollah Hashemi Rafsanjani International Airport", + "latitude_deg": "30.274401", + "longitude_deg": "56.951099", + "elevation_ft": "5741", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-08", + "municipality": "Kerman", + "scheduled_service": "yes", + "gps_code": "OIKK", + "iata_code": "KER", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kerman_Airport" + }, + { + "id": "5175", + "ident": "OIKM", + "type": "medium_airport", + "name": "Bam Airport", + "latitude_deg": "29.0842", + "longitude_deg": "58.450001", + "elevation_ft": "3231", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-08", + "municipality": "Bam", + "scheduled_service": "yes", + "gps_code": "OIKM", + "iata_code": "BXR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bam_Airport" + }, + { + "id": "5176", + "ident": "OIKP", + "type": "small_airport", + "name": "Havadarya Airport", + "latitude_deg": "27.1583", + "longitude_deg": "56.172501", + "elevation_ft": "19", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Bandar Abbas", + "scheduled_service": "no", + "gps_code": "OIKP", + "iata_code": "HDR" + }, + { + "id": "35276", + "ident": "OIKQ", + "type": "small_airport", + "name": "Qeshm Dayrestan International Airport", + "latitude_deg": "26.754639", + "longitude_deg": "55.902353", + "elevation_ft": "45", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Dayrestan", + "scheduled_service": "yes", + "gps_code": "OIKQ", + "iata_code": "GSM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qeshm_International_Airport", + "keywords": "Qeshm Island" + }, + { + "id": "5178", + "ident": "OIKR", + "type": "medium_airport", + "name": "Rafsanjan Airport", + "latitude_deg": "30.298345", + "longitude_deg": "56.048979", + "elevation_ft": "5298", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-08", + "municipality": "Rafsanjan", + "scheduled_service": "yes", + "gps_code": "OIKR", + "iata_code": "RJN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rafsanjan_Airport" + }, + { + "id": "5179", + "ident": "OIKY", + "type": "medium_airport", + "name": "Sirjan Airport", + "latitude_deg": "29.5509", + "longitude_deg": "55.672699", + "elevation_ft": "5846", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-08", + "municipality": "Sirjan", + "scheduled_service": "no", + "gps_code": "OIKY", + "iata_code": "SYJ" + }, + { + "id": "5180", + "ident": "OIMB", + "type": "medium_airport", + "name": "Birjand International Airport", + "latitude_deg": "32.896525", + "longitude_deg": "59.281258", + "elevation_ft": "4952", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-29", + "municipality": "Birjand", + "scheduled_service": "yes", + "gps_code": "OIMB", + "iata_code": "XBJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Birjand_Airport" + }, + { + "id": "5181", + "ident": "OIMC", + "type": "medium_airport", + "name": "Sarakhs Airport", + "latitude_deg": "36.50120162963867", + "longitude_deg": "61.06489944458008", + "elevation_ft": "945", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-09", + "municipality": "Sarakhs", + "scheduled_service": "no", + "gps_code": "OIMC", + "iata_code": "CKT" + }, + { + "id": "42517", + "ident": "OIMD", + "type": "small_airport", + "name": "Gonabad Airport", + "latitude_deg": "34.349998474121094", + "longitude_deg": "58.68000030517578", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-09", + "municipality": "Gonabad", + "scheduled_service": "no", + "gps_code": "OIMD", + "keywords": "Gulnabad, Goonabad, Juymand, گناباد" + }, + { + "id": "42518", + "ident": "OIMH", + "type": "small_airport", + "name": "Torbat-e Heydarieh Airport", + "latitude_deg": "35.266700744628906", + "longitude_deg": "59.21670150756836", + "elevation_ft": "4363", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-09", + "municipality": "Torbat-E-Heidarieh", + "scheduled_service": "no", + "gps_code": "OIMH", + "keywords": "Torbat-E-Heidarieh" + }, + { + "id": "5182", + "ident": "OIMJ", + "type": "small_airport", + "name": "Shahrud International Airport", + "latitude_deg": "36.425301", + "longitude_deg": "55.104198", + "elevation_ft": "4215", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-20", + "municipality": "Shahrud", + "scheduled_service": "no", + "gps_code": "OIMJ", + "iata_code": "RUD" + }, + { + "id": "5183", + "ident": "OIMM", + "type": "large_airport", + "name": "Mashhad International Airport", + "latitude_deg": "36.235198974609375", + "longitude_deg": "59.64099884033203", + "elevation_ft": "3263", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-09", + "municipality": "Mashhad", + "scheduled_service": "yes", + "gps_code": "OIMM", + "iata_code": "MHD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mashhad_International_Airport", + "keywords": "Shahid Hashemi Nejad Airport" + }, + { + "id": "5184", + "ident": "OIMN", + "type": "medium_airport", + "name": "Bojnord Airport", + "latitude_deg": "37.49300003051758", + "longitude_deg": "57.30820083618164", + "elevation_ft": "3499", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-28", + "municipality": "Bojnord", + "scheduled_service": "yes", + "gps_code": "OIMN", + "iata_code": "BJB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bojnourd_Airport", + "keywords": "Bojnourd" + }, + { + "id": "5185", + "ident": "OIMS", + "type": "medium_airport", + "name": "Sabzevar National Airport", + "latitude_deg": "36.16809844970703", + "longitude_deg": "57.59519958496094", + "elevation_ft": "3010", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-09", + "municipality": "Sabzevar", + "scheduled_service": "yes", + "gps_code": "OIMS", + "iata_code": "AFZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sabzevar_Airport" + }, + { + "id": "5186", + "ident": "OIMT", + "type": "medium_airport", + "name": "Tabas Airport", + "latitude_deg": "33.6678009033", + "longitude_deg": "56.8927001953", + "elevation_ft": "2312", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-21", + "municipality": "Tabas", + "scheduled_service": "no", + "gps_code": "OIMT", + "iata_code": "TCX" + }, + { + "id": "32104", + "ident": "OIMX", + "type": "small_airport", + "name": "Soga Airport", + "latitude_deg": "37.627899", + "longitude_deg": "56.1731", + "elevation_ft": "2460", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-27", + "municipality": "Soga", + "scheduled_service": "no", + "gps_code": "OIMX" + }, + { + "id": "42519", + "ident": "OINA", + "type": "closed", + "name": "Amol Airport", + "latitude_deg": "36.470798", + "longitude_deg": "52.3633", + "elevation_ft": "318", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-02", + "municipality": "Amol", + "scheduled_service": "no", + "gps_code": "OINA" + }, + { + "id": "42520", + "ident": "OINB", + "type": "closed", + "name": "Babolsar Airport", + "latitude_deg": "36.711263", + "longitude_deg": "52.679699", + "elevation_ft": "-49", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-02", + "municipality": "Babolsar", + "scheduled_service": "no", + "gps_code": "OINB" + }, + { + "id": "5187", + "ident": "OINE", + "type": "small_airport", + "name": "Kalaleh Airport", + "latitude_deg": "37.3833007812", + "longitude_deg": "55.4519996643", + "elevation_ft": "425", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-27", + "municipality": "Kalaleh", + "scheduled_service": "no", + "gps_code": "OINE", + "iata_code": "KLM" + }, + { + "id": "5188", + "ident": "OING", + "type": "medium_airport", + "name": "Gorgan Airport", + "latitude_deg": "36.909400939899996", + "longitude_deg": "54.4012985229", + "elevation_ft": "-24", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-27", + "municipality": "Gorgan", + "scheduled_service": "no", + "gps_code": "OING", + "iata_code": "GBT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gorgan_Airport" + }, + { + "id": "42521", + "ident": "OINH", + "type": "closed", + "name": "Behshahr Airport", + "latitude_deg": "36.694401", + "longitude_deg": "53.5425", + "elevation_ft": "137", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-02", + "municipality": "Behshahr", + "scheduled_service": "no", + "gps_code": "OINH" + }, + { + "id": "42522", + "ident": "OINI", + "type": "closed", + "name": "Ghaem Shahr Airport", + "latitude_deg": "36.466667", + "longitude_deg": "52.866669", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-02", + "municipality": "Ghaem Shahr", + "scheduled_service": "no", + "gps_code": "OINI" + }, + { + "id": "5189", + "ident": "OINJ", + "type": "small_airport", + "name": "Bishe Kola Air Base", + "latitude_deg": "36.65510177612305", + "longitude_deg": "52.34960174560547", + "elevation_ft": "-79", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-02", + "municipality": "Amol", + "scheduled_service": "no", + "gps_code": "OINJ", + "iata_code": "BSM" + }, + { + "id": "42523", + "ident": "OINM", + "type": "small_airport", + "name": "Mahmood Abad Airport", + "latitude_deg": "34.169166564941406", + "longitude_deg": "51.317501068115234", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-10", + "municipality": "Mahmood Abad", + "scheduled_service": "no", + "gps_code": "OINM" + }, + { + "id": "5190", + "ident": "OINN", + "type": "medium_airport", + "name": "Nowshahr Airport", + "latitude_deg": "36.664286", + "longitude_deg": "51.46273", + "elevation_ft": "-61", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-02", + "municipality": "Nowshahr", + "scheduled_service": "yes", + "gps_code": "OINN", + "iata_code": "NSH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Noshahr_Airport", + "keywords": "Noshahr" + }, + { + "id": "5191", + "ident": "OINR", + "type": "medium_airport", + "name": "Ramsar Airport", + "latitude_deg": "36.90701", + "longitude_deg": "50.687316", + "elevation_ft": "-70", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-02", + "municipality": "Ramsar", + "scheduled_service": "yes", + "gps_code": "OINR", + "iata_code": "RZR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ramsar_Airport" + }, + { + "id": "5192", + "ident": "OINZ", + "type": "medium_airport", + "name": "Sari Dasht-e Naz International Airport", + "latitude_deg": "36.644408", + "longitude_deg": "53.188761", + "elevation_ft": "35", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-02", + "municipality": "Sari", + "scheduled_service": "yes", + "gps_code": "OINZ", + "iata_code": "SRY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dasht-e_Naz_Airport" + }, + { + "id": "42524", + "ident": "OISA", + "type": "small_airport", + "name": "North of Fars Airport", + "latitude_deg": "31.0355", + "longitude_deg": "52.7866", + "elevation_ft": "5320", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-07", + "municipality": "Abadeh/Eghlid", + "scheduled_service": "no", + "gps_code": "OISA" + }, + { + "id": "32105", + "ident": "OISD", + "type": "small_airport", + "name": "Darab Airport", + "latitude_deg": "28.721599578857422", + "longitude_deg": "54.44129943847656", + "elevation_ft": "3600", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-07", + "municipality": "Darab", + "scheduled_service": "no", + "gps_code": "OISD" + }, + { + "id": "5193", + "ident": "OISF", + "type": "medium_airport", + "name": "Fasa Airport", + "latitude_deg": "28.891799926757812", + "longitude_deg": "53.72330093383789", + "elevation_ft": "4261", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-07", + "municipality": "Fasa", + "scheduled_service": "no", + "gps_code": "OISF", + "iata_code": "FAZ" + }, + { + "id": "5194", + "ident": "OISJ", + "type": "small_airport", + "name": "Jahrom Airport", + "latitude_deg": "28.586700439499996", + "longitude_deg": "53.5791015625", + "elevation_ft": "3358", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-07", + "municipality": "Jahrom", + "scheduled_service": "no", + "gps_code": "OISJ", + "iata_code": "JAR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jahrom_Airport" + }, + { + "id": "5195", + "ident": "OISL", + "type": "medium_airport", + "name": "Lar Airport", + "latitude_deg": "27.6747", + "longitude_deg": "54.383301", + "elevation_ft": "2641", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-07", + "municipality": "Lar", + "scheduled_service": "yes", + "gps_code": "OISL", + "iata_code": "LRR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Larestan_International_Airport" + }, + { + "id": "32106", + "ident": "OISO", + "type": "small_airport", + "name": "Zargan Airport", + "latitude_deg": "29.754199981689453", + "longitude_deg": "52.69430160522461", + "elevation_ft": "5500", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-07", + "municipality": "Zargan", + "scheduled_service": "no", + "gps_code": "OISO" + }, + { + "id": "5196", + "ident": "OISR", + "type": "medium_airport", + "name": "Lamerd Airport", + "latitude_deg": "27.3727", + "longitude_deg": "53.188801", + "elevation_ft": "1337", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-07", + "municipality": "Lamerd", + "scheduled_service": "yes", + "gps_code": "OISR", + "iata_code": "LFM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lamerd_Airport" + }, + { + "id": "5197", + "ident": "OISS", + "type": "large_airport", + "name": "Shiraz Shahid Dastghaib International Airport", + "latitude_deg": "29.5392", + "longitude_deg": "52.589802", + "elevation_ft": "4927", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-07", + "municipality": "Shiraz", + "scheduled_service": "yes", + "gps_code": "OISS", + "iata_code": "SYZ", + "home_link": "http://shirazairport.ir/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shiraz_International_Airport" + }, + { + "id": "5198", + "ident": "OISY", + "type": "medium_airport", + "name": "Yasouj Airport", + "latitude_deg": "30.700500488281", + "longitude_deg": "51.545101165771", + "elevation_ft": "5939", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-17", + "municipality": "Yasouj", + "scheduled_service": "no", + "gps_code": "OISY", + "iata_code": "YES", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yasuj_Airport", + "keywords": "Yasuj" + }, + { + "id": "5199", + "ident": "OITK", + "type": "small_airport", + "name": "Khoy Airport", + "latitude_deg": "38.4275016784668", + "longitude_deg": "44.97359848022461", + "elevation_ft": "3981", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-04", + "municipality": "Khoy", + "scheduled_service": "no", + "gps_code": "OITK", + "iata_code": "KHY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khoy_Airport" + }, + { + "id": "5200", + "ident": "OITL", + "type": "medium_airport", + "name": "Ardabil Airport", + "latitude_deg": "38.3256988525", + "longitude_deg": "48.4244003296", + "elevation_ft": "4315", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-24", + "municipality": "Ardabil", + "scheduled_service": "yes", + "gps_code": "OITL", + "iata_code": "ADU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ardabil_Airport" + }, + { + "id": "5201", + "ident": "OITM", + "type": "small_airport", + "name": "Sahand Airport", + "latitude_deg": "37.347999572753906", + "longitude_deg": "46.127899169921875", + "elevation_ft": "4396", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-03", + "municipality": "Maragheh", + "scheduled_service": "no", + "gps_code": "OITM", + "iata_code": "ACP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sahand_Airport", + "keywords": "Maragheh Highway Strip" + }, + { + "id": "5202", + "ident": "OITP", + "type": "small_airport", + "name": "Parsabad-Moghan Airport", + "latitude_deg": "39.6036", + "longitude_deg": "47.8815", + "elevation_ft": "251", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-24", + "municipality": "Parsabad", + "scheduled_service": "yes", + "gps_code": "OITP", + "iata_code": "PFQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Parsabad-Moghan_Airport" + }, + { + "id": "5203", + "ident": "OITR", + "type": "medium_airport", + "name": "Urmia Airport", + "latitude_deg": "37.6680984497", + "longitude_deg": "45.0686988831", + "elevation_ft": "4343", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-04", + "municipality": "Urmia", + "scheduled_service": "yes", + "gps_code": "OITR", + "iata_code": "OMH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Urmia_Airport" + }, + { + "id": "42525", + "ident": "OITS", + "type": "small_airport", + "name": "Saghez Airport", + "latitude_deg": "36.218333", + "longitude_deg": "46.298889", + "elevation_ft": "4880", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-12", + "municipality": "Saghez", + "scheduled_service": "no", + "gps_code": "OITS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saqqez_Airport", + "keywords": "Saqqez" + }, + { + "id": "5204", + "ident": "OITT", + "type": "medium_airport", + "name": "Tabriz International Airport", + "latitude_deg": "38.1339", + "longitude_deg": "46.235001", + "elevation_ft": "4459", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-03", + "municipality": "Tabriz", + "scheduled_service": "yes", + "gps_code": "OITT", + "iata_code": "TBZ", + "home_link": "http://www.tabrizairport.ir/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tabriz_International_Airport", + "keywords": "IRIAF" + }, + { + "id": "42526", + "ident": "OITU", + "type": "small_airport", + "name": "Maku National Airport", + "latitude_deg": "39.330002", + "longitude_deg": "44.43", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-04", + "municipality": "Showt", + "scheduled_service": "no", + "gps_code": "OITU", + "iata_code": "IMQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maku_International_Airport", + "keywords": "Makou" + }, + { + "id": "5205", + "ident": "OITZ", + "type": "medium_airport", + "name": "Zanjan Airport", + "latitude_deg": "36.7737007141", + "longitude_deg": "48.3594017029", + "elevation_ft": "5382", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-19", + "municipality": "Zanjan", + "scheduled_service": "no", + "gps_code": "OITZ", + "iata_code": "JWN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zanjan_Airport" + }, + { + "id": "42527", + "ident": "OIYB", + "type": "small_airport", + "name": "Bafgh Airport", + "latitude_deg": "31.583332061799997", + "longitude_deg": "55.566665649399994", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-21", + "municipality": "Bafgh", + "scheduled_service": "no", + "gps_code": "OIYB" + }, + { + "id": "5206", + "ident": "OIYY", + "type": "medium_airport", + "name": "Shahid Sadooghi Airport", + "latitude_deg": "31.9048995972", + "longitude_deg": "54.2765007019", + "elevation_ft": "4054", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-21", + "municipality": "Yazd", + "scheduled_service": "yes", + "gps_code": "OIYY", + "iata_code": "AZD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shahid_Sadooghi_Airport" + }, + { + "id": "5207", + "ident": "OIZB", + "type": "medium_airport", + "name": "Zabol Airport", + "latitude_deg": "31.098301", + "longitude_deg": "61.5439", + "elevation_ft": "1628", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-11", + "municipality": "Zabol", + "scheduled_service": "no", + "gps_code": "OIZB", + "iata_code": "ACZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zabol_Airport" + }, + { + "id": "5208", + "ident": "OIZC", + "type": "medium_airport", + "name": "Chabahar Konarak International Airport", + "latitude_deg": "25.44573", + "longitude_deg": "60.38246", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-11", + "municipality": "Konarak", + "scheduled_service": "yes", + "gps_code": "OIZC", + "iata_code": "ZBR", + "local_code": "ZBR" + }, + { + "id": "5209", + "ident": "OIZH", + "type": "medium_airport", + "name": "Zahedan International Airport", + "latitude_deg": "29.47570037841797", + "longitude_deg": "60.90620040893555", + "elevation_ft": "4564", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-11", + "municipality": "Zahedan", + "scheduled_service": "yes", + "gps_code": "OIZH", + "iata_code": "ZAH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zahedan_International_Airport" + }, + { + "id": "5210", + "ident": "OIZI", + "type": "medium_airport", + "name": "Iranshahr Airport", + "latitude_deg": "27.236099", + "longitude_deg": "60.720001", + "elevation_ft": "2040", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-11", + "municipality": "Iranshahr", + "scheduled_service": "no", + "gps_code": "OIZI", + "iata_code": "IHR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iranshahr_Airport" + }, + { + "id": "32107", + "ident": "OIZJ", + "type": "small_airport", + "name": "Jask Airport", + "latitude_deg": "25.653601", + "longitude_deg": "57.799301", + "elevation_ft": "19", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-22", + "municipality": "Bandar-e-Jask", + "scheduled_service": "yes", + "gps_code": "OIZJ", + "iata_code": "JSK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jask_Airport" + }, + { + "id": "5211", + "ident": "OIZS", + "type": "small_airport", + "name": "Saravan Airport", + "latitude_deg": "27.4193", + "longitude_deg": "62.3158", + "elevation_ft": "3930", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-11", + "municipality": "Saravan", + "scheduled_service": "no", + "gps_code": "OIZS" + }, + { + "id": "3353", + "ident": "OJ38", + "type": "small_airport", + "name": "Zarqa Airport", + "latitude_deg": "32.025299072265625", + "longitude_deg": "36.144798278808594", + "elevation_ft": "2400", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-AZ", + "municipality": "Zarqa", + "scheduled_service": "no", + "gps_code": "OJ38", + "local_code": "OJ38" + }, + { + "id": "5212", + "ident": "OJAI", + "type": "large_airport", + "name": "Queen Alia International Airport", + "latitude_deg": "31.7226009369", + "longitude_deg": "35.9931983948", + "elevation_ft": "2395", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-AM", + "municipality": "Amman", + "scheduled_service": "yes", + "gps_code": "OJAI", + "iata_code": "AMM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Queen_Alia_International_Airport" + }, + { + "id": "5213", + "ident": "OJAM", + "type": "medium_airport", + "name": "Amman Civil (Marka International) Airport", + "latitude_deg": "31.9727", + "longitude_deg": "35.9916", + "elevation_ft": "2555", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-AM", + "municipality": "Amman", + "scheduled_service": "yes", + "gps_code": "OJAM", + "iata_code": "ADJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amman_Civil_Airport", + "keywords": "King Abdullah Air Base" + }, + { + "id": "5214", + "ident": "OJAQ", + "type": "medium_airport", + "name": "Aqaba King Hussein International Airport", + "latitude_deg": "29.611600875854492", + "longitude_deg": "35.01810073852539", + "elevation_ft": "175", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-AQ", + "municipality": "Aqaba", + "scheduled_service": "yes", + "gps_code": "OJAQ", + "iata_code": "AQJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aqaba_Airport" + }, + { + "id": "5215", + "ident": "OJHF", + "type": "small_airport", + "name": "Prince Hassan Air Base", + "latitude_deg": "32.160702", + "longitude_deg": "37.149399", + "elevation_ft": "2220", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-MA", + "scheduled_service": "no", + "gps_code": "OJHF", + "home_link": "http://www.rjaf.mil.jo/index.php/en/en/.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Prince_Hassan_Air_Base", + "keywords": "H5" + }, + { + "id": "5216", + "ident": "OJHR", + "type": "small_airport", + "name": "H4 Air Base", + "latitude_deg": "32.5392", + "longitude_deg": "38.195", + "elevation_ft": "2250", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-MA", + "scheduled_service": "no", + "gps_code": "OJHR", + "wikipedia_link": "https://en.wikipedia.org/wiki/H-4_Air_Base" + }, + { + "id": "5217", + "ident": "OJJR", + "type": "closed", + "name": "Jerusalem International Airport", + "latitude_deg": "31.866414", + "longitude_deg": "35.217753", + "elevation_ft": "2485", + "continent": "AS", + "iso_country": "PS", + "iso_region": "PS-U-A", + "municipality": "Jerusalem", + "scheduled_service": "no", + "gps_code": "LLJR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atarot_Airport", + "keywords": "Palestine, West Bank, Atarot Airport, LLJR, OJJR, JRS" + }, + { + "id": "5218", + "ident": "OJMF", + "type": "small_airport", + "name": "King Hussein Air College", + "latitude_deg": "32.3564", + "longitude_deg": "36.259201", + "elevation_ft": "2240", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-MA", + "municipality": "Mafraq", + "scheduled_service": "no", + "gps_code": "OJMF", + "iata_code": "OMF", + "wikipedia_link": "https://en.wikipedia.org/wiki/King_Hussein_Air_Base" + }, + { + "id": "3354", + "ident": "OJMS", + "type": "medium_airport", + "name": "Muwaffaq Salti Air Base", + "latitude_deg": "31.8256", + "longitude_deg": "36.782001", + "elevation_ft": "1706", + "continent": "AS", + "iso_country": "JO", + "iso_region": "JO-AZ", + "municipality": "Al Azraq", + "scheduled_service": "no", + "gps_code": "OJMS", + "local_code": "OJ40", + "wikipedia_link": "https://en.wikipedia.org/wiki/Muwaffaq_Salti_Air_Base", + "keywords": "Shaheed Mwaffaq, Al Shaheed Muwaffaq Salti Air Base" + }, + { + "id": "23744", + "ident": "OK00", + "type": "small_airport", + "name": "Jacktown Airport", + "latitude_deg": "35.516300201416016", + "longitude_deg": "-97.02210235595703", + "elevation_ft": "954", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Jacktown", + "scheduled_service": "no", + "gps_code": "OK00", + "local_code": "OK00" + }, + { + "id": "23745", + "ident": "OK01", + "type": "small_airport", + "name": "Sky Haven Airpark/Sellmeyer Field", + "latitude_deg": "36.42900085449219", + "longitude_deg": "-95.9032974243164", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Vera", + "scheduled_service": "no", + "gps_code": "OK01", + "local_code": "OK01" + }, + { + "id": "23746", + "ident": "OK02", + "type": "small_airport", + "name": "Dick's Airport", + "latitude_deg": "35.110802", + "longitude_deg": "-97.481697", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "OK02", + "local_code": "OK02" + }, + { + "id": "23747", + "ident": "OK03", + "type": "closed", + "name": "Downtown Airpark", + "latitude_deg": "35.449183", + "longitude_deg": "-97.532989", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "iata_code": "DWN", + "keywords": "OK03, 2DT" + }, + { + "id": "23748", + "ident": "OK04", + "type": "small_airport", + "name": "Canadian River Ranch Airport", + "latitude_deg": "35.30939865112305", + "longitude_deg": "-95.80829620361328", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Eufaula", + "scheduled_service": "no", + "gps_code": "OK04", + "local_code": "OK04" + }, + { + "id": "23749", + "ident": "OK05", + "type": "closed", + "name": "Ray Preston Airport", + "latitude_deg": "34.699766", + "longitude_deg": "-99.923815", + "elevation_ft": "1660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hollis", + "scheduled_service": "no", + "keywords": "OK05" + }, + { + "id": "23750", + "ident": "OK06", + "type": "small_airport", + "name": "Snake Creek Wilderness Airport", + "latitude_deg": "35.64780044555664", + "longitude_deg": "-94.94999694824219", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Cookson", + "scheduled_service": "no", + "gps_code": "OK06", + "local_code": "OK06" + }, + { + "id": "23751", + "ident": "OK07", + "type": "small_airport", + "name": "DJS Airport", + "latitude_deg": "34.5182", + "longitude_deg": "-98.3256", + "elevation_ft": "1115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lawton", + "scheduled_service": "no", + "gps_code": "OK07", + "local_code": "OK07", + "keywords": "Jerry-Wright" + }, + { + "id": "23752", + "ident": "OK08", + "type": "small_airport", + "name": "Hill Top Private Airport", + "latitude_deg": "34.527021", + "longitude_deg": "-98.348464", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lawton", + "scheduled_service": "no", + "gps_code": "OK08", + "local_code": "OK08" + }, + { + "id": "23753", + "ident": "OK09", + "type": "heliport", + "name": "Mercy Hospital Ardmore Heliport", + "latitude_deg": "34.189595", + "longitude_deg": "-97.141888", + "elevation_ft": "931", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ardmore", + "scheduled_service": "no", + "gps_code": "OK09", + "local_code": "OK09", + "keywords": "Mercy Memorial Health Center Heliport" + }, + { + "id": "23754", + "ident": "OK10", + "type": "closed", + "name": "Entropy Airport", + "latitude_deg": "34.581902", + "longitude_deg": "-97.409697", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Elmore City", + "scheduled_service": "no", + "keywords": "OK10" + }, + { + "id": "23755", + "ident": "OK11", + "type": "small_airport", + "name": "Ksa Orchards Airport", + "latitude_deg": "34.313904", + "longitude_deg": "-98.009261", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Comanche", + "scheduled_service": "no", + "gps_code": "OK11", + "local_code": "OK11", + "keywords": "Shelby" + }, + { + "id": "23756", + "ident": "OK12", + "type": "small_airport", + "name": "Jones Farm Field", + "latitude_deg": "34.399167", + "longitude_deg": "-98.266389", + "elevation_ft": "1042", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Walters", + "scheduled_service": "no", + "gps_code": "OK12", + "local_code": "OK12" + }, + { + "id": "23757", + "ident": "OK13", + "type": "small_airport", + "name": "Erroport Airport", + "latitude_deg": "35.84579849243164", + "longitude_deg": "-95.97109985351562", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Mounds", + "scheduled_service": "no", + "gps_code": "OK13", + "local_code": "OK13" + }, + { + "id": "23758", + "ident": "OK14", + "type": "small_airport", + "name": "Woodlake Airport", + "latitude_deg": "36.8491", + "longitude_deg": "-98.65806", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Alva", + "scheduled_service": "no", + "gps_code": "OK14", + "local_code": "OK14" + }, + { + "id": "23759", + "ident": "OK15", + "type": "small_airport", + "name": "Avian Country Estates Airport", + "latitude_deg": "36.3760986328125", + "longitude_deg": "-95.7052993774414", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oolagah", + "scheduled_service": "no", + "gps_code": "OK15", + "local_code": "OK15" + }, + { + "id": "23760", + "ident": "OK16", + "type": "small_airport", + "name": "Fairmont Field Airport", + "latitude_deg": "36.3647", + "longitude_deg": "-97.667801", + "elevation_ft": "1168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Fairmont", + "scheduled_service": "no", + "local_code": "1OK", + "keywords": "OK16" + }, + { + "id": "23761", + "ident": "OK17", + "type": "small_airport", + "name": "Bass Aero Airport", + "latitude_deg": "34.21825", + "longitude_deg": "-97.052567", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ardmore", + "scheduled_service": "no", + "gps_code": "OK17", + "local_code": "OK17" + }, + { + "id": "23762", + "ident": "OK18", + "type": "small_airport", + "name": "Grand Isle Airport", + "latitude_deg": "36.423401", + "longitude_deg": "-95.171097", + "elevation_ft": "636", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Big Cabin", + "scheduled_service": "no", + "gps_code": "OK18", + "local_code": "OK18" + }, + { + "id": "23763", + "ident": "OK19", + "type": "heliport", + "name": "Integris Baptist Medical Center Heliport", + "latitude_deg": "35.53101", + "longitude_deg": "-97.578024", + "elevation_ft": "1276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "gps_code": "OK19", + "local_code": "OK19", + "keywords": "2O4" + }, + { + "id": "23764", + "ident": "OK20", + "type": "small_airport", + "name": "Sageeyah Airfield", + "latitude_deg": "36.38370132446289", + "longitude_deg": "-95.64800262451172", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Claremore", + "scheduled_service": "no", + "gps_code": "OK20", + "local_code": "OK20" + }, + { + "id": "23765", + "ident": "OK21", + "type": "small_airport", + "name": "Longs Airport North Airport", + "latitude_deg": "36.33340072631836", + "longitude_deg": "-95.30439758300781", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Pryor", + "scheduled_service": "no", + "gps_code": "OK21", + "local_code": "OK21" + }, + { + "id": "23766", + "ident": "OK22", + "type": "closed", + "name": "Bluebird Airpark", + "latitude_deg": "35.403", + "longitude_deg": "-96.832199", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Shawnee", + "scheduled_service": "no", + "keywords": "OK22" + }, + { + "id": "23767", + "ident": "OK23", + "type": "small_airport", + "name": "Taliaferro Field", + "latitude_deg": "34.19829941", + "longitude_deg": "-97.23120117", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ardmore", + "scheduled_service": "no", + "gps_code": "OK23", + "local_code": "OK23" + }, + { + "id": "23768", + "ident": "OK24", + "type": "small_airport", + "name": "Colby Field", + "latitude_deg": "34.206199645996094", + "longitude_deg": "-97.2311019897461", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lone Grove", + "scheduled_service": "no", + "gps_code": "OK24", + "local_code": "OK24" + }, + { + "id": "23769", + "ident": "OK25", + "type": "small_airport", + "name": "Cherokee Ranch Airport", + "latitude_deg": "35.81330108642578", + "longitude_deg": "-95.75330352783203", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Haskell", + "scheduled_service": "no", + "gps_code": "OK25", + "local_code": "OK25" + }, + { + "id": "23770", + "ident": "OK26", + "type": "heliport", + "name": "Atwoods Heliport", + "latitude_deg": "36.392799377441406", + "longitude_deg": "-97.94779968261719", + "elevation_ft": "1296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Enid", + "scheduled_service": "no", + "gps_code": "OK26", + "local_code": "OK26" + }, + { + "id": "23771", + "ident": "OK27", + "type": "small_airport", + "name": "Venture Aerodrome Airpark Nr 2 Ultralightport", + "latitude_deg": "35.43560028076172", + "longitude_deg": "-94.47489929199219", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Roland", + "scheduled_service": "no", + "gps_code": "OK27", + "local_code": "OK27" + }, + { + "id": "45717", + "ident": "OK28", + "type": "small_airport", + "name": "McDaniel Aviation Airport", + "latitude_deg": "34.22825", + "longitude_deg": "-96.742988", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ravia", + "scheduled_service": "no", + "gps_code": "OK28", + "local_code": "OK28" + }, + { + "id": "23772", + "ident": "OK29", + "type": "small_airport", + "name": "Travis Airport", + "latitude_deg": "33.9359016418457", + "longitude_deg": "-97.05449676513672", + "elevation_ft": "862", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Marietta", + "scheduled_service": "no", + "gps_code": "OK29", + "local_code": "OK29" + }, + { + "id": "300347", + "ident": "OK2A", + "type": "heliport", + "name": "Patton Army Heliport", + "latitude_deg": "28.864548", + "longitude_deg": "48.150941", + "elevation_ft": "168", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-AH", + "municipality": "Camp Arifjan", + "scheduled_service": "no", + "gps_code": "OK2A", + "local_code": "OK2A", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_Arifjan" + }, + { + "id": "23773", + "ident": "OK30", + "type": "small_airport", + "name": "Grandcraft Landing Strip", + "latitude_deg": "36.491798400878906", + "longitude_deg": "-95.05020141601562", + "elevation_ft": "827", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Langley", + "scheduled_service": "no", + "gps_code": "OK30", + "local_code": "OK30" + }, + { + "id": "45720", + "ident": "OK31", + "type": "small_airport", + "name": "Whittington Ranch Airport", + "latitude_deg": "33.778542", + "longitude_deg": "-97.131458", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Thackerville", + "scheduled_service": "no", + "gps_code": "OK31", + "local_code": "OK31" + }, + { + "id": "45719", + "ident": "OK32", + "type": "heliport", + "name": "Triad Eye Medical Clinic Heliport", + "latitude_deg": "35.7667157407", + "longitude_deg": "-95.40134131910001", + "elevation_ft": "587", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Muskogee", + "scheduled_service": "no", + "gps_code": "OK32", + "local_code": "OK32" + }, + { + "id": "23774", + "ident": "OK33", + "type": "heliport", + "name": "Saint Francis Hospital Muskogee East Heliport", + "latitude_deg": "35.782491", + "longitude_deg": "-95.355666", + "elevation_ft": "1238", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Muskogee", + "scheduled_service": "no", + "gps_code": "OK33", + "local_code": "OK33", + "keywords": "Muskogee Community Hospital Heliport" + }, + { + "id": "23775", + "ident": "OK34", + "type": "small_airport", + "name": "Gustafson Airport", + "latitude_deg": "35.48429870605469", + "longitude_deg": "-94.84190368652344", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Sallisaw", + "scheduled_service": "no", + "gps_code": "OK34", + "local_code": "OK34" + }, + { + "id": "23776", + "ident": "OK35", + "type": "heliport", + "name": "Choctaw Indian Hospital Heliport", + "latitude_deg": "34.813899993896484", + "longitude_deg": "-95.09410095214844", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Talihina", + "scheduled_service": "no", + "gps_code": "OK35", + "local_code": "OK35" + }, + { + "id": "23777", + "ident": "OK36", + "type": "closed", + "name": "W C Ranch STOLport", + "latitude_deg": "35.1197", + "longitude_deg": "-95.703903", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Crowder", + "scheduled_service": "no", + "keywords": "OK36" + }, + { + "id": "23778", + "ident": "OK37", + "type": "small_airport", + "name": "Dog Iron Ranch Airport", + "latitude_deg": "36.4695015", + "longitude_deg": "-95.6678009", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oologah", + "scheduled_service": "no", + "gps_code": "OK37", + "local_code": "OK37" + }, + { + "id": "23779", + "ident": "OK38", + "type": "heliport", + "name": "Stillwater Medical-Perry Heliport", + "latitude_deg": "36.288304", + "longitude_deg": "-97.300243", + "elevation_ft": "1022", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Perry", + "scheduled_service": "no", + "gps_code": "OK38", + "local_code": "OK38", + "keywords": "Perry Memorial" + }, + { + "id": "23780", + "ident": "OK39", + "type": "small_airport", + "name": "Judy Ranch Airport", + "latitude_deg": "36.96670150756836", + "longitude_deg": "-100.31700134277344", + "elevation_ft": "2240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Forgan", + "scheduled_service": "no", + "gps_code": "OK39", + "local_code": "OK39" + }, + { + "id": "23781", + "ident": "OK40", + "type": "closed", + "name": "Eden Ranch Airport", + "latitude_deg": "36.7584", + "longitude_deg": "-99.033699", + "elevation_ft": "1641", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Freedom", + "scheduled_service": "no", + "keywords": "OK40" + }, + { + "id": "23782", + "ident": "OK41", + "type": "heliport", + "name": "Police Civic Center Heliport", + "latitude_deg": "36.14950180053711", + "longitude_deg": "-95.99720001220703", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tulsa", + "scheduled_service": "no", + "gps_code": "OK41", + "local_code": "OK41" + }, + { + "id": "23783", + "ident": "OK42", + "type": "small_airport", + "name": "Siegmanns Airport", + "latitude_deg": "36.08340072631836", + "longitude_deg": "-97.71700286865234", + "elevation_ft": "1053", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hennessey", + "scheduled_service": "no", + "gps_code": "OK42", + "local_code": "OK42" + }, + { + "id": "23784", + "ident": "OK43", + "type": "small_airport", + "name": "Logsdon Ranch Airport", + "latitude_deg": "36.530601501464844", + "longitude_deg": "-98.63670349121094", + "elevation_ft": "1475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Alva", + "scheduled_service": "no", + "gps_code": "OK43", + "local_code": "OK43" + }, + { + "id": "23785", + "ident": "OK44", + "type": "small_airport", + "name": "Canyon Springs Ranch Airport", + "latitude_deg": "34.14619827270508", + "longitude_deg": "-96.07689666748047", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Bokchito", + "scheduled_service": "no", + "gps_code": "OK44", + "local_code": "OK44" + }, + { + "id": "23786", + "ident": "OK45", + "type": "heliport", + "name": "Collinsville Rural Fire District Heliport", + "latitude_deg": "36.35430145263672", + "longitude_deg": "-95.84030151367188", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Collinsville", + "scheduled_service": "no", + "gps_code": "OK45", + "local_code": "OK45" + }, + { + "id": "23787", + "ident": "OK46", + "type": "small_airport", + "name": "McCrays Airport", + "latitude_deg": "36.95905", + "longitude_deg": "-98.07554", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Manchester", + "scheduled_service": "no", + "gps_code": "OK46", + "local_code": "OK46" + }, + { + "id": "23788", + "ident": "OK47", + "type": "small_airport", + "name": "Miller Brothers Airport", + "latitude_deg": "36.96002", + "longitude_deg": "-98.03039", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Manchester", + "scheduled_service": "no", + "gps_code": "OK47", + "local_code": "OK47" + }, + { + "id": "23789", + "ident": "OK48", + "type": "closed", + "name": "Grass Roots Airport", + "latitude_deg": "36.875", + "longitude_deg": "-97.096199", + "elevation_ft": "1113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Newkirk", + "scheduled_service": "no", + "keywords": "OK48" + }, + { + "id": "23790", + "ident": "OK49", + "type": "small_airport", + "name": "Secrest Ranch Airport", + "latitude_deg": "36.644774", + "longitude_deg": "-97.01047", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ponca City", + "scheduled_service": "no", + "gps_code": "OK49", + "local_code": "OK49" + }, + { + "id": "23791", + "ident": "OK50", + "type": "closed", + "name": "Traynor Ranch Airport", + "latitude_deg": "36.330282", + "longitude_deg": "-97.882773", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Waukomis", + "scheduled_service": "no", + "keywords": "OK50" + }, + { + "id": "23792", + "ident": "OK51", + "type": "small_airport", + "name": "Enix Boys Airport", + "latitude_deg": "36.10419845581055", + "longitude_deg": "-97.93699645996094", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hennessey", + "scheduled_service": "no", + "gps_code": "OK51", + "local_code": "OK51" + }, + { + "id": "345441", + "ident": "OK52", + "type": "heliport", + "name": "Cherokee Nation Redbird Smith Health Center Heliport", + "latitude_deg": "35.455103", + "longitude_deg": "-94.817473", + "elevation_ft": "539", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Sallisaw", + "scheduled_service": "no", + "gps_code": "OK52", + "local_code": "OK52" + }, + { + "id": "321972", + "ident": "OK53", + "type": "heliport", + "name": "KOTV Heliport", + "latitude_deg": "36.160947", + "longitude_deg": "-95.993431", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tulsa", + "scheduled_service": "no", + "gps_code": "OK53", + "local_code": "OK53" + }, + { + "id": "23793", + "ident": "OK54", + "type": "small_airport", + "name": "May Ranch Airport", + "latitude_deg": "36.996700286865234", + "longitude_deg": "-99.00479888916016", + "elevation_ft": "1833", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Alva", + "scheduled_service": "no", + "gps_code": "OK54", + "local_code": "OK54" + }, + { + "id": "23794", + "ident": "OK55", + "type": "small_airport", + "name": "Bost Ranch Airport", + "latitude_deg": "35.714500427246094", + "longitude_deg": "-97.22589874267578", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Luther", + "scheduled_service": "no", + "gps_code": "OK55", + "local_code": "OK55" + }, + { + "id": "325066", + "ident": "OK56", + "type": "small_airport", + "name": "PTNO Airport", + "latitude_deg": "36.068102", + "longitude_deg": "-97.849713", + "elevation_ft": "1173", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hennessey", + "scheduled_service": "no", + "gps_code": "OK56", + "local_code": "OK56" + }, + { + "id": "23795", + "ident": "OK58", + "type": "small_airport", + "name": "Bluestem Airport", + "latitude_deg": "36.397300720214844", + "longitude_deg": "-95.90499877929688", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Collinsville", + "scheduled_service": "no", + "gps_code": "OK58", + "local_code": "OK58" + }, + { + "id": "23796", + "ident": "OK59", + "type": "small_airport", + "name": "Wolf Mountain Airport", + "latitude_deg": "35.022300720214844", + "longitude_deg": "-94.70439910888672", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Poteau", + "scheduled_service": "no", + "gps_code": "OK59", + "local_code": "OK59" + }, + { + "id": "325458", + "ident": "OK60", + "type": "small_airport", + "name": "Drifting G Ranch Airport", + "latitude_deg": "34.987416", + "longitude_deg": "-97.8107833", + "elevation_ft": "1045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Chickasha", + "scheduled_service": "no", + "gps_code": "OK60", + "local_code": "OK60" + }, + { + "id": "23797", + "ident": "OK61", + "type": "closed", + "name": "Major Heliport", + "latitude_deg": "36.1034", + "longitude_deg": "-96.003602", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tulsa", + "scheduled_service": "no", + "keywords": "OK61" + }, + { + "id": "23798", + "ident": "OK62", + "type": "small_airport", + "name": "Strader Ranch Airport", + "latitude_deg": "34.24869918823242", + "longitude_deg": "-97.20919799804688", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ardmore", + "scheduled_service": "no", + "gps_code": "OK62", + "local_code": "OK62" + }, + { + "id": "322896", + "ident": "OK63", + "type": "small_airport", + "name": "Raab Field Airport", + "latitude_deg": "34.629834", + "longitude_deg": "-97.815", + "elevation_ft": "1283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Bray", + "scheduled_service": "no", + "gps_code": "OK63", + "local_code": "OK63" + }, + { + "id": "23799", + "ident": "OK64", + "type": "closed", + "name": "Weedpatch International Airport", + "latitude_deg": "36.813901", + "longitude_deg": "-97.986504", + "elevation_ft": "1113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Wakita", + "scheduled_service": "no", + "keywords": "OK64" + }, + { + "id": "23800", + "ident": "OK65", + "type": "heliport", + "name": "Hillcrest Hospital Cushing Heliport", + "latitude_deg": "35.97816", + "longitude_deg": "-96.757479", + "elevation_ft": "914", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Cushing", + "scheduled_service": "no", + "gps_code": "OK65", + "local_code": "OK65", + "keywords": "Cushing Regional Hospital Heliport" + }, + { + "id": "23801", + "ident": "OK66", + "type": "small_airport", + "name": "F.W. Zaloudek Airport", + "latitude_deg": "36.55670166015625", + "longitude_deg": "-97.83370208740234", + "elevation_ft": "1118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Kremlin", + "scheduled_service": "no", + "gps_code": "OK66", + "local_code": "OK66" + }, + { + "id": "324950", + "ident": "OK67", + "type": "small_airport", + "name": "Ramsak Airport", + "latitude_deg": "34.547095", + "longitude_deg": "-97.909616", + "elevation_ft": "1228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Duncan", + "scheduled_service": "no", + "gps_code": "OK67", + "local_code": "OK67" + }, + { + "id": "334228", + "ident": "OK68", + "type": "small_airport", + "name": "6B Airfield", + "latitude_deg": "33.878781", + "longitude_deg": "-96.082528", + "elevation_ft": "542", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Bokchito", + "scheduled_service": "no", + "gps_code": "OK68", + "local_code": "OK68" + }, + { + "id": "23802", + "ident": "OK69", + "type": "closed", + "name": "Monarch Field", + "latitude_deg": "36.525101", + "longitude_deg": "-95.466904", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Chelsea", + "scheduled_service": "no", + "keywords": "OK69" + }, + { + "id": "324888", + "ident": "OK71", + "type": "small_airport", + "name": "TLC Airport", + "latitude_deg": "36.503744", + "longitude_deg": "-98.008838", + "elevation_ft": "1367", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Carrier", + "scheduled_service": "no", + "gps_code": "OK71", + "local_code": "OK71" + }, + { + "id": "325481", + "ident": "OK72", + "type": "small_airport", + "name": "Trust Landing Airport", + "latitude_deg": "36.212716", + "longitude_deg": "-98.903291", + "elevation_ft": "1730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Chester", + "scheduled_service": "no", + "gps_code": "OK72", + "local_code": "OK72" + }, + { + "id": "325459", + "ident": "OK73", + "type": "heliport", + "name": "Hillcrest Hospital Heliport", + "latitude_deg": "35.438694", + "longitude_deg": "-96.015824", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Henryetta", + "scheduled_service": "no", + "gps_code": "OK73", + "local_code": "OK73" + }, + { + "id": "23803", + "ident": "OK74", + "type": "small_airport", + "name": "Flying H Airport", + "latitude_deg": "34.829498291015625", + "longitude_deg": "-96.0342025756836", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "OK74", + "local_code": "OK74" + }, + { + "id": "23804", + "ident": "OK75", + "type": "heliport", + "name": "Purcell Municipal Hospital Heliport", + "latitude_deg": "35.02840042114258", + "longitude_deg": "-97.3656005859375", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Purcell", + "scheduled_service": "no", + "gps_code": "OK75", + "local_code": "OK75" + }, + { + "id": "23805", + "ident": "OK76", + "type": "heliport", + "name": "Channel 8 Heliport", + "latitude_deg": "36.115864", + "longitude_deg": "-96.026656", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tulsa", + "scheduled_service": "no", + "gps_code": "OK76", + "local_code": "OK76" + }, + { + "id": "325165", + "ident": "OK77", + "type": "small_airport", + "name": "Mound Valley Farm Airport", + "latitude_deg": "35.415877", + "longitude_deg": "-98.542486", + "elevation_ft": "1628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hydro", + "scheduled_service": "no", + "gps_code": "OK77", + "local_code": "OK77" + }, + { + "id": "329701", + "ident": "OK78", + "type": "small_airport", + "name": "Delozier Airport", + "latitude_deg": "36.559107", + "longitude_deg": "-95.431694", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Chelsea", + "scheduled_service": "no", + "gps_code": "OK78", + "local_code": "OK78" + }, + { + "id": "23806", + "ident": "OK79", + "type": "small_airport", + "name": "Temple Airport Inc Airport", + "latitude_deg": "34.25680160522461", + "longitude_deg": "-98.24120330810547", + "elevation_ft": "1005", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Temple", + "scheduled_service": "no", + "gps_code": "OK79", + "local_code": "OK79" + }, + { + "id": "23807", + "ident": "OK80", + "type": "small_airport", + "name": "Thomas Ranch Airport", + "latitude_deg": "34.72869873046875", + "longitude_deg": "-96.6010971069336", + "elevation_ft": "811", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ada", + "scheduled_service": "no", + "gps_code": "OK80", + "local_code": "OK80" + }, + { + "id": "23808", + "ident": "OK81", + "type": "closed", + "name": "Homer Ranch Airport", + "latitude_deg": "34.66263", + "longitude_deg": "-95.07089", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Talihina", + "scheduled_service": "no", + "keywords": "OK81" + }, + { + "id": "23809", + "ident": "OK82", + "type": "small_airport", + "name": "Scottys Field", + "latitude_deg": "34.69169998168945", + "longitude_deg": "-99.34480285644531", + "elevation_ft": "1425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Altus", + "scheduled_service": "no", + "gps_code": "OK82", + "local_code": "OK82" + }, + { + "id": "23810", + "ident": "OK83", + "type": "small_airport", + "name": "Sheffield-Smith Airstrip", + "latitude_deg": "34.575769", + "longitude_deg": "-99.35127", + "elevation_ft": "1355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Altus", + "scheduled_service": "no", + "gps_code": "OK83", + "local_code": "OK83" + }, + { + "id": "23811", + "ident": "OK84", + "type": "heliport", + "name": "Whittaker Army Heliport", + "latitude_deg": "36.29650115966797", + "longitude_deg": "-95.30580139160156", + "elevation_ft": "643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Pryor", + "scheduled_service": "no", + "gps_code": "OK84", + "local_code": "OK84" + }, + { + "id": "23812", + "ident": "OK85", + "type": "small_airport", + "name": "Goddard Ranch Airport", + "latitude_deg": "34.30009841918945", + "longitude_deg": "-96.91699981689453", + "elevation_ft": "858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ardmore", + "scheduled_service": "no", + "gps_code": "OK85", + "local_code": "OK85" + }, + { + "id": "23813", + "ident": "OK86", + "type": "heliport", + "name": "Stroud Hospital Heliport", + "latitude_deg": "35.74869918823242", + "longitude_deg": "-96.6781005859375", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Stroud", + "scheduled_service": "no", + "gps_code": "OK86", + "local_code": "OK86" + }, + { + "id": "23814", + "ident": "OK87", + "type": "closed", + "name": "Renavair Field", + "latitude_deg": "34.654999", + "longitude_deg": "-97.214699", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Wynnewood", + "scheduled_service": "no", + "keywords": "OK87" + }, + { + "id": "23815", + "ident": "OK88", + "type": "closed", + "name": "Silverwood Ultralightport", + "latitude_deg": "36.0101", + "longitude_deg": "-95.843597", + "elevation_ft": "632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Broken Arrow", + "scheduled_service": "no", + "keywords": "OK88" + }, + { + "id": "23816", + "ident": "OK89", + "type": "closed", + "name": "Stuart Ranch Airport", + "latitude_deg": "34.1466", + "longitude_deg": "-96.15429", + "elevation_ft": "624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Caney", + "scheduled_service": "no", + "keywords": "OK89" + }, + { + "id": "23817", + "ident": "OK90", + "type": "small_airport", + "name": "Boatner Field", + "latitude_deg": "33.902000427246094", + "longitude_deg": "-96.47219848632812", + "elevation_ft": "734", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Calera", + "scheduled_service": "no", + "gps_code": "OK90", + "local_code": "OK90" + }, + { + "id": "23818", + "ident": "OK91", + "type": "closed", + "name": "Stidham Private Airport", + "latitude_deg": "34.983398", + "longitude_deg": "-97.933701", + "elevation_ft": "1177", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Chickasha", + "scheduled_service": "no", + "keywords": "OK91" + }, + { + "id": "23819", + "ident": "OK92", + "type": "heliport", + "name": "Wetumka Hospital Heliport", + "latitude_deg": "35.23347", + "longitude_deg": "-96.238629", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Wetumka", + "scheduled_service": "no", + "gps_code": "OK92", + "local_code": "OK92" + }, + { + "id": "23820", + "ident": "OK93", + "type": "small_airport", + "name": "Airman Acres Airport", + "latitude_deg": "36.33340072631836", + "longitude_deg": "-95.88359832763672", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Collinsville", + "scheduled_service": "no", + "gps_code": "OK93", + "local_code": "OK93" + }, + { + "id": "23821", + "ident": "OK94", + "type": "small_airport", + "name": "Sand Ridge Airpark Inc Airport", + "latitude_deg": "36.354801177978516", + "longitude_deg": "-95.80329895019531", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Collinsville", + "scheduled_service": "no", + "gps_code": "OK94", + "local_code": "OK94" + }, + { + "id": "23822", + "ident": "OK95", + "type": "small_airport", + "name": "Disney Airport", + "latitude_deg": "36.48899841308594", + "longitude_deg": "-94.95829772949219", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Disney", + "scheduled_service": "no", + "gps_code": "OK95", + "local_code": "OK95" + }, + { + "id": "23823", + "ident": "OK96", + "type": "small_airport", + "name": "Ives Airport", + "latitude_deg": "35.75640106201172", + "longitude_deg": "-97.08480072021484", + "elevation_ft": "1035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Wellston", + "scheduled_service": "no", + "gps_code": "OK96", + "local_code": "OK96" + }, + { + "id": "23824", + "ident": "OK97", + "type": "small_airport", + "name": "Ketchum Ranch Airport", + "latitude_deg": "34.53340148925781", + "longitude_deg": "-97.76699829101562", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Duncan", + "scheduled_service": "no", + "gps_code": "OK97", + "local_code": "OK97" + }, + { + "id": "23825", + "ident": "OK98", + "type": "closed", + "name": "King Airport", + "latitude_deg": "35.37401", + "longitude_deg": "-98.48033", + "elevation_ft": "1535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lookeba", + "scheduled_service": "no", + "keywords": "OK98" + }, + { + "id": "23826", + "ident": "OK99", + "type": "closed", + "name": "Unity Health Center Heliport", + "latitude_deg": "35.362864", + "longitude_deg": "-96.93665", + "elevation_ft": "1073", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Shawnee", + "scheduled_service": "no", + "keywords": "OK99" + }, + { + "id": "32108", + "ident": "OKAJ", + "type": "medium_airport", + "name": "Ahmed Al Jaber Air Base", + "latitude_deg": "28.9347991943", + "longitude_deg": "47.791900634799994", + "elevation_ft": "409", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-AH", + "municipality": "Ahmed Al Jaber AB", + "scheduled_service": "no", + "gps_code": "OKAJ", + "iata_code": "XIJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ahmed_Al_Jaber_Air_Base" + }, + { + "id": "5219", + "ident": "OKAS", + "type": "medium_airport", + "name": "Ali Al Salem Air Base", + "latitude_deg": "29.344632", + "longitude_deg": "47.511215", + "elevation_ft": "472", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-JA", + "municipality": "Al Damaikhi", + "scheduled_service": "no", + "gps_code": "OKAS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ali_Al_Salem_Air_Base", + "keywords": "The Rock" + }, + { + "id": "5220", + "ident": "OKBK", + "type": "large_airport", + "name": "Kuwait International Airport", + "latitude_deg": "29.226600646972656", + "longitude_deg": "47.96889877319336", + "elevation_ft": "206", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-FA", + "municipality": "Kuwait City", + "scheduled_service": "yes", + "gps_code": "OKBK", + "iata_code": "KWI", + "home_link": "http://www.kuwait-airport.com.kw/Index_e.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kuwait_International_Airport", + "keywords": "Al Mubarak Air Base" + }, + { + "id": "5221", + "ident": "OKDI", + "type": "small_airport", + "name": "Udairi Army Air Field", + "latitude_deg": "29.697599411010742", + "longitude_deg": "47.43600082397461", + "elevation_ft": "430", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-JA", + "municipality": "Camp Buehring", + "scheduled_service": "no", + "gps_code": "OKDI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_Buehring" + }, + { + "id": "42770", + "ident": "OKNB", + "type": "heliport", + "name": "Ras al-Qulayah Naval Base Heliport", + "latitude_deg": "28.864500045776367", + "longitude_deg": "48.27280044555664", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-AH", + "municipality": "Ras al-Qulayah Naval Base", + "scheduled_service": "no", + "gps_code": "OKNB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kuwaiti_Navy#Present_Fleet" + }, + { + "id": "306981", + "ident": "OKV", + "type": "small_airport", + "name": "Okao Airport", + "latitude_deg": "-5.55666666667", + "longitude_deg": "141.032777778", + "elevation_ft": "450", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Okao", + "scheduled_service": "no", + "gps_code": "AYOF", + "iata_code": "OKV", + "local_code": "OKO" + }, + { + "id": "23827", + "ident": "OL00", + "type": "heliport", + "name": "Pauls Valley State School Heliport", + "latitude_deg": "34.691574", + "longitude_deg": "-97.211024", + "elevation_ft": "748", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Pauls Valley", + "scheduled_service": "no", + "gps_code": "OL00", + "local_code": "OL00", + "keywords": "Pauls Valley State Hospital" + }, + { + "id": "23828", + "ident": "OL01", + "type": "closed", + "name": "Hissom Memorial Center Heliport", + "latitude_deg": "36.129045", + "longitude_deg": "-96.144104", + "elevation_ft": "654", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Sand Springs", + "scheduled_service": "no", + "keywords": "OL01" + }, + { + "id": "23829", + "ident": "OL02", + "type": "small_airport", + "name": "West Buttercreek Airport", + "latitude_deg": "45.66529846191406", + "longitude_deg": "-119.38600158691406", + "elevation_ft": "917", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Echo", + "scheduled_service": "no", + "gps_code": "OL02", + "local_code": "OL02" + }, + { + "id": "23830", + "ident": "OL03", + "type": "closed", + "name": "Happy Valley Airport", + "latitude_deg": "45.44646", + "longitude_deg": "-122.500601", + "elevation_ft": "797", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Happy Valley", + "scheduled_service": "no", + "keywords": "OL03" + }, + { + "id": "23831", + "ident": "OL04", + "type": "small_airport", + "name": "Decker Ranch Airport", + "latitude_deg": "45.166500091552734", + "longitude_deg": "-120.66799926757812", + "elevation_ft": "2621", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Kent", + "scheduled_service": "no", + "gps_code": "OL04", + "local_code": "OL04" + }, + { + "id": "23832", + "ident": "OL05", + "type": "small_airport", + "name": "Skydive Oregon Airport", + "latitude_deg": "45.14619827270508", + "longitude_deg": "-122.61799621582031", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Molalla", + "scheduled_service": "no", + "gps_code": "OL05", + "local_code": "OL05" + }, + { + "id": "23833", + "ident": "OL06", + "type": "heliport", + "name": "Bristow Hospital Heliport", + "latitude_deg": "35.83340072631836", + "longitude_deg": "-96.40029907226562", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Bristow", + "scheduled_service": "no", + "gps_code": "OL06", + "local_code": "OL06" + }, + { + "id": "23834", + "ident": "OL07", + "type": "heliport", + "name": "Carnegie Municipal Hospital Heliport", + "latitude_deg": "35.11669921875", + "longitude_deg": "-98.60030364990234", + "elevation_ft": "1234", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Carnegie", + "scheduled_service": "no", + "gps_code": "OL07", + "local_code": "OL07" + }, + { + "id": "23835", + "ident": "OL08", + "type": "heliport", + "name": "L.J. Pankey Heliport", + "latitude_deg": "35.609798431396484", + "longitude_deg": "-99.67120361328125", + "elevation_ft": "1973", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Cheyenne", + "scheduled_service": "no", + "gps_code": "OL08", + "local_code": "OL08" + }, + { + "id": "23836", + "ident": "OL09", + "type": "small_airport", + "name": "Jennings Ranch Airport", + "latitude_deg": "34.887924", + "longitude_deg": "-98.755347", + "elevation_ft": "1620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Mountain View", + "scheduled_service": "no", + "gps_code": "OL09", + "local_code": "OL09" + }, + { + "id": "334242", + "ident": "OL10", + "type": "small_airport", + "name": "Waters Boone Airport", + "latitude_deg": "35.654524", + "longitude_deg": "-98.605793", + "elevation_ft": "1676", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hydro", + "scheduled_service": "no", + "gps_code": "OL10", + "local_code": "OL10" + }, + { + "id": "23837", + "ident": "OL11", + "type": "heliport", + "name": "Medical Center of Southeastern Oklahoma Heliport", + "latitude_deg": "34.006691", + "longitude_deg": "-96.392818", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Durant", + "scheduled_service": "no", + "gps_code": "OL11", + "local_code": "OL11" + }, + { + "id": "23838", + "ident": "OL12", + "type": "closed", + "name": "Northwest Edmond Airport", + "latitude_deg": "35.7076", + "longitude_deg": "-97.540604", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Edmond", + "scheduled_service": "no", + "keywords": "OL12" + }, + { + "id": "23839", + "ident": "OL14", + "type": "heliport", + "name": "Harbor's in Heliport", + "latitude_deg": "36.55839920043945", + "longitude_deg": "-94.96690368652344", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ketchum", + "scheduled_service": "no", + "gps_code": "OL14", + "local_code": "OL14" + }, + { + "id": "23840", + "ident": "OL15", + "type": "heliport", + "name": "Midwest City Regional Hospital Heliport", + "latitude_deg": "35.47090148925781", + "longitude_deg": "-97.3927993774414", + "elevation_ft": "1232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Midwest City", + "scheduled_service": "no", + "gps_code": "OL15", + "local_code": "OL15" + }, + { + "id": "23841", + "ident": "OL16", + "type": "heliport", + "name": "Mercy Health Center Heliport", + "latitude_deg": "35.600101470947266", + "longitude_deg": "-97.60030364990234", + "elevation_ft": "1143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "gps_code": "OL16", + "local_code": "OL16" + }, + { + "id": "23842", + "ident": "OL17", + "type": "heliport", + "name": "Stilwell Memorial Hospital Heliport", + "latitude_deg": "35.80967", + "longitude_deg": "-94.6436", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Stilwell", + "scheduled_service": "no", + "gps_code": "OL17", + "local_code": "OL17" + }, + { + "id": "334356", + "ident": "OL18", + "type": "small_airport", + "name": "Flying D Airport", + "latitude_deg": "35.788998", + "longitude_deg": "-98.597", + "elevation_ft": "1689", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Watonga", + "scheduled_service": "no", + "gps_code": "OL18", + "local_code": "OL18" + }, + { + "id": "23843", + "ident": "OL19", + "type": "small_airport", + "name": "Stuart Mountain Airpark", + "latitude_deg": "34.915401458740234", + "longitude_deg": "-96.12940216064453", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Stuart", + "scheduled_service": "no", + "gps_code": "OL19", + "local_code": "OL19" + }, + { + "id": "23844", + "ident": "OL20", + "type": "small_airport", + "name": "Whitehorn Cove Airport", + "latitude_deg": "35.99729919433594", + "longitude_deg": "-95.25890350341797", + "elevation_ft": "568", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Wagoner", + "scheduled_service": "no", + "gps_code": "OL20", + "local_code": "OL20" + }, + { + "id": "334348", + "ident": "OL21", + "type": "small_airport", + "name": "Eagles Landing Ultralight Flightpark", + "latitude_deg": "36.779894", + "longitude_deg": "-97.008116", + "elevation_ft": "1122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ponca City", + "scheduled_service": "no", + "gps_code": "OL21", + "local_code": "OL21" + }, + { + "id": "23845", + "ident": "OL22", + "type": "heliport", + "name": "Tulsa Helicopters Inc. Heliport", + "latitude_deg": "36.0834007263", + "longitude_deg": "-95.8683013916", + "elevation_ft": "676", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tulsa", + "scheduled_service": "no", + "gps_code": "OL22", + "local_code": "OL22" + }, + { + "id": "23846", + "ident": "OL23", + "type": "small_airport", + "name": "Morris Airport", + "latitude_deg": "35.95009994506836", + "longitude_deg": "-96.10440063476562", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Sapulpa", + "scheduled_service": "no", + "gps_code": "OL23", + "local_code": "OL23" + }, + { + "id": "334272", + "ident": "OL24", + "type": "small_airport", + "name": "Ronka Rhey Airport", + "latitude_deg": "35.735819", + "longitude_deg": "-97.189254", + "elevation_ft": "981", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Luther", + "scheduled_service": "no", + "gps_code": "OL24", + "local_code": "OL24" + }, + { + "id": "335428", + "ident": "OL25", + "type": "small_airport", + "name": "Eagle Chief Airport", + "latitude_deg": "36.401963", + "longitude_deg": "-98.452982", + "elevation_ft": "1199", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Cleo Springs", + "scheduled_service": "no", + "gps_code": "OL25", + "local_code": "OL25" + }, + { + "id": "335818", + "ident": "OL26", + "type": "small_airport", + "name": "Goaround Airport", + "latitude_deg": "33.900698", + "longitude_deg": "-95.836058", + "elevation_ft": "606", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Boswell", + "scheduled_service": "no", + "gps_code": "OL26", + "local_code": "OL26" + }, + { + "id": "351134", + "ident": "OL27", + "type": "small_airport", + "name": "Faith Field", + "latitude_deg": "34.031456", + "longitude_deg": "-97.00931", + "elevation_ft": "791", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Marietta", + "scheduled_service": "no", + "gps_code": "OL27", + "local_code": "OL27" + }, + { + "id": "351085", + "ident": "OL28", + "type": "small_airport", + "name": "Cedar & Sky Fly in Ranch Airport", + "latitude_deg": "35.583878", + "longitude_deg": "-98.304101", + "elevation_ft": "1588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Geary", + "scheduled_service": "no", + "gps_code": "OL28", + "local_code": "OL28" + }, + { + "id": "345164", + "ident": "OL29", + "type": "small_airport", + "name": "Echo Mountain Airfield", + "latitude_deg": "34.762553", + "longitude_deg": "-98.446657", + "elevation_ft": "1312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Elgin", + "scheduled_service": "no", + "gps_code": "OL29", + "local_code": "OL29" + }, + { + "id": "345061", + "ident": "OL30", + "type": "small_airport", + "name": "Flying S Ranch Airport", + "latitude_deg": "35.001991", + "longitude_deg": "-97.061613", + "elevation_ft": "1052", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Wanette", + "scheduled_service": "no", + "gps_code": "OL30", + "local_code": "OL30" + }, + { + "id": "337230", + "ident": "OL31", + "type": "small_airport", + "name": "Red Baron Ranch Airport", + "latitude_deg": "35.940357", + "longitude_deg": "-95.727607", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Coweta", + "scheduled_service": "no", + "gps_code": "OL31", + "local_code": "OL31" + }, + { + "id": "341070", + "ident": "OL32", + "type": "small_airport", + "name": "Flat Rock Field", + "latitude_deg": "36.071632", + "longitude_deg": "-95.36274", + "elevation_ft": "612", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Chouteau", + "scheduled_service": "no", + "gps_code": "OL32", + "local_code": "OL32" + }, + { + "id": "348590", + "ident": "OL34", + "type": "heliport", + "name": "Wilburton Medical Evac Heliport", + "latitude_deg": "34.918707", + "longitude_deg": "-95.320854", + "elevation_ft": "654", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Wilburton", + "scheduled_service": "no", + "gps_code": "OL34", + "local_code": "OL34" + }, + { + "id": "351267", + "ident": "OL35", + "type": "small_airport", + "name": "Aviation Acres Airport", + "latitude_deg": "35.860129", + "longitude_deg": "-96.082036", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Mounds", + "scheduled_service": "no", + "gps_code": "OL35", + "local_code": "OL35" + }, + { + "id": "353093", + "ident": "OL36", + "type": "small_airport", + "name": "Trophy Ridge Airport", + "latitude_deg": "36.98895", + "longitude_deg": "-96.321929", + "elevation_ft": "987", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Pawhuska", + "scheduled_service": "no", + "gps_code": "OL36", + "local_code": "OL36" + }, + { + "id": "353908", + "ident": "OL37", + "type": "small_airport", + "name": "Cooper Coles Ranch Airport", + "latitude_deg": "34.439535", + "longitude_deg": "-96.607723", + "elevation_ft": "954", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Connerville", + "scheduled_service": "no", + "gps_code": "OL37", + "local_code": "OL37" + }, + { + "id": "353091", + "ident": "OL38", + "type": "small_airport", + "name": "Bratton Airport", + "latitude_deg": "35.08558", + "longitude_deg": "-94.594951", + "elevation_ft": "457", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Poteau", + "scheduled_service": "no", + "gps_code": "OL38", + "local_code": "OL38" + }, + { + "id": "355131", + "ident": "OL40", + "type": "small_airport", + "name": "Patti Air Strip", + "latitude_deg": "36.043779", + "longitude_deg": "-96.63184", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Cushing", + "scheduled_service": "no", + "gps_code": "OL40", + "local_code": "OL40" + }, + { + "id": "430457", + "ident": "OL56", + "type": "small_airport", + "name": "GK Edwards Airport", + "latitude_deg": "35.88625", + "longitude_deg": "-97.322361", + "elevation_ft": "1108", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Guthrie", + "scheduled_service": "no", + "gps_code": "OL56", + "local_code": "OL56" + }, + { + "id": "23847", + "ident": "OL92", + "type": "closed", + "name": "Hi-Way Airport", + "latitude_deg": "36.783401", + "longitude_deg": "-95.950302", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Bartlesville", + "scheduled_service": "no", + "keywords": "OL92" + }, + { + "id": "325515", + "ident": "OL99", + "type": "small_airport", + "name": "Lookout Airport", + "latitude_deg": "59.703487", + "longitude_deg": "-151.496787", + "elevation_ft": "1310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Homer", + "scheduled_service": "no", + "gps_code": "OL99", + "local_code": "OL99" + }, + { + "id": "5222", + "ident": "OLBA", + "type": "large_airport", + "name": "Beirut Rafic Hariri International Airport", + "latitude_deg": "33.820899963378906", + "longitude_deg": "35.488399505615234", + "elevation_ft": "87", + "continent": "AS", + "iso_country": "LB", + "iso_region": "LB-JL", + "municipality": "Beirut", + "scheduled_service": "yes", + "gps_code": "OLBA", + "iata_code": "BEY", + "home_link": "http://www.beirutairport.gov.lb/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beirut_Rafic_Hariri_International_Airport", + "keywords": "Chaldea, Beirut Air Base, مطار بيروت رفيق الحريري الدولي" + }, + { + "id": "13527", + "ident": "OLH", + "type": "small_airport", + "name": "Old Harbor Airport", + "latitude_deg": "57.218102", + "longitude_deg": "-153.270004", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Old Harbor", + "scheduled_service": "yes", + "iata_code": "OLH", + "local_code": "6R7", + "wikipedia_link": "https://en.wikipedia.org/wiki/Old_Harbor_Airport" + }, + { + "id": "46081", + "ident": "OLI", + "type": "small_airport", + "name": "Oliktok Point Long Range Radar Station Airport", + "latitude_deg": "70.495231", + "longitude_deg": "-149.887148", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Oliktok Point", + "scheduled_service": "no", + "gps_code": "POLI", + "local_code": "OLI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oliktok_Long_Range_Radar_Site" + }, + { + "id": "5223", + "ident": "OLKA", + "type": "medium_airport", + "name": "Rene Mouawad Air Base / Kleyate Airport", + "latitude_deg": "34.589298", + "longitude_deg": "36.011299", + "elevation_ft": "75", + "continent": "AS", + "iso_country": "LB", + "iso_region": "LB-AS", + "municipality": "Tripoli", + "scheduled_service": "no", + "gps_code": "OLKA", + "iata_code": "KYE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rene_Mouawad_Air_Base", + "keywords": "Kleyate Airport, Al Qulay`at, Qulayaat, El Qlaïaat, Ṭarābulus, مطار الرئيس الشهيد رينيه" + }, + { + "id": "306982", + "ident": "OLQ", + "type": "small_airport", + "name": "Olsobip Airport", + "latitude_deg": "-5.3897222222200005", + "longitude_deg": "141.515277778", + "elevation_ft": "1500", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Olsobip", + "scheduled_service": "no", + "gps_code": "AYOV", + "iata_code": "OLQ", + "local_code": "OLS" + }, + { + "id": "5224", + "ident": "OLRA", + "type": "medium_airport", + "name": "Rayak Air Base", + "latitude_deg": "33.850799560546875", + "longitude_deg": "35.987701416015625", + "elevation_ft": "3018", + "continent": "AS", + "iso_country": "LB", + "iso_region": "LB-BI", + "municipality": "Rayak", + "scheduled_service": "no", + "gps_code": "OLRA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rayak_Air_Base" + }, + { + "id": "43868", + "ident": "OM-0001", + "type": "small_airport", + "name": "Dibba Airport", + "latitude_deg": "25.614229", + "longitude_deg": "56.2444", + "elevation_ft": "45", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-MU", + "municipality": "Dibba al Baya", + "scheduled_service": "no", + "iata_code": "BYB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dibba_Airport" + }, + { + "id": "299737", + "ident": "OM-0002", + "type": "small_airport", + "name": "Adam Airport", + "latitude_deg": "22.4919444444", + "longitude_deg": "57.3838888889", + "elevation_ft": "1075", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-DA", + "municipality": "Adam", + "scheduled_service": "no", + "iata_code": "AOM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Adam_Airport" + }, + { + "id": "299738", + "ident": "OM-0003", + "type": "large_airport", + "name": "Duqm International Airport", + "latitude_deg": "19.501944", + "longitude_deg": "57.634167", + "elevation_ft": "364", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-WU", + "municipality": "Duqm", + "scheduled_service": "yes", + "gps_code": "OODQ", + "iata_code": "DQM", + "home_link": "http://www.omanairports.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Duqm_Jaaluni_Airport" + }, + { + "id": "299747", + "ident": "OM-0004", + "type": "medium_airport", + "name": "Mussanah Airport", + "latitude_deg": "23.640556", + "longitude_deg": "57.4875", + "elevation_ft": "372", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-BA", + "municipality": "Al Masna'ah", + "scheduled_service": "no", + "gps_code": "OOMN", + "iata_code": "MNH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rustaq_Airport", + "keywords": "Musanaa, Wadi al Maawil, Al Muladdah, OORQ, Rustaq Airport" + }, + { + "id": "319194", + "ident": "OM-0005", + "type": "heliport", + "name": "Armed Forces Beach Club Helipad", + "latitude_deg": "23.605048", + "longitude_deg": "58.331587", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-MA", + "municipality": "Muscat", + "scheduled_service": "no" + }, + { + "id": "340195", + "ident": "OM-0006", + "type": "closed", + "name": "Ras Al Hadd Airfield", + "latitude_deg": "22.53449", + "longitude_deg": "59.78791", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-SH", + "municipality": "Ras Al Hadd", + "scheduled_service": "no" + }, + { + "id": "340196", + "ident": "OM-0007", + "type": "medium_airport", + "name": "Ras Al Hadd Airport", + "latitude_deg": "22.25691", + "longitude_deg": "59.74067", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-SH", + "municipality": "Ras ar Ruays", + "scheduled_service": "no", + "gps_code": "OORH" + }, + { + "id": "341945", + "ident": "OM-0008", + "type": "small_airport", + "name": "Madha Airport", + "latitude_deg": "25.28637", + "longitude_deg": "56.342934", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-MU", + "municipality": "Madha", + "scheduled_service": "no" + }, + { + "id": "342191", + "ident": "OM-0009", + "type": "small_airport", + "name": "Oman Flying Club Airport", + "latitude_deg": "23.50882", + "longitude_deg": "58.24631", + "elevation_ft": "384", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-MA", + "municipality": "Al Jafnayn", + "scheduled_service": "no" + }, + { + "id": "342192", + "ident": "OM-0010", + "type": "small_airport", + "name": "Rawdah Airstrip", + "latitude_deg": "25.86257", + "longitude_deg": "56.28591", + "elevation_ft": "1322", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-MU", + "municipality": "Rawdah", + "scheduled_service": "no" + }, + { + "id": "348678", + "ident": "OM-0011", + "type": "small_airport", + "name": "Umm al Ghanam Airport", + "latitude_deg": "26.36779", + "longitude_deg": "56.3568", + "elevation_ft": "34", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-MU", + "municipality": "Kumzar", + "scheduled_service": "no" + }, + { + "id": "348679", + "ident": "OM-0012", + "type": "heliport", + "name": "Umm al Ghanam Heliport", + "latitude_deg": "26.3656", + "longitude_deg": "56.35747", + "elevation_ft": "82", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-MU", + "municipality": "Kumzar", + "scheduled_service": "no" + }, + { + "id": "348680", + "ident": "OM-0013", + "type": "small_airport", + "name": "Limah Airstrip", + "latitude_deg": "25.94993", + "longitude_deg": "56.41864", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-MU", + "municipality": "Limah", + "scheduled_service": "no" + }, + { + "id": "348681", + "ident": "OM-0014", + "type": "heliport", + "name": "Tibat Border Crossing Heliport", + "latitude_deg": "26.054464", + "longitude_deg": "56.087372", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-MU", + "municipality": "Tibat", + "scheduled_service": "no" + }, + { + "id": "351776", + "ident": "OM-0015", + "type": "heliport", + "name": "Wab al Sebil Heliport", + "latitude_deg": "26.0502", + "longitude_deg": "56.3357", + "elevation_ft": "510", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-MU", + "municipality": "Sall Ala", + "scheduled_service": "no" + }, + { + "id": "351778", + "ident": "OM-0016", + "type": "heliport", + "name": "Al Haqt Heliport", + "latitude_deg": "26.12782", + "longitude_deg": "56.25977", + "elevation_ft": "230", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-MU", + "municipality": "Khasab", + "scheduled_service": "no" + }, + { + "id": "351864", + "ident": "OM-0017", + "type": "heliport", + "name": "Dibba al Baya Hospital Heliport", + "latitude_deg": "25.64326", + "longitude_deg": "56.24909", + "elevation_ft": "46", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-MU", + "municipality": "Dibba al Baya", + "scheduled_service": "no" + }, + { + "id": "351865", + "ident": "OM-0018", + "type": "heliport", + "name": "Sur Hospital Heliport", + "latitude_deg": "22.50996", + "longitude_deg": "59.443", + "elevation_ft": "184", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-SH", + "municipality": "Sur", + "scheduled_service": "no" + }, + { + "id": "351866", + "ident": "OM-0019", + "type": "heliport", + "name": "Masirah Hospital Heliport", + "latitude_deg": "20.58911", + "longitude_deg": "58.84892", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-SH", + "municipality": "Masirah", + "scheduled_service": "no" + }, + { + "id": "351867", + "ident": "OM-0020", + "type": "small_airport", + "name": "Mursays Airport", + "latitude_deg": "20.49128", + "longitude_deg": "58.79389", + "elevation_ft": "82", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-SH", + "municipality": "Mursays", + "scheduled_service": "no" + }, + { + "id": "351868", + "ident": "OM-0021", + "type": "heliport", + "name": "Al Ashkharah Police Heliport", + "latitude_deg": "21.78333", + "longitude_deg": "59.50987", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-SH", + "municipality": "Al Ashkharah", + "scheduled_service": "no" + }, + { + "id": "351869", + "ident": "OM-0022", + "type": "heliport", + "name": "Jalan Bani Bu Hassan Police Heliport", + "latitude_deg": "22.08373", + "longitude_deg": "59.2901", + "elevation_ft": "364", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-SH", + "municipality": "Jalan Bani Bu Hassan", + "scheduled_service": "no" + }, + { + "id": "351939", + "ident": "OM-0023", + "type": "small_airport", + "name": "Mudayy Airport", + "latitude_deg": "17.46854", + "longitude_deg": "53.36056", + "elevation_ft": "1879", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-ZU", + "municipality": "Mudayy", + "scheduled_service": "no" + }, + { + "id": "351940", + "ident": "OM-0024", + "type": "heliport", + "name": "Maqshin Police Heliport", + "latitude_deg": "19.56336", + "longitude_deg": "54.91802", + "elevation_ft": "443", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-ZU", + "municipality": "Maqshin", + "scheduled_service": "no" + }, + { + "id": "351941", + "ident": "OM-0025", + "type": "small_airport", + "name": "Maqshin Airport", + "latitude_deg": "19.53667", + "longitude_deg": "54.8847", + "elevation_ft": "456", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-ZU", + "municipality": "Maqshin", + "scheduled_service": "no" + }, + { + "id": "351942", + "ident": "OM-0026", + "type": "heliport", + "name": "Yibal Heliport", + "latitude_deg": "22.18483", + "longitude_deg": "56.09366", + "elevation_ft": "447", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-ZA", + "municipality": "Yibal", + "scheduled_service": "no" + }, + { + "id": "351943", + "ident": "OM-0027", + "type": "small_airport", + "name": "Yibal West Airport", + "latitude_deg": "22.18087", + "longitude_deg": "55.99709", + "elevation_ft": "341", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-ZA", + "municipality": "Yibal", + "scheduled_service": "no" + }, + { + "id": "351944", + "ident": "OM-0028", + "type": "heliport", + "name": "Camp Malik bin Fahm Heliport", + "latitude_deg": "23.19779", + "longitude_deg": "56.43462", + "elevation_ft": "1070", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-ZA", + "municipality": "Ibri", + "scheduled_service": "no" + }, + { + "id": "351946", + "ident": "OM-0029", + "type": "heliport", + "name": "Ramlet Khelah Border Post Heliport", + "latitude_deg": "22.23992", + "longitude_deg": "55.55033", + "elevation_ft": "266", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-ZA", + "municipality": "Ramlet Khelah", + "scheduled_service": "no" + }, + { + "id": "352473", + "ident": "OM-0030", + "type": "heliport", + "name": "Safah Heliport", + "latitude_deg": "23.16644", + "longitude_deg": "55.52892", + "elevation_ft": "453", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-ZA", + "municipality": "Safah", + "scheduled_service": "no" + }, + { + "id": "352474", + "ident": "OM-0031", + "type": "heliport", + "name": "Shafa Army Heliport", + "latitude_deg": "22.73856", + "longitude_deg": "57.72572", + "elevation_ft": "1358", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-DA", + "municipality": "Shafa", + "scheduled_service": "no" + }, + { + "id": "352475", + "ident": "OM-0032", + "type": "heliport", + "name": "Izki Police Station Heliport", + "latitude_deg": "22.90529", + "longitude_deg": "57.745", + "elevation_ft": "1778", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-DA", + "municipality": "Izki", + "scheduled_service": "no" + }, + { + "id": "352986", + "ident": "OM-0033", + "type": "heliport", + "name": "Khoula Hospital Heliport", + "latitude_deg": "23.61091", + "longitude_deg": "58.51701", + "elevation_ft": "144", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-MA", + "municipality": "Muscat", + "scheduled_service": "no" + }, + { + "id": "353567", + "ident": "OM-0034", + "type": "heliport", + "name": "Khasab Hospital Heliport", + "latitude_deg": "26.18199", + "longitude_deg": "56.25193", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-MU", + "municipality": "Khasab", + "scheduled_service": "no" + }, + { + "id": "353568", + "ident": "OM-0035", + "type": "heliport", + "name": "Camp Khasab Heliport", + "latitude_deg": "26.18016", + "longitude_deg": "56.25135", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-MU", + "municipality": "Khasab", + "scheduled_service": "no" + }, + { + "id": "356224", + "ident": "OM-0036", + "type": "small_airport", + "name": "Sarfayt Airport", + "latitude_deg": "16.7011", + "longitude_deg": "53.09786", + "elevation_ft": "4360", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-ZU", + "municipality": "Sarfayt", + "scheduled_service": "no" + }, + { + "id": "2", + "ident": "OM11", + "type": "small_airport", + "name": "Abu Dhabi Northeast Airport - Suweihan Air Base", + "latitude_deg": "24.526793", + "longitude_deg": "54.974812", + "elevation_ft": "88", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no" + }, + { + "id": "5226", + "ident": "OMAA", + "type": "large_airport", + "name": "Abu Dhabi International Airport", + "latitude_deg": "24.443764", + "longitude_deg": "54.651718", + "elevation_ft": "88", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "yes", + "gps_code": "OMAA", + "iata_code": "AUH", + "home_link": "http://www.abudhabiairport.ae/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abu_Dhabi_International_Airport" + }, + { + "id": "42260", + "ident": "OMAB", + "type": "small_airport", + "name": "Buhasa Airport", + "latitude_deg": "23.599700927734375", + "longitude_deg": "53.379398345947266", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "scheduled_service": "no", + "gps_code": "OMAB" + }, + { + "id": "42256", + "ident": "OMAC", + "type": "closed", + "name": "Asab Airfield", + "latitude_deg": "23.297616", + "longitude_deg": "54.221691", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Asab", + "scheduled_service": "no", + "gps_code": "OMAC" + }, + { + "id": "5227", + "ident": "OMAD", + "type": "medium_airport", + "name": "Al Bateen Executive Airport", + "latitude_deg": "24.428301", + "longitude_deg": "54.458099", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Abu Dhabi", + "scheduled_service": "no", + "gps_code": "OMAD", + "iata_code": "AZI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Al_Bateen_Executive_Airport", + "keywords": "Former Abu Dhabi International Airport" + }, + { + "id": "42259", + "ident": "OMAF", + "type": "small_airport", + "name": "Futaysi Airport", + "latitude_deg": "24.378889", + "longitude_deg": "54.316111", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Futaisi", + "scheduled_service": "no", + "gps_code": "OMAF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Futaysi_Airport" + }, + { + "id": "334363", + "ident": "OMAG", + "type": "small_airport", + "name": "KIZAD Airport", + "latitude_deg": "24.726505", + "longitude_deg": "54.832259", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "scheduled_service": "no", + "gps_code": "OMAG" + }, + { + "id": "5228", + "ident": "OMAH", + "type": "small_airport", + "name": "Al Hamra Auxiliary Airport", + "latitude_deg": "24.073999", + "longitude_deg": "52.4636", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Shuweihat", + "scheduled_service": "no", + "gps_code": "OMAH" + }, + { + "id": "5229", + "ident": "OMAJ", + "type": "small_airport", + "name": "Jebel Dhanna Airport", + "latitude_deg": "24.187755", + "longitude_deg": "52.613934", + "elevation_ft": "43", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Jebel Dhanna", + "scheduled_service": "no", + "gps_code": "OMAJ" + }, + { + "id": "5230", + "ident": "OMAL", + "type": "medium_airport", + "name": "Al Ain International Airport", + "latitude_deg": "24.261699676513672", + "longitude_deg": "55.60919952392578", + "elevation_ft": "869", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Al Ain", + "scheduled_service": "yes", + "gps_code": "OMAL", + "iata_code": "AAN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Al_Ain_International_Airport" + }, + { + "id": "5231", + "ident": "OMAM", + "type": "medium_airport", + "name": "Al Dhafra Air Base", + "latitude_deg": "24.248199462900004", + "longitude_deg": "54.547698974599996", + "elevation_ft": "77", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "scheduled_service": "no", + "gps_code": "OMAM", + "iata_code": "DHF", + "home_link": "https://www.dhafra.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Al_Dhafra_Air_Base" + }, + { + "id": "42258", + "ident": "OMAQ", + "type": "small_airport", + "name": "Qarnayn Airport", + "latitude_deg": "24.930599212646484", + "longitude_deg": "52.855098724365234", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Qarnayn Island", + "scheduled_service": "no", + "gps_code": "OMAQ" + }, + { + "id": "5232", + "ident": "OMAR", + "type": "small_airport", + "name": "Arzanah Airport", + "latitude_deg": "24.780872", + "longitude_deg": "52.559871", + "elevation_ft": "15", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Arzanah Island", + "scheduled_service": "no", + "gps_code": "OMAR" + }, + { + "id": "5233", + "ident": "OMAS", + "type": "small_airport", + "name": "Das Island Airport", + "latitude_deg": "25.14620018005371", + "longitude_deg": "52.87369918823242", + "elevation_ft": "12", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Das Island", + "scheduled_service": "no", + "gps_code": "OMAS" + }, + { + "id": "5234", + "ident": "OMAZ", + "type": "small_airport", + "name": "Zirku Airport", + "latitude_deg": "24.862491607666016", + "longitude_deg": "53.07714080810547", + "elevation_ft": "14", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Zirku Island", + "scheduled_service": "no", + "gps_code": "OMAZ" + }, + { + "id": "315653", + "ident": "OMBY", + "type": "medium_airport", + "name": "Sir Bani Yas Airport", + "latitude_deg": "24.283611", + "longitude_deg": "52.580278", + "elevation_ft": "25", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Sir Bani Yas", + "scheduled_service": "no", + "gps_code": "OMBY", + "iata_code": "XSB", + "local_code": "OMBY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sir_Bani_Yas_Airport", + "keywords": "Yas Island" + }, + { + "id": "5235", + "ident": "OMDB", + "type": "large_airport", + "name": "Dubai International Airport", + "latitude_deg": "25.2527999878", + "longitude_deg": "55.3643989563", + "elevation_ft": "62", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "municipality": "Dubai", + "scheduled_service": "yes", + "gps_code": "OMDB", + "iata_code": "DXB", + "home_link": "http://www.dubaiairport.com/dia/english/home/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dubai_International_Airport", + "keywords": "مطار دبي الدولي‎" + }, + { + "id": "5236", + "ident": "OMDM", + "type": "medium_airport", + "name": "Al Minhad Air Base", + "latitude_deg": "25.0268001556", + "longitude_deg": "55.3661994934", + "elevation_ft": "165", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "municipality": "Dubai", + "scheduled_service": "no", + "gps_code": "OMDM", + "iata_code": "NHD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Al_Minhad_Air_Base" + }, + { + "id": "300320", + "ident": "OMDW", + "type": "large_airport", + "name": "Al Maktoum International Airport", + "latitude_deg": "24.896356", + "longitude_deg": "55.161389", + "elevation_ft": "114", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-DU", + "municipality": "Jebel Ali", + "scheduled_service": "yes", + "gps_code": "OMDW", + "iata_code": "DWC", + "home_link": "https://www.dubaiairports.ae/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Al_Maktoum_International_Airport" + }, + { + "id": "5237", + "ident": "OMFJ", + "type": "medium_airport", + "name": "Fujairah International Airport", + "latitude_deg": "25.112199783325195", + "longitude_deg": "56.32400131225586", + "elevation_ft": "152", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-FU", + "scheduled_service": "yes", + "gps_code": "OMFJ", + "iata_code": "FJR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fujairah_International_Airport" + }, + { + "id": "313132", + "ident": "OML", + "type": "closed", + "name": "Omkalai Airport", + "latitude_deg": "-6.179", + "longitude_deg": "144.96", + "elevation_ft": "5700", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPK", + "municipality": "Omkalai", + "scheduled_service": "no", + "iata_code": "OML" + }, + { + "id": "314033", + "ident": "OMN", + "type": "small_airport", + "name": "Osmanabad Airport", + "latitude_deg": "18.281", + "longitude_deg": "76.0574", + "elevation_ft": "2277", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Osmanabad", + "scheduled_service": "no", + "iata_code": "OMN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Osmanabad_Airport" + }, + { + "id": "349155", + "ident": "OMRJ", + "type": "small_airport", + "name": "Jazirah Airport", + "latitude_deg": "25.664957", + "longitude_deg": "55.774413", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-RK", + "scheduled_service": "no", + "gps_code": "OMRJ", + "local_code": "OMRJ" + }, + { + "id": "5238", + "ident": "OMRK", + "type": "medium_airport", + "name": "Ras Al Khaimah International Airport", + "latitude_deg": "25.613500595092773", + "longitude_deg": "55.93880081176758", + "elevation_ft": "102", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-RK", + "municipality": "Ras Al Khaimah", + "scheduled_service": "yes", + "gps_code": "OMRK", + "iata_code": "RKT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ras_Al_Khaimah_International_Airport" + }, + { + "id": "42253", + "ident": "OMRS", + "type": "small_airport", + "name": "Al Saqr Field", + "latitude_deg": "25.752944", + "longitude_deg": "55.959234", + "elevation_ft": "2", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-RK", + "municipality": "Al Duhaisah", + "scheduled_service": "no", + "gps_code": "OMRS" + }, + { + "id": "5239", + "ident": "OMSJ", + "type": "large_airport", + "name": "Sharjah International Airport", + "latitude_deg": "25.32859992980957", + "longitude_deg": "55.5172004699707", + "elevation_ft": "111", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sharjah", + "scheduled_service": "yes", + "gps_code": "OMSJ", + "iata_code": "SHJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sharjah_International_Airport" + }, + { + "id": "343799", + "ident": "OMSN", + "type": "small_airport", + "name": "Sir Abu Nu'ayr Airport", + "latitude_deg": "25.21679", + "longitude_deg": "54.233447", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-SH", + "municipality": "Sir Abu Nu'ayr", + "scheduled_service": "no", + "gps_code": "OMSN" + }, + { + "id": "23848", + "ident": "OMU9", + "type": "small_airport", + "name": "Kollmeyer Airport", + "latitude_deg": "38.88420104980469", + "longitude_deg": "-92.9854965209961", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Pilot Grove", + "scheduled_service": "no", + "gps_code": "OMU9", + "local_code": "OMU9" + }, + { + "id": "42255", + "ident": "OMUQ", + "type": "small_airport", + "name": "Umm Al Quwain Airport", + "latitude_deg": "25.57715", + "longitude_deg": "55.65068", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-UQ", + "municipality": "Meshara", + "scheduled_service": "no", + "gps_code": "OMUQ" + }, + { + "id": "313340", + "ident": "OMY", + "type": "small_airport", + "name": "Preah Vinhear Airport", + "latitude_deg": "13.7597", + "longitude_deg": "104.97173", + "elevation_ft": "350", + "continent": "AS", + "iso_country": "KH", + "iso_region": "KH-13", + "municipality": "Tbeng Meanchey", + "scheduled_service": "no", + "iata_code": "OMY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thbeng_Meanchey_Airport" + }, + { + "id": "306993", + "ident": "ONB", + "type": "small_airport", + "name": "Ononge Airport", + "latitude_deg": "-8.67436111111", + "longitude_deg": "147.262416667", + "elevation_ft": "5800", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Onange Mission", + "scheduled_service": "no", + "gps_code": "AYQQ", + "iata_code": "ONB", + "local_code": "ONG" + }, + { + "id": "5225", + "ident": "OO42", + "type": "small_airport", + "name": "Manston Air Base", + "latitude_deg": "16.990400314331055", + "longitude_deg": "53.35879898071289", + "elevation_ft": "3182", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-ZU", + "municipality": "Manston", + "scheduled_service": "no", + "keywords": "OO42" + }, + { + "id": "32217", + "ident": "OOBR", + "type": "small_airport", + "name": "Buraimi Airport", + "latitude_deg": "24.241626", + "longitude_deg": "55.783674", + "elevation_ft": "970", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-BU", + "municipality": "Buraimi", + "scheduled_service": "no", + "gps_code": "OOBR", + "iata_code": "RMB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buraimi_Airport" + }, + { + "id": "32114", + "ident": "OOFD", + "type": "small_airport", + "name": "Fahud Airport", + "latitude_deg": "22.354759318", + "longitude_deg": "56.4841461182", + "elevation_ft": "552", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-ZA", + "municipality": "Fahud", + "scheduled_service": "no", + "gps_code": "OOFD", + "iata_code": "FAU" + }, + { + "id": "32115", + "ident": "OOFQ", + "type": "closed", + "name": "Firq Air Base", + "latitude_deg": "22.869085", + "longitude_deg": "57.543615", + "elevation_ft": "1560", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-DA", + "municipality": "Firq", + "scheduled_service": "no", + "gps_code": "OOFQ" + }, + { + "id": "32116", + "ident": "OOGB", + "type": "small_airport", + "name": "Qarn Alam Airport", + "latitude_deg": "21.3829994202", + "longitude_deg": "57.0499992371", + "elevation_ft": "443", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-WU", + "municipality": "Ghaba", + "scheduled_service": "no", + "gps_code": "OOGB", + "iata_code": "RNM" + }, + { + "id": "23849", + "ident": "OOH", + "type": "seaplane_base", + "name": "Hoonah Seaplane Base", + "latitude_deg": "58.112202", + "longitude_deg": "-135.451996", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Hoonah", + "scheduled_service": "no", + "gps_code": "POOH", + "local_code": "OOH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hoonah_Seaplane_Base", + "keywords": "Z49" + }, + { + "id": "32117", + "ident": "OOHA", + "type": "small_airport", + "name": "Haima Airport", + "latitude_deg": "19.966999053955078", + "longitude_deg": "56.28300094604492", + "elevation_ft": "400", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-WU", + "municipality": "Haima", + "scheduled_service": "no", + "gps_code": "OOHA" + }, + { + "id": "299739", + "ident": "OOIA", + "type": "small_airport", + "name": "Ibra Airport", + "latitude_deg": "22.732777777800003", + "longitude_deg": "58.5136111111", + "elevation_ft": "1500", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-SH", + "municipality": "Ibra", + "scheduled_service": "no", + "gps_code": "OOIA", + "keywords": "Al Yahmadi" + }, + { + "id": "351945", + "ident": "OOII", + "type": "small_airport", + "name": "Ibri Airport", + "latitude_deg": "23.18626", + "longitude_deg": "56.43333", + "elevation_ft": "1069", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-ZA", + "municipality": "Ibri", + "scheduled_service": "no", + "gps_code": "OOII" + }, + { + "id": "32118", + "ident": "OOIZ", + "type": "small_airport", + "name": "Izki Air Base", + "latitude_deg": "22.892627", + "longitude_deg": "57.759094", + "elevation_ft": "1700", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-DA", + "municipality": "Izki", + "scheduled_service": "no", + "gps_code": "OOIZ" + }, + { + "id": "315625", + "ident": "OOJA", + "type": "small_airport", + "name": "Ja'Aluni Airport", + "latitude_deg": "19.4749", + "longitude_deg": "57.3083", + "elevation_ft": "560", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-WU", + "municipality": "Duqm", + "scheduled_service": "no", + "gps_code": "OOJA", + "iata_code": "JNJ" + }, + { + "id": "5240", + "ident": "OOKB", + "type": "medium_airport", + "name": "Khasab Airport", + "latitude_deg": "26.171", + "longitude_deg": "56.240601", + "elevation_ft": "100", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-MU", + "municipality": "Khasab", + "scheduled_service": "yes", + "gps_code": "OOKB", + "iata_code": "KHS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khasab_Airport" + }, + { + "id": "308219", + "ident": "OOLK", + "type": "small_airport", + "name": "Lekhwair Airport", + "latitude_deg": "22.804866", + "longitude_deg": "55.372801", + "elevation_ft": "354", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-ZA", + "municipality": "Lekhwair", + "scheduled_service": "no", + "gps_code": "OOLK", + "iata_code": "LKW" + }, + { + "id": "5241", + "ident": "OOMA", + "type": "medium_airport", + "name": "RAFO Masirah", + "latitude_deg": "20.6754", + "longitude_deg": "58.890499", + "elevation_ft": "64", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-SH", + "municipality": "Masirah", + "scheduled_service": "no", + "gps_code": "OOMA", + "iata_code": "MSH" + }, + { + "id": "5242", + "ident": "OOMS", + "type": "large_airport", + "name": "Muscat International Airport", + "latitude_deg": "23.593299865722656", + "longitude_deg": "58.284400939941406", + "elevation_ft": "48", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-MA", + "municipality": "Muscat", + "scheduled_service": "yes", + "gps_code": "OOMS", + "iata_code": "MCT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Seeb_International_Airport", + "keywords": "Seeb International Airport, Masqat" + }, + { + "id": "5243", + "ident": "OOMX", + "type": "small_airport", + "name": "Marmul Airport", + "latitude_deg": "18.138999", + "longitude_deg": "55.179005", + "elevation_ft": "925", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-ZU", + "municipality": "Marmul", + "scheduled_service": "no", + "gps_code": "OOMX", + "iata_code": "OMM" + }, + { + "id": "5244", + "ident": "OOSA", + "type": "medium_airport", + "name": "Salalah Airport", + "latitude_deg": "17.038700103759766", + "longitude_deg": "54.09130096435547", + "elevation_ft": "73", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-ZU", + "municipality": "Salalah", + "scheduled_service": "yes", + "gps_code": "OOSA", + "iata_code": "SLL", + "home_link": "http://www.dgcam.gov.om/str/airsalah.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salalah_Airport", + "keywords": "مطار صلالة" + }, + { + "id": "299742", + "ident": "OOSH", + "type": "small_airport", + "name": "Sohar Airport", + "latitude_deg": "24.38604", + "longitude_deg": "56.62541", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-BA", + "municipality": "Sohar", + "scheduled_service": "yes", + "gps_code": "OOSH", + "iata_code": "OHS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sohar_Airport", + "keywords": "Majis" + }, + { + "id": "32119", + "ident": "OOSQ", + "type": "small_airport", + "name": "Saiq Airport", + "latitude_deg": "23.075545", + "longitude_deg": "57.643271", + "elevation_ft": "6500", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-DA", + "municipality": "Saiq", + "scheduled_service": "no", + "gps_code": "OOSQ" + }, + { + "id": "32387", + "ident": "OOSR", + "type": "closed", + "name": "Sur Airport", + "latitude_deg": "22.537729", + "longitude_deg": "59.479766", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-SH", + "municipality": "Sur", + "scheduled_service": "no", + "iata_code": "SUH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sur_Airport", + "keywords": "OOSR" + }, + { + "id": "5245", + "ident": "OOTH", + "type": "medium_airport", + "name": "Thumrait Air Base", + "latitude_deg": "17.666000366210938", + "longitude_deg": "54.024600982666016", + "elevation_ft": "1570", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-ZU", + "municipality": "Thumrait", + "scheduled_service": "no", + "gps_code": "OOTH", + "iata_code": "TTH" + }, + { + "id": "43202", + "ident": "OOYB", + "type": "small_airport", + "name": "Yibal Airport", + "latitude_deg": "22.2015", + "longitude_deg": "56.034401", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-ZA", + "municipality": "Yibal", + "scheduled_service": "no", + "gps_code": "OOYB", + "keywords": "Jibal" + }, + { + "id": "5459", + "ident": "OP10", + "type": "small_airport", + "name": "Thar Airport", + "latitude_deg": "27.20050048828125", + "longitude_deg": "69.15380096435547", + "elevation_ft": "167", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Chuchra", + "scheduled_service": "no", + "gps_code": "OP10", + "local_code": "OP10" + }, + { + "id": "5460", + "ident": "OP11", + "type": "small_airport", + "name": "Mir Baz Airport", + "latitude_deg": "31.191082", + "longitude_deg": "70.183532", + "elevation_ft": "2350", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Mir Baz", + "scheduled_service": "no", + "gps_code": "OP11", + "local_code": "OP11" + }, + { + "id": "5461", + "ident": "OP12", + "type": "medium_airport", + "name": "Shamsi Airfield", + "latitude_deg": "27.8465", + "longitude_deg": "65.160004", + "elevation_ft": "2524", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Washuk", + "scheduled_service": "no", + "keywords": "OP12, Bandari Air Base" + }, + { + "id": "5462", + "ident": "OP13", + "type": "small_airport", + "name": "Mad Jamu Airport", + "latitude_deg": "28.356199264526367", + "longitude_deg": "70.6001968383789", + "elevation_ft": "256", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Mad Jamu Kholelan", + "scheduled_service": "no", + "gps_code": "OP13", + "local_code": "OP13" + }, + { + "id": "5463", + "ident": "OP14", + "type": "small_airport", + "name": "Belab Airport", + "latitude_deg": "30.34000015258789", + "longitude_deg": "70.55670166015625", + "elevation_ft": "377", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Belab", + "scheduled_service": "no", + "gps_code": "OP14", + "local_code": "OP14" + }, + { + "id": "5464", + "ident": "OP15", + "type": "small_airport", + "name": "Ouzkani Airport", + "latitude_deg": "30.25078", + "longitude_deg": "70.23205", + "elevation_ft": "2331", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Khandor", + "scheduled_service": "no", + "gps_code": "OP15", + "local_code": "OP15" + }, + { + "id": "5465", + "ident": "OP16", + "type": "small_airport", + "name": "UEPL Khaskheli Airstrip", + "latitude_deg": "24.787201", + "longitude_deg": "68.557198", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Badin", + "scheduled_service": "no", + "gps_code": "OP16", + "local_code": "OP16", + "keywords": "Khorewah Airport" + }, + { + "id": "5466", + "ident": "OP17", + "type": "small_airport", + "name": "Dadu West Airport", + "latitude_deg": "26.740800857543945", + "longitude_deg": "67.6666030883789", + "elevation_ft": "128", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Dadu", + "scheduled_service": "no", + "gps_code": "OP17", + "iata_code": "DDU", + "local_code": "OP17" + }, + { + "id": "5467", + "ident": "OP18", + "type": "small_airport", + "name": "Kot Addu Airport", + "latitude_deg": "30.49489974975586", + "longitude_deg": "70.97109985351562", + "elevation_ft": "423", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Kot Addu", + "scheduled_service": "no", + "gps_code": "OP18", + "local_code": "OP18" + }, + { + "id": "5468", + "ident": "OP19", + "type": "small_airport", + "name": "Chashma Airport", + "latitude_deg": "32.4244995117", + "longitude_deg": "71.4585037231", + "elevation_ft": "645", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Kundian", + "scheduled_service": "no", + "gps_code": "OP19", + "local_code": "OP19", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chashma_Airport" + }, + { + "id": "5469", + "ident": "OP1A", + "type": "small_airport", + "name": "Jam Nida Northwest Airport", + "latitude_deg": "26.19809913635254", + "longitude_deg": "67.50370025634766", + "elevation_ft": "420", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Jam Nida", + "scheduled_service": "no", + "gps_code": "OP1A", + "local_code": "OP1A" + }, + { + "id": "5470", + "ident": "OP1Y", + "type": "small_airport", + "name": "Chandhar Airport", + "latitude_deg": "32.0778007507", + "longitude_deg": "73.79019927979999", + "elevation_ft": "620", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Hafizabad", + "scheduled_service": "no", + "gps_code": "OP1Y", + "local_code": "OP1Y", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chandhar_Airbase" + }, + { + "id": "5472", + "ident": "OP21", + "type": "small_airport", + "name": "Vehari Airport", + "latitude_deg": "30.0914", + "longitude_deg": "72.153801", + "elevation_ft": "430", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Vehari", + "scheduled_service": "no", + "gps_code": "OP21", + "local_code": "OP21" + }, + { + "id": "5473", + "ident": "OP22", + "type": "small_airport", + "name": "Rajanpur Airport", + "latitude_deg": "29.263999938964844", + "longitude_deg": "70.1864013671875", + "elevation_ft": "401", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Rajanpur", + "scheduled_service": "no", + "gps_code": "OP22", + "local_code": "OP22" + }, + { + "id": "5474", + "ident": "OP23", + "type": "small_airport", + "name": "Thal Airport", + "latitude_deg": "33.38759994506836", + "longitude_deg": "70.58879852294922", + "elevation_ft": "2650", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Thal", + "scheduled_service": "no", + "gps_code": "OP23", + "local_code": "OP23" + }, + { + "id": "5475", + "ident": "OP24", + "type": "small_airport", + "name": "Mandi Bahauddin Air Base", + "latitude_deg": "32.60139846801758", + "longitude_deg": "73.5083999633789", + "elevation_ft": "750", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Mandi Bahauddin", + "scheduled_service": "no", + "keywords": "OP24" + }, + { + "id": "5476", + "ident": "OP25", + "type": "small_airport", + "name": "Gurha Salim Airport", + "latitude_deg": "32.8785018921", + "longitude_deg": "73.60530090329999", + "elevation_ft": "800", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Gurha Salim", + "scheduled_service": "no", + "gps_code": "OP25", + "local_code": "OP25", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gurha_Salim_Airport,_Jhelum", + "keywords": "OP 922, XJM" + }, + { + "id": "5477", + "ident": "OP26", + "type": "small_airport", + "name": "Khewra Airport", + "latitude_deg": "32.62910079956055", + "longitude_deg": "73.02259826660156", + "elevation_ft": "767", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Khewra", + "scheduled_service": "no", + "gps_code": "OP26", + "local_code": "OP26" + }, + { + "id": "5478", + "ident": "OP27", + "type": "small_airport", + "name": "Rahwali Airport", + "latitude_deg": "32.23899841308594", + "longitude_deg": "74.13099670410156", + "elevation_ft": "745", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Rahwali", + "scheduled_service": "no", + "gps_code": "OP27", + "local_code": "OP27" + }, + { + "id": "5479", + "ident": "OP28", + "type": "small_airport", + "name": "Dhingar Airport", + "latitude_deg": "29.92329978942871", + "longitude_deg": "66.74610137939453", + "elevation_ft": "5215", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Dhingar", + "scheduled_service": "no", + "gps_code": "OP28", + "local_code": "OP28" + }, + { + "id": "5480", + "ident": "OP31", + "type": "small_airport", + "name": "Kashmor Airport", + "latitude_deg": "28.470600128173828", + "longitude_deg": "69.5990982055664", + "elevation_ft": "260", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Kashmor", + "scheduled_service": "no", + "gps_code": "OP31", + "local_code": "OP31" + }, + { + "id": "5481", + "ident": "OP32", + "type": "small_airport", + "name": "Khairpur Airport", + "latitude_deg": "28.036100387573242", + "longitude_deg": "69.67489624023438", + "elevation_ft": "300", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Khairpur", + "scheduled_service": "no", + "gps_code": "OP32", + "local_code": "OP32" + }, + { + "id": "5482", + "ident": "OP33", + "type": "small_airport", + "name": "Kandhkot Airport", + "latitude_deg": "28.27400016784668", + "longitude_deg": "69.2760009765625", + "elevation_ft": "250", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Kandhkot", + "scheduled_service": "no", + "gps_code": "OP33", + "local_code": "OP33" + }, + { + "id": "5483", + "ident": "OP34", + "type": "small_airport", + "name": "Nok Kundi Airport", + "latitude_deg": "28.819400787353516", + "longitude_deg": "62.7307014465332", + "elevation_ft": "2227", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Nok Kundi", + "scheduled_service": "no", + "gps_code": "OP34", + "local_code": "OP34" + }, + { + "id": "5484", + "ident": "OP35", + "type": "small_airport", + "name": "Juzzak Airport", + "latitude_deg": "29.04050064086914", + "longitude_deg": "61.64739990234375", + "elevation_ft": "2861", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Juzzak", + "scheduled_service": "no", + "gps_code": "OP35", + "local_code": "OP35" + }, + { + "id": "5485", + "ident": "OP36", + "type": "small_airport", + "name": "Robray Airport", + "latitude_deg": "26.251688", + "longitude_deg": "63.129933", + "elevation_ft": "1840", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Kech", + "scheduled_service": "no", + "gps_code": "OP36", + "local_code": "OP36" + }, + { + "id": "5486", + "ident": "OP37", + "type": "small_airport", + "name": "Pano Aqil Southeast Airport", + "latitude_deg": "27.813100814819336", + "longitude_deg": "69.16709899902344", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Pano Aqil", + "scheduled_service": "no", + "gps_code": "OP37", + "local_code": "OP37" + }, + { + "id": "41610", + "ident": "OPAB", + "type": "closed", + "name": "Abbottabad Airport", + "latitude_deg": "34.15", + "longitude_deg": "73.21666", + "elevation_ft": "4072", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Abbottabad", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abbottabad_Airport", + "keywords": "AAW, OPAB" + }, + { + "id": "5246", + "ident": "OPBG", + "type": "small_airport", + "name": "Bhagatanwala Airport", + "latitude_deg": "32.056098938", + "longitude_deg": "72.94840240479999", + "elevation_ft": "600", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Bhagatanwala", + "scheduled_service": "no", + "gps_code": "OPBG", + "iata_code": "BHW" + }, + { + "id": "41611", + "ident": "OPBL", + "type": "small_airport", + "name": "Bela Airport", + "latitude_deg": "29.49220085144043", + "longitude_deg": "71.11840057373047", + "elevation_ft": "347", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Khan Bela", + "scheduled_service": "no", + "gps_code": "OPBL" + }, + { + "id": "30781", + "ident": "OPBN", + "type": "small_airport", + "name": "Bannu Airport", + "latitude_deg": "32.9729", + "longitude_deg": "70.527901", + "elevation_ft": "1325", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Bannu", + "scheduled_service": "yes", + "gps_code": "OPBN", + "iata_code": "BNP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bannu_Airport" + }, + { + "id": "41612", + "ident": "OPBR", + "type": "small_airport", + "name": "Bahawalnagar Airport", + "latitude_deg": "29.946300506591797", + "longitude_deg": "73.24909973144531", + "elevation_ft": "500", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Bahawalnagar", + "scheduled_service": "no", + "gps_code": "OPBR", + "iata_code": "WGB" + }, + { + "id": "5247", + "ident": "OPBW", + "type": "medium_airport", + "name": "Bahawalpur Airport", + "latitude_deg": "29.348100662231445", + "longitude_deg": "71.71800231933594", + "elevation_ft": "392", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Bahawalpur", + "scheduled_service": "yes", + "gps_code": "OPBW", + "iata_code": "BHV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bahawalpur_Airport" + }, + { + "id": "5248", + "ident": "OPCH", + "type": "medium_airport", + "name": "Chitral Airport", + "latitude_deg": "35.886213", + "longitude_deg": "71.799922", + "elevation_ft": "4920", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Chitral", + "scheduled_service": "yes", + "gps_code": "OPCH", + "iata_code": "CJL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chitral_Airport" + }, + { + "id": "30826", + "ident": "OPCL", + "type": "small_airport", + "name": "Chilas Airport", + "latitude_deg": "35.426700592", + "longitude_deg": "74.081703186", + "elevation_ft": "4146", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-GB", + "municipality": "Chilas", + "scheduled_service": "no", + "gps_code": "OPCL", + "iata_code": "CHB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chilas_Airport" + }, + { + "id": "41613", + "ident": "OPCT", + "type": "small_airport", + "name": "Chirat Airport", + "latitude_deg": "33.968101501464844", + "longitude_deg": "71.96749877929688", + "elevation_ft": "1192", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Nowshera", + "scheduled_service": "no", + "gps_code": "OPCT" + }, + { + "id": "30878", + "ident": "OPDB", + "type": "small_airport", + "name": "Dalbandin Airport", + "latitude_deg": "28.878299713100002", + "longitude_deg": "64.3998031616", + "elevation_ft": "2800", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Dalbandin", + "scheduled_service": "yes", + "gps_code": "OPDB", + "iata_code": "DBA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dalbandin_Airport", + "keywords": "OPXX" + }, + { + "id": "5249", + "ident": "OPDG", + "type": "medium_airport", + "name": "Dera Ghazi Khan Airport", + "latitude_deg": "29.961000442504883", + "longitude_deg": "70.48590087890625", + "elevation_ft": "492", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Dera Ghazi Khan", + "scheduled_service": "yes", + "gps_code": "OPDG", + "iata_code": "DEA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dera_Ghazi_Khan_Airport" + }, + { + "id": "5250", + "ident": "OPDI", + "type": "medium_airport", + "name": "Dera Ismael Khan Airport", + "latitude_deg": "31.909400939941406", + "longitude_deg": "70.89659881591797", + "elevation_ft": "594", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Dera Ismael Khan", + "scheduled_service": "yes", + "gps_code": "OPDI", + "iata_code": "DSK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dera_Ismail_Khan_Airport" + }, + { + "id": "41615", + "ident": "OPDK", + "type": "small_airport", + "name": "Daharki Airport", + "latitude_deg": "28.5", + "longitude_deg": "69.69999694824219", + "elevation_ft": "274", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Daharki", + "scheduled_service": "no", + "gps_code": "OPDK" + }, + { + "id": "5251", + "ident": "OPFA", + "type": "medium_airport", + "name": "Faisalabad International Airport", + "latitude_deg": "31.364999771118164", + "longitude_deg": "72.99479675292969", + "elevation_ft": "591", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Faisalabad", + "scheduled_service": "yes", + "gps_code": "OPFA", + "iata_code": "LYP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Faisalabad_International_Airport", + "keywords": "OPLF" + }, + { + "id": "5252", + "ident": "OPGD", + "type": "medium_airport", + "name": "Gwadar International Airport", + "latitude_deg": "25.232391", + "longitude_deg": "62.327671", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Gwadar", + "scheduled_service": "yes", + "gps_code": "OPGD", + "iata_code": "GWD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gwadar_International_Airport" + }, + { + "id": "5253", + "ident": "OPGT", + "type": "medium_airport", + "name": "Gilgit Airport", + "latitude_deg": "35.918800354003906", + "longitude_deg": "74.33360290527344", + "elevation_ft": "4796", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-GB", + "municipality": "Gilgit", + "scheduled_service": "yes", + "gps_code": "OPGT", + "iata_code": "GIL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gilgit_Airport" + }, + { + "id": "333692", + "ident": "OPIS", + "type": "large_airport", + "name": "Islamabad International Airport", + "latitude_deg": "33.549", + "longitude_deg": "72.82566", + "elevation_ft": "1761", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Islamabad", + "scheduled_service": "yes", + "gps_code": "OPIS", + "iata_code": "ISB", + "home_link": "http://www.islamabadairport.com.pk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Islamabad_International_Airport" + }, + { + "id": "5254", + "ident": "OPJA", + "type": "medium_airport", + "name": "Shahbaz Air Base", + "latitude_deg": "28.28420066833496", + "longitude_deg": "68.44969940185547", + "elevation_ft": "185", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Jacobabad", + "scheduled_service": "no", + "gps_code": "OPJA", + "iata_code": "JAG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jacobabad_Airbase" + }, + { + "id": "31704", + "ident": "OPJI", + "type": "small_airport", + "name": "Jiwani Airport", + "latitude_deg": "25.067800521900004", + "longitude_deg": "61.8054008484", + "elevation_ft": "186", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Jiwani", + "scheduled_service": "yes", + "gps_code": "OPJI", + "iata_code": "JIW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jiwani_Airport" + }, + { + "id": "41616", + "ident": "OPKA", + "type": "small_airport", + "name": "Cape Monz Airport", + "latitude_deg": "24.828406", + "longitude_deg": "66.666029", + "elevation_ft": "40", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Cape Monz", + "scheduled_service": "no", + "gps_code": "OPKA" + }, + { + "id": "5255", + "ident": "OPKC", + "type": "large_airport", + "name": "Jinnah International Airport", + "latitude_deg": "24.9065", + "longitude_deg": "67.160797", + "elevation_ft": "100", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Karachi", + "scheduled_service": "yes", + "gps_code": "OPKC", + "iata_code": "KHI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jinnah_International_Airport", + "keywords": "OPQR, OPHQ, Drigh Road Airstrip, Quaid-E-Azam International Airport" + }, + { + "id": "31575", + "ident": "OPKD", + "type": "small_airport", + "name": "Hyderabad Airport", + "latitude_deg": "25.3181", + "longitude_deg": "68.366096", + "elevation_ft": "130", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Hyderabad", + "scheduled_service": "yes", + "gps_code": "OPKD", + "iata_code": "HDD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hyderabad_Airport_(Sindh)" + }, + { + "id": "32122", + "ident": "OPKE", + "type": "small_airport", + "name": "Chore Airport", + "latitude_deg": "25.525999069213867", + "longitude_deg": "69.77179718017578", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Chore", + "scheduled_service": "no", + "gps_code": "OPKE" + }, + { + "id": "41617", + "ident": "OPKF", + "type": "small_airport", + "name": "Gharo Airport", + "latitude_deg": "24.729000091552734", + "longitude_deg": "67.58760070800781", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Gharo", + "scheduled_service": "no", + "gps_code": "OPKF" + }, + { + "id": "31735", + "ident": "OPKH", + "type": "small_airport", + "name": "Khuzdar Airport", + "latitude_deg": "27.790599823", + "longitude_deg": "66.6473007202", + "elevation_ft": "4012", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Khuzdar", + "scheduled_service": "yes", + "gps_code": "OPKH", + "iata_code": "KDD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khuzdar_Airport" + }, + { + "id": "41618", + "ident": "OPKK", + "type": "closed", + "name": "Korangi Creek Airport", + "latitude_deg": "24.7843", + "longitude_deg": "67.139", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Karachi", + "scheduled_service": "no", + "gps_code": "OPKK" + }, + { + "id": "41619", + "ident": "OPKL", + "type": "closed", + "name": "Kalat Airport", + "latitude_deg": "29.133333", + "longitude_deg": "66.51667", + "elevation_ft": "6100", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Kalat", + "scheduled_service": "no", + "gps_code": "OPKL" + }, + { + "id": "5256", + "ident": "OPKN", + "type": "closed", + "name": "Kharan Airport", + "latitude_deg": "28.5972", + "longitude_deg": "65.422501", + "elevation_ft": "2408", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Kharan", + "scheduled_service": "no", + "keywords": "OPKN" + }, + { + "id": "32100", + "ident": "OPKT", + "type": "small_airport", + "name": "Kohat Airport", + "latitude_deg": "33.5699996948", + "longitude_deg": "71.4400024414", + "elevation_ft": "1650", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Kohat", + "scheduled_service": "no", + "gps_code": "OPKT", + "iata_code": "OHT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kohat_Airbase" + }, + { + "id": "5257", + "ident": "OPLA", + "type": "large_airport", + "name": "Allama Iqbal International Airport", + "latitude_deg": "31.521601", + "longitude_deg": "74.403603", + "elevation_ft": "712", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Lahore", + "scheduled_service": "yes", + "gps_code": "OPLA", + "iata_code": "LHE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Allama_Iqbal_International_Airport", + "keywords": "OPLR" + }, + { + "id": "5258", + "ident": "OPLH", + "type": "medium_airport", + "name": "Walton Airport", + "latitude_deg": "31.494323", + "longitude_deg": "74.346914", + "elevation_ft": "679", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Lahore", + "scheduled_service": "no", + "gps_code": "OPLH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Walton_Airport", + "keywords": "Walton Aerodrome" + }, + { + "id": "41620", + "ident": "OPLL", + "type": "small_airport", + "name": "Loralai Airport", + "latitude_deg": "30.355499267578125", + "longitude_deg": "68.6135025024414", + "elevation_ft": "4631", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Loralai", + "scheduled_service": "no", + "gps_code": "OPLL", + "iata_code": "LRG" + }, + { + "id": "5259", + "ident": "OPMA", + "type": "medium_airport", + "name": "Mangla Airport", + "latitude_deg": "33.05009841918945", + "longitude_deg": "73.63839721679688", + "elevation_ft": "902", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Mangla", + "scheduled_service": "no", + "gps_code": "OPMA", + "iata_code": "XJM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mangla_Airport" + }, + { + "id": "5260", + "ident": "OPMF", + "type": "medium_airport", + "name": "Muzaffarabad Airport", + "latitude_deg": "34.3390007019043", + "longitude_deg": "73.50859832763672", + "elevation_ft": "2691", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-JK", + "municipality": "Muzaffarabad", + "scheduled_service": "yes", + "gps_code": "OPMF", + "iata_code": "MFG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Muzaffarabad_Airport" + }, + { + "id": "5261", + "ident": "OPMI", + "type": "medium_airport", + "name": "Mianwali Air Base", + "latitude_deg": "32.5630989074707", + "longitude_deg": "71.5707015991211", + "elevation_ft": "690", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Mianwali", + "scheduled_service": "no", + "gps_code": "OPMI", + "iata_code": "MWD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dhamial_Army_Airbase" + }, + { + "id": "5262", + "ident": "OPMJ", + "type": "medium_airport", + "name": "Moenjodaro Airport", + "latitude_deg": "27.3351993560791", + "longitude_deg": "68.14309692382812", + "elevation_ft": "154", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Moenjodaro", + "scheduled_service": "yes", + "gps_code": "OPMJ", + "iata_code": "MJD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moenjodaro_Airport" + }, + { + "id": "41621", + "ident": "OPMK", + "type": "small_airport", + "name": "Mirpur Khas Air Base", + "latitude_deg": "25.682501", + "longitude_deg": "69.0728", + "elevation_ft": "180", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Mirpur Khas", + "scheduled_service": "no", + "gps_code": "OPMK" + }, + { + "id": "32123", + "ident": "OPMN", + "type": "small_airport", + "name": "Miram Shah Airport", + "latitude_deg": "33.01470184326172", + "longitude_deg": "70.06439971923828", + "elevation_ft": "3022", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Miram Shah", + "scheduled_service": "no", + "gps_code": "OPMN" + }, + { + "id": "31936", + "ident": "OPMP", + "type": "small_airport", + "name": "Sindhri Tharparkar Airport", + "latitude_deg": "25.68280029296875", + "longitude_deg": "69.07279968261719", + "elevation_ft": "51", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Sindhri", + "scheduled_service": "no", + "gps_code": "OPMP", + "iata_code": "MPD" + }, + { + "id": "5263", + "ident": "OPMR", + "type": "medium_airport", + "name": "Masroor Air Base", + "latitude_deg": "24.893600463867188", + "longitude_deg": "66.93879699707031", + "elevation_ft": "35", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Karachi", + "scheduled_service": "no", + "gps_code": "OPMR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Masroor_Airbase" + }, + { + "id": "32124", + "ident": "OPMS", + "type": "medium_airport", + "name": "Minhas Air Base", + "latitude_deg": "33.8690986633", + "longitude_deg": "72.4009017944", + "elevation_ft": "1023", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Kamra", + "scheduled_service": "no", + "gps_code": "OPMS", + "iata_code": "ATG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Minhas_Airbase", + "keywords": "Attock" + }, + { + "id": "5264", + "ident": "OPMT", + "type": "medium_airport", + "name": "Multan International Airport", + "latitude_deg": "30.20319938659668", + "longitude_deg": "71.41909790039062", + "elevation_ft": "403", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Multan", + "scheduled_service": "yes", + "gps_code": "OPMT", + "iata_code": "MUX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Multan_International_Airport", + "keywords": "Multan Air Base" + }, + { + "id": "5265", + "ident": "OPNH", + "type": "medium_airport", + "name": "Shaheed Benazirabad Airport", + "latitude_deg": "26.2194", + "longitude_deg": "68.390099", + "elevation_ft": "95", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Nawabashah", + "scheduled_service": "yes", + "gps_code": "OPNH", + "iata_code": "WNS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nawabshah_Airport" + }, + { + "id": "5266", + "ident": "OPNK", + "type": "closed", + "name": "Nushki Airport", + "latitude_deg": "29.539", + "longitude_deg": "66.0233", + "elevation_ft": "3200", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Nushki", + "scheduled_service": "no", + "gps_code": "OPNK", + "iata_code": "NHS" + }, + { + "id": "5267", + "ident": "OPOK", + "type": "small_airport", + "name": "Okara Cantonment Airstrip", + "latitude_deg": "30.740999221800003", + "longitude_deg": "73.3576965332", + "elevation_ft": "568", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Okara", + "scheduled_service": "no", + "gps_code": "OPOK" + }, + { + "id": "32129", + "ident": "OPOR", + "type": "small_airport", + "name": "Ormara Airport", + "latitude_deg": "25.276625", + "longitude_deg": "64.588343", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Ormara Raik", + "scheduled_service": "yes", + "gps_code": "OPOR", + "iata_code": "ORW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ormara_Airport", + "keywords": "OPOP" + }, + { + "id": "32145", + "ident": "OPPC", + "type": "small_airport", + "name": "Parachinar Airport", + "latitude_deg": "33.902099609400004", + "longitude_deg": "70.0716018677", + "elevation_ft": "5800", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Parachinar", + "scheduled_service": "yes", + "gps_code": "OPPC", + "iata_code": "PAJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Parachinar_Airport" + }, + { + "id": "5268", + "ident": "OPPG", + "type": "medium_airport", + "name": "Panjgur Airport", + "latitude_deg": "26.954500198364258", + "longitude_deg": "64.13249969482422", + "elevation_ft": "3289", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Panjgur", + "scheduled_service": "yes", + "gps_code": "OPPG", + "iata_code": "PJG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Panjgur_Airport" + }, + { + "id": "5269", + "ident": "OPPI", + "type": "medium_airport", + "name": "Pasni Airport", + "latitude_deg": "25.29050064086914", + "longitude_deg": "63.34510040283203", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Pasni", + "scheduled_service": "yes", + "gps_code": "OPPI", + "iata_code": "PSI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pasni_Airport" + }, + { + "id": "41622", + "ident": "OPPN", + "type": "small_airport", + "name": "Pishin Airport", + "latitude_deg": "30.552457", + "longitude_deg": "66.984768", + "elevation_ft": "5075", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Pishin", + "scheduled_service": "no", + "gps_code": "OPPN" + }, + { + "id": "5270", + "ident": "OPPS", + "type": "medium_airport", + "name": "Peshawar International Airport", + "latitude_deg": "33.993900299072266", + "longitude_deg": "71.51460266113281", + "elevation_ft": "1158", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Peshawar", + "scheduled_service": "yes", + "gps_code": "OPPS", + "iata_code": "PEW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Peshawar_International_Airport" + }, + { + "id": "5271", + "ident": "OPQS", + "type": "small_airport", + "name": "Qasim Airport", + "latitude_deg": "33.56019973754883", + "longitude_deg": "73.033203125", + "elevation_ft": "1581", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Qasim", + "scheduled_service": "no", + "gps_code": "OPQS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dhamial_Army_Airbase" + }, + { + "id": "5272", + "ident": "OPQT", + "type": "medium_airport", + "name": "Quetta International Airport", + "latitude_deg": "30.251399993896484", + "longitude_deg": "66.93779754638672", + "elevation_ft": "5267", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Quetta", + "scheduled_service": "yes", + "gps_code": "OPQT", + "iata_code": "UET", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quetta_International_Airport" + }, + { + "id": "5273", + "ident": "OPRK", + "type": "medium_airport", + "name": "Shaikh Zaid Airport", + "latitude_deg": "28.383899688720703", + "longitude_deg": "70.27960205078125", + "elevation_ft": "271", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Rahim Yar Khan", + "scheduled_service": "yes", + "gps_code": "OPRK", + "iata_code": "RYK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shaikh_Zayed_International_Airport", + "keywords": "Rahim Yar Khan Airport" + }, + { + "id": "5274", + "ident": "OPRN", + "type": "medium_airport", + "name": "Benazir Bhutto International Airport", + "latitude_deg": "33.616699", + "longitude_deg": "73.099197", + "elevation_ft": "1668", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Islamabad", + "scheduled_service": "no", + "gps_code": "OPRN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Benazir_Bhutto_International_Airport", + "keywords": "ISB, Chaklala Air Base, Islamabad International Airport, Rawalpindi" + }, + { + "id": "32125", + "ident": "OPRQ", + "type": "medium_airport", + "name": "Rafiqui Air Base", + "latitude_deg": "30.758100509643555", + "longitude_deg": "72.28250122070312", + "elevation_ft": "492", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Shorkot", + "scheduled_service": "no", + "gps_code": "OPRQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rafiqui_Airbase" + }, + { + "id": "5275", + "ident": "OPRS", + "type": "medium_airport", + "name": "Risalpur Air Base", + "latitude_deg": "34.08110046386719", + "longitude_deg": "71.97260284423828", + "elevation_ft": "1050", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Risalpur", + "scheduled_service": "no", + "gps_code": "OPRS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Risalpur_Airbase" + }, + { + "id": "5276", + "ident": "OPRT", + "type": "medium_airport", + "name": "Rawalakot Airport", + "latitude_deg": "33.849700927734375", + "longitude_deg": "73.79810333251953", + "elevation_ft": "5479", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-JK", + "municipality": "Rawalakot", + "scheduled_service": "yes", + "gps_code": "OPRT", + "iata_code": "RAZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rawalakot_Airport" + }, + { + "id": "32251", + "ident": "OPSB", + "type": "small_airport", + "name": "Sibi Airport", + "latitude_deg": "29.571199417114258", + "longitude_deg": "67.847900390625", + "elevation_ft": "436", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Sibi", + "scheduled_service": "no", + "gps_code": "OPSB", + "iata_code": "SBQ" + }, + { + "id": "5277", + "ident": "OPSD", + "type": "medium_airport", + "name": "Skardu Airport", + "latitude_deg": "35.33549880981445", + "longitude_deg": "75.53600311279297", + "elevation_ft": "7316", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-GB", + "municipality": "Skardu", + "scheduled_service": "yes", + "gps_code": "OPSD", + "iata_code": "KDU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Skardu_Airport" + }, + { + "id": "5278", + "ident": "OPSF", + "type": "medium_airport", + "name": "Faisal Air Base", + "latitude_deg": "24.87420082092285", + "longitude_deg": "67.11849975585938", + "elevation_ft": "29", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Karachi", + "scheduled_service": "no", + "gps_code": "OPSF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Faisal_Airbase" + }, + { + "id": "5279", + "ident": "OPSK", + "type": "medium_airport", + "name": "Sukkur Airport", + "latitude_deg": "27.722000122070312", + "longitude_deg": "68.79170227050781", + "elevation_ft": "196", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Mirpur Khas", + "scheduled_service": "yes", + "gps_code": "OPSK", + "iata_code": "SKZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sukkur_Airport" + }, + { + "id": "30590", + "ident": "OPSN", + "type": "medium_airport", + "name": "Sehwan Sharif Airport", + "latitude_deg": "26.473100662231445", + "longitude_deg": "67.71720123291016", + "elevation_ft": "121", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Sehwan Sharif", + "scheduled_service": "yes", + "gps_code": "OPSN", + "iata_code": "SYW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sehwan_Sharif_Airport" + }, + { + "id": "41623", + "ident": "OPSP", + "type": "closed", + "name": "Shekhupura Airport", + "latitude_deg": "31.7085", + "longitude_deg": "74.010201", + "elevation_ft": "680", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Shekhupura", + "scheduled_service": "no", + "gps_code": "OPSP" + }, + { + "id": "32290", + "ident": "OPSR", + "type": "medium_airport", + "name": "Mushaf Air Base", + "latitude_deg": "32.04859924316406", + "longitude_deg": "72.66500091552734", + "elevation_ft": "614", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Sargodha", + "scheduled_service": "no", + "gps_code": "OPSR", + "iata_code": "SGI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mushaf_Airbase", + "keywords": "BHW" + }, + { + "id": "5280", + "ident": "OPSS", + "type": "medium_airport", + "name": "Saidu Sharif Airport", + "latitude_deg": "34.8135986328125", + "longitude_deg": "72.35279846191406", + "elevation_ft": "3183", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Saidu Sharif", + "scheduled_service": "yes", + "gps_code": "OPSS", + "iata_code": "SDT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saidu_Sharif_Airport" + }, + { + "id": "41624", + "ident": "OPST", + "type": "medium_airport", + "name": "Sialkot International Airport", + "latitude_deg": "32.535557", + "longitude_deg": "74.363892", + "elevation_ft": "837", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Sialkot", + "scheduled_service": "yes", + "gps_code": "OPST", + "iata_code": "SKT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sialkot_International_Airport" + }, + { + "id": "5281", + "ident": "OPSU", + "type": "medium_airport", + "name": "Sui Airport", + "latitude_deg": "28.645099639892578", + "longitude_deg": "69.1769027709961", + "elevation_ft": "763", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Sui", + "scheduled_service": "no", + "gps_code": "OPSU", + "iata_code": "SUL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sui_Airport" + }, + { + "id": "41633", + "ident": "OPSW", + "type": "small_airport", + "name": "Sawan Airport", + "latitude_deg": "26.9662", + "longitude_deg": "68.878098", + "elevation_ft": "160", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Sawan Gas Field", + "scheduled_service": "yes", + "gps_code": "OPSW", + "iata_code": "RZS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sawan_Airport" + }, + { + "id": "32458", + "ident": "OPTA", + "type": "small_airport", + "name": "Tarbela Dam Airport", + "latitude_deg": "33.9860992432", + "longitude_deg": "72.61139678960001", + "elevation_ft": "1114", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Tarbela", + "scheduled_service": "no", + "gps_code": "OPTA", + "iata_code": "TLB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tarbela_Dam_Airport" + }, + { + "id": "5282", + "ident": "OPTH", + "type": "small_airport", + "name": "Talhar Airport", + "latitude_deg": "24.84149932861328", + "longitude_deg": "68.8384017944336", + "elevation_ft": "28", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Badin", + "scheduled_service": "no", + "gps_code": "OPTH", + "iata_code": "BDN" + }, + { + "id": "41626", + "ident": "OPTT", + "type": "small_airport", + "name": "Taftan Airport", + "latitude_deg": "28.96419906616211", + "longitude_deg": "61.595401763916016", + "elevation_ft": "2742", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Taftan", + "scheduled_service": "no", + "gps_code": "OPTT", + "iata_code": "TFT" + }, + { + "id": "5283", + "ident": "OPTU", + "type": "medium_airport", + "name": "Turbat International Airport", + "latitude_deg": "25.986400604248047", + "longitude_deg": "63.03020095825195", + "elevation_ft": "498", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Turbat", + "scheduled_service": "yes", + "gps_code": "OPTU", + "iata_code": "TUK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Turbat_Airport" + }, + { + "id": "5284", + "ident": "OPWN", + "type": "small_airport", + "name": "Wana Airport", + "latitude_deg": "32.3046989440918", + "longitude_deg": "69.57039642333984", + "elevation_ft": "4550", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Waana", + "scheduled_service": "no", + "gps_code": "OPWN", + "iata_code": "WAF" + }, + { + "id": "5285", + "ident": "OPZB", + "type": "medium_airport", + "name": "Zhob Airport", + "latitude_deg": "31.358400344848633", + "longitude_deg": "69.4636001586914", + "elevation_ft": "4728", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Fort Sandeman", + "scheduled_service": "yes", + "gps_code": "OPZB", + "iata_code": "PZH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zhob_Airport" + }, + { + "id": "23851", + "ident": "OR00", + "type": "small_airport", + "name": "Flying K Ranch Airport", + "latitude_deg": "45.433933", + "longitude_deg": "-122.873709", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Beaverton", + "scheduled_service": "no", + "gps_code": "OR00", + "local_code": "OR00" + }, + { + "id": "23852", + "ident": "OR01", + "type": "closed", + "name": "Douglas Community Hospital Heliport", + "latitude_deg": "43.2154254423", + "longitude_deg": "-123.357367516", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Roseburg", + "scheduled_service": "no", + "gps_code": "OR01", + "local_code": "OR01", + "wikipedia_link": "https://en.wikipedia.org/wiki/Douglas_Community_Hospital_Heliport" + }, + { + "id": "23853", + "ident": "OR02", + "type": "small_airport", + "name": "River Run Ranch Airport", + "latitude_deg": "44.33570098876953", + "longitude_deg": "-121.0199966430664", + "elevation_ft": "2600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Redmond", + "scheduled_service": "no", + "gps_code": "OR02", + "local_code": "OR02" + }, + { + "id": "23854", + "ident": "OR03", + "type": "closed", + "name": "Turel Heliport", + "latitude_deg": "45.4482", + "longitude_deg": "-122.849998", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Beaverton", + "scheduled_service": "no", + "keywords": "OR03" + }, + { + "id": "23855", + "ident": "OR04", + "type": "small_airport", + "name": "Kennel Airstrip", + "latitude_deg": "44.029598236083984", + "longitude_deg": "-121.16500091552734", + "elevation_ft": "3595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Bend", + "scheduled_service": "no", + "gps_code": "OR04", + "local_code": "OR04" + }, + { + "id": "23856", + "ident": "OR05", + "type": "small_airport", + "name": "Flying M Airport", + "latitude_deg": "45.362098693847656", + "longitude_deg": "-123.35600280761719", + "elevation_ft": "448", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Yamhill", + "scheduled_service": "no", + "gps_code": "OR05", + "local_code": "OR05" + }, + { + "id": "23857", + "ident": "OR06", + "type": "small_airport", + "name": "Snider Creek Airport", + "latitude_deg": "42.53900146484375", + "longitude_deg": "-122.9229965209961", + "elevation_ft": "1430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Medford", + "scheduled_service": "no", + "gps_code": "OR06", + "local_code": "OR06" + }, + { + "id": "23858", + "ident": "OR07", + "type": "small_airport", + "name": "Miranda's Skyranch Airport", + "latitude_deg": "44.762402", + "longitude_deg": "-119.101997", + "elevation_ft": "3823", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Long Creek", + "scheduled_service": "no", + "gps_code": "OR07", + "local_code": "OR07", + "keywords": "Volny Long Creek" + }, + { + "id": "23859", + "ident": "OR08", + "type": "small_airport", + "name": "Barton Lake Ranch Airport", + "latitude_deg": "43.128492", + "longitude_deg": "-118.67701", + "elevation_ft": "4159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Diamond", + "scheduled_service": "no", + "gps_code": "OR08", + "local_code": "OR08" + }, + { + "id": "23860", + "ident": "OR09", + "type": "small_airport", + "name": "Whitehorse Ranch Airport", + "latitude_deg": "42.335601806640625", + "longitude_deg": "-118.25800323486328", + "elevation_ft": "4447", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Fields", + "scheduled_service": "no", + "gps_code": "OR09", + "local_code": "OR09" + }, + { + "id": "23861", + "ident": "OR10", + "type": "small_airport", + "name": "Roaring Springs Ranch Airport", + "latitude_deg": "42.649600982666016", + "longitude_deg": "-118.99199676513672", + "elevation_ft": "4576", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Frenchglen", + "scheduled_service": "no", + "gps_code": "OR10", + "local_code": "OR10" + }, + { + "id": "23862", + "ident": "OR11", + "type": "small_airport", + "name": "Jensens Strip", + "latitude_deg": "44.91239929199219", + "longitude_deg": "-117.95800018310547", + "elevation_ft": "3350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Haines", + "scheduled_service": "no", + "gps_code": "OR11", + "local_code": "OR11" + }, + { + "id": "23863", + "ident": "OR12", + "type": "small_airport", + "name": "Oxbow Airport", + "latitude_deg": "45.00429916381836", + "longitude_deg": "-116.8489990234375", + "elevation_ft": "1806", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Homestead", + "scheduled_service": "no", + "gps_code": "OR12", + "local_code": "OR12" + }, + { + "id": "7464", + "ident": "OR13", + "type": "small_airport", + "name": "Wiley Creek Airport", + "latitude_deg": "44.502474", + "longitude_deg": "-119.371133", + "elevation_ft": "4130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Dayville", + "scheduled_service": "no", + "gps_code": "OR13", + "local_code": "OR13", + "keywords": "Formerly 0OR1" + }, + { + "id": "23864", + "ident": "OR14", + "type": "small_airport", + "name": "Juntura Airport", + "latitude_deg": "43.74150085449219", + "longitude_deg": "-118.06400299072266", + "elevation_ft": "3034", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Juntura", + "scheduled_service": "no", + "gps_code": "OR14", + "local_code": "OR14" + }, + { + "id": "23865", + "ident": "OR15", + "type": "heliport", + "name": "Horseman Heliport", + "latitude_deg": "44.14680099487305", + "longitude_deg": "-121.37100219726562", + "elevation_ft": "3420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Bend", + "scheduled_service": "no", + "gps_code": "OR15", + "local_code": "OR15" + }, + { + "id": "23866", + "ident": "OR16", + "type": "small_airport", + "name": "Umpleby Ranch Airport", + "latitude_deg": "45.05739974975586", + "longitude_deg": "-117.96800231933594", + "elevation_ft": "3412", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "North Powder", + "scheduled_service": "no", + "gps_code": "OR16", + "local_code": "OR16" + }, + { + "id": "23867", + "ident": "OR17", + "type": "small_airport", + "name": "Oxbow Ranch Airport", + "latitude_deg": "44.41067", + "longitude_deg": "-118.691225", + "elevation_ft": "3972", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Prairie City", + "scheduled_service": "no", + "gps_code": "OR17", + "local_code": "OR17" + }, + { + "id": "23868", + "ident": "OR18", + "type": "heliport", + "name": "Davis Heliport", + "latitude_deg": "45.774087", + "longitude_deg": "-118.559845", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Adams", + "scheduled_service": "no", + "gps_code": "OR18", + "local_code": "OR18" + }, + { + "id": "23869", + "ident": "OR19", + "type": "closed", + "name": "Propst Airport", + "latitude_deg": "44.638699", + "longitude_deg": "-123.023003", + "elevation_ft": "239", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Albany", + "scheduled_service": "no", + "keywords": "OR19" + }, + { + "id": "23870", + "ident": "OR20", + "type": "small_airport", + "name": "Hemmingson Airport", + "latitude_deg": "44.658199310302734", + "longitude_deg": "-123.14299774169922", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "OR20", + "local_code": "OR20" + }, + { + "id": "23871", + "ident": "OR21", + "type": "small_airport", + "name": "Miller Airstrip", + "latitude_deg": "44.59320068359375", + "longitude_deg": "-122.98999786376953", + "elevation_ft": "279", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "OR21", + "local_code": "OR21" + }, + { + "id": "23872", + "ident": "OR22", + "type": "small_airport", + "name": "Roppair Airport", + "latitude_deg": "44.619300842285156", + "longitude_deg": "-123.03199768066406", + "elevation_ft": "247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "OR22", + "local_code": "OR22" + }, + { + "id": "23873", + "ident": "OR23", + "type": "small_airport", + "name": "Karpens Airport", + "latitude_deg": "46.161399841308594", + "longitude_deg": "-123.63999938964844", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Astoria", + "scheduled_service": "no", + "gps_code": "OR23", + "local_code": "OR23" + }, + { + "id": "23874", + "ident": "OR24", + "type": "small_airport", + "name": "Barrett Field", + "latitude_deg": "45.82120132446289", + "longitude_deg": "-118.49800109863281", + "elevation_ft": "1738", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Athena", + "scheduled_service": "no", + "gps_code": "OR24", + "local_code": "OR24" + }, + { + "id": "23875", + "ident": "OR25", + "type": "small_airport", + "name": "Flying E Airport", + "latitude_deg": "44.84479904174805", + "longitude_deg": "-122.9010009765625", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Aumsville", + "scheduled_service": "no", + "gps_code": "OR25", + "local_code": "OR25" + }, + { + "id": "23876", + "ident": "OR26", + "type": "small_airport", + "name": "Farr Airport", + "latitude_deg": "42.12770080566406", + "longitude_deg": "-120.48400115966797", + "elevation_ft": "4775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Lakeview", + "scheduled_service": "no", + "gps_code": "OR26", + "local_code": "OR26" + }, + { + "id": "23877", + "ident": "OR27", + "type": "small_airport", + "name": "Chadwick Airport", + "latitude_deg": "45.633201599121094", + "longitude_deg": "-123.16799926757812", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Banks", + "scheduled_service": "no", + "gps_code": "OR27", + "local_code": "OR27" + }, + { + "id": "23878", + "ident": "OR28", + "type": "small_airport", + "name": "Harvey's Acres Airport", + "latitude_deg": "45.439328", + "longitude_deg": "-122.890283", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Beaverton", + "scheduled_service": "no", + "gps_code": "OR28", + "local_code": "OR28" + }, + { + "id": "23879", + "ident": "OR29", + "type": "closed", + "name": "Gopher Gulch Airport", + "latitude_deg": "44.111747", + "longitude_deg": "-121.334648", + "elevation_ft": "3480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Bend", + "scheduled_service": "no", + "keywords": "OR29" + }, + { + "id": "23880", + "ident": "OR30", + "type": "small_airport", + "name": "D M Stevenson Ranch Airport", + "latitude_deg": "44.00320053100586", + "longitude_deg": "-121.27200317382812", + "elevation_ft": "3800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Bend", + "scheduled_service": "no", + "gps_code": "OR30", + "local_code": "OR30" + }, + { + "id": "23881", + "ident": "OR31", + "type": "closed", + "name": "Newberg Community Hospital Heliport", + "latitude_deg": "45.304298", + "longitude_deg": "-122.963996", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Newberg", + "scheduled_service": "no", + "keywords": "OR31" + }, + { + "id": "23882", + "ident": "OR32", + "type": "closed", + "name": "Simtag Farms Airport", + "latitude_deg": "45.752561", + "longitude_deg": "-119.944717", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Boardman", + "scheduled_service": "no", + "wikipedia_link": "https://web.archive.org/web/20160912145659/https://en.wikipedia.org/wiki/Simtag_Farms_Airport", + "keywords": "OR32" + }, + { + "id": "23883", + "ident": "OR33", + "type": "heliport", + "name": "Central Cascades Fire and EMS Heliport", + "latitude_deg": "43.5267982483", + "longitude_deg": "-121.947998047", + "elevation_ft": "4750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Crescent Lake Junction", + "scheduled_service": "no", + "gps_code": "OR33", + "local_code": "OR33" + }, + { + "id": "23884", + "ident": "OR34", + "type": "small_airport", + "name": "Whippet Field", + "latitude_deg": "44.322703", + "longitude_deg": "-121.431506", + "elevation_ft": "3040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sisters", + "scheduled_service": "no", + "gps_code": "OR34", + "local_code": "OR34" + }, + { + "id": "23885", + "ident": "OR35", + "type": "small_airport", + "name": "Flying K Bar J Ranch Airport", + "latitude_deg": "45.442505", + "longitude_deg": "-122.320204", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Boring", + "scheduled_service": "no", + "gps_code": "OR35", + "local_code": "OR35" + }, + { + "id": "23886", + "ident": "OR36", + "type": "closed", + "name": "Garvins Heliport", + "latitude_deg": "42.067101", + "longitude_deg": "-124.295998", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Brookings", + "scheduled_service": "no", + "gps_code": "OR36", + "local_code": "OR36" + }, + { + "id": "23887", + "ident": "OR37", + "type": "heliport", + "name": "Lincoln Tower Heliport", + "latitude_deg": "45.445098876953125", + "longitude_deg": "-122.77400207519531", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Tigard", + "scheduled_service": "no", + "gps_code": "OR37", + "local_code": "OR37" + }, + { + "id": "23888", + "ident": "OR38", + "type": "small_airport", + "name": "Western Helicopter Services Airport", + "latitude_deg": "45.079309", + "longitude_deg": "-122.92594", + "elevation_ft": "183", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Brooks", + "scheduled_service": "no", + "gps_code": "OR38", + "local_code": "OR38", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harchenko_Industrial_Airport", + "keywords": "Harchenko Industrial" + }, + { + "id": "23889", + "ident": "OR39", + "type": "small_airport", + "name": "Flying Tom Airport", + "latitude_deg": "44.65760040283203", + "longitude_deg": "-123.21199798583984", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Corvallis", + "scheduled_service": "no", + "gps_code": "OR39", + "local_code": "OR39" + }, + { + "id": "23890", + "ident": "OR40", + "type": "small_airport", + "name": "Dietz Airpark", + "latitude_deg": "45.255699157714844", + "longitude_deg": "-122.6510009765625", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Canby", + "scheduled_service": "no", + "gps_code": "OR40", + "local_code": "OR40" + }, + { + "id": "23891", + "ident": "OR41", + "type": "small_airport", + "name": "Workman Airpark", + "latitude_deg": "45.20759963989258", + "longitude_deg": "-122.66899871826172", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Canby", + "scheduled_service": "no", + "gps_code": "OR41", + "local_code": "OR41" + }, + { + "id": "23892", + "ident": "OR42", + "type": "closed", + "name": "Norway Airport", + "latitude_deg": "43.1026", + "longitude_deg": "-124.161003", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Myrtle Point", + "scheduled_service": "no", + "keywords": "OR42" + }, + { + "id": "23893", + "ident": "OR43", + "type": "heliport", + "name": "Hood River Fire Dept Heliport", + "latitude_deg": "45.7028999329", + "longitude_deg": "-121.529998779", + "elevation_ft": "488", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Hood River", + "scheduled_service": "no", + "gps_code": "OR43", + "local_code": "OR43" + }, + { + "id": "23894", + "ident": "OR44", + "type": "closed", + "name": "Briggs Airport", + "latitude_deg": "44.153301", + "longitude_deg": "-123.065002", + "elevation_ft": "387", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Coburg", + "scheduled_service": "no", + "keywords": "OR44" + }, + { + "id": "23895", + "ident": "OR45", + "type": "small_airport", + "name": "West Point Airport", + "latitude_deg": "44.19710159301758", + "longitude_deg": "-123.05599975585938", + "elevation_ft": "378", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Coburg", + "scheduled_service": "no", + "gps_code": "OR45", + "local_code": "OR45" + }, + { + "id": "23896", + "ident": "OR46", + "type": "small_airport", + "name": "Ajax Airport", + "latitude_deg": "45.381186", + "longitude_deg": "-120.46992", + "elevation_ft": "2165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Condon", + "scheduled_service": "no", + "gps_code": "OR46", + "local_code": "OR46" + }, + { + "id": "23897", + "ident": "OR47", + "type": "small_airport", + "name": "Strauch Field", + "latitude_deg": "44.188434", + "longitude_deg": "-123.189916", + "elevation_ft": "335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Junction City", + "scheduled_service": "no", + "gps_code": "OR47", + "local_code": "OR47" + }, + { + "id": "23898", + "ident": "OR48", + "type": "small_airport", + "name": "Snyder Ranch Airport", + "latitude_deg": "45.19430160522461", + "longitude_deg": "-120.21700286865234", + "elevation_ft": "2655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Condon", + "scheduled_service": "no", + "gps_code": "OR48", + "local_code": "OR48" + }, + { + "id": "23899", + "ident": "OR49", + "type": "heliport", + "name": "Bay Area Hospital Heliport", + "latitude_deg": "43.382939", + "longitude_deg": "-124.232106", + "elevation_ft": "93", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Coos Bay", + "scheduled_service": "no", + "gps_code": "OR49", + "local_code": "OR49", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bay_Area_Hospital_Heliport" + }, + { + "id": "23900", + "ident": "OR50", + "type": "small_airport", + "name": "Lehman Field", + "latitude_deg": "45.48569869995117", + "longitude_deg": "-122.23400115966797", + "elevation_ft": "1003", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Corbett", + "scheduled_service": "no", + "gps_code": "OR50", + "local_code": "OR50" + }, + { + "id": "23901", + "ident": "OR51", + "type": "small_airport", + "name": "Gillette Field", + "latitude_deg": "44.719600677490234", + "longitude_deg": "-122.69999694824219", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Scio", + "scheduled_service": "no", + "gps_code": "OR51", + "local_code": "OR51" + }, + { + "id": "23902", + "ident": "OR52", + "type": "small_airport", + "name": "Venell Airport", + "latitude_deg": "44.4734992980957", + "longitude_deg": "-123.3030014038086", + "elevation_ft": "246", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Corvallis", + "scheduled_service": "no", + "gps_code": "OR52", + "local_code": "OR52" + }, + { + "id": "23903", + "ident": "OR53", + "type": "small_airport", + "name": "Wapinitia Airport", + "latitude_deg": "45.14569854736328", + "longitude_deg": "-121.22899627685547", + "elevation_ft": "1910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Wapinitia", + "scheduled_service": "no", + "gps_code": "OR53", + "local_code": "OR53" + }, + { + "id": "23904", + "ident": "OR54", + "type": "small_airport", + "name": "Winn Airport", + "latitude_deg": "44.5984992980957", + "longitude_deg": "-123.20700073242188", + "elevation_ft": "205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Corvallis", + "scheduled_service": "no", + "gps_code": "OR54", + "local_code": "OR54" + }, + { + "id": "23905", + "ident": "OR55", + "type": "heliport", + "name": "Good Samaritan Hospital Heliport", + "latitude_deg": "44.6044933803", + "longitude_deg": "-123.251892328", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Corvallis", + "scheduled_service": "no", + "gps_code": "OR55", + "local_code": "OR55", + "wikipedia_link": "https://en.wikipedia.org/wiki/Good_Samaritan_Hospital_Heliport" + }, + { + "id": "23906", + "ident": "OR56", + "type": "closed", + "name": "Holiday Airport", + "latitude_deg": "44.569801", + "longitude_deg": "-123.170998", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Corvallis", + "scheduled_service": "no", + "keywords": "OR56" + }, + { + "id": "23907", + "ident": "OR57", + "type": "small_airport", + "name": "Walker Airport", + "latitude_deg": "43.86869812011719", + "longitude_deg": "-123.03399658203125", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Creswell", + "scheduled_service": "no", + "gps_code": "OR57", + "local_code": "OR57" + }, + { + "id": "23908", + "ident": "OR58", + "type": "closed", + "name": "Mazama Timber Pad Heliport", + "latitude_deg": "43.9165", + "longitude_deg": "-123.010002", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Creswell", + "scheduled_service": "no", + "keywords": "OR58" + }, + { + "id": "23909", + "ident": "OR59", + "type": "small_airport", + "name": "Trivelpiece Airport", + "latitude_deg": "45.33150100708008", + "longitude_deg": "-123.20700073242188", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Yamhill", + "scheduled_service": "no", + "gps_code": "OR59", + "local_code": "OR59" + }, + { + "id": "23910", + "ident": "OR60", + "type": "small_airport", + "name": "Fargher Airport", + "latitude_deg": "45.436500549316406", + "longitude_deg": "-121.16600036621094", + "elevation_ft": "1440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Dufur", + "scheduled_service": "no", + "gps_code": "OR60", + "local_code": "OR60" + }, + { + "id": "23911", + "ident": "OR61", + "type": "small_airport", + "name": "Apple Valley Airport", + "latitude_deg": "45.67839813232422", + "longitude_deg": "-123.18599700927734", + "elevation_ft": "247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Buxton", + "scheduled_service": "no", + "gps_code": "OR61", + "local_code": "OR61" + }, + { + "id": "23912", + "ident": "OR62", + "type": "closed", + "name": "Rainier Heliport", + "latitude_deg": "46.103199", + "longitude_deg": "-122.987999", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Rainier", + "scheduled_service": "no", + "keywords": "OR62" + }, + { + "id": "23913", + "ident": "OR63", + "type": "heliport", + "name": "Seaside Heliport", + "latitude_deg": "45.84149932861328", + "longitude_deg": "-123.927001953125", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Seaside", + "scheduled_service": "no", + "gps_code": "OR63", + "local_code": "OR63" + }, + { + "id": "23914", + "ident": "OR64", + "type": "small_airport", + "name": "Beach Ranch Airport", + "latitude_deg": "45.96379852294922", + "longitude_deg": "-117.23500061035156", + "elevation_ft": "4000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Enterprise", + "scheduled_service": "no", + "gps_code": "OR64", + "local_code": "OR64" + }, + { + "id": "23915", + "ident": "OR65", + "type": "small_airport", + "name": "Eagle Nest Ranch Airport", + "latitude_deg": "45.354801177978516", + "longitude_deg": "-122.34600067138672", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Estacada", + "scheduled_service": "no", + "gps_code": "OR65", + "local_code": "OR65" + }, + { + "id": "23916", + "ident": "OR66", + "type": "small_airport", + "name": "Beaver Oaks Airport", + "latitude_deg": "45.317711", + "longitude_deg": "-122.363205", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Estacada", + "scheduled_service": "no", + "gps_code": "OR66", + "local_code": "OR66" + }, + { + "id": "23917", + "ident": "OR67", + "type": "closed", + "name": "McGill Airport", + "latitude_deg": "45.336569", + "longitude_deg": "-122.398356", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Estacada", + "scheduled_service": "no", + "keywords": "OR67" + }, + { + "id": "23918", + "ident": "OR68", + "type": "heliport", + "name": "Columbia Helicopters Heliport", + "latitude_deg": "45.25859832763672", + "longitude_deg": "-122.76499938964844", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Aurora", + "scheduled_service": "no", + "gps_code": "OR68", + "local_code": "OR68" + }, + { + "id": "23919", + "ident": "OR69", + "type": "heliport", + "name": "Sacred Heart General Hospital Heliport", + "latitude_deg": "44.04710006713867", + "longitude_deg": "-123.07599639892578", + "elevation_ft": "498", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Eugene", + "scheduled_service": "no", + "gps_code": "OR69", + "local_code": "OR69" + }, + { + "id": "23920", + "ident": "OR70", + "type": "small_airport", + "name": "Pine Valley Airport", + "latitude_deg": "44.85960006713867", + "longitude_deg": "-117.08799743652344", + "elevation_ft": "2577", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Halfway", + "scheduled_service": "no", + "gps_code": "OR70", + "local_code": "OR70" + }, + { + "id": "23921", + "ident": "OR71", + "type": "heliport", + "name": "Columbia Aviation Heliport", + "latitude_deg": "45.250599", + "longitude_deg": "-122.765999", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Aurora", + "scheduled_service": "no", + "gps_code": "OR68", + "local_code": "OR68" + }, + { + "id": "23922", + "ident": "OR72", + "type": "small_airport", + "name": "Fly JLA Airport", + "latitude_deg": "45.441893", + "longitude_deg": "-122.323619", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Boring", + "scheduled_service": "no", + "gps_code": "OR72", + "local_code": "OR72", + "keywords": "Krueger" + }, + { + "id": "23923", + "ident": "OR73", + "type": "small_airport", + "name": "Calvert Peak Airport", + "latitude_deg": "42.778765", + "longitude_deg": "-123.734557", + "elevation_ft": "3808", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Glendale", + "scheduled_service": "no", + "gps_code": "OR73", + "local_code": "OR73" + }, + { + "id": "23924", + "ident": "OR74", + "type": "small_airport", + "name": "Winkle Bar Airport", + "latitude_deg": "42.701677", + "longitude_deg": "-123.806412", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Agness", + "scheduled_service": "no", + "gps_code": "OR74", + "local_code": "OR74" + }, + { + "id": "23925", + "ident": "OR75", + "type": "heliport", + "name": "Brownlee Heliport", + "latitude_deg": "44.8466197854", + "longitude_deg": "-116.898694038", + "elevation_ft": "1860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Brownlee Village", + "scheduled_service": "no", + "gps_code": "OR75", + "local_code": "OR75", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brownlee_Heliport#Heliport" + }, + { + "id": "23926", + "ident": "OR76", + "type": "closed", + "name": "Waynes Air Service Airport", + "latitude_deg": "44.363201", + "longitude_deg": "-123.139999", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Halsey", + "scheduled_service": "no", + "keywords": "OR76" + }, + { + "id": "23927", + "ident": "OR77", + "type": "small_airport", + "name": "Faust Field Airport", + "latitude_deg": "44.8003997803", + "longitude_deg": "-123.15599823", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Independence", + "scheduled_service": "no", + "gps_code": "OR77", + "local_code": "OR77" + }, + { + "id": "23928", + "ident": "OR78", + "type": "small_airport", + "name": "Daniels Field", + "latitude_deg": "44.270521", + "longitude_deg": "-123.06208", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Harrisburg", + "scheduled_service": "no", + "gps_code": "OR78", + "local_code": "OR78" + }, + { + "id": "23929", + "ident": "OR79", + "type": "closed", + "name": "Knox's Private Airstrip", + "latitude_deg": "44.281123", + "longitude_deg": "-123.134646", + "elevation_ft": "313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Harrisburg", + "scheduled_service": "no", + "keywords": "OR79" + }, + { + "id": "23930", + "ident": "OR80", + "type": "closed", + "name": "Teufel's Farm Strip", + "latitude_deg": "45.509601593", + "longitude_deg": "-122.971000671", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "OR80", + "local_code": "OR80" + }, + { + "id": "23931", + "ident": "OR81", + "type": "small_airport", + "name": "Olinger Airpark", + "latitude_deg": "45.553261", + "longitude_deg": "-123.021075", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "OR81", + "local_code": "OR81" + }, + { + "id": "23932", + "ident": "OR82", + "type": "closed", + "name": "United Telephone System Heliport", + "latitude_deg": "45.713027", + "longitude_deg": "-121.532269", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Hood River", + "scheduled_service": "no", + "wikipedia_link": "https://web.archive.org/web/20160913230958/https://en.wikipedia.org/wiki/United_Telephone_System_Heliport", + "keywords": "OR82" + }, + { + "id": "23933", + "ident": "OR83", + "type": "heliport", + "name": "Oxbow Heliport", + "latitude_deg": "44.81650161743164", + "longitude_deg": "-116.85900115966797", + "elevation_ft": "1900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Oxbow Village", + "scheduled_service": "no", + "gps_code": "OR83", + "local_code": "OR83" + }, + { + "id": "23934", + "ident": "OR84", + "type": "closed", + "name": "La Pine Heliport", + "latitude_deg": "43.6646", + "longitude_deg": "-121.508003", + "elevation_ft": "4230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "La Pine", + "scheduled_service": "no", + "keywords": "OR84" + }, + { + "id": "23935", + "ident": "OR85", + "type": "closed", + "name": "Wigrich Airport", + "latitude_deg": "44.812302", + "longitude_deg": "-123.150002", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Independence", + "scheduled_service": "no", + "keywords": "OR85" + }, + { + "id": "23936", + "ident": "OR86", + "type": "small_airport", + "name": "Gilmour Ag Air Airport", + "latitude_deg": "44.755401611299995", + "longitude_deg": "-123.04699707", + "elevation_ft": "244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Jefferson", + "scheduled_service": "no", + "gps_code": "OR86", + "local_code": "OR86" + }, + { + "id": "23937", + "ident": "OR87", + "type": "small_airport", + "name": "Blue Skies Farm Airport", + "latitude_deg": "44.966111", + "longitude_deg": "-122.9225", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "OR87", + "local_code": "OR87" + }, + { + "id": "23938", + "ident": "OR88", + "type": "heliport", + "name": "Jantzer Heliport", + "latitude_deg": "42.440102", + "longitude_deg": "-123.279999", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Grants Pass", + "scheduled_service": "no", + "gps_code": "OR88", + "local_code": "OR88" + }, + { + "id": "23939", + "ident": "OR89", + "type": "small_airport", + "name": "Kinzua Airport", + "latitude_deg": "44.999900817871094", + "longitude_deg": "-120.0530014038086", + "elevation_ft": "3966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Kinzua", + "scheduled_service": "no", + "gps_code": "OR89", + "local_code": "OR89" + }, + { + "id": "23940", + "ident": "OR90", + "type": "small_airport", + "name": "Lafayette Airstrip", + "latitude_deg": "45.244300842285156", + "longitude_deg": "-123.12899780273438", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "OR90", + "local_code": "OR90" + }, + { + "id": "23941", + "ident": "OR91", + "type": "heliport", + "name": "Big Bar Heliport", + "latitude_deg": "45.124900817871094", + "longitude_deg": "-116.74700164794922", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Homestead", + "scheduled_service": "no", + "gps_code": "OR91", + "local_code": "OR91" + }, + { + "id": "23942", + "ident": "OR92", + "type": "closed", + "name": "Billiebob Ultralightport", + "latitude_deg": "42.391499", + "longitude_deg": "-123.436996", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Grants Pass", + "scheduled_service": "no", + "keywords": "OR92" + }, + { + "id": "23943", + "ident": "OR93", + "type": "heliport", + "name": "Samaritan North Lincoln Hospital Heliport", + "latitude_deg": "44.986276", + "longitude_deg": "-123.994141", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Lincoln City", + "scheduled_service": "no", + "gps_code": "OR93", + "local_code": "OR93" + }, + { + "id": "23944", + "ident": "OR94", + "type": "small_airport", + "name": "Showa Airport", + "latitude_deg": "44.391700744628906", + "longitude_deg": "-123.02999877929688", + "elevation_ft": "298", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Brownsville", + "scheduled_service": "no", + "gps_code": "OR94", + "local_code": "OR94" + }, + { + "id": "23945", + "ident": "OR95", + "type": "small_airport", + "name": "Vineyard Airport", + "latitude_deg": "45.049800872802734", + "longitude_deg": "-123.23500061035156", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Mc Coy", + "scheduled_service": "no", + "gps_code": "OR95", + "local_code": "OR95" + }, + { + "id": "23946", + "ident": "OR96", + "type": "small_airport", + "name": "Beagle Sky Ranch Airport", + "latitude_deg": "42.53900146484375", + "longitude_deg": "-122.90399932861328", + "elevation_ft": "1436", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Medford", + "scheduled_service": "no", + "gps_code": "OR96", + "local_code": "OR96" + }, + { + "id": "23947", + "ident": "OR97", + "type": "closed", + "name": "Burrill Airport", + "latitude_deg": "42.438702", + "longitude_deg": "-122.863998", + "elevation_ft": "1310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Medford", + "scheduled_service": "no", + "keywords": "OR97" + }, + { + "id": "23948", + "ident": "OR98", + "type": "closed", + "name": "Seneca Emergency Airstrip", + "latitude_deg": "44.138055", + "longitude_deg": "-118.959446", + "elevation_ft": "4666", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Seneca", + "scheduled_service": "no", + "keywords": "OR98" + }, + { + "id": "23949", + "ident": "OR99", + "type": "heliport", + "name": "Rogue Valley Medical Center Heliport", + "latitude_deg": "42.317975", + "longitude_deg": "-122.831751", + "elevation_ft": "1475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Medford", + "scheduled_service": "no", + "gps_code": "OR99", + "local_code": "OR99" + }, + { + "id": "5286", + "ident": "ORAA", + "type": "medium_airport", + "name": "Al Asad Air Base", + "latitude_deg": "33.7855987549", + "longitude_deg": "42.4412002563", + "elevation_ft": "618", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "municipality": "Hīt", + "scheduled_service": "no", + "gps_code": "ORAA", + "iata_code": "IQA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Al_Asad_Airbase", + "keywords": "Qadisiyah Airbase" + }, + { + "id": "5287", + "ident": "ORAT", + "type": "medium_airport", + "name": "Al Taqaddum Air Base", + "latitude_deg": "33.33810043335", + "longitude_deg": "43.597099304199", + "elevation_ft": "275", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "municipality": "Al Habbaniyah", + "scheduled_service": "no", + "gps_code": "ORAT", + "iata_code": "TQD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Al_Taqaddum", + "keywords": "Tammuz Airbase, Al Fallujah, Greene Field" + }, + { + "id": "30776", + "ident": "ORBB", + "type": "small_airport", + "name": "Bamarni Airport", + "latitude_deg": "37.09880065917969", + "longitude_deg": "43.2666015625", + "elevation_ft": "3455", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-DA", + "municipality": "Bamarni", + "scheduled_service": "no", + "gps_code": "ORBB", + "iata_code": "BMN" + }, + { + "id": "5288", + "ident": "ORBD", + "type": "medium_airport", + "name": "Balad Southeast Airport / Joint Base Balad", + "latitude_deg": "33.940201", + "longitude_deg": "44.361599", + "elevation_ft": "161", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-SD", + "municipality": "Al Bakr", + "scheduled_service": "no", + "gps_code": "ORBD", + "local_code": "OR9", + "wikipedia_link": "https://en.wikipedia.org/wiki/Joint_Base_Balad", + "keywords": "Balad Southeast Air Base,Al-Bakir Air Base, Camp Anaconda, قاعدة البكر الجوية" + }, + { + "id": "5289", + "ident": "ORBI", + "type": "large_airport", + "name": "Baghdad International Airport / New Al Muthana Air Base", + "latitude_deg": "33.262501", + "longitude_deg": "44.2346", + "elevation_ft": "114", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-BG", + "municipality": "Baghdad", + "scheduled_service": "yes", + "gps_code": "ORBI", + "iata_code": "BGW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baghdad_International_Airport", + "keywords": "SDA, BIAP, VBC, ORBS, Camp Sather, Saddam International Airport, Al Anbar Airport" + }, + { + "id": "5290", + "ident": "ORBM", + "type": "medium_airport", + "name": "Mosul International Airport", + "latitude_deg": "36.305801", + "longitude_deg": "43.1474", + "elevation_ft": "719", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-NI", + "municipality": "Mosul", + "scheduled_service": "no", + "gps_code": "ORBM", + "iata_code": "OSM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mosul_International_Airport", + "keywords": "OSB" + }, + { + "id": "5291", + "ident": "ORBR", + "type": "small_airport", + "name": "Bashur Airfield", + "latitude_deg": "36.5336990356", + "longitude_deg": "44.3399009705", + "elevation_ft": "2079", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AR", + "municipality": "Bashur", + "scheduled_service": "no", + "gps_code": "ORBR" + }, + { + "id": "342107", + "ident": "ORDD", + "type": "closed", + "name": "Duhok International Airport (under construction)", + "latitude_deg": "36.9249", + "longitude_deg": "42.7331", + "elevation_ft": "1598", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-DA", + "municipality": "Sêmêl", + "scheduled_service": "no", + "gps_code": "ORDD", + "iata_code": "DHK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Duhok_International_Airport" + }, + { + "id": "5292", + "ident": "ORER", + "type": "medium_airport", + "name": "Erbil International Airport", + "latitude_deg": "36.23759841918945", + "longitude_deg": "43.963199615478516", + "elevation_ft": "1341", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AR", + "municipality": "Arbil", + "scheduled_service": "yes", + "gps_code": "ORER", + "iata_code": "EBL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Erbil_International_Airport", + "keywords": "Irbil, Kurdistan, فروکه‌خانه‌ی نيوده‌وله‌تی هه‌ولير" + }, + { + "id": "23950", + "ident": "ORI", + "type": "small_airport", + "name": "Port Lions Airport", + "latitude_deg": "57.884905", + "longitude_deg": "-152.847719", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Port Lions", + "scheduled_service": "yes", + "iata_code": "ORI", + "local_code": "ORI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Lions_Airport" + }, + { + "id": "5293", + "ident": "ORKK", + "type": "medium_airport", + "name": "Kirkuk Air Base", + "latitude_deg": "35.46950149536133", + "longitude_deg": "44.348899841308594", + "elevation_ft": "1061", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-TS", + "municipality": "Kirkuk", + "scheduled_service": "no", + "gps_code": "ORKK", + "iata_code": "KIK" + }, + { + "id": "5294", + "ident": "ORMM", + "type": "medium_airport", + "name": "Basra International Airport", + "latitude_deg": "30.549101", + "longitude_deg": "47.662102", + "elevation_ft": "11", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-BA", + "municipality": "Basra", + "scheduled_service": "yes", + "gps_code": "ORMM", + "iata_code": "BSR", + "home_link": "http://www.basrainternationalairport.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Basra_International_Airport", + "keywords": "Basrah" + }, + { + "id": "311028", + "ident": "ORNI", + "type": "medium_airport", + "name": "Al Najaf International Airport", + "latitude_deg": "31.989853", + "longitude_deg": "44.404317", + "elevation_ft": "103", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-NA", + "municipality": "Najaf", + "scheduled_service": "yes", + "gps_code": "ORNI", + "iata_code": "NJF", + "home_link": "http://www.alnajafairport.net/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Al_Najaf_International_Airport" + }, + { + "id": "5295", + "ident": "ORQW", + "type": "medium_airport", + "name": "Qayyarah West Airport", + "latitude_deg": "35.76720047", + "longitude_deg": "43.125099182099994", + "elevation_ft": "749", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-NI", + "municipality": "Qayyarah", + "scheduled_service": "no", + "gps_code": "ORQW", + "iata_code": "RQW" + }, + { + "id": "300117", + "ident": "ORRW", + "type": "heliport", + "name": "Korean Village Forward Operating Base", + "latitude_deg": "33.019166666699995", + "longitude_deg": "39.9383333333", + "elevation_ft": "2442", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-AN", + "scheduled_service": "no", + "gps_code": "ORRW" + }, + { + "id": "5296", + "ident": "ORSH", + "type": "medium_airport", + "name": "Al Sahra Army Air Field", + "latitude_deg": "34.673199", + "longitude_deg": "43.542999", + "elevation_ft": "451", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-SD", + "municipality": "Tikrit", + "scheduled_service": "no", + "gps_code": "ORSH", + "keywords": "Camp Speicher" + }, + { + "id": "5297", + "ident": "ORSU", + "type": "medium_airport", + "name": "Sulaymaniyah International Airport", + "latitude_deg": "35.5617485046", + "longitude_deg": "45.316738128699996", + "elevation_ft": "2494", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-SW", + "municipality": "Sulaymaniyah", + "scheduled_service": "yes", + "gps_code": "ORSU", + "iata_code": "ISU", + "local_code": "OSO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sulaimaniyah_International_Airport", + "keywords": "Kurd, Kurdish, Kurdistan" + }, + { + "id": "5298", + "ident": "ORTF", + "type": "medium_airport", + "name": "Tall Afar Army Air Field", + "latitude_deg": "36.28310012817383", + "longitude_deg": "42.40299987792969", + "elevation_ft": "996", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-NI", + "municipality": "Tall Afar", + "scheduled_service": "no", + "gps_code": "ORTF" + }, + { + "id": "5299", + "ident": "ORTI", + "type": "medium_airport", + "name": "Al Taji Army Air Field", + "latitude_deg": "33.52389907836914", + "longitude_deg": "44.25669860839844", + "elevation_ft": "121", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-BG", + "municipality": "Taji", + "scheduled_service": "no", + "gps_code": "ORTI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taji,_Iraq#Camp_Taji" + }, + { + "id": "5300", + "ident": "ORTL", + "type": "medium_airport", + "name": "Ali Air Base", + "latitude_deg": "30.935801", + "longitude_deg": "46.090099", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-DQ", + "municipality": "Nasiriyah", + "scheduled_service": "no", + "gps_code": "ORTL", + "iata_code": "XNH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ali_Air_Base", + "keywords": "Tallil Air Base, Camp Adder" + }, + { + "id": "5301", + "ident": "ORUB", + "type": "medium_airport", + "name": "Ubaydah Bin Al Jarrah Airport", + "latitude_deg": "32.481998", + "longitude_deg": "45.757099", + "elevation_ft": "68", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-WA", + "municipality": "Al Kut", + "scheduled_service": "no", + "gps_code": "ORUB" + }, + { + "id": "44965", + "ident": "ORUQ", + "type": "closed", + "name": "Umm Qasr Airport", + "latitude_deg": "30.021374", + "longitude_deg": "47.921851", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-BA", + "municipality": "Umm Qasr", + "scheduled_service": "no", + "gps_code": "ORUQ" + }, + { + "id": "300116", + "ident": "ORWH", + "type": "heliport", + "name": "Washington Army Heliport", + "latitude_deg": "33.304688", + "longitude_deg": "44.403719", + "elevation_ft": "139", + "continent": "AS", + "iso_country": "IQ", + "iso_region": "IQ-BG", + "municipality": "Baghdad", + "scheduled_service": "no", + "gps_code": "ORWH", + "keywords": "Republican Palace Heliport" + }, + { + "id": "6339", + "ident": "OS57", + "type": "medium_airport", + "name": "Abu ad Duhur Air Base", + "latitude_deg": "35.732200622558594", + "longitude_deg": "37.10419845581055", + "elevation_ft": "846", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-HL", + "municipality": "Abu ad Duhur", + "scheduled_service": "no", + "keywords": "OS57, Abu ad Duhor" + }, + { + "id": "6340", + "ident": "OS58", + "type": "small_airport", + "name": "Hamah Air Base", + "latitude_deg": "35.11819839477539", + "longitude_deg": "36.71120071411133", + "elevation_ft": "1014", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-HM", + "scheduled_service": "no", + "gps_code": "OS58", + "local_code": "OS58" + }, + { + "id": "6341", + "ident": "OS59", + "type": "small_airport", + "name": "Al Tabqah Airport", + "latitude_deg": "35.7547", + "longitude_deg": "38.566799", + "elevation_ft": "1050", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-RA", + "municipality": "Al Tabqah", + "scheduled_service": "no", + "gps_code": "OS59", + "local_code": "OS59", + "keywords": "Tabqa" + }, + { + "id": "6342", + "ident": "OS60", + "type": "small_airport", + "name": "As Suwayda West Air Base", + "latitude_deg": "32.7052001953125", + "longitude_deg": "36.412899017333984", + "elevation_ft": "2460", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-SU", + "municipality": "As Suwayda", + "scheduled_service": "no", + "keywords": "OS60" + }, + { + "id": "6343", + "ident": "OS61", + "type": "small_airport", + "name": "Dumayr Air Base", + "latitude_deg": "33.60960006713867", + "longitude_deg": "36.749000549316406", + "elevation_ft": "2060", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-DI", + "scheduled_service": "no", + "gps_code": "OS61", + "local_code": "OS61" + }, + { + "id": "6344", + "ident": "OS62", + "type": "small_airport", + "name": "Jirah Air Base", + "latitude_deg": "36.096699", + "longitude_deg": "37.936501", + "elevation_ft": "1145", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-HL", + "municipality": "Al Mahdum", + "scheduled_service": "no", + "gps_code": "OS62", + "local_code": "OS62" + }, + { + "id": "6345", + "ident": "OS63", + "type": "small_airport", + "name": "Marj Ruhayyil Air Base", + "latitude_deg": "33.2864990234375", + "longitude_deg": "36.457401275634766", + "elevation_ft": "2190", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-DI", + "municipality": "Marj Ruhayyil", + "scheduled_service": "no", + "gps_code": "OS63", + "local_code": "OS63" + }, + { + "id": "6346", + "ident": "OS64", + "type": "medium_airport", + "name": "An Nasiriyah Air Base", + "latitude_deg": "33.91899871826172", + "longitude_deg": "36.866600036621094", + "elevation_ft": "2727", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-DI", + "scheduled_service": "no", + "keywords": "OS64" + }, + { + "id": "6347", + "ident": "OS65", + "type": "small_airport", + "name": "Shayrat Air Base", + "latitude_deg": "34.490299", + "longitude_deg": "36.909004", + "elevation_ft": "2644", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-HI", + "municipality": "Shayrat", + "scheduled_service": "no", + "gps_code": "OS65", + "local_code": "OS65", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shayrat_Air_Base" + }, + { + "id": "6348", + "ident": "OS66", + "type": "small_airport", + "name": "Rasm Al-Abboud Air Base", + "latitude_deg": "36.187099", + "longitude_deg": "37.583199", + "elevation_ft": "1207", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-HL", + "municipality": "Kuweires Sharqi", + "scheduled_service": "no", + "gps_code": "OS66", + "local_code": "OS66", + "keywords": "Kuweires, Rasin El Abboud" + }, + { + "id": "6349", + "ident": "OS67", + "type": "small_airport", + "name": "Mezzeh Airport", + "latitude_deg": "33.4775", + "longitude_deg": "36.2234", + "elevation_ft": "2407", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-DI", + "municipality": "Mezzeh", + "scheduled_service": "no", + "gps_code": "OS67", + "local_code": "OS67", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mezzeh_Military_Airport" + }, + { + "id": "6350", + "ident": "OS68", + "type": "small_airport", + "name": "Saiqal Air Base", + "latitude_deg": "33.68239974975586", + "longitude_deg": "37.21390151977539", + "elevation_ft": "2300", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-DI", + "municipality": "Saiqal", + "scheduled_service": "no", + "gps_code": "OS68", + "local_code": "OS68", + "keywords": "Sayqal" + }, + { + "id": "6351", + "ident": "OS69", + "type": "medium_airport", + "name": "Khalkhalah Air Base", + "latitude_deg": "33.077301025390625", + "longitude_deg": "36.55820846557617", + "elevation_ft": "2310", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-SU", + "municipality": "Buraq", + "scheduled_service": "no", + "keywords": "OS69" + }, + { + "id": "6352", + "ident": "OS70", + "type": "medium_airport", + "name": "Al Qusayr Air Base", + "latitude_deg": "34.56909942626953", + "longitude_deg": "36.57279968261719", + "elevation_ft": "1768", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-HI", + "municipality": "Al-Qusayr", + "scheduled_service": "no", + "keywords": "OS70, القصير" + }, + { + "id": "6353", + "ident": "OS71", + "type": "small_airport", + "name": "Minaq Air Base", + "latitude_deg": "36.521599", + "longitude_deg": "37.0415", + "elevation_ft": "1613", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-HL", + "municipality": "Minaq", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Menagh_Military_Airbase", + "keywords": "OS71" + }, + { + "id": "6354", + "ident": "OS72", + "type": "small_airport", + "name": "Tiyas Air Base", + "latitude_deg": "34.5225982666", + "longitude_deg": "37.629901886", + "elevation_ft": "1805", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-HI", + "municipality": "Tiyas", + "scheduled_service": "no", + "keywords": "OS72" + }, + { + "id": "6355", + "ident": "OS73", + "type": "closed", + "name": "Al Al Airport", + "latitude_deg": "32.7867", + "longitude_deg": "35.717", + "elevation_ft": "1214", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-QU", + "scheduled_service": "no", + "gps_code": "OS73", + "local_code": "OS73", + "keywords": "Pik" + }, + { + "id": "5302", + "ident": "OSAP", + "type": "medium_airport", + "name": "Aleppo International Airport", + "latitude_deg": "36.180698", + "longitude_deg": "37.2244", + "elevation_ft": "1276", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-HL", + "municipality": "Aleppo", + "scheduled_service": "yes", + "gps_code": "OSAP", + "iata_code": "ALP", + "home_link": "http://www.aleppo-airport.com/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aleppo_International_Airport", + "keywords": "مطار حلب الدولي" + }, + { + "id": "5303", + "ident": "OSDI", + "type": "large_airport", + "name": "Damascus International Airport", + "latitude_deg": "33.4114990234375", + "longitude_deg": "36.51559829711914", + "elevation_ft": "2020", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-DI", + "municipality": "Damascus", + "scheduled_service": "yes", + "gps_code": "OSDI", + "iata_code": "DAM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Damascus_International_Airport", + "keywords": "مطار دمشق الدولي" + }, + { + "id": "5304", + "ident": "OSDZ", + "type": "medium_airport", + "name": "Deir ez-Zor Airport", + "latitude_deg": "35.2854", + "longitude_deg": "40.175999", + "elevation_ft": "700", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-DY", + "municipality": "Deir ez-Zor", + "scheduled_service": "no", + "gps_code": "OSDZ", + "iata_code": "DEZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Deir_ez-Zor_Airport", + "keywords": "Al Jafrah Airport, مطار دير الزور" + }, + { + "id": "306992", + "ident": "OSE", + "type": "small_airport", + "name": "Omora Airport", + "latitude_deg": "-7.82777777778", + "longitude_deg": "147.080638889", + "elevation_ft": "2540", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Omora", + "scheduled_service": "no", + "gps_code": "AYOM", + "iata_code": "OSE", + "local_code": "OOA" + }, + { + "id": "306994", + "ident": "OSG", + "type": "small_airport", + "name": "Ossima Airport", + "latitude_deg": "-2.91555555556", + "longitude_deg": "141.297305556", + "elevation_ft": "205", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Ossima", + "scheduled_service": "no", + "gps_code": "AYZS", + "iata_code": "OSG", + "local_code": "OSA" + }, + { + "id": "5305", + "ident": "OSKL", + "type": "medium_airport", + "name": "Qamishli Airport", + "latitude_deg": "37.020599", + "longitude_deg": "41.191399", + "elevation_ft": "1480", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-HA", + "municipality": "Qamishly", + "scheduled_service": "yes", + "gps_code": "OSKL", + "iata_code": "KAC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qamishli_Airport", + "keywords": "مطار القامشلي‎, Kamishly" + }, + { + "id": "5306", + "ident": "OSLK", + "type": "medium_airport", + "name": "Bassel Al-Assad International Airport", + "latitude_deg": "35.4011", + "longitude_deg": "35.9487", + "elevation_ft": "157", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-LA", + "municipality": "Latakia", + "scheduled_service": "yes", + "gps_code": "OSLK", + "iata_code": "LTK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bassel_Al-Assad_International_Airport", + "keywords": "مطار الشهيد باسل الأسد الدولي" + }, + { + "id": "5307", + "ident": "OSPR", + "type": "medium_airport", + "name": "Palmyra Airport", + "latitude_deg": "34.5574", + "longitude_deg": "38.316898", + "elevation_ft": "1322", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-HI", + "municipality": "Tadmur", + "scheduled_service": "no", + "gps_code": "OSPR", + "iata_code": "PMS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palmyra_Airport" + }, + { + "id": "341073", + "ident": "OT62", + "type": "small_airport", + "name": "Umm Al-Shokhot Airport", + "latitude_deg": "25.700539", + "longitude_deg": "51.36303", + "elevation_ft": "40", + "continent": "AS", + "iso_country": "QA", + "iso_region": "QA-SH", + "municipality": "Al-Shahaniya", + "scheduled_service": "no", + "gps_code": "OT62", + "local_code": "OT62" + }, + { + "id": "5308", + "ident": "OTBD", + "type": "medium_airport", + "name": "Doha International Airport", + "latitude_deg": "25.261101", + "longitude_deg": "51.565102", + "elevation_ft": "35", + "continent": "AS", + "iso_country": "QA", + "iso_region": "QA-DA", + "municipality": "Doha", + "scheduled_service": "no", + "gps_code": "OTBD", + "iata_code": "DIA", + "home_link": "http://www.dohaairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Doha_International_Airport", + "keywords": "مطار الدوحة الدولى" + }, + { + "id": "5309", + "ident": "OTBH", + "type": "medium_airport", + "name": "Al Udeid Air Base", + "latitude_deg": "25.1173000336", + "longitude_deg": "51.3149986267", + "elevation_ft": "130", + "continent": "AS", + "iso_country": "QA", + "iso_region": "QA-RA", + "municipality": "Ar Rayyan", + "scheduled_service": "no", + "gps_code": "OTBH", + "iata_code": "XJD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Al_Udeid_Air_Base" + }, + { + "id": "5310", + "ident": "OTBK", + "type": "small_airport", + "name": "Al Khawr Airport", + "latitude_deg": "25.629601", + "longitude_deg": "51.506699", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "QA", + "iso_region": "QA-KH", + "municipality": "Al Khawr", + "scheduled_service": "no", + "gps_code": "OTBK", + "keywords": "Al Khor" + }, + { + "id": "44686", + "ident": "OTHH", + "type": "large_airport", + "name": "Hamad International Airport", + "latitude_deg": "25.273056", + "longitude_deg": "51.608056", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "QA", + "iso_region": "QA-DA", + "municipality": "Doha", + "scheduled_service": "yes", + "gps_code": "OTHH", + "iata_code": "DOH", + "home_link": "http://dohahamadairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hamad_International_Airport", + "keywords": "New Doha International Airport" + }, + { + "id": "301201", + "ident": "OTT", + "type": "small_airport", + "name": "Andre Maggi Airport", + "latitude_deg": "-9.898611", + "longitude_deg": "-58.581944", + "elevation_ft": "900", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cotriguaçu", + "scheduled_service": "no", + "iata_code": "OTT", + "keywords": "SJKB" + }, + { + "id": "319233", + "ident": "OUM", + "type": "small_airport", + "name": "Oum Hadjer Airport", + "latitude_deg": "13.278244", + "longitude_deg": "19.710256", + "elevation_ft": "1198", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-BA", + "municipality": "Oum Hadjer", + "scheduled_service": "no", + "iata_code": "OUM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oum_Hadjer_Airport" + }, + { + "id": "322376", + "ident": "OVER", + "type": "closed", + "name": "Overturf Field", + "latitude_deg": "34.997736", + "longitude_deg": "-91.978145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Austin", + "scheduled_service": "no", + "keywords": "OVER, OVERTF" + }, + { + "id": "316827", + "ident": "OXO", + "type": "small_airport", + "name": "Orientos Airport", + "latitude_deg": "-28.0598", + "longitude_deg": "141.5361", + "elevation_ft": "375", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Orientos", + "scheduled_service": "no", + "iata_code": "OXO" + }, + { + "id": "26977", + "ident": "OY74", + "type": "medium_airport", + "name": "Al Anad Air Base", + "latitude_deg": "13.1747", + "longitude_deg": "44.765099", + "elevation_ft": "900", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-LA", + "municipality": "Al Anad", + "scheduled_service": "no", + "keywords": "OY74" + }, + { + "id": "26978", + "ident": "OY75", + "type": "small_airport", + "name": "Canoxy Airport", + "latitude_deg": "15.6018", + "longitude_deg": "49.0807", + "elevation_ft": "3300", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-HD", + "municipality": "Heru", + "scheduled_service": "no", + "gps_code": "OY75", + "local_code": "OY75" + }, + { + "id": "5311", + "ident": "OYAA", + "type": "medium_airport", + "name": "Aden International Airport", + "latitude_deg": "12.8295", + "longitude_deg": "45.028801", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-AD", + "municipality": "Aden", + "scheduled_service": "yes", + "gps_code": "OYAA", + "iata_code": "ADE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aden_International_Airport", + "keywords": "RAF Khormaksar" + }, + { + "id": "30960", + "ident": "OYAB", + "type": "small_airport", + "name": "Abs Airport", + "latitude_deg": "16.010983", + "longitude_deg": "43.176771", + "elevation_ft": "651", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-SN", + "municipality": "Abs", + "scheduled_service": "no", + "gps_code": "OYAB", + "iata_code": "EAB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abbs_Airport", + "keywords": "Abbs, Abbse" + }, + { + "id": "5312", + "ident": "OYAT", + "type": "medium_airport", + "name": "Ataq Airport", + "latitude_deg": "14.5513", + "longitude_deg": "46.826199", + "elevation_ft": "3735", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-SH", + "municipality": "Ataq", + "scheduled_service": "no", + "gps_code": "OYAT", + "iata_code": "AXK" + }, + { + "id": "5313", + "ident": "OYBA", + "type": "small_airport", + "name": "Al Badie Airport", + "latitude_deg": "18.720709", + "longitude_deg": "50.835771", + "elevation_ft": "908", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-HD", + "municipality": "Dhula'", + "scheduled_service": "no", + "gps_code": "OYBA" + }, + { + "id": "32138", + "ident": "OYBI", + "type": "small_airport", + "name": "Al-Bayda Airport", + "latitude_deg": "14.105974", + "longitude_deg": "45.441079", + "elevation_ft": "6120", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-BA", + "municipality": "Al-Bayda", + "scheduled_service": "no", + "gps_code": "OYBI", + "iata_code": "BYD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Al_Bayda%27_Airport_(Yemen)" + }, + { + "id": "5314", + "ident": "OYBN", + "type": "small_airport", + "name": "Beihan Airport", + "latitude_deg": "14.781714", + "longitude_deg": "45.719703", + "elevation_ft": "3800", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-SH", + "municipality": "Beihan", + "scheduled_service": "no", + "gps_code": "OYBN", + "iata_code": "BHN" + }, + { + "id": "32139", + "ident": "OYBQ", + "type": "small_airport", + "name": "Al-Bough Airport", + "latitude_deg": "17.3467006683", + "longitude_deg": "44.621700286899994", + "elevation_ft": "3800", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-SD", + "municipality": "Al-Bough", + "scheduled_service": "no", + "gps_code": "OYBQ", + "iata_code": "BUK", + "keywords": "Albuq, Al Buq, Albuqa" + }, + { + "id": "5315", + "ident": "OYGD", + "type": "medium_airport", + "name": "Al Ghaydah International Airport", + "latitude_deg": "16.193341", + "longitude_deg": "52.174186", + "elevation_ft": "134", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-MR", + "municipality": "Al Ghaydah", + "scheduled_service": "yes", + "gps_code": "OYGD", + "iata_code": "AAY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Al_Ghaydah_Airport" + }, + { + "id": "5316", + "ident": "OYHD", + "type": "medium_airport", + "name": "Hodeidah International Airport", + "latitude_deg": "14.753000259399414", + "longitude_deg": "42.97629928588867", + "elevation_ft": "41", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-HU", + "municipality": "Hodeida", + "scheduled_service": "yes", + "gps_code": "OYHD", + "iata_code": "HOD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hodeida_International_Airport", + "keywords": "Al Hudaydah International Airport" + }, + { + "id": "32140", + "ident": "OYKM", + "type": "small_airport", + "name": "Kamaran Airport", + "latitude_deg": "15.368755", + "longitude_deg": "42.612515", + "elevation_ft": "51", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-MU", + "municipality": "Kamaran", + "scheduled_service": "no", + "gps_code": "OYKM", + "iata_code": "KAM" + }, + { + "id": "31994", + "ident": "OYMB", + "type": "small_airport", + "name": "Marib Airport", + "latitude_deg": "15.469228", + "longitude_deg": "45.327272", + "elevation_ft": "3300", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-MA", + "municipality": "Marib", + "scheduled_service": "no", + "gps_code": "OYMB", + "iata_code": "MYN" + }, + { + "id": "316933", + "ident": "OYMS", + "type": "small_airport", + "name": "Mukeiras Airport", + "latitude_deg": "13.9368", + "longitude_deg": "45.657", + "elevation_ft": "7080", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-BA", + "municipality": "Mukayras", + "scheduled_service": "no", + "gps_code": "OYMS", + "iata_code": "UKR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mukeiras_Airport", + "keywords": "Mukayras, OYMK" + }, + { + "id": "31667", + "ident": "OYQN", + "type": "small_airport", + "name": "Qishn Airport", + "latitude_deg": "15.417", + "longitude_deg": "51.682999", + "elevation_ft": "100", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-MR", + "municipality": "Qishn", + "scheduled_service": "no", + "gps_code": "OYQN", + "iata_code": "IHN" + }, + { + "id": "5317", + "ident": "OYRN", + "type": "medium_airport", + "name": "Riyan Mukalla International Airport", + "latitude_deg": "14.6626", + "longitude_deg": "49.375", + "elevation_ft": "54", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-HD", + "municipality": "Riyan", + "scheduled_service": "yes", + "gps_code": "OYRN", + "iata_code": "RIY", + "wikipedia_link": "https://en.m.wikipedia.org/wiki/Riyan_International_Airport", + "keywords": "ريان المكلا الدولي" + }, + { + "id": "32142", + "ident": "OYRT", + "type": "small_airport", + "name": "Barat Airport", + "latitude_deg": "16.732999801635742", + "longitude_deg": "44.349998474121094", + "elevation_ft": "6800", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-JA", + "municipality": "Barat", + "scheduled_service": "no", + "gps_code": "OYRT" + }, + { + "id": "32143", + "ident": "OYSF", + "type": "small_airport", + "name": "As Salif Airport", + "latitude_deg": "15.294577", + "longitude_deg": "42.685954", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-MU", + "municipality": "As Salif", + "scheduled_service": "no", + "gps_code": "OYSF" + }, + { + "id": "32413", + "ident": "OYSH", + "type": "small_airport", + "name": "Sadah Airport", + "latitude_deg": "16.967542", + "longitude_deg": "43.728103", + "elevation_ft": "5938", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-SD", + "municipality": "Sa'dah", + "scheduled_service": "no", + "gps_code": "OYSH", + "iata_code": "SYE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saadah_Airport" + }, + { + "id": "5318", + "ident": "OYSN", + "type": "medium_airport", + "name": "Sana'a International Airport", + "latitude_deg": "15.476300239562988", + "longitude_deg": "44.21969985961914", + "elevation_ft": "7216", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-SN", + "municipality": "Sana'a", + "scheduled_service": "yes", + "gps_code": "OYSN", + "iata_code": "SAH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sana'a_International_Airport" + }, + { + "id": "5319", + "ident": "OYSQ", + "type": "medium_airport", + "name": "Socotra International Airport", + "latitude_deg": "12.63070011138916", + "longitude_deg": "53.905799865722656", + "elevation_ft": "146", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-HD", + "municipality": "Socotra Islands", + "scheduled_service": "yes", + "gps_code": "OYSQ", + "iata_code": "SCT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Socotra_Airport" + }, + { + "id": "5320", + "ident": "OYSY", + "type": "medium_airport", + "name": "Seiyun Hadhramaut International Airport", + "latitude_deg": "15.9661", + "longitude_deg": "48.7883", + "elevation_ft": "2097", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-HD", + "municipality": "Seiyun", + "scheduled_service": "yes", + "gps_code": "OYSY", + "iata_code": "GXF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sayun_Airport" + }, + { + "id": "5321", + "ident": "OYTZ", + "type": "medium_airport", + "name": "Ta'izz International Airport", + "latitude_deg": "13.6859998703", + "longitude_deg": "44.139099121099996", + "elevation_ft": "4838", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-TA", + "municipality": "Ta'izz", + "scheduled_service": "yes", + "gps_code": "OYTZ", + "iata_code": "TAI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ta'izz_International_Airport", + "keywords": "Ganed Airport" + }, + { + "id": "32144", + "ident": "OYZM", + "type": "small_airport", + "name": "Al-Hazm Airport", + "latitude_deg": "16.200000762939453", + "longitude_deg": "44.78300094604492", + "elevation_ft": "3200", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-JA", + "municipality": "Al-Hazm", + "scheduled_service": "no", + "gps_code": "OYZM" + }, + { + "id": "429847", + "ident": "OZG", + "type": "medium_airport", + "name": "Zagora Airport", + "latitude_deg": "30.263858", + "longitude_deg": "-5.853341", + "elevation_ft": "2414", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-U-A", + "municipality": "Zagora", + "scheduled_service": "yes", + "gps_code": "GMAZ", + "iata_code": "OZG" + }, + { + "id": "327875", + "ident": "OZKL", + "type": "small_airport", + "name": "Koralta Station Airpirt", + "latitude_deg": "-31.624885", + "longitude_deg": "142.296143", + "elevation_ft": "400", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "OZKL" + }, + { + "id": "23954", + "ident": "P09", + "type": "small_airport", + "name": "Lakehill Airport", + "latitude_deg": "40.707000732421875", + "longitude_deg": "-80.0302963256836", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mars", + "scheduled_service": "no", + "gps_code": "P09", + "local_code": "P09" + }, + { + "id": "23955", + "ident": "P15", + "type": "small_airport", + "name": "Brokenstraw Airport", + "latitude_deg": "41.8326", + "longitude_deg": "-79.361603", + "elevation_ft": "1230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Brokenstraw Township", + "scheduled_service": "no", + "gps_code": "KP15", + "local_code": "P15" + }, + { + "id": "23956", + "ident": "P18", + "type": "heliport", + "name": "Papago Army Heliport", + "latitude_deg": "33.4720001221", + "longitude_deg": "-111.963996887", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "gps_code": "P18", + "local_code": "P18" + }, + { + "id": "23957", + "ident": "P27", + "type": "small_airport", + "name": "Pixley Airport", + "latitude_deg": "35.96049880981445", + "longitude_deg": "-119.30799865722656", + "elevation_ft": "256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pixley", + "scheduled_service": "no", + "gps_code": "P27", + "local_code": "P27" + }, + { + "id": "23959", + "ident": "P32", + "type": "closed", + "name": "Husky Haven Airport", + "latitude_deg": "41.788273", + "longitude_deg": "-75.889817", + "elevation_ft": "1670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Montrose", + "scheduled_service": "no", + "keywords": "PA52, P32, Zaverton" + }, + { + "id": "23960", + "ident": "P34", + "type": "small_airport", + "name": "Mifflintown Airport", + "latitude_deg": "40.598899841308594", + "longitude_deg": "-77.40570068359375", + "elevation_ft": "545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mifflintown", + "scheduled_service": "no", + "gps_code": "P34", + "local_code": "P34" + }, + { + "id": "23961", + "ident": "P37", + "type": "small_airport", + "name": "McVille Airport", + "latitude_deg": "40.734551", + "longitude_deg": "-79.59569", + "elevation_ft": "1090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Freeport", + "scheduled_service": "no", + "local_code": "6P7", + "home_link": "https://www.penndot.gov/TravelInPA/airports-pa/Pages/McVille-Airport.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/McVille_Airport" + }, + { + "id": "23962", + "ident": "P45", + "type": "small_airport", + "name": "Mount Pleasant/Scottdale Airport", + "latitude_deg": "40.1083984375", + "longitude_deg": "-79.54139709472656", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mount Pleasant", + "scheduled_service": "no", + "gps_code": "P45", + "local_code": "P45" + }, + { + "id": "23963", + "ident": "P48", + "type": "closed", + "name": "Pleasant Valley Airport", + "latitude_deg": "33.800468", + "longitude_deg": "-112.249803", + "elevation_ft": "1580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peoria", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pleasant_Valley_Airport", + "keywords": "AZ05, KP48, P48" + }, + { + "id": "23967", + "ident": "P72", + "type": "heliport", + "name": "Penn's Landing Heliport", + "latitude_deg": "39.93730163574219", + "longitude_deg": "-75.14129638671875", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "P72", + "local_code": "P72" + }, + { + "id": "23968", + "ident": "P91", + "type": "small_airport", + "name": "Flying M Aerodrome", + "latitude_deg": "40.737603", + "longitude_deg": "-75.705178", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Germansville", + "scheduled_service": "no", + "local_code": "P91" + }, + { + "id": "23969", + "ident": "P96", + "type": "small_airport", + "name": "Jersey Shore Airport", + "latitude_deg": "41.207000732421875", + "longitude_deg": "-77.2260971069336", + "elevation_ft": "547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Jersey Shore", + "scheduled_service": "no", + "gps_code": "P96", + "local_code": "P96" + }, + { + "id": "23970", + "ident": "P97", + "type": "small_airport", + "name": "Prairie Ronde Airport", + "latitude_deg": "42.12369918823242", + "longitude_deg": "-85.71029663085938", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Schoolcraft", + "scheduled_service": "no", + "gps_code": "P97", + "local_code": "P97" + }, + { + "id": "23971", + "ident": "P98", + "type": "heliport", + "name": "Southern Adams County Heliport", + "latitude_deg": "39.7612", + "longitude_deg": "-77.275297", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Gettysburg", + "scheduled_service": "no", + "local_code": "P98", + "home_link": "http://www.penndot.gov/TravelInPA/airports-pa/Pages/Southern-Adams-County-Heliport.aspx", + "keywords": "1PS0" + }, + { + "id": "23972", + "ident": "P99", + "type": "heliport", + "name": "W.P.H.S. Heliport", + "latitude_deg": "40.1083984375", + "longitude_deg": "-79.54810333251953", + "elevation_ft": "1090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mount Pleasant", + "scheduled_service": "no", + "gps_code": "P99", + "local_code": "P99" + }, + { + "id": "42182", + "ident": "PA-0001", + "type": "small_airport", + "name": "Achutupu Airport", + "latitude_deg": "9.188481", + "longitude_deg": "-77.994153", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Achutupo", + "scheduled_service": "no", + "gps_code": "MPAC", + "iata_code": "ACU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Achutupo_Airport" + }, + { + "id": "42183", + "ident": "PA-0002", + "type": "small_airport", + "name": "Aguadulce Airport", + "latitude_deg": "8.251649856567383", + "longitude_deg": "-80.56539916992188", + "elevation_ft": "104", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-2", + "municipality": "Aguadulce", + "scheduled_service": "no" + }, + { + "id": "42184", + "ident": "PA-0003", + "type": "small_airport", + "name": "Alligandi Airport", + "latitude_deg": "9.2226", + "longitude_deg": "-78.0236", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Alligandi", + "scheduled_service": "no", + "gps_code": "MPAI", + "iata_code": "AIL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ailigandí_Airport" + }, + { + "id": "42185", + "ident": "PA-0004", + "type": "small_airport", + "name": "Carti Airport", + "latitude_deg": "9.31346988678", + "longitude_deg": "-79.101600647", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Carti", + "scheduled_service": "no", + "iata_code": "CTE" + }, + { + "id": "42186", + "ident": "PA-0005", + "type": "small_airport", + "name": "Corazón de Jesús Airport", + "latitude_deg": "9.017219543457031", + "longitude_deg": "-77.98069763183594", + "elevation_ft": "1008", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-5", + "municipality": "Nurna", + "scheduled_service": "no" + }, + { + "id": "42188", + "ident": "PA-0006", + "type": "small_airport", + "name": "Finca Blanco Airport", + "latitude_deg": "8.389832", + "longitude_deg": "-82.870847", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-4", + "municipality": "Finca Blanco", + "scheduled_service": "no" + }, + { + "id": "42189", + "ident": "PA-0007", + "type": "small_airport", + "name": "Finca Fátima Airport", + "latitude_deg": "8.388027", + "longitude_deg": "-82.748509", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-4", + "municipality": "Finca Fátima", + "scheduled_service": "no" + }, + { + "id": "42191", + "ident": "PA-0008", + "type": "small_airport", + "name": "La Joya Airport", + "latitude_deg": "9.13856029510498", + "longitude_deg": "-79.24019622802734", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-8", + "municipality": "La Joya", + "scheduled_service": "no" + }, + { + "id": "42192", + "ident": "PA-0009", + "type": "small_airport", + "name": "La Plantación Airport", + "latitude_deg": "7.6628899574279785", + "longitude_deg": "-81.006103515625", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-9", + "municipality": "La Plantación", + "scheduled_service": "no" + }, + { + "id": "42193", + "ident": "PA-0010", + "type": "small_airport", + "name": "Mandinga Airport", + "latitude_deg": "9.454635", + "longitude_deg": "-79.086507", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Mandinga", + "scheduled_service": "no" + }, + { + "id": "42194", + "ident": "PA-0011", + "type": "small_airport", + "name": "Mulatupo Airport", + "latitude_deg": "8.9453", + "longitude_deg": "-77.7331", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Mulatupo", + "scheduled_service": "yes", + "iata_code": "MPP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mulatupo_Airport" + }, + { + "id": "42195", + "ident": "PA-0012", + "type": "closed", + "name": "Narganá Airport", + "latitude_deg": "9.444659", + "longitude_deg": "-78.588896", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Narganá", + "scheduled_service": "no", + "iata_code": "NGN", + "keywords": "NGN, Corazón de Jesús" + }, + { + "id": "42196", + "ident": "PA-0013", + "type": "small_airport", + "name": "Playón Chico Airport", + "latitude_deg": "9.305184161299998", + "longitude_deg": "-78.235874176", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Playón Chico", + "scheduled_service": "yes", + "iata_code": "PYC" + }, + { + "id": "42198", + "ident": "PA-0014", + "type": "small_airport", + "name": "Río Azúcar Airport", + "latitude_deg": "9.4247", + "longitude_deg": "-78.6269", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Río Azúcar", + "scheduled_service": "no" + }, + { + "id": "42199", + "ident": "PA-0015", + "type": "small_airport", + "name": "Rio Sidra Airport", + "latitude_deg": "9.316789627075195", + "longitude_deg": "-79.28299713134766", + "elevation_ft": "2719", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-8", + "municipality": "Rio Sidra", + "scheduled_service": "no" + }, + { + "id": "42200", + "ident": "PA-0016", + "type": "small_airport", + "name": "Río Tigre Airport", + "latitude_deg": "9.250880241394043", + "longitude_deg": "-78.49870300292969", + "elevation_ft": "1095", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Río Tigre", + "scheduled_service": "no" + }, + { + "id": "42201", + "ident": "PA-0017", + "type": "small_airport", + "name": "San Miguel Airport", + "latitude_deg": "8.456507", + "longitude_deg": "-78.934214", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-8", + "municipality": "Isla del Rey", + "scheduled_service": "no", + "gps_code": "MPMI", + "iata_code": "NMG", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Miguel_Airport,_Panama" + }, + { + "id": "42202", + "ident": "PA-0018", + "type": "small_airport", + "name": "Tubuala Airport", + "latitude_deg": "8.918601", + "longitude_deg": "-77.709182", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Tubuala", + "scheduled_service": "no" + }, + { + "id": "42203", + "ident": "PA-0019", + "type": "small_airport", + "name": "Tupile Airport", + "latitude_deg": "9.246580123901367", + "longitude_deg": "-78.36250305175781", + "elevation_ft": "1374", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Tupile", + "scheduled_service": "no" + }, + { + "id": "342550", + "ident": "PA-0020", + "type": "small_airport", + "name": "Coral Lodge Airport", + "latitude_deg": "9.55488", + "longitude_deg": "-79.13786", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-3", + "municipality": "Santa Isabel", + "scheduled_service": "no" + }, + { + "id": "42205", + "ident": "PA-0021", + "type": "closed", + "name": "Ailigandi North Airport", + "latitude_deg": "9.23903", + "longitude_deg": "-78.03922", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Ailigandi", + "scheduled_service": "no" + }, + { + "id": "42206", + "ident": "PA-0022", + "type": "small_airport", + "name": "Yaviza Airport", + "latitude_deg": "8.1528", + "longitude_deg": "-77.687", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-5", + "municipality": "Yaviza", + "scheduled_service": "no", + "iata_code": "PYV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yaviza_Airport" + }, + { + "id": "315017", + "ident": "PA-0023", + "type": "small_airport", + "name": "Isla Tigre Airstrip", + "latitude_deg": "9.4339", + "longitude_deg": "-78.5235", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Isla Tigre", + "scheduled_service": "no" + }, + { + "id": "316550", + "ident": "PA-0024", + "type": "small_airport", + "name": "Coiba Airport", + "latitude_deg": "7.5068", + "longitude_deg": "-81.6981", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-9", + "municipality": "Isla de Coiba", + "scheduled_service": "no" + }, + { + "id": "316551", + "ident": "PA-0025", + "type": "small_airport", + "name": "Arena Airport", + "latitude_deg": "7.3713", + "longitude_deg": "-80.846", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-9", + "municipality": "Arena", + "scheduled_service": "no" + }, + { + "id": "316553", + "ident": "PA-0026", + "type": "small_airport", + "name": "Tonosí Airport", + "latitude_deg": "7.4148", + "longitude_deg": "-80.4466", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-7", + "municipality": "Tonosí", + "scheduled_service": "no" + }, + { + "id": "316554", + "ident": "PA-0027", + "type": "small_airport", + "name": "Candelaria Airport", + "latitude_deg": "7.7326", + "longitude_deg": "-80.1403", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-7", + "municipality": "La Candelaria", + "scheduled_service": "no" + }, + { + "id": "342551", + "ident": "PA-0028", + "type": "small_airport", + "name": "Nusatupo Airport", + "latitude_deg": "9.43392", + "longitude_deg": "-78.83173", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Nusatupo", + "scheduled_service": "no" + }, + { + "id": "342552", + "ident": "PA-0029", + "type": "small_airport", + "name": "Wannukandi Airport", + "latitude_deg": "9.27326", + "longitude_deg": "-78.13939", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Wannukandi", + "scheduled_service": "no" + }, + { + "id": "342553", + "ident": "PA-0030", + "type": "small_airport", + "name": "Mansukun Airport", + "latitude_deg": "9.05011", + "longitude_deg": "-77.80985", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Mansukun", + "scheduled_service": "no" + }, + { + "id": "342554", + "ident": "PA-0031", + "type": "small_airport", + "name": "Napakanti Airport", + "latitude_deg": "9.01286", + "longitude_deg": "-77.80255", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Napakanti", + "scheduled_service": "no" + }, + { + "id": "342555", + "ident": "PA-0032", + "type": "small_airport", + "name": "Caledonia Airport", + "latitude_deg": "8.90201", + "longitude_deg": "-77.69286", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Suletupu", + "scheduled_service": "no" + }, + { + "id": "430649", + "ident": "PA-0033", + "type": "heliport", + "name": "Soloy Heliport", + "latitude_deg": "8.4831", + "longitude_deg": "-82.0816", + "elevation_ft": "424", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-NB", + "municipality": "Soloy", + "scheduled_service": "no" + }, + { + "id": "30640", + "ident": "PA-AML", + "type": "closed", + "name": "Puerto Armuelles Airport", + "latitude_deg": "8.267667", + "longitude_deg": "-82.864537", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-4", + "municipality": "Puerto Armuelles", + "scheduled_service": "no", + "iata_code": "AML" + }, + { + "id": "35194", + "ident": "PA-BFQ", + "type": "small_airport", + "name": "Bahia Piña Airport", + "latitude_deg": "7.586764", + "longitude_deg": "-78.180251", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-5", + "municipality": "Bahia Piña", + "scheduled_service": "yes", + "iata_code": "BFQ" + }, + { + "id": "35196", + "ident": "PA-ELE", + "type": "small_airport", + "name": "EL Real Airport", + "latitude_deg": "8.1072", + "longitude_deg": "-77.7252", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-5", + "municipality": "El Real de Santa María", + "scheduled_service": "yes", + "iata_code": "ELE", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Real_Airport" + }, + { + "id": "42181", + "ident": "PA-MRF", + "type": "small_airport", + "name": "Miraflores Airport", + "latitude_deg": "8.338889", + "longitude_deg": "-78.131944", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-5", + "municipality": "Miraflores", + "scheduled_service": "no", + "gps_code": "MPMF", + "local_code": "MRF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miraflores_Airport,_Dari%C3%A9n", + "keywords": "MPSE" + }, + { + "id": "35195", + "ident": "PA-OTD", + "type": "small_airport", + "name": "Raul Arias Espinoza Airport", + "latitude_deg": "8.62876", + "longitude_deg": "-79.034698", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-8", + "municipality": "Contadora Island", + "scheduled_service": "yes", + "gps_code": "MPRA", + "iata_code": "OTD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Contadora_Airport", + "keywords": "Contadora Airport" + }, + { + "id": "35197", + "ident": "PA-SAX", + "type": "small_airport", + "name": "Sambú Airport", + "latitude_deg": "8.026279", + "longitude_deg": "-78.209555", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-5", + "municipality": "Boca de Sábalo", + "scheduled_service": "yes", + "gps_code": "MPSB", + "iata_code": "SAX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sambú_Airport" + }, + { + "id": "23973", + "ident": "PA01", + "type": "small_airport", + "name": "Merrys Pymatuning Airport", + "latitude_deg": "41.67509841918945", + "longitude_deg": "-80.43450164794922", + "elevation_ft": "1203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Linesville", + "scheduled_service": "no", + "gps_code": "PA01", + "local_code": "PA01" + }, + { + "id": "23974", + "ident": "PA02", + "type": "small_airport", + "name": "Dillen Personal Airport", + "latitude_deg": "41.85073", + "longitude_deg": "-80.11964", + "elevation_ft": "1028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Edinboro", + "scheduled_service": "no", + "gps_code": "PA02", + "local_code": "PA02" + }, + { + "id": "23975", + "ident": "PA03", + "type": "heliport", + "name": "Hospital of the University of Pennsylvania Maloney Building Heliport", + "latitude_deg": "39.949766", + "longitude_deg": "-75.193085", + "elevation_ft": "193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "PA03", + "local_code": "PA03" + }, + { + "id": "23976", + "ident": "PA04", + "type": "heliport", + "name": "Brookville Hospital Heliport", + "latitude_deg": "41.15650177001953", + "longitude_deg": "-79.09310150146484", + "elevation_ft": "1516", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Brookville", + "scheduled_service": "no", + "gps_code": "PA04", + "local_code": "PA04" + }, + { + "id": "23977", + "ident": "PA05", + "type": "small_airport", + "name": "Monesmith Airport", + "latitude_deg": "40.441200256347656", + "longitude_deg": "-75.07489776611328", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Point Pleasant", + "scheduled_service": "no", + "gps_code": "PA05", + "local_code": "PA05" + }, + { + "id": "325821", + "ident": "PA06", + "type": "heliport", + "name": "Pacer Place Heliport", + "latitude_deg": "61.129694", + "longitude_deg": "-149.795918", + "elevation_ft": "367", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchorage", + "scheduled_service": "no", + "gps_code": "PA06", + "local_code": "PA06" + }, + { + "id": "23978", + "ident": "PA07", + "type": "closed", + "name": "Bilinski Airport", + "latitude_deg": "42.0145", + "longitude_deg": "-80.1201", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Middleboro", + "scheduled_service": "no", + "keywords": "PA07" + }, + { + "id": "23979", + "ident": "PA08", + "type": "small_airport", + "name": "JJ & PK Airport", + "latitude_deg": "39.7934", + "longitude_deg": "-77.778099", + "elevation_ft": "542", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Greencastle", + "scheduled_service": "no", + "gps_code": "PA08", + "local_code": "PA08" + }, + { + "id": "23980", + "ident": "PA09", + "type": "heliport", + "name": "Hendrick Landing Area Heliport", + "latitude_deg": "41.57149887084961", + "longitude_deg": "-75.50740051269531", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Carbondale", + "scheduled_service": "no", + "gps_code": "PA09", + "local_code": "PA09" + }, + { + "id": "23981", + "ident": "PA10", + "type": "heliport", + "name": "Penn Highlands Healthcare - Du Bois Heliport", + "latitude_deg": "41.114438", + "longitude_deg": "-78.773983", + "elevation_ft": "1467", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Du Bois", + "scheduled_service": "no", + "gps_code": "PA10", + "local_code": "PA10", + "keywords": "Du Bois Regional Medical Center Heliport" + }, + { + "id": "23982", + "ident": "PA11", + "type": "heliport", + "name": "The Gettysburg Hospital Heliport", + "latitude_deg": "39.82469940185547", + "longitude_deg": "-77.23560333251953", + "elevation_ft": "554", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Gettysburg", + "scheduled_service": "no", + "gps_code": "PA11", + "local_code": "PA11" + }, + { + "id": "23983", + "ident": "PA12", + "type": "heliport", + "name": "Commonwealth Security Systems Heliport", + "latitude_deg": "40.042301177978516", + "longitude_deg": "-76.38829803466797", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "PA12", + "local_code": "PA12" + }, + { + "id": "23984", + "ident": "PA13", + "type": "closed", + "name": "Superior Tours Heliport", + "latitude_deg": "40.029301", + "longitude_deg": "-76.224403", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lancaster", + "scheduled_service": "no", + "keywords": "PA13" + }, + { + "id": "23985", + "ident": "PA14", + "type": "heliport", + "name": "Battlefield Heliport", + "latitude_deg": "39.7848014831543", + "longitude_deg": "-77.25669860839844", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Gettysburg", + "scheduled_service": "no", + "gps_code": "PA14", + "local_code": "PA14" + }, + { + "id": "23986", + "ident": "PA15", + "type": "seaplane_base", + "name": "Couillard Seaplane Base", + "latitude_deg": "40.775001525878906", + "longitude_deg": "-75.14140319824219", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Martins Creek", + "scheduled_service": "no", + "gps_code": "PA15", + "local_code": "PA15" + }, + { + "id": "23987", + "ident": "PA16", + "type": "heliport", + "name": "Shadyside Health Education & Research Corp Heliport", + "latitude_deg": "40.455101013183594", + "longitude_deg": "-79.94029998779297", + "elevation_ft": "1037", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pittsburgh", + "scheduled_service": "no", + "gps_code": "PA16", + "local_code": "PA16" + }, + { + "id": "23988", + "ident": "PA17", + "type": "small_airport", + "name": "Canaan Field", + "latitude_deg": "42.002239", + "longitude_deg": "-77.096402", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Corning", + "scheduled_service": "no", + "gps_code": "NK12", + "local_code": "NK12", + "keywords": "PA17, Canaan's Field, Lawrenceville, Lindley" + }, + { + "id": "23989", + "ident": "PA18", + "type": "small_airport", + "name": "Buzzards Field", + "latitude_deg": "41.094200134277344", + "longitude_deg": "-77.41439819335938", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mill Hall", + "scheduled_service": "no", + "gps_code": "PA18", + "local_code": "PA18" + }, + { + "id": "23990", + "ident": "PA19", + "type": "small_airport", + "name": "Strizki Ultralightport", + "latitude_deg": "41.69729995727539", + "longitude_deg": "-75.59490203857422", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Elkdale", + "scheduled_service": "no", + "gps_code": "PA19", + "local_code": "PA19" + }, + { + "id": "23991", + "ident": "PA20", + "type": "small_airport", + "name": "Thermal G. Ranch Gliderport", + "latitude_deg": "42.020599365200006", + "longitude_deg": "-80.070602417", + "elevation_ft": "1430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Erie", + "scheduled_service": "no", + "local_code": "03G", + "keywords": "PA20" + }, + { + "id": "23992", + "ident": "PA21", + "type": "small_airport", + "name": "West Middlesex Airport", + "latitude_deg": "41.16529846191406", + "longitude_deg": "-80.50260162353516", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "West Middlesex", + "scheduled_service": "no", + "gps_code": "PA21", + "local_code": "PA21" + }, + { + "id": "23993", + "ident": "PA22", + "type": "small_airport", + "name": "Hermitage Airport", + "latitude_deg": "41.20140075683594", + "longitude_deg": "-80.42230224609375", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Sharon", + "scheduled_service": "no", + "gps_code": "PA22", + "local_code": "PA22" + }, + { + "id": "23994", + "ident": "PA23", + "type": "small_airport", + "name": "Kingsdale Air Park", + "latitude_deg": "39.72700119018555", + "longitude_deg": "-77.11190032958984", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Littlestown", + "scheduled_service": "no", + "gps_code": "PA23", + "local_code": "PA23" + }, + { + "id": "23995", + "ident": "PA24", + "type": "heliport", + "name": "Latrobe Hospital Heliport", + "latitude_deg": "40.3203010559082", + "longitude_deg": "-79.39360046386719", + "elevation_ft": "1039", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Latrobe", + "scheduled_service": "no", + "gps_code": "PA24", + "local_code": "PA24" + }, + { + "id": "23996", + "ident": "PA25", + "type": "small_airport", + "name": "Cuatros Vientos Airport", + "latitude_deg": "40.6593017578125", + "longitude_deg": "-75.8738021850586", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Quaker City", + "scheduled_service": "no", + "gps_code": "PA25", + "local_code": "PA25" + }, + { + "id": "23997", + "ident": "PA26", + "type": "heliport", + "name": "Wxkw Heliport", + "latitude_deg": "40.636199951171875", + "longitude_deg": "-75.4845962524414", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Allentown", + "scheduled_service": "no", + "gps_code": "PA26", + "local_code": "PA26" + }, + { + "id": "23998", + "ident": "PA27", + "type": "heliport", + "name": "Butz Heliport", + "latitude_deg": "40.60430145263672", + "longitude_deg": "-75.56210327148438", + "elevation_ft": "454", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Allentown", + "scheduled_service": "no", + "gps_code": "PA27", + "local_code": "PA27" + }, + { + "id": "23999", + "ident": "PA28", + "type": "heliport", + "name": "Excela Health Heliport", + "latitude_deg": "40.300825", + "longitude_deg": "-79.5559", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Greensburg", + "scheduled_service": "no", + "gps_code": "PA28", + "local_code": "PA28", + "keywords": "Westmoreland Hospital" + }, + { + "id": "24000", + "ident": "PA29", + "type": "heliport", + "name": "Frick Hospital & Community Health Center Heliport", + "latitude_deg": "40.145301818847656", + "longitude_deg": "-79.55059814453125", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mount Pleasant", + "scheduled_service": "no", + "gps_code": "PA29", + "local_code": "PA29" + }, + { + "id": "24001", + "ident": "PA30", + "type": "small_airport", + "name": "East Penn Airport", + "latitude_deg": "40.76679992675781", + "longitude_deg": "-75.77459716796875", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Andreas", + "scheduled_service": "no", + "gps_code": "PA30", + "local_code": "PA30" + }, + { + "id": "24002", + "ident": "PA31", + "type": "small_airport", + "name": "Rover Airport", + "latitude_deg": "40.28340148925781", + "longitude_deg": "-76.53939819335938", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Annville", + "scheduled_service": "no", + "gps_code": "PA31", + "local_code": "PA31" + }, + { + "id": "24003", + "ident": "PA32", + "type": "heliport", + "name": "Ashland Regional Medical Center Heliport", + "latitude_deg": "40.78340148925781", + "longitude_deg": "-76.33300018310547", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "PA32", + "local_code": "PA32" + }, + { + "id": "24004", + "ident": "PA33", + "type": "small_airport", + "name": "Lars/Private Airport", + "latitude_deg": "41.9501", + "longitude_deg": "-76.483002", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Athens", + "scheduled_service": "no", + "gps_code": "PA33", + "local_code": "PA33", + "keywords": "Osas Ponderosa" + }, + { + "id": "24005", + "ident": "PA34", + "type": "closed", + "name": "T N Ward Heliport", + "latitude_deg": "40.016803", + "longitude_deg": "-75.241303", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bala Cynwyd", + "scheduled_service": "no", + "keywords": "PA34" + }, + { + "id": "24006", + "ident": "PA35", + "type": "small_airport", + "name": "Bally Spring Farm Airport", + "latitude_deg": "40.43199920654297", + "longitude_deg": "-75.6259994506836", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bally", + "scheduled_service": "no", + "gps_code": "PA35", + "local_code": "PA35" + }, + { + "id": "24007", + "ident": "PA36", + "type": "small_airport", + "name": "Stefanik Airport", + "latitude_deg": "40.45289993286133", + "longitude_deg": "-75.20379638671875", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bedminster", + "scheduled_service": "no", + "gps_code": "PA36", + "local_code": "PA36" + }, + { + "id": "24008", + "ident": "PA37", + "type": "heliport", + "name": "Sci-Mahanoy Heliport", + "latitude_deg": "40.820899963378906", + "longitude_deg": "-76.16210174560547", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mahanoy", + "scheduled_service": "no", + "gps_code": "PA37", + "local_code": "PA37" + }, + { + "id": "24009", + "ident": "PA38", + "type": "closed", + "name": "Beaver Run Heliport", + "latitude_deg": "40.433399", + "longitude_deg": "-75.366303", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Quakertown", + "scheduled_service": "no", + "keywords": "PA38" + }, + { + "id": "24010", + "ident": "PA39", + "type": "small_airport", + "name": "Beaver Springs Airport", + "latitude_deg": "40.7765007019043", + "longitude_deg": "-77.21640014648438", + "elevation_ft": "642", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Benfer", + "scheduled_service": "no", + "gps_code": "PA39", + "local_code": "PA39" + }, + { + "id": "24011", + "ident": "PA40", + "type": "small_airport", + "name": "Benton Airport", + "latitude_deg": "41.20009994506836", + "longitude_deg": "-76.38719940185547", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Benton", + "scheduled_service": "no", + "gps_code": "PA40", + "local_code": "PA40" + }, + { + "id": "24012", + "ident": "PA41", + "type": "heliport", + "name": "Butler Memorial Hospital Heliport", + "latitude_deg": "40.86669921875", + "longitude_deg": "-79.88140106201172", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Butler", + "scheduled_service": "no", + "gps_code": "PA41", + "local_code": "PA41" + }, + { + "id": "24013", + "ident": "PA42", + "type": "heliport", + "name": "Berwick Hospital Corporation Personal Use Heliport", + "latitude_deg": "41.07040023803711", + "longitude_deg": "-76.2313003540039", + "elevation_ft": "581", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Berwick", + "scheduled_service": "no", + "gps_code": "PA42", + "local_code": "PA42" + }, + { + "id": "24014", + "ident": "PA43", + "type": "closed", + "name": "Arnold Airport", + "latitude_deg": "40.266803", + "longitude_deg": "-75.883003", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Birdsboro", + "scheduled_service": "no", + "keywords": "PA43" + }, + { + "id": "24015", + "ident": "PA44", + "type": "closed", + "name": "Stone Castle Motel Airport", + "latitude_deg": "40.973598", + "longitude_deg": "-76.5186", + "elevation_ft": "585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bloomsburg", + "scheduled_service": "no", + "keywords": "PA44" + }, + { + "id": "24016", + "ident": "PA45", + "type": "small_airport", + "name": "Logue Airport", + "latitude_deg": "41.41669845581055", + "longitude_deg": "-76.93299865722656", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bodines", + "scheduled_service": "no", + "gps_code": "PA45", + "local_code": "PA45" + }, + { + "id": "24017", + "ident": "PA46", + "type": "heliport", + "name": "Horizon Hospital System, Greenville Heliport", + "latitude_deg": "41.41170120239258", + "longitude_deg": "-80.372802734375", + "elevation_ft": "1047", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "PA46", + "local_code": "PA46" + }, + { + "id": "43025", + "ident": "PA47", + "type": "small_airport", + "name": "Cloudbound Airport", + "latitude_deg": "39.780799865722656", + "longitude_deg": "-77.27870178222656", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Gettysburg", + "scheduled_service": "no", + "local_code": "PA47" + }, + { + "id": "24019", + "ident": "PA48", + "type": "heliport", + "name": "Holy Spirit A Geisinger Affiliate Heliport", + "latitude_deg": "40.25227", + "longitude_deg": "-76.920639", + "elevation_ft": "426", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Harrisburg", + "scheduled_service": "no", + "gps_code": "PA48", + "local_code": "PA48", + "keywords": "Holy Spirit Hospital Helipad" + }, + { + "id": "24020", + "ident": "PA49", + "type": "small_airport", + "name": "Mountain Bay Air Park Inc Airport", + "latitude_deg": "41.3801", + "longitude_deg": "-75.232399", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Greentown", + "scheduled_service": "no", + "gps_code": "PA49", + "local_code": "PA49" + }, + { + "id": "24021", + "ident": "PA50", + "type": "heliport", + "name": "Bloomsburg Hospital Heliport", + "latitude_deg": "41.009498596191406", + "longitude_deg": "-76.45240020751953", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bloomsburg", + "scheduled_service": "no", + "gps_code": "PA50", + "local_code": "PA50" + }, + { + "id": "24022", + "ident": "PA51", + "type": "small_airport", + "name": "Bowtie Airport", + "latitude_deg": "39.90850067138672", + "longitude_deg": "-77.2052001953125", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Biglerville", + "scheduled_service": "no", + "gps_code": "PA51", + "local_code": "PA51" + }, + { + "id": "45759", + "ident": "PA52", + "type": "small_airport", + "name": "Oberlander Airport", + "latitude_deg": "41.859333", + "longitude_deg": "-79.907167", + "elevation_ft": "1626", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Union City", + "scheduled_service": "no", + "gps_code": "PA52", + "local_code": "PA52" + }, + { + "id": "24023", + "ident": "PA53", + "type": "small_airport", + "name": "Cosklos Elkview Airport", + "latitude_deg": "41.62699890136719", + "longitude_deg": "-75.5281982421875", + "elevation_ft": "1710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Carbondale", + "scheduled_service": "no", + "gps_code": "PA53", + "local_code": "PA53" + }, + { + "id": "24024", + "ident": "PA54", + "type": "small_airport", + "name": "Kellachows Airport", + "latitude_deg": "41.522300720214844", + "longitude_deg": "-75.39600372314453", + "elevation_ft": "1430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Carbondale", + "scheduled_service": "no", + "gps_code": "PA54", + "local_code": "PA54" + }, + { + "id": "24025", + "ident": "PA55", + "type": "small_airport", + "name": "Neiderer Airport", + "latitude_deg": "40.219902", + "longitude_deg": "-77.118126", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Carlisle", + "scheduled_service": "no", + "gps_code": "PA55", + "local_code": "PA55" + }, + { + "id": "24026", + "ident": "PA56", + "type": "heliport", + "name": "UPMC Passavant Cranberry Heliport", + "latitude_deg": "40.68373", + "longitude_deg": "-80.097134", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Cranberry", + "scheduled_service": "no", + "gps_code": "PA56", + "local_code": "PA56", + "home_link": "https://www.upmc.com/locations/hospitals/passavant" + }, + { + "id": "45749", + "ident": "PA57", + "type": "heliport", + "name": "Grove City Medical Ctr Heliport", + "latitude_deg": "41.171447", + "longitude_deg": "-80.084222", + "elevation_ft": "1255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Grove City", + "scheduled_service": "no", + "gps_code": "PA57", + "local_code": "PA57" + }, + { + "id": "24027", + "ident": "PA58", + "type": "small_airport", + "name": "Rocktop Airport", + "latitude_deg": "39.974998474121094", + "longitude_deg": "-77.55780029296875", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Chambersburg", + "scheduled_service": "no", + "gps_code": "PA58", + "local_code": "PA58" + }, + { + "id": "24028", + "ident": "PA59", + "type": "heliport", + "name": "Cast & Baker Heliport", + "latitude_deg": "40.24449920654297", + "longitude_deg": "-80.18170166015625", + "elevation_ft": "1246", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Canonsburg", + "scheduled_service": "no", + "gps_code": "PA59", + "local_code": "PA59" + }, + { + "id": "24029", + "ident": "PA60", + "type": "heliport", + "name": "Chambersburg Hospital Heliport", + "latitude_deg": "39.93949890136719", + "longitude_deg": "-77.64800262451172", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Chambersburg", + "scheduled_service": "no", + "gps_code": "PA60", + "local_code": "PA60" + }, + { + "id": "24030", + "ident": "PA61", + "type": "small_airport", + "name": "Kunda Airport", + "latitude_deg": "40.16680145263672", + "longitude_deg": "-75.44960021972656", + "elevation_ft": "252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Collegeville", + "scheduled_service": "no", + "gps_code": "PA61", + "local_code": "PA61" + }, + { + "id": "24031", + "ident": "PA62", + "type": "heliport", + "name": "Temple University Heliport", + "latitude_deg": "40.00556", + "longitude_deg": "-75.150379", + "elevation_ft": "47", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "PA62", + "local_code": "PA62" + }, + { + "id": "45772", + "ident": "PA63", + "type": "heliport", + "name": "WPXI-TV Evergreen Road Heliport", + "latitude_deg": "40.495057", + "longitude_deg": "-80.010767", + "elevation_ft": "1106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pittsburgh", + "scheduled_service": "no", + "gps_code": "PA63", + "local_code": "PA63" + }, + { + "id": "24032", + "ident": "PA64", + "type": "closed", + "name": "Cairnwood Heliport", + "latitude_deg": "40.138199", + "longitude_deg": "-75.057404", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Huntington Valley", + "scheduled_service": "no", + "keywords": "PA64" + }, + { + "id": "24033", + "ident": "PA65", + "type": "small_airport", + "name": "Hi-Vu Airport", + "latitude_deg": "40.698012", + "longitude_deg": "-75.541592", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Coplay", + "scheduled_service": "no", + "gps_code": "PA65", + "local_code": "PA65" + }, + { + "id": "24034", + "ident": "PA66", + "type": "closed", + "name": "Cumberland Valley Airstrip", + "latitude_deg": "39.816799", + "longitude_deg": "-77.726097", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Greencastle", + "scheduled_service": "no", + "keywords": "PA66" + }, + { + "id": "24035", + "ident": "PA67", + "type": "heliport", + "name": "Allegheny Hospitals Canonsburg Heliport", + "latitude_deg": "40.24720001220703", + "longitude_deg": "-80.19139862060547", + "elevation_ft": "1169", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Canonsburg", + "scheduled_service": "no", + "gps_code": "PA67", + "local_code": "PA67" + }, + { + "id": "24036", + "ident": "PA68", + "type": "small_airport", + "name": "Bugs Airport", + "latitude_deg": "40.712943", + "longitude_deg": "-75.308055", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Nazareth", + "scheduled_service": "no", + "gps_code": "PA68", + "local_code": "PA68" + }, + { + "id": "24037", + "ident": "PA69", + "type": "closed", + "name": "Vogelsong Airport", + "latitude_deg": "40.1287", + "longitude_deg": "-76.969398", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Dillsburg", + "scheduled_service": "no", + "keywords": "PA69" + }, + { + "id": "24038", + "ident": "PA70", + "type": "small_airport", + "name": "Fetters Construction Airport", + "latitude_deg": "40.091800689697266", + "longitude_deg": "-75.71080017089844", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Downingtown", + "scheduled_service": "no", + "gps_code": "PA70", + "local_code": "PA70" + }, + { + "id": "24039", + "ident": "PA71", + "type": "small_airport", + "name": "Dwight's Delight Airport", + "latitude_deg": "41.52090072631836", + "longitude_deg": "-76.46219635009766", + "elevation_ft": "1717", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Dushore", + "scheduled_service": "no", + "gps_code": "PA71", + "local_code": "PA71" + }, + { + "id": "24040", + "ident": "PA72", + "type": "small_airport", + "name": "Circle W Airfield", + "latitude_deg": "39.95869827270508", + "longitude_deg": "-76.9708023071289", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "East Berlin", + "scheduled_service": "no", + "gps_code": "PA72", + "local_code": "PA72" + }, + { + "id": "24041", + "ident": "PA73", + "type": "small_airport", + "name": "D.Evans Farm Airport", + "latitude_deg": "39.97949981689453", + "longitude_deg": "-76.53610229492188", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "East Prospect", + "scheduled_service": "no", + "gps_code": "PA73", + "local_code": "PA73" + }, + { + "id": "24042", + "ident": "PA74", + "type": "small_airport", + "name": "Gusler Airport", + "latitude_deg": "40.46540069580078", + "longitude_deg": "-76.83999633789062", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Elizabethville/Halifax", + "scheduled_service": "no", + "gps_code": "PA74", + "local_code": "PA74" + }, + { + "id": "24043", + "ident": "PA75", + "type": "small_airport", + "name": "Baker Airport", + "latitude_deg": "41.9650993347168", + "longitude_deg": "-77.31580352783203", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Elkland", + "scheduled_service": "no", + "gps_code": "PA75", + "local_code": "PA75" + }, + { + "id": "24044", + "ident": "PA76", + "type": "closed", + "name": "Rosenzweig Airport", + "latitude_deg": "41.136585", + "longitude_deg": "-75.860789", + "elevation_ft": "1930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wilkes Barre", + "scheduled_service": "no", + "keywords": "PA76, Ballywick" + }, + { + "id": "24045", + "ident": "PA77", + "type": "small_airport", + "name": "Erwinna Private Airport", + "latitude_deg": "40.500099182128906", + "longitude_deg": "-75.06629943847656", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Erwinna", + "scheduled_service": "no", + "gps_code": "PA77", + "local_code": "PA77" + }, + { + "id": "24046", + "ident": "PA78", + "type": "closed", + "name": "Tintinhull Airport", + "latitude_deg": "40.500099", + "longitude_deg": "-75.0829", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Erwinna", + "scheduled_service": "no", + "keywords": "PA78" + }, + { + "id": "24047", + "ident": "PA79", + "type": "heliport", + "name": "Tinicum Farms Heliport", + "latitude_deg": "40.529300689697266", + "longitude_deg": "-75.09960174560547", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Erwinna", + "scheduled_service": "no", + "gps_code": "PA79", + "local_code": "PA79" + }, + { + "id": "24048", + "ident": "PA80", + "type": "heliport", + "name": "St Luke's Hospital Heliport", + "latitude_deg": "40.6083984375", + "longitude_deg": "-75.4031982421875", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Fountain Hill", + "scheduled_service": "no", + "gps_code": "PA80", + "local_code": "PA80" + }, + { + "id": "24049", + "ident": "PA81", + "type": "small_airport", + "name": "5 Lakes Airport", + "latitude_deg": "39.91279983520508", + "longitude_deg": "-77.53279876708984", + "elevation_ft": "819", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "PA81", + "local_code": "PA81" + }, + { + "id": "24050", + "ident": "PA82", + "type": "small_airport", + "name": "Grayce Farms Airport", + "latitude_deg": "41.600101470947266", + "longitude_deg": "-75.68299865722656", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Fleetville", + "scheduled_service": "no", + "gps_code": "PA82", + "local_code": "PA82" + }, + { + "id": "24051", + "ident": "PA83", + "type": "heliport", + "name": "Skyview Heliport", + "latitude_deg": "40.31570053100586", + "longitude_deg": "-75.30460357666016", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Souderton", + "scheduled_service": "no", + "gps_code": "PA83", + "local_code": "PA83" + }, + { + "id": "24052", + "ident": "PA84", + "type": "small_airport", + "name": "Level Acres Farm Airport", + "latitude_deg": "39.953819", + "longitude_deg": "-76.909261", + "elevation_ft": "523", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Thomasville", + "scheduled_service": "no", + "gps_code": "PA84", + "local_code": "PA84", + "keywords": "Fordville" + }, + { + "id": "24053", + "ident": "PA85", + "type": "small_airport", + "name": "Drewniany-Springmeadow Airport", + "latitude_deg": "40.3047981262207", + "longitude_deg": "-75.53350067138672", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Frederick", + "scheduled_service": "no", + "gps_code": "PA85", + "local_code": "PA85" + }, + { + "id": "24054", + "ident": "PA86", + "type": "small_airport", + "name": "Krill Personal Use Airport", + "latitude_deg": "40.447601318359375", + "longitude_deg": "-76.34110260009766", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Frystown", + "scheduled_service": "no", + "gps_code": "PA86", + "local_code": "PA86" + }, + { + "id": "24055", + "ident": "PA87", + "type": "heliport", + "name": "TEK Park Breinigsville Heliport", + "latitude_deg": "40.545752", + "longitude_deg": "-75.661856", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Breinigsville", + "scheduled_service": "no", + "gps_code": "PA87", + "local_code": "PA87", + "keywords": "At&T Solid State Tech Center" + }, + { + "id": "24056", + "ident": "PA88", + "type": "small_airport", + "name": "Nemacolin Airport", + "latitude_deg": "39.805599212646484", + "longitude_deg": "-79.54889678955078", + "elevation_ft": "2010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Farmington", + "scheduled_service": "no", + "gps_code": "PA88", + "local_code": "PA88" + }, + { + "id": "24057", + "ident": "PA89", + "type": "closed", + "name": "Ben's Landing Ultralightport", + "latitude_deg": "39.959", + "longitude_deg": "-77.049698", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "East Berlin", + "scheduled_service": "no", + "keywords": "PA89" + }, + { + "id": "24058", + "ident": "PA90", + "type": "closed", + "name": "Flat Rock Seaplane Base", + "latitude_deg": "40.056198", + "longitude_deg": "-75.266602", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Gladwyne", + "scheduled_service": "no", + "keywords": "PA90" + }, + { + "id": "24059", + "ident": "PA91", + "type": "heliport", + "name": "UPMC Kane Heliport", + "latitude_deg": "41.671191", + "longitude_deg": "-78.817911", + "elevation_ft": "2008", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Kane", + "scheduled_service": "no", + "gps_code": "PA91", + "local_code": "PA91", + "keywords": "Kane Community Hospital" + }, + { + "id": "24060", + "ident": "PA92", + "type": "small_airport", + "name": "Blue Mountain Academy (Private) Airport", + "latitude_deg": "40.55289840698242", + "longitude_deg": "-76.02880096435547", + "elevation_ft": "531", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hamburg", + "scheduled_service": "no", + "gps_code": "PA92", + "local_code": "PA92" + }, + { + "id": "24061", + "ident": "PA93", + "type": "heliport", + "name": "Cherokee Heliport", + "latitude_deg": "40.685001373291016", + "longitude_deg": "-79.45670318603516", + "elevation_ft": "1175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Brick Church Village", + "scheduled_service": "no", + "gps_code": "PA93", + "local_code": "PA93" + }, + { + "id": "24062", + "ident": "PA94", + "type": "heliport", + "name": "Sharon General Hospital Heliport", + "latitude_deg": "41.232601165771484", + "longitude_deg": "-80.49649810791016", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Sharon", + "scheduled_service": "no", + "gps_code": "PA94", + "local_code": "PA94" + }, + { + "id": "24063", + "ident": "PA95", + "type": "heliport", + "name": "Turnpike Nr 1 Heliport", + "latitude_deg": "40.216800689697266", + "longitude_deg": "-76.78299713134766", + "elevation_ft": "348", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Harrisburg", + "scheduled_service": "no", + "gps_code": "PA95", + "local_code": "PA95" + }, + { + "id": "24064", + "ident": "PA97", + "type": "heliport", + "name": "Warren General Hospital Heliport", + "latitude_deg": "41.84389877319336", + "longitude_deg": "-79.15480041503906", + "elevation_ft": "1178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Warren", + "scheduled_service": "no", + "gps_code": "PA97", + "local_code": "PA97" + }, + { + "id": "24065", + "ident": "PA98", + "type": "heliport", + "name": "WNEP-TV Heliport", + "latitude_deg": "41.370658", + "longitude_deg": "-75.681885", + "elevation_ft": "1035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Moosic", + "scheduled_service": "no", + "keywords": "PA98" + }, + { + "id": "24066", + "ident": "PA99", + "type": "heliport", + "name": "St Lukes/Gnaden Huetten Heliport", + "latitude_deg": "40.83263", + "longitude_deg": "-75.727088", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lehighton", + "scheduled_service": "no", + "gps_code": "PA99", + "local_code": "PA99", + "keywords": "Gnaden Huetten Memorial Hospital" + }, + { + "id": "325671", + "ident": "PAAD", + "type": "small_airport", + "name": "Point Thomson Airstrip", + "latitude_deg": "70.136", + "longitude_deg": "-146.290028", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Deadhorse", + "scheduled_service": "no", + "gps_code": "PAAD", + "local_code": "37AA" + }, + { + "id": "16190", + "ident": "PAAK", + "type": "small_airport", + "name": "Atka Airport", + "latitude_deg": "52.22029877", + "longitude_deg": "-174.2059937", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Atka", + "scheduled_service": "no", + "gps_code": "PAAK", + "iata_code": "AKB", + "local_code": "AKA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atka_Airport" + }, + { + "id": "8178", + "ident": "PAAL", + "type": "small_airport", + "name": "Port Moller Airport", + "latitude_deg": "56.0060005188", + "longitude_deg": "-160.561004639", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cold Bay", + "scheduled_service": "no", + "gps_code": "PAAL", + "iata_code": "PML", + "local_code": "1AK3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Moller_Airport...............................................................................", + "keywords": "Moller Air Force Station" + }, + { + "id": "16117", + "ident": "PAAM", + "type": "small_airport", + "name": "Driftwood Bay Air Force Station Airport", + "latitude_deg": "53.9729499817", + "longitude_deg": "-166.858459473", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Dutch Harbor", + "scheduled_service": "no", + "gps_code": "PAAM", + "local_code": "AK23", + "wikipedia_link": "https://en.wikipedia.org/wiki/Driftwood_Bay_Air_Force_Station" + }, + { + "id": "16163", + "ident": "PAAN", + "type": "small_airport", + "name": "Gold King Creek Airport", + "latitude_deg": "64.198328", + "longitude_deg": "-147.929492", + "elevation_ft": "1720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fairbanks", + "scheduled_service": "no", + "gps_code": "PAAN", + "local_code": "AK7", + "keywords": "AK32" + }, + { + "id": "16094", + "ident": "PAAP", + "type": "seaplane_base", + "name": "Port Alexander Seaplane Base", + "latitude_deg": "56.246799", + "longitude_deg": "-134.647995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Port Alexander", + "scheduled_service": "no", + "gps_code": "PAAP", + "iata_code": "PTD", + "local_code": "AHP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Alexander_Seaplane_Base", + "keywords": "AK15" + }, + { + "id": "5336", + "ident": "PAAQ", + "type": "medium_airport", + "name": "Warren \"Bud\" Woods Palmer Municipal Airport", + "latitude_deg": "61.594898", + "longitude_deg": "-149.08901", + "elevation_ft": "242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "PAAQ", + "iata_code": "PAQ", + "local_code": "PAQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palmer_Municipal_Airport", + "keywords": "Palmer Muni, Palmer Buddy Woods Municipal" + }, + { + "id": "16386", + "ident": "PAAT", + "type": "closed", + "name": "Casco Cove Coast Guard Station", + "latitude_deg": "52.829797", + "longitude_deg": "173.173796", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Attu", + "scheduled_service": "no", + "gps_code": "PAAT", + "iata_code": "ATU", + "local_code": "ATU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Casco_Cove_Coast_Guard_Station" + }, + { + "id": "5337", + "ident": "PABA", + "type": "medium_airport", + "name": "Barter Island Long Range Radar Station Airport", + "latitude_deg": "70.134003", + "longitude_deg": "-143.582001", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Barter Island", + "scheduled_service": "no", + "gps_code": "PABA", + "iata_code": "BTI", + "local_code": "BTI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barter_Island_LRRS_Airport" + }, + { + "id": "5338", + "ident": "PABE", + "type": "medium_airport", + "name": "Bethel Airport", + "latitude_deg": "60.77980042", + "longitude_deg": "-161.8379974", + "elevation_ft": "126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Bethel", + "scheduled_service": "yes", + "gps_code": "PABE", + "iata_code": "BET", + "local_code": "BET", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bethel_Airport" + }, + { + "id": "16501", + "ident": "PABG", + "type": "small_airport", + "name": "Beluga Airport", + "latitude_deg": "61.1721992493", + "longitude_deg": "-151.044006348", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Beluga", + "scheduled_service": "no", + "gps_code": "PABG", + "iata_code": "BVU", + "local_code": "BLG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beluga_Airport" + }, + { + "id": "5339", + "ident": "PABI", + "type": "medium_airport", + "name": "Allen Army Airfield", + "latitude_deg": "63.9944992065", + "longitude_deg": "-145.722000122", + "elevation_ft": "1291", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Delta Junction Ft Greely", + "scheduled_service": "no", + "gps_code": "PABI", + "iata_code": "BIG", + "local_code": "BIG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Allen_Army_Airfield00000000000000", + "keywords": "Big Delta Army Airfield" + }, + { + "id": "5340", + "ident": "PABL", + "type": "medium_airport", + "name": "Buckland Airport", + "latitude_deg": "65.981598", + "longitude_deg": "-161.149002", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Buckland", + "scheduled_service": "no", + "gps_code": "PABL", + "iata_code": "BKC", + "local_code": "BVK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buckland_Airport", + "keywords": "7K5" + }, + { + "id": "5341", + "ident": "PABM", + "type": "small_airport", + "name": "Big Mountain Airport", + "latitude_deg": "59.362274", + "longitude_deg": "-155.260148", + "elevation_ft": "663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Mountain", + "scheduled_service": "no", + "gps_code": "PABM", + "iata_code": "BMX", + "local_code": "37AK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Big_Mountain_Air_Force_Station", + "keywords": "Big Mountain Air Force Station" + }, + { + "id": "16172", + "ident": "PABP", + "type": "small_airport", + "name": "Badami Airport", + "latitude_deg": "70.13749694824219", + "longitude_deg": "-147.02999877929688", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Deadhorse", + "scheduled_service": "no", + "gps_code": "PABP", + "local_code": "AK78" + }, + { + "id": "5342", + "ident": "PABR", + "type": "medium_airport", + "name": "Wiley Post Will Rogers Memorial Airport", + "latitude_deg": "71.285402", + "longitude_deg": "-156.766008", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Utqiaġvik", + "scheduled_service": "yes", + "gps_code": "PABR", + "iata_code": "BRW", + "local_code": "BRW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wiley_Post-Will_Rogers_Memorial_Airport", + "keywords": "Barrow" + }, + { + "id": "5343", + "ident": "PABT", + "type": "medium_airport", + "name": "Bettles Airport", + "latitude_deg": "66.91390228", + "longitude_deg": "-151.529007", + "elevation_ft": "647", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Bettles", + "scheduled_service": "no", + "gps_code": "PABT", + "iata_code": "BTT", + "local_code": "BTT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bettles_Airport" + }, + { + "id": "14860", + "ident": "PABU", + "type": "small_airport", + "name": "Bullen Point Short Range Radar Station Airport", + "latitude_deg": "70.170999", + "longitude_deg": "-146.844897", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kaktovik", + "scheduled_service": "no", + "gps_code": "PABU", + "local_code": "8AK7" + }, + { + "id": "5344", + "ident": "PABV", + "type": "medium_airport", + "name": "Birchwood Airport", + "latitude_deg": "61.41650009", + "longitude_deg": "-149.5070038", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Birchwood", + "scheduled_service": "no", + "gps_code": "PABV", + "local_code": "BCV" + }, + { + "id": "5345", + "ident": "PACD", + "type": "medium_airport", + "name": "Cold Bay Airport", + "latitude_deg": "55.2061", + "longitude_deg": "-162.725006", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cold Bay", + "scheduled_service": "no", + "gps_code": "PACD", + "iata_code": "CDB", + "local_code": "CDB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cold_Bay_Airport" + }, + { + "id": "16709", + "ident": "PACE", + "type": "small_airport", + "name": "Central Airport", + "latitude_deg": "65.57379913", + "longitude_deg": "-144.7830048", + "elevation_ft": "937", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Central", + "scheduled_service": "no", + "gps_code": "PACE", + "iata_code": "CEM", + "local_code": "CEM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Central_Airport" + }, + { + "id": "16714", + "ident": "PACI", + "type": "small_airport", + "name": "Chalkyitsik Airport", + "latitude_deg": "66.6449966431", + "longitude_deg": "-143.740005493", + "elevation_ft": "544", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chalkyitsik", + "scheduled_service": "no", + "gps_code": "PACI", + "iata_code": "CIK", + "local_code": "CIK" + }, + { + "id": "16711", + "ident": "PACK", + "type": "small_airport", + "name": "Chefornak Airport", + "latitude_deg": "60.136667", + "longitude_deg": "-164.279167", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chefornak", + "scheduled_service": "no", + "gps_code": "PACK", + "iata_code": "CYF", + "local_code": "CFK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chefornak_Airport", + "keywords": "Z74" + }, + { + "id": "5346", + "ident": "PACL", + "type": "medium_airport", + "name": "Clear Airport", + "latitude_deg": "64.299738", + "longitude_deg": "-149.117432", + "elevation_ft": "552", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Clear", + "scheduled_service": "no", + "gps_code": "PACL", + "local_code": "Z84", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clear_Airport" + }, + { + "id": "5347", + "ident": "PACM", + "type": "medium_airport", + "name": "Scammon Bay Airport", + "latitude_deg": "61.845298767100005", + "longitude_deg": "-165.570999146", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Scammon Bay", + "scheduled_service": "no", + "gps_code": "PACM", + "iata_code": "SCM", + "local_code": "SCM" + }, + { + "id": "354376", + "ident": "PACO", + "type": "closed", + "name": "Tonsina-Upper Airport", + "latitude_deg": "61.659981", + "longitude_deg": "-145.18188", + "elevation_ft": "1510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cordova", + "scheduled_service": "no", + "keywords": "PACO" + }, + { + "id": "16954", + "ident": "PACR", + "type": "small_airport", + "name": "Circle City (New) Airport", + "latitude_deg": "65.827673", + "longitude_deg": "-144.076195", + "elevation_ft": "613", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Circle", + "scheduled_service": "no", + "gps_code": "PACR", + "iata_code": "IRC", + "local_code": "CRC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Circle_City_Airport", + "keywords": "K03" + }, + { + "id": "9088", + "ident": "PACS", + "type": "small_airport", + "name": "Cape Sarichef Airport", + "latitude_deg": "54.583934", + "longitude_deg": "-164.905727", + "elevation_ft": "291", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cape Sarichef", + "scheduled_service": "no", + "gps_code": "PACS", + "local_code": "26AK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cape_Sarichef_Airport" + }, + { + "id": "5348", + "ident": "PACV", + "type": "medium_airport", + "name": "Merle K (Mudhole) Smith Airport", + "latitude_deg": "60.491798", + "longitude_deg": "-145.477997", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cordova", + "scheduled_service": "yes", + "gps_code": "PACV", + "iata_code": "CDV", + "local_code": "CDV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Merle_K._(Mudhole)_Smith_Airport", + "keywords": "Cordova Mile 13" + }, + { + "id": "17056", + "ident": "PACX", + "type": "small_airport", + "name": "Coldfoot Airport", + "latitude_deg": "67.25219726559999", + "longitude_deg": "-150.203994751", + "elevation_ft": "1042", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Coldfoot", + "scheduled_service": "no", + "gps_code": "PACX", + "iata_code": "CXF", + "local_code": "CXF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coldfoot_Airport" + }, + { + "id": "17058", + "ident": "PACY", + "type": "small_airport", + "name": "Yakataga Airport", + "latitude_deg": "60.080974", + "longitude_deg": "-142.494541", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Yakataga", + "scheduled_service": "yes", + "gps_code": "PACY", + "iata_code": "CYT", + "local_code": "0AA1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yakataga_Airport", + "keywords": "Cape Yakataga" + }, + { + "id": "5349", + "ident": "PACZ", + "type": "medium_airport", + "name": "Cape Romanzof LRRS Airport", + "latitude_deg": "61.78030014", + "longitude_deg": "-166.0390015", + "elevation_ft": "464", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cape Romanzof", + "scheduled_service": "no", + "gps_code": "PACZ", + "iata_code": "CZF", + "local_code": "CZF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cape_Romanzof_LRRS_Airport" + }, + { + "id": "354374", + "ident": "PADA", + "type": "closed", + "name": "Sparky's Field", + "latitude_deg": "63.859866", + "longitude_deg": "-145.098812", + "elevation_ft": "1286", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Deltana", + "scheduled_service": "no", + "keywords": "PADA" + }, + { + "id": "5350", + "ident": "PADE", + "type": "medium_airport", + "name": "Deering Airport", + "latitude_deg": "66.069603", + "longitude_deg": "-162.766006", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Deering", + "scheduled_service": "no", + "gps_code": "PADE", + "iata_code": "DRG", + "local_code": "DEE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Deering_Airport", + "keywords": "0Z0" + }, + { + "id": "17151", + "ident": "PADG", + "type": "small_airport", + "name": "Red Dog Airport", + "latitude_deg": "68.032097", + "longitude_deg": "-162.899002", + "elevation_ft": "969", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Red Dog", + "scheduled_service": "no", + "gps_code": "PADG", + "iata_code": "RDB", + "local_code": "DGG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Red_Dog_Airport", + "keywords": "PARD, AED, 39AK" + }, + { + "id": "16092", + "ident": "PADK", + "type": "medium_airport", + "name": "Adak Airport", + "latitude_deg": "51.883564", + "longitude_deg": "-176.642783", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Adak", + "scheduled_service": "yes", + "gps_code": "PADK", + "iata_code": "ADK", + "local_code": "ADK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Adak_Airport" + }, + { + "id": "5351", + "ident": "PADL", + "type": "medium_airport", + "name": "Dillingham Airport", + "latitude_deg": "59.04470062", + "longitude_deg": "-158.5050049", + "elevation_ft": "81", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Dillingham", + "scheduled_service": "yes", + "gps_code": "PADL", + "iata_code": "DLG", + "local_code": "DLG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dillingham_Airport" + }, + { + "id": "5352", + "ident": "PADM", + "type": "medium_airport", + "name": "Marshall Don Hunter Sr Airport", + "latitude_deg": "61.8642997742", + "longitude_deg": "-162.026000977", + "elevation_ft": "103", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Marshall", + "scheduled_service": "yes", + "gps_code": "PADM", + "iata_code": "MLL", + "local_code": "MDM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marshall_Don_Hunter_Sr._Airport", + "keywords": "3A5" + }, + { + "id": "5353", + "ident": "PADQ", + "type": "medium_airport", + "name": "Kodiak Airport", + "latitude_deg": "57.75", + "longitude_deg": "-152.4940033", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kodiak", + "scheduled_service": "yes", + "gps_code": "PADQ", + "iata_code": "ADQ", + "local_code": "ADQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kodiak_Airport" + }, + { + "id": "5354", + "ident": "PADU", + "type": "medium_airport", + "name": "Tom Madsen (Dutch Harbor) Airport", + "latitude_deg": "53.89881", + "longitude_deg": "-166.544996", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Unalaska", + "scheduled_service": "yes", + "gps_code": "PADU", + "iata_code": "DUT", + "local_code": "DUT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Unalaska_Airport", + "keywords": "Dutch Harbor, Unalaska" + }, + { + "id": "17155", + "ident": "PADY", + "type": "small_airport", + "name": "Kongiganak Airport", + "latitude_deg": "59.960800170899994", + "longitude_deg": "-162.880996704", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kongiganak", + "scheduled_service": "no", + "gps_code": "PADY", + "iata_code": "KKH", + "local_code": "DUY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kongiganak_Airport" + }, + { + "id": "5355", + "ident": "PAED", + "type": "medium_airport", + "name": "Elmendorf Air Force Base", + "latitude_deg": "61.251709", + "longitude_deg": "-149.807097", + "elevation_ft": "212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchorage", + "scheduled_service": "no", + "gps_code": "PAED", + "iata_code": "EDF", + "local_code": "EDF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elmendorf_Air_Force_Base" + }, + { + "id": "17176", + "ident": "PAEE", + "type": "small_airport", + "name": "Eek Airport", + "latitude_deg": "60.21367264", + "longitude_deg": "-162.0438843", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Eek", + "scheduled_service": "no", + "gps_code": "PAEE", + "iata_code": "EEK", + "local_code": "EEK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eek_Airport" + }, + { + "id": "17174", + "ident": "PAEG", + "type": "small_airport", + "name": "Eagle Airport", + "latitude_deg": "64.77639771", + "longitude_deg": "-141.151001", + "elevation_ft": "908", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Eagle", + "scheduled_service": "no", + "gps_code": "PAEG", + "iata_code": "EAA", + "local_code": "EAA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eagle_Airport" + }, + { + "id": "5356", + "ident": "PAEH", + "type": "medium_airport", + "name": "Cape Newenham LRRS Airport", + "latitude_deg": "58.646400451699996", + "longitude_deg": "-162.06300354", + "elevation_ft": "541", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cape Newenham", + "scheduled_service": "no", + "gps_code": "PAEH", + "iata_code": "EHM", + "local_code": "EHM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cape_Newenham_LRRS_Airport" + }, + { + "id": "5357", + "ident": "PAEI", + "type": "medium_airport", + "name": "Eielson Air Force Base", + "latitude_deg": "64.66570282", + "longitude_deg": "-147.102005", + "elevation_ft": "547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fairbanks", + "scheduled_service": "no", + "gps_code": "PAEI", + "iata_code": "EIL", + "local_code": "EIL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eielson_Air_Force_Base" + }, + { + "id": "17178", + "ident": "PAEL", + "type": "seaplane_base", + "name": "Elfin Cove Seaplane Base", + "latitude_deg": "58.195201873799995", + "longitude_deg": "-136.347000122", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Elfin Cove", + "scheduled_service": "yes", + "gps_code": "PAEL", + "iata_code": "ELV", + "local_code": "ELV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elfin_Cove_Seaplane_Base" + }, + { + "id": "5358", + "ident": "PAEM", + "type": "medium_airport", + "name": "Emmonak Airport", + "latitude_deg": "62.78609848", + "longitude_deg": "-164.4909973", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Emmonak", + "scheduled_service": "yes", + "gps_code": "PAEM", + "iata_code": "EMK", + "local_code": "ENM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Emmonak_Airport" + }, + { + "id": "5359", + "ident": "PAEN", + "type": "medium_airport", + "name": "Kenai Municipal Airport", + "latitude_deg": "60.57310104370117", + "longitude_deg": "-151.2449951171875", + "elevation_ft": "99", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kenai", + "scheduled_service": "no", + "gps_code": "PAEN", + "iata_code": "ENA", + "local_code": "ENA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kenai_Municipal_Airport" + }, + { + "id": "17183", + "ident": "PAEW", + "type": "small_airport", + "name": "Newtok Airport", + "latitude_deg": "60.939098358154", + "longitude_deg": "-164.64100646973", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Newtok", + "scheduled_service": "no", + "gps_code": "PAEW", + "iata_code": "WWT", + "local_code": "EWU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Newtok_Airport" + }, + { + "id": "5360", + "ident": "PAFA", + "type": "large_airport", + "name": "Fairbanks International Airport", + "latitude_deg": "64.81510162", + "longitude_deg": "-147.8560028", + "elevation_ft": "439", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fairbanks", + "scheduled_service": "yes", + "gps_code": "PAFA", + "iata_code": "FAI", + "local_code": "FAI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fairbanks_International_Airport" + }, + { + "id": "5361", + "ident": "PAFB", + "type": "medium_airport", + "name": "Ladd Army Airfield", + "latitude_deg": "64.837502", + "longitude_deg": "-147.613998", + "elevation_ft": "454", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fairbanks", + "scheduled_service": "no", + "gps_code": "PAFB", + "iata_code": "FBK", + "local_code": "FBK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ladd_Army_Airfield", + "keywords": "Fort Wainwright" + }, + { + "id": "5362", + "ident": "PAFE", + "type": "medium_airport", + "name": "Kake Airport", + "latitude_deg": "56.961312", + "longitude_deg": "-133.910202", + "elevation_ft": "172", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kake", + "scheduled_service": "no", + "gps_code": "PAFE", + "local_code": "AFE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kake_Airport", + "keywords": "K23" + }, + { + "id": "17370", + "ident": "PAFK", + "type": "seaplane_base", + "name": "Farewell Lake Seaplane Base", + "latitude_deg": "62.5425", + "longitude_deg": "-153.623001", + "elevation_ft": "1052", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Farewell Lake", + "scheduled_service": "no", + "gps_code": "PAFK", + "local_code": "FKK", + "keywords": "3Z0" + }, + { + "id": "25015", + "ident": "PAFL", + "type": "small_airport", + "name": "Tin Creek Airport", + "latitude_deg": "62.532191", + "longitude_deg": "-153.612809", + "elevation_ft": "1151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Farewell Lake", + "scheduled_service": "no", + "gps_code": "PAFL", + "local_code": "TNW", + "keywords": "2Z9" + }, + { + "id": "5363", + "ident": "PAFM", + "type": "medium_airport", + "name": "Ambler Airport", + "latitude_deg": "67.107043", + "longitude_deg": "-157.854308", + "elevation_ft": "334", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ambler", + "scheduled_service": "no", + "gps_code": "PAFM", + "iata_code": "ABL", + "local_code": "AFM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ambler_Airport", + "keywords": "Z60" + }, + { + "id": "5364", + "ident": "PAFR", + "type": "small_airport", + "name": "Bryant Army Airfield", + "latitude_deg": "61.266399", + "longitude_deg": "-149.653", + "elevation_ft": "378", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fort Richardson", + "scheduled_service": "no", + "gps_code": "PAFR", + "iata_code": "FRN", + "local_code": "FRN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bryant_Army_Heliport", + "keywords": "Bryant Army Airfield" + }, + { + "id": "17469", + "ident": "PAFS", + "type": "small_airport", + "name": "Nikolai Airport", + "latitude_deg": "63.0186", + "longitude_deg": "-154.358002", + "elevation_ft": "441", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nikolai", + "scheduled_service": "no", + "gps_code": "PAFS", + "iata_code": "NIB", + "local_code": "FSP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nikolai_Airport", + "keywords": "5N1" + }, + { + "id": "17470", + "ident": "PAFV", + "type": "closed", + "name": "Five Mile Airport", + "latitude_deg": "65.927022", + "longitude_deg": "-149.839203", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Five Mile", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Five_Mile_Airport", + "keywords": "PAFV, FMC, FVM" + }, + { + "id": "17471", + "ident": "PAFW", + "type": "small_airport", + "name": "Farewell Airport", + "latitude_deg": "62.509327", + "longitude_deg": "-153.892279", + "elevation_ft": "1535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Farewell", + "scheduled_service": "no", + "iata_code": "FWL", + "local_code": "0AA4", + "keywords": "PAFW, FWL" + }, + { + "id": "5365", + "ident": "PAGA", + "type": "medium_airport", + "name": "Edward G. Pitka Sr Airport", + "latitude_deg": "64.73619843", + "longitude_deg": "-156.9369965", + "elevation_ft": "153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Galena", + "scheduled_service": "no", + "gps_code": "PAGA", + "iata_code": "GAL", + "local_code": "GAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Edward_G._Pitka_Sr._Airport" + }, + { + "id": "17575", + "ident": "PAGB", + "type": "small_airport", + "name": "Galbraith Lake Airport", + "latitude_deg": "68.4796981812", + "longitude_deg": "-149.490005493", + "elevation_ft": "2663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Galbraith Lake", + "scheduled_service": "no", + "gps_code": "PAGB", + "iata_code": "GBH", + "local_code": "GBH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Galbraith_Lake_Airport" + }, + { + "id": "17595", + "ident": "PAGG", + "type": "small_airport", + "name": "Kwigillingok Airport", + "latitude_deg": "59.876499", + "longitude_deg": "-163.169005", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kwigillingok", + "scheduled_service": "no", + "gps_code": "PAGG", + "iata_code": "KWK", + "local_code": "GGV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kwigillingok_Airport", + "keywords": "A85" + }, + { + "id": "5366", + "ident": "PAGH", + "type": "small_airport", + "name": "Shungnak Airport", + "latitude_deg": "66.88809967041", + "longitude_deg": "-157.16200256348", + "elevation_ft": "197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Shungnak", + "scheduled_service": "yes", + "gps_code": "PAGH", + "iata_code": "SHG", + "local_code": "SHG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shungnak_Airport" + }, + { + "id": "5367", + "ident": "PAGK", + "type": "medium_airport", + "name": "Gulkana Airport", + "latitude_deg": "62.155859", + "longitude_deg": "-145.454662", + "elevation_ft": "1586", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Gulkana", + "scheduled_service": "no", + "gps_code": "PAGK", + "iata_code": "GKN", + "local_code": "GKN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gulkana_Airport" + }, + { + "id": "22694", + "ident": "PAGL", + "type": "small_airport", + "name": "Golovin Airport", + "latitude_deg": "64.5504989624", + "longitude_deg": "-163.007003784", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Golovin", + "scheduled_service": "no", + "gps_code": "PAGL", + "iata_code": "GLV", + "local_code": "GLV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Golovin_Airport", + "keywords": "Formerly N93" + }, + { + "id": "5368", + "ident": "PAGM", + "type": "medium_airport", + "name": "Gambell Airport", + "latitude_deg": "63.76679992675781", + "longitude_deg": "-171.73300170898438", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Gambell", + "scheduled_service": "no", + "gps_code": "PAGM", + "iata_code": "GAM", + "local_code": "GAM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gambell_Airport" + }, + { + "id": "16093", + "ident": "PAGN", + "type": "seaplane_base", + "name": "Angoon Seaplane Base", + "latitude_deg": "57.497097", + "longitude_deg": "-134.56722", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Angoon", + "scheduled_service": "yes", + "gps_code": "PAGN", + "iata_code": "AGN", + "local_code": "AGN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Angoon_Seaplane_Base" + }, + { + "id": "16499", + "ident": "PAGQ", + "type": "small_airport", + "name": "Big Lake Airport", + "latitude_deg": "61.534658", + "longitude_deg": "-149.812936", + "elevation_ft": "158", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "PAGQ", + "iata_code": "BGQ", + "local_code": "BGQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Big_Lake_Airport" + }, + { + "id": "5369", + "ident": "PAGS", + "type": "medium_airport", + "name": "Gustavus Airport", + "latitude_deg": "58.4253006", + "longitude_deg": "-135.7070007", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Gustavus", + "scheduled_service": "yes", + "gps_code": "PAGS", + "iata_code": "GST", + "local_code": "GST", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gustavus_Airport" + }, + { + "id": "17885", + "ident": "PAGT", + "type": "small_airport", + "name": "Nightmute Airport", + "latitude_deg": "60.469129", + "longitude_deg": "-164.70407", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nightmute", + "scheduled_service": "no", + "gps_code": "PAGT", + "iata_code": "NME", + "local_code": "IGT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nightmute_Airport", + "keywords": "AK08" + }, + { + "id": "24574", + "ident": "PAGY", + "type": "small_airport", + "name": "Skagway Airport", + "latitude_deg": "59.460343", + "longitude_deg": "-135.316651", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Skagway", + "scheduled_service": "yes", + "gps_code": "PAGY", + "iata_code": "SGY", + "local_code": "SGY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Skagway_Airport" + }, + { + "id": "17619", + "ident": "PAHC", + "type": "medium_airport", + "name": "Holy Cross Airport", + "latitude_deg": "62.18830108642578", + "longitude_deg": "-159.77499389648438", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Holy Cross", + "scheduled_service": "yes", + "gps_code": "PAHC", + "iata_code": "HCR", + "local_code": "HCA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Holy_Cross_Airport", + "keywords": "4Z4" + }, + { + "id": "354371", + "ident": "PAHE", + "type": "small_airport", + "name": "Healy Airport", + "latitude_deg": "65.08896", + "longitude_deg": "-150.871934", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "scheduled_service": "no", + "gps_code": "PAHE" + }, + { + "id": "5370", + "ident": "PAHL", + "type": "medium_airport", + "name": "Huslia Airport", + "latitude_deg": "65.69789886", + "longitude_deg": "-156.3509979", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Huslia", + "scheduled_service": "no", + "gps_code": "PAHL", + "iata_code": "HSL", + "local_code": "HLA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Huslia_Airport" + }, + { + "id": "5372", + "ident": "PAHN", + "type": "medium_airport", + "name": "Haines Airport", + "latitude_deg": "59.24380111694336", + "longitude_deg": "-135.5240020751953", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Haines", + "scheduled_service": "yes", + "gps_code": "PAHN", + "iata_code": "HNS", + "local_code": "HNS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Haines_Airport" + }, + { + "id": "5373", + "ident": "PAHO", + "type": "medium_airport", + "name": "Homer Airport", + "latitude_deg": "59.645599365234375", + "longitude_deg": "-151.4770050048828", + "elevation_ft": "84", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Homer", + "scheduled_service": "no", + "gps_code": "PAHO", + "iata_code": "HOM", + "local_code": "HOM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Homer_Airport" + }, + { + "id": "5374", + "ident": "PAHP", + "type": "medium_airport", + "name": "Hooper Bay Airport", + "latitude_deg": "61.52389908", + "longitude_deg": "-166.1470032", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Hooper Bay", + "scheduled_service": "no", + "gps_code": "PAHP", + "iata_code": "HPB", + "local_code": "HPB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hooper_Bay_Airport" + }, + { + "id": "17656", + "ident": "PAHU", + "type": "small_airport", + "name": "Hughes Airport", + "latitude_deg": "66.04109955", + "longitude_deg": "-154.2630005", + "elevation_ft": "299", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Hughes", + "scheduled_service": "yes", + "gps_code": "PAHU", + "iata_code": "HUS", + "local_code": "HUS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hughes_Airport_(Alaska)" + }, + { + "id": "17655", + "ident": "PAHV", + "type": "small_airport", + "name": "Healy River Airport", + "latitude_deg": "63.8661994934082", + "longitude_deg": "-148.968994140625", + "elevation_ft": "1263", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Healy", + "scheduled_service": "no", + "gps_code": "PAHV", + "local_code": "HRR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Healy_River_Airport" + }, + { + "id": "24575", + "ident": "PAHX", + "type": "small_airport", + "name": "Shageluk Airport", + "latitude_deg": "62.6922988892", + "longitude_deg": "-159.569000244", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Shageluk", + "scheduled_service": "no", + "gps_code": "PAHX", + "iata_code": "SHX", + "local_code": "SHX" + }, + { + "id": "17658", + "ident": "PAHY", + "type": "seaplane_base", + "name": "Hydaburg Seaplane Base", + "latitude_deg": "55.206298828125", + "longitude_deg": "-132.8280029296875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Hydaburg", + "scheduled_service": "no", + "gps_code": "PAHY", + "iata_code": "HYG", + "local_code": "HYG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hydaburg_Seaplane_Base" + }, + { + "id": "24069", + "ident": "PAI", + "type": "heliport", + "name": "Barton Heliport", + "latitude_deg": "34.257917", + "longitude_deg": "-118.41109", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pacoima", + "scheduled_service": "no", + "gps_code": "KPAI", + "local_code": "PAI" + }, + { + "id": "17884", + "ident": "PAIG", + "type": "small_airport", + "name": "Igiugig Airport", + "latitude_deg": "59.32400131225586", + "longitude_deg": "-155.90199279785156", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Igiugig", + "scheduled_service": "no", + "gps_code": "PAIG", + "iata_code": "IGG", + "local_code": "IGG" + }, + { + "id": "5375", + "ident": "PAII", + "type": "medium_airport", + "name": "Egegik Airport", + "latitude_deg": "58.184386", + "longitude_deg": "-157.374873", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Egegik", + "scheduled_service": "yes", + "gps_code": "PAII", + "iata_code": "EGX", + "local_code": "EII", + "wikipedia_link": "https://en.wikipedia.org/wiki/Egegik_Airport" + }, + { + "id": "5376", + "ident": "PAIK", + "type": "medium_airport", + "name": "Bob Baker Memorial Airport", + "latitude_deg": "66.9759979248", + "longitude_deg": "-160.43699646", + "elevation_ft": "166", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kiana", + "scheduled_service": "no", + "gps_code": "PAIK", + "iata_code": "IAN", + "local_code": "IAN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bob_Baker_Memorial_Airport" + }, + { + "id": "5377", + "ident": "PAIL", + "type": "medium_airport", + "name": "Iliamna Airport", + "latitude_deg": "59.75439835", + "longitude_deg": "-154.9109955", + "elevation_ft": "192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Iliamna", + "scheduled_service": "no", + "gps_code": "PAIL", + "iata_code": "ILI", + "local_code": "ILI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iliamna_Airport" + }, + { + "id": "5378", + "ident": "PAIM", + "type": "medium_airport", + "name": "Indian Mountain LRRS Airport", + "latitude_deg": "65.99279785", + "longitude_deg": "-153.7039948", + "elevation_ft": "1273", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Utopia Creek", + "scheduled_service": "no", + "gps_code": "PAIM", + "iata_code": "UTO", + "local_code": "UTO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Indian_Mountain_LRRS_Airport" + }, + { + "id": "18169", + "ident": "PAIN", + "type": "small_airport", + "name": "Denali National Park Airport", + "latitude_deg": "63.732465", + "longitude_deg": "-148.911266", + "elevation_ft": "1720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Denali Park", + "scheduled_service": "no", + "gps_code": "PAIN", + "iata_code": "MCL", + "local_code": "INR", + "wikipedia_link": "https://en.wikipedia.org/wiki/McKinley_National_Park_Airport", + "keywords": "5MK, McKinley National Park Airport" + }, + { + "id": "18251", + "ident": "PAIW", + "type": "small_airport", + "name": "Wales Airport", + "latitude_deg": "65.622593", + "longitude_deg": "-168.095", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wales", + "scheduled_service": "yes", + "gps_code": "PAIW", + "iata_code": "WAA", + "local_code": "IWK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wales_Airport_(Alaska)" + }, + { + "id": "16095", + "ident": "PAJC", + "type": "small_airport", + "name": "Chignik Airport", + "latitude_deg": "56.311501", + "longitude_deg": "-158.373001", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chignik", + "scheduled_service": "no", + "gps_code": "PAJC", + "local_code": "AJC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chignik_Airport", + "keywords": "Z79" + }, + { + "id": "5379", + "ident": "PAJN", + "type": "medium_airport", + "name": "Juneau International Airport", + "latitude_deg": "58.35499954223633", + "longitude_deg": "-134.5760040283203", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Juneau", + "scheduled_service": "yes", + "gps_code": "PAJN", + "iata_code": "JNU", + "local_code": "JNU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Juneau_International_Airport" + }, + { + "id": "18259", + "ident": "PAJV", + "type": "closed", + "name": "Jonesville Mine Airport", + "latitude_deg": "61.7314", + "longitude_deg": "-148.927994", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sutton", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jonesville_Mine_Airport", + "keywords": "JVM, PAJV, AK42" + }, + { + "id": "18300", + "ident": "PAJZ", + "type": "small_airport", + "name": "Koliganek Airport", + "latitude_deg": "59.726600647", + "longitude_deg": "-157.259002686", + "elevation_ft": "269", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Koliganek", + "scheduled_service": "yes", + "gps_code": "PAJZ", + "iata_code": "KGK", + "local_code": "JZZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Koliganek_Airport" + }, + { + "id": "19631", + "ident": "PAKD", + "type": "small_airport", + "name": "Kodiak Municipal Airport", + "latitude_deg": "57.8059005737", + "longitude_deg": "-152.37399292", + "elevation_ft": "139", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kodiak", + "scheduled_service": "no", + "gps_code": "PAKD", + "iata_code": "KDK", + "local_code": "KDK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kodiak_Municipal_Airport" + }, + { + "id": "19891", + "ident": "PAKF", + "type": "small_airport", + "name": "False Pass Airport", + "latitude_deg": "54.8474006652832", + "longitude_deg": "-163.41000366210938", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "False Pass", + "scheduled_service": "no", + "gps_code": "PAKF", + "iata_code": "KFP", + "local_code": "KFP" + }, + { + "id": "16192", + "ident": "PAKH", + "type": "small_airport", + "name": "Akhiok Airport", + "latitude_deg": "56.9387016296", + "longitude_deg": "-154.182998657", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Akhiok", + "scheduled_service": "no", + "gps_code": "PAKH", + "iata_code": "AKK", + "local_code": "AKK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Akhiok_Airport" + }, + { + "id": "17979", + "ident": "PAKI", + "type": "small_airport", + "name": "Kipnuk Airport", + "latitude_deg": "59.932998657199995", + "longitude_deg": "-164.031005859", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kipnuk", + "scheduled_service": "no", + "gps_code": "PAKI", + "iata_code": "KPN", + "local_code": "IIK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kipnuk_Airport" + }, + { + "id": "20272", + "ident": "PAKK", + "type": "small_airport", + "name": "Koyuk Alfred Adams Airport", + "latitude_deg": "64.9394989014", + "longitude_deg": "-161.154006958", + "elevation_ft": "154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Koyuk", + "scheduled_service": "no", + "gps_code": "PAKK", + "iata_code": "KKA", + "local_code": "KKA" + }, + { + "id": "21568", + "ident": "PAKL", + "type": "small_airport", + "name": "Kulik Lake Airport", + "latitude_deg": "58.9821014404", + "longitude_deg": "-155.121002197", + "elevation_ft": "717", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kulik Lake", + "scheduled_service": "no", + "gps_code": "PAKL", + "iata_code": "LKK", + "local_code": "LKK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kulik_Lake_Airport" + }, + { + "id": "5380", + "ident": "PAKN", + "type": "medium_airport", + "name": "King Salmon Airport", + "latitude_deg": "58.677845", + "longitude_deg": "-156.651965", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "King Salmon", + "scheduled_service": "yes", + "gps_code": "PAKN", + "iata_code": "AKN", + "local_code": "AKN", + "wikipedia_link": "https://en.wikipedia.org/wiki/King_Salmon_Airport", + "keywords": "Naknek Air Force Base" + }, + { + "id": "17980", + "ident": "PAKO", + "type": "small_airport", + "name": "Nikolski Air Station", + "latitude_deg": "52.94160079956055", + "longitude_deg": "-168.8489990234375", + "elevation_ft": "77", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nikolski", + "scheduled_service": "no", + "gps_code": "PAKO", + "iata_code": "IKO", + "local_code": "IKO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nikolski_Air_Station" + }, + { + "id": "5381", + "ident": "PAKP", + "type": "medium_airport", + "name": "Anaktuvuk Pass Airport", + "latitude_deg": "68.13359833", + "longitude_deg": "-151.7429962", + "elevation_ft": "2102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anaktuvuk Pass", + "scheduled_service": "no", + "gps_code": "PAKP", + "iata_code": "AKP", + "local_code": "AKP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anaktuvuk_Pass_Airport" + }, + { + "id": "5382", + "ident": "PAKT", + "type": "medium_airport", + "name": "Ketchikan International Airport", + "latitude_deg": "55.35559845", + "longitude_deg": "-131.7140045", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ketchikan", + "scheduled_service": "yes", + "gps_code": "PAKT", + "iata_code": "KTN", + "local_code": "KTN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ketchikan_International_Airport" + }, + { + "id": "25239", + "ident": "PAKU", + "type": "small_airport", + "name": "Ugnu-Kuparuk Airport", + "latitude_deg": "70.33080291750001", + "longitude_deg": "-149.598007202", + "elevation_ft": "67", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kuparuk", + "scheduled_service": "no", + "gps_code": "PAKU", + "iata_code": "UUK", + "local_code": "UBW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ugnu-Kuparuk_Airport" + }, + { + "id": "19274", + "ident": "PAKV", + "type": "small_airport", + "name": "Kaltag Airport", + "latitude_deg": "64.31909943", + "longitude_deg": "-158.7409973", + "elevation_ft": "181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kaltag", + "scheduled_service": "no", + "gps_code": "PAKV", + "iata_code": "KAL", + "local_code": "KAL" + }, + { + "id": "5383", + "ident": "PAKW", + "type": "medium_airport", + "name": "Klawock Airport", + "latitude_deg": "55.579201", + "longitude_deg": "-133.076004", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Klawock", + "scheduled_service": "no", + "gps_code": "PAKW", + "iata_code": "KLW", + "local_code": "AKW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Klawock_Airport", + "keywords": "9Z1" + }, + { + "id": "21434", + "ident": "PAKY", + "type": "small_airport", + "name": "Karluk Airport", + "latitude_deg": "57.5671005249", + "longitude_deg": "-154.449996948", + "elevation_ft": "137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Karluk", + "scheduled_service": "no", + "gps_code": "PAKY", + "iata_code": "KYK", + "local_code": "KYK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Karluk_Airport" + }, + { + "id": "9282", + "ident": "PALB", + "type": "small_airport", + "name": "Larsen Bay Airport", + "latitude_deg": "57.535099", + "longitude_deg": "-153.977993", + "elevation_ft": "87", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Larsen Bay", + "scheduled_service": "no", + "gps_code": "PALB", + "iata_code": "KLN", + "local_code": "2A3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Larsen_Bay_Airport", + "keywords": "09AK" + }, + { + "id": "20333", + "ident": "PALG", + "type": "small_airport", + "name": "Kalskag Airport", + "latitude_deg": "61.53630065917969", + "longitude_deg": "-160.34100341796875", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kalskag", + "scheduled_service": "yes", + "gps_code": "PALG", + "iata_code": "KLG", + "local_code": "KLG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kalskag_Airport" + }, + { + "id": "21567", + "ident": "PALH", + "type": "seaplane_base", + "name": "Lake Hood Airport", + "latitude_deg": "61.18", + "longitude_deg": "-149.972003", + "elevation_ft": "71", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchorage", + "scheduled_service": "no", + "gps_code": "PALH", + "local_code": "LHD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_Hood_Seaplane_Base", + "keywords": "Lake Hood Seaplane Base" + }, + { + "id": "16110", + "ident": "PALP", + "type": "small_airport", + "name": "Alpine Airstrip", + "latitude_deg": "70.344299", + "longitude_deg": "-150.945007", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nuiqsut", + "scheduled_service": "no", + "gps_code": "PALP", + "iata_code": "DQH", + "local_code": "AK15", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alpine_Airstrip", + "keywords": "Deadhorse" + }, + { + "id": "25694", + "ident": "PALR", + "type": "small_airport", + "name": "Chandalar Lake Airport", + "latitude_deg": "67.5045013428", + "longitude_deg": "-148.483001709", + "elevation_ft": "1920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chandalar Lake", + "scheduled_service": "no", + "gps_code": "PALR", + "iata_code": "WCR", + "local_code": "WCR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chandalar_Lake_Airport" + }, + { + "id": "5385", + "ident": "PALU", + "type": "medium_airport", + "name": "Cape Lisburne LRRS Airport", + "latitude_deg": "68.87509918", + "longitude_deg": "-166.1100006", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cape Lisburne", + "scheduled_service": "no", + "gps_code": "PALU", + "iata_code": "LUR", + "local_code": "LUR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cape_Lisburne_LRRS_Airport" + }, + { + "id": "21843", + "ident": "PAMB", + "type": "small_airport", + "name": "Manokotak Airport", + "latitude_deg": "58.990200042699996", + "longitude_deg": "-159.050003052", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Manokotak", + "scheduled_service": "no", + "gps_code": "PAMB", + "iata_code": "KMO", + "local_code": "MBA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manokotak_Airport", + "keywords": "17Z" + }, + { + "id": "21844", + "ident": "PAMC", + "type": "medium_airport", + "name": "McGrath Airport", + "latitude_deg": "62.95289993", + "longitude_deg": "-155.6060028", + "elevation_ft": "341", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "McGrath", + "scheduled_service": "yes", + "gps_code": "PAMC", + "iata_code": "MCG", + "local_code": "MCG", + "wikipedia_link": "https://en.wikipedia.org/wiki/McGrath_Airport" + }, + { + "id": "21936", + "ident": "PAMD", + "type": "small_airport", + "name": "Middleton Island Airport", + "latitude_deg": "59.4499015808", + "longitude_deg": "-146.307006836", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Middleton Island", + "scheduled_service": "no", + "gps_code": "PAMD", + "iata_code": "MDO", + "local_code": "MDO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Middleton_Island_Airport" + }, + { + "id": "5371", + "ident": "PAMH", + "type": "small_airport", + "name": "Minchumina Airport", + "latitude_deg": "63.886002", + "longitude_deg": "-152.302002", + "elevation_ft": "678", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Minchumina", + "scheduled_service": "no", + "gps_code": "PAMH", + "iata_code": "LMA", + "local_code": "MHM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Minchumina_Airport" + }, + { + "id": "24578", + "ident": "PAMK", + "type": "small_airport", + "name": "St Michael Airport", + "latitude_deg": "63.49010086", + "longitude_deg": "-162.1100006", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "St Michael", + "scheduled_service": "yes", + "gps_code": "PAMK", + "iata_code": "SMK", + "local_code": "SMK", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Michael_Airport", + "keywords": "5S8" + }, + { + "id": "22107", + "ident": "PAML", + "type": "small_airport", + "name": "Manley Hot Springs Airport", + "latitude_deg": "64.99759674069999", + "longitude_deg": "-150.643997192", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Manley Hot Springs", + "scheduled_service": "no", + "gps_code": "PAML", + "iata_code": "MLY", + "local_code": "MLY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manley_Hot_Springs_Airport" + }, + { + "id": "22496", + "ident": "PAMM", + "type": "seaplane_base", + "name": "Metlakatla Seaplane Base", + "latitude_deg": "55.131001", + "longitude_deg": "-131.578003", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Metlakatla", + "scheduled_service": "no", + "gps_code": "PAMM", + "iata_code": "MTM", + "local_code": "MTM", + "home_link": "https://www.fhwa.dot.gov/tribal/tribalprgm/govts/metlakatla.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Metlakatla_Seaplane_Base" + }, + { + "id": "22305", + "ident": "PAMO", + "type": "small_airport", + "name": "Mountain Village Airport", + "latitude_deg": "62.095401763916016", + "longitude_deg": "-163.6820068359375", + "elevation_ft": "337", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Mountain Village", + "scheduled_service": "yes", + "gps_code": "PAMO", + "iata_code": "MOU", + "local_code": "MOU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mountain_Village_Airport" + }, + { + "id": "5386", + "ident": "PAMR", + "type": "medium_airport", + "name": "Merrill Field", + "latitude_deg": "61.2135009765625", + "longitude_deg": "-149.843994140625", + "elevation_ft": "137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchorage", + "scheduled_service": "no", + "gps_code": "PAMR", + "iata_code": "MRI", + "local_code": "MRI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Merrill_Field" + }, + { + "id": "7976", + "ident": "PAMX", + "type": "small_airport", + "name": "Mc Carthy Airport", + "latitude_deg": "61.4370994568", + "longitude_deg": "-142.904006958", + "elevation_ft": "1531", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Mccarthy", + "scheduled_service": "no", + "gps_code": "PAMX", + "iata_code": "MXY", + "local_code": "15Z", + "wikipedia_link": "https://en.wikipedia.org/wiki/McCarthy_Airport" + }, + { + "id": "5387", + "ident": "PAMY", + "type": "medium_airport", + "name": "Mekoryuk Airport", + "latitude_deg": "60.37139892578125", + "longitude_deg": "-166.27099609375", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Mekoryuk", + "scheduled_service": "no", + "gps_code": "PAMY", + "iata_code": "MYU", + "local_code": "MYU" + }, + { + "id": "25894", + "ident": "PANA", + "type": "small_airport", + "name": "Napakiak Airport", + "latitude_deg": "60.69029998779297", + "longitude_deg": "-161.97900390625", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Napakiak", + "scheduled_service": "no", + "gps_code": "PANA", + "iata_code": "WNA", + "local_code": "WNA" + }, + { + "id": "5388", + "ident": "PANC", + "type": "large_airport", + "name": "Ted Stevens Anchorage International Airport", + "latitude_deg": "61.1744", + "longitude_deg": "-149.996002", + "elevation_ft": "152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchorage", + "scheduled_service": "yes", + "gps_code": "PANC", + "iata_code": "ANC", + "local_code": "ANC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ted_Stevens_Anchorage_International_Airport" + }, + { + "id": "16291", + "ident": "PANI", + "type": "medium_airport", + "name": "Aniak Airport", + "latitude_deg": "61.581600189208984", + "longitude_deg": "-159.54299926757812", + "elevation_ft": "88", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Aniak", + "scheduled_service": "yes", + "gps_code": "PANI", + "iata_code": "ANI", + "local_code": "ANI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aniak_Airport" + }, + { + "id": "5390", + "ident": "PANN", + "type": "medium_airport", + "name": "Nenana Municipal Airport", + "latitude_deg": "64.548772", + "longitude_deg": "-149.074516", + "elevation_ft": "362", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nenana", + "scheduled_service": "no", + "gps_code": "PANN", + "iata_code": "ENN", + "local_code": "ENN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nenana_Municipal_Airport" + }, + { + "id": "12571", + "ident": "PANO", + "type": "small_airport", + "name": "Nondalton Airport", + "latitude_deg": "59.980201721191", + "longitude_deg": "-154.8390045166", + "elevation_ft": "314", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nondalton", + "scheduled_service": "no", + "gps_code": "PANO", + "iata_code": "NNL", + "local_code": "5NN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nondalton_Airport" + }, + { + "id": "17468", + "ident": "PANR", + "type": "seaplane_base", + "name": "Funter Bay Seaplane Base", + "latitude_deg": "58.2543983459", + "longitude_deg": "-134.897994995", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Funter Bay", + "scheduled_service": "yes", + "gps_code": "PANR", + "iata_code": "FNR", + "local_code": "FNR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Funter_Bay_Seaplane_Base" + }, + { + "id": "5391", + "ident": "PANT", + "type": "medium_airport", + "name": "Annette Island Airport", + "latitude_deg": "55.037026", + "longitude_deg": "-131.572695", + "elevation_ft": "119", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Metlakatla", + "scheduled_service": "yes", + "gps_code": "PANT", + "iata_code": "ANN", + "local_code": "ANN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Annette_Island_Airport" + }, + { + "id": "5417", + "ident": "PANU", + "type": "small_airport", + "name": "Nulato Airport", + "latitude_deg": "64.729301", + "longitude_deg": "-158.074005", + "elevation_ft": "399", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nulato", + "scheduled_service": "no", + "gps_code": "PANU", + "iata_code": "NUL", + "local_code": "NUL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nulato_Airport" + }, + { + "id": "5392", + "ident": "PANV", + "type": "medium_airport", + "name": "Anvik Airport", + "latitude_deg": "62.646702", + "longitude_deg": "-160.190994", + "elevation_ft": "291", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anvik", + "scheduled_service": "yes", + "gps_code": "PANV", + "iata_code": "ANV", + "local_code": "ANV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anvik_Airport" + }, + { + "id": "20664", + "ident": "PANW", + "type": "small_airport", + "name": "New Stuyahok Airport", + "latitude_deg": "59.4499015808", + "longitude_deg": "-157.32800293", + "elevation_ft": "364", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "New Stuyahok", + "scheduled_service": "no", + "gps_code": "PANW", + "iata_code": "KNW", + "local_code": "KNW" + }, + { + "id": "23513", + "ident": "PAOB", + "type": "small_airport", + "name": "Kobuk Airport", + "latitude_deg": "66.9123001099", + "longitude_deg": "-156.897003174", + "elevation_ft": "137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kobuk", + "scheduled_service": "no", + "gps_code": "PAOB", + "iata_code": "OBU", + "local_code": "OBU" + }, + { + "id": "16073", + "ident": "PAOC", + "type": "small_airport", + "name": "Portage Creek Airport", + "latitude_deg": "58.9065", + "longitude_deg": "-157.714", + "elevation_ft": "137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Portage Creek", + "scheduled_service": "no", + "gps_code": "PAOC", + "iata_code": "PCA", + "local_code": "A14", + "wikipedia_link": "https://en.wikipedia.org/wiki/Portage_Creek_Airport", + "keywords": "AK14" + }, + { + "id": "17654", + "ident": "PAOH", + "type": "small_airport", + "name": "Hoonah Airport", + "latitude_deg": "58.0961", + "longitude_deg": "-135.410111", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Hoonah", + "scheduled_service": "yes", + "gps_code": "PAOH", + "iata_code": "HNH", + "local_code": "HNH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hoonah_Airport" + }, + { + "id": "5393", + "ident": "PAOM", + "type": "medium_airport", + "name": "Nome Airport", + "latitude_deg": "64.51219940185547", + "longitude_deg": "-165.44500732421875", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nome", + "scheduled_service": "yes", + "gps_code": "PAOM", + "iata_code": "OME", + "local_code": "OME", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nome_Airport" + }, + { + "id": "24199", + "ident": "PAOO", + "type": "small_airport", + "name": "Toksook Bay Airport", + "latitude_deg": "60.54140091", + "longitude_deg": "-165.0870056", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Toksook Bay", + "scheduled_service": "no", + "gps_code": "PAOO", + "iata_code": "OOK", + "local_code": "OOK" + }, + { + "id": "5394", + "ident": "PAOR", + "type": "medium_airport", + "name": "Northway Airport", + "latitude_deg": "62.9612999", + "longitude_deg": "-141.9290009", + "elevation_ft": "1715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Northway", + "scheduled_service": "no", + "gps_code": "PAOR", + "iata_code": "ORT", + "local_code": "ORT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Northway_Airport" + }, + { + "id": "5395", + "ident": "PAOT", + "type": "medium_airport", + "name": "Ralph Wien Memorial Airport", + "latitude_deg": "66.88469696", + "longitude_deg": "-162.598999", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kotzebue", + "scheduled_service": "yes", + "gps_code": "PAOT", + "iata_code": "OTZ", + "local_code": "OTZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ralph_Wien_Memorial_Airport" + }, + { + "id": "23953", + "ident": "PAOU", + "type": "small_airport", + "name": "Nelson Lagoon Airport", + "latitude_deg": "56.007499694824", + "longitude_deg": "-161.16000366211", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nelson Lagoon", + "scheduled_service": "no", + "gps_code": "PAOU", + "iata_code": "NLG", + "local_code": "OUL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nelson_Lagoon_Airport" + }, + { + "id": "5396", + "ident": "PAPB", + "type": "medium_airport", + "name": "St George Airport", + "latitude_deg": "56.577345", + "longitude_deg": "-169.663823", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "St George", + "scheduled_service": "yes", + "gps_code": "PAPB", + "iata_code": "STG", + "local_code": "PBV", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._George_Airport_(Alaska)", + "keywords": "A8L" + }, + { + "id": "5397", + "ident": "PAPC", + "type": "medium_airport", + "name": "Port Clarence Coast Guard Station", + "latitude_deg": "65.2537002563", + "longitude_deg": "-166.85899353", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Port Clarence", + "scheduled_service": "no", + "gps_code": "PAPC", + "iata_code": "KPC", + "local_code": "KPC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Clarence_Coast_Guard_Station" + }, + { + "id": "24081", + "ident": "PAPE", + "type": "small_airport", + "name": "Perryville Airport", + "latitude_deg": "55.905725", + "longitude_deg": "-159.162188", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Perryville", + "scheduled_service": "no", + "gps_code": "PAPE", + "iata_code": "KPV", + "local_code": "PEV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Perryville_Airport", + "keywords": "AK05" + }, + { + "id": "5398", + "ident": "PAPG", + "type": "medium_airport", + "name": "Petersburg James A Johnson Airport", + "latitude_deg": "56.80170059", + "longitude_deg": "-132.9450073", + "elevation_ft": "111", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Petersburg", + "scheduled_service": "yes", + "gps_code": "PAPG", + "iata_code": "PSG", + "local_code": "PSG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Petersburg_James_A._Johnson_Airport" + }, + { + "id": "5399", + "ident": "PAPH", + "type": "medium_airport", + "name": "Port Heiden Airport", + "latitude_deg": "56.959359", + "longitude_deg": "-158.62106", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Port Heiden", + "scheduled_service": "no", + "gps_code": "PAPH", + "iata_code": "PTH", + "local_code": "PTH" + }, + { + "id": "24205", + "ident": "PAPK", + "type": "small_airport", + "name": "Napaskiak Airport", + "latitude_deg": "60.70289993", + "longitude_deg": "-161.7779999", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Napaskiak", + "scheduled_service": "no", + "gps_code": "PAPK", + "iata_code": "PKA", + "local_code": "PKA" + }, + { + "id": "5400", + "ident": "PAPM", + "type": "medium_airport", + "name": "Platinum Airport", + "latitude_deg": "59.01139831542969", + "longitude_deg": "-161.82000732421875", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Platinum", + "scheduled_service": "no", + "gps_code": "PAPM", + "iata_code": "PTU", + "local_code": "PTU" + }, + { + "id": "24197", + "ident": "PAPN", + "type": "small_airport", + "name": "Pilot Point Airport", + "latitude_deg": "57.5803985596", + "longitude_deg": "-157.572006226", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Pilot Point", + "scheduled_service": "no", + "gps_code": "PAPN", + "iata_code": "PIP", + "local_code": "PNP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pilot_Point_Airport" + }, + { + "id": "24089", + "ident": "PAPO", + "type": "small_airport", + "name": "Point Hope Airport", + "latitude_deg": "68.34880065917969", + "longitude_deg": "-166.7989959716797", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Point Hope", + "scheduled_service": "no", + "gps_code": "PAPO", + "iata_code": "PHO", + "local_code": "PHO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Point_Hope_Airport" + }, + { + "id": "24202", + "ident": "PAPR", + "type": "small_airport", + "name": "Prospect Creek Airport", + "latitude_deg": "66.814102172852", + "longitude_deg": "-150.64399719238", + "elevation_ft": "1095", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Prospect Creek", + "scheduled_service": "no", + "gps_code": "PAPR", + "iata_code": "PPC", + "local_code": "PPC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Prospect_Creek_Airport" + }, + { + "id": "16292", + "ident": "PAQC", + "type": "closed", + "name": "Klawock Seaplane Base", + "latitude_deg": "55.554699", + "longitude_deg": "-133.102005", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Klawock", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Klawock_Seaplane_Base", + "keywords": "PAQC, AQC, 9Z0" + }, + { + "id": "16293", + "ident": "PAQH", + "type": "small_airport", + "name": "Quinhagak Airport", + "latitude_deg": "59.7551", + "longitude_deg": "-161.845", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Quinhagak", + "scheduled_service": "yes", + "gps_code": "PAQH", + "iata_code": "KWN", + "local_code": "AQH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quinhagak_Airport" + }, + { + "id": "5401", + "ident": "PAQT", + "type": "medium_airport", + "name": "Nuiqsut Airport", + "latitude_deg": "70.209999", + "longitude_deg": "-151.005998", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nuiqsut", + "scheduled_service": "no", + "gps_code": "PAQT", + "iata_code": "NUI", + "local_code": "AQT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nuiqsut_Airport", + "keywords": "10AK" + }, + { + "id": "5402", + "ident": "PARC", + "type": "medium_airport", + "name": "Arctic Village Airport", + "latitude_deg": "68.1147", + "longitude_deg": "-145.578995", + "elevation_ft": "2092", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Arctic Village", + "scheduled_service": "yes", + "gps_code": "PARC", + "iata_code": "ARC", + "local_code": "ARC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arctic_Village_Airport" + }, + { + "id": "24365", + "ident": "PARS", + "type": "small_airport", + "name": "Russian Mission Airport", + "latitude_deg": "61.7788848877", + "longitude_deg": "-161.319458008", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Russian Mission", + "scheduled_service": "no", + "gps_code": "PARS", + "iata_code": "RSH", + "local_code": "RSH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Russian_Mission_Airport" + }, + { + "id": "5403", + "ident": "PARY", + "type": "medium_airport", + "name": "Ruby Airport", + "latitude_deg": "64.72720337", + "longitude_deg": "-155.4700012", + "elevation_ft": "658", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ruby", + "scheduled_service": "no", + "gps_code": "PARY", + "iata_code": "RBY", + "local_code": "RBY" + }, + { + "id": "5404", + "ident": "PASA", + "type": "medium_airport", + "name": "Savoonga Airport", + "latitude_deg": "63.686401", + "longitude_deg": "-170.492996", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Savoonga", + "scheduled_service": "no", + "gps_code": "PASA", + "iata_code": "SVA", + "local_code": "SVA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Savoonga_Airport" + }, + { + "id": "5405", + "ident": "PASC", + "type": "medium_airport", + "name": "Deadhorse Airport", + "latitude_deg": "70.19470215", + "longitude_deg": "-148.4649963", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Deadhorse", + "scheduled_service": "yes", + "gps_code": "PASC", + "iata_code": "SCC", + "local_code": "SCC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Deadhorse_Airport" + }, + { + "id": "5406", + "ident": "PASD", + "type": "medium_airport", + "name": "Sand Point Airport", + "latitude_deg": "55.314998626708984", + "longitude_deg": "-160.5229949951172", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sand Point", + "scheduled_service": "no", + "gps_code": "PASD", + "iata_code": "SDP", + "local_code": "SDP" + }, + { + "id": "5407", + "ident": "PASH", + "type": "medium_airport", + "name": "Shishmaref Airport", + "latitude_deg": "66.249604", + "longitude_deg": "-166.089112", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Shishmaref", + "scheduled_service": "no", + "gps_code": "PASH", + "iata_code": "SHH", + "local_code": "SHH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shishmaref_Airport", + "keywords": "K09" + }, + { + "id": "5408", + "ident": "PASI", + "type": "medium_airport", + "name": "Sitka Rocky Gutierrez Airport", + "latitude_deg": "57.04710006713867", + "longitude_deg": "-135.36199951171875", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sitka", + "scheduled_service": "yes", + "gps_code": "PASI", + "iata_code": "SIT", + "local_code": "SIT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sitka_Rocky_Gutierrez_Airport" + }, + { + "id": "5384", + "ident": "PASK", + "type": "small_airport", + "name": "Selawik Airport", + "latitude_deg": "66.600098", + "longitude_deg": "-159.985992", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Selawik", + "scheduled_service": "yes", + "gps_code": "PASK", + "iata_code": "WLK", + "local_code": "WLK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Selawik_Airport" + }, + { + "id": "24577", + "ident": "PASL", + "type": "small_airport", + "name": "Sleetmute Airport", + "latitude_deg": "61.7005004883", + "longitude_deg": "-157.166000366", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sleetmute", + "scheduled_service": "no", + "gps_code": "PASL", + "iata_code": "SLQ", + "local_code": "SLQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sleetmute_Airport" + }, + { + "id": "5409", + "ident": "PASM", + "type": "medium_airport", + "name": "St Mary's Airport", + "latitude_deg": "62.0605011", + "longitude_deg": "-163.302002", + "elevation_ft": "312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "St Mary's", + "scheduled_service": "no", + "gps_code": "PASM", + "iata_code": "KSM", + "local_code": "KSM", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Mary's_Airport_(Alaska)" + }, + { + "id": "5410", + "ident": "PASN", + "type": "medium_airport", + "name": "St Paul Island Airport", + "latitude_deg": "57.166311", + "longitude_deg": "-170.222555", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "St Paul Island", + "scheduled_service": "yes", + "gps_code": "PASN", + "iata_code": "SNP", + "local_code": "SNP", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._Paul_Island_Airport", + "keywords": "Pribilof" + }, + { + "id": "24675", + "ident": "PASO", + "type": "small_airport", + "name": "Seldovia Airport", + "latitude_deg": "59.442401885986", + "longitude_deg": "-151.70399475098", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Seldovia", + "scheduled_service": "no", + "gps_code": "PASO", + "iata_code": "SOV", + "local_code": "SOV", + "home_link": "http://www.seldovia.com/transportation-to-and-around-seldovia/by-air/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Seldovia_Airport" + }, + { + "id": "24579", + "ident": "PASP", + "type": "small_airport", + "name": "Sheep Mountain Airport", + "latitude_deg": "61.812000274700004", + "longitude_deg": "-147.507003784", + "elevation_ft": "2750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sheep Mountain", + "scheduled_service": "no", + "gps_code": "PASP", + "iata_code": "SMU", + "local_code": "SMU" + }, + { + "id": "25241", + "ident": "PAST", + "type": "small_airport", + "name": "Summit Airport", + "latitude_deg": "63.331501", + "longitude_deg": "-149.126999", + "elevation_ft": "2409", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cantwell", + "scheduled_service": "no", + "gps_code": "PAST", + "iata_code": "UMM", + "local_code": "UMM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Summit_Airport_(Alaska)" + }, + { + "id": "5411", + "ident": "PASV", + "type": "medium_airport", + "name": "Sparrevohn LRRS Airport", + "latitude_deg": "61.09740067", + "longitude_deg": "-155.5740051", + "elevation_ft": "1585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sparrevohn", + "scheduled_service": "no", + "gps_code": "PASV", + "iata_code": "SVW", + "local_code": "SVW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sparrevohn_LRRS_Airport" + }, + { + "id": "24576", + "ident": "PASW", + "type": "small_airport", + "name": "Skwentna Airport", + "latitude_deg": "61.9653015137", + "longitude_deg": "-151.190994263", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Skwentna", + "scheduled_service": "no", + "gps_code": "PASW", + "iata_code": "SKW", + "local_code": "SKW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Skwentna_Airport" + }, + { + "id": "5412", + "ident": "PASX", + "type": "medium_airport", + "name": "Soldotna Airport", + "latitude_deg": "60.474935", + "longitude_deg": "-151.038471", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Soldotna", + "scheduled_service": "no", + "gps_code": "PASX", + "iata_code": "SXQ", + "local_code": "SXQ" + }, + { + "id": "5413", + "ident": "PASY", + "type": "medium_airport", + "name": "Eareckson Air Station", + "latitude_deg": "52.71229935", + "longitude_deg": "174.1139984", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Shemya", + "scheduled_service": "no", + "gps_code": "PASY", + "iata_code": "SYA", + "local_code": "SYA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eareckson_Air_Station" + }, + { + "id": "24807", + "ident": "PATA", + "type": "small_airport", + "name": "Ralph M Calhoun Memorial Airport", + "latitude_deg": "65.1744003296", + "longitude_deg": "-152.10899353", + "elevation_ft": "236", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tanana", + "scheduled_service": "no", + "gps_code": "PATA", + "iata_code": "TAL", + "local_code": "TAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ralph_M._Calhoun_Memorial_Airport" + }, + { + "id": "25014", + "ident": "PATC", + "type": "small_airport", + "name": "Tin City Long Range Radar Station Airport", + "latitude_deg": "65.56310272", + "longitude_deg": "-167.9219971", + "elevation_ft": "271", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tin City", + "scheduled_service": "no", + "gps_code": "PATC", + "iata_code": "TNC", + "local_code": "TNC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tin_City_LRRS_Airport" + }, + { + "id": "24908", + "ident": "PATE", + "type": "small_airport", + "name": "Teller Airport", + "latitude_deg": "65.2404022217", + "longitude_deg": "-166.339004517", + "elevation_ft": "294", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Teller", + "scheduled_service": "yes", + "gps_code": "PATE", + "iata_code": "TLA", + "local_code": "TER", + "wikipedia_link": "https://en.wikipedia.org/wiki/Teller_Airport" + }, + { + "id": "5414", + "ident": "PATG", + "type": "medium_airport", + "name": "Togiak Airport", + "latitude_deg": "59.052799224853516", + "longitude_deg": "-160.39700317382812", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Togiak Village", + "scheduled_service": "no", + "gps_code": "PATG", + "iata_code": "TOG", + "local_code": "TOG" + }, + { + "id": "24912", + "ident": "PATJ", + "type": "closed", + "name": "Tok Airport", + "latitude_deg": "63.303333", + "longitude_deg": "-143.001111", + "elevation_ft": "1670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tok", + "scheduled_service": "no", + "gps_code": "PATJ", + "local_code": "TKJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tok_Airport" + }, + { + "id": "24910", + "ident": "PATK", + "type": "medium_airport", + "name": "Talkeetna Airport", + "latitude_deg": "62.320499420166", + "longitude_deg": "-150.09399414062", + "elevation_ft": "358", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Talkeetna", + "scheduled_service": "no", + "gps_code": "PATK", + "iata_code": "TKA", + "local_code": "TKA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Talkeetna_Airport" + }, + { + "id": "5415", + "ident": "PATL", + "type": "medium_airport", + "name": "Tatalina LRRS Airport", + "latitude_deg": "62.894401550299996", + "longitude_deg": "-155.977005005", + "elevation_ft": "964", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Takotna", + "scheduled_service": "no", + "gps_code": "PATL", + "iata_code": "TLJ", + "local_code": "TLJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tatalina_LRRS_Airport" + }, + { + "id": "5416", + "ident": "PATQ", + "type": "medium_airport", + "name": "Atqasuk Edward Burnell Sr Memorial Airport", + "latitude_deg": "70.46704", + "longitude_deg": "-157.436013", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Atqasuk", + "scheduled_service": "no", + "gps_code": "PATQ", + "iata_code": "ATK", + "local_code": "ATK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atqasuk_Edward_Burnell_Sr._Memorial_Airport", + "keywords": "Z46" + }, + { + "id": "25117", + "ident": "PATW", + "type": "small_airport", + "name": "Cantwell Airport", + "latitude_deg": "63.391201", + "longitude_deg": "-148.955995", + "elevation_ft": "2190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cantwell", + "scheduled_service": "no", + "gps_code": "PATW", + "local_code": "TTW", + "keywords": "Z68" + }, + { + "id": "16387", + "ident": "PAUK", + "type": "small_airport", + "name": "Alakanuk Airport", + "latitude_deg": "62.680042266799994", + "longitude_deg": "-164.659927368", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Alakanuk", + "scheduled_service": "no", + "gps_code": "PAUK", + "iata_code": "AUK", + "local_code": "AUK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alakanuk_Airport" + }, + { + "id": "25242", + "ident": "PAUM", + "type": "small_airport", + "name": "Umiat Airport", + "latitude_deg": "69.37110138", + "longitude_deg": "-152.1360016", + "elevation_ft": "267", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Umiat", + "scheduled_service": "no", + "gps_code": "PAUM", + "iata_code": "UMT", + "local_code": "UMT" + }, + { + "id": "5389", + "ident": "PAUN", + "type": "small_airport", + "name": "Unalakleet Airport", + "latitude_deg": "63.88840103", + "longitude_deg": "-160.798996", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Unalakleet", + "scheduled_service": "no", + "gps_code": "PAUN", + "iata_code": "UNK", + "local_code": "UNK" + }, + { + "id": "25331", + "ident": "PAUO", + "type": "small_airport", + "name": "Willow Airport", + "latitude_deg": "61.7542", + "longitude_deg": "-150.052002", + "elevation_ft": "221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Willow", + "scheduled_service": "no", + "gps_code": "PAUO", + "iata_code": "WOW", + "local_code": "UUO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Willow_Airport", + "keywords": "Z22" + }, + { + "id": "308030", + "ident": "PAUT", + "type": "small_airport", + "name": "Akutan Airport", + "latitude_deg": "54.14459", + "longitude_deg": "-165.604332", + "elevation_ft": "133", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Akutan", + "scheduled_service": "yes", + "gps_code": "PAUT", + "iata_code": "KQA", + "local_code": "7AK", + "home_link": "https://web.archive.org/web/20100410064944/http://dot.alaska.gov/creg/akutan/assets/Akun_ALP_Sheet-Set-1-9.pdf", + "wikipedia_link": "https://en.wikipedia.org/wiki/Akutan_Airport", + "keywords": "Akun Airport" + }, + { + "id": "25432", + "ident": "PAVA", + "type": "small_airport", + "name": "Chevak Airport", + "latitude_deg": "61.5409", + "longitude_deg": "-165.6005", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chevak", + "scheduled_service": "yes", + "gps_code": "PAVA", + "iata_code": "VAK", + "local_code": "VAK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chevak_Airport" + }, + { + "id": "21313", + "ident": "PAVC", + "type": "small_airport", + "name": "King Cove Airport", + "latitude_deg": "55.11629867553711", + "longitude_deg": "-162.26600646972656", + "elevation_ft": "155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "King Cove", + "scheduled_service": "no", + "gps_code": "PAVC", + "iata_code": "KVC", + "local_code": "KVC" + }, + { + "id": "5418", + "ident": "PAVD", + "type": "medium_airport", + "name": "Valdez Pioneer Field", + "latitude_deg": "61.1339", + "longitude_deg": "-146.248001", + "elevation_ft": "121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Valdez", + "scheduled_service": "no", + "gps_code": "PAVD", + "iata_code": "VDZ", + "local_code": "VDZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valdez_Airport", + "keywords": "Valdez Number 2" + }, + { + "id": "25434", + "ident": "PAVE", + "type": "small_airport", + "name": "Venetie Airport", + "latitude_deg": "67.0086975098", + "longitude_deg": "-146.365997314", + "elevation_ft": "574", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Venetie", + "scheduled_service": "no", + "gps_code": "PAVE", + "iata_code": "VEE", + "local_code": "VEE" + }, + { + "id": "5419", + "ident": "PAVL", + "type": "medium_airport", + "name": "Kivalina Airport", + "latitude_deg": "67.73619842529297", + "longitude_deg": "-164.56300354003906", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kivalina", + "scheduled_service": "no", + "gps_code": "PAVL", + "iata_code": "KVL", + "local_code": "KVL" + }, + { + "id": "25693", + "ident": "PAWB", + "type": "small_airport", + "name": "Beaver Airport", + "latitude_deg": "66.362197876", + "longitude_deg": "-147.406997681", + "elevation_ft": "359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Beaver", + "scheduled_service": "no", + "gps_code": "PAWB", + "iata_code": "WBQ", + "local_code": "WBQ" + }, + { + "id": "5420", + "ident": "PAWD", + "type": "medium_airport", + "name": "Seward Airport", + "latitude_deg": "60.130478", + "longitude_deg": "-149.418612", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Seward", + "scheduled_service": "no", + "gps_code": "PAWD", + "iata_code": "SWD", + "local_code": "SWD" + }, + { + "id": "5421", + "ident": "PAWG", + "type": "medium_airport", + "name": "Wrangell Airport", + "latitude_deg": "56.48429871", + "longitude_deg": "-132.3699951", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wrangell", + "scheduled_service": "yes", + "gps_code": "PAWG", + "iata_code": "WRG", + "local_code": "WRG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wrangell_Airport" + }, + { + "id": "5422", + "ident": "PAWI", + "type": "medium_airport", + "name": "Wainwright Airport", + "latitude_deg": "70.638", + "longitude_deg": "-159.994995", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wainwright", + "scheduled_service": "no", + "gps_code": "PAWI", + "iata_code": "AIN", + "local_code": "AWI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wainwright_Airport_(Alaska)", + "keywords": "5WW" + }, + { + "id": "25794", + "ident": "PAWM", + "type": "small_airport", + "name": "White Mountain Airport", + "latitude_deg": "64.689201355", + "longitude_deg": "-163.412994385", + "elevation_ft": "267", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "White Mountain", + "scheduled_service": "no", + "gps_code": "PAWM", + "iata_code": "WMO", + "local_code": "WMO", + "wikipedia_link": "https://en.wikipedia.org/wiki/White_Mountain_Airport" + }, + { + "id": "5423", + "ident": "PAWN", + "type": "medium_airport", + "name": "Noatak Airport", + "latitude_deg": "67.56610107421875", + "longitude_deg": "-162.97500610351562", + "elevation_ft": "88", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Noatak", + "scheduled_service": "no", + "gps_code": "PAWN", + "iata_code": "WTK", + "local_code": "WTK" + }, + { + "id": "17876", + "ident": "PAWR", + "type": "small_airport", + "name": "Whittier Airport", + "latitude_deg": "60.777225", + "longitude_deg": "-148.719606", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Whittier", + "scheduled_service": "no", + "gps_code": "PAWR", + "local_code": "IEM", + "keywords": "AK66" + }, + { + "id": "5424", + "ident": "PAWS", + "type": "medium_airport", + "name": "Wasilla Airport", + "latitude_deg": "61.5717010498", + "longitude_deg": "-149.539993286", + "elevation_ft": "354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "PAWS", + "iata_code": "WWA", + "local_code": "IYS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wasilla_Airport" + }, + { + "id": "5425", + "ident": "PAWT", + "type": "small_airport", + "name": "Wainwright Air Station", + "latitude_deg": "70.61340332", + "longitude_deg": "-159.8600006", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wainwright", + "scheduled_service": "no", + "gps_code": "PAWT", + "local_code": "AK03" + }, + { + "id": "24334", + "ident": "PAXK", + "type": "small_airport", + "name": "Paxson Airport", + "latitude_deg": "63.026422", + "longitude_deg": "-145.498778", + "elevation_ft": "2653", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Paxson", + "scheduled_service": "no", + "gps_code": "PAXK", + "local_code": "PXK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paxson_Airport", + "keywords": "5PX" + }, + { + "id": "26343", + "ident": "PAYA", + "type": "medium_airport", + "name": "Yakutat Airport", + "latitude_deg": "59.508717", + "longitude_deg": "-139.660435", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Yakutat", + "scheduled_service": "yes", + "gps_code": "PAYA", + "iata_code": "YAK", + "local_code": "YAK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yakutat_Airport" + }, + { + "id": "301843", + "ident": "PBAR", + "type": "closed", + "name": "Baker Island Army Airfield", + "latitude_deg": "0.192639", + "longitude_deg": "-176.478889", + "continent": "OC", + "iso_country": "UM", + "iso_region": "UM-81", + "municipality": "Baker Island", + "scheduled_service": "no", + "gps_code": "PBAR" + }, + { + "id": "5426", + "ident": "PCIS", + "type": "medium_airport", + "name": "Canton Island Airport", + "latitude_deg": "-2.7681200504300003", + "longitude_deg": "-171.710006714", + "elevation_ft": "9", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-P", + "municipality": "Abariringa", + "scheduled_service": "no", + "gps_code": "PCIS", + "iata_code": "CIS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Canton_Island_Airport", + "keywords": "Kanton Island" + }, + { + "id": "24078", + "ident": "PCK", + "type": "closed", + "name": "Porcupine Creek Airport", + "latitude_deg": "67.237899780273", + "longitude_deg": "-150.2859954834", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Porcupine Creek", + "scheduled_service": "no", + "gps_code": "PCK", + "local_code": "PCK" + }, + { + "id": "308383", + "ident": "PCO", + "type": "small_airport", + "name": "Punta Colorada Airport", + "latitude_deg": "23.575011", + "longitude_deg": "-109.535826", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "La Ribera", + "scheduled_service": "no", + "gps_code": "MMPL", + "iata_code": "PCO", + "local_code": "PCL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Punta_Colorada_Airstrip" + }, + { + "id": "301254", + "ident": "PCQ", + "type": "small_airport", + "name": "Boun Neau Airport", + "latitude_deg": "21.6475", + "longitude_deg": "101.9", + "elevation_ft": "3050", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-PH", + "municipality": "Phongsaly", + "scheduled_service": "no", + "gps_code": "VLFL", + "iata_code": "PCQ", + "keywords": "Baun Neua, Bounneua, Bun Nua, Boun Nua" + }, + { + "id": "307076", + "ident": "PDI", + "type": "small_airport", + "name": "Pindiu Airport", + "latitude_deg": "-6.445138888890001", + "longitude_deg": "147.515833333", + "elevation_ft": "2995", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Pindiu", + "scheduled_service": "no", + "gps_code": "AYPD", + "iata_code": "PDI", + "local_code": "PDU" + }, + { + "id": "316611", + "ident": "PDR", + "type": "small_airport", + "name": "Presidente José Sarney Airport", + "latitude_deg": "-5.3098", + "longitude_deg": "-44.481", + "elevation_ft": "400", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Presidente Dutra", + "scheduled_service": "no", + "iata_code": "PDR", + "keywords": "SJKE" + }, + { + "id": "314993", + "ident": "PE-0001", + "type": "small_airport", + "name": "Lagunas Airstrip", + "latitude_deg": "-5.2475", + "longitude_deg": "-75.678", + "elevation_ft": "430", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LOR", + "municipality": "Lagunas", + "scheduled_service": "no" + }, + { + "id": "316784", + "ident": "PE-0002", + "type": "small_airport", + "name": "Old Iquitos Airport", + "latitude_deg": "-3.7422", + "longitude_deg": "-73.2604", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LOR", + "municipality": "Iquitos", + "scheduled_service": "no" + }, + { + "id": "323804", + "ident": "PE-0003", + "type": "small_airport", + "name": "Cabo Pantoja Airstrip", + "latitude_deg": "-0.952", + "longitude_deg": "-75.179731", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LOR", + "municipality": "Cabo Pantoja", + "scheduled_service": "no" + }, + { + "id": "327366", + "ident": "PE-0004", + "type": "small_airport", + "name": "Santa Maria de Fatima Airport", + "latitude_deg": "-11.940815", + "longitude_deg": "-68.994212", + "elevation_ft": "857", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-MDD", + "scheduled_service": "no" + }, + { + "id": "327367", + "ident": "PE-0005", + "type": "closed", + "name": "Kirigueti Airfield", + "latitude_deg": "-11.574279", + "longitude_deg": "-73.128657", + "elevation_ft": "1168", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-CUS", + "municipality": "Kirigueti", + "scheduled_service": "no" + }, + { + "id": "327368", + "ident": "PE-0006", + "type": "small_airport", + "name": "Quempiri Airfield", + "latitude_deg": "-11.876932", + "longitude_deg": "-73.916868", + "elevation_ft": "1329", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-JUN", + "municipality": "Cutivireni", + "scheduled_service": "no", + "gps_code": "SPCV" + }, + { + "id": "327372", + "ident": "PE-0007", + "type": "small_airport", + "name": "Pucallpa West Airport", + "latitude_deg": "-8.361953", + "longitude_deg": "-74.656877", + "elevation_ft": "489", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-UCA", + "municipality": "Pucallpa", + "scheduled_service": "no" + }, + { + "id": "330828", + "ident": "PE-0008", + "type": "small_airport", + "name": "Saramuro Airport", + "latitude_deg": "-4.707892", + "longitude_deg": "-74.876733", + "elevation_ft": "367", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LOR", + "municipality": "Saramuro", + "scheduled_service": "no" + }, + { + "id": "330829", + "ident": "PE-0009", + "type": "small_airport", + "name": "San Lorenzo Airport", + "latitude_deg": "-4.824369", + "longitude_deg": "-76.56032", + "elevation_ft": "433", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LOR", + "municipality": "San Lorenzo", + "scheduled_service": "no" + }, + { + "id": "333783", + "ident": "PE-0010", + "type": "small_airport", + "name": "Pativilca Airstrip", + "latitude_deg": "-10.705015", + "longitude_deg": "-77.800884", + "elevation_ft": "144", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LIM", + "municipality": "Pativilca", + "scheduled_service": "no" + }, + { + "id": "333784", + "ident": "PE-0011", + "type": "small_airport", + "name": "Patao Airport", + "latitude_deg": "-10.714039", + "longitude_deg": "-77.746854", + "elevation_ft": "381", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LIM", + "municipality": "Barranca", + "scheduled_service": "no" + }, + { + "id": "342110", + "ident": "PE-0012", + "type": "closed", + "name": "Chinchero International Airport (under construction)", + "latitude_deg": "-13.3915", + "longitude_deg": "-72.069", + "elevation_ft": "12169", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-CUS", + "municipality": "Chinchero", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chinchero_International_Airport" + }, + { + "id": "351487", + "ident": "PE-0013", + "type": "heliport", + "name": "Pucallpa Air Force Heliport", + "latitude_deg": "-8.3515", + "longitude_deg": "-74.5819", + "elevation_ft": "505", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-UCA", + "municipality": "Pucallpa", + "scheduled_service": "no" + }, + { + "id": "351488", + "ident": "PE-0014", + "type": "small_airport", + "name": "Misión SAM Airport", + "latitude_deg": "-8.35681", + "longitude_deg": "-74.66043", + "elevation_ft": "486", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-UCA", + "municipality": "Pucallpa", + "scheduled_service": "no" + }, + { + "id": "351489", + "ident": "PE-0015", + "type": "heliport", + "name": "Puerto Anapati Heliport", + "latitude_deg": "-11.92859", + "longitude_deg": "-73.9877", + "elevation_ft": "1496", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-JUN", + "municipality": "Puerto Anapati", + "scheduled_service": "no" + }, + { + "id": "351490", + "ident": "PE-0016", + "type": "heliport", + "name": "Micaela Bastidas Morales Heliport", + "latitude_deg": "-11.857", + "longitude_deg": "-73.9589", + "elevation_ft": "1401", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-JUN", + "municipality": "Misión", + "scheduled_service": "no" + }, + { + "id": "351491", + "ident": "PE-0017", + "type": "heliport", + "name": "Puerto Ocopa Heliport", + "latitude_deg": "-11.14793", + "longitude_deg": "-74.30629", + "elevation_ft": "1056", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-JUN", + "municipality": "Puerto Ocopa", + "scheduled_service": "no" + }, + { + "id": "351492", + "ident": "PE-0018", + "type": "heliport", + "name": "Tanquin Heliport", + "latitude_deg": "-12.12632", + "longitude_deg": "-74.07599", + "elevation_ft": "1880", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-JUN", + "municipality": "Tanquin", + "scheduled_service": "no" + }, + { + "id": "351494", + "ident": "PE-0019", + "type": "small_airport", + "name": "Tamburco Airport", + "latitude_deg": "-13.56872", + "longitude_deg": "-72.82457", + "elevation_ft": "13002", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-APU", + "municipality": "Tamburco", + "scheduled_service": "no" + }, + { + "id": "351495", + "ident": "PE-0020", + "type": "heliport", + "name": "Diospi Suyana Hospital Heliport", + "latitude_deg": "-13.54249", + "longitude_deg": "-72.70599", + "elevation_ft": "8750", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-APU", + "municipality": "Curahuasi", + "scheduled_service": "no" + }, + { + "id": "351496", + "ident": "PE-0021", + "type": "small_airport", + "name": "Pichari Airport", + "latitude_deg": "-12.50306", + "longitude_deg": "-73.85287", + "elevation_ft": "1759", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-AYA", + "municipality": "Sivia", + "scheduled_service": "no" + }, + { + "id": "352938", + "ident": "PE-0022", + "type": "small_airport", + "name": "Camposol Chao Airport", + "latitude_deg": "-8.58173", + "longitude_deg": "-78.68142", + "elevation_ft": "228", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LAL", + "municipality": "Virú", + "scheduled_service": "no" + }, + { + "id": "353418", + "ident": "PE-0023", + "type": "small_airport", + "name": "Walter Braedt Segú Airport", + "latitude_deg": "-4.08687", + "longitude_deg": "-81.02577", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-TUM", + "municipality": "Máncora", + "scheduled_service": "no", + "gps_code": "SPWB", + "local_code": "SPWB" + }, + { + "id": "353424", + "ident": "PE-0024", + "type": "small_airport", + "name": "Yapatera Airport", + "latitude_deg": "-5.06777", + "longitude_deg": "-80.14731", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-PIU", + "municipality": "Yapatera", + "scheduled_service": "no" + }, + { + "id": "353425", + "ident": "PE-0025", + "type": "small_airport", + "name": "Huacho Airport", + "latitude_deg": "-11.11008", + "longitude_deg": "-77.55382", + "elevation_ft": "338", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LIM", + "municipality": "Santa María", + "scheduled_service": "no" + }, + { + "id": "353426", + "ident": "PE-0026", + "type": "small_airport", + "name": "Las Dunas Airport", + "latitude_deg": "-14.03561", + "longitude_deg": "-75.76004", + "elevation_ft": "1378", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ICA", + "municipality": "Ica", + "scheduled_service": "no", + "gps_code": "SPLH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Las_Dunas_Airport" + }, + { + "id": "356333", + "ident": "PE-0027", + "type": "small_airport", + "name": "San Bartolo Airport", + "latitude_deg": "-12.38084", + "longitude_deg": "-76.78206", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LIM", + "municipality": "San Bartolo", + "scheduled_service": "no" + }, + { + "id": "356334", + "ident": "PE-0028", + "type": "closed", + "name": "Chilca Airport", + "latitude_deg": "-12.50469", + "longitude_deg": "-76.74428", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LIM", + "municipality": "Chilca", + "scheduled_service": "no" + }, + { + "id": "356335", + "ident": "PE-0029", + "type": "small_airport", + "name": "Las Plumas Airport", + "latitude_deg": "-12.91902", + "longitude_deg": "-76.49186", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LIM", + "municipality": "Cerro Azul", + "scheduled_service": "no" + }, + { + "id": "356336", + "ident": "PE-0030", + "type": "small_airport", + "name": "Aeroclub Alas del Mar", + "latitude_deg": "-12.40001", + "longitude_deg": "-76.76806", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LIM", + "municipality": "Santa María del Mar", + "scheduled_service": "no" + }, + { + "id": "356337", + "ident": "PE-0031", + "type": "closed", + "name": "Aldora Airport", + "latitude_deg": "-5.15176", + "longitude_deg": "-80.94737", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-PIU", + "municipality": "Paita", + "scheduled_service": "no" + }, + { + "id": "429730", + "ident": "PE-0032", + "type": "small_airport", + "name": "Chivay Airport", + "latitude_deg": "-15.63627", + "longitude_deg": "-71.61376", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ARE", + "municipality": "Chivay", + "scheduled_service": "no" + }, + { + "id": "340242", + "ident": "PEB", + "type": "small_airport", + "name": "Pebane Airport", + "latitude_deg": "-17.27276", + "longitude_deg": "38.18073", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-Q", + "municipality": "Pebane", + "scheduled_service": "no", + "iata_code": "PEB" + }, + { + "id": "24080", + "ident": "PEC", + "type": "seaplane_base", + "name": "Pelican Seaplane Base", + "latitude_deg": "57.955200195312", + "longitude_deg": "-136.23599243164", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Pelican", + "scheduled_service": "no", + "gps_code": "PEC", + "iata_code": "PEC", + "local_code": "PEC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pelican_Seaplane_Base" + }, + { + "id": "316545", + "ident": "PF-0001", + "type": "closed", + "name": "Anuanuaro Airstrip", + "latitude_deg": "-20.453313", + "longitude_deg": "-143.529167", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Anuanuaro Atoll", + "scheduled_service": "no", + "keywords": "Anuanuraro" + }, + { + "id": "348793", + "ident": "PF-0002", + "type": "closed", + "name": "Moruroa South Airport", + "latitude_deg": "-21.85855", + "longitude_deg": "-138.82015", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Moruroa Atoll", + "scheduled_service": "no" + }, + { + "id": "348794", + "ident": "PF-0003", + "type": "closed", + "name": "Fangataufa Airport", + "latitude_deg": "-22.2002", + "longitude_deg": "-138.7429", + "continent": "OC", + "iso_country": "PF", + "iso_region": "PF-U-A", + "municipality": "Fangataufa Atoll", + "scheduled_service": "no" + }, + { + "id": "16191", + "ident": "PFAK", + "type": "small_airport", + "name": "Akiak Airport", + "latitude_deg": "60.9029006958", + "longitude_deg": "-161.231002808", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Akiak", + "scheduled_service": "no", + "gps_code": "PFAK", + "iata_code": "AKI", + "local_code": "AKI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Akiak_Airport" + }, + { + "id": "13176", + "ident": "PFAL", + "type": "small_airport", + "name": "Allakaket Airport", + "latitude_deg": "66.5518035889", + "longitude_deg": "-152.621994019", + "elevation_ft": "441", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Allakaket", + "scheduled_service": "no", + "gps_code": "PFAL", + "iata_code": "AET", + "local_code": "6A8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Allakaket_Airport" + }, + { + "id": "24082", + "ident": "PFC", + "type": "small_airport", + "name": "Pacific City State Airport", + "latitude_deg": "45.199798584", + "longitude_deg": "-123.961997986", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Pacific City", + "scheduled_service": "no", + "gps_code": "KPFC", + "iata_code": "PFC", + "local_code": "PFC" + }, + { + "id": "16509", + "ident": "PFCB", + "type": "small_airport", + "name": "Chenega Bay Airport", + "latitude_deg": "60.077602", + "longitude_deg": "-147.99468", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chenega", + "scheduled_service": "no", + "gps_code": "PFCB", + "iata_code": "NCN", + "local_code": "C05" + }, + { + "id": "16820", + "ident": "PFCL", + "type": "small_airport", + "name": "Clarks Point Airport", + "latitude_deg": "58.83369827", + "longitude_deg": "-158.529007", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Clarks Point", + "scheduled_service": "no", + "gps_code": "PFCL", + "iata_code": "CLP", + "local_code": "CLP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clarks_Point_Airport" + }, + { + "id": "318188", + "ident": "PFCR", + "type": "small_airport", + "name": "Donlin Creek Airport", + "latitude_deg": "62.031757", + "longitude_deg": "-158.234251", + "elevation_ft": "733", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Crooked Creek", + "scheduled_service": "no", + "gps_code": "PFCR", + "local_code": "01AA" + }, + { + "id": "17177", + "ident": "PFEL", + "type": "small_airport", + "name": "Elim Airport", + "latitude_deg": "64.61470032", + "longitude_deg": "-162.2720032", + "elevation_ft": "162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Elim", + "scheduled_service": "no", + "gps_code": "PFEL", + "iata_code": "ELI", + "local_code": "ELI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elim_Airport" + }, + { + "id": "26344", + "ident": "PFKA", + "type": "small_airport", + "name": "Kasigluk Airport", + "latitude_deg": "60.87440109", + "longitude_deg": "-162.5240021", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kasigluk", + "scheduled_service": "no", + "gps_code": "PFKA", + "iata_code": "KUK", + "local_code": "Z09", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kasigluk_Airport" + }, + { + "id": "15766", + "ident": "PFKK", + "type": "small_airport", + "name": "Kokhanok Airport", + "latitude_deg": "59.433200836199994", + "longitude_deg": "-154.804000854", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kokhanok", + "scheduled_service": "no", + "gps_code": "PFKK", + "iata_code": "KNK", + "local_code": "9K2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kokhanok_Airport" + }, + { + "id": "9286", + "ident": "PFKO", + "type": "small_airport", + "name": "Kotlik Airport", + "latitude_deg": "63.0306015015", + "longitude_deg": "-163.533004761", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kotlik", + "scheduled_service": "no", + "gps_code": "PFKO", + "iata_code": "KOT", + "local_code": "2A9" + }, + { + "id": "21224", + "ident": "PFKT", + "type": "small_airport", + "name": "Brevig Mission Airport", + "latitude_deg": "65.3312988281", + "longitude_deg": "-166.466003418", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Brevig Mission", + "scheduled_service": "no", + "gps_code": "PFKT", + "iata_code": "KTS", + "local_code": "KTS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brevig_Mission_Airport" + }, + { + "id": "21435", + "ident": "PFKU", + "type": "small_airport", + "name": "Koyukuk Airport", + "latitude_deg": "64.8760986328", + "longitude_deg": "-157.727005005", + "elevation_ft": "149", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Koyukuk", + "scheduled_service": "no", + "gps_code": "PFKU", + "iata_code": "KYU", + "local_code": "KYU" + }, + { + "id": "21383", + "ident": "PFKW", + "type": "small_airport", + "name": "Kwethluk Airport", + "latitude_deg": "60.790298461899994", + "longitude_deg": "-161.444000244", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kwethluk", + "scheduled_service": "no", + "gps_code": "PFKW", + "iata_code": "KWT", + "local_code": "KWT" + }, + { + "id": "333142", + "ident": "PFME", + "type": "small_airport", + "name": "Mertarvik Quarry Road Landing Strip", + "latitude_deg": "60.818385", + "longitude_deg": "-164.519013", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Mertarvik", + "scheduled_service": "no", + "gps_code": "PFME", + "local_code": "F02" + }, + { + "id": "17087", + "ident": "PFNO", + "type": "small_airport", + "name": "Robert (Bob) Curtis Memorial Airport", + "latitude_deg": "66.817902", + "longitude_deg": "-161.018997", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Noorvik", + "scheduled_service": "yes", + "gps_code": "PFNO", + "iata_code": "ORV", + "local_code": "D76", + "wikipedia_link": "https://en.wikipedia.org/wiki/Robert_(Bob)_Curtis_Memorial_Airport" + }, + { + "id": "9334", + "ident": "PFSH", + "type": "small_airport", + "name": "Shaktoolik Airport", + "latitude_deg": "64.37110138", + "longitude_deg": "-161.223999", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Shaktoolik", + "scheduled_service": "no", + "gps_code": "PFSH", + "iata_code": "SKK", + "local_code": "2C7" + }, + { + "id": "13322", + "ident": "PFTO", + "type": "small_airport", + "name": "Tok Junction Airport", + "latitude_deg": "63.32949829", + "longitude_deg": "-142.9539948", + "elevation_ft": "1639", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tok", + "scheduled_service": "yes", + "gps_code": "PFTO", + "iata_code": "TKJ", + "local_code": "6K8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tok_Junction_Airport" + }, + { + "id": "25982", + "ident": "PFWS", + "type": "small_airport", + "name": "South Naknek Number 2 Airport", + "latitude_deg": "58.703202", + "longitude_deg": "-157.006373", + "elevation_ft": "162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "South Naknek", + "scheduled_service": "no", + "gps_code": "PFWS", + "iata_code": "WSN", + "local_code": "WSN", + "wikipedia_link": "https://en.wikipedia.org/wiki/South_Naknek_Airport" + }, + { + "id": "5429", + "ident": "PFYU", + "type": "medium_airport", + "name": "Fort Yukon Airport", + "latitude_deg": "66.57150268554688", + "longitude_deg": "-145.25", + "elevation_ft": "433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fort Yukon", + "scheduled_service": "no", + "gps_code": "PFYU", + "iata_code": "FYU", + "local_code": "FYU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fort_Yukon_Airport" + }, + { + "id": "301666", + "ident": "PG-0001", + "type": "small_airport", + "name": "Agali Airstrip", + "latitude_deg": "-5.344377", + "longitude_deg": "142.214241", + "elevation_ft": "2750", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-HE", + "scheduled_service": "no", + "gps_code": "AYAL", + "local_code": "ALI" + }, + { + "id": "301669", + "ident": "PG-0002", + "type": "small_airport", + "name": "Agotu Airstrip", + "latitude_deg": "-6.5", + "longitude_deg": "145.241388889", + "elevation_ft": "5675", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Agotu", + "scheduled_service": "no", + "local_code": "AGU" + }, + { + "id": "301674", + "ident": "PG-0003", + "type": "small_airport", + "name": "Akwom Airstrip", + "latitude_deg": "-3.94", + "longitude_deg": "141.832777778", + "elevation_ft": "160", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "scheduled_service": "no", + "gps_code": "AYAC" + }, + { + "id": "301675", + "ident": "PG-0004", + "type": "small_airport", + "name": "Ali Airstrip", + "latitude_deg": "-7.91666666667", + "longitude_deg": "142.339166667", + "elevation_ft": "80", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Ali", + "scheduled_service": "no", + "gps_code": "AYAH" + }, + { + "id": "46173", + "ident": "PG-0005", + "type": "small_airport", + "name": "Cape Rodney Airport", + "latitude_deg": "-10.179823004", + "longitude_deg": "148.379030228", + "elevation_ft": "22", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Cape Rodney", + "scheduled_service": "no", + "iata_code": "CPN", + "local_code": "CPR" + }, + { + "id": "46174", + "ident": "PG-0006", + "type": "small_airport", + "name": "Emirau Airport", + "latitude_deg": "-1.653949991", + "longitude_deg": "149.9757667", + "elevation_ft": "172", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NIK", + "municipality": "Emirau Island", + "scheduled_service": "no", + "gps_code": "AYEE", + "iata_code": "EMI", + "local_code": "ERU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Emirau_Airport" + }, + { + "id": "46175", + "ident": "PG-0007", + "type": "small_airport", + "name": "Erave Airport", + "latitude_deg": "-6.60646315446", + "longitude_deg": "143.900213242", + "elevation_ft": "3650", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Erave", + "scheduled_service": "no", + "gps_code": "AYEV", + "iata_code": "ERE", + "local_code": "ERV" + }, + { + "id": "46176", + "ident": "PG-0008", + "type": "small_airport", + "name": "Esa'ala Airport", + "latitude_deg": "-9.874327023180001", + "longitude_deg": "150.954208374", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Esa'ala", + "scheduled_service": "no", + "iata_code": "ESA", + "local_code": "ESA" + }, + { + "id": "46178", + "ident": "PG-0009", + "type": "small_airport", + "name": "Garaina Airport", + "latitude_deg": "-7.875625027460001", + "longitude_deg": "147.141265869", + "elevation_ft": "2497", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Garaina", + "scheduled_service": "no", + "gps_code": "AYGI", + "iata_code": "GAR", + "local_code": "GNA" + }, + { + "id": "46179", + "ident": "PG-0010", + "type": "small_airport", + "name": "Gobe Airport", + "latitude_deg": "-6.8782", + "longitude_deg": "143.7219", + "elevation_ft": "194", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Gobe", + "scheduled_service": "no", + "gps_code": "AYGB", + "local_code": "GOBE" + }, + { + "id": "46180", + "ident": "PG-0011", + "type": "small_airport", + "name": "Gonaili Airport", + "latitude_deg": "-5.527716614", + "longitude_deg": "151.5733333", + "elevation_ft": "40", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EBR", + "municipality": "Gonaili", + "scheduled_service": "no", + "gps_code": "AYGL", + "iata_code": "GOE", + "local_code": "GON", + "keywords": "Gonali, Gonalia" + }, + { + "id": "301691", + "ident": "PG-0012", + "type": "small_airport", + "name": "Ambua Airstrip", + "latitude_deg": "-5.96222222222", + "longitude_deg": "143.063888889", + "elevation_ft": "6600", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-HE", + "municipality": "Ambua Lodge - Tari", + "scheduled_service": "no", + "gps_code": "AYAJ", + "local_code": "ABA" + }, + { + "id": "301692", + "ident": "PG-0013", + "type": "small_airport", + "name": "Ambaluwa Airstrip", + "latitude_deg": "-5.720278", + "longitude_deg": "144.921111", + "elevation_ft": "6568", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-JI", + "municipality": "Ambulua", + "scheduled_service": "no", + "gps_code": "AYAB", + "local_code": "ABU", + "keywords": "Ambullua" + }, + { + "id": "301694", + "ident": "PG-0014", + "type": "small_airport", + "name": "Anangalo Airstrip", + "latitude_deg": "-4.6", + "longitude_deg": "143.843472222", + "elevation_ft": "70", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "scheduled_service": "no", + "gps_code": "AYAR", + "local_code": "ALO" + }, + { + "id": "301696", + "ident": "PG-0015", + "type": "small_airport", + "name": "Ande Airstrip", + "latitude_deg": "-7.02083333333", + "longitude_deg": "145.822222222", + "elevation_ft": "5400", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Sindeni", + "scheduled_service": "no", + "gps_code": "AYAD", + "local_code": "ANDE" + }, + { + "id": "301725", + "ident": "PG-0016", + "type": "small_airport", + "name": "Arufi Airstrip", + "latitude_deg": "-8.75388888889", + "longitude_deg": "141.911388889", + "elevation_ft": "80", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Arufi", + "scheduled_service": "no", + "gps_code": "AYRF", + "local_code": "ARU" + }, + { + "id": "301726", + "ident": "PG-0017", + "type": "small_airport", + "name": "Asama Airstrip", + "latitude_deg": "-8.02333333333", + "longitude_deg": "147.271666667", + "elevation_ft": "1800", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "scheduled_service": "no", + "gps_code": "AYAS", + "local_code": "AAM" + }, + { + "id": "301728", + "ident": "PG-0018", + "type": "small_airport", + "name": "Asimba Airstrip", + "latitude_deg": "-8.605", + "longitude_deg": "147.591944444", + "elevation_ft": "1170", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "municipality": "Asimba", + "scheduled_service": "no", + "gps_code": "AYAZ", + "local_code": "ASB" + }, + { + "id": "301734", + "ident": "PG-0019", + "type": "small_airport", + "name": "Assengseng Airstrip", + "latitude_deg": "-6.023611111110001", + "longitude_deg": "149.785833333", + "elevation_ft": "1550", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WBK", + "municipality": "Assengseng", + "scheduled_service": "no", + "gps_code": "AYSN", + "local_code": "ASN" + }, + { + "id": "301792", + "ident": "PG-0020", + "type": "small_airport", + "name": "Bapi Airstrip", + "latitude_deg": "-7.743611111110001", + "longitude_deg": "147.020555556", + "elevation_ft": "2930", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Bapi", + "scheduled_service": "no", + "gps_code": "AYBP", + "iata_code": "BPD", + "local_code": "BAPI" + }, + { + "id": "301801", + "ident": "PG-0021", + "type": "small_airport", + "name": "Benaria Airstrip", + "latitude_deg": "-6.05888888889", + "longitude_deg": "143.033888889", + "elevation_ft": "4960", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-HE", + "municipality": "Tamide Mission", + "scheduled_service": "no", + "local_code": "BNR" + }, + { + "id": "301804", + "ident": "PG-0022", + "type": "small_airport", + "name": "Biangabip Airport", + "latitude_deg": "-5.526388888890001", + "longitude_deg": "141.744583333", + "elevation_ft": "1069", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Biangabip", + "scheduled_service": "no", + "gps_code": "AYBQ", + "iata_code": "BPK", + "local_code": "BIP" + }, + { + "id": "301805", + "ident": "PG-0023", + "type": "small_airport", + "name": "Bili Airstrip", + "latitude_deg": "-5.667222", + "longitude_deg": "151.099444", + "elevation_ft": "2600", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EBR", + "municipality": "Bili", + "scheduled_service": "no", + "gps_code": "AYIL", + "local_code": "BILI" + }, + { + "id": "301808", + "ident": "PG-0024", + "type": "small_airport", + "name": "Wobagen Airstrip", + "latitude_deg": "-5.27472222222", + "longitude_deg": "142.034166667", + "elevation_ft": "6050", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "scheduled_service": "no", + "gps_code": "AYYB" + }, + { + "id": "301810", + "ident": "PG-0025", + "type": "small_airport", + "name": "Bisorio Airstrip", + "latitude_deg": "-4.72166666667", + "longitude_deg": "142.977222222", + "elevation_ft": "160", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "scheduled_service": "no", + "local_code": "BSO" + }, + { + "id": "301976", + "ident": "PG-0026", + "type": "small_airport", + "name": "Boikoa Airstrip", + "latitude_deg": "-7.038611111110001", + "longitude_deg": "145.734166667", + "elevation_ft": "4816", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Boikoa", + "scheduled_service": "no", + "gps_code": "AYOI", + "local_code": "BOK" + }, + { + "id": "301977", + "ident": "PG-0027", + "type": "small_airport", + "name": "Bosavi Airstrip", + "latitude_deg": "-6.46166666667", + "longitude_deg": "142.841111111", + "elevation_ft": "2350", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Ludesa Mission", + "scheduled_service": "no", + "local_code": "BSV" + }, + { + "id": "301980", + "ident": "PG-0028", + "type": "small_airport", + "name": "Boure Airstrip", + "latitude_deg": "-9.617916666669998", + "longitude_deg": "148.745833333", + "elevation_ft": "530", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "municipality": "Boure", + "scheduled_service": "no", + "gps_code": "AYBE", + "local_code": "BRE" + }, + { + "id": "302161", + "ident": "PG-0029", + "type": "small_airport", + "name": "Jangit Airstrip", + "latitude_deg": "-4.33666666667", + "longitude_deg": "144.480694444", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "scheduled_service": "no", + "local_code": "JGT" + }, + { + "id": "302162", + "ident": "PG-0030", + "type": "small_airport", + "name": "Junkaral Airstrip", + "latitude_deg": "-5.42316666667", + "longitude_deg": "145.010027778", + "elevation_ft": "485", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Junkaral", + "scheduled_service": "no", + "gps_code": "AYJL", + "keywords": "Junk/Aral" + }, + { + "id": "302163", + "ident": "PG-0031", + "type": "small_airport", + "name": "Kabori Airstrip", + "latitude_deg": "-3.32161111111", + "longitude_deg": "141.858416667", + "elevation_ft": "2090", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Kabori", + "scheduled_service": "no", + "gps_code": "AYOR", + "local_code": "KBI" + }, + { + "id": "302211", + "ident": "PG-0032", + "type": "small_airport", + "name": "Dahamo Airstrip", + "latitude_deg": "-5.753194444440001", + "longitude_deg": "141.993611111", + "elevation_ft": "460", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Dahamo Village", + "scheduled_service": "no", + "gps_code": "AYDA", + "local_code": "DMO" + }, + { + "id": "302528", + "ident": "PG-0033", + "type": "small_airport", + "name": "Lumusa Airstrip", + "latitude_deg": "-5.52777777778", + "longitude_deg": "144.065555556", + "elevation_ft": "4943", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WHM", + "municipality": "Lumusa", + "scheduled_service": "no", + "gps_code": "AYLF", + "local_code": "LMS" + }, + { + "id": "302539", + "ident": "PG-0034", + "type": "small_airport", + "name": "Malamaunda Airstrip", + "latitude_deg": "-4.91927777778", + "longitude_deg": "143.161416667", + "elevation_ft": "2350", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "scheduled_service": "no", + "local_code": "MLD" + }, + { + "id": "306973", + "ident": "PG-0035", + "type": "small_airport", + "name": "(Duplicate)Nowata Airport", + "latitude_deg": "-0.01", + "longitude_deg": "0.01", + "elevation_ft": "2040", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "scheduled_service": "no", + "local_code": "NTA" + }, + { + "id": "307074", + "ident": "PG-0036", + "type": "small_airport", + "name": "Pasinkap Airstrip", + "latitude_deg": "-5.01363", + "longitude_deg": "144.842428", + "elevation_ft": "255", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Pasinkap", + "scheduled_service": "no", + "gps_code": "AYPK", + "local_code": "PSK" + }, + { + "id": "307078", + "ident": "PG-0037", + "type": "small_airport", + "name": "Purari Airstrip", + "latitude_deg": "-7.391111111110001", + "longitude_deg": "145.166519", + "elevation_ft": "90", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "scheduled_service": "no", + "local_code": "PRI" + }, + { + "id": "307450", + "ident": "PG-0038", + "type": "small_airport", + "name": "Sengapi Airstrip", + "latitude_deg": "-5.12583333333", + "longitude_deg": "144.323611111", + "elevation_ft": "6242", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Sengapi", + "scheduled_service": "no", + "gps_code": "AYSK", + "iata_code": "SGK", + "local_code": "SNI", + "wikipedia_link": "https://en.wikipedia.org/w/index.php?title=Sangapi_Airport", + "keywords": "Sangapi" + }, + { + "id": "307556", + "ident": "PG-0039", + "type": "small_airport", + "name": "Kafa Airstrip", + "latitude_deg": "-6.586888888890001", + "longitude_deg": "143.515", + "elevation_ft": "1850", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Kafa", + "scheduled_service": "no", + "gps_code": "AYKF", + "local_code": "KAFA" + }, + { + "id": "307557", + "ident": "PG-0040", + "type": "small_airport", + "name": "Kaibo Airstrip", + "latitude_deg": "-6.37111111111", + "longitude_deg": "143.1725", + "elevation_ft": "2880", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "scheduled_service": "no", + "local_code": "KBO" + }, + { + "id": "307558", + "ident": "PG-0041", + "type": "small_airport", + "name": "Kairik Airstrip", + "latitude_deg": "-5.445807", + "longitude_deg": "143.17018", + "elevation_ft": "7340", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EPW", + "municipality": "Porgera", + "scheduled_service": "no", + "local_code": "KRK" + }, + { + "id": "307719", + "ident": "PG-0042", + "type": "small_airport", + "name": "Gubil Airstrip", + "latitude_deg": "-4.883308", + "longitude_deg": "141.525381", + "elevation_ft": "2200", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Bufripmin/Usareimin", + "scheduled_service": "no", + "gps_code": "AYUB", + "local_code": "GBL" + }, + { + "id": "307729", + "ident": "PG-0043", + "type": "small_airport", + "name": "Gubam Airstrip", + "latitude_deg": "-8.608765", + "longitude_deg": "141.919638", + "elevation_ft": "120", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Gubam", + "scheduled_service": "no", + "gps_code": "AYGZ" + }, + { + "id": "308056", + "ident": "PG-0044", + "type": "small_airport", + "name": "Duranmin Airstrip", + "latitude_deg": "-4.973205", + "longitude_deg": "141.908161", + "elevation_ft": "3890", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Duranmin", + "scheduled_service": "no", + "gps_code": "AYDM", + "local_code": "DUR" + }, + { + "id": "308077", + "ident": "PG-0045", + "type": "small_airport", + "name": "Bank Airstrip", + "latitude_deg": "-5.364495", + "longitude_deg": "144.689805", + "elevation_ft": "3953", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Bank", + "scheduled_service": "no", + "gps_code": "AYBJ", + "local_code": "BANK" + }, + { + "id": "308114", + "ident": "PG-0046", + "type": "small_airport", + "name": "Appa Airstrip", + "latitude_deg": "-6.516759", + "longitude_deg": "144.706808", + "elevation_ft": "3800", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPK", + "scheduled_service": "no", + "gps_code": "AYAP", + "local_code": "APPA" + }, + { + "id": "308117", + "ident": "PG-0047", + "type": "small_airport", + "name": "Arkosame Airstrip", + "latitude_deg": "-3.777177", + "longitude_deg": "142.622672", + "elevation_ft": "622", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "scheduled_service": "no", + "gps_code": "AYAV", + "local_code": "ARK" + }, + { + "id": "308437", + "ident": "PG-0048", + "type": "small_airport", + "name": "Kibuli Airstrip", + "latitude_deg": "-9.006528", + "longitude_deg": "142.698056", + "elevation_ft": "54", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Kibuli", + "scheduled_service": "no", + "gps_code": "AYLI", + "iata_code": "KII", + "local_code": "KBL" + }, + { + "id": "308515", + "ident": "PG-0049", + "type": "small_airport", + "name": "Kiriwo Airstrip", + "latitude_deg": "-8.437", + "longitude_deg": "141.5142", + "elevation_ft": "69", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Kiriwa", + "scheduled_service": "no", + "gps_code": "AYRW", + "local_code": "KRW", + "keywords": "Kiriwa" + }, + { + "id": "308518", + "ident": "PG-0050", + "type": "small_airport", + "name": "Owena Airstrip", + "latitude_deg": "-6.6962", + "longitude_deg": "145.8094", + "elevation_ft": "5500", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Owenia", + "scheduled_service": "no", + "gps_code": "AYWW", + "local_code": "OWN" + }, + { + "id": "308789", + "ident": "PG-0051", + "type": "small_airport", + "name": "Kibeni Airstrip", + "latitude_deg": "-7.4846", + "longitude_deg": "143.8224", + "elevation_ft": "99", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Kibeni", + "scheduled_service": "no", + "gps_code": "AYNQ", + "local_code": "KBN" + }, + { + "id": "308790", + "ident": "PG-0052", + "type": "small_airport", + "name": "Kilifas Airstrip", + "latitude_deg": "-3.2148", + "longitude_deg": "141.3642", + "elevation_ft": "1095", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Kilifas", + "scheduled_service": "no", + "gps_code": "AYIF", + "local_code": "KIS" + }, + { + "id": "309034", + "ident": "PG-0053", + "type": "small_airport", + "name": "Oriomo Airstrip", + "latitude_deg": "-8.86", + "longitude_deg": "143.18", + "elevation_ft": "66", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Oriomo", + "scheduled_service": "no", + "local_code": "ORI" + }, + { + "id": "309035", + "ident": "PG-0054", + "type": "small_airport", + "name": "Pukapuki Airstrip", + "latitude_deg": "-4.5362", + "longitude_deg": "142.5176", + "elevation_ft": "124", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Pukapuki Vilage", + "scheduled_service": "no", + "gps_code": "AYPX", + "local_code": "PPK", + "keywords": "BKABKI waypoint" + }, + { + "id": "309037", + "ident": "PG-0055", + "type": "small_airport", + "name": "Samban Airstrip", + "latitude_deg": "-4.3655", + "longitude_deg": "144.0612", + "elevation_ft": "42", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Samban School", + "scheduled_service": "no", + "gps_code": "AYSC", + "local_code": "SMN" + }, + { + "id": "310033", + "ident": "PG-0056", + "type": "small_airport", + "name": "Asinuwa Airstrip", + "latitude_deg": "-7.0287", + "longitude_deg": "145.7678", + "elevation_ft": "5900", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Amjenuwa", + "scheduled_service": "no", + "gps_code": "AYWA" + }, + { + "id": "310034", + "ident": "PG-0057", + "type": "small_airport", + "name": "Auwi Airstrip", + "latitude_deg": "-5.51", + "longitude_deg": "142.6392", + "elevation_ft": "5155", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-HE", + "municipality": "Auwi", + "scheduled_service": "no", + "gps_code": "AYUW" + }, + { + "id": "310035", + "ident": "PG-0058", + "type": "small_airport", + "name": "Aziana Airstrip", + "latitude_deg": "-6.7495", + "longitude_deg": "145.8535", + "elevation_ft": "4250", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Aziana Mission", + "scheduled_service": "no", + "local_code": "AZA" + }, + { + "id": "310036", + "ident": "PG-0059", + "type": "small_airport", + "name": "Baina Airstrip", + "latitude_deg": "-6.8918", + "longitude_deg": "143.6818", + "elevation_ft": "215", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Baina", + "scheduled_service": "no", + "gps_code": "AYBN", + "local_code": "BNA" + }, + { + "id": "311075", + "ident": "PG-0060", + "type": "small_airport", + "name": "Bu'u Airstrip", + "latitude_deg": "-7.4011", + "longitude_deg": "145.8149", + "elevation_ft": "3950", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Bu'u", + "scheduled_service": "no", + "gps_code": "AYUU", + "local_code": "BUU" + }, + { + "id": "311111", + "ident": "PG-0061", + "type": "closed", + "name": "Berry Airfield", + "latitude_deg": "-9.388829", + "longitude_deg": "147.245228", + "elevation_ft": "115", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NCD", + "municipality": "Port Moresby", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Berry_Airfield", + "keywords": "12 Mile Drome, Bomana Drome" + }, + { + "id": "311112", + "ident": "PG-0062", + "type": "closed", + "name": "Lorengau Airfield", + "latitude_deg": "-2.0201", + "longitude_deg": "147.2664", + "elevation_ft": "27", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MRL", + "municipality": "Lorengau", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lorengau_Airfield" + }, + { + "id": "311113", + "ident": "PG-0063", + "type": "closed", + "name": "Kerevat Airfield", + "latitude_deg": "-4.3092", + "longitude_deg": "152.0122", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EBR", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kerevat_Airfield", + "keywords": "Keravat, Karavat, Tavelo, Tavilo" + }, + { + "id": "311115", + "ident": "PG-0064", + "type": "small_airport", + "name": "Dodomona Airstrip", + "latitude_deg": "-6.2437", + "longitude_deg": "142.6158", + "elevation_ft": "1910", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Dodomona", + "scheduled_service": "no", + "local_code": "DMN", + "keywords": "DMA" + }, + { + "id": "311372", + "ident": "PG-0065", + "type": "small_airport", + "name": "Fiyak Airstrip", + "latitude_deg": "-4.6771", + "longitude_deg": "141.5666", + "elevation_ft": "347", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Fiyak", + "scheduled_service": "no", + "local_code": "FYK", + "keywords": "Fiak" + }, + { + "id": "311382", + "ident": "PG-0066", + "type": "small_airport", + "name": "Fugwa Airstrip", + "latitude_deg": "-5.7169", + "longitude_deg": "142.6968", + "elevation_ft": "6100", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-HE", + "municipality": "Koroba", + "scheduled_service": "no", + "local_code": "FUG" + }, + { + "id": "311420", + "ident": "PG-0067", + "type": "small_airport", + "name": "Giramben Airstrip", + "latitude_deg": "-5.7835", + "longitude_deg": "144.5568", + "elevation_ft": "5128", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-JI", + "municipality": "Giramben", + "scheduled_service": "no", + "local_code": "GBN", + "keywords": "Girambin" + }, + { + "id": "311523", + "ident": "PG-0068", + "type": "small_airport", + "name": "Idam Airstrip", + "latitude_deg": "-4.1432", + "longitude_deg": "141.2592", + "elevation_ft": "211", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Idam", + "scheduled_service": "no", + "local_code": "IDAM" + }, + { + "id": "311691", + "ident": "PG-0069", + "type": "small_airport", + "name": "Kelabo Airstrip", + "latitude_deg": "-5.5659", + "longitude_deg": "142.5666", + "elevation_ft": "5562", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-HE", + "municipality": "Kelabo", + "scheduled_service": "no", + "local_code": "KLO", + "keywords": "Kelebo" + }, + { + "id": "311950", + "ident": "PG-0070", + "type": "small_airport", + "name": "Panasesa Airstrip", + "latitude_deg": "-10.739", + "longitude_deg": "151.7255", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Panasesa Island", + "scheduled_service": "no" + }, + { + "id": "311951", + "ident": "PG-0071", + "type": "small_airport", + "name": "Pori Airstrip", + "latitude_deg": "-5.5782", + "longitude_deg": "142.7065", + "elevation_ft": "5235", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-HE", + "municipality": "Pori", + "scheduled_service": "no" + }, + { + "id": "312494", + "ident": "PG-0072", + "type": "small_airport", + "name": "Yehebi Airstrip", + "latitude_deg": "-6.3928", + "longitude_deg": "142.2661", + "elevation_ft": "335", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Yehebi", + "scheduled_service": "no", + "gps_code": "AYXH", + "local_code": "YEH" + }, + { + "id": "312501", + "ident": "PG-0073", + "type": "small_airport", + "name": "Basikuna Airstrip", + "latitude_deg": "-6.4445", + "longitude_deg": "155.6832", + "elevation_ft": "1870", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NSB", + "municipality": "Basikuna", + "scheduled_service": "no", + "local_code": "BAK" + }, + { + "id": "312746", + "ident": "PG-0074", + "type": "small_airport", + "name": "Angai Airstrip", + "latitude_deg": "-7.4021", + "longitude_deg": "145.7899", + "elevation_ft": "2575", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Angai", + "scheduled_service": "no", + "local_code": "AGI", + "keywords": "AGA" + }, + { + "id": "312796", + "ident": "PG-0075", + "type": "closed", + "name": "Dona Airstrip", + "latitude_deg": "-7.8465", + "longitude_deg": "147.6518", + "elevation_ft": "65", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Dona", + "scheduled_service": "no" + }, + { + "id": "312806", + "ident": "PG-0076", + "type": "closed", + "name": "Mapaio Airstrip", + "latitude_deg": "-7.656", + "longitude_deg": "145.045", + "elevation_ft": "55", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Mapaio Village", + "scheduled_service": "no" + }, + { + "id": "313144", + "ident": "PG-0077", + "type": "closed", + "name": "Arisili Airstrip", + "latitude_deg": "-3.55", + "longitude_deg": "142.847", + "elevation_ft": "1350", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Arisili", + "scheduled_service": "no" + }, + { + "id": "313146", + "ident": "PG-0078", + "type": "closed", + "name": "Tau Airstrip", + "latitude_deg": "-3.6835", + "longitude_deg": "142.7187", + "elevation_ft": "700", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Tauhimbier", + "scheduled_service": "no" + }, + { + "id": "313167", + "ident": "PG-0079", + "type": "small_airport", + "name": "Aro Airstrip", + "latitude_deg": "-7.991", + "longitude_deg": "147.24", + "elevation_ft": "2200", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Aro", + "scheduled_service": "no", + "local_code": "ARO" + }, + { + "id": "313772", + "ident": "PG-0080", + "type": "closed", + "name": "Awala Airstrip", + "latitude_deg": "-9.5487", + "longitude_deg": "148.4156", + "elevation_ft": "730", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "municipality": "Sinua Valley", + "scheduled_service": "no" + }, + { + "id": "313773", + "ident": "PG-0081", + "type": "closed", + "name": "Babmo Airstrip", + "latitude_deg": "-3.7888", + "longitude_deg": "142.9552", + "elevation_ft": "290", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Babmo Mission", + "scheduled_service": "no", + "keywords": "Babmu" + }, + { + "id": "313789", + "ident": "PG-0082", + "type": "closed", + "name": "Muschu Airstrip", + "latitude_deg": "-3.4097", + "longitude_deg": "143.58", + "elevation_ft": "242", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Muschu Island", + "scheduled_service": "no" + }, + { + "id": "314252", + "ident": "PG-0083", + "type": "small_airport", + "name": "Matkomnae Airstrip", + "latitude_deg": "-5.817", + "longitude_deg": "141.1614", + "elevation_ft": "170", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Matkomrae", + "scheduled_service": "no", + "local_code": "MMA", + "keywords": "Matkomrae" + }, + { + "id": "314253", + "ident": "PG-0084", + "type": "closed", + "name": "Lou Island Airstrip", + "latitude_deg": "-2.378", + "longitude_deg": "147.3627", + "elevation_ft": "150", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MRL", + "municipality": "Lou Island", + "scheduled_service": "no" + }, + { + "id": "314312", + "ident": "PG-0085", + "type": "closed", + "name": "Kauaia Airstrip", + "latitude_deg": "-3.758", + "longitude_deg": "142.9777", + "elevation_ft": "375", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Kauaia", + "scheduled_service": "no" + }, + { + "id": "315175", + "ident": "PG-0086", + "type": "closed", + "name": "Yinugen Airstrip", + "latitude_deg": "-3.457", + "longitude_deg": "142.54", + "elevation_ft": "1860", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Yinugen", + "scheduled_service": "no" + }, + { + "id": "315176", + "ident": "PG-0087", + "type": "closed", + "name": "Yassip Airstrip", + "latitude_deg": "-3.512", + "longitude_deg": "142.702", + "elevation_ft": "1630", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Yassip Mission", + "scheduled_service": "no" + }, + { + "id": "315177", + "ident": "PG-0088", + "type": "closed", + "name": "Kombot Airstrip", + "latitude_deg": "-3.486", + "longitude_deg": "142.704", + "elevation_ft": "2260", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "scheduled_service": "no" + }, + { + "id": "315178", + "ident": "PG-0089", + "type": "closed", + "name": "Kaup Airstrip", + "latitude_deg": "-3.8033", + "longitude_deg": "143.987", + "elevation_ft": "100", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Kaup Villages", + "scheduled_service": "no" + }, + { + "id": "317770", + "ident": "PG-0090", + "type": "closed", + "name": "Turnbull Field", + "latitude_deg": "-10.301537", + "longitude_deg": "150.38575", + "elevation_ft": "100", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Alotau", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Turnbull_Field" + }, + { + "id": "319536", + "ident": "PG-0091", + "type": "small_airport", + "name": "Kapaimeri Airstrip", + "latitude_deg": "-4.2028", + "longitude_deg": "143.2767", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Kapaimeri Mission", + "scheduled_service": "no", + "local_code": "KAP", + "keywords": "Kapaimari" + }, + { + "id": "328819", + "ident": "PG-0092", + "type": "closed", + "name": "Bulldog Airfield", + "latitude_deg": "-7.79753", + "longitude_deg": "146.444253", + "elevation_ft": "100", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Bulldog", + "scheduled_service": "no" + }, + { + "id": "330238", + "ident": "PG-0093", + "type": "small_airport", + "name": "Menjim Airstrip", + "latitude_deg": "-5.502442", + "longitude_deg": "144.458104", + "elevation_ft": "1876", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-JI", + "municipality": "Menjim", + "scheduled_service": "no" + }, + { + "id": "332564", + "ident": "PG-0094", + "type": "small_airport", + "name": "Komo Airport", + "latitude_deg": "-6.062507", + "longitude_deg": "142.876575", + "elevation_ft": "5223", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-HE", + "municipality": "Komo", + "scheduled_service": "no", + "gps_code": "AYXM" + }, + { + "id": "342410", + "ident": "PG-0095", + "type": "closed", + "name": "Talasea Airstrip", + "latitude_deg": "-5.31578", + "longitude_deg": "150.03775", + "elevation_ft": "369", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WBK", + "municipality": "Talasea", + "scheduled_service": "no" + }, + { + "id": "347570", + "ident": "PG-0096", + "type": "small_airport", + "name": "Ambai Airstrip", + "latitude_deg": "-6.265091", + "longitude_deg": "144.987345", + "elevation_ft": "6721", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPK", + "municipality": "Ambai", + "scheduled_service": "no" + }, + { + "id": "347571", + "ident": "PG-0097", + "type": "closed", + "name": "Kelaua Airstrip", + "latitude_deg": "-4.378847", + "longitude_deg": "145.11858", + "elevation_ft": "31", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Bimat", + "scheduled_service": "no" + }, + { + "id": "348507", + "ident": "PG-0098", + "type": "closed", + "name": "Sibidiri Airstrip", + "latitude_deg": "-8.963", + "longitude_deg": "142.262", + "elevation_ft": "45", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Sibidiri", + "scheduled_service": "no" + }, + { + "id": "325368", + "ident": "PG-0099", + "type": "closed", + "name": "Oria Airport", + "latitude_deg": "-6.577613", + "longitude_deg": "155.771022", + "elevation_ft": "551", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NSB", + "municipality": "Oria", + "scheduled_service": "no", + "keywords": "OTY" + }, + { + "id": "314034", + "ident": "PG-0100", + "type": "small_airport", + "name": "Stockholm Landing Strip", + "latitude_deg": "-4.35", + "longitude_deg": "151.55", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EBR", + "municipality": "Stockholm", + "scheduled_service": "no", + "iata_code": "SMP", + "local_code": "STK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stockholm_Airport_(Papua_New_Guinea)" + }, + { + "id": "354204", + "ident": "PG-0101", + "type": "closed", + "name": "Heina Airstrip", + "latitude_deg": "-1.123237", + "longitude_deg": "144.506736", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MRL", + "municipality": "Heina Atoll", + "scheduled_service": "no" + }, + { + "id": "429866", + "ident": "PG-0102", + "type": "heliport", + "name": "Lae Heliport", + "latitude_deg": "-6.73397", + "longitude_deg": "146.99973", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Lae", + "scheduled_service": "no" + }, + { + "id": "42760", + "ident": "PG-AKG", + "type": "small_airport", + "name": "Anguganak Airport", + "latitude_deg": "-3.560504", + "longitude_deg": "142.217307", + "elevation_ft": "937", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Anguganak", + "scheduled_service": "no", + "gps_code": "AYGU", + "iata_code": "AKG", + "local_code": "AGK" + }, + { + "id": "30657", + "ident": "PG-ATP", + "type": "small_airport", + "name": "Tadji Airport", + "latitude_deg": "-3.19819180354", + "longitude_deg": "142.430963516", + "elevation_ft": "33", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Aitape", + "scheduled_service": "yes", + "gps_code": "AYTJ", + "iata_code": "TAJ", + "local_code": "TAD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tadji_Airport" + }, + { + "id": "42763", + "ident": "PG-AWB", + "type": "small_airport", + "name": "Awaba Airport", + "latitude_deg": "-8.00611019135", + "longitude_deg": "142.748352051", + "elevation_ft": "32", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Awaba", + "scheduled_service": "yes", + "gps_code": "AYAW", + "iata_code": "AWB", + "local_code": "AWB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Awaba_Airport" + }, + { + "id": "30675", + "ident": "PG-BAA", + "type": "small_airport", + "name": "Bialla Airport", + "latitude_deg": "-5.3305602073700005", + "longitude_deg": "151.007995605", + "elevation_ft": "51", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WBK", + "municipality": "Bialla, Matalilu, Ewase", + "scheduled_service": "no", + "gps_code": "AYBL", + "iata_code": "BAA", + "local_code": "BIA", + "keywords": "Babu," + }, + { + "id": "35147", + "ident": "PG-CVB", + "type": "small_airport", + "name": "Chungribu Airport", + "latitude_deg": "-4.806620121", + "longitude_deg": "144.714996338", + "elevation_ft": "130", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Chungribu", + "scheduled_service": "no", + "gps_code": "AYCB", + "iata_code": "CVB", + "local_code": "CBU" + }, + { + "id": "31542", + "ident": "PG-GMI", + "type": "small_airport", + "name": "Gasmata Island Airport", + "latitude_deg": "-6.27111005783", + "longitude_deg": "150.330993652", + "elevation_ft": "23", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WBK", + "municipality": "Gasmata Island", + "scheduled_service": "yes", + "gps_code": "AYGT", + "iata_code": "GMI", + "local_code": "GMA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gasmata_Airport" + }, + { + "id": "42761", + "ident": "PG-GVI", + "type": "small_airport", + "name": "Green River Airport", + "latitude_deg": "-3.9022428989400004", + "longitude_deg": "141.170516968", + "elevation_ft": "281", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Green River", + "scheduled_service": "no", + "gps_code": "AYGV", + "iata_code": "GVI", + "local_code": "GRN" + }, + { + "id": "42758", + "ident": "PG-HYF", + "type": "small_airport", + "name": "Hayfields Airport", + "latitude_deg": "-3.69838", + "longitude_deg": "143.057902", + "elevation_ft": "466", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Bainyik", + "scheduled_service": "no", + "gps_code": "AYHF", + "iata_code": "HYF", + "local_code": "HFD" + }, + { + "id": "35181", + "ident": "PG-IHU", + "type": "small_airport", + "name": "Ihu Airport", + "latitude_deg": "-7.8975601196300005", + "longitude_deg": "145.395996094", + "elevation_ft": "70", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Ihu", + "scheduled_service": "yes", + "gps_code": "AYIH", + "iata_code": "IHU", + "local_code": "IHU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ihu_Airport" + }, + { + "id": "31669", + "ident": "PG-IIS", + "type": "small_airport", + "name": "Nissan Island Airport", + "latitude_deg": "-4.49972009659", + "longitude_deg": "154.225997925", + "elevation_ft": "52", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NSB", + "municipality": "Nissan Island", + "scheduled_service": "no", + "gps_code": "AYIA", + "iata_code": "IIS", + "local_code": "NIS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nissan_Island_Airport" + }, + { + "id": "31693", + "ident": "PG-JAQ", + "type": "small_airport", + "name": "Jacquinot Bay Airport", + "latitude_deg": "-5.65250015259", + "longitude_deg": "151.507003784", + "elevation_ft": "136", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EBR", + "municipality": "Jacquinot Bay", + "scheduled_service": "yes", + "gps_code": "AYJB", + "iata_code": "JAQ", + "local_code": "JCB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jacquinot_Bay_Airport" + }, + { + "id": "35183", + "ident": "PG-KDR", + "type": "small_airport", + "name": "Kandrian Airport", + "latitude_deg": "-6.19217", + "longitude_deg": "149.54783", + "elevation_ft": "280", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WBK", + "municipality": "Kandrian", + "scheduled_service": "yes", + "gps_code": "AYKC", + "iata_code": "KDR", + "local_code": "KDR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kandrian_Airport" + }, + { + "id": "35186", + "ident": "PG-KKD", + "type": "small_airport", + "name": "Kokoda Airport", + "latitude_deg": "-8.88467884064", + "longitude_deg": "147.730957031", + "elevation_ft": "1240", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "municipality": "Kokoda", + "scheduled_service": "yes", + "gps_code": "AYKO", + "iata_code": "KKD", + "local_code": "KOK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kokoda_Airport" + }, + { + "id": "35182", + "ident": "PG-KUY", + "type": "small_airport", + "name": "Kamusi Airport", + "latitude_deg": "-7.420347", + "longitude_deg": "143.121811", + "elevation_ft": "97", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Kamusi", + "scheduled_service": "yes", + "gps_code": "AYKS", + "iata_code": "KUY", + "local_code": "KSI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kamusi_Airport" + }, + { + "id": "42764", + "ident": "PG-KWO", + "type": "small_airport", + "name": "Kawito Airport", + "latitude_deg": "-7.977006912229999", + "longitude_deg": "142.823577881", + "elevation_ft": "72", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Kawito", + "scheduled_service": "no", + "gps_code": "AYKW", + "iata_code": "KWO", + "local_code": "KWT" + }, + { + "id": "42759", + "ident": "PG-KXR", + "type": "closed", + "name": "Karoola Airport", + "latitude_deg": "-5.1431", + "longitude_deg": "154.5928", + "elevation_ft": "52", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NSB", + "municipality": "Buka Island", + "scheduled_service": "no", + "iata_code": "KXR" + }, + { + "id": "42762", + "ident": "PG-LMI", + "type": "small_airport", + "name": "Lumi Airport", + "latitude_deg": "-3.47683951134", + "longitude_deg": "142.041292191", + "elevation_ft": "1750", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Lumi", + "scheduled_service": "no", + "gps_code": "AYLU", + "iata_code": "LMI", + "local_code": "LUMI" + }, + { + "id": "35187", + "ident": "PG-LMY", + "type": "small_airport", + "name": "Lake Murray Airport", + "latitude_deg": "-7.00992012024", + "longitude_deg": "141.494003296", + "elevation_ft": "52", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Lake Murray", + "scheduled_service": "yes", + "gps_code": "AYLM", + "iata_code": "LMY", + "local_code": "LKM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_Murray_Airport" + }, + { + "id": "35190", + "ident": "PG-OBX", + "type": "small_airport", + "name": "Obo Airport", + "latitude_deg": "-7.590622421369999", + "longitude_deg": "141.324262619", + "elevation_ft": "29", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Obo", + "scheduled_service": "yes", + "gps_code": "AYOB", + "iata_code": "OBX", + "local_code": "OBO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Obo_Airport_(Papua_New_Guinea)" + }, + { + "id": "35180", + "ident": "PG-OPU", + "type": "medium_airport", + "name": "Balimo Airport", + "latitude_deg": "-8.05000019073", + "longitude_deg": "142.932998657", + "elevation_ft": "51", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Balimo", + "scheduled_service": "yes", + "gps_code": "AYBM", + "iata_code": "OPU", + "local_code": "BLI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Balimo_Airport" + }, + { + "id": "35191", + "ident": "PG-SKC", + "type": "small_airport", + "name": "Suki Airport", + "latitude_deg": "-8.0466", + "longitude_deg": "141.7222", + "elevation_ft": "24", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Suki", + "scheduled_service": "yes", + "gps_code": "AYSU", + "iata_code": "SKC", + "local_code": "SUKI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Suki_Airport" + }, + { + "id": "35192", + "ident": "PG-TFI", + "type": "small_airport", + "name": "Tufi Airport", + "latitude_deg": "-9.07595443726", + "longitude_deg": "149.319839478", + "elevation_ft": "85", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "municipality": "Tufi", + "scheduled_service": "yes", + "gps_code": "AYTU", + "iata_code": "TFI", + "local_code": "TUFI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tufi_Airport" + }, + { + "id": "42765", + "ident": "PG-TFM", + "type": "small_airport", + "name": "Telefomin Airport", + "latitude_deg": "-5.12608", + "longitude_deg": "141.641922", + "elevation_ft": "4950", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Telefomin", + "scheduled_service": "no", + "gps_code": "AYTE", + "iata_code": "TFM", + "local_code": "TLF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Telefomin_Airport" + }, + { + "id": "32459", + "ident": "PG-TLO", + "type": "small_airport", + "name": "Tol Airport", + "latitude_deg": "-4.98083019257", + "longitude_deg": "152.009994507", + "elevation_ft": "49", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EBR", + "municipality": "Tol", + "scheduled_service": "no", + "gps_code": "AYXO", + "iata_code": "TLO", + "local_code": "TOL" + }, + { + "id": "35189", + "ident": "PG-UKU", + "type": "small_airport", + "name": "Nuku Airport", + "latitude_deg": "-3.676651", + "longitude_deg": "142.484334", + "elevation_ft": "870", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Nuku", + "scheduled_service": "yes", + "gps_code": "AYNU", + "iata_code": "UKU", + "local_code": "NUKU" + }, + { + "id": "32536", + "ident": "PG-ULE", + "type": "small_airport", + "name": "Sule Airport", + "latitude_deg": "-4.974720001220703", + "longitude_deg": "151.2969970703125", + "elevation_ft": "100", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WBK", + "municipality": "Sule", + "scheduled_service": "no", + "iata_code": "ULE" + }, + { + "id": "35179", + "ident": "PG-VMU", + "type": "medium_airport", + "name": "Baimuru Airport", + "latitude_deg": "-7.49686002731", + "longitude_deg": "144.819900513", + "elevation_ft": "27", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Baimuru", + "scheduled_service": "yes", + "gps_code": "AYBA", + "iata_code": "VMU", + "local_code": "BMU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baimuru_Airport" + }, + { + "id": "35193", + "ident": "PG-WPM", + "type": "small_airport", + "name": "Wipim Airport", + "latitude_deg": "-8.788220405579999", + "longitude_deg": "142.882003784", + "elevation_ft": "173", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Wipim", + "scheduled_service": "yes", + "gps_code": "AYXP", + "iata_code": "WPM", + "local_code": "WPM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wipim_Airport" + }, + { + "id": "307353", + "ident": "PGE", + "type": "small_airport", + "name": "Yegepa Airport", + "latitude_deg": "-7.134444444440001", + "longitude_deg": "146.156388889", + "elevation_ft": "4179", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "scheduled_service": "no", + "iata_code": "PGE", + "local_code": "YEG" + }, + { + "id": "24085", + "ident": "PGM", + "type": "small_airport", + "name": "Port Graham Airport", + "latitude_deg": "59.348300933838", + "longitude_deg": "-151.83200073242", + "elevation_ft": "93", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Port Graham", + "scheduled_service": "no", + "gps_code": "PGM", + "iata_code": "PGM", + "local_code": "PGM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Graham_Airport" + }, + { + "id": "322988", + "ident": "PGP", + "type": "closed", + "name": "Roça Porto Alegre Airport", + "latitude_deg": "0.038624", + "longitude_deg": "6.515965", + "elevation_ft": "32", + "continent": "AF", + "iso_country": "ST", + "iso_region": "ST-03", + "municipality": "Porto Alegro", + "scheduled_service": "no", + "iata_code": "PGP" + }, + { + "id": "5430", + "ident": "PGRO", + "type": "medium_airport", + "name": "Rota International Airport", + "latitude_deg": "14.1743", + "longitude_deg": "145.242996", + "elevation_ft": "607", + "continent": "OC", + "iso_country": "MP", + "iso_region": "MP-U-A", + "municipality": "Rota Island", + "scheduled_service": "yes", + "gps_code": "PGRO", + "iata_code": "ROP", + "local_code": "GRO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rota_International_Airport" + }, + { + "id": "5431", + "ident": "PGSN", + "type": "medium_airport", + "name": "Saipan International Airport", + "latitude_deg": "15.119", + "longitude_deg": "145.729004", + "elevation_ft": "215", + "continent": "OC", + "iso_country": "MP", + "iso_region": "MP-U-A", + "municipality": "I Fadang, Saipan", + "scheduled_service": "yes", + "gps_code": "PGSN", + "iata_code": "SPN", + "local_code": "GSN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saipan_International_Airport", + "keywords": "Francisco C. Ada" + }, + { + "id": "5432", + "ident": "PGUA", + "type": "medium_airport", + "name": "Andersen Air Force Base", + "latitude_deg": "13.584", + "longitude_deg": "144.929998", + "elevation_ft": "627", + "continent": "OC", + "iso_country": "GU", + "iso_region": "GU-U-A", + "municipality": "Yigo", + "scheduled_service": "no", + "gps_code": "PGUA", + "iata_code": "UAM", + "local_code": "UAM", + "home_link": "http://www.andersen.af.mil/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Andersen_Air_Force_Base" + }, + { + "id": "5433", + "ident": "PGUM", + "type": "large_airport", + "name": "Antonio B. Won Pat International Airport", + "latitude_deg": "13.4834", + "longitude_deg": "144.796005", + "elevation_ft": "298", + "continent": "OC", + "iso_country": "GU", + "iso_region": "GU-U-A", + "municipality": "Hagåtña", + "scheduled_service": "yes", + "gps_code": "PGUM", + "iata_code": "GUM", + "local_code": "GUM", + "home_link": "http://www.guamairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Antonio_B._Won_Pat_International_Airport", + "keywords": "Agana" + }, + { + "id": "5434", + "ident": "PGWT", + "type": "medium_airport", + "name": "Tinian International Airport", + "latitude_deg": "14.9992", + "longitude_deg": "145.619003", + "elevation_ft": "271", + "continent": "OC", + "iso_country": "MP", + "iso_region": "MP-U-A", + "municipality": "Tinian Island", + "scheduled_service": "no", + "gps_code": "PGWT", + "iata_code": "TIQ", + "local_code": "TNI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tinian_International_Airport" + }, + { + "id": "308633", + "ident": "PH-0001", + "type": "medium_airport", + "name": "Laguindingan International Airport", + "latitude_deg": "8.612203", + "longitude_deg": "124.456496", + "elevation_ft": "190", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MSR", + "municipality": "Cagayan de Oro", + "scheduled_service": "yes", + "gps_code": "RPMY", + "iata_code": "CGY", + "home_link": "http://laguindinganinternationalairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Laguindingan_International_Airport", + "keywords": "CGY, IGN, RPML, Cagayan de Oro" + }, + { + "id": "308652", + "ident": "PH-0002", + "type": "small_airport", + "name": "San Antonio Airport", + "latitude_deg": "12.417", + "longitude_deg": "124.2742", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NSA", + "municipality": "San Antonio", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Antonio_Airport_(Philippines)", + "keywords": "Dalupiri, Dalupiri Island National, Luparan han San Antonio, Paliparan ng San Antonio, Tugpahanan sa San Antonio" + }, + { + "id": "308653", + "ident": "PH-0003", + "type": "small_airport", + "name": "Azagra Airstrip", + "latitude_deg": "12.2799", + "longitude_deg": "122.6246", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ROM", + "municipality": "San Fernando", + "scheduled_service": "no" + }, + { + "id": "309719", + "ident": "PH-0004", + "type": "small_airport", + "name": "Wao Airport", + "latitude_deg": "7.63652", + "longitude_deg": "124.73388", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LAS", + "municipality": "Wao", + "scheduled_service": "no" + }, + { + "id": "337382", + "ident": "PH-0005", + "type": "small_airport", + "name": "Tuy Airstrip", + "latitude_deg": "14.014444", + "longitude_deg": "120.734722", + "elevation_ft": "236", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Tuy", + "scheduled_service": "no", + "local_code": "TUY" + }, + { + "id": "314647", + "ident": "PH-0006", + "type": "small_airport", + "name": "Rancudo Airfield", + "latitude_deg": "11.051744", + "longitude_deg": "114.284154", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "municipality": "Kalayaan (Pag-asa Island / Thitu Island)", + "scheduled_service": "no", + "gps_code": "RPPN" + }, + { + "id": "321220", + "ident": "PH-0007", + "type": "small_airport", + "name": "Don Jesus Soriano (Doña Rosario) Airstrip", + "latitude_deg": "9.16944", + "longitude_deg": "125.56027", + "elevation_ft": "59", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AGN", + "municipality": "Tubay", + "scheduled_service": "no" + }, + { + "id": "325552", + "ident": "PH-0008", + "type": "heliport", + "name": "Quezon Power Plant Heliport", + "latitude_deg": "14.226435", + "longitude_deg": "121.759152", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-QUE", + "municipality": "Mauban", + "scheduled_service": "no", + "keywords": "Quezon Power Plant, Mauban" + }, + { + "id": "325553", + "ident": "PH-0009", + "type": "heliport", + "name": "Chevron Terminal Heliport", + "latitude_deg": "13.78246", + "longitude_deg": "121.022376", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Batangas", + "scheduled_service": "no", + "keywords": "Danglayan, Chevron" + }, + { + "id": "325554", + "ident": "PH-0010", + "type": "heliport", + "name": "Cochem Heliport (Danglayan)", + "latitude_deg": "13.78058", + "longitude_deg": "121.01412", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Batangas", + "scheduled_service": "no", + "keywords": "Cochem, Danglayan" + }, + { + "id": "325555", + "ident": "PH-0011", + "type": "heliport", + "name": "Santa Rita Power Plant Heliport", + "latitude_deg": "13.767591", + "longitude_deg": "121.033632", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Batangas", + "scheduled_service": "no", + "keywords": "Santa Rita" + }, + { + "id": "325564", + "ident": "PH-0012", + "type": "heliport", + "name": "Shell Malampaya Natural Gas Receiving Facility (Tabangao) Heliport", + "latitude_deg": "13.7177", + "longitude_deg": "121.060629", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Batangas", + "scheduled_service": "no", + "keywords": "Tabangao" + }, + { + "id": "325565", + "ident": "PH-0013", + "type": "heliport", + "name": "JG Summit Olefins Corporation (Pinamucan) Helipad", + "latitude_deg": "13.677734", + "longitude_deg": "121.056255", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Batangas", + "scheduled_service": "no", + "keywords": "Pinamucan, JG Summit Olefins Corp" + }, + { + "id": "325566", + "ident": "PH-0014", + "type": "heliport", + "name": "Himmel Industries Tank Farm Heliport", + "latitude_deg": "13.687759", + "longitude_deg": "121.050983", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Batangas", + "scheduled_service": "no", + "keywords": "Pinamucan, Himmel Industries" + }, + { + "id": "325574", + "ident": "PH-0015", + "type": "heliport", + "name": "KEPCO Ilijan Power Plant Heliport", + "latitude_deg": "13.62061", + "longitude_deg": "121.076908", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Batangas", + "scheduled_service": "no", + "keywords": "Ilijan" + }, + { + "id": "325585", + "ident": "PH-0016", + "type": "heliport", + "name": "Bayview Accommodations Heliport", + "latitude_deg": "13.92418", + "longitude_deg": "121.704224", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-QUE", + "municipality": "Pagbilao", + "scheduled_service": "no", + "keywords": "Bayview Accommodation; Bantigue" + }, + { + "id": "325624", + "ident": "PH-0017", + "type": "heliport", + "name": "Philippine Navy Region 5 Rawls-Legazpi Heliport", + "latitude_deg": "13.163261", + "longitude_deg": "123.755171", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ALB", + "municipality": "Rawls (Legazpi)", + "scheduled_service": "no", + "keywords": "Rawls" + }, + { + "id": "325627", + "ident": "PH-0018", + "type": "heliport", + "name": "Tugawe Cover Resort Helipad", + "latitude_deg": "13.718036", + "longitude_deg": "123.9731336", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAS", + "municipality": "Tugawe Cove Resort", + "scheduled_service": "no", + "keywords": "Tugawe Cove" + }, + { + "id": "325678", + "ident": "PH-0019", + "type": "heliport", + "name": "Reserva Helipad", + "latitude_deg": "15.814874", + "longitude_deg": "121.54704", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AUR", + "municipality": "Reserva", + "scheduled_service": "no", + "keywords": "Reserva" + }, + { + "id": "325681", + "ident": "PH-0020", + "type": "small_airport", + "name": "Paracale Airstrip", + "latitude_deg": "14.2881", + "longitude_deg": "122.80068", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAN", + "municipality": "Paracale", + "scheduled_service": "no", + "keywords": "Paracale" + }, + { + "id": "325699", + "ident": "PH-0021", + "type": "heliport", + "name": "Poro Point Naval Base Helipad", + "latitude_deg": "16.60643", + "longitude_deg": "120.289836", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LUN", + "municipality": "Poro Point (San Fernando)", + "scheduled_service": "no", + "keywords": "Poro Point, San Fernando" + }, + { + "id": "325711", + "ident": "PH-0022", + "type": "small_airport", + "name": "Dinapigue Airstrip", + "latitude_deg": "16.521518", + "longitude_deg": "122.264357", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AUR", + "municipality": "Dinapigue", + "scheduled_service": "no", + "keywords": "Dinapigue" + }, + { + "id": "325712", + "ident": "PH-0023", + "type": "small_airport", + "name": "Maconacon Airstrip", + "latitude_deg": "17.382996", + "longitude_deg": "122.247963", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ISA", + "municipality": "Maconacon", + "scheduled_service": "no", + "keywords": "Maconacon" + }, + { + "id": "325717", + "ident": "PH-0024", + "type": "small_airport", + "name": "Taggat Airstrip", + "latitude_deg": "18.604703", + "longitude_deg": "121.061954", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAG", + "municipality": "Taggat", + "scheduled_service": "no", + "keywords": "Taggat, Claveria" + }, + { + "id": "325757", + "ident": "PH-0025", + "type": "heliport", + "name": "Bauang Power Plant Heliport", + "latitude_deg": "16.489863", + "longitude_deg": "120.32767", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LUN", + "municipality": "Bauang", + "scheduled_service": "no", + "keywords": "Bauang, 1590 Energy" + }, + { + "id": "325758", + "ident": "PH-0026", + "type": "heliport", + "name": "Bauang Power Plant Helipad", + "latitude_deg": "16.490059", + "longitude_deg": "120.326997", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LUN", + "municipality": "Bauang", + "scheduled_service": "no", + "keywords": "Bauang, 1590 Energy" + }, + { + "id": "325759", + "ident": "PH-0027", + "type": "heliport", + "name": "Wenceslao Heliport", + "latitude_deg": "16.455614", + "longitude_deg": "120.332915", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LUN", + "municipality": "Caba", + "scheduled_service": "no", + "keywords": "Wenceslao" + }, + { + "id": "325770", + "ident": "PH-0028", + "type": "heliport", + "name": "Baquioen Heliport", + "latitude_deg": "16.084522", + "longitude_deg": "120.110154", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAN", + "municipality": "Sual", + "scheduled_service": "no", + "keywords": "Baquioen, Sual" + }, + { + "id": "325785", + "ident": "PH-0029", + "type": "heliport", + "name": "Sual Power Plant Heliport", + "latitude_deg": "16.126615", + "longitude_deg": "120.097104", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAN", + "municipality": "Sual", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sual_Power_Station", + "keywords": "Sual Power Plant, Pangasinan" + }, + { + "id": "325791", + "ident": "PH-0030", + "type": "closed", + "name": "Naulo Point Airstrip", + "latitude_deg": "15.713829", + "longitude_deg": "119.897844", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZMB", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "keywords": "Naulo Point" + }, + { + "id": "325799", + "ident": "PH-0031", + "type": "heliport", + "name": "Naval Station Leovigildo Gantioqui Heliport", + "latitude_deg": "14.960447", + "longitude_deg": "120.071002", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZMB", + "municipality": "San Miguel", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/U.S._Naval_Communications_Station_San_Miguel", + "keywords": "San Miguel, Naval Station LeoVigildo Gantioqui" + }, + { + "id": "325809", + "ident": "PH-0032", + "type": "heliport", + "name": "Bataan Nuclear Power Plant Heliport", + "latitude_deg": "14.630793", + "longitude_deg": "120.315316", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BAN", + "municipality": "Morong", + "scheduled_service": "no", + "keywords": "Bataan Nuclear Power Plant" + }, + { + "id": "325853", + "ident": "PH-0033", + "type": "heliport", + "name": "Manila International Container Terminal (MICT) Heliport", + "latitude_deg": "14.597028", + "longitude_deg": "120.954743", + "elevation_ft": "14", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Tondo", + "scheduled_service": "no", + "keywords": "MICT, Manila International Container Terminal, ICTSI" + }, + { + "id": "325864", + "ident": "PH-0034", + "type": "closed", + "name": "Manila North Harbor Container Terminal Helipad", + "latitude_deg": "14.619012", + "longitude_deg": "120.958809", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Manila", + "scheduled_service": "no", + "keywords": "Manila North Harbor Container Terminal" + }, + { + "id": "325865", + "ident": "PH-0035", + "type": "heliport", + "name": "Joy-Nostalg Heliport", + "latitude_deg": "14.587541", + "longitude_deg": "121.060526", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no", + "keywords": "Joy-Nostalg, San Antonio Rescue" + }, + { + "id": "325866", + "ident": "PH-0036", + "type": "heliport", + "name": "SM Megamall (Building A) Heliport", + "latitude_deg": "14.586662", + "longitude_deg": "121.057089", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Mandaluyong", + "scheduled_service": "no", + "keywords": "SM Megamall" + }, + { + "id": "325874", + "ident": "PH-0037", + "type": "heliport", + "name": "Malayan Plaza Heliport", + "latitude_deg": "14.586611", + "longitude_deg": "121.060012", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no", + "keywords": "Malaysian Plaza" + }, + { + "id": "325875", + "ident": "PH-0038", + "type": "heliport", + "name": "BDO Corporate Center Heliport", + "latitude_deg": "14.585865", + "longitude_deg": "121.059189", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Mandaluyong", + "scheduled_service": "no", + "keywords": "BDO Corporate Center" + }, + { + "id": "325876", + "ident": "PH-0039", + "type": "heliport", + "name": "Discovery Suites Heliport", + "latitude_deg": "14.585852", + "longitude_deg": "121.060233", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no", + "keywords": "Discovery Suites" + }, + { + "id": "325877", + "ident": "PH-0040", + "type": "heliport", + "name": "Philippine Stock Exchange West Tower Heliport", + "latitude_deg": "14.582518", + "longitude_deg": "121.061614", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no", + "keywords": "Philippine Stock Exchange" + }, + { + "id": "325878", + "ident": "PH-0041", + "type": "heliport", + "name": "Philippine Stock Exchange East Tower Heliport", + "latitude_deg": "14.58251", + "longitude_deg": "121.062262", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no", + "keywords": "Philippine Stock Exchange" + }, + { + "id": "325879", + "ident": "PH-0042", + "type": "heliport", + "name": "San Miguel Corporate Heliport", + "latitude_deg": "14.582849", + "longitude_deg": "121.059287", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Mandaluyong", + "scheduled_service": "no", + "keywords": "Mandaluyong, San Miguel Corporation" + }, + { + "id": "325880", + "ident": "PH-0043", + "type": "heliport", + "name": "SM Megamall (Building B) Heliport", + "latitude_deg": "14.582523", + "longitude_deg": "121.057129", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Mandaluyong", + "scheduled_service": "no", + "keywords": "Mandaluyong, SM Megamall" + }, + { + "id": "325881", + "ident": "PH-0044", + "type": "heliport", + "name": "TSD Communications Department Heliport", + "latitude_deg": "14.574916", + "longitude_deg": "121.055493", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Mandaluyong", + "scheduled_service": "no", + "keywords": "Mandaluyong, TSD Communications" + }, + { + "id": "325882", + "ident": "PH-0045", + "type": "heliport", + "name": "Orient Square Heliport", + "latitude_deg": "14.58534", + "longitude_deg": "121.061291", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no", + "keywords": "Orient Square, Pasig" + }, + { + "id": "325883", + "ident": "PH-0046", + "type": "heliport", + "name": "Taipan Place Heliport", + "latitude_deg": "14.584999", + "longitude_deg": "121.062053", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no", + "keywords": "Taipan Place, Pasig" + }, + { + "id": "325884", + "ident": "PH-0047", + "type": "heliport", + "name": "iSquare Heliport", + "latitude_deg": "14.5856", + "longitude_deg": "121.06338", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no", + "keywords": "iSquare, Pasig" + }, + { + "id": "325885", + "ident": "PH-0048", + "type": "heliport", + "name": "Union Bank Plaza Heliport", + "latitude_deg": "14.587149", + "longitude_deg": "121.063516", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no", + "keywords": "Union Bank Plaza, Pasig" + }, + { + "id": "325886", + "ident": "PH-0049", + "type": "heliport", + "name": "MERALCO Ortigas Heliport", + "latitude_deg": "14.591288", + "longitude_deg": "121.07033", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no", + "keywords": "MERALCO Ortigas, Pasig" + }, + { + "id": "325887", + "ident": "PH-0050", + "type": "heliport", + "name": "Eton Cyberpod Helipads", + "latitude_deg": "14.592181", + "longitude_deg": "121.060324", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Quezon City", + "scheduled_service": "no", + "keywords": "Eton Cyberpod, Quezon City" + }, + { + "id": "325888", + "ident": "PH-0051", + "type": "heliport", + "name": "Philippine Coast Guard Manila Ready Force Base Helipad", + "latitude_deg": "14.582475", + "longitude_deg": "120.96801", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Manila South Harbor", + "scheduled_service": "no" + }, + { + "id": "325889", + "ident": "PH-0052", + "type": "heliport", + "name": "Port of Manila South Harbor Pier 13 Helipad", + "latitude_deg": "14.582711", + "longitude_deg": "120.967669", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Manila South Harbor", + "scheduled_service": "no", + "keywords": "Port of Manila, South Harbor" + }, + { + "id": "325890", + "ident": "PH-0053", + "type": "heliport", + "name": "Manila Hotel Heliport", + "latitude_deg": "14.583489", + "longitude_deg": "120.973616", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Manila South Port", + "scheduled_service": "no", + "keywords": "Manila Hotel" + }, + { + "id": "325891", + "ident": "PH-0054", + "type": "heliport", + "name": "Port of Manila South Harbor Pier 17 Helipad", + "latitude_deg": "14.581421", + "longitude_deg": "120.97311", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Manila South Harbor", + "scheduled_service": "no", + "keywords": "Port of Manila South Harbor" + }, + { + "id": "325892", + "ident": "PH-0055", + "type": "heliport", + "name": "Naval Station Jose Andrada Heliport", + "latitude_deg": "14.560458", + "longitude_deg": "120.985263", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Malate", + "scheduled_service": "no", + "keywords": "Naval Station Jose Andrada" + }, + { + "id": "325893", + "ident": "PH-0056", + "type": "heliport", + "name": "Sofitel Philippine Plaza Hotel Heliport", + "latitude_deg": "14.552693", + "longitude_deg": "120.980409", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasay", + "scheduled_service": "no", + "keywords": "Sofitel Philippine Plaza Hotel" + }, + { + "id": "325895", + "ident": "PH-0057", + "type": "heliport", + "name": "CCP Open Grounds Heliport", + "latitude_deg": "14.552598", + "longitude_deg": "120.983714", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasay", + "scheduled_service": "no", + "keywords": "CCP Open Field, Pasay" + }, + { + "id": "325896", + "ident": "PH-0058", + "type": "heliport", + "name": "Conrad Manila Hotel Heliport", + "latitude_deg": "14.531926", + "longitude_deg": "120.980394", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasay", + "scheduled_service": "no", + "keywords": "Conrad Manila Hotel, Pasay" + }, + { + "id": "325900", + "ident": "PH-0059", + "type": "heliport", + "name": "Solaire Manila Resort & Casino Heliport 1", + "latitude_deg": "14.523692", + "longitude_deg": "120.981034", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Parañaque", + "scheduled_service": "no", + "keywords": "Solaire Resort, Solaire Casino, Parañaque" + }, + { + "id": "325901", + "ident": "PH-0060", + "type": "heliport", + "name": "Solaire Manila Resort & Casino Heliport 2", + "latitude_deg": "14.52211", + "longitude_deg": "120.981283", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Parañaque", + "scheduled_service": "no", + "keywords": "Solaire Manila Resort & Casino, Parañaque" + }, + { + "id": "325906", + "ident": "PH-0061", + "type": "heliport", + "name": "Fort Felipe Naval Logistics Center Heliport", + "latitude_deg": "14.483864", + "longitude_deg": "120.917295", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAV", + "municipality": "Cavite", + "scheduled_service": "no", + "keywords": "Fort Felipe, Cavite" + }, + { + "id": "325907", + "ident": "PH-0062", + "type": "heliport", + "name": "Petron Rosario Refinery Helipad", + "latitude_deg": "14.41274", + "longitude_deg": "120.856393", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAV", + "municipality": "Rosario", + "scheduled_service": "no", + "keywords": "Petron Rosario Refinery" + }, + { + "id": "325908", + "ident": "PH-0063", + "type": "heliport", + "name": "Capipisa (Tanza) Heliport", + "latitude_deg": "14.348114", + "longitude_deg": "120.781138", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAV", + "municipality": "Tanza", + "scheduled_service": "no", + "keywords": "Capipisa, Tanza" + }, + { + "id": "325912", + "ident": "PH-0064", + "type": "heliport", + "name": "General Gregorio Lim Marine Base Heliport", + "latitude_deg": "14.267422", + "longitude_deg": "120.626543", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAV", + "municipality": "Ternate", + "scheduled_service": "no", + "keywords": "General Gregorio Lim Marine Base, Bucana" + }, + { + "id": "325913", + "ident": "PH-0065", + "type": "heliport", + "name": "Balaytigue Heliport", + "latitude_deg": "14.134019", + "longitude_deg": "120.59806", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Nasugbu", + "scheduled_service": "no", + "keywords": "Balaytigue, Nusugbu" + }, + { + "id": "325914", + "ident": "PH-0066", + "type": "closed", + "name": "Talim Point Airstrip", + "latitude_deg": "13.977746", + "longitude_deg": "120.603774", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Lian", + "scheduled_service": "no", + "keywords": "Talim Point, Luyahan" + }, + { + "id": "325921", + "ident": "PH-0067", + "type": "heliport", + "name": "Lago de Oro Wakepark Hotel Helipad", + "latitude_deg": "13.91657", + "longitude_deg": "120.622158", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Calatagan", + "scheduled_service": "no", + "keywords": "Lago de Oro Wakepark Hotel, Balibago" + }, + { + "id": "325925", + "ident": "PH-0068", + "type": "heliport", + "name": "Purefoods Flour Mills Pulong Balibaguhan Heliport", + "latitude_deg": "13.743705", + "longitude_deg": "120.945976", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Mabini", + "scheduled_service": "no", + "keywords": "Purefoods Flour Mills, Pulong Balibaguhan" + }, + { + "id": "325938", + "ident": "PH-0069", + "type": "small_airport", + "name": "Fuga Airstrip", + "latitude_deg": "18.863326", + "longitude_deg": "121.283612", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAG", + "municipality": "Aparri", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fuga_Island", + "keywords": "Fuga" + }, + { + "id": "325939", + "ident": "PH-0070", + "type": "small_airport", + "name": "Barit Island Airstrip", + "latitude_deg": "18.869946", + "longitude_deg": "121.256533", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAG", + "municipality": "Aparri", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barit_Island", + "keywords": "Barit" + }, + { + "id": "325940", + "ident": "PH-0071", + "type": "small_airport", + "name": "Mabag Island Airstrip", + "latitude_deg": "18.884767", + "longitude_deg": "121.257048", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAG", + "municipality": "Aparri", + "scheduled_service": "no", + "keywords": "Mabag" + }, + { + "id": "325946", + "ident": "PH-0072", + "type": "closed", + "name": "Camalaniugan Airport", + "latitude_deg": "18.301036", + "longitude_deg": "121.664958", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAG", + "municipality": "Catotoran", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines#Military_airfields", + "keywords": "Camalaniugan, Catotoran" + }, + { + "id": "325947", + "ident": "PH-0073", + "type": "medium_airport", + "name": "Cagayan North International Airport", + "latitude_deg": "18.182388", + "longitude_deg": "121.745853", + "elevation_ft": "148", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAG", + "municipality": "Lal-lo", + "scheduled_service": "yes", + "gps_code": "RPLH", + "iata_code": "LLC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cagayan_North_International_Airport", + "keywords": "Northern Cagayan, Lal-lo" + }, + { + "id": "325949", + "ident": "PH-0074", + "type": "small_airport", + "name": "Lal-lo Airstrip", + "latitude_deg": "18.129702", + "longitude_deg": "121.686544", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAG", + "municipality": "Lal-lo", + "scheduled_service": "no", + "keywords": "Lal-lo" + }, + { + "id": "325950", + "ident": "PH-0075", + "type": "small_airport", + "name": "Jose Paredes Airbase", + "latitude_deg": "18.402542", + "longitude_deg": "120.666339", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ILN", + "municipality": "Agaga", + "scheduled_service": "no", + "keywords": "Jose Parades, Agaga" + }, + { + "id": "325951", + "ident": "PH-0076", + "type": "closed", + "name": "Divilacan Airstrip", + "latitude_deg": "17.332368", + "longitude_deg": "122.299504", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ISA", + "municipality": "Ilagan", + "scheduled_service": "no", + "keywords": "Divilacan" + }, + { + "id": "325972", + "ident": "PH-0077", + "type": "heliport", + "name": "Clark International Airport South Ramp Heliport", + "latitude_deg": "15.172336", + "longitude_deg": "120.545547", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAM", + "municipality": "Mabalacat", + "scheduled_service": "no", + "home_link": "http://crk.clarkairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clark_International_Airport", + "keywords": "Clark International Airport, South Ramp" + }, + { + "id": "325974", + "ident": "PH-0078", + "type": "heliport", + "name": "Lieutenant Cesar Base Air Base Heliport", + "latitude_deg": "14.981586", + "longitude_deg": "120.49371", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAM", + "municipality": "Floridablanca", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Basa_Air_Base", + "keywords": "Lieutenant Cesar Basa Air Base" + }, + { + "id": "337080", + "ident": "PH-0079", + "type": "heliport", + "name": "PNOC Industrial Park Helipad", + "latitude_deg": "14.49869", + "longitude_deg": "120.602889", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BAN", + "municipality": "Mariveles", + "scheduled_service": "no" + }, + { + "id": "325977", + "ident": "PH-0080", + "type": "heliport", + "name": "207th Tactical Helicopter Squadron Heliport", + "latitude_deg": "14.516384", + "longitude_deg": "121.028631", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no", + "keywords": "207th Tactical Helicopter Squadron" + }, + { + "id": "325979", + "ident": "PH-0081", + "type": "heliport", + "name": "Corregidor South Dock Heliport", + "latitude_deg": "14.384889", + "longitude_deg": "120.58748", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAV", + "municipality": "Cavite (Corregidor)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Corregidor", + "keywords": "Corregidor" + }, + { + "id": "325980", + "ident": "PH-0082", + "type": "heliport", + "name": "Corregidor Parade Ground Heliport", + "latitude_deg": "14.38051", + "longitude_deg": "120.574514", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAV", + "municipality": "Corregidor Island", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Corregidor", + "keywords": "Corregidor" + }, + { + "id": "325981", + "ident": "PH-0083", + "type": "heliport", + "name": "Manila Marriott Hotel Heliport", + "latitude_deg": "14.52032", + "longitude_deg": "121.019152", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasay", + "scheduled_service": "no", + "keywords": "Manila Marriott Hotel" + }, + { + "id": "325985", + "ident": "PH-0084", + "type": "heliport", + "name": "Acoje Mine Helipad", + "latitude_deg": "15.689508", + "longitude_deg": "120.054624", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZMB", + "municipality": "Candelaria", + "scheduled_service": "no", + "keywords": "Acoje Mine, Candalaria" + }, + { + "id": "325986", + "ident": "PH-0085", + "type": "small_airport", + "name": "Alto Airfield", + "latitude_deg": "15.424775", + "longitude_deg": "120.631911", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-TAR", + "municipality": "Tarlac City", + "scheduled_service": "no", + "keywords": "Alto, Tarlac" + }, + { + "id": "325987", + "ident": "PH-0086", + "type": "heliport", + "name": "Alto Airfield Helipad", + "latitude_deg": "15.423048", + "longitude_deg": "120.6344", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-TAR", + "municipality": "Tarlac City", + "scheduled_service": "no", + "keywords": "Alto, Tarlac" + }, + { + "id": "325988", + "ident": "PH-0087", + "type": "small_airport", + "name": "Apuao Grande Island Airstrip", + "latitude_deg": "14.084946", + "longitude_deg": "123.092194", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAN", + "municipality": "Mercedes", + "scheduled_service": "no", + "keywords": "Apuao Grande" + }, + { + "id": "325990", + "ident": "PH-0088", + "type": "closed", + "name": "Barlo Airstrip", + "latitude_deg": "15.993665", + "longitude_deg": "119.921908", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAN", + "municipality": "Barlo", + "scheduled_service": "no", + "keywords": "Barlo" + }, + { + "id": "325991", + "ident": "PH-0089", + "type": "small_airport", + "name": "Manny W Barradas Airstrip", + "latitude_deg": "14.096517", + "longitude_deg": "121.115245", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Tanauan", + "scheduled_service": "no", + "keywords": "Barradas, Tanauan" + }, + { + "id": "325992", + "ident": "PH-0090", + "type": "small_airport", + "name": "Binalonan Airport", + "latitude_deg": "16.052041", + "longitude_deg": "120.582225", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAN", + "municipality": "Binalonan", + "scheduled_service": "no", + "keywords": "Binalonan" + }, + { + "id": "325994", + "ident": "PH-0091", + "type": "small_airport", + "name": "Bundagul Airstrip (Highway Strip)", + "latitude_deg": "15.240879", + "longitude_deg": "120.599016", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAM", + "municipality": "Mabalacat", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines", + "keywords": "Bundagul, Mabalacat" + }, + { + "id": "325995", + "ident": "PH-0092", + "type": "small_airport", + "name": "Cabaluyan Airstrip", + "latitude_deg": "15.689794", + "longitude_deg": "120.330656", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAN", + "municipality": "Mangatarem", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines", + "keywords": "Cabaluyan, Mangatarem" + }, + { + "id": "325996", + "ident": "PH-0093", + "type": "small_airport", + "name": "Calatagan (Hacienda Zobel) Airstrip", + "latitude_deg": "13.843496", + "longitude_deg": "120.633745", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Calatagan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines", + "keywords": "Catalagan, Hacienda Zobel, Hacienda Bigaa" + }, + { + "id": "325997", + "ident": "PH-0094", + "type": "heliport", + "name": "Calatagan (Hacienda Zobel) Heliport", + "latitude_deg": "13.848569", + "longitude_deg": "120.635766", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Calatagan", + "scheduled_service": "no", + "keywords": "Calatagan, Hacienda Bigaa, Hacienda Zobel" + }, + { + "id": "325998", + "ident": "PH-0095", + "type": "small_airport", + "name": "Dibagat Airstrip", + "latitude_deg": "18.080335", + "longitude_deg": "121.099768", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-APA", + "municipality": "Kabugao", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines", + "keywords": "Dibagat, Kabugao" + }, + { + "id": "326000", + "ident": "PH-0096", + "type": "small_airport", + "name": "Hermana Mayor Island Airstrip", + "latitude_deg": "15.781981", + "longitude_deg": "119.793205", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZMB", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines", + "keywords": "Hermana Mayor" + }, + { + "id": "326001", + "ident": "PH-0097", + "type": "small_airport", + "name": "Hermana Menor Island Airstrip", + "latitude_deg": "15.735475", + "longitude_deg": "119.82478", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZMB", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines", + "keywords": "Hermana Menor" + }, + { + "id": "326002", + "ident": "PH-0098", + "type": "small_airport", + "name": "Ibonan Airstrip", + "latitude_deg": "15.304634", + "longitude_deg": "121.375591", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AUR", + "municipality": "Dingalan", + "scheduled_service": "no", + "keywords": "Ibonan, Dingalan" + }, + { + "id": "326003", + "ident": "PH-0099", + "type": "small_airport", + "name": "Lepanto Mines Airstrip", + "latitude_deg": "16.870549", + "longitude_deg": "120.779014", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BEN", + "municipality": "Mankayan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines", + "keywords": "Lepanto Mines, Mankayan" + }, + { + "id": "326007", + "ident": "PH-0100", + "type": "small_airport", + "name": "Nampicuan Airstrip", + "latitude_deg": "15.743705", + "longitude_deg": "120.638895", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NUE", + "municipality": "Nampicuan", + "scheduled_service": "no", + "keywords": "Nampicuan" + }, + { + "id": "326008", + "ident": "PH-0101", + "type": "small_airport", + "name": "Cojuangco Airstrip", + "latitude_deg": "15.674114", + "longitude_deg": "120.600357", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-TAR", + "municipality": "Paniqui", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines", + "keywords": "Paniqui" + }, + { + "id": "326009", + "ident": "PH-0102", + "type": "small_airport", + "name": "Pinili Airstrip", + "latitude_deg": "15.762353", + "longitude_deg": "121.03157", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NUE", + "municipality": "San Jose", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines", + "keywords": "Pinili, San Jose, Upper Pampanga River Project" + }, + { + "id": "326010", + "ident": "PH-0103", + "type": "small_airport", + "name": "Poon Coto Airstrip", + "latitude_deg": "15.580845", + "longitude_deg": "120.068271", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZMB", + "municipality": "Masinloc", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines", + "keywords": "Poon Coto, Masinloc" + }, + { + "id": "326011", + "ident": "PH-0104", + "type": "heliport", + "name": "Poon Coto Heliport", + "latitude_deg": "15.562515", + "longitude_deg": "120.097468", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZMB", + "municipality": "Masinloc", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines", + "keywords": "Poon Coto, Masinloc" + }, + { + "id": "326012", + "ident": "PH-0105", + "type": "small_airport", + "name": "Samal (Bataan 2020) Airstrip", + "latitude_deg": "14.770725", + "longitude_deg": "120.506081", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BAN", + "municipality": "Samal", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines", + "keywords": "Samal, Bataan 2020" + }, + { + "id": "326018", + "ident": "PH-0106", + "type": "small_airport", + "name": "Santa Rosa Airstrip", + "latitude_deg": "15.384788", + "longitude_deg": "120.624475", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-TAR", + "municipality": "Concepcion", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines", + "keywords": "Santa Rosa, Concepcion, VOA" + }, + { + "id": "326019", + "ident": "PH-0107", + "type": "small_airport", + "name": "Woodland Airpark", + "latitude_deg": "15.254326", + "longitude_deg": "120.677772", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAM", + "municipality": "Magalang", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines", + "keywords": "Woodland Airpark, Angeles City Flying Club" + }, + { + "id": "326020", + "ident": "PH-0108", + "type": "small_airport", + "name": "Captain Mateo Capinpin Airstrip", + "latitude_deg": "14.53567", + "longitude_deg": "121.364572", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-RIZ", + "municipality": "Tanay", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines#Military_airfields", + "keywords": "Captain Mateo Capinpin" + }, + { + "id": "326021", + "ident": "PH-0109", + "type": "small_airport", + "name": "San Vicente Naval Airstrip", + "latitude_deg": "18.503785", + "longitude_deg": "122.148979", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAG", + "municipality": "Santa Ana", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines#Military_airfields", + "keywords": "San Vicente, Santa Ana" + }, + { + "id": "326024", + "ident": "PH-0110", + "type": "closed", + "name": "Cabanatuan Airstrip (Camp Tinio)", + "latitude_deg": "15.486231", + "longitude_deg": "121.042396", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NUE", + "municipality": "Cabanatuan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines#Military_airfields", + "keywords": "Cabanatuan, Camp Tinio" + }, + { + "id": "326025", + "ident": "PH-0111", + "type": "closed", + "name": "Canlubang Airstrip", + "latitude_deg": "14.22367", + "longitude_deg": "121.09927", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LAG", + "municipality": "Calamba", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines#Military_airfields", + "keywords": "Canlubang, Calamba Airfield" + }, + { + "id": "326026", + "ident": "PH-0112", + "type": "closed", + "name": "Echague Airstrip", + "latitude_deg": "16.701018", + "longitude_deg": "121.650809", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ISA", + "municipality": "Echague", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines#Military_airfields", + "keywords": "Echague" + }, + { + "id": "326027", + "ident": "PH-0113", + "type": "closed", + "name": "Mabalacat East Airfield (Kamikaze East)", + "latitude_deg": "15.240931", + "longitude_deg": "120.575434", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAM", + "municipality": "Mabalacat", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines#Military_airfields", + "keywords": "Mabalacat East, Kamikaze East" + }, + { + "id": "326028", + "ident": "PH-0114", + "type": "closed", + "name": "Mabalacat West Airfield (Kamikaze West)", + "latitude_deg": "15.217266", + "longitude_deg": "120.549277", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAM", + "municipality": "Mabalacat", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines#Military_airfields", + "keywords": "Mabalacat West, Kamikaze West" + }, + { + "id": "326029", + "ident": "PH-0115", + "type": "closed", + "name": "Mangaldan Airfield", + "latitude_deg": "16.061583", + "longitude_deg": "120.397126", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAN", + "municipality": "Mangaldan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mangaldan_Airfield", + "keywords": "Mangaldan" + }, + { + "id": "326032", + "ident": "PH-0116", + "type": "closed", + "name": "Naguilian Airfield", + "latitude_deg": "16.534863", + "longitude_deg": "120.396268", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LUN", + "municipality": "Naguilian", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines#Military_airfields", + "keywords": "Naguilian" + }, + { + "id": "326033", + "ident": "PH-0117", + "type": "heliport", + "name": "Ayala Tower One / Philippine Exchange Plaza Heliport", + "latitude_deg": "14.55664", + "longitude_deg": "121.022483", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Makati, Tower One, Exchange Plaza" + }, + { + "id": "326034", + "ident": "PH-0118", + "type": "heliport", + "name": "Philamlife IT Tower Heliport", + "latitude_deg": "14.557577", + "longitude_deg": "121.021893", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Philamlife Tower, Makati" + }, + { + "id": "326035", + "ident": "PH-0119", + "type": "heliport", + "name": "Enterprise Center Heliport", + "latitude_deg": "14.556181", + "longitude_deg": "121.021222", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Enterprise Center, Makati" + }, + { + "id": "326036", + "ident": "PH-0120", + "type": "heliport", + "name": "BDO Equitable Bank Tower Heliport", + "latitude_deg": "14.558072", + "longitude_deg": "121.023867", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "BDO Equitable Bank Tower, Makati" + }, + { + "id": "326037", + "ident": "PH-0121", + "type": "heliport", + "name": "BPI Computer Systems Corporation Heliport", + "latitude_deg": "14.557999", + "longitude_deg": "121.023429", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "BPI Computer Systems Corporation, Makati" + }, + { + "id": "326038", + "ident": "PH-0122", + "type": "heliport", + "name": "Citibank Tower Heliport", + "latitude_deg": "14.558932", + "longitude_deg": "121.025219", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Citibank Tower, Makati" + }, + { + "id": "326039", + "ident": "PH-0123", + "type": "heliport", + "name": "Gercon Plaza Heliport", + "latitude_deg": "14.559525", + "longitude_deg": "121.026437", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Gercon Plaza, Makati" + }, + { + "id": "326040", + "ident": "PH-0124", + "type": "heliport", + "name": "Tiffany Place Heliport", + "latitude_deg": "14.55995", + "longitude_deg": "121.025176", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Tiffany Place, Makati" + }, + { + "id": "326041", + "ident": "PH-0125", + "type": "heliport", + "name": "Eurovilla III Heliport", + "latitude_deg": "14.559841", + "longitude_deg": "121.024752", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Eurovilla III, Makati" + }, + { + "id": "326042", + "ident": "PH-0126", + "type": "heliport", + "name": "Four Seasons Heliport", + "latitude_deg": "14.560433", + "longitude_deg": "121.023097", + "elevation_ft": "639", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Four Season, Makati" + }, + { + "id": "326044", + "ident": "PH-0127", + "type": "heliport", + "name": "West Gate Plaza Heliport", + "latitude_deg": "14.561191", + "longitude_deg": "121.023148", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "West Gate Plaza, Makati" + }, + { + "id": "326045", + "ident": "PH-0128", + "type": "heliport", + "name": "Parklane Condominiums Heliport", + "latitude_deg": "14.561279", + "longitude_deg": "121.023572", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Parklane Condominiums, Makati" + }, + { + "id": "326046", + "ident": "PH-0129", + "type": "heliport", + "name": "Petron Mega Plaza Heliport", + "latitude_deg": "14.561658", + "longitude_deg": "121.025691", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Church of Jesus Christ of Latter Day Saints, Makati" + }, + { + "id": "326047", + "ident": "PH-0130", + "type": "heliport", + "name": "BPI Buendia Center Heliport", + "latitude_deg": "14.561497", + "longitude_deg": "121.026426", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "BPI Buendia Center, Makati" + }, + { + "id": "326048", + "ident": "PH-0131", + "type": "heliport", + "name": "Development Bank of the Philippines Heliport", + "latitude_deg": "14.560899", + "longitude_deg": "121.027962", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Deveopment Bank of the Philippines, Makati" + }, + { + "id": "326049", + "ident": "PH-0132", + "type": "heliport", + "name": "Pacific Star Building Heliport", + "latitude_deg": "14.561082", + "longitude_deg": "121.02685", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Pacific Star. Makati" + }, + { + "id": "326050", + "ident": "PH-0133", + "type": "heliport", + "name": "PBCom Tower Heliport", + "latitude_deg": "14.558531", + "longitude_deg": "121.019352", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "PC Com, Makati" + }, + { + "id": "326051", + "ident": "PH-0134", + "type": "heliport", + "name": "Export Bank Plaza Heliport", + "latitude_deg": "14.559421", + "longitude_deg": "121.011615", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Export Bank Plaza, Makati" + }, + { + "id": "326052", + "ident": "PH-0135", + "type": "heliport", + "name": "Megaworld Heliport", + "latitude_deg": "14.56086", + "longitude_deg": "121.014886", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Megaworld, Makati" + }, + { + "id": "326054", + "ident": "PH-0136", + "type": "heliport", + "name": "Cocolife Building Heliport", + "latitude_deg": "14.559587", + "longitude_deg": "121.017526", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Cocolife, Makati" + }, + { + "id": "326055", + "ident": "PH-0137", + "type": "heliport", + "name": "Easton Place Heliport", + "latitude_deg": "14.559381", + "longitude_deg": "121.019807", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Easton Place, Makati" + }, + { + "id": "326056", + "ident": "PH-0138", + "type": "heliport", + "name": "Allied Bank Center Heliport", + "latitude_deg": "14.554888", + "longitude_deg": "121.023465", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Allied Bank Center" + }, + { + "id": "326057", + "ident": "PH-0139", + "type": "heliport", + "name": "PLDT Makati Office Heliport", + "latitude_deg": "14.554593", + "longitude_deg": "121.022649", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "PLDT, Makati" + }, + { + "id": "326058", + "ident": "PH-0140", + "type": "heliport", + "name": "Frabella I Condominiums Heliport", + "latitude_deg": "14.555952", + "longitude_deg": "121.01809", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Frabelle I, Makati" + }, + { + "id": "326059", + "ident": "PH-0141", + "type": "heliport", + "name": "Pacific Plaza Condominium Heliport", + "latitude_deg": "14.552307", + "longitude_deg": "121.028132", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Pacific Plaza, Makati" + }, + { + "id": "326060", + "ident": "PH-0142", + "type": "heliport", + "name": "Ritz Tower 2 Heliport", + "latitude_deg": "14.552972", + "longitude_deg": "121.027402", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Ritz Tower. Makati" + }, + { + "id": "326061", + "ident": "PH-0143", + "type": "heliport", + "name": "Ritz Tower 1 Heliport", + "latitude_deg": "14.552671", + "longitude_deg": "121.027751", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Ritz Towers, Makati" + }, + { + "id": "326062", + "ident": "PH-0144", + "type": "heliport", + "name": "Discovery Primea Heliport", + "latitude_deg": "14.553579", + "longitude_deg": "121.026737", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Discovery Primea, Makati" + }, + { + "id": "326063", + "ident": "PH-0145", + "type": "heliport", + "name": "SM Makati Heliport", + "latitude_deg": "14.549129", + "longitude_deg": "121.027349", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "SM Makati, Makati" + }, + { + "id": "326064", + "ident": "PH-0146", + "type": "heliport", + "name": "Asian Development Bank Heliport", + "latitude_deg": "14.588634", + "longitude_deg": "121.058331", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Mandaluyong", + "scheduled_service": "no", + "keywords": "Asian Development Bank, Makati" + }, + { + "id": "326066", + "ident": "PH-0147", + "type": "heliport", + "name": "Ever Gotesco – Commonwealth Heliport", + "latitude_deg": "14.678164", + "longitude_deg": "121.085228", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Quezon City", + "scheduled_service": "no", + "keywords": "Ever Gotesco – Commonwealth, Quezon City" + }, + { + "id": "326067", + "ident": "PH-0148", + "type": "small_airport", + "name": "San Marcellino Airfield", + "latitude_deg": "14.960292", + "longitude_deg": "120.206566", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZMB", + "municipality": "Castillejos", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Marcelino_Airfield", + "keywords": "San Marcellino" + }, + { + "id": "326068", + "ident": "PH-0149", + "type": "heliport", + "name": "Government Arsenal Heliport", + "latitude_deg": "14.507939", + "longitude_deg": "120.586678", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BAN", + "municipality": "Lamao", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Government_Arsenal", + "keywords": "Government Arsenal, Lamao, Limay" + }, + { + "id": "326069", + "ident": "PH-0150", + "type": "seaplane_base", + "name": "Parañaque Seaplane Base", + "latitude_deg": "14.502193", + "longitude_deg": "120.989548", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Parañaque", + "scheduled_service": "no", + "keywords": "Parañaque" + }, + { + "id": "326095", + "ident": "PH-0151", + "type": "heliport", + "name": "Camp Panacan Naval Base Heliport", + "latitude_deg": "7.153619", + "longitude_deg": "125.661696", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAS", + "municipality": "Davao", + "scheduled_service": "no", + "keywords": "Camp Panacan, Davao" + }, + { + "id": "326138", + "ident": "PH-0152", + "type": "heliport", + "name": "Petron Bataan Refinery Helipad", + "latitude_deg": "14.530195", + "longitude_deg": "120.5925895", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BAN", + "municipality": "Limay", + "scheduled_service": "no", + "keywords": "Petron Bataan, Limay" + }, + { + "id": "326139", + "ident": "PH-0153", + "type": "heliport", + "name": "Nasipit Heliport", + "latitude_deg": "8.976852", + "longitude_deg": "125.32937", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AGN", + "municipality": "Nasipit", + "scheduled_service": "no", + "keywords": "Nasipit" + }, + { + "id": "326140", + "ident": "PH-0154", + "type": "closed", + "name": "Nasipit Airfield", + "latitude_deg": "8.986384", + "longitude_deg": "125.337954", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AGN", + "municipality": "Nasipit", + "scheduled_service": "no", + "keywords": "Nasipit" + }, + { + "id": "326143", + "ident": "PH-0155", + "type": "small_airport", + "name": "Findlay Millar Lumber Company Airstrip", + "latitude_deg": "8.109834", + "longitude_deg": "123.882211", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LAN", + "municipality": "Kolambugan", + "scheduled_service": "no", + "keywords": "Baybay, Titunud, Finlay Millar Lumber" + }, + { + "id": "326144", + "ident": "PH-0156", + "type": "small_airport", + "name": "Refugio Airstrip", + "latitude_deg": "10.51524", + "longitude_deg": "123.447104", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NEC", + "municipality": "Calatrava", + "scheduled_service": "no", + "keywords": "Refugio" + }, + { + "id": "326145", + "ident": "PH-0157", + "type": "closed", + "name": "San Carlos Community Airport [under construction]", + "latitude_deg": "10.508784", + "longitude_deg": "123.434358", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NEC", + "municipality": "Punao", + "scheduled_service": "no", + "keywords": "San Carlos, Punao" + }, + { + "id": "326146", + "ident": "PH-0158", + "type": "heliport", + "name": "Wallace Air Force Station Heliport", + "latitude_deg": "16.619129", + "longitude_deg": "120.282753", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LUN", + "municipality": "Poro Point (San Fernando)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines#Military_airfields", + "keywords": "Wallace Air Force Station, Poro Point" + }, + { + "id": "326186", + "ident": "PH-0159", + "type": "heliport", + "name": "Balamban Heliport", + "latitude_deg": "10.470439", + "longitude_deg": "123.69704", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CEB", + "municipality": "Balamban", + "scheduled_service": "no", + "keywords": "Balamban" + }, + { + "id": "326192", + "ident": "PH-0160", + "type": "heliport", + "name": "BDO ATM – Steag Coal Power Plant Villanueva Heliport", + "latitude_deg": "8.565884", + "longitude_deg": "124.762319", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MSR", + "municipality": "Villanueva", + "scheduled_service": "no", + "keywords": "Villaneuva, BDO ATM – Steag" + }, + { + "id": "326200", + "ident": "PH-0161", + "type": "heliport", + "name": "Hqs Naval Forces Western Mindanao Heliport", + "latitude_deg": "6.916144", + "longitude_deg": "122.03874", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZAS", + "municipality": "Calarian (Zamboanga)", + "scheduled_service": "no", + "keywords": "Headquarters Naval Forces Western Mindanao, Calarian, Zamboanga" + }, + { + "id": "326201", + "ident": "PH-0162", + "type": "heliport", + "name": "Edwin Andrews Air Force Base Heliport", + "latitude_deg": "6.924595", + "longitude_deg": "122.065895", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZAS", + "municipality": "Zamboanga", + "scheduled_service": "no", + "wikipedia_link": "http://wikimapia.org/2159949/Edwin-Andrews-Air-Base-Heliport", + "keywords": "Edwin Andrews Air Force Base, Zamboanga" + }, + { + "id": "326269", + "ident": "PH-0163", + "type": "small_airport", + "name": "Isabela Airstrip", + "latitude_deg": "6.688387", + "longitude_deg": "121.947207", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BAS", + "municipality": "Isabela", + "scheduled_service": "no", + "keywords": "Isabela" + }, + { + "id": "326285", + "ident": "PH-0164", + "type": "small_airport", + "name": "Sangi Airstrip", + "latitude_deg": "10.392492", + "longitude_deg": "123.645", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CEB", + "municipality": "Toledo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_the_Philippines#Unclassified_aerodromes", + "keywords": "Sangi, Toledo" + }, + { + "id": "334477", + "ident": "PH-0165", + "type": "seaplane_base", + "name": "Air Juan Seaplane Base", + "latitude_deg": "14.556705", + "longitude_deg": "120.979401", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasay", + "scheduled_service": "yes" + }, + { + "id": "334478", + "ident": "PH-0166", + "type": "heliport", + "name": "SM City Rosario Heliport", + "latitude_deg": "14.40933", + "longitude_deg": "120.85583", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAV", + "municipality": "Rosario", + "scheduled_service": "no" + }, + { + "id": "334813", + "ident": "PH-0167", + "type": "heliport", + "name": "World Trade Exchange Building Helipad", + "latitude_deg": "14.597341", + "longitude_deg": "120.974793", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Manila", + "scheduled_service": "no" + }, + { + "id": "330813", + "ident": "PH-0168", + "type": "closed", + "name": "Porac Airfield", + "latitude_deg": "15.073444", + "longitude_deg": "120.542486", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAM", + "municipality": "Babo Sacan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Porac_Airfield", + "keywords": "Porac, Babo Sacan" + }, + { + "id": "334814", + "ident": "PH-0169", + "type": "heliport", + "name": "Federal Tower Helipad", + "latitude_deg": "14.596645", + "longitude_deg": "120.9743", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Manila", + "scheduled_service": "no" + }, + { + "id": "334883", + "ident": "PH-0170", + "type": "heliport", + "name": "Rizal Tower Helipad", + "latitude_deg": "14.564376", + "longitude_deg": "121.035087", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "334884", + "ident": "PH-0171", + "type": "heliport", + "name": "Makati City Hall Helipad", + "latitude_deg": "14.570485", + "longitude_deg": "121.02724", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "335115", + "ident": "PH-0172", + "type": "heliport", + "name": "Chatham House Helipad", + "latitude_deg": "14.559565", + "longitude_deg": "121.019472", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Chatham House, Makati" + }, + { + "id": "335147", + "ident": "PH-0173", + "type": "heliport", + "name": "Bataan 2020 Helipad", + "latitude_deg": "14.768859", + "longitude_deg": "120.504089", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BAN", + "municipality": "Samal", + "scheduled_service": "no" + }, + { + "id": "335148", + "ident": "PH-0174", + "type": "closed", + "name": "Sabang South Bay Domestic Airport", + "latitude_deg": "14.44186", + "longitude_deg": "120.582397", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BAN", + "municipality": "Sabang", + "scheduled_service": "no" + }, + { + "id": "335149", + "ident": "PH-0175", + "type": "heliport", + "name": "Mariveles Power Plant Helipad", + "latitude_deg": "14.42238", + "longitude_deg": "120.53947", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BAN", + "municipality": "Mariveles", + "scheduled_service": "no" + }, + { + "id": "337332", + "ident": "PH-0176", + "type": "small_airport", + "name": "Bicobian Bay Airstrip", + "latitude_deg": "17.34772", + "longitude_deg": "122.36638", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ISA", + "municipality": "Ilagan", + "scheduled_service": "no" + }, + { + "id": "336088", + "ident": "PH-0177", + "type": "closed", + "name": "Batangas Airfield", + "latitude_deg": "13.77203", + "longitude_deg": "121.06114", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Batangas", + "scheduled_service": "no" + }, + { + "id": "336811", + "ident": "PH-0178", + "type": "small_airport", + "name": "PAL Aviation and Omni Runway", + "latitude_deg": "15.172672", + "longitude_deg": "120.564126", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAM", + "municipality": "Mabalacat", + "scheduled_service": "no" + }, + { + "id": "336812", + "ident": "PH-0179", + "type": "heliport", + "name": "Angeles University Medical Center Helipad", + "latitude_deg": "15.144919", + "longitude_deg": "120.594875", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAM", + "municipality": "Angeles", + "scheduled_service": "no" + }, + { + "id": "336814", + "ident": "PH-0180", + "type": "heliport", + "name": "Potipot Island Helipad", + "latitude_deg": "15.678205", + "longitude_deg": "119.92105", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZMB", + "municipality": "Candelaria", + "scheduled_service": "no" + }, + { + "id": "336815", + "ident": "PH-0181", + "type": "heliport", + "name": "Anvaya Cove Heliport", + "latitude_deg": "14.71879", + "longitude_deg": "120.27186", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BAN", + "municipality": "Morong", + "scheduled_service": "no" + }, + { + "id": "336816", + "ident": "PH-0182", + "type": "heliport", + "name": "Hanjin Heavy Industries Corporation Helipad", + "latitude_deg": "14.82267", + "longitude_deg": "120.20847", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZMB", + "municipality": "Subic", + "scheduled_service": "no" + }, + { + "id": "336817", + "ident": "PH-0183", + "type": "closed", + "name": "Long Beach Airstrip", + "latitude_deg": "14.69119", + "longitude_deg": "120.26668", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BAN", + "municipality": "Morong", + "scheduled_service": "no" + }, + { + "id": "336818", + "ident": "PH-0184", + "type": "closed", + "name": "Bataan Field", + "latitude_deg": "14.45046", + "longitude_deg": "120.57002", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BAN", + "municipality": "Mariveles", + "scheduled_service": "no" + }, + { + "id": "336819", + "ident": "PH-0185", + "type": "heliport", + "name": "PhilComSat Heliport", + "latitude_deg": "14.58549", + "longitude_deg": "121.29397", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-RIZ", + "municipality": "Tanay", + "scheduled_service": "no" + }, + { + "id": "336820", + "ident": "PH-0186", + "type": "closed", + "name": "Ernajos Strip", + "latitude_deg": "15.99894", + "longitude_deg": "120.79146", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAN", + "municipality": "Tayug", + "scheduled_service": "no" + }, + { + "id": "336821", + "ident": "PH-0187", + "type": "closed", + "name": "Carranglan Airstrip", + "latitude_deg": "15.980973", + "longitude_deg": "121.040325", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NUE", + "municipality": "Carranglan", + "scheduled_service": "no" + }, + { + "id": "337334", + "ident": "PH-0188", + "type": "small_airport", + "name": "Salolwan Airstrip", + "latitude_deg": "17.27165", + "longitude_deg": "122.42886", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ISA", + "municipality": "Ilagan", + "scheduled_service": "no" + }, + { + "id": "337346", + "ident": "PH-0189", + "type": "closed", + "name": "Catanauan Airstrip", + "latitude_deg": "13.58833", + "longitude_deg": "122.27916", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-QUE", + "municipality": "Catanauan", + "scheduled_service": "no" + }, + { + "id": "337347", + "ident": "PH-0190", + "type": "closed", + "name": "Buenavista Airfield", + "latitude_deg": "8.94222", + "longitude_deg": "125.39722", + "elevation_ft": "53", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AGN", + "municipality": "Buenavista", + "scheduled_service": "no", + "keywords": "RPWV" + }, + { + "id": "337348", + "ident": "PH-0191", + "type": "closed", + "name": "Magallanes Airstrip", + "latitude_deg": "9.04416", + "longitude_deg": "125.52527", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AGN", + "municipality": "Magallanes", + "scheduled_service": "no" + }, + { + "id": "337349", + "ident": "PH-0192", + "type": "small_airport", + "name": "Doña Flavia Airstrip", + "latitude_deg": "8.46837", + "longitude_deg": "125.71063", + "elevation_ft": "184", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AGS", + "municipality": "San Luis", + "scheduled_service": "no" + }, + { + "id": "337350", + "ident": "PH-0193", + "type": "small_airport", + "name": "Kasapa Airstrip", + "latitude_deg": "8.1654", + "longitude_deg": "125.6345", + "elevation_ft": "577", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AGS", + "municipality": "Loreto", + "scheduled_service": "no" + }, + { + "id": "337351", + "ident": "PH-0194", + "type": "closed", + "name": "Laminga Airstrip", + "latitude_deg": "8.28597", + "longitude_deg": "125.7504", + "elevation_ft": "95", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AGS", + "municipality": "La Paz", + "scheduled_service": "no" + }, + { + "id": "337352", + "ident": "PH-0195", + "type": "closed", + "name": "Santa Josefa (Aurora) Airstrip", + "latitude_deg": "8.02226", + "longitude_deg": "126.01582", + "elevation_ft": "115", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AGS", + "municipality": "Santa Josefa", + "scheduled_service": "no" + }, + { + "id": "337353", + "ident": "PH-0196", + "type": "small_airport", + "name": "Waloe Airstrip", + "latitude_deg": "8.21712", + "longitude_deg": "125.78382", + "elevation_ft": "220", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AGS", + "municipality": "Loreto", + "scheduled_service": "no" + }, + { + "id": "337354", + "ident": "PH-0197", + "type": "small_airport", + "name": "Guianga Airstrip", + "latitude_deg": "7.09551", + "longitude_deg": "125.39023", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAS", + "municipality": "Davao", + "scheduled_service": "no", + "local_code": "2402" + }, + { + "id": "337355", + "ident": "PH-0198", + "type": "small_airport", + "name": "Consuelo Airstrip 1", + "latitude_deg": "7.64333", + "longitude_deg": "126.09444", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-COM", + "municipality": "New Bataan", + "scheduled_service": "no" + }, + { + "id": "337356", + "ident": "PH-0199", + "type": "small_airport", + "name": "Consuelo Airstrip 2", + "latitude_deg": "7.63333", + "longitude_deg": "126.08861", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-COM", + "municipality": "New Bataan", + "scheduled_service": "no" + }, + { + "id": "337357", + "ident": "PH-0200", + "type": "closed", + "name": "Cogonan Airstrip", + "latitude_deg": "7.58916", + "longitude_deg": "126.11055", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-COM", + "municipality": "New Bataan", + "scheduled_service": "no" + }, + { + "id": "337358", + "ident": "PH-0201", + "type": "small_airport", + "name": "Dizon Airstrip", + "latitude_deg": "7.48762", + "longitude_deg": "125.93749", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-COM", + "municipality": "Mawab", + "scheduled_service": "no" + }, + { + "id": "337359", + "ident": "PH-0202", + "type": "small_airport", + "name": "Mampising (LADECO-Maryland) Airstrip", + "latitude_deg": "7.26207", + "longitude_deg": "125.84254", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-COM", + "municipality": "Mabini", + "scheduled_service": "no" + }, + { + "id": "337360", + "ident": "PH-0203", + "type": "small_airport", + "name": "Mapawa Airstrip", + "latitude_deg": "7.30726", + "longitude_deg": "126.1468", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-COM", + "municipality": "Maragusan", + "scheduled_service": "no" + }, + { + "id": "337361", + "ident": "PH-0204", + "type": "small_airport", + "name": "Mawab Airstrip", + "latitude_deg": "7.5323", + "longitude_deg": "125.94423", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-COM", + "municipality": "Mawab", + "scheduled_service": "no" + }, + { + "id": "337362", + "ident": "PH-0205", + "type": "small_airport", + "name": "Neda Airstrip", + "latitude_deg": "7.73958", + "longitude_deg": "126.07511", + "elevation_ft": "223", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-COM", + "municipality": "Monkayo", + "scheduled_service": "no" + }, + { + "id": "337363", + "ident": "PH-0206", + "type": "small_airport", + "name": "Tagum Airport / Pangi (Rico Vista) Airstrip", + "latitude_deg": "7.44834", + "longitude_deg": "125.84134", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-COM", + "municipality": "Maco", + "scheduled_service": "no" + }, + { + "id": "337365", + "ident": "PH-0207", + "type": "small_airport", + "name": "Tibagon Airstrip", + "latitude_deg": "7.24833", + "longitude_deg": "125.84361", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-COM", + "municipality": "Pantukan", + "scheduled_service": "no" + }, + { + "id": "337366", + "ident": "PH-0208", + "type": "seaplane_base", + "name": "Air Juan Boracay Seaplane Terminal", + "latitude_deg": "11.97444", + "longitude_deg": "121.91277", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AKL", + "municipality": "Malay", + "scheduled_service": "no" + }, + { + "id": "337651", + "ident": "PH-0209", + "type": "closed", + "name": "Nielson Field", + "latitude_deg": "14.55677", + "longitude_deg": "121.02116", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "337652", + "ident": "PH-0210", + "type": "closed", + "name": "Dewey Boulevard Airstrip", + "latitude_deg": "14.5775", + "longitude_deg": "120.9786", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Manila", + "scheduled_service": "no" + }, + { + "id": "337653", + "ident": "PH-0211", + "type": "closed", + "name": "Zablan Airfield", + "latitude_deg": "14.60182", + "longitude_deg": "121.06895", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Quezon City", + "scheduled_service": "no" + }, + { + "id": "337654", + "ident": "PH-0212", + "type": "heliport", + "name": "Medical City Helipad", + "latitude_deg": "14.589721", + "longitude_deg": "121.069081", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no" + }, + { + "id": "337655", + "ident": "PH-0213", + "type": "closed", + "name": "Mandaluyong East Airfield", + "latitude_deg": "14.58301", + "longitude_deg": "121.05606", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Mandaluyong", + "scheduled_service": "no" + }, + { + "id": "337681", + "ident": "PH-0214", + "type": "seaplane_base", + "name": "Air Juan Puerto Galera Seaplane Base", + "latitude_deg": "13.50946", + "longitude_deg": "120.94719", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MDR", + "municipality": "Puerto Galera", + "scheduled_service": "no" + }, + { + "id": "337683", + "ident": "PH-0215", + "type": "closed", + "name": "Angeles West Airfield", + "latitude_deg": "15.13013", + "longitude_deg": "120.56456", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAM", + "municipality": "Angeles", + "scheduled_service": "no" + }, + { + "id": "337688", + "ident": "PH-0216", + "type": "closed", + "name": "Balara Airfield", + "latitude_deg": "14.66194", + "longitude_deg": "121.06533", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Quezon City", + "scheduled_service": "no" + }, + { + "id": "337708", + "ident": "PH-0217", + "type": "closed", + "name": "Marikina Airfield", + "latitude_deg": "14.62989", + "longitude_deg": "121.09805", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Marikina", + "scheduled_service": "no" + }, + { + "id": "337715", + "ident": "PH-0218", + "type": "heliport", + "name": "Philippine National Bank Angono Branch Helipad", + "latitude_deg": "14.52375", + "longitude_deg": "121.15293", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-RIZ", + "municipality": "Angono", + "scheduled_service": "no" + }, + { + "id": "337716", + "ident": "PH-0219", + "type": "heliport", + "name": "SM Center Angono Helipad", + "latitude_deg": "14.53054", + "longitude_deg": "121.15461", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-RIZ", + "municipality": "Angono", + "scheduled_service": "no" + }, + { + "id": "337757", + "ident": "PH-0220", + "type": "heliport", + "name": "SM City Batangas Heliport", + "latitude_deg": "13.75616", + "longitude_deg": "121.06816", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Batangas", + "scheduled_service": "no" + }, + { + "id": "337758", + "ident": "PH-0221", + "type": "closed", + "name": "Puting Kahoy Airstrip", + "latitude_deg": "13.9819", + "longitude_deg": "120.64512", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Lian", + "scheduled_service": "no" + }, + { + "id": "337759", + "ident": "PH-0222", + "type": "closed", + "name": "Nasugbu Airfield", + "latitude_deg": "14.080887", + "longitude_deg": "120.629411", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Nasugbu", + "scheduled_service": "no" + }, + { + "id": "337760", + "ident": "PH-0223", + "type": "heliport", + "name": "SM City Lipa Heliport", + "latitude_deg": "13.95503", + "longitude_deg": "121.16209", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Lipa", + "scheduled_service": "no" + }, + { + "id": "337761", + "ident": "PH-0224", + "type": "heliport", + "name": "SM City San Pablo Heliport", + "latitude_deg": "14.07168", + "longitude_deg": "121.30267", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LAG", + "municipality": "San Pablo", + "scheduled_service": "no" + }, + { + "id": "337762", + "ident": "PH-0225", + "type": "heliport", + "name": "DOST-PCAARRD Heliport", + "latitude_deg": "14.17417", + "longitude_deg": "121.22434", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LAG", + "municipality": "Los Baños", + "scheduled_service": "no" + }, + { + "id": "337801", + "ident": "PH-0226", + "type": "heliport", + "name": "SM City Calamba Heliport", + "latitude_deg": "14.20305", + "longitude_deg": "121.15567", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LAG", + "municipality": "Calamba", + "scheduled_service": "no" + }, + { + "id": "337802", + "ident": "PH-0227", + "type": "heliport", + "name": "Fastech Helipad", + "latitude_deg": "14.23451", + "longitude_deg": "121.09219", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LAG", + "municipality": "Cabuyao", + "scheduled_service": "no" + }, + { + "id": "337803", + "ident": "PH-0228", + "type": "heliport", + "name": "Santa Rosa Helipad", + "latitude_deg": "14.23919", + "longitude_deg": "121.05557", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LAG", + "municipality": "Santa Rosa", + "scheduled_service": "no" + }, + { + "id": "337804", + "ident": "PH-0229", + "type": "heliport", + "name": "SM City Lucena Heliport", + "latitude_deg": "13.94041", + "longitude_deg": "121.62575", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-QUE", + "municipality": "Lucena", + "scheduled_service": "no" + }, + { + "id": "337805", + "ident": "PH-0230", + "type": "heliport", + "name": "SM City Rosales Heliport", + "latitude_deg": "15.87993", + "longitude_deg": "120.60296", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAN", + "municipality": "Rosales", + "scheduled_service": "no" + }, + { + "id": "337806", + "ident": "PH-0231", + "type": "closed", + "name": "Cuyapo Airstrip", + "latitude_deg": "15.81936", + "longitude_deg": "120.68967", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NUE", + "municipality": "Cuyapo", + "scheduled_service": "no" + }, + { + "id": "337807", + "ident": "PH-0232", + "type": "small_airport", + "name": "Bitulok Airstrip", + "latitude_deg": "15.48505", + "longitude_deg": "121.28535", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NUE", + "municipality": "Bugnan", + "scheduled_service": "no" + }, + { + "id": "337808", + "ident": "PH-0233", + "type": "heliport", + "name": "SM City Cabanatuan Heliport", + "latitude_deg": "15.46759", + "longitude_deg": "120.95495", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NUE", + "municipality": "Cabanatuan", + "scheduled_service": "no" + }, + { + "id": "337809", + "ident": "PH-0234", + "type": "heliport", + "name": "SM City Taytay Heliport", + "latitude_deg": "14.5658", + "longitude_deg": "121.14108", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-RIZ", + "municipality": "Taytay", + "scheduled_service": "no" + }, + { + "id": "337810", + "ident": "PH-0235", + "type": "heliport", + "name": "SM City Clark Heliport", + "latitude_deg": "15.16888", + "longitude_deg": "120.57958", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAM", + "municipality": "Angeles", + "scheduled_service": "no" + }, + { + "id": "337811", + "ident": "PH-0236", + "type": "heliport", + "name": "SM City Urdaneta Heliport", + "latitude_deg": "15.97104", + "longitude_deg": "120.57302", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAN", + "municipality": "Urdaneta", + "scheduled_service": "no" + }, + { + "id": "337812", + "ident": "PH-0237", + "type": "heliport", + "name": "SM CIty Tarlac Heliport", + "latitude_deg": "15.47707", + "longitude_deg": "120.59405", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-TAR", + "municipality": "Tarlac", + "scheduled_service": "no" + }, + { + "id": "337813", + "ident": "PH-0238", + "type": "heliport", + "name": "Camp Aquino Heliport", + "latitude_deg": "15.44187", + "longitude_deg": "120.59201", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-TAR", + "municipality": "Tarlac", + "scheduled_service": "no" + }, + { + "id": "337814", + "ident": "PH-0239", + "type": "closed", + "name": "San Manuel Airstrip", + "latitude_deg": "15.49289", + "longitude_deg": "120.64399", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-TAR", + "municipality": "Tarlac", + "scheduled_service": "no" + }, + { + "id": "337815", + "ident": "PH-0240", + "type": "closed", + "name": "Lichuaco Airfield", + "latitude_deg": "16.00975", + "longitude_deg": "120.78816", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAN", + "municipality": "Tayug", + "scheduled_service": "no" + }, + { + "id": "337816", + "ident": "PH-0241", + "type": "heliport", + "name": "San Roque Dam Heliport", + "latitude_deg": "16.12728", + "longitude_deg": "120.68041", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAN", + "municipality": "San Manuel", + "scheduled_service": "no" + }, + { + "id": "337817", + "ident": "PH-0242", + "type": "heliport", + "name": "Camp John Hay Forest Lodge Helipad", + "latitude_deg": "16.40193", + "longitude_deg": "120.61779", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BEN", + "municipality": "Baguio", + "scheduled_service": "no" + }, + { + "id": "337818", + "ident": "PH-0243", + "type": "heliport", + "name": "Camp John Hay White House Helipad", + "latitude_deg": "16.40271", + "longitude_deg": "120.61718", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BEN", + "municipality": "Baguio", + "scheduled_service": "no" + }, + { + "id": "337819", + "ident": "PH-0244", + "type": "heliport", + "name": "Camp John Hay Country Estates Helipad", + "latitude_deg": "16.40269", + "longitude_deg": "120.61818", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BEN", + "municipality": "Baguio", + "scheduled_service": "no" + }, + { + "id": "337820", + "ident": "PH-0245", + "type": "heliport", + "name": "Monde Nissin Helipad", + "latitude_deg": "14.290169", + "longitude_deg": "121.101404", + "elevation_ft": "115", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LAG", + "municipality": "Santa Rosa", + "scheduled_service": "no" + }, + { + "id": "337823", + "ident": "PH-0246", + "type": "closed", + "name": "Luna Airfield", + "latitude_deg": "16.86567", + "longitude_deg": "120.38389", + "elevation_ft": "4", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LUN", + "municipality": "Luna", + "scheduled_service": "no" + }, + { + "id": "337825", + "ident": "PH-0247", + "type": "small_airport", + "name": "Calayan Airport", + "latitude_deg": "19.25719", + "longitude_deg": "121.48897", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAG", + "municipality": "Calayan", + "scheduled_service": "no" + }, + { + "id": "337841", + "ident": "PH-0248", + "type": "closed", + "name": "North Avenue / Quezon City Airfield", + "latitude_deg": "14.649465", + "longitude_deg": "121.034027", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Quezon City", + "scheduled_service": "no" + }, + { + "id": "337842", + "ident": "PH-0249", + "type": "heliport", + "name": "SM City San Lazaro Heliport", + "latitude_deg": "14.61892", + "longitude_deg": "120.98656", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Manila", + "scheduled_service": "no" + }, + { + "id": "337843", + "ident": "PH-0250", + "type": "heliport", + "name": "Winford Manila Heliport", + "latitude_deg": "14.617638", + "longitude_deg": "120.987668", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Manila", + "scheduled_service": "no" + }, + { + "id": "337844", + "ident": "PH-0251", + "type": "small_airport", + "name": "General Emilio Aguinaldo Airstrip", + "latitude_deg": "12.81818", + "longitude_deg": "120.88265", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MDC", + "municipality": "Sablayan", + "scheduled_service": "no" + }, + { + "id": "337845", + "ident": "PH-0252", + "type": "closed", + "name": "Cagsiay Airstrip", + "latitude_deg": "14.2226", + "longitude_deg": "121.74419", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-QUE", + "municipality": "Mauban", + "scheduled_service": "no" + }, + { + "id": "337846", + "ident": "PH-0253", + "type": "closed", + "name": "Balayan (Magabe) Airfield", + "latitude_deg": "13.95161", + "longitude_deg": "120.73582", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Balayan", + "scheduled_service": "no" + }, + { + "id": "337847", + "ident": "PH-0254", + "type": "heliport", + "name": "Coral Shores Heliport", + "latitude_deg": "13.78265", + "longitude_deg": "120.65162", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Calatagan", + "scheduled_service": "no" + }, + { + "id": "337848", + "ident": "PH-0255", + "type": "closed", + "name": "Orani Airfield", + "latitude_deg": "14.78495", + "longitude_deg": "120.48194", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BAN", + "municipality": "Orani", + "scheduled_service": "no" + }, + { + "id": "337849", + "ident": "PH-0256", + "type": "closed", + "name": "Pilar Airfield", + "latitude_deg": "14.66134", + "longitude_deg": "120.54809", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BAN", + "municipality": "Pilar", + "scheduled_service": "no" + }, + { + "id": "337850", + "ident": "PH-0257", + "type": "heliport", + "name": "Caballo Island Naval Heliport", + "latitude_deg": "14.36905", + "longitude_deg": "120.62231", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAV", + "municipality": "Cavite (Caballo Island)", + "scheduled_service": "no" + }, + { + "id": "337945", + "ident": "PH-0258", + "type": "heliport", + "name": "Taal Lake Yacht Club Heliport", + "latitude_deg": "14.088359", + "longitude_deg": "121.00624", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Talisay", + "scheduled_service": "no" + }, + { + "id": "337946", + "ident": "PH-0259", + "type": "heliport", + "name": "Royale Tagaytay Helipad", + "latitude_deg": "14.07723", + "longitude_deg": "120.86375", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAV", + "municipality": "Tagaytay", + "scheduled_service": "no" + }, + { + "id": "338216", + "ident": "PH-0260", + "type": "small_airport", + "name": "Delta Airstrip", + "latitude_deg": "7.63948", + "longitude_deg": "125.69154", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAV", + "municipality": "Kapalong", + "scheduled_service": "no" + }, + { + "id": "338217", + "ident": "PH-0261", + "type": "small_airport", + "name": "Mabantao Airstrip", + "latitude_deg": "7.62172", + "longitude_deg": "125.72918", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAV", + "municipality": "Kapalong", + "scheduled_service": "no" + }, + { + "id": "338218", + "ident": "PH-0262", + "type": "small_airport", + "name": "Sampao Airstrip", + "latitude_deg": "7.60421", + "longitude_deg": "125.65461", + "elevation_ft": "115", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAV", + "municipality": "Kapalong", + "scheduled_service": "no" + }, + { + "id": "338284", + "ident": "PH-0263", + "type": "heliport", + "name": "One E-Com Center Helipad", + "latitude_deg": "14.537586", + "longitude_deg": "120.981547", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasay", + "scheduled_service": "no" + }, + { + "id": "338286", + "ident": "PH-0264", + "type": "heliport", + "name": "SM Mall of Asia North Wing Helipad", + "latitude_deg": "14.53674", + "longitude_deg": "120.981671", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasay", + "scheduled_service": "no" + }, + { + "id": "338287", + "ident": "PH-0265", + "type": "heliport", + "name": "SM Mall of Asia South Wing Helipad", + "latitude_deg": "14.533598", + "longitude_deg": "120.98181", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasay", + "scheduled_service": "no" + }, + { + "id": "338288", + "ident": "PH-0266", + "type": "heliport", + "name": "GSIS Complex Helipad", + "latitude_deg": "14.546694", + "longitude_deg": "120.984036", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasay", + "scheduled_service": "no" + }, + { + "id": "338289", + "ident": "PH-0267", + "type": "heliport", + "name": "Philippine National Bank Financial Complex Heliport", + "latitude_deg": "14.548667", + "longitude_deg": "120.988382", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasay", + "scheduled_service": "no" + }, + { + "id": "338291", + "ident": "PH-0268", + "type": "heliport", + "name": "Malacañang Park Heliport", + "latitude_deg": "14.59365", + "longitude_deg": "120.99712", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Manila", + "scheduled_service": "no" + }, + { + "id": "338321", + "ident": "PH-0269", + "type": "heliport", + "name": "SM City Pampanga Heliport", + "latitude_deg": "15.053802", + "longitude_deg": "120.697947", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAM", + "municipality": "San Fernando", + "scheduled_service": "no" + }, + { + "id": "338458", + "ident": "PH-0270", + "type": "small_airport", + "name": "Lamitan Airstrip", + "latitude_deg": "6.07693", + "longitude_deg": "125.70159", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DVO", + "municipality": "Don Marcelino", + "scheduled_service": "no" + }, + { + "id": "339274", + "ident": "PH-0271", + "type": "heliport", + "name": "SM City Dasmariñas Helipad", + "latitude_deg": "14.30099", + "longitude_deg": "120.95786", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAV", + "municipality": "Dasmariñas", + "scheduled_service": "no" + }, + { + "id": "339275", + "ident": "PH-0272", + "type": "heliport", + "name": "SM Center Las Piñas Helipad", + "latitude_deg": "14.44886", + "longitude_deg": "120.9803", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Las Piñas", + "scheduled_service": "no" + }, + { + "id": "339276", + "ident": "PH-0273", + "type": "heliport", + "name": "Gapuzan Trucking Inc Helipad", + "latitude_deg": "14.44834", + "longitude_deg": "120.97913", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Las Piñas", + "scheduled_service": "no" + }, + { + "id": "339279", + "ident": "PH-0274", + "type": "heliport", + "name": "SM City Trece Martires Heliport", + "latitude_deg": "14.28166", + "longitude_deg": "120.86522", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAV", + "municipality": "Trece Martires", + "scheduled_service": "no" + }, + { + "id": "339280", + "ident": "PH-0275", + "type": "heliport", + "name": "SM City Bicutan Heliport", + "latitude_deg": "14.48567", + "longitude_deg": "121.04317", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Parañaque", + "scheduled_service": "no" + }, + { + "id": "339281", + "ident": "PH-0276", + "type": "heliport", + "name": "SM City Bacoor Heliport", + "latitude_deg": "14.44391", + "longitude_deg": "120.95059", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAV", + "municipality": "Bacoor", + "scheduled_service": "no" + }, + { + "id": "339282", + "ident": "PH-0277", + "type": "heliport", + "name": "SM City BF Parañaque Heliport", + "latitude_deg": "14.45775", + "longitude_deg": "121.03283", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Parañaque", + "scheduled_service": "no" + }, + { + "id": "339283", + "ident": "PH-0278", + "type": "heliport", + "name": "SM City Baliwag Heliport", + "latitude_deg": "14.96088", + "longitude_deg": "120.8897", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BUL", + "municipality": "Baliuag", + "scheduled_service": "no" + }, + { + "id": "339284", + "ident": "PH-0279", + "type": "heliport", + "name": "SM City East Ortigas Heliport", + "latitude_deg": "14.58763", + "longitude_deg": "121.10485", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no" + }, + { + "id": "339285", + "ident": "PH-0280", + "type": "heliport", + "name": "SM City Fairview Heliport", + "latitude_deg": "14.7337", + "longitude_deg": "121.05984", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Quezon City", + "scheduled_service": "no" + }, + { + "id": "339287", + "ident": "PH-0281", + "type": "heliport", + "name": "SM Center Sangandaan Heliport", + "latitude_deg": "14.65845", + "longitude_deg": "120.97225", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Caloocan", + "scheduled_service": "no" + }, + { + "id": "339288", + "ident": "PH-0282", + "type": "heliport", + "name": "SM City Iloilo Heliport", + "latitude_deg": "10.71545", + "longitude_deg": "122.55074", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ILI", + "municipality": "Iloilo", + "scheduled_service": "no" + }, + { + "id": "339289", + "ident": "PH-0283", + "type": "closed", + "name": "Iloilo/Mandurriao Airport", + "latitude_deg": "10.71271", + "longitude_deg": "122.54524", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ILI", + "municipality": "Iloilo", + "scheduled_service": "no" + }, + { + "id": "339290", + "ident": "PH-0284", + "type": "heliport", + "name": "SM City Legazpi Heliport", + "latitude_deg": "13.14401", + "longitude_deg": "123.74542", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ALB", + "municipality": "Legazpi", + "scheduled_service": "no" + }, + { + "id": "339291", + "ident": "PH-0285", + "type": "heliport", + "name": "SM City San Jose del Monte Heliport", + "latitude_deg": "14.7864", + "longitude_deg": "121.07561", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BUL", + "municipality": "San Jose del Monte", + "scheduled_service": "no" + }, + { + "id": "339292", + "ident": "PH-0286", + "type": "heliport", + "name": "SM City Marilao Heliport", + "latitude_deg": "14.75486", + "longitude_deg": "120.95565", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BUL", + "municipality": "Marilao", + "scheduled_service": "no" + }, + { + "id": "339293", + "ident": "PH-0287", + "type": "heliport", + "name": "SM City Masinag Heliport", + "latitude_deg": "14.62639", + "longitude_deg": "121.12022", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-RIZ", + "municipality": "Antipolo", + "scheduled_service": "no" + }, + { + "id": "339294", + "ident": "PH-0288", + "type": "heliport", + "name": "SM City Molino Heliport", + "latitude_deg": "14.38439", + "longitude_deg": "120.97659", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAV", + "municipality": "Bacoor", + "scheduled_service": "no" + }, + { + "id": "339295", + "ident": "PH-0289", + "type": "heliport", + "name": "SM City Marikina Heliport", + "latitude_deg": "14.6269", + "longitude_deg": "121.08473", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Marikina", + "scheduled_service": "no" + }, + { + "id": "339297", + "ident": "PH-0290", + "type": "heliport", + "name": "SM City North EDSA Heliport", + "latitude_deg": "14.65691", + "longitude_deg": "121.03289", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Quezon City", + "scheduled_service": "no" + }, + { + "id": "339298", + "ident": "PH-0291", + "type": "heliport", + "name": "SM City Olongapo Central", + "latitude_deg": "14.8357", + "longitude_deg": "120.28278", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZMB", + "municipality": "Olongapo", + "scheduled_service": "no" + }, + { + "id": "339299", + "ident": "PH-0292", + "type": "heliport", + "name": "SM Center Pulilan Heliport", + "latitude_deg": "14.89958", + "longitude_deg": "120.86933", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BUL", + "municipality": "Pulilan", + "scheduled_service": "no" + }, + { + "id": "339300", + "ident": "PH-0293", + "type": "heliport", + "name": "SM City Santa Mesa Heliport", + "latitude_deg": "14.603327", + "longitude_deg": "121.019265", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Quezon City", + "scheduled_service": "no" + }, + { + "id": "339301", + "ident": "PH-0294", + "type": "heliport", + "name": "SM City Novaliches Heliport", + "latitude_deg": "14.70875", + "longitude_deg": "121.03654", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Quezon City", + "scheduled_service": "no" + }, + { + "id": "339302", + "ident": "PH-0295", + "type": "heliport", + "name": "SM City Sucat Heliport", + "latitude_deg": "14.48348", + "longitude_deg": "120.99399", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Parañaque", + "scheduled_service": "no" + }, + { + "id": "339303", + "ident": "PH-0296", + "type": "heliport", + "name": "SM City San Mateo Heliport", + "latitude_deg": "14.67935", + "longitude_deg": "121.1149", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-RIZ", + "municipality": "San Mateo", + "scheduled_service": "no" + }, + { + "id": "339304", + "ident": "PH-0297", + "type": "heliport", + "name": "SM City Santa Rosa Heliport", + "latitude_deg": "14.31313", + "longitude_deg": "121.09803", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LAG", + "municipality": "Santa Rosa", + "scheduled_service": "no" + }, + { + "id": "339306", + "ident": "PH-0298", + "type": "heliport", + "name": "SM Center Tuguegarao Downtown Heliport", + "latitude_deg": "17.61256", + "longitude_deg": "121.72316", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAG", + "municipality": "Tuguegarao", + "scheduled_service": "no" + }, + { + "id": "339307", + "ident": "PH-0299", + "type": "heliport", + "name": "SM Center Lemery Heliport", + "latitude_deg": "13.88736", + "longitude_deg": "120.91208", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Lemery", + "scheduled_service": "no" + }, + { + "id": "339308", + "ident": "PH-0300", + "type": "heliport", + "name": "SM Center Muntinlupa Heliport", + "latitude_deg": "14.37756", + "longitude_deg": "121.04519", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Muntinlupa", + "scheduled_service": "no" + }, + { + "id": "339309", + "ident": "PH-0301", + "type": "heliport", + "name": "SM Center Ormoc Heliport", + "latitude_deg": "11.0116", + "longitude_deg": "124.60801", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LEY", + "municipality": "Ormoc", + "scheduled_service": "no" + }, + { + "id": "339310", + "ident": "PH-0302", + "type": "heliport", + "name": "SM Center Valenzuela Heliport", + "latitude_deg": "14.68599", + "longitude_deg": "120.97702", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Valenzuela", + "scheduled_service": "no" + }, + { + "id": "339311", + "ident": "PH-0303", + "type": "heliport", + "name": "Hamilo Coast Helipad", + "latitude_deg": "14.18891", + "longitude_deg": "120.61506", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Nasugbu", + "scheduled_service": "no" + }, + { + "id": "339312", + "ident": "PH-0304", + "type": "heliport", + "name": "Sem-Calaca Helipad", + "latitude_deg": "13.92731", + "longitude_deg": "120.78719", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Calaca", + "scheduled_service": "no" + }, + { + "id": "339313", + "ident": "PH-0305", + "type": "heliport", + "name": "Camella Lipa Helipad", + "latitude_deg": "13.95959", + "longitude_deg": "121.15171", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Lipa", + "scheduled_service": "no" + }, + { + "id": "339314", + "ident": "PH-0306", + "type": "heliport", + "name": "Metrobank Plaza Heliport", + "latitude_deg": "14.560184", + "longitude_deg": "121.028861", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "339315", + "ident": "PH-0307", + "type": "heliport", + "name": "The Peninsula Heliport", + "latitude_deg": "14.555495", + "longitude_deg": "121.025128", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "339316", + "ident": "PH-0308", + "type": "heliport", + "name": "One Roxas Triangle Tower Heliport", + "latitude_deg": "14.559498", + "longitude_deg": "121.028867", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "339317", + "ident": "PH-0309", + "type": "heliport", + "name": "Two Roxas Triangle Tower Heliport", + "latitude_deg": "14.559893", + "longitude_deg": "121.028084", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "339318", + "ident": "PH-0310", + "type": "heliport", + "name": "Trafalgar Plaza Heliport", + "latitude_deg": "14.560812", + "longitude_deg": "121.026308", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "339319", + "ident": "PH-0311", + "type": "heliport", + "name": "Salcedo Park Twin Towers North Heliport", + "latitude_deg": "14.561829", + "longitude_deg": "121.024291", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "339320", + "ident": "PH-0312", + "type": "heliport", + "name": "Salcedo Park Twin Towers South Heliport", + "latitude_deg": "14.56159", + "longitude_deg": "121.02449", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "339321", + "ident": "PH-0313", + "type": "heliport", + "name": "Classica Tower Heliport", + "latitude_deg": "14.561269", + "longitude_deg": "121.023808", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "339322", + "ident": "PH-0314", + "type": "heliport", + "name": "Grand Soho Makati Heliport", + "latitude_deg": "14.561679", + "longitude_deg": "121.023154", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "339323", + "ident": "PH-0315", + "type": "heliport", + "name": "ACT Tower Heliport", + "latitude_deg": "14.561731", + "longitude_deg": "121.02266", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "339324", + "ident": "PH-0316", + "type": "heliport", + "name": "World Centre Heliport", + "latitude_deg": "14.561518", + "longitude_deg": "121.02148", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "340072", + "ident": "PH-0317", + "type": "heliport", + "name": "Camp Crame Heliport", + "latitude_deg": "14.60811", + "longitude_deg": "121.05508", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Quezon City", + "scheduled_service": "no" + }, + { + "id": "340073", + "ident": "PH-0318", + "type": "heliport", + "name": "Aurora Tower Helipad", + "latitude_deg": "14.62278", + "longitude_deg": "121.05357", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Quezon City", + "scheduled_service": "no" + }, + { + "id": "341180", + "ident": "PH-0319", + "type": "closed", + "name": "Angeles Airfield", + "latitude_deg": "15.12128", + "longitude_deg": "120.59572", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAM", + "municipality": "Angeles", + "scheduled_service": "no" + }, + { + "id": "341181", + "ident": "PH-0320", + "type": "closed", + "name": "Angeles Northeast Airfield", + "latitude_deg": "15.15326", + "longitude_deg": "120.60049", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAM", + "municipality": "Angeles", + "scheduled_service": "no" + }, + { + "id": "341182", + "ident": "PH-0321", + "type": "closed", + "name": "Grace Park / Manila North Airfield", + "latitude_deg": "14.65135", + "longitude_deg": "120.99138", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Caloocan", + "scheduled_service": "no" + }, + { + "id": "341187", + "ident": "PH-0322", + "type": "heliport", + "name": "Naval Station Jose Francisco Heliport", + "latitude_deg": "14.529907", + "longitude_deg": "121.028253", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Taguig", + "scheduled_service": "no" + }, + { + "id": "341192", + "ident": "PH-0323", + "type": "heliport", + "name": "United States Embassy Heliport", + "latitude_deg": "14.57617", + "longitude_deg": "120.97736", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Manila", + "scheduled_service": "no" + }, + { + "id": "341369", + "ident": "PH-0324", + "type": "heliport", + "name": "SM Southmall Helipad", + "latitude_deg": "14.431635", + "longitude_deg": "121.011659", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Las Piñas", + "scheduled_service": "no" + }, + { + "id": "341398", + "ident": "PH-0325", + "type": "heliport", + "name": "Fairways Tower Helipad", + "latitude_deg": "14.54604", + "longitude_deg": "121.04527", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Taguig", + "scheduled_service": "no" + }, + { + "id": "341534", + "ident": "PH-0326", + "type": "heliport", + "name": "James Steelworks Heliport", + "latitude_deg": "14.53525", + "longitude_deg": "121.36838", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-RIZ", + "municipality": "Tanay", + "scheduled_service": "no" + }, + { + "id": "341535", + "ident": "PH-0327", + "type": "heliport", + "name": "Cavite Naval Hospital Heliport", + "latitude_deg": "14.483498", + "longitude_deg": "120.913526", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAV", + "municipality": "Cavite", + "scheduled_service": "no" + }, + { + "id": "341536", + "ident": "PH-0328", + "type": "heliport", + "name": "Maritime Safety Services Command Heliport", + "latitude_deg": "14.495423", + "longitude_deg": "120.912314", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAV", + "municipality": "Cavite", + "scheduled_service": "no" + }, + { + "id": "341538", + "ident": "PH-0329", + "type": "heliport", + "name": "Island Cove Heliport", + "latitude_deg": "14.46306", + "longitude_deg": "120.92336", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAV", + "municipality": "Kawit", + "scheduled_service": "no" + }, + { + "id": "341579", + "ident": "PH-0330", + "type": "heliport", + "name": "Belvedere Tower Helipad", + "latitude_deg": "14.57963", + "longitude_deg": "121.05879", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no" + }, + { + "id": "341580", + "ident": "PH-0331", + "type": "heliport", + "name": "Pacific Center Building Helipad", + "latitude_deg": "14.58125", + "longitude_deg": "121.06005", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no" + }, + { + "id": "341581", + "ident": "PH-0332", + "type": "heliport", + "name": "Octagon Center Helipad", + "latitude_deg": "14.58212", + "longitude_deg": "121.06034", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no" + }, + { + "id": "341582", + "ident": "PH-0333", + "type": "heliport", + "name": "San Miguel Property Centre Building Helipad", + "latitude_deg": "14.58173", + "longitude_deg": "121.05821", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Mandaluyong", + "scheduled_service": "no" + }, + { + "id": "341583", + "ident": "PH-0334", + "type": "heliport", + "name": "Robinsons Equitable Tower Helipad", + "latitude_deg": "14.58965", + "longitude_deg": "121.05995", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no" + }, + { + "id": "341584", + "ident": "PH-0335", + "type": "heliport", + "name": "AIC Burgundy Empire Tower Helipad", + "latitude_deg": "14.58969", + "longitude_deg": "121.06098", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no" + }, + { + "id": "341585", + "ident": "PH-0336", + "type": "heliport", + "name": "Crowne Plaza Manila Galleria Helipad", + "latitude_deg": "14.59077", + "longitude_deg": "121.06096", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Quezon City", + "scheduled_service": "no" + }, + { + "id": "341586", + "ident": "PH-0337", + "type": "closed", + "name": "Parc Royale Building Helipad", + "latitude_deg": "14.58401", + "longitude_deg": "121.06191", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no" + }, + { + "id": "341587", + "ident": "PH-0338", + "type": "heliport", + "name": "Antel Global Business Center Helipad", + "latitude_deg": "14.58398", + "longitude_deg": "121.06289", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no" + }, + { + "id": "341588", + "ident": "PH-0339", + "type": "heliport", + "name": "Avant Garde Residences Helipad", + "latitude_deg": "14.58359", + "longitude_deg": "121.06325", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no" + }, + { + "id": "341589", + "ident": "PH-0340", + "type": "heliport", + "name": "Prestige Tower Helipad", + "latitude_deg": "14.586006", + "longitude_deg": "121.061937", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no" + }, + { + "id": "341590", + "ident": "PH-0341", + "type": "heliport", + "name": "Raffles Building Helipad", + "latitude_deg": "14.58625", + "longitude_deg": "121.062064", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no" + }, + { + "id": "341591", + "ident": "PH-0342", + "type": "heliport", + "name": "Holiday Inn Galleria Manila Helipad", + "latitude_deg": "14.59002", + "longitude_deg": "121.06019", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no" + }, + { + "id": "341592", + "ident": "PH-0343", + "type": "heliport", + "name": "Caswynn Building Helipad", + "latitude_deg": "14.63256", + "longitude_deg": "121.0439", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Quezon City", + "scheduled_service": "no" + }, + { + "id": "341593", + "ident": "PH-0344", + "type": "heliport", + "name": "GMA Network Tower Helipad", + "latitude_deg": "14.6334", + "longitude_deg": "121.04391", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Quezon City", + "scheduled_service": "no" + }, + { + "id": "341594", + "ident": "PH-0345", + "type": "heliport", + "name": "Eton Centris Heliport", + "latitude_deg": "14.64118", + "longitude_deg": "121.04029", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Quezon City", + "scheduled_service": "no" + }, + { + "id": "341595", + "ident": "PH-0346", + "type": "heliport", + "name": "Eton Heliport", + "latitude_deg": "14.64213", + "longitude_deg": "121.04137", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Quezon City", + "scheduled_service": "no" + }, + { + "id": "341596", + "ident": "PH-0347", + "type": "heliport", + "name": "National Office Building Helipad", + "latitude_deg": "14.64248", + "longitude_deg": "121.0432", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Quezon City", + "scheduled_service": "no" + }, + { + "id": "341597", + "ident": "PH-0348", + "type": "heliport", + "name": "DILG-NAPOLCOM Center Helipad", + "latitude_deg": "14.64463", + "longitude_deg": "121.03669", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Quezon City", + "scheduled_service": "no" + }, + { + "id": "342106", + "ident": "PH-0349", + "type": "closed", + "name": "New Manila International Airport (under construction)", + "latitude_deg": "14.7374", + "longitude_deg": "120.8754", + "elevation_ft": "18", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BUL", + "municipality": "Manila (Taliptip)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Manila_International_Airport", + "keywords": "Bulacan International Airport" + }, + { + "id": "342182", + "ident": "PH-0350", + "type": "small_airport", + "name": "Farmington Airstrip", + "latitude_deg": "7.46943", + "longitude_deg": "125.63599", + "elevation_ft": "69", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAV", + "municipality": "Braulio E Dujali", + "scheduled_service": "no" + }, + { + "id": "342183", + "ident": "PH-0351", + "type": "small_airport", + "name": "TADECO Santo Tomas Airstrip", + "latitude_deg": "7.43677", + "longitude_deg": "125.5999", + "elevation_ft": "108", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAV", + "municipality": "Santo Tomas", + "scheduled_service": "no" + }, + { + "id": "342184", + "ident": "PH-0352", + "type": "small_airport", + "name": "MEPI Aerodrome", + "latitude_deg": "7.51213", + "longitude_deg": "125.64206", + "elevation_ft": "89", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAV", + "municipality": "Santo Tomas", + "scheduled_service": "no" + }, + { + "id": "342185", + "ident": "PH-0353", + "type": "small_airport", + "name": "A O Floirendo Airstrip", + "latitude_deg": "7.38908", + "longitude_deg": "125.57206", + "elevation_ft": "118", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAV", + "municipality": "Carmen", + "scheduled_service": "no" + }, + { + "id": "342186", + "ident": "PH-0354", + "type": "small_airport", + "name": "Dapco Airstrip", + "latitude_deg": "7.380145", + "longitude_deg": "125.58743", + "elevation_ft": "75", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAV", + "municipality": "Carmen", + "scheduled_service": "no" + }, + { + "id": "342187", + "ident": "PH-0355", + "type": "small_airport", + "name": "Evergreen Farms Airstrip", + "latitude_deg": "7.30567", + "longitude_deg": "125.65782", + "elevation_ft": "58", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAV", + "municipality": "Panabo", + "scheduled_service": "no" + }, + { + "id": "342188", + "ident": "PH-0356", + "type": "small_airport", + "name": "Kasilak Airstrip", + "latitude_deg": "7.3335", + "longitude_deg": "125.5971", + "elevation_ft": "108", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAV", + "municipality": "Panabo", + "scheduled_service": "no" + }, + { + "id": "342189", + "ident": "PH-0357", + "type": "small_airport", + "name": "Madaum Airstrip", + "latitude_deg": "7.38628", + "longitude_deg": "125.82884", + "elevation_ft": "47", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAV", + "municipality": "Tagum", + "scheduled_service": "no", + "keywords": "Hijo Airstrip" + }, + { + "id": "342190", + "ident": "PH-0358", + "type": "small_airport", + "name": "New Sambog Airstrip", + "latitude_deg": "7.60964", + "longitude_deg": "125.80363", + "elevation_ft": "81", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAV", + "municipality": "New Corella", + "scheduled_service": "no" + }, + { + "id": "342564", + "ident": "PH-0359", + "type": "heliport", + "name": "Alpha Saucedo Condominium Helipad", + "latitude_deg": "14.5611", + "longitude_deg": "121.02267", + "elevation_ft": "518", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "343240", + "ident": "PH-0360", + "type": "heliport", + "name": "RCBC Plaza Yuchengco Tower Heliport", + "latitude_deg": "14.56085", + "longitude_deg": "121.01608", + "elevation_ft": "735", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "343583", + "ident": "PH-0361", + "type": "heliport", + "name": "ABS-CBN Building Helipad", + "latitude_deg": "14.63962", + "longitude_deg": "121.03531", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Quezon City", + "scheduled_service": "no" + }, + { + "id": "343727", + "ident": "PH-0362", + "type": "heliport", + "name": "Orchard Helipad", + "latitude_deg": "14.35451", + "longitude_deg": "120.95928", + "elevation_ft": "203", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAV", + "municipality": "Dasmariñas", + "scheduled_service": "no" + }, + { + "id": "343728", + "ident": "PH-0363", + "type": "heliport", + "name": "Camp Bagong Diwa Heliport", + "latitude_deg": "14.48844", + "longitude_deg": "121.05724", + "elevation_ft": "100", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Taguig", + "scheduled_service": "no" + }, + { + "id": "343729", + "ident": "PH-0364", + "type": "heliport", + "name": "Fort Victoria Tower A Helipad", + "latitude_deg": "14.54727", + "longitude_deg": "121.04572", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Taguig", + "scheduled_service": "no" + }, + { + "id": "343730", + "ident": "PH-0365", + "type": "heliport", + "name": "Fort Victoria Tower B Helipad", + "latitude_deg": "14.54695", + "longitude_deg": "121.04552", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Taguig", + "scheduled_service": "no" + }, + { + "id": "343731", + "ident": "PH-0366", + "type": "heliport", + "name": "Fort Victoria Tower C Helipad", + "latitude_deg": "14.54686", + "longitude_deg": "121.04591", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Taguig", + "scheduled_service": "no" + }, + { + "id": "343732", + "ident": "PH-0367", + "type": "heliport", + "name": "Pacific Plaza Towers South Helipad", + "latitude_deg": "14.54746", + "longitude_deg": "121.04501", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Taguig", + "scheduled_service": "no" + }, + { + "id": "343733", + "ident": "PH-0368", + "type": "heliport", + "name": "Pacific Plaza Towers North Helipad", + "latitude_deg": "14.54807", + "longitude_deg": "121.04514", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Taguig", + "scheduled_service": "no" + }, + { + "id": "343734", + "ident": "PH-0369", + "type": "heliport", + "name": "One McKinley Place Helipad", + "latitude_deg": "14.54936", + "longitude_deg": "121.04526", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Taguig", + "scheduled_service": "no" + }, + { + "id": "343735", + "ident": "PH-0370", + "type": "heliport", + "name": "Net One Center Helipad", + "latitude_deg": "14.5497", + "longitude_deg": "121.04549", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Taguig", + "scheduled_service": "no" + }, + { + "id": "343736", + "ident": "PH-0371", + "type": "heliport", + "name": "Picadilly Star Building Helipad", + "latitude_deg": "14.54994", + "longitude_deg": "121.04601", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Taguig", + "scheduled_service": "no" + }, + { + "id": "343737", + "ident": "PH-0372", + "type": "heliport", + "name": "Eight Forbestown Road Helipad", + "latitude_deg": "14.55059", + "longitude_deg": "121.04393", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Taguig", + "scheduled_service": "no" + }, + { + "id": "343738", + "ident": "PH-0373", + "type": "heliport", + "name": "Fort Legend Tower Helipad", + "latitude_deg": "14.5541", + "longitude_deg": "121.04693", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Taguig", + "scheduled_service": "no" + }, + { + "id": "343739", + "ident": "PH-0374", + "type": "heliport", + "name": "Globe Tower Helipad", + "latitude_deg": "14.55344", + "longitude_deg": "121.05003", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Taguig", + "scheduled_service": "no" + }, + { + "id": "343740", + "ident": "PH-0375", + "type": "heliport", + "name": "Saint Luke's Medical Center Bonifacio Global City Heliport", + "latitude_deg": "14.55507", + "longitude_deg": "121.04797", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Taguig", + "scheduled_service": "no" + }, + { + "id": "343741", + "ident": "PH-0376", + "type": "heliport", + "name": "SM Aura Office Tower Helipad", + "latitude_deg": "14.54533", + "longitude_deg": "121.05322", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Taguig", + "scheduled_service": "no" + }, + { + "id": "343742", + "ident": "PH-0377", + "type": "heliport", + "name": "Regent Parkway Condominium Helipad", + "latitude_deg": "14.54426", + "longitude_deg": "121.04628", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Taguig", + "scheduled_service": "no" + }, + { + "id": "343743", + "ident": "PH-0378", + "type": "heliport", + "name": "Essensa 1 Helipad", + "latitude_deg": "14.54381", + "longitude_deg": "121.04649", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Taguig", + "scheduled_service": "no", + "keywords": "Comeron Tower" + }, + { + "id": "343744", + "ident": "PH-0379", + "type": "heliport", + "name": "Del Rosario Law Building Helipad", + "latitude_deg": "14.54355", + "longitude_deg": "121.04729", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Taguig", + "scheduled_service": "no" + }, + { + "id": "343745", + "ident": "PH-0380", + "type": "heliport", + "name": "Essensa 2 Helipad", + "latitude_deg": "14.54294", + "longitude_deg": "121.04682", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Taguig", + "scheduled_service": "no" + }, + { + "id": "343747", + "ident": "PH-0381", + "type": "heliport", + "name": "Solar Century Tower Helipad", + "latitude_deg": "14.56096", + "longitude_deg": "121.0199", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "343748", + "ident": "PH-0382", + "type": "heliport", + "name": "Splendido Gardens Helipad", + "latitude_deg": "14.56076", + "longitude_deg": "121.01939", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "343749", + "ident": "PH-0383", + "type": "heliport", + "name": "Antel Platinum Towers Helipad", + "latitude_deg": "14.55915", + "longitude_deg": "121.02405", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "343750", + "ident": "PH-0384", + "type": "heliport", + "name": "Forbes Tower West Helipad", + "latitude_deg": "14.55968", + "longitude_deg": "121.02547", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "343751", + "ident": "PH-0385", + "type": "heliport", + "name": "Liberty Center Helipad", + "latitude_deg": "14.56059", + "longitude_deg": "121.02559", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "343752", + "ident": "PH-0386", + "type": "heliport", + "name": "Malolos Sport & Convention Center Helipad", + "latitude_deg": "14.86108", + "longitude_deg": "120.8092", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BUL", + "municipality": "Malolos", + "scheduled_service": "no" + }, + { + "id": "343753", + "ident": "PH-0387", + "type": "closed", + "name": "Thousand Islands International Airport (under construction)", + "latitude_deg": "16.14357", + "longitude_deg": "120.03444", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAN", + "municipality": "Alaminos", + "scheduled_service": "no" + }, + { + "id": "343754", + "ident": "PH-0388", + "type": "heliport", + "name": "Sagada Heliport", + "latitude_deg": "17.08053", + "longitude_deg": "120.90142", + "elevation_ft": "4915", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MOU", + "municipality": "Sagada", + "scheduled_service": "no" + }, + { + "id": "343772", + "ident": "PH-0389", + "type": "heliport", + "name": "Baliuag Heliport", + "latitude_deg": "14.96542", + "longitude_deg": "120.8948", + "elevation_ft": "59", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BUL", + "municipality": "Baliuag", + "scheduled_service": "no" + }, + { + "id": "343846", + "ident": "PH-0390", + "type": "small_airport", + "name": "Bamban Airfield", + "latitude_deg": "15.30142", + "longitude_deg": "120.58954", + "elevation_ft": "187", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-TAR", + "municipality": "Bamban", + "scheduled_service": "no" + }, + { + "id": "343847", + "ident": "PH-0391", + "type": "closed", + "name": "Angeles South (Lara) Airfield", + "latitude_deg": "15.08077", + "longitude_deg": "120.60094", + "elevation_ft": "190", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAM", + "municipality": "Bacolor", + "scheduled_service": "no" + }, + { + "id": "343865", + "ident": "PH-0392", + "type": "closed", + "name": "Zablan Auxiliary Airfield", + "latitude_deg": "14.59795", + "longitude_deg": "121.08115", + "elevation_ft": "59", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Quezon City", + "scheduled_service": "no" + }, + { + "id": "343866", + "ident": "PH-0393", + "type": "closed", + "name": "Pasig Airfield", + "latitude_deg": "14.58477", + "longitude_deg": "121.10098", + "elevation_ft": "39", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Pasig", + "scheduled_service": "no" + }, + { + "id": "343907", + "ident": "PH-0394", + "type": "closed", + "name": "Kawit Airfield", + "latitude_deg": "14.41484", + "longitude_deg": "120.90789", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAV", + "municipality": "Kawit", + "scheduled_service": "no" + }, + { + "id": "344152", + "ident": "PH-0395", + "type": "heliport", + "name": "Camp O'Donnell Officer Candidate School Heliport", + "latitude_deg": "15.36891", + "longitude_deg": "120.50915", + "elevation_ft": "374", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-TAR", + "municipality": "Capas", + "scheduled_service": "no" + }, + { + "id": "344153", + "ident": "PH-0396", + "type": "heliport", + "name": "Camp O'Donnell Armor School Heliport", + "latitude_deg": "15.37752", + "longitude_deg": "120.50944", + "elevation_ft": "377", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-TAR", + "municipality": "Capas", + "scheduled_service": "no" + }, + { + "id": "344183", + "ident": "PH-0397", + "type": "heliport", + "name": "Vernida IV Heliport", + "latitude_deg": "14.55915", + "longitude_deg": "121.02199", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "344465", + "ident": "PH-0398", + "type": "heliport", + "name": "BPI-Philam Life Makati Helipad", + "latitude_deg": "14.55976", + "longitude_deg": "121.0173", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no", + "keywords": "Ayala Life FGU Center Helipad" + }, + { + "id": "344466", + "ident": "PH-0399", + "type": "heliport", + "name": "GT Tower Helipad", + "latitude_deg": "14.56006", + "longitude_deg": "121.01691", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "344467", + "ident": "PH-0400", + "type": "heliport", + "name": "LKG Tower Helipad", + "latitude_deg": "14.55933", + "longitude_deg": "121.01793", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "344468", + "ident": "PH-0401", + "type": "heliport", + "name": "Cityland Herrera Tower Helipad", + "latitude_deg": "14.55899", + "longitude_deg": "121.01964", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "344469", + "ident": "PH-0402", + "type": "heliport", + "name": "Robinsons Summit Center Helipad", + "latitude_deg": "14.55763", + "longitude_deg": "121.02051", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "344470", + "ident": "PH-0403", + "type": "heliport", + "name": "Makati Medical Center Heliport", + "latitude_deg": "14.55899", + "longitude_deg": "121.01519", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "344967", + "ident": "PH-0404", + "type": "heliport", + "name": "Rufino Pacific Tower Helipad", + "latitude_deg": "14.55811", + "longitude_deg": "121.01819", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "344968", + "ident": "PH-0405", + "type": "heliport", + "name": "Lepanto Building Helipad", + "latitude_deg": "14.5581", + "longitude_deg": "121.02409", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "344970", + "ident": "PH-0406", + "type": "heliport", + "name": "L V Locsin Building Helipad", + "latitude_deg": "14.55448", + "longitude_deg": "121.02384", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Makati", + "scheduled_service": "no" + }, + { + "id": "345014", + "ident": "PH-0407", + "type": "closed", + "name": "Limay (Bataan) Airfield", + "latitude_deg": "14.52591", + "longitude_deg": "120.5997", + "elevation_ft": "121", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BAN", + "municipality": "Limay", + "scheduled_service": "no" + }, + { + "id": "345015", + "ident": "PH-0408", + "type": "closed", + "name": "Cabcaben Airfield", + "latitude_deg": "14.45437", + "longitude_deg": "120.59218", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BAN", + "municipality": "Mariveles", + "scheduled_service": "no" + }, + { + "id": "345016", + "ident": "PH-0409", + "type": "closed", + "name": "Mariveles Airfield", + "latitude_deg": "14.43502", + "longitude_deg": "120.47821", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BAN", + "municipality": "Mariveles", + "scheduled_service": "no" + }, + { + "id": "345017", + "ident": "PH-0410", + "type": "closed", + "name": "Akle Airfield", + "latitude_deg": "15.04659", + "longitude_deg": "121.07582", + "elevation_ft": "285", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BUL", + "municipality": "San Ildefonso", + "scheduled_service": "no" + }, + { + "id": "345018", + "ident": "PH-0411", + "type": "closed", + "name": "Minuyan Airstrip", + "latitude_deg": "14.86775", + "longitude_deg": "121.07024", + "elevation_ft": "420", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BUL", + "municipality": "Norzagaray", + "scheduled_service": "no" + }, + { + "id": "345371", + "ident": "PH-0412", + "type": "heliport", + "name": "San Fernando Tower Helipad", + "latitude_deg": "14.59891", + "longitude_deg": "120.97339", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Manila", + "scheduled_service": "no" + }, + { + "id": "345372", + "ident": "PH-0413", + "type": "heliport", + "name": "518 Fundidor Street Helipad", + "latitude_deg": "14.60105", + "longitude_deg": "120.97196", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Manila", + "scheduled_service": "no" + }, + { + "id": "346315", + "ident": "PH-0414", + "type": "closed", + "name": "Sagay Airfield", + "latitude_deg": "10.87527", + "longitude_deg": "123.41598", + "elevation_ft": "171", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NEC", + "municipality": "Sagay", + "scheduled_service": "no" + }, + { + "id": "347675", + "ident": "PH-0415", + "type": "closed", + "name": "Lorenville Heliport", + "latitude_deg": "15.47625", + "longitude_deg": "120.97829", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NUE", + "municipality": "Cabanatuan", + "scheduled_service": "no" + }, + { + "id": "348303", + "ident": "PH-0416", + "type": "heliport", + "name": "AES Masinloc Heliport", + "latitude_deg": "15.57493", + "longitude_deg": "119.92365", + "elevation_ft": "71", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZMB", + "municipality": "Masinloc", + "scheduled_service": "no" + }, + { + "id": "348386", + "ident": "PH-0417", + "type": "small_airport", + "name": "Lapanday Tampakan Airport", + "latitude_deg": "6.41195", + "longitude_deg": "124.93417", + "elevation_ft": "522", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SCO", + "municipality": "Tampakan", + "scheduled_service": "no" + }, + { + "id": "348387", + "ident": "PH-0418", + "type": "small_airport", + "name": "Lapanday Guihing Airport", + "latitude_deg": "6.69495", + "longitude_deg": "125.3609", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAS", + "municipality": "Hagonoy", + "scheduled_service": "no" + }, + { + "id": "348388", + "ident": "PH-0419", + "type": "small_airport", + "name": "Kling Airport", + "latitude_deg": "5.93761", + "longitude_deg": "124.74409", + "elevation_ft": "128", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SAR", + "municipality": "Kiamba", + "scheduled_service": "no" + }, + { + "id": "348389", + "ident": "PH-0420", + "type": "small_airport", + "name": "Lapanday Kalaong Airport", + "latitude_deg": "6.08181", + "longitude_deg": "124.466", + "elevation_ft": "59", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SAR", + "municipality": "Maitum", + "scheduled_service": "no" + }, + { + "id": "348390", + "ident": "PH-0421", + "type": "closed", + "name": "Lapanday Mandug Airport", + "latitude_deg": "7.15427", + "longitude_deg": "125.58166", + "elevation_ft": "66", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAS", + "municipality": "Davao", + "scheduled_service": "no" + }, + { + "id": "348392", + "ident": "PH-0422", + "type": "small_airport", + "name": "Milbuk Airport", + "latitude_deg": "6.16047", + "longitude_deg": "124.28041", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SUK", + "municipality": "Palimbang", + "scheduled_service": "no" + }, + { + "id": "348393", + "ident": "PH-0423", + "type": "small_airport", + "name": "MILUDECO Airstrip", + "latitude_deg": "6.01715", + "longitude_deg": "124.58459", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SAR", + "municipality": "Kiamba", + "scheduled_service": "no" + }, + { + "id": "348636", + "ident": "PH-0424", + "type": "small_airport", + "name": "Malangas Airport", + "latitude_deg": "7.65118", + "longitude_deg": "123.01797", + "elevation_ft": "387", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZSI", + "municipality": "Malangas", + "scheduled_service": "no" + }, + { + "id": "348659", + "ident": "PH-0425", + "type": "closed", + "name": "Inandeng Airport", + "latitude_deg": "10.52637", + "longitude_deg": "119.2811", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "municipality": "San Vicente", + "scheduled_service": "no" + }, + { + "id": "348660", + "ident": "PH-0426", + "type": "seaplane_base", + "name": "Lakawon Resort Seaplane Base", + "latitude_deg": "11.03811", + "longitude_deg": "123.2026", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NEC", + "municipality": "Cadiz", + "scheduled_service": "no" + }, + { + "id": "348661", + "ident": "PH-0427", + "type": "closed", + "name": "Lutopan Airstrip", + "latitude_deg": "10.32139", + "longitude_deg": "123.70607", + "elevation_ft": "932", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CEB", + "municipality": "Toledo", + "scheduled_service": "no" + }, + { + "id": "348662", + "ident": "PH-0428", + "type": "small_airport", + "name": "Nabulao Airstrip", + "latitude_deg": "9.664463", + "longitude_deg": "122.535617", + "elevation_ft": "1492", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NER", + "municipality": "Sipalay", + "scheduled_service": "no" + }, + { + "id": "348729", + "ident": "PH-0429", + "type": "small_airport", + "name": "Cordon Airport", + "latitude_deg": "16.65674", + "longitude_deg": "121.43291", + "elevation_ft": "538", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ISA", + "municipality": "Cordon", + "scheduled_service": "no" + }, + { + "id": "349208", + "ident": "PH-0430", + "type": "small_airport", + "name": "Pradera Verde Executive Airpark", + "latitude_deg": "9.90918", + "longitude_deg": "123.59019", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CEB", + "municipality": "Argao", + "scheduled_service": "no" + }, + { + "id": "349209", + "ident": "PH-0431", + "type": "small_airport", + "name": "Casay Airstrip", + "latitude_deg": "9.821379", + "longitude_deg": "123.547936", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CEB", + "municipality": "Dalaguete", + "scheduled_service": "no" + }, + { + "id": "349551", + "ident": "PH-0432", + "type": "small_airport", + "name": "Sagpangan Airport", + "latitude_deg": "9.51026", + "longitude_deg": "118.55405", + "elevation_ft": "187", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "municipality": "Aborlan", + "scheduled_service": "no" + }, + { + "id": "349552", + "ident": "PH-0433", + "type": "small_airport", + "name": "Dacudao Airport", + "latitude_deg": "7.2289", + "longitude_deg": "125.45724", + "elevation_ft": "732", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAS", + "municipality": "Davao", + "scheduled_service": "no" + }, + { + "id": "349553", + "ident": "PH-0434", + "type": "closed", + "name": "Lagao Airport", + "latitude_deg": "6.15473", + "longitude_deg": "125.16027", + "elevation_ft": "308", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SCO", + "municipality": "General Santos", + "scheduled_service": "no" + }, + { + "id": "349554", + "ident": "PH-0435", + "type": "closed", + "name": "Tungao Airport", + "latitude_deg": "8.77305", + "longitude_deg": "125.54638", + "elevation_ft": "413", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AGN", + "municipality": "Butuan", + "scheduled_service": "no" + }, + { + "id": "349555", + "ident": "PH-0436", + "type": "closed", + "name": "Aras-Asan Airport", + "latitude_deg": "8.90532", + "longitude_deg": "126.29881", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SUR", + "municipality": "Cagwait", + "scheduled_service": "no" + }, + { + "id": "349556", + "ident": "PH-0437", + "type": "closed", + "name": "Bad-As Airport", + "latitude_deg": "9.63305", + "longitude_deg": "125.55638", + "elevation_ft": "344", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SUN", + "municipality": "Placer", + "scheduled_service": "no" + }, + { + "id": "349557", + "ident": "PH-0438", + "type": "closed", + "name": "Barobo Airport", + "latitude_deg": "8.53277", + "longitude_deg": "126.06861", + "elevation_ft": "180", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SUR", + "municipality": "Barobo", + "scheduled_service": "no" + }, + { + "id": "349558", + "ident": "PH-0439", + "type": "closed", + "name": "Diatagon Airport", + "latitude_deg": "8.66363", + "longitude_deg": "126.13471", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SUR", + "municipality": "Diatagon", + "scheduled_service": "no" + }, + { + "id": "349559", + "ident": "PH-0440", + "type": "small_airport", + "name": "Lanuza (Carmen) Airport", + "latitude_deg": "9.23083", + "longitude_deg": "125.99777", + "elevation_ft": "43", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SUR", + "municipality": "Carmen", + "scheduled_service": "no" + }, + { + "id": "349560", + "ident": "PH-0441", + "type": "closed", + "name": "PICOP Airport", + "latitude_deg": "8.19521", + "longitude_deg": "126.35975", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SUN", + "municipality": "Bislig", + "scheduled_service": "no" + }, + { + "id": "349561", + "ident": "PH-0442", + "type": "small_airport", + "name": "Tagbina Airport", + "latitude_deg": "8.4775", + "longitude_deg": "126.13388", + "elevation_ft": "115", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SUR", + "municipality": "Tagbina", + "scheduled_service": "no" + }, + { + "id": "349562", + "ident": "PH-0443", + "type": "closed", + "name": "Elmore Airfield", + "latitude_deg": "12.43947", + "longitude_deg": "121.08588", + "elevation_ft": "85", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MDC", + "municipality": "San Jose", + "scheduled_service": "no" + }, + { + "id": "349563", + "ident": "PH-0444", + "type": "closed", + "name": "Hill Airfield", + "latitude_deg": "12.39112", + "longitude_deg": "121.05336", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MDC", + "municipality": "San Jose", + "scheduled_service": "no" + }, + { + "id": "349564", + "ident": "PH-0445", + "type": "closed", + "name": "Murtha Airfield", + "latitude_deg": "12.427", + "longitude_deg": "121.09905", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MDC", + "municipality": "San Jose", + "scheduled_service": "no" + }, + { + "id": "349565", + "ident": "PH-0446", + "type": "small_airport", + "name": "Agutaya Airport", + "latitude_deg": "11.15911", + "longitude_deg": "120.95376", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "municipality": "Agutaya", + "scheduled_service": "no" + }, + { + "id": "349889", + "ident": "PH-0447", + "type": "heliport", + "name": "Veterans Memorial Medical Center Heliport", + "latitude_deg": "14.65752", + "longitude_deg": "121.0413", + "elevation_ft": "148", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Quezon City", + "scheduled_service": "no" + }, + { + "id": "32225", + "ident": "PH-0448", + "type": "closed", + "name": "Former Lucena Airport", + "latitude_deg": "13.931193", + "longitude_deg": "121.6011", + "elevation_ft": "39", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-QUE", + "municipality": "Lucena", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lucena,_Philippines#Transportation", + "keywords": "Lucena" + }, + { + "id": "309720", + "ident": "PH-0449", + "type": "small_airport", + "name": "Aparri (Maura) Airport", + "latitude_deg": "18.35485", + "longitude_deg": "121.653907", + "elevation_ft": "19", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAG", + "municipality": "Aparri", + "scheduled_service": "no", + "keywords": "RPUA" + }, + { + "id": "351505", + "ident": "PH-0450", + "type": "small_airport", + "name": "Malalag Airport", + "latitude_deg": "6.57319", + "longitude_deg": "125.3968", + "elevation_ft": "125", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAS", + "municipality": "Malalag", + "scheduled_service": "no" + }, + { + "id": "351508", + "ident": "PH-0451", + "type": "heliport", + "name": "Sarangani Provincial Capitol Heliport", + "latitude_deg": "6.10057", + "longitude_deg": "125.27113", + "elevation_ft": "52", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SAR", + "municipality": "Alabel", + "scheduled_service": "no" + }, + { + "id": "351509", + "ident": "PH-0452", + "type": "heliport", + "name": "Sultan Kudarat Provincial Capitol Heliport", + "latitude_deg": "6.64504", + "longitude_deg": "124.60924", + "elevation_ft": "203", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SUK", + "municipality": "Isulan", + "scheduled_service": "no" + }, + { + "id": "351510", + "ident": "PH-0453", + "type": "closed", + "name": "Maraymaray Airport", + "latitude_deg": "7.71067", + "longitude_deg": "124.95113", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BUK", + "municipality": "Don Carlos", + "scheduled_service": "no" + }, + { + "id": "351511", + "ident": "PH-0454", + "type": "closed", + "name": "Bukidnon Domestic Airport (under construction)", + "latitude_deg": "7.70649", + "longitude_deg": "124.94924", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BUK", + "municipality": "Don Carlos", + "scheduled_service": "no" + }, + { + "id": "351512", + "ident": "PH-0455", + "type": "small_airport", + "name": "Lurugan Airport", + "latitude_deg": "7.98365", + "longitude_deg": "125.05351", + "elevation_ft": "1713", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BUK", + "municipality": "Valencia City", + "scheduled_service": "no" + }, + { + "id": "351513", + "ident": "PH-0456", + "type": "small_airport", + "name": "Manolo Fortich Airport", + "latitude_deg": "8.34813", + "longitude_deg": "124.85059", + "elevation_ft": "1973", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BUK", + "municipality": "Manolo Fortich", + "scheduled_service": "no", + "keywords": "Camp 3, Del Monte" + }, + { + "id": "351514", + "ident": "PH-0457", + "type": "small_airport", + "name": "La Filipina Airport", + "latitude_deg": "7.47397", + "longitude_deg": "125.78789", + "elevation_ft": "61", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAV", + "municipality": "Tagum City", + "scheduled_service": "no" + }, + { + "id": "351515", + "ident": "PH-0458", + "type": "small_airport", + "name": "Kimamon Airport", + "latitude_deg": "7.54462", + "longitude_deg": "125.69984", + "elevation_ft": "71", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAV", + "municipality": "Santo Tomas", + "scheduled_service": "no" + }, + { + "id": "351516", + "ident": "PH-0459", + "type": "small_airport", + "name": "Kapalong Airport", + "latitude_deg": "7.57119", + "longitude_deg": "125.63414", + "elevation_ft": "185", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAV", + "municipality": "Santo Tomas", + "scheduled_service": "no" + }, + { + "id": "351518", + "ident": "PH-0460", + "type": "small_airport", + "name": "Alip River Development & Export Corporation Airport", + "latitude_deg": "6.75625", + "longitude_deg": "124.85329", + "elevation_ft": "75", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MDS", + "municipality": "Datu Paglas", + "scheduled_service": "no" + }, + { + "id": "351519", + "ident": "PH-0461", + "type": "small_airport", + "name": "Digal Airport", + "latitude_deg": "6.73805", + "longitude_deg": "124.82675", + "elevation_ft": "61", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MDS", + "municipality": "Digal", + "scheduled_service": "no" + }, + { + "id": "351520", + "ident": "PH-0462", + "type": "medium_airport", + "name": "Central Mindanao Airport", + "latitude_deg": "6.91229", + "longitude_deg": "124.92446", + "elevation_ft": "164", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NCO", + "municipality": "M'lang", + "scheduled_service": "no", + "keywords": "M'lang Rural, North Cotabato Rural" + }, + { + "id": "351522", + "ident": "PH-0463", + "type": "small_airport", + "name": "President Quirino Airport", + "latitude_deg": "6.71163", + "longitude_deg": "124.72773", + "elevation_ft": "105", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SUK", + "municipality": "President Quirino", + "scheduled_service": "no" + }, + { + "id": "351523", + "ident": "PH-0464", + "type": "small_airport", + "name": "Lambayong Airport", + "latitude_deg": "6.84746", + "longitude_deg": "124.64463", + "elevation_ft": "52", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SUK", + "municipality": "Lambayong", + "scheduled_service": "no" + }, + { + "id": "351524", + "ident": "PH-0465", + "type": "small_airport", + "name": "Sirawai Airport", + "latitude_deg": "7.58649", + "longitude_deg": "122.15746", + "elevation_ft": "46", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZAN", + "municipality": "Sirawai", + "scheduled_service": "no" + }, + { + "id": "351525", + "ident": "PH-0466", + "type": "heliport", + "name": "Maguindanao del Sur Provincial Capitol Heliport", + "latitude_deg": "6.87051", + "longitude_deg": "124.43664", + "elevation_ft": "119", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MDS", + "municipality": "Shariff Aguak", + "scheduled_service": "no" + }, + { + "id": "351880", + "ident": "PH-0467", + "type": "heliport", + "name": "Masiu Heliport", + "latitude_deg": "7.81806", + "longitude_deg": "124.33271", + "elevation_ft": "2337", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LAS", + "municipality": "Masiu", + "scheduled_service": "no" + }, + { + "id": "351881", + "ident": "PH-0468", + "type": "heliport", + "name": "Boracay Helicopter Adventures Heliport", + "latitude_deg": "11.9947", + "longitude_deg": "121.92152", + "elevation_ft": "101", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AKL", + "municipality": "Malay", + "scheduled_service": "no" + }, + { + "id": "351882", + "ident": "PH-0469", + "type": "heliport", + "name": "GreenHeli Boracay Heliport", + "latitude_deg": "11.95887", + "longitude_deg": "121.93209", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AKL", + "municipality": "Malay", + "scheduled_service": "no" + }, + { + "id": "351883", + "ident": "PH-0470", + "type": "heliport", + "name": "GreenHeli Boracay Heliport", + "latitude_deg": "11.95887", + "longitude_deg": "121.93209", + "elevation_ft": "45", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AKL", + "municipality": "Malay", + "scheduled_service": "no" + }, + { + "id": "351884", + "ident": "PH-0471", + "type": "small_airport", + "name": "Lahuy Airport", + "latitude_deg": "13.91954", + "longitude_deg": "123.81399", + "elevation_ft": "1", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAS", + "municipality": "Caramoan", + "scheduled_service": "no" + }, + { + "id": "351885", + "ident": "PH-0472", + "type": "heliport", + "name": "Tugawe Cove Resort Heliport", + "latitude_deg": "13.71804", + "longitude_deg": "123.97312", + "elevation_ft": "108", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAS", + "municipality": "Caramoan", + "scheduled_service": "no" + }, + { + "id": "351886", + "ident": "PH-0473", + "type": "closed", + "name": "Tinambac Airport", + "latitude_deg": "13.81198", + "longitude_deg": "123.32337", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAS", + "municipality": "Tinambac", + "scheduled_service": "no" + }, + { + "id": "351887", + "ident": "PH-0474", + "type": "closed", + "name": "Mayon Old Heliport", + "latitude_deg": "13.22505", + "longitude_deg": "123.71365", + "elevation_ft": "1463", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ALB", + "municipality": "Legazpi", + "scheduled_service": "no" + }, + { + "id": "351888", + "ident": "PH-0475", + "type": "heliport", + "name": "Mayon Heliport", + "latitude_deg": "13.20405", + "longitude_deg": "123.71107", + "elevation_ft": "873", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ALB", + "municipality": "Legazpi", + "scheduled_service": "no" + }, + { + "id": "351910", + "ident": "PH-0476", + "type": "heliport", + "name": "Chinese General Hospital Heliport", + "latitude_deg": "14.62562", + "longitude_deg": "120.98875", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Manila", + "scheduled_service": "no" + }, + { + "id": "352976", + "ident": "PH-0477", + "type": "heliport", + "name": "Philippine Merchant Marine Academy Heliport", + "latitude_deg": "15.00074", + "longitude_deg": "120.06641", + "elevation_ft": "43", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZMB", + "municipality": "San Narciso", + "scheduled_service": "no" + }, + { + "id": "353427", + "ident": "PH-0478", + "type": "heliport", + "name": "Dahilayan Heliport", + "latitude_deg": "8.21836", + "longitude_deg": "124.85042", + "elevation_ft": "3747", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BUK", + "municipality": "Manolo Fortich", + "scheduled_service": "no" + }, + { + "id": "353614", + "ident": "PH-0479", + "type": "heliport", + "name": "Shangri-La Mactan Island Resort Heliport", + "latitude_deg": "10.305836", + "longitude_deg": "124.020343", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CEB", + "municipality": "Lapu-Lapu City", + "scheduled_service": "no" + }, + { + "id": "353720", + "ident": "PH-0480", + "type": "heliport", + "name": "Isabela Provincial Capitol Heliport", + "latitude_deg": "17.10351", + "longitude_deg": "121.86579", + "elevation_ft": "218", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ISA", + "municipality": "Ilagan", + "scheduled_service": "no" + }, + { + "id": "354407", + "ident": "PH-0481", + "type": "heliport", + "name": "Nanshan Island Helipad", + "latitude_deg": "10.733077", + "longitude_deg": "115.802464", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "municipality": "Lawak Island", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/en:Nanshan%20Island?uselang=en" + }, + { + "id": "354412", + "ident": "PH-0482", + "type": "small_airport", + "name": "Candaraman Island", + "latitude_deg": "8.076386", + "longitude_deg": "117.108078", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "municipality": "Balabac", + "scheduled_service": "no", + "home_link": "https://www.s1expeditions.com/" + }, + { + "id": "354413", + "ident": "PH-0483", + "type": "heliport", + "name": "Candaraman Island Helipad", + "latitude_deg": "8.082791", + "longitude_deg": "117.101292", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "municipality": "Balabac", + "scheduled_service": "no" + }, + { + "id": "354949", + "ident": "PH-0484", + "type": "small_airport", + "name": "Rio Tuba Airport", + "latitude_deg": "8.549497", + "longitude_deg": "117.436259", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "scheduled_service": "no" + }, + { + "id": "354951", + "ident": "PH-0485", + "type": "small_airport", + "name": "Bugsuk (Bonbon) Airport", + "latitude_deg": "8.228346", + "longitude_deg": "117.328627", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "scheduled_service": "no" + }, + { + "id": "355929", + "ident": "PH-0486", + "type": "heliport", + "name": "ABCI Heliport", + "latitude_deg": "8.42827", + "longitude_deg": "124.62498", + "elevation_ft": "354", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MSR", + "municipality": "Cagayan de Oro", + "scheduled_service": "no" + }, + { + "id": "356047", + "ident": "PH-0487", + "type": "heliport", + "name": "Didipio Heliport", + "latitude_deg": "16.321", + "longitude_deg": "121.44424", + "elevation_ft": "2402", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NUV", + "municipality": "Kasibu", + "scheduled_service": "no" + }, + { + "id": "356316", + "ident": "PH-0488", + "type": "small_airport", + "name": "Mountain View College Airport", + "latitude_deg": "7.98796", + "longitude_deg": "125.02664", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BUK", + "municipality": "Valencia", + "scheduled_service": "no" + }, + { + "id": "356408", + "ident": "PH-0489", + "type": "small_airport", + "name": "Batag Airport", + "latitude_deg": "12.61662", + "longitude_deg": "125.05035", + "elevation_ft": "46", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NSA", + "municipality": "Laoang", + "scheduled_service": "no" + }, + { + "id": "430069", + "ident": "PH-0490", + "type": "small_airport", + "name": "Camotes Airstrip", + "latitude_deg": "10.65955", + "longitude_deg": "124.37011", + "elevation_ft": "70", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CEB", + "municipality": "San Francisco", + "scheduled_service": "no" + }, + { + "id": "430070", + "ident": "PH-0491", + "type": "seaplane_base", + "name": "Air Juan Cebu City South Road Properties Seaplane Terminal", + "latitude_deg": "10.26509", + "longitude_deg": "123.87812", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CEB", + "municipality": "Cebu City", + "scheduled_service": "no" + }, + { + "id": "430071", + "ident": "PH-0492", + "type": "small_airport", + "name": "Three Thirty Airstrip", + "latitude_deg": "10.01095", + "longitude_deg": "123.42209", + "elevation_ft": "125", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CEB", + "municipality": "Ronda", + "scheduled_service": "no" + }, + { + "id": "430072", + "ident": "PH-0493", + "type": "balloonport", + "name": "Clark Balloonport", + "latitude_deg": "15.17718", + "longitude_deg": "120.57656", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAM", + "municipality": "Mabalacat", + "scheduled_service": "no" + }, + { + "id": "430581", + "ident": "PH-0494", + "type": "seaplane_base", + "name": "Busuanga Bay Lodge Seaplane Terminal", + "latitude_deg": "12.0231", + "longitude_deg": "119.97753", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "municipality": "Busuanga", + "scheduled_service": "no" + }, + { + "id": "430582", + "ident": "PH-0495", + "type": "seaplane_base", + "name": "Huma Island Resort Seaplane Terminal", + "latitude_deg": "12.05337", + "longitude_deg": "119.90455", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "municipality": "Busuanga", + "scheduled_service": "no" + }, + { + "id": "430583", + "ident": "PH-0496", + "type": "small_airport", + "name": "SUMAPI Airstrip", + "latitude_deg": "12.16148", + "longitude_deg": "119.90921", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "municipality": "Busuanga", + "scheduled_service": "no", + "keywords": "Old Busuanga" + }, + { + "id": "430584", + "ident": "PH-0497", + "type": "small_airport", + "name": "Coron Rural Airport", + "latitude_deg": "12.01289", + "longitude_deg": "120.2007", + "elevation_ft": "69", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "municipality": "Coron", + "scheduled_service": "no" + }, + { + "id": "430596", + "ident": "PH-0498", + "type": "closed", + "name": "Daja Airstrip", + "latitude_deg": "11.56298", + "longitude_deg": "122.30838", + "elevation_ft": "98", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AKL", + "municipality": "Banga", + "scheduled_service": "no" + }, + { + "id": "430597", + "ident": "PH-0499", + "type": "closed", + "name": "Ferrol (Odiongan) Airstrip", + "latitude_deg": "12.34482", + "longitude_deg": "121.93992", + "elevation_ft": "98", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ROM", + "municipality": "Ferrol", + "scheduled_service": "no" + }, + { + "id": "430598", + "ident": "PH-0500", + "type": "seaplane_base", + "name": "Two Seasons Resort Seaplane Terminal", + "latitude_deg": "11.77716", + "longitude_deg": "120.13465", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "municipality": "Coron", + "scheduled_service": "no" + }, + { + "id": "31007", + "ident": "PH-ENI", + "type": "small_airport", + "name": "El Nido Airport", + "latitude_deg": "11.202399", + "longitude_deg": "119.416087", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "municipality": "El Nido", + "scheduled_service": "yes", + "gps_code": "RPEN", + "iata_code": "ENI", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Nido_Airport", + "keywords": "El Nido" + }, + { + "id": "5441", + "ident": "PHBK", + "type": "medium_airport", + "name": "Barking Sands Airport", + "latitude_deg": "22.0228", + "longitude_deg": "-159.785004", + "elevation_ft": "23", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kekaha", + "scheduled_service": "no", + "gps_code": "PHBK", + "iata_code": "BKH", + "local_code": "BKH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pacific_Missile_Range_Facility", + "keywords": "Pacific Missle Range Facility Barking Sands, Kauai" + }, + { + "id": "5442", + "ident": "PHDH", + "type": "small_airport", + "name": "Dillingham Airfield", + "latitude_deg": "21.5795", + "longitude_deg": "-158.197006", + "elevation_ft": "14", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Mokuleia", + "scheduled_service": "no", + "gps_code": "PHDH", + "iata_code": "HDH", + "local_code": "HDH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dillingham_Airfield" + }, + { + "id": "17621", + "ident": "PHHF", + "type": "small_airport", + "name": "French Frigate Shoals Airport", + "latitude_deg": "23.869328", + "longitude_deg": "-166.285829", + "elevation_ft": "6", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Tern Island", + "scheduled_service": "no", + "gps_code": "PHHF", + "local_code": "HFS" + }, + { + "id": "5443", + "ident": "PHHI", + "type": "small_airport", + "name": "Wheeler Army Airfield", + "latitude_deg": "21.481637", + "longitude_deg": "-158.037048", + "elevation_ft": "837", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Wahiawa", + "scheduled_service": "no", + "gps_code": "PHHI", + "iata_code": "HHI", + "local_code": "HHI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wheeler_Army_Airfield" + }, + { + "id": "5444", + "ident": "PHHN", + "type": "medium_airport", + "name": "Hana Airport", + "latitude_deg": "20.795601", + "longitude_deg": "-156.014008", + "elevation_ft": "78", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Hana", + "scheduled_service": "yes", + "gps_code": "PHHN", + "iata_code": "HNM", + "local_code": "HNM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hana_Airport" + }, + { + "id": "335883", + "ident": "PHIK", + "type": "medium_airport", + "name": "Hickam Air Force Base", + "latitude_deg": "21.335278", + "longitude_deg": "-157.948333", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Honolulu", + "scheduled_service": "no", + "gps_code": "PHIK", + "iata_code": "HIK", + "local_code": "HIK", + "home_link": "https://www.hickam.af.mil", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hickam_Air_Force_Base" + }, + { + "id": "5446", + "ident": "PHJH", + "type": "medium_airport", + "name": "Kapalua Airport", + "latitude_deg": "20.9629", + "longitude_deg": "-156.673004", + "elevation_ft": "256", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Lahaina", + "scheduled_service": "yes", + "gps_code": "PHJH", + "iata_code": "JHM", + "local_code": "JHM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kapalua_Airport" + }, + { + "id": "5447", + "ident": "PHJR", + "type": "medium_airport", + "name": "Kalaeloa Airport", + "latitude_deg": "21.3074", + "longitude_deg": "-158.070009", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kapolei", + "scheduled_service": "no", + "gps_code": "PHJR", + "iata_code": "JRF", + "local_code": "JRF", + "home_link": "http://airports.hawaii.gov/jrf/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kalaeloa_Airport", + "keywords": "NAX, Naval Air Station Barbers Point, John Rodgers Field" + }, + { + "id": "5448", + "ident": "PHKO", + "type": "medium_airport", + "name": "Ellison Onizuka Kona International Airport at Keahole", + "latitude_deg": "19.738783", + "longitude_deg": "-156.045603", + "elevation_ft": "47", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kailua-Kona", + "scheduled_service": "yes", + "gps_code": "PHKO", + "iata_code": "KOA", + "local_code": "KOA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kona_International_Airport" + }, + { + "id": "313934", + "ident": "PHKP", + "type": "closed", + "name": "Kaanapali Airport", + "latitude_deg": "20.945", + "longitude_deg": "-156.69", + "elevation_ft": "3", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Lahaina", + "scheduled_service": "no", + "gps_code": "PHKP", + "iata_code": "HKP", + "local_code": "HKP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kaanapali_Airport" + }, + { + "id": "5449", + "ident": "PHLI", + "type": "medium_airport", + "name": "Lihue Airport", + "latitude_deg": "21.976", + "longitude_deg": "-159.339005", + "elevation_ft": "153", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Lihue", + "scheduled_service": "yes", + "gps_code": "PHLI", + "iata_code": "LIH", + "local_code": "LIH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lihu'e_Airport" + }, + { + "id": "21732", + "ident": "PHLU", + "type": "small_airport", + "name": "Kalaupapa Airport", + "latitude_deg": "21.211", + "longitude_deg": "-156.973999", + "elevation_ft": "24", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kalaupapa", + "scheduled_service": "yes", + "gps_code": "PHLU", + "iata_code": "LUP", + "local_code": "LUP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kalaupapa_Airport" + }, + { + "id": "5450", + "ident": "PHMK", + "type": "medium_airport", + "name": "Molokai Airport", + "latitude_deg": "21.152901", + "longitude_deg": "-157.095993", + "elevation_ft": "454", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kaunakakai", + "scheduled_service": "yes", + "gps_code": "PHMK", + "iata_code": "MKK", + "local_code": "MKK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Molokai_Airport" + }, + { + "id": "5451", + "ident": "PHMU", + "type": "medium_airport", + "name": "Waimea Kohala Airport", + "latitude_deg": "20.001301", + "longitude_deg": "-155.667999", + "elevation_ft": "2671", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Waimea (Kamuela)", + "scheduled_service": "yes", + "gps_code": "PHMU", + "iata_code": "MUE", + "local_code": "MUE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Waimea-Kohala_Airport" + }, + { + "id": "5452", + "ident": "PHNG", + "type": "medium_airport", + "name": "Kaneohe Bay MCAS (Marion E. Carl Field) Airport", + "latitude_deg": "21.4505", + "longitude_deg": "-157.768005", + "elevation_ft": "24", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kaneohe", + "scheduled_service": "no", + "gps_code": "PHNG", + "iata_code": "NGF", + "local_code": "NGF", + "home_link": "http://www.mcbhawaii.marines.mil/Units/SubordinateCommands/MarineCorpsAirStation.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marine_Corps_Air_Station_Kaneohe_Bay" + }, + { + "id": "5453", + "ident": "PHNL", + "type": "large_airport", + "name": "Daniel K Inouye International Airport", + "latitude_deg": "21.32062", + "longitude_deg": "-157.924228", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Honolulu", + "scheduled_service": "yes", + "gps_code": "PHNL", + "iata_code": "HNL", + "local_code": "HNL", + "home_link": "http://airports.hawaii.gov/hnl/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Daniel_K._Inouye_International_Airport", + "keywords": "Hickam Air Force Base, HIK, PHIK, KHNL, Honolulu International" + }, + { + "id": "23310", + "ident": "PHNP", + "type": "small_airport", + "name": "Ford Island Naval Auxiliary Landing Field", + "latitude_deg": "21.362946", + "longitude_deg": "-157.961784", + "elevation_ft": "18", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Honolulu", + "scheduled_service": "no", + "gps_code": "PHNP", + "local_code": "NPS" + }, + { + "id": "5454", + "ident": "PHNY", + "type": "medium_airport", + "name": "Lanai Airport", + "latitude_deg": "20.785675", + "longitude_deg": "-156.951324", + "elevation_ft": "1308", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Lanai City", + "scheduled_service": "yes", + "gps_code": "PHNY", + "iata_code": "LNY", + "local_code": "LNY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lanai_Airport" + }, + { + "id": "5455", + "ident": "PHOG", + "type": "medium_airport", + "name": "Kahului Airport", + "latitude_deg": "20.898543", + "longitude_deg": "-156.431212", + "elevation_ft": "54", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kahului", + "scheduled_service": "yes", + "gps_code": "PHOG", + "iata_code": "OGG", + "local_code": "OGG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kahului_Airport" + }, + { + "id": "24070", + "ident": "PHPA", + "type": "small_airport", + "name": "Port Allen Airport", + "latitude_deg": "21.8969", + "longitude_deg": "-159.602997", + "elevation_ft": "24", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Hanapepe", + "scheduled_service": "no", + "gps_code": "PHPA", + "iata_code": "PAK", + "local_code": "PAK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Allen_Airport" + }, + { + "id": "5456", + "ident": "PHSF", + "type": "small_airport", + "name": "Bradshaw Army Airfield", + "latitude_deg": "19.760099", + "longitude_deg": "-155.554001", + "elevation_ft": "6190", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Waimea (Kamuela)", + "scheduled_service": "no", + "gps_code": "PHSF", + "iata_code": "BSF", + "local_code": "BSF" + }, + { + "id": "5457", + "ident": "PHTO", + "type": "medium_airport", + "name": "Hilo International Airport", + "latitude_deg": "19.721399", + "longitude_deg": "-155.048004", + "elevation_ft": "38", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Hilo", + "scheduled_service": "yes", + "gps_code": "PHTO", + "iata_code": "ITO", + "local_code": "ITO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hilo_International_Airport" + }, + { + "id": "5458", + "ident": "PHUP", + "type": "small_airport", + "name": "Upolu Airport", + "latitude_deg": "20.265301", + "longitude_deg": "-155.860001", + "elevation_ft": "96", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Hawi", + "scheduled_service": "no", + "gps_code": "PHUP", + "iata_code": "UPP", + "local_code": "UPP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Upolu_Airport" + }, + { + "id": "35152", + "ident": "PJON", + "type": "closed", + "name": "Johnston Atoll Airport", + "latitude_deg": "16.7286", + "longitude_deg": "-169.533997", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "UM", + "iso_region": "UM-67", + "municipality": "Johnston Atoll", + "scheduled_service": "no", + "gps_code": "PJON", + "iata_code": "JON", + "wikipedia_link": "https://en.wikipedia.org/wiki/Johnston_Atoll_Airport" + }, + { + "id": "41634", + "ident": "PK-0001", + "type": "closed", + "name": "Shikarpur Airport", + "latitude_deg": "29.166667", + "longitude_deg": "70.433333", + "elevation_ft": "219", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Shikarpur", + "scheduled_service": "no" + }, + { + "id": "41635", + "ident": "PK-0002", + "type": "small_airport", + "name": "Basal Airport", + "latitude_deg": "33.529998779296875", + "longitude_deg": "72.26000213623047", + "elevation_ft": "396", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Basal", + "scheduled_service": "no" + }, + { + "id": "41636", + "ident": "PK-0003", + "type": "heliport", + "name": "Dalbandin Heliport", + "latitude_deg": "28.874799728393555", + "longitude_deg": "64.404296875", + "elevation_ft": "2776", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Dalbandin", + "scheduled_service": "no" + }, + { + "id": "41637", + "ident": "PK-0004", + "type": "heliport", + "name": "Gilgit Heliport", + "latitude_deg": "35.91780090332031", + "longitude_deg": "74.34329986572266", + "elevation_ft": "4864", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-GB", + "municipality": "Gilgit", + "scheduled_service": "no" + }, + { + "id": "41638", + "ident": "PK-0005", + "type": "heliport", + "name": "Gurha Salim Heliport", + "latitude_deg": "32.88130187988281", + "longitude_deg": "73.60140228271484", + "elevation_ft": "769", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Gurha Salim", + "scheduled_service": "no" + }, + { + "id": "41639", + "ident": "PK-0006", + "type": "small_airport", + "name": "Kharan East Airport", + "latitude_deg": "28.620667", + "longitude_deg": "65.471001", + "elevation_ft": "2408", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Kharan", + "scheduled_service": "no" + }, + { + "id": "41640", + "ident": "PK-0007", + "type": "heliport", + "name": "Korangi Creek Heliport", + "latitude_deg": "24.78219985961914", + "longitude_deg": "67.13639831542969", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Karachi", + "scheduled_service": "no" + }, + { + "id": "41641", + "ident": "PK-0008", + "type": "closed", + "name": "Mari Indus East Airstrip", + "latitude_deg": "32.919998", + "longitude_deg": "71.690002", + "elevation_ft": "310", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Kalabagh", + "scheduled_service": "no", + "gps_code": "OP0T", + "keywords": "OP0T" + }, + { + "id": "41642", + "ident": "PK-0009", + "type": "small_airport", + "name": "PAF Murid Air Base", + "latitude_deg": "32.909616", + "longitude_deg": "72.773895", + "elevation_ft": "540", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Murid", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Murid_Airbase", + "keywords": "AG2626" + }, + { + "id": "41643", + "ident": "PK-0010", + "type": "heliport", + "name": "Nushki Heliport", + "latitude_deg": "29.540199279785156", + "longitude_deg": "66.02449798583984", + "elevation_ft": "3271", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Nushki", + "scheduled_service": "no" + }, + { + "id": "41644", + "ident": "PK-0011", + "type": "heliport", + "name": "Walton Heliport", + "latitude_deg": "31.48979949951172", + "longitude_deg": "74.34880065917969", + "elevation_ft": "695", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Walton", + "scheduled_service": "no" + }, + { + "id": "41645", + "ident": "PK-0012", + "type": "closed", + "name": "Wateji Airstrip", + "latitude_deg": "24.8658", + "longitude_deg": "67.4096", + "elevation_ft": "149", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Wateji", + "scheduled_service": "no" + }, + { + "id": "299579", + "ident": "PK-0013", + "type": "small_airport", + "name": "Sialkot Cantonment Airport", + "latitude_deg": "32.514722", + "longitude_deg": "74.528889", + "elevation_ft": "2074", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Sialkot", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sialkot_Cantonment_Airport" + }, + { + "id": "299580", + "ident": "PK-0014", + "type": "small_airport", + "name": "Khanpur Airport", + "latitude_deg": "28.6433333333", + "longitude_deg": "70.6325", + "elevation_ft": "283", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Khanpur", + "scheduled_service": "no" + }, + { + "id": "317899", + "ident": "PK-0015", + "type": "small_airport", + "name": "Larkana Airport", + "latitude_deg": "27.4831", + "longitude_deg": "68.1926", + "elevation_ft": "167", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Larkana", + "scheduled_service": "no" + }, + { + "id": "317901", + "ident": "PK-0016", + "type": "small_airport", + "name": "Petaro Airport", + "latitude_deg": "25.5448", + "longitude_deg": "68.3265", + "elevation_ft": "113", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Cadet College Petaro", + "scheduled_service": "no" + }, + { + "id": "317902", + "ident": "PK-0017", + "type": "small_airport", + "name": "Jungshahi Airstrip", + "latitude_deg": "24.8366", + "longitude_deg": "67.7619", + "elevation_ft": "45", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Jungshahi", + "scheduled_service": "no" + }, + { + "id": "317903", + "ident": "PK-0018", + "type": "closed", + "name": "Chota Malir Airstrips", + "latitude_deg": "24.95", + "longitude_deg": "67.173", + "elevation_ft": "165", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Karachi", + "scheduled_service": "no" + }, + { + "id": "317904", + "ident": "PK-0019", + "type": "closed", + "name": "PAF Base Malir", + "latitude_deg": "24.97", + "longitude_deg": "67.228", + "elevation_ft": "205", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Karachi", + "scheduled_service": "no" + }, + { + "id": "317905", + "ident": "PK-0020", + "type": "small_airport", + "name": "Sujawal Airport", + "latitude_deg": "24.6141", + "longitude_deg": "68.0827", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Sujawal", + "scheduled_service": "no" + }, + { + "id": "340183", + "ident": "PK-0021", + "type": "heliport", + "name": "Makli-Thatta Heliport", + "latitude_deg": "24.74058", + "longitude_deg": "67.89657", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Makli", + "scheduled_service": "no" + }, + { + "id": "325944", + "ident": "PK-0022", + "type": "closed", + "name": "Tank Airport", + "latitude_deg": "32.19809", + "longitude_deg": "70.404027", + "elevation_ft": "825", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Tank", + "scheduled_service": "no" + }, + { + "id": "325945", + "ident": "PK-0023", + "type": "closed", + "name": "Saranan Airport", + "latitude_deg": "30.566843", + "longitude_deg": "66.893477", + "elevation_ft": "4858", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Saranan", + "scheduled_service": "no", + "keywords": "Sārānān" + }, + { + "id": "325953", + "ident": "PK-0024", + "type": "closed", + "name": "Spezand Airfield", + "latitude_deg": "29.916193", + "longitude_deg": "66.987726", + "elevation_ft": "5790", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Spezand", + "scheduled_service": "no" + }, + { + "id": "325954", + "ident": "PK-0025", + "type": "closed", + "name": "Notakzai Airport", + "latitude_deg": "29.653524", + "longitude_deg": "66.383008", + "elevation_ft": "5102", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Notakzai", + "scheduled_service": "no" + }, + { + "id": "325955", + "ident": "PK-0026", + "type": "closed", + "name": "Khai Airport", + "latitude_deg": "28.273904", + "longitude_deg": "70.077635", + "elevation_ft": "258", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Sadiqabad", + "scheduled_service": "no" + }, + { + "id": "340184", + "ident": "PK-0027", + "type": "heliport", + "name": "DHA City Helipad #1", + "latitude_deg": "25.0392", + "longitude_deg": "67.45574", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Karachi", + "scheduled_service": "no" + }, + { + "id": "340185", + "ident": "PK-0028", + "type": "heliport", + "name": "DHA City Helipad #2", + "latitude_deg": "25.03946", + "longitude_deg": "67.4588", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Karachi", + "scheduled_service": "no" + }, + { + "id": "340186", + "ident": "PK-0029", + "type": "heliport", + "name": "Hubco Township Heliport", + "latitude_deg": "24.91697", + "longitude_deg": "66.69446", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Hub", + "scheduled_service": "no" + }, + { + "id": "340187", + "ident": "PK-0030", + "type": "heliport", + "name": "PNS Akram Heliport", + "latitude_deg": "25.09951", + "longitude_deg": "62.36931", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Gwadar", + "scheduled_service": "no" + }, + { + "id": "341246", + "ident": "PK-0031", + "type": "closed", + "name": "Akwal Airport", + "latitude_deg": "32.948658", + "longitude_deg": "72.363628", + "elevation_ft": "1540", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Talagang", + "scheduled_service": "no" + }, + { + "id": "341627", + "ident": "PK-0032", + "type": "heliport", + "name": "Abbottabad University Of Science And Technology (AUST) Heliport", + "latitude_deg": "34.06657", + "longitude_deg": "73.14624", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Abbottabad", + "scheduled_service": "no" + }, + { + "id": "341628", + "ident": "PK-0033", + "type": "heliport", + "name": "Baloch Centre Helipad", + "latitude_deg": "34.15696", + "longitude_deg": "73.21893", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Abbottabad", + "scheduled_service": "no" + }, + { + "id": "341629", + "ident": "PK-0034", + "type": "heliport", + "name": "Pakistan Military Academy Helipad 1", + "latitude_deg": "34.18608", + "longitude_deg": "73.2624", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Abbottabad", + "scheduled_service": "no" + }, + { + "id": "341630", + "ident": "PK-0035", + "type": "heliport", + "name": "Pakistan Military Academy Helipad 2", + "latitude_deg": "34.18658", + "longitude_deg": "73.26252", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Abbottabad", + "scheduled_service": "no" + }, + { + "id": "341631", + "ident": "PK-0036", + "type": "heliport", + "name": "Pakistan Military Academy Helipad 9", + "latitude_deg": "34.19231", + "longitude_deg": "73.26778", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Abbottabad", + "scheduled_service": "no" + }, + { + "id": "341632", + "ident": "PK-0037", + "type": "heliport", + "name": "Pakistan Military Academy Helipad 10", + "latitude_deg": "34.19186", + "longitude_deg": "73.26792", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Abbottabad", + "scheduled_service": "no" + }, + { + "id": "341633", + "ident": "PK-0038", + "type": "heliport", + "name": "Pakistan Military Academy Helipad 7", + "latitude_deg": "34.1858", + "longitude_deg": "73.2612", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Abbottabad", + "scheduled_service": "no" + }, + { + "id": "341634", + "ident": "PK-0039", + "type": "heliport", + "name": "Pakistan Military Academy Helipad 8", + "latitude_deg": "34.18554", + "longitude_deg": "73.26065", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Abbottabad", + "scheduled_service": "no" + }, + { + "id": "341635", + "ident": "PK-0040", + "type": "heliport", + "name": "Pakistan Military Academy Helipad 5", + "latitude_deg": "34.18809", + "longitude_deg": "73.2561", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Abbottabad", + "scheduled_service": "no" + }, + { + "id": "341636", + "ident": "PK-0041", + "type": "heliport", + "name": "Pakistan Military Academy Helipad 6", + "latitude_deg": "34.18868", + "longitude_deg": "73.25537", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Abbottabad", + "scheduled_service": "no" + }, + { + "id": "341637", + "ident": "PK-0042", + "type": "heliport", + "name": "Pakistan Military Academy Physical Training Ground Helipad", + "latitude_deg": "34.18145", + "longitude_deg": "73.24462", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Abbottabad", + "scheduled_service": "no" + }, + { + "id": "341638", + "ident": "PK-0043", + "type": "heliport", + "name": "Comsats University Helipad", + "latitude_deg": "34.19513", + "longitude_deg": "73.24391", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Abbottabad", + "scheduled_service": "no" + }, + { + "id": "342092", + "ident": "PK-0044", + "type": "closed", + "name": "New Gwadar International Airport (under construction)", + "latitude_deg": "25.2955", + "longitude_deg": "62.5011", + "elevation_ft": "61", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Gurandani", + "scheduled_service": "no" + }, + { + "id": "342193", + "ident": "PK-0045", + "type": "small_airport", + "name": "Jamal Din Wali Airport", + "latitude_deg": "28.50676", + "longitude_deg": "70.06305", + "elevation_ft": "272", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Rahim Yar Khan", + "scheduled_service": "no" + }, + { + "id": "342194", + "ident": "PK-0046", + "type": "small_airport", + "name": "Al Ghaba Airstrip", + "latitude_deg": "28.29812", + "longitude_deg": "70.48936", + "elevation_ft": "276", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Rahim Yar Khan", + "scheduled_service": "no" + }, + { + "id": "342195", + "ident": "PK-0047", + "type": "small_airport", + "name": "Qadirpur Airport", + "latitude_deg": "28.05091", + "longitude_deg": "69.36057", + "elevation_ft": "233", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Ghotki", + "scheduled_service": "no" + }, + { + "id": "343341", + "ident": "PK-0048", + "type": "heliport", + "name": "Kozhak Heliport", + "latitude_deg": "30.83216", + "longitude_deg": "66.5872", + "elevation_ft": "6934", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Shelabagh", + "scheduled_service": "no" + }, + { + "id": "343342", + "ident": "PK-0049", + "type": "small_airport", + "name": "PAF Khalid Air Base", + "latitude_deg": "30.2376", + "longitude_deg": "67.03685", + "elevation_ft": "5669", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Quetta", + "scheduled_service": "no" + }, + { + "id": "343343", + "ident": "PK-0050", + "type": "heliport", + "name": "Sheikh Badin Heliport", + "latitude_deg": "32.29758", + "longitude_deg": "70.80639", + "elevation_ft": "4401", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Lakki Marwat", + "scheduled_service": "no" + }, + { + "id": "343345", + "ident": "PK-0051", + "type": "closed", + "name": "Abbaspur Airfield", + "latitude_deg": "32.06285", + "longitude_deg": "72.51684", + "elevation_ft": "592", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Sargodha", + "scheduled_service": "no" + }, + { + "id": "41625", + "ident": "PK-0052", + "type": "closed", + "name": "Sahiwal Airport", + "latitude_deg": "31.88959", + "longitude_deg": "72.309345", + "elevation_ft": "570", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Sahiwal", + "scheduled_service": "no", + "keywords": "OPSW, SWN" + }, + { + "id": "41614", + "ident": "PK-0053", + "type": "closed", + "name": "Dadu Airport", + "latitude_deg": "26.554501", + "longitude_deg": "67.674599", + "elevation_ft": "121", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Dadu", + "scheduled_service": "no", + "keywords": "OPDD, DDU" + }, + { + "id": "351557", + "ident": "PK-0054", + "type": "heliport", + "name": "PNS Akram Parade Ground Heliport", + "latitude_deg": "25.09633", + "longitude_deg": "62.35829", + "elevation_ft": "66", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Gwadar", + "scheduled_service": "no" + }, + { + "id": "351558", + "ident": "PK-0055", + "type": "heliport", + "name": "Pishukan Heliport", + "latitude_deg": "25.11635", + "longitude_deg": "62.08178", + "elevation_ft": "45", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Pishukan", + "scheduled_service": "no" + }, + { + "id": "351559", + "ident": "PK-0056", + "type": "heliport", + "name": "Rimdan Border Patrol Heliport", + "latitude_deg": "25.3799", + "longitude_deg": "61.6609", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Tamp Kuh", + "scheduled_service": "no" + }, + { + "id": "351726", + "ident": "PK-0057", + "type": "heliport", + "name": "Jinnah Naval Base Port Heliport", + "latitude_deg": "25.20171", + "longitude_deg": "64.67455", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Ormara", + "scheduled_service": "no" + }, + { + "id": "351727", + "ident": "PK-0058", + "type": "heliport", + "name": "Jinnah Naval Base Main Heliport", + "latitude_deg": "25.20102", + "longitude_deg": "64.66228", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Ormara", + "scheduled_service": "no" + }, + { + "id": "351728", + "ident": "PK-0059", + "type": "heliport", + "name": "PNS Ahsan Heliport", + "latitude_deg": "25.18947", + "longitude_deg": "64.60514", + "elevation_ft": "1480", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Ormara", + "scheduled_service": "no" + }, + { + "id": "351729", + "ident": "PK-0060", + "type": "heliport", + "name": "Ormara Koh Heliport", + "latitude_deg": "25.18835", + "longitude_deg": "64.63608", + "elevation_ft": "1145", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Ormara", + "scheduled_service": "no" + }, + { + "id": "351730", + "ident": "PK-0061", + "type": "heliport", + "name": "PAF Dett Ormara Heliport", + "latitude_deg": "25.18842", + "longitude_deg": "64.66655", + "elevation_ft": "873", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Ormara", + "scheduled_service": "no" + }, + { + "id": "351733", + "ident": "PK-0062", + "type": "small_airport", + "name": "SUPARCO Beach Airport", + "latitude_deg": "25.19102", + "longitude_deg": "66.74428", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Gaddani", + "scheduled_service": "no" + }, + { + "id": "351734", + "ident": "PK-0063", + "type": "heliport", + "name": "SUPARCO Heliport", + "latitude_deg": "25.19497", + "longitude_deg": "66.75061", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Gaddani", + "scheduled_service": "no" + }, + { + "id": "351736", + "ident": "PK-0064", + "type": "heliport", + "name": "SUPARCO Somniani Rocket Station Heliport", + "latitude_deg": "25.18317", + "longitude_deg": "66.75675", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Gaddani", + "scheduled_service": "no" + }, + { + "id": "353400", + "ident": "PK-0065", + "type": "heliport", + "name": "Keti Bunder Heliport", + "latitude_deg": "24.14098", + "longitude_deg": "67.45042", + "elevation_ft": "9", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Keti Bunder", + "scheduled_service": "no" + }, + { + "id": "353420", + "ident": "PK-0066", + "type": "heliport", + "name": "Shah Bandar Heliport", + "latitude_deg": "24.15942", + "longitude_deg": "67.90063", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Shah Bandar", + "scheduled_service": "no" + }, + { + "id": "354515", + "ident": "PK-0067", + "type": "heliport", + "name": "KNPC Helipads (4x)", + "latitude_deg": "24.847373", + "longitude_deg": "66.786661", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Karachi", + "scheduled_service": "no" + }, + { + "id": "354516", + "ident": "PK-0068", + "type": "heliport", + "name": "Hubco Helipads (2x)", + "latitude_deg": "24.916507", + "longitude_deg": "66.711795", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Hub", + "scheduled_service": "no" + }, + { + "id": "354517", + "ident": "PK-0069", + "type": "heliport", + "name": "Byco plant parking helipad", + "latitude_deg": "24.947114", + "longitude_deg": "66.72165", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Hub", + "scheduled_service": "no" + }, + { + "id": "354518", + "ident": "PK-0070", + "type": "small_airport", + "name": "PAF Bholari", + "latitude_deg": "25.242056", + "longitude_deg": "68.035583", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "scheduled_service": "no" + }, + { + "id": "354519", + "ident": "PK-0071", + "type": "heliport", + "name": "House of Ali", + "latitude_deg": "25.036403", + "longitude_deg": "67.320528", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Bahria Town", + "scheduled_service": "no" + }, + { + "id": "429830", + "ident": "PK-0072", + "type": "heliport", + "name": "Taftan Heliport", + "latitude_deg": "28.96501", + "longitude_deg": "61.57708", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Taftan", + "scheduled_service": "no" + }, + { + "id": "41628", + "ident": "PK-BHC", + "type": "small_airport", + "name": "Bhurban Heliport", + "latitude_deg": "33.96099853515625", + "longitude_deg": "73.4520034790039", + "elevation_ft": "5750", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Bhurban", + "scheduled_service": "no", + "iata_code": "BHC" + }, + { + "id": "41629", + "ident": "PK-CWP", + "type": "small_airport", + "name": "Campbellpore Airport", + "latitude_deg": "33.766700744628906", + "longitude_deg": "72.36689758300781", + "elevation_ft": "1175", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Campbellpore", + "scheduled_service": "no", + "iata_code": "CWP" + }, + { + "id": "41630", + "ident": "PK-GRT", + "type": "small_airport", + "name": "Gujrat Airport", + "latitude_deg": "32.62826", + "longitude_deg": "74.067287", + "elevation_ft": "760", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-PB", + "municipality": "Gujrat", + "scheduled_service": "no", + "iata_code": "GRT" + }, + { + "id": "41631", + "ident": "PK-HRA", + "type": "closed", + "name": "Mansehra Airport", + "latitude_deg": "34.333321", + "longitude_deg": "73.200203", + "elevation_ft": "3530", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-KP", + "municipality": "Mansehra", + "scheduled_service": "no", + "keywords": "HRA" + }, + { + "id": "35198", + "ident": "PK-KCF", + "type": "small_airport", + "name": "Kadanwari Airport", + "latitude_deg": "27.1667003632", + "longitude_deg": "69.31670379639999", + "elevation_ft": "248", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Kadanwari", + "scheduled_service": "no", + "gps_code": "OPKW", + "iata_code": "KCF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kadanwari_Airport" + }, + { + "id": "41632", + "ident": "PK-REQ", + "type": "small_airport", + "name": "Reko Diq Airport", + "latitude_deg": "29.04692", + "longitude_deg": "62.196819", + "elevation_ft": "2784", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-BA", + "municipality": "Chagai", + "scheduled_service": "no", + "iata_code": "REQ" + }, + { + "id": "5487", + "ident": "PKMA", + "type": "small_airport", + "name": "Eniwetok Airport", + "latitude_deg": "11.340700149536133", + "longitude_deg": "162.3280029296875", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-ENI", + "municipality": "Eniwetok Atoll", + "scheduled_service": "yes", + "gps_code": "PKMA", + "iata_code": "ENT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Enewetak_Airport" + }, + { + "id": "5488", + "ident": "PKMJ", + "type": "medium_airport", + "name": "Marshall Islands International Airport", + "latitude_deg": "7.064760208129883", + "longitude_deg": "171.27200317382812", + "elevation_ft": "6", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-MAJ", + "municipality": "Majuro Atoll", + "scheduled_service": "yes", + "gps_code": "PKMJ", + "iata_code": "MAJ", + "local_code": "MAJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marshall_Islands_International_Airport" + }, + { + "id": "5489", + "ident": "PKRO", + "type": "small_airport", + "name": "Dyess Army Air Field", + "latitude_deg": "9.396889686580002", + "longitude_deg": "167.470993042", + "elevation_ft": "9", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-KWA", + "municipality": "Roi-Namur", + "scheduled_service": "no", + "gps_code": "PKRO", + "local_code": "ROI" + }, + { + "id": "43226", + "ident": "PKSA", + "type": "medium_airport", + "name": "Kaieteur International Airport", + "latitude_deg": "5.17275476456", + "longitude_deg": "-59.491481781", + "elevation_ft": "1520", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-PT", + "municipality": "Kaieteur Falls", + "scheduled_service": "yes", + "gps_code": "SYKA", + "iata_code": "KAI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kaieteur_International_Airport" + }, + { + "id": "5490", + "ident": "PKWA", + "type": "medium_airport", + "name": "Bucholz Army Air Field", + "latitude_deg": "8.720120429992676", + "longitude_deg": "167.73199462890625", + "elevation_ft": "9", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-KWA", + "municipality": "Kwajalein", + "scheduled_service": "yes", + "gps_code": "PKWA", + "iata_code": "KWA", + "local_code": "KWA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bucholz_Army_Airfield" + }, + { + "id": "41846", + "ident": "PL-0001", + "type": "small_airport", + "name": "Poznań-Bednary Airfield", + "latitude_deg": "52.5344", + "longitude_deg": "17.2187995911", + "elevation_ft": "341", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Pobiedziska", + "scheduled_service": "no", + "gps_code": "EPPB", + "home_link": "http://www.aeroklub.poznan.pl/artykuly.php?id=43" + }, + { + "id": "41847", + "ident": "PL-0002", + "type": "small_airport", + "name": "Kołobrzeg-Bagicz", + "latitude_deg": "54.2007217407", + "longitude_deg": "15.686944007900001", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "scheduled_service": "no", + "gps_code": "EPKG" + }, + { + "id": "41848", + "ident": "PL-0003", + "type": "small_airport", + "name": "Płoty (Maków)", + "latitude_deg": "53.76108169555664", + "longitude_deg": "15.290193557739258", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "scheduled_service": "no" + }, + { + "id": "43050", + "ident": "PL-0004", + "type": "small_airport", + "name": "Borsk (former military)", + "latitude_deg": "53.951942", + "longitude_deg": "17.942778", + "elevation_ft": "466", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "municipality": "Czersk", + "scheduled_service": "no", + "gps_code": "EPBO" + }, + { + "id": "43051", + "ident": "PL-0005", + "type": "closed", + "name": "Broczyno Air Base", + "latitude_deg": "53.51944351196289", + "longitude_deg": "16.28416633605957", + "elevation_ft": "499", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Czaplinek", + "scheduled_service": "no" + }, + { + "id": "43052", + "ident": "PL-0006", + "type": "closed", + "name": "Brzeg-Skarbimierz Air Base", + "latitude_deg": "50.836944580078125", + "longitude_deg": "17.413610458374023", + "elevation_ft": "505", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-OP", + "municipality": "Brzeg", + "scheduled_service": "no" + }, + { + "id": "43053", + "ident": "PL-0007", + "type": "small_airport", + "name": "Chojna Airfield", + "latitude_deg": "52.939445", + "longitude_deg": "14.421667", + "elevation_ft": "187", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Chojna", + "scheduled_service": "no" + }, + { + "id": "43054", + "ident": "PL-0008", + "type": "small_airport", + "name": "Nasielsk-Chrcynno", + "latitude_deg": "52.575832", + "longitude_deg": "20.873056", + "elevation_ft": "368", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Nasielsk", + "scheduled_service": "no", + "gps_code": "EPNC" + }, + { + "id": "43055", + "ident": "PL-0009", + "type": "closed", + "name": "Dęblin-Ułęż Air Base", + "latitude_deg": "51.619167", + "longitude_deg": "22.101667", + "elevation_ft": "558", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LU", + "municipality": "Dęblin", + "scheduled_service": "no" + }, + { + "id": "43056", + "ident": "PL-0010", + "type": "closed", + "name": "Debrzno Air Base", + "latitude_deg": "53.524444580078125", + "longitude_deg": "17.259166717529297", + "elevation_ft": "509", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Debrzno", + "scheduled_service": "no" + }, + { + "id": "43057", + "ident": "PL-0011", + "type": "closed", + "name": "Gdańsk-Wrzeszcz Air Base", + "latitude_deg": "54.39611053466797", + "longitude_deg": "18.602500915527344", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "municipality": "Gdańsk", + "scheduled_service": "no", + "keywords": "Danzig-Langfuhr" + }, + { + "id": "43058", + "ident": "PL-0012", + "type": "closed", + "name": "Gostyń-Gola Air Base", + "latitude_deg": "51.88722229003906", + "longitude_deg": "16.976110458374023", + "elevation_ft": "354", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Gostyń", + "scheduled_service": "no" + }, + { + "id": "335914", + "ident": "PL-0013", + "type": "heliport", + "name": "Gorzów Wielkopolski Hospital Helipad", + "latitude_deg": "52.760165", + "longitude_deg": "15.235376", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LB", + "municipality": "Gorzów Wielkopolski", + "scheduled_service": "no" + }, + { + "id": "43132", + "ident": "PL-0014", + "type": "small_airport", + "name": "Brzezie Highway Strip", + "latitude_deg": "53.812198638916016", + "longitude_deg": "16.984399795532227", + "elevation_ft": "499", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Biały Bór", + "scheduled_service": "no" + }, + { + "id": "43133", + "ident": "PL-0015", + "type": "small_airport", + "name": "Chociw (Kanice) Highway Strip", + "latitude_deg": "51.656898498535156", + "longitude_deg": "20.273300170898438", + "elevation_ft": "531", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "municipality": "Tomaszów Mazowiecki", + "scheduled_service": "no" + }, + { + "id": "43134", + "ident": "PL-0016", + "type": "small_airport", + "name": "Debrzno (Słupia) Highway Strip", + "latitude_deg": "53.57059860229492", + "longitude_deg": "17.26110076904297", + "elevation_ft": "525", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "municipality": "Debrzno", + "scheduled_service": "no" + }, + { + "id": "43135", + "ident": "PL-0017", + "type": "small_airport", + "name": "Dębnica Kaszubska Highway Strip", + "latitude_deg": "54.36830139160156", + "longitude_deg": "17.21190071105957", + "elevation_ft": "210", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "municipality": "Słupsk", + "scheduled_service": "no" + }, + { + "id": "43136", + "ident": "PL-0018", + "type": "small_airport", + "name": "Gdynia (Rumia) Highway Strip", + "latitude_deg": "54.604698181152344", + "longitude_deg": "18.443099975585938", + "elevation_ft": "36", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "municipality": "Gdynia", + "scheduled_service": "no" + }, + { + "id": "43137", + "ident": "PL-0019", + "type": "small_airport", + "name": "Granowo Highway Strip", + "latitude_deg": "52.232200622558594", + "longitude_deg": "16.596900939941406", + "elevation_ft": "249", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Grodzisk Wielkopolski", + "scheduled_service": "no" + }, + { + "id": "43138", + "ident": "PL-0020", + "type": "small_airport", + "name": "Jarosławiec Highway Strip", + "latitude_deg": "54.525001525878906", + "longitude_deg": "16.506399154663086", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Darłowo", + "scheduled_service": "no" + }, + { + "id": "43139", + "ident": "PL-0021", + "type": "small_airport", + "name": "Kliniska (Szczecin) Highway Strip", + "latitude_deg": "53.426700592041016", + "longitude_deg": "14.804200172424316", + "elevation_ft": "49", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Szczecin", + "scheduled_service": "no" + }, + { + "id": "43140", + "ident": "PL-0022", + "type": "small_airport", + "name": "Koronowo Highway Strip", + "latitude_deg": "53.3114013671875", + "longitude_deg": "18.01059913635254", + "elevation_ft": "305", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-KP", + "municipality": "Koronowo", + "scheduled_service": "no" + }, + { + "id": "43141", + "ident": "PL-0023", + "type": "small_airport", + "name": "Leszno (Rydzyna) Highway Strip", + "latitude_deg": "51.814998626708984", + "longitude_deg": "16.623899459838867", + "elevation_ft": "308", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Leszno", + "scheduled_service": "no", + "keywords": "Lissa" + }, + { + "id": "43142", + "ident": "PL-0024", + "type": "small_airport", + "name": "Łukęcin (Pobierowo) Highway Strip", + "latitude_deg": "54.0452995300293", + "longitude_deg": "14.90530014038086", + "elevation_ft": "23", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Kamień Pomorski", + "scheduled_service": "no" + }, + { + "id": "43143", + "ident": "PL-0025", + "type": "small_airport", + "name": "Machliny Highway Strip", + "latitude_deg": "53.45830154418945", + "longitude_deg": "16.371400833129883", + "elevation_ft": "449", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Czaplinek", + "scheduled_service": "no" + }, + { + "id": "43144", + "ident": "PL-0026", + "type": "small_airport", + "name": "Mieszkowice Highway Strip", + "latitude_deg": "52.750301361083984", + "longitude_deg": "14.511699676513672", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Mieszkowice", + "scheduled_service": "no" + }, + { + "id": "43145", + "ident": "PL-0027", + "type": "small_airport", + "name": "Mirosławiec (Nowe Laski) Highway Strip", + "latitude_deg": "53.38610076904297", + "longitude_deg": "16.15690040588379", + "elevation_ft": "495", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Mirosławiec", + "scheduled_service": "no" + }, + { + "id": "43146", + "ident": "PL-0028", + "type": "small_airport", + "name": "Mostowo Highway Strip", + "latitude_deg": "54.06919860839844", + "longitude_deg": "16.537200927734375", + "elevation_ft": "276", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Koszalin", + "scheduled_service": "no" + }, + { + "id": "43147", + "ident": "PL-0029", + "type": "small_airport", + "name": "Osie (Lipinki) Highway Strip", + "latitude_deg": "53.608299255371094", + "longitude_deg": "18.450599670410156", + "elevation_ft": "295", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-KP", + "municipality": "Świecie", + "scheduled_service": "no" + }, + { + "id": "43148", + "ident": "PL-0030", + "type": "small_airport", + "name": "Ostrowy (Łobodno) Highway Strip", + "latitude_deg": "50.948299407958984", + "longitude_deg": "19.013599395751953", + "elevation_ft": "817", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-SL", + "municipality": "Kłobuck", + "scheduled_service": "no" + }, + { + "id": "43149", + "ident": "PL-0031", + "type": "small_airport", + "name": "Rossoszyca (Warta) Highway Strip", + "latitude_deg": "51.70389938354492", + "longitude_deg": "18.718299865722656", + "elevation_ft": "446", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "municipality": "Sieradz", + "scheduled_service": "no" + }, + { + "id": "43150", + "ident": "PL-0032", + "type": "small_airport", + "name": "Środa Śląska (Komorniki) Highway Strip", + "latitude_deg": "51.16279983520508", + "longitude_deg": "16.66860008239746", + "elevation_ft": "449", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "municipality": "Środa Śląska", + "scheduled_service": "no" + }, + { + "id": "43151", + "ident": "PL-0033", + "type": "small_airport", + "name": "Wielbark Highway Strip", + "latitude_deg": "53.36669921875", + "longitude_deg": "20.791900634765625", + "elevation_ft": "436", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Wielbark", + "scheduled_service": "no" + }, + { + "id": "43152", + "ident": "PL-0034", + "type": "small_airport", + "name": "Września Highway Strip", + "latitude_deg": "52.30110168457031", + "longitude_deg": "17.622499465942383", + "elevation_ft": "361", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Września", + "scheduled_service": "no" + }, + { + "id": "43153", + "ident": "PL-0035", + "type": "closed", + "name": "Aleksandrów Łódzki Airport", + "latitude_deg": "51.7906", + "longitude_deg": "19.27", + "elevation_ft": "623", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "municipality": "Aleksandrów Łódzki", + "scheduled_service": "no" + }, + { + "id": "43154", + "ident": "PL-0036", + "type": "small_airport", + "name": "Lotnisko Białousy", + "latitude_deg": "53.40472", + "longitude_deg": "23.228331", + "elevation_ft": "587", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PD", + "municipality": "Sokółka", + "scheduled_service": "no" + }, + { + "id": "43155", + "ident": "PL-0037", + "type": "small_airport", + "name": "Bezmiechowa Airfield", + "latitude_deg": "49.520279", + "longitude_deg": "22.41", + "elevation_ft": "2014", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PK", + "municipality": "Lesko", + "scheduled_service": "no" + }, + { + "id": "43156", + "ident": "PL-0038", + "type": "closed", + "name": "Brochocin Air Base", + "latitude_deg": "51.203331", + "longitude_deg": "15.93278", + "elevation_ft": "663", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "municipality": "Złotoryja", + "scheduled_service": "no" + }, + { + "id": "43157", + "ident": "PL-0039", + "type": "small_airport", + "name": "Sieradz-Chojne Airfield", + "latitude_deg": "51.55167", + "longitude_deg": "18.79167", + "elevation_ft": "427", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "municipality": "Sieradz", + "scheduled_service": "no", + "gps_code": "EPSI" + }, + { + "id": "315659", + "ident": "PL-0040", + "type": "small_airport", + "name": "Lotnisko Sportowe Gubin", + "latitude_deg": "51.99179", + "longitude_deg": "14.7319853", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LB", + "scheduled_service": "no" + }, + { + "id": "43159", + "ident": "PL-0041", + "type": "closed", + "name": "Dębica Air Base", + "latitude_deg": "53.943611", + "longitude_deg": "15.62028", + "elevation_ft": "161", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Białogard", + "scheduled_service": "no" + }, + { + "id": "43160", + "ident": "PL-0042", + "type": "closed", + "name": "Dęblin-Podlodów Air Base", + "latitude_deg": "51.62722", + "longitude_deg": "22.198059", + "elevation_ft": "522", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LU", + "municipality": "Dęblin", + "scheduled_service": "no" + }, + { + "id": "43161", + "ident": "PL-0043", + "type": "closed", + "name": "Dębno Polskie Airfield", + "latitude_deg": "51.59444", + "longitude_deg": "16.8675", + "elevation_ft": "305", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Rawicz", + "scheduled_service": "no" + }, + { + "id": "43163", + "ident": "PL-0044", + "type": "closed", + "name": "Goszczanów Airfield", + "latitude_deg": "51.799198", + "longitude_deg": "18.493099", + "elevation_ft": "446", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "municipality": "Warta", + "scheduled_service": "no" + }, + { + "id": "43165", + "ident": "PL-0045", + "type": "closed", + "name": "Jaworze Airfield", + "latitude_deg": "53.31139", + "longitude_deg": "15.71389", + "elevation_ft": "344", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Recz", + "scheduled_service": "no" + }, + { + "id": "43167", + "ident": "PL-0046", + "type": "heliport", + "name": "Kraków-Łęg Heliport", + "latitude_deg": "50.06071", + "longitude_deg": "20.012423", + "elevation_ft": "636", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MA", + "municipality": "Kraków", + "scheduled_service": "no" + }, + { + "id": "43168", + "ident": "PL-0047", + "type": "closed", + "name": "Kroczewo Airstrip", + "latitude_deg": "52.47361", + "longitude_deg": "20.539169", + "elevation_ft": "335", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Zakroczym", + "scheduled_service": "no" + }, + { + "id": "43169", + "ident": "PL-0048", + "type": "closed", + "name": "Krzewica Airport", + "latitude_deg": "52.05389", + "longitude_deg": "22.70056", + "elevation_ft": "509", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LU", + "municipality": "Międzyrzec Podlaski", + "scheduled_service": "no" + }, + { + "id": "43170", + "ident": "PL-0049", + "type": "small_airport", + "name": "Łagowo Airstrip", + "latitude_deg": "51.966667", + "longitude_deg": "16.983334", + "elevation_ft": "295", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Dolsk", + "scheduled_service": "no" + }, + { + "id": "43172", + "ident": "PL-0050", + "type": "closed", + "name": "Międzylesie Airport", + "latitude_deg": "52.216942", + "longitude_deg": "21.198891", + "elevation_ft": "322", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Warsaw", + "scheduled_service": "no" + }, + { + "id": "43174", + "ident": "PL-0051", + "type": "closed", + "name": "Nadarzyce Poligon Fake Airport", + "latitude_deg": "53.470001", + "longitude_deg": "16.456671", + "elevation_ft": "413", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Wałcz", + "scheduled_service": "no" + }, + { + "id": "43175", + "ident": "PL-0052", + "type": "closed", + "name": "Namysłów Airport", + "latitude_deg": "51.064171", + "longitude_deg": "17.593611", + "elevation_ft": "492", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-OP", + "municipality": "Namysłów", + "scheduled_service": "no" + }, + { + "id": "43176", + "ident": "PL-0053", + "type": "closed", + "name": "Oława-Stanowice Air Base (closed)", + "latitude_deg": "50.978611", + "longitude_deg": "17.247499", + "elevation_ft": "420", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "municipality": "Oława", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/O%C5%82awa-Stanowice_Airport", + "keywords": "Oława-Marcinkowice" + }, + { + "id": "43177", + "ident": "PL-0054", + "type": "closed", + "name": "Orsk Airstrip", + "latitude_deg": "51.5672", + "longitude_deg": "16.3556", + "elevation_ft": "404", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "municipality": "Szlichtyngowa", + "scheduled_service": "no" + }, + { + "id": "43178", + "ident": "PL-0055", + "type": "small_airport", + "name": "Przasnysz Airfield", + "latitude_deg": "53.005001", + "longitude_deg": "20.93833", + "elevation_ft": "394", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Przasnysz", + "scheduled_service": "no", + "gps_code": "EPPZ" + }, + { + "id": "43179", + "ident": "PL-0056", + "type": "closed", + "name": "Radzewice Airport", + "latitude_deg": "52.211109", + "longitude_deg": "16.997219", + "elevation_ft": "249", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Mosina", + "scheduled_service": "no" + }, + { + "id": "43180", + "ident": "PL-0057", + "type": "small_airport", + "name": "Radzyń Podlaski-Marynin Airstrip", + "latitude_deg": "51.754169", + "longitude_deg": "22.628611", + "elevation_ft": "470", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LU", + "municipality": "Radzyń Podlaski", + "scheduled_service": "no" + }, + { + "id": "43181", + "ident": "PL-0058", + "type": "small_airport", + "name": "Rostki Airstrip", + "latitude_deg": "53.709721", + "longitude_deg": "21.909719", + "elevation_ft": "387", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Orzysz", + "scheduled_service": "no" + }, + { + "id": "43182", + "ident": "PL-0059", + "type": "closed", + "name": "Skibno Airport", + "latitude_deg": "54.244999", + "longitude_deg": "16.306669", + "elevation_ft": "89", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Sianów", + "scheduled_service": "no" + }, + { + "id": "350484", + "ident": "PL-0060", + "type": "small_airport", + "name": "Szadek Airstrip", + "latitude_deg": "51.699799", + "longitude_deg": "18.99579", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "scheduled_service": "no" + }, + { + "id": "43184", + "ident": "PL-0061", + "type": "small_airport", + "name": "Drahimek Airfield", + "latitude_deg": "53.614404", + "longitude_deg": "16.185951", + "elevation_ft": "476", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Czaplinek", + "scheduled_service": "no" + }, + { + "id": "43185", + "ident": "PL-0062", + "type": "small_airport", + "name": "Lotnisko Watorowo", + "latitude_deg": "53.296669", + "longitude_deg": "18.41333", + "elevation_ft": "299", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-KP", + "municipality": "Chełmno", + "scheduled_service": "no", + "gps_code": "EPWT" + }, + { + "id": "43186", + "ident": "PL-0063", + "type": "closed", + "name": "Wejherowo Airfield", + "latitude_deg": "54.59111", + "longitude_deg": "18.200001", + "elevation_ft": "272", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "municipality": "Wejherowo", + "scheduled_service": "no" + }, + { + "id": "43187", + "ident": "PL-0064", + "type": "small_airport", + "name": "Weremień Airfield", + "latitude_deg": "49.446671", + "longitude_deg": "22.32", + "elevation_ft": "1335", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PK", + "municipality": "Lesko", + "scheduled_service": "no" + }, + { + "id": "43188", + "ident": "PL-0065", + "type": "closed", + "name": "Wschowa-Łysiny Airport", + "latitude_deg": "51.835281", + "longitude_deg": "16.24778", + "elevation_ft": "361", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LB", + "municipality": "Wschowa", + "scheduled_service": "no" + }, + { + "id": "43189", + "ident": "PL-0066", + "type": "closed", + "name": "Wysokie Mazowieckie Air Base", + "latitude_deg": "52.931389", + "longitude_deg": "22.52639", + "elevation_ft": "482", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PD", + "municipality": "Wysokie Mazowieckie", + "scheduled_service": "no" + }, + { + "id": "43190", + "ident": "PL-0067", + "type": "closed", + "name": "Zgorzelec-Żarska Wieś Airport", + "latitude_deg": "51.203335", + "longitude_deg": "15.128333", + "elevation_ft": "735", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "municipality": "Zgorzelec", + "scheduled_service": "no" + }, + { + "id": "44704", + "ident": "PL-0068", + "type": "closed", + "name": "Krzywa Air Base", + "latitude_deg": "51.310001373291016", + "longitude_deg": "15.725000381469727", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "municipality": "Różyniec", + "scheduled_service": "no", + "wikipedia_link": "http://pl.wikipedia.org/wiki/Lotnisko_Krzywa" + }, + { + "id": "44705", + "ident": "PL-0069", + "type": "small_airport", + "name": "Gozdnica Airfield", + "latitude_deg": "51.459999084472656", + "longitude_deg": "15.104999542236328", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LB", + "municipality": "Gozdnica", + "scheduled_service": "no" + }, + { + "id": "44706", + "ident": "PL-0070", + "type": "small_airport", + "name": "Swiebodzice Airfield", + "latitude_deg": "50.8829994202", + "longitude_deg": "16.3199996948", + "elevation_ft": "876", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "municipality": "Świebodzice", + "scheduled_service": "no", + "gps_code": "EPWC", + "keywords": "Lotnisko Świebodzice" + }, + { + "id": "44707", + "ident": "PL-0071", + "type": "closed", + "name": "Szprotawa-Wiechlice Air Base", + "latitude_deg": "51.560001373291016", + "longitude_deg": "15.59000015258789", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LB", + "scheduled_service": "no", + "keywords": "Lotnisko Szprotawa, Lotnisko Wiechlice, Аэродром Шпротава, Аэродром Вихлице" + }, + { + "id": "44708", + "ident": "PL-0072", + "type": "small_airport", + "name": "Bystrzyca Klodzka Airfield", + "latitude_deg": "50.30849838256836", + "longitude_deg": "16.645999908447266", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "municipality": "Bystrzyca Kłodzka", + "scheduled_service": "no", + "keywords": "Lotnisko Bystrzyca Kłodzka" + }, + { + "id": "44709", + "ident": "PL-0073", + "type": "closed", + "name": "Olesnica Air Base", + "latitude_deg": "51.21500015258789", + "longitude_deg": "17.434999465942383", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "municipality": "Oleśnica", + "scheduled_service": "no", + "keywords": "Lotnisko Oleśnica" + }, + { + "id": "44710", + "ident": "PL-0074", + "type": "small_airport", + "name": "Kakolewo (former military)", + "latitude_deg": "52.235001", + "longitude_deg": "16.243", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Kąkolewo", + "scheduled_service": "no", + "gps_code": "EPPG", + "keywords": "Lotnisko Kąkolewo" + }, + { + "id": "44711", + "ident": "PL-0075", + "type": "small_airport", + "name": "Przytoczna Airfield", + "latitude_deg": "52.52399826049805", + "longitude_deg": "15.725000381469727", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LB", + "municipality": "Przytoczna", + "scheduled_service": "no", + "keywords": "Lotnisko Przytoczna" + }, + { + "id": "44712", + "ident": "PL-0076", + "type": "small_airport", + "name": "Zerniki Gadki Airfield", + "latitude_deg": "52.321999", + "longitude_deg": "17.040001", + "elevation_ft": "260", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Gądki", + "scheduled_service": "no", + "gps_code": "EPZE", + "home_link": "http://www.airport-biernat.pl/", + "keywords": "Lotnisko Żerniki, Gądki, Zerniki, Gadki" + }, + { + "id": "44737", + "ident": "PL-0077", + "type": "small_airport", + "name": "Konstancin-Jeziorna Airfield", + "latitude_deg": "52.07500076293945", + "longitude_deg": "21.187000274658203", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Konstancin-Jeziorna", + "scheduled_service": "no", + "home_link": "http://www.jbi.com.pl/", + "keywords": "Obory Airfield" + }, + { + "id": "315920", + "ident": "PL-0078", + "type": "small_airport", + "name": "Lipki Wielkie", + "latitude_deg": "52.7171765", + "longitude_deg": "15.51346", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LB", + "scheduled_service": "no" + }, + { + "id": "315921", + "ident": "PL-0079", + "type": "closed", + "name": "Lotnisko Turośń Kościelna", + "latitude_deg": "53.003022", + "longitude_deg": "23.057806", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PD", + "scheduled_service": "no", + "wikipedia_link": "https://pl.wikipedia.org/wiki/L%C4%85dowisko_Turo%C5%9B%C5%84_Ko%C5%9Bcielna" + }, + { + "id": "315924", + "ident": "PL-0080", + "type": "small_airport", + "name": "Wilcze Laski", + "latitude_deg": "53.5954859", + "longitude_deg": "16.7154023", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "scheduled_service": "no" + }, + { + "id": "331412", + "ident": "PL-0081", + "type": "small_airport", + "name": "Brzozogaj Airstrip", + "latitude_deg": "52.6037987", + "longitude_deg": "17.477312", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "scheduled_service": "no", + "home_link": "http://dzialpol.pl/ladowisko.html" + }, + { + "id": "316044", + "ident": "PL-0082", + "type": "closed", + "name": "Wicko Morskie Air Base", + "latitude_deg": "54.5522225", + "longitude_deg": "16.6177416", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "scheduled_service": "no" + }, + { + "id": "316345", + "ident": "PL-0083", + "type": "small_airport", + "name": "Kazimierza Mała", + "latitude_deg": "50.2610779", + "longitude_deg": "20.5413201", + "elevation_ft": "615", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-SK", + "scheduled_service": "no" + }, + { + "id": "319899", + "ident": "PL-0084", + "type": "heliport", + "name": "Sanok Heliport", + "latitude_deg": "49.575593", + "longitude_deg": "22.20239", + "elevation_ft": "919", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PK", + "scheduled_service": "no", + "gps_code": "EPSA", + "wikipedia_link": "https://pl.wikipedia.org/wiki/L%C4%85dowisko_Sanok-Baza", + "keywords": "Sanok Helicopter Emergency Medical Service" + }, + { + "id": "319900", + "ident": "PL-0085", + "type": "small_airport", + "name": "Stara Wieś Field", + "latitude_deg": "49.722995", + "longitude_deg": "22.025378", + "elevation_ft": "1000", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PK", + "scheduled_service": "no", + "home_link": "https://www.facebook.com/LotniskoStaraWies", + "wikipedia_link": "https://pl.wikipedia.org/wiki/L%C4%85dowisko_Stara_Wie%C5%9B" + }, + { + "id": "320206", + "ident": "PL-0086", + "type": "closed", + "name": "Lotnisko Lwówek", + "latitude_deg": "51.128283", + "longitude_deg": "15.570464", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "municipality": "Lwówek", + "scheduled_service": "no" + }, + { + "id": "320385", + "ident": "PL-0087", + "type": "small_airport", + "name": "Zator", + "latitude_deg": "49.959944", + "longitude_deg": "19.402833", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MA", + "scheduled_service": "no" + }, + { + "id": "320386", + "ident": "PL-0088", + "type": "small_airport", + "name": "Baranów", + "latitude_deg": "52.122083", + "longitude_deg": "20.48175", + "elevation_ft": "295", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Baranów", + "scheduled_service": "no" + }, + { + "id": "320569", + "ident": "PL-0089", + "type": "small_airport", + "name": "Lotnisko Korne", + "latitude_deg": "54.129583", + "longitude_deg": "17.844972", + "elevation_ft": "515", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "municipality": "Korne", + "scheduled_service": "no", + "gps_code": "EPKO", + "home_link": "http://www.lotniskokorne.gka.pl" + }, + { + "id": "320923", + "ident": "PL-0090", + "type": "small_airport", + "name": "Tworzyjanów Airstrip", + "latitude_deg": "50.922915", + "longitude_deg": "16.676726", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "municipality": "Tworzyjanów", + "scheduled_service": "no", + "keywords": "Sudeckie Stowarzyszenie Lotnicze Klub Sportowy" + }, + { + "id": "323187", + "ident": "PL-0091", + "type": "small_airport", + "name": "Baza Lotnicza JPR „Baryt”", + "latitude_deg": "51.055531", + "longitude_deg": "16.013636", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "scheduled_service": "no", + "home_link": "http://jpr-baryt.pl" + }, + { + "id": "323210", + "ident": "PL-0092", + "type": "small_airport", + "name": "Annowo Airstrip", + "latitude_deg": "52.803389", + "longitude_deg": "17.879678", + "elevation_ft": "350", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-KP", + "municipality": "Annowo", + "scheduled_service": "no" + }, + { + "id": "323213", + "ident": "PL-0093", + "type": "small_airport", + "name": "Lądowisko Wilga", + "latitude_deg": "51.8816709", + "longitude_deg": "21.3653123", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Wilga", + "scheduled_service": "no" + }, + { + "id": "323253", + "ident": "PL-0094", + "type": "small_airport", + "name": "Golędzinów Airstrip", + "latitude_deg": "51.262749", + "longitude_deg": "16.921832", + "elevation_ft": "456", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "municipality": "Golędzinów", + "scheduled_service": "no" + }, + { + "id": "323299", + "ident": "PL-0095", + "type": "small_airport", + "name": "Wyszonowice UL", + "latitude_deg": "50.782972", + "longitude_deg": "17.161753", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "municipality": "Wyszonowice", + "scheduled_service": "no" + }, + { + "id": "323346", + "ident": "PL-0096", + "type": "small_airport", + "name": "Chełmżyca Airstrip", + "latitude_deg": "53.670487", + "longitude_deg": "19.46115", + "elevation_ft": "323", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Chełmżyca", + "scheduled_service": "no" + }, + { + "id": "323409", + "ident": "PL-0097", + "type": "small_airport", + "name": "Lotnisko Nysa", + "latitude_deg": "50.4717899", + "longitude_deg": "17.2661124", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-OP", + "municipality": "Nysa", + "scheduled_service": "no" + }, + { + "id": "323411", + "ident": "PL-0098", + "type": "small_airport", + "name": "Łagowiec", + "latitude_deg": "52.33525", + "longitude_deg": "15.665277", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LB", + "municipality": "Łagowiec", + "scheduled_service": "no" + }, + { + "id": "323444", + "ident": "PL-0099", + "type": "small_airport", + "name": "Lądowisko Grabowiec", + "latitude_deg": "51.901197", + "longitude_deg": "15.2706431", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LB", + "municipality": "Grabowiec", + "scheduled_service": "no" + }, + { + "id": "323445", + "ident": "PL-0100", + "type": "small_airport", + "name": "Lotnisko Henryka Stokłosy", + "latitude_deg": "53.1449613", + "longitude_deg": "16.8826819", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Śmiłowo", + "scheduled_service": "no" + }, + { + "id": "323512", + "ident": "PL-0101", + "type": "small_airport", + "name": "Lotnisko Makosieje", + "latitude_deg": "53.8073729", + "longitude_deg": "22.5405942", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Makosieje", + "scheduled_service": "no" + }, + { + "id": "323513", + "ident": "PL-0102", + "type": "small_airport", + "name": "Szklarka Przygodzicka", + "latitude_deg": "51.488091", + "longitude_deg": "17.795207", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Szklarka Przygodzicka", + "scheduled_service": "no" + }, + { + "id": "323606", + "ident": "PL-0103", + "type": "small_airport", + "name": "Lotnisko Kamieńsk", + "latitude_deg": "51.225121", + "longitude_deg": "19.421273", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "municipality": "Orla Góra", + "scheduled_service": "no" + }, + { + "id": "323608", + "ident": "PL-0104", + "type": "small_airport", + "name": "Ulim", + "latitude_deg": "52.693563", + "longitude_deg": "15.215912", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Ulim", + "scheduled_service": "no" + }, + { + "id": "323618", + "ident": "PL-0105", + "type": "small_airport", + "name": "Linowiec", + "latitude_deg": "54.007897", + "longitude_deg": "18.499983", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "municipality": "Starogardzka", + "scheduled_service": "no", + "gps_code": "EPLI" + }, + { + "id": "323619", + "ident": "PL-0106", + "type": "small_airport", + "name": "Lotnisko Jasienna", + "latitude_deg": "49.7166174", + "longitude_deg": "20.811703", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MA", + "municipality": "Jasienna", + "scheduled_service": "no", + "keywords": "AeroLach" + }, + { + "id": "323635", + "ident": "PL-0107", + "type": "small_airport", + "name": "Mostki Airstrip", + "latitude_deg": "52.27189", + "longitude_deg": "15.369729", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LB", + "municipality": "Mostki", + "scheduled_service": "no" + }, + { + "id": "323637", + "ident": "PL-0108", + "type": "small_airport", + "name": "Marianowo", + "latitude_deg": "52.902269", + "longitude_deg": "16.128861", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Marianowo", + "scheduled_service": "no", + "keywords": "Herburtowo" + }, + { + "id": "323645", + "ident": "PL-0109", + "type": "small_airport", + "name": "Lotnisko Konopki", + "latitude_deg": "52.9896073", + "longitude_deg": "20.5066888", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Konopki", + "scheduled_service": "no" + }, + { + "id": "323651", + "ident": "PL-0110", + "type": "small_airport", + "name": "Pacółtowo Airfield", + "latitude_deg": "53.5327", + "longitude_deg": "20.1531", + "elevation_ft": "645", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Pacółtowo", + "scheduled_service": "no", + "home_link": "http://www.palacpacoltowo.com" + }, + { + "id": "323658", + "ident": "PL-0111", + "type": "small_airport", + "name": "Lotnisko Mrągowo", + "latitude_deg": "53.825276", + "longitude_deg": "21.318983", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Mrągowo", + "scheduled_service": "no", + "gps_code": "EPMG" + }, + { + "id": "323668", + "ident": "PL-0112", + "type": "small_airport", + "name": "Lądowisko Pawłowiczki", + "latitude_deg": "50.2445389", + "longitude_deg": "18.0243561", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-OP", + "municipality": "Pawłowiczki", + "scheduled_service": "no" + }, + { + "id": "323688", + "ident": "PL-0113", + "type": "closed", + "name": "Solec Kujawski", + "latitude_deg": "53.071092", + "longitude_deg": "18.195064", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-KP", + "municipality": "Solec Kujawski", + "scheduled_service": "no" + }, + { + "id": "323689", + "ident": "PL-0114", + "type": "small_airport", + "name": "Lądowisko Horodek", + "latitude_deg": "49.3511993", + "longitude_deg": "22.4817572", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PK", + "municipality": "Horodek", + "scheduled_service": "no" + }, + { + "id": "323690", + "ident": "PL-0115", + "type": "small_airport", + "name": "Lądowisko Żernica", + "latitude_deg": "49.362597", + "longitude_deg": "22.3305947", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PK", + "municipality": "Żernica", + "scheduled_service": "no" + }, + { + "id": "323738", + "ident": "PL-0116", + "type": "closed", + "name": "Rogów Airstrip", + "latitude_deg": "51.800561", + "longitude_deg": "19.857478", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "municipality": "Rogów-Parcela", + "scheduled_service": "no" + }, + { + "id": "323739", + "ident": "PL-0117", + "type": "small_airport", + "name": "Lądowisko Kukały", + "latitude_deg": "51.875631", + "longitude_deg": "21.003014", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Kukały", + "scheduled_service": "no" + }, + { + "id": "323802", + "ident": "PL-0118", + "type": "small_airport", + "name": "Oborniki Słonawy Airfield", + "latitude_deg": "52.667126", + "longitude_deg": "16.773302", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Oborniki", + "scheduled_service": "no", + "home_link": "http://www.osl-oborniki.info/" + }, + { + "id": "323854", + "ident": "PL-0119", + "type": "small_airport", + "name": "Świebodzin Airstrip", + "latitude_deg": "52.252266", + "longitude_deg": "15.566415", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LB", + "municipality": "Świebodzin", + "scheduled_service": "no" + }, + { + "id": "323871", + "ident": "PL-0120", + "type": "small_airport", + "name": "Bełchatów Airstrip", + "latitude_deg": "51.4021158", + "longitude_deg": "19.3782391", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "municipality": "Kałduny", + "scheduled_service": "no" + }, + { + "id": "323873", + "ident": "PL-0121", + "type": "small_airport", + "name": "Rzepin Airstrip", + "latitude_deg": "52.3221807", + "longitude_deg": "14.810701", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LB", + "municipality": "Rzepin", + "scheduled_service": "no" + }, + { + "id": "323874", + "ident": "PL-0122", + "type": "small_airport", + "name": "Lądowisko Tarnów", + "latitude_deg": "50.0022005", + "longitude_deg": "21.0039163", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MA", + "municipality": "Tarnów", + "scheduled_service": "no" + }, + { + "id": "323876", + "ident": "PL-0123", + "type": "small_airport", + "name": "Międzyrzecz 2", + "latitude_deg": "52.419281", + "longitude_deg": "15.580507", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LB", + "municipality": "Międzyrzecz", + "scheduled_service": "no" + }, + { + "id": "323911", + "ident": "PL-0124", + "type": "small_airport", + "name": "Kępa", + "latitude_deg": "52.7242707", + "longitude_deg": "20.4213518", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Kępa", + "scheduled_service": "no" + }, + { + "id": "323946", + "ident": "PL-0125", + "type": "small_airport", + "name": "Czyże", + "latitude_deg": "52.786205", + "longitude_deg": "23.430968", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PD", + "municipality": "Czyże", + "scheduled_service": "no", + "gps_code": "EPCH", + "keywords": "Hajnówka" + }, + { + "id": "324498", + "ident": "PL-0126", + "type": "heliport", + "name": "Narew Helipad", + "latitude_deg": "52.908916", + "longitude_deg": "23.539053", + "elevation_ft": "445", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PD", + "municipality": "Narew", + "scheduled_service": "no" + }, + { + "id": "324499", + "ident": "PL-0127", + "type": "small_airport", + "name": "Zawiszyn Airfield", + "latitude_deg": "54.277943", + "longitude_deg": "22.537944", + "elevation_ft": "724", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Zawiszyn", + "scheduled_service": "no", + "gps_code": "EPZW" + }, + { + "id": "324501", + "ident": "PL-0128", + "type": "small_airport", + "name": "Lisy Airstrip", + "latitude_deg": "54.219442", + "longitude_deg": "22.044803", + "elevation_ft": "420", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Lisy", + "scheduled_service": "no" + }, + { + "id": "324503", + "ident": "PL-0129", + "type": "small_airport", + "name": "Stare Juchy Landing Site", + "latitude_deg": "53.90725", + "longitude_deg": "22.233334", + "elevation_ft": "377", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Jeziorowskie", + "scheduled_service": "no", + "keywords": "Jeziorowskie" + }, + { + "id": "324505", + "ident": "PL-0130", + "type": "small_airport", + "name": "Bożykowo Airfield", + "latitude_deg": "54.073224", + "longitude_deg": "21.83375", + "elevation_ft": "491", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Spytkowo", + "scheduled_service": "no" + }, + { + "id": "324506", + "ident": "PL-0131", + "type": "small_airport", + "name": "Antonowo Airfield", + "latitude_deg": "54.058166", + "longitude_deg": "21.746916", + "elevation_ft": "390", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Giżycko", + "scheduled_service": "no" + }, + { + "id": "324508", + "ident": "PL-0132", + "type": "small_airport", + "name": "Zyzdrojowa Wola", + "latitude_deg": "53.657473", + "longitude_deg": "21.277417", + "elevation_ft": "450", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Zyzdrojowa Wola", + "scheduled_service": "no" + }, + { + "id": "324509", + "ident": "PL-0133", + "type": "small_airport", + "name": "Lewickie Private Airstrip", + "latitude_deg": "53.029083", + "longitude_deg": "23.134638", + "elevation_ft": "430", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PD", + "municipality": "Lewickie", + "scheduled_service": "no" + }, + { + "id": "324510", + "ident": "PL-0134", + "type": "small_airport", + "name": "Krynice Kolonia", + "latitude_deg": "53.231111", + "longitude_deg": "23.044081", + "elevation_ft": "580", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PD", + "municipality": "Krynice", + "scheduled_service": "no" + }, + { + "id": "324514", + "ident": "PL-0135", + "type": "small_airport", + "name": "Brody Airfield", + "latitude_deg": "53.360165", + "longitude_deg": "23.133138", + "elevation_ft": "480", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PD", + "municipality": "Brody", + "scheduled_service": "no" + }, + { + "id": "324517", + "ident": "PL-0136", + "type": "small_airport", + "name": "Szorce Airstrip", + "latitude_deg": "53.285388", + "longitude_deg": "22.674194", + "elevation_ft": "360", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PD", + "municipality": "Szorce", + "scheduled_service": "no" + }, + { + "id": "324519", + "ident": "PL-0137", + "type": "small_airport", + "name": "Żłobek Mały Airfield", + "latitude_deg": "51.454611", + "longitude_deg": "23.542472", + "elevation_ft": "515", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LU", + "municipality": "Żłobek", + "scheduled_service": "no" + }, + { + "id": "324524", + "ident": "PL-0138", + "type": "small_airport", + "name": "Oleszyce Airstrip", + "latitude_deg": "50.170308", + "longitude_deg": "23.057722", + "elevation_ft": "591", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PK", + "municipality": "Oleszyce", + "scheduled_service": "no" + }, + { + "id": "331643", + "ident": "PL-0139", + "type": "heliport", + "name": "Konstancin Heliport", + "latitude_deg": "52.108543", + "longitude_deg": "21.18733", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Ciszyca", + "scheduled_service": "no" + }, + { + "id": "331713", + "ident": "PL-0140", + "type": "small_airport", + "name": "Jaryszewo Airstrip", + "latitude_deg": "52.69077", + "longitude_deg": "16.615541", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "scheduled_service": "no" + }, + { + "id": "332719", + "ident": "PL-0141", + "type": "small_airport", + "name": "Wola Krakowiańska", + "latitude_deg": "52.027223", + "longitude_deg": "20.807118", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "scheduled_service": "no" + }, + { + "id": "332899", + "ident": "PL-0142", + "type": "small_airport", + "name": "Żabia Wola Airstrip", + "latitude_deg": "52.037988", + "longitude_deg": "20.678865", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Zalesie", + "scheduled_service": "no" + }, + { + "id": "332981", + "ident": "PL-0143", + "type": "small_airport", + "name": "Ryki Airstrip", + "latitude_deg": "51.644122", + "longitude_deg": "21.94768", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LU", + "scheduled_service": "no" + }, + { + "id": "325028", + "ident": "PL-0144", + "type": "small_airport", + "name": "Więckowy Airstrip", + "latitude_deg": "54.061846", + "longitude_deg": "18.363112", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "scheduled_service": "no" + }, + { + "id": "325341", + "ident": "PL-0145", + "type": "small_airport", + "name": "Dobrosułów Airfield", + "latitude_deg": "52.1989335", + "longitude_deg": "15.1266946", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LB", + "scheduled_service": "no" + }, + { + "id": "326006", + "ident": "PL-0146", + "type": "small_airport", + "name": "Ladowisko Natolin", + "latitude_deg": "51.0162386", + "longitude_deg": "18.7547387", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-SL", + "municipality": "Natolin", + "scheduled_service": "no" + }, + { + "id": "326131", + "ident": "PL-0147", + "type": "small_airport", + "name": "Skorupy", + "latitude_deg": "52.055035", + "longitude_deg": "21.428755", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Skorupy", + "scheduled_service": "no", + "keywords": "Kołbiel, Kolbiel" + }, + { + "id": "326176", + "ident": "PL-0148", + "type": "closed", + "name": "Konarzyny Air Base", + "latitude_deg": "53.825333", + "longitude_deg": "17.3525", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "municipality": "Konarzyny", + "scheduled_service": "no", + "keywords": "Sapolno" + }, + { + "id": "326494", + "ident": "PL-0149", + "type": "small_airport", + "name": "Witnica Airstrip", + "latitude_deg": "52.6735", + "longitude_deg": "14.8687", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Witnica", + "scheduled_service": "no", + "keywords": "Lądowisko Witniec,Witnica" + }, + { + "id": "326520", + "ident": "PL-0150", + "type": "small_airport", + "name": "Folwark Piaski Airfield", + "latitude_deg": "52.4798514", + "longitude_deg": "17.7678974", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Piaski", + "scheduled_service": "no" + }, + { + "id": "326748", + "ident": "PL-0151", + "type": "small_airport", + "name": "Lotnisko Orneta", + "latitude_deg": "54.126694", + "longitude_deg": "20.0881201", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "municipality": "Orneta", + "scheduled_service": "no" + }, + { + "id": "326890", + "ident": "PL-0152", + "type": "small_airport", + "name": "Lądowisko Donimierz", + "latitude_deg": "54.486731", + "longitude_deg": "18.169233", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "municipality": "Donimierz", + "scheduled_service": "no" + }, + { + "id": "327323", + "ident": "PL-0153", + "type": "small_airport", + "name": "Lądowisko Pago Dąbcze", + "latitude_deg": "51.8187067", + "longitude_deg": "16.6601499", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Dąbcze", + "scheduled_service": "no" + }, + { + "id": "328168", + "ident": "PL-0154", + "type": "small_airport", + "name": "Nieborów-Bobrowniki", + "latitude_deg": "52.0657447", + "longitude_deg": "20.0322627", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "scheduled_service": "no", + "home_link": "http://aviators.pl" + }, + { + "id": "328209", + "ident": "PL-0155", + "type": "small_airport", + "name": "Łowicz", + "latitude_deg": "52.0831713", + "longitude_deg": "19.8585359", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "municipality": "Łowicz", + "scheduled_service": "no" + }, + { + "id": "328210", + "ident": "PL-0156", + "type": "small_airport", + "name": "Brzeziny", + "latitude_deg": "51.808039", + "longitude_deg": "19.738517", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "scheduled_service": "no" + }, + { + "id": "328241", + "ident": "PL-0157", + "type": "small_airport", + "name": "Kutno", + "latitude_deg": "52.2085919", + "longitude_deg": "19.3907223", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "scheduled_service": "no" + }, + { + "id": "328243", + "ident": "PL-0158", + "type": "small_airport", + "name": "Konary Airstrip", + "latitude_deg": "52.287427", + "longitude_deg": "20.277461", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Brochow", + "scheduled_service": "no", + "keywords": "EPBH" + }, + { + "id": "328541", + "ident": "PL-0159", + "type": "small_airport", + "name": "Suliszew", + "latitude_deg": "51.925352", + "longitude_deg": "20.265214", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "municipality": "Suliszew", + "scheduled_service": "no" + }, + { + "id": "328544", + "ident": "PL-0160", + "type": "small_airport", + "name": "Skierniewice-Psary", + "latitude_deg": "51.8860414", + "longitude_deg": "20.3249962", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "scheduled_service": "no" + }, + { + "id": "328561", + "ident": "PL-0161", + "type": "small_airport", + "name": "Walendów", + "latitude_deg": "52.0805171", + "longitude_deg": "20.8530837", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "scheduled_service": "no" + }, + { + "id": "329010", + "ident": "PL-0162", + "type": "small_airport", + "name": "Stary Wielisław", + "latitude_deg": "50.4070646", + "longitude_deg": "16.5630071", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "municipality": "Stary Wielisław", + "scheduled_service": "no" + }, + { + "id": "330141", + "ident": "PL-0163", + "type": "closed", + "name": "Brużyczka Mała", + "latitude_deg": "51.848148", + "longitude_deg": "19.32928", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "scheduled_service": "no" + }, + { + "id": "330370", + "ident": "PL-0164", + "type": "small_airport", + "name": "Sowiniec", + "latitude_deg": "52.237254", + "longitude_deg": "16.889057", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Mosina", + "scheduled_service": "no" + }, + { + "id": "333987", + "ident": "PL-0165", + "type": "small_airport", + "name": "Ikar Airstrip", + "latitude_deg": "49.752734", + "longitude_deg": "21.511627", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PK", + "municipality": "Jaslo", + "scheduled_service": "no", + "home_link": "http://www.jsl-ikar.eu/" + }, + { + "id": "330659", + "ident": "PL-0166", + "type": "heliport", + "name": "Heli Taxi Chocznia", + "latitude_deg": "49.8806084", + "longitude_deg": "19.4671623", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MA", + "municipality": "Chocznia", + "scheduled_service": "no" + }, + { + "id": "331005", + "ident": "PL-0167", + "type": "small_airport", + "name": "Chojnice", + "latitude_deg": "53.6805", + "longitude_deg": "17.5328", + "elevation_ft": "536", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "scheduled_service": "no" + }, + { + "id": "331012", + "ident": "PL-0168", + "type": "small_airport", + "name": "Stary Kamień Airstrip", + "latitude_deg": "53.7243123", + "longitude_deg": "19.2051347", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "scheduled_service": "no" + }, + { + "id": "331065", + "ident": "PL-0169", + "type": "small_airport", + "name": "Rytel-Uboga Airstrip", + "latitude_deg": "53.739132", + "longitude_deg": "17.830447", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "scheduled_service": "no" + }, + { + "id": "331264", + "ident": "PL-0170", + "type": "small_airport", + "name": "Dębiczek Airstrip", + "latitude_deg": "52.267907", + "longitude_deg": "17.329428", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "municipality": "Dębiczek", + "scheduled_service": "no" + }, + { + "id": "334265", + "ident": "PL-0171", + "type": "small_airport", + "name": "Różanki Airstrip", + "latitude_deg": "52.772424", + "longitude_deg": "15.306475", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LB", + "scheduled_service": "no" + }, + { + "id": "335223", + "ident": "PL-0172", + "type": "small_airport", + "name": "Lądowisko Ldzań", + "latitude_deg": "51.58955", + "longitude_deg": "19.25418", + "elevation_ft": "607", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "scheduled_service": "no" + }, + { + "id": "335324", + "ident": "PL-0173", + "type": "small_airport", + "name": "Lądowisko Wlewsk", + "latitude_deg": "53.2755", + "longitude_deg": "19.7606", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WN", + "scheduled_service": "no" + }, + { + "id": "336330", + "ident": "PL-0174", + "type": "small_airport", + "name": "Wieluń-Olewin", + "latitude_deg": "51.214465", + "longitude_deg": "18.631675", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "scheduled_service": "no" + }, + { + "id": "337303", + "ident": "PL-0175", + "type": "small_airport", + "name": "Lotnisko Wisznice", + "latitude_deg": "51.7789", + "longitude_deg": "23.165767", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LU", + "municipality": "Wisznice", + "scheduled_service": "no" + }, + { + "id": "337304", + "ident": "PL-0176", + "type": "small_airport", + "name": "Lotnisko Nadrybie", + "latitude_deg": "51.35107", + "longitude_deg": "23.02698", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LU", + "scheduled_service": "no" + }, + { + "id": "338774", + "ident": "PL-0177", + "type": "small_airport", + "name": "Lądowisko Kamionka", + "latitude_deg": "53.67644", + "longitude_deg": "18.63286", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-KP", + "municipality": "Smętowo-Graniczne", + "scheduled_service": "no", + "keywords": "Cinek" + }, + { + "id": "341471", + "ident": "PL-0178", + "type": "small_airport", + "name": "Goczałkowice", + "latitude_deg": "49.9524", + "longitude_deg": "18.9419", + "elevation_ft": "870", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-SL", + "scheduled_service": "no" + }, + { + "id": "342328", + "ident": "PL-0179", + "type": "small_airport", + "name": "Wincentów Airstrip", + "latitude_deg": "51.93768", + "longitude_deg": "21.16462", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Wincentów", + "scheduled_service": "no" + }, + { + "id": "343251", + "ident": "PL-0180", + "type": "small_airport", + "name": "Kępno Airstrip", + "latitude_deg": "51.32205", + "longitude_deg": "17.97273", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "scheduled_service": "no", + "keywords": "Kliny" + }, + { + "id": "343252", + "ident": "PL-0181", + "type": "small_airport", + "name": "Majory Airstrip", + "latitude_deg": "51.4316", + "longitude_deg": "18.05835", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "scheduled_service": "no" + }, + { + "id": "345170", + "ident": "PL-0182", + "type": "small_airport", + "name": "Czersk Świecki", + "latitude_deg": "53.5779", + "longitude_deg": "18.48456", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-KP", + "scheduled_service": "no" + }, + { + "id": "345272", + "ident": "PL-0183", + "type": "closed", + "name": "Śniatowo Air Base", + "latitude_deg": "53.87819", + "longitude_deg": "14.86522", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Śniatowo", + "scheduled_service": "no" + }, + { + "id": "345393", + "ident": "PL-0184", + "type": "small_airport", + "name": "Krośniewice Airstrip", + "latitude_deg": "52.25552", + "longitude_deg": "19.15125", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LD", + "scheduled_service": "no" + }, + { + "id": "345462", + "ident": "PL-0185", + "type": "small_airport", + "name": "Osieczna Airfield", + "latitude_deg": "51.915884", + "longitude_deg": "16.708585", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "scheduled_service": "no" + }, + { + "id": "345464", + "ident": "PL-0186", + "type": "small_airport", + "name": "Karminek Airfield", + "latitude_deg": "51.82801", + "longitude_deg": "17.6863", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "scheduled_service": "no" + }, + { + "id": "345483", + "ident": "PL-0187", + "type": "small_airport", + "name": "Przyborów", + "latitude_deg": "51.799433", + "longitude_deg": "15.805635", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LB", + "scheduled_service": "no", + "keywords": "Nowa Sól" + }, + { + "id": "345587", + "ident": "PL-0188", + "type": "small_airport", + "name": "Dębno Airstrip", + "latitude_deg": "51.33468", + "longitude_deg": "16.51771", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "municipality": "Dębno k.Wołowa", + "scheduled_service": "no" + }, + { + "id": "345588", + "ident": "PL-0189", + "type": "small_airport", + "name": "Święta Katarzyna Airstrip", + "latitude_deg": "51.01555", + "longitude_deg": "17.10618", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "scheduled_service": "no" + }, + { + "id": "345629", + "ident": "PL-0190", + "type": "small_airport", + "name": "Wilków Średzki", + "latitude_deg": "51.06434", + "longitude_deg": "16.6979", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "scheduled_service": "no" + }, + { + "id": "345632", + "ident": "PL-0191", + "type": "small_airport", + "name": "Powodovo Airstrip", + "latitude_deg": "52.117", + "longitude_deg": "16.05", + "elevation_ft": "197", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "scheduled_service": "no" + }, + { + "id": "345634", + "ident": "PL-0192", + "type": "small_airport", + "name": "Chalin 1 Airstrip", + "latitude_deg": "52.586038", + "longitude_deg": "16.034364", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "scheduled_service": "no" + }, + { + "id": "345636", + "ident": "PL-0193", + "type": "small_airport", + "name": "Lądowisko Krępsko", + "latitude_deg": "53.25052", + "longitude_deg": "16.75209", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "scheduled_service": "no" + }, + { + "id": "345686", + "ident": "PL-0194", + "type": "small_airport", + "name": "Rawicz Airstrip", + "latitude_deg": "51.61527", + "longitude_deg": "16.90386", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "scheduled_service": "no" + }, + { + "id": "345811", + "ident": "PL-0195", + "type": "small_airport", + "name": "Księginki Airstrip", + "latitude_deg": "51.95672", + "longitude_deg": "17.07527", + "elevation_ft": "334", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "scheduled_service": "no" + }, + { + "id": "346101", + "ident": "PL-0196", + "type": "small_airport", + "name": "Podgórze Airstrip", + "latitude_deg": "51.34014", + "longitude_deg": "16.28043", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "scheduled_service": "no" + }, + { + "id": "346266", + "ident": "PL-0197", + "type": "small_airport", + "name": "Bogatynia Airstrip", + "latitude_deg": "50.93039", + "longitude_deg": "14.97937", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "scheduled_service": "no" + }, + { + "id": "346269", + "ident": "PL-0198", + "type": "small_airport", + "name": "Lądowisko Niegowoniczki", + "latitude_deg": "50.37337", + "longitude_deg": "19.42072", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-SL", + "scheduled_service": "no" + }, + { + "id": "346291", + "ident": "PL-0199", + "type": "small_airport", + "name": "Smolnik Altiport", + "latitude_deg": "49.281514", + "longitude_deg": "22.119274", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PK", + "scheduled_service": "no", + "home_link": "http://www.smolnik.info.pl" + }, + { + "id": "346356", + "ident": "PL-0200", + "type": "small_airport", + "name": "Konopiska Airstrip", + "latitude_deg": "50.73958", + "longitude_deg": "19.00814", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-SL", + "scheduled_service": "no" + }, + { + "id": "346368", + "ident": "PL-0201", + "type": "small_airport", + "name": "Kaczowice Airfield", + "latitude_deg": "50.690789", + "longitude_deg": "17.110305", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-DS", + "scheduled_service": "no" + }, + { + "id": "346443", + "ident": "PL-0202", + "type": "small_airport", + "name": "Żodyń Airstrip", + "latitude_deg": "52.116033", + "longitude_deg": "15.977104", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "scheduled_service": "no" + }, + { + "id": "346444", + "ident": "PL-0203", + "type": "small_airport", + "name": "Nowy Tomyśl Airstrip", + "latitude_deg": "52.308", + "longitude_deg": "16.145643", + "elevation_ft": "187", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "scheduled_service": "no" + }, + { + "id": "346621", + "ident": "PL-0204", + "type": "small_airport", + "name": "Sławno Airfield", + "latitude_deg": "54.39293", + "longitude_deg": "16.68227", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "scheduled_service": "no" + }, + { + "id": "346622", + "ident": "PL-0205", + "type": "closed", + "name": "Lotnisko Stegna-Popowo", + "latitude_deg": "54.303729", + "longitude_deg": "19.11149", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PM", + "municipality": "Stegna", + "scheduled_service": "no" + }, + { + "id": "346667", + "ident": "PL-0206", + "type": "small_airport", + "name": "Lądowisko Trzebicz Nowy", + "latitude_deg": "52.799797", + "longitude_deg": "15.797546", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LB", + "scheduled_service": "no" + }, + { + "id": "346668", + "ident": "PL-0207", + "type": "small_airport", + "name": "Wilkowice Airstrip", + "latitude_deg": "51.89456", + "longitude_deg": "16.5312", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "scheduled_service": "no" + }, + { + "id": "347043", + "ident": "PL-0208", + "type": "small_airport", + "name": "Lądowisko Ożarów", + "latitude_deg": "50.90226", + "longitude_deg": "21.65701", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-SK", + "municipality": "Ożarów", + "scheduled_service": "no" + }, + { + "id": "347088", + "ident": "PL-0209", + "type": "small_airport", + "name": "Lądowisko Tuszów Narodowy", + "latitude_deg": "50.373291", + "longitude_deg": "21.485116", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PK", + "scheduled_service": "no" + }, + { + "id": "347089", + "ident": "PL-0210", + "type": "small_airport", + "name": "Lądowisko Brzeska Wola", + "latitude_deg": "51.60774", + "longitude_deg": "21.00479", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "+", + "scheduled_service": "no", + "gps_code": "EPBI" + }, + { + "id": "347309", + "ident": "PL-0211", + "type": "small_airport", + "name": "Rzędów Airstrip", + "latitude_deg": "50.75962", + "longitude_deg": "18.12882", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-OP", + "scheduled_service": "no" + }, + { + "id": "347685", + "ident": "PL-0212", + "type": "small_airport", + "name": "Ręczaje Airstrip", + "latitude_deg": "52.319747", + "longitude_deg": "21.324613", + "elevation_ft": "310", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "scheduled_service": "no" + }, + { + "id": "351212", + "ident": "PL-0213", + "type": "small_airport", + "name": "Iwno Airstrip", + "latitude_deg": "52.3912", + "longitude_deg": "17.28413", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-WP", + "scheduled_service": "no" + }, + { + "id": "351551", + "ident": "PL-0214", + "type": "small_airport", + "name": "Marianka Airfield", + "latitude_deg": "51.75776", + "longitude_deg": "14.740208", + "elevation_ft": "243", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LB", + "municipality": "Marianka", + "scheduled_service": "no" + }, + { + "id": "353148", + "ident": "PL-0215", + "type": "small_airport", + "name": "Bojszowy Airstrip", + "latitude_deg": "50.04975", + "longitude_deg": "19.09411", + "elevation_ft": "785", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-SL", + "scheduled_service": "no" + }, + { + "id": "353325", + "ident": "PL-0216", + "type": "small_airport", + "name": "Boronów", + "latitude_deg": "50.68065", + "longitude_deg": "18.9154", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-SL", + "scheduled_service": "no" + }, + { + "id": "30042", + "ident": "PL-0217", + "type": "closed", + "name": "Koszalin Zegrze Pomorskie", + "latitude_deg": "54.0425", + "longitude_deg": "16.2656", + "elevation_ft": "249", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "municipality": "Zegrze Pomorskie", + "scheduled_service": "no", + "keywords": "EPKZ, OSZ" + }, + { + "id": "354100", + "ident": "PL-0218", + "type": "small_airport", + "name": "Rewal-Ninikowo private airstrip", + "latitude_deg": "54.063015", + "longitude_deg": "15.028353", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-ZP", + "scheduled_service": "no" + }, + { + "id": "354341", + "ident": "PL-0219", + "type": "small_airport", + "name": "Lądowisko Górki", + "latitude_deg": "50.372812", + "longitude_deg": "21.289465", + "elevation_ft": "515", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-PK", + "scheduled_service": "no" + }, + { + "id": "355239", + "ident": "PL-0220", + "type": "heliport", + "name": "Aircraft Emergency Heliport", + "latitude_deg": "52.561534", + "longitude_deg": "19.71317", + "elevation_ft": "101", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-MZ", + "municipality": "Bielska", + "scheduled_service": "no" + }, + { + "id": "430367", + "ident": "PL-0221", + "type": "small_airport", + "name": "Metelin Airstrip", + "latitude_deg": "50.74542", + "longitude_deg": "23.83732", + "continent": "EU", + "iso_country": "PL", + "iso_region": "PL-LU", + "scheduled_service": "no" + }, + { + "id": "5493", + "ident": "PLCH", + "type": "medium_airport", + "name": "Cassidy International Airport", + "latitude_deg": "1.9861600399017334", + "longitude_deg": "-157.35000610351562", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-L", + "municipality": "Banana", + "scheduled_service": "yes", + "gps_code": "PLCH", + "iata_code": "CXI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cassidy_International_Airport", + "keywords": "Christmas Island" + }, + { + "id": "306995", + "ident": "PLE", + "type": "small_airport", + "name": "Paiela Airport", + "latitude_deg": "-5.372407", + "longitude_deg": "142.975774", + "elevation_ft": "6100", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EPW", + "municipality": "Paiela", + "scheduled_service": "no", + "gps_code": "AYPB", + "iata_code": "PLE", + "local_code": "PAL" + }, + { + "id": "32466", + "ident": "PLFA", + "type": "small_airport", + "name": "Tabuaeran Island Airport", + "latitude_deg": "3.899440050125122", + "longitude_deg": "-159.38900756835938", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-L", + "municipality": "Tabuaeran Island", + "scheduled_service": "no", + "gps_code": "PLFA", + "iata_code": "TNV", + "keywords": "Fanning Island" + }, + { + "id": "6493", + "ident": "PLPA", + "type": "small_airport", + "name": "Palmyra (Cooper) Airport", + "latitude_deg": "5.888748", + "longitude_deg": "-162.077866", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "UM", + "iso_region": "UM-95", + "municipality": "Palmyra Island Atoll", + "scheduled_service": "no", + "gps_code": "PLPA", + "local_code": "P16", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palmyra_(Cooper)_Airport" + }, + { + "id": "308220", + "ident": "PLWN", + "type": "small_airport", + "name": "Washington Island Airstrip", + "latitude_deg": "4.698359", + "longitude_deg": "-160.394376", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "KI", + "iso_region": "KI-L", + "municipality": "Teraina", + "scheduled_service": "no", + "gps_code": "PLWN", + "iata_code": "TNQ" + }, + { + "id": "6494", + "ident": "PM64", + "type": "closed", + "name": "Kure Airport", + "latitude_deg": "28.389278", + "longitude_deg": "-178.29715", + "elevation_ft": "12", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kure Atoll", + "scheduled_service": "no", + "gps_code": "PM64", + "local_code": "PM64" + }, + { + "id": "5494", + "ident": "PMDY", + "type": "medium_airport", + "name": "Henderson Field", + "latitude_deg": "28.2017", + "longitude_deg": "-177.380997", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "UM", + "iso_region": "UM-71", + "municipality": "Sand Island", + "scheduled_service": "no", + "gps_code": "PMDY", + "iata_code": "MDY", + "local_code": "MDY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Henderson_Field_(Midway_Atoll)" + }, + { + "id": "307075", + "ident": "PMP", + "type": "small_airport", + "name": "Pimaga Airport", + "latitude_deg": "-6.49916666667", + "longitude_deg": "143.510277778", + "elevation_ft": "2745", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SHM", + "municipality": "Pimaga", + "scheduled_service": "no", + "gps_code": "AYPJ", + "iata_code": "PMP", + "local_code": "PAG" + }, + { + "id": "24109", + "ident": "PN0", + "type": "small_airport", + "name": "Echo Airport", + "latitude_deg": "41.54029846191406", + "longitude_deg": "-77.306396484375", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Morris", + "scheduled_service": "no", + "gps_code": "PN0", + "local_code": "PN0" + }, + { + "id": "24110", + "ident": "PN00", + "type": "small_airport", + "name": "Crosswinds Airfield", + "latitude_deg": "40.34320068359375", + "longitude_deg": "-75.57270050048828", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Sassamansville", + "scheduled_service": "no", + "gps_code": "PN00", + "local_code": "PN00" + }, + { + "id": "24111", + "ident": "PN01", + "type": "small_airport", + "name": "Cedar Run Airport", + "latitude_deg": "40.58810043334961", + "longitude_deg": "-79.90589904785156", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Dorseyville", + "scheduled_service": "no", + "gps_code": "PN01", + "local_code": "PN01" + }, + { + "id": "24112", + "ident": "PN02", + "type": "small_airport", + "name": "Offutt Acres Airport", + "latitude_deg": "40.984798431396484", + "longitude_deg": "-79.56639862060547", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "East Brady", + "scheduled_service": "no", + "gps_code": "PN02", + "local_code": "PN02" + }, + { + "id": "24113", + "ident": "PN03", + "type": "heliport", + "name": "Abington Memorial Hospital Heliport", + "latitude_deg": "40.11869812011719", + "longitude_deg": "-75.12069702148438", + "elevation_ft": "436", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Abington", + "scheduled_service": "no", + "gps_code": "PN03", + "local_code": "PN03" + }, + { + "id": "24114", + "ident": "PN04", + "type": "closed", + "name": "Strittmatter Airport", + "latitude_deg": "40.547001", + "longitude_deg": "-78.694702", + "elevation_ft": "2080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Ebensburg", + "scheduled_service": "no", + "keywords": "PN04" + }, + { + "id": "24115", + "ident": "PN05", + "type": "heliport", + "name": "Fort Lee Heliport", + "latitude_deg": "40.65140151977539", + "longitude_deg": "-78.82720184326172", + "elevation_ft": "1995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Barnsboro", + "scheduled_service": "no", + "gps_code": "PN05", + "local_code": "PN05" + }, + { + "id": "24116", + "ident": "PN06", + "type": "small_airport", + "name": "Carlson Airport", + "latitude_deg": "41.903268", + "longitude_deg": "-80.103142", + "elevation_ft": "1490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Washington Township", + "scheduled_service": "no", + "keywords": "PN06" + }, + { + "id": "24117", + "ident": "PN07", + "type": "heliport", + "name": "Cranes-N-Lifts Inc Heliport", + "latitude_deg": "41.03089904785156", + "longitude_deg": "-75.77850341796875", + "elevation_ft": "1360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "White Haven", + "scheduled_service": "no", + "gps_code": "PN07", + "local_code": "PN07" + }, + { + "id": "24118", + "ident": "PN08", + "type": "small_airport", + "name": "Davis Airport", + "latitude_deg": "40.73460006713867", + "longitude_deg": "-79.15989685058594", + "elevation_ft": "1373", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Chambersville", + "scheduled_service": "no", + "gps_code": "PN08", + "local_code": "PN08" + }, + { + "id": "24119", + "ident": "PN09", + "type": "heliport", + "name": "Charles Cole Memorial Hospital Heliport", + "latitude_deg": "41.77170181274414", + "longitude_deg": "-77.97969818115234", + "elevation_ft": "1753", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Coudersport", + "scheduled_service": "no", + "gps_code": "PN09", + "local_code": "PN09" + }, + { + "id": "24120", + "ident": "PN10", + "type": "small_airport", + "name": "Cash Creek Airport", + "latitude_deg": "41.8651008605957", + "longitude_deg": "-76.50990295410156", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Ulster", + "scheduled_service": "no", + "gps_code": "PN10", + "local_code": "PN10" + }, + { + "id": "24121", + "ident": "PN11", + "type": "small_airport", + "name": "Reno Airport", + "latitude_deg": "40.889801025390625", + "longitude_deg": "-80.48650360107422", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Enon Valley", + "scheduled_service": "no", + "gps_code": "PN11", + "local_code": "PN11" + }, + { + "id": "24122", + "ident": "PN12", + "type": "closed", + "name": "Sweet Valley / Morris Airport", + "latitude_deg": "41.28103", + "longitude_deg": "-76.14333", + "elevation_ft": "1281", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Sweet Valley", + "scheduled_service": "no", + "keywords": "PN12" + }, + { + "id": "24123", + "ident": "PN13", + "type": "small_airport", + "name": "C & W Milliron Flying Field", + "latitude_deg": "41.28730010986328", + "longitude_deg": "-79.16639709472656", + "elevation_ft": "1700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Sigel", + "scheduled_service": "no", + "gps_code": "PN13", + "local_code": "PN13" + }, + { + "id": "24124", + "ident": "PN14", + "type": "small_airport", + "name": "Misty Hill Farm Airport", + "latitude_deg": "40.789398193359375", + "longitude_deg": "-79.99749755859375", + "elevation_ft": "1243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Ren Frew", + "scheduled_service": "no", + "gps_code": "PN14", + "local_code": "PN14" + }, + { + "id": "24125", + "ident": "PN15", + "type": "small_airport", + "name": "Greeley Airport", + "latitude_deg": "41.877518", + "longitude_deg": "-77.957139", + "elevation_ft": "2300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Coudersport", + "scheduled_service": "no", + "gps_code": "PN15", + "local_code": "PN15" + }, + { + "id": "24126", + "ident": "PN16", + "type": "small_airport", + "name": "Pabst Blue Ribbon Airport", + "latitude_deg": "40.758399963378906", + "longitude_deg": "-80.01370239257812", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Evans City", + "scheduled_service": "no", + "gps_code": "PN16", + "local_code": "PN16" + }, + { + "id": "24127", + "ident": "PN17", + "type": "closed", + "name": "Marsteller Airport", + "latitude_deg": "39.733398", + "longitude_deg": "-76.532997", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Stewartstown", + "scheduled_service": "no", + "keywords": "PN17" + }, + { + "id": "24128", + "ident": "PN18", + "type": "small_airport", + "name": "Fairview Evergreen Airport", + "latitude_deg": "42.02730178833008", + "longitude_deg": "-80.24369812011719", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Fairview", + "scheduled_service": "no", + "gps_code": "PN18", + "local_code": "PN18" + }, + { + "id": "24129", + "ident": "PN19", + "type": "seaplane_base", + "name": "Hunts Cove Seaplane Base", + "latitude_deg": "41.14590072631836", + "longitude_deg": "-79.68730163574219", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Foxburg", + "scheduled_service": "no", + "gps_code": "PN19", + "local_code": "PN19" + }, + { + "id": "24130", + "ident": "PN20", + "type": "heliport", + "name": "Car Tech Heliport", + "latitude_deg": "40.36759948730469", + "longitude_deg": "-75.93299865722656", + "elevation_ft": "268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Reading", + "scheduled_service": "no", + "gps_code": "PN20", + "local_code": "PN20" + }, + { + "id": "24131", + "ident": "PN21", + "type": "closed", + "name": "McClure Airport", + "latitude_deg": "41.8279", + "longitude_deg": "-76.856598", + "elevation_ft": "1470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Troy", + "scheduled_service": "no", + "keywords": "PN21" + }, + { + "id": "45770", + "ident": "PN22", + "type": "heliport", + "name": "University Of Pitt Medical Landing Area Heliport", + "latitude_deg": "41.945", + "longitude_deg": "-78.672156", + "elevation_ft": "1481", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bradford", + "scheduled_service": "no", + "gps_code": "PN22", + "local_code": "PN22" + }, + { + "id": "24132", + "ident": "PN23", + "type": "heliport", + "name": "Mercy Hospital Heliport", + "latitude_deg": "40.435298919677734", + "longitude_deg": "-79.98509979248047", + "elevation_ft": "886", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pittsburgh", + "scheduled_service": "no", + "gps_code": "PN23", + "local_code": "PN23" + }, + { + "id": "24133", + "ident": "PN24", + "type": "seaplane_base", + "name": "Snider Seaplane Base", + "latitude_deg": "40.68339920043945", + "longitude_deg": "-79.66639709472656", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Freeport", + "scheduled_service": "no", + "gps_code": "PN24", + "local_code": "PN24" + }, + { + "id": "24134", + "ident": "PN25", + "type": "small_airport", + "name": "Lindsay Airport", + "latitude_deg": "40.735599517822266", + "longitude_deg": "-79.6886978149414", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Freeport", + "scheduled_service": "no", + "gps_code": "PN25", + "local_code": "PN25" + }, + { + "id": "24135", + "ident": "PN26", + "type": "heliport", + "name": "St Clair Hospital Heliport", + "latitude_deg": "40.378425", + "longitude_deg": "-80.065362", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pittsburgh", + "scheduled_service": "no", + "gps_code": "PN26", + "local_code": "PN26", + "keywords": "St Clair Memorial" + }, + { + "id": "24136", + "ident": "PN27", + "type": "heliport", + "name": "Station 219 Heliport", + "latitude_deg": "41.27479934692383", + "longitude_deg": "-80.27729797363281", + "elevation_ft": "1310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mercer", + "scheduled_service": "no", + "gps_code": "PN27", + "local_code": "PN27" + }, + { + "id": "24137", + "ident": "PN28", + "type": "heliport", + "name": "Campbell's Heliport", + "latitude_deg": "40.2864990234375", + "longitude_deg": "-75.14520263671875", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Doylestown", + "scheduled_service": "no", + "gps_code": "PN28", + "local_code": "PN28" + }, + { + "id": "24138", + "ident": "PN29", + "type": "closed", + "name": "Lazy J Heliport", + "latitude_deg": "41.295898", + "longitude_deg": "-75.594101", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Moscow", + "scheduled_service": "no", + "keywords": "PN29" + }, + { + "id": "24139", + "ident": "PN30", + "type": "small_airport", + "name": "Schrenkel Airport", + "latitude_deg": "40.26279830932617", + "longitude_deg": "-78.10250091552734", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Cassville", + "scheduled_service": "no", + "gps_code": "PN30", + "local_code": "PN30" + }, + { + "id": "24140", + "ident": "PN31", + "type": "small_airport", + "name": "Sagulla Airport", + "latitude_deg": "41.243099212646484", + "longitude_deg": "-80.11419677734375", + "elevation_ft": "1378", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Grove City", + "scheduled_service": "no", + "gps_code": "PN31", + "local_code": "PN31" + }, + { + "id": "24141", + "ident": "PN32", + "type": "heliport", + "name": "Indiana Hospital Heliport", + "latitude_deg": "40.6083984375", + "longitude_deg": "-79.1355972290039", + "elevation_ft": "1285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Indiana", + "scheduled_service": "no", + "gps_code": "PN32", + "local_code": "PN32" + }, + { + "id": "24142", + "ident": "PN33", + "type": "small_airport", + "name": "Branning Field", + "latitude_deg": "41.548179", + "longitude_deg": "-75.281164", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Honesdale", + "scheduled_service": "no", + "gps_code": "PN33", + "local_code": "PN33" + }, + { + "id": "45752", + "ident": "PN34", + "type": "heliport", + "name": "Keystone Heliplex Heliport", + "latitude_deg": "39.978028", + "longitude_deg": "-75.882361", + "elevation_ft": "642", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Coatsville", + "scheduled_service": "no", + "gps_code": "PN34", + "local_code": "PN34" + }, + { + "id": "24143", + "ident": "PN35", + "type": "small_airport", + "name": "Flying R Airport", + "latitude_deg": "40.000099182128906", + "longitude_deg": "-78.08309936523438", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Harrisonville", + "scheduled_service": "no", + "gps_code": "PN35", + "local_code": "PN35" + }, + { + "id": "24144", + "ident": "PN36", + "type": "small_airport", + "name": "Rayne Airport", + "latitude_deg": "40.7333984375", + "longitude_deg": "-79.06729888916016", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Home", + "scheduled_service": "no", + "gps_code": "PN36", + "local_code": "PN36" + }, + { + "id": "24145", + "ident": "PN37", + "type": "small_airport", + "name": "Fino Airport", + "latitude_deg": "40.605098724365234", + "longitude_deg": "-80.45809936523438", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hookstown", + "scheduled_service": "no", + "gps_code": "PN37", + "local_code": "PN37" + }, + { + "id": "24146", + "ident": "PN38", + "type": "small_airport", + "name": "Culmerville Airport", + "latitude_deg": "40.662601470947266", + "longitude_deg": "-79.84559631347656", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Culmerville", + "scheduled_service": "no", + "gps_code": "PN38", + "local_code": "PN38" + }, + { + "id": "24147", + "ident": "PN39", + "type": "closed", + "name": "Exton Heliport", + "latitude_deg": "40.0187", + "longitude_deg": "-75.636299", + "elevation_ft": "323", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Exton", + "scheduled_service": "no", + "local_code": "PN39", + "keywords": "PN39" + }, + { + "id": "24148", + "ident": "PN40", + "type": "small_airport", + "name": "Moorhead Airpark LLC", + "latitude_deg": "42.184200286899994", + "longitude_deg": "-79.8975982666", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "North East", + "scheduled_service": "no", + "gps_code": "PN40", + "local_code": "PN40" + }, + { + "id": "24149", + "ident": "PN42", + "type": "heliport", + "name": "Practice Football Field", + "latitude_deg": "40.625099182128906", + "longitude_deg": "-79.1498031616211", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Indiana", + "scheduled_service": "no", + "gps_code": "PN42", + "local_code": "PN42" + }, + { + "id": "24150", + "ident": "PN43", + "type": "closed", + "name": "Sainovich Airport", + "latitude_deg": "40.7001", + "longitude_deg": "-80.433098", + "elevation_ft": "1275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Industry", + "scheduled_service": "no", + "keywords": "PN43" + }, + { + "id": "24151", + "ident": "PN44", + "type": "heliport", + "name": "Merck/Upper Gwynedd Heliport", + "latitude_deg": "40.21609878540039", + "longitude_deg": "-75.27999877929688", + "elevation_ft": "355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "North Wales", + "scheduled_service": "no", + "gps_code": "PN44", + "local_code": "PN44" + }, + { + "id": "24152", + "ident": "PN45", + "type": "heliport", + "name": "Wyoming Valley Medical Center Heliport", + "latitude_deg": "41.25802", + "longitude_deg": "-75.809", + "elevation_ft": "947", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wilkes-Barre", + "scheduled_service": "no", + "gps_code": "PN45", + "local_code": "PN45" + }, + { + "id": "24153", + "ident": "PN46", + "type": "small_airport", + "name": "River Hill Aviation Airport", + "latitude_deg": "40.56439971923828", + "longitude_deg": "-79.5457992553711", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Apollo", + "scheduled_service": "no", + "gps_code": "PN46", + "local_code": "PN46" + }, + { + "id": "24154", + "ident": "PN47", + "type": "small_airport", + "name": "Lohr's Landing Airport", + "latitude_deg": "40.20830154418945", + "longitude_deg": "-79.05580139160156", + "elevation_ft": "1970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Jennerstown", + "scheduled_service": "no", + "gps_code": "PN47", + "local_code": "PN47" + }, + { + "id": "24155", + "ident": "PN48", + "type": "small_airport", + "name": "Bullfly Ultralightport", + "latitude_deg": "40.70854", + "longitude_deg": "-75.68662", + "elevation_ft": "812", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Germansville", + "scheduled_service": "no", + "gps_code": "PN48", + "local_code": "PN48" + }, + { + "id": "24156", + "ident": "PN49", + "type": "small_airport", + "name": "Dunbar Airport", + "latitude_deg": "40.77199935913086", + "longitude_deg": "-79.42890167236328", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Kittanning", + "scheduled_service": "no", + "gps_code": "PN49", + "local_code": "PN49" + }, + { + "id": "24157", + "ident": "PN50", + "type": "small_airport", + "name": "Skyline Airstrip", + "latitude_deg": "40.506500244140625", + "longitude_deg": "-75.94329833984375", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Shoemakersville", + "scheduled_service": "no", + "gps_code": "PN50", + "local_code": "PN50" + }, + { + "id": "24158", + "ident": "PN51", + "type": "heliport", + "name": "Summers Psnl Use Heliport", + "latitude_deg": "41.66669845581055", + "longitude_deg": "-80.41649627685547", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Linesville", + "scheduled_service": "no", + "gps_code": "PN51", + "local_code": "PN51" + }, + { + "id": "24159", + "ident": "PN52", + "type": "heliport", + "name": "Mike's Heliport", + "latitude_deg": "39.8671989440918", + "longitude_deg": "-75.93360137939453", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Cochranville", + "scheduled_service": "no", + "gps_code": "PN52", + "local_code": "PN52" + }, + { + "id": "24160", + "ident": "PN53", + "type": "small_airport", + "name": "Strohmier Airport", + "latitude_deg": "40.55149841308594", + "longitude_deg": "-78.62339782714844", + "elevation_ft": "1962", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Loretto", + "scheduled_service": "no", + "gps_code": "PN53", + "local_code": "PN53" + }, + { + "id": "24161", + "ident": "PN54", + "type": "small_airport", + "name": "AKM Airfield", + "latitude_deg": "41.837554", + "longitude_deg": "-76.745238", + "elevation_ft": "1393", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Columbia Cross Roads", + "scheduled_service": "no", + "gps_code": "PN54", + "local_code": "PN54" + }, + { + "id": "24162", + "ident": "PN55", + "type": "small_airport", + "name": "Skala Airport", + "latitude_deg": "39.8583984375", + "longitude_deg": "-79.82340240478516", + "elevation_ft": "1270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mc Clellandtown", + "scheduled_service": "no", + "gps_code": "PN55", + "local_code": "PN55" + }, + { + "id": "24163", + "ident": "PN56", + "type": "small_airport", + "name": "Miller Airport", + "latitude_deg": "40.88529968261719", + "longitude_deg": "-78.73919677734375", + "elevation_ft": "1540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mahaffey", + "scheduled_service": "no", + "gps_code": "PN56", + "local_code": "PN56" + }, + { + "id": "24164", + "ident": "PN57", + "type": "small_airport", + "name": "Marion Center Speedway Airport", + "latitude_deg": "40.8120002746582", + "longitude_deg": "-79.03730010986328", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Marion Center", + "scheduled_service": "no", + "gps_code": "PN57", + "local_code": "PN57" + }, + { + "id": "24165", + "ident": "PN58", + "type": "closed", + "name": "Bittner-Whitsel Airport", + "latitude_deg": "39.742065", + "longitude_deg": "-77.523929", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Waynesboro", + "scheduled_service": "no", + "keywords": "PN58" + }, + { + "id": "24166", + "ident": "PN59", + "type": "small_airport", + "name": "Stitt Airport", + "latitude_deg": "40.83110046386719", + "longitude_deg": "-79.48690032958984", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Kittanning", + "scheduled_service": "no", + "gps_code": "PN59", + "local_code": "PN59" + }, + { + "id": "24167", + "ident": "PN60", + "type": "heliport", + "name": "Motola's Paving Heliport", + "latitude_deg": "40.83769989013672", + "longitude_deg": "-75.69719696044922", + "elevation_ft": "433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lehighton", + "scheduled_service": "no", + "gps_code": "PN60", + "local_code": "PN60" + }, + { + "id": "24168", + "ident": "PN61", + "type": "heliport", + "name": "Chero'kee Furko Heliport", + "latitude_deg": "40.5260009765625", + "longitude_deg": "-79.8187026977539", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Plum", + "scheduled_service": "no", + "gps_code": "PN61", + "local_code": "PN61" + }, + { + "id": "24169", + "ident": "PN62", + "type": "small_airport", + "name": "Cataney Airport", + "latitude_deg": "40.375099182128906", + "longitude_deg": "-80.29979705810547", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Midway", + "scheduled_service": "no", + "gps_code": "PN62", + "local_code": "PN62" + }, + { + "id": "24170", + "ident": "PN63", + "type": "heliport", + "name": "Limerick Generating Station Heliport", + "latitude_deg": "40.23310089111328", + "longitude_deg": "-75.58319854736328", + "elevation_ft": "344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Sanatoga", + "scheduled_service": "no", + "gps_code": "PN63", + "local_code": "PN63" + }, + { + "id": "24171", + "ident": "PN64", + "type": "small_airport", + "name": "Hilling International Airport", + "latitude_deg": "40.50239944458008", + "longitude_deg": "-77.93939971923828", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Huntingdon", + "scheduled_service": "no", + "gps_code": "PN64", + "local_code": "PN64" + }, + { + "id": "24172", + "ident": "PN65", + "type": "seaplane_base", + "name": "Deer Lakes Seaplane Base", + "latitude_deg": "40.639198303222656", + "longitude_deg": "-79.693603515625", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Natrona Hgts", + "scheduled_service": "no", + "gps_code": "PN65", + "local_code": "PN65" + }, + { + "id": "24173", + "ident": "PN66", + "type": "small_airport", + "name": "Dunlea Airpark", + "latitude_deg": "40.42559814453125", + "longitude_deg": "-79.36360168457031", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "New Alexandria", + "scheduled_service": "no", + "gps_code": "PN66", + "local_code": "PN66" + }, + { + "id": "24174", + "ident": "PN67", + "type": "closed", + "name": "St Francis Hospital Heliport", + "latitude_deg": "40.988098", + "longitude_deg": "-80.345596", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "New Castle", + "scheduled_service": "no", + "keywords": "PN67" + }, + { + "id": "24175", + "ident": "PN68", + "type": "small_airport", + "name": "Jackson Airport", + "latitude_deg": "40.88932", + "longitude_deg": "-80.36663", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "New Galilee", + "scheduled_service": "no", + "gps_code": "PN68", + "local_code": "PN68" + }, + { + "id": "24176", + "ident": "PN69", + "type": "small_airport", + "name": "Altemose Ultralightport", + "latitude_deg": "40.092498779296875", + "longitude_deg": "-75.51580047607422", + "elevation_ft": "345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Malvern", + "scheduled_service": "no", + "gps_code": "PN69", + "local_code": "PN69" + }, + { + "id": "24177", + "ident": "PN70", + "type": "heliport", + "name": "Kint Farm Heliport", + "latitude_deg": "40.535701751708984", + "longitude_deg": "-77.37960052490234", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Port Royal", + "scheduled_service": "no", + "gps_code": "PN70", + "local_code": "PN70" + }, + { + "id": "24178", + "ident": "PN71", + "type": "small_airport", + "name": "Jansen Vineyards Airport", + "latitude_deg": "40.650001525878906", + "longitude_deg": "-77.05750274658203", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Richfield", + "scheduled_service": "no", + "gps_code": "PN71", + "local_code": "PN71" + }, + { + "id": "24179", + "ident": "PN72", + "type": "small_airport", + "name": "Rocky Hollow Field", + "latitude_deg": "40.56919860839844", + "longitude_deg": "-78.88249969482422", + "elevation_ft": "1806", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Strongstown", + "scheduled_service": "no", + "gps_code": "PN72", + "local_code": "PN72" + }, + { + "id": "24180", + "ident": "PN73", + "type": "small_airport", + "name": "Beers Farm Airport", + "latitude_deg": "40.230098724365234", + "longitude_deg": "-77.92060089111328", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Orbisona/Rockhill", + "scheduled_service": "no", + "gps_code": "PN73", + "local_code": "PN73" + }, + { + "id": "24181", + "ident": "PN74", + "type": "heliport", + "name": "Hilltop Heliport", + "latitude_deg": "41.78200149536133", + "longitude_deg": "-76.8062973022461", + "elevation_ft": "1370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "PN74", + "local_code": "PN74" + }, + { + "id": "24182", + "ident": "PN75", + "type": "heliport", + "name": "Wilkes-Barre General Hospital Heliport", + "latitude_deg": "41.259322", + "longitude_deg": "-75.867046", + "elevation_ft": "655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wilkes-Barre", + "scheduled_service": "no", + "gps_code": "PN75", + "local_code": "PN75" + }, + { + "id": "24183", + "ident": "PN76", + "type": "heliport", + "name": "UPMC Northwest Heliport", + "latitude_deg": "41.3616981506", + "longitude_deg": "-79.700302124", + "elevation_ft": "1415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Seneca", + "scheduled_service": "no", + "gps_code": "PN76", + "local_code": "PN76" + }, + { + "id": "24184", + "ident": "PN77", + "type": "heliport", + "name": "Snyder Office Heliport", + "latitude_deg": "40.816898345947266", + "longitude_deg": "-79.56559753417969", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Kittanning", + "scheduled_service": "no", + "gps_code": "PN77", + "local_code": "PN77" + }, + { + "id": "24185", + "ident": "PN78", + "type": "heliport", + "name": "600 Grant Street Rooftop Heliport", + "latitude_deg": "40.44200134277344", + "longitude_deg": "-79.99530029296875", + "elevation_ft": "1604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pittsburgh", + "scheduled_service": "no", + "gps_code": "PN78", + "local_code": "PN78" + }, + { + "id": "24186", + "ident": "PN79", + "type": "heliport", + "name": "Passavant Hospital Heliport", + "latitude_deg": "40.009498596191406", + "longitude_deg": "-80.0000991821289", + "elevation_ft": "1330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pittsburgh", + "scheduled_service": "no", + "gps_code": "PN79", + "local_code": "PN79" + }, + { + "id": "24187", + "ident": "PN80", + "type": "heliport", + "name": "West Penn Hospital Heliport", + "latitude_deg": "40.46200180053711", + "longitude_deg": "-79.9448013305664", + "elevation_ft": "1117", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pittsburgh", + "scheduled_service": "no", + "gps_code": "PN80", + "local_code": "PN80" + }, + { + "id": "24188", + "ident": "PN81", + "type": "heliport", + "name": "Air One Enterprise Heliport", + "latitude_deg": "40.36640167236328", + "longitude_deg": "-76.73259735107422", + "elevation_ft": "446", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Harrisburg", + "scheduled_service": "no", + "gps_code": "PN81", + "local_code": "PN81" + }, + { + "id": "45771", + "ident": "PN82", + "type": "heliport", + "name": "West Coplay Heliport", + "latitude_deg": "40.674283", + "longitude_deg": "-75.5051", + "elevation_ft": "375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Whitehall", + "scheduled_service": "no", + "gps_code": "PN82", + "local_code": "PN82" + }, + { + "id": "24189", + "ident": "PN83", + "type": "small_airport", + "name": "Skunk Hollow Airport", + "latitude_deg": "40.802799224853516", + "longitude_deg": "-79.20249938964844", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Plumville", + "scheduled_service": "no", + "gps_code": "PN83", + "local_code": "PN83" + }, + { + "id": "24190", + "ident": "PN84", + "type": "small_airport", + "name": "Lake Arthur Field", + "latitude_deg": "40.984500885009766", + "longitude_deg": "-80.16200256347656", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Portersville", + "scheduled_service": "no", + "gps_code": "PN84", + "local_code": "PN84" + }, + { + "id": "24191", + "ident": "PN85", + "type": "small_airport", + "name": "Brandon Airport", + "latitude_deg": "40.87649917602539", + "longitude_deg": "-80.03309631347656", + "elevation_ft": "1290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Prospect", + "scheduled_service": "no", + "gps_code": "PN85", + "local_code": "PN85" + }, + { + "id": "45748", + "ident": "PN86", + "type": "heliport", + "name": "Goodwill Fire Co Nr 1 Heliport", + "latitude_deg": "40.693889", + "longitude_deg": "-76.256111", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Minersville", + "scheduled_service": "no", + "gps_code": "PN86", + "local_code": "PN86" + }, + { + "id": "45751", + "ident": "PN87", + "type": "heliport", + "name": "Hanover Township Fire Station #5 Heliport", + "latitude_deg": "41.235503", + "longitude_deg": "-75.934044", + "elevation_ft": "541", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hanover Township", + "scheduled_service": "no", + "gps_code": "PN87", + "local_code": "PN87" + }, + { + "id": "45763", + "ident": "PN89", + "type": "heliport", + "name": "Ridgway Heliport", + "latitude_deg": "41.418531", + "longitude_deg": "-78.796903", + "elevation_ft": "2042", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Ridgway", + "scheduled_service": "no", + "gps_code": "PN89", + "local_code": "PN89" + }, + { + "id": "24192", + "ident": "PN90", + "type": "small_airport", + "name": "Ranch-Aero Airport", + "latitude_deg": "41.74869918823242", + "longitude_deg": "-78.09970092773438", + "elevation_ft": "1575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Roulette", + "scheduled_service": "no", + "gps_code": "PN90", + "local_code": "PN90" + }, + { + "id": "24193", + "ident": "PN91", + "type": "small_airport", + "name": "Sharretts Airport", + "latitude_deg": "41.827578", + "longitude_deg": "-77.500964", + "elevation_ft": "2360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Sabinsville", + "scheduled_service": "no", + "gps_code": "PN91", + "local_code": "PN91" + }, + { + "id": "345759", + "ident": "PN94", + "type": "heliport", + "name": "Wiconisco Fire Company Heliport", + "latitude_deg": "40.569726", + "longitude_deg": "-76.695916", + "elevation_ft": "671", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wiconisco", + "scheduled_service": "no", + "gps_code": "PN94", + "local_code": "PN94" + }, + { + "id": "24195", + "ident": "PN95", + "type": "small_airport", + "name": "Horne Airport", + "latitude_deg": "40.101349", + "longitude_deg": "-80.039035", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Scenery Hill", + "scheduled_service": "no", + "gps_code": "PN95", + "local_code": "PN95" + }, + { + "id": "346251", + "ident": "PN98", + "type": "small_airport", + "name": "Dream Field", + "latitude_deg": "39.933483", + "longitude_deg": "-78.934101", + "elevation_ft": "2321", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Berlin", + "scheduled_service": "no", + "gps_code": "PN98", + "local_code": "PN98" + }, + { + "id": "24196", + "ident": "PN99", + "type": "small_airport", + "name": "Lackawannock Airport", + "latitude_deg": "41.20589828491211", + "longitude_deg": "-80.35810089111328", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Sharon", + "scheduled_service": "no", + "gps_code": "PN99", + "local_code": "PN99" + }, + { + "id": "46313", + "ident": "PO1", + "type": "small_airport", + "name": "Poplar Muni Airport", + "latitude_deg": "48.134456", + "longitude_deg": "-105.162053", + "elevation_ft": "2036", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Poplar", + "scheduled_service": "no", + "gps_code": "PO1", + "local_code": "PO1" + }, + { + "id": "322341", + "ident": "POSG", + "type": "small_airport", + "name": "Possum Grape Exit", + "latitude_deg": "35.458188", + "longitude_deg": "-91.39795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Possum Grape", + "scheduled_service": "no", + "gps_code": "POSG" + }, + { + "id": "5495", + "ident": "PPIZ", + "type": "medium_airport", + "name": "Point Lay LRRS Airport", + "latitude_deg": "69.73290253", + "longitude_deg": "-163.0050049", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Point Lay", + "scheduled_service": "no", + "gps_code": "PPIZ", + "iata_code": "PIZ", + "local_code": "PIZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Point_Lay_LRRS_Airport" + }, + { + "id": "316652", + "ident": "PPX", + "type": "small_airport", + "name": "Param Airport", + "latitude_deg": "-9.99", + "longitude_deg": "149.477", + "elevation_ft": "4490", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Nepesi", + "scheduled_service": "no", + "iata_code": "PPX", + "local_code": "PAM" + }, + { + "id": "300794", + "ident": "PQD", + "type": "heliport", + "name": "Passikudah Helipad", + "latitude_deg": "7.92310659595", + "longitude_deg": "81.567735672", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-5", + "municipality": "Batticaloa", + "scheduled_service": "no", + "iata_code": "PQD", + "keywords": "Kalkudah" + }, + { + "id": "42322", + "ident": "PR-0001", + "type": "small_airport", + "name": "Mona Airport", + "latitude_deg": "18.07651", + "longitude_deg": "-67.931628", + "elevation_ft": "1", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Mona Island", + "scheduled_service": "no" + }, + { + "id": "42323", + "ident": "PR-0002", + "type": "small_airport", + "name": "Fort Allen Airport", + "latitude_deg": "18.008399963378906", + "longitude_deg": "-66.50669860839844", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Potala Pastillo", + "scheduled_service": "no" + }, + { + "id": "42324", + "ident": "PR-0003", + "type": "small_airport", + "name": "Labadle Airport", + "latitude_deg": "18.448699951171875", + "longitude_deg": "-67.0625991821289", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Aceitunas", + "scheduled_service": "no" + }, + { + "id": "300788", + "ident": "PR-0004", + "type": "closed", + "name": "Salinas Airport", + "latitude_deg": "17.970482", + "longitude_deg": "-66.266021", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Salinas", + "scheduled_service": "yes" + }, + { + "id": "347743", + "ident": "PR-0005", + "type": "heliport", + "name": "Unicentro Helipad", + "latitude_deg": "18.145183", + "longitude_deg": "-65.810236", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Humacao", + "scheduled_service": "no", + "gps_code": "PR31", + "local_code": "PR31" + }, + { + "id": "42316", + "ident": "PR-DDP", + "type": "closed", + "name": "Dorado Beach Airport", + "latitude_deg": "18.4649657136", + "longitude_deg": "-66.295580864", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Dorado", + "scheduled_service": "no", + "iata_code": "DDP" + }, + { + "id": "42317", + "ident": "PR-HUC", + "type": "small_airport", + "name": "Humacao Airport", + "latitude_deg": "18.1380996704", + "longitude_deg": "-65.8013000488", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Humacao", + "scheduled_service": "no", + "iata_code": "HUC", + "local_code": "X63", + "wikipedia_link": "https://en.wikipedia.org/wiki/Humacao_Airport" + }, + { + "id": "42318", + "ident": "PR-PPD", + "type": "closed", + "name": "Palmas del Mar Airstrip", + "latitude_deg": "18.086200714111", + "longitude_deg": "-65.796501159668", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Palmas del Mar", + "scheduled_service": "no", + "iata_code": "PPD" + }, + { + "id": "24207", + "ident": "PR01", + "type": "heliport", + "name": "Hato Rey Heliport", + "latitude_deg": "18.419200897216797", + "longitude_deg": "-66.05670166015625", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "San Juan", + "scheduled_service": "no", + "gps_code": "PR01", + "local_code": "PR01" + }, + { + "id": "24208", + "ident": "PR02", + "type": "heliport", + "name": "Prasa-La Plata Heliport", + "latitude_deg": "18.352500915527344", + "longitude_deg": "-66.23639678955078", + "elevation_ft": "361", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Toa Alta", + "scheduled_service": "no", + "gps_code": "PR02", + "local_code": "PR02" + }, + { + "id": "24209", + "ident": "PR03", + "type": "seaplane_base", + "name": "Fajardo Harbor Seaplane Base", + "latitude_deg": "18.33970069885254", + "longitude_deg": "-65.62460327148438", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Fajardo", + "scheduled_service": "no", + "gps_code": "PR03", + "local_code": "PR03" + }, + { + "id": "24210", + "ident": "PR04", + "type": "heliport", + "name": "Squibb Heliport", + "latitude_deg": "18.148799896240234", + "longitude_deg": "-65.7938003540039", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Humacao", + "scheduled_service": "no", + "gps_code": "PR04", + "local_code": "PR04" + }, + { + "id": "24211", + "ident": "PR06", + "type": "heliport", + "name": "Hill Heliport", + "latitude_deg": "18.299999237060547", + "longitude_deg": "-65.2833023071289", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Culebra", + "scheduled_service": "no", + "gps_code": "PR06", + "local_code": "PR06" + }, + { + "id": "24212", + "ident": "PR07", + "type": "closed", + "name": "Boqueron Airport", + "latitude_deg": "18.2019", + "longitude_deg": "-65.839104", + "elevation_ft": "373", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Las Piedras", + "scheduled_service": "no", + "keywords": "PR07" + }, + { + "id": "24213", + "ident": "PR08", + "type": "heliport", + "name": "Baxter-San German Heliport", + "latitude_deg": "18.08609962463379", + "longitude_deg": "-67.02799987792969", + "elevation_ft": "211", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "San German", + "scheduled_service": "no", + "gps_code": "PR08", + "local_code": "PR08" + }, + { + "id": "24214", + "ident": "PR09", + "type": "heliport", + "name": "Sabalos Ward Heliport", + "latitude_deg": "18.17609977722168", + "longitude_deg": "-67.14669799804688", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Mayaguez", + "scheduled_service": "no", + "gps_code": "PR09", + "local_code": "PR09" + }, + { + "id": "5496", + "ident": "PR10", + "type": "small_airport", + "name": "Boqueron Airport", + "latitude_deg": "18.010700225830078", + "longitude_deg": "-67.14129638671875", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Cabo Rojo", + "scheduled_service": "no", + "gps_code": "PR10", + "local_code": "PR10" + }, + { + "id": "24215", + "ident": "PR11", + "type": "heliport", + "name": "Rexach Office Building Heliport", + "latitude_deg": "18.415199279785156", + "longitude_deg": "-66.12680053710938", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Puerto Nuevo", + "scheduled_service": "no", + "gps_code": "PR11", + "local_code": "PR11" + }, + { + "id": "24216", + "ident": "PR12", + "type": "heliport", + "name": "State Government Number One Heliport", + "latitude_deg": "18.449399948120117", + "longitude_deg": "-66.06659698486328", + "elevation_ft": "269", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "San Juan", + "scheduled_service": "no", + "gps_code": "PR12", + "local_code": "PR12" + }, + { + "id": "24217", + "ident": "PR13", + "type": "heliport", + "name": "Insular Government Number Two Heliport", + "latitude_deg": "18.417400360107422", + "longitude_deg": "-66.07769775390625", + "elevation_ft": "168", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "San Juan", + "scheduled_service": "no", + "gps_code": "PR13", + "local_code": "PR13" + }, + { + "id": "24218", + "ident": "PR14", + "type": "heliport", + "name": "Orama-Iayuya Heliport", + "latitude_deg": "18.21109962463379", + "longitude_deg": "-66.62930297851562", + "elevation_ft": "1463", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Jayuya", + "scheduled_service": "no", + "gps_code": "PR14", + "local_code": "PR14" + }, + { + "id": "24219", + "ident": "PR15", + "type": "heliport", + "name": "Parguera Heliport", + "latitude_deg": "17.975000381469727", + "longitude_deg": "-67.04440307617188", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Lajas", + "scheduled_service": "no", + "gps_code": "PR15", + "local_code": "PR15" + }, + { + "id": "24220", + "ident": "PR16", + "type": "heliport", + "name": "Banco Popular Center Heliport", + "latitude_deg": "18.427400588989258", + "longitude_deg": "-66.05879974365234", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "San Juan", + "scheduled_service": "no", + "gps_code": "PR16", + "local_code": "PR16" + }, + { + "id": "24221", + "ident": "PR17", + "type": "heliport", + "name": "Prasa-Barbosa Heliport", + "latitude_deg": "18.414100646972656", + "longitude_deg": "-66.0438003540039", + "elevation_ft": "163", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "San Juan", + "scheduled_service": "no", + "gps_code": "PR17", + "local_code": "PR17" + }, + { + "id": "24222", + "ident": "PR19", + "type": "heliport", + "name": "Orocovis Health Center Heliport", + "latitude_deg": "18.226600646972656", + "longitude_deg": "-66.39430236816406", + "elevation_ft": "1717", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Orocovis", + "scheduled_service": "no", + "gps_code": "PR19", + "local_code": "PR19" + }, + { + "id": "24223", + "ident": "PR20", + "type": "small_airport", + "name": "Adjuntas Airport", + "latitude_deg": "18.1802", + "longitude_deg": "-66.756897", + "elevation_ft": "2340", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Adjuntas", + "scheduled_service": "no", + "gps_code": "PR20", + "local_code": "PR20" + }, + { + "id": "24224", + "ident": "PR21", + "type": "heliport", + "name": "Fort Buchanan Heliport", + "latitude_deg": "18.415000915527344", + "longitude_deg": "-66.13189697265625", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Guaynabo", + "scheduled_service": "no", + "gps_code": "PR21", + "local_code": "PR21" + }, + { + "id": "24225", + "ident": "PR22", + "type": "heliport", + "name": "Public Buildings Authority Heliport", + "latitude_deg": "18.449199676513672", + "longitude_deg": "-66.06639862060547", + "elevation_ft": "81", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "San Juan", + "scheduled_service": "no", + "gps_code": "PR22", + "local_code": "PR22" + }, + { + "id": "24226", + "ident": "PR23", + "type": "heliport", + "name": "Baxter-Aibonito Heliport", + "latitude_deg": "18.139699935913086", + "longitude_deg": "-66.26629638671875", + "elevation_ft": "1836", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Aibonito", + "scheduled_service": "no", + "gps_code": "PR23", + "local_code": "PR23" + }, + { + "id": "24227", + "ident": "PR24", + "type": "small_airport", + "name": "Cullingford Field", + "latitude_deg": "17.97640037536621", + "longitude_deg": "-67.1707992553711", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Boqueron", + "scheduled_service": "no", + "gps_code": "PR24", + "local_code": "PR24" + }, + { + "id": "42325", + "ident": "PR25", + "type": "small_airport", + "name": "Lajas Airpark", + "latitude_deg": "18.0125007629", + "longitude_deg": "-67.0691986084", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Lajas", + "scheduled_service": "no", + "local_code": "PR25" + }, + { + "id": "24229", + "ident": "PR26", + "type": "heliport", + "name": "Villa Marina Heliport", + "latitude_deg": "18.331300735473633", + "longitude_deg": "-65.63289642333984", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Fajardo", + "scheduled_service": "no", + "gps_code": "PR26", + "local_code": "PR26" + }, + { + "id": "5497", + "ident": "PR27", + "type": "small_airport", + "name": "Santa Isabel Airport", + "latitude_deg": "17.963199615478516", + "longitude_deg": "-66.39119720458984", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Santa Isabel", + "scheduled_service": "no", + "gps_code": "PR27", + "local_code": "PR27" + }, + { + "id": "24230", + "ident": "PR28", + "type": "heliport", + "name": "R.H. Heliport", + "latitude_deg": "18.494199752807617", + "longitude_deg": "-67.02420043945312", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Isabela", + "scheduled_service": "no", + "gps_code": "PR28", + "local_code": "PR28" + }, + { + "id": "24231", + "ident": "PR29", + "type": "heliport", + "name": "Villamil-Mayaguez Mall Heliport", + "latitude_deg": "18.158899307250977", + "longitude_deg": "-67.14640045166016", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Mayaguez", + "scheduled_service": "no", + "keywords": "PR29" + }, + { + "id": "24232", + "ident": "PR30", + "type": "heliport", + "name": "Prtc Office Building Heliport", + "latitude_deg": "18.411100387573242", + "longitude_deg": "-66.10160064697266", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "San Juan", + "scheduled_service": "no", + "gps_code": "PR30", + "local_code": "PR30" + }, + { + "id": "24233", + "ident": "PR31", + "type": "closed", + "name": "San Juan Steam Plant Heliport", + "latitude_deg": "18.42794", + "longitude_deg": "-66.105605", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "San Juan", + "scheduled_service": "no", + "keywords": "PR31" + }, + { + "id": "24234", + "ident": "PR32", + "type": "heliport", + "name": "Hospital Alejandro Otero Lopez Heliport", + "latitude_deg": "18.4335994720459", + "longitude_deg": "-66.48359680175781", + "elevation_ft": "116", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Manati", + "scheduled_service": "no", + "gps_code": "PR32", + "local_code": "PR32" + }, + { + "id": "24235", + "ident": "PR33", + "type": "heliport", + "name": "Bayamon Regional Hospital Heliport", + "latitude_deg": "18.36750030517578", + "longitude_deg": "-66.15380096435547", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Bayamon", + "scheduled_service": "no", + "gps_code": "PR33", + "local_code": "PR33" + }, + { + "id": "24236", + "ident": "PR34", + "type": "seaplane_base", + "name": "San Juan Seaplane Base", + "latitude_deg": "18.457799911499997", + "longitude_deg": "-66.1211013794", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "San Juan", + "scheduled_service": "yes", + "gps_code": "PR34", + "local_code": "PR34" + }, + { + "id": "347745", + "ident": "PR41", + "type": "heliport", + "name": "Palacio Santa Ana Heliport", + "latitude_deg": "18.191747", + "longitude_deg": "-65.982105", + "elevation_ft": "762", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "San Lorenzo", + "scheduled_service": "no", + "gps_code": "PR41", + "local_code": "PR41" + }, + { + "id": "24237", + "ident": "PR42", + "type": "heliport", + "name": "Empresas Diaz-Rio Pedras Heliport", + "latitude_deg": "18.395072", + "longitude_deg": "-66.051283", + "elevation_ft": "154", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "San Juan", + "scheduled_service": "no", + "gps_code": "PR42", + "local_code": "PR42" + }, + { + "id": "24238", + "ident": "PR53", + "type": "heliport", + "name": "Sabanera Heliport", + "latitude_deg": "18.190799713134766", + "longitude_deg": "-66.12079620361328", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Cidra", + "scheduled_service": "no", + "gps_code": "PR53", + "local_code": "PR53" + }, + { + "id": "327250", + "ident": "PR60", + "type": "heliport", + "name": "Lake Huron Medical Center Heliport", + "latitude_deg": "42.956319", + "longitude_deg": "-82.434637", + "elevation_ft": "605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Port Huron", + "scheduled_service": "no", + "gps_code": "PR60", + "local_code": "PR60" + }, + { + "id": "24239", + "ident": "PR68", + "type": "heliport", + "name": "Mora Development Corp Heliport", + "latitude_deg": "18.415300369262695", + "longitude_deg": "-66.07579803466797", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Hato Rey", + "scheduled_service": "no", + "gps_code": "PR68", + "local_code": "PR68" + }, + { + "id": "346599", + "ident": "PR93", + "type": "heliport", + "name": "San Lorenzo Municipal Heliport Nr 1", + "latitude_deg": "18.137822", + "longitude_deg": "-65.982305", + "elevation_ft": "588", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "San Lorenzo", + "scheduled_service": "no", + "gps_code": "PR93", + "local_code": "PR93" + }, + { + "id": "46122", + "ident": "PR99", + "type": "heliport", + "name": "Puerto Heliport", + "latitude_deg": "18.395556", + "longitude_deg": "-66.073611", + "elevation_ft": "129", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "San Juan", + "scheduled_service": "no", + "gps_code": "PR99", + "local_code": "PR99" + }, + { + "id": "309717", + "ident": "PRNO", + "type": "small_airport", + "name": "Siocon Airport", + "latitude_deg": "7.710035", + "longitude_deg": "122.161989", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZAN", + "municipality": "Siocon", + "scheduled_service": "no", + "gps_code": "PRNO", + "iata_code": "XSO" + }, + { + "id": "45009", + "ident": "PS-0001", + "type": "small_airport", + "name": "Jurish Highway Strip H", + "latitude_deg": "32.098363", + "longitude_deg": "35.345356", + "continent": "AS", + "iso_country": "PS", + "iso_region": "PS-NBS", + "municipality": "Jurish", + "scheduled_service": "no", + "keywords": "Palestine, West Bank" + }, + { + "id": "340576", + "ident": "PS-0002", + "type": "closed", + "name": "Muqeible Airfield", + "latitude_deg": "32.503056", + "longitude_deg": "35.289167", + "continent": "AS", + "iso_country": "PS", + "iso_region": "PS-JEN", + "municipality": "Jenin", + "scheduled_service": "no" + }, + { + "id": "340583", + "ident": "PS-0003", + "type": "heliport", + "name": "Bethlehem Heliport", + "latitude_deg": "31.695021", + "longitude_deg": "35.188522", + "continent": "AS", + "iso_country": "PS", + "iso_region": "PS-BTH", + "municipality": "Dheisheh", + "scheduled_service": "no" + }, + { + "id": "24241", + "ident": "PS00", + "type": "closed", + "name": "Tallman West Airport", + "latitude_deg": "40.4056", + "longitude_deg": "-76.94", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Dauphin", + "scheduled_service": "no", + "keywords": "PS00" + }, + { + "id": "24242", + "ident": "PS01", + "type": "heliport", + "name": "Sterling Heliport", + "latitude_deg": "40.081298828125", + "longitude_deg": "-74.89420318603516", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Croydon", + "scheduled_service": "no", + "gps_code": "PS01", + "local_code": "PS01" + }, + { + "id": "24243", + "ident": "PS02", + "type": "small_airport", + "name": "Heberlig Airport", + "latitude_deg": "40.16429901123047", + "longitude_deg": "-77.37049865722656", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Newville", + "scheduled_service": "no", + "gps_code": "PS02", + "local_code": "PS02" + }, + { + "id": "24244", + "ident": "PS03", + "type": "small_airport", + "name": "Elephant Path Airport", + "latitude_deg": "40.410400390625", + "longitude_deg": "-75.22930145263672", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Perkasie", + "scheduled_service": "no", + "gps_code": "PS03", + "local_code": "PS03" + }, + { + "id": "24245", + "ident": "PS04", + "type": "heliport", + "name": "Consol Heliport", + "latitude_deg": "40.347801208496094", + "longitude_deg": "-80.05809783935547", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pittsburgh", + "scheduled_service": "no", + "gps_code": "PS04", + "local_code": "PS04" + }, + { + "id": "24246", + "ident": "PS05", + "type": "small_airport", + "name": "G & N Airport", + "latitude_deg": "41.875301361083984", + "longitude_deg": "-80.37480163574219", + "elevation_ft": "985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Albion", + "scheduled_service": "no", + "gps_code": "PS05", + "local_code": "PS05" + }, + { + "id": "24247", + "ident": "PS06", + "type": "small_airport", + "name": "Snook Airport", + "latitude_deg": "40.7333984375", + "longitude_deg": "-77.26640319824219", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Beaver Springs", + "scheduled_service": "no", + "gps_code": "PS06", + "local_code": "PS06" + }, + { + "id": "24248", + "ident": "PS07", + "type": "heliport", + "name": "St Lukes Miners Memorial Hospital Heliport", + "latitude_deg": "40.820937", + "longitude_deg": "-75.914712", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Coaldale", + "scheduled_service": "no", + "gps_code": "PS07", + "local_code": "PS07", + "keywords": "Miners Memorial Medical Center" + }, + { + "id": "24249", + "ident": "PS08", + "type": "small_airport", + "name": "Lazy B Ranch Airport", + "latitude_deg": "40.02259826660156", + "longitude_deg": "-76.81659698486328", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Dover", + "scheduled_service": "no", + "gps_code": "PS08", + "local_code": "PS08" + }, + { + "id": "24250", + "ident": "PS10", + "type": "heliport", + "name": "Ohioport Heliport", + "latitude_deg": "39.885398864746094", + "longitude_deg": "-79.50749969482422", + "elevation_ft": "2018", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Ohiopyle", + "scheduled_service": "no", + "gps_code": "PS10", + "local_code": "PS10" + }, + { + "id": "24251", + "ident": "PS11", + "type": "small_airport", + "name": "Mc Cardle Farm Airport", + "latitude_deg": "40.6453018188", + "longitude_deg": "-77.55529785159999", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Burnham", + "scheduled_service": "no", + "gps_code": "PS11", + "local_code": "PS11" + }, + { + "id": "24252", + "ident": "PS12", + "type": "small_airport", + "name": "Grover Airport", + "latitude_deg": "40.91680145263672", + "longitude_deg": "-75.86630249023438", + "elevation_ft": "1223", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Weatherly", + "scheduled_service": "no", + "gps_code": "PS12", + "local_code": "PS12" + }, + { + "id": "24253", + "ident": "PS13", + "type": "heliport", + "name": "Boeing Helicopters Center 3 South Heliport", + "latitude_deg": "39.85929870605469", + "longitude_deg": "-75.3196029663086", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Ridley Park", + "scheduled_service": "no", + "gps_code": "PS13", + "local_code": "PS13" + }, + { + "id": "24254", + "ident": "PS14", + "type": "heliport", + "name": "Three Mile Island Heliport", + "latitude_deg": "40.14400100708008", + "longitude_deg": "-76.72329711914062", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Middletown", + "scheduled_service": "no", + "gps_code": "PS14", + "local_code": "PS14" + }, + { + "id": "24255", + "ident": "PS15", + "type": "small_airport", + "name": "Vicars Private Airport", + "latitude_deg": "40.54759979248047", + "longitude_deg": "-78.3917007446289", + "elevation_ft": "1370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Altoona", + "scheduled_service": "no", + "gps_code": "PS15", + "local_code": "PS15" + }, + { + "id": "24256", + "ident": "PS16", + "type": "heliport", + "name": "Holy Redeemer Hospital Heliport", + "latitude_deg": "40.11040115356445", + "longitude_deg": "-75.08290100097656", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "PS16", + "local_code": "PS16" + }, + { + "id": "24257", + "ident": "PS17", + "type": "heliport", + "name": "Marlboro Corporate Park Heliport", + "latitude_deg": "39.8577995300293", + "longitude_deg": "-75.69640350341797", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Kennett Square", + "scheduled_service": "no", + "gps_code": "PS17", + "local_code": "PS17" + }, + { + "id": "24258", + "ident": "PS18", + "type": "small_airport", + "name": "Pecora Field", + "latitude_deg": "41.90370178222656", + "longitude_deg": "-78.62750244140625", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bradford", + "scheduled_service": "no", + "gps_code": "PS18", + "local_code": "PS18" + }, + { + "id": "24259", + "ident": "PS19", + "type": "heliport", + "name": "Arco Newtown Heliport", + "latitude_deg": "39.9922981262207", + "longitude_deg": "-75.41020202636719", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Newtown Square", + "scheduled_service": "no", + "gps_code": "PS19", + "local_code": "PS19" + }, + { + "id": "24260", + "ident": "PS20", + "type": "small_airport", + "name": "Fairview Farm Airfield", + "latitude_deg": "40.53340148925781", + "longitude_deg": "-76.46219635009766", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pine Grove", + "scheduled_service": "no", + "gps_code": "PS20", + "local_code": "PS20" + }, + { + "id": "24261", + "ident": "PS21", + "type": "small_airport", + "name": "Flying Eagle Airport", + "latitude_deg": "40.64590072631836", + "longitude_deg": "-76.81220245361328", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Dalmatia", + "scheduled_service": "no", + "gps_code": "PS21", + "local_code": "PS21" + }, + { + "id": "24262", + "ident": "PS22", + "type": "heliport", + "name": "Hazleton General Hospital Heliport", + "latitude_deg": "40.94940185546875", + "longitude_deg": "-75.9636001586914", + "elevation_ft": "1670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hazleton", + "scheduled_service": "no", + "gps_code": "PS22", + "local_code": "PS22" + }, + { + "id": "24263", + "ident": "PS23", + "type": "closed", + "name": "Windy Hill Airport", + "latitude_deg": "40.085098", + "longitude_deg": "-78.547501", + "elevation_ft": "1622", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Curwensville", + "scheduled_service": "no", + "keywords": "PS23" + }, + { + "id": "24264", + "ident": "PS24", + "type": "heliport", + "name": "Brownsville General Hospital Heliport", + "latitude_deg": "40.003700256347656", + "longitude_deg": "-79.87560272216797", + "elevation_ft": "1199", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Brownsville", + "scheduled_service": "no", + "gps_code": "PS24", + "local_code": "PS24" + }, + { + "id": "24265", + "ident": "PS25", + "type": "closed", + "name": "Captain's Folly Airport", + "latitude_deg": "39.843399", + "longitude_deg": "-77.164703", + "elevation_ft": "641", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Gettysburg", + "scheduled_service": "no", + "keywords": "PS25" + }, + { + "id": "24266", + "ident": "PS26", + "type": "heliport", + "name": "Banning Heliport", + "latitude_deg": "40.63479995727539", + "longitude_deg": "-79.74420166015625", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Natrona Heights", + "scheduled_service": "no", + "gps_code": "PS26", + "local_code": "PS26" + }, + { + "id": "24267", + "ident": "PS27", + "type": "small_airport", + "name": "Juergensen Airpark and Maritime Facility Airport", + "latitude_deg": "39.73139953613281", + "longitude_deg": "-79.375", + "elevation_ft": "1890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Addison", + "scheduled_service": "no", + "gps_code": "PS27", + "local_code": "PS27" + }, + { + "id": "24268", + "ident": "PS28", + "type": "heliport", + "name": "Penn Dda Inc Heliport", + "latitude_deg": "40.035701751708984", + "longitude_deg": "-75.01629638671875", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "PS28", + "local_code": "PS28" + }, + { + "id": "24269", + "ident": "PS29", + "type": "heliport", + "name": "Sugan Pond Heliport", + "latitude_deg": "40.375099182128906", + "longitude_deg": "-74.99130249023438", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Solebury", + "scheduled_service": "no", + "gps_code": "PS29", + "local_code": "PS29" + }, + { + "id": "24270", + "ident": "PS30", + "type": "heliport", + "name": "Mbb Heliport", + "latitude_deg": "39.98759841918945", + "longitude_deg": "-75.5802001953125", + "elevation_ft": "464", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "West Chester", + "scheduled_service": "no", + "gps_code": "PS30", + "local_code": "PS30" + }, + { + "id": "24271", + "ident": "PS31", + "type": "heliport", + "name": "Brubaker Heliport", + "latitude_deg": "40.46039962768555", + "longitude_deg": "-76.34719848632812", + "elevation_ft": "4501", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bethel", + "scheduled_service": "no", + "gps_code": "PS31", + "local_code": "PS31" + }, + { + "id": "24272", + "ident": "PS33", + "type": "heliport", + "name": "Agere Systems-Lehigh Valley Central Campus Heliport", + "latitude_deg": "40.63309860229492", + "longitude_deg": "-75.45860290527344", + "elevation_ft": "358", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Allentown", + "scheduled_service": "no", + "gps_code": "PS33", + "local_code": "PS33" + }, + { + "id": "24273", + "ident": "PS34", + "type": "heliport", + "name": "North Penn Usarc Heliport", + "latitude_deg": "40.19179916381836", + "longitude_deg": "-75.34130096435547", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Worcester", + "scheduled_service": "no", + "gps_code": "PS34", + "local_code": "PS34" + }, + { + "id": "24274", + "ident": "PS35", + "type": "small_airport", + "name": "Dutch Country Egg Farms Airport", + "latitude_deg": "40.458099365234375", + "longitude_deg": "-76.45800018310547", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Fredericksburg", + "scheduled_service": "no", + "gps_code": "PS35", + "local_code": "PS35" + }, + { + "id": "24275", + "ident": "PS38", + "type": "small_airport", + "name": "Bert's Airport", + "latitude_deg": "40.28559875488281", + "longitude_deg": "-75.74819946289062", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Birdsboro - Pottstown", + "scheduled_service": "no", + "gps_code": "PS38", + "local_code": "PS38" + }, + { + "id": "24276", + "ident": "PS39", + "type": "small_airport", + "name": "Downes Airport", + "latitude_deg": "40.628299713134766", + "longitude_deg": "-78.96029663085938", + "elevation_ft": "1590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Clymer", + "scheduled_service": "no", + "gps_code": "PS39", + "local_code": "PS39" + }, + { + "id": "24277", + "ident": "PS40", + "type": "heliport", + "name": "Tri-County Heliport", + "latitude_deg": "40.98619842529297", + "longitude_deg": "-75.83439636230469", + "elevation_ft": "1700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Eckley", + "scheduled_service": "no", + "gps_code": "PS40", + "local_code": "PS40" + }, + { + "id": "24278", + "ident": "PS41", + "type": "heliport", + "name": "Shenango Valley Medical Center Heliport", + "latitude_deg": "41.210601806640625", + "longitude_deg": "-80.46920013427734", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Farrell", + "scheduled_service": "no", + "gps_code": "PS41", + "local_code": "PS41" + }, + { + "id": "24279", + "ident": "PS42", + "type": "closed", + "name": "Northwest Medical Center Oil City Campus Heliport", + "latitude_deg": "41.428398", + "longitude_deg": "-79.696702", + "elevation_ft": "1263", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Oil City", + "scheduled_service": "no", + "keywords": "PS42" + }, + { + "id": "24280", + "ident": "PS43", + "type": "small_airport", + "name": "Barnes Farmland Airport", + "latitude_deg": "41.06809997558594", + "longitude_deg": "-80.25589752197266", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Volant", + "scheduled_service": "no", + "gps_code": "PS43", + "local_code": "PS43" + }, + { + "id": "24281", + "ident": "PS44", + "type": "heliport", + "name": "Operations Center Heliport", + "latitude_deg": "40.61149978637695", + "longitude_deg": "-78.32559967041016", + "elevation_ft": "1035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bellwood", + "scheduled_service": "no", + "gps_code": "PS44", + "local_code": "PS44" + }, + { + "id": "24282", + "ident": "PS46", + "type": "small_airport", + "name": "Graystrip Airport", + "latitude_deg": "40.362300872802734", + "longitude_deg": "-75.1801986694336", + "elevation_ft": "642", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Dublin", + "scheduled_service": "no", + "gps_code": "PS46", + "local_code": "PS46" + }, + { + "id": "24283", + "ident": "PS47", + "type": "small_airport", + "name": "Hamilton Hill Airport", + "latitude_deg": "40.42789840698242", + "longitude_deg": "-78.74140167236328", + "elevation_ft": "2245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Ebensburg", + "scheduled_service": "no", + "gps_code": "PS47", + "local_code": "PS47" + }, + { + "id": "24284", + "ident": "PS48", + "type": "heliport", + "name": "Larksville EMS Heliport", + "latitude_deg": "41.2645", + "longitude_deg": "-75.924897", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Larksville Borough", + "scheduled_service": "no", + "gps_code": "PS48", + "local_code": "PS48", + "keywords": "Edwardsville Borough" + }, + { + "id": "24285", + "ident": "PS49", + "type": "small_airport", + "name": "Pax-Terra Caelum Airport", + "latitude_deg": "39.8599647", + "longitude_deg": "-78.987701", + "elevation_ft": "2335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Meyersdale", + "scheduled_service": "no", + "gps_code": "58PA", + "local_code": "58PA", + "keywords": "PS49, Hartman Airport, Garrett" + }, + { + "id": "24286", + "ident": "PS50", + "type": "small_airport", + "name": "MSM Airport", + "latitude_deg": "41.768015", + "longitude_deg": "-75.723925", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Kingsley", + "scheduled_service": "no", + "gps_code": "PS50", + "local_code": "PS50", + "keywords": "Adams Airport, Huf Airport" + }, + { + "id": "24287", + "ident": "PS51", + "type": "heliport", + "name": "Anzio Heliport", + "latitude_deg": "40.280601501464844", + "longitude_deg": "-76.81639862060547", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Harrisburg", + "scheduled_service": "no", + "gps_code": "PS51", + "local_code": "PS51" + }, + { + "id": "24288", + "ident": "PS52", + "type": "small_airport", + "name": "Alberter Farms Airport", + "latitude_deg": "40.195098876953125", + "longitude_deg": "-78.83280181884766", + "elevation_ft": "2070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Johnstown", + "scheduled_service": "no", + "gps_code": "PS52", + "local_code": "PS52" + }, + { + "id": "24289", + "ident": "PS53", + "type": "small_airport", + "name": "7-H Skeet Club Inc. Field", + "latitude_deg": "40.638999939", + "longitude_deg": "-78.5813980103", + "elevation_ft": "1605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Patton", + "scheduled_service": "no", + "gps_code": "PS53", + "local_code": "PS53" + }, + { + "id": "24290", + "ident": "PS54", + "type": "small_airport", + "name": "Gunden Airport", + "latitude_deg": "40.3293", + "longitude_deg": "-75.281601", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Perkasie", + "scheduled_service": "no", + "gps_code": "PS54", + "local_code": "PS54" + }, + { + "id": "24291", + "ident": "PS55", + "type": "heliport", + "name": "Core States - 1st Pa Heliport", + "latitude_deg": "39.9584007263", + "longitude_deg": "-75.19129943850001", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "PS55", + "local_code": "PS55" + }, + { + "id": "24292", + "ident": "PS56", + "type": "heliport", + "name": "Morris Heliport", + "latitude_deg": "39.779300689697266", + "longitude_deg": "-77.25140380859375", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Gettysburg", + "scheduled_service": "no", + "gps_code": "PS56", + "local_code": "PS56" + }, + { + "id": "24293", + "ident": "PS57", + "type": "heliport", + "name": "C.C. Hospital Heliport", + "latitude_deg": "40.81900024", + "longitude_deg": "-77.84329987", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "State College", + "scheduled_service": "no", + "gps_code": "PS57", + "local_code": "PS57" + }, + { + "id": "24294", + "ident": "PS60", + "type": "heliport", + "name": "Hafer Petroleum Equipment Heliport", + "latitude_deg": "40.30009841918945", + "longitude_deg": "-75.90380096435547", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Reading", + "scheduled_service": "no", + "gps_code": "PS60", + "local_code": "PS60" + }, + { + "id": "24295", + "ident": "PS61", + "type": "small_airport", + "name": "Tidioute Airport", + "latitude_deg": "41.69089889526367", + "longitude_deg": "-79.36589813232422", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tidioute", + "scheduled_service": "no", + "gps_code": "PS61", + "local_code": "PS61" + }, + { + "id": "24296", + "ident": "PS62", + "type": "closed", + "name": "Wind Drift Heliport", + "latitude_deg": "40.807898", + "longitude_deg": "-75.359299", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wind Gap", + "scheduled_service": "no", + "keywords": "PS62" + }, + { + "id": "24297", + "ident": "PS64", + "type": "small_airport", + "name": "Morton's Airport", + "latitude_deg": "41.829873", + "longitude_deg": "-80.072308", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Cambridge Springs", + "scheduled_service": "no", + "gps_code": "PS64", + "local_code": "PS64" + }, + { + "id": "24298", + "ident": "PS65", + "type": "heliport", + "name": "Crozer-Chester Heliport", + "latitude_deg": "39.856201171875", + "longitude_deg": "-75.36710357666016", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Chester", + "scheduled_service": "no", + "gps_code": "PS65", + "local_code": "PS65" + }, + { + "id": "24299", + "ident": "PS66", + "type": "small_airport", + "name": "Parker-Cramer Airport", + "latitude_deg": "41.21149826049805", + "longitude_deg": "-79.36090087890625", + "elevation_ft": "1480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Clarion", + "scheduled_service": "no", + "gps_code": "PS66", + "local_code": "PS66" + }, + { + "id": "24300", + "ident": "PS67", + "type": "small_airport", + "name": "Uphill Airport", + "latitude_deg": "40.106201171875", + "longitude_deg": "-80.43090057373047", + "elevation_ft": "1360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Claysville", + "scheduled_service": "no", + "gps_code": "PS67", + "local_code": "PS67" + }, + { + "id": "24301", + "ident": "PS68", + "type": "small_airport", + "name": "Buckingham Airport", + "latitude_deg": "40.332298278808594", + "longitude_deg": "-75.03040313720703", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Doylestown", + "scheduled_service": "no", + "gps_code": "PS68", + "local_code": "PS68" + }, + { + "id": "24302", + "ident": "PS69", + "type": "small_airport", + "name": "Barnhart Airport", + "latitude_deg": "40.72700119018555", + "longitude_deg": "-78.53949737548828", + "elevation_ft": "1640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Flinton", + "scheduled_service": "no", + "gps_code": "PS69", + "local_code": "PS69" + }, + { + "id": "24303", + "ident": "PS70", + "type": "small_airport", + "name": "Cider Field", + "latitude_deg": "40.605899810791016", + "longitude_deg": "-76.28299713134766", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Friedensburg", + "scheduled_service": "no", + "gps_code": "PS70", + "local_code": "PS70" + }, + { + "id": "24304", + "ident": "PS71", + "type": "heliport", + "name": "St Mary Hospital Heliport", + "latitude_deg": "40.20209884643555", + "longitude_deg": "-74.92289733886719", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Langhorne", + "scheduled_service": "no", + "gps_code": "PS71", + "local_code": "PS71" + }, + { + "id": "24305", + "ident": "PS72", + "type": "heliport", + "name": "Haig-K Heliport", + "latitude_deg": "40.06480026245117", + "longitude_deg": "-75.61129760742188", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lionville", + "scheduled_service": "no", + "gps_code": "PS72", + "local_code": "PS72" + }, + { + "id": "24306", + "ident": "PS73", + "type": "small_airport", + "name": "Poverty Airport", + "latitude_deg": "41.06340026855469", + "longitude_deg": "-77.43360137939453", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mackeyville", + "scheduled_service": "no", + "gps_code": "PS73", + "local_code": "PS73" + }, + { + "id": "24307", + "ident": "PS74", + "type": "heliport", + "name": "Hahn Heliport", + "latitude_deg": "40.80289840698242", + "longitude_deg": "-75.33910369873047", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Nazareth", + "scheduled_service": "no", + "gps_code": "PS74", + "local_code": "PS74" + }, + { + "id": "24308", + "ident": "PS75", + "type": "heliport", + "name": "Peco Oregon Shop Heliport", + "latitude_deg": "39.912601470947266", + "longitude_deg": "-75.13990020751953", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "PS75", + "local_code": "PS75" + }, + { + "id": "24309", + "ident": "PS78", + "type": "heliport", + "name": "Pittsburgh City Center Heliport", + "latitude_deg": "40.4422988892", + "longitude_deg": "-79.9600982666", + "elevation_ft": "1124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pittsburgh", + "scheduled_service": "no", + "gps_code": "PS78", + "local_code": "PS78" + }, + { + "id": "24310", + "ident": "PS80", + "type": "heliport", + "name": "Robbins Nest Heliport", + "latitude_deg": "40.369300842285156", + "longitude_deg": "-75.39710235595703", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Quakertown", + "scheduled_service": "no", + "gps_code": "PS80", + "local_code": "PS80" + }, + { + "id": "24311", + "ident": "PS81", + "type": "heliport", + "name": "Guthrie Robert Packer Hospital Heliport", + "latitude_deg": "41.981191", + "longitude_deg": "-76.520757", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Sayre", + "scheduled_service": "no", + "gps_code": "PS81", + "local_code": "PS81" + }, + { + "id": "24312", + "ident": "PS82", + "type": "small_airport", + "name": "Lazy J. Ranch Airport", + "latitude_deg": "41.2958984375", + "longitude_deg": "-75.59770202636719", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Springbrook", + "scheduled_service": "no", + "gps_code": "PS82", + "local_code": "PS82" + }, + { + "id": "24313", + "ident": "PS83", + "type": "heliport", + "name": "Smithkline Beecham Heliport", + "latitude_deg": "40.07979965209961", + "longitude_deg": "-75.32849884033203", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Swedeland", + "scheduled_service": "no", + "gps_code": "PS83", + "local_code": "PS83" + }, + { + "id": "24314", + "ident": "PS84", + "type": "heliport", + "name": "Warminster Hospital Heliport", + "latitude_deg": "40.184600830099996", + "longitude_deg": "-75.07849884030001", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Warminster", + "scheduled_service": "no", + "gps_code": "PS84", + "local_code": "PS84" + }, + { + "id": "24315", + "ident": "PS85", + "type": "heliport", + "name": "River Hill Heliport", + "latitude_deg": "40.98619842529297", + "longitude_deg": "-76.4291000366211", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bloomsburg", + "scheduled_service": "no", + "gps_code": "PS85", + "local_code": "PS85" + }, + { + "id": "24316", + "ident": "PS87", + "type": "closed", + "name": "Home Safe Airport", + "latitude_deg": "40.1059", + "longitude_deg": "-80.033897", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Scenery Hill", + "scheduled_service": "no", + "keywords": "PS87" + }, + { + "id": "24317", + "ident": "PS88", + "type": "closed", + "name": "Kikkatuck II Seaplane Base", + "latitude_deg": "40.650101", + "longitude_deg": "-79.691397", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Freeport", + "scheduled_service": "no", + "keywords": "PS88" + }, + { + "id": "24318", + "ident": "PS89", + "type": "heliport", + "name": "Press Enterprise Heliport", + "latitude_deg": "41.012001037597656", + "longitude_deg": "-76.40519714355469", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bloomsburg", + "scheduled_service": "no", + "gps_code": "PS89", + "local_code": "PS89" + }, + { + "id": "24319", + "ident": "PS90", + "type": "heliport", + "name": "Ramada Inn-Gettysburg Heliport", + "latitude_deg": "39.76679992675781", + "longitude_deg": "-77.27050018310547", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Gettysburg", + "scheduled_service": "no", + "gps_code": "PS90", + "local_code": "PS90" + }, + { + "id": "24320", + "ident": "PS91", + "type": "heliport", + "name": "Conemaugh Valley Memorial Hospital Heliport", + "latitude_deg": "40.304500579833984", + "longitude_deg": "-78.92060089111328", + "elevation_ft": "1302", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Johnstown", + "scheduled_service": "no", + "gps_code": "PS91", + "local_code": "PS91" + }, + { + "id": "24321", + "ident": "PS92", + "type": "heliport", + "name": "Va Medical Center Heliport", + "latitude_deg": "40.315399169921875", + "longitude_deg": "-76.40299987792969", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "PS92", + "local_code": "PS92" + }, + { + "id": "24322", + "ident": "PS95", + "type": "heliport", + "name": "Mazzuca Heliport", + "latitude_deg": "40.68619918823242", + "longitude_deg": "-76.21019744873047", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pottsville", + "scheduled_service": "no", + "gps_code": "PS95", + "local_code": "PS95" + }, + { + "id": "24323", + "ident": "PS98", + "type": "small_airport", + "name": "Travis Airport", + "latitude_deg": "40.8828010559082", + "longitude_deg": "-79.19650268554688", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Smicksburg", + "scheduled_service": "no", + "gps_code": "PS98", + "local_code": "PS98" + }, + { + "id": "24324", + "ident": "PS99", + "type": "small_airport", + "name": "West Penn Township Airport", + "latitude_deg": "40.74789810180664", + "longitude_deg": "-75.93299865722656", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tamaqua", + "scheduled_service": "no", + "gps_code": "PS99", + "local_code": "PS99" + }, + { + "id": "43769", + "ident": "PT-0001", + "type": "heliport", + "name": "Alfragide Heliport", + "latitude_deg": "38.738392", + "longitude_deg": "-9.215061", + "elevation_ft": "433", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Alfragide", + "scheduled_service": "no", + "gps_code": "LPAF" + }, + { + "id": "43770", + "ident": "PT-0002", + "type": "heliport", + "name": "Barlavento Algarvio Hospital Heliport", + "latitude_deg": "37.156737", + "longitude_deg": "-8.540811", + "elevation_ft": "161", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-08", + "municipality": "Portimão", + "scheduled_service": "no", + "gps_code": "LPBA" + }, + { + "id": "43771", + "ident": "PT-0003", + "type": "heliport", + "name": "Fafe heliport", + "latitude_deg": "41.456435", + "longitude_deg": "-8.138046", + "elevation_ft": "1407", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-03", + "municipality": "Fafe", + "scheduled_service": "no", + "gps_code": "LPFE" + }, + { + "id": "43772", + "ident": "PT-0004", + "type": "heliport", + "name": "Hospital Amadora Heliport", + "latitude_deg": "38.742144", + "longitude_deg": "-9.245749", + "elevation_ft": "443", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Amadora", + "scheduled_service": "no", + "gps_code": "LPAS" + }, + { + "id": "43773", + "ident": "PT-0005", + "type": "heliport", + "name": "Hospital de Santa Cruz heliport", + "latitude_deg": "38.726135", + "longitude_deg": "-9.234083", + "elevation_ft": "329", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Carnaxide", + "scheduled_service": "no", + "gps_code": "LPFX" + }, + { + "id": "43774", + "ident": "PT-0006", + "type": "heliport", + "name": "Hospital de Sao Teotonio heliport", + "latitude_deg": "40.649082", + "longitude_deg": "-7.905788", + "elevation_ft": "1500", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-18", + "municipality": "Viseu", + "scheduled_service": "no", + "gps_code": "LPTT" + }, + { + "id": "43775", + "ident": "PT-0007", + "type": "heliport", + "name": "Hospital Distrital de Abrantes heliport", + "latitude_deg": "39.456142", + "longitude_deg": "-8.199821", + "elevation_ft": "110", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Abrantes", + "scheduled_service": "no", + "gps_code": "LPAB" + }, + { + "id": "43776", + "ident": "PT-0008", + "type": "heliport", + "name": "Hospital Distrital de Faro Heliport", + "latitude_deg": "37.02532", + "longitude_deg": "-7.929432", + "elevation_ft": "149", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-08", + "municipality": "Faro", + "scheduled_service": "no", + "gps_code": "LPFO" + }, + { + "id": "43777", + "ident": "PT-0009", + "type": "heliport", + "name": "Hospital Distrital de Guarda Heliport", + "latitude_deg": "40.529842", + "longitude_deg": "-7.278002", + "elevation_ft": "3278", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-09", + "municipality": "Guarda", + "scheduled_service": "no", + "gps_code": "LPGA" + }, + { + "id": "43778", + "ident": "PT-0010", + "type": "heliport", + "name": "Hospital Distrital Leiria heliport", + "latitude_deg": "39.744537", + "longitude_deg": "-8.793105", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-10", + "municipality": "Leiria", + "scheduled_service": "no", + "gps_code": "LPLE" + }, + { + "id": "43779", + "ident": "PT-0011", + "type": "heliport", + "name": "Hospital do Divino Espirito Santo Heliport", + "latitude_deg": "37.75285", + "longitude_deg": "-25.676204", + "elevation_ft": "305", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-20", + "municipality": "Ponta Delgada", + "scheduled_service": "no", + "gps_code": "LPES" + }, + { + "id": "43780", + "ident": "PT-0012", + "type": "heliport", + "name": "Hospital José Joaquim Fernandes heliport", + "latitude_deg": "38.013336181640625", + "longitude_deg": "-7.869441986083984", + "elevation_ft": "839", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-02", + "municipality": "Beja", + "scheduled_service": "no" + }, + { + "id": "43781", + "ident": "PT-0013", + "type": "heliport", + "name": "Hospital Pedro Hispano heliport", + "latitude_deg": "41.181018", + "longitude_deg": "-8.66258", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-13", + "municipality": "Matosinhos", + "scheduled_service": "no", + "gps_code": "LPPH" + }, + { + "id": "43782", + "ident": "PT-0014", + "type": "heliport", + "name": "São Sebastião Hospital Helipad", + "latitude_deg": "40.929417", + "longitude_deg": "-8.548319", + "elevation_ft": "521", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-01", + "municipality": "Santa Maria da Feira", + "scheduled_service": "no", + "gps_code": "LPSS" + }, + { + "id": "43783", + "ident": "PT-0015", + "type": "heliport", + "name": "Loule heliport", + "latitude_deg": "37.131523", + "longitude_deg": "-8.033168", + "elevation_ft": "404", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-08", + "municipality": "Loule", + "scheduled_service": "no", + "gps_code": "LPLO" + }, + { + "id": "43784", + "ident": "PT-0016", + "type": "heliport", + "name": "Nisa heliport", + "latitude_deg": "39.51499938964844", + "longitude_deg": "-7.651944160461426", + "elevation_ft": "984", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-12", + "municipality": "Nisa", + "scheduled_service": "no" + }, + { + "id": "317209", + "ident": "PT-0017", + "type": "closed", + "name": "Alentejo Air Park", + "latitude_deg": "37.465556", + "longitude_deg": "-8.737222", + "elevation_ft": "422", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-02", + "scheduled_service": "no" + }, + { + "id": "43786", + "ident": "PT-0018", + "type": "heliport", + "name": "Santa Maria Da Feira heliport", + "latitude_deg": "40.93014907836914", + "longitude_deg": "-8.542390823364258", + "elevation_ft": "485", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-01", + "municipality": "Santa Maria Da Feira", + "scheduled_service": "no" + }, + { + "id": "43787", + "ident": "PT-0019", + "type": "heliport", + "name": "Sines heliport", + "latitude_deg": "37.95500946044922", + "longitude_deg": "-8.879358291625977", + "elevation_ft": "104", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "municipality": "Sines", + "scheduled_service": "no" + }, + { + "id": "314015", + "ident": "PT-0020", + "type": "small_airport", + "name": "Aerodromo de Cabeceiras de Basto", + "latitude_deg": "41.556444", + "longitude_deg": "-7.985086", + "elevation_ft": "2410", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-03", + "municipality": "Cabeceiras de Basto", + "scheduled_service": "no" + }, + { + "id": "298559", + "ident": "PT-0021", + "type": "small_airport", + "name": "Benavente Airfield", + "latitude_deg": "38.914227", + "longitude_deg": "-8.786981", + "elevation_ft": "130", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Benavente", + "scheduled_service": "no", + "home_link": "http://www.cvb-aerolazer.com", + "keywords": "Campo de Vôo de Benavente, VLS, Microlight" + }, + { + "id": "314017", + "ident": "PT-0022", + "type": "small_airport", + "name": "Aerodromo do Cerval", + "latitude_deg": "41.972958", + "longitude_deg": "-8.673806", + "elevation_ft": "110", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-16", + "municipality": "Vila Nova de Cerveira", + "scheduled_service": "no" + }, + { + "id": "314020", + "ident": "PT-0023", + "type": "small_airport", + "name": "Laúndos Airfield", + "latitude_deg": "41.4487", + "longitude_deg": "-8.70829", + "elevation_ft": "250", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-13", + "municipality": "Póvoa do Varzim", + "scheduled_service": "no" + }, + { + "id": "314850", + "ident": "PT-0024", + "type": "small_airport", + "name": "Tojeira Airfield", + "latitude_deg": "38.88444", + "longitude_deg": "-9.427868", + "elevation_ft": "180", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Sintra", + "scheduled_service": "no", + "home_link": "http://www.aerodromodatojeira.webs.com/" + }, + { + "id": "315457", + "ident": "PT-0025", + "type": "small_airport", + "name": "Lagos Airfield ULM", + "latitude_deg": "37.121875", + "longitude_deg": "-8.67879", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-08", + "municipality": "Lagos", + "scheduled_service": "no", + "gps_code": "LPLG" + }, + { + "id": "315657", + "ident": "PT-0026", + "type": "small_airport", + "name": "Aerodromo Municipal de Agueda", + "latitude_deg": "40.548704", + "longitude_deg": "-8.40548", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-01", + "municipality": "Águeda", + "scheduled_service": "no" + }, + { + "id": "315673", + "ident": "PT-0027", + "type": "small_airport", + "name": "Arraiolos Ultralight Airfield", + "latitude_deg": "38.702191", + "longitude_deg": "-8.013582", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-07", + "municipality": "Arraiolos", + "scheduled_service": "no" + }, + { + "id": "315894", + "ident": "PT-0028", + "type": "closed", + "name": "Aeródromo de Vila Meã", + "latitude_deg": "40.426368", + "longitude_deg": "-8.232252", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-18", + "municipality": "Mortágua", + "scheduled_service": "no" + }, + { + "id": "316226", + "ident": "PT-0029", + "type": "small_airport", + "name": "Aeródromo de Coja", + "latitude_deg": "40.2748", + "longitude_deg": "-7.9747", + "elevation_ft": "925", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-06", + "municipality": "Arganil", + "scheduled_service": "no" + }, + { + "id": "316227", + "ident": "PT-0030", + "type": "small_airport", + "name": "Pista do Monte do Lago", + "latitude_deg": "39.07502", + "longitude_deg": "-8.13889", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-12", + "municipality": "Montargil", + "scheduled_service": "no" + }, + { + "id": "317213", + "ident": "PT-0031", + "type": "small_airport", + "name": "Beja Civil Airfield", + "latitude_deg": "38.06138", + "longitude_deg": "-7.87767", + "elevation_ft": "617", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-02", + "municipality": "Beja", + "scheduled_service": "no" + }, + { + "id": "317216", + "ident": "PT-0032", + "type": "small_airport", + "name": "Amendoeira Aerodrome", + "latitude_deg": "38.709167", + "longitude_deg": "-8.275277", + "elevation_ft": "614", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-07", + "municipality": "Montemor-o-Novo", + "scheduled_service": "no", + "gps_code": "LPMN", + "home_link": "http://www.centrovoolivre.com/", + "keywords": "Aerodromo da Amendoeira, Montemor o Novo" + }, + { + "id": "320147", + "ident": "PT-0033", + "type": "small_airport", + "name": "Aeródromo de Pombal", + "latitude_deg": "39.885631", + "longitude_deg": "-8.6496927", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-10", + "municipality": "Pombal", + "scheduled_service": "no" + }, + { + "id": "320150", + "ident": "PT-0034", + "type": "closed", + "name": "Aeródromo da Lourinhã", + "latitude_deg": "39.260908", + "longitude_deg": "-9.335606", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Lourinhã", + "scheduled_service": "no" + }, + { + "id": "320152", + "ident": "PT-0035", + "type": "small_airport", + "name": "Aeródromo de Seia", + "latitude_deg": "40.453186", + "longitude_deg": "-7.692059", + "elevation_ft": "1445", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-09", + "municipality": "Seia", + "scheduled_service": "no", + "gps_code": "LPSE", + "keywords": "Serra da Estrela, Seia Airport" + }, + { + "id": "320211", + "ident": "PT-0036", + "type": "small_airport", + "name": "Aeródromo Municipal de Ferreira do Zezere", + "latitude_deg": "39.682059", + "longitude_deg": "-8.253189", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Ferreira do Zêzere", + "scheduled_service": "no", + "keywords": "Ferreira do Zêzere" + }, + { + "id": "320264", + "ident": "PT-0037", + "type": "small_airport", + "name": "Aeródromo da Pampilhosa da Serra", + "latitude_deg": "40.026869", + "longitude_deg": "-7.955008", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-06", + "municipality": "Pampilhosa da Serra", + "scheduled_service": "no" + }, + { + "id": "320273", + "ident": "PT-0038", + "type": "small_airport", + "name": "Aerodromo Fátima Giesteira", + "latitude_deg": "39.58067", + "longitude_deg": "-8.663004", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Fátima", + "scheduled_service": "no" + }, + { + "id": "320274", + "ident": "PT-0039", + "type": "small_airport", + "name": "Aérodromo de Ferreira do Alentejo", + "latitude_deg": "38.040061", + "longitude_deg": "-8.10423", + "elevation_ft": "459", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-02", + "municipality": "Ferreira do Alentejo", + "scheduled_service": "no", + "gps_code": "LPFA" + }, + { + "id": "320291", + "ident": "PT-0040", + "type": "small_airport", + "name": "Aérodromo Municipal de Proença-a-Nova", + "latitude_deg": "39.731217", + "longitude_deg": "-7.87495", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-05", + "municipality": "Proença-a-Nova", + "scheduled_service": "no", + "gps_code": "LPPN" + }, + { + "id": "320315", + "ident": "PT-0041", + "type": "small_airport", + "name": "Leziria Aerodrome", + "latitude_deg": "38.902297", + "longitude_deg": "-8.93682", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Vila Franca de Xira", + "scheduled_service": "no", + "keywords": "Aerodromo da Lezíria" + }, + { + "id": "320570", + "ident": "PT-0042", + "type": "small_airport", + "name": "Campo de Voo de Valdonas", + "latitude_deg": "39.59119", + "longitude_deg": "-8.371753", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Tomar", + "scheduled_service": "no" + }, + { + "id": "321101", + "ident": "PT-0043", + "type": "small_airport", + "name": "Aeródromo de Óbidos", + "latitude_deg": "39.3907221", + "longitude_deg": "-9.1982199", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Óbidos", + "scheduled_service": "no" + }, + { + "id": "321245", + "ident": "PT-0044", + "type": "heliport", + "name": "Torres Vedras Heliport", + "latitude_deg": "39.089058", + "longitude_deg": "-9.263175", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Torres Vedras", + "scheduled_service": "no" + }, + { + "id": "321246", + "ident": "PT-0045", + "type": "heliport", + "name": "Santarém Hospital Heliport", + "latitude_deg": "39.24183", + "longitude_deg": "-8.697563", + "elevation_ft": "122", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Santarém", + "scheduled_service": "no" + }, + { + "id": "321247", + "ident": "PT-0046", + "type": "heliport", + "name": "Pernes Heliport", + "latitude_deg": "39.376207", + "longitude_deg": "-8.661629", + "elevation_ft": "95", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Pernes", + "scheduled_service": "no" + }, + { + "id": "321248", + "ident": "PT-0047", + "type": "heliport", + "name": "Monchique Heliport", + "latitude_deg": "37.32013", + "longitude_deg": "-8.552329", + "elevation_ft": "1437", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-08", + "municipality": "Monchique", + "scheduled_service": "no" + }, + { + "id": "321270", + "ident": "PT-0048", + "type": "heliport", + "name": "Sardoal Heliport", + "latitude_deg": "39.54254", + "longitude_deg": "-8.160328", + "elevation_ft": "712", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Sardoal", + "scheduled_service": "no", + "gps_code": "LPSD", + "keywords": "Tapada da Torre" + }, + { + "id": "323769", + "ident": "PT-0049", + "type": "heliport", + "name": "Coimbra Hospital Covões Heliport", + "latitude_deg": "40.194812", + "longitude_deg": "-8.460207", + "elevation_ft": "265", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-06", + "municipality": "Coimba", + "scheduled_service": "no", + "gps_code": "LPCV" + }, + { + "id": "322431", + "ident": "PT-0050", + "type": "small_airport", + "name": "Martim Longo Airstrip", + "latitude_deg": "37.433582", + "longitude_deg": "-7.763626", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-08", + "municipality": "Alcoutim", + "scheduled_service": "no" + }, + { + "id": "323772", + "ident": "PT-0051", + "type": "heliport", + "name": "Lamego Hospital Heliport", + "latitude_deg": "41.082095", + "longitude_deg": "-7.796558", + "elevation_ft": "1840", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-18", + "municipality": "Lamego", + "scheduled_service": "no" + }, + { + "id": "324800", + "ident": "PT-0052", + "type": "small_airport", + "name": "Pista da Herdade da Zambujeira", + "latitude_deg": "37.67084", + "longitude_deg": "-8.123743", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-02", + "municipality": "Castro Verde", + "scheduled_service": "no" + }, + { + "id": "326666", + "ident": "PT-0053", + "type": "small_airport", + "name": "Fátima Salgueira Airstrip", + "latitude_deg": "39.560839", + "longitude_deg": "-8.640919", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-10", + "municipality": "Fátima", + "scheduled_service": "no" + }, + { + "id": "326667", + "ident": "PT-0054", + "type": "closed", + "name": "Aerodromo de Pias Longas (Old - Closed)", + "latitude_deg": "39.586541", + "longitude_deg": "-8.577726", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Ourém", + "scheduled_service": "no" + }, + { + "id": "326668", + "ident": "PT-0055", + "type": "small_airport", + "name": "Aerodromo de Pias Longas (New)", + "latitude_deg": "39.597207", + "longitude_deg": "-8.567748", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Ourém", + "scheduled_service": "no" + }, + { + "id": "326669", + "ident": "PT-0056", + "type": "small_airport", + "name": "Pista do Arrepiado", + "latitude_deg": "39.446011", + "longitude_deg": "-8.412019", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Chamusca", + "scheduled_service": "no" + }, + { + "id": "326670", + "ident": "PT-0057", + "type": "small_airport", + "name": "Pista da Herdade da Comporta", + "latitude_deg": "38.393944", + "longitude_deg": "-8.788311", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "municipality": "Alcácer do Sal", + "scheduled_service": "no" + }, + { + "id": "326671", + "ident": "PT-0058", + "type": "small_airport", + "name": "Pista da Coudelaria Herdade do Pinheiro", + "latitude_deg": "38.456513", + "longitude_deg": "-8.71749", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "municipality": "Alcácer do Sal", + "scheduled_service": "no" + }, + { + "id": "326672", + "ident": "PT-0059", + "type": "closed", + "name": "Pista da SAPEC (Santa Catarina)", + "latitude_deg": "38.494813", + "longitude_deg": "-8.819296", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "municipality": "Setúbal", + "scheduled_service": "no" + }, + { + "id": "326673", + "ident": "PT-0060", + "type": "small_airport", + "name": "Pista de Montevil (Batalha)", + "latitude_deg": "38.397661", + "longitude_deg": "-8.575387", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "municipality": "Alcácer do Sal", + "scheduled_service": "no" + }, + { + "id": "326674", + "ident": "PT-0061", + "type": "small_airport", + "name": "Pista da Herdade da Barrosinha", + "latitude_deg": "38.346941", + "longitude_deg": "-8.442607", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "municipality": "Alcácer do Sal", + "scheduled_service": "no" + }, + { + "id": "326675", + "ident": "PT-0062", + "type": "small_airport", + "name": "Aerodromo da Palma", + "latitude_deg": "38.514292", + "longitude_deg": "-8.575752", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "municipality": "Alcácer do Sal", + "scheduled_service": "no" + }, + { + "id": "326676", + "ident": "PT-0063", + "type": "small_airport", + "name": "Pista de Melides", + "latitude_deg": "38.196371", + "longitude_deg": "-8.729496", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "municipality": "Grândola", + "scheduled_service": "no" + }, + { + "id": "326677", + "ident": "PT-0064", + "type": "small_airport", + "name": "Pista de Aguas de Moura", + "latitude_deg": "38.579004", + "longitude_deg": "-8.696119", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "municipality": "Palmela", + "scheduled_service": "no" + }, + { + "id": "326678", + "ident": "PT-0065", + "type": "small_airport", + "name": "Herdade do Rio Frio Airstrip", + "latitude_deg": "38.680518", + "longitude_deg": "-8.857877", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "municipality": "Palmela", + "scheduled_service": "no", + "keywords": "Pista da Herdade do Rio Frio" + }, + { + "id": "326679", + "ident": "PT-0066", + "type": "closed", + "name": "Alhos Vedros Aerodrome", + "latitude_deg": "38.664821", + "longitude_deg": "-9.027929", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "municipality": "Moita", + "scheduled_service": "no", + "keywords": "Aerodromo de Alhos Vedros" + }, + { + "id": "326680", + "ident": "PT-0067", + "type": "small_airport", + "name": "Pista da Torre Vã", + "latitude_deg": "37.839987", + "longitude_deg": "-8.512602", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-02", + "municipality": "Odemira", + "scheduled_service": "no" + }, + { + "id": "326681", + "ident": "PT-0068", + "type": "closed", + "name": "Pista do Torrão", + "latitude_deg": "38.313798", + "longitude_deg": "-8.262169", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "municipality": "Alcácer do Sal", + "scheduled_service": "no" + }, + { + "id": "326682", + "ident": "PT-0069", + "type": "small_airport", + "name": "Pista de Lavre", + "latitude_deg": "38.799701", + "longitude_deg": "-8.49771", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-07", + "municipality": "Montemor-o-Novo", + "scheduled_service": "no" + }, + { + "id": "326683", + "ident": "PT-0070", + "type": "closed", + "name": "Pista de Grandola", + "latitude_deg": "38.163218", + "longitude_deg": "-8.538029", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "municipality": "Grândola", + "scheduled_service": "no" + }, + { + "id": "326684", + "ident": "PT-0071", + "type": "closed", + "name": "Pista de Fonte Serne", + "latitude_deg": "37.883254", + "longitude_deg": "-8.448293", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "municipality": "Santiago do Cacém", + "scheduled_service": "no" + }, + { + "id": "326686", + "ident": "PT-0072", + "type": "closed", + "name": "Pista do Cabo Sardão", + "latitude_deg": "37.631286", + "longitude_deg": "-8.763292", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-02", + "municipality": "Odemira", + "scheduled_service": "no" + }, + { + "id": "326687", + "ident": "PT-0073", + "type": "heliport", + "name": "Bombeiros de Sines Heliport", + "latitude_deg": "37.958706", + "longitude_deg": "-8.861927", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "municipality": "Sines", + "scheduled_service": "no" + }, + { + "id": "326688", + "ident": "PT-0074", + "type": "heliport", + "name": "Bombeiros de Alcacer do Sal Heliport", + "latitude_deg": "38.36921", + "longitude_deg": "-8.506197", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "municipality": "Alcácer do Sal", + "scheduled_service": "no" + }, + { + "id": "326689", + "ident": "PT-0075", + "type": "heliport", + "name": "Herdade da Apostiça Heliport", + "latitude_deg": "38.534118", + "longitude_deg": "-9.126399", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "municipality": "Sesimbra", + "scheduled_service": "no" + }, + { + "id": "326690", + "ident": "PT-0076", + "type": "closed", + "name": "Pista da Sonega", + "latitude_deg": "37.84125", + "longitude_deg": "-8.743787", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "municipality": "Sines", + "scheduled_service": "no" + }, + { + "id": "326691", + "ident": "PT-0077", + "type": "small_airport", + "name": "Aerodromo de Ourique", + "latitude_deg": "37.665784", + "longitude_deg": "-8.228631", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-02", + "municipality": "Ourique", + "scheduled_service": "no" + }, + { + "id": "326692", + "ident": "PT-0078", + "type": "closed", + "name": "Pista da Barragem de Odivelas", + "latitude_deg": "38.215474", + "longitude_deg": "-8.080187", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-02", + "municipality": "Alvito", + "scheduled_service": "no" + }, + { + "id": "326693", + "ident": "PT-0079", + "type": "heliport", + "name": "Hospital das Forças Armadas Heliport", + "latitude_deg": "38.767674", + "longitude_deg": "-9.174137", + "elevation_ft": "396", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Lisbon", + "scheduled_service": "no", + "gps_code": "LPHO" + }, + { + "id": "326696", + "ident": "PT-0080", + "type": "closed", + "name": "Pista da Barragem do Roxo", + "latitude_deg": "37.932487", + "longitude_deg": "-8.08362", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-02", + "municipality": "Aljustrel", + "scheduled_service": "no" + }, + { + "id": "326697", + "ident": "PT-0081", + "type": "closed", + "name": "Armacao de Pera Airfield ULM", + "latitude_deg": "37.110756", + "longitude_deg": "-8.34417", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-08", + "municipality": "Silves", + "scheduled_service": "no" + }, + { + "id": "326698", + "ident": "PT-0082", + "type": "closed", + "name": "Aerodromo de Tavira ULM", + "latitude_deg": "37.114901", + "longitude_deg": "-7.662749", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-08", + "municipality": "Tavira", + "scheduled_service": "no" + }, + { + "id": "326706", + "ident": "PT-0083", + "type": "small_airport", + "name": "Pista do Belo", + "latitude_deg": "37.576079", + "longitude_deg": "-7.743988", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-02", + "municipality": "Mértola", + "scheduled_service": "no" + }, + { + "id": "326707", + "ident": "PT-0084", + "type": "small_airport", + "name": "Pista da Adiça", + "latitude_deg": "38.062757", + "longitude_deg": "-7.268711", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-02", + "municipality": "Moura", + "scheduled_service": "no" + }, + { + "id": "326708", + "ident": "PT-0085", + "type": "small_airport", + "name": "Pista do Monte das Tezas", + "latitude_deg": "38.107096", + "longitude_deg": "-7.166846", + "elevation_ft": "830", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-02", + "municipality": "Moura", + "scheduled_service": "no" + }, + { + "id": "326709", + "ident": "PT-0086", + "type": "closed", + "name": "Aerodromo da Amareleja", + "latitude_deg": "38.179117", + "longitude_deg": "-7.205958", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-02", + "municipality": "Moura", + "scheduled_service": "no" + }, + { + "id": "326710", + "ident": "PT-0087", + "type": "small_airport", + "name": "Pista de Alcanena", + "latitude_deg": "39.471293", + "longitude_deg": "-8.670402", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Alcanena", + "scheduled_service": "no" + }, + { + "id": "332598", + "ident": "PT-0088", + "type": "small_airport", + "name": "V. das Areias Airfield", + "latitude_deg": "38.956235", + "longitude_deg": "-8.845059", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Samora Correia", + "scheduled_service": "no" + }, + { + "id": "326712", + "ident": "PT-0089", + "type": "closed", + "name": "Pista de Campo Maior", + "latitude_deg": "39.027327", + "longitude_deg": "-7.130663", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-12", + "municipality": "Arronches", + "scheduled_service": "no" + }, + { + "id": "326713", + "ident": "PT-0090", + "type": "small_airport", + "name": "Aerodromo de Monforte", + "latitude_deg": "39.059904", + "longitude_deg": "-7.421753", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-12", + "municipality": "Monforte", + "scheduled_service": "no" + }, + { + "id": "326714", + "ident": "PT-0091", + "type": "closed", + "name": "Viana do Alentejo Aerodrome", + "latitude_deg": "38.360991", + "longitude_deg": "-8.057957", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-07", + "municipality": "Viana do Alentejo", + "scheduled_service": "no", + "keywords": "Aerodromo de Viana do Alentejo" + }, + { + "id": "326715", + "ident": "PT-0092", + "type": "small_airport", + "name": "Herdade da Lentisca Airstrip", + "latitude_deg": "38.339418", + "longitude_deg": "-7.855396", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-07", + "municipality": "Portel", + "scheduled_service": "no", + "keywords": "Pista da Herdade da Lentisca" + }, + { + "id": "326716", + "ident": "PT-0093", + "type": "small_airport", + "name": "Cerieira Airfield", + "latitude_deg": "38.424545", + "longitude_deg": "-7.72326", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-07", + "municipality": "Portel", + "scheduled_service": "no", + "keywords": "Campo de Voo da Cerieira" + }, + { + "id": "326717", + "ident": "PT-0094", + "type": "small_airport", + "name": "Campinho Airfield", + "latitude_deg": "38.359106", + "longitude_deg": "-7.465532", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-07", + "municipality": "Reguengos de Monsaraz", + "scheduled_service": "no", + "keywords": "Campo de Voo do Campinho" + }, + { + "id": "326718", + "ident": "PT-0095", + "type": "small_airport", + "name": "Reguengos de Monsaraz Airstrip", + "latitude_deg": "38.381674", + "longitude_deg": "-7.55177", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-07", + "municipality": "Reguengos de Monsaraz", + "scheduled_service": "no", + "keywords": "Pista de Reguengos de Monsaraz" + }, + { + "id": "326719", + "ident": "PT-0096", + "type": "small_airport", + "name": "Nossa Senhora de Machede Airstrip", + "latitude_deg": "38.599527", + "longitude_deg": "-7.820549", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-07", + "municipality": "Évora", + "scheduled_service": "no", + "keywords": "Pista da Nossa Senhora de Machede" + }, + { + "id": "326734", + "ident": "PT-0097", + "type": "closed", + "name": "Aerodromo do Coentral", + "latitude_deg": "40.0767", + "longitude_deg": "-8.158336", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-10", + "municipality": "Castanheira de Pêra", + "scheduled_service": "no" + }, + { + "id": "326735", + "ident": "PT-0098", + "type": "closed", + "name": "Pista do Sorraia", + "latitude_deg": "39.966636", + "longitude_deg": "-8.157102", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-10", + "municipality": "Pedrógão Grande", + "scheduled_service": "no" + }, + { + "id": "326736", + "ident": "PT-0099", + "type": "small_airport", + "name": "Pista do Cabeço da Vaca", + "latitude_deg": "40.345145", + "longitude_deg": "-6.979752", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-09", + "municipality": "Sabugal", + "scheduled_service": "no" + }, + { + "id": "326737", + "ident": "PT-0100", + "type": "closed", + "name": "Pista do Ladoeiro", + "latitude_deg": "39.849493", + "longitude_deg": "-7.281222", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-05", + "municipality": "Idanha-a-Nova", + "scheduled_service": "no" + }, + { + "id": "326738", + "ident": "PT-0101", + "type": "small_airport", + "name": "Aerodromo de Atouguia da Baleia", + "latitude_deg": "39.347424", + "longitude_deg": "-9.32014", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-10", + "municipality": "Peniche", + "scheduled_service": "no" + }, + { + "id": "326745", + "ident": "PT-0102", + "type": "heliport", + "name": "Cascais Marina Heliport", + "latitude_deg": "38.693789", + "longitude_deg": "-9.41472", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Cascais", + "scheduled_service": "no" + }, + { + "id": "326780", + "ident": "PT-0103", + "type": "small_airport", + "name": "Pista de Montargil", + "latitude_deg": "39.051902", + "longitude_deg": "-8.142087", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-12", + "municipality": "Ponte de Sôr", + "scheduled_service": "no" + }, + { + "id": "326781", + "ident": "PT-0104", + "type": "small_airport", + "name": "Pista da Herdade da Lameira", + "latitude_deg": "39.277962", + "longitude_deg": "-7.772655", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-12", + "municipality": "Alter do Chão", + "scheduled_service": "no" + }, + { + "id": "326782", + "ident": "PT-0105", + "type": "small_airport", + "name": "Pista da Comenda", + "latitude_deg": "39.427111", + "longitude_deg": "-7.827158", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-12", + "municipality": "Gavião", + "scheduled_service": "no" + }, + { + "id": "326783", + "ident": "PT-0106", + "type": "small_airport", + "name": "Pista de Mouriscas", + "latitude_deg": "39.477844", + "longitude_deg": "-8.089349", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Abrantes", + "scheduled_service": "no" + }, + { + "id": "326784", + "ident": "PT-0107", + "type": "small_airport", + "name": "Aerodromo de Mação", + "latitude_deg": "39.572335", + "longitude_deg": "-7.987393", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Mação", + "scheduled_service": "no" + }, + { + "id": "326785", + "ident": "PT-0108", + "type": "small_airport", + "name": "Vendas Novas Airstrip", + "latitude_deg": "38.677419", + "longitude_deg": "-8.496015", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-07", + "municipality": "Vendas Novas", + "scheduled_service": "no", + "keywords": "Pista de Vendas Novas" + }, + { + "id": "326786", + "ident": "PT-0109", + "type": "small_airport", + "name": "Ciborro Airstrip", + "latitude_deg": "38.797735", + "longitude_deg": "-8.20256", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-07", + "municipality": "Montemor-o-Novo", + "scheduled_service": "no", + "keywords": "Pista do Ciborro" + }, + { + "id": "326787", + "ident": "PT-0110", + "type": "small_airport", + "name": "Pista de Biscainho Brandão", + "latitude_deg": "38.941904", + "longitude_deg": "-8.717673", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Coruche", + "scheduled_service": "no" + }, + { + "id": "326788", + "ident": "PT-0111", + "type": "closed", + "name": "Pista do Couço", + "latitude_deg": "39.004878", + "longitude_deg": "-8.274207", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Coruche", + "scheduled_service": "no" + }, + { + "id": "326789", + "ident": "PT-0112", + "type": "small_airport", + "name": "Pista de Volta do Vale", + "latitude_deg": "38.964347", + "longitude_deg": "-8.394842", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Coruche", + "scheduled_service": "no" + }, + { + "id": "326790", + "ident": "PT-0113", + "type": "small_airport", + "name": "Pista de Bilrete", + "latitude_deg": "38.984165", + "longitude_deg": "-8.766081", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Benavente", + "scheduled_service": "no" + }, + { + "id": "326791", + "ident": "PT-0114", + "type": "small_airport", + "name": "Aerodromo de Muge", + "latitude_deg": "39.097162", + "longitude_deg": "-8.658857", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Salvaterra de Magos", + "scheduled_service": "no" + }, + { + "id": "326792", + "ident": "PT-0115", + "type": "closed", + "name": "Pista de Almoster", + "latitude_deg": "39.228198", + "longitude_deg": "-8.796766", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Santarém", + "scheduled_service": "no" + }, + { + "id": "326793", + "ident": "PT-0116", + "type": "small_airport", + "name": "Pista de Valada do Ribatejo", + "latitude_deg": "39.073411", + "longitude_deg": "-8.766832", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Cartaxo", + "scheduled_service": "no" + }, + { + "id": "326794", + "ident": "PT-0117", + "type": "small_airport", + "name": "Aerodromo do Alqueidão", + "latitude_deg": "39.066847", + "longitude_deg": "-8.804255", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Azambuja", + "scheduled_service": "no" + }, + { + "id": "326795", + "ident": "PT-0118", + "type": "small_airport", + "name": "Aerodromo da Azambuja", + "latitude_deg": "39.05955", + "longitude_deg": "-8.827193", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Azambuja", + "scheduled_service": "no" + }, + { + "id": "326796", + "ident": "PT-0119", + "type": "small_airport", + "name": "Pista da Garrocheira", + "latitude_deg": "38.990303", + "longitude_deg": "-8.776832", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Benavente", + "scheduled_service": "no" + }, + { + "id": "326797", + "ident": "PT-0120", + "type": "closed", + "name": "Porto Alto Airstrip", + "latitude_deg": "38.9521", + "longitude_deg": "-8.866782", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Benavente", + "scheduled_service": "no", + "keywords": "Pista de Porto Alto" + }, + { + "id": "326798", + "ident": "PT-0121", + "type": "small_airport", + "name": "Alcochete Military Airfield", + "latitude_deg": "38.766933", + "longitude_deg": "-8.802624", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Benavente", + "scheduled_service": "no", + "home_link": "http://www.emfa.pt/www/mobile/unidade-26" + }, + { + "id": "326810", + "ident": "PT-0122", + "type": "small_airport", + "name": "Aerodromo da Pedra da Broa", + "latitude_deg": "40.71896", + "longitude_deg": "-8.237944", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-18", + "municipality": "Oliveira de Frades", + "scheduled_service": "no" + }, + { + "id": "326811", + "ident": "PT-0123", + "type": "closed", + "name": "Aerodromo de Sao Cosmado", + "latitude_deg": "41.065959", + "longitude_deg": "-7.700687", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-18", + "municipality": "Armamar", + "scheduled_service": "no" + }, + { + "id": "326813", + "ident": "PT-0124", + "type": "closed", + "name": "Entre-os-Rios Airstrip", + "latitude_deg": "41.075924", + "longitude_deg": "-8.271482", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-13", + "municipality": "Marco de Canaveses", + "scheduled_service": "no", + "keywords": "Pista de Entre-os-Rios" + }, + { + "id": "326814", + "ident": "PT-0125", + "type": "small_airport", + "name": "Corvachã Ultralight Airfield", + "latitude_deg": "41.231937", + "longitude_deg": "-7.977163", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-13", + "municipality": "Amarante", + "scheduled_service": "no", + "keywords": "Pista da Corvachã" + }, + { + "id": "326815", + "ident": "PT-0126", + "type": "small_airport", + "name": "Pista do Minhéu", + "latitude_deg": "41.540026", + "longitude_deg": "-7.677877", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-17", + "municipality": "Vila Pouca de Aguiar", + "scheduled_service": "no" + }, + { + "id": "326818", + "ident": "PT-0127", + "type": "small_airport", + "name": "Pista da Barragem do Maranhão", + "latitude_deg": "38.994697", + "longitude_deg": "-7.9894", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-12", + "municipality": "Avis", + "scheduled_service": "no" + }, + { + "id": "326819", + "ident": "PT-0128", + "type": "small_airport", + "name": "Pista da Chamusca", + "latitude_deg": "39.319425", + "longitude_deg": "-8.516121", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Chamusca", + "scheduled_service": "no" + }, + { + "id": "326820", + "ident": "PT-0129", + "type": "closed", + "name": "Quinta da Foz Airstrip", + "latitude_deg": "38.97308", + "longitude_deg": "-8.840962", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Benavente", + "scheduled_service": "no", + "keywords": "Pista da Quinta da Foz" + }, + { + "id": "326841", + "ident": "PT-0130", + "type": "small_airport", + "name": "Herdade do Pontal Airstrip", + "latitude_deg": "38.711667", + "longitude_deg": "-8.610063", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "municipality": "Montijo", + "scheduled_service": "no", + "keywords": "Pista da Herdade do Pontal" + }, + { + "id": "326842", + "ident": "PT-0131", + "type": "small_airport", + "name": "Faias Aerodrome", + "latitude_deg": "38.687721", + "longitude_deg": "-8.745375", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-15", + "municipality": "Montijo", + "scheduled_service": "no", + "keywords": "Aerodromo de Faias" + }, + { + "id": "329143", + "ident": "PT-0132", + "type": "heliport", + "name": "Heliporto do Tabaçô", + "latitude_deg": "41.829959", + "longitude_deg": "-8.443393", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-16", + "municipality": "Tabaçô / Arcos de Valdevez", + "scheduled_service": "no" + }, + { + "id": "329167", + "ident": "PT-0133", + "type": "heliport", + "name": "Heliporto de Alcaria", + "latitude_deg": "39.577785", + "longitude_deg": "-8.784498", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-10", + "municipality": "Alcaria", + "scheduled_service": "no" + }, + { + "id": "329822", + "ident": "PT-0134", + "type": "small_airport", + "name": "Pista do Monte do Pombo", + "latitude_deg": "39.644693", + "longitude_deg": "-7.560568", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-12", + "municipality": "Nisa", + "scheduled_service": "no" + }, + { + "id": "329823", + "ident": "PT-0135", + "type": "small_airport", + "name": "Pista da Lagoa da Carrasqueira", + "latitude_deg": "37.999375", + "longitude_deg": "-8.231592", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-02", + "municipality": "Ferreira do Alentejo", + "scheduled_service": "no" + }, + { + "id": "329856", + "ident": "PT-0136", + "type": "small_airport", + "name": "Dragoa Airstrip", + "latitude_deg": "40.406895", + "longitude_deg": "-6.997218", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-09", + "municipality": "Sabugal", + "scheduled_service": "no" + }, + { + "id": "332599", + "ident": "PT-0137", + "type": "closed", + "name": "V.N.Milfontes", + "latitude_deg": "37.675042", + "longitude_deg": "-8.745966", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-07", + "municipality": "Odemira", + "scheduled_service": "no" + }, + { + "id": "332600", + "ident": "PT-0138", + "type": "small_airport", + "name": "Piper Road Airstrip", + "latitude_deg": "38.916323", + "longitude_deg": "-8.951862", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-11", + "municipality": "Portas do Capitão Mór", + "scheduled_service": "no" + }, + { + "id": "332601", + "ident": "PT-0139", + "type": "closed", + "name": "Regimento Artilharia Military Airfield", + "latitude_deg": "38.693397", + "longitude_deg": "-8.443196", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-07", + "municipality": "Vendas Novas", + "scheduled_service": "no" + }, + { + "id": "332602", + "ident": "PT-0140", + "type": "small_airport", + "name": "Herdade da Galega", + "latitude_deg": "39.387534", + "longitude_deg": "-8.358682", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Santa Margarida", + "scheduled_service": "no" + }, + { + "id": "332900", + "ident": "PT-0141", + "type": "small_airport", + "name": "Courela do Outeiro Private Airstrip", + "latitude_deg": "37.627463", + "longitude_deg": "-7.502632", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-U-A", + "scheduled_service": "no" + }, + { + "id": "335852", + "ident": "PT-0142", + "type": "small_airport", + "name": "Quinta de Fôja", + "latitude_deg": "40.18503", + "longitude_deg": "-8.704338", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-06", + "municipality": "Montemor-o-velho", + "scheduled_service": "no", + "keywords": "agricultural" + }, + { + "id": "342645", + "ident": "PT-0143", + "type": "small_airport", + "name": "Aerodromo de Daroeira", + "latitude_deg": "37.909991", + "longitude_deg": "-8.322573", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-02", + "municipality": "Alvalade", + "scheduled_service": "no" + }, + { + "id": "342647", + "ident": "PT-0144", + "type": "closed", + "name": "Aeródromo da Aldeia de Palma", + "latitude_deg": "38.45748", + "longitude_deg": "-8.5553", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-U-A", + "municipality": "Monte da Volta", + "scheduled_service": "no", + "keywords": "Herdade de Palma" + }, + { + "id": "342765", + "ident": "PT-0145", + "type": "small_airport", + "name": "Monte de Freixial Airstrip", + "latitude_deg": "38.79809", + "longitude_deg": "-7.16397", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-12", + "scheduled_service": "no" + }, + { + "id": "353149", + "ident": "PT-0146", + "type": "small_airport", + "name": "Rebocho", + "latitude_deg": "38.926546", + "longitude_deg": "-8.534066", + "elevation_ft": "70", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-14", + "municipality": "Coruche", + "scheduled_service": "no" + }, + { + "id": "429970", + "ident": "PT-0147", + "type": "small_airport", + "name": "Cano", + "latitude_deg": "38.972008", + "longitude_deg": "-7.760231", + "elevation_ft": "790", + "continent": "EU", + "iso_country": "PT", + "iso_region": "PT-12", + "municipality": "Sousel", + "scheduled_service": "no" + }, + { + "id": "5499", + "ident": "PTKK", + "type": "medium_airport", + "name": "Chuuk International Airport", + "latitude_deg": "7.461870193481445", + "longitude_deg": "151.84300231933594", + "elevation_ft": "11", + "continent": "OC", + "iso_country": "FM", + "iso_region": "FM-TRK", + "municipality": "Weno Island", + "scheduled_service": "yes", + "gps_code": "PTKK", + "iata_code": "TKK", + "local_code": "TKK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chuuk_International_Airport" + }, + { + "id": "5500", + "ident": "PTPN", + "type": "medium_airport", + "name": "Pohnpei International Airport", + "latitude_deg": "6.985099792480469", + "longitude_deg": "158.20899963378906", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "FM", + "iso_region": "FM-PNI", + "municipality": "Pohnpei Island", + "scheduled_service": "yes", + "gps_code": "PTPN", + "iata_code": "PNI", + "local_code": "PNI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pohnpei_International_Airport", + "keywords": "Ponape" + }, + { + "id": "5501", + "ident": "PTRO", + "type": "medium_airport", + "name": "Babelthuap Airport", + "latitude_deg": "7.36731", + "longitude_deg": "134.544236", + "elevation_ft": "176", + "continent": "OC", + "iso_country": "PW", + "iso_region": "PW-004", + "municipality": "Babelthuap Island", + "scheduled_service": "yes", + "gps_code": "PTRO", + "iata_code": "ROR", + "local_code": "ROR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palau_International_Airport" + }, + { + "id": "5502", + "ident": "PTSA", + "type": "medium_airport", + "name": "Kosrae International Airport", + "latitude_deg": "5.35698", + "longitude_deg": "162.957993", + "elevation_ft": "11", + "continent": "OC", + "iso_country": "FM", + "iso_region": "FM-KSA", + "municipality": "Okat", + "scheduled_service": "yes", + "gps_code": "PTSA", + "iata_code": "KSA", + "local_code": "TTK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kosrae_International_Airport", + "keywords": "Caroline Islands Airport" + }, + { + "id": "5503", + "ident": "PTYA", + "type": "medium_airport", + "name": "Yap International Airport", + "latitude_deg": "9.49891", + "longitude_deg": "138.082993", + "elevation_ft": "91", + "continent": "OC", + "iso_country": "FM", + "iso_region": "FM-YAP", + "municipality": "Yap Island", + "scheduled_service": "yes", + "gps_code": "PTYA", + "iata_code": "YAP", + "local_code": "T11", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yap_International_Airport" + }, + { + "id": "312750", + "ident": "PUA", + "type": "small_airport", + "name": "Puas Airport", + "latitude_deg": "-2.395", + "longitude_deg": "150.2361", + "elevation_ft": "45", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NIK", + "municipality": "Puas Mission", + "scheduled_service": "no", + "iata_code": "PUA", + "local_code": "PUAS" + }, + { + "id": "316676", + "ident": "PUI", + "type": "closed", + "name": "Pureni Airport", + "latitude_deg": "-5.8429", + "longitude_deg": "142.8279", + "elevation_ft": "5512", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-HE", + "municipality": "Pureni", + "scheduled_service": "no", + "iata_code": "PUI" + }, + { + "id": "5506", + "ident": "PWAK", + "type": "medium_airport", + "name": "Wake Island Airfield", + "latitude_deg": "19.282437", + "longitude_deg": "166.636637", + "elevation_ft": "14", + "continent": "OC", + "iso_country": "UM", + "iso_region": "UM-79", + "municipality": "Wake Island", + "scheduled_service": "yes", + "gps_code": "PWAK", + "iata_code": "AWK", + "local_code": "AWK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wake_Island_Airfield" + }, + { + "id": "24333", + "ident": "PWR", + "type": "seaplane_base", + "name": "Port Walter Seaplane Base", + "latitude_deg": "56.381001", + "longitude_deg": "-134.651001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Port Walter", + "scheduled_service": "no", + "gps_code": "PPWR", + "iata_code": "PWR", + "local_code": "PWR" + }, + { + "id": "39562", + "ident": "PY-0001", + "type": "small_airport", + "name": "Iturbe Airport", + "latitude_deg": "-26.063066", + "longitude_deg": "-56.493378", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-4", + "municipality": "Iturbe", + "scheduled_service": "no" + }, + { + "id": "39563", + "ident": "PY-0002", + "type": "small_airport", + "name": "Coronel Oviedo Airport", + "latitude_deg": "-25.518194", + "longitude_deg": "-56.406786", + "elevation_ft": "487", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-5", + "municipality": "Coronel Oviedo", + "scheduled_service": "no", + "gps_code": "SGOV" + }, + { + "id": "39564", + "ident": "PY-0003", + "type": "small_airport", + "name": "Isla Pucu Airport", + "latitude_deg": "-25.298498", + "longitude_deg": "-56.901884", + "elevation_ft": "416", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-3", + "municipality": "Isla Pucu", + "scheduled_service": "no" + }, + { + "id": "39565", + "ident": "PY-0004", + "type": "small_airport", + "name": "Hugo Stroessner Nueva Londres Airport", + "latitude_deg": "-25.40757", + "longitude_deg": "-56.554098", + "elevation_ft": "364", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-5", + "municipality": "Nueva Londres", + "scheduled_service": "no" + }, + { + "id": "39566", + "ident": "PY-0005", + "type": "small_airport", + "name": "Nueva Australia Airport", + "latitude_deg": "-25.420000076300003", + "longitude_deg": "-56.569999694799996", + "elevation_ft": "338", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-5", + "municipality": "Nueva Australia", + "scheduled_service": "no" + }, + { + "id": "41570", + "ident": "PY-0006", + "type": "small_airport", + "name": "Puerto Guaraní Airport", + "latitude_deg": "-21.2731990814209", + "longitude_deg": "-57.924198150634766", + "elevation_ft": "257", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-16", + "municipality": "Puerto Guaraní", + "scheduled_service": "no" + }, + { + "id": "41571", + "ident": "PY-0007", + "type": "small_airport", + "name": "Estancia Cunataí Airport", + "latitude_deg": "-21.555599212646484", + "longitude_deg": "-57.96849822998047", + "elevation_ft": "264", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-16", + "municipality": "Porto María", + "scheduled_service": "no" + }, + { + "id": "41572", + "ident": "PY-0008", + "type": "small_airport", + "name": "Colonia Carmelo Peralta Airport", + "latitude_deg": "-21.680999755859375", + "longitude_deg": "-57.912498474121094", + "elevation_ft": "253", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-16", + "municipality": "Colonia Carmelo Peralta", + "scheduled_service": "no" + }, + { + "id": "41573", + "ident": "PY-0009", + "type": "small_airport", + "name": "Puerto La Esperanza Airport", + "latitude_deg": "-22.043100357055664", + "longitude_deg": "-58.0166015625", + "elevation_ft": "254", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-16", + "municipality": "Puerto La Esperanza", + "scheduled_service": "no" + }, + { + "id": "41574", + "ident": "PY-0010", + "type": "small_airport", + "name": "Puerto Risso Airport", + "latitude_deg": "-22.370500564575195", + "longitude_deg": "-57.815101623535156", + "elevation_ft": "268", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-1", + "municipality": "Puerto Risso", + "scheduled_service": "no" + }, + { + "id": "41575", + "ident": "PY-0011", + "type": "small_airport", + "name": "Puerto Alegre Airport", + "latitude_deg": "-22.443199157714844", + "longitude_deg": "-57.832298278808594", + "elevation_ft": "276", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-1", + "municipality": "Puerto Alegre", + "scheduled_service": "no" + }, + { + "id": "41576", + "ident": "PY-0012", + "type": "small_airport", + "name": "Puerto Calera Airport", + "latitude_deg": "-22.545299530029297", + "longitude_deg": "-57.8224983215332", + "elevation_ft": "243", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-1", + "municipality": "Puerto Calera", + "scheduled_service": "no" + }, + { + "id": "41577", + "ident": "PY-0013", + "type": "small_airport", + "name": "Puerto Max Airport", + "latitude_deg": "-22.631000518798828", + "longitude_deg": "-57.77050018310547", + "elevation_ft": "241", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-1", + "municipality": "Puerto Max", + "scheduled_service": "no" + }, + { + "id": "41578", + "ident": "PY-0014", + "type": "small_airport", + "name": "Puerto Itapucu Airport", + "latitude_deg": "-22.681400299072266", + "longitude_deg": "-57.909400939941406", + "elevation_ft": "269", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-1", + "municipality": "Puerto Itapucu", + "scheduled_service": "no" + }, + { + "id": "41579", + "ident": "PY-0015", + "type": "small_airport", + "name": "Puerto Abente Airport", + "latitude_deg": "-22.95039939880371", + "longitude_deg": "-57.79140090942383", + "elevation_ft": "243", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-1", + "municipality": "Puerto Abente", + "scheduled_service": "no" + }, + { + "id": "41580", + "ident": "PY-0016", + "type": "small_airport", + "name": "Puerto Boqueron Airport", + "latitude_deg": "-23.983400344848633", + "longitude_deg": "-57.249900817871094", + "elevation_ft": "223", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-15", + "municipality": "Puerto Boqueron", + "scheduled_service": "no" + }, + { + "id": "41581", + "ident": "PY-0017", + "type": "small_airport", + "name": "Puerto Michi Airport", + "latitude_deg": "-24.135700225830078", + "longitude_deg": "-57.28409957885742", + "elevation_ft": "217", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-2", + "municipality": "Puerto Michu", + "scheduled_service": "no" + }, + { + "id": "41582", + "ident": "PY-0018", + "type": "small_airport", + "name": "Estancia Lomas Airport", + "latitude_deg": "-24.617000579833984", + "longitude_deg": "-57.148799896240234", + "elevation_ft": "220", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-2", + "municipality": "Rosario", + "scheduled_service": "no" + }, + { + "id": "41583", + "ident": "PY-0019", + "type": "small_airport", + "name": "Villa Rey Airport", + "latitude_deg": "-24.688100814819336", + "longitude_deg": "-57.23059844970703", + "elevation_ft": "220", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-2", + "municipality": "Villa Rey", + "scheduled_service": "no" + }, + { + "id": "41584", + "ident": "PY-0020", + "type": "small_airport", + "name": "Santa Clara Airport", + "latitude_deg": "-25.663299560546875", + "longitude_deg": "-57.66429901123047", + "elevation_ft": "209", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-11", + "municipality": "Santa Clara", + "scheduled_service": "no" + }, + { + "id": "41585", + "ident": "PY-0021", + "type": "small_airport", + "name": "Estancia Herradura Airport", + "latitude_deg": "-26.502199172973633", + "longitude_deg": "-58.19710159301758", + "elevation_ft": "188", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-12", + "municipality": "Estancia Herradura", + "scheduled_service": "no" + }, + { + "id": "41586", + "ident": "PY-0022", + "type": "small_airport", + "name": "San Cosme y Damian Airport", + "latitude_deg": "-27.28179931640625", + "longitude_deg": "-56.311100006103516", + "elevation_ft": "318", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-7", + "municipality": "San Cosme y Damian", + "scheduled_service": "no" + }, + { + "id": "41587", + "ident": "PY-0023", + "type": "closed", + "name": "Coronel Bogado Airport", + "latitude_deg": "-27.1439", + "longitude_deg": "-56.2561", + "elevation_ft": "285", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-7", + "municipality": "Coronel Bogado", + "scheduled_service": "no" + }, + { + "id": "41588", + "ident": "PY-0024", + "type": "small_airport", + "name": "Estancia Trementina Airport", + "latitude_deg": "-22.736000061035156", + "longitude_deg": "-56.842201232910156", + "elevation_ft": "511", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-1", + "municipality": "Estancia Trementina", + "scheduled_service": "no" + }, + { + "id": "41589", + "ident": "PY-0025", + "type": "small_airport", + "name": "Estancia Coeyu Airport", + "latitude_deg": "-23.93630027770996", + "longitude_deg": "-57.73590087890625", + "elevation_ft": "250", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-15", + "municipality": "Estancia Coeyu", + "scheduled_service": "no" + }, + { + "id": "318317", + "ident": "PY-0027", + "type": "small_airport", + "name": "Rosario South 1 Airport", + "latitude_deg": "-24.471234", + "longitude_deg": "-57.154851", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-2", + "municipality": "Villa del Rosario", + "scheduled_service": "no" + }, + { + "id": "318318", + "ident": "PY-0028", + "type": "small_airport", + "name": "Rosario South 2 Airport", + "latitude_deg": "-24.4777", + "longitude_deg": "-57.147968", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-2", + "municipality": "Villa del Rosario", + "scheduled_service": "no" + }, + { + "id": "318319", + "ident": "PY-0029", + "type": "small_airport", + "name": "Rosario South 3 Airport", + "latitude_deg": "-24.486413", + "longitude_deg": "-57.102357", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-2", + "municipality": "Villa del Rosario", + "scheduled_service": "no" + }, + { + "id": "318320", + "ident": "PY-0030", + "type": "small_airport", + "name": "Colonia Volendam Airport", + "latitude_deg": "-24.285026", + "longitude_deg": "-57.012056", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-2", + "municipality": "Villa del Rosario", + "scheduled_service": "no", + "gps_code": "SGVO" + }, + { + "id": "318321", + "ident": "PY-0031", + "type": "small_airport", + "name": "Nueva Germania Airport", + "latitude_deg": "-23.911628", + "longitude_deg": "-56.558359", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-2", + "municipality": "Nueva Germania", + "scheduled_service": "no" + }, + { + "id": "318552", + "ident": "PY-0032", + "type": "small_airport", + "name": "Loma Plata Airport", + "latitude_deg": "-22.356651", + "longitude_deg": "-59.838926", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-19", + "municipality": "Loma Plata", + "scheduled_service": "no" + }, + { + "id": "318553", + "ident": "PY-0033", + "type": "small_airport", + "name": "Gnadenheim Airport", + "latitude_deg": "-22.369868", + "longitude_deg": "-59.770805", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-19", + "municipality": "Gnadenheim", + "scheduled_service": "no" + }, + { + "id": "318554", + "ident": "PY-0034", + "type": "small_airport", + "name": "La Victoria Airport", + "latitude_deg": "-22.289467", + "longitude_deg": "-57.931053", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-16", + "municipality": "La Victoria", + "scheduled_service": "no" + }, + { + "id": "318555", + "ident": "PY-0035", + "type": "small_airport", + "name": "Cerro Corá Airport", + "latitude_deg": "-22.637159", + "longitude_deg": "-56.016371", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-13", + "municipality": "Cerro Corá", + "scheduled_service": "no" + }, + { + "id": "321673", + "ident": "PY-0036", + "type": "small_airport", + "name": "Estancia El Dorado Airport", + "latitude_deg": "-21.370676", + "longitude_deg": "-61.484652", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-19", + "municipality": "Estancia El Dorado", + "scheduled_service": "no" + }, + { + "id": "321674", + "ident": "PY-0037", + "type": "small_airport", + "name": "El Retiro Airport", + "latitude_deg": "-24.001777", + "longitude_deg": "-60.342462", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-15", + "municipality": "El Retiro", + "scheduled_service": "no" + }, + { + "id": "321679", + "ident": "PY-0038", + "type": "small_airport", + "name": "San Juan Bautista Airport", + "latitude_deg": "-26.636587", + "longitude_deg": "-57.101397", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-8", + "municipality": "San Juan Bautista", + "scheduled_service": "no" + }, + { + "id": "321680", + "ident": "PY-0039", + "type": "small_airport", + "name": "Estancia Buena Vista Airport", + "latitude_deg": "-26.563305", + "longitude_deg": "-57.145936", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-8", + "municipality": "Estancia Buena Vista", + "scheduled_service": "no" + }, + { + "id": "321681", + "ident": "PY-0040", + "type": "small_airport", + "name": "San Miguel Airport", + "latitude_deg": "-26.546805", + "longitude_deg": "-57.101111", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-8", + "municipality": "San Miguel", + "scheduled_service": "no" + }, + { + "id": "321682", + "ident": "PY-0041", + "type": "small_airport", + "name": "Santa Maria Airport", + "latitude_deg": "-26.783859", + "longitude_deg": "-56.952561", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-8", + "municipality": "Santa Maria", + "scheduled_service": "no" + }, + { + "id": "321683", + "ident": "PY-0042", + "type": "small_airport", + "name": "Cabaña La Escondida Airport", + "latitude_deg": "-26.751414", + "longitude_deg": "-57.059711", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-8", + "municipality": "Cabaña La Escondida", + "scheduled_service": "no" + }, + { + "id": "327566", + "ident": "PY-0043", + "type": "small_airport", + "name": "Mayor Infante Rivarola Airport", + "latitude_deg": "-21.683837", + "longitude_deg": "-62.395534", + "elevation_ft": "908", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-19", + "municipality": "Mayor Infante Rivarola", + "scheduled_service": "no" + }, + { + "id": "41566", + "ident": "PY-BFA", + "type": "small_airport", + "name": "Bahía Negra Airport", + "latitude_deg": "-20.2245998383", + "longitude_deg": "-58.1791992188", + "elevation_ft": "277", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-16", + "municipality": "Bahía Negra", + "scheduled_service": "no", + "gps_code": "SGBN", + "iata_code": "BFA" + }, + { + "id": "41565", + "ident": "PY-OLK", + "type": "small_airport", + "name": "Fuerte Olimpo Airport", + "latitude_deg": "-21.0452", + "longitude_deg": "-57.8825", + "elevation_ft": "275", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-16", + "municipality": "Fuerte Olimpo", + "scheduled_service": "no", + "gps_code": "SGOL", + "iata_code": "OLK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fuerte_Olimpo_Airport" + }, + { + "id": "41569", + "ident": "PY-PBT", + "type": "small_airport", + "name": "Puerto Leda Airport", + "latitude_deg": "-20.904600143432617", + "longitude_deg": "-57.927101135253906", + "elevation_ft": "260", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-16", + "municipality": "Puerto Leda", + "scheduled_service": "no", + "iata_code": "PBT" + }, + { + "id": "41568", + "ident": "PY-PCJ", + "type": "small_airport", + "name": "Puerto La Victoria Airport", + "latitude_deg": "-22.295041", + "longitude_deg": "-57.866333", + "elevation_ft": "286", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-1", + "municipality": "Puerto La Victoria", + "scheduled_service": "no", + "gps_code": "SGLV", + "iata_code": "PCJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Victoria_Airport" + }, + { + "id": "24336", + "ident": "PYL", + "type": "seaplane_base", + "name": "Perry Island Seaplane Base", + "latitude_deg": "60.685298919699996", + "longitude_deg": "-147.919006348", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Perry Island", + "scheduled_service": "no", + "gps_code": "PYL", + "iata_code": "PYL", + "local_code": "PYL" + }, + { + "id": "4659", + "ident": "Q51", + "type": "small_airport", + "name": "Kili Airport", + "latitude_deg": "5.644515", + "longitude_deg": "169.119507", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-KIL", + "municipality": "Kili Island", + "scheduled_service": "yes", + "iata_code": "KIO", + "local_code": "C51", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kili_Airport", + "keywords": "Q51" + }, + { + "id": "333369", + "ident": "QA-0001", + "type": "small_airport", + "name": "Dukhan / Tamim Airbase", + "latitude_deg": "25.467722", + "longitude_deg": "50.999479", + "continent": "AS", + "iso_country": "QA", + "iso_region": "QA-SH", + "municipality": "Dukhan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dukhan_/_Tamim_Airbase" + }, + { + "id": "313549", + "ident": "QA-0002", + "type": "heliport", + "name": "Abu Samra Border Post Helipad", + "latitude_deg": "24.747763", + "longitude_deg": "50.851541", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "QA", + "iso_region": "QA-RA", + "municipality": "As Salwa", + "scheduled_service": "no" + }, + { + "id": "319191", + "ident": "QA-0003", + "type": "heliport", + "name": "Banana Island Helipad", + "latitude_deg": "25.296837", + "longitude_deg": "51.639031", + "continent": "AS", + "iso_country": "QA", + "iso_region": "QA-DA", + "municipality": "Doha", + "scheduled_service": "no" + }, + { + "id": "340577", + "ident": "QA-0004", + "type": "heliport", + "name": "Al Wakrah Hospital Helipad", + "latitude_deg": "25.166077", + "longitude_deg": "51.589824", + "continent": "AS", + "iso_country": "QA", + "iso_region": "QA-WA", + "municipality": "Al Wakrah", + "scheduled_service": "no" + }, + { + "id": "340578", + "ident": "QA-0005", + "type": "heliport", + "name": "Hamad Emergency Heliport", + "latitude_deg": "25.292433", + "longitude_deg": "51.501029", + "continent": "AS", + "iso_country": "QA", + "iso_region": "QA-DA", + "municipality": "Doha", + "scheduled_service": "no" + }, + { + "id": "340579", + "ident": "QA-0006", + "type": "heliport", + "name": "JW Marriott Marquis City Center Helipad", + "latitude_deg": "25.325096", + "longitude_deg": "51.533126", + "continent": "AS", + "iso_country": "QA", + "iso_region": "QA-DA", + "municipality": "Doha", + "scheduled_service": "no" + }, + { + "id": "340580", + "ident": "QA-0007", + "type": "heliport", + "name": "Hamad Medical Corporation Helipad 3", + "latitude_deg": "25.292018", + "longitude_deg": "51.503387", + "continent": "AS", + "iso_country": "QA", + "iso_region": "QA-DA", + "municipality": "Doha", + "scheduled_service": "no" + }, + { + "id": "340581", + "ident": "QA-0008", + "type": "heliport", + "name": "Al Faisal Tower Heliport", + "latitude_deg": "25.325566", + "longitude_deg": "51.526302", + "continent": "AS", + "iso_country": "QA", + "iso_region": "QA-DA", + "municipality": "Doha", + "scheduled_service": "no" + }, + { + "id": "340582", + "ident": "QA-0009", + "type": "small_airport", + "name": "Mesaleed Airfield", + "latitude_deg": "24.988976", + "longitude_deg": "51.50031", + "continent": "AS", + "iso_country": "QA", + "iso_region": "QA-WA", + "municipality": "Mesaleed", + "scheduled_service": "no" + }, + { + "id": "341967", + "ident": "QA-0010", + "type": "heliport", + "name": "Al Rayyan Air Defense Base Helipad", + "latitude_deg": "25.281734", + "longitude_deg": "51.298514", + "elevation_ft": "148", + "continent": "AS", + "iso_country": "QA", + "iso_region": "QA-RA", + "municipality": "Al Rayyan", + "scheduled_service": "no" + }, + { + "id": "341968", + "ident": "QA-0011", + "type": "heliport", + "name": "Hilton Salwa Beach Helipad", + "latitude_deg": "24.8378", + "longitude_deg": "50.8583", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "QA", + "iso_region": "QA-RA", + "municipality": "Al Rayyan", + "scheduled_service": "no" + }, + { + "id": "348687", + "ident": "QA-0012", + "type": "small_airport", + "name": "Umm Garn Airport", + "latitude_deg": "25.76411", + "longitude_deg": "51.29276", + "elevation_ft": "112", + "continent": "AS", + "iso_country": "QA", + "iso_region": "QA-KH", + "municipality": "Rawdat Hawtan", + "scheduled_service": "no" + }, + { + "id": "351608", + "ident": "QA-0013", + "type": "heliport", + "name": "Halul Heliport", + "latitude_deg": "25.67712", + "longitude_deg": "52.41562", + "elevation_ft": "40", + "continent": "AS", + "iso_country": "QA", + "iso_region": "QA-DA", + "municipality": "Halul Island", + "scheduled_service": "no" + }, + { + "id": "351744", + "ident": "QA-0014", + "type": "closed", + "name": "Dukhan Airport", + "latitude_deg": "25.40051", + "longitude_deg": "50.826614", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "QA", + "iso_region": "QA-SH", + "municipality": "Dukhan", + "scheduled_service": "no" + }, + { + "id": "354525", + "ident": "QA-0015", + "type": "heliport", + "name": "Military Helipad", + "latitude_deg": "24.895392", + "longitude_deg": "51.030442", + "continent": "AS", + "iso_country": "QA", + "iso_region": "QA-RA", + "scheduled_service": "no" + }, + { + "id": "355422", + "ident": "QA-0016", + "type": "heliport", + "name": "Military Helipad", + "latitude_deg": "25.005234", + "longitude_deg": "50.989609", + "continent": "AS", + "iso_country": "QA", + "iso_region": "QA-RA", + "scheduled_service": "no" + }, + { + "id": "299106", + "ident": "qfx", + "type": "heliport", + "name": "Igaliku Heliport", + "latitude_deg": "60.9920065221", + "longitude_deg": "-45.4323345423", + "continent": "NA", + "iso_country": "GL", + "iso_region": "GL-U-A", + "municipality": "Igaliku", + "scheduled_service": "yes", + "gps_code": "BGIO", + "iata_code": "QFX", + "keywords": "Igaliko" + }, + { + "id": "5650", + "ident": "QJP", + "type": "small_airport", + "name": "Pocheon (G-217) Airport", + "latitude_deg": "37.864555", + "longitude_deg": "127.176633", + "elevation_ft": "328", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Pocheon", + "scheduled_service": "no", + "iata_code": "QJP", + "keywords": "RKRO, QJP, G 217, G-217, Pocheon" + }, + { + "id": "24337", + "ident": "R03", + "type": "small_airport", + "name": "Alkali Lake State Airport", + "latitude_deg": "43.087399", + "longitude_deg": "-119.975995", + "elevation_ft": "4312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Alkali Lake", + "scheduled_service": "no", + "local_code": "R03", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alkali_Lake_State_Airport" + }, + { + "id": "24338", + "ident": "R33", + "type": "small_airport", + "name": "Wakonda Beach State Airport", + "latitude_deg": "44.38460159301758", + "longitude_deg": "-124.08499908447266", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Waldport", + "scheduled_service": "no", + "gps_code": "R33", + "local_code": "R33", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wakonda_Beach_State_Airport" + }, + { + "id": "312683", + "ident": "RAA", + "type": "small_airport", + "name": "Rakanda Airport", + "latitude_deg": "-4.2096", + "longitude_deg": "152.4385", + "elevation_ft": "38", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EBR", + "municipality": "Rakanda", + "scheduled_service": "no", + "iata_code": "RAA", + "local_code": "RAK", + "keywords": "Duke of York Is." + }, + { + "id": "301708", + "ident": "RAW", + "type": "small_airport", + "name": "Arawa Airport", + "latitude_deg": "-6.220555555560001", + "longitude_deg": "155.571388889", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NSB", + "municipality": "Arawa", + "scheduled_service": "no", + "iata_code": "RAW", + "local_code": "ARA" + }, + { + "id": "302215", + "ident": "RAX", + "type": "small_airport", + "name": "Oram Airport", + "latitude_deg": "-9.632916666669997", + "longitude_deg": "148.048055556", + "elevation_ft": "3500", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "scheduled_service": "no", + "gps_code": "AYYO", + "iata_code": "RAX", + "local_code": "ORAM" + }, + { + "id": "30413", + "ident": "RBLA", + "type": "small_airport", + "name": "Mile High Community Airport", + "latitude_deg": "31.257899", + "longitude_deg": "-105.297046", + "elevation_ft": "4554", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sierra Blanca", + "scheduled_service": "no", + "local_code": "6.00E+02" + }, + { + "id": "307079", + "ident": "RBP", + "type": "small_airport", + "name": "Raba Raba Airport", + "latitude_deg": "-9.97111111111", + "longitude_deg": "149.832222222", + "elevation_ft": "170", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Rabaraba", + "scheduled_service": "no", + "gps_code": "AYRE", + "iata_code": "RBP", + "local_code": "RBA", + "keywords": "Rabaraba" + }, + { + "id": "24339", + "ident": "RC0", + "type": "small_airport", + "name": "Rock Creek Airport", + "latitude_deg": "46.7271", + "longitude_deg": "-113.657997", + "elevation_ft": "3547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Clinton", + "scheduled_service": "no", + "local_code": "RC0", + "keywords": "0MT0, Elliot Field" + }, + { + "id": "5509", + "ident": "RCAY", + "type": "medium_airport", + "name": "Gangshan Air Force Base", + "latitude_deg": "22.782499", + "longitude_deg": "120.263", + "elevation_ft": "34", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-KHH", + "municipality": "Kaohsiung (Gangshan)", + "scheduled_service": "no", + "gps_code": "RCAY", + "keywords": "Kangshan, Air Force Academy, 空軍官校" + }, + { + "id": "5510", + "ident": "RCBS", + "type": "medium_airport", + "name": "Kinmen Airport", + "latitude_deg": "24.4279", + "longitude_deg": "118.359001", + "elevation_ft": "93", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-X-KM", + "municipality": "Shang-I", + "scheduled_service": "yes", + "gps_code": "RCBS", + "iata_code": "KNH", + "home_link": "http://www.kma.gov.tw/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kinmen_Airport", + "keywords": "Shang Yi Airport, 金門尚義機場, 金门尚义机场, Jīnmén Shàngyì jīchǎng" + }, + { + "id": "5511", + "ident": "RCDC", + "type": "medium_airport", + "name": "Pingtung South Airport", + "latitude_deg": "22.672399520874023", + "longitude_deg": "120.46199798583984", + "elevation_ft": "78", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-PIF", + "municipality": "Pingtung", + "scheduled_service": "no", + "gps_code": "RCDC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pingtung_Airport" + }, + { + "id": "5512", + "ident": "RCDI", + "type": "medium_airport", + "name": "Longtan Air Base", + "latitude_deg": "24.853588", + "longitude_deg": "121.236392", + "elevation_ft": "790", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TAO", + "municipality": "Longtan", + "scheduled_service": "no", + "gps_code": "RCDI" + }, + { + "id": "5513", + "ident": "RCFG", + "type": "medium_airport", + "name": "Matsu Nangan Airport", + "latitude_deg": "26.1598", + "longitude_deg": "119.958", + "elevation_ft": "232", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-X-LK", + "municipality": "Matsu (Nangan)", + "scheduled_service": "yes", + "gps_code": "RCFG", + "iata_code": "LZN", + "home_link": "http://www.tsa.gov.tw/tsaLZN/zh/home.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Matsu_Nangan_Airport", + "keywords": "Matsu Islands" + }, + { + "id": "5514", + "ident": "RCFN", + "type": "medium_airport", + "name": "Taitung Airport", + "latitude_deg": "22.7549991607666", + "longitude_deg": "121.10199737548828", + "elevation_ft": "143", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TTT", + "municipality": "Taitung City", + "scheduled_service": "yes", + "gps_code": "RCFN", + "iata_code": "TTT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taitung_Airport", + "keywords": "Fengnin Airport, 台東機場" + }, + { + "id": "5515", + "ident": "RCGI", + "type": "small_airport", + "name": "Lyudao Airport", + "latitude_deg": "22.673900604248047", + "longitude_deg": "121.46600341796875", + "elevation_ft": "28", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TTT", + "municipality": "Lyudao", + "scheduled_service": "no", + "gps_code": "RCGI", + "iata_code": "GNI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lyudao_Airport", + "keywords": "Green Island" + }, + { + "id": "32199", + "ident": "RCGM", + "type": "closed", + "name": "Taoyuan Air Base", + "latitude_deg": "25.054217", + "longitude_deg": "121.240827", + "elevation_ft": "144", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TAO", + "municipality": "Taoyuan (Dayuan)", + "scheduled_service": "no", + "gps_code": "RCGM", + "keywords": "Taiyoun Airbase, Taoyuan Naval Base, 太陽空軍基地; RGCM" + }, + { + "id": "5516", + "ident": "RCKH", + "type": "large_airport", + "name": "Kaohsiung International Airport", + "latitude_deg": "22.577101", + "longitude_deg": "120.349998", + "elevation_ft": "31", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-KHH", + "municipality": "Kaohsiung (Xiaogang)", + "scheduled_service": "yes", + "gps_code": "RCKH", + "iata_code": "KHH", + "home_link": "http://www.kia.gov.tw/english/e_index.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kaohsiung_International_Airport", + "keywords": "Siaogang International Airport, 高雄國際航空站, 小港國際機場" + }, + { + "id": "5517", + "ident": "RCKU", + "type": "medium_airport", + "name": "Chiayi Airport", + "latitude_deg": "23.46179962158203", + "longitude_deg": "120.39299774169922", + "elevation_ft": "85", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-CYQ", + "municipality": "Chiayi City", + "scheduled_service": "yes", + "gps_code": "RCKU", + "iata_code": "CYI", + "home_link": "http://www.cya.gov.tw/web/english/index.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chiayi_Airport", + "keywords": "Shueishang Airport, 嘉義航空站, 水上機場" + }, + { + "id": "5518", + "ident": "RCKW", + "type": "medium_airport", + "name": "Hengchun Airport", + "latitude_deg": "22.041099548339844", + "longitude_deg": "120.7300033569336", + "elevation_ft": "46", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-PIF", + "municipality": "Hengchung", + "scheduled_service": "yes", + "gps_code": "RCKW", + "iata_code": "HCN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hengchun_Airport" + }, + { + "id": "325294", + "ident": "RCLC", + "type": "heliport", + "name": "Xiaoliuqiu Heliport", + "latitude_deg": "22.349922", + "longitude_deg": "120.37588", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-PIF", + "municipality": "Xiaoliuqiu", + "scheduled_service": "no", + "gps_code": "RCLC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Xiaoliuqiu#Transportation, https://wiki2.org/en/Xiaoliuqiu#Transportation", + "keywords": "Xiaoliuqiu, 小柳丘機場, Liouciouyu, Lambai" + }, + { + "id": "32487", + "ident": "RCLG", + "type": "closed", + "name": "Taichung Shuinan Airport", + "latitude_deg": "24.1863", + "longitude_deg": "120.653999", + "elevation_ft": "369", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TXG", + "municipality": "Taichung (Xitun)", + "scheduled_service": "no", + "gps_code": "RCLG", + "iata_code": "TXG" + }, + { + "id": "5519", + "ident": "RCLY", + "type": "medium_airport", + "name": "Lanyu Airport", + "latitude_deg": "22.027000427246094", + "longitude_deg": "121.53500366210938", + "elevation_ft": "44", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TTT", + "municipality": "Orchid Island", + "scheduled_service": "yes", + "gps_code": "RCLY", + "iata_code": "KYD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lanyu_Airport", + "keywords": "Lanyu Auxiliary Station" + }, + { + "id": "5520", + "ident": "RCMQ", + "type": "medium_airport", + "name": "Taichung International Airport / Ching Chuang Kang Air Base", + "latitude_deg": "24.2647", + "longitude_deg": "120.621002", + "elevation_ft": "663", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TXG", + "municipality": "Taichung (Qingshui)", + "scheduled_service": "yes", + "gps_code": "RCMQ", + "iata_code": "RMQ", + "home_link": "http://www.tca.gov.tw/English/Introduction.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taichung_Airport", + "keywords": "臺中清泉崗機場" + }, + { + "id": "325221", + "ident": "RCMS", + "type": "closed", + "name": "Ilan Airfield", + "latitude_deg": "24.730617", + "longitude_deg": "121.752031", + "elevation_ft": "31", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-ILA", + "municipality": "Ilan", + "scheduled_service": "no", + "gps_code": "RCMS", + "keywords": "Ilan, Yilan City" + }, + { + "id": "5521", + "ident": "RCMT", + "type": "medium_airport", + "name": "Matsu Beigan Airport", + "latitude_deg": "26.224199", + "longitude_deg": "120.002998", + "elevation_ft": "41", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-X-LK", + "municipality": "Matsu (Beigan)", + "scheduled_service": "yes", + "gps_code": "RCMT", + "iata_code": "MFK", + "home_link": "http://www.tsa.gov.tw/tsaMFK/en/page.aspx?id=1174", + "wikipedia_link": "https://en.wikipedia.org/wiki/Matsu_Beigan_Airport", + "keywords": "Matsu Islands" + }, + { + "id": "314465", + "ident": "RCN", + "type": "closed", + "name": "American River Airport", + "latitude_deg": "-35.7574", + "longitude_deg": "137.7759", + "elevation_ft": "389", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "American River", + "scheduled_service": "no", + "iata_code": "RCN" + }, + { + "id": "5522", + "ident": "RCNN", + "type": "medium_airport", + "name": "Tainan International Airport / Tainan Air Base", + "latitude_deg": "22.950399", + "longitude_deg": "120.206001", + "elevation_ft": "63", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TNN", + "municipality": "Tainan (Rende)", + "scheduled_service": "yes", + "gps_code": "RCNN", + "iata_code": "TNN", + "home_link": "http://www.tna.gov.tw/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tainan_Airport", + "keywords": "臺南機場, 臺南航空站" + }, + { + "id": "325269", + "ident": "RCNO", + "type": "heliport", + "name": "Dongji Heliport", + "latitude_deg": "23.258076", + "longitude_deg": "119.66755", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-PEN", + "municipality": "Wang'an", + "scheduled_service": "no", + "gps_code": "RCNO", + "keywords": "Donshi, 東石直升機場" + }, + { + "id": "5523", + "ident": "RCPO", + "type": "medium_airport", + "name": "Hsinchu Air Base", + "latitude_deg": "24.8180007935", + "longitude_deg": "120.939002991", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-HSZ", + "municipality": "Hsinchu City", + "scheduled_service": "no", + "gps_code": "RCPO", + "iata_code": "HSZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hsinchu_Air_Base" + }, + { + "id": "5524", + "ident": "RCQC", + "type": "medium_airport", + "name": "Penghu Magong Airport", + "latitude_deg": "23.568701", + "longitude_deg": "119.627998", + "elevation_ft": "103", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-PEN", + "municipality": "Huxi", + "scheduled_service": "yes", + "gps_code": "RCQC", + "iata_code": "MZG", + "home_link": "http://www.mkport.gov.tw/english/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Penghu_Airport", + "keywords": "Magong, Makung" + }, + { + "id": "5525", + "ident": "RCQS", + "type": "medium_airport", + "name": "Chihhang Air Base", + "latitude_deg": "22.793100357055664", + "longitude_deg": "121.18199920654297", + "elevation_ft": "121", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TTT", + "municipality": "Taitung City", + "scheduled_service": "no", + "gps_code": "RCQS", + "keywords": "Jhihhang Airport" + }, + { + "id": "325220", + "ident": "RCSC", + "type": "closed", + "name": "Huwei Airstrip", + "latitude_deg": "23.727958", + "longitude_deg": "120.428862", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-YUN", + "municipality": "Huwei", + "scheduled_service": "no", + "gps_code": "RCSC", + "keywords": "Huwei" + }, + { + "id": "325282", + "ident": "RCSM", + "type": "heliport", + "name": "Riyuetan (Sun Moon Lake) Heliport", + "latitude_deg": "23.883532", + "longitude_deg": "120.940016", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-NAN", + "municipality": "Riyuetan", + "scheduled_service": "no", + "gps_code": "RCSM", + "keywords": "Riyuetan, 日月潭直升機場, Sun Moon Lake" + }, + { + "id": "314646", + "ident": "RCSP", + "type": "small_airport", + "name": "Taiping Island Airport", + "latitude_deg": "10.377089", + "longitude_deg": "114.365637", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-KHH", + "municipality": "Kaohsiung (Cijin - Taiping Island)", + "scheduled_service": "no", + "gps_code": "RCSP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taiping_Island_Airport" + }, + { + "id": "5526", + "ident": "RCSQ", + "type": "medium_airport", + "name": "Pingtung North Airport", + "latitude_deg": "22.700199127197266", + "longitude_deg": "120.48200225830078", + "elevation_ft": "97", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-PIF", + "municipality": "Pingtung", + "scheduled_service": "yes", + "gps_code": "RCSQ", + "iata_code": "PIF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pingtung_Airport" + }, + { + "id": "5527", + "ident": "RCSS", + "type": "medium_airport", + "name": "Taipei Songshan Airport", + "latitude_deg": "25.069400787353516", + "longitude_deg": "121.552001953125", + "elevation_ft": "18", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TPE", + "municipality": "Taipei City", + "scheduled_service": "yes", + "gps_code": "RCSS", + "iata_code": "TSA", + "home_link": "http://www.tsa.gov.tw/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taipei_Songshan_Airport", + "keywords": "Sungshan Airport, 台北松山機場, 臺北松山機場" + }, + { + "id": "5528", + "ident": "RCTP", + "type": "large_airport", + "name": "Taiwan Taoyuan International Airport", + "latitude_deg": "25.0777", + "longitude_deg": "121.233002", + "elevation_ft": "106", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TAO", + "municipality": "Taoyuan (Dayuan)", + "scheduled_service": "yes", + "gps_code": "RCTP", + "iata_code": "TPE", + "home_link": "http://www.taoyuan-airport.com/", + "wikipedia_link": "https://zh.wikipedia.org/wiki/%E8%87%BA%E7%81%A3%E6%A1%83%E5%9C%92%E5%9C%8B%E9%9A%9B%E6%A9%9F%E5%A0%B4", + "keywords": "Taiwan Taoyuan International Airport, 臺灣桃園國際機場" + }, + { + "id": "5529", + "ident": "RCWA", + "type": "small_airport", + "name": "Wang'an Airport", + "latitude_deg": "23.369108", + "longitude_deg": "119.503598", + "elevation_ft": "115", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-PEN", + "municipality": "Wang'an", + "scheduled_service": "no", + "gps_code": "RCWA", + "iata_code": "WOT", + "home_link": "http://www.mkport.gov.tw/English/index.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wangan_Airport" + }, + { + "id": "325271", + "ident": "RCXY", + "type": "small_airport", + "name": "Guiren Airport / Guiren Army Airfield", + "latitude_deg": "22.981864", + "longitude_deg": "120.284243", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TNQ", + "municipality": "Guiren", + "scheduled_service": "no", + "gps_code": "RCXY", + "keywords": "Guerin, 鳳山機場" + }, + { + "id": "5530", + "ident": "RCYU", + "type": "medium_airport", + "name": "Hualien Airport", + "latitude_deg": "24.023099899291992", + "longitude_deg": "121.61799621582031", + "elevation_ft": "52", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-HUA", + "municipality": "Hualien City", + "scheduled_service": "yes", + "gps_code": "RCYU", + "iata_code": "HUN", + "home_link": "http://www.hulairport.gov.tw/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hualien_Airport", + "keywords": "花蓮機場" + }, + { + "id": "24340", + "ident": "RDV", + "type": "small_airport", + "name": "Red Devil Airport", + "latitude_deg": "61.7881011963", + "longitude_deg": "-157.350006104", + "elevation_ft": "174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Red Devil", + "scheduled_service": "no", + "gps_code": "RDV", + "iata_code": "RDV", + "local_code": "RDV" + }, + { + "id": "429771", + "ident": "RE-0001", + "type": "small_airport", + "name": "Adventure Reunion Paramotor Field", + "latitude_deg": "-21.111944", + "longitude_deg": "55.261667", + "elevation_ft": "190", + "continent": "AF", + "iso_country": "RE", + "iso_region": "RE-U-A", + "municipality": "Les Trois-Bassins", + "scheduled_service": "no", + "keywords": "LF97445" + }, + { + "id": "308123", + "ident": "REH", + "type": "closed", + "name": "Rehoboth Airport", + "latitude_deg": "38.72", + "longitude_deg": "-75.122", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Rehoboth Beach", + "scheduled_service": "no", + "iata_code": "REH" + }, + { + "id": "314448", + "ident": "RGE", + "type": "closed", + "name": "Porgera Airport", + "latitude_deg": "-5.4792", + "longitude_deg": "143.1236", + "elevation_ft": "7360", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EPW", + "municipality": "Porgera", + "scheduled_service": "no", + "iata_code": "RGE" + }, + { + "id": "301586", + "ident": "RH8H", + "type": "heliport", + "name": "N 210 Helipad", + "latitude_deg": "37.754574", + "longitude_deg": "126.595346", + "elevation_ft": "415", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RK8H", + "local_code": "RK8H" + }, + { + "id": "333094", + "ident": "RHR", + "type": "seaplane_base", + "name": "Ras al Khaimah Al Hamra Seaplane Base", + "latitude_deg": "25.691", + "longitude_deg": "55.778", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-RK", + "municipality": "Ras Al Khaimah", + "scheduled_service": "no", + "iata_code": "RHR" + }, + { + "id": "46652", + "ident": "RHST", + "type": "small_airport", + "name": "Rheinstetten Glider Field", + "latitude_deg": "48.9777", + "longitude_deg": "8.3425", + "elevation_ft": "380", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BW", + "municipality": "Karlsruhe", + "scheduled_service": "no", + "home_link": "http://www.sfg-reiselfingen.de/" + }, + { + "id": "314557", + "ident": "RHT", + "type": "small_airport", + "name": "Alxa Right Banner Badanjilin Airport", + "latitude_deg": "39.225", + "longitude_deg": "101.546", + "elevation_ft": "4659", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Badanjilin", + "scheduled_service": "yes", + "gps_code": "ZBAR", + "iata_code": "RHT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alxa_Right_Banner_Badanjilin_Airport" + }, + { + "id": "24341", + "ident": "RI01", + "type": "heliport", + "name": "Kent County Memorial Hospital Heliport", + "latitude_deg": "41.70539855957031", + "longitude_deg": "-71.47699737548828", + "elevation_ft": "104", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Warwick", + "scheduled_service": "no", + "gps_code": "RI01", + "local_code": "RI01" + }, + { + "id": "45776", + "ident": "RI02", + "type": "heliport", + "name": "Grayrock Ridge Heliport", + "latitude_deg": "41.949311", + "longitude_deg": "-71.415397", + "elevation_ft": "314", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Cumberland", + "scheduled_service": "no", + "gps_code": "RI02", + "local_code": "RI02" + }, + { + "id": "24342", + "ident": "RI05", + "type": "closed", + "name": "Port Edgewood Marine Heliport", + "latitude_deg": "41.783168", + "longitude_deg": "-71.390741", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Cranston", + "scheduled_service": "no", + "keywords": "RI05" + }, + { + "id": "24343", + "ident": "RI06", + "type": "seaplane_base", + "name": "Tiverton Seaplane Base", + "latitude_deg": "41.64820098876953", + "longitude_deg": "-71.15390014648438", + "elevation_ft": "205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Tiverton", + "scheduled_service": "no", + "gps_code": "RI06", + "local_code": "RI06" + }, + { + "id": "24344", + "ident": "RI07", + "type": "small_airport", + "name": "Wing-Over Farm Airport", + "latitude_deg": "41.57899856567383", + "longitude_deg": "-71.1417007446289", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Tiverton", + "scheduled_service": "no", + "gps_code": "RI07", + "local_code": "RI07" + }, + { + "id": "24345", + "ident": "RI08", + "type": "heliport", + "name": "South County Hospital Heliport", + "latitude_deg": "41.430662", + "longitude_deg": "-71.498074", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Wakefield", + "scheduled_service": "no", + "gps_code": "RI08", + "local_code": "RI08" + }, + { + "id": "24346", + "ident": "RI09", + "type": "closed", + "name": "Portsmouth Ramada Heliport", + "latitude_deg": "41.632", + "longitude_deg": "-71.240303", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Portsmouth", + "scheduled_service": "no", + "keywords": "RI09" + }, + { + "id": "24347", + "ident": "RI11", + "type": "small_airport", + "name": "Riconn Airport", + "latitude_deg": "41.6968", + "longitude_deg": "-71.783699", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Greene", + "scheduled_service": "no", + "gps_code": "RI11", + "local_code": "RI11" + }, + { + "id": "24348", + "ident": "RI12", + "type": "closed", + "name": "Quonset State Air Reserve National Guard Helipad", + "latitude_deg": "41.599499", + "longitude_deg": "-71.416702", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "North Kingstown", + "scheduled_service": "no", + "keywords": "RI12" + }, + { + "id": "24349", + "ident": "RI13", + "type": "heliport", + "name": "Foxridge Farm Heliport", + "latitude_deg": "41.494427", + "longitude_deg": "-71.556179", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "West Kingston", + "scheduled_service": "no", + "gps_code": "RI13", + "local_code": "RI13" + }, + { + "id": "24350", + "ident": "RI14", + "type": "closed", + "name": "H Chambers Cadillac Heliport", + "latitude_deg": "41.792301", + "longitude_deg": "-71.417297", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Providence", + "scheduled_service": "no", + "keywords": "RI14" + }, + { + "id": "24351", + "ident": "RI15", + "type": "heliport", + "name": "One Hospital Trust Heliport", + "latitude_deg": "41.825401306152344", + "longitude_deg": "-71.41010284423828", + "elevation_ft": "406", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Providence", + "scheduled_service": "no", + "gps_code": "RI15", + "local_code": "RI15" + }, + { + "id": "24352", + "ident": "RI16", + "type": "balloonport", + "name": "Keskinen Balloonport", + "latitude_deg": "41.71991", + "longitude_deg": "-71.631603", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Coventry", + "scheduled_service": "no", + "gps_code": "RI16", + "local_code": "RI16" + }, + { + "id": "24353", + "ident": "RI20", + "type": "closed", + "name": "Mystery Farm Airport", + "latitude_deg": "41.733727", + "longitude_deg": "-71.528293", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Cranston", + "scheduled_service": "no", + "keywords": "RI20" + }, + { + "id": "24354", + "ident": "RI21", + "type": "heliport", + "name": "Goat Island Heliport", + "latitude_deg": "41.48820114135742", + "longitude_deg": "-71.3279037475586", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "RI21", + "local_code": "RI21" + }, + { + "id": "24355", + "ident": "RI22", + "type": "closed", + "name": "Capital Center Heliport", + "latitude_deg": "41.828999", + "longitude_deg": "-71.413696", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Providence", + "scheduled_service": "no", + "keywords": "RI22" + }, + { + "id": "24356", + "ident": "RI23", + "type": "heliport", + "name": "Westerly Hospital Heliport", + "latitude_deg": "41.36259841918945", + "longitude_deg": "-71.82369995117188", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Westerly", + "scheduled_service": "no", + "gps_code": "RI23", + "local_code": "RI23" + }, + { + "id": "24357", + "ident": "RI24", + "type": "heliport", + "name": "Duke Heliport", + "latitude_deg": "41.45589828491211", + "longitude_deg": "-71.30509948730469", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "RI24", + "local_code": "RI24" + }, + { + "id": "24358", + "ident": "RI25", + "type": "heliport", + "name": "Rhode Island Hospital Heliport", + "latitude_deg": "41.810191", + "longitude_deg": "-71.409504", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Providence", + "scheduled_service": "no", + "gps_code": "RI25", + "local_code": "RI25" + }, + { + "id": "24359", + "ident": "RI26", + "type": "heliport", + "name": "Landmark Medical Center Heliport", + "latitude_deg": "42.00429916381836", + "longitude_deg": "-71.49420166015625", + "elevation_ft": "202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Woonsocket", + "scheduled_service": "no", + "gps_code": "RI26", + "local_code": "RI26" + }, + { + "id": "24360", + "ident": "RI28", + "type": "seaplane_base", + "name": "Plouffe Landing Seaplane Base", + "latitude_deg": "41.87530136", + "longitude_deg": "-71.59030151", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Glocester", + "scheduled_service": "no", + "gps_code": "RI28", + "local_code": "RI28" + }, + { + "id": "24361", + "ident": "RI30", + "type": "heliport", + "name": "East Arnolda Farm Heliport", + "latitude_deg": "41.3787", + "longitude_deg": "-71.641218", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Charlestown", + "scheduled_service": "no", + "gps_code": "RI30", + "local_code": "RI30" + }, + { + "id": "24362", + "ident": "RI9", + "type": "closed", + "name": "Downtown Providence Helistop", + "latitude_deg": "41.821279", + "longitude_deg": "-71.405227", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Providence", + "scheduled_service": "no", + "keywords": "RI9" + }, + { + "id": "300123", + "ident": "RJ01", + "type": "heliport", + "name": "Akasaka Press Center (Hardy Barracks) Heliport", + "latitude_deg": "35.663333", + "longitude_deg": "139.725556", + "elevation_ft": "97", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Minato, Tokyo", + "scheduled_service": "no", + "gps_code": "RJ01", + "keywords": "akasaka press center, hardy barracks, azabu" + }, + { + "id": "320815", + "ident": "RJ02", + "type": "heliport", + "name": "North Pier Yokohama Heliport / Sankan Heliport", + "latitude_deg": "35.4554", + "longitude_deg": "139.64501", + "elevation_ft": "8", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokohama", + "scheduled_service": "no", + "gps_code": "RJ02", + "local_code": "RJ02" + }, + { + "id": "300118", + "ident": "RJ03", + "type": "heliport", + "name": "Sagami Depot Heliport", + "latitude_deg": "35.585555555599996", + "longitude_deg": "139.384722222", + "elevation_ft": "374", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Sagamihara", + "scheduled_service": "no", + "gps_code": "RJ03" + }, + { + "id": "3355", + "ident": "RJ04", + "type": "small_airport", + "name": "Shikabe Airfield", + "latitude_deg": "42.045033", + "longitude_deg": "140.793293", + "elevation_ft": "63", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Shikabe", + "scheduled_service": "no", + "gps_code": "RJ04", + "local_code": "RJ04", + "keywords": "Asahikoku Shikabe" + }, + { + "id": "5531", + "ident": "RJAA", + "type": "large_airport", + "name": "Narita International Airport", + "latitude_deg": "35.764702", + "longitude_deg": "140.386002", + "elevation_ft": "141", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Narita", + "scheduled_service": "yes", + "gps_code": "RJAA", + "iata_code": "NRT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Narita_International_Airport", + "keywords": "TYO, Tokyo, Tokyo Narita Airport, New Tokyo International Airport" + }, + { + "id": "5532", + "ident": "RJAF", + "type": "medium_airport", + "name": "Shinshu-Matsumoto Airport", + "latitude_deg": "36.166801", + "longitude_deg": "137.923004", + "elevation_ft": "2182", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-20", + "municipality": "Matsumoto", + "scheduled_service": "yes", + "gps_code": "RJAF", + "iata_code": "MMJ", + "home_link": "http://www.matsumoto-airport.co.jp/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Matsumoto_Airport" + }, + { + "id": "5533", + "ident": "RJAH", + "type": "medium_airport", + "name": "Ibaraki Airport / JASDF Hyakuri Air Base", + "latitude_deg": "36.181099", + "longitude_deg": "140.414993", + "elevation_ft": "105", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Omitama", + "scheduled_service": "yes", + "gps_code": "RJAH", + "iata_code": "IBR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hyakuri_Airfield", + "keywords": "ibaraki, hyakuri" + }, + { + "id": "30016", + "ident": "RJAK", + "type": "small_airport", + "name": "JGSDF Kasumigaura Airfield", + "latitude_deg": "36.034698", + "longitude_deg": "140.192993", + "elevation_ft": "92", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-08", + "municipality": "Tsuchiura", + "scheduled_service": "no", + "gps_code": "RJAK" + }, + { + "id": "5534", + "ident": "RJAM", + "type": "small_airport", + "name": "JMSDF Minami Torishima Air Base", + "latitude_deg": "24.2897", + "longitude_deg": "153.979004", + "elevation_ft": "22", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Ogasawara", + "scheduled_service": "no", + "gps_code": "RJAM", + "iata_code": "MUS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Minami_Torishima_Airport", + "keywords": "Marcus Island Airport" + }, + { + "id": "30186", + "ident": "RJAN", + "type": "small_airport", + "name": "Niijima Airport", + "latitude_deg": "34.3694000244", + "longitude_deg": "139.268997192", + "elevation_ft": "92", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Niijima Village", + "scheduled_service": "yes", + "gps_code": "RJAN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Niijima_Airport" + }, + { + "id": "299572", + "ident": "RJAT", + "type": "heliport", + "name": "JGSDF Camp Fuji Heliport / Fuji Army Heliport", + "latitude_deg": "35.317222", + "longitude_deg": "138.87217", + "elevation_ft": "2271", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Gotemba", + "scheduled_service": "no", + "gps_code": "RJAT" + }, + { + "id": "5535", + "ident": "RJAW", + "type": "medium_airport", + "name": "Ioto (Iwo Jima) Air Base", + "latitude_deg": "24.784153", + "longitude_deg": "141.32261", + "elevation_ft": "384", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Ogasawara", + "scheduled_service": "no", + "gps_code": "RJAW", + "iata_code": "IWO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Central_Field_(Iwo_Jima)", + "keywords": "Iwo Jima Airport, Central Field" + }, + { + "id": "32212", + "ident": "RJAZ", + "type": "small_airport", + "name": "Kozushima Airport", + "latitude_deg": "34.189998626699996", + "longitude_deg": "139.134002686", + "elevation_ft": "452", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Kozushima", + "scheduled_service": "no", + "gps_code": "RJAZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/K%C5%8Dzushima_Airport" + }, + { + "id": "5536", + "ident": "RJBB", + "type": "large_airport", + "name": "Kansai International Airport", + "latitude_deg": "34.427299", + "longitude_deg": "135.244003", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "yes", + "gps_code": "RJBB", + "iata_code": "KIX", + "home_link": "http://www.kansai-airport.or.jp/en/index.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kansai_International_Airport", + "keywords": "OSA" + }, + { + "id": "5537", + "ident": "RJBD", + "type": "medium_airport", + "name": "Nanki Shirahama Airport", + "latitude_deg": "33.6622009277", + "longitude_deg": "135.363998413", + "elevation_ft": "298", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-30", + "municipality": "Shirahama", + "scheduled_service": "yes", + "gps_code": "RJBD", + "iata_code": "SHM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nanki-Shirahama_Airport" + }, + { + "id": "5538", + "ident": "RJBE", + "type": "medium_airport", + "name": "Kobe Airport", + "latitude_deg": "34.6328010559082", + "longitude_deg": "135.2239990234375", + "elevation_ft": "22", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Kobe", + "scheduled_service": "yes", + "gps_code": "RJBE", + "iata_code": "UKB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kobe_Airport" + }, + { + "id": "5539", + "ident": "RJBH", + "type": "heliport", + "name": "Hiroshima Heliport", + "latitude_deg": "34.371451", + "longitude_deg": "132.417666", + "elevation_ft": "15", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "no", + "gps_code": "RJBH", + "iata_code": "HIW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hiroshima-Nishi_Airport", + "keywords": "hiroshimanishi, hiroshima-nishi, hiroshima heliport" + }, + { + "id": "5540", + "ident": "RJBK", + "type": "small_airport", + "name": "Kohnan Airport", + "latitude_deg": "34.590801", + "longitude_deg": "133.932999", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Okayama", + "scheduled_service": "no", + "gps_code": "RJBK" + }, + { + "id": "309674", + "ident": "RJBM", + "type": "heliport", + "name": "JMSDF Maizuru Heliport", + "latitude_deg": "35.490425", + "longitude_deg": "135.377196", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-26", + "municipality": "Maizuru", + "scheduled_service": "no", + "gps_code": "RJBM" + }, + { + "id": "5541", + "ident": "RJBT", + "type": "medium_airport", + "name": "Konotori Tajima Airport", + "latitude_deg": "35.512798", + "longitude_deg": "134.787003", + "elevation_ft": "584", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-28", + "municipality": "Toyooka", + "scheduled_service": "no", + "gps_code": "RJBT", + "iata_code": "TJH", + "keywords": "tajima, toyooka" + }, + { + "id": "5542", + "ident": "RJCA", + "type": "small_airport", + "name": "JGSDF Camp Asahikawa Airfield", + "latitude_deg": "43.794734", + "longitude_deg": "142.365432", + "elevation_ft": "377", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Asahikawa", + "scheduled_service": "no", + "gps_code": "RJCA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Asahikawa_Air_Field", + "keywords": "Camp Asahikawa, RJCA" + }, + { + "id": "5543", + "ident": "RJCB", + "type": "medium_airport", + "name": "Tokachi-Obihiro Airport", + "latitude_deg": "42.7332992554", + "longitude_deg": "143.216995239", + "elevation_ft": "505", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Obihiro", + "scheduled_service": "yes", + "gps_code": "RJCB", + "iata_code": "OBO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Obihiro_Airport" + }, + { + "id": "5544", + "ident": "RJCC", + "type": "large_airport", + "name": "New Chitose Airport", + "latitude_deg": "42.7752", + "longitude_deg": "141.692001", + "elevation_ft": "82", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Sapporo", + "scheduled_service": "yes", + "gps_code": "RJCC", + "iata_code": "CTS", + "home_link": "http://www.new-chitose-airport.jp/language/english/", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Chitose_Airport" + }, + { + "id": "5545", + "ident": "RJCH", + "type": "medium_airport", + "name": "Hakodate Airport", + "latitude_deg": "41.77", + "longitude_deg": "140.822006", + "elevation_ft": "151", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Hakodate", + "scheduled_service": "yes", + "gps_code": "RJCH", + "iata_code": "HKD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hakodate_Airport" + }, + { + "id": "5546", + "ident": "RJCJ", + "type": "medium_airport", + "name": "JASDF Chitose Air Base", + "latitude_deg": "42.794498", + "longitude_deg": "141.666", + "elevation_ft": "87", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Chitose", + "scheduled_service": "no", + "gps_code": "RJCJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chitose_Air_Base" + }, + { + "id": "5547", + "ident": "RJCK", + "type": "medium_airport", + "name": "Kushiro Airport", + "latitude_deg": "43.041000366199995", + "longitude_deg": "144.192993164", + "elevation_ft": "327", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Kushiro", + "scheduled_service": "yes", + "gps_code": "RJCK", + "iata_code": "KUH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kushiro_Airport" + }, + { + "id": "5548", + "ident": "RJCM", + "type": "medium_airport", + "name": "Memanbetsu Airport", + "latitude_deg": "43.8805999756", + "longitude_deg": "144.164001465", + "elevation_ft": "135", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Ōzora", + "scheduled_service": "yes", + "gps_code": "RJCM", + "iata_code": "MMB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Memanbetsu_Airport" + }, + { + "id": "5549", + "ident": "RJCN", + "type": "medium_airport", + "name": "Nakashibetsu Airport", + "latitude_deg": "43.5774993896", + "longitude_deg": "144.960006714", + "elevation_ft": "234", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Nakashibetsu", + "scheduled_service": "yes", + "gps_code": "RJCN", + "iata_code": "SHB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nakashibetsu_Airport" + }, + { + "id": "5550", + "ident": "RJCO", + "type": "medium_airport", + "name": "Sapporo Okadama Airport", + "latitude_deg": "43.117447", + "longitude_deg": "141.38134", + "elevation_ft": "25", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Sapporo", + "scheduled_service": "yes", + "gps_code": "RJCO", + "iata_code": "OKD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Okadama_Airport", + "keywords": "RJCO, OKD, Sapporo, Okadama" + }, + { + "id": "30326", + "ident": "RJCR", + "type": "small_airport", + "name": "Rebun Airport", + "latitude_deg": "45.4550018311", + "longitude_deg": "141.039001465", + "elevation_ft": "92", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Rebun", + "scheduled_service": "no", + "gps_code": "RJCR", + "iata_code": "RBJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rebun_Airport" + }, + { + "id": "323825", + "ident": "RJCS", + "type": "medium_airport", + "name": "JASDF Kenebetsu Airfield", + "latitude_deg": "43.425154", + "longitude_deg": "144.741354", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Betsukai", + "scheduled_service": "no", + "gps_code": "RJCS", + "keywords": "RJCS, Kenebetsu, JASDF" + }, + { + "id": "5551", + "ident": "RJCT", + "type": "medium_airport", + "name": "Tokachi Airport", + "latitude_deg": "42.890499", + "longitude_deg": "143.158005", + "elevation_ft": "281", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Obihiro", + "scheduled_service": "no", + "gps_code": "RJCT" + }, + { + "id": "5552", + "ident": "RJCW", + "type": "medium_airport", + "name": "Wakkanai Airport", + "latitude_deg": "45.4042015076", + "longitude_deg": "141.800994873", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Wakkanai", + "scheduled_service": "yes", + "gps_code": "RJCW", + "iata_code": "WKJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wakkanai_Airport" + }, + { + "id": "323826", + "ident": "RJCY", + "type": "small_airport", + "name": "JASDF Yakumo Airbase", + "latitude_deg": "42.245955", + "longitude_deg": "140.265729", + "elevation_ft": "65", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Yakumo", + "scheduled_service": "no", + "gps_code": "RJCY", + "keywords": "RJCY, Yakumo, JASDF, QRN" + }, + { + "id": "5553", + "ident": "RJDA", + "type": "small_airport", + "name": "Amakusa Airport", + "latitude_deg": "32.482498", + "longitude_deg": "130.158997", + "elevation_ft": "340", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-43", + "municipality": "Amakusa", + "scheduled_service": "yes", + "gps_code": "RJDA", + "iata_code": "AXJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amakusa_Airfield" + }, + { + "id": "5554", + "ident": "RJDB", + "type": "medium_airport", + "name": "Iki Airport", + "latitude_deg": "33.7490005493", + "longitude_deg": "129.785003662", + "elevation_ft": "41", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Iki", + "scheduled_service": "yes", + "gps_code": "RJDB", + "iata_code": "IKI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iki_Airport" + }, + { + "id": "5555", + "ident": "RJDC", + "type": "medium_airport", + "name": "Yamaguchi Ube Airport", + "latitude_deg": "33.930000305200004", + "longitude_deg": "131.279006958", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Ube", + "scheduled_service": "yes", + "gps_code": "RJDC", + "iata_code": "UBJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yamaguchi_Ube_Airport" + }, + { + "id": "32214", + "ident": "RJDK", + "type": "small_airport", + "name": "Kamigoto Airport", + "latitude_deg": "33.0130996704", + "longitude_deg": "129.192001343", + "elevation_ft": "263", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Kamigoto", + "scheduled_service": "no", + "gps_code": "RJDK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kamigoto_Airport" + }, + { + "id": "30134", + "ident": "RJDM", + "type": "small_airport", + "name": "JGSDF Metabaru Airfield", + "latitude_deg": "33.325445", + "longitude_deg": "130.413787", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-41", + "municipality": "Yoshinogari", + "scheduled_service": "no", + "gps_code": "RJDM" + }, + { + "id": "30207", + "ident": "RJDO", + "type": "small_airport", + "name": "Ojika Airport", + "latitude_deg": "33.1907997131", + "longitude_deg": "129.089996338", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Ojika", + "scheduled_service": "no", + "gps_code": "RJDO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ojika_Airport" + }, + { + "id": "5556", + "ident": "RJDT", + "type": "medium_airport", + "name": "Tsushima Airport", + "latitude_deg": "34.2849006653", + "longitude_deg": "129.330993652", + "elevation_ft": "213", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Tsushima", + "scheduled_service": "yes", + "gps_code": "RJDT", + "iata_code": "TSJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tsushima_Airport" + }, + { + "id": "340867", + "ident": "RJDU", + "type": "small_airport", + "name": "JMSDF Omura Air Base", + "latitude_deg": "32.928046", + "longitude_deg": "129.934168", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Nagasaki", + "scheduled_service": "no", + "gps_code": "RJDU", + "iata_code": "OMJ", + "keywords": "Omura Airport" + }, + { + "id": "5557", + "ident": "RJEB", + "type": "medium_airport", + "name": "Monbetsu Airport", + "latitude_deg": "44.303901672399995", + "longitude_deg": "143.404006958", + "elevation_ft": "80", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Monbetsu", + "scheduled_service": "yes", + "gps_code": "RJEB", + "iata_code": "MBE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monbetsu_Airport" + }, + { + "id": "5558", + "ident": "RJEC", + "type": "medium_airport", + "name": "Asahikawa Airport", + "latitude_deg": "43.670799", + "longitude_deg": "142.447006", + "elevation_ft": "721", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Asahikawa", + "scheduled_service": "yes", + "gps_code": "RJEC", + "iata_code": "AKJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Asahikawa_Airport" + }, + { + "id": "5559", + "ident": "RJEO", + "type": "medium_airport", + "name": "Okushiri Airport", + "latitude_deg": "42.0717010498", + "longitude_deg": "139.432998657", + "elevation_ft": "161", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Okushiri Island", + "scheduled_service": "yes", + "gps_code": "RJEO", + "iata_code": "OIR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Okushiri_Airport" + }, + { + "id": "5560", + "ident": "RJER", + "type": "medium_airport", + "name": "Rishiri Airport", + "latitude_deg": "45.2420005798", + "longitude_deg": "141.186004639", + "elevation_ft": "112", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Rishiri", + "scheduled_service": "yes", + "gps_code": "RJER", + "iata_code": "RIS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rishiri_Airport" + }, + { + "id": "5561", + "ident": "RJFA", + "type": "medium_airport", + "name": "JASDF Ashiya Air Base", + "latitude_deg": "33.883099", + "longitude_deg": "130.653", + "elevation_ft": "98", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Ashiya", + "scheduled_service": "no", + "gps_code": "RJFA" + }, + { + "id": "5562", + "ident": "RJFC", + "type": "medium_airport", + "name": "Yakushima Airport", + "latitude_deg": "30.385599", + "longitude_deg": "130.658997", + "elevation_ft": "124", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Yakushima", + "scheduled_service": "yes", + "gps_code": "RJFC", + "iata_code": "KUM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yakushima_Airport" + }, + { + "id": "5563", + "ident": "RJFE", + "type": "medium_airport", + "name": "Fukue Airport", + "latitude_deg": "32.66630172729492", + "longitude_deg": "128.83299255371094", + "elevation_ft": "273", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Goto", + "scheduled_service": "yes", + "gps_code": "RJFE", + "iata_code": "FUJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Goto-Fukue_Airport" + }, + { + "id": "5564", + "ident": "RJFF", + "type": "large_airport", + "name": "Fukuoka Airport", + "latitude_deg": "33.585899353027344", + "longitude_deg": "130.4510040283203", + "elevation_ft": "32", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Fukuoka", + "scheduled_service": "yes", + "gps_code": "RJFF", + "iata_code": "FUK", + "home_link": "http://www.fuk-ab.co.jp/english/frame_index.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fukuoka_Airport", + "keywords": "Itazuke Air Base" + }, + { + "id": "5565", + "ident": "RJFG", + "type": "medium_airport", + "name": "New Tanegashima Airport", + "latitude_deg": "30.605100631699997", + "longitude_deg": "130.990997314", + "elevation_ft": "768", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Tanegashima", + "scheduled_service": "yes", + "gps_code": "RJFG", + "iata_code": "TNE", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Tanegashima_Airport" + }, + { + "id": "5566", + "ident": "RJFK", + "type": "large_airport", + "name": "Kagoshima Airport", + "latitude_deg": "31.80340003967285", + "longitude_deg": "130.718994140625", + "elevation_ft": "906", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Kagoshima", + "scheduled_service": "yes", + "gps_code": "RJFK", + "iata_code": "KOJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kagoshima_Airport" + }, + { + "id": "5567", + "ident": "RJFM", + "type": "medium_airport", + "name": "Miyazaki Airport", + "latitude_deg": "31.877199173", + "longitude_deg": "131.449005127", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-45", + "municipality": "Miyazaki", + "scheduled_service": "yes", + "gps_code": "RJFM", + "iata_code": "KMI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miyazaki_Airport" + }, + { + "id": "5568", + "ident": "RJFN", + "type": "small_airport", + "name": "JASDF Nyūtabaru Air Base", + "latitude_deg": "32.083599", + "longitude_deg": "131.451004", + "elevation_ft": "259", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-45", + "municipality": "Shintomi", + "scheduled_service": "no", + "gps_code": "RJFN" + }, + { + "id": "5569", + "ident": "RJFO", + "type": "medium_airport", + "name": "Oita Airport", + "latitude_deg": "33.479400634799994", + "longitude_deg": "131.736999512", + "elevation_ft": "19", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-44", + "municipality": "Oita", + "scheduled_service": "yes", + "gps_code": "RJFO", + "iata_code": "OIT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oita_Airport" + }, + { + "id": "5570", + "ident": "RJFR", + "type": "medium_airport", + "name": "Kitakyushu Airport", + "latitude_deg": "33.845901", + "longitude_deg": "131.035004", + "elevation_ft": "21", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Kitakyushu", + "scheduled_service": "yes", + "gps_code": "RJFR", + "iata_code": "KKJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Kitakyushu_Airport", + "keywords": "kitakyushu, kokuraminami" + }, + { + "id": "5571", + "ident": "RJFS", + "type": "medium_airport", + "name": "Saga Airport", + "latitude_deg": "33.149700164799995", + "longitude_deg": "130.302001953", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-41", + "municipality": "Saga", + "scheduled_service": "yes", + "gps_code": "RJFS", + "iata_code": "HSG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saga_Airport" + }, + { + "id": "5572", + "ident": "RJFT", + "type": "medium_airport", + "name": "Kumamoto Airport", + "latitude_deg": "32.83729934692383", + "longitude_deg": "130.85499572753906", + "elevation_ft": "642", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-43", + "municipality": "Kumamoto", + "scheduled_service": "yes", + "gps_code": "RJFT", + "iata_code": "KMJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kumamoto_Airport" + }, + { + "id": "5573", + "ident": "RJFU", + "type": "medium_airport", + "name": "Nagasaki Airport", + "latitude_deg": "32.916900634799994", + "longitude_deg": "129.914001465", + "elevation_ft": "15", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-42", + "municipality": "Nagasaki", + "scheduled_service": "yes", + "gps_code": "RJFU", + "iata_code": "NGS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nagasaki_Airport" + }, + { + "id": "5574", + "ident": "RJFY", + "type": "medium_airport", + "name": "JMSDF Kanoya Air Base", + "latitude_deg": "31.36672", + "longitude_deg": "130.838805", + "elevation_ft": "214", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Kanoya", + "scheduled_service": "no", + "gps_code": "RJFY" + }, + { + "id": "5575", + "ident": "RJFZ", + "type": "medium_airport", + "name": "JASDF Tsuiki Air Base", + "latitude_deg": "33.685001", + "longitude_deg": "131.039993", + "elevation_ft": "55", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-40", + "municipality": "Tsuiki", + "scheduled_service": "no", + "gps_code": "RJFZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tsuiki_Air_Field", + "keywords": "築城飛行場, Tsuiki Hikōjō, Tsuiki Airbase" + }, + { + "id": "5576", + "ident": "RJGG", + "type": "large_airport", + "name": "Chubu Centrair International Airport", + "latitude_deg": "34.8583984375", + "longitude_deg": "136.80499267578125", + "elevation_ft": "15", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Tokoname", + "scheduled_service": "yes", + "gps_code": "RJGG", + "iata_code": "NGO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ch%C5%ABbu_Centrair_International_Airport" + }, + { + "id": "5577", + "ident": "RJKA", + "type": "medium_airport", + "name": "Amami Airport", + "latitude_deg": "28.430599212646484", + "longitude_deg": "129.71299743652344", + "elevation_ft": "27", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Amami", + "scheduled_service": "yes", + "gps_code": "RJKA", + "iata_code": "ASJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amami_Airport" + }, + { + "id": "5578", + "ident": "RJKB", + "type": "medium_airport", + "name": "Okinoerabu Airport", + "latitude_deg": "27.425501", + "longitude_deg": "128.701004", + "elevation_ft": "101", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Wadomari", + "scheduled_service": "yes", + "gps_code": "RJKB", + "iata_code": "OKE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Okinoerabu_Airport" + }, + { + "id": "5579", + "ident": "RJKI", + "type": "medium_airport", + "name": "Kikai Airport", + "latitude_deg": "28.321300506599997", + "longitude_deg": "129.927993774", + "elevation_ft": "21", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Kikai", + "scheduled_service": "yes", + "gps_code": "RJKI", + "iata_code": "KKX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kikai_Airport" + }, + { + "id": "5580", + "ident": "RJKN", + "type": "medium_airport", + "name": "Tokunoshima Airport", + "latitude_deg": "27.836399", + "longitude_deg": "128.880997", + "elevation_ft": "17", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Amagi", + "scheduled_service": "yes", + "gps_code": "RJKN", + "iata_code": "TKN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tokunoshima_Airport" + }, + { + "id": "5581", + "ident": "RJNA", + "type": "medium_airport", + "name": "Nagoya Airport / JASDF Komaki Air Base", + "latitude_deg": "35.255759", + "longitude_deg": "136.924095", + "elevation_ft": "52", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-23", + "municipality": "Nagoya", + "scheduled_service": "yes", + "gps_code": "RJNA", + "iata_code": "NKM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nagoya_Airfield", + "keywords": "Komaki Airport, Nagoya Airfield" + }, + { + "id": "5582", + "ident": "RJNF", + "type": "medium_airport", + "name": "Fukui Airport", + "latitude_deg": "36.1427993774", + "longitude_deg": "136.223999023", + "elevation_ft": "19", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-18", + "scheduled_service": "no", + "gps_code": "RJNF", + "iata_code": "FKJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fukui_Airport" + }, + { + "id": "5583", + "ident": "RJNG", + "type": "medium_airport", + "name": "Gifu Airport", + "latitude_deg": "35.394100189208984", + "longitude_deg": "136.8699951171875", + "elevation_ft": "128", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-21", + "municipality": "Gifu", + "scheduled_service": "no", + "gps_code": "RJNG", + "iata_code": "QGU" + }, + { + "id": "5584", + "ident": "RJNH", + "type": "medium_airport", + "name": "JASDF Hamamatsu Air Base", + "latitude_deg": "34.750198", + "longitude_deg": "137.703003", + "elevation_ft": "150", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Hamamatsu", + "scheduled_service": "no", + "gps_code": "RJNH" + }, + { + "id": "5585", + "ident": "RJNK", + "type": "medium_airport", + "name": "Komatsu Airport / JASDF Komatsu Air Base", + "latitude_deg": "36.3946", + "longitude_deg": "136.406998", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-17", + "municipality": "Kanazawa", + "scheduled_service": "yes", + "gps_code": "RJNK", + "iata_code": "KMQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Komatsu_Airport" + }, + { + "id": "5586", + "ident": "RJNO", + "type": "medium_airport", + "name": "Oki Global Geopark Airport", + "latitude_deg": "36.178388", + "longitude_deg": "133.323566", + "elevation_ft": "311", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Okinoshima", + "scheduled_service": "yes", + "gps_code": "RJNO", + "iata_code": "OKI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oki_Airport", + "keywords": "oki, okinoshima, geopark, global, sekai" + }, + { + "id": "299238", + "ident": "rjns", + "type": "medium_airport", + "name": "Mount Fuji Shizuoka Airport", + "latitude_deg": "34.796043", + "longitude_deg": "138.187752", + "elevation_ft": "433", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Makinohara / Shimada", + "scheduled_service": "yes", + "gps_code": "RJNS", + "iata_code": "FSZ", + "home_link": "http://www.mtfuji-shizuokaairport.jp/english/index.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shizuoka_Airport" + }, + { + "id": "5587", + "ident": "RJNT", + "type": "medium_airport", + "name": "Toyama Airport", + "latitude_deg": "36.64830017089844", + "longitude_deg": "137.18800354003906", + "elevation_ft": "95", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-16", + "municipality": "Toyama", + "scheduled_service": "yes", + "gps_code": "RJNT", + "iata_code": "TOY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toyama_Airport" + }, + { + "id": "5588", + "ident": "RJNW", + "type": "medium_airport", + "name": "Noto Satoyama Airport", + "latitude_deg": "37.293098", + "longitude_deg": "136.962006", + "elevation_ft": "718", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-17", + "municipality": "Wajima", + "scheduled_service": "yes", + "gps_code": "RJNW", + "iata_code": "NTQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Noto_Airport", + "keywords": "Noto, Wajima" + }, + { + "id": "5589", + "ident": "RJNY", + "type": "medium_airport", + "name": "JASDF Shizuhama Air Base", + "latitude_deg": "34.812801", + "longitude_deg": "138.298004", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Yaizu", + "scheduled_service": "no", + "gps_code": "RJNY" + }, + { + "id": "5590", + "ident": "RJOA", + "type": "medium_airport", + "name": "Hiroshima Airport", + "latitude_deg": "34.4361", + "longitude_deg": "132.919006", + "elevation_ft": "1088", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-34", + "municipality": "Hiroshima", + "scheduled_service": "yes", + "gps_code": "RJOA", + "iata_code": "HIJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hiroshima_Airport" + }, + { + "id": "5591", + "ident": "RJOB", + "type": "medium_airport", + "name": "Okayama Momotaro Airport", + "latitude_deg": "34.756901", + "longitude_deg": "133.854996", + "elevation_ft": "806", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-33", + "municipality": "Okayama", + "scheduled_service": "yes", + "gps_code": "RJOB", + "iata_code": "OKJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Okayama_Airport", + "keywords": "okayama" + }, + { + "id": "5592", + "ident": "RJOC", + "type": "medium_airport", + "name": "Izumo Enmusubi Airport", + "latitude_deg": "35.413601", + "longitude_deg": "132.889999", + "elevation_ft": "15", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Izumo", + "scheduled_service": "yes", + "gps_code": "RJOC", + "iata_code": "IZO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Izumo_Airport", + "keywords": "izumo, enmusubi, en-musubi" + }, + { + "id": "29649", + "ident": "RJOE", + "type": "small_airport", + "name": "JGSDF Akeno Airfield", + "latitude_deg": "34.533298", + "longitude_deg": "136.671997", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-24", + "municipality": "Ise", + "scheduled_service": "no", + "gps_code": "RJOE" + }, + { + "id": "5593", + "ident": "RJOF", + "type": "medium_airport", + "name": "JASDF Hofu Airfield", + "latitude_deg": "34.034746", + "longitude_deg": "131.548716", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Hofu", + "scheduled_service": "no", + "gps_code": "RJOF" + }, + { + "id": "5594", + "ident": "RJOH", + "type": "medium_airport", + "name": "Yonago Kitaro Airport / JASDF Miho Air Base", + "latitude_deg": "35.492199", + "longitude_deg": "133.235992", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Yonago", + "scheduled_service": "yes", + "gps_code": "RJOH", + "iata_code": "YGJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miho-Yonago_Airport", + "keywords": "miho, yonago" + }, + { + "id": "5595", + "ident": "RJOI", + "type": "medium_airport", + "name": "Iwakuni Kintaikyo Airport / Marine Corps Air Station Iwakuni", + "latitude_deg": "34.146333", + "longitude_deg": "132.247238", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Iwakuni", + "scheduled_service": "yes", + "gps_code": "RJOI", + "iata_code": "IWK", + "home_link": "http://www.iwakuni-airport.jp/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marine_Corps_Air_Station_Iwakuni", + "keywords": "MCAS Iwakuni, Iwakuni Air Base" + }, + { + "id": "5596", + "ident": "RJOK", + "type": "medium_airport", + "name": "Kochi Ryoma Airport", + "latitude_deg": "33.546101", + "longitude_deg": "133.669006", + "elevation_ft": "42", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-39", + "municipality": "Nankoku", + "scheduled_service": "yes", + "gps_code": "RJOK", + "iata_code": "KCZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/K%C5%8Dchi_Airport", + "keywords": "Kochi, Nankoku, RJOK, KCZ" + }, + { + "id": "5597", + "ident": "RJOM", + "type": "medium_airport", + "name": "Matsuyama Airport", + "latitude_deg": "33.82720184326172", + "longitude_deg": "132.6999969482422", + "elevation_ft": "25", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-38", + "municipality": "Matsuyama", + "scheduled_service": "yes", + "gps_code": "RJOM", + "iata_code": "MYJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Matsuyama_Airport" + }, + { + "id": "5598", + "ident": "RJOO", + "type": "large_airport", + "name": "Osaka International Airport", + "latitude_deg": "34.785499572753906", + "longitude_deg": "135.43800354003906", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Osaka", + "scheduled_service": "yes", + "gps_code": "RJOO", + "iata_code": "ITM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Osaka_International_Airport", + "keywords": "OSA, Itami" + }, + { + "id": "309676", + "ident": "RJOP", + "type": "heliport", + "name": "JMSDF Komatsushima Heliport", + "latitude_deg": "34.005278", + "longitude_deg": "134.626479", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-36", + "municipality": "Komatsushima", + "scheduled_service": "no", + "gps_code": "RJOP", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_Japan#Heliports", + "keywords": "Komatsushima Airfield" + }, + { + "id": "5599", + "ident": "RJOR", + "type": "medium_airport", + "name": "Tottori Sand Dunes Conan Airport", + "latitude_deg": "35.530102", + "longitude_deg": "134.167007", + "elevation_ft": "65", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-31", + "municipality": "Tottori", + "scheduled_service": "yes", + "gps_code": "RJOR", + "iata_code": "TTJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tottori_Airport", + "keywords": "tottori" + }, + { + "id": "5600", + "ident": "RJOS", + "type": "medium_airport", + "name": "Tokushima Awaodori Airport / JMSDF Tokushima Air Base", + "latitude_deg": "34.132801", + "longitude_deg": "134.606995", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-36", + "municipality": "Tokushima", + "scheduled_service": "yes", + "gps_code": "RJOS", + "iata_code": "TKS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tokushima_Airport; https://ja.wikipedia.org/wiki/%E5%BE%B3%E5%B3%B6%E9%A3%9B%E8%A1%8C%E5%A0%B4#.E8", + "keywords": "Tokushima" + }, + { + "id": "5601", + "ident": "RJOT", + "type": "medium_airport", + "name": "Takamatsu Airport", + "latitude_deg": "34.214199066199996", + "longitude_deg": "134.01600647", + "elevation_ft": "607", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-37", + "municipality": "Takamatsu", + "scheduled_service": "yes", + "gps_code": "RJOT", + "iata_code": "TAK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Takamatsu_Airport" + }, + { + "id": "5602", + "ident": "RJOW", + "type": "medium_airport", + "name": "Iwami Airport", + "latitude_deg": "34.676399231", + "longitude_deg": "131.789993286", + "elevation_ft": "184", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-32", + "municipality": "Masuda", + "scheduled_service": "yes", + "gps_code": "RJOW", + "iata_code": "IWJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iwami_Airport" + }, + { + "id": "5603", + "ident": "RJOY", + "type": "medium_airport", + "name": "Yao Airport", + "latitude_deg": "34.59629821777344", + "longitude_deg": "135.60299682617188", + "elevation_ft": "39", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-27", + "municipality": "Yao", + "scheduled_service": "no", + "gps_code": "RJOY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yao_Airport" + }, + { + "id": "5604", + "ident": "RJOZ", + "type": "small_airport", + "name": "Ozuki Airfield", + "latitude_deg": "34.0453", + "longitude_deg": "131.052002", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-35", + "municipality": "Shimonoseki", + "scheduled_service": "no", + "gps_code": "RJOZ" + }, + { + "id": "5605", + "ident": "RJSA", + "type": "medium_airport", + "name": "Aomori Airport", + "latitude_deg": "40.73469924926758", + "longitude_deg": "140.6909942626953", + "elevation_ft": "664", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Aomori", + "scheduled_service": "yes", + "gps_code": "RJSA", + "iata_code": "AOJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aomori_Airport" + }, + { + "id": "5606", + "ident": "RJSC", + "type": "medium_airport", + "name": "Yamagata Airport", + "latitude_deg": "38.4119", + "longitude_deg": "140.371002", + "elevation_ft": "353", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Higashine", + "scheduled_service": "yes", + "gps_code": "RJSC", + "iata_code": "GAJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yamagata_Airport" + }, + { + "id": "5607", + "ident": "RJSD", + "type": "medium_airport", + "name": "Sado Airport", + "latitude_deg": "38.0601997375", + "longitude_deg": "138.414001465", + "elevation_ft": "88", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Sado", + "scheduled_service": "yes", + "gps_code": "RJSD", + "iata_code": "SDS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sado_Airport" + }, + { + "id": "5608", + "ident": "RJSF", + "type": "medium_airport", + "name": "Fukushima Airport", + "latitude_deg": "37.22740173339844", + "longitude_deg": "140.43099975585938", + "elevation_ft": "1221", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-07", + "municipality": "Sukagawa", + "scheduled_service": "yes", + "gps_code": "RJSF", + "iata_code": "FKS", + "home_link": "http://www.fks-ab.co.jp/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fukushima_Airport", + "keywords": "福島空港" + }, + { + "id": "5609", + "ident": "RJSH", + "type": "medium_airport", + "name": "JMSDF Hachinohe Air Base / Hachinohe Airport", + "latitude_deg": "40.551181", + "longitude_deg": "141.465428", + "elevation_ft": "152", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Hachinohe", + "scheduled_service": "no", + "gps_code": "RJSH", + "iata_code": "HHE" + }, + { + "id": "5610", + "ident": "RJSI", + "type": "medium_airport", + "name": "Iwate Hanamaki Airport", + "latitude_deg": "39.4286", + "longitude_deg": "141.134995", + "elevation_ft": "297", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-03", + "municipality": "Hanamaki", + "scheduled_service": "yes", + "gps_code": "RJSI", + "iata_code": "HNA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hanamaki_Airport", + "keywords": "Morioka" + }, + { + "id": "5611", + "ident": "RJSK", + "type": "medium_airport", + "name": "Akita Airport", + "latitude_deg": "39.615601", + "longitude_deg": "140.218994", + "elevation_ft": "313", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Akita", + "scheduled_service": "yes", + "gps_code": "RJSK", + "iata_code": "AXT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Akita_Airport" + }, + { + "id": "5612", + "ident": "RJSM", + "type": "medium_airport", + "name": "Misawa Air Base / Misawa Airport", + "latitude_deg": "40.703201", + "longitude_deg": "141.367996", + "elevation_ft": "119", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Misawa", + "scheduled_service": "yes", + "gps_code": "RJSM", + "iata_code": "MSJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Misawa_Air_Base" + }, + { + "id": "5613", + "ident": "RJSN", + "type": "medium_airport", + "name": "Niigata Airport", + "latitude_deg": "37.9558982849", + "longitude_deg": "139.121002197", + "elevation_ft": "29", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-15", + "municipality": "Niigata", + "scheduled_service": "yes", + "gps_code": "RJSN", + "iata_code": "KIJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Niigata_Airport" + }, + { + "id": "32216", + "ident": "RJSO", + "type": "small_airport", + "name": "JMSDF Ōminato Base", + "latitude_deg": "41.232808", + "longitude_deg": "141.132171", + "elevation_ft": "24", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-02", + "municipality": "Mutsu", + "scheduled_service": "no", + "gps_code": "RJSO", + "wikipedia_link": "https://en.wikipedia.org/wiki/JMSDF_Ōminato_Base" + }, + { + "id": "5614", + "ident": "RJSR", + "type": "medium_airport", + "name": "Odate Noshiro Airport", + "latitude_deg": "40.191898", + "longitude_deg": "140.371002", + "elevation_ft": "292", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-05", + "municipality": "Kitaakita", + "scheduled_service": "yes", + "gps_code": "RJSR", + "iata_code": "ONJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Odate-Noshiro_Airport" + }, + { + "id": "5615", + "ident": "RJSS", + "type": "large_airport", + "name": "Sendai Airport", + "latitude_deg": "38.139702", + "longitude_deg": "140.917007", + "elevation_ft": "15", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Natori", + "scheduled_service": "yes", + "gps_code": "RJSS", + "iata_code": "SDJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sendai_Airport" + }, + { + "id": "5616", + "ident": "RJST", + "type": "medium_airport", + "name": "JASDF Matsushima Air Base", + "latitude_deg": "38.4049", + "longitude_deg": "141.220001", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Ishinomaki", + "scheduled_service": "no", + "gps_code": "RJST", + "home_link": "http://www.mod.go.jp/asdf/matsushima/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Matsushima_Air_Field", + "keywords": "松島飛行場, 松島基地" + }, + { + "id": "30406", + "ident": "RJSU", + "type": "small_airport", + "name": "JGSDF Kasuminome Airfield", + "latitude_deg": "38.2356", + "longitude_deg": "140.923004", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-04", + "municipality": "Sendai", + "scheduled_service": "no", + "gps_code": "RJSU" + }, + { + "id": "5617", + "ident": "RJSY", + "type": "medium_airport", + "name": "Shonai Airport", + "latitude_deg": "38.812199", + "longitude_deg": "139.787003", + "elevation_ft": "86", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-06", + "municipality": "Shonai", + "scheduled_service": "yes", + "gps_code": "RJSY", + "iata_code": "SYO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shonai_Airport" + }, + { + "id": "334435", + "ident": "RJT2", + "type": "small_airport", + "name": "Miho Airfield", + "latitude_deg": "35.01394", + "longitude_deg": "138.53074", + "elevation_ft": "9", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-22", + "municipality": "Shizuoka", + "scheduled_service": "no", + "gps_code": "RJT2", + "local_code": "RJT2" + }, + { + "id": "334760", + "ident": "RJT3", + "type": "closed", + "name": "Onishi Private Airfield", + "latitude_deg": "36.232271", + "longitude_deg": "139.493043", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Ora", + "scheduled_service": "no", + "gps_code": "RJT3", + "local_code": "RJT3", + "keywords": "ora, onishi, rjt3" + }, + { + "id": "5618", + "ident": "RJTA", + "type": "medium_airport", + "name": "JMSDF Atsugi Air Base / Naval Air Facility Atsugi", + "latitude_deg": "35.454601", + "longitude_deg": "139.449997", + "elevation_ft": "205", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Ayase / Yamato", + "scheduled_service": "no", + "gps_code": "RJTA", + "iata_code": "NJA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Facility_Atsugi", + "keywords": "Atsugi NAF" + }, + { + "id": "30460", + "ident": "RJTC", + "type": "small_airport", + "name": "Tachikawa Airfield", + "latitude_deg": "35.7121", + "longitude_deg": "139.403243", + "elevation_ft": "312", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Tachikawa", + "scheduled_service": "no", + "gps_code": "RJTC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tachikawa_Airfield" + }, + { + "id": "5619", + "ident": "RJTE", + "type": "medium_airport", + "name": "JMSDF Tateyama Air Base", + "latitude_deg": "34.987099", + "longitude_deg": "139.828995", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Tateyama", + "scheduled_service": "no", + "gps_code": "RJTE", + "wikipedia_link": "https://en.wikipedia.org/wiki/JMSDF_Tateyama_Air_Base" + }, + { + "id": "29783", + "ident": "RJTF", + "type": "medium_airport", + "name": "Chofu Airport", + "latitude_deg": "35.6717", + "longitude_deg": "139.528", + "elevation_ft": "141", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Chofu", + "scheduled_service": "yes", + "gps_code": "RJTF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chofu_Airport" + }, + { + "id": "5620", + "ident": "RJTH", + "type": "medium_airport", + "name": "Hachijojima Airport", + "latitude_deg": "33.115002", + "longitude_deg": "139.785995", + "elevation_ft": "303", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Hachijojima", + "scheduled_service": "yes", + "gps_code": "RJTH", + "iata_code": "HAC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hachijojima_Airport" + }, + { + "id": "309673", + "ident": "RJTI", + "type": "heliport", + "name": "Tokyo Heliport", + "latitude_deg": "35.635924", + "longitude_deg": "139.839475", + "elevation_ft": "14", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Edogawa, Tokyo", + "scheduled_service": "no", + "gps_code": "RJTI", + "home_link": "http://www.kouwan.metro.tokyo.jp/rito/tmg_heliport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tokyo_Heliport", + "keywords": "QXO" + }, + { + "id": "5621", + "ident": "RJTJ", + "type": "medium_airport", + "name": "Iruma Air Base", + "latitude_deg": "35.8419", + "longitude_deg": "139.410995", + "elevation_ft": "295", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Sayama", + "scheduled_service": "no", + "gps_code": "RJTJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iruma_Air_Base", + "keywords": "Johnson Air Base" + }, + { + "id": "5622", + "ident": "RJTK", + "type": "medium_airport", + "name": "JGSDF Kisarazu Airfield", + "latitude_deg": "35.3983", + "longitude_deg": "139.910004", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Kisarazu", + "scheduled_service": "no", + "gps_code": "RJTK" + }, + { + "id": "5623", + "ident": "RJTL", + "type": "medium_airport", + "name": "JMSDF Shimofusa Air Base", + "latitude_deg": "35.798901", + "longitude_deg": "140.011002", + "elevation_ft": "98", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-12", + "municipality": "Matsudo", + "scheduled_service": "no", + "gps_code": "RJTL" + }, + { + "id": "5624", + "ident": "RJTO", + "type": "medium_airport", + "name": "Oshima Airport", + "latitude_deg": "34.782001495399996", + "longitude_deg": "139.36000061", + "elevation_ft": "130", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Izu Oshima", + "scheduled_service": "yes", + "gps_code": "RJTO", + "iata_code": "OIM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oshima_Airport" + }, + { + "id": "5625", + "ident": "RJTQ", + "type": "medium_airport", + "name": "Miyakejima Airport", + "latitude_deg": "34.073600769", + "longitude_deg": "139.559997559", + "elevation_ft": "67", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Miyakejima", + "scheduled_service": "yes", + "gps_code": "RJTQ", + "iata_code": "MYE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miyakejima_Airport" + }, + { + "id": "5626", + "ident": "RJTR", + "type": "heliport", + "name": "Camp Zama Kastner Army Heliport", + "latitude_deg": "35.512771", + "longitude_deg": "139.393437", + "elevation_ft": "360", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Sagamihara / Zama", + "scheduled_service": "no", + "gps_code": "RJTR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_Zama" + }, + { + "id": "309675", + "ident": "RJTS", + "type": "heliport", + "name": "JGSDF Somagahara Heliport", + "latitude_deg": "36.434767", + "longitude_deg": "138.952936", + "elevation_ft": "1300", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-10", + "municipality": "Maebashi", + "scheduled_service": "no", + "gps_code": "RJTS" + }, + { + "id": "5627", + "ident": "RJTT", + "type": "large_airport", + "name": "Tokyo Haneda International Airport", + "latitude_deg": "35.552299", + "longitude_deg": "139.779999", + "elevation_ft": "35", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Tokyo", + "scheduled_service": "yes", + "gps_code": "RJTT", + "iata_code": "HND", + "home_link": "http://www.haneda-airport.jp/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tokyo_International_Airport", + "keywords": "TYO, Haneda" + }, + { + "id": "5628", + "ident": "RJTU", + "type": "medium_airport", + "name": "Utsunomiya Airport", + "latitude_deg": "36.5145", + "longitude_deg": "139.87101", + "elevation_ft": "334", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-09", + "municipality": "Utsunomiya", + "scheduled_service": "no", + "gps_code": "RJTU", + "keywords": "QUT" + }, + { + "id": "41850", + "ident": "RJTX", + "type": "heliport", + "name": "Yokosuka Heliport", + "latitude_deg": "35.289663", + "longitude_deg": "139.680047", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-14", + "municipality": "Yokosuka", + "scheduled_service": "no", + "gps_code": "RJTX" + }, + { + "id": "5629", + "ident": "RJTY", + "type": "large_airport", + "name": "Yokota Air Base", + "latitude_deg": "35.748501", + "longitude_deg": "139.348007", + "elevation_ft": "463", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-13", + "municipality": "Fussa", + "scheduled_service": "no", + "gps_code": "RJTY", + "iata_code": "OKO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yokota_Air_Base" + }, + { + "id": "324930", + "ident": "RJX2", + "type": "closed", + "name": "Aibetsu Airport", + "latitude_deg": "43.882207", + "longitude_deg": "142.609506", + "elevation_ft": "1027", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Aibetsu", + "scheduled_service": "no", + "gps_code": "RJX2", + "wikipedia_link": "https://ja.wikipedia.org/wiki/%E6%84%9B%E5%88%A5%E9%A3%9B%E8%A1%8C%E5%A0%B4", + "keywords": "Daicolo-Aibetsu Airfield" + }, + { + "id": "324934", + "ident": "RJX9", + "type": "closed", + "name": "Teshikaga Airport", + "latitude_deg": "43.479495", + "longitude_deg": "144.432911", + "elevation_ft": "360", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-01", + "municipality": "Teshikaga", + "scheduled_service": "no", + "gps_code": "RJX9", + "keywords": "RJBO" + }, + { + "id": "317953", + "ident": "RK01", + "type": "heliport", + "name": "Charlie Block (H 177) Heliport", + "latitude_deg": "37.83645", + "longitude_deg": "126.80712", + "elevation_ft": "614", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Charlie Block", + "scheduled_service": "no", + "gps_code": "RK01", + "local_code": "RK01" + }, + { + "id": "317954", + "ident": "RK02", + "type": "heliport", + "name": "H 200 Heliport", + "latitude_deg": "37.347767", + "longitude_deg": "127.012862", + "elevation_ft": "1317", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Madison VHF Site", + "scheduled_service": "no", + "gps_code": "RK02", + "local_code": "RK02" + }, + { + "id": "317955", + "ident": "RK03", + "type": "heliport", + "name": "Camp Nabors (H 202) Heliport", + "latitude_deg": "37.940957", + "longitude_deg": "126.969984", + "elevation_ft": "2132", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Camp Nabors", + "scheduled_service": "no", + "gps_code": "RK03", + "local_code": "RK03", + "keywords": "Gamaksan Mountain, H 202, Camp Nabors" + }, + { + "id": "317956", + "ident": "RK04", + "type": "heliport", + "name": "Camp Mosier (H 211) Heliport", + "latitude_deg": "37.768077", + "longitude_deg": "127.039222", + "elevation_ft": "185", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Nogyang-ro", + "scheduled_service": "no", + "gps_code": "RK04", + "local_code": "RK04" + }, + { + "id": "317957", + "ident": "RK05", + "type": "heliport", + "name": "Camp Casey East Heliport (H-221)", + "latitude_deg": "37.921815", + "longitude_deg": "127.085992", + "elevation_ft": "294", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Dongduchon", + "scheduled_service": "no", + "gps_code": "RK05", + "local_code": "RK05" + }, + { + "id": "317958", + "ident": "RK06", + "type": "closed", + "name": "Camp Edwards (H 230) Heliport", + "latitude_deg": "37.779725", + "longitude_deg": "126.785276", + "elevation_ft": "110", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Camp Edwards", + "scheduled_service": "no", + "gps_code": "RK06", + "local_code": "RK06", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_Edwards_(South_Korea)" + }, + { + "id": "319299", + "ident": "RK07", + "type": "closed", + "name": "H 233 Heliport", + "latitude_deg": "38.240995", + "longitude_deg": "127.108458", + "elevation_ft": "1400", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "local_code": "RKB3" + }, + { + "id": "319300", + "ident": "RK08", + "type": "closed", + "name": "Camp Colbern Heliport (H-245)", + "latitude_deg": "37.51673", + "longitude_deg": "127.227945", + "elevation_ft": "267", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Hasangok-dong", + "scheduled_service": "no", + "gps_code": "RK08", + "local_code": "RK08", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_Colbern; https://en.wikipedia.org/wiki/List_of_United_States_Army_installations_in_South_Kore" + }, + { + "id": "319301", + "ident": "RK09", + "type": "heliport", + "name": "H 247 Heliport", + "latitude_deg": "37.763077", + "longitude_deg": "127.00559", + "elevation_ft": "1375", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Concord FOC North", + "scheduled_service": "no", + "gps_code": "RK09", + "local_code": "RK09" + }, + { + "id": "321077", + "ident": "RK0A", + "type": "heliport", + "name": "H 173A Heliport", + "latitude_deg": "37.911791", + "longitude_deg": "126.878977", + "elevation_ft": "1158", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Neulno-ri", + "scheduled_service": "no", + "local_code": "RK0A", + "keywords": "H-173A" + }, + { + "id": "300261", + "ident": "RK11", + "type": "closed", + "name": "Camp Merser (H 250) Heliport", + "latitude_deg": "37.524969", + "longitude_deg": "126.7907", + "elevation_ft": "70", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Camp Merser", + "scheduled_service": "no", + "gps_code": "RK11", + "local_code": "RK11" + }, + { + "id": "300262", + "ident": "RK12", + "type": "heliport", + "name": "C 281 Heliport", + "latitude_deg": "37.426863", + "longitude_deg": "127.060554", + "elevation_ft": "562", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Yetgol-ro", + "scheduled_service": "no", + "gps_code": "RK12", + "local_code": "RK12" + }, + { + "id": "3798", + "ident": "RK13", + "type": "small_airport", + "name": "Yanggu (G-404) Airport", + "latitude_deg": "38.086574", + "longitude_deg": "127.986817", + "elevation_ft": "655", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Yanggu", + "scheduled_service": "no", + "local_code": "RK13", + "keywords": "Yanggu, G 404, G-404, K-52, RK13" + }, + { + "id": "3799", + "ident": "RK14", + "type": "small_airport", + "name": "Idong Airport (G-231)", + "latitude_deg": "38.0266", + "longitude_deg": "127.366997", + "elevation_ft": "464", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Idong-myeon", + "scheduled_service": "no", + "gps_code": "RKRI", + "local_code": "RK14" + }, + { + "id": "3800", + "ident": "RK15", + "type": "small_airport", + "name": "Ji Po Ri Airfield (G-237)", + "latitude_deg": "38.155043", + "longitude_deg": "127.314076", + "elevation_ft": "510", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Witguntan", + "scheduled_service": "no", + "gps_code": "RK15", + "local_code": "RK15" + }, + { + "id": "3801", + "ident": "RK16", + "type": "small_airport", + "name": "G-312 Airport", + "latitude_deg": "38.075739", + "longitude_deg": "127.521122", + "elevation_ft": "855", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Sanae-myeon", + "scheduled_service": "no", + "gps_code": "RK16", + "local_code": "RK16" + }, + { + "id": "3802", + "ident": "RK17", + "type": "small_airport", + "name": "G-406 Airport", + "latitude_deg": "38.139645", + "longitude_deg": "128.009123", + "elevation_ft": "656", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Jukgok-ro", + "scheduled_service": "no", + "gps_code": "RK17", + "local_code": "RK17" + }, + { + "id": "3803", + "ident": "RK18", + "type": "small_airport", + "name": "G 233 Airport", + "latitude_deg": "38.083162", + "longitude_deg": "127.269037", + "elevation_ft": "340", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Munam", + "scheduled_service": "no", + "gps_code": "RK18", + "local_code": "RK18" + }, + { + "id": "3804", + "ident": "RK19", + "type": "small_airport", + "name": "G-314 Airport", + "latitude_deg": "38.139884", + "longitude_deg": "127.740111", + "elevation_ft": "600", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Hwacheon", + "scheduled_service": "no", + "gps_code": "RK19", + "local_code": "RK19" + }, + { + "id": "300406", + "ident": "RK1C", + "type": "heliport", + "name": "Camp Thompson Heliport (C-100)", + "latitude_deg": "37.387971", + "longitude_deg": "126.889005", + "elevation_ft": "190", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Bakdal-dong", + "scheduled_service": "no", + "gps_code": "RK1C", + "local_code": "RK1C" + }, + { + "id": "300003", + "ident": "RK1D", + "type": "heliport", + "name": "C 106 Heliport", + "latitude_deg": "37.623388", + "longitude_deg": "126.643615", + "elevation_ft": "140", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Incheon", + "scheduled_service": "no", + "gps_code": "RK1D" + }, + { + "id": "322786", + "ident": "RK1E", + "type": "heliport", + "name": "C 109 Heliport", + "latitude_deg": "37.749109", + "longitude_deg": "126.929365", + "elevation_ft": "1813", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "TAC Site 34", + "scheduled_service": "no", + "gps_code": "RK1E", + "local_code": "RK1E" + }, + { + "id": "300360", + "ident": "RK1F", + "type": "heliport", + "name": "C 114 Heliport", + "latitude_deg": "37.829353", + "longitude_deg": "126.842989", + "elevation_ft": "106", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "McDonald Barracks", + "scheduled_service": "no", + "gps_code": "RK1F", + "local_code": "RK1F" + }, + { + "id": "300361", + "ident": "RK1G", + "type": "heliport", + "name": "C 116 Heliport", + "latitude_deg": "37.8341666667", + "longitude_deg": "126.815555556", + "elevation_ft": "137", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Camp Custer North", + "scheduled_service": "no", + "gps_code": "RK1G", + "local_code": "RK1G" + }, + { + "id": "300362", + "ident": "RK1H", + "type": "heliport", + "name": "Camp McNair Heliport (C-118)", + "latitude_deg": "37.856336", + "longitude_deg": "126.863964", + "elevation_ft": "280", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Camp McNair", + "scheduled_service": "no", + "gps_code": "RK1H", + "local_code": "RK1H" + }, + { + "id": "300366", + "ident": "RK1J", + "type": "closed", + "name": "Camp Greaves Heliport (H-122)", + "latitude_deg": "37.901432", + "longitude_deg": "126.735642", + "elevation_ft": "146", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Camp Greaves", + "scheduled_service": "no", + "gps_code": "RK1J", + "local_code": "RK1J" + }, + { + "id": "300367", + "ident": "RK1K", + "type": "heliport", + "name": "C 123 Heliport", + "latitude_deg": "37.893679", + "longitude_deg": "126.724243", + "elevation_ft": "96", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "DMZ Service Center", + "scheduled_service": "no", + "gps_code": "RK1K", + "local_code": "RK1K", + "keywords": "Museum Pad" + }, + { + "id": "300368", + "ident": "RK1L", + "type": "heliport", + "name": "C 126 Heliport", + "latitude_deg": "37.924399", + "longitude_deg": "126.793232", + "elevation_ft": "66", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Nopeuneumjari", + "scheduled_service": "no", + "gps_code": "RK1L", + "local_code": "RK1L" + }, + { + "id": "300369", + "ident": "RK1M", + "type": "heliport", + "name": "C 132 Heliport", + "latitude_deg": "37.36762", + "longitude_deg": "126.778949", + "elevation_ft": "329", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Sami", + "scheduled_service": "no", + "gps_code": "RK1M", + "local_code": "RK1M", + "keywords": "TAC site 41" + }, + { + "id": "300370", + "ident": "RK1N", + "type": "heliport", + "name": "C 135 Heliport", + "latitude_deg": "37.623114", + "longitude_deg": "126.703641", + "elevation_ft": "182", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RK1N", + "local_code": "RK1N", + "keywords": "TAC Site 42" + }, + { + "id": "308815", + "ident": "RK1P", + "type": "heliport", + "name": "Camp Irwin (C 141) Heliport", + "latitude_deg": "37.856482", + "longitude_deg": "126.927248", + "elevation_ft": "720", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Camp Irwin", + "scheduled_service": "no", + "gps_code": "RK1P", + "local_code": "RK1P", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_United_States_Army_installations_in_South_Korea", + "keywords": "Camp Irwin, ROK Army 1st Artillery Brigade, 2nd Artillery Group, 6878th Unit" + }, + { + "id": "308816", + "ident": "RK1Q", + "type": "heliport", + "name": "C 143 Heliport", + "latitude_deg": "37.462558", + "longitude_deg": "126.893061", + "elevation_ft": "96", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Beoman-ro, Doksan-dong", + "scheduled_service": "no", + "gps_code": "RK1Q", + "local_code": "RK1Q" + }, + { + "id": "322768", + "ident": "RK1R", + "type": "heliport", + "name": "C 147 Heliport", + "latitude_deg": "37.40668", + "longitude_deg": "126.662286", + "elevation_ft": "261", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Meonugeum-ro", + "scheduled_service": "no", + "gps_code": "RK1R", + "local_code": "RK1R" + }, + { + "id": "322767", + "ident": "RK1T", + "type": "heliport", + "name": "C 151 Heliport", + "latitude_deg": "37.612034", + "longitude_deg": "126.874189", + "elevation_ft": "132", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "ROK 30th Division", + "scheduled_service": "no", + "gps_code": "RK1T", + "local_code": "RK1T" + }, + { + "id": "322766", + "ident": "RK1V", + "type": "heliport", + "name": "C 157 Heliport", + "latitude_deg": "37.721953", + "longitude_deg": "126.909629", + "elevation_ft": "505", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "ROK 1st Corps", + "scheduled_service": "no", + "gps_code": "RK1V", + "local_code": "RK1V" + }, + { + "id": "323132", + "ident": "RK1W", + "type": "heliport", + "name": "C 158 Heliport", + "latitude_deg": "37.947837", + "longitude_deg": "126.747393", + "elevation_ft": "256", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "local_code": "RK1W" + }, + { + "id": "315638", + "ident": "RK1X", + "type": "heliport", + "name": "C 161 Heliport", + "latitude_deg": "37.79781", + "longitude_deg": "126.851741", + "elevation_ft": "280", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Kwang Tan", + "scheduled_service": "no", + "local_code": "RK1X" + }, + { + "id": "315637", + "ident": "RK1Y", + "type": "heliport", + "name": "C 171 Heliport", + "latitude_deg": "37.8275", + "longitude_deg": "126.8092", + "elevation_ft": "145", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Camp Custer South", + "scheduled_service": "no", + "gps_code": "RK1Y", + "local_code": "RK1Y", + "keywords": "Camp Custer South" + }, + { + "id": "3805", + "ident": "RK20", + "type": "closed", + "name": "G-500 Airport", + "latitude_deg": "36.111099", + "longitude_deg": "127.103996", + "elevation_ft": "66", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Nonsan", + "scheduled_service": "no", + "gps_code": "RK20", + "local_code": "RK20" + }, + { + "id": "3806", + "ident": "RK21", + "type": "small_airport", + "name": "G-413 Airport", + "latitude_deg": "38.382541", + "longitude_deg": "128.458071", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Goseong", + "scheduled_service": "no", + "gps_code": "RK21", + "local_code": "RK21" + }, + { + "id": "3807", + "ident": "RK22", + "type": "small_airport", + "name": "G-313 Airport", + "latitude_deg": "38.120023", + "longitude_deg": "127.686067", + "elevation_ft": "460", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Hwacheon", + "scheduled_service": "no", + "gps_code": "RK22", + "local_code": "RK22" + }, + { + "id": "3808", + "ident": "RK24", + "type": "closed", + "name": "G-522 Airport", + "latitude_deg": "36.179211", + "longitude_deg": "127.83582", + "elevation_ft": "546", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-43", + "municipality": "Yeongdong", + "scheduled_service": "no", + "gps_code": "RK24", + "local_code": "RK24" + }, + { + "id": "3809", + "ident": "RK25", + "type": "small_airport", + "name": "Tongjin (G-107) Airfield", + "latitude_deg": "37.715263", + "longitude_deg": "126.56011", + "elevation_ft": "45", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Wolgot-myeon", + "scheduled_service": "no", + "local_code": "RK25", + "keywords": "RK25, G 107, G-107, Tongjin, Wolgot" + }, + { + "id": "3810", + "ident": "RK27", + "type": "small_airport", + "name": "G-218 Airport", + "latitude_deg": "37.895023", + "longitude_deg": "126.970518", + "elevation_ft": "381", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Gaenari", + "scheduled_service": "no", + "gps_code": "RK27", + "local_code": "RK27" + }, + { + "id": "3811", + "ident": "RK28", + "type": "small_airport", + "name": "G-219 Airport", + "latitude_deg": "37.90939", + "longitude_deg": "127.008455", + "elevation_ft": "317", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Samnyuksa-ro", + "scheduled_service": "no", + "gps_code": "RK28", + "local_code": "RK28" + }, + { + "id": "3812", + "ident": "RK29", + "type": "closed", + "name": "Guri (G-203) Airport", + "latitude_deg": "37.6437", + "longitude_deg": "127.149002", + "elevation_ft": "80", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Guri", + "scheduled_service": "no", + "local_code": "RK29", + "keywords": "Guri, G 203, G-203" + }, + { + "id": "300381", + "ident": "RK2A", + "type": "heliport", + "name": "C 181Heliport", + "latitude_deg": "37.631898", + "longitude_deg": "126.674233", + "elevation_ft": "307", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RK2A", + "local_code": "RK2A" + }, + { + "id": "323135", + "ident": "RK2B", + "type": "heliport", + "name": "C 182 Heliport", + "latitude_deg": "37.754008", + "longitude_deg": "126.434821", + "elevation_ft": "730", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "scheduled_service": "no", + "gps_code": "RK2B", + "local_code": "RK2B" + }, + { + "id": "300407", + "ident": "RK2C", + "type": "heliport", + "name": "C 183 Heliport", + "latitude_deg": "37.815291", + "longitude_deg": "126.263275", + "elevation_ft": "92", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Gyodongdo", + "scheduled_service": "no", + "gps_code": "RK2C", + "local_code": "RK2C" + }, + { + "id": "300419", + "ident": "RK2D", + "type": "heliport", + "name": "C 184 Heliport", + "latitude_deg": "37.673009", + "longitude_deg": "126.163267", + "elevation_ft": "238", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Boreumdo-ri, Boreumdo", + "scheduled_service": "no", + "gps_code": "RK2D", + "local_code": "RK2D" + }, + { + "id": "315173", + "ident": "RK2F", + "type": "heliport", + "name": "C 186 Heliport", + "latitude_deg": "37.688264", + "longitude_deg": "126.128182", + "elevation_ft": "254", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Mal-to Island", + "scheduled_service": "no", + "gps_code": "RK2F", + "local_code": "RK2F" + }, + { + "id": "315172", + "ident": "RK2G", + "type": "heliport", + "name": "C 188 Heliport", + "latitude_deg": "37.885735", + "longitude_deg": "126.7164", + "elevation_ft": "257", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Nosang-ri", + "scheduled_service": "no", + "gps_code": "RK2G", + "local_code": "RK2G" + }, + { + "id": "315171", + "ident": "RK2J", + "type": "heliport", + "name": "C 190 Heliport", + "latitude_deg": "37.911313", + "longitude_deg": "126.810185", + "elevation_ft": "532", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Irwolbong", + "scheduled_service": "no", + "gps_code": "RK2J", + "local_code": "RK2J" + }, + { + "id": "314790", + "ident": "RK2K", + "type": "heliport", + "name": "C 191 Heliport", + "latitude_deg": "37.908727", + "longitude_deg": "126.712017", + "elevation_ft": "61", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RK2K", + "local_code": "RK2K" + }, + { + "id": "314789", + "ident": "RK2L", + "type": "heliport", + "name": "C 192 Heliport", + "latitude_deg": "37.683856", + "longitude_deg": "126.797888", + "elevation_ft": "169", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RK2L", + "local_code": "RK2L" + }, + { + "id": "314788", + "ident": "RK2M", + "type": "heliport", + "name": "Camp Flagstaff (C 205) Heliport", + "latitude_deg": "37.715062", + "longitude_deg": "127.038693", + "elevation_ft": "309", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Camp Flag Staff", + "scheduled_service": "no", + "gps_code": "RK2M", + "local_code": "RK2M" + }, + { + "id": "314693", + "ident": "RK2O", + "type": "heliport", + "name": "C 241 Heliport", + "latitude_deg": "37.84965", + "longitude_deg": "127.015807", + "elevation_ft": "520", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Hwahrap-ro", + "scheduled_service": "no", + "gps_code": "RK2O", + "local_code": "RK2O" + }, + { + "id": "314515", + "ident": "RK2P", + "type": "heliport", + "name": "C 242 Heliport", + "latitude_deg": "37.469615", + "longitude_deg": "127.010558", + "elevation_ft": "845", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Umyeon-dong", + "scheduled_service": "no", + "gps_code": "RK2P", + "local_code": "RK2P" + }, + { + "id": "314514", + "ident": "RK2Q", + "type": "heliport", + "name": "C 250 Heliport", + "latitude_deg": "37.8807", + "longitude_deg": "127.1689", + "elevation_ft": "578", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RK2Q", + "local_code": "RK2Q" + }, + { + "id": "314513", + "ident": "RK2R", + "type": "heliport", + "name": "C-251 Heliport", + "latitude_deg": "37.916051", + "longitude_deg": "127.311129", + "elevation_ft": "540", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Hwadong-ro", + "scheduled_service": "no", + "local_code": "RK2R" + }, + { + "id": "314414", + "ident": "RK2U", + "type": "heliport", + "name": "C 257 Heliport", + "latitude_deg": "37.803691", + "longitude_deg": "127.004469", + "elevation_ft": "420", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RK2U", + "local_code": "RK2U" + }, + { + "id": "314413", + "ident": "RK2V", + "type": "heliport", + "name": "C 259 Heliport", + "latitude_deg": "38.027019", + "longitude_deg": "127.13306", + "elevation_ft": "248", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Baegui-ro", + "scheduled_service": "no", + "gps_code": "RK2V", + "local_code": "RK2V" + }, + { + "id": "314038", + "ident": "RK2X", + "type": "heliport", + "name": "C-262 Heliport", + "latitude_deg": "37.8298", + "longitude_deg": "127.3483", + "elevation_ft": "459", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Angok-ro", + "scheduled_service": "no", + "local_code": "RK2X" + }, + { + "id": "313884", + "ident": "RK2Y", + "type": "heliport", + "name": "C 265 Heliport", + "latitude_deg": "38.071136", + "longitude_deg": "127.351839", + "elevation_ft": "1936", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Topyonri", + "scheduled_service": "no", + "gps_code": "RKXX", + "local_code": "RK2Y", + "keywords": "RKXX, RK2Y, C 265, C-265, Topyonri, Nightmare Range" + }, + { + "id": "3813", + "ident": "RK31", + "type": "small_airport", + "name": "G-307 Airport", + "latitude_deg": "37.929528", + "longitude_deg": "127.75737", + "elevation_ft": "270", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Yulmun-ri", + "scheduled_service": "no", + "gps_code": "RK31", + "local_code": "RK31" + }, + { + "id": "3814", + "ident": "RK32", + "type": "small_airport", + "name": "G-420 Airport", + "latitude_deg": "37.956177", + "longitude_deg": "128.31645", + "elevation_ft": "951", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Girin-myeon", + "scheduled_service": "no", + "gps_code": "RKNK", + "local_code": "RK32" + }, + { + "id": "3815", + "ident": "RK33", + "type": "small_airport", + "name": "G-418 Airport", + "latitude_deg": "37.344616", + "longitude_deg": "128.384085", + "elevation_ft": "948", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Yudong-ri", + "scheduled_service": "no", + "gps_code": "RK33", + "local_code": "RK33" + }, + { + "id": "3816", + "ident": "RK34", + "type": "small_airport", + "name": "G 417 Airport", + "latitude_deg": "37.650036", + "longitude_deg": "128.569608", + "elevation_ft": "1778", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Jinbeol", + "scheduled_service": "no", + "gps_code": "RK34", + "local_code": "RK34" + }, + { + "id": "3817", + "ident": "RK35", + "type": "closed", + "name": "G-225 Airport", + "latitude_deg": "38.022685", + "longitude_deg": "126.971534", + "elevation_ft": "138", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Sunguijeon-ro", + "scheduled_service": "no", + "gps_code": "RK35", + "local_code": "RK35" + }, + { + "id": "3818", + "ident": "RK36", + "type": "small_airport", + "name": "G 238 Airport", + "latitude_deg": "38.176646", + "longitude_deg": "127.102139", + "elevation_ft": "262", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Dosin-ri, Sinsei-myeon, Yeoncheon", + "scheduled_service": "no", + "gps_code": "RK36", + "local_code": "RK36" + }, + { + "id": "3819", + "ident": "RK37", + "type": "closed", + "name": "Camp Beavers (G-227) Airfield", + "latitude_deg": "38.025626", + "longitude_deg": "127.11106", + "elevation_ft": "220", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Cheongchangno", + "scheduled_service": "no", + "gps_code": "RK37", + "local_code": "RK37" + }, + { + "id": "3820", + "ident": "RK38", + "type": "small_airport", + "name": "Baekui-ri (G-228) Airfield", + "latitude_deg": "38.028949", + "longitude_deg": "127.141585", + "elevation_ft": "234", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Gososeong-ri", + "scheduled_service": "no", + "gps_code": "RK38", + "local_code": "RK38" + }, + { + "id": "3821", + "ident": "RK39", + "type": "closed", + "name": "G-239 Airport", + "latitude_deg": "38.198715", + "longitude_deg": "127.222849", + "elevation_ft": "630", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Geumhang-ro", + "scheduled_service": "no", + "gps_code": "RK39", + "local_code": "RK39" + }, + { + "id": "300382", + "ident": "RK3A", + "type": "heliport", + "name": "C 271 Heliport", + "latitude_deg": "37.487394", + "longitude_deg": "127.143182", + "elevation_ft": "180", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Geoyeo-dong, Seoul", + "scheduled_service": "no", + "gps_code": "RK3A", + "local_code": "RK3A" + }, + { + "id": "300423", + "ident": "RK3D", + "type": "heliport", + "name": "C 316 Heliport", + "latitude_deg": "38.168958", + "longitude_deg": "127.431938", + "elevation_ft": "1150", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Sinsul", + "scheduled_service": "no", + "gps_code": "RK3D", + "local_code": "RK3D" + }, + { + "id": "323136", + "ident": "RK3E", + "type": "heliport", + "name": "C-320 Heliport", + "latitude_deg": "38.063931", + "longitude_deg": "127.768614", + "elevation_ft": "2100", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Yongho-ri", + "scheduled_service": "no", + "local_code": "RK3E" + }, + { + "id": "313881", + "ident": "RK3H", + "type": "heliport", + "name": "C 325 Heliport", + "latitude_deg": "37.9521", + "longitude_deg": "127.70871", + "elevation_ft": "358", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "scheduled_service": "no", + "gps_code": "RK3H", + "local_code": "RK3H" + }, + { + "id": "313880", + "ident": "RK3J", + "type": "heliport", + "name": "C 327 Heliport", + "latitude_deg": "37.471859", + "longitude_deg": "127.526628", + "elevation_ft": "282", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "ROK 5th Division, Sinnae", + "scheduled_service": "no", + "gps_code": "RK3J", + "local_code": "RK3J" + }, + { + "id": "312954", + "ident": "RK3K", + "type": "heliport", + "name": "C-332 Heliport", + "latitude_deg": "37.744434", + "longitude_deg": "127.42744", + "elevation_ft": "500", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Oeseo-myeon", + "scheduled_service": "no", + "local_code": "RK3K" + }, + { + "id": "312955", + "ident": "RK3L", + "type": "heliport", + "name": "C 335 Heliport", + "latitude_deg": "37.974824", + "longitude_deg": "127.665687", + "elevation_ft": "500", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Yeongseo-ro", + "scheduled_service": "no", + "gps_code": "RK3L", + "local_code": "RK3L" + }, + { + "id": "312953", + "ident": "RK3M", + "type": "heliport", + "name": "C 400 Heliport", + "latitude_deg": "37.426179", + "longitude_deg": "127.969772", + "elevation_ft": "650", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Bugwon-ro, Wonju", + "scheduled_service": "no", + "local_code": "RK3M" + }, + { + "id": "312950", + "ident": "RK3N", + "type": "heliport", + "name": "C 406 Heliport", + "latitude_deg": "38.318124", + "longitude_deg": "128.109869", + "elevation_ft": "2234", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Hyeon-ri", + "scheduled_service": "no", + "gps_code": "RK3N", + "local_code": "RK3N" + }, + { + "id": "312578", + "ident": "RK3O", + "type": "heliport", + "name": "C-408 Heliport", + "latitude_deg": "38.067449", + "longitude_deg": "128.634152", + "elevation_ft": "138", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Gan-ri, Sonyang-myeon", + "scheduled_service": "no", + "gps_code": "RK3O", + "local_code": "RK3O" + }, + { + "id": "312577", + "ident": "RK3P", + "type": "heliport", + "name": "C-411 Heliport", + "latitude_deg": "37.403692", + "longitude_deg": "127.95077", + "elevation_ft": "514", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Taejanggongdan", + "scheduled_service": "no", + "gps_code": "RK3P", + "local_code": "RK3P" + }, + { + "id": "312576", + "ident": "RK3Q", + "type": "heliport", + "name": "C 412 Heliport", + "latitude_deg": "37.469089", + "longitude_deg": "129.157127", + "elevation_ft": "144", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Surobuin", + "scheduled_service": "no", + "gps_code": "RK3Q", + "local_code": "RK3Q" + }, + { + "id": "323138", + "ident": "RK3R", + "type": "heliport", + "name": "C-422 Heliport", + "latitude_deg": "38.226108", + "longitude_deg": "127.951895", + "elevation_ft": "545", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Sopungjeung", + "scheduled_service": "no", + "local_code": "RK3R" + }, + { + "id": "312147", + "ident": "RK3S", + "type": "heliport", + "name": "C 424 Heliport", + "latitude_deg": "37.334958", + "longitude_deg": "127.956023", + "elevation_ft": "457", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Dangu-ro, Wonju", + "scheduled_service": "no", + "gps_code": "RK3S", + "local_code": "RK3S" + }, + { + "id": "312146", + "ident": "RK3T", + "type": "heliport", + "name": "C 426 Heliport", + "latitude_deg": "37.804964", + "longitude_deg": "127.998518", + "elevation_ft": "649", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Ahopsari-ro", + "scheduled_service": "no", + "gps_code": "RK3T", + "local_code": "RK3T" + }, + { + "id": "312145", + "ident": "RK3U", + "type": "heliport", + "name": "C-427 Heliport", + "latitude_deg": "37.354908", + "longitude_deg": "129.250098", + "elevation_ft": "229", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Bunam-ri", + "scheduled_service": "no", + "local_code": "RK3U" + }, + { + "id": "311789", + "ident": "RK3V", + "type": "heliport", + "name": "C 428 Heliport", + "latitude_deg": "38.115545", + "longitude_deg": "128.195461", + "elevation_ft": "880", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "ROK 12th Division", + "scheduled_service": "no", + "gps_code": "RK3V", + "local_code": "RK3V" + }, + { + "id": "311788", + "ident": "RK3W", + "type": "heliport", + "name": "C 432 Heliport", + "latitude_deg": "38.416769", + "longitude_deg": "128.466378", + "elevation_ft": "8", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Banam-ri", + "scheduled_service": "no", + "gps_code": "RK3W", + "local_code": "RK3W" + }, + { + "id": "311787", + "ident": "RK3X", + "type": "heliport", + "name": "C 433 Heliport", + "latitude_deg": "37.326538", + "longitude_deg": "127.968814", + "elevation_ft": "504", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Worunjeongan", + "scheduled_service": "no", + "gps_code": "RK3X", + "local_code": "RK3X" + }, + { + "id": "3822", + "ident": "RK40", + "type": "small_airport", + "name": "G-240 Airport", + "latitude_deg": "38.248814", + "longitude_deg": "127.378267", + "elevation_ft": "630", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Cheongyang-ri", + "scheduled_service": "no", + "gps_code": "RK40", + "local_code": "RK40" + }, + { + "id": "3823", + "ident": "RK41", + "type": "small_airport", + "name": "G-317 Airport", + "latitude_deg": "38.2163", + "longitude_deg": "127.656612", + "elevation_ft": "750", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Hwacheon", + "scheduled_service": "no", + "gps_code": "RK41", + "local_code": "RK41" + }, + { + "id": "3824", + "ident": "RK42", + "type": "small_airport", + "name": "G-311 Airport", + "latitude_deg": "38.055851", + "longitude_deg": "127.797384", + "elevation_ft": "590", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Gandong-myeon", + "scheduled_service": "no", + "gps_code": "RK42", + "local_code": "RK42" + }, + { + "id": "3825", + "ident": "RK43", + "type": "small_airport", + "name": "G-414 Airport", + "latitude_deg": "38.106192", + "longitude_deg": "128.201002", + "elevation_ft": "688", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Ipyeong-ro", + "scheduled_service": "no", + "gps_code": "RK43", + "local_code": "RK43" + }, + { + "id": "3826", + "ident": "RK44", + "type": "small_airport", + "name": "G-412 Airport", + "latitude_deg": "38.239776", + "longitude_deg": "128.208289", + "elevation_ft": "950", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Hyeonchon", + "scheduled_service": "no", + "gps_code": "RK44", + "local_code": "RK44" + }, + { + "id": "323129", + "ident": "RK46", + "type": "heliport", + "name": "G 602 Airfield", + "latitude_deg": "36.550464", + "longitude_deg": "128.758087", + "elevation_ft": "312", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Andong", + "scheduled_service": "no", + "gps_code": "RK46", + "local_code": "RK46" + }, + { + "id": "3827", + "ident": "RK48", + "type": "small_airport", + "name": "G-419 Airport", + "latitude_deg": "37.703154", + "longitude_deg": "127.904613", + "elevation_ft": "450", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Hongcheon-ro", + "scheduled_service": "no", + "gps_code": "RK48", + "local_code": "RK48" + }, + { + "id": "3828", + "ident": "RK49", + "type": "small_airport", + "name": "G 530 Airport", + "latitude_deg": "36.756523", + "longitude_deg": "126.32886", + "elevation_ft": "91", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Taean", + "scheduled_service": "no", + "gps_code": "RK49", + "local_code": "RK49" + }, + { + "id": "300383", + "ident": "RK4A", + "type": "heliport", + "name": "C 504 Heliport", + "latitude_deg": "36.5347222222", + "longitude_deg": "126.618055556", + "elevation_ft": "548", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Reno Hills", + "scheduled_service": "no", + "gps_code": "RK4A", + "local_code": "RK4A" + }, + { + "id": "300385", + "ident": "RK4B", + "type": "heliport", + "name": "C-507 Heliport", + "latitude_deg": "36.801657", + "longitude_deg": "127.561725", + "elevation_ft": "321", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-43", + "municipality": "Yeontan-ri", + "scheduled_service": "no", + "local_code": "RK4B" + }, + { + "id": "300425", + "ident": "RK4D", + "type": "heliport", + "name": "C 512 Heliport", + "latitude_deg": "36.9191666667", + "longitude_deg": "127.161111111", + "elevation_ft": "111", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Camp Howard", + "scheduled_service": "no", + "gps_code": "RK4D", + "local_code": "RK4D" + }, + { + "id": "311555", + "ident": "RK4F", + "type": "heliport", + "name": "C-514 Heliport", + "latitude_deg": "36.767711", + "longitude_deg": "126.292512", + "elevation_ft": "380", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Soran", + "scheduled_service": "no", + "local_code": "RK4F" + }, + { + "id": "311554", + "ident": "RK4G", + "type": "heliport", + "name": "C-516 Heliport", + "latitude_deg": "36.948704", + "longitude_deg": "126.959671", + "elevation_ft": "144", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Wondeongmok", + "scheduled_service": "no", + "local_code": "RK4G" + }, + { + "id": "311553", + "ident": "RK4H", + "type": "heliport", + "name": "C-517 Heliport", + "latitude_deg": "37.201187", + "longitude_deg": "126.847241", + "elevation_ft": "468", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Go-Daero", + "scheduled_service": "no", + "local_code": "RK4H" + }, + { + "id": "311196", + "ident": "RK4J", + "type": "heliport", + "name": "C 518 Heliport", + "latitude_deg": "37.067", + "longitude_deg": "127.174", + "elevation_ft": "590", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Bucket", + "scheduled_service": "no", + "gps_code": "RK4J", + "local_code": "RK4J" + }, + { + "id": "311194", + "ident": "RK4K", + "type": "heliport", + "name": "C 519 Heliport", + "latitude_deg": "37.2012", + "longitude_deg": "126.8472", + "elevation_ft": "468", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RK4K", + "local_code": "RK4K" + }, + { + "id": "311193", + "ident": "RK4M", + "type": "heliport", + "name": "Junction City Heliport (C-521)", + "latitude_deg": "36.850262", + "longitude_deg": "127.224558", + "elevation_ft": "1713", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Naban (Junction City)", + "scheduled_service": "no", + "local_code": "RK4M" + }, + { + "id": "310709", + "ident": "RK4N", + "type": "heliport", + "name": "C 523 Heliport", + "latitude_deg": "36.337644", + "longitude_deg": "126.534667", + "elevation_ft": "38", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Gangdang", + "scheduled_service": "no", + "local_code": "RK4N" + }, + { + "id": "310708", + "ident": "RK4O", + "type": "heliport", + "name": "C 527 Heliport", + "latitude_deg": "36.526907", + "longitude_deg": "127.857811", + "elevation_ft": "3174", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-43", + "municipality": "Sanae-ri", + "scheduled_service": "no", + "local_code": "RK4O" + }, + { + "id": "310707", + "ident": "RK4P", + "type": "heliport", + "name": "C 528 Heliport", + "latitude_deg": "36.56352", + "longitude_deg": "127.277735", + "elevation_ft": "156", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Gamagol (ROK 32nd Division)", + "scheduled_service": "no", + "local_code": "RK4P" + }, + { + "id": "310094", + "ident": "RK4Q", + "type": "heliport", + "name": "C 531 Heliport", + "latitude_deg": "37.205889", + "longitude_deg": "127.465712", + "elevation_ft": "273", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Daepo-dong", + "scheduled_service": "no", + "local_code": "RK4Q" + }, + { + "id": "310093", + "ident": "RK4R", + "type": "heliport", + "name": "C 535 Heliport", + "latitude_deg": "36.424708", + "longitude_deg": "127.263393", + "elevation_ft": "209", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "scheduled_service": "no", + "gps_code": "RK4R", + "local_code": "RK4R" + }, + { + "id": "310091", + "ident": "RK4S", + "type": "heliport", + "name": "C 613 Heliport", + "latitude_deg": "36.069717", + "longitude_deg": "129.556097", + "elevation_ft": "367", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Taech'on", + "scheduled_service": "no", + "local_code": "RK4S" + }, + { + "id": "300357", + "ident": "RK4U", + "type": "heliport", + "name": "H 704 Heliport", + "latitude_deg": "35.975957", + "longitude_deg": "126.805044", + "elevation_ft": "424", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-45", + "municipality": "Asan-ri", + "scheduled_service": "no", + "local_code": "RK4U" + }, + { + "id": "300379", + "ident": "RK4W", + "type": "heliport", + "name": "H 809 Heliport", + "latitude_deg": "35.196938", + "longitude_deg": "129.14911", + "elevation_ft": "1802", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "scheduled_service": "no", + "gps_code": "RK4W", + "local_code": "RK4W" + }, + { + "id": "300358", + "ident": "RK4Z", + "type": "heliport", + "name": "C 232 Heliport", + "latitude_deg": "38.064883", + "longitude_deg": "127.254966", + "elevation_ft": "1576", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RK4Z", + "local_code": "RK4Z" + }, + { + "id": "3829", + "ident": "RK50", + "type": "small_airport", + "name": "G 526 Airport", + "latitude_deg": "36.588163", + "longitude_deg": "126.658406", + "elevation_ft": "197", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Hongseong-eup", + "scheduled_service": "no", + "gps_code": "RK50", + "local_code": "RK50" + }, + { + "id": "323009", + "ident": "RK51", + "type": "small_airport", + "name": "G 532 Airport", + "latitude_deg": "36.541607", + "longitude_deg": "127.285833", + "elevation_ft": "92", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Sejong", + "scheduled_service": "no", + "gps_code": "RK51", + "local_code": "RK51", + "keywords": "Yeongi" + }, + { + "id": "3830", + "ident": "RK52", + "type": "small_airport", + "name": "Yongin (G-501) Airport", + "latitude_deg": "37.286747", + "longitude_deg": "127.225446", + "elevation_ft": "243", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Pogong-ro", + "scheduled_service": "no", + "gps_code": "RKRY", + "local_code": "RK52", + "keywords": "Yangin, RKRY, RK52, G 501, G-501" + }, + { + "id": "307700", + "ident": "RK55", + "type": "closed", + "name": "Camp Eagle (H 401) Heliport", + "latitude_deg": "37.453901", + "longitude_deg": "127.973299", + "elevation_ft": "363", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Hoengseong-ro", + "scheduled_service": "no", + "gps_code": "RK55", + "local_code": "RK55", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_Edwards_(South_Korea); https://en.wikipedia.org/wiki/List_of_United_States_Army_installations" + }, + { + "id": "308171", + "ident": "RK57", + "type": "heliport", + "name": "Camp Walker (H 805) Heliport", + "latitude_deg": "35.841195", + "longitude_deg": "128.591752", + "elevation_ft": "249", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "municipality": "Daegu", + "scheduled_service": "no", + "gps_code": "RKTG", + "local_code": "RK57", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_Walker#History" + }, + { + "id": "3831", + "ident": "RK58", + "type": "closed", + "name": "Gyeongju Airfield (G-806)", + "latitude_deg": "35.8493", + "longitude_deg": "129.222908", + "elevation_ft": "86", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Gyeongju", + "scheduled_service": "no", + "gps_code": "RK58", + "local_code": "RK58" + }, + { + "id": "300384", + "ident": "RK5B", + "type": "heliport", + "name": "H 831 Heliport", + "latitude_deg": "35.23924", + "longitude_deg": "128.620167", + "elevation_ft": "107", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Changwon", + "scheduled_service": "no", + "gps_code": "RK5B", + "local_code": "RK5B" + }, + { + "id": "300408", + "ident": "RK5C", + "type": "heliport", + "name": "H 832 Heliport", + "latitude_deg": "35.994166666699996", + "longitude_deg": "128.419444444", + "elevation_ft": "180", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Camp Carol", + "scheduled_service": "no", + "gps_code": "RK5C", + "local_code": "RK5C" + }, + { + "id": "309950", + "ident": "RK5G", + "type": "heliport", + "name": "C 714 Heliport", + "latitude_deg": "34.977001", + "longitude_deg": "127.83656", + "elevation_ft": "245", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "scheduled_service": "no", + "gps_code": "RK5G", + "local_code": "RK5G" + }, + { + "id": "309949", + "ident": "RK5H", + "type": "heliport", + "name": "C 715 Heliport", + "latitude_deg": "34.992679", + "longitude_deg": "127.870919", + "elevation_ft": "2671", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "scheduled_service": "no", + "gps_code": "RK5H", + "local_code": "RK5H" + }, + { + "id": "308440", + "ident": "RK5J", + "type": "heliport", + "name": "C 716 Heliport", + "latitude_deg": "34.854456", + "longitude_deg": "127.229699", + "elevation_ft": "2333", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "scheduled_service": "no", + "gps_code": "RK5J", + "local_code": "RK5J" + }, + { + "id": "308316", + "ident": "RK5K", + "type": "heliport", + "name": "C 717 Heliport", + "latitude_deg": "35.055121", + "longitude_deg": "126.699513", + "elevation_ft": "1220", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Naju", + "scheduled_service": "no", + "gps_code": "RK5K", + "local_code": "RK5K" + }, + { + "id": "308288", + "ident": "RK5L", + "type": "heliport", + "name": "C 718 Heliport", + "latitude_deg": "35.154074", + "longitude_deg": "126.86471", + "elevation_ft": "170", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-29", + "municipality": "Gwangju", + "scheduled_service": "no", + "gps_code": "RK5L", + "local_code": "RK5L" + }, + { + "id": "308284", + "ident": "RK5M", + "type": "closed", + "name": "C 719 Heliport", + "latitude_deg": "35.876108", + "longitude_deg": "127.132562", + "elevation_ft": "132", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-45", + "scheduled_service": "no", + "gps_code": "RK5M", + "local_code": "RK5M" + }, + { + "id": "308271", + "ident": "RK5N", + "type": "heliport", + "name": "C 720 Heliport", + "latitude_deg": "35.196911", + "longitude_deg": "126.907762", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-29", + "municipality": "Gwangju", + "scheduled_service": "no", + "gps_code": "RK5N", + "local_code": "RK5N" + }, + { + "id": "308247", + "ident": "RK5P", + "type": "heliport", + "name": "C 723 Heliport", + "latitude_deg": "35.250114", + "longitude_deg": "126.604943", + "elevation_ft": "325", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Hakseong-ri", + "scheduled_service": "no", + "local_code": "RK5P" + }, + { + "id": "308234", + "ident": "RK5Q", + "type": "heliport", + "name": "C 816 Heliport", + "latitude_deg": "35.202091", + "longitude_deg": "129.149238", + "elevation_ft": "1670", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Banyeo-dong", + "scheduled_service": "no", + "local_code": "RK5Q" + }, + { + "id": "308222", + "ident": "RK5R", + "type": "heliport", + "name": "C 817 Heliport", + "latitude_deg": "35.063166", + "longitude_deg": "129.073526", + "elevation_ft": "420", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "scheduled_service": "no", + "gps_code": "RK5R", + "local_code": "RK5R" + }, + { + "id": "308217", + "ident": "RK5S", + "type": "heliport", + "name": "C 818 Heliport", + "latitude_deg": "35.167432", + "longitude_deg": "128.76064", + "elevation_ft": "2352", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "scheduled_service": "no", + "gps_code": "RK5S", + "local_code": "RK5S" + }, + { + "id": "300553", + "ident": "RK5V", + "type": "heliport", + "name": "C 821 Heliport", + "latitude_deg": "35.400238", + "longitude_deg": "129.107549", + "elevation_ft": "3000", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Wonhyo-san Mt.", + "scheduled_service": "no", + "local_code": "RK5V", + "keywords": "Cheonseoungsan" + }, + { + "id": "300380", + "ident": "RK5W", + "type": "heliport", + "name": "C 822 Heliport", + "latitude_deg": "35.3811111111", + "longitude_deg": "129.101666667", + "elevation_ft": "1880", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "scheduled_service": "no", + "gps_code": "RK5W", + "local_code": "RK5W" + }, + { + "id": "300375", + "ident": "RK5X", + "type": "heliport", + "name": "C 823 Heliport", + "latitude_deg": "35.762818", + "longitude_deg": "128.602081", + "elevation_ft": "2851", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "scheduled_service": "no", + "gps_code": "RK5X", + "local_code": "RK5X" + }, + { + "id": "300374", + "ident": "RK5Y", + "type": "heliport", + "name": "C 824 Heliport", + "latitude_deg": "35.901702", + "longitude_deg": "128.311354", + "elevation_ft": "1060", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "scheduled_service": "no", + "gps_code": "RK5Y", + "local_code": "RK5Y" + }, + { + "id": "300354", + "ident": "RK5Z", + "type": "heliport", + "name": "C 826 Heliport", + "latitude_deg": "35.112777777800005", + "longitude_deg": "128.431666667", + "elevation_ft": "131", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "scheduled_service": "no", + "gps_code": "RK5Z", + "local_code": "RK5Z" + }, + { + "id": "3832", + "ident": "RK60", + "type": "small_airport", + "name": "G 712 Airport", + "latitude_deg": "35.306607", + "longitude_deg": "126.494962", + "elevation_ft": "67", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Yeonggwang-eup", + "scheduled_service": "no", + "gps_code": "RK60", + "local_code": "RK60" + }, + { + "id": "308814", + "ident": "RK61", + "type": "heliport", + "name": "Camp Red Cloud (H 209) Heliport", + "latitude_deg": "37.751274", + "longitude_deg": "127.026243", + "elevation_ft": "229", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Uijeongbu", + "scheduled_service": "no", + "gps_code": "RK61", + "local_code": "RK61", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_Red_Cloud" + }, + { + "id": "308984", + "ident": "RK64", + "type": "heliport", + "name": "C 187 Heliport", + "latitude_deg": "37.417138", + "longitude_deg": "126.94514", + "elevation_ft": "285", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Ildong-ro", + "scheduled_service": "no", + "gps_code": "RK64", + "local_code": "RK64" + }, + { + "id": "308985", + "ident": "RK65", + "type": "heliport", + "name": "C 415 Heliport", + "latitude_deg": "37.387969", + "longitude_deg": "127.944935", + "elevation_ft": "370", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Hojeo-ro", + "scheduled_service": "no", + "gps_code": "RK65", + "local_code": "RK65" + }, + { + "id": "308986", + "ident": "RK67", + "type": "heliport", + "name": "C 431 Heliport", + "latitude_deg": "37.713659", + "longitude_deg": "128.899774", + "elevation_ft": "151", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Beomil-ro", + "scheduled_service": "no", + "gps_code": "RK67", + "local_code": "RK67" + }, + { + "id": "309029", + "ident": "RK68", + "type": "heliport", + "name": "C 524 Heliport", + "latitude_deg": "36.300483", + "longitude_deg": "126.526634", + "elevation_ft": "44", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Nampobangjoje-ro", + "scheduled_service": "no", + "local_code": "RK68" + }, + { + "id": "308438", + "ident": "RK6A", + "type": "heliport", + "name": "C 827 Heliport", + "latitude_deg": "35.174419", + "longitude_deg": "129.15715", + "elevation_ft": "245", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "scheduled_service": "no", + "gps_code": "RK6A", + "local_code": "RK6A" + }, + { + "id": "300351", + "ident": "RK6B", + "type": "heliport", + "name": "C 828 Heliport", + "latitude_deg": "35.866277", + "longitude_deg": "128.655233", + "elevation_ft": "214", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "scheduled_service": "no", + "gps_code": "RK6B", + "local_code": "RK6B" + }, + { + "id": "300349", + "ident": "RK6C", + "type": "heliport", + "name": "C 621 Heliport", + "latitude_deg": "36.264899", + "longitude_deg": "127.10216", + "elevation_ft": "91", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Myeongjae-ro", + "scheduled_service": "no", + "local_code": "RK6C" + }, + { + "id": "3833", + "ident": "RK6D", + "type": "small_airport", + "name": "G 710 Airport", + "latitude_deg": "35.342098", + "longitude_deg": "127.029999", + "elevation_ft": "173", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Geumseong-myeon", + "scheduled_service": "no", + "gps_code": "RK6D", + "local_code": "RK6D" + }, + { + "id": "322785", + "ident": "RK6G", + "type": "heliport", + "name": "H 104 Heliport", + "latitude_deg": "37.743877", + "longitude_deg": "126.436183", + "elevation_ft": "1322", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Hill 436", + "scheduled_service": "no", + "gps_code": "RK6G", + "local_code": "RK6G" + }, + { + "id": "322784", + "ident": "RK6H", + "type": "closed", + "name": "H 108 Heliport", + "latitude_deg": "37.748564", + "longitude_deg": "126.824606", + "elevation_ft": "302", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Camp Howze", + "scheduled_service": "no", + "gps_code": "RK6H", + "local_code": "RK6H", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_Howze,_South_Korea" + }, + { + "id": "322782", + "ident": "RK6J", + "type": "heliport", + "name": "JSA Rear Heliport (H 127)", + "latitude_deg": "37.933189", + "longitude_deg": "126.727172", + "elevation_ft": "129", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "JSA Rear", + "scheduled_service": "no", + "gps_code": "RK6J", + "local_code": "RK6J", + "keywords": "Camp Bonifas" + }, + { + "id": "322779", + "ident": "RK6M", + "type": "heliport", + "name": "H 173 Heliport", + "latitude_deg": "37.907542", + "longitude_deg": "126.875829", + "elevation_ft": "1552", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Camp Ethan Allen Hill 496", + "scheduled_service": "no", + "gps_code": "RK6M", + "local_code": "RK6M" + }, + { + "id": "322770", + "ident": "RK6N", + "type": "heliport", + "name": "H 175 Heliport", + "latitude_deg": "37.877004", + "longitude_deg": "126.793655", + "elevation_ft": "199", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RK6N", + "local_code": "RK6N", + "keywords": "H 175, H-175, South Korea" + }, + { + "id": "3834", + "ident": "RK6O", + "type": "small_airport", + "name": "Jecheon (G-605) Airport", + "latitude_deg": "37.16283", + "longitude_deg": "128.219247", + "elevation_ft": "925", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-43", + "municipality": "Jecheon", + "scheduled_service": "no", + "gps_code": "RK6O", + "local_code": "RK6O" + }, + { + "id": "300276", + "ident": "RK6R", + "type": "heliport", + "name": "C 102 Heliport", + "latitude_deg": "37.88022", + "longitude_deg": "126.79866", + "elevation_ft": "409", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RK6R", + "local_code": "RK6R" + }, + { + "id": "316103", + "ident": "RK6S", + "type": "closed", + "name": "Camp Giant H-163 Heliport", + "latitude_deg": "37.834088", + "longitude_deg": "126.815499", + "elevation_ft": "205", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Camp Glant", + "scheduled_service": "no", + "gps_code": "RK6S", + "local_code": "RK6S", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_United_States_Army_installations_in_South_Korea; https://en.wikipedia.org/wiki/Camp_Giant" + }, + { + "id": "300286", + "ident": "RK6T", + "type": "heliport", + "name": "C272 Heliport", + "latitude_deg": "37.357537", + "longitude_deg": "127.255454", + "elevation_ft": "265", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Maejari", + "scheduled_service": "no", + "gps_code": "RK6T", + "local_code": "RK6T" + }, + { + "id": "300285", + "ident": "RK6V", + "type": "heliport", + "name": "C 145 Heliport", + "latitude_deg": "37.414733", + "longitude_deg": "126.826464", + "elevation_ft": "176", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Suin-ro, Maehwa-dong", + "scheduled_service": "no", + "gps_code": "RK6V", + "local_code": "RK6V" + }, + { + "id": "300284", + "ident": "RK6W", + "type": "heliport", + "name": "C 201 Heliport", + "latitude_deg": "37.392468", + "longitude_deg": "127.151492", + "elevation_ft": "574", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Saemaeul-ro", + "scheduled_service": "no", + "gps_code": "RK6W", + "local_code": "RK6W" + }, + { + "id": "323257", + "ident": "RK6X", + "type": "small_airport", + "name": "Nogok-ri Airfield (G-130)", + "latitude_deg": "37.993567", + "longitude_deg": "126.919169", + "elevation_ft": "98", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Nogok-ri", + "scheduled_service": "no", + "local_code": "RK6X", + "keywords": "RK6X, G 130, G-130, Nogok" + }, + { + "id": "300263", + "ident": "RK6Y", + "type": "heliport", + "name": "H 105 Heliport", + "latitude_deg": "37.926207", + "longitude_deg": "126.820046", + "elevation_ft": "443", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Hapo-ri", + "scheduled_service": "no", + "gps_code": "RK6Y", + "local_code": "RK6Y" + }, + { + "id": "300275", + "ident": "RK6Z", + "type": "heliport", + "name": "C 176 Heliport", + "latitude_deg": "37.907487", + "longitude_deg": "126.797979", + "elevation_ft": "52", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RK6Z", + "local_code": "RK6Z" + }, + { + "id": "309030", + "ident": "RK70", + "type": "heliport", + "name": "C 150 Heliport", + "latitude_deg": "37.471965", + "longitude_deg": "126.748326", + "elevation_ft": "117", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "HQ Capital Corps", + "scheduled_service": "no", + "gps_code": "RK70", + "local_code": "RK70", + "keywords": "HQ Capital Corps" + }, + { + "id": "317157", + "ident": "RK72", + "type": "heliport", + "name": "C 258 Heliport", + "latitude_deg": "37.898258", + "longitude_deg": "126.966057", + "elevation_ft": "397", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Hyuam-ro", + "scheduled_service": "no", + "gps_code": "RK72", + "local_code": "RK72" + }, + { + "id": "317158", + "ident": "RK73", + "type": "heliport", + "name": "Bongamri (C 263) Heliport", + "latitude_deg": "37.912636", + "longitude_deg": "127.011338", + "elevation_ft": "373", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Bongam-ri", + "scheduled_service": "no", + "gps_code": "RK73", + "local_code": "RK73" + }, + { + "id": "317159", + "ident": "RK74", + "type": "heliport", + "name": "C 253 Heliport", + "latitude_deg": "38.0129", + "longitude_deg": "127.3288", + "elevation_ft": "449", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RK74", + "local_code": "RK74" + }, + { + "id": "319991", + "ident": "RK75", + "type": "heliport", + "name": "C-254 Heliport", + "latitude_deg": "38.022795", + "longitude_deg": "127.353601", + "elevation_ft": "604", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Seongjo-ro", + "scheduled_service": "no", + "local_code": "RK75" + }, + { + "id": "319992", + "ident": "RK76", + "type": "heliport", + "name": "C 260 Heliport", + "latitude_deg": "38.132595", + "longitude_deg": "127.24711", + "elevation_ft": "603", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Bugwon-ro", + "scheduled_service": "no", + "gps_code": "RK76", + "local_code": "RK76" + }, + { + "id": "320816", + "ident": "RK77", + "type": "heliport", + "name": "C 331 Heliport", + "latitude_deg": "37.938624", + "longitude_deg": "127.770588", + "elevation_ft": "321", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Maekguk", + "scheduled_service": "no", + "gps_code": "RK77", + "local_code": "RK77" + }, + { + "id": "322866", + "ident": "RK79", + "type": "heliport", + "name": "C-328 Heliport", + "latitude_deg": "38.054738", + "longitude_deg": "127.526872", + "elevation_ft": "1183", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Hawaksan-ro", + "scheduled_service": "no", + "local_code": "RK79" + }, + { + "id": "300288", + "ident": "RK7A", + "type": "heliport", + "name": "C 240 Heliport", + "latitude_deg": "37.306202", + "longitude_deg": "127.064599", + "elevation_ft": "407", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Sanghyeon-dong", + "scheduled_service": "no", + "gps_code": "RK7A", + "local_code": "RK7A" + }, + { + "id": "300294", + "ident": "RK7B", + "type": "heliport", + "name": "C 243 Heliport", + "latitude_deg": "37.6205555556", + "longitude_deg": "127.195833333", + "elevation_ft": "17", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RK7B", + "local_code": "RK7B" + }, + { + "id": "300277", + "ident": "RK7C", + "type": "heliport", + "name": "C 286 Heliport", + "latitude_deg": "37.457959", + "longitude_deg": "127.189861", + "elevation_ft": "1638", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Eunhaeng-dong", + "scheduled_service": "no", + "gps_code": "RK7C", + "local_code": "RK7C" + }, + { + "id": "300289", + "ident": "RK7D", + "type": "heliport", + "name": "C 288 Heliport", + "latitude_deg": "37.451284", + "longitude_deg": "127.243081", + "elevation_ft": "611", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Ojeon-ri", + "scheduled_service": "no", + "gps_code": "RK7D", + "local_code": "RK7D" + }, + { + "id": "322999", + "ident": "RK7H", + "type": "heliport", + "name": "G 162 Airfield", + "latitude_deg": "38.048893", + "longitude_deg": "126.927928", + "elevation_ft": "150", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Baek Hak", + "scheduled_service": "no", + "gps_code": "RK7H", + "local_code": "RK7H", + "keywords": "Baikhak" + }, + { + "id": "300004", + "ident": "RK7I", + "type": "heliport", + "name": "C 107 Munhak Heliport", + "latitude_deg": "37.430767", + "longitude_deg": "126.675673", + "elevation_ft": "599", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Munhak (Incheon)", + "scheduled_service": "no" + }, + { + "id": "300353", + "ident": "RK7J", + "type": "heliport", + "name": "C-244 Heliport", + "latitude_deg": "37.733712", + "longitude_deg": "127.223595", + "elevation_ft": "392", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Jinbeol-ro", + "scheduled_service": "no", + "local_code": "RK7J" + }, + { + "id": "300301", + "ident": "RK7K", + "type": "heliport", + "name": "C 120 Heliport", + "latitude_deg": "37.870001", + "longitude_deg": "126.778345", + "elevation_ft": "172", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RK7K", + "local_code": "RK7K" + }, + { + "id": "301470", + "ident": "RK7N", + "type": "heliport", + "name": "C 245 Heliport", + "latitude_deg": "38.0044444444", + "longitude_deg": "127.360277778", + "elevation_ft": "511", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RK7N", + "local_code": "RK7N" + }, + { + "id": "321070", + "ident": "RK7Q", + "type": "heliport", + "name": "C 202 Heliport", + "latitude_deg": "37.946457", + "longitude_deg": "126.977298", + "elevation_ft": "1804", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RK7Q", + "local_code": "RK7Q" + }, + { + "id": "300300", + "ident": "RK7R", + "type": "heliport", + "name": "C 249 Heliport", + "latitude_deg": "37.753365", + "longitude_deg": "127.057614", + "elevation_ft": "197", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Hageum-ro", + "scheduled_service": "no", + "gps_code": "RK7R", + "local_code": "RK7R" + }, + { + "id": "322867", + "ident": "RK80", + "type": "heliport", + "name": "C-330 Heliport", + "latitude_deg": "38.134246", + "longitude_deg": "127.671705", + "elevation_ft": "400", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Sundae-ri (ROK 7th Division)", + "scheduled_service": "no", + "local_code": "RK80" + }, + { + "id": "3835", + "ident": "RK82", + "type": "small_airport", + "name": "G-405 Airport", + "latitude_deg": "38.119736", + "longitude_deg": "128.040247", + "elevation_ft": "721", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Yongha-ri", + "scheduled_service": "no", + "gps_code": "RK82", + "local_code": "RK82" + }, + { + "id": "308200", + "ident": "RK83", + "type": "heliport", + "name": "C 429 Heliport", + "latitude_deg": "38.131717", + "longitude_deg": "128.019012", + "elevation_ft": "785", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Jukgok-ri", + "scheduled_service": "no", + "gps_code": "RK83", + "local_code": "RK83" + }, + { + "id": "308193", + "ident": "RK85", + "type": "heliport", + "name": "C 434 Heliport", + "latitude_deg": "38.290985", + "longitude_deg": "128.493747", + "elevation_ft": "340", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Dwitgol", + "scheduled_service": "no", + "gps_code": "RK85", + "local_code": "RK85" + }, + { + "id": "308190", + "ident": "RK86", + "type": "heliport", + "name": "C 329 Heliport", + "latitude_deg": "37.692495", + "longitude_deg": "127.859906", + "elevation_ft": "502", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Hahwagye-ri", + "scheduled_service": "no", + "gps_code": "RK86", + "local_code": "RK86" + }, + { + "id": "308186", + "ident": "RK87", + "type": "heliport", + "name": "C 425 Heliport", + "latitude_deg": "37.950835", + "longitude_deg": "128.319618", + "elevation_ft": "1085", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Girin-Myeon", + "scheduled_service": "no", + "gps_code": "RK87", + "local_code": "RK87" + }, + { + "id": "308143", + "ident": "RK88", + "type": "heliport", + "name": "C 533 Heliport", + "latitude_deg": "37.251675", + "longitude_deg": "127.182825", + "elevation_ft": "490", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Seongsan-ro", + "scheduled_service": "no", + "gps_code": "RK88", + "local_code": "RK88" + }, + { + "id": "300426", + "ident": "RK8D", + "type": "heliport", + "name": "N 109 Helipad", + "latitude_deg": "36.149164", + "longitude_deg": "129.358177", + "elevation_ft": "406", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Pohang", + "scheduled_service": "no", + "gps_code": "RK8D", + "local_code": "RK8D" + }, + { + "id": "323002", + "ident": "RK8E", + "type": "heliport", + "name": "N 110 Helipad", + "latitude_deg": "36.236092", + "longitude_deg": "129.37954", + "elevation_ft": "310", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Pohang", + "scheduled_service": "no", + "gps_code": "RK8E", + "local_code": "RK8E" + }, + { + "id": "300550", + "ident": "RK8G", + "type": "heliport", + "name": "N 203 Helipad", + "latitude_deg": "37.080654", + "longitude_deg": "125.948339", + "elevation_ft": "231", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Baega-ri", + "scheduled_service": "no", + "local_code": "RK8G", + "keywords": "RK8G; Baega; N 203; N-203" + }, + { + "id": "301595", + "ident": "RK8I", + "type": "heliport", + "name": "N 211 Helipad", + "latitude_deg": "37.750906", + "longitude_deg": "126.593269", + "elevation_ft": "319", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Jogang-ri", + "scheduled_service": "no", + "local_code": "RK8I", + "keywords": "N 211, N-211, RK8I" + }, + { + "id": "301596", + "ident": "RK8J", + "type": "heliport", + "name": "N 212 Helipad", + "latitude_deg": "37.738302", + "longitude_deg": "126.561561", + "elevation_ft": "241", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Yonggang-ro", + "scheduled_service": "no", + "local_code": "RK8J", + "keywords": "N 212, N-212, RK8J, Yonggang-ro" + }, + { + "id": "301597", + "ident": "RK8K", + "type": "heliport", + "name": "N 214 Helipad", + "latitude_deg": "37.762465", + "longitude_deg": "126.558811", + "elevation_ft": "181", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Yonggang-ri", + "scheduled_service": "no", + "gps_code": "RK8K", + "local_code": "RK8K" + }, + { + "id": "302143", + "ident": "RK8L", + "type": "heliport", + "name": "N 215 Helipad", + "latitude_deg": "37.82548", + "longitude_deg": "126.430136", + "elevation_ft": "260", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "scheduled_service": "no", + "gps_code": "RK8L", + "local_code": "RK8L" + }, + { + "id": "302144", + "ident": "RK8M", + "type": "heliport", + "name": "N 220 Helipad", + "latitude_deg": "37.650626", + "longitude_deg": "126.254371", + "elevation_ft": "46", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Jumundo Island", + "scheduled_service": "no", + "gps_code": "RK8M", + "local_code": "RK8M" + }, + { + "id": "321074", + "ident": "RK8N", + "type": "heliport", + "name": "N 222 Helipad", + "latitude_deg": "37.633518", + "longitude_deg": "126.563985", + "elevation_ft": "340", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Yagam-ri", + "scheduled_service": "no", + "gps_code": "RK8N", + "local_code": "RK8N" + }, + { + "id": "307653", + "ident": "RK8P", + "type": "heliport", + "name": "N 229 Helipad", + "latitude_deg": "37.754413", + "longitude_deg": "126.417202", + "elevation_ft": "171", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "scheduled_service": "no", + "gps_code": "RK8P", + "local_code": "RK8P" + }, + { + "id": "321073", + "ident": "RK8R", + "type": "heliport", + "name": "N 302 Helipad", + "latitude_deg": "34.63784", + "longitude_deg": "128.573811", + "elevation_ft": "703", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Meajuk-ri", + "scheduled_service": "no", + "gps_code": "RK8R", + "local_code": "RK8R" + }, + { + "id": "323003", + "ident": "RK8S", + "type": "heliport", + "name": "N 303 Helipad", + "latitude_deg": "34.634115", + "longitude_deg": "128.249592", + "elevation_ft": "676", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Yokjido Island", + "scheduled_service": "no", + "gps_code": "RK8S", + "local_code": "RK8S" + }, + { + "id": "302138", + "ident": "RK8T", + "type": "heliport", + "name": "N 305 Helipad", + "latitude_deg": "34.028933", + "longitude_deg": "127.304587", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Port Hamilton", + "scheduled_service": "no", + "gps_code": "RK8T", + "local_code": "RK8T" + }, + { + "id": "301588", + "ident": "RK8V", + "type": "heliport", + "name": "N 307 Helipad", + "latitude_deg": "35.351656", + "longitude_deg": "126.035154", + "elevation_ft": "225", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Anma Island", + "scheduled_service": "no", + "gps_code": "RK8V", + "local_code": "RK8V" + }, + { + "id": "301587", + "ident": "RK8W", + "type": "heliport", + "name": "N 308 Helipad", + "latitude_deg": "34.682567", + "longitude_deg": "125.435927", + "elevation_ft": "67", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Heuksangdo Island", + "scheduled_service": "no", + "gps_code": "RK8W", + "local_code": "RK8W" + }, + { + "id": "321071", + "ident": "RK8X", + "type": "heliport", + "name": "N 309 Helipad", + "latitude_deg": "34.728123", + "longitude_deg": "126.438295", + "elevation_ft": "12", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Yeongam", + "scheduled_service": "no", + "gps_code": "RK8X", + "local_code": "RK8X" + }, + { + "id": "301468", + "ident": "RK8Y", + "type": "heliport", + "name": "N 310 Helipad", + "latitude_deg": "34.70277", + "longitude_deg": "126.587257", + "elevation_ft": "277", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Yeongam", + "scheduled_service": "no", + "gps_code": "RK8Y", + "local_code": "RK8Y" + }, + { + "id": "319302", + "ident": "RK91", + "type": "heliport", + "name": "Camp Jackson (H 248) Heliport", + "latitude_deg": "37.699072", + "longitude_deg": "127.044007", + "elevation_ft": "115", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Camp Jackson", + "scheduled_service": "no", + "gps_code": "RK91", + "local_code": "RK91" + }, + { + "id": "323131", + "ident": "RK94", + "type": "heliport", + "name": "H 310 Heliport", + "latitude_deg": "37.995909", + "longitude_deg": "127.504086", + "elevation_ft": "4816", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Evenreach", + "scheduled_service": "no", + "gps_code": "RK94", + "local_code": "RK94" + }, + { + "id": "319303", + "ident": "RK95", + "type": "closed", + "name": "Camp Long (H 416) Heliport", + "latitude_deg": "37.389105", + "longitude_deg": "127.954156", + "elevation_ft": "471", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Heungyang-ro (Camp Long)", + "scheduled_service": "no", + "gps_code": "RK95", + "local_code": "RK95" + }, + { + "id": "319988", + "ident": "RK96", + "type": "heliport", + "name": "H 502 Heliport", + "latitude_deg": "36.3016", + "longitude_deg": "127.4798", + "elevation_ft": "1839", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-30", + "municipality": "Richmond Site", + "scheduled_service": "no", + "gps_code": "RK96", + "local_code": "RK96" + }, + { + "id": "319989", + "ident": "RK97", + "type": "heliport", + "name": "H 506 Heliport", + "latitude_deg": "36.797224", + "longitude_deg": "127.208027", + "elevation_ft": "1606", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Highpoint", + "scheduled_service": "no", + "local_code": "RK97" + }, + { + "id": "319990", + "ident": "RK98", + "type": "heliport", + "name": "H 608 Heliport", + "latitude_deg": "36.093005", + "longitude_deg": "128.299595", + "elevation_ft": "3056", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Salem Top", + "scheduled_service": "no", + "gps_code": "RK98", + "local_code": "RK98" + }, + { + "id": "300386", + "ident": "RK9B", + "type": "heliport", + "name": "N 315 Helipad", + "latitude_deg": "34.576841", + "longitude_deg": "126.628032", + "elevation_ft": "1352", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Haenam", + "scheduled_service": "no", + "gps_code": "RK9B", + "local_code": "RK9B" + }, + { + "id": "300418", + "ident": "RK9C", + "type": "heliport", + "name": "N 316 Helipad", + "latitude_deg": "34.39441", + "longitude_deg": "125.299115", + "elevation_ft": "100", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Sangtae-do", + "scheduled_service": "no", + "local_code": "RK9C", + "keywords": "RK9C, Sangtae, N 316, N-316" + }, + { + "id": "301472", + "ident": "RK9E", + "type": "heliport", + "name": "N 318 Helipad", + "latitude_deg": "33.492923", + "longitude_deg": "126.962962", + "elevation_ft": "240", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "municipality": "Udo Island", + "scheduled_service": "no", + "local_code": "RK9E", + "keywords": "RK9E, Udo, N 317, N-317" + }, + { + "id": "301476", + "ident": "RK9G", + "type": "heliport", + "name": "N 321 Helipad", + "latitude_deg": "33.422353", + "longitude_deg": "126.551122", + "elevation_ft": "1910", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "municipality": "Sallokbuk-ro, Jeju Island", + "scheduled_service": "no", + "local_code": "RK9G", + "keywords": "RK9G, N 321, N-321, Sallokbuk" + }, + { + "id": "301582", + "ident": "RK9I", + "type": "heliport", + "name": "N 323 Helipad", + "latitude_deg": "33.306494", + "longitude_deg": "126.455998", + "elevation_ft": "2062", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "scheduled_service": "no", + "gps_code": "RK9I", + "local_code": "RK9I" + }, + { + "id": "301584", + "ident": "RK9J", + "type": "heliport", + "name": "N 324 Helipad", + "latitude_deg": "33.960563", + "longitude_deg": "126.293367", + "elevation_ft": "88", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "municipality": "Sang-Chuja Island", + "scheduled_service": "no", + "gps_code": "RK9J", + "local_code": "RK9J" + }, + { + "id": "301585", + "ident": "RK9K", + "type": "heliport", + "name": "N 325 Helipad", + "latitude_deg": "33.939677", + "longitude_deg": "126.322973", + "elevation_ft": "42", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "municipality": "Sinyangseo-gil (Ha-Chuja Island)", + "scheduled_service": "no", + "local_code": "RK9K", + "keywords": "RK9K, Sinyangseo, Ha-Chuja Island, N 325, N-325" + }, + { + "id": "300350", + "ident": "RK9L", + "type": "heliport", + "name": "ROK Navy Donghae Ammunition Depot Heliport (N-100)", + "latitude_deg": "37.531667", + "longitude_deg": "129.094562", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Pyeongneung-dong", + "scheduled_service": "no", + "local_code": "RK9L", + "keywords": "Donghae, RK9L, N 100, N-100" + }, + { + "id": "300549", + "ident": "RK9P", + "type": "heliport", + "name": "N 201 Helipad", + "latitude_deg": "36.990951", + "longitude_deg": "126.80819", + "elevation_ft": "12", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Poseung", + "scheduled_service": "no", + "gps_code": "RKBN", + "local_code": "RK9P", + "keywords": "N 201, N-201, RKBN, RK9P" + }, + { + "id": "301471", + "ident": "RK9Q", + "type": "heliport", + "name": "N 204 Helipad", + "latitude_deg": "37.259222", + "longitude_deg": "126.098612", + "elevation_ft": "331", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Deokjeokbuk-ro", + "scheduled_service": "no", + "local_code": "RK9Q", + "keywords": "RK9Q, Deokjeok, N 204, N-204" + }, + { + "id": "301473", + "ident": "RK9R", + "type": "heliport", + "name": "N 205 Helipad", + "latitude_deg": "36.117753", + "longitude_deg": "125.980171", + "elevation_ft": "165", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-45", + "municipality": "Eoncheong Island", + "scheduled_service": "no", + "local_code": "RK9R", + "keywords": "N 205, N-205, RK9R, Eoncheong" + }, + { + "id": "300356", + "ident": "RK9S", + "type": "heliport", + "name": "N 101 Helipad", + "latitude_deg": "36.92002", + "longitude_deg": "129.377384", + "elevation_ft": "90", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Maehwa-ri", + "scheduled_service": "no", + "gps_code": "RK9S", + "local_code": "RK9S" + }, + { + "id": "302146", + "ident": "RK9V", + "type": "heliport", + "name": "N 221 Helipad", + "latitude_deg": "37.613184", + "longitude_deg": "126.373978", + "elevation_ft": "135", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "scheduled_service": "no", + "gps_code": "RK9V", + "local_code": "RK9V" + }, + { + "id": "301475", + "ident": "RK9W", + "type": "heliport", + "name": "N 208 Helipad", + "latitude_deg": "37.822591", + "longitude_deg": "124.715987", + "elevation_ft": "41", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Daecheong Island", + "scheduled_service": "no", + "local_code": "RK9W", + "keywords": "N 208, N-208, Daecheong" + }, + { + "id": "323007", + "ident": "RK9X", + "type": "heliport", + "name": "N 209 Helipad", + "latitude_deg": "37.769224", + "longitude_deg": "124.756531", + "elevation_ft": "230", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Socheong Island", + "scheduled_service": "no", + "local_code": "RK9X", + "keywords": "N 209, N-209, RK9X, Socheong" + }, + { + "id": "321075", + "ident": "RK9Z", + "type": "heliport", + "name": "N 217 Helipad", + "latitude_deg": "37.73158", + "longitude_deg": "126.233291", + "elevation_ft": "22", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Seogeom-ri, Seogeomdo", + "scheduled_service": "no", + "gps_code": "RK9Z", + "local_code": "RK9Z" + }, + { + "id": "300427", + "ident": "RKA1", + "type": "heliport", + "name": "N 218 Helipad", + "latitude_deg": "37.710832", + "longitude_deg": "126.274502", + "elevation_ft": "160", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Nangot", + "scheduled_service": "no", + "gps_code": "RKA1", + "local_code": "RKA1" + }, + { + "id": "300552", + "ident": "RKA2", + "type": "heliport", + "name": "N 219 Helipad", + "latitude_deg": "37.657445", + "longitude_deg": "126.326388", + "elevation_ft": "180", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Jangguneomeo, Seogmo-do Island", + "scheduled_service": "no", + "gps_code": "RKA2", + "local_code": "RKA2" + }, + { + "id": "308214", + "ident": "RKA5", + "type": "heliport", + "name": "N 231 Helipad", + "latitude_deg": "37.687425", + "longitude_deg": "126.194243", + "elevation_ft": "113", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Boreumdo-ri, Boreumdo", + "scheduled_service": "no", + "gps_code": "RKA5", + "local_code": "RKA5" + }, + { + "id": "309659", + "ident": "RKA6", + "type": "heliport", + "name": "N-304 Helipad", + "latitude_deg": "34.040852", + "longitude_deg": "127.286938", + "elevation_ft": "400", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Seodo", + "scheduled_service": "no", + "gps_code": "RKA6", + "local_code": "RKA6" + }, + { + "id": "316104", + "ident": "RKA7", + "type": "heliport", + "name": "N 319 Helipads", + "latitude_deg": "33.295243", + "longitude_deg": "126.573717", + "elevation_ft": "1006", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "municipality": "Injeongoreum-ro", + "scheduled_service": "no", + "local_code": "RKA7", + "keywords": "RKA7, N 319, N-319, Injeongoreum" + }, + { + "id": "317116", + "ident": "RKA8", + "type": "heliport", + "name": "H 302 Heliport", + "latitude_deg": "37.559841", + "longitude_deg": "127.541343", + "elevation_ft": "3537", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Yongmunsan Mountain", + "scheduled_service": "no", + "gps_code": "RKA8", + "local_code": "RKA8" + }, + { + "id": "317117", + "ident": "RKA9", + "type": "heliport", + "name": "C 193 Heliport", + "latitude_deg": "37.545147", + "longitude_deg": "126.823712", + "elevation_ft": "104", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Oebalsan-dong, Seoul", + "scheduled_service": "no", + "gps_code": "RKA9", + "local_code": "RKA9" + }, + { + "id": "317118", + "ident": "RKB1", + "type": "closed", + "name": "C 194 Heliport", + "latitude_deg": "37.534288", + "longitude_deg": "126.690439", + "elevation_ft": "228", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Hyoseong-dong, Incheon", + "scheduled_service": "no", + "gps_code": "RKB1", + "local_code": "RKB1" + }, + { + "id": "321076", + "ident": "RKB2", + "type": "heliport", + "name": "C 195 Heliport", + "latitude_deg": "37.303683", + "longitude_deg": "126.792427", + "elevation_ft": "196", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Sandan-ro", + "scheduled_service": "no", + "gps_code": "RKB2", + "local_code": "RKB2" + }, + { + "id": "322787", + "ident": "RKC1", + "type": "heliport", + "name": "C 153 Heliport", + "latitude_deg": "37.706143", + "longitude_deg": "126.959537", + "elevation_ft": "1035", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Yangju", + "scheduled_service": "no", + "gps_code": "RKC1", + "local_code": "RKC1" + }, + { + "id": "315639", + "ident": "RKC3", + "type": "heliport", + "name": "Camp Young (C 166) Heliport", + "latitude_deg": "37.92144", + "longitude_deg": "126.80125", + "elevation_ft": "158", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Camp Young", + "scheduled_service": "no", + "gps_code": "RKC3", + "local_code": "RKC3", + "keywords": "Camp Young, C 166, C166, C-166" + }, + { + "id": "300302", + "ident": "RKC4", + "type": "heliport", + "name": "C 168 Heliport", + "latitude_deg": "37.875664", + "longitude_deg": "126.763698", + "elevation_ft": "90", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RKC4", + "local_code": "RKC4" + }, + { + "id": "301469", + "ident": "RKC5", + "type": "heliport", + "name": "C-252 Heliport", + "latitude_deg": "37.842478", + "longitude_deg": "127.491971", + "elevation_ft": "282", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Yongchu-ro", + "scheduled_service": "no", + "local_code": "RKC5" + }, + { + "id": "300355", + "ident": "RKC6", + "type": "heliport", + "name": "C-283 Heliport", + "latitude_deg": "37.930347", + "longitude_deg": "127.190557", + "elevation_ft": "470", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Pocheon-ro", + "scheduled_service": "no", + "local_code": "RKC6" + }, + { + "id": "300293", + "ident": "RKC7", + "type": "heliport", + "name": "C 285 Heliport", + "latitude_deg": "37.47174", + "longitude_deg": "126.774223", + "elevation_ft": "470", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Mani-ro", + "scheduled_service": "no", + "gps_code": "RKC7", + "local_code": "RKC7" + }, + { + "id": "300298", + "ident": "RKC8", + "type": "heliport", + "name": "C 289 Heliport", + "latitude_deg": "37.730933", + "longitude_deg": "127.073753", + "elevation_ft": "245", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RKC8", + "local_code": "RKC8" + }, + { + "id": "309660", + "ident": "RKC9", + "type": "heliport", + "name": "N 102 Helipad", + "latitude_deg": "38.014981", + "longitude_deg": "128.72803", + "elevation_ft": "141", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Hagwangjeong-ri, Hyeonbu-myeon", + "scheduled_service": "no", + "gps_code": "RKC9", + "local_code": "RKC9" + }, + { + "id": "3836", + "ident": "RKD1", + "type": "closed", + "name": "Pong Am Dong North R802 (탁구암동 노스 R802) (G-802) Airport", + "latitude_deg": "35.257854", + "longitude_deg": "128.625328", + "elevation_ft": "110", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Masan", + "scheduled_service": "no", + "gps_code": "RKD1", + "local_code": "RKD1" + }, + { + "id": "301474", + "ident": "RKD3", + "type": "heliport", + "name": "N 206 Helipad", + "latitude_deg": "37.66675", + "longitude_deg": "125.69774", + "elevation_ft": "128", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Yeonpyeong Island", + "scheduled_service": "no", + "local_code": "RKD3", + "keywords": "RKD3, N 206, N-206, Yeonpyeong" + }, + { + "id": "301583", + "ident": "RKD4", + "type": "heliport", + "name": "N 207 Helipad", + "latitude_deg": "37.947694", + "longitude_deg": "124.637667", + "elevation_ft": "103", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Baegryeong-do Island", + "scheduled_service": "no", + "gps_code": "RKD4", + "local_code": "RKD4" + }, + { + "id": "300346", + "ident": "RKDD", + "type": "heliport", + "name": "N 105 Helipad", + "latitude_deg": "37.239445", + "longitude_deg": "131.868781", + "elevation_ft": "270", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Dokdo (Liancourt Rocks)", + "scheduled_service": "yes", + "gps_code": "RKDD", + "local_code": "RK8A", + "keywords": "Dokdo Island" + }, + { + "id": "300345", + "ident": "RKDU", + "type": "heliport", + "name": "N 104 Helipad", + "latitude_deg": "37.479166666699996", + "longitude_deg": "130.895555556", + "elevation_ft": "476", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Ulleung-do Island", + "scheduled_service": "no", + "gps_code": "RKDU", + "local_code": "RK9N" + }, + { + "id": "302303", + "ident": "RKJB", + "type": "large_airport", + "name": "Muan International Airport", + "latitude_deg": "34.991406", + "longitude_deg": "126.382814", + "elevation_ft": "35", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Piseo-ri (Muan)", + "scheduled_service": "yes", + "gps_code": "RKJB", + "iata_code": "MWX", + "home_link": "http://muan.airport.co.kr/doc/muan_eng/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Muan_International_Airport", + "keywords": "Gwangju, Mokpo, Muan, MWX, RKJB" + }, + { + "id": "5630", + "ident": "RKJJ", + "type": "medium_airport", + "name": "Gwangju Airport", + "latitude_deg": "35.123173", + "longitude_deg": "126.805444", + "elevation_ft": "39", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-29", + "municipality": "Gwangju", + "scheduled_service": "yes", + "gps_code": "RKJJ", + "iata_code": "KWJ", + "home_link": "http://gwangju.airport.co.kr/doc/gwangju/index.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gwangju_Airport" + }, + { + "id": "5631", + "ident": "RKJK", + "type": "medium_airport", + "name": "Kunsan Air Base", + "latitude_deg": "35.903801", + "longitude_deg": "126.615997", + "elevation_ft": "29", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-45", + "municipality": "Kunsan", + "scheduled_service": "yes", + "gps_code": "RKJK", + "iata_code": "KUV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gunsan_Airport" + }, + { + "id": "5632", + "ident": "RKJM", + "type": "closed", + "name": "Mokpo Airport", + "latitude_deg": "34.758979", + "longitude_deg": "126.380324", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Gonghang-ro (Mokpo)", + "scheduled_service": "no", + "gps_code": "RKJM", + "iata_code": "MPK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mokpo_Airport" + }, + { + "id": "323569", + "ident": "RKJO", + "type": "heliport", + "name": "Yong Jung-ri Helipad", + "latitude_deg": "35.438754", + "longitude_deg": "126.432488", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-45", + "municipality": "Gusipoan-gil", + "scheduled_service": "no", + "gps_code": "RKJO", + "keywords": "Yong Jung, RKJO" + }, + { + "id": "5633", + "ident": "RKJU", + "type": "small_airport", + "name": "Jeonju (G 703) Air Base", + "latitude_deg": "35.878289", + "longitude_deg": "127.11894", + "elevation_ft": "96", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-45", + "municipality": "Jeonju", + "scheduled_service": "no", + "gps_code": "RKJU", + "iata_code": "CHN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jeonju_Airport", + "keywords": "Jun Ju, Jeonju" + }, + { + "id": "5634", + "ident": "RKJY", + "type": "medium_airport", + "name": "Yeosu Airport", + "latitude_deg": "34.84230041503906", + "longitude_deg": "127.61699676513672", + "elevation_ft": "53", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-46", + "municipality": "Yeosu", + "scheduled_service": "yes", + "gps_code": "RKJY", + "iata_code": "RSU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yeosu_Airport" + }, + { + "id": "32196", + "ident": "RKNC", + "type": "closed", + "name": "Camp Page (A-306) Airport", + "latitude_deg": "37.883801", + "longitude_deg": "127.718002", + "elevation_ft": "245", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Chuncheon", + "scheduled_service": "no", + "gps_code": "RKNC", + "iata_code": "QUN" + }, + { + "id": "5635", + "ident": "RKND", + "type": "closed", + "name": "Sokcho (Mulchi Airfield) (G-407/K-50) Airport", + "latitude_deg": "38.142117", + "longitude_deg": "128.598318", + "elevation_ft": "92", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Jangsan-ri, Ganghyeon-myeon", + "scheduled_service": "no", + "gps_code": "RKND", + "iata_code": "SHO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sokcho_Airport; https://en.wikipedia.org/wiki/List_of_airports_in_South_Korea" + }, + { + "id": "323262", + "ident": "RKNF", + "type": "heliport", + "name": "Whang Ryeong Helipad", + "latitude_deg": "37.780276", + "longitude_deg": "128.639552", + "elevation_ft": "4616", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Noinbong", + "scheduled_service": "no", + "gps_code": "RKNF", + "keywords": "RKNF, Noinbong, Whang Ryeong" + }, + { + "id": "5636", + "ident": "RKNN", + "type": "medium_airport", + "name": "Gangneung Airport (K-18)", + "latitude_deg": "37.753601", + "longitude_deg": "128.943915", + "elevation_ft": "35", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Gangneung", + "scheduled_service": "no", + "gps_code": "RKNN", + "iata_code": "KAG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gangneung_Air_Base", + "keywords": "K-18" + }, + { + "id": "323237", + "ident": "RKNR", + "type": "heliport", + "name": "Kotar Range Heliport", + "latitude_deg": "37.072043", + "longitude_deg": "128.864104", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Cheonpyeong-ri", + "scheduled_service": "no", + "gps_code": "RKNR", + "keywords": "Cheonpyeong-ri" + }, + { + "id": "323271", + "ident": "RKNS", + "type": "closed", + "name": "Samcheok Airfield", + "latitude_deg": "37.454301", + "longitude_deg": "129.14551", + "elevation_ft": "364", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Samcheok", + "scheduled_service": "no", + "gps_code": "RKNS" + }, + { + "id": "5637", + "ident": "RKNW", + "type": "medium_airport", + "name": "Wonju Airport / Hoengseong Air Base (K-38/K-46)", + "latitude_deg": "37.437113", + "longitude_deg": "127.960051", + "elevation_ft": "329", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Wonju", + "scheduled_service": "yes", + "gps_code": "RKNW", + "iata_code": "WJU", + "home_link": "http://wonju.airport.co.kr/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wonju_Airport; https://en.wikipedia.org/wiki/List_of_airports_in_South_Korea", + "keywords": "Wonju, Hoengseong Air Base, K-38, K-46, WJU, RKNW, RKNH" + }, + { + "id": "5638", + "ident": "RKNY", + "type": "medium_airport", + "name": "Yangyang International Airport", + "latitude_deg": "38.061298", + "longitude_deg": "128.669006", + "elevation_ft": "241", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "municipality": "Gonghang-ro", + "scheduled_service": "yes", + "gps_code": "RKNY", + "iata_code": "YNY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yangyang_International_Airport", + "keywords": "RKNY, YNY, Yangyang, Gonghang" + }, + { + "id": "5639", + "ident": "RKPC", + "type": "large_airport", + "name": "Jeju International Airport", + "latitude_deg": "33.512058", + "longitude_deg": "126.492548", + "elevation_ft": "118", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "municipality": "Jeju City", + "scheduled_service": "yes", + "gps_code": "RKPC", + "iata_code": "CJU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jeju_International_Airport" + }, + { + "id": "5640", + "ident": "RKPD", + "type": "medium_airport", + "name": "Jeongseok Airport", + "latitude_deg": "33.3996009827", + "longitude_deg": "126.711997986", + "elevation_ft": "1171", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "municipality": "Jeju Island", + "scheduled_service": "no", + "gps_code": "RKPD", + "iata_code": "JDG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jeongseok_Airport", + "keywords": "Cheju" + }, + { + "id": "5641", + "ident": "RKPE", + "type": "small_airport", + "name": "Jinhae Air Base", + "latitude_deg": "35.140248", + "longitude_deg": "128.696229", + "elevation_ft": "8", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Jinhae", + "scheduled_service": "no", + "gps_code": "RKPE", + "iata_code": "CHF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jinhae_Airport", + "keywords": "G-813, K-10, Chinhae, Jinhae Airport" + }, + { + "id": "5642", + "ident": "RKPK", + "type": "large_airport", + "name": "Gimhae International Airport", + "latitude_deg": "35.179501", + "longitude_deg": "128.938004", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-26", + "municipality": "Busan", + "scheduled_service": "yes", + "gps_code": "RKPK", + "iata_code": "PUS", + "home_link": "https://www.airport.co.kr/gimhaeeng/index.do", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gimhae_International_Airport", + "keywords": "김해국제공항, 金海國際空港, Kimhae, Pusan" + }, + { + "id": "323238", + "ident": "RKPM", + "type": "heliport", + "name": "Mosulpo Airbase Heliport", + "latitude_deg": "33.293821", + "longitude_deg": "126.162786", + "elevation_ft": "233", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-49", + "municipality": "Mosulpo", + "scheduled_service": "no", + "gps_code": "RKPM" + }, + { + "id": "5643", + "ident": "RKPS", + "type": "medium_airport", + "name": "Sacheon Airport / Sacheon Air Base", + "latitude_deg": "35.088591", + "longitude_deg": "128.071747", + "elevation_ft": "25", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-48", + "municipality": "Sacheon", + "scheduled_service": "yes", + "gps_code": "RKPS", + "iata_code": "HIN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sacheon_Airport" + }, + { + "id": "5644", + "ident": "RKPU", + "type": "medium_airport", + "name": "Ulsan Airport", + "latitude_deg": "35.59349823", + "longitude_deg": "129.352005005", + "elevation_ft": "45", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-31", + "municipality": "Ulsan", + "scheduled_service": "yes", + "gps_code": "RKPU", + "iata_code": "USN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ulsan_Airport" + }, + { + "id": "322998", + "ident": "RKQ1", + "type": "heliport", + "name": "H 252 Heliport", + "latitude_deg": "37.928202", + "longitude_deg": "127.063657", + "elevation_ft": "206", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Soyo-dong", + "scheduled_service": "no", + "gps_code": "RKQ1", + "local_code": "RKQ1", + "keywords": "H-252" + }, + { + "id": "5645", + "ident": "RKRA", + "type": "small_airport", + "name": "Ganap-ri (G-222) Airport", + "latitude_deg": "37.830057", + "longitude_deg": "126.99013", + "elevation_ft": "287", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Ganap-ri", + "scheduled_service": "no", + "gps_code": "RKRA" + }, + { + "id": "5646", + "ident": "RKRB", + "type": "small_airport", + "name": "Bucheon (G-103) Airfield", + "latitude_deg": "37.474918", + "longitude_deg": "126.747272", + "elevation_ft": "92", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Ilsin-ro", + "scheduled_service": "no", + "gps_code": "RKRB", + "local_code": "RK53" + }, + { + "id": "323505", + "ident": "RKRC", + "type": "heliport", + "name": "Ha Nam Heliport (G-280)", + "latitude_deg": "37.534913", + "longitude_deg": "127.178528", + "elevation_ft": "130", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Choil-ro", + "scheduled_service": "no", + "gps_code": "RKRC" + }, + { + "id": "323461", + "ident": "RKRD", + "type": "heliport", + "name": "Deog So Heliport (G-290)", + "latitude_deg": "37.607721", + "longitude_deg": "127.220521", + "elevation_ft": "174", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Seoksil-ro", + "scheduled_service": "no", + "gps_code": "RKRD" + }, + { + "id": "5647", + "ident": "RKRG", + "type": "small_airport", + "name": "Yangpyeong (G-301) Airport", + "latitude_deg": "37.501169", + "longitude_deg": "127.630212", + "elevation_ft": "230", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Yangpyeong", + "scheduled_service": "no", + "gps_code": "RKRG", + "local_code": "RK30", + "keywords": "RKRG, RK30, Galji, G 301, G-301, Yang Pyeong" + }, + { + "id": "5648", + "ident": "RKRK", + "type": "small_airport", + "name": "G-213 Airport", + "latitude_deg": "37.812818", + "longitude_deg": "127.357106", + "elevation_ft": "400", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Ha-myeon", + "scheduled_service": "no", + "gps_code": "RKRK", + "local_code": "RK56" + }, + { + "id": "5649", + "ident": "RKRN", + "type": "small_airport", + "name": "Icheon (G-510) Airfield", + "latitude_deg": "37.200715", + "longitude_deg": "127.469215", + "elevation_ft": "255", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Jinsangmi-ro", + "scheduled_service": "no", + "gps_code": "RKRN" + }, + { + "id": "5651", + "ident": "RKRP", + "type": "small_airport", + "name": "Paju (G-110) Airport", + "latitude_deg": "37.763489", + "longitude_deg": "126.792548", + "elevation_ft": "65", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Paju", + "scheduled_service": "no", + "gps_code": "RKRP", + "local_code": "RK45" + }, + { + "id": "313683", + "ident": "RKRS", + "type": "small_airport", + "name": "Susaek (G 113) Airport", + "latitude_deg": "37.600539", + "longitude_deg": "126.869516", + "elevation_ft": "64", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Goyang", + "scheduled_service": "no", + "gps_code": "RKRS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Korea_Aerospace_University#FTC-Susaek; https://en.wikipedia.org/wiki/List_of_airports_in_South_Kor", + "keywords": "G-113, Susaek" + }, + { + "id": "323270", + "ident": "RKSC", + "type": "heliport", + "name": "Sv Ri San Helipad", + "latitude_deg": "37.356983", + "longitude_deg": "126.902626", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RKSC" + }, + { + "id": "300127", + "ident": "RKSD", + "type": "heliport", + "name": "N 200 Heliport", + "latitude_deg": "37.171691", + "longitude_deg": "126.916266", + "elevation_ft": "155", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RKSD", + "local_code": "RK8F" + }, + { + "id": "5652", + "ident": "RKSG", + "type": "medium_airport", + "name": "Camp Humphreys (A-511) Airfield", + "latitude_deg": "36.9622", + "longitude_deg": "127.030998", + "elevation_ft": "51", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Pyeongtaek", + "scheduled_service": "no", + "gps_code": "RKSG" + }, + { + "id": "300124", + "ident": "RKSH", + "type": "heliport", + "name": "Central 119 Rescue Heliport", + "latitude_deg": "37.670554", + "longitude_deg": "127.110167", + "elevation_ft": "193", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Byeollae-dong", + "scheduled_service": "no", + "gps_code": "RKSH" + }, + { + "id": "5653", + "ident": "RKSI", + "type": "large_airport", + "name": "Incheon International Airport", + "latitude_deg": "37.46910095214844", + "longitude_deg": "126.45099639892578", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Seoul", + "scheduled_service": "yes", + "gps_code": "RKSI", + "iata_code": "ICN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Incheon_International_Airport" + }, + { + "id": "323263", + "ident": "RKSJ", + "type": "heliport", + "name": "Taesong-San Helipad", + "latitude_deg": "38.229628", + "longitude_deg": "127.539162", + "elevation_ft": "3878", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-42", + "scheduled_service": "no", + "gps_code": "RKSJ" + }, + { + "id": "5654", + "ident": "RKSM", + "type": "medium_airport", + "name": "Seoul Air Base (K-16)", + "latitude_deg": "37.444744", + "longitude_deg": "127.112718", + "elevation_ft": "92", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Seongnam", + "scheduled_service": "no", + "gps_code": "RKSM", + "iata_code": "SSN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Seoul_Air_Base" + }, + { + "id": "323235", + "ident": "RKSN", + "type": "heliport", + "name": "Kooni Range Heliport", + "latitude_deg": "37.036498", + "longitude_deg": "126.759213", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Kooni", + "scheduled_service": "no", + "gps_code": "RKSN" + }, + { + "id": "5655", + "ident": "RKSO", + "type": "medium_airport", + "name": "Osan Air Base", + "latitude_deg": "37.090599", + "longitude_deg": "127.029999", + "elevation_ft": "38", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "scheduled_service": "no", + "gps_code": "RKSO", + "iata_code": "OSN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Osan_Air_Base" + }, + { + "id": "323565", + "ident": "RKSQ", + "type": "heliport", + "name": "Yeonpyeong-Myeon Heliport", + "latitude_deg": "37.664068", + "longitude_deg": "125.69797", + "elevation_ft": "299", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Yeonpyeong-myeon", + "scheduled_service": "no", + "gps_code": "RKSQ", + "keywords": "Yeonpyeong-myeon, Yeonpyeong, RKSQ" + }, + { + "id": "323188", + "ident": "RKSR", + "type": "closed", + "name": "Camp Stanton Heliport (H-112)", + "latitude_deg": "37.792728", + "longitude_deg": "126.845516", + "elevation_ft": "77", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Gwangtan-myeon", + "scheduled_service": "no", + "gps_code": "RKSR", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_United_States_Army_installations_in_South_Korea" + }, + { + "id": "5656", + "ident": "RKSS", + "type": "large_airport", + "name": "Gimpo International Airport", + "latitude_deg": "37.5583", + "longitude_deg": "126.791", + "elevation_ft": "59", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Seoul", + "scheduled_service": "yes", + "gps_code": "RKSS", + "iata_code": "GMP", + "home_link": "http://gimpo.airport.co.kr/eng/index.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gimpo_International_Airport" + }, + { + "id": "323185", + "ident": "RKST", + "type": "small_airport", + "name": "Camp Casey-Dongduchon (Camp Mobile) (H-220) Airfield", + "latitude_deg": "37.920842", + "longitude_deg": "127.055361", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Dongduchon", + "scheduled_service": "no", + "gps_code": "RKST", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_Casey,_South_Korea" + }, + { + "id": "323564", + "ident": "RKSU", + "type": "heliport", + "name": "Yeoju Range Heliport", + "latitude_deg": "37.436895", + "longitude_deg": "127.632886", + "elevation_ft": "141", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Utsokgogaet-gil", + "scheduled_service": "no", + "gps_code": "RKSU", + "keywords": "RKSU, Yeoju Range, Utsokgogaet" + }, + { + "id": "323255", + "ident": "RKSV", + "type": "heliport", + "name": "Pyoripsan Heliport", + "latitude_deg": "37.77857", + "longitude_deg": "126.381706", + "elevation_ft": "820", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Pyoripsan", + "scheduled_service": "no", + "gps_code": "RKSV" + }, + { + "id": "5657", + "ident": "RKSW", + "type": "medium_airport", + "name": "Suwon Airport", + "latitude_deg": "37.239399", + "longitude_deg": "127.007004", + "elevation_ft": "88", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Suwon", + "scheduled_service": "no", + "gps_code": "RKSW", + "iata_code": "SWU" + }, + { + "id": "300126", + "ident": "RKSX", + "type": "heliport", + "name": "Camp Stanley (H 207) Heliport", + "latitude_deg": "37.722314", + "longitude_deg": "127.097335", + "elevation_ft": "216", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-41", + "municipality": "Camp Stanley", + "scheduled_service": "no", + "gps_code": "RKSX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_Stanley" + }, + { + "id": "300125", + "ident": "RKSY", + "type": "heliport", + "name": "H 264 Heliport", + "latitude_deg": "37.528355", + "longitude_deg": "126.975799", + "elevation_ft": "67", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-11", + "municipality": "Yongsan, Seoul", + "scheduled_service": "no", + "gps_code": "RKSY" + }, + { + "id": "323266", + "ident": "RKTA", + "type": "small_airport", + "name": "Taean Airport", + "latitude_deg": "36.593781", + "longitude_deg": "126.29662", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Taean", + "scheduled_service": "no", + "gps_code": "RKTA", + "iata_code": "QDY", + "wikipedia_link": "https://en.wikipedia.org/wiki/List_of_airports_in_South_Korea" + }, + { + "id": "323554", + "ident": "RKTB", + "type": "heliport", + "name": "Paekado Helipad", + "latitude_deg": "37.025726", + "longitude_deg": "125.997423", + "elevation_ft": "151", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-28", + "municipality": "Paekado (Ul-do)", + "scheduled_service": "no", + "gps_code": "RKTB", + "keywords": "RKTB, Ul-do, Paekado" + }, + { + "id": "323265", + "ident": "RKTD", + "type": "closed", + "name": "Taejon Airfield", + "latitude_deg": "36.316327", + "longitude_deg": "127.361712", + "elevation_ft": "207", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Taejon", + "scheduled_service": "no", + "gps_code": "RKTD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taejon_Airfield" + }, + { + "id": "5658", + "ident": "RKTE", + "type": "small_airport", + "name": "Seongmu Airport", + "latitude_deg": "36.568199", + "longitude_deg": "127.5", + "elevation_ft": "258", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-43", + "scheduled_service": "no", + "gps_code": "RKTE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Seongmu_Airport" + }, + { + "id": "5659", + "ident": "RKTH", + "type": "medium_airport", + "name": "Pohang Airport (G-815/K-3)", + "latitude_deg": "35.987955", + "longitude_deg": "129.420383", + "elevation_ft": "70", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Pohang", + "scheduled_service": "yes", + "gps_code": "RKTH", + "iata_code": "KPO", + "home_link": "http://pohang.airport.co.kr/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pohang_Airport" + }, + { + "id": "5660", + "ident": "RKTI", + "type": "medium_airport", + "name": "Jungwon Air Base/Chungju Airport", + "latitude_deg": "37.03024", + "longitude_deg": "127.886353", + "elevation_ft": "281", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-43", + "municipality": "Gimseang-ro", + "scheduled_service": "no", + "gps_code": "RKTI", + "local_code": "RKTV" + }, + { + "id": "5661", + "ident": "RKTN", + "type": "medium_airport", + "name": "Daegu Airport", + "latitude_deg": "35.896872", + "longitude_deg": "128.65531", + "elevation_ft": "116", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-27", + "municipality": "Daegu", + "scheduled_service": "yes", + "gps_code": "RKTN", + "iata_code": "TAE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Daegu_Airport" + }, + { + "id": "5662", + "ident": "RKTP", + "type": "small_airport", + "name": "Seosan Air Base", + "latitude_deg": "36.703999", + "longitude_deg": "126.486", + "elevation_ft": "39", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Seosan", + "scheduled_service": "no", + "gps_code": "RKTP", + "iata_code": "HMY", + "local_code": "RK6U", + "wikipedia_link": "https://en.wikipedia.org/wiki/Seosan_Air_Base" + }, + { + "id": "323239", + "ident": "RKTS", + "type": "small_airport", + "name": "Sangju Airfield", + "latitude_deg": "36.407451", + "longitude_deg": "128.177158", + "elevation_ft": "492", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Sangju", + "scheduled_service": "no", + "gps_code": "RKTS" + }, + { + "id": "5663", + "ident": "RKTU", + "type": "medium_airport", + "name": "Cheongju International Airport/Cheongju Air Base (K-59/G-513)", + "latitude_deg": "36.717008", + "longitude_deg": "127.498741", + "elevation_ft": "191", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-43", + "municipality": "Cheongju", + "scheduled_service": "yes", + "gps_code": "RKTU", + "iata_code": "CJJ", + "home_link": "http://cheongju.airport.co.kr/doc/cheongju_eng/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cheongju_Airport" + }, + { + "id": "323563", + "ident": "RKTW", + "type": "heliport", + "name": "Woong Cheon Heliport", + "latitude_deg": "36.219321", + "longitude_deg": "126.54962", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Sohwang", + "scheduled_service": "no", + "gps_code": "RKTW", + "keywords": "RKTW, Woong Cheon, Sohwang" + }, + { + "id": "5664", + "ident": "RKTY", + "type": "medium_airport", + "name": "Yecheon Airbase", + "latitude_deg": "36.630373", + "longitude_deg": "128.34971", + "elevation_ft": "354", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Yecheon-ri", + "scheduled_service": "no", + "gps_code": "RKTY", + "iata_code": "YEC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yecheon_Air_Base; https://en.wikipedia.org/wiki/List_of_airports_in_South_Korea" + }, + { + "id": "46169", + "ident": "RKU", + "type": "small_airport", + "name": "Kairuku Airport", + "latitude_deg": "-8.817000054", + "longitude_deg": "146.5243833", + "elevation_ft": "45", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Yule Island", + "scheduled_service": "no", + "gps_code": "AYRK", + "iata_code": "RKU", + "local_code": "KKU" + }, + { + "id": "5665", + "ident": "RKUC", + "type": "small_airport", + "name": "Jochiwon (G-505) Airfield", + "latitude_deg": "36.571949", + "longitude_deg": "127.296067", + "elevation_ft": "82", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Jochiwon", + "scheduled_service": "no", + "gps_code": "RKUC" + }, + { + "id": "5666", + "ident": "RKUL", + "type": "small_airport", + "name": "G 536 Airport", + "latitude_deg": "36.267085", + "longitude_deg": "127.108881", + "elevation_ft": "104", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-44", + "municipality": "Songdang-ri", + "scheduled_service": "no", + "gps_code": "RKUL", + "keywords": "RKUL, G 536, G-536, Songdang" + }, + { + "id": "323011", + "ident": "RKUY", + "type": "heliport", + "name": "Yongchon Airport (G-801)", + "latitude_deg": "36.025333", + "longitude_deg": "128.81945", + "elevation_ft": "388", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Yeongcheon", + "scheduled_service": "no", + "gps_code": "RKUY", + "keywords": "RKUY, Yongchon, Yeongcheon, G 801, G-801" + }, + { + "id": "314489", + "ident": "RKY", + "type": "small_airport", + "name": "Rokeby Airport", + "latitude_deg": "-13.6434", + "longitude_deg": "142.641", + "elevation_ft": "362", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Rokeby", + "scheduled_service": "no", + "iata_code": "RKY" + }, + { + "id": "314508", + "ident": "RLP", + "type": "small_airport", + "name": "Rosella Plains Airport", + "latitude_deg": "-18.4253", + "longitude_deg": "144.4587", + "elevation_ft": "1855", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Rosella Plains", + "scheduled_service": "no", + "iata_code": "RLP" + }, + { + "id": "24363", + "ident": "RMP", + "type": "small_airport", + "name": "Rampart Airport", + "latitude_deg": "65.507896", + "longitude_deg": "-150.141007", + "elevation_ft": "302", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Rampart", + "scheduled_service": "yes", + "iata_code": "RMP", + "local_code": "RMP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rampart_Airport" + }, + { + "id": "308134", + "ident": "RMU", + "type": "medium_airport", + "name": "Región de Murcia International Airport", + "latitude_deg": "37.803", + "longitude_deg": "-1.125", + "elevation_ft": "644", + "continent": "EU", + "iso_country": "ES", + "iso_region": "ES-MU", + "municipality": "Corvera", + "scheduled_service": "yes", + "gps_code": "LEMI", + "iata_code": "RMU", + "home_link": "https://www.aena.es/en/internacional-region-de-murcia.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Murcia-Corvera_Airport" + }, + { + "id": "314509", + "ident": "RNR", + "type": "closed", + "name": "Robinson River Airport", + "latitude_deg": "-10.171", + "longitude_deg": "148.823", + "elevation_ft": "60", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Robinson River", + "scheduled_service": "no", + "iata_code": "RNR", + "local_code": "RNR" + }, + { + "id": "354770", + "ident": "RO-0001", + "type": "small_airport", + "name": "Zanesti Airfield", + "latitude_deg": "46.84667", + "longitude_deg": "26.55611", + "elevation_ft": "947", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-NT", + "municipality": "Roznov", + "scheduled_service": "no" + }, + { + "id": "311939", + "ident": "RO-0002", + "type": "small_airport", + "name": "Banesti", + "latitude_deg": "45.068671", + "longitude_deg": "25.80637", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-PH", + "scheduled_service": "no" + }, + { + "id": "313613", + "ident": "RO-0003", + "type": "small_airport", + "name": "Aerodrom Fratauti", + "latitude_deg": "47.885278", + "longitude_deg": "25.899167", + "elevation_ft": "1380", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-SV", + "municipality": "Rădăuți", + "scheduled_service": "no", + "home_link": "http://bucovinaflyclub.ro/", + "keywords": "Aerodrom Fratauti" + }, + { + "id": "313619", + "ident": "RO-0004", + "type": "small_airport", + "name": "Ineu \"King's Land\" field", + "latitude_deg": "47.079167", + "longitude_deg": "22.100278", + "elevation_ft": "498", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-BN", + "scheduled_service": "no", + "home_link": "http://www.fly2romania.com/" + }, + { + "id": "315478", + "ident": "RO-0005", + "type": "small_airport", + "name": "Aerodrom Sălicea", + "latitude_deg": "46.6830919", + "longitude_deg": "23.5076486", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-CJ", + "scheduled_service": "no" + }, + { + "id": "315482", + "ident": "RO-0006", + "type": "small_airport", + "name": "Sânpetru-Brașov Aerodrome", + "latitude_deg": "45.721036", + "longitude_deg": "25.633707", + "elevation_ft": "1716", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-BV", + "municipality": "Sânpetru", + "scheduled_service": "no", + "gps_code": "LRSP", + "keywords": "Aerodromul Sânpetru-Brașov" + }, + { + "id": "315483", + "ident": "RO-0007", + "type": "small_airport", + "name": "Aerodromul Săulești", + "latitude_deg": "45.863784", + "longitude_deg": "22.965066", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-GJ", + "municipality": "Deva", + "scheduled_service": "no", + "gps_code": "LRDV" + }, + { + "id": "315486", + "ident": "RO-0008", + "type": "small_airport", + "name": "Aeroportul Sportiv Elie Carafoli", + "latitude_deg": "46.53441", + "longitude_deg": "24.5346447", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-MS", + "municipality": "Târgu Mureș", + "scheduled_service": "no" + }, + { + "id": "315658", + "ident": "RO-0009", + "type": "small_airport", + "name": "Aerodromul Charlie Bravo Siria", + "latitude_deg": "46.26433", + "longitude_deg": "21.604521", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-AR", + "municipality": "Arad", + "scheduled_service": "no" + }, + { + "id": "315893", + "ident": "RO-0010", + "type": "small_airport", + "name": "Ghimbav Aerodrome", + "latitude_deg": "45.699386", + "longitude_deg": "25.528414", + "elevation_ft": "1736", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-BV", + "municipality": "Ghimbav", + "scheduled_service": "no" + }, + { + "id": "315897", + "ident": "RO-0011", + "type": "small_airport", + "name": "Prejmer Aerodrome", + "latitude_deg": "45.697671", + "longitude_deg": "25.779723", + "elevation_ft": "1762", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-BV", + "municipality": "Prejmer", + "scheduled_service": "no", + "home_link": "http://www.aerodromprejmer.ro/" + }, + { + "id": "317422", + "ident": "RO-0012", + "type": "small_airport", + "name": "Costinești Aerodrome", + "latitude_deg": "43.926686", + "longitude_deg": "28.629548", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-CT", + "municipality": "Costinești", + "scheduled_service": "no" + }, + { + "id": "320207", + "ident": "RO-0013", + "type": "small_airport", + "name": "Aeroclubul Balta-Verde", + "latitude_deg": "44.285839", + "longitude_deg": "23.791537", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-DJ", + "municipality": "Craiova", + "scheduled_service": "no", + "gps_code": "LRCW" + }, + { + "id": "320214", + "ident": "RO-0014", + "type": "small_airport", + "name": "Aerodromul Alexeni", + "latitude_deg": "44.704857", + "longitude_deg": "26.720739", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-IL", + "municipality": "Alexeni", + "scheduled_service": "no" + }, + { + "id": "320252", + "ident": "RO-0015", + "type": "closed", + "name": "Siliștea Gumești Air Base", + "latitude_deg": "44.370911", + "longitude_deg": "24.983528", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-TR", + "scheduled_service": "no" + }, + { + "id": "320577", + "ident": "RO-0016", + "type": "small_airport", + "name": "Aerial Club Vădeni", + "latitude_deg": "45.364129", + "longitude_deg": "27.938835", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-BR", + "municipality": "Vădeni", + "scheduled_service": "no", + "home_link": "http://aerial.ro" + }, + { + "id": "320578", + "ident": "RO-0017", + "type": "closed", + "name": "Aerodrom Cioca", + "latitude_deg": "45.786876", + "longitude_deg": "21.190265", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-TM", + "municipality": "Timisoara", + "scheduled_service": "no" + }, + { + "id": "320684", + "ident": "RO-0018", + "type": "heliport", + "name": "Cobrex Heliport", + "latitude_deg": "45.657735", + "longitude_deg": "25.55701", + "elevation_ft": "1778", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-BV", + "municipality": "Brașov", + "scheduled_service": "no", + "home_link": "http://cobrexhelicopters.ro" + }, + { + "id": "320903", + "ident": "RO-0019", + "type": "small_airport", + "name": "Comana Airstrip", + "latitude_deg": "44.2002778", + "longitude_deg": "26.1397222", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-GR", + "municipality": "Comana", + "scheduled_service": "no" + }, + { + "id": "321507", + "ident": "RO-0020", + "type": "small_airport", + "name": "Aerodromul Buziaş", + "latitude_deg": "45.654166", + "longitude_deg": "21.580124", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-TM", + "municipality": "Buziaş", + "scheduled_service": "no" + }, + { + "id": "321739", + "ident": "RO-0021", + "type": "small_airport", + "name": "Fazi Airstrip", + "latitude_deg": "46.347099", + "longitude_deg": "25.873769", + "elevation_ft": "2958", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-HR", + "municipality": "Leliceni", + "scheduled_service": "no", + "keywords": "LRLE" + }, + { + "id": "322151", + "ident": "RO-0022", + "type": "small_airport", + "name": "Lăzarea Airstrip", + "latitude_deg": "46.7261196", + "longitude_deg": "25.5141861", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-HR", + "municipality": "Lăzarea", + "scheduled_service": "no" + }, + { + "id": "322374", + "ident": "RO-0023", + "type": "small_airport", + "name": "Aerodrom Drobeta", + "latitude_deg": "44.580556", + "longitude_deg": "22.844444", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-MH", + "municipality": "Drobeta", + "scheduled_service": "no", + "home_link": "http://www.aeroclubuldrobeta.ro/" + }, + { + "id": "322519", + "ident": "RO-0024", + "type": "small_airport", + "name": "Piatra Craiului Aerodrome", + "latitude_deg": "45.56553", + "longitude_deg": "25.396588", + "elevation_ft": "2198", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-BV", + "municipality": "Râșnov", + "scheduled_service": "no", + "home_link": "http://time2fly.ro" + }, + { + "id": "322817", + "ident": "RO-0025", + "type": "small_airport", + "name": "Aerodromul Topoloveni", + "latitude_deg": "44.7966246", + "longitude_deg": "25.0896598", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-AG", + "municipality": "Topoloveni", + "scheduled_service": "no" + }, + { + "id": "323634", + "ident": "RO-0026", + "type": "small_airport", + "name": "Salonti Airstrip", + "latitude_deg": "45.9416179", + "longitude_deg": "23.7606823", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-AB", + "scheduled_service": "no" + }, + { + "id": "323671", + "ident": "RO-0027", + "type": "small_airport", + "name": "Aerodromul Ciceu-Andras", + "latitude_deg": "46.3927664", + "longitude_deg": "25.7776699", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-HR", + "municipality": "Miercurea Ciuc", + "scheduled_service": "no" + }, + { + "id": "325342", + "ident": "RO-0028", + "type": "small_airport", + "name": "Ghindari Airfield", + "latitude_deg": "46.5189842", + "longitude_deg": "24.943781", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-MS", + "municipality": "Ghindari", + "scheduled_service": "no" + }, + { + "id": "335080", + "ident": "RO-0029", + "type": "heliport", + "name": "Unitatea Specială de Aviație București", + "latitude_deg": "44.504525", + "longitude_deg": "26.098452", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-B", + "scheduled_service": "no" + }, + { + "id": "342108", + "ident": "RO-0030", + "type": "heliport", + "name": "Telecabina Heliport", + "latitude_deg": "45.5883", + "longitude_deg": "25.5508", + "elevation_ft": "3399", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-BV", + "municipality": "Brașov", + "scheduled_service": "no" + }, + { + "id": "329751", + "ident": "RO-0031", + "type": "small_airport", + "name": "Aerodrom Crasna", + "latitude_deg": "47.1679879", + "longitude_deg": "22.8559184", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-SJ", + "municipality": "Crasna", + "scheduled_service": "no" + }, + { + "id": "346654", + "ident": "RO-0032", + "type": "small_airport", + "name": "Aerodrom Ciocănești", + "latitude_deg": "44.581076", + "longitude_deg": "25.853051", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-DB", + "scheduled_service": "no" + }, + { + "id": "346802", + "ident": "RO-0033", + "type": "small_airport", + "name": "Aerodromul Girov", + "latitude_deg": "46.961818", + "longitude_deg": "26.485076", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-NT", + "scheduled_service": "no" + }, + { + "id": "348582", + "ident": "RO-0034", + "type": "small_airport", + "name": "Odorhei Airfield", + "latitude_deg": "46.32548", + "longitude_deg": "25.28201", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-HR", + "municipality": "Odorheiu Secuiesc", + "scheduled_service": "no" + }, + { + "id": "351076", + "ident": "RO-0035", + "type": "heliport", + "name": "Caragea Dermen Heliport", + "latitude_deg": "44.23193", + "longitude_deg": "28.58523", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-CT", + "municipality": "Ovidiu", + "scheduled_service": "no" + }, + { + "id": "351099", + "ident": "RO-0036", + "type": "heliport", + "name": "SMURD Heliport", + "latitude_deg": "44.141804", + "longitude_deg": "28.591412", + "elevation_ft": "194", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-CT", + "municipality": "Constanța", + "scheduled_service": "no" + }, + { + "id": "351100", + "ident": "RO-0037", + "type": "heliport", + "name": "King Carol I Lighthouse Heliport", + "latitude_deg": "44.15982", + "longitude_deg": "28.65775", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-CT", + "municipality": "Constanța", + "scheduled_service": "no" + }, + { + "id": "351101", + "ident": "RO-0038", + "type": "heliport", + "name": "Constanța Naval Heliport", + "latitude_deg": "44.15778", + "longitude_deg": "28.66116", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-CT", + "municipality": "Constanța", + "scheduled_service": "no" + }, + { + "id": "351102", + "ident": "RO-0039", + "type": "heliport", + "name": "Mamaia Heliport", + "latitude_deg": "44.23659", + "longitude_deg": "28.62099", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-CT", + "municipality": "Constanța", + "scheduled_service": "no" + }, + { + "id": "351103", + "ident": "RO-0040", + "type": "heliport", + "name": "Năvodari Heliport", + "latitude_deg": "44.32903", + "longitude_deg": "28.65699", + "elevation_ft": "1", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-CT", + "municipality": "Năvodari", + "scheduled_service": "no" + }, + { + "id": "351104", + "ident": "RO-0041", + "type": "small_airport", + "name": "Dunavățu de Jos Aerodrome", + "latitude_deg": "44.985719", + "longitude_deg": "29.213128", + "elevation_ft": "43", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-TL", + "municipality": "Dunavățu de Jos", + "scheduled_service": "no" + }, + { + "id": "351105", + "ident": "RO-0042", + "type": "closed", + "name": "Chilia Veche Aerodrome", + "latitude_deg": "45.41911", + "longitude_deg": "29.31393", + "elevation_ft": "6", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-TL", + "municipality": "Chilia Veche", + "scheduled_service": "no" + }, + { + "id": "351107", + "ident": "RO-0043", + "type": "heliport", + "name": "Damen Shipyard Heliport", + "latitude_deg": "45.44382", + "longitude_deg": "28.0831", + "elevation_ft": "23", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-GL", + "municipality": "Galați", + "scheduled_service": "no" + }, + { + "id": "354771", + "ident": "RO-0044", + "type": "small_airport", + "name": "Predeşti Airfield", + "latitude_deg": "44.3743", + "longitude_deg": "23.618503", + "elevation_ft": "300", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-DJ", + "scheduled_service": "no" + }, + { + "id": "354773", + "ident": "RO-0045", + "type": "small_airport", + "name": "Aerodrom Barza Târgu-Jiu", + "latitude_deg": "45.00333", + "longitude_deg": "23.33389", + "elevation_ft": "667", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-GJ", + "municipality": "Bucureasa", + "scheduled_service": "no" + }, + { + "id": "354784", + "ident": "RO-0046", + "type": "small_airport", + "name": "Ilfoveni Airfield", + "latitude_deg": "44.794536", + "longitude_deg": "25.589261", + "elevation_ft": "659", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-DB", + "scheduled_service": "no", + "home_link": "http://aerogetic.ro" + }, + { + "id": "354785", + "ident": "RO-0047", + "type": "small_airport", + "name": "Vânătorii Mici Airfield", + "latitude_deg": "44.48972", + "longitude_deg": "25.59056", + "elevation_ft": "415", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-GR", + "scheduled_service": "no", + "keywords": "Fly Friends" + }, + { + "id": "354791", + "ident": "RO-0048", + "type": "small_airport", + "name": "Mihăița Airstrip", + "latitude_deg": "44.39167", + "longitude_deg": "23.67083", + "elevation_ft": "285", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-DJ", + "scheduled_service": "no" + }, + { + "id": "354792", + "ident": "RO-0049", + "type": "small_airport", + "name": "Luncani Airfield", + "latitude_deg": "46.48167", + "longitude_deg": "23.93139", + "elevation_ft": "1010", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-CJ", + "scheduled_service": "no", + "keywords": "Skydive Transilvania" + }, + { + "id": "354801", + "ident": "RO-0050", + "type": "small_airport", + "name": "Dezmir Glider Field", + "latitude_deg": "46.77917", + "longitude_deg": "23.71194", + "elevation_ft": "1010", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-CJ", + "scheduled_service": "no" + }, + { + "id": "354824", + "ident": "RO-0051", + "type": "small_airport", + "name": "Gagu Airfield", + "latitude_deg": "44.610695", + "longitude_deg": "26.260629", + "elevation_ft": "265", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-IF", + "municipality": "Gagu", + "scheduled_service": "no" + }, + { + "id": "354825", + "ident": "RO-0052", + "type": "heliport", + "name": "Heliport Dogaru", + "latitude_deg": "47.05833", + "longitude_deg": "22.07806", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-BN", + "municipality": "Fughiu", + "scheduled_service": "no", + "home_link": "http://www.flycompany.ro" + }, + { + "id": "354826", + "ident": "RO-0053", + "type": "small_airport", + "name": "Plopul Airstrip", + "latitude_deg": "45.00556", + "longitude_deg": "29.1", + "elevation_ft": "12", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-TL", + "municipality": "Murighiol", + "scheduled_service": "no", + "home_link": "https://moa-avio.ro/aerodrom/" + }, + { + "id": "354838", + "ident": "RO-0054", + "type": "small_airport", + "name": "Iaşi Sud", + "latitude_deg": "47.15778", + "longitude_deg": "27.6375", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-IS", + "scheduled_service": "no" + }, + { + "id": "354876", + "ident": "RO-0055", + "type": "small_airport", + "name": "Dumbrava Roșie Airfield", + "latitude_deg": "46.898853", + "longitude_deg": "26.434307", + "elevation_ft": "992", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-NT", + "scheduled_service": "no" + }, + { + "id": "354877", + "ident": "RO-0056", + "type": "small_airport", + "name": "Dărmănești", + "latitude_deg": "47.721693", + "longitude_deg": "26.118418", + "elevation_ft": "975", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-SV", + "scheduled_service": "no" + }, + { + "id": "354879", + "ident": "RO-0057", + "type": "small_airport", + "name": "Luica Airfield", + "latitude_deg": "44.262213", + "longitude_deg": "26.651137", + "elevation_ft": "170", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-CL", + "scheduled_service": "no" + }, + { + "id": "354880", + "ident": "RO-0058", + "type": "small_airport", + "name": "Casa Teo Airstrip", + "latitude_deg": "45.02028", + "longitude_deg": "25.85611", + "elevation_ft": "921", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-PH", + "municipality": "Băicoi", + "scheduled_service": "no", + "home_link": "https://casa-teo.ro/" + }, + { + "id": "354906", + "ident": "RO-0059", + "type": "small_airport", + "name": "Copalnic-Manastur Airfield", + "latitude_deg": "47.509222", + "longitude_deg": "23.68809", + "elevation_ft": "815", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-MM", + "scheduled_service": "no" + }, + { + "id": "354910", + "ident": "RO-0060", + "type": "small_airport", + "name": "Sânsimion Airfield", + "latitude_deg": "46.265043", + "longitude_deg": "25.91516", + "elevation_ft": "2170", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-HR", + "scheduled_service": "no" + }, + { + "id": "354911", + "ident": "RO-0061", + "type": "small_airport", + "name": "Mugeni Airfield", + "latitude_deg": "46.249281", + "longitude_deg": "25.222732", + "elevation_ft": "1475", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-HR", + "municipality": "Mugeni", + "scheduled_service": "no" + }, + { + "id": "354933", + "ident": "RO-0062", + "type": "small_airport", + "name": "Aripi Ramnicene Airstrip", + "latitude_deg": "45.380489", + "longitude_deg": "27.074475", + "elevation_ft": "335", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-BZ", + "municipality": "Ramnicu Sarat", + "scheduled_service": "no" + }, + { + "id": "355028", + "ident": "RO-0063", + "type": "heliport", + "name": "Râmnicu Vâlcea Heliport", + "latitude_deg": "45.05704", + "longitude_deg": "24.342635", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-VL", + "scheduled_service": "no" + }, + { + "id": "355259", + "ident": "RO-0064", + "type": "heliport", + "name": "Crystal Tower Bucharest Helipad", + "latitude_deg": "44.45222", + "longitude_deg": "26.09506", + "elevation_ft": "314", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-B", + "municipality": "Bucharest", + "scheduled_service": "no" + }, + { + "id": "430040", + "ident": "RO-0065", + "type": "small_airport", + "name": "Aerodrom Letca Nouă", + "latitude_deg": "44.22531", + "longitude_deg": "25.75088", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-GR", + "scheduled_service": "no" + }, + { + "id": "430342", + "ident": "RO-0066", + "type": "small_airport", + "name": "Fibiș Airstrip", + "latitude_deg": "45.96196", + "longitude_deg": "21.45735", + "continent": "EU", + "iso_country": "RO", + "iso_region": "RO-AR", + "scheduled_service": "no" + }, + { + "id": "300121", + "ident": "RO02", + "type": "heliport", + "name": "Lester Helo Pad Nº 2", + "latitude_deg": "26.3172222222", + "longitude_deg": "127.764444444", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "scheduled_service": "no", + "gps_code": "RO02" + }, + { + "id": "300122", + "ident": "RO04", + "type": "heliport", + "name": "White Beach Helipad CFAO", + "latitude_deg": "26.301666666699997", + "longitude_deg": "127.910277778", + "elevation_ft": "31", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "scheduled_service": "no", + "gps_code": "RO04" + }, + { + "id": "5671", + "ident": "ROAH", + "type": "large_airport", + "name": "Naha Airport / JASDF Naha Air Base", + "latitude_deg": "26.195801", + "longitude_deg": "127.646004", + "elevation_ft": "12", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Naha", + "scheduled_service": "yes", + "gps_code": "ROAH", + "iata_code": "OKA", + "home_link": "http://www.naha-airport.co.jp/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naha_Airport", + "keywords": "那覇空港, Naha Kūkō?, AHA, Naha AFB" + }, + { + "id": "5672", + "ident": "RODE", + "type": "small_airport", + "name": "Iejima Auxiliary Air Base", + "latitude_deg": "26.725953", + "longitude_deg": "127.765217", + "elevation_ft": "184", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Ie", + "scheduled_service": "no", + "gps_code": "RODE" + }, + { + "id": "5673", + "ident": "RODN", + "type": "large_airport", + "name": "Kadena Air Base", + "latitude_deg": "26.351667", + "longitude_deg": "127.769444", + "elevation_ft": "143", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "scheduled_service": "no", + "gps_code": "RODN", + "iata_code": "DNA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kadena_Air_Base" + }, + { + "id": "5674", + "ident": "ROIG", + "type": "closed", + "name": "Ishigaki Airport", + "latitude_deg": "24.3445", + "longitude_deg": "124.187", + "elevation_ft": "93", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Ishigaki", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ishigaki_Airport", + "keywords": "Ishigaki Auxiliary Field #2, ROIG" + }, + { + "id": "5675", + "ident": "ROKJ", + "type": "medium_airport", + "name": "Kumejima Airport", + "latitude_deg": "26.363445", + "longitude_deg": "126.71384", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Kumejima", + "scheduled_service": "yes", + "gps_code": "ROKJ", + "iata_code": "UEO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kumejima_Airport" + }, + { + "id": "28139", + "ident": "ROKR", + "type": "small_airport", + "name": "Kerama Airport", + "latitude_deg": "26.168337", + "longitude_deg": "127.293423", + "elevation_ft": "156", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Zamami", + "scheduled_service": "no", + "gps_code": "ROKR", + "iata_code": "KJP", + "home_link": "http://www.pref.okinawa.jp/airport/index/kr/kerama00-e.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kerama_Airport" + }, + { + "id": "5676", + "ident": "ROMD", + "type": "medium_airport", + "name": "Minamidaito Airport", + "latitude_deg": "25.8465", + "longitude_deg": "131.263", + "elevation_ft": "167", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Minamidaito", + "scheduled_service": "yes", + "gps_code": "ROMD", + "iata_code": "MMD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Minami-Daito_Airport#Airlines" + }, + { + "id": "5677", + "ident": "ROMY", + "type": "medium_airport", + "name": "Miyako Airport", + "latitude_deg": "24.782800674399997", + "longitude_deg": "125.294998169", + "elevation_ft": "150", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Miyako City", + "scheduled_service": "yes", + "gps_code": "ROMY", + "iata_code": "MMY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miyako_Airport" + }, + { + "id": "30621", + "ident": "RORA", + "type": "small_airport", + "name": "Aguni Airport", + "latitude_deg": "26.592755", + "longitude_deg": "127.240335", + "elevation_ft": "38", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Aguni", + "scheduled_service": "yes", + "gps_code": "RORA", + "iata_code": "AGJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aguni_Airport" + }, + { + "id": "5678", + "ident": "RORE", + "type": "medium_airport", + "name": "Iejima Airport", + "latitude_deg": "26.722537", + "longitude_deg": "127.786801", + "elevation_ft": "246", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Ie", + "scheduled_service": "no", + "gps_code": "RORE", + "iata_code": "IEJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iejima_Airport" + }, + { + "id": "31644", + "ident": "RORH", + "type": "small_airport", + "name": "Hateruma Airport", + "latitude_deg": "24.059751", + "longitude_deg": "123.80558", + "elevation_ft": "43", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Taketomi", + "scheduled_service": "no", + "gps_code": "RORH", + "iata_code": "HTR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hateruma_Airport" + }, + { + "id": "5679", + "ident": "RORK", + "type": "medium_airport", + "name": "Kitadaito Airport", + "latitude_deg": "25.9447002411", + "longitude_deg": "131.32699585", + "elevation_ft": "80", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Kitadaitōjima", + "scheduled_service": "yes", + "gps_code": "RORK", + "iata_code": "KTD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kitadaito_Airport" + }, + { + "id": "5680", + "ident": "RORS", + "type": "medium_airport", + "name": "Miyako Shimojishima Airport", + "latitude_deg": "24.8267", + "longitude_deg": "125.144997", + "elevation_ft": "54", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Miyakojima", + "scheduled_service": "no", + "gps_code": "RORS", + "iata_code": "SHI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shimojishima_Airport", + "keywords": "Shimoji Airport" + }, + { + "id": "5681", + "ident": "RORT", + "type": "medium_airport", + "name": "Tarama Airport", + "latitude_deg": "24.653900146499996", + "longitude_deg": "124.675003052", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Tarama", + "scheduled_service": "yes", + "gps_code": "RORT", + "iata_code": "TRA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tarama_Airport" + }, + { + "id": "5682", + "ident": "RORY", + "type": "medium_airport", + "name": "Yoron Airport", + "latitude_deg": "27.044001", + "longitude_deg": "128.401993", + "elevation_ft": "52", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Yoron", + "scheduled_service": "yes", + "gps_code": "RORY", + "iata_code": "RNJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yoron_Airport" + }, + { + "id": "5683", + "ident": "ROTM", + "type": "medium_airport", + "name": "Futenma Marine Corps Air Station", + "latitude_deg": "26.27429962158203", + "longitude_deg": "127.75599670410156", + "elevation_ft": "247", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "scheduled_service": "no", + "gps_code": "ROTM", + "keywords": "Futenma MCAS" + }, + { + "id": "5684", + "ident": "ROYN", + "type": "medium_airport", + "name": "Yonaguni Airport", + "latitude_deg": "24.467298", + "longitude_deg": "122.979827", + "elevation_ft": "70", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-47", + "municipality": "Yonaguni", + "scheduled_service": "yes", + "gps_code": "ROYN", + "iata_code": "OGN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yonaguni_Airport" + }, + { + "id": "5435", + "ident": "RP12", + "type": "small_airport", + "name": "Pagbilao Grande Island Airport", + "latitude_deg": "13.9002", + "longitude_deg": "121.744003", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-QUE", + "municipality": "Pagbilao", + "scheduled_service": "no", + "gps_code": "RP12", + "local_code": "RP12" + }, + { + "id": "5436", + "ident": "RP13", + "type": "small_airport", + "name": "Nonoc Airport", + "latitude_deg": "9.809309", + "longitude_deg": "125.595318", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SUN", + "municipality": "Surigao City (Nonoc Island)", + "scheduled_service": "no", + "gps_code": "RP13", + "local_code": "RP13" + }, + { + "id": "5437", + "ident": "RP14", + "type": "closed", + "name": "Magat River Multipurpose Project Airstrip", + "latitude_deg": "16.829927", + "longitude_deg": "121.499659", + "elevation_ft": "384", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ISA", + "municipality": "Ramon", + "scheduled_service": "no", + "keywords": "Ambatali, MRMP, Magat River Management Project, Magat Dam, RP0D" + }, + { + "id": "5438", + "ident": "RP15", + "type": "small_airport", + "name": "Isabel PASAR Airport", + "latitude_deg": "10.912339", + "longitude_deg": "124.437856", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LEY", + "municipality": "Isabel", + "scheduled_service": "no", + "gps_code": "RP15", + "local_code": "RP15" + }, + { + "id": "5439", + "ident": "RP16", + "type": "small_airport", + "name": "Seahawk Lz Airstrip", + "latitude_deg": "6.65417", + "longitude_deg": "121.980003", + "elevation_ft": "1011", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BAS", + "scheduled_service": "no", + "gps_code": "RP16", + "local_code": "RP16", + "keywords": "Seahawk LZ" + }, + { + "id": "5440", + "ident": "RP17", + "type": "small_airport", + "name": "Malita Airport", + "latitude_deg": "6.402734", + "longitude_deg": "125.619264", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DVO", + "municipality": "Malita", + "scheduled_service": "no", + "gps_code": "RP17", + "local_code": "RP17" + }, + { + "id": "324042", + "ident": "RPBL", + "type": "small_airport", + "name": "Balesin Island Airport", + "latitude_deg": "14.419365", + "longitude_deg": "122.039402", + "elevation_ft": "25", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BAS", + "municipality": "Balesin", + "scheduled_service": "no", + "gps_code": "RPLE", + "iata_code": "BSI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Balesin_Island_Airport", + "keywords": "RPBL" + }, + { + "id": "5685", + "ident": "RPLA", + "type": "small_airport", + "name": "Pinamalayan Airport", + "latitude_deg": "12.9858", + "longitude_deg": "121.426003", + "elevation_ft": "92", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MDR", + "municipality": "Pinamalayan", + "scheduled_service": "no", + "gps_code": "RPLA", + "local_code": "RP11" + }, + { + "id": "5686", + "ident": "RPLB", + "type": "medium_airport", + "name": "Subic Bay International Airport / Naval Air Station Cubi Point", + "latitude_deg": "14.7944", + "longitude_deg": "120.271004", + "elevation_ft": "64", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZMB", + "municipality": "Olongapo", + "scheduled_service": "yes", + "gps_code": "RPLB", + "iata_code": "SFS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Subic_Bay_International_Airport", + "keywords": "Paliparang Pandaigdig ng Look ng Subic, Naval Air Station Cubi Point" + }, + { + "id": "5687", + "ident": "RPLC", + "type": "medium_airport", + "name": "Clark International Airport / Clark Air Base", + "latitude_deg": "15.186", + "longitude_deg": "120.559998", + "elevation_ft": "484", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAM", + "municipality": "Mabalacat", + "scheduled_service": "yes", + "gps_code": "RPLC", + "iata_code": "CRK", + "home_link": "http://www.clarkairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clark_International_Airport", + "keywords": "Diosdado Macapagal International Airport, Paliparang Pandaigdig ng Diosdado Macapagal, Pangyatung Sulapawan ning Clark, Paliparang Pandaigdig ng Clark" + }, + { + "id": "5688", + "ident": "RPLI", + "type": "medium_airport", + "name": "Laoag International Airport", + "latitude_deg": "18.1781005859375", + "longitude_deg": "120.53199768066406", + "elevation_ft": "25", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ILN", + "municipality": "Laoag City", + "scheduled_service": "yes", + "gps_code": "RPLI", + "iata_code": "LAO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Laoag_International_Airport" + }, + { + "id": "32220", + "ident": "RPLJ", + "type": "small_airport", + "name": "Jomalig Island Airport", + "latitude_deg": "14.704161", + "longitude_deg": "122.331133", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-QUE", + "municipality": "Jomalig", + "scheduled_service": "no", + "gps_code": "RPLJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jomalig_Airport", + "keywords": "Jomalig" + }, + { + "id": "5689", + "ident": "RPLL", + "type": "large_airport", + "name": "Ninoy Aquino International Airport", + "latitude_deg": "14.5086", + "longitude_deg": "121.019997", + "elevation_ft": "75", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-00", + "municipality": "Manila", + "scheduled_service": "yes", + "gps_code": "RPLL", + "iata_code": "MNL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ninoy_Aquino_International_Airport", + "keywords": "Manila International Airport" + }, + { + "id": "46514", + "ident": "RPLN", + "type": "small_airport", + "name": "Palanan Community Airport", + "latitude_deg": "17.065667", + "longitude_deg": "122.427671", + "elevation_ft": "52", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ISA", + "municipality": "Palanan", + "scheduled_service": "yes", + "gps_code": "RPLN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palanan_Airport", + "keywords": "RPPA, Palanan" + }, + { + "id": "30869", + "ident": "RPLO", + "type": "small_airport", + "name": "Cuyo Airport", + "latitude_deg": "10.858099937438965", + "longitude_deg": "121.06900024414062", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "municipality": "Cuyo", + "scheduled_service": "yes", + "gps_code": "RPLO", + "iata_code": "CYU" + }, + { + "id": "5690", + "ident": "RPLP", + "type": "closed", + "name": "Legazpi City International Airport", + "latitude_deg": "13.1575", + "longitude_deg": "123.735", + "elevation_ft": "66", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ALB", + "municipality": "Legazpi City", + "scheduled_service": "yes", + "wikipedia_link": "https://en.wikipedia.org/wiki/Legazpi_Airport", + "keywords": "RPLP" + }, + { + "id": "336813", + "ident": "RPLQ", + "type": "small_airport", + "name": "Colonel Ernesto Rabina Air Base", + "latitude_deg": "15.317683", + "longitude_deg": "120.422891", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-TAR", + "municipality": "Capas", + "scheduled_service": "no", + "gps_code": "RPLQ", + "keywords": "Crow Valley Gunnery Range" + }, + { + "id": "46549", + "ident": "RPLR", + "type": "small_airport", + "name": "Carmen (Rosales) Airstrip", + "latitude_deg": "15.884074", + "longitude_deg": "120.601237", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAN", + "municipality": "Rosales", + "scheduled_service": "no", + "gps_code": "RPLR" + }, + { + "id": "5691", + "ident": "RPLS", + "type": "medium_airport", + "name": "Danilo Atienza Air Base", + "latitude_deg": "14.4954", + "longitude_deg": "120.903999", + "elevation_ft": "8", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAV", + "municipality": "Cavite", + "scheduled_service": "no", + "gps_code": "RPLS", + "iata_code": "SGL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Danilo_Atienza_Air_Base", + "keywords": "NSP, Sangley Point Air Base, Sangley Point International Airport" + }, + { + "id": "32221", + "ident": "RPLT", + "type": "medium_airport", + "name": "Itbayat Airport", + "latitude_deg": "20.722521", + "longitude_deg": "121.809969", + "elevation_ft": "328", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTN", + "municipality": "Itbayat", + "scheduled_service": "yes", + "gps_code": "RPLT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jorge_Abad_Airport", + "keywords": "Jorge Abad Airport" + }, + { + "id": "5692", + "ident": "RPLU", + "type": "medium_airport", + "name": "Lubang Airport", + "latitude_deg": "13.855400085449219", + "longitude_deg": "120.1050033569336", + "elevation_ft": "43", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MDC", + "scheduled_service": "no", + "gps_code": "RPLU", + "iata_code": "LBX" + }, + { + "id": "5693", + "ident": "RPLV", + "type": "small_airport", + "name": "Fort Magsaysay Airport", + "latitude_deg": "15.4347", + "longitude_deg": "121.091003", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NUE", + "municipality": "Santa Rosa", + "scheduled_service": "no", + "gps_code": "RPLV", + "keywords": "Fort Magsaysay" + }, + { + "id": "32222", + "ident": "RPLX", + "type": "small_airport", + "name": "Corregidor Airport (Kindley Field)", + "latitude_deg": "14.3913", + "longitude_deg": "120.607002", + "elevation_ft": "102", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAV", + "municipality": "Corregidor", + "scheduled_service": "no", + "gps_code": "RPLX" + }, + { + "id": "32223", + "ident": "RPLY", + "type": "small_airport", + "name": "Alabat Island Airport", + "latitude_deg": "14.232", + "longitude_deg": "121.929001", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-QUE", + "municipality": "Perez", + "scheduled_service": "no", + "gps_code": "RPLY" + }, + { + "id": "42465", + "ident": "RPLZ", + "type": "small_airport", + "name": "Sorsogon Airport", + "latitude_deg": "13.006983", + "longitude_deg": "124.025731", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SOR", + "municipality": "Sorsogon", + "scheduled_service": "no", + "gps_code": "RPLZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sorsogon_Airport", + "keywords": "Sorsogon" + }, + { + "id": "5694", + "ident": "RPMA", + "type": "medium_airport", + "name": "Allah Valley Airport", + "latitude_deg": "6.367903", + "longitude_deg": "124.752431", + "elevation_ft": "659", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SCO", + "municipality": "Surallah", + "scheduled_service": "no", + "gps_code": "RPMA", + "iata_code": "AAV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Allah_Valley_Airport", + "keywords": "Alah Valley Airport" + }, + { + "id": "5695", + "ident": "RPMB", + "type": "medium_airport", + "name": "Rajah Buayan Air Base", + "latitude_deg": "6.10644006729", + "longitude_deg": "125.23500061", + "elevation_ft": "28", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SCO", + "municipality": "General Santos City", + "scheduled_service": "no", + "gps_code": "RPMB", + "keywords": "GES, Paliparang Pandaigdig ng Heneral Santos, Tugpahanang Internasyonal sa Heneral Santos" + }, + { + "id": "5696", + "ident": "RPMC", + "type": "medium_airport", + "name": "Awang Airport", + "latitude_deg": "7.164753", + "longitude_deg": "124.209938", + "elevation_ft": "189", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MDN", + "municipality": "Datu Odin Sinsuat", + "scheduled_service": "yes", + "gps_code": "RPMC", + "iata_code": "CBO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Awang_Airport" + }, + { + "id": "5697", + "ident": "RPMD", + "type": "large_airport", + "name": "Francisco Bangoy International Airport", + "latitude_deg": "7.12552", + "longitude_deg": "125.646004", + "elevation_ft": "96", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAS", + "municipality": "Davao", + "scheduled_service": "yes", + "gps_code": "RPMD", + "iata_code": "DVO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Francisco_Bangoy_International_Airport", + "keywords": "Davao International Airport" + }, + { + "id": "5698", + "ident": "RPME", + "type": "medium_airport", + "name": "Bancasi Airport", + "latitude_deg": "8.9515", + "longitude_deg": "125.4788", + "elevation_ft": "141", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AGN", + "municipality": "Butuan", + "scheduled_service": "yes", + "gps_code": "RPME", + "iata_code": "BXU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bancasi_Airport" + }, + { + "id": "5699", + "ident": "RPMF", + "type": "medium_airport", + "name": "Bislig Airport", + "latitude_deg": "8.19594955444336", + "longitude_deg": "126.3219985961914", + "elevation_ft": "12", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SUR", + "scheduled_service": "no", + "gps_code": "RPMF", + "iata_code": "BPH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bislig_Airport" + }, + { + "id": "5700", + "ident": "RPMG", + "type": "medium_airport", + "name": "Dipolog Airport", + "latitude_deg": "8.60198349877", + "longitude_deg": "123.341875076", + "elevation_ft": "12", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZAN", + "municipality": "Dipolog City", + "scheduled_service": "yes", + "gps_code": "RPMG", + "iata_code": "DPL", + "home_link": "http://www.dipologcity.com/AccommodationsDipolog%20Airport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dipolog_Airport" + }, + { + "id": "5701", + "ident": "RPMH", + "type": "medium_airport", + "name": "Camiguin Airport", + "latitude_deg": "9.253894", + "longitude_deg": "124.709115", + "elevation_ft": "53", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAM", + "municipality": "Mambajao", + "scheduled_service": "yes", + "gps_code": "RPMH", + "iata_code": "CGM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camiguin_Airport" + }, + { + "id": "5702", + "ident": "RPMI", + "type": "small_airport", + "name": "Maria Cristina Airport", + "latitude_deg": "8.13049", + "longitude_deg": "124.214996", + "elevation_ft": "1300", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LAN", + "municipality": "Iligan", + "scheduled_service": "no", + "gps_code": "RPMI", + "iata_code": "IGN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maria_Cristina_Airport", + "keywords": "Iligan Airport" + }, + { + "id": "5703", + "ident": "RPMJ", + "type": "medium_airport", + "name": "Jolo Airport", + "latitude_deg": "6.0536699295043945", + "longitude_deg": "121.01100158691406", + "elevation_ft": "118", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SLU", + "scheduled_service": "yes", + "gps_code": "RPMJ", + "iata_code": "JOL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jolo_Airport" + }, + { + "id": "5704", + "ident": "RPML", + "type": "small_airport", + "name": "Lumbia Airfield", + "latitude_deg": "8.41562", + "longitude_deg": "124.611", + "elevation_ft": "601", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MSR", + "municipality": "Cagayan de Oro", + "scheduled_service": "no", + "gps_code": "RPML", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lumbia_Airfield", + "keywords": "CGY, Cagayan de Oro Airport, Lumbia Airport" + }, + { + "id": "31919", + "ident": "RPMM", + "type": "small_airport", + "name": "Malabang Airport", + "latitude_deg": "7.617219924926758", + "longitude_deg": "124.05899810791016", + "elevation_ft": "27", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LAS", + "municipality": "Malabang", + "scheduled_service": "no", + "gps_code": "RPMM", + "iata_code": "MLP" + }, + { + "id": "5705", + "ident": "RPMN", + "type": "medium_airport", + "name": "Sanga Sanga Airport", + "latitude_deg": "5.046991", + "longitude_deg": "119.742996", + "elevation_ft": "15", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-TAW", + "scheduled_service": "yes", + "gps_code": "RPMN", + "iata_code": "TWT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sanga-Sanga_Airport", + "keywords": "SGS" + }, + { + "id": "5706", + "ident": "RPMO", + "type": "medium_airport", + "name": "Labo Airport", + "latitude_deg": "8.178509712219238", + "longitude_deg": "123.84200286865234", + "elevation_ft": "75", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MSC", + "municipality": "Ozamiz City", + "scheduled_service": "no", + "gps_code": "RPMO", + "iata_code": "OZC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Labo_Airport", + "keywords": "Barangay Labo" + }, + { + "id": "5707", + "ident": "RPMP", + "type": "medium_airport", + "name": "Pagadian Airport", + "latitude_deg": "7.83073144787", + "longitude_deg": "123.461179733", + "elevation_ft": "5", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZAS", + "municipality": "Pagadian City", + "scheduled_service": "yes", + "gps_code": "RPMP", + "iata_code": "PAG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pagadian_Airport" + }, + { + "id": "5708", + "ident": "RPMQ", + "type": "medium_airport", + "name": "Mati National Airport", + "latitude_deg": "6.949091", + "longitude_deg": "126.27368", + "elevation_ft": "156", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-DAO", + "municipality": "Mati", + "scheduled_service": "no", + "gps_code": "RPMQ", + "iata_code": "MXI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mati_Airport", + "keywords": "Mati, Imelda R. Marcos" + }, + { + "id": "5709", + "ident": "RPMR", + "type": "medium_airport", + "name": "General Santos International Airport", + "latitude_deg": "6.05800008774", + "longitude_deg": "125.096000671", + "elevation_ft": "505", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SCO", + "municipality": "General Santos", + "scheduled_service": "yes", + "gps_code": "RPMR", + "iata_code": "GES", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Santos_International_Airport", + "keywords": "Tambler Airport" + }, + { + "id": "5710", + "ident": "RPMS", + "type": "medium_airport", + "name": "Surigao Airport", + "latitude_deg": "9.755838325629998", + "longitude_deg": "125.480947495", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SUN", + "municipality": "Surigao City", + "scheduled_service": "yes", + "gps_code": "RPMS", + "iata_code": "SUG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Surigao_Airport" + }, + { + "id": "30818", + "ident": "RPMU", + "type": "small_airport", + "name": "Cagayan de Sulu Airport", + "latitude_deg": "7.013999938964844", + "longitude_deg": "118.49600219726562", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-TAW", + "municipality": "Mapun", + "scheduled_service": "no", + "gps_code": "RPMU", + "iata_code": "CDY" + }, + { + "id": "31683", + "ident": "RPMV", + "type": "small_airport", + "name": "Ipil Airport", + "latitude_deg": "7.785560131072998", + "longitude_deg": "122.60199737548828", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZSI", + "municipality": "Ipil", + "scheduled_service": "no", + "gps_code": "RPMV", + "iata_code": "IPE" + }, + { + "id": "5711", + "ident": "RPMW", + "type": "medium_airport", + "name": "Tandag Airport", + "latitude_deg": "9.072002", + "longitude_deg": "126.17132", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SUR", + "municipality": "Tandag", + "scheduled_service": "yes", + "gps_code": "RPMW", + "iata_code": "TDG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tandag_Airport" + }, + { + "id": "309718", + "ident": "RPMX", + "type": "small_airport", + "name": "Liloy Airport", + "latitude_deg": "8.102059", + "longitude_deg": "122.670422", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZAN", + "municipality": "Liloy", + "scheduled_service": "no", + "gps_code": "RPMX" + }, + { + "id": "32224", + "ident": "RPMY", + "type": "closed", + "name": "Malaybalay Airport", + "latitude_deg": "8.14166", + "longitude_deg": "125.117", + "elevation_ft": "2051", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BUK", + "municipality": "Malaybalay City", + "scheduled_service": "no", + "keywords": "RPMY" + }, + { + "id": "5712", + "ident": "RPMZ", + "type": "medium_airport", + "name": "Zamboanga International Airport", + "latitude_deg": "6.922420024871826", + "longitude_deg": "122.05999755859375", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZAS", + "municipality": "Zamboanga City", + "scheduled_service": "yes", + "gps_code": "RPMZ", + "iata_code": "ZAM", + "home_link": "http://www.zamboanga.net/airportinsert.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zamboanga_International_Airport" + }, + { + "id": "5713", + "ident": "RPNS", + "type": "small_airport", + "name": "Siargao Airport", + "latitude_deg": "9.8591", + "longitude_deg": "126.014", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SUN", + "municipality": "Del Carmen", + "scheduled_service": "yes", + "gps_code": "RPNS", + "iata_code": "IAO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Siargao_Airport", + "keywords": "Sayak Airport" + }, + { + "id": "302305", + "ident": "RPSB", + "type": "small_airport", + "name": "Bantayan Airport", + "latitude_deg": "11.1624", + "longitude_deg": "123.7848", + "elevation_ft": "60", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CEB", + "scheduled_service": "no", + "gps_code": "RPSB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bantayan_Airport" + }, + { + "id": "308149", + "ident": "RPSD", + "type": "small_airport", + "name": "Cesar Lim Rodriguez (Taytay-Sandoval) Airport", + "latitude_deg": "11.05065", + "longitude_deg": "119.519266", + "elevation_ft": "80", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "municipality": "Taytay", + "scheduled_service": "yes", + "gps_code": "RPSD", + "iata_code": "RZP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taytay_Airport" + }, + { + "id": "5714", + "ident": "RPSM", + "type": "small_airport", + "name": "Maasin Airport", + "latitude_deg": "10.185695", + "longitude_deg": "124.783244", + "elevation_ft": "328", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SLE", + "municipality": "Maasin", + "scheduled_service": "no", + "gps_code": "RPSM" + }, + { + "id": "309716", + "ident": "RPSN", + "type": "small_airport", + "name": "Ubay Airport", + "latitude_deg": "10.059037", + "longitude_deg": "124.425573", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BOH", + "municipality": "Ubay", + "scheduled_service": "no", + "gps_code": "RPSN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ubay_Airport" + }, + { + "id": "336116", + "ident": "RPSP", + "type": "medium_airport", + "name": "Bohol-Panglao International Airport", + "latitude_deg": "9.573045", + "longitude_deg": "123.770143", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BOH", + "municipality": "Panglao", + "scheduled_service": "yes", + "gps_code": "RPSP", + "iata_code": "TAG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bohol%E2%80%93Panglao_International_Airport" + }, + { + "id": "333098", + "ident": "RPSV", + "type": "small_airport", + "name": "San Vicente Airport", + "latitude_deg": "10.524298", + "longitude_deg": "119.272899", + "elevation_ft": "24", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "municipality": "San Vicente", + "scheduled_service": "yes", + "gps_code": "RPSV", + "iata_code": "SWL", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Vicente_Airport" + }, + { + "id": "313723", + "ident": "RPUA", + "type": "small_airport", + "name": "Pamalican Airstrip", + "latitude_deg": "11.35946", + "longitude_deg": "120.72668", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "municipality": "Agutaya", + "scheduled_service": "no", + "gps_code": "RPUA", + "keywords": "Amanpulo" + }, + { + "id": "5715", + "ident": "RPUB", + "type": "medium_airport", + "name": "Loakan Airport", + "latitude_deg": "16.375099182128906", + "longitude_deg": "120.62000274658203", + "elevation_ft": "4251", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BEN", + "municipality": "Baguio City", + "scheduled_service": "yes", + "gps_code": "RPUB", + "iata_code": "BAG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Loakan_Airport", + "keywords": "Baguio Airport" + }, + { + "id": "5716", + "ident": "RPUD", + "type": "medium_airport", + "name": "Daet Airport", + "latitude_deg": "14.129199981689453", + "longitude_deg": "122.9800033569336", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAN", + "municipality": "Daet", + "scheduled_service": "no", + "gps_code": "RPUD", + "iata_code": "DTE" + }, + { + "id": "313724", + "ident": "RPUE", + "type": "small_airport", + "name": "Semirara Airport", + "latitude_deg": "12.07522", + "longitude_deg": "121.38847", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ANT", + "municipality": "Caluya", + "scheduled_service": "no", + "gps_code": "RPUE", + "keywords": "Semirara, Caluya" + }, + { + "id": "5717", + "ident": "RPUF", + "type": "small_airport", + "name": "Basa Air Base", + "latitude_deg": "14.98724", + "longitude_deg": "120.492554", + "elevation_ft": "151", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAM", + "municipality": "Floridablanca", + "scheduled_service": "no", + "gps_code": "RPUF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Basa_Air_Base", + "keywords": "Lieutenant Cesar Basa Air Base" + }, + { + "id": "5718", + "ident": "RPUG", + "type": "small_airport", + "name": "Lingayen Airport", + "latitude_deg": "16.034966", + "longitude_deg": "120.242191", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PAN", + "municipality": "Lingayen", + "scheduled_service": "no", + "gps_code": "RPUG" + }, + { + "id": "5719", + "ident": "RPUH", + "type": "medium_airport", + "name": "San Jose Airport", + "latitude_deg": "12.361499786399998", + "longitude_deg": "121.04699707", + "elevation_ft": "14", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MDC", + "municipality": "San Jose", + "scheduled_service": "yes", + "gps_code": "RPUH", + "iata_code": "SJI", + "wikipedia_link": "https://en.wikipedia.org/wiki/McGuire_Field", + "keywords": "McGuire Field" + }, + { + "id": "32226", + "ident": "RPUI", + "type": "small_airport", + "name": "Iba Airport", + "latitude_deg": "15.3247556686", + "longitude_deg": "119.969497681", + "elevation_ft": "11", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZMB", + "municipality": "Iba", + "scheduled_service": "no", + "gps_code": "RPUI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iba_Airport", + "keywords": "Paliparan ng Iba" + }, + { + "id": "32227", + "ident": "RPUJ", + "type": "small_airport", + "name": "Castillejos - Jesus F Magsaysay Airfield", + "latitude_deg": "14.94634", + "longitude_deg": "120.190194", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ZMB", + "municipality": "Castillejos", + "scheduled_service": "no", + "gps_code": "RPUJ", + "keywords": "Castillejos" + }, + { + "id": "32228", + "ident": "RPUK", + "type": "small_airport", + "name": "Calapan National Airport", + "latitude_deg": "13.422641", + "longitude_deg": "121.201687", + "elevation_ft": "11", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MDR", + "municipality": "Calapan", + "scheduled_service": "no", + "gps_code": "RPUK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Calapan_Airport", + "keywords": "Calapan, Mindoro" + }, + { + "id": "5720", + "ident": "RPUL", + "type": "small_airport", + "name": "Basilio Fernando Air Base", + "latitude_deg": "13.955", + "longitude_deg": "121.125", + "elevation_ft": "1220", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTG", + "municipality": "Lipa", + "scheduled_service": "no", + "gps_code": "RPUL" + }, + { + "id": "5721", + "ident": "RPUM", + "type": "medium_airport", + "name": "Mamburao Airport", + "latitude_deg": "13.208048", + "longitude_deg": "120.605457", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MDC", + "municipality": "Mamburao", + "scheduled_service": "no", + "gps_code": "RPUM", + "iata_code": "MBO" + }, + { + "id": "5722", + "ident": "RPUN", + "type": "medium_airport", + "name": "Naga Airport", + "latitude_deg": "13.58489990234375", + "longitude_deg": "123.2699966430664", + "elevation_ft": "142", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAS", + "municipality": "Naga", + "scheduled_service": "yes", + "gps_code": "RPUN", + "iata_code": "WNP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naga_Airport" + }, + { + "id": "5723", + "ident": "RPUO", + "type": "medium_airport", + "name": "Basco Airport", + "latitude_deg": "20.4513", + "longitude_deg": "121.980003", + "elevation_ft": "291", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BTN", + "municipality": "Basco", + "scheduled_service": "yes", + "gps_code": "RPUO", + "iata_code": "BSO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Basco_Airport" + }, + { + "id": "325639", + "ident": "RPUP", + "type": "small_airport", + "name": "Jose Panganiban (Larap) Airstrip", + "latitude_deg": "14.293288", + "longitude_deg": "122.645659", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAN", + "municipality": "Larap", + "scheduled_service": "no", + "gps_code": "RPUP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jose_Panganiban,_Camarines_Norte#Airport_and_Seaports", + "keywords": "Jose Panganiban, Larap" + }, + { + "id": "5724", + "ident": "RPUQ", + "type": "small_airport", + "name": "Vigan Airport", + "latitude_deg": "17.555299758911133", + "longitude_deg": "120.35600280761719", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ILS", + "municipality": "Vigan City", + "scheduled_service": "no", + "gps_code": "RPUQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mindoro_Airport" + }, + { + "id": "5725", + "ident": "RPUR", + "type": "medium_airport", + "name": "Dr Juan C Angara Airport", + "latitude_deg": "15.729309", + "longitude_deg": "121.500034", + "elevation_ft": "108", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AUR", + "municipality": "Baler", + "scheduled_service": "yes", + "gps_code": "RPUR", + "iata_code": "BQA", + "keywords": "Baler, Dr. Juan C. Angara" + }, + { + "id": "5726", + "ident": "RPUS", + "type": "medium_airport", + "name": "San Fernando Airport", + "latitude_deg": "16.595600128173828", + "longitude_deg": "120.3030014038086", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LUN", + "scheduled_service": "yes", + "gps_code": "RPUS", + "iata_code": "SFE", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Fernando_Airport" + }, + { + "id": "5727", + "ident": "RPUT", + "type": "medium_airport", + "name": "Tuguegarao Airport", + "latitude_deg": "17.6433676823", + "longitude_deg": "121.733150482", + "elevation_ft": "70", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAG", + "municipality": "Tuguegarao City", + "scheduled_service": "yes", + "gps_code": "RPUT", + "iata_code": "TUG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tuguegarao_Airport", + "keywords": "Tugegarao" + }, + { + "id": "32229", + "ident": "RPUU", + "type": "small_airport", + "name": "Bulan Airport", + "latitude_deg": "12.684200286865234", + "longitude_deg": "123.87799835205078", + "elevation_ft": "3937", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SOR", + "municipality": "Bulan", + "scheduled_service": "no", + "gps_code": "RPUU" + }, + { + "id": "5728", + "ident": "RPUV", + "type": "medium_airport", + "name": "Virac Airport", + "latitude_deg": "13.576399803161621", + "longitude_deg": "124.20600128173828", + "elevation_ft": "121", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAT", + "municipality": "Virac", + "scheduled_service": "yes", + "gps_code": "RPUV", + "iata_code": "VRC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Virac_Airport" + }, + { + "id": "5729", + "ident": "RPUW", + "type": "medium_airport", + "name": "Marinduque Airport", + "latitude_deg": "13.361000061035156", + "longitude_deg": "121.82599639892578", + "elevation_ft": "32", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MAD", + "municipality": "Gasan", + "scheduled_service": "no", + "gps_code": "RPUW", + "iata_code": "MRQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marinduque_Airport" + }, + { + "id": "32230", + "ident": "RPUX", + "type": "small_airport", + "name": "Plaridel Airport", + "latitude_deg": "14.890855", + "longitude_deg": "120.852914", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BUL", + "municipality": "Plaridel", + "scheduled_service": "no", + "gps_code": "RPUX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Plaridel_Airport", + "keywords": "Plaridel" + }, + { + "id": "5730", + "ident": "RPUY", + "type": "medium_airport", + "name": "Cauayan Airport", + "latitude_deg": "16.9298992157", + "longitude_deg": "121.752998352", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ISA", + "municipality": "Cauayan City", + "scheduled_service": "yes", + "gps_code": "RPUY", + "iata_code": "CYZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cauayan_Airport" + }, + { + "id": "5731", + "ident": "RPUZ", + "type": "small_airport", + "name": "Bagabag Airport", + "latitude_deg": "16.6192", + "longitude_deg": "121.251999", + "elevation_ft": "820", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NUV", + "scheduled_service": "no", + "gps_code": "RPUZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bagabag_Airport" + }, + { + "id": "314516", + "ident": "RPV", + "type": "small_airport", + "name": "Roper Valley Airport", + "latitude_deg": "-14.9215", + "longitude_deg": "134.05", + "elevation_ft": "237", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Roper Valley", + "scheduled_service": "no", + "iata_code": "RPV" + }, + { + "id": "5732", + "ident": "RPVA", + "type": "medium_airport", + "name": "Daniel Z. Romualdez Airport", + "latitude_deg": "11.228035", + "longitude_deg": "125.027761", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LEY", + "municipality": "Tacloban City", + "scheduled_service": "yes", + "gps_code": "RPVA", + "iata_code": "TAC", + "local_code": "DZR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Daniel_Z._Romualdez_Airport", + "keywords": "Tacloban, Daniel Z. Romualdez" + }, + { + "id": "35178", + "ident": "RPVB", + "type": "medium_airport", + "name": "Bacolod-Silay Airport", + "latitude_deg": "10.7764", + "longitude_deg": "123.014999", + "elevation_ft": "82", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NEC", + "municipality": "Bacolod City", + "scheduled_service": "yes", + "gps_code": "RPVB", + "iata_code": "BCD", + "home_link": "http://www.bacolod-silayairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bacolod%E2%80%93Silay_Airport" + }, + { + "id": "5734", + "ident": "RPVC", + "type": "medium_airport", + "name": "Calbayog Airport", + "latitude_deg": "12.072699546813965", + "longitude_deg": "124.54499816894531", + "elevation_ft": "12", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-WSA", + "municipality": "Calbayog City", + "scheduled_service": "yes", + "gps_code": "RPVC", + "iata_code": "CYP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Calbayog_Airport" + }, + { + "id": "5735", + "ident": "RPVD", + "type": "medium_airport", + "name": "Sibulan Airport", + "latitude_deg": "9.334183", + "longitude_deg": "123.30191", + "elevation_ft": "15", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NER", + "municipality": "Dumaguete City", + "scheduled_service": "yes", + "gps_code": "RPVD", + "iata_code": "DGT", + "home_link": "https://dumaguete.com/dumaguete-airport-sibulan/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sibulan_Airport" + }, + { + "id": "5736", + "ident": "RPVE", + "type": "medium_airport", + "name": "Godofredo P. Ramos Airport", + "latitude_deg": "11.9245", + "longitude_deg": "121.954002", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AKL", + "municipality": "Malay", + "scheduled_service": "yes", + "gps_code": "RPVE", + "iata_code": "MPH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Godofredo_P._Ramos_Airport", + "keywords": "Godofredo P. Ramos Airport" + }, + { + "id": "5737", + "ident": "RPVF", + "type": "medium_airport", + "name": "Catarman National Airport", + "latitude_deg": "12.50161", + "longitude_deg": "124.635258", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NSA", + "municipality": "Catarman", + "scheduled_service": "yes", + "gps_code": "RPVF", + "iata_code": "CRM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Catarman_National_Airport" + }, + { + "id": "5738", + "ident": "RPVG", + "type": "small_airport", + "name": "Guiuan Airport", + "latitude_deg": "11.0354995728", + "longitude_deg": "125.741996765", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-EAS", + "municipality": "Guiuan", + "scheduled_service": "no", + "gps_code": "RPVG", + "local_code": "GUI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guiuan_Airport" + }, + { + "id": "32231", + "ident": "RPVH", + "type": "small_airport", + "name": "Hilongos Airport", + "latitude_deg": "10.37567", + "longitude_deg": "124.7611", + "elevation_ft": "12", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LEY", + "municipality": "Hilongos", + "scheduled_service": "no", + "gps_code": "RPVH" + }, + { + "id": "5739", + "ident": "RPVI", + "type": "medium_airport", + "name": "Iloilo International Airport", + "latitude_deg": "10.833017", + "longitude_deg": "122.493358", + "elevation_ft": "27", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ILI", + "municipality": "Iloilo (Cabatuan)", + "scheduled_service": "yes", + "gps_code": "RPVI", + "iata_code": "ILO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iloilo_International_Airport" + }, + { + "id": "5740", + "ident": "RPVJ", + "type": "medium_airport", + "name": "Moises R. Espinosa Airport", + "latitude_deg": "12.369682", + "longitude_deg": "123.630095", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MAS", + "municipality": "Masbate", + "scheduled_service": "yes", + "gps_code": "RPVJ", + "iata_code": "MBT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Masbate_Airport", + "keywords": "Masbate, Moises R. Espinoza" + }, + { + "id": "5741", + "ident": "RPVK", + "type": "medium_airport", + "name": "Kalibo International Airport", + "latitude_deg": "11.679400444", + "longitude_deg": "122.375999451", + "elevation_ft": "14", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-AKL", + "municipality": "Kalibo", + "scheduled_service": "yes", + "gps_code": "RPVK", + "iata_code": "KLO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kalibo_International_Airport" + }, + { + "id": "32232", + "ident": "RPVL", + "type": "small_airport", + "name": "Wasig Airport", + "latitude_deg": "12.536100387573242", + "longitude_deg": "121.48100280761719", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-MDR", + "municipality": "Mansalay", + "scheduled_service": "no", + "gps_code": "RPVL" + }, + { + "id": "5742", + "ident": "RPVM", + "type": "large_airport", + "name": "Mactan Cebu International Airport", + "latitude_deg": "10.307499885559", + "longitude_deg": "123.97899627686", + "elevation_ft": "31", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CEB", + "municipality": "Lapu-Lapu City", + "scheduled_service": "yes", + "gps_code": "RPVM", + "iata_code": "CEB", + "home_link": "http://www.mactan-cebuairport.com.ph/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mactan-Cebu_International_Airport" + }, + { + "id": "5743", + "ident": "RPVO", + "type": "medium_airport", + "name": "Ormoc Airport", + "latitude_deg": "11.057999610900879", + "longitude_deg": "124.56500244140625", + "elevation_ft": "83", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-LEY", + "municipality": "Ormoc City", + "scheduled_service": "no", + "gps_code": "RPVO", + "iata_code": "OMC" + }, + { + "id": "5744", + "ident": "RPVP", + "type": "medium_airport", + "name": "Puerto Princesa Airport", + "latitude_deg": "9.742119789123535", + "longitude_deg": "118.75900268554688", + "elevation_ft": "71", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "municipality": "Puerto Princesa City", + "scheduled_service": "yes", + "gps_code": "RPVP", + "iata_code": "PPS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Puerto_Princesa_Airport" + }, + { + "id": "309715", + "ident": "RPVQ", + "type": "small_airport", + "name": "Biliran Airport", + "latitude_deg": "11.5159178299", + "longitude_deg": "124.428985119", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BIL", + "scheduled_service": "no", + "gps_code": "RPVQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Biliran_Airport" + }, + { + "id": "5745", + "ident": "RPVR", + "type": "medium_airport", + "name": "Roxas Airport", + "latitude_deg": "11.597700119018555", + "longitude_deg": "122.75199890136719", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-CAP", + "municipality": "Roxas City", + "scheduled_service": "yes", + "gps_code": "RPVR", + "iata_code": "RXS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roxas_Airport" + }, + { + "id": "5746", + "ident": "RPVS", + "type": "medium_airport", + "name": "Evelio Javier Airport", + "latitude_deg": "10.766644", + "longitude_deg": "121.932506", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ANT", + "municipality": "San Jose", + "scheduled_service": "no", + "gps_code": "RPVS", + "iata_code": "EUQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Evelio_Javier_Airport", + "keywords": "Antique Airport" + }, + { + "id": "5747", + "ident": "RPVT", + "type": "closed", + "name": "Tagbilaran Airport", + "latitude_deg": "9.665442", + "longitude_deg": "123.853533", + "elevation_ft": "38", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BOH", + "municipality": "Tagbilaran City", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tagbilaran_Airport", + "keywords": "RPVT, TAG" + }, + { + "id": "5748", + "ident": "RPVU", + "type": "medium_airport", + "name": "Tugdan Airport", + "latitude_deg": "12.3109998703", + "longitude_deg": "122.084999084", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-ROM", + "municipality": "Tablas Island", + "scheduled_service": "yes", + "gps_code": "RPVU", + "iata_code": "TBH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tugdan_Airport", + "keywords": "Romblon Airport, Alcantara, Barangay Tugdan, Tablas Airport" + }, + { + "id": "5749", + "ident": "RPVV", + "type": "medium_airport", + "name": "Francisco B. Reyes Airport", + "latitude_deg": "12.1215000153", + "longitude_deg": "120.099998474", + "elevation_ft": "148", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-PLW", + "municipality": "Coron", + "scheduled_service": "yes", + "gps_code": "RPVV", + "iata_code": "USU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Busuanga_Airport", + "keywords": "Busuanga Airport" + }, + { + "id": "5750", + "ident": "RPVW", + "type": "small_airport", + "name": "Borongan Airport", + "latitude_deg": "11.674300193799999", + "longitude_deg": "125.478996277", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-EAS", + "municipality": "Borongan City", + "scheduled_service": "no", + "gps_code": "RPVW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Borongan_Airport" + }, + { + "id": "302307", + "ident": "RPVY", + "type": "small_airport", + "name": "Catbalogan Airport", + "latitude_deg": "11.81", + "longitude_deg": "124.83", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-WSA", + "scheduled_service": "no", + "gps_code": "RPVY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Catbalogan_Airport" + }, + { + "id": "309713", + "ident": "RPVZ", + "type": "small_airport", + "name": "Siquijor Airport", + "latitude_deg": "9.212275", + "longitude_deg": "123.470685", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SIG", + "municipality": "Siquijor", + "scheduled_service": "no", + "gps_code": "RPVZ" + }, + { + "id": "314540", + "ident": "RRM", + "type": "small_airport", + "name": "Marromeu Airport", + "latitude_deg": "-18.319259", + "longitude_deg": "35.949501", + "elevation_ft": "39", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-S", + "municipality": "Marromeu", + "scheduled_service": "no", + "iata_code": "RRM" + }, + { + "id": "34926", + "ident": "RS-0001", + "type": "small_airport", + "name": "Bela Crkva Airport", + "latitude_deg": "44.925166", + "longitude_deg": "21.370155", + "elevation_ft": "246", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-04", + "municipality": "Bela Crkva", + "scheduled_service": "no", + "gps_code": "LYBC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bela_Crkva_Airport" + }, + { + "id": "34927", + "ident": "RS-0002", + "type": "small_airport", + "name": "Bojnik Airport", + "latitude_deg": "42.997299", + "longitude_deg": "21.721901", + "elevation_ft": "929", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-23", + "municipality": "Bojnik", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bojnik_Airport" + }, + { + "id": "301357", + "ident": "RS-0003", + "type": "small_airport", + "name": "Zemun Polje 13 May Airfield", + "latitude_deg": "44.876444", + "longitude_deg": "20.305917", + "elevation_ft": "257", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-00", + "municipality": "Zemun Polje", + "scheduled_service": "no", + "gps_code": "LYZP", + "home_link": "http://letenje.rs/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zemun_Polje_Airport" + }, + { + "id": "317132", + "ident": "RS-0004", + "type": "closed", + "name": "Sjenica Airport", + "latitude_deg": "43.274526", + "longitude_deg": "20.050403", + "elevation_ft": "3314", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-16", + "municipality": "Sjenica", + "scheduled_service": "no", + "gps_code": "LYSJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sjenica_Airport", + "keywords": "војни аеродром Дубиње, Sjenica Air Base, Dubinje Airport" + }, + { + "id": "325762", + "ident": "RS-0005", + "type": "small_airport", + "name": "Vojka Airport", + "latitude_deg": "44.934325", + "longitude_deg": "20.171635", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-07", + "municipality": "Vojka", + "scheduled_service": "no" + }, + { + "id": "329651", + "ident": "RS-0006", + "type": "small_airport", + "name": "Backi Monostor Airfield", + "latitude_deg": "45.7850337", + "longitude_deg": "19.0191747", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-05", + "municipality": "Sombor", + "scheduled_service": "no" + }, + { + "id": "315691", + "ident": "RS-0007", + "type": "small_airport", + "name": "Smederevo Airfield", + "latitude_deg": "44.6439", + "longitude_deg": "20.9623", + "elevation_ft": "223", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-10", + "municipality": "Smederevo", + "scheduled_service": "no", + "gps_code": "LYSD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Smederevo_Airfield" + }, + { + "id": "315698", + "ident": "RS-0008", + "type": "small_airport", + "name": "Sportski Aerodrom \"Kozhirsko Polje\"", + "latitude_deg": "43.5634552", + "longitude_deg": "21.3362595", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-19", + "municipality": "Kruševac", + "scheduled_service": "no", + "gps_code": "LYKS" + }, + { + "id": "316358", + "ident": "RS-0009", + "type": "small_airport", + "name": "Banjički Vis Heliport", + "latitude_deg": "44.7623", + "longitude_deg": "20.4714", + "elevation_ft": "584", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-00", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Banji%C4%8Dki_Vis_Military_Base" + }, + { + "id": "320358", + "ident": "RS-0010", + "type": "small_airport", + "name": "Bogatić Airfield", + "latitude_deg": "44.826667", + "longitude_deg": "19.499722", + "elevation_ft": "276", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-08", + "municipality": "Bogatić", + "scheduled_service": "no", + "keywords": "Богатић" + }, + { + "id": "321141", + "ident": "RS-0011", + "type": "small_airport", + "name": "Surčin Airstrip", + "latitude_deg": "44.768889", + "longitude_deg": "20.304722", + "elevation_ft": "240", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-07", + "municipality": "Surčin", + "scheduled_service": "no" + }, + { + "id": "321142", + "ident": "RS-0012", + "type": "small_airport", + "name": "Titel Airstrip", + "latitude_deg": "45.1975", + "longitude_deg": "20.278889", + "elevation_ft": "240", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-06", + "municipality": "Titel", + "scheduled_service": "no" + }, + { + "id": "321795", + "ident": "RS-0013", + "type": "small_airport", + "name": "Vršački Ritovi Airstrip", + "latitude_deg": "45.1594444", + "longitude_deg": "21.185", + "elevation_ft": "246", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-04", + "scheduled_service": "no" + }, + { + "id": "330900", + "ident": "RS-0014", + "type": "small_airport", + "name": "Progar Airstrip", + "latitude_deg": "44.722182", + "longitude_deg": "20.176448", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-07", + "municipality": "Progar", + "scheduled_service": "no", + "keywords": "Прогар" + }, + { + "id": "340591", + "ident": "RS-0015", + "type": "closed", + "name": "Kosančić Airport", + "latitude_deg": "43.094514", + "longitude_deg": "21.776161", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-23", + "municipality": "Kosančić", + "scheduled_service": "no" + }, + { + "id": "340592", + "ident": "RS-0016", + "type": "small_airport", + "name": "Zlatibor Sport Airstrip (U.C.)", + "latitude_deg": "43.724368", + "longitude_deg": "19.678661", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-16", + "municipality": "Zlatibor", + "scheduled_service": "no" + }, + { + "id": "340593", + "ident": "RS-0017", + "type": "closed", + "name": "Kelovic Airstrip", + "latitude_deg": "43.591884", + "longitude_deg": "19.515274", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-16", + "municipality": "Priboj", + "scheduled_service": "no" + }, + { + "id": "347109", + "ident": "RS-0018", + "type": "small_airport", + "name": "Golubinci Airstrip", + "latitude_deg": "44.970289", + "longitude_deg": "20.060234", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-07", + "municipality": "Golubinci", + "scheduled_service": "no" + }, + { + "id": "347281", + "ident": "RS-0019", + "type": "small_airport", + "name": "Bački Jarak Airport", + "latitude_deg": "45.365223", + "longitude_deg": "19.887006", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-06", + "municipality": "Bački Jarak", + "scheduled_service": "no" + }, + { + "id": "429733", + "ident": "RS-0020", + "type": "small_airport", + "name": "Zimonić (Ilonafalu) Gliderport", + "latitude_deg": "46.04404", + "longitude_deg": "19.98972", + "continent": "EU", + "iso_country": "RS", + "iso_region": "RS-03", + "municipality": "Vojvoda Zimonić (Ilonafalu)", + "scheduled_service": "no" + }, + { + "id": "322332", + "ident": "RSCO", + "type": "small_airport", + "name": "Scotts Field", + "latitude_deg": "36.014336", + "longitude_deg": "-90.800196", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Fontaine", + "scheduled_service": "no" + }, + { + "id": "314542", + "ident": "RSE", + "type": "seaplane_base", + "name": "Rose Bay Seaplane Base", + "latitude_deg": "-33.869", + "longitude_deg": "151.262", + "elevation_ft": "0", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Sydney", + "scheduled_service": "no", + "iata_code": "RSE" + }, + { + "id": "350214", + "ident": "RSI", + "type": "closed", + "name": "Red Sea International Airport (under construction)", + "latitude_deg": "25.630278", + "longitude_deg": "37.078333", + "elevation_ft": "140", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-07", + "municipality": "Hanak", + "scheduled_service": "no", + "iata_code": "RSI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Red_Sea_International_Airport" + }, + { + "id": "34933", + "ident": "RU-0001", + "type": "medium_airport", + "name": "Levashovo Air Base", + "latitude_deg": "60.086700439453125", + "longitude_deg": "30.193300247192383", + "elevation_ft": "59", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SPE", + "municipality": "St. Petersburg", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Levashovo_%28air_base%29", + "keywords": "Levashevo, Leningrad, Petrograd" + }, + { + "id": "34935", + "ident": "RU-0002", + "type": "closed", + "name": "Afrikanda Air Base", + "latitude_deg": "67.456703186", + "longitude_deg": "32.7867012024", + "elevation_ft": "505", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Afrikanda", + "scheduled_service": "no", + "local_code": "XLMF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Afrikanda_air_base", + "keywords": "ЬЛМФ, Аэродром Африканда" + }, + { + "id": "34936", + "ident": "RU-0003", + "type": "small_airport", + "name": "Protasovo Air Base", + "latitude_deg": "54.493301", + "longitude_deg": "39.931702", + "elevation_ft": "469", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-RYA", + "municipality": "Listvyanka", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Protasovo_(air_base)", + "keywords": "Aleksandrovo Air Base, Protasovo Air Base, Ryazan Alexandrovo, Аэродром Александрово, Аэродром Протасово" + }, + { + "id": "34937", + "ident": "RU-0004", + "type": "closed", + "name": "Aleysk Air Base", + "latitude_deg": "52.483297", + "longitude_deg": "82.699997", + "elevation_ft": "676", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ALT", + "municipality": "Aleysk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aleysk_%28air_base%29", + "keywords": "УНБЙ, Aleisk Air Base, Аэродром Алейск" + }, + { + "id": "34938", + "ident": "RU-0005", + "type": "closed", + "name": "Andreapol Air Base", + "latitude_deg": "56.643299", + "longitude_deg": "32.313301", + "elevation_ft": "751", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TVE", + "municipality": "Andreapol", + "scheduled_service": "no", + "local_code": "XUEA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Andreapol_%28air_base%29", + "keywords": "ЬУЕА, Андреаполь" + }, + { + "id": "34939", + "ident": "RU-0006", + "type": "closed", + "name": "Arabatuk Air Base", + "latitude_deg": "50.223801", + "longitude_deg": "117.098999", + "elevation_ft": "2280", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Dauriya", + "scheduled_service": "no", + "local_code": "ZA2N", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arabatuk", + "keywords": "ЗА2Н, Даурия, Krasnyy Velikan North, Аэродром Арабатук, Аэродром Красный Великан Северный" + }, + { + "id": "34940", + "ident": "RU-0007", + "type": "closed", + "name": "Ashchebutak Air Base", + "latitude_deg": "51.035", + "longitude_deg": "59.168301", + "elevation_ft": "741", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-ORE", + "municipality": "Novoorsk", + "scheduled_service": "no", + "local_code": "XWOA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ashchebutak", + "keywords": "ЬВОА, Ащибутак" + }, + { + "id": "34942", + "ident": "RU-0008", + "type": "medium_airport", + "name": "Bada Air Base", + "latitude_deg": "51.406917", + "longitude_deg": "109.900091", + "elevation_ft": "2500", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Bada", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bada_%28air_base%29" + }, + { + "id": "34944", + "ident": "RU-0009", + "type": "closed", + "name": "Bakhmutovo Air Base", + "latitude_deg": "56.371700286865234", + "longitude_deg": "34.08829879760742", + "elevation_ft": "699", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TVE", + "municipality": "Rzhev", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bakhmutovo" + }, + { + "id": "34945", + "ident": "RU-0010", + "type": "medium_airport", + "name": "Balashov Air Base", + "latitude_deg": "51.53329849243164", + "longitude_deg": "43.29999923706055", + "elevation_ft": "568", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAR", + "municipality": "Balashov", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Balashov_%28air_base%29" + }, + { + "id": "34947", + "ident": "RU-0011", + "type": "closed", + "name": "Baltiysk Air Base", + "latitude_deg": "54.61000061035156", + "longitude_deg": "19.86829948425293", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KGD", + "municipality": "Baltiysk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baltiysk_%28air_base%29" + }, + { + "id": "34949", + "ident": "RU-0012", + "type": "closed", + "name": "Khariusny Air Base (closed)", + "latitude_deg": "67.379729", + "longitude_deg": "34.215661", + "elevation_ft": "427", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Umbozero", + "scheduled_service": "no", + "local_code": "XLMH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Berezovka", + "keywords": "Khariusnaya Airfield, Berezovka Airfield, Umbozero South, Аэродром Хариусный, Аэродром Хариусная" + }, + { + "id": "34950", + "ident": "RU-0013", + "type": "small_airport", + "name": "Bezrechnaya-2 Air Base", + "latitude_deg": "50.75", + "longitude_deg": "116.21700286865234", + "elevation_ft": "2201", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Mirnaya", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bezrechnaya-2", + "keywords": "Bezrechnaya, Bezrechnoy, Khodabulak, Khada Bulak North, Mirnaya" + }, + { + "id": "34953", + "ident": "RU-0014", + "type": "medium_airport", + "name": "Borisoglebsk Air Base", + "latitude_deg": "51.366699", + "longitude_deg": "42.178299", + "elevation_ft": "390", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VOR", + "municipality": "Borisoglebsk", + "scheduled_service": "no", + "local_code": "XUOB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Borisoglebsk_%28air_base%29", + "keywords": "Аэродром Борисоглебск" + }, + { + "id": "34955", + "ident": "RU-0015", + "type": "medium_airport", + "name": "Khotilovo Air Base", + "latitude_deg": "57.654998779296875", + "longitude_deg": "34.099998474121094", + "elevation_ft": "591", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TVE", + "municipality": "Bologoye", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Borisovsky_Khotilovo", + "keywords": "Khatilovo Air Base, Borisovskiy Air Base, Borisovsky Air Base, Аэродром Хотилово, Аэродром Борисовский" + }, + { + "id": "41136", + "ident": "RU-0016", + "type": "large_airport", + "name": "Lipetsk Air Base", + "latitude_deg": "52.6349983215332", + "longitude_deg": "39.44499969482422", + "elevation_ft": "636", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LIP", + "municipality": "Lipetsk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lipetsk_Air_Base" + }, + { + "id": "42981", + "ident": "RU-0017", + "type": "small_airport", + "name": "Pugachev Airport", + "latitude_deg": "51.977054595947266", + "longitude_deg": "48.72041702270508", + "elevation_ft": "118", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAR", + "municipality": "Pugachev", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pugachev_Airport" + }, + { + "id": "34960", + "ident": "RU-0018", + "type": "medium_airport", + "name": "Buturlinovka Air Base", + "latitude_deg": "50.79220962524414", + "longitude_deg": "40.60615539550781", + "elevation_ft": "505", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VOR", + "municipality": "Buturlinovka", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buturlinovka_(air_base)" + }, + { + "id": "34961", + "ident": "RU-0019", + "type": "small_airport", + "name": "Chebenki Air Base", + "latitude_deg": "51.97489929199219", + "longitude_deg": "55.54899978637695", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ORE", + "municipality": "Orenburg", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chebenki", + "keywords": "Cheben'ki Air Base, Orenburg Northeast Air Base, Dmitrievka Air Base, Аэродром Чебеньки, Аэродром Дмитриевка" + }, + { + "id": "34962", + "ident": "RU-0020", + "type": "closed", + "name": "Chekurovka Air Base", + "latitude_deg": "71.06500244140625", + "longitude_deg": "127.33799743652344", + "elevation_ft": "814", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Tiksi", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chekurovka" + }, + { + "id": "41836", + "ident": "RU-0021", + "type": "small_airport", + "name": "Korsakov Pushistyy Aerodrome", + "latitude_deg": "46.616726", + "longitude_deg": "142.812395", + "elevation_ft": "210", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Korsakov", + "scheduled_service": "no" + }, + { + "id": "34965", + "ident": "RU-0022", + "type": "small_airport", + "name": "Chornoye Air Base", + "latitude_deg": "55.75", + "longitude_deg": "38.06669998168945", + "elevation_ft": "449", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Moscow", + "scheduled_service": "no", + "home_link": "http://www.marzrosto.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chernoi", + "keywords": "Chyornoye Air Base, Chyornoe Air Base, Chornoe Air Base, Аэродром Чёрное, Аэродром Черное" + }, + { + "id": "34967", + "ident": "RU-0023", + "type": "medium_airport", + "name": "Chindant Air Base", + "latitude_deg": "50.396702", + "longitude_deg": "116.347", + "elevation_ft": "2201", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Borzya", + "scheduled_service": "no", + "gps_code": "UIAG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chindant", + "keywords": "Borzya, Borzia, Borzyu, Borzya Northwest, XIAG" + }, + { + "id": "44674", + "ident": "RU-0024", + "type": "heliport", + "name": "Krasnaya Polyana Heliport", + "latitude_deg": "43.6765319836", + "longitude_deg": "40.206634998300004", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Krasnaya Polyana", + "scheduled_service": "no", + "keywords": "Вертодром Красная Поляна" + }, + { + "id": "41838", + "ident": "RU-0025", + "type": "small_airport", + "name": "Nogliki Airport", + "latitude_deg": "51.782337", + "longitude_deg": "143.140783", + "elevation_ft": "109", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Nogliki", + "scheduled_service": "yes", + "gps_code": "UHSN", + "iata_code": "NGK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nogliki_Airport" + }, + { + "id": "41839", + "ident": "RU-0026", + "type": "closed", + "name": "Korsakov (Novaya) Air Base", + "latitude_deg": "46.709801", + "longitude_deg": "142.869995", + "elevation_ft": "347", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Novaya", + "scheduled_service": "no", + "keywords": "Otomari Airfield" + }, + { + "id": "41840", + "ident": "RU-0027", + "type": "small_airport", + "name": "Rybnovsk Airport", + "latitude_deg": "53.247101", + "longitude_deg": "141.806", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Rybnovsk", + "scheduled_service": "no" + }, + { + "id": "42328", + "ident": "RU-0028", + "type": "medium_airport", + "name": "Kaliningrad Chkalovsk Naval Air Base", + "latitude_deg": "54.7666015625", + "longitude_deg": "20.39699935913086", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KGD", + "municipality": "Kaliningrad", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kaliningrad_Chkalovsk", + "keywords": "Chkalovskoye, Tchalov, Proveren" + }, + { + "id": "42329", + "ident": "RU-0029", + "type": "small_airport", + "name": "Kansk West Airport", + "latitude_deg": "56.20658493041992", + "longitude_deg": "95.63624572753906", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "scheduled_service": "no" + }, + { + "id": "42331", + "ident": "RU-0030", + "type": "small_airport", + "name": "Tyukhtet North", + "latitude_deg": "56.562099", + "longitude_deg": "89.329002", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Tyukhtet", + "scheduled_service": "no" + }, + { + "id": "42909", + "ident": "RU-0031", + "type": "closed", + "name": "Khodynka Airport", + "latitude_deg": "55.78860092163086", + "longitude_deg": "37.52989959716797", + "elevation_ft": "502", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "municipality": "Moscow", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khodynka_Airport", + "keywords": "Tsentralny Airport, Аэропорт Центральный" + }, + { + "id": "42914", + "ident": "RU-0032", + "type": "small_airport", + "name": "Shimanovsk Airport", + "latitude_deg": "51.985001", + "longitude_deg": "127.643331", + "elevation_ft": "869", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Shimanovsk", + "scheduled_service": "no", + "gps_code": "UHBK", + "local_code": "UHBK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shimanovsk_Airport", + "keywords": "УХБК, Шимановск" + }, + { + "id": "42917", + "ident": "RU-0033", + "type": "small_airport", + "name": "Plestsy Airport", + "latitude_deg": "62.716702", + "longitude_deg": "40.4883", + "elevation_ft": "427", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Plesetsk", + "scheduled_service": "no", + "local_code": "XLAP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Plestsy_Airport", + "keywords": "Аэропорт Плесцы, ЬЛАП" + }, + { + "id": "42919", + "ident": "RU-0034", + "type": "small_airport", + "name": "Verkhnyaya Toyma Airport", + "latitude_deg": "62.23833465576172", + "longitude_deg": "45.02000045776367", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Verkhnyaya Toyma", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Verkhnyaya_Toyma" + }, + { + "id": "42924", + "ident": "RU-0035", + "type": "medium_airport", + "name": "Grozny Airport", + "latitude_deg": "43.388106", + "longitude_deg": "45.699772", + "elevation_ft": "548", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CE", + "municipality": "Grozny", + "scheduled_service": "yes", + "gps_code": "URMG", + "iata_code": "GRV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grozny_Airport", + "keywords": "Grozny North, Grozny Severny, Grozny, Аэропорт Грозный Северный, Аэропорт Грозный" + }, + { + "id": "42927", + "ident": "RU-0036", + "type": "medium_airport", + "name": "Irkutsk Northwest Airport", + "latitude_deg": "52.36830139160156", + "longitude_deg": "104.18299865722656", + "elevation_ft": "1470", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Irkutsk", + "scheduled_service": "no", + "gps_code": "UIIR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Irkutsk_Northwest_Airport", + "keywords": "Irkutsk-2 Airport, Irkutsk Severozapadny, Аэропорт Иркутск-2, Аэропорт Иркутск Северозападный" + }, + { + "id": "42932", + "ident": "RU-0037", + "type": "small_airport", + "name": "Kaliningrad Devau Airport", + "latitude_deg": "54.725128173828125", + "longitude_deg": "20.573894500732422", + "elevation_ft": "69", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KGD", + "municipality": "Kaliningrad", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kaliningrad_Devau_Airport", + "keywords": "Königsberg Devau Airport" + }, + { + "id": "42939", + "ident": "RU-0038", + "type": "closed", + "name": "Palana (East) Airport", + "latitude_deg": "59.05833435058594", + "longitude_deg": "159.96665954589844", + "elevation_ft": "154", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Palana", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palana_New_Airport" + }, + { + "id": "44681", + "ident": "RU-0039", + "type": "closed", + "name": "Kachalovka Airfield", + "latitude_deg": "67.98699951171875", + "longitude_deg": "39.834999084472656", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Kachalovka", + "scheduled_service": "no", + "keywords": "Аэродром Качаловка" + }, + { + "id": "42948", + "ident": "RU-0040", + "type": "medium_airport", + "name": "Syktyvkar Southwest", + "latitude_deg": "61.586666107177734", + "longitude_deg": "50.52000045776367", + "elevation_ft": "489", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KO", + "municipality": "Syktyvkar", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Syktyvkar_Southwest" + }, + { + "id": "42969", + "ident": "RU-0041", + "type": "closed", + "name": "Taly Ruchey Air Base", + "latitude_deg": "66.889999", + "longitude_deg": "33.883301", + "elevation_ft": "194", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Umba", + "scheduled_service": "no", + "gps_code": "ULMH", + "local_code": "ULMH", + "wikipedia_link": "https://ru.wikipedia.org/wiki/%D0%A2%D0%B0%D0%BB%D1%8B%D0%B9_%D0%A0%D1%83%D1%87%D0%B5%D0%B9_(%D0%B0%D1%8D%D1%80%D0%BE%D0%B4%D1%8", + "keywords": "Umba Northwest, Umba Severozapadnaya, Аэропорт Умба Северозападная, УЛМХ, Талый Ручей" + }, + { + "id": "35059", + "ident": "RU-0042", + "type": "small_airport", + "name": "Pravdinsk Airport", + "latitude_deg": "56.52170181274414", + "longitude_deg": "43.47999954223633", + "elevation_ft": "253", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NIZ", + "municipality": "Balakhna", + "scheduled_service": "no", + "home_link": "http://www.skydivenn.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pravdinsk_(air_base)", + "keywords": "Istomino Airfield, Аэродром Правдинск, Аэродром Истомино" + }, + { + "id": "42971", + "ident": "RU-0043", + "type": "medium_airport", + "name": "Mius Airport", + "latitude_deg": "54.9583320618", + "longitude_deg": "43.311668396", + "elevation_ft": "525", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NIZ", + "municipality": "Sarov", + "scheduled_service": "no", + "local_code": "XUDM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sarovo_Airport", + "keywords": "Sarov Airport, Аэропорт Миус, Аэропорт Саров, ЬУДМ" + }, + { + "id": "42977", + "ident": "RU-0044", + "type": "small_airport", + "name": "Krasnovishersk Airport", + "latitude_deg": "60.4106330871582", + "longitude_deg": "57.13611602783203", + "elevation_ft": "551", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PER", + "municipality": "Krasnovishersk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Krasnovishersk_Airport" + }, + { + "id": "42982", + "ident": "RU-0045", + "type": "small_airport", + "name": "Saratov South Airport", + "latitude_deg": "51.47780227661133", + "longitude_deg": "45.94259262084961", + "elevation_ft": "266", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAR", + "municipality": "Saratov", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saratov_South" + }, + { + "id": "42983", + "ident": "RU-0046", + "type": "heliport", + "name": "Tatischevo Air Base", + "latitude_deg": "51.6843986511", + "longitude_deg": "45.5481147766", + "elevation_ft": "787", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAR", + "municipality": "Tatischevo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tatischevo_(airbase)", + "keywords": "Tatishchevo Air Base" + }, + { + "id": "42987", + "ident": "RU-0047", + "type": "closed", + "name": "Kazan Old Airport", + "latitude_deg": "55.7874984741", + "longitude_deg": "49.195278167699996", + "elevation_ft": "394", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TA", + "municipality": "Kazan", + "scheduled_service": "no", + "gps_code": "UWKK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kazan-2_Airport", + "keywords": "İske Aeroport, Старый Аэропорт, УВКК, Казань-2" + }, + { + "id": "42988", + "ident": "RU-0048", + "type": "small_airport", + "name": "Menzelinsk Airport", + "latitude_deg": "55.7200012207", + "longitude_deg": "53.0600013733", + "elevation_ft": "299", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TA", + "municipality": "Menzelinsk", + "scheduled_service": "no", + "gps_code": "UWKP", + "home_link": "http://skyjump.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Menzelinsk_Airport", + "keywords": "Аэропорт Мензелинск, УВКП" + }, + { + "id": "42989", + "ident": "RU-0049", + "type": "closed", + "name": "Yelabuga North Airport", + "latitude_deg": "55.79280090332031", + "longitude_deg": "52.132999420166016", + "elevation_ft": "518", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TA", + "municipality": "Yelabuga", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yelabuga_North" + }, + { + "id": "42991", + "ident": "RU-0050", + "type": "medium_airport", + "name": "Yamburg Airport", + "latitude_deg": "67.986664", + "longitude_deg": "75.099998", + "elevation_ft": "108", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Yamburg", + "scheduled_service": "yes", + "gps_code": "USMQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yamburg_Airport" + }, + { + "id": "42993", + "ident": "RU-0051", + "type": "small_airport", + "name": "Nikolsk Airport", + "latitude_deg": "59.496665954589844", + "longitude_deg": "45.518333435058594", + "elevation_ft": "551", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLG", + "municipality": "Nikolsk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nikolsk_Airport", + "keywords": "Nikolsk South Airport" + }, + { + "id": "42996", + "ident": "RU-0052", + "type": "small_airport", + "name": "Baley Airport", + "latitude_deg": "51.561065673828125", + "longitude_deg": "116.70287322998047", + "elevation_ft": "2136", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Baley", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baley_Airport", + "keywords": "Balei Airport" + }, + { + "id": "42999", + "ident": "RU-0053", + "type": "closed", + "name": "Iultin Airport", + "latitude_deg": "67.9114990234375", + "longitude_deg": "-178.6719970703125", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Iul'tin", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iultin", + "keywords": "Аэропорт Иультин" + }, + { + "id": "43000", + "ident": "RU-0054", + "type": "small_airport", + "name": "Kyren Airport", + "latitude_deg": "51.678089", + "longitude_deg": "102.156548", + "elevation_ft": "2290", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Kyren", + "scheduled_service": "no", + "gps_code": "UIIN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kyren_Airport" + }, + { + "id": "43001", + "ident": "RU-0055", + "type": "closed", + "name": "Bereznik", + "latitude_deg": "62.823334", + "longitude_deg": "42.796665", + "elevation_ft": "105", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Bereznik", + "scheduled_service": "no", + "gps_code": "ULAB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Semenovskoye_Shidrovo", + "keywords": "Semenovskoye Shidrovo Airport, Аэропорт Березник" + }, + { + "id": "43003", + "ident": "RU-0056", + "type": "small_airport", + "name": "Taksimo Airport", + "latitude_deg": "56.361668", + "longitude_deg": "114.93", + "elevation_ft": "2001", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Taksimo", + "scheduled_service": "no", + "gps_code": "UIKG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taksimo_Airport" + }, + { + "id": "43004", + "ident": "RU-0057", + "type": "small_airport", + "name": "Tarnogskiy Gorodok Airport", + "latitude_deg": "60.503299713134766", + "longitude_deg": "43.60169982910156", + "elevation_ft": "328", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLG", + "municipality": "Tarnogskiy Gorodok", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tarnogskiy_Gorodok_Airport", + "keywords": "Tarnogsky Gorodok Airport, Tarnoga Airport, Аэропорт Тарногский Городок, Аэропорт Тарнога" + }, + { + "id": "43005", + "ident": "RU-0058", + "type": "small_airport", + "name": "Tasayevo Airport", + "latitude_deg": "57.17499923706055", + "longitude_deg": "94.88999938964844", + "elevation_ft": "299", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Tasayevo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tasayevo_Airport" + }, + { + "id": "43007", + "ident": "RU-0059", + "type": "medium_airport", + "name": "Alakurtti Naval Air Base", + "latitude_deg": "66.97333526611328", + "longitude_deg": "30.344999313354492", + "elevation_ft": "538", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Alakurtti", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alakurtti_Air_Base" + }, + { + "id": "43008", + "ident": "RU-0060", + "type": "medium_airport", + "name": "Chernyakhovsk Naval Air Base", + "latitude_deg": "54.60166549682617", + "longitude_deg": "21.781667709350586", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KGD", + "municipality": "Chernyakhovsk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chernyakhovsk_(air_base)", + "keywords": "Черняхо́вск" + }, + { + "id": "43009", + "ident": "RU-0061", + "type": "heliport", + "name": "Donskoye Air Base", + "latitude_deg": "54.934391021728516", + "longitude_deg": "19.98241424560547", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KGD", + "municipality": "Donskoye", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Donskoye_(air_base)", + "keywords": "Bryusterort, Donskoe, Gross Dirschkeim" + }, + { + "id": "44683", + "ident": "RU-0062", + "type": "small_airport", + "name": "Kalinovskaya Airfield", + "latitude_deg": "43.599998474121094", + "longitude_deg": "45.529998779296875", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CE", + "municipality": "Kalinovskaya", + "scheduled_service": "no", + "keywords": "Аэродром Калиновская" + }, + { + "id": "43012", + "ident": "RU-0063", + "type": "closed", + "name": "Lakhta Naval Air Base", + "latitude_deg": "64.383331", + "longitude_deg": "40.716667", + "elevation_ft": "102", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Arkhangelsk", + "scheduled_service": "no", + "local_code": "XLAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lakhta_air_base", + "keywords": "Kholm, Katunino, Novodvinsk, Lahta, Pervomaysk" + }, + { + "id": "43014", + "ident": "RU-0064", + "type": "medium_airport", + "name": "Ostrov Naval Air Base", + "latitude_deg": "57.299999", + "longitude_deg": "28.4333", + "elevation_ft": "220", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PSK", + "municipality": "Ostrov", + "scheduled_service": "no", + "local_code": "XLOS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ostrov_(air_base)", + "keywords": "Gorokhovka, Kildin" + }, + { + "id": "43015", + "ident": "RU-0065", + "type": "medium_airport", + "name": "Pribylovo Naval Air Base", + "latitude_deg": "60.45833206176758", + "longitude_deg": "28.746667861938477", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Pribilovo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pribylovo", + "keywords": "Klyuchevoye, Makslahti" + }, + { + "id": "43017", + "ident": "RU-0066", + "type": "closed", + "name": "Severomorsk-2 Naval Air Base", + "latitude_deg": "69.01499938964844", + "longitude_deg": "33.29166793823242", + "elevation_ft": "253", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Severomorsk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Severomorsk-2", + "keywords": "Safonovo, Murmansk Northeast" + }, + { + "id": "43019", + "ident": "RU-0067", + "type": "closed", + "name": "Veshchevo Naval Air Base", + "latitude_deg": "60.673301696777344", + "longitude_deg": "29.16670036315918", + "elevation_ft": "154", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Veshchevo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Veshchevo", + "keywords": "Veshchyovo, Veshchovo, Vyborg East, Vyborg Vostochny, Вещёво, Вещево, Выборг Восточный, Heinjoki" + }, + { + "id": "43331", + "ident": "RU-0068", + "type": "small_airport", + "name": "Bychye Field", + "latitude_deg": "60.014599", + "longitude_deg": "29.702801", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SPE", + "municipality": "Kronshtadt", + "scheduled_service": "no", + "gps_code": "ULLY", + "home_link": "http://kronavia.ru/", + "keywords": "Bychye Pole, Кронштадт, Бычье Поле, Kronshtadt Airfield, УЛЛЫ, Kotlin Island" + }, + { + "id": "43332", + "ident": "RU-0069", + "type": "small_airport", + "name": "Kummolovo Airfield", + "latitude_deg": "59.65444564819336", + "longitude_deg": "28.994722366333008", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "scheduled_service": "no", + "home_link": "http://www.kummolovo.ru/", + "keywords": "Куммолово" + }, + { + "id": "43335", + "ident": "RU-0070", + "type": "small_airport", + "name": "Manushkino Airfield", + "latitude_deg": "59.8718986511", + "longitude_deg": "30.802799224900003", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Manushkino", + "scheduled_service": "no", + "gps_code": "ULSM", + "keywords": "Аэродром Манушкино, УЛСМ" + }, + { + "id": "43336", + "ident": "RU-0071", + "type": "small_airport", + "name": "Kuznetsovo Airfield", + "latitude_deg": "55.961765", + "longitude_deg": "93.011971", + "elevation_ft": "886", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "scheduled_service": "no", + "gps_code": "UNQK", + "keywords": "УНЯК, Аэродром Кузнецово" + }, + { + "id": "43586", + "ident": "RU-0072", + "type": "small_airport", + "name": "Gorskaya Airfield", + "latitude_deg": "60.03329849243164", + "longitude_deg": "30.014999389648438", + "elevation_ft": "125", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SPE", + "scheduled_service": "no", + "keywords": "Аэродром Горская" + }, + { + "id": "43587", + "ident": "RU-0073", + "type": "small_airport", + "name": "Gostilitsy Airfield", + "latitude_deg": "59.7267", + "longitude_deg": "29.6395", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Gostilitsy", + "scheduled_service": "no", + "gps_code": "ULSG", + "wikipedia_link": "https://ru.wikipedia.org/wiki/%D0%93%D0%BE%D1%81%D1%82%D0%B8%D0%BB%D0%B8%D1%86%D1%8B_(%D0%B0%D1%8D%D1%80%D0%BE%D0%B4%D1%80%D0%BE", + "keywords": "Аэродром Гостилицы, Vil'povitsy" + }, + { + "id": "43661", + "ident": "RU-0074", + "type": "small_airport", + "name": "Borki Airfield", + "latitude_deg": "58.371133", + "longitude_deg": "31.043243", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NGR", + "municipality": "Novgorod", + "scheduled_service": "no", + "home_link": "http://www.ask.nov.ru/", + "keywords": "Аэродром Борки" + }, + { + "id": "43657", + "ident": "RU-0075", + "type": "small_airport", + "name": "Korpikyulya Airfield", + "latitude_deg": "59.60499954223633", + "longitude_deg": "30.272300720214844", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Gatchina", + "scheduled_service": "no", + "gps_code": "ULSK", + "home_link": "http://www.aeropiter.ru/ru/aeroclub.htm", + "keywords": "Korpikulya Airfield, Аэродром Корпикюля" + }, + { + "id": "43658", + "ident": "RU-0076", + "type": "closed", + "name": "Lepsari Airfield", + "latitude_deg": "60.138401", + "longitude_deg": "30.886499", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "scheduled_service": "no", + "local_code": "ZA77", + "keywords": "Аэродром Лепсари" + }, + { + "id": "43659", + "ident": "RU-0077", + "type": "small_airport", + "name": "Sivoritsy Airfield", + "latitude_deg": "59.476156", + "longitude_deg": "30.001545", + "elevation_ft": "371", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Gatchina", + "scheduled_service": "no", + "keywords": "Nikolskoye Airfield, Аэродром Сиворицы, Аэродром Никольское" + }, + { + "id": "43660", + "ident": "RU-0078", + "type": "closed", + "name": "Yermilovo Air Base", + "latitude_deg": "60.375", + "longitude_deg": "28.874000549316406", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "scheduled_service": "no", + "keywords": "Ermilovo Air Base, Аэродром Ермилово" + }, + { + "id": "43662", + "ident": "RU-0079", + "type": "small_airport", + "name": "Kuznetsovo Airfield", + "latitude_deg": "59.245201110839844", + "longitude_deg": "29.945199966430664", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Rozhdestveno", + "scheduled_service": "no", + "gps_code": "ULSO", + "keywords": "Аэродром Кузнецово" + }, + { + "id": "43665", + "ident": "RU-0080", + "type": "small_airport", + "name": "Murmashi Airfield", + "latitude_deg": "68.8067", + "longitude_deg": "32.8077", + "elevation_ft": "245", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Murmansk", + "scheduled_service": "no", + "local_code": "XLMN", + "keywords": "ЬЛМН, Аэродром Мурмаши" + }, + { + "id": "35019", + "ident": "RU-0081", + "type": "small_airport", + "name": "Leonidovo Air Base", + "latitude_deg": "49.270554", + "longitude_deg": "142.928772", + "elevation_ft": "59", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Leonidovo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leonidovo_(air_base)", + "keywords": "Shisuka Naval Airfield" + }, + { + "id": "43670", + "ident": "RU-0082", + "type": "small_airport", + "name": "Bolchary Airport", + "latitude_deg": "59.821293", + "longitude_deg": "68.829631", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Bolchary", + "scheduled_service": "no", + "keywords": "Аэропорт Болчары" + }, + { + "id": "43674", + "ident": "RU-0083", + "type": "small_airport", + "name": "Verkhnyaya Zolotitsa Airport", + "latitude_deg": "65.6910018921", + "longitude_deg": "40.380401611299995", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "scheduled_service": "no", + "gps_code": "ULBW", + "keywords": "Verhnyaya Zolotitsa Airport, Аэропорт Верхняя Золотица, УЛБВ" + }, + { + "id": "43677", + "ident": "RU-0084", + "type": "small_airport", + "name": "Vozhgora Airport", + "latitude_deg": "64.53959655761719", + "longitude_deg": "48.484901428222656", + "elevation_ft": "262", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "scheduled_service": "no", + "keywords": "Аэропорт Вожгора" + }, + { + "id": "43681", + "ident": "RU-0085", + "type": "small_airport", + "name": "Dolgoshchelye Airport", + "latitude_deg": "66.053492", + "longitude_deg": "43.424625", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Dolgoshchelye", + "scheduled_service": "no", + "gps_code": "ULBD", + "keywords": "Dolgoschelye Airport, Аэропорт Долгощелье" + }, + { + "id": "43685", + "ident": "RU-0086", + "type": "closed", + "name": "Zavetnoe Airport", + "latitude_deg": "47.135167", + "longitude_deg": "43.899133", + "elevation_ft": "431", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "scheduled_service": "no", + "gps_code": "URRY", + "keywords": "УРРЫ, Zavetnoye Airport, Аэропорт Заветное" + }, + { + "id": "43690", + "ident": "RU-0087", + "type": "small_airport", + "name": "Indiga Airport", + "latitude_deg": "67.645419", + "longitude_deg": "49.048749", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NEN", + "scheduled_service": "no", + "keywords": "Аэропорт Индига" + }, + { + "id": "43977", + "ident": "RU-0088", + "type": "closed", + "name": "Urup Airport", + "latitude_deg": "46.203894", + "longitude_deg": "150.520736", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Kastrikum", + "scheduled_service": "no", + "keywords": "Shinonome, Shinonomehara, Uruppu" + }, + { + "id": "44301", + "ident": "RU-0089", + "type": "medium_airport", + "name": "Krymsk Air Base", + "latitude_deg": "44.959999084472656", + "longitude_deg": "38", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Krymsk", + "scheduled_service": "no", + "keywords": "Аэродром Крымск" + }, + { + "id": "44302", + "ident": "RU-0090", + "type": "medium_airport", + "name": "Krasnodar Central Air Base", + "latitude_deg": "45.082429", + "longitude_deg": "38.944312", + "elevation_ft": "105", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Krasnodar", + "scheduled_service": "no", + "keywords": "Krasnodar North Air Base, Аэродром Краснодар-Центральный, Аэродром Краснодар-Северный" + }, + { + "id": "44303", + "ident": "RU-0091", + "type": "closed", + "name": "Baronovskiy Airfield", + "latitude_deg": "44.92366", + "longitude_deg": "40.987973", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Armavir", + "scheduled_service": "no", + "keywords": "Baronovsky Airfield, Аэродром Бароновский, URKB" + }, + { + "id": "44304", + "ident": "RU-0092", + "type": "closed", + "name": "Myskhako Airport", + "latitude_deg": "44.66999816894531", + "longitude_deg": "37.7760009765625", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Novorossiysk", + "scheduled_service": "no", + "keywords": "Myskhako Airport, Novorossiysk Airport, Аэропорт Мысхако, Аэропорт Новороссийск" + }, + { + "id": "44316", + "ident": "RU-0093", + "type": "small_airport", + "name": "Sasovo Airfield", + "latitude_deg": "54.354000091552734", + "longitude_deg": "41.9739990234375", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-RYA", + "municipality": "Sasovo", + "scheduled_service": "no", + "home_link": "http://sasovoavia.3dn.ru/", + "keywords": "Аэродром Сасово" + }, + { + "id": "44317", + "ident": "RU-0094", + "type": "small_airport", + "name": "Buguruslan Glavny Airfield", + "latitude_deg": "53.61800003049999", + "longitude_deg": "52.444000244099996", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ORE", + "municipality": "Buguruslan", + "scheduled_service": "no", + "gps_code": "UWWZ", + "home_link": "http://blu-ga.narod.ru/", + "keywords": "Buguruslan Main Airfield, Аэродром Бугуруслан Главный" + }, + { + "id": "44318", + "ident": "RU-0095", + "type": "small_airport", + "name": "Troekurovka Air Base", + "latitude_deg": "53.225454", + "longitude_deg": "48.549725", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAM", + "municipality": "Syzran", + "scheduled_service": "no", + "keywords": "Troyekurovka Air Base, Аэродром Троекуровка" + }, + { + "id": "44319", + "ident": "RU-0096", + "type": "small_airport", + "name": "Bezenchuk Airfield", + "latitude_deg": "52.96500015258789", + "longitude_deg": "49.37799835205078", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAM", + "municipality": "Bezenchuk", + "scheduled_service": "no", + "keywords": "Аэродром Безенчук" + }, + { + "id": "44322", + "ident": "RU-0097", + "type": "small_airport", + "name": "Oktyabrskiy Airfield", + "latitude_deg": "44.64500045776367", + "longitude_deg": "40.22200012207031", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AD", + "municipality": "Maykop", + "scheduled_service": "no", + "keywords": "Oktyabrsky Airfield, Аэродром Октябрьский" + }, + { + "id": "44323", + "ident": "RU-0098", + "type": "medium_airport", + "name": "Oktyabrskiy Air Base", + "latitude_deg": "47.970001220703125", + "longitude_deg": "43.720001220703125", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VGG", + "municipality": "Oktyabrskiy", + "scheduled_service": "no", + "keywords": "Oktyabrsky Air Base, Аэродром Октябрьский" + }, + { + "id": "44328", + "ident": "RU-0099", + "type": "small_airport", + "name": "Aleksandrovskoye Airport", + "latitude_deg": "60.445636", + "longitude_deg": "77.837069", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TOM", + "municipality": "Aleksandrovskoye", + "scheduled_service": "no", + "gps_code": "UNSA", + "keywords": "Aleksandrovskoe Airport, Alexandrovskoye Airport, Alexandrovskoe Airport, Аэропорт Александровское" + }, + { + "id": "44329", + "ident": "RU-0100", + "type": "heliport", + "name": "Amazar Air Base", + "latitude_deg": "53.791999816895", + "longitude_deg": "120.91999816895", + "elevation_ft": "1530", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Amazar", + "scheduled_service": "no", + "local_code": "XIAL", + "keywords": "ЬИАЛ, Аэродром Амазар" + }, + { + "id": "44331", + "ident": "RU-0101", + "type": "small_airport", + "name": "Ashuluk Airfield", + "latitude_deg": "47.42257", + "longitude_deg": "47.92717", + "elevation_ft": "-66", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-AST", + "scheduled_service": "no", + "keywords": "Kordon Airfield, Аэродром Ашулук, Аэродром Кордон" + }, + { + "id": "44333", + "ident": "RU-0102", + "type": "small_airport", + "name": "Atkarsk Airport", + "latitude_deg": "51.801998138427734", + "longitude_deg": "45.11199951171875", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAR", + "municipality": "Atkarsk", + "scheduled_service": "no", + "keywords": "Аэропорт Аткарск" + }, + { + "id": "44334", + "ident": "RU-0103", + "type": "small_airport", + "name": "Azov Airfield", + "latitude_deg": "47.0846", + "longitude_deg": "39.406169", + "elevation_ft": "135", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Azov", + "scheduled_service": "no", + "local_code": "XRRA", + "keywords": "ЬРРА, Аэродром Азов" + }, + { + "id": "44337", + "ident": "RU-0104", + "type": "small_airport", + "name": "Barabinsk Airport", + "latitude_deg": "55.36000061035156", + "longitude_deg": "78.30000305175781", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Barabinsk", + "scheduled_service": "no", + "gps_code": "UNRR", + "keywords": "Аэропорт Барабинск" + }, + { + "id": "44339", + "ident": "RU-0105", + "type": "small_airport", + "name": "Barguzin Airport", + "latitude_deg": "53.587003", + "longitude_deg": "109.699997", + "elevation_ft": "1585", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Barguzin", + "scheduled_service": "no", + "gps_code": "UIAO", + "local_code": "UIAO", + "keywords": "УИАО, Аэропорт Баргузин" + }, + { + "id": "44340", + "ident": "RU-0106", + "type": "closed", + "name": "Basy Airfield", + "latitude_deg": "46.214443", + "longitude_deg": "46.945971", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AST", + "municipality": "Uchkhoz", + "scheduled_service": "no", + "keywords": "Аэродром Басы" + }, + { + "id": "44341", + "ident": "RU-0107", + "type": "closed", + "name": "Bataysk Air Base", + "latitude_deg": "47.117000579833984", + "longitude_deg": "39.79499816894531", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Bataysk", + "scheduled_service": "no", + "keywords": "Bataisk Air Base, Аэродром Батайск" + }, + { + "id": "44344", + "ident": "RU-0108", + "type": "small_airport", + "name": "Berdsk Airfield", + "latitude_deg": "54.73500061035156", + "longitude_deg": "83.09500122070312", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Berdsk", + "scheduled_service": "no", + "keywords": "Berdsk Tsentralniy Airfield, Аэродром Бердск, Аэродром Бердск Центральный" + }, + { + "id": "44345", + "ident": "RU-0109", + "type": "small_airport", + "name": "ObGES Airfield", + "latitude_deg": "54.874000549316406", + "longitude_deg": "82.98300170898438", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Novosibirsk", + "scheduled_service": "no", + "keywords": "Ob-GES Airfield, Аэродром ОбьГЭС, Аэродром Обь-ГЭС" + }, + { + "id": "44346", + "ident": "RU-0110", + "type": "small_airport", + "name": "Mochische Airfield", + "latitude_deg": "55.168999", + "longitude_deg": "83.142998", + "elevation_ft": "718", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Novosibirsk", + "scheduled_service": "no", + "gps_code": "UNNM", + "home_link": "http://aeromochische.ru/", + "keywords": "Mochishche Airfield, Аэродром Мочище" + }, + { + "id": "34981", + "ident": "RU-0111", + "type": "closed", + "name": "Dresba Air Base", + "latitude_deg": "69.36329650878906", + "longitude_deg": "161.56199645996094", + "elevation_ft": "272", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Pevek", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dresba" + }, + { + "id": "44347", + "ident": "RU-0112", + "type": "small_airport", + "name": "Yevsino Airfield", + "latitude_deg": "54.407001495399996", + "longitude_deg": "83.24199676510001", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Evsino", + "scheduled_service": "no", + "home_link": "http://aviaclub.ru/nasha-territorija/aehrodrom-evsino/", + "keywords": "Evsino Airfield, Linyovo Airfield, Аэродром Евсино, Аэродром Линёво" + }, + { + "id": "44348", + "ident": "RU-0113", + "type": "small_airport", + "name": "Kamen-na-Obi Airfield", + "latitude_deg": "53.792999267599996", + "longitude_deg": "81.1500015259", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Kamen-na-Obi", + "scheduled_service": "no", + "keywords": "Аэродром Камень-на-Оби" + }, + { + "id": "44349", + "ident": "RU-0114", + "type": "small_airport", + "name": "Kalmanka Airfield", + "latitude_deg": "53.125", + "longitude_deg": "83.37999725341797", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Novo-Romanovo", + "scheduled_service": "no", + "keywords": "Аэродром Калманка" + }, + { + "id": "44350", + "ident": "RU-0115", + "type": "small_airport", + "name": "Slavgorod North Air Base", + "latitude_deg": "53.051998", + "longitude_deg": "78.639999", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-ALT", + "municipality": "Slavgorod", + "scheduled_service": "no", + "keywords": "Slavgorod Severny Air Base, Slavgorod Severnity Air Base, Аэродром Славгород Северный" + }, + { + "id": "44351", + "ident": "RU-0116", + "type": "small_airport", + "name": "Severnoye Airport", + "latitude_deg": "56.3349990845", + "longitude_deg": "78.3550033569", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Severnoe", + "scheduled_service": "no", + "gps_code": "UNNS", + "keywords": "Severnoe Airport, Аэропорт Северное, УННС" + }, + { + "id": "44352", + "ident": "RU-0117", + "type": "small_airport", + "name": "Klyuchi Airfield", + "latitude_deg": "52.26499938964844", + "longitude_deg": "79.2020034790039", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-ALT", + "municipality": "Klyuchi", + "scheduled_service": "no", + "keywords": "Аэродром Ключи" + }, + { + "id": "44353", + "ident": "RU-0118", + "type": "closed", + "name": "Chistoozernoe Airfield", + "latitude_deg": "54.659", + "longitude_deg": "76.537003", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Chistoozernoe", + "scheduled_service": "no", + "keywords": "Chistoozyornoe, Chistoozyornoye Airfield, Аэродром Чистоозёрное" + }, + { + "id": "44687", + "ident": "RU-0119", + "type": "heliport", + "name": "Srednebeloye Helicopter Base", + "latitude_deg": "50.691002", + "longitude_deg": "128.009995", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Srednebeloye", + "scheduled_service": "no", + "local_code": "XHIB", + "keywords": "ЬХИБ, Srednebelaya Helicopter Base, Вертодром Среднебелое, Вертодром Среднебелая" + }, + { + "id": "44359", + "ident": "RU-0120", + "type": "small_airport", + "name": "Ishim Airfield", + "latitude_deg": "56.08599853515625", + "longitude_deg": "69.4530029296875", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-TYU", + "municipality": "Ishim", + "scheduled_service": "no", + "keywords": "Аэродром Ишим" + }, + { + "id": "44360", + "ident": "RU-0121", + "type": "small_airport", + "name": "Verkhneimbatsk Airport", + "latitude_deg": "63.156939", + "longitude_deg": "87.972736", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Verkhneimbatsk", + "scheduled_service": "no", + "keywords": "Verhneimbatsk Airport, Аэропорт Верхнеимбатск" + }, + { + "id": "44361", + "ident": "RU-0122", + "type": "small_airport", + "name": "Yalutorovsk Airfield", + "latitude_deg": "56.66699981689453", + "longitude_deg": "66.25800323486328", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-TYU", + "municipality": "Yalutorovsk", + "scheduled_service": "no", + "keywords": "Аэродром Ялуторовск" + }, + { + "id": "44364", + "ident": "RU-0123", + "type": "small_airport", + "name": "Birobidzhan Yuzhniy Airfield", + "latitude_deg": "48.583557", + "longitude_deg": "133.048811", + "elevation_ft": "217", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YEV", + "municipality": "Birobidzhan", + "scheduled_service": "no", + "gps_code": "UHHB", + "keywords": "Birobidzhan Yuzhny Airfield, Birobidzhan South Airfield, Zholty Yar Airfield, Zhelty Yar Airfield, Аэропорт Биробиджан Южный, Аэропорт Жёлтый Яр, Аэропорт Желтый Яр" + }, + { + "id": "44366", + "ident": "RU-0124", + "type": "small_airport", + "name": "Birofeld Airfield", + "latitude_deg": "48.400002", + "longitude_deg": "132.783005", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YEV", + "municipality": "Birofeld", + "scheduled_service": "no", + "keywords": "Аэродром Бирофельд" + }, + { + "id": "44370", + "ident": "RU-0125", + "type": "medium_airport", + "name": "Bobrovka Air Base", + "latitude_deg": "53.14500045776367", + "longitude_deg": "50.709999084472656", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAM", + "municipality": "Kinel", + "scheduled_service": "no", + "keywords": "Аэродром Бобровка" + }, + { + "id": "44378", + "ident": "RU-0126", + "type": "small_airport", + "name": "Borzya Zapadnaya Airfield", + "latitude_deg": "50.354", + "longitude_deg": "116.260002", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Borzya", + "scheduled_service": "no", + "keywords": "Borzya West Airfield, Аэродром Борзя Западная" + }, + { + "id": "44379", + "ident": "RU-0127", + "type": "closed", + "name": "Bryansk Airport", + "latitude_deg": "53.269328", + "longitude_deg": "34.336638", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BRY", + "municipality": "Bryansk", + "scheduled_service": "no", + "keywords": "Аэропорт Брянск" + }, + { + "id": "44380", + "ident": "RU-0128", + "type": "medium_airport", + "name": "Budyonnovsk Air Base", + "latitude_deg": "44.83000183105469", + "longitude_deg": "44.01300048828125", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-STA", + "municipality": "Budyonnovsk", + "scheduled_service": "no", + "keywords": "Budennovsk Air Base, Аэродром Будённовск, Аэродром Буденновск" + }, + { + "id": "44381", + "ident": "RU-0129", + "type": "small_airport", + "name": "Buzuluk Airport", + "latitude_deg": "52.8129997253418", + "longitude_deg": "52.22200012207031", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ORE", + "municipality": "Buzuluk", + "scheduled_service": "no", + "gps_code": "UWOX", + "keywords": "Аэропорт Бузулук" + }, + { + "id": "44387", + "ident": "RU-0130", + "type": "closed", + "name": "Yefremov Air Base", + "latitude_deg": "53.1150016784668", + "longitude_deg": "38.24300003051758", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TUL", + "municipality": "Yefremov", + "scheduled_service": "no", + "keywords": "Efremov Air Base, Аэродром Ефремов" + }, + { + "id": "44388", + "ident": "RU-0131", + "type": "closed", + "name": "Troitskoye Air Base", + "latitude_deg": "46.455002", + "longitude_deg": "44.209999", + "elevation_ft": "420", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KL", + "municipality": "Troitskoye", + "scheduled_service": "no", + "local_code": "XRWT", + "keywords": "ЬРВТ, Troitskoe Air Base, Аэродром Троицкое" + }, + { + "id": "44392", + "ident": "RU-0132", + "type": "medium_airport", + "name": "Chernigovka Air Base", + "latitude_deg": "44.32239", + "longitude_deg": "132.545289", + "elevation_ft": "328", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Chernigovka", + "scheduled_service": "no", + "keywords": "Аэродром Черниговка" + }, + { + "id": "44398", + "ident": "RU-0133", + "type": "small_airport", + "name": "Kashtak Airfield", + "latitude_deg": "52.110933", + "longitude_deg": "113.49698", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Chita", + "scheduled_service": "no", + "keywords": "Аэродром Каштак" + }, + { + "id": "44399", + "ident": "RU-0134", + "type": "small_airport", + "name": "Chizha Airport", + "latitude_deg": "67.08399963378906", + "longitude_deg": "44.367000579833984", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Chizha", + "scheduled_service": "no", + "gps_code": "ULBI", + "keywords": "Аэропорт Чижа" + }, + { + "id": "44406", + "ident": "RU-0135", + "type": "small_airport", + "name": "Esso Airport", + "latitude_deg": "55.938344", + "longitude_deg": "158.710192", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Esso", + "scheduled_service": "no", + "keywords": "Аэропорт Эссо, UESB" + }, + { + "id": "44415", + "ident": "RU-0136", + "type": "small_airport", + "name": "Galyonki Air Base", + "latitude_deg": "44.095001220703125", + "longitude_deg": "131.8000030517578", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Galyonki", + "scheduled_service": "no", + "keywords": "Galenki Air Base, Аэродром Галёнки, Аэродром Галенки" + }, + { + "id": "44416", + "ident": "RU-0137", + "type": "small_airport", + "name": "Gazimurskiy Zavod Airport", + "latitude_deg": "51.547000885009766", + "longitude_deg": "118.37000274658203", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Gazimurskiy Zavod", + "scheduled_service": "no", + "keywords": "Gazimursky Zavod Airport, Аэропорт Газимурский Завод" + }, + { + "id": "44417", + "ident": "RU-0138", + "type": "closed", + "name": "Girvas Air Base", + "latitude_deg": "62.483002", + "longitude_deg": "33.75", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KR", + "municipality": "Girvas", + "scheduled_service": "no", + "local_code": "XLPG", + "keywords": "Аэродром Гирвас" + }, + { + "id": "44418", + "ident": "RU-0139", + "type": "small_airport", + "name": "Goryachinsk Airport", + "latitude_deg": "53.01499938964844", + "longitude_deg": "108.3270034790039", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Goryachinsk", + "scheduled_service": "no", + "keywords": "Аэропорт Горячинск" + }, + { + "id": "44419", + "ident": "RU-0140", + "type": "small_airport", + "name": "Gryazi Airfield", + "latitude_deg": "52.43299865722656", + "longitude_deg": "39.900001525878906", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LIP", + "municipality": "Gryazi", + "scheduled_service": "no", + "keywords": "Аэродром Грязи" + }, + { + "id": "44422", + "ident": "RU-0141", + "type": "small_airport", + "name": "Idrinskoye Airport", + "latitude_deg": "54.362998962402344", + "longitude_deg": "91.98699951171875", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Idrinskoye", + "scheduled_service": "no", + "keywords": "Idrinskoe Airport, Аэропорт Идринское" + }, + { + "id": "44423", + "ident": "RU-0142", + "type": "small_airport", + "name": "Imeni Poliny Osipenko Airport", + "latitude_deg": "52.439998626708984", + "longitude_deg": "136.4739990234375", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Imeni Poliny Osipenko", + "scheduled_service": "no", + "keywords": "Polina Osipenko Airport, Аэропорт имени Полины Осипенко, Аэропорт им. Полины Осипенко" + }, + { + "id": "44698", + "ident": "RU-0143", + "type": "heliport", + "name": "Avachinskiy Heliport", + "latitude_deg": "53.15999984741211", + "longitude_deg": "158.38499450683594", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Yelizovo", + "scheduled_service": "yes", + "keywords": "Avachinsky Heliport, Yelizovo Heliport, Вертодром Авачинский, Вертодром Елизово" + }, + { + "id": "44476", + "ident": "RU-0144", + "type": "closed", + "name": "Dubrovitsy Airfield", + "latitude_deg": "55.415001", + "longitude_deg": "37.48", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Podolsk", + "scheduled_service": "no", + "keywords": "Аэродром Дубровицы" + }, + { + "id": "44477", + "ident": "RU-0145", + "type": "closed", + "name": "Chaikovskiy Airport", + "latitude_deg": "56.75", + "longitude_deg": "54.14500045776367", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PER", + "municipality": "Chaikovskiy", + "scheduled_service": "no", + "gps_code": "USPW", + "keywords": "Chaykovskiy Airport, Chaikovsky Airport, Аэропорт Чайковский" + }, + { + "id": "44478", + "ident": "RU-0146", + "type": "small_airport", + "name": "Froly Airfield", + "latitude_deg": "57.901598", + "longitude_deg": "56.243678", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PER", + "municipality": "Froly", + "scheduled_service": "no", + "keywords": "Аэродром Фролы" + }, + { + "id": "44479", + "ident": "RU-0147", + "type": "small_airport", + "name": "Kurkachi Airfield", + "latitude_deg": "55.97999954223633", + "longitude_deg": "49.58100128173828", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TA", + "municipality": "Kurkachi", + "scheduled_service": "no", + "keywords": "Аэродром Куркачи" + }, + { + "id": "44480", + "ident": "RU-0148", + "type": "small_airport", + "name": "Maikhe Airfield", + "latitude_deg": "43.423353", + "longitude_deg": "132.422864", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Shtykovo", + "scheduled_service": "no", + "keywords": "Аэродром Майхэ" + }, + { + "id": "44481", + "ident": "RU-0149", + "type": "small_airport", + "name": "Uglovaya Air Base", + "latitude_deg": "43.347977", + "longitude_deg": "132.058755", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Artyom", + "scheduled_service": "no", + "local_code": "XHIU", + "keywords": "Uglovoye Air Base, Аэродром Угловая, Аэродром Угловое, UHIU" + }, + { + "id": "44555", + "ident": "RU-0150", + "type": "heliport", + "name": "Saint Petersburg Children's Hospital No.1 Helipad", + "latitude_deg": "59.836299896240234", + "longitude_deg": "30.186500549316406", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SPE", + "municipality": "Saint Petersburg", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Детской больницы № 1" + }, + { + "id": "44556", + "ident": "RU-0151", + "type": "heliport", + "name": "Petropavlovskaya Krepost Helipad", + "latitude_deg": "59.9514835454", + "longitude_deg": "30.3137147427", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SPE", + "municipality": "Saint Petersburg", + "scheduled_service": "no", + "keywords": "Peter and Paul Fortress Helipad, Вертолётная площадка Петропавловская Крепость, УЛЛЯ" + }, + { + "id": "44575", + "ident": "RU-0152", + "type": "medium_airport", + "name": "Mozdok Air Base", + "latitude_deg": "43.78499984741211", + "longitude_deg": "44.599998474121094", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SE", + "municipality": "Mozdok", + "scheduled_service": "no", + "keywords": "Аэродром Моздок" + }, + { + "id": "44576", + "ident": "RU-0153", + "type": "closed", + "name": "Komendantskiy Airfield", + "latitude_deg": "59.99700164794922", + "longitude_deg": "30.290000915527344", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SPE", + "municipality": "St. Petersburg", + "scheduled_service": "no", + "keywords": "Komendantsky Airfield, Комендантский Аэродром" + }, + { + "id": "44580", + "ident": "RU-0154", + "type": "closed", + "name": "Ropsha Airfield", + "latitude_deg": "59.71099853515625", + "longitude_deg": "29.80500030517578", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Ropsha", + "scheduled_service": "no", + "keywords": "Аэродром Ропша" + }, + { + "id": "44581", + "ident": "RU-0155", + "type": "small_airport", + "name": "Seltso Airfield", + "latitude_deg": "59.617443", + "longitude_deg": "29.542865", + "elevation_ft": "476", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Seltso", + "scheduled_service": "no", + "gps_code": "ULSC", + "wikipedia_link": "https://ru.wikipedia.org/wiki/%D0%90%D1%8D%D1%80%D0%BE%D0%B4%D1%80%D0%BE%D0%BC_%D0%A1%D0%B5%D0%BB%D1%8C%D1%86%D0%BE", + "keywords": "Аэродром Сельцо, Sel'tso, Kas'kovo" + }, + { + "id": "44598", + "ident": "RU-0156", + "type": "small_airport", + "name": "Solnechniy Airfield", + "latitude_deg": "56.108001708984375", + "longitude_deg": "92.93699645996094", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Krasnoyarsk", + "scheduled_service": "no", + "keywords": "Solnechny Airfield, Аэродром Солнечный" + }, + { + "id": "44599", + "ident": "RU-0157", + "type": "small_airport", + "name": "Manskiy Airfield", + "latitude_deg": "55.76300048828125", + "longitude_deg": "93.7770004272461", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Shalinskoye", + "scheduled_service": "no", + "home_link": "http://www.mansky.ru/", + "keywords": "Mansky Airfield, Аэродром Манский" + }, + { + "id": "44603", + "ident": "RU-0158", + "type": "small_airport", + "name": "Severskaya Airfield", + "latitude_deg": "44.85499954223633", + "longitude_deg": "38.63999938964844", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Severskaya", + "scheduled_service": "no", + "keywords": "Аэродром Северская" + }, + { + "id": "44604", + "ident": "RU-0159", + "type": "closed", + "name": "Izborsk Airport", + "latitude_deg": "57.71500015258789", + "longitude_deg": "27.70400047302246", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PSK", + "municipality": "Izborsk", + "scheduled_service": "no", + "keywords": "Аэропорт Изборск" + }, + { + "id": "44608", + "ident": "RU-0160", + "type": "heliport", + "name": "Sennaya Guba Helipad", + "latitude_deg": "61.99599838256836", + "longitude_deg": "35.22800064086914", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KR", + "municipality": "Sennaya Guba", + "scheduled_service": "no", + "keywords": "Сенная Губа" + }, + { + "id": "44609", + "ident": "RU-0161", + "type": "closed", + "name": "Tikhvin Airfield", + "latitude_deg": "59.650002", + "longitude_deg": "33.595001", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Tikhvin", + "scheduled_service": "no", + "gps_code": "ULST", + "keywords": "Аэропорт Тихвин" + }, + { + "id": "44616", + "ident": "RU-0162", + "type": "small_airport", + "name": "Maksimkin Yar Airport", + "latitude_deg": "58.68242645263672", + "longitude_deg": "86.82374572753906", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-TOM", + "municipality": "Maksimkin Yar", + "scheduled_service": "no", + "keywords": "Аэропорт Максимкин Яр" + }, + { + "id": "44618", + "ident": "RU-0163", + "type": "closed", + "name": "Yegorlykskaya Air Base", + "latitude_deg": "46.573002", + "longitude_deg": "40.59", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Yegorlykskaya", + "scheduled_service": "no", + "local_code": "XRRL", + "keywords": "Egorlykskaya Airfield, Аэродром Егорлыкская" + }, + { + "id": "44619", + "ident": "RU-0164", + "type": "small_airport", + "name": "Tikhoretsk Air Base", + "latitude_deg": "45.87900161743164", + "longitude_deg": "40.10499954223633", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Tikhoretsk", + "scheduled_service": "no", + "keywords": "Tihoretsk Air Base, Аэродром Тихорецк" + }, + { + "id": "44620", + "ident": "RU-0165", + "type": "small_airport", + "name": "Agoy Airfield", + "latitude_deg": "44.138929", + "longitude_deg": "39.028943", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Agoy", + "scheduled_service": "no", + "keywords": "Agoi Airport, Аэродром Агой" + }, + { + "id": "44621", + "ident": "RU-0166", + "type": "small_airport", + "name": "Giaginskaya Airfield", + "latitude_deg": "44.887001037597656", + "longitude_deg": "39.96500015258789", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AD", + "municipality": "Giaginskaya", + "scheduled_service": "no", + "keywords": "Giaginskaya Northwest Airfield, Аэродром Гиагинская" + }, + { + "id": "44622", + "ident": "RU-0167", + "type": "small_airport", + "name": "Mozhga Airport", + "latitude_deg": "56.42380142211914", + "longitude_deg": "52.27870178222656", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-UD", + "municipality": "Mozhga", + "scheduled_service": "no", + "keywords": "Аэропорт Можга" + }, + { + "id": "44623", + "ident": "RU-0168", + "type": "small_airport", + "name": "Sarmany Airport", + "latitude_deg": "55.257999420166016", + "longitude_deg": "52.573001861572266", + "elevation_ft": "449", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TA", + "municipality": "Sarmanovo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sarmany_Airport", + "keywords": "Sarmanovo Airport, Аэропорт Сарманы, Аэропорт Сарманово" + }, + { + "id": "44631", + "ident": "RU-0169", + "type": "small_airport", + "name": "Byngi Airfield", + "latitude_deg": "57.57500076293945", + "longitude_deg": "60.209999084472656", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SVE", + "municipality": "Nevyansk", + "scheduled_service": "no", + "keywords": "Nevyansk Airfield, Аэродром Быньги, Аэродром Невьянск" + }, + { + "id": "44632", + "ident": "RU-0170", + "type": "small_airport", + "name": "Baltym Airfield", + "latitude_deg": "57.10900115966797", + "longitude_deg": "60.606998443603516", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SVE", + "municipality": "Krasny Aduy", + "scheduled_service": "no", + "keywords": "Аэродром Балтым" + }, + { + "id": "44633", + "ident": "RU-0171", + "type": "small_airport", + "name": "Troitsk Air Base", + "latitude_deg": "54.11000061035156", + "longitude_deg": "61.53499984741211", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-CHE", + "municipality": "Troitsk", + "scheduled_service": "no", + "keywords": "Аэродром Троицк" + }, + { + "id": "44634", + "ident": "RU-0172", + "type": "small_airport", + "name": "Gudron Airfield", + "latitude_deg": "51.210999", + "longitude_deg": "58.682999", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-ORE", + "municipality": "Orsk", + "scheduled_service": "no", + "keywords": "Аэродром Гудрон" + }, + { + "id": "44635", + "ident": "RU-0173", + "type": "small_airport", + "name": "Georgiyevka Airfield", + "latitude_deg": "53.28499984741211", + "longitude_deg": "51.03099822998047", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAM", + "municipality": "Georgiyevka", + "scheduled_service": "no", + "keywords": "Georgievka Airfield, Аэродром Георгиевка" + }, + { + "id": "44637", + "ident": "RU-0174", + "type": "heliport", + "name": "Emergency Medicine Research Institute Helipad", + "latitude_deg": "59.873600006103516", + "longitude_deg": "30.358699798583984", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SPE", + "municipality": "Saint Petersburg", + "scheduled_service": "no", + "home_link": "http://www.emergency.spb.ru/", + "keywords": "Вертолётная площадка НИИ Скорой помощи" + }, + { + "id": "44638", + "ident": "RU-0175", + "type": "heliport", + "name": "Ambassador Hotel Helipad", + "latitude_deg": "59.924900054932", + "longitude_deg": "30.310459136963", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SPE", + "municipality": "Saint Petersburg", + "scheduled_service": "no", + "gps_code": "ULLH", + "local_code": "ULLH", + "keywords": "УЛЛХ, Вертолётная площадка отеля Амбассадор" + }, + { + "id": "44639", + "ident": "RU-0176", + "type": "heliport", + "name": "Marli Helipad", + "latitude_deg": "59.8904533386", + "longitude_deg": "29.8946247101", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SPE", + "municipality": "Saint Petersburg", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Марли" + }, + { + "id": "44640", + "ident": "RU-0177", + "type": "heliport", + "name": "Uglich Fominskoye Helipad", + "latitude_deg": "57.548500061035156", + "longitude_deg": "38.2953987121582", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAR", + "municipality": "Uglich", + "scheduled_service": "no", + "keywords": "Uglich Fominskoe Helipad, Вертолётная площадка Углич-Фоминское" + }, + { + "id": "44641", + "ident": "RU-0178", + "type": "heliport", + "name": "Yaskino Helipad", + "latitude_deg": "59.170249938964844", + "longitude_deg": "39.82509994506836", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLG", + "municipality": "Vologda", + "scheduled_service": "no", + "keywords": "Abramtsevo Helipad, Вертолётная площадка Яскино, Вертолётная площадка Абрамцево" + }, + { + "id": "44642", + "ident": "RU-0179", + "type": "heliport", + "name": "Tushino Children's Hospital Helipad", + "latitude_deg": "55.85139846801758", + "longitude_deg": "37.40190124511719", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "municipality": "Moscow", + "scheduled_service": "no", + "home_link": "http://tdgb-mos.ru/", + "keywords": "Вертолётная площадка Тушинской Детской больницы" + }, + { + "id": "44643", + "ident": "RU-0180", + "type": "heliport", + "name": "Alyye Parusa Helipad", + "latitude_deg": "55.80670166015625", + "longitude_deg": "37.449501037597656", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "municipality": "Moscow", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Алые Паруса" + }, + { + "id": "44644", + "ident": "RU-0181", + "type": "heliport", + "name": "Solntsevo Heliport", + "latitude_deg": "55.643001556396484", + "longitude_deg": "37.387001037597656", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "UUWS", + "home_link": "http://www.aovzlet.ru/ENG/index.html", + "keywords": "Vzlyot Heliport, Vzlet Heliport, Вертодром Солнцево, Вертодром НПО \"Взлёт\", Вертодром НПО \"Взлет\"" + }, + { + "id": "44699", + "ident": "RU-0182", + "type": "small_airport", + "name": "Chegdomyn Airport", + "latitude_deg": "51.136162", + "longitude_deg": "132.941573", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Chegdomyn", + "scheduled_service": "no", + "gps_code": "UHHM", + "keywords": "Аэропорт Чегдомын" + }, + { + "id": "44649", + "ident": "RU-0183", + "type": "closed", + "name": "Kyargozero Air Base", + "latitude_deg": "63.3050003052", + "longitude_deg": "34.4550018311", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KR", + "municipality": "Ramentsy", + "scheduled_service": "no", + "keywords": "Аэродром Кяргозеро" + }, + { + "id": "44650", + "ident": "RU-0184", + "type": "small_airport", + "name": "Yuryevskoye Airport", + "latitude_deg": "56.779998779296875", + "longitude_deg": "36.28499984741211", + "elevation_ft": "397", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TVE", + "municipality": "Yuryevskoye", + "scheduled_service": "no", + "home_link": "http://www.volganka.ru/aero.html", + "keywords": "Yuryevskoe Airport, Volzhanka Airport, Аэродром Юрьевское, Аэродром Волжанка" + }, + { + "id": "44652", + "ident": "RU-0185", + "type": "small_airport", + "name": "Marino Airstrip", + "latitude_deg": "56.6339988708", + "longitude_deg": "36.8860015869", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TVE", + "municipality": "Filimonovo", + "scheduled_service": "no", + "keywords": "Filimonovo Airstrip, ВПП Марьино, ВПП Филимоново" + }, + { + "id": "44653", + "ident": "RU-0186", + "type": "heliport", + "name": "Torzhok Helicopter Base", + "latitude_deg": "57.043818", + "longitude_deg": "35.001704", + "elevation_ft": "565", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TVE", + "municipality": "Torzhok", + "scheduled_service": "no", + "local_code": "UUAX", + "keywords": "Вертолётодром Торжок, УУАН" + }, + { + "id": "44654", + "ident": "RU-0187", + "type": "heliport", + "name": "Blagoveshchenye Vertodrom", + "latitude_deg": "56.326", + "longitude_deg": "38.099998", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Sergiev Posad", + "scheduled_service": "no", + "gps_code": "UUMX", + "keywords": "Blagoveschenye Airfield, Аэродром Благовещенье" + }, + { + "id": "44655", + "ident": "RU-0188", + "type": "seaplane_base", + "name": "Dubna Seaplane Base", + "latitude_deg": "56.71500015258789", + "longitude_deg": "37.05500030517578", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Dubna", + "scheduled_service": "no", + "keywords": "Гидроаэродром Дубна" + }, + { + "id": "44656", + "ident": "RU-0189", + "type": "medium_airport", + "name": "Kostomuksha Airport", + "latitude_deg": "64.61799621579999", + "longitude_deg": "30.687000274699997", + "elevation_ft": "681", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KR", + "municipality": "Kostomuksha", + "scheduled_service": "yes", + "gps_code": "ULPM", + "keywords": "Аэропорт Костомукша, УЛПМ" + }, + { + "id": "44700", + "ident": "RU-0190", + "type": "heliport", + "name": "Pugachyov Heliport", + "latitude_deg": "52.03300094604492", + "longitude_deg": "48.81999969482422", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAR", + "municipality": "Pugachyov", + "scheduled_service": "no", + "keywords": "Pugachev Heliport, Вертодром Пугачёв, Вертодром Пугачев" + }, + { + "id": "44658", + "ident": "RU-0191", + "type": "small_airport", + "name": "Pyaozero Airport", + "latitude_deg": "65.76899719238281", + "longitude_deg": "30.976999282836914", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KR", + "municipality": "Pyaozerskiy", + "scheduled_service": "no", + "keywords": "Pyaozero Airport, Pyaozerskiy Airport, Pyaozersky Airport, Аэропорт Пяозеро, Аэропорт Пяозерский" + }, + { + "id": "44701", + "ident": "RU-0192", + "type": "small_airport", + "name": "Kozhin Airfield", + "latitude_deg": "51.125", + "longitude_deg": "49.63999938964844", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAR", + "municipality": "Ozinki", + "scheduled_service": "no", + "keywords": "Ozinki Airfield, Аэродром Кожин, Аэродром Озинки" + }, + { + "id": "44702", + "ident": "RU-0193", + "type": "heliport", + "name": "Pushkino Heliport", + "latitude_deg": "56.041999816899995", + "longitude_deg": "37.9780006409", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Zverosovkhoz", + "scheduled_service": "no", + "home_link": "http://www.agusta.ru/", + "keywords": "Вертодром Пушкино" + }, + { + "id": "44661", + "ident": "RU-0194", + "type": "closed", + "name": "Sinegorye Airport", + "latitude_deg": "62.26499938964844", + "longitude_deg": "150.75", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MAG", + "municipality": "Sinegorye", + "scheduled_service": "no", + "keywords": "Аэропорт Синегорье" + }, + { + "id": "44739", + "ident": "RU-0195", + "type": "small_airport", + "name": "Kinel-Cherkassy Air Base", + "latitude_deg": "53.46500015258789", + "longitude_deg": "51.560001373291016", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAM", + "municipality": "Kinel-Cherkassy", + "scheduled_service": "no", + "keywords": "Tolkay Air Base, Аэродром Кинель-Черкассы, Аэродром Толкай" + }, + { + "id": "44663", + "ident": "RU-0196", + "type": "small_airport", + "name": "Tomtor Airport", + "latitude_deg": "63.243", + "longitude_deg": "143.173004", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Tomtor", + "scheduled_service": "no", + "gps_code": "UEMJ", + "keywords": "Аэропорт Томтор, Oymyakon" + }, + { + "id": "44743", + "ident": "RU-0197", + "type": "small_airport", + "name": "Zimovniki Air Base", + "latitude_deg": "47.141998291015625", + "longitude_deg": "42.39500045776367", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Zimovniki", + "scheduled_service": "no", + "keywords": "Аэродром Зимовники" + }, + { + "id": "44665", + "ident": "RU-0198", + "type": "small_airport", + "name": "Solnechniy Airport", + "latitude_deg": "60.256935", + "longitude_deg": "137.512608", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Ust-Ynykchan", + "scheduled_service": "no", + "gps_code": "UEML", + "keywords": "Solnechny Airport, Ust-Ynykchan Airport, Аэропорт Солнечный, Аэропорт Усть-Ыныкчан" + }, + { + "id": "44666", + "ident": "RU-0199", + "type": "small_airport", + "name": "Dzhebariki-Khaya Airport", + "latitude_deg": "62.189998626708984", + "longitude_deg": "135.86500549316406", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Dzhebariki-Khaya", + "scheduled_service": "no", + "keywords": "Dzhebariki-Haya Airport, Аэропорт Джебарики-Хая" + }, + { + "id": "44667", + "ident": "RU-0200", + "type": "small_airport", + "name": "Typliy Klyuch Airport", + "latitude_deg": "62.7890014648", + "longitude_deg": "136.854995728", + "elevation_ft": "925", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Khandyga", + "scheduled_service": "no", + "gps_code": "UEMH", + "iata_code": "KDY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Teply_Klyuch_Airport", + "keywords": "Tyoply Klyuch Airport, Tepliy Klyuch Airport, Khandyga Airport, Аэропорт Тёплый Ключ, Аэропорт Теплый Ключ, Аэропорт Хандыга, УЕМХ" + }, + { + "id": "44746", + "ident": "RU-0201", + "type": "closed", + "name": "Shabanovo Airfield", + "latitude_deg": "57.794997", + "longitude_deg": "28.299999", + "elevation_ft": "148", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PSK", + "municipality": "Pskov", + "scheduled_service": "no", + "local_code": "XLLB", + "keywords": "ЬЛЛБ, Аэродром Шабаново" + }, + { + "id": "44751", + "ident": "RU-0202", + "type": "small_airport", + "name": "Karachikha Airfield", + "latitude_deg": "57.650002", + "longitude_deg": "39.759998", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAR", + "municipality": "Yaroslavl", + "scheduled_service": "no", + "local_code": "XUDA", + "keywords": "Аэродром Карачиха" + }, + { + "id": "44758", + "ident": "RU-0203", + "type": "small_airport", + "name": "Koyda Airport", + "latitude_deg": "66.377998", + "longitude_deg": "42.557999", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Koyda", + "scheduled_service": "no", + "keywords": "Koida Airport, Аэропорт Койда, UKAN" + }, + { + "id": "44761", + "ident": "RU-0204", + "type": "small_airport", + "name": "Kanevka Airport", + "latitude_deg": "67.12100219726562", + "longitude_deg": "39.71699905395508", + "elevation_ft": "492", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Kanevka", + "scheduled_service": "no", + "keywords": "Аэропорт Каневка" + }, + { + "id": "44763", + "ident": "RU-0205", + "type": "small_airport", + "name": "Sosnovka Airstrip", + "latitude_deg": "66.503998", + "longitude_deg": "40.577999", + "elevation_ft": "82", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Sosnovka", + "scheduled_service": "no", + "gps_code": "ULMS", + "keywords": "Аэропорт Сосновка" + }, + { + "id": "44764", + "ident": "RU-0206", + "type": "closed", + "name": "Tetrino Airfield", + "latitude_deg": "66.058767", + "longitude_deg": "38.282633", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Tetrino", + "scheduled_service": "no", + "local_code": "ZFJ6", + "keywords": "Аэропорт Тетрино" + }, + { + "id": "44766", + "ident": "RU-0207", + "type": "heliport", + "name": "Chavanga Helistrip", + "latitude_deg": "66.112731", + "longitude_deg": "37.757778", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Chavanga", + "scheduled_service": "no", + "gps_code": "ULMQ", + "keywords": "Аэропорт Чаваньга, УЛМЯ" + }, + { + "id": "44767", + "ident": "RU-0208", + "type": "closed", + "name": "Chapoma Airport", + "latitude_deg": "66.114998", + "longitude_deg": "38.825001", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Chapoma", + "scheduled_service": "no", + "gps_code": "ULMP", + "keywords": "УЛМП, Аэропорт Чапома" + }, + { + "id": "44774", + "ident": "RU-0209", + "type": "closed", + "name": "Derevyannoe Airport", + "latitude_deg": "61.606998", + "longitude_deg": "34.620998", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KR", + "municipality": "Derevyannoe", + "scheduled_service": "no", + "local_code": "XLPD", + "keywords": "Аэропорт Деревянное" + }, + { + "id": "44801", + "ident": "RU-0210", + "type": "small_airport", + "name": "Aginskoye Airport", + "latitude_deg": "55.26599884033203", + "longitude_deg": "94.86000061035156", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Aginskoye", + "scheduled_service": "no", + "keywords": "Аэропорт Агинское" + }, + { + "id": "44866", + "ident": "RU-0211", + "type": "medium_airport", + "name": "Taganrog Tsentralny Air Base", + "latitude_deg": "47.24645", + "longitude_deg": "38.8403", + "elevation_ft": "151", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Taganrog", + "scheduled_service": "no", + "local_code": "XRRC", + "keywords": "ЬРРЦ, Taganrog Northwest Airport, Аэропорт Таганрог Центральный" + }, + { + "id": "44883", + "ident": "RU-0212", + "type": "small_airport", + "name": "Arsenyev Sport Airfield", + "latitude_deg": "44.142367", + "longitude_deg": "133.272228", + "elevation_ft": "630", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Arsenyev", + "scheduled_service": "no", + "gps_code": "UHWA", + "local_code": "UHWA", + "home_link": "http://sky.vvo.ru/", + "keywords": "УХВА, Аэродром Арсеньев" + }, + { + "id": "44884", + "ident": "RU-0213", + "type": "heliport", + "name": "Panki Heliport", + "latitude_deg": "55.668301", + "longitude_deg": "37.931999", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Lyubertsy", + "scheduled_service": "no", + "local_code": "XUCL", + "home_link": "http://www.mi-helicopter.ru/index_eng.html", + "keywords": "Вертодром Панки" + }, + { + "id": "44885", + "ident": "RU-0214", + "type": "heliport", + "name": "Ukhtomskaya Heliport", + "latitude_deg": "55.69729995727539", + "longitude_deg": "37.87900161743164", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Lyubertsy", + "scheduled_service": "no", + "home_link": "http://www.kamov.ru/", + "keywords": "Вертодром Ухтомская" + }, + { + "id": "44886", + "ident": "RU-0215", + "type": "heliport", + "name": "Zhulebino Heliport", + "latitude_deg": "55.6870002746582", + "longitude_deg": "37.84000015258789", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "municipality": "Moscow", + "scheduled_service": "no", + "keywords": "Вертодром Жулебино" + }, + { + "id": "44898", + "ident": "RU-0216", + "type": "small_airport", + "name": "Vokhma Airport", + "latitude_deg": "58.91699981689453", + "longitude_deg": "46.72700119018555", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KOS", + "municipality": "Vokhma", + "scheduled_service": "no", + "keywords": "Аэропорт Вохма" + }, + { + "id": "44899", + "ident": "RU-0217", + "type": "medium_airport", + "name": "Sormovo Airfield", + "latitude_deg": "56.31999969482422", + "longitude_deg": "43.79999923706055", + "elevation_ft": "249", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NIZ", + "municipality": "Nizhniy Novgorod", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sormovo_%28airfield%29", + "keywords": "Аэродром Сормово" + }, + { + "id": "44912", + "ident": "RU-0218", + "type": "small_airport", + "name": "Bolshoye Gryzlovo Airfield", + "latitude_deg": "54.785", + "longitude_deg": "37.645", + "elevation_ft": "797", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Pushchino", + "scheduled_service": "no", + "gps_code": "UUDG", + "home_link": "http://finam.aero/ostore/aerodrom_bg.html", + "keywords": "Bolshoe Gryzlovo Airfield, Pushchino Airfield, Puschino Airfield, Аэродром Большое Грызлово, Аэродром Пущино" + }, + { + "id": "44913", + "ident": "RU-0219", + "type": "small_airport", + "name": "Drakino Airfield", + "latitude_deg": "54.873", + "longitude_deg": "37.267", + "elevation_ft": "410", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Serpukhov", + "scheduled_service": "no", + "keywords": "Аэродром Дракино" + }, + { + "id": "44914", + "ident": "RU-0220", + "type": "small_airport", + "name": "Volosovo Airfield", + "latitude_deg": "55.068", + "longitude_deg": "37.454", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Volosovo", + "scheduled_service": "no", + "home_link": "http://www.volosovo.ru/", + "keywords": "Аэродром Волосово" + }, + { + "id": "44915", + "ident": "RU-0221", + "type": "closed", + "name": "Sonino Airstrip", + "latitude_deg": "55.295953419899995", + "longitude_deg": "37.79211044309999", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Sonino", + "scheduled_service": "no", + "keywords": "ВПП Сонино" + }, + { + "id": "44916", + "ident": "RU-0222", + "type": "small_airport", + "name": "Lobanovo Airstrip", + "latitude_deg": "55.2868509649", + "longitude_deg": "37.941627502399996", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Barybino", + "scheduled_service": "no", + "keywords": "ВПП Лобаново" + }, + { + "id": "44917", + "ident": "RU-0223", + "type": "heliport", + "name": "Malino Heliport", + "latitude_deg": "55.085", + "longitude_deg": "38.145", + "elevation_ft": "604", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Malino", + "scheduled_service": "no", + "keywords": "Вертодром Малино" + }, + { + "id": "44918", + "ident": "RU-0224", + "type": "small_airport", + "name": "Pakhomovo Airfield", + "latitude_deg": "54.625", + "longitude_deg": "37.575", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TUL", + "municipality": "Pakhomovo", + "scheduled_service": "no", + "home_link": "http://aeroclub.msk.ru/", + "keywords": "Аэродром Пахомово" + }, + { + "id": "44919", + "ident": "RU-0225", + "type": "closed", + "name": "Bronnitsy Airfield", + "latitude_deg": "55.424", + "longitude_deg": "38.3015", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Bronnitsy", + "scheduled_service": "no", + "local_code": "ZB34", + "keywords": "Аэродром Бронницы" + }, + { + "id": "44921", + "ident": "RU-0226", + "type": "small_airport", + "name": "Korobcheyevo Airfield", + "latitude_deg": "55.092666", + "longitude_deg": "38.923033", + "elevation_ft": "404", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Kolomna", + "scheduled_service": "no", + "local_code": "XUMK", + "keywords": "ЬУМК, Korobcheevo Airfield, Аэродром Коробчеево" + }, + { + "id": "44922", + "ident": "RU-0227", + "type": "closed", + "name": "Uzunovo Airport", + "latitude_deg": "54.526461314500004", + "longitude_deg": "38.5971164703", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Uzunovo", + "scheduled_service": "no", + "keywords": "Аэропорт Узуново" + }, + { + "id": "44923", + "ident": "RU-0228", + "type": "small_airport", + "name": "Rydoma Airfield", + "latitude_deg": "54.260288", + "longitude_deg": "37.256187", + "elevation_ft": "673", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TUL", + "municipality": "Rydomo", + "scheduled_service": "no", + "keywords": "Аэродром Рыдома" + }, + { + "id": "44924", + "ident": "RU-0229", + "type": "small_airport", + "name": "Myasnovo Airfield", + "latitude_deg": "54.213931", + "longitude_deg": "37.553004", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TUL", + "municipality": "Tula", + "scheduled_service": "no", + "keywords": "Аэродром Мясново" + }, + { + "id": "44925", + "ident": "RU-0230", + "type": "small_airport", + "name": "Ryazhsk Airfield", + "latitude_deg": "53.695", + "longitude_deg": "40.005", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-RYA", + "municipality": "Ryazhsk", + "scheduled_service": "no", + "keywords": "Аэродром Ряжск" + }, + { + "id": "44926", + "ident": "RU-0231", + "type": "small_airport", + "name": "Vatulino Airfield", + "latitude_deg": "55.661964", + "longitude_deg": "36.139039", + "elevation_ft": "689", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Ruza", + "scheduled_service": "no", + "gps_code": "UUMW", + "home_link": "http://www.ak-vatulino.ru", + "keywords": "Аэродром Ватулино, Batulino" + }, + { + "id": "44927", + "ident": "RU-0232", + "type": "small_airport", + "name": "Bezhitsa Airfield", + "latitude_deg": "53.337", + "longitude_deg": "34.233", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BRY", + "municipality": "Bryansk", + "scheduled_service": "no", + "keywords": "Bordovichi Airfield, Аэродром Бежица, Аэродром Бордовичи" + }, + { + "id": "44928", + "ident": "RU-0233", + "type": "closed", + "name": "Kasimov Airport", + "latitude_deg": "54.931", + "longitude_deg": "41.424", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-RYA", + "municipality": "Kasimov", + "scheduled_service": "no", + "keywords": "Аэропорт Касимов" + }, + { + "id": "44929", + "ident": "RU-0234", + "type": "heliport", + "name": "Emergency Children's Surgery and Traumatology Research Institute Helipad", + "latitude_deg": "55.7377542577", + "longitude_deg": "37.6176381111", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "UUUH", + "keywords": "Вертолётная площадка Научно-исследовательский институт неотложной детской хирургии и травматологии, УУУХ" + }, + { + "id": "44978", + "ident": "RU-0235", + "type": "small_airport", + "name": "Akhty Airfield", + "latitude_deg": "41.4744544227", + "longitude_deg": "47.7015209198", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-DA", + "scheduled_service": "no" + }, + { + "id": "44993", + "ident": "RU-0236", + "type": "small_airport", + "name": "Vyazma Zapadny Airstrip", + "latitude_deg": "55.203561416899994", + "longitude_deg": "34.2527103424", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SMO", + "municipality": "Vyazma", + "scheduled_service": "no", + "keywords": "Vyazma Zapadnaya Airstrip, Vyazma West Airstrip, ВПП Вязьма Западная" + }, + { + "id": "44994", + "ident": "RU-0237", + "type": "heliport", + "name": "Kozelsk Heliport", + "latitude_deg": "54.054", + "longitude_deg": "35.757", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KLU", + "municipality": "Kozelsk", + "scheduled_service": "no", + "keywords": "Вертодром Козельск" + }, + { + "id": "44995", + "ident": "RU-0238", + "type": "small_airport", + "name": "Medyn Airfield", + "latitude_deg": "54.946", + "longitude_deg": "35.861", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KLU", + "municipality": "Medyn", + "scheduled_service": "no", + "keywords": "Аэродром Медынь" + }, + { + "id": "44996", + "ident": "RU-0239", + "type": "small_airport", + "name": "Starodub Airport", + "latitude_deg": "52.571", + "longitude_deg": "32.797", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BRY", + "municipality": "Starodub", + "scheduled_service": "no", + "keywords": "Аэропорт Стародуб" + }, + { + "id": "44998", + "ident": "RU-0240", + "type": "medium_airport", + "name": "Seshcha Air Base", + "latitude_deg": "53.715", + "longitude_deg": "33.34", + "elevation_ft": "692", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BRY", + "municipality": "Dubrovka", + "scheduled_service": "no", + "keywords": "Sescha Air Base, Аэродром Сеща" + }, + { + "id": "44999", + "ident": "RU-0241", + "type": "small_airport", + "name": "Rybinsk Yuzhny Airfield", + "latitude_deg": "58", + "longitude_deg": "38.84", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAR", + "municipality": "Rybinsk", + "scheduled_service": "no", + "keywords": "Rybinsk South Airfield, Kstovo Airfield, Аэродром Рыбинск Южный, Аэродром Кстово" + }, + { + "id": "45000", + "ident": "RU-0242", + "type": "small_airport", + "name": "Kirzhach Airfield", + "latitude_deg": "56.157", + "longitude_deg": "38.83", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLA", + "municipality": "Kirzhach", + "scheduled_service": "no", + "keywords": "Аэродром Киржач" + }, + { + "id": "45001", + "ident": "RU-0243", + "type": "small_airport", + "name": "Ivanovo Yasyunikha Airfield", + "latitude_deg": "56.964", + "longitude_deg": "41.071", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-IVA", + "municipality": "Ivanovo", + "scheduled_service": "no", + "keywords": "Аэродром Иваново Ясюниха" + }, + { + "id": "45002", + "ident": "RU-0244", + "type": "heliport", + "name": "Krasnyye Sosenki Heliport", + "latitude_deg": "56.843", + "longitude_deg": "40.485", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-IVA", + "municipality": "Teykovo", + "scheduled_service": "no", + "keywords": "Вертодром Тейково" + }, + { + "id": "45003", + "ident": "RU-0245", + "type": "small_airport", + "name": "Nikitino Airfield", + "latitude_deg": "56.806", + "longitude_deg": "37.69", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Taldom", + "scheduled_service": "no", + "keywords": "Аэродром Никитино" + }, + { + "id": "45004", + "ident": "RU-0246", + "type": "small_airport", + "name": "Kolchugino Airport", + "latitude_deg": "56.282", + "longitude_deg": "39.473", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLA", + "municipality": "Kolchugino", + "scheduled_service": "no", + "keywords": "Аэропорт Кольчугино" + }, + { + "id": "45005", + "ident": "RU-0247", + "type": "small_airport", + "name": "Alferyevo Airfield", + "latitude_deg": "56.1", + "longitude_deg": "35.875", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Volokolamsk", + "scheduled_service": "no", + "keywords": "Аэродром Алферьево" + }, + { + "id": "45006", + "ident": "RU-0248", + "type": "small_airport", + "name": "Yegoryevsk Airfield", + "latitude_deg": "55.459", + "longitude_deg": "39.037", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Yegoryevsk", + "scheduled_service": "no", + "home_link": "http://paradrom.ru/", + "keywords": "Аэродром Егорьевск" + }, + { + "id": "45013", + "ident": "RU-0249", + "type": "heliport", + "name": "Novaya Heliport", + "latitude_deg": "55.8093", + "longitude_deg": "38.0454", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Balashikha", + "scheduled_service": "no", + "local_code": "HA3G", + "keywords": "Вертодром Новая" + }, + { + "id": "45014", + "ident": "RU-0250", + "type": "heliport", + "name": "Shevlino Helipad", + "latitude_deg": "56.085", + "longitude_deg": "36.791666666699996", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Шевлино" + }, + { + "id": "45015", + "ident": "RU-0251", + "type": "heliport", + "name": "Anosino-1 Helipad", + "latitude_deg": "55.8470300909", + "longitude_deg": "36.982678771", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Аносино-1" + }, + { + "id": "45016", + "ident": "RU-0252", + "type": "heliport", + "name": "Barvikha-3 Helipad", + "latitude_deg": "55.7596043747", + "longitude_deg": "37.282469272600004", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Barvikha", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Барвиха-3" + }, + { + "id": "45017", + "ident": "RU-0253", + "type": "heliport", + "name": "City Clinical Hospital No.71 Helipad", + "latitude_deg": "55.7224908678", + "longitude_deg": "37.4304252863", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "UUUR", + "keywords": "GKB-71 Helipad, Вертолётная площадка ГКБ-71, Вертолётная площадка Городская Клиническая Больница 71, УУУР" + }, + { + "id": "45018", + "ident": "RU-0254", + "type": "heliport", + "name": "City Clinical Hospital No.20 Helipad", + "latitude_deg": "55.8655410432", + "longitude_deg": "37.6645928621", + "elevation_ft": "480", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "UUUQ", + "local_code": "UUUQ", + "keywords": "УУУЯ, GKB-20 Helipad, Вертолётная площадка ГКБ-20, Вертолётная площадка Городская Клиническая Больница № 20, УУУЯ" + }, + { + "id": "45019", + "ident": "RU-0255", + "type": "heliport", + "name": "Emergency Medicine Research Institute Helipad", + "latitude_deg": "55.7763618236", + "longitude_deg": "37.6385325193", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "UUUD", + "keywords": "Вертолётная площадка НИИ Скорой помощи имени Склифосовского, Вертолётная площадка НИИ СП, УУУД" + }, + { + "id": "45020", + "ident": "RU-0256", + "type": "heliport", + "name": "Nagornoye Helipad", + "latitude_deg": "55.9128802485", + "longitude_deg": "37.6252770424", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Mytishchi", + "scheduled_service": "no", + "keywords": "Nagornoe Helipad, Вертолётная площадка Нагорное" + }, + { + "id": "35118", + "ident": "RU-0257", + "type": "small_airport", + "name": "Vyazma Airport", + "latitude_deg": "55.148322", + "longitude_deg": "34.382915", + "elevation_ft": "794", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SMO", + "municipality": "Vyazma", + "scheduled_service": "no", + "local_code": "XUMR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vyazma_Airport", + "keywords": "Dvoyevka Airfield, Dvoevka Airfield, Аэродром Вязьма, Аэродром Двоевка" + }, + { + "id": "45021", + "ident": "RU-0258", + "type": "heliport", + "name": "City Clinical Hospital No.15 Helipad", + "latitude_deg": "55.7297442141", + "longitude_deg": "37.8306913376", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "UUUN", + "keywords": "GKB-15 Helipad, Вертолётная площадка ГКБ-15, Вертолётная площадка Городская Клиническая Больница № 15, УУУН" + }, + { + "id": "45022", + "ident": "RU-0259", + "type": "heliport", + "name": "City Clinical Hospital No.7 Helipad", + "latitude_deg": "55.6615168095", + "longitude_deg": "37.641418576199996", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "UUUB", + "keywords": "GKB-7 Helipad, Вертолётная площадка ГКБ-7, Вертолётная площадка Городская Клиническая Больница № 7, УУУБ" + }, + { + "id": "45023", + "ident": "RU-0260", + "type": "heliport", + "name": "Bakovka Helipad", + "latitude_deg": "55.682744247799995", + "longitude_deg": "37.333753109", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "municipality": "Moscow", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Баковка" + }, + { + "id": "45024", + "ident": "RU-0261", + "type": "heliport", + "name": "Golitsyno Helipad", + "latitude_deg": "55.5770953068", + "longitude_deg": "36.8873906136", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Golitsyno", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Голицыно" + }, + { + "id": "45025", + "ident": "RU-0262", + "type": "heliport", + "name": "Anino Helipad", + "latitude_deg": "55.5854762102", + "longitude_deg": "37.586331367499994", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "municipality": "Moscow", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Анино" + }, + { + "id": "45026", + "ident": "RU-0263", + "type": "heliport", + "name": "MKAD 35 Kilometr Helipad", + "latitude_deg": "55.5818226716", + "longitude_deg": "37.572743296599995", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "UUUY", + "keywords": "Вертолётная площадка МКАД 35 Километр, УУУЫ" + }, + { + "id": "45027", + "ident": "RU-0264", + "type": "heliport", + "name": "Alabino Helipad", + "latitude_deg": "55.5358682297", + "longitude_deg": "36.9638442993", + "elevation_ft": "614", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Moscow", + "scheduled_service": "no", + "local_code": "XUMA", + "keywords": "ЬУМА, Вертолётная площадка Алабино" + }, + { + "id": "45028", + "ident": "RU-0265", + "type": "heliport", + "name": "Pavlovskoye Helipad", + "latitude_deg": "55.4800147534", + "longitude_deg": "37.7143800259", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "scheduled_service": "no", + "keywords": "Pavlovskoe Helipad, Вертолётная площадка Павловское" + }, + { + "id": "45029", + "ident": "RU-0266", + "type": "heliport", + "name": "Barvikha-4 Helipad", + "latitude_deg": "55.766965502699996", + "longitude_deg": "37.308213114699996", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Барвиха-4" + }, + { + "id": "45030", + "ident": "RU-0267", + "type": "heliport", + "name": "Novo-Ogaryovo Helipad", + "latitude_deg": "55.731157870699995", + "longitude_deg": "37.201756238899996", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Ново-Огарёво" + }, + { + "id": "45031", + "ident": "RU-0268", + "type": "heliport", + "name": "Ogaryovo Heliport", + "latitude_deg": "55.740609", + "longitude_deg": "37.208657", + "elevation_ft": "429", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "UUWO", + "keywords": "УУВО, Вертодром Огарёво, Ogarevo" + }, + { + "id": "45032", + "ident": "RU-0269", + "type": "heliport", + "name": "Gorki-9 Heliport", + "latitude_deg": "55.727494", + "longitude_deg": "37.130055", + "elevation_ft": "446", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "UUWU", + "keywords": "УУВУ, Вертолётная площадка Горки-9" + }, + { + "id": "45033", + "ident": "RU-0270", + "type": "heliport", + "name": "Crocus Expo Helipad", + "latitude_deg": "55.822586", + "longitude_deg": "37.384396", + "elevation_ft": "411", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Krasnogorsk", + "scheduled_service": "no", + "gps_code": "UUUG", + "keywords": "УУУГ, Вертолётная площадка Крокус, Krokus Ekspo" + }, + { + "id": "45034", + "ident": "RU-0271", + "type": "heliport", + "name": "City Children's Clinical Hospital No.9 Helipad", + "latitude_deg": "55.755484071599994", + "longitude_deg": "37.5390440226", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "municipality": "Moscow", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Городская Детская Клиническая Больница № 9" + }, + { + "id": "45035", + "ident": "RU-0272", + "type": "heliport", + "name": "Belaya Dacha Helipad", + "latitude_deg": "55.6550134703", + "longitude_deg": "37.8673732281", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Kotelniki", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Белая Дача" + }, + { + "id": "45036", + "ident": "RU-0273", + "type": "heliport", + "name": "Sofrino Helipad", + "latitude_deg": "56.1551591134", + "longitude_deg": "37.9261350632", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Sofrino", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Софрино" + }, + { + "id": "45037", + "ident": "RU-0274", + "type": "heliport", + "name": "Vlasikha Helipad", + "latitude_deg": "55.6835124185", + "longitude_deg": "37.1829593182", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Vlasikha", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Власиха" + }, + { + "id": "45038", + "ident": "RU-0275", + "type": "closed", + "name": "MKAD 63 Kilometr Helipad", + "latitude_deg": "55.7904882502", + "longitude_deg": "37.3722910881", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "UUUX", + "keywords": "Вертолётная площадка МКАД 63 Километр, УУУЬ" + }, + { + "id": "45039", + "ident": "RU-0276", + "type": "small_airport", + "name": "Oyok Airfield", + "latitude_deg": "52.551", + "longitude_deg": "104.45", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Irkutsk", + "scheduled_service": "no", + "keywords": "Аэродром Оёк, Аэродром Оек" + }, + { + "id": "45041", + "ident": "RU-0277", + "type": "heliport", + "name": "Rzhevka Heliport", + "latitude_deg": "59.979235882", + "longitude_deg": "30.575825572", + "elevation_ft": "56", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "St. Petersburg", + "scheduled_service": "no", + "home_link": "http://www.corporatehelicopters.ru/english/", + "keywords": "Вертодром Ржевка" + }, + { + "id": "45169", + "ident": "RU-0278", + "type": "closed", + "name": "Sukhaya Rechka Naval Air Base", + "latitude_deg": "43.029", + "longitude_deg": "131.542", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Perevoznaya", + "scheduled_service": "no", + "keywords": "Аэродром Сухая Речка" + }, + { + "id": "45171", + "ident": "RU-0279", + "type": "heliport", + "name": "Vera Helipad", + "latitude_deg": "55.6203", + "longitude_deg": "38.1521", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Kratovo", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Вера" + }, + { + "id": "45172", + "ident": "RU-0280", + "type": "heliport", + "name": "Anosino-2 Heliport", + "latitude_deg": "55.8203", + "longitude_deg": "36.968901", + "elevation_ft": "562", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "scheduled_service": "no", + "gps_code": "UUWY", + "local_code": "UUWY", + "keywords": "УУВЫ, Вертодром Аносино-2" + }, + { + "id": "45173", + "ident": "RU-0281", + "type": "small_airport", + "name": "Bely Klyuch Airfield", + "latitude_deg": "54.1965", + "longitude_deg": "48.321", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ULY", + "municipality": "Ulyanovsk", + "scheduled_service": "no", + "keywords": "Beliy Klyuch Airfield, Аэродром Белый Ключ" + }, + { + "id": "45175", + "ident": "RU-0282", + "type": "medium_airport", + "name": "Millerovo Air Base", + "latitude_deg": "48.955177", + "longitude_deg": "40.296356", + "elevation_ft": "499", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Millerovo", + "scheduled_service": "no", + "keywords": "Аэродром Миллерово, ЬРРИ" + }, + { + "id": "45176", + "ident": "RU-0283", + "type": "closed", + "name": "Millerovo Airport", + "latitude_deg": "48.937", + "longitude_deg": "40.417", + "elevation_ft": "492", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Millerovo", + "scheduled_service": "no", + "gps_code": "URRI", + "keywords": "Аэропорт Миллерово, УРРИ" + }, + { + "id": "45188", + "ident": "RU-0284", + "type": "small_airport", + "name": "Bogorodsk Airfield", + "latitude_deg": "56.121", + "longitude_deg": "43.545", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NIZ", + "municipality": "Bogorodsk", + "scheduled_service": "no", + "keywords": "Аэродром Богородск" + }, + { + "id": "45190", + "ident": "RU-0285", + "type": "small_airport", + "name": "Primorsko-Akhtarsk Air Base", + "latitude_deg": "46.059", + "longitude_deg": "38.24", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Primorsko-Akhtarsk", + "scheduled_service": "no", + "keywords": "Аэродром Приморско-Ахтарск, ЬРКП" + }, + { + "id": "45192", + "ident": "RU-0286", + "type": "small_airport", + "name": "Temryuk Airport", + "latitude_deg": "45.302121", + "longitude_deg": "37.321115", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Temryuk", + "scheduled_service": "no", + "keywords": "Вертодром Темрюк" + }, + { + "id": "45193", + "ident": "RU-0287", + "type": "small_airport", + "name": "Korenovsk Air Base", + "latitude_deg": "45.447", + "longitude_deg": "39.424", + "elevation_ft": "172", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Korenovsk", + "scheduled_service": "no", + "keywords": "Аэродром Кореновск, ЬРКО" + }, + { + "id": "45194", + "ident": "RU-0288", + "type": "small_airport", + "name": "Kushchyovskaya Air Base", + "latitude_deg": "46.537", + "longitude_deg": "39.548", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Kushchyovskaya", + "scheduled_service": "no", + "keywords": "Kuschyovskaya Air Base, Kushchevskaya Air Base, Kuschevskaya Air Base, Kushchovskaya Air Base, Аэродром Кущёвская, Аэродром Кущевская" + }, + { + "id": "45215", + "ident": "RU-0289", + "type": "small_airport", + "name": "Goreloye Airfield", + "latitude_deg": "52.957", + "longitude_deg": "41.469", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TAM", + "municipality": "Tambov", + "scheduled_service": "no", + "local_code": "XUON", + "home_link": "http://www.tambovsky.ru/", + "keywords": "Goreloe Airfield, Аэродром Горелое, ЬУОН" + }, + { + "id": "45230", + "ident": "RU-0290", + "type": "closed", + "name": "Kineshma Airport", + "latitude_deg": "57.416", + "longitude_deg": "42.19", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-IVA", + "municipality": "Kineshma", + "scheduled_service": "no", + "keywords": "Аэропорт Кинешма" + }, + { + "id": "45231", + "ident": "RU-0291", + "type": "closed", + "name": "Nezhitino Airport", + "latitude_deg": "57.4813", + "longitude_deg": "43.2863", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-IVA", + "municipality": "Nezhitino", + "scheduled_service": "no", + "keywords": "Аэропорт Нежитино" + }, + { + "id": "45232", + "ident": "RU-0292", + "type": "closed", + "name": "Yuryevets Airport", + "latitude_deg": "57.3373", + "longitude_deg": "43.0966", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-IVA", + "municipality": "Yuryevets", + "scheduled_service": "no", + "gps_code": "UUIC", + "keywords": "Аэропорт Юрьевец" + }, + { + "id": "45233", + "ident": "RU-0293", + "type": "closed", + "name": "Krasnogorye Airfield", + "latitude_deg": "57.7133", + "longitude_deg": "43.6878", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KOS", + "municipality": "Krasnogorye", + "scheduled_service": "no", + "keywords": "Аэропорт Красногорье" + }, + { + "id": "45980", + "ident": "RU-0294", + "type": "small_airport", + "name": "Udskoye Airport", + "latitude_deg": "54.5217291038", + "longitude_deg": "134.423046112", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Udskoye", + "scheduled_service": "yes", + "keywords": "Udskoe Airport, Аэропорт Удское" + }, + { + "id": "46078", + "ident": "RU-0295", + "type": "heliport", + "name": "Burevestnik Yacht-club Helipad", + "latitude_deg": "55.9795", + "longitude_deg": "37.5282", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Dolgoprudny", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Яхт-клуб Буревестник" + }, + { + "id": "46079", + "ident": "RU-0296", + "type": "heliport", + "name": "Rechnoy Yacht-club Helipad", + "latitude_deg": "59.963791847799996", + "longitude_deg": "30.239106416699997", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SPE", + "municipality": "Saint Petersburg", + "scheduled_service": "no", + "keywords": "Central Yacht-club Helipad, Вертолётная площадка Речной Яхт-клуб, Вертолётная площадка Центральный Яхт-клуб" + }, + { + "id": "46087", + "ident": "RU-0297", + "type": "small_airport", + "name": "Pereyaslavka-2 Air Base", + "latitude_deg": "47.996987", + "longitude_deg": "135.088182", + "elevation_ft": "269", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Pereyaslavka", + "scheduled_service": "no", + "keywords": "Аэродром Переяславка" + }, + { + "id": "46089", + "ident": "RU-0298", + "type": "small_airport", + "name": "Marinovka Air Base", + "latitude_deg": "48.637", + "longitude_deg": "43.789", + "elevation_ft": "240", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VGG", + "municipality": "Volgograd", + "scheduled_service": "no", + "keywords": "Аэродром Мариновка, ЬРВМ" + }, + { + "id": "46090", + "ident": "RU-0299", + "type": "small_airport", + "name": "Varfolomeyevka Air Base", + "latitude_deg": "44.261", + "longitude_deg": "133.413", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Varfolomeyevka", + "scheduled_service": "no", + "keywords": "Varfolomeevka Air Base, Аэродром Варфоломеевка" + }, + { + "id": "46125", + "ident": "RU-0300", + "type": "heliport", + "name": "Lensovetovskiy Heliport", + "latitude_deg": "59.765504738400004", + "longitude_deg": "30.4800224304", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SPE", + "municipality": "Saint Petersburg", + "scheduled_service": "no", + "home_link": "http://aerosouz-piter.ru/", + "keywords": "Lensovetovsky Heliport, Вертодром Ленсоветовский" + }, + { + "id": "46126", + "ident": "RU-0301", + "type": "heliport", + "name": "Volen Heliport", + "latitude_deg": "56.2788410955", + "longitude_deg": "37.476253509500005", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Yakhroma", + "scheduled_service": "no", + "gps_code": "UUEJ", + "home_link": "http://www.aerosouz.ru/home/moscow/", + "keywords": "Вертодром Волен, УУЕЙ" + }, + { + "id": "46127", + "ident": "RU-0302", + "type": "heliport", + "name": "Pridachinskaya Damba Heliport", + "latitude_deg": "51.67409209", + "longitude_deg": "39.238754510899994", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VOR", + "municipality": "Voronezh", + "scheduled_service": "no", + "home_link": "http://aerosouz-vrn.ru/", + "keywords": "Pridachenskaya Damba Heliport, Вертодром Придачинская Дамба, Вертодром Придаченская Дамба" + }, + { + "id": "46128", + "ident": "RU-0303", + "type": "medium_airport", + "name": "Privolzhskiy Air Base", + "latitude_deg": "46.395726", + "longitude_deg": "47.887688", + "elevation_ft": "-66", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-AST", + "municipality": "Astrakhan", + "scheduled_service": "no", + "gps_code": "XRAP", + "keywords": "Privolzhsky Air Base, Privolzhye Airport, Аэродром Приволжский, Аэропорт Приволжье, ЬРАП" + }, + { + "id": "46129", + "ident": "RU-0304", + "type": "medium_airport", + "name": "Kapustin Yar Airfield", + "latitude_deg": "48.667", + "longitude_deg": "45.732", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AST", + "municipality": "Znamensk", + "scheduled_service": "no", + "keywords": "Аэродром Капустин Яр" + }, + { + "id": "46130", + "ident": "RU-0305", + "type": "small_airport", + "name": "Srednyaya Akhtuba Airfield", + "latitude_deg": "48.727902382299995", + "longitude_deg": "44.8650741577", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AST", + "municipality": "Srednyaya Akhtuba", + "scheduled_service": "no", + "keywords": "Аэродром Средняя Ахтуба" + }, + { + "id": "46131", + "ident": "RU-0306", + "type": "closed", + "name": "Beketovka Air Base", + "latitude_deg": "48.551003", + "longitude_deg": "44.369", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VGG", + "municipality": "Volgograd", + "scheduled_service": "no", + "local_code": "UWLB", + "keywords": "УВЛБ, Аэродром Бекетовка" + }, + { + "id": "46132", + "ident": "RU-0307", + "type": "small_airport", + "name": "Kotelnikovo Airfield", + "latitude_deg": "47.635", + "longitude_deg": "43.095", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VGG", + "municipality": "Kotelnikovo", + "scheduled_service": "no", + "keywords": "Аэродром Котельниково" + }, + { + "id": "46133", + "ident": "RU-0308", + "type": "small_airport", + "name": "Romanovskaya Airport", + "latitude_deg": "47.53013307369999", + "longitude_deg": "42.03", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Romanovskaya", + "scheduled_service": "no", + "keywords": "Аэродром Романовская" + }, + { + "id": "46134", + "ident": "RU-0309", + "type": "small_airport", + "name": "Kholodnogorskiy Airfield", + "latitude_deg": "44.983", + "longitude_deg": "42.118", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-STA", + "municipality": "Stavropol", + "scheduled_service": "no", + "keywords": "Kholodnogorsky Airfield, Аэродром Холодногорский" + }, + { + "id": "46135", + "ident": "RU-0310", + "type": "closed", + "name": "Sal'sk Airfield", + "latitude_deg": "46.416", + "longitude_deg": "41.519", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Sal'sk", + "scheduled_service": "no", + "keywords": "Аэродром Сальск" + }, + { + "id": "46137", + "ident": "RU-0311", + "type": "closed", + "name": "Mikhaylovka Airfield", + "latitude_deg": "49.976", + "longitude_deg": "43.338", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VGG", + "municipality": "Mikhaylovka", + "scheduled_service": "no", + "keywords": "Rakovka Airfield, Аэродром Михайловка, Аэродром Раковка" + }, + { + "id": "46139", + "ident": "RU-0312", + "type": "small_airport", + "name": "Belaya Kalitva Airport", + "latitude_deg": "48.217001", + "longitude_deg": "40.82", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Belaya Kalitva", + "scheduled_service": "no", + "gps_code": "URRA", + "home_link": "http://www.aeroport-bk.ru", + "keywords": "УРРА, Аэропорт Белая Калитва" + }, + { + "id": "46140", + "ident": "RU-0313", + "type": "small_airport", + "name": "Zernograd Air Base", + "latitude_deg": "46.835", + "longitude_deg": "40.38", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Zernograd", + "scheduled_service": "no", + "keywords": "Аэродром Зерноград, ЬРРГ" + }, + { + "id": "46142", + "ident": "RU-0314", + "type": "small_airport", + "name": "Dubki Airfield", + "latitude_deg": "51.647", + "longitude_deg": "46.059", + "elevation_ft": "427", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAR", + "municipality": "Saratov", + "scheduled_service": "no", + "keywords": "Аэродром Дубки, УВСЗ" + }, + { + "id": "46143", + "ident": "RU-0315", + "type": "small_airport", + "name": "Zabelskiy Airfield", + "latitude_deg": "54.7978028607", + "longitude_deg": "55.9420824051", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BA", + "municipality": "Ufa", + "scheduled_service": "no", + "keywords": "Zabelsky Airfield, Аэродром Забельский" + }, + { + "id": "46144", + "ident": "RU-0316", + "type": "small_airport", + "name": "Loginovo Airfield", + "latitude_deg": "56.64745040139999", + "longitude_deg": "61.3502311707", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SVE", + "municipality": "Loginovo", + "scheduled_service": "no", + "keywords": "Аэродром Логиново" + }, + { + "id": "46145", + "ident": "RU-0317", + "type": "small_airport", + "name": "Rozhdestveno Airfield", + "latitude_deg": "53.25", + "longitude_deg": "50.053", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAM", + "municipality": "Samara", + "scheduled_service": "no", + "keywords": "Аэродром Рождествено" + }, + { + "id": "46146", + "ident": "RU-0318", + "type": "closed", + "name": "Sokol Air Base", + "latitude_deg": "51.284", + "longitude_deg": "58.605", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ORE", + "municipality": "Orsk", + "scheduled_service": "no", + "keywords": "Аэродром Сокол" + }, + { + "id": "46147", + "ident": "RU-0319", + "type": "closed", + "name": "Kupino Air Base", + "latitude_deg": "54.352", + "longitude_deg": "77.354", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Kupino", + "scheduled_service": "no", + "keywords": "Аэродром Купино" + }, + { + "id": "46148", + "ident": "RU-0320", + "type": "closed", + "name": "Pervomayskiy Airport", + "latitude_deg": "55.6702275936", + "longitude_deg": "41.3566589355", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLA", + "municipality": "Pervomayskiy", + "scheduled_service": "no", + "keywords": "Pervomaysky Airport, Аэропорт Первомайский" + }, + { + "id": "46149", + "ident": "RU-0321", + "type": "closed", + "name": "Oryol Severny Airport", + "latitude_deg": "53.0044288837", + "longitude_deg": "36.0287618637", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ORL", + "municipality": "Oryol", + "scheduled_service": "no", + "keywords": "Oryol North Airport, Orel Severny Airport, Orel North Airport, Аэропорт Орёл Северный, Аэропорт Орел Северный" + }, + { + "id": "46150", + "ident": "RU-0322", + "type": "closed", + "name": "Morshansk Air Base", + "latitude_deg": "53.44", + "longitude_deg": "41.737", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TAM", + "municipality": "Morshansk", + "scheduled_service": "no", + "keywords": "Аэродром Моршанск" + }, + { + "id": "46151", + "ident": "RU-0323", + "type": "small_airport", + "name": "Usman Airfield", + "latitude_deg": "52.025", + "longitude_deg": "39.675", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LIP", + "municipality": "Usman", + "scheduled_service": "no", + "local_code": "XUOU", + "keywords": "Аэродром Усмань, Сапсан, Sapsan" + }, + { + "id": "46152", + "ident": "RU-0324", + "type": "closed", + "name": "Mordovo Airport", + "latitude_deg": "52.0783455164", + "longitude_deg": "40.7843399048", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TAM", + "municipality": "Mordovo", + "scheduled_service": "no", + "keywords": "Аэропорт Мордово" + }, + { + "id": "46153", + "ident": "RU-0325", + "type": "small_airport", + "name": "Ryshkovo Airfield", + "latitude_deg": "51.6561578589", + "longitude_deg": "36.1818408966", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KRS", + "municipality": "Kursk", + "scheduled_service": "no", + "keywords": "Аэродром Рышково" + }, + { + "id": "46154", + "ident": "RU-0326", + "type": "closed", + "name": "Kamenka Air Base", + "latitude_deg": "53.205", + "longitude_deg": "44.065", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PNZ", + "municipality": "Kamenka", + "scheduled_service": "no", + "keywords": "Аэродром Каменка" + }, + { + "id": "46157", + "ident": "RU-0327", + "type": "medium_airport", + "name": "Vozdvizhenka Air Base", + "latitude_deg": "43.907501", + "longitude_deg": "131.925008", + "elevation_ft": "121", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Vozdvizhenka", + "scheduled_service": "no", + "gps_code": "UHWV", + "keywords": "УХВЖ, Аэродром Воздвиженка, ЬХВЖ" + }, + { + "id": "46158", + "ident": "RU-0328", + "type": "closed", + "name": "Pristan Naval Air Base", + "latitude_deg": "43.243", + "longitude_deg": "132.329", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Shkotovo", + "scheduled_service": "no", + "keywords": "Romanovka Naval Air Base, Аэродром Пристань, Аэродром Романовка" + }, + { + "id": "46159", + "ident": "RU-0329", + "type": "small_airport", + "name": "Khorol Air Base", + "latitude_deg": "44.449", + "longitude_deg": "132.124", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Khorol", + "scheduled_service": "no", + "keywords": "Аэродром Хороль" + }, + { + "id": "46160", + "ident": "RU-0330", + "type": "closed", + "name": "Mys Nizmenny Airport", + "latitude_deg": "64.801473", + "longitude_deg": "177.584424", + "elevation_ft": "461", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Ugolnye Kopi", + "scheduled_service": "no", + "keywords": "Аэропорт Мыс Низменный, UAND" + }, + { + "id": "46161", + "ident": "RU-0331", + "type": "closed", + "name": "Khvalynka Air Base", + "latitude_deg": "44.612076", + "longitude_deg": "132.885921", + "elevation_ft": "398", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Spassk-Dalniy", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Spassk-Dalny_Airfield", + "keywords": "Spassk-Dalniy Air Base, Spassk-Dalny Air Base, Аэродром Хвалынка, Аэродром Спасск-Дальний" + }, + { + "id": "46162", + "ident": "RU-0332", + "type": "small_airport", + "name": "Novonezhino Airfield", + "latitude_deg": "43.21875", + "longitude_deg": "132.587198", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Novonezhino", + "scheduled_service": "no", + "keywords": "Аэродром Новонежино" + }, + { + "id": "46163", + "ident": "RU-0333", + "type": "small_airport", + "name": "Novorossiya Airfield", + "latitude_deg": "43.347", + "longitude_deg": "132.557", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Novorossiya", + "scheduled_service": "no", + "keywords": "Аэродром Новороссия" + }, + { + "id": "46164", + "ident": "RU-0334", + "type": "closed", + "name": "Kansk Tsentralny Airport", + "latitude_deg": "56.1600347141", + "longitude_deg": "95.7121181488", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Kansk", + "scheduled_service": "no", + "keywords": "Аэропорт Канск Центральный" + }, + { + "id": "46190", + "ident": "RU-0335", + "type": "small_airport", + "name": "Lesnoy Airfield", + "latitude_deg": "53.251722177599994", + "longitude_deg": "83.9549446106", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ALT", + "municipality": "Barnaul", + "scheduled_service": "no", + "keywords": "Аэродром Лесной" + }, + { + "id": "46191", + "ident": "RU-0336", + "type": "small_airport", + "name": "Charyshskoye Airfield", + "latitude_deg": "51.402449", + "longitude_deg": "83.526096", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ALT", + "municipality": "Charyshskoye", + "scheduled_service": "no", + "keywords": "Charyshskoe Airfield, Аэродром Чарышское" + }, + { + "id": "46192", + "ident": "RU-0337", + "type": "small_airport", + "name": "Ubinskoye Airport", + "latitude_deg": "55.3166", + "longitude_deg": "79.6666", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Ubinskoye", + "scheduled_service": "no", + "keywords": "Ubinskoe Airport, Аэропорт Убинское" + }, + { + "id": "46193", + "ident": "RU-0338", + "type": "small_airport", + "name": "Yurt-Ora Airstrip", + "latitude_deg": "55.4501751626", + "longitude_deg": "82.91646838190002", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Yurt-Ora", + "scheduled_service": "no", + "keywords": "ВПП Юрт-Ора" + }, + { + "id": "46194", + "ident": "RU-0339", + "type": "heliport", + "name": "Kubovaya Heliport", + "latitude_deg": "55.2837715411", + "longitude_deg": "83.0160427094", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NVS", + "scheduled_service": "no", + "keywords": "Вертодром Кубовая" + }, + { + "id": "46195", + "ident": "RU-0340", + "type": "heliport", + "name": "Ataka Helipad", + "latitude_deg": "55.5901813455", + "longitude_deg": "84.97959136959999", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KEM", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Атака" + }, + { + "id": "46196", + "ident": "RU-0341", + "type": "small_airport", + "name": "Kemerovo Severny Airport", + "latitude_deg": "55.332720733399995", + "longitude_deg": "86.04554414750001", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KEM", + "municipality": "Kemerovo", + "scheduled_service": "no", + "keywords": "Kemerovo North Airport, Аэродром Кемерово Северный" + }, + { + "id": "46197", + "ident": "RU-0342", + "type": "small_airport", + "name": "Yuzhnaya Airfield", + "latitude_deg": "54.654718956", + "longitude_deg": "83.07869911190001", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Berdsk", + "scheduled_service": "no", + "keywords": "Yuzhny Airfield, ВПП Южная, ВПП Южный" + }, + { + "id": "46198", + "ident": "RU-0343", + "type": "small_airport", + "name": "Iskitim Airfield", + "latitude_deg": "54.6", + "longitude_deg": "83.3", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NGR", + "municipality": "Iskitim", + "scheduled_service": "no", + "keywords": "Аэродром Искитим" + }, + { + "id": "46199", + "ident": "RU-0344", + "type": "heliport", + "name": "Sibirskiy Heliport", + "latitude_deg": "53.5858308029", + "longitude_deg": "83.8623762131", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ALT", + "municipality": "Sibirskiy", + "scheduled_service": "no", + "keywords": "Sibirsky Heliport, Вертодром Сибирский" + }, + { + "id": "46200", + "ident": "RU-0345", + "type": "small_airport", + "name": "Nazarovo Airport", + "latitude_deg": "55.972549445300004", + "longitude_deg": "90.49017906190001", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Nazarovo", + "scheduled_service": "no", + "keywords": "Аэропорт Назарово" + }, + { + "id": "46201", + "ident": "RU-0346", + "type": "closed", + "name": "Uzhur Airport", + "latitude_deg": "55.263762", + "longitude_deg": "89.825678", + "elevation_ft": "1332", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Uzhur", + "scheduled_service": "no", + "keywords": "Аэропорт Ужур" + }, + { + "id": "46202", + "ident": "RU-0347", + "type": "small_airport", + "name": "Maryanovka Airfield", + "latitude_deg": "54.9725397836", + "longitude_deg": "72.64649391169999", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-OMS", + "municipality": "Maryanovka", + "scheduled_service": "no", + "keywords": "Аэродром Марьяновка" + }, + { + "id": "46203", + "ident": "RU-0348", + "type": "small_airport", + "name": "Krasnoozyorsk Airport", + "latitude_deg": "53.992785208", + "longitude_deg": "79.3133926392", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Krasnoozyorskoye", + "scheduled_service": "no", + "gps_code": "UNCN", + "keywords": "Krasnoozersk Airport, Аэропорт Красноозёрск, Аэропорт Красноозерск, УНЦН" + }, + { + "id": "46204", + "ident": "RU-0349", + "type": "heliport", + "name": "Shadrinsk Helipad", + "latitude_deg": "56.0982493243", + "longitude_deg": "63.7331163883", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KGN", + "municipality": "Shadrinsk", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Шадринск" + }, + { + "id": "46205", + "ident": "RU-0350", + "type": "heliport", + "name": "Abzakovo Helipad", + "latitude_deg": "53.801362", + "longitude_deg": "58.633187", + "elevation_ft": "1067", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BA", + "municipality": "Abzakovo", + "scheduled_service": "no", + "local_code": "HA3B", + "keywords": "ХА3Б, Вертолётная площадка Абзаково, Новоабзаково" + }, + { + "id": "46206", + "ident": "RU-0351", + "type": "heliport", + "name": "Gora Pashina Heliport", + "latitude_deg": "55.1261", + "longitude_deg": "60.563", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHE", + "municipality": "Chebarkul", + "scheduled_service": "no", + "keywords": "Вертодром Гора Пашина" + }, + { + "id": "46219", + "ident": "RU-0352", + "type": "heliport", + "name": "Gurban Helipad", + "latitude_deg": "56.1640972421", + "longitude_deg": "37.545175552399996", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Гурбан" + }, + { + "id": "46220", + "ident": "RU-0353", + "type": "heliport", + "name": "Bunkovo Heliport", + "latitude_deg": "55.8802339278", + "longitude_deg": "36.8073749542", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Istra", + "scheduled_service": "no", + "home_link": "http://vertolet.ru/filin.shtml", + "keywords": "Kryuchkovo Heliport, Вертодром Буньково, Вертодром Крючково" + }, + { + "id": "46221", + "ident": "RU-0354", + "type": "small_airport", + "name": "Krasny Posyolok Airfield", + "latitude_deg": "55.8135", + "longitude_deg": "36.978", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "scheduled_service": "no", + "keywords": "Krasny Poselok Airfield, Аэродром Красный Посёлок, Аэродром Красный Поселок" + }, + { + "id": "46222", + "ident": "RU-0355", + "type": "heliport", + "name": "Nakhabino Helipad", + "latitude_deg": "55.8580088604", + "longitude_deg": "37.2091752291", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Nakhabino", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Нахабино" + }, + { + "id": "46223", + "ident": "RU-0356", + "type": "heliport", + "name": "Mitino Heliport", + "latitude_deg": "55.8685631393", + "longitude_deg": "37.3729348183", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Putilkovo", + "scheduled_service": "no", + "keywords": "Вертодром Митино" + }, + { + "id": "46224", + "ident": "RU-0357", + "type": "heliport", + "name": "City Clinical Hospital No.36 Helipad", + "latitude_deg": "55.7913297014", + "longitude_deg": "37.7401989698", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "municipality": "Moscow", + "scheduled_service": "no", + "keywords": "GKB-36 Helipad, Вертолётная площадка ГКБ-36, Вертолётная площадка Городская Клиническая Больница № 36" + }, + { + "id": "46225", + "ident": "RU-0358", + "type": "heliport", + "name": "Grachi Helipad", + "latitude_deg": "55.4382719556", + "longitude_deg": "38.0714249611", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Ilinskoye", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Грачи" + }, + { + "id": "46226", + "ident": "RU-0359", + "type": "small_airport", + "name": "Voskresensk Airstrip", + "latitude_deg": "55.307215581099996", + "longitude_deg": "38.5956573486", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Voskresensk", + "scheduled_service": "no", + "keywords": "ВПП Воскресенск" + }, + { + "id": "46227", + "ident": "RU-0360", + "type": "heliport", + "name": "Mavrino Helipad", + "latitude_deg": "55.2734133929", + "longitude_deg": "37.29679763319999", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Маврино" + }, + { + "id": "46228", + "ident": "RU-0361", + "type": "small_airport", + "name": "Burny Airfield", + "latitude_deg": "60.61188", + "longitude_deg": "30.474349", + "elevation_ft": "45", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Solovyovo", + "scheduled_service": "no", + "gps_code": "ULSJ", + "keywords": "Burnaya Airfield, Аэродром Бурный, Аэродром Бурная, УЛСЙ" + }, + { + "id": "46229", + "ident": "RU-0362", + "type": "small_airport", + "name": "Bolshoy Lutsk Airstrip", + "latitude_deg": "59.4120340638", + "longitude_deg": "28.577284812900004", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Kingisepp", + "scheduled_service": "no", + "keywords": "ВПП Большой Луцк" + }, + { + "id": "46230", + "ident": "RU-0363", + "type": "heliport", + "name": "Valday Helipad", + "latitude_deg": "58.011519476299995", + "longitude_deg": "33.3189690113", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NGR", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Валдай" + }, + { + "id": "46234", + "ident": "RU-0364", + "type": "small_airport", + "name": "Suzdal Airport", + "latitude_deg": "56.492614", + "longitude_deg": "40.380292", + "elevation_ft": "350", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLA", + "municipality": "Suzdal", + "scheduled_service": "no", + "keywords": "Аэропорт Суздаль, Mutskoye Airport" + }, + { + "id": "46235", + "ident": "RU-0365", + "type": "small_airport", + "name": "Novinki Airport", + "latitude_deg": "54.978557", + "longitude_deg": "37.657439", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Novinki-Begichevo", + "scheduled_service": "no", + "gps_code": "UUDN", + "keywords": "Аэродром Новинки" + }, + { + "id": "46236", + "ident": "RU-0366", + "type": "heliport", + "name": "Polyany Helipad", + "latitude_deg": "55.034663031899996", + "longitude_deg": "38.821520805400006", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Kolomna", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Поляны" + }, + { + "id": "46237", + "ident": "RU-0367", + "type": "small_airport", + "name": "Beloomut Airfield", + "latitude_deg": "54.9521", + "longitude_deg": "39.296583", + "elevation_ft": "323", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Beloomut", + "scheduled_service": "no", + "gps_code": "UUCB", + "keywords": "УУЦБ, Аэродром Белоомут" + }, + { + "id": "46238", + "ident": "RU-0368", + "type": "small_airport", + "name": "Seltsy Airfield", + "latitude_deg": "54.9237", + "longitude_deg": "39.6392", + "elevation_ft": "362", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-RYA", + "municipality": "Seltsy", + "scheduled_service": "no", + "local_code": "XUWS", + "keywords": "ЬУВС, Аэродром Сельцы" + }, + { + "id": "46239", + "ident": "RU-0369", + "type": "seaplane_base", + "name": "Gelendzhik Seaplane Base", + "latitude_deg": "44.57", + "longitude_deg": "38.038611", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Gelendzhik", + "scheduled_service": "no", + "gps_code": "URKN", + "keywords": "Гидроаэродром Геленджик,Геленджик Бухта" + }, + { + "id": "46240", + "ident": "RU-0370", + "type": "small_airport", + "name": "Kochubeyevskoye Airport", + "latitude_deg": "44.6858639994", + "longitude_deg": "41.7493772507", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-STA", + "municipality": "Kochubeyevskoye", + "scheduled_service": "no", + "keywords": "Kochubeyevskoe Airport, Kochubeevskoye Airport, Kochubeevskoe Airport, Аэропорт Кочубеевское" + }, + { + "id": "46241", + "ident": "RU-0371", + "type": "closed", + "name": "Tatsinskaya Airfield", + "latitude_deg": "48.167059", + "longitude_deg": "41.277866", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Tatsinskaya", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tatsinskaya_Airfield", + "keywords": "Аэродром Тацинская" + }, + { + "id": "46242", + "ident": "RU-0372", + "type": "medium_airport", + "name": "Rostov-on-Don Central Air Base", + "latitude_deg": "47.277386", + "longitude_deg": "39.635556", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Rostov-on-Don", + "scheduled_service": "no", + "local_code": "XRRO", + "keywords": "Rostov-on-Don Tsentralny Air Base, Аэродром Ростов-на-Дону Центральный, ЬРРО" + }, + { + "id": "46243", + "ident": "RU-0373", + "type": "heliport", + "name": "Rostov-na-Donu Severny Heliport", + "latitude_deg": "47.256631026", + "longitude_deg": "39.7347164154", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Rostov-na-Donu", + "scheduled_service": "no", + "home_link": "http://www.rostvertolplc.ru/", + "keywords": "Rostov-on-Don Severny Heliport, Rostov-on-Don North Heliport, Вертодром Ростов-на-Дону Северный, ЬРРЙ" + }, + { + "id": "46244", + "ident": "RU-0374", + "type": "closed", + "name": "Svetlograd Airfield", + "latitude_deg": "45.423335150499994", + "longitude_deg": "42.680854797399995", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-STA", + "municipality": "Svetlograd", + "scheduled_service": "no", + "keywords": "Аэродром Светлоград" + }, + { + "id": "35038", + "ident": "RU-0375", + "type": "small_airport", + "name": "Monino Airfield", + "latitude_deg": "55.836700439453125", + "longitude_deg": "38.16999816894531", + "elevation_ft": "499", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Moscow", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monino_Airfield" + }, + { + "id": "46246", + "ident": "RU-0376", + "type": "small_airport", + "name": "Kalininskiy Airfield", + "latitude_deg": "44.8582", + "longitude_deg": "44.1829", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-STA", + "municipality": "Budyonnovsk", + "scheduled_service": "no", + "keywords": "Kalininsky Airfield, Аэродром Калининский" + }, + { + "id": "46248", + "ident": "RU-0377", + "type": "small_airport", + "name": "Makhachkala-1 Airfield", + "latitude_deg": "43.0126495066", + "longitude_deg": "47.4357461929", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-DA", + "municipality": "Makhachkala", + "scheduled_service": "no", + "keywords": "Аэродром Махачкала-1" + }, + { + "id": "46249", + "ident": "RU-0378", + "type": "small_airport", + "name": "Khunzakh Alart Airport", + "latitude_deg": "42.570339", + "longitude_deg": "46.729059", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-DA", + "municipality": "Khunzakh", + "scheduled_service": "no", + "keywords": "Аэропорт Хунзах" + }, + { + "id": "46250", + "ident": "RU-0379", + "type": "heliport", + "name": "Tlyarata Helipad", + "latitude_deg": "42.1167563323", + "longitude_deg": "46.3519728184", + "elevation_ft": "4921", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-DA", + "municipality": "Tlyarata", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Тлярата" + }, + { + "id": "46251", + "ident": "RU-0380", + "type": "medium_airport", + "name": "Akhtubinsk Air Base", + "latitude_deg": "48.3085", + "longitude_deg": "46.2365", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AST", + "municipality": "Akhtubinsk", + "scheduled_service": "no", + "local_code": "XRWH", + "keywords": "Ahtubinsk Air Base, Аэродром Ахтубинск, ЬРВХ" + }, + { + "id": "46252", + "ident": "RU-0381", + "type": "small_airport", + "name": "Osypnoy Bugor Airfield", + "latitude_deg": "46.2871581029", + "longitude_deg": "48.061172962200004", + "elevation_ft": "-72", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AST", + "municipality": "Astrakhan", + "scheduled_service": "no", + "keywords": "Аэродром Осыпной Бугор, ЬРАБ" + }, + { + "id": "46253", + "ident": "RU-0382", + "type": "small_airport", + "name": "Tri Protoka Airfield", + "latitude_deg": "46.326142", + "longitude_deg": "48.15254", + "elevation_ft": "-72", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-AST", + "municipality": "Astrakhan", + "scheduled_service": "no", + "keywords": "Аэродром Три Протока, ЬРАР" + }, + { + "id": "46257", + "ident": "RU-0383", + "type": "small_airport", + "name": "Kuznetsk Airport", + "latitude_deg": "53.098095652", + "longitude_deg": "46.5904426575", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PNZ", + "municipality": "Kuznetsk", + "scheduled_service": "no", + "keywords": "Аэропорт Кузнецк" + }, + { + "id": "46258", + "ident": "RU-0384", + "type": "heliport", + "name": "Volzhskiy Utyos Helipad", + "latitude_deg": "53.38546568179999", + "longitude_deg": "49.0975141525", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAM", + "municipality": "Usolye", + "scheduled_service": "no", + "keywords": "Volzhsky Utyos Helipad, Volzhskiy Utes Helipad, Volzhsky Utes Helipad, Вертолётная площадка Волжский Утёс, Вертолётная площадка Волжский Утес" + }, + { + "id": "46259", + "ident": "RU-0385", + "type": "small_airport", + "name": "Volsk Airfield", + "latitude_deg": "52.030343501299996", + "longitude_deg": "47.322063446", + "elevation_ft": "546", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAR", + "municipality": "Volsk", + "scheduled_service": "no", + "keywords": "Аэродром Вольск, ЬВВВ" + }, + { + "id": "46260", + "ident": "RU-0386", + "type": "small_airport", + "name": "Novosyolki Airport", + "latitude_deg": "53.9099000326", + "longitude_deg": "49.7357082367", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ULY", + "municipality": "Novosyolki", + "scheduled_service": "no", + "keywords": "Novoselki Airport, Аэропорт Новосёлки, Аэропорт Новоселки, УВЛН" + }, + { + "id": "46262", + "ident": "RU-0387", + "type": "small_airport", + "name": "Golovino Airport", + "latitude_deg": "56.3665099612", + "longitude_deg": "84.7375488281", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TOM", + "municipality": "Golovino", + "scheduled_service": "no", + "keywords": "Golovinа Airport, Аэропорт Головино, Аэропорт Головина" + }, + { + "id": "46275", + "ident": "RU-0388", + "type": "heliport", + "name": "Bor Heliport", + "latitude_deg": "55.3596914463", + "longitude_deg": "37.729507684699996", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Odintsovo", + "scheduled_service": "no", + "keywords": "Вертодром Бор" + }, + { + "id": "46276", + "ident": "RU-0389", + "type": "heliport", + "name": "Noginsk Helicopter Base", + "latitude_deg": "55.916097", + "longitude_deg": "38.480387", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Noginsk", + "scheduled_service": "no", + "local_code": "HCP2", + "keywords": "Аэродром Ногинск" + }, + { + "id": "46277", + "ident": "RU-0390", + "type": "heliport", + "name": "Utkina Zavod Helipad", + "latitude_deg": "59.8685824318", + "longitude_deg": "30.4858160019", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SPE", + "municipality": "Saint Petersburg", + "scheduled_service": "no", + "keywords": "Utkina Zavod' Helipad, Вертолётная площадка Уткина Заводь" + }, + { + "id": "46281", + "ident": "RU-0391", + "type": "small_airport", + "name": "Vikhrevo Airfield", + "latitude_deg": "56.240187", + "longitude_deg": "38.159867", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Sergiyev Posad", + "scheduled_service": "no", + "home_link": "http://www.vihrevo.ru/", + "keywords": "Аэродром Вихрево" + }, + { + "id": "46315", + "ident": "RU-0392", + "type": "closed", + "name": "Zvezda Airfield", + "latitude_deg": "52.940983295100004", + "longitude_deg": "49.6066188812", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAM", + "municipality": "Chapayevsk", + "scheduled_service": "no", + "keywords": "Аэродром Звезда" + }, + { + "id": "46316", + "ident": "RU-0393", + "type": "small_airport", + "name": "Krasny Yar Airport", + "latitude_deg": "53.509412295699995", + "longitude_deg": "50.4396486282", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAM", + "municipality": "Krasny Yar", + "scheduled_service": "no", + "keywords": "Аэропорт Красный Яр, УВВЯ" + }, + { + "id": "46319", + "ident": "RU-0394", + "type": "closed", + "name": "Kovdor Airport", + "latitude_deg": "67.5341487596", + "longitude_deg": "30.6191968918", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Kovdor", + "scheduled_service": "no", + "keywords": "Аэропорт Ковдор" + }, + { + "id": "46320", + "ident": "RU-0395", + "type": "closed", + "name": "Kitsa Airfield", + "latitude_deg": "68.507363913", + "longitude_deg": "33.2875442505", + "elevation_ft": "605", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Pushnoy", + "scheduled_service": "no", + "local_code": "XLMT", + "keywords": "ЬЛМТ, Тайбола, Аэродром Кица, Taybola Northwest Airport" + }, + { + "id": "46321", + "ident": "RU-0396", + "type": "small_airport", + "name": "Okunev Nos Airport", + "latitude_deg": "66.2877128016", + "longitude_deg": "52.5848579407", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KO", + "municipality": "Okunev Nos", + "scheduled_service": "no", + "keywords": "Аэропорт Окунев Нос" + }, + { + "id": "46322", + "ident": "RU-0397", + "type": "small_airport", + "name": "Korzhevskiy Airstrip", + "latitude_deg": "45.2146965624", + "longitude_deg": "37.74410963059999", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Korzhevskiy", + "scheduled_service": "no", + "keywords": "Korzhevsky Airstrip, ВПП Коржевский" + }, + { + "id": "46323", + "ident": "RU-0398", + "type": "small_airport", + "name": "Kiyevskoye Airstrip", + "latitude_deg": "45.0605629952", + "longitude_deg": "37.9666471481", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Kiyevskoye", + "scheduled_service": "no", + "keywords": "Kievskoe Airstrip, Kievskoye Airstrip, ВПП Киевское" + }, + { + "id": "46324", + "ident": "RU-0399", + "type": "closed", + "name": "Yablonovskiy Airstrip", + "latitude_deg": "44.970461", + "longitude_deg": "38.993847", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AD", + "municipality": "Yablonovskiy", + "scheduled_service": "no", + "local_code": "ZA62", + "keywords": "Yablonovsky Airstrip, ВПП Яблоновский" + }, + { + "id": "46325", + "ident": "RU-0400", + "type": "closed", + "name": "Dolzhanskaya Airfield", + "latitude_deg": "46.60772", + "longitude_deg": "37.923431", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Dolzhanskaya", + "scheduled_service": "no", + "local_code": "ZE35", + "keywords": "Аэродром Должанская" + }, + { + "id": "46326", + "ident": "RU-0401", + "type": "small_airport", + "name": "Olginskaya Airstrip", + "latitude_deg": "45.938347786899996", + "longitude_deg": "38.399909734699996", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Olginskaya", + "scheduled_service": "no", + "keywords": "ВПП Ольгинская" + }, + { + "id": "46327", + "ident": "RU-0402", + "type": "small_airport", + "name": "Medvedkovskaya Airstrip", + "latitude_deg": "45.4433769126", + "longitude_deg": "38.960459232299996", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Medvedkovskaya", + "scheduled_service": "no", + "keywords": "ВПП Медведковская" + }, + { + "id": "46328", + "ident": "RU-0403", + "type": "small_airport", + "name": "Yelizavetinskaya Airstrip", + "latitude_deg": "45.085393", + "longitude_deg": "38.805385", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Yelizavetinskaya", + "scheduled_service": "no", + "keywords": "Elizavetinskaya Airstrip, ВПП Елизаветинская" + }, + { + "id": "46329", + "ident": "RU-0404", + "type": "small_airport", + "name": "Osechki Azimut Airport", + "latitude_deg": "45.256686", + "longitude_deg": "38.918593", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Novotitarovskaya", + "scheduled_service": "no", + "keywords": "ВПП Осечки" + }, + { + "id": "46330", + "ident": "RU-0405", + "type": "small_airport", + "name": "Novotitarovskaya Airstrip", + "latitude_deg": "45.249648900299995", + "longitude_deg": "39.076695442200005", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Novotitarovskaya", + "scheduled_service": "no", + "keywords": "ВПП Новотитаровская" + }, + { + "id": "46331", + "ident": "RU-0406", + "type": "small_airport", + "name": "Novodmitriyevskaya Airstrip", + "latitude_deg": "44.8486583488", + "longitude_deg": "38.897244930300005", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Novodmitriyevskaya", + "scheduled_service": "no", + "keywords": "Novodmitrievskaya Airstrip, ВПП Новодмитриевская" + }, + { + "id": "46332", + "ident": "RU-0407", + "type": "small_airport", + "name": "Rodnikovskaya Airstrip", + "latitude_deg": "44.777646496", + "longitude_deg": "40.7087659836", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Rodnikovskaya", + "scheduled_service": "no", + "keywords": "ВПП Родниковская" + }, + { + "id": "46333", + "ident": "RU-0408", + "type": "small_airport", + "name": "Kusino Airfield", + "latitude_deg": "59.4021564205", + "longitude_deg": "31.815547943099997", + "elevation_ft": "95", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Kusino", + "scheduled_service": "no", + "gps_code": "ULSI", + "home_link": "http://www.kusino.ru/", + "keywords": "Аэродром Кусино, УЛСИ" + }, + { + "id": "46334", + "ident": "RU-0409", + "type": "small_airport", + "name": "Yastrebino Airstrip", + "latitude_deg": "59.385616251799995", + "longitude_deg": "28.930242061599998", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Bolshaya Pustomerzha", + "scheduled_service": "no", + "keywords": "ВПП Ястребино" + }, + { + "id": "46335", + "ident": "RU-0410", + "type": "closed", + "name": "Glazhevo Airstrip", + "latitude_deg": "59.660045842200006", + "longitude_deg": "32.1066427231", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Glazhevo", + "scheduled_service": "no", + "keywords": "ВПП Глажево" + }, + { + "id": "46336", + "ident": "RU-0411", + "type": "closed", + "name": "Chernogolovka Airfield", + "latitude_deg": "56.0230919816", + "longitude_deg": "38.3258914948", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Chernogolovka", + "scheduled_service": "no", + "keywords": "Аэродром Черноголовка" + }, + { + "id": "46337", + "ident": "RU-0412", + "type": "small_airport", + "name": "Panino Airstrip", + "latitude_deg": "54.4750251757", + "longitude_deg": "40.316905975299996", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-RYA", + "municipality": "Panino", + "scheduled_service": "no", + "keywords": "ВПП Панино" + }, + { + "id": "46338", + "ident": "RU-0413", + "type": "closed", + "name": "Negoditsy Airstrip", + "latitude_deg": "59.5580704894", + "longitude_deg": "29.2179679871", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Begunitsy", + "scheduled_service": "no", + "keywords": "ВПП Негодицы" + }, + { + "id": "46339", + "ident": "RU-0414", + "type": "closed", + "name": "Borshchovo Airstrip", + "latitude_deg": "58.8422192647", + "longitude_deg": "30.378742218", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Oredezh", + "scheduled_service": "no", + "keywords": "Borschovo Airstrip, ВПП Борщово" + }, + { + "id": "46340", + "ident": "RU-0415", + "type": "closed", + "name": "Smychkovo Airfield", + "latitude_deg": "58.679526", + "longitude_deg": "30.041597", + "elevation_ft": "214", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Dzerzhinskogo", + "scheduled_service": "no", + "local_code": "ZA7F", + "keywords": "Аэродром Смычково, Luga Southeast," + }, + { + "id": "46341", + "ident": "RU-0416", + "type": "small_airport", + "name": "Lyubytino Airstrip", + "latitude_deg": "58.802629", + "longitude_deg": "33.373418", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NGR", + "municipality": "Lyubytino", + "scheduled_service": "no", + "gps_code": "ULNL", + "keywords": "ВПП Любытино" + }, + { + "id": "46342", + "ident": "RU-0417", + "type": "closed", + "name": "Okulovka Airport", + "latitude_deg": "58.3744706694", + "longitude_deg": "33.3122205734", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NGR", + "municipality": "Okulovka", + "scheduled_service": "no", + "keywords": "Аэропорт Окуловка" + }, + { + "id": "46343", + "ident": "RU-0418", + "type": "closed", + "name": "Ozyorny Heliport", + "latitude_deg": "57.865483923", + "longitude_deg": "33.6708641052", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TVE", + "municipality": "Ozyorny", + "scheduled_service": "no", + "keywords": "Ozerny Heliport, Вертодром Озёрный, Вертодром Озерный" + }, + { + "id": "46344", + "ident": "RU-0419", + "type": "closed", + "name": "Maksatikha Airport", + "latitude_deg": "57.7728697983", + "longitude_deg": "35.8950805664", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TVE", + "municipality": "Maksatikha", + "scheduled_service": "no", + "keywords": "Maxatikha Airport, Аэропорт Максатиха" + }, + { + "id": "46345", + "ident": "RU-0420", + "type": "small_airport", + "name": "Staritsa Airstrip", + "latitude_deg": "56.512343544100005", + "longitude_deg": "34.9719715118", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TVE", + "municipality": "Staritsa", + "scheduled_service": "no", + "keywords": "ВПП Старица" + }, + { + "id": "46348", + "ident": "RU-0421", + "type": "small_airport", + "name": "Otradnaya Airport", + "latitude_deg": "44.382827104", + "longitude_deg": "41.4904689789", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Otradnaya", + "scheduled_service": "no", + "keywords": "Аэропорт Отрадная" + }, + { + "id": "46349", + "ident": "RU-0422", + "type": "closed", + "name": "Mostovskoy Airfield", + "latitude_deg": "44.393346", + "longitude_deg": "40.81614", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Mostovskoy", + "scheduled_service": "no", + "local_code": "ZA8K", + "keywords": "Аэропорт Мостовской" + }, + { + "id": "46350", + "ident": "RU-0423", + "type": "small_airport", + "name": "Labinsk", + "latitude_deg": "44.663708", + "longitude_deg": "40.752668", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Labinsk", + "scheduled_service": "no", + "gps_code": "URKW", + "keywords": "Аэропорт Лабинск" + }, + { + "id": "46351", + "ident": "RU-0424", + "type": "small_airport", + "name": "Kurganinsk Airport", + "latitude_deg": "44.8630479451", + "longitude_deg": "40.625767707799994", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Kurganinsk", + "scheduled_service": "no", + "keywords": "Аэропорт Курганинск" + }, + { + "id": "46352", + "ident": "RU-0425", + "type": "closed", + "name": "Kislovodsk Airport", + "latitude_deg": "43.9486", + "longitude_deg": "42.627", + "elevation_ft": "2702", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-STA", + "municipality": "Kislovodsk", + "scheduled_service": "no", + "gps_code": "URMK", + "keywords": "Аэропорт Кисловодск" + }, + { + "id": "46353", + "ident": "RU-0426", + "type": "small_airport", + "name": "Psebay Airport", + "latitude_deg": "44.110452836099995", + "longitude_deg": "40.81884384159999", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Psebay", + "scheduled_service": "no", + "keywords": "Аэропорт Псебай" + }, + { + "id": "46464", + "ident": "RU-0427", + "type": "heliport", + "name": "Bugry Helipad", + "latitude_deg": "60.0564926747", + "longitude_deg": "30.3958761692", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Бугры" + }, + { + "id": "46465", + "ident": "RU-0428", + "type": "heliport", + "name": "Osinovaya Roshcha Helipad", + "latitude_deg": "60.1020986078", + "longitude_deg": "30.2621734142", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SPE", + "municipality": "Saint Petersburg", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Осиновая Роща" + }, + { + "id": "46479", + "ident": "RU-0429", + "type": "small_airport", + "name": "Morozovo Airstrip", + "latitude_deg": "55.3806464897", + "longitude_deg": "38.371596336399996", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Morozovo", + "scheduled_service": "no", + "keywords": "ВПП Морозово" + }, + { + "id": "46488", + "ident": "RU-0430", + "type": "small_airport", + "name": "Kamyshin Airport", + "latitude_deg": "50.0532536947", + "longitude_deg": "45.3695440292", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VGG", + "municipality": "Kamyshin", + "scheduled_service": "no", + "keywords": "Аэропорт Камышин" + }, + { + "id": "46649", + "ident": "RU-0431", + "type": "heliport", + "name": "Opalikha Traffic Safety Helipad", + "latitude_deg": "56.195311", + "longitude_deg": "44.120718", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NIZ", + "municipality": "Opalikha", + "scheduled_service": "no" + }, + { + "id": "299693", + "ident": "RU-0432", + "type": "closed", + "name": "Karachayevsk Airfield", + "latitude_deg": "43.789001", + "longitude_deg": "41.911499", + "elevation_ft": "2816", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KC", + "municipality": "Karachayevsk", + "scheduled_service": "no" + }, + { + "id": "308490", + "ident": "RU-0433", + "type": "small_airport", + "name": "Nizhneudinsk Airport", + "latitude_deg": "54.8894", + "longitude_deg": "99.067", + "elevation_ft": "1340", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Nizhneudinsk", + "scheduled_service": "no", + "gps_code": "UINN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nizhneudinsk_Airport", + "keywords": "УИНН, Аэропорт «Нижнеудинск»" + }, + { + "id": "315323", + "ident": "RU-0434", + "type": "closed", + "name": "Salmiyarvi Airport", + "latitude_deg": "69.3296", + "longitude_deg": "29.9858", + "elevation_ft": "325", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Nikel", + "scheduled_service": "no", + "local_code": "ZC3G", + "keywords": "ЗЦ3Г, Сальмиярви" + }, + { + "id": "315339", + "ident": "RU-0435", + "type": "heliport", + "name": "Anna Heliport", + "latitude_deg": "42.8406", + "longitude_deg": "132.5705", + "elevation_ft": "45", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Anna", + "scheduled_service": "no", + "local_code": "XHXK", + "keywords": "ЬХЬК, Анна" + }, + { + "id": "315344", + "ident": "RU-0436", + "type": "small_airport", + "name": "Afipsky Airport", + "latitude_deg": "44.8544", + "longitude_deg": "38.8224", + "elevation_ft": "92", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Afipsky", + "scheduled_service": "no", + "local_code": "ZB1Y", + "keywords": "ЗБ1Ы, Афипский" + }, + { + "id": "315503", + "ident": "RU-0437", + "type": "closed", + "name": "Torbusha Airstrip", + "latitude_deg": "56.1475", + "longitude_deg": "162.1634", + "elevation_ft": "12", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Torbusha", + "scheduled_service": "no" + }, + { + "id": "315523", + "ident": "RU-0438", + "type": "small_airport", + "name": "Zyryanka West Airport", + "latitude_deg": "65.7367", + "longitude_deg": "150.705", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Zyryanka", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zyryanka_West_Airport", + "keywords": "ZCQ6, Зырянка (Западный)" + }, + { + "id": "315530", + "ident": "RU-0439", + "type": "heliport", + "name": "Guba Gryaznaya Heliport", + "latitude_deg": "69.0652", + "longitude_deg": "33.2916", + "elevation_ft": "15", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Safonovo", + "scheduled_service": "no", + "keywords": "ZEV8, Губа Грязная" + }, + { + "id": "315536", + "ident": "RU-0440", + "type": "closed", + "name": "Shonguy Airfield", + "latitude_deg": "68.743", + "longitude_deg": "33.127", + "elevation_ft": "235", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Shonguy", + "scheduled_service": "no", + "wikipedia_link": "https://ru.wikipedia.org/wiki/%D0%A8%D0%BE%D0%BD%D0%B3%D1%83%D0%B9", + "keywords": "ZC3F, Аэродром Шонгуй, Shong, Shonguí" + }, + { + "id": "315540", + "ident": "RU-0441", + "type": "closed", + "name": "Pyalitsa Airport", + "latitude_deg": "66.1956", + "longitude_deg": "39.55", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Pyalitsa", + "scheduled_service": "no", + "keywords": "ZC6K, Пялица" + }, + { + "id": "315543", + "ident": "RU-0442", + "type": "closed", + "name": "Kashkarantsy Airstrip", + "latitude_deg": "66.3454", + "longitude_deg": "36.027", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Kashkarantsy", + "scheduled_service": "no", + "local_code": "ZC6L", + "keywords": "ZC6L, Кашкаранцы" + }, + { + "id": "315545", + "ident": "RU-0443", + "type": "closed", + "name": "Olenitsa Airfield", + "latitude_deg": "66.4695", + "longitude_deg": "35.359", + "elevation_ft": "60", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Olenitsa", + "scheduled_service": "no", + "local_code": "ZC6M", + "keywords": "ZC6M, Оленица" + }, + { + "id": "315546", + "ident": "RU-0444", + "type": "closed", + "name": "Kuzreka Airport", + "latitude_deg": "66.621", + "longitude_deg": "34.753", + "elevation_ft": "85", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Kuzreka", + "scheduled_service": "no", + "keywords": "ZC6N, Кузрека" + }, + { + "id": "315694", + "ident": "RU-0445", + "type": "small_airport", + "name": "Aerodrom Tsherskaia", + "latitude_deg": "57.633923", + "longitude_deg": "28.223795", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PSK", + "scheduled_service": "no", + "local_code": "ZCX8", + "keywords": "ЗЦЬ8, Черская" + }, + { + "id": "315696", + "ident": "RU-0446", + "type": "closed", + "name": "Emilovo", + "latitude_deg": "56.9905827", + "longitude_deg": "27.9127502", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PSK", + "scheduled_service": "no" + }, + { + "id": "316245", + "ident": "RU-0447", + "type": "small_airport", + "name": "Seredka Airfield", + "latitude_deg": "58.142135", + "longitude_deg": "28.203349", + "elevation_ft": "240", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PSK", + "municipality": "Seredka", + "scheduled_service": "no", + "gps_code": "ULOR", + "home_link": "https://seredka.aero/", + "keywords": "УЛОР, Середка" + }, + { + "id": "316399", + "ident": "RU-0448", + "type": "closed", + "name": "Gurlevo", + "latitude_deg": "59.477249", + "longitude_deg": "28.89666", + "elevation_ft": "299", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Kerstovo", + "scheduled_service": "no", + "keywords": "Kerstovo East" + }, + { + "id": "316496", + "ident": "RU-0449", + "type": "small_airport", + "name": "Atsevo", + "latitude_deg": "57.0934603", + "longitude_deg": "29.7212392", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PSK", + "scheduled_service": "no" + }, + { + "id": "317428", + "ident": "RU-0450", + "type": "heliport", + "name": "Poklonnaya Hill Helipad", + "latitude_deg": "55.73246", + "longitude_deg": "37.519446", + "elevation_ft": "481", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "municipality": "Moscow", + "scheduled_service": "no", + "local_code": "HEY8", + "keywords": "ХЕЫ8, Поклонная Гора" + }, + { + "id": "320835", + "ident": "RU-0451", + "type": "small_airport", + "name": "Chistyy Airport", + "latitude_deg": "55.4856", + "longitude_deg": "103.2065", + "elevation_ft": "1426", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Chistyy", + "scheduled_service": "no", + "local_code": "HC0M", + "keywords": "ХЦ0М, Чистый" + }, + { + "id": "320836", + "ident": "RU-0452", + "type": "small_airport", + "name": "Priboynyy Airport", + "latitude_deg": "55.6498", + "longitude_deg": "103.2314", + "elevation_ft": "1350", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Priboynyy", + "scheduled_service": "no", + "local_code": "HBO7", + "keywords": "ХБО7, Прибойный" + }, + { + "id": "320837", + "ident": "RU-0453", + "type": "small_airport", + "name": "Krivolutskaya Airport", + "latitude_deg": "55.6112", + "longitude_deg": "103.1252", + "elevation_ft": "1725", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Karakhun", + "scheduled_service": "no", + "local_code": "HB85", + "keywords": "ХБ85, Карахун" + }, + { + "id": "321213", + "ident": "RU-0454", + "type": "small_airport", + "name": "Vorskoe Airstrip", + "latitude_deg": "54.653688", + "longitude_deg": "20.9941413", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KGD", + "scheduled_service": "no" + }, + { + "id": "321294", + "ident": "RU-0455", + "type": "small_airport", + "name": "Nikulino Airstrip", + "latitude_deg": "56.99965", + "longitude_deg": "29.815912", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PSK", + "municipality": "Nikulino", + "scheduled_service": "no" + }, + { + "id": "321899", + "ident": "RU-0456", + "type": "small_airport", + "name": "Zhurban Airport", + "latitude_deg": "54.1745", + "longitude_deg": "127.989703", + "elevation_ft": "1388", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Snezhnogorsk", + "scheduled_service": "no", + "local_code": "ZC8E", + "keywords": "ЗЦ8Е, Снежногорский" + }, + { + "id": "321900", + "ident": "RU-0457", + "type": "small_airport", + "name": "Khvoynyy Airport", + "latitude_deg": "54.6331", + "longitude_deg": "127.84425", + "elevation_ft": "1347", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Khvoynyy", + "scheduled_service": "no", + "local_code": "ZB2P", + "keywords": "ЗБ2П, Хвойный" + }, + { + "id": "321904", + "ident": "RU-0458", + "type": "closed", + "name": "Kakhovka/Romny Airbase", + "latitude_deg": "50.8133", + "longitude_deg": "129.2167", + "elevation_ft": "732", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Kakhovka", + "scheduled_service": "no" + }, + { + "id": "321905", + "ident": "RU-0459", + "type": "small_airport", + "name": "Kakhovka Airfield", + "latitude_deg": "50.80945", + "longitude_deg": "129.187", + "elevation_ft": "733", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Kakhovka", + "scheduled_service": "no", + "local_code": "XHBH", + "keywords": "ЬХБХ, Каховка" + }, + { + "id": "321906", + "ident": "RU-0460", + "type": "small_airport", + "name": "Pozdeevka Airport", + "latitude_deg": "50.58205", + "longitude_deg": "128.8795", + "elevation_ft": "763", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Pozdeevka", + "scheduled_service": "no", + "local_code": "ZD42", + "keywords": "ЗД42, Поздеевка" + }, + { + "id": "321907", + "ident": "RU-0461", + "type": "small_airport", + "name": "Amaranka Airfield", + "latitude_deg": "50.6947", + "longitude_deg": "129.613", + "elevation_ft": "694", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Amaranka", + "scheduled_service": "no", + "local_code": "XHXA", + "keywords": "ЬХЬА, Амаранка" + }, + { + "id": "321908", + "ident": "RU-0462", + "type": "small_airport", + "name": "Cheremkhovo Airstrip", + "latitude_deg": "50.42953", + "longitude_deg": "127.77367", + "elevation_ft": "590", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Cheremkhovo", + "scheduled_service": "no", + "local_code": "ZBT3", + "keywords": "ЗБТ3, Черемхово" + }, + { + "id": "321947", + "ident": "RU-0463", + "type": "small_airport", + "name": "Sorokino Airfield", + "latitude_deg": "57.724212", + "longitude_deg": "28.240812", + "elevation_ft": "161", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PSK", + "scheduled_service": "no", + "local_code": "XLOR", + "keywords": "ЬЛОР, Сорокино" + }, + { + "id": "323214", + "ident": "RU-0464", + "type": "small_airport", + "name": "Eldikan Airstrip", + "latitude_deg": "60.747856", + "longitude_deg": "135.128137", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Eldikan", + "scheduled_service": "no", + "gps_code": "UEQL" + }, + { + "id": "323471", + "ident": "RU-0465", + "type": "small_airport", + "name": "Novoselovo Airport", + "latitude_deg": "55.002535", + "longitude_deg": "90.921397", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Novoselovo", + "scheduled_service": "no", + "gps_code": "UNAN", + "keywords": "УНАН, Новоселово" + }, + { + "id": "323472", + "ident": "RU-0466", + "type": "small_airport", + "name": "Balakhta Airport", + "latitude_deg": "55.361388", + "longitude_deg": "91.528933", + "elevation_ft": "998", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Balakhta", + "scheduled_service": "no", + "local_code": "ZBI4", + "keywords": "ЗБИ4, Балахта" + }, + { + "id": "323473", + "ident": "RU-0467", + "type": "small_airport", + "name": "Krasnoturansk Airport", + "latitude_deg": "54.313927", + "longitude_deg": "91.521", + "elevation_ft": "1258", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Krasnoturansk", + "scheduled_service": "no", + "gps_code": "UNAT", + "local_code": "UNAT", + "keywords": "УНАТ, Краснотуранск" + }, + { + "id": "323474", + "ident": "RU-0468", + "type": "small_airport", + "name": "Oktyabrskiy Airport", + "latitude_deg": "56.088096", + "longitude_deg": "99.40945", + "elevation_ft": "861", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Oktyabrskiy", + "scheduled_service": "no", + "gps_code": "UINO", + "local_code": "UINO", + "keywords": "УИНО, Октябрьский" + }, + { + "id": "323475", + "ident": "RU-0469", + "type": "small_airport", + "name": "Anash Airport", + "latitude_deg": "54.856756", + "longitude_deg": "91.061761", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Anash", + "scheduled_service": "no" + }, + { + "id": "323478", + "ident": "RU-0470", + "type": "small_airport", + "name": "Motygino Airport", + "latitude_deg": "58.180921", + "longitude_deg": "94.745272", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Motygino", + "scheduled_service": "no" + }, + { + "id": "323479", + "ident": "RU-0471", + "type": "small_airport", + "name": "Novoangarsk Airport", + "latitude_deg": "58.127988", + "longitude_deg": "93.477721", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Novoangarsk", + "scheduled_service": "no" + }, + { + "id": "323626", + "ident": "RU-0472", + "type": "small_airport", + "name": "Lamutskoye Airport", + "latitude_deg": "65.538838", + "longitude_deg": "168.844848", + "elevation_ft": "601", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Lamutskoye", + "scheduled_service": "no", + "gps_code": "UHAL", + "local_code": "UHAL", + "keywords": "УХАЛ, Ламутское" + }, + { + "id": "324208", + "ident": "RU-0473", + "type": "small_airport", + "name": "Schloss Waldau Airstrip", + "latitude_deg": "54.6920446", + "longitude_deg": "20.7462606", + "elevation_ft": "0", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KGD", + "scheduled_service": "no" + }, + { + "id": "324685", + "ident": "RU-0474", + "type": "heliport", + "name": "Vaga River Heliport", + "latitude_deg": "61.151632", + "longitude_deg": "42.238552", + "elevation_ft": "240", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Velsk", + "scheduled_service": "no", + "local_code": "HFZ9", + "keywords": "ХФЗ9, Река Вага" + }, + { + "id": "324812", + "ident": "RU-0475", + "type": "small_airport", + "name": "Pricep Airstrip", + "latitude_deg": "55.098395", + "longitude_deg": "38.00034", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Lipitino", + "scheduled_service": "no", + "local_code": "ZCJ6" + }, + { + "id": "324864", + "ident": "RU-0476", + "type": "closed", + "name": "Tarosovo Airstrip", + "latitude_deg": "60.27345", + "longitude_deg": "29.27805", + "elevation_ft": "144", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Tarosovo", + "scheduled_service": "no", + "local_code": "ZAQ2", + "keywords": "ЗАЯ2, Тарасово" + }, + { + "id": "324991", + "ident": "RU-0477", + "type": "heliport", + "name": "Alexandria Heliport", + "latitude_deg": "46.471842", + "longitude_deg": "41.562835", + "elevation_ft": "134", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Salsk", + "scheduled_service": "no", + "local_code": "HH8D", + "keywords": "ХХ8Д, Александрия" + }, + { + "id": "325004", + "ident": "RU-0478", + "type": "heliport", + "name": "Otkritie Arena Heliport", + "latitude_deg": "55.815467", + "longitude_deg": "37.441405", + "elevation_ft": "407", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "municipality": "Tushino", + "scheduled_service": "no", + "local_code": "HGC5", + "keywords": "ХГЦ5, Открыте Арена, Spartak Stadium" + }, + { + "id": "325005", + "ident": "RU-0479", + "type": "heliport", + "name": "Tushino Heliport", + "latitude_deg": "55.820866", + "longitude_deg": "37.420067", + "elevation_ft": "419", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "municipality": "Tushino", + "scheduled_service": "no", + "local_code": "XUUS", + "keywords": "ЬУУС, Тушино" + }, + { + "id": "325006", + "ident": "RU-0480", + "type": "seaplane_base", + "name": "Volkhov-Most River Runway", + "latitude_deg": "59.065209", + "longitude_deg": "31.764117", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NGR", + "municipality": "Volkhov-Most", + "scheduled_service": "no", + "local_code": "ZE28" + }, + { + "id": "325058", + "ident": "RU-0481", + "type": "closed", + "name": "Vrachovo-Gorki Airport", + "latitude_deg": "54.923423", + "longitude_deg": "39.225971", + "elevation_ft": "517", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Vrachovo-Gorki", + "scheduled_service": "no", + "local_code": "ZEJ0", + "keywords": "ЗЕЙ0, Врачово-Горки" + }, + { + "id": "325059", + "ident": "RU-0482", + "type": "closed", + "name": "Seltsy Heliport", + "latitude_deg": "54.909708", + "longitude_deg": "39.570599", + "elevation_ft": "348", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-RYA", + "municipality": "Seltsy", + "scheduled_service": "no", + "local_code": "HA4L", + "keywords": "ХА4Л, Сельцы" + }, + { + "id": "325861", + "ident": "RU-0483", + "type": "small_airport", + "name": "Padinskoye Airstrip", + "latitude_deg": "44.844707", + "longitude_deg": "43.185901", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-STA", + "municipality": "Padinskoye", + "scheduled_service": "no" + }, + { + "id": "325862", + "ident": "RU-0484", + "type": "small_airport", + "name": "Kotovo Airfield", + "latitude_deg": "51.3146773", + "longitude_deg": "38.0090673", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BEL", + "municipality": "Kotovo", + "scheduled_service": "no", + "keywords": "kotovo, dosaaf" + }, + { + "id": "326381", + "ident": "RU-0485", + "type": "closed", + "name": "Aviator-3 Airfield", + "latitude_deg": "55.331223", + "longitude_deg": "39.339296", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Demidovo", + "scheduled_service": "no" + }, + { + "id": "326388", + "ident": "RU-0486", + "type": "closed", + "name": "Baranikha Airport", + "latitude_deg": "68.497585", + "longitude_deg": "168.253903", + "elevation_ft": "712", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Baranikha", + "scheduled_service": "no", + "local_code": "UHMB", + "keywords": "УХМБ, Бараниха" + }, + { + "id": "326989", + "ident": "RU-0487", + "type": "small_airport", + "name": "Cherek Airport", + "latitude_deg": "43.527152", + "longitude_deg": "43.997648", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KB", + "municipality": "Cherek", + "scheduled_service": "no" + }, + { + "id": "328341", + "ident": "RU-0488", + "type": "small_airport", + "name": "Belgorod-Severniy Airstrip", + "latitude_deg": "50.657376", + "longitude_deg": "36.529791", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BEL", + "municipality": "Belgorod", + "scheduled_service": "no" + }, + { + "id": "328360", + "ident": "RU-0489", + "type": "closed", + "name": "Smirnykh Air Base", + "latitude_deg": "49.736042", + "longitude_deg": "142.859672", + "elevation_ft": "141", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Smirnykh", + "scheduled_service": "no", + "local_code": "XHSH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Smirnykh_Air_Base", + "keywords": "ЬХСХ, Смирных, Keton Airfield" + }, + { + "id": "35122", + "ident": "RU-0490", + "type": "small_airport", + "name": "Zavitinsk Air Base", + "latitude_deg": "50.1917", + "longitude_deg": "129.503006", + "elevation_ft": "906", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Zavitinsk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zavitinsk_(air_base)" + }, + { + "id": "328361", + "ident": "RU-0491", + "type": "closed", + "name": "Pervomaysk/Zhitnitsa Airfield", + "latitude_deg": "49.964669", + "longitude_deg": "143.276972", + "elevation_ft": "498", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Pervomaysk", + "scheduled_service": "no", + "keywords": "Первомайск" + }, + { + "id": "329766", + "ident": "RU-0492", + "type": "small_airport", + "name": "Taldom airstrip", + "latitude_deg": "56.7397979", + "longitude_deg": "37.6042247", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Taldom", + "scheduled_service": "no" + }, + { + "id": "330384", + "ident": "RU-0493", + "type": "small_airport", + "name": "Bichevaya Airport", + "latitude_deg": "47.75029", + "longitude_deg": "135.64066", + "elevation_ft": "361", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Bichevaya", + "scheduled_service": "yes", + "local_code": "ZC2P" + }, + { + "id": "330837", + "ident": "RU-0494", + "type": "closed", + "name": "Korpiya Airstrip", + "latitude_deg": "59.530483", + "longitude_deg": "29.331986", + "elevation_ft": "510", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Korpiya", + "scheduled_service": "no" + }, + { + "id": "330838", + "ident": "RU-0495", + "type": "closed", + "name": "Kotly Airfield", + "latitude_deg": "59.593901", + "longitude_deg": "28.895078", + "elevation_ft": "300", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Kotly", + "scheduled_service": "no" + }, + { + "id": "330839", + "ident": "RU-0496", + "type": "closed", + "name": "Begunitsy Northwest Airfield", + "latitude_deg": "59.605536", + "longitude_deg": "29.27302", + "elevation_ft": "489", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Begunitsy", + "scheduled_service": "no" + }, + { + "id": "330840", + "ident": "RU-0497", + "type": "closed", + "name": "Golubkovo Airfield", + "latitude_deg": "58.558887", + "longitude_deg": "29.935358", + "elevation_ft": "223", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Golubkovo", + "scheduled_service": "no" + }, + { + "id": "330841", + "ident": "RU-0498", + "type": "closed", + "name": "Luga Bereg Airstrip", + "latitude_deg": "58.672416", + "longitude_deg": "29.961654", + "elevation_ft": "150", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "scheduled_service": "no" + }, + { + "id": "330844", + "ident": "RU-0499", + "type": "closed", + "name": "Rybezhno West", + "latitude_deg": "60.33571", + "longitude_deg": "32.93771", + "elevation_ft": "140", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Lesozavod", + "scheduled_service": "no" + }, + { + "id": "330877", + "ident": "RU-0500", + "type": "closed", + "name": "Aleksandrov East Airport", + "latitude_deg": "56.403308", + "longitude_deg": "39.067037", + "elevation_ft": "597", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLA", + "municipality": "Aleksandrov", + "scheduled_service": "no" + }, + { + "id": "330878", + "ident": "RU-0501", + "type": "closed", + "name": "Bogoslovo Airport", + "latitude_deg": "56.192328", + "longitude_deg": "40.31477", + "elevation_ft": "500", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLA", + "municipality": "Vladimir", + "scheduled_service": "no" + }, + { + "id": "330879", + "ident": "RU-0502", + "type": "closed", + "name": "Bolshiye Vsegodichi Airport", + "latitude_deg": "56.458041", + "longitude_deg": "41.29236", + "elevation_ft": "340", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLA", + "municipality": "Kovrov", + "scheduled_service": "no" + }, + { + "id": "330880", + "ident": "RU-0503", + "type": "closed", + "name": "Vtorovo Airport", + "latitude_deg": "56.254781", + "longitude_deg": "40.811732", + "elevation_ft": "410", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLA", + "municipality": "Vtorovo", + "scheduled_service": "no", + "keywords": "Второво" + }, + { + "id": "330881", + "ident": "RU-0504", + "type": "closed", + "name": "Kameno Airport", + "latitude_deg": "56.409669", + "longitude_deg": "40.978079", + "elevation_ft": "340", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLA", + "municipality": "Kameshkovo", + "scheduled_service": "no" + }, + { + "id": "330882", + "ident": "RU-0505", + "type": "closed", + "name": "Gorokhovets Airport", + "latitude_deg": "56.180573", + "longitude_deg": "42.668519", + "elevation_ft": "500", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLA", + "municipality": "Gorokhovets", + "scheduled_service": "no" + }, + { + "id": "330883", + "ident": "RU-0506", + "type": "closed", + "name": "Danilkovo Airport", + "latitude_deg": "56.213543", + "longitude_deg": "42.263569", + "elevation_ft": "445", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLA", + "municipality": "Vyazniki", + "scheduled_service": "no" + }, + { + "id": "330884", + "ident": "RU-0507", + "type": "closed", + "name": "Paustovo Airfield", + "latitude_deg": "56.135622", + "longitude_deg": "42.174507", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLA", + "municipality": "Paustovo", + "scheduled_service": "no" + }, + { + "id": "330885", + "ident": "RU-0508", + "type": "closed", + "name": "Burtsevo Airstrip", + "latitude_deg": "56.151721", + "longitude_deg": "43.701272", + "elevation_ft": "575", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NIZ", + "municipality": "Doskino", + "scheduled_service": "no", + "local_code": "UWGQ" + }, + { + "id": "330886", + "ident": "RU-0509", + "type": "closed", + "name": "Shapkino Airport", + "latitude_deg": "56.037273", + "longitude_deg": "43.558402", + "elevation_ft": "430", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NIZ", + "municipality": "Troitsa", + "scheduled_service": "no" + }, + { + "id": "330887", + "ident": "RU-0510", + "type": "closed", + "name": "Krapivye Airport", + "latitude_deg": "56.396436", + "longitude_deg": "40.338347", + "elevation_ft": "410", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLA", + "municipality": "Suzdal", + "scheduled_service": "no" + }, + { + "id": "330888", + "ident": "RU-0511", + "type": "small_airport", + "name": "Nebyloye Airfield", + "latitude_deg": "56.401394", + "longitude_deg": "39.958137", + "elevation_ft": "656", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLA", + "municipality": "Zventsovo", + "scheduled_service": "no", + "gps_code": "UUIN", + "keywords": "Fedorovskoye,Andreyevskoye" + }, + { + "id": "330889", + "ident": "RU-0512", + "type": "closed", + "name": "Tarbayevo Airport", + "latitude_deg": "56.296683", + "longitude_deg": "40.157771", + "elevation_ft": "595", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLA", + "municipality": "Staryy Dvor", + "scheduled_service": "no" + }, + { + "id": "330891", + "ident": "RU-0513", + "type": "closed", + "name": "Turtino Airport", + "latitude_deg": "56.368268", + "longitude_deg": "40.266128", + "elevation_ft": "525", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLA", + "municipality": "Vysheslavskoye", + "scheduled_service": "no" + }, + { + "id": "330892", + "ident": "RU-0514", + "type": "small_airport", + "name": "Orlovka Airfield", + "latitude_deg": "56.143813", + "longitude_deg": "34.988268", + "elevation_ft": "676", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAR", + "municipality": "Petrovskoye", + "scheduled_service": "no", + "wikipedia_link": "https://ru.wikipedia.org/wiki/%D0%9E%D1%80%D0%BB%D0%BE%D0%B2%D0%BA%D0%B0_(%D0%B0%D1%8D%D1%80%D0%BE%D0%B4%D1%80%D0%BE%D0%BC,_%D0%", + "keywords": "Орловка" + }, + { + "id": "330902", + "ident": "RU-0515", + "type": "closed", + "name": "Selizharovo Airfield", + "latitude_deg": "56.819368", + "longitude_deg": "33.328104", + "elevation_ft": "735", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TVE", + "scheduled_service": "no" + }, + { + "id": "330903", + "ident": "RU-0516", + "type": "closed", + "name": "Kusnetsovka Airfield", + "latitude_deg": "56.61675", + "longitude_deg": "34.517382", + "elevation_ft": "794", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TVE", + "municipality": "Lukovnikovo", + "scheduled_service": "no" + }, + { + "id": "330915", + "ident": "RU-0517", + "type": "small_airport", + "name": "Bakhta Airport", + "latitude_deg": "62.468115", + "longitude_deg": "88.998827", + "elevation_ft": "102", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Bakhta", + "scheduled_service": "no", + "local_code": "UNHB", + "keywords": "УНХБ, Бахта" + }, + { + "id": "330919", + "ident": "RU-0518", + "type": "closed", + "name": "Lebed Airport", + "latitude_deg": "62.088049", + "longitude_deg": "89.181841", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Lebed", + "scheduled_service": "no" + }, + { + "id": "330921", + "ident": "RU-0519", + "type": "small_airport", + "name": "Poligus Airport", + "latitude_deg": "62.002853", + "longitude_deg": "94.657168", + "elevation_ft": "1121", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Poligus", + "scheduled_service": "no", + "local_code": "UNJP", + "keywords": "УНЙП, Полигус" + }, + { + "id": "330922", + "ident": "RU-0520", + "type": "closed", + "name": "Vorogovo Airport", + "latitude_deg": "61.038261", + "longitude_deg": "89.613805", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Vorogovo", + "scheduled_service": "no", + "local_code": "UNHW", + "keywords": "УНХВ, Ворогово" + }, + { + "id": "331743", + "ident": "RU-0521", + "type": "small_airport", + "name": "Visokiy Airstrip", + "latitude_deg": "44.7770214", + "longitude_deg": "40.8997519", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "scheduled_service": "no" + }, + { + "id": "332760", + "ident": "RU-0522", + "type": "small_airport", + "name": "Paradrom Pokrov", + "latitude_deg": "55.43705", + "longitude_deg": "37.626689", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "scheduled_service": "no", + "local_code": "ZF94" + }, + { + "id": "333503", + "ident": "RU-0523", + "type": "small_airport", + "name": "Podgornoye Airfield", + "latitude_deg": "54.740583", + "longitude_deg": "20.726472", + "elevation_ft": "-5", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KGD", + "scheduled_service": "no", + "home_link": "https://aeroland.club/", + "keywords": "Подгорное" + }, + { + "id": "334131", + "ident": "RU-0524", + "type": "small_airport", + "name": "Southern Sky Airfield", + "latitude_deg": "44.937911", + "longitude_deg": "38.929186", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AD", + "municipality": "Enem", + "scheduled_service": "no", + "local_code": "XRKD", + "keywords": "Southern Sky" + }, + { + "id": "335060", + "ident": "RU-0525", + "type": "small_airport", + "name": "Beregovoy Airport", + "latitude_deg": "54.358554", + "longitude_deg": "127.501488", + "elevation_ft": "1150", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Zeysky District", + "scheduled_service": "no" + }, + { + "id": "335061", + "ident": "RU-0526", + "type": "small_airport", + "name": "Fevralsk Airport", + "latitude_deg": "52.495787", + "longitude_deg": "130.915318", + "elevation_ft": "890", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "scheduled_service": "no", + "gps_code": "UHBF" + }, + { + "id": "335168", + "ident": "RU-0527", + "type": "small_airport", + "name": "Byas-Kyuyol Airport", + "latitude_deg": "59.498603", + "longitude_deg": "119.309163", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "yes", + "gps_code": "UEBY" + }, + { + "id": "337387", + "ident": "RU-0528", + "type": "small_airport", + "name": "Mys Shmidta", + "latitude_deg": "68.866213", + "longitude_deg": "-179.375284", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "689350", + "scheduled_service": "no", + "home_link": "http://www.rrwx.com/airport/RU/UHMI/", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aeropuerto_de_Mys_Shmidta", + "keywords": "siberia, mys, shmidta," + }, + { + "id": "337766", + "ident": "RU-0529", + "type": "heliport", + "name": "Goryachiy Plyazh Heliport", + "latitude_deg": "43.99996", + "longitude_deg": "145.79152", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Yuzhno-Kurilsk", + "scheduled_service": "no", + "keywords": "UYUN" + }, + { + "id": "337767", + "ident": "RU-0530", + "type": "heliport", + "name": "Tanfiliev Heliport", + "latitude_deg": "43.443772", + "longitude_deg": "145.927682", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Yuzhno-Kurilsk", + "scheduled_service": "no" + }, + { + "id": "337768", + "ident": "RU-0531", + "type": "heliport", + "name": "Anuchina Heliport", + "latitude_deg": "43.369429", + "longitude_deg": "146.001622", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Yuzhno-Kurilsk", + "scheduled_service": "no" + }, + { + "id": "337769", + "ident": "RU-0532", + "type": "heliport", + "name": "Malokurilskoye Heliport", + "latitude_deg": "43.86641", + "longitude_deg": "146.82758", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Malokurilskoye", + "scheduled_service": "no" + }, + { + "id": "337770", + "ident": "RU-0533", + "type": "heliport", + "name": "Krabozavodskoye Heliport", + "latitude_deg": "43.8311", + "longitude_deg": "146.7592", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Krabozavodskoye", + "scheduled_service": "no" + }, + { + "id": "337773", + "ident": "RU-0534", + "type": "heliport", + "name": "Golovnino Heliport", + "latitude_deg": "43.738081", + "longitude_deg": "145.515891", + "elevation_ft": "23", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Golovnino", + "scheduled_service": "no" + }, + { + "id": "337875", + "ident": "RU-0535", + "type": "heliport", + "name": "Old Vladivostok Airfield Heliport", + "latitude_deg": "43.21047", + "longitude_deg": "131.94238", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Vladivostok", + "scheduled_service": "no" + }, + { + "id": "337876", + "ident": "RU-0536", + "type": "closed", + "name": "Old Vladivostok Airfield", + "latitude_deg": "43.207285", + "longitude_deg": "131.938692", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Vladivostok", + "scheduled_service": "no" + }, + { + "id": "337877", + "ident": "RU-0537", + "type": "small_airport", + "name": "Ozyornye Klyuchi (Lake Springs) Airfield", + "latitude_deg": "43.36795", + "longitude_deg": "132.1448", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Artyom", + "scheduled_service": "no" + }, + { + "id": "337878", + "ident": "RU-0538", + "type": "small_airport", + "name": "Nikolayevka Air Base", + "latitude_deg": "43.08586", + "longitude_deg": "133.19061", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Nikolayevka", + "scheduled_service": "no" + }, + { + "id": "337879", + "ident": "RU-0539", + "type": "small_airport", + "name": "Baranovskiy Airfield", + "latitude_deg": "43.751678", + "longitude_deg": "132.007553", + "elevation_ft": "147", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Ussuriysk", + "scheduled_service": "no" + }, + { + "id": "337881", + "ident": "RU-0540", + "type": "small_airport", + "name": "Sysoyevka Airfield", + "latitude_deg": "44.20964", + "longitude_deg": "133.36596", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Sysoyevka", + "scheduled_service": "no" + }, + { + "id": "337882", + "ident": "RU-0541", + "type": "closed", + "name": "Sergeyevka Landing Strip", + "latitude_deg": "43.30879", + "longitude_deg": "133.34868", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Yuzhnaya Sergeyevka", + "scheduled_service": "no" + }, + { + "id": "337883", + "ident": "RU-0542", + "type": "closed", + "name": "Varfolomeyevka Southwest Airfield", + "latitude_deg": "44.28045", + "longitude_deg": "133.41152", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Varfolomeyevka", + "scheduled_service": "no" + }, + { + "id": "338091", + "ident": "RU-0543", + "type": "small_airport", + "name": "Tempa Airfield", + "latitude_deg": "75.76713", + "longitude_deg": "137.576637", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Kotelny Island", + "scheduled_service": "no", + "keywords": "Темп" + }, + { + "id": "339634", + "ident": "RU-0544", + "type": "heliport", + "name": "Vilkovo Heliport", + "latitude_deg": "52.91767", + "longitude_deg": "158.50325", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Vilkovo", + "scheduled_service": "no" + }, + { + "id": "339635", + "ident": "RU-0545", + "type": "heliport", + "name": "Cape Mayachnyy Heliport", + "latitude_deg": "52.887324", + "longitude_deg": "158.704548", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Petropavlovsk-Kamchatskiy", + "scheduled_service": "no" + }, + { + "id": "339636", + "ident": "RU-0546", + "type": "heliport", + "name": "Vityaz'-Aero Heliport", + "latitude_deg": "53.042368", + "longitude_deg": "158.311808", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Nikolayevka", + "scheduled_service": "no", + "keywords": "UPAU" + }, + { + "id": "339637", + "ident": "RU-0547", + "type": "heliport", + "name": "Pauzhetskaya Power Station Heliport", + "latitude_deg": "51.46422", + "longitude_deg": "156.80941", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Pauzhetka", + "scheduled_service": "no" + }, + { + "id": "339638", + "ident": "RU-0548", + "type": "small_airport", + "name": "Ozernovskiy Airport", + "latitude_deg": "51.49929", + "longitude_deg": "156.54339", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Ozernovskiy", + "scheduled_service": "no", + "gps_code": "UHQO", + "keywords": "Zaporozh'ye, UHQO" + }, + { + "id": "339639", + "ident": "RU-0549", + "type": "heliport", + "name": "Oktyabr'skiy Heliport", + "latitude_deg": "52.67295", + "longitude_deg": "156.23486", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Oktyabr'skiy", + "scheduled_service": "no" + }, + { + "id": "339640", + "ident": "RU-0550", + "type": "heliport", + "name": "Ust'-Bol'sheretsk Heliport", + "latitude_deg": "52.82646", + "longitude_deg": "156.28934", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Ust'-Bol'sheretsk", + "scheduled_service": "no" + }, + { + "id": "339641", + "ident": "RU-0551", + "type": "heliport", + "name": "Koryaki Heliport", + "latitude_deg": "53.25887", + "longitude_deg": "158.21443", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Koryaki", + "scheduled_service": "no", + "local_code": "PP42" + }, + { + "id": "339642", + "ident": "RU-0552", + "type": "heliport", + "name": "Mayskoye Heliport", + "latitude_deg": "56.25203", + "longitude_deg": "160.07113", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Mayskoye", + "scheduled_service": "no" + }, + { + "id": "339643", + "ident": "RU-0553", + "type": "heliport", + "name": "Ust'Kamchatsk Regional Hospital Helipad", + "latitude_deg": "56.26335", + "longitude_deg": "162.59388", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Ust'-Kamchatsk", + "scheduled_service": "no" + }, + { + "id": "339647", + "ident": "RU-0554", + "type": "heliport", + "name": "Kamenskoye Heliport", + "latitude_deg": "62.463596", + "longitude_deg": "166.19418", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Kamenskoye", + "scheduled_service": "no" + }, + { + "id": "339648", + "ident": "RU-0555", + "type": "small_airport", + "name": "Takhtoyamsk Airport", + "latitude_deg": "60.194321", + "longitude_deg": "154.674325", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MAG", + "municipality": "Takhtoyamsk", + "scheduled_service": "no" + }, + { + "id": "339649", + "ident": "RU-0556", + "type": "closed", + "name": "Magadan-47 Airport", + "latitude_deg": "59.91388", + "longitude_deg": "150.88527", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MAG", + "municipality": "Magadan", + "scheduled_service": "no" + }, + { + "id": "339650", + "ident": "RU-0557", + "type": "small_airport", + "name": "Inya Airport", + "latitude_deg": "59.39879", + "longitude_deg": "144.82051", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Inya", + "scheduled_service": "no", + "gps_code": "UHOQ" + }, + { + "id": "339651", + "ident": "RU-0558", + "type": "small_airport", + "name": "Tukchi Airport", + "latitude_deg": "57.35506", + "longitude_deg": "139.49783", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Tukchi", + "scheduled_service": "no", + "gps_code": "UHOI" + }, + { + "id": "339652", + "ident": "RU-0559", + "type": "small_airport", + "name": "Kiran Airport", + "latitude_deg": "55.01798", + "longitude_deg": "135.40866", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Kiran", + "scheduled_service": "no", + "gps_code": "UHNI" + }, + { + "id": "339654", + "ident": "RU-0560", + "type": "closed", + "name": "Pionery Airport", + "latitude_deg": "47.28947", + "longitude_deg": "142.00005", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Kostromskoye", + "scheduled_service": "no", + "keywords": "Konotoro Airfield" + }, + { + "id": "339655", + "ident": "RU-0561", + "type": "heliport", + "name": "Cape Krillon Heliport", + "latitude_deg": "45.89781", + "longitude_deg": "142.0826", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Taranay", + "scheduled_service": "no" + }, + { + "id": "339934", + "ident": "RU-0562", + "type": "heliport", + "name": "Sakhalin-1 Oil Terminal Helipad", + "latitude_deg": "51.48697", + "longitude_deg": "140.82619", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "De-Kastri", + "scheduled_service": "no" + }, + { + "id": "339937", + "ident": "RU-0563", + "type": "heliport", + "name": "Vanino Heliport", + "latitude_deg": "49.094615", + "longitude_deg": "140.272795", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Vanino", + "scheduled_service": "no" + }, + { + "id": "339938", + "ident": "RU-0564", + "type": "closed", + "name": "Sovetskaya Gavan (Znamenskoye) Airport", + "latitude_deg": "48.97784", + "longitude_deg": "140.32358", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Sovetskaya Gavan", + "scheduled_service": "no" + }, + { + "id": "339940", + "ident": "RU-0565", + "type": "small_airport", + "name": "Maksimovka Airstrip", + "latitude_deg": "46.09133", + "longitude_deg": "137.89901", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Maksimovka", + "scheduled_service": "no" + }, + { + "id": "339941", + "ident": "RU-0566", + "type": "heliport", + "name": "Malaya Kema Heliport", + "latitude_deg": "45.41223", + "longitude_deg": "137.16077", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Malaya Kema", + "scheduled_service": "no" + }, + { + "id": "339942", + "ident": "RU-0567", + "type": "heliport", + "name": "Kamenka Heliport", + "latitude_deg": "44.45472", + "longitude_deg": "136.00023", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Kamenka", + "scheduled_service": "no" + }, + { + "id": "339943", + "ident": "RU-0568", + "type": "heliport", + "name": "Olga Heliport", + "latitude_deg": "43.75547", + "longitude_deg": "135.31572", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Olga", + "scheduled_service": "no" + }, + { + "id": "339944", + "ident": "RU-0569", + "type": "heliport", + "name": "Milogradovo Heliport", + "latitude_deg": "43.30381", + "longitude_deg": "134.60221", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Milogradovo", + "scheduled_service": "no" + }, + { + "id": "339946", + "ident": "RU-0570", + "type": "heliport", + "name": "Khasanskaya Central Regional Hospital Helipad", + "latitude_deg": "42.85598", + "longitude_deg": "131.40188", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Slavyanka", + "scheduled_service": "no" + }, + { + "id": "339947", + "ident": "RU-0571", + "type": "heliport", + "name": "Russkiy Island Heliport", + "latitude_deg": "43.03142", + "longitude_deg": "131.88014", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Russkiy", + "scheduled_service": "no" + }, + { + "id": "339948", + "ident": "RU-0572", + "type": "heliport", + "name": "Far Eastern Federal University (DVFU) Campus Helipad", + "latitude_deg": "43.02998", + "longitude_deg": "131.89307", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Russkiy", + "scheduled_service": "no" + }, + { + "id": "339949", + "ident": "RU-0573", + "type": "heliport", + "name": "Far Eastern Federal University (DVFU) Medical Center Helipad", + "latitude_deg": "43.02247", + "longitude_deg": "131.89309", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Russkiy", + "scheduled_service": "no" + }, + { + "id": "339950", + "ident": "RU-0574", + "type": "heliport", + "name": "Pos'et Heliport", + "latitude_deg": "42.65686", + "longitude_deg": "130.78535", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Pos'et", + "scheduled_service": "no" + }, + { + "id": "340082", + "ident": "RU-0575", + "type": "closed", + "name": "Severo-Kurilsk Airport / Kashiwabara Airfield", + "latitude_deg": "50.703954", + "longitude_deg": "156.126776", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Severo-Kurilsk", + "scheduled_service": "no", + "keywords": "Kashiwabara Airfield" + }, + { + "id": "340083", + "ident": "RU-0576", + "type": "heliport", + "name": "Severo-Kurilsk Vertodrome", + "latitude_deg": "50.671087", + "longitude_deg": "156.123859", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Severo-Kurilsk", + "scheduled_service": "no", + "keywords": "USEI" + }, + { + "id": "340084", + "ident": "RU-0577", + "type": "closed", + "name": "Baykovo Airport", + "latitude_deg": "50.72504", + "longitude_deg": "156.20636", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Baykovo", + "scheduled_service": "no", + "keywords": "Kataoka Airfield, Imaizaki Airfield, USEM" + }, + { + "id": "340085", + "ident": "RU-0578", + "type": "closed", + "name": "Miyoshino Airfield", + "latitude_deg": "50.70847", + "longitude_deg": "156.3168", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Baykovo", + "scheduled_service": "no", + "keywords": "USEJ" + }, + { + "id": "340316", + "ident": "RU-0579", + "type": "small_airport", + "name": "Gostagayevskaya Airport", + "latitude_deg": "44.999984", + "longitude_deg": "37.482398", + "elevation_ft": "295", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Gostagayevskaya", + "scheduled_service": "no" + }, + { + "id": "340317", + "ident": "RU-0580", + "type": "small_airport", + "name": "Borodinskaya Airstrip", + "latitude_deg": "46.0928", + "longitude_deg": "38.2347", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Borodinskaya", + "scheduled_service": "no" + }, + { + "id": "340318", + "ident": "RU-0581", + "type": "small_airport", + "name": "Yasenskaya Airstrip", + "latitude_deg": "46.3927", + "longitude_deg": "38.2848", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Yasenskaya", + "scheduled_service": "no" + }, + { + "id": "340319", + "ident": "RU-0582", + "type": "small_airport", + "name": "Oktyabr'skiy Airstrip", + "latitude_deg": "46.4636", + "longitude_deg": "38.2878", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Oktyabr'skiy", + "scheduled_service": "no" + }, + { + "id": "340320", + "ident": "RU-0583", + "type": "small_airport", + "name": "Zarya Airstrip", + "latitude_deg": "46.4812", + "longitude_deg": "38.1347", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Dalniy", + "scheduled_service": "no" + }, + { + "id": "340321", + "ident": "RU-0584", + "type": "small_airport", + "name": "Kamyshevatskaya Airstrip", + "latitude_deg": "46.4665", + "longitude_deg": "37.9568", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Kamyshevatskaya", + "scheduled_service": "no" + }, + { + "id": "340322", + "ident": "RU-0585", + "type": "small_airport", + "name": "Komsomolets Airstrip", + "latitude_deg": "46.5809", + "longitude_deg": "38.2255", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Komsomolets", + "scheduled_service": "no" + }, + { + "id": "340323", + "ident": "RU-0586", + "type": "heliport", + "name": "Molchanovka Heliport", + "latitude_deg": "46.864818", + "longitude_deg": "38.632287", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Molchanovka", + "scheduled_service": "no" + }, + { + "id": "340609", + "ident": "RU-0587", + "type": "closed", + "name": "Musashi Naval Airfield", + "latitude_deg": "50.015709", + "longitude_deg": "155.398248", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Severo-Kurilsk", + "scheduled_service": "no", + "keywords": "Cape Kurabu, Cape Vasiliev" + }, + { + "id": "35049", + "ident": "RU-0588", + "type": "small_airport", + "name": "Orlovka Air Base", + "latitude_deg": "51.263302", + "longitude_deg": "128.720001", + "elevation_ft": "850", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Vernoye", + "scheduled_service": "no", + "local_code": "ZA9W", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orlovka", + "keywords": "ЗА9В, Орловка" + }, + { + "id": "340611", + "ident": "RU-0589", + "type": "closed", + "name": "Bettobi Airfield", + "latitude_deg": "50.856451", + "longitude_deg": "156.469705", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Baykovo", + "scheduled_service": "no" + }, + { + "id": "340612", + "ident": "RU-0590", + "type": "closed", + "name": "Okeanskoye Airfield", + "latitude_deg": "50.189515", + "longitude_deg": "155.758625", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Severo-Kurilsk", + "scheduled_service": "no", + "keywords": "Suribachi Airfield, USEU" + }, + { + "id": "340613", + "ident": "RU-0591", + "type": "closed", + "name": "Kitanodai Airfield", + "latitude_deg": "50.74971", + "longitude_deg": "156.131819", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Severo-Kurilsk", + "scheduled_service": "no" + }, + { + "id": "340614", + "ident": "RU-0592", + "type": "closed", + "name": "Kakumabetsu Airfield", + "latitude_deg": "50.357953", + "longitude_deg": "155.560735", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Severo-Kurilsk", + "scheduled_service": "no" + }, + { + "id": "340615", + "ident": "RU-0593", + "type": "small_airport", + "name": "Matua Airfield", + "latitude_deg": "48.050982", + "longitude_deg": "153.25502", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Sarychevo", + "scheduled_service": "no", + "keywords": "Matsuwa, Cape Tagan, USEK" + }, + { + "id": "340676", + "ident": "RU-0594", + "type": "closed", + "name": "Shiomi Airfield", + "latitude_deg": "50.760778", + "longitude_deg": "156.205222", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Baykovo", + "scheduled_service": "no" + }, + { + "id": "340677", + "ident": "RU-0595", + "type": "closed", + "name": "Ryponkicha Emergency Airfield", + "latitude_deg": "47.541208", + "longitude_deg": "152.84058", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Ryponkicha Island", + "scheduled_service": "no", + "keywords": "Ushichi-Kitajima, Severo-Ushishir" + }, + { + "id": "340678", + "ident": "RU-0596", + "type": "closed", + "name": "Shana Emergency Landing Field", + "latitude_deg": "45.226194", + "longitude_deg": "147.894278", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Kurilsk", + "scheduled_service": "no" + }, + { + "id": "340679", + "ident": "RU-0597", + "type": "closed", + "name": "Simushir Heliport", + "latitude_deg": "47.129981", + "longitude_deg": "152.269344", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Kraternyy", + "scheduled_service": "no", + "keywords": "Shimushiru Airfield" + }, + { + "id": "340680", + "ident": "RU-0598", + "type": "closed", + "name": "Toshimoe Naval Floatplane Base", + "latitude_deg": "45.017699", + "longitude_deg": "147.720139", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Kurilsk", + "scheduled_service": "no" + }, + { + "id": "340681", + "ident": "RU-0599", + "type": "closed", + "name": "Yakutori Naval Airfield", + "latitude_deg": "45.305854", + "longitude_deg": "148.392193", + "elevation_ft": "469", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Kurilsk", + "scheduled_service": "no" + }, + { + "id": "340790", + "ident": "RU-0600", + "type": "small_airport", + "name": "Ivashka Airport", + "latitude_deg": "58.571046", + "longitude_deg": "162.304749", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Ivashka", + "scheduled_service": "no", + "local_code": "PP11" + }, + { + "id": "340791", + "ident": "RU-0601", + "type": "heliport", + "name": "Tilichiki Heliport", + "latitude_deg": "60.442861", + "longitude_deg": "166.097933", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Tilichiki", + "scheduled_service": "no" + }, + { + "id": "340792", + "ident": "RU-0602", + "type": "heliport", + "name": "Achayvayam Heliport", + "latitude_deg": "61.011202", + "longitude_deg": "170.508699", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Achayvayam", + "scheduled_service": "no", + "gps_code": "UHPJ" + }, + { + "id": "340793", + "ident": "RU-0603", + "type": "small_airport", + "name": "Anadyr Airfield", + "latitude_deg": "64.720087", + "longitude_deg": "177.46323", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Anadyr", + "scheduled_service": "no" + }, + { + "id": "340794", + "ident": "RU-0604", + "type": "closed", + "name": "Old Uelkal Airstrip", + "latitude_deg": "65.511568", + "longitude_deg": "-179.30817", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Uelkal", + "scheduled_service": "no" + }, + { + "id": "340795", + "ident": "RU-0605", + "type": "small_airport", + "name": "Uelkal Airstrip", + "latitude_deg": "65.530823", + "longitude_deg": "-179.287263", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Uelkal", + "scheduled_service": "no" + }, + { + "id": "340796", + "ident": "RU-0606", + "type": "heliport", + "name": "Yanrakynnot Heliport", + "latitude_deg": "64.912535", + "longitude_deg": "-172.502671", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Yanrakynnot", + "scheduled_service": "no" + }, + { + "id": "340797", + "ident": "RU-0607", + "type": "heliport", + "name": "Lorino Heliport", + "latitude_deg": "65.505323", + "longitude_deg": "-171.713924", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Lorino", + "scheduled_service": "no" + }, + { + "id": "340798", + "ident": "RU-0608", + "type": "heliport", + "name": "Uelen Heliport", + "latitude_deg": "66.164446", + "longitude_deg": "-169.850957", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Uelen", + "scheduled_service": "no" + }, + { + "id": "340799", + "ident": "RU-0609", + "type": "heliport", + "name": "Neshkan Heliport", + "latitude_deg": "67.03433", + "longitude_deg": "-172.959268", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Neshkan", + "scheduled_service": "no" + }, + { + "id": "340800", + "ident": "RU-0610", + "type": "heliport", + "name": "Nutelpel'men Heliport", + "latitude_deg": "67.424909", + "longitude_deg": "-174.92949", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Nutepel'men", + "scheduled_service": "no" + }, + { + "id": "340801", + "ident": "RU-0611", + "type": "heliport", + "name": "Leningradskiy Heliport", + "latitude_deg": "69.368146", + "longitude_deg": "178.406343", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Leningradskiy", + "scheduled_service": "no" + }, + { + "id": "340802", + "ident": "RU-0612", + "type": "heliport", + "name": "Ratmanov (Big Diomede) Heliport", + "latitude_deg": "65.810138", + "longitude_deg": "-169.029421", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Ratmanov", + "scheduled_service": "no" + }, + { + "id": "340803", + "ident": "RU-0613", + "type": "closed", + "name": "Ratmanov (Big Diomede) Improvised Airstrip", + "latitude_deg": "65.791966", + "longitude_deg": "-169.039655", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Ratmanov", + "scheduled_service": "no" + }, + { + "id": "340808", + "ident": "RU-0614", + "type": "small_airport", + "name": "Nayba Airfield", + "latitude_deg": "70.844976", + "longitude_deg": "130.68745", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Nayba", + "scheduled_service": "no" + }, + { + "id": "340809", + "ident": "RU-0615", + "type": "heliport", + "name": "Bykovsky Heliport", + "latitude_deg": "72.007309", + "longitude_deg": "129.109356", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Bykovsky", + "scheduled_service": "no" + }, + { + "id": "340810", + "ident": "RU-0616", + "type": "small_airport", + "name": "Taymylyr Airstrip", + "latitude_deg": "72.607271", + "longitude_deg": "121.893179", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Taymylyr", + "scheduled_service": "no" + }, + { + "id": "340811", + "ident": "RU-0617", + "type": "small_airport", + "name": "Syndassko Airstrip", + "latitude_deg": "73.249726", + "longitude_deg": "108.206176", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Syndassko", + "scheduled_service": "no" + }, + { + "id": "340812", + "ident": "RU-0618", + "type": "heliport", + "name": "Dikson Heliport", + "latitude_deg": "73.504881", + "longitude_deg": "80.535126", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Dikson", + "scheduled_service": "no" + }, + { + "id": "340813", + "ident": "RU-0619", + "type": "heliport", + "name": "Baykalovsk Heliport", + "latitude_deg": "70.697986", + "longitude_deg": "83.62017", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Baykalovsk", + "scheduled_service": "no" + }, + { + "id": "340814", + "ident": "RU-0620", + "type": "heliport", + "name": "Vorontsovo Heliport", + "latitude_deg": "71.695235", + "longitude_deg": "83.562726", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Vorontsovo", + "scheduled_service": "no" + }, + { + "id": "340815", + "ident": "RU-0621", + "type": "heliport", + "name": "Munguy Heliport", + "latitude_deg": "70.434235", + "longitude_deg": "83.76523", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Munguy", + "scheduled_service": "no" + }, + { + "id": "340816", + "ident": "RU-0622", + "type": "heliport", + "name": "Nosok Heliport", + "latitude_deg": "70.166814", + "longitude_deg": "82.337917", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Nosok", + "scheduled_service": "no" + }, + { + "id": "340817", + "ident": "RU-0623", + "type": "heliport", + "name": "Karaul Heliport", + "latitude_deg": "70.072471", + "longitude_deg": "83.185602", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Karaul", + "scheduled_service": "no" + }, + { + "id": "340818", + "ident": "RU-0624", + "type": "heliport", + "name": "Ust'-Port Heliport", + "latitude_deg": "69.667903", + "longitude_deg": "84.411688", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Ust'-Port", + "scheduled_service": "no" + }, + { + "id": "340819", + "ident": "RU-0625", + "type": "heliport", + "name": "Levinskiye Peski Heliport", + "latitude_deg": "69.472377", + "longitude_deg": "85.999973", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Levinskiye Peski", + "scheduled_service": "no" + }, + { + "id": "340820", + "ident": "RU-0626", + "type": "heliport", + "name": "Dudinka Heliport", + "latitude_deg": "69.434593", + "longitude_deg": "86.175939", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Dudinka", + "scheduled_service": "no" + }, + { + "id": "340821", + "ident": "RU-0627", + "type": "heliport", + "name": "Igarka North Heliport", + "latitude_deg": "67.496284", + "longitude_deg": "86.571496", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Igarka", + "scheduled_service": "no" + }, + { + "id": "340822", + "ident": "RU-0628", + "type": "heliport", + "name": "Goroshikha Heliport", + "latitude_deg": "66.395251", + "longitude_deg": "87.506469", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Goroshikha", + "scheduled_service": "no" + }, + { + "id": "340823", + "ident": "RU-0629", + "type": "small_airport", + "name": "Staroturukhansk Airfield", + "latitude_deg": "65.923034", + "longitude_deg": "87.547024", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Staroturukhansk", + "scheduled_service": "no" + }, + { + "id": "340824", + "ident": "RU-0630", + "type": "small_airport", + "name": "Kostino Airstrip", + "latitude_deg": "65.322665", + "longitude_deg": "87.97587", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Kostino", + "scheduled_service": "no" + }, + { + "id": "340825", + "ident": "RU-0631", + "type": "heliport", + "name": "Baklanikha Heliport", + "latitude_deg": "64.444785", + "longitude_deg": "87.548826", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Baklanikha", + "scheduled_service": "no" + }, + { + "id": "340826", + "ident": "RU-0632", + "type": "heliport", + "name": "Vereshchagino Heliport", + "latitude_deg": "64.237358", + "longitude_deg": "87.576358", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Vereshchagino", + "scheduled_service": "no" + }, + { + "id": "340827", + "ident": "RU-0633", + "type": "heliport", + "name": "Bakhta Heliport", + "latitude_deg": "62.466369", + "longitude_deg": "89.002518", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Bakhta", + "scheduled_service": "no" + }, + { + "id": "340828", + "ident": "RU-0634", + "type": "small_airport", + "name": "Vereshchagino Airport", + "latitude_deg": "64.235903", + "longitude_deg": "87.576178", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Vereshchagino", + "scheduled_service": "no" + }, + { + "id": "340829", + "ident": "RU-0635", + "type": "heliport", + "name": "Verkhneimbatsk Heliport", + "latitude_deg": "63.156344", + "longitude_deg": "87.969867", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Verkhneimbatsk", + "scheduled_service": "no" + }, + { + "id": "340830", + "ident": "RU-0636", + "type": "small_airport", + "name": "Naparino Airport", + "latitude_deg": "60.146822", + "longitude_deg": "90.472639", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Naparino", + "scheduled_service": "no" + }, + { + "id": "340831", + "ident": "RU-0637", + "type": "small_airport", + "name": "Nazimovo Airstrip", + "latitude_deg": "59.524164", + "longitude_deg": "90.917114", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Nazimovo", + "scheduled_service": "no" + }, + { + "id": "340832", + "ident": "RU-0638", + "type": "heliport", + "name": "Yeniseysk Heliport", + "latitude_deg": "58.505238", + "longitude_deg": "92.044251", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Yeniseysk", + "scheduled_service": "no" + }, + { + "id": "340836", + "ident": "RU-0639", + "type": "small_airport", + "name": "Voznesenka Airfield", + "latitude_deg": "56.032263", + "longitude_deg": "93.248872", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Berezovka", + "scheduled_service": "no" + }, + { + "id": "340837", + "ident": "RU-0640", + "type": "heliport", + "name": "Tatyshev Heliport", + "latitude_deg": "56.03269", + "longitude_deg": "92.94308", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Krasnoyarsk", + "scheduled_service": "no" + }, + { + "id": "341604", + "ident": "RU-0641", + "type": "heliport", + "name": "Sayanaero Heliport", + "latitude_deg": "53.65735", + "longitude_deg": "91.57505", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Selivanikha", + "scheduled_service": "no" + }, + { + "id": "341605", + "ident": "RU-0642", + "type": "heliport", + "name": "Krasnoyarsk Regional Clinical Hospital Helipad", + "latitude_deg": "56.02623", + "longitude_deg": "92.915", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Krasnoyarsk", + "scheduled_service": "no" + }, + { + "id": "341606", + "ident": "RU-0643", + "type": "heliport", + "name": "Tulun Heliport", + "latitude_deg": "54.54485", + "longitude_deg": "100.5931", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Tulun", + "scheduled_service": "no" + }, + { + "id": "341607", + "ident": "RU-0644", + "type": "heliport", + "name": "Erzin Heliport", + "latitude_deg": "50.24946", + "longitude_deg": "95.15788", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TY", + "municipality": "Erzin", + "scheduled_service": "no" + }, + { + "id": "341608", + "ident": "RU-0645", + "type": "small_airport", + "name": "Kyzyl-Mazhalyk Airport", + "latitude_deg": "51.14266", + "longitude_deg": "90.58967", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TY", + "municipality": "Kyzyl-Mazhalyk", + "scheduled_service": "no", + "gps_code": "UNKD", + "local_code": "UNKD", + "keywords": "УНКД, Кызыл-Мажалык" + }, + { + "id": "341609", + "ident": "RU-0646", + "type": "heliport", + "name": "Barnaul Emergency Helipad", + "latitude_deg": "53.32161", + "longitude_deg": "83.81236", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ALT", + "municipality": "Barnaul", + "scheduled_service": "no" + }, + { + "id": "341610", + "ident": "RU-0647", + "type": "heliport", + "name": "Chany Heliport", + "latitude_deg": "55.32471", + "longitude_deg": "76.7986", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Chany", + "scheduled_service": "no" + }, + { + "id": "341649", + "ident": "RU-0648", + "type": "heliport", + "name": "Korotchayevo Vertodrome", + "latitude_deg": "65.947595", + "longitude_deg": "78.166462", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Korotchayevo", + "scheduled_service": "no" + }, + { + "id": "341650", + "ident": "RU-0649", + "type": "heliport", + "name": "Tarko-Sale Vertodrome", + "latitude_deg": "64.86025", + "longitude_deg": "77.72166", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Tarko-Sale", + "scheduled_service": "no" + }, + { + "id": "341651", + "ident": "RU-0650", + "type": "heliport", + "name": "Severnyy Vertodrome", + "latitude_deg": "61.071441", + "longitude_deg": "76.12111", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Megion", + "scheduled_service": "no" + }, + { + "id": "341652", + "ident": "RU-0651", + "type": "heliport", + "name": "Sergino Vertodrome", + "latitude_deg": "62.53807", + "longitude_deg": "65.60466", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Priobye", + "scheduled_service": "no" + }, + { + "id": "341653", + "ident": "RU-0652", + "type": "heliport", + "name": "Andra Vertodrome", + "latitude_deg": "62.53916", + "longitude_deg": "65.96273", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Andra", + "scheduled_service": "no" + }, + { + "id": "341654", + "ident": "RU-0653", + "type": "heliport", + "name": "Andra Emergency Heliport", + "latitude_deg": "62.54921", + "longitude_deg": "65.95495", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Andra", + "scheduled_service": "no" + }, + { + "id": "341655", + "ident": "RU-0654", + "type": "heliport", + "name": "Usinsk Vertodrome", + "latitude_deg": "66.03183", + "longitude_deg": "57.60063", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KO", + "municipality": "Usinsk", + "scheduled_service": "no" + }, + { + "id": "341656", + "ident": "RU-0655", + "type": "heliport", + "name": "Devyatkino Vertodrome", + "latitude_deg": "60.06033", + "longitude_deg": "30.41631", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "St. Petersburg", + "scheduled_service": "no" + }, + { + "id": "341657", + "ident": "RU-0656", + "type": "heliport", + "name": "Voronezh Dairy Helipad", + "latitude_deg": "51.69251", + "longitude_deg": "39.13949", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VOR", + "municipality": "Voronezh", + "scheduled_service": "no", + "local_code": "HJU2", + "keywords": "Vkusnoteevo,Вкуснотеево" + }, + { + "id": "341658", + "ident": "RU-0657", + "type": "heliport", + "name": "Topki Heliport", + "latitude_deg": "53.33984", + "longitude_deg": "39.58225", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LIP", + "municipality": "Topki", + "scheduled_service": "no" + }, + { + "id": "341659", + "ident": "RU-0658", + "type": "heliport", + "name": "Karnalit Helipad", + "latitude_deg": "45.92567", + "longitude_deg": "142.06962", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Taranay", + "scheduled_service": "no" + }, + { + "id": "341660", + "ident": "RU-0659", + "type": "heliport", + "name": "Gastello Heliport", + "latitude_deg": "49.108918", + "longitude_deg": "142.93465", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Gastello", + "scheduled_service": "no" + }, + { + "id": "341661", + "ident": "RU-0660", + "type": "heliport", + "name": "Smirnykh Heliport", + "latitude_deg": "49.755209", + "longitude_deg": "142.848413", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Smirnykh", + "scheduled_service": "no" + }, + { + "id": "341662", + "ident": "RU-0661", + "type": "heliport", + "name": "Palevo Heliport", + "latitude_deg": "50.62999", + "longitude_deg": "142.724157", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Palevo", + "scheduled_service": "no" + }, + { + "id": "341663", + "ident": "RU-0662", + "type": "heliport", + "name": "Chayvo Heliport", + "latitude_deg": "52.506064", + "longitude_deg": "143.17048", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Chayvo", + "scheduled_service": "no" + }, + { + "id": "341664", + "ident": "RU-0663", + "type": "closed", + "name": "Cape Lopatka Airfield", + "latitude_deg": "50.87465", + "longitude_deg": "156.66111", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Ozernovskiy", + "scheduled_service": "no" + }, + { + "id": "341693", + "ident": "RU-0664", + "type": "heliport", + "name": "Pobedy Park Heliport", + "latitude_deg": "56.329755", + "longitude_deg": "44.032597", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NIZ", + "municipality": "Nizhny Novgorod", + "scheduled_service": "no" + }, + { + "id": "341694", + "ident": "RU-0665", + "type": "heliport", + "name": "Heliport Hotel", + "latitude_deg": "56.299636", + "longitude_deg": "44.056887", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NIZ", + "municipality": "Nizhny Novgorod", + "scheduled_service": "no" + }, + { + "id": "341695", + "ident": "RU-0666", + "type": "heliport", + "name": "Nizhny Novgorod Emergency Ministry Heliport", + "latitude_deg": "56.288832", + "longitude_deg": "44.119956", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NIZ", + "municipality": "Nizhny Novgorod", + "scheduled_service": "no" + }, + { + "id": "341696", + "ident": "RU-0667", + "type": "heliport", + "name": "Zimenki Heliport", + "latitude_deg": "56.156272", + "longitude_deg": "44.251689", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NIZ", + "municipality": "Zimenki", + "scheduled_service": "no" + }, + { + "id": "341824", + "ident": "RU-0668", + "type": "closed", + "name": "Ogodzha Airfield", + "latitude_deg": "52.771507", + "longitude_deg": "132.569455", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Ogodzha", + "scheduled_service": "no" + }, + { + "id": "341825", + "ident": "RU-0669", + "type": "closed", + "name": "Old Abyy Airfield", + "latitude_deg": "68.4033", + "longitude_deg": "145.0467", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Abyy", + "scheduled_service": "no" + }, + { + "id": "341826", + "ident": "RU-0670", + "type": "closed", + "name": "Andryushino Airport", + "latitude_deg": "59.23575", + "longitude_deg": "62.971196", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SVE", + "municipality": "Andryushino", + "scheduled_service": "no" + }, + { + "id": "341827", + "ident": "RU-0671", + "type": "closed", + "name": "Arkhangelsk / Keg Ostrov Airfield", + "latitude_deg": "64.537374", + "longitude_deg": "40.453422", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Arkhangelsk", + "scheduled_service": "no", + "local_code": "ZC38" + }, + { + "id": "341828", + "ident": "RU-0672", + "type": "small_airport", + "name": "Armavir / Krasnaya Polyana Airfield", + "latitude_deg": "45.053223", + "longitude_deg": "41.088352", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Krasnaya Polyana", + "scheduled_service": "no" + }, + { + "id": "341829", + "ident": "RU-0673", + "type": "closed", + "name": "Artemovsky Airfield", + "latitude_deg": "57.370061", + "longitude_deg": "61.9017", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SVE", + "municipality": "Artemovsky", + "scheduled_service": "no" + }, + { + "id": "341830", + "ident": "RU-0674", + "type": "small_airport", + "name": "Arti Airfield", + "latitude_deg": "56.444921", + "longitude_deg": "58.521575", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SVE", + "municipality": "Arti", + "scheduled_service": "no" + }, + { + "id": "341831", + "ident": "RU-0675", + "type": "closed", + "name": "Avdeyevka Airfield", + "latitude_deg": "45.181713", + "longitude_deg": "133.335", + "elevation_ft": "312", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Rodnikovoye", + "scheduled_service": "no" + }, + { + "id": "341832", + "ident": "RU-0676", + "type": "small_airport", + "name": "Ayanka Airport", + "latitude_deg": "63.709269", + "longitude_deg": "167.584196", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Ayanka", + "scheduled_service": "no" + }, + { + "id": "341833", + "ident": "RU-0677", + "type": "closed", + "name": "Old Klyuchi Air Base", + "latitude_deg": "56.253135", + "longitude_deg": "161.033881", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Klyuchi", + "scheduled_service": "no" + }, + { + "id": "341834", + "ident": "RU-0678", + "type": "heliport", + "name": "Atlasovskoye Helipad", + "latitude_deg": "55.606168", + "longitude_deg": "159.625459", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Atlasovskoye", + "scheduled_service": "no" + }, + { + "id": "342072", + "ident": "RU-0679", + "type": "closed", + "name": "Bakhanay Airfield", + "latitude_deg": "66.007194", + "longitude_deg": "123.626958", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Bakhanay", + "scheduled_service": "no" + }, + { + "id": "350070", + "ident": "RU-0680", + "type": "closed", + "name": "Cape Baranova Ice Base", + "latitude_deg": "79.28389", + "longitude_deg": "101.772999", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Stantsiya", + "scheduled_service": "no", + "keywords": "Russia, military, ice, base, Stantsiya, Baranova" + }, + { + "id": "342075", + "ident": "RU-0681", + "type": "closed", + "name": "Okhotsk East Airfield", + "latitude_deg": "59.37879", + "longitude_deg": "143.277546", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Okhotsk", + "scheduled_service": "no" + }, + { + "id": "342077", + "ident": "RU-0682", + "type": "closed", + "name": "Baykalovo Airport", + "latitude_deg": "57.4", + "longitude_deg": "63.74", + "elevation_ft": "297", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SVE", + "municipality": "Baykalovo", + "scheduled_service": "no" + }, + { + "id": "342079", + "ident": "RU-0683", + "type": "closed", + "name": "Bestuzhevo Airstrip", + "latitude_deg": "61.5929", + "longitude_deg": "43.9428", + "elevation_ft": "317", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Berezhnaya", + "scheduled_service": "no" + }, + { + "id": "342080", + "ident": "RU-0684", + "type": "closed", + "name": "Bilibino Airfield", + "latitude_deg": "68.0449", + "longitude_deg": "166.4134", + "elevation_ft": "1401", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Bilibino", + "scheduled_service": "no" + }, + { + "id": "342081", + "ident": "RU-0685", + "type": "small_airport", + "name": "Bolshaya Pyssa Airfield", + "latitude_deg": "64.1694", + "longitude_deg": "48.8127", + "elevation_ft": "250", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KO", + "municipality": "Bolshaya Pyssa", + "scheduled_service": "no" + }, + { + "id": "342083", + "ident": "RU-0686", + "type": "small_airport", + "name": "Borovsky Airfield", + "latitude_deg": "57.035", + "longitude_deg": "65.745", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TYU", + "municipality": "Borovsky", + "scheduled_service": "no" + }, + { + "id": "342085", + "ident": "RU-0687", + "type": "closed", + "name": "Bukhta Ruddera Airfield", + "latitude_deg": "65.3998", + "longitude_deg": "-175.8405", + "elevation_ft": "89", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Enmelen", + "scheduled_service": "no", + "keywords": "Bukhta Rudder, Rudder River" + }, + { + "id": "342086", + "ident": "RU-0688", + "type": "small_airport", + "name": "Buor-Sysy Airstrip", + "latitude_deg": "66.4773", + "longitude_deg": "143.0463", + "elevation_ft": "617", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Buor-Sysy", + "scheduled_service": "no" + }, + { + "id": "342087", + "ident": "RU-0689", + "type": "small_airport", + "name": "Chekunda Airfield", + "latitude_deg": "50.871569", + "longitude_deg": "132.302213", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Chekunda", + "scheduled_service": "no" + }, + { + "id": "342088", + "ident": "RU-0690", + "type": "small_airport", + "name": "Chernaya Rechka Airfield", + "latitude_deg": "56.9417", + "longitude_deg": "65.2417", + "elevation_ft": "269", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TYU", + "municipality": "Chernaya Rechka", + "scheduled_service": "no" + }, + { + "id": "342257", + "ident": "RU-0691", + "type": "heliport", + "name": "Samburg Heliport", + "latitude_deg": "66.99902", + "longitude_deg": "78.20849", + "elevation_ft": "23", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Samburg", + "scheduled_service": "no" + }, + { + "id": "342258", + "ident": "RU-0692", + "type": "heliport", + "name": "Nakhodka Heliport", + "latitude_deg": "67.72256", + "longitude_deg": "77.55804", + "elevation_ft": "104", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Nakhodka", + "scheduled_service": "no" + }, + { + "id": "342259", + "ident": "RU-0693", + "type": "heliport", + "name": "Agan Heliport", + "latitude_deg": "61.63674", + "longitude_deg": "75.09714", + "elevation_ft": "154", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Agan", + "scheduled_service": "no" + }, + { + "id": "342260", + "ident": "RU-0694", + "type": "heliport", + "name": "Langepas Heliport", + "latitude_deg": "61.25431", + "longitude_deg": "75.2014", + "elevation_ft": "154", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Langepas", + "scheduled_service": "no" + }, + { + "id": "342261", + "ident": "RU-0695", + "type": "heliport", + "name": "Vampugol Heliport", + "latitude_deg": "60.8595", + "longitude_deg": "76.61006", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Vampugol", + "scheduled_service": "no" + }, + { + "id": "342262", + "ident": "RU-0696", + "type": "heliport", + "name": "Bylino Heliport", + "latitude_deg": "60.7475", + "longitude_deg": "76.81353", + "elevation_ft": "138", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Bylino", + "scheduled_service": "no" + }, + { + "id": "342263", + "ident": "RU-0697", + "type": "heliport", + "name": "Severnyy Heliport", + "latitude_deg": "60.67853", + "longitude_deg": "77.17928", + "elevation_ft": "152", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TOM", + "municipality": "Severnyy", + "scheduled_service": "no" + }, + { + "id": "342264", + "ident": "RU-0698", + "type": "heliport", + "name": "Lukashkin Yar Heliport", + "latitude_deg": "60.32713", + "longitude_deg": "78.38672", + "elevation_ft": "148", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TOM", + "municipality": "Lukashkin Yar", + "scheduled_service": "no" + }, + { + "id": "342265", + "ident": "RU-0699", + "type": "heliport", + "name": "Nazino Heliport", + "latitude_deg": "60.12295", + "longitude_deg": "78.95242", + "elevation_ft": "153", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TOM", + "municipality": "Nazino", + "scheduled_service": "no" + }, + { + "id": "342266", + "ident": "RU-0700", + "type": "heliport", + "name": "Oktyabr'skiy Heliport", + "latitude_deg": "59.4846", + "longitude_deg": "79.3952", + "elevation_ft": "262", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TOM", + "municipality": "Oktyabr'skiy", + "scheduled_service": "no" + }, + { + "id": "342267", + "ident": "RU-0701", + "type": "heliport", + "name": "Vertikos Heliport", + "latitude_deg": "59.37987", + "longitude_deg": "79.67266", + "elevation_ft": "290", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TOM", + "municipality": "Vertikos", + "scheduled_service": "no" + }, + { + "id": "342268", + "ident": "RU-0702", + "type": "heliport", + "name": "Ust'-Tym Heliport", + "latitude_deg": "59.4339", + "longitude_deg": "80.025", + "elevation_ft": "171", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TOM", + "municipality": "Ust'-Tym", + "scheduled_service": "no" + }, + { + "id": "342269", + "ident": "RU-0703", + "type": "small_airport", + "name": "Parabel Airport", + "latitude_deg": "58.70748", + "longitude_deg": "81.46433", + "elevation_ft": "177", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TOM", + "municipality": "Parabel", + "scheduled_service": "no" + }, + { + "id": "342270", + "ident": "RU-0704", + "type": "heliport", + "name": "Chazhemto Heliport", + "latitude_deg": "58.04172", + "longitude_deg": "82.80627", + "elevation_ft": "252", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TOM", + "municipality": "Chazhemto", + "scheduled_service": "no" + }, + { + "id": "342271", + "ident": "RU-0705", + "type": "heliport", + "name": "Molchanovskaya NPS Heliport", + "latitude_deg": "57.5629", + "longitude_deg": "83.7088", + "elevation_ft": "344", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TOM", + "municipality": "Molchanovo", + "scheduled_service": "no" + }, + { + "id": "342272", + "ident": "RU-0706", + "type": "heliport", + "name": "Molchanovo Heliport", + "latitude_deg": "57.5612", + "longitude_deg": "83.7894", + "elevation_ft": "349", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TOM", + "municipality": "Molchanovo", + "scheduled_service": "no", + "gps_code": "UNLO", + "keywords": "УНЛО, Молчаново" + }, + { + "id": "342273", + "ident": "RU-0707", + "type": "heliport", + "name": "Chnyrrakh Heliport", + "latitude_deg": "53.08422", + "longitude_deg": "140.87415", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Chnyrrakh", + "scheduled_service": "no" + }, + { + "id": "342665", + "ident": "RU-0708", + "type": "small_airport", + "name": "Belogorsk Airstrip", + "latitude_deg": "50.8937", + "longitude_deg": "128.47338", + "elevation_ft": "561", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Belogorsk", + "scheduled_service": "no" + }, + { + "id": "342724", + "ident": "RU-0709", + "type": "small_airport", + "name": "Mayorskiy Airstrip", + "latitude_deg": "47.07512", + "longitude_deg": "42.01812", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "scheduled_service": "no" + }, + { + "id": "342858", + "ident": "RU-0710", + "type": "small_airport", + "name": "Kalachevo Airfield", + "latitude_deg": "54.762", + "longitude_deg": "73.3115", + "elevation_ft": "298", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-OMS", + "municipality": "Kalachevo", + "scheduled_service": "no" + }, + { + "id": "342861", + "ident": "RU-0711", + "type": "small_airport", + "name": "Krasnoufimsk Airfield", + "latitude_deg": "56.678678", + "longitude_deg": "57.810662", + "elevation_ft": "706", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SVE", + "municipality": "Pridannikovo", + "scheduled_service": "no" + }, + { + "id": "342865", + "ident": "RU-0712", + "type": "small_airport", + "name": "Lugovskoye Airfield", + "latitude_deg": "57.982", + "longitude_deg": "55.71028", + "elevation_ft": "341", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PER", + "municipality": "Krasny Voskhod", + "scheduled_service": "no" + }, + { + "id": "342866", + "ident": "RU-0713", + "type": "small_airport", + "name": "Krasny Voskhod South Airfield", + "latitude_deg": "57.9779", + "longitude_deg": "55.71143", + "elevation_ft": "341", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PER", + "municipality": "Krasny Voskhod", + "scheduled_service": "no" + }, + { + "id": "342867", + "ident": "RU-0714", + "type": "small_airport", + "name": "Mylniki Airfield", + "latitude_deg": "57.39187", + "longitude_deg": "56.88028", + "elevation_ft": "634", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PER", + "municipality": "Kungur", + "scheduled_service": "no" + }, + { + "id": "342868", + "ident": "RU-0715", + "type": "small_airport", + "name": "Byvshaya Airfield", + "latitude_deg": "58.13804", + "longitude_deg": "52.57068", + "elevation_ft": "541", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-UD", + "municipality": "Glazov", + "scheduled_service": "no" + }, + { + "id": "343276", + "ident": "RU-0716", + "type": "heliport", + "name": "Kizhi helipad", + "latitude_deg": "62.076514", + "longitude_deg": "35.226102", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KR", + "municipality": "Kizhi", + "scheduled_service": "yes" + }, + { + "id": "343473", + "ident": "RU-0717", + "type": "medium_airport", + "name": "Utrenneye Airport", + "latitude_deg": "71.011405", + "longitude_deg": "74.259759", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Utrenneye gas terminal", + "scheduled_service": "yes" + }, + { + "id": "343513", + "ident": "RU-0718", + "type": "closed", + "name": "Toyohara Airfield", + "latitude_deg": "46.92211", + "longitude_deg": "142.72854", + "elevation_ft": "86", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Yuzhno-Sakhalinsk", + "scheduled_service": "no" + }, + { + "id": "343514", + "ident": "RU-0719", + "type": "small_airport", + "name": "Onor Airfield", + "latitude_deg": "50.19164", + "longitude_deg": "142.7426", + "elevation_ft": "513", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Onor", + "scheduled_service": "no" + }, + { + "id": "343515", + "ident": "RU-0720", + "type": "closed", + "name": "Gastello Airfield", + "latitude_deg": "49.11047", + "longitude_deg": "142.95714", + "elevation_ft": "52", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Gastello", + "scheduled_service": "no", + "keywords": "Nairo Airfield" + }, + { + "id": "343516", + "ident": "RU-0721", + "type": "closed", + "name": "Simushir South Airfield", + "latitude_deg": "47.10546", + "longitude_deg": "152.23081", + "elevation_ft": "112", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Kraternyy", + "scheduled_service": "no" + }, + { + "id": "343517", + "ident": "RU-0722", + "type": "closed", + "name": "Simushir North Airfield", + "latitude_deg": "47.12757", + "longitude_deg": "152.27241", + "elevation_ft": "157", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Kraternyy", + "scheduled_service": "no" + }, + { + "id": "346614", + "ident": "RU-0723", + "type": "small_airport", + "name": "Novokemskii Airstrip", + "latitude_deg": "60.33815", + "longitude_deg": "37.24933", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLG", + "scheduled_service": "no" + }, + { + "id": "346615", + "ident": "RU-0724", + "type": "small_airport", + "name": "Zubovo Airstrip", + "latitude_deg": "60.32048", + "longitude_deg": "37.02119", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLG", + "scheduled_service": "no" + }, + { + "id": "346934", + "ident": "RU-0725", + "type": "heliport", + "name": "Konergino Heliport", + "latitude_deg": "65.907884", + "longitude_deg": "-178.870034", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Konergino", + "scheduled_service": "no" + }, + { + "id": "346935", + "ident": "RU-0726", + "type": "heliport", + "name": "Alkatvaam Heliport", + "latitude_deg": "63.127587", + "longitude_deg": "179.023771", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Alkatvaam", + "scheduled_service": "no" + }, + { + "id": "346936", + "ident": "RU-0727", + "type": "small_airport", + "name": "Khailino Airport", + "latitude_deg": "60.95206", + "longitude_deg": "166.83801", + "elevation_ft": "180", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Khailino", + "scheduled_service": "no", + "local_code": "UHPF" + }, + { + "id": "346937", + "ident": "RU-0728", + "type": "small_airport", + "name": "Ust-Bolsheretsk Highway Airstrip", + "latitude_deg": "52.8533", + "longitude_deg": "156.3467", + "elevation_ft": "5", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Ust'-Bol'sheretsk", + "scheduled_service": "no", + "local_code": "UHPB" + }, + { + "id": "346938", + "ident": "RU-0729", + "type": "small_airport", + "name": "Apuka Airport", + "latitude_deg": "60.43932", + "longitude_deg": "169.62441", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Apuka", + "scheduled_service": "no" + }, + { + "id": "346939", + "ident": "RU-0730", + "type": "small_airport", + "name": "Sredny Pakhachi Airport", + "latitude_deg": "60.81718", + "longitude_deg": "169.07555", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Sredny Pakhachi", + "scheduled_service": "no" + }, + { + "id": "346940", + "ident": "RU-0731", + "type": "heliport", + "name": "Il'pyrskoye Heliport", + "latitude_deg": "59.96632", + "longitude_deg": "164.20118", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Il'pyrskoye", + "scheduled_service": "no" + }, + { + "id": "346941", + "ident": "RU-0732", + "type": "heliport", + "name": "Vyvenka Heliport", + "latitude_deg": "60.18471", + "longitude_deg": "165.45503", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Vyvenka", + "scheduled_service": "no" + }, + { + "id": "346942", + "ident": "RU-0733", + "type": "small_airport", + "name": "Nikolayevka-1 Airfield", + "latitude_deg": "53.04413", + "longitude_deg": "158.30485", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Nikolayevka", + "scheduled_service": "no", + "keywords": "UPAB" + }, + { + "id": "346943", + "ident": "RU-0734", + "type": "small_airport", + "name": "Nikolayevka Airport", + "latitude_deg": "53.05188", + "longitude_deg": "158.31899", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Nikolayevka", + "scheduled_service": "no", + "keywords": "UPAK" + }, + { + "id": "346944", + "ident": "RU-0735", + "type": "closed", + "name": "Karymay Airport", + "latitude_deg": "53.02156", + "longitude_deg": "156.71421", + "elevation_ft": "224", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Kavalerskoye", + "scheduled_service": "no", + "keywords": "ZCM1" + }, + { + "id": "346946", + "ident": "RU-0736", + "type": "heliport", + "name": "Krutogorovskiy Heliport", + "latitude_deg": "55.018358", + "longitude_deg": "155.592028", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Krutogorovskiy", + "scheduled_service": "no" + }, + { + "id": "346947", + "ident": "RU-0737", + "type": "heliport", + "name": "Talovka Heliport", + "latitude_deg": "62.049441", + "longitude_deg": "166.700885", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Talovka", + "scheduled_service": "no" + }, + { + "id": "346948", + "ident": "RU-0738", + "type": "small_airport", + "name": "Garmanda Airport", + "latitude_deg": "62.18334", + "longitude_deg": "159.08894", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MAG", + "municipality": "Garmanda", + "scheduled_service": "no", + "keywords": "UEVE" + }, + { + "id": "346994", + "ident": "RU-0739", + "type": "small_airport", + "name": "Kremovo-1 Air Base", + "latitude_deg": "44.01545", + "longitude_deg": "132.21401", + "elevation_ft": "344", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Novoshakhtinsky", + "scheduled_service": "no" + }, + { + "id": "346995", + "ident": "RU-0740", + "type": "closed", + "name": "Ignat'yevka Airport", + "latitude_deg": "46.39632", + "longitude_deg": "134.0939", + "elevation_ft": "285", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Ignat'yevka", + "scheduled_service": "no" + }, + { + "id": "346996", + "ident": "RU-0741", + "type": "heliport", + "name": "Bikin Heliport", + "latitude_deg": "46.80673", + "longitude_deg": "134.28723", + "elevation_ft": "341", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Bikin", + "scheduled_service": "no", + "local_code": "HD6V" + }, + { + "id": "346997", + "ident": "RU-0742", + "type": "small_airport", + "name": "Dinamo Airport", + "latitude_deg": "48.43709", + "longitude_deg": "135.14229", + "elevation_ft": "190", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Khabarovsk", + "scheduled_service": "no", + "keywords": "Khabarovsk Krai DOSAAF Aeroclub" + }, + { + "id": "346998", + "ident": "RU-0743", + "type": "small_airport", + "name": "Khabarovsk Tsentralny Airfield", + "latitude_deg": "48.46262", + "longitude_deg": "135.15165", + "elevation_ft": "190", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Khabarovsk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khabarovsk_Tsentralny" + }, + { + "id": "346999", + "ident": "RU-0744", + "type": "small_airport", + "name": "Khokhlatskaya-1 Airport", + "latitude_deg": "48.61991", + "longitude_deg": "135.12234", + "elevation_ft": "118", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Vinogradovka", + "scheduled_service": "no", + "local_code": "ZB0K" + }, + { + "id": "347025", + "ident": "RU-0745", + "type": "small_airport", + "name": "Reshety Airport", + "latitude_deg": "54.19889", + "longitude_deg": "80.23976", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Reshety", + "scheduled_service": "no", + "local_code": "ZEK2" + }, + { + "id": "347026", + "ident": "RU-0746", + "type": "heliport", + "name": "Slavyanka Heliport", + "latitude_deg": "51.83647", + "longitude_deg": "46.31833", + "elevation_ft": "522", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAR", + "municipality": "Slavyanka", + "scheduled_service": "no", + "local_code": "HGH9" + }, + { + "id": "347027", + "ident": "RU-0747", + "type": "small_airport", + "name": "Sukhovka Airport", + "latitude_deg": "56.05055", + "longitude_deg": "40.75778", + "elevation_ft": "361", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLA", + "municipality": "Sukhovka", + "scheduled_service": "no", + "local_code": "ZB11" + }, + { + "id": "347028", + "ident": "RU-0748", + "type": "heliport", + "name": "POGZ Ozyornaya Heliport", + "latitude_deg": "45.49753", + "longitude_deg": "133.24821", + "elevation_ft": "220", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Chernorechensky", + "scheduled_service": "no", + "local_code": "HC4Y" + }, + { + "id": "347029", + "ident": "RU-0749", + "type": "heliport", + "name": "Korfovka Heliport", + "latitude_deg": "43.90453", + "longitude_deg": "131.25628", + "elevation_ft": "433", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Korfovka", + "scheduled_service": "no", + "local_code": "HC53" + }, + { + "id": "347030", + "ident": "RU-0750", + "type": "heliport", + "name": "Tsingaly Heliport", + "latitude_deg": "60.1698", + "longitude_deg": "69.69227", + "elevation_ft": "105", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Tsingaly", + "scheduled_service": "no", + "local_code": "HB2M" + }, + { + "id": "347891", + "ident": "RU-0751", + "type": "heliport", + "name": "Kharasavey Heliport", + "latitude_deg": "71.2318", + "longitude_deg": "66.9113", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TYU", + "municipality": "Kharasavey", + "scheduled_service": "no" + }, + { + "id": "347893", + "ident": "RU-0752", + "type": "heliport", + "name": "Yar-Sale Heliport", + "latitude_deg": "66.86563", + "longitude_deg": "70.85709", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Yar-Sale", + "scheduled_service": "no" + }, + { + "id": "347894", + "ident": "RU-0753", + "type": "small_airport", + "name": "Zhilinda Airport", + "latitude_deg": "70.15387", + "longitude_deg": "113.91756", + "elevation_ft": "489", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Zhilinda", + "scheduled_service": "no" + }, + { + "id": "347895", + "ident": "RU-0754", + "type": "small_airport", + "name": "Ebelyakh Airport", + "latitude_deg": "70.88319", + "longitude_deg": "113.58159", + "elevation_ft": "387", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Ebelyakh", + "scheduled_service": "no" + }, + { + "id": "347897", + "ident": "RU-0755", + "type": "small_airport", + "name": "Chirinda Airstrip", + "latitude_deg": "67.53965", + "longitude_deg": "100.41201", + "elevation_ft": "1045", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Chirinda", + "scheduled_service": "no" + }, + { + "id": "347898", + "ident": "RU-0756", + "type": "small_airport", + "name": "Ekonda Airport", + "latitude_deg": "65.75707", + "longitude_deg": "105.32821", + "elevation_ft": "1355", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Ekonda", + "scheduled_service": "no" + }, + { + "id": "347899", + "ident": "RU-0757", + "type": "small_airport", + "name": "Noginsk Airport", + "latitude_deg": "64.492499", + "longitude_deg": "91.21423", + "elevation_ft": "509", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Noginsk", + "scheduled_service": "no" + }, + { + "id": "347900", + "ident": "RU-0758", + "type": "closed", + "name": "Former Tutonchany Airport", + "latitude_deg": "64.23374", + "longitude_deg": "93.79927", + "elevation_ft": "899", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Tutonchany", + "scheduled_service": "no", + "keywords": "UOTU" + }, + { + "id": "347901", + "ident": "RU-0759", + "type": "small_airport", + "name": "Kislokan Airport", + "latitude_deg": "63.59221", + "longitude_deg": "103.94732", + "elevation_ft": "713", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Kislokan", + "scheduled_service": "no" + }, + { + "id": "347902", + "ident": "RU-0760", + "type": "small_airport", + "name": "Yukta Airport", + "latitude_deg": "63.38788", + "longitude_deg": "105.65577", + "elevation_ft": "680", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Yukta", + "scheduled_service": "no" + }, + { + "id": "347903", + "ident": "RU-0761", + "type": "small_airport", + "name": "Nakanno Airport", + "latitude_deg": "62.89988", + "longitude_deg": "108.44788", + "elevation_ft": "816", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Nakanno", + "scheduled_service": "no" + }, + { + "id": "347904", + "ident": "RU-0762", + "type": "small_airport", + "name": "Khamakar Airport", + "latitude_deg": "61.989", + "longitude_deg": "108.17978", + "elevation_ft": "889", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Khamakar", + "scheduled_service": "no" + }, + { + "id": "347906", + "ident": "RU-0763", + "type": "closed", + "name": "Kystatyam Airport", + "latitude_deg": "67.32212", + "longitude_deg": "123.33179", + "elevation_ft": "262", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Kystatyam", + "scheduled_service": "no" + }, + { + "id": "35012", + "ident": "RU-0764", + "type": "medium_airport", + "name": "Kubinka Air Base", + "latitude_deg": "55.611695", + "longitude_deg": "36.650002", + "elevation_ft": "614", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Kubinka", + "scheduled_service": "no", + "gps_code": "UUMB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kubinka_(air_base)", + "keywords": "УУМБ, Кубинка" + }, + { + "id": "347913", + "ident": "RU-0765", + "type": "closed", + "name": "Belogorsk Airfield", + "latitude_deg": "55.03342", + "longitude_deg": "88.48534", + "elevation_ft": "2476", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KEM", + "municipality": "Belogorsk", + "scheduled_service": "no" + }, + { + "id": "347914", + "ident": "RU-0766", + "type": "heliport", + "name": "Uzhur Heliport", + "latitude_deg": "55.26431", + "longitude_deg": "89.82905", + "elevation_ft": "1299", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Uzhur", + "scheduled_service": "no" + }, + { + "id": "348669", + "ident": "RU-0767", + "type": "small_airport", + "name": "Yam Airfield", + "latitude_deg": "56.33257", + "longitude_deg": "38.6369", + "elevation_ft": "558", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLA", + "municipality": "Alexandrovsky", + "scheduled_service": "no" + }, + { + "id": "348670", + "ident": "RU-0768", + "type": "closed", + "name": "Lyubimtsevo Airfield", + "latitude_deg": "56.66735", + "longitude_deg": "39.24273", + "elevation_ft": "568", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLA", + "municipality": "Pereslavsky", + "scheduled_service": "no" + }, + { + "id": "348671", + "ident": "RU-0769", + "type": "small_airport", + "name": "Nekrasovo Airfield", + "latitude_deg": "57.78792", + "longitude_deg": "40.84022", + "elevation_ft": "256", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KOS", + "municipality": "Nekrasovo", + "scheduled_service": "no" + }, + { + "id": "348672", + "ident": "RU-0770", + "type": "small_airport", + "name": "Manturovo Airfield", + "latitude_deg": "58.36749", + "longitude_deg": "44.7957", + "elevation_ft": "374", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KOS", + "municipality": "Manturovo", + "scheduled_service": "no" + }, + { + "id": "349399", + "ident": "RU-0771", + "type": "heliport", + "name": "Belokurikha Heliport", + "latitude_deg": "52.04691", + "longitude_deg": "84.90723", + "elevation_ft": "725", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ALT", + "municipality": "Belokurikha", + "scheduled_service": "no" + }, + { + "id": "349400", + "ident": "RU-0772", + "type": "small_airport", + "name": "Belokurikha Airport", + "latitude_deg": "52.0645", + "longitude_deg": "85.02143", + "elevation_ft": "741", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ALT", + "municipality": "Belokurikha", + "scheduled_service": "no" + }, + { + "id": "351016", + "ident": "RU-0773", + "type": "small_airport", + "name": "Ustinovo Aerodrome", + "latitude_deg": "54.85274", + "longitude_deg": "60.00283", + "elevation_ft": "1293", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHE", + "municipality": "Miass", + "scheduled_service": "no" + }, + { + "id": "351017", + "ident": "RU-0774", + "type": "small_airport", + "name": "Galitskiy Aerodrome", + "latitude_deg": "54.83703", + "longitude_deg": "58.36763", + "elevation_ft": "1388", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHE", + "municipality": "Yuryuzan", + "scheduled_service": "no" + }, + { + "id": "351018", + "ident": "RU-0775", + "type": "heliport", + "name": "Satka Heliport", + "latitude_deg": "55.04139", + "longitude_deg": "58.96788", + "elevation_ft": "1572", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHE", + "municipality": "Satka", + "scheduled_service": "no" + }, + { + "id": "351180", + "ident": "RU-0776", + "type": "heliport", + "name": "Heli-Drive", + "latitude_deg": "59.828082", + "longitude_deg": "30.252743", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SPE", + "municipality": "St. Petersburg", + "scheduled_service": "no", + "local_code": "ULLO", + "home_link": "https://whoiswho.dp.ru/cart/company/2939533", + "keywords": "УЛЛО, Хели-Драйв" + }, + { + "id": "351201", + "ident": "RU-0777", + "type": "small_airport", + "name": "Novokayakent Airport", + "latitude_deg": "42.33369", + "longitude_deg": "48.02926", + "elevation_ft": "-39", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-DA", + "municipality": "Kichi-Istisu", + "scheduled_service": "no", + "keywords": "Kurort Kayakent" + }, + { + "id": "351202", + "ident": "RU-0778", + "type": "heliport", + "name": "Derbent Central City Hospital Heliport", + "latitude_deg": "42.02743", + "longitude_deg": "48.32866", + "elevation_ft": "-79", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-DA", + "municipality": "Derbent", + "scheduled_service": "no" + }, + { + "id": "351286", + "ident": "RU-0779", + "type": "heliport", + "name": "Charysh-2 Heliport", + "latitude_deg": "51.36103", + "longitude_deg": "83.57715", + "elevation_ft": "1444", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ALT", + "municipality": "Krasnyi Partizan", + "scheduled_service": "no" + }, + { + "id": "351287", + "ident": "RU-0780", + "type": "small_airport", + "name": "Karasuk Vertodrome-Aerodrome", + "latitude_deg": "51.56184", + "longitude_deg": "85.91851", + "elevation_ft": "1234", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AL", + "municipality": "Cheposh", + "scheduled_service": "no" + }, + { + "id": "351288", + "ident": "RU-0781", + "type": "heliport", + "name": "Altay Resort Heliport", + "latitude_deg": "51.67968", + "longitude_deg": "86.22909", + "elevation_ft": "2316", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AL", + "municipality": "Urlu-Aspak", + "scheduled_service": "no" + }, + { + "id": "351289", + "ident": "RU-0782", + "type": "heliport", + "name": "Manzherok Heliport", + "latitude_deg": "51.83066", + "longitude_deg": "85.77789", + "elevation_ft": "1034", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AL", + "municipality": "Manzherok", + "scheduled_service": "no" + }, + { + "id": "351290", + "ident": "RU-0783", + "type": "small_airport", + "name": "Manzherok Airport", + "latitude_deg": "51.82526", + "longitude_deg": "85.80593", + "elevation_ft": "1293", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AL", + "municipality": "Manzherok", + "scheduled_service": "no", + "gps_code": "UNBO", + "keywords": "УНБО, Манжерок" + }, + { + "id": "351291", + "ident": "RU-0784", + "type": "heliport", + "name": "Biryuzovaya Katun Heliport", + "latitude_deg": "51.79279", + "longitude_deg": "85.73554", + "elevation_ft": "1079", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ALT", + "municipality": "Biryuzovaya Katun", + "scheduled_service": "no" + }, + { + "id": "351292", + "ident": "RU-0785", + "type": "small_airport", + "name": "Barantal Aerodrome", + "latitude_deg": "51.44663", + "longitude_deg": "85.98885", + "elevation_ft": "1598", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AL", + "municipality": "Elekmonar", + "scheduled_service": "no" + }, + { + "id": "351293", + "ident": "RU-0786", + "type": "heliport", + "name": "Kuius Heliport", + "latitude_deg": "51.03543", + "longitude_deg": "86.22771", + "elevation_ft": "1880", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AL", + "municipality": "Kuius", + "scheduled_service": "no" + }, + { + "id": "351294", + "ident": "RU-0787", + "type": "heliport", + "name": "Altayskoye Podvorye Heliport", + "latitude_deg": "50.78388", + "longitude_deg": "86.48459", + "elevation_ft": "1982", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AL", + "municipality": "Ongudaysky", + "scheduled_service": "no" + }, + { + "id": "351648", + "ident": "RU-0788", + "type": "small_airport", + "name": "Laishevo Airport", + "latitude_deg": "55.40836", + "longitude_deg": "49.49762", + "elevation_ft": "409", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TA", + "municipality": "Laishevo", + "scheduled_service": "no" + }, + { + "id": "351854", + "ident": "RU-0789", + "type": "small_airport", + "name": "Belaya", + "latitude_deg": "55.83613", + "longitude_deg": "44.43664", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NIZ", + "scheduled_service": "no" + }, + { + "id": "352056", + "ident": "RU-0790", + "type": "small_airport", + "name": "Balagannoye Airport", + "latitude_deg": "59.6969", + "longitude_deg": "149.07195", + "elevation_ft": "52", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MAG", + "municipality": "Balagannoye", + "scheduled_service": "no" + }, + { + "id": "352057", + "ident": "RU-0791", + "type": "heliport", + "name": "Tauisk Heliport", + "latitude_deg": "59.73504", + "longitude_deg": "149.35535", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MAG", + "municipality": "Tauisk", + "scheduled_service": "no" + }, + { + "id": "352118", + "ident": "RU-0792", + "type": "heliport", + "name": "Bolshoy Kamen Heliport", + "latitude_deg": "43.12062", + "longitude_deg": "132.36056", + "elevation_ft": "130", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Bolshoy Kamen", + "scheduled_service": "no" + }, + { + "id": "352119", + "ident": "RU-0793", + "type": "heliport", + "name": "Poltavka Heliport", + "latitude_deg": "44.014649", + "longitude_deg": "131.259886", + "elevation_ft": "318", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Poltavka", + "scheduled_service": "no" + }, + { + "id": "352120", + "ident": "RU-0794", + "type": "heliport", + "name": "Lipovtsy Heliport", + "latitude_deg": "44.22531", + "longitude_deg": "131.67006", + "elevation_ft": "663", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Lipovtsy", + "scheduled_service": "no" + }, + { + "id": "352122", + "ident": "RU-0795", + "type": "heliport", + "name": "Turii Rog Heliport", + "latitude_deg": "45.24521", + "longitude_deg": "131.97882", + "elevation_ft": "279", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Turii Rog", + "scheduled_service": "no" + }, + { + "id": "352125", + "ident": "RU-0796", + "type": "heliport", + "name": "Sheremetyevo Heliport", + "latitude_deg": "47.34019", + "longitude_deg": "134.27342", + "elevation_ft": "194", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Sheremetyevo", + "scheduled_service": "no" + }, + { + "id": "352126", + "ident": "RU-0797", + "type": "heliport", + "name": "Kedrovo Heliport", + "latitude_deg": "47.41833", + "longitude_deg": "134.35668", + "elevation_ft": "279", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Kedrovo", + "scheduled_service": "no" + }, + { + "id": "352127", + "ident": "RU-0798", + "type": "heliport", + "name": "Vinogradovka Heliport", + "latitude_deg": "47.44029", + "longitude_deg": "134.50111", + "elevation_ft": "151", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Vinogradovka", + "scheduled_service": "no" + }, + { + "id": "352128", + "ident": "RU-0799", + "type": "heliport", + "name": "Vyazemsky Heliport", + "latitude_deg": "47.52135", + "longitude_deg": "134.82607", + "elevation_ft": "374", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Vyazemsky", + "scheduled_service": "no" + }, + { + "id": "352129", + "ident": "RU-0800", + "type": "heliport", + "name": "Zabaikal'skoye Heliport", + "latitude_deg": "47.60612", + "longitude_deg": "134.70968", + "elevation_ft": "272", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Zabaikal'skoye", + "scheduled_service": "no" + }, + { + "id": "352130", + "ident": "RU-0801", + "type": "heliport", + "name": "Kukelevo Heliport", + "latitude_deg": "47.77208", + "longitude_deg": "134.76139", + "elevation_ft": "157", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Kukelevo", + "scheduled_service": "no" + }, + { + "id": "352227", + "ident": "RU-0802", + "type": "small_airport", + "name": "Aleksandrovsk-Sakhalinskiy Airport", + "latitude_deg": "50.878037", + "longitude_deg": "142.174682", + "elevation_ft": "12", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Aleksandrovsk-Sakhalinskiy", + "scheduled_service": "no", + "gps_code": "UHSA", + "iata_code": "UHS", + "keywords": "УХСА, Александровск-Сахалинский" + }, + { + "id": "352482", + "ident": "RU-0803", + "type": "heliport", + "name": "Parus Heliport", + "latitude_deg": "48.4793", + "longitude_deg": "134.88777", + "elevation_ft": "138", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YEV", + "municipality": "Priamursky", + "scheduled_service": "no" + }, + { + "id": "35047", + "ident": "RU-0804", + "type": "closed", + "name": "Onega Andozero Air Base", + "latitude_deg": "63.923301696799996", + "longitude_deg": "38.4117012024", + "elevation_ft": "285", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Onega", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Onega_Andozero", + "keywords": "Vatega" + }, + { + "id": "352485", + "ident": "RU-0805", + "type": "small_airport", + "name": "Kukan Airport", + "latitude_deg": "49.21613", + "longitude_deg": "133.46271", + "elevation_ft": "466", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Kukan", + "scheduled_service": "no" + }, + { + "id": "352487", + "ident": "RU-0806", + "type": "heliport", + "name": "Voskresenovka Heliport", + "latitude_deg": "48.04054", + "longitude_deg": "132.8781", + "elevation_ft": "230", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YEV", + "municipality": "Voskresenovka", + "scheduled_service": "no" + }, + { + "id": "352496", + "ident": "RU-0807", + "type": "small_airport", + "name": "Amurzet Airport", + "latitude_deg": "47.70734", + "longitude_deg": "131.09247", + "elevation_ft": "223", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YEV", + "municipality": "Amurzet", + "scheduled_service": "no" + }, + { + "id": "352498", + "ident": "RU-0808", + "type": "heliport", + "name": "Sagibovo Heliport", + "latitude_deg": "48.90865", + "longitude_deg": "130.40403", + "elevation_ft": "292", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Sagibovo", + "scheduled_service": "no" + }, + { + "id": "352501", + "ident": "RU-0809", + "type": "heliport", + "name": "Zhuravlevka Heliport", + "latitude_deg": "49.09049", + "longitude_deg": "129.99353", + "elevation_ft": "305", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Zhuravlevka", + "scheduled_service": "no" + }, + { + "id": "352502", + "ident": "RU-0810", + "type": "heliport", + "name": "Kazakevichevo Heliport", + "latitude_deg": "48.26643", + "longitude_deg": "134.73577", + "elevation_ft": "246", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Kazakevichevo", + "scheduled_service": "no" + }, + { + "id": "352503", + "ident": "RU-0811", + "type": "heliport", + "name": "Nevelskoye Heliport", + "latitude_deg": "48.10894", + "longitude_deg": "134.67752", + "elevation_ft": "135", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Nevelskoye", + "scheduled_service": "no" + }, + { + "id": "352504", + "ident": "RU-0812", + "type": "heliport", + "name": "Leninskoye Heliport", + "latitude_deg": "47.92518", + "longitude_deg": "132.61892", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YEV", + "municipality": "Leninskoye", + "scheduled_service": "no" + }, + { + "id": "352505", + "ident": "RU-0813", + "type": "heliport", + "name": "Dezhnevo Heliport", + "latitude_deg": "47.79227", + "longitude_deg": "132.21074", + "elevation_ft": "184", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YEV", + "municipality": "Dezhnevo", + "scheduled_service": "no" + }, + { + "id": "352506", + "ident": "RU-0814", + "type": "heliport", + "name": "Ventselevo Heliport", + "latitude_deg": "47.78344", + "longitude_deg": "131.951", + "elevation_ft": "194", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YEV", + "municipality": "Ventselevo", + "scheduled_service": "no" + }, + { + "id": "352538", + "ident": "RU-0815", + "type": "heliport", + "name": "Innokentievka Heliport", + "latitude_deg": "49.29588", + "longitude_deg": "129.71085", + "elevation_ft": "338", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Innokentievka", + "scheduled_service": "no" + }, + { + "id": "352539", + "ident": "RU-0816", + "type": "heliport", + "name": "Kalinino Heliport", + "latitude_deg": "49.39803", + "longitude_deg": "129.27384", + "elevation_ft": "338", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Kalinino", + "scheduled_service": "no" + }, + { + "id": "352589", + "ident": "RU-0817", + "type": "heliport", + "name": "Ust-Khayryuzovo Heliport", + "latitude_deg": "57.08735", + "longitude_deg": "156.72741", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Ust-Khayryuzovo", + "scheduled_service": "no" + }, + { + "id": "352900", + "ident": "RU-0818", + "type": "heliport", + "name": "Novosovetskoye Heliport", + "latitude_deg": "47.88957", + "longitude_deg": "134.66683", + "elevation_ft": "135", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Novosovetskoye", + "scheduled_service": "no" + }, + { + "id": "352901", + "ident": "RU-0819", + "type": "heliport", + "name": "Astashikha Heliport", + "latitude_deg": "49.49901", + "longitude_deg": "129.47744", + "elevation_ft": "401", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Astashikha", + "scheduled_service": "no" + }, + { + "id": "352902", + "ident": "RU-0820", + "type": "heliport", + "name": "Chesnokovo Heliport", + "latitude_deg": "49.54472", + "longitude_deg": "128.80769", + "elevation_ft": "348", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Chesnokovo", + "scheduled_service": "no" + }, + { + "id": "352903", + "ident": "RU-0821", + "type": "heliport", + "name": "Poyarkovo Heliport", + "latitude_deg": "49.6168", + "longitude_deg": "128.69746", + "elevation_ft": "377", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Poyarkovo", + "scheduled_service": "no" + }, + { + "id": "352904", + "ident": "RU-0822", + "type": "heliport", + "name": "Orlovka Heliport", + "latitude_deg": "49.55586", + "longitude_deg": "128.13968", + "elevation_ft": "371", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Orlovka", + "scheduled_service": "no" + }, + { + "id": "352905", + "ident": "RU-0823", + "type": "heliport", + "name": "Konstantinovka Heliport", + "latitude_deg": "49.59708", + "longitude_deg": "128.01829", + "elevation_ft": "377", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Konstantinovka", + "scheduled_service": "no" + }, + { + "id": "352906", + "ident": "RU-0824", + "type": "heliport", + "name": "Korfovo Heliport", + "latitude_deg": "49.88574", + "longitude_deg": "127.54579", + "elevation_ft": "397", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Korfovo", + "scheduled_service": "no" + }, + { + "id": "352907", + "ident": "RU-0825", + "type": "heliport", + "name": "Krasnoye Heliport", + "latitude_deg": "49.99182", + "longitude_deg": "127.50863", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Krasnoye", + "scheduled_service": "no" + }, + { + "id": "352908", + "ident": "RU-0826", + "type": "heliport", + "name": "Groyekovo Heliport", + "latitude_deg": "50.11444", + "longitude_deg": "127.56631", + "elevation_ft": "406", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Groyekovo", + "scheduled_service": "no" + }, + { + "id": "352909", + "ident": "RU-0827", + "type": "heliport", + "name": "Kanikurgan Heliport", + "latitude_deg": "50.21763", + "longitude_deg": "127.63148", + "elevation_ft": "417", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Kanikurgan", + "scheduled_service": "no" + }, + { + "id": "352921", + "ident": "RU-0828", + "type": "heliport", + "name": "Shimanovskogo North Heliport", + "latitude_deg": "50.95001", + "longitude_deg": "127.09716", + "elevation_ft": "600", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Shimanovskogo", + "scheduled_service": "no" + }, + { + "id": "352924", + "ident": "RU-0829", + "type": "heliport", + "name": "Shimanovskogo South Heliport", + "latitude_deg": "50.94216", + "longitude_deg": "127.10455", + "elevation_ft": "489", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Shimanovskogo", + "scheduled_service": "no" + }, + { + "id": "352953", + "ident": "RU-0830", + "type": "heliport", + "name": "Novopetrovka Heliport", + "latitude_deg": "49.56721", + "longitude_deg": "128.28048", + "elevation_ft": "391", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Novopetrovka", + "scheduled_service": "no" + }, + { + "id": "352954", + "ident": "RU-0831", + "type": "heliport", + "name": "Markovo Heliport", + "latitude_deg": "50.5374", + "longitude_deg": "127.36028", + "elevation_ft": "446", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Markovo", + "scheduled_service": "no" + }, + { + "id": "352955", + "ident": "RU-0832", + "type": "heliport", + "name": "Mikhailovka Heliport", + "latitude_deg": "50.64091", + "longitude_deg": "127.35997", + "elevation_ft": "541", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Mikhailovka", + "scheduled_service": "no" + }, + { + "id": "352956", + "ident": "RU-0833", + "type": "heliport", + "name": "Sergeyevka Heliport", + "latitude_deg": "50.73505", + "longitude_deg": "127.31149", + "elevation_ft": "463", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Sergeyevka", + "scheduled_service": "no" + }, + { + "id": "352957", + "ident": "RU-0834", + "type": "heliport", + "name": "Saskal Heliport", + "latitude_deg": "51.66368", + "longitude_deg": "126.91308", + "elevation_ft": "650", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ALT", + "municipality": "Saskal", + "scheduled_service": "no" + }, + { + "id": "352958", + "ident": "RU-0835", + "type": "heliport", + "name": "Ushakovo Heliport", + "latitude_deg": "51.85303", + "longitude_deg": "126.56647", + "elevation_ft": "581", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Ushakovo", + "scheduled_service": "no" + }, + { + "id": "352959", + "ident": "RU-0836", + "type": "heliport", + "name": "Kuznetsovo Heliport", + "latitude_deg": "52.57164", + "longitude_deg": "126.14801", + "elevation_ft": "676", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Kuznetsovo", + "scheduled_service": "no" + }, + { + "id": "352960", + "ident": "RU-0837", + "type": "heliport", + "name": "Chernyayevo Heliport", + "latitude_deg": "52.78225", + "longitude_deg": "125.98141", + "elevation_ft": "722", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Chernyayevo", + "scheduled_service": "no" + }, + { + "id": "352961", + "ident": "RU-0838", + "type": "heliport", + "name": "Busse Heliport", + "latitude_deg": "51.20629", + "longitude_deg": "126.90684", + "elevation_ft": "512", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Busse", + "scheduled_service": "no" + }, + { + "id": "352962", + "ident": "RU-0839", + "type": "heliport", + "name": "Tolbuzino Heliport", + "latitude_deg": "53.13513", + "longitude_deg": "125.4743", + "elevation_ft": "751", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Tolbuzino", + "scheduled_service": "no" + }, + { + "id": "352963", + "ident": "RU-0840", + "type": "heliport", + "name": "Albazino Heliport", + "latitude_deg": "53.39781", + "longitude_deg": "124.07478", + "elevation_ft": "879", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Albazino", + "scheduled_service": "no" + }, + { + "id": "352964", + "ident": "RU-0841", + "type": "heliport", + "name": "PSP Dzhalinda Heliport", + "latitude_deg": "53.45682", + "longitude_deg": "123.98836", + "elevation_ft": "1189", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Dzhalinda", + "scheduled_service": "no" + }, + { + "id": "352965", + "ident": "RU-0842", + "type": "heliport", + "name": "Dzhalinda Heliport", + "latitude_deg": "53.48339", + "longitude_deg": "123.9131", + "elevation_ft": "997", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Dzhalinda", + "scheduled_service": "no" + }, + { + "id": "352966", + "ident": "RU-0843", + "type": "heliport", + "name": "Border Post Tymager Heliport", + "latitude_deg": "53.30544", + "longitude_deg": "121.06297", + "elevation_ft": "1047", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Mogochinsky", + "scheduled_service": "no" + }, + { + "id": "352968", + "ident": "RU-0844", + "type": "small_airport", + "name": "Ust'-Strelka Airport", + "latitude_deg": "53.32426", + "longitude_deg": "121.38508", + "elevation_ft": "1110", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Ust'-Strelka", + "scheduled_service": "no" + }, + { + "id": "34986", + "ident": "RU-0845", + "type": "small_airport", + "name": "Gorelovo Aerodrome", + "latitude_deg": "59.765518", + "longitude_deg": "30.071722", + "elevation_ft": "190", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SPE", + "municipality": "Saint Petersburg", + "scheduled_service": "no", + "local_code": "XLLE", + "home_link": "http://maps.aopa.ru/id/xlle", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gorelovo_(air_base)", + "keywords": "Annino" + }, + { + "id": "352969", + "ident": "RU-0846", + "type": "heliport", + "name": "Ust'-Strelka Heliport", + "latitude_deg": "53.31984", + "longitude_deg": "121.39618", + "elevation_ft": "1027", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Ust'-Strelka", + "scheduled_service": "no" + }, + { + "id": "352970", + "ident": "RU-0847", + "type": "heliport", + "name": "Pokrovka Border Post Heliport", + "latitude_deg": "53.36375", + "longitude_deg": "121.60142", + "elevation_ft": "1020", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Pokrovka", + "scheduled_service": "no" + }, + { + "id": "352971", + "ident": "RU-0848", + "type": "heliport", + "name": "Pokrovka Heliport", + "latitude_deg": "53.35122", + "longitude_deg": "121.53238", + "elevation_ft": "1001", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Pokrovka", + "scheduled_service": "no" + }, + { + "id": "352973", + "ident": "RU-0849", + "type": "heliport", + "name": "Khandagayty Heliport", + "latitude_deg": "50.7441", + "longitude_deg": "92.10262", + "elevation_ft": "3786", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TY", + "municipality": "Khandagayty", + "scheduled_service": "no" + }, + { + "id": "352974", + "ident": "RU-0850", + "type": "heliport", + "name": "Chaa-Suur Heliport", + "latitude_deg": "50.79463", + "longitude_deg": "92.74784", + "elevation_ft": "4111", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TY", + "municipality": "Chaa-Suur", + "scheduled_service": "no" + }, + { + "id": "352975", + "ident": "RU-0851", + "type": "small_airport", + "name": "Kungurtug Airport", + "latitude_deg": "50.60054", + "longitude_deg": "97.50883", + "elevation_ft": "4308", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TY", + "municipality": "Kungurtug", + "scheduled_service": "no" + }, + { + "id": "352988", + "ident": "RU-0852", + "type": "heliport", + "name": "Srednyaya Heliport", + "latitude_deg": "51.69133", + "longitude_deg": "120.09881", + "elevation_ft": "1762", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Srednyaya", + "scheduled_service": "no" + }, + { + "id": "352989", + "ident": "RU-0853", + "type": "heliport", + "name": "Nerchinsky Zavod Heliport", + "latitude_deg": "51.29243", + "longitude_deg": "119.61225", + "elevation_ft": "2228", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Nerchinsky Zavod", + "scheduled_service": "no" + }, + { + "id": "352990", + "ident": "RU-0854", + "type": "heliport", + "name": "Ishaga Heliport", + "latitude_deg": "51.43523", + "longitude_deg": "119.96415", + "elevation_ft": "1647", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Ishaga", + "scheduled_service": "no" + }, + { + "id": "352991", + "ident": "RU-0855", + "type": "heliport", + "name": "Argunsk Heliport", + "latitude_deg": "51.5632", + "longitude_deg": "119.99808", + "elevation_ft": "1699", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Argunsk", + "scheduled_service": "no" + }, + { + "id": "352993", + "ident": "RU-0856", + "type": "heliport", + "name": "Buldurui 1-Y Heliport", + "latitude_deg": "51.01742", + "longitude_deg": "119.63956", + "elevation_ft": "1657", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Buldurui 1-Y", + "scheduled_service": "no" + }, + { + "id": "352994", + "ident": "RU-0857", + "type": "heliport", + "name": "Srednyaya Borzya Heliport", + "latitude_deg": "50.91762", + "longitude_deg": "119.48523", + "elevation_ft": "1614", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Srednyaya Borzya", + "scheduled_service": "no" + }, + { + "id": "352995", + "ident": "RU-0858", + "type": "heliport", + "name": "Bura Heliport", + "latitude_deg": "50.75547", + "longitude_deg": "119.43263", + "elevation_ft": "1627", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Bura", + "scheduled_service": "no" + }, + { + "id": "352996", + "ident": "RU-0859", + "type": "heliport", + "name": "Zorgol Heliport", + "latitude_deg": "50.5872", + "longitude_deg": "119.25723", + "elevation_ft": "1650", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Zorgol", + "scheduled_service": "no" + }, + { + "id": "352997", + "ident": "RU-0860", + "type": "heliport", + "name": "Priargunsk Heliport", + "latitude_deg": "50.34718", + "longitude_deg": "119.08071", + "elevation_ft": "1713", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Priargunsk", + "scheduled_service": "no" + }, + { + "id": "352998", + "ident": "RU-0861", + "type": "heliport", + "name": "Priargunsk Heliport", + "latitude_deg": "50.34718", + "longitude_deg": "119.08071", + "elevation_ft": "1713", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Priargunsk", + "scheduled_service": "no" + }, + { + "id": "352999", + "ident": "RU-0862", + "type": "small_airport", + "name": "Priargunsk Airport", + "latitude_deg": "50.34247", + "longitude_deg": "119.00104", + "elevation_ft": "2057", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Priargunsk", + "scheduled_service": "no" + }, + { + "id": "353000", + "ident": "RU-0863", + "type": "heliport", + "name": "Starotsurukhaitui Heliport", + "latitude_deg": "50.1982", + "longitude_deg": "119.28984", + "elevation_ft": "1844", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Starotsurukhaitui", + "scheduled_service": "no" + }, + { + "id": "353183", + "ident": "RU-0864", + "type": "heliport", + "name": "Kuti Heliport", + "latitude_deg": "50.09873", + "longitude_deg": "119.1884", + "elevation_ft": "1955", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Kuti", + "scheduled_service": "no" + }, + { + "id": "353184", + "ident": "RU-0865", + "type": "heliport", + "name": "Duroi Heliport", + "latitude_deg": "50.01372", + "longitude_deg": "118.92798", + "elevation_ft": "1855", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Duroi", + "scheduled_service": "no" + }, + { + "id": "353185", + "ident": "RU-0866", + "type": "heliport", + "name": "Bogdanovka Heliport", + "latitude_deg": "50.01502", + "longitude_deg": "118.75466", + "elevation_ft": "1785", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Bogdanovka", + "scheduled_service": "no" + }, + { + "id": "353186", + "ident": "RU-0867", + "type": "heliport", + "name": "Kaptsegaitui Heliport", + "latitude_deg": "49.9647", + "longitude_deg": "118.59136", + "elevation_ft": "1850", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Kaptsegaitui", + "scheduled_service": "no" + }, + { + "id": "353187", + "ident": "RU-0868", + "type": "heliport", + "name": "Kailastui Heliport", + "latitude_deg": "49.82489", + "longitude_deg": "118.37125", + "elevation_ft": "1857", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Kailastui", + "scheduled_service": "no" + }, + { + "id": "353188", + "ident": "RU-0869", + "type": "heliport", + "name": "Border Post Oktyabrskaya Heliport", + "latitude_deg": "49.91687", + "longitude_deg": "118.4958", + "elevation_ft": "1867", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Kailastui", + "scheduled_service": "no" + }, + { + "id": "353189", + "ident": "RU-0870", + "type": "heliport", + "name": "Sredneargunsk Heliport", + "latitude_deg": "49.75409", + "longitude_deg": "118.26919", + "elevation_ft": "1821", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Sredneargunsk", + "scheduled_service": "no" + }, + { + "id": "353190", + "ident": "RU-0871", + "type": "heliport", + "name": "Brusilovka Heliport", + "latitude_deg": "49.67748", + "longitude_deg": "118.03401", + "elevation_ft": "1903", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Brusilovka", + "scheduled_service": "no" + }, + { + "id": "353191", + "ident": "RU-0872", + "type": "heliport", + "name": "Zabaykalsk East Heliport", + "latitude_deg": "49.64465", + "longitude_deg": "117.44415", + "elevation_ft": "2218", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Zabaykalsk", + "scheduled_service": "no" + }, + { + "id": "353192", + "ident": "RU-0873", + "type": "heliport", + "name": "Abagaytuy Heliport", + "latitude_deg": "49.57363", + "longitude_deg": "117.83492", + "elevation_ft": "1821", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Abagaytuy", + "scheduled_service": "no" + }, + { + "id": "353193", + "ident": "RU-0874", + "type": "heliport", + "name": "Negatuy Heliport", + "latitude_deg": "49.61007", + "longitude_deg": "117.62119", + "elevation_ft": "1991", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Negatuy", + "scheduled_service": "no" + }, + { + "id": "353194", + "ident": "RU-0875", + "type": "heliport", + "name": "Bilituy Heliport", + "latitude_deg": "49.8294", + "longitude_deg": "117.12101", + "elevation_ft": "2533", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Bilituy", + "scheduled_service": "no" + }, + { + "id": "353195", + "ident": "RU-0876", + "type": "heliport", + "name": "Solovievsk Heliport", + "latitude_deg": "49.89546", + "longitude_deg": "115.74772", + "elevation_ft": "2034", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Solovievsk", + "scheduled_service": "no" + }, + { + "id": "353196", + "ident": "RU-0877", + "type": "heliport", + "name": "Builesan Heliport", + "latitude_deg": "50.24435", + "longitude_deg": "114.84834", + "elevation_ft": "2352", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Builesan", + "scheduled_service": "no" + }, + { + "id": "353197", + "ident": "RU-0878", + "type": "heliport", + "name": "Krasnaya Imalka Heliport", + "latitude_deg": "50.28331", + "longitude_deg": "115.37272", + "elevation_ft": "2172", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Krasnaya Imalka", + "scheduled_service": "no" + }, + { + "id": "353198", + "ident": "RU-0879", + "type": "heliport", + "name": "Novy Durulgui Heliport", + "latitude_deg": "50.34665", + "longitude_deg": "114.45262", + "elevation_ft": "2484", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Novy Durulgui", + "scheduled_service": "no" + }, + { + "id": "353199", + "ident": "RU-0880", + "type": "heliport", + "name": "Ubur-Tokhtor Heliport", + "latitude_deg": "50.09687", + "longitude_deg": "113.61797", + "elevation_ft": "3143", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Ubur-Tokhtor", + "scheduled_service": "no" + }, + { + "id": "353200", + "ident": "RU-0881", + "type": "heliport", + "name": "Mikhailo-Pavlovsk Heliport", + "latitude_deg": "49.68313", + "longitude_deg": "113.03794", + "elevation_ft": "3064", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Mikhailo-Pavlovsk", + "scheduled_service": "no" + }, + { + "id": "353201", + "ident": "RU-0882", + "type": "heliport", + "name": "Mangut Heliport", + "latitude_deg": "49.6975", + "longitude_deg": "112.66485", + "elevation_ft": "2664", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Mangut", + "scheduled_service": "no" + }, + { + "id": "353202", + "ident": "RU-0883", + "type": "small_airport", + "name": "Menza Airport", + "latitude_deg": "49.41982", + "longitude_deg": "108.8545", + "elevation_ft": "3104", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Menza", + "scheduled_service": "no" + }, + { + "id": "353203", + "ident": "RU-0884", + "type": "small_airport", + "name": "Kyra Airport", + "latitude_deg": "49.58653", + "longitude_deg": "111.95628", + "elevation_ft": "2995", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Kyra", + "scheduled_service": "no" + }, + { + "id": "353204", + "ident": "RU-0885", + "type": "heliport", + "name": "Khilkotoy Heliport", + "latitude_deg": "49.93404", + "longitude_deg": "108.03888", + "elevation_ft": "2228", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Khilkotoi", + "scheduled_service": "no" + }, + { + "id": "353205", + "ident": "RU-0886", + "type": "heliport", + "name": "Sharagol Heliport", + "latitude_deg": "50.02598", + "longitude_deg": "107.35155", + "elevation_ft": "2182", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Sharagol", + "scheduled_service": "no" + }, + { + "id": "353206", + "ident": "RU-0887", + "type": "heliport", + "name": "Bolshaya Kudara Heliport", + "latitude_deg": "50.20849", + "longitude_deg": "107.04438", + "elevation_ft": "1988", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Bolshaya Kudara", + "scheduled_service": "no" + }, + { + "id": "353207", + "ident": "RU-0888", + "type": "heliport", + "name": "Khyagt Heliport", + "latitude_deg": "50.32928", + "longitude_deg": "106.48077", + "elevation_ft": "2411", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Khyagt", + "scheduled_service": "no" + }, + { + "id": "353208", + "ident": "RU-0889", + "type": "heliport", + "name": "Naushki Hospital Heliport", + "latitude_deg": "50.39565", + "longitude_deg": "106.10954", + "elevation_ft": "2021", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Naushki", + "scheduled_service": "no" + }, + { + "id": "353209", + "ident": "RU-0890", + "type": "heliport", + "name": "Botsii Heliport", + "latitude_deg": "50.45923", + "longitude_deg": "105.64289", + "elevation_ft": "2133", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Botsii", + "scheduled_service": "no" + }, + { + "id": "353210", + "ident": "RU-0891", + "type": "small_airport", + "name": "Petropavlovka Airport", + "latitude_deg": "50.61721", + "longitude_deg": "105.28553", + "elevation_ft": "2350", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Petropavlovka", + "scheduled_service": "no" + }, + { + "id": "35015", + "ident": "RU-0892", + "type": "closed", + "name": "Lebedovo Air Base", + "latitude_deg": "51.28329849243164", + "longitude_deg": "46.25", + "elevation_ft": "249", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAR", + "municipality": "Privolzsky", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lebedovo" + }, + { + "id": "353211", + "ident": "RU-0893", + "type": "heliport", + "name": "Petropavlovka Heliport", + "latitude_deg": "50.61637", + "longitude_deg": "105.3263", + "elevation_ft": "2254", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Petropavlovka", + "scheduled_service": "no" + }, + { + "id": "353428", + "ident": "RU-0894", + "type": "heliport", + "name": "Zheltura Heliport", + "latitude_deg": "50.46267", + "longitude_deg": "105.09323", + "elevation_ft": "2356", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Zheltura", + "scheduled_service": "no" + }, + { + "id": "353430", + "ident": "RU-0895", + "type": "heliport", + "name": "Kharatsai Heliport", + "latitude_deg": "50.48764", + "longitude_deg": "104.48476", + "elevation_ft": "2598", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Kharatsai", + "scheduled_service": "no" + }, + { + "id": "353431", + "ident": "RU-0896", + "type": "small_airport", + "name": "Ulekchin Airport", + "latitude_deg": "50.50104", + "longitude_deg": "104.27745", + "elevation_ft": "2861", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Ulekchin", + "scheduled_service": "no" + }, + { + "id": "353432", + "ident": "RU-0897", + "type": "closed", + "name": "Zakamensk Airport", + "latitude_deg": "50.43445", + "longitude_deg": "103.36997", + "elevation_ft": "3451", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Dutulur", + "scheduled_service": "no" + }, + { + "id": "353433", + "ident": "RU-0898", + "type": "heliport", + "name": "Kholtoson Heliport", + "latitude_deg": "50.28685", + "longitude_deg": "103.31613", + "elevation_ft": "4033", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Kholtoson", + "scheduled_service": "no" + }, + { + "id": "353434", + "ident": "RU-0899", + "type": "heliport", + "name": "Mondy Heliport", + "latitude_deg": "51.66803", + "longitude_deg": "100.98303", + "elevation_ft": "4341", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Mondy", + "scheduled_service": "no" + }, + { + "id": "353453", + "ident": "RU-0900", + "type": "heliport", + "name": "Ak-Kalakha Heliport", + "latitude_deg": "49.27255", + "longitude_deg": "87.49247", + "elevation_ft": "7221", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AL", + "municipality": "Ak-Kalakha", + "scheduled_service": "no" + }, + { + "id": "353454", + "ident": "RU-0901", + "type": "heliport", + "name": "Karagay Heliport", + "latitude_deg": "50.39452", + "longitude_deg": "84.63358", + "elevation_ft": "3957", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AL", + "municipality": "Karagay", + "scheduled_service": "no" + }, + { + "id": "353456", + "ident": "RU-0902", + "type": "closed", + "name": "Mikhailovskoye Airport", + "latitude_deg": "51.8328", + "longitude_deg": "79.7091", + "elevation_ft": "571", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ALT", + "municipality": "Mikhailovskoye", + "scheduled_service": "no", + "gps_code": "ZEC3" + }, + { + "id": "353458", + "ident": "RU-0903", + "type": "heliport", + "name": "Klyuchi Heliport", + "latitude_deg": "52.2678", + "longitude_deg": "79.19963", + "elevation_ft": "456", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ALT", + "municipality": "Klyuchi", + "scheduled_service": "no" + }, + { + "id": "353542", + "ident": "RU-0904", + "type": "small_airport", + "name": "Yarovoye Altaipetstrans Airport", + "latitude_deg": "52.93973", + "longitude_deg": "78.60009", + "elevation_ft": "364", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ALT", + "municipality": "Yarovoye", + "scheduled_service": "no" + }, + { + "id": "353543", + "ident": "RU-0905", + "type": "heliport", + "name": "Oktyabr'skoye Heliport", + "latitude_deg": "53.508657", + "longitude_deg": "77.791076", + "elevation_ft": "354", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Oktyabr'skoye", + "scheduled_service": "no" + }, + { + "id": "353544", + "ident": "RU-0906", + "type": "heliport", + "name": "Studenoye Heliport", + "latitude_deg": "53.61944", + "longitude_deg": "77.523846", + "elevation_ft": "341", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Studenoye", + "scheduled_service": "no" + }, + { + "id": "353545", + "ident": "RU-0907", + "type": "heliport", + "name": "Karasuk Heliport", + "latitude_deg": "53.715884", + "longitude_deg": "78.064545", + "elevation_ft": "358", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Karasuk", + "scheduled_service": "no" + }, + { + "id": "353547", + "ident": "RU-0908", + "type": "small_airport", + "name": "Karasuk Airport", + "latitude_deg": "53.70532", + "longitude_deg": "78.07082", + "elevation_ft": "380", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Karasuk", + "scheduled_service": "no" + }, + { + "id": "353548", + "ident": "RU-0909", + "type": "heliport", + "name": "Terengul' Heliport", + "latitude_deg": "53.83546", + "longitude_deg": "77.15268", + "elevation_ft": "325", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Terengul'", + "scheduled_service": "no" + }, + { + "id": "353549", + "ident": "RU-0910", + "type": "heliport", + "name": "Blagoveshchenka Heliport", + "latitude_deg": "53.93201", + "longitude_deg": "76.95398", + "elevation_ft": "105", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Blagoveshchenka", + "scheduled_service": "no" + }, + { + "id": "353550", + "ident": "RU-0911", + "type": "heliport", + "name": "Metelevo Heliport", + "latitude_deg": "54.09996", + "longitude_deg": "76.75993", + "elevation_ft": "358", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Metelevo", + "scheduled_service": "no" + }, + { + "id": "353551", + "ident": "RU-0912", + "type": "heliport", + "name": "Chistoozernoe Heliport", + "latitude_deg": "54.69841", + "longitude_deg": "76.59525", + "elevation_ft": "352", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Chistoozernoe", + "scheduled_service": "no" + }, + { + "id": "353552", + "ident": "RU-0913", + "type": "heliport", + "name": "Kupino Heliport", + "latitude_deg": "54.38867", + "longitude_deg": "77.3059", + "elevation_ft": "361", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Kupino", + "scheduled_service": "no" + }, + { + "id": "353553", + "ident": "RU-0914", + "type": "heliport", + "name": "Novokrasnoye Heliport", + "latitude_deg": "54.32668", + "longitude_deg": "76.18341", + "elevation_ft": "348", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Novokrasnoye", + "scheduled_service": "no" + }, + { + "id": "353554", + "ident": "RU-0915", + "type": "heliport", + "name": "Bol'shegrivskoye Heliport", + "latitude_deg": "53.91101", + "longitude_deg": "74.92926", + "elevation_ft": "292", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-OMS", + "municipality": "Bol'shegrivskoye", + "scheduled_service": "no" + }, + { + "id": "353555", + "ident": "RU-0916", + "type": "heliport", + "name": "Russkaya Polyana Heliport", + "latitude_deg": "53.76374", + "longitude_deg": "73.88164", + "elevation_ft": "402", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-OMS", + "municipality": "Russkaya Polyana", + "scheduled_service": "no" + }, + { + "id": "353578", + "ident": "RU-0917", + "type": "small_airport", + "name": "Slavyansk-na-Kubani Airport", + "latitude_deg": "45.20633", + "longitude_deg": "38.08692", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Slavyansk-na-Kubani", + "scheduled_service": "no" + }, + { + "id": "354388", + "ident": "RU-0918", + "type": "closed", + "name": "Fyodorovka Airport", + "latitude_deg": "55.08796", + "longitude_deg": "72.995911", + "elevation_ft": "4481", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-OMS", + "municipality": "Omsk", + "scheduled_service": "no", + "local_code": "ZF8F", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fyodorovka_Airport" + }, + { + "id": "355155", + "ident": "RU-0919", + "type": "heliport", + "name": "Усадьба Мансурово helipad", + "latitude_deg": "51.774107", + "longitude_deg": "37.430463", + "elevation_ft": "676", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KRS", + "scheduled_service": "no", + "local_code": "HH9Y" + }, + { + "id": "355513", + "ident": "RU-0920", + "type": "heliport", + "name": "Kordon Ozernyy Heliport", + "latitude_deg": "51.48092", + "longitude_deg": "157.03785", + "elevation_ft": "283", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Pauzhetka", + "scheduled_service": "no" + }, + { + "id": "355765", + "ident": "RU-0921", + "type": "heliport", + "name": "Назарово Helipad", + "latitude_deg": "44.204281", + "longitude_deg": "145.859578", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Nazarovas", + "scheduled_service": "no" + }, + { + "id": "356021", + "ident": "RU-0922", + "type": "small_airport", + "name": "Rybatskaya Airstrip", + "latitude_deg": "54.67994", + "longitude_deg": "39.78785", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-RYA", + "scheduled_service": "no" + }, + { + "id": "356391", + "ident": "RU-0923", + "type": "small_airport", + "name": "AirLife Aerodrome", + "latitude_deg": "48.04196", + "longitude_deg": "45.98445", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-AST", + "municipality": "Chernyi Yar", + "scheduled_service": "no" + }, + { + "id": "34987", + "ident": "RU-0967", + "type": "closed", + "name": "Gorin Air Base", + "latitude_deg": "51.17169952392578", + "longitude_deg": "136.63499450683594", + "elevation_ft": "492", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Gorin", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gorin" + }, + { + "id": "34995", + "ident": "RU-1071", + "type": "medium_airport", + "name": "Kamensk-Uralskiy Air Base", + "latitude_deg": "56.4366989136", + "longitude_deg": "61.9866981506", + "elevation_ft": "502", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SVE", + "municipality": "Kamensk Uralskiy", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kamensk_Uralskiy", + "keywords": "Kamensk Uralskiy Air Base, Travyanka Air Base, Аэродром Каменск-Уральский, Аэродром Травянка, ЬССУ" + }, + { + "id": "35037", + "ident": "RU-1110", + "type": "small_airport", + "name": "Monchegorsk Air Base", + "latitude_deg": "67.9867019653", + "longitude_deg": "33.0182991028", + "elevation_ft": "548", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Monchegorsk", + "scheduled_service": "no", + "local_code": "XLMG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monchegorsk_(air_base)", + "keywords": "Аэродром Мончегорск, ЬЛМГ" + }, + { + "id": "35117", + "ident": "RU-1221", + "type": "small_airport", + "name": "Vozzhayevka Air Base", + "latitude_deg": "50.77", + "longitude_deg": "128.776993", + "elevation_ft": "738", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Vozzhayevka", + "scheduled_service": "no", + "local_code": "XHBW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vozzhayevka", + "keywords": "ЬХБВ, Возжаевка" + }, + { + "id": "34973", + "ident": "RU-1241", + "type": "closed", + "name": "Dno Air Base", + "latitude_deg": "57.78329849243164", + "longitude_deg": "29.966699600219727", + "elevation_ft": "253", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PSK", + "municipality": "Dno", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dno_(air_base)" + }, + { + "id": "35011", + "ident": "RU-1480", + "type": "closed", + "name": "Kryuchkovo Air Base", + "latitude_deg": "57.06829833984375", + "longitude_deg": "35.50830078125", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TVE", + "municipality": "Tver", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kryuchkovo" + }, + { + "id": "34974", + "ident": "RU-1507", + "type": "small_airport", + "name": "Dobrynskoye Air Base", + "latitude_deg": "56.244998931884766", + "longitude_deg": "40.59170150756836", + "elevation_ft": "430", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLA", + "municipality": "Vladimir", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dobrynskoye", + "keywords": "Dobrynskoe Air Base, Аэродром Добрынское" + }, + { + "id": "35042", + "ident": "RU-1777", + "type": "closed", + "name": "Nerchinsk Air Base", + "latitude_deg": "52", + "longitude_deg": "116.53299713134766", + "elevation_ft": "1575", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Nerchinsk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nerchinsk_Airport" + }, + { + "id": "35023", + "ident": "RU-187", + "type": "small_airport", + "name": "Lodeynoye Pole Air Base", + "latitude_deg": "60.709999", + "longitude_deg": "33.57", + "elevation_ft": "56", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Lodeynoye Pole", + "scheduled_service": "no", + "local_code": "XLPO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lodeynoye_Pole_(air_base)", + "keywords": "Аэродром Лодейное Поле" + }, + { + "id": "34975", + "ident": "RU-1892", + "type": "medium_airport", + "name": "Dolinsk-Sokol Air Base", + "latitude_deg": "47.2617", + "longitude_deg": "142.768005", + "elevation_ft": "95", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Dolinsk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dolinsk-Sokol_(air_base)", + "keywords": "Kabata Airfield, Ochiai Airfield, Otani Airfield" + }, + { + "id": "35014", + "ident": "RU-2070", + "type": "small_airport", + "name": "Logovushka Airfield", + "latitude_deg": "55.4109992980957", + "longitude_deg": "64.94300079345703", + "elevation_ft": "499", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KGN", + "municipality": "Kurgan", + "scheduled_service": "no", + "home_link": "http://kack.narod.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kurgan_West", + "keywords": "Аэродром Логовушка" + }, + { + "id": "35039", + "ident": "RU-2098", + "type": "closed", + "name": "Mukachevo Air Base", + "latitude_deg": "48.400001525878906", + "longitude_deg": "22.683300018310547", + "elevation_ft": "390", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-21", + "municipality": "Mukachev", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mukachevo_(air_base)" + }, + { + "id": "35102", + "ident": "RU-2244", + "type": "small_airport", + "name": "Ukrainka Air Base", + "latitude_deg": "51.169997", + "longitude_deg": "128.445007", + "elevation_ft": "771", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Belogorsk", + "scheduled_service": "no", + "local_code": "XHBU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ukrainka_(air_base)", + "keywords": "ЬХБУ, Украинка" + }, + { + "id": "34990", + "ident": "RU-2249", + "type": "small_airport", + "name": "Gromovo Air Base", + "latitude_deg": "60.71329879760742", + "longitude_deg": "30.1117000579834", + "elevation_ft": "230", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Gromovo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gromovo", + "keywords": "Аэродром Громово, Sakkola" + }, + { + "id": "35069", + "ident": "RU-2344", + "type": "medium_airport", + "name": "Samara Kryazh Air Base", + "latitude_deg": "53.108299255371094", + "longitude_deg": "50.09830093383789", + "elevation_ft": "105", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAM", + "municipality": "Samara", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Samara_Kryazh_Airport" + }, + { + "id": "34978", + "ident": "RU-2383", + "type": "small_airport", + "name": "Dombarovskiy Air Base", + "latitude_deg": "50.799999", + "longitude_deg": "59.516701", + "elevation_ft": "869", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-ORE", + "municipality": "Dombarovskiy", + "scheduled_service": "no", + "gps_code": "UWOJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dombarovsky", + "keywords": "Dombarovsky Air Base, Dombarovka Air Base, Аэродром Домбаровский, Аэродром Домбаровка" + }, + { + "id": "35062", + "ident": "RU-2504", + "type": "closed", + "name": "Reshma Air Base", + "latitude_deg": "57.426700592041016", + "longitude_deg": "42.43000030517578", + "elevation_ft": "410", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-IVA", + "municipality": "Kinesma", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Reshma_(air_base)" + }, + { + "id": "34989", + "ident": "RU-2510", + "type": "closed", + "name": "Greem Bell Air Base", + "latitude_deg": "81.15", + "longitude_deg": "64.33", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Khatanga", + "scheduled_service": "no", + "local_code": "XLDG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greem_Bell", + "keywords": "Graham Bell Airbase, Аэродром Греэм Белл, Аэродром Грээм Белл, ЬЛДГ, RU-2510" + }, + { + "id": "35100", + "ident": "RU-2824", + "type": "closed", + "name": "Uka Airport", + "latitude_deg": "57.928841", + "longitude_deg": "162.020753", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Uka", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Uka_Airport" + }, + { + "id": "34983", + "ident": "RU-2844", + "type": "medium_airport", + "name": "Dzhida Air Base", + "latitude_deg": "50.677425106200005", + "longitude_deg": "106.138572693", + "elevation_ft": "1968", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Dzhida", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dzhida", + "keywords": "Аэродром Джида, ЬИИД" + }, + { + "id": "35077", + "ident": "RU-3095", + "type": "medium_airport", + "name": "Shadrinsk Air Base", + "latitude_deg": "56.039207458496094", + "longitude_deg": "63.6819953918457", + "elevation_ft": "459", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KGN", + "municipality": "Shadrinsk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shadrinsk_(air_base)" + }, + { + "id": "35096", + "ident": "RU-3106", + "type": "closed", + "name": "Tiksi North Air Base", + "latitude_deg": "72.03829956054688", + "longitude_deg": "128.4720001220703", + "elevation_ft": "66", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Tiksi", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tiksi_North" + }, + { + "id": "35105", + "ident": "RU-3288", + "type": "small_airport", + "name": "Umbozero Air Base", + "latitude_deg": "67.5134273155", + "longitude_deg": "34.3068695068", + "elevation_ft": "518", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Umbozero", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Umbozero_(airport)" + }, + { + "id": "35056", + "ident": "RU-3463", + "type": "closed", + "name": "Poduzhemye Air Base", + "latitude_deg": "64.91829681396484", + "longitude_deg": "34.26499938964844", + "elevation_ft": "157", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KR", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Poduzhemye", + "keywords": "Kem/Uzhmana, Uzhmana" + }, + { + "id": "35027", + "ident": "RU-3540", + "type": "closed", + "name": "Luostari Air Base", + "latitude_deg": "69.400002", + "longitude_deg": "30.9883", + "elevation_ft": "249", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Zapolyarnyj", + "scheduled_service": "no", + "local_code": "XLML", + "wikipedia_link": "https://en.wikipedia.org/wiki/Luostari/Pechenga_(air_base)", + "keywords": "Pechenga, Korzunovo Air Base, Аэродром Луостари, Аэродром Корзуново" + }, + { + "id": "35116", + "ident": "RU-3686", + "type": "medium_airport", + "name": "Vorotynsk Air Base", + "latitude_deg": "54.4682998657", + "longitude_deg": "36.073299408", + "elevation_ft": "545", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KLU", + "municipality": "Vorotynsk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vorotynsk_(air_base)", + "keywords": "Oreshkovo Air Base, Аэродром Воротынск, Аэродром Орешково" + }, + { + "id": "35020", + "ident": "RU-3693", + "type": "small_airport", + "name": "Letneozerskiy Air Base", + "latitude_deg": "63.38999938964844", + "longitude_deg": "40.39830017089844", + "elevation_ft": "325", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Obozerskiy", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Letneozerskiy", + "keywords": "Obozerskiy Southeast, Letneozerskiy" + }, + { + "id": "35075", + "ident": "RU-3709", + "type": "medium_airport", + "name": "Bagay-Baranovka Air Base", + "latitude_deg": "52.1396522522", + "longitude_deg": "46.969387054399995", + "elevation_ft": "125", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAR", + "municipality": "Sennoy", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sennoy_(airport)", + "keywords": "Sennaya Air Base, Sennoy Air Base, Аэродром Багай-Барановка, Аэродром Сенная, ЬВСБ" + }, + { + "id": "35076", + "ident": "RU-3869", + "type": "closed", + "name": "Severny Air Base", + "latitude_deg": "51.06669998168945", + "longitude_deg": "61.483299255371094", + "elevation_ft": "850", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-ORE", + "municipality": "Orsk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Severny_(air_base)" + }, + { + "id": "34996", + "ident": "RU-3880", + "type": "medium_airport", + "name": "Kansk Air Base", + "latitude_deg": "56.123298645", + "longitude_deg": "95.66329956050001", + "elevation_ft": "1037", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Kansk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kansk_(air_base)", + "keywords": "Kansk Dalniy Air Base, Аэродром Канск, Аэродром Канск-Дальний, ЬНКГ" + }, + { + "id": "35068", + "ident": "RU-400", + "type": "closed", + "name": "Salmi Air Base", + "latitude_deg": "61.32170104980469", + "longitude_deg": "32.00830078125", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KR", + "municipality": "Ilinskiy", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salmi" + }, + { + "id": "34979", + "ident": "RU-4111", + "type": "small_airport", + "name": "Domna Air Base", + "latitude_deg": "51.916479", + "longitude_deg": "113.121444", + "elevation_ft": "2280", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Chita", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Domna" + }, + { + "id": "35024", + "ident": "RU-4244", + "type": "closed", + "name": "Loukhi-3 Air Base", + "latitude_deg": "66.055", + "longitude_deg": "32.7967", + "elevation_ft": "328", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KR", + "municipality": "Loukhi", + "scheduled_service": "no", + "local_code": "XLPL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Loukhi-3", + "keywords": "ЬЛПЛ, Лоухи-3" + }, + { + "id": "35094", + "ident": "RU-4339", + "type": "medium_airport", + "name": "Tambov Air Base", + "latitude_deg": "52.700626373291016", + "longitude_deg": "41.374168395996094", + "elevation_ft": "554", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TAM", + "municipality": "Tambov", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tambov_(air_base)" + }, + { + "id": "35044", + "ident": "RU-4388", + "type": "closed", + "name": "Nurmalitsy Air Base", + "latitude_deg": "61.04499816894531", + "longitude_deg": "32.97829818725586", + "elevation_ft": "105", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KR", + "municipality": "Olonec", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nurmalitsy" + }, + { + "id": "34972", + "ident": "RU-4421", + "type": "medium_airport", + "name": "Danilovo Air Base", + "latitude_deg": "56.65999984741211", + "longitude_deg": "48.03329849243164", + "elevation_ft": "384", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ME", + "municipality": "Yoshkar Ola", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Danilovo" + }, + { + "id": "35046", + "ident": "RU-4464", + "type": "large_airport", + "name": "Olenya Air Base", + "latitude_deg": "68.151802062988", + "longitude_deg": "33.463901519775", + "elevation_ft": "702", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Olenegorsk", + "scheduled_service": "no", + "local_code": "XLMO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Olenya_(air_base)", + "keywords": "ЬЛМО, Оленья, Olenegorsk" + }, + { + "id": "35063", + "ident": "RU-4536", + "type": "medium_airport", + "name": "Rogachyovo Air Base", + "latitude_deg": "71.61669921880001", + "longitude_deg": "52.4782981873", + "elevation_ft": "272", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NEN", + "municipality": "Belaya", + "scheduled_service": "no", + "gps_code": "ULDA", + "home_link": "http://www.belushka.narod.ru/main.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rogachevo", + "keywords": "Rogachevo Air Base, Belushya Air Base, Rogachovo Air Base, Аэродром Рогачёво, Аэродром Рогачево, Аэродром Белушья" + }, + { + "id": "35079", + "ident": "RU-4609", + "type": "medium_airport", + "name": "Shatalovo Air Base", + "latitude_deg": "54.34000015258789", + "longitude_deg": "32.47330093383789", + "elevation_ft": "630", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SMO", + "municipality": "Pochinok", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shatalovo" + }, + { + "id": "34968", + "ident": "RU-4827", + "type": "medium_airport", + "name": "Cheryomushki Air Base", + "latitude_deg": "52.072963", + "longitude_deg": "113.433267", + "elevation_ft": "2221", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Chita", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chita_Northwest", + "keywords": "Chita-2 Air Base, Chita Northwest Air Base, Аэродром Черёмушки, Аэродром Черемушки, Аэродром Чита-2" + }, + { + "id": "35005", + "ident": "RU-4936", + "type": "small_airport", + "name": "Klyuchi Air Base", + "latitude_deg": "56.30976", + "longitude_deg": "160.804541", + "elevation_ft": "499", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Klyuchi", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Klyuchi_(air_base)" + }, + { + "id": "34970", + "ident": "RU-4948", + "type": "small_airport", + "name": "Chudovo Air Base", + "latitude_deg": "59.23830032348633", + "longitude_deg": "31.270000457763672", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Lyuban", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chudovo_(air_base)", + "keywords": "Lyuban, Аэродром Чудово, Аэродром Любань" + }, + { + "id": "34997", + "ident": "RU-4972", + "type": "closed", + "name": "Karaksar Air Base", + "latitude_deg": "51.28329849243164", + "longitude_deg": "115.8499984741211", + "elevation_ft": "2051", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Olovyannaya", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Karaksar" + }, + { + "id": "34971", + "ident": "RU-5105", + "type": "medium_airport", + "name": "Chuguyevka Air Base", + "latitude_deg": "44.08330154418945", + "longitude_deg": "133.8679962158203", + "elevation_ft": "1001", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Chuguyevka", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chuguyevka" + }, + { + "id": "35004", + "ident": "RU-5186", + "type": "small_airport", + "name": "Klin Air Base", + "latitude_deg": "56.36669921875", + "longitude_deg": "36.73830032348633", + "elevation_ft": "538", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Klin", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Klin_(air_base)" + }, + { + "id": "35071", + "ident": "RU-5259", + "type": "small_airport", + "name": "Saratov Sokol Airfield", + "latitude_deg": "51.54090118408203", + "longitude_deg": "45.8484992980957", + "elevation_ft": "945", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAR", + "municipality": "Saratov", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saratov_West", + "keywords": "Saratov West Airfield, Аэродром Саратов-Сокол" + }, + { + "id": "35000", + "ident": "RU-5276", + "type": "medium_airport", + "name": "Kilpyavr Air Base", + "latitude_deg": "69.0967025756836", + "longitude_deg": "32.40829849243164", + "elevation_ft": "305", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Murmansk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kilpyarv", + "keywords": "Kilp-Yavr, Kil'p-Yar, Kilp-Yar, Kilpyarvi, Kilpajärvi, Килпъявр, Килп-Явр" + }, + { + "id": "35110", + "ident": "RU-5302", + "type": "closed", + "name": "Verkhnaya Zaimka Air Base", + "latitude_deg": "55.82500076293945", + "longitude_deg": "110.0979995727539", + "elevation_ft": "1539", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Nizhneangarsk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Verkhnaya_Zaimka" + }, + { + "id": "35084", + "ident": "RU-5376", + "type": "medium_airport", + "name": "Smuravyovo Air Base", + "latitude_deg": "58.814999", + "longitude_deg": "28.0133", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PSK", + "municipality": "Gdov", + "scheduled_service": "no", + "local_code": "XLLG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Smuravyevo", + "keywords": "Smuravyevo Air Base, Аэродром Смуравьёво, Аэродром Смуравьево" + }, + { + "id": "35120", + "ident": "RU-5491", + "type": "small_airport", + "name": "Yugoryonok Airport", + "latitude_deg": "59.7649993896", + "longitude_deg": "137.682998657", + "elevation_ft": "1001", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Yugoryonok", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yugarenok_Airport", + "keywords": "Yugorеnok Airport, Аэропорт Югорёнок, Аэропорт Югоренок" + }, + { + "id": "35082", + "ident": "RU-5537", + "type": "closed", + "name": "Slavgorod South Air Base", + "latitude_deg": "52.955002", + "longitude_deg": "78.635002", + "elevation_ft": "322", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-ALT", + "municipality": "Slavgorod", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Slavgorod_(air_base)", + "keywords": "Slavgorod Yuzhniy Air Base, Аэродром Славгород Южный" + }, + { + "id": "34993", + "ident": "RU-5672", + "type": "medium_airport", + "name": "Ivanovo North Air Base", + "latitude_deg": "57.05830001831055", + "longitude_deg": "40.9817008972168", + "elevation_ft": "449", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-IVA", + "municipality": "Ivanovo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ivanovo_Severny", + "keywords": "Ivanovo Severny Air Base, Zhukovka" + }, + { + "id": "35055", + "ident": "RU-6031", + "type": "small_airport", + "name": "Petrovsk Air Base", + "latitude_deg": "52.273040771484375", + "longitude_deg": "45.38666915893555", + "elevation_ft": "679", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAR", + "municipality": "Petrovsk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Petrovsk_(air_base)" + }, + { + "id": "35035", + "ident": "RU-6088", + "type": "small_airport", + "name": "Mengon Air Base", + "latitude_deg": "50.03329849243164", + "longitude_deg": "136.3000030517578", + "elevation_ft": "164", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Elban", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mengon" + }, + { + "id": "35033", + "ident": "RU-6099", + "type": "closed", + "name": "Maysionvara Air Base", + "latitude_deg": "62.279998779296875", + "longitude_deg": "32.41669845581055", + "elevation_ft": "663", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KR", + "municipality": "Suojarvi", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maysionvara" + }, + { + "id": "35018", + "ident": "RU-6153", + "type": "closed", + "name": "Lenino Air Base", + "latitude_deg": "52.910248", + "longitude_deg": "156.879702", + "elevation_ft": "203", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Lenino", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lenino_(air_base)", + "keywords": "Paratunka, UPAT" + }, + { + "id": "35025", + "ident": "RU-6219", + "type": "small_airport", + "name": "Lovozero Airport", + "latitude_deg": "68.021697998", + "longitude_deg": "35", + "elevation_ft": "499", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Lovozero", + "scheduled_service": "no", + "gps_code": "ULML", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lovozero_(air_base)", + "keywords": "Аэропорт Ловозеро, УЛМЛ" + }, + { + "id": "35031", + "ident": "RU-6313", + "type": "closed", + "name": "Marienkhof Air Base", + "latitude_deg": "54.86500167849999", + "longitude_deg": "20.184999465900002", + "elevation_ft": "190", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KGD", + "municipality": "Pionersky", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marienkhof", + "keywords": "Dunayevka Air Base, Dunaevka Air Base, Аэродром Дунаевка" + }, + { + "id": "35048", + "ident": "RU-6542", + "type": "small_airport", + "name": "Orenburg Air Base", + "latitude_deg": "51.709057", + "longitude_deg": "55.020046", + "elevation_ft": "367", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-ORE", + "municipality": "Orenburg", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orenburg_(air_base)" + }, + { + "id": "34998", + "ident": "RU-6553", + "type": "closed", + "name": "Khada Bulak Air Base", + "latitude_deg": "50.599998474121094", + "longitude_deg": "116.38300323486328", + "elevation_ft": "2339", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Sherlovaya Gora", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khada_Bulak" + }, + { + "id": "35029", + "ident": "RU-6558", + "type": "medium_airport", + "name": "Lyambir Air Base", + "latitude_deg": "54.28499984741211", + "longitude_deg": "45.16830062866211", + "elevation_ft": "653", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MO", + "municipality": "Saransk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lyambir", + "keywords": "Ljambr, Ljambir, Лямбирь" + }, + { + "id": "35103", + "ident": "RU-6560", + "type": "medium_airport", + "name": "Ulan-Ude East Airport", + "latitude_deg": "51.849998474121094", + "longitude_deg": "107.73799896240234", + "elevation_ft": "1670", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Ulan Ude", + "scheduled_service": "no", + "gps_code": "XIUW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ulan-Ude_Vostochny_Airport", + "keywords": "Ulan-Ude Vostochny Airport, Аэропорт Улан-Удэ Восточный" + }, + { + "id": "35036", + "ident": "RU-6687", + "type": "medium_airport", + "name": "Michurinsk Air Base", + "latitude_deg": "52.91830062866211", + "longitude_deg": "40.3650016784668", + "elevation_ft": "538", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TAM", + "municipality": "Michurinsk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Michurinsk_(air_base)", + "keywords": "Michurinsk Northwest, Kozlov" + }, + { + "id": "34992", + "ident": "RU-6699", + "type": "closed", + "name": "Idritsa Air Base", + "latitude_deg": "56.34830093383789", + "longitude_deg": "28.893299102783203", + "elevation_ft": "443", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PSK", + "municipality": "Idritsa", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Idritsa" + }, + { + "id": "35072", + "ident": "RU-6878", + "type": "small_airport", + "name": "Savasleyka Air Base", + "latitude_deg": "55.439998626708984", + "longitude_deg": "42.310001373291016", + "elevation_ft": "335", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NIZ", + "municipality": "Vykska", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Savasleyka", + "keywords": "Savasleika, Savastleyka, Savostleyka, Murom" + }, + { + "id": "35043", + "ident": "RU-6960", + "type": "closed", + "name": "Nivenskoye Air Base", + "latitude_deg": "54.56169891357422", + "longitude_deg": "20.603300094604492", + "elevation_ft": "66", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KGD", + "municipality": "Kaliningrad", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nivenskoye" + }, + { + "id": "35032", + "ident": "RU-7218", + "type": "small_airport", + "name": "Matrosovo Air Base", + "latitude_deg": "49.40169906616211", + "longitude_deg": "142.88299560546875", + "elevation_ft": "335", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Leonidovo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Matrosovo" + }, + { + "id": "35007", + "ident": "RU-7444", + "type": "small_airport", + "name": "Koshka Yavr Air Base", + "latitude_deg": "69.251701", + "longitude_deg": "31.196698", + "elevation_ft": "495", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Zapolyarnyj", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Koshka_Yavr" + }, + { + "id": "35058", + "ident": "RU-7519", + "type": "closed", + "name": "Povorino Air Base", + "latitude_deg": "51.08988571166992", + "longitude_deg": "42.17531204223633", + "elevation_ft": "299", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VGG", + "municipality": "Povorino", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Povorino_(air_base)" + }, + { + "id": "35097", + "ident": "RU-7565", + "type": "closed", + "name": "Tiksi West Air Base", + "latitude_deg": "71.69329833984375", + "longitude_deg": "128.68299865722656", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Tiksi", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tiksi_West" + }, + { + "id": "35088", + "ident": "RU-7576", + "type": "medium_airport", + "name": "Step Air Base", + "latitude_deg": "51.016700744628906", + "longitude_deg": "115.43299865722656", + "elevation_ft": "2329", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Yasnogorsk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Step_(air_base)" + }, + { + "id": "34988", + "ident": "RU-7612", + "type": "closed", + "name": "Gorny Air Base", + "latitude_deg": "51.75", + "longitude_deg": "48.63330078125", + "elevation_ft": "476", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAR", + "municipality": "Gorny, Saratov Oblast", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gorny_(air_base)" + }, + { + "id": "35003", + "ident": "RU-7673", + "type": "closed", + "name": "Klimovo Air Base", + "latitude_deg": "52.34000015258789", + "longitude_deg": "32.16999816894531", + "elevation_ft": "594", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BRY", + "municipality": "Klimovo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Klimovo_(air_base)" + }, + { + "id": "35067", + "ident": "RU-7741", + "type": "small_airport", + "name": "Salka Airfield", + "latitude_deg": "57.9883003235", + "longitude_deg": "60.2350006104", + "elevation_ft": "886", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SVE", + "municipality": "Nizhny Tagil", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salka_Airport", + "keywords": "Аэродром Салка, ЬССН" + }, + { + "id": "35101", + "ident": "RU-7847", + "type": "medium_airport", + "name": "Ukkurey Air Base", + "latitude_deg": "52.33330154418945", + "longitude_deg": "116.83300018310547", + "elevation_ft": "1900", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Chernysevsk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ukkurey" + }, + { + "id": "35121", + "ident": "RU-7911", + "type": "medium_airport", + "name": "Yugorsk Sovetsky Air Base", + "latitude_deg": "61.2682991027832", + "longitude_deg": "63.138301849365234", + "elevation_ft": "374", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Yugorsk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yugorsk_Sovetsky" + }, + { + "id": "35106", + "ident": "RU-7978", + "type": "medium_airport", + "name": "Uprun Air Base", + "latitude_deg": "54.375", + "longitude_deg": "61.3532981873", + "elevation_ft": "774", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-CHE", + "municipality": "Uvelsky", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Uvelsky_(air_base)", + "keywords": "Uvelsky Air Base, Аэродром Упрун, ЬСЦУ" + }, + { + "id": "35111", + "ident": "RU-8226", + "type": "closed", + "name": "Vetrovoye Air Base", + "latitude_deg": "45.251701", + "longitude_deg": "148.311996", + "elevation_ft": "59", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Kurilsk", + "scheduled_service": "yes", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vetrovoye", + "keywords": "Ветровое, Shibekoro, Sopochnyy Southwest" + }, + { + "id": "35115", + "ident": "RU-8363", + "type": "medium_airport", + "name": "Voronezh Baltimor Air Base", + "latitude_deg": "51.62", + "longitude_deg": "39.14", + "elevation_ft": "502", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VOR", + "municipality": "Voronezh", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Voronezh_Malshevo", + "keywords": "Malshevo, Malyshevo, Voronezh Southwest, Аэродром Балтимор, ЬУОВ" + }, + { + "id": "35078", + "ident": "RU-8499", + "type": "medium_airport", + "name": "Sharomy Air Base", + "latitude_deg": "54.293787", + "longitude_deg": "158.15094", + "elevation_ft": "489", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Sharomy", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sharomy", + "keywords": "UYEL" + }, + { + "id": "34984", + "ident": "RU-8602", + "type": "medium_airport", + "name": "Engels Air Base", + "latitude_deg": "51.480499267578125", + "longitude_deg": "46.21500015258789", + "elevation_ft": "121", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAR", + "municipality": "Saratov", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Engels-2", + "keywords": "Аэродром Энгельс" + }, + { + "id": "35099", + "ident": "RU-8604", + "type": "small_airport", + "name": "Totskoye Air Base", + "latitude_deg": "52.501701355", + "longitude_deg": "52.779998779299994", + "elevation_ft": "295", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ORE", + "municipality": "Totskoye", + "scheduled_service": "no", + "local_code": "XWOT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Totskoye_(air_base)", + "keywords": "Тоцкое, ЬВОТ" + }, + { + "id": "34980", + "ident": "RU-8709", + "type": "medium_airport", + "name": "Dorokhovo Air Base", + "latitude_deg": "57.724998474121094", + "longitude_deg": "36.65169906616211", + "elevation_ft": "469", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TVE", + "municipality": "Bezhetsk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dorokhovo", + "keywords": "Bezhetsk, Bezhetsk, Dorokhov" + }, + { + "id": "35095", + "ident": "RU-8914", + "type": "closed", + "name": "Tambovka Air Base", + "latitude_deg": "50.1349983215332", + "longitude_deg": "128.072998046875", + "elevation_ft": "420", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Tambovka", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tambovka" + }, + { + "id": "35054", + "ident": "RU-8964", + "type": "medium_airport", + "name": "Beryozovka Air Base", + "latitude_deg": "65.0550003052", + "longitude_deg": "56.673301696799996", + "elevation_ft": "299", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KO", + "municipality": "Pechora", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pechora_Kamenka", + "keywords": "Berezovka Air Base, Kamenka Air Base, Аэродром Берёзовка, Аэродром Березовка, Аэродром Каменка" + }, + { + "id": "35119", + "ident": "RU-8974", + "type": "medium_airport", + "name": "Yaroslavl Levtsovo Air Base", + "latitude_deg": "57.729377", + "longitude_deg": "40.046008", + "elevation_ft": "331", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAR", + "municipality": "Yaroslavl", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yaroslavl_Levtsovo" + }, + { + "id": "35114", + "ident": "RU-9129", + "type": "medium_airport", + "name": "Vorkuta Sovetskiy Air Base", + "latitude_deg": "67.46330261230469", + "longitude_deg": "64.30670166015625", + "elevation_ft": "630", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KO", + "municipality": "Vorkuta", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vorkuta_Sovetskiy", + "keywords": "Vorkuta East" + }, + { + "id": "35008", + "ident": "RU-9241", + "type": "small_airport", + "name": "Krapivnya Airfield", + "latitude_deg": "57.076698303222656", + "longitude_deg": "33.388301849365234", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TVE", + "municipality": "Zdanovo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Krapivnya", + "keywords": "Аэродром Крапивня" + }, + { + "id": "34985", + "ident": "RU-9300", + "type": "closed", + "name": "Engozero Air Base", + "latitude_deg": "65.86669921875", + "longitude_deg": "33.93330001831055", + "elevation_ft": "335", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KR", + "municipality": "Louhi", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Engozero_(airport)" + }, + { + "id": "35010", + "ident": "RU-9345", + "type": "medium_airport", + "name": "Krechevitsy Air Base", + "latitude_deg": "58.625", + "longitude_deg": "31.385000228881836", + "elevation_ft": "85", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NGR", + "municipality": "Novgorod", + "scheduled_service": "no", + "gps_code": "ULLK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Krechevitsy_Airport", + "keywords": "Аэродром Кречевицы" + }, + { + "id": "35123", + "ident": "RU-9545", + "type": "medium_airport", + "name": "Zherdevka Air Base", + "latitude_deg": "51.83330154418945", + "longitude_deg": "41.54999923706055", + "elevation_ft": "489", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TAM", + "municipality": "Zherdevka", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zherdevka_(air_base)", + "keywords": "Zerdevka" + }, + { + "id": "35034", + "ident": "RU-9561", + "type": "closed", + "name": "Medyn-Aduyevo Air Base", + "latitude_deg": "55.003299713134766", + "longitude_deg": "35.994998931884766", + "elevation_ft": "636", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KLU", + "municipality": "Kaluga", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Medyn-Aduyevo" + }, + { + "id": "35091", + "ident": "RU-9587", + "type": "closed", + "name": "Sumsk Air Base", + "latitude_deg": "59.30500030517578", + "longitude_deg": "29.09670066833496", + "elevation_ft": "299", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Volosovo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sumsk_(air_base)" + }, + { + "id": "35050", + "ident": "RU-9754", + "type": "small_airport", + "name": "Ostrov Bolshevik Air Base", + "latitude_deg": "78.58499908447266", + "longitude_deg": "100.99500274658203", + "elevation_ft": "965", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Ostrov Bolshevik", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ostrov_Bolshevik" + }, + { + "id": "35066", + "ident": "RU-9937", + "type": "medium_airport", + "name": "Rzhev Air Base", + "latitude_deg": "56.2599983215332", + "longitude_deg": "34.40829849243164", + "elevation_ft": "636", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TVE", + "municipality": "Rzhev", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rzhev_(air_base)" + }, + { + "id": "35080", + "ident": "RU-9942", + "type": "medium_airport", + "name": "Shaykovka Air Base", + "latitude_deg": "54.22669982910156", + "longitude_deg": "34.371700286865234", + "elevation_ft": "666", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KLU", + "municipality": "Kirov", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shaykovka" + }, + { + "id": "35002", + "ident": "RU-9990", + "type": "small_airport", + "name": "Kirsanov Air Base", + "latitude_deg": "52.66669845581055", + "longitude_deg": "42.68330001831055", + "elevation_ft": "584", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TAM", + "municipality": "Kirsanov", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kirsanov_(air_base)" + }, + { + "id": "31838", + "ident": "RU-LNX", + "type": "small_airport", + "name": "Smolensk South Airport", + "latitude_deg": "54.745", + "longitude_deg": "32.065", + "elevation_ft": "820", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SMO", + "municipality": "Smolensk", + "scheduled_service": "no", + "gps_code": "UUBS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Smolensk_South_Airport", + "keywords": "Smolensk Yuzhny Airport, Аэропорт Смоленск Южный, УУБС" + }, + { + "id": "42994", + "ident": "RU-VUS", + "type": "small_airport", + "name": "Velikiy Ustyug Airport", + "latitude_deg": "60.788299560546875", + "longitude_deg": "46.2599983215332", + "elevation_ft": "331", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLG", + "municipality": "Velikiy Ustyug", + "scheduled_service": "no", + "gps_code": "ULWU", + "iata_code": "VUS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Velikiy_Ustyug_Airport", + "keywords": "Аэропорт Великий Устюг" + }, + { + "id": "307112", + "ident": "RUU", + "type": "small_airport", + "name": "Ruti Airport", + "latitude_deg": "-5.334444444440001", + "longitude_deg": "144.256666667", + "elevation_ft": "1710", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WHM", + "municipality": "Kawbenaberi", + "scheduled_service": "no", + "iata_code": "RUU", + "local_code": "RUTI" + }, + { + "id": "311046", + "ident": "RVC", + "type": "small_airport", + "name": "River Cess Airport and Heliport", + "latitude_deg": "5.472469", + "longitude_deg": "-9.58546", + "elevation_ft": "27", + "continent": "AF", + "iso_country": "LR", + "iso_region": "LR-RI", + "municipality": "River Cess", + "scheduled_service": "no", + "iata_code": "RVC" + }, + { + "id": "318086", + "ident": "RW-0001", + "type": "small_airport", + "name": "Gako Airport", + "latitude_deg": "-2.2308", + "longitude_deg": "30.1809", + "elevation_ft": "4770", + "continent": "AF", + "iso_country": "RW", + "iso_region": "RW-02", + "municipality": "Gako", + "scheduled_service": "no" + }, + { + "id": "342091", + "ident": "RW-0002", + "type": "closed", + "name": "Bugesera International Airport (under construction)", + "latitude_deg": "-2.1444", + "longitude_deg": "30.1835", + "elevation_ft": "4630", + "continent": "AF", + "iso_country": "RW", + "iso_region": "RW-02", + "municipality": "Rilima", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bugesera_International_Airport" + }, + { + "id": "24366", + "ident": "S00", + "type": "small_airport", + "name": "Opheim Airport", + "latitude_deg": "48.86669921875", + "longitude_deg": "-106.41699981689453", + "elevation_ft": "3264", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Opheim", + "scheduled_service": "no", + "gps_code": "S00", + "local_code": "S00" + }, + { + "id": "24367", + "ident": "S04", + "type": "small_airport", + "name": "Condon USFS Airport", + "latitude_deg": "47.538799", + "longitude_deg": "-113.720001", + "elevation_ft": "3686", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Condon", + "scheduled_service": "no", + "local_code": "S04" + }, + { + "id": "24368", + "ident": "S09", + "type": "small_airport", + "name": "Hot Springs Airport", + "latitude_deg": "47.614148", + "longitude_deg": "-114.612679", + "elevation_ft": "2763", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Hot Springs", + "scheduled_service": "no", + "gps_code": "KS09", + "local_code": "S09" + }, + { + "id": "24369", + "ident": "S16", + "type": "small_airport", + "name": "Copalis State Airport", + "latitude_deg": "47.124802", + "longitude_deg": "-124.184998", + "elevation_ft": "1", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Copalis Crossing", + "scheduled_service": "no", + "local_code": "S16", + "wikipedia_link": "https://en.wikipedia.org/wiki/Copalis_Beach_State_Airport" + }, + { + "id": "24370", + "ident": "S18", + "type": "small_airport", + "name": "Forks Airport", + "latitude_deg": "47.937698", + "longitude_deg": "-124.396004", + "elevation_ft": "299", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Forks", + "scheduled_service": "no", + "local_code": "S18" + }, + { + "id": "20999", + "ident": "S28", + "type": "small_airport", + "name": "International Peace Garden Airport", + "latitude_deg": "48.997799", + "longitude_deg": "-100.042999", + "elevation_ft": "2314", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Dunseith", + "scheduled_service": "no", + "gps_code": "S28", + "local_code": "S28", + "wikipedia_link": "https://en.wikipedia.org/wiki/International_Peace_Garden_Airport" + }, + { + "id": "24372", + "ident": "S30", + "type": "small_airport", + "name": "Lebanon State Airport", + "latitude_deg": "44.52980041503906", + "longitude_deg": "-122.93000030517578", + "elevation_ft": "344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "S30", + "local_code": "S30", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lebanon_State_Airport" + }, + { + "id": "24373", + "ident": "S31", + "type": "small_airport", + "name": "Lopez Island Airport", + "latitude_deg": "48.4838981628418", + "longitude_deg": "-122.93800354003906", + "elevation_ft": "209", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Lopez", + "scheduled_service": "yes", + "gps_code": "S31", + "iata_code": "LPS", + "local_code": "S31", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lopez_Island_Airport" + }, + { + "id": "24374", + "ident": "S35", + "type": "small_airport", + "name": "Okanogan Legion Airport", + "latitude_deg": "48.361900329589844", + "longitude_deg": "-119.56800079345703", + "elevation_ft": "1042", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Okanogan", + "scheduled_service": "no", + "gps_code": "S35", + "local_code": "S35" + }, + { + "id": "24375", + "ident": "S37", + "type": "small_airport", + "name": "Smoketown Airport", + "latitude_deg": "40.041605", + "longitude_deg": "-76.201386", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Smoketown", + "scheduled_service": "no", + "gps_code": "KS37", + "local_code": "S37", + "wikipedia_link": "https://en.wikipedia.org/wiki/Smoketown_Airport" + }, + { + "id": "24376", + "ident": "S43", + "type": "small_airport", + "name": "Harvey Field", + "latitude_deg": "47.90819931", + "longitude_deg": "-122.1050034", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Snohomish", + "scheduled_service": "no", + "gps_code": "S43", + "local_code": "S43" + }, + { + "id": "24377", + "ident": "S44", + "type": "closed", + "name": "Spanaway Airport", + "latitude_deg": "47.08663", + "longitude_deg": "-122.431537", + "elevation_ft": "373", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Spanaway", + "scheduled_service": "no", + "keywords": "S44" + }, + { + "id": "24378", + "ident": "S49", + "type": "small_airport", + "name": "Miller Memorial Airpark", + "latitude_deg": "43.96379852294922", + "longitude_deg": "-117.25900268554688", + "elevation_ft": "2249", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Vale", + "scheduled_service": "no", + "gps_code": "S49", + "local_code": "S49", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miller_Memorial_Airpark" + }, + { + "id": "24379", + "ident": "S51", + "type": "small_airport", + "name": "Andy Mc Beth Airport", + "latitude_deg": "41.51210021972656", + "longitude_deg": "-123.99600219726562", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Klamath Glen", + "scheduled_service": "no", + "gps_code": "S51", + "local_code": "S51" + }, + { + "id": "24380", + "ident": "S60", + "type": "seaplane_base", + "name": "Kenmore Air Harbor Inc Seaplane Base", + "latitude_deg": "47.7547988892", + "longitude_deg": "-122.259002686", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Kenmore", + "scheduled_service": "yes", + "gps_code": "S60", + "iata_code": "KEH", + "local_code": "S60", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kenmore_Air_Harbor" + }, + { + "id": "24381", + "ident": "S63", + "type": "closed", + "name": "Skyharbor Airport", + "latitude_deg": "32.366841", + "longitude_deg": "-87.105746", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Marion Junction", + "scheduled_service": "no", + "keywords": "S63, Selma" + }, + { + "id": "24382", + "ident": "S66", + "type": "small_airport", + "name": "Homedale Municipal Airport", + "latitude_deg": "43.614898681640625", + "longitude_deg": "-116.9219970703125", + "elevation_ft": "2210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Homedale", + "scheduled_service": "no", + "gps_code": "S66", + "local_code": "S66" + }, + { + "id": "24383", + "ident": "S68", + "type": "small_airport", + "name": "Orofino Municipal Airport", + "latitude_deg": "46.49129867553711", + "longitude_deg": "-116.2770004272461", + "elevation_ft": "1005", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Orofino", + "scheduled_service": "no", + "gps_code": "S68", + "local_code": "S68" + }, + { + "id": "24384", + "ident": "S74", + "type": "seaplane_base", + "name": "Lost Isle Seaplane Base", + "latitude_deg": "38.00410079956055", + "longitude_deg": "-121.45700073242188", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stockton", + "scheduled_service": "no", + "gps_code": "S74", + "local_code": "S74" + }, + { + "id": "24385", + "ident": "S76", + "type": "seaplane_base", + "name": "Brooks Seaplane Base", + "latitude_deg": "47.67210006713867", + "longitude_deg": "-116.78600311279297", + "elevation_ft": "2125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Coeur D'Alene", + "scheduled_service": "no", + "gps_code": "S76", + "local_code": "S76" + }, + { + "id": "24386", + "ident": "S77", + "type": "small_airport", + "name": "Magee Airport", + "latitude_deg": "47.84146", + "longitude_deg": "-116.25222", + "elevation_ft": "3002", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cataldo", + "scheduled_service": "no", + "gps_code": "KS77", + "local_code": "S77" + }, + { + "id": "24387", + "ident": "S79", + "type": "small_airport", + "name": "Green Sea Airport", + "latitude_deg": "34.18560028076172", + "longitude_deg": "-79.02059936523438", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Green Sea", + "scheduled_service": "no", + "gps_code": "S79", + "local_code": "S79" + }, + { + "id": "24388", + "ident": "S81", + "type": "small_airport", + "name": "Indian Creek US Forest Service Airport", + "latitude_deg": "44.7612991333", + "longitude_deg": "-115.107002258", + "elevation_ft": "4701", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Indian Creek", + "scheduled_service": "no", + "gps_code": "S81", + "local_code": "S81" + }, + { + "id": "24389", + "ident": "S82", + "type": "small_airport", + "name": "Kooskia Municipal Airport", + "latitude_deg": "46.1327018737793", + "longitude_deg": "-115.97899627685547", + "elevation_ft": "1263", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Kooskia", + "scheduled_service": "no", + "gps_code": "S82", + "local_code": "S82" + }, + { + "id": "24390", + "ident": "S86", + "type": "small_airport", + "name": "Sky Harbor Airport", + "latitude_deg": "47.87070083618164", + "longitude_deg": "-121.79199981689453", + "elevation_ft": "282", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Sultan", + "scheduled_service": "no", + "gps_code": "S86", + "local_code": "S86" + }, + { + "id": "24391", + "ident": "S88", + "type": "small_airport", + "name": "Skykomish State Airport", + "latitude_deg": "47.710899353027344", + "longitude_deg": "-121.33899688720703", + "elevation_ft": "1002", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Skykomish", + "scheduled_service": "no", + "gps_code": "S88", + "local_code": "S88" + }, + { + "id": "24392", + "ident": "S89", + "type": "small_airport", + "name": "Craigmont Municipal Airport", + "latitude_deg": "46.247100830078125", + "longitude_deg": "-116.4800033569336", + "elevation_ft": "3805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Craigmont", + "scheduled_service": "no", + "gps_code": "S89", + "local_code": "S89" + }, + { + "id": "24393", + "ident": "S90", + "type": "small_airport", + "name": "Elk City Airport", + "latitude_deg": "45.820702", + "longitude_deg": "-115.439332", + "elevation_ft": "4097", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Elk City", + "scheduled_service": "no", + "local_code": "S90" + }, + { + "id": "24394", + "ident": "S92", + "type": "small_airport", + "name": "Fish Lake US Forest Service Airport", + "latitude_deg": "46.32998", + "longitude_deg": "-115.063033", + "elevation_ft": "5646", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Kooskia", + "scheduled_service": "no", + "gps_code": "KS92", + "local_code": "S92" + }, + { + "id": "24395", + "ident": "S93", + "type": "small_airport", + "name": "Cle Elum Municipal Airport", + "latitude_deg": "47.19430160522461", + "longitude_deg": "-120.88300323486328", + "elevation_ft": "1944", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Cle Elum", + "scheduled_service": "no", + "gps_code": "S93", + "local_code": "S93" + }, + { + "id": "24396", + "ident": "S96", + "type": "closed", + "name": "Lake Pend Oreille Seaplane Base", + "latitude_deg": "48.216599", + "longitude_deg": "-116.361001", + "elevation_ft": "2062", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Glengary", + "scheduled_service": "no", + "keywords": "S96" + }, + { + "id": "42262", + "ident": "SA-0001", + "type": "small_airport", + "name": "Al Bir Highway Strip", + "latitude_deg": "28.88599967956543", + "longitude_deg": "36.15883255004883", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-08", + "scheduled_service": "no" + }, + { + "id": "42264", + "ident": "SA-0002", + "type": "small_airport", + "name": "Al Wariah SE Highway Strip", + "latitude_deg": "27.645834", + "longitude_deg": "47.993057", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Al Olya", + "scheduled_service": "no" + }, + { + "id": "42265", + "ident": "SA-0003", + "type": "small_airport", + "name": "Qalibah Highway Strip", + "latitude_deg": "27.975000381469727", + "longitude_deg": "37.951942443847656", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-07", + "scheduled_service": "no" + }, + { + "id": "42266", + "ident": "SA-0004", + "type": "closed", + "name": "Ras Saffaniyah Airport", + "latitude_deg": "27.99361", + "longitude_deg": "48.775276", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "As Saffaniyah", + "scheduled_service": "no" + }, + { + "id": "44981", + "ident": "SA-0005", + "type": "small_airport", + "name": "Al Hasa Airport", + "latitude_deg": "25.406473", + "longitude_deg": "49.484428", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Al Hasa", + "scheduled_service": "no" + }, + { + "id": "44982", + "ident": "SA-0006", + "type": "small_airport", + "name": "Ugtah Highway Strip", + "latitude_deg": "24.794468", + "longitude_deg": "50.742459", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Salwa", + "scheduled_service": "no" + }, + { + "id": "44985", + "ident": "SA-0007", + "type": "small_airport", + "name": "Uwayqilah Airport", + "latitude_deg": "30.346972527299997", + "longitude_deg": "42.2126054764", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-08", + "scheduled_service": "no" + }, + { + "id": "317969", + "ident": "SA-0008", + "type": "closed", + "name": "Kharmiyah Airstrip", + "latitude_deg": "28.1325", + "longitude_deg": "45.7518", + "elevation_ft": "1290", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Ath Thybiyah", + "scheduled_service": "no" + }, + { + "id": "340207", + "ident": "SA-0009", + "type": "heliport", + "name": "Farasan Hospital Helipad", + "latitude_deg": "16.69552", + "longitude_deg": "42.11971", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-09", + "municipality": "Farasan", + "scheduled_service": "no" + }, + { + "id": "326442", + "ident": "SA-0010", + "type": "small_airport", + "name": "Khurais Airport", + "latitude_deg": "25.26533", + "longitude_deg": "48.178333", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Khurais", + "scheduled_service": "no", + "gps_code": "OEKN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khurais_Airport" + }, + { + "id": "340208", + "ident": "SA-0011", + "type": "heliport", + "name": "King Fahd General Hospital Helipad", + "latitude_deg": "16.92361", + "longitude_deg": "42.73558", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-09", + "municipality": "Jizan", + "scheduled_service": "no" + }, + { + "id": "340209", + "ident": "SA-0012", + "type": "heliport", + "name": "King Khalid University Hospital Helipad", + "latitude_deg": "18.07685", + "longitude_deg": "42.74369", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-14", + "municipality": "Abha", + "scheduled_service": "no" + }, + { + "id": "340210", + "ident": "SA-0013", + "type": "heliport", + "name": "Abha Central Hospital Helipad", + "latitude_deg": "18.20001", + "longitude_deg": "42.52616", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-14", + "municipality": "Abha", + "scheduled_service": "no" + }, + { + "id": "340211", + "ident": "SA-0014", + "type": "small_airport", + "name": "Wadi Al Asalah Airfield", + "latitude_deg": "28.13516", + "longitude_deg": "34.92503", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-07", + "municipality": "Gayal", + "scheduled_service": "no" + }, + { + "id": "340566", + "ident": "SA-0015", + "type": "heliport", + "name": "KJO Hospital Heliport", + "latitude_deg": "28.419196", + "longitude_deg": "48.512217", + "elevation_ft": "43", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Khafji", + "scheduled_service": "no" + }, + { + "id": "341961", + "ident": "SA-0016", + "type": "heliport", + "name": "Arafat General Hospital Heliport", + "latitude_deg": "21.3508", + "longitude_deg": "39.9826", + "elevation_ft": "1024", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-02", + "municipality": "Mecca", + "scheduled_service": "no" + }, + { + "id": "341962", + "ident": "SA-0017", + "type": "heliport", + "name": "Taif Desert Heliport", + "latitude_deg": "21.415303", + "longitude_deg": "40.655489", + "elevation_ft": "4685", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-02", + "municipality": "Ta'if", + "scheduled_service": "no" + }, + { + "id": "341963", + "ident": "SA-0018", + "type": "heliport", + "name": "King Abdulaziz Hospital Helipad", + "latitude_deg": "21.2697", + "longitude_deg": "40.3719", + "elevation_ft": "5670", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-02", + "municipality": "Ta'if", + "scheduled_service": "no" + }, + { + "id": "341964", + "ident": "SA-0019", + "type": "heliport", + "name": "King Fahd Sport City Helipad", + "latitude_deg": "21.4368", + "longitude_deg": "40.4774", + "elevation_ft": "5016", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-02", + "municipality": "Al Hawiyah", + "scheduled_service": "no" + }, + { + "id": "348366", + "ident": "SA-0020", + "type": "heliport", + "name": "Khafji General Hospital Heliport", + "latitude_deg": "28.42003", + "longitude_deg": "48.47279", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Khafji", + "scheduled_service": "no" + }, + { + "id": "348367", + "ident": "SA-0021", + "type": "heliport", + "name": "Khafji Harbor Heliport", + "latitude_deg": "28.41919", + "longitude_deg": "48.52471", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Khafji", + "scheduled_service": "no" + }, + { + "id": "348368", + "ident": "SA-0022", + "type": "heliport", + "name": "Al Khafji Corniche Heliport", + "latitude_deg": "28.47197", + "longitude_deg": "48.49698", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Khafji", + "scheduled_service": "no" + }, + { + "id": "349432", + "ident": "SA-0023", + "type": "small_airport", + "name": "Hawtah Kentz Airport", + "latitude_deg": "22.99304", + "longitude_deg": "46.92114", + "elevation_ft": "2113", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Hawtah", + "scheduled_service": "no" + }, + { + "id": "349433", + "ident": "SA-0024", + "type": "heliport", + "name": "Al Aflaj Central Hospital", + "latitude_deg": "22.29485", + "longitude_deg": "46.72198", + "elevation_ft": "1778", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Layla", + "scheduled_service": "no" + }, + { + "id": "351583", + "ident": "SA-0025", + "type": "heliport", + "name": "As Saffaniyah Aramco Heliport", + "latitude_deg": "28.00016", + "longitude_deg": "48.77174", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "As Saffaniyah", + "scheduled_service": "no" + }, + { + "id": "351584", + "ident": "SA-0026", + "type": "heliport", + "name": "Tanajib Aramco Admin Heliport", + "latitude_deg": "27.88555", + "longitude_deg": "48.81537", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "As Saffaniyah", + "scheduled_service": "no" + }, + { + "id": "351585", + "ident": "SA-0027", + "type": "heliport", + "name": "Tanajib Aramco Gas Plant Heliport", + "latitude_deg": "27.81722", + "longitude_deg": "48.86841", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "As Saffaniyah", + "scheduled_service": "no" + }, + { + "id": "351586", + "ident": "SA-0028", + "type": "heliport", + "name": "Tanajib Aramco Marine Port Heliport", + "latitude_deg": "27.76995", + "longitude_deg": "48.87706", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "As Saffaniyah", + "scheduled_service": "no" + }, + { + "id": "351600", + "ident": "SA-0029", + "type": "heliport", + "name": "Manifa Aramco Heliport", + "latitude_deg": "27.60269", + "longitude_deg": "48.93459", + "elevation_ft": "69", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Manifa", + "scheduled_service": "no" + }, + { + "id": "351601", + "ident": "SA-0030", + "type": "heliport", + "name": "Prince Sultan College Heliport", + "latitude_deg": "26.32642", + "longitude_deg": "50.01613", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Dhahran", + "scheduled_service": "no" + }, + { + "id": "351602", + "ident": "SA-0031", + "type": "heliport", + "name": "King Fahd Military Medical City Heliport", + "latitude_deg": "26.31996", + "longitude_deg": "50.0217", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Dhahran", + "scheduled_service": "no" + }, + { + "id": "351603", + "ident": "SA-0032", + "type": "heliport", + "name": "Johns Hopkins Aramco Healthcare Heliport", + "latitude_deg": "26.70702", + "longitude_deg": "50.08071", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "Ras Tanura", + "scheduled_service": "no" + }, + { + "id": "351957", + "ident": "SA-0033", + "type": "heliport", + "name": "Al Kharkhir Heliport", + "latitude_deg": "18.89943", + "longitude_deg": "51.10235", + "elevation_ft": "912", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-10", + "municipality": "Al Kharkhir", + "scheduled_service": "no" + }, + { + "id": "351958", + "ident": "SA-0034", + "type": "heliport", + "name": "Sharurah East Heliport", + "latitude_deg": "18.08549", + "longitude_deg": "47.96835", + "elevation_ft": "1857", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-10", + "municipality": "Sharurah", + "scheduled_service": "no" + }, + { + "id": "351967", + "ident": "SA-0035", + "type": "heliport", + "name": "Armed Forces Hospital Heliport", + "latitude_deg": "21.39866", + "longitude_deg": "39.89968", + "elevation_ft": "1073", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-02", + "municipality": "Mecca", + "scheduled_service": "no" + }, + { + "id": "351968", + "ident": "SA-0036", + "type": "heliport", + "name": "Mecca Armed Forces Medical Center Heliport", + "latitude_deg": "21.38316", + "longitude_deg": "39.88647", + "elevation_ft": "955", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-02", + "municipality": "Mecca", + "scheduled_service": "no" + }, + { + "id": "351969", + "ident": "SA-0037", + "type": "heliport", + "name": "King Abdullah Medical City Heliport", + "latitude_deg": "21.38324", + "longitude_deg": "39.87932", + "elevation_ft": "929", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-02", + "municipality": "Mecca", + "scheduled_service": "no" + }, + { + "id": "351970", + "ident": "SA-0038", + "type": "heliport", + "name": "Al Noor Hospital Heliport", + "latitude_deg": "21.38553", + "longitude_deg": "39.85867", + "elevation_ft": "984", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-02", + "municipality": "Mecca", + "scheduled_service": "no" + }, + { + "id": "351971", + "ident": "SA-0039", + "type": "heliport", + "name": "Heraa General Hospital Heliport", + "latitude_deg": "21.48521", + "longitude_deg": "39.78963", + "elevation_ft": "906", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-02", + "municipality": "Mecca", + "scheduled_service": "no" + }, + { + "id": "351972", + "ident": "SA-0040", + "type": "heliport", + "name": "King Faisal Hospital Heliport", + "latitude_deg": "21.43409", + "longitude_deg": "39.85394", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-02", + "municipality": "Mecca", + "scheduled_service": "no" + }, + { + "id": "351973", + "ident": "SA-0041", + "type": "heliport", + "name": "Abraj al-Bait East Tower Heliport", + "latitude_deg": "21.418397", + "longitude_deg": "39.82699", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-02", + "municipality": "Mecca", + "scheduled_service": "no" + }, + { + "id": "351974", + "ident": "SA-0042", + "type": "heliport", + "name": "Abraj al-Bait West Tower Heliport", + "latitude_deg": "21.418441", + "longitude_deg": "39.824154", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-02", + "municipality": "Mecca", + "scheduled_service": "no" + }, + { + "id": "351975", + "ident": "SA-0043", + "type": "heliport", + "name": "InterContinental Dar al-Tawhid Makkah Heliport", + "latitude_deg": "21.421017", + "longitude_deg": "39.822752", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-02", + "municipality": "Mecca", + "scheduled_service": "no" + }, + { + "id": "352053", + "ident": "SA-0044", + "type": "heliport", + "name": "Haql General Hospital Heliport", + "latitude_deg": "29.29476", + "longitude_deg": "34.93807", + "elevation_ft": "146", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-08", + "municipality": "Haql", + "scheduled_service": "no" + }, + { + "id": "354414", + "ident": "SA-0045", + "type": "heliport", + "name": "Neom Golfing Helipads (2x)", + "latitude_deg": "28.003259", + "longitude_deg": "35.185497", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-07", + "municipality": "Neom", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/en:Neom" + }, + { + "id": "354415", + "ident": "SA-0046", + "type": "heliport", + "name": "Neom staff helipads (8x)", + "latitude_deg": "28.003552", + "longitude_deg": "35.192857", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-07", + "municipality": "Neom", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/en:Neom" + }, + { + "id": "354416", + "ident": "SA-0047", + "type": "heliport", + "name": "Prince Muhammad bin Nasser Hospital Helipad", + "latitude_deg": "16.994556", + "longitude_deg": "42.620135", + "elevation_ft": "85", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-09", + "scheduled_service": "no" + }, + { + "id": "354417", + "ident": "SA-0048", + "type": "heliport", + "name": "Governmental Aid Helipad", + "latitude_deg": "17.009653", + "longitude_deg": "42.62852", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-09", + "municipality": "Jizan", + "scheduled_service": "no" + }, + { + "id": "354420", + "ident": "SA-0049", + "type": "closed", + "name": "Jazan King Abdullah Bin Abdulaziz Airport", + "latitude_deg": "17.070324", + "longitude_deg": "42.49958", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-09", + "municipality": "Jizan", + "scheduled_service": "no" + }, + { + "id": "354424", + "ident": "SA-0050", + "type": "heliport", + "name": "Coastal helipad", + "latitude_deg": "16.669824", + "longitude_deg": "42.71177", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-09", + "scheduled_service": "no" + }, + { + "id": "354425", + "ident": "SA-0051", + "type": "heliport", + "name": "Riyah Equestrian Club Helipad (2x)", + "latitude_deg": "24.982528", + "longitude_deg": "46.782194", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no" + }, + { + "id": "354426", + "ident": "SA-0052", + "type": "heliport", + "name": "Residential Helipad", + "latitude_deg": "24.988217", + "longitude_deg": "46.760479", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no" + }, + { + "id": "354437", + "ident": "SA-0053", + "type": "heliport", + "name": "National Guard Helipad (38x)", + "latitude_deg": "24.477911", + "longitude_deg": "46.570712", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no" + }, + { + "id": "354442", + "ident": "SA-0054", + "type": "heliport", + "name": "National Guard Residential Helipad", + "latitude_deg": "24.476164", + "longitude_deg": "46.597846", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no" + }, + { + "id": "354443", + "ident": "SA-0055", + "type": "heliport", + "name": "Military Helipad", + "latitude_deg": "24.418148", + "longitude_deg": "46.871238", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no" + }, + { + "id": "354444", + "ident": "SA-0056", + "type": "heliport", + "name": "SANG Airbase Helipads (4x)", + "latitude_deg": "24.626854", + "longitude_deg": "46.920248", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no" + }, + { + "id": "354445", + "ident": "SA-0057", + "type": "small_airport", + "name": "SANG Airbase", + "latitude_deg": "24.620335", + "longitude_deg": "46.918402", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saudi_Arabian_National_Guard" + }, + { + "id": "354447", + "ident": "SA-0058", + "type": "small_airport", + "name": "Military Airport", + "latitude_deg": "24.665125", + "longitude_deg": "46.924925", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no" + }, + { + "id": "354448", + "ident": "SA-0059", + "type": "heliport", + "name": "King Fahad Hospital Helipad", + "latitude_deg": "24.7503", + "longitude_deg": "46.854334", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no" + }, + { + "id": "354449", + "ident": "SA-0060", + "type": "heliport", + "name": "Princess Nora bint Abdulrahman University Helipad", + "latitude_deg": "24.8368", + "longitude_deg": "46.72436", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no" + }, + { + "id": "354450", + "ident": "SA-0061", + "type": "heliport", + "name": "KAPSARC Helipad", + "latitude_deg": "24.874737", + "longitude_deg": "46.724237", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no" + }, + { + "id": "354451", + "ident": "SA-0062", + "type": "heliport", + "name": "Military Helipad", + "latitude_deg": "24.898475", + "longitude_deg": "46.504371", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no" + }, + { + "id": "354459", + "ident": "SA-0063", + "type": "heliport", + "name": "Prison Helipads (2x)", + "latitude_deg": "24.884062", + "longitude_deg": "46.91351", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no" + }, + { + "id": "354460", + "ident": "SA-0064", + "type": "heliport", + "name": "Military Helipad", + "latitude_deg": "24.890174", + "longitude_deg": "46.932049", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no" + }, + { + "id": "354461", + "ident": "SA-0065", + "type": "heliport", + "name": "Military Helipad", + "latitude_deg": "24.870985", + "longitude_deg": "46.885732", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no" + }, + { + "id": "354523", + "ident": "SA-0066", + "type": "heliport", + "name": "Bosporus Hotel", + "latitude_deg": "24.465217", + "longitude_deg": "39.602977", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-03", + "municipality": "Medinah", + "scheduled_service": "no" + }, + { + "id": "354524", + "ident": "SA-0067", + "type": "heliport", + "name": "Military Helipad SSSP7", + "latitude_deg": "24.720833", + "longitude_deg": "39.331076", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-03", + "scheduled_service": "no" + }, + { + "id": "354603", + "ident": "SA-0068", + "type": "heliport", + "name": "University Helipads (2x)", + "latitude_deg": "24.790105", + "longitude_deg": "46.849737", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no" + }, + { + "id": "354604", + "ident": "SA-0069", + "type": "heliport", + "name": "Stadium Helipad", + "latitude_deg": "24.788741", + "longitude_deg": "46.836069", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no" + }, + { + "id": "354613", + "ident": "SA-0070", + "type": "heliport", + "name": "Military Helipad", + "latitude_deg": "24.95615", + "longitude_deg": "46.944945", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no" + }, + { + "id": "354614", + "ident": "SA-0071", + "type": "heliport", + "name": "Military Helipad", + "latitude_deg": "24.97324", + "longitude_deg": "46.890727", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no" + }, + { + "id": "354616", + "ident": "SA-0072", + "type": "heliport", + "name": "Helipad (2x)", + "latitude_deg": "24.913608", + "longitude_deg": "46.84021", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no" + }, + { + "id": "354617", + "ident": "SA-0073", + "type": "heliport", + "name": "Private Helipad", + "latitude_deg": "25.060206", + "longitude_deg": "46.682877", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no" + }, + { + "id": "354633", + "ident": "SA-0074", + "type": "heliport", + "name": "Private Helipad (2x)", + "latitude_deg": "25.248985", + "longitude_deg": "46.389427", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "scheduled_service": "no" + }, + { + "id": "354638", + "ident": "SA-0075", + "type": "heliport", + "name": "Prison Helipads (2x)", + "latitude_deg": "24.449513", + "longitude_deg": "46.811028", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "municipality": "Riyadh", + "scheduled_service": "no" + }, + { + "id": "354664", + "ident": "SA-0076", + "type": "small_airport", + "name": "Al-Watah Runway", + "latitude_deg": "24.244617", + "longitude_deg": "44.705515", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "scheduled_service": "no" + }, + { + "id": "354666", + "ident": "SA-0077", + "type": "closed", + "name": "Sabt Alalayah Airstrip", + "latitude_deg": "19.67209", + "longitude_deg": "41.981796", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-14", + "municipality": "Sabt Alalayah", + "scheduled_service": "no" + }, + { + "id": "354669", + "ident": "SA-0078", + "type": "small_airport", + "name": "Runway near industry", + "latitude_deg": "24.602309", + "longitude_deg": "44.108562", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-01", + "scheduled_service": "no" + }, + { + "id": "354681", + "ident": "SA-0079", + "type": "heliport", + "name": "Military Helipads (3x)", + "latitude_deg": "26.315632", + "longitude_deg": "43.759103", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-05", + "municipality": "Al Mulayda", + "scheduled_service": "no" + }, + { + "id": "354698", + "ident": "SA-0080", + "type": "heliport", + "name": "Private Helipad", + "latitude_deg": "25.991176", + "longitude_deg": "43.730317", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-05", + "scheduled_service": "no" + }, + { + "id": "356016", + "ident": "SA-0081", + "type": "closed", + "name": "Al Batin Airport", + "latitude_deg": "27.954643", + "longitude_deg": "45.557256", + "elevation_ft": "1340", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-04", + "municipality": "King Khalid Military City", + "scheduled_service": "no" + }, + { + "id": "13", + "ident": "SA01", + "type": "small_airport", + "name": "Cachi Airport", + "latitude_deg": "-25.1049995422", + "longitude_deg": "-66.15720367429999", + "elevation_ft": "8232", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Cachi", + "scheduled_service": "no", + "gps_code": "SA01", + "local_code": "CCS", + "keywords": "SA01" + }, + { + "id": "14", + "ident": "SA02", + "type": "small_airport", + "name": "Cafayate Airport", + "latitude_deg": "-26.056100845299998", + "longitude_deg": "-65.9368972778", + "elevation_ft": "5375", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Cafayate", + "scheduled_service": "no", + "gps_code": "SA02", + "local_code": "CAF", + "keywords": "SA02" + }, + { + "id": "15", + "ident": "SA03", + "type": "small_airport", + "name": "Villa Minetti Airport", + "latitude_deg": "-28.6201", + "longitude_deg": "-61.6038", + "elevation_ft": "246", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Villa Minetti", + "scheduled_service": "no", + "gps_code": "SA03", + "local_code": "MIN", + "keywords": "SA03" + }, + { + "id": "16", + "ident": "SA04", + "type": "small_airport", + "name": "Isla Martin Garcia Airport", + "latitude_deg": "-34.1821", + "longitude_deg": "-58.2469", + "elevation_ft": "6", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Isla Martin Garcia", + "scheduled_service": "no", + "gps_code": "SAAK", + "local_code": "MGI", + "keywords": "SAAK" + }, + { + "id": "17", + "ident": "SA05", + "type": "small_airport", + "name": "Bell Ville Airport", + "latitude_deg": "-32.6599", + "longitude_deg": "-62.702", + "elevation_ft": "429", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Bell Ville", + "scheduled_service": "no", + "gps_code": "SA05", + "local_code": "BEL", + "keywords": "SA05" + }, + { + "id": "18", + "ident": "SA06", + "type": "small_airport", + "name": "Santa Rita Airport", + "latitude_deg": "-35.8283", + "longitude_deg": "-60.1467", + "elevation_ft": "177", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Saladillo", + "scheduled_service": "no", + "gps_code": "SA06", + "local_code": "SSR", + "keywords": "SA06" + }, + { + "id": "19", + "ident": "SA07", + "type": "small_airport", + "name": "El Porton Airport", + "latitude_deg": "-37.194999694799996", + "longitude_deg": "-69.6094970703", + "elevation_ft": "2853", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Buta Ranquil", + "scheduled_service": "no", + "gps_code": "SA07", + "local_code": "BRQ", + "keywords": "SA07" + }, + { + "id": "20", + "ident": "SA10", + "type": "small_airport", + "name": "Estancia Don Panos Airport", + "latitude_deg": "-26.2959", + "longitude_deg": "-59.5353", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-H", + "municipality": "Presidencia Roca", + "scheduled_service": "yes", + "gps_code": "SA10", + "local_code": "PDP", + "keywords": "SA10" + }, + { + "id": "21", + "ident": "SA11", + "type": "small_airport", + "name": "Campo Arenal Airport", + "latitude_deg": "-27.0722999573", + "longitude_deg": "-66.5860977173", + "elevation_ft": "7622", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-K", + "municipality": "Campo Arenal", + "scheduled_service": "no", + "gps_code": "SA11", + "local_code": "CAL", + "keywords": "SA11" + }, + { + "id": "22", + "ident": "SA12", + "type": "small_airport", + "name": "Quemu Quemu Airport", + "latitude_deg": "-36.0587", + "longitude_deg": "-63.6313", + "elevation_ft": "396", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Quemu Quemu", + "scheduled_service": "no", + "gps_code": "SA12", + "local_code": "MUQ", + "keywords": "SA12" + }, + { + "id": "23", + "ident": "SA13", + "type": "small_airport", + "name": "Estancia La Estrella Airport", + "latitude_deg": "-37.559399", + "longitude_deg": "-58.666", + "elevation_ft": "456", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Tandil", + "scheduled_service": "no", + "gps_code": "SA13", + "local_code": "BLE", + "keywords": "SA13, SA2P, Balcarce Estancia La Estrella" + }, + { + "id": "24", + "ident": "SA14", + "type": "small_airport", + "name": "Miramar Airport", + "latitude_deg": "-38.2271", + "longitude_deg": "-57.8697", + "elevation_ft": "42", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Miramar", + "scheduled_service": "no", + "gps_code": "SAEM", + "iata_code": "MJR", + "local_code": "IRA", + "keywords": "SA14" + }, + { + "id": "35329", + "ident": "SA15", + "type": "small_airport", + "name": "Lago Fagnano North Airport", + "latitude_deg": "-54.499699", + "longitude_deg": "-67.173103", + "elevation_ft": "600", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Toluhin", + "scheduled_service": "no", + "gps_code": "SA15", + "local_code": "THN", + "keywords": "SA15, Kaiken" + }, + { + "id": "25", + "ident": "SA16", + "type": "small_airport", + "name": "La Puntilla Airport", + "latitude_deg": "-32.962799", + "longitude_deg": "-68.873703", + "elevation_ft": "3091", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "La Puntilla", + "scheduled_service": "no", + "gps_code": "SA16", + "local_code": "DOP", + "home_link": "http://www.aeroclubmendoza.com.ar/", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aeroclub_Mendoza", + "keywords": "SA16" + }, + { + "id": "26", + "ident": "SA17", + "type": "small_airport", + "name": "Rio Cuarto Aeroclub Airport", + "latitude_deg": "-33.1605987549", + "longitude_deg": "-64.3382034302", + "elevation_ft": "1423", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Rio Cuarto", + "scheduled_service": "no", + "gps_code": "SA17", + "local_code": "CUA", + "keywords": "SA17" + }, + { + "id": "35330", + "ident": "SA19", + "type": "small_airport", + "name": "Puerto Deseado West Airport", + "latitude_deg": "-47.7201004028", + "longitude_deg": "-65.9324035645", + "elevation_ft": "271", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Puerto Deseado", + "scheduled_service": "no", + "gps_code": "SA19", + "local_code": "DES", + "keywords": "SA19" + }, + { + "id": "28", + "ident": "SA20", + "type": "small_airport", + "name": "Loma La Lata Airport", + "latitude_deg": "-38.413799", + "longitude_deg": "-68.737297", + "elevation_ft": "1328", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Neuquen", + "scheduled_service": "no", + "gps_code": "SA20", + "local_code": "OMA", + "keywords": "SA20" + }, + { + "id": "29", + "ident": "SA21", + "type": "small_airport", + "name": "Veinticinco De Mayo Airport", + "latitude_deg": "-37.8097991943", + "longitude_deg": "-67.6593017578", + "elevation_ft": "1138", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Colonia Veinticinco de Mayo", + "scheduled_service": "no", + "gps_code": "SA21", + "local_code": "MAO", + "keywords": "SA21" + }, + { + "id": "30", + "ident": "SA22", + "type": "small_airport", + "name": "Santa Victoria Airport", + "latitude_deg": "-22.285699844399996", + "longitude_deg": "-62.7136993408", + "elevation_ft": "918", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Salta", + "scheduled_service": "no", + "gps_code": "SA22", + "local_code": "VIT", + "keywords": "SA22" + }, + { + "id": "31", + "ident": "SA23", + "type": "small_airport", + "name": "Apóstoles Airport", + "latitude_deg": "-27.903200149499998", + "longitude_deg": "-55.765499115", + "elevation_ft": "581", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-N", + "municipality": "Apóstoles", + "scheduled_service": "no", + "gps_code": "SA23", + "local_code": "APO", + "keywords": "SA23" + }, + { + "id": "32", + "ident": "SA24", + "type": "small_airport", + "name": "Calilegua Airport", + "latitude_deg": "-23.7819004059", + "longitude_deg": "-64.74949646", + "elevation_ft": "1449", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Y", + "municipality": "Calilegua", + "scheduled_service": "no", + "gps_code": "SA24", + "local_code": "CLI", + "keywords": "SA24" + }, + { + "id": "33", + "ident": "SA25", + "type": "small_airport", + "name": "Cañadon Seco Airport", + "latitude_deg": "-46.539", + "longitude_deg": "-67.5639", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Cañadon Seco", + "scheduled_service": "no", + "gps_code": "SA25", + "local_code": "CDS", + "keywords": "SA25" + }, + { + "id": "34", + "ident": "SA26", + "type": "small_airport", + "name": "Bella Vista Airport", + "latitude_deg": "-28.5262", + "longitude_deg": "-59.0385", + "elevation_ft": "180", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Bella Vista", + "scheduled_service": "no", + "gps_code": "SA26", + "local_code": "BTA", + "keywords": "SA26" + }, + { + "id": "35331", + "ident": "SA27", + "type": "small_airport", + "name": "Puerto Rosales Airport", + "latitude_deg": "-38.897098541259766", + "longitude_deg": "-62.01029968261719", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Puerto Rosales", + "scheduled_service": "no", + "gps_code": "SA27", + "keywords": "SA27" + }, + { + "id": "36", + "ident": "SA29", + "type": "small_airport", + "name": "Choele Choel Airport", + "latitude_deg": "-39.286399841299996", + "longitude_deg": "-65.6102981567", + "elevation_ft": "642", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Choele Choel", + "scheduled_service": "no", + "gps_code": "SA29", + "local_code": "OEL", + "keywords": "SA29" + }, + { + "id": "37", + "ident": "SA30", + "type": "closed", + "name": "Colonia Catriel Airport", + "latitude_deg": "-37.9101982117", + "longitude_deg": "-67.8349990845", + "elevation_ft": "1026", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Colonia Catriel", + "scheduled_service": "no", + "gps_code": "SA30", + "iata_code": "CCT", + "local_code": "CLT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Colonia_Catriel_Airport", + "keywords": "SA30, SA0U" + }, + { + "id": "38", + "ident": "SA31", + "type": "small_airport", + "name": "San Nicolas de los Arroyos Airport", + "latitude_deg": "-33.3907", + "longitude_deg": "-60.1957", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "San Nicolas", + "scheduled_service": "no", + "gps_code": "SA31", + "local_code": "SNY", + "keywords": "SA31" + }, + { + "id": "39", + "ident": "SA32", + "type": "small_airport", + "name": "Venado Tuerto Airport", + "latitude_deg": "-33.6818", + "longitude_deg": "-61.9564", + "elevation_ft": "367", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Venado Tuerto", + "scheduled_service": "no", + "gps_code": "SAFV", + "local_code": "VNO", + "keywords": "SA32" + }, + { + "id": "40", + "ident": "SA33", + "type": "small_airport", + "name": "Comandante Luis Piedrabuena Airport", + "latitude_deg": "-49.9951", + "longitude_deg": "-68.9531", + "elevation_ft": "78", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Comandante Luis Piedrabuena", + "scheduled_service": "no", + "gps_code": "SA33", + "local_code": "LPB", + "keywords": "SA33" + }, + { + "id": "41", + "ident": "SA34", + "type": "small_airport", + "name": "Trelew Aeroclub Airport", + "latitude_deg": "-43.2356", + "longitude_deg": "-65.3241", + "elevation_ft": "127", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Trelew", + "scheduled_service": "no", + "gps_code": "SA34", + "local_code": "TRW", + "keywords": "SA34" + }, + { + "id": "42", + "ident": "SA35", + "type": "small_airport", + "name": "Andalgalá Airport", + "latitude_deg": "-27.6317005157", + "longitude_deg": "-66.3507995605", + "elevation_ft": "2952", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-K", + "municipality": "Andalgalá", + "scheduled_service": "no", + "gps_code": "SA35", + "local_code": "AND", + "keywords": "SA35" + }, + { + "id": "43", + "ident": "SA36", + "type": "small_airport", + "name": "Saladillo Airport", + "latitude_deg": "-35.604891", + "longitude_deg": "-59.816513", + "elevation_ft": "147", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Saladillo", + "scheduled_service": "no", + "gps_code": "SA36", + "local_code": "SDL", + "keywords": "SA36" + }, + { + "id": "44", + "ident": "SA38", + "type": "small_airport", + "name": "Las Lajas Airport", + "latitude_deg": "-38.538898468", + "longitude_deg": "-70.337097168", + "elevation_ft": "2788", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Las Lajas", + "scheduled_service": "no", + "gps_code": "SA38", + "local_code": "LLJ", + "keywords": "SA38" + }, + { + "id": "45", + "ident": "SA39", + "type": "small_airport", + "name": "Jujuy Aeroclub Airport", + "latitude_deg": "-24.2364997864", + "longitude_deg": "-65.2690963745", + "elevation_ft": "4047", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Y", + "municipality": "San Salvador de Jujuy", + "scheduled_service": "no", + "gps_code": "SA39", + "local_code": "JJA", + "keywords": "SA39" + }, + { + "id": "46", + "ident": "SA40", + "type": "small_airport", + "name": "San Juan Aeroclub Airport", + "latitude_deg": "-31.602800369300002", + "longitude_deg": "-68.5473022461", + "elevation_ft": "2079", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-J", + "municipality": "San Juan", + "scheduled_service": "no", + "gps_code": "SA40", + "local_code": "SJA", + "keywords": "SA40" + }, + { + "id": "35336", + "ident": "SA41", + "type": "small_airport", + "name": "El Colorado Airport", + "latitude_deg": "-26.316686630249023", + "longitude_deg": "-59.33976364135742", + "elevation_ft": "269", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-P", + "municipality": "El Colorado", + "scheduled_service": "no", + "gps_code": "SA41", + "keywords": "SA41" + }, + { + "id": "47", + "ident": "SA42", + "type": "small_airport", + "name": "Santa Maria Airport", + "latitude_deg": "-26.673400878900004", + "longitude_deg": "-66.0240020752", + "elevation_ft": "5904", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-K", + "municipality": "Santa Maria", + "scheduled_service": "no", + "gps_code": "SA42", + "local_code": "SMC", + "keywords": "SA42" + }, + { + "id": "48", + "ident": "SA44", + "type": "small_airport", + "name": "Londres/Belén Airport", + "latitude_deg": "-27.7078990936", + "longitude_deg": "-67.0951004028", + "elevation_ft": "3936", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-K", + "municipality": "Londres/Belén", + "scheduled_service": "no", + "gps_code": "SA44", + "local_code": "BLN", + "keywords": "SA44" + }, + { + "id": "49", + "ident": "SA45", + "type": "small_airport", + "name": "Frias Airport", + "latitude_deg": "-28.634399414100002", + "longitude_deg": "-65.1091995239", + "elevation_ft": "1082", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "Frias", + "scheduled_service": "no", + "gps_code": "SA45", + "local_code": "FRS", + "keywords": "SA45" + }, + { + "id": "35332", + "ident": "SA46", + "type": "small_airport", + "name": "Fiambala Airport", + "latitude_deg": "-27.6422", + "longitude_deg": "-67.624702", + "elevation_ft": "5029", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-K", + "municipality": "Fiambala", + "scheduled_service": "no", + "gps_code": "SA46", + "local_code": "2380", + "keywords": "SA46" + }, + { + "id": "12", + "ident": "SA47", + "type": "small_airport", + "name": "Petrel Airport", + "latitude_deg": "-63.479", + "longitude_deg": "-56.2313", + "elevation_ft": "15", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Petrel Base", + "scheduled_service": "no", + "local_code": "PET", + "keywords": "SA47, Destacamento Naval" + }, + { + "id": "32243", + "ident": "SAAA", + "type": "small_airport", + "name": "San Antonio de Areco Airport", + "latitude_deg": "-34.2214", + "longitude_deg": "-59.4422", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "San Antonio de Areco", + "scheduled_service": "no", + "gps_code": "SAAA", + "local_code": "SNT" + }, + { + "id": "5764", + "ident": "SAAC", + "type": "medium_airport", + "name": "Comodoro Pierrestegui Airport", + "latitude_deg": "-31.2969", + "longitude_deg": "-57.9966", + "elevation_ft": "112", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Concordia", + "scheduled_service": "no", + "gps_code": "SAAC", + "iata_code": "COC", + "local_code": "DIA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Comodoro_Pierrestegui_Airport" + }, + { + "id": "5765", + "ident": "SAAG", + "type": "medium_airport", + "name": "Gualeguaychu Airport", + "latitude_deg": "-33.0103", + "longitude_deg": "-58.6131", + "elevation_ft": "75", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Gualeguaychu", + "scheduled_service": "no", + "gps_code": "SAAG", + "iata_code": "GHU", + "local_code": "GUA" + }, + { + "id": "30303", + "ident": "SAAI", + "type": "small_airport", + "name": "Punta Indio Naval Air Base", + "latitude_deg": "-35.353298", + "longitude_deg": "-57.290001", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Veronica", + "scheduled_service": "no", + "gps_code": "SAAI", + "local_code": "PDI" + }, + { + "id": "5766", + "ident": "SAAJ", + "type": "closed", + "name": "Junin Airport", + "latitude_deg": "-34.546359", + "longitude_deg": "-60.930487", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Junin", + "scheduled_service": "no", + "gps_code": "SAAJ", + "iata_code": "JNI", + "local_code": "NIN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jun%C3%ADn_Airport" + }, + { + "id": "32244", + "ident": "SAAM", + "type": "closed", + "name": "Mazaruca Airport", + "latitude_deg": "-33.596001", + "longitude_deg": "-59.266998", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Puerto Ibicuy/Mazuraca", + "scheduled_service": "no", + "gps_code": "SAAM" + }, + { + "id": "5767", + "ident": "SAAN", + "type": "small_airport", + "name": "Pergamino Airport", + "latitude_deg": "-33.919", + "longitude_deg": "-60.648", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Pergamino", + "scheduled_service": "no", + "gps_code": "SAAN", + "local_code": "PER", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pergamino_Aeroclub" + }, + { + "id": "5768", + "ident": "SAAP", + "type": "medium_airport", + "name": "General Urquiza Airport", + "latitude_deg": "-31.7948", + "longitude_deg": "-60.4804", + "elevation_ft": "242", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Parana", + "scheduled_service": "yes", + "gps_code": "SAAP", + "iata_code": "PRA", + "local_code": "PAR", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Urquiza_Airport" + }, + { + "id": "5769", + "ident": "SAAR", + "type": "medium_airport", + "name": "Rosario Islas Malvinas International Airport", + "latitude_deg": "-32.9036", + "longitude_deg": "-60.785", + "elevation_ft": "85", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Rosario", + "scheduled_service": "yes", + "gps_code": "SAAR", + "iata_code": "ROS", + "local_code": "ROS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rosario_International_Airport", + "keywords": "Fisherton Airport" + }, + { + "id": "30530", + "ident": "SAAU", + "type": "small_airport", + "name": "Villaguay Airport", + "latitude_deg": "-31.855", + "longitude_deg": "-59.0756", + "elevation_ft": "131", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "Villaguay", + "scheduled_service": "no", + "gps_code": "SAAU", + "local_code": "VIG" + }, + { + "id": "5770", + "ident": "SAAV", + "type": "medium_airport", + "name": "Sauce Viejo Airport", + "latitude_deg": "-31.7117", + "longitude_deg": "-60.8117", + "elevation_ft": "55", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Santa Fe", + "scheduled_service": "yes", + "gps_code": "SAAV", + "iata_code": "SFN", + "local_code": "SVO" + }, + { + "id": "5771", + "ident": "SABE", + "type": "large_airport", + "name": "Jorge Newbery Airpark", + "latitude_deg": "-34.5592", + "longitude_deg": "-58.4156", + "elevation_ft": "18", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-C", + "municipality": "Buenos Aires", + "scheduled_service": "yes", + "gps_code": "SABE", + "iata_code": "AEP", + "local_code": "AER", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aeroparque_Jorge_Newbery" + }, + { + "id": "5772", + "ident": "SACA", + "type": "small_airport", + "name": "Captain D Omar Darío Gelardi Airport", + "latitude_deg": "-31.4419", + "longitude_deg": "-64.258202", + "elevation_ft": "1594", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Córdoba", + "scheduled_service": "no", + "gps_code": "SACA", + "local_code": "FMA", + "keywords": "Area de Material" + }, + { + "id": "30055", + "ident": "SACC", + "type": "small_airport", + "name": "La Cumbre Airport", + "latitude_deg": "-31.005800247199996", + "longitude_deg": "-64.5318984985", + "elevation_ft": "3733", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "La Cumbre", + "scheduled_service": "no", + "gps_code": "SACC", + "iata_code": "LCM", + "local_code": "CUM" + }, + { + "id": "29806", + "ident": "SACD", + "type": "small_airport", + "name": "Coronel Olmedo Airport", + "latitude_deg": "-31.4874992371", + "longitude_deg": "-64.1414031982", + "elevation_ft": "1416", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Cordoba", + "scheduled_service": "no", + "gps_code": "SACD", + "local_code": "EDO" + }, + { + "id": "29803", + "ident": "SACE", + "type": "small_airport", + "name": "Escuela de Aviación Militar (Military Aviation School) Airport", + "latitude_deg": "-31.444223", + "longitude_deg": "-64.283377", + "elevation_ft": "1646", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Córdoba", + "scheduled_service": "no", + "gps_code": "SACE", + "local_code": "ESC" + }, + { + "id": "41546", + "ident": "SACI", + "type": "small_airport", + "name": "Pilar Airport", + "latitude_deg": "-31.6819992065", + "longitude_deg": "-63.863800048799995", + "elevation_ft": "1072", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Pilar", + "scheduled_service": "no", + "gps_code": "SACI", + "local_code": "PIL" + }, + { + "id": "39059", + "ident": "SACL", + "type": "small_airport", + "name": "Laguna Larga Airport", + "latitude_deg": "-31", + "longitude_deg": "-63", + "elevation_ft": "1013", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Laguna Larga", + "scheduled_service": "no", + "gps_code": "SACL", + "local_code": "LRG" + }, + { + "id": "41547", + "ident": "SACM", + "type": "small_airport", + "name": "Villa General Mitre Airport", + "latitude_deg": "-30.7005996704", + "longitude_deg": "-64.0430984497", + "elevation_ft": "1760", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Villa General Mitre", + "scheduled_service": "no", + "gps_code": "SACM", + "local_code": "VGM" + }, + { + "id": "39060", + "ident": "SACN", + "type": "small_airport", + "name": "Ascochinga Airport", + "latitude_deg": "-30.967920303299998", + "longitude_deg": "-64.2777404785", + "elevation_ft": "677", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Ascochinga", + "scheduled_service": "no", + "gps_code": "SACN", + "local_code": "NGA" + }, + { + "id": "5773", + "ident": "SACO", + "type": "medium_airport", + "name": "Ingeniero Ambrosio Taravella Airport", + "latitude_deg": "-31.323601", + "longitude_deg": "-64.208", + "elevation_ft": "1604", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Cordoba", + "scheduled_service": "yes", + "gps_code": "SACO", + "iata_code": "COR", + "local_code": "CBA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ingeniero_Ambrosio_L.V._Taravella_International_Airport" + }, + { + "id": "39061", + "ident": "SACP", + "type": "closed", + "name": "Chepes Airport", + "latitude_deg": "-31.356142", + "longitude_deg": "-66.591888", + "elevation_ft": "714", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-F", + "municipality": "Chepes", + "scheduled_service": "no", + "keywords": "CHE, SACP" + }, + { + "id": "39062", + "ident": "SACQ", + "type": "small_airport", + "name": "Monte Quemado Airport", + "latitude_deg": "-25.783563", + "longitude_deg": "-62.82884", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "Monte Quemado", + "scheduled_service": "no", + "gps_code": "SACQ", + "local_code": "MTQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monte_Quemado_Airport" + }, + { + "id": "41548", + "ident": "SACS", + "type": "small_airport", + "name": "Villa De Soto Airport", + "latitude_deg": "-30.865200042699996", + "longitude_deg": "-64.97899627689999", + "elevation_ft": "2013", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Villa de Soto", + "scheduled_service": "no", + "gps_code": "SACS", + "local_code": "SOT" + }, + { + "id": "5774", + "ident": "SACT", + "type": "closed", + "name": "Chamical Airport", + "latitude_deg": "-30.34530067", + "longitude_deg": "-66.29360198", + "elevation_ft": "1502", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-F", + "municipality": "Gobernador Gordillo", + "scheduled_service": "no", + "gps_code": "SACT", + "local_code": "GOR" + }, + { + "id": "39063", + "ident": "SACV", + "type": "small_airport", + "name": "Villa Maria Airport", + "latitude_deg": "-32.389400482199996", + "longitude_deg": "-63.2585983276", + "elevation_ft": "672", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Villa Maria del Rio Seco", + "scheduled_service": "no", + "gps_code": "SAOI", + "local_code": "MRA" + }, + { + "id": "29733", + "ident": "SADD", + "type": "closed", + "name": "Don Torcuato Airport", + "latitude_deg": "-34.4981", + "longitude_deg": "-58.604198", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Don Torcuato", + "scheduled_service": "no", + "gps_code": "SADD", + "local_code": "DOT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Don_Torcuato", + "keywords": "SADD" + }, + { + "id": "5775", + "ident": "SADF", + "type": "medium_airport", + "name": "San Fernando Airport", + "latitude_deg": "-34.4532", + "longitude_deg": "-58.5896", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "San Fernando", + "scheduled_service": "no", + "gps_code": "SADF", + "local_code": "FDO", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Fernando_Airport_(Argentina)", + "keywords": "San Fernando International Airport" + }, + { + "id": "41549", + "ident": "SADG", + "type": "closed", + "name": "Monte Grande Airport", + "latitude_deg": "-34.805599", + "longitude_deg": "-58.492001", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Monte Grande", + "scheduled_service": "no", + "gps_code": "SADG", + "local_code": "MGE" + }, + { + "id": "5776", + "ident": "SADJ", + "type": "small_airport", + "name": "Mariano Moreno Airport", + "latitude_deg": "-34.5606", + "longitude_deg": "-58.7896", + "elevation_ft": "105", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "General Sarmiento", + "scheduled_service": "no", + "gps_code": "SADJ", + "local_code": "ENO" + }, + { + "id": "5777", + "ident": "SADL", + "type": "medium_airport", + "name": "La Plata Airport", + "latitude_deg": "-34.9722", + "longitude_deg": "-57.8947", + "elevation_ft": "72", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "La Plata", + "scheduled_service": "no", + "gps_code": "SADL", + "iata_code": "LPG", + "local_code": "PTA" + }, + { + "id": "5778", + "ident": "SADM", + "type": "small_airport", + "name": "Morón Airport", + "latitude_deg": "-34.6763", + "longitude_deg": "-58.6428", + "elevation_ft": "95", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Morón", + "scheduled_service": "no", + "gps_code": "SADM", + "local_code": "MOR" + }, + { + "id": "5779", + "ident": "SADO", + "type": "small_airport", + "name": "Campo de Mayo Military Airport", + "latitude_deg": "-34.5344", + "longitude_deg": "-58.6717", + "elevation_ft": "78", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Campo de Mayo", + "scheduled_service": "no", + "gps_code": "SADO", + "local_code": "CPO" + }, + { + "id": "5780", + "ident": "SADP", + "type": "medium_airport", + "name": "El Palomar Airport", + "latitude_deg": "-34.6099", + "longitude_deg": "-58.6126", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "El Palomar", + "scheduled_service": "no", + "gps_code": "SADP", + "iata_code": "EPA", + "local_code": "PAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Palomar_Airport" + }, + { + "id": "30313", + "ident": "SADQ", + "type": "small_airport", + "name": "Quilmes Airport", + "latitude_deg": "-34.7064", + "longitude_deg": "-58.2444", + "elevation_ft": "6", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Quilmes", + "scheduled_service": "no", + "gps_code": "SADQ", + "local_code": "ILM" + }, + { + "id": "41550", + "ident": "SADR", + "type": "closed", + "name": "Merlo Airport", + "latitude_deg": "-34.680283", + "longitude_deg": "-58.742658", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Merlo", + "scheduled_service": "no", + "gps_code": "SADR", + "local_code": "MER" + }, + { + "id": "30377", + "ident": "SADS", + "type": "closed", + "name": "San Justo Airport", + "latitude_deg": "-34.732372", + "longitude_deg": "-58.595564", + "elevation_ft": "62", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "San Justo", + "scheduled_service": "no", + "gps_code": "SADS", + "local_code": "JUS", + "keywords": "Aeroclub Argentino" + }, + { + "id": "30122", + "ident": "SADZ", + "type": "small_airport", + "name": "Matanza Airport", + "latitude_deg": "-34.728367", + "longitude_deg": "-58.500855", + "elevation_ft": "9", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "La Matanza", + "scheduled_service": "no", + "gps_code": "SADZ", + "local_code": "MAT", + "home_link": "http://www.cua-argentina.com.ar/index.php", + "keywords": "Aeroclub Universidad Río Matanza" + }, + { + "id": "39064", + "ident": "SAEA", + "type": "small_airport", + "name": "General Acha Airport", + "latitude_deg": "-37.4007987976", + "longitude_deg": "-64.6128005981", + "elevation_ft": "908", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "General Acha", + "scheduled_service": "no", + "gps_code": "SAEA", + "local_code": "ACH" + }, + { + "id": "39065", + "ident": "SAEL", + "type": "small_airport", + "name": "Las Flores Airport", + "latitude_deg": "-36.0672", + "longitude_deg": "-59.1042", + "elevation_ft": "111", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Las Flores", + "scheduled_service": "no", + "gps_code": "SAEL", + "local_code": "FLO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Las_Flores_Airport" + }, + { + "id": "39066", + "ident": "SAET", + "type": "small_airport", + "name": "Ñanco Lauquen Airport", + "latitude_deg": "-35.9715", + "longitude_deg": "-62.7724", + "elevation_ft": "301", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Trenque Lauquen", + "scheduled_service": "no", + "gps_code": "SAET", + "local_code": "TQL", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%91anco_Lauquen_Airport" + }, + { + "id": "5781", + "ident": "SAEZ", + "type": "large_airport", + "name": "Ministro Pistarini International Airport", + "latitude_deg": "-34.8222", + "longitude_deg": "-58.5358", + "elevation_ft": "67", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Buenos Aires (Ezeiza)", + "scheduled_service": "yes", + "gps_code": "SAEZ", + "iata_code": "EZE", + "local_code": "EZE", + "home_link": "http://www.aa2000.com.ar/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ministro_Pistarini_International_Airport", + "keywords": "BUE, Ezeiza" + }, + { + "id": "39067", + "ident": "SAFR", + "type": "small_airport", + "name": "Rafaela Airport", + "latitude_deg": "-31.2825", + "longitude_deg": "-61.5017", + "elevation_ft": "325", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Rafaela", + "scheduled_service": "no", + "gps_code": "SAFR", + "iata_code": "RAF", + "local_code": "RLA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rafaela_Aerodrome" + }, + { + "id": "46083", + "ident": "SAG", + "type": "closed", + "name": "Sagwon Airport", + "latitude_deg": "69.3596", + "longitude_deg": "-148.7114", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sagwon", + "scheduled_service": "no", + "keywords": "SAG" + }, + { + "id": "5782", + "ident": "SAHC", + "type": "small_airport", + "name": "Chos Malal Airport", + "latitude_deg": "-37.444698333699996", + "longitude_deg": "-70.2225036621", + "elevation_ft": "2788", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Chos Malal", + "scheduled_service": "no", + "gps_code": "SAHC", + "iata_code": "HOS", + "local_code": "CHM" + }, + { + "id": "39068", + "ident": "SAHE", + "type": "small_airport", + "name": "Caviahue Airport", + "latitude_deg": "-37.851398", + "longitude_deg": "-71.009201", + "elevation_ft": "5435", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Lafontaine", + "scheduled_service": "no", + "gps_code": "SAHE", + "iata_code": "CVH", + "local_code": "CVH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Caviahue_Airport" + }, + { + "id": "5783", + "ident": "SAHR", + "type": "small_airport", + "name": "Dr. Arturo H. Illia Airport", + "latitude_deg": "-39.0007019043", + "longitude_deg": "-67.6204986572", + "elevation_ft": "852", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "General Roca", + "scheduled_service": "no", + "gps_code": "SAHR", + "iata_code": "GNR", + "local_code": "GNR" + }, + { + "id": "5784", + "ident": "SAHS", + "type": "medium_airport", + "name": "Rincon De Los Sauces Airport", + "latitude_deg": "-37.3905982971", + "longitude_deg": "-68.9041976929", + "elevation_ft": "1968", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Rincon de los Sauces", + "scheduled_service": "no", + "gps_code": "SAHS", + "iata_code": "RDS", + "local_code": "RIN" + }, + { + "id": "5785", + "ident": "SAHZ", + "type": "medium_airport", + "name": "Zapala Airport", + "latitude_deg": "-38.975498", + "longitude_deg": "-70.113602", + "elevation_ft": "3330", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Zapala", + "scheduled_service": "no", + "gps_code": "SAHZ", + "iata_code": "APZ", + "local_code": "ZAP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zapala_Airport" + }, + { + "id": "312682", + "ident": "SAM", + "type": "small_airport", + "name": "Salamo Airport", + "latitude_deg": "-9.6701", + "longitude_deg": "150.7903", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Salamo", + "scheduled_service": "no", + "iata_code": "SAM", + "local_code": "SAO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salamo_Airport", + "keywords": "Fergusson Is." + }, + { + "id": "29889", + "ident": "SAMA", + "type": "small_airport", + "name": "General Alvear Airport", + "latitude_deg": "-35.058898925799994", + "longitude_deg": "-67.6928024292", + "elevation_ft": "1489", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "General Alvear", + "scheduled_service": "no", + "gps_code": "SAMA", + "local_code": "GNA" + }, + { + "id": "41551", + "ident": "SAMC", + "type": "small_airport", + "name": "Cristo Redentor Airport", + "latitude_deg": "-32.807300567599995", + "longitude_deg": "-70.06819915770001", + "elevation_ft": "10477", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "Cristo Redentor", + "scheduled_service": "no", + "gps_code": "SAMC", + "local_code": "CRI" + }, + { + "id": "5786", + "ident": "SAME", + "type": "medium_airport", + "name": "El Plumerillo Airport", + "latitude_deg": "-32.8316993713", + "longitude_deg": "-68.7929000854", + "elevation_ft": "2310", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "Mendoza", + "scheduled_service": "yes", + "gps_code": "SAME", + "iata_code": "MDZ", + "local_code": "DOZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Governor_Francisco_Gabrielli_International_Airport" + }, + { + "id": "41552", + "ident": "SAMH", + "type": "small_airport", + "name": "Valle Hermoso Airport", + "latitude_deg": "-35.1461982727", + "longitude_deg": "-70.2053985596", + "elevation_ft": "2500", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "Valle Hermoso", + "scheduled_service": "no", + "gps_code": "SAMH", + "local_code": "VHE" + }, + { + "id": "41553", + "ident": "SAMJ", + "type": "small_airport", + "name": "Jachal Airport", + "latitude_deg": "-30.249500274699997", + "longitude_deg": "-68.740196228", + "elevation_ft": "3790", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-J", + "municipality": "Jachal", + "scheduled_service": "no", + "gps_code": "SAMJ", + "local_code": "JAC" + }, + { + "id": "41554", + "ident": "SAML", + "type": "small_airport", + "name": "Punta De Vacas Airport", + "latitude_deg": "-32.854598999", + "longitude_deg": "-69.7604980469", + "elevation_ft": "7906", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "Punta de Vacas", + "scheduled_service": "no", + "gps_code": "SAML", + "local_code": "PDV" + }, + { + "id": "5787", + "ident": "SAMM", + "type": "medium_airport", + "name": "Comodoro D.R. Salomón Airport", + "latitude_deg": "-35.493598938", + "longitude_deg": "-69.5743026733", + "elevation_ft": "4685", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "Malargue", + "scheduled_service": "no", + "gps_code": "SAMM", + "iata_code": "LGS", + "local_code": "MLG" + }, + { + "id": "30062", + "ident": "SAMP", + "type": "small_airport", + "name": "La Paz Airport", + "latitude_deg": "-30.7833", + "longitude_deg": "-59.6", + "elevation_ft": "200", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-E", + "municipality": "La Paz", + "scheduled_service": "no", + "local_code": "LPZ" + }, + { + "id": "30130", + "ident": "SAMQ", + "type": "small_airport", + "name": "Mendoza Airpark", + "latitude_deg": "-32.8652992249", + "longitude_deg": "-68.87190246579999", + "elevation_ft": "2694", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "Mendoza", + "scheduled_service": "no", + "gps_code": "SAMQ", + "local_code": "MAE" + }, + { + "id": "5788", + "ident": "SAMR", + "type": "medium_airport", + "name": "Suboficial Ay Santiago Germano Airport", + "latitude_deg": "-34.588299", + "longitude_deg": "-68.4039", + "elevation_ft": "2470", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "San Rafael", + "scheduled_service": "yes", + "gps_code": "SAMR", + "iata_code": "AFA", + "local_code": "SRA", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Rafael_Airport_(Argentina)" + }, + { + "id": "41555", + "ident": "SAMS", + "type": "small_airport", + "name": "San Carlos Airport", + "latitude_deg": "-33.775699615499995", + "longitude_deg": "-69.0537033081", + "elevation_ft": "3050", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "San Carlos", + "scheduled_service": "no", + "gps_code": "SAMS", + "local_code": "CAR" + }, + { + "id": "32247", + "ident": "SAMU", + "type": "small_airport", + "name": "Uspallata Airport", + "latitude_deg": "-32.538898468", + "longitude_deg": "-69.3458023071", + "elevation_ft": "6525", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-M", + "municipality": "Uspallata", + "scheduled_service": "no", + "gps_code": "SAMU", + "local_code": "USP" + }, + { + "id": "5789", + "ident": "SANC", + "type": "medium_airport", + "name": "Catamarca Airport", + "latitude_deg": "-28.5956001282", + "longitude_deg": "-65.751701355", + "elevation_ft": "1522", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-K", + "municipality": "Catamarca", + "scheduled_service": "yes", + "gps_code": "SANC", + "iata_code": "CTC", + "local_code": "CAT" + }, + { + "id": "322521", + "ident": "SAND", + "type": "small_airport", + "name": "Sandwash Backcountry Strip", + "latitude_deg": "39.830814", + "longitude_deg": "-109.928892", + "elevation_ft": "5400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Myton", + "scheduled_service": "no" + }, + { + "id": "5790", + "ident": "SANE", + "type": "medium_airport", + "name": "Vicecomodoro Angel D. La Paz Aragonés Airport", + "latitude_deg": "-27.765556335399996", + "longitude_deg": "-64.3099975586", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "Santiago del Estero", + "scheduled_service": "yes", + "gps_code": "SANE", + "iata_code": "SDE", + "local_code": "SDE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santiago_del_Estero_Airport" + }, + { + "id": "39069", + "ident": "SANH", + "type": "small_airport", + "name": "Las Termas Airport", + "latitude_deg": "-27.4737", + "longitude_deg": "-64.905502", + "elevation_ft": "270", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "Rio Hondo", + "scheduled_service": "no", + "gps_code": "SANH", + "local_code": "RHO", + "keywords": "RHD" + }, + { + "id": "5791", + "ident": "SANI", + "type": "closed", + "name": "Tinogasta Airport", + "latitude_deg": "-28.037801", + "longitude_deg": "-67.580299", + "elevation_ft": "3968", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-K", + "municipality": "Tinogasta", + "scheduled_service": "no", + "gps_code": "SANI", + "local_code": "TIN" + }, + { + "id": "5792", + "ident": "SANL", + "type": "medium_airport", + "name": "Capitan V A Almonacid Airport", + "latitude_deg": "-29.3815994263", + "longitude_deg": "-66.7957992554", + "elevation_ft": "1437", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-F", + "municipality": "La Rioja", + "scheduled_service": "yes", + "gps_code": "SANL", + "iata_code": "IRJ", + "local_code": "LAR" + }, + { + "id": "5793", + "ident": "SANO", + "type": "small_airport", + "name": "Chilecito Airport", + "latitude_deg": "-29.2238998413", + "longitude_deg": "-67.4389038086", + "elevation_ft": "3099", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-F", + "municipality": "Chilecito", + "scheduled_service": "no", + "gps_code": "SANO", + "local_code": "ITO" + }, + { + "id": "318304", + "ident": "SANR", + "type": "medium_airport", + "name": "Termas de Río Hondo international Airport", + "latitude_deg": "-27.4966", + "longitude_deg": "-64.93595", + "elevation_ft": "935", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-G", + "municipality": "Termas de Río Hondo", + "scheduled_service": "yes", + "gps_code": "SANR", + "iata_code": "RHD", + "local_code": "TRH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Las_Termas_Airport" + }, + { + "id": "5794", + "ident": "SANT", + "type": "medium_airport", + "name": "Teniente Benjamin Matienzo Airport", + "latitude_deg": "-26.8409", + "longitude_deg": "-65.104897", + "elevation_ft": "1493", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-T", + "municipality": "San Miguel de Tucumán", + "scheduled_service": "yes", + "gps_code": "SANT", + "iata_code": "TUC", + "local_code": "TUC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Benjam%C3%ADn_Matienzo_International_Airport" + }, + { + "id": "5795", + "ident": "SANU", + "type": "medium_airport", + "name": "Domingo Faustino Sarmiento Airport", + "latitude_deg": "-31.571501", + "longitude_deg": "-68.418198", + "elevation_ft": "1958", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-J", + "municipality": "San Juan", + "scheduled_service": "yes", + "gps_code": "SANU", + "iata_code": "UAQ", + "local_code": "JUA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Domingo_Faustino_Sarmiento_Airport" + }, + { + "id": "29769", + "ident": "SANW", + "type": "small_airport", + "name": "Ceres Airport", + "latitude_deg": "-29.872292", + "longitude_deg": "-61.927925", + "elevation_ft": "285", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Ceres", + "scheduled_service": "no", + "gps_code": "SANW", + "iata_code": "CRR", + "local_code": "ERE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ceres_Airport" + }, + { + "id": "5796", + "ident": "SAOC", + "type": "medium_airport", + "name": "Area De Material Airport", + "latitude_deg": "-33.0850982666", + "longitude_deg": "-64.2612991333", + "elevation_ft": "1380", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Rio Cuarto", + "scheduled_service": "no", + "gps_code": "SAOC", + "iata_code": "RCU", + "local_code": "TRC" + }, + { + "id": "5797", + "ident": "SAOD", + "type": "medium_airport", + "name": "Villa Dolores Airport", + "latitude_deg": "-31.9451999664", + "longitude_deg": "-65.1463012695", + "elevation_ft": "1847", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Villa Dolores", + "scheduled_service": "no", + "gps_code": "SAOD", + "iata_code": "VDR", + "local_code": "LDR" + }, + { + "id": "39070", + "ident": "SAOE", + "type": "small_airport", + "name": "Rio Tercero Airport", + "latitude_deg": "-32.173302", + "longitude_deg": "-64.088303", + "elevation_ft": "1246", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Rio Tercero", + "scheduled_service": "no", + "gps_code": "SAOE", + "local_code": "RCR", + "wikipedia_link": "https://en.wikipedia.org/wiki/R%C3%ADo_Tercero_Airport" + }, + { + "id": "5798", + "ident": "SAOL", + "type": "small_airport", + "name": "La Quiaca Airport", + "latitude_deg": "-22.165264", + "longitude_deg": "-65.569918", + "elevation_ft": "11414", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Y", + "municipality": "La Quiaca", + "scheduled_service": "no", + "gps_code": "SASQ", + "local_code": "IAC" + }, + { + "id": "5799", + "ident": "SAOM", + "type": "small_airport", + "name": "Marcos Juarez Airport", + "latitude_deg": "-32.6836", + "longitude_deg": "-62.157801", + "elevation_ft": "360", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Marcos Juarez", + "scheduled_service": "no", + "gps_code": "SAOM", + "local_code": "MJZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marcos_Ju%C3%A1rez_Airport" + }, + { + "id": "5800", + "ident": "SAOR", + "type": "medium_airport", + "name": "Villa Reynolds Airport", + "latitude_deg": "-33.7299003601", + "longitude_deg": "-65.3873977661", + "elevation_ft": "1591", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-D", + "municipality": "Villa Mercedes", + "scheduled_service": "no", + "gps_code": "SAOR", + "iata_code": "VME", + "local_code": "RYD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Villa_Reynolds_Airport", + "keywords": "Pringles" + }, + { + "id": "5801", + "ident": "SAOS", + "type": "small_airport", + "name": "Valle Del Conlara International Airport", + "latitude_deg": "-32.3847007751", + "longitude_deg": "-65.1865005493", + "elevation_ft": "2021", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-D", + "municipality": "Merlo", + "scheduled_service": "no", + "gps_code": "SAOS", + "iata_code": "RLO", + "local_code": "SRC" + }, + { + "id": "5802", + "ident": "SAOU", + "type": "medium_airport", + "name": "Brigadier Mayor D Cesar Raul Ojeda Airport", + "latitude_deg": "-33.2732009888", + "longitude_deg": "-66.3563995361", + "elevation_ft": "2328", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-D", + "municipality": "San Luis", + "scheduled_service": "yes", + "gps_code": "SAOU", + "iata_code": "LUQ", + "local_code": "UIS" + }, + { + "id": "318502", + "ident": "SAOV", + "type": "medium_airport", + "name": "Presidente Néstor Kirchner Regional Airport", + "latitude_deg": "-32.3201", + "longitude_deg": "-63.22663", + "elevation_ft": "670", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Villa Maria", + "scheduled_service": "yes", + "gps_code": "SAOV", + "local_code": "VMR", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aeropuerto_Regional_Presidente_N%C3%A9stor_Kirchner" + }, + { + "id": "5803", + "ident": "SARC", + "type": "medium_airport", + "name": "Corrientes Airport", + "latitude_deg": "-27.4455", + "longitude_deg": "-58.7619", + "elevation_ft": "202", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Corrientes", + "scheduled_service": "yes", + "gps_code": "SARC", + "iata_code": "CNQ", + "local_code": "CRR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Doctor_Fernando_Piragine_Niveyro_International_Airport" + }, + { + "id": "41556", + "ident": "SARD", + "type": "closed", + "name": "Resistencia (City) Airport", + "latitude_deg": "-27.465700149499998", + "longitude_deg": "-58.97900009159999", + "elevation_ft": "175", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-H", + "municipality": "Resistencia", + "scheduled_service": "no", + "gps_code": "SARD" + }, + { + "id": "5804", + "ident": "SARE", + "type": "medium_airport", + "name": "Resistencia International Airport", + "latitude_deg": "-27.45", + "longitude_deg": "-59.0561", + "elevation_ft": "173", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-H", + "municipality": "Resistencia", + "scheduled_service": "yes", + "gps_code": "SARE", + "iata_code": "RES", + "local_code": "SIS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Resistencia_International_Airport" + }, + { + "id": "5805", + "ident": "SARF", + "type": "medium_airport", + "name": "Formosa Airport", + "latitude_deg": "-26.2127", + "longitude_deg": "-58.2281", + "elevation_ft": "193", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-P", + "municipality": "Formosa", + "scheduled_service": "yes", + "gps_code": "SARF", + "iata_code": "FMA", + "local_code": "FSA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Formosa_International_Airport" + }, + { + "id": "41557", + "ident": "SARG", + "type": "small_airport", + "name": "Caa Cati Airport", + "latitude_deg": "-27.755300521900004", + "longitude_deg": "-57.6329994202", + "elevation_ft": "249", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "General Paz", + "scheduled_service": "no", + "gps_code": "SARG", + "local_code": "CAC" + }, + { + "id": "5806", + "ident": "SARI", + "type": "medium_airport", + "name": "Cataratas Del Iguazú International Airport", + "latitude_deg": "-25.737301", + "longitude_deg": "-54.4734", + "elevation_ft": "916", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-N", + "municipality": "Puerto Iguazu", + "scheduled_service": "yes", + "gps_code": "SARI", + "iata_code": "IGR", + "local_code": "IGU", + "home_link": "http://www.aa2000.com.ar/iguazu", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cataratas_del_Iguaz%C3%BA_International_Airport", + "keywords": "Iguaçu" + }, + { + "id": "5807", + "ident": "SARL", + "type": "medium_airport", + "name": "Paso De Los Libres Airport", + "latitude_deg": "-29.6894", + "longitude_deg": "-57.1521", + "elevation_ft": "230", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Paso de los Libres", + "scheduled_service": "no", + "gps_code": "SARL", + "iata_code": "AOL", + "local_code": "LIB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paso_de_los_Libres_Airport" + }, + { + "id": "5808", + "ident": "SARM", + "type": "medium_airport", + "name": "Monte Caseros Airport", + "latitude_deg": "-30.2719", + "longitude_deg": "-57.6402", + "elevation_ft": "170", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Monte Caseros", + "scheduled_service": "no", + "gps_code": "SARM", + "iata_code": "MCS", + "local_code": "MCS" + }, + { + "id": "39071", + "ident": "SARO", + "type": "closed", + "name": "Ituzaingo Airport", + "latitude_deg": "-27.5261001587", + "longitude_deg": "-56.6333007812", + "elevation_ft": "62", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Ituzaingo", + "scheduled_service": "no", + "gps_code": "SARO", + "local_code": "ITU" + }, + { + "id": "5809", + "ident": "SARP", + "type": "medium_airport", + "name": "Libertador Gral D Jose De San Martin Airport", + "latitude_deg": "-27.3858", + "longitude_deg": "-55.9707", + "elevation_ft": "430", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-N", + "municipality": "Posadas", + "scheduled_service": "yes", + "gps_code": "SARP", + "iata_code": "PSS", + "local_code": "POS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Libertador_General_Jos%C3%A9_de_San_Mart%C3%ADn_Airport" + }, + { + "id": "39072", + "ident": "SARV", + "type": "small_airport", + "name": "Villa Angela Airport", + "latitude_deg": "-27.5915", + "longitude_deg": "-60.6864", + "elevation_ft": "246", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-H", + "municipality": "Villa Angela", + "scheduled_service": "no", + "gps_code": "SARV", + "local_code": "VAN" + }, + { + "id": "24397", + "ident": "SAS", + "type": "small_airport", + "name": "Salton Sea Airport", + "latitude_deg": "33.2414016724", + "longitude_deg": "-115.952003479", + "elevation_ft": "-84", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Salton City", + "scheduled_service": "no", + "gps_code": "KSAS", + "iata_code": "SAS", + "local_code": "SAS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salton_Sea_Airport" + }, + { + "id": "5811", + "ident": "SASA", + "type": "medium_airport", + "name": "Martin Miguel De Guemes International Airport", + "latitude_deg": "-24.856000900299996", + "longitude_deg": "-65.4861984253", + "elevation_ft": "4088", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Salta", + "scheduled_service": "yes", + "gps_code": "SASA", + "iata_code": "SLA", + "local_code": "SAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mart%C3%ADn_Miguel_de_G%C3%BCemes_Airport" + }, + { + "id": "5812", + "ident": "SASJ", + "type": "medium_airport", + "name": "Gobernador Horacio Guzman International Airport", + "latitude_deg": "-24.392799", + "longitude_deg": "-65.097801", + "elevation_ft": "3019", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Y", + "municipality": "San Salvador de Jujuy", + "scheduled_service": "yes", + "gps_code": "SASJ", + "iata_code": "JUJ", + "local_code": "JUJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gobernador_Horacio_Guzm%C3%A1n_International_Airport" + }, + { + "id": "41558", + "ident": "SASL", + "type": "small_airport", + "name": "Salar De Cauchari Airport", + "latitude_deg": "-24.0191993713", + "longitude_deg": "-66.797203064", + "elevation_ft": "13000", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Y", + "municipality": "Salar de Cauchari", + "scheduled_service": "no", + "gps_code": "SASL", + "local_code": "SDC" + }, + { + "id": "5813", + "ident": "SASO", + "type": "medium_airport", + "name": "Orán Airport", + "latitude_deg": "-23.1527996063", + "longitude_deg": "-64.3292007446", + "elevation_ft": "1171", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Orán", + "scheduled_service": "no", + "gps_code": "SASO", + "iata_code": "ORA", + "local_code": "ORA" + }, + { + "id": "5814", + "ident": "SASQ", + "type": "small_airport", + "name": "Laboulaye Airport", + "latitude_deg": "-34.1353988647", + "longitude_deg": "-63.36230087279999", + "elevation_ft": "449", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-X", + "municipality": "Laboulaye", + "scheduled_service": "no", + "gps_code": "SAOL", + "local_code": "LYE" + }, + { + "id": "41545", + "ident": "SASR", + "type": "small_airport", + "name": "Rivadavia Airport", + "latitude_deg": "-24.188600540200003", + "longitude_deg": "-62.883399963399995", + "elevation_ft": "679", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Rivadavia", + "scheduled_service": "no", + "gps_code": "SASR", + "local_code": "RIV" + }, + { + "id": "5815", + "ident": "SAST", + "type": "medium_airport", + "name": "General Enrique Mosconi Airport", + "latitude_deg": "-22.619600296", + "longitude_deg": "-63.7937011719", + "elevation_ft": "1472", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-A", + "municipality": "Tartagal", + "scheduled_service": "yes", + "gps_code": "SAST", + "iata_code": "TTG", + "local_code": "TAR" + }, + { + "id": "29791", + "ident": "SATC", + "type": "small_airport", + "name": "Clorinda Airport", + "latitude_deg": "-25.3036", + "longitude_deg": "-57.7344", + "elevation_ft": "206", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-P", + "municipality": "Clorinda", + "scheduled_service": "no", + "gps_code": "SATC", + "iata_code": "CLX", + "local_code": "CLO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clorinda_Airport" + }, + { + "id": "5816", + "ident": "SATD", + "type": "small_airport", + "name": "El Dorado Airport", + "latitude_deg": "-26.3974990845", + "longitude_deg": "-54.5746994019", + "elevation_ft": "685", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-N", + "municipality": "El Dorado", + "scheduled_service": "no", + "gps_code": "SATD", + "iata_code": "ELO", + "local_code": "ELD" + }, + { + "id": "5817", + "ident": "SATG", + "type": "medium_airport", + "name": "Goya Airport", + "latitude_deg": "-29.1058", + "longitude_deg": "-59.2189", + "elevation_ft": "128", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Goya", + "scheduled_service": "no", + "gps_code": "SATG", + "iata_code": "OYA", + "local_code": "GOY" + }, + { + "id": "41559", + "ident": "SATI", + "type": "small_airport", + "name": "Bernardo De Irigoyen Airport", + "latitude_deg": "-26.281388", + "longitude_deg": "-53.673332", + "elevation_ft": "2673", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-N", + "municipality": "Bernardo de Irigoyen", + "scheduled_service": "no", + "gps_code": "SATI", + "local_code": "IRI", + "keywords": "IRA" + }, + { + "id": "31832", + "ident": "SATK", + "type": "small_airport", + "name": "Alferez Armando Rodriguez Airport", + "latitude_deg": "-24.7213993073", + "longitude_deg": "-60.5488014221", + "elevation_ft": "426", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-P", + "municipality": "Las Lomitas", + "scheduled_service": "no", + "gps_code": "SATK", + "iata_code": "LLS", + "local_code": "ITA" + }, + { + "id": "30131", + "ident": "SATM", + "type": "small_airport", + "name": "Mercedes Airport", + "latitude_deg": "-29.2213993073", + "longitude_deg": "-58.0877990723", + "elevation_ft": "358", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Mercedes", + "scheduled_service": "no", + "gps_code": "SATM", + "iata_code": "MDX", + "local_code": "RCE" + }, + { + "id": "5818", + "ident": "SATO", + "type": "small_airport", + "name": "Oberá Airport", + "latitude_deg": "-27.5181999207", + "longitude_deg": "-55.1241989136", + "elevation_ft": "1125", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-N", + "municipality": "Oberá", + "scheduled_service": "no", + "gps_code": "SATO", + "local_code": "OBE" + }, + { + "id": "5819", + "ident": "SATR", + "type": "medium_airport", + "name": "Reconquista Airport", + "latitude_deg": "-29.2103", + "longitude_deg": "-59.68", + "elevation_ft": "160", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-S", + "municipality": "Reconquista", + "scheduled_service": "no", + "gps_code": "SATR", + "iata_code": "RCQ", + "local_code": "RTA" + }, + { + "id": "5820", + "ident": "SATU", + "type": "medium_airport", + "name": "Curuzu Cuatia Airport", + "latitude_deg": "-29.7706", + "longitude_deg": "-57.9789", + "elevation_ft": "229", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-W", + "municipality": "Curuzu Cuatia", + "scheduled_service": "no", + "gps_code": "SATU", + "iata_code": "UZU", + "local_code": "CCA" + }, + { + "id": "39073", + "ident": "SAVA", + "type": "small_airport", + "name": "Piedra Del Aguila Airport", + "latitude_deg": "-40.192199707", + "longitude_deg": "-70.0100021362", + "elevation_ft": "2128", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Piedra del Aguila", + "scheduled_service": "no", + "gps_code": "SAVA", + "local_code": "AGI" + }, + { + "id": "5821", + "ident": "SAVB", + "type": "medium_airport", + "name": "El Bolson Airport", + "latitude_deg": "-41.9431991577", + "longitude_deg": "-71.5323028564", + "elevation_ft": "1141", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "El Bolson", + "scheduled_service": "no", + "gps_code": "SAVB", + "iata_code": "EHL", + "local_code": "BOL" + }, + { + "id": "5822", + "ident": "SAVC", + "type": "medium_airport", + "name": "General E. Mosconi Airport", + "latitude_deg": "-45.7853", + "longitude_deg": "-67.4655", + "elevation_ft": "189", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Comodoro Rivadavia", + "scheduled_service": "yes", + "gps_code": "SAVC", + "iata_code": "CRD", + "local_code": "CRV" + }, + { + "id": "29847", + "ident": "SAVD", + "type": "small_airport", + "name": "El Maiten Airport", + "latitude_deg": "-42.0292015076", + "longitude_deg": "-71.17250061040001", + "elevation_ft": "2355", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "El Maiten", + "scheduled_service": "no", + "gps_code": "SAVD", + "iata_code": "EMX", + "local_code": "EMA" + }, + { + "id": "5823", + "ident": "SAVE", + "type": "medium_airport", + "name": "Brigadier Antonio Parodi Airport", + "latitude_deg": "-42.908000946", + "longitude_deg": "-71.139503479", + "elevation_ft": "2621", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Esquel", + "scheduled_service": "yes", + "gps_code": "SAVE", + "iata_code": "EQS", + "local_code": "ESQ", + "wikipedia_link": "http://es.wikipedia.org/wiki/Aeropuerto_Brigadier_General_Antonio_Parodi" + }, + { + "id": "5824", + "ident": "SAVH", + "type": "medium_airport", + "name": "Las Heras Airport", + "latitude_deg": "-46.538517", + "longitude_deg": "-68.965323", + "elevation_ft": "1082", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Las Heras", + "scheduled_service": "yes", + "gps_code": "SAVH", + "iata_code": "LHS", + "local_code": "CLH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Colonia_Las_Heras_Airport" + }, + { + "id": "5825", + "ident": "SAVJ", + "type": "small_airport", + "name": "Ingeniero Jacobacci - Captain H R Bordón Airport", + "latitude_deg": "-41.3209", + "longitude_deg": "-69.574898", + "elevation_ft": "2925", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Ingeniero Jacobacci", + "scheduled_service": "no", + "gps_code": "SAVJ", + "iata_code": "IGB", + "local_code": "IJC" + }, + { + "id": "39074", + "ident": "SAVM", + "type": "small_airport", + "name": "Lago Musters Airport", + "latitude_deg": "-45.5752", + "longitude_deg": "-69.077", + "elevation_ft": "889", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Sarmiento", + "scheduled_service": "no", + "gps_code": "SAVM", + "local_code": "LGM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lago_Musters_Airport" + }, + { + "id": "5826", + "ident": "SAVN", + "type": "small_airport", + "name": "Antoine de Saint Exupéry Airport", + "latitude_deg": "-40.7512", + "longitude_deg": "-65.0343", + "elevation_ft": "85", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "San Antonio Oeste", + "scheduled_service": "yes", + "gps_code": "SAVN", + "iata_code": "OES", + "local_code": "SAN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Antoine_de_Saint_Exupéry_Airport" + }, + { + "id": "35411", + "ident": "SAVO", + "type": "small_airport", + "name": "San Pedro Airport", + "latitude_deg": "-33.704077", + "longitude_deg": "-59.725788", + "elevation_ft": "88", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "San Pedro", + "scheduled_service": "no", + "local_code": "PED" + }, + { + "id": "39075", + "ident": "SAVP", + "type": "small_airport", + "name": "Paso De Los Indios Airport", + "latitude_deg": "-43.8666992188", + "longitude_deg": "-69.05000305179999", + "elevation_ft": "575", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Paso de los Indios", + "scheduled_service": "no", + "gps_code": "SAVP", + "local_code": "IND" + }, + { + "id": "30113", + "ident": "SAVQ", + "type": "small_airport", + "name": "Maquinchao Airport", + "latitude_deg": "-41.2430992126", + "longitude_deg": "-68.7078018188", + "elevation_ft": "2912", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Maquinchao", + "scheduled_service": "no", + "gps_code": "SAVQ", + "iata_code": "MQD", + "local_code": "MAQ" + }, + { + "id": "29656", + "ident": "SAVR", + "type": "small_airport", + "name": "D. Casimiro Szlapelis Airport", + "latitude_deg": "-45.013599", + "longitude_deg": "-70.812202", + "elevation_ft": "2286", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Alto Rio Senguerr", + "scheduled_service": "no", + "gps_code": "SAVR", + "iata_code": "ARR", + "local_code": "ARS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alto_R%C3%ADo_Senguer_Airport" + }, + { + "id": "30414", + "ident": "SAVS", + "type": "small_airport", + "name": "Sierra Grande Airport", + "latitude_deg": "-41.5917015076", + "longitude_deg": "-65.33940124509999", + "elevation_ft": "688", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Sierra Grande", + "scheduled_service": "no", + "gps_code": "SAVS", + "iata_code": "SGV", + "local_code": "SGR" + }, + { + "id": "5827", + "ident": "SAVT", + "type": "medium_airport", + "name": "Almirante Marco Andres Zar Airport", + "latitude_deg": "-43.2105", + "longitude_deg": "-65.2703", + "elevation_ft": "141", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Rawson", + "scheduled_service": "yes", + "gps_code": "SAVT", + "iata_code": "REL", + "local_code": "TRE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Almirante_Marco_Andr%C3%A9s_Zar_Airport", + "keywords": "Trelew Airport" + }, + { + "id": "5828", + "ident": "SAVV", + "type": "medium_airport", + "name": "Gobernador Castello Airport", + "latitude_deg": "-40.8692", + "longitude_deg": "-63.0004", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Viedma / Carmen de Patagones", + "scheduled_service": "yes", + "gps_code": "SAVV", + "iata_code": "VDM", + "local_code": "VIE" + }, + { + "id": "5829", + "ident": "SAVY", + "type": "medium_airport", + "name": "El Tehuelche Airport", + "latitude_deg": "-42.7592", + "longitude_deg": "-65.1027", + "elevation_ft": "427", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Puerto Madryn", + "scheduled_service": "yes", + "gps_code": "SAVY", + "iata_code": "PMY", + "local_code": "DRY" + }, + { + "id": "30057", + "ident": "SAWA", + "type": "closed", + "name": "Lago Argentino Airport", + "latitude_deg": "-50.336102", + "longitude_deg": "-72.248596", + "elevation_ft": "732", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "El Calafate", + "scheduled_service": "yes", + "gps_code": "SAWA", + "iata_code": "ING" + }, + { + "id": "5830", + "ident": "SAWB", + "type": "small_airport", + "name": "Gustavo Marambio Airport", + "latitude_deg": "-64.238297", + "longitude_deg": "-56.630798", + "elevation_ft": "760", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Marambio Base", + "scheduled_service": "no", + "gps_code": "SAWB", + "local_code": "MBI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marambio_Base" + }, + { + "id": "5831", + "ident": "SAWC", + "type": "medium_airport", + "name": "El Calafate - Commander Armando Tola International Airport", + "latitude_deg": "-50.2803", + "longitude_deg": "-72.053101", + "elevation_ft": "669", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "El Calafate", + "scheduled_service": "yes", + "gps_code": "SAWC", + "iata_code": "FTE", + "local_code": "ECA", + "home_link": "http://www.aeropuertoelcalafate.com/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Comandante_Armando_Tola_International_Airport" + }, + { + "id": "5832", + "ident": "SAWD", + "type": "medium_airport", + "name": "Puerto Deseado Airport", + "latitude_deg": "-47.7353", + "longitude_deg": "-65.9041", + "elevation_ft": "268", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Puerto Deseado", + "scheduled_service": "yes", + "gps_code": "SAWD", + "iata_code": "PUD", + "local_code": "ADO" + }, + { + "id": "5833", + "ident": "SAWE", + "type": "medium_airport", + "name": "Hermes Quijada International Airport", + "latitude_deg": "-53.7777", + "longitude_deg": "-67.7494", + "elevation_ft": "65", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Rio Grande", + "scheduled_service": "no", + "gps_code": "SAWE", + "iata_code": "RGA", + "local_code": "GRA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hermes_Quijada_Airport" + }, + { + "id": "5834", + "ident": "SAWG", + "type": "medium_airport", + "name": "Piloto Civil N. Fernández Airport", + "latitude_deg": "-51.6089", + "longitude_deg": "-69.3126", + "elevation_ft": "61", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Rio Gallegos", + "scheduled_service": "yes", + "gps_code": "SAWG", + "iata_code": "RGL", + "local_code": "GAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Piloto_Civil_Norberto_Fern%C3%A1ndez_International_Airport", + "keywords": "Brigadier General D. A. Parodi" + }, + { + "id": "5835", + "ident": "SAWH", + "type": "medium_airport", + "name": "Malvinas Argentinas Airport", + "latitude_deg": "-54.8433", + "longitude_deg": "-68.2958", + "elevation_ft": "102", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Ushuaia", + "scheduled_service": "yes", + "gps_code": "SAWH", + "iata_code": "USH", + "local_code": "USU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ushuaia_International_Airport" + }, + { + "id": "5836", + "ident": "SAWJ", + "type": "medium_airport", + "name": "Capitan D Daniel Vazquez Airport", + "latitude_deg": "-49.306816", + "longitude_deg": "-67.802596", + "elevation_ft": "203", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "San Julian", + "scheduled_service": "yes", + "gps_code": "SAWJ", + "iata_code": "ULA", + "local_code": "SJU" + }, + { + "id": "41560", + "ident": "SAWL", + "type": "small_airport", + "name": "Tolhuin Lago Fagnano Airport", + "latitude_deg": "-54.499596", + "longitude_deg": "-67.172084", + "elevation_ft": "90", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Tolhuin", + "scheduled_service": "no", + "gps_code": "SAWL", + "local_code": "TOL" + }, + { + "id": "30341", + "ident": "SAWM", + "type": "small_airport", + "name": "Rio Mayo Airport", + "latitude_deg": "-45.703899383499994", + "longitude_deg": "-70.2455978394", + "elevation_ft": "1784", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Rio Mayo", + "scheduled_service": "no", + "gps_code": "SAWM", + "iata_code": "ROY", + "local_code": "RMY" + }, + { + "id": "5837", + "ident": "SAWO", + "type": "small_airport", + "name": "Ushuaia Naval Air Base", + "latitude_deg": "-54.8227", + "longitude_deg": "-68.3043", + "elevation_ft": "19", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-V", + "municipality": "Ushuaia", + "scheduled_service": "no", + "gps_code": "SAWO", + "local_code": "EAU" + }, + { + "id": "5838", + "ident": "SAWP", + "type": "medium_airport", + "name": "Perito Moreno Airport", + "latitude_deg": "-46.537899", + "longitude_deg": "-70.978699", + "elevation_ft": "1410", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Perito Moreno", + "scheduled_service": "yes", + "gps_code": "SAWP", + "iata_code": "PMQ", + "local_code": "PTM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Perito_Moreno_Airport" + }, + { + "id": "29898", + "ident": "SAWR", + "type": "small_airport", + "name": "Gobernador Gregores Airport", + "latitude_deg": "-48.7831", + "longitude_deg": "-70.150002", + "elevation_ft": "356", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Gobernador Gregores", + "scheduled_service": "yes", + "gps_code": "SAWR", + "iata_code": "GGS", + "local_code": "GRE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gobernador_Gregores_Airport" + }, + { + "id": "29997", + "ident": "SAWS", + "type": "small_airport", + "name": "Jose De San Martin Airport", + "latitude_deg": "-44.048599243199995", + "longitude_deg": "-70.4589004517", + "elevation_ft": "2407", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-U", + "municipality": "Chubut", + "scheduled_service": "no", + "gps_code": "SAWS", + "iata_code": "JSM", + "local_code": "JSM" + }, + { + "id": "29849", + "ident": "SAWT", + "type": "small_airport", + "name": "28 de Noviembre Airport", + "latitude_deg": "-51.605", + "longitude_deg": "-72.2203", + "elevation_ft": "909", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Rio Turbio", + "scheduled_service": "yes", + "gps_code": "SAWT", + "iata_code": "RYO", + "local_code": "BIO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rio_Turbio_Airport", + "keywords": "El Turbio" + }, + { + "id": "5839", + "ident": "SAWU", + "type": "medium_airport", + "name": "Santa Cruz Airport", + "latitude_deg": "-50.0165", + "longitude_deg": "-68.5792", + "elevation_ft": "364", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "Puerto Santa Cruz", + "scheduled_service": "yes", + "gps_code": "SAWU", + "iata_code": "RZA", + "local_code": "SCZ" + }, + { + "id": "39076", + "ident": "SAWZ", + "type": "small_airport", + "name": "Matienzo Airfield", + "latitude_deg": "-64.976998", + "longitude_deg": "-60.108992", + "elevation_ft": "75", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Matienzo Base", + "scheduled_service": "no", + "gps_code": "SAWZ", + "local_code": "BTM" + }, + { + "id": "39077", + "ident": "SAYB", + "type": "small_airport", + "name": "Base Belgrano II Airport", + "latitude_deg": "-77.874055", + "longitude_deg": "-34.62616", + "elevation_ft": "820", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Base Belgrano II", + "scheduled_service": "no", + "gps_code": "SAYB", + "local_code": "BEB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Belgrano_II_Base" + }, + { + "id": "39078", + "ident": "SAYE", + "type": "small_airport", + "name": "Esperanza Base", + "latitude_deg": "-63.400002", + "longitude_deg": "-56.983299", + "elevation_ft": "75", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Fortín Sargento Cabral", + "scheduled_service": "no", + "gps_code": "SAYE", + "local_code": "BET", + "wikipedia_link": "https://en.wikipedia.org/wiki/Esperanza_Base" + }, + { + "id": "41561", + "ident": "SAYJ", + "type": "small_airport", + "name": "Jubany Airbase", + "latitude_deg": "-62.2383", + "longitude_deg": "-58.666599", + "elevation_ft": "12", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Carlini Base", + "scheduled_service": "no", + "gps_code": "SAYJ", + "local_code": "BJY" + }, + { + "id": "39079", + "ident": "SAYO", + "type": "heliport", + "name": "Orcadas Base Heliport", + "latitude_deg": "-60.738473", + "longitude_deg": "-44.735655", + "elevation_ft": "75", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Laurie Island", + "scheduled_service": "no", + "gps_code": "SAYO", + "local_code": "OCD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orcadas_Base" + }, + { + "id": "39080", + "ident": "SAYS", + "type": "small_airport", + "name": "San Martín Base Airfield", + "latitude_deg": "-68.116699", + "longitude_deg": "-67.099998", + "elevation_ft": "75", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "San Martín Base", + "scheduled_service": "no", + "gps_code": "SAYS", + "local_code": "BSM", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Martin_Base" + }, + { + "id": "29676", + "ident": "SAZA", + "type": "small_airport", + "name": "Azul Airport", + "latitude_deg": "-36.8368988037", + "longitude_deg": "-59.8802986145", + "elevation_ft": "478", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Azul", + "scheduled_service": "no", + "gps_code": "SAZA", + "local_code": "ZUL" + }, + { + "id": "5840", + "ident": "SAZB", + "type": "medium_airport", + "name": "Comandante Espora Airport", + "latitude_deg": "-38.725", + "longitude_deg": "-62.1693", + "elevation_ft": "246", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Bahia Blanca", + "scheduled_service": "yes", + "gps_code": "SAZB", + "iata_code": "BHI", + "local_code": "BCA", + "home_link": "https://www.aeropuertobahiablanca.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Comandante_Espora_Airport", + "keywords": "Bahía Blanca Airport" + }, + { + "id": "5841", + "ident": "SAZC", + "type": "small_airport", + "name": "Brigadier D.H.E. Ruiz Airport", + "latitude_deg": "-37.446098", + "longitude_deg": "-61.889301", + "elevation_ft": "767", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Coronel Suarez", + "scheduled_service": "no", + "gps_code": "SAZC", + "iata_code": "CSZ", + "local_code": "SUZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brigadier_Hector_Eduardo_Ruiz_Airport" + }, + { + "id": "32248", + "ident": "SAZD", + "type": "small_airport", + "name": "Dolores Airport", + "latitude_deg": "-36.3225", + "longitude_deg": "-57.7214", + "elevation_ft": "32", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Dolores", + "scheduled_service": "no", + "gps_code": "SAZD", + "local_code": "DOL" + }, + { + "id": "30260", + "ident": "SAZE", + "type": "small_airport", + "name": "Pigüé Airport", + "latitude_deg": "-37.607098", + "longitude_deg": "-62.382641", + "elevation_ft": "997", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Pigüé", + "scheduled_service": "no", + "gps_code": "SAZE", + "local_code": "PIG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pig%C3%BC%C3%A9_Airport" + }, + { + "id": "5842", + "ident": "SAZF", + "type": "small_airport", + "name": "Olavarria Airport", + "latitude_deg": "-36.889999", + "longitude_deg": "-60.216599", + "elevation_ft": "551", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Olavarria", + "scheduled_service": "no", + "gps_code": "SAZF", + "iata_code": "OVR", + "local_code": "OLA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Olavarr%C3%ADa_Airport" + }, + { + "id": "5843", + "ident": "SAZG", + "type": "medium_airport", + "name": "General Pico Airport", + "latitude_deg": "-35.6962013245", + "longitude_deg": "-63.7583007812", + "elevation_ft": "459", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "General Pico", + "scheduled_service": "no", + "gps_code": "SAZG", + "iata_code": "GPO", + "local_code": "GPI" + }, + { + "id": "5844", + "ident": "SAZH", + "type": "medium_airport", + "name": "Tres Arroyos Airport", + "latitude_deg": "-38.3869", + "longitude_deg": "-60.3297", + "elevation_ft": "400", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Tres Arroyos", + "scheduled_service": "no", + "gps_code": "SAZH", + "iata_code": "OYO", + "local_code": "YOS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tres_Arroyos_Airport" + }, + { + "id": "5845", + "ident": "SAZI", + "type": "small_airport", + "name": "Bolívar Airport", + "latitude_deg": "-36.1866", + "longitude_deg": "-61.0764", + "elevation_ft": "308", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Bolívar", + "scheduled_service": "no", + "gps_code": "SAZI", + "local_code": "BLR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bol%C3%ADvar_Airport" + }, + { + "id": "29998", + "ident": "SAZJ", + "type": "small_airport", + "name": "Benito Juarez Airport", + "latitude_deg": "-37.7061004639", + "longitude_deg": "-59.791900634799994", + "elevation_ft": "682", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Benito Juarez", + "scheduled_service": "no", + "gps_code": "SAZJ", + "local_code": "JRZ" + }, + { + "id": "41562", + "ident": "SAZK", + "type": "small_airport", + "name": "Cerro Catedral Airport", + "latitude_deg": "-41.16329956049999", + "longitude_deg": "-71.4427032471", + "elevation_ft": "3450", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Cerro Catedral", + "scheduled_service": "no", + "gps_code": "SAZK", + "local_code": "CDM" + }, + { + "id": "5846", + "ident": "SAZL", + "type": "medium_airport", + "name": "Santa Teresita Airport", + "latitude_deg": "-36.5423", + "longitude_deg": "-56.7218", + "elevation_ft": "9", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Santa Teresita", + "scheduled_service": "yes", + "gps_code": "SAZL", + "iata_code": "SST", + "local_code": "STR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Teresita_Airport" + }, + { + "id": "5847", + "ident": "SAZM", + "type": "medium_airport", + "name": "Ástor Piazzola International Airport", + "latitude_deg": "-37.9342", + "longitude_deg": "-57.5733", + "elevation_ft": "72", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Mar del Plata", + "scheduled_service": "yes", + "gps_code": "SAZM", + "iata_code": "MDQ", + "local_code": "MDP", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%81stor_Piazzola_International_Airport", + "keywords": "Brigadier General Bartolome De La Colina International Airport" + }, + { + "id": "5848", + "ident": "SAZN", + "type": "medium_airport", + "name": "Presidente Peron Airport", + "latitude_deg": "-38.949001", + "longitude_deg": "-68.155701", + "elevation_ft": "895", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Neuquen", + "scheduled_service": "yes", + "gps_code": "SAZN", + "iata_code": "NQN", + "local_code": "NEU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Presidente_Per%C3%B3n_International_Airport" + }, + { + "id": "5849", + "ident": "SAZO", + "type": "medium_airport", + "name": "Necochea Airport", + "latitude_deg": "-38.490746", + "longitude_deg": "-58.816337", + "elevation_ft": "72", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Necochea", + "scheduled_service": "yes", + "gps_code": "SAZO", + "iata_code": "NEC", + "local_code": "NEC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Necochea_Airport" + }, + { + "id": "5850", + "ident": "SAZP", + "type": "medium_airport", + "name": "Comodoro Pedro Zanni Airport", + "latitude_deg": "-35.8446", + "longitude_deg": "-61.8576", + "elevation_ft": "278", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Pehuajó", + "scheduled_service": "no", + "gps_code": "SAZP", + "iata_code": "PEH", + "local_code": "PEH" + }, + { + "id": "30339", + "ident": "SAZQ", + "type": "small_airport", + "name": "Rio Colorado Airport", + "latitude_deg": "-38.995", + "longitude_deg": "-64.1408", + "elevation_ft": "275", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "Rio Colorado", + "scheduled_service": "no", + "gps_code": "SAZQ", + "local_code": "COL" + }, + { + "id": "5851", + "ident": "SAZR", + "type": "medium_airport", + "name": "Santa Rosa Airport", + "latitude_deg": "-36.588299", + "longitude_deg": "-64.275703", + "elevation_ft": "630", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Santa Rosa", + "scheduled_service": "yes", + "gps_code": "SAZR", + "iata_code": "RSA", + "local_code": "OSA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Rosa_Airport_(Argentina)" + }, + { + "id": "5852", + "ident": "SAZS", + "type": "medium_airport", + "name": "San Carlos De Bariloche Airport", + "latitude_deg": "-41.151199", + "longitude_deg": "-71.157501", + "elevation_ft": "2774", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-R", + "municipality": "San Carlos de Bariloche", + "scheduled_service": "yes", + "gps_code": "SAZS", + "iata_code": "BRC", + "local_code": "BAR", + "home_link": "http://www.aa2000.com.ar/bariloche", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Carlos_de_Bariloche_Airport" + }, + { + "id": "5853", + "ident": "SAZT", + "type": "medium_airport", + "name": "Héroes De Malvinas Airport", + "latitude_deg": "-37.234634", + "longitude_deg": "-59.228647", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Tandil", + "scheduled_service": "no", + "gps_code": "SAZT", + "iata_code": "TDL", + "local_code": "DIL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tandil_Airport" + }, + { + "id": "39081", + "ident": "SAZU", + "type": "small_airport", + "name": "Puelches Airport", + "latitude_deg": "-38.1451034546", + "longitude_deg": "-65.9229431152", + "elevation_ft": "180", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-L", + "municipality": "Puelches", + "scheduled_service": "no", + "gps_code": "SAZU", + "local_code": "PUE" + }, + { + "id": "5854", + "ident": "SAZV", + "type": "medium_airport", + "name": "Villa Gesell Airport", + "latitude_deg": "-37.2354", + "longitude_deg": "-57.0292", + "elevation_ft": "32", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Villa Gesell", + "scheduled_service": "no", + "gps_code": "SAZV", + "iata_code": "VLG", + "local_code": "GES", + "wikipedia_link": "https://en.wikipedia.org/wiki/Villa_Gesell_Airport" + }, + { + "id": "5855", + "ident": "SAZW", + "type": "medium_airport", + "name": "Cutral-Co Airport", + "latitude_deg": "-38.939701080300004", + "longitude_deg": "-69.2646026611", + "elevation_ft": "2132", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Cutral-Co", + "scheduled_service": "no", + "gps_code": "SAZW", + "iata_code": "CUT", + "local_code": "CUT" + }, + { + "id": "30202", + "ident": "SAZX", + "type": "small_airport", + "name": "Nueve de Julio Airport", + "latitude_deg": "-35.3997", + "longitude_deg": "-60.9358", + "elevation_ft": "246", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-B", + "municipality": "Nueve de Julio", + "scheduled_service": "no", + "gps_code": "SAZX", + "local_code": "LIO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nueve_de_Julio_Airport" + }, + { + "id": "5856", + "ident": "SAZY", + "type": "medium_airport", + "name": "Aviador C. Campos Airport", + "latitude_deg": "-40.075401", + "longitude_deg": "-71.137299", + "elevation_ft": "2569", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Q", + "municipality": "Chapelco/San Martin de los Andes", + "scheduled_service": "yes", + "gps_code": "SAZY", + "iata_code": "CPC", + "local_code": "CHP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aviador_Carlos_Campos_Airport" + }, + { + "id": "32578", + "ident": "SB-VIU", + "type": "small_airport", + "name": "Viru Harbour Airstrip", + "latitude_deg": "-8.5085", + "longitude_deg": "157.69", + "elevation_ft": "130", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-WE", + "municipality": "Viru", + "scheduled_service": "no", + "gps_code": "AGVH", + "iata_code": "VIU" + }, + { + "id": "131", + "ident": "SB03", + "type": "closed", + "name": "Fazenda Sao Sebastiao Airport", + "latitude_deg": "-12.736300468444824", + "longitude_deg": "-61.110198974609375", + "elevation_ft": "919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Sao Jose so Barreiro", + "scheduled_service": "no", + "gps_code": "SB03", + "local_code": "SB03" + }, + { + "id": "132", + "ident": "SB04", + "type": "closed", + "name": "Aurea Airport", + "latitude_deg": "-19.287399291992188", + "longitude_deg": "-46.51169967651367", + "elevation_ft": "3700", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Serra Do Salitre", + "scheduled_service": "no", + "gps_code": "SB04", + "local_code": "SB04" + }, + { + "id": "134", + "ident": "SB06", + "type": "small_airport", + "name": "Pirenopolis Centeral Airport", + "latitude_deg": "-15.8489", + "longitude_deg": "-48.982601", + "elevation_ft": "2625", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Pirenópolis", + "scheduled_service": "no", + "gps_code": "SNMH", + "local_code": "SNMH" + }, + { + "id": "136", + "ident": "SB26", + "type": "small_airport", + "name": "Aeródromo de Campo Formoso", + "latitude_deg": "-10.4955", + "longitude_deg": "-40.4874", + "elevation_ft": "2805", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Campo Formoso", + "scheduled_service": "no", + "gps_code": "SD27", + "local_code": "BA0346", + "keywords": "SWCG, JMF Airport, SB26" + }, + { + "id": "137", + "ident": "SB29", + "type": "small_airport", + "name": "Vista Alegre Airport", + "latitude_deg": "-6.87094", + "longitude_deg": "-48.534901", + "elevation_ft": "587", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Araguanã", + "scheduled_service": "no", + "keywords": "SB29, SJOT, Fazenda Bela Vista" + }, + { + "id": "5857", + "ident": "SBAA", + "type": "medium_airport", + "name": "Conceição do Araguaia Airport", + "latitude_deg": "-8.34835", + "longitude_deg": "-49.301498", + "elevation_ft": "653", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Conceição do Araguaia", + "scheduled_service": "no", + "gps_code": "SBAA", + "iata_code": "CDJ", + "local_code": "PA0008", + "wikipedia_link": "https://en.wikipedia.org/wiki/Concei%C3%A7%C3%A3o_do_Araguaia_Airport" + }, + { + "id": "275", + "ident": "SBAC", + "type": "medium_airport", + "name": "Aracati Dragão do Mar Regional Airport", + "latitude_deg": "-4.568896", + "longitude_deg": "-37.805135", + "elevation_ft": "128", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Aracati", + "scheduled_service": "no", + "gps_code": "SBAC", + "iata_code": "ARX", + "local_code": "CE0004", + "home_link": "https://www.ceara.gov.br/2021/06/25/aeroporto-de-aracati-retoma-voos-comerciais-em-julho/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aracati_Airport", + "keywords": "SNAT, Dragão do Mar Regional" + }, + { + "id": "5858", + "ident": "SBAF", + "type": "medium_airport", + "name": "Campo Délio Jardim de Mattos Airport", + "latitude_deg": "-22.875099", + "longitude_deg": "-43.384701", + "elevation_ft": "110", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SBAF", + "local_code": "RJ9002", + "wikipedia_link": "https://en.wikipedia.org/wiki/Afonsos_Air_Force_Base", + "keywords": "Afonsos AFB." + }, + { + "id": "5859", + "ident": "SBAM", + "type": "small_airport", + "name": "Amapá Airport", + "latitude_deg": "2.07751", + "longitude_deg": "-50.8582", + "elevation_ft": "45", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Amapá", + "scheduled_service": "no", + "gps_code": "SBAM", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Amap%C3%A1" + }, + { + "id": "5860", + "ident": "SBAN", + "type": "medium_airport", + "name": "Base Aérea Airport", + "latitude_deg": "-16.2292", + "longitude_deg": "-48.964298", + "elevation_ft": "3731", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Anápolis", + "scheduled_service": "no", + "gps_code": "SBAN", + "local_code": "GO9001", + "wikipedia_link": "http://pt.wikipedia.org/wiki/Base_A%C3%A9rea_de_An%C3%A1polis" + }, + { + "id": "5861", + "ident": "SBAQ", + "type": "medium_airport", + "name": "Araraquara Airport", + "latitude_deg": "-21.812", + "longitude_deg": "-48.132999", + "elevation_ft": "2334", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araraquara", + "scheduled_service": "yes", + "gps_code": "SBAQ", + "iata_code": "AQA", + "local_code": "SP0012", + "home_link": "http://www.daesp.sp.gov.br/aeroporto-estadual-de-araraquara-bartolomeu-de-gusmao/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Araraquara_Airport" + }, + { + "id": "5862", + "ident": "SBAR", + "type": "medium_airport", + "name": "Aracaju - Santa Maria International Airport", + "latitude_deg": "-10.984", + "longitude_deg": "-37.070301", + "elevation_ft": "139", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SE", + "municipality": "Aracaju", + "scheduled_service": "yes", + "gps_code": "SBAR", + "iata_code": "AJU", + "local_code": "SE0001", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-internacional-santa-maria-aracaju/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Maria_Airport_(Sergipe)" + }, + { + "id": "5864", + "ident": "SBAT", + "type": "medium_airport", + "name": "Piloto Osvaldo Marques Dias Airport", + "latitude_deg": "-9.866389", + "longitude_deg": "-56.106298", + "elevation_ft": "948", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alta Floresta", + "scheduled_service": "yes", + "gps_code": "SBAT", + "iata_code": "AFL", + "local_code": "MT0003", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alta_Floresta_Airport" + }, + { + "id": "5865", + "ident": "SBAU", + "type": "medium_airport", + "name": "Araçatuba Airport", + "latitude_deg": "-21.141479", + "longitude_deg": "-50.424575", + "elevation_ft": "1361", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araçatuba", + "scheduled_service": "yes", + "gps_code": "SBAU", + "iata_code": "ARU", + "local_code": "SP0009", + "home_link": "http://www.daesp.sp.gov.br/aeroporto-estadual-de-aracatuba-dario-guarita/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ara%C3%A7atuba_Airport", + "keywords": "Dario Guarita State Airport," + }, + { + "id": "255", + "ident": "SBAV", + "type": "closed", + "name": "Usina Porto Primavera Airport", + "latitude_deg": "-22.5256004333", + "longitude_deg": "-52.9721984863", + "elevation_ft": "1067", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Rosana", + "scheduled_service": "no", + "gps_code": "SBAV", + "keywords": "SJDE" + }, + { + "id": "5866", + "ident": "SBAX", + "type": "small_airport", + "name": "Romeu Zema Airport", + "latitude_deg": "-19.5632", + "longitude_deg": "-46.9604", + "elevation_ft": "3276", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Araxá", + "scheduled_service": "yes", + "gps_code": "SBAX", + "iata_code": "AAX", + "local_code": "MG0008", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arax%C3%A1_Airport" + }, + { + "id": "5867", + "ident": "SBBE", + "type": "large_airport", + "name": "Val de Cans/Júlio Cezar Ribeiro International Airport", + "latitude_deg": "-1.379279", + "longitude_deg": "-48.476207", + "elevation_ft": "54", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Belém", + "scheduled_service": "yes", + "gps_code": "SBBE", + "iata_code": "BEL", + "local_code": "PA0001", + "home_link": "http://www.infraero.gov.br/index.php/br/aeroportos/para/aeroporto-internacional-de-belem.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Val_de_Cans_International_Airport" + }, + { + "id": "5868", + "ident": "SBBG", + "type": "medium_airport", + "name": "Comandante Gustavo Kraemer Airport", + "latitude_deg": "-31.390499", + "longitude_deg": "-54.112202", + "elevation_ft": "600", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Bagé", + "scheduled_service": "no", + "gps_code": "SBBG", + "iata_code": "BGX", + "local_code": "RS0010", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-internacional-de-bage-comandante-gustavo-kraemer/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Comandante_Gustavo_Kraemer_Airport" + }, + { + "id": "5869", + "ident": "SBBH", + "type": "medium_airport", + "name": "Pampulha - Carlos Drummond de Andrade Airport", + "latitude_deg": "-19.8512", + "longitude_deg": "-43.9506", + "elevation_ft": "2589", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SBBH", + "iata_code": "PLU", + "local_code": "MG0003", + "home_link": "http://www.infraero.gov.br/usa/aero_prev_home.php?ai=204", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pampulha_Domestic_Airport", + "keywords": "BHZ" + }, + { + "id": "5870", + "ident": "SBBI", + "type": "medium_airport", + "name": "Bacacheri Airport", + "latitude_deg": "-25.4051", + "longitude_deg": "-49.231998", + "elevation_ft": "3057", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Curitiba", + "scheduled_service": "no", + "gps_code": "SBBI", + "iata_code": "BFH", + "local_code": "PR0006", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bacacheri_Airport" + }, + { + "id": "46245", + "ident": "SBBP", + "type": "small_airport", + "name": "Estadual Arthur Siqueira Airport", + "latitude_deg": "-22.978822", + "longitude_deg": "-46.537131", + "elevation_ft": "2887", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Bragança Paulista", + "scheduled_service": "no", + "gps_code": "SBBP", + "iata_code": "BJP", + "local_code": "SP0036", + "home_link": "http://www.daesp.sp.gov.br/aeroportos/bragpaulista.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bragan%C3%A7a_Paulista_Airport", + "keywords": "SDBP" + }, + { + "id": "5871", + "ident": "SBBQ", + "type": "medium_airport", + "name": "Major Brigadeiro Doorgal Borges Airport", + "latitude_deg": "-21.2672", + "longitude_deg": "-43.76101", + "elevation_ft": "3657", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Barbacena", + "scheduled_service": "no", + "gps_code": "SBBQ", + "local_code": "MG9002", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Barbacena", + "keywords": "QAK" + }, + { + "id": "5872", + "ident": "SBBR", + "type": "large_airport", + "name": "Presidente Juscelino Kubitschek International Airport", + "latitude_deg": "-15.869167", + "longitude_deg": "-47.920834", + "elevation_ft": "3497", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "yes", + "gps_code": "SBBR", + "iata_code": "BSB", + "local_code": "DF0001", + "home_link": "http://www.infraero.gov.br/usa/aero_prev_home.php?ai=146", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bras%C3%ADlia_International_Airport" + }, + { + "id": "5873", + "ident": "SBBT", + "type": "medium_airport", + "name": "Chafei Amsei Airport", + "latitude_deg": "-20.584499359131", + "longitude_deg": "-48.594100952148", + "elevation_ft": "1898", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barretos", + "scheduled_service": "no", + "gps_code": "SNBA", + "iata_code": "BAT", + "local_code": "SNBA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barretos_Airport", + "keywords": "SBBT" + }, + { + "id": "5874", + "ident": "SBBU", + "type": "small_airport", + "name": "Bauru Airport", + "latitude_deg": "-22.344999", + "longitude_deg": "-49.053799", + "elevation_ft": "2025", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Bauru", + "scheduled_service": "no", + "gps_code": "SBBU", + "iata_code": "BAU", + "local_code": "SP0017", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bauru_Airport" + }, + { + "id": "5875", + "ident": "SBBV", + "type": "medium_airport", + "name": "Atlas Brasil Cantanhede Airport", + "latitude_deg": "2.845855", + "longitude_deg": "-60.690944", + "elevation_ft": "276", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Boa Vista", + "scheduled_service": "yes", + "gps_code": "SBBV", + "iata_code": "BVB", + "local_code": "RR0001", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boa_Vista_International_Airport", + "keywords": "Boa Vista International Airport" + }, + { + "id": "5876", + "ident": "SBBW", + "type": "medium_airport", + "name": "Barra do Garças Airport", + "latitude_deg": "-15.861417", + "longitude_deg": "-52.389008", + "elevation_ft": "1147", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra do Garças", + "scheduled_service": "no", + "gps_code": "SBBW", + "iata_code": "BPG", + "local_code": "MT0008", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barra_do_Gar%C3%A7as_Airport" + }, + { + "id": "5877", + "ident": "SBBZ", + "type": "medium_airport", + "name": "Umberto Modiano Airport", + "latitude_deg": "-22.770881", + "longitude_deg": "-41.96308", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Cabo Frio", + "scheduled_service": "no", + "gps_code": "SSBZ", + "iata_code": "BZC", + "local_code": "RJ0012", + "wikipedia_link": "https://en.wikipedia.org/wiki/Umberto_Modiano_Airport", + "keywords": "SBBZ" + }, + { + "id": "5878", + "ident": "SBCA", + "type": "medium_airport", + "name": "Coronel Adalberto Mendes da Silva Airport", + "latitude_deg": "-25.000323", + "longitude_deg": "-53.501208", + "elevation_ft": "2481", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Cascavel", + "scheduled_service": "yes", + "gps_code": "SBCA", + "iata_code": "CAC", + "local_code": "PR0005", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cascavel_Airport" + }, + { + "id": "5879", + "ident": "SBCB", + "type": "small_airport", + "name": "Cabo Frio Airport", + "latitude_deg": "-22.921485", + "longitude_deg": "-42.071874", + "elevation_ft": "22", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Cabo Frio", + "scheduled_service": "yes", + "gps_code": "SBCB", + "iata_code": "CFB", + "local_code": "RJ0003", + "home_link": "http://www.grupolibra.com.br/libra-aeroporto/cabo-frio/institucional", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cabo_Frio_International_Airport" + }, + { + "id": "5880", + "ident": "SBCC", + "type": "medium_airport", + "name": "Campo de Provas Brigadeiro Veloso", + "latitude_deg": "-9.33394", + "longitude_deg": "-54.965401", + "elevation_ft": "1777", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Novo Progresso", + "scheduled_service": "no", + "gps_code": "SBCC", + "local_code": "PA9001", + "home_link": "https://www.fab.mil.br/organizacoes/mostra/61/CAMPO%20DE%20PROVAS%20BRIGADEIRO%20VELLOSO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cachimbo_Airport", + "keywords": "Cachimbo" + }, + { + "id": "5881", + "ident": "SBCD", + "type": "small_airport", + "name": "Caçador Airport", + "latitude_deg": "-26.787423", + "longitude_deg": "-50.939942", + "elevation_ft": "3376", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Caçador", + "scheduled_service": "yes", + "gps_code": "SBCD", + "iata_code": "CFC", + "local_code": "SC0006", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ca%C3%A7ador_Airport", + "keywords": "Carlos Alberto da Costa Neves Airport" + }, + { + "id": "5882", + "ident": "SBCF", + "type": "large_airport", + "name": "Tancredo Neves International Airport", + "latitude_deg": "-19.63571", + "longitude_deg": "-43.966928", + "elevation_ft": "2721", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "yes", + "gps_code": "SBCF", + "iata_code": "CNF", + "local_code": "MG0001", + "home_link": "http://www.infraero.gov.br/usa/aero_prev_home.php?ai=207", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tancredo_Neves_International_Airport", + "keywords": "http://www.infraero.gov.br/usa/aero_prev_home.php?ai=207" + }, + { + "id": "5883", + "ident": "SBCG", + "type": "medium_airport", + "name": "Campo Grande Airport", + "latitude_deg": "-20.469998", + "longitude_deg": "-54.673988", + "elevation_ft": "1833", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "yes", + "gps_code": "SBCG", + "iata_code": "CGR", + "local_code": "MS0001", + "wikipedia_link": "https://en.wikipedia.org/wiki/Campo_Grande_International_Airport" + }, + { + "id": "5884", + "ident": "SBCH", + "type": "medium_airport", + "name": "Serafin Enoss Bertaso Airport", + "latitude_deg": "-27.134199", + "longitude_deg": "-52.656601", + "elevation_ft": "2154", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Chapecó", + "scheduled_service": "yes", + "gps_code": "SBCH", + "iata_code": "XAP", + "local_code": "SC0003", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chapec%C3%B3_Airport", + "keywords": "Chapecó Airport" + }, + { + "id": "5885", + "ident": "SBCI", + "type": "medium_airport", + "name": "Brig. Lysias Augusto Rodrigues Airport", + "latitude_deg": "-7.32044", + "longitude_deg": "-47.458698", + "elevation_ft": "565", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Carolina", + "scheduled_service": "no", + "gps_code": "SBCI", + "iata_code": "CLN", + "local_code": "MA0003" + }, + { + "id": "5886", + "ident": "SBCJ", + "type": "medium_airport", + "name": "Carajás Airport", + "latitude_deg": "-6.117841", + "longitude_deg": "-50.003372", + "elevation_ft": "2064", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Parauapebas", + "scheduled_service": "yes", + "gps_code": "SBCJ", + "iata_code": "CKS", + "local_code": "PA0006", + "home_link": "http://www.infraero.gov.br/index.php/us/airports/para/carajas-airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Caraj%C3%A1s_Airport" + }, + { + "id": "5887", + "ident": "SBCM", + "type": "medium_airport", + "name": "Diomício Freitas Airport", + "latitude_deg": "-28.725743", + "longitude_deg": "-49.424475", + "elevation_ft": "92", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Criciúma", + "scheduled_service": "yes", + "gps_code": "SSIM", + "iata_code": "CCM", + "local_code": "SC0009", + "wikipedia_link": "https://en.wikipedia.org/wiki/Diom%C3%ADcio_Freitas_Airport", + "keywords": "SBCM, Forquilhinha - Criciúma Airport" + }, + { + "id": "35414", + "ident": "SBCN", + "type": "small_airport", + "name": "Nelson Ribeiro Guimarães Airport", + "latitude_deg": "-17.725096", + "longitude_deg": "-48.606324", + "elevation_ft": "2307", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Caldas Novas", + "scheduled_service": "yes", + "gps_code": "SBCN", + "iata_code": "CLV", + "local_code": "GO0003", + "wikipedia_link": "https://en.wikipedia.org/wiki/Caldas_Novas_Airport", + "keywords": "SWKN, Caldas Novas Airport" + }, + { + "id": "5888", + "ident": "SBCO", + "type": "medium_airport", + "name": "Canoas Air Force Base", + "latitude_deg": "-29.945928", + "longitude_deg": "-51.144413", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Porto Alegre", + "scheduled_service": "no", + "gps_code": "SBCO", + "local_code": "RS9002", + "home_link": "http://www.fab.mil.br/organizacoes/mostra/39/BASE%20A%C3%89REA%20DE%20CANOAS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Canoas_Air_Force_Base", + "keywords": "Porto Alegre AFB, Base Aérea de Canoas, QNS" + }, + { + "id": "5889", + "ident": "SBCP", + "type": "medium_airport", + "name": "Bartolomeu Lisandro Airport", + "latitude_deg": "-21.698299", + "longitude_deg": "-41.301701", + "elevation_ft": "57", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Campos Dos Goytacazes", + "scheduled_service": "yes", + "gps_code": "SBCP", + "iata_code": "CAW", + "local_code": "RJ0006", + "home_link": "http://www.infraero.gov.br/index.php/aeroportos/rio-de-janeiro/aeroporto-de-bartolomeu-lisandro.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bartolomeu_Lysandro_Airport" + }, + { + "id": "5890", + "ident": "SBCR", + "type": "medium_airport", + "name": "Corumbá International Airport", + "latitude_deg": "-19.01193", + "longitude_deg": "-57.672772", + "elevation_ft": "463", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "yes", + "gps_code": "SBCR", + "iata_code": "CMG", + "local_code": "MS0009", + "wikipedia_link": "https://en.wikipedia.org/wiki/Corumb%C3%A1_International_Airport" + }, + { + "id": "5891", + "ident": "SBCT", + "type": "medium_airport", + "name": "Afonso Pena Airport", + "latitude_deg": "-25.5285", + "longitude_deg": "-49.1758", + "elevation_ft": "2988", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Curitiba", + "scheduled_service": "yes", + "gps_code": "SBCT", + "iata_code": "CWB", + "local_code": "PR0001", + "wikipedia_link": "https://en.wikipedia.org/wiki/Afonso_Pena_International_Airport" + }, + { + "id": "5892", + "ident": "SBCV", + "type": "medium_airport", + "name": "Caravelas Airport", + "latitude_deg": "-17.6523", + "longitude_deg": "-39.253101", + "elevation_ft": "36", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Caravelas", + "scheduled_service": "no", + "gps_code": "SSCV", + "iata_code": "CRQ", + "local_code": "BA0012", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Caravelas", + "keywords": "SBCV" + }, + { + "id": "5893", + "ident": "SBCX", + "type": "medium_airport", + "name": "Hugo Cantergiani Regional Airport", + "latitude_deg": "-29.197183", + "longitude_deg": "-51.187647", + "elevation_ft": "2472", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Caxias Do Sul", + "scheduled_service": "yes", + "gps_code": "SBCX", + "iata_code": "CXJ", + "local_code": "RS0007", + "wikipedia_link": "https://en.wikipedia.org/wiki/Caxias_do_Sul_Airport", + "keywords": "Campo dos Bugres Airport, Caxias do Sul Airport" + }, + { + "id": "5894", + "ident": "SBCY", + "type": "medium_airport", + "name": "Marechal Rondon Airport", + "latitude_deg": "-15.6529", + "longitude_deg": "-56.116699", + "elevation_ft": "617", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cuiabá", + "scheduled_service": "yes", + "gps_code": "SBCY", + "iata_code": "CGB", + "local_code": "MT0001", + "home_link": "http://www.infraero.gov.br/index.php/aeroportos/mato-grosso/aeroporto-internacional-marechal-rondon", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marechal_Rondon_International_Airport" + }, + { + "id": "5895", + "ident": "SBCZ", + "type": "medium_airport", + "name": "Cruzeiro do Sul Airport", + "latitude_deg": "-7.59991", + "longitude_deg": "-72.769501", + "elevation_ft": "637", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Cruzeiro Do Sul", + "scheduled_service": "yes", + "gps_code": "SBCZ", + "iata_code": "CZS", + "local_code": "AC0002", + "home_link": "http://www.infraero.gov.br/index.php/aeroportos/acre/aeroporto-cruzeiro-do-sul.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cruzeiro_do_Sul_International_Airport" + }, + { + "id": "44450", + "ident": "SBDB", + "type": "small_airport", + "name": "Bonito Airport", + "latitude_deg": "-21.2473", + "longitude_deg": "-56.452399", + "elevation_ft": "1180", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bonito", + "scheduled_service": "yes", + "gps_code": "SBDB", + "iata_code": "BYO", + "local_code": "MS0004", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bonito_Airport", + "keywords": "SJDB" + }, + { + "id": "5896", + "ident": "SBDN", + "type": "medium_airport", + "name": "Presidente Prudente Airport", + "latitude_deg": "-22.1751", + "longitude_deg": "-51.424599", + "elevation_ft": "1477", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Presidente Prudente", + "scheduled_service": "yes", + "gps_code": "SBDN", + "iata_code": "PPB", + "local_code": "SP0005", + "home_link": "http://www.daesp.sp.gov.br/aeroporto-detalhe/?id=879", + "wikipedia_link": "https://en.wikipedia.org/wiki/Presidente_Prudente_Airport" + }, + { + "id": "342811", + "ident": "SBEA", + "type": "heliport", + "name": "DIRAD Heliport", + "latitude_deg": "-22.867886", + "longitude_deg": "-43.370934", + "elevation_ft": "61", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SBEA", + "local_code": "RJ9011" + }, + { + "id": "35415", + "ident": "SBEC", + "type": "heliport", + "name": "Plataforma P-15 Helipad", + "latitude_deg": "-22.6775", + "longitude_deg": "-40.606098", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Macaé", + "scheduled_service": "no", + "gps_code": "SBEC" + }, + { + "id": "5897", + "ident": "SBEG", + "type": "large_airport", + "name": "Eduardo Gomes International Airport", + "latitude_deg": "-3.03861", + "longitude_deg": "-60.049702", + "elevation_ft": "264", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Manaus", + "scheduled_service": "yes", + "gps_code": "SBEG", + "iata_code": "MAO", + "local_code": "AM0001", + "home_link": "https://airport-manaus.com.br/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eduardo_Gomes_International_Airport" + }, + { + "id": "5898", + "ident": "SBEK", + "type": "medium_airport", + "name": "Jacareacanga Airport", + "latitude_deg": "-6.23316", + "longitude_deg": "-57.776901", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Jacareacanga", + "scheduled_service": "no", + "gps_code": "SBEK", + "iata_code": "JCR", + "local_code": "PA0011" + }, + { + "id": "302497", + "ident": "SBEP", + "type": "small_airport", + "name": "Espinosa Airport", + "latitude_deg": "-14.9336944444", + "longitude_deg": "-42.81", + "elevation_ft": "1900", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Espinosa", + "scheduled_service": "no", + "gps_code": "SBEP", + "iata_code": "ESI", + "wikipedia_link": "http://pt.wikipedia.org/wiki/Aeroporto_de_Espinosa" + }, + { + "id": "5899", + "ident": "SBES", + "type": "small_airport", + "name": "Tenente Jorge Henrique Möller Airport", + "latitude_deg": "-22.812901", + "longitude_deg": "-42.092602", + "elevation_ft": "61", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "São Pedro da Aldeia", + "scheduled_service": "no", + "gps_code": "SBES", + "local_code": "RJ9001", + "home_link": "https://www.marinha.mil.br/baenspa/Aeródromo" + }, + { + "id": "5900", + "ident": "SBFI", + "type": "medium_airport", + "name": "Cataratas International Airport", + "latitude_deg": "-25.594167", + "longitude_deg": "-54.489444", + "elevation_ft": "786", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Foz do Iguaçu", + "scheduled_service": "yes", + "gps_code": "SBFI", + "iata_code": "IGU", + "local_code": "PR0002", + "wikipedia_link": "https://en.wikipedia.org/wiki/Foz_do_Igua%C3%A7u_International_Airport" + }, + { + "id": "5901", + "ident": "SBFL", + "type": "large_airport", + "name": "Hercílio Luz International Airport", + "latitude_deg": "-27.670279", + "longitude_deg": "-48.552502", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Florianópolis", + "scheduled_service": "yes", + "gps_code": "SBFL", + "iata_code": "FLN", + "local_code": "SC0001", + "home_link": "http://www.infraero.gov.br/usa/aero_prev_home.php?ai=228", + "wikipedia_link": "https://en.wikipedia.org/wiki/Herc%C3%ADlio_Luz_International_Airport", + "keywords": "http://www.infraero.gov.br/usa/aero_prev_home.php?ai=228" + }, + { + "id": "5902", + "ident": "SBFN", + "type": "medium_airport", + "name": "Fernando de Noronha Airport", + "latitude_deg": "-3.854471", + "longitude_deg": "-32.423302", + "elevation_ft": "193", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Fernando de Noronha", + "scheduled_service": "yes", + "gps_code": "SBFN", + "iata_code": "FEN", + "local_code": "PE0003", + "home_link": "http://www.ilhadenoronha.com.br/ailha/aviacao_em_noronha.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fernando_de_Noronha_Airport" + }, + { + "id": "35416", + "ident": "SBFS", + "type": "heliport", + "name": "Farol de São Tomé Heliport", + "latitude_deg": "-22.030589", + "longitude_deg": "-41.068623", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Campos dos Goytacazes", + "scheduled_service": "no", + "gps_code": "SBFS", + "local_code": "RJ0028" + }, + { + "id": "5904", + "ident": "SBFU", + "type": "closed", + "name": "Furnas Airport", + "latitude_deg": "-20.702801", + "longitude_deg": "-46.3353", + "elevation_ft": "2413", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "São José da Barra", + "scheduled_service": "no", + "keywords": "SBFU, Alpinopolis" + }, + { + "id": "5905", + "ident": "SBFZ", + "type": "medium_airport", + "name": "Pinto Martins International Airport", + "latitude_deg": "-3.77628", + "longitude_deg": "-38.5326", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "yes", + "gps_code": "SBFZ", + "iata_code": "FOR", + "local_code": "CE0001", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pinto_Martins_International_Airport" + }, + { + "id": "5906", + "ident": "SBGL", + "type": "large_airport", + "name": "Rio Galeão – Tom Jobim International Airport", + "latitude_deg": "-22.809999", + "longitude_deg": "-43.250557", + "elevation_ft": "28", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "yes", + "gps_code": "SBGL", + "iata_code": "GIG", + "local_code": "RJ0001", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rio_de_Janeiro-Gale%C3%A3o_International_Airport", + "keywords": "Galeão - Antônio Carlos Jobim International Airport" + }, + { + "id": "5907", + "ident": "SBGM", + "type": "medium_airport", + "name": "Guajará-Mirim Airport", + "latitude_deg": "-10.78641", + "longitude_deg": "-65.28486", + "elevation_ft": "478", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Guajará-Mirim", + "scheduled_service": "no", + "gps_code": "SBGM", + "iata_code": "GJM", + "local_code": "RO0006" + }, + { + "id": "5908", + "ident": "SBGO", + "type": "medium_airport", + "name": "Santa Genoveva Airport", + "latitude_deg": "-16.632", + "longitude_deg": "-49.220699", + "elevation_ft": "2450", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiânia", + "scheduled_service": "yes", + "gps_code": "SBGO", + "iata_code": "GYN", + "local_code": "GO0001", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-de-goiania-santa-genoveva/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Genoveva_Airport" + }, + { + "id": "5909", + "ident": "SBGP", + "type": "small_airport", + "name": "EMBRAER - Unidade Gavião Peixoto Airport", + "latitude_deg": "-21.773701", + "longitude_deg": "-48.405102", + "elevation_ft": "1998", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Gavião Peixoto", + "scheduled_service": "no", + "gps_code": "SBGP", + "local_code": "SP0075", + "wikipedia_link": "https://en.wikipedia.org/wiki/Embraer_Unidade_Gavi%C3%A3o_Peixoto_Airport" + }, + { + "id": "5910", + "ident": "SBGR", + "type": "large_airport", + "name": "Guarulhos - Governador André Franco Montoro International Airport", + "latitude_deg": "-23.431944", + "longitude_deg": "-46.467778", + "elevation_ft": "2461", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "yes", + "gps_code": "SBGR", + "iata_code": "GRU", + "local_code": "SP0002", + "home_link": "http://www.aeroportoguarulhos.net/", + "wikipedia_link": "https://en.wikipedia.org/wiki/S%C3%A3o_Paulo-Guarulhos_International_Airport", + "keywords": "Cumbica" + }, + { + "id": "5911", + "ident": "SBGU", + "type": "small_airport", + "name": "Tancredo Thomas de Faria Airport", + "latitude_deg": "-25.388327", + "longitude_deg": "-51.52349", + "elevation_ft": "3494", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Guarapuava", + "scheduled_service": "no", + "gps_code": "SSGG", + "iata_code": "GPB", + "local_code": "PR0009", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guarapuava_Airport", + "keywords": "SBGU, Guarapuava Airport" + }, + { + "id": "5912", + "ident": "SBGV", + "type": "small_airport", + "name": "Coronel Altino Machado de Oliveira Airport", + "latitude_deg": "-18.895882", + "longitude_deg": "-41.982869", + "elevation_ft": "561", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Governador Valadares", + "scheduled_service": "yes", + "gps_code": "SBGV", + "iata_code": "GVR", + "local_code": "MG0032", + "wikipedia_link": "https://en.wikipedia.org/wiki/Governador_Valadares_Airport", + "keywords": "Governador Valadares Airport" + }, + { + "id": "5913", + "ident": "SBGW", + "type": "medium_airport", + "name": "Guaratinguetá Airport", + "latitude_deg": "-22.791599", + "longitude_deg": "-45.2048", + "elevation_ft": "1761", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guaratinguetá", + "scheduled_service": "no", + "gps_code": "SBGW", + "iata_code": "GUJ", + "local_code": "SP0076" + }, + { + "id": "5914", + "ident": "SBHT", + "type": "medium_airport", + "name": "Altamira Interstate Airport", + "latitude_deg": "-3.253144", + "longitude_deg": "-52.253938", + "elevation_ft": "368", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Altamira", + "scheduled_service": "yes", + "gps_code": "SBHT", + "iata_code": "ATM", + "local_code": "PA0003", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-de-altamira-para/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Altamira_Airport" + }, + { + "id": "5915", + "ident": "SBIC", + "type": "medium_airport", + "name": "Itacoatiara Airport", + "latitude_deg": "-3.126539", + "longitude_deg": "-58.481668", + "elevation_ft": "142", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Itacoatiara", + "scheduled_service": "no", + "gps_code": "SBIC", + "iata_code": "ITA", + "local_code": "AM0012", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Itacoatiara" + }, + { + "id": "5916", + "ident": "SBIH", + "type": "medium_airport", + "name": "Itaituba Airport", + "latitude_deg": "-4.242131", + "longitude_deg": "-56.000651", + "elevation_ft": "110", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "yes", + "gps_code": "SBIH", + "iata_code": "ITB", + "local_code": "PA0010", + "wikipedia_link": "https://en.wikipedia.org/wiki/Itaituba_Airport" + }, + { + "id": "5917", + "ident": "SBIL", + "type": "medium_airport", + "name": "Bahia - Jorge Amado Airport", + "latitude_deg": "-14.815929", + "longitude_deg": "-39.033458", + "elevation_ft": "15", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Ilhéus", + "scheduled_service": "yes", + "gps_code": "SBIL", + "iata_code": "IOS", + "local_code": "BA0004", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ilh%C3%A9us_Jorge_Amado_Airport" + }, + { + "id": "5918", + "ident": "SBIP", + "type": "medium_airport", + "name": "Vale do Aço Regional Airport", + "latitude_deg": "-19.470699", + "longitude_deg": "-42.487598", + "elevation_ft": "786", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Ipatinga", + "scheduled_service": "yes", + "gps_code": "SBIP", + "iata_code": "IPN", + "local_code": "MG0007", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-regional-do-vale-do-aco/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vale_do_Aço_Regional_Airport", + "keywords": "Usiminas" + }, + { + "id": "5919", + "ident": "SBIT", + "type": "small_airport", + "name": "Francisco Vilela do Amaral Airport", + "latitude_deg": "-18.4447", + "longitude_deg": "-49.213402", + "elevation_ft": "1630", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Itumbiara", + "scheduled_service": "no", + "gps_code": "SBIT", + "iata_code": "ITR", + "local_code": "GO0035", + "wikipedia_link": "https://en.wikipedia.org/wiki/Itumbiara_Airport", + "keywords": "Hidroelétrica Airport" + }, + { + "id": "5920", + "ident": "SBIZ", + "type": "medium_airport", + "name": "Prefeito Renato Moreira Airport", + "latitude_deg": "-5.53129", + "longitude_deg": "-47.459999", + "elevation_ft": "430", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Imperatriz", + "scheduled_service": "yes", + "gps_code": "SBIZ", + "iata_code": "IMP", + "local_code": "MA0002", + "wikipedia_link": "https://en.wikipedia.org/wiki/Imperatriz_Airport" + }, + { + "id": "316444", + "ident": "SBJA", + "type": "small_airport", + "name": "Humberto Ghizzo Bortoluzzi Regional Airport", + "latitude_deg": "-28.6753", + "longitude_deg": "-49.0596", + "elevation_ft": "120", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Jaguaruna", + "scheduled_service": "yes", + "gps_code": "SBJA", + "iata_code": "JJG", + "local_code": "SC0005", + "home_link": "http://www.jaguaruna.sc.gov.br/turismo/item/detalhe/6369", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jaguaruna_Regional_Airport", + "keywords": "Jaguaruna Regional Airport, Aeroporto Regional Sul" + }, + { + "id": "5921", + "ident": "SBJC", + "type": "small_airport", + "name": "Belém/Brigadeiro Protásio de Oliveira Airport", + "latitude_deg": "-1.415051", + "longitude_deg": "-48.459805", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Belém", + "scheduled_service": "no", + "gps_code": "SBJC", + "local_code": "PA0005", + "wikipedia_link": "https://en.wikipedia.org/wiki/Prot%C3%A1sio_de_Oliveira_Airport", + "keywords": "Júlio César Airport" + }, + { + "id": "45646", + "ident": "SBJD", + "type": "small_airport", + "name": "Comte. Rolim Adolfo Amaro–Jundiaí State Airport", + "latitude_deg": "-23.180861", + "longitude_deg": "-46.943921", + "elevation_ft": "2470", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jundiaí", + "scheduled_service": "no", + "gps_code": "SBJD", + "iata_code": "QDV", + "local_code": "SP0031", + "home_link": "http://www.voa-sp.com.br/aeroporto/aeroporto-estadual-comandante-rolim-adolfo-amaro/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jundia%C3%AD_Airport", + "keywords": "Jundiaí Airport" + }, + { + "id": "5922", + "ident": "SBJF", + "type": "medium_airport", + "name": "Francisco de Assis Airport", + "latitude_deg": "-21.791482", + "longitude_deg": "-43.386072", + "elevation_ft": "2989", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Juiz de Fora", + "scheduled_service": "yes", + "gps_code": "SBJF", + "iata_code": "JDF", + "local_code": "MG0016", + "wikipedia_link": "https://en.wikipedia.org/wiki/Juiz_de_Fora_Airport", + "keywords": "Serrinha Airport" + }, + { + "id": "334199", + "ident": "SBJH", + "type": "medium_airport", + "name": "São Paulo Catarina Executive Airport", + "latitude_deg": "-23.426886", + "longitude_deg": "-47.165658", + "elevation_ft": "2547", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Roque", + "scheduled_service": "no", + "gps_code": "SBJH", + "iata_code": "JHF", + "local_code": "SP1176", + "home_link": "http://www.catarinajhsf.com.br/aeroporto", + "wikipedia_link": "https://en.wikipedia.org/wiki/São_Paulo_Catarina_Executive_Airport", + "keywords": "SP9007" + }, + { + "id": "5923", + "ident": "SBJP", + "type": "medium_airport", + "name": "Presidente Castro Pinto International Airport", + "latitude_deg": "-7.148691", + "longitude_deg": "-34.950554", + "elevation_ft": "217", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "João Pessoa", + "scheduled_service": "yes", + "gps_code": "SBJP", + "iata_code": "JPA", + "local_code": "PB0001", + "wikipedia_link": "https://en.wikipedia.org/wiki/Presidente_Castro_Pinto_International_Airport" + }, + { + "id": "30340", + "ident": "SBJR", + "type": "small_airport", + "name": "Jacarepaguá - Roberto Marinho Airport", + "latitude_deg": "-22.986773", + "longitude_deg": "-43.372194", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SBJR", + "iata_code": "RRJ", + "local_code": "RJ0005", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-de-jacarepagua-roberto-marinho/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jacarepagu%C3%A1_Airport" + }, + { + "id": "5924", + "ident": "SBJU", + "type": "small_airport", + "name": "Orlando Bezerra de Menezes Airport", + "latitude_deg": "-7.21932", + "longitude_deg": "-39.269096", + "elevation_ft": "1342", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Juazeiro do Norte", + "scheduled_service": "yes", + "gps_code": "SBJU", + "iata_code": "JDO", + "local_code": "CE0002", + "wikipedia_link": "https://en.wikipedia.org/wiki/Juazeiro_do_Norte_Airport", + "keywords": "Juazeiro do Norte Airport" + }, + { + "id": "5925", + "ident": "SBJV", + "type": "medium_airport", + "name": "Lauro Carneiro de Loyola Airport", + "latitude_deg": "-26.224501", + "longitude_deg": "-48.797401", + "elevation_ft": "15", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Joinville", + "scheduled_service": "yes", + "gps_code": "SBJV", + "iata_code": "JOI", + "local_code": "SC0004", + "wikipedia_link": "https://en.wikipedia.org/wiki/Joinville-Lauro_Carneiro_de_Loyola_Airport" + }, + { + "id": "5926", + "ident": "SBKG", + "type": "medium_airport", + "name": "Presidente João Suassuna Airport", + "latitude_deg": "-7.269662", + "longitude_deg": "-35.896057", + "elevation_ft": "1646", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Campina Grande", + "scheduled_service": "yes", + "gps_code": "SBKG", + "iata_code": "CPV", + "local_code": "PB0003", + "wikipedia_link": "https://en.wikipedia.org/wiki/Campina_Grande_Airport" + }, + { + "id": "5927", + "ident": "SBKP", + "type": "medium_airport", + "name": "Viracopos International Airport", + "latitude_deg": "-23.007404", + "longitude_deg": "-47.134502", + "elevation_ft": "2170", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "yes", + "gps_code": "SBKP", + "iata_code": "VCP", + "local_code": "SP0003", + "home_link": "http://www.aeroportoviracopos.net/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Viracopos-Campinas_International_Airport" + }, + { + "id": "35417", + "ident": "SBLB", + "type": "heliport", + "name": "Plataforma P-25 Helipad", + "latitude_deg": "-22.1094", + "longitude_deg": "-39.916901", + "elevation_ft": "70", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Macaé", + "scheduled_service": "no", + "gps_code": "SBLB" + }, + { + "id": "5928", + "ident": "SBLE", + "type": "small_airport", + "name": "Coronel Horácio de Mattos Airport", + "latitude_deg": "-12.4823", + "longitude_deg": "-41.277", + "elevation_ft": "1676", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Lençóis", + "scheduled_service": "yes", + "gps_code": "SBLE", + "iata_code": "LEC", + "local_code": "SP0008", + "wikipedia_link": "https://en.wikipedia.org/wiki/Len%C3%A7%C3%B3is_Airport", + "keywords": "Chapada Diamantina National Park, Lençóis Airport" + }, + { + "id": "5929", + "ident": "SBLJ", + "type": "medium_airport", + "name": "Lages Airport", + "latitude_deg": "-27.782101", + "longitude_deg": "-50.281502", + "elevation_ft": "3065", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Lages", + "scheduled_service": "yes", + "gps_code": "SBLJ", + "iata_code": "LAJ", + "local_code": "SC0007", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lages_Airport", + "keywords": "Antônio Correia Pinto de Macedo Airport, Guarujá Federal Airport" + }, + { + "id": "5930", + "ident": "SBLN", + "type": "medium_airport", + "name": "Lins Airport", + "latitude_deg": "-21.663999557495", + "longitude_deg": "-49.730499267578", + "elevation_ft": "1559", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Lins", + "scheduled_service": "no", + "gps_code": "SWXQ", + "iata_code": "LIP", + "local_code": "SWXQ", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Lins", + "keywords": "SBLN" + }, + { + "id": "5931", + "ident": "SBLO", + "type": "medium_airport", + "name": "Governador José Richa Airport", + "latitude_deg": "-23.333599", + "longitude_deg": "-51.1301", + "elevation_ft": "1867", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Londrina", + "scheduled_service": "yes", + "gps_code": "SBLO", + "iata_code": "LDB", + "local_code": "PR0003", + "wikipedia_link": "https://en.wikipedia.org/wiki/Londrina_Airport", + "keywords": "Londrina Airport" + }, + { + "id": "5932", + "ident": "SBLP", + "type": "medium_airport", + "name": "Bom Jesus da Lapa Airport", + "latitude_deg": "-13.2621", + "longitude_deg": "-43.4081", + "elevation_ft": "1454", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Bom Jesus da Lapa", + "scheduled_service": "no", + "gps_code": "SBLP", + "iata_code": "LAZ", + "local_code": "BA0037", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bom_Jesus_da_Lapa_Airport" + }, + { + "id": "5933", + "ident": "SBLS", + "type": "small_airport", + "name": "Lagoa Santa Air Base", + "latitude_deg": "-19.661751", + "longitude_deg": "-43.897404", + "elevation_ft": "2795", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Lagoa Santa", + "scheduled_service": "no", + "gps_code": "SBLS", + "local_code": "MG9001", + "home_link": "https://www.fab.mil.br/noticias/tag/Lagoa_Santa", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Base_Aérea_de_Lagoa_Santa" + }, + { + "id": "5934", + "ident": "SBMA", + "type": "medium_airport", + "name": "João Correa da Rocha Airport", + "latitude_deg": "-5.36859", + "longitude_deg": "-49.138", + "elevation_ft": "357", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Marabá", + "scheduled_service": "yes", + "gps_code": "SBMA", + "iata_code": "MAB", + "local_code": "PA0004", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marab%C3%A1_Airport", + "keywords": "Marabá Airport" + }, + { + "id": "5935", + "ident": "SBMC", + "type": "medium_airport", + "name": "Minaçu Airport", + "latitude_deg": "-13.5491", + "longitude_deg": "-48.195301", + "elevation_ft": "1401", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Minaçu", + "scheduled_service": "no", + "gps_code": "SWIQ", + "iata_code": "MQH", + "local_code": "SWIQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mina%C3%A7u_Airport", + "keywords": "SBMC" + }, + { + "id": "5936", + "ident": "SBMD", + "type": "medium_airport", + "name": "Monte Dourado - Serra do Areão Airport", + "latitude_deg": "-0.889839", + "longitude_deg": "-52.6022", + "elevation_ft": "677", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Almeirim", + "scheduled_service": "yes", + "gps_code": "SBMD", + "iata_code": "MEU", + "local_code": "PA0009", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monte_Dourado_Airport" + }, + { + "id": "5937", + "ident": "SBME", + "type": "medium_airport", + "name": "Macaé Benedito Lacerda Airport", + "latitude_deg": "-22.343", + "longitude_deg": "-41.765999", + "elevation_ft": "8", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Macaé", + "scheduled_service": "yes", + "gps_code": "SBME", + "iata_code": "MEA", + "local_code": "RJ0004", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maca%C3%A9_Airport" + }, + { + "id": "5938", + "ident": "SBMG", + "type": "medium_airport", + "name": "Regional de Maringá - Sílvio Name Júnior Airport", + "latitude_deg": "-23.47606", + "longitude_deg": "-52.016187", + "elevation_ft": "1801", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Maringá", + "scheduled_service": "yes", + "gps_code": "SBMG", + "iata_code": "MGF", + "local_code": "PR0004", + "home_link": "https://www.aeroportomaringa.com.br/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maring%C3%A1_Domestic_Airport", + "keywords": "SBMH." + }, + { + "id": "5939", + "ident": "SBMK", + "type": "medium_airport", + "name": "Mário Ribeiro Airport", + "latitude_deg": "-16.706919", + "longitude_deg": "-43.818901", + "elevation_ft": "2191", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Montes Claros", + "scheduled_service": "yes", + "gps_code": "SBMK", + "iata_code": "MOC", + "local_code": "MG0004", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-de-montes-claros-mario-ribeiro/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Montes_Claros_Airport", + "keywords": "Montes Claros Airport" + }, + { + "id": "5940", + "ident": "SBML", + "type": "medium_airport", + "name": "Frank Miloye Milenkowichi–Marília State Airport", + "latitude_deg": "-22.196899", + "longitude_deg": "-49.926485", + "elevation_ft": "2134", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Marília", + "scheduled_service": "yes", + "gps_code": "SBML", + "iata_code": "MII", + "local_code": "SP0014", + "home_link": "https://www.daesp.sp.gov.br/aeroporto-estadual-de-marilia-frank-miloye-milenkowichi/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mar%C3%ADlia_Airport", + "keywords": "Marília Airport" + }, + { + "id": "35418", + "ident": "SBMM", + "type": "heliport", + "name": "Plataforma P-20 Helipad", + "latitude_deg": "-22.357201", + "longitude_deg": "-40.090599", + "elevation_ft": "125", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Macaé", + "scheduled_service": "no", + "gps_code": "SBMM" + }, + { + "id": "5941", + "ident": "SBMN", + "type": "medium_airport", + "name": "Ponta Pelada Airport / Manaus Air Base", + "latitude_deg": "-3.14604", + "longitude_deg": "-59.986301", + "elevation_ft": "267", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Manaus", + "scheduled_service": "no", + "gps_code": "SBMN", + "iata_code": "PLL", + "local_code": "AM9001", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ponta_Pelada_Airport" + }, + { + "id": "5942", + "ident": "SBMO", + "type": "medium_airport", + "name": "Zumbi dos Palmares Airport", + "latitude_deg": "-9.51081", + "longitude_deg": "-35.791698", + "elevation_ft": "387", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Maceió", + "scheduled_service": "yes", + "gps_code": "SBMO", + "iata_code": "MCZ", + "local_code": "AL0001", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zumbi_dos_Palmares_International_Airport" + }, + { + "id": "5943", + "ident": "SBMQ", + "type": "medium_airport", + "name": "Macapá - Alberto Alcolumbre International Airport", + "latitude_deg": "0.050664", + "longitude_deg": "-51.072201", + "elevation_ft": "56", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Macapá", + "scheduled_service": "yes", + "gps_code": "SBMQ", + "iata_code": "MCP", + "local_code": "AP0001", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-internacional-de-macapa-alberto-alcolumbre/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Macap%C3%A1_International_Airport" + }, + { + "id": "5944", + "ident": "SBMS", + "type": "medium_airport", + "name": "Dix-Sept Rosado Airport", + "latitude_deg": "-5.20192", + "longitude_deg": "-37.3643", + "elevation_ft": "76", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Mossoró", + "scheduled_service": "yes", + "gps_code": "SBMS", + "iata_code": "MVF", + "local_code": "RN0002", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mossor%C3%B3_Airport", + "keywords": "Mossoró Airport" + }, + { + "id": "5945", + "ident": "SBMT", + "type": "medium_airport", + "name": "Campo de Marte Airport", + "latitude_deg": "-23.5091", + "longitude_deg": "-46.637798", + "elevation_ft": "2371", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SBMT", + "iata_code": "RTE", + "local_code": "SP0007", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-de-sao-paulo-campo-de-marte/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Campo_de_Marte_Airport" + }, + { + "id": "5946", + "ident": "SBMY", + "type": "medium_airport", + "name": "Manicoré Airport", + "latitude_deg": "-5.81138", + "longitude_deg": "-61.278301", + "elevation_ft": "174", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Manicoré", + "scheduled_service": "yes", + "gps_code": "SBMY", + "iata_code": "MNX", + "local_code": "AM0015", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manicor%C3%A9_Airport" + }, + { + "id": "5947", + "ident": "SBNF", + "type": "medium_airport", + "name": "Ministro Victor Konder International Airport", + "latitude_deg": "-26.879431", + "longitude_deg": "-48.650979", + "elevation_ft": "18", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Navegantes", + "scheduled_service": "yes", + "gps_code": "SBNF", + "iata_code": "NVT", + "local_code": "SC0002", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-internacional-de-navegantes-ministro-victor-konder/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Navegantes_Airport" + }, + { + "id": "5948", + "ident": "SBNM", + "type": "medium_airport", + "name": "Santo Ângelo Airport", + "latitude_deg": "-28.282503", + "longitude_deg": "-54.169623", + "elevation_ft": "1056", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Santo Ângelo", + "scheduled_service": "yes", + "gps_code": "SBNM", + "iata_code": "GEL", + "local_code": "RS0008", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santo_%C3%82ngelo_Airport" + }, + { + "id": "5949", + "ident": "SBNT", + "type": "medium_airport", + "name": "Natal Air Force Base", + "latitude_deg": "-5.91142", + "longitude_deg": "-35.2477", + "elevation_ft": "171", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Natal", + "scheduled_service": "no", + "gps_code": "SBNT", + "local_code": "RN9001", + "wikipedia_link": "https://en.wikipedia.org/wiki/Natal_Air_Force_Base", + "keywords": "Augusto Severo International Airport , NAT, Parnamirim" + }, + { + "id": "342613", + "ident": "SBOA", + "type": "small_airport", + "name": "Fazenda Antas Airstrip", + "latitude_deg": "-6.974453", + "longitude_deg": "-35.252233", + "elevation_ft": "440", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Sapé", + "scheduled_service": "no", + "gps_code": "SBOA", + "local_code": "PB0031" + }, + { + "id": "343941", + "ident": "SBOD", + "type": "small_airport", + "name": "Fazenda Santa Cruz Airport", + "latitude_deg": "-7.455833", + "longitude_deg": "-49.195556", + "elevation_ft": "702", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Araguaína", + "scheduled_service": "no", + "gps_code": "SBOD", + "local_code": "TO0080" + }, + { + "id": "342615", + "ident": "SBOE", + "type": "small_airport", + "name": "Fazenda Americana Airport", + "latitude_deg": "-12.587371", + "longitude_deg": "-52.095226", + "elevation_ft": "1181", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Querência", + "scheduled_service": "no", + "gps_code": "SBOE", + "local_code": "MT0679" + }, + { + "id": "342618", + "ident": "SBOF", + "type": "small_airport", + "name": "Fazenda Bandeirantes Airport", + "latitude_deg": "-19.318418", + "longitude_deg": "-52.534615", + "elevation_ft": "1752", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Chapadão do Sul", + "scheduled_service": "no", + "gps_code": "SBOF", + "local_code": "MS0478" + }, + { + "id": "342619", + "ident": "SBOG", + "type": "small_airport", + "name": "Fazenda Vereda Grande Airport", + "latitude_deg": "-14.784789", + "longitude_deg": "-40.817046", + "elevation_ft": "3051", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Vitória da Conquista", + "scheduled_service": "no", + "gps_code": "SBOG", + "local_code": "BA0339" + }, + { + "id": "342620", + "ident": "SBOH", + "type": "small_airport", + "name": "Fazenda São Sebastião Airport", + "latitude_deg": "-16.000866", + "longitude_deg": "-53.543618", + "elevation_ft": "2077", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tesouro", + "scheduled_service": "no", + "gps_code": "SBOH", + "local_code": "MT0657" + }, + { + "id": "5950", + "ident": "SBOI", + "type": "medium_airport", + "name": "Oiapoque Airport", + "latitude_deg": "3.85412", + "longitude_deg": "-51.797056", + "elevation_ft": "53", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Oiapoque", + "scheduled_service": "no", + "gps_code": "SBOI", + "iata_code": "OYK", + "local_code": "AP0002", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Oiapoque" + }, + { + "id": "342625", + "ident": "SBOK", + "type": "small_airport", + "name": "Fazenda São Vicente Airport", + "latitude_deg": "-13.290168", + "longitude_deg": "-55.975493", + "elevation_ft": "1411", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Lucas do Rio Verde", + "scheduled_service": "no", + "gps_code": "SBOK", + "local_code": "MT0654" + }, + { + "id": "343943", + "ident": "SBOL", + "type": "small_airport", + "name": "Fazenda Santa Lúcia Airstrip", + "latitude_deg": "-18.920278", + "longitude_deg": "-52.001389", + "elevation_ft": "1923", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Aporé", + "scheduled_service": "no", + "gps_code": "SBOL", + "local_code": "GO0298" + }, + { + "id": "342627", + "ident": "SBOM", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-15.376891", + "longitude_deg": "-57.682109", + "elevation_ft": "630", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Lambari d'Oeste", + "scheduled_service": "no", + "gps_code": "SBOM", + "local_code": "MT0644" + }, + { + "id": "342629", + "ident": "SBON", + "type": "small_airport", + "name": "Fazenda Renascer Airport", + "latitude_deg": "-7.615933", + "longitude_deg": "-47.452097", + "elevation_ft": "764", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Goiatins", + "scheduled_service": "no", + "gps_code": "SBON", + "local_code": "TO0084" + }, + { + "id": "342630", + "ident": "SBOO", + "type": "small_airport", + "name": "Fazenda Ceita Corê Airport", + "latitude_deg": "-20.838737", + "longitude_deg": "-56.588897", + "elevation_ft": "1555", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bonito", + "scheduled_service": "no", + "gps_code": "SBOO", + "local_code": "MS0434" + }, + { + "id": "343947", + "ident": "SBOP", + "type": "heliport", + "name": "Corinthians Arena Heliport", + "latitude_deg": "-23.54413", + "longitude_deg": "-46.47767", + "elevation_ft": "2644", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SBOP", + "local_code": "SP1309" + }, + { + "id": "342632", + "ident": "SBOQ", + "type": "small_airport", + "name": "Fazenda Irmãs Prata Airport", + "latitude_deg": "-18.622041", + "longitude_deg": "-52.833071", + "elevation_ft": "2808", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Chapadão do Céu", + "scheduled_service": "no", + "gps_code": "SBOQ", + "local_code": "GO0281" + }, + { + "id": "342633", + "ident": "SBOR", + "type": "small_airport", + "name": "Fazenda Agro Tamareira Airport", + "latitude_deg": "-13.732032", + "longitude_deg": "-50.357632", + "elevation_ft": "814", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Mundo Novo", + "scheduled_service": "no", + "gps_code": "SBOR", + "local_code": "GO0290" + }, + { + "id": "342635", + "ident": "SBOS", + "type": "small_airport", + "name": "Fazenda Santo Augusto Airport", + "latitude_deg": "-13.152778", + "longitude_deg": "-58.1175", + "elevation_ft": "1594", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SBOS", + "local_code": "MT0493" + }, + { + "id": "343950", + "ident": "SBOU", + "type": "small_airport", + "name": "Fazenda São Jerônimo Airstrip", + "latitude_deg": "-10.270278", + "longitude_deg": "-55.786111", + "elevation_ft": "919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Canaã do Norte", + "scheduled_service": "no", + "gps_code": "SBOU", + "local_code": "MT0667" + }, + { + "id": "342636", + "ident": "SBOV", + "type": "small_airport", + "name": "Fazenda Tabatinga Airport", + "latitude_deg": "-14.158204", + "longitude_deg": "-54.926212", + "elevation_ft": "1489", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santa Rita do Trivelato", + "scheduled_service": "no", + "gps_code": "SBOV", + "local_code": "MT0670" + }, + { + "id": "342637", + "ident": "SBOW", + "type": "small_airport", + "name": "Fazenda Agropecuária Vale do Ouro Airport", + "latitude_deg": "-4.186313", + "longitude_deg": "-56.059897", + "elevation_ft": "217", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SBOW", + "local_code": "PA0248" + }, + { + "id": "342639", + "ident": "SBOX", + "type": "small_airport", + "name": "Fazenda Baia Morena Airport", + "latitude_deg": "-18.261098", + "longitude_deg": "-55.373709", + "elevation_ft": "548", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SBOX", + "local_code": "MS0534" + }, + { + "id": "342641", + "ident": "SBOY", + "type": "small_airport", + "name": "Fazenda São José Airport", + "latitude_deg": "-17.41704", + "longitude_deg": "-56.181159", + "elevation_ft": "394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SBOY", + "local_code": "MS0483" + }, + { + "id": "342708", + "ident": "SBOZ", + "type": "small_airport", + "name": "Fazenda Arizona Airport", + "latitude_deg": "-16.180023", + "longitude_deg": "-57.278529", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SBOZ", + "local_code": "MT0606" + }, + { + "id": "5951", + "ident": "SBPA", + "type": "medium_airport", + "name": "Salgado Filho International Airport", + "latitude_deg": "-29.994712", + "longitude_deg": "-51.166592", + "elevation_ft": "11", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Porto Alegre", + "scheduled_service": "yes", + "gps_code": "SBPA", + "iata_code": "POA", + "local_code": "RS0001", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salgado_Filho_International_Airport" + }, + { + "id": "5952", + "ident": "SBPB", + "type": "medium_airport", + "name": "Parnaíba - Prefeito Doutor João Silva Filho International Airport", + "latitude_deg": "-2.89375", + "longitude_deg": "-41.731998", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Parnaíba", + "scheduled_service": "yes", + "gps_code": "SBPB", + "iata_code": "PHB", + "local_code": "PI0002", + "wikipedia_link": "https://en.wikipedia.org/wiki/Parna%C3%ADba-Prefeito_Dr._Jo%C3%A3o_Silva_Filho_International_Airport", + "keywords": "Santos Dumont Airport" + }, + { + "id": "5953", + "ident": "SBPC", + "type": "medium_airport", + "name": "Poços de Caldas - Embaixador Walther Moreira Salles Airport", + "latitude_deg": "-21.842529", + "longitude_deg": "-46.569768", + "elevation_ft": "4138", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Poços De Caldas", + "scheduled_service": "no", + "gps_code": "SBPC", + "iata_code": "POO", + "local_code": "MG0018", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Po%C3%A7os_de_Caldas" + }, + { + "id": "5954", + "ident": "SBPF", + "type": "medium_airport", + "name": "Lauro Kurtz Airport", + "latitude_deg": "-28.243976", + "longitude_deg": "-52.32777", + "elevation_ft": "2380", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Passo Fundo", + "scheduled_service": "yes", + "gps_code": "SBPF", + "iata_code": "PFB", + "local_code": "RS0006", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lauro_Kurtz_Airport" + }, + { + "id": "5955", + "ident": "SBPJ", + "type": "medium_airport", + "name": "Brigadeiro Lysias Rodrigues Airport", + "latitude_deg": "-10.2915", + "longitude_deg": "-48.356998", + "elevation_ft": "774", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Palmas", + "scheduled_service": "yes", + "gps_code": "SBPJ", + "iata_code": "PMW", + "local_code": "TO0001", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-de-palmas-brigadeiro-lysias-rodrigues/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palmas_Airport" + }, + { + "id": "5956", + "ident": "SBPK", + "type": "medium_airport", + "name": "João Simões Lopes Neto International Airport", + "latitude_deg": "-31.717253", + "longitude_deg": "-52.327952", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Pelotas", + "scheduled_service": "yes", + "gps_code": "SBPK", + "iata_code": "PET", + "local_code": "RS0005", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-internacional-de-pelotas-rs-joao-simoes-lopes-neto/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pelotas_International_Airport", + "keywords": "Pelotas Airport" + }, + { + "id": "5957", + "ident": "SBPL", + "type": "medium_airport", + "name": "Senador Nilo Coelho Airport", + "latitude_deg": "-9.362422", + "longitude_deg": "-40.569098", + "elevation_ft": "1263", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Petrolina", + "scheduled_service": "yes", + "gps_code": "SBPL", + "iata_code": "PNZ", + "local_code": "PE0002", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-de-petrolina-senador-nilo-coelho/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Petrolina_Airport" + }, + { + "id": "5958", + "ident": "SBPN", + "type": "medium_airport", + "name": "Porto Nacional Airport", + "latitude_deg": "-10.719402", + "longitude_deg": "-48.3997", + "elevation_ft": "870", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Porto Nacional", + "scheduled_service": "no", + "gps_code": "SDPE", + "iata_code": "PNB", + "local_code": "TO0003", + "keywords": "SBPN" + }, + { + "id": "5959", + "ident": "SBPP", + "type": "medium_airport", + "name": "Ponta Porã Airport", + "latitude_deg": "-22.549601", + "longitude_deg": "-55.702599", + "elevation_ft": "2156", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ponta Porã", + "scheduled_service": "yes", + "gps_code": "SBPP", + "iata_code": "PMG", + "local_code": "MS0005", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-internacional-de-ponta-pora/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ponta_Por%C3%A3_International_Airport" + }, + { + "id": "5960", + "ident": "SBPR", + "type": "small_airport", + "name": "Carlos Prates Airport", + "latitude_deg": "-19.909629", + "longitude_deg": "-43.989179", + "elevation_ft": "3044", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SBPR", + "local_code": "MG0005", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-de-belo-horizonte-carlos-prates/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carlos_Prates_Airport" + }, + { + "id": "5961", + "ident": "SBPS", + "type": "medium_airport", + "name": "Porto Seguro Airport", + "latitude_deg": "-16.438426", + "longitude_deg": "-39.080584", + "elevation_ft": "169", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Porto Seguro", + "scheduled_service": "yes", + "gps_code": "SBPS", + "iata_code": "BPS", + "local_code": "BA0002", + "home_link": "http://www.aeroportoportoseguro.com.br/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Porto_Seguro_Airport" + }, + { + "id": "5962", + "ident": "SBPV", + "type": "medium_airport", + "name": "Governador Jorge Teixeira de Oliveira Airport", + "latitude_deg": "-8.707854", + "longitude_deg": "-63.90242", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Porto Velho", + "scheduled_service": "yes", + "gps_code": "SBPV", + "iata_code": "PVH", + "local_code": "RO0001", + "wikipedia_link": "https://en.wikipedia.org/wiki/Governador_Jorge_Teixeira_de_Oliveira_International_Airport" + }, + { + "id": "342881", + "ident": "SBQA", + "type": "small_airport", + "name": "Fazenda Floresta Airport", + "latitude_deg": "-16.536119", + "longitude_deg": "-49.838244", + "elevation_ft": "2274", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Nazário", + "scheduled_service": "no", + "gps_code": "SBQA", + "local_code": "GO0271" + }, + { + "id": "342904", + "ident": "SBQB", + "type": "small_airport", + "name": "Fazenda Pedrinhas II Airport", + "latitude_deg": "-13.261944", + "longitude_deg": "-45.076944", + "elevation_ft": "2533", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Correntina", + "scheduled_service": "no", + "gps_code": "SBQB", + "local_code": "BA0357" + }, + { + "id": "342906", + "ident": "SBQC", + "type": "small_airport", + "name": "Fazenda Cantagalo Airstrip", + "latitude_deg": "-13.366514", + "longitude_deg": "-55.8551", + "elevation_ft": "1421", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Mutum", + "scheduled_service": "no", + "gps_code": "SBQC", + "local_code": "MT0635" + }, + { + "id": "342912", + "ident": "SBQE", + "type": "small_airport", + "name": "Fazenda Tradição Airport", + "latitude_deg": "-7.804289", + "longitude_deg": "-45.057598", + "elevation_ft": "1424", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Ribeiro Gonçalves", + "scheduled_service": "no", + "gps_code": "SBQE", + "local_code": "PI0064" + }, + { + "id": "342123", + "ident": "SBQF", + "type": "heliport", + "name": "Ferigolo Heliport", + "latitude_deg": "-29.461667", + "longitude_deg": "-53.463611", + "elevation_ft": "381", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Nova Palma", + "scheduled_service": "no", + "gps_code": "SBQF", + "local_code": "RS0177" + }, + { + "id": "342915", + "ident": "SBQG", + "type": "small_airport", + "name": "Fazenda Rio Azul Airport", + "latitude_deg": "-13.513056", + "longitude_deg": "-56.598333", + "elevation_ft": "1076", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São José do Rio Claro", + "scheduled_service": "no", + "gps_code": "SBQG", + "local_code": "MT0653" + }, + { + "id": "342917", + "ident": "SBQH", + "type": "small_airport", + "name": "CMTE Juliano Rambo Airstrip", + "latitude_deg": "-10.699027", + "longitude_deg": "-51.614688", + "elevation_ft": "728", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Confresa", + "scheduled_service": "no", + "gps_code": "SBQH", + "local_code": "MT0627" + }, + { + "id": "342927", + "ident": "SBQJ", + "type": "small_airport", + "name": "Osvaldo de Carvalho Airport", + "latitude_deg": "-23.846436", + "longitude_deg": "-50.208429", + "elevation_ft": "2615", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Ibaiti", + "scheduled_service": "no", + "gps_code": "SBQJ", + "local_code": "PR0155" + }, + { + "id": "342812", + "ident": "SBQK", + "type": "small_airport", + "name": "Fazenda Mundial Airport", + "latitude_deg": "-6.539099", + "longitude_deg": "-51.442256", + "elevation_ft": "778", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "São Félix do Xingu", + "scheduled_service": "no", + "gps_code": "SBQK", + "local_code": "PA0246" + }, + { + "id": "342929", + "ident": "SBQL", + "type": "heliport", + "name": "Centro de Convenções Ponta da Praia Helipad", + "latitude_deg": "-23.984846", + "longitude_deg": "-46.294311", + "elevation_ft": "85", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santos", + "scheduled_service": "no", + "gps_code": "SBQL", + "local_code": "SP1281" + }, + { + "id": "342709", + "ident": "SBQM", + "type": "small_airport", + "name": "Fazenda São Miguel Airstrip", + "latitude_deg": "-22.765333", + "longitude_deg": "-53.908334", + "elevation_ft": "1214", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Iateí", + "scheduled_service": "no", + "gps_code": "SBQM", + "local_code": "MS0526" + }, + { + "id": "342930", + "ident": "SBQN", + "type": "small_airport", + "name": "Fazenda Nossa Senhora Aparecida II Airstrip", + "latitude_deg": "-15.575414", + "longitude_deg": "-57.378182", + "elevation_ft": "512", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Estrela", + "scheduled_service": "no", + "gps_code": "SBQN", + "local_code": "MT0668" + }, + { + "id": "342934", + "ident": "SBQO", + "type": "small_airport", + "name": "Fazenda Paraíso Airstrip", + "latitude_deg": "-17.0275", + "longitude_deg": "-39.176111", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Prado", + "scheduled_service": "no", + "gps_code": "SBQO", + "local_code": "BA0352" + }, + { + "id": "342936", + "ident": "SBQP", + "type": "small_airport", + "name": "Fazenda Três Santos Airstrip", + "latitude_deg": "-7.752392", + "longitude_deg": "-44.315921", + "elevation_ft": "1526", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Uruçuí", + "scheduled_service": "no", + "gps_code": "SBQP", + "local_code": "PI0079" + }, + { + "id": "344022", + "ident": "SBQQ", + "type": "heliport", + "name": "Comandante Gravatá Helipad", + "latitude_deg": "-23.018611", + "longitude_deg": "-44.319444", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra dos Reis", + "scheduled_service": "no", + "gps_code": "SBQQ", + "local_code": "RJ0349" + }, + { + "id": "343952", + "ident": "SBQR", + "type": "small_airport", + "name": "Fazenda Arena de Aço Airport", + "latitude_deg": "-16.80878", + "longitude_deg": "-44.97319", + "elevation_ft": "1617", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Buritizeiro", + "scheduled_service": "no", + "gps_code": "SBQR", + "local_code": "MG0463" + }, + { + "id": "343954", + "ident": "SBQS", + "type": "small_airport", + "name": "Santa Rosa Airstrip", + "latitude_deg": "-15.405795", + "longitude_deg": "-54.964051", + "elevation_ft": "2208", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Verde", + "scheduled_service": "no", + "gps_code": "SBQS", + "local_code": "MT0642" + }, + { + "id": "343955", + "ident": "SBQT", + "type": "small_airport", + "name": "Fazenda Campo Formoso Airstrip", + "latitude_deg": "-15.801978", + "longitude_deg": "-53.556395", + "elevation_ft": "1877", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tesouro", + "scheduled_service": "no", + "gps_code": "SBQT", + "local_code": "MT0660" + }, + { + "id": "342710", + "ident": "SBQU", + "type": "heliport", + "name": "Hungaro Helipark", + "latitude_deg": "-7.204121", + "longitude_deg": "-48.219863", + "elevation_ft": "659", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Araguaína", + "scheduled_service": "no", + "gps_code": "SBQU", + "local_code": "TO0085" + }, + { + "id": "5963", + "ident": "SBQV", + "type": "closed", + "name": "Pedro Otacílio Figueiredo Airport", + "latitude_deg": "-14.862567", + "longitude_deg": "-40.863186", + "elevation_ft": "3002", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Vitória da Conquista", + "scheduled_service": "no", + "local_code": "BA0003", + "home_link": "https://www.dumont-aero.com.br/rotaer/aerodromo.php?codigo=SBQV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pedro_Otac%C3%ADlio_Figueiredo_Airport", + "keywords": "SBQV" + }, + { + "id": "342711", + "ident": "SBQW", + "type": "heliport", + "name": "Paíto Motors Helipad", + "latitude_deg": "-22.355589", + "longitude_deg": "-47.37373", + "elevation_ft": "2041", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araras", + "scheduled_service": "no", + "gps_code": "SBQW", + "local_code": "SP1241" + }, + { + "id": "343957", + "ident": "SBQX", + "type": "small_airport", + "name": "Fazenda São Carlos Airstrip", + "latitude_deg": "-13.578333", + "longitude_deg": "-57.936944", + "elevation_ft": "1841", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo do Parecis", + "scheduled_service": "no", + "gps_code": "SBQX", + "local_code": "MT0585" + }, + { + "id": "343959", + "ident": "SBQY", + "type": "heliport", + "name": "LDB - Itapevi Heliport", + "latitude_deg": "-23.530395", + "longitude_deg": "-46.93712", + "elevation_ft": "2730", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapevi", + "scheduled_service": "no", + "gps_code": "SBQY", + "local_code": "SP1278" + }, + { + "id": "343962", + "ident": "SBQZ", + "type": "heliport", + "name": "Fazenda Mariane Heliport", + "latitude_deg": "-22.240253", + "longitude_deg": "-48.319211", + "elevation_ft": "1696", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Brotas", + "scheduled_service": "no", + "gps_code": "SBQZ", + "local_code": "SP1295" + }, + { + "id": "5964", + "ident": "SBRB", + "type": "medium_airport", + "name": "Rio Branco-Plácido de Castro International Airport", + "latitude_deg": "-9.869031", + "longitude_deg": "-67.893984", + "elevation_ft": "633", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Rio Branco", + "scheduled_service": "yes", + "gps_code": "SBRB", + "iata_code": "RBR", + "local_code": "AC0001", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rio_Branco_International_Airport" + }, + { + "id": "343964", + "ident": "SBRC", + "type": "heliport", + "name": "Petrobrás P-52 Platform Helipad", + "latitude_deg": "-21.905", + "longitude_deg": "-39.737222", + "elevation_ft": "105", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Macaé", + "scheduled_service": "no", + "gps_code": "SBRC" + }, + { + "id": "5965", + "ident": "SBRF", + "type": "medium_airport", + "name": "Recife/Guararapes - Gilberto Freyre International Airport", + "latitude_deg": "-8.125984", + "longitude_deg": "-34.923316", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Recife", + "scheduled_service": "yes", + "gps_code": "SBRF", + "iata_code": "REC", + "local_code": "PE0001", + "home_link": "http://www.infraero.gov.br/usa/aero_prev_home.php?ai=163", + "wikipedia_link": "https://en.wikipedia.org/wiki/Recife/Guararapes%E2%80%93Gilberto_Freyre_International_Airport", + "keywords": "Ibura" + }, + { + "id": "5967", + "ident": "SBRJ", + "type": "medium_airport", + "name": "Santos Dumont Airport", + "latitude_deg": "-22.9105", + "longitude_deg": "-43.163101", + "elevation_ft": "11", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "yes", + "gps_code": "SBRJ", + "iata_code": "SDU", + "local_code": "RJ0002", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-do-rio-de-janeiro-santos-dumont/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santos_Dumont_Airport", + "keywords": "RIO" + }, + { + "id": "5968", + "ident": "SBRP", + "type": "medium_airport", + "name": "Leite Lopes Airport", + "latitude_deg": "-21.134314", + "longitude_deg": "-47.774053", + "elevation_ft": "1805", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Preto", + "scheduled_service": "yes", + "gps_code": "SBRP", + "iata_code": "RAO", + "local_code": "SP0004", + "home_link": "https://www.daesp.sp.gov.br/aeroporto-estadual-de-ribeirao-preto-dr-leite-lopes/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leite_Lopes_Airport" + }, + { + "id": "35419", + "ident": "SBRQ", + "type": "closed", + "name": "Sao Roque Airport", + "latitude_deg": "-23.517000198364258", + "longitude_deg": "-47.117000579833984", + "elevation_ft": "853", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sao Roque", + "scheduled_service": "no", + "gps_code": "SBRQ" + }, + { + "id": "299169", + "ident": "SBRR", + "type": "small_airport", + "name": "Barreirinhas National Airport", + "latitude_deg": "-2.756628", + "longitude_deg": "-42.805666", + "elevation_ft": "40", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Barreirinhas", + "scheduled_service": "no", + "gps_code": "SSRS", + "iata_code": "BRB" + }, + { + "id": "5969", + "ident": "SBSC", + "type": "medium_airport", + "name": "Santa Cruz Air Force Base", + "latitude_deg": "-22.9324", + "longitude_deg": "-43.719101", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SBSC", + "iata_code": "SNZ", + "local_code": "RJ9003", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Cruz_Air_Force_Base", + "keywords": "Santa Cruz AB, Bartolomeu de Gusmão Airport" + }, + { + "id": "313262", + "ident": "SBSG", + "type": "medium_airport", + "name": "São Gonçalo do Amarante - Governador Aluízio Alves International Airport", + "latitude_deg": "-5.769804", + "longitude_deg": "-35.366578", + "elevation_ft": "272", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Natal", + "scheduled_service": "yes", + "gps_code": "SBSG", + "iata_code": "NAT", + "local_code": "RN0001", + "home_link": "http://www.natal.aero", + "wikipedia_link": "https://en.wikipedia.org/wiki/Greater_Natal_International_Airport", + "keywords": "Greater Natal International Airport, Augusto Severo International Airport" + }, + { + "id": "5970", + "ident": "SBSJ", + "type": "medium_airport", + "name": "Professor Urbano Ernesto Stumpf Airport", + "latitude_deg": "-23.2292", + "longitude_deg": "-45.8615", + "elevation_ft": "2120", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São José Dos Campos", + "scheduled_service": "yes", + "gps_code": "SBSJ", + "iata_code": "SJK", + "local_code": "SP0008", + "wikipedia_link": "https://en.wikipedia.org/wiki/S%C3%A3o_Jos%C3%A9_dos_Campos_Regional_Airport" + }, + { + "id": "5971", + "ident": "SBSL", + "type": "medium_airport", + "name": "Marechal Cunha Machado International Airport", + "latitude_deg": "-2.58536", + "longitude_deg": "-44.2341", + "elevation_ft": "178", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "São Luís", + "scheduled_service": "yes", + "gps_code": "SBSL", + "iata_code": "SLZ", + "local_code": "MA0001", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marechal_Cunha_Machado_International_Airport" + }, + { + "id": "5972", + "ident": "SBSM", + "type": "medium_airport", + "name": "Santa Maria Airport", + "latitude_deg": "-29.711399", + "longitude_deg": "-53.688202", + "elevation_ft": "287", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Santa Maria", + "scheduled_service": "yes", + "gps_code": "SBSM", + "iata_code": "RIA", + "local_code": "RS0003", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Maria_Airport_(Rio_Grande_do_Sul)" + }, + { + "id": "5973", + "ident": "SBSN", + "type": "medium_airport", + "name": "Santarém - Maestro Wilson Fonseca International Airport", + "latitude_deg": "-2.422423", + "longitude_deg": "-54.79306", + "elevation_ft": "198", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santarém", + "scheduled_service": "yes", + "gps_code": "SBSN", + "iata_code": "STM", + "local_code": "PA0002", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-de-santarem-maestro-wilson-fonseca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santar%C3%A9m-Maestro_Wilson_Fonseca_Airport" + }, + { + "id": "321014", + "ident": "SBSO", + "type": "small_airport", + "name": "Adolino Bedin Regional Airport", + "latitude_deg": "-12.479177", + "longitude_deg": "-55.672341", + "elevation_ft": "1266", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "yes", + "gps_code": "SBSO", + "iata_code": "SMT", + "local_code": "MT0005", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-regional-de-sorriso/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sorriso_Airport", + "keywords": "SDSS" + }, + { + "id": "5974", + "ident": "SBSP", + "type": "medium_airport", + "name": "Congonhas Airport", + "latitude_deg": "-23.627657", + "longitude_deg": "-46.654601", + "elevation_ft": "2631", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "yes", + "gps_code": "SBSP", + "iata_code": "CGH", + "local_code": "SP0001", + "home_link": "http://www.infraero.gov.br/usa/aero_prev_home.php?ai=219", + "wikipedia_link": "https://en.wikipedia.org/wiki/Congonhas-S%C3%A3o_Paulo_International_Airport", + "keywords": "http://www.infraero.gov.br/usa/aero_prev_home.php?ai=219" + }, + { + "id": "5975", + "ident": "SBSR", + "type": "medium_airport", + "name": "Prof. Eribelto Manoel Reino State Airport", + "latitude_deg": "-20.817113", + "longitude_deg": "-49.406963", + "elevation_ft": "1784", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São José do Rio Preto", + "scheduled_service": "yes", + "gps_code": "SBSR", + "iata_code": "SJP", + "local_code": "SP0006", + "wikipedia_link": "https://en.wikipedia.org/wiki/S%C3%A3o_Jos%C3%A9_do_Rio_Preto_Airport", + "keywords": "São José do Rio Preto Airport" + }, + { + "id": "5976", + "ident": "SBST", + "type": "medium_airport", + "name": "Santos Nero Moura Air Base / Guarujá Airport", + "latitude_deg": "-23.928192", + "longitude_deg": "-46.300195", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarujá", + "scheduled_service": "no", + "gps_code": "SBST", + "iata_code": "SSZ", + "local_code": "SP9006", + "home_link": "https://www.fab.mil.br/organizacoes/mostra/50/BASE%20AÉREA%20DE%20SANTOS", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Base_Aérea_de_Santos" + }, + { + "id": "5977", + "ident": "SBSV", + "type": "large_airport", + "name": "Deputado Luiz Eduardo Magalhães International Airport", + "latitude_deg": "-12.908611", + "longitude_deg": "-38.322498", + "elevation_ft": "64", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Salvador", + "scheduled_service": "yes", + "gps_code": "SBSV", + "iata_code": "SSA", + "local_code": "BA0001", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-internacional-de-salvador-dep-luis-eduardo-magalhaes/web", + "wikipedia_link": "https://en.wikipedia.org/wiki/Deputado_Lu%C3%ADs_Eduardo_Magalh%C3%A3es_International_Airport", + "keywords": "Dois de Julho" + }, + { + "id": "313474", + "ident": "SBT", + "type": "closed", + "name": "Tri-City Airport", + "latitude_deg": "34.0677", + "longitude_deg": "-117.2725", + "elevation_ft": "1038", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Bernardino", + "scheduled_service": "no" + }, + { + "id": "5978", + "ident": "SBTA", + "type": "medium_airport", + "name": "Base de Aviação de Taubaté", + "latitude_deg": "-23.0401", + "longitude_deg": "-45.51615", + "elevation_ft": "1902", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Taubaté", + "scheduled_service": "no", + "gps_code": "SBTA", + "local_code": "SP9004", + "home_link": "http://www.cavex.eb.mil.br/index.php/bavt2", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Base_de_Aviação_de_Taubaté", + "keywords": "QHP" + }, + { + "id": "5979", + "ident": "SBTB", + "type": "medium_airport", + "name": "Trombetas Airport", + "latitude_deg": "-1.4896", + "longitude_deg": "-56.396801", + "elevation_ft": "167", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Oriximiná", + "scheduled_service": "yes", + "gps_code": "SBTB", + "iata_code": "TMT", + "local_code": "PA0012", + "wikipedia_link": "https://en.wikipedia.org/wiki/Porto_Trombetas_Airport", + "keywords": "Porto Trombetas" + }, + { + "id": "5980", + "ident": "SBTC", + "type": "small_airport", + "name": "Una-Comandatuba Airport", + "latitude_deg": "-15.354358", + "longitude_deg": "-38.998729", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Una", + "scheduled_service": "yes", + "gps_code": "SBTC", + "iata_code": "UNA", + "local_code": "BA0067", + "wikipedia_link": "https://en.wikipedia.org/wiki/Una-Comandatuba_Airport", + "keywords": "Hotel Transamérica" + }, + { + "id": "5981", + "ident": "SBTD", + "type": "small_airport", + "name": "Toledo - Luiz Dalcanale Filho Municipal Airport", + "latitude_deg": "-24.6863", + "longitude_deg": "-53.697498", + "elevation_ft": "1843", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Toledo", + "scheduled_service": "yes", + "gps_code": "SBTD", + "iata_code": "TOW", + "local_code": "PR0008", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toledo_Airport_(Brazil)" + }, + { + "id": "5982", + "ident": "SBTE", + "type": "medium_airport", + "name": "Senador Petrônio Portela Airport", + "latitude_deg": "-5.06025", + "longitude_deg": "-42.823712", + "elevation_ft": "219", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Teresina", + "scheduled_service": "yes", + "gps_code": "SBTE", + "iata_code": "THE", + "local_code": "PI0001" + }, + { + "id": "5983", + "ident": "SBTF", + "type": "medium_airport", + "name": "Tefé Airport", + "latitude_deg": "-3.38294", + "longitude_deg": "-64.724098", + "elevation_ft": "186", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Tefé", + "scheduled_service": "yes", + "gps_code": "SBTF", + "iata_code": "TFF", + "local_code": "AM0004", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tef%C3%A9_Airport" + }, + { + "id": "5984", + "ident": "SBTK", + "type": "medium_airport", + "name": "Tarauacá Airport", + "latitude_deg": "-8.155534", + "longitude_deg": "-70.782985", + "elevation_ft": "646", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Tarauacá", + "scheduled_service": "no", + "gps_code": "SBTK", + "iata_code": "TRQ", + "local_code": "AC0004", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tarauac%C3%A1_Airport" + }, + { + "id": "5985", + "ident": "SBTL", + "type": "medium_airport", + "name": "Telêmaco Borba Airport", + "latitude_deg": "-24.317801", + "longitude_deg": "-50.6516", + "elevation_ft": "2610", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Telêmaco Borba", + "scheduled_service": "no", + "gps_code": "SSVL", + "iata_code": "TEC", + "local_code": "PR0007", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tel%C3%AAmaco_Borba_Airport", + "keywords": "SBTL" + }, + { + "id": "5986", + "ident": "SBTR", + "type": "small_airport", + "name": "Torres Airport", + "latitude_deg": "-29.4149", + "longitude_deg": "-49.810001", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Torres", + "scheduled_service": "no", + "gps_code": "SSTE", + "iata_code": "TSQ", + "local_code": "RS0011", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Torres", + "keywords": "SBTR" + }, + { + "id": "5987", + "ident": "SBTS", + "type": "medium_airport", + "name": "Tiriós Airport", + "latitude_deg": "2.224537", + "longitude_deg": "-55.944711", + "elevation_ft": "1127", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Aldeia Tiriós", + "scheduled_service": "no", + "gps_code": "SBTS", + "local_code": "PA9002", + "keywords": "Óbidos, Base das Canoas" + }, + { + "id": "5988", + "ident": "SBTT", + "type": "medium_airport", + "name": "Tabatinga Airport", + "latitude_deg": "-4.25567", + "longitude_deg": "-69.935799", + "elevation_ft": "263", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Tabatinga", + "scheduled_service": "yes", + "gps_code": "SBTT", + "iata_code": "TBT", + "local_code": "AM0005", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tabatinga_International_Airport" + }, + { + "id": "5989", + "ident": "SBTU", + "type": "medium_airport", + "name": "Tucuruí Airport", + "latitude_deg": "-3.78601", + "longitude_deg": "-49.720299", + "elevation_ft": "830", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Tucuruí", + "scheduled_service": "yes", + "gps_code": "SBTU", + "iata_code": "TUR", + "local_code": "PA0007", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tucuru%C3%AD_Airport" + }, + { + "id": "42738", + "ident": "SBTV", + "type": "small_airport", + "name": "Terravista Airport", + "latitude_deg": "-16.541416", + "longitude_deg": "-39.10811", + "elevation_ft": "164", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Porto Seguro", + "scheduled_service": "no", + "gps_code": "SBTV", + "local_code": "BA0068" + }, + { + "id": "5990", + "ident": "SBUA", + "type": "medium_airport", + "name": "São Gabriel da Cachoeira Airport", + "latitude_deg": "-0.14835", + "longitude_deg": "-66.9855", + "elevation_ft": "249", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "São Gabriel da Cachoeira", + "scheduled_service": "yes", + "gps_code": "SBUA", + "iata_code": "SJL", + "local_code": "AM0003", + "home_link": "https://sjlairport.com.br/", + "wikipedia_link": "https://en.wikipedia.org/wiki/São_Gabriel_da_Cachoeira_Airport", + "keywords": "Uaupés" + }, + { + "id": "5991", + "ident": "SBUF", + "type": "medium_airport", + "name": "Paulo Afonso Airport", + "latitude_deg": "-9.40088", + "longitude_deg": "-38.250599", + "elevation_ft": "883", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Paulo Afonso", + "scheduled_service": "yes", + "gps_code": "SBUF", + "iata_code": "PAV", + "local_code": "BA0007", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-de-paulo-afonso/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paulo_Afonso_Airport" + }, + { + "id": "5992", + "ident": "SBUG", + "type": "medium_airport", + "name": "Rubem Berta Airport", + "latitude_deg": "-29.7822", + "longitude_deg": "-57.0382", + "elevation_ft": "256", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Uruguaiana", + "scheduled_service": "yes", + "gps_code": "SBUG", + "iata_code": "URG", + "local_code": "RS0012", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ruben_Berta_International_Airport", + "keywords": "Ruben Berta" + }, + { + "id": "5993", + "ident": "SBUL", + "type": "medium_airport", + "name": "Ten. Cel. Aviador César Bombonato Airport", + "latitude_deg": "-18.883579", + "longitude_deg": "-48.225936", + "elevation_ft": "3094", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberlândia", + "scheduled_service": "yes", + "gps_code": "SBUL", + "iata_code": "UDI", + "local_code": "MG0002", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-de-uberlandia-ten-cel-aviador-cesar-bombonato/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Uberlândia_Airport" + }, + { + "id": "5995", + "ident": "SBUR", + "type": "medium_airport", + "name": "Mário de Almeida Franco Airport", + "latitude_deg": "-19.764722824097", + "longitude_deg": "-47.966110229492", + "elevation_ft": "2655", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberaba", + "scheduled_service": "yes", + "gps_code": "SBUR", + "iata_code": "UBA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Uberaba_Airport" + }, + { + "id": "590", + "ident": "SBUY", + "type": "small_airport", + "name": "Urucu Airport", + "latitude_deg": "-4.884263", + "longitude_deg": "-65.355421", + "elevation_ft": "210", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Urucu", + "scheduled_service": "no", + "gps_code": "SBUY", + "iata_code": "RPU", + "local_code": "AM0025", + "wikipedia_link": "https://en.wikipedia.org/wiki/Porto_Urucu_Airport", + "keywords": "SWUY" + }, + { + "id": "5996", + "ident": "SBVG", + "type": "medium_airport", + "name": "Major Brigadeiro Trompowsky Airport", + "latitude_deg": "-21.591375", + "longitude_deg": "-45.474116", + "elevation_ft": "3025", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Varginha", + "scheduled_service": "no", + "gps_code": "SBVG", + "iata_code": "VAG", + "local_code": "MG0019", + "wikipedia_link": "https://en.wikipedia.org/wiki/Varginha_Airport", + "keywords": "Varginha Airport" + }, + { + "id": "5997", + "ident": "SBVH", + "type": "medium_airport", + "name": "Brigadeiro Camarão Airport", + "latitude_deg": "-12.6944", + "longitude_deg": "-60.098301", + "elevation_ft": "2018", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Vilhena", + "scheduled_service": "yes", + "gps_code": "SBVH", + "iata_code": "BVH", + "local_code": "RO0003", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vilhena_Airport", + "keywords": "Vilhena Airport" + }, + { + "id": "5998", + "ident": "SBVT", + "type": "medium_airport", + "name": "Eurico de Aguiar Salles Airport", + "latitude_deg": "-20.258", + "longitude_deg": "-40.285", + "elevation_ft": "34", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Vitória", + "scheduled_service": "yes", + "gps_code": "SBVT", + "iata_code": "VIX", + "local_code": "ES0001", + "home_link": "https://www4.infraero.gov.br/aeroportos/aeroporto-de-vitoria-eurico-de-aguiar-salles/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eurico_de_Aguiar_Salles_Airport" + }, + { + "id": "5999", + "ident": "SBYA", + "type": "small_airport", + "name": "Iauaretê Airport", + "latitude_deg": "0.610384", + "longitude_deg": "-69.179992", + "elevation_ft": "466", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "São Gabriel da Cachoeira", + "scheduled_service": "no", + "gps_code": "SBYA", + "local_code": "AM9005", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Iauaret%C3%AA" + }, + { + "id": "6000", + "ident": "SBYS", + "type": "medium_airport", + "name": "Campo Fontenelle", + "latitude_deg": "-21.984692", + "longitude_deg": "-47.341207", + "elevation_ft": "1968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Pirassununga", + "scheduled_service": "no", + "gps_code": "SBYS", + "iata_code": "QPS", + "local_code": "SP9002", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeródromo_Campo_de_Fontenelle" + }, + { + "id": "308204", + "ident": "SBZM", + "type": "medium_airport", + "name": "Presidente Itamar Franco Airport", + "latitude_deg": "-21.513086", + "longitude_deg": "-43.173069", + "elevation_ft": "1348", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Juiz de Fora", + "scheduled_service": "yes", + "gps_code": "SBZM", + "iata_code": "IZA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zona_da_Mata_Regional_Airport", + "keywords": "SDZY, Zona da Mata Regional Airport, Juiz de Fora Airport" + }, + { + "id": "343549", + "ident": "SC-0001", + "type": "heliport", + "name": "Silhouette Heliport", + "latitude_deg": "-4.48403", + "longitude_deg": "55.2525", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-15", + "municipality": "Silhouette", + "scheduled_service": "no" + }, + { + "id": "343550", + "ident": "SC-0002", + "type": "heliport", + "name": "North Island Heliport", + "latitude_deg": "-4.3971", + "longitude_deg": "55.24979", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-15", + "municipality": "North Island", + "scheduled_service": "no" + }, + { + "id": "329055", + "ident": "SC-0003", + "type": "heliport", + "name": "Sainte Anne Helipad", + "latitude_deg": "-4.614632", + "longitude_deg": "55.499347", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-18", + "municipality": "Sainte Anne Island", + "scheduled_service": "no" + }, + { + "id": "343551", + "ident": "SC-0004", + "type": "heliport", + "name": "Frégate Island Heliport", + "latitude_deg": "-4.58477", + "longitude_deg": "55.94665", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-15", + "municipality": "Frégate Island", + "scheduled_service": "no" + }, + { + "id": "343552", + "ident": "SC-0005", + "type": "heliport", + "name": "La Digue Heliport", + "latitude_deg": "-4.3608", + "longitude_deg": "55.82495", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-15", + "municipality": "La Digue", + "scheduled_service": "no" + }, + { + "id": "343553", + "ident": "SC-0006", + "type": "heliport", + "name": "Port Glaud Helipad", + "latitude_deg": "-4.66067", + "longitude_deg": "55.40396", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-21", + "municipality": "Port Glaud", + "scheduled_service": "no" + }, + { + "id": "349353", + "ident": "SC-0007", + "type": "small_airport", + "name": "Poivre Airport", + "latitude_deg": "-5.746533", + "longitude_deg": "53.305593", + "continent": "AF", + "iso_country": "SC", + "iso_region": "SC-15", + "municipality": "Poivre", + "scheduled_service": "no" + }, + { + "id": "24398", + "ident": "SC00", + "type": "small_airport", + "name": "Triple Tree Airport", + "latitude_deg": "34.667949", + "longitude_deg": "-81.999979", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Woodruff", + "scheduled_service": "no", + "gps_code": "SC00", + "local_code": "SC00" + }, + { + "id": "24399", + "ident": "SC01", + "type": "closed", + "name": "Sugar Hill Airport", + "latitude_deg": "33.039001", + "longitude_deg": "-81.294296", + "elevation_ft": "203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Allendale", + "scheduled_service": "no", + "keywords": "SC01" + }, + { + "id": "24400", + "ident": "SC02", + "type": "heliport", + "name": "Beaufort County Memorial Hospital Heliport", + "latitude_deg": "32.416900634765625", + "longitude_deg": "-80.68730163574219", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Beaufort", + "scheduled_service": "no", + "gps_code": "SC02", + "local_code": "SC02" + }, + { + "id": "24401", + "ident": "SC03", + "type": "small_airport", + "name": "Mc Neil Airport", + "latitude_deg": "33.5570983887", + "longitude_deg": "-80.648399353", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Cameron", + "scheduled_service": "no", + "gps_code": "SC03", + "local_code": "SC03" + }, + { + "id": "24402", + "ident": "SC04", + "type": "heliport", + "name": "Piedmont Medical Center Heliport", + "latitude_deg": "34.958", + "longitude_deg": "-81.05033", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Rock Hill", + "scheduled_service": "no", + "gps_code": "SC04", + "local_code": "SC04" + }, + { + "id": "24403", + "ident": "SC05", + "type": "closed", + "name": "Laurel Hill Plantation Airport", + "latitude_deg": "32.491299", + "longitude_deg": "-80.615097", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Beaufort", + "scheduled_service": "no", + "keywords": "SC05" + }, + { + "id": "24404", + "ident": "SC06", + "type": "small_airport", + "name": "Pluff Mud Field", + "latitude_deg": "32.63209915161133", + "longitude_deg": "-80.09230041503906", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Charleston", + "scheduled_service": "no", + "gps_code": "SC06", + "local_code": "SC06" + }, + { + "id": "24405", + "ident": "SC07", + "type": "small_airport", + "name": "Alan's Airport", + "latitude_deg": "33.67580032348633", + "longitude_deg": "-80.94969940185547", + "elevation_ft": "369", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "St Matthews", + "scheduled_service": "no", + "gps_code": "SC07", + "local_code": "SC07" + }, + { + "id": "24406", + "ident": "SC08", + "type": "closed", + "name": "Bethel-Lake Wylie Airport", + "latitude_deg": "35.050097", + "longitude_deg": "-81.137299", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "York", + "scheduled_service": "no", + "keywords": "SC08" + }, + { + "id": "24407", + "ident": "SC09", + "type": "heliport", + "name": "Clarendon Memorial Hospital Heliport", + "latitude_deg": "33.68709945678711", + "longitude_deg": "-80.21119689941406", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Manning", + "scheduled_service": "no", + "gps_code": "SC09", + "local_code": "SC09" + }, + { + "id": "24408", + "ident": "SC10", + "type": "closed", + "name": "State Line Ultraport/Flightpark Ultralightport", + "latitude_deg": "35.178483", + "longitude_deg": "-81.805482", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Gaffney", + "scheduled_service": "no", + "gps_code": "SC10", + "local_code": "SC10" + }, + { + "id": "24409", + "ident": "SC11", + "type": "heliport", + "name": "Fort Jackson Helipad Heliport", + "latitude_deg": "34.03350067138672", + "longitude_deg": "-80.8998031616211", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Fort Jackson", + "scheduled_service": "no", + "gps_code": "SC11", + "local_code": "SC11" + }, + { + "id": "24410", + "ident": "SC12", + "type": "small_airport", + "name": "Davis Airport", + "latitude_deg": "32.67210006713867", + "longitude_deg": "-81.31120300292969", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Garnett", + "scheduled_service": "no", + "gps_code": "SC12", + "local_code": "SC12" + }, + { + "id": "24411", + "ident": "SC13", + "type": "small_airport", + "name": "Darden Airport", + "latitude_deg": "33.8406982421875", + "longitude_deg": "-81.18370056152344", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Gaston", + "scheduled_service": "no", + "gps_code": "SC13", + "local_code": "SC13" + }, + { + "id": "24412", + "ident": "SC14", + "type": "small_airport", + "name": "Shealy Airport", + "latitude_deg": "34.062599182128906", + "longitude_deg": "-81.40979766845703", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Gilbert", + "scheduled_service": "no", + "gps_code": "SC14", + "local_code": "SC14" + }, + { + "id": "24413", + "ident": "SC15", + "type": "small_airport", + "name": "Airy Hall Airport", + "latitude_deg": "32.63209915161133", + "longitude_deg": "-80.50399780273438", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Green Pond", + "scheduled_service": "no", + "gps_code": "SC15", + "local_code": "SC15" + }, + { + "id": "24414", + "ident": "SC16", + "type": "small_airport", + "name": "Curry Airport", + "latitude_deg": "34.377899169921875", + "longitude_deg": "-80.00530242919922", + "elevation_ft": "199", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Hartsville", + "scheduled_service": "no", + "gps_code": "SC16", + "local_code": "SC16" + }, + { + "id": "24415", + "ident": "SC17", + "type": "small_airport", + "name": "Russell Airport", + "latitude_deg": "33.357703", + "longitude_deg": "-80.459146", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Holly Hill", + "scheduled_service": "no", + "gps_code": "SC17", + "local_code": "SC17" + }, + { + "id": "24416", + "ident": "SC18", + "type": "heliport", + "name": "Lexington Medical Center Heliport", + "latitude_deg": "34.00040054321289", + "longitude_deg": "-81.10399627685547", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "West Columbia", + "scheduled_service": "no", + "gps_code": "SC18", + "local_code": "SC18" + }, + { + "id": "24417", + "ident": "SC19", + "type": "small_airport", + "name": "Lamar Airport", + "latitude_deg": "34.167701721191406", + "longitude_deg": "-80.07759857177734", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Lamar", + "scheduled_service": "no", + "gps_code": "SC19", + "local_code": "SC19" + }, + { + "id": "1639", + "ident": "SC1A", + "type": "small_airport", + "name": "Canchones West Airport", + "latitude_deg": "-20.427099227905273", + "longitude_deg": "-69.6415023803711", + "elevation_ft": "3251", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-TA", + "municipality": "Canchones", + "scheduled_service": "no", + "gps_code": "SC1A" + }, + { + "id": "24418", + "ident": "SC20", + "type": "small_airport", + "name": "Harman Airport", + "latitude_deg": "33.48429870605469", + "longitude_deg": "-81.82589721679688", + "elevation_ft": "458", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Langley", + "scheduled_service": "no", + "gps_code": "SC20", + "local_code": "SC20" + }, + { + "id": "24419", + "ident": "SC21", + "type": "small_airport", + "name": "Myrtle Beach Hardee Airpark", + "latitude_deg": "33.942902", + "longitude_deg": "-78.828984", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Loris", + "scheduled_service": "no", + "gps_code": "SC21", + "local_code": "SC21" + }, + { + "id": "24420", + "ident": "SC22", + "type": "heliport", + "name": "Richland Memorial Hospital Heliport", + "latitude_deg": "34.02790069580078", + "longitude_deg": "-81.03340148925781", + "elevation_ft": "258", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "SC22", + "local_code": "SC22" + }, + { + "id": "24421", + "ident": "SC23", + "type": "small_airport", + "name": "Eagles Nest-Fairview Airpark", + "latitude_deg": "33.763999938964844", + "longitude_deg": "-81.35870361328125", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Pelion", + "scheduled_service": "no", + "gps_code": "SC23", + "local_code": "SC23" + }, + { + "id": "24422", + "ident": "SC24", + "type": "small_airport", + "name": "Eagle Ridge Airport", + "latitude_deg": "34.67169952392578", + "longitude_deg": "-82.9135971069336", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Seneca", + "scheduled_service": "no", + "gps_code": "SC24", + "local_code": "SC24" + }, + { + "id": "24423", + "ident": "SC25", + "type": "small_airport", + "name": "Ross Strip", + "latitude_deg": "34.4226989746", + "longitude_deg": "-79.884803772", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "W Society Hill", + "scheduled_service": "no", + "gps_code": "SC25", + "local_code": "SC25" + }, + { + "id": "24424", + "ident": "SC26", + "type": "small_airport", + "name": "Hawks Nest Farm Airport", + "latitude_deg": "34.808101654052734", + "longitude_deg": "-82.99859619140625", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "West Union", + "scheduled_service": "no", + "gps_code": "SC26", + "local_code": "SC26" + }, + { + "id": "24425", + "ident": "SC27", + "type": "small_airport", + "name": "Tallon Field", + "latitude_deg": "34.10100173950195", + "longitude_deg": "-80.12560272216797", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Lynchburg", + "scheduled_service": "no", + "gps_code": "SC27", + "local_code": "SC27" + }, + { + "id": "24427", + "ident": "SC29", + "type": "small_airport", + "name": "Mc Kay Airport", + "latitude_deg": "34.1106987", + "longitude_deg": "-79.90149688720001", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Timmonsville", + "scheduled_service": "no", + "gps_code": "SC29", + "local_code": "SC29" + }, + { + "id": "24428", + "ident": "SC30", + "type": "heliport", + "name": "Savannah River Site (Department of Energy) Heliport", + "latitude_deg": "33.2836", + "longitude_deg": "-81.726402", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Aiken", + "scheduled_service": "no", + "gps_code": "SC30", + "local_code": "SC30" + }, + { + "id": "24429", + "ident": "SC31", + "type": "heliport", + "name": "Springs Memorial Heliport", + "latitude_deg": "34.71879959106445", + "longitude_deg": "-80.78369903564453", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "SC31", + "local_code": "SC31" + }, + { + "id": "337170", + "ident": "SC32", + "type": "heliport", + "name": "Oconee Memorial Hospital Heliport", + "latitude_deg": "34.694322", + "longitude_deg": "-82.988886", + "elevation_ft": "962", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Seneca", + "scheduled_service": "no", + "local_code": "SC32" + }, + { + "id": "24431", + "ident": "SC33", + "type": "closed", + "name": "Cox Airport", + "latitude_deg": "34.824299", + "longitude_deg": "-82.259804", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Simpsonville", + "scheduled_service": "no", + "keywords": "SC33" + }, + { + "id": "24432", + "ident": "SC34", + "type": "small_airport", + "name": "Iva Field", + "latitude_deg": "34.29710006713867", + "longitude_deg": "-82.68370056152344", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Iva", + "scheduled_service": "no", + "gps_code": "SC34", + "local_code": "SC34" + }, + { + "id": "24433", + "ident": "SC35", + "type": "small_airport", + "name": "Ehrhardt Airport", + "latitude_deg": "33.089599609375", + "longitude_deg": "-81.0082015991211", + "elevation_ft": "146", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Ehrhardt", + "scheduled_service": "no", + "gps_code": "SC35", + "local_code": "SC35" + }, + { + "id": "24434", + "ident": "SC36", + "type": "closed", + "name": "Emery Airport", + "latitude_deg": "35.124699", + "longitude_deg": "-82.326402", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Greer", + "scheduled_service": "no", + "keywords": "SC36" + }, + { + "id": "24435", + "ident": "SC37", + "type": "small_airport", + "name": "Crosswinds-Wilson Private Airport", + "latitude_deg": "33.27180099487305", + "longitude_deg": "-80.25430297851562", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Cross", + "scheduled_service": "no", + "gps_code": "SC37", + "local_code": "SC37" + }, + { + "id": "24436", + "ident": "SC38", + "type": "small_airport", + "name": "Pocotaligo Airport", + "latitude_deg": "33.70750045776367", + "longitude_deg": "-80.08059692382812", + "elevation_ft": "112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Manning", + "scheduled_service": "no", + "gps_code": "SC38", + "local_code": "SC38" + }, + { + "id": "24437", + "ident": "SC39", + "type": "small_airport", + "name": "Green Pond Airport", + "latitude_deg": "34.808553", + "longitude_deg": "-82.077377", + "elevation_ft": "788", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Woodruff", + "scheduled_service": "no", + "gps_code": "SC39", + "local_code": "SC39" + }, + { + "id": "24438", + "ident": "SC40", + "type": "small_airport", + "name": "Pearson's Farm Airport", + "latitude_deg": "35.05730056762695", + "longitude_deg": "-81.9448013305664", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Spartanburg", + "scheduled_service": "no", + "gps_code": "SC40", + "local_code": "SC40" + }, + { + "id": "24439", + "ident": "SC41", + "type": "small_airport", + "name": "Palmetto Air Plantation Airport", + "latitude_deg": "33.66609955", + "longitude_deg": "-80.24389648", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Manning", + "scheduled_service": "no", + "gps_code": "SC41", + "local_code": "SC41" + }, + { + "id": "24440", + "ident": "SC42", + "type": "small_airport", + "name": "Hondarosa Airport", + "latitude_deg": "32.6869010925293", + "longitude_deg": "-80.10639953613281", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Charleston", + "scheduled_service": "no", + "gps_code": "SC42", + "local_code": "SC42" + }, + { + "id": "24441", + "ident": "SC43", + "type": "small_airport", + "name": "Moore's Field", + "latitude_deg": "34.59370040893555", + "longitude_deg": "-82.39900207519531", + "elevation_ft": "871", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Williamston", + "scheduled_service": "no", + "gps_code": "SC43", + "local_code": "SC43" + }, + { + "id": "24442", + "ident": "SC44", + "type": "small_airport", + "name": "El Porvenir Airpark", + "latitude_deg": "34.12879944", + "longitude_deg": "-80.54730225", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Boykin", + "scheduled_service": "no", + "gps_code": "SC44", + "local_code": "SC44" + }, + { + "id": "24443", + "ident": "SC45", + "type": "small_airport", + "name": "Gilbert International Airport", + "latitude_deg": "33.88399887084961", + "longitude_deg": "-81.38179779052734", + "elevation_ft": "551", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Gilbert", + "scheduled_service": "no", + "gps_code": "SC45", + "local_code": "SC45" + }, + { + "id": "24444", + "ident": "SC46", + "type": "small_airport", + "name": "House Movers Field", + "latitude_deg": "33.85100173950195", + "longitude_deg": "-81.54840087890625", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Batesburg", + "scheduled_service": "no", + "gps_code": "SC46", + "local_code": "SC46" + }, + { + "id": "24445", + "ident": "SC47", + "type": "small_airport", + "name": "Parker Field", + "latitude_deg": "34.76139831542969", + "longitude_deg": "-82.1613998413086", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Simpsonville", + "scheduled_service": "no", + "gps_code": "SC47", + "local_code": "SC47" + }, + { + "id": "24446", + "ident": "SC48", + "type": "small_airport", + "name": "Byrd Field", + "latitude_deg": "33.884300231933594", + "longitude_deg": "-79.99980163574219", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Turbeville", + "scheduled_service": "no", + "gps_code": "SC48", + "local_code": "SC48" + }, + { + "id": "24448", + "ident": "SC50", + "type": "closed", + "name": "Yonges Island Airport", + "latitude_deg": "32.697398", + "longitude_deg": "-80.225899", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Charleston", + "scheduled_service": "no", + "keywords": "SC50" + }, + { + "id": "24449", + "ident": "SC51", + "type": "small_airport", + "name": "Too Goo Doo Farms Airport", + "latitude_deg": "32.7046012878418", + "longitude_deg": "-80.2531967163086", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Meggett", + "scheduled_service": "no", + "gps_code": "SC51", + "local_code": "SC51" + }, + { + "id": "24450", + "ident": "SC52", + "type": "closed", + "name": "Oakview Airport", + "latitude_deg": "34.811895", + "longitude_deg": "-82.818646", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Six Mile", + "scheduled_service": "no", + "keywords": "SC52" + }, + { + "id": "24451", + "ident": "SC53", + "type": "heliport", + "name": "Usar Center, Clemson Heliport", + "latitude_deg": "34.68339920043945", + "longitude_deg": "-82.81790161132812", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Clemson", + "scheduled_service": "no", + "gps_code": "SC53", + "local_code": "SC53" + }, + { + "id": "24452", + "ident": "SC54", + "type": "heliport", + "name": "Milliken & County Heliport", + "latitude_deg": "34.98680114746094", + "longitude_deg": "-81.95339965820312", + "elevation_ft": "863", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Spartanburg", + "scheduled_service": "no", + "gps_code": "SC54", + "local_code": "SC54" + }, + { + "id": "24453", + "ident": "SC55", + "type": "small_airport", + "name": "Broxton Bridge Plantation Airport", + "latitude_deg": "33.008878", + "longitude_deg": "-81.048203", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Ehrhardt", + "scheduled_service": "no", + "gps_code": "SC55", + "local_code": "SC55" + }, + { + "id": "24454", + "ident": "SC56", + "type": "small_airport", + "name": "Thomason Airfield", + "latitude_deg": "34.36349868774414", + "longitude_deg": "-81.99320220947266", + "elevation_ft": "642", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Mountville", + "scheduled_service": "no", + "gps_code": "SC56", + "local_code": "SC56" + }, + { + "id": "24455", + "ident": "SC57", + "type": "closed", + "name": "Creech Aviation Facility Airport", + "latitude_deg": "33.8843", + "longitude_deg": "-80.494796", + "elevation_ft": "178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Wedgefield", + "scheduled_service": "no", + "keywords": "SC57" + }, + { + "id": "24456", + "ident": "SC58", + "type": "closed", + "name": "Hartness Airport", + "latitude_deg": "34.847099", + "longitude_deg": "-82.251801", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Greenville", + "scheduled_service": "no", + "keywords": "SC58" + }, + { + "id": "24457", + "ident": "SC59", + "type": "heliport", + "name": "Palmetto Heliport", + "latitude_deg": "34.763999938964844", + "longitude_deg": "-82.39430236816406", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "SC59", + "local_code": "SC59" + }, + { + "id": "24458", + "ident": "SC60", + "type": "small_airport", + "name": "Cockfield Aerodrome", + "latitude_deg": "33.90409851074219", + "longitude_deg": "-79.68399810791016", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Scranton", + "scheduled_service": "no", + "gps_code": "SC60", + "local_code": "SC60" + }, + { + "id": "24459", + "ident": "SC61", + "type": "small_airport", + "name": "Wild Irish Rose Airport", + "latitude_deg": "34.61790084838867", + "longitude_deg": "-80.15170288085938", + "elevation_ft": "376", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Cheraw", + "scheduled_service": "no", + "gps_code": "SC61", + "local_code": "SC61" + }, + { + "id": "24460", + "ident": "SC62", + "type": "heliport", + "name": "Hampton Regional Medical Center Heliport", + "latitude_deg": "32.8524017334", + "longitude_deg": "-81.0886993408", + "elevation_ft": "86", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Varnville", + "scheduled_service": "no", + "gps_code": "SC62", + "local_code": "SC62" + }, + { + "id": "24461", + "ident": "SC63", + "type": "heliport", + "name": "Summers Station Heliport", + "latitude_deg": "34.296600341796875", + "longitude_deg": "-81.31330108642578", + "elevation_ft": "436", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Jenkinsville", + "scheduled_service": "no", + "gps_code": "SC63", + "local_code": "SC63" + }, + { + "id": "24462", + "ident": "SC64", + "type": "heliport", + "name": "The Reg Med Center of Orbg & Calhoun Co Heliport", + "latitude_deg": "33.53960037", + "longitude_deg": "-80.83070374", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Orangeburg", + "scheduled_service": "no", + "gps_code": "SC64", + "local_code": "SC64" + }, + { + "id": "24463", + "ident": "SC65", + "type": "small_airport", + "name": "Raven's Run Airport", + "latitude_deg": "32.82379913330078", + "longitude_deg": "-79.80670166015625", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Mount Pleasant", + "scheduled_service": "no", + "gps_code": "SC65", + "local_code": "SC65" + }, + { + "id": "24464", + "ident": "SC66", + "type": "closed", + "name": "E M M D Plant Heliport", + "latitude_deg": "34.684898", + "longitude_deg": "-81.733398", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Union", + "scheduled_service": "no", + "keywords": "SC66" + }, + { + "id": "24465", + "ident": "SC67", + "type": "small_airport", + "name": "Falls Landing", + "latitude_deg": "34.909197", + "longitude_deg": "-81.07466", + "elevation_ft": "587", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Rock Hill", + "scheduled_service": "no", + "local_code": "55SC", + "keywords": "SC67, Country Squire Airport" + }, + { + "id": "24466", + "ident": "SC68", + "type": "heliport", + "name": "Fripp Island Emergency Heliport", + "latitude_deg": "32.3218994140625", + "longitude_deg": "-80.49120330810547", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Frogmore", + "scheduled_service": "no", + "gps_code": "SC68", + "local_code": "SC68" + }, + { + "id": "24467", + "ident": "SC69", + "type": "small_airport", + "name": "Shiloh Plantation Airport", + "latitude_deg": "33.120601654052734", + "longitude_deg": "-80.95079803466797", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Ehrhardt", + "scheduled_service": "no", + "gps_code": "SC69", + "local_code": "SC69" + }, + { + "id": "24468", + "ident": "SC70", + "type": "closed", + "name": "Anna's Airport", + "latitude_deg": "34.724998", + "longitude_deg": "-83.084999", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Walhalla", + "scheduled_service": "no", + "keywords": "SC70" + }, + { + "id": "24469", + "ident": "SC71", + "type": "heliport", + "name": "Medical University of South Carolina Heliport", + "latitude_deg": "32.78710174560547", + "longitude_deg": "-79.95259857177734", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Charleston", + "scheduled_service": "no", + "gps_code": "SC71", + "local_code": "SC71" + }, + { + "id": "24470", + "ident": "SC72", + "type": "small_airport", + "name": "Chandelle Airport", + "latitude_deg": "34.824161", + "longitude_deg": "-82.14632", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Greer", + "scheduled_service": "no", + "gps_code": "SC72", + "local_code": "SC72" + }, + { + "id": "24471", + "ident": "SC73", + "type": "heliport", + "name": "Newberry County Memorial Hospital Heliport", + "latitude_deg": "34.29090118408203", + "longitude_deg": "-81.60669708251953", + "elevation_ft": "502", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Newberry", + "scheduled_service": "no", + "gps_code": "SC73", + "local_code": "SC73" + }, + { + "id": "24472", + "ident": "SC74", + "type": "small_airport", + "name": "Marsh Point Airport", + "latitude_deg": "32.46189880371094", + "longitude_deg": "-80.60089874267578", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Beaufort", + "scheduled_service": "no", + "gps_code": "SC74", + "local_code": "SC74" + }, + { + "id": "24473", + "ident": "SC75", + "type": "small_airport", + "name": "Oolenoy Valley Airport", + "latitude_deg": "34.998199462890625", + "longitude_deg": "-82.73490142822266", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Pickens", + "scheduled_service": "no", + "gps_code": "SC75", + "local_code": "SC75" + }, + { + "id": "24474", + "ident": "SC76", + "type": "small_airport", + "name": "Unity Aerodrome", + "latitude_deg": "34.80270004272461", + "longitude_deg": "-80.68009948730469", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "SC76", + "local_code": "SC76" + }, + { + "id": "24475", + "ident": "SC77", + "type": "heliport", + "name": "Providence Hospital Heliport", + "latitude_deg": "34.01459884643555", + "longitude_deg": "-81.01200103759766", + "elevation_ft": "322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "SC77", + "local_code": "SC77" + }, + { + "id": "24476", + "ident": "SC78", + "type": "small_airport", + "name": "King Field", + "latitude_deg": "35.0906982421875", + "longitude_deg": "-82.49539947509766", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "SC78", + "local_code": "SC78" + }, + { + "id": "24477", + "ident": "SC79", + "type": "small_airport", + "name": "Bermuda High Gliderport", + "latitude_deg": "34.61130142211914", + "longitude_deg": "-80.44979858398438", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "SC79", + "local_code": "SC79" + }, + { + "id": "24478", + "ident": "SC80", + "type": "closed", + "name": "Anderson Airport", + "latitude_deg": "34.667245", + "longitude_deg": "-82.71033", + "elevation_ft": "817", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Pendleton", + "scheduled_service": "no", + "keywords": "SC80" + }, + { + "id": "24479", + "ident": "SC81", + "type": "small_airport", + "name": "Abbeville Airport", + "latitude_deg": "34.1515007019", + "longitude_deg": "-82.35369873050001", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Abbeville", + "scheduled_service": "no", + "gps_code": "SC81", + "local_code": "SC81" + }, + { + "id": "24480", + "ident": "SC82", + "type": "small_airport", + "name": "Oakhill Airpark", + "latitude_deg": "34.58470153808594", + "longitude_deg": "-82.35169982910156", + "elevation_ft": "837", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Williamson", + "scheduled_service": "no", + "gps_code": "SC82", + "local_code": "SC82" + }, + { + "id": "24481", + "ident": "SC83", + "type": "heliport", + "name": "Abbeville County Memorial Hospital Heliport", + "latitude_deg": "34.160301208496094", + "longitude_deg": "-82.38330078125", + "elevation_ft": "604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Abbeville", + "scheduled_service": "no", + "gps_code": "SC83", + "local_code": "SC83" + }, + { + "id": "24482", + "ident": "SC84", + "type": "closed", + "name": "Milliken & Company Heliport", + "latitude_deg": "35.116501", + "longitude_deg": "-81.561501", + "elevation_ft": "606", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Blacksburg", + "scheduled_service": "no", + "keywords": "SC84" + }, + { + "id": "24483", + "ident": "SC85", + "type": "heliport", + "name": "Chester County Hospital Heliport", + "latitude_deg": "34.68349838256836", + "longitude_deg": "-81.18399810791016", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Chester", + "scheduled_service": "no", + "gps_code": "SC85", + "local_code": "SC85" + }, + { + "id": "24484", + "ident": "SC86", + "type": "small_airport", + "name": "Williamsport Airpark", + "latitude_deg": "34.861826", + "longitude_deg": "-82.58145", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Easley", + "scheduled_service": "no", + "gps_code": "SC86", + "local_code": "SC86" + }, + { + "id": "24485", + "ident": "SC87", + "type": "small_airport", + "name": "Avinger Field", + "latitude_deg": "33.44279861450195", + "longitude_deg": "-80.45559692382812", + "elevation_ft": "138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Vance", + "scheduled_service": "no", + "gps_code": "SC87", + "local_code": "SC87" + }, + { + "id": "24486", + "ident": "SC88", + "type": "small_airport", + "name": "Turner Field", + "latitude_deg": "35.147301", + "longitude_deg": "-81.794268", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Chesnee", + "scheduled_service": "no", + "gps_code": "SC88", + "local_code": "SC88", + "keywords": "Davis Field" + }, + { + "id": "24487", + "ident": "SC89", + "type": "small_airport", + "name": "Price Airport", + "latitude_deg": "34.474998474121094", + "longitude_deg": "-79.39360046386719", + "elevation_ft": "138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Dillon", + "scheduled_service": "no", + "gps_code": "SC89", + "local_code": "SC89" + }, + { + "id": "24488", + "ident": "SC90", + "type": "small_airport", + "name": "Do-Little Field", + "latitude_deg": "33.67610168457031", + "longitude_deg": "-80.94830322265625", + "elevation_ft": "369", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "St. Matthews", + "scheduled_service": "no", + "gps_code": "SC90", + "local_code": "SC90" + }, + { + "id": "24489", + "ident": "SC91", + "type": "small_airport", + "name": "Bell's Branch Airport", + "latitude_deg": "33.30649948120117", + "longitude_deg": "-80.84819793701172", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Branchville", + "scheduled_service": "no", + "gps_code": "SC91", + "local_code": "SC91" + }, + { + "id": "24490", + "ident": "SC92", + "type": "small_airport", + "name": "Rambos Field", + "latitude_deg": "34.103454", + "longitude_deg": "-82.282104", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Abbeville", + "scheduled_service": "no", + "gps_code": "SC92", + "local_code": "SC92" + }, + { + "id": "24491", + "ident": "SC93", + "type": "small_airport", + "name": "Paul's Plantation Airport", + "latitude_deg": "34.36600112915039", + "longitude_deg": "-79.82420349121094", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Darlington", + "scheduled_service": "no", + "gps_code": "SC93", + "local_code": "SC93" + }, + { + "id": "24492", + "ident": "SC94", + "type": "small_airport", + "name": "Weaver Field", + "latitude_deg": "33.889400482177734", + "longitude_deg": "-79.50640106201172", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Johnsonville", + "scheduled_service": "no", + "gps_code": "SC94", + "local_code": "SC94" + }, + { + "id": "24493", + "ident": "SC95", + "type": "small_airport", + "name": "Perry International Airport", + "latitude_deg": "33.62929916381836", + "longitude_deg": "-81.32969665527344", + "elevation_ft": "438", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Perry", + "scheduled_service": "no", + "gps_code": "SC95", + "local_code": "SC95" + }, + { + "id": "24494", + "ident": "SC96", + "type": "small_airport", + "name": "Tokeena Air Park", + "latitude_deg": "34.560298919677734", + "longitude_deg": "-82.935302734375", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Seneca", + "scheduled_service": "no", + "gps_code": "SC96", + "local_code": "SC96" + }, + { + "id": "24495", + "ident": "SC97", + "type": "small_airport", + "name": "Riverbend Airpark", + "latitude_deg": "34.72669982910156", + "longitude_deg": "-82.3396987915039", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Mauldin", + "scheduled_service": "no", + "gps_code": "SC97", + "local_code": "SC97" + }, + { + "id": "24496", + "ident": "SC98", + "type": "small_airport", + "name": "Mount Holly Airport", + "latitude_deg": "33.054298400878906", + "longitude_deg": "-80.0833969116211", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Goose Creek", + "scheduled_service": "no", + "gps_code": "SC98", + "local_code": "SC98" + }, + { + "id": "24497", + "ident": "SC99", + "type": "small_airport", + "name": "Whiteplains Airport", + "latitude_deg": "33.963902", + "longitude_deg": "-81.3592", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Lexington", + "scheduled_service": "no", + "local_code": "9SC", + "keywords": "SC99" + }, + { + "id": "39087", + "ident": "SCAA", + "type": "small_airport", + "name": "Añorada Airport", + "latitude_deg": "-41.042778015100005", + "longitude_deg": "-73.04750061040001", + "elevation_ft": "459", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Frutillar", + "scheduled_service": "no", + "gps_code": "SCAA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Andacollo_Airport" + }, + { + "id": "39088", + "ident": "SCAB", + "type": "small_airport", + "name": "El Alba Airport", + "latitude_deg": "-33.658694", + "longitude_deg": "-71.289877", + "elevation_ft": "450", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "La Lumbrera", + "scheduled_service": "no", + "gps_code": "SCAB", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Alba/La_Lumbrera_Airport" + }, + { + "id": "30304", + "ident": "SCAC", + "type": "small_airport", + "name": "Pupelde Airport", + "latitude_deg": "-41.904251", + "longitude_deg": "-73.796571", + "elevation_ft": "315", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Ancud", + "scheduled_service": "no", + "gps_code": "SCAC", + "iata_code": "ZUD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pupelde_Airfield" + }, + { + "id": "39089", + "ident": "SCAD", + "type": "small_airport", + "name": "Santa Adriana Airport", + "latitude_deg": "-30.628610610961914", + "longitude_deg": "-71.27305603027344", + "elevation_ft": "558", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Ovalle", + "scheduled_service": "no", + "gps_code": "SCAD" + }, + { + "id": "39090", + "ident": "SCAE", + "type": "small_airport", + "name": "El Buitre Airport", + "latitude_deg": "-18.508938", + "longitude_deg": "-70.290707", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AP", + "municipality": "Arica", + "scheduled_service": "no", + "gps_code": "SCAE" + }, + { + "id": "32254", + "ident": "SCAF", + "type": "closed", + "name": "San Alfonso Airport", + "latitude_deg": "-34.060197", + "longitude_deg": "-71.253719", + "elevation_ft": "407", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Alhue", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Alfonso_Airport", + "keywords": "SCAF" + }, + { + "id": "32255", + "ident": "SCAG", + "type": "small_airport", + "name": "Agua Santa Airport", + "latitude_deg": "-34.5514755847", + "longitude_deg": "-71.3358914852", + "elevation_ft": "476", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Palmilla", + "scheduled_service": "no", + "gps_code": "SCAG" + }, + { + "id": "32256", + "ident": "SCAH", + "type": "small_airport", + "name": "Tolquien Airport", + "latitude_deg": "-42.4494018555", + "longitude_deg": "-73.5246963501", + "elevation_ft": "551", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Achao", + "scheduled_service": "no", + "gps_code": "SCAH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Achao_Airport" + }, + { + "id": "348511", + "ident": "SCAI", + "type": "small_airport", + "name": "Curacautín Airport", + "latitude_deg": "-38.431514", + "longitude_deg": "-71.923027", + "elevation_ft": "1667", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Curacautín", + "scheduled_service": "no", + "gps_code": "SCAI", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aeródromo_de_Curacautín" + }, + { + "id": "39091", + "ident": "SCAJ", + "type": "small_airport", + "name": "Las Alpacas Airport", + "latitude_deg": "-36.14527893066406", + "longitude_deg": "-71.76305389404297", + "elevation_ft": "550", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Retiro", + "scheduled_service": "no", + "gps_code": "SCAJ" + }, + { + "id": "39092", + "ident": "SCAK", + "type": "small_airport", + "name": "Atacalco Airport", + "latitude_deg": "-36.9194450378418", + "longitude_deg": "-71.57749938964844", + "elevation_ft": "2362", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Recinto", + "scheduled_service": "no", + "gps_code": "SCAK" + }, + { + "id": "45054", + "ident": "SCAL", + "type": "small_airport", + "name": "Valchac Airport", + "latitude_deg": "-47.116279", + "longitude_deg": "-72.481975", + "elevation_ft": "1116", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Cochrane", + "scheduled_service": "no", + "gps_code": "SCAL" + }, + { + "id": "39093", + "ident": "SCAM", + "type": "small_airport", + "name": "Alempue Airport", + "latitude_deg": "-34.8650016784668", + "longitude_deg": "-71.10194396972656", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Teno", + "scheduled_service": "no", + "gps_code": "SCAM" + }, + { + "id": "30082", + "ident": "SCAN", + "type": "small_airport", + "name": "San Rafael Airport", + "latitude_deg": "-32.81420135498047", + "longitude_deg": "-70.64669799804688", + "elevation_ft": "2461", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Los Andes", + "scheduled_service": "no", + "gps_code": "SCAN", + "iata_code": "LOB" + }, + { + "id": "39094", + "ident": "SCAO", + "type": "small_airport", + "name": "Palo Alto Airport", + "latitude_deg": "-34.733055114746094", + "longitude_deg": "-71.74083709716797", + "elevation_ft": "279", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Lolol", + "scheduled_service": "no", + "gps_code": "SCAO" + }, + { + "id": "29657", + "ident": "SCAP", + "type": "small_airport", + "name": "Alto Palena Airport", + "latitude_deg": "-43.6119003296", + "longitude_deg": "-71.806098938", + "elevation_ft": "794", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Alto Palena", + "scheduled_service": "no", + "gps_code": "SCAP", + "iata_code": "WAP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alto_Palena_Airfield" + }, + { + "id": "39095", + "ident": "SCAQ", + "type": "small_airport", + "name": "Arquilhué Airport", + "latitude_deg": "-40.198299407958984", + "longitude_deg": "-72.0291976928711", + "elevation_ft": "590", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "Lago Ranco", + "scheduled_service": "no", + "gps_code": "SCAQ" + }, + { + "id": "6001", + "ident": "SCAR", + "type": "medium_airport", + "name": "Chacalluta Airport", + "latitude_deg": "-18.348499", + "longitude_deg": "-70.338699", + "elevation_ft": "167", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AP", + "municipality": "Arica", + "scheduled_service": "yes", + "gps_code": "SCAR", + "iata_code": "ARI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chacalluta_International_Airport" + }, + { + "id": "30301", + "ident": "SCAS", + "type": "small_airport", + "name": "Cabo 1° Juan Román Airport", + "latitude_deg": "-45.399200439453125", + "longitude_deg": "-72.67030334472656", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Puerto Aysen", + "scheduled_service": "no", + "gps_code": "SCAS", + "iata_code": "WPA" + }, + { + "id": "6002", + "ident": "SCAT", + "type": "medium_airport", + "name": "Desierto de Atacama Airport", + "latitude_deg": "-27.2611999512", + "longitude_deg": "-70.7791976929", + "elevation_ft": "670", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AT", + "municipality": "Copiapo", + "scheduled_service": "yes", + "gps_code": "SCAT", + "iata_code": "CPO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Desierto_de_Atacama_Airport" + }, + { + "id": "32257", + "ident": "SCAU", + "type": "small_airport", + "name": "Juan Enrique Airport", + "latitude_deg": "-33.89360046386719", + "longitude_deg": "-70.8855972290039", + "elevation_ft": "1263", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Paine", + "scheduled_service": "no", + "gps_code": "SCAU" + }, + { + "id": "39096", + "ident": "SCAV", + "type": "closed", + "name": "La Vertiente Airport", + "latitude_deg": "-36.613271", + "longitude_deg": "-72.041323", + "elevation_ft": "459", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Chillan", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Vertiente_Airport_(Chile)", + "keywords": "SCAV" + }, + { + "id": "39097", + "ident": "SCAY", + "type": "small_airport", + "name": "Ayacara Airport", + "latitude_deg": "-42.310832", + "longitude_deg": "-72.790275", + "elevation_ft": "80", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Ayacara", + "scheduled_service": "no", + "gps_code": "SCAY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ayacara_Airport" + }, + { + "id": "39098", + "ident": "SCAZ", + "type": "small_airport", + "name": "Azopardo Airport", + "latitude_deg": "-54.481014", + "longitude_deg": "-68.940689", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Timaukel", + "scheduled_service": "no", + "gps_code": "SCAZ" + }, + { + "id": "6003", + "ident": "SCBA", + "type": "medium_airport", + "name": "Balmaceda Airport", + "latitude_deg": "-45.916099548339844", + "longitude_deg": "-71.68949890136719", + "elevation_ft": "1722", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Balmaceda", + "scheduled_service": "yes", + "gps_code": "SCBA", + "iata_code": "BBA" + }, + { + "id": "45055", + "ident": "SCBB", + "type": "small_airport", + "name": "Del Bío Bío Airport", + "latitude_deg": "-37.587222", + "longitude_deg": "-72.503611", + "elevation_ft": "249", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Negrete", + "scheduled_service": "no", + "gps_code": "SCBB" + }, + { + "id": "39099", + "ident": "SCBC", + "type": "small_airport", + "name": "Cacique Blanco Airport", + "latitude_deg": "-44.231109619140625", + "longitude_deg": "-71.86416625976562", + "elevation_ft": "750", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Lago Verde", + "scheduled_service": "no", + "gps_code": "SCBC" + }, + { + "id": "39100", + "ident": "SCBD", + "type": "small_airport", + "name": "El Boldal Airport", + "latitude_deg": "-34.684444427490234", + "longitude_deg": "-71.20610809326172", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "gps_code": "SCBD" + }, + { + "id": "6004", + "ident": "SCBE", + "type": "medium_airport", + "name": "Barriles Airport", + "latitude_deg": "-22.14109992980957", + "longitude_deg": "-70.06289672851562", + "elevation_ft": "3475", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AN", + "municipality": "Tocopilla", + "scheduled_service": "no", + "gps_code": "SCBE", + "iata_code": "TOQ" + }, + { + "id": "39101", + "ident": "SCBI", + "type": "small_airport", + "name": "Pampa Guanaco Airport", + "latitude_deg": "-54.049977", + "longitude_deg": "-68.809193", + "elevation_ft": "591", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Bahia Inutil", + "scheduled_service": "no", + "gps_code": "SCBI", + "iata_code": "DPB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pampa_Guanaco_Airport" + }, + { + "id": "348524", + "ident": "SCBL", + "type": "small_airport", + "name": "El Porvenir Airport", + "latitude_deg": "-33.273056", + "longitude_deg": "-71.525278", + "elevation_ft": "988", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Casablanca", + "scheduled_service": "no", + "gps_code": "SCBL" + }, + { + "id": "39102", + "ident": "SCBN", + "type": "small_airport", + "name": "Cotreumo Airport", + "latitude_deg": "-40.40060043334961", + "longitude_deg": "-72.6613998413086", + "elevation_ft": "607", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "Rio Bueno", + "scheduled_service": "no", + "gps_code": "SCBN" + }, + { + "id": "308226", + "ident": "SCBO", + "type": "small_airport", + "name": "General Bernardo O'Higgins Base Skyway", + "latitude_deg": "-63.344", + "longitude_deg": "-57.842", + "elevation_ft": "900", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "General Bernardo O'Higgins Base", + "scheduled_service": "no", + "gps_code": "SCBO" + }, + { + "id": "6005", + "ident": "SCBQ", + "type": "small_airport", + "name": "El Bosque Airport", + "latitude_deg": "-33.561798095703125", + "longitude_deg": "-70.68840026855469", + "elevation_ft": "1844", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SCBQ" + }, + { + "id": "39103", + "ident": "SCBR", + "type": "small_airport", + "name": "Lago Brown Airport", + "latitude_deg": "-47.391944885253906", + "longitude_deg": "-72.31749725341797", + "elevation_ft": "540", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Lago Brown", + "scheduled_service": "no", + "gps_code": "SCBR" + }, + { + "id": "39104", + "ident": "SCBS", + "type": "small_airport", + "name": "Posesión Airport", + "latitude_deg": "-52.292588", + "longitude_deg": "-68.933029", + "elevation_ft": "100", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Bahia Posesion", + "scheduled_service": "no", + "gps_code": "SCBS" + }, + { + "id": "39105", + "ident": "SCBT", + "type": "small_airport", + "name": "Rincón Bonito Airport", + "latitude_deg": "-42.02888870239258", + "longitude_deg": "-72.09610748291016", + "elevation_ft": "705", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Cochamo", + "scheduled_service": "no", + "gps_code": "SCBT" + }, + { + "id": "308227", + "ident": "SCBU", + "type": "small_airport", + "name": "El Baúl Airstrip", + "latitude_deg": "-35.341435", + "longitude_deg": "-70.9108", + "elevation_ft": "3070", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Molina", + "scheduled_service": "no", + "gps_code": "SCBU" + }, + { + "id": "39106", + "ident": "SCBV", + "type": "small_airport", + "name": "Bellavista Airport", + "latitude_deg": "-35.18972396850586", + "longitude_deg": "-71.29666900634766", + "elevation_ft": "885", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Rio Claro", + "scheduled_service": "no", + "gps_code": "SCBV" + }, + { + "id": "39107", + "ident": "SCCA", + "type": "small_airport", + "name": "El Boldo Airport", + "latitude_deg": "-35.97138977050781", + "longitude_deg": "-72.2249984741211", + "elevation_ft": "525", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Cauquenes", + "scheduled_service": "no", + "gps_code": "SCCA" + }, + { + "id": "39108", + "ident": "SCCB", + "type": "small_airport", + "name": "Pedro Villarroel C. Airport", + "latitude_deg": "-31.22194480895996", + "longitude_deg": "-71.07027435302734", + "elevation_ft": "3002", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Combarbala", + "scheduled_service": "no", + "gps_code": "SCCB" + }, + { + "id": "6006", + "ident": "SCCC", + "type": "medium_airport", + "name": "Chile Chico Airport", + "latitude_deg": "-46.5831", + "longitude_deg": "-71.686323", + "elevation_ft": "1070", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Chile Chico", + "scheduled_service": "no", + "gps_code": "SCCC", + "iata_code": "CCH" + }, + { + "id": "45056", + "ident": "SCCE", + "type": "small_airport", + "name": "El Arenal Airport", + "latitude_deg": "-35.896389", + "longitude_deg": "-72.055833", + "elevation_ft": "397", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Cauquenes", + "scheduled_service": "no", + "gps_code": "SCCE" + }, + { + "id": "6007", + "ident": "SCCF", + "type": "medium_airport", + "name": "El Loa Airport", + "latitude_deg": "-22.498199462890625", + "longitude_deg": "-68.90360260009766", + "elevation_ft": "7543", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AN", + "municipality": "Calama", + "scheduled_service": "yes", + "gps_code": "SCCF", + "iata_code": "CJC" + }, + { + "id": "39109", + "ident": "SCCG", + "type": "small_airport", + "name": "La Pelícana Airport", + "latitude_deg": "-31.063888549804688", + "longitude_deg": "-70.9544448852539", + "elevation_ft": "2790", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Combarbala", + "scheduled_service": "no", + "gps_code": "SCCG" + }, + { + "id": "6008", + "ident": "SCCH", + "type": "medium_airport", + "name": "Gral. Bernardo O´Higgins Airport", + "latitude_deg": "-36.58250045776367", + "longitude_deg": "-72.03140258789062", + "elevation_ft": "495", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Chillan", + "scheduled_service": "no", + "gps_code": "SCCH", + "iata_code": "YAI", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Bernardo_O'Higgins_Airport" + }, + { + "id": "6009", + "ident": "SCCI", + "type": "medium_airport", + "name": "President Carlos Ibañez del Campo International Airport", + "latitude_deg": "-53.002602", + "longitude_deg": "-70.854599", + "elevation_ft": "139", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Punta Arenas", + "scheduled_service": "yes", + "gps_code": "SCCI", + "iata_code": "PUQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carlos_Ibanez_Del_Campo_International_Airport" + }, + { + "id": "39110", + "ident": "SCCK", + "type": "small_airport", + "name": "Contao Airport", + "latitude_deg": "-41.8003044128418", + "longitude_deg": "-72.72223663330078", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Contao", + "scheduled_service": "no", + "gps_code": "SCCK" + }, + { + "id": "6010", + "ident": "SCCL", + "type": "small_airport", + "name": "Caldera Airport", + "latitude_deg": "-27.078100204467773", + "longitude_deg": "-70.79530334472656", + "elevation_ft": "180", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AT", + "municipality": "Caldera", + "scheduled_service": "no", + "gps_code": "SCCL" + }, + { + "id": "39111", + "ident": "SCCM", + "type": "small_airport", + "name": "Molco Airport", + "latitude_deg": "-39.82500076293945", + "longitude_deg": "-72.0824966430664", + "elevation_ft": "479", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "Choshuenco", + "scheduled_service": "no", + "gps_code": "SCCM" + }, + { + "id": "39112", + "ident": "SCCN", + "type": "small_airport", + "name": "Alto Cauquenes Airport", + "latitude_deg": "-35.880279541015625", + "longitude_deg": "-72.32722473144531", + "elevation_ft": "568", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Cauquenes", + "scheduled_service": "no", + "gps_code": "SCCN" + }, + { + "id": "39113", + "ident": "SCCP", + "type": "small_airport", + "name": "Callipulli Airport", + "latitude_deg": "-40.620277", + "longitude_deg": "-72.84639", + "elevation_ft": "377", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Osorno", + "scheduled_service": "no", + "gps_code": "SCCP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Callipulli_Airport" + }, + { + "id": "45057", + "ident": "SCCQ", + "type": "small_airport", + "name": "Tambillos Airport", + "latitude_deg": "-30.198889", + "longitude_deg": "-71.246944", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Coquimbo", + "scheduled_service": "no", + "gps_code": "SCCQ", + "iata_code": "COW" + }, + { + "id": "39114", + "ident": "SCCR", + "type": "small_airport", + "name": "Enrique Mayer Soto Airport", + "latitude_deg": "-47.787079", + "longitude_deg": "-73.533028", + "elevation_ft": "4", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Caleta Tortel", + "scheduled_service": "no", + "gps_code": "SCCR" + }, + { + "id": "39115", + "ident": "SCCS", + "type": "small_airport", + "name": "Santa Rita Airport", + "latitude_deg": "-33.27750015258789", + "longitude_deg": "-71.45639038085938", + "elevation_ft": "738", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Casablanca", + "scheduled_service": "no", + "gps_code": "SCCS" + }, + { + "id": "29800", + "ident": "SCCT", + "type": "small_airport", + "name": "Quivolgo Airport", + "latitude_deg": "-35.30860137939453", + "longitude_deg": "-72.3927993774414", + "elevation_ft": "36", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Constitucion", + "scheduled_service": "no", + "gps_code": "SCCT" + }, + { + "id": "39116", + "ident": "SCCU", + "type": "small_airport", + "name": "Lolco Airport", + "latitude_deg": "-38.15805435180664", + "longitude_deg": "-71.42388916015625", + "elevation_ft": "2132", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Lonquimay", + "scheduled_service": "no", + "gps_code": "SCCU" + }, + { + "id": "29812", + "ident": "SCCV", + "type": "small_airport", + "name": "Curacaví Airport", + "latitude_deg": "-33.41279983520508", + "longitude_deg": "-71.16560363769531", + "elevation_ft": "686", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Curacaví", + "scheduled_service": "no", + "gps_code": "SCCV" + }, + { + "id": "6011", + "ident": "SCCY", + "type": "medium_airport", + "name": "Teniente Vidal Airport", + "latitude_deg": "-45.5942", + "longitude_deg": "-72.106102", + "elevation_ft": "1020", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Coyhaique", + "scheduled_service": "no", + "gps_code": "SCCY", + "iata_code": "GXQ" + }, + { + "id": "6012", + "ident": "SCDA", + "type": "medium_airport", + "name": "Diego Aracena Airport", + "latitude_deg": "-20.535200119018555", + "longitude_deg": "-70.1812973022461", + "elevation_ft": "155", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-TA", + "municipality": "Iquique", + "scheduled_service": "yes", + "gps_code": "SCDA", + "iata_code": "IQQ" + }, + { + "id": "39117", + "ident": "SCDD", + "type": "small_airport", + "name": "Don Dobri Airport", + "latitude_deg": "-41.23472213745117", + "longitude_deg": "-72.51499938964844", + "elevation_ft": "226", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Puerto Varas", + "scheduled_service": "no", + "gps_code": "SCDD" + }, + { + "id": "348530", + "ident": "SCDG", + "type": "small_airport", + "name": "Don Aliro Garcia Airport", + "latitude_deg": "-34.193889", + "longitude_deg": "-71.568056", + "elevation_ft": "697", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "La Estrella", + "scheduled_service": "no", + "gps_code": "SCDG" + }, + { + "id": "39118", + "ident": "SCDH", + "type": "small_airport", + "name": "Vodudahue Airport", + "latitude_deg": "-42.488887786865234", + "longitude_deg": "-72.35055541992188", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Chaiten", + "scheduled_service": "no", + "gps_code": "SCDH" + }, + { + "id": "39119", + "ident": "SCDI", + "type": "small_airport", + "name": "Pichidangui Airport", + "latitude_deg": "-32.1430549621582", + "longitude_deg": "-71.50527954101562", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Pichidangui", + "scheduled_service": "no", + "gps_code": "SCDI" + }, + { + "id": "348539", + "ident": "SCDK", + "type": "small_airport", + "name": "El Patagual Airport", + "latitude_deg": "-37.025519", + "longitude_deg": "-72.982733", + "elevation_ft": "93", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Concepcion", + "scheduled_service": "no", + "gps_code": "SCDK" + }, + { + "id": "39120", + "ident": "SCDL", + "type": "small_airport", + "name": "El Algarrobo Airport", + "latitude_deg": "-32.47194290161133", + "longitude_deg": "-70.99305725097656", + "elevation_ft": "951", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Cabildo", + "scheduled_service": "no", + "gps_code": "SCDL" + }, + { + "id": "39121", + "ident": "SCDM", + "type": "small_airport", + "name": "San Damian Airport", + "latitude_deg": "-34.878055572509766", + "longitude_deg": "-72.14555358886719", + "elevation_ft": "220", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Duao", + "scheduled_service": "no", + "gps_code": "SCDM" + }, + { + "id": "39122", + "ident": "SCDQ", + "type": "small_airport", + "name": "San Lorenzo Airport", + "latitude_deg": "-37.52333450317383", + "longitude_deg": "-71.72611236572266", + "elevation_ft": "1902", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Duqueco", + "scheduled_service": "no", + "gps_code": "SCDQ" + }, + { + "id": "39123", + "ident": "SCDS", + "type": "small_airport", + "name": "San Andrés Airport", + "latitude_deg": "-36.00555419921875", + "longitude_deg": "-71.76667022705078", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Retiro", + "scheduled_service": "no", + "gps_code": "SCDS" + }, + { + "id": "342657", + "ident": "SCDV", + "type": "small_airport", + "name": "Lago Viedma Airstrip", + "latitude_deg": "-49.410757", + "longitude_deg": "-72.780266", + "elevation_ft": "903", + "continent": "SA", + "iso_country": "AR", + "iso_region": "AR-Z", + "municipality": "El Chaltén", + "scheduled_service": "no" + }, + { + "id": "6013", + "ident": "SCDW", + "type": "small_airport", + "name": "Almirante Schroeders Airport", + "latitude_deg": "-53.61069869995117", + "longitude_deg": "-70.47049713134766", + "elevation_ft": "160", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Isla Dawson", + "scheduled_service": "no", + "gps_code": "SCDW" + }, + { + "id": "39124", + "ident": "SCEA", + "type": "small_airport", + "name": "El Amarillo Airport", + "latitude_deg": "-43.00611114501953", + "longitude_deg": "-72.47833251953125", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Chaiten", + "scheduled_service": "no", + "gps_code": "SCEA" + }, + { + "id": "39125", + "ident": "SCEB", + "type": "small_airport", + "name": "Entrada Baker Airport", + "latitude_deg": "-47.184165954589844", + "longitude_deg": "-71.97611236572266", + "elevation_ft": "1640", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Entrada Baker", + "scheduled_service": "no", + "gps_code": "SCEB" + }, + { + "id": "6014", + "ident": "SCEC", + "type": "small_airport", + "name": "Pelícano Airport", + "latitude_deg": "-29.144899368286133", + "longitude_deg": "-70.88780212402344", + "elevation_ft": "3678", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Estacion Chañaral", + "scheduled_service": "no", + "gps_code": "SCEC" + }, + { + "id": "39126", + "ident": "SCED", + "type": "small_airport", + "name": "Los Cedros Airport", + "latitude_deg": "-35.154998779296875", + "longitude_deg": "-71.58528137207031", + "elevation_ft": "305", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Sagrada Familia", + "scheduled_service": "no", + "gps_code": "SCED" + }, + { + "id": "39127", + "ident": "SCEG", + "type": "small_airport", + "name": "El Corte Airport", + "latitude_deg": "-33.709999084472656", + "longitude_deg": "-70.91305541992188", + "elevation_ft": "1024", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Talagante", + "scheduled_service": "no", + "gps_code": "SCEG" + }, + { + "id": "39128", + "ident": "SCEH", + "type": "small_airport", + "name": "El Huachi Airport", + "latitude_deg": "-37.647221", + "longitude_deg": "-71.753891", + "elevation_ft": "1558", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Santa Barbara", + "scheduled_service": "no", + "gps_code": "SCEH", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Huachi_Airport" + }, + { + "id": "348542", + "ident": "SCEI", + "type": "small_airport", + "name": "Potrerillos Airport", + "latitude_deg": "-26.380144", + "longitude_deg": "-69.475458", + "elevation_ft": "8606", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AT", + "municipality": "Diego de Almagro", + "scheduled_service": "no", + "gps_code": "SCEI" + }, + { + "id": "39129", + "ident": "SCEK", + "type": "small_airport", + "name": "Chépica Airport", + "latitude_deg": "-34.739723205566406", + "longitude_deg": "-71.32472229003906", + "elevation_ft": "610", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Chepica", + "scheduled_service": "no", + "gps_code": "SCEK" + }, + { + "id": "6015", + "ident": "SCEL", + "type": "large_airport", + "name": "Comodoro Arturo Merino Benítez International Airport", + "latitude_deg": "-33.393001556396484", + "longitude_deg": "-70.78579711914062", + "elevation_ft": "1555", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "yes", + "gps_code": "SCEL", + "iata_code": "SCL", + "home_link": "http://www.aeropuertosantiago.cl/ingles/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Comodoro_Arturo_Merino_Ben%C3%ADtez_International_Airport" + }, + { + "id": "39130", + "ident": "SCEO", + "type": "small_airport", + "name": "El Salto Airport", + "latitude_deg": "-36.130279541015625", + "longitude_deg": "-71.85749816894531", + "elevation_ft": "564", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Parral", + "scheduled_service": "no", + "gps_code": "SCEO" + }, + { + "id": "30265", + "ident": "SCEP", + "type": "small_airport", + "name": "El Principal Airport", + "latitude_deg": "-33.724998474121094", + "longitude_deg": "-70.51029968261719", + "elevation_ft": "2592", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Pirque", + "scheduled_service": "no", + "gps_code": "SCEP" + }, + { + "id": "6016", + "ident": "SCER", + "type": "small_airport", + "name": "Quintero Airport", + "latitude_deg": "-32.790199279785156", + "longitude_deg": "-71.52169799804688", + "elevation_ft": "12", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Quintero", + "scheduled_service": "no", + "gps_code": "SCER" + }, + { + "id": "6017", + "ident": "SCES", + "type": "medium_airport", + "name": "Ricardo García Posada Airport", + "latitude_deg": "-26.311100006103516", + "longitude_deg": "-69.76519775390625", + "elevation_ft": "5240", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AT", + "municipality": "El Salvador", + "scheduled_service": "yes", + "gps_code": "SCES", + "iata_code": "ESR" + }, + { + "id": "39131", + "ident": "SCET", + "type": "small_airport", + "name": "El Tambo Airport", + "latitude_deg": "-34.475555419921875", + "longitude_deg": "-71.01416778564453", + "elevation_ft": "748", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "San Vicente De Tagua Tagua", + "scheduled_service": "no", + "gps_code": "SCET" + }, + { + "id": "39132", + "ident": "SCEV", + "type": "small_airport", + "name": "El Avellano Airport", + "latitude_deg": "-41.117000579833984", + "longitude_deg": "-73.05000305175781", + "elevation_ft": "489", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Frutillar", + "scheduled_service": "no", + "gps_code": "SCEV", + "iata_code": "FRT" + }, + { + "id": "45058", + "ident": "SCEX", + "type": "small_airport", + "name": "Río Exploradores Airport", + "latitude_deg": "-46.353611", + "longitude_deg": "-73.327778", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Aysén", + "scheduled_service": "no", + "gps_code": "SCEX" + }, + { + "id": "39133", + "ident": "SCEY", + "type": "small_airport", + "name": "Entrada Mayer Airport", + "latitude_deg": "-48.201452", + "longitude_deg": "-72.32759", + "elevation_ft": "1550", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Entrada Mayer", + "scheduled_service": "no", + "gps_code": "SCEY" + }, + { + "id": "6018", + "ident": "SCFA", + "type": "medium_airport", + "name": "Andrés Sabella Gálvez International Airport", + "latitude_deg": "-23.444501", + "longitude_deg": "-70.445099", + "elevation_ft": "455", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AN", + "municipality": "Antofagasta", + "scheduled_service": "yes", + "gps_code": "SCFA", + "iata_code": "ANF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Andr%C3%A9s_Sabella_G%C3%A1lvez_International_Airport", + "keywords": "Cerro Moreno Airport" + }, + { + "id": "39134", + "ident": "SCFC", + "type": "small_airport", + "name": "Fachinal Airport", + "latitude_deg": "-46.548343", + "longitude_deg": "-72.218714", + "elevation_ft": "693", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Fachinal", + "scheduled_service": "no", + "gps_code": "SCFC" + }, + { + "id": "39135", + "ident": "SCFF", + "type": "small_airport", + "name": "Freirina Airport", + "latitude_deg": "-28.52638816833496", + "longitude_deg": "-71.06194305419922", + "elevation_ft": "738", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AT", + "municipality": "Freirina", + "scheduled_service": "no", + "gps_code": "SCFF" + }, + { + "id": "39136", + "ident": "SCFI", + "type": "small_airport", + "name": "Fundo Tehuén Airport", + "latitude_deg": "-41.095001220703125", + "longitude_deg": "-73.12666320800781", + "elevation_ft": "377", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Frutillar", + "scheduled_service": "no", + "gps_code": "SCFI" + }, + { + "id": "39137", + "ident": "SCFJ", + "type": "small_airport", + "name": "Fray Jorge Airport", + "latitude_deg": "-30.68000030517578", + "longitude_deg": "-71.57861328125", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Ovalle", + "scheduled_service": "no", + "gps_code": "SCFJ" + }, + { + "id": "39138", + "ident": "SCFK", + "type": "small_airport", + "name": "Fundo El Carmen Airport", + "latitude_deg": "-36.641387939453125", + "longitude_deg": "-72.01667022705078", + "elevation_ft": "557", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Chillan", + "scheduled_service": "no", + "gps_code": "SCFK" + }, + { + "id": "29883", + "ident": "SCFL", + "type": "small_airport", + "name": "Fundo Loma Larga Airport", + "latitude_deg": "-33.279998779296875", + "longitude_deg": "-71.37920379638672", + "elevation_ft": "869", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Casablanca", + "scheduled_service": "no", + "gps_code": "SCFL" + }, + { + "id": "6019", + "ident": "SCFM", + "type": "medium_airport", + "name": "Captain Fuentes Martinez Airport", + "latitude_deg": "-53.2537", + "longitude_deg": "-70.319199", + "elevation_ft": "104", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Porvenir", + "scheduled_service": "no", + "gps_code": "SCFM", + "iata_code": "WPR" + }, + { + "id": "32258", + "ident": "SCFN", + "type": "small_airport", + "name": "Russfin Airport", + "latitude_deg": "-53.799", + "longitude_deg": "-69.12", + "elevation_ft": "684", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Timaukel", + "scheduled_service": "no", + "gps_code": "SCFN" + }, + { + "id": "39139", + "ident": "SCFO", + "type": "small_airport", + "name": "La Reforma Airport", + "latitude_deg": "-35.45805740356445", + "longitude_deg": "-71.28111267089844", + "elevation_ft": "853", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Pelarco", + "scheduled_service": "no", + "gps_code": "SCFO" + }, + { + "id": "39140", + "ident": "SCFR", + "type": "small_airport", + "name": "Frutillar Airport", + "latitude_deg": "-41.13083267211914", + "longitude_deg": "-73.0647201538086", + "elevation_ft": "469", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Frutillar", + "scheduled_service": "no", + "gps_code": "SCFR" + }, + { + "id": "39141", + "ident": "SCFS", + "type": "small_airport", + "name": "Los Calafates Airport", + "latitude_deg": "-42.678890228271484", + "longitude_deg": "-73.89666748046875", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Chonchi", + "scheduled_service": "no", + "gps_code": "SCFS" + }, + { + "id": "6020", + "ident": "SCFT", + "type": "small_airport", + "name": "Futaleufú Airport", + "latitude_deg": "-43.18920135498047", + "longitude_deg": "-71.8510971069336", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Futaleufu", + "scheduled_service": "no", + "gps_code": "SCFT", + "iata_code": "FFU" + }, + { + "id": "39142", + "ident": "SCFU", + "type": "small_airport", + "name": "Loncopan Airport", + "latitude_deg": "-40.06639862060547", + "longitude_deg": "-72.53780364990234", + "elevation_ft": "886", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "Futrono", + "scheduled_service": "no", + "gps_code": "SCFU" + }, + { + "id": "6021", + "ident": "SCFX", + "type": "small_airport", + "name": "Isla San Felix Airport", + "latitude_deg": "-26.293899536132812", + "longitude_deg": "-80.09619903564453", + "elevation_ft": "165", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AT", + "municipality": "Isla San Felix", + "scheduled_service": "no", + "gps_code": "SCFX" + }, + { + "id": "39143", + "ident": "SCGA", + "type": "small_airport", + "name": "Punta Galera Airport", + "latitude_deg": "-40.00189971923828", + "longitude_deg": "-73.69640350341797", + "elevation_ft": "118", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "La Union", + "scheduled_service": "no", + "gps_code": "SCGA" + }, + { + "id": "39144", + "ident": "SCGB", + "type": "small_airport", + "name": "Guadaba Airport", + "latitude_deg": "-37.977779388427734", + "longitude_deg": "-72.929443359375", + "elevation_ft": "272", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Los Sauces", + "scheduled_service": "no", + "gps_code": "SCGB" + }, + { + "id": "45059", + "ident": "SCGC", + "type": "small_airport", + "name": "Union Glacier Blue-Ice Runway", + "latitude_deg": "-79.777778", + "longitude_deg": "-83.320833", + "elevation_ft": "2461", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Union Glacier Camp", + "scheduled_service": "no", + "gps_code": "SCGC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Union_Glacier_Blue-Ice_Runway" + }, + { + "id": "6022", + "ident": "SCGE", + "type": "small_airport", + "name": "María Dolores Airport", + "latitude_deg": "-37.40169906616211", + "longitude_deg": "-72.42539978027344", + "elevation_ft": "374", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "SCGE", + "iata_code": "LSQ" + }, + { + "id": "45060", + "ident": "SCGF", + "type": "small_airport", + "name": "Golfo Azul Airport", + "latitude_deg": "-40.140833", + "longitude_deg": "-72.283611", + "elevation_ft": "486", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "Futrono", + "scheduled_service": "no", + "gps_code": "SCGF" + }, + { + "id": "39145", + "ident": "SCGH", + "type": "small_airport", + "name": "Cholguahue Airport", + "latitude_deg": "-37.469722747802734", + "longitude_deg": "-72.13861083984375", + "elevation_ft": "732", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "SCGH" + }, + { + "id": "39146", + "ident": "SCGI", + "type": "small_airport", + "name": "San Guillermo Airport", + "latitude_deg": "-36.0011100769043", + "longitude_deg": "-71.8294448852539", + "elevation_ft": "495", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Retiro", + "scheduled_service": "no", + "gps_code": "SCGI" + }, + { + "id": "39147", + "ident": "SCGL", + "type": "small_airport", + "name": "Las Aguilas Airport", + "latitude_deg": "-34.169166564941406", + "longitude_deg": "-71.53111267089844", + "elevation_ft": "450", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Rapel", + "scheduled_service": "no", + "gps_code": "SCGL" + }, + { + "id": "39148", + "ident": "SCGM", + "type": "small_airport", + "name": "Los Gomeros Airport", + "latitude_deg": "-34.36111068725586", + "longitude_deg": "-70.88194274902344", + "elevation_ft": "1034", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Rengo", + "scheduled_service": "no", + "gps_code": "SCGM" + }, + { + "id": "39149", + "ident": "SCGN", + "type": "small_airport", + "name": "Caleta Gonzalo Airport", + "latitude_deg": "-42.5636100769043", + "longitude_deg": "-72.59972381591797", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Chaiten", + "scheduled_service": "no", + "gps_code": "SCGN" + }, + { + "id": "32259", + "ident": "SCGO", + "type": "small_airport", + "name": "Los Confines Airport", + "latitude_deg": "-37.794700622558594", + "longitude_deg": "-72.68720245361328", + "elevation_ft": "240", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Angol", + "scheduled_service": "no", + "gps_code": "SCGO" + }, + { + "id": "39150", + "ident": "SCGP", + "type": "closed", + "name": "Curaco Airport", + "latitude_deg": "-39.536914", + "longitude_deg": "-72.356129", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "Panguipulli", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Curaco_Airport", + "keywords": "SCGP" + }, + { + "id": "39151", + "ident": "SCGS", + "type": "small_airport", + "name": "Siberia Airport", + "latitude_deg": "-37.177223205566406", + "longitude_deg": "-72.07971954345703", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Cholguan", + "scheduled_service": "no", + "gps_code": "SCGS" + }, + { + "id": "32260", + "ident": "SCGU", + "type": "small_airport", + "name": "Aguas Blancas Airport", + "latitude_deg": "-24.13640022277832", + "longitude_deg": "-69.82859802246094", + "elevation_ft": "3346", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AN", + "municipality": "Antofagasta", + "scheduled_service": "no", + "gps_code": "SCGU" + }, + { + "id": "45061", + "ident": "SCGV", + "type": "small_airport", + "name": "Punta Gaviota Airport", + "latitude_deg": "-29.084444", + "longitude_deg": "-71.467222", + "elevation_ft": "99", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AT", + "municipality": "Caleta Chañaral De Aceituno", + "scheduled_service": "no", + "gps_code": "SCGV" + }, + { + "id": "39152", + "ident": "SCGY", + "type": "small_airport", + "name": "Los Guayes Airport", + "latitude_deg": "-39.05305480957031", + "longitude_deg": "-71.99361419677734", + "elevation_ft": "1312", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Cunco", + "scheduled_service": "no", + "gps_code": "SCGY" + }, + { + "id": "6023", + "ident": "SCGZ", + "type": "medium_airport", + "name": "Guardiamarina Zañartu Airport", + "latitude_deg": "-54.931099", + "longitude_deg": "-67.626297", + "elevation_ft": "88", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Puerto Williams", + "scheduled_service": "no", + "gps_code": "SCGZ", + "iata_code": "WPU", + "keywords": "Ensign Zañartu" + }, + { + "id": "29774", + "ident": "SCHA", + "type": "small_airport", + "name": "Chamonate Airport", + "latitude_deg": "-27.2968997955", + "longitude_deg": "-70.4131011963", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AT", + "municipality": "Copiapo", + "scheduled_service": "no", + "gps_code": "SCHA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chamonate_Airport", + "keywords": "CPO" + }, + { + "id": "39153", + "ident": "SCHC", + "type": "small_airport", + "name": "Chicureo Airport", + "latitude_deg": "-33.26777648925781", + "longitude_deg": "-70.64722442626953", + "elevation_ft": "1886", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SCHC" + }, + { + "id": "39154", + "ident": "SCHD", + "type": "small_airport", + "name": "Chumilden Airport", + "latitude_deg": "-42.524444580078125", + "longitude_deg": "-72.81694793701172", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Chaiten", + "scheduled_service": "no", + "gps_code": "SCHD" + }, + { + "id": "39155", + "ident": "SCHE", + "type": "small_airport", + "name": "Rucamanqui Airport", + "latitude_deg": "-37.19972229003906", + "longitude_deg": "-71.89666748046875", + "elevation_ft": "1132", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Huepil", + "scheduled_service": "no", + "gps_code": "SCHE" + }, + { + "id": "39156", + "ident": "SCHG", + "type": "small_airport", + "name": "Almahue Airport", + "latitude_deg": "-34.39861297607422", + "longitude_deg": "-71.37110900878906", + "elevation_ft": "420", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Pichidegua", + "scheduled_service": "no", + "gps_code": "SCHG" + }, + { + "id": "39157", + "ident": "SCHH", + "type": "small_airport", + "name": "Punta Baja Airport", + "latitude_deg": "-46.792906", + "longitude_deg": "-72.79614", + "elevation_ft": "721", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Chile Chico", + "scheduled_service": "no", + "gps_code": "SCHH" + }, + { + "id": "39158", + "ident": "SCHK", + "type": "small_airport", + "name": "Hueicolla Airport", + "latitude_deg": "-40.158599853515625", + "longitude_deg": "-73.65440368652344", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "La Union", + "scheduled_service": "no", + "gps_code": "SCHK" + }, + { + "id": "39159", + "ident": "SCHL", + "type": "small_airport", + "name": "Hacienda Lipangue Airport", + "latitude_deg": "-33.33527755737305", + "longitude_deg": "-70.9111099243164", + "elevation_ft": "1745", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Lampa", + "scheduled_service": "no", + "gps_code": "SCHL" + }, + { + "id": "39160", + "ident": "SCHM", + "type": "small_airport", + "name": "Punta El Saco Airport", + "latitude_deg": "-38.40999984741211", + "longitude_deg": "-73.90083312988281", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Isla Mocha", + "scheduled_service": "no", + "gps_code": "SCHM" + }, + { + "id": "39161", + "ident": "SCHN", + "type": "small_airport", + "name": "Chan Chan Airport", + "latitude_deg": "-39.86579895019531", + "longitude_deg": "-72.13140106201172", + "elevation_ft": "457", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "Choshuenco", + "scheduled_service": "no", + "gps_code": "SCHN" + }, + { + "id": "39162", + "ident": "SCHO", + "type": "small_airport", + "name": "Punta Chungo Airport", + "latitude_deg": "-31.88277816772461", + "longitude_deg": "-71.47638702392578", + "elevation_ft": "249", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Los Vilos", + "scheduled_service": "no", + "gps_code": "SCHO" + }, + { + "id": "39163", + "ident": "SCHP", + "type": "small_airport", + "name": "Copihue Airport", + "latitude_deg": "-36.07749938964844", + "longitude_deg": "-71.77972412109375", + "elevation_ft": "551", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Retiro", + "scheduled_service": "no", + "gps_code": "SCHP" + }, + { + "id": "6024", + "ident": "SCHR", + "type": "medium_airport", + "name": "Cochrane Airport", + "latitude_deg": "-47.243591", + "longitude_deg": "-72.58815", + "elevation_ft": "643", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Cochrane", + "scheduled_service": "no", + "gps_code": "SCHR", + "iata_code": "LGR" + }, + { + "id": "39164", + "ident": "SCHT", + "type": "small_airport", + "name": "Tic Toc Airport", + "latitude_deg": "-43.61305618286133", + "longitude_deg": "-72.89749908447266", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Chaiten", + "scheduled_service": "no", + "gps_code": "SCHT" + }, + { + "id": "39165", + "ident": "SCHU", + "type": "small_airport", + "name": "Gran Cañon Airport", + "latitude_deg": "-28.098888397216797", + "longitude_deg": "-71.14666748046875", + "elevation_ft": "230", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AT", + "municipality": "Huasco", + "scheduled_service": "no", + "gps_code": "SCHU" + }, + { + "id": "39166", + "ident": "SCHW", + "type": "small_airport", + "name": "Hualaihué Airport", + "latitude_deg": "-42.02861022949219", + "longitude_deg": "-72.68944549560547", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Hualaihue", + "scheduled_service": "no", + "gps_code": "SCHW" + }, + { + "id": "39167", + "ident": "SCIA", + "type": "small_airport", + "name": "Isla Apiao Airport", + "latitude_deg": "-42.59972381591797", + "longitude_deg": "-73.21221923828125", + "elevation_ft": "250", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Isla Apiao", + "scheduled_service": "no", + "gps_code": "SCIA" + }, + { + "id": "39168", + "ident": "SCIB", + "type": "small_airport", + "name": "Butachauques Airport", + "latitude_deg": "-42.30833435058594", + "longitude_deg": "-73.14221954345703", + "elevation_ft": "150", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Isla Butachauques", + "scheduled_service": "no", + "gps_code": "SCIB" + }, + { + "id": "39169", + "ident": "SCIC", + "type": "small_airport", + "name": "General Freire Airport", + "latitude_deg": "-34.96666717529297", + "longitude_deg": "-71.21639251708984", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Curico", + "scheduled_service": "no", + "gps_code": "SCIC" + }, + { + "id": "39170", + "ident": "SCID", + "type": "small_airport", + "name": "Marco Davison Bascur Airport", + "latitude_deg": "-52.881537", + "longitude_deg": "-70.753365", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Punta Arenas", + "scheduled_service": "no", + "gps_code": "SCID" + }, + { + "id": "6025", + "ident": "SCIE", + "type": "medium_airport", + "name": "Carriel Sur Airport", + "latitude_deg": "-36.772701", + "longitude_deg": "-73.063103", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Concepcion", + "scheduled_service": "yes", + "gps_code": "SCIE", + "iata_code": "CCP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carriel_Sur_International_Airport" + }, + { + "id": "39171", + "ident": "SCIF", + "type": "small_airport", + "name": "Chollinco Airport", + "latitude_deg": "-40.2057991027832", + "longitude_deg": "-72.23139953613281", + "elevation_ft": "330", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "Llifen", + "scheduled_service": "no", + "gps_code": "SCIF" + }, + { + "id": "39172", + "ident": "SCIH", + "type": "small_airport", + "name": "Caleta Andrade Airport", + "latitude_deg": "-45.147777", + "longitude_deg": "-73.508614", + "elevation_ft": "115", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Isla Las Huichas", + "scheduled_service": "no", + "gps_code": "SCIH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Caleta_Blanco_Airport", + "keywords": "Caleta Blanco" + }, + { + "id": "39173", + "ident": "SCII", + "type": "small_airport", + "name": "Puerto Ingeniero Ibañez Airport", + "latitude_deg": "-46.293966", + "longitude_deg": "-71.949601", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Puerto Ingeniero Ibañez", + "scheduled_service": "no", + "gps_code": "SCII" + }, + { + "id": "39174", + "ident": "SCIK", + "type": "small_airport", + "name": "Isla Talcan Airport", + "latitude_deg": "-42.744357", + "longitude_deg": "-72.966861", + "elevation_ft": "45", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Isla Talcan", + "scheduled_service": "no", + "gps_code": "SCIK" + }, + { + "id": "32261", + "ident": "SCIL", + "type": "small_airport", + "name": "Aucó Airport", + "latitude_deg": "-31.577800750732422", + "longitude_deg": "-71.11080169677734", + "elevation_ft": "1420", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Illapel", + "scheduled_service": "no", + "gps_code": "SCIL" + }, + { + "id": "29980", + "ident": "SCIM", + "type": "small_airport", + "name": "Isla Mocha Airport", + "latitude_deg": "-38.3849983215332", + "longitude_deg": "-73.868896484375", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Isla Mocha", + "scheduled_service": "no", + "gps_code": "SCIM" + }, + { + "id": "39175", + "ident": "SCIO", + "type": "small_airport", + "name": "Laguna Redonda Airport", + "latitude_deg": "-48.93357849121094", + "longitude_deg": "-72.79961395263672", + "elevation_ft": "1970", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Villa O'Higgins", + "scheduled_service": "no", + "gps_code": "SCIO" + }, + { + "id": "6026", + "ident": "SCIP", + "type": "medium_airport", + "name": "Mataveri Airport", + "latitude_deg": "-27.1648006439", + "longitude_deg": "-109.42199707", + "elevation_ft": "227", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Isla De Pascua", + "scheduled_service": "yes", + "gps_code": "SCIP", + "iata_code": "IPC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mataveri_International_Airport", + "keywords": "Rapa Nui, Easter Island" + }, + { + "id": "28147", + "ident": "SCIR", + "type": "small_airport", + "name": "Robinson Crusoe Airport", + "latitude_deg": "-33.6650009155", + "longitude_deg": "-78.9297027588", + "elevation_ft": "433", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Isla Robinson Crusoe", + "scheduled_service": "no", + "gps_code": "SCIR", + "wikipedia_link": "http://es.wikipedia.org/wiki/Aer%C3%B3dromo_Robinson_Crusoe" + }, + { + "id": "39176", + "ident": "SCIS", + "type": "small_airport", + "name": "Puerto Sur Airport", + "latitude_deg": "-37.0261116027832", + "longitude_deg": "-73.50694274902344", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Isla Santa Maria", + "scheduled_service": "no", + "gps_code": "SCIS" + }, + { + "id": "39177", + "ident": "SCIT", + "type": "small_airport", + "name": "Iván Martinez Airport", + "latitude_deg": "-52.95500183105469", + "longitude_deg": "-70.03279876708984", + "elevation_ft": "144", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Isla Tierra Del Fuego", + "scheduled_service": "no", + "gps_code": "SCIT" + }, + { + "id": "32262", + "ident": "SCIV", + "type": "closed", + "name": "Panimavida Airport", + "latitude_deg": "-35.760957", + "longitude_deg": "-71.40653", + "elevation_ft": "591", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Panimavida", + "scheduled_service": "no", + "gps_code": "SCIV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Panimávida_Airport" + }, + { + "id": "39178", + "ident": "SCJC", + "type": "small_airport", + "name": "James Conrad Airport", + "latitude_deg": "-36.581111907958984", + "longitude_deg": "-72.77333068847656", + "elevation_ft": "528", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Ranguelmo", + "scheduled_service": "no", + "gps_code": "SCJC" + }, + { + "id": "39179", + "ident": "SCJK", + "type": "small_airport", + "name": "Juan Kemp Airport", + "latitude_deg": "-40.88444519042969", + "longitude_deg": "-72.36888885498047", + "elevation_ft": "459", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Osorno", + "scheduled_service": "no", + "gps_code": "SCJK" + }, + { + "id": "6027", + "ident": "SCJO", + "type": "medium_airport", + "name": "Cañal Bajo Carlos - Hott Siebert Airport", + "latitude_deg": "-40.611198", + "longitude_deg": "-73.060997", + "elevation_ft": "187", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Osorno", + "scheduled_service": "yes", + "gps_code": "SCJO", + "iata_code": "ZOS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Canal_Bajo_Carlos_Hott_Siebert_Airport" + }, + { + "id": "39180", + "ident": "SCJV", + "type": "small_airport", + "name": "El Parrón Airport", + "latitude_deg": "-35.54805374145508", + "longitude_deg": "-71.77610778808594", + "elevation_ft": "200", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "San Javier", + "scheduled_service": "no", + "gps_code": "SCJV" + }, + { + "id": "39181", + "ident": "SCKA", + "type": "small_airport", + "name": "Santa Marta Airport", + "latitude_deg": "-36.49305725097656", + "longitude_deg": "-71.89694213867188", + "elevation_ft": "577", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "San Carlos", + "scheduled_service": "no", + "gps_code": "SCKA" + }, + { + "id": "39182", + "ident": "SCKB", + "type": "small_airport", + "name": "Llollenorte Airport", + "latitude_deg": "-39.057498931884766", + "longitude_deg": "-71.6897201538086", + "elevation_ft": "1641", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Lago Caburga", + "scheduled_service": "no", + "gps_code": "SCKB" + }, + { + "id": "39183", + "ident": "SCKC", + "type": "small_airport", + "name": "Roberto Chavéz Airport", + "latitude_deg": "-38.906944274902344", + "longitude_deg": "-72.21527862548828", + "elevation_ft": "895", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Cunco", + "scheduled_service": "no", + "gps_code": "SCKC" + }, + { + "id": "39184", + "ident": "SCKD", + "type": "small_airport", + "name": "El Cardal Airport", + "latitude_deg": "-40.46780014038086", + "longitude_deg": "-72.68499755859375", + "elevation_ft": "525", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "Rio Bueno", + "scheduled_service": "no", + "gps_code": "SCKD" + }, + { + "id": "39185", + "ident": "SCKE", + "type": "small_airport", + "name": "Piedra Negra Airport", + "latitude_deg": "-35.85444259643555", + "longitude_deg": "-72.64583587646484", + "elevation_ft": "164", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Pelluhue", + "scheduled_service": "no", + "gps_code": "SCKE" + }, + { + "id": "39186", + "ident": "SCKI", + "type": "small_airport", + "name": "Los Lirios Airport", + "latitude_deg": "-34.90388870239258", + "longitude_deg": "-71.20138549804688", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Curico", + "scheduled_service": "no", + "gps_code": "SCKI" + }, + { + "id": "39187", + "ident": "SCKK", + "type": "small_airport", + "name": "La Cascada Airport", + "latitude_deg": "-35.3849983215332", + "longitude_deg": "-71.1066665649414", + "elevation_ft": "1804", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Molina", + "scheduled_service": "no", + "gps_code": "SCKK" + }, + { + "id": "39188", + "ident": "SCKL", + "type": "small_airport", + "name": "Lipangui Airport", + "latitude_deg": "-33.331111907958984", + "longitude_deg": "-70.8499984741211", + "elevation_ft": "1558", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Lampa", + "scheduled_service": "no", + "gps_code": "SCKL" + }, + { + "id": "39189", + "ident": "SCKM", + "type": "small_airport", + "name": "Cochamó Airport", + "latitude_deg": "-41.483333587646484", + "longitude_deg": "-72.30000305175781", + "elevation_ft": "130", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Cochamo", + "scheduled_service": "no", + "gps_code": "SCKM" + }, + { + "id": "39190", + "ident": "SCKN", + "type": "small_airport", + "name": "Licancel Airport", + "latitude_deg": "-34.989166259765625", + "longitude_deg": "-72.01889038085938", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Licanten", + "scheduled_service": "no", + "gps_code": "SCKN" + }, + { + "id": "39191", + "ident": "SCKO", + "type": "small_airport", + "name": "Agua Buena Airport", + "latitude_deg": "-37.99388885498047", + "longitude_deg": "-72.2491683959961", + "elevation_ft": "1420", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Collipulli", + "scheduled_service": "no", + "gps_code": "SCKO" + }, + { + "id": "6028", + "ident": "SCKP", + "type": "small_airport", + "name": "Coposa Airport", + "latitude_deg": "-20.7505", + "longitude_deg": "-68.683502", + "elevation_ft": "12468", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-TA", + "municipality": "Pica", + "scheduled_service": "no", + "gps_code": "SCKP", + "iata_code": "CPP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coposa_Airport" + }, + { + "id": "39192", + "ident": "SCKQ", + "type": "small_airport", + "name": "Curimanque Airport", + "latitude_deg": "-39.32694625854492", + "longitude_deg": "-72.0272216796875", + "elevation_ft": "1476", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Pucon", + "scheduled_service": "no", + "gps_code": "SCKQ" + }, + { + "id": "39193", + "ident": "SCKT", + "type": "small_airport", + "name": "Torreón Airport", + "latitude_deg": "-36.4988899230957", + "longitude_deg": "-72.68000030517578", + "elevation_ft": "216", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Coelemu", + "scheduled_service": "no", + "gps_code": "SCKT" + }, + { + "id": "39194", + "ident": "SCLA", + "type": "small_airport", + "name": "General Tovarías Airport", + "latitude_deg": "-38.54277801513672", + "longitude_deg": "-72.45471954345703", + "elevation_ft": "699", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Lautaro", + "scheduled_service": "no", + "gps_code": "SCLA" + }, + { + "id": "39195", + "ident": "SCLB", + "type": "small_airport", + "name": "Los Pehuenches Airport", + "latitude_deg": "-37.65805435180664", + "longitude_deg": "-73.62944793701172", + "elevation_ft": "587", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Lebu", + "scheduled_service": "no", + "gps_code": "SCLB" + }, + { + "id": "30379", + "ident": "SCLC", + "type": "small_airport", + "name": "Municipal de Vitacura Airport", + "latitude_deg": "-33.38079833984375", + "longitude_deg": "-70.58219909667969", + "elevation_ft": "2274", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SCLC" + }, + { + "id": "30081", + "ident": "SCLD", + "type": "small_airport", + "name": "Llanada Grande Airport", + "latitude_deg": "-41.86669921875", + "longitude_deg": "-71.93440246582031", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Llanada Grande", + "scheduled_service": "no", + "gps_code": "SCLD" + }, + { + "id": "32263", + "ident": "SCLE", + "type": "small_airport", + "name": "La Escondida Airport", + "latitude_deg": "-24.294700622558594", + "longitude_deg": "-69.13169860839844", + "elevation_ft": "10289", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AN", + "municipality": "Antofagasta", + "scheduled_service": "no", + "gps_code": "SCLE" + }, + { + "id": "39196", + "ident": "SCLF", + "type": "small_airport", + "name": "Calcurrupe Airport", + "latitude_deg": "-40.24420166015625", + "longitude_deg": "-72.23690032958984", + "elevation_ft": "335", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "Llifen", + "scheduled_service": "no", + "gps_code": "SCLF" + }, + { + "id": "39197", + "ident": "SCLG", + "type": "small_airport", + "name": "La Aguada Airport", + "latitude_deg": "-35.342777252197266", + "longitude_deg": "-71.77694702148438", + "elevation_ft": "246", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Pencahue", + "scheduled_service": "no", + "gps_code": "SCLG" + }, + { + "id": "39198", + "ident": "SCLI", + "type": "small_airport", + "name": "Torca Airport", + "latitude_deg": "-34.78333282470703", + "longitude_deg": "-72.05083465576172", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Llico", + "scheduled_service": "no", + "gps_code": "SCLI" + }, + { + "id": "39199", + "ident": "SCLJ", + "type": "small_airport", + "name": "La Junta Airport", + "latitude_deg": "-43.975276947021484", + "longitude_deg": "-72.41305541992188", + "elevation_ft": "120", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "La Junta", + "scheduled_service": "no", + "gps_code": "SCLJ" + }, + { + "id": "39200", + "ident": "SCLK", + "type": "small_airport", + "name": "Lago Colico Airport", + "latitude_deg": "-39.057498931884766", + "longitude_deg": "-72.07416534423828", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Cunco", + "scheduled_service": "no", + "gps_code": "SCLK" + }, + { + "id": "6029", + "ident": "SCLL", + "type": "medium_airport", + "name": "Vallenar Airport", + "latitude_deg": "-28.596399307250977", + "longitude_deg": "-70.75599670410156", + "elevation_ft": "1725", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AT", + "municipality": "Vallenar", + "scheduled_service": "no", + "gps_code": "SCLL", + "iata_code": "VLR" + }, + { + "id": "39201", + "ident": "SCLM", + "type": "small_airport", + "name": "Las Mercedes Airport", + "latitude_deg": "-35.5", + "longitude_deg": "-71.8808364868164", + "elevation_ft": "246", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "San Javier", + "scheduled_service": "no", + "gps_code": "SCLM" + }, + { + "id": "30078", + "ident": "SCLN", + "type": "small_airport", + "name": "Municipal de Linares Airport", + "latitude_deg": "-35.861698150634766", + "longitude_deg": "-71.54859924316406", + "elevation_ft": "591", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Linares", + "scheduled_service": "no", + "gps_code": "SCLN", + "iata_code": "ZLR" + }, + { + "id": "39202", + "ident": "SCLO", + "type": "small_airport", + "name": "Leones Airport", + "latitude_deg": "-46.76555633544922", + "longitude_deg": "-72.8183364868164", + "elevation_ft": "705", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Chile Chico", + "scheduled_service": "no", + "gps_code": "SCLO" + }, + { + "id": "39203", + "ident": "SCLP", + "type": "small_airport", + "name": "Los Petiles Airport", + "latitude_deg": "-35.21555709838867", + "longitude_deg": "-71.10861206054688", + "elevation_ft": "1575", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Molina", + "scheduled_service": "no", + "gps_code": "SCLP" + }, + { + "id": "39204", + "ident": "SCLQ", + "type": "small_airport", + "name": "Diego Portales Airport", + "latitude_deg": "-32.45249938964844", + "longitude_deg": "-71.2588882446289", + "elevation_ft": "250", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "La Ligua", + "scheduled_service": "no", + "gps_code": "SCLQ" + }, + { + "id": "39205", + "ident": "SCLR", + "type": "small_airport", + "name": "Los Alerces Airport", + "latitude_deg": "-42.780893", + "longitude_deg": "-72.64524", + "elevation_ft": "345", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Chaiten", + "scheduled_service": "no", + "gps_code": "SCLR" + }, + { + "id": "39206", + "ident": "SCLS", + "type": "small_airport", + "name": "Esperanza Airport", + "latitude_deg": "-38.54888916015625", + "longitude_deg": "-72.14583587646484", + "elevation_ft": "1230", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Lautaro", + "scheduled_service": "no", + "gps_code": "SCLS" + }, + { + "id": "348527", + "ident": "SCLT", + "type": "small_airport", + "name": "Topocalma Airport", + "latitude_deg": "-34.112222", + "longitude_deg": "-71.938056", + "elevation_ft": "38", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Litueche", + "scheduled_service": "no", + "gps_code": "SCLT" + }, + { + "id": "39207", + "ident": "SCLU", + "type": "small_airport", + "name": "La Laguna Airport", + "latitude_deg": "-34.352500915527344", + "longitude_deg": "-71.66388702392578", + "elevation_ft": "528", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Marchigue", + "scheduled_service": "no", + "gps_code": "SCLU" + }, + { + "id": "39208", + "ident": "SCLV", + "type": "small_airport", + "name": "La Viña Airport", + "latitude_deg": "-32.13805389404297", + "longitude_deg": "-71.39805603027344", + "elevation_ft": "870", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Guangali", + "scheduled_service": "no", + "gps_code": "SCLV" + }, + { + "id": "39209", + "ident": "SCLY", + "type": "small_airport", + "name": "La Playa Airport", + "latitude_deg": "-37.21638870239258", + "longitude_deg": "-73.2330551147461", + "elevation_ft": "32", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Arauco", + "scheduled_service": "no", + "gps_code": "SCLY" + }, + { + "id": "39210", + "ident": "SCMA", + "type": "small_airport", + "name": "Puerto Marín Balmaceda Airport", + "latitude_deg": "-43.787633", + "longitude_deg": "-72.950994", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Puerto Marin Balmaceda", + "scheduled_service": "no", + "gps_code": "SCMA" + }, + { + "id": "6030", + "ident": "SCMB", + "type": "closed", + "name": "La Chimba Airport", + "latitude_deg": "-23.5536003113", + "longitude_deg": "-70.3961029053", + "elevation_ft": "131", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AN", + "municipality": "La Chimba", + "scheduled_service": "no", + "gps_code": "SCMB", + "wikipedia_link": "http://es.wikipedia.org/wiki/Aer%C3%B3dromo_La_Chimba" + }, + { + "id": "39211", + "ident": "SCMC", + "type": "small_airport", + "name": "Meseta Cosmelli Airport", + "latitude_deg": "-46.74606", + "longitude_deg": "-72.527319", + "elevation_ft": "950", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Puerto Guadal", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Meseta_Cosmelli_Airport", + "keywords": "SCMC" + }, + { + "id": "39212", + "ident": "SCME", + "type": "small_airport", + "name": "Los Cuatro Diablos Airport", + "latitude_deg": "-33.676109313964844", + "longitude_deg": "-71.1433334350586", + "elevation_ft": "660", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Melipilla", + "scheduled_service": "no", + "gps_code": "SCME" + }, + { + "id": "39213", + "ident": "SCMF", + "type": "small_airport", + "name": "Malloco Airport", + "latitude_deg": "-39.25583267211914", + "longitude_deg": "-72.34333038330078", + "elevation_ft": "935", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Villarrica", + "scheduled_service": "no", + "gps_code": "SCMF" + }, + { + "id": "39214", + "ident": "SCMG", + "type": "small_airport", + "name": "Santa María de Mingre Airport", + "latitude_deg": "-35.570556640625", + "longitude_deg": "-72.00389099121094", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "San Javier", + "scheduled_service": "no", + "gps_code": "SCMG" + }, + { + "id": "39215", + "ident": "SCMH", + "type": "small_airport", + "name": "La Esperanza Airport", + "latitude_deg": "-34.28722381591797", + "longitude_deg": "-71.55833435058594", + "elevation_ft": "540", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Marchigue", + "scheduled_service": "no", + "gps_code": "SCMH" + }, + { + "id": "39216", + "ident": "SCMI", + "type": "small_airport", + "name": "Los Tricahues Airport", + "latitude_deg": "-30.737499237060547", + "longitude_deg": "-70.85972595214844", + "elevation_ft": "1650", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Mialqui", + "scheduled_service": "no", + "gps_code": "SCMI" + }, + { + "id": "39217", + "ident": "SCMK", + "type": "small_airport", + "name": "Melinka Airport", + "latitude_deg": "-43.89500045776367", + "longitude_deg": "-73.7388916015625", + "elevation_ft": "35", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Melinka", + "scheduled_service": "no", + "gps_code": "SCMK" + }, + { + "id": "45062", + "ident": "SCML", + "type": "small_airport", + "name": "Melipeuco Airport", + "latitude_deg": "-38.856111", + "longitude_deg": "-71.8125", + "elevation_ft": "1388", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Melipeuco", + "scheduled_service": "no", + "gps_code": "SCML" + }, + { + "id": "32264", + "ident": "SCMN", + "type": "closed", + "name": "Mansel Airport", + "latitude_deg": "-33.862398", + "longitude_deg": "-70.771008", + "elevation_ft": "1411", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Paine", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paine_Mansel_Airport", + "keywords": "SCMN" + }, + { + "id": "39218", + "ident": "SCMO", + "type": "small_airport", + "name": "Los Monos Airport", + "latitude_deg": "-35.190277099609375", + "longitude_deg": "-71.41860961914062", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Molina", + "scheduled_service": "no", + "gps_code": "SCMO" + }, + { + "id": "39219", + "ident": "SCMP", + "type": "small_airport", + "name": "Melipilla Airport", + "latitude_deg": "-33.67388916015625", + "longitude_deg": "-71.19361114501953", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Melipilla", + "scheduled_service": "no", + "gps_code": "SCMP" + }, + { + "id": "45063", + "ident": "SCMR", + "type": "small_airport", + "name": "Las Aguilas Oriente Airport", + "latitude_deg": "-34.169167", + "longitude_deg": "-71.531111", + "elevation_ft": "450", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Rapel", + "scheduled_service": "no", + "gps_code": "SCMR" + }, + { + "id": "45064", + "ident": "SCMS", + "type": "small_airport", + "name": "Las Moras Airport", + "latitude_deg": "-36.010278", + "longitude_deg": "-71.594444", + "elevation_ft": "512", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Longavi", + "scheduled_service": "no", + "gps_code": "SCMS" + }, + { + "id": "39220", + "ident": "SCMU", + "type": "small_airport", + "name": "Panilonco Airport", + "latitude_deg": "-34.28111267089844", + "longitude_deg": "-71.94694519042969", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Pichilemu", + "scheduled_service": "no", + "gps_code": "SCMU" + }, + { + "id": "39221", + "ident": "SCMV", + "type": "small_airport", + "name": "Viña San Pedro Airport", + "latitude_deg": "-35.1058349609375", + "longitude_deg": "-71.32777404785156", + "elevation_ft": "738", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Molina", + "scheduled_service": "no", + "gps_code": "SCMV" + }, + { + "id": "39222", + "ident": "SCMY", + "type": "small_airport", + "name": "Carolina Airport", + "latitude_deg": "-22.703611373901367", + "longitude_deg": "-70.28250122070312", + "elevation_ft": "128", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AN", + "municipality": "Michilla", + "scheduled_service": "no", + "gps_code": "SCMY" + }, + { + "id": "39223", + "ident": "SCMZ", + "type": "small_airport", + "name": "Marina de Rapel Airport", + "latitude_deg": "-34.151668548583984", + "longitude_deg": "-71.44583129882812", + "elevation_ft": "344", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "El Manzano", + "scheduled_service": "no", + "gps_code": "SCMZ" + }, + { + "id": "45065", + "ident": "SCNA", + "type": "small_airport", + "name": "Fundo La Caña Airport", + "latitude_deg": "-35.976389", + "longitude_deg": "-71.597222", + "elevation_ft": "525", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Linares", + "scheduled_service": "no", + "gps_code": "SCNA" + }, + { + "id": "39224", + "ident": "SCND", + "type": "small_airport", + "name": "Ñadis Airport", + "latitude_deg": "-47.47072", + "longitude_deg": "-72.93013", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Ñadis", + "scheduled_service": "no", + "gps_code": "SCND" + }, + { + "id": "39225", + "ident": "SCNE", + "type": "closed", + "name": "María Elena Airport", + "latitude_deg": "-22.303669", + "longitude_deg": "-69.705527", + "elevation_ft": "4003", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AN", + "municipality": "Maria Elena", + "scheduled_service": "no", + "gps_code": "SCNE", + "wikipedia_link": "https://en.wikipedia.org/wiki/María_Elena_Airport", + "keywords": "SCNE" + }, + { + "id": "39226", + "ident": "SCNG", + "type": "closed", + "name": "Papageno Airport", + "latitude_deg": "-39.549722", + "longitude_deg": "-72.291111", + "elevation_ft": "853", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "Panguipulli", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Papageno_Airport", + "keywords": "SCNG" + }, + { + "id": "45066", + "ident": "SCNH", + "type": "small_airport", + "name": "Ainhoa Airport", + "latitude_deg": "-38.683333", + "longitude_deg": "-72.243889", + "elevation_ft": "992", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Vilcún", + "scheduled_service": "no", + "gps_code": "SCNH" + }, + { + "id": "39227", + "ident": "SCNI", + "type": "small_airport", + "name": "Santa Eugenia Airport", + "latitude_deg": "-36.434444427490234", + "longitude_deg": "-72.15694427490234", + "elevation_ft": "410", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "San Nicolas", + "scheduled_service": "no", + "gps_code": "SCNI" + }, + { + "id": "39228", + "ident": "SCNK", + "type": "small_airport", + "name": "Los Pelambres Airport", + "latitude_deg": "-31.873056411743164", + "longitude_deg": "-70.61833190917969", + "elevation_ft": "4003", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Cuncumen", + "scheduled_service": "no", + "gps_code": "SCNK" + }, + { + "id": "39229", + "ident": "SCNM", + "type": "small_airport", + "name": "Las Misiones Airport", + "latitude_deg": "-37.776112", + "longitude_deg": "-73.383614", + "elevation_ft": "252", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Cañete", + "scheduled_service": "no", + "gps_code": "SCNM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Las_Misiones_Airport" + }, + { + "id": "39230", + "ident": "SCNO", + "type": "small_airport", + "name": "Ñochaco Airport", + "latitude_deg": "-40.89286804199219", + "longitude_deg": "-72.87999725341797", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Ñochaco", + "scheduled_service": "no", + "gps_code": "SCNO" + }, + { + "id": "39231", + "ident": "SCNR", + "type": "closed", + "name": "Fundo Naicura Airport", + "latitude_deg": "-34.320278", + "longitude_deg": "-70.92028", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Rengo", + "scheduled_service": "no", + "keywords": "SCNR" + }, + { + "id": "39232", + "ident": "SCNS", + "type": "closed", + "name": "Sandra Scabini Airport", + "latitude_deg": "-52.393909", + "longitude_deg": "-69.756446", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "San Gregorio", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Punta_Arenas_Sandra_Scabini_Airport", + "keywords": "SCNS" + }, + { + "id": "6031", + "ident": "SCNT", + "type": "medium_airport", + "name": "Lieutenant Julio Gallardo Airport", + "latitude_deg": "-51.67067", + "longitude_deg": "-72.529078", + "elevation_ft": "217", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Puerto Natales", + "scheduled_service": "yes", + "gps_code": "SCNT", + "iata_code": "PNT" + }, + { + "id": "39233", + "ident": "SCNY", + "type": "small_airport", + "name": "Yendegaia Airport", + "latitude_deg": "-54.830973", + "longitude_deg": "-68.834926", + "elevation_ft": "164", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Navarino", + "scheduled_service": "no", + "gps_code": "SCNY" + }, + { + "id": "39234", + "ident": "SCOA", + "type": "small_airport", + "name": "Estancia Los Loros Airport", + "latitude_deg": "-30.789443969726562", + "longitude_deg": "-71.61833190917969", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Ovalle", + "scheduled_service": "no", + "gps_code": "SCOA" + }, + { + "id": "45067", + "ident": "SCOB", + "type": "small_airport", + "name": "Tabalí Bajo Airport", + "latitude_deg": "-30.643333", + "longitude_deg": "-71.401944", + "elevation_ft": "732", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Ovalle", + "scheduled_service": "no", + "gps_code": "SCOB" + }, + { + "id": "39235", + "ident": "SCOC", + "type": "small_airport", + "name": "Las Araucarias Airport", + "latitude_deg": "-40.99305725097656", + "longitude_deg": "-72.65972137451172", + "elevation_ft": "600", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Puerto Octay", + "scheduled_service": "no", + "gps_code": "SCOC" + }, + { + "id": "39236", + "ident": "SCOE", + "type": "small_airport", + "name": "San Miguel Airport", + "latitude_deg": "-34.962223052978516", + "longitude_deg": "-71.01638793945312", + "elevation_ft": "1509", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Romeral", + "scheduled_service": "no", + "gps_code": "SCOE" + }, + { + "id": "32265", + "ident": "SCOH", + "type": "small_airport", + "name": "Villa O'Higgins Airport", + "latitude_deg": "-48.46921157836914", + "longitude_deg": "-72.56431579589844", + "elevation_ft": "898", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Villa O'Higgins", + "scheduled_service": "no", + "gps_code": "SCOH" + }, + { + "id": "45068", + "ident": "SCOI", + "type": "small_airport", + "name": "Los Coipos Airport", + "latitude_deg": "-34.912778", + "longitude_deg": "-71.660833", + "elevation_ft": "318", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Hualanne", + "scheduled_service": "no", + "gps_code": "SCOI" + }, + { + "id": "39237", + "ident": "SCOL", + "type": "small_airport", + "name": "Refugio del Lago Airport", + "latitude_deg": "-40.68944549560547", + "longitude_deg": "-72.3455581665039", + "elevation_ft": "676", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Puyehue", + "scheduled_service": "no", + "gps_code": "SCOL" + }, + { + "id": "39238", + "ident": "SCOM", + "type": "small_airport", + "name": "Olmué Airport", + "latitude_deg": "-32.997093", + "longitude_deg": "-71.17169", + "elevation_ft": "396", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Olmué", + "scheduled_service": "no", + "gps_code": "SCOM", + "keywords": "aeródromo Olmué, SCOM" + }, + { + "id": "30312", + "ident": "SCON", + "type": "small_airport", + "name": "Quellón Airport", + "latitude_deg": "-43.13669967651367", + "longitude_deg": "-73.63500213623047", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Quellon", + "scheduled_service": "no", + "gps_code": "SCON" + }, + { + "id": "45069", + "ident": "SCOO", + "type": "small_airport", + "name": "Melimoyu Airport", + "latitude_deg": "-44.0975", + "longitude_deg": "-73.096944", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Cisnes", + "scheduled_service": "no", + "gps_code": "SCOO" + }, + { + "id": "39239", + "ident": "SCOP", + "type": "small_airport", + "name": "Pilauco Airport", + "latitude_deg": "-40.56916809082031", + "longitude_deg": "-73.12999725341797", + "elevation_ft": "213", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Osorno", + "scheduled_service": "no", + "gps_code": "SCOP" + }, + { + "id": "30223", + "ident": "SCOS", + "type": "small_airport", + "name": "Osorno Pampa Ale Airport", + "latitude_deg": "-40.54719924926758", + "longitude_deg": "-73.15560150146484", + "elevation_ft": "79", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Osorno", + "scheduled_service": "no", + "gps_code": "SCOS" + }, + { + "id": "6032", + "ident": "SCOT", + "type": "small_airport", + "name": "Santa Rosa de Tabalí Airport", + "latitude_deg": "-30.67650032043457", + "longitude_deg": "-71.4010009765625", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Ovalle", + "scheduled_service": "no", + "gps_code": "SCOT" + }, + { + "id": "32137", + "ident": "SCOV", + "type": "small_airport", + "name": "El Tuqui Airport", + "latitude_deg": "-30.559200286865234", + "longitude_deg": "-71.17559814453125", + "elevation_ft": "1100", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Ovalle", + "scheduled_service": "no", + "gps_code": "SCOV", + "iata_code": "OVL" + }, + { + "id": "39240", + "ident": "SCOY", + "type": "small_airport", + "name": "Huayanay Airport", + "latitude_deg": "-30.43055534362793", + "longitude_deg": "-71.53221893310547", + "elevation_ft": "164", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Ovalle", + "scheduled_service": "no", + "gps_code": "SCOY" + }, + { + "id": "32266", + "ident": "SCPA", + "type": "small_airport", + "name": "Paranal Airport", + "latitude_deg": "-24.639400482177734", + "longitude_deg": "-70.3488998413086", + "elevation_ft": "6834", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AN", + "municipality": "Antofagasta", + "scheduled_service": "no", + "gps_code": "SCPA" + }, + { + "id": "39241", + "ident": "SCPB", + "type": "small_airport", + "name": "Puelo Bajo Airport", + "latitude_deg": "-41.66222381591797", + "longitude_deg": "-72.3022232055664", + "elevation_ft": "120", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Puelo Bajo", + "scheduled_service": "no", + "gps_code": "SCPB" + }, + { + "id": "6033", + "ident": "SCPC", + "type": "small_airport", + "name": "Pucón Airport", + "latitude_deg": "-39.292801", + "longitude_deg": "-71.915901", + "elevation_ft": "853", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Pucon", + "scheduled_service": "yes", + "gps_code": "SCPC", + "iata_code": "ZPC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Puc%C3%B3n_Airport" + }, + { + "id": "6034", + "ident": "SCPE", + "type": "small_airport", + "name": "San Pedro de Atacama Airport", + "latitude_deg": "-22.92169952392578", + "longitude_deg": "-68.15840148925781", + "elevation_ft": "7960", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AN", + "municipality": "San Pedro De Atacama", + "scheduled_service": "no", + "gps_code": "SCPE" + }, + { + "id": "39242", + "ident": "SCPF", + "type": "small_airport", + "name": "Marcel Marchant Airport", + "latitude_deg": "-41.45777893066406", + "longitude_deg": "-72.91860961914062", + "elevation_ft": "367", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Puerto Montt", + "scheduled_service": "no", + "gps_code": "SCPF" + }, + { + "id": "39243", + "ident": "SCPG", + "type": "small_airport", + "name": "Municipal de Panguipulli Airport", + "latitude_deg": "-39.65330123901367", + "longitude_deg": "-72.36029815673828", + "elevation_ft": "940", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "Panguipulli", + "scheduled_service": "no", + "gps_code": "SCPG" + }, + { + "id": "30307", + "ident": "SCPH", + "type": "small_airport", + "name": "Puyuhuapi Airport", + "latitude_deg": "-44.38560104370117", + "longitude_deg": "-72.59420013427734", + "elevation_ft": "43", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Puyuhuapi", + "scheduled_service": "no", + "gps_code": "SCPH" + }, + { + "id": "45070", + "ident": "SCPI", + "type": "small_airport", + "name": "Pullami Airport", + "latitude_deg": "-36.586667", + "longitude_deg": "-71.807778", + "elevation_ft": "804", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Coihueco", + "scheduled_service": "no", + "gps_code": "SCPI" + }, + { + "id": "39244", + "ident": "SCPK", + "type": "small_airport", + "name": "Puerto Cisnes Airport", + "latitude_deg": "-44.758657", + "longitude_deg": "-72.698325", + "elevation_ft": "45", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Puerto Cisnes", + "scheduled_service": "no", + "gps_code": "SCPK" + }, + { + "id": "32267", + "ident": "SCPL", + "type": "small_airport", + "name": "Calpulli Airport", + "latitude_deg": "-40.12889862060547", + "longitude_deg": "-72.66169738769531", + "elevation_ft": "755", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "Paillaco", + "scheduled_service": "no", + "gps_code": "SCPL" + }, + { + "id": "39245", + "ident": "SCPM", + "type": "small_airport", + "name": "Pichilemu Airport", + "latitude_deg": "-34.3941650390625", + "longitude_deg": "-72.0191650390625", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Pichilemu", + "scheduled_service": "no", + "gps_code": "SCPM" + }, + { + "id": "39246", + "ident": "SCPN", + "type": "small_airport", + "name": "Pillán Airport", + "latitude_deg": "-42.546112060546875", + "longitude_deg": "-72.4941635131836", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Chaiten", + "scheduled_service": "no", + "gps_code": "SCPN" + }, + { + "id": "39247", + "ident": "SCPO", + "type": "small_airport", + "name": "Los Paltos Airport", + "latitude_deg": "-34.32805633544922", + "longitude_deg": "-70.96416473388672", + "elevation_ft": "869", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Quinta Tilcoco", + "scheduled_service": "no", + "gps_code": "SCPO" + }, + { + "id": "39248", + "ident": "SCPP", + "type": "small_airport", + "name": "Poco a Poco Airport", + "latitude_deg": "-37.8488883972168", + "longitude_deg": "-72.00833129882812", + "elevation_ft": "1680", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Mulchen", + "scheduled_service": "no", + "gps_code": "SCPP" + }, + { + "id": "313732", + "ident": "SCPQ", + "type": "small_airport", + "name": "Mocopulli Airport", + "latitude_deg": "-42.340388", + "longitude_deg": "-73.715693", + "elevation_ft": "528", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Dalcahue", + "scheduled_service": "no", + "gps_code": "SCPQ", + "iata_code": "MHC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mocopulli_Airport" + }, + { + "id": "39249", + "ident": "SCPR", + "type": "small_airport", + "name": "Corte Alto Airport", + "latitude_deg": "-40.94333267211914", + "longitude_deg": "-73.16999816894531", + "elevation_ft": "416", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Purranque", + "scheduled_service": "no", + "gps_code": "SCPR" + }, + { + "id": "39250", + "ident": "SCPS", + "type": "small_airport", + "name": "Perales Airport", + "latitude_deg": "-27.351667404174805", + "longitude_deg": "-70.58944702148438", + "elevation_ft": "633", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AT", + "municipality": "Copiapo", + "scheduled_service": "no", + "gps_code": "SCPS" + }, + { + "id": "45071", + "ident": "SCPT", + "type": "small_airport", + "name": "La Puerta Airport", + "latitude_deg": "-34.613056", + "longitude_deg": "-71.375833", + "elevation_ft": "509", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "gps_code": "SCPT" + }, + { + "id": "39251", + "ident": "SCPU", + "type": "small_airport", + "name": "Peulla Airport", + "latitude_deg": "-41.05416488647461", + "longitude_deg": "-72.00833129882812", + "elevation_ft": "900", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Peulla", + "scheduled_service": "no", + "gps_code": "SCPU" + }, + { + "id": "30305", + "ident": "SCPV", + "type": "small_airport", + "name": "El Mirador Airport", + "latitude_deg": "-41.34939956665039", + "longitude_deg": "-72.94670104980469", + "elevation_ft": "430", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Puerto Varas", + "scheduled_service": "no", + "gps_code": "SCPV", + "iata_code": "PUX" + }, + { + "id": "39252", + "ident": "SCPW", + "type": "small_airport", + "name": "Peumo Airport", + "latitude_deg": "-34.40888977050781", + "longitude_deg": "-71.16889190673828", + "elevation_ft": "557", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Peumo", + "scheduled_service": "no", + "gps_code": "SCPW" + }, + { + "id": "39253", + "ident": "SCPX", + "type": "small_airport", + "name": "Punta Catalina Airport", + "latitude_deg": "-52.555011", + "longitude_deg": "-68.749884", + "elevation_ft": "90", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Punta Catalina", + "scheduled_service": "no", + "gps_code": "SCPX" + }, + { + "id": "39254", + "ident": "SCPY", + "type": "small_airport", + "name": "Cerro Castillo Airport", + "latitude_deg": "-51.26222229003906", + "longitude_deg": "-72.3375015258789", + "elevation_ft": "427", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Cerro Castillo", + "scheduled_service": "no", + "gps_code": "SCPY" + }, + { + "id": "32268", + "ident": "SCPZ", + "type": "small_airport", + "name": "Patriot Hills Airport", + "latitude_deg": "-80.3142", + "longitude_deg": "-81.39478", + "elevation_ft": "2900", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Patriot Hills Base Camp", + "scheduled_service": "no", + "gps_code": "SCPZ" + }, + { + "id": "39255", + "ident": "SCQC", + "type": "small_airport", + "name": "La Colmena Airport", + "latitude_deg": "-38.33305740356445", + "longitude_deg": "-72.58694458007812", + "elevation_ft": "823", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Quino", + "scheduled_service": "no", + "gps_code": "SCQC" + }, + { + "id": "39256", + "ident": "SCQE", + "type": "small_airport", + "name": "Quenac Airport", + "latitude_deg": "-42.46722412109375", + "longitude_deg": "-73.33583068847656", + "elevation_ft": "164", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Isla Quenac", + "scheduled_service": "no", + "gps_code": "SCQE" + }, + { + "id": "39257", + "ident": "SCQI", + "type": "small_airport", + "name": "Icalma Airport", + "latitude_deg": "-38.733339", + "longitude_deg": "-71.218067", + "elevation_ft": "3806", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Lonquimay", + "scheduled_service": "no", + "gps_code": "SCMC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Icalma_Airport", + "keywords": "SCQI" + }, + { + "id": "39258", + "ident": "SCQK", + "type": "small_airport", + "name": "Lequecahue Airport", + "latitude_deg": "-38.362655", + "longitude_deg": "-73.48978", + "elevation_ft": "220", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Tirua", + "scheduled_service": "no", + "gps_code": "SCQK" + }, + { + "id": "39259", + "ident": "SCQL", + "type": "small_airport", + "name": "El Boco Airport", + "latitude_deg": "-32.851112365722656", + "longitude_deg": "-71.24639129638672", + "elevation_ft": "459", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Quillota", + "scheduled_service": "no", + "gps_code": "SCQL" + }, + { + "id": "39260", + "ident": "SCQM", + "type": "small_airport", + "name": "Las Quemas Airport", + "latitude_deg": "-40.638332", + "longitude_deg": "-73.127792", + "elevation_ft": "250", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Osorno", + "scheduled_service": "no", + "gps_code": "SCQM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Osorno_Airport" + }, + { + "id": "45072", + "ident": "SCQO", + "type": "small_airport", + "name": "Quitralco Airport", + "latitude_deg": "-45.580556", + "longitude_deg": "-73.225556", + "elevation_ft": "46", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Aysén", + "scheduled_service": "no", + "gps_code": "SCQO" + }, + { + "id": "314783", + "ident": "SCQP", + "type": "medium_airport", + "name": "La Araucanía Airport", + "latitude_deg": "-38.9259", + "longitude_deg": "-72.6515", + "elevation_ft": "333", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Temuco", + "scheduled_service": "yes", + "gps_code": "SCQP", + "iata_code": "ZCO", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Araucan%C3%ADa_International_Airport" + }, + { + "id": "39261", + "ident": "SCQR", + "type": "small_airport", + "name": "Los Morros Airport", + "latitude_deg": "-36.13444519042969", + "longitude_deg": "-72.804443359375", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Cobquecura", + "scheduled_service": "no", + "gps_code": "SCQR" + }, + { + "id": "6035", + "ident": "SCQT", + "type": "small_airport", + "name": "LasTacas Airport", + "latitude_deg": "-30.096399307250977", + "longitude_deg": "-71.36409759521484", + "elevation_ft": "140", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Quebrada Las Tacas", + "scheduled_service": "no", + "gps_code": "SCQT" + }, + { + "id": "39262", + "ident": "SCQW", + "type": "small_airport", + "name": "Quemchi Airport", + "latitude_deg": "-42.15277862548828", + "longitude_deg": "-73.5169448852539", + "elevation_ft": "393", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Quemchi", + "scheduled_service": "no", + "gps_code": "SCQW" + }, + { + "id": "39263", + "ident": "SCQX", + "type": "small_airport", + "name": "Queilén Airport", + "latitude_deg": "-42.8930549621582", + "longitude_deg": "-73.47638702392578", + "elevation_ft": "60", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Queilen", + "scheduled_service": "no", + "gps_code": "SCQX" + }, + { + "id": "6036", + "ident": "SCQY", + "type": "small_airport", + "name": "Villa Portales Airport", + "latitude_deg": "-38.44990158081055", + "longitude_deg": "-71.35479736328125", + "elevation_ft": "3182", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Lonquimay", + "scheduled_service": "no", + "gps_code": "SCQY" + }, + { + "id": "314565", + "ident": "SCR", + "type": "closed", + "name": "Scranton Municipal Airport", + "latitude_deg": "41.4802", + "longitude_deg": "-75.772", + "elevation_ft": "1151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Clarks Summit", + "scheduled_service": "no", + "local_code": "SCR" + }, + { + "id": "6037", + "ident": "SCRA", + "type": "medium_airport", + "name": "Chañaral Airport", + "latitude_deg": "-26.332500457763672", + "longitude_deg": "-70.6072998046875", + "elevation_ft": "97", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AT", + "municipality": "Chañaral", + "scheduled_service": "no", + "gps_code": "SCRA", + "iata_code": "CNR" + }, + { + "id": "39264", + "ident": "SCRB", + "type": "small_airport", + "name": "Río Bravo Airport", + "latitude_deg": "-47.990466", + "longitude_deg": "-73.142261", + "elevation_ft": "37", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Tortel", + "scheduled_service": "no", + "gps_code": "SCRB" + }, + { + "id": "39265", + "ident": "SCRC", + "type": "small_airport", + "name": "Villa Tapera Airport", + "latitude_deg": "-44.62638854980469", + "longitude_deg": "-71.63888549804688", + "elevation_ft": "1640", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Rio Cisnes", + "scheduled_service": "no", + "gps_code": "SCRC" + }, + { + "id": "32565", + "ident": "SCRD", + "type": "small_airport", + "name": "Rodelillo Airport", + "latitude_deg": "-33.06809997558594", + "longitude_deg": "-71.55750274658203", + "elevation_ft": "1100", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Viña Del Mar", + "scheduled_service": "no", + "gps_code": "SCRD", + "iata_code": "VAP" + }, + { + "id": "39266", + "ident": "SCRE", + "type": "small_airport", + "name": "Estancia Río Cisnes Airport", + "latitude_deg": "-44.5", + "longitude_deg": "-71.32166290283203", + "elevation_ft": "2150", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Rio Cisnes", + "scheduled_service": "no", + "gps_code": "SCRE" + }, + { + "id": "39267", + "ident": "SCRF", + "type": "small_airport", + "name": "Laguna San Rafael Airport", + "latitude_deg": "-46.63888931274414", + "longitude_deg": "-73.8499984741211", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Laguna San Rafael", + "scheduled_service": "no", + "gps_code": "SCRF" + }, + { + "id": "6038", + "ident": "SCRG", + "type": "medium_airport", + "name": "La Independencia Airport", + "latitude_deg": "-34.173698", + "longitude_deg": "-70.775703", + "elevation_ft": "1446", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Rancagua", + "scheduled_service": "no", + "gps_code": "SCRG", + "home_link": "https://www.dgac.gob.cl/aerodromo-la-independencia-entra-en-funcionamiento/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rancagua_de_la_Independencia_Airport", + "keywords": "QRC" + }, + { + "id": "39268", + "ident": "SCRH", + "type": "small_airport", + "name": "Reñihúe Airport", + "latitude_deg": "-42.58555603027344", + "longitude_deg": "-72.49444580078125", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Reñihue", + "scheduled_service": "no", + "gps_code": "SCRH" + }, + { + "id": "39269", + "ident": "SCRI", + "type": "small_airport", + "name": "Río Frío Airport", + "latitude_deg": "-41.74282", + "longitude_deg": "-71.909981", + "elevation_ft": "1000", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Río Frío", + "scheduled_service": "no", + "gps_code": "SCRI" + }, + { + "id": "39270", + "ident": "SCRL", + "type": "small_airport", + "name": "La Estrella Airport", + "latitude_deg": "-34.20111083984375", + "longitude_deg": "-71.4816665649414", + "elevation_ft": "397", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Rapel", + "scheduled_service": "no", + "gps_code": "SCRL" + }, + { + "id": "6039", + "ident": "SCRM", + "type": "small_airport", + "name": "Teniente Rodolfo Marsh Martin Airport", + "latitude_deg": "-62.191026", + "longitude_deg": "-58.98669", + "elevation_ft": "147", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Villa Las Estrellas", + "scheduled_service": "yes", + "gps_code": "SCRM", + "iata_code": "TNM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Teniente_R._Marsh_Airport" + }, + { + "id": "39271", + "ident": "SCRN", + "type": "small_airport", + "name": "Río Negro Airport", + "latitude_deg": "-41.962223", + "longitude_deg": "-72.453888", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Río Negro", + "scheduled_service": "no", + "gps_code": "SCRN" + }, + { + "id": "39272", + "ident": "SCRO", + "type": "small_airport", + "name": "Santa Bárbara Airport", + "latitude_deg": "-34.95888900756836", + "longitude_deg": "-71.18277740478516", + "elevation_ft": "1420", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Romeral", + "scheduled_service": "no", + "gps_code": "SCRO" + }, + { + "id": "30322", + "ident": "SCRP", + "type": "small_airport", + "name": "Rapelhuapi Airport", + "latitude_deg": "-34.10580062866211", + "longitude_deg": "-71.51280212402344", + "elevation_ft": "568", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Rapel", + "scheduled_service": "no", + "gps_code": "SCRP" + }, + { + "id": "39273", + "ident": "SCRQ", + "type": "small_airport", + "name": "Rucañanco Airport", + "latitude_deg": "-40.52190017700195", + "longitude_deg": "-72.77279663085938", + "elevation_ft": "502", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "Rio Bueno", + "scheduled_service": "no", + "gps_code": "SCRQ" + }, + { + "id": "45073", + "ident": "SCRR", + "type": "small_airport", + "name": "Purrahuín Airport", + "latitude_deg": "-40.365278", + "longitude_deg": "-72.776667", + "elevation_ft": "345", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "Rio Bueno", + "scheduled_service": "no", + "gps_code": "SCRR" + }, + { + "id": "45074", + "ident": "SCRS", + "type": "small_airport", + "name": "El Rosario Airport", + "latitude_deg": "-33.488889", + "longitude_deg": "-71.405556", + "elevation_ft": "804", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Cartagena", + "scheduled_service": "no", + "gps_code": "SCRS" + }, + { + "id": "39274", + "ident": "SCRT", + "type": "small_airport", + "name": "El Almendro Airport", + "latitude_deg": "-35.96055603027344", + "longitude_deg": "-71.7933349609375", + "elevation_ft": "486", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Retiro", + "scheduled_service": "no", + "gps_code": "SCRT" + }, + { + "id": "39275", + "ident": "SCRU", + "type": "small_airport", + "name": "Río Murta Airport", + "latitude_deg": "-46.455673", + "longitude_deg": "-72.676653", + "elevation_ft": "600", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Rio Murta", + "scheduled_service": "no", + "gps_code": "SCRU" + }, + { + "id": "45075", + "ident": "SCRV", + "type": "small_airport", + "name": "La Verónica Airport", + "latitude_deg": "-38.611389", + "longitude_deg": "-72.128889", + "elevation_ft": "1280", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Vilcún", + "scheduled_service": "no", + "gps_code": "SCRV" + }, + { + "id": "39276", + "ident": "SCRW", + "type": "small_airport", + "name": "Rucalonco Airport", + "latitude_deg": "-34.54861068725586", + "longitude_deg": "-72.04528045654297", + "elevation_ft": "240", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Paredones", + "scheduled_service": "no", + "gps_code": "SCRW" + }, + { + "id": "45076", + "ident": "SCRZ", + "type": "small_airport", + "name": "El Carrizal Airport", + "latitude_deg": "-34.443333", + "longitude_deg": "-71.706111", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Marchigue", + "scheduled_service": "no", + "gps_code": "SCRZ" + }, + { + "id": "39277", + "ident": "SCSA", + "type": "small_airport", + "name": "Alberto Santos Dumont Airport", + "latitude_deg": "-33.02861022949219", + "longitude_deg": "-70.87999725341797", + "elevation_ft": "2346", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Til Til", + "scheduled_service": "no", + "gps_code": "SCSA" + }, + { + "id": "32326", + "ident": "SCSB", + "type": "small_airport", + "name": "Franco Bianco Airport", + "latitude_deg": "-52.736698150634766", + "longitude_deg": "-69.33360290527344", + "elevation_ft": "104", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Cerro Sombrero", + "scheduled_service": "no", + "gps_code": "SCSB", + "iata_code": "SMB" + }, + { + "id": "30385", + "ident": "SCSD", + "type": "small_airport", + "name": "San Fernando Airport", + "latitude_deg": "-34.565799713134766", + "longitude_deg": "-70.96829986572266", + "elevation_ft": "1079", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "San Fernando", + "scheduled_service": "no", + "gps_code": "SCSD" + }, + { + "id": "6040", + "ident": "SCSE", + "type": "medium_airport", + "name": "La Florida Airport", + "latitude_deg": "-29.916201", + "longitude_deg": "-71.199501", + "elevation_ft": "481", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "La Serena-Coquimbo", + "scheduled_service": "yes", + "gps_code": "SCSE", + "iata_code": "LSC", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Florida_Airport_(Chile)", + "keywords": "COW" + }, + { + "id": "30370", + "ident": "SCSF", + "type": "small_airport", + "name": "Víctor Lafón Airport", + "latitude_deg": "-32.7458", + "longitude_deg": "-70.705002", + "elevation_ft": "2162", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "San Felipe", + "scheduled_service": "no", + "gps_code": "SCSF", + "home_link": "http://clubaereosanfelipe.cl/" + }, + { + "id": "32269", + "ident": "SCSG", + "type": "small_airport", + "name": "San Gerónimo Airport", + "latitude_deg": "-33.3532981873", + "longitude_deg": "-71.6260986328", + "elevation_ft": "341", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Algarrobo", + "scheduled_service": "no", + "gps_code": "SCSG", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Ger%C3%B3nimo_Airport" + }, + { + "id": "39278", + "ident": "SCSH", + "type": "small_airport", + "name": "El Budi Airport", + "latitude_deg": "-39.06277847290039", + "longitude_deg": "-73.16999816894531", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Teodoro Schmidt", + "scheduled_service": "no", + "gps_code": "SCSH" + }, + { + "id": "30378", + "ident": "SCSI", + "type": "small_airport", + "name": "El Salar Airport", + "latitude_deg": "-23.6488990784", + "longitude_deg": "-68.3050003052", + "elevation_ft": "7556", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AN", + "municipality": "Salar De Atacama", + "scheduled_service": "no", + "gps_code": "SCSL" + }, + { + "id": "39279", + "ident": "SCSJ", + "type": "small_airport", + "name": "San Javier Airport", + "latitude_deg": "-35.629722595214844", + "longitude_deg": "-71.69972229003906", + "elevation_ft": "361", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "San Javier", + "scheduled_service": "no", + "gps_code": "SCSJ" + }, + { + "id": "39280", + "ident": "SCSK", + "type": "small_airport", + "name": "Colorado Airport", + "latitude_deg": "-35.663055419921875", + "longitude_deg": "-71.3036117553711", + "elevation_ft": "1410", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "San Clemente", + "scheduled_service": "no", + "gps_code": "SCSK" + }, + { + "id": "39281", + "ident": "SCSM", + "type": "small_airport", + "name": "Minsal Airport", + "latitude_deg": "-23.585277557373047", + "longitude_deg": "-68.38277435302734", + "elevation_ft": "7776", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AN", + "municipality": "Salar De Atacama", + "scheduled_service": "no", + "gps_code": "SCSM" + }, + { + "id": "32270", + "ident": "SCSN", + "type": "small_airport", + "name": "Santo Domingo Airport", + "latitude_deg": "-33.65639877319336", + "longitude_deg": "-71.6144027709961", + "elevation_ft": "246", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Santo Domingo", + "scheduled_service": "no", + "gps_code": "SCSN" + }, + { + "id": "39282", + "ident": "SCSO", + "type": "small_airport", + "name": "Costa del Sol Airport", + "latitude_deg": "-34.12083435058594", + "longitude_deg": "-71.5272216796875", + "elevation_ft": "390", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Lago Rapel", + "scheduled_service": "no", + "gps_code": "SCSO" + }, + { + "id": "45077", + "ident": "SCSP", + "type": "small_airport", + "name": "El Sobrante Airport", + "latitude_deg": "-32.223611", + "longitude_deg": "-70.8", + "elevation_ft": "2559", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Petorca", + "scheduled_service": "no", + "gps_code": "SCSP" + }, + { + "id": "39283", + "ident": "SCSQ", + "type": "small_airport", + "name": "Quilpe Airport", + "latitude_deg": "-40.34111022949219", + "longitude_deg": "-73.31722259521484", + "elevation_ft": "157", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "San Pablo", + "scheduled_service": "no", + "gps_code": "SCSQ" + }, + { + "id": "39284", + "ident": "SCSR", + "type": "small_airport", + "name": "Segundo Corral Alto Airport", + "latitude_deg": "-42.08333206176758", + "longitude_deg": "-71.8638916015625", + "elevation_ft": "1200", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Segundo Corral", + "scheduled_service": "no", + "gps_code": "SCSR" + }, + { + "id": "32271", + "ident": "SCSS", + "type": "small_airport", + "name": "San Sebastián Airport", + "latitude_deg": "-53.316262", + "longitude_deg": "-68.657343", + "elevation_ft": "50", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "San Sebastian", + "scheduled_service": "no", + "gps_code": "SCSS" + }, + { + "id": "29885", + "ident": "SCST", + "type": "small_airport", + "name": "Gamboa Airport", + "latitude_deg": "-42.490299224853516", + "longitude_deg": "-73.77279663085938", + "elevation_ft": "151", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Castro", + "scheduled_service": "no", + "gps_code": "SCST", + "iata_code": "WCA" + }, + { + "id": "39285", + "ident": "SCSU", + "type": "small_airport", + "name": "Santa Lucía Airport", + "latitude_deg": "-38.919166564941406", + "longitude_deg": "-72.36666870117188", + "elevation_ft": "705", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Freire", + "scheduled_service": "no", + "gps_code": "SCSU" + }, + { + "id": "39286", + "ident": "SCSV", + "type": "small_airport", + "name": "Viñasutil Airport", + "latitude_deg": "-34.448890686035156", + "longitude_deg": "-71.38583374023438", + "elevation_ft": "427", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Peralillo", + "scheduled_service": "no", + "gps_code": "SCSV" + }, + { + "id": "39287", + "ident": "SCSZ", + "type": "small_airport", + "name": "Puerto Sanchéz Airport", + "latitude_deg": "-46.592434", + "longitude_deg": "-72.585932", + "elevation_ft": "680", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Puerto Sanchez", + "scheduled_service": "no", + "gps_code": "SCSZ" + }, + { + "id": "45078", + "ident": "SCTA", + "type": "small_airport", + "name": "Santa Luisa Airport", + "latitude_deg": "-37.743889", + "longitude_deg": "-71.71", + "elevation_ft": "1818", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Santa Barbara", + "scheduled_service": "no", + "gps_code": "SCTA" + }, + { + "id": "6041", + "ident": "SCTB", + "type": "small_airport", + "name": "Eulogio Sánchez Airport", + "latitude_deg": "-33.456298828125", + "longitude_deg": "-70.54669952392578", + "elevation_ft": "2129", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SCTB" + }, + { + "id": "6042", + "ident": "SCTC", + "type": "medium_airport", + "name": "Maquehue Airport", + "latitude_deg": "-38.766799926758", + "longitude_deg": "-72.637100219727", + "elevation_ft": "304", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Temuco", + "scheduled_service": "no", + "gps_code": "SCTC", + "iata_code": "PZS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maquehue_Airport", + "keywords": "ZCO" + }, + { + "id": "6043", + "ident": "SCTE", + "type": "medium_airport", + "name": "El Tepual Airport", + "latitude_deg": "-41.438899993896484", + "longitude_deg": "-73.09400177001953", + "elevation_ft": "294", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Puerto Montt", + "scheduled_service": "yes", + "gps_code": "SCTE", + "iata_code": "PMC", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Tepual_Airport" + }, + { + "id": "39288", + "ident": "SCTG", + "type": "small_airport", + "name": "Tongoy Airport", + "latitude_deg": "-30.266387939453125", + "longitude_deg": "-71.48361206054688", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Tongoy", + "scheduled_service": "no", + "gps_code": "SCTG" + }, + { + "id": "45079", + "ident": "SCTH", + "type": "small_airport", + "name": "Tres Chorrillos Airport", + "latitude_deg": "-52.525278", + "longitude_deg": "-70.723889", + "elevation_ft": "322", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "San Gregorio", + "scheduled_service": "no", + "gps_code": "SCTH" + }, + { + "id": "30366", + "ident": "SCTI", + "type": "closed", + "name": "Los Cerrillos Airport", + "latitude_deg": "-33.493598938", + "longitude_deg": "-70.6977996826", + "elevation_ft": "1680", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SCTI", + "iata_code": "ULC", + "wikipedia_link": "http://es.wikipedia.org/wiki/Aer%C3%B3dromo_Los_Cerrillos" + }, + { + "id": "6044", + "ident": "SCTL", + "type": "medium_airport", + "name": "Panguilemo Airport", + "latitude_deg": "-35.37779998779297", + "longitude_deg": "-71.60169982910156", + "elevation_ft": "371", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Talca", + "scheduled_service": "no", + "gps_code": "SCTL", + "iata_code": "TLX" + }, + { + "id": "39289", + "ident": "SCTM", + "type": "small_airport", + "name": "La Montaña Airport", + "latitude_deg": "-34.9689", + "longitude_deg": "-70.9333", + "elevation_ft": "1969", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Curico", + "scheduled_service": "no", + "gps_code": "SCTM" + }, + { + "id": "6045", + "ident": "SCTN", + "type": "medium_airport", + "name": "Chaitén Airport", + "latitude_deg": "-42.93280029296875", + "longitude_deg": "-72.6990966796875", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Chaiten", + "scheduled_service": "no", + "gps_code": "SCTN", + "iata_code": "WCH" + }, + { + "id": "6046", + "ident": "SCTO", + "type": "medium_airport", + "name": "Victoria Airport", + "latitude_deg": "-38.245601654052734", + "longitude_deg": "-72.34860229492188", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Victoria", + "scheduled_service": "no", + "gps_code": "SCTO", + "iata_code": "ZIC" + }, + { + "id": "39290", + "ident": "SCTP", + "type": "small_airport", + "name": "Río Pascua Airport", + "latitude_deg": "-48.22903", + "longitude_deg": "-73.299127", + "elevation_ft": "197", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Tortel", + "scheduled_service": "no", + "gps_code": "SCTP" + }, + { + "id": "32272", + "ident": "SCTQ", + "type": "small_airport", + "name": "Tres Quebradas Airport", + "latitude_deg": "-29.26", + "longitude_deg": "-70.087", + "elevation_ft": "11690", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AT", + "municipality": "Alto Del Carmen", + "scheduled_service": "no", + "gps_code": "SCTQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alto_del_Carmen_Tres_Quebradas_Airport" + }, + { + "id": "39291", + "ident": "SCTR", + "type": "small_airport", + "name": "Traiguén Airport", + "latitude_deg": "-38.27138900756836", + "longitude_deg": "-72.6624984741211", + "elevation_ft": "812", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Traiguen", + "scheduled_service": "no", + "gps_code": "SCTR" + }, + { + "id": "39292", + "ident": "SCTS", + "type": "small_airport", + "name": "Santa Teresa del Almendral Airport", + "latitude_deg": "-33.57555389404297", + "longitude_deg": "-71.26083374023438", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Melipilla", + "scheduled_service": "no", + "gps_code": "SCTS" + }, + { + "id": "6047", + "ident": "SCTT", + "type": "medium_airport", + "name": "Las Breas Airport", + "latitude_deg": "-25.564300537109375", + "longitude_deg": "-70.37590026855469", + "elevation_ft": "2580", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AN", + "municipality": "Taltal", + "scheduled_service": "no", + "gps_code": "SCTT", + "iata_code": "TTC" + }, + { + "id": "39293", + "ident": "SCTU", + "type": "small_airport", + "name": "Litueche Airport", + "latitude_deg": "-34.11055374145508", + "longitude_deg": "-71.71583557128906", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Litueche", + "scheduled_service": "no", + "gps_code": "SCTU" + }, + { + "id": "39294", + "ident": "SCTW", + "type": "small_airport", + "name": "El Tapihue Airport", + "latitude_deg": "-33.32027816772461", + "longitude_deg": "-71.33611297607422", + "elevation_ft": "935", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Casablanca", + "scheduled_service": "no", + "gps_code": "SCTW" + }, + { + "id": "39295", + "ident": "SCUI", + "type": "small_airport", + "name": "Pumalín Airport", + "latitude_deg": "-42.701107", + "longitude_deg": "-72.83428", + "elevation_ft": "18", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Chaiten", + "scheduled_service": "no", + "gps_code": "SCUI" + }, + { + "id": "39296", + "ident": "SCUL", + "type": "small_airport", + "name": "El Litral Airport", + "latitude_deg": "-36.793609619140625", + "longitude_deg": "-72.42082977294922", + "elevation_ft": "180", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Bulnes", + "scheduled_service": "no", + "gps_code": "SCUL" + }, + { + "id": "39297", + "ident": "SCUM", + "type": "small_airport", + "name": "La Obra Airport", + "latitude_deg": "-35.30055618286133", + "longitude_deg": "-71.33027648925781", + "elevation_ft": "673", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Cumpeo", + "scheduled_service": "no", + "gps_code": "SCUM" + }, + { + "id": "39298", + "ident": "SCUN", + "type": "small_airport", + "name": "Uni Frutti Airport", + "latitude_deg": "-34.81305694580078", + "longitude_deg": "-71.04611206054688", + "elevation_ft": "950", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Teno", + "scheduled_service": "no", + "gps_code": "SCUN" + }, + { + "id": "39299", + "ident": "SCUP", + "type": "small_airport", + "name": "Lontuecito Airport", + "latitude_deg": "-35.282222747802734", + "longitude_deg": "-71.23638916015625", + "elevation_ft": "1066", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Cumpeo", + "scheduled_service": "no", + "gps_code": "SCUP" + }, + { + "id": "39300", + "ident": "SCUR", + "type": "small_airport", + "name": "Rucamalen Airport", + "latitude_deg": "-36.81194305419922", + "longitude_deg": "-72.16722106933594", + "elevation_ft": "475", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Bulnes", + "scheduled_service": "no", + "gps_code": "SCUR" + }, + { + "id": "39301", + "ident": "SCUT", + "type": "small_airport", + "name": "Verfrut Sur Airport", + "latitude_deg": "-36.212501525878906", + "longitude_deg": "-71.54444122314453", + "elevation_ft": "1132", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Longavi", + "scheduled_service": "no", + "gps_code": "SCUT" + }, + { + "id": "39302", + "ident": "SCUZ", + "type": "small_airport", + "name": "Aerosanta Cruz Airport", + "latitude_deg": "-34.649166107177734", + "longitude_deg": "-71.3861083984375", + "elevation_ft": "502", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Santa Cruz", + "scheduled_service": "no", + "gps_code": "SCUZ" + }, + { + "id": "39303", + "ident": "SCVA", + "type": "small_airport", + "name": "Viñamar Airport", + "latitude_deg": "-33.3569450378418", + "longitude_deg": "-71.35416412353516", + "elevation_ft": "935", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Casablanca", + "scheduled_service": "no", + "gps_code": "SCVA" + }, + { + "id": "39304", + "ident": "SCVB", + "type": "small_airport", + "name": "Hospital Villa Baviera Airport", + "latitude_deg": "-36.40027618408203", + "longitude_deg": "-71.5633316040039", + "elevation_ft": "1040", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Parral", + "scheduled_service": "no", + "gps_code": "SCVB" + }, + { + "id": "39305", + "ident": "SCVC", + "type": "small_airport", + "name": "El Indio Airport", + "latitude_deg": "-29.834444046020508", + "longitude_deg": "-70.04611206054688", + "elevation_ft": "11975", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Vicuña", + "scheduled_service": "no", + "gps_code": "SCVC" + }, + { + "id": "6048", + "ident": "SCVD", + "type": "medium_airport", + "name": "Pichoy Airport", + "latitude_deg": "-39.6500015259", + "longitude_deg": "-73.0860977173", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "Valdivia", + "scheduled_service": "yes", + "gps_code": "SCVD", + "iata_code": "ZAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pichoy_Airport" + }, + { + "id": "39306", + "ident": "SCVE", + "type": "small_airport", + "name": "Lago Verde Airport", + "latitude_deg": "-44.27083206176758", + "longitude_deg": "-71.91666412353516", + "elevation_ft": "1020", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Lago Verde", + "scheduled_service": "no", + "gps_code": "SCVE" + }, + { + "id": "39307", + "ident": "SCVF", + "type": "small_airport", + "name": "Verfrut Airport", + "latitude_deg": "-34.00722122192383", + "longitude_deg": "-71.3919448852539", + "elevation_ft": "443", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "San Pedro", + "scheduled_service": "no", + "gps_code": "SCVF" + }, + { + "id": "39308", + "ident": "SCVG", + "type": "small_airport", + "name": "El Vergel Airport", + "latitude_deg": "-39.82939910888672", + "longitude_deg": "-72.48829650878906", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "Riñihue", + "scheduled_service": "no", + "gps_code": "SCVG" + }, + { + "id": "39309", + "ident": "SCVH", + "type": "small_airport", + "name": "La Victoria de Chacabuco Airport", + "latitude_deg": "-33.05083465576172", + "longitude_deg": "-70.7088851928711", + "elevation_ft": "2139", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SCVH" + }, + { + "id": "39310", + "ident": "SCVI", + "type": "small_airport", + "name": "Villarrica Airport", + "latitude_deg": "-39.316672", + "longitude_deg": "-72.228696", + "elevation_ft": "945", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Villarrica", + "scheduled_service": "no", + "gps_code": "SCVI" + }, + { + "id": "39311", + "ident": "SCVJ", + "type": "small_airport", + "name": "Paredes Viejas Airport", + "latitude_deg": "-34.39583206176758", + "longitude_deg": "-71.54528045654297", + "elevation_ft": "449", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Marchigue", + "scheduled_service": "no", + "gps_code": "SCVJ" + }, + { + "id": "39312", + "ident": "SCVK", + "type": "small_airport", + "name": "El Alamo Airport", + "latitude_deg": "-34.8477783203125", + "longitude_deg": "-72.02222442626953", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Vichuquen", + "scheduled_service": "no", + "gps_code": "SCVK" + }, + { + "id": "6049", + "ident": "SCVL", + "type": "small_airport", + "name": "Las Marías Airport", + "latitude_deg": "-39.7969017029", + "longitude_deg": "-73.24169921880001", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "Valdivia", + "scheduled_service": "yes", + "gps_code": "SCVL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Las_Marias_Airport" + }, + { + "id": "6050", + "ident": "SCVM", + "type": "medium_airport", + "name": "Viña del mar Airport", + "latitude_deg": "-32.9496", + "longitude_deg": "-71.4786", + "elevation_ft": "461", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Viña Del Mar", + "scheduled_service": "no", + "gps_code": "SCVM", + "iata_code": "KNA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vi%C3%B1a_del_Mar_Airport", + "keywords": "Torquemada" + }, + { + "id": "32273", + "ident": "SCVN", + "type": "small_airport", + "name": "Huancara Airport", + "latitude_deg": "-30.032615", + "longitude_deg": "-70.742083", + "elevation_ft": "1968", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Vicuña", + "scheduled_service": "no", + "gps_code": "SCVN" + }, + { + "id": "39313", + "ident": "SCVO", + "type": "small_airport", + "name": "María Ester Airport", + "latitude_deg": "-38.2319450378418", + "longitude_deg": "-72.48332977294922", + "elevation_ft": "978", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Victoria", + "scheduled_service": "no", + "gps_code": "SCVO" + }, + { + "id": "39314", + "ident": "SCVQ", + "type": "small_airport", + "name": "Cuatro Pantanos Airport", + "latitude_deg": "-34.837223052978516", + "longitude_deg": "-72.06500244140625", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Vichuquen", + "scheduled_service": "no", + "gps_code": "SCVQ" + }, + { + "id": "39315", + "ident": "SCVS", + "type": "small_airport", + "name": "Lago Vargas Airport", + "latitude_deg": "-47.679513", + "longitude_deg": "-73.071039", + "elevation_ft": "56", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Cochrane", + "scheduled_service": "no", + "gps_code": "SCVS" + }, + { + "id": "39316", + "ident": "SCVT", + "type": "small_airport", + "name": "Viña Tarapacá Airport", + "latitude_deg": "-33.766109466552734", + "longitude_deg": "-70.92388916015625", + "elevation_ft": "1066", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Isla De Maipo", + "scheduled_service": "no", + "gps_code": "SCVT" + }, + { + "id": "39317", + "ident": "SCVU", + "type": "small_airport", + "name": "Agromanzún Airport", + "latitude_deg": "-38.69583511352539", + "longitude_deg": "-72.3405532836914", + "elevation_ft": "738", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Vilcun", + "scheduled_service": "no", + "gps_code": "SCVU" + }, + { + "id": "39318", + "ident": "SCVV", + "type": "small_airport", + "name": "Los Maitenes de Villa Vieja Airport", + "latitude_deg": "-40.317423", + "longitude_deg": "-72.980365", + "elevation_ft": "147", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "La Union", + "scheduled_service": "no", + "gps_code": "SCVV" + }, + { + "id": "39319", + "ident": "SCVY", + "type": "small_airport", + "name": "Malla Airport", + "latitude_deg": "-38.69138717651367", + "longitude_deg": "-72.28555297851562", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Vilcun", + "scheduled_service": "no", + "gps_code": "SCVY" + }, + { + "id": "39320", + "ident": "SCXA", + "type": "small_airport", + "name": "Alupenhue Airport", + "latitude_deg": "-35.239444732666016", + "longitude_deg": "-71.07083129882812", + "elevation_ft": "1600", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Molina", + "scheduled_service": "no", + "gps_code": "SCXA" + }, + { + "id": "39321", + "ident": "SCXB", + "type": "small_airport", + "name": "Las Brujas Airport", + "latitude_deg": "-31.7866668701", + "longitude_deg": "-71.0111083984", + "elevation_ft": "1483", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Salamanca", + "scheduled_service": "no", + "gps_code": "SCXB" + }, + { + "id": "39322", + "ident": "SCXR", + "type": "small_airport", + "name": "Las Bandurrias Airport", + "latitude_deg": "-40.31999969482422", + "longitude_deg": "-72.2249984741211", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "Lago Ranco", + "scheduled_service": "no", + "gps_code": "SCXR" + }, + { + "id": "39323", + "ident": "SCYB", + "type": "small_airport", + "name": "Trilahue Airport", + "latitude_deg": "-37.11722183227539", + "longitude_deg": "-72.4111099243164", + "elevation_ft": "423", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Yumbel", + "scheduled_service": "no", + "gps_code": "SCYB" + }, + { + "id": "39324", + "ident": "SCYC", + "type": "small_airport", + "name": "La Capilla Airport", + "latitude_deg": "-40.627777099609375", + "longitude_deg": "-72.76222229003906", + "elevation_ft": "485", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Puyehue", + "scheduled_service": "no", + "gps_code": "SCYC" + }, + { + "id": "39325", + "ident": "SCYL", + "type": "small_airport", + "name": "Licán Airport", + "latitude_deg": "-40.64139938354492", + "longitude_deg": "-72.41110229492188", + "elevation_ft": "625", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "Puyehue", + "scheduled_service": "no", + "gps_code": "SCYL" + }, + { + "id": "45080", + "ident": "SCYO", + "type": "small_airport", + "name": "Poyo Airport", + "latitude_deg": "-42.226667", + "longitude_deg": "-72.693611", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "El Chaiten", + "scheduled_service": "no", + "gps_code": "SCYO" + }, + { + "id": "39326", + "ident": "SCYR", + "type": "small_airport", + "name": "Los Maitenes Airport", + "latitude_deg": "-36.03166580200195", + "longitude_deg": "-71.7411117553711", + "elevation_ft": "538", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Retiro", + "scheduled_service": "no", + "gps_code": "SCYR" + }, + { + "id": "45081", + "ident": "SCYU", + "type": "small_airport", + "name": "Cuyumaique Airport", + "latitude_deg": "-40.940556", + "longitude_deg": "-73.011667", + "elevation_ft": "443", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Purranque", + "scheduled_service": "no", + "gps_code": "SCYU" + }, + { + "id": "45082", + "ident": "SCZB", + "type": "small_airport", + "name": "Pozo Brujo Airport", + "latitude_deg": "-40.205278", + "longitude_deg": "-72.568056", + "elevation_ft": "394", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "La Unión", + "scheduled_service": "no", + "gps_code": "SCZB" + }, + { + "id": "39327", + "ident": "SCZC", + "type": "small_airport", + "name": "Casas Viejas Airport", + "latitude_deg": "-32.59527587890625", + "longitude_deg": "-71.34722137451172", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Zapallar", + "scheduled_service": "no", + "gps_code": "SCZC" + }, + { + "id": "39328", + "ident": "SCZE", + "type": "small_airport", + "name": "Estero Seco Airport", + "latitude_deg": "-33.744998931884766", + "longitude_deg": "-70.54944610595703", + "elevation_ft": "2461", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Pirque", + "scheduled_service": "no", + "gps_code": "SCZE" + }, + { + "id": "348807", + "ident": "SCZR", + "type": "small_airport", + "name": "Los Zorrillos de Tonlemu", + "latitude_deg": "-35.096246", + "longitude_deg": "-71.732719", + "elevation_ft": "285", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Curepto", + "scheduled_service": "no", + "gps_code": "SCZR" + }, + { + "id": "41135", + "ident": "SD-0001", + "type": "medium_airport", + "name": "Wadi Seidna Air Base", + "latitude_deg": "15.815213", + "longitude_deg": "32.51401", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-03", + "municipality": "Karari al-Balad", + "scheduled_service": "no", + "local_code": "HSOM", + "keywords": "Wadi Saidna, Wadi Sayyidna" + }, + { + "id": "315527", + "ident": "SD-0002", + "type": "heliport", + "name": "Zalengei Heliport", + "latitude_deg": "12.9029", + "longitude_deg": "23.4635", + "elevation_ft": "2955", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-12", + "municipality": "Zalengei", + "scheduled_service": "no" + }, + { + "id": "318344", + "ident": "SD-0003", + "type": "small_airport", + "name": "Kutum Airport", + "latitude_deg": "14.220586", + "longitude_deg": "24.633616", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-02", + "municipality": "Kutum", + "scheduled_service": "no" + }, + { + "id": "318353", + "ident": "SD-0004", + "type": "small_airport", + "name": "Gereida Airport", + "latitude_deg": "11.256023", + "longitude_deg": "25.143714", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-11", + "municipality": "Gereida", + "scheduled_service": "no" + }, + { + "id": "343526", + "ident": "SD-0005", + "type": "small_airport", + "name": "Jabal Burqat Karkor Airport", + "latitude_deg": "19.60021", + "longitude_deg": "33.32162", + "elevation_ft": "1097", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-04", + "municipality": "Abu Hamad", + "scheduled_service": "no" + }, + { + "id": "330405", + "ident": "SD-0006", + "type": "small_airport", + "name": "Songo Airstrip", + "latitude_deg": "9.774332", + "longitude_deg": "24.306231", + "elevation_ft": "1813", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-11", + "municipality": "Songo", + "scheduled_service": "no", + "keywords": "Radom National Park" + }, + { + "id": "349403", + "ident": "SD-0007", + "type": "small_airport", + "name": "Abu Hamad Airport", + "latitude_deg": "19.56507", + "longitude_deg": "33.31448", + "elevation_ft": "1086", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-04", + "municipality": "Abu Hamad", + "scheduled_service": "no" + }, + { + "id": "351445", + "ident": "SD-0008", + "type": "heliport", + "name": "Muhandiseen Military Hospital Heliport", + "latitude_deg": "15.61515", + "longitude_deg": "32.48534", + "elevation_ft": "1263", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-03", + "municipality": "Omdurman", + "scheduled_service": "no" + }, + { + "id": "351450", + "ident": "SD-0009", + "type": "small_airport", + "name": "Kenana Air Base", + "latitude_deg": "13.089439", + "longitude_deg": "32.853462", + "elevation_ft": "1270", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-08", + "municipality": "Sifeiya", + "scheduled_service": "no" + }, + { + "id": "351451", + "ident": "SD-0010", + "type": "closed", + "name": "BAPCO Pump Station Number 2 Airport", + "latitude_deg": "12.5058", + "longitude_deg": "32.83324", + "elevation_ft": "1278", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-08", + "municipality": "Al Jabalayn", + "scheduled_service": "no" + }, + { + "id": "351452", + "ident": "SD-0011", + "type": "heliport", + "name": "FDOC Base Camp Heliport", + "latitude_deg": "12.49281", + "longitude_deg": "32.85269", + "elevation_ft": "1280", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-08", + "municipality": "Al Jabalayn", + "scheduled_service": "no" + }, + { + "id": "351485", + "ident": "SD-0012", + "type": "heliport", + "name": "Shendi Heliport", + "latitude_deg": "16.71051", + "longitude_deg": "33.4459", + "elevation_ft": "1194", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-04", + "municipality": "Shendi", + "scheduled_service": "no" + }, + { + "id": "351526", + "ident": "SD-0013", + "type": "small_airport", + "name": "Sinjah Airport", + "latitude_deg": "13.31905", + "longitude_deg": "33.61347", + "elevation_ft": "1480", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-25", + "municipality": "Nauraniya", + "scheduled_service": "no" + }, + { + "id": "355052", + "ident": "SD-0014", + "type": "small_airport", + "name": "Al Hawatah Airport", + "latitude_deg": "13.448558", + "longitude_deg": "34.621427", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-06", + "municipality": "Al Hawatah", + "scheduled_service": "no", + "keywords": "HSEU" + }, + { + "id": "356140", + "ident": "SD-0015", + "type": "small_airport", + "name": "Al Jazirah Agricultural Airport", + "latitude_deg": "14.295991", + "longitude_deg": "33.547225", + "elevation_ft": "1355", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-07", + "municipality": "Wad Medani", + "scheduled_service": "no" + }, + { + "id": "356223", + "ident": "SD-0016", + "type": "small_airport", + "name": "Abri Airport", + "latitude_deg": "20.77819", + "longitude_deg": "30.3489", + "elevation_ft": "692", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-01", + "municipality": "Abri", + "scheduled_service": "no" + }, + { + "id": "430119", + "ident": "SD-0017", + "type": "closed", + "name": "New Khartoum Airport (under construction)", + "latitude_deg": "15.268851", + "longitude_deg": "32.357198", + "continent": "AF", + "iso_country": "SD", + "iso_region": "SD-03", + "municipality": "Al-Kamunab", + "scheduled_service": "no" + }, + { + "id": "24498", + "ident": "SD00", + "type": "small_airport", + "name": "Mj Aviation Ii Airport", + "latitude_deg": "42.6786994934082", + "longitude_deg": "-96.69889831542969", + "elevation_ft": "1115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Elk Point", + "scheduled_service": "no", + "gps_code": "SD00", + "local_code": "SD00" + }, + { + "id": "24499", + "ident": "SD01", + "type": "small_airport", + "name": "Mj Aviation I Airport", + "latitude_deg": "43.89970016479492", + "longitude_deg": "-98.10769653320312", + "elevation_ft": "1305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Letcher", + "scheduled_service": "no", + "gps_code": "SD01", + "local_code": "SD01" + }, + { + "id": "337231", + "ident": "SD02", + "type": "heliport", + "name": "Mogensmark Heliport", + "latitude_deg": "45.183056", + "longitude_deg": "-96.777778", + "elevation_ft": "1283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Twin Brooks", + "scheduled_service": "no", + "gps_code": "SD02", + "local_code": "SD02" + }, + { + "id": "24500", + "ident": "SD03", + "type": "small_airport", + "name": "Calico Field", + "latitude_deg": "44.050498962402344", + "longitude_deg": "-97.33509826660156", + "elevation_ft": "1750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Winfred", + "scheduled_service": "no", + "gps_code": "SD03", + "local_code": "SD03" + }, + { + "id": "337245", + "ident": "SD04", + "type": "small_airport", + "name": "Keystone XL Opal Heliport", + "latitude_deg": "45.02", + "longitude_deg": "-102.658889", + "elevation_ft": "3001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Opal", + "scheduled_service": "no", + "gps_code": "SD04", + "local_code": "SD04" + }, + { + "id": "24501", + "ident": "SD05", + "type": "small_airport", + "name": "Thorson Airfield", + "latitude_deg": "45.36853", + "longitude_deg": "-98.471888", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Warner", + "scheduled_service": "no", + "gps_code": "SD05", + "local_code": "SD05" + }, + { + "id": "325034", + "ident": "SD06", + "type": "heliport", + "name": "Faulkton Area Medical Center Heliport", + "latitude_deg": "45.030258", + "longitude_deg": "-99.133715", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Faulkton", + "scheduled_service": "no", + "gps_code": "SD06", + "local_code": "SD06" + }, + { + "id": "337246", + "ident": "SD07", + "type": "heliport", + "name": "Keystone XL Philip Heliport", + "latitude_deg": "44.056667", + "longitude_deg": "-101.674722", + "elevation_ft": "2338", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Philip", + "scheduled_service": "no", + "gps_code": "SD07", + "local_code": "SD07" + }, + { + "id": "24502", + "ident": "SD09", + "type": "heliport", + "name": "Mid-Dakota Hospital Heliport", + "latitude_deg": "43.78689956665039", + "longitude_deg": "-99.32649993896484", + "elevation_ft": "1735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Chamberlain", + "scheduled_service": "no", + "gps_code": "SD09", + "local_code": "SD09" + }, + { + "id": "344016", + "ident": "SD0E", + "type": "small_airport", + "name": "Fazenda Tangará Airport", + "latitude_deg": "-9.668485", + "longitude_deg": "-50.782555", + "elevation_ft": "689", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santana do Araguaia", + "scheduled_service": "no", + "gps_code": "SD0E", + "local_code": "PA0265" + }, + { + "id": "24503", + "ident": "SD1", + "type": "heliport", + "name": "Soldotna Hospital H Heliport", + "latitude_deg": "60.492637", + "longitude_deg": "-151.078967", + "elevation_ft": "99", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Soldotna", + "scheduled_service": "no", + "local_code": "SD1" + }, + { + "id": "24504", + "ident": "SD13", + "type": "small_airport", + "name": "Hofer Private Airport", + "latitude_deg": "44.866600036621094", + "longitude_deg": "-98.0719985961914", + "elevation_ft": "1368", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Doland", + "scheduled_service": "no", + "gps_code": "SD13", + "local_code": "SD13" + }, + { + "id": "24505", + "ident": "SD14", + "type": "small_airport", + "name": "Valburg Ranch Airport", + "latitude_deg": "43.733299255371094", + "longitude_deg": "-100.39800262451172", + "elevation_ft": "1688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Draper", + "scheduled_service": "no", + "gps_code": "SD14", + "local_code": "SD14" + }, + { + "id": "24506", + "ident": "SD17", + "type": "heliport", + "name": "Cdp Hospital Heliport", + "latitude_deg": "45.65800094604492", + "longitude_deg": "-97.05010223388672", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Sisseton", + "scheduled_service": "no", + "gps_code": "SD17", + "local_code": "SD17" + }, + { + "id": "327296", + "ident": "SD18", + "type": "heliport", + "name": "Keystone Adventures Heliport", + "latitude_deg": "43.916111", + "longitude_deg": "-103.441943", + "elevation_ft": "4969", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Rapid City", + "scheduled_service": "no", + "gps_code": "SD18", + "local_code": "SD18" + }, + { + "id": "24507", + "ident": "SD19", + "type": "small_airport", + "name": "Andersen Farms Airport", + "latitude_deg": "44.465301513671875", + "longitude_deg": "-97.22250366210938", + "elevation_ft": "1750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Badger", + "scheduled_service": "no", + "gps_code": "SD19", + "local_code": "SD19" + }, + { + "id": "337248", + "ident": "SD20", + "type": "heliport", + "name": "Crooked Lake Lodge Heliport", + "latitude_deg": "45.032936", + "longitude_deg": "-96.883486", + "elevation_ft": "1882", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Strandburg", + "scheduled_service": "no", + "gps_code": "SD20", + "local_code": "SD20" + }, + { + "id": "24508", + "ident": "SD21", + "type": "small_airport", + "name": "Hayes Emergency Airstrip", + "latitude_deg": "44.37080001831055", + "longitude_deg": "-101.00900268554688", + "elevation_ft": "1986", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Hayes", + "scheduled_service": "no", + "gps_code": "SD21", + "local_code": "SD21" + }, + { + "id": "24509", + "ident": "SD22", + "type": "closed", + "name": "Holy Infant Hospital Heliport", + "latitude_deg": "45.256402", + "longitude_deg": "-99.776198", + "elevation_ft": "1908", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Hoven", + "scheduled_service": "no", + "home_link": "http://losthospital.com/holy-infant-hospital-hoven-south-dakota/", + "keywords": "SD22" + }, + { + "id": "24510", + "ident": "SD23", + "type": "heliport", + "name": "Black Hills Health Care System Heliport", + "latitude_deg": "43.437336", + "longitude_deg": "-103.473305", + "elevation_ft": "3528", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Hot Springs", + "scheduled_service": "no", + "local_code": "SD23" + }, + { + "id": "24511", + "ident": "SD24", + "type": "small_airport", + "name": "Eden Valley Airport", + "latitude_deg": "44.446955", + "longitude_deg": "-103.398086", + "elevation_ft": "3070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Sturgis", + "scheduled_service": "no", + "local_code": "SD24", + "keywords": "Bruch Ranch" + }, + { + "id": "24512", + "ident": "SD25", + "type": "small_airport", + "name": "Rappe Field", + "latitude_deg": "45.45220184326172", + "longitude_deg": "-99.01229858398438", + "elevation_ft": "1521", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Ipswich", + "scheduled_service": "no", + "gps_code": "SD25", + "local_code": "SD25" + }, + { + "id": "24513", + "ident": "SD26", + "type": "heliport", + "name": "Mike Jacob Sturgis Heliport", + "latitude_deg": "44.416801", + "longitude_deg": "-103.449997", + "elevation_ft": "3280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Sturgis", + "scheduled_service": "no", + "local_code": "SD26" + }, + { + "id": "337179", + "ident": "SD27", + "type": "small_airport", + "name": "Black Hills Flyway Airport", + "latitude_deg": "43.367481", + "longitude_deg": "-103.551764", + "elevation_ft": "3997", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Hot Springs", + "scheduled_service": "no", + "gps_code": "SD27", + "local_code": "SD27" + }, + { + "id": "337180", + "ident": "SD28", + "type": "heliport", + "name": "Tumbleweed Lodge Heliport", + "latitude_deg": "44.460944", + "longitude_deg": "-99.742306", + "elevation_ft": "2001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Harrold", + "scheduled_service": "no", + "local_code": "SD28" + }, + { + "id": "24514", + "ident": "SD29", + "type": "closed", + "name": "Menno Airport", + "latitude_deg": "43.244401", + "longitude_deg": "-97.553101", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Menno", + "scheduled_service": "no", + "keywords": "SD29" + }, + { + "id": "342677", + "ident": "SD2B", + "type": "small_airport", + "name": "Fazenda Santa Edwirges Airport", + "latitude_deg": "-16.693637", + "longitude_deg": "-55.13625", + "elevation_ft": "581", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santo Antônio do Leverger", + "scheduled_service": "no", + "gps_code": "SD2B", + "local_code": "MT0555" + }, + { + "id": "342678", + "ident": "SD2C", + "type": "heliport", + "name": "A Tartaruga Heliport", + "latitude_deg": "-23.029701", + "longitude_deg": "-44.349253", + "elevation_ft": "92", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra dos Reis", + "scheduled_service": "no", + "gps_code": "SD2C", + "local_code": "RJ0256" + }, + { + "id": "342679", + "ident": "SD2D", + "type": "small_airport", + "name": "Fazenda São Mateus Airport", + "latitude_deg": "-12.255", + "longitude_deg": "-57.2575", + "elevation_ft": "1266", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Maringá", + "scheduled_service": "no", + "gps_code": "SD2D", + "local_code": "MT0637" + }, + { + "id": "342680", + "ident": "SD2E", + "type": "small_airport", + "name": "Fazenda Santa Ana Airport", + "latitude_deg": "-10.689722", + "longitude_deg": "-51.473056", + "elevation_ft": "715", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Confresa", + "scheduled_service": "no", + "gps_code": "SD2E", + "local_code": "MT0645" + }, + { + "id": "342682", + "ident": "SD2F", + "type": "small_airport", + "name": "Fazenda Planura Airstrip", + "latitude_deg": "-8.9575", + "longitude_deg": "-50.104167", + "elevation_ft": "673", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santa Maria das Barreiras", + "scheduled_service": "no", + "gps_code": "SD2F", + "local_code": "PA0259" + }, + { + "id": "342684", + "ident": "SD2G", + "type": "small_airport", + "name": "Linha Becker Airstrip", + "latitude_deg": "-27.109423", + "longitude_deg": "-53.777567", + "elevation_ft": "1099", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Itapiranga", + "scheduled_service": "no", + "gps_code": "SD2G", + "local_code": "SC0179" + }, + { + "id": "342687", + "ident": "SD2H", + "type": "heliport", + "name": "Torre Jequitibá Helipad", + "latitude_deg": "-23.625343", + "longitude_deg": "-46.705579", + "elevation_ft": "2795", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SD2H", + "local_code": "SP1090", + "keywords": "BMX Torre A2" + }, + { + "id": "342689", + "ident": "SD2I", + "type": "small_airport", + "name": "Estância Rancharia Aviação Airstrip", + "latitude_deg": "-22.175443", + "longitude_deg": "-50.909067", + "elevation_ft": "1617", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Rancharia", + "scheduled_service": "no", + "gps_code": "SD2I", + "local_code": "SP1296" + }, + { + "id": "342692", + "ident": "SD2J", + "type": "small_airport", + "name": "Fazenda Vale do Forquilha Airport", + "latitude_deg": "-13.004455", + "longitude_deg": "-50.982823", + "elevation_ft": "715", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cocalinho", + "scheduled_service": "no", + "gps_code": "SD2J", + "local_code": "MT0650" + }, + { + "id": "342694", + "ident": "SD2K", + "type": "small_airport", + "name": "Jotabasso Guiratinga Airport", + "latitude_deg": "-16.266389", + "longitude_deg": "-53.430278", + "elevation_ft": "2507", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Guiratinga", + "scheduled_service": "no", + "gps_code": "SD2K", + "local_code": "MT0672" + }, + { + "id": "342695", + "ident": "SD2L", + "type": "small_airport", + "name": "Fazenda Ágape Airstrip", + "latitude_deg": "-14.120833", + "longitude_deg": "-59.914167", + "elevation_ft": "889", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Lacerda", + "scheduled_service": "no", + "gps_code": "SD2L", + "local_code": "MT0630" + }, + { + "id": "343929", + "ident": "SD2M", + "type": "small_airport", + "name": "Fazenda do Taboado Airport", + "latitude_deg": "-20.196111", + "longitude_deg": "-51.075", + "elevation_ft": "1106", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aparecida do Taboado", + "scheduled_service": "no", + "gps_code": "SD2M", + "local_code": "MS0497" + }, + { + "id": "342122", + "ident": "SD2N", + "type": "small_airport", + "name": "Érico Veríssimo Airport", + "latitude_deg": "-28.720743", + "longitude_deg": "-53.645259", + "elevation_ft": "1457", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Cruz Alta", + "scheduled_service": "no", + "gps_code": "SD2N", + "local_code": "RS0178", + "keywords": "SSCF" + }, + { + "id": "342697", + "ident": "SD2O", + "type": "heliport", + "name": "Bethaville Empresarial Itú Heliport", + "latitude_deg": "-23.315912", + "longitude_deg": "-47.323136", + "elevation_ft": "2083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itu", + "scheduled_service": "no", + "gps_code": "SD2O", + "local_code": "SP1258", + "home_link": "http://www.bethaville.com/" + }, + { + "id": "342699", + "ident": "SD2P", + "type": "small_airport", + "name": "Fazenda São Gabriel Airstrip", + "latitude_deg": "-10.303156", + "longitude_deg": "-45.807742", + "elevation_ft": "2569", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Mateiros", + "scheduled_service": "no", + "gps_code": "SD2P", + "local_code": "TO0083" + }, + { + "id": "342705", + "ident": "SD2Q", + "type": "small_airport", + "name": "Fazenda Bom Jesus Airport", + "latitude_deg": "-21.710278", + "longitude_deg": "-56.309444", + "elevation_ft": "1230", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bela Vista", + "scheduled_service": "no", + "gps_code": "SD2Q", + "local_code": "MS0528" + }, + { + "id": "342712", + "ident": "SD2T", + "type": "small_airport", + "name": "Fazenda KPM Airstrip", + "latitude_deg": "-12.536124", + "longitude_deg": "-54.106361", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Paranatinga", + "scheduled_service": "no", + "gps_code": "SD2T", + "local_code": "MT0641" + }, + { + "id": "342601", + "ident": "SD2U", + "type": "heliport", + "name": "Portofino Rivera Villas Heliport", + "latitude_deg": "-3.919638", + "longitude_deg": "-38.330998", + "elevation_ft": "43", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Aquiraz", + "scheduled_service": "no", + "gps_code": "SD2U", + "local_code": "CE0137" + }, + { + "id": "343924", + "ident": "SD2V", + "type": "small_airport", + "name": "Fazenda Santo Antônio Airstrip", + "latitude_deg": "-12.911667", + "longitude_deg": "-55.845833", + "elevation_ft": "1345", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "gps_code": "SD2V", + "local_code": "MT0613" + }, + { + "id": "342714", + "ident": "SD2W", + "type": "small_airport", + "name": "Fazenda Aguapeí Airport", + "latitude_deg": "-21.212285", + "longitude_deg": "-50.944467", + "elevation_ft": "1489", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Valparaíso", + "scheduled_service": "no", + "gps_code": "SD2W", + "local_code": "SP1288" + }, + { + "id": "342716", + "ident": "SD2X", + "type": "small_airport", + "name": "Fazenda Santo Antônio Airstrip", + "latitude_deg": "-19.289761", + "longitude_deg": "-52.374738", + "elevation_ft": "1480", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Cassilândia", + "scheduled_service": "no", + "gps_code": "SD2X", + "local_code": "MS0477" + }, + { + "id": "343926", + "ident": "SD2Y", + "type": "small_airport", + "name": "Caminho do Lobo Airstrip", + "latitude_deg": "-13.708056", + "longitude_deg": "-59.772778", + "elevation_ft": "1939", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SD2Y", + "local_code": "MT0518" + }, + { + "id": "342717", + "ident": "SD2Z", + "type": "small_airport", + "name": "Fazenda Recanto Airport", + "latitude_deg": "-13.423979", + "longitude_deg": "-60.317929", + "elevation_ft": "942", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SD2Z", + "local_code": "MT0631" + }, + { + "id": "324426", + "ident": "SD30", + "type": "small_airport", + "name": "Selle Airport", + "latitude_deg": "43.071905", + "longitude_deg": "-98.954982", + "elevation_ft": "1988", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Bonesteel", + "scheduled_service": "no", + "gps_code": "SD30", + "local_code": "SD30" + }, + { + "id": "325820", + "ident": "SD32", + "type": "small_airport", + "name": "Braun Airport", + "latitude_deg": "45.434722", + "longitude_deg": "-98.444305", + "elevation_ft": "1305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Aberdeen", + "scheduled_service": "no", + "gps_code": "SD32", + "local_code": "SD32" + }, + { + "id": "24515", + "ident": "SD33", + "type": "small_airport", + "name": "Sky Ranch For Boys Airport", + "latitude_deg": "45.5", + "longitude_deg": "-104", + "elevation_ft": "3200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Camp Crook", + "scheduled_service": "no", + "gps_code": "SD33", + "local_code": "SD33" + }, + { + "id": "343933", + "ident": "SD34", + "type": "small_airport", + "name": "Ita Airstrip", + "latitude_deg": "-13.814167", + "longitude_deg": "-46.152222", + "elevation_ft": "3189", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Correntina", + "scheduled_service": "no", + "gps_code": "SD34", + "local_code": "BA0363" + }, + { + "id": "45783", + "ident": "SD35", + "type": "small_airport", + "name": "Bruch Airfield", + "latitude_deg": "44.494267", + "longitude_deg": "-103.395689", + "elevation_ft": "2980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Sturgis", + "scheduled_service": "no", + "gps_code": "SD35", + "local_code": "SD35" + }, + { + "id": "24516", + "ident": "SD36", + "type": "small_airport", + "name": "Booth Ranch Airport", + "latitude_deg": "45.12919998168945", + "longitude_deg": "-100.75599670410156", + "elevation_ft": "2250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Ridgeview", + "scheduled_service": "no", + "gps_code": "SD36", + "local_code": "SD36" + }, + { + "id": "24517", + "ident": "SD37", + "type": "small_airport", + "name": "Fiedler Airport", + "latitude_deg": "45.49610137939453", + "longitude_deg": "-100.00399780273438", + "elevation_ft": "1950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Selby", + "scheduled_service": "no", + "gps_code": "SD37", + "local_code": "SD37" + }, + { + "id": "343965", + "ident": "SD38", + "type": "small_airport", + "name": "Fazenda Esteios Airstrip", + "latitude_deg": "-9.729995", + "longitude_deg": "-65.642753", + "elevation_ft": "427", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Vista Alegre do Abunã", + "scheduled_service": "no", + "gps_code": "SD38", + "local_code": "RO0063" + }, + { + "id": "342769", + "ident": "SD39", + "type": "small_airport", + "name": "Pista Santa Rita", + "latitude_deg": "-5.50723", + "longitude_deg": "-56.568259", + "elevation_ft": "591", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Trairão", + "scheduled_service": "no", + "gps_code": "SD39", + "local_code": "PA0251" + }, + { + "id": "342786", + "ident": "SD3A", + "type": "small_airport", + "name": "Fazenda São Martinho Airstrip", + "latitude_deg": "-12.307531", + "longitude_deg": "-55.849349", + "elevation_ft": "1257", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "gps_code": "SD3A", + "local_code": "MT0666" + }, + { + "id": "342787", + "ident": "SD3B", + "type": "small_airport", + "name": "Fazenda Perdizes Airport", + "latitude_deg": "-11.638105", + "longitude_deg": "-56.263481", + "elevation_ft": "1194", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto dos Gaúchos", + "scheduled_service": "no", + "gps_code": "SD3B", + "local_code": "MT0575" + }, + { + "id": "342788", + "ident": "SD3C", + "type": "heliport", + "name": "Thera Corporate Helipad", + "latitude_deg": "-23.598889", + "longitude_deg": "-46.69", + "elevation_ft": "2644", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SD3C", + "local_code": "SP1329" + }, + { + "id": "342789", + "ident": "SD3E", + "type": "small_airport", + "name": "Fazenda Rio Madeira Airport", + "latitude_deg": "-9.642562", + "longitude_deg": "-64.837556", + "elevation_ft": "433", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Rio Madeira", + "scheduled_service": "no", + "gps_code": "SD3E", + "local_code": "RO0068" + }, + { + "id": "342796", + "ident": "SD3F", + "type": "heliport", + "name": "Matusa Heliport", + "latitude_deg": "-2.79621", + "longitude_deg": "-40.509238", + "elevation_ft": "62", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Jijoca de Jericoacoara", + "scheduled_service": "no", + "gps_code": "SD3F", + "local_code": "CE0107" + }, + { + "id": "342800", + "ident": "SD3G", + "type": "small_airport", + "name": "Fazenda Verde Airport", + "latitude_deg": "-16.589892", + "longitude_deg": "-54.859883", + "elevation_ft": "1834", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Rondonópolis", + "scheduled_service": "no", + "gps_code": "SD3G", + "local_code": "MT0671" + }, + { + "id": "342805", + "ident": "SD3H", + "type": "small_airport", + "name": "Fazenda Angola Airport", + "latitude_deg": "-9.805995", + "longitude_deg": "-51.870092", + "elevation_ft": "1014", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Rica", + "scheduled_service": "no", + "gps_code": "SD3H", + "local_code": "MT0675" + }, + { + "id": "342806", + "ident": "SD3I", + "type": "heliport", + "name": "Raízen Heliport", + "latitude_deg": "-22.695704", + "longitude_deg": "-47.618673", + "elevation_ft": "1736", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Piracicaba", + "scheduled_service": "no", + "gps_code": "SD3I", + "local_code": "SP1233" + }, + { + "id": "344010", + "ident": "SD3J", + "type": "small_airport", + "name": "Fazenda Santa Pilar Airstrip", + "latitude_deg": "-21.499444", + "longitude_deg": "-53.276944", + "elevation_ft": "1394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SD3J", + "local_code": "MS0484" + }, + { + "id": "343967", + "ident": "SD3L", + "type": "small_airport", + "name": "Manoel Rodrigues Airstrip", + "latitude_deg": "-5.448889", + "longitude_deg": "-40.2225", + "elevation_ft": "1181", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Independência", + "scheduled_service": "no", + "gps_code": "SD3L", + "local_code": "CE0148" + }, + { + "id": "343987", + "ident": "SD3M", + "type": "small_airport", + "name": "Fazenda São Francisco Airstrip", + "latitude_deg": "-14.973333", + "longitude_deg": "-57.425556", + "elevation_ft": "676", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra do Bugres", + "scheduled_service": "no", + "gps_code": "SD3M", + "local_code": "MT0685" + }, + { + "id": "343988", + "ident": "SD3N", + "type": "small_airport", + "name": "Aerounião Airstrip", + "latitude_deg": "-23.877778", + "longitude_deg": "-54.509722", + "elevation_ft": "1194", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Japorã", + "scheduled_service": "no", + "gps_code": "SD3N", + "local_code": "MS0492" + }, + { + "id": "345143", + "ident": "SD3P", + "type": "small_airport", + "name": "Fazenda Morando Airstrip", + "latitude_deg": "-22.085556", + "longitude_deg": "-52.851389", + "elevation_ft": "1188", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Anaurilândia", + "scheduled_service": "no", + "gps_code": "SD3P", + "local_code": "MS0503" + }, + { + "id": "343994", + "ident": "SD3Q", + "type": "small_airport", + "name": "Fazenda Panorama Airport", + "latitude_deg": "-13.400127", + "longitude_deg": "-46.10003", + "elevation_ft": "3058", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Correntina", + "scheduled_service": "no", + "gps_code": "SD3Q", + "local_code": "BA0290" + }, + { + "id": "343998", + "ident": "SD3R", + "type": "small_airport", + "name": "Fazenda Zohar Airstrip", + "latitude_deg": "-15.366667", + "longitude_deg": "-60.045556", + "elevation_ft": "755", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SD3R", + "local_code": "MT0639" + }, + { + "id": "342603", + "ident": "SD3S", + "type": "small_airport", + "name": "Fazenda Brasil Airstrip", + "latitude_deg": "-9.132778", + "longitude_deg": "-68.586709", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Sena Madureira", + "scheduled_service": "no", + "gps_code": "SD3S", + "local_code": "AC0017" + }, + { + "id": "342807", + "ident": "SD3T", + "type": "heliport", + "name": "Trimais Center Helipad", + "latitude_deg": "-23.478589", + "longitude_deg": "-46.610173", + "elevation_ft": "2785", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SD3T", + "local_code": "SP1254" + }, + { + "id": "344000", + "ident": "SD3U", + "type": "small_airport", + "name": "Idilia Lurdes Zandona Bedin Airport", + "latitude_deg": "-12.427696", + "longitude_deg": "-55.680445", + "elevation_ft": "1257", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "gps_code": "SD3U", + "local_code": "MT0689" + }, + { + "id": "344004", + "ident": "SD3V", + "type": "small_airport", + "name": "Fazenda Divisão Airport", + "latitude_deg": "-12.997275", + "longitude_deg": "-56.271327", + "elevation_ft": "1319", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Lucas do Rio Verde", + "scheduled_service": "no", + "gps_code": "SD3V", + "local_code": "MT0691" + }, + { + "id": "344006", + "ident": "SD3W", + "type": "small_airport", + "name": "Fazenda Rio Vermelho Airport", + "latitude_deg": "-13.681229", + "longitude_deg": "-60.205855", + "elevation_ft": "896", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SD3W", + "local_code": "MT0693" + }, + { + "id": "342808", + "ident": "SD3Y", + "type": "small_airport", + "name": "Rio Louro Airstrip", + "latitude_deg": "-22.293172", + "longitude_deg": "-41.759826", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Macaé", + "scheduled_service": "no", + "gps_code": "SD3Y", + "local_code": "RJ0350" + }, + { + "id": "344008", + "ident": "SD3Z", + "type": "small_airport", + "name": "Fazenda Eldorado Airport", + "latitude_deg": "-10.823056", + "longitude_deg": "-52.371389", + "elevation_ft": "1020", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São José do Xingu", + "scheduled_service": "no", + "gps_code": "SD3Z", + "local_code": "MT0516" + }, + { + "id": "24518", + "ident": "SD40", + "type": "heliport", + "name": "Rapid City Regional Hospital Heliport", + "latitude_deg": "44.05780029296875", + "longitude_deg": "-103.22599792480469", + "elevation_ft": "3354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Rapid City", + "scheduled_service": "no", + "gps_code": "SD40", + "local_code": "SD40" + }, + { + "id": "24519", + "ident": "SD41", + "type": "small_airport", + "name": "Shambo Ranch Airport", + "latitude_deg": "45.53329849243164", + "longitude_deg": "-101.83399963378906", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Lemmon", + "scheduled_service": "no", + "gps_code": "SD41", + "local_code": "SD41" + }, + { + "id": "24520", + "ident": "SD42", + "type": "closed", + "name": "Waltner & Richards Airport", + "latitude_deg": "43.566469", + "longitude_deg": "-97.538107", + "elevation_ft": "1403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Bridgewater", + "scheduled_service": "no", + "keywords": "SD42" + }, + { + "id": "24521", + "ident": "SD43", + "type": "small_airport", + "name": "Ingle Airport", + "latitude_deg": "44.23970031738281", + "longitude_deg": "-98.04969787597656", + "elevation_ft": "1305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Cavour", + "scheduled_service": "no", + "gps_code": "SD43", + "local_code": "SD43" + }, + { + "id": "24522", + "ident": "SD44", + "type": "small_airport", + "name": "Cook Field", + "latitude_deg": "43.78329849243164", + "longitude_deg": "-99.25759887695312", + "elevation_ft": "1678", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Chamberlain", + "scheduled_service": "no", + "gps_code": "SD44", + "local_code": "SD44" + }, + { + "id": "24523", + "ident": "SD45", + "type": "heliport", + "name": "Community Memorial Hospital Heliport", + "latitude_deg": "44.87120056152344", + "longitude_deg": "-98.52120208740234", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Redfield", + "scheduled_service": "no", + "gps_code": "SD45", + "local_code": "SD45" + }, + { + "id": "24524", + "ident": "SD46", + "type": "small_airport", + "name": "Jensen Airport", + "latitude_deg": "43.83330154418945", + "longitude_deg": "-96.85030364990234", + "elevation_ft": "1520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Dell Rapids", + "scheduled_service": "no", + "gps_code": "SD46", + "local_code": "SD46" + }, + { + "id": "24525", + "ident": "SD47", + "type": "small_airport", + "name": "Hunt Field", + "latitude_deg": "45.00279998779297", + "longitude_deg": "-101.21299743652344", + "elevation_ft": "2440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Eagle Butte", + "scheduled_service": "no", + "gps_code": "SD47", + "local_code": "SD47" + }, + { + "id": "24526", + "ident": "SD48", + "type": "small_airport", + "name": "Blomberg 42 Ranch Private Airport", + "latitude_deg": "45.20000076293945", + "longitude_deg": "-102.6500015258789", + "elevation_ft": "2610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Faith", + "scheduled_service": "no", + "gps_code": "SD48", + "local_code": "SD48" + }, + { + "id": "24527", + "ident": "SD49", + "type": "small_airport", + "name": "Hite Private Airport", + "latitude_deg": "45.287200927734375", + "longitude_deg": "-98.0542984008789", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Ferney", + "scheduled_service": "no", + "gps_code": "SD49", + "local_code": "SD49" + }, + { + "id": "345146", + "ident": "SD4A", + "type": "small_airport", + "name": "Agrícola Dall Olivo Airstrip", + "latitude_deg": "-28.029722", + "longitude_deg": "-51.520556", + "elevation_ft": "2697", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Lagoa Vermelha", + "scheduled_service": "no", + "gps_code": "SD4A", + "local_code": "RS0168" + }, + { + "id": "347127", + "ident": "SD4C", + "type": "heliport", + "name": "HELPN Anderson Franco Helipad", + "latitude_deg": "-19.4595", + "longitude_deg": "-42.571195", + "elevation_ft": "1096", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Ipatinga", + "scheduled_service": "no", + "gps_code": "SD4C", + "local_code": "MG0482" + }, + { + "id": "344026", + "ident": "SD4D", + "type": "small_airport", + "name": "Fazenda Ibicuí Airport", + "latitude_deg": "-29.753193", + "longitude_deg": "-55.155211", + "elevation_ft": "489", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Alegrete", + "scheduled_service": "no", + "gps_code": "SD4D", + "local_code": "RS0167" + }, + { + "id": "344027", + "ident": "SD4E", + "type": "small_airport", + "name": "Fazenda Seara Airport", + "latitude_deg": "-14.049243", + "longitude_deg": "-45.718871", + "elevation_ft": "2785", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Jaborandi", + "scheduled_service": "no", + "gps_code": "SD4E", + "local_code": "BA0364" + }, + { + "id": "344028", + "ident": "SD4F", + "type": "small_airport", + "name": "Fazenda Chapadão Airstrip", + "latitude_deg": "-13.924428", + "longitude_deg": "-59.492963", + "elevation_ft": "2152", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SD4F", + "local_code": "MT0621" + }, + { + "id": "342604", + "ident": "SD4G", + "type": "small_airport", + "name": "Fazenda Chocolate Airstrip", + "latitude_deg": "-9.567788", + "longitude_deg": "-68.290944", + "elevation_ft": "610", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Bujari", + "scheduled_service": "no", + "gps_code": "SD4G", + "local_code": "AC0018" + }, + { + "id": "342834", + "ident": "SD4I", + "type": "heliport", + "name": "SAC Firearms Heliport", + "latitude_deg": "-23.279167", + "longitude_deg": "-47.336111", + "elevation_ft": "1854", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itu", + "scheduled_service": "no", + "gps_code": "SD4I", + "local_code": "SP0880", + "home_link": "https://www.basearmalite.com.br/" + }, + { + "id": "342835", + "ident": "SD4J", + "type": "small_airport", + "name": "Fazenda Ouro e Prata Airport", + "latitude_deg": "-21.852061", + "longitude_deg": "-56.862899", + "elevation_ft": "1289", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Caracol", + "scheduled_service": "no", + "gps_code": "SD4J", + "local_code": "MS0501" + }, + { + "id": "342836", + "ident": "SD4K", + "type": "heliport", + "name": "Hospital Estadual de Sorocaba Helipad", + "latitude_deg": "-23.526917", + "longitude_deg": "-47.519259", + "elevation_ft": "2060", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sorocaba", + "scheduled_service": "no", + "gps_code": "SD4K", + "local_code": "SP1316" + }, + { + "id": "344035", + "ident": "SD4M", + "type": "heliport", + "name": "IBR Heliport", + "latitude_deg": "-4.2644", + "longitude_deg": "-38.948", + "elevation_ft": "2828", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Guaramiranga", + "scheduled_service": "no", + "gps_code": "SD4M", + "local_code": "CE0145" + }, + { + "id": "342608", + "ident": "SD4N", + "type": "heliport", + "name": "Hospital de Urgência e Emergência de Rio Branco Helipad", + "latitude_deg": "-9.964465", + "longitude_deg": "-67.814441", + "elevation_ft": "591", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Rio Branco", + "scheduled_service": "no", + "gps_code": "SD4N", + "local_code": "AC0015" + }, + { + "id": "350232", + "ident": "SD4O", + "type": "small_airport", + "name": "Fazenda Entre Rios Airstrip", + "latitude_deg": "-16.710943", + "longitude_deg": "-47.521764", + "elevation_ft": "3314", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Cristalina", + "scheduled_service": "no", + "gps_code": "SD4O", + "local_code": "GO0274" + }, + { + "id": "342838", + "ident": "SD4Q", + "type": "heliport", + "name": "Fazenda Garrote I Heliport", + "latitude_deg": "-15.330833", + "longitude_deg": "-51.164167", + "elevation_ft": "876", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Britânia", + "scheduled_service": "no", + "gps_code": "SD4Q", + "local_code": "GO0291" + }, + { + "id": "342870", + "ident": "SD4S", + "type": "heliport", + "name": "São Salvador Alimentos Itaberaí Heliport", + "latitude_deg": "-16.0075", + "longitude_deg": "-49.798889", + "elevation_ft": "2306", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Itaberaí", + "scheduled_service": "no", + "gps_code": "SD4S", + "local_code": "GO0294" + }, + { + "id": "342872", + "ident": "SD4T", + "type": "heliport", + "name": "São Salvador Alimentos Nova Veneza Heliport", + "latitude_deg": "-16.37796", + "longitude_deg": "-49.29556", + "elevation_ft": "2733", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Nova Veneza", + "scheduled_service": "no", + "gps_code": "SD4T", + "local_code": "GO0293" + }, + { + "id": "343914", + "ident": "SD4U", + "type": "small_airport", + "name": "Ruaro Airport", + "latitude_deg": "-22.235392", + "longitude_deg": "-54.71424", + "elevation_ft": "1322", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Dourados", + "scheduled_service": "no", + "gps_code": "SD4U", + "local_code": "MS0498" + }, + { + "id": "343916", + "ident": "SD4V", + "type": "small_airport", + "name": "Socorro Airport", + "latitude_deg": "-22.560973", + "longitude_deg": "-46.545574", + "elevation_ft": "2592", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Socorro", + "scheduled_service": "no", + "gps_code": "SD4V", + "local_code": "SP1344" + }, + { + "id": "344038", + "ident": "SD4W", + "type": "small_airport", + "name": "Fazenda Realeza Airstrip", + "latitude_deg": "-20.697794", + "longitude_deg": "-54.631823", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "gps_code": "SD4W", + "local_code": "MS0545" + }, + { + "id": "343918", + "ident": "SD4X", + "type": "heliport", + "name": "Tedesco Heliport", + "latitude_deg": "-25.56651", + "longitude_deg": "-52.997222", + "elevation_ft": "1371", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "São Jorge d'Oeste", + "scheduled_service": "no", + "gps_code": "SD4X", + "local_code": "PR0204" + }, + { + "id": "343920", + "ident": "SD4Y", + "type": "small_airport", + "name": "Fazenda Vista Alegre Airstrip", + "latitude_deg": "-16.770461", + "longitude_deg": "-44.792445", + "elevation_ft": "2149", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Ibiaí", + "scheduled_service": "no", + "gps_code": "SD4Y", + "local_code": "MG0487" + }, + { + "id": "343922", + "ident": "SD4Z", + "type": "small_airport", + "name": "Fazenda Santo Eugênio Airstrip", + "latitude_deg": "-19.334227", + "longitude_deg": "-56.720752", + "elevation_ft": "325", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SD4Z", + "local_code": "MS0539" + }, + { + "id": "24528", + "ident": "SD50", + "type": "small_airport", + "name": "Harrold Municipal Airport", + "latitude_deg": "44.53089904789999", + "longitude_deg": "-99.74749755859999", + "elevation_ft": "1787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Harrold", + "scheduled_service": "no", + "gps_code": "SD50", + "local_code": "SD50" + }, + { + "id": "24529", + "ident": "SD52", + "type": "heliport", + "name": "Avera Queen of Peace Hospital Heliport", + "latitude_deg": "43.7140998840332", + "longitude_deg": "-98.00869750976562", + "elevation_ft": "1386", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Mitchell", + "scheduled_service": "no", + "gps_code": "SD52", + "local_code": "SD52" + }, + { + "id": "24530", + "ident": "SD53", + "type": "small_airport", + "name": "Howard Field", + "latitude_deg": "42.90639877319336", + "longitude_deg": "-96.81079864501953", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Beresford", + "scheduled_service": "no", + "gps_code": "SD53", + "local_code": "SD53" + }, + { + "id": "24531", + "ident": "SD54", + "type": "heliport", + "name": "Avera St. Luke's Hospital Heliport", + "latitude_deg": "45.46187", + "longitude_deg": "-98.47681", + "elevation_ft": "1308", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Aberdeen", + "scheduled_service": "no", + "gps_code": "SD54", + "local_code": "SD54", + "keywords": "St. Luke's MRMC Heliport" + }, + { + "id": "24532", + "ident": "SD55", + "type": "small_airport", + "name": "Winter Airfield", + "latitude_deg": "44.315799713134766", + "longitude_deg": "-98.27330017089844", + "elevation_ft": "1323", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Huron", + "scheduled_service": "no", + "gps_code": "SD55", + "local_code": "SD55" + }, + { + "id": "24533", + "ident": "SD56", + "type": "closed", + "name": "Ralph Myers Airport", + "latitude_deg": "44.8666", + "longitude_deg": "-99.617104", + "elevation_ft": "1900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Onida", + "scheduled_service": "no", + "keywords": "SD56" + }, + { + "id": "24534", + "ident": "SD57", + "type": "small_airport", + "name": "W L Thompson Airport", + "latitude_deg": "44.56660079956055", + "longitude_deg": "-100.75", + "elevation_ft": "2113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Pierre", + "scheduled_service": "no", + "gps_code": "SD57", + "local_code": "SD57" + }, + { + "id": "24535", + "ident": "SD58", + "type": "heliport", + "name": "Burke Hospital Heliport", + "latitude_deg": "43.18190002441406", + "longitude_deg": "-99.29329681396484", + "elevation_ft": "2210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Burke", + "scheduled_service": "no", + "gps_code": "SD58", + "local_code": "SD58" + }, + { + "id": "24536", + "ident": "SD59", + "type": "closed", + "name": "Carr Airport", + "latitude_deg": "45.533171", + "longitude_deg": "-102.814968", + "elevation_ft": "2886", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Prairie City", + "scheduled_service": "no", + "keywords": "SD59" + }, + { + "id": "24537", + "ident": "SD60", + "type": "small_airport", + "name": "Ike John Private Airport", + "latitude_deg": "45.400001525878906", + "longitude_deg": "-102.7959976196289", + "elevation_ft": "2756", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Strool/Prairie City", + "scheduled_service": "no", + "gps_code": "SD60", + "local_code": "SD60" + }, + { + "id": "24538", + "ident": "SD61", + "type": "small_airport", + "name": "Plihal Farms Airport", + "latitude_deg": "43.016700744628906", + "longitude_deg": "-97.86699676513672", + "elevation_ft": "1435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Tyndall", + "scheduled_service": "no", + "gps_code": "SD61", + "local_code": "SD61" + }, + { + "id": "24539", + "ident": "SD62", + "type": "closed", + "name": "Schaller Airport", + "latitude_deg": "45.25", + "longitude_deg": "-98.167", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Verdon", + "scheduled_service": "no", + "keywords": "SD62" + }, + { + "id": "24540", + "ident": "SD63", + "type": "heliport", + "name": "Custer Heliport", + "latitude_deg": "43.76219940185547", + "longitude_deg": "-103.60800170898438", + "elevation_ft": "5334", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Custer", + "scheduled_service": "no", + "gps_code": "SD63", + "local_code": "SD63" + }, + { + "id": "24541", + "ident": "SD64", + "type": "heliport", + "name": "Estelline Medical Clinic Heliport", + "latitude_deg": "44.5797004699707", + "longitude_deg": "-96.90080261230469", + "elevation_ft": "1659", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Estelline", + "scheduled_service": "no", + "gps_code": "SD64", + "local_code": "SD64" + }, + { + "id": "24542", + "ident": "SD65", + "type": "small_airport", + "name": "Whipple Ranch Airport", + "latitude_deg": "45.43769836425781", + "longitude_deg": "-96.99980163574219", + "elevation_ft": "1462", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Wilmot", + "scheduled_service": "no", + "gps_code": "SD65", + "local_code": "SD65" + }, + { + "id": "24543", + "ident": "SD66", + "type": "small_airport", + "name": "Cooks Airport", + "latitude_deg": "43.97330093383789", + "longitude_deg": "-101.9520034790039", + "elevation_ft": "2456", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Cottonwood", + "scheduled_service": "no", + "gps_code": "SD66", + "local_code": "SD66" + }, + { + "id": "24544", + "ident": "SD67", + "type": "heliport", + "name": "Flandreau Medical Center Heliport", + "latitude_deg": "44.051601409899995", + "longitude_deg": "-96.5920028687", + "elevation_ft": "1570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Flandreau", + "scheduled_service": "no", + "gps_code": "SD67", + "local_code": "SD67" + }, + { + "id": "24545", + "ident": "SD68", + "type": "small_airport", + "name": "Flying T Airport", + "latitude_deg": "43.384700775146484", + "longitude_deg": "-103.43099975585938", + "elevation_ft": "3675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Hot Springs", + "scheduled_service": "no", + "gps_code": "SD68", + "local_code": "SD68" + }, + { + "id": "24546", + "ident": "SD69", + "type": "heliport", + "name": "Badlands Heliport", + "latitude_deg": "43.78329849243164", + "longitude_deg": "-101.89600372314453", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Interior", + "scheduled_service": "no", + "gps_code": "SD69", + "local_code": "SD69" + }, + { + "id": "342609", + "ident": "SD6A", + "type": "small_airport", + "name": "Todeschini Airstrip", + "latitude_deg": "-30.5475", + "longitude_deg": "-52.8975", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Cachoeira do Sul", + "scheduled_service": "no", + "gps_code": "SD6A", + "local_code": "RS0175" + }, + { + "id": "344071", + "ident": "SD6B", + "type": "small_airport", + "name": "Fazenda Chapadão", + "latitude_deg": "-9.93461", + "longitude_deg": "-53.767746", + "elevation_ft": "1135", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Peixoto de Azevedo", + "scheduled_service": "no", + "gps_code": "SD6B", + "local_code": "MT0696" + }, + { + "id": "344077", + "ident": "SD6D", + "type": "heliport", + "name": "Granitos.com Heliport", + "latitude_deg": "-28.662867", + "longitude_deg": "-51.740627", + "elevation_ft": "2031", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Nova Araçá", + "scheduled_service": "no", + "gps_code": "SD6D", + "local_code": "RS0180" + }, + { + "id": "344105", + "ident": "SD6E", + "type": "small_airport", + "name": "Combate Aviação Agrícola Airstrip", + "latitude_deg": "-17.750567", + "longitude_deg": "-49.779031", + "elevation_ft": "2457", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Vicentinópolis", + "scheduled_service": "no", + "gps_code": "SD6E", + "local_code": "GO0244" + }, + { + "id": "344107", + "ident": "SD6F", + "type": "heliport", + "name": "Hospital Estadual de São José dos Campos Helipad", + "latitude_deg": "-23.238596", + "longitude_deg": "-45.908046", + "elevation_ft": "2011", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São José dos Campos", + "scheduled_service": "no", + "gps_code": "SD6F", + "local_code": "SP1313" + }, + { + "id": "344108", + "ident": "SD6G", + "type": "small_airport", + "name": "Fazenda Esplanada Airstrip", + "latitude_deg": "-12.213333", + "longitude_deg": "-48.555833", + "elevation_ft": "915", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Peixe", + "scheduled_service": "no", + "gps_code": "SD6G", + "local_code": "TO0079" + }, + { + "id": "344112", + "ident": "SD6H", + "type": "small_airport", + "name": "Fazenda Hill Valley Airport", + "latitude_deg": "-29.563301", + "longitude_deg": "-51.374597", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "São Sebastião do Caí", + "scheduled_service": "no", + "gps_code": "SD6H", + "local_code": "RS0179" + }, + { + "id": "344527", + "ident": "SD6I", + "type": "heliport", + "name": "Ninho do Pássaro II Heliport", + "latitude_deg": "-26.713563", + "longitude_deg": "-48.913335", + "elevation_ft": "200", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Luiz Alves", + "scheduled_service": "no", + "gps_code": "SD6I", + "local_code": "SC0111" + }, + { + "id": "344536", + "ident": "SD6J", + "type": "small_airport", + "name": "Fazenda Fortaleza Airstrip", + "latitude_deg": "-11.174806", + "longitude_deg": "-57.244448", + "elevation_ft": "1004", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juara", + "scheduled_service": "no", + "gps_code": "SD6J", + "local_code": "MT0616" + }, + { + "id": "344543", + "ident": "SD6K", + "type": "small_airport", + "name": "Fazenda Guará Airstrip", + "latitude_deg": "-15.050319", + "longitude_deg": "-60.018426", + "elevation_ft": "804", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SD6K", + "local_code": "MT0688" + }, + { + "id": "344645", + "ident": "SD6L", + "type": "small_airport", + "name": "Fazenda Paraíso Airstrip", + "latitude_deg": "-20.820278", + "longitude_deg": "-53.422778", + "elevation_ft": "1266", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SD6L", + "local_code": "MS0558" + }, + { + "id": "344560", + "ident": "SD6M", + "type": "heliport", + "name": "Parque da Cidade Torre B1", + "latitude_deg": "-23.625", + "longitude_deg": "-46.705", + "elevation_ft": "2746", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SD6M", + "local_code": "SP1094" + }, + { + "id": "344659", + "ident": "SD6N", + "type": "small_airport", + "name": "Fazenda Chapadão Airport", + "latitude_deg": "-9.744952", + "longitude_deg": "-54.016668", + "elevation_ft": "1168", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Matupá", + "scheduled_service": "no", + "gps_code": "SD6N", + "local_code": "MT0697", + "keywords": "Margarida" + }, + { + "id": "347115", + "ident": "SD6O", + "type": "heliport", + "name": "Pontal das Graças Heliport", + "latitude_deg": "-23.292658", + "longitude_deg": "-49.737586", + "elevation_ft": "2992", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Ribeirão Claro", + "scheduled_service": "no", + "gps_code": "SD6O", + "local_code": "PR0160" + }, + { + "id": "344660", + "ident": "SD6Q", + "type": "heliport", + "name": "Parque da Cidade Torre B2 Helipad", + "latitude_deg": "-23.624955", + "longitude_deg": "-46.704404", + "elevation_ft": "2703", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SD6Q", + "local_code": "SP1110" + }, + { + "id": "344567", + "ident": "SD6R", + "type": "heliport", + "name": "Parque da Cidade Torre B3 Helipad", + "latitude_deg": "-23.624886", + "longitude_deg": "-46.703643", + "elevation_ft": "2667", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SD6R", + "local_code": "SP1095" + }, + { + "id": "344661", + "ident": "SD6S", + "type": "small_airport", + "name": "Fazenda Torre III Airsrtip", + "latitude_deg": "-16.855913", + "longitude_deg": "-53.601046", + "elevation_ft": "2615", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alto Garças", + "scheduled_service": "no", + "gps_code": "SD6S", + "local_code": "MT0569" + }, + { + "id": "344662", + "ident": "SD6T", + "type": "small_airport", + "name": "Fazenda Santa Maria Airstrip", + "latitude_deg": "-20.869444", + "longitude_deg": "-54.429444", + "elevation_ft": "1654", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "gps_code": "SD6T", + "local_code": "MS0572" + }, + { + "id": "345087", + "ident": "SD6U", + "type": "small_airport", + "name": "Fazenda Brasnorte Airstrip", + "latitude_deg": "-12.69", + "longitude_deg": "-58.191111", + "elevation_ft": "1447", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SD6U", + "local_code": "MT0669" + }, + { + "id": "345151", + "ident": "SD6V", + "type": "small_airport", + "name": "Aeródromo Privado Fazenda Maringá III", + "latitude_deg": "-14.447571", + "longitude_deg": "-60.124823", + "elevation_ft": "669", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SD6V", + "local_code": "MT0497" + }, + { + "id": "347383", + "ident": "SD6W", + "type": "heliport", + "name": "Helisai Heliport", + "latitude_deg": "-27.680506", + "longitude_deg": "-48.765772", + "elevation_ft": "43", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Santo Amaro da Imperatriz", + "scheduled_service": "no", + "gps_code": "SD6W", + "local_code": "SC0194" + }, + { + "id": "345152", + "ident": "SD6X", + "type": "small_airport", + "name": "Malboro Airport", + "latitude_deg": "2.701879", + "longitude_deg": "-60.848301", + "elevation_ft": "269", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Boa Vista", + "scheduled_service": "no", + "gps_code": "SD6X", + "local_code": "RR0119" + }, + { + "id": "346119", + "ident": "SD6Y", + "type": "small_airport", + "name": "Fazenda Bom Retiro Airstrip", + "latitude_deg": "-9.358056", + "longitude_deg": "-67.789722", + "elevation_ft": "581", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Boca do Acre", + "scheduled_service": "no", + "gps_code": "SD6Y", + "local_code": "AM0096" + }, + { + "id": "346121", + "ident": "SD6Z", + "type": "small_airport", + "name": "VCM Airstrip", + "latitude_deg": "-23.220556", + "longitude_deg": "-50.6075", + "elevation_ft": "1371", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guararapes", + "scheduled_service": "no", + "gps_code": "SD6Z", + "local_code": "SP1303" + }, + { + "id": "24547", + "ident": "SD70", + "type": "closed", + "name": "Rushmore Heliport", + "latitude_deg": "43.887199", + "longitude_deg": "-103.426003", + "elevation_ft": "4400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Keystone", + "scheduled_service": "no", + "keywords": "SD70" + }, + { + "id": "24548", + "ident": "SD71", + "type": "small_airport", + "name": "Bogner Field", + "latitude_deg": "43.116600036621094", + "longitude_deg": "-103.36699676513672", + "elevation_ft": "3660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Oelrichs", + "scheduled_service": "no", + "gps_code": "SD71", + "local_code": "SD71" + }, + { + "id": "24549", + "ident": "SD72", + "type": "small_airport", + "name": "Vig Ranch Airfield", + "latitude_deg": "44.849998474121094", + "longitude_deg": "-102.58399963378906", + "elevation_ft": "2600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Opal", + "scheduled_service": "no", + "gps_code": "SD72", + "local_code": "SD72" + }, + { + "id": "24550", + "ident": "SD73", + "type": "closed", + "name": "Staben Strip", + "latitude_deg": "44.520802", + "longitude_deg": "-101.593002", + "elevation_ft": "2227", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Philip", + "scheduled_service": "no", + "keywords": "SD73" + }, + { + "id": "24551", + "ident": "SD74", + "type": "small_airport", + "name": "Vander Wal Private Airport", + "latitude_deg": "45.99549865722656", + "longitude_deg": "-100.3759994506836", + "elevation_ft": "1955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Pollock", + "scheduled_service": "no", + "gps_code": "SD74", + "local_code": "SD74" + }, + { + "id": "24552", + "ident": "SD75", + "type": "small_airport", + "name": "Livingston Airport", + "latitude_deg": "43.59109878540039", + "longitude_deg": "-98.4520034790039", + "elevation_ft": "1641", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Stickney", + "scheduled_service": "no", + "gps_code": "SD75", + "local_code": "SD75" + }, + { + "id": "24553", + "ident": "SD76", + "type": "small_airport", + "name": "Tennant Ranch Airport", + "latitude_deg": "45.82939910888672", + "longitude_deg": "-103.94499969482422", + "elevation_ft": "3090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Camp Crook", + "scheduled_service": "no", + "gps_code": "SD76", + "local_code": "SD76" + }, + { + "id": "24554", + "ident": "SD77", + "type": "closed", + "name": "Barber Strip", + "latitude_deg": "44.000301", + "longitude_deg": "-103.017997", + "elevation_ft": "3200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Rapid City", + "scheduled_service": "no", + "keywords": "SD77" + }, + { + "id": "24555", + "ident": "SD78", + "type": "small_airport", + "name": "Anderson Aerial Spraying Airport", + "latitude_deg": "43.9015007019043", + "longitude_deg": "-99.87889862060547", + "elevation_ft": "1750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Kennebec", + "scheduled_service": "no", + "gps_code": "SD78", + "local_code": "SD78" + }, + { + "id": "24556", + "ident": "SD79", + "type": "small_airport", + "name": "Monty Harer Airstrip", + "latitude_deg": "45.20140075683594", + "longitude_deg": "-99.83619689941406", + "elevation_ft": "1860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Hoven", + "scheduled_service": "no", + "gps_code": "SD79", + "local_code": "SD79" + }, + { + "id": "346958", + "ident": "SD7B", + "type": "small_airport", + "name": "Fazenda Bahia Airstrip", + "latitude_deg": "-0.755395", + "longitude_deg": "-55.053735", + "elevation_ft": "1578", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Alenquer", + "scheduled_service": "no", + "gps_code": "SD7B", + "local_code": "PA0272" + }, + { + "id": "344668", + "ident": "SD7C", + "type": "small_airport", + "name": "Serrinha Airport", + "latitude_deg": "-25.459637", + "longitude_deg": "-50.034378", + "elevation_ft": "2717", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Palmeira", + "scheduled_service": "no", + "gps_code": "SD7C", + "local_code": "PR0199" + }, + { + "id": "344696", + "ident": "SD7E", + "type": "small_airport", + "name": "Fazenda Canaã Airport", + "latitude_deg": "-4.960619", + "longitude_deg": "-42.792601", + "elevation_ft": "400", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Teresina", + "scheduled_service": "no", + "gps_code": "SD7E", + "local_code": "PI0080" + }, + { + "id": "344698", + "ident": "SD7F", + "type": "small_airport", + "name": "Fazenda Filipinas Airstrip", + "latitude_deg": "-10.783142", + "longitude_deg": "-68.569479", + "elevation_ft": "689", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Epitaciolândia", + "scheduled_service": "no", + "gps_code": "SD7F", + "local_code": "AC0019" + }, + { + "id": "346961", + "ident": "SD7G", + "type": "small_airport", + "name": "Fazenda Leyton Airport", + "latitude_deg": "-13.963333", + "longitude_deg": "-55.651111", + "elevation_ft": "1680", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Mutum", + "scheduled_service": "no", + "gps_code": "SD7G", + "local_code": "MT0718" + }, + { + "id": "344700", + "ident": "SD7I", + "type": "heliport", + "name": "Canto Grande Heliport", + "latitude_deg": "-27.187246", + "longitude_deg": "-48.507202", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Bombinhas", + "scheduled_service": "no", + "gps_code": "SD7I", + "local_code": "SC0198" + }, + { + "id": "344702", + "ident": "SD7J", + "type": "small_airport", + "name": "Estância Rio Branco Airport", + "latitude_deg": "-15.079722", + "longitude_deg": "-57.241389", + "elevation_ft": "604", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra do Bugres", + "scheduled_service": "no", + "gps_code": "SD7J", + "local_code": "MT0721" + }, + { + "id": "344704", + "ident": "SD7K", + "type": "heliport", + "name": "Barracuda Heliport", + "latitude_deg": "-14.28048", + "longitude_deg": "-38.984933", + "elevation_ft": "102", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Itacaré", + "scheduled_service": "no", + "gps_code": "SD7K", + "local_code": "BA0348" + }, + { + "id": "344712", + "ident": "SD7L", + "type": "small_airport", + "name": "Fazenda Tozzo I Airstrip", + "latitude_deg": "-13.393625", + "longitude_deg": "-58.001182", + "elevation_ft": "1696", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo do Parecis", + "scheduled_service": "no", + "gps_code": "SD7L", + "local_code": "MT0713" + }, + { + "id": "344721", + "ident": "SD7M", + "type": "small_airport", + "name": "Moinho Airport", + "latitude_deg": "-18.903074", + "longitude_deg": "-48.784112", + "elevation_ft": "2454", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Monte Alegre de Minas", + "scheduled_service": "no", + "gps_code": "SD7M", + "local_code": "MG0467" + }, + { + "id": "344722", + "ident": "SD7N", + "type": "small_airport", + "name": "Fazenda Lago Azul Airstrip", + "latitude_deg": "-21.953501", + "longitude_deg": "-54.814668", + "elevation_ft": "1073", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Itaporã", + "scheduled_service": "no", + "gps_code": "SD7N", + "local_code": "MS0529" + }, + { + "id": "350023", + "ident": "SD7O", + "type": "small_airport", + "name": "Giongo Participações - Fazenda Camila Airport", + "latitude_deg": "-13.734591", + "longitude_deg": "-53.616987", + "elevation_ft": "1722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Gaúcha do Norte", + "scheduled_service": "no", + "gps_code": "SD7O", + "local_code": "MT0769" + }, + { + "id": "344732", + "ident": "SD7P", + "type": "small_airport", + "name": "Fazenda Terra Madre Airstrip", + "latitude_deg": "-7.950556", + "longitude_deg": "-47.524444", + "elevation_ft": "728", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Barra do Ouro", + "scheduled_service": "no", + "gps_code": "SD7P", + "local_code": "TO0075" + }, + { + "id": "346963", + "ident": "SD7Q", + "type": "small_airport", + "name": "Fazenda Norton Airport", + "latitude_deg": "-8.423611", + "longitude_deg": "-45.923611", + "elevation_ft": "1614", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Tasso Fragoso", + "scheduled_service": "no", + "gps_code": "SD7Q", + "local_code": "MA0117" + }, + { + "id": "344734", + "ident": "SD7R", + "type": "heliport", + "name": "Refúgio das Garças Heliport.", + "latitude_deg": "-12.743425", + "longitude_deg": "-38.513335", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Candeias", + "scheduled_service": "no", + "gps_code": "SD7R", + "local_code": "BA0244" + }, + { + "id": "344736", + "ident": "SD7S", + "type": "small_airport", + "name": "Fazenda Guatambu Airport", + "latitude_deg": "-9.746181", + "longitude_deg": "-55.448171", + "elevation_ft": "1066", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Novo Mundo", + "scheduled_service": "no", + "gps_code": "SD7S", + "local_code": "MT0723" + }, + { + "id": "344745", + "ident": "SD7T", + "type": "heliport", + "name": "Base de Operações Aéreas da PRF Heliport", + "latitude_deg": "-29.9725", + "longitude_deg": "-51.176111", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Porto Alegre", + "scheduled_service": "no", + "gps_code": "SD7T", + "local_code": "RS0183" + }, + { + "id": "344782", + "ident": "SD7V", + "type": "heliport", + "name": "Ten. Brig. Ar Waldir de Vasconcelos Heliport", + "latitude_deg": "-22.981944", + "longitude_deg": "-43.378056", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SD7V", + "local_code": "RJ0318" + }, + { + "id": "346964", + "ident": "SD7X", + "type": "small_airport", + "name": "Fly Aviação Agrícola Airport", + "latitude_deg": "-12.139167", + "longitude_deg": "-56.1225", + "elevation_ft": "1260", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Ipiranga do Norte", + "scheduled_service": "no", + "gps_code": "SD7X", + "local_code": "MT0717" + }, + { + "id": "347117", + "ident": "SD7Y", + "type": "heliport", + "name": "Villa Pinheiro Heliport", + "latitude_deg": "-23.64", + "longitude_deg": "-47.370278", + "elevation_ft": "2805", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Piedade", + "scheduled_service": "no", + "gps_code": "SD7Y", + "local_code": "SP1323" + }, + { + "id": "347119", + "ident": "SD7Z", + "type": "small_airport", + "name": "Fazenda Tartus Airstrip", + "latitude_deg": "-6.252453", + "longitude_deg": "-47.149313", + "elevation_ft": "745", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Porto Franco", + "scheduled_service": "no", + "gps_code": "SD7Z", + "local_code": "MA0121" + }, + { + "id": "24557", + "ident": "SD80", + "type": "heliport", + "name": "Mobridge Regional Hospital Heliport", + "latitude_deg": "45.545799255371094", + "longitude_deg": "-100.4489974975586", + "elevation_ft": "1670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Mobridge", + "scheduled_service": "no", + "gps_code": "SD80", + "local_code": "SD80" + }, + { + "id": "24558", + "ident": "SD81", + "type": "small_airport", + "name": "Vivian Airport", + "latitude_deg": "43.931400299072266", + "longitude_deg": "-100.31500244140625", + "elevation_ft": "1920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Vivian", + "scheduled_service": "no", + "gps_code": "SD81", + "local_code": "SD81" + }, + { + "id": "24559", + "ident": "SD82", + "type": "closed", + "name": "Webster-Eneboe Airstrip", + "latitude_deg": "45.424999", + "longitude_deg": "-96.866997", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Wilmot", + "scheduled_service": "no", + "keywords": "SD82" + }, + { + "id": "24560", + "ident": "SD83", + "type": "small_airport", + "name": "Lee Airport", + "latitude_deg": "44.215599060058594", + "longitude_deg": "-97.60749816894531", + "elevation_ft": "1555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "De Smet", + "scheduled_service": "no", + "gps_code": "SD83", + "local_code": "SD83" + }, + { + "id": "24561", + "ident": "SD84", + "type": "small_airport", + "name": "Marone Airport", + "latitude_deg": "44.26580047607422", + "longitude_deg": "-98.12039947509766", + "elevation_ft": "1285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Huron", + "scheduled_service": "no", + "gps_code": "SD84", + "local_code": "SD84" + }, + { + "id": "45777", + "ident": "SD86", + "type": "heliport", + "name": "Monument Health Custer Hospital Heliport", + "latitude_deg": "43.772601", + "longitude_deg": "-103.593682", + "elevation_ft": "5300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Custer", + "scheduled_service": "no", + "gps_code": "SD86", + "local_code": "SD86", + "keywords": "Custer Regional Hospital" + }, + { + "id": "24562", + "ident": "SD87", + "type": "heliport", + "name": "Platte Community Memorial Hospital Heliport", + "latitude_deg": "43.3843994140625", + "longitude_deg": "-98.83560180664062", + "elevation_ft": "1618", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Platte", + "scheduled_service": "no", + "gps_code": "SD87", + "local_code": "SD87" + }, + { + "id": "24563", + "ident": "SD88", + "type": "closed", + "name": "Dunn Airport", + "latitude_deg": "45.389141", + "longitude_deg": "-102.00265", + "elevation_ft": "2467", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Bison", + "scheduled_service": "no", + "keywords": "SD88" + }, + { + "id": "24564", + "ident": "SD89", + "type": "small_airport", + "name": "Priebe Landing Strip", + "latitude_deg": "43.770599365234375", + "longitude_deg": "-99.2074966430664", + "elevation_ft": "1628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Pukwana", + "scheduled_service": "no", + "gps_code": "SD89", + "local_code": "SD89" + }, + { + "id": "345136", + "ident": "SD8A", + "type": "small_airport", + "name": "Agropecuária Antunes Airport", + "latitude_deg": "-22.744763", + "longitude_deg": "-55.232613", + "elevation_ft": "1634", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Laguna Carapã", + "scheduled_service": "no", + "gps_code": "SD8A", + "local_code": "MS0549" + }, + { + "id": "345171", + "ident": "SD8B", + "type": "small_airport", + "name": "Fazenda São Domingos Airport", + "latitude_deg": "-17.635", + "longitude_deg": "-56.355833", + "elevation_ft": "400", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SD8B", + "local_code": "MS0557" + }, + { + "id": "345173", + "ident": "SD8D", + "type": "heliport", + "name": "HDG Heliport", + "latitude_deg": "-16.734115", + "longitude_deg": "-49.155194", + "elevation_ft": "2264", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiânia", + "scheduled_service": "no", + "gps_code": "SD8D", + "local_code": "GO0301" + }, + { + "id": "345179", + "ident": "SD8E", + "type": "small_airport", + "name": "Fazenda Três Corações Airstrip", + "latitude_deg": "-7.424742", + "longitude_deg": "-50.781599", + "elevation_ft": "1125", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Bannach", + "scheduled_service": "no", + "gps_code": "SD8E", + "local_code": "PA0288" + }, + { + "id": "345181", + "ident": "SD8G", + "type": "small_airport", + "name": "Fazenda Tambaú Airstrip", + "latitude_deg": "-1.614735", + "longitude_deg": "-54.547679", + "elevation_ft": "404", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Alenquer", + "scheduled_service": "no", + "gps_code": "SD8G", + "local_code": "PA0287" + }, + { + "id": "345207", + "ident": "SD8J", + "type": "heliport", + "name": "Guarujá Golf Club Heliport", + "latitude_deg": "-23.970833", + "longitude_deg": "-46.194444", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarujá", + "scheduled_service": "no", + "gps_code": "SD8J", + "local_code": "SP1334" + }, + { + "id": "345209", + "ident": "SD8K", + "type": "small_airport", + "name": "Planalto da Conquista Airstrip", + "latitude_deg": "-14.690285", + "longitude_deg": "-40.456229", + "elevation_ft": "3051", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Planalto", + "scheduled_service": "no", + "gps_code": "SD8K", + "local_code": "BA0359" + }, + { + "id": "345211", + "ident": "SD8L", + "type": "heliport", + "name": "Heliponto da Base Naval do Rio de Janeiro", + "latitude_deg": "-22.870808", + "longitude_deg": "-43.135505", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Niterói", + "scheduled_service": "no", + "gps_code": "SD8L", + "local_code": "RJ9015" + }, + { + "id": "345213", + "ident": "SD8M", + "type": "heliport", + "name": "Fazenda Alegria - H Heliport", + "latitude_deg": "-4.334444", + "longitude_deg": "-45.359167", + "elevation_ft": "135", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Vitorino Freire", + "scheduled_service": "no", + "gps_code": "SD8M", + "local_code": "MA0116" + }, + { + "id": "345215", + "ident": "SD8N", + "type": "small_airport", + "name": "Fazenda Nova Era Agropecuária Airstrip", + "latitude_deg": "-15.356406", + "longitude_deg": "-60.105561", + "elevation_ft": "791", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SD8N", + "local_code": "MT0655" + }, + { + "id": "348141", + "ident": "SD8O", + "type": "small_airport", + "name": "Berço das Gerais Airport", + "latitude_deg": "-14.770743", + "longitude_deg": "-43.609586", + "elevation_ft": "1526", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Matias Cardoso", + "scheduled_service": "no", + "gps_code": "SD8O", + "local_code": "MG0497" + }, + { + "id": "347176", + "ident": "SD8P", + "type": "small_airport", + "name": "GAPS 1 Airport", + "latitude_deg": "-9.414194", + "longitude_deg": "-49.85009", + "elevation_ft": "650", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Caseara", + "scheduled_service": "no", + "gps_code": "SD8P", + "local_code": "TO0093" + }, + { + "id": "347177", + "ident": "SD8Q", + "type": "small_airport", + "name": "Aeroagrícola Tangará Airstrip", + "latitude_deg": "-20.685", + "longitude_deg": "-47.914167", + "elevation_ft": "2464", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Orlândia", + "scheduled_service": "no", + "gps_code": "SD8Q", + "local_code": "SP1312" + }, + { + "id": "347180", + "ident": "SD8R", + "type": "small_airport", + "name": "São José da Boa Vista I Airstrip", + "latitude_deg": "-12.365556", + "longitude_deg": "-58.334722", + "elevation_ft": "1099", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SD8R", + "local_code": "MT0690" + }, + { + "id": "347184", + "ident": "SD8S", + "type": "small_airport", + "name": "Fazenda Alegria – P Airstrip", + "latitude_deg": "-4.319444", + "longitude_deg": "-45.367778", + "elevation_ft": "167", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Vitorino Freire", + "scheduled_service": "no", + "gps_code": "SD8S", + "local_code": "MA0115" + }, + { + "id": "347237", + "ident": "SD8T", + "type": "small_airport", + "name": "Fazenda Araras Airstrip", + "latitude_deg": "-23.309444", + "longitude_deg": "-49.0725", + "elevation_ft": "2165", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itaí", + "scheduled_service": "no", + "gps_code": "SD8T", + "local_code": "SP1279" + }, + { + "id": "347238", + "ident": "SD8U", + "type": "small_airport", + "name": "UTIDA Airstrip", + "latitude_deg": "-13.337778", + "longitude_deg": "-58.006111", + "elevation_ft": "1654", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo do Parecis", + "scheduled_service": "no", + "gps_code": "SD8U", + "local_code": "MT0663" + }, + { + "id": "345398", + "ident": "SD8V", + "type": "small_airport", + "name": "Fazenda Campos Belos Airstrip", + "latitude_deg": "-5.57661", + "longitude_deg": "-48.06032", + "elevation_ft": "587", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Araguatins", + "scheduled_service": "no", + "gps_code": "SD8V", + "local_code": "TO0091" + }, + { + "id": "347239", + "ident": "SD8W", + "type": "small_airport", + "name": "Fazenda Palmeiras do Guaporé Airport", + "latitude_deg": "-15.235", + "longitude_deg": "-60.246389", + "elevation_ft": "906", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SD8W", + "local_code": "MT0656" + }, + { + "id": "347245", + "ident": "SD8X", + "type": "small_airport", + "name": "Canal SS Airport", + "latitude_deg": "-19.069226", + "longitude_deg": "-50.990664", + "elevation_ft": "1549", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Itarumã", + "scheduled_service": "no", + "gps_code": "SD8X", + "local_code": "GO0302" + }, + { + "id": "347257", + "ident": "SD8Y", + "type": "small_airport", + "name": "Fazenda São Pedro Airstrip", + "latitude_deg": "-4.8875", + "longitude_deg": "-47.220556", + "elevation_ft": "932", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Açailândia", + "scheduled_service": "no", + "gps_code": "SD8Y", + "local_code": "MA0120" + }, + { + "id": "347259", + "ident": "SD8Z", + "type": "small_airport", + "name": "Fazenda Tocantins Airstrip", + "latitude_deg": "-12.729049", + "longitude_deg": "-54.438111", + "elevation_ft": "1089", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Ubiratã", + "scheduled_service": "no", + "gps_code": "SD8Z", + "local_code": "MT0734" + }, + { + "id": "24565", + "ident": "SD90", + "type": "small_airport", + "name": "Mitchell's Strip", + "latitude_deg": "44.467544", + "longitude_deg": "-103.787042", + "elevation_ft": "3920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Spearfish", + "scheduled_service": "no", + "gps_code": "SD90", + "local_code": "SD90" + }, + { + "id": "24566", + "ident": "SD91", + "type": "heliport", + "name": "Star Aviation Nr 1 Heliport", + "latitude_deg": "44.46839904785156", + "longitude_deg": "-103.81199645996094", + "elevation_ft": "4025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Spearfish", + "scheduled_service": "no", + "gps_code": "SD91", + "local_code": "SD91" + }, + { + "id": "24567", + "ident": "SD92", + "type": "heliport", + "name": "Telstar Heliport", + "latitude_deg": "43.698299407958984", + "longitude_deg": "-98.02149963378906", + "elevation_ft": "1310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Mitchell", + "scheduled_service": "no", + "gps_code": "SD92", + "local_code": "SD92" + }, + { + "id": "24568", + "ident": "SD93", + "type": "small_airport", + "name": "Gary Myers Airport", + "latitude_deg": "44.864200592041016", + "longitude_deg": "-99.60639953613281", + "elevation_ft": "1930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Gettysburg", + "scheduled_service": "no", + "gps_code": "SD93", + "local_code": "SD93" + }, + { + "id": "24569", + "ident": "SD94", + "type": "small_airport", + "name": "Lundin Airport", + "latitude_deg": "44.99300003051758", + "longitude_deg": "-96.47699737548828", + "elevation_ft": "1186", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Revillo", + "scheduled_service": "no", + "gps_code": "SD94", + "local_code": "SD94" + }, + { + "id": "24570", + "ident": "SD96", + "type": "heliport", + "name": "Pioneer Memorial Hospital Heliport", + "latitude_deg": "43.17580032348633", + "longitude_deg": "-97.08419799804688", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Viborg", + "scheduled_service": "no", + "gps_code": "SD96", + "local_code": "SD96" + }, + { + "id": "24571", + "ident": "SD97", + "type": "small_airport", + "name": "Oller Airport", + "latitude_deg": "43.87779998779297", + "longitude_deg": "-100.36199951171875", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Vivian", + "scheduled_service": "no", + "gps_code": "SD97", + "local_code": "SD97" + }, + { + "id": "24572", + "ident": "SD98", + "type": "small_airport", + "name": "Barber Airport", + "latitude_deg": "44.462501525878906", + "longitude_deg": "-102.552001953125", + "elevation_ft": "2655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Enning", + "scheduled_service": "no", + "gps_code": "SD98", + "local_code": "SD98" + }, + { + "id": "24573", + "ident": "SD99", + "type": "closed", + "name": "Glawe's Airport", + "latitude_deg": "43.625159", + "longitude_deg": "-96.753096", + "elevation_ft": "1495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Sioux Falls", + "scheduled_service": "no", + "keywords": "SD99" + }, + { + "id": "347265", + "ident": "SD9A", + "type": "small_airport", + "name": "Caputi Airport", + "latitude_deg": "-12.719167", + "longitude_deg": "-60.2025", + "elevation_ft": "1821", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Vilhena", + "scheduled_service": "no", + "gps_code": "SD9A", + "local_code": "RO0070" + }, + { + "id": "345554", + "ident": "SD9B", + "type": "small_airport", + "name": "Fazenda Planada Airport", + "latitude_deg": "-7.564035", + "longitude_deg": "-56.711844", + "elevation_ft": "945", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SD9B", + "local_code": "PA0269" + }, + { + "id": "347267", + "ident": "SD9D", + "type": "small_airport", + "name": "Pista Girassol", + "latitude_deg": "-5.357596", + "longitude_deg": "-57.140031", + "elevation_ft": "423", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SD9D", + "local_code": "PA0294" + }, + { + "id": "347268", + "ident": "SD9E", + "type": "small_airport", + "name": "Fazenda Curuá Airstrip", + "latitude_deg": "-1.394722", + "longitude_deg": "-55.126111", + "elevation_ft": "230", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Alenquer", + "scheduled_service": "no", + "gps_code": "SD9E", + "local_code": "PA0274" + }, + { + "id": "347270", + "ident": "SD9F", + "type": "small_airport", + "name": "Fazenda Santa Tereza Airstrip", + "latitude_deg": "-9.224444", + "longitude_deg": "-68.840278", + "elevation_ft": "617", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Sena Madureira", + "scheduled_service": "no", + "gps_code": "SD9F", + "local_code": "AC0020" + }, + { + "id": "347272", + "ident": "SD9G", + "type": "small_airport", + "name": "Fazenda Maria da Penha Galletti Gava Airstrip", + "latitude_deg": "-2.065833", + "longitude_deg": "-56.4475", + "elevation_ft": "85", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Terra Santa", + "scheduled_service": "no", + "gps_code": "SD9G", + "local_code": "PA0271" + }, + { + "id": "346487", + "ident": "SD9H", + "type": "heliport", + "name": "Fazenda Floresta Heliport", + "latitude_deg": "-4.676264", + "longitude_deg": "-44.862449", + "elevation_ft": "187", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Igarapé Grande", + "scheduled_service": "no", + "gps_code": "SD9H", + "local_code": "MA0127" + }, + { + "id": "347274", + "ident": "SD9I", + "type": "small_airport", + "name": "Rancho Oliveira Airstrip", + "latitude_deg": "-7.047174", + "longitude_deg": "-55.365195", + "elevation_ft": "833", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Novo Progresso", + "scheduled_service": "no", + "gps_code": "SD9I", + "local_code": "PA0306" + }, + { + "id": "347276", + "ident": "SD9J", + "type": "heliport", + "name": "Frigorífico Nutribrás Heliport", + "latitude_deg": "-12.482347", + "longitude_deg": "-55.70901", + "elevation_ft": "1253", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "gps_code": "SD9J", + "local_code": "MT0733" + }, + { + "id": "347278", + "ident": "SD9K", + "type": "heliport", + "name": "Villa do Lago Heliport", + "latitude_deg": "-20.313875", + "longitude_deg": "-44.70866", + "elevation_ft": "2589", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Carmo do Cajuru", + "scheduled_service": "no", + "gps_code": "SD9K", + "local_code": "MG0491" + }, + { + "id": "346372", + "ident": "SD9L", + "type": "small_airport", + "name": "Aeroparque Paulo", + "latitude_deg": "-8.088011", + "longitude_deg": "-49.934211", + "elevation_ft": "702", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Redenção", + "scheduled_service": "no", + "gps_code": "SD9L", + "local_code": "PA0261" + }, + { + "id": "346139", + "ident": "SD9M", + "type": "small_airport", + "name": "Sítio Mequéns Airstrip", + "latitude_deg": "-13.095556", + "longitude_deg": "-62.387778", + "elevation_ft": "561", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Alta Floresta d'Oeste", + "scheduled_service": "no", + "gps_code": "SD9M", + "local_code": "RO0071" + }, + { + "id": "346137", + "ident": "SD9N", + "type": "heliport", + "name": "Bahia Blue Heliport", + "latitude_deg": "-16.499167", + "longitude_deg": "-39.071667", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Porto Seguro", + "scheduled_service": "no", + "gps_code": "SD9N", + "local_code": "BA0382" + }, + { + "id": "346135", + "ident": "SD9P", + "type": "small_airport", + "name": "Zo´é Airport", + "latitude_deg": "-0.327078", + "longitude_deg": "-55.837444", + "elevation_ft": "974", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Óbidos", + "scheduled_service": "no", + "gps_code": "SD9P", + "local_code": "PA0302" + }, + { + "id": "346133", + "ident": "SD9Q", + "type": "small_airport", + "name": "Arena Fly Airport", + "latitude_deg": "-19.019806", + "longitude_deg": "-48.334372", + "elevation_ft": "2799", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberlândia", + "scheduled_service": "no", + "gps_code": "SD9Q", + "local_code": "MG0495" + }, + { + "id": "346131", + "ident": "SD9R", + "type": "small_airport", + "name": "Fazenda Vitória Airport", + "latitude_deg": "-12.124603", + "longitude_deg": "-45.376239", + "elevation_ft": "2421", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Barreiras", + "scheduled_service": "no", + "gps_code": "SD9R", + "local_code": "BA0374" + }, + { + "id": "346489", + "ident": "SD9S", + "type": "small_airport", + "name": "Fazenda Madre Regina Airport", + "latitude_deg": "-11.844545", + "longitude_deg": "-45.793741", + "elevation_ft": "2562", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Barreiras", + "scheduled_service": "no", + "gps_code": "SD9S", + "local_code": "BA0343" + }, + { + "id": "346129", + "ident": "SD9T", + "type": "heliport", + "name": "Dias Branco Heliport", + "latitude_deg": "-4.431177", + "longitude_deg": "-37.780062", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortim", + "scheduled_service": "no", + "gps_code": "SD9T", + "local_code": "CE0139" + }, + { + "id": "346128", + "ident": "SD9U", + "type": "heliport", + "name": "Copobras Heliport", + "latitude_deg": "-28.32109", + "longitude_deg": "-49.183999", + "elevation_ft": "167", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "São Ludgero", + "scheduled_service": "no", + "gps_code": "SD9U", + "local_code": "SC0195" + }, + { + "id": "346126", + "ident": "SD9V", + "type": "small_airport", + "name": "Fazenda Touro Morto Airport", + "latitude_deg": "-19.915", + "longitude_deg": "-57.612222", + "elevation_ft": "282", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SD9V", + "local_code": "MS0513" + }, + { + "id": "346481", + "ident": "SD9X", + "type": "heliport", + "name": "Fazenda Aparecida Heliport", + "latitude_deg": "-21.039722", + "longitude_deg": "-48.5175", + "elevation_ft": "1893", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Bebedouro", + "scheduled_service": "no", + "gps_code": "SD9X", + "local_code": "SP1300" + }, + { + "id": "347291", + "ident": "SD9Y", + "type": "small_airport", + "name": "Noma Airstrip", + "latitude_deg": "-12.096198", + "longitude_deg": "-63.509715", + "elevation_ft": "538", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "São Francisco do Guaporé", + "scheduled_service": "no", + "gps_code": "SD9Y", + "local_code": "RO0072" + }, + { + "id": "346355", + "ident": "SD9Z", + "type": "small_airport", + "name": "Fazenda Independência Airport", + "latitude_deg": "-12.579633", + "longitude_deg": "-60.135748", + "elevation_ft": "2001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Vilhena", + "scheduled_service": "no", + "gps_code": "SD9Z", + "local_code": "RO0066" + }, + { + "id": "346124", + "ident": "SDA2", + "type": "heliport", + "name": "Attack Heliport", + "latitude_deg": "-19.597222", + "longitude_deg": "-43.881389", + "elevation_ft": "2438", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Lagoa Santa", + "scheduled_service": "no", + "gps_code": "SDA2", + "local_code": "MG0488" + }, + { + "id": "346483", + "ident": "SDA3", + "type": "small_airport", + "name": "Fazenda Serra Dourada Airport", + "latitude_deg": "-14.339912", + "longitude_deg": "-59.649242", + "elevation_ft": "873", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Lacerda", + "scheduled_service": "no", + "gps_code": "SDA3", + "local_code": "MT0716" + }, + { + "id": "347384", + "ident": "SDA6", + "type": "small_airport", + "name": "Porto Airstrip", + "latitude_deg": "-26.267222", + "longitude_deg": "-51.028889", + "elevation_ft": "2464", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Porto União", + "scheduled_service": "no", + "gps_code": "SDA6", + "local_code": "SC0184" + }, + { + "id": "347386", + "ident": "SDA7", + "type": "small_airport", + "name": "Fazenda Nossa Senhora Aparecida Airport", + "latitude_deg": "-15.178333", + "longitude_deg": "-57.706944", + "elevation_ft": "643", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Lambari d'Oeste", + "scheduled_service": "no", + "gps_code": "SDA7", + "local_code": "MT0727" + }, + { + "id": "346816", + "ident": "SDA8", + "type": "small_airport", + "name": "Fazenda Passagem Funda Airport", + "latitude_deg": "-13.959684", + "longitude_deg": "-46.103506", + "elevation_ft": "2772", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Correntina", + "scheduled_service": "no", + "gps_code": "SDA8", + "local_code": "BA0367" + }, + { + "id": "346814", + "ident": "SDA9", + "type": "small_airport", + "name": "Tijucas do Sul Airstrip", + "latitude_deg": "-25.873888", + "longitude_deg": "-49.175278", + "elevation_ft": "2966", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Tijucas do Sul", + "scheduled_service": "no", + "gps_code": "SDA9", + "local_code": "PR0207" + }, + { + "id": "141", + "ident": "SDAA", + "type": "small_airport", + "name": "Araras Airport", + "latitude_deg": "-22.338227", + "longitude_deg": "-47.357898", + "elevation_ft": "2247", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araras", + "scheduled_service": "no", + "gps_code": "SDAA", + "local_code": "SP0045" + }, + { + "id": "35420", + "ident": "SDAB", + "type": "closed", + "name": "Maju Heliport", + "latitude_deg": "-21.093179", + "longitude_deg": "-50.47971", + "elevation_ft": "1247", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araçatuba", + "scheduled_service": "no", + "keywords": "SDAB" + }, + { + "id": "35421", + "ident": "SDAC", + "type": "heliport", + "name": "Aché Heliport", + "latitude_deg": "-23.474943", + "longitude_deg": "-46.522154", + "elevation_ft": "2444", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarulhos", + "scheduled_service": "no", + "gps_code": "SDAC", + "local_code": "SP0286" + }, + { + "id": "142", + "ident": "SDAD", + "type": "small_airport", + "name": "Everaldo Moras Barreto Airport", + "latitude_deg": "-21.696275", + "longitude_deg": "-51.097509", + "elevation_ft": "1394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Adamantina", + "scheduled_service": "no", + "gps_code": "SDAD", + "local_code": "SP0046" + }, + { + "id": "35422", + "ident": "SDAE", + "type": "small_airport", + "name": "São Pedro Airport", + "latitude_deg": "-22.583127", + "longitude_deg": "-47.896111", + "elevation_ft": "1858", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Pedro", + "scheduled_service": "no", + "gps_code": "SDAE", + "local_code": "SP0053", + "wikipedia_link": "https://en.wikipedia.org/wiki/S%C3%A3o_Pedro_Airport_(Brazil)" + }, + { + "id": "143", + "ident": "SDAF", + "type": "small_airport", + "name": "Fazenda Palmeiras Airport", + "latitude_deg": "-22.1567", + "longitude_deg": "-47.719299", + "elevation_ft": "2802", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Analândia", + "scheduled_service": "no", + "gps_code": "SDAF", + "local_code": "SP0077" + }, + { + "id": "144", + "ident": "SDAG", + "type": "small_airport", + "name": "Angra dos Reis Airport", + "latitude_deg": "-22.9753", + "longitude_deg": "-44.307098", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra dos Reis", + "scheduled_service": "no", + "gps_code": "SDAG", + "local_code": "RJ0010", + "wikipedia_link": "https://en.wikipedia.org/wiki/Angra_dos_Reis_Airport" + }, + { + "id": "35423", + "ident": "SDAH", + "type": "heliport", + "name": "Signo Resgate Alphaville Heliport", + "latitude_deg": "-23.493536", + "longitude_deg": "-46.8483", + "elevation_ft": "2585", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SDAH", + "local_code": "SP0287", + "keywords": "Amil Resgate Heliport" + }, + { + "id": "145", + "ident": "SDAI", + "type": "small_airport", + "name": "Americana Airport", + "latitude_deg": "-22.7558", + "longitude_deg": "-47.269402", + "elevation_ft": "2085", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Americana", + "scheduled_service": "no", + "gps_code": "SDAI", + "local_code": "SP0047" + }, + { + "id": "146", + "ident": "SDAJ", + "type": "small_airport", + "name": "Fazenda Recanto Airport", + "latitude_deg": "-22.591303", + "longitude_deg": "-54.063315", + "elevation_ft": "1253", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Jateí", + "scheduled_service": "no", + "gps_code": "SDAJ", + "local_code": "MS0022" + }, + { + "id": "309750", + "ident": "SDAK", + "type": "heliport", + "name": "Solar das Paineiras Heliport", + "latitude_deg": "-22.2965", + "longitude_deg": "-46.8556", + "elevation_ft": "2427", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mogi Guaçu", + "scheduled_service": "no", + "gps_code": "SDAK", + "local_code": "SP0288" + }, + { + "id": "147", + "ident": "SDAL", + "type": "closed", + "name": "Fazenda Alamo Airport", + "latitude_deg": "-21.815201", + "longitude_deg": "-47.900678", + "elevation_ft": "2434", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sao Carlos", + "scheduled_service": "no" + }, + { + "id": "148", + "ident": "SDAM", + "type": "small_airport", + "name": "Estadual de Campos dos Amarais - Prefeito Francisco Amaral Airport", + "latitude_deg": "-22.859866", + "longitude_deg": "-47.107573", + "elevation_ft": "2008", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SDAM", + "local_code": "SP0037", + "home_link": "http://www.voa-sp.com.br/aeroporto/aeroporto-estadual-campo-do-amarais-prefeito-francisco-amaral/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Campo_dos_Amarais_Airport", + "keywords": "CPQ" + }, + { + "id": "35424", + "ident": "SDAN", + "type": "small_airport", + "name": "Fazenda Santo Ângelo Airport", + "latitude_deg": "-22.245274", + "longitude_deg": "-48.259931", + "elevation_ft": "1680", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Brotas", + "scheduled_service": "no", + "gps_code": "SDAN", + "local_code": "SP0078" + }, + { + "id": "313744", + "ident": "SDAO", + "type": "small_airport", + "name": "Fazenda Portela Airport", + "latitude_deg": "-14.025612", + "longitude_deg": "-56.543219", + "elevation_ft": "1522", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São José do Rio Claro", + "scheduled_service": "no", + "gps_code": "SDAO", + "local_code": "MT0029" + }, + { + "id": "35425", + "ident": "SDAP", + "type": "heliport", + "name": "Hospital Paulistano Helipad", + "latitude_deg": "-23.56528", + "longitude_deg": "-46.642225", + "elevation_ft": "2798", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDAP", + "local_code": "SP0290" + }, + { + "id": "35426", + "ident": "SDAQ", + "type": "heliport", + "name": "Centro Empresarial do Aço Heliport", + "latitude_deg": "-23.634496", + "longitude_deg": "-46.640063", + "elevation_ft": "2815", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SDAQ" + }, + { + "id": "35427", + "ident": "SDAR", + "type": "heliport", + "name": "Hotel Canto da Floresta Heliport", + "latitude_deg": "-22.748611", + "longitude_deg": "-46.685555", + "elevation_ft": "2825", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Amparo", + "scheduled_service": "no", + "keywords": "SDAR" + }, + { + "id": "149", + "ident": "SDAS", + "type": "small_airport", + "name": "Fazenda Santo Antônio Airport", + "latitude_deg": "-21.276203", + "longitude_deg": "-51.283088", + "elevation_ft": "1141", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mirandópolis", + "scheduled_service": "no", + "gps_code": "SDAS", + "local_code": "SP0079" + }, + { + "id": "309751", + "ident": "SDAT", + "type": "heliport", + "name": "Hospital e Maternidade Vitória Helipad", + "latitude_deg": "-23.56323", + "longitude_deg": "-46.561786", + "elevation_ft": "2602", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDAT", + "local_code": "SP0291" + }, + { + "id": "35428", + "ident": "SDAU", + "type": "small_airport", + "name": "Fazenda Itau Airport", + "latitude_deg": "-19.4685", + "longitude_deg": "-52.6214", + "elevation_ft": "1516", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Água Clara", + "scheduled_service": "no", + "gps_code": "SDAU", + "local_code": "MS0023" + }, + { + "id": "35429", + "ident": "SDAV", + "type": "closed", + "name": "Auxiliar I Heliport", + "latitude_deg": "-23.631945", + "longitude_deg": "-46.713614", + "elevation_ft": "2539", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SDAV" + }, + { + "id": "35430", + "ident": "SDAW", + "type": "heliport", + "name": "Banco Industrial Heliport", + "latitude_deg": "-23.591903", + "longitude_deg": "-46.68543", + "elevation_ft": "2461", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDAW", + "local_code": "SP0292" + }, + { + "id": "35431", + "ident": "SDAX", + "type": "heliport", + "name": "Bradesco - Sta Cecília Heliport", + "latitude_deg": "-23.539454", + "longitude_deg": "-46.649323", + "elevation_ft": "2549", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDAX", + "local_code": "SP0293" + }, + { + "id": "30509", + "ident": "SDAY", + "type": "small_airport", + "name": "Fazenda Altair Airport", + "latitude_deg": "-21.467199", + "longitude_deg": "-48.367199", + "elevation_ft": "2034", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santa Ernestina", + "scheduled_service": "no", + "keywords": "SDAY" + }, + { + "id": "35432", + "ident": "SDAZ", + "type": "heliport", + "name": "Fazenda Laranjeiras Heliport", + "latitude_deg": "-22.207386", + "longitude_deg": "-43.096355", + "elevation_ft": "1596", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Areal", + "scheduled_service": "no", + "gps_code": "SDOZ", + "local_code": "RJ0051", + "keywords": "SDAZ" + }, + { + "id": "346810", + "ident": "SDB2", + "type": "small_airport", + "name": "Fazenda Guarabu Airport", + "latitude_deg": "-7.35691", + "longitude_deg": "-48.804732", + "elevation_ft": "702", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Araguaína", + "scheduled_service": "no", + "gps_code": "SDB2", + "local_code": "TO0081" + }, + { + "id": "346812", + "ident": "SDB3", + "type": "small_airport", + "name": "AFG I Airport", + "latitude_deg": "-14.600279", + "longitude_deg": "-58.903478", + "elevation_ft": "2582", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vale de São Domingos", + "scheduled_service": "no", + "gps_code": "SDB3", + "local_code": "MT0624" + }, + { + "id": "346650", + "ident": "SDB4", + "type": "small_airport", + "name": "Fazenda Morumbi Airstrip", + "latitude_deg": "-11.889061", + "longitude_deg": "-51.909806", + "elevation_ft": "1073", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Bom Jesus do Araguaia", + "scheduled_service": "no", + "gps_code": "SDB4", + "local_code": "MT0701" + }, + { + "id": "346649", + "ident": "SDB6", + "type": "heliport", + "name": "Dal Amargosa Heliport", + "latitude_deg": "-13.041667", + "longitude_deg": "-39.595833", + "elevation_ft": "1247", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Amargosa", + "scheduled_service": "no", + "gps_code": "SDB6", + "local_code": "BA0379" + }, + { + "id": "346648", + "ident": "SDB7", + "type": "small_airport", + "name": "Fazenda Lagoa do Guaporé II Airport", + "latitude_deg": "-15.303611", + "longitude_deg": "-59.223056", + "elevation_ft": "1007", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes e Lacerda", + "scheduled_service": "no", + "gps_code": "SDB7", + "local_code": "MT0619" + }, + { + "id": "35433", + "ident": "SDBA", + "type": "small_airport", + "name": "Batatais Airport", + "latitude_deg": "-20.877218", + "longitude_deg": "-47.585757", + "elevation_ft": "2890", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Batatais", + "scheduled_service": "no", + "gps_code": "SDBA", + "local_code": "SP0063" + }, + { + "id": "150", + "ident": "SDBB", + "type": "small_airport", + "name": "Bebedouro Airport", + "latitude_deg": "-20.900252", + "longitude_deg": "-48.473547", + "elevation_ft": "1942", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Bebedouro", + "scheduled_service": "no", + "gps_code": "SDBB", + "local_code": "SP0018" + }, + { + "id": "35434", + "ident": "SDBC", + "type": "heliport", + "name": "Bradesco Alphaville Heliport", + "latitude_deg": "-23.487479", + "longitude_deg": "-46.857773", + "elevation_ft": "2546", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SDBC", + "local_code": "SP0294" + }, + { + "id": "309744", + "ident": "SDBE", + "type": "small_airport", + "name": "Biopalma Airport", + "latitude_deg": "-2.208", + "longitude_deg": "-48.8146", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Moju", + "scheduled_service": "no", + "gps_code": "SDBE", + "local_code": "PA0033" + }, + { + "id": "35435", + "ident": "SDBF", + "type": "heliport", + "name": "Porto Seguro Heliport", + "latitude_deg": "-23.530323", + "longitude_deg": "-46.64541", + "elevation_ft": "2575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDBF", + "local_code": "SP0295" + }, + { + "id": "35436", + "ident": "SDBG", + "type": "heliport", + "name": "Barra Green Heliport", + "latitude_deg": "-23.006633", + "longitude_deg": "-43.347282", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SDBG", + "local_code": "RJ0030" + }, + { + "id": "35437", + "ident": "SDBH", + "type": "heliport", + "name": "Bandeirantes Heliport", + "latitude_deg": "-23.595202", + "longitude_deg": "-46.710718", + "elevation_ft": "2641", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDBH", + "local_code": "SP0296" + }, + { + "id": "321018", + "ident": "SDBI", + "type": "small_airport", + "name": "Fazenda Piray Airport", + "latitude_deg": "-23.885222", + "longitude_deg": "-55.055907", + "elevation_ft": "1161", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Sete Quedas", + "scheduled_service": "no", + "gps_code": "SDBI", + "local_code": "MS0024" + }, + { + "id": "35439", + "ident": "SDBJ", + "type": "closed", + "name": "Jimenez Heliport", + "latitude_deg": "-23.709443", + "longitude_deg": "-47.425556", + "elevation_ft": "2658", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Piedade", + "scheduled_service": "no", + "keywords": "SDBJ" + }, + { + "id": "151", + "ident": "SDBK", + "type": "small_airport", + "name": "Botucatu - Tancredo de Almeida Neves Airport", + "latitude_deg": "-22.937765", + "longitude_deg": "-48.468161", + "elevation_ft": "3012", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Botucatu", + "scheduled_service": "no", + "gps_code": "SDBK", + "local_code": "SP0019", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Botucatu", + "keywords": "QCJ" + }, + { + "id": "35440", + "ident": "SDBL", + "type": "heliport", + "name": "BFC Heliport", + "latitude_deg": "-23.562178", + "longitude_deg": "-46.654054", + "elevation_ft": "2923", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDBL", + "local_code": "SP0297", + "keywords": "Banco Real SA" + }, + { + "id": "35441", + "ident": "SDBM", + "type": "heliport", + "name": "Hospital Beneficência Portuguesa Heliport", + "latitude_deg": "-23.567798", + "longitude_deg": "-46.641469", + "elevation_ft": "2782", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDBM", + "local_code": "SP0298" + }, + { + "id": "35442", + "ident": "SDBN", + "type": "small_airport", + "name": "Associação Recreativa Fazenda Bonanza Airport", + "latitude_deg": "-23.687623", + "longitude_deg": "-47.557561", + "elevation_ft": "2316", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Salto de Pirapora", + "scheduled_service": "no", + "gps_code": "SDBN", + "local_code": "SP0080" + }, + { + "id": "310715", + "ident": "SDBO", + "type": "heliport", + "name": "Morada Nova Heliport", + "latitude_deg": "-19.466255", + "longitude_deg": "-44.372855", + "elevation_ft": "2421", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Inhaúma", + "scheduled_service": "no", + "gps_code": "SDBO", + "local_code": "MG0212" + }, + { + "id": "152", + "ident": "SDBP", + "type": "small_airport", + "name": "Fazenda Pontal Airport", + "latitude_deg": "-15.736869", + "longitude_deg": "-51.116102", + "elevation_ft": "1351", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Santa Fé de Goiás", + "scheduled_service": "no", + "gps_code": "SDBP", + "local_code": "GO0036" + }, + { + "id": "309752", + "ident": "SDBQ", + "type": "heliport", + "name": "Hospital São Mateus Helipad", + "latitude_deg": "-3.741723", + "longitude_deg": "-38.480081", + "elevation_ft": "413", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SDBQ", + "local_code": "CE0026" + }, + { + "id": "35443", + "ident": "SDBR", + "type": "heliport", + "name": "Business Center Heliport", + "latitude_deg": "-23.596111", + "longitude_deg": "-46.68528", + "elevation_ft": "2608", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SDBR" + }, + { + "id": "35444", + "ident": "SDBS", + "type": "closed", + "name": "Os Bandeirantes Helipad", + "latitude_deg": "-23.576097", + "longitude_deg": "-46.687217", + "elevation_ft": "2579", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "local_code": "SP0300", + "keywords": "SDBS" + }, + { + "id": "35445", + "ident": "SDBT", + "type": "closed", + "name": "Banco de Boston Heliport", + "latitude_deg": "-23.544701", + "longitude_deg": "-46.635557", + "elevation_ft": "2565", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SDBT" + }, + { + "id": "309745", + "ident": "SDBU", + "type": "small_airport", + "name": "Fazenda Douradinho Airport", + "latitude_deg": "-21.6433", + "longitude_deg": "-53.3106", + "elevation_ft": "1177", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Andradina", + "scheduled_service": "no", + "keywords": "SDBU, SIZM" + }, + { + "id": "35446", + "ident": "SDBV", + "type": "small_airport", + "name": "Balneário São Januário Airport", + "latitude_deg": "-24.869", + "longitude_deg": "-47.7625", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ilha Comprida", + "scheduled_service": "no", + "gps_code": "SDBV", + "local_code": "SP0081" + }, + { + "id": "35447", + "ident": "SDBW", + "type": "heliport", + "name": "Banespa República Heliport", + "latitude_deg": "-23.54356", + "longitude_deg": "-46.644634", + "elevation_ft": "2676", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "yes", + "gps_code": "SDBW", + "local_code": "SP0302" + }, + { + "id": "313745", + "ident": "SDBX", + "type": "heliport", + "name": "RPB Helipad", + "latitude_deg": "-15.7981", + "longitude_deg": "-47.8123", + "elevation_ft": "3307", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasilia", + "scheduled_service": "no", + "keywords": "SDBX" + }, + { + "id": "29686", + "ident": "SDBY", + "type": "small_airport", + "name": "Bariri - Aparecido O. Silva Airport", + "latitude_deg": "-22.069201", + "longitude_deg": "-48.706402", + "elevation_ft": "1594", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Bariri", + "scheduled_service": "no", + "gps_code": "SDBY", + "local_code": "SP0032" + }, + { + "id": "35448", + "ident": "SDBZ", + "type": "closed", + "name": "KMS Heliport", + "latitude_deg": "-23.505276", + "longitude_deg": "-46.844723", + "elevation_ft": "2521", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "keywords": "SDBZ" + }, + { + "id": "346901", + "ident": "SDC2", + "type": "small_airport", + "name": "Fazenda Onça Preta Airstrip", + "latitude_deg": "-9.02592", + "longitude_deg": "-65.927796", + "elevation_ft": "538", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Lábrea", + "scheduled_service": "no", + "gps_code": "SDC2", + "local_code": "AM0099" + }, + { + "id": "347387", + "ident": "SDC3", + "type": "small_airport", + "name": "Algodoeira Santa Luzia Airport", + "latitude_deg": "-13.690859", + "longitude_deg": "-58.863761", + "elevation_ft": "1968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SDC3", + "local_code": "MT0720" + }, + { + "id": "347855", + "ident": "SDC4", + "type": "small_airport", + "name": "Condomínio Aeronáutico Hangar Fly Residence Airport", + "latitude_deg": "-9.32415", + "longitude_deg": "-40.47118", + "elevation_ft": "1253", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Petrolina", + "scheduled_service": "no", + "gps_code": "SDC4", + "local_code": "PE0093" + }, + { + "id": "347522", + "ident": "SDC6", + "type": "small_airport", + "name": "Fazenda Bom Destino Airstrip", + "latitude_deg": "-22.974444", + "longitude_deg": "-55.316111", + "elevation_ft": "1430", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aral Moreira", + "scheduled_service": "no", + "gps_code": "SDC6", + "local_code": "MS0573" + }, + { + "id": "347521", + "ident": "SDC7", + "type": "heliport", + "name": "Heliponto do Centro de Avaliação da Ilha da Marambaia (CADIM)", + "latitude_deg": "-23.061338", + "longitude_deg": "-43.989832", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Mangaratiba", + "scheduled_service": "no", + "gps_code": "SDC7", + "local_code": "RJ9017" + }, + { + "id": "153", + "ident": "SDCA", + "type": "small_airport", + "name": "Capão Bonito Airport", + "latitude_deg": "-24.034346", + "longitude_deg": "-48.356246", + "elevation_ft": "2402", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Capão Bonito", + "scheduled_service": "no", + "gps_code": "SDCA", + "local_code": "SP0051" + }, + { + "id": "35449", + "ident": "SDCB", + "type": "closed", + "name": "Refinaria Presidente Bernardes Heliport", + "latitude_deg": "-23.887777", + "longitude_deg": "-46.427776", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cubatão", + "scheduled_service": "no", + "keywords": "SDCB" + }, + { + "id": "35450", + "ident": "SDCC", + "type": "closed", + "name": "Country Club Orgabil Airport", + "latitude_deg": "-21.218741", + "longitude_deg": "-50.40596", + "elevation_ft": "1253", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araçatuba", + "scheduled_service": "no", + "keywords": "SDCC" + }, + { + "id": "154", + "ident": "SDCD", + "type": "small_airport", + "name": "Catanduva Airport", + "latitude_deg": "-21.1492", + "longitude_deg": "-48.988701", + "elevation_ft": "1841", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Catanduva", + "scheduled_service": "no", + "gps_code": "SDCD", + "local_code": "SP0082" + }, + { + "id": "35451", + "ident": "SDCE", + "type": "small_airport", + "name": "Fazenda Marambaia Airport", + "latitude_deg": "-17.438334", + "longitude_deg": "-44.936943", + "elevation_ft": "1766", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Pirapora", + "scheduled_service": "no", + "keywords": "SDCE" + }, + { + "id": "35452", + "ident": "SDCF", + "type": "heliport", + "name": "CBS Heliport", + "latitude_deg": "-23.5847225189209", + "longitude_deg": "-46.671390533447266", + "elevation_ft": "2653", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDCF" + }, + { + "id": "155", + "ident": "SDCG", + "type": "small_airport", + "name": "Senadora Eunice Micheles Airport", + "latitude_deg": "-3.46907", + "longitude_deg": "-68.921056", + "elevation_ft": "335", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "São Paulo De Olivença", + "scheduled_service": "no", + "gps_code": "SDCG", + "iata_code": "OLC", + "local_code": "AM0016", + "wikipedia_link": "https://en.wikipedia.org/wiki/S%C3%A3o_Paulo_de_Oliven%C3%A7a_Airport" + }, + { + "id": "35453", + "ident": "SDCH", + "type": "closed", + "name": "Band Heliport", + "latitude_deg": "-23.642735", + "longitude_deg": "-46.735668", + "elevation_ft": "2589", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SDCH" + }, + { + "id": "35454", + "ident": "SDCI", + "type": "closed", + "name": "Cabiúnas Heliport", + "latitude_deg": "-22.284475", + "longitude_deg": "-41.71748", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Macaé", + "scheduled_service": "no", + "keywords": "SDCI" + }, + { + "id": "309747", + "ident": "SDCJ", + "type": "small_airport", + "name": "Fazenda São Domingos Airstrip", + "latitude_deg": "-17.689156", + "longitude_deg": "-53.584238", + "elevation_ft": "1810", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alto Araguaia", + "scheduled_service": "no", + "gps_code": "SDCJ", + "local_code": "MT0032" + }, + { + "id": "35455", + "ident": "SDCK", + "type": "closed", + "name": "Condomínio Edifício Itaquere Heliport", + "latitude_deg": "-23.582104", + "longitude_deg": "-46.681976", + "elevation_ft": "2621", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SDCK" + }, + { + "id": "35456", + "ident": "SDCL", + "type": "small_airport", + "name": "Fazenda Campo Alegre Airport", + "latitude_deg": "-23.154167", + "longitude_deg": "-49.208889", + "elevation_ft": "2182", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cerqueira César", + "scheduled_service": "no", + "gps_code": "SDCL", + "local_code": "SP0083" + }, + { + "id": "35457", + "ident": "SDCM", + "type": "small_airport", + "name": "Sete Povos Airport", + "latitude_deg": "-12.863937", + "longitude_deg": "-46.163263", + "elevation_ft": "2957", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SDCM", + "local_code": "BA0069" + }, + { + "id": "35458", + "ident": "SDCN", + "type": "heliport", + "name": "Centro Médico Naval Marcílio Dias Heliport", + "latitude_deg": "-22.913248", + "longitude_deg": "-43.283499", + "elevation_ft": "409", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SDCN", + "local_code": "RJ9004" + }, + { + "id": "156", + "ident": "SDCO", + "type": "small_airport", + "name": "Sorocaba Airport", + "latitude_deg": "-23.478001", + "longitude_deg": "-47.490002", + "elevation_ft": "2083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sorocaba", + "scheduled_service": "yes", + "gps_code": "SDCO", + "iata_code": "SOD", + "local_code": "SP0027", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sorocaba_Airport" + }, + { + "id": "35459", + "ident": "SDCP", + "type": "heliport", + "name": "Hotel Sant`anna Heliport", + "latitude_deg": "-22.736913", + "longitude_deg": "-46.747041", + "elevation_ft": "2598", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Amparo", + "scheduled_service": "no", + "gps_code": "SDCP", + "local_code": "SP0304", + "keywords": "Fazenda Sant`anna" + }, + { + "id": "35460", + "ident": "SDCQ", + "type": "heliport", + "name": "Mediterâneo Heliport", + "latitude_deg": "-23.593211", + "longitude_deg": "-46.853074", + "elevation_ft": "2648", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cotia", + "scheduled_service": "no", + "gps_code": "SDCQ", + "local_code": "SP0305" + }, + { + "id": "35461", + "ident": "SDCR", + "type": "small_airport", + "name": "Fazenda Caiçara Airport", + "latitude_deg": "-24.068469", + "longitude_deg": "-46.827228", + "elevation_ft": "39", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itanhaém", + "scheduled_service": "no", + "gps_code": "SDCR", + "local_code": "SP0084" + }, + { + "id": "35462", + "ident": "SDCS", + "type": "heliport", + "name": "Veracel Heliport", + "latitude_deg": "-16.092557", + "longitude_deg": "-39.413109", + "elevation_ft": "476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Eunápolis", + "scheduled_service": "no", + "gps_code": "SDCS", + "local_code": "BA0189", + "keywords": "Eunápolis" + }, + { + "id": "35463", + "ident": "SDCT", + "type": "small_airport", + "name": "Fazenda Santo Antonio do Oriçanga Airport", + "latitude_deg": "-22.232574", + "longitude_deg": "-46.969278", + "elevation_ft": "2237", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Estiva Gerbi", + "scheduled_service": "no", + "gps_code": "SIFO", + "local_code": "SP0176", + "keywords": "SDCT" + }, + { + "id": "35464", + "ident": "SDCU", + "type": "small_airport", + "name": "Brigadeiro Francisco Pinto de Moura Airport", + "latitude_deg": "-22.557248", + "longitude_deg": "-42.114451", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Casemiro de Abreu", + "scheduled_service": "no", + "gps_code": "SDCU", + "local_code": "RJ0013" + }, + { + "id": "35465", + "ident": "SDCV", + "type": "heliport", + "name": "Citibank Helipad", + "latitude_deg": "-23.564956", + "longitude_deg": "-46.65348", + "elevation_ft": "3005", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDCV", + "local_code": "SP0306" + }, + { + "id": "35466", + "ident": "SDCW", + "type": "small_airport", + "name": "Fazenda Paloma Airport", + "latitude_deg": "-20.321423", + "longitude_deg": "-48.833504", + "elevation_ft": "1709", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Colômbia", + "scheduled_service": "no", + "gps_code": "SDCW", + "local_code": "SP0085" + }, + { + "id": "35467", + "ident": "SDCX", + "type": "heliport", + "name": "Centro Empresarial Mourisco Heliport", + "latitude_deg": "-22.950661", + "longitude_deg": "-43.180597", + "elevation_ft": "119", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "keywords": "SDCX" + }, + { + "id": "35468", + "ident": "SDCY", + "type": "heliport", + "name": "Camargo Corrêa Heliport", + "latitude_deg": "-23.591726", + "longitude_deg": "-46.687818", + "elevation_ft": "2835", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDCY", + "local_code": "SP0307" + }, + { + "id": "35469", + "ident": "SDCZ", + "type": "small_airport", + "name": "Fazenda Bom Jardim Airport", + "latitude_deg": "-22.935009", + "longitude_deg": "-44.091702", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Mangaratiba", + "scheduled_service": "no", + "gps_code": "SDCZ", + "local_code": "RJ0014" + }, + { + "id": "347577", + "ident": "SDD2", + "type": "heliport", + "name": "Dolce Vita Praia Morro de São Paulo Heliport", + "latitude_deg": "-13.412222", + "longitude_deg": "-38.914167", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Cairu", + "scheduled_service": "no", + "gps_code": "SDD2", + "local_code": "BA0375" + }, + { + "id": "347578", + "ident": "SDD3", + "type": "small_airport", + "name": "Fazenda Tangará Airport", + "latitude_deg": "-12.634957", + "longitude_deg": "-51.276058", + "elevation_ft": "735", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Ribeirão Cascalheira", + "scheduled_service": "no", + "gps_code": "SDD3", + "local_code": "MT0709" + }, + { + "id": "347579", + "ident": "SDD4", + "type": "small_airport", + "name": "Fazenda Pérola Airport", + "latitude_deg": "-12.448789", + "longitude_deg": "-45.452741", + "elevation_ft": "2395", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SDD4", + "local_code": "BA0295" + }, + { + "id": "347580", + "ident": "SDD6", + "type": "small_airport", + "name": "Fazenda Nova Aliança Udo Kudiess e Filhos Airport", + "latitude_deg": "-7.523437", + "longitude_deg": "-44.499934", + "elevation_ft": "1322", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Uruçuí", + "scheduled_service": "no", + "gps_code": "SDD6", + "local_code": "PI0084" + }, + { + "id": "347587", + "ident": "SDD9", + "type": "small_airport", + "name": "Pista São Bento", + "latitude_deg": "-5.258659", + "longitude_deg": "-57.471703", + "elevation_ft": "367", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SDD9", + "local_code": "PA0295" + }, + { + "id": "35470", + "ident": "SDDA", + "type": "heliport", + "name": "Deputado Adib Chammas Heliport", + "latitude_deg": "-23.642814", + "longitude_deg": "-46.53343", + "elevation_ft": "2554", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santo André", + "scheduled_service": "no", + "keywords": "SDDA" + }, + { + "id": "35471", + "ident": "SDDB", + "type": "small_airport", + "name": "Paradiso Agropecuária Airport", + "latitude_deg": "-22.617649", + "longitude_deg": "-50.09019", + "elevation_ft": "1703", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campos Novos Paulista", + "scheduled_service": "no", + "gps_code": "SSNZ", + "local_code": "SP0877", + "keywords": "SDDB, Maggi Agropecuária" + }, + { + "id": "35472", + "ident": "SDDC", + "type": "closed", + "name": "Panco 10 Heliport", + "latitude_deg": "-22.6667", + "longitude_deg": "-43.296101", + "elevation_ft": "58", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Duque de Caxias", + "scheduled_service": "no", + "keywords": "SDDC" + }, + { + "id": "309749", + "ident": "SDDD", + "type": "small_airport", + "name": "Fazenda São Francisco Airport", + "latitude_deg": "-17.8615", + "longitude_deg": "-55.78457", + "elevation_ft": "433", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SDDD", + "local_code": "MS0027" + }, + { + "id": "319706", + "ident": "SDDE", + "type": "small_airport", + "name": "Fazenda Dois Irmãos Airport", + "latitude_deg": "-8.012773", + "longitude_deg": "-61.777196", + "elevation_ft": "344", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Manicoré", + "scheduled_service": "no", + "gps_code": "SDDE", + "local_code": "AM0026" + }, + { + "id": "35473", + "ident": "SDDF", + "type": "closed", + "name": "Sul América Seguros Heliport", + "latitude_deg": "-23.607779", + "longitude_deg": "-46.700558", + "elevation_ft": "2555", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SDDF" + }, + { + "id": "35474", + "ident": "SDDG", + "type": "heliport", + "name": "Hospital Samaritano Heliport", + "latitude_deg": "-23.538610458374023", + "longitude_deg": "-46.662498474121094", + "elevation_ft": "2966", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDDG" + }, + { + "id": "35475", + "ident": "SDDH", + "type": "heliport", + "name": "Birmann 29 Heliport", + "latitude_deg": "-23.588865", + "longitude_deg": "-46.681144", + "elevation_ft": "2614", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDDH", + "local_code": "SP0309" + }, + { + "id": "323517", + "ident": "SDDI", + "type": "small_airport", + "name": "Fazenda Tamara Airport", + "latitude_deg": "-21.592561", + "longitude_deg": "-50.833217", + "elevation_ft": "2093", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Salmourão", + "scheduled_service": "no", + "gps_code": "SDDI", + "local_code": "SDDI" + }, + { + "id": "30157", + "ident": "SDDJ", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-20.848899841308594", + "longitude_deg": "-50.07939910888672", + "elevation_ft": "1525", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Monções", + "scheduled_service": "no", + "gps_code": "SDDJ", + "iata_code": "0" + }, + { + "id": "35476", + "ident": "SDDK", + "type": "small_airport", + "name": "Saint-Exupéry Airport", + "latitude_deg": "-22.482778549194336", + "longitude_deg": "-49.983890533447266", + "elevation_ft": "1886", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ocauçu", + "scheduled_service": "no", + "gps_code": "SDDK" + }, + { + "id": "35477", + "ident": "SDDL", + "type": "small_airport", + "name": "Fazenda Dois Lagos Airport", + "latitude_deg": "-23.307501", + "longitude_deg": "-47.933887", + "elevation_ft": "1916", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Tatuí", + "scheduled_service": "no", + "keywords": "SDDL" + }, + { + "id": "35478", + "ident": "SDDM", + "type": "heliport", + "name": "Dona Marta Heliport", + "latitude_deg": "-22.9467", + "longitude_deg": "-43.1981", + "elevation_ft": "1145", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SDDM" + }, + { + "id": "157", + "ident": "SDDN", + "type": "small_airport", + "name": "Andradina - Paulino Ribeiro de Andrade Airport", + "latitude_deg": "-20.924999237061", + "longitude_deg": "-51.381999969482", + "elevation_ft": "1247", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Andradina", + "scheduled_service": "no", + "gps_code": "SDDN", + "local_code": "SDDN", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Andradina" + }, + { + "id": "35479", + "ident": "SDDO", + "type": "heliport", + "name": "Cândido Mendes Heliport", + "latitude_deg": "-22.90416717529297", + "longitude_deg": "-43.17527770996094", + "elevation_ft": "460", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SDDO" + }, + { + "id": "35480", + "ident": "SDDP", + "type": "heliport", + "name": "Delta PLaza Heliport", + "latitude_deg": "-23.5674991607666", + "longitude_deg": "-46.64583206176758", + "elevation_ft": "2918", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDDP" + }, + { + "id": "318450", + "ident": "SDDQ", + "type": "small_airport", + "name": "Fazenda São Francisco Airport", + "latitude_deg": "-11.69435", + "longitude_deg": "-45.51127", + "elevation_ft": "2490", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Riachão das Neves", + "scheduled_service": "no", + "gps_code": "SDDQ", + "local_code": "SDDQ" + }, + { + "id": "158", + "ident": "SDDR", + "type": "small_airport", + "name": "Dracena Airport", + "latitude_deg": "-21.460501", + "longitude_deg": "-51.606899", + "elevation_ft": "1220", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Dracena", + "scheduled_service": "no", + "gps_code": "SDDR", + "local_code": "SP0021", + "keywords": "QDC" + }, + { + "id": "319707", + "ident": "SDDS", + "type": "small_airport", + "name": "Fazenda Scheffer Airport", + "latitude_deg": "-8.343408", + "longitude_deg": "-65.713456", + "elevation_ft": "293", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Lábrea", + "scheduled_service": "no", + "keywords": "SDDS" + }, + { + "id": "35481", + "ident": "SDDT", + "type": "heliport", + "name": "de Imbetiba Heliport", + "latitude_deg": "-22.38777732849121", + "longitude_deg": "-41.772499084472656", + "elevation_ft": "18", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Macaé", + "scheduled_service": "no", + "gps_code": "SDDT" + }, + { + "id": "42794", + "ident": "SDDU", + "type": "closed", + "name": "Fazenda Santa Carolina", + "latitude_deg": "-22.131001", + "longitude_deg": "-48.319302", + "elevation_ft": "2302", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Dourado", + "scheduled_service": "no", + "keywords": "SDDU" + }, + { + "id": "30235", + "ident": "SDDV", + "type": "small_airport", + "name": "Usina Catanduva Airport", + "latitude_deg": "-21.12689971923828", + "longitude_deg": "-48.84469985961914", + "elevation_ft": "1860", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Palmares Paulista", + "scheduled_service": "no", + "gps_code": "SDDV", + "iata_code": "0" + }, + { + "id": "35482", + "ident": "SDDW", + "type": "closed", + "name": "Delmar Heliport", + "latitude_deg": "-23.921702", + "longitude_deg": "-46.213271", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarujá", + "scheduled_service": "no", + "keywords": "SDDW" + }, + { + "id": "35483", + "ident": "SDDX", + "type": "small_airport", + "name": "Fazenda Paiquerê Airport", + "latitude_deg": "-19.8880558013916", + "longitude_deg": "-50.51416778564453", + "elevation_ft": "1483", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Populina", + "scheduled_service": "no", + "gps_code": "SDDX" + }, + { + "id": "46208", + "ident": "SDDY", + "type": "heliport", + "name": "Cesari Heliport", + "latitude_deg": "-23.823611", + "longitude_deg": "-46.367778", + "elevation_ft": "246", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cubatão", + "scheduled_service": "no", + "gps_code": "SDDY", + "local_code": "SDDY" + }, + { + "id": "319708", + "ident": "SDDZ", + "type": "heliport", + "name": "Vila São Paulo/Mercosul Heliport", + "latitude_deg": "-22.696742", + "longitude_deg": "-51.332565", + "elevation_ft": "1147", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Alvorada do Sul", + "scheduled_service": "no", + "gps_code": "SDDZ", + "local_code": "SDDZ" + }, + { + "id": "347590", + "ident": "SDE3", + "type": "heliport", + "name": "Localiza BH Helipad", + "latitude_deg": "-19.884745", + "longitude_deg": "-43.946659", + "elevation_ft": "3022", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SDE3", + "local_code": "MG0375" + }, + { + "id": "348147", + "ident": "SDE6", + "type": "small_airport", + "name": "Fazenda ITK Agro Airport", + "latitude_deg": "-30.031667", + "longitude_deg": "-55.313611", + "elevation_ft": "607", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Alegrete", + "scheduled_service": "no", + "gps_code": "SDE6", + "local_code": "RS0181" + }, + { + "id": "347436", + "ident": "SDE8", + "type": "heliport", + "name": "Hospital Cinco de Outubro Heliport", + "latitude_deg": "-6.523769", + "longitude_deg": "-49.845358", + "elevation_ft": "945", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Canaã dos Carajás", + "scheduled_service": "no", + "gps_code": "SDE8", + "local_code": "PA0263" + }, + { + "id": "347844", + "ident": "SDE9", + "type": "heliport", + "name": "Fazenda ACF Heliport", + "latitude_deg": "-22.839349", + "longitude_deg": "-46.213539", + "elevation_ft": "3182", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Extrema", + "scheduled_service": "no", + "gps_code": "SDE9", + "local_code": "MG0486" + }, + { + "id": "35484", + "ident": "SDEA", + "type": "heliport", + "name": "Edifício HSBC Tower Heliport", + "latitude_deg": "-23.58305549621582", + "longitude_deg": "-46.68388748168945", + "elevation_ft": "2619", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDEA" + }, + { + "id": "35485", + "ident": "SDEB", + "type": "closed", + "name": "Ericson do Brasil Heliport", + "latitude_deg": "-23.061943", + "longitude_deg": "-45.782501", + "elevation_ft": "1875", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São José Dos Campos", + "scheduled_service": "no", + "keywords": "SDEB" + }, + { + "id": "46466", + "ident": "SDEC", + "type": "small_airport", + "name": "Rancho Enagri Airport", + "latitude_deg": "-16.95611", + "longitude_deg": "-53.57", + "elevation_ft": "2572", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alto Garças", + "scheduled_service": "no", + "keywords": "SDEC" + }, + { + "id": "35486", + "ident": "SDED", + "type": "small_airport", + "name": "EDRA do Brasil Airport", + "latitude_deg": "-22.440277099609", + "longitude_deg": "-47.701667785645", + "elevation_ft": "2008", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ipeúna", + "scheduled_service": "no", + "gps_code": "SDED", + "keywords": "EDRA Aeronáutica" + }, + { + "id": "35487", + "ident": "SDEE", + "type": "closed", + "name": "Rancho Villela Airport", + "latitude_deg": "-23.570278", + "longitude_deg": "-48.863335", + "elevation_ft": "1801", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itaí", + "scheduled_service": "no", + "keywords": "SDEE" + }, + { + "id": "35488", + "ident": "SDEF", + "type": "heliport", + "name": "Edifício Morumbi Office Tower Helipad", + "latitude_deg": "-23.623647", + "longitude_deg": "-46.696808", + "elevation_ft": "2619", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SDEF" + }, + { + "id": "159", + "ident": "SDEG", + "type": "small_airport", + "name": "Fazenda Nova Califórnia Airport", + "latitude_deg": "-22.4667", + "longitude_deg": "-51.200804", + "elevation_ft": "1450", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Martinópolis", + "scheduled_service": "no", + "keywords": "SDEG" + }, + { + "id": "35489", + "ident": "SDEH", + "type": "heliport", + "name": "Fazenda Santo Antônio Heliport", + "latitude_deg": "-22.379294", + "longitude_deg": "-47.32624", + "elevation_ft": "2047", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araras", + "scheduled_service": "no", + "gps_code": "SDKR", + "local_code": "SP0374", + "keywords": "SDEH" + }, + { + "id": "319710", + "ident": "SDEI", + "type": "heliport", + "name": "Canopus Corporate Alphaville Heliport", + "latitude_deg": "-23.503365", + "longitude_deg": "-46.844429", + "elevation_ft": "2834", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SDEI", + "local_code": "SDEI" + }, + { + "id": "35490", + "ident": "SDEJ", + "type": "small_airport", + "name": "Fazenda Guará do Pinhal Airport", + "latitude_deg": "-23.66583251953125", + "longitude_deg": "-48.073612213134766", + "elevation_ft": "2036", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapetininga", + "scheduled_service": "no", + "gps_code": "SDEJ" + }, + { + "id": "35491", + "ident": "SDEK", + "type": "heliport", + "name": "Barra do Una Heliport", + "latitude_deg": "-23.73583221435547", + "longitude_deg": "-45.746944427490234", + "elevation_ft": "43", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Sebastião", + "scheduled_service": "no", + "gps_code": "SDEK" + }, + { + "id": "35492", + "ident": "SDEL", + "type": "heliport", + "name": "Condomínio Spázio Central JK Heliport", + "latitude_deg": "-23.591092", + "longitude_deg": "-46.685693", + "elevation_ft": "2684", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDEL", + "local_code": "SP0319" + }, + { + "id": "35493", + "ident": "SDEM", + "type": "small_airport", + "name": "Estância Machado Airport", + "latitude_deg": "-22.101110458374023", + "longitude_deg": "-51.45166778564453", + "elevation_ft": "1388", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Álvares Machado", + "scheduled_service": "no", + "gps_code": "SDEM" + }, + { + "id": "316558", + "ident": "SDEN", + "type": "small_airport", + "name": "Costa Esmeralda Airport", + "latitude_deg": "-27.1665", + "longitude_deg": "-48.6218", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Porto Belo", + "scheduled_service": "no", + "gps_code": "SDEN", + "local_code": "SDEN" + }, + { + "id": "160", + "ident": "SDEO", + "type": "small_airport", + "name": "Fazenda Entre Rios Airport", + "latitude_deg": "-21.878599166900003", + "longitude_deg": "-48.659400939899996", + "elevation_ft": "1709", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ibitinga", + "scheduled_service": "no", + "gps_code": "SDEO", + "local_code": "SDEO" + }, + { + "id": "161", + "ident": "SDEP", + "type": "small_airport", + "name": "Geraldo Moacir Bordon State Airport", + "latitude_deg": "-21.774665", + "longitude_deg": "-52.143281", + "elevation_ft": "974", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Presidente Epitácio", + "scheduled_service": "no", + "gps_code": "SDEP", + "local_code": "SP0052", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Presidente_Epitácio" + }, + { + "id": "35494", + "ident": "SDEQ", + "type": "heliport", + "name": "Vigor Helipad", + "latitude_deg": "-23.533139", + "longitude_deg": "-46.604063", + "elevation_ft": "2434", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SNVO", + "local_code": "SP0733", + "keywords": "SDEQ" + }, + { + "id": "35495", + "ident": "SDER", + "type": "small_airport", + "name": "Fazenda Entre Rios Airport", + "latitude_deg": "-20.764999389648438", + "longitude_deg": "-50.8569450378418", + "elevation_ft": "1207", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sud Menucci", + "scheduled_service": "no", + "gps_code": "SDER" + }, + { + "id": "35496", + "ident": "SDES", + "type": "small_airport", + "name": "Estância Colorado Airport", + "latitude_deg": "-20.761969", + "longitude_deg": "-47.862237", + "elevation_ft": "2372", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sales De Oliveira", + "scheduled_service": "no", + "gps_code": "SDES" + }, + { + "id": "35497", + "ident": "SDET", + "type": "small_airport", + "name": "Tietê Airport", + "latitude_deg": "-23.104721069335938", + "longitude_deg": "-47.72444534301758", + "elevation_ft": "1644", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Tietê", + "scheduled_service": "no", + "gps_code": "SDET" + }, + { + "id": "35498", + "ident": "SDEU", + "type": "heliport", + "name": "Empresarial Anhanguera Heliport", + "latitude_deg": "-23.384721755981445", + "longitude_deg": "-46.831668853759766", + "elevation_ft": "2658", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cajamar", + "scheduled_service": "no", + "gps_code": "SDEU" + }, + { + "id": "35499", + "ident": "SDEV", + "type": "heliport", + "name": "Centro Empresarial Vari Heliport", + "latitude_deg": "-23.499675", + "longitude_deg": "-46.622924", + "elevation_ft": "2668", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SDEV" + }, + { + "id": "35500", + "ident": "SDEW", + "type": "heliport", + "name": "Júlio Simões – Garagem Heliport", + "latitude_deg": "-23.541878", + "longitude_deg": "-46.229307", + "elevation_ft": "2461", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Moji das Cruzes", + "scheduled_service": "no", + "gps_code": "SDEW", + "local_code": "SP0321", + "keywords": "SWON" + }, + { + "id": "316559", + "ident": "SDEX", + "type": "small_airport", + "name": "Fazenda Nossa Senhora do Carmo Airstrip", + "latitude_deg": "-12.58051", + "longitude_deg": "-45.824347", + "elevation_ft": "2543", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SI4S", + "local_code": "BA0391", + "keywords": "SDEX" + }, + { + "id": "35501", + "ident": "SDEY", + "type": "heliport", + "name": "Imigrantes Heliport", + "latitude_deg": "-23.688888549804688", + "longitude_deg": "-46.60527801513672", + "elevation_ft": "2554", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Diadema", + "scheduled_service": "no", + "gps_code": "SDEY" + }, + { + "id": "35502", + "ident": "SDEZ", + "type": "heliport", + "name": "Unibanco Eusébio Matoso Heliport", + "latitude_deg": "-23.572500228881836", + "longitude_deg": "-46.698890686035156", + "elevation_ft": "2680", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDEZ" + }, + { + "id": "347433", + "ident": "SDF2", + "type": "small_airport", + "name": "Mãe Nina Airstrip", + "latitude_deg": "-23.303461", + "longitude_deg": "-53.899779", + "elevation_ft": "951", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Itaquiraí", + "scheduled_service": "no", + "gps_code": "SDF2", + "local_code": "MS0537" + }, + { + "id": "347592", + "ident": "SDF3", + "type": "small_airport", + "name": "Fazenda Santa Helena Airport", + "latitude_deg": "-17.305857", + "longitude_deg": "-54.444204", + "elevation_ft": "1863", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Itiquira", + "scheduled_service": "no", + "gps_code": "SDF3", + "local_code": "MT0762" + }, + { + "id": "347593", + "ident": "SDF4", + "type": "small_airport", + "name": "Agropecuária VR Airport", + "latitude_deg": "-13.49566", + "longitude_deg": "-57.988015", + "elevation_ft": "1752", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo do Parecis", + "scheduled_service": "no", + "gps_code": "SDF4", + "local_code": "MT0730" + }, + { + "id": "348152", + "ident": "SDF6", + "type": "heliport", + "name": "Décio Uberlândia Heliport", + "latitude_deg": "-19.015278", + "longitude_deg": "-48.209722", + "elevation_ft": "2907", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberlândia", + "scheduled_service": "no", + "gps_code": "SDF6", + "local_code": "MG0451" + }, + { + "id": "347845", + "ident": "SDF7", + "type": "small_airport", + "name": "Clube Aeronáutico Avaré Airport", + "latitude_deg": "-23.241111", + "longitude_deg": "-48.985", + "elevation_ft": "2028", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Avaré", + "scheduled_service": "no", + "gps_code": "SDF7", + "local_code": "SP1315" + }, + { + "id": "347846", + "ident": "SDF9", + "type": "small_airport", + "name": "Aviação Agrícola Manain Airport", + "latitude_deg": "2.998611", + "longitude_deg": "-60.7225", + "elevation_ft": "285", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Boa Vista", + "scheduled_service": "no", + "gps_code": "SDF9", + "local_code": "RR0123" + }, + { + "id": "162", + "ident": "SDFA", + "type": "small_airport", + "name": "Fazenda Bonança Airport", + "latitude_deg": "-20.676399", + "longitude_deg": "-51.0308", + "elevation_ft": "1200", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Pereira Barreto", + "scheduled_service": "no", + "gps_code": "SIBC", + "local_code": "SP0171", + "keywords": "SDFA" + }, + { + "id": "29729", + "ident": "SDFB", + "type": "small_airport", + "name": "Fazenda Brumado Airport", + "latitude_deg": "-20.428899", + "longitude_deg": "-48.562077", + "elevation_ft": "1755", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barretos", + "scheduled_service": "no", + "keywords": "SDFB" + }, + { + "id": "29864", + "ident": "SDFC", + "type": "small_airport", + "name": "Fazenda Constância Airport", + "latitude_deg": "-20.48859977722168", + "longitude_deg": "-49.1880989074707", + "elevation_ft": "1673", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Altair", + "scheduled_service": "no", + "gps_code": "SDFC", + "iata_code": "0" + }, + { + "id": "163", + "ident": "SDFD", + "type": "small_airport", + "name": "Fernandópolis - Coronel Aviador Carlos Orleans Guimarães Airport", + "latitude_deg": "-20.276599884033", + "longitude_deg": "-50.215599060059", + "elevation_ft": "1640", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Fernandópolis", + "scheduled_service": "no", + "gps_code": "SDFD", + "local_code": "SDFD" + }, + { + "id": "35503", + "ident": "SDFE", + "type": "small_airport", + "name": "Fazenda Santo Antônio Airport", + "latitude_deg": "-22.068056", + "longitude_deg": "-56.702499", + "elevation_ft": "633", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bela Vista", + "scheduled_service": "no", + "keywords": "SDFE" + }, + { + "id": "35504", + "ident": "SDFF", + "type": "small_airport", + "name": "Fazenda Fittipaldi Citrus Airport", + "latitude_deg": "-21.854445", + "longitude_deg": "-48.295832", + "elevation_ft": "1673", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araraquara", + "scheduled_service": "no", + "keywords": "SDFF" + }, + { + "id": "35505", + "ident": "SDFG", + "type": "heliport", + "name": "Fazenda Guanabara Heliport", + "latitude_deg": "-22.659611", + "longitude_deg": "-44.464942", + "elevation_ft": "1591", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Arapeí", + "scheduled_service": "no", + "keywords": "SDFG" + }, + { + "id": "164", + "ident": "SDFH", + "type": "small_airport", + "name": "Fazenda Amália Airport", + "latitude_deg": "-21.444000244140625", + "longitude_deg": "-47.37089920043945", + "elevation_ft": "2318", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santa Rosa Do Viterbo", + "scheduled_service": "no", + "gps_code": "SDFH", + "local_code": "SDFH" + }, + { + "id": "165", + "ident": "SDFI", + "type": "closed", + "name": "Fazenda Itaquere Airport", + "latitude_deg": "-21.6546", + "longitude_deg": "-48.2663", + "elevation_ft": "2257", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araraquara", + "scheduled_service": "no", + "keywords": "SDFI" + }, + { + "id": "319711", + "ident": "SDFJ", + "type": "heliport", + "name": "Fazenda Murungaba Heliport", + "latitude_deg": "-22.95156", + "longitude_deg": "-47.76002", + "elevation_ft": "1629", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Tietê", + "scheduled_service": "no", + "gps_code": "SDFJ", + "local_code": "SDFJ" + }, + { + "id": "35506", + "ident": "SDFK", + "type": "small_airport", + "name": "Fazenda Figueira Airport", + "latitude_deg": "-22.068889617919922", + "longitude_deg": "-52.15888977050781", + "elevation_ft": "1234", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Marabá Paulista", + "scheduled_service": "no", + "gps_code": "SDFK" + }, + { + "id": "35507", + "ident": "SDFL", + "type": "small_airport", + "name": "Fazenda Santa Albana Airport", + "latitude_deg": "-23.580552", + "longitude_deg": "-48.282217", + "elevation_ft": "2051", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapetininga", + "scheduled_service": "no", + "gps_code": "SWAL", + "local_code": "SP0268", + "keywords": "SDFL" + }, + { + "id": "35508", + "ident": "SDFM", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-22.289652", + "longitude_deg": "-52.254839", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Teodoro Sampaio", + "scheduled_service": "no", + "keywords": "SDFM" + }, + { + "id": "35509", + "ident": "SDFN", + "type": "small_airport", + "name": "Fazenda São Francisco Airport", + "latitude_deg": "-23.474781", + "longitude_deg": "-49.546308", + "elevation_ft": "1703", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Fartura", + "scheduled_service": "no", + "gps_code": "SNSF", + "local_code": "SP0237", + "keywords": "SDFN" + }, + { + "id": "35510", + "ident": "SDFO", + "type": "heliport", + "name": "Centro Gráfico - Folha Heliport", + "latitude_deg": "-23.46555519104", + "longitude_deg": "-46.860000610352", + "elevation_ft": "2535", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santana Do Parnaíba", + "scheduled_service": "no", + "gps_code": "SDFO" + }, + { + "id": "35511", + "ident": "SDFP", + "type": "heliport", + "name": "Folha de São Paulo Heliport", + "latitude_deg": "-23.537778854370117", + "longitude_deg": "-46.64583206176758", + "elevation_ft": "2612", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDFP" + }, + { + "id": "35512", + "ident": "SDFQ", + "type": "heliport", + "name": "Centro Empresarial Botafogo Heliport", + "latitude_deg": "-22.94429", + "longitude_deg": "-43.182621", + "elevation_ft": "187", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SDFQ", + "local_code": "RJ0037", + "keywords": "Fundação Caemi" + }, + { + "id": "323518", + "ident": "SDFR", + "type": "heliport", + "name": "Riomar Fortaleza Heliport", + "latitude_deg": "-3.741244", + "longitude_deg": "-38.473532", + "elevation_ft": "299", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SDFR", + "local_code": "SDFR" + }, + { + "id": "35513", + "ident": "SDFS", + "type": "heliport", + "name": "Fazenda Santa Gertrudes Heliport", + "latitude_deg": "-22.092222213745117", + "longitude_deg": "-48.34694290161133", + "elevation_ft": "2119", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Dourado", + "scheduled_service": "no", + "gps_code": "SDFS" + }, + { + "id": "35514", + "ident": "SDFT", + "type": "small_airport", + "name": "Virgulino de Oliveira Airport", + "latitude_deg": "-22.414443969726562", + "longitude_deg": "-46.80888748168945", + "elevation_ft": "2152", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapira", + "scheduled_service": "no", + "gps_code": "SDFT" + }, + { + "id": "35515", + "ident": "SDFU", + "type": "small_airport", + "name": "Fazenda Ponte Funda Airport", + "latitude_deg": "-21.870555877685547", + "longitude_deg": "-52.163055419921875", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Presidente Eptácio", + "scheduled_service": "no", + "gps_code": "SDFU" + }, + { + "id": "35516", + "ident": "SDFV", + "type": "heliport", + "name": "Federação Paulista de Futevol Heliport", + "latitude_deg": "-23.52166748046875", + "longitude_deg": "-46.66722106933594", + "elevation_ft": "2477", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDFV" + }, + { + "id": "35517", + "ident": "SDFW", + "type": "heliport", + "name": "Condomínio Edifício San Paolo Heliport", + "latitude_deg": "-23.57666778564453", + "longitude_deg": "-46.68777847290039", + "elevation_ft": "2726", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDFW" + }, + { + "id": "166", + "ident": "SDFX", + "type": "small_airport", + "name": "Casa Nova Airport", + "latitude_deg": "-9.157090187072754", + "longitude_deg": "-40.93769836425781", + "elevation_ft": "1247", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Casa Nova", + "scheduled_service": "no", + "gps_code": "SDFX", + "local_code": "SDFX" + }, + { + "id": "35518", + "ident": "SDFY", + "type": "closed", + "name": "Fazenda Ipameri Airport", + "latitude_deg": "-21.63139", + "longitude_deg": "-50.808887", + "elevation_ft": "1280", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Osvaldo Cruz", + "scheduled_service": "no", + "keywords": "SDFY" + }, + { + "id": "35519", + "ident": "SDFZ", + "type": "closed", + "name": "Vivo Barra Funda Heliport", + "latitude_deg": "-23.509166", + "longitude_deg": "-46.68111", + "elevation_ft": "2441", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SDFZ" + }, + { + "id": "347691", + "ident": "SDG3", + "type": "small_airport", + "name": "Fazenda Malanda Airport", + "latitude_deg": "-11.72332", + "longitude_deg": "-58.172828", + "elevation_ft": "909", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SDG3", + "local_code": "MT0755" + }, + { + "id": "348800", + "ident": "SDG4", + "type": "heliport", + "name": "1° Esquadrão de Helicópteros de Emprego Geral do Oeste Heliport", + "latitude_deg": "-19.005007", + "longitude_deg": "-57.59443", + "elevation_ft": "320", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ladário", + "scheduled_service": "no", + "gps_code": "SDG4", + "local_code": "MS9004" + }, + { + "id": "348801", + "ident": "SDG6", + "type": "heliport", + "name": "Centro Tecnológico da Marinha em São Paulo – ARAMAR Heliport", + "latitude_deg": "-23.397635", + "longitude_deg": "-47.605337", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sorocaba", + "scheduled_service": "no", + "gps_code": "SDG6", + "local_code": "SP9007" + }, + { + "id": "348804", + "ident": "SDG7", + "type": "heliport", + "name": "Base de Fuzileiros Navais da Ilha do Governador Heliport", + "latitude_deg": "-22.783907", + "longitude_deg": "-43.156443", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SDG7", + "local_code": "RJ9019" + }, + { + "id": "349060", + "ident": "SDG8", + "type": "heliport", + "name": "Base Naval de Natal Heliport", + "latitude_deg": "-5.79232", + "longitude_deg": "-35.224127", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Natal", + "scheduled_service": "no", + "gps_code": "SDG8", + "local_code": "RN9003" + }, + { + "id": "349061", + "ident": "SDG9", + "type": "heliport", + "name": "Delegacia da Capitania dos Portos em São Sebastião Heliport", + "latitude_deg": "-23.806647", + "longitude_deg": "-45.399799", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Sebastião", + "scheduled_service": "no", + "gps_code": "SDG9", + "local_code": "SP9008" + }, + { + "id": "35520", + "ident": "SDGA", + "type": "heliport", + "name": "Acapulco Heliport", + "latitude_deg": "-23.954475", + "longitude_deg": "-46.201794", + "elevation_ft": "36", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarujá", + "scheduled_service": "no", + "gps_code": "SNLP", + "local_code": "SP0712", + "keywords": "SDGA" + }, + { + "id": "35521", + "ident": "SDGB", + "type": "small_airport", + "name": "Usina Colorado Airport", + "latitude_deg": "-20.27694320678711", + "longitude_deg": "-48.18194580078125", + "elevation_ft": "1988", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guaíra", + "scheduled_service": "no", + "gps_code": "SDGB" + }, + { + "id": "29887", + "ident": "SDGC", + "type": "small_airport", + "name": "Garça Airport", + "latitude_deg": "-22.1835994720459", + "longitude_deg": "-49.65610122680664", + "elevation_ft": "2182", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Garça", + "scheduled_service": "no", + "gps_code": "SDGC", + "iata_code": "0" + }, + { + "id": "35522", + "ident": "SDGD", + "type": "heliport", + "name": "Eucatex Heliport", + "latitude_deg": "-22.99416732788086", + "longitude_deg": "-48.56833267211914", + "elevation_ft": "2664", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Botucatu", + "scheduled_service": "no", + "gps_code": "SDGD" + }, + { + "id": "35523", + "ident": "SDGE", + "type": "heliport", + "name": "Casas Bahia Heliport", + "latitude_deg": "-23.61094", + "longitude_deg": "-46.5707", + "elevation_ft": "2520", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Caetano Do Sul", + "scheduled_service": "no", + "gps_code": "SDGE" + }, + { + "id": "35524", + "ident": "SDGF", + "type": "closed", + "name": "Fazenda Fartura Airport", + "latitude_deg": "-22.367222", + "longitude_deg": "-49.946945", + "elevation_ft": "1647", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ocauçu", + "scheduled_service": "no", + "keywords": "SDGF" + }, + { + "id": "323519", + "ident": "SDGG", + "type": "heliport", + "name": "Aché Faria Lima Heliport", + "latitude_deg": "-23.561143", + "longitude_deg": "-46.69423", + "elevation_ft": "2802", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDGG", + "local_code": "SDGG" + }, + { + "id": "309761", + "ident": "SDGH", + "type": "heliport", + "name": "Parque do Peão Mussa Calil Neto Heliport", + "latitude_deg": "-20.51105", + "longitude_deg": "-48.5927", + "elevation_ft": "1809", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barretos", + "scheduled_service": "no", + "gps_code": "SDGH", + "local_code": "SDGH" + }, + { + "id": "35525", + "ident": "SDGI", + "type": "heliport", + "name": "Fazenda Guariroba Heliport", + "latitude_deg": "-22.92277717590332", + "longitude_deg": "-46.906944274902344", + "elevation_ft": "2297", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SDGI" + }, + { + "id": "35526", + "ident": "SDGJ", + "type": "small_airport", + "name": "Fazenda Suíssa Airport", + "latitude_deg": "-21.907315", + "longitude_deg": "-49.85664", + "elevation_ft": "1748", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guaimbê", + "scheduled_service": "no", + "keywords": "SDGJ" + }, + { + "id": "35527", + "ident": "SDGK", + "type": "small_airport", + "name": "Fazenda Gurucaia Airport", + "latitude_deg": "-21.494602", + "longitude_deg": "-50.735522", + "elevation_ft": "1345", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guararapes", + "scheduled_service": "no", + "keywords": "SDGK" + }, + { + "id": "35528", + "ident": "SDGL", + "type": "heliport", + "name": "Catedral Mundial da Fé Heliport", + "latitude_deg": "-22.878889083862305", + "longitude_deg": "-44.2761116027832", + "elevation_ft": "154", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SDGL" + }, + { + "id": "35529", + "ident": "SDGM", + "type": "heliport", + "name": "Birmann 09 Heliport", + "latitude_deg": "-23.654167", + "longitude_deg": "-46.716667", + "elevation_ft": "2566", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SDGM, Gazeta Mercantil" + }, + { + "id": "329306", + "ident": "SDGN", + "type": "heliport", + "name": "Empresarial Pontes Corporate Center Heliport", + "latitude_deg": "-8.131765", + "longitude_deg": "-34.904154", + "elevation_ft": "289", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Recife", + "scheduled_service": "no", + "gps_code": "SDGN", + "local_code": "SDGN" + }, + { + "id": "35530", + "ident": "SDGO", + "type": "heliport", + "name": "Braspress Heliport", + "latitude_deg": "-23.454179", + "longitude_deg": "-46.485454", + "elevation_ft": "2543", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarulhos", + "scheduled_service": "no", + "gps_code": "SDGO", + "keywords": "Itapemirim Heliport" + }, + { + "id": "35531", + "ident": "SDGP", + "type": "small_airport", + "name": "Hotel Fazenda Capricho Airport", + "latitude_deg": "-23.221801", + "longitude_deg": "-48.790794", + "elevation_ft": "2099", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Avaré", + "scheduled_service": "no", + "keywords": "SDGP" + }, + { + "id": "35532", + "ident": "SDGQ", + "type": "heliport", + "name": "Banco Sofisa Heliport", + "latitude_deg": "-23.56277847290039", + "longitude_deg": "-46.65583419799805", + "elevation_ft": "2864", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDGQ" + }, + { + "id": "35533", + "ident": "SDGR", + "type": "small_airport", + "name": "Guararapes Airport", + "latitude_deg": "-21.2630558013916", + "longitude_deg": "-50.65305709838867", + "elevation_ft": "1312", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guararapes", + "scheduled_service": "no", + "gps_code": "SDGR" + }, + { + "id": "35534", + "ident": "SDGS", + "type": "heliport", + "name": "Bertolucci Heliport", + "latitude_deg": "-23.585556030273438", + "longitude_deg": "-46.68027877807617", + "elevation_ft": "2657", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDGS" + }, + { + "id": "35535", + "ident": "SDGT", + "type": "small_airport", + "name": "Fazenda Cristal Airport", + "latitude_deg": "-22.525001", + "longitude_deg": "-50.045832", + "elevation_ft": "1895", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campos Novos Paulista", + "scheduled_service": "no", + "keywords": "SDGT, Fazenda Alvorada" + }, + { + "id": "35536", + "ident": "SDGU", + "type": "small_airport", + "name": "Usina Bonfim Airport", + "latitude_deg": "-21.404443740844727", + "longitude_deg": "-48.3033332824707", + "elevation_ft": "2116", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guariba", + "scheduled_service": "no", + "gps_code": "SDGU" + }, + { + "id": "35537", + "ident": "SDGV", + "type": "heliport", + "name": "CPM Granja Viana Heliport", + "latitude_deg": "-23.599443435668945", + "longitude_deg": "-46.83250045776367", + "elevation_ft": "2710", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cotia", + "scheduled_service": "no", + "gps_code": "SDGV" + }, + { + "id": "35538", + "ident": "SDGW", + "type": "heliport", + "name": "JKFC Heliport", + "latitude_deg": "-23.586666107177734", + "longitude_deg": "-46.674720764160156", + "elevation_ft": "2648", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDGW" + }, + { + "id": "35539", + "ident": "SDGX", + "type": "heliport", + "name": "Shering Plough Heliport", + "latitude_deg": "-23.626943588256836", + "longitude_deg": "-46.70777893066406", + "elevation_ft": "2494", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDGX" + }, + { + "id": "35540", + "ident": "SDGY", + "type": "small_airport", + "name": "Fazenda Anhangaí Airport", + "latitude_deg": "-20.9274997711", + "longitude_deg": "-50.7433319092", + "elevation_ft": "1181", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araçatuba", + "scheduled_service": "no", + "gps_code": "SDGY" + }, + { + "id": "35541", + "ident": "SDGZ", + "type": "heliport", + "name": "Bradesco Cidade de Deus Heliport", + "latitude_deg": "-23.54888916015625", + "longitude_deg": "-46.772220611572266", + "elevation_ft": "2529", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Osasco", + "scheduled_service": "no", + "gps_code": "SDGZ" + }, + { + "id": "347848", + "ident": "SDH2", + "type": "small_airport", + "name": "Porto Alegre do Norte Airport", + "latitude_deg": "-10.918067", + "longitude_deg": "-51.60941", + "elevation_ft": "712", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Alegre do Norte", + "scheduled_service": "no", + "gps_code": "SDH2", + "local_code": "MT0662" + }, + { + "id": "347850", + "ident": "SDH3", + "type": "small_airport", + "name": "Fazenda São Jorge Airport", + "latitude_deg": "-17.328333", + "longitude_deg": "-54.665", + "elevation_ft": "1781", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Itiquira", + "scheduled_service": "no", + "gps_code": "SDH3", + "local_code": "MT0761" + }, + { + "id": "348222", + "ident": "SDH6", + "type": "small_airport", + "name": "Giongo Participações - Fazenda Victória", + "latitude_deg": "-14.500773", + "longitude_deg": "-53.761597", + "elevation_ft": "1732", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Paranatinga", + "scheduled_service": "no", + "gps_code": "SDH6", + "local_code": "MT0770" + }, + { + "id": "349062", + "ident": "SDH7", + "type": "heliport", + "name": "Base Naval de Aratu Heliport", + "latitude_deg": "-12.794193", + "longitude_deg": "-38.497995", + "elevation_ft": "9", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Candeias", + "scheduled_service": "no", + "gps_code": "SDH7", + "local_code": "BA9002" + }, + { + "id": "349066", + "ident": "SDH8", + "type": "heliport", + "name": "Área de Apoio Administrativo de Fuzileiros Navais em Itaóca Heliport", + "latitude_deg": "-20.963669", + "longitude_deg": "-40.813604", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Itapemirim", + "scheduled_service": "no", + "gps_code": "SDH8", + "local_code": "ES9001" + }, + { + "id": "348224", + "ident": "SDH9", + "type": "heliport", + "name": "BR Marinas Paraty Heliport", + "latitude_deg": "-23.234042", + "longitude_deg": "-44.70635", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Paraty", + "scheduled_service": "no", + "gps_code": "SDH9", + "local_code": "RJ0345" + }, + { + "id": "35542", + "ident": "SDHA", + "type": "heliport", + "name": "HELPN HASP Heliport", + "latitude_deg": "-23.51311", + "longitude_deg": "-46.644232", + "elevation_ft": "2379", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDHA", + "local_code": "SP9003" + }, + { + "id": "35543", + "ident": "SDHB", + "type": "heliport", + "name": "Bradesco Heliport", + "latitude_deg": "-23.54805564880371", + "longitude_deg": "-46.768333435058594", + "elevation_ft": "2467", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Osasco", + "scheduled_service": "no", + "gps_code": "SDHB" + }, + { + "id": "35544", + "ident": "SDHC", + "type": "small_airport", + "name": "Fazenda Koga Airport", + "latitude_deg": "-21.871944427490234", + "longitude_deg": "-49.98027801513672", + "elevation_ft": "1292", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Getulina", + "scheduled_service": "no", + "gps_code": "SDHC" + }, + { + "id": "35545", + "ident": "SDHD", + "type": "heliport", + "name": "Hospital de Clínicas de Niterói Heliport", + "latitude_deg": "-22.89444351196289", + "longitude_deg": "-43.1158332824707", + "elevation_ft": "188", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Niterói", + "scheduled_service": "no", + "gps_code": "SDHD" + }, + { + "id": "35546", + "ident": "SDHE", + "type": "small_airport", + "name": "Fazenda Herdade Airport", + "latitude_deg": "-22.49250030517578", + "longitude_deg": "-46.84361267089844", + "elevation_ft": "2494", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapira", + "scheduled_service": "no", + "gps_code": "SDHE" + }, + { + "id": "323520", + "ident": "SDHF", + "type": "heliport", + "name": "Ambroso Heliport", + "latitude_deg": "-21.966607", + "longitude_deg": "-46.75223", + "elevation_ft": "2654", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São João da Boa Vista", + "scheduled_service": "no", + "gps_code": "SDHF", + "local_code": "SDHF" + }, + { + "id": "35547", + "ident": "SDHG", + "type": "heliport", + "name": "Málaga Heliport", + "latitude_deg": "-23.481666564941406", + "longitude_deg": "-46.77805709838867", + "elevation_ft": "2526", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Osasco", + "scheduled_service": "no", + "gps_code": "SDHG" + }, + { + "id": "35548", + "ident": "SDHH", + "type": "heliport", + "name": "Comercial Campineira de Combustíveis Heliport", + "latitude_deg": "-22.75749969482422", + "longitude_deg": "-47.15805435180664", + "elevation_ft": "1959", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Paulínea", + "scheduled_service": "no", + "gps_code": "SDHH" + }, + { + "id": "35549", + "ident": "SDHI", + "type": "heliport", + "name": "Hospital Gastroclínica Heliport", + "latitude_deg": "-23.594999313354492", + "longitude_deg": "-46.651668548583984", + "elevation_ft": "2566", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDHI" + }, + { + "id": "35550", + "ident": "SDHJ", + "type": "heliport", + "name": "Hospital da Polícia Militar Heliport", + "latitude_deg": "-23.472776", + "longitude_deg": "-46.620277", + "elevation_ft": "2592", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SDHJ" + }, + { + "id": "35551", + "ident": "SDHK", + "type": "heliport", + "name": "Pirelli - Laboratório Eng. Cabos Heliport", + "latitude_deg": "-23.663", + "longitude_deg": "-46.5078", + "elevation_ft": "2559", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santo André", + "scheduled_service": "no", + "gps_code": "SDHK" + }, + { + "id": "35552", + "ident": "SDHL", + "type": "heliport", + "name": "Lagoa Heliport", + "latitude_deg": "-22.975635528564453", + "longitude_deg": "-43.217918395996094", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SDHL" + }, + { + "id": "35553", + "ident": "SDHM", + "type": "heliport", + "name": "Helicentro Morumbí Heliport", + "latitude_deg": "-23.595277786254883", + "longitude_deg": "-46.745277404785156", + "elevation_ft": "2428", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDHM" + }, + { + "id": "35554", + "ident": "SDHN", + "type": "heliport", + "name": "REC Berrini TNU Heliport", + "latitude_deg": "-23.608054", + "longitude_deg": "-46.696945", + "elevation_ft": "2667", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDTN", + "local_code": "SDTN", + "keywords": "SDHN, Philips Heliport" + }, + { + "id": "35555", + "ident": "SDHO", + "type": "heliport", + "name": "Bradesco - Santo André Heliport", + "latitude_deg": "-23.65549", + "longitude_deg": "-46.52876", + "elevation_ft": "2523", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santo André", + "scheduled_service": "no", + "gps_code": "SDHO" + }, + { + "id": "323522", + "ident": "SDHP", + "type": "small_airport", + "name": "Modelo II Airport", + "latitude_deg": "-21.162035", + "longitude_deg": "-53.283775", + "elevation_ft": "1168", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SDHP", + "local_code": "SDHP" + }, + { + "id": "35556", + "ident": "SDHQ", + "type": "heliport", + "name": "Shopping Leste Aricanduva Heliport", + "latitude_deg": "-23.5674991607666", + "longitude_deg": "-46.504722595214844", + "elevation_ft": "2434", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDHQ" + }, + { + "id": "323523", + "ident": "SDHR", + "type": "small_airport", + "name": "Fazenda União Airport", + "latitude_deg": "-20.905209", + "longitude_deg": "-57.229258", + "elevation_ft": "476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SDHR", + "local_code": "SDHR" + }, + { + "id": "35557", + "ident": "SDHS", + "type": "heliport", + "name": "TECSAT Heliport", + "latitude_deg": "-23.242727", + "longitude_deg": "-45.932485", + "elevation_ft": "1975", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São José Dos Campos", + "scheduled_service": "no", + "keywords": "SDHS" + }, + { + "id": "35558", + "ident": "SDHT", + "type": "heliport", + "name": "Cetenco Plaza - Torre Norte Heliport", + "latitude_deg": "-23.558055877685547", + "longitude_deg": "-46.657501220703125", + "elevation_ft": "2943", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDHT" + }, + { + "id": "35559", + "ident": "SDHU", + "type": "heliport", + "name": "Morro da Urca Heliport", + "latitude_deg": "-22.95166778564453", + "longitude_deg": "-43.16583251953125", + "elevation_ft": "692", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SDHU" + }, + { + "id": "35560", + "ident": "SDHV", + "type": "heliport", + "name": "Hospital Albert Einstein Heliport", + "latitude_deg": "-23.600278854370117", + "longitude_deg": "-46.71500015258789", + "elevation_ft": "2828", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDHV" + }, + { + "id": "35561", + "ident": "SDHW", + "type": "heliport", + "name": "Hospital Bandeirantes Heliport", + "latitude_deg": "-23.607221603393555", + "longitude_deg": "-46.63444519042969", + "elevation_ft": "2598", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDHW" + }, + { + "id": "318451", + "ident": "SDHX", + "type": "small_airport", + "name": "D'Tapes Airport", + "latitude_deg": "-30.75022", + "longitude_deg": "-51.53543", + "elevation_ft": "68", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Tapes", + "scheduled_service": "no", + "gps_code": "SDHX", + "local_code": "SDHX" + }, + { + "id": "35562", + "ident": "SDHY", + "type": "heliport", + "name": "Edifício São Gonzaga Heliport", + "latitude_deg": "-23.5567", + "longitude_deg": "-46.6613", + "elevation_ft": "3008", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDHY" + }, + { + "id": "35563", + "ident": "SDHZ", + "type": "heliport", + "name": "Hospital Vera Cruz Heliport", + "latitude_deg": "-22.90416717529297", + "longitude_deg": "-47.067779541015625", + "elevation_ft": "2406", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SDHZ" + }, + { + "id": "307446", + "ident": "SDI", + "type": "small_airport", + "name": "Saidor Airport", + "latitude_deg": "-5.62713888889", + "longitude_deg": "146.462777778", + "elevation_ft": "83", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Saidor", + "scheduled_service": "no", + "gps_code": "AYSD", + "iata_code": "SDI", + "local_code": "SDA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saidor_Airport" + }, + { + "id": "348227", + "ident": "SDI4", + "type": "small_airport", + "name": "Fazenda Amadeus Andrade Airport", + "latitude_deg": "-11.146667", + "longitude_deg": "-62.828889", + "elevation_ft": "876", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Mirante da Serra", + "scheduled_service": "no", + "gps_code": "SDI4", + "local_code": "RO0075" + }, + { + "id": "348229", + "ident": "SDI6", + "type": "heliport", + "name": "Ilha Paraíso Heliport", + "latitude_deg": "-16.259442", + "longitude_deg": "-39.016871", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Santa Cruz Cabrália", + "scheduled_service": "no", + "gps_code": "SDI6", + "local_code": "BA0380" + }, + { + "id": "348231", + "ident": "SDI7", + "type": "small_airport", + "name": "Fazenda Veneza Airport", + "latitude_deg": "-19.585833", + "longitude_deg": "-55.696944", + "elevation_ft": "394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SDI7", + "local_code": "MS0536" + }, + { + "id": "348233", + "ident": "SDI8", + "type": "small_airport", + "name": "Fazenda Cristo Rei Airport", + "latitude_deg": "-9.431412", + "longitude_deg": "-50.306768", + "elevation_ft": "679", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santana do Araguaia", + "scheduled_service": "no", + "gps_code": "SDI8", + "local_code": "PA0298" + }, + { + "id": "348236", + "ident": "SDI9", + "type": "small_airport", + "name": "Fazenda Filipina Airstrip", + "latitude_deg": "-10.236829", + "longitude_deg": "-52.427014", + "elevation_ft": "1119", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santa Cruz do Xingu", + "scheduled_service": "no", + "gps_code": "SDI9", + "local_code": "MT0750" + }, + { + "id": "35564", + "ident": "SDIA", + "type": "heliport", + "name": "Itaú - Boavista Heliport", + "latitude_deg": "-23.545833587646484", + "longitude_deg": "-46.629722595214844", + "elevation_ft": "2525", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDIA" + }, + { + "id": "167", + "ident": "SDIB", + "type": "small_airport", + "name": "Irmãos Ribeiro Airport", + "latitude_deg": "-22.158100128173828", + "longitude_deg": "-46.775299072265625", + "elevation_ft": "3018", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Espírito Santo Do Pinhal", + "scheduled_service": "no", + "gps_code": "SDIB", + "local_code": "SDIB" + }, + { + "id": "331045", + "ident": "SDIC", + "type": "small_airport", + "name": "Fazenda Capão Seco Airport", + "latitude_deg": "-20.71255", + "longitude_deg": "-45.689852", + "elevation_ft": "2657", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Formiga", + "scheduled_service": "no", + "gps_code": "SDIC", + "local_code": "MG0082" + }, + { + "id": "35565", + "ident": "SDID", + "type": "small_airport", + "name": "Itararé Airport", + "latitude_deg": "-24.135278701782227", + "longitude_deg": "-49.32833480834961", + "elevation_ft": "2598", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itararé", + "scheduled_service": "no", + "gps_code": "SDID" + }, + { + "id": "45973", + "ident": "SDIE", + "type": "heliport", + "name": "Industrial Estudantes Heliport", + "latitude_deg": "-23.58944", + "longitude_deg": "-46.87917", + "elevation_ft": "2467", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cotia", + "scheduled_service": "no", + "gps_code": "SDIE", + "local_code": "SDIE" + }, + { + "id": "309762", + "ident": "SDIF", + "type": "heliport", + "name": "Palácio Tiradentes Heliport", + "latitude_deg": "-19.78655", + "longitude_deg": "-43.951565", + "elevation_ft": "2746", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SDIF", + "local_code": "SDIF" + }, + { + "id": "168", + "ident": "SDIG", + "type": "small_airport", + "name": "Ibitinga Airport", + "latitude_deg": "-21.747299194335938", + "longitude_deg": "-48.8557014465332", + "elevation_ft": "1780", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ibitinga", + "scheduled_service": "no", + "gps_code": "SDIG", + "local_code": "SDIG" + }, + { + "id": "35566", + "ident": "SDIH", + "type": "small_airport", + "name": "Fazenda Irohy Airport", + "latitude_deg": "-23.565555572509766", + "longitude_deg": "-46.06944274902344", + "elevation_ft": "2467", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Biritiba-Mirim", + "scheduled_service": "no", + "gps_code": "SDIH" + }, + { + "id": "310716", + "ident": "SDII", + "type": "heliport", + "name": "I Tower Helipad", + "latitude_deg": "-23.5045", + "longitude_deg": "-46.8492", + "elevation_ft": "2900", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SDII" + }, + { + "id": "35567", + "ident": "SDIJ", + "type": "closed", + "name": "Panco 13 Heliport", + "latitude_deg": "-22.756399154663086", + "longitude_deg": "-42.89030075073242", + "elevation_ft": "112", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Itaboraí", + "scheduled_service": "no" + }, + { + "id": "310717", + "ident": "SDIK", + "type": "heliport", + "name": "Alpha Business Empresarial Helipad", + "latitude_deg": "-22.8196", + "longitude_deg": "-47.0353", + "elevation_ft": "2043", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SDIK" + }, + { + "id": "169", + "ident": "SDIL", + "type": "small_airport", + "name": "Fazenda Pedra Branca Airport", + "latitude_deg": "-22.903400421142578", + "longitude_deg": "-44.28900146484375", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SDIL", + "local_code": "SDIL" + }, + { + "id": "35568", + "ident": "SDIM", + "type": "small_airport", + "name": "Itanhaém Airport", + "latitude_deg": "-24.159729", + "longitude_deg": "-46.790604", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itanhaém", + "scheduled_service": "no", + "gps_code": "SDIM", + "iata_code": "JTN", + "home_link": "http://www.voa-sp.com.br/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Itanhaém_Airport" + }, + { + "id": "35569", + "ident": "SDIN", + "type": "closed", + "name": "Clube do Céu Airport", + "latitude_deg": "-22.997497", + "longitude_deg": "-43.40139", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "keywords": "SDIN" + }, + { + "id": "170", + "ident": "SDIO", + "type": "small_airport", + "name": "Aeroclube de Itápolis Airport", + "latitude_deg": "-21.599721908569336", + "longitude_deg": "-48.83277893066406", + "elevation_ft": "1739", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itápolis", + "scheduled_service": "no", + "gps_code": "SDIO", + "local_code": "SDIO" + }, + { + "id": "35570", + "ident": "SDIP", + "type": "small_airport", + "name": "Fazenda Centro de Vôo a Vela Ipuã Airport", + "latitude_deg": "-23.043333053588867", + "longitude_deg": "-45.77555465698242", + "elevation_ft": "1913", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Caçapava", + "scheduled_service": "no", + "gps_code": "SDIP" + }, + { + "id": "35571", + "ident": "SDIQ", + "type": "heliport", + "name": "Goettems Heliport", + "latitude_deg": "-23.0480556488", + "longitude_deg": "-44.194999694799996", + "elevation_ft": "8", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SDIQ" + }, + { + "id": "309670", + "ident": "SDIR", + "type": "heliport", + "name": "Mantimento Island Heliport", + "latitude_deg": "-23.18596", + "longitude_deg": "-44.65875", + "elevation_ft": "62", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Parati", + "scheduled_service": "no", + "keywords": "SDIR" + }, + { + "id": "35572", + "ident": "SDIS", + "type": "heliport", + "name": "The Eagle`s Nest Heliport", + "latitude_deg": "-23.247499465942383", + "longitude_deg": "-49.02944564819336", + "elevation_ft": "1867", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Arandu", + "scheduled_service": "no", + "gps_code": "SDIS" + }, + { + "id": "35573", + "ident": "SDIT", + "type": "heliport", + "name": "Itaú NPD Paulista Heliport", + "latitude_deg": "-23.57666778564453", + "longitude_deg": "-46.65805435180664", + "elevation_ft": "2558", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDIT" + }, + { + "id": "35574", + "ident": "SDIU", + "type": "small_airport", + "name": "Itu Airport", + "latitude_deg": "-23.349722", + "longitude_deg": "-47.327778", + "elevation_ft": "2231", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itu", + "scheduled_service": "no", + "keywords": "SDIU" + }, + { + "id": "171", + "ident": "SDIV", + "type": "small_airport", + "name": "Ituverava Airport", + "latitude_deg": "-20.375499725341797", + "longitude_deg": "-47.768699645996094", + "elevation_ft": "2044", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ituverava", + "scheduled_service": "no", + "gps_code": "SDIV", + "local_code": "SDIV" + }, + { + "id": "35575", + "ident": "SDIW", + "type": "heliport", + "name": "Edifício São Paulo Trade Building Heliport", + "latitude_deg": "-23.593889236450195", + "longitude_deg": "-46.68888854980469", + "elevation_ft": "2628", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDIW" + }, + { + "id": "35576", + "ident": "SDIX", + "type": "heliport", + "name": "Iporanga - Guarujá Heliport", + "latitude_deg": "-23.888478", + "longitude_deg": "-46.172066", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarujá", + "scheduled_service": "no", + "gps_code": "SJNN", + "local_code": "SJNN", + "keywords": "SDIX" + }, + { + "id": "35577", + "ident": "SDIY", + "type": "heliport", + "name": "Fábrica de Motores Rolls Royce Heliport", + "latitude_deg": "-23.698888778686523", + "longitude_deg": "-46.561668395996094", + "elevation_ft": "2575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Bernardo Do Campo", + "scheduled_service": "no", + "gps_code": "SDIY" + }, + { + "id": "35578", + "ident": "SDIZ", + "type": "small_airport", + "name": "Fazenda São Paulo Airport", + "latitude_deg": "-20.155555", + "longitude_deg": "-49.934723", + "elevation_ft": "1656", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cardoso", + "scheduled_service": "no", + "keywords": "SDIZ" + }, + { + "id": "348238", + "ident": "SDJ2", + "type": "small_airport", + "name": "Aero Agrícola Céu Azul Airport", + "latitude_deg": "-12.734734", + "longitude_deg": "-60.199102", + "elevation_ft": "1827", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Vilhena", + "scheduled_service": "no", + "gps_code": "SDJ2", + "local_code": "RO0069" + }, + { + "id": "348240", + "ident": "SDJ3", + "type": "small_airport", + "name": "Fazenda Santa Rita Airport", + "latitude_deg": "-7.245846", + "longitude_deg": "-49.436457", + "elevation_ft": "502", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Rio Maria", + "scheduled_service": "no", + "gps_code": "SDJ3", + "local_code": "PA0297" + }, + { + "id": "349068", + "ident": "SDJ6", + "type": "heliport", + "name": "Cambury Heliport", + "latitude_deg": "-23.769017", + "longitude_deg": "-45.636563", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Sebastião", + "scheduled_service": "no", + "gps_code": "SDJ6", + "local_code": "SP1226" + }, + { + "id": "349073", + "ident": "SDJ7", + "type": "small_airport", + "name": "Fazenda Poço d'Água Airport", + "latitude_deg": "-6.149609", + "longitude_deg": "-42.953627", + "elevation_ft": "371", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Amarante", + "scheduled_service": "no", + "gps_code": "SDJ7", + "local_code": "PI0083" + }, + { + "id": "349518", + "ident": "SDJ8", + "type": "small_airport", + "name": "Fazenda Barra Longa Airstrip", + "latitude_deg": "-22.831389", + "longitude_deg": "-48.384444", + "elevation_ft": "1660", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Botucatu", + "scheduled_service": "no", + "gps_code": "SDJ8", + "local_code": "SP1293" + }, + { + "id": "349918", + "ident": "SDJ9", + "type": "small_airport", + "name": "Fazenda Triângulo Airport", + "latitude_deg": "-6.758333", + "longitude_deg": "-49.438333", + "elevation_ft": "600", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Sapucaia", + "scheduled_service": "no", + "gps_code": "SDJ9", + "local_code": "PA0308" + }, + { + "id": "172", + "ident": "SDJA", + "type": "small_airport", + "name": "Doutor José Augusto de Arruda Botelho Airport", + "latitude_deg": "-22.19472", + "longitude_deg": "-47.86167", + "elevation_ft": "2569", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itirapina", + "scheduled_service": "no", + "gps_code": "SDJA", + "local_code": "SDJA" + }, + { + "id": "46362", + "ident": "SDJB", + "type": "heliport", + "name": "Quinta Da Baroneza II Heliport", + "latitude_deg": "-22.973056", + "longitude_deg": "-46.7", + "elevation_ft": "2526", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Bragança Paulista", + "scheduled_service": "no", + "gps_code": "SDJB", + "local_code": "SDJB" + }, + { + "id": "29985", + "ident": "SDJC", + "type": "small_airport", + "name": "Jaboticabal Airport", + "latitude_deg": "-21.229999542236328", + "longitude_deg": "-48.284698486328125", + "elevation_ft": "2024", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jaboticabal", + "scheduled_service": "no", + "gps_code": "SDJC", + "iata_code": "0" + }, + { + "id": "323525", + "ident": "SDJD", + "type": "heliport", + "name": "Juquehy Baleia Heliport", + "latitude_deg": "-23.760268", + "longitude_deg": "-45.712191", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Sebastião", + "scheduled_service": "no", + "gps_code": "SDJD", + "local_code": "SDJD" + }, + { + "id": "35579", + "ident": "SDJE", + "type": "closed", + "name": "Avibrás II Heliport", + "latitude_deg": "-23.345832824699997", + "longitude_deg": "-45.8250007629", + "elevation_ft": "2133", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jacareí", + "scheduled_service": "no", + "gps_code": "SDJE" + }, + { + "id": "35580", + "ident": "SDJF", + "type": "small_airport", + "name": "Fazenda Jequitibá Airport", + "latitude_deg": "-23.845277786254883", + "longitude_deg": "-48.448055267333984", + "elevation_ft": "2310", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Buri", + "scheduled_service": "no", + "gps_code": "SDJF" + }, + { + "id": "35581", + "ident": "SDJG", + "type": "small_airport", + "name": "Fazenda Ponte Preta Airport", + "latitude_deg": "-22.733333587646484", + "longitude_deg": "-49.483333587646484", + "elevation_ft": "1689", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santa Cruz Do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SDJG" + }, + { + "id": "46467", + "ident": "SDJH", + "type": "heliport", + "name": "Norberto Odebrecht Helipad", + "latitude_deg": "-12.96251", + "longitude_deg": "-38.436098", + "elevation_ft": "154", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Salvador", + "scheduled_service": "no", + "gps_code": "SIUT", + "local_code": "BA0196", + "keywords": "SDJH" + }, + { + "id": "35582", + "ident": "SDJI", + "type": "heliport", + "name": "Avibrás II Heliport", + "latitude_deg": "-23.32638931274414", + "longitude_deg": "-45.817222595214844", + "elevation_ft": "2395", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jacareí", + "scheduled_service": "no", + "gps_code": "SDJI" + }, + { + "id": "35583", + "ident": "SDJJ", + "type": "heliport", + "name": "Francisco Mellão Heliport", + "latitude_deg": "-23.593609", + "longitude_deg": "-46.688445", + "elevation_ft": "2634", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDKG", + "local_code": "SP0371", + "keywords": "SDJJ" + }, + { + "id": "310846", + "ident": "SDJK", + "type": "heliport", + "name": "Centro Empresarial Araguaia Helipad", + "latitude_deg": "-23.501781", + "longitude_deg": "-46.842163", + "elevation_ft": "2710", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SDJK", + "local_code": "SP0363" + }, + { + "id": "174", + "ident": "SDJL", + "type": "small_airport", + "name": "Jales Airport", + "latitude_deg": "-20.292999267578125", + "longitude_deg": "-50.5463981628418", + "elevation_ft": "1496", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jales", + "scheduled_service": "no", + "gps_code": "SDJL", + "iata_code": "JLS", + "local_code": "SDJL" + }, + { + "id": "35584", + "ident": "SDJM", + "type": "heliport", + "name": "Sítio Santo Antônio Heliport", + "latitude_deg": "-23.13249969482422", + "longitude_deg": "-46.9283332824707", + "elevation_ft": "2520", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jundiaí", + "scheduled_service": "no", + "gps_code": "SDJM" + }, + { + "id": "35585", + "ident": "SDJN", + "type": "small_airport", + "name": "Fazenda São Luiz Airport", + "latitude_deg": "-21.100555419921875", + "longitude_deg": "-47.75055694580078", + "elevation_ft": "1772", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jardinópolis", + "scheduled_service": "no", + "gps_code": "SDJN" + }, + { + "id": "30374", + "ident": "SDJO", + "type": "small_airport", + "name": "São Joaquim da Barra Airport", + "latitude_deg": "-20.593299865722656", + "longitude_deg": "-47.842201232910156", + "elevation_ft": "2136", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Joaquim Da Barra", + "scheduled_service": "no", + "gps_code": "SDJO", + "iata_code": "0" + }, + { + "id": "323526", + "ident": "SDJP", + "type": "heliport", + "name": "Helicentro Carcará Heliport", + "latitude_deg": "-22.745286", + "longitude_deg": "-43.464406", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Nova Iguaçu", + "scheduled_service": "no", + "gps_code": "SI3M", + "local_code": "RJ0373", + "keywords": "SDJP" + }, + { + "id": "175", + "ident": "SDJQ", + "type": "small_airport", + "name": "Fazenda São Joaquim O.B. Airport", + "latitude_deg": "-20.828399658203125", + "longitude_deg": "-51.007999420166016", + "elevation_ft": "1276", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Pereira Barreto", + "scheduled_service": "no", + "gps_code": "SDJQ", + "local_code": "SDJQ" + }, + { + "id": "35586", + "ident": "SDJR", + "type": "small_airport", + "name": "Fazenda Santa Inês Airport", + "latitude_deg": "-20.88249969482422", + "longitude_deg": "-49.39250183105469", + "elevation_ft": "1804", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São José Do Rio Preto", + "scheduled_service": "no", + "gps_code": "SDJR" + }, + { + "id": "323527", + "ident": "SDJS", + "type": "small_airport", + "name": "Andorinha Airport", + "latitude_deg": "4.727222", + "longitude_deg": "-60.241667", + "elevation_ft": "735", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SDJS", + "local_code": "SDJS" + }, + { + "id": "35587", + "ident": "SDJT", + "type": "heliport", + "name": "J. Toledo Heliport", + "latitude_deg": "-23.17472267150879", + "longitude_deg": "-46.90833282470703", + "elevation_ft": "2287", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jundiaí", + "scheduled_service": "no", + "gps_code": "SDJT" + }, + { + "id": "35588", + "ident": "SDJU", + "type": "heliport", + "name": "Hospital São Luiz Heliport", + "latitude_deg": "-23.59027862548828", + "longitude_deg": "-46.67277908325195", + "elevation_ft": "2536", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDJU" + }, + { + "id": "35589", + "ident": "SDJV", + "type": "small_airport", + "name": "São João da Boa Vista Airport", + "latitude_deg": "-22.017221450805664", + "longitude_deg": "-46.8408317565918", + "elevation_ft": "2500", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São João Da Boa Vista", + "scheduled_service": "no", + "gps_code": "SDJV" + }, + { + "id": "35590", + "ident": "SDJW", + "type": "heliport", + "name": "Rede D'Or São Luiz Morumbi Heliport", + "latitude_deg": "-23.591053", + "longitude_deg": "-46.70359", + "elevation_ft": "2552", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDJW", + "local_code": "SP0368", + "keywords": "Hospital Cidade Jardim" + }, + { + "id": "323528", + "ident": "SDJX", + "type": "small_airport", + "name": "Fazenda Serra Dourada Airport", + "latitude_deg": "-13.105634", + "longitude_deg": "-48.382523", + "elevation_ft": "1585", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Palmeirópolis", + "scheduled_service": "no", + "gps_code": "SDJX", + "local_code": "SDJX" + }, + { + "id": "35591", + "ident": "SDJY", + "type": "heliport", + "name": "Paulista Capital Plaza - The Flat Heliport", + "latitude_deg": "-23.57111167907715", + "longitude_deg": "-46.64611053466797", + "elevation_ft": "2953", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDJY" + }, + { + "id": "29863", + "ident": "SDJZ", + "type": "small_airport", + "name": "Fazenda Barra do Agudo Airport", + "latitude_deg": "-20.810328", + "longitude_deg": "-48.222595", + "elevation_ft": "1608", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Morro Agudo", + "scheduled_service": "no", + "gps_code": "SIYE", + "local_code": "SP0200", + "keywords": "SDJZ" + }, + { + "id": "349919", + "ident": "SDK2", + "type": "small_airport", + "name": "Aldeia Apalai Bona Airstrip", + "latitude_deg": "1.218611", + "longitude_deg": "-54.658611", + "elevation_ft": "1024", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Almeirim", + "scheduled_service": "no", + "gps_code": "SDK2", + "local_code": "PA0247" + }, + { + "id": "350024", + "ident": "SDK3", + "type": "small_airport", + "name": "Fazenda Oeste Airstrip", + "latitude_deg": "-13.808611", + "longitude_deg": "-59.656389", + "elevation_ft": "2211", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SDK3", + "local_code": "MT0611" + }, + { + "id": "351503", + "ident": "SDK6", + "type": "small_airport", + "name": "Fazenda Sossego Airport", + "latitude_deg": "-4.95271", + "longitude_deg": "-38.377508", + "elevation_ft": "305", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Morada Nova", + "scheduled_service": "no", + "gps_code": "SDK6", + "local_code": "CE0136" + }, + { + "id": "349081", + "ident": "SDK7", + "type": "small_airport", + "name": "Nova Andradina Municipal Airport", + "latitude_deg": "-22.162667", + "longitude_deg": "-53.329921", + "elevation_ft": "1375", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Andradina", + "scheduled_service": "no", + "gps_code": "SDK7", + "local_code": "MS0563" + }, + { + "id": "349084", + "ident": "SDK8", + "type": "small_airport", + "name": "Fazenda Baú Airstrip", + "latitude_deg": "-16.503831", + "longitude_deg": "-57.599282", + "elevation_ft": "558", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SDK8", + "local_code": "MT0729" + }, + { + "id": "349923", + "ident": "SDK9", + "type": "small_airport", + "name": "Fazenda Califórnia Airport", + "latitude_deg": "-21.115833", + "longitude_deg": "-52.613333", + "elevation_ft": "1181", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Brasilândia", + "scheduled_service": "no", + "gps_code": "SDK9", + "local_code": "MS0504" + }, + { + "id": "323534", + "ident": "SDKA", + "type": "small_airport", + "name": "Angical Airport", + "latitude_deg": "4.164573", + "longitude_deg": "-59.835001", + "elevation_ft": "184", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Normandia", + "scheduled_service": "no", + "gps_code": "SDKA", + "local_code": "SDKA" + }, + { + "id": "35592", + "ident": "SDKB", + "type": "small_airport", + "name": "Casa Branca Municipal Airport", + "latitude_deg": "-21.788055", + "longitude_deg": "-47.055557", + "elevation_ft": "2346", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Casa Branca", + "scheduled_service": "no", + "gps_code": "SSCB", + "local_code": "SP0044", + "keywords": "SDKB" + }, + { + "id": "35593", + "ident": "SDKC", + "type": "small_airport", + "name": "Fazenda Eldorado Airport", + "latitude_deg": "-22.303611755371094", + "longitude_deg": "-49.462223052978516", + "elevation_ft": "1771", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Gália", + "scheduled_service": "no", + "gps_code": "SDKC" + }, + { + "id": "35594", + "ident": "SDKD", + "type": "heliport", + "name": "Condomínio América Business Park Heliport", + "latitude_deg": "-23.61833381652832", + "longitude_deg": "-46.70305633544922", + "elevation_ft": "2490", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDKD" + }, + { + "id": "35595", + "ident": "SDKE", + "type": "small_airport", + "name": "Coribe Airport", + "latitude_deg": "-13.829429", + "longitude_deg": "-44.469116", + "elevation_ft": "2198", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Coribe", + "scheduled_service": "no", + "local_code": "BA0052", + "keywords": "SDKE" + }, + { + "id": "176", + "ident": "SDKF", + "type": "small_airport", + "name": "Juazeiro Airport", + "latitude_deg": "-9.155540466309999", + "longitude_deg": "-40.0914001465", + "elevation_ft": "1220", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Curaçá", + "scheduled_service": "no", + "gps_code": "SDKF", + "local_code": "SDKF" + }, + { + "id": "35596", + "ident": "SDKG", + "type": "small_airport", + "name": "Fazenda Gávea Airport", + "latitude_deg": "-23.225", + "longitude_deg": "-49.179169", + "elevation_ft": "2031", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cerqueira César", + "scheduled_service": "no", + "gps_code": "SSQK", + "local_code": "SSQK", + "keywords": "SDKG" + }, + { + "id": "35597", + "ident": "SDKH", + "type": "heliport", + "name": "Edifício New Century Heliport", + "latitude_deg": "-21.205485", + "longitude_deg": "-47.810173", + "elevation_ft": "2179", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Preto", + "scheduled_service": "no", + "keywords": "SDKH" + }, + { + "id": "35598", + "ident": "SDKI", + "type": "heliport", + "name": "CL Heliport", + "latitude_deg": "-23.224443435668945", + "longitude_deg": "-45.906944274902344", + "elevation_ft": "1993", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São José Dos Campos", + "scheduled_service": "no", + "gps_code": "SDKI" + }, + { + "id": "177", + "ident": "SDKJ", + "type": "small_airport", + "name": "Formosa do Rio Preto Airport", + "latitude_deg": "-11.021599769592285", + "longitude_deg": "-45.18669891357422", + "elevation_ft": "1598", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Formosa Do Rio Preto", + "scheduled_service": "no", + "gps_code": "SDKJ", + "local_code": "SDKJ" + }, + { + "id": "30146", + "ident": "SDKK", + "type": "small_airport", + "name": "Mococa Airport", + "latitude_deg": "-21.48780059814453", + "longitude_deg": "-47.034400939941406", + "elevation_ft": "2116", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mococa", + "scheduled_service": "no", + "gps_code": "SDKK", + "iata_code": "QOA" + }, + { + "id": "329363", + "ident": "SDKL", + "type": "small_airport", + "name": "Caracaranã Airport", + "latitude_deg": "3.835853", + "longitude_deg": "-59.777179", + "elevation_ft": "108", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Normandia", + "scheduled_service": "no", + "gps_code": "SDKL", + "local_code": "SDKL" + }, + { + "id": "35599", + "ident": "SDKM", + "type": "heliport", + "name": "Hotel Emiliano Heliport", + "latitude_deg": "-23.565832138061523", + "longitude_deg": "-46.665279388427734", + "elevation_ft": "2716", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDKM" + }, + { + "id": "35600", + "ident": "SDKN", + "type": "small_airport", + "name": "Fazenda e Haras Bela Vista Airport", + "latitude_deg": "-22.43805694580078", + "longitude_deg": "-48.405555725097656", + "elevation_ft": "2339", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mineiros Do Tietê", + "scheduled_service": "no", + "gps_code": "SDKN" + }, + { + "id": "178", + "ident": "SDKO", + "type": "small_airport", + "name": "Fazenda Campo Grande Airport", + "latitude_deg": "-20.257699966430664", + "longitude_deg": "-48.78860092163086", + "elevation_ft": "1830", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Colômbia", + "scheduled_service": "no", + "gps_code": "SDKO", + "local_code": "SDKO" + }, + { + "id": "35601", + "ident": "SDKP", + "type": "small_airport", + "name": "Fazenda Jamaica Airport", + "latitude_deg": "-22.188569", + "longitude_deg": "-50.274373", + "elevation_ft": "1598", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Pompéia", + "scheduled_service": "no", + "gps_code": "SWAN", + "local_code": "SP1285", + "keywords": "SDKP" + }, + { + "id": "35602", + "ident": "SDKQ", + "type": "small_airport", + "name": "Fazenda São João Airport", + "latitude_deg": "-20.21666717529297", + "longitude_deg": "-49.06666564941406", + "elevation_ft": "1673", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guaraci", + "scheduled_service": "no", + "gps_code": "SDKQ" + }, + { + "id": "35603", + "ident": "SDKR", + "type": "small_airport", + "name": "Fazenda Triângulo Airport", + "latitude_deg": "-15.175000190734863", + "longitude_deg": "-59.171112060546875", + "elevation_ft": "1116", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes E Lacerda", + "scheduled_service": "no", + "gps_code": "SDKR" + }, + { + "id": "35604", + "ident": "SDKS", + "type": "heliport", + "name": "Torre da Glória Heliport", + "latitude_deg": "-22.91805648803711", + "longitude_deg": "-43.177223205566406", + "elevation_ft": "197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SDKS" + }, + { + "id": "35605", + "ident": "SDKT", + "type": "heliport", + "name": "Edifício Dacon Heliport", + "latitude_deg": "-23.568056106567383", + "longitude_deg": "-46.68388748168945", + "elevation_ft": "2703", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDKT" + }, + { + "id": "35606", + "ident": "SDKU", + "type": "heliport", + "name": "Itanhangá Heliport", + "latitude_deg": "-23.060832977294922", + "longitude_deg": "-47.185279846191406", + "elevation_ft": "2313", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Indaiatuba", + "scheduled_service": "no", + "gps_code": "SDKU" + }, + { + "id": "35607", + "ident": "SDKV", + "type": "heliport", + "name": "Rede Globo Heliport", + "latitude_deg": "-23.6148", + "longitude_deg": "-46.696819", + "elevation_ft": "2384", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDKV", + "local_code": "SP0377" + }, + { + "id": "46188", + "ident": "SDKW", + "type": "small_airport", + "name": "Fazenda Sodema Airport", + "latitude_deg": "-12.296355", + "longitude_deg": "-55.538442", + "elevation_ft": "1181", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vera", + "scheduled_service": "no", + "gps_code": "SDBD", + "local_code": "MT0031", + "keywords": "SDKW" + }, + { + "id": "326996", + "ident": "SDKX", + "type": "small_airport", + "name": "Fazenda Agrovás Airport", + "latitude_deg": "-11.513307", + "longitude_deg": "-52.411426", + "elevation_ft": "1070", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São Félix do Araguaia", + "scheduled_service": "no", + "gps_code": "SJXG", + "local_code": "MT0618", + "keywords": "SDKX" + }, + { + "id": "35608", + "ident": "SDKY", + "type": "heliport", + "name": "Hospital das Clínicas Heliport", + "latitude_deg": "-23.557777404785156", + "longitude_deg": "-46.668888092041016", + "elevation_ft": "2740", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDKY" + }, + { + "id": "326997", + "ident": "SDKZ", + "type": "small_airport", + "name": "Caraparu 4 Airport", + "latitude_deg": "4.557947", + "longitude_deg": "-60.470043", + "elevation_ft": "2525", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SDKZ" + }, + { + "id": "348374", + "ident": "SDL2", + "type": "small_airport", + "name": "Fazenda São José Airport", + "latitude_deg": "-12.08991", + "longitude_deg": "-54.940149", + "elevation_ft": "1214", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santa Carmem", + "scheduled_service": "no", + "gps_code": "SDL2", + "local_code": "MT0661" + }, + { + "id": "350029", + "ident": "SDL3", + "type": "small_airport", + "name": "Agropecuária Império Airport", + "latitude_deg": "-19.112144", + "longitude_deg": "-52.077974", + "elevation_ft": "1814", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Cassilândia", + "scheduled_service": "no", + "gps_code": "SDL3", + "local_code": "MS0527" + }, + { + "id": "350228", + "ident": "SDL6", + "type": "small_airport", + "name": "Reunidas do Pontal Airport", + "latitude_deg": "-17.989167", + "longitude_deg": "-50.020278", + "elevation_ft": "1847", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiatuba", + "scheduled_service": "no", + "gps_code": "SDL6", + "local_code": "GO0315" + }, + { + "id": "349941", + "ident": "SDL7", + "type": "small_airport", + "name": "Águias de Trindade", + "latitude_deg": "-16.591698", + "longitude_deg": "-49.394107", + "elevation_ft": "2739", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Trindade", + "scheduled_service": "no", + "gps_code": "SDL7", + "local_code": "GO0204" + }, + { + "id": "349943", + "ident": "SDL8", + "type": "small_airport", + "name": "Lagoa da Serra Airport", + "latitude_deg": "-13.968471", + "longitude_deg": "-51.447754", + "elevation_ft": "781", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cocalinho", + "scheduled_service": "no", + "gps_code": "SDL8", + "local_code": "MT0537" + }, + { + "id": "349944", + "ident": "SDL9", + "type": "small_airport", + "name": "Fazenda Gobbo Airport", + "latitude_deg": "-17.096071", + "longitude_deg": "-55.238954", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santo Antônio do Leverger", + "scheduled_service": "no", + "gps_code": "SDL9", + "local_code": "MT0760" + }, + { + "id": "35609", + "ident": "SDLA", + "type": "heliport", + "name": "Condomínio Laranjeiras Heliport", + "latitude_deg": "-23.344167709399997", + "longitude_deg": "-44.66083145139999", + "elevation_ft": "11", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Parati", + "scheduled_service": "no", + "gps_code": "SDLA" + }, + { + "id": "35610", + "ident": "SDLB", + "type": "heliport", + "name": "Metropolitan Office Heliport", + "latitude_deg": "-23.580833435058594", + "longitude_deg": "-46.682498931884766", + "elevation_ft": "2670", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDLB" + }, + { + "id": "30089", + "ident": "SDLC", + "type": "small_airport", + "name": "Aeroclube de Lucélia - Cmte João Possibom Airport", + "latitude_deg": "-21.748877", + "longitude_deg": "-51.017632", + "elevation_ft": "1460", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Lucélia", + "scheduled_service": "no", + "gps_code": "SJ2Y", + "local_code": "SP0039", + "keywords": "SDLC" + }, + { + "id": "35611", + "ident": "SDLD", + "type": "heliport", + "name": "Fazenda São Miguel Heliport", + "latitude_deg": "-24.198151", + "longitude_deg": "-48.642858", + "elevation_ft": "2894", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Branco", + "scheduled_service": "no", + "gps_code": "SIKG", + "local_code": "SP0517", + "keywords": "SDLD" + }, + { + "id": "35612", + "ident": "SDLE", + "type": "small_airport", + "name": "Rio de Contas Airport", + "latitude_deg": "-13.587499618530273", + "longitude_deg": "-41.78916549682617", + "elevation_ft": "3576", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Rio De Contas", + "scheduled_service": "no", + "gps_code": "SDLE" + }, + { + "id": "35613", + "ident": "SDLF", + "type": "heliport", + "name": "SBT Heliport", + "latitude_deg": "-23.476667404174805", + "longitude_deg": "-46.77750015258789", + "elevation_ft": "2639", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Osasco", + "scheduled_service": "no", + "gps_code": "SDLF" + }, + { + "id": "35614", + "ident": "SDLG", + "type": "small_airport", + "name": "Salviano Inácio Rocha Airport", + "latitude_deg": "-10.974444389343262", + "longitude_deg": "-41.06944274902344", + "elevation_ft": "1890", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Ourolândia", + "scheduled_service": "no", + "gps_code": "SDLG" + }, + { + "id": "35615", + "ident": "SDLH", + "type": "small_airport", + "name": "Caldas do Jorro Airport", + "latitude_deg": "-11.044166564941406", + "longitude_deg": "-38.7841682434082", + "elevation_ft": "696", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Tucano", + "scheduled_service": "no", + "gps_code": "SDLH" + }, + { + "id": "179", + "ident": "SDLI", + "type": "small_airport", + "name": "Jeová Gomes Corrêa Airport", + "latitude_deg": "-8.73699", + "longitude_deg": "-39.115398", + "elevation_ft": "955", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Abaré", + "scheduled_service": "no", + "local_code": "BA0039", + "keywords": "SDLI" + }, + { + "id": "180", + "ident": "SDLJ", + "type": "small_airport", + "name": "Igarapé Bahia Airport", + "latitude_deg": "-6.0477800369262695", + "longitude_deg": "-50.5797004699707", + "elevation_ft": "2257", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Parauapebas", + "scheduled_service": "no", + "gps_code": "SDLJ", + "local_code": "SDLJ" + }, + { + "id": "181", + "ident": "SDLK", + "type": "small_airport", + "name": "Caculé Airport", + "latitude_deg": "-14.481200218200684", + "longitude_deg": "-42.26470184326172", + "elevation_ft": "2064", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Caculé", + "scheduled_service": "no", + "gps_code": "SDLK", + "local_code": "SDLK" + }, + { + "id": "30067", + "ident": "SDLL", + "type": "small_airport", + "name": "Leme Airport", + "latitude_deg": "-22.226900100708008", + "longitude_deg": "-47.382198333740234", + "elevation_ft": "2024", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Leme", + "scheduled_service": "no", + "gps_code": "SDLL", + "iata_code": "0" + }, + { + "id": "29978", + "ident": "SDLM", + "type": "closed", + "name": "Ipua Faz Alianca Airport", + "latitude_deg": "-20.5049991607666", + "longitude_deg": "-48.0442008972168", + "elevation_ft": "2375", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ipua", + "scheduled_service": "no", + "gps_code": "SDLM" + }, + { + "id": "35616", + "ident": "SDLN", + "type": "heliport", + "name": "Tosana Heliport", + "latitude_deg": "-22.600385", + "longitude_deg": "-42.025385", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Cabo Frio", + "scheduled_service": "no", + "gps_code": "SDLN" + }, + { + "id": "182", + "ident": "SDLO", + "type": "small_airport", + "name": "Fazenda Pontal Airport", + "latitude_deg": "-13.564800262451172", + "longitude_deg": "-38.939998626708984", + "elevation_ft": "12", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Cairu", + "scheduled_service": "no", + "gps_code": "SDLO", + "local_code": "SDLO" + }, + { + "id": "183", + "ident": "SDLP", + "type": "small_airport", + "name": "Lençóis Paulista Airport", + "latitude_deg": "-22.578399658203125", + "longitude_deg": "-48.774600982666016", + "elevation_ft": "2039", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Lençóis Paulista", + "scheduled_service": "no", + "gps_code": "SDLP", + "iata_code": "QGC", + "local_code": "SDLP" + }, + { + "id": "35617", + "ident": "SDLQ", + "type": "closed", + "name": "Fazenda Perobal Airport", + "latitude_deg": "-21.503611", + "longitude_deg": "-50.778057", + "elevation_ft": "1339", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guararapes", + "scheduled_service": "no", + "keywords": "SDLQ, SDLT" + }, + { + "id": "35618", + "ident": "SDLR", + "type": "small_airport", + "name": "Fazenda Sonho Dourado Airport", + "latitude_deg": "-20.467222213745117", + "longitude_deg": "-50.1422233581543", + "elevation_ft": "1722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Valentim Gentil", + "scheduled_service": "no", + "gps_code": "SDLR" + }, + { + "id": "35619", + "ident": "SDLS", + "type": "heliport", + "name": "Terminal Petrobrás - Guararema Heliport", + "latitude_deg": "-23.414167404174805", + "longitude_deg": "-45.96666717529297", + "elevation_ft": "1919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guararema", + "scheduled_service": "no", + "gps_code": "SDLS" + }, + { + "id": "35620", + "ident": "SDLT", + "type": "closed", + "name": "Fazenda Santa Rita Airport", + "latitude_deg": "-22.1994", + "longitude_deg": "-50.3736", + "elevation_ft": "1437", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Lutecia", + "scheduled_service": "no", + "keywords": "SDLT" + }, + { + "id": "184", + "ident": "SDLU", + "type": "small_airport", + "name": "Fazenda Santa Luíza Airport", + "latitude_deg": "-22.48310089111328", + "longitude_deg": "-48.52450180053711", + "elevation_ft": "1782", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barra Bonita", + "scheduled_service": "no", + "gps_code": "SDLU", + "local_code": "SDLU" + }, + { + "id": "35621", + "ident": "SDLV", + "type": "small_airport", + "name": "Fazenda São Francisco Airport", + "latitude_deg": "-22.920833587646484", + "longitude_deg": "-51.35194396972656", + "elevation_ft": "1581", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Florestópolis", + "scheduled_service": "no", + "gps_code": "SDLV" + }, + { + "id": "35622", + "ident": "SDLW", + "type": "small_airport", + "name": "Fazenda Campo Real Airport", + "latitude_deg": "-13.442765", + "longitude_deg": "-57.785465", + "elevation_ft": "1703", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo do Parecis", + "scheduled_service": "no", + "gps_code": "SD99", + "local_code": "MT0704", + "keywords": "SDLW" + }, + { + "id": "35623", + "ident": "SDLX", + "type": "small_airport", + "name": "Fazenda Jacareúna Airport", + "latitude_deg": "-11.441834", + "longitude_deg": "-52.200036", + "elevation_ft": "1417", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São Félix do Araguaia", + "scheduled_service": "no", + "gps_code": "SDLX", + "local_code": "MT0041" + }, + { + "id": "30121", + "ident": "SDLY", + "type": "small_airport", + "name": "Matão Airport", + "latitude_deg": "-21.62310028076172", + "longitude_deg": "-48.352500915527344", + "elevation_ft": "2083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Matão", + "scheduled_service": "no", + "gps_code": "SDLY", + "iata_code": "0" + }, + { + "id": "349779", + "ident": "SDM2", + "type": "small_airport", + "name": "Fazenda Ipê Airport", + "latitude_deg": "-14.104477", + "longitude_deg": "-55.197791", + "elevation_ft": "1667", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santa Rita do Trivelato", + "scheduled_service": "no", + "gps_code": "SDM2", + "local_code": "MT0779" + }, + { + "id": "350229", + "ident": "SDM3", + "type": "small_airport", + "name": "Agrodipe Airport", + "latitude_deg": "-7.765323", + "longitude_deg": "-45.371656", + "elevation_ft": "1496", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Ribeiro Gonçalves", + "scheduled_service": "no", + "gps_code": "SDM3", + "local_code": "PI0086" + }, + { + "id": "349777", + "ident": "SDM6", + "type": "small_airport", + "name": "Fazenda São Domingos Airport", + "latitude_deg": "-22.536414", + "longitude_deg": "-53.324424", + "elevation_ft": "876", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Taquarussu", + "scheduled_service": "no", + "gps_code": "SDM6", + "local_code": "MS0580" + }, + { + "id": "349774", + "ident": "SDM7", + "type": "small_airport", + "name": "Fazenda Marajoara Airstrip", + "latitude_deg": "-17.283171", + "longitude_deg": "-54.072218", + "elevation_ft": "2349", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Itiquira", + "scheduled_service": "no", + "gps_code": "SDM7", + "local_code": "MT0772" + }, + { + "id": "350234", + "ident": "SDM8", + "type": "small_airport", + "name": "Agrícola Zanella Airport", + "latitude_deg": "-14.121111", + "longitude_deg": "-59.216667", + "elevation_ft": "2346", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campos de Júlio", + "scheduled_service": "no", + "gps_code": "SDM8", + "local_code": "MT0767" + }, + { + "id": "349949", + "ident": "SDM9", + "type": "small_airport", + "name": "Fazenda Sete Povos II Airport", + "latitude_deg": "-12.901667", + "longitude_deg": "-46.155833", + "elevation_ft": "3005", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SDM9", + "local_code": "BA0377" + }, + { + "id": "35624", + "ident": "SDMA", + "type": "small_airport", + "name": "Fazenda Maristela Airport", + "latitude_deg": "-22.954517", + "longitude_deg": "-45.603636", + "elevation_ft": "1788", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Tremembé", + "scheduled_service": "no", + "gps_code": "SDA4", + "local_code": "SP1305", + "keywords": "SDMA" + }, + { + "id": "35625", + "ident": "SDMB", + "type": "heliport", + "name": "Benteler Heliport", + "latitude_deg": "-23.00179", + "longitude_deg": "-47.116891", + "elevation_ft": "2156", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SDMB", + "local_code": "SP0384" + }, + { + "id": "185", + "ident": "SDMC", + "type": "small_airport", + "name": "Maricá Airport", + "latitude_deg": "-22.9195", + "longitude_deg": "-42.830898", + "elevation_ft": "5", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Maricá", + "scheduled_service": "no", + "gps_code": "SBMI", + "local_code": "RJ0009", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maric%C3%A1_Airport", + "keywords": "SDMC" + }, + { + "id": "46104", + "ident": "SDMD", + "type": "small_airport", + "name": "Fazenda Santa Izabel Airport", + "latitude_deg": "-18", + "longitude_deg": "-54.6958333333", + "elevation_ft": "1033", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Coxim", + "scheduled_service": "no", + "gps_code": "SDMD", + "local_code": "SDMD" + }, + { + "id": "186", + "ident": "SDME", + "type": "small_airport", + "name": "Marchesan S.A. Airport", + "latitude_deg": "-21.630599975585938", + "longitude_deg": "-48.39289855957031", + "elevation_ft": "1942", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Matão", + "scheduled_service": "no", + "gps_code": "SDME", + "local_code": "SDME" + }, + { + "id": "35626", + "ident": "SDMF", + "type": "heliport", + "name": "Maresias Heliport", + "latitude_deg": "-23.786737", + "longitude_deg": "-45.572213", + "elevation_ft": "36", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Sebastião", + "scheduled_service": "no", + "gps_code": "SDLQ", + "local_code": "SP0382", + "keywords": "SDMF" + }, + { + "id": "327001", + "ident": "SDMG", + "type": "small_airport", + "name": "Haxiu Airport", + "latitude_deg": "2.675404", + "longitude_deg": "-63.74692", + "elevation_ft": "2497", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Alto Alegre", + "scheduled_service": "no", + "gps_code": "SDMG" + }, + { + "id": "30141", + "ident": "SDMH", + "type": "small_airport", + "name": "Mirassol Airport", + "latitude_deg": "-20.807199478149414", + "longitude_deg": "-49.48609924316406", + "elevation_ft": "1916", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mirassol", + "scheduled_service": "no", + "gps_code": "SDMH", + "iata_code": "0" + }, + { + "id": "35627", + "ident": "SDMI", + "type": "heliport", + "name": "Comando do 8º Distrito Naval Heliport", + "latitude_deg": "-23.593708", + "longitude_deg": "-46.646335", + "elevation_ft": "2580", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDMI", + "local_code": "SP9005" + }, + { + "id": "30148", + "ident": "SDMJ", + "type": "small_airport", + "name": "Mogi Mirim Airport", + "latitude_deg": "-22.40999984741211", + "longitude_deg": "-46.90530014038086", + "elevation_ft": "2274", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mogi Mirim", + "scheduled_service": "no", + "gps_code": "SDMJ", + "iata_code": "0" + }, + { + "id": "327003", + "ident": "SDMK", + "type": "small_airport", + "name": "Letícia Airport", + "latitude_deg": "-21.552032", + "longitude_deg": "-53.558751", + "elevation_ft": "1191", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas do Rio Pardo", + "scheduled_service": "no", + "keywords": "SDMK" + }, + { + "id": "35628", + "ident": "SDML", + "type": "small_airport", + "name": "Plataforma Merluza Airport", + "latitude_deg": "-25.26689910888672", + "longitude_deg": "-45.25279998779297", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Sebastião", + "scheduled_service": "no", + "gps_code": "SDML" + }, + { + "id": "327061", + "ident": "SDMM", + "type": "small_airport", + "name": "Lago Verde Airport", + "latitude_deg": "4.557778", + "longitude_deg": "-60.786111", + "elevation_ft": "3522", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SDMM" + }, + { + "id": "35629", + "ident": "SDMN", + "type": "heliport", + "name": "Meira Fernandes Heliport", + "latitude_deg": "-23.916667938232422", + "longitude_deg": "-48.426109313964844", + "elevation_ft": "2434", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Capão Bonito", + "scheduled_service": "no", + "gps_code": "SDMN" + }, + { + "id": "30154", + "ident": "SDMO", + "type": "small_airport", + "name": "Monte Alto Airport", + "latitude_deg": "-21.2589812941", + "longitude_deg": "-48.523607254", + "elevation_ft": "2461", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Monte Alto", + "scheduled_service": "no", + "gps_code": "SDMO" + }, + { + "id": "35630", + "ident": "SDMP", + "type": "heliport", + "name": "Erik Heliport", + "latitude_deg": "-23.299177", + "longitude_deg": "-46.596746", + "elevation_ft": "3707", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mairiporã", + "scheduled_service": "no", + "gps_code": "SIKC", + "local_code": "SP0514", + "keywords": "SDMP" + }, + { + "id": "46101", + "ident": "SDMQ", + "type": "small_airport", + "name": "Fazenda Quebracho Brasil Airport", + "latitude_deg": "-21.8480555556", + "longitude_deg": "-57.8991666667", + "elevation_ft": "299", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SDMQ", + "local_code": "SDMQ" + }, + { + "id": "35631", + "ident": "SDMR", + "type": "small_airport", + "name": "Marambaia Airport", + "latitude_deg": "-23.066389", + "longitude_deg": "-43.879491", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SDMR", + "local_code": "RJ9005" + }, + { + "id": "35632", + "ident": "SDMS", + "type": "heliport", + "name": "Marechiaro Heliport", + "latitude_deg": "-23.01555633544922", + "longitude_deg": "-44.280555725097656", + "elevation_ft": "190", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SDMS" + }, + { + "id": "35633", + "ident": "SDMT", + "type": "heliport", + "name": "Banco Bradesco Av. Paulista Heliport", + "latitude_deg": "-23.56222152709961", + "longitude_deg": "-46.654998779296875", + "elevation_ft": "2896", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDMT" + }, + { + "id": "35634", + "ident": "SDMU", + "type": "heliport", + "name": "Multiplan Heliport", + "latitude_deg": "-22.90944480895996", + "longitude_deg": "-43.17555618286133", + "elevation_ft": "351", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SDMU" + }, + { + "id": "187", + "ident": "SDMV", + "type": "small_airport", + "name": "Fazenda Morro Vermelho Airport", + "latitude_deg": "-22.27720069885254", + "longitude_deg": "-48.60449981689453", + "elevation_ft": "1736", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jaú", + "scheduled_service": "no", + "gps_code": "SDMV", + "local_code": "SDMV" + }, + { + "id": "45942", + "ident": "SDMW", + "type": "small_airport", + "name": "Fazenda Karajá Airport", + "latitude_deg": "-14.1125", + "longitude_deg": "-50.6808333333", + "elevation_ft": "833", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Nova Crixás", + "scheduled_service": "no", + "gps_code": "SDMW" + }, + { + "id": "46105", + "ident": "SDMX", + "type": "small_airport", + "name": "Fazenda Fontana Airport", + "latitude_deg": "-15.5", + "longitude_deg": "-55.379166666699994", + "elevation_ft": "2267", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Verde", + "scheduled_service": "no", + "gps_code": "SDMX", + "local_code": "SDMX" + }, + { + "id": "188", + "ident": "SDMY", + "type": "small_airport", + "name": "Fazenda Cambuhy Airport", + "latitude_deg": "-21.63290023803711", + "longitude_deg": "-48.47909927368164", + "elevation_ft": "2008", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Matão", + "scheduled_service": "no", + "gps_code": "SDMY", + "local_code": "SDMY" + }, + { + "id": "35635", + "ident": "SDMZ", + "type": "heliport", + "name": "Mercedes Benz do Brasil S/A Heliport", + "latitude_deg": "-23.663333892822266", + "longitude_deg": "-46.579444885253906", + "elevation_ft": "2412", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Bernardo Do Campo", + "scheduled_service": "no", + "gps_code": "SDMZ" + }, + { + "id": "349772", + "ident": "SDN2", + "type": "heliport", + "name": "Grupo Angelina Infraestrutura Heliport", + "latitude_deg": "-22.413056", + "longitude_deg": "-46.848056", + "elevation_ft": "2044", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapira", + "scheduled_service": "no", + "gps_code": "SDN2", + "local_code": "SP1360" + }, + { + "id": "351504", + "ident": "SDN3", + "type": "heliport", + "name": "Hospital Militar da Área de São Paulo Heliport", + "latitude_deg": "-23.570409", + "longitude_deg": "-46.61425", + "elevation_ft": "2497", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDN3", + "local_code": "SP9009" + }, + { + "id": "350235", + "ident": "SDN4", + "type": "small_airport", + "name": "Fazenda Uma Uma Airstrip", + "latitude_deg": "-9.525593", + "longitude_deg": "-57.694966", + "elevation_ft": "843", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Apiacás", + "scheduled_service": "no", + "gps_code": "SDN4", + "local_code": "MT0773" + }, + { + "id": "349770", + "ident": "SDN6", + "type": "small_airport", + "name": "Fazenda Entre Rios Airport", + "latitude_deg": "-12.453823", + "longitude_deg": "-45.388307", + "elevation_ft": "2277", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SDN6", + "local_code": "BA0378" + }, + { + "id": "350237", + "ident": "SDN8", + "type": "heliport", + "name": "Domingos Horta Heliport", + "latitude_deg": "-20.115556", + "longitude_deg": "-43.91", + "elevation_ft": "4688", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Nova Lima", + "scheduled_service": "no", + "gps_code": "SDN8", + "local_code": "MG0513" + }, + { + "id": "351517", + "ident": "SDN9", + "type": "heliport", + "name": "Barra del Mundo Heliport", + "latitude_deg": "-2.913611", + "longitude_deg": "-41.408889", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Cajueiro da Praia", + "scheduled_service": "no", + "gps_code": "SDN9", + "local_code": "PI0076" + }, + { + "id": "46209", + "ident": "SDNA", + "type": "small_airport", + "name": "Fazenda Vale Verde Airport", + "latitude_deg": "-19.671944", + "longitude_deg": "-48.994722", + "elevation_ft": "2336", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Comendador Gomes", + "scheduled_service": "no", + "gps_code": "SDNA", + "local_code": "SDNA" + }, + { + "id": "35636", + "ident": "SDNB", + "type": "heliport", + "name": "Nobara - Guarujá Heliport", + "latitude_deg": "-23.99944305419922", + "longitude_deg": "-46.298057556152344", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarujá", + "scheduled_service": "no", + "gps_code": "SDNB" + }, + { + "id": "35637", + "ident": "SDNC", + "type": "closed", + "name": "Panco V Heliport", + "latitude_deg": "-23.034400939941406", + "longitude_deg": "-45.58810043334961", + "elevation_ft": "1945", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Taubaté", + "scheduled_service": "no" + }, + { + "id": "35638", + "ident": "SDND", + "type": "small_airport", + "name": "Fazenda Nova Damasco Airport", + "latitude_deg": "-22.482778549194336", + "longitude_deg": "-51.530277252197266", + "elevation_ft": "1411", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Narandiba", + "scheduled_service": "no", + "gps_code": "SDND" + }, + { + "id": "35639", + "ident": "SDNE", + "type": "small_airport", + "name": "Fazenda São Joaquim Airport", + "latitude_deg": "-22.199443817138672", + "longitude_deg": "-51.973609924316406", + "elevation_ft": "1585", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Marabá Paulista", + "scheduled_service": "no", + "gps_code": "SDNE" + }, + { + "id": "35640", + "ident": "SDNF", + "type": "heliport", + "name": "Center Shopping Heliport", + "latitude_deg": "-18.903888702392578", + "longitude_deg": "-48.258331298828125", + "elevation_ft": "2881", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberlândia", + "scheduled_service": "no", + "gps_code": "SDNF" + }, + { + "id": "35641", + "ident": "SDNG", + "type": "small_airport", + "name": "Fazenda São Gabriel Airport", + "latitude_deg": "-13.100000381469727", + "longitude_deg": "-56.95277786254883", + "elevation_ft": "1197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Maringá", + "scheduled_service": "no", + "gps_code": "SDNG" + }, + { + "id": "30197", + "ident": "SDNH", + "type": "small_airport", + "name": "Novo Horizonte Airport", + "latitude_deg": "-21.497800827026367", + "longitude_deg": "-49.23440170288086", + "elevation_ft": "1526", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Novo Horizonte", + "scheduled_service": "no", + "gps_code": "SDNH", + "iata_code": "0" + }, + { + "id": "35642", + "ident": "SDNI", + "type": "small_airport", + "name": "Nascimento I Airport", + "latitude_deg": "-23.619722366333008", + "longitude_deg": "-46.983612060546875", + "elevation_ft": "3090", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Vargem Grande Paulista", + "scheduled_service": "no", + "gps_code": "SDNI" + }, + { + "id": "35643", + "ident": "SDNJ", + "type": "small_airport", + "name": "Nascimento II Airport", + "latitude_deg": "-24.074722290039062", + "longitude_deg": "-48.22472381591797", + "elevation_ft": "2604", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Capão Bonito", + "scheduled_service": "no", + "gps_code": "SDNJ" + }, + { + "id": "35644", + "ident": "SDNK", + "type": "small_airport", + "name": "Fazenda Vitória Airport", + "latitude_deg": "-14.96500015258789", + "longitude_deg": "-54.05083465576172", + "elevation_ft": "2513", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Primavera Do Leste", + "scheduled_service": "no", + "gps_code": "SDNK" + }, + { + "id": "30193", + "ident": "SDNL", + "type": "small_airport", + "name": "Fazenda São Francisco do Itaquerê Airport", + "latitude_deg": "-21.763774", + "longitude_deg": "-48.582466", + "elevation_ft": "1877", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Nova Europa", + "scheduled_service": "no", + "keywords": "SDNL" + }, + { + "id": "43312", + "ident": "SDNM", + "type": "small_airport", + "name": "Brigadeiro Eduardo Gomes Airport", + "latitude_deg": "-13.821021", + "longitude_deg": "-56.038591", + "elevation_ft": "1398", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Mutum", + "scheduled_service": "no", + "gps_code": "SDNM", + "iata_code": "NVM", + "local_code": "MT0047", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nova_Mutum_Airport", + "keywords": "SWIW" + }, + { + "id": "35646", + "ident": "SDNN", + "type": "heliport", + "name": "Birmann 21 Helipad", + "latitude_deg": "-23.56557", + "longitude_deg": "-46.702237", + "elevation_ft": "2756", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDNN", + "local_code": "SP0389" + }, + { + "id": "189", + "ident": "SDNO", + "type": "small_airport", + "name": "São Manuel Airport", + "latitude_deg": "-22.69580078125", + "longitude_deg": "-48.57659912109375", + "elevation_ft": "2395", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Manuel", + "scheduled_service": "no", + "gps_code": "SDNO", + "local_code": "SDNO" + }, + { + "id": "35647", + "ident": "SDNP", + "type": "heliport", + "name": "Condomínio Conde Matarazzo Heliport", + "latitude_deg": "-23.547432", + "longitude_deg": "-46.6374", + "elevation_ft": "2644", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDNP", + "local_code": "SP0390", + "keywords": "Edifício Banespa - Patriarca Heliport" + }, + { + "id": "322706", + "ident": "SDNQ", + "type": "small_airport", + "name": "Fazenda Água Limpa", + "latitude_deg": "-9.980571", + "longitude_deg": "-67.491113", + "elevation_ft": "646", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Senador Guiomard", + "scheduled_service": "no", + "gps_code": "SDNQ", + "local_code": "AC0006" + }, + { + "id": "35648", + "ident": "SDNR", + "type": "heliport", + "name": "Banco Santander Heliport", + "latitude_deg": "-23.651111602783203", + "longitude_deg": "-46.7136116027832", + "elevation_ft": "2515", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDNR" + }, + { + "id": "35649", + "ident": "SDNS", + "type": "heliport", + "name": "Samambaia Heliport", + "latitude_deg": "-22.462499618530273", + "longitude_deg": "-43.13055419921875", + "elevation_ft": "3167", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Petrópolis", + "scheduled_service": "no", + "gps_code": "SDNS" + }, + { + "id": "331426", + "ident": "SDNT", + "type": "small_airport", + "name": "Fazenda Terra Prometida Airport", + "latitude_deg": "-10.414444", + "longitude_deg": "-48.256667", + "elevation_ft": "889", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Porto Nacional", + "scheduled_service": "no", + "gps_code": "SDNT", + "local_code": "TO0014" + }, + { + "id": "35650", + "ident": "SDNU", + "type": "heliport", + "name": "Ministro Nelson Hungria Heliport", + "latitude_deg": "-22.906389236450195", + "longitude_deg": "-43.173057556152344", + "elevation_ft": "222", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SDNU" + }, + { + "id": "45599", + "ident": "SDNV", + "type": "small_airport", + "name": "Aldeia Nacepoti Airport", + "latitude_deg": "-9.503889", + "longitude_deg": "-54.011944", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Altamira", + "scheduled_service": "no", + "gps_code": "SDNV" + }, + { + "id": "45588", + "ident": "SDNW", + "type": "small_airport", + "name": "Aldeia Piaracu Airport", + "latitude_deg": "-10.788333", + "longitude_deg": "-53.071667", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São José Do Xingu", + "scheduled_service": "no", + "gps_code": "SDNW" + }, + { + "id": "310847", + "ident": "SDNX", + "type": "heliport", + "name": "SEC Heliport", + "latitude_deg": "-23.04298", + "longitude_deg": "-44.21046", + "elevation_ft": "177", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra dos Reis", + "scheduled_service": "no", + "gps_code": "SSEI", + "local_code": "RJ0348", + "keywords": "SDNX" + }, + { + "id": "190", + "ident": "SDNY", + "type": "closed", + "name": "Aeroclube Airport", + "latitude_deg": "-22.746482", + "longitude_deg": "-43.464918", + "elevation_ft": "164", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Nova Iguaçu", + "scheduled_service": "no", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroclube_de_Nova_Igua%C3%A7u", + "keywords": "SDNY" + }, + { + "id": "35651", + "ident": "SDNZ", + "type": "small_airport", + "name": "Fazenda Alto do Piriqui Airport", + "latitude_deg": "-17.844999313354492", + "longitude_deg": "-54.768890380859375", + "elevation_ft": "1640", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Sonora", + "scheduled_service": "no", + "gps_code": "SDNZ" + }, + { + "id": "350353", + "ident": "SDO2", + "type": "heliport", + "name": "Fontanella Heliport", + "latitude_deg": "-28.394946", + "longitude_deg": "-49.388687", + "elevation_ft": "843", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Lauro Muller", + "scheduled_service": "no", + "gps_code": "SDO2", + "local_code": "SC0196" + }, + { + "id": "350354", + "ident": "SDO3", + "type": "small_airport", + "name": "Fazenda Reunidas Primavera Airport", + "latitude_deg": "-10.017874", + "longitude_deg": "-51.99157", + "elevation_ft": "961", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Rica", + "scheduled_service": "no", + "gps_code": "SDO3", + "local_code": "MT0751" + }, + { + "id": "350357", + "ident": "SDO6", + "type": "small_airport", + "name": "Fazenda Alvorada Airport", + "latitude_deg": "-11.977993", + "longitude_deg": "-46.026553", + "elevation_ft": "2671", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Luís Eduardo Magalhães", + "scheduled_service": "no", + "gps_code": "SDO6", + "local_code": "BA0384" + }, + { + "id": "350359", + "ident": "SDO7", + "type": "heliport", + "name": "Frisonfly Heliport", + "latitude_deg": "-2.872222", + "longitude_deg": "-40.398333", + "elevation_ft": "105", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Cruz", + "scheduled_service": "no", + "gps_code": "SDO7", + "local_code": "CE0151" + }, + { + "id": "351527", + "ident": "SDO8", + "type": "heliport", + "name": "Wave Iriri Anchieta Heliport", + "latitude_deg": "-20.811303", + "longitude_deg": "-40.663842", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Anchieta", + "scheduled_service": "no", + "gps_code": "SDO8", + "local_code": "ES0050" + }, + { + "id": "351529", + "ident": "SDO9", + "type": "small_airport", + "name": "True Type Airport", + "latitude_deg": "-19.443856", + "longitude_deg": "-44.490671", + "elevation_ft": "2441", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Inhaúma", + "scheduled_service": "no", + "gps_code": "SDO9", + "local_code": "MG0510" + }, + { + "id": "46107", + "ident": "SDOA", + "type": "small_airport", + "name": "Lagoa da Floresta Airport", + "latitude_deg": "-5.488611111110001", + "longitude_deg": "-45.4886111111", + "elevation_ft": "591", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Barra Do Corda", + "scheduled_service": "no", + "gps_code": "SDOA", + "local_code": "SDOA" + }, + { + "id": "191", + "ident": "SDOB", + "type": "small_airport", + "name": "Fazenda São José \"OB\" Airport", + "latitude_deg": "-21.425199508666992", + "longitude_deg": "-46.75429916381836", + "elevation_ft": "2585", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Tapiratiba", + "scheduled_service": "no", + "gps_code": "SDOB", + "local_code": "SDOB" + }, + { + "id": "35652", + "ident": "SDOC", + "type": "heliport", + "name": "Hospital do Coração Heliport", + "latitude_deg": "-23.573055267333984", + "longitude_deg": "-46.6430549621582", + "elevation_ft": "2825", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDOC" + }, + { + "id": "46103", + "ident": "SDOD", + "type": "small_airport", + "name": "Fazenda Vida Airport", + "latitude_deg": "-5.84", + "longitude_deg": "-45.5419444444", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Barra Do Corda", + "scheduled_service": "no", + "gps_code": "SDOD", + "local_code": "SDOD" + }, + { + "id": "46102", + "ident": "SDOE", + "type": "small_airport", + "name": "Fazenda Sibéria Airport", + "latitude_deg": "-5.72222222222", + "longitude_deg": "-45.7913888889", + "elevation_ft": "741", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Grajaú", + "scheduled_service": "no", + "gps_code": "SDOE", + "local_code": "SDOE" + }, + { + "id": "35653", + "ident": "SDOF", + "type": "heliport", + "name": "Enseadinha Heliport", + "latitude_deg": "-8.549722", + "longitude_deg": "-35.007221", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Ipojuca", + "scheduled_service": "no", + "gps_code": "SDKS", + "local_code": "PE0023", + "keywords": "SDOF, Serrambi Heliport" + }, + { + "id": "35654", + "ident": "SDOG", + "type": "heliport", + "name": "Península Heliport", + "latitude_deg": "-23.996944427490234", + "longitude_deg": "-46.20305633544922", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarujá", + "scheduled_service": "no", + "gps_code": "SDOG" + }, + { + "id": "35655", + "ident": "SDOH", + "type": "heliport", + "name": "Cimed Heliport", + "latitude_deg": "-22.265832901000977", + "longitude_deg": "-45.94138717651367", + "elevation_ft": "2917", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Pouso Alegre", + "scheduled_service": "no", + "gps_code": "SDOH" + }, + { + "id": "35656", + "ident": "SDOI", + "type": "small_airport", + "name": "Centro Nacional de Pára-quedismo Airport", + "latitude_deg": "-23.29805564880371", + "longitude_deg": "-47.69194412231445", + "elevation_ft": "2051", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Boituva", + "scheduled_service": "no", + "gps_code": "SDOI" + }, + { + "id": "327005", + "ident": "SDOJ", + "type": "heliport", + "name": "Basalto Base 5 Heliport", + "latitude_deg": "-22.898253", + "longitude_deg": "-47.134075", + "elevation_ft": "1979", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SDOJ" + }, + { + "id": "35657", + "ident": "SDOK", + "type": "heliport", + "name": "Casas Bahia Heliport", + "latitude_deg": "-23.237499237060547", + "longitude_deg": "-46.864723205566406", + "elevation_ft": "2517", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jundiaí", + "scheduled_service": "no", + "gps_code": "SDOK" + }, + { + "id": "30211", + "ident": "SDOL", + "type": "small_airport", + "name": "Agropesp Airport", + "latitude_deg": "-12.441389", + "longitude_deg": "-56.406944", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tapurá", + "scheduled_service": "no", + "gps_code": "SDOL" + }, + { + "id": "35658", + "ident": "SDOM", + "type": "heliport", + "name": "Hospital Montreal Heliport", + "latitude_deg": "-23.5366", + "longitude_deg": "-46.7768", + "elevation_ft": "2520", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Osasco", + "scheduled_service": "no", + "gps_code": "SDOM", + "local_code": "SDOM" + }, + { + "id": "35659", + "ident": "SDON", + "type": "heliport", + "name": "Ônix Heliport", + "latitude_deg": "-23.551666259765625", + "longitude_deg": "-46.7216682434082", + "elevation_ft": "2634", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDON" + }, + { + "id": "332063", + "ident": "SDOO", + "type": "heliport", + "name": "Órion Helipad", + "latitude_deg": "-16.696854", + "longitude_deg": "-49.269776", + "elevation_ft": "2536", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiânia", + "scheduled_service": "no", + "gps_code": "SDOO", + "local_code": "GO0155" + }, + { + "id": "35660", + "ident": "SDOP", + "type": "heliport", + "name": "ESM/Sigma Pharma 2 Heliport", + "latitude_deg": "-22.89555549621582", + "longitude_deg": "-47.189998626708984", + "elevation_ft": "2127", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Hortolândia", + "scheduled_service": "no", + "gps_code": "SDOP" + }, + { + "id": "327007", + "ident": "SDOQ", + "type": "small_airport", + "name": "Fazenda Campo Claro Airstrip", + "latitude_deg": "-12.674353", + "longitude_deg": "-51.739294", + "elevation_ft": "1165", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Ribeirão Cascalheira", + "scheduled_service": "no", + "gps_code": "SDOQ" + }, + { + "id": "35661", + "ident": "SDOR", + "type": "small_airport", + "name": "Fazenda Mosquito Airport", + "latitude_deg": "-20.747222900390625", + "longitude_deg": "-47.88972091674805", + "elevation_ft": "2415", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Orlândia", + "scheduled_service": "no", + "gps_code": "SDOR" + }, + { + "id": "35662", + "ident": "SDOS", + "type": "closed", + "name": "Issac Heliport", + "latitude_deg": "-23.909400939941406", + "longitude_deg": "-46.167198181152344", + "elevation_ft": "39", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarujá", + "scheduled_service": "no", + "gps_code": "SDOS" + }, + { + "id": "35663", + "ident": "SDOT", + "type": "heliport", + "name": "Attilio Tinelli Heliport", + "latitude_deg": "-23.59861183166504", + "longitude_deg": "-46.69388961791992", + "elevation_ft": "2559", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDOT" + }, + { + "id": "192", + "ident": "SDOU", + "type": "small_airport", + "name": "Ourinhos Airport", + "latitude_deg": "-22.96649932861328", + "longitude_deg": "-49.913299560546875", + "elevation_ft": "1532", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ourinhos", + "scheduled_service": "no", + "gps_code": "SDOU", + "iata_code": "OUS", + "local_code": "SDOU" + }, + { + "id": "193", + "ident": "SDOV", + "type": "small_airport", + "name": "Mozarlândia Airport", + "latitude_deg": "-14.770400047302246", + "longitude_deg": "-50.5640983581543", + "elevation_ft": "1076", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Mozarlândia", + "scheduled_service": "no", + "gps_code": "SDOV", + "local_code": "SDOV" + }, + { + "id": "194", + "ident": "SDOW", + "type": "small_airport", + "name": "Ourilândia do Norte Airport", + "latitude_deg": "-6.763100147250001", + "longitude_deg": "-51.0499000549", + "elevation_ft": "901", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Ourilândia do Norte", + "scheduled_service": "no", + "gps_code": "SDOW", + "iata_code": "OIA", + "local_code": "SDOW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ouril%C3%A2ndia_do_Norte_Airport" + }, + { + "id": "35664", + "ident": "SDOX", + "type": "small_airport", + "name": "Fazenda Pixoxó Airport", + "latitude_deg": "-21.780125", + "longitude_deg": "-47.882849", + "elevation_ft": "2133", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Carlos", + "scheduled_service": "no", + "keywords": "SDOX" + }, + { + "id": "35665", + "ident": "SDOY", + "type": "heliport", + "name": "Ambev Heliport", + "latitude_deg": "-23.21388816833496", + "longitude_deg": "-45.99861145019531", + "elevation_ft": "1854", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jacareí", + "scheduled_service": "no", + "gps_code": "SDOY" + }, + { + "id": "45589", + "ident": "SDOZ", + "type": "small_airport", + "name": "Aldeia Pontal Airport", + "latitude_deg": "-8.100833", + "longitude_deg": "-58.284444", + "elevation_ft": "869", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Apiacás", + "scheduled_service": "no", + "gps_code": "SDOZ" + }, + { + "id": "350797", + "ident": "SDP2", + "type": "small_airport", + "name": "Fazenda Piracicaba Airstrip", + "latitude_deg": "-7.956223", + "longitude_deg": "-45.756617", + "elevation_ft": "1588", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Tasso Fragoso", + "scheduled_service": "no", + "gps_code": "SDP2", + "local_code": "MA0133" + }, + { + "id": "350799", + "ident": "SDP3", + "type": "small_airport", + "name": "Fazenda Paraíso Airstrip", + "latitude_deg": "-16.283333", + "longitude_deg": "-59.036111", + "elevation_ft": "449", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Esperidião", + "scheduled_service": "no", + "gps_code": "SDP3", + "local_code": "MT0748" + }, + { + "id": "350801", + "ident": "SDP4", + "type": "small_airport", + "name": "Fazenda Naviraí Airport", + "latitude_deg": "-9.807688", + "longitude_deg": "-58.525651", + "elevation_ft": "797", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cotriguaçu", + "scheduled_service": "no", + "gps_code": "SDP4", + "local_code": "MT0707" + }, + { + "id": "351531", + "ident": "SDP6", + "type": "small_airport", + "name": "Fazenda Chapadão Airport", + "latitude_deg": "-11.983021", + "longitude_deg": "-46.215202", + "elevation_ft": "2776", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Barreiras", + "scheduled_service": "no", + "gps_code": "SDP6", + "local_code": "BA0385" + }, + { + "id": "351532", + "ident": "SDP7", + "type": "small_airport", + "name": "Antenor Duarte Vilela Airport", + "latitude_deg": "-20.493889", + "longitude_deg": "-48.673056", + "elevation_ft": "1854", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barretos", + "scheduled_service": "no", + "gps_code": "SDP7", + "local_code": "SP1338" + }, + { + "id": "350803", + "ident": "SDP9", + "type": "small_airport", + "name": "Fazenda Santo Antônio do Caeté Airstrip", + "latitude_deg": "-18.720556", + "longitude_deg": "-55.253333", + "elevation_ft": "551", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Verde de Mato Grosso", + "scheduled_service": "no", + "gps_code": "SDP9", + "local_code": "MS0590" + }, + { + "id": "35666", + "ident": "SDPA", + "type": "small_airport", + "name": "Fazenda Portobello Airport", + "latitude_deg": "-22.927499771118164", + "longitude_deg": "-44.08000183105469", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Mangaratiba", + "scheduled_service": "no", + "gps_code": "SDPA" + }, + { + "id": "35667", + "ident": "SDPB", + "type": "heliport", + "name": "Pedreira Pau Pedra Heliport", + "latitude_deg": "-23.350821", + "longitude_deg": "-46.425712", + "elevation_ft": "2739", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarulhos", + "scheduled_service": "no", + "gps_code": "SDOH", + "local_code": "SP0395", + "keywords": "SDPB" + }, + { + "id": "46468", + "ident": "SDPC", + "type": "small_airport", + "name": "Atena Airport", + "latitude_deg": "-22.15278", + "longitude_deg": "-51.02861", + "elevation_ft": "1585", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Rancharia", + "scheduled_service": "no", + "gps_code": "SDPC", + "local_code": "SDPC" + }, + { + "id": "35668", + "ident": "SDPD", + "type": "small_airport", + "name": "Pindamonhangaba Airport", + "latitude_deg": "-22.94361114501953", + "longitude_deg": "-45.43138885498047", + "elevation_ft": "1919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Pindamonhangaba", + "scheduled_service": "no", + "gps_code": "SDPD" + }, + { + "id": "30282", + "ident": "SDPF", + "type": "closed", + "name": "Portoferreir Han Airport", + "latitude_deg": "-21.87420082092285", + "longitude_deg": "-47.473899841308594", + "elevation_ft": "1870", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Porto Ferreira", + "scheduled_service": "no", + "gps_code": "SDPF" + }, + { + "id": "35670", + "ident": "SDPG", + "type": "small_airport", + "name": "Fazenda Progresso Airport", + "latitude_deg": "-21.054443359375", + "longitude_deg": "-51.40611267089844", + "elevation_ft": "1198", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Andradina", + "scheduled_service": "no", + "gps_code": "SDPG" + }, + { + "id": "35671", + "ident": "SDPH", + "type": "heliport", + "name": "Porto do Sol Hotel Heliport", + "latitude_deg": "-23.538610458374023", + "longitude_deg": "-46.65277862548828", + "elevation_ft": "2690", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDPH" + }, + { + "id": "323624", + "ident": "SDPI", + "type": "small_airport", + "name": "Makukem Airport", + "latitude_deg": "4.687776", + "longitude_deg": "-60.244722", + "elevation_ft": "616", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SDPI" + }, + { + "id": "35672", + "ident": "SDPJ", + "type": "closed", + "name": "Panco VII Heliport", + "latitude_deg": "-23.53", + "longitude_deg": "-46.49", + "elevation_ft": "2579", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SDPJ" + }, + { + "id": "35673", + "ident": "SDPK", + "type": "heliport", + "name": "Panco I Heliport", + "latitude_deg": "-23.52777862548828", + "longitude_deg": "-46.49444580078125", + "elevation_ft": "2652", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDPK" + }, + { + "id": "35674", + "ident": "SDPL", + "type": "heliport", + "name": "Sofitel São Paulo Heliport", + "latitude_deg": "-23.592777252197266", + "longitude_deg": "-46.649723052978516", + "elevation_ft": "2697", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDPL" + }, + { + "id": "35675", + "ident": "SDPM", + "type": "heliport", + "name": "Palácio dos Bandeirantes Heliport", + "latitude_deg": "-23.600555419921875", + "longitude_deg": "-46.71305465698242", + "elevation_ft": "2600", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDPM" + }, + { + "id": "195", + "ident": "SDPN", + "type": "small_airport", + "name": "Penápolis Airport", + "latitude_deg": "-21.40999984741211", + "longitude_deg": "-50.033599853515625", + "elevation_ft": "1371", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Penápolis", + "scheduled_service": "no", + "gps_code": "SDPN", + "local_code": "SDPN" + }, + { + "id": "35676", + "ident": "SDPO", + "type": "heliport", + "name": "Plaza Centenário Heliport", + "latitude_deg": "-23.60527801513672", + "longitude_deg": "-46.86000061035156", + "elevation_ft": "2826", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDPO" + }, + { + "id": "196", + "ident": "SDPP", + "type": "small_airport", + "name": "Fazenda Fortaleza Airport", + "latitude_deg": "-23.292999267578125", + "longitude_deg": "-48.81439971923828", + "elevation_ft": "1952", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Paranapanema", + "scheduled_service": "no", + "gps_code": "SDPP", + "local_code": "SDPP" + }, + { + "id": "327009", + "ident": "SDPQ", + "type": "small_airport", + "name": "Napoleão Airport", + "latitude_deg": "3.907802", + "longitude_deg": "-60.025297", + "elevation_ft": "359", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Normandia", + "scheduled_service": "no", + "gps_code": "SDPQ" + }, + { + "id": "35677", + "ident": "SDPR", + "type": "heliport", + "name": "Pirelli S/A Heliport", + "latitude_deg": "-22.942777633666992", + "longitude_deg": "-47.149723052978516", + "elevation_ft": "2100", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SDPR" + }, + { + "id": "35678", + "ident": "SDPS", + "type": "heliport", + "name": "Pedreira Sargon Heliport", + "latitude_deg": "-23.356388092041016", + "longitude_deg": "-46.279998779296875", + "elevation_ft": "2631", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santa Isabel", + "scheduled_service": "no", + "gps_code": "SDPS" + }, + { + "id": "35679", + "ident": "SDPT", + "type": "heliport", + "name": "Parque Paulista Heliport", + "latitude_deg": "-23.559722900390625", + "longitude_deg": "-46.65888977050781", + "elevation_ft": "2897", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDPT" + }, + { + "id": "35680", + "ident": "SDPU", + "type": "heliport", + "name": "Paquetá Heliport", + "latitude_deg": "-22.767221450805664", + "longitude_deg": "-43.11305618286133", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SDPU" + }, + { + "id": "30289", + "ident": "SDPV", + "type": "small_airport", + "name": "Presidente Venceslau Airport", + "latitude_deg": "-21.893299102783203", + "longitude_deg": "-51.8843994140625", + "elevation_ft": "1460", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Presidente Venceslau", + "scheduled_service": "no", + "gps_code": "SDPV", + "iata_code": "0" + }, + { + "id": "197", + "ident": "SDPW", + "type": "small_airport", + "name": "Piracicaba Airport", + "latitude_deg": "-22.71150016784668", + "longitude_deg": "-47.61819839477539", + "elevation_ft": "1887", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Piracicaba", + "scheduled_service": "no", + "gps_code": "SDPW", + "iata_code": "QHB", + "local_code": "SDPW" + }, + { + "id": "327011", + "ident": "SDPX", + "type": "small_airport", + "name": "Nova Vitória Airport", + "latitude_deg": "4.498889", + "longitude_deg": "-60.941667", + "elevation_ft": "1670", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SDPX" + }, + { + "id": "35681", + "ident": "SDPY", + "type": "small_airport", + "name": "Pirassununga Airport", + "latitude_deg": "-22.02638816833496", + "longitude_deg": "-47.4194450378418", + "elevation_ft": "2241", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Pirassununga", + "scheduled_service": "no", + "gps_code": "SDPY" + }, + { + "id": "327014", + "ident": "SDPZ", + "type": "small_airport", + "name": "Sossego Airport", + "latitude_deg": "-21.24112", + "longitude_deg": "-53.351389", + "elevation_ft": "1292", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SDPZ" + }, + { + "id": "350458", + "ident": "SDQ3", + "type": "small_airport", + "name": "Denial Matawaré Airstrip", + "latitude_deg": "1.951111", + "longitude_deg": "-55.1225", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Almeirim", + "scheduled_service": "no", + "gps_code": "SDQ3", + "local_code": "PA0254" + }, + { + "id": "350457", + "ident": "SDQ4", + "type": "small_airport", + "name": "Fazenda Campo Grande Airport", + "latitude_deg": "-17.964402", + "longitude_deg": "-55.36598", + "elevation_ft": "528", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SDQ4", + "local_code": "MS0428" + }, + { + "id": "350455", + "ident": "SDQ6", + "type": "small_airport", + "name": "Fazenda São Mateus Airport", + "latitude_deg": "-11.194465", + "longitude_deg": "-50.880253", + "elevation_ft": "689", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Luciara", + "scheduled_service": "no", + "gps_code": "SDQ6", + "local_code": "MT0765" + }, + { + "id": "351197", + "ident": "SDQ7", + "type": "small_airport", + "name": "Fazenda Atlântida Airport", + "latitude_deg": "-11.47074", + "longitude_deg": "-46.543407", + "elevation_ft": "2976", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Dianópolis", + "scheduled_service": "no", + "gps_code": "SDQ7", + "local_code": "TO0102" + }, + { + "id": "352183", + "ident": "SDQ8", + "type": "heliport", + "name": "Vila Pix Heliport", + "latitude_deg": "-22.775556", + "longitude_deg": "-45.6575", + "elevation_ft": "3530", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campos do Jordão", + "scheduled_service": "no", + "gps_code": "SDQ8", + "local_code": "SP1336" + }, + { + "id": "350452", + "ident": "SDQ9", + "type": "small_airport", + "name": "Fazenda Patriota Airport", + "latitude_deg": "-11.490833", + "longitude_deg": "-56.171667", + "elevation_ft": "1201", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tabaporã", + "scheduled_service": "no", + "gps_code": "SDQ9", + "local_code": "MT0764" + }, + { + "id": "35682", + "ident": "SDQA", + "type": "closed", + "name": "Centro Empresarial Nações Unidas - Torre Oeste Heliport", + "latitude_deg": "-23.609722", + "longitude_deg": "-46.697224", + "elevation_ft": "2736", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SDQA" + }, + { + "id": "35683", + "ident": "SDQB", + "type": "heliport", + "name": "Edifício Berrini 500 Heliport", + "latitude_deg": "-23.601099", + "longitude_deg": "-46.692229", + "elevation_ft": "2648", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SSBH", + "local_code": "SP0744", + "keywords": "SDQB" + }, + { + "id": "35684", + "ident": "SDQC", + "type": "heliport", + "name": "HELPN Quarto COMAR Heliport", + "latitude_deg": "-23.566544", + "longitude_deg": "-46.612169", + "elevation_ft": "2329", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDQC", + "local_code": "SP9001", + "keywords": "Hospital COMAR" + }, + { + "id": "35685", + "ident": "SDQD", + "type": "heliport", + "name": "Hospital Copa D`OR Heliport", + "latitude_deg": "-22.96527862548828", + "longitude_deg": "-43.1966667175293", + "elevation_ft": "187", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SDQD" + }, + { + "id": "35686", + "ident": "SDQE", + "type": "small_airport", + "name": "Fazenda Carambola Airport", + "latitude_deg": "-22.56944465637207", + "longitude_deg": "-55.636112213134766", + "elevation_ft": "2041", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ponta Porã", + "scheduled_service": "no", + "gps_code": "SDQE" + }, + { + "id": "35687", + "ident": "SDQF", + "type": "closed", + "name": "Ita Heliport", + "latitude_deg": "-23.7", + "longitude_deg": "-46.83", + "elevation_ft": "2638", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapecerica Da Serra", + "scheduled_service": "no", + "gps_code": "SDQF" + }, + { + "id": "35688", + "ident": "SDQG", + "type": "small_airport", + "name": "Fazenda Nova Floresta Airport", + "latitude_deg": "-21.898889541625977", + "longitude_deg": "-51.1863899230957", + "elevation_ft": "1460", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Caiabu", + "scheduled_service": "no", + "gps_code": "SDQG" + }, + { + "id": "35689", + "ident": "SDQH", + "type": "small_airport", + "name": "Fazenda da Ilha Airport", + "latitude_deg": "-24.649999618530273", + "longitude_deg": "-50.36249923706055", + "elevation_ft": "2812", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Tibagi", + "scheduled_service": "no", + "gps_code": "SDQH" + }, + { + "id": "35690", + "ident": "SDQI", + "type": "heliport", + "name": "Fazenda Quilombo Heliport", + "latitude_deg": "-23.072221755981445", + "longitude_deg": "-47.0908317565918", + "elevation_ft": "2361", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Indaiatuba", + "scheduled_service": "no", + "gps_code": "SDQI" + }, + { + "id": "35691", + "ident": "SDQJ", + "type": "heliport", + "name": "Disco Heliport", + "latitude_deg": "-22.984722137451172", + "longitude_deg": "-43.23611068725586", + "elevation_ft": "187", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SDQJ" + }, + { + "id": "44717", + "ident": "SDQL", + "type": "small_airport", + "name": "Fazenda Cerro Azul Airport", + "latitude_deg": "-21.18861", + "longitude_deg": "-55.7344", + "elevation_ft": "1191", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nioaque", + "scheduled_service": "no", + "gps_code": "SDQL" + }, + { + "id": "35692", + "ident": "SDQM", + "type": "heliport", + "name": "Helicentro Ribeirão Preto Heliport", + "latitude_deg": "-21.210278", + "longitude_deg": "-47.770212", + "elevation_ft": "1837", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Preto", + "scheduled_service": "no", + "gps_code": "SSUE", + "local_code": "SP0780", + "keywords": "SDQM" + }, + { + "id": "35693", + "ident": "SDQN", + "type": "small_airport", + "name": "Fazenda Tangará Airport", + "latitude_deg": "-20.898611068725586", + "longitude_deg": "-55.709999084472656", + "elevation_ft": "919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nioaque", + "scheduled_service": "no", + "gps_code": "SDQN" + }, + { + "id": "35694", + "ident": "SDQO", + "type": "heliport", + "name": "Fazenda São Quirino Heliport", + "latitude_deg": "-22.917221069335938", + "longitude_deg": "-46.84555435180664", + "elevation_ft": "2513", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Morungaba", + "scheduled_service": "no", + "gps_code": "SDQO" + }, + { + "id": "35695", + "ident": "SDQP", + "type": "heliport", + "name": "Parque Cultural Paulista Heliport", + "latitude_deg": "-23.571666717529297", + "longitude_deg": "-46.64500045776367", + "elevation_ft": "2959", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDQP" + }, + { + "id": "198", + "ident": "SDQQ", + "type": "small_airport", + "name": "Companhia Agrícola de Quatá Airport", + "latitude_deg": "-22.286100387573242", + "longitude_deg": "-50.63890075683594", + "elevation_ft": "1919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Quatá", + "scheduled_service": "no", + "gps_code": "SDQQ", + "local_code": "SDQQ" + }, + { + "id": "327022", + "ident": "SDQR", + "type": "heliport", + "name": "Alto da Serra Heliport", + "latitude_deg": "-28.398626", + "longitude_deg": "-49.576932", + "elevation_ft": "4606", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Bom Jardim da Serra", + "scheduled_service": "no", + "gps_code": "SDQR" + }, + { + "id": "35696", + "ident": "SDQS", + "type": "heliport", + "name": "Berrini Heliport", + "latitude_deg": "-23.601110458374023", + "longitude_deg": "-46.69166564941406", + "elevation_ft": "2572", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDQS" + }, + { + "id": "35697", + "ident": "SDQT", + "type": "heliport", + "name": "Office Tower Itaim Heliport", + "latitude_deg": "-23.581211", + "longitude_deg": "-46.679497", + "elevation_ft": "2644", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIYT", + "local_code": "SP0578", + "keywords": "SDQT" + }, + { + "id": "327024", + "ident": "SDQU", + "type": "small_airport", + "name": "Fazenda Colorado", + "latitude_deg": "-9.255833", + "longitude_deg": "-44.799444", + "elevation_ft": "2091", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Bom Jesus", + "scheduled_service": "no", + "gps_code": "SDQU" + }, + { + "id": "35698", + "ident": "SDQV", + "type": "small_airport", + "name": "Fazenda Santa Fé Airport", + "latitude_deg": "-16.140032", + "longitude_deg": "-58.515394", + "elevation_ft": "551", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SIWS", + "local_code": "MT0146", + "keywords": "SDQV" + }, + { + "id": "45591", + "ident": "SDQW", + "type": "small_airport", + "name": "Fazenda Criciúma Airport", + "latitude_deg": "-13.41", + "longitude_deg": "-55.233611", + "elevation_ft": "1575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "gps_code": "SDQW" + }, + { + "id": "46187", + "ident": "SDQX", + "type": "small_airport", + "name": "Fazenda Esperança Airport", + "latitude_deg": "-23.867778", + "longitude_deg": "-48.805278", + "elevation_ft": "2267", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapeva", + "scheduled_service": "no", + "gps_code": "SIHP", + "local_code": "SP0179", + "keywords": "SDQX" + }, + { + "id": "35699", + "ident": "SDQY", + "type": "heliport", + "name": "Shopping Center Iguatemi Heliport", + "latitude_deg": "-22.890832901000977", + "longitude_deg": "-47.029720306396484", + "elevation_ft": "2356", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SDQY" + }, + { + "id": "44718", + "ident": "SDQZ", + "type": "small_airport", + "name": "Fazenda Espinhaço II Airport", + "latitude_deg": "-15.397221565199999", + "longitude_deg": "-52.07472229", + "elevation_ft": "991", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra Do Garças", + "scheduled_service": "no", + "gps_code": "SDQZ" + }, + { + "id": "352185", + "ident": "SDR2", + "type": "small_airport", + "name": "Fazenda Monte Alegre Airport", + "latitude_deg": "-6.34078", + "longitude_deg": "-49.576567", + "elevation_ft": "633", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Curionópolis", + "scheduled_service": "no", + "gps_code": "SDR2", + "local_code": "PA0307" + }, + { + "id": "353586", + "ident": "SDR4", + "type": "heliport", + "name": "Hugo 2 Heliport", + "latitude_deg": "-16.648433", + "longitude_deg": "-49.336688", + "elevation_ft": "2575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiânia", + "scheduled_service": "no", + "gps_code": "SDR4", + "local_code": "GO0256", + "keywords": "Noroeste" + }, + { + "id": "352187", + "ident": "SDR6", + "type": "small_airport", + "name": "Aldeia Urunai Airport", + "latitude_deg": "1.520538", + "longitude_deg": "-56.082941", + "elevation_ft": "1020", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Oriximiná", + "scheduled_service": "no", + "gps_code": "SDR6", + "local_code": "PA0322" + }, + { + "id": "352188", + "ident": "SDR7", + "type": "heliport", + "name": "CMPC HF São Manoel Heliport", + "latitude_deg": "-31.556774", + "longitude_deg": "-53.429025", + "elevation_ft": "1450", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Pinheiro Machado", + "scheduled_service": "no", + "gps_code": "SDR7", + "local_code": "RS0163" + }, + { + "id": "352190", + "ident": "SDR8", + "type": "small_airport", + "name": "Fazenda Piuva Airport", + "latitude_deg": "-19.882588", + "longitude_deg": "-55.487061", + "elevation_ft": "554", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SDR8", + "local_code": "MS0566" + }, + { + "id": "352360", + "ident": "SDR9", + "type": "small_airport", + "name": "Fazenda Iberê Airport", + "latitude_deg": "-15.178082", + "longitude_deg": "-54.239797", + "elevation_ft": "1327", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Primavera do Leste", + "scheduled_service": "no", + "gps_code": "SDR9", + "local_code": "MT0788" + }, + { + "id": "32276", + "ident": "SDRA", + "type": "small_airport", + "name": "Fazenda das Represas Airport", + "latitude_deg": "-23.875600814819336", + "longitude_deg": "-48.05179977416992", + "elevation_ft": "2271", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Miguel Arcanjo", + "scheduled_service": "no", + "gps_code": "SDRA", + "iata_code": "0" + }, + { + "id": "35700", + "ident": "SDRB", + "type": "heliport", + "name": "Renaissance Hotel Heliport", + "latitude_deg": "-23.55881", + "longitude_deg": "-46.66233", + "elevation_ft": "2952", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDRB" + }, + { + "id": "35701", + "ident": "SDRC", + "type": "small_airport", + "name": "Fazenda Santana Airport", + "latitude_deg": "-22.181943893432617", + "longitude_deg": "-50.8658332824707", + "elevation_ft": "1608", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Rancharia", + "scheduled_service": "no", + "gps_code": "SDRC" + }, + { + "id": "35702", + "ident": "SDRD", + "type": "small_airport", + "name": "Adhemar Ribeiro Airport", + "latitude_deg": "-21.641922", + "longitude_deg": "-47.469993", + "elevation_ft": "2776", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santa Rita Do Passa Quatro", + "scheduled_service": "no", + "gps_code": "SIOR", + "local_code": "SP0191", + "keywords": "SDRD" + }, + { + "id": "35703", + "ident": "SDRE", + "type": "heliport", + "name": "Recreio Heliport", + "latitude_deg": "-23.00777816772461", + "longitude_deg": "-43.44694519042969", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SDRE" + }, + { + "id": "35704", + "ident": "SDRF", + "type": "small_airport", + "name": "Fazenda Recanto Feliz Airport", + "latitude_deg": "-22.746110916137695", + "longitude_deg": "-44.05083465576172", + "elevation_ft": "1750", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio Claro", + "scheduled_service": "no", + "gps_code": "SDRF" + }, + { + "id": "35705", + "ident": "SDRG", + "type": "heliport", + "name": "Graciosa Heliport", + "latitude_deg": "-25.391666412353516", + "longitude_deg": "-49.15583419799805", + "elevation_ft": "2986", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Pinhais", + "scheduled_service": "no", + "gps_code": "SDRG" + }, + { + "id": "35706", + "ident": "SDRH", + "type": "small_airport", + "name": "Fazenda Chaparral Airport", + "latitude_deg": "-20.844444274902344", + "longitude_deg": "-54.5261116027832", + "elevation_ft": "1509", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "gps_code": "SDRH" + }, + { + "id": "35707", + "ident": "SDRI", + "type": "heliport", + "name": "Rio Sul Center Heliport", + "latitude_deg": "-22.957778930664062", + "longitude_deg": "-43.177223205566406", + "elevation_ft": "532", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SDRI" + }, + { + "id": "35708", + "ident": "SDRJ", + "type": "heliport", + "name": "Prefeitura do Rio de Janeiro Heliport", + "latitude_deg": "-22.970277786254883", + "longitude_deg": "-43.209999084472656", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SDRJ" + }, + { + "id": "30338", + "ident": "SDRK", + "type": "small_airport", + "name": "Rio Claro Airport", + "latitude_deg": "-22.430735", + "longitude_deg": "-47.562293", + "elevation_ft": "1968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Rio Claro", + "scheduled_service": "no", + "gps_code": "SDRK", + "local_code": "SP0049", + "home_link": "http://www.aeroclubederioclaro.com.br/", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroclube_de_Rio_Claro", + "keywords": "QIQ" + }, + { + "id": "35709", + "ident": "SDRL", + "type": "heliport", + "name": "Faria Lima Heliport", + "latitude_deg": "-23.567222595214844", + "longitude_deg": "-46.692779541015625", + "elevation_ft": "2622", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDRL" + }, + { + "id": "327051", + "ident": "SDRM", + "type": "small_airport", + "name": "Olomai Airstrip", + "latitude_deg": "3.926666", + "longitude_deg": "-64.184722", + "elevation_ft": "568", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Amajari", + "scheduled_service": "no", + "gps_code": "SDRM" + }, + { + "id": "35710", + "ident": "SDRN", + "type": "heliport", + "name": "Zarzur Helipad", + "latitude_deg": "-23.570104", + "longitude_deg": "-46.691895", + "elevation_ft": "2606", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDRN", + "local_code": "SP0415" + }, + { + "id": "35711", + "ident": "SDRO", + "type": "small_airport", + "name": "Agropastoril bom Pastor Airport", + "latitude_deg": "-16.465555", + "longitude_deg": "-54.711945", + "elevation_ft": "1034", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Rondonópolis", + "scheduled_service": "no", + "gps_code": "SDWC", + "local_code": "MT0070", + "keywords": "SDRO" + }, + { + "id": "327054", + "ident": "SDRP", + "type": "small_airport", + "name": "Onkiola Airstrip", + "latitude_deg": "3.711387", + "longitude_deg": "-64.163487", + "elevation_ft": "2242", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Amajari", + "scheduled_service": "no", + "gps_code": "SDRP" + }, + { + "id": "35712", + "ident": "SDRQ", + "type": "heliport", + "name": "Dr. Rudolf Imanuel Schneider Heliport", + "latitude_deg": "-16.440555572509766", + "longitude_deg": "-39.08333206176758", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Porto Seguro", + "scheduled_service": "no", + "gps_code": "SDRQ" + }, + { + "id": "199", + "ident": "SDRR", + "type": "small_airport", + "name": "Avaré-Arandu Airport", + "latitude_deg": "-23.092501", + "longitude_deg": "-48.987401", + "elevation_ft": "2657", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Avaré", + "scheduled_service": "no", + "gps_code": "SDRR", + "local_code": "SDRR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Avar%C3%A9-Arandu_Airport", + "keywords": "Comte. Luiz Gonzaga Luth Regional Airport, QVP" + }, + { + "id": "200", + "ident": "SDRS", + "type": "small_airport", + "name": "Resende Airport", + "latitude_deg": "-22.4785", + "longitude_deg": "-44.480301", + "elevation_ft": "1320", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Resende", + "scheduled_service": "no", + "gps_code": "SDRS", + "iata_code": "REZ", + "local_code": "RJ0007", + "wikipedia_link": "https://en.wikipedia.org/wiki/Resende_Airport", + "keywords": "QRZ" + }, + { + "id": "327057", + "ident": "SDRT", + "type": "small_airport", + "name": "Ponto Geral Airport", + "latitude_deg": "4.649381", + "longitude_deg": "-60.785073", + "elevation_ft": "2343", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Ponto Geral", + "scheduled_service": "no", + "gps_code": "SDRT" + }, + { + "id": "35713", + "ident": "SDRU", + "type": "small_airport", + "name": "Fazenda Caramuru Airport", + "latitude_deg": "-21.693889617919922", + "longitude_deg": "-50.93611145019531", + "elevation_ft": "1285", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Inúbia Paulista", + "scheduled_service": "no", + "gps_code": "SDRU" + }, + { + "id": "35714", + "ident": "SDRV", + "type": "heliport", + "name": "VR Heliport", + "latitude_deg": "-23.594444274902344", + "longitude_deg": "-46.70694351196289", + "elevation_ft": "2614", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDRV" + }, + { + "id": "45576", + "ident": "SDRW", + "type": "small_airport", + "name": "Fazenda Pirapitinga Airport", + "latitude_deg": "-18.7775", + "longitude_deg": "-49.231667", + "elevation_ft": "2172", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Canápolis", + "scheduled_service": "no", + "gps_code": "SDRW" + }, + { + "id": "35715", + "ident": "SDRX", + "type": "small_airport", + "name": "Fazenda Palmeiras Airport", + "latitude_deg": "-17.97081", + "longitude_deg": "-57.019162", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SWXP", + "local_code": "SWXP", + "keywords": "SDRX" + }, + { + "id": "35716", + "ident": "SDRY", + "type": "small_airport", + "name": "Fazenda São Paulo Airport", + "latitude_deg": "-22.952777862548828", + "longitude_deg": "-54.845279693603516", + "elevation_ft": "1493", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Amambaí", + "scheduled_service": "no", + "gps_code": "SDRY" + }, + { + "id": "35717", + "ident": "SDRZ", + "type": "small_airport", + "name": "Fazenda Marabá Airport", + "latitude_deg": "-21.68722152709961", + "longitude_deg": "-57.358055114746094", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SDRZ" + }, + { + "id": "350373", + "ident": "SDS2", + "type": "small_airport", + "name": "Fazenda Macaúba Airport", + "latitude_deg": "-14.29264", + "longitude_deg": "-46.406655", + "elevation_ft": "2920", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Posse", + "scheduled_service": "no", + "gps_code": "SDS2", + "local_code": "GO0280" + }, + { + "id": "351061", + "ident": "SDS3", + "type": "small_airport", + "name": "Fazenda Iracema Airstrip", + "latitude_deg": "-11.619956", + "longitude_deg": "-55.122026", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cláudia", + "scheduled_service": "no", + "gps_code": "SDS3", + "local_code": "MT0775" + }, + { + "id": "350367", + "ident": "SDS4", + "type": "small_airport", + "name": "Fazenda Sankara Airport", + "latitude_deg": "-14.61367", + "longitude_deg": "-59.629317", + "elevation_ft": "883", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Lacerda", + "scheduled_service": "no", + "gps_code": "SDS4", + "local_code": "MT0753" + }, + { + "id": "351060", + "ident": "SDS6", + "type": "small_airport", + "name": "Fazenda Caraíbas Airstrip", + "latitude_deg": "-3.751667", + "longitude_deg": "-42.297778", + "elevation_ft": "282", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Morro do Chapéu do Piauí", + "scheduled_service": "no", + "gps_code": "SDS6", + "local_code": "PI0087" + }, + { + "id": "351058", + "ident": "SDS7", + "type": "small_airport", + "name": "Fazenda Membeca Airstrip", + "latitude_deg": "-12.7309", + "longitude_deg": "-57.8721", + "elevation_ft": "1384", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SDS7", + "local_code": "MT0787" + }, + { + "id": "351063", + "ident": "SDS8", + "type": "small_airport", + "name": "Fazenda Garrote Airstrip", + "latitude_deg": "-18.024762", + "longitude_deg": "-53.262527", + "elevation_ft": "2940", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Alcinópolis", + "scheduled_service": "no", + "gps_code": "SDS8", + "local_code": "MS0625" + }, + { + "id": "351065", + "ident": "SDS9", + "type": "small_airport", + "name": "Fazenda Pontal Airstrip", + "latitude_deg": "-13.236389", + "longitude_deg": "-48.184444", + "elevation_ft": "1132", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Minaçu", + "scheduled_service": "no", + "gps_code": "SDS9", + "local_code": "GO0326" + }, + { + "id": "332443", + "ident": "SDSA", + "type": "small_airport", + "name": "Fazenda Califórnia Airport", + "latitude_deg": "-18.035457", + "longitude_deg": "-55.716094", + "elevation_ft": "486", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SDSA", + "local_code": "MS0052" + }, + { + "id": "35718", + "ident": "SDSB", + "type": "small_airport", + "name": "Fazenda São Sebastião Airport", + "latitude_deg": "-19.995832443237305", + "longitude_deg": "-47.523887634277344", + "elevation_ft": "1705", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Rifaina", + "scheduled_service": "no", + "gps_code": "SDSB" + }, + { + "id": "201", + "ident": "SDSC", + "type": "small_airport", + "name": "Mário Pereira Lopes–São Carlos Airport", + "latitude_deg": "-21.875401", + "longitude_deg": "-47.903703", + "elevation_ft": "2649", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Carlos", + "scheduled_service": "no", + "gps_code": "SDSC", + "iata_code": "QSC", + "local_code": "SDSC", + "wikipedia_link": "https://en.wikipedia.org/wiki/S%C3%A3o_Carlos_Airport" + }, + { + "id": "332445", + "ident": "SDSD", + "type": "small_airport", + "name": "Samã I Airport", + "latitude_deg": "4.411792", + "longitude_deg": "-60.951436", + "elevation_ft": "554", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SDSD", + "local_code": "RR0016" + }, + { + "id": "35719", + "ident": "SDSE", + "type": "small_airport", + "name": "Sítio Santa Helena Airport", + "latitude_deg": "-21.47333335876465", + "longitude_deg": "-50.61555480957031", + "elevation_ft": "1414", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Gabriel Monteiro", + "scheduled_service": "no", + "gps_code": "SDSE" + }, + { + "id": "35720", + "ident": "SDSF", + "type": "heliport", + "name": "Shering Plough Heliport", + "latitude_deg": "-22.962778091430664", + "longitude_deg": "-43.372501373291016", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SDSF" + }, + { + "id": "35721", + "ident": "SDSG", + "type": "heliport", + "name": "Fazenda Nossa Senhora da Conceição Heliport", + "latitude_deg": "-22.752500534057617", + "longitude_deg": "-48.52111053466797", + "elevation_ft": "2231", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Manuel", + "scheduled_service": "no", + "gps_code": "SDSG" + }, + { + "id": "35722", + "ident": "SDSH", + "type": "small_airport", + "name": "Fazenda Sangrilá Airport", + "latitude_deg": "-22.295555114746094", + "longitude_deg": "-49.212223052978516", + "elevation_ft": "1755", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Bauru", + "scheduled_service": "no", + "gps_code": "SDSH" + }, + { + "id": "35723", + "ident": "SDSI", + "type": "heliport", + "name": "SESI - FIESP Heliport", + "latitude_deg": "-23.56379", + "longitude_deg": "-46.654558", + "elevation_ft": "2986", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDZR", + "local_code": "SP0460", + "keywords": "SDSI" + }, + { + "id": "30221", + "ident": "SDSJ", + "type": "small_airport", + "name": "Fazenda São João Airport", + "latitude_deg": "-20.7455997467041", + "longitude_deg": "-47.93360137939453", + "elevation_ft": "2172", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Orlândia", + "scheduled_service": "no", + "gps_code": "SDSJ", + "iata_code": "0" + }, + { + "id": "35724", + "ident": "SDSK", + "type": "small_airport", + "name": "Saquarema Airport", + "latitude_deg": "-22.928773", + "longitude_deg": "-42.50571", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Saquarema", + "scheduled_service": "no", + "gps_code": "SDSK" + }, + { + "id": "35725", + "ident": "SDSL", + "type": "heliport", + "name": "Hospital Sírio Libanês Heliport", + "latitude_deg": "-23.557222366333008", + "longitude_deg": "-46.65444564819336", + "elevation_ft": "2755", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDSL" + }, + { + "id": "35726", + "ident": "SDSM", + "type": "small_airport", + "name": "Fazenda Nossa Senhora da Conceição Airport", + "latitude_deg": "-22.76472282409668", + "longitude_deg": "-48.54249954223633", + "elevation_ft": "2482", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Manuel", + "scheduled_service": "no", + "gps_code": "SDSM" + }, + { + "id": "35727", + "ident": "SDSN", + "type": "heliport", + "name": "São Luiz Heliport", + "latitude_deg": "-23.59055519104004", + "longitude_deg": "-46.686668395996094", + "elevation_ft": "2582", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDSN" + }, + { + "id": "35728", + "ident": "SDSO", + "type": "small_airport", + "name": "Fazenda São Geraldo Airport", + "latitude_deg": "-22.003889083862305", + "longitude_deg": "-51.81111145019531", + "elevation_ft": "1476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Piquerobi", + "scheduled_service": "no", + "gps_code": "SDSO" + }, + { + "id": "35729", + "ident": "SDSQ", + "type": "small_airport", + "name": "Usina Santa Rita Airport", + "latitude_deg": "-21.72361183166504", + "longitude_deg": "-47.656944274902344", + "elevation_ft": "2067", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santa Rita Do Passa Quatro", + "scheduled_service": "no", + "gps_code": "SDSQ" + }, + { + "id": "35730", + "ident": "SDSR", + "type": "heliport", + "name": "Subestação São Roque Heliport", + "latitude_deg": "-23.658611297607422", + "longitude_deg": "-47.102779388427734", + "elevation_ft": "2867", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ibiúna", + "scheduled_service": "no", + "gps_code": "SDSR" + }, + { + "id": "345039", + "ident": "SDSS", + "type": "small_airport", + "name": "Fazenda Baia das Pedras Airstrip", + "latitude_deg": "-19.254167", + "longitude_deg": "-55.783056", + "elevation_ft": "420", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SDSS", + "local_code": "MS0514" + }, + { + "id": "35731", + "ident": "SDST", + "type": "small_airport", + "name": "Fazenda Santa Terezinha da Barra Airport", + "latitude_deg": "-21.88194465637207", + "longitude_deg": "-47.7761116027832", + "elevation_ft": "2385", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Carlos", + "scheduled_service": "no", + "gps_code": "SDST" + }, + { + "id": "35732", + "ident": "SDSU", + "type": "heliport", + "name": "Pirelli Sumaré Heliport", + "latitude_deg": "-22.800556182861328", + "longitude_deg": "-47.192222595214844", + "elevation_ft": "1557", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sumaré", + "scheduled_service": "no", + "gps_code": "SDSU" + }, + { + "id": "35733", + "ident": "SDSV", + "type": "small_airport", + "name": "Fazenda Santa Cândida Airport", + "latitude_deg": "-21.327777862548828", + "longitude_deg": "-48.171112060546875", + "elevation_ft": "2080", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guariba", + "scheduled_service": "no", + "gps_code": "SDSV" + }, + { + "id": "334953", + "ident": "SDSW", + "type": "heliport", + "name": "Carta Fabril 01 Heliport", + "latitude_deg": "-22.582173", + "longitude_deg": "-43.992648", + "elevation_ft": "1434", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Piraí", + "scheduled_service": "no", + "gps_code": "SDSW", + "local_code": "RJ0180" + }, + { + "id": "332453", + "ident": "SDSX", + "type": "heliport", + "name": "ITM Expo Helipad", + "latitude_deg": "-23.526045", + "longitude_deg": "-46.743984", + "elevation_ft": "2444", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDSX", + "local_code": "SP0420" + }, + { + "id": "35734", + "ident": "SDSY", + "type": "closed", + "name": "Panco III Heliport", + "latitude_deg": "-22.713301", + "longitude_deg": "-43.692501", + "elevation_ft": "126", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Seropédica", + "scheduled_service": "no", + "keywords": "SDSY" + }, + { + "id": "35735", + "ident": "SDSZ", + "type": "heliport", + "name": "Banco Safra Heliport", + "latitude_deg": "-23.5581", + "longitude_deg": "-46.65966", + "elevation_ft": "2973", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDSZ" + }, + { + "id": "351270", + "ident": "SDT2", + "type": "small_airport", + "name": "Fazenda São Geraldo II Airstrip", + "latitude_deg": "-4.036944", + "longitude_deg": "-49.183611", + "elevation_ft": "233", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Goianésia do Pará", + "scheduled_service": "no", + "gps_code": "SDT2", + "local_code": "PA0317" + }, + { + "id": "351271", + "ident": "SDT3", + "type": "small_airport", + "name": "Fazenda Rio Alegre Airstrip", + "latitude_deg": "-14.038742", + "longitude_deg": "-53.553929", + "elevation_ft": "1552", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Paranatinga", + "scheduled_service": "no", + "gps_code": "SDT3", + "local_code": "MT0763" + }, + { + "id": "351272", + "ident": "SDT4", + "type": "small_airport", + "name": "Fazenda Jucarama Airstrip", + "latitude_deg": "-14.096057", + "longitude_deg": "-52.690872", + "elevation_ft": "1411", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Água Boa", + "scheduled_service": "no", + "gps_code": "SDT4", + "local_code": "MT0786" + }, + { + "id": "351274", + "ident": "SDT6", + "type": "small_airport", + "name": "Fazenda Reunidas Espigão do Oeste Airport", + "latitude_deg": "-11.54667", + "longitude_deg": "-52.140613", + "elevation_ft": "1175", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São Félix do Araguaia", + "scheduled_service": "no", + "gps_code": "SDT6", + "local_code": "MT0752" + }, + { + "id": "351275", + "ident": "SDT7", + "type": "small_airport", + "name": "Master Bela Vista Airstrip", + "latitude_deg": "-28.174167", + "longitude_deg": "-52.600278", + "elevation_ft": "2028", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Passo Fundo", + "scheduled_service": "no", + "gps_code": "SDT7", + "local_code": "RS0184" + }, + { + "id": "352362", + "ident": "SDT8", + "type": "small_airport", + "name": "Fazenda Caraíbas Airport", + "latitude_deg": "-17.189291", + "longitude_deg": "-44.612058", + "elevation_ft": "1683", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Jequitaí", + "scheduled_service": "no", + "gps_code": "SDT8", + "local_code": "MG0430" + }, + { + "id": "352367", + "ident": "SDT9", + "type": "heliport", + "name": "CMPC HF Santa Margarida Heliport", + "latitude_deg": "-30.183611", + "longitude_deg": "-54.083056", + "elevation_ft": "541", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Santa Margarida do Sul", + "scheduled_service": "no", + "gps_code": "SDT9", + "local_code": "RS0162" + }, + { + "id": "35736", + "ident": "SDTA", + "type": "heliport", + "name": "Tatuí Heliport", + "latitude_deg": "-23.33194351196289", + "longitude_deg": "-47.880001068115234", + "elevation_ft": "2083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Tatuí", + "scheduled_service": "no", + "gps_code": "SDTA" + }, + { + "id": "35737", + "ident": "SDTB", + "type": "small_airport", + "name": "Atibaia Airport", + "latitude_deg": "-23.127777099609375", + "longitude_deg": "-46.57472229003906", + "elevation_ft": "2592", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Atibaia", + "scheduled_service": "no", + "gps_code": "SDTB" + }, + { + "id": "35738", + "ident": "SDTC", + "type": "heliport", + "name": "Edel Trade Center Heliport", + "latitude_deg": "-23.6027774810791", + "longitude_deg": "-46.660831451416016", + "elevation_ft": "2732", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDTC" + }, + { + "id": "202", + "ident": "SDTE", + "type": "small_airport", + "name": "Fazenda Tapijara Airport", + "latitude_deg": "-23.219999313354492", + "longitude_deg": "-49.07590103149414", + "elevation_ft": "1929", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Arandu", + "scheduled_service": "no", + "gps_code": "SDTE", + "local_code": "SDTE" + }, + { + "id": "203", + "ident": "SDTF", + "type": "small_airport", + "name": "Tatuí Airport", + "latitude_deg": "-23.331899642944336", + "longitude_deg": "-47.878299713134766", + "elevation_ft": "2083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Tatuí", + "scheduled_service": "no", + "gps_code": "SDTF", + "local_code": "SDTF" + }, + { + "id": "35739", + "ident": "SDTG", + "type": "heliport", + "name": "Edifício Atrium IV Heliport", + "latitude_deg": "-23.592936", + "longitude_deg": "-46.686546", + "elevation_ft": "2608", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDTG", + "local_code": "SP0423" + }, + { + "id": "35740", + "ident": "SDTH", + "type": "heliport", + "name": "Dimep Heliport", + "latitude_deg": "-23.147499084472656", + "longitude_deg": "-48.495277404785156", + "elevation_ft": "2323", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itatinga", + "scheduled_service": "no", + "gps_code": "SDTH" + }, + { + "id": "35741", + "ident": "SDTI", + "type": "small_airport", + "name": "Tupi Paulista Airport", + "latitude_deg": "-21.393056869506836", + "longitude_deg": "-51.5988883972168", + "elevation_ft": "1198", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Tupi Paulista", + "scheduled_service": "no", + "gps_code": "SDTI" + }, + { + "id": "35742", + "ident": "SDTJ", + "type": "heliport", + "name": "Edifício Atrium V Heliport", + "latitude_deg": "-23.59583282470703", + "longitude_deg": "-46.684444427490234", + "elevation_ft": "2594", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDTJ" + }, + { + "id": "30240", + "ident": "SDTK", + "type": "small_airport", + "name": "Paraty Airport", + "latitude_deg": "-23.224044", + "longitude_deg": "-44.7234", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Paraty", + "scheduled_service": "yes", + "gps_code": "SDTK", + "iata_code": "JPY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paraty_Airport" + }, + { + "id": "35743", + "ident": "SDTL", + "type": "closed", + "name": "Telesp Heliport", + "latitude_deg": "-23.520832061799997", + "longitude_deg": "-46.6780548096", + "elevation_ft": "2366", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDTL" + }, + { + "id": "35744", + "ident": "SDTM", + "type": "heliport", + "name": "Crystal Tower Heliport", + "latitude_deg": "-23.4931", + "longitude_deg": "-46.8528", + "elevation_ft": "2827", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SDTM" + }, + { + "id": "35745", + "ident": "SDTN", + "type": "small_airport", + "name": "Usina Açucareira Santo Antônio Airport", + "latitude_deg": "-21.121212", + "longitude_deg": "-47.947913", + "elevation_ft": "1969", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sertãozinho", + "scheduled_service": "no", + "gps_code": "SWAS", + "local_code": "SP0270", + "keywords": "SDTN" + }, + { + "id": "30503", + "ident": "SDTO", + "type": "small_airport", + "name": "Fazenda Cataco Airport", + "latitude_deg": "-21.263599395751953", + "longitude_deg": "-49.79309844970703", + "elevation_ft": "1447", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ubarana", + "scheduled_service": "no", + "gps_code": "SDTO", + "iata_code": "0" + }, + { + "id": "204", + "ident": "SDTP", + "type": "small_airport", + "name": "Tupã Airport", + "latitude_deg": "-21.88909912109375", + "longitude_deg": "-50.50510025024414", + "elevation_ft": "1805", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Tupã", + "scheduled_service": "no", + "gps_code": "SDTP", + "local_code": "SDTP" + }, + { + "id": "30470", + "ident": "SDTQ", + "type": "small_airport", + "name": "Fazenda Santa Thereza Airport", + "latitude_deg": "-18.229061", + "longitude_deg": "-51.207886", + "elevation_ft": "2149", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Aparecida do Rio Doce", + "scheduled_service": "no", + "gps_code": "SWXK", + "local_code": "SWXK", + "keywords": "SDTQ" + }, + { + "id": "35746", + "ident": "SDTR", + "type": "small_airport", + "name": "Fazenda Bandeirantes Airport", + "latitude_deg": "-20.883333206176758", + "longitude_deg": "-57.41777801513672", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SDTR" + }, + { + "id": "35747", + "ident": "SDTS", + "type": "small_airport", + "name": "Fazenda Planalto Airport", + "latitude_deg": "-20.341388702392578", + "longitude_deg": "-54.41583251953125", + "elevation_ft": "2329", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Jaraguari", + "scheduled_service": "no", + "gps_code": "SDTS" + }, + { + "id": "35983", + "ident": "SDTT", + "type": "heliport", + "name": "Região das Hortências Heliport", + "latitude_deg": "-29.361552", + "longitude_deg": "-50.853144", + "elevation_ft": "2805", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Gramado", + "scheduled_service": "no", + "gps_code": "SDTT", + "local_code": "RS0103", + "keywords": "SIGR" + }, + { + "id": "35749", + "ident": "SDTU", + "type": "heliport", + "name": "Itausa Heliport", + "latitude_deg": "-23.63638889", + "longitude_deg": "-46.64194444", + "elevation_ft": "2536", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDTU" + }, + { + "id": "35750", + "ident": "SDTV", + "type": "heliport", + "name": "Tivoli Center Heliport", + "latitude_deg": "-23.628636", + "longitude_deg": "-46.73658", + "elevation_ft": "2644", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJTV", + "local_code": "SP0663", + "keywords": "SDTV" + }, + { + "id": "35751", + "ident": "SDTW", + "type": "small_airport", + "name": "Fazenda São João Airport", + "latitude_deg": "-20.32611083984375", + "longitude_deg": "-55.100555419921875", + "elevation_ft": "919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Terenos", + "scheduled_service": "no", + "gps_code": "SDTW" + }, + { + "id": "35752", + "ident": "SDTX", + "type": "small_airport", + "name": "Fazenda São José Airport", + "latitude_deg": "-20.54194450378418", + "longitude_deg": "-51.35749816894531", + "elevation_ft": "1236", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ilha Solteira", + "scheduled_service": "no", + "gps_code": "SDTX" + }, + { + "id": "205", + "ident": "SDTY", + "type": "small_airport", + "name": "Usina São Martinho Airport", + "latitude_deg": "-21.339799880981445", + "longitude_deg": "-48.114898681640625", + "elevation_ft": "1713", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Pradópolis", + "scheduled_service": "no", + "gps_code": "SDTY", + "local_code": "SDTY" + }, + { + "id": "35753", + "ident": "SDTZ", + "type": "small_airport", + "name": "Fazenda Santa Júlia Airport", + "latitude_deg": "-20.11916732788086", + "longitude_deg": "-57.111942291259766", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SDTZ" + }, + { + "id": "353587", + "ident": "SDU2", + "type": "heliport", + "name": "CMPC HF Fazenda da Bota Heliport", + "latitude_deg": "-30.467078", + "longitude_deg": "-52.469308", + "elevation_ft": "1017", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Encruzilhada do Sul", + "scheduled_service": "no", + "gps_code": "SDU2", + "local_code": "RS0161" + }, + { + "id": "351276", + "ident": "SDU3", + "type": "small_airport", + "name": "Fazenda Ipiranga Airport", + "latitude_deg": "-11.66442", + "longitude_deg": "-47.177707", + "elevation_ft": "1302", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Almas", + "scheduled_service": "no", + "gps_code": "SDU3", + "local_code": "TO0103" + }, + { + "id": "353589", + "ident": "SDU4", + "type": "small_airport", + "name": "IBMG Airport", + "latitude_deg": "-15.860833", + "longitude_deg": "-39.28", + "elevation_ft": "344", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Belmonte", + "scheduled_service": "no", + "gps_code": "SDU4", + "local_code": "BA0369" + }, + { + "id": "351477", + "ident": "SDU6", + "type": "small_airport", + "name": "Pousada Acarí Airstrip", + "latitude_deg": "-5.778674", + "longitude_deg": "-59.926985", + "elevation_ft": "254", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Novo Aripuanã", + "scheduled_service": "no", + "gps_code": "SDU6", + "local_code": "AM0103" + }, + { + "id": "351479", + "ident": "SDU8", + "type": "heliport", + "name": "Terroir Heliport", + "latitude_deg": "-29.208333", + "longitude_deg": "-51.56", + "elevation_ft": "2034", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Garibaldi", + "scheduled_service": "no", + "gps_code": "SDU8", + "local_code": "RS0190" + }, + { + "id": "351475", + "ident": "SDU9", + "type": "heliport", + "name": "BR LOG Queimados Heliport", + "latitude_deg": "-22.741426", + "longitude_deg": "-43.539822", + "elevation_ft": "138", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Queimados", + "scheduled_service": "no", + "gps_code": "SDU9", + "local_code": "RJ0355" + }, + { + "id": "35754", + "ident": "SDUA", + "type": "small_airport", + "name": "Agrorural Sol Nascente Airport", + "latitude_deg": "-3.508610963821411", + "longitude_deg": "-56.315834045410156", + "elevation_ft": "108", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Aveiro", + "scheduled_service": "no", + "gps_code": "SDUA" + }, + { + "id": "206", + "ident": "SDUB", + "type": "small_airport", + "name": "Ubatuba Gastão Madeira State Airport", + "latitude_deg": "-23.440628", + "longitude_deg": "-45.074057", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ubatuba", + "scheduled_service": "no", + "gps_code": "SDUB", + "iata_code": "UBT", + "local_code": "SDUB" + }, + { + "id": "323622", + "ident": "SDUC", + "type": "small_airport", + "name": "Santa Rita Airport", + "latitude_deg": "4.426748", + "longitude_deg": "-60.188598", + "elevation_ft": "515", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SDUC" + }, + { + "id": "207", + "ident": "SDUD", + "type": "small_airport", + "name": "Usina Santa Adélia Airport", + "latitude_deg": "-21.332300186157227", + "longitude_deg": "-48.316200256347656", + "elevation_ft": "1991", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jaboticabal", + "scheduled_service": "no", + "gps_code": "SDUD", + "local_code": "SDUD" + }, + { + "id": "35755", + "ident": "SDUE", + "type": "small_airport", + "name": "Fazenda Figueira Airport", + "latitude_deg": "-21.511943817138672", + "longitude_deg": "-50.12111282348633", + "elevation_ft": "1526", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Penápolis", + "scheduled_service": "no", + "gps_code": "SDUE" + }, + { + "id": "45587", + "ident": "SDUF", + "type": "small_airport", + "name": "Fazenda Touro Peru Airport", + "latitude_deg": "-21.080556", + "longitude_deg": "-57.497222", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SDUF" + }, + { + "id": "30511", + "ident": "SDUG", + "type": "closed", + "name": "Usina Sao Geraldo Airport", + "latitude_deg": "-21.130800247192383", + "longitude_deg": "-48.06639862060547", + "elevation_ft": "1804", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeiro Preto", + "scheduled_service": "no", + "gps_code": "SDUG" + }, + { + "id": "35756", + "ident": "SDUH", + "type": "small_airport", + "name": "Fazenda Sumaré Airport", + "latitude_deg": "-21.542281", + "longitude_deg": "-53.345331", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas Do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SWRM", + "local_code": "SWRM", + "keywords": "SDUH" + }, + { + "id": "35757", + "ident": "SDUI", + "type": "heliport", + "name": "Centro EmpresariaL Iudice Heliport", + "latitude_deg": "-23.5130558013916", + "longitude_deg": "-46.69444274902344", + "elevation_ft": "2487", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDUI" + }, + { + "id": "35758", + "ident": "SDUJ", + "type": "heliport", + "name": "Milennium Heliport", + "latitude_deg": "-23.584809", + "longitude_deg": "-46.682743", + "elevation_ft": "2575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDUJ", + "local_code": "SP0431" + }, + { + "id": "44719", + "ident": "SDUK", + "type": "small_airport", + "name": "Fazenda Xaimite Airport", + "latitude_deg": "-14.0966672897", + "longitude_deg": "-52.9019432068", + "elevation_ft": "1601", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Água Boa", + "scheduled_service": "no", + "gps_code": "SDUK" + }, + { + "id": "35759", + "ident": "SDUL", + "type": "small_airport", + "name": "Usina Santa Lydia Airport", + "latitude_deg": "-21.20166778564453", + "longitude_deg": "-47.920555114746094", + "elevation_ft": "2270", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Preto", + "scheduled_service": "no", + "gps_code": "SDUL" + }, + { + "id": "35760", + "ident": "SDUM", + "type": "heliport", + "name": "Uniban Heliport", + "latitude_deg": "-23.506389617919922", + "longitude_deg": "-46.59694290161133", + "elevation_ft": "2568", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDUM" + }, + { + "id": "208", + "ident": "SDUN", + "type": "small_airport", + "name": "Itaperuna Airport", + "latitude_deg": "-21.219299316399997", + "longitude_deg": "-41.8759002686", + "elevation_ft": "410", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Itaperuna", + "scheduled_service": "no", + "gps_code": "SDUN", + "iata_code": "ITP", + "local_code": "SDUN", + "wikipedia_link": "http://pt.wikipedia.org/wiki/Aeroporto_de_Itaperuna" + }, + { + "id": "209", + "ident": "SDUO", + "type": "small_airport", + "name": "Alagoinhas Airport", + "latitude_deg": "-12.175078", + "longitude_deg": "-38.380055", + "elevation_ft": "568", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Alagoinhas", + "scheduled_service": "no", + "gps_code": "SIGL", + "local_code": "BA0086", + "keywords": "QGS, SDUO" + }, + { + "id": "35761", + "ident": "SDUP", + "type": "heliport", + "name": "Unibanco Patriarca Heliport", + "latitude_deg": "-23.54805564880371", + "longitude_deg": "-46.636112213134766", + "elevation_ft": "2867", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDUP" + }, + { + "id": "35762", + "ident": "SDUQ", + "type": "small_airport", + "name": "Paraguaçu Paulista Airport", + "latitude_deg": "-22.42690086364746", + "longitude_deg": "-50.60689926147461", + "elevation_ft": "1525", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Paraguaçu Paulista", + "scheduled_service": "no", + "gps_code": "SDUQ", + "keywords": "SDSS" + }, + { + "id": "35763", + "ident": "SDUR", + "type": "small_airport", + "name": "Iberá Airport", + "latitude_deg": "-25.051944732666016", + "longitude_deg": "-50.190834045410156", + "elevation_ft": "2937", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Ponta Grossa", + "scheduled_service": "no", + "gps_code": "SDUR" + }, + { + "id": "44720", + "ident": "SDUS", + "type": "small_airport", + "name": "Mayrowy Airport", + "latitude_deg": "-7.958802", + "longitude_deg": "-57.839962", + "elevation_ft": "400", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Apiacás", + "scheduled_service": "no", + "gps_code": "SDUY", + "local_code": "MT0066", + "keywords": "SDUS" + }, + { + "id": "35764", + "ident": "SDUT", + "type": "heliport", + "name": "Hotel Transamérica Heliport", + "latitude_deg": "-23.650833129882812", + "longitude_deg": "-46.7227783203125", + "elevation_ft": "2379", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDUT" + }, + { + "id": "46476", + "ident": "SDUU", + "type": "small_airport", + "name": "Usina Califórnia Airport", + "latitude_deg": "-21.91111", + "longitude_deg": "-50.86833", + "elevation_ft": "1476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Parapuã", + "scheduled_service": "no", + "gps_code": "SDUU", + "local_code": "SDUU" + }, + { + "id": "327077", + "ident": "SDUV", + "type": "heliport", + "name": "Columbia Heliport", + "latitude_deg": "-20.177503", + "longitude_deg": "-40.232426", + "elevation_ft": "84", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Serra", + "scheduled_service": "no", + "gps_code": "SDUV" + }, + { + "id": "44715", + "ident": "SDUW", + "type": "heliport", + "name": "Fazenda Sertãozinho Heliport", + "latitude_deg": "-21.64189910888672", + "longitude_deg": "-46.342201232910156", + "elevation_ft": "2739", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Botelho", + "scheduled_service": "no", + "gps_code": "SDUW" + }, + { + "id": "45883", + "ident": "SDUX", + "type": "heliport", + "name": "Havan Heliport", + "latitude_deg": "-27.1069444444", + "longitude_deg": "-48.9075", + "elevation_ft": "253", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Brusque", + "scheduled_service": "no", + "gps_code": "SDUX" + }, + { + "id": "45615", + "ident": "SDUY", + "type": "heliport", + "name": "Rio Alpha Heliport", + "latitude_deg": "-22.91722", + "longitude_deg": "-43.18139", + "elevation_ft": "495", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SDUY" + }, + { + "id": "35765", + "ident": "SDUZ", + "type": "small_airport", + "name": "Usina São Luiz Airport", + "latitude_deg": "-22.947486", + "longitude_deg": "-49.764333", + "elevation_ft": "1608", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ourinhos", + "scheduled_service": "no", + "gps_code": "SNZL", + "local_code": "SP0242", + "keywords": "SDUZ" + }, + { + "id": "353630", + "ident": "SDV2", + "type": "heliport", + "name": "Ninho do Pássaro IV Heliport", + "latitude_deg": "-27.004205", + "longitude_deg": "-48.645955", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Camboriú", + "scheduled_service": "no", + "gps_code": "SDV2", + "local_code": "SC0199" + }, + { + "id": "353632", + "ident": "SDV4", + "type": "small_airport", + "name": "Gládia Girão Airport", + "latitude_deg": "-5.223333", + "longitude_deg": "-38.016111", + "elevation_ft": "479", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Gládia Girão", + "scheduled_service": "no", + "gps_code": "SDV4", + "local_code": "CE0150" + }, + { + "id": "351953", + "ident": "SDV6", + "type": "small_airport", + "name": "Fazenda Vitória Airport", + "latitude_deg": "-11.079795", + "longitude_deg": "-53.835379", + "elevation_ft": "1063", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Marcelândia", + "scheduled_service": "no", + "gps_code": "SDV6", + "local_code": "MT0722" + }, + { + "id": "351609", + "ident": "SDV8", + "type": "small_airport", + "name": "Fazenda Casa Verde Airstrip", + "latitude_deg": "-1.411389", + "longitude_deg": "-54.124167", + "elevation_ft": "702", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Monte Alegre", + "scheduled_service": "no", + "gps_code": "SDV8", + "local_code": "PA0310" + }, + { + "id": "351951", + "ident": "SDV9", + "type": "small_airport", + "name": "Fazenda Baixão Verde Airport", + "latitude_deg": "-11.199761", + "longitude_deg": "-47.324064", + "elevation_ft": "1795", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Almas", + "scheduled_service": "no", + "gps_code": "SDV9", + "local_code": "TO0100" + }, + { + "id": "35766", + "ident": "SDVA", + "type": "small_airport", + "name": "Fazenda Campo Vitória Airport", + "latitude_deg": "-21.83222198486328", + "longitude_deg": "-46.9555549621582", + "elevation_ft": "2329", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Vargem Grande Do Sul", + "scheduled_service": "no", + "gps_code": "SDVA" + }, + { + "id": "35767", + "ident": "SDVB", + "type": "heliport", + "name": "INA Brasil Heliport", + "latitude_deg": "-23.43777847290039", + "longitude_deg": "-47.41416549682617", + "elevation_ft": "2072", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sorocaba", + "scheduled_service": "no", + "gps_code": "SDVB" + }, + { + "id": "35768", + "ident": "SDVC", + "type": "heliport", + "name": "Cometa Vila Maria Heliport", + "latitude_deg": "-23.517221", + "longitude_deg": "-46.579167", + "elevation_ft": "2418", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJWC", + "local_code": "SP0672", + "keywords": "SDVC" + }, + { + "id": "35769", + "ident": "SDVD", + "type": "heliport", + "name": "Vila Real Heliport", + "latitude_deg": "-22.410936", + "longitude_deg": "-43.148612", + "elevation_ft": "2257", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Petrópolis", + "scheduled_service": "no", + "gps_code": "SDVD" + }, + { + "id": "210", + "ident": "SDVE", + "type": "small_airport", + "name": "Vera Cruz Airport", + "latitude_deg": "-22.230199813842773", + "longitude_deg": "-49.81719970703125", + "elevation_ft": "2100", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Vera Cruz", + "scheduled_service": "no", + "gps_code": "SDVE", + "local_code": "SDVE" + }, + { + "id": "323625", + "ident": "SDVF", + "type": "small_airport", + "name": "Santo Antônio do Pão Airport", + "latitude_deg": "4.589723", + "longitude_deg": "-60.181388", + "elevation_ft": "653", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SDVF" + }, + { + "id": "211", + "ident": "SDVG", + "type": "small_airport", + "name": "Votuporanga Airport", + "latitude_deg": "-20.463199615478516", + "longitude_deg": "-50.00450134277344", + "elevation_ft": "1667", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Votuporanga", + "scheduled_service": "no", + "gps_code": "SDVG", + "iata_code": "VOT", + "local_code": "SDVG" + }, + { + "id": "35770", + "ident": "SDVH", + "type": "small_airport", + "name": "Fazenda Vale Eldorado - Dr José de Aguiar Leme Airport", + "latitude_deg": "-23.0054", + "longitude_deg": "-46.636913", + "elevation_ft": "2727", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Bragança Paulista", + "scheduled_service": "no", + "gps_code": "SDVH", + "local_code": "SP0154", + "keywords": "Atibaia" + }, + { + "id": "45647", + "ident": "SDVI", + "type": "small_airport", + "name": "Comandante Gastão Airport", + "latitude_deg": "-14.65", + "longitude_deg": "-57.5", + "elevation_ft": "1391", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tangará Da Serra", + "scheduled_service": "no", + "gps_code": "SDVI" + }, + { + "id": "45602", + "ident": "SDVJ", + "type": "small_airport", + "name": "Fazenda Santa Marta Airport", + "latitude_deg": "-8.7225", + "longitude_deg": "-50.455", + "elevation_ft": "807", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santa Maria Das Barreiras", + "scheduled_service": "no", + "gps_code": "SDVJ" + }, + { + "id": "35771", + "ident": "SDVK", + "type": "closed", + "name": "Viação Cometa Móoca Heliport", + "latitude_deg": "-23.560833", + "longitude_deg": "-46.605", + "elevation_ft": "2441", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SDVK" + }, + { + "id": "35772", + "ident": "SDVL", + "type": "small_airport", + "name": "Coronel Newton Braga Airport", + "latitude_deg": "-22.242779", + "longitude_deg": "-43.713612", + "elevation_ft": "1903", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Valença", + "scheduled_service": "no", + "keywords": "SDVL" + }, + { + "id": "35773", + "ident": "SDVM", + "type": "heliport", + "name": "Bradesco - Vila Matilde Heliport", + "latitude_deg": "-23.544248", + "longitude_deg": "-46.516575", + "elevation_ft": "2587", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SDVM" + }, + { + "id": "45586", + "ident": "SDVN", + "type": "small_airport", + "name": "Fazenda Santíssima Trindade Airport", + "latitude_deg": "-23.286944", + "longitude_deg": "-54.841111", + "elevation_ft": "1299", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Amambaí", + "scheduled_service": "no", + "gps_code": "SDVN" + }, + { + "id": "35774", + "ident": "SDVO", + "type": "closed", + "name": "Varam Heliport", + "latitude_deg": "-23.567499", + "longitude_deg": "-46.655556", + "elevation_ft": "2926", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDVO", + "keywords": "SDVO" + }, + { + "id": "332738", + "ident": "SDVP", + "type": "small_airport", + "name": "São Luiz Cotingo Airport", + "latitude_deg": "4.333889", + "longitude_deg": "-60.493611", + "elevation_ft": "197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SDVP", + "local_code": "RR0021" + }, + { + "id": "45648", + "ident": "SDVQ", + "type": "small_airport", + "name": "Fazenda Baía das Conchas Airport", + "latitude_deg": "-21.19603", + "longitude_deg": "-57.639327", + "elevation_ft": "364", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SD7D", + "local_code": "MS0551", + "keywords": "SDVQ" + }, + { + "id": "45639", + "ident": "SDVR", + "type": "heliport", + "name": "Hospital Dr.Osíris Florindo Coelho Heliport", + "latitude_deg": "-23.537778", + "longitude_deg": "-46.358056", + "elevation_ft": "2723", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ferraz De Vasconcelos", + "scheduled_service": "no", + "gps_code": "SDVR" + }, + { + "id": "30410", + "ident": "SDVS", + "type": "small_airport", + "name": "Fazenda Vassoural Airport", + "latitude_deg": "-21.072799682617188", + "longitude_deg": "-48.03419876098633", + "elevation_ft": "1801", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Pontal", + "scheduled_service": "no", + "gps_code": "SDVS", + "iata_code": "0" + }, + { + "id": "35775", + "ident": "SDVT", + "type": "heliport", + "name": "Helbor Tower Heliport", + "latitude_deg": "-23.523661", + "longitude_deg": "-46.196448", + "elevation_ft": "2612", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mogi Das Cruzes", + "scheduled_service": "no", + "gps_code": "SWHW", + "local_code": "SP0811", + "keywords": "SDVT" + }, + { + "id": "45628", + "ident": "SDVV", + "type": "heliport", + "name": "Cragea-Suzano Heliport", + "latitude_deg": "-23.641944", + "longitude_deg": "-46.322222", + "elevation_ft": "2523", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Suzano", + "scheduled_service": "no", + "gps_code": "SDVV" + }, + { + "id": "35777", + "ident": "SDVW", + "type": "heliport", + "name": "Volkswagem do Brasil - Fábrica III Heliport", + "latitude_deg": "-23.060556411743164", + "longitude_deg": "-45.633888244628906", + "elevation_ft": "1873", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Taubaté", + "scheduled_service": "no", + "gps_code": "SDVW" + }, + { + "id": "45630", + "ident": "SDVX", + "type": "heliport", + "name": "Estância Flamboyants Heliport", + "latitude_deg": "-21.866866", + "longitude_deg": "-47.628715", + "elevation_ft": "2336", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Descalvado", + "scheduled_service": "no", + "keywords": "SDVX" + }, + { + "id": "45613", + "ident": "SDVY", + "type": "heliport", + "name": "Le Canton Heliport", + "latitude_deg": "-22.385476", + "longitude_deg": "-42.853568", + "elevation_ft": "2726", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Teresópolis", + "scheduled_service": "no", + "keywords": "SDVY" + }, + { + "id": "35778", + "ident": "SDVZ", + "type": "heliport", + "name": "Life Hotel Heliport", + "latitude_deg": "-25.42472267150879", + "longitude_deg": "-49.269168853759766", + "elevation_ft": "3183", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Curitiba", + "scheduled_service": "no", + "gps_code": "SDVZ" + }, + { + "id": "353636", + "ident": "SDW3", + "type": "small_airport", + "name": "Fazenda Itanguá Airstrip", + "latitude_deg": "-24.029722", + "longitude_deg": "-48.97386", + "elevation_ft": "2457", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapeva", + "scheduled_service": "no", + "gps_code": "SDW3", + "local_code": "SP1331" + }, + { + "id": "351818", + "ident": "SDW4", + "type": "heliport", + "name": "MNTB Heliport", + "latitude_deg": "-7.582172", + "longitude_deg": "-72.731201", + "elevation_ft": "715", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Cruzeiro do Sul", + "scheduled_service": "no", + "gps_code": "SDW4", + "local_code": "AC0016" + }, + { + "id": "351473", + "ident": "SDW6", + "type": "small_airport", + "name": "Ceolin Grãos e Fibra Airport", + "latitude_deg": "-13.248889", + "longitude_deg": "-45.855", + "elevation_ft": "2779", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SDW6", + "local_code": "BA0381" + }, + { + "id": "351816", + "ident": "SDW7", + "type": "small_airport", + "name": "Fazenda Jóia Airport", + "latitude_deg": "-10.84", + "longitude_deg": "-49.468333", + "elevation_ft": "633", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Santa Rita do Tocantins", + "scheduled_service": "no", + "gps_code": "SDW7", + "local_code": "TO0104" + }, + { + "id": "351813", + "ident": "SDW8", + "type": "small_airport", + "name": "Fazenda Marca Macho Airport", + "latitude_deg": "-10.053179", + "longitude_deg": "-59.219192", + "elevation_ft": "541", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Aripuanã", + "scheduled_service": "no", + "gps_code": "SDW8", + "local_code": "MT0803" + }, + { + "id": "351811", + "ident": "SDW9", + "type": "small_airport", + "name": "Fazenda Santa Verônica Airport", + "latitude_deg": "-11.942209", + "longitude_deg": "-56.453923", + "elevation_ft": "1306", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto dos Gaúchos", + "scheduled_service": "no", + "gps_code": "SDW9", + "local_code": "MT0798" + }, + { + "id": "35779", + "ident": "SDWA", + "type": "heliport", + "name": "Aerogalo Heliport", + "latitude_deg": "-23.04182", + "longitude_deg": "-44.19357", + "elevation_ft": "60", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra dos Reis", + "scheduled_service": "no", + "gps_code": "SDWA" + }, + { + "id": "35780", + "ident": "SDWB", + "type": "heliport", + "name": "Cyk Heliport", + "latitude_deg": "-23.566110610961914", + "longitude_deg": "-46.651668548583984", + "elevation_ft": "2986", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDWB" + }, + { + "id": "35781", + "ident": "SDWC", + "type": "small_airport", + "name": "Aldeia Baú Airport", + "latitude_deg": "-7.360278129577637", + "longitude_deg": "-54.8297233581543", + "elevation_ft": "699", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Altamira", + "scheduled_service": "no", + "gps_code": "SDWC" + }, + { + "id": "35782", + "ident": "SDWD", + "type": "small_airport", + "name": "Fazenda Califórnia Airport", + "latitude_deg": "-20.43013", + "longitude_deg": "-48.602303", + "elevation_ft": "1856", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barretos", + "scheduled_service": "no", + "keywords": "SDWD" + }, + { + "id": "35783", + "ident": "SDWE", + "type": "small_airport", + "name": "Usina São Carlos Airport", + "latitude_deg": "-21.28416633605957", + "longitude_deg": "-48.162776947021484", + "elevation_ft": "1919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jaboticabal", + "scheduled_service": "no", + "gps_code": "SDWE" + }, + { + "id": "35784", + "ident": "SDWF", + "type": "heliport", + "name": "Panco 9 Heliport", + "latitude_deg": "-22.86111068725586", + "longitude_deg": "-43.342220306396484", + "elevation_ft": "131", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SDWF" + }, + { + "id": "35785", + "ident": "SDWG", + "type": "small_airport", + "name": "Fazenda Itapiranga Airport", + "latitude_deg": "-22.06305694580078", + "longitude_deg": "-51.924720764160156", + "elevation_ft": "1394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Marabá Paulista", + "scheduled_service": "no", + "gps_code": "SDWG" + }, + { + "id": "212", + "ident": "SDWH", + "type": "small_airport", + "name": "Fazenda Avanhandava Airport", + "latitude_deg": "-21.188600540161133", + "longitude_deg": "-49.936100006103516", + "elevation_ft": "1444", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "José Bonifácio", + "scheduled_service": "no", + "gps_code": "SDWH", + "local_code": "SDWH" + }, + { + "id": "45649", + "ident": "SDWI", + "type": "small_airport", + "name": "Fazenda Lagoa do Cavalo Airport", + "latitude_deg": "-8.17", + "longitude_deg": "-35.63", + "elevation_ft": "1709", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Gravatá", + "scheduled_service": "no", + "gps_code": "SDWI" + }, + { + "id": "35786", + "ident": "SDWJ", + "type": "small_airport", + "name": "Aldeia Kubenkroke Airport", + "latitude_deg": "-8.7252779006958", + "longitude_deg": "-53.39027786254883", + "elevation_ft": "1099", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Altamira", + "scheduled_service": "no", + "gps_code": "SDWJ" + }, + { + "id": "44446", + "ident": "SDWK", + "type": "small_airport", + "name": "Junqueira Airport", + "latitude_deg": "-20.001667022705078", + "longitude_deg": "-47.76750183105469", + "elevation_ft": "1850", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Igarapava", + "scheduled_service": "no", + "gps_code": "SDWK" + }, + { + "id": "35787", + "ident": "SDWL", + "type": "small_airport", + "name": "Três Marias Airport", + "latitude_deg": "-23.191667556799995", + "longitude_deg": "-47.0750007629", + "elevation_ft": "2566", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itupeva", + "scheduled_service": "no", + "gps_code": "SDWL" + }, + { + "id": "35788", + "ident": "SDWM", + "type": "small_airport", + "name": "Aldeia de Metuktire Airport", + "latitude_deg": "-10.063611", + "longitude_deg": "-52.996666", + "elevation_ft": "2953", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Peixoto De Azevedo", + "scheduled_service": "no", + "keywords": "SDWM" + }, + { + "id": "29795", + "ident": "SDWN", + "type": "small_airport", + "name": "Fazenda Barreiro Grande Airport", + "latitude_deg": "-20.34749984741211", + "longitude_deg": "-48.772499084472656", + "elevation_ft": "1857", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Colômbia", + "scheduled_service": "no", + "gps_code": "SDWN" + }, + { + "id": "327076", + "ident": "SDWO", + "type": "small_airport", + "name": "Sauba Airstrip", + "latitude_deg": "3.862133", + "longitude_deg": "-62.579077", + "elevation_ft": "818", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Amajari", + "scheduled_service": "no", + "gps_code": "SDWO" + }, + { + "id": "35789", + "ident": "SDWP", + "type": "heliport", + "name": "Palácio Boa Vista Heliport", + "latitude_deg": "-22.734935", + "longitude_deg": "-45.606737", + "elevation_ft": "5814", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campos Do Jordão", + "scheduled_service": "no", + "gps_code": "SIIQ", + "local_code": "SP0505", + "keywords": "SDWP" + }, + { + "id": "35790", + "ident": "SDWR", + "type": "small_airport", + "name": "Fazenda Primavera Airport", + "latitude_deg": "-21.077778", + "longitude_deg": "-51.144444", + "elevation_ft": "1627", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mirandópolis", + "scheduled_service": "no", + "keywords": "SDWR" + }, + { + "id": "35791", + "ident": "SDWS", + "type": "heliport", + "name": "West Gate Heliport", + "latitude_deg": "-23.503225", + "longitude_deg": "-46.848781", + "elevation_ft": "2694", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SSAW", + "local_code": "SP0743", + "keywords": "SDWS" + }, + { + "id": "35792", + "ident": "SDWT", + "type": "heliport", + "name": "World Trade Center Heliport", + "latitude_deg": "-23.60944366455078", + "longitude_deg": "-46.6966667175293", + "elevation_ft": "2657", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDWT" + }, + { + "id": "44567", + "ident": "SDWU", + "type": "small_airport", + "name": "Fazenda Anahí Airport", + "latitude_deg": "-21.708332061799997", + "longitude_deg": "-57.7405548096", + "elevation_ft": "279", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SDWU" + }, + { + "id": "332922", + "ident": "SDWV", + "type": "small_airport", + "name": "Chácara Maringá Airport", + "latitude_deg": "-2.572744", + "longitude_deg": "-51.953758", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Senador José Porfírio", + "scheduled_service": "no", + "gps_code": "SDWV", + "local_code": "PA0039" + }, + { + "id": "42786", + "ident": "SDWW", + "type": "heliport", + "name": "Air Haco Heliport", + "latitude_deg": "-26.725833892822266", + "longitude_deg": "-49.065834045410156", + "elevation_ft": "594", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Blumenau", + "scheduled_service": "no", + "gps_code": "SDWW" + }, + { + "id": "44448", + "ident": "SDWX", + "type": "small_airport", + "name": "Pista Sol Nascente Airport", + "latitude_deg": "-5.490832805633545", + "longitude_deg": "-57.2158317565918", + "elevation_ft": "541", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SDWX" + }, + { + "id": "35793", + "ident": "SDWY", + "type": "heliport", + "name": "Central Towers Paulista Heliport", + "latitude_deg": "-23.564722061157227", + "longitude_deg": "-46.64083480834961", + "elevation_ft": "2808", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDWY" + }, + { + "id": "327078", + "ident": "SDWZ", + "type": "small_airport", + "name": "Palo Verde Airport", + "latitude_deg": "-21.190584", + "longitude_deg": "-50.562228", + "elevation_ft": "1276", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araçatuba", + "scheduled_service": "no", + "gps_code": "SDWZ" + }, + { + "id": "353230", + "ident": "SDX2", + "type": "small_airport", + "name": "Fazenda São José Airport", + "latitude_deg": "-11.408361", + "longitude_deg": "-45.619024", + "elevation_ft": "2523", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Formosa do Rio Preto", + "scheduled_service": "no", + "gps_code": "SDX2", + "local_code": "BA0386" + }, + { + "id": "353231", + "ident": "SDX3", + "type": "small_airport", + "name": "Fazenda Cristal Airport", + "latitude_deg": "-22.788889", + "longitude_deg": "-54.036389", + "elevation_ft": "1043", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Naviraí", + "scheduled_service": "no", + "gps_code": "SDX3", + "local_code": "MS0579" + }, + { + "id": "353234", + "ident": "SDX4", + "type": "small_airport", + "name": "Canto do Buriti Airport", + "latitude_deg": "-8.126389", + "longitude_deg": "-42.99", + "elevation_ft": "961", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Canto do Buriti", + "scheduled_service": "no", + "gps_code": "SDX4", + "local_code": "PI0093" + }, + { + "id": "351810", + "ident": "SDX7", + "type": "small_airport", + "name": "Alegretense Airport", + "latitude_deg": "-29.804506", + "longitude_deg": "-55.78572", + "elevation_ft": "325", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Alegrete", + "scheduled_service": "no", + "gps_code": "SDX7", + "local_code": "RS0196" + }, + { + "id": "351794", + "ident": "SDX8", + "type": "heliport", + "name": "Blue Heliport", + "latitude_deg": "-26.849625", + "longitude_deg": "-49.256555", + "elevation_ft": "233", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Timbó", + "scheduled_service": "no", + "gps_code": "SDX8", + "local_code": "SC0115" + }, + { + "id": "353257", + "ident": "SDX9", + "type": "small_airport", + "name": "Ribeiro Gonçalves Airport", + "latitude_deg": "-7.581572", + "longitude_deg": "-45.210768", + "elevation_ft": "1175", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Ribeiro Gonçalves", + "scheduled_service": "no", + "gps_code": "SDX9", + "local_code": "PI0091" + }, + { + "id": "333609", + "ident": "SDXA", + "type": "small_airport", + "name": "SAWI Airstrip", + "latitude_deg": "4.211866", + "longitude_deg": "-60.004514", + "elevation_ft": "361", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Normandia", + "scheduled_service": "no", + "gps_code": "SDXA", + "local_code": "RR0024" + }, + { + "id": "213", + "ident": "SDXB", + "type": "small_airport", + "name": "Cristalina Airport", + "latitude_deg": "-16.791", + "longitude_deg": "-47.645199", + "elevation_ft": "3937", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Cristalina", + "scheduled_service": "no", + "local_code": "GO0027", + "keywords": "SDXB" + }, + { + "id": "35794", + "ident": "SDXC", + "type": "heliport", + "name": "Cesp Heliport", + "latitude_deg": "-22.287779", + "longitude_deg": "-49.098888", + "elevation_ft": "1959", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Bauru", + "scheduled_service": "no", + "keywords": "SDXC" + }, + { + "id": "35795", + "ident": "SDXD", + "type": "heliport", + "name": "IBM Tutóia Heliport", + "latitude_deg": "-23.579962", + "longitude_deg": "-46.649376", + "elevation_ft": "2786", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SSTO", + "local_code": "SP0778", + "keywords": "SDXD" + }, + { + "id": "214", + "ident": "SDXE", + "type": "small_airport", + "name": "Chácara Serradinho Airport", + "latitude_deg": "-21.264799118041992", + "longitude_deg": "-48.35609817504883", + "elevation_ft": "2037", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jaboticabal", + "scheduled_service": "no", + "gps_code": "SDXE", + "local_code": "SDXE" + }, + { + "id": "215", + "ident": "SDXF", + "type": "small_airport", + "name": "Alto Paraíso Airport", + "latitude_deg": "-14.121000289916992", + "longitude_deg": "-47.53089904785156", + "elevation_ft": "4413", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Alto Paraíso", + "scheduled_service": "no", + "gps_code": "SDXF", + "local_code": "SDXF" + }, + { + "id": "35796", + "ident": "SDXG", + "type": "closed", + "name": "Tropical Ponta Negra Flat Heliport", + "latitude_deg": "-3.063889", + "longitude_deg": "-60.106945", + "elevation_ft": "263", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Manaus", + "scheduled_service": "no", + "keywords": "SDXG" + }, + { + "id": "35797", + "ident": "SDXH", + "type": "heliport", + "name": "Gandini Heliport", + "latitude_deg": "-23.251110076900005", + "longitude_deg": "-47.3252792358", + "elevation_ft": "2812", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itu", + "scheduled_service": "no", + "gps_code": "SDXH" + }, + { + "id": "35798", + "ident": "SDXI", + "type": "small_airport", + "name": "Fazenda Cajueiro Airport", + "latitude_deg": "-4.238611221313477", + "longitude_deg": "-48.47666549682617", + "elevation_ft": "577", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "São Domingos Do Capim", + "scheduled_service": "no", + "gps_code": "SDXI" + }, + { + "id": "216", + "ident": "SDXJ", + "type": "small_airport", + "name": "Costa Rica Airport", + "latitude_deg": "-18.48667", + "longitude_deg": "-53.15333", + "elevation_ft": "2428", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Costa Rica", + "scheduled_service": "no", + "gps_code": "SDXJ", + "local_code": "SDXJ" + }, + { + "id": "323623", + "ident": "SDXK", + "type": "small_airport", + "name": "Ticoça Airport", + "latitude_deg": "4.413334", + "longitude_deg": "-60.116667", + "elevation_ft": "486", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SDXK" + }, + { + "id": "35799", + "ident": "SDXL", + "type": "closed", + "name": "Fazenda Santa Clara Heliport", + "latitude_deg": "-22.037634", + "longitude_deg": "-42.337114", + "elevation_ft": "1411", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Cordeiro", + "scheduled_service": "no", + "local_code": "RJ0062", + "keywords": "SDXL" + }, + { + "id": "35800", + "ident": "SDXM", + "type": "heliport", + "name": "Da Praia Heliport", + "latitude_deg": "-22.77403", + "longitude_deg": "-41.889898", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Armação dos Búzios", + "scheduled_service": "no", + "gps_code": "SIIB", + "local_code": "RJ0083", + "keywords": "SDXM" + }, + { + "id": "327075", + "ident": "SDXN", + "type": "heliport", + "name": "Parada Havan Heliport", + "latitude_deg": "-26.634535", + "longitude_deg": "-48.700677", + "elevation_ft": "53", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Barra Velha", + "scheduled_service": "no", + "gps_code": "SDXN" + }, + { + "id": "35801", + "ident": "SDXO", + "type": "small_airport", + "name": "Fazenda Santa Maria da Mata Airport", + "latitude_deg": "-20.727500915527344", + "longitude_deg": "-50.9716682434082", + "elevation_ft": "1142", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sud Menucci", + "scheduled_service": "no", + "gps_code": "SDXO" + }, + { + "id": "35802", + "ident": "SDXP", + "type": "heliport", + "name": "Guararema Parque Hotel Heliport", + "latitude_deg": "-23.42388916015625", + "longitude_deg": "-46.02027893066406", + "elevation_ft": "2034", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guararema", + "scheduled_service": "no", + "gps_code": "SDXP" + }, + { + "id": "35803", + "ident": "SDXQ", + "type": "small_airport", + "name": "Fazenda Flamboyant Airport", + "latitude_deg": "-20.906944", + "longitude_deg": "-51.575558", + "elevation_ft": "1112", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Castilho", + "scheduled_service": "no", + "keywords": "SDXQ" + }, + { + "id": "35804", + "ident": "SDXR", + "type": "small_airport", + "name": "Fazenda Vaca Mocha Airport", + "latitude_deg": "-22.2216", + "longitude_deg": "-57.158207", + "elevation_ft": "433", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Caracol", + "scheduled_service": "no", + "gps_code": "SJZL", + "local_code": "MS0197", + "keywords": "SDXR" + }, + { + "id": "35805", + "ident": "SDXS", + "type": "heliport", + "name": "Mar Gírios Heliport", + "latitude_deg": "-23.594167709350586", + "longitude_deg": "-46.705833435058594", + "elevation_ft": "2592", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDXS" + }, + { + "id": "43314", + "ident": "SDXT", + "type": "small_airport", + "name": "Fazenda Boa Vista Airport", + "latitude_deg": "-19.441362", + "longitude_deg": "-55.063562", + "elevation_ft": "1100", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Negro", + "scheduled_service": "no", + "keywords": "SDXT" + }, + { + "id": "35806", + "ident": "SDXU", + "type": "small_airport", + "name": "Fazenda Araçatuba Airport", + "latitude_deg": "-21.343332", + "longitude_deg": "-51.251667", + "elevation_ft": "1401", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Pacaembu", + "scheduled_service": "no", + "keywords": "SDXU" + }, + { + "id": "44447", + "ident": "SDXV", + "type": "heliport", + "name": "Magazine Luiza Heliport", + "latitude_deg": "-23.11722183227539", + "longitude_deg": "-46.99222183227539", + "elevation_ft": "2362", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Louveira", + "scheduled_service": "no", + "gps_code": "SDXV" + }, + { + "id": "327083", + "ident": "SDXW", + "type": "small_airport", + "name": "Fazenda Sombra da Serra Airport", + "latitude_deg": "-18.996412", + "longitude_deg": "-55.133827", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Verde de Mato Grosso", + "scheduled_service": "no", + "gps_code": "SDXW" + }, + { + "id": "35807", + "ident": "SDXX", + "type": "heliport", + "name": "Fazenda Santa Vitória Heliport", + "latitude_deg": "-22.509443283081055", + "longitude_deg": "-44.750831604003906", + "elevation_ft": "1755", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Queluz", + "scheduled_service": "no", + "gps_code": "SDXX" + }, + { + "id": "35808", + "ident": "SDXY", + "type": "heliport", + "name": "Atlântida Ilhas Park Heliport", + "latitude_deg": "-29.780277252197266", + "longitude_deg": "-50.04582977294922", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Xangri-Lá", + "scheduled_service": "no", + "gps_code": "SDXY" + }, + { + "id": "35809", + "ident": "SDXZ", + "type": "heliport", + "name": "Granja Viana Heliport", + "latitude_deg": "-23.59000015258789", + "longitude_deg": "-46.81833267211914", + "elevation_ft": "2520", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cotia", + "scheduled_service": "no", + "gps_code": "SDXZ" + }, + { + "id": "352677", + "ident": "SDY2", + "type": "small_airport", + "name": "Fazenda Boa Safra Airport", + "latitude_deg": "-18.154188", + "longitude_deg": "-49.927691", + "elevation_ft": "1755", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Bom Jesus de Goiás", + "scheduled_service": "no", + "gps_code": "SDY2", + "local_code": "GO0333" + }, + { + "id": "351787", + "ident": "SDY3", + "type": "small_airport", + "name": "Fazenda Rio Suiá Airport", + "latitude_deg": "-12.370912", + "longitude_deg": "-52.12031", + "elevation_ft": "1136", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Querência", + "scheduled_service": "no", + "gps_code": "SDY3", + "local_code": "MT0789" + }, + { + "id": "352681", + "ident": "SDY4", + "type": "small_airport", + "name": "Fazenda Bom Pai Airport", + "latitude_deg": "-15.310533", + "longitude_deg": "-48.407596", + "elevation_ft": "2201", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Padre Bernardo", + "scheduled_service": "no", + "gps_code": "SDY4", + "local_code": "GO0332" + }, + { + "id": "352682", + "ident": "SDY6", + "type": "small_airport", + "name": "Fazenda Malaska Airport", + "latitude_deg": "-6.94718", + "longitude_deg": "-48.808249", + "elevation_ft": "650", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Muricilândia", + "scheduled_service": "no", + "gps_code": "SDY6", + "local_code": "TO0109" + }, + { + "id": "351788", + "ident": "SDY7", + "type": "small_airport", + "name": "Fazenda Três Irmãos Airport", + "latitude_deg": "-10.225279", + "longitude_deg": "-58.702036", + "elevation_ft": "738", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juruena", + "scheduled_service": "no", + "gps_code": "SDY7", + "local_code": "MT0801" + }, + { + "id": "352683", + "ident": "SDY8", + "type": "small_airport", + "name": "Fazenda Círculo R Airport", + "latitude_deg": "-12.6466", + "longitude_deg": "-49.409813", + "elevation_ft": "764", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Araguaçu", + "scheduled_service": "no", + "gps_code": "SDY8", + "local_code": "TO0106" + }, + { + "id": "351789", + "ident": "SDY9", + "type": "small_airport", + "name": "Fazenda Centro Oeste Airport", + "latitude_deg": "-12.575274", + "longitude_deg": "-57.653287", + "elevation_ft": "1093", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SDY9", + "local_code": "MT0792" + }, + { + "id": "35810", + "ident": "SDYA", + "type": "heliport", + "name": "Carmo Couri Heliport", + "latitude_deg": "-23.59666633605957", + "longitude_deg": "-46.685279846191406", + "elevation_ft": "2585", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDYA" + }, + { + "id": "35811", + "ident": "SDYB", + "type": "small_airport", + "name": "Fazenda São José do Barreiro Airport", + "latitude_deg": "-23.784526", + "longitude_deg": "-48.338362", + "elevation_ft": "2192", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapetininga", + "scheduled_service": "no", + "gps_code": "SDYB", + "local_code": "SP0164" + }, + { + "id": "35812", + "ident": "SDYC", + "type": "heliport", + "name": "Amarras Heliport", + "latitude_deg": "-22.7747211456", + "longitude_deg": "-41.90166854859999", + "elevation_ft": "125", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Armação Dos Búzios", + "scheduled_service": "no", + "gps_code": "SDYC" + }, + { + "id": "35813", + "ident": "SDYD", + "type": "heliport", + "name": "Senna Heliport", + "latitude_deg": "-23.0399", + "longitude_deg": "-44.19641", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SDYD" + }, + { + "id": "35814", + "ident": "SDYE", + "type": "heliport", + "name": "Hotal Fazenda Dona Carolina Heliport", + "latitude_deg": "-22.941489", + "longitude_deg": "-46.701277", + "elevation_ft": "2625", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itatiba", + "scheduled_service": "no", + "gps_code": "SWDO", + "local_code": "SP0799", + "keywords": "SDYE" + }, + { + "id": "35815", + "ident": "SDYF", + "type": "small_airport", + "name": "Fazenda Irmãos Munaretto Airport", + "latitude_deg": "-13.109637", + "longitude_deg": "-55.992991", + "elevation_ft": "1375", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Lucas Do Rio Verde", + "scheduled_service": "no", + "gps_code": "SDYF", + "local_code": "MT0074" + }, + { + "id": "35816", + "ident": "SDYG", + "type": "heliport", + "name": "Companhia de Cimento Ribeirão Grande Heliport", + "latitude_deg": "-24.161388397216797", + "longitude_deg": "-48.350276947021484", + "elevation_ft": "2248", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Grande", + "scheduled_service": "no", + "gps_code": "SDYG" + }, + { + "id": "35817", + "ident": "SDYH", + "type": "heliport", + "name": "José Roberto Magalhães Teixeira Heliport", + "latitude_deg": "-22.929166793823242", + "longitude_deg": "-47.08277893066406", + "elevation_ft": "2297", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SDYH" + }, + { + "id": "42787", + "ident": "SDYI", + "type": "small_airport", + "name": "Fazenda Buritiz Airport", + "latitude_deg": "-17.917499542236328", + "longitude_deg": "-45.40250015258789", + "elevation_ft": "3045", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Buritizeiro", + "scheduled_service": "no", + "gps_code": "SDYI" + }, + { + "id": "35818", + "ident": "SDYJ", + "type": "small_airport", + "name": "José Martins da Silva Airport", + "latitude_deg": "-22.225555419921875", + "longitude_deg": "-51.34805679321289", + "elevation_ft": "1663", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Regente Feijó", + "scheduled_service": "no", + "gps_code": "SDYJ" + }, + { + "id": "35819", + "ident": "SDYK", + "type": "heliport", + "name": "Tower 2000 Heliport", + "latitude_deg": "-22.892221450805664", + "longitude_deg": "-43.11805725097656", + "elevation_ft": "187", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Niterói", + "scheduled_service": "no", + "gps_code": "SDYK" + }, + { + "id": "35820", + "ident": "SDYL", + "type": "heliport", + "name": "Flamingos Heliport", + "latitude_deg": "-23.022986", + "longitude_deg": "-44.290159", + "elevation_ft": "112", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SDSO", + "local_code": "RJ0057", + "keywords": "SDYL, RM - Angra Heliport" + }, + { + "id": "32187", + "ident": "SDYM", + "type": "small_airport", + "name": "Limeira Airport", + "latitude_deg": "-22.603889", + "longitude_deg": "-47.411944", + "elevation_ft": "2172", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Limeira", + "scheduled_service": "no", + "keywords": "SDYM, QGB" + }, + { + "id": "35821", + "ident": "SDYN", + "type": "small_airport", + "name": "Fazenda Esmeralda Airport", + "latitude_deg": "-22.58888816833496", + "longitude_deg": "-51.29888916015625", + "elevation_ft": "1365", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Taciba", + "scheduled_service": "no", + "gps_code": "SDYN" + }, + { + "id": "35822", + "ident": "SDYO", + "type": "heliport", + "name": "Hospital Santa Marcelina Heliport", + "latitude_deg": "-23.554166793823242", + "longitude_deg": "-46.461387634277344", + "elevation_ft": "2684", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDYO" + }, + { + "id": "35823", + "ident": "SDYP", + "type": "heliport", + "name": "Piracaia Heliport", + "latitude_deg": "-22.98611068725586", + "longitude_deg": "-46.334442138671875", + "elevation_ft": "2887", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Piracaia", + "scheduled_service": "no", + "gps_code": "SDYP" + }, + { + "id": "327085", + "ident": "SDYQ", + "type": "heliport", + "name": "Condomínio Aldebaran Ville Heliport", + "latitude_deg": "-5.009557", + "longitude_deg": "-42.767573", + "elevation_ft": "266", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Teresina", + "scheduled_service": "no", + "keywords": "SDYQ" + }, + { + "id": "35824", + "ident": "SDYR", + "type": "heliport", + "name": "Panco II Heliport", + "latitude_deg": "-23.599671", + "longitude_deg": "-46.699898", + "elevation_ft": "2641", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDYR", + "local_code": "SP0453" + }, + { + "id": "46186", + "ident": "SDYS", + "type": "small_airport", + "name": "Aeroportobelo Airport", + "latitude_deg": "-27.173611", + "longitude_deg": "-48.631111", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Porto Belo", + "scheduled_service": "no", + "gps_code": "SDYS", + "local_code": "SDYS" + }, + { + "id": "327122", + "ident": "SDYT", + "type": "small_airport", + "name": "Tucuxim Airport", + "latitude_deg": "3.763889", + "longitude_deg": "-63.986944", + "elevation_ft": "1475", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Amajari", + "scheduled_service": "no", + "gps_code": "SDYT", + "local_code": "RR0026" + }, + { + "id": "35825", + "ident": "SDYV", + "type": "heliport", + "name": "Secovi Heliport", + "latitude_deg": "-23.60333251953125", + "longitude_deg": "-46.64805603027344", + "elevation_ft": "2625", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDYV" + }, + { + "id": "217", + "ident": "SDYW", + "type": "small_airport", + "name": "Aeroclube de Itapeva Airport", + "latitude_deg": "-23.941345", + "longitude_deg": "-48.881775", + "elevation_ft": "2313", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapeva", + "scheduled_service": "no", + "gps_code": "SDH4", + "local_code": "SP0062", + "keywords": "SDYW" + }, + { + "id": "41092", + "ident": "SDYX", + "type": "small_airport", + "name": "Campo Maior Airport", + "latitude_deg": "-4.8541669845581055", + "longitude_deg": "-42.260555267333984", + "elevation_ft": "490", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Campo Maior", + "scheduled_service": "no", + "gps_code": "SDYX" + }, + { + "id": "35826", + "ident": "SDYY", + "type": "heliport", + "name": "Lucent Heliport", + "latitude_deg": "-22.850278854370117", + "longitude_deg": "-47.02333450317383", + "elevation_ft": "2188", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SDYY" + }, + { + "id": "35827", + "ident": "SDYZ", + "type": "heliport", + "name": "Kuka Helipad", + "latitude_deg": "-23.569189", + "longitude_deg": "-46.601386", + "elevation_ft": "2447", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDYZ", + "local_code": "SP0455" + }, + { + "id": "352674", + "ident": "SDZ2", + "type": "small_airport", + "name": "Estância Clarisse Airport", + "latitude_deg": "-21.158889", + "longitude_deg": "-54.727535", + "elevation_ft": "1348", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Sidrolândia", + "scheduled_service": "no", + "gps_code": "SDZ2", + "local_code": "MS0571" + }, + { + "id": "352676", + "ident": "SDZ3", + "type": "heliport", + "name": "UQ Pouso Alegre Heliport", + "latitude_deg": "-22.273311", + "longitude_deg": "-45.923195", + "elevation_ft": "2812", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Pouso Alegre", + "scheduled_service": "no", + "gps_code": "SDZ3", + "local_code": "MG0314" + }, + { + "id": "351793", + "ident": "SDZ4", + "type": "small_airport", + "name": "Fazenda Água Boa Airport", + "latitude_deg": "-6.160556", + "longitude_deg": "-48.219167", + "elevation_ft": "600", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Ananás", + "scheduled_service": "no", + "gps_code": "SDZ4", + "local_code": "TO0089" + }, + { + "id": "353259", + "ident": "SDZ7", + "type": "small_airport", + "name": "Fazenda Ecoteca - Mineração São Francisco Airport", + "latitude_deg": "-9.189763", + "longitude_deg": "-61.387091", + "elevation_ft": "433", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Colniza", + "scheduled_service": "no", + "gps_code": "SDZ7", + "local_code": "MT0812" + }, + { + "id": "353262", + "ident": "SDZ8", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-8.571615", + "longitude_deg": "-50.305273", + "elevation_ft": "741", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santa Maria das Barreiras", + "scheduled_service": "no", + "gps_code": "SDZ8", + "local_code": "PA0325" + }, + { + "id": "353639", + "ident": "SDZ9", + "type": "small_airport", + "name": "Fazenda Vale dos Sonhos Airstrip", + "latitude_deg": "-13.737292", + "longitude_deg": "-53.808658", + "elevation_ft": "1257", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Paranatinga", + "scheduled_service": "no", + "gps_code": "SDZ9", + "local_code": "MT0810" + }, + { + "id": "35828", + "ident": "SDZA", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-22.006244", + "longitude_deg": "-49.412743", + "elevation_ft": "1804", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Pirajuí", + "scheduled_service": "no", + "keywords": "SDZA" + }, + { + "id": "35829", + "ident": "SDZB", + "type": "heliport", + "name": "ICS - Guarujá Heliport", + "latitude_deg": "-23.98555564880371", + "longitude_deg": "-46.28444290161133", + "elevation_ft": "5", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarujá", + "scheduled_service": "no", + "gps_code": "SDZB" + }, + { + "id": "327123", + "ident": "SDZC", + "type": "small_airport", + "name": "Uxiu Airstrip", + "latitude_deg": "2.708055", + "longitude_deg": "-62.668889", + "elevation_ft": "831", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Mucajaí", + "scheduled_service": "no", + "gps_code": "SDZC" + }, + { + "id": "35830", + "ident": "SDZD", + "type": "heliport", + "name": "ABB Sorocaba Heliport", + "latitude_deg": "-23.425252", + "longitude_deg": "-47.361916", + "elevation_ft": "1939", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sorocaba", + "scheduled_service": "no", + "gps_code": "SDZD", + "local_code": "SP0457", + "keywords": "Flextronics Internacional" + }, + { + "id": "333034", + "ident": "SDZE", + "type": "heliport", + "name": "Ita Heliport", + "latitude_deg": "-23.701441", + "longitude_deg": "-46.828563", + "elevation_ft": "2638", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapecerica da Serra", + "scheduled_service": "no", + "gps_code": "SDZE", + "local_code": "SP0458" + }, + { + "id": "327124", + "ident": "SDZF", + "type": "small_airport", + "name": "Fazenda Lamarão Airport", + "latitude_deg": "-15.98442", + "longitude_deg": "-47.467459", + "elevation_ft": "2945", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SDZF" + }, + { + "id": "310918", + "ident": "SDZG", + "type": "small_airport", + "name": "Pedro Teixeira Castelo Airport", + "latitude_deg": "-5.9334", + "longitude_deg": "-40.2975", + "elevation_ft": "1457", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Tauá", + "scheduled_service": "no", + "gps_code": "SDZG", + "iata_code": "JTA" + }, + { + "id": "218", + "ident": "SDZH", + "type": "small_airport", + "name": "Fazenda Santa Helena Airport", + "latitude_deg": "-22.890399932861328", + "longitude_deg": "-45.49330139160156", + "elevation_ft": "1804", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Pindamonhangaba", + "scheduled_service": "no", + "gps_code": "SDZH", + "local_code": "SDZH" + }, + { + "id": "333032", + "ident": "SDZJ", + "type": "heliport", + "name": "Fly Green Heliport", + "latitude_deg": "-15.28387", + "longitude_deg": "-43.831043", + "elevation_ft": "1634", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Jaíba", + "scheduled_service": "no", + "gps_code": "SDZJ", + "local_code": "MG0223" + }, + { + "id": "327128", + "ident": "SDZK", + "type": "small_airport", + "name": "Waphuta Airstrip", + "latitude_deg": "2.991667", + "longitude_deg": "-63.709722", + "elevation_ft": "2023", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Alto Alegre", + "scheduled_service": "no", + "gps_code": "SDZK" + }, + { + "id": "333030", + "ident": "SDZL", + "type": "small_airport", + "name": "Fazenda Campo Zélia Airport", + "latitude_deg": "-18.610784", + "longitude_deg": "-55.689011", + "elevation_ft": "495", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SDZL", + "local_code": "MS0063" + }, + { + "id": "219", + "ident": "SDZM", + "type": "small_airport", + "name": "Fazenda São Marcos Airport", + "latitude_deg": "-23.9224", + "longitude_deg": "-48.818298", + "elevation_ft": "2257", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapeva", + "scheduled_service": "no", + "gps_code": "SD3K", + "local_code": "SP1304", + "keywords": "SDCB, SDZM" + }, + { + "id": "327133", + "ident": "SDZN", + "type": "small_airport", + "name": "Warogarem Airstrip", + "latitude_deg": "4.804871", + "longitude_deg": "-60.219015", + "elevation_ft": "2331", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SDZN" + }, + { + "id": "327131", + "ident": "SDZO", + "type": "small_airport", + "name": "Waromada Airstrip", + "latitude_deg": "4.576131", + "longitude_deg": "-60.443718", + "elevation_ft": "2331", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SDZO" + }, + { + "id": "337097", + "ident": "SDZP", + "type": "heliport", + "name": "Ninho do Pássaro III Helipad.", + "latitude_deg": "-26.885369", + "longitude_deg": "-49.243225", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Indaial", + "scheduled_service": "no", + "gps_code": "SDZP", + "local_code": "SC0112" + }, + { + "id": "337394", + "ident": "SDZQ", + "type": "heliport", + "name": "Zen Tower Helipad", + "latitude_deg": "-26.905079", + "longitude_deg": "-48.657192", + "elevation_ft": "299", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Itajaí", + "scheduled_service": "no", + "gps_code": "SDZQ", + "local_code": "SC0171" + }, + { + "id": "35831", + "ident": "SDZR", + "type": "small_airport", + "name": "Fazenda Cruzeiro Airport", + "latitude_deg": "-21.412221908569336", + "longitude_deg": "-48.328609466552734", + "elevation_ft": "2116", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guariba", + "scheduled_service": "no", + "gps_code": "SDZR" + }, + { + "id": "220", + "ident": "SDZS", + "type": "small_airport", + "name": "Fazenda Bananeira Airport", + "latitude_deg": "-20.579999923706055", + "longitude_deg": "-49.0797004699707", + "elevation_ft": "1673", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Altair", + "scheduled_service": "no", + "gps_code": "SDZS", + "local_code": "SDZS" + }, + { + "id": "35832", + "ident": "SDZT", + "type": "small_airport", + "name": "Fazenda Posses do Rio Grande Airport", + "latitude_deg": "-20.310832977294922", + "longitude_deg": "-48.97694396972656", + "elevation_ft": "1581", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guaraci", + "scheduled_service": "no", + "gps_code": "SDZT" + }, + { + "id": "35833", + "ident": "SDZU", + "type": "small_airport", + "name": "Fazenda Anhumas Airport", + "latitude_deg": "-22.122499465900002", + "longitude_deg": "-52.1977767944", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Marabá Paulista", + "scheduled_service": "no", + "gps_code": "SDZU" + }, + { + "id": "35834", + "ident": "SDZV", + "type": "small_airport", + "name": "Fazenda Gandu Airport", + "latitude_deg": "-22.476110458374023", + "longitude_deg": "-49.470001220703125", + "elevation_ft": "1841", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Duartina", + "scheduled_service": "no", + "gps_code": "SDZV" + }, + { + "id": "35835", + "ident": "SDZW", + "type": "small_airport", + "name": "Fazenda Ipanema Airport", + "latitude_deg": "-20.81166648864746", + "longitude_deg": "-51.294166564941406", + "elevation_ft": "1181", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Andradina", + "scheduled_service": "no", + "gps_code": "SDZW" + }, + { + "id": "46189", + "ident": "SDZX", + "type": "small_airport", + "name": "Fazenda Suri Airport", + "latitude_deg": "-14.815556", + "longitude_deg": "-53.133056", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campinápolis", + "scheduled_service": "no", + "gps_code": "SDZX", + "local_code": "SDZX" + }, + { + "id": "35836", + "ident": "SDZY", + "type": "medium_airport", + "name": "Presidente Itamar Franco Airport", + "latitude_deg": "-21.513056", + "longitude_deg": "-43.173058", + "elevation_ft": "1348", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Juiz de Fora", + "scheduled_service": "yes", + "gps_code": "SBZM", + "iata_code": "IZA", + "local_code": "MG0006", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zona_da_Mata_Regional_Airport", + "keywords": "SDZY, Zona da Mata Regional, Goianá" + }, + { + "id": "35837", + "ident": "SDZZ", + "type": "small_airport", + "name": "Sítio São José Airport", + "latitude_deg": "-21.79777717590332", + "longitude_deg": "-48.543888092041016", + "elevation_ft": "1790", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Nova Europa", + "scheduled_service": "no", + "gps_code": "SDZZ" + }, + { + "id": "42718", + "ident": "SE-0001", + "type": "small_airport", + "name": "Trosa Troslanda airfield", + "latitude_deg": "58.8986167908", + "longitude_deg": "17.4984741211", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-D", + "scheduled_service": "no", + "home_link": "http://www.trosaflygklubb.se/" + }, + { + "id": "42719", + "ident": "SE-0002", + "type": "small_airport", + "name": "Stegeborg", + "latitude_deg": "58.435513", + "longitude_deg": "16.60738", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-E", + "scheduled_service": "no", + "gps_code": "ESVE", + "home_link": "http://www.stegeborg.se/flygfalt.html" + }, + { + "id": "42720", + "ident": "SE-0003", + "type": "small_airport", + "name": "Bollnäs", + "latitude_deg": "61.356201171875", + "longitude_deg": "16.328800201416016", + "elevation_ft": "270", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-X", + "municipality": "Bollnäs", + "scheduled_service": "no", + "home_link": "http://www.bollnasflygklubb.se/flygf%C3%A4ltsinformation2" + }, + { + "id": "46509", + "ident": "SE-0004", + "type": "small_airport", + "name": "Norberg", + "latitude_deg": "60.107157287899994", + "longitude_deg": "15.950399637199999", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-W", + "scheduled_service": "no" + }, + { + "id": "299971", + "ident": "SE-0005", + "type": "small_airport", + "name": "Åre / Molanda", + "latitude_deg": "63.3283291729", + "longitude_deg": "13.425722122199998", + "elevation_ft": "1047", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Z", + "scheduled_service": "no" + }, + { + "id": "300948", + "ident": "SE-0006", + "type": "small_airport", + "name": "Alvesta Smålanda Airfield", + "latitude_deg": "56.925822", + "longitude_deg": "14.542294", + "elevation_ft": "450", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-G", + "municipality": "Alvesta", + "scheduled_service": "no", + "home_link": "http://www.smalanda.se/" + }, + { + "id": "301001", + "ident": "SE-0007", + "type": "small_airport", + "name": "Staffanstorp Bjällerup Field", + "latitude_deg": "55.658778215299996", + "longitude_deg": "13.2649612427", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "scheduled_service": "no" + }, + { + "id": "314590", + "ident": "SE-0008", + "type": "small_airport", + "name": "Kattleberg Airfield", + "latitude_deg": "57.98004", + "longitude_deg": "12.14489", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "scheduled_service": "no" + }, + { + "id": "315918", + "ident": "SE-0009", + "type": "small_airport", + "name": "Flygfältet Långtora", + "latitude_deg": "59.746288", + "longitude_deg": "17.144863", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-U", + "scheduled_service": "no", + "gps_code": "ESVL" + }, + { + "id": "316386", + "ident": "SE-0010", + "type": "small_airport", + "name": "Vallentuna flygfält", + "latitude_deg": "59.5417862", + "longitude_deg": "18.0386607", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AB", + "scheduled_service": "no" + }, + { + "id": "316407", + "ident": "SE-0011", + "type": "seaplane_base", + "name": "Täby Sjöflygklubb", + "latitude_deg": "59.448046", + "longitude_deg": "18.136212", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AB", + "scheduled_service": "no", + "home_link": "http://www.tsk.nu" + }, + { + "id": "316456", + "ident": "SE-0012", + "type": "heliport", + "name": "Kvikkjokk Heliport", + "latitude_deg": "66.9418987", + "longitude_deg": "17.7391567", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "scheduled_service": "no" + }, + { + "id": "316457", + "ident": "SE-0013", + "type": "small_airport", + "name": "Majfält-Ovansjö", + "latitude_deg": "62.235628", + "longitude_deg": "17.384825", + "elevation_ft": "108", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Y", + "scheduled_service": "no", + "home_link": "https://www.facebook.com/SundsvallsFlygklubb/", + "keywords": "Majfält" + }, + { + "id": "316462", + "ident": "SE-0014", + "type": "small_airport", + "name": "Ålåsen Airfield", + "latitude_deg": "63.865698", + "longitude_deg": "14.608111", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Z", + "municipality": "Ålåsen", + "scheduled_service": "no" + }, + { + "id": "316483", + "ident": "SE-0015", + "type": "small_airport", + "name": "Orrlanda Flygfält", + "latitude_deg": "63.0928328", + "longitude_deg": "14.4414464", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Z", + "scheduled_service": "no" + }, + { + "id": "355045", + "ident": "SE-0016", + "type": "small_airport", + "name": "Nyholm Airstrip", + "latitude_deg": "64.86937", + "longitude_deg": "20.44866", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AC", + "scheduled_service": "no" + }, + { + "id": "316544", + "ident": "SE-0017", + "type": "small_airport", + "name": "Frostlanda Airfield", + "latitude_deg": "64.482053", + "longitude_deg": "14.104497", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Z", + "municipality": "Gäddede", + "scheduled_service": "no", + "keywords": "Frostlanda" + }, + { + "id": "316849", + "ident": "SE-0018", + "type": "small_airport", + "name": "Frölunda Airfield", + "latitude_deg": "59.45837", + "longitude_deg": "17.71065", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AB", + "scheduled_service": "no" + }, + { + "id": "319198", + "ident": "SE-0019", + "type": "heliport", + "name": "Karolinska Universitetssjukhuset Helipad", + "latitude_deg": "59.351108", + "longitude_deg": "18.035162", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AB", + "municipality": "Solna", + "scheduled_service": "no" + }, + { + "id": "320294", + "ident": "SE-0020", + "type": "small_airport", + "name": "Bänkås Hoppfält", + "latitude_deg": "62.389086", + "longitude_deg": "17.452807", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Y", + "municipality": "Sundsvall", + "scheduled_service": "no", + "keywords": "Sundsvalls Fallskärmsklubb" + }, + { + "id": "320296", + "ident": "SE-0021", + "type": "small_airport", + "name": "Finnskoga/Backa flygplats", + "latitude_deg": "60.553495", + "longitude_deg": "13.102787", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-S", + "municipality": "Backa", + "scheduled_service": "no" + }, + { + "id": "320848", + "ident": "SE-0022", + "type": "small_airport", + "name": "Vassunda Private Airfield", + "latitude_deg": "59.7216732", + "longitude_deg": "17.7199959", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-U", + "municipality": "Vassunda", + "scheduled_service": "no" + }, + { + "id": "320916", + "ident": "SE-0023", + "type": "small_airport", + "name": "Baggböle Airstrip", + "latitude_deg": "62.1908112", + "longitude_deg": "17.2688212", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Y", + "scheduled_service": "no" + }, + { + "id": "320917", + "ident": "SE-0024", + "type": "small_airport", + "name": "Älvdalens flygklubb", + "latitude_deg": "61.2139663", + "longitude_deg": "14.043191", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-W", + "municipality": "Älvdalen", + "scheduled_service": "no", + "home_link": "http://www.alvdalsflyg.se" + }, + { + "id": "320942", + "ident": "SE-0025", + "type": "small_airport", + "name": "Flykälen Airfield", + "latitude_deg": "63.867146", + "longitude_deg": "15.03912", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Z", + "municipality": "Flykälen", + "scheduled_service": "no" + }, + { + "id": "320951", + "ident": "SE-0026", + "type": "small_airport", + "name": "Finspångs flygfält", + "latitude_deg": "58.73342", + "longitude_deg": "15.603996", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-E", + "scheduled_service": "no", + "home_link": "http://gliding.se", + "keywords": "Linköpings Segelflygklubb" + }, + { + "id": "322241", + "ident": "SE-0027", + "type": "small_airport", + "name": "Flygebyns hoppövningsfält", + "latitude_deg": "58.6033945", + "longitude_deg": "14.4544131", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "scheduled_service": "no" + }, + { + "id": "323060", + "ident": "SE-0028", + "type": "small_airport", + "name": "Charlottenberg Airstrip", + "latitude_deg": "59.8942235", + "longitude_deg": "12.2722539", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-S", + "municipality": "Charlottenberg", + "scheduled_service": "no" + }, + { + "id": "323061", + "ident": "SE-0029", + "type": "small_airport", + "name": "Dorotea Airfield", + "latitude_deg": "64.265398", + "longitude_deg": "16.490822", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AC", + "municipality": "Dorotea", + "scheduled_service": "no" + }, + { + "id": "323062", + "ident": "SE-0030", + "type": "small_airport", + "name": "Finlanda Airfield", + "latitude_deg": "63.911887", + "longitude_deg": "16.322891", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Z", + "municipality": "Rossön", + "scheduled_service": "no" + }, + { + "id": "323121", + "ident": "SE-0031", + "type": "small_airport", + "name": "Kolåsens flygfält", + "latitude_deg": "63.764233", + "longitude_deg": "12.909206", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Z", + "municipality": "Kolåsen", + "scheduled_service": "no" + }, + { + "id": "323298", + "ident": "SE-0032", + "type": "small_airport", + "name": "Porjus flygfält", + "latitude_deg": "66.963289", + "longitude_deg": "19.833215", + "elevation_ft": "1281", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "municipality": "Porjus", + "scheduled_service": "no" + }, + { + "id": "323345", + "ident": "SE-0033", + "type": "closed", + "name": "Vindeln Flygfält", + "latitude_deg": "64.2676824", + "longitude_deg": "19.6187966", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AC", + "scheduled_service": "no" + }, + { + "id": "323351", + "ident": "SE-0034", + "type": "closed", + "name": "Malå flygfält", + "latitude_deg": "65.2133586", + "longitude_deg": "18.6844303", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AC", + "municipality": "Malå", + "scheduled_service": "no" + }, + { + "id": "323412", + "ident": "SE-0035", + "type": "small_airport", + "name": "Överlanda Airfield", + "latitude_deg": "62.958041", + "longitude_deg": "18.047853", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Y", + "municipality": "Överlanda", + "scheduled_service": "no" + }, + { + "id": "323633", + "ident": "SE-0036", + "type": "closed", + "name": "Suddesjaur", + "latitude_deg": "65.913351", + "longitude_deg": "19.1643", + "elevation_ft": "1130", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "municipality": "Suddesjaur", + "scheduled_service": "no" + }, + { + "id": "323638", + "ident": "SE-0037", + "type": "closed", + "name": "Storberg", + "latitude_deg": "65.4881278", + "longitude_deg": "18.9268684", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "municipality": "Storberg", + "scheduled_service": "no" + }, + { + "id": "323647", + "ident": "SE-0038", + "type": "closed", + "name": "Stalons flygfält", + "latitude_deg": "64.950554", + "longitude_deg": "15.826759", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AC", + "municipality": "Stalon", + "scheduled_service": "no" + }, + { + "id": "323669", + "ident": "SE-0039", + "type": "small_airport", + "name": "Tjautjasjaure Airstrip", + "latitude_deg": "67.3275684", + "longitude_deg": "20.7439752", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "municipality": "Tjautjas", + "scheduled_service": "no" + }, + { + "id": "323670", + "ident": "SE-0040", + "type": "small_airport", + "name": "Kokhedsfältet Airstrip", + "latitude_deg": "66.1504889", + "longitude_deg": "21.0352497", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "scheduled_service": "no" + }, + { + "id": "323741", + "ident": "SE-0041", + "type": "closed", + "name": "Satter Airstrip", + "latitude_deg": "66.88023", + "longitude_deg": "21.91066", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "municipality": "Satter", + "scheduled_service": "no" + }, + { + "id": "323800", + "ident": "SE-0042", + "type": "small_airport", + "name": "Pålsträsket Airstrip", + "latitude_deg": "65.639347", + "longitude_deg": "21.231589", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "municipality": "Pålsträsk", + "scheduled_service": "no" + }, + { + "id": "323801", + "ident": "SE-0043", + "type": "closed", + "name": "Junosuando", + "latitude_deg": "67.4211943", + "longitude_deg": "22.3986822", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "scheduled_service": "no" + }, + { + "id": "323849", + "ident": "SE-0044", + "type": "small_airport", + "name": "Vuollerim Airstrip", + "latitude_deg": "66.4344129", + "longitude_deg": "20.6340556", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "municipality": "Vuollerim", + "scheduled_service": "no" + }, + { + "id": "324583", + "ident": "SE-0045", + "type": "small_airport", + "name": "Sala flygfält", + "latitude_deg": "59.8951254", + "longitude_deg": "16.6301461", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-U", + "municipality": "Sala", + "scheduled_service": "no" + }, + { + "id": "324727", + "ident": "SE-0046", + "type": "small_airport", + "name": "Gimo gräsfält", + "latitude_deg": "60.1770224", + "longitude_deg": "18.1941428", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-C", + "municipality": "Gimo", + "scheduled_service": "no" + }, + { + "id": "325119", + "ident": "SE-0047", + "type": "small_airport", + "name": "Åviken Fly Camp", + "latitude_deg": "63.2127778", + "longitude_deg": "18.7491667", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Y", + "scheduled_service": "no" + }, + { + "id": "325550", + "ident": "SE-0048", + "type": "small_airport", + "name": "Duvhed flygfält UL", + "latitude_deg": "57.443448", + "longitude_deg": "12.164868", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-N", + "scheduled_service": "no" + }, + { + "id": "327325", + "ident": "SE-0049", + "type": "small_airport", + "name": "Timmele Airfield", + "latitude_deg": "57.872988", + "longitude_deg": "13.430448", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Q", + "municipality": "Timmele", + "scheduled_service": "no" + }, + { + "id": "328612", + "ident": "SE-0050", + "type": "heliport", + "name": "Myttinge Heliport", + "latitude_deg": "59.394406", + "longitude_deg": "18.4707801", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AB", + "scheduled_service": "no" + }, + { + "id": "328677", + "ident": "SE-0051", + "type": "small_airport", + "name": "Degerfors Grenlanda Airfield", + "latitude_deg": "59.102878", + "longitude_deg": "14.300332", + "elevation_ft": "375", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-T", + "municipality": "Degerfors", + "scheduled_service": "no" + }, + { + "id": "328694", + "ident": "SE-0052", + "type": "small_airport", + "name": "Bergs Airstrip", + "latitude_deg": "62.7788937", + "longitude_deg": "14.4059394", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Z", + "municipality": "Berg", + "scheduled_service": "no" + }, + { + "id": "329158", + "ident": "SE-0053", + "type": "heliport", + "name": "Esrange Heliport", + "latitude_deg": "67.8920296", + "longitude_deg": "21.0855448", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "scheduled_service": "no" + }, + { + "id": "329832", + "ident": "SE-0054", + "type": "heliport", + "name": "Ritsem Heliport", + "latitude_deg": "67.7169666", + "longitude_deg": "17.4794345", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "scheduled_service": "no" + }, + { + "id": "331586", + "ident": "SE-0055", + "type": "small_airport", + "name": "Hornlanda", + "latitude_deg": "57.866397", + "longitude_deg": "15.84486", + "elevation_ft": "345", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-E", + "scheduled_service": "no", + "home_link": "http://www.hornlanda.se" + }, + { + "id": "331895", + "ident": "SE-0056", + "type": "small_airport", + "name": "Stöde / Prästbordet flygfält", + "latitude_deg": "62.408119", + "longitude_deg": "16.531705", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Y", + "municipality": "Sundsvall", + "scheduled_service": "no", + "home_link": "http://www.sundsvallssegelflygklubb.se/", + "keywords": "gliderport" + }, + { + "id": "332639", + "ident": "SE-0057", + "type": "small_airport", + "name": "Lindholmen flygfält", + "latitude_deg": "59.58588", + "longitude_deg": "18.161001", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AB", + "municipality": "Lindholmen", + "scheduled_service": "no" + }, + { + "id": "334104", + "ident": "SE-0058", + "type": "small_airport", + "name": "Kronobergshed Airfield", + "latitude_deg": "56.974778", + "longitude_deg": "14.566527", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-G", + "scheduled_service": "no", + "home_link": "https://kronobergshedsflyg.se" + }, + { + "id": "334370", + "ident": "SE-0059", + "type": "small_airport", + "name": "Ödestugu Glider Field", + "latitude_deg": "57.60187", + "longitude_deg": "14.28645", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-F", + "scheduled_service": "no", + "home_link": "http://jsfk.com/" + }, + { + "id": "337293", + "ident": "SE-0060", + "type": "small_airport", + "name": "Kvarnhem Flygfält", + "latitude_deg": "55.80065", + "longitude_deg": "13.6221", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "scheduled_service": "no" + }, + { + "id": "349720", + "ident": "SE-0061", + "type": "small_airport", + "name": "Åkersberga Airfield", + "latitude_deg": "59.520106", + "longitude_deg": "18.239751", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AB", + "municipality": "Åkersberga", + "scheduled_service": "no" + }, + { + "id": "345458", + "ident": "SE-0062", + "type": "small_airport", + "name": "Hellby Säteri Private Airstrip", + "latitude_deg": "59.71731", + "longitude_deg": "16.62933", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-U", + "scheduled_service": "no" + }, + { + "id": "345459", + "ident": "SE-0063", + "type": "small_airport", + "name": "Hedemora Flygfält", + "latitude_deg": "60.239545", + "longitude_deg": "15.98397", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-W", + "scheduled_service": "no" + }, + { + "id": "345620", + "ident": "SE-0064", + "type": "small_airport", + "name": "Nyby Private Airstrip", + "latitude_deg": "59.87213", + "longitude_deg": "16.41971", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-U", + "municipality": "Nyby", + "scheduled_service": "no" + }, + { + "id": "346055", + "ident": "SE-0065", + "type": "small_airport", + "name": "Stockholm - Hova", + "latitude_deg": "59.674664", + "longitude_deg": "17.77854", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AB", + "scheduled_service": "no" + }, + { + "id": "346203", + "ident": "SE-0066", + "type": "small_airport", + "name": "Motala flygklubb", + "latitude_deg": "58.49494", + "longitude_deg": "15.1024", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-E", + "municipality": "Skärstad", + "scheduled_service": "no" + }, + { + "id": "346204", + "ident": "SE-0067", + "type": "small_airport", + "name": "Örnlanda Airstrip", + "latitude_deg": "60.32916", + "longitude_deg": "15.78226", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-W", + "scheduled_service": "no" + }, + { + "id": "346837", + "ident": "SE-0068", + "type": "small_airport", + "name": "Pirttivuopio ice runway", + "latitude_deg": "67.867556", + "longitude_deg": "19.220967", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-BD", + "scheduled_service": "no" + }, + { + "id": "347229", + "ident": "SE-0069", + "type": "small_airport", + "name": "Skeppsdal Airstrip", + "latitude_deg": "59.49633", + "longitude_deg": "18.42299", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AB", + "scheduled_service": "no" + }, + { + "id": "347230", + "ident": "SE-0070", + "type": "small_airport", + "name": "Sticksjö Private Airstrip", + "latitude_deg": "59.31151", + "longitude_deg": "15.47868", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-T", + "scheduled_service": "no" + }, + { + "id": "347699", + "ident": "SE-0071", + "type": "small_airport", + "name": "Bergby Airstrip", + "latitude_deg": "59.76502", + "longitude_deg": "18.62201", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AB", + "municipality": "Bergby (Norrtälje)", + "scheduled_service": "no" + }, + { + "id": "348871", + "ident": "SE-0072", + "type": "small_airport", + "name": "Bleckåsen Airstirp", + "latitude_deg": "63.387264", + "longitude_deg": "13.760569", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Z", + "scheduled_service": "no" + }, + { + "id": "348974", + "ident": "SE-0073", + "type": "small_airport", + "name": "Väster Private Airstrip", + "latitude_deg": "55.52905", + "longitude_deg": "12.92175", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-M", + "scheduled_service": "no" + }, + { + "id": "349442", + "ident": "SE-0074", + "type": "small_airport", + "name": "Muskö Airstrip", + "latitude_deg": "59.00512", + "longitude_deg": "18.11521", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-AB", + "municipality": "Muskö", + "scheduled_service": "no" + }, + { + "id": "29338", + "ident": "SE-0075", + "type": "closed", + "name": "Strängnäs Air Base", + "latitude_deg": "59.3138", + "longitude_deg": "17.1091", + "elevation_ft": "115", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-D", + "municipality": "Strängnäs", + "scheduled_service": "no", + "home_link": "https://web.archive.org/web/20190911041112/http://www.bunkertours.se/flygvapnet/?wppa-occur=1&wppa-cover=0&wppa-album=10", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bas_60#List_of_Bas_60_air_bases", + "keywords": "old_ESKS, Anl 176" + }, + { + "id": "355140", + "ident": "SE-0076", + "type": "small_airport", + "name": "Ragglanda Airfield", + "latitude_deg": "57.86829", + "longitude_deg": "14.338317", + "elevation_ft": "481", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-F", + "municipality": "Huskvarna", + "scheduled_service": "no" + }, + { + "id": "355141", + "ident": "SE-0077", + "type": "closed", + "name": "Slageryd Airfield", + "latitude_deg": "57.312966", + "longitude_deg": "14.954281", + "elevation_ft": "830", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-F", + "municipality": "Vetlanda", + "scheduled_service": "no" + }, + { + "id": "355356", + "ident": "SE-0078", + "type": "heliport", + "name": "Göviken Heliport", + "latitude_deg": "63.19274", + "longitude_deg": "14.63098", + "elevation_ft": "967", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Z", + "municipality": "831 52 Östersund", + "scheduled_service": "no" + }, + { + "id": "355358", + "ident": "SE-0079", + "type": "heliport", + "name": "Babcock Scandinavian Air Ambulance AB", + "latitude_deg": "63.19142", + "longitude_deg": "14.63069", + "elevation_ft": "971", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Z", + "municipality": "831 52 Östersund", + "scheduled_service": "no" + }, + { + "id": "430566", + "ident": "SE-0080", + "type": "small_airport", + "name": "Tallåsen Airstrip", + "latitude_deg": "62.87396", + "longitude_deg": "17.35913", + "continent": "EU", + "iso_country": "SE", + "iso_region": "SE-Y", + "scheduled_service": "no" + }, + { + "id": "2170", + "ident": "SE01", + "type": "small_airport", + "name": "Alba Elena Airport", + "latitude_deg": "-2.166670083999634", + "longitude_deg": "-79.2833023071289", + "elevation_ft": "150", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "Rocafuerte", + "scheduled_service": "no", + "gps_code": "SE01", + "local_code": "SE01" + }, + { + "id": "2171", + "ident": "SE02", + "type": "small_airport", + "name": "Guabital Airport", + "latitude_deg": "-2.773390054702759", + "longitude_deg": "-79.70249938964844", + "elevation_ft": "45", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "Soledad", + "scheduled_service": "no", + "gps_code": "SE02", + "local_code": "SE02" + }, + { + "id": "2172", + "ident": "SE03", + "type": "small_airport", + "name": "Las Peñas Airport", + "latitude_deg": "-2.94716", + "longitude_deg": "-80.1007", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "Puerto Grande", + "scheduled_service": "no", + "gps_code": "SE03", + "local_code": "SE03" + }, + { + "id": "41115", + "ident": "SE04", + "type": "heliport", + "name": "La Fabril Heliport", + "latitude_deg": "-0.9958329796791077", + "longitude_deg": "-80.68861389160156", + "elevation_ft": "40", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-M", + "municipality": "Manta", + "scheduled_service": "no", + "gps_code": "SE04", + "local_code": "SE04" + }, + { + "id": "41099", + "ident": "SE05", + "type": "heliport", + "name": "Posorja Heliport", + "latitude_deg": "-2.7316670417785645", + "longitude_deg": "-80.24583435058594", + "elevation_ft": "18", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "Posorja", + "scheduled_service": "no", + "gps_code": "SE05", + "local_code": "SE05" + }, + { + "id": "41100", + "ident": "SE06", + "type": "heliport", + "name": "Palobamba Heliport", + "latitude_deg": "-2.1902780532836914", + "longitude_deg": "-80.024169921875", + "elevation_ft": "22", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "Lérida", + "scheduled_service": "no", + "gps_code": "SE06", + "local_code": "SE06" + }, + { + "id": "41122", + "ident": "SE07", + "type": "heliport", + "name": "Aviandina Heliport", + "latitude_deg": "-3.2630560398101807", + "longitude_deg": "-79.961669921875", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-O", + "municipality": "Machala", + "scheduled_service": "no", + "gps_code": "SE07", + "local_code": "SE07" + }, + { + "id": "2173", + "ident": "SE08", + "type": "small_airport", + "name": "San Carlos Costa Airport", + "latitude_deg": "-2.054719924926758", + "longitude_deg": "-79.43309783935547", + "elevation_ft": "21", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "Lorenzo de Garaicoa", + "scheduled_service": "no", + "gps_code": "SE08", + "local_code": "SE08" + }, + { + "id": "2174", + "ident": "SE09", + "type": "small_airport", + "name": "San Rafael Airport", + "latitude_deg": "-2.1816699504852295", + "longitude_deg": "-79.23670196533203", + "elevation_ft": "190", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "San Rafael", + "scheduled_service": "no", + "gps_code": "SE09", + "local_code": "SE09" + }, + { + "id": "2175", + "ident": "SE10", + "type": "small_airport", + "name": "Vinces Airport", + "latitude_deg": "-1.5961099863052368", + "longitude_deg": "-79.7260971069336", + "elevation_ft": "32", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-R", + "municipality": "Vinces", + "scheduled_service": "no", + "gps_code": "SE10", + "local_code": "SE10" + }, + { + "id": "2176", + "ident": "SE11", + "type": "small_airport", + "name": "Km 60 Airport", + "latitude_deg": "-0.536183", + "longitude_deg": "-79.371976", + "elevation_ft": "1640", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-P", + "municipality": "Consumulo", + "scheduled_service": "no", + "gps_code": "SE11", + "local_code": "SE11" + }, + { + "id": "41101", + "ident": "SE12", + "type": "heliport", + "name": "Canal Uno Heliport", + "latitude_deg": "-2.165555953979492", + "longitude_deg": "-79.89694213867188", + "elevation_ft": "12", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "Guayaquil", + "scheduled_service": "no", + "gps_code": "SE12", + "local_code": "SE12" + }, + { + "id": "41124", + "ident": "SE13", + "type": "small_airport", + "name": "Babahoyo North Airport", + "latitude_deg": "-1.7033530473709106", + "longitude_deg": "-79.53804779052734", + "elevation_ft": "29", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-R", + "municipality": "Babahoyo", + "scheduled_service": "no", + "gps_code": "SE13", + "local_code": "SE13" + }, + { + "id": "41102", + "ident": "SE14", + "type": "small_airport", + "name": "San Carlos Airport", + "latitude_deg": "-2.1665520668029785", + "longitude_deg": "-79.43370056152344", + "elevation_ft": "126", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "José Real", + "scheduled_service": "no", + "gps_code": "SE14", + "local_code": "SE14" + }, + { + "id": "41125", + "ident": "SE15", + "type": "small_airport", + "name": "Quevedo North Airport", + "latitude_deg": "-0.9998260140419006", + "longitude_deg": "-79.41535949707031", + "elevation_ft": "314", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-R", + "municipality": "Quevedo", + "scheduled_service": "no", + "gps_code": "SE15", + "local_code": "SE15" + }, + { + "id": "41113", + "ident": "SE16", + "type": "small_airport", + "name": "Loja Airport", + "latitude_deg": "-3.8814239501953125", + "longitude_deg": "-79.23474884033203", + "elevation_ft": "7684", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-L", + "municipality": "Loja", + "scheduled_service": "no", + "gps_code": "SE16", + "local_code": "SE16" + }, + { + "id": "41103", + "ident": "SE17", + "type": "heliport", + "name": "Pepsicola Heliport", + "latitude_deg": "-2.1191670894622803", + "longitude_deg": "-79.9352798461914", + "elevation_ft": "15", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "Guayaquil", + "scheduled_service": "no", + "gps_code": "SE17", + "local_code": "SE17" + }, + { + "id": "2177", + "ident": "SE22", + "type": "small_airport", + "name": "Celia Maria Airport", + "latitude_deg": "-3.279330015182495", + "longitude_deg": "-79.8009033203125", + "elevation_ft": "110", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-O", + "municipality": "Pasaje", + "scheduled_service": "no", + "gps_code": "SE22", + "local_code": "SE22" + }, + { + "id": "2178", + "ident": "SE58", + "type": "small_airport", + "name": "Banasur Airport", + "latitude_deg": "-3.34094", + "longitude_deg": "-79.8638", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-O", + "municipality": "Buenavista", + "scheduled_service": "no", + "gps_code": "SE58", + "local_code": "SE58" + }, + { + "id": "2179", + "ident": "SE59", + "type": "small_airport", + "name": "La Mina Airport", + "latitude_deg": "-3.2029199600219727", + "longitude_deg": "-79.79820251464844", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-O", + "municipality": "El Guabo", + "scheduled_service": "no", + "gps_code": "SE59", + "local_code": "SE59" + }, + { + "id": "2180", + "ident": "SE60", + "type": "small_airport", + "name": "La Puntilla Airport", + "latitude_deg": "-2.442850112915039", + "longitude_deg": "-79.3989028930664", + "elevation_ft": "45", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-F", + "municipality": "La Puntilla", + "scheduled_service": "no", + "gps_code": "SE60", + "local_code": "SE60" + }, + { + "id": "6051", + "ident": "SEAM", + "type": "medium_airport", + "name": "Chachoán Airport", + "latitude_deg": "-1.21207", + "longitude_deg": "-78.5746", + "elevation_ft": "8502", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-T", + "municipality": "Ambato", + "scheduled_service": "no", + "gps_code": "SEAM", + "iata_code": "ATF", + "keywords": "Ambato, Chachoan, Izamba" + }, + { + "id": "41128", + "ident": "SEAP", + "type": "small_airport", + "name": "Arapicos Airport", + "latitude_deg": "-1.8576200008392334", + "longitude_deg": "-77.94139862060547", + "elevation_ft": "2920", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-S", + "municipality": "Sangay", + "scheduled_service": "no", + "gps_code": "SEAP" + }, + { + "id": "41132", + "ident": "SEAR", + "type": "small_airport", + "name": "Arajuno Airport", + "latitude_deg": "-1.2357300519943237", + "longitude_deg": "-77.6854019165039", + "elevation_ft": "1700", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Arajuno", + "scheduled_service": "no", + "gps_code": "SEAR" + }, + { + "id": "41123", + "ident": "SEAS", + "type": "small_airport", + "name": "Ascazubi Airport", + "latitude_deg": "-0.08333329856395721", + "longitude_deg": "-78.28333282470703", + "elevation_ft": "9517", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-P", + "municipality": "Ascazubi", + "scheduled_service": "no", + "gps_code": "SEAS" + }, + { + "id": "41104", + "ident": "SEAY", + "type": "small_airport", + "name": "Ayangue Airport", + "latitude_deg": "-1.9777779579162598", + "longitude_deg": "-80.73944091796875", + "elevation_ft": "18", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "San Pedro", + "scheduled_service": "no", + "gps_code": "SEAY" + }, + { + "id": "41126", + "ident": "SEBF", + "type": "closed", + "name": "Buena Fe Airport", + "latitude_deg": "-0.837328", + "longitude_deg": "-79.486759", + "elevation_ft": "320", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-R", + "municipality": "Buena Fe", + "scheduled_service": "no", + "gps_code": "SEBF" + }, + { + "id": "41116", + "ident": "SECH", + "type": "small_airport", + "name": "Chone Airport", + "latitude_deg": "-0.6951010227203369", + "longitude_deg": "-80.0886001586914", + "elevation_ft": "51", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-M", + "municipality": "Chone", + "scheduled_service": "no", + "gps_code": "SECH" + }, + { + "id": "6052", + "ident": "SECM", + "type": "small_airport", + "name": "Hacienda Clementina Airport", + "latitude_deg": "-1.7062699794769287", + "longitude_deg": "-79.37889862060547", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-R", + "municipality": "Pozuelos", + "scheduled_service": "no", + "gps_code": "SECM" + }, + { + "id": "6053", + "ident": "SECO", + "type": "medium_airport", + "name": "Francisco De Orellana Airport", + "latitude_deg": "-0.4628860056400299", + "longitude_deg": "-76.98680114746094", + "elevation_ft": "834", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-D", + "municipality": "Coca", + "scheduled_service": "yes", + "gps_code": "SECO", + "iata_code": "OCC" + }, + { + "id": "41117", + "ident": "SECQ", + "type": "small_airport", + "name": "Coaque Airport", + "latitude_deg": "0.0000009999999974752427", + "longitude_deg": "-80.0999984741211", + "elevation_ft": "131", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-M", + "municipality": "Coaque", + "scheduled_service": "no", + "gps_code": "SECQ" + }, + { + "id": "41133", + "ident": "SECR", + "type": "small_airport", + "name": "Curaray Airport", + "latitude_deg": "-1.384465", + "longitude_deg": "-76.938944", + "elevation_ft": "832", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Curacay", + "scheduled_service": "no", + "gps_code": "SECR" + }, + { + "id": "6054", + "ident": "SECU", + "type": "medium_airport", + "name": "Mariscal Lamar Airport", + "latitude_deg": "-2.88947", + "longitude_deg": "-78.984398", + "elevation_ft": "8306", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-A", + "municipality": "Cuenca", + "scheduled_service": "yes", + "gps_code": "SECU", + "iata_code": "CUE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mariscal_Lamar_International_Airport" + }, + { + "id": "41118", + "ident": "SEGE", + "type": "small_airport", + "name": "Guale Airport", + "latitude_deg": "-1.61667001247406", + "longitude_deg": "-80.2332992553711", + "elevation_ft": "222", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-M", + "municipality": "Guale", + "scheduled_service": "no", + "gps_code": "SEGE" + }, + { + "id": "6055", + "ident": "SEGS", + "type": "small_airport", + "name": "Seymour Galapagos Ecological Airport", + "latitude_deg": "-0.453758", + "longitude_deg": "-90.2659", + "elevation_ft": "207", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-W", + "municipality": "Isla Baltra", + "scheduled_service": "yes", + "gps_code": "SEGS", + "iata_code": "GPS" + }, + { + "id": "6056", + "ident": "SEGU", + "type": "large_airport", + "name": "José Joaquín de Olmedo International Airport", + "latitude_deg": "-2.15742", + "longitude_deg": "-79.883598", + "elevation_ft": "19", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "Guayaquil", + "scheduled_service": "yes", + "gps_code": "SEGU", + "iata_code": "GYE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jos%C3%A9_Joaqu%C3%ADn_de_Olmedo_International_Airport", + "keywords": "Simon Bolivar International Airport" + }, + { + "id": "6057", + "ident": "SEGZ", + "type": "small_airport", + "name": "Gualaquiza Airport", + "latitude_deg": "-3.4232099056243896", + "longitude_deg": "-78.56700134277344", + "elevation_ft": "2640", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-S", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SEGZ" + }, + { + "id": "41112", + "ident": "SEHI", + "type": "small_airport", + "name": "Cotachachi Airport", + "latitude_deg": "-0.3029400110244751", + "longitude_deg": "-78.26830291748047", + "elevation_ft": "7824", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-I", + "municipality": "Cotacachi", + "scheduled_service": "no", + "gps_code": "SEHI" + }, + { + "id": "6058", + "ident": "SEIB", + "type": "small_airport", + "name": "Atahualpa Airport", + "latitude_deg": "0.33841899037361145", + "longitude_deg": "-78.13639831542969", + "elevation_ft": "7304", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-I", + "municipality": "Ibarra", + "scheduled_service": "no", + "gps_code": "SEIB" + }, + { + "id": "41131", + "ident": "SEII", + "type": "small_airport", + "name": "General Villamil Airport", + "latitude_deg": "-0.942628", + "longitude_deg": "-90.953003", + "elevation_ft": "35", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-W", + "municipality": "Puerto Villamil", + "scheduled_service": "yes", + "gps_code": "SEII", + "iata_code": "IBB" + }, + { + "id": "41105", + "ident": "SEIS", + "type": "small_airport", + "name": "Isabel Maria Airport", + "latitude_deg": "-1.86667001247406", + "longitude_deg": "-79.7332992553711", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "América", + "scheduled_service": "no", + "gps_code": "SEIS" + }, + { + "id": "41119", + "ident": "SEJI", + "type": "small_airport", + "name": "Jipijapa Airport", + "latitude_deg": "-1", + "longitude_deg": "-80.66666412353516", + "elevation_ft": "223", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-M", + "municipality": "Jipijapa", + "scheduled_service": "no", + "gps_code": "SEJI", + "iata_code": "JIP" + }, + { + "id": "41120", + "ident": "SEJM", + "type": "small_airport", + "name": "Jama Airport", + "latitude_deg": "-0.20149700343608856", + "longitude_deg": "-80.2654037475586", + "elevation_ft": "37", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-M", + "municipality": "Jama", + "scheduled_service": "no", + "gps_code": "SEJM" + }, + { + "id": "6059", + "ident": "SEKK", + "type": "small_airport", + "name": "Km 192 Airport", + "latitude_deg": "0.18465", + "longitude_deg": "-79.391181", + "elevation_ft": "1247", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-E", + "municipality": "Lagartera", + "scheduled_service": "no", + "gps_code": "SEKK" + }, + { + "id": "41129", + "ident": "SELI", + "type": "small_airport", + "name": "Limoncocha Airport", + "latitude_deg": "-0.40636301040649414", + "longitude_deg": "-76.6238021850586", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-U", + "municipality": "Limoncocha", + "scheduled_service": "no", + "gps_code": "SELI" + }, + { + "id": "6060", + "ident": "SELJ", + "type": "small_airport", + "name": "Hacienda La Julia Airport", + "latitude_deg": "-1.7043800354003906", + "longitude_deg": "-79.55229949951172", + "elevation_ft": "50", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-R", + "municipality": "Julia", + "scheduled_service": "no", + "gps_code": "SELJ" + }, + { + "id": "32278", + "ident": "SELM", + "type": "small_airport", + "name": "Loma Larga Airport", + "latitude_deg": "-1.501579999923706", + "longitude_deg": "-79.48090362548828", + "elevation_ft": "210", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-R", + "municipality": "Loma Larga", + "scheduled_service": "no", + "gps_code": "SELM" + }, + { + "id": "6061", + "ident": "SELT", + "type": "medium_airport", + "name": "Cotopaxi International Airport", + "latitude_deg": "-0.906833", + "longitude_deg": "-78.615799", + "elevation_ft": "9205", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-X", + "municipality": "Latacunga", + "scheduled_service": "yes", + "gps_code": "SELT", + "iata_code": "LTX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cotopaxi_International_Airport", + "keywords": "Latacunga, Vulcano, Ecuador, Cargo, Long runway, Height" + }, + { + "id": "6062", + "ident": "SEMA", + "type": "medium_airport", + "name": "Jose Maria Velasco Ibarra Airport", + "latitude_deg": "-4.37823009491", + "longitude_deg": "-79.94100189210002", + "elevation_ft": "1508", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-L", + "municipality": "Macará", + "scheduled_service": "no", + "gps_code": "SEMA", + "iata_code": "MRR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jos%C3%A9_Mar%C3%ADa_Velasco_Ibarra_Airport" + }, + { + "id": "6063", + "ident": "SEMC", + "type": "medium_airport", + "name": "Coronel E Carvajal Airport", + "latitude_deg": "-2.2991700172424316", + "longitude_deg": "-78.12079620361328", + "elevation_ft": "3452", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-S", + "municipality": "Macas", + "scheduled_service": "yes", + "gps_code": "SEMC", + "iata_code": "XMS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Macas_Airport" + }, + { + "id": "6064", + "ident": "SEMH", + "type": "closed", + "name": "General Manuel Serrano Airport", + "latitude_deg": "-3.2689", + "longitude_deg": "-79.961601", + "elevation_ft": "11", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-O", + "municipality": "Machala", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Manuel_Serrano_Airport", + "keywords": "MCH, SEMH" + }, + { + "id": "6065", + "ident": "SEMO", + "type": "small_airport", + "name": "El Carmen Airport", + "latitude_deg": "-2.067009925842285", + "longitude_deg": "-76.97570037841797", + "elevation_ft": "960", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Montalvo", + "scheduled_service": "no", + "gps_code": "SEMO" + }, + { + "id": "6066", + "ident": "SEMT", + "type": "medium_airport", + "name": "Eloy Alfaro International Airport", + "latitude_deg": "-0.9460780024528503", + "longitude_deg": "-80.67880249023438", + "elevation_ft": "48", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-M", + "municipality": "Manta", + "scheduled_service": "yes", + "gps_code": "SEMT", + "iata_code": "MEC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manta_Air_Base" + }, + { + "id": "6067", + "ident": "SEMX", + "type": "small_airport", + "name": "Maragrosa Airport", + "latitude_deg": "-2.851099967956543", + "longitude_deg": "-79.80359649658203", + "elevation_ft": "18", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "Puerto Balao", + "scheduled_service": "no", + "gps_code": "SEMX" + }, + { + "id": "32279", + "ident": "SEMY", + "type": "small_airport", + "name": "Martinica Airport", + "latitude_deg": "-1.7397199869155884", + "longitude_deg": "-79.62149810791016", + "elevation_ft": "90", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-R", + "municipality": "Martinica", + "scheduled_service": "no", + "gps_code": "SEMY" + }, + { + "id": "32277", + "ident": "SENL", + "type": "small_airport", + "name": "Nueva Loja Airport", + "latitude_deg": "0.0930560007691", + "longitude_deg": "-76.86750030520001", + "elevation_ft": "980", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-U", + "municipality": "Lago Agrio", + "scheduled_service": "no", + "gps_code": "SENL", + "iata_code": "LGQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lago_Agrio_Airport", + "keywords": "SELA, Lago Agrio," + }, + { + "id": "41106", + "ident": "SEPB", + "type": "small_airport", + "name": "Pedro Carbo Airport", + "latitude_deg": "-1.8115930557250977", + "longitude_deg": "-80.23246002197266", + "elevation_ft": "321", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "Pecro Carbo", + "scheduled_service": "no", + "gps_code": "SEPB" + }, + { + "id": "6069", + "ident": "SEPC", + "type": "small_airport", + "name": "Patuca Airport", + "latitude_deg": "-2.7517199516296387", + "longitude_deg": "-78.26360321044922", + "elevation_ft": "1781", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-S", + "municipality": "Patuca", + "scheduled_service": "no", + "gps_code": "SEPC" + }, + { + "id": "41121", + "ident": "SEPD", + "type": "small_airport", + "name": "Pedernales Airport", + "latitude_deg": "0.06761900335550308", + "longitude_deg": "-80.05049896240234", + "elevation_ft": "60", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-M", + "municipality": "Pedernales", + "scheduled_service": "no", + "gps_code": "SEPD" + }, + { + "id": "41107", + "ident": "SEPO", + "type": "small_airport", + "name": "Posorja Airport", + "latitude_deg": "-2.682029962539673", + "longitude_deg": "-80.27559661865234", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "Posorja", + "scheduled_service": "no", + "gps_code": "SEPO" + }, + { + "id": "6070", + "ident": "SEPS", + "type": "small_airport", + "name": "Amable Calle Gutierrez Airport", + "latitude_deg": "-3.3196699619293213", + "longitude_deg": "-79.76920318603516", + "elevation_ft": "22", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-O", + "municipality": "Pasaje", + "scheduled_service": "no", + "gps_code": "SEPS" + }, + { + "id": "41130", + "ident": "SEPT", + "type": "small_airport", + "name": "Putumayo Airport", + "latitude_deg": "0.115949", + "longitude_deg": "-75.85022", + "elevation_ft": "733", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-U", + "municipality": "Puerto Putumayo", + "scheduled_service": "no", + "gps_code": "SEPT", + "iata_code": "PYO" + }, + { + "id": "41108", + "ident": "SEPU", + "type": "small_airport", + "name": "Puna Airport", + "latitude_deg": "-2.733680009841919", + "longitude_deg": "-79.91529846191406", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "Puna", + "scheduled_service": "no", + "gps_code": "SEPU" + }, + { + "id": "6071", + "ident": "SEPV", + "type": "medium_airport", + "name": "Reales Tamarindos Airport", + "latitude_deg": "-1.0416500568389893", + "longitude_deg": "-80.47219848632812", + "elevation_ft": "130", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-M", + "municipality": "Portoviejo", + "scheduled_service": "no", + "gps_code": "SEPV", + "iata_code": "PVO" + }, + { + "id": "41109", + "ident": "SEPX", + "type": "small_airport", + "name": "Payo Airport", + "latitude_deg": "-2.309999942779541", + "longitude_deg": "-79.45999908447266", + "elevation_ft": "101", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "Hacienda Payo", + "scheduled_service": "no", + "gps_code": "SEPX" + }, + { + "id": "32281", + "ident": "SEPZ", + "type": "small_airport", + "name": "Los Perez Airport", + "latitude_deg": "-0.953189", + "longitude_deg": "-79.375331", + "elevation_ft": "75", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-R", + "municipality": "Los Perez", + "scheduled_service": "no", + "gps_code": "SEPZ" + }, + { + "id": "6072", + "ident": "SEQE", + "type": "small_airport", + "name": "Quevedo Airport", + "latitude_deg": "-0.989013", + "longitude_deg": "-79.465571", + "elevation_ft": "350", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-R", + "municipality": "Quevedo", + "scheduled_service": "no", + "gps_code": "SEQE" + }, + { + "id": "308273", + "ident": "SEQM", + "type": "large_airport", + "name": "Mariscal Sucre International Airport", + "latitude_deg": "-0.129166666667", + "longitude_deg": "-78.3575", + "elevation_ft": "7841", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-P", + "municipality": "Quito", + "scheduled_service": "yes", + "gps_code": "SEQM", + "iata_code": "UIO", + "local_code": "UIO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mariscal_Sucre_International_Airport", + "keywords": "Nuevo Aeropuerto Internacional Mariscal Sucre" + }, + { + "id": "6073", + "ident": "SEQU", + "type": "closed", + "name": "Mariscal Sucre International Airport", + "latitude_deg": "-0.141144", + "longitude_deg": "-78.488197", + "elevation_ft": "9228", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-P", + "municipality": "Quito", + "scheduled_service": "no", + "gps_code": "SEQU", + "home_link": "http://www.aeropuertoquito.aero/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Old_Mariscal_Sucre_International_Airport", + "keywords": "Quito, Ecuador, Dangerous, Closed, Mountains, Volcano, America, Middle of the world" + }, + { + "id": "6074", + "ident": "SERB", + "type": "small_airport", + "name": "Chimborazo Airport", + "latitude_deg": "-1.653324", + "longitude_deg": "-78.656342", + "elevation_ft": "9151", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-H", + "municipality": "Riobamba", + "scheduled_service": "no", + "gps_code": "SERB" + }, + { + "id": "6075", + "ident": "SERO", + "type": "medium_airport", + "name": "Santa Rosa - Artillery Colonel Victor Larrea International Airport", + "latitude_deg": "-3.441986", + "longitude_deg": "-79.996957", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-O", + "municipality": "Santa Rosa", + "scheduled_service": "yes", + "gps_code": "SERO", + "iata_code": "ETR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Rosa_International_Airport", + "keywords": "Machala International Airport" + }, + { + "id": "6076", + "ident": "SESA", + "type": "medium_airport", + "name": "General Ulpiano Paez Airport", + "latitude_deg": "-2.20499", + "longitude_deg": "-80.988899", + "elevation_ft": "18", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "Salinas", + "scheduled_service": "no", + "gps_code": "SESA", + "iata_code": "SNC", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Ulpiano_Paez_Airport" + }, + { + "id": "32391", + "ident": "SESC", + "type": "small_airport", + "name": "Sucua Airport", + "latitude_deg": "-2.4830000400543213", + "longitude_deg": "-78.16699981689453", + "elevation_ft": "3116", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-S", + "municipality": "Sucua", + "scheduled_service": "no", + "gps_code": "SESC", + "iata_code": "SUQ" + }, + { + "id": "6077", + "ident": "SESD", + "type": "closed", + "name": "Santo Domingo de Los Colorados Airport", + "latitude_deg": "-0.248592", + "longitude_deg": "-79.208129", + "elevation_ft": "1714", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-P", + "municipality": "Santo Domingo de Los Colorades", + "scheduled_service": "no", + "gps_code": "SESD" + }, + { + "id": "6078", + "ident": "SESM", + "type": "small_airport", + "name": "Rio Amazonas Airport", + "latitude_deg": "-1.5052399635299998", + "longitude_deg": "-78.0626983643", + "elevation_ft": "3465", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-Y", + "municipality": "Shell Mera", + "scheduled_service": "no", + "gps_code": "SESM", + "iata_code": "PTZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rio_Amazonas_Airport" + }, + { + "id": "6079", + "ident": "SEST", + "type": "small_airport", + "name": "San Cristóbal Airport", + "latitude_deg": "-0.910206", + "longitude_deg": "-89.617401", + "elevation_ft": "62", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-W", + "municipality": "Puerto Baquerizo Moreno", + "scheduled_service": "yes", + "gps_code": "SEST", + "iata_code": "SCY", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Cristóbal_Airport" + }, + { + "id": "6080", + "ident": "SESV", + "type": "small_airport", + "name": "Los Perales Airport", + "latitude_deg": "-0.6081110239028931", + "longitude_deg": "-80.40270233154297", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-M", + "municipality": "Bahía de Caraquez", + "scheduled_service": "no", + "gps_code": "SESV", + "iata_code": "BHA" + }, + { + "id": "6081", + "ident": "SETA", + "type": "small_airport", + "name": "Taura Airport", + "latitude_deg": "-2.261039972305298", + "longitude_deg": "-79.6801986694336", + "elevation_ft": "56", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "Taura", + "scheduled_service": "no", + "gps_code": "SETA" + }, + { + "id": "6082", + "ident": "SETE", + "type": "small_airport", + "name": "Mayor Galo Torres Airport", + "latitude_deg": "-0.9867669939994812", + "longitude_deg": "-77.81950378417969", + "elevation_ft": "1708", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-N", + "municipality": "Tena", + "scheduled_service": "no", + "gps_code": "SETE" + }, + { + "id": "41110", + "ident": "SETG", + "type": "small_airport", + "name": "Tenguel Airport", + "latitude_deg": "-2.9986000061035156", + "longitude_deg": "-79.7947006225586", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-G", + "municipality": "Boca de Tenguel", + "scheduled_service": "no", + "gps_code": "SETG" + }, + { + "id": "32477", + "ident": "SETH", + "type": "small_airport", + "name": "Taisha Airport", + "latitude_deg": "-2.3816699981689453", + "longitude_deg": "-77.50279998779297", + "elevation_ft": "1669", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-S", + "municipality": "Taisha", + "scheduled_service": "no", + "gps_code": "SETH", + "iata_code": "TSC" + }, + { + "id": "32473", + "ident": "SETI", + "type": "small_airport", + "name": "Tiputini Airport", + "latitude_deg": "-0.7761110067367554", + "longitude_deg": "-75.52639770507812", + "elevation_ft": "997", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-D", + "municipality": "Tiputini", + "scheduled_service": "no", + "gps_code": "SETI", + "iata_code": "TPN" + }, + { + "id": "6083", + "ident": "SETM", + "type": "small_airport", + "name": "Camilo Ponce Enriquez Airport", + "latitude_deg": "-3.99589", + "longitude_deg": "-79.371902", + "elevation_ft": "4056", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-L", + "municipality": "La Toma (Catamayo)", + "scheduled_service": "yes", + "gps_code": "SETM", + "iata_code": "LOH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ciudad_de_Catamayo_Airport" + }, + { + "id": "6084", + "ident": "SETN", + "type": "small_airport", + "name": "General Rivadeneira Airport", + "latitude_deg": "0.9785190224647522", + "longitude_deg": "-79.62660217285156", + "elevation_ft": "32", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-E", + "municipality": "Tachina", + "scheduled_service": "yes", + "gps_code": "SETN", + "iata_code": "ESM" + }, + { + "id": "6085", + "ident": "SETR", + "type": "medium_airport", + "name": "Tarapoa Airport", + "latitude_deg": "-0.12295600026845932", + "longitude_deg": "-76.33779907226562", + "elevation_ft": "814", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-U", + "municipality": "Tarapoa", + "scheduled_service": "no", + "gps_code": "SETR", + "iata_code": "TPC" + }, + { + "id": "6086", + "ident": "SETU", + "type": "medium_airport", + "name": "Teniente Coronel Luis a Mantilla Airport", + "latitude_deg": "0.8095059990882874", + "longitude_deg": "-77.70809936523438", + "elevation_ft": "9649", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-C", + "municipality": "Tulcán", + "scheduled_service": "yes", + "gps_code": "SETU", + "iata_code": "TUA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Teniente_Coronel_Luis_a_Mantilla_International_Airport" + }, + { + "id": "41111", + "ident": "SEVR", + "type": "small_airport", + "name": "El Vergel Airport", + "latitude_deg": "-1.75", + "longitude_deg": "-78.61666870117188", + "elevation_ft": "9002", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-H", + "municipality": "El Vergel", + "scheduled_service": "no", + "gps_code": "SEVR" + }, + { + "id": "6087", + "ident": "SFAL", + "type": "medium_airport", + "name": "Port Stanley Airport", + "latitude_deg": "-51.685699462891", + "longitude_deg": "-57.777599334717", + "elevation_ft": "75", + "continent": "SA", + "iso_country": "FK", + "iso_region": "FK-U-A", + "municipality": "Stanley", + "scheduled_service": "yes", + "gps_code": "SFAL", + "iata_code": "PSY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Stanley_Airport" + }, + { + "id": "314610", + "ident": "SFR", + "type": "closed", + "name": "San Fernando Airport", + "latitude_deg": "34.289", + "longitude_deg": "-118.422", + "elevation_ft": "1168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Fernando", + "scheduled_service": "no", + "iata_code": "SFR" + }, + { + "id": "307121", + "ident": "SFU", + "type": "small_airport", + "name": "Safia Airport", + "latitude_deg": "-9.59305555556", + "longitude_deg": "148.636111111", + "elevation_ft": "430", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "municipality": "Safia", + "scheduled_service": "no", + "gps_code": "AYSF", + "iata_code": "SFU", + "local_code": "SFA" + }, + { + "id": "43119", + "ident": "SG-0001", + "type": "heliport", + "name": "Brani Naval Base Heliport", + "latitude_deg": "1.256974", + "longitude_deg": "103.833179", + "continent": "AS", + "iso_country": "SG", + "iso_region": "SG-01", + "municipality": "Bukit Merah", + "scheduled_service": "no" + }, + { + "id": "43120", + "ident": "SG-0002", + "type": "small_airport", + "name": "Pulau Sudong Military Airstrip", + "latitude_deg": "1.20532", + "longitude_deg": "103.719002", + "continent": "AS", + "iso_country": "SG", + "iso_region": "SG-05", + "municipality": "Western Islands", + "scheduled_service": "no" + }, + { + "id": "312925", + "ident": "SG-0003", + "type": "small_airport", + "name": "Lim Chu Kang Road (Tengah Highway Strip)", + "latitude_deg": "1.390671", + "longitude_deg": "103.698435", + "continent": "AS", + "iso_country": "SG", + "iso_region": "SG-03", + "municipality": "Western Water Catchment", + "scheduled_service": "no", + "home_link": "https://www.youtube.com/watch?v=CBMD4QTSyqM" + }, + { + "id": "339980", + "ident": "SG-0004", + "type": "closed", + "name": "Kallang Airport", + "latitude_deg": "1.307411", + "longitude_deg": "103.873378", + "continent": "AS", + "iso_country": "SG", + "iso_region": "SG-01", + "municipality": "Kallang", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kallang_Airport" + }, + { + "id": "351987", + "ident": "SG-0005", + "type": "small_airport", + "name": "Murai Airfield", + "latitude_deg": "1.39203", + "longitude_deg": "103.69951", + "elevation_ft": "72", + "continent": "AS", + "iso_country": "SG", + "iso_region": "SG-03", + "municipality": "Western Water Catchment", + "scheduled_service": "no" + }, + { + "id": "5508", + "ident": "SG67", + "type": "small_airport", + "name": "Estancia Pai Quara Airport", + "latitude_deg": "-23.219999313354492", + "longitude_deg": "-55.95000076293945", + "elevation_ft": "712", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-13", + "municipality": "Estancia Pai Quara", + "scheduled_service": "no", + "gps_code": "SG67", + "local_code": "SG67" + }, + { + "id": "6088", + "ident": "SGAS", + "type": "medium_airport", + "name": "Silvio Pettirossi International Airport", + "latitude_deg": "-25.239999771118164", + "longitude_deg": "-57.52000045776367", + "elevation_ft": "292", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-11", + "municipality": "Asunción", + "scheduled_service": "yes", + "gps_code": "SGAS", + "iata_code": "ASU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Silvio_Pettirossi_International_Airport" + }, + { + "id": "6089", + "ident": "SGAY", + "type": "medium_airport", + "name": "Juan De Ayolas Airport", + "latitude_deg": "-27.370554", + "longitude_deg": "-56.854064", + "elevation_ft": "223", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-8", + "municipality": "Ayolas", + "scheduled_service": "no", + "gps_code": "SGAY", + "iata_code": "AYO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Juan_de_Ayolas_Airport" + }, + { + "id": "308256", + "ident": "SGBA", + "type": "small_airport", + "name": "Bella Vista Sur Airport", + "latitude_deg": "-27.052393", + "longitude_deg": "-55.578026", + "elevation_ft": "650", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-7", + "municipality": "Colonia Doctor Pastor Obligado", + "scheduled_service": "no", + "gps_code": "SGBA" + }, + { + "id": "6090", + "ident": "SGCO", + "type": "small_airport", + "name": "Teniente Col Carmelo Peralta Airport", + "latitude_deg": "-23.442363", + "longitude_deg": "-57.427253", + "elevation_ft": "253", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-1", + "municipality": "Concepción", + "scheduled_service": "no", + "gps_code": "SGCO", + "iata_code": "CIO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Teniente_Coronel_Carmelo_Peralta_Airport" + }, + { + "id": "318322", + "ident": "SGCU", + "type": "small_airport", + "name": "Curuguaty Airport", + "latitude_deg": "-24.500158", + "longitude_deg": "-55.682111", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-14", + "scheduled_service": "no", + "gps_code": "SGCU" + }, + { + "id": "29851", + "ident": "SGEN", + "type": "small_airport", + "name": "Teniente Amin Ayub Gonzalez Airport", + "latitude_deg": "-27.227366", + "longitude_deg": "-55.837495", + "elevation_ft": "659", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-7", + "municipality": "Encarnación", + "scheduled_service": "yes", + "gps_code": "SGEN", + "iata_code": "ENO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Teniente_Amin_Ayub_Gonzalez_Airport" + }, + { + "id": "6091", + "ident": "SGES", + "type": "medium_airport", + "name": "Guarani International Airport", + "latitude_deg": "-25.454516", + "longitude_deg": "-54.842682", + "elevation_ft": "846", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-10", + "municipality": "Ciudad del Este", + "scheduled_service": "yes", + "gps_code": "SGES", + "iata_code": "AGT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guarani_International_Airport" + }, + { + "id": "31157", + "ident": "SGFI", + "type": "small_airport", + "name": "Filadelfia Airport", + "latitude_deg": "-22.360477", + "longitude_deg": "-60.053604", + "elevation_ft": "423", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-19", + "municipality": "Filadelfia", + "scheduled_service": "no", + "gps_code": "SGFI", + "iata_code": "FLM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Filadelfia_Airport" + }, + { + "id": "308258", + "ident": "SGGR", + "type": "small_airport", + "name": "Salto del Guaira Airport", + "latitude_deg": "-24.032269", + "longitude_deg": "-54.350829", + "elevation_ft": "990", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-14", + "municipality": "Salto del Guaira", + "scheduled_service": "no", + "gps_code": "SGGR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salto_del_Guair%C3%A1_Airport" + }, + { + "id": "6092", + "ident": "SGIB", + "type": "small_airport", + "name": "Itaipú Airport", + "latitude_deg": "-25.407519", + "longitude_deg": "-54.619377", + "elevation_ft": "762", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-10", + "municipality": "Itaipú", + "scheduled_service": "no", + "gps_code": "SGIB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Itaipu_Airport" + }, + { + "id": "6093", + "ident": "SGME", + "type": "medium_airport", + "name": "Dr. Luis Maria Argaña International Airport", + "latitude_deg": "-22.049999237060547", + "longitude_deg": "-60.619998931884766", + "elevation_ft": "553", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-19", + "municipality": "Mariscal Estigarribia", + "scheduled_service": "no", + "gps_code": "SGME", + "iata_code": "ESG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dr._Luis_Maria_Arga%C3%B1a_International_Airport" + }, + { + "id": "30531", + "ident": "SGNB", + "type": "small_airport", + "name": "Villa Hayes Sarg Airport", + "latitude_deg": "-25.15999984741211", + "longitude_deg": "-57.560001373291016", + "elevation_ft": "210", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-15", + "municipality": "Villa Hayes", + "scheduled_service": "no", + "gps_code": "SGNB" + }, + { + "id": "308260", + "ident": "SGPC", + "type": "small_airport", + "name": "Pozo Colorado Airport", + "latitude_deg": "-23.499127", + "longitude_deg": "-58.785914", + "elevation_ft": "325", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-15", + "municipality": "Pozo Colorado", + "scheduled_service": "no", + "gps_code": "SGPC" + }, + { + "id": "308261", + "ident": "SGPG", + "type": "small_airport", + "name": "Pelayo Prats Gill Airstrip", + "latitude_deg": "-22.555819", + "longitude_deg": "-61.613992", + "elevation_ft": "690", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-19", + "scheduled_service": "no", + "gps_code": "SGPG" + }, + { + "id": "6094", + "ident": "SGPI", + "type": "medium_airport", + "name": "Carlos Miguel Gimenez Airport", + "latitude_deg": "-26.881224", + "longitude_deg": "-58.318026", + "elevation_ft": "249", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-12", + "municipality": "Pilar", + "scheduled_service": "no", + "gps_code": "SGPI", + "iata_code": "PIL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carlos_Miguel_Jim%C3%A9nez_Airport" + }, + { + "id": "6095", + "ident": "SGPJ", + "type": "small_airport", + "name": "Dr Augusto Roberto Fuster International Airport", + "latitude_deg": "-22.639999389648438", + "longitude_deg": "-55.83000183105469", + "elevation_ft": "1873", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-13", + "municipality": "Pedro Juan Caballero", + "scheduled_service": "no", + "gps_code": "SGPJ", + "iata_code": "PJC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dr._Augusto_Roberto_Fuster_International_Airport" + }, + { + "id": "39567", + "ident": "SGPO", + "type": "small_airport", + "name": "Puerto Pinasco Airport", + "latitude_deg": "-22.6299991607666", + "longitude_deg": "-57.84000015258789", + "elevation_ft": "239", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-15", + "municipality": "Pinasco", + "scheduled_service": "no", + "gps_code": "SGPO" + }, + { + "id": "39568", + "ident": "SGRO", + "type": "small_airport", + "name": "Rosario Airport", + "latitude_deg": "-24.43000030517578", + "longitude_deg": "-57.119998931884766", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-2", + "municipality": "Rosario", + "scheduled_service": "no", + "gps_code": "SGRO" + }, + { + "id": "308262", + "ident": "SGSP", + "type": "small_airport", + "name": "San Pedro Airport", + "latitude_deg": "-24.082883", + "longitude_deg": "-57.088112", + "elevation_ft": "270", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-2", + "municipality": "San Pedro del Ycuamandiyu", + "scheduled_service": "no", + "gps_code": "SGSP" + }, + { + "id": "6096", + "ident": "SGST", + "type": "small_airport", + "name": "Santa Teresa Airport", + "latitude_deg": "-22.622754", + "longitude_deg": "-56.634507", + "elevation_ft": "582", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-13", + "municipality": "Santa Teresa", + "scheduled_service": "no", + "gps_code": "SGST", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Teresa_Airport" + }, + { + "id": "340420", + "ident": "SH-0001", + "type": "heliport", + "name": "Gough Island Heliport", + "latitude_deg": "-40.347933", + "longitude_deg": "-9.881306", + "continent": "AF", + "iso_country": "SH", + "iso_region": "SH-TA", + "municipality": "Gough Island", + "scheduled_service": "no", + "gps_code": "FAGE", + "local_code": "FHGH" + }, + { + "id": "340421", + "ident": "SH-0002", + "type": "heliport", + "name": "Saint Helena Heliport", + "latitude_deg": "-15.960775", + "longitude_deg": "-5.654768", + "continent": "AF", + "iso_country": "SH", + "iso_region": "SH-SH", + "municipality": "Longwood", + "scheduled_service": "no" + }, + { + "id": "301241", + "ident": "SH1", + "type": "small_airport", + "name": "Shelby Auxiliary Field #1 Airport", + "latitude_deg": "31.205185", + "longitude_deg": "-89.175961", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Hattiesburg", + "scheduled_service": "no", + "home_link": "https://www.airnav.com/airport/SH1" + }, + { + "id": "45083", + "ident": "SHAB", + "type": "heliport", + "name": "Aguas Blancas Heliport", + "latitude_deg": "-32.665556", + "longitude_deg": "-71.440278", + "elevation_ft": "102", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Puchuncavi", + "scheduled_service": "no", + "gps_code": "SHAB" + }, + { + "id": "39329", + "ident": "SHAC", + "type": "heliport", + "name": "Asociación Chilena de Seguridad Heliport", + "latitude_deg": "-33.44361114501953", + "longitude_deg": "-70.6322250366211", + "elevation_ft": "1969", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHAC" + }, + { + "id": "45084", + "ident": "SHAE", + "type": "heliport", + "name": "Aerorescate Heliport", + "latitude_deg": "-33.439722", + "longitude_deg": "-70.831389", + "elevation_ft": "1460", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Pudahuel", + "scheduled_service": "no", + "gps_code": "SHAE" + }, + { + "id": "348836", + "ident": "SHAF", + "type": "heliport", + "name": "Santa Carolina Heliport", + "latitude_deg": "-34.826222", + "longitude_deg": "-72.066622", + "elevation_ft": "164", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Vichuquén", + "scheduled_service": "no", + "gps_code": "SHAF" + }, + { + "id": "39330", + "ident": "SHAG", + "type": "heliport", + "name": "Anguila 1 Heliport", + "latitude_deg": "-52.49944305419922", + "longitude_deg": "-68.72555541992188", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Magallanes", + "scheduled_service": "no", + "gps_code": "SHAG" + }, + { + "id": "39331", + "ident": "SHAH", + "type": "heliport", + "name": "Nazareno II Heliport", + "latitude_deg": "-33.400001525878906", + "longitude_deg": "-70.57389831542969", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHAH" + }, + { + "id": "45085", + "ident": "SHAL", + "type": "heliport", + "name": "Los Paltos Heliport", + "latitude_deg": "-33.725556", + "longitude_deg": "-70.930278", + "elevation_ft": "298", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Isla De Maipo", + "scheduled_service": "no", + "gps_code": "SHAL" + }, + { + "id": "348809", + "ident": "SHAO", + "type": "heliport", + "name": "Hospital de Ovalle Heliport", + "latitude_deg": "-30.578565", + "longitude_deg": "-71.191728", + "elevation_ft": "1033", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Ovalle", + "scheduled_service": "no", + "gps_code": "SHAO", + "keywords": "http://www.airmate.aero/php/airport_page.php?page=airport_page&code=SHAO" + }, + { + "id": "39332", + "ident": "SHAP", + "type": "heliport", + "name": "Asistencia Pública Dr. Alejandro del Río Heliport", + "latitude_deg": "-33.439998626708984", + "longitude_deg": "-70.63722229003906", + "elevation_ft": "1886", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHAP" + }, + { + "id": "348810", + "ident": "SHAQ", + "type": "heliport", + "name": "Apoquindo 2929 Helipad", + "latitude_deg": "-33.417772", + "longitude_deg": "-70.599148", + "elevation_ft": "2322", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHAQ" + }, + { + "id": "39333", + "ident": "SHAU", + "type": "heliport", + "name": "La Aurora Heliport", + "latitude_deg": "-33.42527770996094", + "longitude_deg": "-71.02305603027344", + "elevation_ft": "696", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Curacavi", + "scheduled_service": "no", + "gps_code": "SHAU" + }, + { + "id": "45086", + "ident": "SHBC", + "type": "heliport", + "name": "Las Brisas De Chicureo Heliport", + "latitude_deg": "-33.239722", + "longitude_deg": "-70.696111", + "elevation_ft": "1175", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHBC" + }, + { + "id": "39334", + "ident": "SHBE", + "type": "heliport", + "name": "Banco Exterior Heliport", + "latitude_deg": "-33.43611145019531", + "longitude_deg": "-70.6449966430664", + "elevation_ft": "2000", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHBE" + }, + { + "id": "39335", + "ident": "SHBL", + "type": "heliport", + "name": "Hospital Ramón Barros Luco Heliport", + "latitude_deg": "-33.48527908325195", + "longitude_deg": "-70.64444732666016", + "elevation_ft": "1805", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHBL" + }, + { + "id": "39336", + "ident": "SHBP", + "type": "heliport", + "name": "Bahía Los Primos Heliport", + "latitude_deg": "-34.11083221435547", + "longitude_deg": "-71.5352783203125", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "La Estrella", + "scheduled_service": "no", + "gps_code": "SHBP" + }, + { + "id": "39337", + "ident": "SHBS", + "type": "heliport", + "name": "Banco Santander Heliport", + "latitude_deg": "-33.43611145019531", + "longitude_deg": "-70.6513900756836", + "elevation_ft": "2067", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHBS" + }, + { + "id": "39338", + "ident": "SHCA", + "type": "heliport", + "name": "Prefectura Aeropolicial de Carabineros Heliport", + "latitude_deg": "-33.45527648925781", + "longitude_deg": "-70.54833221435547", + "elevation_ft": "2070", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHCA" + }, + { + "id": "39339", + "ident": "SHCB", + "type": "heliport", + "name": "Caburga Heliport", + "latitude_deg": "-39.16694259643555", + "longitude_deg": "-71.76055908203125", + "elevation_ft": "1558", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Pucon", + "scheduled_service": "no", + "gps_code": "SHCB" + }, + { + "id": "39340", + "ident": "SHCC", + "type": "heliport", + "name": "Clínica Las Condes Heliport", + "latitude_deg": "-33.385276794433594", + "longitude_deg": "-70.53083038330078", + "elevation_ft": "2461", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHCC" + }, + { + "id": "39341", + "ident": "SHCG", + "type": "heliport", + "name": "Cachagua Heliport", + "latitude_deg": "-32.578887939453125", + "longitude_deg": "-71.4544448852539", + "elevation_ft": "80", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Zapallar", + "scheduled_service": "no", + "gps_code": "SHCG" + }, + { + "id": "39342", + "ident": "SHCI", + "type": "heliport", + "name": "San Cristóbal Heliport", + "latitude_deg": "-32.57611083984375", + "longitude_deg": "-71.45249938964844", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Zapallar", + "scheduled_service": "no", + "gps_code": "SHCI" + }, + { + "id": "39343", + "ident": "SHCM", + "type": "heliport", + "name": "Corporativo Mutual Heliport", + "latitude_deg": "-33.440277099609375", + "longitude_deg": "-70.63777923583984", + "elevation_ft": "2100", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHCM" + }, + { + "id": "39344", + "ident": "SHCP", + "type": "heliport", + "name": "Servicios Aéreos Copters Heliport", + "latitude_deg": "-34.136390686035156", + "longitude_deg": "-70.77055358886719", + "elevation_ft": "1509", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Rancagua", + "scheduled_service": "no", + "gps_code": "SHCP" + }, + { + "id": "39345", + "ident": "SHCY", + "type": "heliport", + "name": "Hospital de Coyhaique Heliport", + "latitude_deg": "-45.56888961791992", + "longitude_deg": "-72.07555389404297", + "elevation_ft": "915", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Coyhaique", + "scheduled_service": "no", + "gps_code": "SHCY" + }, + { + "id": "39346", + "ident": "SHDG", + "type": "heliport", + "name": "Batería Dungenes Nº 1 Heliport", + "latitude_deg": "-52.38083267211914", + "longitude_deg": "-68.43138885498047", + "elevation_ft": "25", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Magallanes", + "scheduled_service": "no", + "gps_code": "SHDG" + }, + { + "id": "39347", + "ident": "SHDN", + "type": "heliport", + "name": "Daniel 1 Heliport", + "latitude_deg": "-52.364723205566406", + "longitude_deg": "-68.76499938964844", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Magallanes", + "scheduled_service": "no", + "gps_code": "SHDN" + }, + { + "id": "39348", + "ident": "SHDO", + "type": "heliport", + "name": "Valle Nevado Heliport", + "latitude_deg": "-33.363887786865234", + "longitude_deg": "-70.25166320800781", + "elevation_ft": "9858", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Farellones", + "scheduled_service": "no", + "gps_code": "SHDO" + }, + { + "id": "39349", + "ident": "SHDP", + "type": "heliport", + "name": "Del Pacifico Heliport", + "latitude_deg": "-38.75416564941406", + "longitude_deg": "-72.80249786376953", + "elevation_ft": "200", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Temuco", + "scheduled_service": "no", + "gps_code": "SHDP" + }, + { + "id": "332835", + "ident": "SHEB", + "type": "heliport", + "name": "Ejército Bicentenario Helipad", + "latitude_deg": "-33.457784", + "longitude_deg": "-70.657424", + "elevation_ft": "1821", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHEB" + }, + { + "id": "39350", + "ident": "SHEC", + "type": "heliport", + "name": "Edificio Itaú Helipad", + "latitude_deg": "-33.416555", + "longitude_deg": "-70.593563", + "elevation_ft": "2270", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHEC", + "keywords": "Edificio BankBoston" + }, + { + "id": "39351", + "ident": "SHEE", + "type": "heliport", + "name": "Esmeralda Heliport", + "latitude_deg": "-35.720001220703125", + "longitude_deg": "-71.50971984863281", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Yerbas Buenas", + "scheduled_service": "no", + "gps_code": "SHEE" + }, + { + "id": "39352", + "ident": "SHEH", + "type": "heliport", + "name": "Edificio Huidobro Heliport", + "latitude_deg": "-33.40388870239258", + "longitude_deg": "-70.5727767944336", + "elevation_ft": "2470", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHEH" + }, + { + "id": "39353", + "ident": "SHEI", + "type": "heliport", + "name": "Escuela de Investigaciones Policiales Heliport", + "latitude_deg": "-33.45944595336914", + "longitude_deg": "-70.71666717529297", + "elevation_ft": "1608", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHEI" + }, + { + "id": "45087", + "ident": "SHEJ", + "type": "heliport", + "name": "Cuartel Gral. I División De Ejercito Heliport", + "latitude_deg": "-23.6825", + "longitude_deg": "-70.413889", + "elevation_ft": "124", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AN", + "municipality": "Antofagasta", + "scheduled_service": "no", + "gps_code": "SHEJ" + }, + { + "id": "39354", + "ident": "SHEM", + "type": "heliport", + "name": "El Mercurio Heliport", + "latitude_deg": "-33.38111114501953", + "longitude_deg": "-70.59583282470703", + "elevation_ft": "2247", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHEM" + }, + { + "id": "39355", + "ident": "SHEQ", + "type": "heliport", + "name": "El Conquistador Heliport", + "latitude_deg": "-33.37055587768555", + "longitude_deg": "-70.65055847167969", + "elevation_ft": "1670", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHEQ" + }, + { + "id": "39356", + "ident": "SHES", + "type": "heliport", + "name": "Eso Heliport", + "latitude_deg": "-24.638334274291992", + "longitude_deg": "-70.38471984863281", + "elevation_ft": "7861", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AN", + "municipality": "Antofagasta", + "scheduled_service": "no", + "gps_code": "SHES" + }, + { + "id": "39357", + "ident": "SHET", + "type": "heliport", + "name": "San Esteban Heliport", + "latitude_deg": "-35.70222091674805", + "longitude_deg": "-71.57221984863281", + "elevation_ft": "541", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-ML", + "municipality": "Yerbas Buenas", + "scheduled_service": "no", + "gps_code": "SHET" + }, + { + "id": "45088", + "ident": "SHFA", + "type": "heliport", + "name": "Los Cerrillos Military Heliport", + "latitude_deg": "-33.496389", + "longitude_deg": "-70.695278", + "elevation_ft": "1703", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHFA" + }, + { + "id": "39358", + "ident": "SHFE", + "type": "heliport", + "name": "Hospital San Camilo Heliport", + "latitude_deg": "-32.74833297729492", + "longitude_deg": "-70.70999908447266", + "elevation_ft": "2155", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "San Felipe", + "scheduled_service": "no", + "gps_code": "SHFE" + }, + { + "id": "39359", + "ident": "SHFR", + "type": "heliport", + "name": "San Francisco Heliport", + "latitude_deg": "-34.15972137451172", + "longitude_deg": "-71.75166320800781", + "elevation_ft": "935", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Litueche", + "scheduled_service": "no", + "gps_code": "SHFR" + }, + { + "id": "39360", + "ident": "SHGA", + "type": "heliport", + "name": "Gral. Humberto Arriagada Heliport", + "latitude_deg": "-33.4474983215332", + "longitude_deg": "-70.60694122314453", + "elevation_ft": "1903", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHGA" + }, + { + "id": "39361", + "ident": "SHGE", + "type": "heliport", + "name": "Gertrudis Echeñique Heliport", + "latitude_deg": "-33.413612365722656", + "longitude_deg": "-70.5897216796875", + "elevation_ft": "2270", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHGE" + }, + { + "id": "45089", + "ident": "SHGR", + "type": "heliport", + "name": "Edificio Corpgroup Heliport", + "latitude_deg": "-33.404444", + "longitude_deg": "-70.573056", + "elevation_ft": "2448", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Las Condes", + "scheduled_service": "no", + "gps_code": "SHGR" + }, + { + "id": "39362", + "ident": "SHHC", + "type": "heliport", + "name": "Hospital Clínico Regional de Concepción Heliport", + "latitude_deg": "-36.82083511352539", + "longitude_deg": "-73.03500366210938", + "elevation_ft": "151", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Concepcion", + "scheduled_service": "no", + "gps_code": "SHHC" + }, + { + "id": "39363", + "ident": "SHHE", + "type": "heliport", + "name": "Helicopters Heliport", + "latitude_deg": "-34.21055603027344", + "longitude_deg": "-70.71583557128906", + "elevation_ft": "1837", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Machali", + "scheduled_service": "no", + "gps_code": "SHHE" + }, + { + "id": "39364", + "ident": "SHHF", + "type": "heliport", + "name": "Hospital FACH Heliport", + "latitude_deg": "-33.397124", + "longitude_deg": "-70.545874", + "elevation_ft": "2574", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHHF" + }, + { + "id": "39365", + "ident": "SHHI", + "type": "heliport", + "name": "Hospital de Carabineros Heliport", + "latitude_deg": "-33.417763", + "longitude_deg": "-70.528879", + "elevation_ft": "2426", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHHI", + "keywords": "DIPRECA, Hospital del Imponente" + }, + { + "id": "39366", + "ident": "SHHL", + "type": "heliport", + "name": "Las Condes Heliport", + "latitude_deg": "-33.37329864501953", + "longitude_deg": "-70.52439880371094", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHHL" + }, + { + "id": "39367", + "ident": "SHHM", + "type": "heliport", + "name": "Hospital Militar Heliport", + "latitude_deg": "-33.415279388427734", + "longitude_deg": "-70.60333251953125", + "elevation_ft": "2067", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHHM" + }, + { + "id": "39368", + "ident": "SHHN", + "type": "heliport", + "name": "Hospital Naval Almirante Nef Heliport", + "latitude_deg": "-33.996665954589844", + "longitude_deg": "-71.53583526611328", + "elevation_ft": "200", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Viña Del Mar", + "scheduled_service": "no", + "gps_code": "SHHN" + }, + { + "id": "39369", + "ident": "SHHR", + "type": "heliport", + "name": "Carabineros de Chile Heliport", + "latitude_deg": "-53.15638732910156", + "longitude_deg": "-70.92222595214844", + "elevation_ft": "213", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Punta Arenas", + "scheduled_service": "no", + "gps_code": "SHHR" + }, + { + "id": "39370", + "ident": "SHHS", + "type": "heliport", + "name": "Hospital del Salvador Heliport", + "latitude_deg": "-33.43611145019531", + "longitude_deg": "-70.62110900878906", + "elevation_ft": "1910", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHHS" + }, + { + "id": "39371", + "ident": "SHHV", + "type": "heliport", + "name": "Naval Heliport", + "latitude_deg": "-18.472200393676758", + "longitude_deg": "-70.32060241699219", + "elevation_ft": "12", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AP", + "municipality": "Arica", + "scheduled_service": "no", + "gps_code": "SHHV" + }, + { + "id": "332834", + "ident": "SHIN", + "type": "heliport", + "name": "Clínica Indisa Helipad", + "latitude_deg": "-33.420833", + "longitude_deg": "-70.617778", + "elevation_ft": "2100", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHIN" + }, + { + "id": "39372", + "ident": "SHIQ", + "type": "heliport", + "name": "Cuartel Gral. VI División de Ejercito Heliport", + "latitude_deg": "-20.229999542236328", + "longitude_deg": "-70.1449966430664", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-TA", + "municipality": "Iquique", + "scheduled_service": "no", + "gps_code": "SHIQ" + }, + { + "id": "45090", + "ident": "SHIS", + "type": "heliport", + "name": "Isidora 3000 Heliport", + "latitude_deg": "-33.414011", + "longitude_deg": "-70.598112", + "elevation_ft": "2510", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Las Condes", + "scheduled_service": "no", + "gps_code": "SHIS" + }, + { + "id": "39373", + "ident": "SHJO", + "type": "heliport", + "name": "Hospital San José Heliport", + "latitude_deg": "-33.40861129760742", + "longitude_deg": "-70.6522216796875", + "elevation_ft": "1868", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHJO" + }, + { + "id": "39374", + "ident": "SHKI", + "type": "heliport", + "name": "Kipreos Heliport", + "latitude_deg": "-33.56027603149414", + "longitude_deg": "-70.74444580078125", + "elevation_ft": "1575", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHKI" + }, + { + "id": "39375", + "ident": "SHLA", + "type": "heliport", + "name": "Las Americas Heliport", + "latitude_deg": "-33.43583297729492", + "longitude_deg": "-70.6433334350586", + "elevation_ft": "2126", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHLA" + }, + { + "id": "39376", + "ident": "SHLC", + "type": "heliport", + "name": "Lan Courier Heliport", + "latitude_deg": "-33.38389", + "longitude_deg": "-70.750556", + "elevation_ft": "1565", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHLC" + }, + { + "id": "39377", + "ident": "SHLP", + "type": "heliport", + "name": "La Parva Heliport", + "latitude_deg": "-33.328887939453125", + "longitude_deg": "-70.28333282470703", + "elevation_ft": "9080", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Farellones", + "scheduled_service": "no", + "gps_code": "SHLP" + }, + { + "id": "39378", + "ident": "SHLS", + "type": "heliport", + "name": "Las Salinas Heliport", + "latitude_deg": "-32.99583435058594", + "longitude_deg": "-71.54722595214844", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Viña Del Mar", + "scheduled_service": "no", + "gps_code": "SHLS" + }, + { + "id": "39379", + "ident": "SHMA", + "type": "heliport", + "name": "Clínica Santa María Heliport", + "latitude_deg": "-33.432220458984375", + "longitude_deg": "-70.62833404541016", + "elevation_ft": "2028", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHMA" + }, + { + "id": "39380", + "ident": "SHMB", + "type": "heliport", + "name": "Mercedez Benz Heliport", + "latitude_deg": "-33.461666107177734", + "longitude_deg": "-70.7147216796875", + "elevation_ft": "1617", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHMB" + }, + { + "id": "39381", + "ident": "SHMD", + "type": "heliport", + "name": "Ministerio de Defensa Nacional Heliport", + "latitude_deg": "-33.43527603149414", + "longitude_deg": "-70.63805389404297", + "elevation_ft": "2123", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHMD" + }, + { + "id": "332837", + "ident": "SHME", + "type": "heliport", + "name": "La Cabaña Heliport", + "latitude_deg": "-33.974615", + "longitude_deg": "-71.388481", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "San Pedro", + "scheduled_service": "no", + "gps_code": "SHME" + }, + { + "id": "39382", + "ident": "SHMS", + "type": "heliport", + "name": "Mutual de Seguridad Heliport", + "latitude_deg": "-33.45805740356445", + "longitude_deg": "-70.69999694824219", + "elevation_ft": "1650", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHMS" + }, + { + "id": "39383", + "ident": "SHNC", + "type": "heliport", + "name": "Catalina Norte 1 Heliport", + "latitude_deg": "-52.5636100769043", + "longitude_deg": "-68.67555236816406", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Punta Arenas", + "scheduled_service": "no", + "gps_code": "SHNC" + }, + { + "id": "39384", + "ident": "SHNL", + "type": "heliport", + "name": "Nueva de Lyon Heliport", + "latitude_deg": "-33.421377", + "longitude_deg": "-70.61059", + "elevation_ft": "2201", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHNL" + }, + { + "id": "39385", + "ident": "SHNO", + "type": "heliport", + "name": "Catalina Norte 2 Heliport", + "latitude_deg": "-52.575279235839844", + "longitude_deg": "-69.66361236572266", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Punta Arenas", + "scheduled_service": "no", + "gps_code": "SHNO" + }, + { + "id": "39386", + "ident": "SHNZ", + "type": "heliport", + "name": "Nazareno Heliport", + "latitude_deg": "-33.65277862548828", + "longitude_deg": "-70.5272216796875", + "elevation_ft": "2822", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Pirque", + "scheduled_service": "no", + "gps_code": "SHNZ" + }, + { + "id": "45091", + "ident": "SHOT", + "type": "heliport", + "name": "Santa Rosa De Tabalí Heliport", + "latitude_deg": "-30.679444", + "longitude_deg": "-71.408611", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-CO", + "municipality": "Ovalle", + "scheduled_service": "no", + "gps_code": "SHOT" + }, + { + "id": "39387", + "ident": "SHOV", + "type": "heliport", + "name": "Lo Ovalle Heliport", + "latitude_deg": "-33.250831604003906", + "longitude_deg": "-71.36833190917969", + "elevation_ft": "919", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Casablanca", + "scheduled_service": "no", + "gps_code": "SHOV" + }, + { + "id": "332836", + "ident": "SHPD", + "type": "heliport", + "name": "Titanium Heliport", + "latitude_deg": "-33.413156", + "longitude_deg": "-70.603804", + "elevation_ft": "2727", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHPD" + }, + { + "id": "39388", + "ident": "SHPE", + "type": "heliport", + "name": "Pelluco Heliport", + "latitude_deg": "-41.48555374145508", + "longitude_deg": "-72.90277862548828", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Puerto Montt", + "scheduled_service": "no", + "gps_code": "SHPE" + }, + { + "id": "348808", + "ident": "SHPM", + "type": "heliport", + "name": "Lago La Paloma Heliport", + "latitude_deg": "-45.922804", + "longitude_deg": "-72.146251", + "elevation_ft": "351", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AI", + "municipality": "Coyahique", + "scheduled_service": "no", + "gps_code": "SHPM" + }, + { + "id": "39389", + "ident": "SHPP", + "type": "heliport", + "name": "Papudo Heliport", + "latitude_deg": "-32.50027847290039", + "longitude_deg": "-71.45916748046875", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Papudo", + "scheduled_service": "no", + "gps_code": "SHPP" + }, + { + "id": "39390", + "ident": "SHPT", + "type": "heliport", + "name": "Portillo Heliport", + "latitude_deg": "-32.836387634277344", + "longitude_deg": "-70.13111114501953", + "elevation_ft": "9000", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Los Andes", + "scheduled_service": "no", + "gps_code": "SHPT" + }, + { + "id": "39391", + "ident": "SHPU", + "type": "heliport", + "name": "Punta Catalina Heliport", + "latitude_deg": "-52.545833587646484", + "longitude_deg": "-68.75833129882812", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Punta Catalina", + "scheduled_service": "no", + "gps_code": "SHPU" + }, + { + "id": "39392", + "ident": "SHQN", + "type": "heliport", + "name": "Quinn Heliport", + "latitude_deg": "-39.852500915527344", + "longitude_deg": "-73.2572021484375", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LR", + "municipality": "Valdivia", + "scheduled_service": "no", + "gps_code": "SHQN" + }, + { + "id": "39393", + "ident": "SHRB", + "type": "heliport", + "name": "Rodelbahn Heliport", + "latitude_deg": "-33.45916748046875", + "longitude_deg": "-70.51721954345703", + "elevation_ft": "2789", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHRB" + }, + { + "id": "45092", + "ident": "SHRE", + "type": "heliport", + "name": "Jose Miguel Carrera Heliport", + "latitude_deg": "-33.441389", + "longitude_deg": "-70.655", + "elevation_ft": "2034", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHRE" + }, + { + "id": "39394", + "ident": "SHRP", + "type": "heliport", + "name": "Rapel Heliport", + "latitude_deg": "-34.21277618408203", + "longitude_deg": "-71.45305633544922", + "elevation_ft": "394", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LI", + "municipality": "Las Cabras", + "scheduled_service": "no", + "gps_code": "SHRP" + }, + { + "id": "39395", + "ident": "SHSB", + "type": "heliport", + "name": "Cerro Sombrero Heliport", + "latitude_deg": "-52.766666412353516", + "longitude_deg": "-69.28888702392578", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Magallanes", + "scheduled_service": "no", + "gps_code": "SHSB" + }, + { + "id": "39396", + "ident": "SHSC", + "type": "heliport", + "name": "Santiago Centro Heliport", + "latitude_deg": "-33.43916702270508", + "longitude_deg": "-70.64805603027344", + "elevation_ft": "2083", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHSC" + }, + { + "id": "39397", + "ident": "SHSD", + "type": "heliport", + "name": "Sonda Helipad", + "latitude_deg": "-33.437552", + "longitude_deg": "-70.655898", + "elevation_ft": "2001", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHSD" + }, + { + "id": "39398", + "ident": "SHSE", + "type": "heliport", + "name": "Posesión Heliport", + "latitude_deg": "-52.249395", + "longitude_deg": "-68.936248", + "elevation_ft": "76", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Posesion", + "scheduled_service": "no", + "gps_code": "SHSE" + }, + { + "id": "39399", + "ident": "SHSI", + "type": "heliport", + "name": "Posesión 5 Heliport", + "latitude_deg": "-52.268333435058594", + "longitude_deg": "-69.07333374023438", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Posesion", + "scheduled_service": "no", + "gps_code": "SHSI" + }, + { + "id": "348845", + "ident": "SHSJ", + "type": "heliport", + "name": "Hospital San José Helipad", + "latitude_deg": "-40.58905", + "longitude_deg": "-73.127543", + "elevation_ft": "303", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-LL", + "municipality": "Osorno", + "scheduled_service": "no", + "gps_code": "SHSJ" + }, + { + "id": "39400", + "ident": "SHSK", + "type": "heliport", + "name": "Skua 1 Heliport", + "latitude_deg": "-52.4091682434082", + "longitude_deg": "-68.7852783203125", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Punta Catalina", + "scheduled_service": "no", + "gps_code": "SHSK" + }, + { + "id": "39401", + "ident": "SHSM", + "type": "heliport", + "name": "Edificio Torre Santa María Helipad", + "latitude_deg": "-33.423132", + "longitude_deg": "-70.62236", + "elevation_ft": "2329", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHSM" + }, + { + "id": "348844", + "ident": "SHSN", + "type": "heliport", + "name": "Hospital Regional de Copiapó San José del Carmen Helipad", + "latitude_deg": "-27.373597", + "longitude_deg": "-70.322049", + "elevation_ft": "1404", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AT", + "municipality": "Copiapó", + "scheduled_service": "no", + "gps_code": "SHSN" + }, + { + "id": "39402", + "ident": "SHSO", + "type": "heliport", + "name": "Hospital Dr Luis Tisné Brousse Helipad", + "latitude_deg": "-33.500187", + "longitude_deg": "-70.57894", + "elevation_ft": "2083", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHSO", + "home_link": "http://www.hsoriente.cl/", + "keywords": "Hospital Santiago Oriente" + }, + { + "id": "332838", + "ident": "SHSP", + "type": "heliport", + "name": "Moneda Bicentenario Heliport", + "latitude_deg": "-33.442778", + "longitude_deg": "-70.655", + "elevation_ft": "1962", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHSP" + }, + { + "id": "39403", + "ident": "SHSR", + "type": "heliport", + "name": "Edificio Torre San Ramón Heliport", + "latitude_deg": "-33.41666793823242", + "longitude_deg": "-70.60388946533203", + "elevation_ft": "2133", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHSR" + }, + { + "id": "39404", + "ident": "SHSS", + "type": "heliport", + "name": "Hospital Regional de Temuco Heliport", + "latitude_deg": "-38.73583221435547", + "longitude_deg": "-72.59833526611328", + "elevation_ft": "410", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Temuco", + "scheduled_service": "no", + "gps_code": "SHSS" + }, + { + "id": "39405", + "ident": "SHST", + "type": "heliport", + "name": "Santiago Heliport", + "latitude_deg": "-33.382092", + "longitude_deg": "-70.625616", + "elevation_ft": "1929", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHST", + "home_link": "https://www.helipuertosantiago.cl" + }, + { + "id": "39406", + "ident": "SHSU", + "type": "heliport", + "name": "Skua 4 Heliport", + "latitude_deg": "-52.375831604003906", + "longitude_deg": "-68.78861236572266", + "elevation_ft": "69", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-MA", + "municipality": "Punta Catalina", + "scheduled_service": "no", + "gps_code": "SHSU" + }, + { + "id": "39407", + "ident": "SHTC", + "type": "heliport", + "name": "Edificio Corporativo CTC Heliport", + "latitude_deg": "-33.436944", + "longitude_deg": "-70.632525", + "elevation_ft": "2389", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHTC" + }, + { + "id": "39408", + "ident": "SHTI", + "type": "heliport", + "name": "Torre Interamericana Heliport", + "latitude_deg": "-33.440636", + "longitude_deg": "-70.645823", + "elevation_ft": "2185", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHTI" + }, + { + "id": "39409", + "ident": "SHTL", + "type": "heliport", + "name": "Torre Ligure Helipad", + "latitude_deg": "-36.827656", + "longitude_deg": "-73.052527", + "elevation_ft": "182", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Concepcion", + "scheduled_service": "no", + "gps_code": "SHTL" + }, + { + "id": "39410", + "ident": "SHTO", + "type": "heliport", + "name": "Subteniente Marcelo Topali Heliport", + "latitude_deg": "-33.43888854980469", + "longitude_deg": "-70.63500213623047", + "elevation_ft": "2121", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHTO" + }, + { + "id": "39411", + "ident": "SHTR", + "type": "heliport", + "name": "Sotracer Heliport", + "latitude_deg": "-37.478611", + "longitude_deg": "-72.326668", + "elevation_ft": "486", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "SHTR" + }, + { + "id": "348842", + "ident": "SHTS", + "type": "heliport", + "name": "Alto Trapenses Heliport", + "latitude_deg": "-33.32225", + "longitude_deg": "-70.590849", + "elevation_ft": "4101", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Lo Barnechea", + "scheduled_service": "no", + "gps_code": "SHTS" + }, + { + "id": "348841", + "ident": "SHUC", + "type": "heliport", + "name": "Clinica San Carlos de Apoquindo Heliport", + "latitude_deg": "-33.40064", + "longitude_deg": "-70.507904", + "elevation_ft": "3028", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Las Condes", + "scheduled_service": "no", + "gps_code": "SHUC" + }, + { + "id": "348840", + "ident": "SHUE", + "type": "heliport", + "name": "Dinahue Heliport", + "latitude_deg": "-36.770833", + "longitude_deg": "-73.106667", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-BI", + "municipality": "Talcahuano", + "scheduled_service": "no", + "gps_code": "SHUE" + }, + { + "id": "45093", + "ident": "SHVI", + "type": "heliport", + "name": "Villarica Park Lake Heliport", + "latitude_deg": "-39.301944", + "longitude_deg": "-72.088889", + "elevation_ft": "804", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-AR", + "municipality": "Villarrica", + "scheduled_service": "no", + "gps_code": "SHVI" + }, + { + "id": "45094", + "ident": "SHVM", + "type": "heliport", + "name": "Viña Matetic Heliport", + "latitude_deg": "-33.469444", + "longitude_deg": "-71.399167", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-VS", + "municipality": "Cartagena", + "scheduled_service": "no", + "gps_code": "SHVM" + }, + { + "id": "39412", + "ident": "SHWT", + "type": "heliport", + "name": "World Trade Center Heliport", + "latitude_deg": "-33.41642", + "longitude_deg": "-70.605274", + "elevation_ft": "2261", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SHWT" + }, + { + "id": "39413", + "ident": "SHYA", + "type": "heliport", + "name": "Sumaya Heliport", + "latitude_deg": "-33.676666259765625", + "longitude_deg": "-70.54722595214844", + "elevation_ft": "2244", + "continent": "SA", + "iso_country": "CL", + "iso_region": "CL-RM", + "municipality": "Pirque", + "scheduled_service": "no", + "gps_code": "SHYA" + }, + { + "id": "44904", + "ident": "SI-0001", + "type": "small_airport", + "name": "Dobova Airfield", + "latitude_deg": "45.887699127197266", + "longitude_deg": "15.650099754333496", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-009", + "municipality": "Mihalovec", + "scheduled_service": "no" + }, + { + "id": "44905", + "ident": "SI-0002", + "type": "small_airport", + "name": "Mostje Lendava Airfield", + "latitude_deg": "46.599800109899995", + "longitude_deg": "16.431900024399997", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-059", + "municipality": "Mostje", + "scheduled_service": "no" + }, + { + "id": "44909", + "ident": "SI-0003", + "type": "small_airport", + "name": "Krapje Veržej Airfield", + "latitude_deg": "46.5726852417", + "longitude_deg": "16.1909732819", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-188", + "scheduled_service": "no" + }, + { + "id": "44910", + "ident": "SI-0004", + "type": "small_airport", + "name": "Moravske Toplice 'Marič' Airfield", + "latitude_deg": "46.6821559679", + "longitude_deg": "16.2037450075", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-078", + "scheduled_service": "no" + }, + { + "id": "44970", + "ident": "SI-0005", + "type": "small_airport", + "name": "Prilozje - Metlika", + "latitude_deg": "45.5910082806", + "longitude_deg": "15.2611255646", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-073", + "scheduled_service": "no" + }, + { + "id": "44971", + "ident": "SI-0006", + "type": "small_airport", + "name": "Ula Novi Lazi", + "latitude_deg": "45.571455", + "longitude_deg": "14.857163", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-048", + "scheduled_service": "no" + }, + { + "id": "44979", + "ident": "SI-0007", + "type": "small_airport", + "name": "Cerkvenjak Airfield", + "latitude_deg": "46.5481179719", + "longitude_deg": "15.915069580099999", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-153", + "scheduled_service": "no" + }, + { + "id": "44984", + "ident": "SI-0008", + "type": "closed", + "name": "Močna Jurkovič Airfield", + "latitude_deg": "46.567801", + "longitude_deg": "15.766969", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-058", + "municipality": "Močna", + "scheduled_service": "no" + }, + { + "id": "309205", + "ident": "SI-0009", + "type": "small_airport", + "name": "Imeno Field", + "latitude_deg": "46.12669", + "longitude_deg": "15.603708", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-124", + "scheduled_service": "no" + }, + { + "id": "310722", + "ident": "SI-0010", + "type": "small_airport", + "name": "Kamnik Stol Airfield", + "latitude_deg": "46.196389", + "longitude_deg": "14.583333", + "elevation_ft": "1145", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-043", + "municipality": "Kamnik", + "scheduled_service": "no", + "home_link": "http://vzletisce-kamnik.si/", + "keywords": "Vzletišče Kamnik" + }, + { + "id": "310723", + "ident": "SI-0011", + "type": "small_airport", + "name": "Sentvid pri Sticni field", + "latitude_deg": "45.944088", + "longitude_deg": "14.850393", + "elevation_ft": "1016", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-039", + "municipality": "Sentvid pri Sticni", + "scheduled_service": "no" + }, + { + "id": "312390", + "ident": "SI-0012", + "type": "small_airport", + "name": "Pobrezje UL field", + "latitude_deg": "46.304296", + "longitude_deg": "14.904525", + "elevation_ft": "1220", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-083", + "municipality": "Zg.Pobrezje", + "scheduled_service": "no", + "home_link": "http://www.drustvo-letalcev-zsd.si/?page=vzletisce" + }, + { + "id": "312415", + "ident": "SI-0013", + "type": "small_airport", + "name": "Kaplja Vas - Prebold UL field", + "latitude_deg": "46.242379", + "longitude_deg": "15.07335", + "elevation_ft": "908", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-174", + "municipality": "Kaplja Vas", + "scheduled_service": "no" + }, + { + "id": "312417", + "ident": "SI-0014", + "type": "small_airport", + "name": "Andoljšek - Ribnica Ultralight Field", + "latitude_deg": "45.743935", + "longitude_deg": "14.713", + "elevation_ft": "1637", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-104", + "municipality": "Ribnica", + "scheduled_service": "no" + }, + { + "id": "312421", + "ident": "SI-0015", + "type": "small_airport", + "name": "Radenci Airfield", + "latitude_deg": "46.628605", + "longitude_deg": "16.046244", + "elevation_ft": "712", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-100", + "scheduled_service": "no" + }, + { + "id": "313055", + "ident": "SI-0016", + "type": "small_airport", + "name": "Gorica-Smartno UL field", + "latitude_deg": "46.27079", + "longitude_deg": "15.23875", + "elevation_ft": "829", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-011", + "municipality": "Gorica pri Smartnem v.R.d.", + "scheduled_service": "no" + }, + { + "id": "313059", + "ident": "SI-0017", + "type": "small_airport", + "name": "ZG.Kostrivnica UL field", + "latitude_deg": "46.258411", + "longitude_deg": "15.584676", + "elevation_ft": "485", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-124", + "municipality": "Rog.Slatina", + "scheduled_service": "no" + }, + { + "id": "313535", + "ident": "SI-0018", + "type": "small_airport", + "name": "Podpeč field", + "latitude_deg": "45.973447", + "longitude_deg": "14.412345", + "elevation_ft": "945", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-061", + "scheduled_service": "no" + }, + { + "id": "316383", + "ident": "SI-0019", + "type": "small_airport", + "name": "Vzletišče Črnotiče Airfield", + "latitude_deg": "45.557695", + "longitude_deg": "13.912049", + "elevation_ft": "1434", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-050", + "municipality": "Črnotiče", + "scheduled_service": "no" + }, + { + "id": "319705", + "ident": "SI-0020", + "type": "small_airport", + "name": "Sostro private airstrip", + "latitude_deg": "46.0431498", + "longitude_deg": "14.6153076", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-061", + "municipality": "Sostro", + "scheduled_service": "no" + }, + { + "id": "319829", + "ident": "SI-0021", + "type": "small_airport", + "name": "Vzletišče Cerknica - Marof", + "latitude_deg": "45.7777493", + "longitude_deg": "14.3881767", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-013", + "municipality": "Cerknica", + "scheduled_service": "no", + "keywords": "Marof" + }, + { + "id": "319830", + "ident": "SI-0022", + "type": "small_airport", + "name": "Vzletišče Hude Ravne - Dole pri Litiji", + "latitude_deg": "46.0087081", + "longitude_deg": "15.0380194", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-060", + "municipality": "Hude Ravne", + "scheduled_service": "no", + "keywords": "Dole pri Litiji" + }, + { + "id": "319831", + "ident": "SI-0023", + "type": "small_airport", + "name": "Vzletišče Libeliče", + "latitude_deg": "46.623608", + "longitude_deg": "14.955036", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-025", + "municipality": "Libeliče", + "scheduled_service": "no", + "keywords": "Aviofun" + }, + { + "id": "319832", + "ident": "SI-0024", + "type": "small_airport", + "name": "Vzletišče Zagorje ob Savi", + "latitude_deg": "46.1428047", + "longitude_deg": "14.9992623", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-142", + "municipality": "Zagorje ob Savi", + "scheduled_service": "no" + }, + { + "id": "346855", + "ident": "SI-0025", + "type": "small_airport", + "name": "Prekopa Airstrip", + "latitude_deg": "46.25017", + "longitude_deg": "14.99706", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-189", + "scheduled_service": "no" + }, + { + "id": "320997", + "ident": "SI-0026", + "type": "small_airport", + "name": "Dol pri Ljubljani UL", + "latitude_deg": "46.0896005", + "longitude_deg": "14.6470859", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-061", + "scheduled_service": "no" + }, + { + "id": "352431", + "ident": "SI-0027", + "type": "small_airport", + "name": "Trebnje Airfield", + "latitude_deg": "45.9122", + "longitude_deg": "15.00256", + "continent": "EU", + "iso_country": "SI", + "iso_region": "SI-130", + "scheduled_service": "no" + }, + { + "id": "352922", + "ident": "SI22", + "type": "small_airport", + "name": "Fazenda Santa Helena Airport", + "latitude_deg": "-18.303983", + "longitude_deg": "-55.651875", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SI22", + "local_code": "MS0482" + }, + { + "id": "353275", + "ident": "SI23", + "type": "small_airport", + "name": "Fazenda Água Fina Airport", + "latitude_deg": "-14.504167", + "longitude_deg": "-55.492778", + "elevation_ft": "1214", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Rosário Oeste", + "scheduled_service": "no", + "gps_code": "SI23", + "local_code": "MT0797" + }, + { + "id": "352939", + "ident": "SI24", + "type": "small_airport", + "name": "Fazenda Cambará Airstrip", + "latitude_deg": "-20.138056", + "longitude_deg": "-52.978333", + "elevation_ft": "1234", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Água Clara", + "scheduled_service": "no", + "gps_code": "SI24", + "local_code": "MS0605" + }, + { + "id": "355979", + "ident": "SI25", + "type": "small_airport", + "name": "Pista Pavarina", + "latitude_deg": "-5.98", + "longitude_deg": "-58.539722", + "elevation_ft": "430", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Maués", + "scheduled_service": "no", + "gps_code": "SI25", + "local_code": "AM0105" + }, + { + "id": "353280", + "ident": "SI26", + "type": "small_airport", + "name": "Fazenda Nova Esperança Airport", + "latitude_deg": "-9.008245", + "longitude_deg": "-50.997537", + "elevation_ft": "955", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santana do Araguaia", + "scheduled_service": "no", + "gps_code": "SI26", + "local_code": "PA0312" + }, + { + "id": "352941", + "ident": "SI27", + "type": "small_airport", + "name": "SS Airstrip", + "latitude_deg": "-18.622638", + "longitude_deg": "-54.712653", + "elevation_ft": "850", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Verde de Mato Grosso", + "scheduled_service": "no", + "gps_code": "SI27", + "local_code": "MS0593" + }, + { + "id": "353310", + "ident": "SI28", + "type": "heliport", + "name": "Masterboi Heliport", + "latitude_deg": "-8.847778", + "longitude_deg": "-36.166944", + "elevation_ft": "2083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Canhotinho", + "scheduled_service": "no", + "gps_code": "SI28", + "local_code": "PE0101" + }, + { + "id": "353311", + "ident": "SI29", + "type": "small_airport", + "name": "Fazenda Vereda Airport", + "latitude_deg": "-17.276944", + "longitude_deg": "-45.3525", + "elevation_ft": "2221", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Buritizeiro", + "scheduled_service": "no", + "gps_code": "SI29", + "local_code": "MG0526" + }, + { + "id": "353314", + "ident": "SI2A", + "type": "small_airport", + "name": "Canduá II Airport", + "latitude_deg": "-15.841423", + "longitude_deg": "-46.510593", + "elevation_ft": "3025", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Unaí", + "scheduled_service": "no", + "gps_code": "SI2A", + "local_code": "MG0509" + }, + { + "id": "353323", + "ident": "SI2B", + "type": "small_airport", + "name": "Fazenda Conquista Airport", + "latitude_deg": "-5.544444", + "longitude_deg": "-42.828333", + "elevation_ft": "564", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Curralinhos", + "scheduled_service": "no", + "gps_code": "SI2B", + "local_code": "PI0088" + }, + { + "id": "354148", + "ident": "SI2C", + "type": "small_airport", + "name": "Fazenda Recanto Airport", + "latitude_deg": "-17.491189", + "longitude_deg": "-54.162823", + "elevation_ft": "2264", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Itiquira", + "scheduled_service": "no", + "gps_code": "SI2C", + "local_code": "MT0759" + }, + { + "id": "353326", + "ident": "SI2D", + "type": "small_airport", + "name": "Aldeia Yawa Airport", + "latitude_deg": "1.353298", + "longitude_deg": "-56.130524", + "elevation_ft": "981", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Oriximiná", + "scheduled_service": "no", + "gps_code": "SI2D", + "local_code": "PA0283" + }, + { + "id": "353461", + "ident": "SI2F", + "type": "small_airport", + "name": "Fazenda Tarumã Airport", + "latitude_deg": "-8.649806", + "longitude_deg": "-50.874767", + "elevation_ft": "873", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santa Maria das Barreiras", + "scheduled_service": "no", + "gps_code": "SI2F", + "local_code": "PA0326" + }, + { + "id": "353462", + "ident": "SI2G", + "type": "small_airport", + "name": "Fazenda São João Airport", + "latitude_deg": "-9.725556", + "longitude_deg": "-49.779444", + "elevation_ft": "607", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Marianópolis do Tocantins", + "scheduled_service": "no", + "gps_code": "SI2G", + "local_code": "TO0107" + }, + { + "id": "353704", + "ident": "SI2H", + "type": "small_airport", + "name": "Aldeia Pedra da Onça Airport", + "latitude_deg": "1.43968", + "longitude_deg": "-55.659356", + "elevation_ft": "1027", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Óbidos", + "scheduled_service": "no", + "gps_code": "SI2H", + "local_code": "PA0252" + }, + { + "id": "353706", + "ident": "SI2J", + "type": "small_airport", + "name": "Karla Sophya Airport", + "latitude_deg": "-21.950907", + "longitude_deg": "-57.915587", + "elevation_ft": "246", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SI2J", + "local_code": "MS0584" + }, + { + "id": "353708", + "ident": "SI2K", + "type": "small_airport", + "name": "Fazenda Bom Jesus Airport", + "latitude_deg": "-1.697482", + "longitude_deg": "-46.769528", + "elevation_ft": "285", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Viseu", + "scheduled_service": "no", + "gps_code": "SI2K", + "local_code": "PA0329" + }, + { + "id": "353710", + "ident": "SI2L", + "type": "heliport", + "name": "CBF Heliport", + "latitude_deg": "-22.449722", + "longitude_deg": "-42.977222", + "elevation_ft": "2949", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Teresópolis", + "scheduled_service": "no", + "gps_code": "SI2L", + "local_code": "RJ0368", + "keywords": "Granja Comary" + }, + { + "id": "353712", + "ident": "SI2M", + "type": "heliport", + "name": "Residencial Fornagieri Heliport", + "latitude_deg": "-23.099955", + "longitude_deg": "-52.47032", + "elevation_ft": "1503", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Paranavaí", + "scheduled_service": "no", + "gps_code": "SI2M", + "local_code": "PR0210" + }, + { + "id": "353714", + "ident": "SI2N", + "type": "small_airport", + "name": "Dom Bill Airport", + "latitude_deg": "-16.025008", + "longitude_deg": "-51.720011", + "elevation_ft": "1266", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Montes Claros de Goiás", + "scheduled_service": "no", + "gps_code": "SI2N", + "local_code": "GO0330" + }, + { + "id": "353716", + "ident": "SI2P", + "type": "small_airport", + "name": "Manacá Airport", + "latitude_deg": "-15.638079", + "longitude_deg": "-51.572188", + "elevation_ft": "955", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Jussara", + "scheduled_service": "no", + "gps_code": "SI2P", + "local_code": "GO0337" + }, + { + "id": "353718", + "ident": "SI2Q", + "type": "small_airport", + "name": "Fazenda Vera Cruz do Xingu Airport", + "latitude_deg": "-12.992201", + "longitude_deg": "-52.639757", + "elevation_ft": "1125", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Canarana", + "scheduled_service": "no", + "gps_code": "SI2Q", + "local_code": "MT0711" + }, + { + "id": "353740", + "ident": "SI2R", + "type": "small_airport", + "name": "Fazenda Baguary Airport", + "latitude_deg": "-18.575294", + "longitude_deg": "-57.212387", + "elevation_ft": "308", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SI2R", + "local_code": "MS0592" + }, + { + "id": "353742", + "ident": "SI2S", + "type": "small_airport", + "name": "Fazenda São Jorge Airport", + "latitude_deg": "-11.098286", + "longitude_deg": "-56.470851", + "elevation_ft": "1453", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Canaã do Norte", + "scheduled_service": "no", + "gps_code": "SI2S", + "local_code": "MT0795" + }, + { + "id": "353744", + "ident": "SI2T", + "type": "small_airport", + "name": "José Gilberto Pannunzio Airport", + "latitude_deg": "-19.155455", + "longitude_deg": "-48.390518", + "elevation_ft": "2736", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberlândia", + "scheduled_service": "no", + "gps_code": "SI2T", + "local_code": "MG0519" + }, + { + "id": "353745", + "ident": "SI2U", + "type": "heliport", + "name": "Gois Construtora Heliport.", + "latitude_deg": "-16.068611", + "longitude_deg": "-47.961667", + "elevation_ft": "3524", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Valparaíso de Goiás", + "scheduled_service": "no", + "gps_code": "SI2U", + "local_code": "GO0334" + }, + { + "id": "353747", + "ident": "SI2V", + "type": "small_airport", + "name": "Fazenda Casarin Airport", + "latitude_deg": "-10.531944", + "longitude_deg": "-55.558641", + "elevation_ft": "928", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Colíder", + "scheduled_service": "no", + "gps_code": "SI2V", + "local_code": "MT0774" + }, + { + "id": "353749", + "ident": "SI32", + "type": "small_airport", + "name": "Fazenda Macuco Airport", + "latitude_deg": "-12.102825", + "longitude_deg": "-52.887948", + "elevation_ft": "1040", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Querência", + "scheduled_service": "no", + "gps_code": "SI32", + "local_code": "MT0766" + }, + { + "id": "354312", + "ident": "SI33", + "type": "small_airport", + "name": "Fazenda Boa Sorte Airport", + "latitude_deg": "-11.266389", + "longitude_deg": "-52.323889", + "elevation_ft": "1158", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São Félix do Araguaia", + "scheduled_service": "no", + "gps_code": "SI33", + "local_code": "MT0815" + }, + { + "id": "355931", + "ident": "SI34", + "type": "small_airport", + "name": "Aldeia Xuixuimene Airport", + "latitude_deg": "0.851175", + "longitude_deg": "-54.650278", + "elevation_ft": "1007", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Almeirim", + "scheduled_service": "no", + "gps_code": "SI34", + "local_code": "PA0320" + }, + { + "id": "354188", + "ident": "SI36", + "type": "small_airport", + "name": "Fazenda Lageado Airstrip", + "latitude_deg": "-21.166667", + "longitude_deg": "-53.165278", + "elevation_ft": "1033", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SI36", + "local_code": "MS0554" + }, + { + "id": "353900", + "ident": "SI37", + "type": "small_airport", + "name": "Fazenda Letícia Airport", + "latitude_deg": "-18.784733", + "longitude_deg": "-54.820279", + "elevation_ft": "1234", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Verde de Mato Grosso", + "scheduled_service": "no", + "gps_code": "SI37", + "local_code": "MS0609" + }, + { + "id": "353902", + "ident": "SI38", + "type": "small_airport", + "name": "Aldeia Pururé Airstrip", + "latitude_deg": "0.583874", + "longitude_deg": "-54.209777", + "elevation_ft": "945", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Almeirim", + "scheduled_service": "no", + "gps_code": "SI38", + "local_code": "PA0278" + }, + { + "id": "353937", + "ident": "SI39", + "type": "small_airport", + "name": "Nilo Bicalho Airport", + "latitude_deg": "-17.301743", + "longitude_deg": "-44.250241", + "elevation_ft": "2044", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Francisco Dumont", + "scheduled_service": "no", + "gps_code": "SI39", + "local_code": "MG0535" + }, + { + "id": "353938", + "ident": "SI3A", + "type": "small_airport", + "name": "Fazenda Santa Joana Airports", + "latitude_deg": "-20.181194", + "longitude_deg": "-52.979625", + "elevation_ft": "1430", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Água Clara", + "scheduled_service": "no", + "gps_code": "SI3A", + "local_code": "MS0606" + }, + { + "id": "353939", + "ident": "SI3C", + "type": "small_airport", + "name": "Fazenda Itaúba Airstrip", + "latitude_deg": "-10.458889", + "longitude_deg": "-56.343611", + "elevation_ft": "1266", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alta Floresta", + "scheduled_service": "no", + "gps_code": "SI3C", + "local_code": "MT0780" + }, + { + "id": "354311", + "ident": "SI3D", + "type": "small_airport", + "name": "Rica Airport", + "latitude_deg": "-6.015833", + "longitude_deg": "-58.077222", + "elevation_ft": "495", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Maués", + "scheduled_service": "no", + "gps_code": "SI3D", + "local_code": "AM0104" + }, + { + "id": "353444", + "ident": "SI3E", + "type": "small_airport", + "name": "Fazenda Santa Tereza Airport", + "latitude_deg": "-21.217778", + "longitude_deg": "-56.539167", + "elevation_ft": "1207", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bonito", + "scheduled_service": "no", + "gps_code": "SI3E", + "local_code": "MS0496" + }, + { + "id": "353442", + "ident": "SI3F", + "type": "small_airport", + "name": "Fazenda Eldorado Airstrip", + "latitude_deg": "-21.297685", + "longitude_deg": "-56.286704", + "elevation_ft": "814", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bonito", + "scheduled_service": "no", + "gps_code": "SI3F", + "local_code": "MS0575" + }, + { + "id": "353441", + "ident": "SI3G", + "type": "heliport", + "name": "Fuad Elias Nejm Heliport", + "latitude_deg": "-19.898056", + "longitude_deg": "-44.069444", + "elevation_ft": "2969", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Contagem", + "scheduled_service": "no", + "gps_code": "SI3G", + "local_code": "MG0521" + }, + { + "id": "353439", + "ident": "SI3H", + "type": "heliport", + "name": "Brava Beach Internacional Heliport", + "latitude_deg": "-26.951944", + "longitude_deg": "-48.633056", + "elevation_ft": "56", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Itajaí", + "scheduled_service": "no", + "gps_code": "SI3H", + "local_code": "SC0192" + }, + { + "id": "353437", + "ident": "SI3J", + "type": "heliport", + "name": "AR Telecom Heliport", + "latitude_deg": "-21.513889", + "longitude_deg": "-47.024444", + "elevation_ft": "2162", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itajaí", + "scheduled_service": "no", + "gps_code": "SI3J", + "local_code": "SP1357" + }, + { + "id": "353435", + "ident": "SI3L", + "type": "small_airport", + "name": "Fazenda Nossa Senhora de Fátima Airstrip", + "latitude_deg": "-20.088889", + "longitude_deg": "-53.391667", + "elevation_ft": "1509", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SI3L", + "local_code": "MS0626" + }, + { + "id": "353960", + "ident": "SI3N", + "type": "small_airport", + "name": "Fazenda Plataforma Airport", + "latitude_deg": "-5.253333", + "longitude_deg": "-43.581111", + "elevation_ft": "620", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Matões", + "scheduled_service": "no", + "gps_code": "SI3N", + "local_code": "MA0132" + }, + { + "id": "353962", + "ident": "SI3P", + "type": "small_airport", + "name": "TAF Brasil Airstrip", + "latitude_deg": "-18.948056", + "longitude_deg": "-39.976667", + "elevation_ft": "128", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Jaguaré", + "scheduled_service": "no", + "gps_code": "SI3P", + "local_code": "ES0048" + }, + { + "id": "353964", + "ident": "SI3Q", + "type": "small_airport", + "name": "Fazenda Cristo Rei Airstrip", + "latitude_deg": "-3.560527", + "longitude_deg": "-50.634388", + "elevation_ft": "207", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Pacajá", + "scheduled_service": "no", + "gps_code": "SI3Q", + "local_code": "PA0318" + }, + { + "id": "354005", + "ident": "SI3R", + "type": "small_airport", + "name": "Fazenda Pinna Airstrip", + "latitude_deg": "-12.676389", + "longitude_deg": "-46.211667", + "elevation_ft": "2972", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SI3R", + "local_code": "BA0392" + }, + { + "id": "354006", + "ident": "SI3S", + "type": "heliport", + "name": "Bold Heliport", + "latitude_deg": "-26.441162", + "longitude_deg": "-49.059319", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Jaraguá do Sul", + "scheduled_service": "no", + "gps_code": "SI3S", + "local_code": "SC0201" + }, + { + "id": "354042", + "ident": "SI3T", + "type": "small_airport", + "name": "Fazenda Sankofa Airstrip", + "latitude_deg": "-19.594722", + "longitude_deg": "-53.525556", + "elevation_ft": "1608", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Camapuã", + "scheduled_service": "no", + "gps_code": "SI3T", + "local_code": "MS0631" + }, + { + "id": "354007", + "ident": "SI3U", + "type": "small_airport", + "name": "Fazenda Curral Velho Airport", + "latitude_deg": "-15.424236", + "longitude_deg": "-50.748373", + "elevation_ft": "1132", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Matrinchã", + "scheduled_service": "no", + "gps_code": "SI3U", + "local_code": "GO0305" + }, + { + "id": "354045", + "ident": "SI3V", + "type": "small_airport", + "name": "Fazenda Boa Esperança Airport", + "latitude_deg": "-8.343333", + "longitude_deg": "-44.438611", + "elevation_ft": "1867", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Uruçuí", + "scheduled_service": "no", + "gps_code": "SI3V", + "local_code": "PI0082" + }, + { + "id": "354047", + "ident": "SI42", + "type": "small_airport", + "name": "Fazenda Lagoa Formosa Airport", + "latitude_deg": "-18.855467", + "longitude_deg": "-46.593615", + "elevation_ft": "2835", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Patos de Minas", + "scheduled_service": "no", + "gps_code": "SI42", + "local_code": "MG0527" + }, + { + "id": "354190", + "ident": "SI43", + "type": "small_airport", + "name": "Fazenda Amoreira Airstrip", + "latitude_deg": "-10.834444", + "longitude_deg": "-54.780556", + "elevation_ft": "1145", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Santa Helena", + "scheduled_service": "no", + "gps_code": "SI43", + "local_code": "MT0811" + }, + { + "id": "354191", + "ident": "SI44", + "type": "small_airport", + "name": "Fazenda Três Rodas da Barra Airport", + "latitude_deg": "-11.384096", + "longitude_deg": "-52.499706", + "elevation_ft": "1063", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São Félix do Araguaia", + "scheduled_service": "no", + "gps_code": "SI44", + "local_code": "MT0784" + }, + { + "id": "354193", + "ident": "SI46", + "type": "small_airport", + "name": "Fazenda Primavera Airstrip", + "latitude_deg": "-20.143639", + "longitude_deg": "-47.555832", + "elevation_ft": "3018", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Pedregulho", + "scheduled_service": "no", + "gps_code": "SI46", + "local_code": "SP1368" + }, + { + "id": "354195", + "ident": "SI47", + "type": "small_airport", + "name": "Fazenda Byeta Airport", + "latitude_deg": "-4.722287", + "longitude_deg": "-46.259706", + "elevation_ft": "1253", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Buriticupu", + "scheduled_service": "no", + "gps_code": "SI47", + "local_code": "MA0108" + }, + { + "id": "354253", + "ident": "SI48", + "type": "small_airport", + "name": "Fazenda São José Airport", + "latitude_deg": "-10.043254", + "longitude_deg": "-53.868317", + "elevation_ft": "1142", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Peixoto de Azevedo", + "scheduled_service": "no", + "gps_code": "SI48", + "local_code": "MT0802" + }, + { + "id": "354254", + "ident": "SI49", + "type": "heliport", + "name": "WT Morumbi Helipad", + "latitude_deg": "-23.623569", + "longitude_deg": "-46.701591", + "elevation_ft": "2828", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SI49", + "local_code": "SP1185" + }, + { + "id": "353898", + "ident": "SI4A", + "type": "heliport", + "name": "Asor Sul Connect Heliport", + "latitude_deg": "-29.218889", + "longitude_deg": "-51.171667", + "elevation_ft": "1883", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Caxias do Sul", + "scheduled_service": "no", + "gps_code": "SI4A", + "local_code": "RS0185" + }, + { + "id": "354257", + "ident": "SI4D", + "type": "small_airport", + "name": "Nova Bandeirantes Airport", + "latitude_deg": "-9.845779", + "longitude_deg": "-57.808016", + "elevation_ft": "774", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Bandeirantes", + "scheduled_service": "no", + "gps_code": "SI4D", + "local_code": "MT0808" + }, + { + "id": "354144", + "ident": "SI4F", + "type": "small_airport", + "name": "Solag Aviação Agrícola Airstrip", + "latitude_deg": "-11.283333", + "longitude_deg": "-58.639444", + "elevation_ft": "1293", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juína", + "scheduled_service": "no", + "gps_code": "SI4F", + "local_code": "MT0776" + }, + { + "id": "354142", + "ident": "SI4G", + "type": "heliport", + "name": "Retiro do Chalé Heliport", + "latitude_deg": "-20.205", + "longitude_deg": "-43.985833", + "elevation_ft": "3478", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Brumadinho", + "scheduled_service": "no", + "gps_code": "SI4G", + "local_code": "MG0305" + }, + { + "id": "354141", + "ident": "SI4H", + "type": "small_airport", + "name": "Fazenda Estrela do Norte - Agroterenas Airport", + "latitude_deg": "-13.722581", + "longitude_deg": "-53.092983", + "elevation_ft": "1204", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Água Boa", + "scheduled_service": "no", + "gps_code": "SI4H", + "local_code": "MT0768" + }, + { + "id": "354357", + "ident": "SI4J", + "type": "heliport", + "name": "Raul Saboia Helipad", + "latitude_deg": "-15.853778", + "longitude_deg": "-47.861902", + "elevation_ft": "3327", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SI4J", + "local_code": "DF0050" + }, + { + "id": "354358", + "ident": "SI4L", + "type": "heliport", + "name": "Haras La Estância Heliport", + "latitude_deg": "-22.929722", + "longitude_deg": "-46.941389", + "elevation_ft": "2231", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Valinhos", + "scheduled_service": "no", + "gps_code": "SI4L", + "local_code": "SP1349" + }, + { + "id": "354361", + "ident": "SI4M", + "type": "small_airport", + "name": "Fazenda Olinda Airport", + "latitude_deg": "-12.565232", + "longitude_deg": "-45.874972", + "elevation_ft": "2598", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SI4M", + "local_code": "BA0388" + }, + { + "id": "354473", + "ident": "SI4Q", + "type": "small_airport", + "name": "Cone Sul Aviação Agrícola Airport.", + "latitude_deg": "-12.545945", + "longitude_deg": "-60.87092", + "elevation_ft": "1220", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Chupinguaia", + "scheduled_service": "no", + "gps_code": "SI4Q", + "local_code": "RO0080" + }, + { + "id": "354480", + "ident": "SI4T", + "type": "heliport", + "name": "Rio Bonito Heliport", + "latitude_deg": "-22.70885", + "longitude_deg": "-42.67078", + "elevation_ft": "118", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio Bonito", + "scheduled_service": "no", + "gps_code": "SI4T", + "local_code": "RJ0367" + }, + { + "id": "355934", + "ident": "SI4U", + "type": "small_airport", + "name": "Fazenda Bocalon Airport", + "latitude_deg": "-16.843984", + "longitude_deg": "-47.36216", + "elevation_ft": "2986", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Cristalina", + "scheduled_service": "no", + "gps_code": "SI4U", + "local_code": "GO0295" + }, + { + "id": "354316", + "ident": "SI4V", + "type": "small_airport", + "name": "Fazenda Jandaia Airstrip", + "latitude_deg": "-10.96", + "longitude_deg": "-54.228056", + "elevation_ft": "1106", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Marcelândia", + "scheduled_service": "no", + "gps_code": "SI4V", + "local_code": "MT0724" + }, + { + "id": "353896", + "ident": "SI62", + "type": "small_airport", + "name": "Fazenda Monte Líbano Airport", + "latitude_deg": "-14.865671", + "longitude_deg": "-53.881941", + "elevation_ft": "2274", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santo Antônio do Leste", + "scheduled_service": "no", + "gps_code": "SI62", + "local_code": "MT0809" + }, + { + "id": "354314", + "ident": "SI63", + "type": "small_airport", + "name": "Curimatá Airport", + "latitude_deg": "-10.025434", + "longitude_deg": "-44.316395", + "elevation_ft": "1096", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Curimatá", + "scheduled_service": "no", + "gps_code": "SI63", + "local_code": "PI0090" + }, + { + "id": "354482", + "ident": "SI64", + "type": "small_airport", + "name": "Fazenda Santa Rita de Cássia Airstrip", + "latitude_deg": "-19.369444", + "longitude_deg": "-53.223056", + "elevation_ft": "1968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Paraíso das Águas", + "scheduled_service": "no", + "gps_code": "SI64", + "local_code": "MS0613" + }, + { + "id": "354484", + "ident": "SI66", + "type": "small_airport", + "name": "Fazenda Ypiranga Airstrip", + "latitude_deg": "-18.104903", + "longitude_deg": "-57.199942", + "elevation_ft": "322", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SI66", + "local_code": "MS0619" + }, + { + "id": "354486", + "ident": "SI67", + "type": "small_airport", + "name": "Fazenda Galiota Airport", + "latitude_deg": "-8.187222", + "longitude_deg": "-45.431389", + "elevation_ft": "1660", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Ribeiro Gonçalves", + "scheduled_service": "no", + "gps_code": "SI67", + "local_code": "PI0095" + }, + { + "id": "354699", + "ident": "SI68", + "type": "small_airport", + "name": "Gelindo Stefanuto Airport", + "latitude_deg": "-13.73217", + "longitude_deg": "-57.891791", + "elevation_ft": "1946", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo do Parecis", + "scheduled_service": "no", + "gps_code": "SI68", + "local_code": "MT0612" + }, + { + "id": "355022", + "ident": "SI69", + "type": "heliport", + "name": "Santa Clara Heliport", + "latitude_deg": "-26.88434", + "longitude_deg": "-49.145145", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Blumenau", + "scheduled_service": "no", + "gps_code": "SI69", + "local_code": "SC0204" + }, + { + "id": "355020", + "ident": "SI6B", + "type": "heliport", + "name": "Brandt Heliport", + "latitude_deg": "-23.29525", + "longitude_deg": "-51.319675", + "elevation_ft": "2385", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Cambé", + "scheduled_service": "no", + "gps_code": "SI6B", + "local_code": "PR0220" + }, + { + "id": "355560", + "ident": "SI6C", + "type": "heliport", + "name": "Arvoredo Helipad", + "latitude_deg": "-19.881618", + "longitude_deg": "-44.030065", + "elevation_ft": "2877", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Contagem", + "scheduled_service": "no", + "gps_code": "SI6C", + "local_code": "MG0504" + }, + { + "id": "355018", + "ident": "SI6D", + "type": "small_airport", + "name": "Fortuna Nutrição Animal Airstrip", + "latitude_deg": "-10.409722", + "longitude_deg": "-55.729167", + "elevation_ft": "928", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Canaã do Norte", + "scheduled_service": "no", + "gps_code": "SI6D", + "local_code": "MT0836" + }, + { + "id": "355016", + "ident": "SI6E", + "type": "small_airport", + "name": "Tião Machado Airport", + "latitude_deg": "-8.089248", + "longitude_deg": "-49.975491", + "elevation_ft": "709", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Redenção", + "scheduled_service": "no", + "gps_code": "SI6E", + "local_code": "PA0313" + }, + { + "id": "355007", + "ident": "SI6F", + "type": "small_airport", + "name": "Fazenda Alegria Airstrip", + "latitude_deg": "-11.125128", + "longitude_deg": "-49.11875", + "elevation_ft": "919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Crixás do Tocantins", + "scheduled_service": "no", + "gps_code": "SI6F", + "local_code": "TO0108" + }, + { + "id": "355562", + "ident": "SI6G", + "type": "heliport", + "name": "Tivoli Ecoresort Praia do Forte Heliport", + "latitude_deg": "-12.57885", + "longitude_deg": "-38.01345", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Mata de São João", + "scheduled_service": "no", + "gps_code": "SI6G", + "local_code": "BA0406" + }, + { + "id": "355405", + "ident": "SI6H", + "type": "small_airport", + "name": "Fazenda Conquista Airstrip", + "latitude_deg": "-13.4325", + "longitude_deg": "-49.634722", + "elevation_ft": "978", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Bonópolis", + "scheduled_service": "no", + "gps_code": "SI6H", + "local_code": "GO0350" + }, + { + "id": "355406", + "ident": "SI6J", + "type": "small_airport", + "name": "Fazenda Terra Nova Airstrip", + "latitude_deg": "-17.87422", + "longitude_deg": "-46.060679", + "elevation_ft": "2654", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "João Pinheiro", + "scheduled_service": "no", + "gps_code": "SI6J", + "local_code": "MG0551" + }, + { + "id": "355564", + "ident": "SI6L", + "type": "small_airport", + "name": "Fazenda Gauba Airport", + "latitude_deg": "-11.640686", + "longitude_deg": "-61.081316", + "elevation_ft": "676", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Pimenta Bueno", + "scheduled_service": "no", + "gps_code": "SI6L", + "local_code": "RO0083" + }, + { + "id": "355447", + "ident": "SI6M", + "type": "small_airport", + "name": "Recanto das Araras Airstrip", + "latitude_deg": "-10.294167", + "longitude_deg": "-46.550556", + "elevation_ft": "1496", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Mateiros", + "scheduled_service": "no", + "gps_code": "SI6M", + "local_code": "TO0094" + }, + { + "id": "355566", + "ident": "SI6N", + "type": "small_airport", + "name": "Fazenda Borchardt Airport", + "latitude_deg": "-11.163762", + "longitude_deg": "-56.911765", + "elevation_ft": "1135", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tabaporã", + "scheduled_service": "no", + "gps_code": "SI6N", + "local_code": "MT0849" + }, + { + "id": "355450", + "ident": "SI6P", + "type": "small_airport", + "name": "Fazenda Sagrada Família Airport", + "latitude_deg": "-3.115556", + "longitude_deg": "-47.529722", + "elevation_ft": "482", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Paragominas", + "scheduled_service": "no", + "gps_code": "SI6P", + "local_code": "PA0338" + }, + { + "id": "355477", + "ident": "SI6Q", + "type": "small_airport", + "name": "Fazenda Alvorada Airstrip", + "latitude_deg": "-18.467778", + "longitude_deg": "-51.109167", + "elevation_ft": "1870", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Cachoeira Alta", + "scheduled_service": "no", + "gps_code": "SI6Q", + "local_code": "GO0341" + }, + { + "id": "355568", + "ident": "SI6R", + "type": "small_airport", + "name": "Fazenda Tolimã Airport", + "latitude_deg": "-11.034233", + "longitude_deg": "-56.622559", + "elevation_ft": "1470", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tabaporã", + "scheduled_service": "no", + "gps_code": "SI6R", + "local_code": "MT0832" + }, + { + "id": "355480", + "ident": "SI6S", + "type": "small_airport", + "name": "Jerileve Airstrip", + "latitude_deg": "-2.893352", + "longitude_deg": "-40.505379", + "elevation_ft": "62", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Jijoca de Jericoacoara", + "scheduled_service": "no", + "gps_code": "SI6S", + "local_code": "CE0147" + }, + { + "id": "355484", + "ident": "SI6T", + "type": "small_airport", + "name": "Fazenda Pirapó Airport", + "latitude_deg": "-13.8442", + "longitude_deg": "-57.1929", + "elevation_ft": "1804", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São José do Rio Claro", + "scheduled_service": "no", + "gps_code": "SI6T", + "local_code": "MT0824" + }, + { + "id": "355490", + "ident": "SI6U", + "type": "small_airport", + "name": "Aeroguedes Airport", + "latitude_deg": "-7.066386", + "longitude_deg": "-37.350571", + "elevation_ft": "942", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Santa Teresinha", + "scheduled_service": "no", + "gps_code": "SI6U", + "local_code": "PB0034" + }, + { + "id": "355570", + "ident": "SI6V", + "type": "small_airport", + "name": "Aldeia Boca do Marapi Airport", + "latitude_deg": "0.611328", + "longitude_deg": "-55.976747", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Oriximiná", + "scheduled_service": "no", + "gps_code": "SI6V", + "local_code": "PA0332" + }, + { + "id": "355767", + "ident": "SI72", + "type": "small_airport", + "name": "Aerosport Maringá Airport", + "latitude_deg": "-23.188611", + "longitude_deg": "-51.801389", + "elevation_ft": "2008", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Iguaraçu", + "scheduled_service": "no", + "gps_code": "SI72", + "local_code": "PR0222" + }, + { + "id": "355769", + "ident": "SI73", + "type": "small_airport", + "name": "Fazenda Chapadinha Airport", + "latitude_deg": "-17.654177", + "longitude_deg": "-45.025261", + "elevation_ft": "1742", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Várzea da Palma", + "scheduled_service": "no", + "gps_code": "SI73", + "local_code": "MG0370" + }, + { + "id": "355935", + "ident": "SI76", + "type": "small_airport", + "name": "Agropecuária Varanda Airport", + "latitude_deg": "-22.046111", + "longitude_deg": "-57.043889", + "elevation_ft": "965", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Caracol", + "scheduled_service": "no", + "gps_code": "SI76", + "local_code": "MS0630" + }, + { + "id": "355937", + "ident": "SI77", + "type": "small_airport", + "name": "Fazenda Floresta Airport", + "latitude_deg": "-16.621395", + "longitude_deg": "-58.235404", + "elevation_ft": "423", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SI77", + "local_code": "MT0781" + }, + { + "id": "355938", + "ident": "SI78", + "type": "small_airport", + "name": "Santa Maria do Boiaçu Airport", + "latitude_deg": "-0.516359", + "longitude_deg": "-61.786672", + "elevation_ft": "157", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Rorainópolis", + "scheduled_service": "no", + "gps_code": "SI78", + "local_code": "RR0136" + }, + { + "id": "355973", + "ident": "SI79", + "type": "small_airport", + "name": "Fazendo San Francisco Airstrip", + "latitude_deg": "-13.337474", + "longitude_deg": "-52.839561", + "elevation_ft": "1322", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Canarana", + "scheduled_service": "no", + "gps_code": "SI79", + "local_code": "MT0837" + }, + { + "id": "355975", + "ident": "SI7A", + "type": "small_airport", + "name": "Alvorada do Gurguéia Airport", + "latitude_deg": "-8.441991", + "longitude_deg": "-43.858564", + "elevation_ft": "919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Alvorada do Gurguéia", + "scheduled_service": "no", + "gps_code": "SI7A", + "local_code": "PI0089" + }, + { + "id": "355976", + "ident": "SI7B", + "type": "small_airport", + "name": "Fazenda Flores Airstrip", + "latitude_deg": "-6.56949", + "longitude_deg": "-48.21212", + "elevation_ft": "591", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Piraquê", + "scheduled_service": "no", + "gps_code": "SI7B", + "local_code": "TO0113" + }, + { + "id": "355978", + "ident": "SI7C", + "type": "small_airport", + "name": "Monte Sião Airstrip", + "latitude_deg": "-8.689444", + "longitude_deg": "-61.406944", + "elevation_ft": "502", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Novo Aripuanã", + "scheduled_service": "no", + "gps_code": "SI7C", + "local_code": "AM0107" + }, + { + "id": "355981", + "ident": "SI7D", + "type": "small_airport", + "name": "Fazenda Primavera Airport", + "latitude_deg": "-15.248889", + "longitude_deg": "-54.133056", + "elevation_ft": "1932", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Primavera do Leste", + "scheduled_service": "no", + "gps_code": "SI7D", + "local_code": "MT0825" + }, + { + "id": "355720", + "ident": "SI7F", + "type": "small_airport", + "name": "Fazenda Rio Verde Airport", + "latitude_deg": "-14.153958", + "longitude_deg": "-57.258375", + "elevation_ft": "1893", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "gps_code": "SI7F", + "local_code": "MT0826" + }, + { + "id": "355718", + "ident": "SI7G", + "type": "small_airport", + "name": "Fazenda Nossa Senhora Aparecida Airport", + "latitude_deg": "-22.336858", + "longitude_deg": "-54.184656", + "elevation_ft": "1312", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Glória de Dourados", + "scheduled_service": "no", + "gps_code": "SI7G", + "local_code": "MS0620" + }, + { + "id": "355716", + "ident": "SI7H", + "type": "small_airport", + "name": "Sítio Bela Vista Airstrip", + "latitude_deg": "-22.543333", + "longitude_deg": "-47.2325", + "elevation_ft": "2123", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Limeira", + "scheduled_service": "no", + "gps_code": "SI7H", + "local_code": "SP1333" + }, + { + "id": "356091", + "ident": "SI7J", + "type": "small_airport", + "name": "Fazenda Marilândia Airstrip", + "latitude_deg": "-22.046944", + "longitude_deg": "-56.437222", + "elevation_ft": "771", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bela Vista", + "scheduled_service": "no", + "gps_code": "SI7J", + "local_code": "MS0646" + }, + { + "id": "356030", + "ident": "SI7M", + "type": "small_airport", + "name": "Fazenda Giboia Airport", + "latitude_deg": "-16.181386", + "longitude_deg": "-46.617741", + "elevation_ft": "3192", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Unaí", + "scheduled_service": "no", + "gps_code": "SI7M", + "local_code": "MG0511" + }, + { + "id": "356032", + "ident": "SI7N", + "type": "small_airport", + "name": "Fazenda Nova Airport", + "latitude_deg": "-14.933899", + "longitude_deg": "-53.884436", + "elevation_ft": "2178", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santo Antônio do Leste", + "scheduled_service": "no", + "gps_code": "SI7N", + "local_code": "MT0823" + }, + { + "id": "355715", + "ident": "SI7Q", + "type": "small_airport", + "name": "Fazenda Rio Bonito Airport", + "latitude_deg": "-13.518333", + "longitude_deg": "-55.079722", + "elevation_ft": "1562", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Ubiratã", + "scheduled_service": "no", + "gps_code": "SI7Q", + "local_code": "MT0844" + }, + { + "id": "356101", + "ident": "SI7R", + "type": "small_airport", + "name": "Fazenda San Antônio Airstrip", + "latitude_deg": "-14.353427", + "longitude_deg": "-57.920433", + "elevation_ft": "2221", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tangará da Serra", + "scheduled_service": "no", + "gps_code": "SI7R", + "local_code": "MT0847" + }, + { + "id": "356121", + "ident": "SI7S", + "type": "small_airport", + "name": "Fazenda Pontal Airstrip", + "latitude_deg": "-19.680229", + "longitude_deg": "-52.894262", + "elevation_ft": "1598", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Água Clara", + "scheduled_service": "no", + "gps_code": "SI7S", + "local_code": "MS0664" + }, + { + "id": "356122", + "ident": "SI7T", + "type": "small_airport", + "name": "Fazenda Santa Rita Airport", + "latitude_deg": "-9.703317", + "longitude_deg": "-36.322548", + "elevation_ft": "646", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Anadia", + "scheduled_service": "no", + "gps_code": "SI7T", + "local_code": "AL0045" + }, + { + "id": "356124", + "ident": "SI7V", + "type": "small_airport", + "name": "Fazenda Três Lagoas Airstrip", + "latitude_deg": "-10.219167", + "longitude_deg": "-54.978889", + "elevation_ft": "899", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Peixoto de Azevedo", + "scheduled_service": "no", + "gps_code": "SI7V", + "local_code": "MT0843" + }, + { + "id": "356148", + "ident": "SI82", + "type": "small_airport", + "name": "Fazenda Lince Airstrip", + "latitude_deg": "-18.964722", + "longitude_deg": "-53.236944", + "elevation_ft": "1785", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Paraíso das Águas", + "scheduled_service": "no", + "gps_code": "SI82", + "local_code": "MS0576" + }, + { + "id": "356150", + "ident": "SI84", + "type": "heliport", + "name": "Kiaroa Marine Heliport", + "latitude_deg": "-13.958889", + "longitude_deg": "-38.970833", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Maraú", + "scheduled_service": "no", + "gps_code": "SI84", + "local_code": "BA0408" + }, + { + "id": "356374", + "ident": "SI86", + "type": "heliport", + "name": "Mina Fábrica Heliport", + "latitude_deg": "-22.422778", + "longitude_deg": "-43.881389", + "elevation_ft": "4255", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Ouro Preto", + "scheduled_service": "no", + "gps_code": "SI86", + "local_code": "MG0557" + }, + { + "id": "356376", + "ident": "SI87", + "type": "heliport", + "name": "Fazenda Roque Heliport", + "latitude_deg": "-16.000987", + "longitude_deg": "-49.726366", + "elevation_ft": "2398", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Itaberaí", + "scheduled_service": "no", + "gps_code": "SI87", + "local_code": "GO0314" + }, + { + "id": "356386", + "ident": "SI88", + "type": "small_airport", + "name": "Fazenda Vitória Airstrip", + "latitude_deg": "-17.422222", + "longitude_deg": "-50.086111", + "elevation_ft": "1617", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Indiara", + "scheduled_service": "no", + "gps_code": "SI88", + "local_code": "GO0351" + }, + { + "id": "355711", + "ident": "SI89", + "type": "small_airport", + "name": "Aldeia Kuxaré Airstrip", + "latitude_deg": "-1.703611", + "longitude_deg": "-56.068333", + "elevation_ft": "1037", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Oriximiná", + "scheduled_service": "no", + "gps_code": "SI89", + "local_code": "PA0321" + }, + { + "id": "356387", + "ident": "SI8A", + "type": "small_airport", + "name": "Fazenda Paiaguás Airstrip", + "latitude_deg": "-20.099065", + "longitude_deg": "-55.478858", + "elevation_ft": "869", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SI8A", + "local_code": "MS0515" + }, + { + "id": "429726", + "ident": "SI8C", + "type": "small_airport", + "name": "Grupo Pivot Airport", + "latitude_deg": "-14.315991", + "longitude_deg": "-45.811631", + "elevation_ft": "2923", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Jaborandi", + "scheduled_service": "no", + "gps_code": "SI8C", + "local_code": "BA0396" + }, + { + "id": "429727", + "ident": "SI8D", + "type": "heliport", + "name": "Santa Casa Heliport", + "latitude_deg": "-20.927235", + "longitude_deg": "-46.983187", + "elevation_ft": "3189", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "São Sebastião do Paraíso", + "scheduled_service": "no", + "gps_code": "SI8D", + "local_code": "MG0508" + }, + { + "id": "429728", + "ident": "SI8E", + "type": "small_airport", + "name": "Fazenda Lapa do Lobo Airstrip", + "latitude_deg": "-19.501667", + "longitude_deg": "-51.018611", + "elevation_ft": "1440", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Paranaíba", + "scheduled_service": "no", + "gps_code": "SI8E", + "local_code": "MS0363" + }, + { + "id": "356388", + "ident": "SI94", + "type": "small_airport", + "name": "Fazenda Vitória Airport", + "latitude_deg": "-9.784491", + "longitude_deg": "-53.601028", + "elevation_ft": "1060", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Peixoto de Azevedo", + "scheduled_service": "no", + "gps_code": "SI94", + "local_code": "MT0855" + }, + { + "id": "356390", + "ident": "SI96", + "type": "small_airport", + "name": "Fazenda Nossa Senhora do Rosário de Fátima Airport", + "latitude_deg": "-12.258056", + "longitude_deg": "-56.4425", + "elevation_ft": "1316", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Itanhangá", + "scheduled_service": "no", + "gps_code": "SI96", + "local_code": "MT0835" + }, + { + "id": "354488", + "ident": "SI97", + "type": "small_airport", + "name": "Santa Filomena Airport", + "latitude_deg": "-9.136451", + "longitude_deg": "-45.886406", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Santa Filomena", + "scheduled_service": "no", + "gps_code": "SI97", + "local_code": "PI0092" + }, + { + "id": "356445", + "ident": "SI98", + "type": "heliport", + "name": "Porto Preguiças Resort Heliport", + "latitude_deg": "-2.738889", + "longitude_deg": "-42.8375", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Barreirinhas", + "scheduled_service": "no", + "gps_code": "SI98", + "local_code": "MA0155" + }, + { + "id": "429729", + "ident": "SI9A", + "type": "small_airport", + "name": "Fazenda Santa Rita de Cássia Airstrip", + "latitude_deg": "-17.758889", + "longitude_deg": "-53.04", + "elevation_ft": "2625", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Mineiros", + "scheduled_service": "no", + "gps_code": "SI9A", + "local_code": "GO0347" + }, + { + "id": "429731", + "ident": "SI9C", + "type": "small_airport", + "name": "Fazenda Eldorado do Rio Negro Airstrip", + "latitude_deg": "-19.648889", + "longitude_deg": "-55.845", + "elevation_ft": "377", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SI9C", + "local_code": "MS0677" + }, + { + "id": "429732", + "ident": "SI9E", + "type": "small_airport", + "name": "Fazenda Marília Airstrip", + "latitude_deg": "-10.746344", + "longitude_deg": "-57.986018", + "elevation_ft": "845", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juara", + "scheduled_service": "no", + "gps_code": "SI9E", + "local_code": "MT0859" + }, + { + "id": "429986", + "ident": "SI9F", + "type": "small_airport", + "name": "Fazenda 3J Airstrip", + "latitude_deg": "-10.430142", + "longitude_deg": "-58.29269", + "elevation_ft": "738", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Bandeirantes", + "scheduled_service": "no", + "gps_code": "SI9F", + "local_code": "MT0863" + }, + { + "id": "429988", + "ident": "SI9G", + "type": "small_airport", + "name": "Chácara Itapoty Airstrip", + "latitude_deg": "-23.076944", + "longitude_deg": "-55.229722", + "elevation_ft": "1657", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Amambai", + "scheduled_service": "no", + "gps_code": "SI9G", + "local_code": "MS0642" + }, + { + "id": "429991", + "ident": "SI9J", + "type": "small_airport", + "name": "Sena Airstrip", + "latitude_deg": "-16.313333", + "longitude_deg": "-41.492778", + "elevation_ft": "2717", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Medina", + "scheduled_service": "no", + "gps_code": "SI9J", + "local_code": "MG0563" + }, + { + "id": "429994", + "ident": "SI9L", + "type": "small_airport", + "name": "Fazenda Serra Dourada Airport", + "latitude_deg": "-2.867059", + "longitude_deg": "-45.708229", + "elevation_ft": "112", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Nova Olinda do Maranhão", + "scheduled_service": "no", + "gps_code": "SI9L", + "local_code": "MA0156" + }, + { + "id": "429903", + "ident": "SI9M", + "type": "small_airport", + "name": "Fazenda São Mateus Airstrip", + "latitude_deg": "-16.993302", + "longitude_deg": "-45.712289", + "elevation_ft": "2100", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Brasilândia de Minas", + "scheduled_service": "no", + "gps_code": "SI9M", + "local_code": "MG0561" + }, + { + "id": "429901", + "ident": "SI9N", + "type": "small_airport", + "name": "Fazenda Santa Sofia Airstrip", + "latitude_deg": "-19.659444", + "longitude_deg": "-56.331944", + "elevation_ft": "358", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SI9N", + "local_code": "MS0639" + }, + { + "id": "429898", + "ident": "SI9P", + "type": "heliport", + "name": "Muranno Heliport", + "latitude_deg": "-16.31475", + "longitude_deg": "-49.04075", + "elevation_ft": "2854", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Anápolis", + "scheduled_service": "no", + "gps_code": "SI9P", + "local_code": "GO0331" + }, + { + "id": "429996", + "ident": "SI9Q", + "type": "small_airport", + "name": "Fazenda Catarinense Airport", + "latitude_deg": "-13.282943", + "longitude_deg": "-46.013271", + "elevation_ft": "2904", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SI9Q", + "local_code": "BA0395" + }, + { + "id": "429998", + "ident": "SI9R", + "type": "small_airport", + "name": "Fama Airport", + "latitude_deg": "-17.401499", + "longitude_deg": "-42.110845", + "elevation_ft": "3209", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Novo Cruzeiro", + "scheduled_service": "no", + "gps_code": "SI9R", + "local_code": "MG0553" + }, + { + "id": "430005", + "ident": "SI9T", + "type": "small_airport", + "name": "Fazenda Recanto do Céu Airport", + "latitude_deg": "-13.263333", + "longitude_deg": "-55.3", + "elevation_ft": "1473", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Ubiratã", + "scheduled_service": "no", + "gps_code": "SI9T", + "local_code": "MT0853" + }, + { + "id": "430007", + "ident": "SI9U", + "type": "small_airport", + "name": "Fazenda Shalon Airstrip", + "latitude_deg": "-1.145278", + "longitude_deg": "-53.723333", + "elevation_ft": "1017", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Prainha", + "scheduled_service": "no", + "gps_code": "SI9U", + "local_code": "PA0333" + }, + { + "id": "430009", + "ident": "SI9V", + "type": "small_airport", + "name": "Peça Rara Agropecuária I Airstrip", + "latitude_deg": "-11.87162", + "longitude_deg": "-61.989122", + "elevation_ft": "1512", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Alta Floresta d'Oeste", + "scheduled_service": "no", + "gps_code": "SI9V", + "local_code": "RO0077" + }, + { + "id": "35838", + "ident": "SIAA", + "type": "heliport", + "name": "Aeroandres Heliport", + "latitude_deg": "-23.39472198486328", + "longitude_deg": "-46.63833236694336", + "elevation_ft": "3248", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mairiporã", + "scheduled_service": "no", + "gps_code": "SIAA" + }, + { + "id": "221", + "ident": "SIAB", + "type": "closed", + "name": "Leda Mello Resende Airport", + "latitude_deg": "-21.3719", + "longitude_deg": "-45.4949", + "elevation_ft": "3050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Três Pontas", + "scheduled_service": "no", + "keywords": "SIAB" + }, + { + "id": "35839", + "ident": "SIAC", + "type": "closed", + "name": "Hospital de Guaruz Heliport", + "latitude_deg": "-21.740833", + "longitude_deg": "-41.311943", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Campos Dos Goytacazes", + "scheduled_service": "no", + "keywords": "SIAC" + }, + { + "id": "35840", + "ident": "SIAD", + "type": "small_airport", + "name": "Estância Regina Airport", + "latitude_deg": "-21.010744", + "longitude_deg": "-57.353032", + "elevation_ft": "394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SIAD", + "local_code": "MS0064" + }, + { + "id": "35841", + "ident": "SIAE", + "type": "heliport", + "name": "BASF Guaratinguetá Heliport", + "latitude_deg": "-22.786123", + "longitude_deg": "-45.170825", + "elevation_ft": "1772", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guaratinguetá", + "scheduled_service": "no", + "gps_code": "SIAE", + "local_code": "SP0463" + }, + { + "id": "35842", + "ident": "SIAF", + "type": "small_airport", + "name": "Fazenda São José Airport", + "latitude_deg": "-13.741112", + "longitude_deg": "-58.885555", + "elevation_ft": "1903", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SWSJ", + "local_code": "SWSJ", + "keywords": "SIAF" + }, + { + "id": "35843", + "ident": "SIAG", + "type": "heliport", + "name": "Serrinha Heliport", + "latitude_deg": "-16.721111297607422", + "longitude_deg": "-49.264442443847656", + "elevation_ft": "2802", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiânia", + "scheduled_service": "no", + "gps_code": "SIAG" + }, + { + "id": "35844", + "ident": "SIAH", + "type": "heliport", + "name": "Vitória Apart Hospital Heliport", + "latitude_deg": "-20.2369441986084", + "longitude_deg": "-40.27888870239258", + "elevation_ft": "62", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Serra", + "scheduled_service": "no", + "gps_code": "SIAH" + }, + { + "id": "35845", + "ident": "SIAI", + "type": "small_airport", + "name": "Fazenda Gaivota Airport", + "latitude_deg": "-16.23611068725586", + "longitude_deg": "-56.918888092041016", + "elevation_ft": "541", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Poconé", + "scheduled_service": "no", + "gps_code": "SIAI" + }, + { + "id": "328001", + "ident": "SIAJ", + "type": "small_airport", + "name": "Fazenda Tauá Airport", + "latitude_deg": "-16.983611", + "longitude_deg": "-39.164139", + "elevation_ft": "43", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Prado", + "scheduled_service": "no", + "gps_code": "SIAJ", + "local_code": "BA0084" + }, + { + "id": "35846", + "ident": "SIAK", + "type": "heliport", + "name": "Volkswagen Heliport", + "latitude_deg": "-23.729557", + "longitude_deg": "-46.54985", + "elevation_ft": "2539", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Bernardo Do Campo", + "scheduled_service": "no", + "gps_code": "SWQV", + "local_code": "SWQV", + "keywords": "SIAK" + }, + { + "id": "35847", + "ident": "SIAL", + "type": "closed", + "name": "Summerville Heliport", + "latitude_deg": "-8.434359", + "longitude_deg": "-34.982083", + "elevation_ft": "39", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Ipojuca", + "scheduled_service": "no", + "local_code": "PE0026", + "keywords": "SIAL" + }, + { + "id": "29865", + "ident": "SIAM", + "type": "small_airport", + "name": "Fazenda Palmital Airport", + "latitude_deg": "-20.697327", + "longitude_deg": "-48.286419", + "elevation_ft": "1709", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Morro Agudo", + "scheduled_service": "no", + "gps_code": "SIQF", + "local_code": "SP0193", + "keywords": "SIAM" + }, + { + "id": "35848", + "ident": "SIAN", + "type": "heliport", + "name": "Santa Casa de Misericórdia de Porto Alegre Helipad", + "latitude_deg": "-30.030145", + "longitude_deg": "-51.220483", + "elevation_ft": "184", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Porto Alegre", + "scheduled_service": "no", + "gps_code": "SIAK", + "local_code": "RS0105", + "keywords": "SIAN, Hospital Dom Vicente Scherer" + }, + { + "id": "35849", + "ident": "SIAO", + "type": "small_airport", + "name": "Fazenda Araras Airport", + "latitude_deg": "-19.629722595214844", + "longitude_deg": "-55.25194549560547", + "elevation_ft": "1493", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corguinho", + "scheduled_service": "no", + "gps_code": "SIAO" + }, + { + "id": "35850", + "ident": "SIAP", + "type": "small_airport", + "name": "Roso Airport", + "latitude_deg": "-31.73442", + "longitude_deg": "-54.089186", + "elevation_ft": "541", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Aceguá", + "scheduled_service": "no", + "gps_code": "SWNW", + "local_code": "RS0128", + "keywords": "SIAP, Ana Paula Airport, Roso Par" + }, + { + "id": "328369", + "ident": "SIAQ", + "type": "small_airport", + "name": "Bom Futuro Airport", + "latitude_deg": "-15.506389", + "longitude_deg": "-56.098333", + "elevation_ft": "751", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cuiabá", + "scheduled_service": "no", + "gps_code": "SIAQ", + "local_code": "SIAQ" + }, + { + "id": "35851", + "ident": "SIAR", + "type": "small_airport", + "name": "Fazenda Bom Retiro Airport", + "latitude_deg": "-22.799168", + "longitude_deg": "-50.046112", + "elevation_ft": "1617", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ibirarema", + "scheduled_service": "no", + "gps_code": "SIAR", + "local_code": "MS0066" + }, + { + "id": "35852", + "ident": "SIAS", + "type": "heliport", + "name": "Auto Viação Reginas Heliport", + "latitude_deg": "-22.77638816833496", + "longitude_deg": "-43.32722091674805", + "elevation_ft": "108", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Duque De Caxias", + "scheduled_service": "no", + "gps_code": "SIAS" + }, + { + "id": "35853", + "ident": "SIAT", + "type": "heliport", + "name": "Temadre Heliport", + "latitude_deg": "-12.738611221313477", + "longitude_deg": "-38.60139083862305", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Madre De Deus", + "scheduled_service": "no", + "gps_code": "SIAT" + }, + { + "id": "35854", + "ident": "SIAU", + "type": "small_airport", + "name": "Fazenda Jatobá Airport", + "latitude_deg": "-16.483333587646484", + "longitude_deg": "-56.27000045776367", + "elevation_ft": "404", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão De Melgaço", + "scheduled_service": "no", + "gps_code": "SIAU" + }, + { + "id": "35855", + "ident": "SIAV", + "type": "heliport", + "name": "Helicentro Helipark", + "latitude_deg": "-23.564722061199998", + "longitude_deg": "-46.8300018311", + "elevation_ft": "2592", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Carapicuiba", + "scheduled_service": "no", + "gps_code": "SIAV" + }, + { + "id": "328371", + "ident": "SIAW", + "type": "small_airport", + "name": "Sítio Gurupi Airport", + "latitude_deg": "-3.739167", + "longitude_deg": "-47.516389", + "elevation_ft": "420", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Ulianópolis", + "scheduled_service": "no", + "gps_code": "SIAW", + "local_code": "SIAW" + }, + { + "id": "35856", + "ident": "SIAX", + "type": "small_airport", + "name": "Fazenda Beira Rio Airport", + "latitude_deg": "-7.550278186798096", + "longitude_deg": "-56.17250061035156", + "elevation_ft": "870", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Novo Progresso", + "scheduled_service": "no", + "gps_code": "SIAX" + }, + { + "id": "35857", + "ident": "SIAY", + "type": "small_airport", + "name": "Auriflama Airport", + "latitude_deg": "-20.741943359375", + "longitude_deg": "-50.53166580200195", + "elevation_ft": "1277", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Auriflama", + "scheduled_service": "no", + "gps_code": "SIAY" + }, + { + "id": "35858", + "ident": "SIAZ", + "type": "heliport", + "name": "Atlântida Heliport", + "latitude_deg": "-9.625", + "longitude_deg": "-35.70083236694336", + "elevation_ft": "187", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Maceió", + "scheduled_service": "no", + "gps_code": "SIAZ" + }, + { + "id": "35859", + "ident": "SIBA", + "type": "small_airport", + "name": "Fazenda Jatobá Airport", + "latitude_deg": "-20.099167", + "longitude_deg": "-55.926945", + "elevation_ft": "400", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "keywords": "SIBA" + }, + { + "id": "35860", + "ident": "SIBB", + "type": "heliport", + "name": "Edifício Comendador Alberto Bonfiglioli Heliport", + "latitude_deg": "-23.564443588256836", + "longitude_deg": "-46.65194320678711", + "elevation_ft": "2936", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIBB" + }, + { + "id": "35861", + "ident": "SIBC", + "type": "small_airport", + "name": "Vila de Tocos Airport", + "latitude_deg": "-21.877777099609375", + "longitude_deg": "-41.29472351074219", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Campos Dos Goytacazes", + "scheduled_service": "no", + "gps_code": "SIBC" + }, + { + "id": "222", + "ident": "SIBD", + "type": "small_airport", + "name": "Benedito Mutran Airport", + "latitude_deg": "-5.758452", + "longitude_deg": "-49.176216", + "elevation_ft": "551", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Marabá", + "scheduled_service": "no", + "keywords": "SIBD, Fazenda Cedro" + }, + { + "id": "35862", + "ident": "SIBE", + "type": "heliport", + "name": "Marina Park Heliport", + "latitude_deg": "-3.719069", + "longitude_deg": "-38.53181", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SIBE", + "local_code": "CE0032" + }, + { + "id": "35863", + "ident": "SIBF", + "type": "small_airport", + "name": "Bunge Fertilizantes Airport", + "latitude_deg": "-24.719167709350586", + "longitude_deg": "-48.11861038208008", + "elevation_ft": "249", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cajati", + "scheduled_service": "no", + "gps_code": "SIBF" + }, + { + "id": "35864", + "ident": "SIBG", + "type": "heliport", + "name": "Banco Induscred Heliport", + "latitude_deg": "-23.563888549804688", + "longitude_deg": "-46.655277252197266", + "elevation_ft": "2881", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIBG" + }, + { + "id": "35865", + "ident": "SIBH", + "type": "heliport", + "name": "Helicidade Heliport", + "latitude_deg": "-23.546667098999023", + "longitude_deg": "-46.736942291259766", + "elevation_ft": "2418", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIBH" + }, + { + "id": "35866", + "ident": "SIBI", + "type": "heliport", + "name": "GF Taxi Aéreo Heliport", + "latitude_deg": "-24.002906", + "longitude_deg": "-46.289102", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarujá", + "scheduled_service": "no", + "gps_code": "SJNT", + "local_code": "SP0637", + "keywords": "SIBI, Tame Guarujá" + }, + { + "id": "35867", + "ident": "SIBK", + "type": "small_airport", + "name": "Sada Siderurgia Ltda Airport", + "latitude_deg": "-17.519443512", + "longitude_deg": "-44.761112213100006", + "elevation_ft": "1759", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Várzea Da Palma", + "scheduled_service": "no", + "gps_code": "SIBK" + }, + { + "id": "35868", + "ident": "SIBL", + "type": "heliport", + "name": "Clínica Porto Dias Heliport", + "latitude_deg": "-1.4375", + "longitude_deg": "-48.45833206176758", + "elevation_ft": "167", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Belém", + "scheduled_service": "no", + "gps_code": "SIBL" + }, + { + "id": "35869", + "ident": "SIBM", + "type": "heliport", + "name": "Helicentro ABC Heliport", + "latitude_deg": "-23.616943359375", + "longitude_deg": "-46.58027648925781", + "elevation_ft": "2421", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Caetano Do Sul", + "scheduled_service": "no", + "gps_code": "SIBM" + }, + { + "id": "35870", + "ident": "SIBN", + "type": "small_airport", + "name": "Fazenda Canaã Airport", + "latitude_deg": "-23.071388244628906", + "longitude_deg": "-49.432498931884766", + "elevation_ft": "2021", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Piraju", + "scheduled_service": "no", + "gps_code": "SIBN" + }, + { + "id": "35871", + "ident": "SIBO", + "type": "small_airport", + "name": "Sítio São Luiz Airport", + "latitude_deg": "-24.261562", + "longitude_deg": "-52.794753", + "elevation_ft": "1919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Boa Esperança", + "scheduled_service": "no", + "gps_code": "SNYY", + "local_code": "PR0070", + "keywords": "SIBO" + }, + { + "id": "35872", + "ident": "SIBP", + "type": "heliport", + "name": "Ambev - Filial Guarulhos Heliport", + "latitude_deg": "-23.31861114501953", + "longitude_deg": "-46.369998931884766", + "elevation_ft": "2805", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarulhos", + "scheduled_service": "no", + "gps_code": "SIBP" + }, + { + "id": "35873", + "ident": "SIBQ", + "type": "heliport", + "name": "WT Technology Park Heliport", + "latitude_deg": "-23.495555877685547", + "longitude_deg": "-46.8136100769043", + "elevation_ft": "2487", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SIBQ" + }, + { + "id": "35874", + "ident": "SIBR", + "type": "heliport", + "name": "Chacará Recanto Tranquilo Heliport", + "latitude_deg": "-20.981943130493164", + "longitude_deg": "-47.6694450378418", + "elevation_ft": "2795", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Brodowski", + "scheduled_service": "no", + "gps_code": "SIBR" + }, + { + "id": "35875", + "ident": "SIBS", + "type": "heliport", + "name": "Terminal Petrobras - São Sebastião Heliport", + "latitude_deg": "-23.79861068725586", + "longitude_deg": "-46.400001525878906", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Sebastião", + "scheduled_service": "no", + "gps_code": "SIBS" + }, + { + "id": "35876", + "ident": "SIBT", + "type": "heliport", + "name": "Transportadora Americana II Heliport", + "latitude_deg": "-22.732322", + "longitude_deg": "-47.286186", + "elevation_ft": "2005", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Americana", + "scheduled_service": "no", + "gps_code": "SIBT", + "local_code": "SP0471" + }, + { + "id": "223", + "ident": "SIBU", + "type": "small_airport", + "name": "Catolé da Rocha Airport", + "latitude_deg": "-6.36253023147583", + "longitude_deg": "-37.75619888305664", + "elevation_ft": "892", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Catolé Da Rocha", + "scheduled_service": "no", + "gps_code": "SIBU", + "local_code": "SIBU" + }, + { + "id": "35877", + "ident": "SIBV", + "type": "small_airport", + "name": "Fazenda Bela Vista Airport", + "latitude_deg": "-21.448610305786133", + "longitude_deg": "-54.488609313964844", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Alvorada Do Sul", + "scheduled_service": "no", + "gps_code": "SIBV" + }, + { + "id": "224", + "ident": "SIBW", + "type": "small_airport", + "name": "Conceição Airport", + "latitude_deg": "-7.558229923248291", + "longitude_deg": "-38.496498107910156", + "elevation_ft": "1214", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Conceição", + "scheduled_service": "no", + "gps_code": "SIBW", + "local_code": "SIBW" + }, + { + "id": "35878", + "ident": "SIBX", + "type": "small_airport", + "name": "Rosana Camargo Airport", + "latitude_deg": "-21.091110229492188", + "longitude_deg": "-50.24333190917969", + "elevation_ft": "1345", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Buritama", + "scheduled_service": "no", + "gps_code": "SIBX" + }, + { + "id": "225", + "ident": "SIBY", + "type": "small_airport", + "name": "Monteiro Airport", + "latitude_deg": "-7.87824010848999", + "longitude_deg": "-37.13999938964844", + "elevation_ft": "2031", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Monteiro", + "scheduled_service": "no", + "gps_code": "SIBY", + "local_code": "SIBY" + }, + { + "id": "226", + "ident": "SIBZ", + "type": "small_airport", + "name": "Itaporanga Airport", + "latitude_deg": "-7.311659812927246", + "longitude_deg": "-38.112701416015625", + "elevation_ft": "958", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Itaporanga", + "scheduled_service": "no", + "gps_code": "SIBZ", + "local_code": "SIBZ" + }, + { + "id": "316552", + "ident": "SIC", + "type": "small_airport", + "name": "San José Island Airport", + "latitude_deg": "8.2622", + "longitude_deg": "-79.078", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PA-8", + "municipality": "Las Perlas", + "scheduled_service": "no", + "iata_code": "SIC", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_José_Airport_(Las_Perlas)" + }, + { + "id": "35879", + "ident": "SICA", + "type": "small_airport", + "name": "Brejo das Freiras Airport", + "latitude_deg": "-6.6779", + "longitude_deg": "-38.496", + "elevation_ft": "1017", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "São João do Rio do Peixe", + "scheduled_service": "no", + "local_code": "PB0011", + "keywords": "SICA" + }, + { + "id": "35880", + "ident": "SICB", + "type": "small_airport", + "name": "Pedro Simões Pimenta Airport", + "latitude_deg": "-6.487500190734863", + "longitude_deg": "-36.13999938964844", + "elevation_ft": "2139", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Cuité", + "scheduled_service": "no", + "gps_code": "SICB" + }, + { + "id": "35881", + "ident": "SICC", + "type": "heliport", + "name": "Fazenda Campo Alto Heliport", + "latitude_deg": "-22.38888931274414", + "longitude_deg": "-47.28666687011719", + "elevation_ft": "2067", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araras", + "scheduled_service": "no", + "gps_code": "SICC" + }, + { + "id": "35882", + "ident": "SICD", + "type": "heliport", + "name": "Mima 2 Heliport", + "latitude_deg": "-21.578611373901367", + "longitude_deg": "-41.446388244628906", + "elevation_ft": "131", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Cardoso Moreira", + "scheduled_service": "no", + "gps_code": "SICD" + }, + { + "id": "35883", + "ident": "SICE", + "type": "heliport", + "name": "Ypioca Heliport", + "latitude_deg": "-3.825661", + "longitude_deg": "-38.480908", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "keywords": "SICE" + }, + { + "id": "35884", + "ident": "SICF", + "type": "heliport", + "name": "Vol D`Oiseal Heliport", + "latitude_deg": "-23.619443893432617", + "longitude_deg": "-46.733890533447266", + "elevation_ft": "3038", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SICF" + }, + { + "id": "335154", + "ident": "SICG", + "type": "heliport", + "name": "Rede TV Helipad", + "latitude_deg": "-23.520831", + "longitude_deg": "-46.762957", + "elevation_ft": "2379", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Osasco", + "scheduled_service": "no", + "gps_code": "SICG", + "local_code": "SP0473" + }, + { + "id": "35885", + "ident": "SICH", + "type": "small_airport", + "name": "Fazenda Serrinha Airport", + "latitude_deg": "-20.66083335876465", + "longitude_deg": "-52.34000015258789", + "elevation_ft": "1188", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Três Lagoas", + "scheduled_service": "no", + "gps_code": "SICH" + }, + { + "id": "35886", + "ident": "SICI", + "type": "heliport", + "name": "Conjunto Hospitalar de Sorocaba Heliport", + "latitude_deg": "-23.509443283081055", + "longitude_deg": "-47.45805740356445", + "elevation_ft": "2083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sorocaba", + "scheduled_service": "no", + "gps_code": "SICI" + }, + { + "id": "35887", + "ident": "SICJ", + "type": "small_airport", + "name": "Gaivota Aviação Agrícola Airport", + "latitude_deg": "-13.460000038146973", + "longitude_deg": "-58.775001525878906", + "elevation_ft": "1706", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SICJ" + }, + { + "id": "35888", + "ident": "SICK", + "type": "small_airport", + "name": "Cidade Capelinha Airport", + "latitude_deg": "-17.682777404785156", + "longitude_deg": "-42.53111267089844", + "elevation_ft": "3113", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Capelinha", + "scheduled_service": "no", + "gps_code": "SICK" + }, + { + "id": "35889", + "ident": "SICL", + "type": "heliport", + "name": "Praia da Piraquara Heliport", + "latitude_deg": "-22.98638916015625", + "longitude_deg": "-44.442779541015625", + "elevation_ft": "79", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SICL" + }, + { + "id": "35890", + "ident": "SICM", + "type": "small_airport", + "name": "Fazenda Nossa Senhora de Fátima Airport", + "latitude_deg": "-21.538888931274414", + "longitude_deg": "-52.110557556152344", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Brasilândia", + "scheduled_service": "no", + "gps_code": "SICM" + }, + { + "id": "35891", + "ident": "SICN", + "type": "small_airport", + "name": "Fazenda Vista Bonita Airport", + "latitude_deg": "-22.503332138061523", + "longitude_deg": "-51.81277847290039", + "elevation_ft": "1348", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sandovalina", + "scheduled_service": "no", + "gps_code": "SICN" + }, + { + "id": "35892", + "ident": "SICO", + "type": "small_airport", + "name": "SOLAG - Sol e Lua Aviação Agrícola Airport", + "latitude_deg": "-13.325861", + "longitude_deg": "-56.049843", + "elevation_ft": "1453", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Lucas Do Rio Verde", + "scheduled_service": "no", + "gps_code": "SWSL", + "local_code": "MT0399", + "keywords": "SICO" + }, + { + "id": "35893", + "ident": "SICP", + "type": "small_airport", + "name": "Doutor Walter Beckert Airport", + "latitude_deg": "-23.97166633605957", + "longitude_deg": "-51.323612213134766", + "elevation_ft": "2779", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Faxinal", + "scheduled_service": "no", + "gps_code": "SICP" + }, + { + "id": "335160", + "ident": "SICQ", + "type": "small_airport", + "name": "Fazenda Luar Airport", + "latitude_deg": "-15.554542", + "longitude_deg": "-55.690899", + "elevation_ft": "768", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cuiabá", + "scheduled_service": "no", + "gps_code": "SICQ", + "local_code": "MT0502" + }, + { + "id": "35894", + "ident": "SICR", + "type": "heliport", + "name": "Cantareira Heliport", + "latitude_deg": "-23.377500534057617", + "longitude_deg": "-46.62527847290039", + "elevation_ft": "2657", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mairiporã", + "scheduled_service": "no", + "gps_code": "SICR" + }, + { + "id": "35895", + "ident": "SICS", + "type": "heliport", + "name": "Base Resgate Heliport", + "latitude_deg": "-15.775001", + "longitude_deg": "-47.906113", + "elevation_ft": "3609", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SDHH", + "local_code": "SDHH", + "keywords": "SICS" + }, + { + "id": "35896", + "ident": "SICT", + "type": "heliport", + "name": "Elektro Heliport", + "latitude_deg": "-22.996694", + "longitude_deg": "-47.106392", + "elevation_ft": "2041", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SICT", + "local_code": "SP0475" + }, + { + "id": "35897", + "ident": "SICU", + "type": "heliport", + "name": "Chamonix Heliport", + "latitude_deg": "-22.97833251953125", + "longitude_deg": "-46.86833190917969", + "elevation_ft": "2631", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itatiba", + "scheduled_service": "no", + "gps_code": "SICU" + }, + { + "id": "35898", + "ident": "SICV", + "type": "heliport", + "name": "Porto Marina Asturias Heliport", + "latitude_deg": "-23.997222900390625", + "longitude_deg": "-46.29249954223633", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarujá", + "scheduled_service": "no", + "gps_code": "SICV" + }, + { + "id": "35899", + "ident": "SICW", + "type": "small_airport", + "name": "Fazenda Santa Fé Airport", + "latitude_deg": "-17.46388816833496", + "longitude_deg": "-47.831668853759766", + "elevation_ft": "3094", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Campo Alegre De Goiás", + "scheduled_service": "no", + "gps_code": "SICW" + }, + { + "id": "35900", + "ident": "SICX", + "type": "heliport", + "name": "Edifício Salvador Trade Center Heliport", + "latitude_deg": "-12.983888626098633", + "longitude_deg": "-38.453609466552734", + "elevation_ft": "349", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Salvador", + "scheduled_service": "no", + "gps_code": "SICX" + }, + { + "id": "35901", + "ident": "SICY", + "type": "small_airport", + "name": "Fazenda do Cedro Airport", + "latitude_deg": "-28.108334", + "longitude_deg": "-53.196388", + "elevation_ft": "2143", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Chapada", + "scheduled_service": "no", + "gps_code": "SDRX", + "local_code": "RS0057", + "keywords": "SICY" + }, + { + "id": "35902", + "ident": "SICZ", + "type": "heliport", + "name": "Edifício Comercial Lorena Heliport", + "latitude_deg": "-23.573055267333984", + "longitude_deg": "-46.49416732788086", + "elevation_ft": "2641", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SICZ" + }, + { + "id": "35903", + "ident": "SIDA", + "type": "heliport", + "name": "Edifício Dakota Heliport", + "latitude_deg": "-23.594167709350586", + "longitude_deg": "-46.68333435058594", + "elevation_ft": "2550", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIDA" + }, + { + "id": "35904", + "ident": "SIDB", + "type": "small_airport", + "name": "Doutor Almir Lopes de Oliveira Melo Airport", + "latitude_deg": "-4.268889", + "longitude_deg": "-43.000557", + "elevation_ft": "174", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Coelho Neto", + "scheduled_service": "no", + "gps_code": "SIDB", + "local_code": "MA0018" + }, + { + "id": "35905", + "ident": "SIDC", + "type": "heliport", + "name": "Pátio de Treinamento da HSE - TRAINING Heliport", + "latitude_deg": "-22.44361114501953", + "longitude_deg": "-41.871944427490234", + "elevation_ft": "187", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio Das Ostras", + "scheduled_service": "no", + "gps_code": "SIDC" + }, + { + "id": "35906", + "ident": "SIDD", + "type": "small_airport", + "name": "Fazenda São João do Monte Alto Airport", + "latitude_deg": "-21.497222900390625", + "longitude_deg": "-55.26388931274414", + "elevation_ft": "1476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Maracaju", + "scheduled_service": "no", + "gps_code": "SIDD" + }, + { + "id": "35907", + "ident": "SIDE", + "type": "heliport", + "name": "Polícia Federal Heliport", + "latitude_deg": "-23.511388778686523", + "longitude_deg": "-46.70444107055664", + "elevation_ft": "2438", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIDE" + }, + { + "id": "35908", + "ident": "SIDF", + "type": "heliport", + "name": "Umicore Heliport", + "latitude_deg": "-22.69499969482422", + "longitude_deg": "-47.35555648803711", + "elevation_ft": "1706", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Americana", + "scheduled_service": "no", + "gps_code": "SIDF" + }, + { + "id": "35909", + "ident": "SIDG", + "type": "small_airport", + "name": "Fazenda Jatobasso Airport", + "latitude_deg": "-22.429166793823242", + "longitude_deg": "-55.53333282470703", + "elevation_ft": "2152", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ponta Porã", + "scheduled_service": "no", + "gps_code": "SIDG" + }, + { + "id": "35910", + "ident": "SIDH", + "type": "heliport", + "name": "Brahma Juatuba Heliport", + "latitude_deg": "-19.957778930664062", + "longitude_deg": "-44.33610916137695", + "elevation_ft": "2480", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Juatuba", + "scheduled_service": "no", + "gps_code": "SIDH" + }, + { + "id": "335311", + "ident": "SIDI", + "type": "heliport", + "name": "Fazenda Cachoeira Heliport", + "latitude_deg": "-19.829464", + "longitude_deg": "-43.630353", + "elevation_ft": "3583", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Caeté", + "scheduled_service": "no", + "gps_code": "SIDI", + "local_code": "MG0224" + }, + { + "id": "335312", + "ident": "SIDJ", + "type": "small_airport", + "name": "Fazenda Arpa Airport", + "latitude_deg": "-8.948639", + "longitude_deg": "-50.513596", + "elevation_ft": "807", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santa Maria das Barreiras", + "scheduled_service": "no", + "gps_code": "SIDJ", + "local_code": "PA0043" + }, + { + "id": "35911", + "ident": "SIDK", + "type": "heliport", + "name": "Centro Século XXI Heliport", + "latitude_deg": "-25.435204", + "longitude_deg": "-49.276568", + "elevation_ft": "3286", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Curitiba", + "scheduled_service": "no", + "keywords": "SIDK" + }, + { + "id": "35912", + "ident": "SIDL", + "type": "heliport", + "name": "Deus é Amor Heliport", + "latitude_deg": "-23.55583381652832", + "longitude_deg": "-46.62472152709961", + "elevation_ft": "2474", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIDL" + }, + { + "id": "35913", + "ident": "SIDM", + "type": "small_airport", + "name": "Fazenda Cibrapa Airport", + "latitude_deg": "-15.03833293914795", + "longitude_deg": "-52.098331451416016", + "elevation_ft": "821", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra Do Garças", + "scheduled_service": "no", + "gps_code": "SIDM" + }, + { + "id": "35914", + "ident": "SIDN", + "type": "small_airport", + "name": "Fazenda Ipanema Airport", + "latitude_deg": "-23.425556182861328", + "longitude_deg": "-47.581390380859375", + "elevation_ft": "1985", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Iperó", + "scheduled_service": "no", + "gps_code": "SIDN" + }, + { + "id": "35915", + "ident": "SIDO", + "type": "heliport", + "name": "Santa Elisa Heliport", + "latitude_deg": "-3.5188889503479004", + "longitude_deg": "-39.170555114746094", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "São Gonçalo Do Amarante", + "scheduled_service": "no", + "gps_code": "SIDO" + }, + { + "id": "35916", + "ident": "SIDP", + "type": "heliport", + "name": "Mega Air Heliport", + "latitude_deg": "-23.49333381652832", + "longitude_deg": "-46.559444427490234", + "elevation_ft": "2674", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarulhos", + "scheduled_service": "no", + "gps_code": "SIDP" + }, + { + "id": "35917", + "ident": "SIDQ", + "type": "heliport", + "name": "das Quaresmas Heliport", + "latitude_deg": "-23.015277862548828", + "longitude_deg": "-44.29111099243164", + "elevation_ft": "358", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SIDQ" + }, + { + "id": "35918", + "ident": "SIDR", + "type": "small_airport", + "name": "Retiro Piúva Airport", + "latitude_deg": "-19.835556030273438", + "longitude_deg": "-56.703609466552734", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "SIDR" + }, + { + "id": "35919", + "ident": "SIDS", + "type": "small_airport", + "name": "Fazenda Santa Lucinha Airport", + "latitude_deg": "-18.023332595825195", + "longitude_deg": "-56.73222351074219", + "elevation_ft": "300", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SIDS" + }, + { + "id": "35920", + "ident": "SIDT", + "type": "heliport", + "name": "Edise Heliport", + "latitude_deg": "-22.90916633605957", + "longitude_deg": "-43.178890228271484", + "elevation_ft": "404", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SIDT" + }, + { + "id": "35921", + "ident": "SIDU", + "type": "heliport", + "name": "Biju Heliport", + "latitude_deg": "-22.296667098999023", + "longitude_deg": "-43.15194320678711", + "elevation_ft": "1969", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Areal", + "scheduled_service": "no", + "gps_code": "SIDU" + }, + { + "id": "35922", + "ident": "SIDV", + "type": "heliport", + "name": "Zizinho Heliport", + "latitude_deg": "-20.253332138061523", + "longitude_deg": "-44.76750183105469", + "elevation_ft": "2494", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Divinópolis", + "scheduled_service": "no", + "gps_code": "SIDV" + }, + { + "id": "335321", + "ident": "SIDW", + "type": "small_airport", + "name": "Fazenda Cortezia Airport", + "latitude_deg": "-13.004636", + "longitude_deg": "-56.087606", + "elevation_ft": "1355", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Lucas do Rio Verde", + "scheduled_service": "no", + "gps_code": "SIDW", + "local_code": "MT0089" + }, + { + "id": "35923", + "ident": "SIDX", + "type": "heliport", + "name": "Polícia Federal - Florianópolis Heliport", + "latitude_deg": "-27.572937", + "longitude_deg": "-48.531638", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Florianópolis", + "scheduled_service": "no", + "gps_code": "SDSF", + "local_code": "SC0044", + "keywords": "SIDX" + }, + { + "id": "35924", + "ident": "SIDY", + "type": "small_airport", + "name": "Fazenda Yanduy Airport", + "latitude_deg": "-24.07771", + "longitude_deg": "-51.819447", + "elevation_ft": "985", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Lunardelle", + "scheduled_service": "no", + "gps_code": "SIDY", + "local_code": "PR0043" + }, + { + "id": "35925", + "ident": "SIDZ", + "type": "small_airport", + "name": "Estância Ayrton Senna Airport", + "latitude_deg": "-22.660026", + "longitude_deg": "-54.82277", + "elevation_ft": "1509", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Caarapó", + "scheduled_service": "no", + "gps_code": "SIQH", + "local_code": "MS0120", + "keywords": "SIDZ" + }, + { + "id": "35926", + "ident": "SIEA", + "type": "small_airport", + "name": "Fazenda Ibiporã Airport", + "latitude_deg": "-21.466359", + "longitude_deg": "-50.79856", + "elevation_ft": "1181", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guararapes", + "scheduled_service": "no", + "gps_code": "SIEA", + "local_code": "SP0175" + }, + { + "id": "35927", + "ident": "SIEB", + "type": "small_airport", + "name": "Fazenda Carrapicho Airport", + "latitude_deg": "-20.746944427490234", + "longitude_deg": "-55.35722351074219", + "elevation_ft": "932", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Dois Irmãos Do Buriti", + "scheduled_service": "no", + "gps_code": "SIEB" + }, + { + "id": "35928", + "ident": "SIEC", + "type": "small_airport", + "name": "Fazenda Anhumas II Airport", + "latitude_deg": "-22.042499542236328", + "longitude_deg": "-52.29138946533203", + "elevation_ft": "955", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Presidente Eptácio", + "scheduled_service": "no", + "gps_code": "SIEC" + }, + { + "id": "35929", + "ident": "SIED", + "type": "small_airport", + "name": "Colonial Airport", + "latitude_deg": "-15.450541", + "longitude_deg": "-43.402595", + "elevation_ft": "1621", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Verdelândia", + "scheduled_service": "no", + "gps_code": "SNCF", + "local_code": "MG0139", + "keywords": "SIED" + }, + { + "id": "35930", + "ident": "SIEE", + "type": "heliport", + "name": "Meliá Confort São Paulo Heliport", + "latitude_deg": "-23.631639", + "longitude_deg": "-46.711378", + "elevation_ft": "2502", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SIEE" + }, + { + "id": "35931", + "ident": "SIEF", + "type": "small_airport", + "name": "Fazenda São José Airport", + "latitude_deg": "-20.572287", + "longitude_deg": "-54.716721", + "elevation_ft": "1722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "gps_code": "SIEF", + "local_code": "MS0075" + }, + { + "id": "35932", + "ident": "SIEG", + "type": "small_airport", + "name": "Fazenda Santa Edwiges Airport", + "latitude_deg": "-22.653055", + "longitude_deg": "-53.393055", + "elevation_ft": "951", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Taquarussu", + "scheduled_service": "no", + "keywords": "SIEG" + }, + { + "id": "35933", + "ident": "SIEH", + "type": "heliport", + "name": "Lazzuli Heliport", + "latitude_deg": "-8.033757", + "longitude_deg": "-34.871188", + "elevation_ft": "69", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Olinda", + "scheduled_service": "no", + "gps_code": "SDAB", + "local_code": "PE0019", + "keywords": "SIEH" + }, + { + "id": "35934", + "ident": "SIEI", + "type": "closed", + "name": "8º Batalhão da Polícia Militar Heliport", + "latitude_deg": "-26.306389", + "longitude_deg": "-48.860001", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Joinville", + "scheduled_service": "no", + "keywords": "SIEI" + }, + { + "id": "35935", + "ident": "SIEJ", + "type": "small_airport", + "name": "Monte Verde Airport", + "latitude_deg": "-9.942937", + "longitude_deg": "-57.485956", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Monte Verde", + "scheduled_service": "no", + "gps_code": "SIEJ", + "local_code": "MT0090" + }, + { + "id": "35936", + "ident": "SIEK", + "type": "heliport", + "name": "Eurípedes Mineiro de Mello Heliport", + "latitude_deg": "-20.8226", + "longitude_deg": "-49.389891", + "elevation_ft": "1838", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São José do Rio Preto", + "scheduled_service": "no", + "keywords": "SIEK" + }, + { + "id": "35937", + "ident": "SIEL", + "type": "small_airport", + "name": "Fazenda Várzea Funda Airport", + "latitude_deg": "-16.589899", + "longitude_deg": "-57.727698", + "elevation_ft": "659", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SJVF", + "local_code": "MT0230", + "keywords": "SIEL" + }, + { + "id": "35938", + "ident": "SIEM", + "type": "heliport", + "name": "BASF Imigrantes Heliport", + "latitude_deg": "-23.719167709350586", + "longitude_deg": "-46.59944534301758", + "elevation_ft": "2625", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Bernardo Do Campo", + "scheduled_service": "no", + "gps_code": "SIEM" + }, + { + "id": "35939", + "ident": "SIEN", + "type": "small_airport", + "name": "Fazenda São Marcos Airport", + "latitude_deg": "-15.404999732971191", + "longitude_deg": "-53.342220306396484", + "elevation_ft": "1503", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "General Carneiro", + "scheduled_service": "no", + "gps_code": "SIEN" + }, + { + "id": "35940", + "ident": "SIEO", + "type": "heliport", + "name": "AmBev Jaguaríuna Heliport", + "latitude_deg": "-22.710679", + "longitude_deg": "-47.003353", + "elevation_ft": "2192", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jaguaríuna", + "scheduled_service": "no", + "keywords": "SIEO, SIDK" + }, + { + "id": "35941", + "ident": "SIEP", + "type": "heliport", + "name": "Riachuelo - Matriz Helipadt", + "latitude_deg": "-23.501068", + "longitude_deg": "-46.646276", + "elevation_ft": "2595", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIEP", + "local_code": "SP0484" + }, + { + "id": "335343", + "ident": "SIEQ", + "type": "small_airport", + "name": "Fazenda Táua Airport", + "latitude_deg": "-13.306521", + "longitude_deg": "-56.573196", + "elevation_ft": "1099", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Mutum", + "scheduled_service": "no", + "gps_code": "SIEQ", + "local_code": "MT0092" + }, + { + "id": "35942", + "ident": "SIER", + "type": "heliport", + "name": "Cosan Heliport", + "latitude_deg": "-22.632926", + "longitude_deg": "-47.686898", + "elevation_ft": "1667", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Piracicaba", + "scheduled_service": "no", + "gps_code": "SIER", + "local_code": "SP0485" + }, + { + "id": "335344", + "ident": "SIES", + "type": "heliport", + "name": "Ciclade Heliport", + "latitude_deg": "-23.768939", + "longitude_deg": "-45.633259", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Sebastião", + "scheduled_service": "no", + "gps_code": "SIES", + "local_code": "SP0486" + }, + { + "id": "35943", + "ident": "SIET", + "type": "small_airport", + "name": "Estância Tara Airport", + "latitude_deg": "-20.088333129882812", + "longitude_deg": "-56.72472381591797", + "elevation_ft": "607", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "SIET" + }, + { + "id": "35944", + "ident": "SIEU", + "type": "heliport", + "name": "Diamante Heliport", + "latitude_deg": "-22.373442", + "longitude_deg": "-48.69308", + "elevation_ft": "1444", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jaú", + "scheduled_service": "no", + "gps_code": "SIEU", + "local_code": "SP0488" + }, + { + "id": "35945", + "ident": "SIEV", + "type": "small_airport", + "name": "Fazenda Boca da Onça Airport", + "latitude_deg": "-20.767219", + "longitude_deg": "-56.706834", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bodoquena", + "scheduled_service": "no", + "gps_code": "SIEV", + "local_code": "MS0077" + }, + { + "id": "335346", + "ident": "SIEW", + "type": "small_airport", + "name": "Areia Branca Airstrip", + "latitude_deg": "-7.98806", + "longitude_deg": "-61.050532", + "elevation_ft": "279", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Novo Aripuanã", + "scheduled_service": "no", + "gps_code": "SIEW", + "local_code": "AM0031" + }, + { + "id": "335347", + "ident": "SIEX", + "type": "small_airport", + "name": "Fazenda São Joaquim I Airport", + "latitude_deg": "-19.010015", + "longitude_deg": "-50.431983", + "elevation_ft": "1450", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Santa Vitória", + "scheduled_service": "no", + "gps_code": "SIEX", + "local_code": "MG0098" + }, + { + "id": "35946", + "ident": "SIEY", + "type": "heliport", + "name": "Palácio das Mangabeiras Heliport", + "latitude_deg": "-19.953755", + "longitude_deg": "-43.912665", + "elevation_ft": "3825", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SIEY", + "local_code": "MG0225" + }, + { + "id": "35947", + "ident": "SIEZ", + "type": "small_airport", + "name": "Fazenda Pedra Branca Airport", + "latitude_deg": "-24.62416648864746", + "longitude_deg": "-50.45916748046875", + "elevation_ft": "2953", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Tibagi", + "scheduled_service": "no", + "gps_code": "SIEZ" + }, + { + "id": "35948", + "ident": "SIFA", + "type": "small_airport", + "name": "Fazenda Sete Airport", + "latitude_deg": "-19.791055", + "longitude_deg": "-56.476336", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "SIFA", + "local_code": "MS0078" + }, + { + "id": "35949", + "ident": "SIFB", + "type": "heliport", + "name": "Sítio Canhanheiro Heliport", + "latitude_deg": "-23.22358", + "longitude_deg": "-44.685366", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Parati", + "scheduled_service": "no", + "gps_code": "SIFB", + "local_code": "RJ0075" + }, + { + "id": "35950", + "ident": "SIFC", + "type": "small_airport", + "name": "Fazenda Cachoeirinha Airport", + "latitude_deg": "-20.382221221923828", + "longitude_deg": "-56.268890380859375", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "SIFC" + }, + { + "id": "35951", + "ident": "SIFD", + "type": "small_airport", + "name": "Fazenda Dois Irmãos Airport", + "latitude_deg": "-16.387222290039062", + "longitude_deg": "-57.288612365722656", + "elevation_ft": "591", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SIFD" + }, + { + "id": "35952", + "ident": "SIFE", + "type": "small_airport", + "name": "Fazenda Dinorá Airport", + "latitude_deg": "-23.41638946533203", + "longitude_deg": "-50.600833892822266", + "elevation_ft": "2100", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Nova Fátima", + "scheduled_service": "no", + "gps_code": "SIFE" + }, + { + "id": "35953", + "ident": "SIFF", + "type": "small_airport", + "name": "Fazenda Firme Airport", + "latitude_deg": "-19.259443283081055", + "longitude_deg": "-57.01166534423828", + "elevation_ft": "233", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SIFF" + }, + { + "id": "35954", + "ident": "SIFG", + "type": "heliport", + "name": "Life Center Helipad", + "latitude_deg": "-19.935278", + "longitude_deg": "-43.924442", + "elevation_ft": "3287", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SIFG", + "local_code": "MG0226" + }, + { + "id": "35955", + "ident": "SIFH", + "type": "small_airport", + "name": "Santa Rita do Araguaia Airport", + "latitude_deg": "-17.3208", + "longitude_deg": "-53.194", + "elevation_ft": "2490", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Santa Rita do Araguaia", + "scheduled_service": "no", + "keywords": "SIFH" + }, + { + "id": "335365", + "ident": "SIFI", + "type": "heliport", + "name": "Amazonas Business Hotel Heliport", + "latitude_deg": "-3.093079", + "longitude_deg": "-60.02088", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Manaus", + "scheduled_service": "no", + "gps_code": "SIFI", + "local_code": "AM0058" + }, + { + "id": "35956", + "ident": "SIFJ", + "type": "small_airport", + "name": "Fazenda Jurema Airport", + "latitude_deg": "-21.805278778076172", + "longitude_deg": "-54.24638748168945", + "elevation_ft": "709", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Brilhante", + "scheduled_service": "no", + "gps_code": "SIFJ" + }, + { + "id": "35957", + "ident": "SIFK", + "type": "heliport", + "name": "Hospital Santa Tereza Helipad", + "latitude_deg": "-22.508082", + "longitude_deg": "-43.193822", + "elevation_ft": "2752", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Petrópolis", + "scheduled_service": "no", + "gps_code": "SIFK", + "local_code": "RJ0076" + }, + { + "id": "35958", + "ident": "SIFL", + "type": "heliport", + "name": "Solar dos Vianas Heliport", + "latitude_deg": "-16.73583221435547", + "longitude_deg": "-49.11083221435547", + "elevation_ft": "2342", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Senador Canedo", + "scheduled_service": "no", + "gps_code": "SIFL" + }, + { + "id": "35959", + "ident": "SIFM", + "type": "small_airport", + "name": "Fazenda Mudança Airport", + "latitude_deg": "-9.912221908569336", + "longitude_deg": "-60.861942291259766", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Aripuanã", + "scheduled_service": "no", + "gps_code": "SIFM" + }, + { + "id": "35960", + "ident": "SIFN", + "type": "small_airport", + "name": "Fazenda Planura Airport", + "latitude_deg": "-3.593611001968384", + "longitude_deg": "-59.6522216796875", + "elevation_ft": "188", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Autazes", + "scheduled_service": "no", + "gps_code": "SIFN" + }, + { + "id": "335390", + "ident": "SIFP", + "type": "heliport", + "name": "EPCCO Heliport", + "latitude_deg": "-24.524704", + "longitude_deg": "-47.850641", + "elevation_ft": "115", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Registro", + "scheduled_service": "no", + "gps_code": "SIFP", + "local_code": "SP0489" + }, + { + "id": "35961", + "ident": "SIFQ", + "type": "small_airport", + "name": "Condomínio Menega Airport", + "latitude_deg": "-29.044699", + "longitude_deg": "-51.143836", + "elevation_ft": "2566", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Flores Da Cunha", + "scheduled_service": "no", + "gps_code": "SIFQ", + "local_code": "RS0060" + }, + { + "id": "227", + "ident": "SIFR", + "type": "small_airport", + "name": "Fazenda Romaria Airport", + "latitude_deg": "-18.870599746699998", + "longitude_deg": "-47.5593986511", + "elevation_ft": "3297", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Romaria", + "scheduled_service": "no", + "gps_code": "SIFR", + "local_code": "SIFR" + }, + { + "id": "35962", + "ident": "SIFS", + "type": "heliport", + "name": "Iguassu II Heliport", + "latitude_deg": "-25.511388778686523", + "longitude_deg": "-54.58361053466797", + "elevation_ft": "584", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Foz Do Iguaçu", + "scheduled_service": "no", + "gps_code": "SIFS" + }, + { + "id": "35963", + "ident": "SIFT", + "type": "small_airport", + "name": "Fazenda Travessão Airport", + "latitude_deg": "-16.144278", + "longitude_deg": "-60.12017", + "elevation_ft": "906", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SIFT", + "local_code": "MT0094" + }, + { + "id": "35964", + "ident": "SIFU", + "type": "small_airport", + "name": "Fazenda Ribeirão Airport", + "latitude_deg": "-22.415472", + "longitude_deg": "-43.774735", + "elevation_ft": "1319", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Barra Do Piraí", + "scheduled_service": "no", + "gps_code": "SIFU", + "local_code": "RJ0021" + }, + { + "id": "228", + "ident": "SIFV", + "type": "small_airport", + "name": "Primo Bitti Airport", + "latitude_deg": "-19.825829", + "longitude_deg": "-40.102168", + "elevation_ft": "88", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Aracruz", + "scheduled_service": "no", + "gps_code": "SIFV", + "local_code": "ES0008" + }, + { + "id": "35965", + "ident": "SIFW", + "type": "small_airport", + "name": "Fazenda São Lourenço Airport", + "latitude_deg": "-17.719113", + "longitude_deg": "-56.996706", + "elevation_ft": "400", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SIFW", + "local_code": "MS0084" + }, + { + "id": "35966", + "ident": "SIFX", + "type": "heliport", + "name": "Secretaria da Agricultura Heliport", + "latitude_deg": "-23.647777557373047", + "longitude_deg": "-46.627777099609375", + "elevation_ft": "2608", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIFX" + }, + { + "id": "35967", + "ident": "SIFY", + "type": "small_airport", + "name": "Fazenda Yndiana Airport", + "latitude_deg": "-21.77833366394043", + "longitude_deg": "-57.49583435058594", + "elevation_ft": "607", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SIFY" + }, + { + "id": "35968", + "ident": "SIFZ", + "type": "heliport", + "name": "Hungria 1100 Heliport", + "latitude_deg": "-23.577813", + "longitude_deg": "-46.69435", + "elevation_ft": "2514", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIFZ", + "local_code": "SP0491" + }, + { + "id": "35969", + "ident": "SIGA", + "type": "heliport", + "name": "Jardin Guanabara Heliport", + "latitude_deg": "-22.809722900390625", + "longitude_deg": "-43.21027755737305", + "elevation_ft": "210", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SIGA" + }, + { + "id": "35970", + "ident": "SIGB", + "type": "heliport", + "name": "Morma II Heliport", + "latitude_deg": "-28.042989", + "longitude_deg": "-48.625692", + "elevation_ft": "171", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Garopaba", + "scheduled_service": "no", + "gps_code": "SIGB", + "local_code": "SC0050" + }, + { + "id": "35971", + "ident": "SIGC", + "type": "heliport", + "name": "Porto Cubatão Heliport", + "latitude_deg": "-24.975278854370117", + "longitude_deg": "-47.94472122192383", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cananéia", + "scheduled_service": "no", + "gps_code": "SIGC" + }, + { + "id": "35972", + "ident": "SIGD", + "type": "heliport", + "name": "Gota Dourada Heliport", + "latitude_deg": "-21.008056640625", + "longitude_deg": "-47.65861129760742", + "elevation_ft": "2848", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Brodowski", + "scheduled_service": "no", + "gps_code": "SIGD" + }, + { + "id": "35973", + "ident": "SIGE", + "type": "heliport", + "name": "Lagoa do Cavalo Heliport", + "latitude_deg": "-8.172905", + "longitude_deg": "-35.638233", + "elevation_ft": "1722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Gravatá", + "scheduled_service": "no", + "gps_code": "SNNT", + "local_code": "PE0046", + "keywords": "SIGE" + }, + { + "id": "229", + "ident": "SIGF", + "type": "small_airport", + "name": "Fazenda Jopejó Airport", + "latitude_deg": "-15", + "longitude_deg": "-55.82500076293945", + "elevation_ft": "1020", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Chapada Dos Guimarães", + "scheduled_service": "no", + "gps_code": "SIGF", + "local_code": "SIGF" + }, + { + "id": "35974", + "ident": "SIGG", + "type": "heliport", + "name": "Auto Viação Reginas II Heliport", + "latitude_deg": "-22.66055679321289", + "longitude_deg": "-43.04722213745117", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Magé", + "scheduled_service": "no", + "gps_code": "SIGG" + }, + { + "id": "44438", + "ident": "SIGH", + "type": "heliport", + "name": "Adalberto S. Monturil Heliport", + "latitude_deg": "-16.70916748046875", + "longitude_deg": "-49.26194381713867", + "elevation_ft": "2759", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiânia", + "scheduled_service": "no", + "gps_code": "SIGH" + }, + { + "id": "35975", + "ident": "SIGI", + "type": "heliport", + "name": "Gabinete Militar Heliport", + "latitude_deg": "-16.681998", + "longitude_deg": "-49.255995", + "elevation_ft": "2523", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiânia", + "scheduled_service": "no", + "gps_code": "SWGB", + "local_code": "GO0175", + "keywords": "SIGI" + }, + { + "id": "35976", + "ident": "SIGJ", + "type": "heliport", + "name": "Hospital Central da Aeronáutica Helipad", + "latitude_deg": "-22.920117", + "longitude_deg": "-43.211594", + "elevation_ft": "103", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SIGJ", + "local_code": "RJ9006", + "home_link": "https://www2.fab.mil.br/hca/" + }, + { + "id": "35977", + "ident": "SIGK", + "type": "heliport", + "name": "CD Guarulhos Helipad", + "latitude_deg": "-23.446839", + "longitude_deg": "-46.444563", + "elevation_ft": "2648", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarulhos", + "scheduled_service": "no", + "gps_code": "SIGK", + "local_code": "SP0493" + }, + { + "id": "35978", + "ident": "SIGL", + "type": "closed", + "name": "Fazenda Boa Sorte Airport", + "latitude_deg": "-21.907733", + "longitude_deg": "-53.513975", + "elevation_ft": "1099", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Andradina", + "scheduled_service": "no", + "keywords": "SIGL" + }, + { + "id": "35979", + "ident": "SIGM", + "type": "small_airport", + "name": "Fazenda São Benedito Airport", + "latitude_deg": "-16.27055549621582", + "longitude_deg": "-57.86277770996094", + "elevation_ft": "469", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SIGM" + }, + { + "id": "35980", + "ident": "SIGN", + "type": "small_airport", + "name": "Asa Delta Airport", + "latitude_deg": "-15.571389198303223", + "longitude_deg": "-53.233612060546875", + "elevation_ft": "1585", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "General Carneiro", + "scheduled_service": "no", + "gps_code": "SIGN" + }, + { + "id": "35981", + "ident": "SIGO", + "type": "small_airport", + "name": "Fazenda Araguari Airport", + "latitude_deg": "-13.336665", + "longitude_deg": "-53.957779", + "elevation_ft": "2126", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Gaúcha do Norte", + "scheduled_service": "no", + "gps_code": "SJAA", + "local_code": "MT0161", + "keywords": "SIGO" + }, + { + "id": "335406", + "ident": "SIGP", + "type": "heliport", + "name": "Rio - Bravo Helipad", + "latitude_deg": "-22.909286", + "longitude_deg": "-43.181956", + "elevation_ft": "495", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SIGP", + "local_code": "RJ0078" + }, + { + "id": "35982", + "ident": "SIGQ", + "type": "heliport", + "name": "Aeroclube CSN - Companhia Siderúrgica Nacional Heliport", + "latitude_deg": "-22.499642", + "longitude_deg": "-44.081687", + "elevation_ft": "1234", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Volta Redonda", + "scheduled_service": "no", + "gps_code": "SIGQ", + "local_code": "RJ0079" + }, + { + "id": "35984", + "ident": "SIGS", + "type": "small_airport", + "name": "Fazenda Granja Santiago Airport", + "latitude_deg": "-17.162222", + "longitude_deg": "-46.66", + "elevation_ft": "1946", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Paracatu", + "scheduled_service": "no", + "gps_code": "SIGA", + "local_code": "MG0099", + "keywords": "SIGS" + }, + { + "id": "35985", + "ident": "SIGT", + "type": "small_airport", + "name": "Fazenda Goiabeira Airport", + "latitude_deg": "-23.989445", + "longitude_deg": "-49.179169", + "elevation_ft": "2260", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itaberá", + "scheduled_service": "no", + "gps_code": "SIGT", + "local_code": "SP0177" + }, + { + "id": "35986", + "ident": "SIGU", + "type": "small_airport", + "name": "Fazenda San Jose I Airport", + "latitude_deg": "-19.815147", + "longitude_deg": "-53.827834", + "elevation_ft": "2116", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SI6A", + "local_code": "MS0660", + "keywords": "SIGU, Fazenda Café no Bule" + }, + { + "id": "35987", + "ident": "SIGV", + "type": "heliport", + "name": "Rede Record Helipad", + "latitude_deg": "-23.523759", + "longitude_deg": "-46.66253", + "elevation_ft": "2412", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIGV", + "local_code": "SP0497" + }, + { + "id": "35988", + "ident": "SIGW", + "type": "small_airport", + "name": "Estância Miranda Airport", + "latitude_deg": "-21.914443969726562", + "longitude_deg": "-57.143890380859375", + "elevation_ft": "640", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Caracol", + "scheduled_service": "no", + "gps_code": "SIGW" + }, + { + "id": "35989", + "ident": "SIGX", + "type": "small_airport", + "name": "Fazenda Gairova Airport", + "latitude_deg": "-11.198073", + "longitude_deg": "-58.235682", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juara", + "scheduled_service": "no", + "gps_code": "SIGX", + "local_code": "MT0095" + }, + { + "id": "35990", + "ident": "SIGY", + "type": "small_airport", + "name": "Fazenda Progresso Airport", + "latitude_deg": "-7.5025000572205", + "longitude_deg": "-44.20333480835", + "elevation_ft": "1476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Sebastião Leal", + "scheduled_service": "no", + "gps_code": "SWUV", + "local_code": "SWUV", + "keywords": "SIGY" + }, + { + "id": "35991", + "ident": "SIGZ", + "type": "heliport", + "name": "Represa Helipad", + "latitude_deg": "-23.617111", + "longitude_deg": "-46.698911", + "elevation_ft": "2835", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIGZ", + "local_code": "SP0498", + "keywords": "Banco de Boston II" + }, + { + "id": "35992", + "ident": "SIHA", + "type": "heliport", + "name": "Hotel Ariau Amazon Towers Heliport", + "latitude_deg": "-3.090037", + "longitude_deg": "-60.438731", + "elevation_ft": "99", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Iranduba", + "scheduled_service": "no", + "keywords": "SIHA, SIAH" + }, + { + "id": "35993", + "ident": "SIHB", + "type": "small_airport", + "name": "Fazenda Soberana Airport", + "latitude_deg": "-5.455833", + "longitude_deg": "-46.0625", + "elevation_ft": "417", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Grajaú", + "scheduled_service": "no", + "gps_code": "SIHB", + "local_code": "MA0019" + }, + { + "id": "35994", + "ident": "SIHC", + "type": "heliport", + "name": "Cel PM Cícero Dantas dos Santos Heliport", + "latitude_deg": "-20.293511", + "longitude_deg": "-40.312475", + "elevation_ft": "62", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Vitória", + "scheduled_service": "no", + "gps_code": "SIHC", + "local_code": "ES0016" + }, + { + "id": "35995", + "ident": "SIHD", + "type": "heliport", + "name": "Divena Helipad", + "latitude_deg": "-23.598422", + "longitude_deg": "-46.622382", + "elevation_ft": "2473", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIHD", + "local_code": "SP0499" + }, + { + "id": "35996", + "ident": "SIHE", + "type": "heliport", + "name": "Mendes Heliport", + "latitude_deg": "-23.959793", + "longitude_deg": "-46.335644", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santos", + "scheduled_service": "no", + "gps_code": "SIRB", + "local_code": "SP0544", + "keywords": "SIHE" + }, + { + "id": "35997", + "ident": "SIHF", + "type": "heliport", + "name": "Campo de Exposições Torto Heliport", + "latitude_deg": "-15.70444393157959", + "longitude_deg": "-47.920555114746094", + "elevation_ft": "3445", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SIHF" + }, + { + "id": "35998", + "ident": "SIHG", + "type": "small_airport", + "name": "Fazenda Ponderosa Airport", + "latitude_deg": "-10.071666717529297", + "longitude_deg": "-49.99555587768555", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Pium", + "scheduled_service": "no", + "gps_code": "SIHG" + }, + { + "id": "35999", + "ident": "SIHH", + "type": "heliport", + "name": "Hotel Intercontinental Heliport", + "latitude_deg": "-22.997777938842773", + "longitude_deg": "-43.261112213134766", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SIHH" + }, + { + "id": "36000", + "ident": "SIHI", + "type": "small_airport", + "name": "Fazenda Itaipavas Airport", + "latitude_deg": "-6.620254", + "longitude_deg": "-48.995762", + "elevation_ft": "633", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Piçarras", + "scheduled_service": "no", + "gps_code": "SIHI", + "local_code": "PA0046" + }, + { + "id": "36001", + "ident": "SIHJ", + "type": "small_airport", + "name": "Sítio Flyer Airport", + "latitude_deg": "-10.108056", + "longitude_deg": "-48.326389", + "elevation_ft": "958", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Palmas", + "scheduled_service": "no", + "gps_code": "SJCF", + "local_code": "TO0060", + "keywords": "SDNB, SIHJ" + }, + { + "id": "36002", + "ident": "SIHK", + "type": "heliport", + "name": "Hospital Santa Catarina Heliport", + "latitude_deg": "-23.569052", + "longitude_deg": "-46.645632", + "elevation_ft": "2864", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIHK", + "local_code": "SP0500" + }, + { + "id": "36003", + "ident": "SIHL", + "type": "heliport", + "name": "Rio Centro Heliport", + "latitude_deg": "-22.97978", + "longitude_deg": "-43.409434", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SIHL", + "local_code": "RJ0081" + }, + { + "id": "36004", + "ident": "SIHM", + "type": "heliport", + "name": "Dragão do Ar Heliport", + "latitude_deg": "-3.81095", + "longitude_deg": "-38.434242", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SIHM", + "local_code": "CE0033" + }, + { + "id": "36005", + "ident": "SIHN", + "type": "small_airport", + "name": "Estância Vacadiga Airport", + "latitude_deg": "-21.79861068725586", + "longitude_deg": "-56.571388244628906", + "elevation_ft": "936", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bela Vista", + "scheduled_service": "no", + "gps_code": "SIHN" + }, + { + "id": "36006", + "ident": "SIHO", + "type": "heliport", + "name": "Kia Helipad", + "latitude_deg": "-23.284104", + "longitude_deg": "-47.290939", + "elevation_ft": "2080", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itu", + "scheduled_service": "no", + "gps_code": "SIHO", + "local_code": "SP0501" + }, + { + "id": "36007", + "ident": "SIHQ", + "type": "heliport", + "name": "Águas Claras Official Residence Heliport I", + "latitude_deg": "-15.829291", + "longitude_deg": "-48.02886", + "elevation_ft": "3757", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SIHQ", + "local_code": "DF0012" + }, + { + "id": "36008", + "ident": "SIHR", + "type": "heliport", + "name": "Roberta Lombardi Heliport", + "latitude_deg": "-19.952499389648438", + "longitude_deg": "-43.91749954223633", + "elevation_ft": "3602", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SIHR" + }, + { + "id": "36009", + "ident": "SIHS", + "type": "heliport", + "name": "Edifício Faria Lima Premium Heliport", + "latitude_deg": "-23.773056030273438", + "longitude_deg": "-46.592220306396484", + "elevation_ft": "2700", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIHS" + }, + { + "id": "36010", + "ident": "SIHT", + "type": "heliport", + "name": "Tanguá Heliport", + "latitude_deg": "-23.00213", + "longitude_deg": "-44.353148", + "elevation_ft": "222", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SIHT", + "local_code": "RJ0082" + }, + { + "id": "36011", + "ident": "SIHU", + "type": "heliport", + "name": "Unimed Heliport", + "latitude_deg": "-21.782222747802734", + "longitude_deg": "-46.592220306396484", + "elevation_ft": "3924", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Poços De Caldas", + "scheduled_service": "no", + "gps_code": "SIHU" + }, + { + "id": "36012", + "ident": "SIHV", + "type": "small_airport", + "name": "Fazenda Boa Sorte Airport", + "latitude_deg": "-17.211111068725586", + "longitude_deg": "-46.614444732666016", + "elevation_ft": "2002", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Paracatu", + "scheduled_service": "no", + "gps_code": "SIHV" + }, + { + "id": "36013", + "ident": "SIHW", + "type": "small_airport", + "name": "Agrishow Airport", + "latitude_deg": "-21.211237", + "longitude_deg": "-47.865781", + "elevation_ft": "1952", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Preto", + "scheduled_service": "no", + "gps_code": "SIHW", + "local_code": "SP0180" + }, + { + "id": "36014", + "ident": "SIHX", + "type": "heliport", + "name": "Hospital da Bahia Heliport", + "latitude_deg": "-12.987727", + "longitude_deg": "-38.450872", + "elevation_ft": "105", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Salvador", + "scheduled_service": "no", + "gps_code": "SJOB", + "local_code": "BA0209", + "keywords": "SIHX" + }, + { + "id": "36015", + "ident": "SIHY", + "type": "heliport", + "name": "Mont Blanc Heliport", + "latitude_deg": "-22.746389389038086", + "longitude_deg": "-45.55472183227539", + "elevation_ft": "6102", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campos Do Jordão", + "scheduled_service": "no", + "gps_code": "SIHY" + }, + { + "id": "36016", + "ident": "SIHZ", + "type": "heliport", + "name": "Nannai Resort e Spa Heliport", + "latitude_deg": "-8.431876", + "longitude_deg": "-34.98137", + "elevation_ft": "9", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Ipojuca", + "scheduled_service": "no", + "gps_code": "SIHZ", + "local_code": "PE0028", + "keywords": "Nannai Beach Resort" + }, + { + "id": "36017", + "ident": "SIIA", + "type": "small_airport", + "name": "Fazenda Paraná Airport", + "latitude_deg": "-11.7", + "longitude_deg": "-58.218056", + "elevation_ft": "653", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SIIA", + "local_code": "MT0097" + }, + { + "id": "36018", + "ident": "SIIB", + "type": "heliport", + "name": "Suiço Heliport", + "latitude_deg": "-23.3799991607666", + "longitude_deg": "-46.606388092041016", + "elevation_ft": "3189", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mairiporã", + "scheduled_service": "no", + "gps_code": "SIIB" + }, + { + "id": "36019", + "ident": "SIIC", + "type": "heliport", + "name": "Caragoatá Heliport", + "latitude_deg": "-23.243658", + "longitude_deg": "-44.595978", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Parati", + "scheduled_service": "no", + "gps_code": "SJSP", + "local_code": "RJ0112", + "keywords": "SIIC" + }, + { + "id": "36020", + "ident": "SIID", + "type": "small_airport", + "name": "Crepurizão Airport", + "latitude_deg": "-6.819947", + "longitude_deg": "-56.841396", + "elevation_ft": "623", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SBOJ", + "local_code": "PA0165", + "keywords": "SIID" + }, + { + "id": "36021", + "ident": "SIIE", + "type": "small_airport", + "name": "Fazenda Cachoeira Branca Airport", + "latitude_deg": "-20.891107", + "longitude_deg": "-53.406103", + "elevation_ft": "1063", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas Do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SIFN", + "local_code": "MS0082", + "keywords": "SIIE" + }, + { + "id": "36022", + "ident": "SIIF", + "type": "heliport", + "name": "Valparaíso Heliport", + "latitude_deg": "-21.329036", + "longitude_deg": "-50.950942", + "elevation_ft": "1181", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Valparaíso", + "scheduled_service": "no", + "local_code": "SP0503", + "keywords": "SIIF" + }, + { + "id": "36023", + "ident": "SIIG", + "type": "small_airport", + "name": "Eliza Camargo de Arruda Botelho Airport", + "latitude_deg": "-22.359959", + "longitude_deg": "-51.101661", + "elevation_ft": "1756", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Rancharia", + "scheduled_service": "no", + "gps_code": "SIIG", + "local_code": "SP0182" + }, + { + "id": "36024", + "ident": "SIIH", + "type": "heliport", + "name": "Torre 2000 Heliport", + "latitude_deg": "-23.566623", + "longitude_deg": "-46.686423", + "elevation_ft": "2730", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIIH", + "local_code": "SP0504" + }, + { + "id": "29923", + "ident": "SIII", + "type": "small_airport", + "name": "Doutor Heráclito da Motta Luiz Airport", + "latitude_deg": "-20.433126", + "longitude_deg": "-48.225367", + "elevation_ft": "1798", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guaíra", + "scheduled_service": "no", + "gps_code": "SIII", + "local_code": "SP0183" + }, + { + "id": "335443", + "ident": "SIIJ", + "type": "small_airport", + "name": "São Geraldo Airport", + "latitude_deg": "-21.260487", + "longitude_deg": "-56.568099", + "elevation_ft": "1099", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bonito", + "scheduled_service": "no", + "gps_code": "SIIJ", + "local_code": "MS0086" + }, + { + "id": "36025", + "ident": "SIIK", + "type": "small_airport", + "name": "Fazenda Santa Lídia Airport", + "latitude_deg": "-20.721889", + "longitude_deg": "-53.687986", + "elevation_ft": "1371", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas Do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SIIK", + "local_code": "MS0087" + }, + { + "id": "36026", + "ident": "SIIL", + "type": "heliport", + "name": "Ilha da Jipóia Heliport", + "latitude_deg": "-23.04861068725586", + "longitude_deg": "-44.34749984741211", + "elevation_ft": "190", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SIIL" + }, + { + "id": "36027", + "ident": "SIIM", + "type": "small_airport", + "name": "Fazenda Giruá Airport", + "latitude_deg": "-18.803423", + "longitude_deg": "-54.851448", + "elevation_ft": "1394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Verde Do Mato Grosso", + "scheduled_service": "no", + "gps_code": "SNFW", + "local_code": "MS0206", + "keywords": "SIIM" + }, + { + "id": "36028", + "ident": "SIIN", + "type": "small_airport", + "name": "Independência Airport", + "latitude_deg": "-7.594391", + "longitude_deg": "-56.699019", + "elevation_ft": "1040", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SITT", + "local_code": "PA0058", + "keywords": "SIIN" + }, + { + "id": "36029", + "ident": "SIIO", + "type": "heliport", + "name": "Itaorna Heliport", + "latitude_deg": "-23.005142", + "longitude_deg": "-44.465758", + "elevation_ft": "157", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SIIO", + "local_code": "RJ0084" + }, + { + "id": "36030", + "ident": "SIIP", + "type": "heliport", + "name": "Quinta da Baroneza I Heliport", + "latitude_deg": "-22.977222", + "longitude_deg": "-46.703888", + "elevation_ft": "2487", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Bragança Paulista", + "scheduled_service": "no", + "gps_code": "SIQT", + "local_code": "SP0543", + "keywords": "SIIP" + }, + { + "id": "36031", + "ident": "SIIQ", + "type": "small_airport", + "name": "Fazenda Aracoxim Airport", + "latitude_deg": "-17.3974990845", + "longitude_deg": "-53.718612670899994", + "elevation_ft": "2198", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Sonora", + "scheduled_service": "no", + "gps_code": "SIIQ" + }, + { + "id": "36032", + "ident": "SIIR", + "type": "heliport", + "name": "Brascam Century Plaza Heliport", + "latitude_deg": "-23.583998", + "longitude_deg": "-46.675576", + "elevation_ft": "2761", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIIR", + "local_code": "SP0506" + }, + { + "id": "36033", + "ident": "SIIS", + "type": "small_airport", + "name": "Fazenda Uberaba Airport", + "latitude_deg": "-23.65", + "longitude_deg": "-53.830276", + "elevation_ft": "1100", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Vila Alta", + "scheduled_service": "no", + "gps_code": "SIIS", + "local_code": "PR0044" + }, + { + "id": "335449", + "ident": "SIIT", + "type": "small_airport", + "name": "Fazenda Cachoeira Airport", + "latitude_deg": "-20.759998", + "longitude_deg": "-55.572227", + "elevation_ft": "1188", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Anastácio", + "scheduled_service": "no", + "gps_code": "SIIT", + "local_code": "MS0088" + }, + { + "id": "36034", + "ident": "SIIU", + "type": "small_airport", + "name": "Santa Marta Airport", + "latitude_deg": "-19.642052", + "longitude_deg": "-48.712231", + "elevation_ft": "2218", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Campo Florido", + "scheduled_service": "no", + "gps_code": "SIIU", + "local_code": "MG0101" + }, + { + "id": "335450", + "ident": "SIIV", + "type": "heliport", + "name": "Kekafly II Heliport", + "latitude_deg": "-27.089266", + "longitude_deg": "-48.915188", + "elevation_ft": "115", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Brusque", + "scheduled_service": "no", + "gps_code": "SIIV", + "local_code": "SC0054" + }, + { + "id": "36035", + "ident": "SIIW", + "type": "heliport", + "name": "TECNET 2 Helipad", + "latitude_deg": "-23.454078", + "longitude_deg": "-46.869999", + "elevation_ft": "2899", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santana Do Parnaíba", + "scheduled_service": "no", + "gps_code": "SIIW", + "local_code": "SP0507" + }, + { + "id": "36036", + "ident": "SIIX", + "type": "small_airport", + "name": "Fazenda Córrego Fundo Airport", + "latitude_deg": "-13.736944", + "longitude_deg": "-52.589443", + "elevation_ft": "1207", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Água Boa", + "scheduled_service": "no", + "keywords": "SJCF, SIIX" + }, + { + "id": "36037", + "ident": "SIIY", + "type": "heliport", + "name": "Brasil XXI Heliport", + "latitude_deg": "-15.792832", + "longitude_deg": "-47.89391", + "elevation_ft": "3901", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SIIY", + "local_code": "DF0013" + }, + { + "id": "36038", + "ident": "SIIZ", + "type": "small_airport", + "name": "Fazenda Chalana Airport", + "latitude_deg": "-14.165164", + "longitude_deg": "-57.158732", + "elevation_ft": "1785", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "gps_code": "SSZB", + "local_code": "MT0474", + "keywords": "SIIZ" + }, + { + "id": "36039", + "ident": "SIJB", + "type": "heliport", + "name": "Jambo Heliport", + "latitude_deg": "-3.211667060852051", + "longitude_deg": "-39.4202766418457", + "elevation_ft": "72", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Trairi", + "scheduled_service": "no", + "gps_code": "SIJB" + }, + { + "id": "36040", + "ident": "SIJC", + "type": "heliport", + "name": "Hotel Campos do Jordão Heliport", + "latitude_deg": "-22.717777252197266", + "longitude_deg": "-45.53138732910156", + "elevation_ft": "5381", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campos Do Jordão", + "scheduled_service": "no", + "gps_code": "SIJC" + }, + { + "id": "36041", + "ident": "SIJD", + "type": "heliport", + "name": "João Dias Helipad", + "latitude_deg": "-23.643649", + "longitude_deg": "-46.717826", + "elevation_ft": "2533", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIJD", + "local_code": "SP0510" + }, + { + "id": "36042", + "ident": "SIJE", + "type": "small_airport", + "name": "Fazenda Joana Estãncia Airport", + "latitude_deg": "-20.013385", + "longitude_deg": "-57.389231", + "elevation_ft": "476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SIJE", + "local_code": "MS0089" + }, + { + "id": "36043", + "ident": "SIJF", + "type": "heliport", + "name": "Edifício Faria Lima Financial Center Heliport", + "latitude_deg": "-23.58596", + "longitude_deg": "-46.683376", + "elevation_ft": "2693", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIJF", + "local_code": "SP0511" + }, + { + "id": "36044", + "ident": "SIJG", + "type": "small_airport", + "name": "Fazenda Jaguaretê Airport", + "latitude_deg": "-21.443322", + "longitude_deg": "-50.725465", + "elevation_ft": "1290", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guararapes", + "scheduled_service": "no", + "gps_code": "SIJG", + "local_code": "SP0184" + }, + { + "id": "36045", + "ident": "SIJH", + "type": "heliport", + "name": "Cosipa Heliport", + "latitude_deg": "-23.860000610351562", + "longitude_deg": "-46.3849983215332", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cubatão", + "scheduled_service": "no", + "gps_code": "SIJH" + }, + { + "id": "36046", + "ident": "SIJI", + "type": "heliport", + "name": "Petrobrás - São José dos Campos Heliport", + "latitude_deg": "-23.182371", + "longitude_deg": "-45.817183", + "elevation_ft": "2051", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São José Dos Campos", + "scheduled_service": "no", + "gps_code": "SIJI", + "local_code": "SP0512" + }, + { + "id": "36047", + "ident": "SIJJ", + "type": "small_airport", + "name": "Fazenda Salamanca Airport", + "latitude_deg": "-22.808610916099997", + "longitude_deg": "-55.533332824700004", + "elevation_ft": "1181", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aral Moreira", + "scheduled_service": "no", + "gps_code": "SIJJ" + }, + { + "id": "36048", + "ident": "SIJK", + "type": "small_airport", + "name": "Vazante Airport", + "latitude_deg": "-17.955", + "longitude_deg": "-46.861668", + "elevation_ft": "2457", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Vazante", + "scheduled_service": "no", + "gps_code": "SSAT", + "local_code": "MG0176", + "keywords": "SIJK" + }, + { + "id": "36049", + "ident": "SIJL", + "type": "heliport", + "name": "Cimento Tupi Heliport", + "latitude_deg": "-22.52111053466797", + "longitude_deg": "-44.12944412231445", + "elevation_ft": "1320", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Volta Redonda", + "scheduled_service": "no", + "gps_code": "SIJL" + }, + { + "id": "36050", + "ident": "SIJM", + "type": "small_airport", + "name": "Fazenda Santa Maria do Porto da Capivara Airport", + "latitude_deg": "-17.144444", + "longitude_deg": "-56.597778", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão De Melgaço", + "scheduled_service": "no", + "gps_code": "SJHK", + "local_code": "MT0177", + "keywords": "SIJM" + }, + { + "id": "329428", + "ident": "SIJN", + "type": "small_airport", + "name": "Pouso na Serra Airport", + "latitude_deg": "-27.863333", + "longitude_deg": "-49.578333", + "elevation_ft": "2881", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Bom Retiro", + "scheduled_service": "no", + "gps_code": "SIJN", + "local_code": "SC0026" + }, + { + "id": "46210", + "ident": "SIJO", + "type": "small_airport", + "name": "Fazenda São João do Jatobazinho Airport", + "latitude_deg": "-18.577222", + "longitude_deg": "-57.511111", + "elevation_ft": "381", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SIJO", + "local_code": "MS0091" + }, + { + "id": "36051", + "ident": "SIJP", + "type": "heliport", + "name": "Bolsa-RJ Heliport", + "latitude_deg": "-22.902269", + "longitude_deg": "-43.174295", + "elevation_ft": "161", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SIJP", + "local_code": "RJ0085" + }, + { + "id": "36052", + "ident": "SIJQ", + "type": "heliport", + "name": "Ryhad Palace Hotel Helipad", + "latitude_deg": "-25.582584", + "longitude_deg": "-49.396983", + "elevation_ft": "3081", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Araucária", + "scheduled_service": "no", + "gps_code": "SJRL", + "local_code": "PR0124", + "keywords": "SIJQ" + }, + { + "id": "36053", + "ident": "SIJR", + "type": "small_airport", + "name": "Ely Rego Airport", + "latitude_deg": "-25.539024", + "longitude_deg": "-49.60236", + "elevation_ft": "2592", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Balsa Nova", + "scheduled_service": "no", + "gps_code": "SIJR", + "local_code": "PR0045" + }, + { + "id": "329425", + "ident": "SIJS", + "type": "small_airport", + "name": "Fazenda Tonga Airport", + "latitude_deg": "-3.45472", + "longitude_deg": "-47.528613", + "elevation_ft": "561", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Paragominas", + "scheduled_service": "no", + "gps_code": "SIJS", + "local_code": "PA0048" + }, + { + "id": "36054", + "ident": "SIJT", + "type": "heliport", + "name": "Mina 3 Heliport", + "latitude_deg": "-21.750123", + "longitude_deg": "-41.303068", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Campos Dos Goytacazes", + "scheduled_service": "no", + "gps_code": "SIJT", + "local_code": "RJ0086" + }, + { + "id": "36055", + "ident": "SIJU", + "type": "small_airport", + "name": "Fazenda Areia Branca Airport", + "latitude_deg": "-11.790368", + "longitude_deg": "-58.456117", + "elevation_ft": "1073", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juína", + "scheduled_service": "no", + "gps_code": "SIJU", + "local_code": "MT0100" + }, + { + "id": "329422", + "ident": "SIJV", + "type": "small_airport", + "name": "Fazenda Santa Julieta Airport", + "latitude_deg": "-21.579521", + "longitude_deg": "-49.874464", + "elevation_ft": "1394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Promissão", + "scheduled_service": "no", + "gps_code": "SIJV", + "local_code": "SIJV" + }, + { + "id": "36056", + "ident": "SIJW", + "type": "heliport", + "name": "Hospital e Maternidade Santa Marina Heliport", + "latitude_deg": "-23.656944274900003", + "longitude_deg": "-46.6527786255", + "elevation_ft": "2710", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIJW" + }, + { + "id": "36057", + "ident": "SIJX", + "type": "heliport", + "name": "Internacional Plaza Heliport", + "latitude_deg": "-23.591255", + "longitude_deg": "-46.6816", + "elevation_ft": "2615", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIJX", + "local_code": "SP0513" + }, + { + "id": "329420", + "ident": "SIJY", + "type": "small_airport", + "name": "Campo Comandantes Airport", + "latitude_deg": "-26.983055", + "longitude_deg": "-48.816387", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Itajaí", + "scheduled_service": "no", + "gps_code": "SIJY", + "local_code": "SC0027", + "keywords": "Itajaí/Campo Comandantes" + }, + { + "id": "36058", + "ident": "SIJZ", + "type": "small_airport", + "name": "Fazenda Vera Paz Airport", + "latitude_deg": "-7.394722", + "longitude_deg": "-56.764721", + "elevation_ft": "801", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SIJZ", + "local_code": "PA0049" + }, + { + "id": "329418", + "ident": "SIKA", + "type": "small_airport", + "name": "Fazenda Alegria II Airport", + "latitude_deg": "-23.110556", + "longitude_deg": "-54.558055", + "elevation_ft": "1191", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Amambai", + "scheduled_service": "no", + "gps_code": "SIKA", + "local_code": "MS0094" + }, + { + "id": "36059", + "ident": "SIKB", + "type": "heliport", + "name": "Kekafly I Heliport", + "latitude_deg": "-27.0829", + "longitude_deg": "-48.9254", + "elevation_ft": "129", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Brusque", + "scheduled_service": "no", + "gps_code": "SIKB", + "local_code": "SC0055" + }, + { + "id": "36060", + "ident": "SIKC", + "type": "small_airport", + "name": "Colider Airport", + "latitude_deg": "-10.760403", + "longitude_deg": "-55.462283", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Colider", + "scheduled_service": "no", + "gps_code": "SWCD", + "local_code": "MT0330", + "keywords": "SIKC" + }, + { + "id": "36061", + "ident": "SIKD", + "type": "heliport", + "name": "SODEPA Heliport", + "latitude_deg": "-23.573529", + "longitude_deg": "-46.70449", + "elevation_ft": "2402", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIKD", + "local_code": "SP0515" + }, + { + "id": "36062", + "ident": "SIKE", + "type": "heliport", + "name": "Wobben Windpower Heliport", + "latitude_deg": "-3.620365", + "longitude_deg": "-38.848136", + "elevation_ft": "200", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Caucaia", + "scheduled_service": "no", + "gps_code": "SIKE", + "local_code": "CE0035" + }, + { + "id": "36063", + "ident": "SIKF", + "type": "heliport", + "name": "Plaza Iguatemi Heliport", + "latitude_deg": "-23.576687", + "longitude_deg": "-46.686659", + "elevation_ft": "2722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIKF", + "local_code": "SP0516" + }, + { + "id": "36064", + "ident": "SIKH", + "type": "heliport", + "name": "Hotel Vitória Heliport", + "latitude_deg": "-23.085377", + "longitude_deg": "-47.183039", + "elevation_ft": "1972", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Indaiatuba", + "scheduled_service": "no", + "gps_code": "SIKH", + "local_code": "SP0518" + }, + { + "id": "45567", + "ident": "SIKI", + "type": "heliport", + "name": "Txai Resort Itacaré Heliport", + "latitude_deg": "-14.377818", + "longitude_deg": "-39.011089", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Itacaré", + "scheduled_service": "no", + "gps_code": "SIXN", + "local_code": "BA0197", + "keywords": "SIKI" + }, + { + "id": "36065", + "ident": "SIKJ", + "type": "small_airport", + "name": "Fazenda Cristalino Airport", + "latitude_deg": "-9.667778015136719", + "longitude_deg": "-55.97666549682617", + "elevation_ft": "919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alta Floresta", + "scheduled_service": "no", + "gps_code": "SIKJ" + }, + { + "id": "36066", + "ident": "SIKK", + "type": "small_airport", + "name": "Calciolândia Airport", + "latitude_deg": "-20.250557", + "longitude_deg": "-45.645", + "elevation_ft": "2180", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Arcos", + "scheduled_service": "no", + "gps_code": "SIKK", + "local_code": "MG0102" + }, + { + "id": "36067", + "ident": "SIKL", + "type": "heliport", + "name": "Flamboyant Heliport", + "latitude_deg": "-16.709683", + "longitude_deg": "-49.238711", + "elevation_ft": "2739", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiânia", + "scheduled_service": "no", + "gps_code": "SIKL", + "local_code": "GO0158" + }, + { + "id": "36068", + "ident": "SIKM", + "type": "small_airport", + "name": "Fazenda Viamão Airport", + "latitude_deg": "-5.289167", + "longitude_deg": "-46.001667", + "elevation_ft": "863", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Arame", + "scheduled_service": "no", + "gps_code": "SIKM", + "local_code": "MA0020" + }, + { + "id": "36069", + "ident": "SIKN", + "type": "small_airport", + "name": "Fazenda Bonanza Airport", + "latitude_deg": "-5.157222", + "longitude_deg": "-45.915558", + "elevation_ft": "928", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Arame", + "scheduled_service": "no", + "gps_code": "SIKN", + "local_code": "MA0021" + }, + { + "id": "36070", + "ident": "SIKO", + "type": "small_airport", + "name": "Fazenda Pison Airport", + "latitude_deg": "-5.019999980926514", + "longitude_deg": "-57.780277252197266", + "elevation_ft": "541", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Maués", + "scheduled_service": "no", + "gps_code": "SIKO" + }, + { + "id": "42793", + "ident": "SIKP", + "type": "small_airport", + "name": "Fazenda Santa Teresa Airport", + "latitude_deg": "-18.303611", + "longitude_deg": "-57.506944", + "elevation_ft": "404", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SIKP", + "local_code": "MS0096" + }, + { + "id": "36071", + "ident": "SIKQ", + "type": "small_airport", + "name": "Fazenda Samaúma Airport", + "latitude_deg": "-7.23611116409", + "longitude_deg": "-57.105831146199996", + "elevation_ft": "633", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SIKQ" + }, + { + "id": "345639", + "ident": "SIKR", + "type": "small_airport", + "name": "Fazenda Barra Mansa Airstrip", + "latitude_deg": "-19.581399", + "longitude_deg": "-56.085522", + "elevation_ft": "364", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SIKR", + "local_code": "MS0508" + }, + { + "id": "46357", + "ident": "SIKS", + "type": "heliport", + "name": "Fazenda Mata Porcos Heliport", + "latitude_deg": "-22.442778", + "longitude_deg": "-43.106667", + "elevation_ft": "3031", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Petrópolis", + "scheduled_service": "no", + "gps_code": "SIKS", + "local_code": "SIKS" + }, + { + "id": "36072", + "ident": "SIKT", + "type": "heliport", + "name": "Joaquim Floriano Heliport", + "latitude_deg": "-23.583339", + "longitude_deg": "-46.670984", + "elevation_ft": "2687", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIKT", + "local_code": "SP0519" + }, + { + "id": "36073", + "ident": "SIKU", + "type": "heliport", + "name": "Northern Telecom do Brasil Indústria e Comércio LTDA Heliport", + "latitude_deg": "-22.806388855", + "longitude_deg": "-47.042778015100005", + "elevation_ft": "2159", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SIKU" + }, + { + "id": "36074", + "ident": "SIKV", + "type": "heliport", + "name": "Aldeia do Vale Heliport", + "latitude_deg": "-16.608188", + "longitude_deg": "-49.191901", + "elevation_ft": "2490", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiânia", + "scheduled_service": "no", + "gps_code": "SIKV", + "local_code": "GO0159" + }, + { + "id": "36075", + "ident": "SIKW", + "type": "heliport", + "name": "Luciano Peixoto Heliport", + "latitude_deg": "-15.930618", + "longitude_deg": "-48.925488", + "elevation_ft": "2093", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Pirenópolis", + "scheduled_service": "no", + "gps_code": "SNLS", + "local_code": "GO0166", + "keywords": "SIKW" + }, + { + "id": "36076", + "ident": "SIKX", + "type": "small_airport", + "name": "Fazenda Continental Airport", + "latitude_deg": "-20.236006", + "longitude_deg": "-48.651109", + "elevation_ft": "1476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Colômbia", + "scheduled_service": "no", + "gps_code": "SWBP", + "local_code": "SP0271", + "keywords": "SIKX" + }, + { + "id": "36077", + "ident": "SIKY", + "type": "small_airport", + "name": "Fazenda Beira Rio Airport", + "latitude_deg": "-18.719444274902344", + "longitude_deg": "-53.337501525878906", + "elevation_ft": "2100", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Costa Rica", + "scheduled_service": "no", + "gps_code": "SIKY" + }, + { + "id": "36078", + "ident": "SIKZ", + "type": "small_airport", + "name": "Fazenda Olho D`Água Airport", + "latitude_deg": "-5.663818", + "longitude_deg": "-43.536072", + "elevation_ft": "390", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Parnarama", + "scheduled_service": "no", + "gps_code": "SIKZ", + "local_code": "MA0022" + }, + { + "id": "36079", + "ident": "SILA", + "type": "small_airport", + "name": "Fazenda Santa Ada Airport", + "latitude_deg": "-22.756475", + "longitude_deg": "-53.83996", + "elevation_ft": "1247", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Jateí", + "scheduled_service": "no", + "gps_code": "SILA", + "local_code": "MS0097" + }, + { + "id": "36080", + "ident": "SILB", + "type": "small_airport", + "name": "Aviador Mário Luiz Spinelli Airport", + "latitude_deg": "-15.00333309173584", + "longitude_deg": "-55.5011100769043", + "elevation_ft": "1247", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Chapada Dos Guimarães", + "scheduled_service": "no", + "gps_code": "SILB" + }, + { + "id": "36081", + "ident": "SILC", + "type": "small_airport", + "name": "Municipal Bom Futuro Airport", + "latitude_deg": "-13.037861", + "longitude_deg": "-55.95025", + "elevation_ft": "1358", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Lucas do Rio Verde", + "scheduled_service": "no", + "gps_code": "SILC", + "iata_code": "LVR", + "local_code": "MT0025", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lucas_do_Rio_Verde_Airport" + }, + { + "id": "36082", + "ident": "SILD", + "type": "small_airport", + "name": "Fazenda Colorado Airport", + "latitude_deg": "-20.630556106567383", + "longitude_deg": "-56.771942138671875", + "elevation_ft": "512", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bodoquena", + "scheduled_service": "no", + "gps_code": "SILD" + }, + { + "id": "36083", + "ident": "SILE", + "type": "heliport", + "name": "Usina Trapiche Heliport", + "latitude_deg": "-8.579444", + "longitude_deg": "-35.128056", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Sirinhaém", + "scheduled_service": "no", + "gps_code": "SILE", + "local_code": "PE0030" + }, + { + "id": "36084", + "ident": "SILF", + "type": "heliport", + "name": "New Century Heliport", + "latitude_deg": "-23.587857", + "longitude_deg": "-46.680372", + "elevation_ft": "2691", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SILF", + "local_code": "SP0520" + }, + { + "id": "46469", + "ident": "SILG", + "type": "small_airport", + "name": "Fazenda Panamá Airport", + "latitude_deg": "-13.762288", + "longitude_deg": "-58.747817", + "elevation_ft": "1690", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SILG", + "local_code": "MT0104" + }, + { + "id": "36085", + "ident": "SILH", + "type": "heliport", + "name": "Parque Dom Pedro Heliport", + "latitude_deg": "-22.836389541625977", + "longitude_deg": "-47.06611251831055", + "elevation_ft": "2096", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SILH" + }, + { + "id": "36086", + "ident": "SILI", + "type": "small_airport", + "name": "Ilha dos Porcos Grandes Airport", + "latitude_deg": "-23.058889389038086", + "longitude_deg": "-44.31444549560547", + "elevation_ft": "197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SILI" + }, + { + "id": "36087", + "ident": "SILJ", + "type": "small_airport", + "name": "Do Gaúcho Airport", + "latitude_deg": "-0.831374", + "longitude_deg": "-52.504075", + "elevation_ft": "135", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Laranjal Do Jari", + "scheduled_service": "no", + "gps_code": "SILJ", + "local_code": "AP0003" + }, + { + "id": "36088", + "ident": "SILK", + "type": "heliport", + "name": "O Estado de São Paulo Heliport", + "latitude_deg": "-23.512751", + "longitude_deg": "-46.671719", + "elevation_ft": "2539", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SILK", + "local_code": "SP0521" + }, + { + "id": "36089", + "ident": "SILL", + "type": "heliport", + "name": "Gália Heliport", + "latitude_deg": "-23.57694435119629", + "longitude_deg": "-46.703887939453125", + "elevation_ft": "2517", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SILL" + }, + { + "id": "36090", + "ident": "SILM", + "type": "small_airport", + "name": "Fazenda Regalito Airport", + "latitude_deg": "-14.466194", + "longitude_deg": "-46.870703", + "elevation_ft": "1598", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Flores De Goiás", + "scheduled_service": "no", + "gps_code": "SNNW", + "local_code": "GO0198", + "keywords": "SILM" + }, + { + "id": "36091", + "ident": "SILN", + "type": "small_airport", + "name": "Fazenda Rio Capim Airport", + "latitude_deg": "-3.556841", + "longitude_deg": "-48.648546", + "elevation_ft": "325", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Paragominas", + "scheduled_service": "no", + "gps_code": "SILN" + }, + { + "id": "36092", + "ident": "SILO", + "type": "heliport", + "name": "CFAPP Heliport", + "latitude_deg": "-23.471111297607422", + "longitude_deg": "-46.415279388427734", + "elevation_ft": "2390", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarulhos", + "scheduled_service": "no", + "gps_code": "SILO" + }, + { + "id": "36093", + "ident": "SILP", + "type": "heliport", + "name": "Lojas Cem Heliport", + "latitude_deg": "-23.152228", + "longitude_deg": "-47.267411", + "elevation_ft": "1982", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Salto", + "scheduled_service": "no", + "gps_code": "SILP", + "local_code": "SP0522" + }, + { + "id": "36094", + "ident": "SILQ", + "type": "small_airport", + "name": "Aeroleve Aeródromo Privado Airport", + "latitude_deg": "-24.929094", + "longitude_deg": "-53.496006", + "elevation_ft": "2254", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Cascavel", + "scheduled_service": "no", + "gps_code": "SILQ", + "local_code": "PR0046", + "keywords": "Clube de Ultraleves Aeroleve" + }, + { + "id": "36095", + "ident": "SILR", + "type": "heliport", + "name": "One Hundred Heliport", + "latitude_deg": "-23.59502", + "longitude_deg": "-46.684449", + "elevation_ft": "2550", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SILR", + "local_code": "SP0523" + }, + { + "id": "36096", + "ident": "SILS", + "type": "small_airport", + "name": "Água Branca Airport", + "latitude_deg": "-6.390832901000977", + "longitude_deg": "-56.28499984741211", + "elevation_ft": "667", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SILS" + }, + { + "id": "36097", + "ident": "SILT", + "type": "small_airport", + "name": "Fazenda Trêz Irmãos Airport", + "latitude_deg": "-20.227777", + "longitude_deg": "-50.968334", + "elevation_ft": "1460", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santa Fé Do Sul", + "scheduled_service": "no", + "gps_code": "SILT", + "local_code": "SP0186" + }, + { + "id": "36098", + "ident": "SILU", + "type": "small_airport", + "name": "BRPEC Agro-Pecuária Airport", + "latitude_deg": "-19.865306", + "longitude_deg": "-56.987917", + "elevation_ft": "427", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "SILU", + "local_code": "MS0098", + "keywords": "Fazenda Cristo Redentor" + }, + { + "id": "36099", + "ident": "SILV", + "type": "heliport", + "name": "Locar Heliport", + "latitude_deg": "-23.471493", + "longitude_deg": "-46.483487", + "elevation_ft": "2720", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarulhos", + "scheduled_service": "no", + "gps_code": "SILX", + "local_code": "SP0525" + }, + { + "id": "45584", + "ident": "SILW", + "type": "small_airport", + "name": "Fazenda Mata Assombrada Airport", + "latitude_deg": "-21.727222", + "longitude_deg": "-56.509167", + "elevation_ft": "912", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bela Vista", + "scheduled_service": "no", + "gps_code": "SILW" + }, + { + "id": "45650", + "ident": "SILX", + "type": "small_airport", + "name": "Fazenda Jandaia Airport", + "latitude_deg": "-10.51", + "longitude_deg": "-53.65", + "elevation_ft": "1070", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Peixoto De Azevedo", + "scheduled_service": "no", + "gps_code": "SILX" + }, + { + "id": "36100", + "ident": "SILY", + "type": "closed", + "name": "Fazenda Três Marias Airport", + "latitude_deg": "-23.494126", + "longitude_deg": "-53.802495", + "elevation_ft": "1210", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Vila Alta", + "scheduled_service": "no", + "local_code": "PR0047", + "keywords": "SILY" + }, + { + "id": "36101", + "ident": "SILZ", + "type": "small_airport", + "name": "Fazenda Mariad Airport", + "latitude_deg": "-9.39222240447998", + "longitude_deg": "-40.35749816894531", + "elevation_ft": "1197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Juazeiro", + "scheduled_service": "no", + "gps_code": "SILZ" + }, + { + "id": "36102", + "ident": "SIMA", + "type": "small_airport", + "name": "Fazenda Mandioré Airport", + "latitude_deg": "-17.925578", + "longitude_deg": "-57.625598", + "elevation_ft": "299", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "keywords": "SIMA" + }, + { + "id": "36103", + "ident": "SIMB", + "type": "heliport", + "name": "Monumental Business Heliport", + "latitude_deg": "-23.61456", + "longitude_deg": "-46.569151", + "elevation_ft": "2661", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Caetano Do Sul", + "scheduled_service": "no", + "gps_code": "SSXE", + "local_code": "SP0856", + "keywords": "SIMB" + }, + { + "id": "36104", + "ident": "SIMC", + "type": "heliport", + "name": "FIC Heliport", + "latitude_deg": "-22.711389541625977", + "longitude_deg": "-47.141109466552734", + "elevation_ft": "1985", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Paulínea", + "scheduled_service": "no", + "gps_code": "SIMC" + }, + { + "id": "36105", + "ident": "SIMD", + "type": "heliport", + "name": "Reseda Office Heliport", + "latitude_deg": "-23.582725", + "longitude_deg": "-46.674814", + "elevation_ft": "2566", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIMD", + "local_code": "SP0526" + }, + { + "id": "36106", + "ident": "SIME", + "type": "small_airport", + "name": "Comandante Carlos Inácio Agnes Airport", + "latitude_deg": "-5.583771", + "longitude_deg": "-47.428032", + "elevation_ft": "443", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Davinópolis", + "scheduled_service": "no", + "gps_code": "SIME", + "local_code": "MA0023" + }, + { + "id": "36107", + "ident": "SIMF", + "type": "small_airport", + "name": "Fazenda São Miguel Airport", + "latitude_deg": "-15.973055839539", + "longitude_deg": "-46.709442138672", + "elevation_ft": "3287", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Unaí", + "scheduled_service": "no", + "gps_code": "SWWE", + "local_code": "SWWE", + "keywords": "SIMF" + }, + { + "id": "36108", + "ident": "SIMG", + "type": "small_airport", + "name": "Fazenda Seis Palmas Airport", + "latitude_deg": "-21.096121", + "longitude_deg": "-57.716895", + "elevation_ft": "312", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SIMG", + "local_code": "MS0099" + }, + { + "id": "36109", + "ident": "SIMH", + "type": "heliport", + "name": "CRT - Caieiras Heliport", + "latitude_deg": "-23.335277557373047", + "longitude_deg": "-46.772499084472656", + "elevation_ft": "2674", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Caieiras", + "scheduled_service": "no", + "gps_code": "SIMH" + }, + { + "id": "36110", + "ident": "SIMI", + "type": "small_airport", + "name": "Fazenda Boa Vista Airport", + "latitude_deg": "-23.636943817138672", + "longitude_deg": "-55.184444427490234", + "elevation_ft": "1231", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Tacuru", + "scheduled_service": "no", + "gps_code": "SIMI" + }, + { + "id": "230", + "ident": "SIMJ", + "type": "small_airport", + "name": "Capinópolis - Aviação Agrícola Buttarello Ltda. Airport", + "latitude_deg": "-18.659201", + "longitude_deg": "-49.5476", + "elevation_ft": "2005", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Capinópolis", + "scheduled_service": "no", + "gps_code": "SIMJ", + "local_code": "MG0103" + }, + { + "id": "231", + "ident": "SIMK", + "type": "small_airport", + "name": "Tenente Lund Pressoto Airport", + "latitude_deg": "-20.592199", + "longitude_deg": "-47.3829", + "elevation_ft": "3292", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Franca", + "scheduled_service": "no", + "gps_code": "SIMK", + "iata_code": "FRC", + "local_code": "SP0011", + "home_link": "http://www.daesp.sp.gov.br/aeroporto-detalhe/?id=859", + "wikipedia_link": "https://en.wikipedia.org/wiki/Franca_Airport", + "keywords": "SBFC" + }, + { + "id": "36111", + "ident": "SIML", + "type": "small_airport", + "name": "Codenorte Airport", + "latitude_deg": "-3.2855560779571533", + "longitude_deg": "-49.206111907958984", + "elevation_ft": "220", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Moju", + "scheduled_service": "no", + "gps_code": "SIML" + }, + { + "id": "36112", + "ident": "SIMM", + "type": "heliport", + "name": "Edifício Corporate Park Heliport", + "latitude_deg": "-23.58743", + "longitude_deg": "-46.672175", + "elevation_ft": "2645", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIMM", + "local_code": "SP0529" + }, + { + "id": "36113", + "ident": "SIMN", + "type": "heliport", + "name": "Pier Mauá Heliport", + "latitude_deg": "-22.89472198486328", + "longitude_deg": "-43.179443359375", + "elevation_ft": "8", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SIMN" + }, + { + "id": "36114", + "ident": "SIMO", + "type": "small_airport", + "name": "Posto de Proteção Ambiental Santo André Airport", + "latitude_deg": "-16.770832", + "longitude_deg": "-56.172677", + "elevation_ft": "449", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão de Melgaço", + "scheduled_service": "no", + "gps_code": "SSAM", + "local_code": "MT0280", + "keywords": "SIMO" + }, + { + "id": "36115", + "ident": "SIMP", + "type": "heliport", + "name": "Marques Plaza Hotel Heliport", + "latitude_deg": "-22.218675", + "longitude_deg": "-45.916897", + "elevation_ft": "2710", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Pouso Alegre", + "scheduled_service": "no", + "gps_code": "SJHM", + "local_code": "MG0441", + "keywords": "SIMP" + }, + { + "id": "36116", + "ident": "SIMQ", + "type": "small_airport", + "name": "Fazenda Dois de Maio Airport", + "latitude_deg": "-18.208867", + "longitude_deg": "-55.753373", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SIMQ", + "local_code": "MS0100", + "keywords": "Fazenda Nascente" + }, + { + "id": "36117", + "ident": "SIMR", + "type": "small_airport", + "name": "Fazenda Reunidas Airport", + "latitude_deg": "-17.751364", + "longitude_deg": "-51.151936", + "elevation_ft": "2362", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Rio Verde", + "scheduled_service": "no", + "gps_code": "SIMR", + "local_code": "GO0051" + }, + { + "id": "36118", + "ident": "SIMS", + "type": "heliport", + "name": "Eletronorte Belém Heliport", + "latitude_deg": "-1.460832953453064", + "longitude_deg": "-48.448333740234375", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Belém", + "scheduled_service": "no", + "gps_code": "SIMS" + }, + { + "id": "36119", + "ident": "SIMT", + "type": "heliport", + "name": "Mediterrâneo Heliport", + "latitude_deg": "-23.691110610961914", + "longitude_deg": "-46.553611755371094", + "elevation_ft": "2592", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Bernardo Do Campo", + "scheduled_service": "no", + "gps_code": "SIMT" + }, + { + "id": "36120", + "ident": "SIMU", + "type": "small_airport", + "name": "Fazenda Mutum Airport", + "latitude_deg": "-22.278524", + "longitude_deg": "-52.844485", + "elevation_ft": "978", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Anaurilândia", + "scheduled_service": "no", + "gps_code": "SIMU", + "local_code": "MS0102" + }, + { + "id": "36121", + "ident": "SIMV", + "type": "small_airport", + "name": "Fazenda Mata Velha Airport", + "latitude_deg": "-19.838343", + "longitude_deg": "-47.849836", + "elevation_ft": "2733", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberaba", + "scheduled_service": "no", + "gps_code": "SIMV", + "local_code": "MG0104" + }, + { + "id": "36122", + "ident": "SIMW", + "type": "small_airport", + "name": "Fazenda Retiro do Cervo I Airport", + "latitude_deg": "-20.350089", + "longitude_deg": "-53.970519", + "elevation_ft": "1562", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Jaraguari", + "scheduled_service": "no", + "gps_code": "SIMW", + "local_code": "MS0103" + }, + { + "id": "36123", + "ident": "SIMX", + "type": "small_airport", + "name": "Fazenda Jangada Airport", + "latitude_deg": "-15.240833", + "longitude_deg": "-56.578056", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Jangada", + "scheduled_service": "no", + "gps_code": "SIMX", + "local_code": "MT0109" + }, + { + "id": "36124", + "ident": "SIMY", + "type": "small_airport", + "name": "Fazenda Porto Oculto Airport", + "latitude_deg": "-23.211108", + "longitude_deg": "-54.095982", + "elevation_ft": "972", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Itaquiraí", + "scheduled_service": "no", + "gps_code": "SIMY", + "local_code": "MS0104" + }, + { + "id": "36125", + "ident": "SIMZ", + "type": "small_airport", + "name": "Fazenda Primeiro de Maio Airport", + "latitude_deg": "-17.875572", + "longitude_deg": "-54.941565", + "elevation_ft": "584", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Sonora", + "scheduled_service": "no", + "gps_code": "SIMZ", + "local_code": "MS0105" + }, + { + "id": "36126", + "ident": "SINA", + "type": "small_airport", + "name": "São Francisco Airport", + "latitude_deg": "-22.788888931274414", + "longitude_deg": "-53.197776794433594", + "elevation_ft": "1122", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "São Pedro Do Paraná", + "scheduled_service": "no", + "gps_code": "SINA" + }, + { + "id": "36127", + "ident": "SINB", + "type": "heliport", + "name": "Tubarão Heliport", + "latitude_deg": "-23.829445", + "longitude_deg": "-45.388611", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ilhabela", + "scheduled_service": "no", + "gps_code": "SINB", + "local_code": "SP0531" + }, + { + "id": "36128", + "ident": "SINC", + "type": "small_airport", + "name": "Nova Conceição Agroindustrial Airport", + "latitude_deg": "-2.92305588722229", + "longitude_deg": "-49.7852783203125", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Baião", + "scheduled_service": "no", + "gps_code": "SINC" + }, + { + "id": "36129", + "ident": "SIND", + "type": "heliport", + "name": "Ondina Heliport", + "latitude_deg": "-13.009444236755371", + "longitude_deg": "-38.50388717651367", + "elevation_ft": "109", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Salvador", + "scheduled_service": "no", + "gps_code": "SIND" + }, + { + "id": "36130", + "ident": "SINE", + "type": "heliport", + "name": "Ibar Heliport", + "latitude_deg": "-23.524477", + "longitude_deg": "-46.330215", + "elevation_ft": "2412", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Poá", + "scheduled_service": "no", + "gps_code": "SINE", + "local_code": "SP0532" + }, + { + "id": "36131", + "ident": "SINF", + "type": "heliport", + "name": "Codesp Heliport", + "latitude_deg": "-23.958911", + "longitude_deg": "-46.306536", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santos", + "scheduled_service": "no", + "keywords": "SINF" + }, + { + "id": "36132", + "ident": "SING", + "type": "small_airport", + "name": "Fazenda São João Airport", + "latitude_deg": "-20.556667", + "longitude_deg": "-49.288334", + "elevation_ft": "1739", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Nova Granada", + "scheduled_service": "no", + "gps_code": "SING", + "local_code": "SP0187" + }, + { + "id": "36133", + "ident": "SINH", + "type": "small_airport", + "name": "Fazenda Esperança Airport", + "latitude_deg": "-22.64372", + "longitude_deg": "-53.562341", + "elevation_ft": "804", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Novo Horizonte Do Sul", + "scheduled_service": "no", + "gps_code": "SINH", + "local_code": "MS0106" + }, + { + "id": "36134", + "ident": "SINI", + "type": "heliport", + "name": "Baua`s Heliport", + "latitude_deg": "-23.20138931274414", + "longitude_deg": "-48.98777770996094", + "elevation_ft": "1149", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Avaré", + "scheduled_service": "no", + "gps_code": "SINI" + }, + { + "id": "36135", + "ident": "SINJ", + "type": "small_airport", + "name": "Fazenda Novo Horizonte - TATTERSAL Airport", + "latitude_deg": "-18.36805534362793", + "longitude_deg": "-54.77694320678711", + "elevation_ft": "1205", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Coxim", + "scheduled_service": "no", + "gps_code": "SINJ" + }, + { + "id": "36136", + "ident": "SINK", + "type": "small_airport", + "name": "Fazenda Negrinha Airport", + "latitude_deg": "-21.874831", + "longitude_deg": "-50.8729", + "elevation_ft": "1582", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Parapuã", + "scheduled_service": "no", + "gps_code": "SINK", + "local_code": "SP0188" + }, + { + "id": "36137", + "ident": "SINL", + "type": "heliport", + "name": "Costão Heliport", + "latitude_deg": "-27.464166", + "longitude_deg": "-48.383043", + "elevation_ft": "138", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Florianópolis", + "scheduled_service": "no", + "gps_code": "SINL", + "local_code": "SC0057" + }, + { + "id": "36138", + "ident": "SINM", + "type": "small_airport", + "name": "Fazenda Itanhangá Airport", + "latitude_deg": "-13.10111141204834", + "longitude_deg": "-56.529998779296875", + "elevation_ft": "938", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Mutum", + "scheduled_service": "no", + "gps_code": "SINM" + }, + { + "id": "36139", + "ident": "SINN", + "type": "small_airport", + "name": "Fazenda Nova Holanda Airport", + "latitude_deg": "-8.806944", + "longitude_deg": "-46.358891", + "elevation_ft": "1657", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Balsas", + "scheduled_service": "no", + "gps_code": "SWLH", + "local_code": "SWLH", + "keywords": "SINN" + }, + { + "id": "36140", + "ident": "SINO", + "type": "small_airport", + "name": "Fazenda Mapisa Airport", + "latitude_deg": "-4.413055896759033", + "longitude_deg": "-46.5180549621582", + "elevation_ft": "634", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Bom Jesus Das Selvas", + "scheduled_service": "no", + "gps_code": "SINO" + }, + { + "id": "36141", + "ident": "SINP", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-21.506016", + "longitude_deg": "-56.420438", + "elevation_ft": "1063", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Jardim", + "scheduled_service": "no", + "gps_code": "SI4B", + "local_code": "MS0602", + "keywords": "SINP" + }, + { + "id": "36142", + "ident": "SINQ", + "type": "small_airport", + "name": "Laranjal Airport", + "latitude_deg": "-0.790406", + "longitude_deg": "-52.488164", + "elevation_ft": "250", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Laranjal Do Jari", + "scheduled_service": "no", + "gps_code": "SINQ", + "local_code": "AP0004" + }, + { + "id": "36143", + "ident": "SINR", + "type": "small_airport", + "name": "Fazenda Recanto Airport", + "latitude_deg": "-18.007405", + "longitude_deg": "-54.009289", + "elevation_ft": "1093", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Alcinópolis", + "scheduled_service": "no", + "gps_code": "SNRC", + "local_code": "MS0227", + "keywords": "SINR" + }, + { + "id": "36144", + "ident": "SINS", + "type": "small_airport", + "name": "Fazenda Cachoeira do Lontra Airport", + "latitude_deg": "-21.288333892822266", + "longitude_deg": "-53.71055603027344", + "elevation_ft": "1211", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "gps_code": "SINS" + }, + { + "id": "36145", + "ident": "SINT", + "type": "small_airport", + "name": "Fazenda Santa Adélia Airport", + "latitude_deg": "-15.193743", + "longitude_deg": "-49.37641", + "elevation_ft": "2251", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Santa Isabel", + "scheduled_service": "no", + "gps_code": "SINT", + "local_code": "GO0052" + }, + { + "id": "36146", + "ident": "SINU", + "type": "small_airport", + "name": "Fazenda Xerez Airport", + "latitude_deg": "-21.923333", + "longitude_deg": "-56.706944", + "elevation_ft": "958", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bela Vista", + "scheduled_service": "no", + "gps_code": "SDJ4", + "local_code": "MS0588", + "keywords": "SINU" + }, + { + "id": "36147", + "ident": "SINV", + "type": "small_airport", + "name": "Fazenda Santa Rita Airport", + "latitude_deg": "-8.228333473205566", + "longitude_deg": "-37.75638961791992", + "elevation_ft": "1634", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Custódia", + "scheduled_service": "no", + "gps_code": "SINV" + }, + { + "id": "36148", + "ident": "SINW", + "type": "heliport", + "name": "International Paper Luís Antônio Heliport", + "latitude_deg": "-21.572616", + "longitude_deg": "-47.913834", + "elevation_ft": "1697", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Luís Antônio", + "scheduled_service": "no", + "gps_code": "SINW", + "local_code": "SP0533", + "keywords": "VCP Luís Antônio" + }, + { + "id": "36149", + "ident": "SINX", + "type": "heliport", + "name": "VCP Jacareí Heliport", + "latitude_deg": "-23.374619", + "longitude_deg": "-46.022501", + "elevation_ft": "1939", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jacareí", + "scheduled_service": "no", + "gps_code": "SJVJ", + "local_code": "SP0671", + "keywords": "SINX" + }, + { + "id": "36150", + "ident": "SINY", + "type": "heliport", + "name": "Fazenda Nova Heliport", + "latitude_deg": "-8.159848", + "longitude_deg": "-36.196893", + "elevation_ft": "1542", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Brejo da Madre de Deus", + "scheduled_service": "no", + "gps_code": "SINY", + "local_code": "PE0032" + }, + { + "id": "36151", + "ident": "SINZ", + "type": "small_airport", + "name": "Xanadu Airport", + "latitude_deg": "-25.438527", + "longitude_deg": "-50.527904", + "elevation_ft": "2796", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Fernandes Pinheiro", + "scheduled_service": "no", + "gps_code": "SINZ", + "local_code": "PR0050" + }, + { + "id": "36152", + "ident": "SIOA", + "type": "small_airport", + "name": "Fazenda Perdizes Airport", + "latitude_deg": "-17.672500610351562", + "longitude_deg": "-44.593055725097656", + "elevation_ft": "1969", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Lassance", + "scheduled_service": "no", + "gps_code": "SIOA" + }, + { + "id": "36153", + "ident": "SIOB", + "type": "small_airport", + "name": "Fazenda Guanabara Airport", + "latitude_deg": "-20.818202", + "longitude_deg": "-51.266799", + "elevation_ft": "1362", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Andradina", + "scheduled_service": "no", + "gps_code": "SIOB", + "local_code": "SP0189" + }, + { + "id": "36154", + "ident": "SIOC", + "type": "small_airport", + "name": "Santo Expedito Airport", + "latitude_deg": "-21.14321", + "longitude_deg": "-51.544011", + "elevation_ft": "1300", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Nova Independência", + "scheduled_service": "no", + "gps_code": "SIOC", + "local_code": "SP0190" + }, + { + "id": "36155", + "ident": "SIOD", + "type": "small_airport", + "name": "Fazenda Santa Helena Airport", + "latitude_deg": "-21.997222900390625", + "longitude_deg": "-53.424720764160156", + "elevation_ft": "952", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Andradina", + "scheduled_service": "no", + "gps_code": "SIOD" + }, + { + "id": "45609", + "ident": "SIOE", + "type": "small_airport", + "name": "Mocelin Airport", + "latitude_deg": "-25.793554", + "longitude_deg": "-53.035909", + "elevation_ft": "1850", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Dois Vizinhos", + "scheduled_service": "no", + "gps_code": "SIOE", + "local_code": "PR0051" + }, + { + "id": "36156", + "ident": "SIOF", + "type": "small_airport", + "name": "Fazenda Cachoeira Airport", + "latitude_deg": "-21.429301", + "longitude_deg": "-54.37623", + "elevation_ft": "1247", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Alvorada do Sul", + "scheduled_service": "no" + }, + { + "id": "36157", + "ident": "SIOG", + "type": "heliport", + "name": "Oasis Graal Heliport", + "latitude_deg": "-22.7977771759", + "longitude_deg": "-42.4563903809", + "elevation_ft": "256", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio Bonito", + "scheduled_service": "no", + "gps_code": "SIOG" + }, + { + "id": "36158", + "ident": "SIOH", + "type": "heliport", + "name": "Cauê-Ijaci Heliport", + "latitude_deg": "-21.194765", + "longitude_deg": "-44.941453", + "elevation_ft": "3019", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Ijaci", + "scheduled_service": "no", + "gps_code": "SIOH", + "local_code": "MG0229" + }, + { + "id": "36159", + "ident": "SIOI", + "type": "small_airport", + "name": "Rio Arraias Airport", + "latitude_deg": "-11.762222290039062", + "longitude_deg": "-54.345279693603516", + "elevation_ft": "3773", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "União Do Sul", + "scheduled_service": "no", + "gps_code": "SIOI" + }, + { + "id": "36160", + "ident": "SIOJ", + "type": "small_airport", + "name": "Fazenda Soroteca Airport", + "latitude_deg": "-15.631388664245605", + "longitude_deg": "-58.30833435058594", + "elevation_ft": "749", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São José Dos Quatro Marcos", + "scheduled_service": "no", + "gps_code": "SIOJ" + }, + { + "id": "36161", + "ident": "SIOK", + "type": "small_airport", + "name": "Fazenda Água Doce Airport", + "latitude_deg": "-14.64222240447998", + "longitude_deg": "-56.238887786865234", + "elevation_ft": "1313", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nobres", + "scheduled_service": "no", + "gps_code": "SIOK" + }, + { + "id": "36162", + "ident": "SIOL", + "type": "small_airport", + "name": "Fazenda Pontal Airport", + "latitude_deg": "-18.322459", + "longitude_deg": "-48.8440102", + "elevation_ft": "1706", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Corumbaíba", + "scheduled_service": "no", + "gps_code": "SWWP", + "local_code": "GO0147", + "keywords": "SIOL" + }, + { + "id": "36163", + "ident": "SIOM", + "type": "small_airport", + "name": "Rio Ouro Airport", + "latitude_deg": "-11.538888931274414", + "longitude_deg": "-54.19388961791992", + "elevation_ft": "3741", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "União Do Sul", + "scheduled_service": "no", + "gps_code": "SIOM" + }, + { + "id": "36164", + "ident": "SION", + "type": "closed", + "name": "Rio Negro Airport", + "latitude_deg": "-11.644444", + "longitude_deg": "-54.071388", + "elevation_ft": "3445", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Feliz Natal", + "scheduled_service": "no", + "keywords": "SION" + }, + { + "id": "36165", + "ident": "SIOO", + "type": "small_airport", + "name": "Fazenda Água Doce do Pantanal Airport", + "latitude_deg": "-22.025799", + "longitude_deg": "-57.902884", + "elevation_ft": "273", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SIOO", + "local_code": "MS0111", + "keywords": "Fazenda Piquiri" + }, + { + "id": "36166", + "ident": "SIOP", + "type": "small_airport", + "name": "Fazenda Londrina II Airport", + "latitude_deg": "-21.973176", + "longitude_deg": "-57.853875", + "elevation_ft": "272", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "keywords": "SIOP" + }, + { + "id": "36167", + "ident": "SIOQ", + "type": "small_airport", + "name": "Fazenda Mato Alto Airport", + "latitude_deg": "-23.50549", + "longitude_deg": "-54.309314", + "elevation_ft": "1313", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Iguatemi", + "scheduled_service": "no", + "gps_code": "SIOQ", + "local_code": "MS0112" + }, + { + "id": "36168", + "ident": "SIOR", + "type": "small_airport", + "name": "Fazenda São Miguel Airport", + "latitude_deg": "-18.09805679321289", + "longitude_deg": "-57.1533317565918", + "elevation_ft": "358", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SIOR" + }, + { + "id": "36169", + "ident": "SIOS", + "type": "small_airport", + "name": "Fazenda Santa Josefa Airport", + "latitude_deg": "-22.769395", + "longitude_deg": "-53.957269", + "elevation_ft": "1313", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Jateí", + "scheduled_service": "no", + "gps_code": "SIOS", + "local_code": "MS0113" + }, + { + "id": "36170", + "ident": "SIOT", + "type": "small_airport", + "name": "Fazenda Santa Vergínia Airport", + "latitude_deg": "-21.488074", + "longitude_deg": "-52.407285", + "elevation_ft": "1043", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Santa Rita Do Pardo", + "scheduled_service": "no", + "gps_code": "SIOT", + "local_code": "MS0114" + }, + { + "id": "36171", + "ident": "SIOU", + "type": "small_airport", + "name": "Fazenda Santa Helena Airport", + "latitude_deg": "-18.29805564880371", + "longitude_deg": "-57.01472091674805", + "elevation_ft": "378", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SIOU" + }, + { + "id": "36172", + "ident": "SIOV", + "type": "small_airport", + "name": "Taua Airport", + "latitude_deg": "-16.90138816833496", + "longitude_deg": "-39.15888977050781", + "elevation_ft": "44", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Prado", + "scheduled_service": "no", + "gps_code": "SIOV" + }, + { + "id": "36173", + "ident": "SIOW", + "type": "heliport", + "name": "Hospital Alemão Osvaldo Cruz Helipad", + "latitude_deg": "-23.569833", + "longitude_deg": "-46.643524", + "elevation_ft": "2926", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIOW", + "local_code": "SP0536" + }, + { + "id": "36174", + "ident": "SIOX", + "type": "heliport", + "name": "Centro de Distribuição Ponto Frio Heliport", + "latitude_deg": "-23.429166793823242", + "longitude_deg": "-46.405555725097656", + "elevation_ft": "2540", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarulhos", + "scheduled_service": "no", + "gps_code": "SIOX" + }, + { + "id": "36175", + "ident": "SIOY", + "type": "heliport", + "name": "Caravelas Heliport", + "latitude_deg": "-23.768333435058594", + "longitude_deg": "-45.927223205566406", + "elevation_ft": "41", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Bertioga", + "scheduled_service": "no", + "gps_code": "SIOY" + }, + { + "id": "36176", + "ident": "SIOZ", + "type": "small_airport", + "name": "Fazenda Santa Fé Airport", + "latitude_deg": "-9.588055610656738", + "longitude_deg": "-50.35722351074219", + "elevation_ft": "591", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santana Do Araguaia", + "scheduled_service": "no", + "gps_code": "SIOZ" + }, + { + "id": "36177", + "ident": "SIPA", + "type": "small_airport", + "name": "Aeroclube de São José do Rio Pardo Airport", + "latitude_deg": "-21.647157", + "longitude_deg": "-46.928262", + "elevation_ft": "2849", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São José Do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SIPA", + "local_code": "SP0192" + }, + { + "id": "36178", + "ident": "SIPB", + "type": "small_airport", + "name": "CAVU - Clube de Aviação Ultraleve Airport", + "latitude_deg": "-2.448485", + "longitude_deg": "-44.120864", + "elevation_ft": "109", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Raposa", + "scheduled_service": "no", + "gps_code": "SIPB", + "local_code": "MA0024" + }, + { + "id": "36179", + "ident": "SIPC", + "type": "small_airport", + "name": "Portal do Céu Airport", + "latitude_deg": "-1.314722", + "longitude_deg": "-48.429443", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Belém", + "scheduled_service": "no", + "gps_code": "SIPC" + }, + { + "id": "36180", + "ident": "SIPD", + "type": "heliport", + "name": "Vitória Hotel Residence Heliport", + "latitude_deg": "-22.902398", + "longitude_deg": "-47.048323", + "elevation_ft": "2361", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SIPD", + "local_code": "SP0537" + }, + { + "id": "232", + "ident": "SIPE", + "type": "small_airport", + "name": "Itapessoca Airport", + "latitude_deg": "-7.65601", + "longitude_deg": "-34.856499", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Goiana", + "scheduled_service": "no", + "gps_code": "SIPE", + "local_code": "PE0014" + }, + { + "id": "36181", + "ident": "SIPF", + "type": "heliport", + "name": "Hotel Glória Heliport", + "latitude_deg": "-22.922500610351562", + "longitude_deg": "-43.173057556152344", + "elevation_ft": "214", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SIPF" + }, + { + "id": "233", + "ident": "SIPG", + "type": "small_airport", + "name": "Fazenda Água Preta Airport", + "latitude_deg": "-14.137595", + "longitude_deg": "-51.469531", + "elevation_ft": "794", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cocalinho", + "scheduled_service": "no", + "gps_code": "SIPG", + "local_code": "MT0115" + }, + { + "id": "36182", + "ident": "SIPH", + "type": "small_airport", + "name": "Fazenda Palmeiras Airport", + "latitude_deg": "-9.601943969726562", + "longitude_deg": "-49.773887634277344", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Caseara", + "scheduled_service": "no", + "gps_code": "SIPH" + }, + { + "id": "335675", + "ident": "SIPI", + "type": "heliport", + "name": "Alphacentro Helipad", + "latitude_deg": "-23.498096", + "longitude_deg": "-46.862307", + "elevation_ft": "2451", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SIPI", + "local_code": "SP0538" + }, + { + "id": "36183", + "ident": "SIPJ", + "type": "small_airport", + "name": "Fazenda Marreco Airport", + "latitude_deg": "-18.108610153198242", + "longitude_deg": "-45.21555709838867", + "elevation_ft": "1969", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "São Gonçalo Do Abaeté", + "scheduled_service": "no", + "gps_code": "SIPJ" + }, + { + "id": "234", + "ident": "SIPK", + "type": "small_airport", + "name": "SESC Pantanal Airport", + "latitude_deg": "-16.4974", + "longitude_deg": "-56.422199", + "elevation_ft": "348", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Poconé", + "scheduled_service": "no", + "gps_code": "SIPK", + "local_code": "MT0116" + }, + { + "id": "36184", + "ident": "SIPL", + "type": "small_airport", + "name": "Fazenda Entre Serras Airport", + "latitude_deg": "-14.622221946716309", + "longitude_deg": "-54.47666549682617", + "elevation_ft": "1824", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Planalto Da Serra", + "scheduled_service": "no", + "gps_code": "SIPL" + }, + { + "id": "36185", + "ident": "SIPM", + "type": "heliport", + "name": "Praia do Morcego Heliport", + "latitude_deg": "-23.038610458374023", + "longitude_deg": "-44.3477783203125", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SIPM" + }, + { + "id": "36186", + "ident": "SIPN", + "type": "small_airport", + "name": "Fazenda Progresso Airport", + "latitude_deg": "-21.516014", + "longitude_deg": "-57.69055", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SIPN", + "local_code": "MS0115" + }, + { + "id": "44562", + "ident": "SIPO", + "type": "small_airport", + "name": "Sebastião José Pereira Airport", + "latitude_deg": "-14.924167", + "longitude_deg": "-41.956669", + "elevation_ft": "2260", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Condeúba", + "scheduled_service": "no", + "gps_code": "SIPO", + "local_code": "BA0094" + }, + { + "id": "36187", + "ident": "SIPP", + "type": "heliport", + "name": "Lura Heliport", + "latitude_deg": "-23.015832901000977", + "longitude_deg": "-44.280277252197266", + "elevation_ft": "99", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SIPP" + }, + { + "id": "36188", + "ident": "SIPQ", + "type": "small_airport", + "name": "Fazenda Rancho Estrela Airport", + "latitude_deg": "-16.998332977294922", + "longitude_deg": "-48.73805618286133", + "elevation_ft": "3002", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "São Miguel Do Passa Quatro", + "scheduled_service": "no", + "gps_code": "SIPQ" + }, + { + "id": "36189", + "ident": "SIPR", + "type": "small_airport", + "name": "Fazenda São José Airport", + "latitude_deg": "-17.001110076904297", + "longitude_deg": "-50.74277877807617", + "elevation_ft": "2451", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Paraúna", + "scheduled_service": "no", + "gps_code": "SIPR" + }, + { + "id": "42237", + "ident": "SIPS", + "type": "heliport", + "name": "Haras Forum Heliport", + "latitude_deg": "-19.65932", + "longitude_deg": "-44.147551", + "elevation_ft": "2743", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Pedro Leopoldo", + "scheduled_service": "no", + "gps_code": "SIPS", + "local_code": "MG0231" + }, + { + "id": "36190", + "ident": "SIPT", + "type": "heliport", + "name": "Petrobrás Refinaria de Paulínea Replan Heliport", + "latitude_deg": "-22.731765", + "longitude_deg": "-47.137803", + "elevation_ft": "1955", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Paulínea", + "scheduled_service": "no", + "gps_code": "SIPT", + "local_code": "SP0539" + }, + { + "id": "36191", + "ident": "SIPU", + "type": "small_airport", + "name": "Fazenda Lagoa da Capa Airport", + "latitude_deg": "-19.448333740234375", + "longitude_deg": "-47.36277770996094", + "elevation_ft": "3567", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Perdizes", + "scheduled_service": "no", + "gps_code": "SIPU" + }, + { + "id": "36192", + "ident": "SIPV", + "type": "heliport", + "name": "Aquarius Heliport", + "latitude_deg": "-23.60333251953125", + "longitude_deg": "-46.86555480957031", + "elevation_ft": "2726", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cotia", + "scheduled_service": "no", + "gps_code": "SIPV" + }, + { + "id": "36193", + "ident": "SIPX", + "type": "heliport", + "name": "Gramado Heliport", + "latitude_deg": "-22.907754", + "longitude_deg": "-47.004265", + "elevation_ft": "2395", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SIPX", + "local_code": "SP0540" + }, + { + "id": "36194", + "ident": "SIPY", + "type": "small_airport", + "name": "Ambrósio Airport", + "latitude_deg": "-1.981389045715332", + "longitude_deg": "-50.8113899230957", + "elevation_ft": "96", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Portel", + "scheduled_service": "no", + "gps_code": "SIPY" + }, + { + "id": "36195", + "ident": "SIPZ", + "type": "heliport", + "name": "Papaiz Heliport", + "latitude_deg": "-23.676378", + "longitude_deg": "-46.618209", + "elevation_ft": "2684", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Diadema", + "scheduled_service": "no", + "gps_code": "SIPZ", + "local_code": "SP0541" + }, + { + "id": "36196", + "ident": "SIQA", + "type": "small_airport", + "name": "Senador Antônio Farias Airport", + "latitude_deg": "-6.407982", + "longitude_deg": "-35.044753", + "elevation_ft": "138", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Baia Formosa", + "scheduled_service": "no", + "gps_code": "SDR3", + "local_code": "RN0018", + "keywords": "SIQA" + }, + { + "id": "36197", + "ident": "SIQB", + "type": "small_airport", + "name": "Monte Verde Airport", + "latitude_deg": "-3.274167060852051", + "longitude_deg": "-50.321388244628906", + "elevation_ft": "249", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Portel", + "scheduled_service": "no", + "gps_code": "SIQB" + }, + { + "id": "36198", + "ident": "SIQC", + "type": "small_airport", + "name": "Fazenda Paraíso Airport", + "latitude_deg": "-19.163066", + "longitude_deg": "-52.99721", + "elevation_ft": "1592", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Costa Rica", + "scheduled_service": "no", + "gps_code": "SIQC", + "local_code": "MS0117" + }, + { + "id": "36199", + "ident": "SIQD", + "type": "small_airport", + "name": "Fazenda Estância Regina Airport", + "latitude_deg": "-20.644541", + "longitude_deg": "-54.791619", + "elevation_ft": "1968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Terenos", + "scheduled_service": "no", + "gps_code": "SIQD", + "local_code": "MS0118" + }, + { + "id": "36200", + "ident": "SIQE", + "type": "small_airport", + "name": "Botelho Airport", + "latitude_deg": "-15.937469", + "longitude_deg": "-47.726636", + "elevation_ft": "3399", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SIQE", + "local_code": "DF0005", + "keywords": "Esquadrilha Fox" + }, + { + "id": "36201", + "ident": "SIQF", + "type": "heliport", + "name": "Recanto das Marés Heliport", + "latitude_deg": "-27.378013", + "longitude_deg": "-48.530822", + "elevation_ft": "181", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Governador Celso Ramos", + "scheduled_service": "no", + "gps_code": "SILM", + "local_code": "SC0056", + "keywords": "SIQF" + }, + { + "id": "36202", + "ident": "SIQG", + "type": "small_airport", + "name": "Fazenda Morro Alto Airport", + "latitude_deg": "-10.504746", + "longitude_deg": "-55.709881", + "elevation_ft": "899", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Canaã do Norte", + "scheduled_service": "no", + "gps_code": "SNYL", + "local_code": "MT0278", + "keywords": "SIQG" + }, + { + "id": "36203", + "ident": "SIQH", + "type": "heliport", + "name": "Universidade Mogi das Cruzes Heliport", + "latitude_deg": "-23.52750015258789", + "longitude_deg": "-46.73444366455078", + "elevation_ft": "2419", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIQH" + }, + { + "id": "36204", + "ident": "SIQI", + "type": "small_airport", + "name": "Aerolis Airport", + "latitude_deg": "-30.536381", + "longitude_deg": "-50.467404", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Mostardas", + "scheduled_service": "no", + "gps_code": "SIQI", + "local_code": "RS0066", + "keywords": "Aeroagricola Lisboa, Palmares do Sul" + }, + { + "id": "235", + "ident": "SIQJ", + "type": "small_airport", + "name": "Morro do Chapéu II Airport", + "latitude_deg": "-14.9583", + "longitude_deg": "-55.800701", + "elevation_ft": "989", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Chapada Dos Guimarães", + "scheduled_service": "no", + "gps_code": "SIQJ", + "local_code": "MT0117" + }, + { + "id": "36205", + "ident": "SIQK", + "type": "small_airport", + "name": "Nova Odessa Airport", + "latitude_deg": "-22.781533", + "longitude_deg": "-47.334557", + "elevation_ft": "1909", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Nova Odessa", + "scheduled_service": "no", + "gps_code": "SIQK", + "local_code": "SP0194", + "keywords": "Rodrigues" + }, + { + "id": "36206", + "ident": "SIQL", + "type": "heliport", + "name": "Duas Rodas Heliport", + "latitude_deg": "-26.486726", + "longitude_deg": "-49.06477", + "elevation_ft": "79", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Jaraguá Do Sul", + "scheduled_service": "no", + "gps_code": "SJDR", + "local_code": "SC0065", + "keywords": "SIQL" + }, + { + "id": "36207", + "ident": "SIQM", + "type": "small_airport", + "name": "Fazenda Bom Jardim Airport", + "latitude_deg": "-17.900278091430664", + "longitude_deg": "-50.12361145019531", + "elevation_ft": "1693", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Porteirão", + "scheduled_service": "no", + "gps_code": "SIQM" + }, + { + "id": "36208", + "ident": "SIQN", + "type": "small_airport", + "name": "Fazenda Flor da Mata Airport", + "latitude_deg": "-10.716667175292969", + "longitude_deg": "-52.801944732666016", + "elevation_ft": "1264", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São José Do Xingu", + "scheduled_service": "no", + "gps_code": "SIQN" + }, + { + "id": "36209", + "ident": "SIQO", + "type": "small_airport", + "name": "Fazenda Mercedes Estância Airport", + "latitude_deg": "-18.33416748046875", + "longitude_deg": "-55.48500061035156", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SIQO" + }, + { + "id": "36210", + "ident": "SIQP", + "type": "heliport", + "name": "Chimical Heliport", + "latitude_deg": "-23.582778930664062", + "longitude_deg": "-46.168888092041016", + "elevation_ft": "2576", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mogi Das Cruzes", + "scheduled_service": "no", + "gps_code": "SIQP" + }, + { + "id": "36211", + "ident": "SIQQ", + "type": "small_airport", + "name": "Aero Resende Airport", + "latitude_deg": "-18.13361167907715", + "longitude_deg": "-49.796112060546875", + "elevation_ft": "6825", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Bom Jesus", + "scheduled_service": "no", + "gps_code": "SIQQ" + }, + { + "id": "36212", + "ident": "SIQR", + "type": "small_airport", + "name": "Fazenda Triângulo Airport", + "latitude_deg": "-13.581944465637207", + "longitude_deg": "-49.820556640625", + "elevation_ft": "804", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Bonópolis", + "scheduled_service": "no", + "gps_code": "SIQR" + }, + { + "id": "36213", + "ident": "SIQS", + "type": "small_airport", + "name": "Fazenda Terra do Sol Airport", + "latitude_deg": "-15.375074", + "longitude_deg": "-57.131084", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Estrela", + "scheduled_service": "no", + "gps_code": "SIQS", + "local_code": "MT0119" + }, + { + "id": "36214", + "ident": "SIQT", + "type": "heliport", + "name": "Minerva Heliport", + "latitude_deg": "-22.866112", + "longitude_deg": "-43.214169", + "elevation_ft": "8", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "keywords": "SIQT" + }, + { + "id": "36215", + "ident": "SIQU", + "type": "small_airport", + "name": "Alcoolvare Airport", + "latitude_deg": "-20.08639", + "longitude_deg": "-51.309468", + "elevation_ft": "1280", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aparecida Do Taboado", + "scheduled_service": "no", + "gps_code": "SIQU", + "local_code": "MS0122" + }, + { + "id": "36216", + "ident": "SIQV", + "type": "small_airport", + "name": "Fazenda Matão Airport", + "latitude_deg": "-12.891057", + "longitude_deg": "-58.57503", + "elevation_ft": "1499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SIQV", + "local_code": "MT0120", + "keywords": "Fazenda Sol Aberto" + }, + { + "id": "36217", + "ident": "SIQW", + "type": "small_airport", + "name": "Fazenda Santa Maria do Jauru Airport", + "latitude_deg": "-15.823852", + "longitude_deg": "-58.551443", + "elevation_ft": "680", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Esperidião", + "scheduled_service": "no", + "keywords": "SIQW" + }, + { + "id": "36218", + "ident": "SIQX", + "type": "small_airport", + "name": "Fazenda Barranquinho Airport", + "latitude_deg": "-15.636667251586914", + "longitude_deg": "-57.468055725097656", + "elevation_ft": "558", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Estrela", + "scheduled_service": "no", + "gps_code": "SIQX" + }, + { + "id": "36219", + "ident": "SIQY", + "type": "small_airport", + "name": "Fazenda Amizade Airport", + "latitude_deg": "-12.628056", + "longitude_deg": "-55.945", + "elevation_ft": "1264", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "gps_code": "SIQY", + "local_code": "MT0121" + }, + { + "id": "36220", + "ident": "SIQZ", + "type": "small_airport", + "name": "Fazenda Carolina Airport", + "latitude_deg": "-15.594296", + "longitude_deg": "-46.603227", + "elevation_ft": "1871", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Buritis", + "scheduled_service": "no", + "gps_code": "SSFZ", + "local_code": "MG0182", + "keywords": "SIQZ" + }, + { + "id": "36221", + "ident": "SIRA", + "type": "small_airport", + "name": "Fazenda Magiana Airport", + "latitude_deg": "-12.3886108398", + "longitude_deg": "-55.242778778099996", + "elevation_ft": "1575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "gps_code": "SIRA" + }, + { + "id": "36222", + "ident": "SIRB", + "type": "small_airport", + "name": "Fazenda Mimoso Airport", + "latitude_deg": "-21.77111053466797", + "longitude_deg": "-54.38166809082031", + "elevation_ft": "1476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Brilhante", + "scheduled_service": "no", + "gps_code": "SIRB" + }, + { + "id": "36223", + "ident": "SIRC", + "type": "small_airport", + "name": "Fazenda Jarinã Airport", + "latitude_deg": "-10.325341", + "longitude_deg": "-53.58592", + "elevation_ft": "1112", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Peixoto De Azevedo", + "scheduled_service": "no", + "gps_code": "SJDM", + "local_code": "MT0167", + "keywords": "SIRC" + }, + { + "id": "36224", + "ident": "SIRD", + "type": "small_airport", + "name": "Rancho Jatobá Airport", + "latitude_deg": "-12.241211", + "longitude_deg": "-50.935497", + "elevation_ft": "677", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Novo Santo Antônio", + "scheduled_service": "no", + "keywords": "SIRD" + }, + { + "id": "36225", + "ident": "SIRE", + "type": "small_airport", + "name": "Fazenda Rancho Estrela IV Airport", + "latitude_deg": "-13.651944160461426", + "longitude_deg": "-46.54138946533203", + "elevation_ft": "2549", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "São Domingos", + "scheduled_service": "no", + "gps_code": "SIRE" + }, + { + "id": "36226", + "ident": "SIRF", + "type": "small_airport", + "name": "José Múcio Monteiro Airport", + "latitude_deg": "-8.631111", + "longitude_deg": "-35.271667", + "elevation_ft": "479", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Rio Formoso", + "scheduled_service": "no", + "gps_code": "SIRF", + "local_code": "PE0015" + }, + { + "id": "36227", + "ident": "SIRG", + "type": "small_airport", + "name": "Fazenda Esperança Airport", + "latitude_deg": "-12.035795", + "longitude_deg": "-51.634884", + "elevation_ft": "1214", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alto da Boa Vista", + "scheduled_service": "no", + "keywords": "SIRG" + }, + { + "id": "36228", + "ident": "SIRH", + "type": "small_airport", + "name": "Fazenda Morada da Lua Airport", + "latitude_deg": "-18.263323", + "longitude_deg": "-54.311836", + "elevation_ft": "1450", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Coxim", + "scheduled_service": "no", + "gps_code": "SIRH", + "local_code": "MS0124" + }, + { + "id": "36229", + "ident": "SIRI", + "type": "small_airport", + "name": "Barra Grande Airport", + "latitude_deg": "-13.906082", + "longitude_deg": "-38.940804", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Maraú", + "scheduled_service": "yes", + "gps_code": "SIRI", + "local_code": "BA0096", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barra_Grande_Airport" + }, + { + "id": "236", + "ident": "SIRJ", + "type": "small_airport", + "name": "Caima Airport", + "latitude_deg": "-4.304645", + "longitude_deg": "-56.218103", + "elevation_ft": "115", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SIRJ", + "local_code": "PA0054" + }, + { + "id": "335700", + "ident": "SIRK", + "type": "heliport", + "name": "Hospital Pronto Socorro João XXIII Helipad", + "latitude_deg": "-19.925768", + "longitude_deg": "-43.931354", + "elevation_ft": "2818", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SIRK", + "local_code": "MG0233" + }, + { + "id": "36230", + "ident": "SIRL", + "type": "heliport", + "name": "Virgínia Lyra Heliport", + "latitude_deg": "-19.982484", + "longitude_deg": "-48.264903", + "elevation_ft": "1936", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Conceição Das Alagoas", + "scheduled_service": "no", + "gps_code": "SIRL", + "local_code": "MG0234" + }, + { + "id": "237", + "ident": "SIRN", + "type": "small_airport", + "name": "Fazenda Jaó Airport", + "latitude_deg": "-14.769135", + "longitude_deg": "-51.985738", + "elevation_ft": "854", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Xavantina", + "scheduled_service": "no", + "gps_code": "SIRN", + "local_code": "MT0124" + }, + { + "id": "335697", + "ident": "SIRO", + "type": "heliport", + "name": "Maksoud Plaza Helipad", + "latitude_deg": "-23.56324", + "longitude_deg": "-46.651356", + "elevation_ft": "2920", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIRO", + "local_code": "SP0545" + }, + { + "id": "36231", + "ident": "SIRP", + "type": "heliport", + "name": "Frei Caneca Heliport", + "latitude_deg": "-8.057499885559082", + "longitude_deg": "-34.87055587768555", + "elevation_ft": "270", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Recife", + "scheduled_service": "no", + "gps_code": "SIRP" + }, + { + "id": "36232", + "ident": "SIRQ", + "type": "small_airport", + "name": "Fazenda Maranata Airport", + "latitude_deg": "-12.771169", + "longitude_deg": "-60.872107", + "elevation_ft": "1000", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Chupinguaia", + "scheduled_service": "no", + "gps_code": "SIRQ" + }, + { + "id": "36233", + "ident": "SIRR", + "type": "small_airport", + "name": "Lagoa dos Coqueiros Airport", + "latitude_deg": "-9.235556", + "longitude_deg": "-56.987778", + "elevation_ft": "1280", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Paranaíta", + "scheduled_service": "no", + "keywords": "SIRR" + }, + { + "id": "36234", + "ident": "SIRS", + "type": "small_airport", + "name": "Fazenda São Sebastião Airport", + "latitude_deg": "-19.636525", + "longitude_deg": "-48.789251", + "elevation_ft": "2461", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Campo Florido", + "scheduled_service": "no", + "gps_code": "SIRS", + "local_code": "MG0107" + }, + { + "id": "36235", + "ident": "SIRT", + "type": "small_airport", + "name": "Marca de Casco Airport", + "latitude_deg": "-13.727499961853027", + "longitude_deg": "-57.02166748046875", + "elevation_ft": "1158", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São José Do Rio Claro", + "scheduled_service": "no", + "gps_code": "SIRT" + }, + { + "id": "36236", + "ident": "SIRU", + "type": "small_airport", + "name": "Fazenda Bahia Airport", + "latitude_deg": "-16.927115", + "longitude_deg": "-54.070919", + "elevation_ft": "6234", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pedra Preta", + "scheduled_service": "no", + "gps_code": "SIXU", + "local_code": "MT0151", + "keywords": "SIRU" + }, + { + "id": "36237", + "ident": "SIRV", + "type": "small_airport", + "name": "Fazenda Morro Branco Airport", + "latitude_deg": "-16.118055", + "longitude_deg": "-58.765835", + "elevation_ft": "400", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Esperidião", + "scheduled_service": "no", + "gps_code": "SIRV", + "local_code": "MT0127" + }, + { + "id": "36238", + "ident": "SIRW", + "type": "small_airport", + "name": "Fazenda Serra Vermelha Airport", + "latitude_deg": "-6.874737", + "longitude_deg": "-45.306809", + "elevation_ft": "1657", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Sambaíba", + "scheduled_service": "no", + "gps_code": "SDB8", + "local_code": "MA0123", + "keywords": "SIRW" + }, + { + "id": "36239", + "ident": "SIRX", + "type": "heliport", + "name": "Vila Velha Heliport", + "latitude_deg": "-23.024389", + "longitude_deg": "-44.342784", + "elevation_ft": "79", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SIQB", + "local_code": "RJ0088", + "keywords": "SIRX" + }, + { + "id": "36240", + "ident": "SIRY", + "type": "heliport", + "name": "Hiper Bergamini Heliport", + "latitude_deg": "-23.465835", + "longitude_deg": "-46.581903", + "elevation_ft": "2481", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIRY", + "local_code": "SP0547" + }, + { + "id": "36241", + "ident": "SIRZ", + "type": "heliport", + "name": "Condomínio Faria Lima Pinheiros Heliport", + "latitude_deg": "-23.569435", + "longitude_deg": "-46.691203", + "elevation_ft": "2714", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIRZ", + "local_code": "SP0548" + }, + { + "id": "36242", + "ident": "SISA", + "type": "heliport", + "name": "Transpel Heliport", + "latitude_deg": "-22.002500534057617", + "longitude_deg": "-47.86888885498047", + "elevation_ft": "2890", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Carlos", + "scheduled_service": "no", + "gps_code": "SISA" + }, + { + "id": "41684", + "ident": "SISB", + "type": "closed", + "name": "Fazenda Eldorado - Agropecuária Paleana S/A Airport", + "latitude_deg": "-12.154167", + "longitude_deg": "-51.686943", + "elevation_ft": "1108", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Bom Jesus Do Araguaia", + "scheduled_service": "no", + "keywords": "SISB" + }, + { + "id": "36244", + "ident": "SISC", + "type": "heliport", + "name": "Senador Carlos Lyra Heliport", + "latitude_deg": "-19.957345", + "longitude_deg": "-47.768866", + "elevation_ft": "1968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Delta", + "scheduled_service": "no", + "gps_code": "SISC", + "local_code": "MG0235" + }, + { + "id": "36245", + "ident": "SISD", + "type": "small_airport", + "name": "Fazenda São Sebastião Airport", + "latitude_deg": "-18.14522", + "longitude_deg": "-51.273805", + "elevation_ft": "1982", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Aparecida Do Rio Doce", + "scheduled_service": "no", + "gps_code": "SISD", + "local_code": "GO0054" + }, + { + "id": "36246", + "ident": "SISE", + "type": "small_airport", + "name": "Fazenda Kanaxuê Airport", + "latitude_deg": "-12.015832901000977", + "longitude_deg": "-50.866668701171875", + "elevation_ft": "650", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São Félix Do Araguaia", + "scheduled_service": "no", + "gps_code": "SISE" + }, + { + "id": "36247", + "ident": "SISF", + "type": "small_airport", + "name": "Fazenda Santa Feliciana Airport", + "latitude_deg": "-20.941110610961914", + "longitude_deg": "-56.67333221435547", + "elevation_ft": "2198", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bonito", + "scheduled_service": "no", + "gps_code": "SISF" + }, + { + "id": "44451", + "ident": "SISH", + "type": "heliport", + "name": "Vega Heliport", + "latitude_deg": "-3.720225", + "longitude_deg": "-38.542485", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SISH", + "local_code": "CE0038" + }, + { + "id": "36248", + "ident": "SISI", + "type": "small_airport", + "name": "Fazenda Sete Ilhas Airport", + "latitude_deg": "-17.634166717529297", + "longitude_deg": "-50.47055435180664", + "elevation_ft": "1720", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Acreúna", + "scheduled_service": "no", + "gps_code": "SISI" + }, + { + "id": "36249", + "ident": "SISJ", + "type": "small_airport", + "name": "Fazenda São José do Piquiri Airport", + "latitude_deg": "-17.455984", + "longitude_deg": "-55.56373", + "elevation_ft": "427", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SISJ", + "local_code": "MS0125" + }, + { + "id": "36250", + "ident": "SISK", + "type": "small_airport", + "name": "Fazenda Cimal Airstrip", + "latitude_deg": "-18.8645", + "longitude_deg": "-52.0474", + "elevation_ft": "2158", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Aporé", + "scheduled_service": "no", + "gps_code": "SISK", + "local_code": "GO0055" + }, + { + "id": "36251", + "ident": "SISL", + "type": "small_airport", + "name": "Fazenda Santa Lúcia Airport", + "latitude_deg": "-16.894737", + "longitude_deg": "-55.90672", + "elevation_ft": "509", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão De Melgaço", + "scheduled_service": "no", + "gps_code": "SISL", + "local_code": "MT0129" + }, + { + "id": "46355", + "ident": "SISM", + "type": "heliport", + "name": "Hospital Miguel Arraes Helipad", + "latitude_deg": "-7.920322", + "longitude_deg": "-34.891157", + "elevation_ft": "161", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Paulista", + "scheduled_service": "no", + "gps_code": "SNRR", + "local_code": "PE0049", + "home_link": "http://portal.saude.pe.gov.br/unidades-de-saude-e-servicos/secretaria-executiva-de-atencao-saude/hospital-metropolitano-norte", + "keywords": "SISM, Hospital Metropolitano Norte" + }, + { + "id": "36252", + "ident": "SISN", + "type": "small_airport", + "name": "Fazenda Nossa Senhora Aparecida Airport", + "latitude_deg": "-17.545000076293945", + "longitude_deg": "-53.893890380859375", + "elevation_ft": "2001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Sonora", + "scheduled_service": "no", + "gps_code": "SISN" + }, + { + "id": "36253", + "ident": "SISO", + "type": "small_airport", + "name": "Fazenda Santo Ambrósio Airport", + "latitude_deg": "-0.091667", + "longitude_deg": "-49.580555", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Marajó Park Resort", + "scheduled_service": "no", + "gps_code": "SISO", + "local_code": "PA0056", + "keywords": "Mexiana Island," + }, + { + "id": "29977", + "ident": "SISP", + "type": "small_airport", + "name": "Santa Paula Airport", + "latitude_deg": "-20.703899383544922", + "longitude_deg": "-49.39139938354492", + "elevation_ft": "1860", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ipiguá", + "scheduled_service": "no", + "gps_code": "SISP", + "iata_code": "0" + }, + { + "id": "36254", + "ident": "SISQ", + "type": "heliport", + "name": "Tino Heliport", + "latitude_deg": "-26.306389", + "longitude_deg": "-48.933334", + "elevation_ft": "53", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Joinville", + "scheduled_service": "no", + "gps_code": "SISQ", + "local_code": "SC0060" + }, + { + "id": "36255", + "ident": "SISR", + "type": "closed", + "name": "Brigadeiro Heliport", + "latitude_deg": "-23.584018", + "longitude_deg": "-46.669241", + "elevation_ft": "2523", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SISR" + }, + { + "id": "36256", + "ident": "SISS", + "type": "small_airport", + "name": "Fazenda Lagoa do Campo Airport", + "latitude_deg": "-20.384721756", + "longitude_deg": "-53.4011116028", + "elevation_ft": "1542", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas Do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SISS" + }, + { + "id": "335723", + "ident": "SIST", + "type": "heliport", + "name": "Zizico Heliport", + "latitude_deg": "-25.683651", + "longitude_deg": "-48.460347", + "elevation_ft": "21", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Pontal do Paraná", + "scheduled_service": "no", + "gps_code": "SIST", + "local_code": "PR0111" + }, + { + "id": "36257", + "ident": "SISU", + "type": "small_airport", + "name": "Fazenda Pontal do Lagoa Airport", + "latitude_deg": "-20.8700008392334", + "longitude_deg": "-53.154998779296875", + "elevation_ft": "1264", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Santa Rita Do Pardo", + "scheduled_service": "no", + "gps_code": "SISU" + }, + { + "id": "335725", + "ident": "SISV", + "type": "small_airport", + "name": "Fazenda Promissão Airport", + "latitude_deg": "-13.897372", + "longitude_deg": "-57.104208", + "elevation_ft": "1690", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "gps_code": "SISV", + "local_code": "MT0130" + }, + { + "id": "46470", + "ident": "SISW", + "type": "small_airport", + "name": "Fazenda Mato Grosso Airport", + "latitude_deg": "-13.824526", + "longitude_deg": "-59.163458", + "elevation_ft": "1690", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campos de Júlio", + "scheduled_service": "no", + "gps_code": "SISW", + "local_code": "MT0131" + }, + { + "id": "36258", + "ident": "SISX", + "type": "small_airport", + "name": "Santa Terezinha Airport", + "latitude_deg": "-19.379788", + "longitude_deg": "-56.057986", + "elevation_ft": "361", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SISX", + "local_code": "MS0126" + }, + { + "id": "36259", + "ident": "SISY", + "type": "small_airport", + "name": "Piraquara Airport", + "latitude_deg": "-25.450986", + "longitude_deg": "-49.1422", + "elevation_ft": "3212", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Piraquara", + "scheduled_service": "no", + "gps_code": "SISY", + "local_code": "PR0052" + }, + { + "id": "36260", + "ident": "SISZ", + "type": "small_airport", + "name": "Santa Felicidade Airport", + "latitude_deg": "-5.575832843780518", + "longitude_deg": "-56.63972091674805", + "elevation_ft": "821", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SISZ" + }, + { + "id": "36261", + "ident": "SITA", + "type": "small_airport", + "name": "Nossa Senhora da Conceição Airport", + "latitude_deg": "-7.220277786254883", + "longitude_deg": "-56.16666793823242", + "elevation_ft": "958", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SITA" + }, + { + "id": "36262", + "ident": "SITB", + "type": "small_airport", + "name": "Fazenda Touro Branco Airport", + "latitude_deg": "-23.01328", + "longitude_deg": "-53.790618", + "elevation_ft": "951", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Naviraí", + "scheduled_service": "no", + "gps_code": "SITB", + "local_code": "MS0127" + }, + { + "id": "36264", + "ident": "SITD", + "type": "small_airport", + "name": "Cara Preta Airport", + "latitude_deg": "-5.1061110496521", + "longitude_deg": "-57.48249816894531", + "elevation_ft": "155", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SITD" + }, + { + "id": "36265", + "ident": "SITE", + "type": "heliport", + "name": "Telefônica Helipad", + "latitude_deg": "-23.566308", + "longitude_deg": "-46.642617", + "elevation_ft": "2976", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SITE", + "local_code": "SP0552" + }, + { + "id": "36266", + "ident": "SITF", + "type": "small_airport", + "name": "Fazenda Depósito Airport", + "latitude_deg": "4.108329772949219", + "longitude_deg": "-60.733299255371094", + "elevation_ft": "365", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SITF" + }, + { + "id": "335730", + "ident": "SITG", + "type": "heliport", + "name": "INTO Helipad", + "latitude_deg": "-22.893898", + "longitude_deg": "-43.215054", + "elevation_ft": "167", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SITG", + "local_code": "RJ0089" + }, + { + "id": "36267", + "ident": "SITH", + "type": "small_airport", + "name": "Fazenda Itaipu Airport", + "latitude_deg": "-17.67361068725586", + "longitude_deg": "-50.388057708740234", + "elevation_ft": "1644", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Turvelândia", + "scheduled_service": "no", + "gps_code": "SITH" + }, + { + "id": "36268", + "ident": "SITI", + "type": "closed", + "name": "Madenorte Airport", + "latitude_deg": "-2.318889", + "longitude_deg": "-52.914444", + "elevation_ft": "132", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Porto de Moz", + "scheduled_service": "no", + "keywords": "SITI" + }, + { + "id": "36269", + "ident": "SITJ", + "type": "small_airport", + "name": "Fazenda São Gabriel Airport", + "latitude_deg": "-7.4904", + "longitude_deg": "-46.144934", + "elevation_ft": "738", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Balsas", + "scheduled_service": "no", + "gps_code": "SWBN", + "local_code": "MA0078", + "keywords": "SITJ" + }, + { + "id": "36270", + "ident": "SITK", + "type": "heliport", + "name": "Jomarca Helipad", + "latitude_deg": "-23.467395", + "longitude_deg": "-46.485917", + "elevation_ft": "2592", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarulhos", + "scheduled_service": "no", + "gps_code": "SITK", + "local_code": "SP0553" + }, + { + "id": "45568", + "ident": "SITL", + "type": "small_airport", + "name": "Fazenda Flores Airport", + "latitude_deg": "-5.049167", + "longitude_deg": "-40.234167", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Tamboril", + "scheduled_service": "no", + "gps_code": "SIUH", + "local_code": "CE0016", + "keywords": "SITL" + }, + { + "id": "36271", + "ident": "SITM", + "type": "heliport", + "name": "Trama Heliport", + "latitude_deg": "-23.650556564331055", + "longitude_deg": "-46.72639083862305", + "elevation_ft": "2474", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SITM" + }, + { + "id": "36272", + "ident": "SITN", + "type": "small_airport", + "name": "Fazenda Santo Antônio Diamandoré Airport", + "latitude_deg": "-18.24305534362793", + "longitude_deg": "-57.55611038208008", + "elevation_ft": "493", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SITN" + }, + { + "id": "36273", + "ident": "SITO", + "type": "small_airport", + "name": "Muriçoca Airport", + "latitude_deg": "-7.154167175292969", + "longitude_deg": "-56.636112213134766", + "elevation_ft": "361", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SITO" + }, + { + "id": "36274", + "ident": "SITP", + "type": "heliport", + "name": "Sítio Santa Izabel Heliport", + "latitude_deg": "-23.602222", + "longitude_deg": "-47.273335", + "elevation_ft": "2737", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ibiúna", + "scheduled_service": "no", + "gps_code": "SITP", + "local_code": "SP0555" + }, + { + "id": "36275", + "ident": "SITQ", + "type": "heliport", + "name": "Vivo S/A Helipad", + "latitude_deg": "-23.620374", + "longitude_deg": "-46.69904", + "elevation_ft": "2484", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SITQ", + "local_code": "SP0556", + "keywords": "Telesp Celular" + }, + { + "id": "45582", + "ident": "SITR", + "type": "small_airport", + "name": "Fazenda Córrego Limpo Airport", + "latitude_deg": "-20.173333", + "longitude_deg": "-55.069444", + "elevation_ft": "1509", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Terenos", + "scheduled_service": "no", + "gps_code": "SITR" + }, + { + "id": "335746", + "ident": "SITS", + "type": "small_airport", + "name": "Estância Indiana Airport", + "latitude_deg": "-13.130369", + "longitude_deg": "-55.981722", + "elevation_ft": "1388", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Lucas do Rio Verde", + "scheduled_service": "no", + "gps_code": "SITS", + "local_code": "MT0578" + }, + { + "id": "36276", + "ident": "SITT", + "type": "small_airport", + "name": "Fazenda Guaíra Airport", + "latitude_deg": "-7.089905", + "longitude_deg": "-45.95139", + "elevation_ft": "1900", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Balsas", + "scheduled_service": "no", + "keywords": "SITT" + }, + { + "id": "36277", + "ident": "SITU", + "type": "small_airport", + "name": "Fazenda Santa Genoveva Airport", + "latitude_deg": "-17.944125", + "longitude_deg": "-50.339237", + "elevation_ft": "1526", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Turvelândia", + "scheduled_service": "no", + "gps_code": "SITU", + "local_code": "GO0057" + }, + { + "id": "36278", + "ident": "SITV", + "type": "small_airport", + "name": "Fazenda Chapadão Airport", + "latitude_deg": "-13.410938", + "longitude_deg": "-55.673611", + "elevation_ft": "1450", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santa Rita do Trivelato", + "scheduled_service": "no", + "keywords": "SITV" + }, + { + "id": "36279", + "ident": "SITW", + "type": "small_airport", + "name": "Fazenda Santa Luzia Airport", + "latitude_deg": "-6.823332786560059", + "longitude_deg": "-45.41194534301758", + "elevation_ft": "1720", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "São Raimundo Das Mangabeiras", + "scheduled_service": "no", + "gps_code": "SITW" + }, + { + "id": "36280", + "ident": "SITX", + "type": "small_airport", + "name": "Fazenda Chapéu de Pano Airport", + "latitude_deg": "-19.774445", + "longitude_deg": "-55.521667", + "elevation_ft": "519", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SITX", + "keywords": "SITX" + }, + { + "id": "36281", + "ident": "SITY", + "type": "small_airport", + "name": "Fazenda São Geraldo Airport", + "latitude_deg": "-19.403888702392578", + "longitude_deg": "-55.86277770996094", + "elevation_ft": "486", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SITY" + }, + { + "id": "36282", + "ident": "SITZ", + "type": "small_airport", + "name": "Fazenda MRV Airport", + "latitude_deg": "-14.917778015136719", + "longitude_deg": "-43.35972213745117", + "elevation_ft": "1713", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Monte Azul", + "scheduled_service": "no", + "gps_code": "SITZ" + }, + { + "id": "36283", + "ident": "SIUA", + "type": "small_airport", + "name": "Fazenda Barra do Lagoa Airport", + "latitude_deg": "-20.872777938842773", + "longitude_deg": "-53.21083450317383", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Santa Rita Do Pardo", + "scheduled_service": "no", + "gps_code": "SIUA" + }, + { + "id": "36284", + "ident": "SIUB", + "type": "small_airport", + "name": "Aerojaco Airport", + "latitude_deg": "-13.505000114440918", + "longitude_deg": "-55.15083312988281", + "elevation_ft": "1510", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "gps_code": "SIUB" + }, + { + "id": "36285", + "ident": "SIUC", + "type": "small_airport", + "name": "Selva de Pedra Airport", + "latitude_deg": "-7.226388931274414", + "longitude_deg": "-56.670833587646484", + "elevation_ft": "391", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SIUC" + }, + { + "id": "36286", + "ident": "SIUD", + "type": "heliport", + "name": "Montes Horere Helipad", + "latitude_deg": "-23.538534", + "longitude_deg": "-46.607577", + "elevation_ft": "2507", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIUD", + "local_code": "SP0558" + }, + { + "id": "36287", + "ident": "SIUE", + "type": "heliport", + "name": "Grande Hotel São Pedro Heliport", + "latitude_deg": "-22.598926", + "longitude_deg": "-47.8811", + "elevation_ft": "1611", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Águas de São Pedro", + "scheduled_service": "no", + "gps_code": "SJIH", + "local_code": "SP0625", + "keywords": "SIUE" + }, + { + "id": "36288", + "ident": "SIUF", + "type": "small_airport", + "name": "Fazenda São Francisco Airport", + "latitude_deg": "-10.156944", + "longitude_deg": "-53.701668", + "elevation_ft": "1165", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Peixoto De Azevedo", + "scheduled_service": "no", + "gps_code": "SIUF", + "local_code": "MT0134" + }, + { + "id": "36289", + "ident": "SIUG", + "type": "small_airport", + "name": "Fazenda Santa Irene Airport", + "latitude_deg": "-22.496183", + "longitude_deg": "-51.905572", + "elevation_ft": "1116", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sandovalina", + "scheduled_service": "no", + "gps_code": "SIUG", + "local_code": "SP0195" + }, + { + "id": "36290", + "ident": "SIUH", + "type": "small_airport", + "name": "Fazenda Santa Ana Airport", + "latitude_deg": "-11.139721870422363", + "longitude_deg": "-55.879722595214844", + "elevation_ft": "1038", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Itaúba", + "scheduled_service": "no", + "gps_code": "SIUH" + }, + { + "id": "335754", + "ident": "SIUI", + "type": "heliport", + "name": "ITH Helipad.", + "latitude_deg": "-21.781148", + "longitude_deg": "-43.361251", + "elevation_ft": "2854", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Juiz de Fora", + "scheduled_service": "no", + "gps_code": "SIUI", + "local_code": "MG0236" + }, + { + "id": "36291", + "ident": "SIUJ", + "type": "small_airport", + "name": "Pista Santa Tereza Airport", + "latitude_deg": "-5.185832977294922", + "longitude_deg": "-57.584442138671875", + "elevation_ft": "401", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SIUJ" + }, + { + "id": "36292", + "ident": "SIUK", + "type": "small_airport", + "name": "Serra Verde Airport", + "latitude_deg": "-6.925000190734863", + "longitude_deg": "-56.991390228271484", + "elevation_ft": "840", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Jacareacanga", + "scheduled_service": "no", + "gps_code": "SIUK" + }, + { + "id": "36293", + "ident": "SIUL", + "type": "small_airport", + "name": "Agrosserra Airport", + "latitude_deg": "-6.7755560874938965", + "longitude_deg": "-45.891666412353516", + "elevation_ft": "1926", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "São Raimundo Das Mangabeiras", + "scheduled_service": "no", + "gps_code": "SIUL" + }, + { + "id": "36294", + "ident": "SIUM", + "type": "small_airport", + "name": "Fazenda Planeste Airport", + "latitude_deg": "-8.556111", + "longitude_deg": "-46.849998", + "elevation_ft": "1841", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Balsas", + "scheduled_service": "no", + "gps_code": "SIUM", + "local_code": "MA0025" + }, + { + "id": "36295", + "ident": "SIUN", + "type": "heliport", + "name": "Uniban II Heliport", + "latitude_deg": "-23.6450004578", + "longitude_deg": "-46.5800018311", + "elevation_ft": "2429", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Bernardo Do Campo", + "scheduled_service": "no", + "gps_code": "SIUN" + }, + { + "id": "36296", + "ident": "SIUO", + "type": "small_airport", + "name": "Fazenda Santa Adélia Airport", + "latitude_deg": "-10.720669", + "longitude_deg": "-52.27856", + "elevation_ft": "1027", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São José Do Xingu", + "scheduled_service": "no", + "gps_code": "SIUO", + "local_code": "MT0135" + }, + { + "id": "36297", + "ident": "SIUP", + "type": "heliport", + "name": "Ford Camaçari Heliport", + "latitude_deg": "-12.673637", + "longitude_deg": "-38.273449", + "elevation_ft": "135", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Camaçari", + "scheduled_service": "no", + "gps_code": "SIXQ", + "local_code": "BA0198", + "keywords": "SIUP" + }, + { + "id": "44721", + "ident": "SIUQ", + "type": "small_airport", + "name": "Fazenda Primavera Airport", + "latitude_deg": "-20.975095", + "longitude_deg": "-54.329528", + "elevation_ft": "1624", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "gps_code": "SJJV", + "local_code": "MS0174", + "keywords": "SIUQ" + }, + { + "id": "36298", + "ident": "SIUR", + "type": "small_airport", + "name": "Fazenda Ribeirão Airport", + "latitude_deg": "-19.610011", + "longitude_deg": "-53.496045", + "elevation_ft": "1549", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Camapuã", + "scheduled_service": "no", + "gps_code": "SIUR", + "local_code": "MS0133" + }, + { + "id": "36299", + "ident": "SIUS", + "type": "small_airport", + "name": "Fazenda Dona Rosa S. Rezek Airport", + "latitude_deg": "-22.711748", + "longitude_deg": "-54.045042", + "elevation_ft": "1240", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Jateí", + "scheduled_service": "no", + "gps_code": "SDSK", + "local_code": "MS0053", + "keywords": "SIUS" + }, + { + "id": "45566", + "ident": "SIUT", + "type": "closed", + "name": "São Paulo do Piauí Airport", + "latitude_deg": "-17.012805", + "longitude_deg": "-39.181545", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Prado", + "scheduled_service": "no", + "keywords": "SIUT" + }, + { + "id": "335767", + "ident": "SIUU", + "type": "small_airport", + "name": "Fazenda Santa Eulalia Airport", + "latitude_deg": "-16.518436", + "longitude_deg": "-57.041305", + "elevation_ft": "394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Poconé", + "scheduled_service": "no", + "gps_code": "SIUU", + "local_code": "MT0137" + }, + { + "id": "36300", + "ident": "SIUV", + "type": "small_airport", + "name": "Fazenda São Matheus Airport", + "latitude_deg": "-20.317777633666992", + "longitude_deg": "-51.78361129760742", + "elevation_ft": "1365", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Selvíria", + "scheduled_service": "no", + "gps_code": "SIUV" + }, + { + "id": "238", + "ident": "SIUW", + "type": "small_airport", + "name": "Candote Airport", + "latitude_deg": "-20.839112", + "longitude_deg": "-52.301478", + "elevation_ft": "1093", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Três Lagoas", + "scheduled_service": "no", + "gps_code": "SWCC", + "local_code": "MS0366", + "keywords": "SIUW" + }, + { + "id": "36301", + "ident": "SIUX", + "type": "small_airport", + "name": "Pista Comunidade São Domingos", + "latitude_deg": "-6.420052", + "longitude_deg": "-56.049438", + "elevation_ft": "985", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "keywords": "SIUX" + }, + { + "id": "36302", + "ident": "SIUY", + "type": "small_airport", + "name": "Santos Dumont Airport", + "latitude_deg": "-7.012777805328369", + "longitude_deg": "-55.875", + "elevation_ft": "870", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Novo Progresso", + "scheduled_service": "no", + "gps_code": "SIUY" + }, + { + "id": "36303", + "ident": "SIUZ", + "type": "small_airport", + "name": "Boa Esperança Airport", + "latitude_deg": "-7.661388874053955", + "longitude_deg": "-55.96027755737305", + "elevation_ft": "788", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Novo Progresso", + "scheduled_service": "no", + "gps_code": "SIUZ" + }, + { + "id": "36304", + "ident": "SIVA", + "type": "heliport", + "name": "Cereal Citrus Heliport", + "latitude_deg": "-15.7069444656", + "longitude_deg": "-47.369445800799994", + "elevation_ft": "3183", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SIVA" + }, + { + "id": "36305", + "ident": "SIVB", + "type": "heliport", + "name": "Helicentro Zona Sul Heliport", + "latitude_deg": "-19.985428", + "longitude_deg": "-43.965118", + "elevation_ft": "3645", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SIVB", + "local_code": "MG0237", + "keywords": "Vide Bula" + }, + { + "id": "36306", + "ident": "SIVC", + "type": "small_airport", + "name": "Fazenda Iporanga Airport", + "latitude_deg": "-13.760061", + "longitude_deg": "-49.477873", + "elevation_ft": "1231", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Mutunópolis", + "scheduled_service": "no", + "gps_code": "SIIZ", + "local_code": "GO0050", + "keywords": "SIVC" + }, + { + "id": "239", + "ident": "SIVD", + "type": "small_airport", + "name": "Fazenda dos Três Rios Airport", + "latitude_deg": "-16.944212", + "longitude_deg": "-46.272526", + "elevation_ft": "1723", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Unaí", + "scheduled_service": "no", + "gps_code": "SWIP", + "local_code": "MG0490", + "keywords": "SIVD" + }, + { + "id": "45636", + "ident": "SIVE", + "type": "small_airport", + "name": "Fazenda Royal Airport", + "latitude_deg": "-23.503631", + "longitude_deg": "-48.000469", + "elevation_ft": "2447", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapetininga", + "scheduled_service": "no", + "keywords": "SIVE, SP0196" + }, + { + "id": "36307", + "ident": "SIVG", + "type": "small_airport", + "name": "Clube Aerodesportivo Selva Airport", + "latitude_deg": "-11.876013", + "longitude_deg": "-55.444443", + "elevation_ft": "1280", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sinop", + "scheduled_service": "no", + "gps_code": "SIVG", + "local_code": "MT0141" + }, + { + "id": "36308", + "ident": "SIVH", + "type": "heliport", + "name": "Sítio Santa Catarina Heliport", + "latitude_deg": "-20.70517", + "longitude_deg": "-47.881379", + "elevation_ft": "2300", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Orlândia", + "scheduled_service": "no", + "gps_code": "SIVH", + "local_code": "SP0562" + }, + { + "id": "36309", + "ident": "SIVI", + "type": "heliport", + "name": "Monte Sinai Heliport", + "latitude_deg": "-22.91273", + "longitude_deg": "-47.064126", + "elevation_ft": "2405", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SIVI", + "local_code": "SP0563" + }, + { + "id": "36310", + "ident": "SIVJ", + "type": "small_airport", + "name": "Cirrus Sociedade Aerodesportiva Airport", + "latitude_deg": "-19.451074", + "longitude_deg": "-43.899779", + "elevation_ft": "2402", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Jaboticatubas", + "scheduled_service": "no", + "gps_code": "SIVJ", + "local_code": "MG0112" + }, + { + "id": "36311", + "ident": "SIVK", + "type": "small_airport", + "name": "Crispiano Airport", + "latitude_deg": "-13.2227783203125", + "longitude_deg": "-46.95305633544922", + "elevation_ft": "1657", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Monte Alegre De Goiás", + "scheduled_service": "no", + "gps_code": "SIVK" + }, + { + "id": "36312", + "ident": "SIVL", + "type": "small_airport", + "name": "Sítio Flor de Lys Airport", + "latitude_deg": "-6.945278167724609", + "longitude_deg": "-36.67250061035156", + "elevation_ft": "1641", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Junco Do Seridó", + "scheduled_service": "no", + "gps_code": "SIVL" + }, + { + "id": "36313", + "ident": "SIVM", + "type": "heliport", + "name": "Vista Mar Heliport", + "latitude_deg": "-22.932777404785156", + "longitude_deg": "-43.34000015258789", + "elevation_ft": "264", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SIVM" + }, + { + "id": "36314", + "ident": "SIVN", + "type": "small_airport", + "name": "Fazenda Sansara Airport", + "latitude_deg": "-16.602173", + "longitude_deg": "-43.771033", + "elevation_ft": "2149", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Montes Claros", + "scheduled_service": "no", + "gps_code": "SIVN", + "local_code": "MG0113" + }, + { + "id": "36315", + "ident": "SIVO", + "type": "small_airport", + "name": "Fazenda Malu Airport", + "latitude_deg": "-12.448056", + "longitude_deg": "-51.774166", + "elevation_ft": "1378", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Bom Jesus Do Araguaia", + "scheduled_service": "no", + "gps_code": "SIVO", + "local_code": "MT0142" + }, + { + "id": "36316", + "ident": "SIVP", + "type": "small_airport", + "name": "Bela Manhã Airport", + "latitude_deg": "-14.441618", + "longitude_deg": "-50.535837", + "elevation_ft": "899", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Nova Crixás", + "scheduled_service": "no", + "gps_code": "SIVP", + "local_code": "GO0058", + "keywords": "Fazenda Bandeirante" + }, + { + "id": "36317", + "ident": "SIVQ", + "type": "small_airport", + "name": "Fazenda Annalu Airport", + "latitude_deg": "-22.082222", + "longitude_deg": "-54.201111", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Deodápolis", + "scheduled_service": "no", + "gps_code": "SJIS", + "local_code": "MS0170", + "keywords": "SIVQ" + }, + { + "id": "36318", + "ident": "SIVR", + "type": "small_airport", + "name": "Fazenda São Raimundo Airport", + "latitude_deg": "-7.625", + "longitude_deg": "-56.7400016784668", + "elevation_ft": "909", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SIVR" + }, + { + "id": "36319", + "ident": "SIVS", + "type": "heliport", + "name": "Vicente Spisso Heliport", + "latitude_deg": "-23.610947", + "longitude_deg": "-47.000595", + "elevation_ft": "3022", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Vargem Grande Paulista", + "scheduled_service": "no", + "gps_code": "SIVC", + "local_code": "SP0561", + "keywords": "SIVS" + }, + { + "id": "36320", + "ident": "SIVT", + "type": "heliport", + "name": "Fazenda Boa Vitória Heliport", + "latitude_deg": "-20.283611297607422", + "longitude_deg": "-44.114444732666016", + "elevation_ft": "2697", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Brumadinho", + "scheduled_service": "no", + "gps_code": "SIVT" + }, + { + "id": "240", + "ident": "SIVU", + "type": "small_airport", + "name": "João Moteiro Airport", + "latitude_deg": "-20.422911", + "longitude_deg": "-40.332484", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Vila Velha", + "scheduled_service": "no", + "gps_code": "SIVU", + "local_code": "ES0009", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroclube_do_Espírito_Santo" + }, + { + "id": "36321", + "ident": "SIVV", + "type": "small_airport", + "name": "Fazenda Bororeo Airport", + "latitude_deg": "-16.931465", + "longitude_deg": "-56.228961", + "elevation_ft": "489", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão De Melgaço", + "scheduled_service": "no", + "gps_code": "SIVV", + "local_code": "MT0143" + }, + { + "id": "36322", + "ident": "SIVW", + "type": "small_airport", + "name": "Banaer de Jacupiranga Airport", + "latitude_deg": "-24.709625", + "longitude_deg": "-48.022828", + "elevation_ft": "89", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jacupiranga", + "scheduled_service": "no", + "gps_code": "SIVW", + "local_code": "SP0198" + }, + { + "id": "36323", + "ident": "SIVX", + "type": "heliport", + "name": "Cia. Brasileira de Alumínio Heliport", + "latitude_deg": "-23.516666412353516", + "longitude_deg": "-47.266666412353516", + "elevation_ft": "2855", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Alumínio", + "scheduled_service": "no", + "gps_code": "SIVX" + }, + { + "id": "36324", + "ident": "SIVY", + "type": "small_airport", + "name": "Fazenda Sapucaí Airport", + "latitude_deg": "-8.29888916015625", + "longitude_deg": "-45.76333236694336", + "elevation_ft": "1575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Tasso Fragoso", + "scheduled_service": "no", + "gps_code": "SIVY" + }, + { + "id": "36325", + "ident": "SIVZ", + "type": "small_airport", + "name": "Mata-Fome Airport", + "latitude_deg": "-29.187105", + "longitude_deg": "-56.543949", + "elevation_ft": "220", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Itaqui", + "scheduled_service": "no", + "gps_code": "SIVZ", + "local_code": "RS0070" + }, + { + "id": "36326", + "ident": "SIWA", + "type": "small_airport", + "name": "Fazenda Estrela do Aripuanã Airport", + "latitude_deg": "-10.74854", + "longitude_deg": "-59.373776", + "elevation_ft": "925", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Aripuanã", + "scheduled_service": "no", + "gps_code": "SIWA", + "local_code": "MT0145" + }, + { + "id": "36327", + "ident": "SIWB", + "type": "small_airport", + "name": "Fazenda Sperafico Airport", + "latitude_deg": "-23.190468", + "longitude_deg": "-55.289855", + "elevation_ft": "1968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Amambaí", + "scheduled_service": "no", + "gps_code": "SIWB", + "local_code": "MS0136" + }, + { + "id": "36328", + "ident": "SIWC", + "type": "closed", + "name": "Fazenda Santa Rita Airport", + "latitude_deg": "-14.131665", + "longitude_deg": "-57.362838", + "elevation_ft": "2054", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "keywords": "SIWC" + }, + { + "id": "36329", + "ident": "SIWD", + "type": "closed", + "name": "Fazenda Cinco Estrelas Airport", + "latitude_deg": "-8.363611221309998", + "longitude_deg": "-58.1049995422", + "elevation_ft": "493", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Apiacás", + "scheduled_service": "no", + "gps_code": "SIWD" + }, + { + "id": "241", + "ident": "SIWE", + "type": "small_airport", + "name": "Nelson Pizzani Airport", + "latitude_deg": "-27.2127", + "longitude_deg": "-50.956501", + "elevation_ft": "3223", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Monte Carlo", + "scheduled_service": "no", + "gps_code": "SIWE", + "local_code": "SC0031" + }, + { + "id": "36330", + "ident": "SIWF", + "type": "small_airport", + "name": "Algodoeira Airport", + "latitude_deg": "-14.185556", + "longitude_deg": "-57.550556", + "elevation_ft": "2035", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "keywords": "SIWF" + }, + { + "id": "36331", + "ident": "SIWG", + "type": "small_airport", + "name": "Fazenda São José Airport", + "latitude_deg": "-14.556388854980469", + "longitude_deg": "-55.81999969482422", + "elevation_ft": "735", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Rosário Oeste", + "scheduled_service": "no", + "gps_code": "SIWG" + }, + { + "id": "36332", + "ident": "SIWH", + "type": "closed", + "name": "Fazenda Frigorífico Atlas Airport", + "latitude_deg": "-9.4125", + "longitude_deg": "-50.425556", + "elevation_ft": "2533", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santana Do Araguaia", + "scheduled_service": "no", + "keywords": "SIWH" + }, + { + "id": "36333", + "ident": "SIWI", + "type": "small_airport", + "name": "Fazenda Guapirama Airport", + "latitude_deg": "-13.927482", + "longitude_deg": "-57.242759", + "elevation_ft": "1788", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "gps_code": "SIRT", + "local_code": "MT0126", + "keywords": "SIWI" + }, + { + "id": "36334", + "ident": "SIWJ", + "type": "small_airport", + "name": "Campo Verde Airport", + "latitude_deg": "-15.528713", + "longitude_deg": "-55.141441", + "elevation_ft": "2533", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Verde", + "scheduled_service": "no", + "gps_code": "SDLZ", + "local_code": "MT0042", + "keywords": "SIWJ, Luiz Eduardo Magalhães" + }, + { + "id": "36335", + "ident": "SIWK", + "type": "small_airport", + "name": "Fazenda Mãe Margarida Airport", + "latitude_deg": "-14.050007", + "longitude_deg": "-55.38485", + "elevation_ft": "1759", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santa Rita Do Trivelato", + "scheduled_service": "no", + "gps_code": "SIMA", + "local_code": "MT0106", + "keywords": "SIWK, Fazenda Santa Fé" + }, + { + "id": "36336", + "ident": "SIWL", + "type": "small_airport", + "name": "Fazenda Espigão Airport", + "latitude_deg": "-14.125", + "longitude_deg": "-56.93611145019531", + "elevation_ft": "1690", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "gps_code": "SIWL" + }, + { + "id": "36337", + "ident": "SIWM", + "type": "small_airport", + "name": "Fazenda Bandeirantes Airport", + "latitude_deg": "-17.988193", + "longitude_deg": "-49.538319", + "elevation_ft": "1900", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiatuba", + "scheduled_service": "no", + "gps_code": "SI2I", + "local_code": "GO0325", + "keywords": "SIWM" + }, + { + "id": "36338", + "ident": "SIWN", + "type": "small_airport", + "name": "Fazenda Vargem das Flores Airport", + "latitude_deg": "-17.849879", + "longitude_deg": "-49.582296", + "elevation_ft": "2146", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Joviânia", + "scheduled_service": "no", + "gps_code": "SIWN", + "local_code": "GO0059" + }, + { + "id": "36339", + "ident": "SIWP", + "type": "small_airport", + "name": "Fazenda Água Doce Airport", + "latitude_deg": "-22.86722183227539", + "longitude_deg": "-54.440834045410156", + "elevation_ft": "1201", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Laguna Carapã", + "scheduled_service": "no", + "gps_code": "SIWP" + }, + { + "id": "36340", + "ident": "SIWQ", + "type": "small_airport", + "name": "Fazenda Mateira Airport", + "latitude_deg": "-20.96167", + "longitude_deg": "-53.070509", + "elevation_ft": "1260", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Santa Rita Do Pardo", + "scheduled_service": "no", + "gps_code": "SIWQ", + "local_code": "MS0137" + }, + { + "id": "36341", + "ident": "SIWR", + "type": "small_airport", + "name": "Fazenda Amazonas Airport", + "latitude_deg": "-13.799722", + "longitude_deg": "-50.488808", + "elevation_ft": "919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Nova Crixás", + "scheduled_service": "no", + "gps_code": "SIWR", + "local_code": "GO0060" + }, + { + "id": "36342", + "ident": "SIWS", + "type": "heliport", + "name": "Hotel Portobello Heliport", + "latitude_deg": "-22.949709", + "longitude_deg": "-44.075153", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Mangaratiba", + "scheduled_service": "no", + "gps_code": "SDUP", + "local_code": "RJ0058", + "keywords": "SIWS" + }, + { + "id": "36343", + "ident": "SIWT", + "type": "small_airport", + "name": "Santa Helena Airport", + "latitude_deg": "-7.840278148651123", + "longitude_deg": "-56.65944290161133", + "elevation_ft": "699", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SIWT" + }, + { + "id": "36344", + "ident": "SIWU", + "type": "small_airport", + "name": "Fazenda Nossa Senhora da Candelária Airport", + "latitude_deg": "-18.518611907958984", + "longitude_deg": "-57.598331451416016", + "elevation_ft": "365", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SIWU" + }, + { + "id": "36345", + "ident": "SIWV", + "type": "small_airport", + "name": "Fazenda Boa Vista Airport", + "latitude_deg": "-7.856935", + "longitude_deg": "-56.716441", + "elevation_ft": "902", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SD4R", + "local_code": "PA0267", + "keywords": "SIWV" + }, + { + "id": "36346", + "ident": "SIWW", + "type": "heliport", + "name": "Funchal Heliport", + "latitude_deg": "-23.594167709399997", + "longitude_deg": "-46.691665649399994", + "elevation_ft": "2586", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIWW" + }, + { + "id": "36347", + "ident": "SIWX", + "type": "heliport", + "name": "Blau Farmacêutica Helipad", + "latitude_deg": "-23.598274", + "longitude_deg": "-46.897845", + "elevation_ft": "2658", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cotia", + "scheduled_service": "no", + "gps_code": "SSIL", + "local_code": "SP0752", + "keywords": "SIWX, Blausiegel" + }, + { + "id": "36348", + "ident": "SIWY", + "type": "small_airport", + "name": "Fazenda Campo Augusta Airport", + "latitude_deg": "-17.512801", + "longitude_deg": "-55.773161", + "elevation_ft": "443", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SIWY", + "local_code": "MS0138" + }, + { + "id": "36349", + "ident": "SIWZ", + "type": "small_airport", + "name": "Fazenda Fazendinha Airport", + "latitude_deg": "-19.481135", + "longitude_deg": "-56.484526", + "elevation_ft": "344", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SIWZ", + "local_code": "MS0139" + }, + { + "id": "36350", + "ident": "SIXA", + "type": "small_airport", + "name": "Fazenda União Suzanópolis Airport", + "latitude_deg": "-20.529893", + "longitude_deg": "-51.096039", + "elevation_ft": "1398", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Suzanópolis", + "scheduled_service": "no", + "gps_code": "SIXA", + "local_code": "SP0199" + }, + { + "id": "36351", + "ident": "SIXB", + "type": "small_airport", + "name": "Fazenda Ilha Verde Airport", + "latitude_deg": "-18.505556106567383", + "longitude_deg": "-57.4022216796875", + "elevation_ft": "312", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SIXB" + }, + { + "id": "36352", + "ident": "SIXC", + "type": "heliport", + "name": "Embrase Helipad", + "latitude_deg": "-23.510562", + "longitude_deg": "-46.692951", + "elevation_ft": "2392", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIXC", + "local_code": "SP0571" + }, + { + "id": "36353", + "ident": "SIXD", + "type": "small_airport", + "name": "Fazenda da Paz Airport", + "latitude_deg": "-30.844725", + "longitude_deg": "-55.566051", + "elevation_ft": "892", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Santana Do Livramento", + "scheduled_service": "no", + "gps_code": "SIXD", + "local_code": "RS0071" + }, + { + "id": "36354", + "ident": "SIXE", + "type": "small_airport", + "name": "Aeroclube de Eldorado do Sul Airport", + "latitude_deg": "-30.050278", + "longitude_deg": "-51.443611", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Eldorado Do Sul", + "scheduled_service": "no", + "gps_code": "SIXE", + "local_code": "RS0072" + }, + { + "id": "36355", + "ident": "SIXF", + "type": "small_airport", + "name": "Fazenda Soledade Airport", + "latitude_deg": "-17.383446", + "longitude_deg": "-47.536232", + "elevation_ft": "2717", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Campo Alegre De Goiás", + "scheduled_service": "no", + "gps_code": "SNRK", + "local_code": "GO0200", + "keywords": "SIXF" + }, + { + "id": "36356", + "ident": "SIXG", + "type": "small_airport", + "name": "Fazenda Pouso Alegre Airport", + "latitude_deg": "-18.03226", + "longitude_deg": "-47.463856", + "elevation_ft": "2812", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Catalão", + "scheduled_service": "no", + "gps_code": "SIXG", + "local_code": "GO0061" + }, + { + "id": "36357", + "ident": "SIXH", + "type": "heliport", + "name": "Hospital Unimed Heliport", + "latitude_deg": "-26.288918", + "longitude_deg": "-48.845537", + "elevation_ft": "17", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Joinville", + "scheduled_service": "no", + "gps_code": "SIXH", + "local_code": "SC0063" + }, + { + "id": "36358", + "ident": "SIXI", + "type": "small_airport", + "name": "Fazenda Antônio Andrade Airport", + "latitude_deg": "-15.180277824401855", + "longitude_deg": "-40.092777252197266", + "elevation_ft": "827", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Itororó", + "scheduled_service": "no", + "gps_code": "SIXI" + }, + { + "id": "354969", + "ident": "SIXJ", + "type": "heliport", + "name": "Volare Helicentro Heliport", + "latitude_deg": "-20.166146", + "longitude_deg": "-44.918587", + "elevation_ft": "2480", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Divinópolis", + "scheduled_service": "no", + "gps_code": "SIXJ", + "local_code": "MG0450" + }, + { + "id": "335847", + "ident": "SIXK", + "type": "small_airport", + "name": "Nossa Senhora do Carmo Airport", + "latitude_deg": "-23.167497", + "longitude_deg": "-54.202307", + "elevation_ft": "961", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Itaquiraí", + "scheduled_service": "no", + "gps_code": "SIXK", + "local_code": "MS0141" + }, + { + "id": "36359", + "ident": "SIXL", + "type": "small_airport", + "name": "Fazenda São Francisco Airport", + "latitude_deg": "-13.310556411743164", + "longitude_deg": "-52.8922233581543", + "elevation_ft": "1152", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Canarana", + "scheduled_service": "no", + "gps_code": "SIXL" + }, + { + "id": "36360", + "ident": "SIXM", + "type": "small_airport", + "name": "Comunidade São Leopoldo do Tapajós Airport", + "latitude_deg": "-4.976288", + "longitude_deg": "-56.924028", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "keywords": "SIXM, SJIY" + }, + { + "id": "36361", + "ident": "SIXN", + "type": "heliport", + "name": "Soufer Heliport", + "latitude_deg": "-22.97613", + "longitude_deg": "-47.102755", + "elevation_ft": "2155", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "keywords": "SIXN" + }, + { + "id": "242", + "ident": "SIXO", + "type": "small_airport", + "name": "Fazenda Nossa Senhora de Fátima Airport", + "latitude_deg": "-13.983586", + "longitude_deg": "-59.656623", + "elevation_ft": "1516", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SIXO", + "local_code": "MT0150" + }, + { + "id": "243", + "ident": "SIXP", + "type": "small_airport", + "name": "Fazenda Paiaguás Airport", + "latitude_deg": "-14.0723", + "longitude_deg": "-57.450699", + "elevation_ft": "2038", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "gps_code": "SD24", + "local_code": "MT0678", + "keywords": "SIXP" + }, + { + "id": "36362", + "ident": "SIXQ", + "type": "small_airport", + "name": "Fazenda São João Airport", + "latitude_deg": "-23.847221", + "longitude_deg": "-55.435833", + "elevation_ft": "1519", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Paranhos", + "scheduled_service": "no", + "gps_code": "SWJQ", + "local_code": "MS0382", + "keywords": "SIXQ" + }, + { + "id": "36363", + "ident": "SIXR", + "type": "closed", + "name": "Fazenda Santa Maria Heliport", + "latitude_deg": "-23.552608", + "longitude_deg": "-47.361921", + "elevation_ft": "2598", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Votorantim", + "scheduled_service": "no", + "local_code": "SP0573", + "home_link": "https://pergamum.anac.gov.br/arquivos/PA2019-3896.pdf", + "keywords": "SIXR, Sorocaba" + }, + { + "id": "335850", + "ident": "SIXS", + "type": "heliport", + "name": "EZ Towers A Helipad", + "latitude_deg": "-23.626944", + "longitude_deg": "-46.7025", + "elevation_ft": "2844", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIXS", + "local_code": "SP0574" + }, + { + "id": "36364", + "ident": "SIXT", + "type": "closed", + "name": "Girassol Heliport", + "latitude_deg": "-23.8789005279541", + "longitude_deg": "-45.447200775146484", + "elevation_ft": "14", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ilhabela", + "scheduled_service": "no", + "gps_code": "SIXT" + }, + { + "id": "36365", + "ident": "SIXU", + "type": "heliport", + "name": "Condomínio New Place of Business Heliport", + "latitude_deg": "-23.60035", + "longitude_deg": "-46.63817", + "elevation_ft": "2804", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIXU" + }, + { + "id": "36366", + "ident": "SIXV", + "type": "small_airport", + "name": "Fazenda Rancho do Planalto Airport", + "latitude_deg": "-18.145292", + "longitude_deg": "-53.363466", + "elevation_ft": "2707", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Alcinópolis", + "scheduled_service": "no", + "gps_code": "SIXV", + "local_code": "MS0143" + }, + { + "id": "36367", + "ident": "SIXW", + "type": "closed", + "name": "Cimento Poty Airport", + "latitude_deg": "-7.531886", + "longitude_deg": "-34.864426", + "elevation_ft": "1", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Caaporá", + "scheduled_service": "no", + "gps_code": "SIXW" + }, + { + "id": "36368", + "ident": "SIXX", + "type": "small_airport", + "name": "Usinas Braco Norte Airport", + "latitude_deg": "-9.658332824707031", + "longitude_deg": "-54.954444885253906", + "elevation_ft": "1159", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Guarantã Do Norte", + "scheduled_service": "no", + "gps_code": "SIXX" + }, + { + "id": "36369", + "ident": "SIXY", + "type": "heliport", + "name": "Fábrica Fortaleza Heliport", + "latitude_deg": "-3.913408", + "longitude_deg": "-38.497203", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Eusébio", + "scheduled_service": "no", + "keywords": "SIXY" + }, + { + "id": "36370", + "ident": "SIXZ", + "type": "closed", + "name": "Fazenda Spartacus Airport", + "latitude_deg": "-24.004866", + "longitude_deg": "-48.614643", + "elevation_ft": "2346", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Taquarivaí", + "scheduled_service": "no", + "keywords": "SIXZ" + }, + { + "id": "36371", + "ident": "SIYA", + "type": "heliport", + "name": "BSH Continental Eletrodomésticos Ltda. Heliport", + "latitude_deg": "-22.870555877685547", + "longitude_deg": "-47.188331604003906", + "elevation_ft": "1959", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Hortolândia", + "scheduled_service": "no", + "gps_code": "SIYA" + }, + { + "id": "36372", + "ident": "SIYB", + "type": "heliport", + "name": "Almenat Heliport", + "latitude_deg": "-23.646465", + "longitude_deg": "-46.882439", + "elevation_ft": "3006", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Embu", + "scheduled_service": "no", + "gps_code": "SWUP", + "local_code": "SP0834", + "keywords": "SIYB" + }, + { + "id": "335901", + "ident": "SIYC", + "type": "heliport", + "name": "Cesaroni Heliport", + "latitude_deg": "-12.859253", + "longitude_deg": "-38.317058", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Lauro de Freitas", + "scheduled_service": "no", + "gps_code": "SIYC", + "local_code": "BA0199" + }, + { + "id": "36373", + "ident": "SIYD", + "type": "heliport", + "name": "Weril Heliport", + "latitude_deg": "-23.333332061767578", + "longitude_deg": "-46.678890228271484", + "elevation_ft": "2576", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Franco Da Rocha", + "scheduled_service": "no", + "gps_code": "SIYD" + }, + { + "id": "36374", + "ident": "SIYE", + "type": "small_airport", + "name": "Fazenda Campo Hélio Airport", + "latitude_deg": "-19.09639", + "longitude_deg": "-55.569721", + "elevation_ft": "463", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SD7A", + "local_code": "MS0562", + "keywords": "SIYE" + }, + { + "id": "36375", + "ident": "SIYF", + "type": "small_airport", + "name": "Fazenda Araras Airport", + "latitude_deg": "-23.308332443237305", + "longitude_deg": "-49.089168548583984", + "elevation_ft": "2166", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itaí", + "scheduled_service": "no", + "gps_code": "SIYF" + }, + { + "id": "36376", + "ident": "SIYG", + "type": "heliport", + "name": "Gorduras e Margarinas Especiais - GME Helipad", + "latitude_deg": "-3.719256", + "longitude_deg": "-38.474057", + "elevation_ft": "79", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SIYG", + "local_code": "CE0041" + }, + { + "id": "36377", + "ident": "SIYH", + "type": "small_airport", + "name": "Fazenda Cruzeiro Airport", + "latitude_deg": "-18.981943", + "longitude_deg": "-55.291829", + "elevation_ft": "508", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Verde Do Mato Grosso", + "scheduled_service": "no", + "gps_code": "SIYH", + "local_code": "MS0145" + }, + { + "id": "335906", + "ident": "SIYI", + "type": "small_airport", + "name": "Fazenda Planalto Airport", + "latitude_deg": "-17.261915", + "longitude_deg": "-51.146516", + "elevation_ft": "2874", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Montividiu", + "scheduled_service": "no", + "gps_code": "SIYI", + "local_code": "GO0181" + }, + { + "id": "36378", + "ident": "SIYK", + "type": "small_airport", + "name": "Fazenda Sorriso Metálico Airport", + "latitude_deg": "-17.456666946411133", + "longitude_deg": "-48.21527862548828", + "elevation_ft": "2605", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Urutai", + "scheduled_service": "no", + "gps_code": "SIYK" + }, + { + "id": "36379", + "ident": "SIYL", + "type": "heliport", + "name": "Santuário Nacional de Nossa Senhora da Conceição Apare Heliport", + "latitude_deg": "-22.8538894653", + "longitude_deg": "-45.23777771", + "elevation_ft": "1854", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Aparecida", + "scheduled_service": "no", + "gps_code": "SIYL" + }, + { + "id": "36380", + "ident": "SIYM", + "type": "heliport", + "name": "Banco do Brasil Andaraí Heliport", + "latitude_deg": "-22.9202785492", + "longitude_deg": "-43.250831604", + "elevation_ft": "99", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SIYM" + }, + { + "id": "36381", + "ident": "SIYN", + "type": "small_airport", + "name": "Eletro Primavera LTDA Airport", + "latitude_deg": "-11.902683", + "longitude_deg": "-61.22775", + "elevation_ft": "749", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Pimenta Bueno", + "scheduled_service": "no", + "gps_code": "SIEL", + "local_code": "RO0013", + "keywords": "SIYN" + }, + { + "id": "36382", + "ident": "SIYO", + "type": "small_airport", + "name": "Fazenda Goiás Barreiro Airport", + "latitude_deg": "-17.255556106567383", + "longitude_deg": "-51.30638885498047", + "elevation_ft": "2848", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Montividiu", + "scheduled_service": "no", + "gps_code": "SIYO" + }, + { + "id": "36383", + "ident": "SIYP", + "type": "small_airport", + "name": "Fazenda Shangri-lá Airport", + "latitude_deg": "-10.282500267028809", + "longitude_deg": "-56.46916580200195", + "elevation_ft": "1057", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alta Floresta", + "scheduled_service": "no", + "gps_code": "SIYP" + }, + { + "id": "36384", + "ident": "SIYQ", + "type": "small_airport", + "name": "Tapurá Airport", + "latitude_deg": "-12.791666984558105", + "longitude_deg": "-56.49861145019531", + "elevation_ft": "1310", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tapurá", + "scheduled_service": "no", + "gps_code": "SIYQ" + }, + { + "id": "36385", + "ident": "SIYR", + "type": "small_airport", + "name": "Santa Terezinha Airport", + "latitude_deg": "-28.0522212982", + "longitude_deg": "-51.9608345032", + "elevation_ft": "2199", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Tapajara", + "scheduled_service": "no", + "gps_code": "SIYR" + }, + { + "id": "36386", + "ident": "SIYS", + "type": "small_airport", + "name": "Helibrás Airport", + "latitude_deg": "-22.43083381652832", + "longitude_deg": "-45.47916793823242", + "elevation_ft": "2759", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Itajubá", + "scheduled_service": "no", + "gps_code": "SIYS" + }, + { + "id": "36387", + "ident": "SIYT", + "type": "small_airport", + "name": "Mamuru Airport", + "latitude_deg": "-3.1169440746307373", + "longitude_deg": "-56.58610916137695", + "elevation_ft": "99", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Juruti", + "scheduled_service": "no", + "gps_code": "SIYT" + }, + { + "id": "36388", + "ident": "SIYU", + "type": "heliport", + "name": "Edifício Ronaldo Sampaio Ferreira Heliport", + "latitude_deg": "-23.599443435668945", + "longitude_deg": "-46.68055725097656", + "elevation_ft": "2592", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIYU" + }, + { + "id": "36389", + "ident": "SIYV", + "type": "heliport", + "name": "Mário Henrique Simonsen Heliport", + "latitude_deg": "-22.9966678619", + "longitude_deg": "-43.3463897705", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SIYV" + }, + { + "id": "36390", + "ident": "SIYW", + "type": "small_airport", + "name": "Fazenda Salvação Airport", + "latitude_deg": "-5.952221870422363", + "longitude_deg": "-56.543331146240234", + "elevation_ft": "601", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SIYW" + }, + { + "id": "36391", + "ident": "SIYX", + "type": "small_airport", + "name": "Fazenda Varginha Airport", + "latitude_deg": "-21.950000762939453", + "longitude_deg": "-46.54999923706055", + "elevation_ft": "4200", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Andradas", + "scheduled_service": "no", + "gps_code": "SIYX" + }, + { + "id": "244", + "ident": "SIYY", + "type": "small_airport", + "name": "Ilha do Caracará Airport", + "latitude_deg": "-17.456944", + "longitude_deg": "-56.841111", + "elevation_ft": "346", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Poconé", + "scheduled_service": "no", + "gps_code": "SDQE", + "local_code": "MT0055", + "keywords": "SIYY" + }, + { + "id": "36392", + "ident": "SIYZ", + "type": "heliport", + "name": "Condomínio Edifício Berrini 1681 Heliport", + "latitude_deg": "-23.611512", + "longitude_deg": "-46.694695", + "elevation_ft": "2576", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SIYZ", + "local_code": "SP0580" + }, + { + "id": "307637", + "ident": "SIZ", + "type": "small_airport", + "name": "Sissano Airport", + "latitude_deg": "-2.99944444444", + "longitude_deg": "142.0445", + "elevation_ft": "27", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Sissano", + "scheduled_service": "no", + "gps_code": "AYZN", + "iata_code": "SIZ", + "local_code": "SNO" + }, + { + "id": "36393", + "ident": "SIZA", + "type": "small_airport", + "name": "Parque Manoelito Argolo Airport", + "latitude_deg": "-11.960277557373047", + "longitude_deg": "-38.002777099609375", + "elevation_ft": "558", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Entre Rios", + "scheduled_service": "no", + "gps_code": "SIZA" + }, + { + "id": "36394", + "ident": "SIZB", + "type": "heliport", + "name": "Hospital São José Heliport", + "latitude_deg": "-22.424999237060547", + "longitude_deg": "-42.97999954223633", + "elevation_ft": "3239", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Teresópolis", + "scheduled_service": "no", + "gps_code": "SIZB" + }, + { + "id": "36395", + "ident": "SIZC", + "type": "small_airport", + "name": "Fazenda Fenix Airport", + "latitude_deg": "-20.779444", + "longitude_deg": "-41.995556", + "elevation_ft": "1581", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Carangola", + "scheduled_service": "no", + "gps_code": "SNYX", + "local_code": "MG0172", + "keywords": "SIZC, Faria Lemos" + }, + { + "id": "36396", + "ident": "SIZD", + "type": "heliport", + "name": "Sabre Heliport", + "latitude_deg": "-23.387222290039062", + "longitude_deg": "-47.33027648925781", + "elevation_ft": "2094", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itu", + "scheduled_service": "no", + "gps_code": "SIZD" + }, + { + "id": "36397", + "ident": "SIZE", + "type": "heliport", + "name": "Coppersteel Bimetálicos Heliport", + "latitude_deg": "-22.996625", + "longitude_deg": "-47.123618", + "elevation_ft": "2222", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SIZE", + "local_code": "SP0581" + }, + { + "id": "36398", + "ident": "SIZF", + "type": "small_airport", + "name": "Nossa Senhora das Graças Airport", + "latitude_deg": "-23.9950008392334", + "longitude_deg": "-53.956111907958984", + "elevation_ft": "873", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Altônia", + "scheduled_service": "no", + "gps_code": "SIZF" + }, + { + "id": "245", + "ident": "SIZG", + "type": "small_airport", + "name": "Fazenda Encontro das Águas Airport", + "latitude_deg": "-22.607901", + "longitude_deg": "-48.387901", + "elevation_ft": "1631", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Manuel", + "scheduled_service": "no", + "gps_code": "SDXT", + "local_code": "SP0446", + "keywords": "SIZG" + }, + { + "id": "36399", + "ident": "SIZH", + "type": "small_airport", + "name": "Fazenda Vista Alegre Airport", + "latitude_deg": "-19.99305534362793", + "longitude_deg": "-51.51416778564453", + "elevation_ft": "1483", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aparecida Do Taboado", + "scheduled_service": "no", + "gps_code": "SIZH" + }, + { + "id": "246", + "ident": "SIZI", + "type": "small_airport", + "name": "Fazenda Vitória Airport", + "latitude_deg": "-18.755003", + "longitude_deg": "-51.477224", + "elevation_ft": "1680", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Itarumã", + "scheduled_service": "no", + "gps_code": "SJVY", + "local_code": "GO0091", + "keywords": "SIZI" + }, + { + "id": "36400", + "ident": "SIZJ", + "type": "heliport", + "name": "Fazenda Santa Zélia Heliport", + "latitude_deg": "-20.97944450378418", + "longitude_deg": "-48.44722366333008", + "elevation_ft": "1870", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Bebedouro", + "scheduled_service": "no", + "gps_code": "SIZJ" + }, + { + "id": "36401", + "ident": "SIZK", + "type": "small_airport", + "name": "Fazenda Vera Cruz Airport", + "latitude_deg": "-14.875", + "longitude_deg": "-52.11555480957031", + "elevation_ft": "995", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra Do Garças", + "scheduled_service": "no", + "gps_code": "SIZK" + }, + { + "id": "335928", + "ident": "SIZL", + "type": "small_airport", + "name": "Fazenda Lagoa", + "latitude_deg": "-22.747696", + "longitude_deg": "-49.844977", + "elevation_ft": "1909", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Pedro do Turvo", + "scheduled_service": "no", + "gps_code": "SIZL", + "local_code": "SP0201" + }, + { + "id": "36402", + "ident": "SIZM", + "type": "small_airport", + "name": "Fazenda Santa Clara", + "latitude_deg": "-10.7027777778", + "longitude_deg": "-48.1944444444", + "elevation_ft": "1024", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Porto Nacional", + "scheduled_service": "no", + "gps_code": "SIZM" + }, + { + "id": "36403", + "ident": "SIZN", + "type": "small_airport", + "name": "Fazenda Santa Ana Airport", + "latitude_deg": "-13.005234", + "longitude_deg": "-61.240443", + "elevation_ft": "847", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Corumbiara", + "scheduled_service": "no", + "gps_code": "SD22", + "local_code": "RO0015", + "keywords": "SIZN" + }, + { + "id": "247", + "ident": "SIZO", + "type": "small_airport", + "name": "Calcário Vale do Araguaia Airport", + "latitude_deg": "-14.190299987792969", + "longitude_deg": "-51.64390182495117", + "elevation_ft": "860", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cocalinho", + "scheduled_service": "no", + "gps_code": "SIZO", + "local_code": "SIZO" + }, + { + "id": "36404", + "ident": "SIZP", + "type": "heliport", + "name": "Fazenda Sant`Anna da Grama Heliport", + "latitude_deg": "-23.0561103821", + "longitude_deg": "-47.0791664124", + "elevation_ft": "2188", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itupeva", + "scheduled_service": "no", + "gps_code": "SIZP" + }, + { + "id": "36405", + "ident": "SIZQ", + "type": "small_airport", + "name": "Fazenda Real Airport", + "latitude_deg": "-23.03611183166504", + "longitude_deg": "-48.440555572509766", + "elevation_ft": "3078", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Botucatu", + "scheduled_service": "no", + "gps_code": "SIZQ" + }, + { + "id": "36406", + "ident": "SIZR", + "type": "small_airport", + "name": "Fazenda Carolina Airport", + "latitude_deg": "-12.900555610656738", + "longitude_deg": "-61.130001068115234", + "elevation_ft": "853", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Corumbiara", + "scheduled_service": "no", + "gps_code": "SIZR" + }, + { + "id": "36407", + "ident": "SIZS", + "type": "small_airport", + "name": "Agropecuária Equus Airport", + "latitude_deg": "-13.537500381469727", + "longitude_deg": "-53.43916702270508", + "elevation_ft": "1201", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Gaúcha", + "scheduled_service": "no", + "gps_code": "SIZS" + }, + { + "id": "36408", + "ident": "SIZT", + "type": "small_airport", + "name": "Fazenda Buriti Airport", + "latitude_deg": "-19.35444450378418", + "longitude_deg": "-56.79305648803711", + "elevation_ft": "299", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SIZT" + }, + { + "id": "335932", + "ident": "SIZU", + "type": "small_airport", + "name": "Agrochapada Airport", + "latitude_deg": "-13.434653", + "longitude_deg": "-54.276536", + "elevation_ft": "1427", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Paranatinga", + "scheduled_service": "no", + "gps_code": "SIZU", + "local_code": "MT0160" + }, + { + "id": "36409", + "ident": "SIZV", + "type": "heliport", + "name": "Sada Heliport", + "latitude_deg": "-19.9597225189209", + "longitude_deg": "-44.11750030517578", + "elevation_ft": "3157", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Betim", + "scheduled_service": "no", + "gps_code": "SIZV" + }, + { + "id": "36410", + "ident": "SIZW", + "type": "heliport", + "name": "Darinha Heliport", + "latitude_deg": "-4.111667", + "longitude_deg": "-38.248055", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Cascavel", + "scheduled_service": "no", + "gps_code": "SDRO", + "local_code": "CE0030", + "keywords": "SIZW" + }, + { + "id": "36411", + "ident": "SIZX", + "type": "small_airport", + "name": "Inácio Luís do Nascimento Airport", + "latitude_deg": "-11.2966", + "longitude_deg": "-57.5495", + "elevation_ft": "870", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juara", + "scheduled_service": "yes", + "gps_code": "SIZX", + "iata_code": "JUA", + "local_code": "MT0018", + "wikipedia_link": "http://pt.wikipedia.org/wiki/Aeroporto_In%C3%A1cio_Lu%C3%ADs_do_Nascimento", + "keywords": "Juara Sul Airport" + }, + { + "id": "36412", + "ident": "SIZY", + "type": "heliport", + "name": "IMOCOP Heliport", + "latitude_deg": "-22.695981", + "longitude_deg": "-47.561842", + "elevation_ft": "1775", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Piracicaba", + "scheduled_service": "no", + "gps_code": "SIZY", + "local_code": "SP0584", + "keywords": "Coopersucar CTC" + }, + { + "id": "354291", + "ident": "SJ22", + "type": "small_airport", + "name": "Fazenda Figueira Branca Airport", + "latitude_deg": "-10.763943", + "longitude_deg": "-54.485039", + "elevation_ft": "1365", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Marcelândia", + "scheduled_service": "no", + "gps_code": "SJ22", + "local_code": "MT0794" + }, + { + "id": "354586", + "ident": "SJ23", + "type": "small_airport", + "name": "Fazenda Nova Aliança Airstrip", + "latitude_deg": "-15.648889", + "longitude_deg": "-40.835833", + "elevation_ft": "3071", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Encruzilhada", + "scheduled_service": "no", + "gps_code": "SJ23", + "local_code": "BA0397" + }, + { + "id": "355384", + "ident": "SJ24", + "type": "heliport", + "name": "Vale dos Pinheiros Heliport", + "latitude_deg": "-22.7375", + "longitude_deg": "-45.533889", + "elevation_ft": "5889", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campos do Jordão", + "scheduled_service": "no", + "gps_code": "SJ24", + "local_code": "SP1375" + }, + { + "id": "351000", + "ident": "SJ27", + "type": "small_airport", + "name": "Carolina Airstrip", + "latitude_deg": "-5.403056", + "longitude_deg": "-57.168056", + "elevation_ft": "472", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SJ27", + "local_code": "PA0311" + }, + { + "id": "430114", + "ident": "SJ28", + "type": "small_airport", + "name": "Fazenda Santa Helena Airport", + "latitude_deg": "-15.788568", + "longitude_deg": "-51.006827", + "elevation_ft": "1017", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Jussara", + "scheduled_service": "no", + "gps_code": "SJ28", + "local_code": "GO0353" + }, + { + "id": "430171", + "ident": "SJ29", + "type": "small_airport", + "name": "Fazenda Ricardo Franco Airport", + "latitude_deg": "-16.294952", + "longitude_deg": "-55.665592", + "elevation_ft": "466", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santo Antônio do Leverger", + "scheduled_service": "no", + "gps_code": "SJ29", + "local_code": "MT0854" + }, + { + "id": "430186", + "ident": "SJ2A", + "type": "small_airport", + "name": "Estancia Zeviani Airport", + "latitude_deg": "-22.286278", + "longitude_deg": "-54.62038", + "elevation_ft": "1306", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Dourados", + "scheduled_service": "no", + "gps_code": "SJ2A", + "local_code": "MS0641" + }, + { + "id": "430188", + "ident": "SJ2B", + "type": "small_airport", + "name": "Davi Luis Airstrip", + "latitude_deg": "-28.191944", + "longitude_deg": "-55.271667", + "elevation_ft": "558", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "São Nicolau", + "scheduled_service": "no", + "gps_code": "SJ2B", + "local_code": "RS0197" + }, + { + "id": "430190", + "ident": "SJ2C", + "type": "small_airport", + "name": "Tarcísio Rosado Airport", + "latitude_deg": "-4.863218", + "longitude_deg": "-37.251184", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Tibau", + "scheduled_service": "no", + "gps_code": "SJ2C", + "local_code": "RN0019" + }, + { + "id": "430234", + "ident": "SJ2E", + "type": "small_airport", + "name": "Fazenda Monte Azul", + "latitude_deg": "-10.919444", + "longitude_deg": "-57.921667", + "elevation_ft": "781", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juara", + "scheduled_service": "no", + "gps_code": "SJ2E", + "local_code": "MT0864" + }, + { + "id": "354869", + "ident": "SJ2F", + "type": "small_airport", + "name": "Fazenda Moeda Airport", + "latitude_deg": "-21.983333", + "longitude_deg": "-57.080833", + "elevation_ft": "1122", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Caracol", + "scheduled_service": "no", + "gps_code": "SJ2F", + "local_code": "MS0624" + }, + { + "id": "430237", + "ident": "SJ2H", + "type": "small_airport", + "name": "Cambaí Airstrip", + "latitude_deg": "-28.310556", + "longitude_deg": "-55.120278", + "elevation_ft": "564", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "São Nicolau", + "scheduled_service": "no", + "gps_code": "SJ2H", + "local_code": "RS0193" + }, + { + "id": "430239", + "ident": "SJ2J", + "type": "small_airport", + "name": "Poleiro Retiro Airport", + "latitude_deg": "-17.45293", + "longitude_deg": "-56.247309", + "elevation_ft": "390", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJ2J", + "local_code": "MS0651" + }, + { + "id": "430241", + "ident": "SJ2L", + "type": "heliport", + "name": "Santuário Santa Rita de Cássia Heliport", + "latitude_deg": "-20.574722", + "longitude_deg": "-46.911389", + "elevation_ft": "2608", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Cássia", + "scheduled_service": "no", + "gps_code": "SJ2L", + "local_code": "MG0524" + }, + { + "id": "430243", + "ident": "SJ2M", + "type": "small_airport", + "name": "Fazenda Quatro Irmãos Airstrip", + "latitude_deg": "-7.590863", + "longitude_deg": "-55.694675", + "elevation_ft": "922", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Novo Progresso", + "scheduled_service": "no", + "gps_code": "SJ2M", + "local_code": "PA0346" + }, + { + "id": "430245", + "ident": "SJ2N", + "type": "small_airport", + "name": "Condomínio Aeronáutico JW Airport", + "latitude_deg": "-7.236667", + "longitude_deg": "-34.968611", + "elevation_ft": "259", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Santa Rita", + "scheduled_service": "no", + "gps_code": "SJ2N", + "local_code": "PB0035" + }, + { + "id": "429894", + "ident": "SJ2P", + "type": "small_airport", + "name": "Merlin Agro Airport", + "latitude_deg": "-10.224167", + "longitude_deg": "-46.111944", + "elevation_ft": "2618", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Mateiros", + "scheduled_service": "no", + "gps_code": "SJ2P", + "local_code": "TO0111" + }, + { + "id": "430247", + "ident": "SJ2Q", + "type": "heliport", + "name": "Fazenda Terra Viva Heliport", + "latitude_deg": "-23.36", + "longitude_deg": "-47.536111", + "elevation_ft": "1972", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Porto Feliz", + "scheduled_service": "no", + "gps_code": "SJ2Q", + "local_code": "SP1341" + }, + { + "id": "430349", + "ident": "SJ2R", + "type": "small_airport", + "name": "Fazenda Brejinho Airport", + "latitude_deg": "-8.61326", + "longitude_deg": "-37.259672", + "elevation_ft": "2674", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Buíque", + "scheduled_service": "no", + "gps_code": "SJ2R", + "local_code": "PE0103" + }, + { + "id": "430350", + "ident": "SJ2S", + "type": "small_airport", + "name": "Fazenda São Pedro Airport", + "latitude_deg": "-13.868611", + "longitude_deg": "-55.081111", + "elevation_ft": "1480", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santa Rita do Trivelato", + "scheduled_service": "no", + "gps_code": "SJ2S", + "local_code": "MT0852" + }, + { + "id": "430501", + "ident": "SJ2T", + "type": "small_airport", + "name": "Fazenda Indiana Airport", + "latitude_deg": "-20.398145", + "longitude_deg": "-56.643523", + "elevation_ft": "449", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bodoquena", + "scheduled_service": "no", + "gps_code": "SJ2T", + "local_code": "MS0622" + }, + { + "id": "430351", + "ident": "SJ2V", + "type": "small_airport", + "name": "Fazenda Nova Premier Airport", + "latitude_deg": "-13.040915", + "longitude_deg": "-48.784391", + "elevation_ft": "1204", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Montividiu do Norte", + "scheduled_service": "no", + "gps_code": "SJ2V", + "local_code": "GO0354" + }, + { + "id": "354868", + "ident": "SJ2W", + "type": "small_airport", + "name": "Fazenda Tucumã Airstrip", + "latitude_deg": "3.133324", + "longitude_deg": "-61.041673", + "elevation_ft": "410", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Alto Alegre", + "scheduled_service": "no", + "gps_code": "SJ2W", + "local_code": "RR0125" + }, + { + "id": "430381", + "ident": "SJ2Z", + "type": "heliport", + "name": "Pontal de Jaguaripe Heliport", + "latitude_deg": "-13.113333", + "longitude_deg": "-38.875278", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Jaguaripe", + "scheduled_service": "no", + "gps_code": "SJ2Z", + "local_code": "BA0423" + }, + { + "id": "430383", + "ident": "SJ32", + "type": "small_airport", + "name": "Fazenda Santa Marta Airstrip", + "latitude_deg": "-30.502993", + "longitude_deg": "-54.279663", + "elevation_ft": "673", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "São Gabriel", + "scheduled_service": "no", + "gps_code": "SJ32", + "local_code": "RS0187" + }, + { + "id": "353892", + "ident": "SJ36", + "type": "small_airport", + "name": "Mekdessi Airport", + "latitude_deg": "-12.622778", + "longitude_deg": "-51.765833", + "elevation_ft": "1234", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Ribeirão Cascalheira", + "scheduled_service": "no", + "gps_code": "SJ36", + "local_code": "MT0804" + }, + { + "id": "429893", + "ident": "SJ37", + "type": "small_airport", + "name": "Fazenda Colina Verde Airstrip", + "latitude_deg": "-6.255833", + "longitude_deg": "-44.160278", + "elevation_ft": "1496", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Colinas", + "scheduled_service": "no", + "gps_code": "SJ37", + "local_code": "MA0139" + }, + { + "id": "430386", + "ident": "SJ39", + "type": "small_airport", + "name": "Aero Jerusalém Airport", + "latitude_deg": "-14.114444", + "longitude_deg": "-52.191667", + "elevation_ft": "1473", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Água Boa", + "scheduled_service": "no", + "gps_code": "SJ39", + "local_code": "MT0865" + }, + { + "id": "430389", + "ident": "SJ3A", + "type": "small_airport", + "name": "Fazenda Piuva IX Airport", + "latitude_deg": "-20.585964", + "longitude_deg": "-55.230008", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Dois Irmãos do Buriti", + "scheduled_service": "no", + "gps_code": "SJ3A", + "local_code": "MS0691" + }, + { + "id": "430391", + "ident": "SJ3D", + "type": "small_airport", + "name": "Fazenda Sinimbu Airport", + "latitude_deg": "-13.86631", + "longitude_deg": "-45.165353", + "elevation_ft": "2523", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Jaborandi", + "scheduled_service": "no", + "gps_code": "SJ3D", + "local_code": "BA0417" + }, + { + "id": "354867", + "ident": "SJ3G", + "type": "small_airport", + "name": "Fazenda Corpus Christi Airport", + "latitude_deg": "-22.890231", + "longitude_deg": "-54.311868", + "elevation_ft": "1345", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Naviraí", + "scheduled_service": "no", + "gps_code": "SJ3G", + "local_code": "MS0583" + }, + { + "id": "429890", + "ident": "SJ3K", + "type": "small_airport", + "name": "Fazenda Pansera Airport", + "latitude_deg": "-8.016389", + "longitude_deg": "-46.637222", + "elevation_ft": "1171", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Campos Lindos", + "scheduled_service": "no", + "gps_code": "SJ3K", + "local_code": "TO0110" + }, + { + "id": "355397", + "ident": "SJ3W", + "type": "heliport", + "name": "Distrito Itaqui Heliport", + "latitude_deg": "-23.500556", + "longitude_deg": "-46.966111", + "elevation_ft": "3291", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapevi", + "scheduled_service": "no", + "gps_code": "SJ3W", + "local_code": "SP1427" + }, + { + "id": "354942", + "ident": "SJ3X", + "type": "small_airport", + "name": "Fazenda São Bento Airstrip.", + "latitude_deg": "-10.801667", + "longitude_deg": "-45.743056", + "elevation_ft": "2484", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Formosa do Rio Preto", + "scheduled_service": "no", + "gps_code": "SJ3X", + "local_code": "BA0390" + }, + { + "id": "355403", + "ident": "SJ46", + "type": "small_airport", + "name": "Fazenda ETF Agro Airport", + "latitude_deg": "-15.073409", + "longitude_deg": "-51.494437", + "elevation_ft": "886", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Jussara", + "scheduled_service": "no", + "gps_code": "SJ46", + "local_code": "GO0349" + }, + { + "id": "429889", + "ident": "SJ4D", + "type": "small_airport", + "name": "Fazenda Tiúba Airstrip", + "latitude_deg": "-5.848973", + "longitude_deg": "-43.520441", + "elevation_ft": "623", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Parnarama", + "scheduled_service": "no", + "gps_code": "SJ4D", + "local_code": "MA0141" + }, + { + "id": "355710", + "ident": "SJ4M", + "type": "small_airport", + "name": "Fazenda São Jorge", + "latitude_deg": "-28.872859", + "longitude_deg": "-53.914382", + "elevation_ft": "1362", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Tupanciretã", + "scheduled_service": "no", + "gps_code": "SJ4M", + "local_code": "RS0186" + }, + { + "id": "354587", + "ident": "SJ4N", + "type": "small_airport", + "name": "Aldeia Ananapiare Airport", + "latitude_deg": "0.62", + "longitude_deg": "-54.427222", + "elevation_ft": "978", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Almeirim", + "scheduled_service": "no", + "gps_code": "SJ4N", + "local_code": "PA0279" + }, + { + "id": "429699", + "ident": "SJ4P", + "type": "small_airport", + "name": "Fazenda Agroprudente Airport", + "latitude_deg": "-10.901857", + "longitude_deg": "-56.613084", + "elevation_ft": "1096", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tabaporã", + "scheduled_service": "no", + "gps_code": "SJ4P", + "local_code": "MT0841" + }, + { + "id": "355709", + "ident": "SJ4R", + "type": "small_airport", + "name": "Fazenda Santa Catarina Airport", + "latitude_deg": "-20.309371", + "longitude_deg": "-56.166923", + "elevation_ft": "663", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SJ4R", + "local_code": "MS0574" + }, + { + "id": "429698", + "ident": "SJ4S", + "type": "small_airport", + "name": "Fazenda Candoara Airstrip", + "latitude_deg": "-25.678056", + "longitude_deg": "-52.258889", + "elevation_ft": "2372", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Candói", + "scheduled_service": "no", + "gps_code": "SJ4S", + "local_code": "PR0191" + }, + { + "id": "354855", + "ident": "SJ4T", + "type": "small_airport", + "name": "Anabela Airport", + "latitude_deg": "-15.688056", + "longitude_deg": "-51.486944", + "elevation_ft": "1040", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Jussara", + "scheduled_service": "no", + "gps_code": "SJ4T", + "local_code": "GO0336" + }, + { + "id": "355188", + "ident": "SJ4U", + "type": "small_airport", + "name": "Fazenda Juara Airstrip", + "latitude_deg": "-11.800278", + "longitude_deg": "-57.593889", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juara", + "scheduled_service": "no", + "gps_code": "SJ4U", + "local_code": "MT0756" + }, + { + "id": "354588", + "ident": "SJ4V", + "type": "heliport", + "name": "DFA Heliport", + "latitude_deg": "-16.397572", + "longitude_deg": "-48.927576", + "elevation_ft": "3661", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Anápolis", + "scheduled_service": "no", + "gps_code": "SJ4V", + "local_code": "GO0297" + }, + { + "id": "355187", + "ident": "SJ4W", + "type": "small_airport", + "name": "Mato Verde Municipal Airport", + "latitude_deg": "-15.347287", + "longitude_deg": "-42.883896", + "elevation_ft": "1755", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Mato Verde", + "scheduled_service": "no", + "gps_code": "SJ4W", + "local_code": "MG0552" + }, + { + "id": "354590", + "ident": "SJ4X", + "type": "small_airport", + "name": "Fazenda Caiçara Airstrip", + "latitude_deg": "-18.468611", + "longitude_deg": "-45.291944", + "elevation_ft": "1985", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Três Marias", + "scheduled_service": "no", + "gps_code": "SJ4X", + "local_code": "MG0541" + }, + { + "id": "354697", + "ident": "SJ4Z", + "type": "small_airport", + "name": "Paes Landim - Vale do Fidalgo Airport", + "latitude_deg": "-7.737562", + "longitude_deg": "-42.303877", + "elevation_ft": "935", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Paes Landim", + "scheduled_service": "no", + "gps_code": "SJ4Z", + "local_code": "PI0072" + }, + { + "id": "354013", + "ident": "SJ62", + "type": "small_airport", + "name": "Fazenda Nossa Senhora de Lourdes Airport", + "latitude_deg": "-22.646685", + "longitude_deg": "-52.947378", + "elevation_ft": "1204", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Diamante do Norte", + "scheduled_service": "no", + "gps_code": "SJ62", + "local_code": "PR0212" + }, + { + "id": "354292", + "ident": "SJ63", + "type": "small_airport", + "name": "Fazenda Mongaguá Airstrip", + "latitude_deg": "-9.475", + "longitude_deg": "-51.226944", + "elevation_ft": "1224", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Cumaru do Norte", + "scheduled_service": "no", + "gps_code": "SJ63", + "local_code": "PA0291" + }, + { + "id": "354294", + "ident": "SJ64", + "type": "small_airport", + "name": "Fazenda JK do Formoso", + "latitude_deg": "-17.848333", + "longitude_deg": "-45.405556", + "elevation_ft": "2953", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Buritizeiro", + "scheduled_service": "no", + "gps_code": "SJ64", + "local_code": "MG0540" + }, + { + "id": "354310", + "ident": "SJ66", + "type": "small_airport", + "name": "Fazenda Carolina - Grupo FRT Airport", + "latitude_deg": "-8.774545", + "longitude_deg": "-46.324752", + "elevation_ft": "1670", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Balsas", + "scheduled_service": "no", + "gps_code": "SJ66", + "local_code": "MA0128" + }, + { + "id": "354182", + "ident": "SJ67", + "type": "heliport", + "name": "Cedro Agropec Heliport", + "latitude_deg": "-17.579722", + "longitude_deg": "-44.195278", + "elevation_ft": "3461", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Francisco Dumont", + "scheduled_service": "no", + "gps_code": "SJ67", + "local_code": "MG0507" + }, + { + "id": "354180", + "ident": "SJ68", + "type": "small_airport", + "name": "Fazenda Tamakavi Airport", + "latitude_deg": "-11.975144", + "longitude_deg": "-52.120825", + "elevation_ft": "1007", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alto Boa Vista", + "scheduled_service": "no", + "gps_code": "SJ68", + "local_code": "MT0793" + }, + { + "id": "353648", + "ident": "SJ69", + "type": "small_airport", + "name": "Fazenda Planalto Airstrip", + "latitude_deg": "-21.479722", + "longitude_deg": "-55.043333", + "elevation_ft": "1296", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Sidrolândia", + "scheduled_service": "no", + "gps_code": "SJ69", + "local_code": "MS0564" + }, + { + "id": "353649", + "ident": "SJ6A", + "type": "small_airport", + "name": "Aldeia Marithepú Airport", + "latitude_deg": "1.091415", + "longitude_deg": "-56.189598", + "elevation_ft": "951", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Oriximiná", + "scheduled_service": "no", + "gps_code": "SJ6A", + "local_code": "PA0253" + }, + { + "id": "353650", + "ident": "SJ6B", + "type": "small_airport", + "name": "Fazenda Oriental Airstrip", + "latitude_deg": "-3.029722", + "longitude_deg": "-48.385", + "elevation_ft": "207", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Tomé-Açu", + "scheduled_service": "no", + "gps_code": "SJ6B", + "local_code": "PA0324" + }, + { + "id": "353651", + "ident": "SJ6C", + "type": "heliport", + "name": "Helimotors Serra do Rio do Rastro Heliport", + "latitude_deg": "-28.368056", + "longitude_deg": "-49.573889", + "elevation_ft": "4613", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Bom Jardim da Serra", + "scheduled_service": "no", + "gps_code": "SJ6C", + "local_code": "SC0197" + }, + { + "id": "353656", + "ident": "SJ6D", + "type": "small_airport", + "name": "Fazenda Valadares Airstrip", + "latitude_deg": "-6.254842", + "longitude_deg": "-51.525185", + "elevation_ft": "849", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "São Félix do Xingu", + "scheduled_service": "no", + "gps_code": "SJ6D", + "local_code": "PA0330" + }, + { + "id": "353658", + "ident": "SJ6E", + "type": "small_airport", + "name": "Fazenda Boa Vista Airport", + "latitude_deg": "-10.024705", + "longitude_deg": "-59.185286", + "elevation_ft": "472", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Aripuanã", + "scheduled_service": "no", + "gps_code": "SJ6E", + "local_code": "MT0807" + }, + { + "id": "352313", + "ident": "SJ6F", + "type": "small_airport", + "name": "Fazenda Pão e Vinho Airport", + "latitude_deg": "-21.959741", + "longitude_deg": "-54.197024", + "elevation_ft": "961", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Deodápolis", + "scheduled_service": "no", + "gps_code": "SJ6F", + "local_code": "MS0546" + }, + { + "id": "352310", + "ident": "SJ6G", + "type": "small_airport", + "name": "Porto dos Gaúchos Airport", + "latitude_deg": "-11.752841", + "longitude_deg": "-56.809015", + "elevation_ft": "1112", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto dos Gaúchos", + "scheduled_service": "no", + "gps_code": "SJ6G", + "local_code": "MT0725" + }, + { + "id": "352314", + "ident": "SJ6H", + "type": "small_airport", + "name": "Retiro Barranco Airstrip", + "latitude_deg": "-19.970278", + "longitude_deg": "-56.743889", + "elevation_ft": "341", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "SJ6H", + "local_code": "MS0567" + }, + { + "id": "352309", + "ident": "SJ6J", + "type": "heliport", + "name": "Fazenda Sobrado Heliport", + "latitude_deg": "-22.658078", + "longitude_deg": "-48.450791", + "elevation_ft": "1601", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Manuel", + "scheduled_service": "no", + "gps_code": "SJ6J", + "local_code": "SP1337" + }, + { + "id": "352315", + "ident": "SJ6K", + "type": "small_airport", + "name": "Fazenda Laranjeira Airstrip", + "latitude_deg": "-12.220556", + "longitude_deg": "-60.443056", + "elevation_ft": "1102", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Pimenta Bueno", + "scheduled_service": "no", + "gps_code": "SJ6K", + "local_code": "RO0079" + }, + { + "id": "352321", + "ident": "SJ6L", + "type": "small_airport", + "name": "Fazenda Santa Helena Airstrip", + "latitude_deg": "-14.100833", + "longitude_deg": "-50.827222", + "elevation_ft": "781", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Nova Crixás", + "scheduled_service": "no", + "gps_code": "SJ6L", + "local_code": "GO0323" + }, + { + "id": "352323", + "ident": "SJ6M", + "type": "small_airport", + "name": "Fazenda Lagoa Bonita Airstrip", + "latitude_deg": "-11.150556", + "longitude_deg": "-50.951111", + "elevation_ft": "636", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Luciara", + "scheduled_service": "no", + "gps_code": "SJ6M", + "local_code": "MT0782" + }, + { + "id": "353663", + "ident": "SJ6N", + "type": "small_airport", + "name": "Gana Gold Mineração Airport", + "latitude_deg": "-6.373263", + "longitude_deg": "-56.266211", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SJ6N", + "local_code": "PA0314" + }, + { + "id": "352324", + "ident": "SJ6P", + "type": "small_airport", + "name": "Fazenda Cruzeiro da Serra Airport", + "latitude_deg": "-14.466931", + "longitude_deg": "-49.381538", + "elevation_ft": "1378", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Nova Iguaçu de Goiás", + "scheduled_service": "no", + "gps_code": "SJ6P", + "local_code": "GO0328" + }, + { + "id": "352327", + "ident": "SJ6Q", + "type": "small_airport", + "name": "Fazenda Acauã Airstrip", + "latitude_deg": "-17.165507", + "longitude_deg": "-42.83123", + "elevation_ft": "2961", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Turmalina", + "scheduled_service": "no", + "gps_code": "SJ6Q", + "local_code": "MG0512" + }, + { + "id": "352329", + "ident": "SJ6R", + "type": "small_airport", + "name": "Dalla Libera Airstrip", + "latitude_deg": "-13.753889", + "longitude_deg": "-55.791111", + "elevation_ft": "1542", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Mutum", + "scheduled_service": "no", + "gps_code": "SJ6R", + "local_code": "MT0796" + }, + { + "id": "352334", + "ident": "SJ6S", + "type": "small_airport", + "name": "Sítio Pouso da Águia Airport", + "latitude_deg": "-10.44606", + "longitude_deg": "-49.166573", + "elevation_ft": "1542", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Pium", + "scheduled_service": "no", + "gps_code": "SJ6S", + "local_code": "TO0099" + }, + { + "id": "352348", + "ident": "SJ6T", + "type": "heliport", + "name": "Le Monde Helipad", + "latitude_deg": "-21.209449", + "longitude_deg": "-47.798257", + "elevation_ft": "2264", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Preto", + "scheduled_service": "no", + "gps_code": "SJ6T", + "local_code": "SP1257" + }, + { + "id": "352508", + "ident": "SJ6V", + "type": "small_airport", + "name": "Fazenda Morada Nova Airport", + "latitude_deg": "-18.871388", + "longitude_deg": "-51.590484", + "elevation_ft": "1732", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Itajá", + "scheduled_service": "no", + "gps_code": "SJ6V", + "local_code": "GO0217" + }, + { + "id": "352510", + "ident": "SJ6W", + "type": "heliport", + "name": "Indaiá Heliport", + "latitude_deg": "-23.821433", + "longitude_deg": "-46.042453", + "elevation_ft": "46", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Bertioga", + "scheduled_service": "no", + "gps_code": "SJ6W", + "local_code": "SP1367", + "keywords": "SJID" + }, + { + "id": "352512", + "ident": "SJ6X", + "type": "small_airport", + "name": "Fazenda Santo Antônio do Itiquira Airport", + "latitude_deg": "-17.096677", + "longitude_deg": "-54.980637", + "elevation_ft": "554", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santo Antônio do Leverger", + "scheduled_service": "no", + "gps_code": "SJ6X", + "local_code": "MT0712" + }, + { + "id": "350025", + "ident": "SJ6Z", + "type": "small_airport", + "name": "Fazenda Piratini Airstrip", + "latitude_deg": "-12.677222", + "longitude_deg": "-45.770556", + "elevation_ft": "2543", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SJ6Z", + "local_code": "BA0387" + }, + { + "id": "36413", + "ident": "SJAA", + "type": "small_airport", + "name": "Fazenda São José do Rio Branco Airport", + "latitude_deg": "-15.071389", + "longitude_deg": "-59.153332", + "elevation_ft": "1142", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes E Lacerda", + "scheduled_service": "no", + "keywords": "SJAA" + }, + { + "id": "330754", + "ident": "SJAB", + "type": "heliport", + "name": "Helisul - Cataratas Heliport", + "latitude_deg": "-25.692776", + "longitude_deg": "-54.432597", + "elevation_ft": "623", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Foz do Iguaçu", + "scheduled_service": "no", + "gps_code": "SJAB", + "local_code": "PR0114" + }, + { + "id": "36414", + "ident": "SJAC", + "type": "small_airport", + "name": "Fazenda Rio Preto Airport", + "latitude_deg": "-11.47151", + "longitude_deg": "-51.688922", + "elevation_ft": "886", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São Félix Do Araguaia", + "scheduled_service": "no", + "gps_code": "SDWR", + "local_code": "MT0072", + "keywords": "SJAC" + }, + { + "id": "36415", + "ident": "SJAD", + "type": "heliport", + "name": "Tecno Bag Heliport", + "latitude_deg": "-22.757058", + "longitude_deg": "-45.109295", + "elevation_ft": "1765", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Lorena", + "scheduled_service": "no", + "gps_code": "SJAD", + "local_code": "SP0586" + }, + { + "id": "36416", + "ident": "SJAE", + "type": "small_airport", + "name": "Fazenda Furnas Airport", + "latitude_deg": "-13.158297", + "longitude_deg": "-51.807606", + "elevation_ft": "1618", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Ribeirão Cascalheira", + "scheduled_service": "no", + "gps_code": "SJAE" + }, + { + "id": "36417", + "ident": "SJAF", + "type": "small_airport", + "name": "Fazenda Água Limpa Airport", + "latitude_deg": "-13.670832633972168", + "longitude_deg": "-57.89555740356445", + "elevation_ft": "1804", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo Do Parecis", + "scheduled_service": "no", + "gps_code": "SJAF" + }, + { + "id": "36418", + "ident": "SJAG", + "type": "small_airport", + "name": "Fazenda Paredão Airport", + "latitude_deg": "-13.63208", + "longitude_deg": "-60.283854", + "elevation_ft": "778", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SJPC", + "local_code": "MT0204", + "keywords": "SJAG" + }, + { + "id": "36419", + "ident": "SJAI", + "type": "small_airport", + "name": "Fazenda Davilândia Airport", + "latitude_deg": "-13.184792", + "longitude_deg": "-48.753031", + "elevation_ft": "1263", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Montividiu do Norte", + "scheduled_service": "no", + "gps_code": "SJAI", + "local_code": "GO0065" + }, + { + "id": "36420", + "ident": "SJAJ", + "type": "heliport", + "name": "Estação Convention Center Helipad", + "latitude_deg": "-25.438934", + "longitude_deg": "-49.267792", + "elevation_ft": "3104", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Curitiba", + "scheduled_service": "no", + "gps_code": "SJAJ", + "local_code": "PR0115" + }, + { + "id": "248", + "ident": "SJAK", + "type": "small_airport", + "name": "Fazenda F5 Airport", + "latitude_deg": "-18.364181", + "longitude_deg": "-48.872128", + "elevation_ft": "1726", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Tupaciguara", + "scheduled_service": "no", + "gps_code": "SSEC", + "local_code": "MG0179", + "keywords": "SJAK" + }, + { + "id": "36421", + "ident": "SJAL", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-4.646389", + "longitude_deg": "-47.233334", + "elevation_ft": "1077", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Açailândia", + "scheduled_service": "no", + "keywords": "SJAL" + }, + { + "id": "36422", + "ident": "SJAM", + "type": "heliport", + "name": "Estância Lajota Heliport", + "latitude_deg": "-23.248582", + "longitude_deg": "-46.57112", + "elevation_ft": "3183", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mairiporã", + "scheduled_service": "no", + "gps_code": "SJAM", + "local_code": "SP0588" + }, + { + "id": "36423", + "ident": "SJAN", + "type": "heliport", + "name": "Grupo Santander Banespa - Panamericana Park Helipad", + "latitude_deg": "-23.653713", + "longitude_deg": "-46.725186", + "elevation_ft": "2405", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJAN", + "local_code": "SP0589" + }, + { + "id": "36424", + "ident": "SJAO", + "type": "heliport", + "name": "Natura Heliport", + "latitude_deg": "-23.403681", + "longitude_deg": "-46.831144", + "elevation_ft": "2414", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cajamar", + "scheduled_service": "no", + "gps_code": "SJAO", + "local_code": "SP0590" + }, + { + "id": "36425", + "ident": "SJAP", + "type": "heliport", + "name": "Fazenda Mrajan Heliport", + "latitude_deg": "-22.914178", + "longitude_deg": "-46.984856", + "elevation_ft": "2290", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Valinhos", + "scheduled_service": "no", + "gps_code": "SJAP", + "local_code": "SP0591" + }, + { + "id": "36426", + "ident": "SJAQ", + "type": "small_airport", + "name": "Fazenda Renascença Airport", + "latitude_deg": "-16.116865", + "longitude_deg": "-46.354453", + "elevation_ft": "3038", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Unaí", + "scheduled_service": "no", + "gps_code": "SJAQ", + "local_code": "MG0116" + }, + { + "id": "36427", + "ident": "SJAR", + "type": "small_airport", + "name": "Fazenda Bela Manhã Airport", + "latitude_deg": "-20.018600463867188", + "longitude_deg": "-50.899200439453125", + "elevation_ft": "1198", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santa Clara D`Oeste", + "scheduled_service": "no", + "gps_code": "SJAR" + }, + { + "id": "36428", + "ident": "SJAS", + "type": "small_airport", + "name": "Fazenda São Roque Airport", + "latitude_deg": "-21.669166564941406", + "longitude_deg": "-49.173057556152344", + "elevation_ft": "1450", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Reginópolis", + "scheduled_service": "no", + "gps_code": "SJAS" + }, + { + "id": "335218", + "ident": "SJAT", + "type": "heliport", + "name": "Monte Moriá Heliport", + "latitude_deg": "-22.886912", + "longitude_deg": "-46.871454", + "elevation_ft": "2766", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SJAT", + "local_code": "SP0592" + }, + { + "id": "249", + "ident": "SJAU", + "type": "small_airport", + "name": "Araguacema Airport", + "latitude_deg": "-8.83772", + "longitude_deg": "-49.557499", + "elevation_ft": "680", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Araguacema", + "scheduled_service": "no", + "gps_code": "SJAU", + "local_code": "TO0007" + }, + { + "id": "36429", + "ident": "SJAV", + "type": "heliport", + "name": "Nauto Najar Heliport", + "latitude_deg": "-22.748611450195312", + "longitude_deg": "-47.301109313964844", + "elevation_ft": "1871", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Americana", + "scheduled_service": "no", + "gps_code": "SJAV" + }, + { + "id": "36430", + "ident": "SJAW", + "type": "small_airport", + "name": "Fazenda Citrícola Airport", + "latitude_deg": "-21.724679", + "longitude_deg": "-48.377154", + "elevation_ft": "2051", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Gavião Peixoto", + "scheduled_service": "no", + "gps_code": "SJAW", + "local_code": "SP0204" + }, + { + "id": "36431", + "ident": "SJAX", + "type": "small_airport", + "name": "Fazenda Acalanto Airport", + "latitude_deg": "-12.95931", + "longitude_deg": "-45.972805", + "elevation_ft": "2657", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SNEK", + "local_code": "BA0135", + "keywords": "SJAX" + }, + { + "id": "36432", + "ident": "SJAY", + "type": "small_airport", + "name": "Fazenda Ventura Airport", + "latitude_deg": "-13.160833358764648", + "longitude_deg": "-46.20083236694336", + "elevation_ft": "3127", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SJAY" + }, + { + "id": "36433", + "ident": "SJAZ", + "type": "small_airport", + "name": "Fazenda Querubim Airport", + "latitude_deg": "-12.770401", + "longitude_deg": "-46.023488", + "elevation_ft": "2733", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SJAZ", + "local_code": "BA0102" + }, + { + "id": "36434", + "ident": "SJBA", + "type": "heliport", + "name": "Friboi Heliport", + "latitude_deg": "-23.513706", + "longitude_deg": "-46.73104", + "elevation_ft": "2445", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SWTF", + "local_code": "SP0832", + "keywords": "SJBA" + }, + { + "id": "323686", + "ident": "SJBB", + "type": "small_airport", + "name": "Fazenda Bacaba Airport", + "latitude_deg": "-9.525193", + "longitude_deg": "-49.889005", + "elevation_ft": "640", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Caseara", + "scheduled_service": "no", + "gps_code": "SJBB", + "local_code": "TO0023" + }, + { + "id": "336121", + "ident": "SJBC", + "type": "small_airport", + "name": "Fazenda União Airport", + "latitude_deg": "-8.989448", + "longitude_deg": "-51.215305", + "elevation_ft": "1099", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Cumaru do Norte", + "scheduled_service": "no", + "gps_code": "SJBC", + "local_code": "PA0066" + }, + { + "id": "336122", + "ident": "SJBD", + "type": "heliport", + "name": "Mundo Plaza Helipad", + "latitude_deg": "-12.97964", + "longitude_deg": "-38.461263", + "elevation_ft": "483", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Salvador", + "scheduled_service": "no", + "gps_code": "SJBD", + "local_code": "BA0201" + }, + { + "id": "36435", + "ident": "SJBE", + "type": "heliport", + "name": "Ortosíntese Helipad", + "latitude_deg": "-23.438866", + "longitude_deg": "-46.724435", + "elevation_ft": "2743", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJBE", + "local_code": "SP0593" + }, + { + "id": "36436", + "ident": "SJBF", + "type": "small_airport", + "name": "Fazenda J.K. Airport", + "latitude_deg": "-15.158888816833496", + "longitude_deg": "-48.28388977050781", + "elevation_ft": "2136", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Mimoso De Goiás", + "scheduled_service": "no", + "gps_code": "SJBF" + }, + { + "id": "36437", + "ident": "SJBG", + "type": "heliport", + "name": "Edifício Torre Almirante Heliport", + "latitude_deg": "-22.90916633605957", + "longitude_deg": "-43.178890228271484", + "elevation_ft": "417", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SJBG" + }, + { + "id": "36438", + "ident": "SJBH", + "type": "heliport", + "name": "Tranportadora Americana Heliport", + "latitude_deg": "-23.514999", + "longitude_deg": "-46.738458", + "elevation_ft": "2407", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJSI", + "local_code": "SP0657", + "keywords": "SJBH" + }, + { + "id": "36439", + "ident": "SJBI", + "type": "heliport", + "name": "Edra Heliport", + "latitude_deg": "-22.440285", + "longitude_deg": "-47.698463", + "elevation_ft": "2002", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ipeúna", + "scheduled_service": "no", + "gps_code": "SJBI", + "local_code": "SP0595" + }, + { + "id": "36440", + "ident": "SJBJ", + "type": "heliport", + "name": "Guancan Helipad", + "latitude_deg": "-23.613051", + "longitude_deg": "-46.851491", + "elevation_ft": "2690", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cotia", + "scheduled_service": "no", + "gps_code": "SJBJ", + "local_code": "SP0596" + }, + { + "id": "36441", + "ident": "SJBK", + "type": "small_airport", + "name": "Iriri Airport", + "latitude_deg": "-5.679363", + "longitude_deg": "-54.244999", + "elevation_ft": "581", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Altamira", + "scheduled_service": "no", + "gps_code": "SJBK", + "local_code": "PA0067" + }, + { + "id": "36442", + "ident": "SJBL", + "type": "heliport", + "name": "Fazenda São José Heliport", + "latitude_deg": "-22.330565", + "longitude_deg": "-47.488994", + "elevation_ft": "2113", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Rio Claro", + "scheduled_service": "no", + "gps_code": "SJBL", + "local_code": "SP0597" + }, + { + "id": "36443", + "ident": "SJBN", + "type": "small_airport", + "name": "Aldeia Pykany Airport", + "latitude_deg": "-8.166666984558105", + "longitude_deg": "-54.8297233581543", + "elevation_ft": "1100", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Altamira", + "scheduled_service": "no", + "gps_code": "SJBN" + }, + { + "id": "36444", + "ident": "SJBO", + "type": "heliport", + "name": "Terra Vista Heliport", + "latitude_deg": "-16.543056488", + "longitude_deg": "-39.1116676331", + "elevation_ft": "240", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Porto Seguro", + "scheduled_service": "no", + "gps_code": "SJBO" + }, + { + "id": "36445", + "ident": "SJBP", + "type": "heliport", + "name": "Atrium VI.com Heliport", + "latitude_deg": "-23.595482", + "longitude_deg": "-46.687474", + "elevation_ft": "2664", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJBP", + "local_code": "SP0600" + }, + { + "id": "36446", + "ident": "SJBQ", + "type": "heliport", + "name": "CBMM Heliport", + "latitude_deg": "-19.675929", + "longitude_deg": "-46.9041", + "elevation_ft": "3649", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Araxá", + "scheduled_service": "no", + "gps_code": "SJBQ", + "local_code": "MG0239" + }, + { + "id": "36447", + "ident": "SJBR", + "type": "small_airport", + "name": "Fazenda Santa Luzia Airport", + "latitude_deg": "-17.876667022705078", + "longitude_deg": "-56.38888931274414", + "elevation_ft": "401", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJBR" + }, + { + "id": "36448", + "ident": "SJBS", + "type": "small_airport", + "name": "Fazenda Livramento Airport", + "latitude_deg": "-19.268611907958984", + "longitude_deg": "-56.03111267089844", + "elevation_ft": "443", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJBS" + }, + { + "id": "36449", + "ident": "SJBT", + "type": "small_airport", + "name": "Fazenda Vera Lúcia Airport", + "latitude_deg": "-19.575061", + "longitude_deg": "-56.100508", + "elevation_ft": "417", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SJBT", + "local_code": "MS0148", + "keywords": "Fazenda São João" + }, + { + "id": "36450", + "ident": "SJBU", + "type": "small_airport", + "name": "Fazenda Baluarte Airport", + "latitude_deg": "-17.014975", + "longitude_deg": "-44.791897", + "elevation_ft": "1719", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Lagoa Dos Patos", + "scheduled_service": "no", + "gps_code": "SITI", + "local_code": "MG0110", + "keywords": "SJBU" + }, + { + "id": "336175", + "ident": "SJBV", + "type": "heliport", + "name": "Rio Verde/Mercosul Heliport", + "latitude_deg": "-25.457364", + "longitude_deg": "-49.464636", + "elevation_ft": "2940", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Campo Largo", + "scheduled_service": "no", + "gps_code": "SJBV", + "local_code": "PR0117" + }, + { + "id": "36451", + "ident": "SJBW", + "type": "small_airport", + "name": "Fazenda Barbacena Airport", + "latitude_deg": "-23.83944320678711", + "longitude_deg": "-51.90277862548828", + "elevation_ft": "1247", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "São Pedro Do Ivaí", + "scheduled_service": "no", + "gps_code": "SJBW" + }, + { + "id": "36452", + "ident": "SJBX", + "type": "small_airport", + "name": "Severino Lopes Airport", + "latitude_deg": "-6.018827", + "longitude_deg": "-35.241276", + "elevation_ft": "329", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "São José Do Mipibu", + "scheduled_service": "no", + "gps_code": "SJBX", + "local_code": "RN0007" + }, + { + "id": "250", + "ident": "SJBY", + "type": "small_airport", + "name": "João Silva Airport", + "latitude_deg": "-3.65428", + "longitude_deg": "-45.3452", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Santa Inês", + "scheduled_service": "no", + "gps_code": "SJBY", + "local_code": "MA0007" + }, + { + "id": "36453", + "ident": "SJBZ", + "type": "small_airport", + "name": "Fazenda Três Barras Airport", + "latitude_deg": "-18.958246", + "longitude_deg": "-51.110233", + "elevation_ft": "1552", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Itarumã", + "scheduled_service": "no", + "gps_code": "SJBZ", + "local_code": "GO0068" + }, + { + "id": "251", + "ident": "SJCA", + "type": "small_airport", + "name": "Comandante Vittorio Bonomi Airport", + "latitude_deg": "-21.532177", + "longitude_deg": "-47.04727", + "elevation_ft": "2037", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mococa", + "scheduled_service": "no", + "gps_code": "SJCA", + "local_code": "SP0205" + }, + { + "id": "36454", + "ident": "SJCB", + "type": "heliport", + "name": "Classic Helipad", + "latitude_deg": "-23.513543", + "longitude_deg": "-46.734129", + "elevation_ft": "2398", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJCB", + "local_code": "SP0602" + }, + { + "id": "36455", + "ident": "SJCC", + "type": "heliport", + "name": "Álvaro Gama Heliport", + "latitude_deg": "-22.86833381652832", + "longitude_deg": "-42.04694366455078", + "elevation_ft": "17", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Cabo Frio", + "scheduled_service": "no", + "gps_code": "SJCC" + }, + { + "id": "36456", + "ident": "SJCD", + "type": "small_airport", + "name": "Fazenda Pingo D`Água Airport", + "latitude_deg": "-17.721111297607422", + "longitude_deg": "-53.9375", + "elevation_ft": "1303", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Pedro Gomes", + "scheduled_service": "no", + "gps_code": "SJCD" + }, + { + "id": "36457", + "ident": "SJCE", + "type": "small_airport", + "name": "Usina Eldorado Airport", + "latitude_deg": "-21.852222442626953", + "longitude_deg": "-54.018890380859375", + "elevation_ft": "1690", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Brilhante", + "scheduled_service": "no", + "gps_code": "SJCE" + }, + { + "id": "36458", + "ident": "SJCF", + "type": "small_airport", + "name": "Fazenda Estrela D`Alva Airport", + "latitude_deg": "-13.191879", + "longitude_deg": "-52.312903", + "elevation_ft": "1250", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Querência", + "scheduled_service": "no", + "gps_code": "SDQB", + "local_code": "MT0053", + "keywords": "SJCF, Canarana" + }, + { + "id": "36459", + "ident": "SJCG", + "type": "heliport", + "name": "Iate Clube de Santos - Angra dos Reis Heliport", + "latitude_deg": "-22.977854", + "longitude_deg": "-44.433582", + "elevation_ft": "214", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SJCG", + "local_code": "RJ0098" + }, + { + "id": "335629", + "ident": "SJCH", + "type": "small_airport", + "name": "Fernando João Pereira dos Santos Filho Airport", + "latitude_deg": "-8.15749", + "longitude_deg": "-36.181313", + "elevation_ft": "1621", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Brejo da Madre de Deus", + "scheduled_service": "no", + "gps_code": "SJCH", + "local_code": "PE0017" + }, + { + "id": "36460", + "ident": "SJCI", + "type": "heliport", + "name": "Cap PM Paulo José de Menezes Filho Heliport", + "latitude_deg": "-23.194975", + "longitude_deg": "-45.874583", + "elevation_ft": "1962", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São José Dos Campos", + "scheduled_service": "no", + "gps_code": "SJCI", + "local_code": "SP0604" + }, + { + "id": "36461", + "ident": "SJCJ", + "type": "closed", + "name": "Forum Trabalhista de 1ª Instância de São Paulo I Helipad", + "latitude_deg": "-23.522697", + "longitude_deg": "-46.661671", + "elevation_ft": "2619", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SJCJ" + }, + { + "id": "36462", + "ident": "SJCK", + "type": "heliport", + "name": "Rei da Pamonha Heliport", + "latitude_deg": "-23.4424991607666", + "longitude_deg": "-46.75666809082031", + "elevation_ft": "2560", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJCK" + }, + { + "id": "36463", + "ident": "SJCL", + "type": "small_airport", + "name": "Fazenda Araçatuba Airport", + "latitude_deg": "-14.529421", + "longitude_deg": "-50.411162", + "elevation_ft": "1100", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Nova Crixás", + "scheduled_service": "no", + "gps_code": "SJAR", + "local_code": "GO0066", + "keywords": "SJCL" + }, + { + "id": "36464", + "ident": "SJCM", + "type": "small_airport", + "name": "Fazenda São Marcus Airport", + "latitude_deg": "-16.121667861938477", + "longitude_deg": "-52.95083236694336", + "elevation_ft": "4361", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontal Do Araguaia", + "scheduled_service": "no", + "gps_code": "SJCM" + }, + { + "id": "36465", + "ident": "SJCN", + "type": "small_airport", + "name": "Aero Agrícola Cristalina Airport", + "latitude_deg": "-16.906944274902344", + "longitude_deg": "-47.70833206176758", + "elevation_ft": "3544", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Cristalina", + "scheduled_service": "no", + "gps_code": "SJCN" + }, + { + "id": "36466", + "ident": "SJCO", + "type": "small_airport", + "name": "Fazenda Aparecida Airport", + "latitude_deg": "-21.498055", + "longitude_deg": "-50.101112", + "elevation_ft": "1510", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Penápolis", + "scheduled_service": "no", + "gps_code": "SNAF", + "local_code": "SNAF", + "keywords": "SJCO" + }, + { + "id": "36467", + "ident": "SJCP", + "type": "small_airport", + "name": "Fazenda São Roberto Airport", + "latitude_deg": "-17.068934", + "longitude_deg": "-50.846266", + "elevation_ft": "2516", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Paraúna", + "scheduled_service": "no", + "gps_code": "SJCP", + "local_code": "GO0069" + }, + { + "id": "252", + "ident": "SJCQ", + "type": "small_airport", + "name": "Fazenda Serra Azul Airport", + "latitude_deg": "-11.9355", + "longitude_deg": "-40.050701", + "elevation_ft": "1125", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Baixa Grande", + "scheduled_service": "no", + "gps_code": "SJCQ", + "local_code": "BA0105" + }, + { + "id": "36468", + "ident": "SJCR", + "type": "closed", + "name": "Forum Trabalhista de 1ª Instância de São Paulo II Helipad", + "latitude_deg": "-23.522623", + "longitude_deg": "-46.662143", + "elevation_ft": "2619", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SJCR" + }, + { + "id": "36469", + "ident": "SJCS", + "type": "heliport", + "name": "Continental Square Heliport", + "latitude_deg": "-23.595772", + "longitude_deg": "-46.683961", + "elevation_ft": "2678", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SSCS", + "local_code": "SP0745", + "keywords": "SJCS" + }, + { + "id": "36470", + "ident": "SJCT", + "type": "heliport", + "name": "Fazenda da Mata Heliport", + "latitude_deg": "-20.474672", + "longitude_deg": "-44.783353", + "elevation_ft": "2622", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Cláudio", + "scheduled_service": "no", + "keywords": "SJCT" + }, + { + "id": "36471", + "ident": "SJCU", + "type": "heliport", + "name": "CDA - Uberaba Heliport", + "latitude_deg": "-20", + "longitude_deg": "-47.89666748046875", + "elevation_ft": "1766", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberaba", + "scheduled_service": "no", + "gps_code": "SJCU" + }, + { + "id": "36472", + "ident": "SJCV", + "type": "heliport", + "name": "Roots Heliport", + "latitude_deg": "-22.865024", + "longitude_deg": "-46.036706", + "elevation_ft": "5085", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Camanducaia", + "scheduled_service": "no", + "gps_code": "SJCV", + "local_code": "MG0240", + "keywords": "Trend Bank" + }, + { + "id": "253", + "ident": "SJCW", + "type": "small_airport", + "name": "Jatapu Airport", + "latitude_deg": "-1.71205", + "longitude_deg": "-58.5112", + "elevation_ft": "132", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Urucará", + "scheduled_service": "no", + "gps_code": "SJCW", + "local_code": "AM0033" + }, + { + "id": "36473", + "ident": "SJCX", + "type": "heliport", + "name": "Hospital Pronto Socorro de Venda Nova Heliport", + "latitude_deg": "-19.81833267211914", + "longitude_deg": "-43.9474983215332", + "elevation_ft": "2622", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SJCX" + }, + { + "id": "36474", + "ident": "SJCY", + "type": "small_airport", + "name": "Estância Santa Rita Airport", + "latitude_deg": "-15.680085", + "longitude_deg": "-55.95603", + "elevation_ft": "617", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cuiabá", + "scheduled_service": "no", + "gps_code": "SJCY", + "local_code": "MT0166" + }, + { + "id": "36475", + "ident": "SJCZ", + "type": "small_airport", + "name": "Fazenda Paraíso Airport", + "latitude_deg": "-12.430112", + "longitude_deg": "-54.250435", + "elevation_ft": "1158", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Ubiratã", + "scheduled_service": "no", + "gps_code": "SI4R", + "local_code": "MT0820", + "keywords": "SJCZ" + }, + { + "id": "36476", + "ident": "SJDA", + "type": "small_airport", + "name": "Fazenda Cruzeiro Airport", + "latitude_deg": "-19.192222595214844", + "longitude_deg": "-48.11722183227539", + "elevation_ft": "3160", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberaba", + "scheduled_service": "no", + "gps_code": "SJDA" + }, + { + "id": "346112", + "ident": "SJDB", + "type": "small_airport", + "name": "Fazenda Santa Elisa Airport", + "latitude_deg": "-15.055868", + "longitude_deg": "-51.363991", + "elevation_ft": "853", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Britânia", + "scheduled_service": "no", + "gps_code": "SJDB", + "local_code": "GO0197" + }, + { + "id": "36477", + "ident": "SJDC", + "type": "heliport", + "name": "Coca-Cola Heliport", + "latitude_deg": "-19.74416732788086", + "longitude_deg": "-47.97916793823242", + "elevation_ft": "2530", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberaba", + "scheduled_service": "no", + "gps_code": "SJDC" + }, + { + "id": "36478", + "ident": "SJDD", + "type": "small_airport", + "name": "Fazenda Jumbo Airport", + "latitude_deg": "-22.51388931274414", + "longitude_deg": "-53.34194564819336", + "elevation_ft": "854", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Taquarussu", + "scheduled_service": "no", + "gps_code": "SJDD" + }, + { + "id": "36479", + "ident": "SJDF", + "type": "heliport", + "name": "Anchieta Hospital Heliport", + "latitude_deg": "-15.824037", + "longitude_deg": "-48.06718", + "elevation_ft": "4013", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SICA", + "local_code": "DF0048", + "keywords": "SJDF" + }, + { + "id": "36480", + "ident": "SJDG", + "type": "small_airport", + "name": "Projeto Iriri Airport", + "latitude_deg": "-6.188056", + "longitude_deg": "-54.072224", + "elevation_ft": "657", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Altamira", + "scheduled_service": "no", + "keywords": "SJDG" + }, + { + "id": "36481", + "ident": "SJDH", + "type": "small_airport", + "name": "Fazenda S.M. Airport", + "latitude_deg": "-14.550000190734863", + "longitude_deg": "-45.766666412353516", + "elevation_ft": "2891", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Jaborandi", + "scheduled_service": "no", + "gps_code": "SJDH" + }, + { + "id": "36482", + "ident": "SJDI", + "type": "small_airport", + "name": "Fazenda Concórdia Airport", + "latitude_deg": "-22.852064", + "longitude_deg": "-54.208249", + "elevation_ft": "1247", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Naviraí", + "scheduled_service": "no", + "gps_code": "SSYU", + "local_code": "MS0424", + "keywords": "SJDI" + }, + { + "id": "36483", + "ident": "SJDJ", + "type": "small_airport", + "name": "Arenhart Aviação Agrícola Airport", + "latitude_deg": "-29.889211", + "longitude_deg": "-57.14191", + "elevation_ft": "259", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Uruguaiana", + "scheduled_service": "no", + "gps_code": "SJTW", + "local_code": "RS0078", + "keywords": "SJDJ" + }, + { + "id": "36484", + "ident": "SJDK", + "type": "heliport", + "name": "Oeste Plaza Shopping - MC Helipad", + "latitude_deg": "-20.884696", + "longitude_deg": "-51.369345", + "elevation_ft": "1339", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Andradina", + "scheduled_service": "no", + "gps_code": "SJDK", + "local_code": "SP0609" + }, + { + "id": "36485", + "ident": "SJDL", + "type": "small_airport", + "name": "Fazenda Paraíso Airport", + "latitude_deg": "-17.302378", + "longitude_deg": "-55.852776", + "elevation_ft": "1313", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJDL", + "local_code": "MS0151" + }, + { + "id": "36486", + "ident": "SJDN", + "type": "small_airport", + "name": "Fazenda Campo Alegre Airport", + "latitude_deg": "-19.456729", + "longitude_deg": "-55.741625", + "elevation_ft": "558", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SJDN", + "local_code": "MS0152" + }, + { + "id": "36487", + "ident": "SJDO", + "type": "heliport", + "name": "Maroum Heliport", + "latitude_deg": "-23.82192", + "longitude_deg": "-45.371325", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ilhabela", + "scheduled_service": "no", + "gps_code": "SJDO", + "local_code": "SP0610" + }, + { + "id": "36488", + "ident": "SJDP", + "type": "heliport", + "name": "My Way Heliport", + "latitude_deg": "-23.015344", + "longitude_deg": "-44.287831", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SJDP", + "local_code": "RJ0101" + }, + { + "id": "36489", + "ident": "SJDQ", + "type": "heliport", + "name": "Trade Tower Heliport", + "latitude_deg": "-22.897723", + "longitude_deg": "-47.04688", + "elevation_ft": "2294", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SJDQ", + "local_code": "SP0611" + }, + { + "id": "36490", + "ident": "SJDR", + "type": "heliport", + "name": "Diplomata Empresarial S/C Ltda Heliport", + "latitude_deg": "-23.918333053588867", + "longitude_deg": "-46.21277618408203", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarujá", + "scheduled_service": "no", + "gps_code": "SJDR" + }, + { + "id": "36491", + "ident": "SJDS", + "type": "small_airport", + "name": "M Dias Branco Airport", + "latitude_deg": "-3.917155", + "longitude_deg": "-38.489179", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Eusébio", + "scheduled_service": "no", + "gps_code": "SJDS", + "local_code": "CE0018", + "keywords": "Fábrica Fortaleza" + }, + { + "id": "36492", + "ident": "SJDT", + "type": "small_airport", + "name": "Fazenda São Roque Airport", + "latitude_deg": "-19.51876", + "longitude_deg": "-55.312922", + "elevation_ft": "453", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SJDT", + "local_code": "MS0153" + }, + { + "id": "36493", + "ident": "SJDU", + "type": "small_airport", + "name": "Nossa Senhora do Loreto Airport", + "latitude_deg": "-29.728093", + "longitude_deg": "-56.960771", + "elevation_ft": "318", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Uruguaiana", + "scheduled_service": "no", + "gps_code": "SJDU", + "local_code": "RS0074" + }, + { + "id": "36494", + "ident": "SJDV", + "type": "small_airport", + "name": "Fazenda Redenção Airport", + "latitude_deg": "-19.618610382080078", + "longitude_deg": "-56.74305725097656", + "elevation_ft": "312", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJDV" + }, + { + "id": "36495", + "ident": "SJDW", + "type": "small_airport", + "name": "Fazenda Canadá Airport", + "latitude_deg": "-22.122402", + "longitude_deg": "-57.290997", + "elevation_ft": "548", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Caracol", + "scheduled_service": "no", + "gps_code": "SJDW", + "local_code": "MS0155" + }, + { + "id": "36496", + "ident": "SJDX", + "type": "small_airport", + "name": "Fazenda Bandeirantes Airport", + "latitude_deg": "-19.412815", + "longitude_deg": "-55.549932", + "elevation_ft": "427", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SJDX", + "local_code": "MS0156" + }, + { + "id": "36497", + "ident": "SJDY", + "type": "small_airport", + "name": "Fazenda da Barra Airport", + "latitude_deg": "-18.663055419921875", + "longitude_deg": "-54.06861114501953", + "elevation_ft": "1533", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Camapuã", + "scheduled_service": "no", + "gps_code": "SJDY" + }, + { + "id": "36498", + "ident": "SJDZ", + "type": "heliport", + "name": "Cidade Empresarial Heliport", + "latitude_deg": "-16.75", + "longitude_deg": "-49.34916687011719", + "elevation_ft": "2937", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Aparecida De Goiânia", + "scheduled_service": "no", + "gps_code": "SJDZ" + }, + { + "id": "36499", + "ident": "SJEA", + "type": "small_airport", + "name": "Cadete 56-147 Santana Airport", + "latitude_deg": "-12.850863", + "longitude_deg": "-48.226832", + "elevation_ft": "985", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Palmeirópolis", + "scheduled_service": "no", + "gps_code": "SJEA", + "local_code": "TO0025" + }, + { + "id": "36500", + "ident": "SJEB", + "type": "heliport", + "name": "Milennium Office Park Helipad", + "latitude_deg": "-23.592965", + "longitude_deg": "-46.689636", + "elevation_ft": "2484", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJEB", + "local_code": "SP0612" + }, + { + "id": "336259", + "ident": "SJEC", + "type": "small_airport", + "name": "Eduardo Cordeiro de Araújo Airport", + "latitude_deg": "-31.686676", + "longitude_deg": "-52.467703", + "elevation_ft": "151", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Pelotas", + "scheduled_service": "no", + "gps_code": "SJEC", + "local_code": "RS0075" + }, + { + "id": "36501", + "ident": "SJED", + "type": "small_airport", + "name": "Fazenda Abath Airport", + "latitude_deg": "-18.68000030517578", + "longitude_deg": "-57.224998474121094", + "elevation_ft": "348", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJED" + }, + { + "id": "36502", + "ident": "SJEE", + "type": "closed", + "name": "Fazenda Ourissanga Airport", + "latitude_deg": "-20.42027778", + "longitude_deg": "-51.445278167699996", + "elevation_ft": "1182", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Selvíria", + "scheduled_service": "no", + "gps_code": "SJEE" + }, + { + "id": "36503", + "ident": "SJEF", + "type": "small_airport", + "name": "Fazenda Costa Rica Airport", + "latitude_deg": "-19.747751", + "longitude_deg": "-56.042912", + "elevation_ft": "342", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SJEF", + "local_code": "MS0158" + }, + { + "id": "36504", + "ident": "SJEG", + "type": "small_airport", + "name": "Estância Esmeralda Airport", + "latitude_deg": "-20.159584", + "longitude_deg": "-57.158804", + "elevation_ft": "433", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJEG", + "local_code": "MS0159" + }, + { + "id": "36505", + "ident": "SJEH", + "type": "small_airport", + "name": "Clemente Verillo Airport", + "latitude_deg": "-22.101357", + "longitude_deg": "-48.226719", + "elevation_ft": "2395", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Bonito", + "scheduled_service": "no", + "gps_code": "SJEH", + "local_code": "SP0206", + "keywords": "Fazenda Santa Eliza" + }, + { + "id": "36506", + "ident": "SJEI", + "type": "heliport", + "name": "New England Helipad", + "latitude_deg": "-23.552618", + "longitude_deg": "-46.661564", + "elevation_ft": "2920", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJEI", + "local_code": "SP0613" + }, + { + "id": "36507", + "ident": "SJEJ", + "type": "small_airport", + "name": "Fazenda Bonanza Airport", + "latitude_deg": "-22.155000686645508", + "longitude_deg": "-49.287776947021484", + "elevation_ft": "1713", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Avaí", + "scheduled_service": "no", + "gps_code": "SJEJ" + }, + { + "id": "36508", + "ident": "SJEK", + "type": "small_airport", + "name": "Satélite Aviação Agrícola Airport", + "latitude_deg": "-13.540849", + "longitude_deg": "-52.208673", + "elevation_ft": "1362", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Canarana", + "scheduled_service": "no", + "gps_code": "SJEK", + "local_code": "MT0168" + }, + { + "id": "36509", + "ident": "SJEL", + "type": "small_airport", + "name": "Eldorado Airport", + "latitude_deg": "-6.9555559158325195", + "longitude_deg": "-56.47111129760742", + "elevation_ft": "837", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SJEL" + }, + { + "id": "36510", + "ident": "SJEM", + "type": "small_airport", + "name": "Vera Municipal Airport", + "latitude_deg": "-12.319167", + "longitude_deg": "-55.333889", + "elevation_ft": "1231", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vera", + "scheduled_service": "no", + "gps_code": "SIOV", + "local_code": "MT0114", + "keywords": "SJEM, Estância Pousada dos Pássaros" + }, + { + "id": "36511", + "ident": "SJEN", + "type": "small_airport", + "name": "Plá e Silva Airport", + "latitude_deg": "-33.142894", + "longitude_deg": "-52.977319", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Santa Vitória do Palmar", + "scheduled_service": "no", + "gps_code": "SJEN", + "local_code": "RS0076" + }, + { + "id": "36512", + "ident": "SJEO", + "type": "closed", + "name": "Sylvio Quadros Mercês Heliport", + "latitude_deg": "-12.979164", + "longitude_deg": "-38.473628", + "elevation_ft": "168", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Salvador", + "scheduled_service": "no", + "keywords": "SJEO" + }, + { + "id": "36513", + "ident": "SJEP", + "type": "heliport", + "name": "Sementes Roos Heliport", + "latitude_deg": "-28.44261", + "longitude_deg": "-52.815174", + "elevation_ft": "1722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Não Me Toque", + "scheduled_service": "no", + "gps_code": "SISE", + "local_code": "RS0106", + "keywords": "SJEP" + }, + { + "id": "36514", + "ident": "SJEQ", + "type": "small_airport", + "name": "Fazenda Bom Jesus Airport", + "latitude_deg": "-18.182777404785156", + "longitude_deg": "-56.782501220703125", + "elevation_ft": "404", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJEQ" + }, + { + "id": "256", + "ident": "SJER", + "type": "small_airport", + "name": "Fazenda Canadá Airport", + "latitude_deg": "-17.360044", + "longitude_deg": "-50.338433", + "elevation_ft": "1811", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Acreúna", + "scheduled_service": "no", + "gps_code": "SJER", + "local_code": "GO0070" + }, + { + "id": "36515", + "ident": "SJES", + "type": "small_airport", + "name": "Fazenda Água Pê Airport", + "latitude_deg": "-18.117778778076172", + "longitude_deg": "-56.641109466552734", + "elevation_ft": "407", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJES" + }, + { + "id": "36516", + "ident": "SJET", + "type": "small_airport", + "name": "Fazenda Recreio Airport", + "latitude_deg": "-17.564722061157227", + "longitude_deg": "-56.78666687011719", + "elevation_ft": "404", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJET" + }, + { + "id": "36517", + "ident": "SJEU", + "type": "small_airport", + "name": "Fazenda São Cristóvão Airport", + "latitude_deg": "-17.86916732788086", + "longitude_deg": "-56.19388961791992", + "elevation_ft": "404", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJEU" + }, + { + "id": "36518", + "ident": "SJEV", + "type": "small_airport", + "name": "Fazenda São Francisco Airport", + "latitude_deg": "-17.648332595825195", + "longitude_deg": "-56.886112213134766", + "elevation_ft": "401", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJEV" + }, + { + "id": "36519", + "ident": "SJEW", + "type": "small_airport", + "name": "Fazenda Horita Airport", + "latitude_deg": "-13.011111", + "longitude_deg": "-46.238056", + "elevation_ft": "3163", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "local_code": "BA0245", + "keywords": "SJEW, SJWH" + }, + { + "id": "36520", + "ident": "SJEX", + "type": "small_airport", + "name": "Fazenda Vitória Airport", + "latitude_deg": "-13.008656", + "longitude_deg": "-46.107366", + "elevation_ft": "2966", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SJEX", + "local_code": "BA0106" + }, + { + "id": "36521", + "ident": "SJEY", + "type": "small_airport", + "name": "Fazenda Agronet Airport", + "latitude_deg": "-19.990556716918945", + "longitude_deg": "-50.266109466552734", + "elevation_ft": "1562", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Indiaporã", + "scheduled_service": "no", + "gps_code": "SJEY" + }, + { + "id": "323922", + "ident": "SJEZ", + "type": "heliport", + "name": "República dos Palmares Helipad", + "latitude_deg": "-9.65983", + "longitude_deg": "-35.740645", + "elevation_ft": "69", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Maceió", + "scheduled_service": "no", + "gps_code": "SJEZ", + "local_code": "AL0016" + }, + { + "id": "309465", + "ident": "SJF", + "type": "seaplane_base", + "name": "Cruz Bay Seaplane Base", + "latitude_deg": "18.3315", + "longitude_deg": "-64.796", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "VI", + "iso_region": "VI-U-A", + "municipality": "Saint John Island", + "scheduled_service": "no", + "iata_code": "SJF" + }, + { + "id": "36522", + "ident": "SJFA", + "type": "heliport", + "name": "West Side Heliport", + "latitude_deg": "-23.503735", + "longitude_deg": "-46.849317", + "elevation_ft": "2932", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SWTE", + "local_code": "SP0831", + "keywords": "SJFA" + }, + { + "id": "36523", + "ident": "SJFB", + "type": "small_airport", + "name": "Fazenda Bacuri Airport", + "latitude_deg": "-8.377661", + "longitude_deg": "-46.4404", + "elevation_ft": "1815", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Riachão", + "scheduled_service": "no", + "gps_code": "SJFB", + "local_code": "MA0028" + }, + { + "id": "36524", + "ident": "SJFC", + "type": "heliport", + "name": "Federação do Comércio do Estado de São Paulo Helipad", + "latitude_deg": "-23.558072", + "longitude_deg": "-46.652107", + "elevation_ft": "2707", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJFC", + "local_code": "SP0617" + }, + { + "id": "36525", + "ident": "SJFD", + "type": "heliport", + "name": "Méier Medical Center Helipad", + "latitude_deg": "-22.899339", + "longitude_deg": "-43.281696", + "elevation_ft": "178", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SJFD", + "local_code": "RJ0102" + }, + { + "id": "336579", + "ident": "SJFE", + "type": "heliport", + "name": "Condomínio Jacumã Ocean Resort Heliport", + "latitude_deg": "-16.705722", + "longitude_deg": "-39.109418", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Porto Seguro", + "scheduled_service": "no", + "gps_code": "SJFE", + "local_code": "BA0202" + }, + { + "id": "257", + "ident": "SJFF", + "type": "small_airport", + "name": "Frigo Estrela Airport", + "latitude_deg": "-20.294722", + "longitude_deg": "-50.41055", + "elevation_ft": "1595", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Estrela D`Oeste", + "scheduled_service": "no", + "gps_code": "SJFF", + "local_code": "SP0207" + }, + { + "id": "36526", + "ident": "SJFG", + "type": "small_airport", + "name": "Fazenda Penedo Airport", + "latitude_deg": "-5.521111011505127", + "longitude_deg": "-57.10749816894531", + "elevation_ft": "250", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SJFG" + }, + { + "id": "36527", + "ident": "SJFH", + "type": "heliport", + "name": "I.I.J.O.- Rosário Heliport", + "latitude_deg": "-20.412554", + "longitude_deg": "-48.217235", + "elevation_ft": "1808", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guaíra", + "scheduled_service": "no", + "gps_code": "SJFH", + "local_code": "SP0618" + }, + { + "id": "36528", + "ident": "SJFI", + "type": "small_airport", + "name": "CIFI Airport", + "latitude_deg": "-15.645028", + "longitude_deg": "-55.990239", + "elevation_ft": "644", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cuiabá", + "scheduled_service": "no", + "gps_code": "SIXM", + "local_code": "MT0149", + "keywords": "SJFI" + }, + { + "id": "36529", + "ident": "SJFJ", + "type": "small_airport", + "name": "Fazenda Santa Joana Airport", + "latitude_deg": "-17.234575", + "longitude_deg": "-55.226651", + "elevation_ft": "522", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santo Antônio do Leverger", + "scheduled_service": "no", + "gps_code": "SD8F", + "local_code": "MT0623", + "keywords": "SJFJ, Três Marias da Pitangueiras" + }, + { + "id": "36530", + "ident": "SJFK", + "type": "small_airport", + "name": "Fazenda Cachoeira Airport", + "latitude_deg": "-12.591994", + "longitude_deg": "-49.532516", + "elevation_ft": "771", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Araguaçu", + "scheduled_service": "no", + "gps_code": "SJFK", + "local_code": "TO0027" + }, + { + "id": "36531", + "ident": "SJFL", + "type": "small_airport", + "name": "Fazenda Campo Formoso Airport", + "latitude_deg": "-12.560166", + "longitude_deg": "-49.866018", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Sandolândia", + "scheduled_service": "no", + "gps_code": "SJFL", + "local_code": "TO0028" + }, + { + "id": "36532", + "ident": "SJFM", + "type": "small_airport", + "name": "Fazenda Macuco Airport", + "latitude_deg": "-23.838938", + "longitude_deg": "-54.24448", + "elevation_ft": "1149", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Eldorado", + "scheduled_service": "no", + "gps_code": "SJFM", + "local_code": "MS0162" + }, + { + "id": "36533", + "ident": "SJFN", + "type": "small_airport", + "name": "Fazenda Brasil Novo Airport", + "latitude_deg": "-18.371768", + "longitude_deg": "-54.927159", + "elevation_ft": "752", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Coxim", + "scheduled_service": "no", + "gps_code": "SJFN", + "local_code": "MS0163" + }, + { + "id": "36534", + "ident": "SJFO", + "type": "small_airport", + "name": "Fazenda Califórnia Airport", + "latitude_deg": "-18.036666870117188", + "longitude_deg": "-50.19944381713867", + "elevation_ft": "1549", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Porteirão", + "scheduled_service": "no", + "gps_code": "SJFO" + }, + { + "id": "36535", + "ident": "SJFP", + "type": "small_airport", + "name": "Fazenda Perobal Airport", + "latitude_deg": "-12.91236", + "longitude_deg": "-61.370498", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Corumbiara", + "scheduled_service": "no", + "gps_code": "SWBO", + "local_code": "RO0027", + "keywords": "SJFP" + }, + { + "id": "36536", + "ident": "SJFQ", + "type": "small_airport", + "name": "Fazenda Quatrirmãs Airport", + "latitude_deg": "-22.949012", + "longitude_deg": "-48.664874", + "elevation_ft": "2441", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itatinga", + "scheduled_service": "no", + "gps_code": "SJFQ", + "local_code": "SP0208" + }, + { + "id": "36537", + "ident": "SJFR", + "type": "small_airport", + "name": "Fazenda São Gabriel 2 Airport", + "latitude_deg": "-12.523889", + "longitude_deg": "-58.235558", + "elevation_ft": "1434", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SD3O", + "local_code": "MT0646", + "keywords": "SJFR, Fronteira Airport" + }, + { + "id": "36538", + "ident": "SJFS", + "type": "heliport", + "name": "São João e São Marcos Heliport", + "latitude_deg": "-23.20805549621582", + "longitude_deg": "-47.48027801513672", + "elevation_ft": "1475", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Porto Feliz", + "scheduled_service": "no", + "gps_code": "SJFS" + }, + { + "id": "36539", + "ident": "SJFT", + "type": "small_airport", + "name": "Fazenda Triunfo Rio Turvo Airport", + "latitude_deg": "-10.093056", + "longitude_deg": "-57.726944", + "elevation_ft": "850", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Bandeirantes", + "scheduled_service": "no", + "gps_code": "SJFT", + "local_code": "MT0170" + }, + { + "id": "36540", + "ident": "SJFU", + "type": "small_airport", + "name": "Tabuleiro Airport", + "latitude_deg": "-6.696417", + "longitude_deg": "-35.631234", + "elevation_ft": "1716", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Bananeiras", + "scheduled_service": "no", + "gps_code": "SJFU", + "local_code": "PB0013" + }, + { + "id": "36541", + "ident": "SJFV", + "type": "small_airport", + "name": "Fazenda Gaia Airport", + "latitude_deg": "-18.766281", + "longitude_deg": "-48.754891", + "elevation_ft": "2697", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Monte Alegre De Minas", + "scheduled_service": "no", + "gps_code": "SJFV", + "local_code": "MG0120" + }, + { + "id": "36542", + "ident": "SJFW", + "type": "small_airport", + "name": "Fazenda W. Egídio III Airport", + "latitude_deg": "-15.938055992126465", + "longitude_deg": "-46.477500915527344", + "elevation_ft": "2648", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Unaí", + "scheduled_service": "no", + "gps_code": "SJFW" + }, + { + "id": "36543", + "ident": "SJFX", + "type": "small_airport", + "name": "Fazenda Santo Ângelo Airport", + "latitude_deg": "-12.798333168029785", + "longitude_deg": "-46.09583282470703", + "elevation_ft": "2799", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SJFX" + }, + { + "id": "36544", + "ident": "SJFY", + "type": "heliport", + "name": "Hospital Estadual de Pronto Socorro Heliport", + "latitude_deg": "-7.121388912200928", + "longitude_deg": "-34.844444274902344", + "elevation_ft": "91", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "João Pessoa", + "scheduled_service": "no", + "gps_code": "SJFY" + }, + { + "id": "36545", + "ident": "SJFZ", + "type": "heliport", + "name": "Fazenda MC Heliport", + "latitude_deg": "-22.251667022705078", + "longitude_deg": "-46.80027770996094", + "elevation_ft": "2644", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Espírito Santo Do Pinhal", + "scheduled_service": "no", + "gps_code": "SJFZ" + }, + { + "id": "36546", + "ident": "SJGA", + "type": "small_airport", + "name": "Aerorural Floramazon Airport", + "latitude_deg": "-3.607246", + "longitude_deg": "-55.31554", + "elevation_ft": "131", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Aveiro", + "scheduled_service": "no" + }, + { + "id": "36547", + "ident": "SJGB", + "type": "small_airport", + "name": "Fazenda Ponte de Pedra Airport", + "latitude_deg": "-13.584166526794434", + "longitude_deg": "-57.46305465698242", + "elevation_ft": "1690", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo Do Parecis", + "scheduled_service": "no", + "gps_code": "SJGB" + }, + { + "id": "36548", + "ident": "SJGC", + "type": "small_airport", + "name": "Fazenda Busato I Airport", + "latitude_deg": "-12.899685", + "longitude_deg": "-45.494492", + "elevation_ft": "1201", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SJGC", + "local_code": "BA0109" + }, + { + "id": "36549", + "ident": "SJGD", + "type": "small_airport", + "name": "Fazenda Rio Brilhante Airport", + "latitude_deg": "-12.7948", + "longitude_deg": "-45.721911", + "elevation_ft": "2799", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SJGD", + "local_code": "BA0110" + }, + { + "id": "36550", + "ident": "SJGE", + "type": "small_airport", + "name": "Nações Unidas Airstrip", + "latitude_deg": "-6.083471", + "longitude_deg": "-56.29239", + "elevation_ft": "591", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SJGE", + "local_code": "PA0069" + }, + { + "id": "36551", + "ident": "SJGF", + "type": "small_airport", + "name": "Nova Era Airport", + "latitude_deg": "-30.21298", + "longitude_deg": "-52.442014", + "elevation_ft": "164", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Pântano Grande", + "scheduled_service": "no", + "gps_code": "SNIN", + "local_code": "RS0084", + "keywords": "SJGF" + }, + { + "id": "36552", + "ident": "SJGG", + "type": "heliport", + "name": "Plaza II Heliport", + "latitude_deg": "-23.611193", + "longitude_deg": "-46.696181", + "elevation_ft": "2671", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SSWD", + "local_code": "SP0788", + "keywords": "SJGG" + }, + { + "id": "36553", + "ident": "SJGH", + "type": "small_airport", + "name": "Aeropel Airport", + "latitude_deg": "-28.710631", + "longitude_deg": "-55.988827", + "elevation_ft": "300", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "São Borja", + "scheduled_service": "no", + "gps_code": "SJGH", + "local_code": "RS0077" + }, + { + "id": "36554", + "ident": "SJGI", + "type": "small_airport", + "name": "Fazenda Cypi Airport", + "latitude_deg": "-19.334916", + "longitude_deg": "-56.905017", + "elevation_ft": "305", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJFX", + "local_code": "MS0165", + "keywords": "SJGI" + }, + { + "id": "36555", + "ident": "SJGJ", + "type": "small_airport", + "name": "Namocoli Airport", + "latitude_deg": "-20.608923", + "longitude_deg": "-57.555499", + "elevation_ft": "282", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "local_code": "MS0219", + "keywords": "SJGJ" + }, + { + "id": "36556", + "ident": "SJGK", + "type": "small_airport", + "name": "Fazenda Rio liberdade Airport", + "latitude_deg": "-9.428610801696777", + "longitude_deg": "-51.02694320678711", + "elevation_ft": "404", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santana Do Araguaia", + "scheduled_service": "no", + "gps_code": "SJGK" + }, + { + "id": "36557", + "ident": "SJGL", + "type": "heliport", + "name": "Pitangueira Heliport", + "latitude_deg": "-27.37611", + "longitude_deg": "-49.830833", + "elevation_ft": "1290", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Agrolândia", + "scheduled_service": "no", + "gps_code": "SSFF", + "local_code": "SC0089", + "keywords": "SJGL" + }, + { + "id": "36558", + "ident": "SJGM", + "type": "heliport", + "name": "Quadra Hungria Heliport", + "latitude_deg": "-23.575384", + "longitude_deg": "-46.695896", + "elevation_ft": "2491", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJGM", + "local_code": "SP0619" + }, + { + "id": "36559", + "ident": "SJGN", + "type": "small_airport", + "name": "Fazenda Agromar Airport", + "latitude_deg": "-13.668074", + "longitude_deg": "-56.481761", + "elevation_ft": "1237", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São José Do Rio Claro", + "scheduled_service": "no", + "gps_code": "SJGN", + "local_code": "MT0174" + }, + { + "id": "36560", + "ident": "SJGO", + "type": "small_airport", + "name": "Eldorado Airport", + "latitude_deg": "-23.81861114501953", + "longitude_deg": "-54.252498626708984", + "elevation_ft": "1079", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Eldorado", + "scheduled_service": "no", + "gps_code": "SJGO" + }, + { + "id": "258", + "ident": "SJGP", + "type": "small_airport", + "name": "Fazenda Grupal Airport", + "latitude_deg": "-10.042222222222", + "longitude_deg": "-51.589166666667", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Rica", + "scheduled_service": "no", + "gps_code": "SJGP", + "local_code": "SJGP" + }, + { + "id": "36561", + "ident": "SJGQ", + "type": "heliport", + "name": "Fazenda Alebisa Heliport", + "latitude_deg": "-18.86083221435547", + "longitude_deg": "-48.503334045410156", + "elevation_ft": "2641", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberlândia", + "scheduled_service": "no", + "gps_code": "SJGQ" + }, + { + "id": "36562", + "ident": "SJGR", + "type": "small_airport", + "name": "Fazenda Cavalgada Grande Airport", + "latitude_deg": "-14.604722023010254", + "longitude_deg": "-50.15277862548828", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Crixás", + "scheduled_service": "no", + "gps_code": "SJGR" + }, + { + "id": "36563", + "ident": "SJGS", + "type": "heliport", + "name": "São José de Dentro Heliport", + "latitude_deg": "-22.282222747802734", + "longitude_deg": "-42.495277404785156", + "elevation_ft": "3298", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Nova Friburgo", + "scheduled_service": "no", + "gps_code": "SJGS" + }, + { + "id": "36564", + "ident": "SJGT", + "type": "small_airport", + "name": "Salto Augusto Airport", + "latitude_deg": "-8.892778396606445", + "longitude_deg": "-58.549720764160156", + "elevation_ft": "1559", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Apiacás", + "scheduled_service": "no", + "gps_code": "SJGT" + }, + { + "id": "259", + "ident": "SJGU", + "type": "small_airport", + "name": "Araguatins Airport", + "latitude_deg": "-5.68603", + "longitude_deg": "-48.11427", + "elevation_ft": "411", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Araguatins", + "scheduled_service": "no", + "gps_code": "SJGU", + "local_code": "TO0005", + "keywords": "SWAI" + }, + { + "id": "36565", + "ident": "SJGV", + "type": "heliport", + "name": "Bons Ventos Heliport", + "latitude_deg": "-25.657717", + "longitude_deg": "-49.137672", + "elevation_ft": "2963", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "São José Dos Pinhais", + "scheduled_service": "no", + "gps_code": "SJGV", + "keywords": "SJGV" + }, + { + "id": "36566", + "ident": "SJGW", + "type": "small_airport", + "name": "Tasi Airport", + "latitude_deg": "-11.783531", + "longitude_deg": "-55.540395", + "elevation_ft": "1280", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sinop", + "scheduled_service": "no", + "gps_code": "SDTA", + "local_code": "MT0061", + "keywords": "SJGW, Estância Floresta" + }, + { + "id": "36567", + "ident": "SJGX", + "type": "small_airport", + "name": "Da Praia Velha Airport", + "latitude_deg": "-31.126667022705078", + "longitude_deg": "-51.57583236694336", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Camaquã", + "scheduled_service": "no", + "gps_code": "SJGX" + }, + { + "id": "36568", + "ident": "SJGY", + "type": "small_airport", + "name": "Fazenda Barriguda Airport", + "latitude_deg": "-13.708326", + "longitude_deg": "-46.743243", + "elevation_ft": "1965", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "São Domingos", + "scheduled_service": "no", + "gps_code": "SJGY", + "local_code": "GO0075" + }, + { + "id": "36569", + "ident": "SJGZ", + "type": "small_airport", + "name": "Fazenda Araçatuba Airport", + "latitude_deg": "-22.093583", + "longitude_deg": "-52.674999", + "elevation_ft": "1231", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Anaurilândia", + "scheduled_service": "no", + "gps_code": "SJGZ", + "local_code": "MS0167" + }, + { + "id": "36570", + "ident": "SJHA", + "type": "small_airport", + "name": "Fazenda Janaína Airport", + "latitude_deg": "-22.983055114746094", + "longitude_deg": "-55.02000045776367", + "elevation_ft": "1296", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Amambaí", + "scheduled_service": "no", + "gps_code": "SJHA" + }, + { + "id": "36571", + "ident": "SJHB", + "type": "heliport", + "name": "Real Hospital Português Helipad", + "latitude_deg": "-8.064302", + "longitude_deg": "-34.898098", + "elevation_ft": "221", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Recife", + "scheduled_service": "no", + "gps_code": "SJHB", + "local_code": "PE0036" + }, + { + "id": "36572", + "ident": "SJHC", + "type": "heliport", + "name": "Canal Heliport", + "latitude_deg": "-22.872063", + "longitude_deg": "-42.011451", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Cabo Frio", + "scheduled_service": "no", + "gps_code": "SJHC", + "local_code": "RJ0106" + }, + { + "id": "36573", + "ident": "SJHD", + "type": "small_airport", + "name": "Fazenda Modelo Airport", + "latitude_deg": "-21.382221221923828", + "longitude_deg": "-52.198890686035156", + "elevation_ft": "1375", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Brasilândia", + "scheduled_service": "no", + "gps_code": "SJHD" + }, + { + "id": "36574", + "ident": "SJHE", + "type": "small_airport", + "name": "Fazenda Palmeira Airport", + "latitude_deg": "-12.088032", + "longitude_deg": "-55.992689", + "elevation_ft": "1194", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Ipiranga Do Norte", + "scheduled_service": "no", + "gps_code": "SJHE", + "local_code": "MT0175" + }, + { + "id": "36575", + "ident": "SJHF", + "type": "small_airport", + "name": "Bunge Airport", + "latitude_deg": "-7.372221946716309", + "longitude_deg": "-44.39611053466797", + "elevation_ft": "1837", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Uruçui", + "scheduled_service": "no", + "gps_code": "SJHF" + }, + { + "id": "30824", + "ident": "SJHG", + "type": "small_airport", + "name": "Confresa Airport", + "latitude_deg": "-10.633296", + "longitude_deg": "-51.565836", + "elevation_ft": "781", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Confresa", + "scheduled_service": "no", + "gps_code": "SJHG", + "iata_code": "CFO", + "local_code": "MT0176" + }, + { + "id": "36576", + "ident": "SJHH", + "type": "small_airport", + "name": "Fazenda Poruína Airport", + "latitude_deg": "-18.119722", + "longitude_deg": "-52.217222", + "elevation_ft": "2244", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Serranópolis", + "scheduled_service": "no", + "gps_code": "SJHH", + "local_code": "GO0076" + }, + { + "id": "36577", + "ident": "SJHI", + "type": "heliport", + "name": "Flow Water Heliport", + "latitude_deg": "-22.750265", + "longitude_deg": "-45.532672", + "elevation_ft": "6063", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campos do Jordão", + "scheduled_service": "no", + "gps_code": "SJHI", + "local_code": "SP0622" + }, + { + "id": "36578", + "ident": "SJHJ", + "type": "small_airport", + "name": "Fazenda Remanso Airport", + "latitude_deg": "-11.18294", + "longitude_deg": "-61.088936", + "elevation_ft": "745", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Cacoal", + "scheduled_service": "no", + "gps_code": "SWRM", + "local_code": "RO0036", + "keywords": "SJHJ" + }, + { + "id": "36579", + "ident": "SJHK", + "type": "small_airport", + "name": "Música Airport", + "latitude_deg": "-30.936111450195312", + "longitude_deg": "-55.080833435058594", + "elevation_ft": "394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Dom Pedrito", + "scheduled_service": "no", + "gps_code": "SJHK" + }, + { + "id": "36581", + "ident": "SJHM", + "type": "small_airport", + "name": "Fazenda Globo Airport", + "latitude_deg": "-12.949012", + "longitude_deg": "-58.587798", + "elevation_ft": "1588", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SNSU", + "local_code": "MT0615", + "keywords": "SJHM" + }, + { + "id": "36582", + "ident": "SJHN", + "type": "small_airport", + "name": "Fazenda Belluno Airport", + "latitude_deg": "-27.817222595214844", + "longitude_deg": "-49.233890533447266", + "elevation_ft": "3445", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Alfredo Wagner", + "scheduled_service": "no", + "gps_code": "SJHN" + }, + { + "id": "36583", + "ident": "SJHO", + "type": "small_airport", + "name": "Fazenda Colorado Airport", + "latitude_deg": "-13.943925", + "longitude_deg": "-57.103924", + "elevation_ft": "1699", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "gps_code": "SJHO", + "local_code": "MT0178" + }, + { + "id": "36584", + "ident": "SJHP", + "type": "small_airport", + "name": "Monte Belo Airport", + "latitude_deg": "-20.276388", + "longitude_deg": "-53.661667", + "elevation_ft": "1624", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas do Rio Pardo", + "scheduled_service": "no", + "keywords": "SJHP" + }, + { + "id": "36585", + "ident": "SJHQ", + "type": "small_airport", + "name": "Fazenda São José da Reunidas Airport", + "latitude_deg": "-11.016676", + "longitude_deg": "-52.368194", + "elevation_ft": "1155", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São José Do Xingu", + "scheduled_service": "no", + "gps_code": "SJHQ", + "local_code": "MT0179" + }, + { + "id": "336664", + "ident": "SJHR", + "type": "heliport", + "name": "Flamboyant Heliport", + "latitude_deg": "-2.520691", + "longitude_deg": "-44.137063", + "elevation_ft": "125", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Paço do Lumiar", + "scheduled_service": "no", + "gps_code": "SJHR", + "local_code": "MA0061" + }, + { + "id": "36586", + "ident": "SJHS", + "type": "small_airport", + "name": "Fazenda São Vicente Airport", + "latitude_deg": "-19.310409", + "longitude_deg": "-48.343315", + "elevation_ft": "2477", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberlândia", + "scheduled_service": "no", + "gps_code": "SJHS", + "local_code": "MG0122" + }, + { + "id": "36587", + "ident": "SJHT", + "type": "small_airport", + "name": "Fazenda ANB Airport", + "latitude_deg": "-19.831666946411133", + "longitude_deg": "-54.829444885253906", + "elevation_ft": "1194", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corguinho", + "scheduled_service": "no", + "gps_code": "SJHT" + }, + { + "id": "36588", + "ident": "SJHU", + "type": "small_airport", + "name": "Agropecuária Vale do Guaporé Airport", + "latitude_deg": "-13.882563", + "longitude_deg": "-60.096176", + "elevation_ft": "958", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SJHU", + "local_code": "MT0180" + }, + { + "id": "36589", + "ident": "SJHV", + "type": "heliport", + "name": "Valmor Weiss Heliport", + "latitude_deg": "-25.448055267333984", + "longitude_deg": "-49.24361038208008", + "elevation_ft": "2920", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Curitiba", + "scheduled_service": "no", + "gps_code": "SJHV" + }, + { + "id": "36590", + "ident": "SJHW", + "type": "small_airport", + "name": "Professor Maurício Joppert Airport", + "latitude_deg": "-17.295497", + "longitude_deg": "-43.958836", + "elevation_ft": "2221", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Engenheiro Navarro", + "scheduled_service": "no", + "gps_code": "SJHW", + "local_code": "MG0123" + }, + { + "id": "36591", + "ident": "SJHX", + "type": "closed", + "name": "Frisama Açailândia Airport", + "latitude_deg": "-4.940974", + "longitude_deg": "-47.461796", + "elevation_ft": "926", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Açailândia", + "scheduled_service": "no", + "keywords": "SJHX" + }, + { + "id": "36592", + "ident": "SJHY", + "type": "heliport", + "name": "Paiva Air Heliport", + "latitude_deg": "-23.559168", + "longitude_deg": "-47.199722", + "elevation_ft": "2730", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mairinque", + "scheduled_service": "no", + "gps_code": "SNNA", + "local_code": "SP0717", + "keywords": "SJHY" + }, + { + "id": "36593", + "ident": "SJHZ", + "type": "small_airport", + "name": "Fazenda Dois Netos Airport", + "latitude_deg": "-13.245555877685547", + "longitude_deg": "-54.03388977050781", + "elevation_ft": "1165", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Paranatinga", + "scheduled_service": "no", + "gps_code": "SJHZ" + }, + { + "id": "36594", + "ident": "SJIA", + "type": "heliport", + "name": "Ipiaú Heliport", + "latitude_deg": "-14.153981", + "longitude_deg": "-39.700384", + "elevation_ft": "430", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Ipiaú", + "scheduled_service": "no", + "gps_code": "SJIA", + "local_code": "BA0203" + }, + { + "id": "36595", + "ident": "SJIB", + "type": "heliport", + "name": "Itabuna Heliport", + "latitude_deg": "-14.82404", + "longitude_deg": "-39.320261", + "elevation_ft": "217", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Itabuna", + "scheduled_service": "no", + "gps_code": "SJIB", + "local_code": "BA0204" + }, + { + "id": "36596", + "ident": "SJIC", + "type": "small_airport", + "name": "Pedro da Costa Lima Airport", + "latitude_deg": "-21.244874", + "longitude_deg": "-52.76981", + "elevation_ft": "1444", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Santa Rita Do Pardo", + "scheduled_service": "no", + "gps_code": "SJIC", + "local_code": "MS0168" + }, + { + "id": "36597", + "ident": "SJID", + "type": "small_airport", + "name": "Fazenda Goiaba Airport", + "latitude_deg": "-19.917221069335938", + "longitude_deg": "-52.63138961791992", + "elevation_ft": "1549", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Três Lagoas", + "scheduled_service": "no", + "gps_code": "SJID" + }, + { + "id": "36598", + "ident": "SJIE", + "type": "small_airport", + "name": "Grupo Scheffer Airport", + "latitude_deg": "-13.547941", + "longitude_deg": "-58.858556", + "elevation_ft": "1739", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SJIF", + "local_code": "MT0182", + "keywords": "SJIE, Aero Agrícola Sapezal" + }, + { + "id": "36599", + "ident": "SJIF", + "type": "small_airport", + "name": "Fazenda Nova Era Airport", + "latitude_deg": "-23.394166946411133", + "longitude_deg": "-54.752498626708984", + "elevation_ft": "1247", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Iguatemi", + "scheduled_service": "no", + "gps_code": "SJIF" + }, + { + "id": "337029", + "ident": "SJIG", + "type": "heliport", + "name": "Edifício Times Square Business Helipad", + "latitude_deg": "-21.206323", + "longitude_deg": "-47.810558", + "elevation_ft": "2238", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Preto", + "scheduled_service": "no", + "gps_code": "SJIG", + "local_code": "SP0624" + }, + { + "id": "36600", + "ident": "SJIH", + "type": "heliport", + "name": "Polícia Federal do Espírito Santo Heliport", + "latitude_deg": "-20.32722282409668", + "longitude_deg": "-40.35333251953125", + "elevation_ft": "62", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Vila Velha", + "scheduled_service": "no", + "gps_code": "SJIH" + }, + { + "id": "36601", + "ident": "SJII", + "type": "small_airport", + "name": "Fazenda São Marcos Airport", + "latitude_deg": "-22.296667098999023", + "longitude_deg": "-54.94138717651367", + "elevation_ft": "1395", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Dourados", + "scheduled_service": "no", + "gps_code": "SJII" + }, + { + "id": "36602", + "ident": "SJIJ", + "type": "small_airport", + "name": "Fazenda Amparo Airport", + "latitude_deg": "-17.781944274902344", + "longitude_deg": "-53.46110916137695", + "elevation_ft": "2766", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alto Taquari", + "scheduled_service": "no", + "gps_code": "SJIJ" + }, + { + "id": "36603", + "ident": "SJIL", + "type": "small_airport", + "name": "Fazenda Santa Bárbara Airport", + "latitude_deg": "-19.091111", + "longitude_deg": "-55.8425", + "elevation_ft": "440", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJJG", + "local_code": "MS0173", + "keywords": "SJIL" + }, + { + "id": "36604", + "ident": "SJIM", + "type": "heliport", + "name": "Major PM oswaldo Cândido Nunes Heliport", + "latitude_deg": "-18.705833435058594", + "longitude_deg": "-40.407222747802734", + "elevation_ft": "436", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Nova Venécia", + "scheduled_service": "no", + "gps_code": "SJIM" + }, + { + "id": "36605", + "ident": "SJIN", + "type": "heliport", + "name": "Hotel Ariau Amazon Towers II Heliport", + "latitude_deg": "-3.0919439792633057", + "longitude_deg": "-60.44194412231445", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Iranduba", + "scheduled_service": "no", + "gps_code": "SJIN" + }, + { + "id": "36606", + "ident": "SJIO", + "type": "small_airport", + "name": "Guararapes Airport", + "latitude_deg": "-26.991943359375", + "longitude_deg": "-50.383056640625", + "elevation_ft": "3609", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Santa Cecília", + "scheduled_service": "no", + "gps_code": "SJIO" + }, + { + "id": "36607", + "ident": "SJIP", + "type": "heliport", + "name": "Ipiranga Centro Logístico Heliport", + "latitude_deg": "-23.419721603393555", + "longitude_deg": "-46.37694549560547", + "elevation_ft": "2500", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarulhos", + "scheduled_service": "no", + "gps_code": "SJIP" + }, + { + "id": "36608", + "ident": "SJIQ", + "type": "small_airport", + "name": "Usina Coruripe - Filial Limeira do Oeste Airport", + "latitude_deg": "-19.520191", + "longitude_deg": "-50.654031", + "elevation_ft": "1384", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Limeira Do Oeste", + "scheduled_service": "no", + "gps_code": "SSZW", + "local_code": "MG0460", + "keywords": "SJIQ" + }, + { + "id": "36609", + "ident": "SJIR", + "type": "small_airport", + "name": "Engenheiro Joaquim Martins Airport", + "latitude_deg": "-13.31104", + "longitude_deg": "-40.878315", + "elevation_ft": "1733", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Iramaia", + "scheduled_service": "no", + "gps_code": "SJIR", + "local_code": "BA0113" + }, + { + "id": "36610", + "ident": "SJIS", + "type": "small_airport", + "name": "Fazenda Futuro Airport", + "latitude_deg": "-20.34666633605957", + "longitude_deg": "-53.45694351196289", + "elevation_ft": "1598", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas Do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SJIS" + }, + { + "id": "260", + "ident": "SJIT", + "type": "small_airport", + "name": "Itaú de Minas Airport", + "latitude_deg": "-20.755301", + "longitude_deg": "-46.750198", + "elevation_ft": "2520", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Itaú de Minas", + "scheduled_service": "no", + "local_code": "MG0126", + "keywords": "SJIT" + }, + { + "id": "36611", + "ident": "SJIU", + "type": "small_airport", + "name": "Fazenda Beija-Flor Airport", + "latitude_deg": "-11.794166564941406", + "longitude_deg": "-38.0908317565918", + "elevation_ft": "555", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Esplanada", + "scheduled_service": "no", + "gps_code": "SJIU" + }, + { + "id": "36612", + "ident": "SJIV", + "type": "small_airport", + "name": "São João Airport", + "latitude_deg": "-29.085832595825195", + "longitude_deg": "-56.2147216796875", + "elevation_ft": "269", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Maçambará", + "scheduled_service": "no", + "gps_code": "SJIV" + }, + { + "id": "36613", + "ident": "SJIW", + "type": "heliport", + "name": "Helicenter Alphaville Heliport", + "latitude_deg": "-23.475312", + "longitude_deg": "-46.828505", + "elevation_ft": "2723", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santana de Parnaíba", + "scheduled_service": "no", + "gps_code": "SJIW", + "local_code": "SP0628", + "keywords": "Casas Bahia" + }, + { + "id": "36614", + "ident": "SJIX", + "type": "heliport", + "name": "Marina Porto Imperial Heliport", + "latitude_deg": "-23.230926", + "longitude_deg": "-44.715493", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Parati", + "scheduled_service": "no", + "gps_code": "SJIX", + "local_code": "RJ0107" + }, + { + "id": "36615", + "ident": "SJIY", + "type": "small_airport", + "name": "São Leopoldo Airport", + "latitude_deg": "-4.979167", + "longitude_deg": "-56.927223", + "elevation_ft": "814", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no" + }, + { + "id": "36616", + "ident": "SJIZ", + "type": "small_airport", + "name": "Módulo Aguapei Airport", + "latitude_deg": "-15.826944", + "longitude_deg": "-59.234167", + "elevation_ft": "1129", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Esperidião", + "scheduled_service": "no", + "gps_code": "SWNM", + "local_code": "MT0651", + "keywords": "SJIZ" + }, + { + "id": "36617", + "ident": "SJJA", + "type": "small_airport", + "name": "Fazenda Jamanxin Airport", + "latitude_deg": "-8.375", + "longitude_deg": "-55.30611038208008", + "elevation_ft": "800", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Novo Progresso", + "scheduled_service": "no", + "gps_code": "SJJA" + }, + { + "id": "36618", + "ident": "SJJB", + "type": "small_airport", + "name": "Fazenda Cacique Airport", + "latitude_deg": "-20.769296", + "longitude_deg": "-52.77758", + "elevation_ft": "1421", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Brasilândia", + "scheduled_service": "no", + "gps_code": "SJJB", + "local_code": "MS0171" + }, + { + "id": "36619", + "ident": "SJJC", + "type": "heliport", + "name": "Ceará-Mirim Heliport", + "latitude_deg": "-5.507500171661377", + "longitude_deg": "-35.503334045410156", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Ceará-Mirim", + "scheduled_service": "no", + "gps_code": "SJJC" + }, + { + "id": "36620", + "ident": "SJJD", + "type": "closed", + "name": "Jijoca de Jericoacoara Airport", + "latitude_deg": "-2.888889", + "longitude_deg": "-40.474167", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Jijoca de Jericoacoara", + "scheduled_service": "no", + "keywords": "SJJD" + }, + { + "id": "36621", + "ident": "SJJE", + "type": "heliport", + "name": "Jequié Heliport", + "latitude_deg": "-13.840653", + "longitude_deg": "-40.103595", + "elevation_ft": "709", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Jequié", + "scheduled_service": "no", + "gps_code": "SJJE", + "local_code": "BA0206" + }, + { + "id": "36622", + "ident": "SJJF", + "type": "small_airport", + "name": "Pousada do Rio Roosevelt Airport", + "latitude_deg": "-8.49523", + "longitude_deg": "-60.955747", + "elevation_ft": "335", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Novo Aripuanã", + "scheduled_service": "no", + "gps_code": "SJJF", + "local_code": "AM0034" + }, + { + "id": "36623", + "ident": "SJJG", + "type": "small_airport", + "name": "Fazenda Tanguru Airport", + "latitude_deg": "-12.721846", + "longitude_deg": "-52.38028", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Querência", + "scheduled_service": "no", + "gps_code": "SNGV", + "local_code": "MT0253", + "keywords": "SJJG" + }, + { + "id": "36624", + "ident": "SJJH", + "type": "small_airport", + "name": "Pousada Rio Xingu Airport", + "latitude_deg": "-3.249444007873535", + "longitude_deg": "-51.72249984741211", + "elevation_ft": "233", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Vitória Do Xingu", + "scheduled_service": "no", + "gps_code": "SJJH" + }, + { + "id": "36625", + "ident": "SJJI", + "type": "closed", + "name": "Novo Horizonte Airport", + "latitude_deg": "-26.2491664886", + "longitude_deg": "-51.903331756600004", + "elevation_ft": "3720", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Coronel Domingos Soares", + "scheduled_service": "no", + "gps_code": "SJJI" + }, + { + "id": "36626", + "ident": "SJJJ", + "type": "small_airport", + "name": "Fazenda Juliana Airport", + "latitude_deg": "-12.682861", + "longitude_deg": "-61.089262", + "elevation_ft": "1161", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Chupinguaia", + "scheduled_service": "no", + "gps_code": "SIWO", + "local_code": "RO0014", + "keywords": "SJJJ" + }, + { + "id": "36627", + "ident": "SJJK", + "type": "small_airport", + "name": "Fazenda Taquaral Airport", + "latitude_deg": "-10.028888702392578", + "longitude_deg": "-56.73830032348633", + "elevation_ft": "980", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alta Floresta", + "scheduled_service": "no", + "gps_code": "SJJK" + }, + { + "id": "261", + "ident": "SJJL", + "type": "small_airport", + "name": "Fazenda Campo Aberto Airport", + "latitude_deg": "-11.787449", + "longitude_deg": "-45.965409", + "elevation_ft": "2418", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Barreiras", + "scheduled_service": "no", + "gps_code": "SJJL", + "local_code": "BA0115" + }, + { + "id": "36628", + "ident": "SJJM", + "type": "small_airport", + "name": "Michels Aviação Agrícola LTDA Airport", + "latitude_deg": "-13.532221794128418", + "longitude_deg": "-58.76527786254883", + "elevation_ft": "1884", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SJJM" + }, + { + "id": "337573", + "ident": "SJJN", + "type": "small_airport", + "name": "Fazenda Shangri-lá Airstrip", + "latitude_deg": "-10.282778", + "longitude_deg": "-56.325556", + "elevation_ft": "1096", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alta Floresta", + "scheduled_service": "no", + "gps_code": "SJJN", + "local_code": "MT0187" + }, + { + "id": "36630", + "ident": "SJJO", + "type": "small_airport", + "name": "João de Oliveira Bueno Airport", + "latitude_deg": "-13.192744", + "longitude_deg": "-47.120251", + "elevation_ft": "1431", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Monte Alegre De Goiás", + "scheduled_service": "no", + "gps_code": "SJJO", + "local_code": "GO0078" + }, + { + "id": "36631", + "ident": "SJJP", + "type": "small_airport", + "name": "São Francisco Airport", + "latitude_deg": "-7.835278034210205", + "longitude_deg": "-56.538333892822266", + "elevation_ft": "778", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SJJP" + }, + { + "id": "36632", + "ident": "SJJQ", + "type": "heliport", + "name": "Polícia Federal Heliport", + "latitude_deg": "-5.82611083984375", + "longitude_deg": "-35.223609924316406", + "elevation_ft": "218", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Natal", + "scheduled_service": "no", + "gps_code": "SJJQ" + }, + { + "id": "36633", + "ident": "SJJR", + "type": "small_airport", + "name": "Fazenda Recreio Airport", + "latitude_deg": "-21.71417", + "longitude_deg": "-44.203892", + "elevation_ft": "3796", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Andrelândia", + "scheduled_service": "no", + "gps_code": "SJJR", + "local_code": "MG0128" + }, + { + "id": "36634", + "ident": "SJJS", + "type": "heliport", + "name": "BS Colway Heliport", + "latitude_deg": "-25.461476", + "longitude_deg": "-49.102677", + "elevation_ft": "2986", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Piraquara", + "scheduled_service": "no", + "gps_code": "SJJS", + "local_code": "PR0120" + }, + { + "id": "36635", + "ident": "SJJT", + "type": "small_airport", + "name": "Fazenda Vale Verde Airport", + "latitude_deg": "-9.957995", + "longitude_deg": "-49.754587", + "elevation_ft": "581", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Pium", + "scheduled_service": "no", + "gps_code": "SJDC", + "local_code": "TO0024", + "keywords": "SJJT" + }, + { + "id": "36636", + "ident": "SJJU", + "type": "small_airport", + "name": "Fazenda Barra Mansa Airport", + "latitude_deg": "-14.045111", + "longitude_deg": "-60.15419", + "elevation_ft": "725", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Lacerda", + "scheduled_service": "no", + "gps_code": "SJJU", + "local_code": "MT0188" + }, + { + "id": "36637", + "ident": "SJJV", + "type": "small_airport", + "name": "Fazenda Pilar Airport", + "latitude_deg": "-3.278693", + "longitude_deg": "-56.201354", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Aveiro", + "scheduled_service": "no", + "keywords": "SJJV" + }, + { + "id": "36638", + "ident": "SJJW", + "type": "small_airport", + "name": "Fazenda Santa Emília Airport", + "latitude_deg": "-19.507939", + "longitude_deg": "-55.614402", + "elevation_ft": "443", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "keywords": "SJJW" + }, + { + "id": "36639", + "ident": "SJJX", + "type": "small_airport", + "name": "Maca Aero Airport", + "latitude_deg": "-2.898056", + "longitude_deg": "-48.958611", + "elevation_ft": "179", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Tailândia", + "scheduled_service": "no", + "gps_code": "SIJA", + "local_code": "PA0047", + "keywords": "SJJX" + }, + { + "id": "36640", + "ident": "SJJY", + "type": "heliport", + "name": "Indaiaúba Heliport", + "latitude_deg": "-23.908788", + "longitude_deg": "-45.309205", + "elevation_ft": "325", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ilhabela", + "scheduled_service": "no", + "gps_code": "SJJY", + "local_code": "SP0630" + }, + { + "id": "36641", + "ident": "SJJZ", + "type": "heliport", + "name": "Ilha de Terrapleno Heliport", + "latitude_deg": "-32.032855", + "longitude_deg": "-52.072953", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Rio Grande", + "scheduled_service": "no", + "gps_code": "SJJZ", + "local_code": "RS9003" + }, + { + "id": "36642", + "ident": "SJKA", + "type": "small_airport", + "name": "Aerocampo Airport", + "latitude_deg": "-13.62797", + "longitude_deg": "-57.900965", + "elevation_ft": "1798", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo Do Parecis", + "scheduled_service": "no", + "gps_code": "SJKA", + "local_code": "MT0189" + }, + { + "id": "36643", + "ident": "SJKB", + "type": "small_airport", + "name": "Fazenda Adelaide Airport", + "latitude_deg": "-13.087501", + "longitude_deg": "-58.025833", + "elevation_ft": "1538", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SJKB", + "local_code": "MT0190" + }, + { + "id": "36644", + "ident": "SJKC", + "type": "small_airport", + "name": "Fazenda Costa Norte II Airport", + "latitude_deg": "-9.291389465332031", + "longitude_deg": "-58.03305435180664", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Apiacás", + "scheduled_service": "no", + "gps_code": "SJKC" + }, + { + "id": "36645", + "ident": "SJKD", + "type": "heliport", + "name": "Helisilva Heliport", + "latitude_deg": "-27.02638816833496", + "longitude_deg": "-48.62111282348633", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Balneário Camburiú", + "scheduled_service": "no", + "gps_code": "SJKD" + }, + { + "id": "36646", + "ident": "SJKE", + "type": "heliport", + "name": "Sellix Heliport", + "latitude_deg": "-22.747222", + "longitude_deg": "-42.832502", + "elevation_ft": "72", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Itaboraí", + "scheduled_service": "no", + "keywords": "SJKE" + }, + { + "id": "36647", + "ident": "SJKF", + "type": "heliport", + "name": "Lago Azul Heliport", + "latitude_deg": "-23.508973", + "longitude_deg": "-47.582517", + "elevation_ft": "2008", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araçoiaba da Serra", + "scheduled_service": "no", + "gps_code": "SJKF", + "local_code": "SP0631" + }, + { + "id": "36648", + "ident": "SJKG", + "type": "small_airport", + "name": "Fazenda Jatobá Airport", + "latitude_deg": "-3.503395", + "longitude_deg": "-54.090576", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Uruará", + "scheduled_service": "no", + "keywords": "SJKG" + }, + { + "id": "36649", + "ident": "SJKH", + "type": "small_airport", + "name": "Boa Fé Airport", + "latitude_deg": "-7.42367", + "longitude_deg": "-56.339181", + "elevation_ft": "883", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SDO4", + "local_code": "PA0316", + "keywords": "SJKH" + }, + { + "id": "36650", + "ident": "SJKI", + "type": "small_airport", + "name": "Hangar Comandante Salomão Alcolumbre Airport", + "latitude_deg": "0.208793", + "longitude_deg": "-51.012373", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Macapá", + "scheduled_service": "no", + "gps_code": "SJKI", + "local_code": "AP0006", + "keywords": "Curiaú Airport" + }, + { + "id": "36651", + "ident": "SJKJ", + "type": "small_airport", + "name": "Fazenda Cangaia Airport", + "latitude_deg": "-17.442777633666992", + "longitude_deg": "-53.80888748168945", + "elevation_ft": "2549", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Sonora", + "scheduled_service": "no", + "gps_code": "SJKJ" + }, + { + "id": "36652", + "ident": "SJKK", + "type": "closed", + "name": "Coca-Cola Heliport", + "latitude_deg": "-18.896666", + "longitude_deg": "-48.242222", + "elevation_ft": "3084", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberlândia", + "scheduled_service": "no", + "keywords": "SJKK" + }, + { + "id": "36653", + "ident": "SJKL", + "type": "small_airport", + "name": "Canã Airport", + "latitude_deg": "4.620442", + "longitude_deg": "-60.078414", + "elevation_ft": "994", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Normândia", + "scheduled_service": "no", + "gps_code": "SJKL", + "local_code": "RR0033" + }, + { + "id": "36654", + "ident": "SJKM", + "type": "small_airport", + "name": "Canawapai Airport", + "latitude_deg": "4.812213", + "longitude_deg": "-60.026486", + "elevation_ft": "1886", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SJKM", + "local_code": "RR0034" + }, + { + "id": "36655", + "ident": "SJKN", + "type": "small_airport", + "name": "Caracanã Airport", + "latitude_deg": "4.7047200202941895", + "longitude_deg": "-60.26530075073242", + "elevation_ft": "1988", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SJKN" + }, + { + "id": "36656", + "ident": "SJKO", + "type": "small_airport", + "name": "Cararuau Airport", + "latitude_deg": "4.0630598068237305", + "longitude_deg": "-60.165000915527344", + "elevation_ft": "594", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Normândia", + "scheduled_service": "no", + "gps_code": "SJKO" + }, + { + "id": "36657", + "ident": "SJKP", + "type": "small_airport", + "name": "Caraparu Airport", + "latitude_deg": "4.541110038757324", + "longitude_deg": "-60.46310043334961", + "elevation_ft": "1194", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SJKP" + }, + { + "id": "36658", + "ident": "SJKQ", + "type": "small_airport", + "name": "Caramambataí (Mapae) Airport", + "latitude_deg": "5.12306022644043", + "longitude_deg": "-60.58580017089844", + "elevation_ft": "1989", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SJKQ" + }, + { + "id": "36659", + "ident": "SJKR", + "type": "small_airport", + "name": "Pista KRB Airport", + "latitude_deg": "-6.0805559158325195", + "longitude_deg": "-56.38916778564453", + "elevation_ft": "706", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SJKR" + }, + { + "id": "36660", + "ident": "SJKS", + "type": "small_airport", + "name": "Catrimani I Airport", + "latitude_deg": "2.3755600452423096", + "longitude_deg": "-63.00830078125", + "elevation_ft": "1092", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Mucajaí", + "scheduled_service": "no", + "gps_code": "SJKS" + }, + { + "id": "36661", + "ident": "SJKT", + "type": "small_airport", + "name": "Contão Airport", + "latitude_deg": "4.171669960021973", + "longitude_deg": "-60.54359817504883", + "elevation_ft": "577", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Normândia", + "scheduled_service": "no", + "gps_code": "SJKT" + }, + { + "id": "36662", + "ident": "SJKU", + "type": "small_airport", + "name": "Cumaipá Airport", + "latitude_deg": "4.813889980316162", + "longitude_deg": "-60.47359848022461", + "elevation_ft": "2188", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SJKU" + }, + { + "id": "36663", + "ident": "SJKV", + "type": "small_airport", + "name": "Cumanã I Airport", + "latitude_deg": "4.470280170440674", + "longitude_deg": "-60.778099060058594", + "elevation_ft": "1191", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SJKV" + }, + { + "id": "36664", + "ident": "SJKW", + "type": "small_airport", + "name": "Cumanã II Airport", + "latitude_deg": "4.426939964294434", + "longitude_deg": "-60.82389831542969", + "elevation_ft": "1191", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SJKW" + }, + { + "id": "36665", + "ident": "SJKX", + "type": "small_airport", + "name": "Cutia Airport", + "latitude_deg": "4.170000076293945", + "longitude_deg": "-59.748600006103516", + "elevation_ft": "496", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Normândia", + "scheduled_service": "no", + "gps_code": "SJKX" + }, + { + "id": "337741", + "ident": "SJKY", + "type": "heliport", + "name": "Comeri Santos Helipad", + "latitude_deg": "-23.952249", + "longitude_deg": "-46.325387", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santos", + "scheduled_service": "no", + "gps_code": "SJKY", + "local_code": "SP0632" + }, + { + "id": "36666", + "ident": "SJKZ", + "type": "small_airport", + "name": "Estevão Airport", + "latitude_deg": "4.4497199058532715", + "longitude_deg": "-60.43920135498047", + "elevation_ft": "994", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SJKZ" + }, + { + "id": "36667", + "ident": "SJLA", + "type": "small_airport", + "name": "Flechal Airport", + "latitude_deg": "4.6613898277282715", + "longitude_deg": "-60.291900634765625", + "elevation_ft": "1988", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SJLA" + }, + { + "id": "36668", + "ident": "SJLB", + "type": "small_airport", + "name": "Fazenda Chaparral Airport", + "latitude_deg": "-15.501943588256836", + "longitude_deg": "-57.7672233581543", + "elevation_ft": "949", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Lambari D`Oeste", + "scheduled_service": "no", + "gps_code": "SJLB" + }, + { + "id": "36669", + "ident": "SJLC", + "type": "small_airport", + "name": "Hakoma Airport", + "latitude_deg": "2.7200000286102295", + "longitude_deg": "-63.567501068115234", + "elevation_ft": "1191", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Alto Alegre", + "scheduled_service": "no", + "gps_code": "SJLC" + }, + { + "id": "36670", + "ident": "SJLD", + "type": "small_airport", + "name": "Fazenda Porto do Campo Airport", + "latitude_deg": "-15.715556144714355", + "longitude_deg": "-57.711387634277344", + "elevation_ft": "594", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Lambari D`Oeste", + "scheduled_service": "no", + "gps_code": "SJLD" + }, + { + "id": "36671", + "ident": "SJLE", + "type": "small_airport", + "name": "Halikato-U Airport", + "latitude_deg": "3.2249999046325684", + "longitude_deg": "-63.19940185546875", + "elevation_ft": "994", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Alto Alegre", + "scheduled_service": "no", + "gps_code": "SJLE" + }, + { + "id": "36672", + "ident": "SJLF", + "type": "small_airport", + "name": "Homoxi Airport", + "latitude_deg": "2.4977800846099854", + "longitude_deg": "-63.729698181152344", + "elevation_ft": "2284", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Iracema", + "scheduled_service": "no", + "gps_code": "SJLF" + }, + { + "id": "36673", + "ident": "SJLH", + "type": "small_airport", + "name": "Jacamim Airport", + "latitude_deg": "2.176110029220581", + "longitude_deg": "-59.78390121459961", + "elevation_ft": "495", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Bonfim", + "scheduled_service": "no", + "gps_code": "SJLH" + }, + { + "id": "36674", + "ident": "SJLI", + "type": "small_airport", + "name": "Fazenda Lilliani Airport", + "latitude_deg": "-4.213611125946045", + "longitude_deg": "-46.974998474121094", + "elevation_ft": "958", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Bom Jardim", + "scheduled_service": "no", + "gps_code": "SJLI" + }, + { + "id": "36675", + "ident": "SJLJ", + "type": "small_airport", + "name": "Jatapuzinho Airport", + "latitude_deg": "0.5972219705581665", + "longitude_deg": "-59.22169876098633", + "elevation_ft": "397", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Caroebe", + "scheduled_service": "no", + "gps_code": "SJLJ" + }, + { + "id": "36676", + "ident": "SJLK", + "type": "small_airport", + "name": "Lago Grande I Airport", + "latitude_deg": "3.442780017852783", + "longitude_deg": "-60.352500915527344", + "elevation_ft": "298", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Bonfim", + "scheduled_service": "no", + "gps_code": "SJLK" + }, + { + "id": "36677", + "ident": "SJLL", + "type": "small_airport", + "name": "Maturucá Airport", + "latitude_deg": "4.460830211639404", + "longitude_deg": "-60.10029983520508", + "elevation_ft": "1493", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Normândia", + "scheduled_service": "no", + "gps_code": "SJLL" + }, + { + "id": "36678", + "ident": "SJLM", + "type": "small_airport", + "name": "Leão de Ouro Airport", + "latitude_deg": "4.151669979095459", + "longitude_deg": "-61.427799224853516", + "elevation_ft": "298", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SJLM" + }, + { + "id": "36679", + "ident": "SJLN", + "type": "small_airport", + "name": "Maloquinha Airport", + "latitude_deg": "4.726940155029297", + "longitude_deg": "-60.590599060058594", + "elevation_ft": "1890", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SJLN" + }, + { + "id": "36680", + "ident": "SJLO", + "type": "small_airport", + "name": "Manalaí Airport", + "latitude_deg": "5.084169864654541", + "longitude_deg": "-60.37889862060547", + "elevation_ft": "2189", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SJLO" + }, + { + "id": "36681", + "ident": "SJLP", + "type": "small_airport", + "name": "Manoá-Pium Airport", + "latitude_deg": "2.9800000190734863", + "longitude_deg": "-60.095298767089844", + "elevation_ft": "348", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Bonfim", + "scheduled_service": "no", + "gps_code": "SJLP" + }, + { + "id": "36682", + "ident": "SJLQ", + "type": "small_airport", + "name": "Maracanã Airport", + "latitude_deg": "4.364999771118164", + "longitude_deg": "-60.016700744628906", + "elevation_ft": "1791", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Normândia", + "scheduled_service": "no", + "gps_code": "SJLQ" + }, + { + "id": "337742", + "ident": "SJLR", + "type": "heliport", + "name": "Cambiju Heliport", + "latitude_deg": "-25.246976", + "longitude_deg": "-49.918208", + "elevation_ft": "3330", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Ponta Grossa", + "scheduled_service": "no", + "gps_code": "SJLR", + "local_code": "PR0121" + }, + { + "id": "36683", + "ident": "SJLS", + "type": "small_airport", + "name": "Marupá Airport", + "latitude_deg": "2.1252799034118652", + "longitude_deg": "-59.8213996887207", + "elevation_ft": "495", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Bonfim", + "scheduled_service": "no", + "gps_code": "SJLS" + }, + { + "id": "36684", + "ident": "SJLT", + "type": "small_airport", + "name": "Milho Airport", + "latitude_deg": "3.3855600357055664", + "longitude_deg": "-60.407798767089844", + "elevation_ft": "358", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Boa Vista", + "scheduled_service": "no", + "gps_code": "SJLT" + }, + { + "id": "36685", + "ident": "SJLU", + "type": "small_airport", + "name": "Missão Catrinami Airport", + "latitude_deg": "1.7408299446105957", + "longitude_deg": "-62.286399841308594", + "elevation_ft": "397", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Caracaraí", + "scheduled_service": "no", + "gps_code": "SJLU" + }, + { + "id": "36686", + "ident": "SJLV", + "type": "small_airport", + "name": "Morro Airport", + "latitude_deg": "4.35722017288208", + "longitude_deg": "-59.970001220703125", + "elevation_ft": "1792", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SJLV" + }, + { + "id": "36687", + "ident": "SJLW", + "type": "small_airport", + "name": "Mudubim I Airport", + "latitude_deg": "4.421669960021973", + "longitude_deg": "-60.48970031738281", + "elevation_ft": "1493", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SJLW" + }, + { + "id": "36688", + "ident": "SJLX", + "type": "small_airport", + "name": "Mutum Airport", + "latitude_deg": "4.453060150146484", + "longitude_deg": "-59.85390090942383", + "elevation_ft": "1792", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SJLX" + }, + { + "id": "337743", + "ident": "SJLY", + "type": "heliport", + "name": "Helicentro BH Heliport", + "latitude_deg": "-20.047375", + "longitude_deg": "-43.962328", + "elevation_ft": "4400", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Nova Lima", + "scheduled_service": "no", + "gps_code": "SJLY", + "local_code": "MG0243" + }, + { + "id": "36689", + "ident": "SJLZ", + "type": "small_airport", + "name": "Orinduque Airport", + "latitude_deg": "4.737297", + "longitude_deg": "-60.03273", + "elevation_ft": "1896", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "keywords": "SJLZ" + }, + { + "id": "36690", + "ident": "SJMA", + "type": "small_airport", + "name": "Fazenda Mundo Acabado Airport", + "latitude_deg": "-17.935556411743164", + "longitude_deg": "-54.926109313964844", + "elevation_ft": "525", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Sonora", + "scheduled_service": "no", + "gps_code": "SJMA" + }, + { + "id": "36691", + "ident": "SJMB", + "type": "heliport", + "name": "Fazenda Mombaça Heliport", + "latitude_deg": "-23.016111373901367", + "longitude_deg": "-44.28916549682617", + "elevation_ft": "132", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SJMB" + }, + { + "id": "36692", + "ident": "SJMC", + "type": "heliport", + "name": "Monte Carlo Trade Center Heliport", + "latitude_deg": "-23.492778778076172", + "longitude_deg": "-46.85194396972656", + "elevation_ft": "2746", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SJMC" + }, + { + "id": "36693", + "ident": "SJMD", + "type": "small_airport", + "name": "Paapiu Novo Airport", + "latitude_deg": "2.7227799892425537", + "longitude_deg": "-62.95029830932617", + "elevation_ft": "696", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Iracema", + "scheduled_service": "no", + "gps_code": "SJMD" + }, + { + "id": "36694", + "ident": "SJME", + "type": "small_airport", + "name": "Mato Grosso Airport", + "latitude_deg": "4.57056", + "longitude_deg": "-60.903099", + "elevation_ft": "2783", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SJME", + "local_code": "RR0066" + }, + { + "id": "36695", + "ident": "SJMF", + "type": "small_airport", + "name": "Pacu Airport", + "latitude_deg": "4.1638898849487305", + "longitude_deg": "-60.222198486328125", + "elevation_ft": "994", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Normândia", + "scheduled_service": "no", + "gps_code": "SJMF" + }, + { + "id": "36696", + "ident": "SJMG", + "type": "heliport", + "name": "Maguinhos Heliport", + "latitude_deg": "-22.771295", + "longitude_deg": "-41.926081", + "elevation_ft": "5", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Armação Dos Búzios", + "scheduled_service": "no", + "keywords": "SJMG" + }, + { + "id": "36697", + "ident": "SJMH", + "type": "small_airport", + "name": "Palimiú Airport", + "latitude_deg": "3.329557", + "longitude_deg": "-62.97123", + "elevation_ft": "896", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Alto Alegre", + "scheduled_service": "no", + "gps_code": "SJMH", + "local_code": "RR0068" + }, + { + "id": "36698", + "ident": "SJMI", + "type": "small_airport", + "name": "Parafuri Airstrip", + "latitude_deg": "3.282719", + "longitude_deg": "-63.849808", + "elevation_ft": "1988", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Alto Alegre", + "scheduled_service": "no", + "gps_code": "SJMI", + "local_code": "RR0069" + }, + { + "id": "36699", + "ident": "SJMJ", + "type": "small_airport", + "name": "Pedra Branca Airport", + "latitude_deg": "4.455811", + "longitude_deg": "-60.269018", + "elevation_ft": "1489", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SJMJ", + "local_code": "RR0070" + }, + { + "id": "36700", + "ident": "SJMK", + "type": "small_airport", + "name": "Pedra Preta Airport", + "latitude_deg": "4.711271", + "longitude_deg": "-60.476604", + "elevation_ft": "2188", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SJMK", + "local_code": "RR0071" + }, + { + "id": "36701", + "ident": "SJML", + "type": "small_airport", + "name": "Piolho Airport", + "latitude_deg": "4.702439", + "longitude_deg": "-60.734148", + "elevation_ft": "2287", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SJML", + "local_code": "RR0072" + }, + { + "id": "36702", + "ident": "SJMM", + "type": "small_airport", + "name": "Pipi Airport", + "latitude_deg": "4.931882", + "longitude_deg": "-60.319226", + "elevation_ft": "2585", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SJMM", + "local_code": "RR0073" + }, + { + "id": "36703", + "ident": "SJMN", + "type": "small_airport", + "name": "Raposa Airport", + "latitude_deg": "3.809596", + "longitude_deg": "-60.092908", + "elevation_ft": "495", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Normândia", + "scheduled_service": "no", + "gps_code": "SJMN", + "local_code": "RR0074" + }, + { + "id": "36704", + "ident": "SJMO", + "type": "small_airport", + "name": "Santa Isabel Airport", + "latitude_deg": "4.46907", + "longitude_deg": "-60.864053", + "elevation_ft": "1194", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SJMO", + "local_code": "RR0075" + }, + { + "id": "36705", + "ident": "SJMP", + "type": "small_airport", + "name": "Santa Liberdade Airstrip", + "latitude_deg": "4.288972", + "longitude_deg": "-60.259441", + "elevation_ft": "1890", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SJMP", + "local_code": "RR0076" + }, + { + "id": "36706", + "ident": "SJMQ", + "type": "small_airport", + "name": "Santa Maria de Normândia Airstrip", + "latitude_deg": "4.173909", + "longitude_deg": "-60.141154", + "elevation_ft": "847", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Normândia", + "scheduled_service": "no", + "gps_code": "SJMQ", + "local_code": "RR0077" + }, + { + "id": "36707", + "ident": "SJMR", + "type": "small_airport", + "name": "Maragogipe Airport", + "latitude_deg": "-23.457518", + "longitude_deg": "-54.300302", + "elevation_ft": "998", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Itaquiraí", + "scheduled_service": "no", + "gps_code": "SJMR", + "local_code": "MS0177" + }, + { + "id": "36708", + "ident": "SJMS", + "type": "heliport", + "name": "Mineração Serra Grande Heliport", + "latitude_deg": "-14.57481", + "longitude_deg": "-49.968041", + "elevation_ft": "1267", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Crixás", + "scheduled_service": "no", + "gps_code": "SJMS", + "local_code": "GO0162" + }, + { + "id": "36709", + "ident": "SJMT", + "type": "small_airport", + "name": "São Miguel Cachoeirinha Airport", + "latitude_deg": "4.4902801513671875", + "longitude_deg": "-60.9906005859375", + "elevation_ft": "1194", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SJMT" + }, + { + "id": "36710", + "ident": "SJMU", + "type": "small_airport", + "name": "Sauparú Airport", + "latitude_deg": "4.98971986771", + "longitude_deg": "-60.4356002808", + "elevation_ft": "2287", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SJMU" + }, + { + "id": "36711", + "ident": "SJMV", + "type": "small_airport", + "name": "Serra do Sol Airport", + "latitude_deg": "4.942500114440918", + "longitude_deg": "-60.47529983520508", + "elevation_ft": "2480", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SJMV" + }, + { + "id": "36712", + "ident": "SJMW", + "type": "small_airport", + "name": "Socó Airport", + "latitude_deg": "4.46999979019165", + "longitude_deg": "-60.17689895629883", + "elevation_ft": "1690", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SJMW" + }, + { + "id": "36713", + "ident": "SJMX", + "type": "small_airport", + "name": "Suapi Airport", + "latitude_deg": "4.57528018951416", + "longitude_deg": "-60.858299255371094", + "elevation_ft": "2487", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SJMX" + }, + { + "id": "336887", + "ident": "SJMY", + "type": "heliport", + "name": "Monte Rey Heliport", + "latitude_deg": "-29.135182", + "longitude_deg": "-51.142012", + "elevation_ft": "2795", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Caxias do Sul", + "scheduled_service": "no", + "gps_code": "SJMY", + "local_code": "RS0107" + }, + { + "id": "36714", + "ident": "SJMZ", + "type": "small_airport", + "name": "Fazenda Mizote Airport", + "latitude_deg": "-12.95748", + "longitude_deg": "-46.006204", + "elevation_ft": "2701", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SJMZ", + "local_code": "BA0116" + }, + { + "id": "36715", + "ident": "SJNA", + "type": "small_airport", + "name": "Clube de Esportes Aéreos e Náuticos do Pará Airport", + "latitude_deg": "-1.267222", + "longitude_deg": "-48.43", + "elevation_ft": "17", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Belém", + "scheduled_service": "no", + "gps_code": "SWEQ", + "local_code": "PA0139", + "keywords": "SJNA" + }, + { + "id": "36716", + "ident": "SJNB", + "type": "small_airport", + "name": "Ubaru Airport", + "latitude_deg": "4.501669883728027", + "longitude_deg": "-60.80220031738281", + "elevation_ft": "1194", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SJNB" + }, + { + "id": "36717", + "ident": "SJNC", + "type": "small_airport", + "name": "Uraricoera Airport", + "latitude_deg": "3.147511", + "longitude_deg": "-62.230371", + "elevation_ft": "794", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Alto Alegre", + "scheduled_service": "no", + "gps_code": "SJNC", + "local_code": "RR0084" + }, + { + "id": "36718", + "ident": "SJND", + "type": "small_airport", + "name": "Nova Descoberta Airport", + "latitude_deg": "-6.618888854980469", + "longitude_deg": "-56.692501068115234", + "elevation_ft": "821", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SJND" + }, + { + "id": "36719", + "ident": "SJNE", + "type": "small_airport", + "name": "Wapum Airport", + "latitude_deg": "1.9900000095367432", + "longitude_deg": "-59.95719909667969", + "elevation_ft": "495", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Bonfim", + "scheduled_service": "no", + "gps_code": "SJNE" + }, + { + "id": "36720", + "ident": "SJNF", + "type": "small_airport", + "name": "Wilimon Airport", + "latitude_deg": "4.635000228881836", + "longitude_deg": "-60.17610168457031", + "elevation_ft": "1739", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SJNF" + }, + { + "id": "36721", + "ident": "SJNG", + "type": "small_airport", + "name": "Xidea Airport", + "latitude_deg": "2.611256", + "longitude_deg": "-63.871121", + "elevation_ft": "1988", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Alto Alegre", + "scheduled_service": "no", + "gps_code": "SJNG", + "local_code": "RR0087" + }, + { + "id": "36722", + "ident": "SJNH", + "type": "small_airport", + "name": "Fazenda Nhu-Verá Airport", + "latitude_deg": "-18.0272216796875", + "longitude_deg": "-55.46027755737305", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJNH" + }, + { + "id": "36723", + "ident": "SJNI", + "type": "small_airport", + "name": "Fazenda Mutum Airport", + "latitude_deg": "-13.919721603393555", + "longitude_deg": "-56.084442138671875", + "elevation_ft": "1575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Mutum", + "scheduled_service": "no", + "gps_code": "SJNI" + }, + { + "id": "36724", + "ident": "SJNJ", + "type": "small_airport", + "name": "Fazenda Lakanka Airport", + "latitude_deg": "-15.436083", + "longitude_deg": "-51.583798", + "elevation_ft": "892", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Jussara", + "scheduled_service": "no", + "keywords": "SJNJ" + }, + { + "id": "36725", + "ident": "SJNK", + "type": "small_airport", + "name": "Fazenda Três Perobas Airport", + "latitude_deg": "-12.081667", + "longitude_deg": "-61.639999", + "elevation_ft": "1119", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Santa Luzia D`Oeste", + "scheduled_service": "no", + "gps_code": "SJNK", + "local_code": "RO0017" + }, + { + "id": "36726", + "ident": "SJNL", + "type": "small_airport", + "name": "Fazenda Reata Airport", + "latitude_deg": "-13.626771", + "longitude_deg": "-57.583187", + "elevation_ft": "1791", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo Do Parecis", + "scheduled_service": "no", + "gps_code": "SJNL", + "local_code": "MT0194" + }, + { + "id": "36727", + "ident": "SJNM", + "type": "small_airport", + "name": "Fazenda Santa Luzia Airport", + "latitude_deg": "-13.993894", + "longitude_deg": "-55.940962", + "elevation_ft": "1526", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Mutum", + "scheduled_service": "no", + "gps_code": "SJNM", + "local_code": "MT0195" + }, + { + "id": "36728", + "ident": "SJNN", + "type": "small_airport", + "name": "Fazenda Botelho Airport", + "latitude_deg": "-10.222222328186035", + "longitude_deg": "-64.34333038330078", + "elevation_ft": "535", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Nova Mamoré", + "scheduled_service": "no", + "gps_code": "SJNN" + }, + { + "id": "36729", + "ident": "SJNO", + "type": "small_airport", + "name": "Fazenda Nazaré Airport", + "latitude_deg": "-18.672115", + "longitude_deg": "-57.123735", + "elevation_ft": "348", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSFN", + "local_code": "MS0269", + "keywords": "SJNO" + }, + { + "id": "36730", + "ident": "SJNP", + "type": "small_airport", + "name": "Novo Progresso Airport", + "latitude_deg": "-7.125833", + "longitude_deg": "-55.400833", + "elevation_ft": "794", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Novo Progresso", + "scheduled_service": "no", + "gps_code": "SJNP", + "iata_code": "NPR", + "local_code": "PA0026", + "wikipedia_link": "https://en.wikipedia.org/wiki/Novo_Progresso_Airport" + }, + { + "id": "36731", + "ident": "SJNQ", + "type": "small_airport", + "name": "Destilaria Medasa Airport", + "latitude_deg": "-17.491096", + "longitude_deg": "-40.156317", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Medeiros Neto", + "scheduled_service": "no", + "gps_code": "SJNQ", + "local_code": "BA0118" + }, + { + "id": "36732", + "ident": "SJNR", + "type": "small_airport", + "name": "Norte Jet Airport", + "latitude_deg": "-1.307274", + "longitude_deg": "-48.255972", + "elevation_ft": "88", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Benevides", + "scheduled_service": "no", + "gps_code": "SJNR" + }, + { + "id": "36733", + "ident": "SJNS", + "type": "small_airport", + "name": "Ilha dos Macacos Airport", + "latitude_deg": "-9.225556373596191", + "longitude_deg": "-57.022499084472656", + "elevation_ft": "1266", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Paranaíta", + "scheduled_service": "no", + "gps_code": "SJNS" + }, + { + "id": "36734", + "ident": "SJNT", + "type": "heliport", + "name": "Higienópolis Medical Center Heliport", + "latitude_deg": "-23.54916763305664", + "longitude_deg": "-46.65805435180664", + "elevation_ft": "2884", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJNT" + }, + { + "id": "36735", + "ident": "SJNU", + "type": "small_airport", + "name": "Fazenda Campo Alto Airport", + "latitude_deg": "-13.038091", + "longitude_deg": "-51.713889", + "elevation_ft": "1099", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Ribeirão Cascalheira", + "scheduled_service": "no", + "gps_code": "SJNU", + "local_code": "MT0196" + }, + { + "id": "36736", + "ident": "SJNV", + "type": "small_airport", + "name": "Fazenda São Francisco Airport", + "latitude_deg": "-18.431389", + "longitude_deg": "-50.256111", + "elevation_ft": "1857", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Gouvelândia", + "scheduled_service": "no", + "gps_code": "SJNV", + "local_code": "GO0081" + }, + { + "id": "36737", + "ident": "SJNW", + "type": "small_airport", + "name": "Fazenda Nhandu Airport", + "latitude_deg": "-9.632569", + "longitude_deg": "-55.216341", + "elevation_ft": "1103", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Novo Mundo", + "scheduled_service": "no", + "gps_code": "SJNW", + "local_code": "MT0197" + }, + { + "id": "36738", + "ident": "SJNX", + "type": "small_airport", + "name": "Cosmos Aviação Agrícola Airport", + "latitude_deg": "-18.408056", + "longitude_deg": "-52.63028", + "elevation_ft": "2730", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Chapadão Do Céu", + "scheduled_service": "no", + "gps_code": "SJNX", + "local_code": "GO0082" + }, + { + "id": "36739", + "ident": "SJNY", + "type": "heliport", + "name": "Iberostar Praia do Forte Heliport", + "latitude_deg": "-12.549641", + "longitude_deg": "-37.990776", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Mata de São João", + "scheduled_service": "no", + "gps_code": "SJNY", + "local_code": "BA0208" + }, + { + "id": "36740", + "ident": "SJNZ", + "type": "small_airport", + "name": "Fazenda Três Lagoas Airport", + "latitude_deg": "-13.258413", + "longitude_deg": "-58.727975", + "elevation_ft": "1755", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SNZP", + "local_code": "MT0577", + "keywords": "SJNZ" + }, + { + "id": "36741", + "ident": "SJOA", + "type": "heliport", + "name": "Fazenda Fortaleza Heliport", + "latitude_deg": "-23.178892", + "longitude_deg": "-45.471429", + "elevation_ft": "2155", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Taubaté", + "scheduled_service": "no", + "gps_code": "SDUZ", + "local_code": "SP0433", + "keywords": "SJOA" + }, + { + "id": "36742", + "ident": "SJOB", + "type": "closed", + "name": "Estáncia Parque Atibaia Heliport", + "latitude_deg": "-23.080299377441406", + "longitude_deg": "-46.58190155029297", + "elevation_ft": "2874", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Atibaia", + "scheduled_service": "no", + "gps_code": "SJOB" + }, + { + "id": "36743", + "ident": "SJOC", + "type": "heliport", + "name": "Hotel Paradise Heliport", + "latitude_deg": "-21.110785", + "longitude_deg": "-48.964466", + "elevation_ft": "1952", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Catanduva", + "scheduled_service": "no", + "gps_code": "SNHO", + "local_code": "SP0704", + "keywords": "SJOC" + }, + { + "id": "36744", + "ident": "SJOD", + "type": "closed", + "name": "Alô Brasil Heliport", + "latitude_deg": "-22.970556", + "longitude_deg": "-47.298889", + "elevation_ft": "1863", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Monte Mor", + "scheduled_service": "no", + "keywords": "SJOD" + }, + { + "id": "36745", + "ident": "SJOE", + "type": "heliport", + "name": "Haras Cachoeira Heliport", + "latitude_deg": "-23.246389389038086", + "longitude_deg": "-47.424720764160156", + "elevation_ft": "1732", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itu", + "scheduled_service": "no", + "gps_code": "SJOE" + }, + { + "id": "36746", + "ident": "SJOF", + "type": "heliport", + "name": "Frango Norte Heliport", + "latitude_deg": "-23.073610305786133", + "longitude_deg": "-47.727500915527344", + "elevation_ft": "1726", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Tietê", + "scheduled_service": "no", + "gps_code": "SJOF" + }, + { + "id": "36747", + "ident": "SJOG", + "type": "small_airport", + "name": "Ariquemes Airport", + "latitude_deg": "-9.880436", + "longitude_deg": "-63.047115", + "elevation_ft": "466", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Ariquemes", + "scheduled_service": "no", + "gps_code": "SJOG", + "iata_code": "AQM", + "local_code": "RO0008" + }, + { + "id": "36748", + "ident": "SJOH", + "type": "small_airport", + "name": "Juruti Airport", + "latitude_deg": "-2.186667", + "longitude_deg": "-56.090279", + "elevation_ft": "108", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Juruti", + "scheduled_service": "no", + "gps_code": "SNRJ", + "local_code": "PA0103", + "keywords": "SJOH" + }, + { + "id": "36749", + "ident": "SJOI", + "type": "small_airport", + "name": "Fazenda Jaguatirica Airport", + "latitude_deg": "-22.032222747802734", + "longitude_deg": "-57.9819450378418", + "elevation_ft": "289", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SJOI" + }, + { + "id": "36750", + "ident": "SJOJ", + "type": "small_airport", + "name": "Simasa Airport", + "latitude_deg": "-4.870714", + "longitude_deg": "-47.390409", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Açailândia", + "scheduled_service": "no", + "gps_code": "SJOJ", + "local_code": "MA0030" + }, + { + "id": "36751", + "ident": "SJOK", + "type": "small_airport", + "name": "Fazenda Modelo Airport", + "latitude_deg": "-19.315555572509766", + "longitude_deg": "-52.97666549682617", + "elevation_ft": "2041", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Água Clara", + "scheduled_service": "no", + "gps_code": "SJOK" + }, + { + "id": "36752", + "ident": "SJOL", + "type": "heliport", + "name": "RS Morizono Heliport", + "latitude_deg": "-23.508056640625", + "longitude_deg": "-46.83610916137695", + "elevation_ft": "2362", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SJOL" + }, + { + "id": "36753", + "ident": "SJOM", + "type": "small_airport", + "name": "Fazenda Karla Renata Airport", + "latitude_deg": "-10.632499694824219", + "longitude_deg": "-58.44499969482422", + "elevation_ft": "991", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Castanheira", + "scheduled_service": "no", + "gps_code": "SJOM" + }, + { + "id": "36754", + "ident": "SJON", + "type": "small_airport", + "name": "Fazenda São José do Generoso Airport", + "latitude_deg": "-18.872499465942383", + "longitude_deg": "-56.78916549682617", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJON" + }, + { + "id": "36755", + "ident": "SJOO", + "type": "small_airport", + "name": "Doutor João Osmar de Oliveira Airport", + "latitude_deg": "-14.134166717529297", + "longitude_deg": "-59.81972122192383", + "elevation_ft": "864", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SJOO" + }, + { + "id": "36756", + "ident": "SJOP", + "type": "heliport", + "name": "Minas da Conceição Heliport", + "latitude_deg": "-19.650833129882812", + "longitude_deg": "-43.253055572509766", + "elevation_ft": "2789", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Itabira", + "scheduled_service": "no", + "gps_code": "SJOP" + }, + { + "id": "36757", + "ident": "SJOQ", + "type": "heliport", + "name": "Cristália Heliport", + "latitude_deg": "-22.467777252197266", + "longitude_deg": "-46.717498779296875", + "elevation_ft": "2185", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapira", + "scheduled_service": "no", + "gps_code": "SJOQ" + }, + { + "id": "36758", + "ident": "SJOR", + "type": "small_airport", + "name": "Fazenda Parabúfalos Airport", + "latitude_deg": "1.020029", + "longitude_deg": "-50.21229", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Macapá", + "scheduled_service": "no", + "gps_code": "SJOR" + }, + { + "id": "36759", + "ident": "SJOS", + "type": "heliport", + "name": "Tropical Heliport", + "latitude_deg": "-19.874439", + "longitude_deg": "-45.003562", + "elevation_ft": "2412", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Nova Serrana", + "scheduled_service": "no", + "gps_code": "SJOS", + "local_code": "MG0278", + "keywords": "SJOS" + }, + { + "id": "336994", + "ident": "SJOT", + "type": "heliport", + "name": "Oliveira Heliport", + "latitude_deg": "-27.105627", + "longitude_deg": "-48.934243", + "elevation_ft": "131", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Brusque", + "scheduled_service": "no", + "gps_code": "SJOT", + "local_code": "SC0070" + }, + { + "id": "36760", + "ident": "SJOU", + "type": "small_airport", + "name": "Marfrig Frigorífico Airport", + "latitude_deg": "-14.453332901000977", + "longitude_deg": "-54.03361129760742", + "elevation_ft": "1628", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Paranatinga", + "scheduled_service": "no", + "gps_code": "SJOU" + }, + { + "id": "36761", + "ident": "SJOV", + "type": "heliport", + "name": "C.B.E. - Companhia Brasileira de Equipamentos Heliport", + "latitude_deg": "-24.1486110687", + "longitude_deg": "-48.344165802", + "elevation_ft": "2474", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Grande", + "scheduled_service": "no", + "gps_code": "SJOV" + }, + { + "id": "36762", + "ident": "SJOW", + "type": "small_airport", + "name": "Fazenda Guadalupe Airport", + "latitude_deg": "-20.981666564941406", + "longitude_deg": "-50.52694320678711", + "elevation_ft": "1188", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santo Antônio Do Aracanguá", + "scheduled_service": "no", + "gps_code": "SJOW" + }, + { + "id": "36763", + "ident": "SJOX", + "type": "small_airport", + "name": "Fazenda Brinquinho Airport", + "latitude_deg": "-12.825", + "longitude_deg": "-46.244999", + "elevation_ft": "3145", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SDRQ", + "local_code": "BA0078", + "keywords": "SJOX" + }, + { + "id": "36764", + "ident": "SJOY", + "type": "small_airport", + "name": "Fazenda São Miguel Airport", + "latitude_deg": "-12.607222", + "longitude_deg": "-46.239445", + "elevation_ft": "2999", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SDTV", + "local_code": "BA0079", + "keywords": "SJOY" + }, + { + "id": "36765", + "ident": "SJOZ", + "type": "heliport", + "name": "Faria Lima Square Heliport", + "latitude_deg": "-23.588629", + "longitude_deg": "-46.682732", + "elevation_ft": "2612", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJOZ", + "local_code": "SP0644" + }, + { + "id": "36766", + "ident": "SJPA", + "type": "small_airport", + "name": "EMAL - Pimenta Bueno Airport", + "latitude_deg": "-11.686111450195312", + "longitude_deg": "-60.629722595214844", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Pimenta Bueno", + "scheduled_service": "no", + "gps_code": "SJPA" + }, + { + "id": "36767", + "ident": "SJPB", + "type": "heliport", + "name": "Guarapiranga Golfe Heliport", + "latitude_deg": "-23.787500381469727", + "longitude_deg": "-46.78166580200195", + "elevation_ft": "2487", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJPB" + }, + { + "id": "36768", + "ident": "SJPC", + "type": "heliport", + "name": "Giannone Flavor Heliport", + "latitude_deg": "-23.45305633544922", + "longitude_deg": "-47.421112060546875", + "elevation_ft": "1992", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sorocaba", + "scheduled_service": "no", + "gps_code": "SJPC" + }, + { + "id": "36769", + "ident": "SJPD", + "type": "heliport", + "name": "Riacho Verde Heliport", + "latitude_deg": "-8.256111145019531", + "longitude_deg": "-35.772499084472656", + "elevation_ft": "1664", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Bezerros", + "scheduled_service": "no", + "gps_code": "SJPD" + }, + { + "id": "36770", + "ident": "SJPE", + "type": "heliport", + "name": "Praia da Armação Heliport", + "latitude_deg": "-23.735000610351562", + "longitude_deg": "-45.343055725097656", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ilhabela", + "scheduled_service": "no", + "gps_code": "SJPE" + }, + { + "id": "36771", + "ident": "SJPF", + "type": "heliport", + "name": "Polícia Federal Heliport", + "latitude_deg": "-25.515832901000977", + "longitude_deg": "-54.5724983215332", + "elevation_ft": "709", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Foz Do Iguaçu", + "scheduled_service": "no", + "gps_code": "SJPF" + }, + { + "id": "36772", + "ident": "SJPG", + "type": "small_airport", + "name": "Pista Branca de Neve", + "latitude_deg": "-6.125325", + "longitude_deg": "-56.399391", + "elevation_ft": "545", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "keywords": "SNVE, SJPG" + }, + { + "id": "36773", + "ident": "SJPH", + "type": "small_airport", + "name": "Fazenda Palma Airport", + "latitude_deg": "-16.189443588256836", + "longitude_deg": "-48.07805633544922", + "elevation_ft": "3297", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Luziânia", + "scheduled_service": "no", + "gps_code": "SJPH" + }, + { + "id": "36774", + "ident": "SJPI", + "type": "small_airport", + "name": "Fazenda Pirapitinga Airport", + "latitude_deg": "-15.417558", + "longitude_deg": "-48.634816", + "elevation_ft": "2323", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Cocalzinho De Goiás", + "scheduled_service": "no", + "gps_code": "SWIW", + "local_code": "GO0129", + "keywords": "SJPI" + }, + { + "id": "36775", + "ident": "SJPJ", + "type": "heliport", + "name": "Prefeitura do Município de Jundiaí Heliport", + "latitude_deg": "-23.171388626098633", + "longitude_deg": "-46.90027618408203", + "elevation_ft": "2454", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jundiaí", + "scheduled_service": "no", + "gps_code": "SJPJ" + }, + { + "id": "36776", + "ident": "SJPK", + "type": "small_airport", + "name": "Marcos da Cunha Airport", + "latitude_deg": "-12.36138916015625", + "longitude_deg": "-46.1341667175293", + "elevation_ft": "2815", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Luís Eduardo Magalhães", + "scheduled_service": "no", + "gps_code": "SJPK" + }, + { + "id": "36777", + "ident": "SJPL", + "type": "small_airport", + "name": "Fazenda Austrália Airport", + "latitude_deg": "-21.974166870117188", + "longitude_deg": "-54.14777755737305", + "elevation_ft": "1116", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Deodápolis", + "scheduled_service": "no", + "gps_code": "SJPL" + }, + { + "id": "36778", + "ident": "SJPM", + "type": "heliport", + "name": "Capitão PM Cidimar Antunes de Almeida Heliport", + "latitude_deg": "-22.866666793823242", + "longitude_deg": "-43.12333297729492", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Niterói", + "scheduled_service": "no", + "gps_code": "SJPM" + }, + { + "id": "36779", + "ident": "SJPN", + "type": "heliport", + "name": "Campan Heliport", + "latitude_deg": "-23.04194450378418", + "longitude_deg": "-50.05527877807617", + "elevation_ft": "1661", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Cambará", + "scheduled_service": "no", + "gps_code": "SJPN" + }, + { + "id": "36780", + "ident": "SJPO", + "type": "small_airport", + "name": "Xingó Airport", + "latitude_deg": "-9.587778091430664", + "longitude_deg": "-37.7783317565918", + "elevation_ft": "791", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Piranhas", + "scheduled_service": "no", + "gps_code": "SJPO" + }, + { + "id": "36781", + "ident": "SJPP", + "type": "small_airport", + "name": "Aero Rural Airport", + "latitude_deg": "-9.85694408416748", + "longitude_deg": "-56.00444412231445", + "elevation_ft": "879", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alta Floresta", + "scheduled_service": "no", + "gps_code": "SJPP" + }, + { + "id": "36782", + "ident": "SJPQ", + "type": "small_airport", + "name": "Fazenda Buriti Airport", + "latitude_deg": "-16.319721", + "longitude_deg": "-47.225277", + "elevation_ft": "3215", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Unaí", + "scheduled_service": "no", + "gps_code": "SBOB", + "local_code": "MG0470", + "keywords": "SJPQ, Avstal Airport" + }, + { + "id": "36783", + "ident": "SJPR", + "type": "closed", + "name": "Andrieli Base Operacional Airport", + "latitude_deg": "-15.5797224045", + "longitude_deg": "-54.4077796936", + "elevation_ft": "2188", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Primavera Do Leste", + "scheduled_service": "no", + "gps_code": "SJPR" + }, + { + "id": "36784", + "ident": "SJPS", + "type": "small_airport", + "name": "Fazenda Monte Belo Airport", + "latitude_deg": "-14.979999542236328", + "longitude_deg": "-57.991668701171875", + "elevation_ft": "636", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra Do Bugres", + "scheduled_service": "no", + "gps_code": "SJPS" + }, + { + "id": "36785", + "ident": "SJPT", + "type": "closed", + "name": "Petrobrás - Refinaria de Capuava Heliport", + "latitude_deg": "-23.6527786255", + "longitude_deg": "-46.4799995422", + "elevation_ft": "2480", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mauá", + "scheduled_service": "no", + "gps_code": "SJPT" + }, + { + "id": "36786", + "ident": "SJPU", + "type": "small_airport", + "name": "Pau D`Arco Airport", + "latitude_deg": "-7.119999885559082", + "longitude_deg": "-56.81444549560547", + "elevation_ft": "866", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SJPU" + }, + { + "id": "36787", + "ident": "SJPV", + "type": "small_airport", + "name": "Fazenda Cedro Airport", + "latitude_deg": "-12.967214", + "longitude_deg": "-56.185219", + "elevation_ft": "1378", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Lucas Do Rio Verde", + "scheduled_service": "no", + "gps_code": "SWFC", + "local_code": "MT0339", + "keywords": "SJPV, Fazenda Guimarães" + }, + { + "id": "36788", + "ident": "SJPW", + "type": "small_airport", + "name": "Fazenda Guimarães II Airport", + "latitude_deg": "-12.901944160461426", + "longitude_deg": "-56.371944427490234", + "elevation_ft": "1312", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Lucas Do Rio Verde", + "scheduled_service": "no", + "gps_code": "SJPW" + }, + { + "id": "36789", + "ident": "SJPX", + "type": "small_airport", + "name": "Fazenda Cidade Verde Airport", + "latitude_deg": "-15.4152784348", + "longitude_deg": "-54.3722229004", + "elevation_ft": "2028", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Poxoréo", + "scheduled_service": "no", + "gps_code": "SJPX" + }, + { + "id": "36790", + "ident": "SJPY", + "type": "closed", + "name": "Coqueiral Heliport", + "latitude_deg": "-16.485421", + "longitude_deg": "-39.068166", + "elevation_ft": "6", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Porto Seguro", + "scheduled_service": "no", + "keywords": "SJPY" + }, + { + "id": "36791", + "ident": "SJPZ", + "type": "heliport", + "name": "Fazenda Santo Antônio Heliport", + "latitude_deg": "-3.1161110401153564", + "longitude_deg": "-45.012779235839844", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Matinha", + "scheduled_service": "no", + "gps_code": "SJPZ" + }, + { + "id": "36792", + "ident": "SJQA", + "type": "small_airport", + "name": "Fazenda Clarim Airport", + "latitude_deg": "-13.201802", + "longitude_deg": "-46.239696", + "elevation_ft": "3241", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SJ2K", + "local_code": "BA0376", + "keywords": "SJQA" + }, + { + "id": "36793", + "ident": "SJQB", + "type": "small_airport", + "name": "Fazenda Symalu Airport", + "latitude_deg": "-8.327500343322754", + "longitude_deg": "-51.10499954223633", + "elevation_ft": "601", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Cumaru Do Norte", + "scheduled_service": "no", + "gps_code": "SJQB" + }, + { + "id": "36794", + "ident": "SJQC", + "type": "heliport", + "name": "Jequitimar Heliport", + "latitude_deg": "-23.968332290649414", + "longitude_deg": "-46.18722152709961", + "elevation_ft": "36", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarujá", + "scheduled_service": "no", + "gps_code": "SJQC" + }, + { + "id": "36795", + "ident": "SJQD", + "type": "small_airport", + "name": "Fazenda São Roque do Vale do Rio Negro Airport", + "latitude_deg": "-19.36916732788086", + "longitude_deg": "-56.3488883972168", + "elevation_ft": "296", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SJQD" + }, + { + "id": "36796", + "ident": "SJQE", + "type": "small_airport", + "name": "Graciosa Airport", + "latitude_deg": "-25.407713", + "longitude_deg": "-49.050479", + "elevation_ft": "2999", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Piraquara", + "scheduled_service": "no", + "gps_code": "SWYG", + "local_code": "PR0100", + "keywords": "SJQE, Bonacin" + }, + { + "id": "36797", + "ident": "SJQF", + "type": "small_airport", + "name": "Fazenda Londrina Airport", + "latitude_deg": "-13.355555534362793", + "longitude_deg": "-57.755001068115234", + "elevation_ft": "1690", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo Do Parecis", + "scheduled_service": "no", + "gps_code": "SJQF" + }, + { + "id": "36798", + "ident": "SJQG", + "type": "heliport", + "name": "HSBC Heliport", + "latitude_deg": "-25.502500534057617", + "longitude_deg": "-49.279998779296875", + "elevation_ft": "2956", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Curitiba", + "scheduled_service": "no", + "gps_code": "SJQG" + }, + { + "id": "36799", + "ident": "SJQH", + "type": "small_airport", + "name": "Fazenda Tempero Seco Airport", + "latitude_deg": "-9.403929", + "longitude_deg": "-66.695509", + "elevation_ft": "375", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Lábrea", + "scheduled_service": "no", + "keywords": "SJQH" + }, + { + "id": "36800", + "ident": "SJQI", + "type": "small_airport", + "name": "Porto Jofre Airport", + "latitude_deg": "-17.358759", + "longitude_deg": "-56.773707", + "elevation_ft": "361", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Poconé", + "scheduled_service": "no", + "gps_code": "SJQI", + "local_code": "MT0210", + "keywords": "Hotel Porto Jofre" + }, + { + "id": "36801", + "ident": "SJQJ", + "type": "heliport", + "name": "Jomarca II Heliport", + "latitude_deg": "-23.989721298217773", + "longitude_deg": "-46.24222183227539", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarujá", + "scheduled_service": "no", + "gps_code": "SJQJ" + }, + { + "id": "36802", + "ident": "SJQK", + "type": "small_airport", + "name": "Barra do Vento Airport", + "latitude_deg": "2.6955599784851074", + "longitude_deg": "-60.81420135498047", + "elevation_ft": "279", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Boa Vista", + "scheduled_service": "no", + "gps_code": "SJQK" + }, + { + "id": "337868", + "ident": "SJQL", + "type": "small_airport", + "name": "Águas Claras Aviação Agrícola Airport", + "latitude_deg": "-19.322112", + "longitude_deg": "-47.555554", + "elevation_ft": "3117", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Santa Juliana", + "scheduled_service": "no", + "gps_code": "SJQL", + "local_code": "MG0130" + }, + { + "id": "36803", + "ident": "SJQM", + "type": "heliport", + "name": "Fazenda Valor Heliport", + "latitude_deg": "-3.650974", + "longitude_deg": "-45.202893", + "elevation_ft": "115", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Igarapé do Meio", + "scheduled_service": "no", + "gps_code": "SJQM", + "local_code": "MA0064", + "keywords": "Fazenda Lago Azul" + }, + { + "id": "262", + "ident": "SJQN", + "type": "small_airport", + "name": "Quirinópolis Airport", + "latitude_deg": "-18.44610023498535", + "longitude_deg": "-50.40919876098633", + "elevation_ft": "1922", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Quirinópolis", + "scheduled_service": "no", + "gps_code": "SJQN", + "local_code": "SJQN" + }, + { + "id": "36804", + "ident": "SJQO", + "type": "heliport", + "name": "Unidade Administrativa Conjunta do IAP/BPAMB Heliport", + "latitude_deg": "-25.51416778564453", + "longitude_deg": "-48.499168395996094", + "elevation_ft": "27", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Paranaguá", + "scheduled_service": "no", + "gps_code": "SJQO" + }, + { + "id": "337870", + "ident": "SJQP", + "type": "small_airport", + "name": "Estância Rebog Airport", + "latitude_deg": "-12.801619", + "longitude_deg": "-50.628347", + "elevation_ft": "801", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cocalinho", + "scheduled_service": "no", + "gps_code": "SJQP", + "local_code": "MT0211" + }, + { + "id": "36805", + "ident": "SJQQ", + "type": "small_airport", + "name": "Fazenda Terra Alta Airport", + "latitude_deg": "-2.865000009536743", + "longitude_deg": "-50.99277877807617", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Portel", + "scheduled_service": "no", + "gps_code": "SJQQ" + }, + { + "id": "36806", + "ident": "SJQR", + "type": "small_airport", + "name": "Jacarezinho Airport", + "latitude_deg": "-21.14233", + "longitude_deg": "-50.900817", + "elevation_ft": "1312", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Valparaíso", + "scheduled_service": "no", + "gps_code": "SSJC", + "local_code": "SP0249", + "keywords": "SJQR" + }, + { + "id": "36807", + "ident": "SJQS", + "type": "small_airport", + "name": "Paredão da Serra Airport", + "latitude_deg": "-15.471943855285645", + "longitude_deg": "-55.720001220703125", + "elevation_ft": "2117", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Chapada Dos Guimarães", + "scheduled_service": "no", + "gps_code": "SJQS" + }, + { + "id": "36808", + "ident": "SJQT", + "type": "small_airport", + "name": "Fazenda Haras RPC Airport", + "latitude_deg": "-20.169079", + "longitude_deg": "-43.92747", + "elevation_ft": "4209", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Nova Lima", + "scheduled_service": "no", + "gps_code": "SJQT", + "local_code": "MG0131" + }, + { + "id": "36809", + "ident": "SJQU", + "type": "heliport", + "name": "Mantiqueira Heliport", + "latitude_deg": "-22.33416748046875", + "longitude_deg": "-44.90416717529297", + "elevation_ft": "3160", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Itanhandu", + "scheduled_service": "no", + "gps_code": "SJQU" + }, + { + "id": "36810", + "ident": "SJQV", + "type": "small_airport", + "name": "Usina Santa Luiza Airport", + "latitude_deg": "-21.509166717529297", + "longitude_deg": "-48.19722366333008", + "elevation_ft": "1978", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Motuca", + "scheduled_service": "no", + "gps_code": "SJQV" + }, + { + "id": "36811", + "ident": "SJQW", + "type": "heliport", + "name": "Warna Roos Heliport", + "latitude_deg": "-28.181110382080078", + "longitude_deg": "-53.21666717529297", + "elevation_ft": "1804", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Santa Bárbara Do Sul", + "scheduled_service": "no", + "gps_code": "SJQW" + }, + { + "id": "36812", + "ident": "SJQX", + "type": "small_airport", + "name": "Fazenda Uruará Airport", + "latitude_deg": "-3.523351", + "longitude_deg": "-53.393923", + "elevation_ft": "797", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Uruará", + "scheduled_service": "no", + "gps_code": "SJQX" + }, + { + "id": "36813", + "ident": "SJQY", + "type": "heliport", + "name": "Terminal do Solimões Heliport", + "latitude_deg": "-3.944166898727417", + "longitude_deg": "-63.163612365722656", + "elevation_ft": "112", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Coari", + "scheduled_service": "no", + "gps_code": "SJQY" + }, + { + "id": "36814", + "ident": "SJQZ", + "type": "small_airport", + "name": "Dona Iracema Airport", + "latitude_deg": "-10.606389045715332", + "longitude_deg": "-48.348609924316406", + "elevation_ft": "919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Porto Nacional", + "scheduled_service": "no", + "gps_code": "SJQZ" + }, + { + "id": "36815", + "ident": "SJRA", + "type": "small_airport", + "name": "Pesqueiro Xingu Airport", + "latitude_deg": "-5.775000095367432", + "longitude_deg": "-52.622222900390625", + "elevation_ft": "525", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "São Félix Do Xingu", + "scheduled_service": "no", + "gps_code": "SJRA" + }, + { + "id": "36816", + "ident": "SJRB", + "type": "small_airport", + "name": "Fazenda VR Airport", + "latitude_deg": "-10.113056182861328", + "longitude_deg": "-52.505001068115234", + "elevation_ft": "1191", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santa Cruz Do Xingu", + "scheduled_service": "no", + "gps_code": "SJRB" + }, + { + "id": "36817", + "ident": "SJRC", + "type": "small_airport", + "name": "Serra da Borda Airport", + "latitude_deg": "-14.8272218704", + "longitude_deg": "-59.68805694579999", + "elevation_ft": "1575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SJRC" + }, + { + "id": "36818", + "ident": "SJRD", + "type": "heliport", + "name": "Ilha Josefa Heliport", + "latitude_deg": "-23.040555953979492", + "longitude_deg": "-44.3922233581543", + "elevation_ft": "131", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SJRD" + }, + { + "id": "36819", + "ident": "SJRE", + "type": "heliport", + "name": "Vila Adail Heliport", + "latitude_deg": "-23.050326", + "longitude_deg": "-47.390181", + "elevation_ft": "1975", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Elias Fausto", + "scheduled_service": "no", + "gps_code": "SJRE", + "local_code": "SP0651" + }, + { + "id": "36820", + "ident": "SJRF", + "type": "heliport", + "name": "Lavalpa Heliport", + "latitude_deg": "-23.293611526489258", + "longitude_deg": "-45.97639083862305", + "elevation_ft": "1968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jacareí", + "scheduled_service": "no", + "gps_code": "SJRF" + }, + { + "id": "44713", + "ident": "SJRG", + "type": "small_airport", + "name": "Rio Grande Regional Airport", + "latitude_deg": "-32.083065", + "longitude_deg": "-52.167184", + "elevation_ft": "27", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Rio Grande", + "scheduled_service": "no", + "gps_code": "SJRG", + "iata_code": "RIG", + "local_code": "RS0013", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rio_Grande_Airport", + "keywords": "SBRG, Gustavo Cramer Airport" + }, + { + "id": "36822", + "ident": "SJRH", + "type": "small_airport", + "name": "Fazenda Galheiro Airport", + "latitude_deg": "-15.308055877685547", + "longitude_deg": "-54.59972381591797", + "elevation_ft": "1788", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Verde", + "scheduled_service": "no", + "gps_code": "SJRH" + }, + { + "id": "36823", + "ident": "SJRI", + "type": "small_airport", + "name": "Condomínio Boa Esperança Airport", + "latitude_deg": "-8.406389236450195", + "longitude_deg": "-45.44138717651367", + "elevation_ft": "1825", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Baixa Grande Do Ribeiro", + "scheduled_service": "no", + "gps_code": "SJRI" + }, + { + "id": "36824", + "ident": "SJRJ", + "type": "small_airport", + "name": "Agromineral Mutum Airport", + "latitude_deg": "-7.640277862548828", + "longitude_deg": "-56.787776947021484", + "elevation_ft": "752", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SJRJ" + }, + { + "id": "36825", + "ident": "SJRK", + "type": "small_airport", + "name": "Agropecuária São Roberto Airport", + "latitude_deg": "-9.232221603393555", + "longitude_deg": "-50.93027877807617", + "elevation_ft": "860", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santana Do Araguaia", + "scheduled_service": "no", + "gps_code": "SJRK" + }, + { + "id": "36826", + "ident": "SJRL", + "type": "small_airport", + "name": "Fazenda do Açucar Airport", + "latitude_deg": "-14.458610534667969", + "longitude_deg": "-56.05277633666992", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nobres", + "scheduled_service": "no", + "gps_code": "SJRL" + }, + { + "id": "36827", + "ident": "SJRM", + "type": "heliport", + "name": "Monte das Oliveiras Heliport", + "latitude_deg": "-23.665000915527344", + "longitude_deg": "-46.52027893066406", + "elevation_ft": "2566", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santo André", + "scheduled_service": "no", + "gps_code": "SJRM" + }, + { + "id": "36828", + "ident": "SJRN", + "type": "heliport", + "name": "Carlos Gomes Center Heliport", + "latitude_deg": "-30.031389236450195", + "longitude_deg": "-51.176666259765625", + "elevation_ft": "419", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Porto Alegre", + "scheduled_service": "no", + "gps_code": "SJRN" + }, + { + "id": "36829", + "ident": "SJRO", + "type": "small_airport", + "name": "Fazenda Santa Elisa Airport", + "latitude_deg": "-20.530555725097656", + "longitude_deg": "-50.6349983215332", + "elevation_ft": "1312", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Auriflama", + "scheduled_service": "no", + "gps_code": "SJRO" + }, + { + "id": "36830", + "ident": "SJRP", + "type": "small_airport", + "name": "Fazenda Santângelo Agropecuária Airport", + "latitude_deg": "-20.13247", + "longitude_deg": "-56.371143", + "elevation_ft": "479", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "SI99", + "local_code": "MS0589", + "keywords": "SJRP" + }, + { + "id": "36831", + "ident": "SJRQ", + "type": "heliport", + "name": "Hospital São Camilo Pompéia Heliport", + "latitude_deg": "-23.533889770499997", + "longitude_deg": "-46.688331604", + "elevation_ft": "2703", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJRQ" + }, + { + "id": "36832", + "ident": "SJRR", + "type": "small_airport", + "name": "Fazenda Barreiro Airport", + "latitude_deg": "-17.054166793823242", + "longitude_deg": "-50.9283332824707", + "elevation_ft": "2461", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Paraúna", + "scheduled_service": "no", + "gps_code": "SJRR" + }, + { + "id": "36833", + "ident": "SJRS", + "type": "small_airport", + "name": "Fazenda Guanabara Airport", + "latitude_deg": "-21.343610763549805", + "longitude_deg": "-51.4033317565918", + "elevation_ft": "1017", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Junqueirópolis", + "scheduled_service": "no", + "gps_code": "SJRS" + }, + { + "id": "36834", + "ident": "SJRT", + "type": "small_airport", + "name": "Fazenda Arrendamento Airport", + "latitude_deg": "-14.369443893432617", + "longitude_deg": "-54.002498626708984", + "elevation_ft": "1499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Paranatinga", + "scheduled_service": "no", + "gps_code": "SJRT" + }, + { + "id": "36835", + "ident": "SJRU", + "type": "heliport", + "name": "Maria Cecília Lara Campos Heliport", + "latitude_deg": "-23.59055519104004", + "longitude_deg": "-46.68305587768555", + "elevation_ft": "2595", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJRU" + }, + { + "id": "36836", + "ident": "SJRV", + "type": "small_airport", + "name": "PCH Garganta da Jararaca Airport", + "latitude_deg": "-13.38611125946045", + "longitude_deg": "-57.61555480957031", + "elevation_ft": "1394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Maringá", + "scheduled_service": "no", + "gps_code": "SJRV" + }, + { + "id": "36837", + "ident": "SJRW", + "type": "small_airport", + "name": "PCH Buriti Airport", + "latitude_deg": "-19.341110229492188", + "longitude_deg": "-52.68944549560547", + "elevation_ft": "1581", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Água Clara", + "scheduled_service": "no", + "gps_code": "SJRW" + }, + { + "id": "36838", + "ident": "SJRX", + "type": "heliport", + "name": "Grupamento Aéreo da Polícia Militar Heliport", + "latitude_deg": "-24.034368", + "longitude_deg": "-46.493669", + "elevation_ft": "6", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Praia Grande", + "scheduled_service": "no", + "gps_code": "SJRX", + "local_code": "SP0655" + }, + { + "id": "36839", + "ident": "SJRY", + "type": "heliport", + "name": "Mega Mix Heliport", + "latitude_deg": "-23.535898", + "longitude_deg": "-46.618638", + "elevation_ft": "2526", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJMG", + "local_code": "SP0634", + "keywords": "SJRY" + }, + { + "id": "36840", + "ident": "SJRZ", + "type": "heliport", + "name": "João Domingues de Araújo Helipad", + "latitude_deg": "-23.604645", + "longitude_deg": "-46.694019", + "elevation_ft": "2631", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJRZ", + "local_code": "SP0656" + }, + { + "id": "36841", + "ident": "SJSA", + "type": "small_airport", + "name": "Fazenda Aimorés Airport", + "latitude_deg": "-22.789722442626953", + "longitude_deg": "-54.5977783203125", + "elevation_ft": "1263", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Juti", + "scheduled_service": "no", + "gps_code": "SJSA" + }, + { + "id": "36842", + "ident": "SJSB", + "type": "heliport", + "name": "Ilha Guaíba Heliport", + "latitude_deg": "-23.00666618347168", + "longitude_deg": "-44.03166580200195", + "elevation_ft": "197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Mangaratiba", + "scheduled_service": "no", + "gps_code": "SJSB" + }, + { + "id": "36843", + "ident": "SJSC", + "type": "small_airport", + "name": "Fazenda São Sebastião do Castelo Airport", + "latitude_deg": "-18.66111183166504", + "longitude_deg": "-57.6238899230957", + "elevation_ft": "358", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJSC" + }, + { + "id": "36844", + "ident": "SJSD", + "type": "small_airport", + "name": "Fazenda São Bento Airport", + "latitude_deg": "-21.071248", + "longitude_deg": "-55.123229", + "elevation_ft": "1752", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Sidrolândia", + "scheduled_service": "no", + "gps_code": "SIEB", + "local_code": "MS0072", + "keywords": "SJSD" + }, + { + "id": "36845", + "ident": "SJSE", + "type": "small_airport", + "name": "Serabi Airport", + "latitude_deg": "-6.3197221755981445", + "longitude_deg": "-55.79499816894531", + "elevation_ft": "1017", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SJSE" + }, + { + "id": "36846", + "ident": "SJSF", + "type": "small_airport", + "name": "Agropecuária Barrinha Airport", + "latitude_deg": "-19.831655", + "longitude_deg": "-49.679395", + "elevation_ft": "1310", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "São Francisco Sales", + "scheduled_service": "no", + "keywords": "SJSF" + }, + { + "id": "36847", + "ident": "SJSG", + "type": "heliport", + "name": "Usina Serra Grande Heliport", + "latitude_deg": "-8.978055953979492", + "longitude_deg": "-36.07027816772461", + "elevation_ft": "1175", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "São José Da Lage", + "scheduled_service": "no", + "gps_code": "SJSG" + }, + { + "id": "36848", + "ident": "SJSH", + "type": "small_airport", + "name": "Fly Ville Airport", + "latitude_deg": "-27.372117", + "longitude_deg": "-48.614509", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Governador Celso Ramos", + "scheduled_service": "no", + "gps_code": "SJSH", + "local_code": "SC0032", + "keywords": "Sonhar Airport" + }, + { + "id": "36849", + "ident": "SJSJ", + "type": "small_airport", + "name": "Fazenda São José do Cangalha Airport", + "latitude_deg": "-19.51555633544922", + "longitude_deg": "-52.60472106933594", + "elevation_ft": "1201", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Água Clara", + "scheduled_service": "no", + "gps_code": "SJSJ" + }, + { + "id": "36850", + "ident": "SJSK", + "type": "small_airport", + "name": "Mário Spada Airport", + "latitude_deg": "-17.52833366394043", + "longitude_deg": "-42.383609771728516", + "elevation_ft": "3271", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Minas Novas", + "scheduled_service": "no", + "gps_code": "SJSK" + }, + { + "id": "36851", + "ident": "SJSL", + "type": "small_airport", + "name": "Fazenda Santa Luiza Airport", + "latitude_deg": "-23.350885", + "longitude_deg": "-53.499599", + "elevation_ft": "1162", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Icaraima", + "scheduled_service": "no", + "gps_code": "SWAI", + "local_code": "PR0201", + "keywords": "SJSL" + }, + { + "id": "36852", + "ident": "SJSM", + "type": "small_airport", + "name": "Fazenda Santa Rita Airport", + "latitude_deg": "-19.007837", + "longitude_deg": "-50.951318", + "elevation_ft": "1451", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Itarumã", + "scheduled_service": "no", + "keywords": "SJSM" + }, + { + "id": "36853", + "ident": "SJSN", + "type": "small_airport", + "name": "Fazenda Carvalho Airport", + "latitude_deg": "-14.83666706085205", + "longitude_deg": "-49.36138916015625", + "elevation_ft": "1871", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "São Luiz Do Norte", + "scheduled_service": "no", + "gps_code": "SJSN" + }, + { + "id": "36854", + "ident": "SJSO", + "type": "small_airport", + "name": "Fazenda Divisão II Airport", + "latitude_deg": "-12.953611373901367", + "longitude_deg": "-56.31833267211914", + "elevation_ft": "1358", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Lucas Do Rio Verde", + "scheduled_service": "no", + "gps_code": "SJSO" + }, + { + "id": "36855", + "ident": "SJSQ", + "type": "heliport", + "name": "Palma Heliport", + "latitude_deg": "-16.18833351135254", + "longitude_deg": "-48.075557708740234", + "elevation_ft": "3320", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Luziânia", + "scheduled_service": "no", + "gps_code": "SJSQ" + }, + { + "id": "36856", + "ident": "SJSR", + "type": "small_airport", + "name": "Fazenda Santa Rosa Airport", + "latitude_deg": "-13.99222183227539", + "longitude_deg": "-49.763057708740234", + "elevation_ft": "1044", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Mara Rosa", + "scheduled_service": "no", + "gps_code": "SJSR" + }, + { + "id": "36857", + "ident": "SJSS", + "type": "small_airport", + "name": "Agrifor Airport", + "latitude_deg": "-12.508333206176758", + "longitude_deg": "-55.69527816772461", + "elevation_ft": "1100", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "gps_code": "SJSS" + }, + { + "id": "36858", + "ident": "SJST", + "type": "heliport", + "name": "Umbará Energy Heliport", + "latitude_deg": "-25.604167938232422", + "longitude_deg": "-49.293609619140625", + "elevation_ft": "2798", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Curitiba", + "scheduled_service": "no", + "gps_code": "SJST" + }, + { + "id": "36859", + "ident": "SJSU", + "type": "small_airport", + "name": "Fazenda São Marcus Airport", + "latitude_deg": "-23.564167022705078", + "longitude_deg": "-53.79722213745117", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Vila Alta", + "scheduled_service": "no", + "gps_code": "SJSU" + }, + { + "id": "337969", + "ident": "SJSV", + "type": "small_airport", + "name": "Fazenda Guiné Airport", + "latitude_deg": "-20.248257", + "longitude_deg": "-46.191348", + "elevation_ft": "2495", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "São Roque de Minas", + "scheduled_service": "no", + "gps_code": "SJSV", + "local_code": "MG0132" + }, + { + "id": "36860", + "ident": "SJSW", + "type": "heliport", + "name": "Natal Mar Heliport", + "latitude_deg": "-5.8652777671813965", + "longitude_deg": "-35.18027877807617", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Natal", + "scheduled_service": "no", + "gps_code": "SJSW" + }, + { + "id": "36861", + "ident": "SJSY", + "type": "heliport", + "name": "Resgate Região Oceânica Heliport", + "latitude_deg": "-22.938888549804688", + "longitude_deg": "-43.06083297729492", + "elevation_ft": "56", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Niterói", + "scheduled_service": "no", + "gps_code": "SJSY" + }, + { + "id": "36862", + "ident": "SJSZ", + "type": "heliport", + "name": "Usina Mundial Heliport", + "latitude_deg": "-21.19527816772461", + "longitude_deg": "-51.21833419799805", + "elevation_ft": "1214", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mirandópolis", + "scheduled_service": "no", + "gps_code": "SJSZ" + }, + { + "id": "36863", + "ident": "SJTA", + "type": "small_airport", + "name": "Cristal Airport", + "latitude_deg": "-22.18166732788086", + "longitude_deg": "-50.49250030517578", + "elevation_ft": "1355", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Borá", + "scheduled_service": "no", + "gps_code": "SJTA" + }, + { + "id": "36864", + "ident": "SJTB", + "type": "small_airport", + "name": "Fazenda Buriti Airport", + "latitude_deg": "-15.46500015258789", + "longitude_deg": "-55.622501373291016", + "elevation_ft": "2451", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Chapada Dos Guimarães", + "scheduled_service": "no", + "gps_code": "SJTB" + }, + { + "id": "32305", + "ident": "SJTC", + "type": "medium_airport", + "name": "Bauru/Arealva–Moussa Nakhal Tobias State Airport", + "latitude_deg": "-22.160755", + "longitude_deg": "-49.070325", + "elevation_ft": "1962", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Bauru", + "scheduled_service": "yes", + "gps_code": "SBAE", + "iata_code": "JTC", + "local_code": "SP0010", + "home_link": "http://www.daesp.sp.gov.br/aeroporto-estadual-de-bauru-arealva-moussa-nakhal-tobias/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bauru-Arealva_Airport", + "keywords": "SJCT" + }, + { + "id": "36865", + "ident": "SJTD", + "type": "heliport", + "name": "Plaza JK Heliport", + "latitude_deg": "-23.59055519104004", + "longitude_deg": "-46.684444427490234", + "elevation_ft": "2618", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJTD" + }, + { + "id": "36866", + "ident": "SJTE", + "type": "heliport", + "name": "Praia do Algodão Heliport", + "latitude_deg": "-22.991111755371094", + "longitude_deg": "-44.42277908325195", + "elevation_ft": "69", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SJTE" + }, + { + "id": "36867", + "ident": "SJTF", + "type": "small_airport", + "name": "Fazenda Mequens Airport", + "latitude_deg": "-13.061944007873535", + "longitude_deg": "-62.25749969482422", + "elevation_ft": "552", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Alta Floresta D`Oeste", + "scheduled_service": "no", + "gps_code": "SJTF" + }, + { + "id": "36868", + "ident": "SJTG", + "type": "small_airport", + "name": "Fazenda Calcário Tangará Airport", + "latitude_deg": "-14.450278282165527", + "longitude_deg": "-57.80055618286133", + "elevation_ft": "1831", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tangará Da Serra", + "scheduled_service": "no", + "gps_code": "SJTG" + }, + { + "id": "337978", + "ident": "SJTH", + "type": "small_airport", + "name": "Fazenda Pôr do Sol", + "latitude_deg": "-16.249545", + "longitude_deg": "-47.37075", + "elevation_ft": "2963", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Paraúna", + "scheduled_service": "no", + "gps_code": "SJTH", + "local_code": "GO0288" + }, + { + "id": "36869", + "ident": "SJTI", + "type": "small_airport", + "name": "Fazenda Iapó Airport", + "latitude_deg": "-24.52777862548828", + "longitude_deg": "-50.3658332824707", + "elevation_ft": "2700", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Tibagi", + "scheduled_service": "no", + "gps_code": "SJTI" + }, + { + "id": "36871", + "ident": "SJTK", + "type": "small_airport", + "name": "Ecofly Airport", + "latitude_deg": "-22.29694366455078", + "longitude_deg": "-48.120277404785156", + "elevation_ft": "2129", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Brotas", + "scheduled_service": "no", + "gps_code": "SJTK" + }, + { + "id": "36872", + "ident": "SJTL", + "type": "small_airport", + "name": "Aero Agrícola Gaivota Airport", + "latitude_deg": "-22.97861099243164", + "longitude_deg": "-51.54861068725586", + "elevation_ft": "1821", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Jaguapitã", + "scheduled_service": "no", + "gps_code": "SJTL" + }, + { + "id": "36873", + "ident": "SJTM", + "type": "small_airport", + "name": "Santa Cecília Airport", + "latitude_deg": "-20.88777732849121", + "longitude_deg": "-50.98833465576172", + "elevation_ft": "1260", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mirandópolis", + "scheduled_service": "no", + "gps_code": "SJTM" + }, + { + "id": "36874", + "ident": "SJTN", + "type": "small_airport", + "name": "Fazenda Alvorada do Caxingó Airport", + "latitude_deg": "-13.375", + "longitude_deg": "-46.897499084472656", + "elevation_ft": "1742", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Monte Alegre De Goiás", + "scheduled_service": "no", + "gps_code": "SJTN" + }, + { + "id": "36875", + "ident": "SJTO", + "type": "small_airport", + "name": "São José Airport", + "latitude_deg": "-14.143889427185059", + "longitude_deg": "-57.780555725097656", + "elevation_ft": "2083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo Do Parecis", + "scheduled_service": "no", + "gps_code": "SJTO" + }, + { + "id": "36876", + "ident": "SJTP", + "type": "small_airport", + "name": "Tapurah Airport", + "latitude_deg": "-12.722894", + "longitude_deg": "-56.502102", + "elevation_ft": "1260", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tapurá", + "scheduled_service": "no", + "gps_code": "SJTP", + "local_code": "MT0221", + "keywords": "Boa Safra" + }, + { + "id": "36877", + "ident": "SJTQ", + "type": "small_airport", + "name": "Fazenda Santa tereza Airport", + "latitude_deg": "-22.36888885498047", + "longitude_deg": "-43.25138854980469", + "elevation_ft": "2087", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Petrópolis", + "scheduled_service": "no", + "gps_code": "SJTQ" + }, + { + "id": "36878", + "ident": "SJTR", + "type": "heliport", + "name": "Angélica IV Heliport", + "latitude_deg": "-23.55388832092285", + "longitude_deg": "-46.662776947021484", + "elevation_ft": "2933", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJTR" + }, + { + "id": "36879", + "ident": "SJTS", + "type": "small_airport", + "name": "Terra Santa Airport", + "latitude_deg": "-2.0727779865264893", + "longitude_deg": "-56.488887786865234", + "elevation_ft": "83", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Terra Santa", + "scheduled_service": "no", + "gps_code": "SJTS" + }, + { + "id": "36880", + "ident": "SJTT", + "type": "small_airport", + "name": "Fazenda Lagoa do Barro Airport", + "latitude_deg": "-13.238611221313477", + "longitude_deg": "-49.709442138671875", + "elevation_ft": "926", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Novo Planalto", + "scheduled_service": "no", + "gps_code": "SJTT" + }, + { + "id": "36881", + "ident": "SJTU", + "type": "small_airport", + "name": "Fazenda Tucano Airport", + "latitude_deg": "-13.582777976989746", + "longitude_deg": "-57.559444427490234", + "elevation_ft": "1765", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo Do Parecis", + "scheduled_service": "no", + "gps_code": "SJTU" + }, + { + "id": "36882", + "ident": "SJTV", + "type": "small_airport", + "name": "Fazenda Guerra Airport", + "latitude_deg": "-11.474166870117188", + "longitude_deg": "-57.921112060546875", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juara", + "scheduled_service": "no", + "gps_code": "SJTV" + }, + { + "id": "36883", + "ident": "SJTW", + "type": "heliport", + "name": "Centauro Heliport", + "latitude_deg": "-7.818056106567383", + "longitude_deg": "-34.91777801513672", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Igarassu", + "scheduled_service": "no", + "gps_code": "SJTW" + }, + { + "id": "36884", + "ident": "SJTX", + "type": "heliport", + "name": "Fazenda Nelore Heliport", + "latitude_deg": "-3.731389045715332", + "longitude_deg": "-45.27333450317383", + "elevation_ft": "182", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Bela Vista Do Maranhão", + "scheduled_service": "no", + "gps_code": "SJTX" + }, + { + "id": "36885", + "ident": "SJTY", + "type": "heliport", + "name": "Gran Meliá Mofarrej Heliport", + "latitude_deg": "-23.564167022705078", + "longitude_deg": "-46.65583419799805", + "elevation_ft": "2969", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJTY" + }, + { + "id": "36886", + "ident": "SJTZ", + "type": "small_airport", + "name": "Dom Eliseu Airport", + "latitude_deg": "-4.3027777671813965", + "longitude_deg": "-47.581668853759766", + "elevation_ft": "800", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Dom Eliseu", + "scheduled_service": "no", + "gps_code": "SJTZ" + }, + { + "id": "36887", + "ident": "SJUA", + "type": "small_airport", + "name": "Fazenda Ipanema Airport", + "latitude_deg": "-13.621507", + "longitude_deg": "-46.1379", + "elevation_ft": "3101", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Correntina", + "scheduled_service": "no", + "gps_code": "SIPH", + "local_code": "BA0093", + "keywords": "SJUA" + }, + { + "id": "36888", + "ident": "SJUB", + "type": "small_airport", + "name": "Fazenda Rio Azul Airport", + "latitude_deg": "-15.1833333969", + "longitude_deg": "-60.221668243399996", + "elevation_ft": "896", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SJUB" + }, + { + "id": "36889", + "ident": "SJUC", + "type": "small_airport", + "name": "Jardim Paraíso Airport", + "latitude_deg": "-12.108332633972168", + "longitude_deg": "-45.77750015258789", + "elevation_ft": "2395", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Luís Eduardo Magalhães", + "scheduled_service": "no", + "gps_code": "SJUC" + }, + { + "id": "36890", + "ident": "SJUD", + "type": "small_airport", + "name": "Usina Dourados Airport", + "latitude_deg": "-21.990278244018555", + "longitude_deg": "-55.11305618286133", + "elevation_ft": "1420", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Dourados", + "scheduled_service": "no", + "gps_code": "SJUD" + }, + { + "id": "36891", + "ident": "SJUE", + "type": "heliport", + "name": "Ecological Center Heliport", + "latitude_deg": "-23.53472137451172", + "longitude_deg": "-46.87472152709961", + "elevation_ft": "2575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SJUE" + }, + { + "id": "36892", + "ident": "SJUF", + "type": "heliport", + "name": "Silvestre Heliport", + "latitude_deg": "0.8561109900474548", + "longitude_deg": "-51.88833236694336", + "elevation_ft": "446", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Pedra Branca Do Amapari", + "scheduled_service": "no", + "gps_code": "SJUF" + }, + { + "id": "338005", + "ident": "SJUG", + "type": "heliport", + "name": "SPEL Embalagens Helipad", + "latitude_deg": "-23.059775", + "longitude_deg": "-46.652976", + "elevation_ft": "2638", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Atibaia", + "scheduled_service": "no", + "gps_code": "SJUG", + "local_code": "SP0666" + }, + { + "id": "36893", + "ident": "SJUH", + "type": "small_airport", + "name": "Fazenda Lagoinha Airport", + "latitude_deg": "-19.238611221313477", + "longitude_deg": "-47.497779846191406", + "elevation_ft": "3346", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Pedrinópolis", + "scheduled_service": "no", + "gps_code": "SJUH" + }, + { + "id": "36894", + "ident": "SJUI", + "type": "heliport", + "name": "Fazenda São Francisco Heliport", + "latitude_deg": "-22.382795", + "longitude_deg": "-47.008821", + "elevation_ft": "2149", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mogi Mirim", + "scheduled_service": "no", + "gps_code": "SWFS", + "local_code": "SP0803", + "keywords": "SJUI" + }, + { + "id": "36895", + "ident": "SJUJ", + "type": "small_airport", + "name": "Fazenda Juína Airport", + "latitude_deg": "-13.440685", + "longitude_deg": "-59.256831", + "elevation_ft": "1900", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campos De Júlio", + "scheduled_service": "no", + "gps_code": "SJJH", + "local_code": "MT0184", + "keywords": "SJUJ" + }, + { + "id": "36896", + "ident": "SJUK", + "type": "closed", + "name": "Fazenda Capitão Verdi Airport", + "latitude_deg": "-14.36", + "longitude_deg": "-57.917778", + "elevation_ft": "2435", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tangará da Serra", + "scheduled_service": "no", + "keywords": "SJUK" + }, + { + "id": "36897", + "ident": "SJUL", + "type": "small_airport", + "name": "Fazenda Rio Pardo Airport", + "latitude_deg": "-22.877777099609375", + "longitude_deg": "-49.037776947021484", + "elevation_ft": "2257", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Iaras", + "scheduled_service": "no", + "gps_code": "SJUL" + }, + { + "id": "36898", + "ident": "SJUM", + "type": "closed", + "name": "Umuarama Heliport", + "latitude_deg": "-9.742737", + "longitude_deg": "-35.819442", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Marechal Deodoro", + "scheduled_service": "no", + "keywords": "SJYZ, SJUM" + }, + { + "id": "36899", + "ident": "SJUN", + "type": "heliport", + "name": "Unimed - Nordeste Helipad", + "latitude_deg": "-29.164754", + "longitude_deg": "-51.200806", + "elevation_ft": "2534", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Caxias Do Sul", + "scheduled_service": "no", + "gps_code": "SJWN", + "local_code": "RS0110", + "keywords": "SJUN" + }, + { + "id": "36900", + "ident": "SJUO", + "type": "heliport", + "name": "Forest Trade Heliport", + "latitude_deg": "-23.579444885253906", + "longitude_deg": "-46.66166687011719", + "elevation_ft": "2526", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJUO" + }, + { + "id": "36901", + "ident": "SJUP", + "type": "heliport", + "name": "Braskem Heliport", + "latitude_deg": "-12.679444313049316", + "longitude_deg": "-38.321109771728516", + "elevation_ft": "223", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Camaçari", + "scheduled_service": "no", + "gps_code": "SJUP" + }, + { + "id": "36902", + "ident": "SJUQ", + "type": "small_airport", + "name": "Fazenda Vista Alegre Airport", + "latitude_deg": "-19.739166259765625", + "longitude_deg": "-52.606109619140625", + "elevation_ft": "1349", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Três Lagoas", + "scheduled_service": "no", + "gps_code": "SJUQ" + }, + { + "id": "338285", + "ident": "SJUR", + "type": "small_airport", + "name": "Fazenda Reunidas Airport", + "latitude_deg": "-13.483526", + "longitude_deg": "-54.103724", + "elevation_ft": "1575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Paranatinga", + "scheduled_service": "no", + "gps_code": "SJUR", + "local_code": "MT0227" + }, + { + "id": "36903", + "ident": "SJUS", + "type": "small_airport", + "name": "Fazenda Acará Airport", + "latitude_deg": "-15.074443817138672", + "longitude_deg": "-51.15888977050781", + "elevation_ft": "804", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Britânia", + "scheduled_service": "no", + "gps_code": "SJUS" + }, + { + "id": "36904", + "ident": "SJUT", + "type": "heliport", + "name": "Cimento Rio Branco Heliport", + "latitude_deg": "-25.185277938842773", + "longitude_deg": "-49.31666564941406", + "elevation_ft": "3066", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Rio Branco Do Sul", + "scheduled_service": "no", + "gps_code": "SJUT" + }, + { + "id": "36905", + "ident": "SJUU", + "type": "small_airport", + "name": "Fazenda Paraná Airport", + "latitude_deg": "-14.028056144714355", + "longitude_deg": "-46.87111282348633", + "elevation_ft": "1450", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Nova Roma", + "scheduled_service": "no", + "gps_code": "SJUU" + }, + { + "id": "36906", + "ident": "SJUV", + "type": "heliport", + "name": "A Universal Heliport", + "latitude_deg": "-23.517221450805664", + "longitude_deg": "-46.627220153808594", + "elevation_ft": "2507", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJUV" + }, + { + "id": "36907", + "ident": "SJUW", + "type": "heliport", + "name": "CPFL Sede Heliport", + "latitude_deg": "-22.857778549194336", + "longitude_deg": "-47.04499816894531", + "elevation_ft": "2350", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SJUW" + }, + { + "id": "36908", + "ident": "SJUX", + "type": "heliport", + "name": "MBP - Metalúrgica Barra do Piraí Heliport", + "latitude_deg": "-22.476388931274414", + "longitude_deg": "-43.85166549682617", + "elevation_ft": "1182", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Barra Do Piraí", + "scheduled_service": "no", + "gps_code": "SJUX" + }, + { + "id": "36909", + "ident": "SJUY", + "type": "heliport", + "name": "Sinal Empreendimentos Heliport", + "latitude_deg": "-22.488332748413086", + "longitude_deg": "-41.934444427490234", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio Das Ostras", + "scheduled_service": "no", + "gps_code": "SJUY" + }, + { + "id": "36910", + "ident": "SJUZ", + "type": "heliport", + "name": "Santo Aleixo Heliport", + "latitude_deg": "-22.920833587646484", + "longitude_deg": "-46.79194259643555", + "elevation_ft": "3006", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Morungaba", + "scheduled_service": "no", + "gps_code": "SJUZ" + }, + { + "id": "36911", + "ident": "SJVA", + "type": "heliport", + "name": "DJY Heliport", + "latitude_deg": "-23.597434", + "longitude_deg": "-46.685495", + "elevation_ft": "2603", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDFM", + "local_code": "SDFM", + "keywords": "SJVA" + }, + { + "id": "36912", + "ident": "SJVB", + "type": "small_airport", + "name": "Fazenda Sagrado Coração de Jesus Airport", + "latitude_deg": "-15.0916671753", + "longitude_deg": "-60.121665954600005", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SJVB" + }, + { + "id": "36913", + "ident": "SJVC", + "type": "small_airport", + "name": "Ibiporanga da Felicidade Airport", + "latitude_deg": "-20.45916748046875", + "longitude_deg": "-49.53361129760742", + "elevation_ft": "1779", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Tanabi", + "scheduled_service": "no", + "gps_code": "SJVC" + }, + { + "id": "36914", + "ident": "SJVD", + "type": "small_airport", + "name": "Nazaré da Felicidade Airport", + "latitude_deg": "-17.854721069335938", + "longitude_deg": "-45.24055480957031", + "elevation_ft": "2550", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Buritizeiro", + "scheduled_service": "no", + "gps_code": "SJVD" + }, + { + "id": "36915", + "ident": "SJVE", + "type": "heliport", + "name": "VR Campos do Jordão Heliport", + "latitude_deg": "-22.74333381652832", + "longitude_deg": "-45.544166564941406", + "elevation_ft": "5673", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campos Do Jordão", + "scheduled_service": "no", + "gps_code": "SJVE" + }, + { + "id": "36916", + "ident": "SJVF", + "type": "small_airport", + "name": "Fazenda Colorado Airport", + "latitude_deg": "-18.817777633666992", + "longitude_deg": "-53.8650016784668", + "elevation_ft": "1785", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Figueirão", + "scheduled_service": "no", + "gps_code": "SJVF" + }, + { + "id": "36917", + "ident": "SJVG", + "type": "heliport", + "name": "Jacarecica Heliport", + "latitude_deg": "-9.604722023010254", + "longitude_deg": "-35.67972183227539", + "elevation_ft": "1", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Maceió", + "scheduled_service": "no", + "gps_code": "SJVG" + }, + { + "id": "36918", + "ident": "SJVH", + "type": "heliport", + "name": "Condomínio Edifício Mansão Macedo Heliport", + "latitude_deg": "-3.72944402695", + "longitude_deg": "-38.5011100769", + "elevation_ft": "276", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SJVH" + }, + { + "id": "36919", + "ident": "SJVI", + "type": "heliport", + "name": "Zona 01 Heliport", + "latitude_deg": "-27.142204", + "longitude_deg": "-48.591967", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Itapema", + "scheduled_service": "no", + "gps_code": "SNNZ", + "local_code": "SC0079", + "keywords": "SJVI, Viana II" + }, + { + "id": "36920", + "ident": "SJVJ", + "type": "heliport", + "name": "Chácara da Capela Heliport", + "latitude_deg": "-23.12555694580078", + "longitude_deg": "-47.70888900756836", + "elevation_ft": "1676", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Tietê", + "scheduled_service": "no", + "gps_code": "SJVJ" + }, + { + "id": "345129", + "ident": "SJVK", + "type": "small_airport", + "name": "Pian Airstrip", + "latitude_deg": "-31.079916", + "longitude_deg": "-51.895627", + "elevation_ft": "72", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "São Lourenço do Sul", + "scheduled_service": "no", + "gps_code": "SJVK", + "local_code": "RS0166" + }, + { + "id": "36921", + "ident": "SJVL", + "type": "small_airport", + "name": "Fazenda Cachoeirinha Airport", + "latitude_deg": "-19.359251", + "longitude_deg": "-47.129459", + "elevation_ft": "3281", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Perdizes", + "scheduled_service": "no", + "gps_code": "SIOK", + "local_code": "MG0106", + "keywords": "SJVL" + }, + { + "id": "36922", + "ident": "SJVM", + "type": "small_airport", + "name": "Estância Califórnia Airport", + "latitude_deg": "-9.89194393157959", + "longitude_deg": "-56.12944412231445", + "elevation_ft": "945", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alta Floresta", + "scheduled_service": "no", + "gps_code": "SJVM" + }, + { + "id": "36923", + "ident": "SJVN", + "type": "small_airport", + "name": "Fazenda do Limão Airport", + "latitude_deg": "0.28916698694229126", + "longitude_deg": "-53.869998931884766", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Almeirim", + "scheduled_service": "no", + "gps_code": "SJVN" + }, + { + "id": "36924", + "ident": "SJVO", + "type": "small_airport", + "name": "Aragarças Airport", + "latitude_deg": "-15.8994", + "longitude_deg": "-52.2411", + "elevation_ft": "1061", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Aragarças", + "scheduled_service": "no", + "gps_code": "SJVO", + "iata_code": "ARS", + "keywords": "SWAC" + }, + { + "id": "36925", + "ident": "SJVP", + "type": "small_airport", + "name": "Vila Pitinga Airport", + "latitude_deg": "-0.799166977406", + "longitude_deg": "-60.0838890076", + "elevation_ft": "876", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Presidente Figueiredo", + "scheduled_service": "no", + "gps_code": "SJVP" + }, + { + "id": "36926", + "ident": "SJVQ", + "type": "small_airport", + "name": "Triálcool Airport", + "latitude_deg": "-18.88944435119629", + "longitude_deg": "-49.286109924316406", + "elevation_ft": "2231", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Canápolis", + "scheduled_service": "no", + "gps_code": "SJVQ" + }, + { + "id": "36927", + "ident": "SJVR", + "type": "small_airport", + "name": "Fazenda São Joaquim Airport", + "latitude_deg": "-21.491943359375", + "longitude_deg": "-56.487220764160156", + "elevation_ft": "1181", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Jardim", + "scheduled_service": "no", + "gps_code": "SJVR" + }, + { + "id": "36928", + "ident": "SJVS", + "type": "small_airport", + "name": "Vale do Paranaíba Airport", + "latitude_deg": "-18.70305633544922", + "longitude_deg": "-49.68694305419922", + "elevation_ft": "1739", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Capinópolis", + "scheduled_service": "no", + "gps_code": "SJVS" + }, + { + "id": "36929", + "ident": "SJVT", + "type": "heliport", + "name": "Rio Negro Heliport", + "latitude_deg": "-21.910653", + "longitude_deg": "-42.266684", + "elevation_ft": "781", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Cantagalo", + "scheduled_service": "no", + "gps_code": "SNRT", + "local_code": "RJ0134", + "keywords": "SJVT, Cimento Rio Negro-Cantagalo" + }, + { + "id": "36930", + "ident": "SJVU", + "type": "heliport", + "name": "Hospital Memorial São José Heliport", + "latitude_deg": "-8.065278053283691", + "longitude_deg": "-34.896942138671875", + "elevation_ft": "180", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Recife", + "scheduled_service": "no", + "gps_code": "SJVU" + }, + { + "id": "36931", + "ident": "SJVV", + "type": "small_airport", + "name": "Fazenda Catelani Airport", + "latitude_deg": "-13.473333358764648", + "longitude_deg": "-48.45916748046875", + "elevation_ft": "2461", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Minaçu", + "scheduled_service": "no", + "gps_code": "SJVV" + }, + { + "id": "36932", + "ident": "SJVW", + "type": "small_airport", + "name": "Campos Gerais Airport", + "latitude_deg": "-8.51694393157959", + "longitude_deg": "-46.746944427490234", + "elevation_ft": "1706", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Balsas", + "scheduled_service": "no", + "gps_code": "SJVW" + }, + { + "id": "36933", + "ident": "SJVX", + "type": "small_airport", + "name": "Pagrisa Airport", + "latitude_deg": "-3.7005560398101807", + "longitude_deg": "-47.76333236694336", + "elevation_ft": "453", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Ulianópolis", + "scheduled_service": "no", + "gps_code": "SJVX" + }, + { + "id": "36934", + "ident": "SJVY", + "type": "small_airport", + "name": "Haras Bela Vista Airport", + "latitude_deg": "-5.5416669845581055", + "longitude_deg": "-47.502498626708984", + "elevation_ft": "335", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "São Miguel Do Tocantins", + "scheduled_service": "no", + "gps_code": "SJVY" + }, + { + "id": "36935", + "ident": "SJVZ", + "type": "small_airport", + "name": "Fazenda São Paulo Airport", + "latitude_deg": "-13.610278129577637", + "longitude_deg": "-58.56916809082031", + "elevation_ft": "2012", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SJVZ" + }, + { + "id": "36936", + "ident": "SJWA", + "type": "small_airport", + "name": "Usina Maracaju Airport", + "latitude_deg": "-21.345277786254883", + "longitude_deg": "-55.43333435058594", + "elevation_ft": "1509", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Maracaju", + "scheduled_service": "no", + "gps_code": "SJWA" + }, + { + "id": "36937", + "ident": "SJWB", + "type": "small_airport", + "name": "Pouso Alto Airport", + "latitude_deg": "-17.457778930664062", + "longitude_deg": "-48.983055114746094", + "elevation_ft": "2428", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Piracanjuba", + "scheduled_service": "no", + "gps_code": "SJWB" + }, + { + "id": "36938", + "ident": "SJWC", + "type": "small_airport", + "name": "Fazenda Nossa Senhora da Muxima Airport", + "latitude_deg": "-19.587221", + "longitude_deg": "-52.951942", + "elevation_ft": "1532", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Água Clara", + "scheduled_service": "no", + "keywords": "SJWC" + }, + { + "id": "36939", + "ident": "SJWD", + "type": "small_airport", + "name": "Usina Passa Tempo Airport", + "latitude_deg": "-21.507221221923828", + "longitude_deg": "-54.7158317565918", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Brilhante", + "scheduled_service": "no", + "gps_code": "SJWD" + }, + { + "id": "36940", + "ident": "SJWE", + "type": "small_airport", + "name": "Fazenda Araribá Airport", + "latitude_deg": "-13.404722213745117", + "longitude_deg": "-52.848331451416016", + "elevation_ft": "1279", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Canarana", + "scheduled_service": "no", + "gps_code": "SJWE" + }, + { + "id": "36941", + "ident": "SJWF", + "type": "heliport", + "name": "Mima Heliport", + "latitude_deg": "-21.6472225189209", + "longitude_deg": "-41.02360916137695", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "São João Da Barra", + "scheduled_service": "no", + "gps_code": "SJWF" + }, + { + "id": "36942", + "ident": "SJWG", + "type": "small_airport", + "name": "Itagro Airport", + "latitude_deg": "-29.780277252197266", + "longitude_deg": "-55.69722366333008", + "elevation_ft": "384", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Alegrete", + "scheduled_service": "no", + "gps_code": "SJWG" + }, + { + "id": "36943", + "ident": "SJWH", + "type": "small_airport", + "name": "Fazenda Santa Inês Airport", + "latitude_deg": "-14.651110649108887", + "longitude_deg": "-55.383888244628906", + "elevation_ft": "1330", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Brasilândia", + "scheduled_service": "no", + "gps_code": "SJWH" + }, + { + "id": "36944", + "ident": "SJWI", + "type": "small_airport", + "name": "Fazenda Flor Airport", + "latitude_deg": "-21.496944427490234", + "longitude_deg": "-53.74972152709961", + "elevation_ft": "1420", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "gps_code": "SJWI" + }, + { + "id": "36945", + "ident": "SJWJ", + "type": "heliport", + "name": "HPE Helipad", + "latitude_deg": "-23.669927", + "longitude_deg": "-46.703181", + "elevation_ft": "2424", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJWJ", + "local_code": "SP0673" + }, + { + "id": "36946", + "ident": "SJWK", + "type": "heliport", + "name": "Fiec Heliport", + "latitude_deg": "-3.7394440174102783", + "longitude_deg": "-38.508888244628906", + "elevation_ft": "230", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SJWK" + }, + { + "id": "36947", + "ident": "SJWL", + "type": "small_airport", + "name": "Boca da Mata Airport", + "latitude_deg": "-13.574443817138672", + "longitude_deg": "-53.983055114746094", + "elevation_ft": "1804", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Gaúcha Do Norte", + "scheduled_service": "no", + "gps_code": "SJWL" + }, + { + "id": "36948", + "ident": "SJWM", + "type": "small_airport", + "name": "Fazenda Sanga Funda Airport", + "latitude_deg": "-13.066666603088379", + "longitude_deg": "-58.705833435058594", + "elevation_ft": "1949", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SJWM" + }, + { + "id": "36949", + "ident": "SJWN", + "type": "small_airport", + "name": "Fazenda Santa Dulcina Airport", + "latitude_deg": "-23.549999237060547", + "longitude_deg": "-49.25", + "elevation_ft": "2096", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Taquarituba", + "scheduled_service": "no", + "gps_code": "SJWN" + }, + { + "id": "36950", + "ident": "SJWO", + "type": "small_airport", + "name": "Terra Santa Airport", + "latitude_deg": "-14.806943893432617", + "longitude_deg": "-57.973609924316406", + "elevation_ft": "699", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra Do Bugres", + "scheduled_service": "no", + "gps_code": "SJWO" + }, + { + "id": "36951", + "ident": "SJWP", + "type": "small_airport", + "name": "Warpol Airport", + "latitude_deg": "-12.619443893432617", + "longitude_deg": "-45.92361068725586", + "elevation_ft": "2650", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SJWP" + }, + { + "id": "36952", + "ident": "SJWQ", + "type": "small_airport", + "name": "Aeroclube de Birigui - CMTE Munir Djabak Airport", + "latitude_deg": "-21.21655", + "longitude_deg": "-50.305613", + "elevation_ft": "1338", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Birigui", + "scheduled_service": "no", + "gps_code": "SJWQ", + "local_code": "SP0221", + "keywords": "José Doná Airport, Comandante Munir Djabak" + }, + { + "id": "36953", + "ident": "SJWR", + "type": "heliport", + "name": "Heligalo Heliport", + "latitude_deg": "-23.03416633605957", + "longitude_deg": "-44.20166778564453", + "elevation_ft": "344", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SJWR" + }, + { + "id": "36954", + "ident": "SJWS", + "type": "heliport", + "name": "Praia de Olaria Heliport", + "latitude_deg": "-23.766666412353516", + "longitude_deg": "-45.405277252197266", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Sebastião", + "scheduled_service": "no", + "gps_code": "SJWS" + }, + { + "id": "36955", + "ident": "SJWT", + "type": "small_airport", + "name": "Fazenda Sucuri Airport", + "latitude_deg": "-17.395832061767578", + "longitude_deg": "-54.75972366333008", + "elevation_ft": "1788", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Itiquira", + "scheduled_service": "no", + "gps_code": "SJWT" + }, + { + "id": "36956", + "ident": "SJWU", + "type": "small_airport", + "name": "Fazenda Ideal Airport", + "latitude_deg": "-18.667221069335938", + "longitude_deg": "-40.33277893066406", + "elevation_ft": "471", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Nova Venécia", + "scheduled_service": "no", + "gps_code": "SJWU" + }, + { + "id": "36957", + "ident": "SJWV", + "type": "small_airport", + "name": "Fazenda São Judas Airport", + "latitude_deg": "-13.378055572509766", + "longitude_deg": "-50.424442291259766", + "elevation_ft": "1030", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "São Miguel Do Araguaia", + "scheduled_service": "no", + "gps_code": "SJWV" + }, + { + "id": "36958", + "ident": "SJWW", + "type": "small_airport", + "name": "Fazenda Cachoeira Preta Airport", + "latitude_deg": "-20.02138900756836", + "longitude_deg": "-53.21611022949219", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Água Clara", + "scheduled_service": "no", + "gps_code": "SJWW" + }, + { + "id": "36959", + "ident": "SJWX", + "type": "small_airport", + "name": "Rio Alegre Airport", + "latitude_deg": "-22.575000762939453", + "longitude_deg": "-52.503055572509766", + "elevation_ft": "981", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Euclides Da Cunha Paulista", + "scheduled_service": "no", + "gps_code": "SJWX" + }, + { + "id": "36960", + "ident": "SJWY", + "type": "heliport", + "name": "Parkway Heliport", + "latitude_deg": "-15.911695", + "longitude_deg": "-47.971782", + "elevation_ft": "3724", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SJWY" + }, + { + "id": "36961", + "ident": "SJWZ", + "type": "heliport", + "name": "E-Tower Helipad", + "latitude_deg": "-23.593762", + "longitude_deg": "-46.690398", + "elevation_ft": "2861", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJWZ", + "local_code": "SP0676" + }, + { + "id": "36962", + "ident": "SJXA", + "type": "small_airport", + "name": "Aeromis Airport", + "latitude_deg": "-31.292221069335938", + "longitude_deg": "-54.15611267089844", + "elevation_ft": "886", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Bagé", + "scheduled_service": "no", + "gps_code": "SJXA" + }, + { + "id": "36963", + "ident": "SJXB", + "type": "small_airport", + "name": "Aquapey Airport", + "latitude_deg": "-15.762033", + "longitude_deg": "-58.804064", + "elevation_ft": "600", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Esperdião", + "scheduled_service": "no", + "gps_code": "SNEY", + "local_code": "MT0248", + "keywords": "SJXB" + }, + { + "id": "41682", + "ident": "SJXC", + "type": "small_airport", + "name": "Usina Santa Cruz Airport", + "latitude_deg": "-16.183056", + "longitude_deg": "-39.358055", + "elevation_ft": "410", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Santa Cruz Cabrália", + "scheduled_service": "no", + "gps_code": "SJXC" + }, + { + "id": "36964", + "ident": "SJXD", + "type": "heliport", + "name": "Escarpas Heliport", + "latitude_deg": "-20.640277862548828", + "longitude_deg": "-46.00361251831055", + "elevation_ft": "2602", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Capitólio", + "scheduled_service": "no", + "gps_code": "SJXD" + }, + { + "id": "36965", + "ident": "SJXE", + "type": "heliport", + "name": "Sinal Construtora Heliport", + "latitude_deg": "-22.683610916137695", + "longitude_deg": "-42.369720458984375", + "elevation_ft": "68", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Silva Jardim", + "scheduled_service": "no", + "gps_code": "SJXE" + }, + { + "id": "36966", + "ident": "SJXF", + "type": "heliport", + "name": "Aloiso Ximenes de Farias Junior Heliport", + "latitude_deg": "-3.2230560779571533", + "longitude_deg": "-39.25555419921875", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Trairi", + "scheduled_service": "no", + "gps_code": "SJXF" + }, + { + "id": "36967", + "ident": "SJXG", + "type": "small_airport", + "name": "Fazenda Agroplan Airport", + "latitude_deg": "-11.662765", + "longitude_deg": "-52.861164", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Querência", + "scheduled_service": "no", + "gps_code": "SWEH", + "local_code": "MT0334", + "keywords": "SJXG" + }, + { + "id": "36968", + "ident": "SJXH", + "type": "small_airport", + "name": "Águas Frias Airport", + "latitude_deg": "-27.216943740844727", + "longitude_deg": "-53.272499084472656", + "elevation_ft": "1135", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Iraí", + "scheduled_service": "no", + "gps_code": "SJXH" + }, + { + "id": "340047", + "ident": "SJXJ", + "type": "small_airport", + "name": "Alimentos Dallas Airport", + "latitude_deg": "-21.454039", + "longitude_deg": "-54.389028", + "elevation_ft": "1404", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Alvorada do Sul", + "scheduled_service": "no", + "gps_code": "SJXJ", + "local_code": "MS0191" + }, + { + "id": "340049", + "ident": "SJXK", + "type": "heliport", + "name": "Eldorado Helipad", + "latitude_deg": "-23.573408", + "longitude_deg": "-46.697742", + "elevation_ft": "2831", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJXK", + "local_code": "SP0677" + }, + { + "id": "338665", + "ident": "SJXL", + "type": "heliport", + "name": "Hospital Unimed Primavera Helipad", + "latitude_deg": "-5.057847", + "longitude_deg": "-42.815899", + "elevation_ft": "249", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Teresina", + "scheduled_service": "no", + "gps_code": "SJXL", + "local_code": "PI0047", + "keywords": "Hospital das Clínicas de Teresina (HCT)" + }, + { + "id": "36969", + "ident": "SJXM", + "type": "small_airport", + "name": "Carolina de Assis Repetto Airport", + "latitude_deg": "-21.730022", + "longitude_deg": "-43.891947", + "elevation_ft": "3452", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Lima Duarte", + "scheduled_service": "no", + "gps_code": "SJXM", + "local_code": "MG0138" + }, + { + "id": "36970", + "ident": "SJXN", + "type": "small_airport", + "name": "Parque Fazenda Bom Futuro Airport", + "latitude_deg": "-17.191389083862305", + "longitude_deg": "-57.03388977050781", + "elevation_ft": "361", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Poconé", + "scheduled_service": "no", + "gps_code": "SJXN" + }, + { + "id": "36971", + "ident": "SJXO", + "type": "heliport", + "name": "HP Padilha Heliport", + "latitude_deg": "-23.038610458374023", + "longitude_deg": "-44.1533317565918", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Mangaratiba", + "scheduled_service": "no", + "gps_code": "SJXO" + }, + { + "id": "36972", + "ident": "SJXP", + "type": "heliport", + "name": "Alice Maria Sampaio Ferreira Heliport", + "latitude_deg": "-23.611173", + "longitude_deg": "-46.694571", + "elevation_ft": "2579", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJXP", + "local_code": "SP0678" + }, + { + "id": "36973", + "ident": "SJXQ", + "type": "heliport", + "name": "Ribeirão Shopping Heliport", + "latitude_deg": "-21.21176", + "longitude_deg": "-47.818122", + "elevation_ft": "2037", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Preto", + "scheduled_service": "no", + "gps_code": "SIBR", + "local_code": "SP0469", + "keywords": "SJXQ" + }, + { + "id": "36974", + "ident": "SJXR", + "type": "heliport", + "name": "B. Cao Viño Heliport", + "latitude_deg": "-24.009943", + "longitude_deg": "-46.417628", + "elevation_ft": "177", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Praia Grande", + "scheduled_service": "no", + "gps_code": "SJXR", + "local_code": "SP0679" + }, + { + "id": "264", + "ident": "SJXS", + "type": "small_airport", + "name": "Veracel Airport", + "latitude_deg": "-16.10444450378418", + "longitude_deg": "-39.363887786865234", + "elevation_ft": "434", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Belmonte", + "scheduled_service": "no", + "gps_code": "SJXS", + "local_code": "SJXS" + }, + { + "id": "36975", + "ident": "SJXT", + "type": "heliport", + "name": "Iguassú Heliport", + "latitude_deg": "-23.121110916099997", + "longitude_deg": "-44.192779541", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SJXT" + }, + { + "id": "36976", + "ident": "SJXU", + "type": "closed", + "name": "Alphaville Gramado Heliport", + "latitude_deg": "-29.383612", + "longitude_deg": "-50.888332", + "elevation_ft": "2684", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Gramado", + "scheduled_service": "no", + "keywords": "SJXU" + }, + { + "id": "36977", + "ident": "SJXV", + "type": "small_airport", + "name": "Fazenda Bela Vista Airport", + "latitude_deg": "-22.931110382080078", + "longitude_deg": "-55.054443359375", + "elevation_ft": "1256", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Amambaí", + "scheduled_service": "no", + "gps_code": "SJXV" + }, + { + "id": "36978", + "ident": "SJXW", + "type": "small_airport", + "name": "Fazenda 3M Airport", + "latitude_deg": "-21.67361068725586", + "longitude_deg": "-54.035831451416016", + "elevation_ft": "1155", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Alvorada Do Sul", + "scheduled_service": "no", + "gps_code": "SJXW" + }, + { + "id": "36979", + "ident": "SJXX", + "type": "small_airport", + "name": "Recreio Airport", + "latitude_deg": "-22.679443359375", + "longitude_deg": "-55.540557861328125", + "elevation_ft": "1968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ponta Porã", + "scheduled_service": "no", + "gps_code": "SJXX" + }, + { + "id": "36980", + "ident": "SJXY", + "type": "heliport", + "name": "Piratas Mall Heliport", + "latitude_deg": "-23.003610610961914", + "longitude_deg": "-44.29916763305664", + "elevation_ft": "6", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SJXY" + }, + { + "id": "36981", + "ident": "SJXZ", + "type": "heliport", + "name": "Namour Heliport", + "latitude_deg": "-23.572779", + "longitude_deg": "-46.641109", + "elevation_ft": "2900", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SJXZ" + }, + { + "id": "36982", + "ident": "SJYA", + "type": "heliport", + "name": "Caraguatá Heliport", + "latitude_deg": "-22.920833587646484", + "longitude_deg": "-42.477500915527344", + "elevation_ft": "162", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Saquarema", + "scheduled_service": "no", + "gps_code": "SJYA" + }, + { + "id": "36983", + "ident": "SJYB", + "type": "heliport", + "name": "Edifício Plaza I Heliport", + "latitude_deg": "-23.61027717590332", + "longitude_deg": "-46.695556640625", + "elevation_ft": "2648", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJYB" + }, + { + "id": "36984", + "ident": "SJYC", + "type": "closed", + "name": "AHE Peixe Angical Airport", + "latitude_deg": "-12.203100204467773", + "longitude_deg": "-48.46969985961914", + "elevation_ft": "808", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Peixe", + "scheduled_service": "no" + }, + { + "id": "36985", + "ident": "SJYD", + "type": "small_airport", + "name": "Fazenda Kajussol Airport", + "latitude_deg": "-11.9647216796875", + "longitude_deg": "-61.686668395996094", + "elevation_ft": "636", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Santa Luzia D`Oeste", + "scheduled_service": "no", + "gps_code": "SJYD" + }, + { + "id": "36986", + "ident": "SJYE", + "type": "small_airport", + "name": "Água Fria Airport", + "latitude_deg": "4.620560169219971", + "longitude_deg": "-60.277198791503906", + "elevation_ft": "994", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SJYE" + }, + { + "id": "36987", + "ident": "SJYF", + "type": "small_airport", + "name": "Ajarani Airport", + "latitude_deg": "2.007780075073242", + "longitude_deg": "-61.475799560546875", + "elevation_ft": "594", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Caracaraí", + "scheduled_service": "no", + "gps_code": "SJYF" + }, + { + "id": "36988", + "ident": "SJYG", + "type": "small_airport", + "name": "Alto Mucajaí Airport", + "latitude_deg": "2.765000104904175", + "longitude_deg": "-62.22140121459961", + "elevation_ft": "237", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Alto Alegre", + "scheduled_service": "no", + "gps_code": "SJYG" + }, + { + "id": "338675", + "ident": "SJYH", + "type": "small_airport", + "name": "Fazenda Cachoeira Alta Airport", + "latitude_deg": "-8.780178", + "longitude_deg": "-50.969022", + "elevation_ft": "1020", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santana do Araguaia", + "scheduled_service": "no", + "gps_code": "SJYH", + "local_code": "PA0080" + }, + { + "id": "36989", + "ident": "SJYI", + "type": "small_airport", + "name": "Araí Airport", + "latitude_deg": "4.44389009475708", + "longitude_deg": "-60.847198486328125", + "elevation_ft": "1500", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SJYI" + }, + { + "id": "36990", + "ident": "SJYJ", + "type": "small_airport", + "name": "Aratha-Ú Airport", + "latitude_deg": "3.160830020904541", + "longitude_deg": "-63.78139877319336", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Alto Alegre", + "scheduled_service": "no", + "gps_code": "SJYJ" + }, + { + "id": "36991", + "ident": "SJYK", + "type": "small_airport", + "name": "Baixo Catrimani Airport", + "latitude_deg": "1.0711100101470947", + "longitude_deg": "-62.218299865722656", + "elevation_ft": "171", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Caracaraí", + "scheduled_service": "no", + "gps_code": "SJYK" + }, + { + "id": "36992", + "ident": "SJYL", + "type": "small_airport", + "name": "Baixo Mucajaí Airport", + "latitude_deg": "2.7369399070739746", + "longitude_deg": "-62.01940155029297", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Alto Alegre", + "scheduled_service": "no", + "gps_code": "SJYL" + }, + { + "id": "36993", + "ident": "SJYM", + "type": "small_airport", + "name": "Bala Airport", + "latitude_deg": "3.8372199535369873", + "longitude_deg": "-60.60329818725586", + "elevation_ft": "348", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SJYM" + }, + { + "id": "339012", + "ident": "SJYN", + "type": "heliport", + "name": "Centro Empresarial Araguaia II - CEA II Helipad", + "latitude_deg": "-23.502096", + "longitude_deg": "-46.840859", + "elevation_ft": "2687", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SJYN", + "local_code": "SP0681" + }, + { + "id": "36994", + "ident": "SJYO", + "type": "small_airport", + "name": "Bananal Airport", + "latitude_deg": "4.632780075073242", + "longitude_deg": "-60.585601806640625", + "elevation_ft": "892", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SJYO" + }, + { + "id": "36995", + "ident": "SJYP", + "type": "small_airport", + "name": "Bananeira Airport", + "latitude_deg": "4.321109771728516", + "longitude_deg": "-60.19390106201172", + "elevation_ft": "892", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SJYP" + }, + { + "id": "323621", + "ident": "SJYQ", + "type": "small_airport", + "name": "Barreirinha Airport", + "latitude_deg": "4.330405", + "longitude_deg": "-60.28783", + "elevation_ft": "1194", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Uiramutã", + "scheduled_service": "no", + "gps_code": "SJYQ", + "local_code": "RR0099" + }, + { + "id": "36996", + "ident": "SJYR", + "type": "small_airport", + "name": "Caju Airport", + "latitude_deg": "4.709441", + "longitude_deg": "-60.510851", + "elevation_ft": "794", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SJYR", + "local_code": "RR0100" + }, + { + "id": "36997", + "ident": "SJYS", + "type": "small_airport", + "name": "Camará Airport", + "latitude_deg": "3.9908299446105957", + "longitude_deg": "-60.18170166015625", + "elevation_ft": "594", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Normândia", + "scheduled_service": "no", + "gps_code": "SJYS" + }, + { + "id": "36998", + "ident": "SJYT", + "type": "small_airport", + "name": "Campo Formoso Airport", + "latitude_deg": "4.71999979019165", + "longitude_deg": "-60.76969909667969", + "elevation_ft": "1194", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SJYT" + }, + { + "id": "36999", + "ident": "SJYU", + "type": "small_airport", + "name": "Campo Grande Airport", + "latitude_deg": "4.68556022644043", + "longitude_deg": "-60.802799224853516", + "elevation_ft": "1194", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SJYU" + }, + { + "id": "37000", + "ident": "SJYV", + "type": "heliport", + "name": "Cauê-Apiaí Heliport", + "latitude_deg": "-24.516666412353516", + "longitude_deg": "-48.84972381591797", + "elevation_ft": "2959", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Apiaí", + "scheduled_service": "no", + "gps_code": "SJYV" + }, + { + "id": "37001", + "ident": "SJYW", + "type": "small_airport", + "name": "Fazenda Santa Terezinha Airport", + "latitude_deg": "-10.331389427185059", + "longitude_deg": "-50.940277099609375", + "elevation_ft": "748", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santa Terezinha", + "scheduled_service": "no", + "gps_code": "SJYW" + }, + { + "id": "323620", + "ident": "SJYX", + "type": "heliport", + "name": "Foz do Chopim Heliport", + "latitude_deg": "-25.571833", + "longitude_deg": "-53.123084", + "elevation_ft": "1240", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Cruzeiro do Iguaçu", + "scheduled_service": "no", + "gps_code": "SJYX" + }, + { + "id": "37002", + "ident": "SJYY", + "type": "small_airport", + "name": "Rio do Sangue Airport", + "latitude_deg": "-11.522221565246582", + "longitude_deg": "-58.177223205566406", + "elevation_ft": "935", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SJYY" + }, + { + "id": "37003", + "ident": "SJYZ", + "type": "small_airport", + "name": "Fazenda Lagoa Encantada Airport", + "latitude_deg": "-15.270277976989746", + "longitude_deg": "-54.25749969482422", + "elevation_ft": "1968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Primavera Do Leste", + "scheduled_service": "no", + "gps_code": "SJYZ" + }, + { + "id": "37004", + "ident": "SJZA", + "type": "closed", + "name": "Capão Alto Airport", + "latitude_deg": "-30.67639", + "longitude_deg": "-51.525276", + "elevation_ft": "107", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Tapes", + "scheduled_service": "no", + "keywords": "SJZA" + }, + { + "id": "37005", + "ident": "SJZB", + "type": "small_airport", + "name": "Vale do Tucanã Airport", + "latitude_deg": "-10.689443588256836", + "longitude_deg": "-58.649723052978516", + "elevation_ft": "879", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Castanheira", + "scheduled_service": "no", + "gps_code": "SJZB" + }, + { + "id": "37006", + "ident": "SJZC", + "type": "small_airport", + "name": "Destilaria São Luiz Airport", + "latitude_deg": "-8.778888702392578", + "longitude_deg": "-35.78499984741211", + "elevation_ft": "1371", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Maraial", + "scheduled_service": "no", + "gps_code": "SJZC" + }, + { + "id": "37007", + "ident": "SJZD", + "type": "small_airport", + "name": "Fazenda Bandeiras Airport", + "latitude_deg": "-17.8619441986084", + "longitude_deg": "-56.70305633544922", + "elevation_ft": "361", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJZD" + }, + { + "id": "37008", + "ident": "SJZE", + "type": "small_airport", + "name": "Fazenda Brioso Airport", + "latitude_deg": "-20.237858", + "longitude_deg": "-52.380688", + "elevation_ft": "1270", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Três Lagoas", + "scheduled_service": "no", + "keywords": "SJZE" + }, + { + "id": "37009", + "ident": "SJZF", + "type": "small_airport", + "name": "Fazenda Campo Triste Airport", + "latitude_deg": "-20.618610382080078", + "longitude_deg": "-52.0180549621582", + "elevation_ft": "1197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Três Lagoas", + "scheduled_service": "no", + "gps_code": "SJZF" + }, + { + "id": "37010", + "ident": "SJZG", + "type": "small_airport", + "name": "Leonel de Moura Brizola Airport", + "latitude_deg": "-10.658332824707031", + "longitude_deg": "-51.43611145019531", + "elevation_ft": "843", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Confresa", + "scheduled_service": "no", + "gps_code": "SJZG" + }, + { + "id": "37011", + "ident": "SJZH", + "type": "small_airport", + "name": "Fazenda Rio do Fogo Airport", + "latitude_deg": "-10.881667137145996", + "longitude_deg": "-54.997779846191406", + "elevation_ft": "981", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Santa Helena", + "scheduled_service": "no", + "gps_code": "SJZH" + }, + { + "id": "37012", + "ident": "SJZI", + "type": "heliport", + "name": "Monte Carmelo Heliport", + "latitude_deg": "-23.958332061767578", + "longitude_deg": "-46.330833435058594", + "elevation_ft": "99", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santos", + "scheduled_service": "no", + "gps_code": "SJZI" + }, + { + "id": "37013", + "ident": "SJZJ", + "type": "heliport", + "name": "Rancho Dória Heliport", + "latitude_deg": "-22.698055267333984", + "longitude_deg": "-45.529720306396484", + "elevation_ft": "5223", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campos Do Jordão", + "scheduled_service": "no", + "gps_code": "SJZJ" + }, + { + "id": "37014", + "ident": "SJZK", + "type": "heliport", + "name": "Projac Heliport", + "latitude_deg": "-22.956666946411133", + "longitude_deg": "-43.397220611572266", + "elevation_ft": "94", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SJZK" + }, + { + "id": "37015", + "ident": "SJZL", + "type": "heliport", + "name": "Banco Santander Helipad", + "latitude_deg": "-23.591245", + "longitude_deg": "-46.690972", + "elevation_ft": "2815", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SWHH", + "local_code": "SP0808", + "keywords": "SJZL, Daslu" + }, + { + "id": "37016", + "ident": "SJZM", + "type": "small_airport", + "name": "Carlos Alberto Pinto Airport", + "latitude_deg": "-12.60694408416748", + "longitude_deg": "-46.747222900390625", + "elevation_ft": "1338", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Arraias", + "scheduled_service": "no", + "gps_code": "SJZM" + }, + { + "id": "37017", + "ident": "SJZN", + "type": "heliport", + "name": "Campo Bahia Resort Heliport", + "latitude_deg": "-16.241667", + "longitude_deg": "-39.009167", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Santa Cruz Cabrália", + "scheduled_service": "no", + "gps_code": "SD3X", + "local_code": "BA0349", + "keywords": "SJZN, Costa Brasilis" + }, + { + "id": "37018", + "ident": "SJZO", + "type": "small_airport", + "name": "Fazenda Boi Branco Airport", + "latitude_deg": "-18.46555519104004", + "longitude_deg": "-56.76333236694336", + "elevation_ft": "394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJZO" + }, + { + "id": "37019", + "ident": "SJZP", + "type": "small_airport", + "name": "Mathovi Airport", + "latitude_deg": "-9.833056449890137", + "longitude_deg": "-55.4647216796875", + "elevation_ft": "1070", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Novo Mundo", + "scheduled_service": "no", + "gps_code": "SJZP" + }, + { + "id": "37020", + "ident": "SJZQ", + "type": "small_airport", + "name": "Fazenda Monte Alegre Airport", + "latitude_deg": "-10.564167022705078", + "longitude_deg": "-44.94694519042969", + "elevation_ft": "1444", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Corrente", + "scheduled_service": "no", + "gps_code": "SJZQ" + }, + { + "id": "37021", + "ident": "SJZR", + "type": "small_airport", + "name": "Fazenda Itália Airport", + "latitude_deg": "-7.4447221755981445", + "longitude_deg": "-44.35333251953125", + "elevation_ft": "1280", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Uruçui", + "scheduled_service": "no", + "gps_code": "SJZR" + }, + { + "id": "37022", + "ident": "SJZS", + "type": "small_airport", + "name": "Fazenda Canel Airport", + "latitude_deg": "-7.539999961853027", + "longitude_deg": "-44.8224983215332", + "elevation_ft": "1280", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Uruçui", + "scheduled_service": "no", + "gps_code": "SJZS" + }, + { + "id": "37023", + "ident": "SJZT", + "type": "small_airport", + "name": "Fazenda Busato II Airport", + "latitude_deg": "-13.242396", + "longitude_deg": "-43.737819", + "elevation_ft": "1500", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Serra Ramalho", + "scheduled_service": "no", + "gps_code": "SJZT", + "local_code": "BA0129" + }, + { + "id": "37024", + "ident": "SJZU", + "type": "heliport", + "name": "Seculum Heliport", + "latitude_deg": "-23.584023", + "longitude_deg": "-46.683832", + "elevation_ft": "2605", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SJZU", + "local_code": "SP0686" + }, + { + "id": "37025", + "ident": "SJZV", + "type": "heliport", + "name": "Terras de São José Heliport", + "latitude_deg": "-23.298859", + "longitude_deg": "-47.295626", + "elevation_ft": "2037", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itu", + "scheduled_service": "no", + "gps_code": "SJZV", + "local_code": "SP0687" + }, + { + "id": "37026", + "ident": "SJZW", + "type": "small_airport", + "name": "Fazenda Regina Airport", + "latitude_deg": "-23.288179", + "longitude_deg": "-48.737621", + "elevation_ft": "2044", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itatinga", + "scheduled_service": "no", + "gps_code": "SJZW", + "local_code": "SP0223" + }, + { + "id": "37027", + "ident": "SJZX", + "type": "small_airport", + "name": "Fazenda Rebojo Airport", + "latitude_deg": "-20.02638816833496", + "longitude_deg": "-57.918888092041016", + "elevation_ft": "397", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SJZX" + }, + { + "id": "37028", + "ident": "SJZY", + "type": "heliport", + "name": "Centro Administrativo Rio Negro Heliport", + "latitude_deg": "-23.500526", + "longitude_deg": "-46.848637", + "elevation_ft": "2739", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SJZY", + "local_code": "SP0688" + }, + { + "id": "37029", + "ident": "SJZZ", + "type": "small_airport", + "name": "Fazenda Passo Fundo Airport", + "latitude_deg": "-15.013956", + "longitude_deg": "-53.933451", + "elevation_ft": "2199", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Primavera do Leste", + "scheduled_service": "no", + "keywords": "SJZZ" + }, + { + "id": "315707", + "ident": "SK-0001", + "type": "small_airport", + "name": "Dobra Niva airfield", + "latitude_deg": "48.488716", + "longitude_deg": "19.101749", + "elevation_ft": "1143", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BC", + "municipality": "ZVOLEN", + "scheduled_service": "no", + "local_code": "LZNIVA", + "home_link": "http://lsk.sk/letisko/" + }, + { + "id": "320390", + "ident": "SK-0002", + "type": "small_airport", + "name": "Košťany nad Turcom Airstrip", + "latitude_deg": "49.0167622", + "longitude_deg": "18.8951041", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-ZI", + "municipality": "Košťany nad Turcom", + "scheduled_service": "no" + }, + { + "id": "316294", + "ident": "SK-0003", + "type": "small_airport", + "name": "Dunajská Streda", + "latitude_deg": "48.018056", + "longitude_deg": "17.613056", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-TA", + "scheduled_service": "no" + }, + { + "id": "316295", + "ident": "SK-0004", + "type": "small_airport", + "name": "Hrabušice", + "latitude_deg": "48.969167", + "longitude_deg": "20.386389", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "scheduled_service": "no" + }, + { + "id": "316296", + "ident": "SK-0005", + "type": "small_airport", + "name": "Kamenný Most", + "latitude_deg": "47.863889", + "longitude_deg": "18.65", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-NJ", + "scheduled_service": "no" + }, + { + "id": "316297", + "ident": "SK-0006", + "type": "small_airport", + "name": "Krakovany", + "latitude_deg": "48.633889", + "longitude_deg": "17.732222", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-TA", + "scheduled_service": "no" + }, + { + "id": "316298", + "ident": "SK-0007", + "type": "closed", + "name": "Malý Madaras", + "latitude_deg": "48.142222", + "longitude_deg": "17.377222", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BL", + "scheduled_service": "no" + }, + { + "id": "316299", + "ident": "SK-0008", + "type": "small_airport", + "name": "Sládkovicovo", + "latitude_deg": "48.188889", + "longitude_deg": "17.633889", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-TA", + "scheduled_service": "no" + }, + { + "id": "316300", + "ident": "SK-0009", + "type": "small_airport", + "name": "Tekovský Hrádok", + "latitude_deg": "48.171389", + "longitude_deg": "18.541667", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-NJ", + "scheduled_service": "no" + }, + { + "id": "316301", + "ident": "SK-0010", + "type": "small_airport", + "name": "Trnava-Kopánka", + "latitude_deg": "48.4", + "longitude_deg": "17.611667", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-TA", + "municipality": "Trnava", + "scheduled_service": "no" + }, + { + "id": "316302", + "ident": "SK-0011", + "type": "small_airport", + "name": "Želiezovce", + "latitude_deg": "48.047222", + "longitude_deg": "18.596111", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-NJ", + "scheduled_service": "no" + }, + { + "id": "316458", + "ident": "SK-0012", + "type": "small_airport", + "name": "Gajary UL", + "latitude_deg": "48.4511666667", + "longitude_deg": "16.9409166667", + "elevation_ft": "502", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BL", + "municipality": "Dolečky", + "scheduled_service": "no", + "home_link": "http://jozinko.szm.sk/Web/letiskogajary.htm", + "keywords": "Malacky" + }, + { + "id": "316495", + "ident": "SK-0013", + "type": "small_airport", + "name": "Zborov Airfield", + "latitude_deg": "49.374106", + "longitude_deg": "21.292575", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-PV", + "scheduled_service": "no", + "keywords": "LZBA" + }, + { + "id": "320673", + "ident": "SK-0014", + "type": "small_airport", + "name": "Letisko Mirkovce", + "latitude_deg": "48.8914554", + "longitude_deg": "21.3172417", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-PV", + "municipality": "Mirkovce", + "scheduled_service": "no" + }, + { + "id": "320704", + "ident": "SK-0015", + "type": "small_airport", + "name": "Čab Airstrip", + "latitude_deg": "48.3888085", + "longitude_deg": "18.0043553", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-NJ", + "municipality": "Čab", + "scheduled_service": "no" + }, + { + "id": "321100", + "ident": "SK-0016", + "type": "closed", + "name": "Višňové Airstrip", + "latitude_deg": "49.171375", + "longitude_deg": "18.778598", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-ZI", + "scheduled_service": "no" + }, + { + "id": "321211", + "ident": "SK-0017", + "type": "small_airport", + "name": "Bojná Airstrip", + "latitude_deg": "48.5419025", + "longitude_deg": "18.0526032", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-NJ", + "scheduled_service": "no" + }, + { + "id": "321295", + "ident": "SK-0018", + "type": "small_airport", + "name": "Kačanov Airstrip", + "latitude_deg": "48.615499", + "longitude_deg": "21.835203", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "scheduled_service": "no" + }, + { + "id": "321296", + "ident": "SK-0019", + "type": "small_airport", + "name": "Ludanice Airstrip", + "latitude_deg": "48.5100021", + "longitude_deg": "18.1323556", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-NJ", + "scheduled_service": "no" + }, + { + "id": "41037", + "ident": "SK-002", + "type": "small_airport", + "name": "El Encanto Airport", + "latitude_deg": "-1.7533333333299999", + "longitude_deg": "-73.20472222219999", + "elevation_ft": "420", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-AMA", + "municipality": "El Encanto", + "scheduled_service": "no", + "iata_code": "ECO", + "local_code": "ECO" + }, + { + "id": "321297", + "ident": "SK-0020", + "type": "small_airport", + "name": "Rybany Airstrip", + "latitude_deg": "48.6660912", + "longitude_deg": "18.228065", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-TC", + "scheduled_service": "no" + }, + { + "id": "321401", + "ident": "SK-0021", + "type": "small_airport", + "name": "Morovno Airstrip", + "latitude_deg": "48.760753", + "longitude_deg": "18.742585", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-TC", + "municipality": "Morovno", + "scheduled_service": "no" + }, + { + "id": "321402", + "ident": "SK-0022", + "type": "small_airport", + "name": "Plášťovce Airstrip", + "latitude_deg": "48.128776", + "longitude_deg": "19.000553", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-NJ", + "municipality": "Plášťovce", + "scheduled_service": "no", + "keywords": "Letisko Plášťovce" + }, + { + "id": "321403", + "ident": "SK-0023", + "type": "small_airport", + "name": "Prusy Airstrip", + "latitude_deg": "48.747364", + "longitude_deg": "18.263118", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-TC", + "municipality": "Prusy", + "scheduled_service": "no" + }, + { + "id": "321404", + "ident": "SK-0024", + "type": "closed", + "name": "Klátová Nová Ves Airstrip", + "latitude_deg": "48.57884", + "longitude_deg": "18.285934", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-NJ", + "municipality": "Klátová Nová Ves", + "scheduled_service": "no" + }, + { + "id": "321480", + "ident": "SK-0025", + "type": "small_airport", + "name": "Rusovce Airstrip", + "latitude_deg": "48.053679", + "longitude_deg": "17.133268", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BL", + "municipality": "Rusovce", + "scheduled_service": "no" + }, + { + "id": "321484", + "ident": "SK-0026", + "type": "small_airport", + "name": "Babin Most Airstrip", + "latitude_deg": "48.378078", + "longitude_deg": "19.93117", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BC", + "municipality": "Ožďany", + "scheduled_service": "no" + }, + { + "id": "321485", + "ident": "SK-0027", + "type": "small_airport", + "name": "Tornala Airstrip", + "latitude_deg": "48.4194", + "longitude_deg": "20.337703", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BC", + "municipality": "Tornala", + "scheduled_service": "no" + }, + { + "id": "321486", + "ident": "SK-0028", + "type": "small_airport", + "name": "Prša Airstrip", + "latitude_deg": "48.295864", + "longitude_deg": "19.784368", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BC", + "municipality": "Prša", + "scheduled_service": "no" + }, + { + "id": "321487", + "ident": "SK-0029", + "type": "small_airport", + "name": "Sklabiná Airstrip", + "latitude_deg": "48.151621", + "longitude_deg": "19.363439", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BC", + "municipality": "Sklabiná", + "scheduled_service": "no" + }, + { + "id": "41016", + "ident": "SK-003", + "type": "small_airport", + "name": "Miriti Airport", + "latitude_deg": "1.133333", + "longitude_deg": "-70.25", + "elevation_ft": "926", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Miriti", + "scheduled_service": "no", + "local_code": "MIX" + }, + { + "id": "321488", + "ident": "SK-0030", + "type": "small_airport", + "name": "Letisko Horný Jatov", + "latitude_deg": "48.163221", + "longitude_deg": "17.957382", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-NJ", + "municipality": "Horný Jatov", + "scheduled_service": "no" + }, + { + "id": "321527", + "ident": "SK-0031", + "type": "small_airport", + "name": "Letisko Šalgovce-Orešany", + "latitude_deg": "48.5084792", + "longitude_deg": "17.9218674", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-NJ", + "scheduled_service": "no" + }, + { + "id": "321528", + "ident": "SK-0032", + "type": "small_airport", + "name": "Letisko Pohronský Ruskov", + "latitude_deg": "47.996281", + "longitude_deg": "18.6731541", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-NJ", + "municipality": "Pohronský Ruskov", + "scheduled_service": "no" + }, + { + "id": "321667", + "ident": "SK-0033", + "type": "closed", + "name": "Bystričany Airstrip", + "latitude_deg": "48.658592", + "longitude_deg": "18.544089", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-TC", + "municipality": "Bystričany", + "scheduled_service": "no" + }, + { + "id": "321686", + "ident": "SK-0034", + "type": "small_airport", + "name": "Hontianske Nemce Airstrip", + "latitude_deg": "48.261964", + "longitude_deg": "19.009003", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BC", + "scheduled_service": "no" + }, + { + "id": "321687", + "ident": "SK-0035", + "type": "small_airport", + "name": "Janova Lehota Airstrip", + "latitude_deg": "48.6375922", + "longitude_deg": "18.7971249", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BC", + "municipality": "Janova Lehota", + "scheduled_service": "no" + }, + { + "id": "321688", + "ident": "SK-0036", + "type": "small_airport", + "name": "Pliešovce Airstrip", + "latitude_deg": "48.4186198", + "longitude_deg": "19.1489103", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BC", + "municipality": "Pliešovce", + "scheduled_service": "no" + }, + { + "id": "321944", + "ident": "SK-0037", + "type": "small_airport", + "name": "Drienovec Airstrip", + "latitude_deg": "48.607864", + "longitude_deg": "20.938503", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "scheduled_service": "no" + }, + { + "id": "321945", + "ident": "SK-0038", + "type": "small_airport", + "name": "Ďačov Airstrip", + "latitude_deg": "49.147171", + "longitude_deg": "20.945805", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-PV", + "scheduled_service": "no" + }, + { + "id": "321946", + "ident": "SK-0039", + "type": "small_airport", + "name": "Bátka Airstrip", + "latitude_deg": "48.3716771", + "longitude_deg": "20.153322", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BC", + "scheduled_service": "no" + }, + { + "id": "321997", + "ident": "SK-0040", + "type": "small_airport", + "name": "Buzica Airstrip", + "latitude_deg": "48.5508549", + "longitude_deg": "21.0931852", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "scheduled_service": "no" + }, + { + "id": "321998", + "ident": "SK-0041", + "type": "small_airport", + "name": "Kecerovce Airstrip", + "latitude_deg": "48.833554", + "longitude_deg": "21.4042387", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "scheduled_service": "no" + }, + { + "id": "321999", + "ident": "SK-0042", + "type": "small_airport", + "name": "Volica Airstrip", + "latitude_deg": "49.1637807", + "longitude_deg": "21.9129184", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-PV", + "scheduled_service": "no" + }, + { + "id": "322000", + "ident": "SK-0043", + "type": "small_airport", + "name": "Chotín Airstrip", + "latitude_deg": "47.81415", + "longitude_deg": "18.194275", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-NJ", + "municipality": "Chotín", + "scheduled_service": "no" + }, + { + "id": "322001", + "ident": "SK-0044", + "type": "small_airport", + "name": "Tužina Airstrip", + "latitude_deg": "48.893072", + "longitude_deg": "18.625023", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-TC", + "municipality": "Tužina", + "scheduled_service": "no" + }, + { + "id": "322058", + "ident": "SK-0045", + "type": "small_airport", + "name": "Seleška Airstrip", + "latitude_deg": "48.6214327", + "longitude_deg": "21.0828401", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "scheduled_service": "no" + }, + { + "id": "322059", + "ident": "SK-0046", + "type": "small_airport", + "name": "Domaniža Airfield", + "latitude_deg": "49.0517234", + "longitude_deg": "18.5533962", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-TC", + "municipality": "Domaniža", + "scheduled_service": "no" + }, + { + "id": "322073", + "ident": "SK-0047", + "type": "small_airport", + "name": "Hertník Airstrip", + "latitude_deg": "49.2111575", + "longitude_deg": "21.2644107", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-PV", + "scheduled_service": "no" + }, + { + "id": "322109", + "ident": "SK-0048", + "type": "small_airport", + "name": "Kolonica Airstrip", + "latitude_deg": "48.933635", + "longitude_deg": "22.275849", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-PV", + "municipality": "Kolonica", + "scheduled_service": "no" + }, + { + "id": "322110", + "ident": "SK-0049", + "type": "small_airport", + "name": "Kurov Airstrip", + "latitude_deg": "49.338416", + "longitude_deg": "21.148804", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-PV", + "municipality": "Kurov", + "scheduled_service": "no", + "keywords": "LZBE" + }, + { + "id": "41073", + "ident": "SK-005", + "type": "small_airport", + "name": "Arboletes Airport", + "latitude_deg": "8.855118", + "longitude_deg": "-76.422676", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Arboletes", + "scheduled_service": "no", + "iata_code": "ARO", + "local_code": "ARO" + }, + { + "id": "322111", + "ident": "SK-0050", + "type": "small_airport", + "name": "Širkovce Airstrip", + "latitude_deg": "48.275138", + "longitude_deg": "20.092128", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BC", + "municipality": "Širkovce", + "scheduled_service": "no" + }, + { + "id": "322122", + "ident": "SK-0051", + "type": "small_airport", + "name": "Jasenov Airstrip", + "latitude_deg": "48.792575", + "longitude_deg": "22.179619", + "elevation_ft": "551", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "municipality": "Jasenov", + "scheduled_service": "no" + }, + { + "id": "322123", + "ident": "SK-0052", + "type": "small_airport", + "name": "Novosad Airstrip", + "latitude_deg": "48.531801", + "longitude_deg": "21.729293", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "municipality": "Novosad", + "scheduled_service": "no" + }, + { + "id": "322124", + "ident": "SK-0053", + "type": "small_airport", + "name": "Hucín Airstrip", + "latitude_deg": "48.574452", + "longitude_deg": "20.2916253", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BC", + "municipality": "Hucín", + "scheduled_service": "no" + }, + { + "id": "322150", + "ident": "SK-0054", + "type": "small_airport", + "name": "Dlžín Airstrip", + "latitude_deg": "48.8044756", + "longitude_deg": "18.5067176", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-TC", + "municipality": "Dlžín", + "scheduled_service": "no" + }, + { + "id": "322239", + "ident": "SK-0055", + "type": "small_airport", + "name": "Senné Airstrip", + "latitude_deg": "48.659681", + "longitude_deg": "22.0141099", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "scheduled_service": "no" + }, + { + "id": "322240", + "ident": "SK-0056", + "type": "small_airport", + "name": "Haniska Airstrip", + "latitude_deg": "48.609863", + "longitude_deg": "21.248697", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "municipality": "Haniska", + "scheduled_service": "no" + }, + { + "id": "322255", + "ident": "SK-0057", + "type": "small_airport", + "name": "Čerín-Čačín Airstrip", + "latitude_deg": "48.674911", + "longitude_deg": "19.245273", + "elevation_ft": "1545", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BC", + "scheduled_service": "no" + }, + { + "id": "322256", + "ident": "SK-0058", + "type": "small_airport", + "name": "Rimavská Seč Airstrip", + "latitude_deg": "48.318293", + "longitude_deg": "20.250233", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BC", + "municipality": "Zádor", + "scheduled_service": "no" + }, + { + "id": "322259", + "ident": "SK-0059", + "type": "small_airport", + "name": "Kalša Airstrip", + "latitude_deg": "48.624699", + "longitude_deg": "21.5060067", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "scheduled_service": "no" + }, + { + "id": "40966", + "ident": "SK-006", + "type": "small_airport", + "name": "El Plateado Airport", + "latitude_deg": "6.730556", + "longitude_deg": "-76.146389", + "elevation_ft": "5555", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Frontino", + "scheduled_service": "no", + "local_code": "FRO" + }, + { + "id": "322298", + "ident": "SK-0060", + "type": "small_airport", + "name": "Dolná Strehová Airstrip", + "latitude_deg": "48.256185", + "longitude_deg": "19.504961", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BC", + "municipality": "Dolná Strehová", + "scheduled_service": "no" + }, + { + "id": "322299", + "ident": "SK-0061", + "type": "small_airport", + "name": "Kráľovský Chlmec Airstrip", + "latitude_deg": "48.413942", + "longitude_deg": "22.002993", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "municipality": "Kráľovský Chlmec", + "scheduled_service": "no" + }, + { + "id": "322310", + "ident": "SK-0062", + "type": "small_airport", + "name": "Udavské Airstrip", + "latitude_deg": "48.97872", + "longitude_deg": "21.947888", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-PV", + "municipality": "Udavské", + "scheduled_service": "no" + }, + { + "id": "322335", + "ident": "SK-0063", + "type": "small_airport", + "name": "Trebišov Airstrip", + "latitude_deg": "48.636891", + "longitude_deg": "21.759432", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "municipality": "Trebišov", + "scheduled_service": "no" + }, + { + "id": "322439", + "ident": "SK-0064", + "type": "small_airport", + "name": "Vyšná Myšľa Airstrip", + "latitude_deg": "48.6446431", + "longitude_deg": "21.3753435", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "scheduled_service": "no" + }, + { + "id": "322441", + "ident": "SK-0065", + "type": "small_airport", + "name": "Dolná Štubňa Airstrip", + "latitude_deg": "48.834808", + "longitude_deg": "18.843625", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-ZI", + "municipality": "Dolná Štubňa", + "scheduled_service": "no" + }, + { + "id": "322483", + "ident": "SK-0066", + "type": "small_airport", + "name": "Kamienka/Hniezdne Airstrip", + "latitude_deg": "49.319881", + "longitude_deg": "20.635033", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-PV", + "scheduled_service": "no" + }, + { + "id": "322488", + "ident": "SK-0067", + "type": "closed", + "name": "Veľké Kapušany Airstrip", + "latitude_deg": "48.539865", + "longitude_deg": "22.062918", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "municipality": "Veľké Kapušany", + "scheduled_service": "no" + }, + { + "id": "322574", + "ident": "SK-0068", + "type": "small_airport", + "name": "Veľká Lomnica Airstrip", + "latitude_deg": "49.1065", + "longitude_deg": "20.344029", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-PV", + "municipality": "Veľká Lomnica", + "scheduled_service": "no" + }, + { + "id": "322723", + "ident": "SK-0069", + "type": "small_airport", + "name": "Streda nad Bodrogom Airstrip", + "latitude_deg": "48.361893", + "longitude_deg": "21.746454", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "municipality": "Streda nad Bodrogom", + "scheduled_service": "no" + }, + { + "id": "40993", + "ident": "SK-007", + "type": "small_airport", + "name": "Indira Airport", + "latitude_deg": "7.943978", + "longitude_deg": "-76.696973", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Turbo", + "scheduled_service": "no", + "local_code": "INA" + }, + { + "id": "323648", + "ident": "SK-0070", + "type": "small_airport", + "name": "Mokraď Airstrip", + "latitude_deg": "49.0964161", + "longitude_deg": "19.7334988", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-ZI", + "scheduled_service": "no" + }, + { + "id": "323742", + "ident": "SK-0071", + "type": "small_airport", + "name": "Klčov Airstrip", + "latitude_deg": "48.994162", + "longitude_deg": "20.664952", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-PV", + "municipality": "Klčov", + "scheduled_service": "no" + }, + { + "id": "323872", + "ident": "SK-0072", + "type": "small_airport", + "name": "Zemné Airstrip", + "latitude_deg": "47.9689467", + "longitude_deg": "18.0422098", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-NJ", + "municipality": "Zemné", + "scheduled_service": "no" + }, + { + "id": "323952", + "ident": "SK-0073", + "type": "small_airport", + "name": "Vankovia Airstrip", + "latitude_deg": "48.7640939", + "longitude_deg": "17.526797", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-TC", + "municipality": "Vankovia", + "scheduled_service": "no" + }, + { + "id": "324049", + "ident": "SK-0074", + "type": "small_airport", + "name": "Rozhanovce Airstrip", + "latitude_deg": "48.7515373", + "longitude_deg": "21.3283962", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "municipality": "Rozhanovce", + "scheduled_service": "no" + }, + { + "id": "324146", + "ident": "SK-0075", + "type": "small_airport", + "name": "Tomášovce Airstrip", + "latitude_deg": "48.359922", + "longitude_deg": "19.64294", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BC", + "municipality": "Tomášovce", + "scheduled_service": "no" + }, + { + "id": "331353", + "ident": "SK-0076", + "type": "small_airport", + "name": "Nevoľné Airstrip", + "latitude_deg": "48.6680872", + "longitude_deg": "18.9349476", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-BC", + "scheduled_service": "no" + }, + { + "id": "331681", + "ident": "SK-0077", + "type": "small_airport", + "name": "Šarišské Michaľany Airstrip", + "latitude_deg": "49.0757", + "longitude_deg": "21.1515", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-PV", + "scheduled_service": "no" + }, + { + "id": "331744", + "ident": "SK-0078", + "type": "small_airport", + "name": "Hatalov Airfield", + "latitude_deg": "48.651565", + "longitude_deg": "21.873589", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "municipality": "Hatalov", + "scheduled_service": "no" + }, + { + "id": "335398", + "ident": "SK-0079", + "type": "small_airport", + "name": "Nemčice-Topoľčany Airstrip", + "latitude_deg": "48.54662", + "longitude_deg": "18.14393", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-NJ", + "municipality": "Topoľčany", + "scheduled_service": "no" + }, + { + "id": "41075", + "ident": "SK-008", + "type": "small_airport", + "name": "Jurado Airport", + "latitude_deg": "6.516667", + "longitude_deg": "-76.6", + "elevation_ft": "2184", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Jurado", + "scheduled_service": "no", + "gps_code": "SKJU", + "iata_code": "JUO", + "local_code": "JUO" + }, + { + "id": "342160", + "ident": "SK-0080", + "type": "small_airport", + "name": "Mlynica Airfield", + "latitude_deg": "49.104809", + "longitude_deg": "20.318398", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-KI", + "scheduled_service": "no", + "home_link": "https://www.obecmlynica.sk/letisko-mlynica.html" + }, + { + "id": "346981", + "ident": "SK-0081", + "type": "small_airport", + "name": "Vranov nad Topľou Airstrip", + "latitude_deg": "48.86856", + "longitude_deg": "21.6768", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-PV", + "scheduled_service": "no" + }, + { + "id": "349574", + "ident": "SK-0082", + "type": "small_airport", + "name": "Vavrečka Airfield", + "latitude_deg": "49.3911", + "longitude_deg": "19.46712", + "continent": "EU", + "iso_country": "SK", + "iso_region": "SK-ZI", + "scheduled_service": "no" + }, + { + "id": "40947", + "ident": "SK-009", + "type": "small_airport", + "name": "La Providencia Airport", + "latitude_deg": "7.165278", + "longitude_deg": "-75.725278", + "elevation_ft": "5611", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Ituango 2", + "scheduled_service": "no", + "local_code": "ITG" + }, + { + "id": "40991", + "ident": "SK-010", + "type": "small_airport", + "name": "Los Almendros Airport", + "latitude_deg": "7.791594", + "longitude_deg": "-76.651962", + "elevation_ft": "88", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Carepa", + "scheduled_service": "no", + "local_code": "LAO" + }, + { + "id": "40990", + "ident": "SK-011", + "type": "small_airport", + "name": "Los Planes Airport", + "latitude_deg": "7.833184", + "longitude_deg": "-76.645445", + "elevation_ft": "158", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Apartado", + "scheduled_service": "no", + "local_code": "LPL" + }, + { + "id": "41076", + "ident": "SK-012", + "type": "small_airport", + "name": "Mulatos Airport", + "latitude_deg": "8.64019", + "longitude_deg": "-76.71884", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Mulatos", + "scheduled_service": "no", + "local_code": "ULS" + }, + { + "id": "40995", + "ident": "SK-013", + "type": "small_airport", + "name": "Murindo Airport", + "latitude_deg": "6.981667", + "longitude_deg": "-76.813889", + "elevation_ft": "27", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Murindo", + "scheduled_service": "no", + "local_code": "MRI" + }, + { + "id": "40986", + "ident": "SK-014", + "type": "small_airport", + "name": "Mutata Airport", + "latitude_deg": "7.250316", + "longitude_deg": "-76.444173", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Mutata", + "scheduled_service": "no", + "local_code": "MTA", + "keywords": "AG3246, FR38055" + }, + { + "id": "40992", + "ident": "SK-015", + "type": "small_airport", + "name": "Nueva Fortuna Airport", + "latitude_deg": "8.616667", + "longitude_deg": "-76.666667", + "elevation_ft": "230", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Nueva Fortuna", + "scheduled_service": "no", + "local_code": "NFA" + }, + { + "id": "40864", + "ident": "SK-016", + "type": "small_airport", + "name": "Puerto Perales Airport", + "latitude_deg": "5.991776", + "longitude_deg": "-74.57009", + "elevation_ft": "460", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Puerto Triunfo", + "scheduled_service": "no", + "local_code": "PFO" + }, + { + "id": "40954", + "ident": "SK-017", + "type": "small_airport", + "name": "Rancho Ae Airport", + "latitude_deg": "6.522222", + "longitude_deg": "-75.808056", + "elevation_ft": "1479", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Santafe De Antioquía", + "scheduled_service": "no", + "local_code": "RAN" + }, + { + "id": "40866", + "ident": "SK-018", + "type": "small_airport", + "name": "Remedios C Airport", + "latitude_deg": "6.933333", + "longitude_deg": "-74.716667", + "elevation_ft": "2523", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Otu", + "scheduled_service": "no", + "local_code": "OTU" + }, + { + "id": "40977", + "ident": "SK-019", + "type": "small_airport", + "name": "San José Mulatos Airport", + "latitude_deg": "8.35", + "longitude_deg": "-76.333333", + "elevation_ft": "324", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "San José Mulatos", + "scheduled_service": "no", + "local_code": "SJM" + }, + { + "id": "41074", + "ident": "SK-020", + "type": "small_airport", + "name": "San Juan De Uraba Airport", + "latitude_deg": "8.766667", + "longitude_deg": "-76.533333", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "San Juan De Uraba", + "scheduled_service": "no", + "iata_code": "SJR", + "local_code": "SJR" + }, + { + "id": "41072", + "ident": "SK-021", + "type": "small_airport", + "name": "San Pedro Airport", + "latitude_deg": "8.289325", + "longitude_deg": "-76.375006", + "elevation_ft": "420", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "San Pedro de Urabá", + "scheduled_service": "no", + "iata_code": "NPU", + "local_code": "PDA" + }, + { + "id": "40939", + "ident": "SK-023", + "type": "small_airport", + "name": "Santa Rita, Ituango Airport", + "latitude_deg": "7.335227", + "longitude_deg": "-75.613747", + "elevation_ft": "6406", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Santa Rita, Ituango", + "scheduled_service": "no", + "local_code": "STR" + }, + { + "id": "40951", + "ident": "SK-024", + "type": "small_airport", + "name": "Sopetran Airport", + "latitude_deg": "6.498056", + "longitude_deg": "-75.785278", + "elevation_ft": "1609", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Sopetran", + "scheduled_service": "no", + "local_code": "SOP" + }, + { + "id": "40996", + "ident": "SK-025", + "type": "small_airport", + "name": "Vigía Del Fuerte Airport", + "latitude_deg": "6.583333", + "longitude_deg": "-76.883333", + "elevation_ft": "72", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Murindo", + "scheduled_service": "no", + "local_code": "VDF" + }, + { + "id": "40989", + "ident": "SK-026", + "type": "small_airport", + "name": "Villanueva Airport", + "latitude_deg": "7.971667", + "longitude_deg": "-76.629722", + "elevation_ft": "83", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Turbo", + "scheduled_service": "no", + "local_code": "VVA" + }, + { + "id": "40576", + "ident": "SK-028", + "type": "small_airport", + "name": "La Rubiera Airport", + "latitude_deg": "6.773056", + "longitude_deg": "-70.018889", + "elevation_ft": "319", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ARA", + "municipality": "Arauca", + "scheduled_service": "no", + "local_code": "ARA" + }, + { + "id": "41020", + "ident": "SK-029", + "type": "small_airport", + "name": "Rondón Airport", + "latitude_deg": "6.284479", + "longitude_deg": "-71.097732", + "elevation_ft": "447", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ARA", + "municipality": "Puerto Rondón", + "scheduled_service": "no", + "local_code": "RDN" + }, + { + "id": "40555", + "ident": "SK-030", + "type": "small_airport", + "name": "El Esfuerzo Airport", + "latitude_deg": "10.4552", + "longitude_deg": "-74.9623", + "elevation_ft": "44", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ATL", + "municipality": "Manatí", + "scheduled_service": "no", + "local_code": "EEA" + }, + { + "id": "40556", + "ident": "SK-031", + "type": "small_airport", + "name": "Hacienda Veracruz Airport", + "latitude_deg": "10.573707", + "longitude_deg": "-75.064791", + "elevation_ft": "44", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ATL", + "municipality": "Hacienda Veracruz", + "scheduled_service": "no" + }, + { + "id": "40935", + "ident": "SK-032", + "type": "small_airport", + "name": "El Tambo Airport", + "latitude_deg": "10.481667", + "longitude_deg": "-75.413611", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOL", + "municipality": "Bayunca", + "scheduled_service": "no", + "local_code": "BYA" + }, + { + "id": "40932", + "ident": "SK-033", + "type": "small_airport", + "name": "Honduras Br Airport", + "latitude_deg": "9.972222", + "longitude_deg": "-75.374167", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOL", + "municipality": "María La Baja", + "scheduled_service": "no", + "local_code": "HOB" + }, + { + "id": "40879", + "ident": "SK-034", + "type": "small_airport", + "name": "La Vega Airport", + "latitude_deg": "9.856389", + "longitude_deg": "-74.895833", + "elevation_ft": "77", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOL", + "municipality": "Zambrano", + "scheduled_service": "no", + "local_code": "LVB" + }, + { + "id": "40844", + "ident": "SK-035", + "type": "small_airport", + "name": "Millan Airport", + "latitude_deg": "7.928889", + "longitude_deg": "-73.967222", + "elevation_ft": "176", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOL", + "municipality": "Simiti", + "scheduled_service": "no", + "local_code": "STI" + }, + { + "id": "40872", + "ident": "SK-036", + "type": "small_airport", + "name": "Monterrey Airport", + "latitude_deg": "9.736667", + "longitude_deg": "-74.829444", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOL", + "municipality": "Zambrano", + "scheduled_service": "no", + "local_code": "MBO" + }, + { + "id": "40927", + "ident": "SK-037", + "type": "small_airport", + "name": "San Pablo - Incora Airport", + "latitude_deg": "10.047222", + "longitude_deg": "-75.265278", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOL", + "municipality": "María La Baja", + "scheduled_service": "no", + "local_code": "SPO" + }, + { + "id": "40846", + "ident": "SK-038", + "type": "small_airport", + "name": "Santa Rosa Del Sud Airport", + "latitude_deg": "7.991389", + "longitude_deg": "-74.036111", + "elevation_ft": "1359", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOL", + "municipality": "Santa Rosa Del Sud", + "scheduled_service": "no", + "local_code": "SRD" + }, + { + "id": "40862", + "ident": "SK-039", + "type": "small_airport", + "name": "El Espino Airport", + "latitude_deg": "6.503333", + "longitude_deg": "-74.507222", + "elevation_ft": "888", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOY", + "municipality": "El Espino", + "scheduled_service": "no", + "local_code": "EEB" + }, + { + "id": "40852", + "ident": "SK-040", + "type": "small_airport", + "name": "Muzo Airport", + "latitude_deg": "5.547222", + "longitude_deg": "-74.112778", + "elevation_ft": "3000", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOY", + "municipality": "Muzo", + "scheduled_service": "no", + "local_code": "MUZ" + }, + { + "id": "40940", + "ident": "SK-041", + "type": "small_airport", + "name": "La Palestina Airport", + "latitude_deg": "5.030278", + "longitude_deg": "-75.616667", + "elevation_ft": "5042", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAL", + "municipality": "La Palestina", + "scheduled_service": "no", + "local_code": "LAE" + }, + { + "id": "40918", + "ident": "SK-042", + "type": "small_airport", + "name": "Pensilvania Airport", + "latitude_deg": "5.369722", + "longitude_deg": "-75.140833", + "elevation_ft": "7626", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAL", + "municipality": "Pensilvania", + "scheduled_service": "no", + "local_code": "PEN" + }, + { + "id": "40943", + "ident": "SK-043", + "type": "small_airport", + "name": "Vegas Del Rio Airport", + "latitude_deg": "5.441667", + "longitude_deg": "-75.65", + "elevation_ft": "3762", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAL", + "municipality": "Supia", + "scheduled_service": "no", + "local_code": "VDR" + }, + { + "id": "40838", + "ident": "SK-044", + "type": "small_airport", + "name": "Ciudad Yari Airport", + "latitude_deg": "1.583333", + "longitude_deg": "-73.866667", + "elevation_ft": "950", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAQ", + "municipality": "San Vicente Del Caguán", + "scheduled_service": "no", + "local_code": "CDY" + }, + { + "id": "41060", + "ident": "SK-045", + "type": "small_airport", + "name": "Puerto Rico Airport", + "latitude_deg": "1.916667", + "longitude_deg": "-75.166667", + "elevation_ft": "980", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAQ", + "municipality": "Puerto Rico", + "scheduled_service": "no", + "iata_code": "PCC", + "local_code": "PCC", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aeropuerto_de_Puerto_Rico" + }, + { + "id": "41062", + "ident": "SK-046", + "type": "small_airport", + "name": "Solano Airport", + "latitude_deg": "0.702022", + "longitude_deg": "-75.2505", + "elevation_ft": "860", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAQ", + "municipality": "Solano", + "scheduled_service": "no", + "iata_code": "SQF", + "local_code": "SQF" + }, + { + "id": "41029", + "ident": "SK-047", + "type": "small_airport", + "name": "Yari Airport", + "latitude_deg": "-0.383333", + "longitude_deg": "-72.266667", + "elevation_ft": "569", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAQ", + "municipality": "Yari", + "scheduled_service": "no", + "iata_code": "AYI", + "local_code": "AYI" + }, + { + "id": "40726", + "ident": "SK-048", + "type": "closed", + "name": "Aguaclara Airport", + "latitude_deg": "4.747105", + "longitude_deg": "-72.987735", + "elevation_ft": "1090", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Aguaclara", + "scheduled_service": "no", + "iata_code": "ACL", + "local_code": "ACL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aguaclara_Airport" + }, + { + "id": "40640", + "ident": "SK-049", + "type": "small_airport", + "name": "Altamira Airport", + "latitude_deg": "4.758611", + "longitude_deg": "-71.638611", + "elevation_ft": "467", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Orocue", + "scheduled_service": "no", + "local_code": "ALT" + }, + { + "id": "40676", + "ident": "SK-050", + "type": "small_airport", + "name": "Araguanen Airport", + "latitude_deg": "5.413056", + "longitude_deg": "-72.283056", + "elevation_ft": "784", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Yopal", + "scheduled_service": "no", + "local_code": "ARG" + }, + { + "id": "40665", + "ident": "SK-051", + "type": "small_airport", + "name": "Banco Airport", + "latitude_deg": "5.463056", + "longitude_deg": "-72.063056", + "elevation_ft": "689", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Nunchia", + "scheduled_service": "no", + "local_code": "BAN" + }, + { + "id": "40660", + "ident": "SK-052", + "type": "small_airport", + "name": "Bizerta Airport", + "latitude_deg": "5.4225", + "longitude_deg": "-71.993611", + "elevation_ft": "637", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Nunchia", + "scheduled_service": "no", + "local_code": "BIZ" + }, + { + "id": "40628", + "ident": "SK-053", + "type": "small_airport", + "name": "Buena Vista Airport", + "latitude_deg": "4.836111", + "longitude_deg": "-71.502222", + "elevation_ft": "457", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Orocue", + "scheduled_service": "no", + "local_code": "OCU" + }, + { + "id": "40634", + "ident": "SK-054", + "type": "small_airport", + "name": "Caño Garza Airport", + "latitude_deg": "5.591667", + "longitude_deg": "-71.589444", + "elevation_ft": "544", + "continent": "NA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Paz de Ariporo", + "scheduled_service": "no", + "gps_code": "SKAA", + "local_code": "PAZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ca%C3%B1o_Garza_Airport" + }, + { + "id": "40613", + "ident": "SK-055", + "type": "small_airport", + "name": "Caño Grande Airport", + "latitude_deg": "5.1725", + "longitude_deg": "-71.141944", + "elevation_ft": "426", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "San Luis De Palenque", + "scheduled_service": "no", + "local_code": "CAA" + }, + { + "id": "40617", + "ident": "SK-056", + "type": "small_airport", + "name": "Chaparrito Airport", + "latitude_deg": "5.56", + "longitude_deg": "-71.217222", + "elevation_ft": "456", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Paz De Ariporo", + "scheduled_service": "no", + "local_code": "PZR" + }, + { + "id": "40713", + "ident": "SK-057", + "type": "small_airport", + "name": "Ciénaga Airport", + "latitude_deg": "5.248056", + "longitude_deg": "-72.868611", + "elevation_ft": "5270", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Yopal", + "scheduled_service": "no", + "local_code": "YPL" + }, + { + "id": "40704", + "ident": "SK-058", + "type": "small_airport", + "name": "Colegial Airport", + "latitude_deg": "4.487222", + "longitude_deg": "-72.760278", + "elevation_ft": "585", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Villanueva", + "scheduled_service": "no", + "local_code": "VNL" + }, + { + "id": "41027", + "ident": "SK-059", + "type": "small_airport", + "name": "Currillo Airport", + "latitude_deg": "4.666667", + "longitude_deg": "-72", + "elevation_ft": "495", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Currillo", + "scheduled_service": "no", + "iata_code": "CUI", + "local_code": "CUI" + }, + { + "id": "40698", + "ident": "SK-060", + "type": "small_airport", + "name": "Cusiana Airport", + "latitude_deg": "4.973889", + "longitude_deg": "-72.636667", + "elevation_ft": "847", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Tauramena", + "scheduled_service": "no", + "local_code": "CUS" + }, + { + "id": "40662", + "ident": "SK-061", + "type": "small_airport", + "name": "Dumacita Airport", + "latitude_deg": "4.481667", + "longitude_deg": "-72.04", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Maní", + "scheduled_service": "no", + "local_code": "MIN" + }, + { + "id": "40629", + "ident": "SK-062", + "type": "small_airport", + "name": "El Boral Airport", + "latitude_deg": "4.734722", + "longitude_deg": "-71.503333", + "elevation_ft": "427", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Orocue", + "scheduled_service": "no", + "local_code": "ORR" + }, + { + "id": "40643", + "ident": "SK-063", + "type": "small_airport", + "name": "El Caimán Airport", + "latitude_deg": "4.856389", + "longitude_deg": "-71.683889", + "elevation_ft": "485", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Orocue", + "scheduled_service": "no", + "local_code": "ORE" + }, + { + "id": "40614", + "ident": "SK-064", + "type": "small_airport", + "name": "El Cairo Airport", + "latitude_deg": "6.064722", + "longitude_deg": "-71.204444", + "elevation_ft": "460", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Hato Corozal", + "scheduled_service": "no", + "local_code": "HCO" + }, + { + "id": "40618", + "ident": "SK-065", + "type": "small_airport", + "name": "El Danubio Airport", + "latitude_deg": "6.261111", + "longitude_deg": "-71.224722", + "elevation_ft": "480", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Hato Corozal", + "scheduled_service": "no", + "local_code": "HTC" + }, + { + "id": "40666", + "ident": "SK-066", + "type": "small_airport", + "name": "El Deshecho Airport", + "latitude_deg": "5.621944", + "longitude_deg": "-72.067778", + "elevation_ft": "840", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Nunchia", + "scheduled_service": "no", + "local_code": "NUN" + }, + { + "id": "40645", + "ident": "SK-067", + "type": "small_airport", + "name": "El Medano Airport", + "latitude_deg": "4.799722", + "longitude_deg": "-71.7125", + "elevation_ft": "481", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Orocue", + "scheduled_service": "no", + "local_code": "ORU" + }, + { + "id": "40685", + "ident": "SK-068", + "type": "small_airport", + "name": "El Moriche Airport", + "latitude_deg": "5.015556", + "longitude_deg": "-72.406944", + "elevation_ft": "670", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Aguazul", + "scheduled_service": "no", + "local_code": "AGM" + }, + { + "id": "40684", + "ident": "SK-069", + "type": "small_airport", + "name": "El Porvenir Airport", + "latitude_deg": "5.199722", + "longitude_deg": "-72.406667", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Aguazul", + "scheduled_service": "no", + "local_code": "AZG" + }, + { + "id": "40695", + "ident": "SK-070", + "type": "small_airport", + "name": "El Recreo Airport", + "latitude_deg": "5.320556", + "longitude_deg": "-72.577778", + "elevation_ft": "2722", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "San Luis De Palenque", + "scheduled_service": "no", + "local_code": "ELE" + }, + { + "id": "40658", + "ident": "SK-071", + "type": "small_airport", + "name": "El Rodeo Airport", + "latitude_deg": "4.753889", + "longitude_deg": "-71.931667", + "elevation_ft": "491", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Orocue", + "scheduled_service": "no", + "local_code": "ORM" + }, + { + "id": "40633", + "ident": "SK-072", + "type": "small_airport", + "name": "El Viejo Carmen Airport", + "latitude_deg": "4.8875", + "longitude_deg": "-71.568333", + "elevation_ft": "476", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Orocue", + "scheduled_service": "no", + "local_code": "OCE" + }, + { + "id": "40715", + "ident": "SK-073", + "type": "small_airport", + "name": "El Vigía Airport", + "latitude_deg": "4.562222", + "longitude_deg": "-72.9425", + "elevation_ft": "725", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Villanueva", + "scheduled_service": "no", + "local_code": "EVC" + }, + { + "id": "40681", + "ident": "SK-074", + "type": "small_airport", + "name": "El Zamuro Airport", + "latitude_deg": "5.124444", + "longitude_deg": "-72.336944", + "elevation_ft": "688", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "El Yopal", + "scheduled_service": "no", + "local_code": "ELZ" + }, + { + "id": "40649", + "ident": "SK-075", + "type": "small_airport", + "name": "Elf Trinidad Airport", + "latitude_deg": "5.504444", + "longitude_deg": "-71.770833", + "elevation_ft": "581", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Trinidad", + "scheduled_service": "no", + "local_code": "TDI" + }, + { + "id": "40667", + "ident": "SK-076", + "type": "small_airport", + "name": "Estero Airport", + "latitude_deg": "4.676389", + "longitude_deg": "-72.123611", + "elevation_ft": "524", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Maní", + "scheduled_service": "no", + "local_code": "MAI" + }, + { + "id": "40692", + "ident": "SK-077", + "type": "small_airport", + "name": "Fasca Main Base Airport", + "latitude_deg": "5.155278", + "longitude_deg": "-72.520833", + "elevation_ft": "853", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Aguazul", + "scheduled_service": "no", + "local_code": "FCA" + }, + { + "id": "40677", + "ident": "SK-078", + "type": "small_airport", + "name": "Germania Airport", + "latitude_deg": "5.186111", + "longitude_deg": "-72.32", + "elevation_ft": "702", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Yopal", + "scheduled_service": "no", + "local_code": "YPP" + }, + { + "id": "40625", + "ident": "SK-079", + "type": "small_airport", + "name": "Guanapalo Airport", + "latitude_deg": "5.180556", + "longitude_deg": "-71.428889", + "elevation_ft": "475", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Orocue", + "scheduled_service": "no", + "local_code": "ORO" + }, + { + "id": "40636", + "ident": "SK-080", + "type": "small_airport", + "name": "Guarilaque Airport", + "latitude_deg": "4.89", + "longitude_deg": "-71.592222", + "elevation_ft": "6375", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Orocue", + "scheduled_service": "no", + "local_code": "ORA" + }, + { + "id": "40624", + "ident": "SK-081", + "type": "small_airport", + "name": "Hato La Aurora Airport", + "latitude_deg": "6.033056", + "longitude_deg": "-71.381944", + "elevation_ft": "512", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Hato Corozal", + "scheduled_service": "no", + "local_code": "HOZ" + }, + { + "id": "40688", + "ident": "SK-082", + "type": "small_airport", + "name": "Jamaica Airport", + "latitude_deg": "5.092778", + "longitude_deg": "-72.450278", + "elevation_ft": "751", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Aguazul", + "scheduled_service": "no", + "local_code": "AGJ" + }, + { + "id": "40656", + "ident": "SK-083", + "type": "small_airport", + "name": "La Barquereña Airport", + "latitude_deg": "5.396111", + "longitude_deg": "-71.911667", + "elevation_ft": "594", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Nunchia", + "scheduled_service": "no", + "local_code": "LAB" + }, + { + "id": "40647", + "ident": "SK-084", + "type": "small_airport", + "name": "La Bramadora Airport", + "latitude_deg": "5.195556", + "longitude_deg": "-71.7475", + "elevation_ft": "533", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "San Luis De Palenque", + "scheduled_service": "no", + "local_code": "SLI" + }, + { + "id": "40637", + "ident": "SK-085", + "type": "small_airport", + "name": "La Candelaria Airport", + "latitude_deg": "5.111111", + "longitude_deg": "-71.628056", + "elevation_ft": "509", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Orocue", + "scheduled_service": "no", + "local_code": "ORX" + }, + { + "id": "40610", + "ident": "SK-086", + "type": "small_airport", + "name": "La Carpeta Airport", + "latitude_deg": "5.958611", + "longitude_deg": "-70.94", + "elevation_ft": "423", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Paz De Ariporo", + "scheduled_service": "no", + "local_code": "LAP" + }, + { + "id": "40661", + "ident": "SK-087", + "type": "small_airport", + "name": "La Ceiba Airport", + "latitude_deg": "5.445833", + "longitude_deg": "-72.003889", + "elevation_ft": "948", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Nunchia", + "scheduled_service": "no", + "local_code": "NUA" + }, + { + "id": "40626", + "ident": "SK-088", + "type": "small_airport", + "name": "La Chapa Airport", + "latitude_deg": "5.933333", + "longitude_deg": "-71.45", + "elevation_ft": "534", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Hato Coro", + "scheduled_service": "no", + "local_code": "CHP" + }, + { + "id": "40631", + "ident": "SK-089", + "type": "small_airport", + "name": "La Colonia Airport", + "latitude_deg": "5.763889", + "longitude_deg": "-71.531389", + "elevation_ft": "556", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Paz De Ariporo", + "scheduled_service": "no", + "local_code": "PDR" + }, + { + "id": "40699", + "ident": "SK-090", + "type": "small_airport", + "name": "La Concordia Airport", + "latitude_deg": "4.930833", + "longitude_deg": "-72.641389", + "elevation_ft": "791", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Tauramena", + "scheduled_service": "no", + "local_code": "TRM" + }, + { + "id": "40639", + "ident": "SK-091", + "type": "small_airport", + "name": "La Culebra Airport", + "latitude_deg": "4.9025", + "longitude_deg": "-71.634722", + "elevation_ft": "478", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Orocue", + "scheduled_service": "no", + "local_code": "ORJ" + }, + { + "id": "40694", + "ident": "SK-092", + "type": "small_airport", + "name": "La Envidia Airport", + "latitude_deg": "4.413333", + "longitude_deg": "-72.570556", + "elevation_ft": "550", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Tauramena", + "scheduled_service": "no", + "local_code": "TRE" + }, + { + "id": "40652", + "ident": "SK-093", + "type": "small_airport", + "name": "La Flora Airport", + "latitude_deg": "5.209722", + "longitude_deg": "-71.810556", + "elevation_ft": "549", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "San Luis De Palenque", + "scheduled_service": "no", + "local_code": "NUC" + }, + { + "id": "40682", + "ident": "SK-094", + "type": "small_airport", + "name": "La Gloria Airport", + "latitude_deg": "5.006389", + "longitude_deg": "-72.356111", + "elevation_ft": "650", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Maní", + "scheduled_service": "no", + "local_code": "MNO" + }, + { + "id": "40668", + "ident": "SK-095", + "type": "small_airport", + "name": "La Nevera Airport", + "latitude_deg": "5.512222", + "longitude_deg": "-72.129167", + "elevation_ft": "766", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Nunchia", + "scheduled_service": "no", + "local_code": "NIA" + }, + { + "id": "40641", + "ident": "SK-096", + "type": "small_airport", + "name": "La Pista Airport", + "latitude_deg": "4.827778", + "longitude_deg": "-71.6675", + "elevation_ft": "477", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Orocue", + "scheduled_service": "no", + "local_code": "LAL" + }, + { + "id": "40670", + "ident": "SK-097", + "type": "small_airport", + "name": "La Reforma Airport", + "latitude_deg": "5.429444", + "longitude_deg": "-72.163611", + "elevation_ft": "707", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Nunchia", + "scheduled_service": "no", + "local_code": "NCC" + }, + { + "id": "40607", + "ident": "SK-098", + "type": "small_airport", + "name": "La Venganza Airport", + "latitude_deg": "6.022778", + "longitude_deg": "-70.8975", + "elevation_ft": "412", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Paz De Ariporo", + "scheduled_service": "no", + "local_code": "PDE" + }, + { + "id": "40653", + "ident": "SK-099", + "type": "small_airport", + "name": "Las Delicias Airport", + "latitude_deg": "5.215", + "longitude_deg": "-71.813611", + "elevation_ft": "551", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "San Luis De Palenque", + "scheduled_service": "no", + "local_code": "LLI" + }, + { + "id": "40632", + "ident": "SK-100", + "type": "small_airport", + "name": "Lasguabin Airport", + "latitude_deg": "4.710833", + "longitude_deg": "-71.549444", + "elevation_ft": "446", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Orocue", + "scheduled_service": "no", + "local_code": "LAS" + }, + { + "id": "40674", + "ident": "SK-101", + "type": "small_airport", + "name": "Los Cabros Airport", + "latitude_deg": "5.441944", + "longitude_deg": "-72.234444", + "elevation_ft": "730", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Yopal", + "scheduled_service": "no", + "local_code": "YYP" + }, + { + "id": "40673", + "ident": "SK-102", + "type": "small_airport", + "name": "Los Milagros Airport", + "latitude_deg": "4.798056", + "longitude_deg": "-72.234167", + "elevation_ft": "564", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Maní", + "scheduled_service": "no", + "local_code": "LOM" + }, + { + "id": "40616", + "ident": "SK-103", + "type": "small_airport", + "name": "Los Toros Airport", + "latitude_deg": "5.4275", + "longitude_deg": "-71.216389", + "elevation_ft": "447", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Trinidad", + "scheduled_service": "no", + "local_code": "TRI" + }, + { + "id": "40622", + "ident": "SK-104", + "type": "small_airport", + "name": "Malabares Airport", + "latitude_deg": "5.468889", + "longitude_deg": "-71.369167", + "elevation_ft": "489", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Trinidad", + "scheduled_service": "no", + "local_code": "MAL" + }, + { + "id": "40642", + "ident": "SK-106", + "type": "small_airport", + "name": "Mararey Airport", + "latitude_deg": "4.828056", + "longitude_deg": "-71.680833", + "elevation_ft": "482", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Orocue", + "scheduled_service": "no", + "local_code": "MAR" + }, + { + "id": "40687", + "ident": "SK-107", + "type": "small_airport", + "name": "Maríaangélica Airport", + "latitude_deg": "5.054167", + "longitude_deg": "-72.445278", + "elevation_ft": "715", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Aguazul", + "scheduled_service": "no", + "local_code": "AGU" + }, + { + "id": "40655", + "ident": "SK-108", + "type": "small_airport", + "name": "Matenovillos Airport", + "latitude_deg": "5.213889", + "longitude_deg": "-71.853333", + "elevation_ft": "564", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "San Luis De Palenque", + "scheduled_service": "no", + "local_code": "SLY" + }, + { + "id": "41032", + "ident": "SK-109", + "type": "small_airport", + "name": "Monterrey Airport", + "latitude_deg": "4.906926", + "longitude_deg": "-72.894809", + "elevation_ft": "1500", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Monterrey", + "scheduled_service": "no", + "iata_code": "MOY", + "local_code": "MOY" + }, + { + "id": "41028", + "ident": "SK-110", + "type": "small_airport", + "name": "Nunchia Airport", + "latitude_deg": "5.65", + "longitude_deg": "-72.2", + "elevation_ft": "1849", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Nunchia", + "scheduled_service": "no", + "local_code": "NUH" + }, + { + "id": "40664", + "ident": "SK-111", + "type": "small_airport", + "name": "Palma Rosa Airport", + "latitude_deg": "5.566667", + "longitude_deg": "-72.06", + "elevation_ft": "733", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Nunchia", + "scheduled_service": "no", + "local_code": "NUT" + }, + { + "id": "40712", + "ident": "SK-112", + "type": "small_airport", + "name": "Palmar De Oriente Airport", + "latitude_deg": "4.498611", + "longitude_deg": "-72.845833", + "elevation_ft": "652", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Villanueva", + "scheduled_service": "no", + "local_code": "VLU" + }, + { + "id": "40619", + "ident": "SK-113", + "type": "small_airport", + "name": "Palmarito Airport", + "latitude_deg": "5.332222", + "longitude_deg": "-71.234722", + "elevation_ft": "449", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Trinidad", + "scheduled_service": "no", + "local_code": "TRD" + }, + { + "id": "40710", + "ident": "SK-114", + "type": "small_airport", + "name": "Palmas Del Casana Airport", + "latitude_deg": "4.601944", + "longitude_deg": "-72.829722", + "elevation_ft": "655", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Villanueva", + "scheduled_service": "no", + "local_code": "VIL" + }, + { + "id": "41036", + "ident": "SK-115", + "type": "small_airport", + "name": "Paratebueno Airport", + "latitude_deg": "4.383333", + "longitude_deg": "-73.2", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Paratebueno", + "scheduled_service": "no", + "iata_code": "EUO", + "local_code": "EUO" + }, + { + "id": "41026", + "ident": "SK-116", + "type": "small_airport", + "name": "Pore Airport", + "latitude_deg": "5.733333", + "longitude_deg": "-71.983333", + "elevation_ft": "975", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Pore", + "scheduled_service": "no", + "iata_code": "PRE", + "local_code": "POR" + }, + { + "id": "40696", + "ident": "SK-117", + "type": "small_airport", + "name": "Providencia Airport", + "latitude_deg": "4.971389", + "longitude_deg": "-72.595833", + "elevation_ft": "751", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Tauramena", + "scheduled_service": "no", + "local_code": "TNU" + }, + { + "id": "40724", + "ident": "SK-118", + "type": "small_airport", + "name": "Sabanalarga Airport", + "latitude_deg": "4.816667", + "longitude_deg": "-73.033333", + "elevation_ft": "1188", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Sabanalarga", + "scheduled_service": "no", + "local_code": "SLC" + }, + { + "id": "40644", + "ident": "SK-119", + "type": "small_airport", + "name": "San Fernandof Airport", + "latitude_deg": "5.666667", + "longitude_deg": "-71.683889", + "elevation_ft": "584", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Paz De Arif", + "scheduled_service": "no", + "local_code": "SAN" + }, + { + "id": "41023", + "ident": "SK-120", + "type": "small_airport", + "name": "San Luis De Palenque Airport", + "latitude_deg": "5.400181", + "longitude_deg": "-71.7001", + "elevation_ft": "551", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "San Luis De Palenque", + "scheduled_service": "no", + "iata_code": "SQE", + "local_code": "SQE" + }, + { + "id": "40638", + "ident": "SK-121", + "type": "small_airport", + "name": "San Pablo Airport", + "latitude_deg": "4.785833", + "longitude_deg": "-71.630833", + "elevation_ft": "489", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Orocue", + "scheduled_service": "no", + "local_code": "OOR" + }, + { + "id": "40651", + "ident": "SK-122", + "type": "small_airport", + "name": "Santa Ana Airport", + "latitude_deg": "5.087778", + "longitude_deg": "-71.789722", + "elevation_ft": "540", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Orocue", + "scheduled_service": "no", + "local_code": "SAA" + }, + { + "id": "40706", + "ident": "SK-123", + "type": "small_airport", + "name": "Santa Clara Airport", + "latitude_deg": "4.415833", + "longitude_deg": "-72.773889", + "elevation_ft": "559", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Sabanalarga", + "scheduled_service": "no", + "local_code": "SAT" + }, + { + "id": "40705", + "ident": "SK-124", + "type": "small_airport", + "name": "Santa Helena De Upia Airport", + "latitude_deg": "4.35", + "longitude_deg": "-72.760278", + "elevation_ft": "546", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Villanueva", + "scheduled_service": "no", + "local_code": "SHL" + }, + { + "id": "40630", + "ident": "SK-126", + "type": "small_airport", + "name": "Sardinas Airport", + "latitude_deg": "4.983611", + "longitude_deg": "-71.513333", + "elevation_ft": "478", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Orocue", + "scheduled_service": "no", + "local_code": "ORS" + }, + { + "id": "40707", + "ident": "SK-127", + "type": "small_airport", + "name": "Señorías Airport", + "latitude_deg": "4.387778", + "longitude_deg": "-72.7775", + "elevation_ft": "561", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Villanueva", + "scheduled_service": "no", + "local_code": "VLE" + }, + { + "id": "40708", + "ident": "SK-128", + "type": "small_airport", + "name": "Soceagro Airport", + "latitude_deg": "4.483889", + "longitude_deg": "-72.8225", + "elevation_ft": "612", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Villanueva", + "scheduled_service": "no", + "local_code": "VNU" + }, + { + "id": "40671", + "ident": "SK-129", + "type": "small_airport", + "name": "Tablón De Tamara Airport", + "latitude_deg": "5.733333", + "longitude_deg": "-72.166667", + "elevation_ft": "1605", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Tablón De Tamara", + "scheduled_service": "no", + "local_code": "TTM" + }, + { + "id": "40701", + "ident": "SK-130", + "type": "small_airport", + "name": "Tarqui Airport", + "latitude_deg": "4.755556", + "longitude_deg": "-72.699167", + "elevation_ft": "702", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Tauramena", + "scheduled_service": "no", + "local_code": "TMA" + }, + { + "id": "41031", + "ident": "SK-131", + "type": "small_airport", + "name": "Tauramena Airport", + "latitude_deg": "5.01281", + "longitude_deg": "-72.7424", + "elevation_ft": "1462", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Tauramena", + "scheduled_service": "no", + "gps_code": "SKTA", + "iata_code": "TAU", + "local_code": "TAU" + }, + { + "id": "40683", + "ident": "SK-132", + "type": "small_airport", + "name": "Tío Bayo Airport", + "latitude_deg": "4.884722", + "longitude_deg": "-72.366944", + "elevation_ft": "608", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Maní", + "scheduled_service": "no", + "local_code": "MYN" + }, + { + "id": "40672", + "ident": "SK-133", + "type": "small_airport", + "name": "Trompillos Airport", + "latitude_deg": "5.129167", + "longitude_deg": "-72.180833", + "elevation_ft": "636", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Yopal", + "scheduled_service": "no", + "local_code": "YOP" + }, + { + "id": "40601", + "ident": "SK-134", + "type": "small_airport", + "name": "Venecia De Guamas Airport", + "latitude_deg": "5.691944", + "longitude_deg": "-70.739722", + "elevation_ft": "389", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Paz De Ariporo", + "scheduled_service": "no", + "local_code": "PZI" + }, + { + "id": "40675", + "ident": "SK-135", + "type": "small_airport", + "name": "Villa Andrea Airport", + "latitude_deg": "4.792778", + "longitude_deg": "-72.234444", + "elevation_ft": "567", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Maní", + "scheduled_service": "no", + "local_code": "MNY" + }, + { + "id": "40997", + "ident": "SK-136", + "type": "small_airport", + "name": "El Guayabx Airport", + "latitude_deg": "2.091111", + "longitude_deg": "-76.955", + "elevation_ft": "2980", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAU", + "municipality": "Patia", + "scheduled_service": "no", + "local_code": "EGY" + }, + { + "id": "40978", + "ident": "SK-137", + "type": "small_airport", + "name": "Ingenio Incauca Airport", + "latitude_deg": "3.268889", + "longitude_deg": "-76.333889", + "elevation_ft": "3252", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAU", + "municipality": "Miranda", + "scheduled_service": "no", + "local_code": "MDA" + }, + { + "id": "40985", + "ident": "SK-138", + "type": "small_airport", + "name": "La Arrobleda Airport", + "latitude_deg": "3.125", + "longitude_deg": "-76.431667", + "elevation_ft": "3244", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAU", + "municipality": "Caloto", + "scheduled_service": "no", + "local_code": "LAR" + }, + { + "id": "40984", + "ident": "SK-139", + "type": "small_airport", + "name": "La Cabaña Airport", + "latitude_deg": "3.04428", + "longitude_deg": "-76.4106", + "elevation_ft": "3554", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAU", + "municipality": "Caloto", + "scheduled_service": "no", + "local_code": "CTO" + }, + { + "id": "41081", + "ident": "SK-140", + "type": "small_airport", + "name": "Lopez De Micay Airport", + "latitude_deg": "3.04318", + "longitude_deg": "-77.5522", + "elevation_ft": "60", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAU", + "municipality": "Micay", + "scheduled_service": "no", + "local_code": "LMX" + }, + { + "id": "40975", + "ident": "SK-141", + "type": "small_airport", + "name": "San Jacinto Airport", + "latitude_deg": "3.185833", + "longitude_deg": "-76.326111", + "elevation_ft": "3261", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAU", + "municipality": "Padilla", + "scheduled_service": "no", + "local_code": "SJP" + }, + { + "id": "41082", + "ident": "SK-142", + "type": "small_airport", + "name": "Timbiqui Airport", + "latitude_deg": "2.7701", + "longitude_deg": "-77.6433", + "elevation_ft": "145", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAU", + "municipality": "Timbiqui", + "scheduled_service": "no", + "local_code": "TBD" + }, + { + "id": "40763", + "ident": "SK-143", + "type": "small_airport", + "name": "Ana María Airport", + "latitude_deg": "10.0375", + "longitude_deg": "-73.283611", + "elevation_ft": "331", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Codazzi", + "scheduled_service": "no", + "local_code": "ANN" + }, + { + "id": "41044", + "ident": "SK-144", + "type": "small_airport", + "name": "Ayacucho Airport", + "latitude_deg": "8.6", + "longitude_deg": "-73.616667", + "elevation_ft": "415", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Ayacucho", + "scheduled_service": "no", + "iata_code": "AYC", + "local_code": "AYC" + }, + { + "id": "40818", + "ident": "SK-145", + "type": "small_airport", + "name": "Base Principal Celta Airport", + "latitude_deg": "8.2025", + "longitude_deg": "-73.631667", + "elevation_ft": "317", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Aguachica", + "scheduled_service": "no", + "local_code": "AGY" + }, + { + "id": "40831", + "ident": "SK-146", + "type": "small_airport", + "name": "Bella Cruz - San Juan Airport", + "latitude_deg": "8.623333", + "longitude_deg": "-73.731944", + "elevation_ft": "141", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "La Gloria", + "scheduled_service": "no", + "local_code": "LGL" + }, + { + "id": "40860", + "ident": "SK-147", + "type": "small_airport", + "name": "Bethania Airport", + "latitude_deg": "10.116667", + "longitude_deg": "-74.425", + "elevation_ft": "426", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "El Copey", + "scheduled_service": "no", + "local_code": "CES" + }, + { + "id": "40822", + "ident": "SK-148", + "type": "small_airport", + "name": "Buenos Aires Airport", + "latitude_deg": "9.02", + "longitude_deg": "-73.6725", + "elevation_ft": "224", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Pailitas", + "scheduled_service": "no", + "local_code": "BNP" + }, + { + "id": "40796", + "ident": "SK-149", + "type": "small_airport", + "name": "Calenturitas Airport", + "latitude_deg": "9.652073", + "longitude_deg": "-73.495134", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "La Loma", + "scheduled_service": "no", + "gps_code": "SKAL", + "local_code": "LLO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Calenturitas_Airport" + }, + { + "id": "40819", + "ident": "SK-150", + "type": "small_airport", + "name": "Calima Airport", + "latitude_deg": "8.283333", + "longitude_deg": "-73.645833", + "elevation_ft": "400", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Aguachica", + "scheduled_service": "no", + "local_code": "CAL" + }, + { + "id": "40736", + "ident": "SK-151", + "type": "small_airport", + "name": "Campo Alegre Airport", + "latitude_deg": "10.6475", + "longitude_deg": "-73.148056", + "elevation_ft": "677", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Valledupa", + "scheduled_service": "no", + "local_code": "VAP" + }, + { + "id": "40753", + "ident": "SK-152", + "type": "small_airport", + "name": "Casacara Cayta Airport", + "latitude_deg": "9.928056", + "longitude_deg": "-73.253056", + "elevation_ft": "321", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Codazzi", + "scheduled_service": "no", + "local_code": "CAG" + }, + { + "id": "40764", + "ident": "SK-153", + "type": "small_airport", + "name": "Cerro De Piedra Airport", + "latitude_deg": "9.562222", + "longitude_deg": "-73.293889", + "elevation_ft": "572", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "La Jagua De Ibirico", + "scheduled_service": "no", + "local_code": "LJD" + }, + { + "id": "41042", + "ident": "SK-154", + "type": "small_airport", + "name": "Codazzi Airport", + "latitude_deg": "9.6", + "longitude_deg": "-73.45", + "elevation_ft": "439", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Hacienda Borrero", + "scheduled_service": "no", + "iata_code": "DZI", + "local_code": "DZI" + }, + { + "id": "40788", + "ident": "SK-155", + "type": "small_airport", + "name": "El Bosque Airport", + "latitude_deg": "7.810556", + "longitude_deg": "-73.448333", + "elevation_ft": "249", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "San Alberto", + "scheduled_service": "no", + "local_code": "SAR" + }, + { + "id": "40758", + "ident": "SK-156", + "type": "small_airport", + "name": "El Monasterio Airport", + "latitude_deg": "8.944722", + "longitude_deg": "-73.258333", + "elevation_ft": "745", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Acacias", + "scheduled_service": "no", + "local_code": "ACI" + }, + { + "id": "40789", + "ident": "SK-158", + "type": "small_airport", + "name": "Elborrego Airport", + "latitude_deg": "9.587778", + "longitude_deg": "-73.455278", + "elevation_ft": "229", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "La Loma", + "scheduled_service": "no", + "local_code": "LJB" + }, + { + "id": "40824", + "ident": "SK-159", + "type": "small_airport", + "name": "Fabal-Coal Airport", + "latitude_deg": "8.247222", + "longitude_deg": "-73.693611", + "elevation_ft": "191", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Gamarra", + "scheduled_service": "no", + "local_code": "AFC" + }, + { + "id": "41045", + "ident": "SK-160", + "type": "small_airport", + "name": "Gamarra Airport", + "latitude_deg": "8.20199", + "longitude_deg": "-73.7653", + "elevation_ft": "130", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Puerto Mosquito", + "scheduled_service": "no", + "local_code": "GRA" + }, + { + "id": "40825", + "ident": "SK-161", + "type": "small_airport", + "name": "Germania Airport", + "latitude_deg": "8.333333", + "longitude_deg": "-73.695", + "elevation_ft": "225", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Gamarra", + "scheduled_service": "no", + "local_code": "GER" + }, + { + "id": "40791", + "ident": "SK-162", + "type": "small_airport", + "name": "Hipilandia Airport", + "latitude_deg": "7.892778", + "longitude_deg": "-73.462222", + "elevation_ft": "305", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "San Alberto", + "scheduled_service": "no", + "local_code": "SNL" + }, + { + "id": "40787", + "ident": "SK-163", + "type": "small_airport", + "name": "Irho Airport", + "latitude_deg": "7.734444", + "longitude_deg": "-73.434167", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "San Alberto", + "scheduled_service": "no", + "local_code": "IRH" + }, + { + "id": "40840", + "ident": "SK-164", + "type": "small_airport", + "name": "Julia Carolina Airport", + "latitude_deg": "9.942222", + "longitude_deg": "-73.868056", + "elevation_ft": "256", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Bosconia", + "scheduled_service": "no", + "local_code": "BCO" + }, + { + "id": "40805", + "ident": "SK-165", + "type": "small_airport", + "name": "La Cacica Airport", + "latitude_deg": "7.985833", + "longitude_deg": "-73.577778", + "elevation_ft": "220", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "San Martin", + "scheduled_service": "no", + "local_code": "LCI" + }, + { + "id": "40784", + "ident": "SK-166", + "type": "small_airport", + "name": "La Dilia Airport", + "latitude_deg": "9.895", + "longitude_deg": "-73.408889", + "elevation_ft": "208", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Codazzi", + "scheduled_service": "no", + "local_code": "LAD" + }, + { + "id": "40769", + "ident": "SK-167", + "type": "small_airport", + "name": "La Esperanza Airport", + "latitude_deg": "9.907778", + "longitude_deg": "-73.3225", + "elevation_ft": "255", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Codazzi", + "scheduled_service": "no", + "local_code": "EPZ" + }, + { + "id": "40847", + "ident": "SK-168", + "type": "small_airport", + "name": "La Fe Airport", + "latitude_deg": "10.130278", + "longitude_deg": "-74.039444", + "elevation_ft": "339", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "El Copey", + "scheduled_service": "no", + "local_code": "ECU" + }, + { + "id": "40817", + "ident": "SK-169", + "type": "small_airport", + "name": "La Irlanda Airport", + "latitude_deg": "9.619722", + "longitude_deg": "-73.630833", + "elevation_ft": "141", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "El Paso", + "scheduled_service": "no", + "local_code": "LAI" + }, + { + "id": "40801", + "ident": "SK-170", + "type": "small_airport", + "name": "La Jagua De Ibir Airport", + "latitude_deg": "9.620556", + "longitude_deg": "-73.536389", + "elevation_ft": "157", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "La Jagua De Ibir", + "scheduled_service": "no", + "local_code": "LJC" + }, + { + "id": "40760", + "ident": "SK-171", + "type": "small_airport", + "name": "La Matua Airport", + "latitude_deg": "10.207222", + "longitude_deg": "-73.263333", + "elevation_ft": "343", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "San Diego", + "scheduled_service": "no", + "local_code": "LAT" + }, + { + "id": "40828", + "ident": "SK-172", + "type": "small_airport", + "name": "La Nena Cayta Airport", + "latitude_deg": "8.206111", + "longitude_deg": "-73.700833", + "elevation_ft": "167", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Gamarra", + "scheduled_service": "no", + "local_code": "GAM" + }, + { + "id": "40839", + "ident": "SK-173", + "type": "small_airport", + "name": "La Palma Airport", + "latitude_deg": "9.839444", + "longitude_deg": "-73.867222", + "elevation_ft": "175", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Bosconia", + "scheduled_service": "no", + "local_code": "LPA" + }, + { + "id": "40751", + "ident": "SK-174", + "type": "small_airport", + "name": "Las Flores Airport", + "latitude_deg": "10.096608", + "longitude_deg": "-73.2337", + "elevation_ft": "399", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Codazzi", + "scheduled_service": "no", + "iata_code": "DZI", + "local_code": "LFL" + }, + { + "id": "40833", + "ident": "SK-175", + "type": "small_airport", + "name": "Las Tapias Airport", + "latitude_deg": "8.686667", + "longitude_deg": "-73.765278", + "elevation_ft": "116", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "La Gloria", + "scheduled_service": "no", + "local_code": "LTA" + }, + { + "id": "40823", + "ident": "SK-176", + "type": "small_airport", + "name": "Los Monjes Airport", + "latitude_deg": "7.992778", + "longitude_deg": "-73.675", + "elevation_ft": "150", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "San Martin", + "scheduled_service": "no", + "local_code": "SNT" + }, + { + "id": "40776", + "ident": "SK-177", + "type": "small_airport", + "name": "Madaci Airport", + "latitude_deg": "10.3275", + "longitude_deg": "-73.371944", + "elevation_ft": "385", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Valledupa", + "scheduled_service": "no", + "local_code": "VDP" + }, + { + "id": "40750", + "ident": "SK-178", + "type": "small_airport", + "name": "Monteliban Airport", + "latitude_deg": "9.886389", + "longitude_deg": "-73.2425", + "elevation_ft": "356", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Codazzi", + "scheduled_service": "no", + "local_code": "MOC" + }, + { + "id": "40777", + "ident": "SK-179", + "type": "small_airport", + "name": "Nueva Granada Airport", + "latitude_deg": "9.578889", + "longitude_deg": "-73.373056", + "elevation_ft": "301", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "La Jagua De Ibirico", + "scheduled_service": "no", + "local_code": "LJI" + }, + { + "id": "40762", + "ident": "SK-180", + "type": "small_airport", + "name": "Pororó Airport", + "latitude_deg": "9.9375", + "longitude_deg": "-73.273889", + "elevation_ft": "291", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Codazzi", + "scheduled_service": "no", + "local_code": "PRO" + }, + { + "id": "40798", + "ident": "SK-181", + "type": "small_airport", + "name": "Sabaneta Airport", + "latitude_deg": "8.025556", + "longitude_deg": "-73.515833", + "elevation_ft": "319", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "San Martin", + "scheduled_service": "no", + "local_code": "SMD" + }, + { + "id": "40770", + "ident": "SK-182", + "type": "small_airport", + "name": "Sala 77 Airport", + "latitude_deg": "10.355556", + "longitude_deg": "-73.333333", + "elevation_ft": "388", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Valledupa", + "scheduled_service": "no", + "local_code": "SSC" + }, + { + "id": "41035", + "ident": "SK-183", + "type": "small_airport", + "name": "San Juan Del César Airport", + "latitude_deg": "10.766667", + "longitude_deg": "-73.016667", + "elevation_ft": "3608", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "San Juan Del César", + "scheduled_service": "no", + "iata_code": "SJH", + "local_code": "SJH" + }, + { + "id": "40841", + "ident": "SK-184", + "type": "small_airport", + "name": "San Martin Airport", + "latitude_deg": "9.955556", + "longitude_deg": "-73.875556", + "elevation_ft": "259", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Bosconia", + "scheduled_service": "no", + "local_code": "BOC" + }, + { + "id": "40746", + "ident": "SK-185", + "type": "small_airport", + "name": "Tamaca Airport", + "latitude_deg": "9.916667", + "longitude_deg": "-73.231389", + "elevation_ft": "348", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Codazzi", + "scheduled_service": "no", + "local_code": "COZ" + }, + { + "id": "40811", + "ident": "SK-186", + "type": "small_airport", + "name": "Villa Oliva Airport", + "latitude_deg": "7.963056", + "longitude_deg": "-73.593889", + "elevation_ft": "195", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "San Martin", + "scheduled_service": "no", + "local_code": "VOA" + }, + { + "id": "40804", + "ident": "SK-187", + "type": "small_airport", + "name": "Villa Rosa Airport", + "latitude_deg": "10.203889", + "longitude_deg": "-73.555556", + "elevation_ft": "316", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Valledupa", + "scheduled_service": "no", + "local_code": "VDL" + }, + { + "id": "41001", + "ident": "SK-188", + "type": "small_airport", + "name": "Alfemar Airport", + "latitude_deg": "7.010278", + "longitude_deg": "-77.676944", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CHO", + "municipality": "Jurado", + "scheduled_service": "no", + "local_code": "ALR" + }, + { + "id": "41080", + "ident": "SK-189", + "type": "small_airport", + "name": "Bahia Cupica Airport", + "latitude_deg": "6.55", + "longitude_deg": "-77.3263", + "elevation_ft": "200", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CHO", + "municipality": "Bahía Cupica", + "scheduled_service": "no", + "iata_code": "BHF", + "local_code": "BHF" + }, + { + "id": "41002", + "ident": "SK-190", + "type": "small_airport", + "name": "Cabo Marzo Airport", + "latitude_deg": "6.881389", + "longitude_deg": "-77.680556", + "elevation_ft": "87", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CHO", + "municipality": "Jurado", + "scheduled_service": "no", + "local_code": "CAM" + }, + { + "id": "40998", + "ident": "SK-192", + "type": "small_airport", + "name": "El Gilgal Airport", + "latitude_deg": "8.190978", + "longitude_deg": "-77.078646", + "elevation_ft": "89", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CHO", + "municipality": "Acandí", + "scheduled_service": "no", + "local_code": "EGI" + }, + { + "id": "41078", + "ident": "SK-193", + "type": "small_airport", + "name": "Gilgal Airport", + "latitude_deg": "8.190674", + "longitude_deg": "-77.078576", + "elevation_ft": "148", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CHO", + "municipality": "Acandí", + "scheduled_service": "no", + "iata_code": "GGL", + "local_code": "GGL" + }, + { + "id": "41003", + "ident": "SK-194", + "type": "small_airport", + "name": "Jurado Airport", + "latitude_deg": "7.091667", + "longitude_deg": "-77.740278", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CHO", + "municipality": "Jurado", + "scheduled_service": "no", + "local_code": "JUR" + }, + { + "id": "40999", + "ident": "SK-195", + "type": "small_airport", + "name": "Pizarro Airport", + "latitude_deg": "4.975", + "longitude_deg": "-77.375", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CHO", + "municipality": "Bajo Baud0", + "scheduled_service": "no", + "local_code": "BBA" + }, + { + "id": "41077", + "ident": "SK-196", + "type": "small_airport", + "name": "Santa María del Darién Airport", + "latitude_deg": "8.166011", + "longitude_deg": "-77.051754", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CHO", + "municipality": "Unguía", + "scheduled_service": "no", + "local_code": "SMC" + }, + { + "id": "41079", + "ident": "SK-197", + "type": "small_airport", + "name": "Unguia Airport", + "latitude_deg": "8.033333", + "longitude_deg": "-77.083333", + "elevation_ft": "120", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CHO", + "municipality": "Arquia", + "scheduled_service": "no", + "iata_code": "UNC", + "local_code": "UNC" + }, + { + "id": "41059", + "ident": "SK-198", + "type": "small_airport", + "name": "Ayapel Airport", + "latitude_deg": "8.3", + "longitude_deg": "-75.15", + "elevation_ft": "120", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-COR", + "municipality": "Ayapel", + "scheduled_service": "no", + "iata_code": "AYA", + "local_code": "AYA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ayapel_Airport" + }, + { + "id": "40963", + "ident": "SK-199", + "type": "small_airport", + "name": "Chapinero Airport", + "latitude_deg": "7.346944", + "longitude_deg": "-76.079722", + "elevation_ft": "2360", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-COR", + "municipality": "Tierralta", + "scheduled_service": "no", + "local_code": "CHR" + }, + { + "id": "40916", + "ident": "SK-200", + "type": "small_airport", + "name": "El Cebruno Airport", + "latitude_deg": "8.329167", + "longitude_deg": "-75.132222", + "elevation_ft": "81", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-COR", + "municipality": "Ayapel", + "scheduled_service": "no", + "local_code": "CEB" + }, + { + "id": "40897", + "ident": "SK-201", + "type": "small_airport", + "name": "La Concepción Airport", + "latitude_deg": "8.119444", + "longitude_deg": "-75.008611", + "elevation_ft": "205", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-COR", + "municipality": "Ayapel", + "scheduled_service": "no", + "local_code": "LAN" + }, + { + "id": "40945", + "ident": "SK-202", + "type": "small_airport", + "name": "La Esperanza Airport", + "latitude_deg": "7.868889", + "longitude_deg": "-75.675556", + "elevation_ft": "261", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-COR", + "municipality": "Puerto Libertador", + "scheduled_service": "no", + "local_code": "PLK" + }, + { + "id": "40953", + "ident": "SK-203", + "type": "small_airport", + "name": "Los Mochuelos Airport", + "latitude_deg": "8.91", + "longitude_deg": "-75.799167", + "elevation_ft": "34", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-COR", + "municipality": "Cerete", + "scheduled_service": "no", + "local_code": "LME" + }, + { + "id": "41063", + "ident": "SK-204", + "type": "closed", + "name": "Planeta Rica Airport", + "latitude_deg": "8.398853", + "longitude_deg": "-75.577379", + "elevation_ft": "280", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-COR", + "municipality": "Planeta Rica", + "scheduled_service": "no", + "local_code": "PLC" + }, + { + "id": "41065", + "ident": "SK-205", + "type": "small_airport", + "name": "San Pablo Airport", + "latitude_deg": "9.058381", + "longitude_deg": "-75.782021", + "elevation_ft": "250", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-COR", + "municipality": "Cotorra", + "scheduled_service": "no", + "local_code": "SNP" + }, + { + "id": "40950", + "ident": "SK-206", + "type": "small_airport", + "name": "San Pablo Airport", + "latitude_deg": "9.062778", + "longitude_deg": "-75.7825", + "elevation_ft": "18", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-COR", + "municipality": "Loriga", + "scheduled_service": "no", + "local_code": "SNP" + }, + { + "id": "41070", + "ident": "SK-207", + "type": "small_airport", + "name": "Santa Catalina Airport", + "latitude_deg": "8.5", + "longitude_deg": "-76.175", + "elevation_ft": "280", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-COR", + "municipality": "Santa Catalina", + "scheduled_service": "no", + "local_code": "SCA" + }, + { + "id": "40967", + "ident": "SK-208", + "type": "small_airport", + "name": "Urra Airport", + "latitude_deg": "8.005278", + "longitude_deg": "-76.2275", + "elevation_ft": "592", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-COR", + "municipality": "Tierralta", + "scheduled_service": "no", + "local_code": "URT" + }, + { + "id": "40570", + "ident": "SK-209", + "type": "small_airport", + "name": "Barranco Minas Airport", + "latitude_deg": "3.490691", + "longitude_deg": "-69.808151", + "elevation_ft": "430", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-GUA", + "municipality": "Barranco Minas", + "scheduled_service": "no", + "gps_code": "SKBM", + "iata_code": "NBB" + }, + { + "id": "40871", + "ident": "SK-210", + "type": "small_airport", + "name": "Colombaima Airport", + "latitude_deg": "4.739167", + "longitude_deg": "-74.805", + "elevation_ft": "745", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Beltran", + "scheduled_service": "no", + "local_code": "COL" + }, + { + "id": "40757", + "ident": "SK-211", + "type": "small_airport", + "name": "La Aurora Airport", + "latitude_deg": "4.304444", + "longitude_deg": "-73.256667", + "elevation_ft": "808", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Paratebueno", + "scheduled_service": "no", + "local_code": "PRB" + }, + { + "id": "40863", + "ident": "SK-212", + "type": "small_airport", + "name": "La Esperanza Airport", + "latitude_deg": "5.756111", + "longitude_deg": "-74.513056", + "elevation_ft": "625", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Uerto Salgar", + "scheduled_service": "no", + "local_code": "PTS" + }, + { + "id": "40849", + "ident": "SK-213", + "type": "small_airport", + "name": "La Libélula Airport", + "latitude_deg": "4.919444", + "longitude_deg": "-74.055833", + "elevation_ft": "8410", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Cajiga", + "scheduled_service": "no", + "local_code": "CJI" + }, + { + "id": "40739", + "ident": "SK-214", + "type": "small_airport", + "name": "La Paz Airport", + "latitude_deg": "4.297778", + "longitude_deg": "-73.189167", + "elevation_ft": "729", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Paratebueno", + "scheduled_service": "no", + "local_code": "LAZ" + }, + { + "id": "40732", + "ident": "SK-215", + "type": "small_airport", + "name": "La Ponderosa Airport", + "latitude_deg": "4.287778", + "longitude_deg": "-73.133889", + "elevation_ft": "665", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Paratebueno", + "scheduled_service": "no", + "local_code": "PBR" + }, + { + "id": "41047", + "ident": "SK-216", + "type": "small_airport", + "name": "La Uribe Airport", + "latitude_deg": "4.74614", + "longitude_deg": "-74.0355", + "elevation_ft": "8377", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Bogotá", + "scheduled_service": "no" + }, + { + "id": "41038", + "ident": "SK-217", + "type": "small_airport", + "name": "Medina Airport", + "latitude_deg": "4.483687", + "longitude_deg": "-73.344739", + "elevation_ft": "1315", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Medina", + "scheduled_service": "no", + "iata_code": "MND", + "local_code": "MND" + }, + { + "id": "41054", + "ident": "SK-218", + "type": "small_airport", + "name": "Palanquero Airport", + "latitude_deg": "5.483333", + "longitude_deg": "-74.65", + "elevation_ft": "566", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Puerto Salgar", + "scheduled_service": "no", + "local_code": "PAL" + }, + { + "id": "40735", + "ident": "SK-219", + "type": "small_airport", + "name": "Primero De Mayo Airport", + "latitude_deg": "4.334722", + "longitude_deg": "-73.143889", + "elevation_ft": "685", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Paratebueno", + "scheduled_service": "no", + "local_code": "PRI" + }, + { + "id": "41040", + "ident": "SK-221", + "type": "small_airport", + "name": "San Pedro De Jagua Airport", + "latitude_deg": "4.65", + "longitude_deg": "-73.333333", + "elevation_ft": "2460", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "San Pedro De Jagua", + "scheduled_service": "no", + "local_code": "SJG" + }, + { + "id": "41017", + "ident": "SK-222", + "type": "small_airport", + "name": "Barrancominas Airport", + "latitude_deg": "3.333333", + "longitude_deg": "-70.333333", + "elevation_ft": "1500", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-GUA", + "municipality": "Barrancominas", + "scheduled_service": "no", + "local_code": "BMG" + }, + { + "id": "41010", + "ident": "SK-223", + "type": "small_airport", + "name": "Macanal Airport", + "latitude_deg": "2.80898", + "longitude_deg": "-67.62189", + "elevation_ft": "327", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-GUA", + "municipality": "Macanal", + "scheduled_service": "no", + "iata_code": "NAD", + "local_code": "NAD" + }, + { + "id": "41009", + "ident": "SK-224", + "type": "small_airport", + "name": "San Felipe Airport", + "latitude_deg": "1.91502", + "longitude_deg": "-67.0814", + "elevation_ft": "365", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-GUA", + "municipality": "San Felipe", + "scheduled_service": "no", + "local_code": "SSD" + }, + { + "id": "40679", + "ident": "SK-225", + "type": "small_airport", + "name": "Barranquillita Airport", + "latitude_deg": "1.546667", + "longitude_deg": "-72.325833", + "elevation_ft": "742", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-GUV", + "municipality": "Miraflores", + "scheduled_service": "no", + "local_code": "BOL" + }, + { + "id": "40693", + "ident": "SK-226", + "type": "small_airport", + "name": "Calamar Airport", + "latitude_deg": "1.955556", + "longitude_deg": "-72.533333", + "elevation_ft": "846", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-GUV", + "municipality": "San José Del Guaviare", + "scheduled_service": "no", + "local_code": "CLM" + }, + { + "id": "40659", + "ident": "SK-227", + "type": "small_airport", + "name": "Lagos Del Dorado Airport", + "latitude_deg": "1.21", + "longitude_deg": "-71.955", + "elevation_ft": "654", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-GUV", + "municipality": "Miraflores", + "scheduled_service": "no", + "local_code": "MRF" + }, + { + "id": "40605", + "ident": "SK-228", + "type": "small_airport", + "name": "Morichal Papanagu Airport", + "latitude_deg": "2", + "longitude_deg": "-70.883333", + "elevation_ft": "612", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-GUV", + "municipality": "Morichal", + "scheduled_service": "no", + "local_code": "MCG" + }, + { + "id": "40650", + "ident": "SK-229", + "type": "small_airport", + "name": "Tomachipa Airport", + "latitude_deg": "2.308889", + "longitude_deg": "-71.773333", + "elevation_ft": "566", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-GUV", + "municipality": "San José Del Guaviare", + "scheduled_service": "no", + "local_code": "TPI" + }, + { + "id": "40702", + "ident": "SK-230", + "type": "small_airport", + "name": "Tres Ríos Airport", + "latitude_deg": "1.206389", + "longitude_deg": "-72.7325", + "elevation_ft": "730", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-GUV", + "municipality": "Miraflores", + "scheduled_service": "no", + "local_code": "TRR" + }, + { + "id": "40923", + "ident": "SK-231", + "type": "small_airport", + "name": "Berlín Airport", + "latitude_deg": "3.4025", + "longitude_deg": "-75.173611", + "elevation_ft": "1145", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-HUI", + "municipality": "Villavieja", + "scheduled_service": "no", + "local_code": "BJA" + }, + { + "id": "40930", + "ident": "SK-232", + "type": "small_airport", + "name": "Campo Alegre Airport", + "latitude_deg": "2.663056", + "longitude_deg": "-75.34", + "elevation_ft": "1760", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-HUI", + "municipality": "Campo Alegre", + "scheduled_service": "no", + "local_code": "CMP" + }, + { + "id": "40928", + "ident": "SK-233", + "type": "small_airport", + "name": "El Juncal Airport", + "latitude_deg": "2.846944", + "longitude_deg": "-75.313056", + "elevation_ft": "1524", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-HUI", + "municipality": "Palermo", + "scheduled_service": "no", + "local_code": "EJU" + }, + { + "id": "40931", + "ident": "SK-234", + "type": "small_airport", + "name": "El Limonar Airport", + "latitude_deg": "2.626944", + "longitude_deg": "-75.356944", + "elevation_ft": "1888", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-HUI", + "municipality": "Campo Alegre", + "scheduled_service": "no", + "local_code": "ELH" + }, + { + "id": "40929", + "ident": "SK-235", + "type": "small_airport", + "name": "El Viso Airport", + "latitude_deg": "2.734167", + "longitude_deg": "-75.331944", + "elevation_ft": "1579", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-HUI", + "municipality": "Campo Alegre", + "scheduled_service": "no", + "local_code": "CUM" + }, + { + "id": "41058", + "ident": "SK-236", + "type": "small_airport", + "name": "Guacamayas Airport", + "latitude_deg": "2.283333", + "longitude_deg": "-74.95", + "elevation_ft": "1500", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-HUI", + "municipality": "Guacamayas", + "scheduled_service": "no", + "iata_code": "GCA", + "local_code": "GCA" + }, + { + "id": "40933", + "ident": "SK-237", + "type": "small_airport", + "name": "Guamito Airport", + "latitude_deg": "2.914167", + "longitude_deg": "-75.396667", + "elevation_ft": "1773", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-HUI", + "municipality": "Palermo", + "scheduled_service": "no", + "local_code": "GUN" + }, + { + "id": "40938", + "ident": "SK-238", + "type": "small_airport", + "name": "La Floresta Airport", + "latitude_deg": "2.629722", + "longitude_deg": "-75.576111", + "elevation_ft": "2090", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-HUI", + "municipality": "Yaguara", + "scheduled_service": "no", + "local_code": "LFT" + }, + { + "id": "40926", + "ident": "SK-239", + "type": "small_airport", + "name": "La Manga Airport", + "latitude_deg": "3.246944", + "longitude_deg": "-75.246111", + "elevation_ft": "1319", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-HUI", + "municipality": "Aipe", + "scheduled_service": "no", + "local_code": "AIH" + }, + { + "id": "40922", + "ident": "SK-240", + "type": "small_airport", + "name": "Polonia Airport", + "latitude_deg": "3.266667", + "longitude_deg": "-75.168056", + "elevation_ft": "1285", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-HUI", + "municipality": "Polonia", + "scheduled_service": "no", + "local_code": "POL" + }, + { + "id": "40925", + "ident": "SK-241", + "type": "small_airport", + "name": "San Diego Airport", + "latitude_deg": "3.066667", + "longitude_deg": "-75.1875", + "elevation_ft": "1747", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-HUI", + "municipality": "Tello", + "scheduled_service": "no", + "local_code": "TLO" + }, + { + "id": "40942", + "ident": "SK-242", + "type": "small_airport", + "name": "San Francisco Airport", + "latitude_deg": "2.305", + "longitude_deg": "-75.644444", + "elevation_ft": "2249", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-HUI", + "municipality": "Garzón", + "scheduled_service": "no", + "local_code": "SFC" + }, + { + "id": "40936", + "ident": "SK-243", + "type": "small_airport", + "name": "San Luis Airport", + "latitude_deg": "2.929722", + "longitude_deg": "-75.42", + "elevation_ft": "1808", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-HUI", + "municipality": "Palermo", + "scheduled_service": "no", + "local_code": "PMO" + }, + { + "id": "40948", + "ident": "SK-244", + "type": "small_airport", + "name": "Santa Bárbara Airport", + "latitude_deg": "2.458333", + "longitude_deg": "-75.741944", + "elevation_ft": "2696", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-HUI", + "municipality": "Tesalia", + "scheduled_service": "no", + "local_code": "TSI" + }, + { + "id": "41061", + "ident": "SK-245", + "type": "small_airport", + "name": "Santana Ramos Airport", + "latitude_deg": "2.216667", + "longitude_deg": "-75.25", + "elevation_ft": "6017", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-HUI", + "municipality": "Santana Ramos", + "scheduled_service": "no", + "iata_code": "SRO", + "local_code": "SRO" + }, + { + "id": "40924", + "ident": "SK-246", + "type": "small_airport", + "name": "Sinai Airport", + "latitude_deg": "3.332222", + "longitude_deg": "-75.186111", + "elevation_ft": "1214", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-HUI", + "municipality": "Villavieja", + "scheduled_service": "no", + "local_code": "VVJ" + }, + { + "id": "40937", + "ident": "SK-247", + "type": "small_airport", + "name": "Tesalia Airport", + "latitude_deg": "2.456389", + "longitude_deg": "-75.450278", + "elevation_ft": "5252", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-HUI", + "municipality": "Tesalia", + "scheduled_service": "no", + "local_code": "TES" + }, + { + "id": "40700", + "ident": "SK-248", + "type": "small_airport", + "name": "Cerrejón Central Airport", + "latitude_deg": "11.038056", + "longitude_deg": "-72.695", + "elevation_ft": "395", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-LAG", + "municipality": "Barrancas", + "scheduled_service": "no", + "local_code": "BCA" + }, + { + "id": "40711", + "ident": "SK-249", + "type": "small_airport", + "name": "Cotoprix Airport", + "latitude_deg": "11.223611", + "longitude_deg": "-72.836111", + "elevation_ft": "192", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-LAG", + "municipality": "Riohacha", + "scheduled_service": "no", + "local_code": "CTP" + }, + { + "id": "40686", + "ident": "SK-250", + "type": "small_airport", + "name": "Manaure Airport", + "latitude_deg": "11.783333", + "longitude_deg": "-72.416667", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-LAG", + "municipality": "Manaure", + "scheduled_service": "no", + "local_code": "MAG" + }, + { + "id": "40703", + "ident": "SK-251", + "type": "small_airport", + "name": "Oreganal Airport", + "latitude_deg": "10.979444", + "longitude_deg": "-72.739444", + "elevation_ft": "480", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-LAG", + "municipality": "Barrancas", + "scheduled_service": "no", + "local_code": "BCU" + }, + { + "id": "40620", + "ident": "SK-252", + "type": "small_airport", + "name": "Puerto Estrella Airport", + "latitude_deg": "12.35", + "longitude_deg": "-71.3", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-LAG", + "municipality": "Uribia", + "scheduled_service": "no", + "local_code": "URA" + }, + { + "id": "40720", + "ident": "SK-253", + "type": "small_airport", + "name": "San Juan Del César Airport", + "latitude_deg": "10.744444", + "longitude_deg": "-72.994444", + "elevation_ft": "663", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-LAG", + "municipality": "San Juan Del César", + "scheduled_service": "no", + "local_code": "DJV" + }, + { + "id": "40723", + "ident": "SK-254", + "type": "small_airport", + "name": "Villanueva Airport", + "latitude_deg": "10.583333", + "longitude_deg": "-73.016667", + "elevation_ft": "667", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-LAG", + "municipality": "Villanueva", + "scheduled_service": "no", + "local_code": "VLL" + }, + { + "id": "40848", + "ident": "SK-255", + "type": "small_airport", + "name": "Algarrobo Airport", + "latitude_deg": "10.235833", + "longitude_deg": "-74.053611", + "elevation_ft": "379", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MAG", + "municipality": "Fundación", + "scheduled_service": "no", + "local_code": "FUN" + }, + { + "id": "41055", + "ident": "SK-256", + "type": "small_airport", + "name": "Chivolo Airport", + "latitude_deg": "10.016667", + "longitude_deg": "-74.683333", + "elevation_ft": "560", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MAG", + "municipality": "Chivolo", + "scheduled_service": "no", + "local_code": "IVO" + }, + { + "id": "40865", + "ident": "SK-257", + "type": "small_airport", + "name": "Corral Nuevo Airport", + "latitude_deg": "9.693611", + "longitude_deg": "-74.645833", + "elevation_ft": "124", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MAG", + "municipality": "Plato", + "scheduled_service": "no", + "local_code": "CRN" + }, + { + "id": "40857", + "ident": "SK-258", + "type": "small_airport", + "name": "El Carmen Airport", + "latitude_deg": "9.170278", + "longitude_deg": "-74.211944", + "elevation_ft": "88", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MAG", + "municipality": "Guamal", + "scheduled_service": "no", + "local_code": "ECM" + }, + { + "id": "40845", + "ident": "SK-259", + "type": "small_airport", + "name": "El Coraje Airport", + "latitude_deg": "10.038056", + "longitude_deg": "-74.02", + "elevation_ft": "260", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MAG", + "municipality": "Ariguani", + "scheduled_service": "no", + "local_code": "AUR" + }, + { + "id": "40859", + "ident": "SK-260", + "type": "small_airport", + "name": "El Edén Airport", + "latitude_deg": "9.519722", + "longitude_deg": "-74.339167", + "elevation_ft": "165", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MAG", + "municipality": "Santana", + "scheduled_service": "no", + "local_code": "STA" + }, + { + "id": "41050", + "ident": "SK-261", + "type": "small_airport", + "name": "Guamal Airport", + "latitude_deg": "9.15", + "longitude_deg": "-74.233333", + "elevation_ft": "65", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MAG", + "municipality": "Guamal", + "scheduled_service": "no", + "local_code": "GAA" + }, + { + "id": "40853", + "ident": "SK-262", + "type": "small_airport", + "name": "La Amalia Airport", + "latitude_deg": "10.860833", + "longitude_deg": "-74.145833", + "elevation_ft": "113", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MAG", + "municipality": "Ciénaga", + "scheduled_service": "no", + "local_code": "AMA" + }, + { + "id": "40851", + "ident": "SK-263", + "type": "small_airport", + "name": "La Ceiba Airport", + "latitude_deg": "10.788056", + "longitude_deg": "-74.104444", + "elevation_ft": "130", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MAG", + "municipality": "Ciénaga", + "scheduled_service": "no", + "local_code": "CGA" + }, + { + "id": "40855", + "ident": "SK-264", + "type": "small_airport", + "name": "La Cheka Airport", + "latitude_deg": "10.667778", + "longitude_deg": "-74.201667", + "elevation_ft": "85", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MAG", + "municipality": "Ciénaga", + "scheduled_service": "no", + "local_code": "CIE" + }, + { + "id": "40829", + "ident": "SK-265", + "type": "small_airport", + "name": "La Diva Airport", + "latitude_deg": "11.245278", + "longitude_deg": "-73.716667", + "elevation_ft": "27", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MAG", + "municipality": "Santa Marta", + "scheduled_service": "no", + "local_code": "SNM" + }, + { + "id": "40854", + "ident": "SK-266", + "type": "small_airport", + "name": "La Fe Airport", + "latitude_deg": "10.854722", + "longitude_deg": "-74.171111", + "elevation_ft": "58", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MAG", + "municipality": "Ciénaga", + "scheduled_service": "no", + "local_code": "LFE" + }, + { + "id": "40861", + "ident": "SK-267", + "type": "small_airport", + "name": "La Gaviota Airport", + "latitude_deg": "9.644444", + "longitude_deg": "-74.425", + "elevation_ft": "187", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MAG", + "municipality": "Plato", + "scheduled_service": "no", + "local_code": "LEB" + }, + { + "id": "40858", + "ident": "SK-268", + "type": "small_airport", + "name": "La Palestina Airport", + "latitude_deg": "10.609722", + "longitude_deg": "-74.298333", + "elevation_ft": "64", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MAG", + "municipality": "Pivijay", + "scheduled_service": "no", + "local_code": "PIV" + }, + { + "id": "40856", + "ident": "SK-269", + "type": "small_airport", + "name": "La Ye Airport", + "latitude_deg": "11.0025", + "longitude_deg": "-74.211667", + "elevation_ft": "51", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MAG", + "municipality": "Ciénaga", + "scheduled_service": "no", + "local_code": "LAY" + }, + { + "id": "40850", + "ident": "SK-270", + "type": "small_airport", + "name": "Mayorca Airport", + "latitude_deg": "9.922778", + "longitude_deg": "-74.095", + "elevation_ft": "300", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MAG", + "municipality": "El Difícil", + "scheduled_service": "no", + "local_code": "ELF" + }, + { + "id": "40767", + "ident": "SK-271", + "type": "small_airport", + "name": "Andalucía Airport", + "latitude_deg": "3.988056", + "longitude_deg": "-73.299444", + "elevation_ft": "784", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Villavicencio", + "scheduled_service": "no", + "local_code": "VVM" + }, + { + "id": "41033", + "ident": "SK-272", + "type": "small_airport", + "name": "Barranca De Upia Airport", + "latitude_deg": "4.583333", + "longitude_deg": "-72.966667", + "elevation_ft": "670", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Barranca De Upia", + "scheduled_service": "no", + "iata_code": "BAC", + "local_code": "BAC" + }, + { + "id": "40691", + "ident": "SK-273", + "type": "small_airport", + "name": "Bello Horizonte Airport", + "latitude_deg": "4.291667", + "longitude_deg": "-72.504167", + "elevation_ft": "578", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto López", + "scheduled_service": "no", + "local_code": "PLE" + }, + { + "id": "40761", + "ident": "SK-274", + "type": "small_airport", + "name": "Canaima Airport", + "latitude_deg": "4.118056", + "longitude_deg": "-73.266944", + "elevation_ft": "761", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Villavicencio", + "scheduled_service": "no", + "local_code": "CMA" + }, + { + "id": "41053", + "ident": "SK-275", + "type": "small_airport", + "name": "Candilejas Airport", + "latitude_deg": "2.066667", + "longitude_deg": "-74.583333", + "elevation_ft": "1000", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Candilejas", + "scheduled_service": "no", + "local_code": "CJD" + }, + { + "id": "40792", + "ident": "SK-276", + "type": "small_airport", + "name": "Caño Blanco Airport", + "latitude_deg": "3.29", + "longitude_deg": "-73.463333", + "elevation_ft": "803", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Fuente De Oro", + "scheduled_service": "no", + "local_code": "FTE" + }, + { + "id": "41049", + "ident": "SK-277", + "type": "small_airport", + "name": "Caquetania Airport", + "latitude_deg": "2.033333", + "longitude_deg": "-74.216667", + "elevation_ft": "900", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Caquetania", + "scheduled_service": "no", + "iata_code": "CQT", + "local_code": "CQT" + }, + { + "id": "40781", + "ident": "SK-278", + "type": "small_airport", + "name": "El Cairo Airport", + "latitude_deg": "3.773056", + "longitude_deg": "-73.385833", + "elevation_ft": "849", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Castilla La Nueva", + "scheduled_service": "no", + "local_code": "ELC" + }, + { + "id": "40773", + "ident": "SK-279", + "type": "small_airport", + "name": "El Convento Airport", + "latitude_deg": "4.026944", + "longitude_deg": "-73.355556", + "elevation_ft": "843", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Villavicencio", + "scheduled_service": "no", + "local_code": "VIC" + }, + { + "id": "40737", + "ident": "SK-280", + "type": "small_airport", + "name": "El Diamante Airport", + "latitude_deg": "3.893333", + "longitude_deg": "-73.176667", + "elevation_ft": "698", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Villavicencio", + "scheduled_service": "no", + "local_code": "VCC" + }, + { + "id": "40728", + "ident": "SK-281", + "type": "small_airport", + "name": "El Edén Airport", + "latitude_deg": "4.304167", + "longitude_deg": "-73.074167", + "elevation_ft": "632", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Cabuyaro", + "scheduled_service": "no", + "local_code": "CYO" + }, + { + "id": "40768", + "ident": "SK-282", + "type": "small_airport", + "name": "El Prado Airport", + "latitude_deg": "3.718889", + "longitude_deg": "-73.308611", + "elevation_ft": "777", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "San Carlos De Guaroa", + "scheduled_service": "no", + "local_code": "SCG" + }, + { + "id": "40832", + "ident": "SK-283", + "type": "small_airport", + "name": "El Progreso Airport", + "latitude_deg": "3.480556", + "longitude_deg": "-73.734444", + "elevation_ft": "944", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Granada", + "scheduled_service": "no", + "local_code": "GAN" + }, + { + "id": "41048", + "ident": "SK-284", + "type": "small_airport", + "name": "El Recreo Airport", + "latitude_deg": "2", + "longitude_deg": "-74.133333", + "elevation_ft": "900", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Ruperto Polania", + "scheduled_service": "no", + "iata_code": "ELJ", + "local_code": "ELJ" + }, + { + "id": "40731", + "ident": "SK-285", + "type": "small_airport", + "name": "El Rinconcito Airport", + "latitude_deg": "3.927222", + "longitude_deg": "-73.081111", + "elevation_ft": "615", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto López", + "scheduled_service": "no", + "local_code": "PPZ" + }, + { + "id": "40635", + "ident": "SK-286", + "type": "small_airport", + "name": "El Rodeo Airport", + "latitude_deg": "4.415", + "longitude_deg": "-71.590278", + "elevation_ft": "624", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto Gaitán", + "scheduled_service": "no", + "local_code": "PGO" + }, + { + "id": "40795", + "ident": "SK-287", + "type": "small_airport", + "name": "El Ruby Airport", + "latitude_deg": "3.781111", + "longitude_deg": "-73.481667", + "elevation_ft": "953", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Castilla La Nueva", + "scheduled_service": "no", + "local_code": "ELU" + }, + { + "id": "40721", + "ident": "SK-288", + "type": "small_airport", + "name": "El Vergel Airport", + "latitude_deg": "4.20644", + "longitude_deg": "-72.997149", + "elevation_ft": "589", + "continent": "NA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Cabuyaro", + "scheduled_service": "no", + "local_code": "CRY" + }, + { + "id": "40793", + "ident": "SK-289", + "type": "small_airport", + "name": "Gaviotas Airport", + "latitude_deg": "3.365833", + "longitude_deg": "-73.4675", + "elevation_ft": "805", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto Lleras", + "scheduled_service": "no", + "local_code": "PUL" + }, + { + "id": "40716", + "ident": "SK-290", + "type": "small_airport", + "name": "Guaicarano Airport", + "latitude_deg": "4.460556", + "longitude_deg": "-72.95", + "elevation_ft": "650", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Barranco De Upía", + "scheduled_service": "no", + "local_code": "BAR" + }, + { + "id": "40794", + "ident": "SK-291", + "type": "small_airport", + "name": "Guamitos Airport", + "latitude_deg": "3.827778", + "longitude_deg": "-73.476389", + "elevation_ft": "950", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Castilla La Nueva", + "scheduled_service": "no", + "local_code": "CVA" + }, + { + "id": "40806", + "ident": "SK-292", + "type": "small_airport", + "name": "Guanayas Airport", + "latitude_deg": "3.353889", + "longitude_deg": "-73.577778", + "elevation_ft": "832", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Fuente De Oro", + "scheduled_service": "no", + "local_code": "FEO" + }, + { + "id": "41021", + "ident": "SK-293", + "type": "small_airport", + "name": "Guerima Airport", + "latitude_deg": "3.633333", + "longitude_deg": "-71.166667", + "elevation_ft": "606", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Guerima", + "scheduled_service": "no", + "local_code": "GMC" + }, + { + "id": "40815", + "ident": "SK-294", + "type": "small_airport", + "name": "Halcones Airport", + "latitude_deg": "3.373056", + "longitude_deg": "-73.613333", + "elevation_ft": "852", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Fuente De Oro", + "scheduled_service": "no", + "local_code": "FUR" + }, + { + "id": "40646", + "ident": "SK-295", + "type": "small_airport", + "name": "Hato La Esperanza Airport", + "latitude_deg": "4.2375", + "longitude_deg": "-71.718056", + "elevation_ft": "666", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto Gaitán", + "scheduled_service": "no", + "local_code": "HLE" + }, + { + "id": "40719", + "ident": "SK-296", + "type": "small_airport", + "name": "La Arabia Airport", + "latitude_deg": "4.393333", + "longitude_deg": "-72.989167", + "elevation_ft": "615", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Cabuyaro", + "scheduled_service": "no", + "local_code": "CBY" + }, + { + "id": "40775", + "ident": "SK-297", + "type": "small_airport", + "name": "La Cabana Airport", + "latitude_deg": "4.301944", + "longitude_deg": "-73.369722", + "elevation_ft": "1025", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Cumaral", + "scheduled_service": "no", + "local_code": "LAC" + }, + { + "id": "40771", + "ident": "SK-298", + "type": "small_airport", + "name": "La Cabana Airport", + "latitude_deg": "3.951389", + "longitude_deg": "-73.347222", + "elevation_ft": "844", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "San Carlos De Guaroa", + "scheduled_service": "no", + "local_code": "SCM" + }, + { + "id": "40830", + "ident": "SK-299", + "type": "small_airport", + "name": "La Candela Airport", + "latitude_deg": "3.421389", + "longitude_deg": "-73.725833", + "elevation_ft": "1004", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Fuente De Oro", + "scheduled_service": "no", + "local_code": "FNO" + }, + { + "id": "40747", + "ident": "SK-300", + "type": "small_airport", + "name": "La Ceiba Airport", + "latitude_deg": "3.688889", + "longitude_deg": "-73.2325", + "elevation_ft": "712", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "San Martin", + "scheduled_service": "no", + "local_code": "SIN" + }, + { + "id": "40780", + "ident": "SK-301", + "type": "small_airport", + "name": "La Colina Airport", + "latitude_deg": "4.064167", + "longitude_deg": "-73.383611", + "elevation_ft": "1019", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Villavicencio", + "scheduled_service": "no", + "local_code": "LAM" + }, + { + "id": "40799", + "ident": "SK-302", + "type": "small_airport", + "name": "La Diana Airport", + "latitude_deg": "3.804722", + "longitude_deg": "-73.520278", + "elevation_ft": "993", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Castilla", + "scheduled_service": "no", + "local_code": "CAX" + }, + { + "id": "40774", + "ident": "SK-303", + "type": "small_airport", + "name": "La Esmeralda Airport", + "latitude_deg": "4.088333", + "longitude_deg": "-73.367778", + "elevation_ft": "924", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Villavicencio", + "scheduled_service": "no", + "local_code": "LEM" + }, + { + "id": "40766", + "ident": "SK-304", + "type": "small_airport", + "name": "La Florida Airport", + "latitude_deg": "3.911944", + "longitude_deg": "-73.295556", + "elevation_ft": "772", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "San Carlos De Guaroa", + "scheduled_service": "no", + "local_code": "SGG" + }, + { + "id": "40783", + "ident": "SK-305", + "type": "small_airport", + "name": "La Loma Airport", + "latitude_deg": "3.674167", + "longitude_deg": "-73.403889", + "elevation_ft": "832", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "San Martin", + "scheduled_service": "no", + "local_code": "SRT" + }, + { + "id": "40809", + "ident": "SK-306", + "type": "small_airport", + "name": "La Luna Airport", + "latitude_deg": "3.449167", + "longitude_deg": "-73.584444", + "elevation_ft": "954", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Fuente De Oro", + "scheduled_service": "no", + "local_code": "FOO" + }, + { + "id": "41046", + "ident": "SK-307", + "type": "small_airport", + "name": "El Refugio/La Macarena Airport", + "latitude_deg": "2.1736", + "longitude_deg": "-73.7862", + "elevation_ft": "793", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "La Macarena", + "scheduled_service": "yes", + "gps_code": "SKNA", + "iata_code": "LMC", + "local_code": "LMC", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Macarena_Airport", + "keywords": "San Juan de Arama" + }, + { + "id": "40745", + "ident": "SK-308", + "type": "small_airport", + "name": "La Mansión Airport", + "latitude_deg": "3.779444", + "longitude_deg": "-73.220556", + "elevation_ft": "713", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "San Carlos De Guaroa", + "scheduled_service": "no", + "local_code": "SDG" + }, + { + "id": "40744", + "ident": "SK-309", + "type": "small_airport", + "name": "La María Airport", + "latitude_deg": "4.241389", + "longitude_deg": "-73.217222", + "elevation_ft": "720", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Cumaral", + "scheduled_service": "no", + "local_code": "CMR" + }, + { + "id": "40623", + "ident": "SK-310", + "type": "small_airport", + "name": "La Plata Airport", + "latitude_deg": "3.488056", + "longitude_deg": "-71.375556", + "elevation_ft": "635", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto Gaitán", + "scheduled_service": "no", + "local_code": "PGP" + }, + { + "id": "40779", + "ident": "SK-311", + "type": "small_airport", + "name": "La Realidad Airport", + "latitude_deg": "3.999167", + "longitude_deg": "-73.376389", + "elevation_ft": "871", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Villavicencio", + "scheduled_service": "no", + "local_code": "VCI" + }, + { + "id": "40733", + "ident": "SK-312", + "type": "small_airport", + "name": "La Reforma Airport", + "latitude_deg": "4.062778", + "longitude_deg": "-73.139167", + "elevation_ft": "649", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto López", + "scheduled_service": "no", + "local_code": "PTE" + }, + { + "id": "40765", + "ident": "SK-313", + "type": "small_airport", + "name": "La Union Airport", + "latitude_deg": "3.331667", + "longitude_deg": "-73.295", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Castilla La Nueva", + "scheduled_service": "no", + "local_code": "CLA" + }, + { + "id": "40714", + "ident": "SK-314", + "type": "small_airport", + "name": "Lajitas Airport", + "latitude_deg": "4.156728", + "longitude_deg": "-72.907257", + "elevation_ft": "726", + "continent": "NA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto López", + "scheduled_service": "no", + "local_code": "LAJ" + }, + { + "id": "40785", + "ident": "SK-315", + "type": "small_airport", + "name": "Las Brisas Airport", + "latitude_deg": "4.0625", + "longitude_deg": "-73.412222", + "elevation_ft": "1007", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Villavicencio", + "scheduled_service": "no", + "local_code": "VVD" + }, + { + "id": "40727", + "ident": "SK-316", + "type": "small_airport", + "name": "Las Delicias Airport", + "latitude_deg": "4.196389", + "longitude_deg": "-73.073056", + "elevation_ft": "599", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Cumaral", + "scheduled_service": "no", + "local_code": "CUA" + }, + { + "id": "40800", + "ident": "SK-317", + "type": "small_airport", + "name": "Las Juanas Airport", + "latitude_deg": "3.823333", + "longitude_deg": "-73.532222", + "elevation_ft": "1017", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Castilla La Nueva", + "scheduled_service": "no", + "local_code": "LAU" + }, + { + "id": "40654", + "ident": "SK-318", + "type": "small_airport", + "name": "Las Malvinas Airport", + "latitude_deg": "3.770833", + "longitude_deg": "-71.823889", + "elevation_ft": "709", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto Gaitán", + "scheduled_service": "no", + "local_code": "LML" + }, + { + "id": "40734", + "ident": "SK-319", + "type": "small_airport", + "name": "Los Bálticos Airport", + "latitude_deg": "4.131389", + "longitude_deg": "-73.140833", + "elevation_ft": "661", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto López", + "scheduled_service": "no", + "local_code": "LOB" + }, + { + "id": "40718", + "ident": "SK-320", + "type": "small_airport", + "name": "Los Gavanes Airport", + "latitude_deg": "4.203521", + "longitude_deg": "-72.98107", + "elevation_ft": "584", + "continent": "NA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Cabuyaro", + "scheduled_service": "no", + "local_code": "CBA" + }, + { + "id": "40813", + "ident": "SK-321", + "type": "small_airport", + "name": "Los Sabanales Airport", + "latitude_deg": "3.463341", + "longitude_deg": "-73.602582", + "elevation_ft": "960", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Fuente De Oro", + "scheduled_service": "no", + "local_code": "FUT", + "keywords": "Gaviotas" + }, + { + "id": "40722", + "ident": "SK-322", + "type": "small_airport", + "name": "Los Venados Airport", + "latitude_deg": "4.0675", + "longitude_deg": "-73.005", + "elevation_ft": "611", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto López", + "scheduled_service": "no", + "local_code": "LVE" + }, + { + "id": "40826", + "ident": "SK-323", + "type": "small_airport", + "name": "Majagual Airport", + "latitude_deg": "3.390278", + "longitude_deg": "-73.696389", + "elevation_ft": "951", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Fuente De Oro", + "scheduled_service": "no", + "local_code": "FUO" + }, + { + "id": "40834", + "ident": "SK-324", + "type": "small_airport", + "name": "Malvinas Airport", + "latitude_deg": "3.423889", + "longitude_deg": "-73.769167", + "elevation_ft": "1087", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Granada", + "scheduled_service": "no", + "local_code": "GRN" + }, + { + "id": "40669", + "ident": "SK-325", + "type": "small_airport", + "name": "Mapiripan Airport", + "latitude_deg": "2.898013", + "longitude_deg": "-72.14143", + "elevation_ft": "730", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "San Martin", + "scheduled_service": "no", + "gps_code": "SKIR", + "local_code": "MAP" + }, + { + "id": "40782", + "ident": "SK-326", + "type": "small_airport", + "name": "Matupa Airport", + "latitude_deg": "3.595278", + "longitude_deg": "-73.403611", + "elevation_ft": "939", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "San Martin", + "scheduled_service": "no", + "local_code": "MTU" + }, + { + "id": "40627", + "ident": "SK-327", + "type": "small_airport", + "name": "Morelia Airport", + "latitude_deg": "3.754167", + "longitude_deg": "-71.459722", + "elevation_ft": "607", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto Gaitán", + "scheduled_service": "no", + "local_code": "PGT" + }, + { + "id": "40678", + "ident": "SK-328", + "type": "small_airport", + "name": "Mundo Nuevo Airport", + "latitude_deg": "4.330278", + "longitude_deg": "-72.32", + "elevation_ft": "594", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto López", + "scheduled_service": "no", + "local_code": "MUN" + }, + { + "id": "40738", + "ident": "SK-329", + "type": "small_airport", + "name": "Natalia Airport", + "latitude_deg": "4.069722", + "longitude_deg": "-73.180556", + "elevation_ft": "674", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto López", + "scheduled_service": "no", + "local_code": "PRL" + }, + { + "id": "40748", + "ident": "SK-330", + "type": "small_airport", + "name": "Neiva York Airport", + "latitude_deg": "4.089722", + "longitude_deg": "-73.232778", + "elevation_ft": "726", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Villavicencio", + "scheduled_service": "no", + "local_code": "VVN" + }, + { + "id": "40729", + "ident": "SK-331", + "type": "small_airport", + "name": "Palmasola Airport", + "latitude_deg": "4.127222", + "longitude_deg": "-73.076667", + "elevation_ft": "616", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto López", + "scheduled_service": "no", + "local_code": "PLO" + }, + { + "id": "40709", + "ident": "SK-332", + "type": "small_airport", + "name": "Petriba(Guayabal) Airport", + "latitude_deg": "4.361667", + "longitude_deg": "-72.827778", + "elevation_ft": "572", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Cabuyaro", + "scheduled_service": "no", + "local_code": "CEU" + }, + { + "id": "40648", + "ident": "SK-333", + "type": "small_airport", + "name": "Puerto Alvira Cano Jabón Airport", + "latitude_deg": "2.902778", + "longitude_deg": "-71.749444", + "elevation_ft": "532", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto Alvira", + "scheduled_service": "no", + "local_code": "PCJ" + }, + { + "id": "40772", + "ident": "SK-334", + "type": "small_airport", + "name": "Puerto Lleras Airport", + "latitude_deg": "3.289302", + "longitude_deg": "-73.379286", + "elevation_ft": "805", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto Lleras", + "scheduled_service": "no", + "local_code": "PLL" + }, + { + "id": "40742", + "ident": "SK-335", + "type": "small_airport", + "name": "Puerto Rico Airport", + "latitude_deg": "2.939576", + "longitude_deg": "-73.199167", + "elevation_ft": "709", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto Rico", + "scheduled_service": "no", + "local_code": "PUE" + }, + { + "id": "40802", + "ident": "SK-336", + "type": "small_airport", + "name": "Quebraditas Airport", + "latitude_deg": "3.945278", + "longitude_deg": "-73.536667", + "elevation_ft": "1119", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Acacias", + "scheduled_service": "no", + "local_code": "ACS" + }, + { + "id": "40717", + "ident": "SK-337", + "type": "small_airport", + "name": "Rancho Nare Airport", + "latitude_deg": "3.854167", + "longitude_deg": "-72.973611", + "elevation_ft": "774", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto López", + "scheduled_service": "no", + "local_code": "RCN" + }, + { + "id": "40663", + "ident": "SK-338", + "type": "small_airport", + "name": "Sabaneta Airport", + "latitude_deg": "3.931667", + "longitude_deg": "-72.043333", + "elevation_ft": "683", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto Gaitán", + "scheduled_service": "no", + "local_code": "PGN" + }, + { + "id": "40749", + "ident": "SK-339", + "type": "small_airport", + "name": "San Isidro Airport", + "latitude_deg": "4.127222", + "longitude_deg": "-73.238889", + "elevation_ft": "738", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto López", + "scheduled_service": "no", + "local_code": "PLD" + }, + { + "id": "40820", + "ident": "SK-340", + "type": "small_airport", + "name": "San Juanito Airport", + "latitude_deg": "4.433333", + "longitude_deg": "-73.65", + "elevation_ft": "8198", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "San Juanito", + "scheduled_service": "no", + "local_code": "SJJ" + }, + { + "id": "40821", + "ident": "SK-341", + "type": "small_airport", + "name": "San Luis Airport", + "latitude_deg": "3.501944", + "longitude_deg": "-73.669722", + "elevation_ft": "1039", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Fuente De Oro", + "scheduled_service": "no", + "local_code": "FUL" + }, + { + "id": "40740", + "ident": "SK-342", + "type": "small_airport", + "name": "San Luis De Airport", + "latitude_deg": "4.049167", + "longitude_deg": "-73.191111", + "elevation_ft": "682", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Villavicencio", + "scheduled_service": "no", + "local_code": "VVE" + }, + { + "id": "40827", + "ident": "SK-343", + "type": "small_airport", + "name": "San Martin Airport", + "latitude_deg": "3.70239", + "longitude_deg": "-73.68825", + "elevation_ft": "1378", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "San Martin", + "scheduled_service": "no", + "local_code": "SNR" + }, + { + "id": "40752", + "ident": "SK-344", + "type": "small_airport", + "name": "San Miguel Airport", + "latitude_deg": "3.868056", + "longitude_deg": "-73.252778", + "elevation_ft": "732", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "San Carlos De Guaroa", + "scheduled_service": "no", + "local_code": "SNU" + }, + { + "id": "40790", + "ident": "SK-345", + "type": "small_airport", + "name": "San Vicente Airport", + "latitude_deg": "3.840833", + "longitude_deg": "-73.456389", + "elevation_ft": "937", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Castilla La Nueva", + "scheduled_service": "no", + "local_code": "GNU" + }, + { + "id": "40755", + "ident": "SK-346", + "type": "small_airport", + "name": "Santa Bárbara Airport", + "latitude_deg": "4.233889", + "longitude_deg": "-73.256111", + "elevation_ft": "771", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Cumaral", + "scheduled_service": "no", + "local_code": "CRL" + }, + { + "id": "40743", + "ident": "SK-347", + "type": "small_airport", + "name": "Santa Isabel Airport", + "latitude_deg": "3.988889", + "longitude_deg": "-73.209167", + "elevation_ft": "711", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Villavicencio", + "scheduled_service": "no", + "local_code": "VVU" + }, + { + "id": "41024", + "ident": "SK-348", + "type": "small_airport", + "name": "Solita Airport", + "latitude_deg": "3.016667", + "longitude_deg": "-71.75", + "elevation_ft": "652", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Solita", + "scheduled_service": "no", + "iata_code": "SOH", + "local_code": "SOH" + }, + { + "id": "40754", + "ident": "SK-349", + "type": "small_airport", + "name": "Suescun Airport", + "latitude_deg": "3.926111", + "longitude_deg": "-73.254444", + "elevation_ft": "748", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "San Carlos De Guaroa", + "scheduled_service": "no" + }, + { + "id": "40797", + "ident": "SK-350", + "type": "small_airport", + "name": "Tapa Chicamocha Airport", + "latitude_deg": "4.416667", + "longitude_deg": "-73.4975", + "elevation_ft": "5658", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Villavicencio", + "scheduled_service": "no", + "local_code": "VVL" + }, + { + "id": "40612", + "ident": "SK-351", + "type": "small_airport", + "name": "Tibiri Airport", + "latitude_deg": "3.95", + "longitude_deg": "-71.133333", + "elevation_ft": "583", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "San Pedro", + "scheduled_service": "no", + "local_code": "TBI" + }, + { + "id": "40730", + "ident": "SK-352", + "type": "small_airport", + "name": "Tobasia Airport", + "latitude_deg": "4.078611", + "longitude_deg": "-73.079444", + "elevation_ft": "604", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto López", + "scheduled_service": "no", + "local_code": "PLS" + }, + { + "id": "40759", + "ident": "SK-353", + "type": "small_airport", + "name": "Umbría Airport", + "latitude_deg": "4.190556", + "longitude_deg": "-73.261111", + "elevation_ft": "743", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Cumaral", + "scheduled_service": "no", + "local_code": "UMB" + }, + { + "id": "41051", + "ident": "SK-354", + "type": "small_airport", + "name": "Uribe Airport", + "latitude_deg": "3.216667", + "longitude_deg": "-74.4", + "elevation_ft": "2750", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Uribe", + "scheduled_service": "no", + "iata_code": "URI", + "local_code": "URI" + }, + { + "id": "40835", + "ident": "SK-355", + "type": "small_airport", + "name": "Vista Hermosa Airport", + "latitude_deg": "3.146667", + "longitude_deg": "-73.771111", + "elevation_ft": "909", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Vista Hermosa", + "scheduled_service": "no", + "local_code": "VIH" + }, + { + "id": "40725", + "ident": "SK-357", + "type": "small_airport", + "name": "Yalconia Airport", + "latitude_deg": "4.335", + "longitude_deg": "-73.045833", + "elevation_ft": "629", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Cabuyaro", + "scheduled_service": "no", + "local_code": "CYE" + }, + { + "id": "40689", + "ident": "SK-358", + "type": "small_airport", + "name": "Yátaros De Meluá Airport", + "latitude_deg": "3.793889", + "longitude_deg": "-72.477778", + "elevation_ft": "580", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto López", + "scheduled_service": "no", + "local_code": "PTZ" + }, + { + "id": "41007", + "ident": "SK-359", + "type": "small_airport", + "name": "Bocas De Satinga Airport", + "latitude_deg": "2.35", + "longitude_deg": "-78.316667", + "elevation_ft": "18", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-NAR", + "municipality": "Bocas De Satinga", + "scheduled_service": "no", + "local_code": "BDS" + }, + { + "id": "41084", + "ident": "SK-360", + "type": "small_airport", + "name": "El Charco Airport", + "latitude_deg": "2.44944444444", + "longitude_deg": "-78.0941666667", + "elevation_ft": "25", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-NAR", + "municipality": "El Charco", + "scheduled_service": "no", + "gps_code": "SKEH", + "iata_code": "ECR", + "local_code": "ECR" + }, + { + "id": "41008", + "ident": "SK-361", + "type": "small_airport", + "name": "Guinulero Airport", + "latitude_deg": "1.727778", + "longitude_deg": "-78.940278", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-NAR", + "municipality": "Tumaco", + "scheduled_service": "no", + "local_code": "GUI" + }, + { + "id": "41006", + "ident": "SK-363", + "type": "small_airport", + "name": "Los Mulatos Airport", + "latitude_deg": "2.65", + "longitude_deg": "-78.3", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-NAR", + "municipality": "El Charco", + "scheduled_service": "no", + "local_code": "LMN" + }, + { + "id": "41005", + "ident": "SK-364", + "type": "small_airport", + "name": "Maguí Payán Airport", + "latitude_deg": "1.746389", + "longitude_deg": "-78.165", + "elevation_ft": "316", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-NAR", + "municipality": "Maguí Payán", + "scheduled_service": "no", + "local_code": "MGP" + }, + { + "id": "41086", + "ident": "SK-365", + "type": "small_airport", + "name": "Mosquera Airport", + "latitude_deg": "2.64955", + "longitude_deg": "-78.3361", + "elevation_ft": "50", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-NAR", + "municipality": "Mosquera", + "scheduled_service": "no", + "iata_code": "MQR", + "local_code": "MQR" + }, + { + "id": "41085", + "ident": "SK-366", + "type": "small_airport", + "name": "Payán Airport", + "latitude_deg": "1.8", + "longitude_deg": "-78.166667", + "elevation_ft": "97", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-NAR", + "municipality": "Payán", + "scheduled_service": "no", + "local_code": "PYN" + }, + { + "id": "41004", + "ident": "SK-367", + "type": "small_airport", + "name": "Santa Bárbara Airport", + "latitude_deg": "2.445825", + "longitude_deg": "-77.981753", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-NAR", + "municipality": "Iscuandé", + "scheduled_service": "no", + "iata_code": "ISD", + "local_code": "SBN" + }, + { + "id": "40690", + "ident": "SK-368", + "type": "small_airport", + "name": "Cinera Airport", + "latitude_deg": "8.2", + "longitude_deg": "-72.5", + "elevation_ft": "233", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-NSA", + "municipality": "Cúcuta", + "scheduled_service": "no", + "local_code": "CRA" + }, + { + "id": "40697", + "ident": "SK-369", + "type": "small_airport", + "name": "Petrolea Airport", + "latitude_deg": "8.497222", + "longitude_deg": "-72.596667", + "elevation_ft": "180", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-NSA", + "municipality": "Cúcuta", + "scheduled_service": "no", + "local_code": "PET" + }, + { + "id": "40741", + "ident": "SK-370", + "type": "small_airport", + "name": "Santa Lucía Airport", + "latitude_deg": "8.043373", + "longitude_deg": "-73.211586", + "elevation_ft": "4720", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-NSA", + "municipality": "Abrego", + "scheduled_service": "no", + "local_code": "SLU" + }, + { + "id": "41056", + "ident": "SK-371", + "type": "small_airport", + "name": "Leguizamo Airport", + "latitude_deg": "-0.166505", + "longitude_deg": "-74.7667", + "elevation_ft": "628", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-PUT", + "municipality": "Leguizamo", + "scheduled_service": "no", + "local_code": "LGZ" + }, + { + "id": "40946", + "ident": "SK-372", + "type": "small_airport", + "name": "El Cedrito Airport", + "latitude_deg": "4.556944", + "longitude_deg": "-75.723889", + "elevation_ft": "4366", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-QUI", + "municipality": "Armenia", + "scheduled_service": "no", + "local_code": "ARE" + }, + { + "id": "40952", + "ident": "SK-373", + "type": "small_airport", + "name": "Las Gaviotas Airport", + "latitude_deg": "4.428056", + "longitude_deg": "-75.796944", + "elevation_ft": "3831", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-QUI", + "municipality": "La Tebaida", + "scheduled_service": "no", + "local_code": "LTB" + }, + { + "id": "40949", + "ident": "SK-374", + "type": "small_airport", + "name": "Portugalito Airport", + "latitude_deg": "4.385833", + "longitude_deg": "-75.767778", + "elevation_ft": "3797", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-QUI", + "municipality": "Armenia", + "scheduled_service": "no", + "local_code": "AMN" + }, + { + "id": "40956", + "ident": "SK-375", + "type": "small_airport", + "name": "El Diamante Airport", + "latitude_deg": "4.823611", + "longitude_deg": "-75.845278", + "elevation_ft": "3891", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-RIS", + "municipality": "Pereira", + "scheduled_service": "no", + "local_code": "PEP" + }, + { + "id": "40957", + "ident": "SK-376", + "type": "small_airport", + "name": "Ingenio Risaralda Airport", + "latitude_deg": "4.895556", + "longitude_deg": "-75.915833", + "elevation_ft": "2940", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-RIS", + "municipality": "Balboa", + "scheduled_service": "no", + "local_code": "BAL" + }, + { + "id": "40814", + "ident": "SK-377", + "type": "small_airport", + "name": "Barbosa Airport", + "latitude_deg": "5.943333", + "longitude_deg": "-73.611389", + "elevation_ft": "5176", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Barbosa", + "scheduled_service": "no", + "local_code": "BSA" + }, + { + "id": "40994", + "ident": "SK-378", + "type": "small_airport", + "name": "Buenos Aires Airport", + "latitude_deg": "7.463889", + "longitude_deg": "-76.746111", + "elevation_ft": "63", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Puerto Wilches", + "scheduled_service": "no", + "local_code": "BNO" + }, + { + "id": "40843", + "ident": "SK-379", + "type": "small_airport", + "name": "Campo Capote Airport", + "latitude_deg": "6.75", + "longitude_deg": "-73.916667", + "elevation_ft": "310", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Velez", + "scheduled_service": "no", + "local_code": "CAC" + }, + { + "id": "40756", + "ident": "SK-380", + "type": "small_airport", + "name": "Comuneros Airport", + "latitude_deg": "6.386667", + "longitude_deg": "-73.256389", + "elevation_ft": "5138", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "El Socorro", + "scheduled_service": "no", + "local_code": "ELS" + }, + { + "id": "40803", + "ident": "SK-381", + "type": "small_airport", + "name": "El Carmen Airport", + "latitude_deg": "6.740556", + "longitude_deg": "-73.554444", + "elevation_ft": "956", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "El Carmen", + "scheduled_service": "no", + "local_code": "ECC" + }, + { + "id": "40778", + "ident": "SK-382", + "type": "small_airport", + "name": "El Marne Airport", + "latitude_deg": "7.428333", + "longitude_deg": "-73.376111", + "elevation_ft": "416", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Rionegro", + "scheduled_service": "no", + "local_code": "ELM" + }, + { + "id": "40807", + "ident": "SK-383", + "type": "small_airport", + "name": "El Porvenir Airport", + "latitude_deg": "7.310278", + "longitude_deg": "-73.578611", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Puerto Wilches", + "scheduled_service": "no", + "local_code": "PWC" + }, + { + "id": "40816", + "ident": "SK-384", + "type": "small_airport", + "name": "El Tornillo Airport", + "latitude_deg": "7.621667", + "longitude_deg": "-73.6225", + "elevation_ft": "246", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Rionegro", + "scheduled_service": "no", + "local_code": "ETO" + }, + { + "id": "40808", + "ident": "SK-385", + "type": "small_airport", + "name": "La Cascajera Airport", + "latitude_deg": "7.167139", + "longitude_deg": "-73.577728", + "elevation_ft": "360", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Barrancabermeja", + "scheduled_service": "no", + "local_code": "BJE" + }, + { + "id": "40837", + "ident": "SK-386", + "type": "small_airport", + "name": "La Ponderosa Airport", + "latitude_deg": "7.274167", + "longitude_deg": "-73.8225", + "elevation_ft": "304", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Puerto Wilches", + "scheduled_service": "no", + "local_code": "LPS" + }, + { + "id": "40836", + "ident": "SK-388", + "type": "small_airport", + "name": "Los Gemelos Dorados Airport", + "latitude_deg": "7.363333", + "longitude_deg": "-73.771944", + "elevation_ft": "228", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Puerto Wilches", + "scheduled_service": "no", + "local_code": "PTW" + }, + { + "id": "40812", + "ident": "SK-389", + "type": "small_airport", + "name": "Mata De Plátano Airport", + "latitude_deg": "7.530556", + "longitude_deg": "-73.601667", + "elevation_ft": "224", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Sabana De", + "scheduled_service": "no", + "local_code": "MAT" + }, + { + "id": "40842", + "ident": "SK-390", + "type": "small_airport", + "name": "Puerto Wlches Airport", + "latitude_deg": "7.35", + "longitude_deg": "-73.9", + "elevation_ft": "204", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Puerto Wilches", + "scheduled_service": "no", + "local_code": "PWT" + }, + { + "id": "40786", + "ident": "SK-391", + "type": "small_airport", + "name": "San Vicente Airport", + "latitude_deg": "6.891", + "longitude_deg": "-73.4295", + "elevation_ft": "1920", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "San Vicente De Chucurí", + "scheduled_service": "no", + "local_code": "SVT" + }, + { + "id": "41039", + "ident": "SK-392", + "type": "small_airport", + "name": "Zapatoca Airport", + "latitude_deg": "6.816667", + "longitude_deg": "-73.283333", + "elevation_ft": "6377", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Zapatoca", + "scheduled_service": "no", + "iata_code": "AZT", + "local_code": "AZT" + }, + { + "id": "40909", + "ident": "SK-393", + "type": "small_airport", + "name": "El Algarrobo Airport", + "latitude_deg": "8.501111", + "longitude_deg": "-75.070833", + "elevation_ft": "56", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SUC", + "municipality": "San Marcos", + "scheduled_service": "no", + "local_code": "EAS" + }, + { + "id": "40941", + "ident": "SK-394", + "type": "small_airport", + "name": "El Rincón de Mucura Airport", + "latitude_deg": "9.774167", + "longitude_deg": "-75.638056", + "elevation_ft": "18", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SUC", + "municipality": "San Onofre", + "scheduled_service": "no", + "local_code": "SOR" + }, + { + "id": "40944", + "ident": "SK-395", + "type": "small_airport", + "name": "Los Morros Airport", + "latitude_deg": "9.715501", + "longitude_deg": "-75.65094", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SUC", + "municipality": "San Onofre", + "scheduled_service": "no", + "local_code": "LMR" + }, + { + "id": "40921", + "ident": "SK-396", + "type": "small_airport", + "name": "San Marcos Airport", + "latitude_deg": "8.65", + "longitude_deg": "-75.166667", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SUC", + "municipality": "San Marcos", + "scheduled_service": "no", + "local_code": "SRS" + }, + { + "id": "40890", + "ident": "SK-397", + "type": "small_airport", + "name": "San Pedro Airport", + "latitude_deg": "9.34", + "longitude_deg": "-74.9575", + "elevation_ft": "311", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SUC", + "municipality": "Buenavista", + "scheduled_service": "no", + "local_code": "BVS" + }, + { + "id": "40874", + "ident": "SK-398", + "type": "small_airport", + "name": "Aerosport Airport", + "latitude_deg": "4.183889", + "longitude_deg": "-74.834722", + "elevation_ft": "958", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Flandes", + "scheduled_service": "no", + "local_code": "FLD" + }, + { + "id": "40896", + "ident": "SK-399", + "type": "small_airport", + "name": "Agua Blanca Airport", + "latitude_deg": "4.467222", + "longitude_deg": "-74.993333", + "elevation_ft": "1920", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Piedras", + "scheduled_service": "no", + "local_code": "ABT" + }, + { + "id": "40880", + "ident": "SK-400", + "type": "small_airport", + "name": "Agua Blanca Airport", + "latitude_deg": "4.185556", + "longitude_deg": "-74.895833", + "elevation_ft": "1068", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Espinal", + "scheduled_service": "no", + "local_code": "AGB" + }, + { + "id": "40885", + "ident": "SK-401", + "type": "small_airport", + "name": "Aniversario Estra Airport", + "latitude_deg": "4.123056", + "longitude_deg": "-74.910833", + "elevation_ft": "1058", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "El Espinal", + "scheduled_service": "no", + "local_code": "ESS" + }, + { + "id": "40934", + "ident": "SK-402", + "type": "small_airport", + "name": "Ataco Airport", + "latitude_deg": "3.570833", + "longitude_deg": "-75.411111", + "elevation_ft": "1506", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Ataco", + "scheduled_service": "no", + "local_code": "ATC" + }, + { + "id": "40878", + "ident": "SK-403", + "type": "small_airport", + "name": "Boluca Airport", + "latitude_deg": "4.693611", + "longitude_deg": "-74.891944", + "elevation_ft": "988", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Venadillo", + "scheduled_service": "no", + "local_code": "BNI" + }, + { + "id": "40898", + "ident": "SK-404", + "type": "small_airport", + "name": "Calicanto Airport", + "latitude_deg": "4.488611", + "longitude_deg": "-75.01", + "elevation_ft": "2024", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Alvarado", + "scheduled_service": "no", + "local_code": "CAT" + }, + { + "id": "40868", + "ident": "SK-405", + "type": "small_airport", + "name": "Cerritos Airport", + "latitude_deg": "4.844722", + "longitude_deg": "-74.78", + "elevation_ft": "756", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Ambalema", + "scheduled_service": "no", + "local_code": "CRR" + }, + { + "id": "40892", + "ident": "SK-406", + "type": "small_airport", + "name": "Chicoral - Estra Airport", + "latitude_deg": "4.202222", + "longitude_deg": "-74.969722", + "elevation_ft": "1248", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Chicoral", + "scheduled_service": "no", + "local_code": "CHA" + }, + { + "id": "40917", + "ident": "SK-407", + "type": "small_airport", + "name": "Cruz Verde Airport", + "latitude_deg": "4.41", + "longitude_deg": "-75.14", + "elevation_ft": "3039", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Ibague", + "scheduled_service": "no", + "gps_code": "SKCE", + "local_code": "CVT" + }, + { + "id": "40904", + "ident": "SK-408", + "type": "small_airport", + "name": "El Aceituno Airport", + "latitude_deg": "4.347222", + "longitude_deg": "-75.024167", + "elevation_ft": "2131", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Ibague", + "scheduled_service": "no", + "local_code": "ECB" + }, + { + "id": "40887", + "ident": "SK-409", + "type": "small_airport", + "name": "El Diamante Airport", + "latitude_deg": "4.571667", + "longitude_deg": "-74.939167", + "elevation_ft": "1268", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Alvarado", + "scheduled_service": "no", + "local_code": "ALV" + }, + { + "id": "40910", + "ident": "SK-410", + "type": "small_airport", + "name": "El Escobal Airport", + "latitude_deg": "4.395556", + "longitude_deg": "-75.070833", + "elevation_ft": "2479", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Ibague", + "scheduled_service": "no", + "local_code": "EET" + }, + { + "id": "40876", + "ident": "SK-411", + "type": "small_airport", + "name": "El Espinal Airport", + "latitude_deg": "4.150556", + "longitude_deg": "-74.871111", + "elevation_ft": "1031", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "El Espinal", + "scheduled_service": "no", + "local_code": "ESP" + }, + { + "id": "40902", + "ident": "SK-412", + "type": "small_airport", + "name": "El Paraíso Airport", + "latitude_deg": "4.386667", + "longitude_deg": "-75.023333", + "elevation_ft": "2187", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Ibague", + "scheduled_service": "no", + "local_code": "EPR" + }, + { + "id": "40875", + "ident": "SK-413", + "type": "small_airport", + "name": "El Recuerdo Airport", + "latitude_deg": "4.242778", + "longitude_deg": "-74.8375", + "elevation_ft": "968", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Flandes", + "scheduled_service": "no", + "local_code": "ELR" + }, + { + "id": "40869", + "ident": "SK-414", + "type": "small_airport", + "name": "El Santuario Airport", + "latitude_deg": "4.905278", + "longitude_deg": "-74.785", + "elevation_ft": "750", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Ambalema", + "scheduled_service": "no", + "local_code": "AMB" + }, + { + "id": "40870", + "ident": "SK-415", + "type": "small_airport", + "name": "El Triunfo Airport", + "latitude_deg": "4.868889", + "longitude_deg": "-74.8025", + "elevation_ft": "761", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Ambalema", + "scheduled_service": "no", + "local_code": "ETR" + }, + { + "id": "40900", + "ident": "SK-416", + "type": "small_airport", + "name": "Facón Saldaña Airport", + "latitude_deg": "3.916667", + "longitude_deg": "-75.016667", + "elevation_ft": "1014", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Saldaña", + "scheduled_service": "no", + "local_code": "SSL" + }, + { + "id": "40867", + "ident": "SK-417", + "type": "small_airport", + "name": "Ganadería Airport", + "latitude_deg": "5.170278", + "longitude_deg": "-74.764167", + "elevation_ft": "762", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Honda", + "scheduled_service": "no", + "local_code": "GTT" + }, + { + "id": "40920", + "ident": "SK-418", + "type": "small_airport", + "name": "Guadalaja Airport", + "latitude_deg": "4.366944", + "longitude_deg": "-75.159444", + "elevation_ft": "2913", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Ibague", + "scheduled_service": "no", + "local_code": "GUT" + }, + { + "id": "40889", + "ident": "SK-419", + "type": "small_airport", + "name": "Guamo - Asta Airport", + "latitude_deg": "4", + "longitude_deg": "-74.95", + "elevation_ft": "1003", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "El Guamo", + "scheduled_service": "no", + "local_code": "GMO" + }, + { + "id": "40877", + "ident": "SK-420", + "type": "small_airport", + "name": "Hacienda García Airport", + "latitude_deg": "4.853889", + "longitude_deg": "-74.889167", + "elevation_ft": "1087", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Lérida", + "scheduled_service": "no", + "local_code": "LRI" + }, + { + "id": "40913", + "ident": "SK-421", + "type": "small_airport", + "name": "Hato De Opia Airport", + "latitude_deg": "4.421667", + "longitude_deg": "-75.083056", + "elevation_ft": "2601", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Ibague", + "scheduled_service": "no", + "local_code": "HOP" + }, + { + "id": "41067", + "ident": "SK-422", + "type": "small_airport", + "name": "Herrera Airport", + "latitude_deg": "3.216667", + "longitude_deg": "-75.85", + "elevation_ft": "5740", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Campiña", + "scheduled_service": "no", + "iata_code": "HRR", + "local_code": "HRR" + }, + { + "id": "40905", + "ident": "SK-423", + "type": "small_airport", + "name": "Jabalcón Airport", + "latitude_deg": "3.842222", + "longitude_deg": "-75.033611", + "elevation_ft": "1034", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Jabalcón", + "scheduled_service": "no", + "local_code": "JAB" + }, + { + "id": "40884", + "ident": "SK-424", + "type": "small_airport", + "name": "La Bastilla Airport", + "latitude_deg": "4.093333", + "longitude_deg": "-74.910278", + "elevation_ft": "1031", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "El Guamo", + "scheduled_service": "no", + "local_code": "LAA" + }, + { + "id": "40886", + "ident": "SK-425", + "type": "small_airport", + "name": "La Carmelita Airport", + "latitude_deg": "4.816111", + "longitude_deg": "-74.931944", + "elevation_ft": "1437", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Lérida", + "scheduled_service": "no", + "local_code": "LER" + }, + { + "id": "40895", + "ident": "SK-426", + "type": "small_airport", + "name": "La María Airport", + "latitude_deg": "3.882443", + "longitude_deg": "-74.986899", + "elevation_ft": "993", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Purificacion", + "scheduled_service": "no", + "local_code": "LMT" + }, + { + "id": "40891", + "ident": "SK-427", + "type": "small_airport", + "name": "La Opia Airport", + "latitude_deg": "4.451389", + "longitude_deg": "-74.965556", + "elevation_ft": "1856", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Piedras", + "scheduled_service": "no", + "local_code": "PRA" + }, + { + "id": "40959", + "ident": "SK-428", + "type": "small_airport", + "name": "Las Garzas Airport", + "latitude_deg": "3.751111", + "longitude_deg": "-75.9475", + "elevation_ft": "13119", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Prado", + "scheduled_service": "no", + "local_code": "LGA" + }, + { + "id": "40906", + "ident": "SK-429", + "type": "small_airport", + "name": "Leticia Airport", + "latitude_deg": "4.463611", + "longitude_deg": "-75.033611", + "elevation_ft": "2197", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Alvarado", + "scheduled_service": "no", + "local_code": "LCT" + }, + { + "id": "40899", + "ident": "SK-430", + "type": "small_airport", + "name": "Los Feria Girón Airport", + "latitude_deg": "4.258889", + "longitude_deg": "-75.01", + "elevation_ft": "1486", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "San Luis", + "scheduled_service": "no", + "local_code": "SLR" + }, + { + "id": "40893", + "ident": "SK-431", + "type": "small_airport", + "name": "Los Mangos Airport", + "latitude_deg": "3.915833", + "longitude_deg": "-74.981944", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Saldaña", + "scheduled_service": "no", + "local_code": "LMS" + }, + { + "id": "40881", + "ident": "SK-432", + "type": "small_airport", + "name": "Nueva York Airport", + "latitude_deg": "4.133333", + "longitude_deg": "-74.9", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Espinal", + "scheduled_service": "no", + "local_code": "NYY" + }, + { + "id": "40873", + "ident": "SK-433", + "type": "small_airport", + "name": "Pajonales Airport", + "latitude_deg": "4.759444", + "longitude_deg": "-74.833056", + "elevation_ft": "767", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Ambalema", + "scheduled_service": "no", + "local_code": "PJS" + }, + { + "id": "41066", + "ident": "SK-434", + "type": "small_airport", + "name": "Planadas Airport", + "latitude_deg": "3.3", + "longitude_deg": "-75.7", + "elevation_ft": "3600", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Betania", + "scheduled_service": "no", + "local_code": "PLA" + }, + { + "id": "40912", + "ident": "SK-435", + "type": "small_airport", + "name": "Potrerito Airport", + "latitude_deg": "4.329444", + "longitude_deg": "-75.081944", + "elevation_ft": "2376", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Ibague", + "scheduled_service": "no", + "local_code": "PPT" + }, + { + "id": "40915", + "ident": "SK-436", + "type": "small_airport", + "name": "Rancho Grande Airport", + "latitude_deg": "4.442222", + "longitude_deg": "-75.114722", + "elevation_ft": "2866", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Ibague", + "scheduled_service": "no", + "local_code": "RGR" + }, + { + "id": "40888", + "ident": "SK-437", + "type": "small_airport", + "name": "San Agustín Airport", + "latitude_deg": "3.945278", + "longitude_deg": "-74.940556", + "elevation_ft": "982", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Saldana", + "scheduled_service": "no", + "local_code": "SDA" + }, + { + "id": "40914", + "ident": "SK-438", + "type": "small_airport", + "name": "San Germán Airport", + "latitude_deg": "3.650833", + "longitude_deg": "-75.100278", + "elevation_ft": "1081", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Natagaima", + "scheduled_service": "no", + "local_code": "SGT" + }, + { + "id": "40907", + "ident": "SK-439", + "type": "small_airport", + "name": "San Javier Airport", + "latitude_deg": "4.401389", + "longitude_deg": "-75.035556", + "elevation_ft": "2270", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Piedras", + "scheduled_service": "no", + "local_code": "SJT" + }, + { + "id": "40882", + "ident": "SK-440", + "type": "small_airport", + "name": "San Jerónimo Airport", + "latitude_deg": "4.376389", + "longitude_deg": "-74.9", + "elevation_ft": "1633", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Flandes", + "scheduled_service": "no", + "local_code": "SCY" + }, + { + "id": "40883", + "ident": "SK-441", + "type": "small_airport", + "name": "San José Airport", + "latitude_deg": "4.942222", + "longitude_deg": "-74.906389", + "elevation_ft": "1000", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Lérida", + "scheduled_service": "no", + "local_code": "LRA" + }, + { + "id": "40901", + "ident": "SK-442", + "type": "small_airport", + "name": "Santa Ana Airport", + "latitude_deg": "4.408333", + "longitude_deg": "-75.021667", + "elevation_ft": "2192", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Piedras", + "scheduled_service": "no", + "iata_code": "SQB" + }, + { + "id": "40911", + "ident": "SK-443", + "type": "small_airport", + "name": "Tamarindo Airport", + "latitude_deg": "3.790278", + "longitude_deg": "-75.081111", + "elevation_ft": "1076", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Coyaima", + "scheduled_service": "no", + "local_code": "CYA" + }, + { + "id": "40903", + "ident": "SK-444", + "type": "small_airport", + "name": "Teucali Airport", + "latitude_deg": "4.425556", + "longitude_deg": "-75.023611", + "elevation_ft": "2201", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Piedras", + "scheduled_service": "no", + "local_code": "TEU" + }, + { + "id": "40919", + "ident": "SK-445", + "type": "small_airport", + "name": "Varsovia Airport", + "latitude_deg": "4.017222", + "longitude_deg": "-75.1575", + "elevation_ft": "1308", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "San Luis", + "scheduled_service": "no", + "local_code": "VAV" + }, + { + "id": "40894", + "ident": "SK-446", + "type": "small_airport", + "name": "Ventaquemada Airport", + "latitude_deg": "4.516667", + "longitude_deg": "-74.983333", + "elevation_ft": "1700", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Alvarado", + "scheduled_service": "no", + "local_code": "VTQ" + }, + { + "id": "40908", + "ident": "SK-447", + "type": "small_airport", + "name": "Waterloo Airport", + "latitude_deg": "4.442222", + "longitude_deg": "-75.035556", + "elevation_ft": "2262", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Piedras", + "scheduled_service": "no", + "local_code": "PIE" + }, + { + "id": "40970", + "ident": "SK-448", + "type": "small_airport", + "name": "Castilla Central Airport", + "latitude_deg": "3.361667", + "longitude_deg": "-76.283056", + "elevation_ft": "3304", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Pradera", + "scheduled_service": "no", + "local_code": "CST" + }, + { + "id": "40983", + "ident": "SK-449", + "type": "small_airport", + "name": "Cavasa Airport", + "latitude_deg": "3.409444", + "longitude_deg": "-76.406944", + "elevation_ft": "3151", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Candelaria", + "scheduled_service": "no", + "local_code": "CVS" + }, + { + "id": "40969", + "ident": "SK-450", + "type": "small_airport", + "name": "Chambimbal Airport", + "latitude_deg": "3.973056", + "longitude_deg": "-76.2775", + "elevation_ft": "3078", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "San Pedro", + "scheduled_service": "no", + "local_code": "CHB" + }, + { + "id": "40988", + "ident": "SK-451", + "type": "small_airport", + "name": "Darien Calima Airport", + "latitude_deg": "3.95", + "longitude_deg": "-76.516667", + "elevation_ft": "7417", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Darien", + "scheduled_service": "no", + "local_code": "DAR" + }, + { + "id": "40979", + "ident": "SK-452", + "type": "small_airport", + "name": "El Milagro Airport", + "latitude_deg": "3.853889", + "longitude_deg": "-76.337222", + "elevation_ft": "3082", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Buga", + "scheduled_service": "no", + "local_code": "BGN" + }, + { + "id": "40958", + "ident": "SK-453", + "type": "small_airport", + "name": "Hacienda La Elvira Airport", + "latitude_deg": "4.618056", + "longitude_deg": "-75.921667", + "elevation_ft": "3307", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Obando", + "scheduled_service": "no", + "local_code": "HEV" + }, + { + "id": "40971", + "ident": "SK-454", + "type": "small_airport", + "name": "Ingenio Manuelita Airport", + "latitude_deg": "3.598889", + "longitude_deg": "-76.303611", + "elevation_ft": "3310", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Palmira", + "scheduled_service": "no", + "local_code": "PMM" + }, + { + "id": "40976", + "ident": "SK-455", + "type": "small_airport", + "name": "Ingenio Mayaguez Airport", + "latitude_deg": "3.395", + "longitude_deg": "-76.326944", + "elevation_ft": "3234", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Candelaria", + "scheduled_service": "no", + "local_code": "CAD" + }, + { + "id": "40972", + "ident": "SK-456", + "type": "small_airport", + "name": "Ingenio Providencia Airport", + "latitude_deg": "3.638333", + "longitude_deg": "-76.305", + "elevation_ft": "3307", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "El Cerrito", + "scheduled_service": "no", + "local_code": "ELT" + }, + { + "id": "40981", + "ident": "SK-457", + "type": "small_airport", + "name": "La .Estrella Airport", + "latitude_deg": "3.763056", + "longitude_deg": "-76.349722", + "elevation_ft": "3150", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Guacari", + "scheduled_service": "no", + "local_code": "GUE" + }, + { + "id": "40974", + "ident": "SK-458", + "type": "small_airport", + "name": "La Base-Fumivalle Airport", + "latitude_deg": "3.779444", + "longitude_deg": "-76.324722", + "elevation_ft": "3205", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Guacari", + "scheduled_service": "no", + "local_code": "GUR" + }, + { + "id": "40982", + "ident": "SK-459", + "type": "small_airport", + "name": "La Esmeralda Airport", + "latitude_deg": "3.379722", + "longitude_deg": "-76.398889", + "elevation_ft": "3159", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Candelaria", + "scheduled_service": "no", + "local_code": "CDA" + }, + { + "id": "40968", + "ident": "SK-460", + "type": "small_airport", + "name": "La Macarena Airport", + "latitude_deg": "3.980556", + "longitude_deg": "-76.249167", + "elevation_ft": "3135", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "San Pedro", + "scheduled_service": "no", + "local_code": "SDO" + }, + { + "id": "40962", + "ident": "SK-461", + "type": "small_airport", + "name": "La Mesa Airport", + "latitude_deg": "4.563889", + "longitude_deg": "-76.023889", + "elevation_ft": "2977", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "La Victoria", + "scheduled_service": "no", + "local_code": "LVC" + }, + { + "id": "41071", + "ident": "SK-462", + "type": "small_airport", + "name": "La Primavera Airport", + "latitude_deg": "3.733333", + "longitude_deg": "-76.216667", + "elevation_ft": "3600", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Costa Rica", + "scheduled_service": "no", + "iata_code": "LPE", + "local_code": "LPE" + }, + { + "id": "40980", + "ident": "SK-463", + "type": "small_airport", + "name": "Las Cañas Airport", + "latitude_deg": "3.309167", + "longitude_deg": "-76.338889", + "elevation_ft": "3246", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Candelaria", + "scheduled_service": "no", + "local_code": "CNL" + }, + { + "id": "40960", + "ident": "SK-464", + "type": "small_airport", + "name": "Praga Airport", + "latitude_deg": "4.589167", + "longitude_deg": "-75.981667", + "elevation_ft": "3025", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Obando", + "scheduled_service": "no", + "local_code": "OBA" + }, + { + "id": "40964", + "ident": "SK-465", + "type": "small_airport", + "name": "Rio Paila Airport", + "latitude_deg": "4.317222", + "longitude_deg": "-76.093611", + "elevation_ft": "3043", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Zarzal", + "scheduled_service": "no", + "local_code": "OPA" + }, + { + "id": "40973", + "ident": "SK-466", + "type": "small_airport", + "name": "San Gerardo Airport", + "latitude_deg": "3.633333", + "longitude_deg": "-76.316667", + "elevation_ft": "3286", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Guacari", + "scheduled_service": "no", + "local_code": "SXG" + }, + { + "id": "41069", + "ident": "SK-467", + "type": "small_airport", + "name": "San Marino Airport", + "latitude_deg": "4.37695", + "longitude_deg": "-76.0664", + "elevation_ft": "3044", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Zarzal", + "scheduled_service": "no", + "local_code": "ZAR" + }, + { + "id": "40961", + "ident": "SK-468", + "type": "small_airport", + "name": "San Pablo Airport", + "latitude_deg": "4.201667", + "longitude_deg": "-76.016944", + "elevation_ft": "3434", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Buga La Grande", + "scheduled_service": "no", + "local_code": "BDE" + }, + { + "id": "40965", + "ident": "SK-469", + "type": "small_airport", + "name": "Tierra Blanca Airport", + "latitude_deg": "4.413056", + "longitude_deg": "-76.123333", + "elevation_ft": "2990", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Roldanillo", + "scheduled_service": "no", + "local_code": "TIB" + }, + { + "id": "40987", + "ident": "SK-470", + "type": "small_airport", + "name": "Udelva Airport", + "latitude_deg": "3.233889", + "longitude_deg": "-76.503889", + "elevation_ft": "3143", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Jamundi", + "scheduled_service": "no", + "local_code": "JDI" + }, + { + "id": "41015", + "ident": "SK-471", + "type": "small_airport", + "name": "Acaricuara Airport", + "latitude_deg": "0.533333", + "longitude_deg": "-70.133333", + "elevation_ft": "587", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Acaricuara", + "scheduled_service": "no", + "iata_code": "ARF", + "local_code": "ARF" + }, + { + "id": "40581", + "ident": "SK-472", + "type": "small_airport", + "name": "Belén De Inambú Airport", + "latitude_deg": "0.470833", + "longitude_deg": "-70.184722", + "elevation_ft": "567", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MIB" + }, + { + "id": "40603", + "ident": "SK-473", + "type": "small_airport", + "name": "Bocoa Querari Airport", + "latitude_deg": "1.5975", + "longitude_deg": "-70.799444", + "elevation_ft": "626", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MBQ" + }, + { + "id": "40611", + "ident": "SK-474", + "type": "small_airport", + "name": "Buenos Aires Airport", + "latitude_deg": "0.020278", + "longitude_deg": "-71.0075", + "elevation_ft": "518", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MTN" + }, + { + "id": "40657", + "ident": "SK-475", + "type": "small_airport", + "name": "Cachiporro Airport", + "latitude_deg": "0.554167", + "longitude_deg": "-71.926389", + "elevation_ft": "557", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MCP" + }, + { + "id": "40609", + "ident": "SK-476", + "type": "small_airport", + "name": "Cananari Airport", + "latitude_deg": "0.545", + "longitude_deg": "-70.928611", + "elevation_ft": "645", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MCI" + }, + { + "id": "40594", + "ident": "SK-477", + "type": "small_airport", + "name": "Cano Coló Airport", + "latitude_deg": "0.365", + "longitude_deg": "-70.443333", + "elevation_ft": "696", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MOL" + }, + { + "id": "40561", + "ident": "SK-478", + "type": "small_airport", + "name": "Ibacaba Airport", + "latitude_deg": "0.970556", + "longitude_deg": "-69.230556", + "elevation_ft": "413", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MIC" + }, + { + "id": "40572", + "ident": "SK-479", + "type": "small_airport", + "name": "Kamanaos Airport", + "latitude_deg": "1.726111", + "longitude_deg": "-69.845278", + "elevation_ft": "578", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MKA" + }, + { + "id": "40578", + "ident": "SK-480", + "type": "small_airport", + "name": "Los Angele Airport", + "latitude_deg": "0.576389", + "longitude_deg": "-70.129722", + "elevation_ft": "601", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MVU" + }, + { + "id": "41013", + "ident": "SK-481", + "type": "small_airport", + "name": "Monfort Airport", + "latitude_deg": "0.633333", + "longitude_deg": "-69.75", + "elevation_ft": "630", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Monfort", + "scheduled_service": "no", + "iata_code": "MFB", + "local_code": "MFB" + }, + { + "id": "41014", + "ident": "SK-482", + "type": "small_airport", + "name": "Morichal Airport", + "latitude_deg": "1.75", + "longitude_deg": "-69.916667", + "elevation_ft": "552", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Morichal", + "scheduled_service": "no", + "iata_code": "MHF", + "local_code": "MHF" + }, + { + "id": "40615", + "ident": "SK-484", + "type": "small_airport", + "name": "Pacoa Airport", + "latitude_deg": "0.066667", + "longitude_deg": "-71.208333", + "elevation_ft": "549", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Pacoa", + "scheduled_service": "no", + "local_code": "PCA" + }, + { + "id": "40591", + "ident": "SK-485", + "type": "small_airport", + "name": "Pacu Airport", + "latitude_deg": "1.630833", + "longitude_deg": "-70.363889", + "elevation_ft": "605", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MPU" + }, + { + "id": "40602", + "ident": "SK-486", + "type": "small_airport", + "name": "Papunagu Airport", + "latitude_deg": "1.907222", + "longitude_deg": "-70.761944", + "elevation_ft": "513", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MTC" + }, + { + "id": "40567", + "ident": "SK-488", + "type": "small_airport", + "name": "Piracuara Airport", + "latitude_deg": "0.670278", + "longitude_deg": "-69.651389", + "elevation_ft": "457", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MPI" + }, + { + "id": "40593", + "ident": "SK-489", + "type": "small_airport", + "name": "San Antonio Airport", + "latitude_deg": "0.679722", + "longitude_deg": "-70.4375", + "elevation_ft": "649", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MSA" + }, + { + "id": "40585", + "ident": "SK-490", + "type": "small_airport", + "name": "San Gerardo Airport", + "latitude_deg": "0.769722", + "longitude_deg": "-70.284722", + "elevation_ft": "580", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MGO" + }, + { + "id": "40589", + "ident": "SK-491", + "type": "small_airport", + "name": "San Luis De Paca Airport", + "latitude_deg": "0.874444", + "longitude_deg": "-70.346389", + "elevation_ft": "635", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MSP" + }, + { + "id": "40597", + "ident": "SK-492", + "type": "small_airport", + "name": "San Miguel Airport", + "latitude_deg": "0.003889", + "longitude_deg": "-70.497222", + "elevation_ft": "424", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MGU" + }, + { + "id": "40587", + "ident": "SK-493", + "type": "small_airport", + "name": "San Pablo Airport", + "latitude_deg": "0.783056", + "longitude_deg": "-70.322778", + "elevation_ft": "589", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MSN" + }, + { + "id": "40582", + "ident": "SK-494", + "type": "small_airport", + "name": "Santa Isabel Airport", + "latitude_deg": "0.117778", + "longitude_deg": "-70.193056", + "elevation_ft": "596", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MIS" + }, + { + "id": "40575", + "ident": "SK-495", + "type": "small_airport", + "name": "Santa Lucía Airport", + "latitude_deg": "1.3825", + "longitude_deg": "-70.006667", + "elevation_ft": "758", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MSI" + }, + { + "id": "40592", + "ident": "SK-496", + "type": "small_airport", + "name": "Santa Rita Airport", + "latitude_deg": "1.652778", + "longitude_deg": "-70.409722", + "elevation_ft": "608", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MSR" + }, + { + "id": "40598", + "ident": "SK-497", + "type": "small_airport", + "name": "Sonaña Airport", + "latitude_deg": "0.130833", + "longitude_deg": "-70.579167", + "elevation_ft": "560", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MSO" + }, + { + "id": "40579", + "ident": "SK-498", + "type": "small_airport", + "name": "Tapurucuara Airport", + "latitude_deg": "1.473056", + "longitude_deg": "-70.162778", + "elevation_ft": "621", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MUR" + }, + { + "id": "40566", + "ident": "SK-499", + "type": "small_airport", + "name": "Taraira Airport", + "latitude_deg": "0.5675", + "longitude_deg": "-69.637222", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Taraira", + "scheduled_service": "no", + "local_code": "TAR" + }, + { + "id": "40563", + "ident": "SK-500", + "type": "small_airport", + "name": "Teresita Airport", + "latitude_deg": "0.738056", + "longitude_deg": "-69.471389", + "elevation_ft": "414", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MTS" + }, + { + "id": "40580", + "ident": "SK-501", + "type": "small_airport", + "name": "Tiquie Airport", + "latitude_deg": "0.234167", + "longitude_deg": "-70.168889", + "elevation_ft": "518", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MTI" + }, + { + "id": "40574", + "ident": "SK-502", + "type": "small_airport", + "name": "Villa Fátima Airport", + "latitude_deg": "0.974444", + "longitude_deg": "-69.956944", + "elevation_ft": "583", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MVI" + }, + { + "id": "40621", + "ident": "SK-503", + "type": "small_airport", + "name": "Villa Gladys Airport", + "latitude_deg": "0.260556", + "longitude_deg": "-71.356389", + "elevation_ft": "549", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MVA" + }, + { + "id": "40595", + "ident": "SK-504", + "type": "small_airport", + "name": "Villa Nueva Airport", + "latitude_deg": "0.280556", + "longitude_deg": "-70.456667", + "elevation_ft": "622", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MVN" + }, + { + "id": "40583", + "ident": "SK-505", + "type": "small_airport", + "name": "Wacaricuara Airport", + "latitude_deg": "0.2", + "longitude_deg": "-70.225", + "elevation_ft": "577", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MIT" + }, + { + "id": "40565", + "ident": "SK-506", + "type": "small_airport", + "name": "Wainambi Airport", + "latitude_deg": "0.866667", + "longitude_deg": "-69.617222", + "elevation_ft": "461", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MWA" + }, + { + "id": "40577", + "ident": "SK-507", + "type": "small_airport", + "name": "Wasay Airport", + "latitude_deg": "1.660833", + "longitude_deg": "-70.019444", + "elevation_ft": "567", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "MWY" + }, + { + "id": "40564", + "ident": "SK-508", + "type": "small_airport", + "name": "Yapima Airport", + "latitude_deg": "1.0825", + "longitude_deg": "-69.491389", + "elevation_ft": "489", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "local_code": "YAP" + }, + { + "id": "40590", + "ident": "SK-509", + "type": "small_airport", + "name": "Yapu Airport", + "latitude_deg": "0.621667", + "longitude_deg": "-70.351667", + "elevation_ft": "610", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitu", + "scheduled_service": "no", + "gps_code": "SKYG", + "local_code": "MYA" + }, + { + "id": "41018", + "ident": "SK-510", + "type": "small_airport", + "name": "Yavarate Airport", + "latitude_deg": "1.116667", + "longitude_deg": "-70.75", + "elevation_ft": "649", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Yavarate", + "scheduled_service": "no", + "local_code": "VAB" + }, + { + "id": "41011", + "ident": "SK-511", + "type": "small_airport", + "name": "Casuarito Airport", + "latitude_deg": "5.833333", + "longitude_deg": "-68.133333", + "elevation_ft": "245", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "Casuarito", + "scheduled_service": "no", + "iata_code": "CSR", + "local_code": "CSR" + }, + { + "id": "40557", + "ident": "SK-512", + "type": "small_airport", + "name": "Centro Administrativo Airport", + "latitude_deg": "5.335174", + "longitude_deg": "-67.866615", + "elevation_ft": "274", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "Santa Rita", + "scheduled_service": "no", + "local_code": "CAO" + }, + { + "id": "40606", + "ident": "SK-513", + "type": "small_airport", + "name": "Cumachagua Airport", + "latitude_deg": "4.016667", + "longitude_deg": "-70.883333", + "elevation_ft": "433", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "Santa Rosalìa", + "scheduled_service": "no", + "local_code": "CAV" + }, + { + "id": "40569", + "ident": "SK-514", + "type": "small_airport", + "name": "Cumaribo Airport", + "latitude_deg": "4.4483", + "longitude_deg": "-69.7807", + "elevation_ft": "550", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "Cumaribo", + "scheduled_service": "no", + "gps_code": "SKUM", + "local_code": "PCE" + }, + { + "id": "40562", + "ident": "SK-515", + "type": "small_airport", + "name": "El Cimarrón Airport", + "latitude_deg": "5.939722", + "longitude_deg": "-69.264444", + "elevation_ft": "359", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "La Primavera", + "scheduled_service": "no", + "local_code": "LPR" + }, + { + "id": "40568", + "ident": "SK-516", + "type": "small_airport", + "name": "El Gavilán Airport", + "latitude_deg": "5.226667", + "longitude_deg": "-69.737222", + "elevation_ft": "381", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "La Primavera", + "scheduled_service": "no", + "local_code": "LPG" + }, + { + "id": "40560", + "ident": "SK-517", + "type": "small_airport", + "name": "El Tapón Airport", + "latitude_deg": "5.15", + "longitude_deg": "-69.183333", + "elevation_ft": "419", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "El Tapón", + "scheduled_service": "no", + "local_code": "ETA" + }, + { + "id": "40586", + "ident": "SK-518", + "type": "small_airport", + "name": "Guerima Airport", + "latitude_deg": "3.591667", + "longitude_deg": "-70.312778", + "elevation_ft": "471", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "Puerto Carreño", + "scheduled_service": "no", + "local_code": "GRM" + }, + { + "id": "40558", + "ident": "SK-519", + "type": "small_airport", + "name": "Jibici Airport", + "latitude_deg": "4.883889", + "longitude_deg": "-68.356389", + "elevation_ft": "356", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "Puerto Carreño", + "scheduled_service": "no", + "local_code": "PRR" + }, + { + "id": "40571", + "ident": "SK-520", + "type": "small_airport", + "name": "La Jaula Airport", + "latitude_deg": "5.307778", + "longitude_deg": "-69.831944", + "elevation_ft": "380", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "La Primavera", + "scheduled_service": "no", + "local_code": "LJV" + }, + { + "id": "40596", + "ident": "SK-521", + "type": "small_airport", + "name": "La Primavera Airport", + "latitude_deg": "5.4776", + "longitude_deg": "-70.4212", + "elevation_ft": "390", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "La Primavera", + "scheduled_service": "no", + "gps_code": "SKIM", + "iata_code": "LPE", + "local_code": "PIM" + }, + { + "id": "40599", + "ident": "SK-522", + "type": "small_airport", + "name": "La Victoria Airport", + "latitude_deg": "3.828056", + "longitude_deg": "-70.589167", + "elevation_ft": "438", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "Puerto Carreño", + "scheduled_service": "no", + "local_code": "PTC" + }, + { + "id": "41019", + "ident": "SK-523", + "type": "small_airport", + "name": "Las Gaviotas Airport", + "latitude_deg": "4.583333", + "longitude_deg": "-70.833333", + "elevation_ft": "600", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "Las Gaviotas", + "scheduled_service": "no" + }, + { + "id": "40559", + "ident": "SK-524", + "type": "small_airport", + "name": "Pinoquia Airport", + "latitude_deg": "6.1525", + "longitude_deg": "-68.817778", + "elevation_ft": "234", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "Puerto Carreño", + "scheduled_service": "no", + "local_code": "PNQ" + }, + { + "id": "40573", + "ident": "SK-525", + "type": "small_airport", + "name": "Rancho Alegre Airport", + "latitude_deg": "5.322778", + "longitude_deg": "-69.950556", + "elevation_ft": "387", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "La Primavera", + "scheduled_service": "no", + "local_code": "LPV" + }, + { + "id": "40604", + "ident": "SK-526", + "type": "small_airport", + "name": "San Carlos-Planas Airport", + "latitude_deg": "4.033333", + "longitude_deg": "-70.833333", + "elevation_ft": "449", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "Santa Rosalìa", + "scheduled_service": "no", + "local_code": "SCS" + }, + { + "id": "40584", + "ident": "SK-527", + "type": "small_airport", + "name": "San José De Ocune Airport", + "latitude_deg": "4.082222", + "longitude_deg": "-70.253889", + "elevation_ft": "560", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "Puerto Carreño", + "scheduled_service": "no", + "local_code": "PRE" + }, + { + "id": "40600", + "ident": "SK-528", + "type": "small_airport", + "name": "Santa Rosalìa Airport", + "latitude_deg": "5.233333", + "longitude_deg": "-70.683333", + "elevation_ft": "377", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "Santa Rosalìa", + "scheduled_service": "no", + "local_code": "CAO" + }, + { + "id": "41041", + "ident": "SK53", + "type": "small_airport", + "name": "Yaguarito Airport", + "latitude_deg": "3.88", + "longitude_deg": "-73.339996", + "elevation_ft": "836", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Surimena", + "scheduled_service": "no", + "gps_code": "SK53", + "local_code": "SK53" + }, + { + "id": "30615", + "ident": "SKAC", + "type": "small_airport", + "name": "Araracuara Airport", + "latitude_deg": "-0.600854", + "longitude_deg": "-72.398011", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "CO", + "iso_region": "CO-CAQ", + "municipality": "Araracuara", + "scheduled_service": "no", + "gps_code": "SKAC", + "iata_code": "ACR", + "local_code": "ACR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Araracuara_Airport" + }, + { + "id": "30613", + "ident": "SKAD", + "type": "small_airport", + "name": "Alcides Fernández Airport", + "latitude_deg": "8.497847", + "longitude_deg": "-77.274106", + "elevation_ft": "50", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CHO", + "municipality": "Acandí", + "scheduled_service": "no", + "gps_code": "SKAD", + "iata_code": "ACD", + "local_code": "ACD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alcides_Fern%C3%A1ndez_Airport" + }, + { + "id": "32306", + "ident": "SKAG", + "type": "small_airport", + "name": "Hacaritama Airport", + "latitude_deg": "8.247", + "longitude_deg": "-73.5814", + "elevation_ft": "545", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Aguachica", + "scheduled_service": "no", + "gps_code": "SKAG", + "local_code": "AGH", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aeropuerto_Hacaritama" + }, + { + "id": "30620", + "ident": "SKAM", + "type": "small_airport", + "name": "Amalfi Airport", + "latitude_deg": "6.895033", + "longitude_deg": "-75.047334", + "elevation_ft": "5507", + "continent": "NA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Amalfi", + "scheduled_service": "no", + "gps_code": "SKAM", + "iata_code": "AFI", + "local_code": "AFI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amalfi_Airport_(Colombia)" + }, + { + "id": "41068", + "ident": "SKAN", + "type": "closed", + "name": "Andes Airport", + "latitude_deg": "5.69764", + "longitude_deg": "-75.88038", + "elevation_ft": "3900", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Andes", + "scheduled_service": "no", + "gps_code": "SKAN", + "iata_code": "ADN" + }, + { + "id": "6098", + "ident": "SKAP", + "type": "medium_airport", + "name": "Gomez Nino Apiay Air Base", + "latitude_deg": "4.07607", + "longitude_deg": "-73.5627", + "elevation_ft": "1207", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Apiay", + "scheduled_service": "no", + "gps_code": "SKAP", + "iata_code": "API", + "local_code": "APY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Captain_Luis_F._G%C3%B3mez_Ni%C3%B1o_Air_Base" + }, + { + "id": "6099", + "ident": "SKAR", + "type": "medium_airport", + "name": "El Eden Airport", + "latitude_deg": "4.45278", + "longitude_deg": "-75.7664", + "elevation_ft": "3990", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-QUI", + "municipality": "Armenia", + "scheduled_service": "yes", + "gps_code": "SKAR", + "iata_code": "AXM", + "local_code": "AXM", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Ed%C3%A9n_Airport" + }, + { + "id": "6100", + "ident": "SKAS", + "type": "medium_airport", + "name": "Tres De Mayo Airport", + "latitude_deg": "0.505228", + "longitude_deg": "-76.5008", + "elevation_ft": "815", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-PUT", + "municipality": "Puerto Asís", + "scheduled_service": "yes", + "gps_code": "SKAS", + "iata_code": "PUU", + "local_code": "PUU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tres_de_Mayo_Airport" + }, + { + "id": "429705", + "ident": "SKAT", + "type": "small_airport", + "name": "El Troncal Airport", + "latitude_deg": "7.02106", + "longitude_deg": "-71.388901", + "elevation_ft": "512", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ARA", + "municipality": "Arauquita", + "scheduled_service": "no", + "gps_code": "SKAT", + "iata_code": "ARQ", + "local_code": "ARQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Troncal_Airport" + }, + { + "id": "6101", + "ident": "SKBC", + "type": "medium_airport", + "name": "Las Flores Airport", + "latitude_deg": "9.04554", + "longitude_deg": "-73.9749", + "elevation_ft": "111", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MAG", + "municipality": "El Banco", + "scheduled_service": "no", + "gps_code": "SKBC", + "iata_code": "ELB", + "local_code": "ELB" + }, + { + "id": "32308", + "ident": "SKBE", + "type": "small_airport", + "name": "Becerril Airport", + "latitude_deg": "9.66278", + "longitude_deg": "-73.2744", + "elevation_ft": "433", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Becerril", + "scheduled_service": "no", + "gps_code": "SKBE", + "local_code": "BEC" + }, + { + "id": "6102", + "ident": "SKBG", + "type": "medium_airport", + "name": "Palonegro Airport", + "latitude_deg": "7.1265", + "longitude_deg": "-73.1848", + "elevation_ft": "3897", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Bucaramanga", + "scheduled_service": "yes", + "gps_code": "SKBG", + "iata_code": "BGA", + "local_code": "BGA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palo_Negro_International_Airport" + }, + { + "id": "6103", + "ident": "SKBN", + "type": "small_airport", + "name": "Buenavista Airport", + "latitude_deg": "10.8879", + "longitude_deg": "-72.9004", + "elevation_ft": "850", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-LAG", + "municipality": "Fonseca", + "scheduled_service": "no", + "gps_code": "SKBN", + "local_code": "BVA" + }, + { + "id": "6104", + "ident": "SKBO", + "type": "large_airport", + "name": "El Dorado International Airport", + "latitude_deg": "4.70159", + "longitude_deg": "-74.1469", + "elevation_ft": "8361", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Bogota", + "scheduled_service": "yes", + "gps_code": "SKBO", + "iata_code": "BOG", + "local_code": "BOG", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Dorado_International_Airport" + }, + { + "id": "6105", + "ident": "SKBQ", + "type": "medium_airport", + "name": "Ernesto Cortissoz International Airport", + "latitude_deg": "10.8896", + "longitude_deg": "-74.7808", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ATL", + "municipality": "Barranquilla", + "scheduled_service": "yes", + "gps_code": "SKBQ", + "iata_code": "BAQ", + "local_code": "BAQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ernesto_Cortissoz_International_Airport" + }, + { + "id": "41064", + "ident": "SKBR", + "type": "small_airport", + "name": "Berástegui Airport", + "latitude_deg": "8.885319", + "longitude_deg": "-75.682189", + "elevation_ft": "38", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-COR", + "municipality": "Berástegui", + "scheduled_service": "no", + "gps_code": "SKBR", + "local_code": "BIC" + }, + { + "id": "6106", + "ident": "SKBS", + "type": "medium_airport", + "name": "José Celestino Mutis Airport", + "latitude_deg": "6.20292", + "longitude_deg": "-77.3947", + "elevation_ft": "80", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CHO", + "municipality": "Bahía Solano", + "scheduled_service": "yes", + "gps_code": "SKBS", + "iata_code": "BSC", + "local_code": "BSC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jos%C3%A9_Celestino_Mutis_Airport" + }, + { + "id": "6107", + "ident": "SKBU", + "type": "medium_airport", + "name": "Gerardo Tobar López Airport", + "latitude_deg": "3.81963", + "longitude_deg": "-76.9898", + "elevation_ft": "48", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Buenaventura", + "scheduled_service": "yes", + "gps_code": "SKBU", + "iata_code": "BUN", + "local_code": "BUN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gerardo_Tobar_L%C3%B3pez_Airport" + }, + { + "id": "30845", + "ident": "SKCA", + "type": "small_airport", + "name": "Capurganá Airport", + "latitude_deg": "8.632169", + "longitude_deg": "-77.350262", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CHO", + "municipality": "Capurganá", + "scheduled_service": "no", + "gps_code": "SKCA", + "iata_code": "CPB", + "local_code": "CPB" + }, + { + "id": "32309", + "ident": "SKCB", + "type": "small_airport", + "name": "Carmen De Bolivar Airport", + "latitude_deg": "9.68417", + "longitude_deg": "-75.1261", + "elevation_ft": "590", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOL", + "municipality": "Carmen De Bolivar", + "scheduled_service": "no", + "gps_code": "SKCB", + "local_code": "CBR" + }, + { + "id": "6108", + "ident": "SKCC", + "type": "medium_airport", + "name": "Camilo Daza International Airport", + "latitude_deg": "7.92757", + "longitude_deg": "-72.5115", + "elevation_ft": "1096", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-NSA", + "municipality": "Cúcuta", + "scheduled_service": "yes", + "gps_code": "SKCC", + "iata_code": "CUC", + "local_code": "CUC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camilo_Daza_International_Airport" + }, + { + "id": "30842", + "ident": "SKCD", + "type": "small_airport", + "name": "Mandinga Airport", + "latitude_deg": "5.072007", + "longitude_deg": "-76.676373", + "elevation_ft": "213", + "continent": "NA", + "iso_country": "CO", + "iso_region": "CO-CHO", + "municipality": "Condoto", + "scheduled_service": "no", + "gps_code": "SKCD", + "iata_code": "COG", + "local_code": "COG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mandinga_Airport" + }, + { + "id": "6109", + "ident": "SKCG", + "type": "medium_airport", + "name": "Rafael Nuñez International Airport", + "latitude_deg": "10.4424", + "longitude_deg": "-75.513", + "elevation_ft": "4", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOL", + "municipality": "Cartagena", + "scheduled_service": "yes", + "gps_code": "SKCG", + "iata_code": "CTG", + "local_code": "CTG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rafael_N%C3%BA%C3%B1ez_International_Airport" + }, + { + "id": "41057", + "ident": "SKCH", + "type": "small_airport", + "name": "El Pacífico Airport", + "latitude_deg": "1.35", + "longitude_deg": "-74.84", + "elevation_ft": "754", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAQ", + "municipality": "Cartagena Del Chiara", + "scheduled_service": "no", + "gps_code": "SKCH", + "local_code": "CCH" + }, + { + "id": "30816", + "ident": "SKCI", + "type": "small_airport", + "name": "Carimagua Airport", + "latitude_deg": "4.56417", + "longitude_deg": "-71.3364", + "elevation_ft": "700", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto López", + "scheduled_service": "no", + "gps_code": "SKCI", + "iata_code": "CCO", + "local_code": "CCO" + }, + { + "id": "6110", + "ident": "SKCL", + "type": "medium_airport", + "name": "Alfonso Bonilla Aragon International Airport", + "latitude_deg": "3.54322", + "longitude_deg": "-76.3816", + "elevation_ft": "3162", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Cali", + "scheduled_service": "yes", + "gps_code": "SKCL", + "iata_code": "CLO", + "local_code": "CLO", + "home_link": "https://www.aerocali.com.co/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alfonso_Bonilla_Arag%C3%B3n_International_Airport", + "keywords": "Palmaseca International, 02-20" + }, + { + "id": "30831", + "ident": "SKCM", + "type": "small_airport", + "name": "Cimitarra Airport", + "latitude_deg": "6.367484", + "longitude_deg": "-73.970658", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Cimitarra", + "scheduled_service": "no", + "gps_code": "SKCM", + "iata_code": "CIM", + "local_code": "CIM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cimitarra_Airport" + }, + { + "id": "6111", + "ident": "SKCN", + "type": "small_airport", + "name": "Cravo Norte Airport", + "latitude_deg": "6.31684", + "longitude_deg": "-70.2107", + "elevation_ft": "341", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ARA", + "municipality": "Cravo Norte", + "scheduled_service": "no", + "gps_code": "SKCN", + "iata_code": "RAV", + "local_code": "RAV" + }, + { + "id": "6112", + "ident": "SKCO", + "type": "medium_airport", + "name": "La Florida Airport", + "latitude_deg": "1.81442", + "longitude_deg": "-78.7492", + "elevation_ft": "8", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-NAR", + "municipality": "Tumaco", + "scheduled_service": "yes", + "gps_code": "SKCO", + "iata_code": "TCO", + "local_code": "TCO", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Florida_Airport_(Colombia)" + }, + { + "id": "45099", + "ident": "SKCP", + "type": "small_airport", + "name": "Cupica Airport", + "latitude_deg": "6.691944", + "longitude_deg": "-77.477222", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CHO", + "municipality": "Bahía Solano", + "scheduled_service": "no", + "gps_code": "SKCP" + }, + { + "id": "30862", + "ident": "SKCR", + "type": "small_airport", + "name": "Carurú Airport", + "latitude_deg": "1.013822", + "longitude_deg": "-71.297343", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Carurú", + "scheduled_service": "no", + "gps_code": "SKCR", + "iata_code": "CUO", + "local_code": "CRU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carur%C3%BA_Airport" + }, + { + "id": "6113", + "ident": "SKCU", + "type": "medium_airport", + "name": "Juan H White Airport", + "latitude_deg": "7.96847", + "longitude_deg": "-75.1985", + "elevation_ft": "174", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Caucasia", + "scheduled_service": "no", + "gps_code": "SKCU", + "iata_code": "CAQ", + "local_code": "CAQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Juan_H._White_Airport", + "keywords": "Caucasia Airport" + }, + { + "id": "6114", + "ident": "SKCV", + "type": "medium_airport", + "name": "Coveñas Airport", + "latitude_deg": "9.40092", + "longitude_deg": "-75.6913", + "elevation_ft": "31", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SUC", + "municipality": "Coveñas", + "scheduled_service": "no", + "gps_code": "SKCV", + "iata_code": "CVE", + "local_code": "CVE" + }, + { + "id": "6115", + "ident": "SKCZ", + "type": "medium_airport", + "name": "Las Brujas Airport", + "latitude_deg": "9.33274", + "longitude_deg": "-75.2856", + "elevation_ft": "528", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SUC", + "municipality": "Corozal", + "scheduled_service": "yes", + "gps_code": "SKCZ", + "iata_code": "CZU", + "local_code": "CZU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Las_Brujas_Airport_(Colombia)" + }, + { + "id": "6116", + "ident": "SKEB", + "type": "medium_airport", + "name": "El Bagre Airport", + "latitude_deg": "7.59647", + "longitude_deg": "-74.8089", + "elevation_ft": "180", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "El Bagre", + "scheduled_service": "no", + "gps_code": "SKEB", + "iata_code": "EBG", + "local_code": "EBG", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Bagre_Airport", + "keywords": "El Tomin Airport" + }, + { + "id": "6117", + "ident": "SKEJ", + "type": "medium_airport", + "name": "Yariguíes Airport", + "latitude_deg": "7.02433", + "longitude_deg": "-73.8068", + "elevation_ft": "412", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Barrancabermeja", + "scheduled_service": "yes", + "gps_code": "SKEJ", + "iata_code": "EJA", + "local_code": "EJA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yarigu%C3%ADes_Airport" + }, + { + "id": "6118", + "ident": "SKFL", + "type": "medium_airport", + "name": "Gustavo Artunduaga Paredes Airport", + "latitude_deg": "1.58919", + "longitude_deg": "-75.5644", + "elevation_ft": "803", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAQ", + "municipality": "Florencia", + "scheduled_service": "yes", + "gps_code": "SKFL", + "iata_code": "FLA", + "local_code": "FLA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gustavo_Artunduaga_Paredes_Airport" + }, + { + "id": "32310", + "ident": "SKFR", + "type": "small_airport", + "name": "Furatena Airport", + "latitude_deg": "5.5275", + "longitude_deg": "-74.1869", + "elevation_ft": "3850", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOY", + "municipality": "Quipama", + "scheduled_service": "no", + "gps_code": "SKFR", + "local_code": "QPM" + }, + { + "id": "31104", + "ident": "SKFU", + "type": "small_airport", + "name": "Fundación Airport", + "latitude_deg": "10.5333", + "longitude_deg": "-74.2", + "elevation_ft": "150", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MAG", + "municipality": "Fundación", + "scheduled_service": "no", + "gps_code": "SKFU", + "iata_code": "FDA", + "local_code": "FDA" + }, + { + "id": "45100", + "ident": "SKGA", + "type": "small_airport", + "name": "La Gaviota Airport", + "latitude_deg": "4.550543", + "longitude_deg": "-70.925353", + "elevation_ft": "591", + "continent": "NA", + "iso_country": "CO", + "iso_region": "CO-VID", + "scheduled_service": "no", + "gps_code": "SKGA", + "iata_code": "LGT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Las_Gaviotas_Airport" + }, + { + "id": "6119", + "ident": "SKGB", + "type": "small_airport", + "name": "Marco Fidel Suarez Air Base", + "latitude_deg": "3.45899", + "longitude_deg": "-76.4966", + "elevation_ft": "3165", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Cali", + "scheduled_service": "no", + "gps_code": "SKGB" + }, + { + "id": "6120", + "ident": "SKGI", + "type": "medium_airport", + "name": "Santiago Vila Airport", + "latitude_deg": "4.27624", + "longitude_deg": "-74.7967", + "elevation_ft": "900", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Girardot", + "scheduled_service": "no", + "gps_code": "SKGI", + "iata_code": "GIR", + "local_code": "GIR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santiago_Vila_Airport" + }, + { + "id": "6121", + "ident": "SKGO", + "type": "medium_airport", + "name": "Santa Ana Airport", + "latitude_deg": "4.75818", + "longitude_deg": "-75.9557", + "elevation_ft": "2979", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Cartago", + "scheduled_service": "yes", + "gps_code": "SKGO", + "iata_code": "CRC", + "local_code": "CRC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Ana_Airport_(Colombia)" + }, + { + "id": "6122", + "ident": "SKGP", + "type": "medium_airport", + "name": "Juan Casiano Airport", + "latitude_deg": "2.57013", + "longitude_deg": "-77.897969", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "CO", + "iso_region": "CO-CAU", + "municipality": "Guapi", + "scheduled_service": "yes", + "gps_code": "SKGP", + "iata_code": "GPI", + "local_code": "GPI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guapi_Airport" + }, + { + "id": "6123", + "ident": "SKGY", + "type": "small_airport", + "name": "Guaymaral Airport", + "latitude_deg": "4.81233", + "longitude_deg": "-74.0649", + "elevation_ft": "8390", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOL", + "municipality": "Chía", + "scheduled_service": "no", + "gps_code": "SKGY", + "local_code": "GMY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guaymaral_Airport" + }, + { + "id": "32572", + "ident": "SKGZ", + "type": "small_airport", + "name": "La Jagua Airport", + "latitude_deg": "2.1464", + "longitude_deg": "-75.6944", + "elevation_ft": "2620", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-HUI", + "municipality": "Garzón", + "scheduled_service": "yes", + "gps_code": "SKGZ", + "local_code": "GLJ", + "keywords": "Garzón" + }, + { + "id": "30847", + "ident": "SKHA", + "type": "small_airport", + "name": "General Navas Pardo Airport", + "latitude_deg": "3.724293", + "longitude_deg": "-75.465785", + "elevation_ft": "2730", + "continent": "NA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Chaparral", + "scheduled_service": "no", + "gps_code": "SKHA", + "iata_code": "CPL", + "local_code": "CPL", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Navas_Pardo_Airport" + }, + { + "id": "31651", + "ident": "SKHC", + "type": "small_airport", + "name": "Hato Corozal Airport", + "latitude_deg": "6.15", + "longitude_deg": "-71.75", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Hato Corozal", + "scheduled_service": "no", + "gps_code": "SKHC", + "iata_code": "HTZ", + "local_code": "HTZ" + }, + { + "id": "6124", + "ident": "SKIB", + "type": "medium_airport", + "name": "Perales Airport", + "latitude_deg": "4.42161", + "longitude_deg": "-75.1333", + "elevation_ft": "2999", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Ibagué", + "scheduled_service": "yes", + "gps_code": "SKIB", + "iata_code": "IBE", + "local_code": "IBE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Perales_Airport" + }, + { + "id": "31666", + "ident": "SKIG", + "type": "small_airport", + "name": "Jaime Ortiz Betancourt Airport", + "latitude_deg": "7.677606", + "longitude_deg": "-76.683165", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Chigorodó", + "scheduled_service": "no", + "gps_code": "SKIG", + "iata_code": "IGO", + "local_code": "IGO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jaime_Ortiz_Betancur_Airport" + }, + { + "id": "6125", + "ident": "SKIO", + "type": "small_airport", + "name": "Cicuco Airport", + "latitude_deg": "9.26878", + "longitude_deg": "-74.6523", + "elevation_ft": "65", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOL", + "municipality": "Limón", + "scheduled_service": "no", + "gps_code": "SKIO", + "local_code": "CIO" + }, + { + "id": "6126", + "ident": "SKIP", + "type": "medium_airport", + "name": "San Luis Airport", + "latitude_deg": "0.861925", + "longitude_deg": "-77.6718", + "elevation_ft": "9765", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-NAR", + "municipality": "Ipiales", + "scheduled_service": "yes", + "gps_code": "SKIP", + "iata_code": "IPI", + "local_code": "IPI", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Luis_Airport_(Colombia)" + }, + { + "id": "309459", + "ident": "SKJ", + "type": "closed", + "name": "Sitkinak Airport", + "latitude_deg": "56.5378", + "longitude_deg": "-154.1412", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sitkinak Island", + "scheduled_service": "no", + "iata_code": "SKJ", + "local_code": "SKJ" + }, + { + "id": "354456", + "ident": "SKJC", + "type": "small_airport", + "name": "Juanchaco Airport", + "latitude_deg": "3.933991", + "longitude_deg": "-77.361453", + "elevation_ft": "47", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Juanchaco", + "scheduled_service": "no", + "gps_code": "SKJC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Juanchaco_Airport" + }, + { + "id": "32312", + "ident": "SKLA", + "type": "small_airport", + "name": "Málaga Regional Airport", + "latitude_deg": "6.70472", + "longitude_deg": "-72.7303", + "elevation_ft": "6710", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "Málaga", + "scheduled_service": "no", + "gps_code": "SKLA", + "local_code": "MLG" + }, + { + "id": "6127", + "ident": "SKLC", + "type": "medium_airport", + "name": "Antonio Roldan Betancourt Airport", + "latitude_deg": "7.81196", + "longitude_deg": "-76.7164", + "elevation_ft": "46", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Carepa", + "scheduled_service": "yes", + "gps_code": "SKLC", + "iata_code": "APO", + "local_code": "APO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Antonio_Rold%C3%A1n_Betancourt_Airport" + }, + { + "id": "6128", + "ident": "SKLG", + "type": "small_airport", + "name": "Caucaya Airport", + "latitude_deg": "-0.182278", + "longitude_deg": "-74.7708", + "elevation_ft": "573", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-PUT", + "municipality": "Puerto Leguízamo", + "scheduled_service": "yes", + "gps_code": "SKLG", + "iata_code": "LQM", + "local_code": "LQM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Caucay%C3%A1_Airport" + }, + { + "id": "6129", + "ident": "SKLM", + "type": "medium_airport", + "name": "Jorge Isaac Airport", + "latitude_deg": "11.2325", + "longitude_deg": "-72.4901", + "elevation_ft": "281", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-LAG", + "municipality": "La Mina-Maicao", + "scheduled_service": "no", + "gps_code": "SKLM", + "iata_code": "MCJ", + "local_code": "LMA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jorge_Isaacs_Airport" + }, + { + "id": "31844", + "ident": "SKLP", + "type": "small_airport", + "name": "La Pedrera Airport", + "latitude_deg": "-1.32861", + "longitude_deg": "-69.5797", + "elevation_ft": "590", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-AMA", + "municipality": "La Pedrera", + "scheduled_service": "yes", + "gps_code": "SKLP", + "iata_code": "LPD", + "local_code": "LPD", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Pedrera_Airport" + }, + { + "id": "6130", + "ident": "SKLT", + "type": "medium_airport", + "name": "Alfredo Vásquez Cobo International Airport", + "latitude_deg": "-4.19355", + "longitude_deg": "-69.9432", + "elevation_ft": "277", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-AMA", + "municipality": "Leticia", + "scheduled_service": "yes", + "gps_code": "SKLT", + "iata_code": "LET", + "local_code": "LET", + "wikipedia_link": "https://en.wikipedia.org/wiki/V%C3%A1squez_Cobo_International_Airport" + }, + { + "id": "6131", + "ident": "SKMA", + "type": "small_airport", + "name": "Madrid Air Base", + "latitude_deg": "4.7278", + "longitude_deg": "-74.2754", + "elevation_ft": "8325", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Madrid", + "scheduled_service": "no", + "gps_code": "SKMA" + }, + { + "id": "6132", + "ident": "SKMD", + "type": "medium_airport", + "name": "Enrique Olaya Herrera Airport", + "latitude_deg": "6.220549", + "longitude_deg": "-75.590582", + "elevation_ft": "4949", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Medellín", + "scheduled_service": "yes", + "gps_code": "SKMD", + "iata_code": "EOH", + "local_code": "EOH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Enrique_Olaya_Herrera_International_Airport" + }, + { + "id": "6133", + "ident": "SKME", + "type": "small_airport", + "name": "Melgar Air Base", + "latitude_deg": "4.21644", + "longitude_deg": "-74.635", + "elevation_ft": "1028", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Melgar", + "scheduled_service": "no", + "gps_code": "SKME" + }, + { + "id": "31896", + "ident": "SKMF", + "type": "small_airport", + "name": "Miraflores Airport", + "latitude_deg": "1.35", + "longitude_deg": "-71.9444", + "elevation_ft": "730", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-GUV", + "municipality": "Miraflores", + "scheduled_service": "no", + "gps_code": "SKMF", + "iata_code": "MFS", + "local_code": "MFS" + }, + { + "id": "6134", + "ident": "SKMG", + "type": "medium_airport", + "name": "Baracoa Airport", + "latitude_deg": "9.28474", + "longitude_deg": "-74.8461", + "elevation_ft": "178", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOL", + "municipality": "Magangué", + "scheduled_service": "no", + "gps_code": "SKMG", + "iata_code": "MGN", + "local_code": "MGN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baracoa_Regional_Airport" + }, + { + "id": "6135", + "ident": "SKMJ", + "type": "small_airport", + "name": "Maicao Airport", + "latitude_deg": "11.3899", + "longitude_deg": "-72.239197", + "elevation_ft": "160", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-LAG", + "municipality": "Maicao", + "scheduled_service": "no", + "gps_code": "SKMJ", + "local_code": "MCJ" + }, + { + "id": "6136", + "ident": "SKML", + "type": "small_airport", + "name": "Montelibano Airport", + "latitude_deg": "7.97174", + "longitude_deg": "-75.4325", + "elevation_ft": "160", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-COR", + "municipality": "Montelíbano", + "scheduled_service": "no", + "gps_code": "SKML", + "iata_code": "MTB", + "local_code": "MTB" + }, + { + "id": "32313", + "ident": "SKMN", + "type": "small_airport", + "name": "Casanare Airport", + "latitude_deg": "4.83333", + "longitude_deg": "-72.2667", + "elevation_ft": "600", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Maní", + "scheduled_service": "no", + "gps_code": "SKMN", + "local_code": "MNI" + }, + { + "id": "6137", + "ident": "SKMP", + "type": "small_airport", + "name": "San Bernardo Airport", + "latitude_deg": "9.258348", + "longitude_deg": "-74.438393", + "elevation_ft": "60", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOL", + "municipality": "Santa Cruz de Mompóx", + "scheduled_service": "no", + "gps_code": "SKMP", + "local_code": "MMP" + }, + { + "id": "6138", + "ident": "SKMR", + "type": "medium_airport", + "name": "Los Garzones Airport", + "latitude_deg": "8.82374", + "longitude_deg": "-75.8258", + "elevation_ft": "41", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-COR", + "municipality": "Montería", + "scheduled_service": "yes", + "gps_code": "SKMR", + "iata_code": "MTR", + "local_code": "MTR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Los_Garzones_Airport" + }, + { + "id": "6139", + "ident": "SKMU", + "type": "medium_airport", + "name": "Fabio Alberto Leon Bentley Airport", + "latitude_deg": "1.25366", + "longitude_deg": "-70.2339", + "elevation_ft": "680", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAU", + "municipality": "Mitú", + "scheduled_service": "yes", + "gps_code": "SKMU", + "iata_code": "MVP", + "local_code": "MVP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fabio_Alberto_Le%C3%B3n_Bentley_Airport" + }, + { + "id": "6140", + "ident": "SKMZ", + "type": "medium_airport", + "name": "La Nubia Airport", + "latitude_deg": "5.0296", + "longitude_deg": "-75.4647", + "elevation_ft": "6871", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAL", + "municipality": "Manizales", + "scheduled_service": "yes", + "gps_code": "SKMZ", + "iata_code": "MZL", + "local_code": "MZL", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Nubia_Airport" + }, + { + "id": "32010", + "ident": "SKNC", + "type": "small_airport", + "name": "Necocli Airport", + "latitude_deg": "8.454429", + "longitude_deg": "-76.779326", + "elevation_ft": "19", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Necocli", + "scheduled_service": "no", + "gps_code": "SKNC", + "iata_code": "NCI", + "local_code": "NCI" + }, + { + "id": "32314", + "ident": "SKNQ", + "type": "small_airport", + "name": "Reyes Murillo Airport", + "latitude_deg": "5.6964", + "longitude_deg": "-77.2806", + "elevation_ft": "12", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CHO", + "municipality": "Nuquí", + "scheduled_service": "yes", + "gps_code": "SKNQ", + "iata_code": "NQU", + "local_code": "NQU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Reyes_Murillo_Airport" + }, + { + "id": "6141", + "ident": "SKNV", + "type": "medium_airport", + "name": "Benito Salas Airport", + "latitude_deg": "2.95015", + "longitude_deg": "-75.294", + "elevation_ft": "1464", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-HUI", + "municipality": "Neiva", + "scheduled_service": "yes", + "gps_code": "SKNV", + "iata_code": "NVA", + "local_code": "NVA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Benito_Salas_Airport", + "keywords": "La Manguita" + }, + { + "id": "6142", + "ident": "SKOC", + "type": "medium_airport", + "name": "Aguas Claras Airport", + "latitude_deg": "8.31506", + "longitude_deg": "-73.3583", + "elevation_ft": "3850", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-NSA", + "municipality": "Ocaña", + "scheduled_service": "no", + "gps_code": "SKOC", + "iata_code": "OCV", + "local_code": "OCV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aguas_Claras_Airport" + }, + { + "id": "32126", + "ident": "SKOE", + "type": "small_airport", + "name": "Orocue Airport", + "latitude_deg": "4.79222", + "longitude_deg": "-71.3564", + "elevation_ft": "434", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Orocue", + "scheduled_service": "no", + "gps_code": "SKOE", + "iata_code": "ORC", + "local_code": "ORC" + }, + { + "id": "41034", + "ident": "SKOL", + "type": "small_airport", + "name": "Puerto López Airport", + "latitude_deg": "4.089869", + "longitude_deg": "-72.976483", + "elevation_ft": "599", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Puerto López", + "scheduled_service": "no", + "gps_code": "SKOL" + }, + { + "id": "32315", + "ident": "SKOR", + "type": "small_airport", + "name": "Orito Airport", + "latitude_deg": "0.669444", + "longitude_deg": "-76.88", + "elevation_ft": "1132", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-PUT", + "municipality": "Orito", + "scheduled_service": "no", + "gps_code": "SKOR", + "local_code": "ORI" + }, + { + "id": "6143", + "ident": "SKOT", + "type": "closed", + "name": "Otu Airport", + "latitude_deg": "7.01037", + "longitude_deg": "-74.7155", + "elevation_ft": "2060", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Remedios", + "scheduled_service": "no", + "gps_code": "SKOT", + "iata_code": "OTU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ot%C3%BA_Airport", + "keywords": "El Rhin" + }, + { + "id": "6144", + "ident": "SKPA", + "type": "small_airport", + "name": "Juan Jose Rondon Airport", + "latitude_deg": "5.76454", + "longitude_deg": "-73.1054", + "elevation_ft": "8205", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOY", + "municipality": "Paipa", + "scheduled_service": "no", + "gps_code": "SKPA", + "local_code": "PIP" + }, + { + "id": "6145", + "ident": "SKPB", + "type": "small_airport", + "name": "Puerto Bolívar Airport", + "latitude_deg": "12.2215", + "longitude_deg": "-71.9848", + "elevation_ft": "90", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-LAG", + "municipality": "Portete", + "scheduled_service": "no", + "gps_code": "SKPB", + "local_code": "PBO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Puerto_Bol%C3%ADvar_Airport" + }, + { + "id": "6146", + "ident": "SKPC", + "type": "medium_airport", + "name": "German Olano Airport", + "latitude_deg": "6.18472", + "longitude_deg": "-67.4932", + "elevation_ft": "177", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "Puerto Carreño", + "scheduled_service": "yes", + "gps_code": "SKPC", + "iata_code": "PCR", + "local_code": "PCR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Germ%C3%A1n_Olano_Airport", + "keywords": "Puerto Carreño Airport" + }, + { + "id": "6147", + "ident": "SKPD", + "type": "medium_airport", + "name": "Obando Cesar Gaviria Trujillo Airport", + "latitude_deg": "3.85353", + "longitude_deg": "-67.9062", + "elevation_ft": "460", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-GUA", + "municipality": "Puerto Inírida", + "scheduled_service": "yes", + "gps_code": "SKPD", + "iata_code": "PDA", + "local_code": "PDA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Obando_Airport" + }, + { + "id": "6148", + "ident": "SKPE", + "type": "medium_airport", + "name": "Matecaña International Airport", + "latitude_deg": "4.81267", + "longitude_deg": "-75.7395", + "elevation_ft": "4416", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-RIS", + "municipality": "Pereira", + "scheduled_service": "yes", + "gps_code": "SKPE", + "iata_code": "PEI", + "local_code": "PEI", + "home_link": "http://aeromate.gov.co", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mateca%C3%B1a_International_Airport" + }, + { + "id": "32316", + "ident": "SKPG", + "type": "small_airport", + "name": "Puerto Gaitan Airport", + "latitude_deg": "4.30444", + "longitude_deg": "-72.0844", + "elevation_ft": "510", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Puerto Gaitan", + "scheduled_service": "no", + "gps_code": "SKPG" + }, + { + "id": "6149", + "ident": "SKPI", + "type": "medium_airport", + "name": "Pitalito Airport", + "latitude_deg": "1.85777", + "longitude_deg": "-76.0857", + "elevation_ft": "4212", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-HUI", + "municipality": "Pitalito", + "scheduled_service": "no", + "gps_code": "SKPI", + "iata_code": "PTX" + }, + { + "id": "32165", + "ident": "SKPL", + "type": "small_airport", + "name": "Plato Airport", + "latitude_deg": "9.8", + "longitude_deg": "-74.7833", + "elevation_ft": "69", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MAG", + "municipality": "Plato", + "scheduled_service": "no", + "gps_code": "SKPL", + "iata_code": "PLT", + "local_code": "PLT" + }, + { + "id": "6150", + "ident": "SKPN", + "type": "small_airport", + "name": "Puerto Nare Airport", + "latitude_deg": "6.21002", + "longitude_deg": "-74.5906", + "elevation_ft": "476", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Armenia", + "scheduled_service": "no", + "gps_code": "SKPN", + "iata_code": "NAR", + "local_code": "NAR" + }, + { + "id": "6151", + "ident": "SKPP", + "type": "medium_airport", + "name": "Guillermo León Valencia Airport", + "latitude_deg": "2.4544", + "longitude_deg": "-76.6093", + "elevation_ft": "5687", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAU", + "municipality": "Popayán", + "scheduled_service": "yes", + "gps_code": "SKPP", + "iata_code": "PPN", + "local_code": "PPN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guillermo_Leon_Valencia_Airport" + }, + { + "id": "6152", + "ident": "SKPQ", + "type": "medium_airport", + "name": "German Olano Air Base", + "latitude_deg": "5.48361", + "longitude_deg": "-74.6574", + "elevation_ft": "566", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "La Dorada", + "scheduled_service": "no", + "gps_code": "SKPQ", + "iata_code": "PAL", + "local_code": "PQE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Captain_Germ%C3%A1n_Olano_Moreno_Air_Base", + "keywords": "Palanquero Airport" + }, + { + "id": "6153", + "ident": "SKPR", + "type": "small_airport", + "name": "Puerto Berrio Airport", + "latitude_deg": "6.46034", + "longitude_deg": "-74.4105", + "elevation_ft": "445", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Puerto Berrio", + "scheduled_service": "no", + "gps_code": "SKPR", + "iata_code": "PBE", + "local_code": "PBE" + }, + { + "id": "6154", + "ident": "SKPS", + "type": "medium_airport", + "name": "Antonio Narino Airport", + "latitude_deg": "1.39625", + "longitude_deg": "-77.2915", + "elevation_ft": "5951", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-NAR", + "municipality": "Pasto", + "scheduled_service": "yes", + "gps_code": "SKPS", + "iata_code": "PSO", + "local_code": "PSO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Antonio_Nari%C3%B1o_Airport" + }, + { + "id": "6155", + "ident": "SKPV", + "type": "medium_airport", + "name": "El Embrujo Airport", + "latitude_deg": "13.357461", + "longitude_deg": "-81.357977", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAP", + "municipality": "Providencia", + "scheduled_service": "yes", + "gps_code": "SKPV", + "iata_code": "PVA", + "local_code": "PVA", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Embrujo_Airport" + }, + { + "id": "6156", + "ident": "SKPZ", + "type": "medium_airport", + "name": "Paz De Ariporo Airport", + "latitude_deg": "5.87615", + "longitude_deg": "-71.8866", + "elevation_ft": "900", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Paz De Ariporo", + "scheduled_service": "no", + "gps_code": "SKPZ", + "iata_code": "PZA", + "local_code": "PZA" + }, + { + "id": "6157", + "ident": "SKQU", + "type": "medium_airport", + "name": "Mariquita Airport", + "latitude_deg": "5.21256", + "longitude_deg": "-74.8836", + "elevation_ft": "1531", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-TOL", + "municipality": "Mariquita", + "scheduled_service": "no", + "gps_code": "SKQU", + "iata_code": "MQU", + "local_code": "MQU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mariquita_Airport" + }, + { + "id": "6158", + "ident": "SKRG", + "type": "medium_airport", + "name": "Jose Maria Córdova International Airport", + "latitude_deg": "6.16454", + "longitude_deg": "-75.4231", + "elevation_ft": "6955", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Medellín", + "scheduled_service": "yes", + "gps_code": "SKRG", + "iata_code": "MDE", + "local_code": "MDE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jos%C3%A9_Mar%C3%ADa_C%C3%B3rdova_International_Airport" + }, + { + "id": "6159", + "ident": "SKRH", + "type": "medium_airport", + "name": "Almirante Padilla Airport", + "latitude_deg": "11.5262", + "longitude_deg": "-72.926", + "elevation_ft": "43", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-LAG", + "municipality": "Riohacha", + "scheduled_service": "yes", + "gps_code": "SKRH", + "iata_code": "RCH", + "local_code": "RCH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Riohacha_Airport" + }, + { + "id": "32318", + "ident": "SKSA", + "type": "small_airport", + "name": "Los Colonizadores Airport", + "latitude_deg": "6.951868", + "longitude_deg": "-71.857179", + "elevation_ft": "680", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ARA", + "municipality": "Saravena", + "scheduled_service": "yes", + "gps_code": "SKSA", + "iata_code": "RVE", + "local_code": "SRV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Los_Colonizadores_Airport", + "keywords": "El Eden Airport" + }, + { + "id": "45101", + "ident": "SKSF", + "type": "closed", + "name": "Santa Fé de Antioquía Airport", + "latitude_deg": "6.500631", + "longitude_deg": "-75.822521", + "elevation_ft": "1500", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Santa Fé de Antioquía", + "scheduled_service": "no", + "gps_code": "SKSF", + "local_code": "SFA" + }, + { + "id": "32319", + "ident": "SKSG", + "type": "small_airport", + "name": "San Gil Airport", + "latitude_deg": "6.58444", + "longitude_deg": "-73.1283", + "elevation_ft": "5498", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAN", + "municipality": "San Gil", + "scheduled_service": "no", + "gps_code": "SKSG", + "local_code": "SGL" + }, + { + "id": "1644", + "ident": "SKSI", + "type": "small_airport", + "name": "Santiago I Airport", + "latitude_deg": "4.73214", + "longitude_deg": "-72.323196", + "elevation_ft": "573", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Maní", + "scheduled_service": "no", + "gps_code": "SKSI", + "keywords": "SK52" + }, + { + "id": "6160", + "ident": "SKSJ", + "type": "medium_airport", + "name": "Jorge E. Gonzalez Torres Airport", + "latitude_deg": "2.57969", + "longitude_deg": "-72.6394", + "elevation_ft": "605", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-GUV", + "municipality": "San José Del Guaviare", + "scheduled_service": "yes", + "gps_code": "SKSJ", + "iata_code": "SJE", + "local_code": "SJE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jorge_Enrique_Gonz%C3%A1lez_Torres_Airport" + }, + { + "id": "316777", + "ident": "SKSL", + "type": "small_airport", + "name": "Santa Rosalia Airport", + "latitude_deg": "5.1309", + "longitude_deg": "-70.8682", + "elevation_ft": "400", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "Santa Rosalia", + "scheduled_service": "no", + "gps_code": "SKSL", + "iata_code": "SSL" + }, + { + "id": "6161", + "ident": "SKSM", + "type": "medium_airport", + "name": "Simón Bolívar International Airport", + "latitude_deg": "11.1196", + "longitude_deg": "-74.2306", + "elevation_ft": "22", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MAG", + "municipality": "Santa Marta", + "scheduled_service": "yes", + "gps_code": "SKSM", + "iata_code": "SMR", + "local_code": "SMR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sim%C3%B3n_Bol%C3%ADvar_International_Airport_(Colombia)" + }, + { + "id": "6162", + "ident": "SKSO", + "type": "small_airport", + "name": "Alberto Lleras Camargo Airport", + "latitude_deg": "5.67732", + "longitude_deg": "-72.9703", + "elevation_ft": "8155", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOY", + "municipality": "Sogamoso", + "scheduled_service": "no", + "gps_code": "SKSO", + "iata_code": "SOX", + "local_code": "SOX" + }, + { + "id": "6163", + "ident": "SKSP", + "type": "medium_airport", + "name": "Gustavo Rojas Pinilla International Airport", + "latitude_deg": "12.5836", + "longitude_deg": "-81.7112", + "elevation_ft": "19", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SAP", + "municipality": "San Andrés", + "scheduled_service": "yes", + "gps_code": "SKSP", + "iata_code": "ADZ", + "local_code": "ADZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gustavo_Rojas_Pinilla_International_Airport" + }, + { + "id": "314727", + "ident": "SKSR", + "type": "small_airport", + "name": "San Marcos Airport", + "latitude_deg": "8.69", + "longitude_deg": "-75.156", + "elevation_ft": "140", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SUC", + "municipality": "San Marcos", + "scheduled_service": "no", + "gps_code": "SKSR", + "iata_code": "SRS" + }, + { + "id": "6164", + "ident": "SKSV", + "type": "medium_airport", + "name": "Eduardo Falla Solano Airport", + "latitude_deg": "2.15217", + "longitude_deg": "-74.7663", + "elevation_ft": "920", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAQ", + "municipality": "San Vicente Del Caguán", + "scheduled_service": "yes", + "gps_code": "SKSV", + "iata_code": "SVI", + "local_code": "SVI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eduardo_Falla_Solano_Airport" + }, + { + "id": "6165", + "ident": "SKTB", + "type": "small_airport", + "name": "Tibú Airport", + "latitude_deg": "8.63152", + "longitude_deg": "-72.7304", + "elevation_ft": "194", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-NSA", + "municipality": "Tibú", + "scheduled_service": "no", + "gps_code": "SKTB", + "iata_code": "TIB", + "local_code": "TBU" + }, + { + "id": "32429", + "ident": "SKTD", + "type": "small_airport", + "name": "Trinidad Airport", + "latitude_deg": "5.43278", + "longitude_deg": "-71.6625", + "elevation_ft": "649", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Trinidad", + "scheduled_service": "no", + "gps_code": "SKTD", + "iata_code": "TDA", + "local_code": "TDA" + }, + { + "id": "6166", + "ident": "SKTI", + "type": "small_airport", + "name": "Tolemaida Air Base", + "latitude_deg": "4.2448", + "longitude_deg": "-74.649901", + "elevation_ft": "1617", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CUN", + "municipality": "Tolemaida - Nilo", + "scheduled_service": "no", + "gps_code": "SKTI", + "local_code": "TOL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tolemaida_Air_Base" + }, + { + "id": "6167", + "ident": "SKTJ", + "type": "medium_airport", + "name": "Tunja Airport", + "latitude_deg": "5.54138", + "longitude_deg": "-73.3445", + "elevation_ft": "8940", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOY", + "municipality": "Tunja", + "scheduled_service": "no", + "gps_code": "SKTJ" + }, + { + "id": "32460", + "ident": "SKTL", + "type": "small_airport", + "name": "Golfo de Morrosquillo Airport", + "latitude_deg": "9.50945", + "longitude_deg": "-75.5854", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-SUC", + "municipality": "Santiago de Tolú", + "scheduled_service": "yes", + "gps_code": "SKTL", + "iata_code": "TLU", + "local_code": "TLU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Golfo_de_Morrosquillo_Airport" + }, + { + "id": "6168", + "ident": "SKTM", + "type": "medium_airport", + "name": "Gustavo Vargas Airport", + "latitude_deg": "6.45108", + "longitude_deg": "-71.7603", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ARA", + "municipality": "Tame", + "scheduled_service": "yes", + "gps_code": "SKTM", + "iata_code": "TME", + "local_code": "TME", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gabriel_Vargas_Santos_Airport" + }, + { + "id": "6169", + "ident": "SKTQ", + "type": "medium_airport", + "name": "Tres Esquinas Air Base", + "latitude_deg": "0.7459", + "longitude_deg": "-75.234", + "elevation_ft": "585", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAQ", + "municipality": "Tres Esquinas", + "scheduled_service": "no", + "gps_code": "SKTQ", + "iata_code": "TQS", + "local_code": "TQS" + }, + { + "id": "32475", + "ident": "SKTU", + "type": "heliport", + "name": "Gonzalo Mejía Airport", + "latitude_deg": "8.071878", + "longitude_deg": "-76.740124", + "elevation_ft": "6", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Turbo", + "scheduled_service": "no", + "gps_code": "SKTU", + "iata_code": "TRB", + "local_code": "TRB" + }, + { + "id": "6170", + "ident": "SKUA", + "type": "medium_airport", + "name": "Marandúa Air Base", + "latitude_deg": "5.52448", + "longitude_deg": "-68.6856", + "elevation_ft": "285", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VID", + "municipality": "Marandúa", + "scheduled_service": "no", + "gps_code": "SKUA", + "local_code": "MQZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marand%C3%BAa_Air_Base" + }, + { + "id": "6171", + "ident": "SKUC", + "type": "medium_airport", + "name": "Santiago Perez Airport", + "latitude_deg": "7.06888", + "longitude_deg": "-70.7369", + "elevation_ft": "420", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ARA", + "municipality": "Arauca", + "scheduled_service": "yes", + "gps_code": "SKUC", + "iata_code": "AUC", + "local_code": "AUC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santiago_P%C3%A9rez_Airport" + }, + { + "id": "6172", + "ident": "SKUI", + "type": "medium_airport", + "name": "El Caraño Airport", + "latitude_deg": "5.69076", + "longitude_deg": "-76.6412", + "elevation_ft": "204", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CHO", + "municipality": "Quibdó", + "scheduled_service": "yes", + "gps_code": "SKUI", + "iata_code": "UIB", + "local_code": "UIB", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Cara%C3%B1o_Airport" + }, + { + "id": "6173", + "ident": "SKUL", + "type": "medium_airport", + "name": "Heriberto Gíl Martínez Airport", + "latitude_deg": "4.08836", + "longitude_deg": "-76.2351", + "elevation_ft": "3132", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-VAC", + "municipality": "Tuluá", + "scheduled_service": "no", + "gps_code": "SKUL", + "iata_code": "ULQ", + "local_code": "ULQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Heriberto_G%C3%ADl_Mart%C3%ADnez_Airport", + "keywords": "Farfan Airport" + }, + { + "id": "32550", + "ident": "SKUR", + "type": "small_airport", + "name": "Urrao Airport", + "latitude_deg": "6.32883", + "longitude_deg": "-76.1425", + "elevation_ft": "6090", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-ANT", + "municipality": "Urrao", + "scheduled_service": "no", + "gps_code": "SKUR", + "iata_code": "URR", + "local_code": "URR" + }, + { + "id": "6174", + "ident": "SKVG", + "type": "small_airport", + "name": "Villa Garzón Airport", + "latitude_deg": "0.978767", + "longitude_deg": "-76.6056", + "elevation_ft": "1248", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-PUT", + "municipality": "Villa Garzón", + "scheduled_service": "no", + "gps_code": "SKVG", + "iata_code": "VGZ", + "local_code": "VGZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Villa_Garz%C3%B3n_Airport" + }, + { + "id": "6175", + "ident": "SKVL", + "type": "small_airport", + "name": "Velásquez Airport", + "latitude_deg": "5.93904", + "longitude_deg": "-74.457", + "elevation_ft": "566", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-BOY", + "municipality": "Puerto Boyacá", + "scheduled_service": "no", + "gps_code": "SKVL", + "iata_code": "PYA" + }, + { + "id": "32320", + "ident": "SKVN", + "type": "small_airport", + "name": "Villanueva Airport", + "latitude_deg": "4.62472", + "longitude_deg": "-72.9469", + "elevation_ft": "1002", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "Villanueva", + "scheduled_service": "no", + "gps_code": "SKVN", + "local_code": "VLA" + }, + { + "id": "6176", + "ident": "SKVP", + "type": "medium_airport", + "name": "Alfonso López Pumarejo Airport", + "latitude_deg": "10.435", + "longitude_deg": "-73.2495", + "elevation_ft": "483", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CES", + "municipality": "Valledupar", + "scheduled_service": "yes", + "gps_code": "SKVP", + "iata_code": "VUP", + "local_code": "VUP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valledupar_Airport" + }, + { + "id": "6177", + "ident": "SKVV", + "type": "medium_airport", + "name": "Vanguardia Airport", + "latitude_deg": "4.16787", + "longitude_deg": "-73.6138", + "elevation_ft": "1394", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-MET", + "municipality": "Villavicencio", + "scheduled_service": "yes", + "gps_code": "SKVV", + "iata_code": "VVC", + "local_code": "VVC", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Vanguardia_Airport" + }, + { + "id": "30667", + "ident": "SKYA", + "type": "small_airport", + "name": "Yaguara Airport", + "latitude_deg": "1.54417", + "longitude_deg": "-73.9333", + "elevation_ft": "812", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAQ", + "municipality": "San Vicente Del Caguán", + "scheduled_service": "no", + "gps_code": "SKYA", + "iata_code": "AYG", + "local_code": "AYG" + }, + { + "id": "6178", + "ident": "SKYP", + "type": "medium_airport", + "name": "El Yopal Airport", + "latitude_deg": "5.31911", + "longitude_deg": "-72.384", + "elevation_ft": "1028", + "continent": "SA", + "iso_country": "CO", + "iso_region": "CO-CAS", + "municipality": "El Yopal", + "scheduled_service": "yes", + "gps_code": "SKYP", + "iata_code": "EYP", + "local_code": "EYP", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Alcarav%C3%A1n_Airport" + }, + { + "id": "301111", + "ident": "SL-0001", + "type": "heliport", + "name": "Mammy Yoko Heliport", + "latitude_deg": "8.49231124864", + "longitude_deg": "-13.2884573936", + "continent": "AF", + "iso_country": "SL", + "iso_region": "SL-W", + "scheduled_service": "no", + "local_code": "JMY" + }, + { + "id": "308901", + "ident": "SL-0002", + "type": "heliport", + "name": "RSLAF Cockerill Barracks Heliport", + "latitude_deg": "8.473991", + "longitude_deg": "-13.277643", + "continent": "AF", + "iso_country": "SL", + "iso_region": "SL-W", + "municipality": "Freetown", + "scheduled_service": "no" + }, + { + "id": "308902", + "ident": "SL-0003", + "type": "heliport", + "name": "UN Aviation Heliport", + "latitude_deg": "8.48768473679", + "longitude_deg": "-13.288103342100001", + "continent": "AF", + "iso_country": "SL", + "iso_region": "SL-W", + "scheduled_service": "no" + }, + { + "id": "39415", + "ident": "SLAB", + "type": "closed", + "name": "Abapó Airport", + "latitude_deg": "-18.63447", + "longitude_deg": "-62.936735", + "elevation_ft": "2752", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Abapó", + "scheduled_service": "no", + "gps_code": "SLAB", + "keywords": "SLAB" + }, + { + "id": "32321", + "ident": "SLAG", + "type": "small_airport", + "name": "Monteagudo Airport", + "latitude_deg": "-19.82699966430664", + "longitude_deg": "-63.96099853515625", + "elevation_ft": "3674", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-H", + "municipality": "El Bañado", + "scheduled_service": "no", + "gps_code": "SLAG", + "iata_code": "MHW" + }, + { + "id": "333229", + "ident": "SLAL", + "type": "medium_airport", + "name": "Alcantarí Airport", + "latitude_deg": "-19.246835", + "longitude_deg": "-65.149611", + "elevation_ft": "10184", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-H", + "municipality": "Yamparaez", + "scheduled_service": "yes", + "gps_code": "SLAL", + "iata_code": "SRE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alcantar%C3%AD_Airport" + }, + { + "id": "39418", + "ident": "SLAM", + "type": "small_airport", + "name": "Arampampa Airport", + "latitude_deg": "-17.883333206176758", + "longitude_deg": "-66.0999984741211", + "elevation_ft": "10250", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-P", + "municipality": "Gral. Ballivian", + "scheduled_service": "no", + "gps_code": "SLAM" + }, + { + "id": "39417", + "ident": "SLAN", + "type": "small_airport", + "name": "Angora Airport", + "latitude_deg": "-14.432299613952637", + "longitude_deg": "-65.768798828125", + "elevation_ft": "731", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Ballivian", + "scheduled_service": "no", + "gps_code": "SLAN" + }, + { + "id": "29662", + "ident": "SLAP", + "type": "small_airport", + "name": "Apolo Airport", + "latitude_deg": "-14.735600471496582", + "longitude_deg": "-68.41190338134766", + "elevation_ft": "4639", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-L", + "municipality": "Apolo", + "scheduled_service": "no", + "gps_code": "SLAP", + "iata_code": "APB" + }, + { + "id": "39416", + "ident": "SLAQ", + "type": "small_airport", + "name": "Aiquile Airport", + "latitude_deg": "-18.21540069580078", + "longitude_deg": "-65.18779754638672", + "elevation_ft": "7208", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-C", + "municipality": "Campero", + "scheduled_service": "no", + "gps_code": "SLAQ" + }, + { + "id": "29671", + "ident": "SLAS", + "type": "small_airport", + "name": "Ascención De Guarayos Airport", + "latitude_deg": "-15.930299758911133", + "longitude_deg": "-63.156700134277344", + "elevation_ft": "807", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Ascensión de Guarayos", + "scheduled_service": "no", + "gps_code": "SLAS", + "iata_code": "ASC" + }, + { + "id": "39420", + "ident": "SLBB", + "type": "small_airport", + "name": "Bulo Bulo Airport", + "latitude_deg": "-17.257333755493164", + "longitude_deg": "-64.36666870117188", + "elevation_ft": "886", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-C", + "municipality": "Carrasco", + "scheduled_service": "no", + "gps_code": "SLBB" + }, + { + "id": "39481", + "ident": "SLBF", + "type": "small_airport", + "name": "Blanca Flor Airport", + "latitude_deg": "-11.7272", + "longitude_deg": "-66.9263", + "elevation_ft": "598", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-N", + "municipality": "Madre De Dios", + "scheduled_service": "no", + "gps_code": "SLBF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Blanca_Flor_Airport" + }, + { + "id": "39484", + "ident": "SLBH", + "type": "small_airport", + "name": "Buena Hora Airport", + "latitude_deg": "-12.133333206176758", + "longitude_deg": "-66.53333282470703", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Ballivian", + "scheduled_service": "no", + "gps_code": "SLBH" + }, + { + "id": "6179", + "ident": "SLBJ", + "type": "medium_airport", + "name": "Bermejo Airport", + "latitude_deg": "-22.7733001709", + "longitude_deg": "-64.31289672850001", + "elevation_ft": "1249", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-T", + "municipality": "Bermejo", + "scheduled_service": "no", + "gps_code": "SLBJ", + "iata_code": "BJO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bermejo_Airport" + }, + { + "id": "39479", + "ident": "SLBN", + "type": "small_airport", + "name": "Bella Unión Airport", + "latitude_deg": "-13.633333206176758", + "longitude_deg": "-65.28333282470703", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Mamoré", + "scheduled_service": "no", + "gps_code": "SLBN" + }, + { + "id": "39419", + "ident": "SLBR", + "type": "small_airport", + "name": "Buen Retiro Itenez Airport", + "latitude_deg": "-13.416666984558105", + "longitude_deg": "-63.483333587646484", + "elevation_ft": "774", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Itenes", + "scheduled_service": "no", + "gps_code": "SLBR" + }, + { + "id": "39480", + "ident": "SLBS", + "type": "small_airport", + "name": "Bella Vista Itenez Airport", + "latitude_deg": "-14.2677001953125", + "longitude_deg": "-64.29900360107422", + "elevation_ft": "774", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Itenes", + "scheduled_service": "no", + "gps_code": "SLBS" + }, + { + "id": "39483", + "ident": "SLBT", + "type": "small_airport", + "name": "Buen Retiro Ballivian Airport", + "latitude_deg": "-13.899999618530273", + "longitude_deg": "-66.55000305175781", + "elevation_ft": "886", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Ballivian", + "scheduled_service": "no", + "gps_code": "SLBT" + }, + { + "id": "39557", + "ident": "SLBV", + "type": "small_airport", + "name": "Villa Vista Montano Airport", + "latitude_deg": "-13.850000381469727", + "longitude_deg": "-66.36666870117188", + "elevation_ft": "519", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "De Montaño", + "scheduled_service": "no", + "gps_code": "SLBV" + }, + { + "id": "29751", + "ident": "SLCA", + "type": "small_airport", + "name": "Camiri Airport", + "latitude_deg": "-20.006399154663086", + "longitude_deg": "-63.527801513671875", + "elevation_ft": "2614", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Camiri", + "scheduled_service": "no", + "gps_code": "SLCA", + "iata_code": "CAM" + }, + { + "id": "6180", + "ident": "SLCB", + "type": "medium_airport", + "name": "Jorge Wilsterman International Airport", + "latitude_deg": "-17.421100616455078", + "longitude_deg": "-66.1771011352539", + "elevation_ft": "8360", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-C", + "municipality": "Cochabamba", + "scheduled_service": "yes", + "gps_code": "SLCB", + "iata_code": "CBB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jorge_Wilstermann_International_Airport" + }, + { + "id": "29802", + "ident": "SLCC", + "type": "small_airport", + "name": "Copacabana Airport", + "latitude_deg": "-16.191099166870117", + "longitude_deg": "-69.09559631347656", + "elevation_ft": "12591", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-L", + "municipality": "Copacabana", + "scheduled_service": "no", + "gps_code": "SLCC" + }, + { + "id": "39422", + "ident": "SLCD", + "type": "small_airport", + "name": "Cañada Airport", + "latitude_deg": "-20.025400161743164", + "longitude_deg": "-63.0890998840332", + "elevation_ft": "1954", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Gutierrez", + "scheduled_service": "no", + "gps_code": "SLCD" + }, + { + "id": "39421", + "ident": "SLCE", + "type": "small_airport", + "name": "Cabezas Airport", + "latitude_deg": "-18.795400619506836", + "longitude_deg": "-63.30030059814453", + "elevation_ft": "1328", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Cordillera", + "scheduled_service": "no", + "gps_code": "SLCE" + }, + { + "id": "39428", + "ident": "SLCG", + "type": "small_airport", + "name": "Charagua Airport", + "latitude_deg": "-19.785600662231445", + "longitude_deg": "-63.18840026855469", + "elevation_ft": "2040", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Cordillera", + "scheduled_service": "no", + "gps_code": "SLCG" + }, + { + "id": "6181", + "ident": "SLCH", + "type": "small_airport", + "name": "Chimore Airport", + "latitude_deg": "-16.976834", + "longitude_deg": "-65.145568", + "elevation_ft": "875", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-C", + "municipality": "Chimore", + "scheduled_service": "yes", + "gps_code": "SLHI", + "iata_code": "CCA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chimore_Airport" + }, + { + "id": "39486", + "ident": "SLCI", + "type": "small_airport", + "name": "Caigua Airport", + "latitude_deg": "-21.16666603088379", + "longitude_deg": "-63.63333511352539", + "elevation_ft": "1440", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-T", + "municipality": "Gran Chaco", + "scheduled_service": "no", + "gps_code": "SLCI" + }, + { + "id": "39492", + "ident": "SLCL", + "type": "small_airport", + "name": "Collpani Airport", + "latitude_deg": "-18.891666412353516", + "longitude_deg": "-66.78333282470703", + "elevation_ft": "12185", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-O", + "municipality": "Abaroa", + "scheduled_service": "no", + "gps_code": "SLCL" + }, + { + "id": "39487", + "ident": "SLCM", + "type": "small_airport", + "name": "Camacho Airport", + "latitude_deg": "-11.505", + "longitude_deg": "-67.6847", + "elevation_ft": "690", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-N", + "municipality": "Camacho", + "scheduled_service": "no", + "gps_code": "SLCM" + }, + { + "id": "29776", + "ident": "SLCN", + "type": "small_airport", + "name": "Charaña Airport", + "latitude_deg": "-17.59469985961914", + "longitude_deg": "-69.43309783935547", + "elevation_ft": "13339", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-L", + "municipality": "Charaña", + "scheduled_service": "no", + "gps_code": "SLCN" + }, + { + "id": "6182", + "ident": "SLCO", + "type": "medium_airport", + "name": "Capitán Aníbal Arab Airport", + "latitude_deg": "-11.040399551400002", + "longitude_deg": "-68.7829971313", + "elevation_ft": "889", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-N", + "municipality": "Cobija", + "scheduled_service": "yes", + "gps_code": "SLCO", + "iata_code": "CIJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cap._Anibal_Arab_Airport" + }, + { + "id": "29797", + "ident": "SLCP", + "type": "small_airport", + "name": "Concepción Airport", + "latitude_deg": "-16.1382999420166", + "longitude_deg": "-62.02859878540039", + "elevation_ft": "1620", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Concepción", + "scheduled_service": "no", + "gps_code": "SLCP", + "iata_code": "CEP" + }, + { + "id": "39431", + "ident": "SLCR", + "type": "small_airport", + "name": "Comarapa Airport", + "latitude_deg": "-17.91360092163086", + "longitude_deg": "-64.5177993774414", + "elevation_ft": "6186", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "M. Caballero", + "scheduled_service": "no", + "gps_code": "SLCR" + }, + { + "id": "39425", + "ident": "SLCS", + "type": "small_airport", + "name": "Cerdas Airport", + "latitude_deg": "-20.8083333333", + "longitude_deg": "-66.4011111111", + "elevation_ft": "12640", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-P", + "municipality": "Nor Lipez", + "scheduled_service": "no", + "gps_code": "SLCS" + }, + { + "id": "39429", + "ident": "SLCT", + "type": "small_airport", + "name": "Choreti, Bolivia, South America Airport", + "latitude_deg": "-13.51449966430664", + "longitude_deg": "-64.96520233154297", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Mamore", + "scheduled_service": "no", + "gps_code": "SLCT" + }, + { + "id": "39496", + "ident": "SLCU", + "type": "small_airport", + "name": "Culpina Airport", + "latitude_deg": "-20.83333396911621", + "longitude_deg": "-64.96666717529297", + "elevation_ft": "9676", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-H", + "municipality": "Sud Cinti", + "scheduled_service": "no", + "gps_code": "SLCU" + }, + { + "id": "39424", + "ident": "SLCV", + "type": "small_airport", + "name": "Cavinas Airport", + "latitude_deg": "-12.549799919128418", + "longitude_deg": "-66.9124984741211", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Ballivian", + "scheduled_service": "no", + "gps_code": "SLCV" + }, + { + "id": "39491", + "ident": "SLCX", + "type": "small_airport", + "name": "Chive Airport", + "latitude_deg": "-12.377833366394043", + "longitude_deg": "-68.56766510009766", + "elevation_ft": "618", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-L", + "municipality": "Iturralde", + "scheduled_service": "no", + "gps_code": "SLCX" + }, + { + "id": "39430", + "ident": "SLCY", + "type": "small_airport", + "name": "Collpa Airport", + "latitude_deg": "-17.565000534057617", + "longitude_deg": "-63.17470169067383", + "elevation_ft": "1170", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "A. Ibañez", + "scheduled_service": "no", + "gps_code": "SLCY" + }, + { + "id": "39423", + "ident": "SLDA", + "type": "small_airport", + "name": "Caranda Airport", + "latitude_deg": "-17.512562", + "longitude_deg": "-63.537002", + "elevation_ft": "1082", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Ichilo", + "scheduled_service": "no", + "gps_code": "SLDA" + }, + { + "id": "314417", + "ident": "SLDL", + "type": "small_airport", + "name": "Dalmacia Airport", + "latitude_deg": "-17.4426", + "longitude_deg": "-62.2442", + "elevation_ft": "888", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "scheduled_service": "no", + "gps_code": "SLDL" + }, + { + "id": "39435", + "ident": "SLDN", + "type": "small_airport", + "name": "El Desengano Airport", + "latitude_deg": "-14.273599624633789", + "longitude_deg": "-65.44000244140625", + "elevation_ft": "730", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Yacuma", + "scheduled_service": "no", + "gps_code": "SLDN" + }, + { + "id": "39433", + "ident": "SLEA", + "type": "small_airport", + "name": "El Cocal Airport", + "latitude_deg": "-13.559399604797363", + "longitude_deg": "-66.0790023803711", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Yacuma", + "scheduled_service": "no", + "gps_code": "SLEA" + }, + { + "id": "39498", + "ident": "SLEC", + "type": "small_airport", + "name": "El Cairo Airport", + "latitude_deg": "-13.783333778381348", + "longitude_deg": "-66.4000015258789", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Yacuma", + "scheduled_service": "no", + "gps_code": "SLEC" + }, + { + "id": "39436", + "ident": "SLEE", + "type": "small_airport", + "name": "El Escondido Airport", + "latitude_deg": "-21.466999053955078", + "longitude_deg": "-63.35279846191406", + "elevation_ft": "1246", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-T", + "municipality": "Tesoro", + "scheduled_service": "no", + "gps_code": "SLEE" + }, + { + "id": "39503", + "ident": "SLEF", + "type": "small_airport", + "name": "El Triunfo Airport", + "latitude_deg": "-13.883333206176758", + "longitude_deg": "-65.76667022705078", + "elevation_ft": "486", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Yacuma", + "scheduled_service": "no", + "gps_code": "SLEF" + }, + { + "id": "39502", + "ident": "SLEH", + "type": "small_airport", + "name": "El Rancho Airport", + "latitude_deg": "-13.050000190734863", + "longitude_deg": "-65.03333282470703", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Mamore", + "scheduled_service": "no", + "gps_code": "SLEH" + }, + { + "id": "39438", + "ident": "SLEI", + "type": "small_airport", + "name": "Espino Airport", + "latitude_deg": "-19.29990005493164", + "longitude_deg": "-63.20899963378906", + "elevation_ft": "2313", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Cordillera", + "scheduled_service": "no", + "gps_code": "SLEI" + }, + { + "id": "39434", + "ident": "SLEK", + "type": "small_airport", + "name": "El Condor Airport", + "latitude_deg": "-21.700834274291992", + "longitude_deg": "-63.45683288574219", + "elevation_ft": "1734", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-T", + "municipality": "Tesoro", + "scheduled_service": "no", + "gps_code": "SLEK" + }, + { + "id": "39500", + "ident": "SLEO", + "type": "small_airport", + "name": "El Paraiso Airport", + "latitude_deg": "-14.383333206176758", + "longitude_deg": "-65.8499984741211", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Yacuma", + "scheduled_service": "no", + "gps_code": "SLEO" + }, + { + "id": "39501", + "ident": "SLEP", + "type": "small_airport", + "name": "El Peru Airport", + "latitude_deg": "-14.604666709899902", + "longitude_deg": "-65.61833190917969", + "elevation_ft": "528", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Yacuma", + "scheduled_service": "no", + "gps_code": "SLEP" + }, + { + "id": "39490", + "ident": "SLER", + "type": "small_airport", + "name": "Cerrillos Airport", + "latitude_deg": "-20.016666412353516", + "longitude_deg": "-64.03333282470703", + "elevation_ft": "3300", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-H", + "municipality": "Hernando Siles", + "scheduled_service": "no", + "gps_code": "SLER" + }, + { + "id": "39505", + "ident": "SLES", + "type": "small_airport", + "name": "Estalsa Airport", + "latitude_deg": "-18.450000762939453", + "longitude_deg": "-66.91666412353516", + "elevation_ft": "12460", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-O", + "municipality": "Poopo", + "scheduled_service": "no", + "gps_code": "SLES" + }, + { + "id": "6183", + "ident": "SLET", + "type": "medium_airport", + "name": "El Trompillo Airport", + "latitude_deg": "-17.8115997314", + "longitude_deg": "-63.1715011597", + "elevation_ft": "1371", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Santa Cruz", + "scheduled_service": "yes", + "gps_code": "SLET", + "iata_code": "SRZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Trompillo_Airport" + }, + { + "id": "39437", + "ident": "SLEV", + "type": "small_airport", + "name": "El Salvador Airport", + "latitude_deg": "-14.498299598693848", + "longitude_deg": "-66.76290130615234", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Ballivian", + "scheduled_service": "no", + "gps_code": "SLEV" + }, + { + "id": "39512", + "ident": "SLEZ", + "type": "small_airport", + "name": "La Esperanza Airport", + "latitude_deg": "-14.766666412353516", + "longitude_deg": "-65.53333282470703", + "elevation_ft": "1100", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Moxos", + "scheduled_service": "no", + "gps_code": "SLEZ" + }, + { + "id": "39506", + "ident": "SLFA", + "type": "small_airport", + "name": "Fatima Airport", + "latitude_deg": "-15.333333015441895", + "longitude_deg": "-66.80000305175781", + "elevation_ft": "1000", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Ballivian", + "scheduled_service": "no", + "gps_code": "SLFA" + }, + { + "id": "39440", + "ident": "SLFL", + "type": "small_airport", + "name": "Florida Airport", + "latitude_deg": "-14.614166259765625", + "longitude_deg": "-61.1974983215332", + "elevation_ft": "600", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Moira", + "scheduled_service": "no", + "gps_code": "SLFL" + }, + { + "id": "39439", + "ident": "SLFO", + "type": "small_airport", + "name": "Flor De Oro Airport", + "latitude_deg": "-13.554800033569336", + "longitude_deg": "-61.00410079956055", + "elevation_ft": "560", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Moxos", + "scheduled_service": "no", + "gps_code": "SLFO" + }, + { + "id": "39507", + "ident": "SLFR", + "type": "small_airport", + "name": "Florencia Airport", + "latitude_deg": "-15.683333396911621", + "longitude_deg": "-65.56666564941406", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Moxos", + "scheduled_service": "no", + "gps_code": "SLFR" + }, + { + "id": "39508", + "ident": "SLGP", + "type": "small_airport", + "name": "Guirapembi Airport", + "latitude_deg": "-18.055999755859375", + "longitude_deg": "-63.16316604614258", + "elevation_ft": "1493", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Cordillera", + "scheduled_service": "no", + "gps_code": "SLGP" + }, + { + "id": "314416", + "ident": "SLGQ", + "type": "small_airport", + "name": "Chiquitos Airport", + "latitude_deg": "-18.5222", + "longitude_deg": "-60.6804", + "elevation_ft": "1058", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "scheduled_service": "no", + "gps_code": "SLGQ" + }, + { + "id": "29926", + "ident": "SLGY", + "type": "small_airport", + "name": "Capitán de Av. Emilio Beltrán Airport", + "latitude_deg": "-10.820599556", + "longitude_deg": "-65.3455963135", + "elevation_ft": "557", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Guayaramerín", + "scheduled_service": "yes", + "gps_code": "SLGY", + "iata_code": "GYA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guayaramer%C3%ADn_Airport" + }, + { + "id": "39485", + "ident": "SLHA", + "type": "small_airport", + "name": "Cachascani Airport", + "latitude_deg": "-13.5", + "longitude_deg": "-64.19999694824219", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Itenes", + "scheduled_service": "no", + "gps_code": "SLHA" + }, + { + "id": "39442", + "ident": "SLHC", + "type": "small_airport", + "name": "Huacareta Airport", + "latitude_deg": "-20.39080047607422", + "longitude_deg": "-64.0154037475586", + "elevation_ft": "4668", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-H", + "municipality": "H. Silez", + "scheduled_service": "no", + "gps_code": "SLHC" + }, + { + "id": "39441", + "ident": "SLHJ", + "type": "small_airport", + "name": "Huacaraje Airport", + "latitude_deg": "-13.5500001907", + "longitude_deg": "-63.747898101800004", + "elevation_ft": "846", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Itenes", + "scheduled_service": "no", + "gps_code": "SLHJ", + "iata_code": "BVK" + }, + { + "id": "39427", + "ident": "SLHS", + "type": "small_airport", + "name": "Chacobos Airport", + "latitude_deg": "-19.59480094909668", + "longitude_deg": "-62.56570053100586", + "elevation_ft": "1437", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Parapeti", + "scheduled_service": "no", + "gps_code": "SLHS" + }, + { + "id": "308773", + "ident": "SLHT", + "type": "heliport", + "name": "Transierra Helipuerto", + "latitude_deg": "-21.3385", + "longitude_deg": "-63.479", + "elevation_ft": "1486", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-T", + "municipality": "Transierra Natural Gas Co.", + "scheduled_service": "no", + "gps_code": "SLHT" + }, + { + "id": "39443", + "ident": "SLIG", + "type": "small_airport", + "name": "Inglaterra Airport", + "latitude_deg": "-13.44379997253418", + "longitude_deg": "-66.50599670410156", + "elevation_ft": "780", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Ballivian", + "scheduled_service": "no", + "gps_code": "SLIG" + }, + { + "id": "39544", + "ident": "SLIN", + "type": "small_airport", + "name": "Santa Catalina Airport", + "latitude_deg": "-15.5", + "longitude_deg": "-65.91666412353516", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Moxos", + "scheduled_service": "no", + "gps_code": "SLIN" + }, + { + "id": "39536", + "ident": "SLIP", + "type": "small_airport", + "name": "Samaipata Airport", + "latitude_deg": "-18.183332443237305", + "longitude_deg": "-63.88333511352539", + "elevation_ft": "5600", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Florida", + "scheduled_service": "no", + "gps_code": "SLIP" + }, + { + "id": "39509", + "ident": "SLIR", + "type": "small_airport", + "name": "Ibori Airport", + "latitude_deg": "-13.050000190734863", + "longitude_deg": "-63.66666793823242", + "elevation_ft": "775", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Itenes", + "scheduled_service": "no", + "gps_code": "SLIR" + }, + { + "id": "39444", + "ident": "SLIT", + "type": "small_airport", + "name": "Itaguazurenda Airport", + "latitude_deg": "-19.77750015258789", + "longitude_deg": "-63.087799072265625", + "elevation_ft": "1598", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Cordillera", + "scheduled_service": "no", + "gps_code": "SLIT" + }, + { + "id": "39445", + "ident": "SLIX", + "type": "small_airport", + "name": "Ixiamas Airport", + "latitude_deg": "-13.760000228881836", + "longitude_deg": "-68.13683319091797", + "elevation_ft": "725", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-L", + "municipality": "Iturralde", + "scheduled_service": "no", + "gps_code": "SLIX" + }, + { + "id": "39510", + "ident": "SLIY", + "type": "small_airport", + "name": "Intiraymi Airport", + "latitude_deg": "-17.808332443237305", + "longitude_deg": "-67.4433364868164", + "elevation_ft": "12467", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-O", + "municipality": "La Joya", + "scheduled_service": "no", + "gps_code": "SLIY" + }, + { + "id": "39446", + "ident": "SLIZ", + "type": "small_airport", + "name": "Izozog Airport", + "latitude_deg": "-18.663833618164062", + "longitude_deg": "-63.00233459472656", + "elevation_ft": "1082", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Cordillera", + "scheduled_service": "no", + "gps_code": "SLIZ" + }, + { + "id": "309474", + "ident": "SLJ", + "type": "small_airport", + "name": "Solomon Airport", + "latitude_deg": "-22.25677", + "longitude_deg": "117.850454", + "elevation_ft": "2030", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Karijini National Park", + "scheduled_service": "no", + "gps_code": "YSOL", + "iata_code": "SLJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Solomon_Airport" + }, + { + "id": "39447", + "ident": "SLJA", + "type": "small_airport", + "name": "Jatata Airport", + "latitude_deg": "-11.772832870483398", + "longitude_deg": "-67.25599670410156", + "elevation_ft": "575", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-N", + "municipality": "Madre De Dios", + "scheduled_service": "no", + "gps_code": "SLJA" + }, + { + "id": "30376", + "ident": "SLJE", + "type": "small_airport", + "name": "San José De Chiquitos Airport", + "latitude_deg": "-17.830799102783203", + "longitude_deg": "-60.743099212646484", + "elevation_ft": "974", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "San José de Chiquitos", + "scheduled_service": "no", + "gps_code": "SLJE", + "iata_code": "SJS" + }, + { + "id": "39538", + "ident": "SLJN", + "type": "small_airport", + "name": "San Juan Estancias Airport", + "latitude_deg": "-14.166666984558105", + "longitude_deg": "-64.76667022705078", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Cercado", + "scheduled_service": "no", + "gps_code": "SLJN" + }, + { + "id": "30386", + "ident": "SLJO", + "type": "small_airport", + "name": "San Joaquín Airport", + "latitude_deg": "-13.0528", + "longitude_deg": "-64.661697", + "elevation_ft": "456", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "San Joaquín", + "scheduled_service": "no", + "gps_code": "SLJO", + "iata_code": "SJB", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Joaqu%C3%ADn_Airport" + }, + { + "id": "39511", + "ident": "SLJS", + "type": "small_airport", + "name": "Josuani Airport", + "latitude_deg": "-13.083333015441895", + "longitude_deg": "-66.16666412353516", + "elevation_ft": "498", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Yacuma", + "scheduled_service": "no", + "gps_code": "SLJS" + }, + { + "id": "30375", + "ident": "SLJV", + "type": "small_airport", + "name": "San Javier Airport", + "latitude_deg": "-16.27079963684082", + "longitude_deg": "-62.470298767089844", + "elevation_ft": "1702", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "San Javier", + "scheduled_service": "no", + "gps_code": "SLJV", + "iata_code": "SJV" + }, + { + "id": "39515", + "ident": "SLLB", + "type": "small_airport", + "name": "Las Brizas Airport", + "latitude_deg": "-14.516666412353516", + "longitude_deg": "-65.76667022705078", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Yacuma", + "scheduled_service": "no", + "gps_code": "SLLB" + }, + { + "id": "39513", + "ident": "SLLH", + "type": "small_airport", + "name": "Lago Huachi Airport", + "latitude_deg": "-14.016666412353516", + "longitude_deg": "-63.53333282470703", + "elevation_ft": "700", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Itenes", + "scheduled_service": "no", + "gps_code": "SLLH" + }, + { + "id": "39448", + "ident": "SLLI", + "type": "small_airport", + "name": "La India Airport", + "latitude_deg": "-13.573833465576172", + "longitude_deg": "-66.8356704711914", + "elevation_ft": "540", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Ballivian", + "scheduled_service": "no", + "gps_code": "SLLI" + }, + { + "id": "30059", + "ident": "SLLJ", + "type": "small_airport", + "name": "Laja Airport", + "latitude_deg": "-16.533899307250977", + "longitude_deg": "-68.30059814453125", + "elevation_ft": "12103", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-L", + "municipality": "Los Andes", + "scheduled_service": "no", + "gps_code": "SLLJ" + }, + { + "id": "39514", + "ident": "SLLL", + "type": "small_airport", + "name": "Laguna Loa Airport", + "latitude_deg": "-14.300000190734863", + "longitude_deg": "-66.78333282470703", + "elevation_ft": "720", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Ballivian", + "scheduled_service": "no", + "gps_code": "SLLL" + }, + { + "id": "6184", + "ident": "SLLP", + "type": "medium_airport", + "name": "El Alto International Airport", + "latitude_deg": "-16.5132999420166", + "longitude_deg": "-68.19229888916016", + "elevation_ft": "13355", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-L", + "municipality": "La Paz / El Alto", + "scheduled_service": "yes", + "gps_code": "SLLP", + "iata_code": "LPB", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Alto_International_Airport" + }, + { + "id": "39493", + "ident": "SLLQ", + "type": "small_airport", + "name": "Copaquilla Airport", + "latitude_deg": "-19.33333396911621", + "longitude_deg": "-67.08333587646484", + "elevation_ft": "12150", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-O", + "municipality": "L. Cabrera", + "scheduled_service": "no", + "gps_code": "SLLQ" + }, + { + "id": "39449", + "ident": "SLLS", + "type": "small_airport", + "name": "Lagunillas Airport", + "latitude_deg": "-19.600000381469727", + "longitude_deg": "-63.650001525878906", + "elevation_ft": "2950", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Caraparicito", + "scheduled_service": "no", + "gps_code": "SLLS" + }, + { + "id": "39539", + "ident": "SLLZ", + "type": "small_airport", + "name": "San Lorenzo Airport", + "latitude_deg": "-15.383333206176758", + "longitude_deg": "-65.75", + "elevation_ft": "825", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Moxos", + "scheduled_service": "no", + "gps_code": "SLLZ" + }, + { + "id": "39517", + "ident": "SLMB", + "type": "small_airport", + "name": "Mangabalito Airport", + "latitude_deg": "-13.787833213806152", + "longitude_deg": "-68.35466766357422", + "elevation_ft": "1190", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-O", + "municipality": "Velasco", + "scheduled_service": "no", + "gps_code": "SLMB" + }, + { + "id": "39516", + "ident": "SLMD", + "type": "small_airport", + "name": "Madidi Airport", + "latitude_deg": "-13.383333206176758", + "longitude_deg": "-68.6500015258789", + "elevation_ft": "500", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-L", + "municipality": "Iturralde", + "scheduled_service": "no", + "gps_code": "SLMD" + }, + { + "id": "39450", + "ident": "SLME", + "type": "small_airport", + "name": "Mandeyepecua Airport", + "latitude_deg": "-20.398000717163086", + "longitude_deg": "-63.140499114990234", + "elevation_ft": "1338", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Cordillera", + "scheduled_service": "no", + "gps_code": "SLME" + }, + { + "id": "30099", + "ident": "SLMG", + "type": "small_airport", + "name": "Magdalena Airport", + "latitude_deg": "-13.2607483767", + "longitude_deg": "-64.0607643127", + "elevation_ft": "462", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Magdalena", + "scheduled_service": "no", + "gps_code": "SLMG", + "iata_code": "MGD" + }, + { + "id": "39452", + "ident": "SLMM", + "type": "small_airport", + "name": "Mora Airport", + "latitude_deg": "-14.608499526977539", + "longitude_deg": "-61.19183349609375", + "elevation_ft": "600", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Velasco", + "scheduled_service": "no", + "gps_code": "SLMM" + }, + { + "id": "39518", + "ident": "SLMN", + "type": "small_airport", + "name": "Manuripi Airport", + "latitude_deg": "-11.738499641418457", + "longitude_deg": "-68.35466766357422", + "elevation_ft": "705", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-N", + "municipality": "Manuripi", + "scheduled_service": "no", + "gps_code": "SLMN" + }, + { + "id": "39520", + "ident": "SLMX", + "type": "small_airport", + "name": "Monos Araña Airport", + "latitude_deg": "-17.33333396911621", + "longitude_deg": "-64.16666412353516", + "elevation_ft": "1220", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Valle Grande", + "scheduled_service": "no", + "gps_code": "SLMX" + }, + { + "id": "39451", + "ident": "SLMZ", + "type": "small_airport", + "name": "Mizque Airport", + "latitude_deg": "-17.930999755859375", + "longitude_deg": "-65.38020324707031", + "elevation_ft": "7030", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-C", + "municipality": "Mizque", + "scheduled_service": "no", + "gps_code": "SLMZ" + }, + { + "id": "39488", + "ident": "SLNL", + "type": "small_airport", + "name": "Cañada Larga Airport", + "latitude_deg": "-17.601", + "longitude_deg": "-62.3957", + "elevation_ft": "1197", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Chiquitos", + "scheduled_service": "no", + "gps_code": "SLNL" + }, + { + "id": "39523", + "ident": "SLNO", + "type": "small_airport", + "name": "Nuevo Mundo Airport", + "latitude_deg": "-14.433333396911621", + "longitude_deg": "-66.06666564941406", + "elevation_ft": "548", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Yacuma", + "scheduled_service": "no", + "gps_code": "SLNO" + }, + { + "id": "39522", + "ident": "SLNV", + "type": "small_airport", + "name": "Nieve Airport", + "latitude_deg": "-14.016666412353516", + "longitude_deg": "-65.80000305175781", + "elevation_ft": "780", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Yacuma", + "scheduled_service": "no", + "gps_code": "SLNV" + }, + { + "id": "6185", + "ident": "SLOR", + "type": "medium_airport", + "name": "Juan Mendoza Airport", + "latitude_deg": "-17.962600708", + "longitude_deg": "-67.0762023926", + "elevation_ft": "12152", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-O", + "municipality": "Oruro", + "scheduled_service": "no", + "gps_code": "SLOR", + "iata_code": "ORU", + "home_link": "http://en.wikipedia.org/wiki/Juan_Mendoza_Airport" + }, + { + "id": "39524", + "ident": "SLPA", + "type": "small_airport", + "name": "Palmar Airport", + "latitude_deg": "-18.97166633605957", + "longitude_deg": "-62.97533416748047", + "elevation_ft": "1342", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Guanacos", + "scheduled_service": "no", + "gps_code": "SLPA" + }, + { + "id": "39527", + "ident": "SLPF", + "type": "small_airport", + "name": "Piso Firme Airport", + "latitude_deg": "-13.628833770751953", + "longitude_deg": "-61.73866653442383", + "elevation_ft": "575", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Velasco", + "scheduled_service": "no", + "gps_code": "SLPF" + }, + { + "id": "39454", + "ident": "SLPG", + "type": "small_airport", + "name": "Progreso Airport", + "latitude_deg": "-14.178400039672852", + "longitude_deg": "-65.37560272216797", + "elevation_ft": "754", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Moxos", + "scheduled_service": "no", + "gps_code": "SLPG" + }, + { + "id": "39528", + "ident": "SLPI", + "type": "small_airport", + "name": "Pitai Airport", + "latitude_deg": "-15.800000190734863", + "longitude_deg": "-65.61666870117188", + "elevation_ft": "605", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Moxos", + "scheduled_service": "no", + "gps_code": "SLPI" + }, + { + "id": "39453", + "ident": "SLPL", + "type": "small_airport", + "name": "Padilla Airport", + "latitude_deg": "-19.299400329589844", + "longitude_deg": "-64.29409790039062", + "elevation_ft": "6770", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-H", + "municipality": "J. Mendoza", + "scheduled_service": "no", + "gps_code": "SLPL" + }, + { + "id": "39525", + "ident": "SLPM", + "type": "small_airport", + "name": "Palmira Airport", + "latitude_deg": "-13.737951", + "longitude_deg": "-66.409333", + "elevation_ft": "530", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Yacuma", + "scheduled_service": "no", + "gps_code": "SLPM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palmira_Airport" + }, + { + "id": "39529", + "ident": "SLPN", + "type": "small_airport", + "name": "Porvenir Norte Airport", + "latitude_deg": "-13.987333297729492", + "longitude_deg": "-61.5456657409668", + "elevation_ft": "595", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Velasco", + "scheduled_service": "no", + "gps_code": "SLPN" + }, + { + "id": "6186", + "ident": "SLPO", + "type": "medium_airport", + "name": "Capitan Nicolas Rojas Airport", + "latitude_deg": "-19.543331", + "longitude_deg": "-65.723734", + "elevation_ft": "12922", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-P", + "municipality": "Potosí", + "scheduled_service": "no", + "gps_code": "SLPO", + "iata_code": "POI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cap._Nicolas_Rojas_Airport" + }, + { + "id": "39530", + "ident": "SLPR", + "type": "small_airport", + "name": "Puerto Rico Airport", + "latitude_deg": "-11.107663", + "longitude_deg": "-67.551155", + "elevation_ft": "597", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-N", + "municipality": "Puerto Rico/Manuripi", + "scheduled_service": "yes", + "gps_code": "SLPR", + "iata_code": "PUR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Puerto_Rico_Airport" + }, + { + "id": "6187", + "ident": "SLPS", + "type": "medium_airport", + "name": "Capitán Av. Salvador Ogaya G. airport", + "latitude_deg": "-18.975301", + "longitude_deg": "-57.820599", + "elevation_ft": "440", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Puerto Suárez", + "scheduled_service": "yes", + "gps_code": "SLPS", + "iata_code": "PSZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Puerto_Su%C3%A1rez_International_Airport" + }, + { + "id": "32322", + "ident": "SLPW", + "type": "small_airport", + "name": "El Porvenir Sur Airport", + "latitude_deg": "-20.75469970703125", + "longitude_deg": "-63.20940017700195", + "elevation_ft": "2238", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-H", + "municipality": "Luis Calvo", + "scheduled_service": "no", + "gps_code": "SLPW" + }, + { + "id": "39526", + "ident": "SLPY", + "type": "small_airport", + "name": "Piray Airport", + "latitude_deg": "-18.333499908447266", + "longitude_deg": "-63.192501068115234", + "elevation_ft": "1730", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Sanja Honda", + "scheduled_service": "no", + "gps_code": "SLPY" + }, + { + "id": "39494", + "ident": "SLQN", + "type": "small_airport", + "name": "Coquinal Airport", + "latitude_deg": "-13.183333396911621", + "longitude_deg": "-67", + "elevation_ft": "535", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Ballivian", + "scheduled_service": "no", + "gps_code": "SLQN" + }, + { + "id": "30388", + "ident": "SLRA", + "type": "small_airport", + "name": "San Ramón Airport", + "latitude_deg": "-13.2639", + "longitude_deg": "-64.603897", + "elevation_ft": "698", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "San Ramón / Mamoré", + "scheduled_service": "no", + "gps_code": "SLRA", + "iata_code": "SRD", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Ram%C3%B3n_Airport" + }, + { + "id": "30345", + "ident": "SLRB", + "type": "small_airport", + "name": "Roboré Airport", + "latitude_deg": "-18.329200744628906", + "longitude_deg": "-59.76499938964844", + "elevation_ft": "905", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Roboré", + "scheduled_service": "no", + "gps_code": "SLRB", + "iata_code": "RBO" + }, + { + "id": "39455", + "ident": "SLRF", + "type": "small_airport", + "name": "Refugio Airport", + "latitude_deg": "-14.762700080871582", + "longitude_deg": "-61.03200149536133", + "elevation_ft": "610", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Velasco", + "scheduled_service": "no", + "gps_code": "SLRF" + }, + { + "id": "39531", + "ident": "SLRH", + "type": "small_airport", + "name": "Rancho Alegre Airport", + "latitude_deg": "-12.166666984558105", + "longitude_deg": "-65.78333282470703", + "elevation_ft": "754", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Yacuma", + "scheduled_service": "no", + "gps_code": "SLRH" + }, + { + "id": "30334", + "ident": "SLRI", + "type": "small_airport", + "name": "Capitán Av. Selin Zeitun Lopez Airport", + "latitude_deg": "-11", + "longitude_deg": "-66", + "elevation_ft": "462", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Riberalta", + "scheduled_service": "yes", + "gps_code": "SLRI", + "iata_code": "RIB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cap._Av._Selin_Zeitun_Lopez_Airport" + }, + { + "id": "39533", + "ident": "SLRL", + "type": "small_airport", + "name": "Rosal Airport", + "latitude_deg": "-13.975000381469727", + "longitude_deg": "-65.625", + "elevation_ft": "482", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Yacuma", + "scheduled_service": "no", + "gps_code": "SLRL" + }, + { + "id": "39534", + "ident": "SLRP", + "type": "small_airport", + "name": "Rosapata Airport", + "latitude_deg": "-18.641666412353516", + "longitude_deg": "-67.55833435058594", + "elevation_ft": "12240", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-O", + "municipality": "Carangas", + "scheduled_service": "no", + "gps_code": "SLRP" + }, + { + "id": "39532", + "ident": "SLRR", + "type": "small_airport", + "name": "Retiro Airport", + "latitude_deg": "-14.483333587646484", + "longitude_deg": "-66.3499984741211", + "elevation_ft": "556", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Yacuma", + "scheduled_service": "no", + "gps_code": "SLRR" + }, + { + "id": "39457", + "ident": "SLRS", + "type": "small_airport", + "name": "Rio Seco Airport", + "latitude_deg": "-18.200834274291992", + "longitude_deg": "-63.25600051879883", + "elevation_ft": "1836", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Campo Ingelmeco", + "scheduled_service": "no", + "gps_code": "SLRS" + }, + { + "id": "39545", + "ident": "SLRT", + "type": "small_airport", + "name": "Santa Rita Airport", + "latitude_deg": "-13.933333396911621", + "longitude_deg": "-66.33333587646484", + "elevation_ft": "750", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Yacuma", + "scheduled_service": "no", + "gps_code": "SLRT" + }, + { + "id": "39456", + "ident": "SLRX", + "type": "small_airport", + "name": "Rincon Del Tigre Airport", + "latitude_deg": "-18.200834274291992", + "longitude_deg": "-58.16999816894531", + "elevation_ft": "664", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "German Busch", + "scheduled_service": "no", + "gps_code": "SLRX" + }, + { + "id": "30331", + "ident": "SLRY", + "type": "small_airport", + "name": "Reyes Airport", + "latitude_deg": "-14.3044", + "longitude_deg": "-67.353401", + "elevation_ft": "935", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Reyes", + "scheduled_service": "yes", + "gps_code": "SLRY", + "iata_code": "REY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Reyes_Airport" + }, + { + "id": "6188", + "ident": "SLSA", + "type": "medium_airport", + "name": "Santa Ana Del Yacuma Airport", + "latitude_deg": "-13.762200355500001", + "longitude_deg": "-65.4352035522", + "elevation_ft": "472", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Santa Ana del Yacuma", + "scheduled_service": "no", + "gps_code": "SLSA", + "iata_code": "SBL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Ana_del_Yacuma_Airport" + }, + { + "id": "30364", + "ident": "SLSB", + "type": "small_airport", + "name": "Capitán Av. German Quiroga G. Airport", + "latitude_deg": "-14.859199523925781", + "longitude_deg": "-66.73750305175781", + "elevation_ft": "633", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "San Borja", + "scheduled_service": "yes", + "gps_code": "SLSB", + "iata_code": "SRJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Capitán_Germán_Quiroga_Guardia_Airport" + }, + { + "id": "39459", + "ident": "SLSD", + "type": "small_airport", + "name": "San Carlos Gutierrez Airport", + "latitude_deg": "-14.561100006103516", + "longitude_deg": "-65.5271987915039", + "elevation_ft": "1820", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Yacuma", + "scheduled_service": "no", + "gps_code": "SLSD" + }, + { + "id": "39465", + "ident": "SLSE", + "type": "small_airport", + "name": "Santa Teresita Airport", + "latitude_deg": "-16.28499984741211", + "longitude_deg": "-59.49516677856445", + "elevation_ft": "756", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Angel Sandoval", + "scheduled_service": "no", + "gps_code": "SLSE" + }, + { + "id": "39460", + "ident": "SLSF", + "type": "small_airport", + "name": "San Rafael Airport", + "latitude_deg": "-17.2891", + "longitude_deg": "-62.304", + "elevation_ft": "890", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "scheduled_service": "no", + "gps_code": "SLSF" + }, + { + "id": "39462", + "ident": "SLSG", + "type": "small_airport", + "name": "San Miguel De Gaser Airport", + "latitude_deg": "-13.902099609375", + "longitude_deg": "-66.15670013427734", + "elevation_ft": "700", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Yacuma", + "scheduled_service": "no", + "gps_code": "SLSG" + }, + { + "id": "39543", + "ident": "SLSH", + "type": "small_airport", + "name": "Santa Ana De Huachi Airport", + "latitude_deg": "-15.483333587646484", + "longitude_deg": "-67.48332977294922", + "elevation_ft": "1640", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-L", + "municipality": "Sud Yungas", + "scheduled_service": "no", + "gps_code": "SLSH" + }, + { + "id": "30372", + "ident": "SLSI", + "type": "small_airport", + "name": "Capitán Av. Juan Cochamanidis S. Airport", + "latitude_deg": "-16.3836", + "longitude_deg": "-60.962799", + "elevation_ft": "1354", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "San Ignacio de Velasco", + "scheduled_service": "no", + "gps_code": "SLSI", + "iata_code": "SNG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Capitán_Av._Juan_Cochamanidis_Airport" + }, + { + "id": "39535", + "ident": "SLSJ", + "type": "small_airport", + "name": "Salinas Airport", + "latitude_deg": "-19.5", + "longitude_deg": "-67.33333587646484", + "elevation_ft": "12027", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-O", + "municipality": "Ladislao Cabrera", + "scheduled_service": "no", + "gps_code": "SLSJ" + }, + { + "id": "39546", + "ident": "SLSK", + "type": "small_airport", + "name": "Santa Rosa Del Sara Airport", + "latitude_deg": "-17.104719", + "longitude_deg": "-63.608372", + "elevation_ft": "850", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "A. Ibañez", + "scheduled_service": "no", + "gps_code": "SLSK" + }, + { + "id": "30371", + "ident": "SLSM", + "type": "small_airport", + "name": "San Ignacio de Moxos Airport", + "latitude_deg": "-14.9658", + "longitude_deg": "-65.6338", + "elevation_ft": "545", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "San Ignacio de Moxos", + "scheduled_service": "no", + "gps_code": "SLSM", + "iata_code": "SNM", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Ignacio_de_Moxos_Airport" + }, + { + "id": "39542", + "ident": "SLSN", + "type": "small_airport", + "name": "Sanandita Airport", + "latitude_deg": "-21.649999618530273", + "longitude_deg": "-63.599998474121094", + "elevation_ft": "3200", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-T", + "municipality": "Gran Chaco", + "scheduled_service": "no", + "gps_code": "SLSN" + }, + { + "id": "39468", + "ident": "SLSP", + "type": "small_airport", + "name": "Sipuati Airport", + "latitude_deg": "-21.07349967956543", + "longitude_deg": "-63.109500885009766", + "elevation_ft": "1400", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-T", + "municipality": "Gran Chaco", + "scheduled_service": "no", + "gps_code": "SLSP" + }, + { + "id": "39467", + "ident": "SLSQ", + "type": "small_airport", + "name": "Santiago De Chiquitos Airport", + "latitude_deg": "-18.345800399780273", + "longitude_deg": "-59.604801177978516", + "elevation_ft": "1990", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Santiago de Chiquitos", + "scheduled_service": "no", + "gps_code": "SLSQ" + }, + { + "id": "39464", + "ident": "SLSR", + "type": "small_airport", + "name": "Santa Rosa De Yacuma Airport", + "latitude_deg": "-14.066200256347656", + "longitude_deg": "-66.78679656982422", + "elevation_ft": "738", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Santa Rosa", + "scheduled_service": "no", + "gps_code": "SLSR", + "iata_code": "SRB" + }, + { + "id": "39458", + "ident": "SLSS", + "type": "small_airport", + "name": "Sunsas Airport", + "latitude_deg": "-18.4754", + "longitude_deg": "-58.2767", + "elevation_ft": "855", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Sunsas", + "scheduled_service": "no", + "gps_code": "SLSS" + }, + { + "id": "6189", + "ident": "SLSU", + "type": "medium_airport", + "name": "Juana Azurduy De Padilla Airport", + "latitude_deg": "-19.007099", + "longitude_deg": "-65.288696", + "elevation_ft": "9540", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-H", + "municipality": "Sucre", + "scheduled_service": "no", + "gps_code": "SLSU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Juana_Azurduy_de_Padilla_International_Airport", + "keywords": "military" + }, + { + "id": "345118", + "ident": "SLSV", + "type": "medium_airport", + "name": "San Ignacio de Velasco Airport", + "latitude_deg": "-16.401239", + "longitude_deg": "-61.0452", + "elevation_ft": "1477", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-P", + "municipality": "San Ignacio de Velasco", + "scheduled_service": "no", + "gps_code": "SLSV" + }, + { + "id": "39547", + "ident": "SLTA", + "type": "small_airport", + "name": "Taquipirenda Airport", + "latitude_deg": "-20.343299865722656", + "longitude_deg": "-63.139400482177734", + "elevation_ft": "2340", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Cordillera", + "scheduled_service": "no", + "gps_code": "SLTA" + }, + { + "id": "39552", + "ident": "SLTC", + "type": "small_airport", + "name": "Tres Cruces Airport", + "latitude_deg": "-17.3604", + "longitude_deg": "-62.2796", + "elevation_ft": "880", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Chiquitos", + "scheduled_service": "no", + "gps_code": "SLTC" + }, + { + "id": "39548", + "ident": "SLTE", + "type": "small_airport", + "name": "Teoponte Airport", + "latitude_deg": "-15.498332977294922", + "longitude_deg": "-67.81666564941406", + "elevation_ft": "1400", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-L", + "municipality": "Larecaja", + "scheduled_service": "no", + "gps_code": "SLTE" + }, + { + "id": "39466", + "ident": "SLTG", + "type": "small_airport", + "name": "Santiago Airport", + "latitude_deg": "-15.227800369262695", + "longitude_deg": "-65.45010375976562", + "elevation_ft": "1000", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Moxos", + "scheduled_service": "no", + "gps_code": "SLTG" + }, + { + "id": "30387", + "ident": "SLTI", + "type": "small_airport", + "name": "San Matías Airport", + "latitude_deg": "-16.33919906616211", + "longitude_deg": "-58.40190124511719", + "elevation_ft": "403", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "San Matías", + "scheduled_service": "no", + "gps_code": "SLTI", + "iata_code": "MQK" + }, + { + "id": "6190", + "ident": "SLTJ", + "type": "medium_airport", + "name": "Capitan Oriel Lea Plaza Airport", + "latitude_deg": "-21.5557", + "longitude_deg": "-64.701302", + "elevation_ft": "6079", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-T", + "municipality": "Tarija", + "scheduled_service": "yes", + "gps_code": "SLTJ", + "iata_code": "TJA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cap._Oriel_Lea_Plaza_Airport" + }, + { + "id": "39470", + "ident": "SLTL", + "type": "small_airport", + "name": "San Cristóbal Toldos Airport", + "latitude_deg": "-21.175602", + "longitude_deg": "-67.166689", + "elevation_ft": "11800", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-P", + "municipality": "Nor Lipez", + "scheduled_service": "no", + "gps_code": "SLTL" + }, + { + "id": "39551", + "ident": "SLTO", + "type": "small_airport", + "name": "Totora Airport", + "latitude_deg": "-17.798166275024414", + "longitude_deg": "-68.09349822998047", + "elevation_ft": "12530", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-O", + "municipality": "Oruro", + "scheduled_service": "no", + "gps_code": "SLTO" + }, + { + "id": "6191", + "ident": "SLTR", + "type": "medium_airport", + "name": "Teniente Av. Jorge Henrich Arauz Airport", + "latitude_deg": "-14.8186998367", + "longitude_deg": "-64.9179992676", + "elevation_ft": "509", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Trinidad", + "scheduled_service": "no", + "gps_code": "SLTR", + "iata_code": "TDD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tte._Av._Jorge_Henrich_Arauz_Airport" + }, + { + "id": "39472", + "ident": "SLTU", + "type": "small_airport", + "name": "Turco Airport", + "latitude_deg": "-18.195833206176758", + "longitude_deg": "-68.14199829101562", + "elevation_ft": "12500", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-O", + "municipality": "Sajama", + "scheduled_service": "no", + "gps_code": "SLTU" + }, + { + "id": "39469", + "ident": "SLTW", + "type": "small_airport", + "name": "Tita Airport", + "latitude_deg": "-18.466400146484375", + "longitude_deg": "-62.11199951171875", + "elevation_ft": "1312", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "San Rafael", + "scheduled_service": "no", + "gps_code": "SLTW" + }, + { + "id": "39553", + "ident": "SLTX", + "type": "small_airport", + "name": "Tuichi Airport", + "latitude_deg": "-14.316666603088379", + "longitude_deg": "-68.58333587646484", + "elevation_ft": "2360", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-L", + "municipality": "Franz Tamayo", + "scheduled_service": "no", + "gps_code": "SLTX" + }, + { + "id": "39550", + "ident": "SLTY", + "type": "small_airport", + "name": "Tiguipa Airport", + "latitude_deg": "-13.800000190734863", + "longitude_deg": "-66.23332977294922", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Yacuma", + "scheduled_service": "no", + "gps_code": "SLTY" + }, + { + "id": "39471", + "ident": "SLTZ", + "type": "small_airport", + "name": "Tupiza-Mochará Airport", + "latitude_deg": "-21.337012", + "longitude_deg": "-65.612228", + "elevation_ft": "11300", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-P", + "municipality": "Sud Chichas", + "scheduled_service": "no", + "gps_code": "SLTZ" + }, + { + "id": "39432", + "ident": "SLUC", + "type": "small_airport", + "name": "Cuevo Airport", + "latitude_deg": "-20.480499267578125", + "longitude_deg": "-63.528167724609375", + "elevation_ft": "3440", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Cordillera", + "scheduled_service": "no", + "gps_code": "SLUC" + }, + { + "id": "39497", + "ident": "SLUK", + "type": "small_airport", + "name": "Curahuara de Carangas Airport", + "latitude_deg": "-17.98579978942871", + "longitude_deg": "-68.39430236816406", + "elevation_ft": "12920", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-O", + "municipality": "Oruro", + "scheduled_service": "no", + "gps_code": "SLUK" + }, + { + "id": "314358", + "ident": "SLUP", + "type": "small_airport", + "name": "Puerto America Airport", + "latitude_deg": "-11.7616", + "longitude_deg": "-67.95864", + "elevation_ft": "571", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-N", + "municipality": "Puerto America", + "scheduled_service": "no", + "gps_code": "SLUP" + }, + { + "id": "39555", + "ident": "SLUS", + "type": "small_airport", + "name": "Urusi Airport", + "latitude_deg": "-14.316666603088379", + "longitude_deg": "-66.16666412353516", + "elevation_ft": "805", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Ballivian", + "scheduled_service": "no", + "gps_code": "SLUS" + }, + { + "id": "39554", + "ident": "SLUU", + "type": "small_airport", + "name": "Ulla Ulla Airport", + "latitude_deg": "-15.033333778381348", + "longitude_deg": "-69.25", + "elevation_ft": "14360", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-L", + "municipality": "Franz Tamayo", + "scheduled_service": "no", + "gps_code": "SLUU" + }, + { + "id": "39473", + "ident": "SLUY", + "type": "small_airport", + "name": "Uyuni Joya Andina Airport", + "latitude_deg": "-20.441304", + "longitude_deg": "-66.857553", + "elevation_ft": "11136", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-P", + "municipality": "Quijarro", + "scheduled_service": "no", + "gps_code": "SLUY", + "iata_code": "UYU" + }, + { + "id": "39556", + "ident": "SLVA", + "type": "small_airport", + "name": "Villa Aroma Airport", + "latitude_deg": "-17.32101", + "longitude_deg": "-67.75322", + "elevation_ft": "12533", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-L", + "municipality": "Aroma", + "scheduled_service": "no", + "gps_code": "SLVA" + }, + { + "id": "39495", + "ident": "SLVD", + "type": "small_airport", + "name": "Covendo Airport", + "latitude_deg": "-15.833333015441895", + "longitude_deg": "-67.08333587646484", + "elevation_ft": "4887", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-L", + "municipality": "Sud Yungas", + "scheduled_service": "no", + "gps_code": "SLVD" + }, + { + "id": "39474", + "ident": "SLVE", + "type": "small_airport", + "name": "Venecia Airport", + "latitude_deg": "-14.63599967956543", + "longitude_deg": "-66.75029754638672", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Yacuma", + "scheduled_service": "no", + "gps_code": "SLVE" + }, + { + "id": "30518", + "ident": "SLVG", + "type": "small_airport", + "name": "Capitán Av. Vidal Villagomez Toledo Airport", + "latitude_deg": "-18.482500076293945", + "longitude_deg": "-64.09940338134766", + "elevation_ft": "6551", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Vallegrande", + "scheduled_service": "no", + "gps_code": "SLVG", + "iata_code": "VAH" + }, + { + "id": "39489", + "ident": "SLVI", + "type": "small_airport", + "name": "Caranavi Airport", + "latitude_deg": "-15.75", + "longitude_deg": "-67.56666564941406", + "elevation_ft": "2100", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-L", + "municipality": "Nor Yungas", + "scheduled_service": "no", + "gps_code": "SLVI" + }, + { + "id": "6192", + "ident": "SLVM", + "type": "medium_airport", + "name": "Teniente Coronel Rafael Pabón Airport", + "latitude_deg": "-21.255199432399998", + "longitude_deg": "-63.4056015015", + "elevation_ft": "1305", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-T", + "municipality": "Villamontes", + "scheduled_service": "no", + "gps_code": "SLVM", + "iata_code": "VLM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tcnl._Rafael_Pab%C3%B3n_Airport" + }, + { + "id": "39476", + "ident": "SLVN", + "type": "small_airport", + "name": "Villa Negrita Airport", + "latitude_deg": "-13.265800476074219", + "longitude_deg": "-65.87580108642578", + "elevation_ft": "872", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Yacuma", + "scheduled_service": "no", + "gps_code": "SLVN" + }, + { + "id": "6193", + "ident": "SLVR", + "type": "large_airport", + "name": "Viru Viru International Airport", + "latitude_deg": "-17.6448", + "longitude_deg": "-63.135399", + "elevation_ft": "1224", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Santa Cruz", + "scheduled_service": "yes", + "gps_code": "SLVR", + "iata_code": "VVI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Viru_Viru_International_Airport" + }, + { + "id": "39549", + "ident": "SLVT", + "type": "small_airport", + "name": "Tesoro/La Vertiente Airport", + "latitude_deg": "-21.266666412353516", + "longitude_deg": "-63.358333587646484", + "elevation_ft": "1300", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-T", + "municipality": "Tesoro", + "scheduled_service": "no", + "gps_code": "SLVT" + }, + { + "id": "39477", + "ident": "SLVU", + "type": "small_airport", + "name": "Vuelta Grande Airport", + "latitude_deg": "-20.90483283996582", + "longitude_deg": "-63.19216537475586", + "elevation_ft": "1900", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-H", + "municipality": "Luis Calvo", + "scheduled_service": "no", + "gps_code": "SLVU" + }, + { + "id": "39475", + "ident": "SLVV", + "type": "small_airport", + "name": "Villa Elvira Airport", + "latitude_deg": "-13.64430046081543", + "longitude_deg": "-64.44080352783203", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Mamore", + "scheduled_service": "no", + "gps_code": "SLVV" + }, + { + "id": "39558", + "ident": "SLVZ", + "type": "small_airport", + "name": "Villazon Airport", + "latitude_deg": "-22.053604", + "longitude_deg": "-65.639249", + "elevation_ft": "1100", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-P", + "municipality": "M.Omiste", + "scheduled_service": "no", + "gps_code": "SLVZ" + }, + { + "id": "6194", + "ident": "SLYA", + "type": "medium_airport", + "name": "Yacuiba Airport", + "latitude_deg": "-21.960899353027344", + "longitude_deg": "-63.65169906616211", + "elevation_ft": "2112", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-T", + "municipality": "Yacuíba", + "scheduled_service": "no", + "gps_code": "SLYA", + "iata_code": "BYC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yacuiba_Airport" + }, + { + "id": "39478", + "ident": "SLYG", + "type": "small_airport", + "name": "Yabog Airport", + "latitude_deg": "-18.654499053955078", + "longitude_deg": "-63.1328010559082", + "elevation_ft": "1412", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Las Juntas", + "scheduled_service": "no", + "gps_code": "SLYG" + }, + { + "id": "39559", + "ident": "SLYI", + "type": "small_airport", + "name": "Yapacani Airport", + "latitude_deg": "-17.015666961669922", + "longitude_deg": "-64.05633544921875", + "elevation_ft": "816", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Ichilo", + "scheduled_service": "no", + "gps_code": "SLYI" + }, + { + "id": "39540", + "ident": "SLZB", + "type": "small_airport", + "name": "San Pedro Rb Airport", + "latitude_deg": "-14.866666793823242", + "longitude_deg": "-65.6500015258789", + "elevation_ft": "720", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Moxos", + "scheduled_service": "no", + "gps_code": "SLZB" + }, + { + "id": "39537", + "ident": "SLZC", + "type": "small_airport", + "name": "San Carlos Airport", + "latitude_deg": "-17.427798", + "longitude_deg": "-63.674953", + "elevation_ft": "1150", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Ichilo", + "scheduled_service": "no", + "gps_code": "SLZC" + }, + { + "id": "39461", + "ident": "SLZF", + "type": "small_airport", + "name": "San Francisco Naciff Airport", + "latitude_deg": "-13.748600006103516", + "longitude_deg": "-64.45369720458984", + "elevation_ft": "482", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Nacif", + "scheduled_service": "no", + "gps_code": "SLZF" + }, + { + "id": "39541", + "ident": "SLZJ", + "type": "small_airport", + "name": "San Pedro Richard Airport", + "latitude_deg": "-14.216666221618652", + "longitude_deg": "-63.650001525878906", + "elevation_ft": "700", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-B", + "municipality": "Itenes", + "scheduled_service": "no", + "gps_code": "SLZJ" + }, + { + "id": "39463", + "ident": "SLZV", + "type": "small_airport", + "name": "San Vicente Airport", + "latitude_deg": "-16.273700714111328", + "longitude_deg": "-60.0906982421875", + "elevation_ft": "1000", + "continent": "SA", + "iso_country": "BO", + "iso_region": "BO-S", + "municipality": "Velasco", + "scheduled_service": "no", + "gps_code": "SLZV" + }, + { + "id": "44550", + "ident": "SM-0001", + "type": "closed", + "name": "Borgo Maggiore International Heliport", + "latitude_deg": "43.940459", + "longitude_deg": "12.446249", + "continent": "EU", + "iso_country": "SM", + "iso_region": "SM-06", + "municipality": "Borgo Maggiore", + "scheduled_service": "no" + }, + { + "id": "308263", + "ident": "SMAF", + "type": "small_airport", + "name": "Afobakka Airstrip", + "latitude_deg": "4.998505", + "longitude_deg": "-54.992033", + "elevation_ft": "80", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-BR", + "municipality": "Afobakka", + "scheduled_service": "yes", + "gps_code": "SMAF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Afobaka_Airstrip" + }, + { + "id": "323758", + "ident": "SMAN", + "type": "small_airport", + "name": "Lawa Antino Airstrip", + "latitude_deg": "3.619932", + "longitude_deg": "-54.142714", + "elevation_ft": "740", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Benzdorp", + "scheduled_service": "no", + "gps_code": "SMAN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lawa_Antino_Airstrip" + }, + { + "id": "323755", + "ident": "SMBG", + "type": "small_airport", + "name": "Bakhuys Airstrip", + "latitude_deg": "4.778882", + "longitude_deg": "-56.768699", + "elevation_ft": "307", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Bakhuys", + "scheduled_service": "no", + "gps_code": "SMBG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bakhuys_Airstrip" + }, + { + "id": "41505", + "ident": "SMBN", + "type": "small_airport", + "name": "Albina Airport", + "latitude_deg": "5.51272", + "longitude_deg": "-54.050098", + "elevation_ft": "19", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-MA", + "municipality": "Albina", + "scheduled_service": "no", + "gps_code": "SMBN", + "iata_code": "ABN" + }, + { + "id": "323759", + "ident": "SMCB", + "type": "small_airport", + "name": "Cabana Airstrip", + "latitude_deg": "4.852778", + "longitude_deg": "-55.593056", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Cabana", + "scheduled_service": "no", + "gps_code": "SMCB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cabana_Airstrip" + }, + { + "id": "32327", + "ident": "SMCI", + "type": "small_airport", + "name": "Coeroeni Airport", + "latitude_deg": "3.370684", + "longitude_deg": "-57.346046", + "elevation_ft": "479", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Coeroeni", + "scheduled_service": "no", + "gps_code": "SMCI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coeroenie_Airstrip" + }, + { + "id": "32470", + "ident": "SMCO", + "type": "small_airport", + "name": "Totness Airport", + "latitude_deg": "5.86583", + "longitude_deg": "-56.327499", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-CR", + "municipality": "Totness", + "scheduled_service": "no", + "gps_code": "SMCO", + "iata_code": "TOT" + }, + { + "id": "308264", + "ident": "SMCT", + "type": "small_airport", + "name": "Cottica Airstrip", + "latitude_deg": "3.85216", + "longitude_deg": "-54.228201", + "elevation_ft": "330", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Lawa Cottica", + "scheduled_service": "yes", + "gps_code": "SMCT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lawa_Cottica_Airstrip" + }, + { + "id": "41506", + "ident": "SMDA", + "type": "small_airport", + "name": "Drietabbetje Airport", + "latitude_deg": "4.111359", + "longitude_deg": "-54.672766", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Drietabbetje", + "scheduled_service": "yes", + "gps_code": "SMDA", + "iata_code": "DRJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Drietabbetje_Airstrip" + }, + { + "id": "323756", + "ident": "SMDK", + "type": "small_airport", + "name": "Donderskamp Airstrip", + "latitude_deg": "5.350385", + "longitude_deg": "-56.363047", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Donderskamp", + "scheduled_service": "no", + "gps_code": "SMDK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Donderskamp_Airstrip" + }, + { + "id": "308269", + "ident": "SMDU", + "type": "small_airport", + "name": "Alalapadu Airstrip", + "latitude_deg": "2.5235", + "longitude_deg": "-56.3247", + "elevation_ft": "880", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Alalapadi", + "scheduled_service": "no", + "gps_code": "SMDU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alalapadu_Airstrip" + }, + { + "id": "323761", + "ident": "SMGA", + "type": "small_airport", + "name": "Gakaba Airstrip", + "latitude_deg": "4.454167", + "longitude_deg": "-54.445833", + "elevation_ft": "192", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Gakaba", + "scheduled_service": "no", + "gps_code": "SMGA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gakaba_Airstrip" + }, + { + "id": "308268", + "ident": "SMGH", + "type": "small_airport", + "name": "Godo Holo Airstrip", + "latitude_deg": "4.0583", + "longitude_deg": "-54.7861", + "elevation_ft": "280", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Pikienkondre of Miranda", + "scheduled_service": "yes", + "gps_code": "SMGH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Godo_Holo_Airstrip" + }, + { + "id": "323762", + "ident": "SMGR", + "type": "small_airport", + "name": "Gross Rosebel Airstrip", + "latitude_deg": "5.091667", + "longitude_deg": "-55.249167", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-BR", + "scheduled_service": "no", + "gps_code": "SMGR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gross_Rosebel_Airstrip" + }, + { + "id": "307447", + "ident": "SMH", + "type": "small_airport", + "name": "Sapmanga Airport", + "latitude_deg": "-6.075277777779999", + "longitude_deg": "146.811111111", + "elevation_ft": "2912", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Sapmanga", + "scheduled_service": "no", + "gps_code": "AYSP", + "iata_code": "SMH", + "local_code": "SAG" + }, + { + "id": "323763", + "ident": "SMHA", + "type": "small_airport", + "name": "Henri Alwies Airstrip", + "latitude_deg": "5.831891", + "longitude_deg": "-55.636875", + "elevation_ft": "22", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SA", + "municipality": "Antongron", + "scheduled_service": "no", + "gps_code": "SMHA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Henri_Alwies_Airstrip" + }, + { + "id": "323764", + "ident": "SMJA", + "type": "small_airport", + "name": "Jarikaba Airstrip", + "latitude_deg": "5.826389", + "longitude_deg": "-55.3375", + "elevation_ft": "19", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SA", + "municipality": "Jarikaba", + "scheduled_service": "no", + "gps_code": "SMJA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jarikaba_Airstrip" + }, + { + "id": "6195", + "ident": "SMJP", + "type": "large_airport", + "name": "Johan Adolf Pengel International Airport", + "latitude_deg": "5.45283", + "longitude_deg": "-55.187801", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-PR", + "municipality": "Zandery", + "scheduled_service": "yes", + "gps_code": "SMJP", + "iata_code": "PBM", + "home_link": "http://www.japi-airport.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Johan_Adolf_Pengel_International_Airport", + "keywords": "Zanderij, JAP International Airport, JAPI Airport, JAPIA, ZY Airport" + }, + { + "id": "32328", + "ident": "SMKA", + "type": "small_airport", + "name": "Kabalebo Airport", + "latitude_deg": "4.406617", + "longitude_deg": "-57.223678", + "elevation_ft": "535", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Kabalebo", + "scheduled_service": "no", + "gps_code": "SMKA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kabalebo_Airstrip" + }, + { + "id": "32329", + "ident": "SMKE", + "type": "small_airport", + "name": "Kayser Airport", + "latitude_deg": "3.094343", + "longitude_deg": "-56.472702", + "elevation_ft": "849", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Kayserberg", + "scheduled_service": "no", + "gps_code": "SMKE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kayser_Airstrip" + }, + { + "id": "323757", + "ident": "SMLA", + "type": "small_airport", + "name": "Lawa Anapaike Airstrip", + "latitude_deg": "3.410484", + "longitude_deg": "-54.028294", + "elevation_ft": "373", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Anapaike", + "scheduled_service": "no", + "gps_code": "SMLA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lawa_Anapaike_Airstrip", + "keywords": "Kamalasoela" + }, + { + "id": "323787", + "ident": "SMLI", + "type": "small_airport", + "name": "Lelygebergte Airstrip", + "latitude_deg": "4.268056", + "longitude_deg": "-54.743056", + "elevation_ft": "2217", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Lelygebergte", + "scheduled_service": "no", + "gps_code": "SMLI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lelygebergte_Airstrip" + }, + { + "id": "323786", + "ident": "SMLT", + "type": "small_airport", + "name": "Langatabbetje Airstrip", + "latitude_deg": "4.996111", + "longitude_deg": "-54.441667", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Langatabbetje", + "scheduled_service": "no", + "gps_code": "SMLT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Langatabbetje_Airstrip" + }, + { + "id": "308267", + "ident": "SMMO", + "type": "small_airport", + "name": "Moengo Airstrip", + "latitude_deg": "5.6076", + "longitude_deg": "-54.4003", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-MA", + "municipality": "Moengo", + "scheduled_service": "yes", + "gps_code": "SMMO", + "iata_code": "MOJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moengo_Airstrip" + }, + { + "id": "31663", + "ident": "SMNI", + "type": "small_airport", + "name": "Nieuw Nickerie - Major Henk Fernandes Airport", + "latitude_deg": "5.955435", + "longitude_deg": "-57.040617", + "elevation_ft": "9", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-NI", + "municipality": "Nieuw Nickerie", + "scheduled_service": "no", + "gps_code": "SMNI", + "iata_code": "ICK" + }, + { + "id": "323754", + "ident": "SMOL", + "type": "small_airport", + "name": "Oelemari Airport", + "latitude_deg": "3.104167", + "longitude_deg": "-54.543056", + "elevation_ft": "483", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "scheduled_service": "no", + "gps_code": "SMOL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oelemari_Airport" + }, + { + "id": "32092", + "ident": "SMPA", + "type": "small_airport", + "name": "Vincent Fayks Airport", + "latitude_deg": "3.346051", + "longitude_deg": "-55.443707", + "elevation_ft": "714", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Paloemeu", + "scheduled_service": "no", + "gps_code": "SMPA", + "iata_code": "OEM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vincent_Fayks_Airstrip", + "keywords": "Faiks" + }, + { + "id": "323788", + "ident": "SMPE", + "type": "small_airport", + "name": "Poeketi Airstrip", + "latitude_deg": "4.126389", + "longitude_deg": "-54.623611", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Poeketi", + "scheduled_service": "no", + "gps_code": "SMPE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Poeketi_Airstrip" + }, + { + "id": "308266", + "ident": "SMPG", + "type": "small_airport", + "name": "Poesoegroenoe(Pusugrunu) Airstrip", + "latitude_deg": "4.397914", + "longitude_deg": "-55.793374", + "elevation_ft": "390", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Poesoegroenoe", + "scheduled_service": "no", + "gps_code": "SMPG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Poesoegroenoe_Airstrip" + }, + { + "id": "323751", + "ident": "SMPT", + "type": "small_airport", + "name": "Apetina Airstrip", + "latitude_deg": "3.502836", + "longitude_deg": "-55.057989", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Apetina", + "scheduled_service": "no", + "gps_code": "SMPT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Apetina_Airstrip" + }, + { + "id": "323790", + "ident": "SMRA", + "type": "small_airport", + "name": "Ralleigh Airstrip", + "latitude_deg": "4.722778", + "longitude_deg": "-56.208333", + "elevation_ft": "109", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Ralleigh", + "scheduled_service": "no", + "gps_code": "SMRA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ralleigh_Airstrip" + }, + { + "id": "323789", + "ident": "SMRN", + "type": "small_airport", + "name": "Ragoebarsing Airstrip", + "latitude_deg": "4.884722", + "longitude_deg": "-56.940278", + "elevation_ft": "141", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Ragoebarsing", + "scheduled_service": "no", + "gps_code": "SMRN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ragoebarsing_Airstrip" + }, + { + "id": "41507", + "ident": "SMSI", + "type": "small_airport", + "name": "Sipaliwini Airport", + "latitude_deg": "2.026438", + "longitude_deg": "-56.126412", + "elevation_ft": "744", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Sipaliwini", + "scheduled_service": "no", + "gps_code": "SMSI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sipaliwini_Airstrip" + }, + { + "id": "323791", + "ident": "SMSK", + "type": "small_airport", + "name": "Sarakreek Airstrip", + "latitude_deg": "4.318516", + "longitude_deg": "-54.967227", + "elevation_ft": "223", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-BR", + "municipality": "Sarakreek", + "scheduled_service": "no", + "gps_code": "SMSK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sarakreek_Airstrip" + }, + { + "id": "41508", + "ident": "SMSM", + "type": "small_airport", + "name": "Kwamalasoemoetoe Airport", + "latitude_deg": "2.354427", + "longitude_deg": "-56.792431", + "elevation_ft": "905", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Kwamalasoemoetoe Airport", + "scheduled_service": "no", + "gps_code": "SMSM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kwamelasemoetoe_Airstrip" + }, + { + "id": "41509", + "ident": "SMST", + "type": "small_airport", + "name": "Stoelmanseiland Airport", + "latitude_deg": "4.349999904632568", + "longitude_deg": "-54.41666793823242", + "elevation_ft": "187", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Stoelmanseiland", + "scheduled_service": "no", + "gps_code": "SMST", + "iata_code": "SMZ" + }, + { + "id": "308265", + "ident": "SMTA", + "type": "small_airport", + "name": "Tabiki Airstrip", + "latitude_deg": "3.679806", + "longitude_deg": "-54.085207", + "elevation_ft": "309", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Benzdorp", + "scheduled_service": "yes", + "gps_code": "SMTA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lawa_Tabiki_Airstrip" + }, + { + "id": "32331", + "ident": "SMTB", + "type": "small_airport", + "name": "Rudi Kappel Airport", + "latitude_deg": "3.787625", + "longitude_deg": "-56.149487", + "elevation_ft": "1112", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Tafelberg", + "scheduled_service": "no", + "gps_code": "SMTB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tafelberg_Airstrip" + }, + { + "id": "323792", + "ident": "SMVG", + "type": "small_airport", + "name": "Vier Gebroeders Airstrip", + "latitude_deg": "1.9625", + "longitude_deg": "-55.929167", + "elevation_ft": "1110", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Vier Gebroeders", + "scheduled_service": "no", + "gps_code": "SMVG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vier_Gebroeders_Airstrip" + }, + { + "id": "323753", + "ident": "SMVO", + "type": "small_airport", + "name": "Avanavero Airstrip", + "latitude_deg": "4.825685", + "longitude_deg": "-57.282415", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Avanavero", + "scheduled_service": "no", + "gps_code": "SMVO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Avanavero_Airstrip" + }, + { + "id": "41510", + "ident": "SMWA", + "type": "small_airport", + "name": "Wageningen Airstrip", + "latitude_deg": "5.841252", + "longitude_deg": "-56.673247", + "elevation_ft": "6", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-NI", + "municipality": "Wageningen", + "scheduled_service": "yes", + "gps_code": "SMWA", + "iata_code": "AGI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wageningen_Airstrip" + }, + { + "id": "32127", + "ident": "SMZO", + "type": "small_airport", + "name": "Zorg en Hoop Airport", + "latitude_deg": "5.811131", + "longitude_deg": "-55.1913", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-PM", + "municipality": "Paramaribo", + "scheduled_service": "yes", + "gps_code": "SMZO", + "iata_code": "ORG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zorg_en_Hoop_Airport" + }, + { + "id": "318894", + "ident": "SN-0001", + "type": "small_airport", + "name": "Thiès Airport", + "latitude_deg": "14.809398", + "longitude_deg": "-16.95066", + "continent": "AF", + "iso_country": "SN", + "iso_region": "SN-TH", + "municipality": "Thiès", + "scheduled_service": "no" + }, + { + "id": "340301", + "ident": "SN-0002", + "type": "closed", + "name": "Abéné Airfield", + "latitude_deg": "13.0101", + "longitude_deg": "-16.7213", + "continent": "AF", + "iso_country": "SN", + "iso_region": "SN-ZG", + "municipality": "Abéné", + "scheduled_service": "no" + }, + { + "id": "340302", + "ident": "SN-0003", + "type": "small_airport", + "name": "Djilor Pout Pout Airport", + "latitude_deg": "14.0866", + "longitude_deg": "-16.6659", + "continent": "AF", + "iso_country": "SN", + "iso_region": "SN-FK", + "municipality": "Djilor", + "scheduled_service": "no" + }, + { + "id": "340303", + "ident": "SN-0004", + "type": "small_airport", + "name": "Saly-Joseph Aerodrome", + "latitude_deg": "14.4646", + "longitude_deg": "-17.0136", + "continent": "AF", + "iso_country": "SN", + "iso_region": "SN-TH", + "municipality": "Saly", + "scheduled_service": "no" + }, + { + "id": "24580", + "ident": "SN00", + "type": "small_airport", + "name": "J Roesner Airport", + "latitude_deg": "38.846900939941406", + "longitude_deg": "-97.55030059814453", + "elevation_ft": "1211", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Salina", + "scheduled_service": "no", + "gps_code": "SN00", + "local_code": "SN00" + }, + { + "id": "24581", + "ident": "SN01", + "type": "heliport", + "name": "Dwight Eisenhower Va Medical Center Heliport", + "latitude_deg": "39.282798767089844", + "longitude_deg": "-94.88800048828125", + "elevation_ft": "897", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Leavenworth", + "scheduled_service": "no", + "gps_code": "SN01", + "local_code": "SN01" + }, + { + "id": "24582", + "ident": "SN02", + "type": "small_airport", + "name": "Wright International Airport", + "latitude_deg": "39.40829849243164", + "longitude_deg": "-102.02100372314453", + "elevation_ft": "3883", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Kanorado", + "scheduled_service": "no", + "gps_code": "SN02", + "local_code": "SN02" + }, + { + "id": "24583", + "ident": "SN03", + "type": "small_airport", + "name": "Lenora Municipal Airport", + "latitude_deg": "39.629398345947266", + "longitude_deg": "-100.01499938964844", + "elevation_ft": "2373", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Lenora", + "scheduled_service": "no", + "gps_code": "SN03", + "local_code": "SN03" + }, + { + "id": "24584", + "ident": "SN04", + "type": "small_airport", + "name": "Roberts Memorial Airport", + "latitude_deg": "38.423099517822266", + "longitude_deg": "-96.37190246582031", + "elevation_ft": "1185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Emporia", + "scheduled_service": "no", + "gps_code": "SN04", + "local_code": "SN04" + }, + { + "id": "24585", + "ident": "SN05", + "type": "small_airport", + "name": "Halstead Airport", + "latitude_deg": "38.03139877319336", + "longitude_deg": "-97.50920104980469", + "elevation_ft": "1412", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Halstead", + "scheduled_service": "no", + "gps_code": "SN05", + "local_code": "SN05" + }, + { + "id": "24586", + "ident": "SN07", + "type": "small_airport", + "name": "Beaumont Hotel Airport", + "latitude_deg": "37.659198760986", + "longitude_deg": "-96.527198791504", + "elevation_ft": "1617", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Beaumont", + "scheduled_service": "no", + "gps_code": "07S", + "local_code": "07S", + "keywords": "SN07" + }, + { + "id": "24587", + "ident": "SN08", + "type": "small_airport", + "name": "Fisher Airport", + "latitude_deg": "37.99169921875", + "longitude_deg": "-97.65640258789062", + "elevation_ft": "1430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Burrton", + "scheduled_service": "no", + "gps_code": "SN08", + "local_code": "SN08" + }, + { + "id": "24588", + "ident": "SN09", + "type": "small_airport", + "name": "Solomon Valley Airpark", + "latitude_deg": "39.11389923095703", + "longitude_deg": "-97.68309783935547", + "elevation_ft": "1205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Minneapolis", + "scheduled_service": "no", + "gps_code": "SN09", + "local_code": "SN09" + }, + { + "id": "24589", + "ident": "SN10", + "type": "small_airport", + "name": "Belle Plaine Farms Airport", + "latitude_deg": "37.39580154418945", + "longitude_deg": "-97.20999908447266", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Belle Plaine", + "scheduled_service": "no", + "gps_code": "SN10", + "local_code": "SN10" + }, + { + "id": "24590", + "ident": "SN11", + "type": "heliport", + "name": "Caney Municipal Hospital Helicopter Pad Heliport", + "latitude_deg": "37.006500244140625", + "longitude_deg": "-95.93160247802734", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Caney", + "scheduled_service": "no", + "gps_code": "SN11", + "local_code": "SN11" + }, + { + "id": "24591", + "ident": "SN12", + "type": "small_airport", + "name": "Jenkinson Airport", + "latitude_deg": "37.36389923095703", + "longitude_deg": "-100.47100067138672", + "elevation_ft": "2737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Meade", + "scheduled_service": "no", + "gps_code": "SN12", + "local_code": "SN12" + }, + { + "id": "24592", + "ident": "SN13", + "type": "small_airport", + "name": "Albers Airport", + "latitude_deg": "37.65829849243164", + "longitude_deg": "-97.77449798583984", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Cheney", + "scheduled_service": "no", + "gps_code": "SN13", + "local_code": "SN13" + }, + { + "id": "24593", + "ident": "SN14", + "type": "closed", + "name": "Schoolcraft Airport", + "latitude_deg": "38.416698", + "longitude_deg": "-95.516899", + "elevation_ft": "1165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Agricola", + "scheduled_service": "no", + "keywords": "SN14" + }, + { + "id": "24594", + "ident": "SN16", + "type": "small_airport", + "name": "Curtis Airport", + "latitude_deg": "37.85639953613281", + "longitude_deg": "-97.2697982788086", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Kechi", + "scheduled_service": "no", + "gps_code": "SN16", + "local_code": "SN16" + }, + { + "id": "24595", + "ident": "SN17", + "type": "closed", + "name": "Shupe Airport", + "latitude_deg": "37.071999", + "longitude_deg": "-99.605103", + "elevation_ft": "1769", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Ashland", + "scheduled_service": "no", + "keywords": "SN17" + }, + { + "id": "24596", + "ident": "SN18", + "type": "small_airport", + "name": "Sills Air Park", + "latitude_deg": "37.66669845581055", + "longitude_deg": "-97.01699829101562", + "elevation_ft": "1295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Augusta", + "scheduled_service": "no", + "gps_code": "SN18", + "local_code": "SN18" + }, + { + "id": "24597", + "ident": "SN19", + "type": "closed", + "name": "Flying H Ranch Airport", + "latitude_deg": "37.625", + "longitude_deg": "-97.096199", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Augusta", + "scheduled_service": "no", + "keywords": "SN19" + }, + { + "id": "24598", + "ident": "SN20", + "type": "small_airport", + "name": "Brady-Pippin Airport", + "latitude_deg": "37.71950149536133", + "longitude_deg": "-97.04889678955078", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Augusta", + "scheduled_service": "no", + "gps_code": "SN20", + "local_code": "SN20" + }, + { + "id": "24599", + "ident": "SN21", + "type": "small_airport", + "name": "Flory /Private/ Airport", + "latitude_deg": "38.8227996826", + "longitude_deg": "-95.2878036499", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Baldwin City", + "scheduled_service": "no", + "gps_code": "SN21", + "local_code": "SN21" + }, + { + "id": "24600", + "ident": "SN22", + "type": "small_airport", + "name": "Hoelting Airport", + "latitude_deg": "39.11220169067383", + "longitude_deg": "-94.95610046386719", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Basehor", + "scheduled_service": "no", + "gps_code": "SN22", + "local_code": "SN22" + }, + { + "id": "24601", + "ident": "SN23", + "type": "closed", + "name": "Overmiller Airport", + "latitude_deg": "39.911999", + "longitude_deg": "-98.665604", + "elevation_ft": "2010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Smith Center", + "scheduled_service": "no", + "keywords": "SN23" + }, + { + "id": "24602", + "ident": "SN25", + "type": "closed", + "name": "Lucas Airport", + "latitude_deg": "37.418598", + "longitude_deg": "-101.557999", + "elevation_ft": "3172", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Big Bow", + "scheduled_service": "no", + "keywords": "SN25" + }, + { + "id": "24603", + "ident": "SN26", + "type": "closed", + "name": "Horttor Airport", + "latitude_deg": "38.177799", + "longitude_deg": "-95.002998", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Blue Mound", + "scheduled_service": "no", + "keywords": "SN26" + }, + { + "id": "24604", + "ident": "SN27", + "type": "closed", + "name": "Bovinair Airport", + "latitude_deg": "39.0625", + "longitude_deg": "-94.9447", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Bonner Springs", + "scheduled_service": "no", + "keywords": "SN27" + }, + { + "id": "24605", + "ident": "SN28", + "type": "small_airport", + "name": "Belcher Airport", + "latitude_deg": "38.86859894", + "longitude_deg": "-97.93779755", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Brookville", + "scheduled_service": "no", + "gps_code": "SN28", + "local_code": "SN28" + }, + { + "id": "24606", + "ident": "SN29", + "type": "small_airport", + "name": "Rucker Airport", + "latitude_deg": "38.1875", + "longitude_deg": "-99.533997", + "elevation_ft": "2151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Burdett", + "scheduled_service": "no", + "gps_code": "SN29", + "local_code": "SN29", + "keywords": "Rucker Burdett Airport" + }, + { + "id": "24607", + "ident": "SN30", + "type": "heliport", + "name": "Marysville Mediport Heliport", + "latitude_deg": "39.847801208496094", + "longitude_deg": "-96.63500213623047", + "elevation_ft": "1283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Marysville", + "scheduled_service": "no", + "gps_code": "SN30", + "local_code": "SN30" + }, + { + "id": "24608", + "ident": "SN31", + "type": "heliport", + "name": "William Newton Memorial Hospital Heliport", + "latitude_deg": "37.245201110839844", + "longitude_deg": "-96.98200225830078", + "elevation_ft": "1156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Winfield", + "scheduled_service": "no", + "gps_code": "SN31", + "local_code": "SN31" + }, + { + "id": "24609", + "ident": "SN32", + "type": "small_airport", + "name": "Rands Airport", + "latitude_deg": "37.42639923095703", + "longitude_deg": "-97.26950073242188", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Belle Plaine", + "scheduled_service": "no", + "gps_code": "SN32", + "local_code": "SN32" + }, + { + "id": "24610", + "ident": "SN33", + "type": "small_airport", + "name": "Callaway Airpark", + "latitude_deg": "39.43330001831055", + "longitude_deg": "-97.12110137939453", + "elevation_ft": "1275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Clay Center", + "scheduled_service": "no", + "gps_code": "SN33", + "local_code": "SN33" + }, + { + "id": "24611", + "ident": "SN34", + "type": "small_airport", + "name": "Rucker Airport", + "latitude_deg": "37.57500076293945", + "longitude_deg": "-97.49199676513672", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Clearwater", + "scheduled_service": "no", + "gps_code": "SN34", + "local_code": "SN34" + }, + { + "id": "24612", + "ident": "SN35", + "type": "heliport", + "name": "Menorah Medical Park Heliport", + "latitude_deg": "38.91059875488281", + "longitude_deg": "-94.65019989013672", + "elevation_ft": "907", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Overland Park", + "scheduled_service": "no", + "gps_code": "SN35", + "local_code": "SN35" + }, + { + "id": "24613", + "ident": "SN36", + "type": "small_airport", + "name": "Wamsley Field", + "latitude_deg": "37.42639923095703", + "longitude_deg": "-97.63780212402344", + "elevation_ft": "1335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Conway Springs", + "scheduled_service": "no", + "gps_code": "SN36", + "local_code": "SN36" + }, + { + "id": "24614", + "ident": "SN37", + "type": "small_airport", + "name": "Harold K. Wells Airport", + "latitude_deg": "38.387001037597656", + "longitude_deg": "-96.72969818115234", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Elmdale", + "scheduled_service": "no", + "gps_code": "SN37", + "local_code": "SN37" + }, + { + "id": "24615", + "ident": "SN38", + "type": "heliport", + "name": "Lawrence Memorial Hospital Heliport", + "latitude_deg": "38.97999954223633", + "longitude_deg": "-95.2489013671875", + "elevation_ft": "858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Lawrence", + "scheduled_service": "no", + "gps_code": "SN38", + "local_code": "SN38" + }, + { + "id": "24616", + "ident": "SN39", + "type": "closed", + "name": "Baldock Farm Airport", + "latitude_deg": "39.25", + "longitude_deg": "-97.650299", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Delphos", + "scheduled_service": "no", + "keywords": "SN39" + }, + { + "id": "24617", + "ident": "SN40", + "type": "small_airport", + "name": "Olson Aerodrome", + "latitude_deg": "37.52360153198242", + "longitude_deg": "-97.19840240478516", + "elevation_ft": "1325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Derby", + "scheduled_service": "no", + "gps_code": "SN40", + "local_code": "SN40" + }, + { + "id": "24618", + "ident": "SN41", + "type": "small_airport", + "name": "Ziggy Carline Airport", + "latitude_deg": "37.50419998168945", + "longitude_deg": "-94.82669830322266", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Girard", + "scheduled_service": "no", + "gps_code": "SN41", + "local_code": "SN41" + }, + { + "id": "24619", + "ident": "SN42", + "type": "small_airport", + "name": "Harrod Airport", + "latitude_deg": "38.5614013671875", + "longitude_deg": "-95.20819854736328", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Ottawa", + "scheduled_service": "no", + "gps_code": "SN42", + "local_code": "SN42" + }, + { + "id": "24620", + "ident": "SN43", + "type": "small_airport", + "name": "Strafuss Airport", + "latitude_deg": "39.50419998168945", + "longitude_deg": "-95.47109985351562", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Effingham", + "scheduled_service": "no", + "gps_code": "SN43", + "local_code": "SN43" + }, + { + "id": "24621", + "ident": "SN44", + "type": "small_airport", + "name": "Bob Faler Airport", + "latitude_deg": "37.30009841918945", + "longitude_deg": "-95.90029907226562", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Elk City", + "scheduled_service": "no", + "gps_code": "SN44", + "local_code": "SN44" + }, + { + "id": "24622", + "ident": "SN45", + "type": "small_airport", + "name": "Michael's Airport", + "latitude_deg": "38.83140182495117", + "longitude_deg": "-95.26640319824219", + "elevation_ft": "1105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Lawrence", + "scheduled_service": "no", + "gps_code": "SN45", + "local_code": "SN45" + }, + { + "id": "24623", + "ident": "SN46", + "type": "small_airport", + "name": "Taylor Airport", + "latitude_deg": "37.87189865112305", + "longitude_deg": "-97.07219696044922", + "elevation_ft": "1340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Benton", + "scheduled_service": "no", + "gps_code": "SN46", + "local_code": "SN46" + }, + { + "id": "24624", + "ident": "SN47", + "type": "small_airport", + "name": "Converse Farm Airport", + "latitude_deg": "38.766700744628906", + "longitude_deg": "-96.1072006225586", + "elevation_ft": "1231", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Eskridge", + "scheduled_service": "no", + "gps_code": "SN47", + "local_code": "SN47" + }, + { + "id": "24625", + "ident": "SN48", + "type": "small_airport", + "name": "Moore Field", + "latitude_deg": "37.788299560546875", + "longitude_deg": "-98.84980010986328", + "elevation_ft": "1992", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Byers", + "scheduled_service": "no", + "gps_code": "SN48", + "local_code": "SN48" + }, + { + "id": "24626", + "ident": "SN49", + "type": "small_airport", + "name": "Mc Collough Airfield", + "latitude_deg": "39.685298919699996", + "longitude_deg": "-97.9711990356", + "elevation_ft": "1465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Randall", + "scheduled_service": "no", + "gps_code": "SN49", + "local_code": "SN49" + }, + { + "id": "24627", + "ident": "SN50", + "type": "heliport", + "name": "Mt Carmel Medical Center Heliport", + "latitude_deg": "37.38029861450195", + "longitude_deg": "-94.6852035522461", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Pittsburg", + "scheduled_service": "no", + "gps_code": "SN50", + "local_code": "SN50" + }, + { + "id": "24628", + "ident": "SN51", + "type": "closed", + "name": "Meitl Airport", + "latitude_deg": "39.589699", + "longitude_deg": "-100.428001", + "elevation_ft": "2725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Dresden", + "scheduled_service": "no", + "keywords": "SN51" + }, + { + "id": "24629", + "ident": "SN52", + "type": "small_airport", + "name": "Pilot Pointe Estates Airport", + "latitude_deg": "37.48139954", + "longitude_deg": "-97.01200104", + "elevation_ft": "1237", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Douglass", + "scheduled_service": "no", + "gps_code": "SN52", + "local_code": "SN52" + }, + { + "id": "24630", + "ident": "SN53", + "type": "small_airport", + "name": "Bonner Field", + "latitude_deg": "37.43339920043945", + "longitude_deg": "-95.91690063476562", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Fredonia", + "scheduled_service": "no", + "gps_code": "SN53", + "local_code": "SN53" + }, + { + "id": "24631", + "ident": "SN54", + "type": "heliport", + "name": "Overland Park Regional Medical Center Heliport", + "latitude_deg": "38.936905", + "longitude_deg": "-94.725906", + "elevation_ft": "961", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Overland Park", + "scheduled_service": "no", + "gps_code": "SN54", + "local_code": "SN54" + }, + { + "id": "24632", + "ident": "SN55", + "type": "small_airport", + "name": "R J C Farms Inc Airport", + "latitude_deg": "38.215301513671875", + "longitude_deg": "-101.00299835205078", + "elevation_ft": "2900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Friend", + "scheduled_service": "no", + "gps_code": "SN55", + "local_code": "SN55" + }, + { + "id": "24633", + "ident": "SN56", + "type": "closed", + "name": "Mercy Hospital Heliport", + "latitude_deg": "37.805511", + "longitude_deg": "-94.711365", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Fort Scott", + "scheduled_service": "no", + "keywords": "SN56" + }, + { + "id": "24634", + "ident": "SN57", + "type": "small_airport", + "name": "Witham Airport", + "latitude_deg": "38.69860076904297", + "longitude_deg": "-95.30030059814453", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Ottawa", + "scheduled_service": "no", + "gps_code": "SN57", + "local_code": "SN57" + }, + { + "id": "24635", + "ident": "SN58", + "type": "small_airport", + "name": "Foster Field", + "latitude_deg": "37.869998931884766", + "longitude_deg": "-96.64669799804688", + "elevation_ft": "1440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "El Dorado", + "scheduled_service": "no", + "gps_code": "SN58", + "local_code": "SN58" + }, + { + "id": "24636", + "ident": "SN59", + "type": "small_airport", + "name": "Hermon Farm Airport", + "latitude_deg": "38.85279846191406", + "longitude_deg": "-94.91000366210938", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Gardner", + "scheduled_service": "no", + "gps_code": "SN59", + "local_code": "SN59" + }, + { + "id": "24637", + "ident": "SN60", + "type": "heliport", + "name": "Lcf Heliport", + "latitude_deg": "39.25", + "longitude_deg": "-94.90019989013672", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Lansing", + "scheduled_service": "no", + "gps_code": "SN60", + "local_code": "SN60" + }, + { + "id": "24638", + "ident": "SN61", + "type": "small_airport", + "name": "Yoder Airpark", + "latitude_deg": "37.659698486328125", + "longitude_deg": "-97.62950134277344", + "elevation_ft": "1475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Goddard", + "scheduled_service": "no", + "gps_code": "SN61", + "local_code": "SN61" + }, + { + "id": "24639", + "ident": "SN62", + "type": "small_airport", + "name": "Roberts Field", + "latitude_deg": "37.87419891357422", + "longitude_deg": "-97.51249694824219", + "elevation_ft": "1384", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Bentley", + "scheduled_service": "no", + "gps_code": "SN62", + "local_code": "SN62" + }, + { + "id": "24640", + "ident": "SN63", + "type": "small_airport", + "name": "Gail Ballard Airport", + "latitude_deg": "37.6083984375", + "longitude_deg": "-99.1156997680664", + "elevation_ft": "2165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Haviland", + "scheduled_service": "no", + "gps_code": "SN63", + "local_code": "SN63" + }, + { + "id": "24641", + "ident": "SN64", + "type": "small_airport", + "name": "Eck Field", + "latitude_deg": "37.69580078125", + "longitude_deg": "-97.53919982910156", + "elevation_ft": "1330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Goddard", + "scheduled_service": "no", + "gps_code": "SN64", + "local_code": "SN64" + }, + { + "id": "24642", + "ident": "SN65", + "type": "small_airport", + "name": "Lake Waltanna Airport", + "latitude_deg": "37.59170150756836", + "longitude_deg": "-97.61699676513672", + "elevation_ft": "1440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Goddard", + "scheduled_service": "no", + "gps_code": "SN65", + "local_code": "SN65" + }, + { + "id": "24643", + "ident": "SN66", + "type": "closed", + "name": "Beesley Farms Airport", + "latitude_deg": "38.817476", + "longitude_deg": "-100.455337", + "elevation_ft": "2635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Gove City", + "scheduled_service": "no", + "keywords": "SN66" + }, + { + "id": "24644", + "ident": "SN67", + "type": "small_airport", + "name": "Button Airport", + "latitude_deg": "38.38330078125", + "longitude_deg": "-98.75039672851562", + "elevation_ft": "1845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Great Bend", + "scheduled_service": "no", + "gps_code": "SN67", + "local_code": "SN67" + }, + { + "id": "24645", + "ident": "SN68", + "type": "small_airport", + "name": "Lil Bird Airport", + "latitude_deg": "37.87919998168945", + "longitude_deg": "-97.310302734375", + "elevation_ft": "1456", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Valley Center", + "scheduled_service": "no", + "gps_code": "SN68", + "local_code": "SN68" + }, + { + "id": "24646", + "ident": "SN69", + "type": "small_airport", + "name": "Emmerson Airport", + "latitude_deg": "37.931400299072266", + "longitude_deg": "-94.6427001953125", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Hammond", + "scheduled_service": "no", + "gps_code": "SN69", + "local_code": "SN69" + }, + { + "id": "24647", + "ident": "SN70", + "type": "small_airport", + "name": "Kaypod Airport", + "latitude_deg": "37.251399993896484", + "longitude_deg": "-97.95449829101562", + "elevation_ft": "1379", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Harper", + "scheduled_service": "no", + "gps_code": "SN70", + "local_code": "SN70" + }, + { + "id": "24648", + "ident": "SN71", + "type": "closed", + "name": "Bob Park Airport", + "latitude_deg": "37.302799", + "longitude_deg": "-97.964203", + "elevation_ft": "1396", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Harper", + "scheduled_service": "no", + "keywords": "SN71" + }, + { + "id": "24649", + "ident": "SN72", + "type": "small_airport", + "name": "Graham Farms Airport", + "latitude_deg": "38.299031", + "longitude_deg": "-95.440807", + "elevation_ft": "985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Harris", + "scheduled_service": "no", + "gps_code": "SN72", + "local_code": "SN72" + }, + { + "id": "24650", + "ident": "SN73", + "type": "heliport", + "name": "Salina Regional Health Center Heliport", + "latitude_deg": "38.83110046386719", + "longitude_deg": "-97.61090087890625", + "elevation_ft": "1228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Salina", + "scheduled_service": "no", + "gps_code": "SN73", + "local_code": "SN73" + }, + { + "id": "24651", + "ident": "SN74", + "type": "heliport", + "name": "Hays Medical Center Heliport", + "latitude_deg": "38.88029861450195", + "longitude_deg": "-99.29900360107422", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Hays", + "scheduled_service": "no", + "gps_code": "SN74", + "local_code": "SN74" + }, + { + "id": "24652", + "ident": "SN75", + "type": "small_airport", + "name": "Sommers Airport", + "latitude_deg": "39.86669921875", + "longitude_deg": "-95.33360290527344", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Highland", + "scheduled_service": "no", + "gps_code": "SN75", + "local_code": "SN75" + }, + { + "id": "24653", + "ident": "SN76", + "type": "small_airport", + "name": "Sunflower Aerodrome", + "latitude_deg": "37.926399231", + "longitude_deg": "-97.9061965942", + "elevation_ft": "1582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Hutchinson", + "scheduled_service": "no", + "gps_code": "SN76", + "local_code": "SN76", + "keywords": "Glider, NAS Hutchinson" + }, + { + "id": "24654", + "ident": "SN77", + "type": "closed", + "name": "Johns Airport", + "latitude_deg": "37.400002", + "longitude_deg": "-101.766998", + "elevation_ft": "3390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Johnson", + "scheduled_service": "no", + "keywords": "SN77" + }, + { + "id": "24655", + "ident": "SN78", + "type": "small_airport", + "name": "Albright Airport", + "latitude_deg": "38.69810104370117", + "longitude_deg": "-94.71880340576172", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Bucyrus", + "scheduled_service": "no", + "gps_code": "SN78", + "local_code": "SN78" + }, + { + "id": "24656", + "ident": "SN79", + "type": "heliport", + "name": "Municipal Office Building Heliport", + "latitude_deg": "39.11309814", + "longitude_deg": "-94.62609863", + "elevation_ft": "1026", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Kansas City", + "scheduled_service": "no", + "gps_code": "SN79", + "local_code": "SN79" + }, + { + "id": "24657", + "ident": "SN80", + "type": "heliport", + "name": "Girard Medical Center Heliport", + "latitude_deg": "37.515524", + "longitude_deg": "-94.857835", + "elevation_ft": "995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Girard", + "scheduled_service": "no", + "gps_code": "SN80", + "local_code": "SN80", + "keywords": "Girard District Hospital Heliport" + }, + { + "id": "24658", + "ident": "SN81", + "type": "small_airport", + "name": "Hancock Airport", + "latitude_deg": "39.18190002441406", + "longitude_deg": "-94.87000274658203", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Piper", + "scheduled_service": "no", + "gps_code": "SN81", + "local_code": "SN81" + }, + { + "id": "24659", + "ident": "SN83", + "type": "small_airport", + "name": "Highcrest Air Park", + "latitude_deg": "39.22719955444336", + "longitude_deg": "-94.95140075683594", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Lansing", + "scheduled_service": "no", + "gps_code": "SN83", + "local_code": "SN83" + }, + { + "id": "24660", + "ident": "SN84", + "type": "small_airport", + "name": "Blaser's Airport", + "latitude_deg": "39.27080154418945", + "longitude_deg": "-94.98770141601562", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Leavenworth", + "scheduled_service": "no", + "gps_code": "SN84", + "local_code": "SN84" + }, + { + "id": "24661", + "ident": "SN85", + "type": "small_airport", + "name": "Fox Fire Airport", + "latitude_deg": "38.73360061645508", + "longitude_deg": "-95.10220336914062", + "elevation_ft": "1058", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wellsville", + "scheduled_service": "no", + "gps_code": "SN85", + "local_code": "SN85" + }, + { + "id": "24662", + "ident": "SN86", + "type": "closed", + "name": "Arrow B Ranch Airport", + "latitude_deg": "38.704201", + "longitude_deg": "-101.420998", + "elevation_ft": "3430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Leoti", + "scheduled_service": "no", + "keywords": "SN86" + }, + { + "id": "24663", + "ident": "SN87", + "type": "small_airport", + "name": "Supreme Feeders Airport", + "latitude_deg": "37.2599983215332", + "longitude_deg": "-100.90699768066406", + "elevation_ft": "2830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Liberal", + "scheduled_service": "no", + "gps_code": "SN87", + "local_code": "SN87" + }, + { + "id": "24664", + "ident": "SN88", + "type": "small_airport", + "name": "Crosswind Airfield", + "latitude_deg": "38.5713996887207", + "longitude_deg": "-94.71269989013672", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Louisburg", + "scheduled_service": "no", + "gps_code": "SN88", + "local_code": "SN88" + }, + { + "id": "24665", + "ident": "SN89", + "type": "small_airport", + "name": "Somerset Airport", + "latitude_deg": "38.53779983520508", + "longitude_deg": "-94.72689819335938", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Louisburg", + "scheduled_service": "no", + "gps_code": "SN89", + "local_code": "SN89" + }, + { + "id": "24666", + "ident": "SN90", + "type": "small_airport", + "name": "Eibes Airfield", + "latitude_deg": "39.226959", + "longitude_deg": "-95.192231", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Mc Louth", + "scheduled_service": "no", + "gps_code": "SN90", + "local_code": "SN90", + "keywords": "D'Field Airport" + }, + { + "id": "24667", + "ident": "SN91", + "type": "small_airport", + "name": "Godfrey Airport", + "latitude_deg": "38.10969924926758", + "longitude_deg": "-96.1156005859375", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "SN91", + "local_code": "SN91" + }, + { + "id": "24668", + "ident": "SN92", + "type": "small_airport", + "name": "Sunshine Ranch Airport", + "latitude_deg": "39.33330154418945", + "longitude_deg": "-96.70030212402344", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Manhattan", + "scheduled_service": "no", + "gps_code": "SN92", + "local_code": "SN92" + }, + { + "id": "24669", + "ident": "SN93", + "type": "small_airport", + "name": "Dickson /Private/ Airport", + "latitude_deg": "38.6458015442", + "longitude_deg": "-95.9891967773", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Miller", + "scheduled_service": "no", + "gps_code": "SN93", + "local_code": "SN93" + }, + { + "id": "24670", + "ident": "SN94", + "type": "small_airport", + "name": "Amy Airport", + "latitude_deg": "37.46670150756836", + "longitude_deg": "-100", + "elevation_ft": "2560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Minneola", + "scheduled_service": "no", + "gps_code": "SN94", + "local_code": "SN94" + }, + { + "id": "24671", + "ident": "SN95", + "type": "small_airport", + "name": "Roberts Air Field", + "latitude_deg": "37.977500915527344", + "longitude_deg": "-98.4041976928711", + "elevation_ft": "1765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Sylvia", + "scheduled_service": "no", + "gps_code": "SN95", + "local_code": "SN95" + }, + { + "id": "24672", + "ident": "SN97", + "type": "small_airport", + "name": "Brollier Airport", + "latitude_deg": "37.32640075683594", + "longitude_deg": "-101.197998046875", + "elevation_ft": "3056", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "SN97", + "local_code": "SN97" + }, + { + "id": "24673", + "ident": "SN98", + "type": "small_airport", + "name": "Anton Flying Uv Airport", + "latitude_deg": "37.420799255371094", + "longitude_deg": "-100.94200134277344", + "elevation_ft": "2954", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Satanta", + "scheduled_service": "no", + "gps_code": "SN98", + "local_code": "SN98" + }, + { + "id": "24674", + "ident": "SN99", + "type": "small_airport", + "name": "Laflin Ranch Airport", + "latitude_deg": "39.400001525878906", + "longitude_deg": "-96.61699676513672", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Olsburg", + "scheduled_service": "no", + "gps_code": "SN99", + "local_code": "SN99" + }, + { + "id": "323615", + "ident": "SNAA", + "type": "small_airport", + "name": "Fazenda da Barra Airport", + "latitude_deg": "-19.097706", + "longitude_deg": "-51.716482", + "elevation_ft": "1542", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Aporé", + "scheduled_service": "no", + "local_code": "GO0093", + "keywords": "SNAA" + }, + { + "id": "265", + "ident": "SNAB", + "type": "small_airport", + "name": "Araripina Airport", + "latitude_deg": "-7.586417", + "longitude_deg": "-40.535431", + "elevation_ft": "2428", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Araripina", + "scheduled_service": "no", + "gps_code": "SNAB", + "iata_code": "JAW", + "local_code": "PE0009", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Araripina" + }, + { + "id": "266", + "ident": "SNAC", + "type": "small_airport", + "name": "Fazenda Santa Rosa Airport", + "latitude_deg": "-7.036670207977295", + "longitude_deg": "-50.08890151977539", + "elevation_ft": "699", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Xinguara", + "scheduled_service": "no", + "gps_code": "SNAC", + "local_code": "SNAC" + }, + { + "id": "37030", + "ident": "SNAD", + "type": "small_airport", + "name": "Fazenda Águia Branca Airport", + "latitude_deg": "-3.3277781009674072", + "longitude_deg": "-46.779720306396484", + "elevation_ft": "410", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Gurupi", + "scheduled_service": "no", + "gps_code": "SNAD" + }, + { + "id": "267", + "ident": "SNAE", + "type": "small_airport", + "name": "Arcoverde Airport", + "latitude_deg": "-8.407879829406738", + "longitude_deg": "-37.088199615478516", + "elevation_ft": "2080", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Arcoverde", + "scheduled_service": "no", + "gps_code": "SNAE", + "local_code": "SNAE" + }, + { + "id": "37031", + "ident": "SNAF", + "type": "small_airport", + "name": "Fazenda Água Comprida Airport", + "latitude_deg": "-19.946943283081055", + "longitude_deg": "-48.03361129760742", + "elevation_ft": "2211", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Água Comprida", + "scheduled_service": "no", + "gps_code": "SNAF" + }, + { + "id": "268", + "ident": "SNAG", + "type": "small_airport", + "name": "Araguari Airport", + "latitude_deg": "-18.668301", + "longitude_deg": "-48.190498", + "elevation_ft": "3107", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Araguari", + "scheduled_service": "no", + "gps_code": "SNAG", + "local_code": "SNAG" + }, + { + "id": "269", + "ident": "SNAH", + "type": "small_airport", + "name": "Araguari AirportAdustina Airport", + "latitude_deg": "-10.5809", + "longitude_deg": "-38.088799", + "elevation_ft": "892", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Adustina", + "scheduled_service": "no", + "gps_code": "SNAH", + "local_code": "SNAH" + }, + { + "id": "37032", + "ident": "SNAI", + "type": "small_airport", + "name": "Alto Parnaíba Airport", + "latitude_deg": "-9.083610534667969", + "longitude_deg": "-45.950557708740234", + "elevation_ft": "968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Alto Parnaíba", + "scheduled_service": "no", + "gps_code": "SNAI", + "iata_code": "APY" + }, + { + "id": "37033", + "ident": "SNAJ", + "type": "small_airport", + "name": "Fazenda Jaguaré Airport", + "latitude_deg": "-3.421667099", + "longitude_deg": "-48.3355560303", + "elevation_ft": "436", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Paragominas", + "scheduled_service": "no", + "gps_code": "SNAJ" + }, + { + "id": "37034", + "ident": "SNAK", + "type": "heliport", + "name": "Carajás Heliport", + "latitude_deg": "-6.081666946411133", + "longitude_deg": "-50.073333740234375", + "elevation_ft": "2106", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Parauapebas", + "scheduled_service": "no", + "gps_code": "SNAK" + }, + { + "id": "270", + "ident": "SNAL", + "type": "small_airport", + "name": "Arapiraca Airport", + "latitude_deg": "-9.775360107421875", + "longitude_deg": "-36.62919998168945", + "elevation_ft": "886", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Arapiraca", + "scheduled_service": "no", + "gps_code": "SNAL", + "iata_code": "APQ", + "local_code": "SNAL" + }, + { + "id": "271", + "ident": "SNAM", + "type": "small_airport", + "name": "Santo Antônio do Amparo Airport", + "latitude_deg": "-20.9135", + "longitude_deg": "-44.892899", + "elevation_ft": "3601", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Santo Antônio Do Amparo", + "scheduled_service": "no", + "gps_code": "SNAM", + "local_code": "SNAM" + }, + { + "id": "328891", + "ident": "SNAN", + "type": "small_airport", + "name": "Empresa Agrícola Chiapeta Airport", + "latitude_deg": "-28.066935", + "longitude_deg": "-53.877971", + "elevation_ft": "1572", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Chiapeta", + "scheduled_service": "no", + "gps_code": "SNAN", + "local_code": "SNAN" + }, + { + "id": "323614", + "ident": "SNAO", + "type": "small_airport", + "name": "Trimonte Jorge Mussi Airport", + "latitude_deg": "-22.512645", + "longitude_deg": "-42.051559", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Casimiro de Abreu", + "scheduled_service": "no", + "gps_code": "SNAO" + }, + { + "id": "272", + "ident": "SNAP", + "type": "small_airport", + "name": "Janaúba Airport", + "latitude_deg": "-15.732", + "longitude_deg": "-43.323102", + "elevation_ft": "1732", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Janaúba", + "scheduled_service": "no", + "gps_code": "SNAP", + "local_code": "SNAP" + }, + { + "id": "45704", + "ident": "SNAQ", + "type": "heliport", + "name": "Elisa Heliport", + "latitude_deg": "-23.154166666699997", + "longitude_deg": "-46.77972222219999", + "elevation_ft": "2671", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jarinu", + "scheduled_service": "no", + "gps_code": "SNAQ" + }, + { + "id": "273", + "ident": "SNAR", + "type": "small_airport", + "name": "Cirilo Queiróz Airport", + "latitude_deg": "-16.18389", + "longitude_deg": "-40.66722", + "elevation_ft": "640", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Almenara", + "scheduled_service": "no", + "gps_code": "SNAR", + "iata_code": "AMJ", + "local_code": "SNAR" + }, + { + "id": "274", + "ident": "SNAS", + "type": "small_airport", + "name": "Três Marias Airport", + "latitude_deg": "-18.222400665283203", + "longitude_deg": "-45.18899917602539", + "elevation_ft": "2579", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Três Marias", + "scheduled_service": "no", + "gps_code": "SNAS", + "local_code": "SNAS" + }, + { + "id": "29663", + "ident": "SNAU", + "type": "small_airport", + "name": "Aeroclube de Sergipe Airport", + "latitude_deg": "-10.901452", + "longitude_deg": "-37.082921", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SE", + "municipality": "Aracaju", + "scheduled_service": "no", + "gps_code": "SISG", + "local_code": "SE0003", + "keywords": "SNAU" + }, + { + "id": "37035", + "ident": "SNAV", + "type": "small_airport", + "name": "Agrovale Airport", + "latitude_deg": "-9.50417", + "longitude_deg": "-40.36944", + "elevation_ft": "1289", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Juazeiro", + "scheduled_service": "no", + "gps_code": "SNAV" + }, + { + "id": "37036", + "ident": "SNAW", + "type": "small_airport", + "name": "Fazenda Boa Fé Airport", + "latitude_deg": "-19.886871", + "longitude_deg": "-47.675345", + "elevation_ft": "2461", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Conquista", + "scheduled_service": "no", + "keywords": "SNAW" + }, + { + "id": "45622", + "ident": "SNAX", + "type": "small_airport", + "name": "Marcelo Pires Halzhausen Airport", + "latitude_deg": "-22.64", + "longitude_deg": "-50.453056", + "elevation_ft": "1850", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Assis", + "scheduled_service": "no", + "gps_code": "SNAX", + "iata_code": "AIF", + "local_code": "SNAX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Assis_Airport", + "keywords": "SBAS, Assis Airport" + }, + { + "id": "37037", + "ident": "SNAY", + "type": "small_airport", + "name": "Fazenda Rio Lages Airport", + "latitude_deg": "-6.281110763549805", + "longitude_deg": "-51.74611282348633", + "elevation_ft": "853", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "São Félix Do Xingu", + "scheduled_service": "no", + "gps_code": "SNAY" + }, + { + "id": "276", + "ident": "SNAZ", + "type": "small_airport", + "name": "Amargosa Airport", + "latitude_deg": "-12.9936", + "longitude_deg": "-39.639902", + "elevation_ft": "1394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Amargosa", + "scheduled_service": "no", + "keywords": "SNAZ" + }, + { + "id": "37038", + "ident": "SNBB", + "type": "small_airport", + "name": "Fazenda Agronol Airport", + "latitude_deg": "-11.954774", + "longitude_deg": "-45.723528", + "elevation_ft": "2464", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Luís Eduardo Magalhães", + "scheduled_service": "no", + "gps_code": "SJVW", + "local_code": "BA0124", + "keywords": "SNBB" + }, + { + "id": "29687", + "ident": "SNBC", + "type": "small_airport", + "name": "Barra do Corda Airport", + "latitude_deg": "-5.5025", + "longitude_deg": "-45.215833", + "elevation_ft": "509", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Barra Do Corda", + "scheduled_service": "no", + "gps_code": "SNBC", + "iata_code": "BDC" + }, + { + "id": "277", + "ident": "SNBD", + "type": "small_airport", + "name": "Sobradinho Airport", + "latitude_deg": "-9.462010383605957", + "longitude_deg": "-40.82429885864258", + "elevation_ft": "1240", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Juazeiro", + "scheduled_service": "no", + "gps_code": "SNBD", + "local_code": "SNBD" + }, + { + "id": "46117", + "ident": "SNBE", + "type": "small_airport", + "name": "Fazenda Botuverá Airport", + "latitude_deg": "-14.470277", + "longitude_deg": "-53.667778", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Paranatinga", + "scheduled_service": "no", + "keywords": "SNBE" + }, + { + "id": "323613", + "ident": "SNBF", + "type": "small_airport", + "name": "Fazenda Vale Verde Airport", + "latitude_deg": "-13.355555", + "longitude_deg": "-52.752222", + "elevation_ft": "1325", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Canarana", + "scheduled_service": "no", + "gps_code": "SNBF" + }, + { + "id": "278", + "ident": "SNBG", + "type": "small_airport", + "name": "Baixo Guandu - Aimorés Airport", + "latitude_deg": "-19.499000549316406", + "longitude_deg": "-41.04180145263672", + "elevation_ft": "279", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Baixo Guandu", + "scheduled_service": "no", + "gps_code": "SNBG", + "local_code": "SNBG" + }, + { + "id": "37039", + "ident": "SNBH", + "type": "heliport", + "name": "Biocor Heliport", + "latitude_deg": "-19.981943130493164", + "longitude_deg": "-43.94472122192383", + "elevation_ft": "3907", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Nova Lima", + "scheduled_service": "no", + "gps_code": "SNBH" + }, + { + "id": "279", + "ident": "SNBI", + "type": "small_airport", + "name": "Bacabal Airport", + "latitude_deg": "-4.227709770202637", + "longitude_deg": "-44.81999969482422", + "elevation_ft": "64", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Bacabal", + "scheduled_service": "no", + "gps_code": "SNBI", + "local_code": "SNBI" + }, + { + "id": "280", + "ident": "SNBJ", + "type": "closed", + "name": "Belo Jardim Airport", + "latitude_deg": "-8.34527", + "longitude_deg": "-36.4412", + "elevation_ft": "2100", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Belo Jardim", + "scheduled_service": "no", + "local_code": "PE0011", + "wikipedia_link": "https://en.wikipedia.org/wiki/Belo_Jardim_Airport", + "keywords": "SNBJ" + }, + { + "id": "37040", + "ident": "SNBK", + "type": "closed", + "name": "Bocaíuva Airport", + "latitude_deg": "-17.1331", + "longitude_deg": "-43.815605", + "elevation_ft": "2395", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Bocaíuva", + "scheduled_service": "no", + "keywords": "SNBK" + }, + { + "id": "281", + "ident": "SNBL", + "type": "small_airport", + "name": "Belmonte Airport", + "latitude_deg": "-15.8717", + "longitude_deg": "-38.871899", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Belmonte", + "scheduled_service": "no", + "gps_code": "SD6P", + "iata_code": "BVM", + "local_code": "BA0041", + "keywords": "SNBL" + }, + { + "id": "282", + "ident": "SNBM", + "type": "small_airport", + "name": "Cristiano Ferreira Varella Airport", + "latitude_deg": "-21.126100540161133", + "longitude_deg": "-42.39440155029297", + "elevation_ft": "886", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Muriaé", + "scheduled_service": "no", + "gps_code": "SNBM", + "local_code": "SNBM" + }, + { + "id": "37041", + "ident": "SNBN", + "type": "small_airport", + "name": "Balbinot Airport", + "latitude_deg": "-2.875833034515381", + "longitude_deg": "-50.491668701171875", + "elevation_ft": "203", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Portel", + "scheduled_service": "no", + "gps_code": "SNBN" + }, + { + "id": "29718", + "ident": "SNBO", + "type": "small_airport", + "name": "Boquira Airport", + "latitude_deg": "-12.790599822998047", + "longitude_deg": "-42.72890090942383", + "elevation_ft": "1886", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Boquira", + "scheduled_service": "no", + "gps_code": "SNBO", + "iata_code": "0" + }, + { + "id": "323612", + "ident": "SNBP", + "type": "heliport", + "name": "Companhia Energetica Vale Do Sao Simao Heliport", + "latitude_deg": "-19.067351", + "longitude_deg": "-50.372972", + "elevation_ft": "1480", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Santa Vitória", + "scheduled_service": "no", + "gps_code": "SNBP" + }, + { + "id": "323611", + "ident": "SNBQ", + "type": "heliport", + "name": "Bela Cintra Heliport", + "latitude_deg": "-23.553977", + "longitude_deg": "-46.658533", + "elevation_ft": "2864", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SNBQ" + }, + { + "id": "283", + "ident": "SNBR", + "type": "small_airport", + "name": "Barreiras Airport", + "latitude_deg": "-12.078900337219238", + "longitude_deg": "-45.00899887084961", + "elevation_ft": "2447", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Barreiras", + "scheduled_service": "no", + "gps_code": "SNBR", + "iata_code": "BRA", + "local_code": "SNBR" + }, + { + "id": "284", + "ident": "SNBS", + "type": "small_airport", + "name": "Balsas Airport", + "latitude_deg": "-7.52603006362915", + "longitude_deg": "-46.05329895019531", + "elevation_ft": "930", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Balsas", + "scheduled_service": "no", + "gps_code": "SNBS", + "iata_code": "BSS", + "local_code": "SNBS" + }, + { + "id": "37042", + "ident": "SNBT", + "type": "small_airport", + "name": "Benedito Leite Airport", + "latitude_deg": "-7.216944217681885", + "longitude_deg": "-44.55055618286133", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Benedito Leite", + "scheduled_service": "no", + "gps_code": "SNBT" + }, + { + "id": "285", + "ident": "SNBU", + "type": "small_airport", + "name": "Sócrates Mariani Bittencourt Airport", + "latitude_deg": "-14.2554", + "longitude_deg": "-41.817501", + "elevation_ft": "1673", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Brumado", + "scheduled_service": "no", + "gps_code": "SSXH", + "iata_code": "BMS", + "local_code": "BA0168", + "wikipedia_link": "https://sv.wikipedia.org/wiki/Sócrates_Mariani_Bittencourt_Airport", + "keywords": "SNBU" + }, + { + "id": "286", + "ident": "SNBV", + "type": "small_airport", + "name": "Campo de Boi Airport", + "latitude_deg": "-2.5233099460601807", + "longitude_deg": "-47.517398834228516", + "elevation_ft": "186", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Ipixuna Do Pará", + "scheduled_service": "no", + "gps_code": "SNBV", + "local_code": "SNBV" + }, + { + "id": "37043", + "ident": "SNBW", + "type": "small_airport", + "name": "Baião Airport", + "latitude_deg": "-2.8002779483795166", + "longitude_deg": "-49.66722106933594", + "elevation_ft": "105", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Baião", + "scheduled_service": "no", + "gps_code": "SNBW" + }, + { + "id": "287", + "ident": "SNBX", + "type": "small_airport", + "name": "Barra Airport", + "latitude_deg": "-11.08080005645752", + "longitude_deg": "-43.147499084472656", + "elevation_ft": "1345", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Barra", + "scheduled_service": "no", + "gps_code": "SNBX", + "iata_code": "BQQ", + "local_code": "SNBX" + }, + { + "id": "288", + "ident": "SNBY", + "type": "small_airport", + "name": "Bambuí Airport", + "latitude_deg": "-20.036399841308594", + "longitude_deg": "-45.9723014831543", + "elevation_ft": "2523", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Bambuí", + "scheduled_service": "no", + "gps_code": "SNBY", + "local_code": "SNBY" + }, + { + "id": "133", + "ident": "SNBZ", + "type": "small_airport", + "name": "Paramirim Airport", + "latitude_deg": "-13.446110725402832", + "longitude_deg": "-42.249168395996094", + "elevation_ft": "1788", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Paramirim", + "scheduled_service": "no", + "gps_code": "SNBZ", + "local_code": "SB05" + }, + { + "id": "289", + "ident": "SNCA", + "type": "small_airport", + "name": "Campo Belo Airport", + "latitude_deg": "-20.89229965209961", + "longitude_deg": "-45.33509826660156", + "elevation_ft": "3182", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Campo Belo", + "scheduled_service": "no", + "gps_code": "SNCA", + "local_code": "SNCA" + }, + { + "id": "37044", + "ident": "SNCB", + "type": "small_airport", + "name": "Castanhal Airport", + "latitude_deg": "-2.523611068725586", + "longitude_deg": "-53.939720153808594", + "elevation_ft": "502", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Prainha", + "scheduled_service": "no", + "gps_code": "SNCB" + }, + { + "id": "37045", + "ident": "SNCC", + "type": "closed", + "name": "Calçoene Airport", + "latitude_deg": "2.497004", + "longitude_deg": "-50.963176", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Calçoene", + "scheduled_service": "no", + "keywords": "SNCC" + }, + { + "id": "37046", + "ident": "SNCD", + "type": "heliport", + "name": "Catuama Heliport", + "latitude_deg": "-7.690556049346924", + "longitude_deg": "-34.875831604003906", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Goiana", + "scheduled_service": "no", + "gps_code": "SNCD" + }, + { + "id": "29749", + "ident": "SNCE", + "type": "small_airport", + "name": "Campo do Meio Airport", + "latitude_deg": "-21.10610008239746", + "longitude_deg": "-45.8046989440918", + "elevation_ft": "2559", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Campo Do Meio", + "scheduled_service": "no", + "gps_code": "SNCE", + "iata_code": "0" + }, + { + "id": "37047", + "ident": "SNCF", + "type": "small_airport", + "name": "Continental Airport", + "latitude_deg": "-3.2952780723571777", + "longitude_deg": "-52.2591667175293", + "elevation_ft": "485", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Altamira", + "scheduled_service": "no", + "gps_code": "SNCF" + }, + { + "id": "37048", + "ident": "SNCG", + "type": "small_airport", + "name": "Campos Gerais Airport", + "latitude_deg": "-21.226110458374", + "longitude_deg": "-45.779167175293", + "elevation_ft": "2838", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Campos Gerais", + "scheduled_service": "no", + "gps_code": "SNCG" + }, + { + "id": "323609", + "ident": "SNCH", + "type": "heliport", + "name": "UTGCA Heliport", + "latitude_deg": "-23.657645", + "longitude_deg": "-45.49811", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Caraguatatuba", + "scheduled_service": "no", + "gps_code": "SNCH" + }, + { + "id": "290", + "ident": "SNCI", + "type": "small_airport", + "name": "Cibrasa Airport", + "latitude_deg": "-1.2309999465942383", + "longitude_deg": "-47.200599670410156", + "elevation_ft": "174", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Capanema", + "scheduled_service": "no", + "gps_code": "SNCI", + "local_code": "SNCI" + }, + { + "id": "37049", + "ident": "SNCJ", + "type": "small_airport", + "name": "Piquiatuba Airport", + "latitude_deg": "-2.543727", + "longitude_deg": "-54.711039", + "elevation_ft": "407", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santarém", + "scheduled_service": "no", + "gps_code": "SNCJ" + }, + { + "id": "37050", + "ident": "SNCL", + "type": "small_airport", + "name": "Lorenzo Airport", + "latitude_deg": "-13.389444351196289", + "longitude_deg": "-38.90999984741211", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Cairu", + "scheduled_service": "no", + "gps_code": "SNCL" + }, + { + "id": "37051", + "ident": "SNCM", + "type": "heliport", + "name": "Caponga Heliport", + "latitude_deg": "-4.02361106873", + "longitude_deg": "-38.2088890076", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Cascavel", + "scheduled_service": "no", + "gps_code": "SNCM" + }, + { + "id": "323607", + "ident": "SNCN", + "type": "heliport", + "name": "Parque Cidade Heliport", + "latitude_deg": "-15.795701", + "longitude_deg": "-47.893585", + "elevation_ft": "3855", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SNCN" + }, + { + "id": "334144", + "ident": "SNCO", + "type": "small_airport", + "name": "Agropecuária Santa Paola Airport", + "latitude_deg": "-23.516971", + "longitude_deg": "-55.063155", + "elevation_ft": "1204", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Tacuru", + "scheduled_service": "no", + "gps_code": "SNCO", + "local_code": "MS0202" + }, + { + "id": "340053", + "ident": "SNCP", + "type": "medium_airport", + "name": "Planalto Serrano Regional Airport", + "latitude_deg": "-27.634128", + "longitude_deg": "-50.358253", + "elevation_ft": "2887", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Correia Pinto", + "scheduled_service": "no", + "gps_code": "SNCP", + "iata_code": "EEA", + "home_link": "https://infracea.com.br/aeroporto-regional-do-planalto-serrano-correia-pinto/", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Correia_Pinto" + }, + { + "id": "41683", + "ident": "SNCQ", + "type": "small_airport", + "name": "Cocorobó Airport", + "latitude_deg": "-10.5272216797", + "longitude_deg": "-39.0330543518", + "elevation_ft": "1509", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Euclides Da Cunha", + "scheduled_service": "no", + "gps_code": "SNCQ" + }, + { + "id": "37054", + "ident": "SNCR", + "type": "heliport", + "name": "Viganó I Heliport", + "latitude_deg": "-19.963056564331055", + "longitude_deg": "-43.9555549621582", + "elevation_ft": "3426", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SNCR" + }, + { + "id": "291", + "ident": "SNCS", + "type": "small_airport", + "name": "Campos Sales Airport", + "latitude_deg": "-7.053020000457764", + "longitude_deg": "-40.35850143432617", + "elevation_ft": "2001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Campos Sales", + "scheduled_service": "no", + "gps_code": "SNCS", + "local_code": "SNCS" + }, + { + "id": "292", + "ident": "SNCT", + "type": "small_airport", + "name": "Ubaporanga Airport", + "latitude_deg": "-19.725299835205078", + "longitude_deg": "-42.112098693847656", + "elevation_ft": "2067", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Caratinga", + "scheduled_service": "no", + "gps_code": "SNCT", + "local_code": "SNCT" + }, + { + "id": "30848", + "ident": "SNCU", + "type": "small_airport", + "name": "Cururupu Airport", + "latitude_deg": "-1.820006", + "longitude_deg": "-44.864065", + "elevation_ft": "39", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Cururupu", + "scheduled_service": "no", + "gps_code": "SNCU", + "iata_code": "CPU" + }, + { + "id": "29752", + "ident": "SNCV", + "type": "small_airport", + "name": "Campina Verde Airport", + "latitude_deg": "-19.551478", + "longitude_deg": "-49.497425", + "elevation_ft": "1805", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Campina Verde", + "scheduled_service": "no", + "gps_code": "SNCV", + "local_code": "MG0062" + }, + { + "id": "293", + "ident": "SNCW", + "type": "small_airport", + "name": "Alcântara Space Center Airport", + "latitude_deg": "-2.373", + "longitude_deg": "-44.3964", + "elevation_ft": "148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Alcântara", + "scheduled_service": "no", + "gps_code": "SNCW", + "local_code": "MA9001" + }, + { + "id": "294", + "ident": "SNCX", + "type": "small_airport", + "name": "Colatina Airport", + "latitude_deg": "-19.48699951171875", + "longitude_deg": "-40.57939910888672", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Colatina", + "scheduled_service": "no", + "gps_code": "SNCX", + "iata_code": "QCH", + "local_code": "SNCX" + }, + { + "id": "37055", + "ident": "SNCY", + "type": "small_airport", + "name": "Campo da Praia Airport", + "latitude_deg": "-10.222636", + "longitude_deg": "-36.285352", + "elevation_ft": "138", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Coruripe", + "scheduled_service": "no", + "gps_code": "SNCY" + }, + { + "id": "295", + "ident": "SNCZ", + "type": "small_airport", + "name": "Ponte Nova Airport", + "latitude_deg": "-20.40329933166504", + "longitude_deg": "-42.916500091552734", + "elevation_ft": "1877", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Ponte Nova", + "scheduled_service": "no", + "gps_code": "SNCZ", + "local_code": "SNCZ" + }, + { + "id": "37056", + "ident": "SNDB", + "type": "small_airport", + "name": "Rurópolis Airport", + "latitude_deg": "-4.0855560302734375", + "longitude_deg": "-54.910831451416016", + "elevation_ft": "325", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Rurópolis", + "scheduled_service": "no", + "gps_code": "SNDB" + }, + { + "id": "296", + "ident": "SNDC", + "type": "small_airport", + "name": "Redenção Airport", + "latitude_deg": "-8.033289909362793", + "longitude_deg": "-49.97990036010742", + "elevation_ft": "670", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Redenção", + "scheduled_service": "no", + "gps_code": "SNDC", + "iata_code": "RDC", + "local_code": "SNDC" + }, + { + "id": "37057", + "ident": "SNDD", + "type": "small_airport", + "name": "Fazenda Eldorado Airport", + "latitude_deg": "-3.692355", + "longitude_deg": "-45.26903", + "elevation_ft": "118", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Igarapé do Meio", + "scheduled_service": "no", + "gps_code": "SBOT", + "local_code": "MA0110", + "keywords": "SNDD" + }, + { + "id": "323601", + "ident": "SNDE", + "type": "heliport", + "name": "BNDES Heliport", + "latitude_deg": "-22.908681", + "longitude_deg": "-43.180207", + "elevation_ft": "440", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SNDE" + }, + { + "id": "37058", + "ident": "SNDF", + "type": "small_airport", + "name": "Fazenda Santa Lúcia Airport", + "latitude_deg": "-3.655", + "longitude_deg": "-45.451111", + "elevation_ft": "272", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Santa Inês", + "scheduled_service": "no", + "keywords": "SNDF" + }, + { + "id": "30390", + "ident": "SNDG", + "type": "closed", + "name": "São Domingos Airport", + "latitude_deg": "-5.573609828948975", + "longitude_deg": "-44.43170166015625", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "São Domingos Do Maranhão", + "scheduled_service": "no", + "gps_code": "SNDG" + }, + { + "id": "37059", + "ident": "SNDH", + "type": "small_airport", + "name": "Aba Airport", + "latitude_deg": "-12.162858", + "longitude_deg": "-45.033695", + "elevation_ft": "1682", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Barreiras", + "scheduled_service": "no", + "gps_code": "SNDH" + }, + { + "id": "37060", + "ident": "SNDI", + "type": "small_airport", + "name": "Pista Castanheirinho", + "latitude_deg": "-7.093676", + "longitude_deg": "-56.851664", + "elevation_ft": "623", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "keywords": "SNDI" + }, + { + "id": "37061", + "ident": "SNDJ", + "type": "small_airport", + "name": "Santana dos Brejos Airport", + "latitude_deg": "-12.97611141204834", + "longitude_deg": "-44.03916549682617", + "elevation_ft": "1759", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Santana Dos Brejos", + "scheduled_service": "no", + "gps_code": "SNDJ" + }, + { + "id": "309759", + "ident": "SNDK", + "type": "heliport", + "name": "C.T.O Itaú Heliport", + "latitude_deg": "-23.5580558777", + "longitude_deg": "-46.618610382099995", + "elevation_ft": "2661", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SNDK", + "local_code": "SNDK" + }, + { + "id": "335228", + "ident": "SNDL", + "type": "heliport", + "name": "Luciano Cavalcante Heliport", + "latitude_deg": "-3.345783", + "longitude_deg": "-39.12623", + "elevation_ft": "46", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Paraipaba", + "scheduled_service": "no", + "gps_code": "SNDL", + "local_code": "CE0048" + }, + { + "id": "309758", + "ident": "SNDM", + "type": "heliport", + "name": "Karina Heliport", + "latitude_deg": "-23.4404", + "longitude_deg": "-46.4352", + "elevation_ft": "2532", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarulhos", + "scheduled_service": "no", + "gps_code": "SNDM", + "local_code": "SNDM" + }, + { + "id": "297", + "ident": "SNDN", + "type": "small_airport", + "name": "Leopoldina Airport", + "latitude_deg": "-21.466101", + "longitude_deg": "-42.727001", + "elevation_ft": "919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Leopoldina", + "scheduled_service": "no", + "iata_code": "LEP", + "keywords": "SNDN" + }, + { + "id": "37062", + "ident": "SNDO", + "type": "small_airport", + "name": "Ouro Branco Airport", + "latitude_deg": "-16.711423", + "longitude_deg": "-47.015343", + "elevation_ft": "3031", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Paracatu", + "scheduled_service": "no", + "gps_code": "SICU", + "local_code": "MG0094", + "keywords": "SNDO" + }, + { + "id": "37063", + "ident": "SNDP", + "type": "small_airport", + "name": "Palmares Airport", + "latitude_deg": "-2.2602779865264893", + "longitude_deg": "-48.598331451416016", + "elevation_ft": "218", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Acará", + "scheduled_service": "no", + "gps_code": "SNDP" + }, + { + "id": "37064", + "ident": "SNDQ", + "type": "small_airport", + "name": "Fazenda Soya Airport", + "latitude_deg": "-12.921111106872559", + "longitude_deg": "-45.56944274902344", + "elevation_ft": "2549", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SNDQ" + }, + { + "id": "298", + "ident": "SNDR", + "type": "small_airport", + "name": "Domingos Rego Airport", + "latitude_deg": "-5.079790115356445", + "longitude_deg": "-42.87369918823242", + "elevation_ft": "373", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Timon", + "scheduled_service": "no", + "gps_code": "SNDR", + "local_code": "SNDR" + }, + { + "id": "299", + "ident": "SNDT", + "type": "small_airport", + "name": "Diamantina Airport", + "latitude_deg": "-18.232000351", + "longitude_deg": "-43.650398254399995", + "elevation_ft": "4446", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Diamantina", + "scheduled_service": "no", + "gps_code": "SNDT", + "iata_code": "DTI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Diamantina_Airport" + }, + { + "id": "46361", + "ident": "SNDU", + "type": "small_airport", + "name": "Ponta Do Sol Airport", + "latitude_deg": "-20.638333", + "longitude_deg": "-45.998056", + "elevation_ft": "2854", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Capitólio", + "scheduled_service": "no", + "gps_code": "SNDU", + "local_code": "SNDU" + }, + { + "id": "300", + "ident": "SNDV", + "type": "small_airport", + "name": "Brigadeiro Cabral Airport", + "latitude_deg": "-20.180700302124", + "longitude_deg": "-44.870899200439", + "elevation_ft": "2608", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Divinópolis", + "scheduled_service": "no", + "gps_code": "SNDV", + "iata_code": "DIQ", + "local_code": "SNDV", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Divin%C3%B3polis" + }, + { + "id": "301", + "ident": "SNDW", + "type": "small_airport", + "name": "Divisa Airport", + "latitude_deg": "-15.717222213745117", + "longitude_deg": "-41.0172233581543", + "elevation_ft": "3051", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Encruzilhada", + "scheduled_service": "no", + "gps_code": "SNDW", + "local_code": "SNDW" + }, + { + "id": "37065", + "ident": "SNDX", + "type": "small_airport", + "name": "Cachoeira Airport", + "latitude_deg": "-10.039999961853027", + "longitude_deg": "-36.32638931274414", + "elevation_ft": "345", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Coruripe", + "scheduled_service": "no", + "gps_code": "SNDX" + }, + { + "id": "29828", + "ident": "SNDY", + "type": "closed", + "name": "Dores Do Indaia Airport", + "latitude_deg": "-19.457199", + "longitude_deg": "-45.5844", + "elevation_ft": "2490", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Dores Do Indiaia", + "scheduled_service": "no", + "gps_code": "SNDY" + }, + { + "id": "37066", + "ident": "SNDZ", + "type": "closed", + "name": "Via Brasil Heliport", + "latitude_deg": "-19.8419437408", + "longitude_deg": "-43.9661102295", + "elevation_ft": "2676", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SNDZ" + }, + { + "id": "37067", + "ident": "SNEA", + "type": "small_airport", + "name": "Piçarrão Airport", + "latitude_deg": "-18.721389770507812", + "longitude_deg": "-47.86555480957031", + "elevation_ft": "3166", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Estrela Do Sul", + "scheduled_service": "no", + "gps_code": "SNEA" + }, + { + "id": "37068", + "ident": "SNEB", + "type": "small_airport", + "name": "Nagib Demachki Airport", + "latitude_deg": "-3.019798", + "longitude_deg": "-47.316474", + "elevation_ft": "443", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Paragominas", + "scheduled_service": "yes", + "gps_code": "SNEB", + "iata_code": "JPE", + "local_code": "PA0018", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paragominas_Airport" + }, + { + "id": "37069", + "ident": "SNEC", + "type": "small_airport", + "name": "Outeiros da Brisas Airport", + "latitude_deg": "-16.712959", + "longitude_deg": "-39.142413", + "elevation_ft": "130", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Porto Seguro", + "scheduled_service": "no", + "gps_code": "SNEC", + "local_code": "BA0134" + }, + { + "id": "302", + "ident": "SNED", + "type": "small_airport", + "name": "Sócrates Rezende Airport", + "latitude_deg": "-15.666999816895", + "longitude_deg": "-38.954700469971", + "elevation_ft": "19", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Canavieiras", + "scheduled_service": "no", + "gps_code": "SNED", + "iata_code": "CNV", + "local_code": "SNED" + }, + { + "id": "37070", + "ident": "SNEE", + "type": "small_airport", + "name": "Jauá Airport", + "latitude_deg": "-12.809597", + "longitude_deg": "-38.248258", + "elevation_ft": "76", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Camaçari", + "scheduled_service": "no", + "keywords": "SJUK, SNEE" + }, + { + "id": "46211", + "ident": "SNEF", + "type": "heliport", + "name": "Praia de Santa Rita Heliport", + "latitude_deg": "-23.190833", + "longitude_deg": "-44.645556", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Parati", + "scheduled_service": "no", + "gps_code": "SNEF", + "local_code": "SNEF" + }, + { + "id": "323599", + "ident": "SNEG", + "type": "small_airport", + "name": "Fazenda Netolândia Airport", + "latitude_deg": "-14.650115", + "longitude_deg": "-57.888688", + "elevation_ft": "1066", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tangará da Serra", + "scheduled_service": "no", + "gps_code": "SNEG" + }, + { + "id": "37071", + "ident": "SNEH", + "type": "small_airport", + "name": "Mineração Porquinho Airport", + "latitude_deg": "-5.167222023010254", + "longitude_deg": "-57.625831604003906", + "elevation_ft": "298", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SNEH" + }, + { + "id": "335240", + "ident": "SNEI", + "type": "small_airport", + "name": "Fazenda São Miguel Airport", + "latitude_deg": "-30.175022", + "longitude_deg": "-52.169479", + "elevation_ft": "243", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Rio Pardo", + "scheduled_service": "no", + "gps_code": "SNEI", + "local_code": "RS0083" + }, + { + "id": "37072", + "ident": "SNEJ", + "type": "small_airport", + "name": "Monte Verde Airport", + "latitude_deg": "-22.859722137451172", + "longitude_deg": "-46.037498474121094", + "elevation_ft": "5102", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Camanducaia", + "scheduled_service": "no", + "gps_code": "SNEJ" + }, + { + "id": "37073", + "ident": "SNEK", + "type": "small_airport", + "name": "Moria Airport", + "latitude_deg": "-16.883888244628906", + "longitude_deg": "-46.23638916015625", + "elevation_ft": "1201", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Dom Bosco", + "scheduled_service": "no", + "gps_code": "SNEK" + }, + { + "id": "37074", + "ident": "SNEL", + "type": "small_airport", + "name": "Belterra Airport", + "latitude_deg": "-2.668108", + "longitude_deg": "-54.89566", + "elevation_ft": "541", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Belterra", + "scheduled_service": "no", + "gps_code": "SNEL" + }, + { + "id": "32333", + "ident": "SNEM", + "type": "small_airport", + "name": "Encanta Moça Airport", + "latitude_deg": "-8.09417", + "longitude_deg": "-34.892799", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Recife", + "scheduled_service": "no", + "gps_code": "SNEM" + }, + { + "id": "37075", + "ident": "SNEN", + "type": "small_airport", + "name": "Fazenda Calumbi Airport", + "latitude_deg": "-5.815404", + "longitude_deg": "-44.133625", + "elevation_ft": "689", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Fortuna", + "scheduled_service": "no", + "keywords": "SNEN" + }, + { + "id": "44722", + "ident": "SNEO", + "type": "small_airport", + "name": "Dezoito Airport", + "latitude_deg": "-16.438905", + "longitude_deg": "-49.199524", + "elevation_ft": "2700", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Nerópolis", + "scheduled_service": "no", + "gps_code": "SWDT", + "local_code": "GO0118", + "keywords": "SNEO" + }, + { + "id": "29861", + "ident": "SNEP", + "type": "closed", + "name": "Eunápolis Airport", + "latitude_deg": "-16.329201", + "longitude_deg": "-39.5769", + "elevation_ft": "610", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Eunápolis", + "scheduled_service": "no", + "keywords": "SNEP" + }, + { + "id": "45614", + "ident": "SNEQ", + "type": "heliport", + "name": "Ouro Negro Heliport", + "latitude_deg": "-22.912778", + "longitude_deg": "-43.222778", + "elevation_ft": "282", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SNEQ" + }, + { + "id": "323597", + "ident": "SNER", + "type": "heliport", + "name": "Prefeitura Municipal de Itajubá Heliport", + "latitude_deg": "-22.412919", + "longitude_deg": "-45.436777", + "elevation_ft": "2986", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Itajubá", + "scheduled_service": "no", + "gps_code": "SNER" + }, + { + "id": "37076", + "ident": "SNES", + "type": "small_airport", + "name": "Esplanada Airport", + "latitude_deg": "-11.773209", + "longitude_deg": "-37.951097", + "elevation_ft": "164", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Esplanada", + "scheduled_service": "no", + "gps_code": "SNES" + }, + { + "id": "335248", + "ident": "SNET", + "type": "small_airport", + "name": "Fazenda Estrela Airport", + "latitude_deg": "-21.273939", + "longitude_deg": "-55.215984", + "elevation_ft": "1539", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Sidrolândia", + "scheduled_service": "no", + "gps_code": "SNET", + "local_code": "MS0205" + }, + { + "id": "303", + "ident": "SNEU", + "type": "small_airport", + "name": "Euclides da Cunha Airport", + "latitude_deg": "-10.527299880981445", + "longitude_deg": "-39.03269958496094", + "elevation_ft": "1499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Euclides Da Cunha", + "scheduled_service": "no", + "gps_code": "SNEU", + "local_code": "SNEU" + }, + { + "id": "45620", + "ident": "SNEV", + "type": "heliport", + "name": "Posthaus Heliport", + "latitude_deg": "-26.880945", + "longitude_deg": "-49.138813", + "elevation_ft": "105", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Blumenau", + "scheduled_service": "no", + "gps_code": "SJUP", + "local_code": "SC0073", + "keywords": "SNEV" + }, + { + "id": "304", + "ident": "SNEW", + "type": "small_airport", + "name": "Fazenda Congonhas Airport", + "latitude_deg": "-19.662599563598633", + "longitude_deg": "-50.95130157470703", + "elevation_ft": "1375", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Carneirinho", + "scheduled_service": "no", + "gps_code": "SNEW", + "local_code": "SNEW" + }, + { + "id": "323596", + "ident": "SNEX", + "type": "heliport", + "name": "Fazenda Melado Heliport", + "latitude_deg": "-20.79301", + "longitude_deg": "-47.796186", + "elevation_ft": "2257", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sales Oliveira", + "scheduled_service": "no", + "gps_code": "SNEX" + }, + { + "id": "37077", + "ident": "SNEY", + "type": "small_airport", + "name": "Fazenda Lagoa do Morro Airport", + "latitude_deg": "-13.102499961853027", + "longitude_deg": "-39.90361022949219", + "elevation_ft": "2666", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Brejões", + "scheduled_service": "no", + "gps_code": "SNEY" + }, + { + "id": "44566", + "ident": "SNEZ", + "type": "small_airport", + "name": "Fazenda Palmeira do Capim Airport", + "latitude_deg": "-15.960277", + "longitude_deg": "-50.714757", + "elevation_ft": "1220", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Novo Brasil", + "scheduled_service": "no", + "gps_code": "SNEZ", + "local_code": "GO0094" + }, + { + "id": "305", + "ident": "SNFA", + "type": "small_airport", + "name": "Fazenda Santo Antônio Airport", + "latitude_deg": "-16.7162", + "longitude_deg": "-46.521198", + "elevation_ft": "1795", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Unaí", + "scheduled_service": "no", + "gps_code": "SNFA", + "local_code": "MG0143" + }, + { + "id": "45595", + "ident": "SNFB", + "type": "small_airport", + "name": "Fazenda Minas Gerais Airport", + "latitude_deg": "-14.773264", + "longitude_deg": "-59.047437", + "elevation_ft": "2395", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes E Lacerda", + "scheduled_service": "no", + "gps_code": "SDVM", + "local_code": "MT0068", + "keywords": "SNFB" + }, + { + "id": "37078", + "ident": "SNFC", + "type": "closed", + "name": "Fazenda Forquilha Airport", + "latitude_deg": "-19.8516674042", + "longitude_deg": "-46.7099990845", + "elevation_ft": "4370", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Tapira", + "scheduled_service": "no", + "gps_code": "SNFC" + }, + { + "id": "37079", + "ident": "SNFD", + "type": "small_airport", + "name": "Fazenda Santo Antônio Airport", + "latitude_deg": "-17.069171", + "longitude_deg": "-45.447511", + "elevation_ft": "1791", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Buritizeiro", + "scheduled_service": "no", + "keywords": "SNFD" + }, + { + "id": "306", + "ident": "SNFE", + "type": "small_airport", + "name": "Comandante Paschoal Patrocínio Filho Airport", + "latitude_deg": "-21.4314", + "longitude_deg": "-45.932098", + "elevation_ft": "2871", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Alfenas", + "scheduled_service": "no", + "gps_code": "SNFE", + "local_code": "SNFE", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Alfenas" + }, + { + "id": "37080", + "ident": "SNFF", + "type": "small_airport", + "name": "Feijó Airport", + "latitude_deg": "-3.809903", + "longitude_deg": "-38.614597", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SNFF" + }, + { + "id": "37081", + "ident": "SNFG", + "type": "small_airport", + "name": "Citropar Airport", + "latitude_deg": "-1.840391", + "longitude_deg": "-47.184196", + "elevation_ft": "220", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Capitão Poço", + "scheduled_service": "no", + "gps_code": "SJAC", + "local_code": "PA0065", + "keywords": "SNFG" + }, + { + "id": "46477", + "ident": "SNFH", + "type": "small_airport", + "name": "Fazenda Dom Felipe Airport", + "latitude_deg": "-22.559118", + "longitude_deg": "-55.381143", + "elevation_ft": "1857", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ponta Porã", + "scheduled_service": "yes", + "gps_code": "SWFD", + "local_code": "MS0371", + "keywords": "SNFH" + }, + { + "id": "307", + "ident": "SNFI", + "type": "small_airport", + "name": "Fazenda São José do Parnaíba Airport", + "latitude_deg": "-18.387500762939453", + "longitude_deg": "-48.86166763305664", + "elevation_ft": "1676", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Tupaciguara", + "scheduled_service": "no", + "gps_code": "SNFI", + "local_code": "SNFI" + }, + { + "id": "37082", + "ident": "SNFJ", + "type": "small_airport", + "name": "Pousada Thaimaçu Airport", + "latitude_deg": "-9.06277847290039", + "longitude_deg": "-56.59333419799805", + "elevation_ft": "751", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Jacareacanga", + "scheduled_service": "no", + "gps_code": "SNFJ" + }, + { + "id": "37083", + "ident": "SNFK", + "type": "closed", + "name": "Francisco Sá Airport", + "latitude_deg": "-16.437573", + "longitude_deg": "-43.469187", + "elevation_ft": "2484", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Francisco Sá", + "scheduled_service": "no", + "keywords": "SNFK" + }, + { + "id": "37084", + "ident": "SNFL", + "type": "small_airport", + "name": "Garimbo Tocantinzinho Airport", + "latitude_deg": "-6.050556182861328", + "longitude_deg": "-56.302223205566406", + "elevation_ft": "590", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SNFL" + }, + { + "id": "46108", + "ident": "SNFM", + "type": "heliport", + "name": "Anglogold Ashantil Mineração Heliport", + "latitude_deg": "-19.965833333299997", + "longitude_deg": "-43.835277777799995", + "elevation_ft": "2907", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Nova Lima", + "scheduled_service": "no", + "gps_code": "SNFM", + "local_code": "SNFM" + }, + { + "id": "45637", + "ident": "SNFN", + "type": "small_airport", + "name": "Fazenda Santa Fé Airport", + "latitude_deg": "-20.94", + "longitude_deg": "-47.87", + "elevation_ft": "1739", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jardinópolis", + "scheduled_service": "no", + "gps_code": "SNFN" + }, + { + "id": "32334", + "ident": "SNFO", + "type": "small_airport", + "name": "Formiga Airport", + "latitude_deg": "-20.395299911499023", + "longitude_deg": "-45.48360061645508", + "elevation_ft": "3337", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Formiga", + "scheduled_service": "no", + "gps_code": "SNFO", + "iata_code": "0" + }, + { + "id": "42739", + "ident": "SNFP", + "type": "small_airport", + "name": "Fazenda Pirapó Airport", + "latitude_deg": "-12.181388854980469", + "longitude_deg": "-55.788612365722656", + "elevation_ft": "1273", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "gps_code": "SNFP" + }, + { + "id": "37085", + "ident": "SNFQ", + "type": "small_airport", + "name": "Fazenda Paineira Airport", + "latitude_deg": "-22.147502", + "longitude_deg": "-45.763611", + "elevation_ft": "3001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "São Sebastião da Bela Vista", + "scheduled_service": "no", + "gps_code": "SIAC", + "local_code": "MG0089", + "keywords": "SNFQ" + }, + { + "id": "308", + "ident": "SNFR", + "type": "small_airport", + "name": "Belém de São Francisco Airport", + "latitude_deg": "-8.769590377807617", + "longitude_deg": "-38.94960021972656", + "elevation_ft": "1034", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Belém De São Francisco", + "scheduled_service": "no", + "gps_code": "SNFR", + "local_code": "SNFR" + }, + { + "id": "37086", + "ident": "SNFS", + "type": "small_airport", + "name": "Fazenda Mimoso S/A Airport", + "latitude_deg": "-11.871389389", + "longitude_deg": "-45.7372207642", + "elevation_ft": "2536", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Barreiras", + "scheduled_service": "no", + "gps_code": "SNFS" + }, + { + "id": "37087", + "ident": "SNFT", + "type": "small_airport", + "name": "Fazenda Serinhaém Airport", + "latitude_deg": "-13.834423", + "longitude_deg": "-38.989373", + "elevation_ft": "9", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Ituberá", + "scheduled_service": "no", + "gps_code": "SSDM", + "local_code": "BA0154", + "keywords": "SNFT" + }, + { + "id": "309", + "ident": "SNFU", + "type": "small_airport", + "name": "Frutal Airport", + "latitude_deg": "-20.00279998779297", + "longitude_deg": "-48.95840072631836", + "elevation_ft": "1808", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Frutal", + "scheduled_service": "no", + "gps_code": "SNFU", + "local_code": "SNFU" + }, + { + "id": "37088", + "ident": "SNFV", + "type": "small_airport", + "name": "Lago Joanes Airport", + "latitude_deg": "-12.663551", + "longitude_deg": "-38.407326", + "elevation_ft": "239", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Simões Filho", + "scheduled_service": "no", + "gps_code": "SNFV" + }, + { + "id": "45605", + "ident": "SNFW", + "type": "small_airport", + "name": "São João do Piauí Airport", + "latitude_deg": "-8.391481", + "longitude_deg": "-42.247088", + "elevation_ft": "833", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "São João do Piauí", + "scheduled_service": "no", + "gps_code": "SD9C", + "local_code": "PI0065", + "keywords": "SNFW" + }, + { + "id": "310", + "ident": "SNFX", + "type": "small_airport", + "name": "São Félix do Xingu Airport", + "latitude_deg": "-6.6413", + "longitude_deg": "-51.9523", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "São Félix do Xingu", + "scheduled_service": "no", + "gps_code": "SNFX", + "iata_code": "SXX", + "local_code": "PA0013" + }, + { + "id": "323592", + "ident": "SNFY", + "type": "heliport", + "name": "Compesa Heliport", + "latitude_deg": "-8.009756", + "longitude_deg": "-34.938564", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Recife", + "scheduled_service": "no", + "gps_code": "SNFY" + }, + { + "id": "311", + "ident": "SNFZ", + "type": "small_airport", + "name": "Fazenda Villa Terezinha Airport", + "latitude_deg": "-17.405837", + "longitude_deg": "-43.939852", + "elevation_ft": "2765", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Bocaíuva", + "scheduled_service": "no", + "gps_code": "SNFZ", + "local_code": "MG0145" + }, + { + "id": "312", + "ident": "SNGA", + "type": "small_airport", + "name": "Guarapari Airport", + "latitude_deg": "-20.6465", + "longitude_deg": "-40.491901", + "elevation_ft": "28", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Guarapari", + "scheduled_service": "yes", + "gps_code": "SNGA", + "iata_code": "GUZ", + "local_code": "ES0007", + "wikipedia_link": "http://pt.wikipedia.org/wiki/Aeroporto_de_Guarapari" + }, + { + "id": "37089", + "ident": "SNGB", + "type": "small_airport", + "name": "Gilbués Airport", + "latitude_deg": "-9.833610534667969", + "longitude_deg": "-45.36722183227539", + "elevation_ft": "1476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Gilbués", + "scheduled_service": "no", + "gps_code": "SNGB" + }, + { + "id": "37090", + "ident": "SNGC", + "type": "small_airport", + "name": "Pista Canaã Airport", + "latitude_deg": "-7.193611145019531", + "longitude_deg": "-57.04888916015625", + "elevation_ft": "741", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SNGC" + }, + { + "id": "29922", + "ident": "SNGD", + "type": "small_airport", + "name": "Guadalupe Airport", + "latitude_deg": "-6.782219886779785", + "longitude_deg": "-43.58219909667969", + "elevation_ft": "564", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Guadalupe", + "scheduled_service": "no", + "gps_code": "SNGD", + "iata_code": "GDP" + }, + { + "id": "46471", + "ident": "SNGE", + "type": "heliport", + "name": "Ilha do Retiro Heliport", + "latitude_deg": "-8.06667", + "longitude_deg": "-34.90194", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Recife", + "scheduled_service": "no", + "gps_code": "SNGE", + "local_code": "SNGE" + }, + { + "id": "37091", + "ident": "SNGF", + "type": "heliport", + "name": "Fazenda Manacá Heliport", + "latitude_deg": "-8.191389083862305", + "longitude_deg": "-35.504722595214844", + "elevation_ft": "1749", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Gravatá", + "scheduled_service": "no", + "gps_code": "SNGF" + }, + { + "id": "313", + "ident": "SNGG", + "type": "small_airport", + "name": "Bom Jesus do Gurguéia Airport", + "latitude_deg": "-9.057250022888184", + "longitude_deg": "-44.37110137939453", + "elevation_ft": "1066", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Bom Jesus Do Gurguéia", + "scheduled_service": "no", + "gps_code": "SNGG", + "local_code": "SNGG" + }, + { + "id": "314", + "ident": "SNGH", + "type": "closed", + "name": "Guanhães Airport", + "latitude_deg": "-18.707701", + "longitude_deg": "-42.838902", + "elevation_ft": "2618", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Guanhães", + "scheduled_service": "no", + "keywords": "SNGH" + }, + { + "id": "315", + "ident": "SNGI", + "type": "small_airport", + "name": "Guanambi Airport", + "latitude_deg": "-14.208200454711914", + "longitude_deg": "-42.74610137939453", + "elevation_ft": "1815", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Guanambi", + "scheduled_service": "no", + "gps_code": "SNGI", + "iata_code": "GNM", + "local_code": "SNGI" + }, + { + "id": "29910", + "ident": "SNGJ", + "type": "small_airport", + "name": "Grajaú Airport", + "latitude_deg": "-5.806353", + "longitude_deg": "-46.116636", + "elevation_ft": "773", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Grajaú", + "scheduled_service": "no", + "keywords": "SNGJ" + }, + { + "id": "37092", + "ident": "SNGK", + "type": "small_airport", + "name": "Fazenda Bela Vista Airport", + "latitude_deg": "-19.04833221435547", + "longitude_deg": "-48.97222137451172", + "elevation_ft": "1984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Monte Alegre De Minas", + "scheduled_service": "no", + "gps_code": "SNGK" + }, + { + "id": "45625", + "ident": "SNGL", + "type": "heliport", + "name": "Boa Vista Heliport", + "latitude_deg": "-23.181944", + "longitude_deg": "-47.559444", + "elevation_ft": "1949", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Porto Feliz", + "scheduled_service": "no", + "gps_code": "SNGL" + }, + { + "id": "37093", + "ident": "SNGM", + "type": "closed", + "name": "Guimarães Airport", + "latitude_deg": "-2.118784", + "longitude_deg": "-44.609563", + "elevation_ft": "155", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Guimarães", + "scheduled_service": "no", + "keywords": "SNGM" + }, + { + "id": "316", + "ident": "SNGN", + "type": "small_airport", + "name": "Garanhuns Airport", + "latitude_deg": "-8.834280014038086", + "longitude_deg": "-36.47159957885742", + "elevation_ft": "2533", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Garanhuns", + "scheduled_service": "no", + "gps_code": "SNGN", + "iata_code": "QGP", + "local_code": "SNGN" + }, + { + "id": "37094", + "ident": "SNGO", + "type": "small_airport", + "name": "Fazenda Nova Airport", + "latitude_deg": "-19.04777717590332", + "longitude_deg": "-48.58222198486328", + "elevation_ft": "2689", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberlândia", + "scheduled_service": "no", + "gps_code": "SNGO" + }, + { + "id": "37095", + "ident": "SNGP", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-18.586944580078125", + "longitude_deg": "-48.86916732788086", + "elevation_ft": "2624", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Tupaciguara", + "scheduled_service": "no", + "gps_code": "SNGP" + }, + { + "id": "37096", + "ident": "SNGQ", + "type": "small_airport", + "name": "Fazenda Estrela Dalva Airport", + "latitude_deg": "-4.250833034515381", + "longitude_deg": "-48.7680549621582", + "elevation_ft": "446", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Rondon Do Pará", + "scheduled_service": "no", + "gps_code": "SNGQ" + }, + { + "id": "37097", + "ident": "SNGR", + "type": "small_airport", + "name": "Gorotire Airport", + "latitude_deg": "-7.783610820770264", + "longitude_deg": "-51.133888244628906", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Gorotire", + "scheduled_service": "no", + "gps_code": "SNGR" + }, + { + "id": "37098", + "ident": "SNGS", + "type": "small_airport", + "name": "Aeroclube de Alagoas Airport", + "latitude_deg": "-9.584875", + "longitude_deg": "-35.752795", + "elevation_ft": "285", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Maceió", + "scheduled_service": "no", + "gps_code": "SNGS" + }, + { + "id": "317", + "ident": "SNGT", + "type": "small_airport", + "name": "Gentio de Ouro Airport", + "latitude_deg": "-11.441699981689453", + "longitude_deg": "-42.5181999206543", + "elevation_ft": "3501", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Gentio De Ouro", + "scheduled_service": "no", + "gps_code": "SNGT", + "local_code": "SNGT" + }, + { + "id": "37099", + "ident": "SNGU", + "type": "closed", + "name": "Gurupá Airport", + "latitude_deg": "-1.416944", + "longitude_deg": "-51.633888", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Gurupá", + "scheduled_service": "no", + "keywords": "SNGU" + }, + { + "id": "37100", + "ident": "SNGW", + "type": "small_airport", + "name": "Fazenda Cauaxi Airport", + "latitude_deg": "-3.7633330821990967", + "longitude_deg": "-48.17388916015625", + "elevation_ft": "754", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Paragominas", + "scheduled_service": "no", + "gps_code": "SNGW" + }, + { + "id": "318", + "ident": "SNGX", + "type": "small_airport", + "name": "Guaxupé Airport", + "latitude_deg": "-21.326400756835938", + "longitude_deg": "-46.731201171875", + "elevation_ft": "2786", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Guaxupé", + "scheduled_service": "no", + "gps_code": "SNGX", + "local_code": "SNGX" + }, + { + "id": "46363", + "ident": "SNGY", + "type": "heliport", + "name": "Fazenda Santapazienza Heliport", + "latitude_deg": "-23.0683", + "longitude_deg": "-46.8267", + "elevation_ft": "2520", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itatiba", + "scheduled_service": "no", + "gps_code": "SITY", + "local_code": "SP0557", + "keywords": "SNGY" + }, + { + "id": "45624", + "ident": "SNGZ", + "type": "heliport", + "name": "Bardahl Heliport", + "latitude_deg": "-23.340278", + "longitude_deg": "-46.845", + "elevation_ft": "3182", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cajamar", + "scheduled_service": "no", + "gps_code": "SNGZ" + }, + { + "id": "129", + "ident": "SNHA", + "type": "small_airport", + "name": "Tertuliano Guedes de Pinho Airport", + "latitude_deg": "-14.8105", + "longitude_deg": "-39.290401", + "elevation_ft": "197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Itabuna", + "scheduled_service": "no", + "gps_code": "SWTX", + "iata_code": "ITN", + "local_code": "BA0248", + "keywords": "SNHA, SB01" + }, + { + "id": "37101", + "ident": "SNHB", + "type": "heliport", + "name": "Base de Paracuru Heliport", + "latitude_deg": "-3.40027809143", + "longitude_deg": "-39.00027847289999", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Paracuru", + "scheduled_service": "no", + "gps_code": "SNHB" + }, + { + "id": "335290", + "ident": "SNHC", + "type": "heliport", + "name": "Hospital Regional de Caraguatatuba Helipad", + "latitude_deg": "-23.657222", + "longitude_deg": "-45.44", + "elevation_ft": "118", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Caraguatatuba", + "scheduled_service": "no", + "gps_code": "SNHC", + "local_code": "SP0702" + }, + { + "id": "45573", + "ident": "SNHD", + "type": "small_airport", + "name": "Fazenda Floresta do Lobo Airport", + "latitude_deg": "-19.0775", + "longitude_deg": "-48.130278", + "elevation_ft": "3159", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberlândia", + "scheduled_service": "no", + "gps_code": "SNHD" + }, + { + "id": "37102", + "ident": "SNHE", + "type": "small_airport", + "name": "Fazenda Inhumas do Chapadão Airport", + "latitude_deg": "-19.305833", + "longitude_deg": "-48.193333", + "elevation_ft": "2792", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberaba", + "scheduled_service": "no", + "gps_code": "SWWF", + "local_code": "MG0206", + "keywords": "SNHE" + }, + { + "id": "335292", + "ident": "SNHF", + "type": "heliport", + "name": "Figaro Heliport", + "latitude_deg": "-15.774067", + "longitude_deg": "-47.816985", + "elevation_ft": "3294", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SNHF", + "local_code": "DF0017" + }, + { + "id": "46184", + "ident": "SNHG", + "type": "small_airport", + "name": "Fazenda Varjadão Airport", + "latitude_deg": "-12.341389", + "longitude_deg": "-49.621111", + "elevation_ft": "794", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Sandolândia", + "scheduled_service": "no", + "gps_code": "SNHG", + "local_code": "SNHG" + }, + { + "id": "37103", + "ident": "SNHH", + "type": "heliport", + "name": "Helibrás Heliport", + "latitude_deg": "-22.426666259765625", + "longitude_deg": "-45.478057861328125", + "elevation_ft": "2762", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Itajubá", + "scheduled_service": "no", + "gps_code": "SNHH" + }, + { + "id": "37104", + "ident": "SNHI", + "type": "heliport", + "name": "Polo Industrial Heliport", + "latitude_deg": "-5.127500057220459", + "longitude_deg": "-36.38444519042969", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Guamaré", + "scheduled_service": "no", + "gps_code": "SNHI" + }, + { + "id": "45645", + "ident": "SNHJ", + "type": "small_airport", + "name": "Usina de José Bonifácio Airport", + "latitude_deg": "-21.095", + "longitude_deg": "-49.914722", + "elevation_ft": "1404", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "José Bonifácio", + "scheduled_service": "no", + "gps_code": "SNHJ" + }, + { + "id": "37105", + "ident": "SNHK", + "type": "small_airport", + "name": "Nacional Grafite I Airport", + "latitude_deg": "-20.434444427490234", + "longitude_deg": "-45.13833236694336", + "elevation_ft": "3051", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Itapecerica", + "scheduled_service": "no", + "gps_code": "SNHK" + }, + { + "id": "37106", + "ident": "SNHL", + "type": "small_airport", + "name": "Lagoa da Taboca Airport", + "latitude_deg": "-17.196243", + "longitude_deg": "-45.665", + "elevation_ft": "1969", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "João Pinheiro", + "scheduled_service": "no", + "keywords": "SNHL" + }, + { + "id": "37107", + "ident": "SNHM", + "type": "heliport", + "name": "HELPN Morro da Gavazza Heliport", + "latitude_deg": "-13.007736", + "longitude_deg": "-38.530689", + "elevation_ft": "154", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Salvador", + "scheduled_service": "no", + "gps_code": "SNHM", + "local_code": "BA9001" + }, + { + "id": "37108", + "ident": "SNHN", + "type": "heliport", + "name": "Megafort Heliport", + "latitude_deg": "-19.891111373901367", + "longitude_deg": "-44.0533332824707", + "elevation_ft": "2913", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Contagem", + "scheduled_service": "no", + "gps_code": "SNHN" + }, + { + "id": "37109", + "ident": "SNHO", + "type": "small_airport", + "name": "Nacional de Grafite II Airport", + "latitude_deg": "-15.824422", + "longitude_deg": "-41.08513", + "elevation_ft": "2976", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Pedra Azul", + "scheduled_service": "no", + "keywords": "SNHO" + }, + { + "id": "319", + "ident": "SNHP", + "type": "closed", + "name": "Herbert Mata Pires Airport", + "latitude_deg": "-12.402464", + "longitude_deg": "-40.474655", + "elevation_ft": "1188", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Itaberaba", + "scheduled_service": "no", + "keywords": "SNHP" + }, + { + "id": "37110", + "ident": "SNHQ", + "type": "small_airport", + "name": "Nacional de Grafite III Airport", + "latitude_deg": "-16.181110382080078", + "longitude_deg": "-39.93194580078125", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Salto Da Divisa", + "scheduled_service": "no", + "gps_code": "SNHQ" + }, + { + "id": "37111", + "ident": "SNHR", + "type": "small_airport", + "name": "Fazenda Água Santa Airport", + "latitude_deg": "-19.363056182861328", + "longitude_deg": "-47.35944366455078", + "elevation_ft": "3548", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Perdizes", + "scheduled_service": "no", + "gps_code": "SNHR" + }, + { + "id": "320", + "ident": "SNHS", + "type": "small_airport", + "name": "Santa Magalhães Airport", + "latitude_deg": "-8.0623998642", + "longitude_deg": "-38.3288002014", + "elevation_ft": "1571", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Serra Talhada", + "scheduled_service": "no", + "gps_code": "SNHS", + "local_code": "SNHS" + }, + { + "id": "37112", + "ident": "SNHT", + "type": "heliport", + "name": "Togni Heliport", + "latitude_deg": "-21.780277252197266", + "longitude_deg": "-46.59611129760742", + "elevation_ft": "3885", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Poços De Caldas", + "scheduled_service": "no", + "gps_code": "SNHT" + }, + { + "id": "45651", + "ident": "SNHU", + "type": "small_airport", + "name": "FazendaBola Sete Airport", + "latitude_deg": "-4.57", + "longitude_deg": "-47.47", + "elevation_ft": "699", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Itinga Do Maranhão", + "scheduled_service": "no", + "gps_code": "SNHU" + }, + { + "id": "37113", + "ident": "SNHW", + "type": "small_airport", + "name": "Fazenda Agro-Maratá Airport", + "latitude_deg": "-4.3222222328186035", + "longitude_deg": "-46.22833251953125", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Santa Luzia", + "scheduled_service": "no", + "gps_code": "SNHW" + }, + { + "id": "37114", + "ident": "SNHX", + "type": "small_airport", + "name": "Fazenda Samello Airport", + "latitude_deg": "-17.3624992371", + "longitude_deg": "-47.440834045399995", + "elevation_ft": "2591", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Paracatu", + "scheduled_service": "no", + "gps_code": "SNHX" + }, + { + "id": "37115", + "ident": "SNHY", + "type": "heliport", + "name": "Hospital Esperança Heliport", + "latitude_deg": "-8.066944122314453", + "longitude_deg": "-34.89500045776367", + "elevation_ft": "159", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Recife", + "scheduled_service": "no", + "gps_code": "SNHY" + }, + { + "id": "45564", + "ident": "SNHZ", + "type": "heliport", + "name": "Amazonas State Government Palace Heliport", + "latitude_deg": "-3.092774", + "longitude_deg": "-60.060239", + "elevation_ft": "213", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Manaus", + "scheduled_service": "no", + "gps_code": "SNHZ", + "keywords": "Palácio do Governo do Estado do Amazonas Heliport" + }, + { + "id": "37116", + "ident": "SNIA", + "type": "small_airport", + "name": "Igarapé-Açu Airport", + "latitude_deg": "-1.127221941947937", + "longitude_deg": "-47.59916687011719", + "elevation_ft": "180", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Igarapé-Açu", + "scheduled_service": "no", + "gps_code": "SNIA" + }, + { + "id": "321", + "ident": "SNIB", + "type": "small_airport", + "name": "Itaberaba Airport", + "latitude_deg": "-12.5", + "longitude_deg": "-40.269901275634766", + "elevation_ft": "929", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Itaberaba", + "scheduled_service": "no", + "gps_code": "SNIB", + "local_code": "SNIB" + }, + { + "id": "322", + "ident": "SNIC", + "type": "small_airport", + "name": "Irecê Airport", + "latitude_deg": "-11.339900016784668", + "longitude_deg": "-41.84700012207031", + "elevation_ft": "2561", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Irecê", + "scheduled_service": "no", + "gps_code": "SNIC", + "iata_code": "IRE", + "local_code": "SNIC" + }, + { + "id": "37117", + "ident": "SNID", + "type": "heliport", + "name": "Instituto Doutor Arnaldo Heliport", + "latitude_deg": "-23.556110382080078", + "longitude_deg": "-46.66777801513672", + "elevation_ft": "3038", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SNID" + }, + { + "id": "323", + "ident": "SNIE", + "type": "small_airport", + "name": "Caetité Airport", + "latitude_deg": "-14.012329", + "longitude_deg": "-42.494001", + "elevation_ft": "3202", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Caetité", + "scheduled_service": "no", + "gps_code": "SNIE", + "local_code": "BA0020", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Caetit%C3%A9", + "keywords": "Guilherme Brandão de Castro" + }, + { + "id": "37118", + "ident": "SNIF", + "type": "small_airport", + "name": "Fazenda Serra Dourada Airport", + "latitude_deg": "-5.717222213745117", + "longitude_deg": "-56.43611145019531", + "elevation_ft": "443", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SNIF" + }, + { + "id": "324", + "ident": "SNIG", + "type": "small_airport", + "name": "Iguatu Airport", + "latitude_deg": "-6.346319", + "longitude_deg": "-39.294448", + "elevation_ft": "699", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Iguatu", + "scheduled_service": "no", + "gps_code": "SNIG", + "iata_code": "QIG", + "local_code": "CE0007", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iguatu_Airport" + }, + { + "id": "37119", + "ident": "SNII", + "type": "small_airport", + "name": "Ouroland Airport", + "latitude_deg": "-6.816944122314453", + "longitude_deg": "-56.55055618286133", + "elevation_ft": "699", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SNII" + }, + { + "id": "37120", + "ident": "SNIJ", + "type": "heliport", + "name": "Suape Helipad", + "latitude_deg": "-8.363247", + "longitude_deg": "-35.008932", + "elevation_ft": "47", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Ipojuca", + "scheduled_service": "no", + "gps_code": "SIUE", + "local_code": "PE0034", + "keywords": "SNIJ" + }, + { + "id": "37121", + "ident": "SNIK", + "type": "small_airport", + "name": "Itamarandiba Airport", + "latitude_deg": "-17.850555419921875", + "longitude_deg": "-42.850555419921875", + "elevation_ft": "3196", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Itamarandiba", + "scheduled_service": "no", + "gps_code": "SNIK" + }, + { + "id": "323529", + "ident": "SNIL", + "type": "small_airport", + "name": "Fazenda Santo Antônio Airport", + "latitude_deg": "-3.900002", + "longitude_deg": "-48.881387", + "elevation_ft": "243", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Goianésia do Pará", + "scheduled_service": "no", + "gps_code": "SNIL", + "local_code": "SNIL" + }, + { + "id": "323532", + "ident": "SNIM", + "type": "heliport", + "name": "Pegoraro Joaçaba Heliport", + "latitude_deg": "-27.175885", + "longitude_deg": "-51.516238", + "elevation_ft": "2119", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Joaçaba", + "scheduled_service": "no", + "gps_code": "SNIM", + "local_code": "SNIM" + }, + { + "id": "37122", + "ident": "SNIN", + "type": "small_airport", + "name": "Prainha Airport", + "latitude_deg": "-1.784101", + "longitude_deg": "-53.489909", + "elevation_ft": "151", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Prainha", + "scheduled_service": "no", + "gps_code": "SI7L", + "local_code": "PA0331", + "keywords": "SNIN, Wilson Ribeiro Airport" + }, + { + "id": "37123", + "ident": "SNIO", + "type": "small_airport", + "name": "Cipó Airport", + "latitude_deg": "-11.1131", + "longitude_deg": "-38.2913", + "elevation_ft": "732", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Cipó", + "scheduled_service": "no", + "gps_code": "SNIO" + }, + { + "id": "325", + "ident": "SNIP", + "type": "small_airport", + "name": "Itapetinga Airport", + "latitude_deg": "-15.244500160217285", + "longitude_deg": "-40.277198791503906", + "elevation_ft": "915", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Itapetinga", + "scheduled_service": "no", + "gps_code": "SNIP", + "iata_code": "QIT", + "local_code": "SNIP" + }, + { + "id": "323533", + "ident": "SNIQ", + "type": "heliport", + "name": "Morro do Ouro II Heliport", + "latitude_deg": "-17.177657", + "longitude_deg": "-46.878991", + "elevation_ft": "2395", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Paracatu", + "scheduled_service": "no", + "gps_code": "SNIQ", + "local_code": "SNIQ" + }, + { + "id": "37124", + "ident": "SNIR", + "type": "small_airport", + "name": "Fazenda Mata Escura Airport", + "latitude_deg": "-5.7427778244018555", + "longitude_deg": "-43.5988883972168", + "elevation_ft": "712", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Parnarama", + "scheduled_service": "no", + "gps_code": "SNIR" + }, + { + "id": "37125", + "ident": "SNIS", + "type": "small_airport", + "name": "Fazenda Rio Largo Airport", + "latitude_deg": "-5.196944236755371", + "longitude_deg": "-43.5977783203125", + "elevation_ft": "459", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Caxias", + "scheduled_service": "no", + "gps_code": "SNIS" + }, + { + "id": "326", + "ident": "SNIT", + "type": "small_airport", + "name": "Ibotirama Airport", + "latitude_deg": "-12.168600082397461", + "longitude_deg": "-43.22209930419922", + "elevation_ft": "1398", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Ibotirama", + "scheduled_service": "no", + "gps_code": "SNIT", + "local_code": "SNIT" + }, + { + "id": "327", + "ident": "SNIU", + "type": "small_airport", + "name": "Ipiaú Airport", + "latitude_deg": "-14.173538", + "longitude_deg": "-39.68399", + "elevation_ft": "433", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Ipiaú", + "scheduled_service": "no", + "gps_code": "SNIU", + "iata_code": "IPU", + "local_code": "BA0030" + }, + { + "id": "45574", + "ident": "SNIV", + "type": "small_airport", + "name": "Fazenda Jumari Airport", + "latitude_deg": "-18.646843", + "longitude_deg": "-49.88542", + "elevation_ft": "1424", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Ipiaçu", + "scheduled_service": "no", + "gps_code": "SNIV" + }, + { + "id": "339794", + "ident": "SNIW", + "type": "small_airport", + "name": "Fazenda Carmelo Airport", + "latitude_deg": "-21.479299", + "longitude_deg": "-55.330596", + "elevation_ft": "1637", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Maracaju", + "scheduled_service": "no", + "gps_code": "SNIW", + "local_code": "MS0211" + }, + { + "id": "45594", + "ident": "SNIX", + "type": "small_airport", + "name": "Fazenda Masutti Airport", + "latitude_deg": "-13.553333", + "longitude_deg": "-59.100278", + "elevation_ft": "1617", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campos De Júlio", + "scheduled_service": "no", + "gps_code": "SNIX" + }, + { + "id": "37126", + "ident": "SNIY", + "type": "small_airport", + "name": "Ibimirim Airport", + "latitude_deg": "-8.50027847290039", + "longitude_deg": "-37.66694259643555", + "elevation_ft": "1329", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Ibimirim", + "scheduled_service": "no", + "gps_code": "SNIY" + }, + { + "id": "45618", + "ident": "SNIZ", + "type": "small_airport", + "name": "Fazenda Jaqueline Airport", + "latitude_deg": "-12.8825", + "longitude_deg": "-60.119444", + "elevation_ft": "1772", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Vilhena", + "scheduled_service": "no", + "gps_code": "SNIZ" + }, + { + "id": "37425", + "ident": "SNJA", + "type": "small_airport", + "name": "Capivari Airport", + "latitude_deg": "-30.134621", + "longitude_deg": "-50.511431", + "elevation_ft": "43", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Capivari do Sul", + "scheduled_service": "no", + "gps_code": "SNJA", + "local_code": "RS0085", + "keywords": "SSCV" + }, + { + "id": "328", + "ident": "SNJB", + "type": "small_airport", + "name": "Jacobina Airport", + "latitude_deg": "-11.163200378417969", + "longitude_deg": "-40.5531005859375", + "elevation_ft": "1640", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Jacobina", + "scheduled_service": "no", + "gps_code": "SNJB", + "iata_code": "JCM", + "local_code": "SNJB" + }, + { + "id": "37128", + "ident": "SNJC", + "type": "small_airport", + "name": "Fazenda Agua Boa Airport", + "latitude_deg": "-5.961111068725586", + "longitude_deg": "-47.3922233581543", + "elevation_ft": "495", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Ribamar Fiquene", + "scheduled_service": "no", + "gps_code": "SNJC" + }, + { + "id": "329", + "ident": "SNJD", + "type": "small_airport", + "name": "João Durval Carneiro Airport", + "latitude_deg": "-12.2003", + "longitude_deg": "-38.906799", + "elevation_ft": "768", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Feira De Santana", + "scheduled_service": "yes", + "gps_code": "SDIY", + "iata_code": "FEC", + "local_code": "BA0013", + "wikipedia_link": "https://en.wikipedia.org/wiki/Feira_de_Santana_Airport", + "keywords": "SNJD, SBFE" + }, + { + "id": "37129", + "ident": "SNJE", + "type": "small_airport", + "name": "Fazenda Trijunção Airport", + "latitude_deg": "-14.795278", + "longitude_deg": "-46.005", + "elevation_ft": "3097", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Jaborandi", + "scheduled_service": "no", + "gps_code": "SDZI", + "local_code": "BA0083", + "keywords": "SNJE, Fazenda Sertão do Formoso" + }, + { + "id": "46106", + "ident": "SNJG", + "type": "small_airport", + "name": "Fazenda São José da Lagoa Airport", + "latitude_deg": "-14.58202", + "longitude_deg": "-50.708303", + "elevation_ft": "1286", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Nova Crixás", + "scheduled_service": "no", + "local_code": "GO0099", + "keywords": "SNJG" + }, + { + "id": "37130", + "ident": "SNJH", + "type": "small_airport", + "name": "São José do Jacuípe Airport", + "latitude_deg": "-11.452777862548828", + "longitude_deg": "-40.04222106933594", + "elevation_ft": "1391", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São José Do Jacuípe", + "scheduled_service": "no", + "gps_code": "SNJH" + }, + { + "id": "330", + "ident": "SNJI", + "type": "small_airport", + "name": "Fazenda Fortaleza de Santa Terezinha Airport", + "latitude_deg": "-17.186800003051758", + "longitude_deg": "-44.64950180053711", + "elevation_ft": "2077", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Jequitaí", + "scheduled_service": "no", + "gps_code": "SNJI", + "local_code": "SNJI" + }, + { + "id": "46354", + "ident": "SNJJ", + "type": "small_airport", + "name": "Fazenda Vô Anízio Airport", + "latitude_deg": "-20.715278", + "longitude_deg": "-55.379722", + "elevation_ft": "837", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Dois Irmãos Do Buriti", + "scheduled_service": "no", + "gps_code": "SNJJ", + "local_code": "SNJJ" + }, + { + "id": "331", + "ident": "SNJK", + "type": "small_airport", + "name": "Jequié Airport", + "latitude_deg": "-13.877699851989746", + "longitude_deg": "-40.07160186767578", + "elevation_ft": "646", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Jequié", + "scheduled_service": "no", + "gps_code": "SNJK", + "iata_code": "JEQ", + "local_code": "SNJK" + }, + { + "id": "37131", + "ident": "SNJL", + "type": "small_airport", + "name": "Fazenda do Rochedo Airport", + "latitude_deg": "-21.845556259155273", + "longitude_deg": "-43.1875", + "elevation_ft": "2300", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Juiz De Fora", + "scheduled_service": "no", + "gps_code": "SNJL" + }, + { + "id": "42740", + "ident": "SNJM", + "type": "small_airport", + "name": "Aeroporto Elias Breder Airport", + "latitude_deg": "-20.259721755981445", + "longitude_deg": "-42.18388748168945", + "elevation_ft": "2723", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Manhuaçu", + "scheduled_service": "no", + "gps_code": "SNJM" + }, + { + "id": "332", + "ident": "SNJN", + "type": "small_airport", + "name": "Januária Airport", + "latitude_deg": "-15.473799705505371", + "longitude_deg": "-44.385501861572266", + "elevation_ft": "1575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Januária", + "scheduled_service": "no", + "gps_code": "SNJN", + "iata_code": "JNA", + "local_code": "SNJN" + }, + { + "id": "333", + "ident": "SNJO", + "type": "small_airport", + "name": "Aeroclube da Paraíba Airport", + "latitude_deg": "-7.09199", + "longitude_deg": "-34.841599", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "João Pessoa", + "scheduled_service": "no", + "gps_code": "SNJO", + "local_code": "SNJO" + }, + { + "id": "334", + "ident": "SNJP", + "type": "small_airport", + "name": "João Pinheiro Airport", + "latitude_deg": "-17.787500381469727", + "longitude_deg": "-46.119998931884766", + "elevation_ft": "2990", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "João Pinheiro", + "scheduled_service": "no", + "gps_code": "SNJP", + "local_code": "SNJP" + }, + { + "id": "335", + "ident": "SNJQ", + "type": "small_airport", + "name": "Jequitinhonha Airport", + "latitude_deg": "-16.4419002532959", + "longitude_deg": "-41.03689956665039", + "elevation_ft": "853", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Jequitinhonha", + "scheduled_service": "no", + "gps_code": "SNJQ", + "local_code": "SNJQ" + }, + { + "id": "336", + "ident": "SNJR", + "type": "small_airport", + "name": "Prefeito Octávio de Almeida Neves Airport", + "latitude_deg": "-21.0849990845", + "longitude_deg": "-44.2247238159", + "elevation_ft": "3117", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "São João Del Rei", + "scheduled_service": "no", + "gps_code": "SNJR", + "iata_code": "JDR", + "local_code": "SNJR", + "wikipedia_link": "https://en.wikipedia.org/wiki/S%C3%A3o_Jo%C3%A3o_del-Rei_Airport" + }, + { + "id": "37132", + "ident": "SNJS", + "type": "small_airport", + "name": "Jardim do Seridó Airport", + "latitude_deg": "-6.541110992431641", + "longitude_deg": "-36.731666564941406", + "elevation_ft": "837", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Jardim Do Seridó", + "scheduled_service": "no", + "gps_code": "SNJS" + }, + { + "id": "37133", + "ident": "SNJT", + "type": "small_airport", + "name": "Fazenda Caraíbas Airport", + "latitude_deg": "-15.654167175292969", + "longitude_deg": "-43.401668548583984", + "elevation_ft": "1811", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Janaúba", + "scheduled_service": "no", + "gps_code": "SNJT" + }, + { + "id": "339799", + "ident": "SNJU", + "type": "small_airport", + "name": "Nossa Senhora da Penha Airport", + "latitude_deg": "-10.812993", + "longitude_deg": "-52.746539", + "elevation_ft": "1138", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São José do Xingu", + "scheduled_service": "no", + "gps_code": "SNJU", + "local_code": "MT0256" + }, + { + "id": "337", + "ident": "SNJV", + "type": "small_airport", + "name": "Fazenda Santa Mônica Airport", + "latitude_deg": "-15.998333", + "longitude_deg": "-43.73833", + "elevation_ft": "2077", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "São João Da Ponte", + "scheduled_service": "no", + "gps_code": "SNJV", + "local_code": "SNJV" + }, + { + "id": "338", + "ident": "SNJW", + "type": "small_airport", + "name": "Jaraguá Airport", + "latitude_deg": "-20.040300369262695", + "longitude_deg": "-47.42150115966797", + "elevation_ft": "1909", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Sacramento", + "scheduled_service": "no", + "gps_code": "SNJW", + "local_code": "SNJW" + }, + { + "id": "37135", + "ident": "SNJX", + "type": "heliport", + "name": "Hospital Monte Sinai Heliport", + "latitude_deg": "-21.781061", + "longitude_deg": "-43.364834", + "elevation_ft": "2776", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Juiz de Fora", + "scheduled_service": "no", + "gps_code": "SNJX", + "local_code": "MG0256" + }, + { + "id": "45616", + "ident": "SNJY", + "type": "heliport", + "name": "Termoaçu Heliport", + "latitude_deg": "-5.3825", + "longitude_deg": "-36.821944", + "elevation_ft": "72", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Alto Do Rodrigues", + "scheduled_service": "no", + "gps_code": "SNJY" + }, + { + "id": "37136", + "ident": "SNJZ", + "type": "small_airport", + "name": "Fazenda Santa Izabel do Porto Seguro da Jaú Airport", + "latitude_deg": "-7.090949", + "longitude_deg": "-52.935777", + "elevation_ft": "804", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "São Félix do Xingu", + "scheduled_service": "no", + "keywords": "SNJZ" + }, + { + "id": "45635", + "ident": "SNKA", + "type": "heliport", + "name": "Fazenda Perto d`Água Heliport", + "latitude_deg": "-23.253889", + "longitude_deg": "-48.9075", + "elevation_ft": "2041", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Avaré", + "scheduled_service": "no", + "gps_code": "SNKA" + }, + { + "id": "37137", + "ident": "SNKB", + "type": "small_airport", + "name": "Aeroclube Airport", + "latitude_deg": "-7.178332805633545", + "longitude_deg": "-35.99027633666992", + "elevation_ft": "1926", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Campina Grande", + "scheduled_service": "no", + "gps_code": "SNKB" + }, + { + "id": "37138", + "ident": "SNKC", + "type": "small_airport", + "name": "Cocos Airport", + "latitude_deg": "-14.17277778", + "longitude_deg": "-44.54666667", + "elevation_ft": "2018", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Cocos", + "scheduled_service": "no", + "gps_code": "SNKC" + }, + { + "id": "339", + "ident": "SNKD", + "type": "small_airport", + "name": "Conceição do Mato Dentro Airport", + "latitude_deg": "-19.020299911499023", + "longitude_deg": "-43.43389892578125", + "elevation_ft": "2196", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Conceição Do Mato Dentro", + "scheduled_service": "no", + "gps_code": "SNKD", + "local_code": "SNKD" + }, + { + "id": "340", + "ident": "SNKE", + "type": "closed", + "name": "Santana do Araguaia Airport", + "latitude_deg": "-9.31997", + "longitude_deg": "-50.328499", + "elevation_ft": "597", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santana do Araguaia", + "scheduled_service": "no", + "iata_code": "CMP", + "local_code": "PA0017", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santana_do_Araguaia_Airport", + "keywords": "SNKE" + }, + { + "id": "32186", + "ident": "SNKF", + "type": "small_airport", + "name": "Das Bandeirinhas Airport", + "latitude_deg": "-20.738585", + "longitude_deg": "-43.797444", + "elevation_ft": "3478", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Conselheiro Lafaiete", + "scheduled_service": "no", + "gps_code": "SNKF", + "keywords": "QDF" + }, + { + "id": "37139", + "ident": "SNKG", + "type": "heliport", + "name": "Ama Heliport", + "latitude_deg": "-23.383333206176758", + "longitude_deg": "-46.30861282348633", + "elevation_ft": "2687", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Arujá", + "scheduled_service": "no", + "gps_code": "SNKG" + }, + { + "id": "37140", + "ident": "SNKH", + "type": "small_airport", + "name": "Creputiá Airport", + "latitude_deg": "-8.116944", + "longitude_deg": "-57.117222", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Creputiá", + "scheduled_service": "no", + "gps_code": "SNKH", + "local_code": "PA0093" + }, + { + "id": "341", + "ident": "SNKI", + "type": "small_airport", + "name": "Cachoeiro do Itapemirim - Raimundo de Andrade Airport", + "latitude_deg": "-20.834299", + "longitude_deg": "-41.1856", + "elevation_ft": "335", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Cachoeiro do Itapemirim", + "scheduled_service": "no", + "gps_code": "SNKI", + "iata_code": "CDI", + "local_code": "ES0006", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cachoeiro_de_Itapemirim_Airport", + "keywords": "QXD" + }, + { + "id": "37141", + "ident": "SNKJ", + "type": "small_airport", + "name": "Fazenda Rio Dourado Airport", + "latitude_deg": "-8.34416675567627", + "longitude_deg": "-51.45138931274414", + "elevation_ft": "814", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Cumaru Do Norte", + "scheduled_service": "no", + "gps_code": "SNKJ" + }, + { + "id": "342", + "ident": "SNKK", + "type": "small_airport", + "name": "Caicó Airport", + "latitude_deg": "-6.439169883728027", + "longitude_deg": "-37.07830047607422", + "elevation_ft": "600", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Caicó", + "scheduled_service": "no", + "gps_code": "SNKK", + "local_code": "SNKK" + }, + { + "id": "29793", + "ident": "SNKL", + "type": "small_airport", + "name": "Colinas Airport", + "latitude_deg": "-5.966939926147461", + "longitude_deg": "-44.2338981628418", + "elevation_ft": "394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Colinas", + "scheduled_service": "no", + "gps_code": "SNKL", + "iata_code": "0" + }, + { + "id": "37142", + "ident": "SNKM", + "type": "heliport", + "name": "Margarida Heliport", + "latitude_deg": "-8.09749984741211", + "longitude_deg": "-35.17527770996094", + "elevation_ft": "604", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Moreno", + "scheduled_service": "no", + "gps_code": "SNKM" + }, + { + "id": "37143", + "ident": "SNKN", + "type": "small_airport", + "name": "Currais Novos Airport", + "latitude_deg": "-6.280832767486572", + "longitude_deg": "-36.540279388427734", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Currais Novos", + "scheduled_service": "no", + "gps_code": "SNKN", + "iata_code": "QCP" + }, + { + "id": "343", + "ident": "SNKO", + "type": "small_airport", + "name": "Brotas de Macaúbas Airport", + "latitude_deg": "-11.99940013885498", + "longitude_deg": "-42.6348991394043", + "elevation_ft": "2667", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Brotas De Macaúbas", + "scheduled_service": "no", + "gps_code": "SNKO", + "local_code": "SNKO" + }, + { + "id": "339810", + "ident": "SNKP", + "type": "small_airport", + "name": "Conquista do Pontal Airport", + "latitude_deg": "-22.385159", + "longitude_deg": "-52.110901", + "elevation_ft": "1342", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mirante do Paranapanema", + "scheduled_service": "no", + "gps_code": "SNKP", + "local_code": "SP0230" + }, + { + "id": "37145", + "ident": "SNKQ", + "type": "small_airport", + "name": "Klaus Mangold Airport", + "latitude_deg": "-2.39194393157959", + "longitude_deg": "-47.845001220703125", + "elevation_ft": "200", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Ipixuna Do Pará", + "scheduled_service": "no", + "gps_code": "SNKQ" + }, + { + "id": "37146", + "ident": "SNKR", + "type": "small_airport", + "name": "Corrente Airport", + "latitude_deg": "-10.451944351196289", + "longitude_deg": "-45.136390686035156", + "elevation_ft": "1552", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Corrente", + "scheduled_service": "no", + "gps_code": "SNKR" + }, + { + "id": "37147", + "ident": "SNKS", + "type": "small_airport", + "name": "Santa Rita de Cássia Airport", + "latitude_deg": "-10.98927", + "longitude_deg": "-44.51572", + "elevation_ft": "1503", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Santa Rita de Cássia", + "scheduled_service": "no", + "gps_code": "SNKS", + "local_code": "BA0064" + }, + { + "id": "37148", + "ident": "SNKT", + "type": "small_airport", + "name": "Crepurizinho Airport", + "latitude_deg": "-6.8444437980651855", + "longitude_deg": "-56.58944320678711", + "elevation_ft": "1092", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SNKT" + }, + { + "id": "37149", + "ident": "SNKU", + "type": "small_airport", + "name": "Canudos Airport", + "latitude_deg": "-9.900555610656738", + "longitude_deg": "-39.133609771728516", + "elevation_ft": "1247", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Canudos", + "scheduled_service": "no", + "gps_code": "SNKU" + }, + { + "id": "37150", + "ident": "SNKV", + "type": "small_airport", + "name": "Fazenda Campo Verde Airport", + "latitude_deg": "1.04278004169", + "longitude_deg": "-50.516700744599994", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Tartarugalzinho", + "scheduled_service": "no", + "gps_code": "SNKV" + }, + { + "id": "45632", + "ident": "SNKW", + "type": "small_airport", + "name": "Fazenda Boa Sorte Airport", + "latitude_deg": "-21.918889", + "longitude_deg": "-50.636389", + "elevation_ft": "1398", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Iacri", + "scheduled_service": "no", + "gps_code": "SNKW" + }, + { + "id": "37151", + "ident": "SNKX", + "type": "small_airport", + "name": "Marborges Airport", + "latitude_deg": "-1.9716670513153076", + "longitude_deg": "-48.628055572509766", + "elevation_ft": "114", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Moju", + "scheduled_service": "no", + "gps_code": "SNKX" + }, + { + "id": "45601", + "ident": "SNKY", + "type": "small_airport", + "name": "Fazenda Cikel Airport", + "latitude_deg": "-3.657594", + "longitude_deg": "-48.823726", + "elevation_ft": "299", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Paragominas", + "scheduled_service": "no", + "gps_code": "SNKY" + }, + { + "id": "37152", + "ident": "SNKZ", + "type": "small_airport", + "name": "Fazenda Remanso do Pito Airport", + "latitude_deg": "-23.20138931274414", + "longitude_deg": "-53.85555648803711", + "elevation_ft": "912", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Naviraí", + "scheduled_service": "no", + "gps_code": "SNKZ" + }, + { + "id": "344", + "ident": "SNLA", + "type": "small_airport", + "name": "Fazenda Lagoa das Antas Airport", + "latitude_deg": "-6.567500114440918", + "longitude_deg": "-49.719444274902344", + "elevation_ft": "899", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Canaã Dos Carajás", + "scheduled_service": "no", + "gps_code": "SNLA", + "local_code": "SNLA" + }, + { + "id": "30080", + "ident": "SNLB", + "type": "small_airport", + "name": "Livramento do Brumado Airport", + "latitude_deg": "-13.6613", + "longitude_deg": "-41.8571", + "elevation_ft": "1615", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Livramento De Nossa Senhora", + "scheduled_service": "no", + "gps_code": "SNLB" + }, + { + "id": "37153", + "ident": "SNLC", + "type": "small_airport", + "name": "Las Casas Airport", + "latitude_deg": "-7.966944217681885", + "longitude_deg": "-50.0172233581543", + "elevation_ft": "1969", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Las Casas", + "scheduled_service": "no", + "gps_code": "SNLC" + }, + { + "id": "37154", + "ident": "SNLD", + "type": "small_airport", + "name": "Fazenda Serra Azul Airport", + "latitude_deg": "-5.696667194366455", + "longitude_deg": "-56.494720458984375", + "elevation_ft": "472", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SNLD" + }, + { + "id": "45640", + "ident": "SNLE", + "type": "heliport", + "name": "Hospital Geral de Barueri Heliport", + "latitude_deg": "-23.496667", + "longitude_deg": "-46.872222", + "elevation_ft": "2556", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SNLE" + }, + { + "id": "37155", + "ident": "SNLF", + "type": "small_airport", + "name": "Filial Campo Florido Airport", + "latitude_deg": "-19.813888549804688", + "longitude_deg": "-48.738887786865234", + "elevation_ft": "1959", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Campo Florido", + "scheduled_service": "no", + "gps_code": "SNLF" + }, + { + "id": "43320", + "ident": "SNLG", + "type": "small_airport", + "name": "Serra do Cipó Airport", + "latitude_deg": "-19.398611", + "longitude_deg": "-43.746387", + "elevation_ft": "2621", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Jaboticatubas", + "scheduled_service": "no", + "gps_code": "SNLG", + "local_code": "MG0155" + }, + { + "id": "37156", + "ident": "SNLH", + "type": "small_airport", + "name": "Lajinha Airport", + "latitude_deg": "-20.140277862548828", + "longitude_deg": "-41.60916519165039", + "elevation_ft": "2051", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Lajinha", + "scheduled_service": "no", + "gps_code": "SNLH" + }, + { + "id": "345", + "ident": "SNLI", + "type": "small_airport", + "name": "Abaeté Airport", + "latitude_deg": "-19.1556", + "longitude_deg": "-45.494801", + "elevation_ft": "2178", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Abaeté", + "scheduled_service": "no", + "gps_code": "SNLI", + "local_code": "MG0040", + "keywords": "Doutor José Mourão" + }, + { + "id": "37157", + "ident": "SNLJ", + "type": "small_airport", + "name": "Agropecuária Céu Aberto Ltda Airport", + "latitude_deg": "-9.516667366027832", + "longitude_deg": "-61.25", + "elevation_ft": "3428", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Aripuanã", + "scheduled_service": "no", + "gps_code": "SNLJ" + }, + { + "id": "37158", + "ident": "SNLK", + "type": "small_airport", + "name": "Agropecuária Ferreira Penço Ltda Airport", + "latitude_deg": "-9.715832710266113", + "longitude_deg": "-61.04666519165039", + "elevation_ft": "3297", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Aripuanã", + "scheduled_service": "no", + "gps_code": "SNLK" + }, + { + "id": "37159", + "ident": "SNLL", + "type": "heliport", + "name": "Brennand Heliport", + "latitude_deg": "-8.580003", + "longitude_deg": "-35.03974", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Ipojuca", + "scheduled_service": "no", + "gps_code": "SNBD", + "local_code": "PE0063", + "keywords": "SJBR, SNLL" + }, + { + "id": "37160", + "ident": "SNLM", + "type": "small_airport", + "name": "Fazenda Agropecuária Rancho 11 Airport", + "latitude_deg": "-15.614167213399998", + "longitude_deg": "-58.9002761841", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Esperidião", + "scheduled_service": "no", + "gps_code": "SNLM" + }, + { + "id": "346", + "ident": "SNLN", + "type": "small_airport", + "name": "Linhares Antônio Edson Azevedo Lima Municipal Airport", + "latitude_deg": "-19.355202", + "longitude_deg": "-40.07128", + "elevation_ft": "131", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Linhares", + "scheduled_service": "no", + "gps_code": "SNLN", + "local_code": "ES0002", + "home_link": "https://linhares.es.gov.br/aeroporto-municipal-de-linhares/", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Linhares" + }, + { + "id": "347", + "ident": "SNLO", + "type": "small_airport", + "name": "São Lourenço Airport", + "latitude_deg": "-22.090900421142578", + "longitude_deg": "-45.044498443603516", + "elevation_ft": "2871", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "São Lourenço", + "scheduled_service": "no", + "gps_code": "SNLO", + "iata_code": "SSO", + "local_code": "SNLO" + }, + { + "id": "37161", + "ident": "SNLP", + "type": "heliport", + "name": "Santa Fé Heliport", + "latitude_deg": "-22.994443893432617", + "longitude_deg": "-46.39083480834961", + "elevation_ft": "2848", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Piracaia", + "scheduled_service": "no", + "gps_code": "SNLP" + }, + { + "id": "348", + "ident": "SNLQ", + "type": "small_airport", + "name": "Fazenda Conforto Airport", + "latitude_deg": "-14.065799713134766", + "longitude_deg": "-50.41590118408203", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Nova Crixás", + "scheduled_service": "no", + "gps_code": "SNLQ", + "local_code": "SNLQ" + }, + { + "id": "37162", + "ident": "SNLR", + "type": "heliport", + "name": "Itautec Heliport", + "latitude_deg": "-23.530832290649414", + "longitude_deg": "-46.57194519042969", + "elevation_ft": "2438", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SNLR" + }, + { + "id": "37163", + "ident": "SNLS", + "type": "heliport", + "name": "São Sebastião Heliport", + "latitude_deg": "-19.704721450805664", + "longitude_deg": "-43.8477783203125", + "elevation_ft": "2677", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Lagoa Santa", + "scheduled_service": "no", + "gps_code": "SNLS" + }, + { + "id": "30252", + "ident": "SNLT", + "type": "small_airport", + "name": "Paulistana Airport", + "latitude_deg": "-8.166388511657715", + "longitude_deg": "-41.15388870239258", + "elevation_ft": "1181", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Paulistana", + "scheduled_service": "no", + "gps_code": "SNLT" + }, + { + "id": "37164", + "ident": "SNLU", + "type": "small_airport", + "name": "Fazenda Boa Luz Airport", + "latitude_deg": "-10.838153", + "longitude_deg": "-37.196016", + "elevation_ft": "171", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SE", + "municipality": "Laranjeiras", + "scheduled_service": "no", + "gps_code": "SIBI", + "local_code": "SE0002", + "keywords": "SNLU" + }, + { + "id": "37165", + "ident": "SNLV", + "type": "small_airport", + "name": "Lavrinhas Airport", + "latitude_deg": "-17.73583221435547", + "longitude_deg": "-43.459442138671875", + "elevation_ft": "3478", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Lavrinhas", + "scheduled_service": "no", + "gps_code": "SNLV" + }, + { + "id": "44444", + "ident": "SNLX", + "type": "small_airport", + "name": "Fazenda Primavera I Airport", + "latitude_deg": "-4.800556182861328", + "longitude_deg": "-48.393333435058594", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Rondon Do Pará", + "scheduled_service": "no", + "gps_code": "SNLX" + }, + { + "id": "349", + "ident": "SNLY", + "type": "small_airport", + "name": "Lagoa da Prata Airport", + "latitude_deg": "-20.061399459838867", + "longitude_deg": "-45.554901123046875", + "elevation_ft": "2159", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Lagoa Da Prata", + "scheduled_service": "no", + "gps_code": "SNLY", + "local_code": "SNLY" + }, + { + "id": "44441", + "ident": "SNLZ", + "type": "small_airport", + "name": "Fazenda Boca da Mata Airport", + "latitude_deg": "-9.431943893429999", + "longitude_deg": "-49.5911102295", + "elevation_ft": "669", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Divinópolis Do Tocantins", + "scheduled_service": "no", + "gps_code": "SNLZ" + }, + { + "id": "350", + "ident": "SNMA", + "type": "small_airport", + "name": "Monte Alegre Airport", + "latitude_deg": "-1.9958", + "longitude_deg": "-54.0742", + "elevation_ft": "325", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Monte Alegre", + "scheduled_service": "no", + "gps_code": "SNMA", + "iata_code": "MTE", + "local_code": "SNMA" + }, + { + "id": "30152", + "ident": "SNMB", + "type": "small_airport", + "name": "Mombaça Airport", + "latitude_deg": "-5.729178", + "longitude_deg": "-39.597932", + "elevation_ft": "748", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Mombaça", + "scheduled_service": "no", + "keywords": "SNMB" + }, + { + "id": "351", + "ident": "SNMC", + "type": "small_airport", + "name": "Macaúbas Airport", + "latitude_deg": "-13.024999618530273", + "longitude_deg": "-42.672298431396484", + "elevation_ft": "2133", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Macaúbas", + "scheduled_service": "no", + "gps_code": "SNMC", + "local_code": "SNMC" + }, + { + "id": "37166", + "ident": "SNMD", + "type": "small_airport", + "name": "Mundico Coelho Airport", + "latitude_deg": "-6.837733", + "longitude_deg": "-56.843234", + "elevation_ft": "469", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SNMD", + "local_code": "PA0097" + }, + { + "id": "43313", + "ident": "SNME", + "type": "small_airport", + "name": "Costa dos Coqueiros Airport", + "latitude_deg": "-12.490391", + "longitude_deg": "-38.023664", + "elevation_ft": "233", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Mata De São João", + "scheduled_service": "no", + "gps_code": "SNME", + "local_code": "SNME" + }, + { + "id": "37167", + "ident": "SNMF", + "type": "small_airport", + "name": "Agropastoril Monte Alegre Airport", + "latitude_deg": "-21.350555419921875", + "longitude_deg": "-46.25055694580078", + "elevation_ft": "2841", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Monte Belo", + "scheduled_service": "no", + "gps_code": "SNMF" + }, + { + "id": "37168", + "ident": "SNMG", + "type": "heliport", + "name": "Miguel Dias Heliport", + "latitude_deg": "-3.766666889190674", + "longitude_deg": "-38.4908332824707", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SNMG" + }, + { + "id": "32337", + "ident": "SNMH", + "type": "closed", + "name": "Magalhaes de Almeida Airport", + "latitude_deg": "-4.476961", + "longitude_deg": "-43.889902", + "elevation_ft": "203", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Codo", + "scheduled_service": "no", + "keywords": "SNMH" + }, + { + "id": "37169", + "ident": "SNMI", + "type": "small_airport", + "name": "Mina Caraíba Airport", + "latitude_deg": "-9.83", + "longitude_deg": "-39.886667", + "elevation_ft": "1476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Jaguarari", + "scheduled_service": "no", + "gps_code": "SNMI", + "local_code": "BA0141" + }, + { + "id": "32338", + "ident": "SNMJ", + "type": "small_airport", + "name": "Maracás Airport", + "latitude_deg": "-13.433300018299999", + "longitude_deg": "-40.4333000183", + "elevation_ft": "3280", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Maracás", + "scheduled_service": "no", + "gps_code": "SNMJ" + }, + { + "id": "352", + "ident": "SNMK", + "type": "small_airport", + "name": "Mocambinho Airport", + "latitude_deg": "-15.093000411987305", + "longitude_deg": "-43.97909927368164", + "elevation_ft": "1519", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Jaíba", + "scheduled_service": "no", + "gps_code": "SNMK", + "local_code": "SNMK" + }, + { + "id": "37170", + "ident": "SNML", + "type": "small_airport", + "name": "Manduca Leão Airport", + "latitude_deg": "-9.544221", + "longitude_deg": "-35.824949", + "elevation_ft": "387", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Rio Largo", + "scheduled_service": "no", + "gps_code": "SNML" + }, + { + "id": "37171", + "ident": "SNMM", + "type": "small_airport", + "name": "Morada Nova de Minas Airport", + "latitude_deg": "-18.593889236450195", + "longitude_deg": "-45.353057861328125", + "elevation_ft": "1988", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Morada Nova De Minas", + "scheduled_service": "no", + "gps_code": "SNMM" + }, + { + "id": "37172", + "ident": "SNMN", + "type": "small_airport", + "name": "Minas Novas Airport", + "latitude_deg": "-17.233888626098633", + "longitude_deg": "-42.58388900756836", + "elevation_ft": "2461", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Minas Novas", + "scheduled_service": "no", + "gps_code": "SNMN" + }, + { + "id": "37173", + "ident": "SNMO", + "type": "small_airport", + "name": "Morada Nova Airport", + "latitude_deg": "-5.083611011505127", + "longitude_deg": "-38.383609771728516", + "elevation_ft": "509", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Morada Nova", + "scheduled_service": "no", + "gps_code": "SNMO" + }, + { + "id": "37174", + "ident": "SNMP", + "type": "small_airport", + "name": "Fazenda Marocopa Airport", + "latitude_deg": "-17.323055267333984", + "longitude_deg": "-46.538055419921875", + "elevation_ft": "1752", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Paracatu", + "scheduled_service": "no", + "gps_code": "SNMP" + }, + { + "id": "37175", + "ident": "SNMQ", + "type": "heliport", + "name": "Tigre Heliport", + "latitude_deg": "-26.316964", + "longitude_deg": "-48.866206", + "elevation_ft": "108", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Joinville", + "scheduled_service": "no", + "gps_code": "SNMQ", + "local_code": "SC0078", + "keywords": "Felipe Hansen" + }, + { + "id": "37176", + "ident": "SNMR", + "type": "small_airport", + "name": "Maraú Airport", + "latitude_deg": "-14.14395", + "longitude_deg": "-39.00699", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Maraú", + "scheduled_service": "no", + "gps_code": "SNMR" + }, + { + "id": "30159", + "ident": "SNMS", + "type": "small_airport", + "name": "Monte Santo de Minas Airport", + "latitude_deg": "-21.175800323486328", + "longitude_deg": "-46.958900451660156", + "elevation_ft": "2936", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Monte Santo De Minas", + "scheduled_service": "no", + "gps_code": "SNMS", + "iata_code": "0" + }, + { + "id": "340472", + "ident": "SNMT", + "type": "heliport", + "name": "Profitus Helipad", + "latitude_deg": "-23.916507", + "longitude_deg": "-45.45551", + "elevation_ft": "148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ilhabela", + "scheduled_service": "no", + "gps_code": "SNMT", + "local_code": "SP0715" + }, + { + "id": "353", + "ident": "SNMU", + "type": "small_airport", + "name": "Mucuri Airport", + "latitude_deg": "-18.048900604248047", + "longitude_deg": "-39.864200592041016", + "elevation_ft": "276", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Mucuri", + "scheduled_service": "yes", + "gps_code": "SNMU", + "iata_code": "MVS", + "local_code": "SNMU" + }, + { + "id": "37177", + "ident": "SNMV", + "type": "small_airport", + "name": "Fazenda Flávia Airport", + "latitude_deg": "-18.350000381469727", + "longitude_deg": "-53.75", + "elevation_ft": "1250", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Alcinópolis", + "scheduled_service": "no", + "gps_code": "SNMV" + }, + { + "id": "37178", + "ident": "SNMW", + "type": "small_airport", + "name": "Agropecuária Paralelo Dez Ltda Airport", + "latitude_deg": "-9.999444007873535", + "longitude_deg": "-61.052223205566406", + "elevation_ft": "3035", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Aripuanã", + "scheduled_service": "no", + "gps_code": "SNMW" + }, + { + "id": "354", + "ident": "SNMX", + "type": "small_airport", + "name": "São Mateus - Ernesto Bonomo Airport", + "latitude_deg": "-18.7213", + "longitude_deg": "-39.833698", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "São Mateus", + "scheduled_service": "no", + "gps_code": "SNMX", + "iata_code": "SBJ", + "local_code": "ES0003", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_Ernesto_Bonomo" + }, + { + "id": "334178", + "ident": "SNMY", + "type": "heliport", + "name": "Medic Life Helipad", + "latitude_deg": "-23.48512", + "longitude_deg": "-46.856907", + "elevation_ft": "2749", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SNMY", + "local_code": "SP0716" + }, + { + "id": "355", + "ident": "SNMZ", + "type": "small_airport", + "name": "Porto de Moz Airport", + "latitude_deg": "-1.7414499521255493", + "longitude_deg": "-52.23609924316406", + "elevation_ft": "53", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Porto De Moz", + "scheduled_service": "no", + "gps_code": "SNMZ", + "iata_code": "PTQ", + "local_code": "SNMZ" + }, + { + "id": "37179", + "ident": "SNNA", + "type": "heliport", + "name": "Albrás Heliport", + "latitude_deg": "-1.5625", + "longitude_deg": "-48.73777770996094", + "elevation_ft": "56", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Barcarena", + "scheduled_service": "no", + "gps_code": "SNNA" + }, + { + "id": "37180", + "ident": "SNNB", + "type": "small_airport", + "name": "Fazenda Cana Brava Airport", + "latitude_deg": "-17.176944732666016", + "longitude_deg": "-46.29750061035156", + "elevation_ft": "1772", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Paracatu", + "scheduled_service": "no", + "gps_code": "SNNB" + }, + { + "id": "37181", + "ident": "SNNC", + "type": "small_airport", + "name": "Rio Capim Airport", + "latitude_deg": "-2.8202779293060303", + "longitude_deg": "-47.8930549621582", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Ipixuna Do Pará", + "scheduled_service": "no", + "gps_code": "SNNC" + }, + { + "id": "356", + "ident": "SNND", + "type": "small_airport", + "name": "Bertin Ltda Airport", + "latitude_deg": "-18.935313", + "longitude_deg": "-49.473345", + "elevation_ft": "1815", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Ituiutaba", + "scheduled_service": "no", + "keywords": "SNND" + }, + { + "id": "37182", + "ident": "SNNE", + "type": "small_airport", + "name": "São João Nepomuceno Airport", + "latitude_deg": "-21.542221069335938", + "longitude_deg": "-43.02111053466797", + "elevation_ft": "1322", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "São João Nepomuceno", + "scheduled_service": "no", + "gps_code": "SNNE" + }, + { + "id": "37183", + "ident": "SNNF", + "type": "small_airport", + "name": "Nossa Senhora de Fátima Airport", + "latitude_deg": "-5.033611", + "longitude_deg": "-42.705555", + "elevation_ft": "607", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Teresina", + "scheduled_service": "no", + "gps_code": "SIPW", + "local_code": "PI0023", + "keywords": "SNNF" + }, + { + "id": "357", + "ident": "SNNH", + "type": "small_airport", + "name": "Carinhanha Airport", + "latitude_deg": "-14.298500061035156", + "longitude_deg": "-43.797298431396484", + "elevation_ft": "1483", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Carinhanha", + "scheduled_service": "no", + "gps_code": "SNNH", + "local_code": "SNNH" + }, + { + "id": "37184", + "ident": "SNNI", + "type": "closed", + "name": "Praia do Forte Airport", + "latitude_deg": "-12.565371", + "longitude_deg": "-38.015812", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Mata De São João", + "scheduled_service": "no", + "gps_code": "SNNI" + }, + { + "id": "37185", + "ident": "SNNJ", + "type": "small_airport", + "name": "Fazenda Santa Cruz Airport", + "latitude_deg": "-14.217778205871582", + "longitude_deg": "-46.8386116027832", + "elevation_ft": "1529", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Iaciara", + "scheduled_service": "no", + "gps_code": "SNNJ" + }, + { + "id": "37186", + "ident": "SNNK", + "type": "small_airport", + "name": "Fazenda Teragro Airport", + "latitude_deg": "-14.769444465637207", + "longitude_deg": "-43.415279388427734", + "elevation_ft": "1512", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Matias Cardoso", + "scheduled_service": "no", + "gps_code": "SNNK" + }, + { + "id": "37187", + "ident": "SNNL", + "type": "heliport", + "name": "Hospital de Olhos de Minas Gerais Heliport", + "latitude_deg": "-19.981368", + "longitude_deg": "-43.944852", + "elevation_ft": "3925", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Nova Lima", + "scheduled_service": "no", + "keywords": "SNNL" + }, + { + "id": "37188", + "ident": "SNNM", + "type": "small_airport", + "name": "Entre Rios - Vitória Airport", + "latitude_deg": "-25.566110610961914", + "longitude_deg": "-51.496665954589844", + "elevation_ft": "3602", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Guarapuava", + "scheduled_service": "no", + "gps_code": "SNNM" + }, + { + "id": "334992", + "ident": "SNNN", + "type": "small_airport", + "name": "Fazenda Buriti II Airport", + "latitude_deg": "-15.989751", + "longitude_deg": "-45.997848", + "elevation_ft": "1673", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Arinos", + "scheduled_service": "no", + "gps_code": "SNNN", + "local_code": "MG0316" + }, + { + "id": "37189", + "ident": "SNNO", + "type": "small_airport", + "name": "Fazenda São Domingos Airport", + "latitude_deg": "-14.063888549804688", + "longitude_deg": "-59.866390228271484", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SNNO" + }, + { + "id": "37190", + "ident": "SNNP", + "type": "small_airport", + "name": "Nilo Peçanha Airport", + "latitude_deg": "-8.066944122314453", + "longitude_deg": "-52.16722106933594", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Nilo Peçanha", + "scheduled_service": "no", + "gps_code": "SNNP" + }, + { + "id": "37191", + "ident": "SNNQ", + "type": "small_airport", + "name": "Fazenda Santa Lúcia Airport", + "latitude_deg": "-23.03888889", + "longitude_deg": "-54.7475", + "elevation_ft": "1640", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SNNQ" + }, + { + "id": "37192", + "ident": "SNNR", + "type": "heliport", + "name": "Modesto Heliport", + "latitude_deg": "-8.111666679382324", + "longitude_deg": "-34.89777755737305", + "elevation_ft": "36", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Recife", + "scheduled_service": "no", + "gps_code": "SNNR" + }, + { + "id": "37193", + "ident": "SNNS", + "type": "small_airport", + "name": "Fazenda Jaibense Airport", + "latitude_deg": "-14.946110725402832", + "longitude_deg": "-43.68111038208008", + "elevation_ft": "1644", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Matias Cardoso", + "scheduled_service": "no", + "gps_code": "SNNS" + }, + { + "id": "358", + "ident": "SNNT", + "type": "small_airport", + "name": "Nova Ponte Airport", + "latitude_deg": "-19.198400497436523", + "longitude_deg": "-47.72869873046875", + "elevation_ft": "3261", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Nova Ponte", + "scheduled_service": "no", + "gps_code": "SNNT", + "local_code": "SNNT" + }, + { + "id": "359", + "ident": "SNNU", + "type": "small_airport", + "name": "Nanuque Airport", + "latitude_deg": "-17.823299407958984", + "longitude_deg": "-40.329898834228516", + "elevation_ft": "591", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Nanuque", + "scheduled_service": "no", + "gps_code": "SNNU", + "iata_code": "NNU", + "local_code": "SNNU" + }, + { + "id": "37194", + "ident": "SNNV", + "type": "small_airport", + "name": "Fazenda Estrela do Sul Airport", + "latitude_deg": "-16.570556640625", + "longitude_deg": "-54.170833587646484", + "elevation_ft": "1099", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pedra Preta", + "scheduled_service": "no", + "gps_code": "SNNV" + }, + { + "id": "37195", + "ident": "SNNX", + "type": "small_airport", + "name": "Fazenda Boa Vista Airport", + "latitude_deg": "-12.8275", + "longitude_deg": "-61.354722", + "elevation_ft": "745", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Corumbiara", + "scheduled_service": "no", + "gps_code": "SI4P", + "local_code": "RO0074", + "keywords": "SNNX" + }, + { + "id": "37196", + "ident": "SNNY", + "type": "small_airport", + "name": "Fazenda Espírito Santo Airport", + "latitude_deg": "-13.280555725097656", + "longitude_deg": "-60.331111907958984", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SNNY" + }, + { + "id": "37197", + "ident": "SNNZ", + "type": "small_airport", + "name": "Fazenda Água Turva Airport", + "latitude_deg": "-22.123611450195312", + "longitude_deg": "-57.10388946533203", + "elevation_ft": "745", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Caracol", + "scheduled_service": "no", + "gps_code": "SNNZ" + }, + { + "id": "37198", + "ident": "SNOA", + "type": "closed", + "name": "Coroatá Airport", + "latitude_deg": "-4.139998", + "longitude_deg": "-44.114656", + "elevation_ft": "157", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Coroatá", + "scheduled_service": "no", + "keywords": "SNOA" + }, + { + "id": "360", + "ident": "SNOB", + "type": "small_airport", + "name": "Sobral Airport", + "latitude_deg": "-3.67889", + "longitude_deg": "-40.336802", + "elevation_ft": "210", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Sobral", + "scheduled_service": "no", + "gps_code": "SNOB", + "local_code": "SNOB", + "keywords": "QBX" + }, + { + "id": "30163", + "ident": "SNOC", + "type": "small_airport", + "name": "Morro do Chapéu Airport", + "latitude_deg": "-11.53439998626709", + "longitude_deg": "-41.1796989440918", + "elevation_ft": "3609", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Morro Do Chapéu", + "scheduled_service": "no", + "gps_code": "SNOC", + "iata_code": "0" + }, + { + "id": "37199", + "ident": "SNOD", + "type": "small_airport", + "name": "Praia do Saco Airport", + "latitude_deg": "-11.421943664550781", + "longitude_deg": "-37.3224983215332", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SE", + "municipality": "Estância", + "scheduled_service": "no", + "gps_code": "SNOD" + }, + { + "id": "30205", + "ident": "SNOE", + "type": "small_airport", + "name": "Oeiras Airport", + "latitude_deg": "-7.018889904022217", + "longitude_deg": "-42.167198181152344", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Oeiras", + "scheduled_service": "no", + "gps_code": "SNOE", + "iata_code": "0" + }, + { + "id": "30229", + "ident": "SNOF", + "type": "small_airport", + "name": "Ouro Fino Airport", + "latitude_deg": "-22.297500610351562", + "longitude_deg": "-46.3932991027832", + "elevation_ft": "2818", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Ouro Fino", + "scheduled_service": "no", + "gps_code": "SNOF", + "iata_code": "0" + }, + { + "id": "138", + "ident": "SNOG", + "type": "small_airport", + "name": "Ceará-Mirim Airport", + "latitude_deg": "-5.661210060119629", + "longitude_deg": "-35.41389846801758", + "elevation_ft": "171", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Ceará-Mirim", + "scheduled_service": "no", + "gps_code": "SNOG", + "local_code": "SB38" + }, + { + "id": "37200", + "ident": "SNOH", + "type": "heliport", + "name": "Atlantis Heliport", + "latitude_deg": "-7.564167022705078", + "longitude_deg": "-34.858612060546875", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Goiana", + "scheduled_service": "no", + "gps_code": "SNOH" + }, + { + "id": "37201", + "ident": "SNOI", + "type": "small_airport", + "name": "Fazenda Rio Mutuca Airport", + "latitude_deg": "-10.434484", + "longitude_deg": "-58.163115", + "elevation_ft": "758", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juara", + "scheduled_service": "no", + "gps_code": "SJRY", + "local_code": "MT0652", + "keywords": "SNOI" + }, + { + "id": "37202", + "ident": "SNOJ", + "type": "small_airport", + "name": "Minalpa - Mineração Alto Parnaíba Ltda. Airport", + "latitude_deg": "-10.4166669846", + "longitude_deg": "-56.388610839799995", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alta Floresta", + "scheduled_service": "no", + "gps_code": "SNOJ" + }, + { + "id": "37203", + "ident": "SNOK", + "type": "small_airport", + "name": "Fazenda Chão de Estrelas Airport", + "latitude_deg": "-2.3272221088409424", + "longitude_deg": "-47.6511116027832", + "elevation_ft": "126", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Aurora Do Pará", + "scheduled_service": "no", + "gps_code": "SNOK" + }, + { + "id": "331593", + "ident": "SNOL", + "type": "small_airport", + "name": "Agropecuária Mariana Airport", + "latitude_deg": "-9.969649", + "longitude_deg": "-56.216799", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alta Floresta", + "scheduled_service": "no", + "gps_code": "SNOL", + "local_code": "MT0260" + }, + { + "id": "361", + "ident": "SNOM", + "type": "small_airport", + "name": "Fazenda Guaporeí Airport", + "latitude_deg": "-15.006699562099998", + "longitude_deg": "-60.2206993103", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SNOM", + "local_code": "SNOM" + }, + { + "id": "37204", + "ident": "SNON", + "type": "heliport", + "name": "Casa de Campo Heliport", + "latitude_deg": "-22.939167022705078", + "longitude_deg": "-47.070556640625", + "elevation_ft": "2316", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SNON" + }, + { + "id": "362", + "ident": "SNOO", + "type": "small_airport", + "name": "Fazenda Quatrilho Airport", + "latitude_deg": "-13.395093", + "longitude_deg": "-55.642545", + "elevation_ft": "1457", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "keywords": "SNOO" + }, + { + "id": "30297", + "ident": "SNOP", + "type": "small_airport", + "name": "Propriá Airport", + "latitude_deg": "-10.25612", + "longitude_deg": "-36.80237", + "elevation_ft": "164", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SE", + "municipality": "Propriá", + "scheduled_service": "no", + "gps_code": "SNOP" + }, + { + "id": "37205", + "ident": "SNOQ", + "type": "small_airport", + "name": "Fazenda Agropecuária Crioulo Airport", + "latitude_deg": "-23.598888397216797", + "longitude_deg": "-55.14250183105469", + "elevation_ft": "1263", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Tacuru", + "scheduled_service": "no", + "gps_code": "SNOQ" + }, + { + "id": "37206", + "ident": "SNOR", + "type": "heliport", + "name": "Fazenda Sesmaria Heliport", + "latitude_deg": "-22.59694480895996", + "longitude_deg": "-46.85361099243164", + "elevation_ft": "2280", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Amparo", + "scheduled_service": "no", + "gps_code": "SNOR" + }, + { + "id": "363", + "ident": "SNOS", + "type": "small_airport", + "name": "Municipal José Figueiredo Airport", + "latitude_deg": "-20.732200622558594", + "longitude_deg": "-46.661800384521484", + "elevation_ft": "2697", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Passos", + "scheduled_service": "no", + "gps_code": "SNOS", + "iata_code": "PSW", + "local_code": "SNOS" + }, + { + "id": "37207", + "ident": "SNOT", + "type": "small_airport", + "name": "Fazenda Santa Fé do Guaporé Airport", + "latitude_deg": "-14.013917", + "longitude_deg": "-59.88146", + "elevation_ft": "951", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SIAY", + "local_code": "MT0674", + "keywords": "SNOT" + }, + { + "id": "37208", + "ident": "SNOU", + "type": "small_airport", + "name": "Feijó Airport", + "latitude_deg": "-8.141213", + "longitude_deg": "-70.340821", + "elevation_ft": "551", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Feijó", + "scheduled_service": "no", + "gps_code": "SNOU", + "iata_code": "FEJ", + "local_code": "AC0003", + "wikipedia_link": "https://en.wikipedia.org/wiki/Feij%C3%B3_Airport", + "keywords": "Novo Aeródromo de Feijó" + }, + { + "id": "37209", + "ident": "SNOV", + "type": "small_airport", + "name": "Povoado de Camaçari Airport", + "latitude_deg": "-10.122006", + "longitude_deg": "-36.291983", + "elevation_ft": "279", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Coruripe", + "scheduled_service": "no", + "gps_code": "SNOV", + "local_code": "AL0010" + }, + { + "id": "37210", + "ident": "SNOW", + "type": "small_airport", + "name": "Fazenda Turmalina Airport", + "latitude_deg": "-21.982221603393555", + "longitude_deg": "-50.97222137451172", + "elevation_ft": "1378", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Martinópolis", + "scheduled_service": "no", + "gps_code": "SNOW" + }, + { + "id": "364", + "ident": "SNOX", + "type": "small_airport", + "name": "Oriximiná Airport", + "latitude_deg": "-1.7140799760818481", + "longitude_deg": "-55.83620071411133", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Oriximiná", + "scheduled_service": "no", + "gps_code": "SNOX", + "iata_code": "ORX", + "local_code": "SNOX" + }, + { + "id": "365", + "ident": "SNOY", + "type": "small_airport", + "name": "Ouricuri Airport", + "latitude_deg": "-7.876520156860352", + "longitude_deg": "-40.091800689697266", + "elevation_ft": "1529", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Ouricuri", + "scheduled_service": "no", + "gps_code": "SNOY", + "local_code": "SNOY" + }, + { + "id": "366", + "ident": "SNOZ", + "type": "small_airport", + "name": "Coronel Alexandre Raposo Airport", + "latitude_deg": "-2.52097", + "longitude_deg": "-44.1213", + "elevation_ft": "154", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Paço Do Lumiar", + "scheduled_service": "no", + "gps_code": "SNOZ", + "local_code": "SNOZ" + }, + { + "id": "367", + "ident": "SNPA", + "type": "small_airport", + "name": "Pará de Minas Airport", + "latitude_deg": "-19.842599868774414", + "longitude_deg": "-44.601200103759766", + "elevation_ft": "2598", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Pará De Minas", + "scheduled_service": "no", + "gps_code": "SNPA", + "local_code": "SNPA" + }, + { + "id": "30247", + "ident": "SNPB", + "type": "small_airport", + "name": "Pastos Bons Airport", + "latitude_deg": "-6.666940212249756", + "longitude_deg": "-44.083900451660156", + "elevation_ft": "197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Pastos Bons", + "scheduled_service": "no", + "gps_code": "SNPB", + "iata_code": "0" + }, + { + "id": "368", + "ident": "SNPC", + "type": "small_airport", + "name": "Picos Airport", + "latitude_deg": "-7.0620598793029785", + "longitude_deg": "-41.52370071411133", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Picos", + "scheduled_service": "no", + "gps_code": "SNPC", + "iata_code": "PCS", + "local_code": "SNPC" + }, + { + "id": "369", + "ident": "SNPD", + "type": "small_airport", + "name": "Patos de Minas Airport", + "latitude_deg": "-18.672800064086914", + "longitude_deg": "-46.4911994934082", + "elevation_ft": "2793", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Patos De Minas", + "scheduled_service": "no", + "gps_code": "SNPD", + "iata_code": "POJ", + "local_code": "SNPD" + }, + { + "id": "370", + "ident": "SNPE", + "type": "small_airport", + "name": "Freitas Melro Airport", + "latitude_deg": "-10.2659", + "longitude_deg": "-36.551498", + "elevation_ft": "197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Penedo", + "scheduled_service": "no", + "local_code": "AL0002", + "keywords": "SNPE" + }, + { + "id": "37211", + "ident": "SNPF", + "type": "small_airport", + "name": "Fazenda Canabrava Airport", + "latitude_deg": "-5.591111183166504", + "longitude_deg": "-43.317779541015625", + "elevation_ft": "689", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Parnarama", + "scheduled_service": "no", + "gps_code": "SNPF" + }, + { + "id": "37212", + "ident": "SNPG", + "type": "closed", + "name": "Porto Grande Airport", + "latitude_deg": "0.866388976574", + "longitude_deg": "-51.4006004333", + "elevation_ft": "197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Porto Grande", + "scheduled_service": "no", + "gps_code": "SNPG" + }, + { + "id": "371", + "ident": "SNPH", + "type": "closed", + "name": "Fazenda Do Cantagalo Airport", + "latitude_deg": "-15.395899772644043", + "longitude_deg": "-44.145198822021484", + "elevation_ft": "1576", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Piedras do Maria Da Cruz", + "scheduled_service": "no", + "gps_code": "SNPH", + "local_code": "SNPH" + }, + { + "id": "30255", + "ident": "SNPI", + "type": "small_airport", + "name": "Piatã Airport", + "latitude_deg": "-13.00059986114502", + "longitude_deg": "-41.775001525878906", + "elevation_ft": "4118", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Piatã", + "scheduled_service": "no", + "gps_code": "SNPI", + "iata_code": "0" + }, + { + "id": "32339", + "ident": "SNPJ", + "type": "small_airport", + "name": "Patrocínio Airport", + "latitude_deg": "-18.909400939941406", + "longitude_deg": "-46.98270034790039", + "elevation_ft": "3229", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Patrocínio", + "scheduled_service": "no", + "gps_code": "SNPJ", + "iata_code": "0" + }, + { + "id": "327421", + "ident": "SNPK", + "type": "heliport", + "name": "WF Heliport", + "latitude_deg": "-26.821561", + "longitude_deg": "-49.14675", + "elevation_ft": "167", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Pomerode", + "scheduled_service": "no", + "gps_code": "SNPK" + }, + { + "id": "37213", + "ident": "SNPL", + "type": "small_airport", + "name": "Fazenda Pacuruxu Airport", + "latitude_deg": "-21.256389617919922", + "longitude_deg": "-51.72888946533203", + "elevation_ft": "1181", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santa Mercedes", + "scheduled_service": "no", + "gps_code": "SNPL" + }, + { + "id": "373", + "ident": "SNPM", + "type": "small_airport", + "name": "Palmeiras Airport", + "latitude_deg": "-12.50055556", + "longitude_deg": "-41.58388889", + "elevation_ft": "2395", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Palmeiras", + "scheduled_service": "no", + "gps_code": "SNPM", + "local_code": "SNPM" + }, + { + "id": "37214", + "ident": "SNPN", + "type": "small_airport", + "name": "Fazenda Água Fria Airport", + "latitude_deg": "-21.030277252197266", + "longitude_deg": "-50.92583465576172", + "elevation_ft": "1378", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Lavínia", + "scheduled_service": "no", + "gps_code": "SNPN" + }, + { + "id": "30277", + "ident": "SNPO", + "type": "small_airport", + "name": "Pompeu Airport", + "latitude_deg": "-19.20330047607422", + "longitude_deg": "-45.02330017089844", + "elevation_ft": "2313", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Pompeu", + "scheduled_service": "no", + "gps_code": "SNPO", + "iata_code": "0" + }, + { + "id": "37215", + "ident": "SNPP", + "type": "small_airport", + "name": "Morro de São Paulo Airport", + "latitude_deg": "-13.428781", + "longitude_deg": "-38.913689", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Cairu", + "scheduled_service": "yes", + "gps_code": "SDGX", + "iata_code": "MXQ", + "local_code": "SDGX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Morro_de_S%C3%A3o_Paulo_Airport", + "keywords": "SNPP" + }, + { + "id": "37216", + "ident": "SNPQ", + "type": "small_airport", + "name": "Pesqueira Airport", + "latitude_deg": "-8.37416744232", + "longitude_deg": "-36.6377792358", + "elevation_ft": "2067", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Pesqueira", + "scheduled_service": "no", + "gps_code": "SNPQ" + }, + { + "id": "37217", + "ident": "SNPR", + "type": "heliport", + "name": "Gilson Machado Heliport", + "latitude_deg": "-8.199722290039062", + "longitude_deg": "-35.616111755371094", + "elevation_ft": "1529", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Gravatá", + "scheduled_service": "no", + "gps_code": "SNPR" + }, + { + "id": "374", + "ident": "SNPS", + "type": "small_airport", + "name": "Pontezinha Airport", + "latitude_deg": "-15.260100364685059", + "longitude_deg": "-46.76240158081055", + "elevation_ft": "3277", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Buritis", + "scheduled_service": "no", + "gps_code": "SNPS", + "local_code": "SNPS" + }, + { + "id": "37218", + "ident": "SNPT", + "type": "small_airport", + "name": "Passa Tempo Airport", + "latitude_deg": "-20.650556564331055", + "longitude_deg": "-44.50055694580078", + "elevation_ft": "3143", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Passa Tempo", + "scheduled_service": "no", + "gps_code": "SNPT" + }, + { + "id": "30244", + "ident": "SNPU", + "type": "small_airport", + "name": "Paraguaçu Airport", + "latitude_deg": "-21.559200286865234", + "longitude_deg": "-45.75170135498047", + "elevation_ft": "2838", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Paraguaçu", + "scheduled_service": "no", + "gps_code": "SNPU", + "iata_code": "0" + }, + { + "id": "327408", + "ident": "SNPV", + "type": "small_airport", + "name": "Solidão Airport", + "latitude_deg": "-30.692516", + "longitude_deg": "-50.557139", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Mostardas", + "scheduled_service": "no", + "gps_code": "SNPV" + }, + { + "id": "37219", + "ident": "SNPW", + "type": "small_airport", + "name": "Piaus Airport", + "latitude_deg": "-8.833610534667969", + "longitude_deg": "-50.00055694580078", + "elevation_ft": "591", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Piaus", + "scheduled_service": "no", + "gps_code": "SNPW" + }, + { + "id": "375", + "ident": "SNPX", + "type": "small_airport", + "name": "Pirapora Airport", + "latitude_deg": "-17.3169002532959", + "longitude_deg": "-44.86029815673828", + "elevation_ft": "1808", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Pirapora", + "scheduled_service": "no", + "gps_code": "SNPX", + "iata_code": "PIV", + "local_code": "SNPX" + }, + { + "id": "376", + "ident": "SNPY", + "type": "small_airport", + "name": "São Sebastião do Paraíso Airport", + "latitude_deg": "-20.948200225830078", + "longitude_deg": "-46.98320007324219", + "elevation_ft": "3110", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "São Sebastião Do Paraíso", + "scheduled_service": "no", + "gps_code": "SNPY", + "local_code": "SNPY" + }, + { + "id": "37220", + "ident": "SNPZ", + "type": "small_airport", + "name": "Pedra Azul Airport", + "latitude_deg": "-16.067222595214844", + "longitude_deg": "-41.16722106933594", + "elevation_ft": "2625", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Pedra Azul", + "scheduled_service": "no", + "gps_code": "SNPZ" + }, + { + "id": "308638", + "ident": "SNQ", + "type": "small_airport", + "name": "San Quintín Military Airstrip", + "latitude_deg": "30.5288", + "longitude_deg": "-115.9462", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCN", + "municipality": "Ensenada", + "scheduled_service": "no", + "iata_code": "SNQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Quint%C3%ADn_Military_Airstrip" + }, + { + "id": "37221", + "ident": "SNQA", + "type": "small_airport", + "name": "Fazenda Tracajá Airport", + "latitude_deg": "-2.6405560970306396", + "longitude_deg": "-47.862220764160156", + "elevation_ft": "138", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Paragominas", + "scheduled_service": "no", + "gps_code": "SNQA" + }, + { + "id": "37222", + "ident": "SNQB", + "type": "small_airport", + "name": "Fazenda Val Paraíso Airport", + "latitude_deg": "-3.168333053588867", + "longitude_deg": "-48.071388244628906", + "elevation_ft": "256", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Paragominas", + "scheduled_service": "no", + "gps_code": "SNQB" + }, + { + "id": "327410", + "ident": "SNQC", + "type": "heliport", + "name": "IGESP Heliport", + "latitude_deg": "-23.561111", + "longitude_deg": "-46.650833", + "elevation_ft": "2890", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SNQC" + }, + { + "id": "377", + "ident": "SNQD", + "type": "small_airport", + "name": "Sousa Airport", + "latitude_deg": "-6.78543996811", + "longitude_deg": "-38.2333984375", + "elevation_ft": "745", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Sousa", + "scheduled_service": "no", + "gps_code": "SNQD", + "local_code": "SNQD" + }, + { + "id": "37223", + "ident": "SNQE", + "type": "small_airport", + "name": "Fazenda Serra Grande Airport", + "latitude_deg": "-6.068889141082764", + "longitude_deg": "-49.84000015258789", + "elevation_ft": "682", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Parauapebas", + "scheduled_service": "no", + "gps_code": "SNQE" + }, + { + "id": "37224", + "ident": "SNQF", + "type": "heliport", + "name": "Ilha Verde Heliport", + "latitude_deg": "-3.220278024673462", + "longitude_deg": "-39.25583267211914", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Trairi", + "scheduled_service": "no", + "gps_code": "SNQF" + }, + { + "id": "378", + "ident": "SNQG", + "type": "small_airport", + "name": "Cangapara Airport", + "latitude_deg": "-6.8463897705078125", + "longitude_deg": "-43.077301025390625", + "elevation_ft": "689", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Floriano", + "scheduled_service": "no", + "gps_code": "SNQG", + "iata_code": "FLB", + "local_code": "SNQG" + }, + { + "id": "327412", + "ident": "SNQH", + "type": "heliport", + "name": "Wheaton Heliport", + "latitude_deg": "-23.715128", + "longitude_deg": "-46.567035", + "elevation_ft": "2605", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Bernardo do Campo", + "scheduled_service": "no", + "gps_code": "SNQH" + }, + { + "id": "37225", + "ident": "SNQI", + "type": "small_airport", + "name": "Fazenda Camagril Agropecuária Airport", + "latitude_deg": "-14.118056297302246", + "longitude_deg": "-57.34111022949219", + "elevation_ft": "2756", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "gps_code": "SNQI" + }, + { + "id": "37226", + "ident": "SNQJ", + "type": "small_airport", + "name": "Rancho Paraíso Airport", + "latitude_deg": "-17.522777557373047", + "longitude_deg": "-55.40055465698242", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SNQJ" + }, + { + "id": "37227", + "ident": "SNQK", + "type": "heliport", + "name": "Muro Alto Beach Resort Heliport", + "latitude_deg": "-8.43722152709961", + "longitude_deg": "-34.983333587646484", + "elevation_ft": "39", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Ipojuca", + "scheduled_service": "no", + "gps_code": "SNQK" + }, + { + "id": "37228", + "ident": "SNQL", + "type": "small_airport", + "name": "Bom Jesus Airport", + "latitude_deg": "-15.734999656677246", + "longitude_deg": "-57.34638977050781", + "elevation_ft": "482", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SNQL" + }, + { + "id": "37229", + "ident": "SNQM", + "type": "small_airport", + "name": "Queimadas Airport", + "latitude_deg": "-10.988332748413086", + "longitude_deg": "-39.62055587768555", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Queimadas", + "scheduled_service": "no", + "gps_code": "SNQM" + }, + { + "id": "327420", + "ident": "SNQN", + "type": "small_airport", + "name": "Fazenda Estrela Airport", + "latitude_deg": "-13.15562", + "longitude_deg": "-52.569736", + "elevation_ft": "1102", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Canarana", + "scheduled_service": "no", + "gps_code": "SNQN" + }, + { + "id": "37230", + "ident": "SNQO", + "type": "small_airport", + "name": "Fazenda Campanário Airport", + "latitude_deg": "-20.410992", + "longitude_deg": "-56.530562", + "elevation_ft": "558", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bodoquena", + "scheduled_service": "no", + "gps_code": "SSNK", + "local_code": "MS0310", + "keywords": "SNQO" + }, + { + "id": "30100", + "ident": "SNQP", + "type": "small_airport", + "name": "Fazenda São Francisco Airport", + "latitude_deg": "-20.5674991607666", + "longitude_deg": "-50.23030090332031", + "elevation_ft": "1437", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Magda", + "scheduled_service": "no", + "gps_code": "SNQP", + "iata_code": "0" + }, + { + "id": "37231", + "ident": "SNQQ", + "type": "heliport", + "name": "Atlântico Offices Heliport", + "latitude_deg": "-22.389999389648438", + "longitude_deg": "-41.776390075683594", + "elevation_ft": "118", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Macaé", + "scheduled_service": "no", + "gps_code": "SNQQ" + }, + { + "id": "37232", + "ident": "SNQR", + "type": "small_airport", + "name": "Fazenda Bahia - Don Bosco Airport", + "latitude_deg": "-16.7277774810791", + "longitude_deg": "-57.233333587646484", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Poconé", + "scheduled_service": "no", + "gps_code": "SNQR" + }, + { + "id": "37233", + "ident": "SNQS", + "type": "small_airport", + "name": "Fazenda Nossa Senhora Auxiliadora Airport", + "latitude_deg": "-22.304443359375", + "longitude_deg": "-54.030555725097656", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ivinhema", + "scheduled_service": "no", + "gps_code": "SNQS" + }, + { + "id": "37234", + "ident": "SNQT", + "type": "small_airport", + "name": "Fazenda Estrela do Sul Airport", + "latitude_deg": "-23.795833587646484", + "longitude_deg": "-53.47972106933594", + "elevation_ft": "1542", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Umuarama", + "scheduled_service": "no", + "gps_code": "SNQT" + }, + { + "id": "379", + "ident": "SNQU", + "type": "small_airport", + "name": "Mucugê Airport", + "latitude_deg": "-13.031200408935547", + "longitude_deg": "-41.44409942626953", + "elevation_ft": "3510", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Mucugê", + "scheduled_service": "no", + "gps_code": "SNQU", + "local_code": "SNQU" + }, + { + "id": "380", + "ident": "SNQV", + "type": "small_airport", + "name": "Curvelo Airport", + "latitude_deg": "-18.749399185180664", + "longitude_deg": "-44.457000732421875", + "elevation_ft": "2205", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Curvelo", + "scheduled_service": "no", + "gps_code": "SNQV", + "local_code": "SNQV" + }, + { + "id": "37235", + "ident": "SNQW", + "type": "small_airport", + "name": "Cururu Airport", + "latitude_deg": "-7.564736", + "longitude_deg": "-57.739871", + "elevation_ft": "453", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Jacareacanga", + "scheduled_service": "no", + "gps_code": "SNQW", + "local_code": "PA0102" + }, + { + "id": "381", + "ident": "SNQX", + "type": "small_airport", + "name": "Quixadá Airport", + "latitude_deg": "-4.97907018661499", + "longitude_deg": "-38.98759841918945", + "elevation_ft": "653", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Quixadá", + "scheduled_service": "no", + "gps_code": "SNQX", + "local_code": "SNQX" + }, + { + "id": "37236", + "ident": "SNQY", + "type": "heliport", + "name": "Colina Verde Heliport", + "latitude_deg": "-21.229444503799996", + "longitude_deg": "-47.795276641799994", + "elevation_ft": "2173", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Preto", + "scheduled_service": "no", + "gps_code": "SNQY" + }, + { + "id": "37237", + "ident": "SNQZ", + "type": "small_airport", + "name": "Fazenda Bagagem Airport", + "latitude_deg": "-22.842777252197266", + "longitude_deg": "-55.570556640625", + "elevation_ft": "1837", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aral Moreira", + "scheduled_service": "no", + "gps_code": "SNQZ" + }, + { + "id": "37238", + "ident": "SNRA", + "type": "small_airport", + "name": "Fazenda Santo André Airport", + "latitude_deg": "-19.736734", + "longitude_deg": "-46.379042", + "elevation_ft": "4101", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Pratinha", + "scheduled_service": "no", + "local_code": "MG0163", + "keywords": "SNUK, SNRA" + }, + { + "id": "382", + "ident": "SNRB", + "type": "small_airport", + "name": "Fazenda Rosa de Maio Airport", + "latitude_deg": "-4.31616", + "longitude_deg": "-56.108461", + "elevation_ft": "102", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SIYR", + "local_code": "PA0064", + "keywords": "SNRB" + }, + { + "id": "37239", + "ident": "SNRC", + "type": "heliport", + "name": "Ouro Verde Heliport", + "latitude_deg": "-25.50777816772461", + "longitude_deg": "-49.33222198486328", + "elevation_ft": "3155", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Curitiba", + "scheduled_service": "no", + "gps_code": "SNRC" + }, + { + "id": "383", + "ident": "SNRD", + "type": "small_airport", + "name": "Prado Airport", + "latitude_deg": "-17.296976", + "longitude_deg": "-39.271131", + "elevation_ft": "89", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Prado", + "scheduled_service": "no", + "gps_code": "SNRD", + "iata_code": "PDF", + "local_code": "BA0048" + }, + { + "id": "384", + "ident": "SNRE", + "type": "small_airport", + "name": "Fazenda Rebeca Airport", + "latitude_deg": "-12.6827", + "longitude_deg": "-43.871498", + "elevation_ft": "1575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Serra Dourada", + "scheduled_service": "no", + "gps_code": "SJCR", + "local_code": "BA0353", + "keywords": "SNRE" + }, + { + "id": "327419", + "ident": "SNRF", + "type": "heliport", + "name": "Ecofabril Heliport", + "latitude_deg": "-23.175832", + "longitude_deg": "-46.938558", + "elevation_ft": "2375", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jundiaí", + "scheduled_service": "no", + "gps_code": "SNRF" + }, + { + "id": "37240", + "ident": "SNRG", + "type": "heliport", + "name": "Furnas Centrais Elétricas S/A Heliport", + "latitude_deg": "-22.955278396606445", + "longitude_deg": "-43.19111251831055", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SNRG" + }, + { + "id": "385", + "ident": "SNRH", + "type": "small_airport", + "name": "Rachid Saliba Airport", + "latitude_deg": "-21.039400100708008", + "longitude_deg": "-45.87220001220703", + "elevation_ft": "2625", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Boa Esperança", + "scheduled_service": "no", + "gps_code": "SNRH", + "local_code": "SNRH" + }, + { + "id": "37241", + "ident": "SNRI", + "type": "heliport", + "name": "Riviera de São Lourenço Heliport", + "latitude_deg": "-23.79777717590332", + "longitude_deg": "-46.05583190917969", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Bertioga", + "scheduled_service": "no", + "gps_code": "SNRI" + }, + { + "id": "37242", + "ident": "SNRJ", + "type": "small_airport", + "name": "Brejo Airport", + "latitude_deg": "-3.6669440269470215", + "longitude_deg": "-42.83388900756836", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Brejo", + "scheduled_service": "no", + "gps_code": "SNRJ" + }, + { + "id": "327417", + "ident": "SNRL", + "type": "heliport", + "name": "Folhamatic Heliport", + "latitude_deg": "-22.759016", + "longitude_deg": "-47.324642", + "elevation_ft": "1886", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Americana", + "scheduled_service": "no", + "gps_code": "SNRL" + }, + { + "id": "386", + "ident": "SNRM", + "type": "small_airport", + "name": "Remanso Airport", + "latitude_deg": "-9.579994", + "longitude_deg": "-42.115917", + "elevation_ft": "1332", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Remanso", + "scheduled_service": "no", + "gps_code": "SNRM", + "local_code": "BA0022" + }, + { + "id": "30343", + "ident": "SNRN", + "type": "small_airport", + "name": "Fazenda Vinte de Maio Airport", + "latitude_deg": "-21.808889389038086", + "longitude_deg": "-49.97111129760742", + "elevation_ft": "1509", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Getulina", + "scheduled_service": "no", + "gps_code": "SNRN" + }, + { + "id": "37243", + "ident": "SNRO", + "type": "heliport", + "name": "Fazenda Salto de Bota Heliport", + "latitude_deg": "-22.31333351135254", + "longitude_deg": "-48.018890380859375", + "elevation_ft": "2372", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Brotas", + "scheduled_service": "no", + "gps_code": "SNRO" + }, + { + "id": "30342", + "ident": "SNRP", + "type": "small_airport", + "name": "Rio Paranaíba Airport", + "latitude_deg": "-19.212499618530273", + "longitude_deg": "-46.2406005859375", + "elevation_ft": "3757", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Rio Paranaíba", + "scheduled_service": "no", + "gps_code": "SNRP", + "iata_code": "0" + }, + { + "id": "37244", + "ident": "SNRQ", + "type": "small_airport", + "name": "Porto Rico Airport", + "latitude_deg": "-6.1041669845581055", + "longitude_deg": "-57.37944412231445", + "elevation_ft": "331", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Jacareacanga", + "scheduled_service": "no", + "gps_code": "SNRQ" + }, + { + "id": "387", + "ident": "SNRR", + "type": "small_airport", + "name": "Fazenda Aratau Airport", + "latitude_deg": "-4.151309967041016", + "longitude_deg": "-50.163299560546875", + "elevation_ft": "604", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Novo Repartimento", + "scheduled_service": "no", + "gps_code": "SNRR", + "local_code": "SNRR" + }, + { + "id": "388", + "ident": "SNRS", + "type": "medium_airport", + "name": "Russas - João De Deus Regional Airport", + "latitude_deg": "-4.94727", + "longitude_deg": "-38.008202", + "elevation_ft": "115", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Russas", + "scheduled_service": "no", + "gps_code": "SNRS", + "local_code": "SNRS" + }, + { + "id": "389", + "ident": "SNRU", + "type": "small_airport", + "name": "Caruaru Airport", + "latitude_deg": "-8.28239", + "longitude_deg": "-36.0135", + "elevation_ft": "1891", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Caruaru", + "scheduled_service": "yes", + "gps_code": "SNRU", + "iata_code": "CAU", + "local_code": "SNRU", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Caruaru" + }, + { + "id": "37245", + "ident": "SNRV", + "type": "small_airport", + "name": "Fazenda Rio Vermelho Airport", + "latitude_deg": "-6.882778167724609", + "longitude_deg": "-49.463890075683594", + "elevation_ft": "450", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Sapucaia", + "scheduled_service": "no", + "gps_code": "SNRV" + }, + { + "id": "37246", + "ident": "SNRW", + "type": "small_airport", + "name": "Fazenda Barreiro Airport", + "latitude_deg": "-9.907221794128418", + "longitude_deg": "-48.6349983215332", + "elevation_ft": "1033", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Miracema Do Tocantins", + "scheduled_service": "no", + "gps_code": "SNRW" + }, + { + "id": "30332", + "ident": "SNRX", + "type": "small_airport", + "name": "Riachão Airport", + "latitude_deg": "-7.350279808044434", + "longitude_deg": "-46.6338996887207", + "elevation_ft": "1312", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Riachão", + "scheduled_service": "no", + "gps_code": "SNRX", + "iata_code": "0" + }, + { + "id": "37247", + "ident": "SNRY", + "type": "heliport", + "name": "Redpoint I Heliport", + "latitude_deg": "-19.97249984741211", + "longitude_deg": "-43.934722900390625", + "elevation_ft": "3812", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SNRY" + }, + { + "id": "311056", + "ident": "SNRZ", + "type": "small_airport", + "name": "Oliveira Airport", + "latitude_deg": "-20.7146", + "longitude_deg": "-44.8653", + "elevation_ft": "3334", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Oliveira", + "scheduled_service": "no", + "gps_code": "SNRZ", + "wikipedia_link": "http://pt.wikipedia.org/wiki/Aer%C3%B3dromo_P%C3%BAblico_de_Oliveira" + }, + { + "id": "37248", + "ident": "SNSA", + "type": "small_airport", + "name": "Fazenda Bom Sucesso Airport", + "latitude_deg": "-17.608610153198242", + "longitude_deg": "-46.703887939453125", + "elevation_ft": "2454", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Vazante", + "scheduled_service": "no", + "gps_code": "SNSA" + }, + { + "id": "37249", + "ident": "SNSB", + "type": "small_airport", + "name": "São Bento Airport", + "latitude_deg": "-2.70444393157959", + "longitude_deg": "-44.844722747802734", + "elevation_ft": "230", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "São Bento", + "scheduled_service": "no", + "gps_code": "SNSB" + }, + { + "id": "30368", + "ident": "SNSC", + "type": "small_airport", + "name": "Sacramento Airport", + "latitude_deg": "-19.89310073852539", + "longitude_deg": "-47.42219924926758", + "elevation_ft": "3288", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Sacramento", + "scheduled_service": "no", + "gps_code": "SNSC", + "iata_code": "0" + }, + { + "id": "37250", + "ident": "SNSD", + "type": "small_airport", + "name": "Franor Airport", + "latitude_deg": "-12.91656", + "longitude_deg": "-45.722453", + "elevation_ft": "2664", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SJFA", + "local_code": "BA0107", + "keywords": "SNSD, São Luiz" + }, + { + "id": "37251", + "ident": "SNSE", + "type": "small_airport", + "name": "Sento Sé Airport", + "latitude_deg": "-9.741389274597168", + "longitude_deg": "-41.84111022949219", + "elevation_ft": "1306", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Sento Sé", + "scheduled_service": "no", + "gps_code": "SNSE" + }, + { + "id": "37252", + "ident": "SNSF", + "type": "small_airport", + "name": "Fazenda Entre Rios Airport", + "latitude_deg": "-21.358627", + "longitude_deg": "-57.101212", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SWER", + "local_code": "MS0370", + "keywords": "SNSF" + }, + { + "id": "390", + "ident": "SNSG", + "type": "small_airport", + "name": "Salgueiro Airport", + "latitude_deg": "-8.047160148620605", + "longitude_deg": "-39.13639831542969", + "elevation_ft": "1539", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Salgueiro", + "scheduled_service": "no", + "gps_code": "SNSG", + "local_code": "SNSG" + }, + { + "id": "32340", + "ident": "SNSH", + "type": "small_airport", + "name": "São José Airport", + "latitude_deg": "-2.574525", + "longitude_deg": "-54.734431", + "elevation_ft": "440", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santarém", + "scheduled_service": "no", + "gps_code": "SNSH" + }, + { + "id": "37253", + "ident": "SNSI", + "type": "small_airport", + "name": "Santa Maria do Suaçuí Airport", + "latitude_deg": "-18.198610305786133", + "longitude_deg": "-42.46611022949219", + "elevation_ft": "1575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Santa Maria Do Suaçuí", + "scheduled_service": "no", + "gps_code": "SNSI" + }, + { + "id": "37254", + "ident": "SNSJ", + "type": "small_airport", + "name": "Fazenda Fogliatelli Airport", + "latitude_deg": "-13.529722213745117", + "longitude_deg": "-58.573333740234375", + "elevation_ft": "1723", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SNSJ" + }, + { + "id": "30395", + "ident": "SNSK", + "type": "small_airport", + "name": "Santa Rita Do Sapucai Airport", + "latitude_deg": "-22.2733", + "longitude_deg": "-45.6394", + "elevation_ft": "2851", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Santa Rita Do Sapucai", + "scheduled_service": "no", + "gps_code": "SJXI", + "local_code": "MG0311", + "keywords": "SNSK" + }, + { + "id": "37255", + "ident": "SNSL", + "type": "small_airport", + "name": "Fazenda Califórnia Airport", + "latitude_deg": "0.338457", + "longitude_deg": "-53.818049", + "elevation_ft": "1680", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Almeirim", + "scheduled_service": "no", + "gps_code": "SDI3", + "local_code": "PA0270", + "keywords": "SNSL, Fazenda Ipitinga" + }, + { + "id": "391", + "ident": "SNSM", + "type": "small_airport", + "name": "Salinópolis Airport", + "latitude_deg": "-0.696111", + "longitude_deg": "-47.336111", + "elevation_ft": "105", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Salinópolis", + "scheduled_service": "yes", + "gps_code": "SNSM", + "iata_code": "OPP", + "local_code": "SNSM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salin%C3%B3polis_Airport" + }, + { + "id": "392", + "ident": "SNSN", + "type": "closed", + "name": "São Raimundo Nonato Airport", + "latitude_deg": "-9.03", + "longitude_deg": "-42.68", + "elevation_ft": "1247", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "São Raimundo Nonato", + "scheduled_service": "no", + "keywords": "SNSN" + }, + { + "id": "393", + "ident": "SNSO", + "type": "small_airport", + "name": "Serro Airport", + "latitude_deg": "-18.60849952697754", + "longitude_deg": "-43.42409896850586", + "elevation_ft": "2428", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Serro", + "scheduled_service": "no", + "gps_code": "SNSO", + "local_code": "SNSO" + }, + { + "id": "37256", + "ident": "SNSP", + "type": "heliport", + "name": "Moinho II Heliport", + "latitude_deg": "-21.944721221923828", + "longitude_deg": "-45.620277404785156", + "elevation_ft": "2958", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "São Gonçalo Do Sapucaí", + "scheduled_service": "no", + "gps_code": "SNSP" + }, + { + "id": "37257", + "ident": "SNSQ", + "type": "heliport", + "name": "Centro Empresarial Nações Unidas - Torre Norte Heliport", + "latitude_deg": "-23.6102771759", + "longitude_deg": "-46.696388244599994", + "elevation_ft": "2900", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SNSQ" + }, + { + "id": "394", + "ident": "SNSR", + "type": "small_airport", + "name": "Fazenda Santos Reis Airport", + "latitude_deg": "-17.54789924621582", + "longitude_deg": "-46.97869873046875", + "elevation_ft": "2165", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Guarda-Mor", + "scheduled_service": "no", + "gps_code": "SNSR", + "local_code": "SNSR" + }, + { + "id": "395", + "ident": "SNSS", + "type": "small_airport", + "name": "Salinas Airport", + "latitude_deg": "-16.20829963684082", + "longitude_deg": "-42.321998596191406", + "elevation_ft": "2504", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Salinas", + "scheduled_service": "no", + "gps_code": "SNSS", + "local_code": "SNSS" + }, + { + "id": "396", + "ident": "SNST", + "type": "small_airport", + "name": "Souto Soares Airport", + "latitude_deg": "-12.097299575805664", + "longitude_deg": "-41.64070129394531", + "elevation_ft": "2753", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Souto Soares", + "scheduled_service": "no", + "gps_code": "SNST", + "local_code": "SNST" + }, + { + "id": "32341", + "ident": "SNSU", + "type": "small_airport", + "name": "Fazenda Pontão Airport", + "latitude_deg": "-6.882288", + "longitude_deg": "-49.15766", + "elevation_ft": "495", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Xinguara", + "scheduled_service": "no", + "keywords": "SNSU, Usina Santa Cruz" + }, + { + "id": "37258", + "ident": "SNSV", + "type": "small_airport", + "name": "Fazenda São Pedro Airport", + "latitude_deg": "-23.663821", + "longitude_deg": "-54.079044", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Eldorado", + "scheduled_service": "no", + "gps_code": "SSGS", + "local_code": "MS0279", + "keywords": "SNSV" + }, + { + "id": "397", + "ident": "SNSW", + "type": "small_airport", + "name": "Soure Airport", + "latitude_deg": "-0.697844", + "longitude_deg": "-48.519759", + "elevation_ft": "43", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Soure", + "scheduled_service": "no", + "gps_code": "SNSW", + "iata_code": "SFK", + "local_code": "SNSW" + }, + { + "id": "37259", + "ident": "SNSX", + "type": "small_airport", + "name": "Fazenda São Martinho Airport", + "latitude_deg": "-20.357312", + "longitude_deg": "-51.255308", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ilha Solteira", + "scheduled_service": "no", + "gps_code": "SNDS", + "local_code": "SP0226", + "keywords": "SNSX" + }, + { + "id": "37260", + "ident": "SNSY", + "type": "small_airport", + "name": "Fazenda São José Airport", + "latitude_deg": "-20.94499969482422", + "longitude_deg": "-56.49611282348633", + "elevation_ft": "1247", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bonito", + "scheduled_service": "no", + "gps_code": "SNSY" + }, + { + "id": "37261", + "ident": "SNSZ", + "type": "small_airport", + "name": "Fazenda Itaguassu Airport", + "latitude_deg": "-21.35555648803711", + "longitude_deg": "-55.619720458984375", + "elevation_ft": "1401", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Maracaju", + "scheduled_service": "no", + "gps_code": "SNSZ" + }, + { + "id": "37262", + "ident": "SNTA", + "type": "small_airport", + "name": "Fazenda São Miguel Airport", + "latitude_deg": "-21.868610382080078", + "longitude_deg": "-50.116390228271484", + "elevation_ft": "1444", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Pompéia", + "scheduled_service": "no", + "gps_code": "SNTA" + }, + { + "id": "37263", + "ident": "SNTB", + "type": "small_airport", + "name": "Afogados da Ingazeira Airport", + "latitude_deg": "-7.723610877990723", + "longitude_deg": "-37.61888885498047", + "elevation_ft": "1844", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Afogados Da Ingazeira", + "scheduled_service": "no", + "gps_code": "SNTB" + }, + { + "id": "37264", + "ident": "SNTC", + "type": "small_airport", + "name": "Tambori Airport", + "latitude_deg": "-5.160819", + "longitude_deg": "-42.72031", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Teresina", + "scheduled_service": "no", + "local_code": "PI0032", + "keywords": "SNWQ, SNTC" + }, + { + "id": "398", + "ident": "SNTD", + "type": "small_airport", + "name": "Fazenda Mamoneira Airport", + "latitude_deg": "-16.586200714111328", + "longitude_deg": "-46.5010986328125", + "elevation_ft": "1862", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Natalândia", + "scheduled_service": "no", + "gps_code": "SNTD", + "local_code": "SNTD" + }, + { + "id": "327415", + "ident": "SNTE", + "type": "heliport", + "name": "Terras II Heliport", + "latitude_deg": "-23.342778", + "longitude_deg": "-47.306111", + "elevation_ft": "2139", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itu", + "scheduled_service": "no", + "gps_code": "SNTE" + }, + { + "id": "399", + "ident": "SNTF", + "type": "small_airport", + "name": "9 de Maio - Teixeira de Freitas Airport", + "latitude_deg": "-17.524499893188", + "longitude_deg": "-39.66849899292", + "elevation_ft": "344", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Teixeira De Freitas", + "scheduled_service": "yes", + "gps_code": "SNTF", + "iata_code": "TXF", + "local_code": "SNTF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Teixeira_de_Freitas_Airport" + }, + { + "id": "37265", + "ident": "SNTG", + "type": "small_airport", + "name": "Afrânio Airport", + "latitude_deg": "-8.610555648803711", + "longitude_deg": "-41.00027847290039", + "elevation_ft": "1703", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Afrânio", + "scheduled_service": "no", + "gps_code": "SNTG" + }, + { + "id": "327413", + "ident": "SNTH", + "type": "heliport", + "name": "Fazenda São Francisco Heliport", + "latitude_deg": "-3.211666", + "longitude_deg": "-45.033333", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Viana", + "scheduled_service": "no", + "gps_code": "SNTH" + }, + { + "id": "400", + "ident": "SNTI", + "type": "small_airport", + "name": "Óbidos Municipal Airport", + "latitude_deg": "-1.867981", + "longitude_deg": "-55.514596", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Óbidos", + "scheduled_service": "yes", + "gps_code": "SNTI", + "iata_code": "OBI", + "local_code": "PA0016", + "wikipedia_link": "https://en.wikipedia.org/wiki/Óbidos_Airport" + }, + { + "id": "37266", + "ident": "SNTJ", + "type": "small_airport", + "name": "Santa Teresa Airport", + "latitude_deg": "-4.291388988494873", + "longitude_deg": "-56.087501525878906", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SNTJ" + }, + { + "id": "30155", + "ident": "SNTK", + "type": "small_airport", + "name": "Monte Carmelo Airport", + "latitude_deg": "-18.718712", + "longitude_deg": "-47.485187", + "elevation_ft": "2969", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Monte Carmelo", + "scheduled_service": "no", + "gps_code": "SD4L", + "local_code": "MG0067", + "keywords": "SNTK" + }, + { + "id": "401", + "ident": "SNTL", + "type": "small_airport", + "name": "Brigadeiro Sampaio Airport", + "latitude_deg": "-4.857619", + "longitude_deg": "-40.37473", + "elevation_ft": "1207", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Tamboril", + "scheduled_service": "no", + "gps_code": "SNXA", + "local_code": "CE0132", + "keywords": "SNTL, Tamboril Airport" + }, + { + "id": "37267", + "ident": "SNTM", + "type": "small_airport", + "name": "Turmalina Airport", + "latitude_deg": "-17.233888626098633", + "longitude_deg": "-42.733890533447266", + "elevation_ft": "2894", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Turmalina", + "scheduled_service": "no", + "gps_code": "SNTM" + }, + { + "id": "334179", + "ident": "SNTN", + "type": "heliport", + "name": "Gama Helipad", + "latitude_deg": "-23.484847", + "longitude_deg": "-46.856024", + "elevation_ft": "2713", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SNTN", + "local_code": "SP0732" + }, + { + "id": "402", + "ident": "SNTO", + "type": "small_airport", + "name": "Juscelino Kubitscheck Airport", + "latitude_deg": "-17.89229965209961", + "longitude_deg": "-41.51359939575195", + "elevation_ft": "1572", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Teófilo Otoni", + "scheduled_service": "no", + "gps_code": "SNTO", + "iata_code": "TFL", + "local_code": "SNTO" + }, + { + "id": "37268", + "ident": "SNTP", + "type": "small_airport", + "name": "Agropalma Airport", + "latitude_deg": "-2.525278091430664", + "longitude_deg": "-48.75194549560547", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Tailândia", + "scheduled_service": "no", + "gps_code": "SNTP" + }, + { + "id": "29741", + "ident": "SNTQ", + "type": "small_airport", + "name": "Buritirama Airport", + "latitude_deg": "-10.724200248718262", + "longitude_deg": "-43.654701232910156", + "elevation_ft": "1690", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Buritirama", + "scheduled_service": "no", + "gps_code": "SNTQ", + "iata_code": "0" + }, + { + "id": "403", + "ident": "SNTR", + "type": "small_airport", + "name": "Piritiba Airport", + "latitude_deg": "-11.7381000519", + "longitude_deg": "-40.569499969499994", + "elevation_ft": "1896", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Piritiba", + "scheduled_service": "no", + "gps_code": "SNTR", + "local_code": "SNTR" + }, + { + "id": "404", + "ident": "SNTS", + "type": "small_airport", + "name": "Aeroporto Brigadeiro Firmino Ayres", + "latitude_deg": "-7.03899", + "longitude_deg": "-37.251598", + "elevation_ft": "869", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Patos", + "scheduled_service": "no", + "gps_code": "SNTS", + "iata_code": "JPO", + "local_code": "PB0005", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_Regional_de_Patos", + "keywords": "Peregrino Filho" + }, + { + "id": "405", + "ident": "SNTT", + "type": "small_airport", + "name": "Tranquilo Testolin Airport", + "latitude_deg": "-18.7582", + "longitude_deg": "-45.107601", + "elevation_ft": "2009", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Felixlândia", + "scheduled_service": "no", + "gps_code": "SNXV", + "local_code": "MG0170", + "keywords": "SNTT" + }, + { + "id": "37269", + "ident": "SNTU", + "type": "small_airport", + "name": "Turiaçu Airport", + "latitude_deg": "-1.665439", + "longitude_deg": "-45.392948", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Turiaçu", + "scheduled_service": "no", + "gps_code": "SNTU" + }, + { + "id": "406", + "ident": "SNTV", + "type": "small_airport", + "name": "Fazenda Veredão Airport", + "latitude_deg": "-15.65530014038086", + "longitude_deg": "-41.65409851074219", + "elevation_ft": "2559", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Taiobeiras", + "scheduled_service": "no", + "gps_code": "SNTV", + "local_code": "SNTV" + }, + { + "id": "37270", + "ident": "SNTW", + "type": "small_airport", + "name": "Senador Teotônio Vilela Airport", + "latitude_deg": "-9.896944", + "longitude_deg": "-36.293056", + "elevation_ft": "443", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Teotônio Vilela", + "scheduled_service": "no", + "keywords": "SNTW" + }, + { + "id": "37271", + "ident": "SNTX", + "type": "small_airport", + "name": "Litorânea Airport", + "latitude_deg": "-1.301944", + "longitude_deg": "-44.904999", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Cururupu", + "scheduled_service": "no", + "gps_code": "SNTX" + }, + { + "id": "37272", + "ident": "SNTY", + "type": "small_airport", + "name": "Correntina Airport", + "latitude_deg": "-13.380556106567383", + "longitude_deg": "-44.61722183227539", + "elevation_ft": "2159", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Correntina", + "scheduled_service": "no", + "gps_code": "SNTY" + }, + { + "id": "37273", + "ident": "SNTZ", + "type": "heliport", + "name": "Toa-toa Heliport", + "latitude_deg": "-16.407222747802734", + "longitude_deg": "-39.04472351074219", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Porto Seguro", + "scheduled_service": "no", + "gps_code": "SNTZ" + }, + { + "id": "340976", + "ident": "SNUA", + "type": "small_airport", + "name": "Fazenda Paulista Airport", + "latitude_deg": "-25.392105", + "longitude_deg": "-54.409799", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Santa Terezinha de Itaipu", + "scheduled_service": "no", + "gps_code": "SNUA", + "local_code": "PR0068" + }, + { + "id": "407", + "ident": "SNUB", + "type": "small_airport", + "name": "Ubá Airport", + "latitude_deg": "-21.121000289916992", + "longitude_deg": "-42.881900787353516", + "elevation_ft": "1115", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Ubá", + "scheduled_service": "no", + "gps_code": "SNUB", + "local_code": "SNUB" + }, + { + "id": "408", + "ident": "SNUC", + "type": "small_airport", + "name": "Açu Airport", + "latitude_deg": "-5.59505", + "longitude_deg": "-36.960899", + "elevation_ft": "364", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Açu", + "scheduled_service": "no", + "gps_code": "SNUC", + "local_code": "RN0003" + }, + { + "id": "37274", + "ident": "SNUD", + "type": "small_airport", + "name": "Urbano Santos Airport", + "latitude_deg": "-3.1997220516204834", + "longitude_deg": "-43.386390686035156", + "elevation_ft": "197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Urbano Santos", + "scheduled_service": "no", + "gps_code": "SNUD" + }, + { + "id": "335002", + "ident": "SNUE", + "type": "small_airport", + "name": "Aero Sepé Aviação Agrícola Airport", + "latitude_deg": "-30.18543", + "longitude_deg": "-53.639973", + "elevation_ft": "509", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "São Sepé", + "scheduled_service": "no", + "gps_code": "SNUE", + "local_code": "RS0121" + }, + { + "id": "37275", + "ident": "SNUF", + "type": "small_airport", + "name": "Fazenda Treis Coringas Airport", + "latitude_deg": "-19.524444580078125", + "longitude_deg": "-47.852500915527344", + "elevation_ft": "3264", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberaba", + "scheduled_service": "no", + "gps_code": "SNUF" + }, + { + "id": "37276", + "ident": "SNUG", + "type": "small_airport", + "name": "Fazenda Eunice Airport", + "latitude_deg": "-14.9555559158", + "longitude_deg": "-59.622779846200004", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SNUG" + }, + { + "id": "30269", + "ident": "SNUH", + "type": "small_airport", + "name": "Piumhi Airport", + "latitude_deg": "-20.438600540200003", + "longitude_deg": "-45.992801666300004", + "elevation_ft": "2444", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Piumhi", + "scheduled_service": "no", + "gps_code": "SNUH" + }, + { + "id": "409", + "ident": "SNUI", + "type": "small_airport", + "name": "Araçuai Airport", + "latitude_deg": "-16.85260009765625", + "longitude_deg": "-42.045101165771484", + "elevation_ft": "1181", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Araçuai", + "scheduled_service": "no", + "gps_code": "SNUI", + "local_code": "SNUI" + }, + { + "id": "37277", + "ident": "SNUJ", + "type": "small_airport", + "name": "Santa Maria da Boa Vista Airport", + "latitude_deg": "-8.781944274902344", + "longitude_deg": "-39.872222900390625", + "elevation_ft": "1253", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Santa Maria Da Boa Vista", + "scheduled_service": "no", + "gps_code": "SNUJ" + }, + { + "id": "37278", + "ident": "SNUK", + "type": "small_airport", + "name": "Fazenda Lago Vermelho Airport", + "latitude_deg": "-17.039579", + "longitude_deg": "-45.489179", + "elevation_ft": "1690", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Buritizeiro", + "scheduled_service": "no", + "gps_code": "SNZY", + "local_code": "MG0175", + "keywords": "SNUK" + }, + { + "id": "37279", + "ident": "SNUL", + "type": "small_airport", + "name": "Fazenda Aurora III Airport", + "latitude_deg": "-21.452499389648438", + "longitude_deg": "-53.35333251953125", + "elevation_ft": "1214", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas Do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SNUL" + }, + { + "id": "37280", + "ident": "SNUM", + "type": "small_airport", + "name": "São José do Egito Airport", + "latitude_deg": "-7.486944198608398", + "longitude_deg": "-37.29111099243164", + "elevation_ft": "2133", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "São José Do Egito", + "scheduled_service": "no", + "gps_code": "SNUM" + }, + { + "id": "410", + "ident": "SNUN", + "type": "small_airport", + "name": "Unaí Airport", + "latitude_deg": "-16.35650062561035", + "longitude_deg": "-46.92770004272461", + "elevation_ft": "1998", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Unaí", + "scheduled_service": "no", + "gps_code": "SNUN", + "local_code": "SNUN" + }, + { + "id": "340980", + "ident": "SNUO", + "type": "heliport", + "name": "Banco Central Helipad", + "latitude_deg": "-22.902012", + "longitude_deg": "-43.182777", + "elevation_ft": "443", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SNUO", + "local_code": "RJ0136" + }, + { + "id": "37281", + "ident": "SNUP", + "type": "small_airport", + "name": "Usina Porto Rico Airport", + "latitude_deg": "-9.802778244018555", + "longitude_deg": "-36.22249984741211", + "elevation_ft": "404", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Campo Alegre", + "scheduled_service": "no", + "gps_code": "SNUP" + }, + { + "id": "37282", + "ident": "SNUQ", + "type": "heliport", + "name": "Pão de Açúcar Heliport", + "latitude_deg": "-23.57404", + "longitude_deg": "-46.65533", + "elevation_ft": "2651", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SNUQ" + }, + { + "id": "340981", + "ident": "SNUR", + "type": "heliport", + "name": "Iguatemi Empresarial Helipad", + "latitude_deg": "-3.753724", + "longitude_deg": "-38.490611", + "elevation_ft": "180", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SNUR", + "local_code": "CE0055" + }, + { + "id": "37283", + "ident": "SNUS", + "type": "small_airport", + "name": "Usina Delta I Airport", + "latitude_deg": "-19.940832138061523", + "longitude_deg": "-47.7783317565918", + "elevation_ft": "2100", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Delta", + "scheduled_service": "no", + "gps_code": "SNUS" + }, + { + "id": "411", + "ident": "SNUT", + "type": "small_airport", + "name": "Utinga Airport", + "latitude_deg": "-12.105500221252441", + "longitude_deg": "-41.074501037597656", + "elevation_ft": "1988", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Utinga", + "scheduled_service": "no", + "gps_code": "SNUT", + "local_code": "SNUT" + }, + { + "id": "37284", + "ident": "SNUU", + "type": "small_airport", + "name": "Uauá Airport", + "latitude_deg": "-9.835000038146973", + "longitude_deg": "-39.49444580078125", + "elevation_ft": "1335", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Uauá", + "scheduled_service": "no", + "gps_code": "SNUU" + }, + { + "id": "37286", + "ident": "SNUW", + "type": "small_airport", + "name": "Sertânia Airport", + "latitude_deg": "-8.057499885559082", + "longitude_deg": "-37.28944396972656", + "elevation_ft": "1968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Sertânia", + "scheduled_service": "no", + "gps_code": "SNUW" + }, + { + "id": "37287", + "ident": "SNUX", + "type": "small_airport", + "name": "Fazenda Santo Antônio Airport", + "latitude_deg": "-21.404722213745117", + "longitude_deg": "-53.30694580078125", + "elevation_ft": "1142", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas Do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SNUX" + }, + { + "id": "37288", + "ident": "SNUY", + "type": "small_airport", + "name": "Buritis Airport", + "latitude_deg": "-15.631667137145996", + "longitude_deg": "-46.428611755371094", + "elevation_ft": "1870", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Buritis", + "scheduled_service": "no", + "gps_code": "SNUY" + }, + { + "id": "37289", + "ident": "SNUZ", + "type": "small_airport", + "name": "Usina Coruripe Airport", + "latitude_deg": "-10.094107", + "longitude_deg": "-36.18639", + "elevation_ft": "210", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Coruripe", + "scheduled_service": "no", + "gps_code": "SNUZ" + }, + { + "id": "37290", + "ident": "SNVA", + "type": "small_airport", + "name": "Fazenda Bela Vista Airport", + "latitude_deg": "-7.987500190734863", + "longitude_deg": "-50.63166809082031", + "elevation_ft": "1037", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Cumaru Do Norte", + "scheduled_service": "no", + "gps_code": "SNVA" + }, + { + "id": "412", + "ident": "SNVB", + "type": "small_airport", + "name": "Valença Airport", + "latitude_deg": "-13.2965", + "longitude_deg": "-38.992401", + "elevation_ft": "21", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Valença", + "scheduled_service": "yes", + "gps_code": "SNVB", + "iata_code": "VAL", + "local_code": "SNVB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valen%C3%A7a_Airport" + }, + { + "id": "37291", + "ident": "SNVC", + "type": "small_airport", + "name": "Viçosa Airport", + "latitude_deg": "-20.744722366333008", + "longitude_deg": "-42.84194564819336", + "elevation_ft": "2162", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Viçosa", + "scheduled_service": "no", + "gps_code": "SNVC" + }, + { + "id": "32343", + "ident": "SNVD", + "type": "small_airport", + "name": "Santa Maria da Vitória Airport", + "latitude_deg": "-13.40060043334961", + "longitude_deg": "-44.217201232910156", + "elevation_ft": "1850", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Santa Maria Da Vitória", + "scheduled_service": "no", + "gps_code": "SNVD", + "iata_code": "0" + }, + { + "id": "341103", + "ident": "SNVE", + "type": "heliport", + "name": "Fazenda Vale das Estrelas Heliport", + "latitude_deg": "-22.270898", + "longitude_deg": "-43.140896", + "elevation_ft": "2792", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Areal", + "scheduled_service": "no", + "gps_code": "SNVE", + "local_code": "RJ0137" + }, + { + "id": "37292", + "ident": "SNVF", + "type": "heliport", + "name": "Banco Itaú Heliport", + "latitude_deg": "-22.899444580078125", + "longitude_deg": "-43.223609924316406", + "elevation_ft": "207", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SNVF" + }, + { + "id": "29798", + "ident": "SNVG", + "type": "small_airport", + "name": "Volta Grande Airport", + "latitude_deg": "-20.033899307250977", + "longitude_deg": "-48.2338981628418", + "elevation_ft": "1831", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Conceição Das Alagoas", + "scheduled_service": "no", + "gps_code": "SNVG", + "iata_code": "0" + }, + { + "id": "37293", + "ident": "SNVH", + "type": "small_airport", + "name": "Fazenda Santa Helena Airport", + "latitude_deg": "-16.168611526489258", + "longitude_deg": "-58.13833236694336", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SNVH" + }, + { + "id": "30491", + "ident": "SNVI", + "type": "small_airport", + "name": "Mélio Viana Airport", + "latitude_deg": "-21.790599822998047", + "longitude_deg": "-45.26919937133789", + "elevation_ft": "3232", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Três Corações", + "scheduled_service": "no", + "gps_code": "SNVI", + "iata_code": "QID" + }, + { + "id": "37294", + "ident": "SNVJ", + "type": "small_airport", + "name": "Fazenda Salto Grande Airport", + "latitude_deg": "-15.25333309173584", + "longitude_deg": "-58.793331146240234", + "elevation_ft": "1444", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Jauru", + "scheduled_service": "no", + "gps_code": "SNVJ" + }, + { + "id": "37295", + "ident": "SNVK", + "type": "small_airport", + "name": "Fazenda Santa Terezinha Airport", + "latitude_deg": "-20.501388549804688", + "longitude_deg": "-52.36888885498047", + "elevation_ft": "1214", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Três Lagoas", + "scheduled_service": "no", + "gps_code": "SNVK" + }, + { + "id": "37296", + "ident": "SNVL", + "type": "small_airport", + "name": "Virgem da Lapa Airport", + "latitude_deg": "-16.773889541625977", + "longitude_deg": "-42.38750076293945", + "elevation_ft": "2477", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Virgem Da Lapa", + "scheduled_service": "no", + "gps_code": "SNVL" + }, + { + "id": "37297", + "ident": "SNVM", + "type": "small_airport", + "name": "Fazenda Guaivira Airport", + "latitude_deg": "-20.664443969726562", + "longitude_deg": "-52.7672233581543", + "elevation_ft": "1112", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Brasilândia", + "scheduled_service": "no", + "gps_code": "SNVM" + }, + { + "id": "37298", + "ident": "SNVN", + "type": "small_airport", + "name": "Fazenda Santa Clara Airport", + "latitude_deg": "-21.305062", + "longitude_deg": "-50.757018", + "elevation_ft": "1503", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Rubiácea", + "scheduled_service": "no", + "keywords": "SNSA, SNVN" + }, + { + "id": "37299", + "ident": "SNVO", + "type": "small_airport", + "name": "Fazenda Pontal Airport", + "latitude_deg": "-19.970496", + "longitude_deg": "-50.970002", + "elevation_ft": "1329", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Carneirinho", + "scheduled_service": "no", + "gps_code": "SNXP", + "local_code": "MG0169", + "keywords": "SNVO" + }, + { + "id": "37300", + "ident": "SNVP", + "type": "small_airport", + "name": "Fazenda Araçatuba Airport", + "latitude_deg": "-6.9769439697265625", + "longitude_deg": "-49.19944381713867", + "elevation_ft": "541", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Santa Fé", + "scheduled_service": "no", + "gps_code": "SNVP" + }, + { + "id": "37301", + "ident": "SNVQ", + "type": "small_airport", + "name": "Fazenda Santa Mônica Airport", + "latitude_deg": "-6.5230560302734375", + "longitude_deg": "-48.26583480834961", + "elevation_ft": "600", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Piraquê", + "scheduled_service": "no", + "gps_code": "SNVQ" + }, + { + "id": "413", + "ident": "SNVR", + "type": "small_airport", + "name": "Aeroclube da Bahia Airport", + "latitude_deg": "-13.024053", + "longitude_deg": "-38.665727", + "elevation_ft": "12", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Vera Cruz", + "scheduled_service": "no", + "gps_code": "SNVR", + "local_code": "BA0147" + }, + { + "id": "414", + "ident": "SNVS", + "type": "small_airport", + "name": "Breves Airport", + "latitude_deg": "-1.6365300416946411", + "longitude_deg": "-50.443599700927734", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Breves", + "scheduled_service": "no", + "gps_code": "SNVS", + "iata_code": "BVS", + "local_code": "SNVS" + }, + { + "id": "37302", + "ident": "SNVT", + "type": "heliport", + "name": "Pires do Rio Heliport", + "latitude_deg": "-23.615278244018555", + "longitude_deg": "-46.54666519165039", + "elevation_ft": "2477", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Caetano Do Sul", + "scheduled_service": "no", + "gps_code": "SNVT" + }, + { + "id": "37303", + "ident": "SNVU", + "type": "small_airport", + "name": "Fazenda Itatuba Airport", + "latitude_deg": "-20.432625", + "longitude_deg": "-46.859697", + "elevation_ft": "2260", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Cássia", + "scheduled_service": "no", + "gps_code": "SJ38", + "local_code": "MG0167", + "keywords": "SNVU" + }, + { + "id": "37304", + "ident": "SNVV", + "type": "small_airport", + "name": "Valente Airport", + "latitude_deg": "-11.411110877990723", + "longitude_deg": "-39.44333267211914", + "elevation_ft": "1322", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Valente", + "scheduled_service": "no", + "gps_code": "SNVV" + }, + { + "id": "37305", + "ident": "SNVW", + "type": "closed", + "name": "Fazenda São João do Guaporé Airport", + "latitude_deg": "-13.993", + "longitude_deg": "-60.07226", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "keywords": "SNVW" + }, + { + "id": "37306", + "ident": "SNVX", + "type": "heliport", + "name": "Golden Air Heliport", + "latitude_deg": "-27.541667938232422", + "longitude_deg": "-48.624168395996094", + "elevation_ft": "63", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "São José", + "scheduled_service": "no", + "gps_code": "SNVX" + }, + { + "id": "37307", + "ident": "SNVY", + "type": "small_airport", + "name": "Fazenda Ouro Verde Airport", + "latitude_deg": "-23.976943969726562", + "longitude_deg": "-55.36527633666992", + "elevation_ft": "1299", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Paranhos", + "scheduled_service": "no", + "gps_code": "SNVY" + }, + { + "id": "37308", + "ident": "SNVZ", + "type": "small_airport", + "name": "Várzea da Palma Airport", + "latitude_deg": "-17.645000457763672", + "longitude_deg": "-44.71055603027344", + "elevation_ft": "1719", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Várzea Da Palma", + "scheduled_service": "no", + "gps_code": "SNVZ" + }, + { + "id": "37309", + "ident": "SNWA", + "type": "small_airport", + "name": "Guaxuma Airport", + "latitude_deg": "-9.980555534362793", + "longitude_deg": "-36.231109619140625", + "elevation_ft": "322", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Coruripe", + "scheduled_service": "no", + "gps_code": "SNWA" + }, + { + "id": "37310", + "ident": "SNWB", + "type": "closed", + "name": "Fazenda São Lucas Airport", + "latitude_deg": "-20.932222", + "longitude_deg": "-50.956944", + "elevation_ft": "1099", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mirandópolis", + "scheduled_service": "no", + "keywords": "SNWB" + }, + { + "id": "30833", + "ident": "SNWC", + "type": "small_airport", + "name": "Camocim - Pinto Martins Airport", + "latitude_deg": "-2.895596", + "longitude_deg": "-40.859299", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Camocim", + "scheduled_service": "no", + "gps_code": "SNWC", + "iata_code": "CMC" + }, + { + "id": "37311", + "ident": "SNWD", + "type": "small_airport", + "name": "Fazenda Guavirá Airport", + "latitude_deg": "-23.430278778076172", + "longitude_deg": "-54.608333587646484", + "elevation_ft": "1335", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Iguatemi", + "scheduled_service": "no", + "gps_code": "SNWD" + }, + { + "id": "37312", + "ident": "SNWE", + "type": "small_airport", + "name": "Fazenda Baia da Bugra Airport", + "latitude_deg": "-20.27805519104004", + "longitude_deg": "-57.233890533447266", + "elevation_ft": "507", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SNWE" + }, + { + "id": "37313", + "ident": "SNWF", + "type": "small_airport", + "name": "Fazenda Cachoeirinha Airport", + "latitude_deg": "-22.43805694580078", + "longitude_deg": "-55.231666564941406", + "elevation_ft": "1476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ponta Porã", + "scheduled_service": "no", + "gps_code": "SNWF" + }, + { + "id": "37314", + "ident": "SNWG", + "type": "small_airport", + "name": "Fazenda Iporã Airport", + "latitude_deg": "-23.582209", + "longitude_deg": "-54.048893", + "elevation_ft": "591", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Itaquiraí", + "scheduled_service": "no", + "gps_code": "SNWG", + "local_code": "MS0234", + "keywords": "SNWS" + }, + { + "id": "37315", + "ident": "SNWH", + "type": "small_airport", + "name": "Fazenda São Mateus Airport", + "latitude_deg": "-22.96666717529297", + "longitude_deg": "-53.543331146240234", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Querência Do Norte", + "scheduled_service": "no", + "gps_code": "SNWH" + }, + { + "id": "37316", + "ident": "SNWI", + "type": "small_airport", + "name": "Fazenda São João do Guapore Airport", + "latitude_deg": "-14.068889", + "longitude_deg": "-60.009167", + "elevation_ft": "594", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Lacerda", + "scheduled_service": "no", + "gps_code": "SNWI", + "keywords": "Fazenda São João II Airport" + }, + { + "id": "37317", + "ident": "SNWJ", + "type": "small_airport", + "name": "Fazenda Rancho Alegre Airport", + "latitude_deg": "-15.208056449890137", + "longitude_deg": "-58.62472152709961", + "elevation_ft": "1345", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Araputanga", + "scheduled_service": "no", + "gps_code": "SNWJ" + }, + { + "id": "37318", + "ident": "SNWK", + "type": "small_airport", + "name": "Fazenda Santa Terezinha Airport", + "latitude_deg": "-16.6744441986084", + "longitude_deg": "-54.266387939453125", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pedra Preta", + "scheduled_service": "no", + "gps_code": "SNWK" + }, + { + "id": "37319", + "ident": "SNWL", + "type": "closed", + "name": "Fazenda Ranchinho Airport", + "latitude_deg": "-18.833332", + "longitude_deg": "-51.791111", + "elevation_ft": "1788", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Aporé", + "scheduled_service": "no", + "keywords": "SNWL" + }, + { + "id": "37320", + "ident": "SNWM", + "type": "small_airport", + "name": "Fazenda Bonito Airport", + "latitude_deg": "-20.387468", + "longitude_deg": "-51.197617", + "elevation_ft": "1181", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ilha Solteira", + "scheduled_service": "no", + "gps_code": "SI4C", + "local_code": "SP1215", + "keywords": "SNWM" + }, + { + "id": "37321", + "ident": "SNWN", + "type": "small_airport", + "name": "Fazenda Aliança Airport", + "latitude_deg": "-16.670708", + "longitude_deg": "-54.391648", + "elevation_ft": "968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pedra Preta", + "scheduled_service": "no", + "gps_code": "SDQ2", + "local_code": "MT0702", + "keywords": "SNWN" + }, + { + "id": "37322", + "ident": "SNWO", + "type": "small_airport", + "name": "Fazenda Vera Cruz Airport", + "latitude_deg": "-23.017778396606445", + "longitude_deg": "-54.62444305419922", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Amambaí", + "scheduled_service": "no", + "gps_code": "SNWO" + }, + { + "id": "37323", + "ident": "SNWP", + "type": "small_airport", + "name": "Laginha Airport", + "latitude_deg": "-9.313888549804688", + "longitude_deg": "-36.05638885498047", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "União Dos Palmares", + "scheduled_service": "no", + "gps_code": "SNWP" + }, + { + "id": "341139", + "ident": "SNWQ", + "type": "small_airport", + "name": "Fazenda Santa Cecília Airport", + "latitude_deg": "-29.330071", + "longitude_deg": "-54.336362", + "elevation_ft": "1257", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Jari", + "scheduled_service": "no", + "gps_code": "SNWQ", + "local_code": "RS0131" + }, + { + "id": "415", + "ident": "SNWR", + "type": "small_airport", + "name": "Wilma Rabelo Airport", + "latitude_deg": "-2.636603", + "longitude_deg": "-51.82708", + "elevation_ft": "201", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Senador José Porfírio", + "scheduled_service": "no", + "gps_code": "SNWR", + "local_code": "PA0109" + }, + { + "id": "416", + "ident": "SNWS", + "type": "small_airport", + "name": "Crateús Airport", + "latitude_deg": "-5.21135", + "longitude_deg": "-40.704201", + "elevation_ft": "1034", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Crateús", + "scheduled_service": "no", + "gps_code": "SNWS", + "iata_code": "JCS" + }, + { + "id": "37324", + "ident": "SNWT", + "type": "heliport", + "name": "Kioma Heliport", + "latitude_deg": "-3.875833034515381", + "longitude_deg": "-38.43138885498047", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Eusébio", + "scheduled_service": "no", + "gps_code": "SNWT" + }, + { + "id": "37325", + "ident": "SNWU", + "type": "small_airport", + "name": "Fazenda Ponte Quinhá Airport", + "latitude_deg": "-23.005477", + "longitude_deg": "-55.50928", + "elevation_ft": "1575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aral Moreira", + "scheduled_service": "no", + "gps_code": "SNWU", + "local_code": "MS0237" + }, + { + "id": "37326", + "ident": "SNWV", + "type": "heliport", + "name": "Viganó 3 Heliport", + "latitude_deg": "-19.725484", + "longitude_deg": "-44.395334", + "elevation_ft": "2356", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Esmeraldas", + "scheduled_service": "no", + "gps_code": "SNWV", + "local_code": "MG0263" + }, + { + "id": "37327", + "ident": "SNWW", + "type": "heliport", + "name": "Paradise Golf Heliport", + "latitude_deg": "-23.590501", + "longitude_deg": "-46.258624", + "elevation_ft": "2477", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mogi das Cruzes", + "scheduled_service": "no", + "gps_code": "SNWW", + "local_code": "SP0736" + }, + { + "id": "37328", + "ident": "SNWX", + "type": "closed", + "name": "Newton Heliport", + "latitude_deg": "-22.5388889313", + "longitude_deg": "-47.419445037799996", + "elevation_ft": "2001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Limeira", + "scheduled_service": "no", + "gps_code": "SNWX" + }, + { + "id": "341148", + "ident": "SNWY", + "type": "heliport", + "name": "Rodoviária Heliport", + "latitude_deg": "-20.321814", + "longitude_deg": "-40.353172", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Vitória", + "scheduled_service": "no", + "gps_code": "SNWY", + "local_code": "ES0022" + }, + { + "id": "37329", + "ident": "SNWZ", + "type": "small_airport", + "name": "Uruba Airport", + "latitude_deg": "-9.484056", + "longitude_deg": "-35.956048", + "elevation_ft": "302", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Atalaia", + "scheduled_service": "no", + "gps_code": "SNWZ" + }, + { + "id": "30096", + "ident": "SNXA", + "type": "small_airport", + "name": "Machado Airport", + "latitude_deg": "-21.678101", + "longitude_deg": "-45.840604", + "elevation_ft": "2969", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Machado", + "scheduled_service": "no", + "local_code": "MG0046", + "keywords": "SNXA" + }, + { + "id": "417", + "ident": "SNXB", + "type": "small_airport", + "name": "Caxambu Airport", + "latitude_deg": "-21.917066", + "longitude_deg": "-44.96817", + "elevation_ft": "2838", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Caxambu", + "scheduled_service": "no", + "gps_code": "SNXB", + "local_code": "MG0025" + }, + { + "id": "37330", + "ident": "SNXC", + "type": "heliport", + "name": "Viganó II Heliport", + "latitude_deg": "-19.953922", + "longitude_deg": "-44.072406", + "elevation_ft": "3238", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Betim", + "scheduled_service": "no", + "gps_code": "SNXC", + "local_code": "MG0264" + }, + { + "id": "37331", + "ident": "SNXD", + "type": "small_airport", + "name": "Fazenda Beradão Airport", + "latitude_deg": "-6.272778034210205", + "longitude_deg": "-55.785831451416016", + "elevation_ft": "764", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SNXD" + }, + { + "id": "322714", + "ident": "SNXE", + "type": "small_airport", + "name": "Aero Z Ferrus Airport", + "latitude_deg": "0.993333", + "longitude_deg": "-51.120833", + "elevation_ft": "239", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Ferreira Gomes", + "scheduled_service": "no", + "gps_code": "SNXE", + "local_code": "AP0009" + }, + { + "id": "37332", + "ident": "SNXF", + "type": "small_airport", + "name": "Retiro Santo Antônio da Fazenda Triunfo Airport", + "latitude_deg": "-17.892909", + "longitude_deg": "-56.996995", + "elevation_ft": "394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SIXX", + "local_code": "MS0144", + "keywords": "SNXF" + }, + { + "id": "418", + "ident": "SNXG", + "type": "small_airport", + "name": "Fazenda dos Castanhais Airport", + "latitude_deg": "-6.774796", + "longitude_deg": "-49.361131", + "elevation_ft": "745", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Sapucaia", + "scheduled_service": "no", + "gps_code": "SNXG", + "local_code": "PA0110" + }, + { + "id": "419", + "ident": "SNXH", + "type": "small_airport", + "name": "Itapecuru Airport", + "latitude_deg": "-4.513833", + "longitude_deg": "-44.021529", + "elevation_ft": "184", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Codó", + "scheduled_service": "no", + "gps_code": "SNXH", + "local_code": "MA0042" + }, + { + "id": "37333", + "ident": "SNXI", + "type": "small_airport", + "name": "Estância Turística de Pereira Barreto Airport", + "latitude_deg": "-20.62472152709961", + "longitude_deg": "-51.084999084472656", + "elevation_ft": "1289", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Pereira Barreto", + "scheduled_service": "no", + "gps_code": "SNXI" + }, + { + "id": "37334", + "ident": "SNXJ", + "type": "heliport", + "name": "Juscelino Plaza Helipad", + "latitude_deg": "-23.589155", + "longitude_deg": "-46.675565", + "elevation_ft": "2651", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SNXJ", + "local_code": "SP0737" + }, + { + "id": "37335", + "ident": "SNXK", + "type": "small_airport", + "name": "Fazenda Lagoa do Triunfo Airport", + "latitude_deg": "-6.536944", + "longitude_deg": "-52.769169", + "elevation_ft": "558", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "São Félix Do Xingu", + "scheduled_service": "no", + "gps_code": "SNXK", + "local_code": "PA0111" + }, + { + "id": "37336", + "ident": "SNXL", + "type": "small_airport", + "name": "Primavera Airport", + "latitude_deg": "-12.616667", + "longitude_deg": "-52.153889", + "elevation_ft": "1201", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Querência", + "scheduled_service": "no", + "gps_code": "SDLN", + "local_code": "MT0040", + "keywords": "SNXL" + }, + { + "id": "37337", + "ident": "SNXM", + "type": "small_airport", + "name": "Fazenda Itumbiara Airport", + "latitude_deg": "-6.420278072357178", + "longitude_deg": "-53.61138916015625", + "elevation_ft": "886", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Altamira", + "scheduled_service": "no", + "gps_code": "SNXM" + }, + { + "id": "37338", + "ident": "SNXN", + "type": "small_airport", + "name": "Heringer Airport", + "latitude_deg": "-7.375277996063232", + "longitude_deg": "-45.989723205566406", + "elevation_ft": "1021", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Balsas", + "scheduled_service": "no", + "gps_code": "SNXN" + }, + { + "id": "37339", + "ident": "SNXO", + "type": "small_airport", + "name": "Fazenda Bom Sucesso Airport", + "latitude_deg": "-7.893610954284668", + "longitude_deg": "-56.38750076293945", + "elevation_ft": "600", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Novo Progresso", + "scheduled_service": "no", + "gps_code": "SNXO" + }, + { + "id": "37340", + "ident": "SNXP", + "type": "heliport", + "name": "Residência Papaiz Heliport", + "latitude_deg": "-23.58916664123535", + "longitude_deg": "-46.704166412353516", + "elevation_ft": "2615", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SNXP" + }, + { + "id": "420", + "ident": "SNXQ", + "type": "small_airport", + "name": "Xique-Xique Airport", + "latitude_deg": "-10.8341", + "longitude_deg": "-42.683399", + "elevation_ft": "1401", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Xique-Xique", + "scheduled_service": "no", + "gps_code": "SNXQ", + "local_code": "BA0018" + }, + { + "id": "37341", + "ident": "SNXR", + "type": "small_airport", + "name": "Fazenda Conforto Airport", + "latitude_deg": "-7.389945", + "longitude_deg": "-56.520532", + "elevation_ft": "771", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SNXR", + "local_code": "PA0112" + }, + { + "id": "29764", + "ident": "SNXS", + "type": "small_airport", + "name": "Fazenda São Braz Airport", + "latitude_deg": "-9.373161", + "longitude_deg": "-35.539736", + "elevation_ft": "164", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Barra de Santo Antônio", + "scheduled_service": "no", + "gps_code": "SIQX", + "local_code": "AL0004", + "keywords": "QXC, SNXS" + }, + { + "id": "335478", + "ident": "SNXT", + "type": "small_airport", + "name": "Pousada Alvorada Airport", + "latitude_deg": "-17.181518", + "longitude_deg": "-56.021894", + "elevation_ft": "407", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão de Melgaço", + "scheduled_service": "no", + "gps_code": "SNXT", + "local_code": "MT0511" + }, + { + "id": "37342", + "ident": "SNXU", + "type": "heliport", + "name": "Meridional Heliport", + "latitude_deg": "-20.33222198486328", + "longitude_deg": "-40.378334045410156", + "elevation_ft": "144", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Cariacica", + "scheduled_service": "no", + "gps_code": "SNXU" + }, + { + "id": "37343", + "ident": "SNXV", + "type": "small_airport", + "name": "Fazenda Lagoa das Conchas Airport", + "latitude_deg": "-9.0872220993042", + "longitude_deg": "-61.18694305419922", + "elevation_ft": "348", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Colniza", + "scheduled_service": "no", + "gps_code": "SNXV" + }, + { + "id": "37344", + "ident": "SNXW", + "type": "small_airport", + "name": "Chaves Airport", + "latitude_deg": "-0.1661", + "longitude_deg": "-49.9794", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Chaves", + "scheduled_service": "no", + "local_code": "PA0023", + "keywords": "SNXW" + }, + { + "id": "421", + "ident": "SNXX", + "type": "small_airport", + "name": "Maxaranguape Airport", + "latitude_deg": "-5.38414", + "longitude_deg": "-35.5284", + "elevation_ft": "305", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Maxaranguape", + "scheduled_service": "no", + "gps_code": "SNXX", + "local_code": "RN9002", + "keywords": "Maxaranguepe, Jerusalham" + }, + { + "id": "37345", + "ident": "SNXY", + "type": "small_airport", + "name": "Cikel Brasil Verde Airport", + "latitude_deg": "-2.694926", + "longitude_deg": "-50.525951", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Portel", + "scheduled_service": "no", + "gps_code": "SNXY", + "local_code": "PA0113" + }, + { + "id": "37346", + "ident": "SNYA", + "type": "small_airport", + "name": "Almeirim Airport", + "latitude_deg": "-1.479524", + "longitude_deg": "-52.578214", + "elevation_ft": "584", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Almeirim", + "scheduled_service": "yes", + "gps_code": "SNYA", + "iata_code": "GGF", + "local_code": "PA0024", + "wikipedia_link": "https://en.wikipedia.org/wiki/Almeirim_Airport" + }, + { + "id": "422", + "ident": "SNYB", + "type": "small_airport", + "name": "Ituiutaba Airport", + "latitude_deg": "-19.002434", + "longitude_deg": "-49.487442", + "elevation_ft": "1985", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Ituiutaba", + "scheduled_service": "no", + "gps_code": "SNYB", + "local_code": "MG0047", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Ituiutaba", + "keywords": "Tito Teixeira" + }, + { + "id": "37347", + "ident": "SNYC", + "type": "small_airport", + "name": "Rosa Branca Airport", + "latitude_deg": "-7.009167194366455", + "longitude_deg": "-56.90444564819336", + "elevation_ft": "552", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SNYC" + }, + { + "id": "37348", + "ident": "SNYD", + "type": "small_airport", + "name": "Pilão Arcado Airport", + "latitude_deg": "-10.066944122314453", + "longitude_deg": "-42.450557708740234", + "elevation_ft": "1312", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Pilão Arcado", + "scheduled_service": "no", + "gps_code": "SNYD" + }, + { + "id": "423", + "ident": "SNYE", + "type": "small_airport", + "name": "Pinheiro Airport", + "latitude_deg": "-2.477426", + "longitude_deg": "-45.105003", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Pinheiro", + "scheduled_service": "no", + "gps_code": "SNYE", + "iata_code": "PHI", + "local_code": "MA0004", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Pinheiro" + }, + { + "id": "37349", + "ident": "SNYF", + "type": "small_airport", + "name": "Fazenda Parnaíba Airport", + "latitude_deg": "-8.509681", + "longitude_deg": "-46.075491", + "elevation_ft": "1854", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Balsas", + "scheduled_service": "no", + "keywords": "SNYF, Tasso Fragoso, SWIG" + }, + { + "id": "37350", + "ident": "SNYG", + "type": "heliport", + "name": "Naturágua Heliport", + "latitude_deg": "-3.832385", + "longitude_deg": "-38.473307", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SNYG", + "local_code": "CE0056" + }, + { + "id": "37351", + "ident": "SNYH", + "type": "small_airport", + "name": "Fazenda Vale Sereno Airport", + "latitude_deg": "-8.700599", + "longitude_deg": "-51.172743", + "elevation_ft": "1096", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Cumaru do Norte", + "scheduled_service": "no", + "gps_code": "SNYH", + "local_code": "PA0114", + "keywords": "Agropecuária Castanhais" + }, + { + "id": "37352", + "ident": "SNYI", + "type": "small_airport", + "name": "Fazenda HJ Airport", + "latitude_deg": "-16.611883", + "longitude_deg": "-47.296011", + "elevation_ft": "2815", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Unaí", + "scheduled_service": "no", + "gps_code": "SIAX", + "local_code": "MG0471", + "keywords": "SNYI" + }, + { + "id": "37353", + "ident": "SNYJ", + "type": "small_airport", + "name": "Pista São Jorge Airport", + "latitude_deg": "-6.135433", + "longitude_deg": "-57.401467", + "elevation_ft": "810", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Jacareacanga", + "scheduled_service": "no", + "gps_code": "SNYJ", + "local_code": "PA0115" + }, + { + "id": "37354", + "ident": "SNYK", + "type": "heliport", + "name": "Cumbuco Heliport", + "latitude_deg": "-3.623912", + "longitude_deg": "-38.733047", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Caucaia", + "scheduled_service": "no", + "gps_code": "SNYK" + }, + { + "id": "37355", + "ident": "SNYL", + "type": "small_airport", + "name": "Fazenda São João Airport", + "latitude_deg": "-18.426944732666016", + "longitude_deg": "-46.051944732666016", + "elevation_ft": "3300", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Varjão De Minas", + "scheduled_service": "no", + "gps_code": "SNYL" + }, + { + "id": "37356", + "ident": "SNYM", + "type": "small_airport", + "name": "Fazenda Flexas Airport", + "latitude_deg": "-16.376388549804688", + "longitude_deg": "-45.12305450439453", + "elevation_ft": "1594", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "São Romão", + "scheduled_service": "no", + "gps_code": "SNYM" + }, + { + "id": "37357", + "ident": "SNYN", + "type": "small_airport", + "name": "Fazenda Rio das Pedras Airport", + "latitude_deg": "-19.551666259765625", + "longitude_deg": "-48.837501525878906", + "elevation_ft": "2300", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Prata", + "scheduled_service": "no", + "gps_code": "SNYN" + }, + { + "id": "41137", + "ident": "SNYO", + "type": "small_airport", + "name": "Fazenda Logradouro Vereda da Ponte Airport", + "latitude_deg": "-16.29916763305664", + "longitude_deg": "-46.15944290161133", + "elevation_ft": "2848", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Riachinho", + "scheduled_service": "no", + "gps_code": "SNYO" + }, + { + "id": "37358", + "ident": "SNYP", + "type": "small_airport", + "name": "Chácara Paraíso Airport", + "latitude_deg": "-1.317782", + "longitude_deg": "-48.298706", + "elevation_ft": "69", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Benevides", + "scheduled_service": "no", + "gps_code": "SNYP", + "local_code": "PA0116" + }, + { + "id": "37359", + "ident": "SNYQ", + "type": "small_airport", + "name": "Pista São Pedro Airport", + "latitude_deg": "-5.320556163787842", + "longitude_deg": "-56.66472244262695", + "elevation_ft": "459", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SNYQ" + }, + { + "id": "37360", + "ident": "SNYR", + "type": "small_airport", + "name": "Fazenda Água Azul Airport", + "latitude_deg": "-5.942021", + "longitude_deg": "-56.552703", + "elevation_ft": "509", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SD9O", + "local_code": "PA0117", + "keywords": "SNYR" + }, + { + "id": "37361", + "ident": "SNYS", + "type": "small_airport", + "name": "WD Agroindustrial Airport", + "latitude_deg": "-18.222582", + "longitude_deg": "-45.995484", + "elevation_ft": "3199", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "João Pinheiro", + "scheduled_service": "no", + "gps_code": "SNYS", + "local_code": "MG0171", + "keywords": "Destilaria WD" + }, + { + "id": "424", + "ident": "SNYT", + "type": "small_airport", + "name": "Ituaçu Airport", + "latitude_deg": "-13.8283", + "longitude_deg": "-41.302299", + "elevation_ft": "1755", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Ituaçu", + "scheduled_service": "no", + "gps_code": "SNYT", + "local_code": "BA0014" + }, + { + "id": "37362", + "ident": "SNYU", + "type": "small_airport", + "name": "Iturama Airport", + "latitude_deg": "-19.71799", + "longitude_deg": "-50.22018", + "elevation_ft": "1558", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Iturama", + "scheduled_service": "no", + "gps_code": "SNYU", + "local_code": "MG0014" + }, + { + "id": "37363", + "ident": "SNYV", + "type": "small_airport", + "name": "Fazenda Socôco Airport", + "latitude_deg": "-2.119009", + "longitude_deg": "-48.642923", + "elevation_ft": "102", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Moju", + "scheduled_service": "no", + "gps_code": "SNYV", + "local_code": "PA0118" + }, + { + "id": "37364", + "ident": "SNYW", + "type": "small_airport", + "name": "Antônio Guerreiro Airport", + "latitude_deg": "-2.109444", + "longitude_deg": "-44.651114", + "elevation_ft": "245", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Guimarães", + "scheduled_service": "no", + "gps_code": "SNYW", + "iata_code": "GMS", + "local_code": "MA0043" + }, + { + "id": "37365", + "ident": "SNYX", + "type": "small_airport", + "name": "Sítio Vodó Airport", + "latitude_deg": "-4.093998", + "longitude_deg": "-38.248007", + "elevation_ft": "249", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Cascavel", + "scheduled_service": "no", + "gps_code": "SNYX" + }, + { + "id": "37366", + "ident": "SNYY", + "type": "heliport", + "name": "Copra Heliport", + "latitude_deg": "-22.8125", + "longitude_deg": "-47.20750045776367", + "elevation_ft": "1926", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sumaré", + "scheduled_service": "no", + "gps_code": "SNYY" + }, + { + "id": "37367", + "ident": "SNYZ", + "type": "small_airport", + "name": "Vicente José Airport", + "latitude_deg": "-4.840662", + "longitude_deg": "-38.155063", + "elevation_ft": "115", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Russas", + "scheduled_service": "no", + "gps_code": "SNYZ" + }, + { + "id": "425", + "ident": "SNZA", + "type": "small_airport", + "name": "Pouso Alegre Airport", + "latitude_deg": "-22.2892", + "longitude_deg": "-45.919102", + "elevation_ft": "2904", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Pouso Alegre", + "scheduled_service": "no", + "gps_code": "SNZA", + "iata_code": "PPY", + "local_code": "MG0038", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Pouso_Alegre" + }, + { + "id": "37368", + "ident": "SNZC", + "type": "small_airport", + "name": "Fazenda Águas Claras Airport", + "latitude_deg": "-23.333609", + "longitude_deg": "-54.508514", + "elevation_ft": "1273", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Iguatemi", + "scheduled_service": "no", + "gps_code": "SIZR", + "local_code": "MS0147", + "keywords": "SNZC" + }, + { + "id": "37369", + "ident": "SNZD", + "type": "small_airport", + "name": "Fazenda Dona Hilda Airport", + "latitude_deg": "-13.204167366027832", + "longitude_deg": "-48.600833892822266", + "elevation_ft": "1424", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Montividiu Do Norte", + "scheduled_service": "no", + "gps_code": "SNZD" + }, + { + "id": "37370", + "ident": "SNZE", + "type": "small_airport", + "name": "Aeroxingu Airport", + "latitude_deg": "-3.168979", + "longitude_deg": "-52.19025", + "elevation_ft": "369", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Altamira", + "scheduled_service": "no", + "gps_code": "SJJJ", + "local_code": "PA0070", + "keywords": "SNZE" + }, + { + "id": "37371", + "ident": "SNZF", + "type": "small_airport", + "name": "Fazenda Bela Vista Airport", + "latitude_deg": "-0.27314", + "longitude_deg": "-48.577588", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Soure", + "scheduled_service": "no", + "keywords": "SNZF" + }, + { + "id": "341386", + "ident": "SNZG", + "type": "small_airport", + "name": "Fazenda São Benedito Airport", + "latitude_deg": "-23.861232", + "longitude_deg": "-48.236658", + "elevation_ft": "2034", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Capâo Bonito", + "scheduled_service": "no", + "gps_code": "SNZG", + "local_code": "SP0241" + }, + { + "id": "37372", + "ident": "SNZH", + "type": "small_airport", + "name": "Fazenda Pequena Holanda Airport", + "latitude_deg": "-9.009188", + "longitude_deg": "-46.136162", + "elevation_ft": "2835", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Alto Parnaíba", + "scheduled_service": "no", + "gps_code": "SIWD", + "local_code": "MA0026", + "keywords": "SNZH" + }, + { + "id": "37373", + "ident": "SNZI", + "type": "heliport", + "name": "Helvétia Heliport", + "latitude_deg": "-23.059923", + "longitude_deg": "-47.159988", + "elevation_ft": "2077", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Indaiatuba", + "scheduled_service": "no", + "gps_code": "SNZI", + "local_code": "SP0741" + }, + { + "id": "341406", + "ident": "SNZJ", + "type": "heliport", + "name": "Edifício América Helipad", + "latitude_deg": "-21.80497", + "longitude_deg": "-48.173643", + "elevation_ft": "2260", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araraquara", + "scheduled_service": "no", + "gps_code": "SNZJ", + "local_code": "SP0742" + }, + { + "id": "426", + "ident": "SNZK", + "type": "small_airport", + "name": "Fazenda Canadá Airport", + "latitude_deg": "-15.0243", + "longitude_deg": "-44.039101", + "elevation_ft": "1510", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Itacarambí", + "scheduled_service": "no", + "gps_code": "SNZK", + "local_code": "MG0174" + }, + { + "id": "37374", + "ident": "SNZL", + "type": "small_airport", + "name": "Fazenda Santa Thereza Airport", + "latitude_deg": "-21.567418", + "longitude_deg": "-49.301448", + "elevation_ft": "1401", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Novo Horizonte", + "scheduled_service": "no", + "keywords": "SNZL" + }, + { + "id": "37375", + "ident": "SNZM", + "type": "heliport", + "name": "JCPM Trade Center Helipad", + "latitude_deg": "-8.089764", + "longitude_deg": "-34.881865", + "elevation_ft": "282", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Recife", + "scheduled_service": "no", + "gps_code": "SNZM", + "local_code": "PE0051" + }, + { + "id": "341459", + "ident": "SNZN", + "type": "small_airport", + "name": "Fazenda Naná Porã Airport", + "latitude_deg": "-23.839362", + "longitude_deg": "-55.185006", + "elevation_ft": "1329", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Sete Quedas", + "scheduled_service": "no", + "gps_code": "SNZN", + "local_code": "MS0242" + }, + { + "id": "37376", + "ident": "SNZO", + "type": "small_airport", + "name": "Fazenda Bebida Velha Airport", + "latitude_deg": "-5.297096", + "longitude_deg": "-35.536667", + "elevation_ft": "131", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Touros", + "scheduled_service": "no", + "gps_code": "SNZO", + "local_code": "RN0009" + }, + { + "id": "427", + "ident": "SNZP", + "type": "small_airport", + "name": "Poções Airport", + "latitude_deg": "-14.522600173950195", + "longitude_deg": "-40.345001220703125", + "elevation_ft": "2772", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Poções", + "scheduled_service": "no", + "gps_code": "SNZP", + "local_code": "SNZP" + }, + { + "id": "37377", + "ident": "SNZQ", + "type": "small_airport", + "name": "Pista Santa Lúcia Airport", + "latitude_deg": "-7.228610992431641", + "longitude_deg": "-56.2327766418457", + "elevation_ft": "1968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SNZQ" + }, + { + "id": "428", + "ident": "SNZR", + "type": "small_airport", + "name": "Pedro Rabelo de Souza Airport", + "latitude_deg": "-17.242599", + "longitude_deg": "-46.883099", + "elevation_ft": "2359", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Paracatu", + "scheduled_service": "yes", + "gps_code": "SNZR", + "local_code": "MG0026", + "home_link": "https://infracea.com.br/aeroporto-de-paracatu-mg/", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Paracatu" + }, + { + "id": "37378", + "ident": "SNZS", + "type": "heliport", + "name": "Birmann 31 Heliport", + "latitude_deg": "-23.590109", + "longitude_deg": "-46.682012", + "elevation_ft": "2618", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SNZS", + "local_code": "SP0594" + }, + { + "id": "37379", + "ident": "SNZT", + "type": "small_airport", + "name": "Fazenda Recreio Airport", + "latitude_deg": "-3.504396", + "longitude_deg": "-48.333146", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Paragominas", + "scheduled_service": "no", + "gps_code": "SNZT", + "local_code": "PA0120" + }, + { + "id": "37380", + "ident": "SNZU", + "type": "small_airport", + "name": "Fazenda Nova Conceição Airport", + "latitude_deg": "-2.855909", + "longitude_deg": "-48.231727", + "elevation_ft": "243", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Tomé Açu", + "scheduled_service": "no", + "gps_code": "SNZU", + "local_code": "PA0121" + }, + { + "id": "37381", + "ident": "SNZV", + "type": "small_airport", + "name": "Fazenda Jamaica Airport", + "latitude_deg": "-3.722566", + "longitude_deg": "-47.477739", + "elevation_ft": "361", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Ulianópolis", + "scheduled_service": "no", + "gps_code": "SNZV", + "local_code": "PA0122" + }, + { + "id": "37382", + "ident": "SNZW", + "type": "small_airport", + "name": "Ituberá Airport", + "latitude_deg": "-13.731571", + "longitude_deg": "-39.140377", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Ituberá", + "scheduled_service": "no", + "gps_code": "SNZW", + "iata_code": "ITE", + "local_code": "BA0063" + }, + { + "id": "333676", + "ident": "SNZX", + "type": "heliport", + "name": "WSTC Helipad", + "latitude_deg": "-3.788185", + "longitude_deg": "-38.479427", + "elevation_ft": "253", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SNZX", + "local_code": "CE0074" + }, + { + "id": "37383", + "ident": "SNZY", + "type": "small_airport", + "name": "Fazenda Bandeira Airport", + "latitude_deg": "-22.00055694580078", + "longitude_deg": "-50.5977783203125", + "elevation_ft": "1450", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Tupã", + "scheduled_service": "no", + "gps_code": "SNZY" + }, + { + "id": "37384", + "ident": "SNZZ", + "type": "small_airport", + "name": "Muzzi Airport", + "latitude_deg": "-9.968121", + "longitude_deg": "-36.198891", + "elevation_ft": "331", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Coruripe", + "scheduled_service": "no", + "gps_code": "SNZZ", + "local_code": "AL0013" + }, + { + "id": "43788", + "ident": "SO-0001", + "type": "medium_airport", + "name": "K50 International Airport", + "latitude_deg": "2.00528", + "longitude_deg": "44.986599", + "elevation_ft": "100", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-SH", + "municipality": "Mogadishu", + "scheduled_service": "yes", + "wikipedia_link": "https://en.wikipedia.org/wiki/K50_Airport", + "keywords": "Km N° 50 Airport" + }, + { + "id": "308229", + "ident": "SO-0002", + "type": "small_airport", + "name": "Baledogle Airfield", + "latitude_deg": "2.670742", + "longitude_deg": "44.792897", + "elevation_ft": "297", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-SH", + "municipality": "Wanlaweyn", + "scheduled_service": "no", + "gps_code": "HC01", + "local_code": "HC01", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baledogle_Airfield", + "keywords": "Wanlawayn Airport" + }, + { + "id": "308230", + "ident": "SO-0003", + "type": "small_airport", + "name": "Uadan Highway Airstrip", + "latitude_deg": "1.972613", + "longitude_deg": "45.222878", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-SH", + "municipality": "Mogadishu", + "scheduled_service": "no" + }, + { + "id": "315331", + "ident": "SO-0004", + "type": "small_airport", + "name": "Hafun Airstrip", + "latitude_deg": "10.445", + "longitude_deg": "51.2466", + "elevation_ft": "35", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-BR", + "municipality": "Hafun", + "scheduled_service": "no", + "keywords": "Xaafuun" + }, + { + "id": "315332", + "ident": "SO-0005", + "type": "small_airport", + "name": "Hafun Old Base Airstrip", + "latitude_deg": "10.4154", + "longitude_deg": "51.3256", + "elevation_ft": "555", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-BR", + "municipality": "Hafun", + "scheduled_service": "no", + "keywords": "Xaafuun, Hafun East" + }, + { + "id": "329639", + "ident": "SO-0006", + "type": "small_airport", + "name": "Buurdhuubo Airstrip", + "latitude_deg": "3.157458", + "longitude_deg": "42.525189", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-GE", + "municipality": "Buurdhuubo", + "scheduled_service": "no" + }, + { + "id": "329644", + "ident": "SO-0007", + "type": "small_airport", + "name": "Dhoobley Airstrip", + "latitude_deg": "0.399533", + "longitude_deg": "40.99606", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-JH", + "municipality": "Dhoobley", + "scheduled_service": "no" + }, + { + "id": "340222", + "ident": "SO-0008", + "type": "small_airport", + "name": "Las Khorey Airport", + "latitude_deg": "11.17348", + "longitude_deg": "48.21426", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-SA", + "municipality": "Las Khorey", + "scheduled_service": "no" + }, + { + "id": "340224", + "ident": "SO-0009", + "type": "closed", + "name": "Old Bosaso Airport", + "latitude_deg": "11.26794", + "longitude_deg": "49.09876", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-BR", + "municipality": "Bosaso", + "scheduled_service": "no" + }, + { + "id": "340225", + "ident": "SO-0010", + "type": "small_airport", + "name": "Bandarbeyla Airport", + "latitude_deg": "9.4603", + "longitude_deg": "50.7416", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-BR", + "municipality": "Bandarbeyla", + "scheduled_service": "no" + }, + { + "id": "340226", + "ident": "SO-0011", + "type": "small_airport", + "name": "Garacad Airport", + "latitude_deg": "6.8773", + "longitude_deg": "49.2476", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-MU", + "municipality": "Garacad", + "scheduled_service": "no" + }, + { + "id": "340228", + "ident": "SO-0012", + "type": "closed", + "name": "Ceeldheer Airport", + "latitude_deg": "3.84182", + "longitude_deg": "47.16841", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-GA", + "municipality": "Ceeldheer", + "scheduled_service": "no", + "keywords": "El Dher" + }, + { + "id": "340229", + "ident": "SO-0013", + "type": "small_airport", + "name": "Dayniile Airport", + "latitude_deg": "2.122039", + "longitude_deg": "45.268856", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-SH", + "municipality": "Mogadishu", + "scheduled_service": "no" + }, + { + "id": "340230", + "ident": "SO-0014", + "type": "closed", + "name": "Merca Airport", + "latitude_deg": "1.63274", + "longitude_deg": "44.64865", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-SH", + "municipality": "Merca", + "scheduled_service": "no" + }, + { + "id": "340231", + "ident": "SO-0015", + "type": "small_airport", + "name": "Baraawe Airport", + "latitude_deg": "1.09438", + "longitude_deg": "43.99532", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-SH", + "municipality": "Baraawe", + "scheduled_service": "no", + "keywords": "Barawa, Brava" + }, + { + "id": "340232", + "ident": "SO-0016", + "type": "small_airport", + "name": "Jamaame Airstrip", + "latitude_deg": "0.05754", + "longitude_deg": "42.755045", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-JH", + "municipality": "Jamaame", + "scheduled_service": "no" + }, + { + "id": "356225", + "ident": "SO-0017", + "type": "small_airport", + "name": "Afmadow Airport", + "latitude_deg": "0.53769", + "longitude_deg": "42.05637", + "elevation_ft": "79", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-JH", + "municipality": "Afmadow", + "scheduled_service": "no" + }, + { + "id": "356226", + "ident": "SO-0018", + "type": "small_airport", + "name": "Bu'aale Airfield", + "latitude_deg": "1.26821", + "longitude_deg": "42.58794", + "elevation_ft": "200", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-JH", + "municipality": "Bu'aale", + "scheduled_service": "no", + "keywords": "Dujuma" + }, + { + "id": "356227", + "ident": "SO-0019", + "type": "small_airport", + "name": "Doolow Airport", + "latitude_deg": "4.1493", + "longitude_deg": "42.08119", + "elevation_ft": "625", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-GE", + "municipality": "Doolow", + "scheduled_service": "no" + }, + { + "id": "35166", + "ident": "SO-BXX", + "type": "small_airport", + "name": "Borama Airport", + "latitude_deg": "9.9463", + "longitude_deg": "43.1495", + "continent": "AF", + "iso_country": "SO", + "iso_region": "SO-WO", + "municipality": "Borama", + "scheduled_service": "no", + "iata_code": "BXX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Borama_Airport", + "keywords": "Borama" + }, + { + "id": "316766", + "ident": "SOA", + "type": "small_airport", + "name": "Sóc Trăng Airport", + "latitude_deg": "9.5814", + "longitude_deg": "105.9602", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SW", + "municipality": "Sóc Trăng", + "scheduled_service": "no", + "iata_code": "SOA" + }, + { + "id": "6198", + "ident": "SOCA", + "type": "large_airport", + "name": "Cayenne – Félix Eboué Airport", + "latitude_deg": "4.819964", + "longitude_deg": "-52.361326", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-CY", + "municipality": "Matoury", + "scheduled_service": "yes", + "gps_code": "SOCA", + "iata_code": "CAY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cayenne_%E2%80%93_F%C3%A9lix_Ebou%C3%A9_Airport", + "keywords": "Cayenne-Rochambeau, Matoury" + }, + { + "id": "299825", + "ident": "SOGS", + "type": "small_airport", + "name": "Grand-Santi Airport", + "latitude_deg": "4.285833", + "longitude_deg": "-54.373056", + "elevation_ft": "207", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-SL", + "municipality": "Grand-Santi", + "scheduled_service": "yes", + "gps_code": "SOGS", + "iata_code": "GSI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand-Santi_Airport" + }, + { + "id": "39609", + "ident": "SOML", + "type": "small_airport", + "name": "Malin Airport", + "latitude_deg": "-7.63332986831665", + "longitude_deg": "-78.6500015258789", + "elevation_ft": "5190", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LAL", + "municipality": "Malin", + "scheduled_service": "no", + "gps_code": "SOML" + }, + { + "id": "31941", + "ident": "SOOA", + "type": "small_airport", + "name": "Maripasoula Airport", + "latitude_deg": "3.655907", + "longitude_deg": "-54.039431", + "elevation_ft": "406", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-SL", + "municipality": "Maripasoula", + "scheduled_service": "yes", + "gps_code": "SOOA", + "iata_code": "MPY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maripasoula_Airport" + }, + { + "id": "6199", + "ident": "SOOG", + "type": "medium_airport", + "name": "Saint-Georges-de-l'Oyapock Airport", + "latitude_deg": "3.8976", + "longitude_deg": "-51.8041", + "elevation_ft": "46", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-CY", + "municipality": "Saint-Georges-de-l'Oyapock", + "scheduled_service": "no", + "gps_code": "SOOG", + "iata_code": "OYP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saint-Georges-de-l%27Oyapock_Airport" + }, + { + "id": "31803", + "ident": "SOOM", + "type": "small_airport", + "name": "Saint-Laurent-du-Maroni Airport", + "latitude_deg": "5.48306", + "longitude_deg": "-54.034401", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-SL", + "municipality": "Saint-Laurent-du-Maroni", + "scheduled_service": "yes", + "gps_code": "SOOM", + "iata_code": "LDX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saint-Laurent-du-Maroni_Airport" + }, + { + "id": "32203", + "ident": "SOOR", + "type": "small_airport", + "name": "Régina Airport", + "latitude_deg": "4.31339", + "longitude_deg": "-52.132745", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-CY", + "municipality": "Régina", + "scheduled_service": "no", + "gps_code": "SOOR", + "iata_code": "REI", + "wikipedia_link": "https://en.wikipedia.org/wiki/R%C3%A9gina_Airport" + }, + { + "id": "32692", + "ident": "SOOS", + "type": "small_airport", + "name": "Saül Airport", + "latitude_deg": "3.61361", + "longitude_deg": "-53.204201", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-SL", + "municipality": "Saül", + "scheduled_service": "yes", + "gps_code": "SOOS", + "iata_code": "XAU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sa%C3%BCl_Airport" + }, + { + "id": "35337", + "ident": "SOOY", + "type": "small_airport", + "name": "Sinnamary Airport", + "latitude_deg": "5.373546", + "longitude_deg": "-52.945628", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "GF", + "iso_region": "GF-CY", + "municipality": "Sinnamary", + "scheduled_service": "no", + "gps_code": "SOOY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sinnamary_Airport" + }, + { + "id": "314636", + "ident": "SOR", + "type": "small_airport", + "name": "Al Thaurah Airport", + "latitude_deg": "34.3905", + "longitude_deg": "40.1524", + "elevation_ft": "1278", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-DY", + "municipality": "Al Thaurah", + "scheduled_service": "no", + "iata_code": "SOR" + }, + { + "id": "39610", + "ident": "SPAA", + "type": "small_airport", + "name": "Caraz Airport", + "latitude_deg": "-9.05142879486084", + "longitude_deg": "-77.81014251708984", + "elevation_ft": "7401", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ANC", + "municipality": "Ancash", + "scheduled_service": "no", + "gps_code": "SPAA" + }, + { + "id": "6200", + "ident": "SPAB", + "type": "small_airport", + "name": "Huancabamba Airport", + "latitude_deg": "-5.256770133972168", + "longitude_deg": "-79.44290161132812", + "elevation_ft": "6312", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-PIU", + "municipality": "Huancabamba", + "scheduled_service": "no", + "gps_code": "SPAB", + "local_code": "SP72" + }, + { + "id": "32345", + "ident": "SPAC", + "type": "small_airport", + "name": "Ciro Alegria Airport", + "latitude_deg": "-4.566999912261963", + "longitude_deg": "-77.91699981689453", + "elevation_ft": "547", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-AMA", + "municipality": "Bagua", + "scheduled_service": "no", + "gps_code": "SPAC" + }, + { + "id": "39611", + "ident": "SPAG", + "type": "small_airport", + "name": "Aguaytia Airport", + "latitude_deg": "-9.037409782409668", + "longitude_deg": "-75.50920104980469", + "elevation_ft": "5853", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-UCA", + "municipality": "Aguaytia", + "scheduled_service": "no", + "gps_code": "SPAG" + }, + { + "id": "39612", + "ident": "SPAI", + "type": "small_airport", + "name": "Urpay Airport", + "latitude_deg": "-8.3495", + "longitude_deg": "-77.3985", + "elevation_ft": "10400", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LAL", + "municipality": "Pataz", + "scheduled_service": "no", + "gps_code": "SPAI" + }, + { + "id": "39613", + "ident": "SPAL", + "type": "small_airport", + "name": "Alao Airport", + "latitude_deg": "-6.5", + "longitude_deg": "-76.7166976928711", + "elevation_ft": "1740", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-SAM", + "municipality": "El Dorado", + "scheduled_service": "no", + "gps_code": "SPAL" + }, + { + "id": "32346", + "ident": "SPAM", + "type": "closed", + "name": "Camana Airport", + "latitude_deg": "-16.606999", + "longitude_deg": "-72.697649", + "elevation_ft": "209", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ARE", + "municipality": "Camana", + "scheduled_service": "no", + "gps_code": "SPAM" + }, + { + "id": "39614", + "ident": "SPAN", + "type": "closed", + "name": "Sullana Airport", + "latitude_deg": "-4.903889", + "longitude_deg": "-80.68528", + "elevation_ft": "197", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-PIU", + "municipality": "Sullana", + "scheduled_service": "no", + "gps_code": "SPAN" + }, + { + "id": "39615", + "ident": "SPAO", + "type": "closed", + "name": "San Juan Aposento Airport", + "latitude_deg": "-15.3539", + "longitude_deg": "-75.167099", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ICA", + "municipality": "San Juan Aposento", + "scheduled_service": "no", + "gps_code": "SPAO", + "iata_code": "APE" + }, + { + "id": "32347", + "ident": "SPAP", + "type": "small_airport", + "name": "Picota Airport", + "latitude_deg": "-6.909451", + "longitude_deg": "-76.32909", + "elevation_ft": "948", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-SAM", + "municipality": "Picota", + "scheduled_service": "no", + "gps_code": "SPAP" + }, + { + "id": "30636", + "ident": "SPAR", + "type": "small_airport", + "name": "Alerta Airport", + "latitude_deg": "-11.682999610900879", + "longitude_deg": "-69.33300018310547", + "elevation_ft": "797", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-MDD", + "municipality": "Fortaleza", + "scheduled_service": "no", + "gps_code": "SPAR", + "iata_code": "ALD" + }, + { + "id": "6201", + "ident": "SPAS", + "type": "small_airport", + "name": "Alferez FAP Alfredo Vladimir Sara Bauer Airport", + "latitude_deg": "-2.79612994194", + "longitude_deg": "-76.46659851070001", + "elevation_ft": "728", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LOR", + "municipality": "Andoas", + "scheduled_service": "no", + "gps_code": "SPAS", + "iata_code": "AOP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alferez_FAP_Alfredo_Vladimir_Sara_Bauer_Airport" + }, + { + "id": "39616", + "ident": "SPAT", + "type": "small_airport", + "name": "Aguas Calientes Airport", + "latitude_deg": "-8.833330154418945", + "longitude_deg": "-74.68329620361328", + "elevation_ft": "9840", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-HUC", + "municipality": "Aguas Calientes", + "scheduled_service": "no", + "gps_code": "SPAT" + }, + { + "id": "6202", + "ident": "SPAY", + "type": "medium_airport", + "name": "Teniente General Gerardo Pérez Pinedo Airport", + "latitude_deg": "-10.7291", + "longitude_deg": "-73.766502", + "elevation_ft": "751", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-UCA", + "municipality": "Atalaya", + "scheduled_service": "no", + "gps_code": "SPAY", + "iata_code": "AYX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tnte._Gral._Gerardo_P%C3%A9rez_Pinedo_Airport" + }, + { + "id": "39617", + "ident": "SPBA", + "type": "closed", + "name": "Barranca Airport", + "latitude_deg": "-10.75", + "longitude_deg": "-77.76667", + "elevation_ft": "160", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LIM", + "municipality": "Barranca", + "scheduled_service": "no", + "gps_code": "SPBA" + }, + { + "id": "31883", + "ident": "SPBB", + "type": "small_airport", + "name": "Moyobamba Airport", + "latitude_deg": "-6.0188889503479", + "longitude_deg": "-76.98832702636719", + "elevation_ft": "2749", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-SAM", + "municipality": "Moyobamba", + "scheduled_service": "no", + "gps_code": "SPBB", + "iata_code": "MBP" + }, + { + "id": "6203", + "ident": "SPBC", + "type": "medium_airport", + "name": "Caballococha Airport", + "latitude_deg": "-3.91686010361", + "longitude_deg": "-70.5082015991", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LOR", + "municipality": "Caballococha", + "scheduled_service": "no", + "gps_code": "SPBC", + "local_code": "LHC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Caballococha_Airport" + }, + { + "id": "30772", + "ident": "SPBL", + "type": "small_airport", + "name": "Huallaga Airport", + "latitude_deg": "-7.06056022644043", + "longitude_deg": "-76.58219909667969", + "elevation_ft": "980", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-SAM", + "municipality": "Bellavista", + "scheduled_service": "no", + "gps_code": "SPBL", + "iata_code": "BLP" + }, + { + "id": "39618", + "ident": "SPBQ", + "type": "small_airport", + "name": "Nuevo Acari Airport", + "latitude_deg": "-15.45003", + "longitude_deg": "-74.74423", + "elevation_ft": "590", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ARE", + "municipality": "San Isidro", + "scheduled_service": "no", + "gps_code": "SPBQ" + }, + { + "id": "6204", + "ident": "SPBR", + "type": "medium_airport", + "name": "Iberia Airport", + "latitude_deg": "-11.411600112915039", + "longitude_deg": "-69.48870086669922", + "elevation_ft": "750", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-MDD", + "municipality": "Iberia", + "scheduled_service": "no", + "gps_code": "SPBR", + "iata_code": "IBP" + }, + { + "id": "39589", + "ident": "SPBS", + "type": "small_airport", + "name": "Bellavista Airport", + "latitude_deg": "-5.288390159606934", + "longitude_deg": "-76.29209899902344", + "elevation_ft": "675", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LOR", + "municipality": "Jeberos", + "scheduled_service": "no", + "gps_code": "SPBS" + }, + { + "id": "39590", + "ident": "SPBT", + "type": "small_airport", + "name": "Obenteni Airport", + "latitude_deg": "-10.755137", + "longitude_deg": "-74.221749", + "elevation_ft": "3290", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-UCA", + "municipality": "Obenteni", + "scheduled_service": "no", + "gps_code": "SPBT" + }, + { + "id": "39591", + "ident": "SPBY", + "type": "closed", + "name": "Bayóvar Airport", + "latitude_deg": "-5.83075", + "longitude_deg": "-81.025803", + "elevation_ft": "88", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-PIU", + "municipality": "Bayóvar", + "scheduled_service": "no", + "gps_code": "SPBY" + }, + { + "id": "39592", + "ident": "SPCC", + "type": "small_airport", + "name": "Ciudad Constitución Airport", + "latitude_deg": "-9.865278244018555", + "longitude_deg": "-75.0088882446289", + "elevation_ft": "775", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-PAS", + "municipality": "Ciudad Constitución", + "scheduled_service": "no", + "gps_code": "SPCC" + }, + { + "id": "39619", + "ident": "SPCG", + "type": "small_airport", + "name": "Casa Grande Airport", + "latitude_deg": "-7.743888854980469", + "longitude_deg": "-79.18638610839844", + "elevation_ft": "475", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LAL", + "municipality": "Ascope", + "scheduled_service": "no", + "gps_code": "SPCG" + }, + { + "id": "32348", + "ident": "SPCH", + "type": "small_airport", + "name": "Tocache Airport", + "latitude_deg": "-8.1829996109", + "longitude_deg": "-76.516998291", + "elevation_ft": "1500", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-SAM", + "municipality": "Tocache", + "scheduled_service": "no", + "gps_code": "SPCH", + "local_code": "TCG" + }, + { + "id": "6205", + "ident": "SPCL", + "type": "medium_airport", + "name": "Cap FAP David Abenzur Rengifo International Airport", + "latitude_deg": "-8.37794017791748", + "longitude_deg": "-74.57430267333984", + "elevation_ft": "513", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-UCA", + "municipality": "Pucallpa", + "scheduled_service": "yes", + "gps_code": "SPCL", + "iata_code": "PCL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Captain_Rolden_International_Airport" + }, + { + "id": "32349", + "ident": "SPCM", + "type": "small_airport", + "name": "Contamana Airport", + "latitude_deg": "-7.335827", + "longitude_deg": "-74.992531", + "elevation_ft": "480", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LOR", + "municipality": "Contamana", + "scheduled_service": "no", + "gps_code": "SPCM", + "local_code": "CTF" + }, + { + "id": "39620", + "ident": "SPCN", + "type": "closed", + "name": "Cunocuno Airport", + "latitude_deg": "-15.977222", + "longitude_deg": "-73.10833", + "elevation_ft": "5300", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ARE", + "municipality": "Cunocuno", + "scheduled_service": "no", + "gps_code": "SPCN" + }, + { + "id": "32350", + "ident": "SPCP", + "type": "small_airport", + "name": "Pucacaca Airport", + "latitude_deg": "-6.843543", + "longitude_deg": "-76.33959", + "elevation_ft": "977", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-SAM", + "municipality": "Pucacaca", + "scheduled_service": "no", + "gps_code": "SPCP" + }, + { + "id": "39621", + "ident": "SPCR", + "type": "small_airport", + "name": "Acarí Airbase Airport", + "latitude_deg": "-15.5", + "longitude_deg": "-74.66667175292969", + "elevation_ft": "540", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ARE", + "municipality": "Acarí", + "scheduled_service": "no", + "gps_code": "SPCR" + }, + { + "id": "39622", + "ident": "SPCT", + "type": "small_airport", + "name": "Chota Airport", + "latitude_deg": "-6.550000190734863", + "longitude_deg": "-78.6500015258789", + "elevation_ft": "7800", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-CAJ", + "municipality": "Chota", + "scheduled_service": "no", + "gps_code": "SPCT" + }, + { + "id": "32351", + "ident": "SPDO", + "type": "small_airport", + "name": "Mollendo Airport", + "latitude_deg": "-17.045400619506836", + "longitude_deg": "-71.98370361328125", + "elevation_ft": "9", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ARE", + "municipality": "Mollendo", + "scheduled_service": "no", + "gps_code": "SPDO" + }, + { + "id": "6206", + "ident": "SPDR", + "type": "small_airport", + "name": "Trompeteros Airport", + "latitude_deg": "-3.80601000786", + "longitude_deg": "-75.03929901119999", + "elevation_ft": "427", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LOR", + "municipality": "Corrientes", + "scheduled_service": "no", + "gps_code": "SPDR", + "iata_code": "TDP" + }, + { + "id": "39623", + "ident": "SPEB", + "type": "small_airport", + "name": "Pebas Airport", + "latitude_deg": "-3.3333001136779785", + "longitude_deg": "-71.81670379638672", + "elevation_ft": "383", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LOR", + "municipality": "Loreto", + "scheduled_service": "no", + "gps_code": "SPEB" + }, + { + "id": "6207", + "ident": "SPEE", + "type": "small_airport", + "name": "El Estrecho Airport", + "latitude_deg": "-2.4540600776672363", + "longitude_deg": "-72.67060089111328", + "elevation_ft": "421", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LOR", + "scheduled_service": "no", + "gps_code": "SPEE", + "local_code": "SP69" + }, + { + "id": "32353", + "ident": "SPEN", + "type": "small_airport", + "name": "Iscozasin Airport", + "latitude_deg": "-10.182999610900879", + "longitude_deg": "-75.1500015258789", + "elevation_ft": "898", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-PAS", + "municipality": "Iscozasin", + "scheduled_service": "no", + "gps_code": "SPEN" + }, + { + "id": "6208", + "ident": "SPEO", + "type": "medium_airport", + "name": "FAP Lieutenant Jaime Andres de Montreuil Morales Airport", + "latitude_deg": "-9.14961", + "longitude_deg": "-78.523804", + "elevation_ft": "69", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ANC", + "municipality": "Chimbote", + "scheduled_service": "yes", + "gps_code": "SPEO", + "iata_code": "CHM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tnte._FAP_Jaime_Montreuil_Morales_Airport" + }, + { + "id": "6209", + "ident": "SPEP", + "type": "small_airport", + "name": "Puerto Esperanza Airport", + "latitude_deg": "-9.7681303024292", + "longitude_deg": "-70.70649719238281", + "elevation_ft": "725", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-UCA", + "municipality": "Esperanza", + "scheduled_service": "no", + "gps_code": "SPEP" + }, + { + "id": "6210", + "ident": "SPEQ", + "type": "small_airport", + "name": "Cesar Torke Podesta Airport", + "latitude_deg": "-17.179000854492188", + "longitude_deg": "-70.93080139160156", + "elevation_ft": "4480", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-MOQ", + "municipality": "Moquegua", + "scheduled_service": "no", + "gps_code": "SPEQ" + }, + { + "id": "39593", + "ident": "SPEZ", + "type": "small_airport", + "name": "Puerto Bermudez Airport", + "latitude_deg": "-10.299200057983398", + "longitude_deg": "-74.93720245361328", + "elevation_ft": "840", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-PAS", + "municipality": "Oxapampa", + "scheduled_service": "no", + "gps_code": "SPEZ" + }, + { + "id": "39624", + "ident": "SPFA", + "type": "closed", + "name": "Fausa Airport", + "latitude_deg": "-14.7094", + "longitude_deg": "-71.731102", + "elevation_ft": "14809", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-CUS", + "municipality": "Fausa", + "scheduled_service": "no", + "gps_code": "SPFA" + }, + { + "id": "6211", + "ident": "SPGB", + "type": "small_airport", + "name": "Galilea Airport", + "latitude_deg": "-4.031879901885986", + "longitude_deg": "-77.75879669189453", + "elevation_ft": "597", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-AMA", + "scheduled_service": "no", + "gps_code": "SPGB" + }, + { + "id": "313312", + "ident": "spgl", + "type": "small_airport", + "name": "Chagual Airport", + "latitude_deg": "-7.798106", + "longitude_deg": "-77.6495", + "elevation_ft": "3967", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LAL", + "scheduled_service": "no", + "gps_code": "SPGL" + }, + { + "id": "32438", + "ident": "SPGM", + "type": "small_airport", + "name": "Tingo Maria Airport", + "latitude_deg": "-9.133000373840332", + "longitude_deg": "-75.94999694824219", + "elevation_ft": "2010", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-HUC", + "municipality": "Tingo Maria", + "scheduled_service": "no", + "gps_code": "SPGM", + "iata_code": "TGI" + }, + { + "id": "6212", + "ident": "SPGP", + "type": "small_airport", + "name": "Güeppi­ Airport", + "latitude_deg": "-0.11905600130558014", + "longitude_deg": "-75.2479019165039", + "elevation_ft": "680", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LOR", + "scheduled_service": "no", + "gps_code": "SPGP", + "local_code": "SP01" + }, + { + "id": "39625", + "ident": "SPGS", + "type": "small_airport", + "name": "Lagunas Airport", + "latitude_deg": "-6.900000095367432", + "longitude_deg": "-78.63333129882812", + "elevation_ft": "12675", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-CAJ", + "municipality": "Cajamarca", + "scheduled_service": "no", + "gps_code": "SPGS" + }, + { + "id": "39594", + "ident": "SPGT", + "type": "small_airport", + "name": "Puerto Victoria Airport", + "latitude_deg": "-9.902609825134277", + "longitude_deg": "-74.96410369873047", + "elevation_ft": "782", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-PAS", + "municipality": "Puerto Victoria", + "scheduled_service": "no", + "gps_code": "SPGT" + }, + { + "id": "39626", + "ident": "SPGU", + "type": "small_airport", + "name": "Baguá Airport", + "latitude_deg": "-5.6347222328186035", + "longitude_deg": "-78.53055572509766", + "elevation_ft": "1375", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-AMA", + "municipality": "Baguá", + "scheduled_service": "no", + "gps_code": "SPGU" + }, + { + "id": "39595", + "ident": "SPHA", + "type": "closed", + "name": "Chincha Airport", + "latitude_deg": "-13.37036", + "longitude_deg": "-76.11276", + "elevation_ft": "640", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ICA", + "municipality": "Chincha", + "scheduled_service": "no", + "gps_code": "SPHA" + }, + { + "id": "39596", + "ident": "SPHC", + "type": "small_airport", + "name": "Chala Airport", + "latitude_deg": "-15.80703", + "longitude_deg": "-74.28699", + "elevation_ft": "112", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ARE", + "municipality": "Puerto Chala", + "scheduled_service": "no", + "gps_code": "SPHC" + }, + { + "id": "6213", + "ident": "SPHI", + "type": "medium_airport", + "name": "Air Force Captain Jose A Quinones Gonzales International Airport", + "latitude_deg": "-6.78748", + "longitude_deg": "-79.828102", + "elevation_ft": "97", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LAM", + "municipality": "Chiclayo", + "scheduled_service": "yes", + "gps_code": "SPHI", + "iata_code": "CIX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cap._FAP_Jos%C3%A9_A._Qui%C3%B1ones_Gonzales_International_Airport" + }, + { + "id": "39627", + "ident": "SPHL", + "type": "closed", + "name": "Olmos Airport", + "latitude_deg": "-5.984722", + "longitude_deg": "-79.745277", + "elevation_ft": "585", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LAM", + "municipality": "Olmos", + "scheduled_service": "yes", + "gps_code": "SPHL" + }, + { + "id": "6214", + "ident": "SPHO", + "type": "medium_airport", + "name": "Air Force Colonel Alfredo Mendivil Duarte Airport", + "latitude_deg": "-13.1548", + "longitude_deg": "-74.204399", + "elevation_ft": "8917", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-AYA", + "municipality": "Ayacucho", + "scheduled_service": "yes", + "gps_code": "SPHO", + "iata_code": "AYP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coronel_FAP_Alfredo_Mendivil_Duarte_Airport", + "keywords": "Coronel FAP Alfredo Mendivil Duarte" + }, + { + "id": "39628", + "ident": "SPHU", + "type": "small_airport", + "name": "Huancayo Airport", + "latitude_deg": "-12.069899559020996", + "longitude_deg": "-75.19850158691406", + "elevation_ft": "10800", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-JUN", + "municipality": "Huancayo", + "scheduled_service": "yes", + "gps_code": "SPHU" + }, + { + "id": "39629", + "ident": "SPHV", + "type": "small_airport", + "name": "Huánuco Viejo Airport", + "latitude_deg": "-9.92632007598877", + "longitude_deg": "-76.23390197753906", + "elevation_ft": "6320", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-HUC", + "municipality": "Huánuco Viejo", + "scheduled_service": "no", + "gps_code": "SPHV" + }, + { + "id": "6215", + "ident": "SPHY", + "type": "small_airport", + "name": "Andahuaylas Airport", + "latitude_deg": "-13.706399917602539", + "longitude_deg": "-73.35040283203125", + "elevation_ft": "11300", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-APU", + "municipality": "Andahuaylas", + "scheduled_service": "yes", + "gps_code": "SPHY", + "iata_code": "ANS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Andahuaylas_Airport" + }, + { + "id": "6216", + "ident": "SPHZ", + "type": "medium_airport", + "name": "Comandante FAP German Arias Graziani Airport", + "latitude_deg": "-9.347439765930176", + "longitude_deg": "-77.59839630126953", + "elevation_ft": "9097", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ANC", + "municipality": "Anta", + "scheduled_service": "no", + "gps_code": "SPHZ", + "iata_code": "ATA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Comandante_FAP_Germ%C3%A1n_Arias_Graziani_Airport" + }, + { + "id": "39597", + "ident": "SPIA", + "type": "closed", + "name": "Ica Airport", + "latitude_deg": "-14.2001", + "longitude_deg": "-75.573898", + "elevation_ft": "1500", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ICA", + "municipality": "Ica", + "scheduled_service": "no", + "gps_code": "SPIA" + }, + { + "id": "32540", + "ident": "SPIL", + "type": "small_airport", + "name": "Quincemil Air Base", + "latitude_deg": "-13.231357", + "longitude_deg": "-70.75145", + "elevation_ft": "2047", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-CUS", + "municipality": "Quince Mil", + "scheduled_service": "no", + "gps_code": "SPIL", + "iata_code": "UMI" + }, + { + "id": "6217", + "ident": "SPIM", + "type": "large_airport", + "name": "Jorge Chávez International Airport", + "latitude_deg": "-12.0219", + "longitude_deg": "-77.114305", + "elevation_ft": "113", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LIM", + "municipality": "Lima", + "scheduled_service": "yes", + "gps_code": "SPJC", + "iata_code": "LIM", + "home_link": "http://www.lap.com.pe/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jorge_Ch%C3%A1vez_International_Airport", + "keywords": "SPIM, SPJC" + }, + { + "id": "39598", + "ident": "SPIN", + "type": "small_airport", + "name": "Iñapari Airport", + "latitude_deg": "-10.979000091552734", + "longitude_deg": "-69.55940246582031", + "elevation_ft": "917", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-MDD", + "municipality": "Iñapari", + "scheduled_service": "no", + "gps_code": "SPIN" + }, + { + "id": "32354", + "ident": "SPIP", + "type": "closed", + "name": "Satipo Airport", + "latitude_deg": "-11.2625", + "longitude_deg": "-74.647778", + "elevation_ft": "2099", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-JUN", + "municipality": "Satipo", + "scheduled_service": "no", + "gps_code": "SPIP" + }, + { + "id": "32355", + "ident": "SPIR", + "type": "small_airport", + "name": "Patria Airport", + "latitude_deg": "-12.966295", + "longitude_deg": "-71.429936", + "elevation_ft": "2224", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-CUS", + "municipality": "Pillcopata", + "scheduled_service": "no", + "gps_code": "SPIR" + }, + { + "id": "39630", + "ident": "SPIS", + "type": "small_airport", + "name": "Pias Airport", + "latitude_deg": "-7.92062", + "longitude_deg": "-77.52518", + "elevation_ft": "8500", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LAL", + "municipality": "Pataz", + "scheduled_service": "no", + "gps_code": "SPIS" + }, + { + "id": "39599", + "ident": "SPIT", + "type": "small_airport", + "name": "Paita Airport", + "latitude_deg": "-5.085949897766113", + "longitude_deg": "-81.15280151367188", + "elevation_ft": "230", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-PIU", + "municipality": "Paita Wesr", + "scheduled_service": "no", + "gps_code": "SPIT" + }, + { + "id": "32356", + "ident": "SPIY", + "type": "small_airport", + "name": "Yauri Airport", + "latitude_deg": "-14.796129", + "longitude_deg": "-71.431818", + "elevation_ft": "12972", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-CUS", + "municipality": "Yauri", + "scheduled_service": "no", + "gps_code": "SPIY" + }, + { + "id": "32357", + "ident": "SPIZ", + "type": "small_airport", + "name": "Uchiza Airport", + "latitude_deg": "-8.467000007629395", + "longitude_deg": "-76.3499984741211", + "elevation_ft": "1965", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-HUC", + "municipality": "Uchiza", + "scheduled_service": "no", + "gps_code": "SPIZ", + "iata_code": "UCZ" + }, + { + "id": "6218", + "ident": "SPJA", + "type": "medium_airport", + "name": "Juan Simons Vela Airport", + "latitude_deg": "-6.067860126495361", + "longitude_deg": "-77.16000366210938", + "elevation_ft": "2707", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-SAM", + "municipality": "Rioja", + "scheduled_service": "no", + "gps_code": "SPJA", + "iata_code": "RIJ" + }, + { + "id": "32358", + "ident": "SPJB", + "type": "small_airport", + "name": "Pampa Grande Airport", + "latitude_deg": "-7.61447", + "longitude_deg": "-78.06159", + "elevation_ft": "8727", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-CAJ", + "municipality": "Pampa Grande", + "scheduled_service": "no", + "gps_code": "SPJB" + }, + { + "id": "6219", + "ident": "SPJE", + "type": "medium_airport", + "name": "Shumba Airport", + "latitude_deg": "-5.59248", + "longitude_deg": "-78.774002", + "elevation_ft": "2477", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-CAJ", + "municipality": "Jaén", + "scheduled_service": "yes", + "gps_code": "SPJE", + "iata_code": "JAE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ja%C3%A9n_Airport" + }, + { + "id": "6220", + "ident": "SPJI", + "type": "medium_airport", + "name": "Juanjui Airport", + "latitude_deg": "-7.169099807739258", + "longitude_deg": "-76.72859954833984", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-SAM", + "municipality": "Juanjuí", + "scheduled_service": "no", + "gps_code": "SPJI", + "iata_code": "JJI" + }, + { + "id": "6221", + "ident": "SPJJ", + "type": "medium_airport", + "name": "Francisco Carle Airport", + "latitude_deg": "-11.7831001282", + "longitude_deg": "-75.47339630130001", + "elevation_ft": "11034", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-JUN", + "municipality": "Jauja", + "scheduled_service": "yes", + "gps_code": "SPJJ", + "iata_code": "JAU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Francisco_Carle_Airport" + }, + { + "id": "6222", + "ident": "SPJL", + "type": "medium_airport", + "name": "Inca Manco Capac International Airport", + "latitude_deg": "-15.467100143432617", + "longitude_deg": "-70.158203125", + "elevation_ft": "12552", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-PUN", + "municipality": "Juliaca", + "scheduled_service": "yes", + "gps_code": "SPJL", + "iata_code": "JUL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Inca_Manco_Capac_International_Airport" + }, + { + "id": "32302", + "ident": "SPJN", + "type": "small_airport", + "name": "San Juan de Marcona Airport", + "latitude_deg": "-15.357508", + "longitude_deg": "-75.135005", + "elevation_ft": "144", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ICA", + "municipality": "San Juan de Marcona", + "scheduled_service": "no", + "gps_code": "SPJN", + "iata_code": "SJA", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Juan_de_Marcona_Airport" + }, + { + "id": "6223", + "ident": "SPJR", + "type": "medium_airport", + "name": "Mayor General FAP Armando Revoredo Iglesias Airport", + "latitude_deg": "-7.1391801834106445", + "longitude_deg": "-78.4894027709961", + "elevation_ft": "8781", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-CAJ", + "municipality": "Cajamarca", + "scheduled_service": "yes", + "gps_code": "SPJR", + "iata_code": "CJA", + "wikipedia_link": "https://en.wikipedia.org/wiki/My._Gral._FAP._Armando_Revoredo_Iglesias_Airport" + }, + { + "id": "39631", + "ident": "SPLA", + "type": "small_airport", + "name": "Luisiana Airport", + "latitude_deg": "-12.673815", + "longitude_deg": "-73.710266", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-AYA", + "municipality": "Luisiana", + "scheduled_service": "no", + "gps_code": "SPLA" + }, + { + "id": "39608", + "ident": "SPLC", + "type": "small_airport", + "name": "Mariano Melgar Airport", + "latitude_deg": "-16.7915", + "longitude_deg": "-71.886597", + "elevation_ft": "3890", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ARE", + "municipality": "La Joya", + "scheduled_service": "no", + "gps_code": "SPLC" + }, + { + "id": "39632", + "ident": "SPLD", + "type": "small_airport", + "name": "Celendín Airport", + "latitude_deg": "-6.867599964141846", + "longitude_deg": "-78.14990234375", + "elevation_ft": "8600", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-CAJ", + "municipality": "Celendín", + "scheduled_service": "no", + "gps_code": "SPLD" + }, + { + "id": "39600", + "ident": "SPLG", + "type": "small_airport", + "name": "Lagarto Nuevo Airport", + "latitude_deg": "-12.641599655151367", + "longitude_deg": "-69.8375015258789", + "elevation_ft": "763", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-MDD", + "municipality": "Lagarto", + "scheduled_service": "no", + "gps_code": "SPLG" + }, + { + "id": "32359", + "ident": "SPLN", + "type": "small_airport", + "name": "San Nicolas Airport", + "latitude_deg": "-6.39231014251709", + "longitude_deg": "-77.5011978149414", + "elevation_ft": "5082", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-AMA", + "municipality": "Rodriguez de Mendoza", + "scheduled_service": "no", + "gps_code": "SPLN", + "iata_code": "RIM" + }, + { + "id": "6224", + "ident": "SPLO", + "type": "medium_airport", + "name": "Ilo Airport", + "latitude_deg": "-17.69499969482422", + "longitude_deg": "-71.34400177001953", + "elevation_ft": "72", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-MOQ", + "municipality": "Ilo", + "scheduled_service": "no", + "gps_code": "SPLO", + "iata_code": "ILQ" + }, + { + "id": "6225", + "ident": "SPLP", + "type": "small_airport", + "name": "Las Palmas Air Base", + "latitude_deg": "-12.16069984436", + "longitude_deg": "-76.998901367188", + "elevation_ft": "250", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LIM", + "municipality": "Chorrillos", + "scheduled_service": "no", + "gps_code": "SPLP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Las_Palmas_Air_Base" + }, + { + "id": "32360", + "ident": "SPLS", + "type": "small_airport", + "name": "Zorrillos Airport", + "latitude_deg": "-8.416999816894531", + "longitude_deg": "-75.13300323486328", + "elevation_ft": "711", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-UCA", + "municipality": "Zorrillos", + "scheduled_service": "no", + "gps_code": "SPLS" + }, + { + "id": "39633", + "ident": "SPLT", + "type": "closed", + "name": "Lobitos Airport", + "latitude_deg": "-4.448611", + "longitude_deg": "-81.275558", + "elevation_ft": "45", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-PIU", + "municipality": "Lobitos", + "scheduled_service": "no", + "gps_code": "SPLT" + }, + { + "id": "356332", + "ident": "SPLX", + "type": "small_airport", + "name": "Lib Mandi Metropolitan Airport", + "latitude_deg": "-12.38875", + "longitude_deg": "-76.75834", + "elevation_ft": "200", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LIM", + "municipality": "San Bartolo", + "scheduled_service": "no", + "gps_code": "SPLX" + }, + { + "id": "6226", + "ident": "SPME", + "type": "medium_airport", + "name": "Captain Pedro Canga Rodriguez International Airport", + "latitude_deg": "-3.552074", + "longitude_deg": "-80.381086", + "elevation_ft": "115", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-TUM", + "municipality": "Tumbes", + "scheduled_service": "yes", + "gps_code": "SPME", + "iata_code": "TBP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cap._FAP_Pedro_Canga_Rodr%C3%ADguez_Airport", + "keywords": "Capitan FAP Pedro Canga Rodriguez" + }, + { + "id": "6227", + "ident": "SPMF", + "type": "small_airport", + "name": "Mayor PNP Nancy Flores Paucar Airport", + "latitude_deg": "-11.3254", + "longitude_deg": "-74.535598", + "elevation_ft": "2247", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-JUN", + "municipality": "Mazamari", + "scheduled_service": "no", + "gps_code": "SPMF", + "iata_code": "MZA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mayor_Pnp_Nancy_Flore_Airport", + "keywords": "Manuel Prado Ugarteche" + }, + { + "id": "39634", + "ident": "SPMR", + "type": "closed", + "name": "Santa Maria Airport", + "latitude_deg": "-11.983334", + "longitude_deg": "-77", + "elevation_ft": "769", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LIM", + "municipality": "Santa María", + "scheduled_service": "no", + "gps_code": "SPMR", + "iata_code": "SMG" + }, + { + "id": "6228", + "ident": "SPMS", + "type": "medium_airport", + "name": "Moises Benzaquen Rengifo Airport", + "latitude_deg": "-5.893770217895508", + "longitude_deg": "-76.11820220947266", + "elevation_ft": "587", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LOR", + "municipality": "Yurimaguas", + "scheduled_service": "yes", + "gps_code": "SPMS", + "iata_code": "YMS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mois%C3%A9s_Benzaquen_Rengifo_Airport" + }, + { + "id": "6229", + "ident": "SPNC", + "type": "medium_airport", + "name": "Alferez Fap David Figueroa Fernandini Airport", + "latitude_deg": "-9.878809928894043", + "longitude_deg": "-76.20480346679688", + "elevation_ft": "6070", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-HUC", + "municipality": "Huánuco", + "scheduled_service": "yes", + "gps_code": "SPNC", + "iata_code": "HUU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alf%C3%A9rez_FAP_David_Figueroa_Fernandini_Airport" + }, + { + "id": "39635", + "ident": "SPNH", + "type": "small_airport", + "name": "Laguna Choclococha Airport", + "latitude_deg": "-13.16569995880127", + "longitude_deg": "-75.0719985961914", + "elevation_ft": "14965", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-HUV", + "municipality": "Choclococha", + "scheduled_service": "no", + "gps_code": "SPNH" + }, + { + "id": "39601", + "ident": "SPNM", + "type": "small_airport", + "name": "Nuevo Mundo Airport", + "latitude_deg": "-11.541500091552734", + "longitude_deg": "-73.14219665527344", + "elevation_ft": "1090", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-CUS", + "municipality": "Nuevo Mundo", + "scheduled_service": "no", + "gps_code": "SPNM" + }, + { + "id": "39602", + "ident": "SPNO", + "type": "closed", + "name": "Ancón Airport", + "latitude_deg": "-11.7947", + "longitude_deg": "-77.180901", + "elevation_ft": "38", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LIM", + "municipality": "Ancón", + "scheduled_service": "no", + "gps_code": "SPNO" + }, + { + "id": "32361", + "ident": "SPNP", + "type": "small_airport", + "name": "Ventilla Airport", + "latitude_deg": "-15.85131", + "longitude_deg": "-70.05871", + "elevation_ft": "13123", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-PUN", + "municipality": "Ventilla", + "scheduled_service": "no", + "gps_code": "SPNP" + }, + { + "id": "39636", + "ident": "SPNR", + "type": "small_airport", + "name": "Ricrán Airport", + "latitude_deg": "-10.777950286865234", + "longitude_deg": "-76.25131225585938", + "elevation_ft": "13720", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-PAS", + "municipality": "Ricrán", + "scheduled_service": "no", + "gps_code": "SPNR" + }, + { + "id": "32362", + "ident": "SPNT", + "type": "small_airport", + "name": "Intuto Airport", + "latitude_deg": "-3.5829999446868896", + "longitude_deg": "-74.75", + "elevation_ft": "650", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LOR", + "municipality": "Intuto", + "scheduled_service": "no", + "gps_code": "SPNT" + }, + { + "id": "32363", + "ident": "SPNU", + "type": "small_airport", + "name": "Manu Airport", + "latitude_deg": "-12.289721", + "longitude_deg": "-70.890199", + "elevation_ft": "1010", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-MDD", + "municipality": "Manu", + "scheduled_service": "no", + "gps_code": "SPNU" + }, + { + "id": "39603", + "ident": "SPOA", + "type": "small_airport", + "name": "Saposoa Airport", + "latitude_deg": "-6.9600300788879395", + "longitude_deg": "-76.76840209960938", + "elevation_ft": "982", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-SAM", + "municipality": "Plaza Saposoa", + "scheduled_service": "no", + "gps_code": "SPOA", + "iata_code": "SQU" + }, + { + "id": "6230", + "ident": "SPOL", + "type": "closed", + "name": "Collique Airport", + "latitude_deg": "-11.9287", + "longitude_deg": "-77.061096", + "elevation_ft": "410", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LIM", + "municipality": "Collique Bajo", + "scheduled_service": "no", + "gps_code": "SPOL" + }, + { + "id": "39637", + "ident": "SPON", + "type": "small_airport", + "name": "Orellana Airport", + "latitude_deg": "-6.896733", + "longitude_deg": "-75.153182", + "elevation_ft": "424", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LOR", + "municipality": "Orellana", + "scheduled_service": "no", + "gps_code": "SPON" + }, + { + "id": "32364", + "ident": "SPOR", + "type": "small_airport", + "name": "Orcopampa Airport", + "latitude_deg": "-15.315232", + "longitude_deg": "-72.352095", + "elevation_ft": "12200", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ARE", + "municipality": "Orcopampa", + "scheduled_service": "no", + "gps_code": "SPOR" + }, + { + "id": "39638", + "ident": "SPOS", + "type": "closed", + "name": "Zorritos Airport", + "latitude_deg": "-3.67374", + "longitude_deg": "-80.652397", + "elevation_ft": "95", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-TUM", + "municipality": "Contralmirante Villar", + "scheduled_service": "no", + "gps_code": "SPOS" + }, + { + "id": "32412", + "ident": "SPOV", + "type": "small_airport", + "name": "Shiringayoc/Hacienda Hda Mejia Airport", + "latitude_deg": "-11.9", + "longitude_deg": "-69.167", + "elevation_ft": "748", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-MDD", + "municipality": "Leon Velarde", + "scheduled_service": "no", + "gps_code": "SPOV" + }, + { + "id": "39639", + "ident": "SPOY", + "type": "small_airport", + "name": "Atico Airport", + "latitude_deg": "-16.232846", + "longitude_deg": "-73.605652", + "elevation_ft": "9", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ARE", + "municipality": "Atico", + "scheduled_service": "no", + "gps_code": "SPOY" + }, + { + "id": "32365", + "ident": "SPPA", + "type": "closed", + "name": "Puerto Ocopa Airport", + "latitude_deg": "-11.143755", + "longitude_deg": "-74.307153", + "elevation_ft": "1217", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-JUN", + "municipality": "Puerto Ocopa", + "scheduled_service": "no", + "gps_code": "SPPA" + }, + { + "id": "32366", + "ident": "SPPB", + "type": "small_airport", + "name": "Tipishsa Airport", + "latitude_deg": "-9.533060073852539", + "longitude_deg": "-72.75689697265625", + "elevation_ft": "783", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-UCA", + "municipality": "Puerto Breu", + "scheduled_service": "no", + "gps_code": "SPPB" + }, + { + "id": "32367", + "ident": "SPPG", + "type": "closed", + "name": "Paramonga Airport", + "latitude_deg": "-10.667", + "longitude_deg": "-77.833", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LIM", + "municipality": "Paramonga", + "scheduled_service": "no", + "gps_code": "SPPG" + }, + { + "id": "32368", + "ident": "SPPH", + "type": "small_airport", + "name": "Pampa Hermosa Airport", + "latitude_deg": "-7.206774", + "longitude_deg": "-75.297559", + "elevation_ft": "510", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LOR", + "municipality": "Pampa Hermosa", + "scheduled_service": "no", + "gps_code": "SPPH" + }, + { + "id": "39640", + "ident": "SPPL", + "type": "small_airport", + "name": "Playa Airport", + "latitude_deg": "-8.517820358276367", + "longitude_deg": "-76.48049926757812", + "elevation_ft": "2070", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-SAM", + "municipality": "Trismaje", + "scheduled_service": "no", + "gps_code": "SPPL" + }, + { + "id": "39641", + "ident": "SPPM", + "type": "closed", + "name": "Pomacocha Airport", + "latitude_deg": "-15.1792", + "longitude_deg": "-73.274399", + "elevation_ft": "10524", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-AYA", + "municipality": "Pomacocha", + "scheduled_service": "no", + "gps_code": "SPPM" + }, + { + "id": "39642", + "ident": "SPPN", + "type": "small_airport", + "name": "Palmas del Espino Airport", + "latitude_deg": "-8.292590141296387", + "longitude_deg": "-76.4395980834961", + "elevation_ft": "1625", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-SAM", + "municipality": "Palmas del Espino", + "scheduled_service": "no", + "gps_code": "SPPN" + }, + { + "id": "39643", + "ident": "SPPO", + "type": "small_airport", + "name": "Pozuzo Airport", + "latitude_deg": "-10.070099830627441", + "longitude_deg": "-75.55000305175781", + "elevation_ft": "2420", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-PAS", + "municipality": "Pozuzo", + "scheduled_service": "yes", + "gps_code": "SPPO" + }, + { + "id": "39604", + "ident": "SPPP", + "type": "small_airport", + "name": "Huanacopampa Airport", + "latitude_deg": "-14.14334", + "longitude_deg": "-72.33455", + "elevation_ft": "13130", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-APU", + "municipality": "Huanacopampa", + "scheduled_service": "no", + "gps_code": "SPPP" + }, + { + "id": "6231", + "ident": "SPPY", + "type": "medium_airport", + "name": "Chachapoyas Airport", + "latitude_deg": "-6.201809883117676", + "longitude_deg": "-77.8561019897461", + "elevation_ft": "8333", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-AMA", + "municipality": "Chachapoyas", + "scheduled_service": "no", + "gps_code": "SPPY", + "iata_code": "CHH" + }, + { + "id": "39644", + "ident": "SPPZ", + "type": "small_airport", + "name": "Palcazú Airport", + "latitude_deg": "-9.895833015441895", + "longitude_deg": "-75.1177749633789", + "elevation_ft": "932", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-PAS", + "municipality": "Porvenir", + "scheduled_service": "no", + "gps_code": "SPPZ" + }, + { + "id": "39605", + "ident": "SPQI", + "type": "small_airport", + "name": "Kiteni Airport", + "latitude_deg": "-12.648669", + "longitude_deg": "-73.036579", + "elevation_ft": "2540", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-CUS", + "municipality": "La Convención", + "scheduled_service": "no", + "gps_code": "SPQI" + }, + { + "id": "39645", + "ident": "SPQJ", + "type": "small_airport", + "name": "Jaquí Airport", + "latitude_deg": "-15.466667175292969", + "longitude_deg": "-74.43333435058594", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ARE", + "municipality": "Jaquí", + "scheduled_service": "no", + "gps_code": "SPQJ" + }, + { + "id": "32369", + "ident": "SPQN", + "type": "closed", + "name": "Requena Airport", + "latitude_deg": "-5.078026", + "longitude_deg": "-73.856404", + "elevation_ft": "393", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LOR", + "municipality": "Requena", + "scheduled_service": "no", + "gps_code": "SPQN", + "keywords": "REQ" + }, + { + "id": "39646", + "ident": "SPQR", + "type": "small_airport", + "name": "Quiruvilca Airport", + "latitude_deg": "-7.9666666984558105", + "longitude_deg": "-78.19999694824219", + "elevation_ft": "13509", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LAL", + "municipality": "Qiruvilca", + "scheduled_service": "no", + "gps_code": "SPQR" + }, + { + "id": "6232", + "ident": "SPQT", + "type": "medium_airport", + "name": "Coronel FAP Francisco Secada Vignetta International Airport", + "latitude_deg": "-3.78474", + "longitude_deg": "-73.3088", + "elevation_ft": "306", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LOR", + "municipality": "Iquitos", + "scheduled_service": "yes", + "gps_code": "SPQT", + "iata_code": "IQT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Crnl._FAP_Francisco_Secada_Vignetta_International_Airport" + }, + { + "id": "6233", + "ident": "SPQU", + "type": "medium_airport", + "name": "Rodríguez Ballón International Airport", + "latitude_deg": "-16.3411006927", + "longitude_deg": "-71.5830993652", + "elevation_ft": "8405", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ARE", + "municipality": "Arequipa", + "scheduled_service": "yes", + "gps_code": "SPQU", + "iata_code": "AQP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rodriguez_Ballon_International_Airport" + }, + { + "id": "28475", + "ident": "SPRF", + "type": "small_airport", + "name": "San Rafael Airport", + "latitude_deg": "-14.28201", + "longitude_deg": "-70.37989", + "elevation_ft": "14422", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-PUN", + "municipality": "San Rafael", + "scheduled_service": "no", + "gps_code": "SPRF" + }, + { + "id": "39647", + "ident": "SPRG", + "type": "small_airport", + "name": "San Regis Airport", + "latitude_deg": "-13.5113", + "longitude_deg": "-76.08398", + "elevation_ft": "294", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ICA", + "municipality": "Chincha", + "scheduled_service": "no", + "gps_code": "SPRG" + }, + { + "id": "39648", + "ident": "SPRL", + "type": "small_airport", + "name": "Imperial Airport", + "latitude_deg": "-12.316666603088379", + "longitude_deg": "-75.06666564941406", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LIM", + "municipality": "Imperial", + "scheduled_service": "no", + "gps_code": "SPRL" + }, + { + "id": "6234", + "ident": "SPRM", + "type": "small_airport", + "name": "Capitán FAP Leonardo Alvariño Herr Airport", + "latitude_deg": "-11.128600120544434", + "longitude_deg": "-75.35050201416016", + "elevation_ft": "2600", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-JUN", + "municipality": "San Ramón", + "scheduled_service": "no", + "gps_code": "SPRM" + }, + { + "id": "351493", + "ident": "SPRR", + "type": "small_airport", + "name": "Revalora Airport", + "latitude_deg": "-13.22283", + "longitude_deg": "-76.26927", + "elevation_ft": "591", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LIM", + "municipality": "San Vicente de Cañete", + "scheduled_service": "no", + "gps_code": "SPRR" + }, + { + "id": "6235", + "ident": "SPRU", + "type": "medium_airport", + "name": "Capitan FAP Carlos Martinez De Pinillos International Airport", + "latitude_deg": "-8.08141040802002", + "longitude_deg": "-79.10880279541016", + "elevation_ft": "106", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LAL", + "municipality": "Trujillo", + "scheduled_service": "yes", + "gps_code": "SPRU", + "iata_code": "TRU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cap._FAP_Carlos_Mart%C3%ADnez_de_Pinillos_International_Airport" + }, + { + "id": "39649", + "ident": "SPSA", + "type": "small_airport", + "name": "Casma Airport", + "latitude_deg": "-9.450235", + "longitude_deg": "-78.294346", + "elevation_ft": "248", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ANC", + "municipality": "Casma", + "scheduled_service": "no", + "gps_code": "SPSA" + }, + { + "id": "32371", + "ident": "SPSE", + "type": "small_airport", + "name": "Sepahua Airport", + "latitude_deg": "-11.14227", + "longitude_deg": "-73.034327", + "elevation_ft": "886", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-UCA", + "municipality": "Sepahua", + "scheduled_service": "no", + "gps_code": "SPSE" + }, + { + "id": "39650", + "ident": "SPSF", + "type": "small_airport", + "name": "San Francisco Airport", + "latitude_deg": "-6.6166801452637", + "longitude_deg": "-77.766700744629", + "elevation_ft": "8202", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-AMA", + "municipality": "San Francisco de Yeso", + "scheduled_service": "no", + "gps_code": "SPSF" + }, + { + "id": "32372", + "ident": "SPSI", + "type": "small_airport", + "name": "Siguas Airport", + "latitude_deg": "-16.367000579833984", + "longitude_deg": "-72.16699981689453", + "elevation_ft": "4720", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ARE", + "municipality": "Siguas", + "scheduled_service": "no", + "gps_code": "SPSI" + }, + { + "id": "39651", + "ident": "SPSJ", + "type": "small_airport", + "name": "San José de Sisa Airport", + "latitude_deg": "-6.616489887237549", + "longitude_deg": "-76.68840026855469", + "elevation_ft": "1200", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-SAM", + "municipality": "El Dorado", + "scheduled_service": "no", + "gps_code": "SPSJ" + }, + { + "id": "39652", + "ident": "SPSL", + "type": "small_airport", + "name": "Lamas Airport", + "latitude_deg": "-6.416666507720947", + "longitude_deg": "-76.53333282470703", + "elevation_ft": "2600", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-SAM", + "municipality": "Lamas", + "scheduled_service": "no", + "gps_code": "SPSL" + }, + { + "id": "39653", + "ident": "SPSN", + "type": "small_airport", + "name": "Shapaja Airport", + "latitude_deg": "-6.5797200202941895", + "longitude_deg": "-76.26280212402344", + "elevation_ft": "700", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-SAM", + "municipality": "Shapaja", + "scheduled_service": "no", + "gps_code": "SPSN" + }, + { + "id": "6236", + "ident": "SPSO", + "type": "medium_airport", + "name": "Captain Renán Elías Olivera International Airport", + "latitude_deg": "-13.7449", + "longitude_deg": "-76.220299", + "elevation_ft": "39", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ICA", + "municipality": "Pisco", + "scheduled_service": "no", + "gps_code": "SPSO", + "iata_code": "PIO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Capit%C3%A1n_FAP_Ren%C3%A1n_El%C3%ADas_Olivera_Airport", + "keywords": "Capitán FAP Renán Elías Olivera" + }, + { + "id": "39654", + "ident": "SPSS", + "type": "small_airport", + "name": "Masisea Airport", + "latitude_deg": "-8.61142", + "longitude_deg": "-74.309962", + "elevation_ft": "522", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-UCA", + "municipality": "Masisea", + "scheduled_service": "no", + "gps_code": "SPSS" + }, + { + "id": "6237", + "ident": "SPST", + "type": "medium_airport", + "name": "Cadete FAP Guillermo Del Castillo Paredes Airport", + "latitude_deg": "-6.508739948272705", + "longitude_deg": "-76.37319946289062", + "elevation_ft": "869", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-SAM", + "municipality": "Tarapoto", + "scheduled_service": "yes", + "gps_code": "SPST", + "iata_code": "TPP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cad._FAP_Guillermo_del_Castillo_Paredes_Airport" + }, + { + "id": "39655", + "ident": "SPSY", + "type": "small_airport", + "name": "Shiringayoc Airport", + "latitude_deg": "-11.898", + "longitude_deg": "-69.0625", + "elevation_ft": "856", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-MDD", + "municipality": "Shiringayoc", + "scheduled_service": "no", + "gps_code": "SPSY", + "iata_code": "SYC" + }, + { + "id": "39656", + "ident": "SPTA", + "type": "small_airport", + "name": "Nauta Airport", + "latitude_deg": "-4.54186", + "longitude_deg": "-73.562951", + "elevation_ft": "370", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LOR", + "municipality": "Nauta", + "scheduled_service": "no", + "gps_code": "SPTA" + }, + { + "id": "32373", + "ident": "SPTE", + "type": "small_airport", + "name": "San Francisco Airport", + "latitude_deg": "-12.532999992370605", + "longitude_deg": "-73.80000305175781", + "elevation_ft": "2499", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-CUS", + "municipality": "San Francisco", + "scheduled_service": "no", + "gps_code": "SPTE" + }, + { + "id": "32374", + "ident": "SPTI", + "type": "small_airport", + "name": "Puerto Inca Airport", + "latitude_deg": "-9.383000373840332", + "longitude_deg": "-74.96700286865234", + "elevation_ft": "583", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-HUC", + "municipality": "Puerto Inca", + "scheduled_service": "no", + "gps_code": "SPTI" + }, + { + "id": "6238", + "ident": "SPTN", + "type": "medium_airport", + "name": "Coronel FAP Carlos Ciriani Santa Rosa International Airport", + "latitude_deg": "-18.053300857500002", + "longitude_deg": "-70.2758026123", + "elevation_ft": "1538", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-TAC", + "municipality": "Tacna", + "scheduled_service": "yes", + "gps_code": "SPTN", + "iata_code": "TCQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Crnl._FAP_Carlos_Ciriani_Santa_Rosa_International_Airport" + }, + { + "id": "32375", + "ident": "SPTP", + "type": "small_airport", + "name": "El Pato Air Base", + "latitude_deg": "-4.54981", + "longitude_deg": "-81.224098", + "elevation_ft": "286", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-PIU", + "municipality": "Talara", + "scheduled_service": "no", + "gps_code": "SPTP" + }, + { + "id": "39606", + "ident": "SPTQ", + "type": "small_airport", + "name": "Toquepala Airport", + "latitude_deg": "-17.29949951171875", + "longitude_deg": "-70.65280151367188", + "elevation_ft": "8536", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-TAC", + "municipality": "Toquepala", + "scheduled_service": "no", + "gps_code": "SPTQ" + }, + { + "id": "32376", + "ident": "SPTR", + "type": "small_airport", + "name": "Tournavista Airport", + "latitude_deg": "-8.922406", + "longitude_deg": "-74.715234", + "elevation_ft": "649", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-HUC", + "municipality": "Tournavista", + "scheduled_service": "no", + "gps_code": "SPTR" + }, + { + "id": "6239", + "ident": "SPTU", + "type": "medium_airport", + "name": "Padre Aldamiz International Airport", + "latitude_deg": "-12.6135997772", + "longitude_deg": "-69.2285995483", + "elevation_ft": "659", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-MDD", + "municipality": "Puerto Maldonado", + "scheduled_service": "yes", + "gps_code": "SPTU", + "iata_code": "PEM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Padre_Aldamiz_International_Airport", + "keywords": "Puerto Maldonado International Airport" + }, + { + "id": "39657", + "ident": "SPTY", + "type": "closed", + "name": "Tintay Airport", + "latitude_deg": "-13.959167", + "longitude_deg": "-73.185837", + "elevation_ft": "8809", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-APU", + "municipality": "Tintay", + "scheduled_service": "no", + "gps_code": "SPTY" + }, + { + "id": "39658", + "ident": "SPUC", + "type": "small_airport", + "name": "Huamachuco Airport", + "latitude_deg": "-7.81808", + "longitude_deg": "-78.02834", + "elevation_ft": "11224", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LAL", + "municipality": "Huamachuco", + "scheduled_service": "no", + "gps_code": "SPUC" + }, + { + "id": "6240", + "ident": "SPUR", + "type": "medium_airport", + "name": "Capitán FAP Guillermo Concha Iberico International Airport", + "latitude_deg": "-5.20574998856", + "longitude_deg": "-80.61640167239999", + "elevation_ft": "120", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-PIU", + "municipality": "Piura", + "scheduled_service": "yes", + "gps_code": "SPUR", + "iata_code": "PIU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cap._FAP_Guillermo_Concha_Iberico_International_Airport" + }, + { + "id": "39659", + "ident": "SPVA", + "type": "small_airport", + "name": "Hacienda El Valor Airport", + "latitude_deg": "-5.662499904632568", + "longitude_deg": "-78.64472198486328", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-AMA", + "municipality": "El Valor", + "scheduled_service": "no", + "gps_code": "SPVA" + }, + { + "id": "39607", + "ident": "SPVI", + "type": "small_airport", + "name": "Vicco Airport", + "latitude_deg": "-10.847844123840332", + "longitude_deg": "-76.24695587158203", + "elevation_ft": "13464", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-PAS", + "municipality": "Vicco", + "scheduled_service": "no", + "gps_code": "SPVI" + }, + { + "id": "32377", + "ident": "SPVL", + "type": "small_airport", + "name": "Caraveli Airport", + "latitude_deg": "-15.77904", + "longitude_deg": "-73.36176", + "elevation_ft": "5675", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ARE", + "municipality": "Caraveli", + "scheduled_service": "no", + "gps_code": "SPVL" + }, + { + "id": "32378", + "ident": "SPVR", + "type": "small_airport", + "name": "Vitor Airport", + "latitude_deg": "-16.429199", + "longitude_deg": "-71.837799", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ARE", + "municipality": "La Joya", + "scheduled_service": "no", + "gps_code": "SPVR" + }, + { + "id": "39660", + "ident": "SPYA", + "type": "small_airport", + "name": "Luya Airport", + "latitude_deg": "-6.691699981689453", + "longitude_deg": "-79.70169830322266", + "elevation_ft": "298", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LAM", + "municipality": "Luya", + "scheduled_service": "no", + "gps_code": "SPYA" + }, + { + "id": "327371", + "ident": "SPYC", + "type": "small_airport", + "name": "Yarinacocha Airport", + "latitude_deg": "-8.340436", + "longitude_deg": "-74.597906", + "elevation_ft": "489", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-UCA", + "municipality": "Pucallpa", + "scheduled_service": "no", + "gps_code": "SPYC" + }, + { + "id": "6241", + "ident": "SPYL", + "type": "medium_airport", + "name": "Captain Victor Montes Arias International Airport", + "latitude_deg": "-4.57664", + "longitude_deg": "-81.254097", + "elevation_ft": "282", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-PIU", + "municipality": "Talara", + "scheduled_service": "yes", + "gps_code": "SPYL", + "iata_code": "TYL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cap._FAP_Victor_Montes_Arias_Airport", + "keywords": "Capitan FAP Victor Montes Arias" + }, + { + "id": "32379", + "ident": "SPYO", + "type": "small_airport", + "name": "Pacasmayo Airport", + "latitude_deg": "-7.40693998336792", + "longitude_deg": "-79.56890106201172", + "elevation_ft": "95", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-LAL", + "municipality": "Pacasmayo", + "scheduled_service": "no", + "gps_code": "SPYO" + }, + { + "id": "32380", + "ident": "SPYU", + "type": "small_airport", + "name": "Yauca Airport", + "latitude_deg": "-15.618900299072266", + "longitude_deg": "-74.53610229492188", + "elevation_ft": "488", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ARE", + "municipality": "Yauca", + "scheduled_service": "no", + "gps_code": "SPYU" + }, + { + "id": "6242", + "ident": "SPZA", + "type": "medium_airport", + "name": "Maria Reiche Neuman Airport", + "latitude_deg": "-14.854", + "longitude_deg": "-74.961502", + "elevation_ft": "1860", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-ICA", + "municipality": "Nazca", + "scheduled_service": "yes", + "gps_code": "SPZA", + "iata_code": "NZC", + "home_link": "https://www.aeronasca.com/como-llegar-al-aeropuerto-maria-reiche-en-nazca/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maria_Reiche_Neuman_Airport" + }, + { + "id": "39661", + "ident": "SPZH", + "type": "small_airport", + "name": "Pachiza Airport", + "latitude_deg": "-7.299280166625977", + "longitude_deg": "-76.77459716796875", + "elevation_ft": "1102", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-SAM", + "municipality": "Pachiza", + "scheduled_service": "no", + "gps_code": "SPZH" + }, + { + "id": "6243", + "ident": "SPZO", + "type": "large_airport", + "name": "Alejandro Velasco Astete International Airport", + "latitude_deg": "-13.535699844400002", + "longitude_deg": "-71.9387969971", + "elevation_ft": "10860", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-CUS", + "municipality": "Cusco", + "scheduled_service": "yes", + "gps_code": "SPZO", + "iata_code": "CUZ", + "home_link": "http://www.corpac.gob.pe/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alejandro_Velasco_Astete_International_Airport" + }, + { + "id": "39662", + "ident": "SPZT", + "type": "small_airport", + "name": "Chazuta Airport", + "latitude_deg": "-6.574166774749756", + "longitude_deg": "-76.13666534423828", + "elevation_ft": "757", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-SAM", + "municipality": "Chazuta", + "scheduled_service": "no", + "gps_code": "SPZT" + }, + { + "id": "316767", + "ident": "SQD", + "type": "medium_airport", + "name": "Shangrao Sanqingshan Airport", + "latitude_deg": "28.3797", + "longitude_deg": "117.9643", + "elevation_ft": "340", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-36", + "municipality": "Shangrao", + "scheduled_service": "yes", + "gps_code": "ZSSR", + "iata_code": "SQD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shangrao_Sanqingshan_Airport" + }, + { + "id": "316774", + "ident": "SQJ", + "type": "medium_airport", + "name": "Sanming Shaxian Airport", + "latitude_deg": "26.4263", + "longitude_deg": "117.8336", + "elevation_ft": "830", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-35", + "municipality": "Sanming", + "scheduled_service": "yes", + "gps_code": "ZSSM", + "iata_code": "SQJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sanming_Shaxian_Airport" + }, + { + "id": "302210", + "ident": "SQT", + "type": "small_airport", + "name": "China Strait Airstrip", + "latitude_deg": "-10.5627777778", + "longitude_deg": "150.690694444", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Samarai Island", + "scheduled_service": "no", + "gps_code": "AYCS", + "iata_code": "SQT", + "local_code": "CHS" + }, + { + "id": "323752", + "ident": "SR-0001", + "type": "small_airport", + "name": "Amatopo Airstrip", + "latitude_deg": "3.547885", + "longitude_deg": "-57.633958", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Amatopo", + "scheduled_service": "no", + "gps_code": "SMAM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amatopo_Airstrip" + }, + { + "id": "323760", + "ident": "SR-0002", + "type": "small_airport", + "name": "Nieuw Jacobkondre Airstrip", + "latitude_deg": "4.935714", + "longitude_deg": "-55.534735", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Nieuw Jacobkondre", + "scheduled_service": "no", + "gps_code": "SMJK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Njoeng_Jacob_Kondre_Airstrip" + }, + { + "id": "323765", + "ident": "SR-0003", + "type": "small_airport", + "name": "Brownsweg Airstrip", + "latitude_deg": "5.022859", + "longitude_deg": "-55.165171", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-BR", + "municipality": "Brownsweg", + "scheduled_service": "no" + }, + { + "id": "323795", + "ident": "SR-0004", + "type": "small_airport", + "name": "Alupi Airstrip", + "latitude_deg": "5.821147", + "longitude_deg": "-56.81464", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-NI", + "municipality": "Alupi", + "scheduled_service": "no" + }, + { + "id": "348618", + "ident": "SR-0005", + "type": "small_airport", + "name": "Braak Airport", + "latitude_deg": "5.83756", + "longitude_deg": "-55.77047", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SA", + "municipality": "Calcutta", + "scheduled_service": "no" + }, + { + "id": "348619", + "ident": "SR-0006", + "type": "small_airport", + "name": "Ramnath Agro Airstrip", + "latitude_deg": "5.88091", + "longitude_deg": "-56.81213", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-NI", + "municipality": "Middenstandspolder", + "scheduled_service": "no" + }, + { + "id": "348620", + "ident": "SR-0007", + "type": "small_airport", + "name": "Hazard Airstrip", + "latitude_deg": "5.881552", + "longitude_deg": "-56.956718", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-NI", + "municipality": "Oostelijke Polders", + "scheduled_service": "no" + }, + { + "id": "348621", + "ident": "SR-0008", + "type": "small_airport", + "name": "Manglie Airport", + "latitude_deg": "5.88444", + "longitude_deg": "-56.97911", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-NI", + "municipality": "Nieuw-Nickerie", + "scheduled_service": "no" + }, + { + "id": "30606", + "ident": "SR-AAJ", + "type": "small_airport", + "name": "Cayana Airstrip", + "latitude_deg": "3.898681", + "longitude_deg": "-55.577907", + "elevation_ft": "360", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Awaradam", + "scheduled_service": "no", + "gps_code": "SMCA", + "iata_code": "AAJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cayana_Airstrip", + "keywords": "Kajana, Cajana" + }, + { + "id": "31732", + "ident": "SR-KCB", + "type": "small_airport", + "name": "Tepoe Airstrip", + "latitude_deg": "3.15000009537", + "longitude_deg": "-55.716999054", + "elevation_ft": "596", + "continent": "SA", + "iso_country": "SR", + "iso_region": "SR-SI", + "municipality": "Kasikasima", + "scheduled_service": "no", + "gps_code": "SMTP", + "iata_code": "KCB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tepoe_Airstrip" + }, + { + "id": "314713", + "ident": "SRF", + "type": "closed", + "name": "Hamilton Field", + "latitude_deg": "38.06", + "longitude_deg": "-122.51", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Rafael", + "scheduled_service": "no", + "iata_code": "SRF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hamilton_Army_Airfield", + "keywords": "Marin Airfield, Marin Meadows Airfield, Hamilton AFB" + }, + { + "id": "314712", + "ident": "SRL", + "type": "small_airport", + "name": "Palo Verde Airport", + "latitude_deg": "27.0927", + "longitude_deg": "-112.0985", + "elevation_ft": "127", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Mulegé", + "scheduled_service": "yes", + "iata_code": "SRL", + "local_code": "CIB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palo_Verde_Airport", + "keywords": "CIB, PVP, Chivato Bay, San Bruno" + }, + { + "id": "314728", + "ident": "SRM", + "type": "small_airport", + "name": "Sandringham Airport", + "latitude_deg": "-24.0568", + "longitude_deg": "139.0821", + "elevation_ft": "313", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Sandringham Station", + "scheduled_service": "no", + "iata_code": "SRM" + }, + { + "id": "314734", + "ident": "SRU", + "type": "closed", + "name": "Santa Cruz Sky Park", + "latitude_deg": "37.0503", + "longitude_deg": "-122.0315", + "elevation_ft": "523", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Scotts Valley", + "scheduled_service": "no", + "iata_code": "SRU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Cruz_Sky_Park" + }, + { + "id": "24676", + "ident": "SRV", + "type": "small_airport", + "name": "Stony River 2 Airport", + "latitude_deg": "61.7896995544", + "longitude_deg": "-156.589004517", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Stony River", + "scheduled_service": "no", + "gps_code": "SRV", + "iata_code": "SRV", + "local_code": "SRV" + }, + { + "id": "308299", + "ident": "SS-0001", + "type": "small_airport", + "name": "Ajuini Airstrip", + "latitude_deg": "7.457793", + "longitude_deg": "31.41499", + "elevation_ft": "1354", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Poktap", + "scheduled_service": "no", + "gps_code": "HJAJ" + }, + { + "id": "308300", + "ident": "SS-0002", + "type": "small_airport", + "name": "Duk Payuel Airstrip", + "latitude_deg": "7.47704", + "longitude_deg": "31.51449", + "elevation_ft": "1357", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Duk Payuel", + "scheduled_service": "no", + "gps_code": "HJDP", + "keywords": "Duk Faiwil, Ager" + }, + { + "id": "308301", + "ident": "SS-0003", + "type": "small_airport", + "name": "Duk Kwenyakwol Airstrip", + "latitude_deg": "7.598693", + "longitude_deg": "31.45062", + "elevation_ft": "1345", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Mareng", + "scheduled_service": "no", + "gps_code": "HJDK" + }, + { + "id": "308302", + "ident": "SS-0004", + "type": "small_airport", + "name": "Pajut Airstrip", + "latitude_deg": "7.746592", + "longitude_deg": "31.690504", + "elevation_ft": "1352", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Pajut", + "scheduled_service": "no", + "gps_code": "HJPJ", + "keywords": "Panjut" + }, + { + "id": "308303", + "ident": "SS-0005", + "type": "small_airport", + "name": "Duk Padiet Airstrip", + "latitude_deg": "7.740431", + "longitude_deg": "31.399612", + "elevation_ft": "1344", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Duk Padiet", + "scheduled_service": "no", + "gps_code": "HJDF" + }, + { + "id": "308304", + "ident": "SS-0006", + "type": "small_airport", + "name": "Waat Airstrip", + "latitude_deg": "8.189647", + "longitude_deg": "32.152873", + "elevation_ft": "1329", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-23", + "municipality": "Waat", + "scheduled_service": "no", + "gps_code": "HJWT" + }, + { + "id": "308305", + "ident": "SS-0007", + "type": "small_airport", + "name": "Pieri Airstrip", + "latitude_deg": "8.04048", + "longitude_deg": "32.028816", + "elevation_ft": "1347", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-23", + "scheduled_service": "no", + "gps_code": "HJPR" + }, + { + "id": "308306", + "ident": "SS-0008", + "type": "small_airport", + "name": "Yuai Airstrip", + "latitude_deg": "7.904872", + "longitude_deg": "31.888386", + "elevation_ft": "1341", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-23", + "municipality": "Yuai", + "scheduled_service": "no", + "gps_code": "HJYU" + }, + { + "id": "308307", + "ident": "SS-0009", + "type": "small_airport", + "name": "Turuk Airstrip", + "latitude_deg": "7.98800762753", + "longitude_deg": "31.9675540924", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-23", + "scheduled_service": "no" + }, + { + "id": "308308", + "ident": "SS-0010", + "type": "small_airport", + "name": "Mogok Airstrip", + "latitude_deg": "8.413961", + "longitude_deg": "31.33333", + "elevation_ft": "1331", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "scheduled_service": "no", + "gps_code": "HJMG" + }, + { + "id": "308309", + "ident": "SS-0011", + "type": "small_airport", + "name": "Ayod Airstrip", + "latitude_deg": "8.137948", + "longitude_deg": "31.406178", + "elevation_ft": "1330", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "scheduled_service": "no", + "gps_code": "HJAY" + }, + { + "id": "308310", + "ident": "SS-0012", + "type": "small_airport", + "name": "Buk Airfield", + "latitude_deg": "8.01095641186", + "longitude_deg": "31.428108215299996", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "scheduled_service": "no" + }, + { + "id": "308311", + "ident": "SS-0013", + "type": "small_airport", + "name": "Pathai Airstrip", + "latitude_deg": "8.06976738146", + "longitude_deg": "31.8386363983", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "scheduled_service": "no" + }, + { + "id": "308312", + "ident": "SS-0014", + "type": "small_airport", + "name": "Pulturuk Airstrip", + "latitude_deg": "8.595353", + "longitude_deg": "31.949819", + "elevation_ft": "1328", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-23", + "municipality": "Pulturuk", + "scheduled_service": "no", + "gps_code": "HJPU" + }, + { + "id": "308313", + "ident": "SS-0015", + "type": "small_airport", + "name": "Lankien Airstrip", + "latitude_deg": "8.529374", + "longitude_deg": "32.063835", + "elevation_ft": "1329", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-23", + "municipality": "Lankien", + "scheduled_service": "no", + "gps_code": "HJLK" + }, + { + "id": "308314", + "ident": "SS-0016", + "type": "small_airport", + "name": "Panyagor Airstrip", + "latitude_deg": "7.32998059644", + "longitude_deg": "31.422260999699997", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "scheduled_service": "no" + }, + { + "id": "315282", + "ident": "SS-0017", + "type": "small_airport", + "name": "Lokwor Airport", + "latitude_deg": "5.288", + "longitude_deg": "35.8328", + "elevation_ft": "1415", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-19", + "municipality": "Kibbish", + "scheduled_service": "no", + "gps_code": "HJLW" + }, + { + "id": "315284", + "ident": "SS-0018", + "type": "small_airport", + "name": "Kokuro Airport", + "latitude_deg": "4.6753", + "longitude_deg": "35.7116", + "elevation_ft": "1378", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-19", + "municipality": "Kokuro", + "scheduled_service": "no" + }, + { + "id": "319225", + "ident": "SS-0019", + "type": "small_airport", + "name": "Mundri West Airport", + "latitude_deg": "5.359401", + "longitude_deg": "30.346927", + "elevation_ft": "1907", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-16", + "municipality": "Mundri West", + "scheduled_service": "no", + "gps_code": "HJMI" + }, + { + "id": "319226", + "ident": "SS-0020", + "type": "small_airport", + "name": "Ibba Airstrip", + "latitude_deg": "4.791895", + "longitude_deg": "29.157161", + "elevation_ft": "2269", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-16", + "municipality": "Ibba", + "scheduled_service": "no", + "gps_code": "HJBB" + }, + { + "id": "319227", + "ident": "SS-0021", + "type": "small_airport", + "name": "Nzara Airport", + "latitude_deg": "4.635486", + "longitude_deg": "28.26757", + "elevation_ft": "2057", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-16", + "municipality": "Nzara", + "scheduled_service": "no", + "gps_code": "HJNZ" + }, + { + "id": "319228", + "ident": "SS-0022", + "type": "small_airport", + "name": "Mvolo Airport", + "latitude_deg": "6.06388", + "longitude_deg": "29.956666", + "elevation_ft": "1609", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-16", + "municipality": "Mvolo", + "scheduled_service": "no", + "gps_code": "HJMV" + }, + { + "id": "344029", + "ident": "SS-0023", + "type": "small_airport", + "name": "Doregh Airstrip", + "latitude_deg": "9.04242", + "longitude_deg": "30.70938", + "elevation_ft": "1314", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Doregh", + "scheduled_service": "no" + }, + { + "id": "344030", + "ident": "SS-0024", + "type": "small_airport", + "name": "Keew Airstrip", + "latitude_deg": "9.26371", + "longitude_deg": "30.63692", + "elevation_ft": "1319", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Keew", + "scheduled_service": "no", + "local_code": "HSDD" + }, + { + "id": "344031", + "ident": "SS-0025", + "type": "small_airport", + "name": "Tuai Bur Airstrip", + "latitude_deg": "9.39234", + "longitude_deg": "30.66912", + "elevation_ft": "1316", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Tuai Bur", + "scheduled_service": "no" + }, + { + "id": "344052", + "ident": "SS-0026", + "type": "small_airport", + "name": "Ganyiel Airport", + "latitude_deg": "7.3989", + "longitude_deg": "30.4721", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-22", + "municipality": "Ganyiel", + "scheduled_service": "no" + }, + { + "id": "344053", + "ident": "SS-0027", + "type": "small_airport", + "name": "Luri Airport", + "latitude_deg": "4.85299", + "longitude_deg": "31.39548", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-17", + "municipality": "Luri", + "scheduled_service": "no" + }, + { + "id": "344054", + "ident": "SS-0028", + "type": "small_airport", + "name": "Pulmok Airport", + "latitude_deg": "7.3367", + "longitude_deg": "30.41285", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-22", + "municipality": "Pulmok", + "scheduled_service": "no" + }, + { + "id": "344055", + "ident": "SS-0029", + "type": "small_airport", + "name": "Melut Airport", + "latitude_deg": "10.3342", + "longitude_deg": "32.26825", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-23", + "municipality": "Melut", + "scheduled_service": "no" + }, + { + "id": "344056", + "ident": "SS-0030", + "type": "small_airport", + "name": "Athidwey Airport", + "latitude_deg": "10.26976", + "longitude_deg": "32.22511", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-23", + "municipality": "Athidwey", + "scheduled_service": "no" + }, + { + "id": "344057", + "ident": "SS-0031", + "type": "small_airport", + "name": "Payuer Airport", + "latitude_deg": "10.07147", + "longitude_deg": "32.28504", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-23", + "municipality": "Payuer", + "scheduled_service": "no" + }, + { + "id": "344058", + "ident": "SS-0032", + "type": "small_airport", + "name": "Kodok Airport", + "latitude_deg": "9.89608", + "longitude_deg": "32.12014", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-23", + "municipality": "Kodok", + "scheduled_service": "no" + }, + { + "id": "344059", + "ident": "SS-0033", + "type": "small_airport", + "name": "Tondiak Airport", + "latitude_deg": "9.39786", + "longitude_deg": "31.15106", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Tondiak", + "scheduled_service": "no" + }, + { + "id": "344060", + "ident": "SS-0034", + "type": "small_airport", + "name": "Thar Jath Airport", + "latitude_deg": "8.78311", + "longitude_deg": "30.13077", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-22", + "municipality": "Duar", + "scheduled_service": "no" + }, + { + "id": "344061", + "ident": "SS-0035", + "type": "heliport", + "name": "Dwil Keil Heliport", + "latitude_deg": "8.84604", + "longitude_deg": "29.9147", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-22", + "municipality": "Dwil Keil", + "scheduled_service": "no" + }, + { + "id": "344062", + "ident": "SS-0036", + "type": "small_airport", + "name": "Koch Airport", + "latitude_deg": "8.60289", + "longitude_deg": "29.98998", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-22", + "municipality": "Koch", + "scheduled_service": "no" + }, + { + "id": "344063", + "ident": "SS-0037", + "type": "small_airport", + "name": "Bieh Airport", + "latitude_deg": "8.46238", + "longitude_deg": "30.13021", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-22", + "municipality": "Dhomor", + "scheduled_service": "no" + }, + { + "id": "344064", + "ident": "SS-0038", + "type": "small_airport", + "name": "Padeah Airport", + "latitude_deg": "8.4094", + "longitude_deg": "30.18628", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-22", + "municipality": "Padeah", + "scheduled_service": "no" + }, + { + "id": "344065", + "ident": "SS-0039", + "type": "small_airport", + "name": "Thornyor Airfield", + "latitude_deg": "8.22396", + "longitude_deg": "30.22138", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-22", + "municipality": "Thar Cheng", + "scheduled_service": "no" + }, + { + "id": "344066", + "ident": "SS-0040", + "type": "small_airport", + "name": "Nyal Airport", + "latitude_deg": "7.72751", + "longitude_deg": "30.24454", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-22", + "municipality": "Nyal", + "scheduled_service": "no" + }, + { + "id": "344067", + "ident": "SS-0041", + "type": "small_airport", + "name": "Panyagor Airport", + "latitude_deg": "7.163788", + "longitude_deg": "31.409011", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Mabior", + "scheduled_service": "no", + "gps_code": "HJPG" + }, + { + "id": "351453", + "ident": "SS-0042", + "type": "small_airport", + "name": "Leer Airport", + "latitude_deg": "8.3081", + "longitude_deg": "30.11517", + "elevation_ft": "1296", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-22", + "municipality": "Leer", + "scheduled_service": "no" + }, + { + "id": "351454", + "ident": "SS-0043", + "type": "small_airport", + "name": "Dablual Airport", + "latitude_deg": "8.31798", + "longitude_deg": "30.01107", + "elevation_ft": "1296", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-22", + "municipality": "Dablual", + "scheduled_service": "no" + }, + { + "id": "351455", + "ident": "SS-0044", + "type": "small_airport", + "name": "Paguir Airport", + "latitude_deg": "9.11176", + "longitude_deg": "30.76653", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Paguir", + "scheduled_service": "no" + }, + { + "id": "351456", + "ident": "SS-0045", + "type": "small_airport", + "name": "Kuernyang Airport", + "latitude_deg": "9.32284", + "longitude_deg": "30.88816", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Kuernyang", + "scheduled_service": "no" + }, + { + "id": "351457", + "ident": "SS-0046", + "type": "small_airport", + "name": "Manajang Airport", + "latitude_deg": "9.32928", + "longitude_deg": "30.71316", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Manajang", + "scheduled_service": "no" + }, + { + "id": "351458", + "ident": "SS-0047", + "type": "small_airport", + "name": "Thokchak Airport", + "latitude_deg": "9.17726", + "longitude_deg": "30.74859", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Thokchak", + "scheduled_service": "no" + }, + { + "id": "351459", + "ident": "SS-0048", + "type": "small_airport", + "name": "Nimni Airport", + "latitude_deg": "9.31332", + "longitude_deg": "30.01904", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Nimni", + "scheduled_service": "no" + }, + { + "id": "351460", + "ident": "SS-0049", + "type": "small_airport", + "name": "Unity Airport", + "latitude_deg": "9.47649", + "longitude_deg": "29.66566", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-22", + "municipality": "Thepkeni", + "scheduled_service": "no" + }, + { + "id": "351461", + "ident": "SS-0050", + "type": "small_airport", + "name": "Riangther Airport", + "latitude_deg": "9.70275", + "longitude_deg": "30.15421", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-22", + "municipality": "Riangther", + "scheduled_service": "no" + }, + { + "id": "351462", + "ident": "SS-0051", + "type": "small_airport", + "name": "Adok Airport", + "latitude_deg": "8.20699", + "longitude_deg": "30.29131", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-22", + "municipality": "Adok", + "scheduled_service": "no" + }, + { + "id": "351465", + "ident": "SS-0052", + "type": "small_airport", + "name": "Pakuor Airport", + "latitude_deg": "7.12922", + "longitude_deg": "31.36519", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Pakuor", + "scheduled_service": "no" + }, + { + "id": "351466", + "ident": "SS-0053", + "type": "small_airport", + "name": "Kongor Airport", + "latitude_deg": "7.14152", + "longitude_deg": "31.34867", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Kongor", + "scheduled_service": "no" + }, + { + "id": "351467", + "ident": "SS-0054", + "type": "small_airport", + "name": "Makwar Airport", + "latitude_deg": "7.09195", + "longitude_deg": "31.36751", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Makwar", + "scheduled_service": "no" + }, + { + "id": "351468", + "ident": "SS-0055", + "type": "small_airport", + "name": "Paliau Airport", + "latitude_deg": "6.96466", + "longitude_deg": "31.36796", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Paliau", + "scheduled_service": "no" + }, + { + "id": "351469", + "ident": "SS-0056", + "type": "small_airport", + "name": "Kolmarek Airport", + "latitude_deg": "6.6268", + "longitude_deg": "31.51511", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-20", + "municipality": "Kolmarek", + "scheduled_service": "no" + }, + { + "id": "351470", + "ident": "SS-0057", + "type": "small_airport", + "name": "Padak Airport", + "latitude_deg": "6.4241", + "longitude_deg": "31.55676", + "elevation_ft": "1398", + "continent": "AF", + "iso_country": "SS", + "iso_region": "SS-18", + "municipality": "Padak", + "scheduled_service": "no" + }, + { + "id": "45926", + "ident": "SS1", + "type": "seaplane_base", + "name": "North Country Seaplane Base", + "latitude_deg": "46.369833", + "longitude_deg": "-91.798", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Solon Springs", + "scheduled_service": "no", + "gps_code": "SS1", + "local_code": "SS1" + }, + { + "id": "331825", + "ident": "SSAA", + "type": "heliport", + "name": "Hospital da Unimed Heliport", + "latitude_deg": "-19.921843", + "longitude_deg": "-43.919601", + "elevation_ft": "2871", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SSAA", + "local_code": "MG0267" + }, + { + "id": "429", + "ident": "SSAB", + "type": "small_airport", + "name": "Moisés Lupion Airport", + "latitude_deg": "-23.762199", + "longitude_deg": "-50.263", + "elevation_ft": "1968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Ibaiti", + "scheduled_service": "no", + "gps_code": "SSAB", + "local_code": "PR0024" + }, + { + "id": "37386", + "ident": "SSAC", + "type": "closed", + "name": "Fazenda Santana Airport", + "latitude_deg": "-19.708055", + "longitude_deg": "-55.421112", + "elevation_ft": "426", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "keywords": "SSAC" + }, + { + "id": "430", + "ident": "SSAD", + "type": "small_airport", + "name": "Fazenda Ribeirão Airport", + "latitude_deg": "-18.764", + "longitude_deg": "-52.917599", + "elevation_ft": "2736", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Chapadão do Sul", + "scheduled_service": "no", + "gps_code": "SSAD", + "local_code": "MS0243" + }, + { + "id": "37387", + "ident": "SSAE", + "type": "small_airport", + "name": "Arroio Grande Airport", + "latitude_deg": "-32.229154", + "longitude_deg": "-53.055544", + "elevation_ft": "161", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Arroio Grande", + "scheduled_service": "no", + "gps_code": "SSAE", + "local_code": "RS0040" + }, + { + "id": "37388", + "ident": "SSAF", + "type": "small_airport", + "name": "Aeroclube de Foz do Iguaçu Airport", + "latitude_deg": "-25.36971", + "longitude_deg": "-54.470508", + "elevation_ft": "840", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Santa Terezinha de Itaipu", + "scheduled_service": "no", + "gps_code": "SSAF", + "local_code": "PR0071" + }, + { + "id": "37389", + "ident": "SSAG", + "type": "small_airport", + "name": "Fazenda Lobo Airport", + "latitude_deg": "-19.711728", + "longitude_deg": "-52.726921", + "elevation_ft": "1410", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Água Clara", + "scheduled_service": "no", + "gps_code": "SSAG", + "local_code": "MS0244", + "keywords": "Agropecuária Lobo Ltda" + }, + { + "id": "335484", + "ident": "SSAH", + "type": "small_airport", + "name": "Fazenda Sorriso Airport", + "latitude_deg": "-11.527549", + "longitude_deg": "-51.223622", + "elevation_ft": "728", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São Félix do Araguaia", + "scheduled_service": "no", + "gps_code": "SSAH", + "local_code": "MT0500" + }, + { + "id": "331828", + "ident": "SSAI", + "type": "small_airport", + "name": "Fazenda Panamá Airport", + "latitude_deg": "-14.10529", + "longitude_deg": "-46.797615", + "elevation_ft": "1640", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Iaciara", + "scheduled_service": "no", + "gps_code": "SSAI", + "local_code": "GO0104" + }, + { + "id": "37390", + "ident": "SSAJ", + "type": "small_airport", + "name": "Fazenda Esperança Airport", + "latitude_deg": "-22.275557", + "longitude_deg": "-53.311943", + "elevation_ft": "1109", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bataiporã", + "scheduled_service": "no", + "keywords": "SSAJ" + }, + { + "id": "37391", + "ident": "SSAK", + "type": "small_airport", + "name": "Carlos Ruhl Airport", + "latitude_deg": "-28.657934", + "longitude_deg": "-53.610095", + "elevation_ft": "1542", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Cruz Alta", + "scheduled_service": "no", + "gps_code": "SSAK", + "iata_code": "CZB", + "local_code": "RS0048", + "keywords": "Aeroclube Airport" + }, + { + "id": "317301", + "ident": "SSAL", + "type": "heliport", + "name": "Mostardeiro Heliport", + "latitude_deg": "-30.028309", + "longitude_deg": "-51.204054", + "elevation_ft": "364", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Porto Alegre", + "scheduled_service": "no", + "gps_code": "SSAL", + "local_code": "RS0111" + }, + { + "id": "37392", + "ident": "SSAM", + "type": "small_airport", + "name": "Amambaí Airport", + "latitude_deg": "-23.142778396606445", + "longitude_deg": "-55.20777893066406", + "elevation_ft": "1542", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Amambaí", + "scheduled_service": "no", + "gps_code": "SSAM" + }, + { + "id": "431", + "ident": "SSAN", + "type": "small_airport", + "name": "Andirá Airport", + "latitude_deg": "-23.027335", + "longitude_deg": "-50.2271", + "elevation_ft": "1608", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Andirá", + "scheduled_service": "no", + "gps_code": "SSAN", + "local_code": "PR0032", + "keywords": "João Galdino" + }, + { + "id": "331833", + "ident": "SSAO", + "type": "small_airport", + "name": "Fazenda Olhos D'Água Airport", + "latitude_deg": "-12.009456", + "longitude_deg": "-40.274425", + "elevation_ft": "1329", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Baixa Grande", + "scheduled_service": "no", + "gps_code": "SSAO", + "local_code": "BA0149" + }, + { + "id": "432", + "ident": "SSAP", + "type": "small_airport", + "name": "Captain João Busse Airport", + "latitude_deg": "-23.609099", + "longitude_deg": "-51.384301", + "elevation_ft": "2625", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Apucarana", + "scheduled_service": "no", + "gps_code": "SSAP", + "iata_code": "APU", + "local_code": "PR0014", + "wikipedia_link": "https://en.wikipedia.org/wiki/Apucarana_Airport" + }, + { + "id": "30246", + "ident": "SSAQ", + "type": "small_airport", + "name": "Aeroclube Airport", + "latitude_deg": "-28.250601", + "longitude_deg": "-52.516701", + "elevation_ft": "1969", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Passo Fundo", + "scheduled_service": "no", + "gps_code": "SSAQ", + "local_code": "RS0036" + }, + { + "id": "37393", + "ident": "SSAR", + "type": "small_airport", + "name": "Fazenda Jacaré Airport", + "latitude_deg": "-21.503056", + "longitude_deg": "-53.967499", + "elevation_ft": "1214", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "gps_code": "SJRJ", + "local_code": "MS0181", + "keywords": "SSAR" + }, + { + "id": "331835", + "ident": "SSAS", + "type": "heliport", + "name": "Edifício Serrador Helipad", + "latitude_deg": "-22.911802", + "longitude_deg": "-43.176246", + "elevation_ft": "292", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SSAS", + "local_code": "RJ0142", + "keywords": "17" + }, + { + "id": "37394", + "ident": "SSAU", + "type": "small_airport", + "name": "Centeno Airport", + "latitude_deg": "-30.745976", + "longitude_deg": "-51.430526", + "elevation_ft": "43", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Tapes", + "scheduled_service": "no", + "gps_code": "SSAU", + "local_code": "RS0090" + }, + { + "id": "37395", + "ident": "SSAV", + "type": "small_airport", + "name": "Fazenda Amonguijá Airport", + "latitude_deg": "-21.689941", + "longitude_deg": "-57.475126", + "elevation_ft": "400", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SSAV", + "local_code": "MS0245" + }, + { + "id": "37396", + "ident": "SSAW", + "type": "small_airport", + "name": "Fazenda Japecanga Airport", + "latitude_deg": "-20.803995", + "longitude_deg": "-54.079343", + "elevation_ft": "1493", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas Do Rio Pardo", + "scheduled_service": "no", + "keywords": "SSAW" + }, + { + "id": "433", + "ident": "SSAY", + "type": "small_airport", + "name": "Sítio Pouso do Aviador Airport", + "latitude_deg": "-20.48616", + "longitude_deg": "-54.48339", + "elevation_ft": "1946", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "gps_code": "SSAY", + "local_code": "MS0246" + }, + { + "id": "46109", + "ident": "SSAZ", + "type": "heliport", + "name": "Quatro Barras Heliport", + "latitude_deg": "-25.376667", + "longitude_deg": "-49.084722", + "elevation_ft": "3041", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Quatro Barras", + "scheduled_service": "no", + "gps_code": "SDEQ", + "local_code": "SDEQ", + "keywords": "SSAZ" + }, + { + "id": "37397", + "ident": "SSBA", + "type": "small_airport", + "name": "Fazenda Bela Vista Airport", + "latitude_deg": "-19.031944", + "longitude_deg": "-53.671112", + "elevation_ft": "2017", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Camapuã", + "scheduled_service": "no", + "keywords": "SSBA" + }, + { + "id": "434", + "ident": "SSBB", + "type": "small_airport", + "name": "Estrela Dalva Airport", + "latitude_deg": "-20.674999237060547", + "longitude_deg": "-56.62969970703125", + "elevation_ft": "1207", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bodoquena", + "scheduled_service": "no", + "gps_code": "SSBB", + "local_code": "SSBB" + }, + { + "id": "37398", + "ident": "SSBC", + "type": "small_airport", + "name": "Fazenda Barra do Tietê Airport", + "latitude_deg": "-20.72611", + "longitude_deg": "-51.588612", + "elevation_ft": "1115", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Castilho", + "scheduled_service": "no", + "gps_code": "SSBC", + "local_code": "SP0243", + "keywords": "Malibu Confinamento, JBS Agropecuária LTDA" + }, + { + "id": "37399", + "ident": "SSBD", + "type": "small_airport", + "name": "Sobradinho Airport", + "latitude_deg": "-29.396898", + "longitude_deg": "-52.99117", + "elevation_ft": "1444", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Sobradinho", + "scheduled_service": "no", + "local_code": "RS0051", + "keywords": "SSBD" + }, + { + "id": "435", + "ident": "SSBE", + "type": "small_airport", + "name": "Camapuã Airport", + "latitude_deg": "-19.5984", + "longitude_deg": "-54.021099", + "elevation_ft": "1848", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Camapuã", + "scheduled_service": "no", + "local_code": "MS0014", + "keywords": "SSBE" + }, + { + "id": "37400", + "ident": "SSBF", + "type": "small_airport", + "name": "Fazenda JL Airport", + "latitude_deg": "-20.002079", + "longitude_deg": "-51.38345", + "elevation_ft": "1400", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aparecida do Taboado", + "scheduled_service": "no", + "gps_code": "SSBF", + "local_code": "MS0247" + }, + { + "id": "37401", + "ident": "SSBG", + "type": "small_airport", + "name": "Aeroclube de Bento Gonçalves Airport", + "latitude_deg": "-29.147424", + "longitude_deg": "-51.540791", + "elevation_ft": "2209", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Bento Gonçalves", + "scheduled_service": "no", + "gps_code": "SSBG", + "iata_code": "BGV", + "local_code": "RS0091" + }, + { + "id": "37402", + "ident": "SSBH", + "type": "small_airport", + "name": "Fazenda Baia do Lara Airport", + "latitude_deg": "-17.5677776337", + "longitude_deg": "-55.2883338928", + "elevation_ft": "453", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSBH" + }, + { + "id": "331842", + "ident": "SSBI", + "type": "small_airport", + "name": "Condomínio Irmãos Gatto Airport", + "latitude_deg": "-11.85146", + "longitude_deg": "-46.302258", + "elevation_ft": "2851", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Barreiras", + "scheduled_service": "no", + "gps_code": "SSBI", + "local_code": "BA0151" + }, + { + "id": "37403", + "ident": "SSBJ", + "type": "small_airport", + "name": "Bom Jesus Airport", + "latitude_deg": "-28.612777709960938", + "longitude_deg": "-50.44944381713867", + "elevation_ft": "3514", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Bom Jesus", + "scheduled_service": "no", + "gps_code": "SSBJ" + }, + { + "id": "37404", + "ident": "SSBK", + "type": "small_airport", + "name": "Fazenda Araruna Airport", + "latitude_deg": "-17.582778930699998", + "longitude_deg": "-54.640834808300006", + "elevation_ft": "1886", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Sonora", + "scheduled_service": "no", + "gps_code": "SSBK" + }, + { + "id": "436", + "ident": "SSBL", + "type": "small_airport", + "name": "Blumenau Airport", + "latitude_deg": "-26.83060073852539", + "longitude_deg": "-49.090301513671875", + "elevation_ft": "60", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Blumenau", + "scheduled_service": "no", + "gps_code": "SSBL", + "iata_code": "BNU", + "local_code": "SSBL" + }, + { + "id": "37405", + "ident": "SSBM", + "type": "small_airport", + "name": "Fazenda Lageado Airport", + "latitude_deg": "-20.297500610351562", + "longitude_deg": "-55.42583465576172", + "elevation_ft": "932", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Dois Irmãos Do Buriti", + "scheduled_service": "no", + "gps_code": "SSBM" + }, + { + "id": "37406", + "ident": "SSBN", + "type": "small_airport", + "name": "Belém Novo Airport", + "latitude_deg": "-30.188978", + "longitude_deg": "-51.182148", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Porto Alegre", + "scheduled_service": "no", + "gps_code": "SSBN", + "local_code": "RS0002", + "home_link": "https://args.com.br/" + }, + { + "id": "37407", + "ident": "SSBO", + "type": "small_airport", + "name": "Palmares Airport", + "latitude_deg": "-28.72222137451172", + "longitude_deg": "-54.89083480834961", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Bossoroca", + "scheduled_service": "no", + "gps_code": "SSBO" + }, + { + "id": "37408", + "ident": "SSBP", + "type": "heliport", + "name": "Parque Barigui Heliport", + "latitude_deg": "-25.4300003052", + "longitude_deg": "-49.3180541992", + "elevation_ft": "2936", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Curitiba", + "scheduled_service": "no", + "gps_code": "SSBP" + }, + { + "id": "37409", + "ident": "SSBQ", + "type": "small_airport", + "name": "Marfrig Bataguassu MS Airport", + "latitude_deg": "-21.744471", + "longitude_deg": "-52.4805", + "elevation_ft": "1224", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bataguassu", + "scheduled_service": "no", + "gps_code": "SDD8", + "local_code": "MS0518", + "keywords": "SSBQ, Frigorífico Marfrig" + }, + { + "id": "29683", + "ident": "SSBR", + "type": "small_airport", + "name": "Bandeirantes Airport", + "latitude_deg": "-23.072799682617188", + "longitude_deg": "-50.423099517822266", + "elevation_ft": "1319", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Bandeirantes", + "scheduled_service": "no", + "gps_code": "SSBR", + "iata_code": "0" + }, + { + "id": "37410", + "ident": "SSBS", + "type": "small_airport", + "name": "Fazenda Boa Esperança Airport", + "latitude_deg": "-21.24916648864746", + "longitude_deg": "-52.28944396972656", + "elevation_ft": "1155", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Brasilândia", + "scheduled_service": "no", + "gps_code": "SSBS" + }, + { + "id": "437", + "ident": "SSBT", + "type": "small_airport", + "name": "Fazenda Santa Ilídia Airport", + "latitude_deg": "-22.32430076599121", + "longitude_deg": "-53.095001220703125", + "elevation_ft": "1033", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bataiporã", + "scheduled_service": "no", + "gps_code": "SSBT", + "local_code": "SSBT" + }, + { + "id": "37411", + "ident": "SSBU", + "type": "small_airport", + "name": "Fazenda Baguaçu - Miragem Airport", + "latitude_deg": "-21.456388473510742", + "longitude_deg": "-57.14027786254883", + "elevation_ft": "1191", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SSBU" + }, + { + "id": "438", + "ident": "SSBV", + "type": "small_airport", + "name": "Bela Vista Airport", + "latitude_deg": "-22.081600189208984", + "longitude_deg": "-56.53860092163086", + "elevation_ft": "770", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bela Vista", + "scheduled_service": "no", + "gps_code": "SSBV", + "local_code": "SSBV" + }, + { + "id": "44723", + "ident": "SSBW", + "type": "small_airport", + "name": "Fazenda Boa Sorte Airport", + "latitude_deg": "-20.9130554199", + "longitude_deg": "-55.013610839799995", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Sidrolândia", + "scheduled_service": "no", + "gps_code": "SSBW" + }, + { + "id": "37412", + "ident": "SSBX", + "type": "small_airport", + "name": "Fazenda Lageado Airport", + "latitude_deg": "-18.441667556762695", + "longitude_deg": "-54.79999923706055", + "elevation_ft": "696", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Coxim", + "scheduled_service": "no", + "gps_code": "SSBX" + }, + { + "id": "439", + "ident": "SSBY", + "type": "small_airport", + "name": "Orlando Chesini Ometto Airport", + "latitude_deg": "-20.09950065612793", + "longitude_deg": "-56.79389953613281", + "elevation_ft": "443", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "SSBY", + "local_code": "SSBY" + }, + { + "id": "37413", + "ident": "SSBZ", + "type": "small_airport", + "name": "Aeroclube Airport", + "latitude_deg": "-29.676111", + "longitude_deg": "-50.981388", + "elevation_ft": "56", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Sapiranga", + "scheduled_service": "no", + "keywords": "SSBZ" + }, + { + "id": "37414", + "ident": "SSCA", + "type": "small_airport", + "name": "Fazenda Campo Bom Airport", + "latitude_deg": "-18.739444732666016", + "longitude_deg": "-52.619998931884766", + "elevation_ft": "2657", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Chapadão Do Sul", + "scheduled_service": "no", + "gps_code": "SSCA" + }, + { + "id": "44724", + "ident": "SSCB", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-13.769663", + "longitude_deg": "-49.935701", + "elevation_ft": "978", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Mundo Novo", + "scheduled_service": "no", + "gps_code": "SWWQ", + "local_code": "SWWQ", + "keywords": "SSCB" + }, + { + "id": "332244", + "ident": "SSCC", + "type": "heliport", + "name": "SC401 Square Corporate Helipad", + "latitude_deg": "-27.53462", + "longitude_deg": "-48.509863", + "elevation_ft": "115", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Florianópolis", + "scheduled_service": "no", + "gps_code": "SSCC", + "local_code": "SC0087" + }, + { + "id": "37415", + "ident": "SSCD", + "type": "small_airport", + "name": "Chapadão do Sul Airport", + "latitude_deg": "-18.837778091430664", + "longitude_deg": "-52.48666763305664", + "elevation_ft": "2644", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Chapadão Do Sul", + "scheduled_service": "no", + "gps_code": "SSCD" + }, + { + "id": "37416", + "ident": "SSCE", + "type": "small_airport", + "name": "Aeroclube de Bagé", + "latitude_deg": "-31.327778", + "longitude_deg": "-54.134724", + "elevation_ft": "728", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Bagé", + "scheduled_service": "no", + "gps_code": "SIBK", + "local_code": "RS0058", + "keywords": "SSCE" + }, + { + "id": "37417", + "ident": "SSCF", + "type": "small_airport", + "name": "Max Fontoura Airport", + "latitude_deg": "-25.426398", + "longitude_deg": "-49.524194", + "elevation_ft": "3140", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Campo Largo", + "scheduled_service": "no", + "gps_code": "SSCF", + "local_code": "PR0072" + }, + { + "id": "335008", + "ident": "SSCG", + "type": "heliport", + "name": "Orla 62 Helipad", + "latitude_deg": "-23.038528", + "longitude_deg": "-44.195884", + "elevation_ft": "115", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra dos Reis", + "scheduled_service": "no", + "gps_code": "SSCG", + "local_code": "RJ0188" + }, + { + "id": "37418", + "ident": "SSCH", + "type": "small_airport", + "name": "Fazenda Cachoeirão Airport", + "latitude_deg": "-21.598487", + "longitude_deg": "-53.226976", + "elevation_ft": "1066", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Andradina", + "scheduled_service": "no", + "gps_code": "SSCH", + "local_code": "MS0256" + }, + { + "id": "440", + "ident": "SSCI", + "type": "small_airport", + "name": "Coxim Airport", + "latitude_deg": "-18.477699279785156", + "longitude_deg": "-54.714698791503906", + "elevation_ft": "957", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Coxim", + "scheduled_service": "no", + "gps_code": "SSCI", + "local_code": "SSCI" + }, + { + "id": "37419", + "ident": "SSCJ", + "type": "small_airport", + "name": "Fazenda Celeiro Airport", + "latitude_deg": "-21.541667938232422", + "longitude_deg": "-54.66166687011719", + "elevation_ft": "1070", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Brilhante", + "scheduled_service": "no", + "gps_code": "SSCJ" + }, + { + "id": "441", + "ident": "SSCK", + "type": "small_airport", + "name": "Concórdia Airport", + "latitude_deg": "-27.180599212646484", + "longitude_deg": "-52.05270004272461", + "elevation_ft": "2461", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Concórdia", + "scheduled_service": "no", + "gps_code": "SSCK", + "iata_code": "CCI", + "local_code": "SSCK" + }, + { + "id": "37420", + "ident": "SSCL", + "type": "small_airport", + "name": "Cassilândia Airport", + "latitude_deg": "-19.146861", + "longitude_deg": "-51.676941", + "elevation_ft": "1568", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Cassilândia", + "scheduled_service": "no", + "gps_code": "SSCL", + "iata_code": "CSS", + "local_code": "MS0018" + }, + { + "id": "37421", + "ident": "SSCM", + "type": "small_airport", + "name": "Fazenda Caçadinha Airport", + "latitude_deg": "-21.623889923095703", + "longitude_deg": "-54.81083297729492", + "elevation_ft": "1312", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Brilhante", + "scheduled_service": "no", + "gps_code": "SSCM" + }, + { + "id": "442", + "ident": "SSCN", + "type": "small_airport", + "name": "Canela Airport", + "latitude_deg": "-29.37019920349121", + "longitude_deg": "-50.832000732421875", + "elevation_ft": "2723", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Canela", + "scheduled_service": "no", + "gps_code": "SSCN", + "iata_code": "QCN", + "local_code": "SSCN" + }, + { + "id": "37422", + "ident": "SSCO", + "type": "small_airport", + "name": "Comandante Marilda Zaiden de Mesquita Airport", + "latitude_deg": "-31.7741661072", + "longitude_deg": "-52.4513893127", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Capão Do Leão", + "scheduled_service": "no", + "gps_code": "SSCO" + }, + { + "id": "443", + "ident": "SSCP", + "type": "small_airport", + "name": "Cornélio Procópio Airport", + "latitude_deg": "-23.15250015258789", + "longitude_deg": "-50.602500915527344", + "elevation_ft": "1854", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Cornélio Procópio", + "scheduled_service": "no", + "gps_code": "SSCP", + "iata_code": "CKO", + "local_code": "SSCP" + }, + { + "id": "37423", + "ident": "SSCQ", + "type": "small_airport", + "name": "Salcã Airport", + "latitude_deg": "-29.900249", + "longitude_deg": "-54.929386", + "elevation_ft": "285", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Cacequi", + "scheduled_service": "no", + "gps_code": "SSCQ", + "local_code": "RS9001" + }, + { + "id": "444", + "ident": "SSCR", + "type": "small_airport", + "name": "Marechal Cândido Rondon Airport", + "latitude_deg": "-24.512699127197266", + "longitude_deg": "-54.0546989440918", + "elevation_ft": "1411", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Marechal Cândido Rondon", + "scheduled_service": "no", + "gps_code": "SSCR", + "local_code": "SSCR" + }, + { + "id": "37424", + "ident": "SSCS", + "type": "small_airport", + "name": "Estância Ema Airport", + "latitude_deg": "-20.619722366333008", + "longitude_deg": "-54.72194290161133", + "elevation_ft": "1968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "gps_code": "SSCS" + }, + { + "id": "445", + "ident": "SSCT", + "type": "small_airport", + "name": "Cianorte Airport", + "latitude_deg": "-23.691499710083008", + "longitude_deg": "-52.64189910888672", + "elevation_ft": "1837", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Cianorte", + "scheduled_service": "no", + "gps_code": "SSCT", + "local_code": "SSCT" + }, + { + "id": "44725", + "ident": "SSCU", + "type": "small_airport", + "name": "Fazenda Santa Marina Airport", + "latitude_deg": "-8.868056297299999", + "longitude_deg": "-50.4794425964", + "elevation_ft": "1007", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santa Maria Das Barreiras", + "scheduled_service": "no", + "gps_code": "SSCU" + }, + { + "id": "37426", + "ident": "SSCW", + "type": "small_airport", + "name": "Fazenda Santa Glória Airport", + "latitude_deg": "-18.039722", + "longitude_deg": "-56.005554", + "elevation_ft": "456", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SIQO", + "local_code": "MS0121", + "keywords": "SSCW, Fazenda São Sebastião" + }, + { + "id": "37427", + "ident": "SSCX", + "type": "small_airport", + "name": "Fazenda Coxilha Airport", + "latitude_deg": "-28.1172218323", + "longitude_deg": "-52.3172225952", + "elevation_ft": "2133", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Passo Fundo", + "scheduled_service": "no", + "gps_code": "SSCX" + }, + { + "id": "37428", + "ident": "SSCY", + "type": "heliport", + "name": "Sikorski Heliport", + "latitude_deg": "-25.439011", + "longitude_deg": "-49.448404", + "elevation_ft": "3149", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Campo Largo", + "scheduled_service": "yes", + "gps_code": "SSCY", + "home_link": "http://www.sikorski.com.br", + "keywords": "pilotoprivado, piloto, pilotodehelicóptero, cursopiloto, pilotocomercial, pilotosdehelicóptero, pilotobrasil, cursodepilotagem, escoladepilotagem, escoladepilotos, escoladeaviacao, escoladeaviação, heliponto, heliporto, helicentro, r44, r22, robinson, roto" + }, + { + "id": "37429", + "ident": "SSCZ", + "type": "closed", + "name": "Tenoar Airport", + "latitude_deg": "-18.811943", + "longitude_deg": "-52.639168", + "elevation_ft": "2664", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Chapadão Do Sul", + "scheduled_service": "no", + "keywords": "SSCZ" + }, + { + "id": "333186", + "ident": "SSDA", + "type": "heliport", + "name": "Água Mansa Heliport", + "latitude_deg": "-23.741404", + "longitude_deg": "-45.404187", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Sebastião", + "scheduled_service": "no", + "gps_code": "SSDA", + "local_code": "SP0746" + }, + { + "id": "37430", + "ident": "SSDB", + "type": "small_airport", + "name": "Fazenda Kurupay Airport", + "latitude_deg": "-22.036142", + "longitude_deg": "-53.735837", + "elevation_ft": "1280", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Angélica", + "scheduled_service": "no", + "gps_code": "SWFK", + "local_code": "MS0374", + "keywords": "SSDB" + }, + { + "id": "446", + "ident": "SSDC", + "type": "small_airport", + "name": "Dionísio Cerqueira Airport", + "latitude_deg": "-26.295834", + "longitude_deg": "-53.630654", + "elevation_ft": "2723", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Dionísio Cerqueira", + "scheduled_service": "no", + "gps_code": "SSDC", + "local_code": "SSDC" + }, + { + "id": "37431", + "ident": "SSDD", + "type": "heliport", + "name": "HELPN Nossa Senhora de Fátima Heliport", + "latitude_deg": "-29.932878", + "longitude_deg": "-51.183286", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Canoas", + "scheduled_service": "no", + "gps_code": "SSDD", + "local_code": "RS9004" + }, + { + "id": "37432", + "ident": "SSDE", + "type": "small_airport", + "name": "Fazenda Barra Dourada Airport", + "latitude_deg": "-21.993932", + "longitude_deg": "-54.245632", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Dourados", + "scheduled_service": "no", + "keywords": "SSDE" + }, + { + "id": "37433", + "ident": "SSDF", + "type": "small_airport", + "name": "Fazenda São José Airport", + "latitude_deg": "-20.099443435668945", + "longitude_deg": "-57.34611129760742", + "elevation_ft": "312", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSDF" + }, + { + "id": "44726", + "ident": "SSDG", + "type": "small_airport", + "name": "Fazenda Nazaré Airport", + "latitude_deg": "-9.335862", + "longitude_deg": "-45.57298", + "elevation_ft": "2034", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Santa Filomena", + "scheduled_service": "no", + "gps_code": "SNXZ", + "local_code": "PI0033", + "keywords": "SSDG" + }, + { + "id": "37434", + "ident": "SSDH", + "type": "closed", + "name": "Fazenda Caranday Airport", + "latitude_deg": "-20.205557", + "longitude_deg": "-57.063332", + "elevation_ft": "541", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "keywords": "SSDH" + }, + { + "id": "44727", + "ident": "SSDI", + "type": "small_airport", + "name": "Fazenda Bacatuba Airport", + "latitude_deg": "-5.6583328247099995", + "longitude_deg": "-43.705554962200004", + "elevation_ft": "584", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Buriti Bravo", + "scheduled_service": "no", + "gps_code": "SSDI" + }, + { + "id": "37435", + "ident": "SSDJ", + "type": "small_airport", + "name": "Fazenda Bonanza Airport", + "latitude_deg": "-19.050832748413086", + "longitude_deg": "-54.064998626708984", + "elevation_ft": "1252", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Camapuã", + "scheduled_service": "no", + "gps_code": "SSDJ" + }, + { + "id": "37436", + "ident": "SSDK", + "type": "small_airport", + "name": "São Pedro", + "latitude_deg": "-20.075955", + "longitude_deg": "-44.727917", + "elevation_ft": "2713", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "scheduled_service": "no", + "gps_code": "SSDK", + "local_code": "MG0178" + }, + { + "id": "44728", + "ident": "SSDL", + "type": "small_airport", + "name": "Fazenda Ribeirão Airport", + "latitude_deg": "-8.00638866425", + "longitude_deg": "-45.338054657", + "elevation_ft": "1588", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Ribeirão Gonçalves", + "scheduled_service": "no", + "gps_code": "SSDL" + }, + { + "id": "37437", + "ident": "SSDM", + "type": "small_airport", + "name": "Aeroclube de Santana do Livramento Airport", + "latitude_deg": "-30.822221755981445", + "longitude_deg": "-55.57638931274414", + "elevation_ft": "1073", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Santana Do Livramento", + "scheduled_service": "no", + "gps_code": "SSDM" + }, + { + "id": "44729", + "ident": "SSDN", + "type": "small_airport", + "name": "Fazenda Galiléia Airport", + "latitude_deg": "-9.1044", + "longitude_deg": "-45.4166679382", + "elevation_ft": "1932", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Baixa Grande Do Ribeiro", + "scheduled_service": "no", + "gps_code": "SSDN" + }, + { + "id": "447", + "ident": "SSDO", + "type": "small_airport", + "name": "Dourados Airport", + "latitude_deg": "-22.2019", + "longitude_deg": "-54.926601", + "elevation_ft": "1503", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Dourados", + "scheduled_service": "yes", + "gps_code": "SBDO", + "iata_code": "DOU", + "local_code": "MS0008", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dourados_Airport", + "keywords": "SSDO" + }, + { + "id": "44730", + "ident": "SSDP", + "type": "small_airport", + "name": "Fazenda Fortaleza do Guaporé Airport", + "latitude_deg": "-14.459444046", + "longitude_deg": "-60.1780548096", + "elevation_ft": "738", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SSDP" + }, + { + "id": "37438", + "ident": "SSDQ", + "type": "small_airport", + "name": "Fazenda Marema Airport", + "latitude_deg": "-20.182777404785156", + "longitude_deg": "-56.635833740234375", + "elevation_ft": "446", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "SSDQ" + }, + { + "id": "46185", + "ident": "SSDR", + "type": "heliport", + "name": "Eletrocity Heliport", + "latitude_deg": "-20.207646", + "longitude_deg": "-40.234916", + "elevation_ft": "75", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Serra", + "scheduled_service": "yes", + "keywords": "SSDR" + }, + { + "id": "44731", + "ident": "SSDS", + "type": "small_airport", + "name": "Fazenda Bandeirantes Airport", + "latitude_deg": "-13.7072219849", + "longitude_deg": "-50.647777557400005", + "elevation_ft": "935", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Nova Crixás", + "scheduled_service": "no", + "gps_code": "SSDS" + }, + { + "id": "44732", + "ident": "SSDT", + "type": "small_airport", + "name": "Fazenda Pau D`Arco Airport", + "latitude_deg": "-7.943611145019999", + "longitude_deg": "-50.176387786899994", + "elevation_ft": "794", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Redenção", + "scheduled_service": "no", + "gps_code": "SSDT" + }, + { + "id": "37439", + "ident": "SSDU", + "type": "small_airport", + "name": "Fazenda Modelo Airport", + "latitude_deg": "-17.991666793823242", + "longitude_deg": "-54.223609924316406", + "elevation_ft": "1309", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Pedro Gomes", + "scheduled_service": "no", + "gps_code": "SSDU" + }, + { + "id": "37440", + "ident": "SSDV", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-18.216110229492188", + "longitude_deg": "-55.46527862548828", + "elevation_ft": "508", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Coxim", + "scheduled_service": "no", + "gps_code": "SSDV" + }, + { + "id": "44733", + "ident": "SSDW", + "type": "small_airport", + "name": "Fazenda Potrich Airport", + "latitude_deg": "-12.924444198600002", + "longitude_deg": "-55.519168853800004", + "elevation_ft": "1197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "gps_code": "SSDW" + }, + { + "id": "37441", + "ident": "SSDX", + "type": "small_airport", + "name": "Fazenda da Coxilha Airport", + "latitude_deg": "-31", + "longitude_deg": "-51.700557708740234", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Camaquã", + "scheduled_service": "no", + "gps_code": "SSDX" + }, + { + "id": "46118", + "ident": "SSDY", + "type": "small_airport", + "name": "Fazenda Duas Irmãs Airport", + "latitude_deg": "-16.15666667", + "longitude_deg": "-53.00972222", + "elevation_ft": "1410", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Guiratinga", + "scheduled_service": "no", + "gps_code": "SSDY", + "local_code": "SSDY" + }, + { + "id": "37442", + "ident": "SSDZ", + "type": "closed", + "name": "Fazenda Divisão Airport", + "latitude_deg": "-23.133888", + "longitude_deg": "-54.633888", + "elevation_ft": "1312", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Amambaí", + "scheduled_service": "no", + "keywords": "SSDZ" + }, + { + "id": "448", + "ident": "SSEA", + "type": "closed", + "name": "Spessato Aviacao Agricola Airport", + "latitude_deg": "-22.215900421142578", + "longitude_deg": "-54.74190139770508", + "elevation_ft": "1470", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Dourados", + "scheduled_service": "no", + "gps_code": "SSEA", + "local_code": "SSEA" + }, + { + "id": "333926", + "ident": "SSEB", + "type": "small_airport", + "name": "Mata Serena Airport", + "latitude_deg": "-13.772931", + "longitude_deg": "-46.772192", + "elevation_ft": "1440", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "São Domingos", + "scheduled_service": "no", + "gps_code": "SSEB", + "local_code": "GO0105" + }, + { + "id": "46364", + "ident": "SSEC", + "type": "heliport", + "name": "Edifício Sequóia Heliport", + "latitude_deg": "-21.218996", + "longitude_deg": "-47.804453", + "elevation_ft": "2411", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Preto", + "scheduled_service": "no", + "gps_code": "SNEO", + "local_code": "SP0696", + "keywords": "SSEC" + }, + { + "id": "37443", + "ident": "SSED", + "type": "small_airport", + "name": "Fazenda Escalada Airport", + "latitude_deg": "-17.956666946411133", + "longitude_deg": "-54.419166564941406", + "elevation_ft": "1132", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Pedro Gomes", + "scheduled_service": "no", + "gps_code": "SSED" + }, + { + "id": "37444", + "ident": "SSEE", + "type": "small_airport", + "name": "Regional do Vale do Taquari Airport", + "latitude_deg": "-29.453332901000977", + "longitude_deg": "-51.934165954589844", + "elevation_ft": "105", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Estrela", + "scheduled_service": "no", + "gps_code": "SSEE" + }, + { + "id": "45634", + "ident": "SSEF", + "type": "small_airport", + "name": "Fazenda Passaredo Airport", + "latitude_deg": "-21.326944", + "longitude_deg": "-47.231111", + "elevation_ft": "4632", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cajuru", + "scheduled_service": "no", + "gps_code": "SSEF" + }, + { + "id": "37445", + "ident": "SSEG", + "type": "small_airport", + "name": "Estância da Gruta Airport", + "latitude_deg": "-31.942499", + "longitude_deg": "-52.479443", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Pelotas", + "scheduled_service": "no", + "keywords": "SSEG" + }, + { + "id": "333931", + "ident": "SSEH", + "type": "small_airport", + "name": "Fazenda Pantera Airport", + "latitude_deg": "-17.953015", + "longitude_deg": "-53.246868", + "elevation_ft": "2946", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alto Taquari", + "scheduled_service": "no", + "gps_code": "SSEH", + "local_code": "MT0288" + }, + { + "id": "37446", + "ident": "SSEI", + "type": "small_airport", + "name": "Fazenda Santo André Airport", + "latitude_deg": "-20.338611602783203", + "longitude_deg": "-56.698333740234375", + "elevation_ft": "489", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "SSEI" + }, + { + "id": "37447", + "ident": "SSEJ", + "type": "heliport", + "name": "Moinho Velho Heliport", + "latitude_deg": "-23.626943588256836", + "longitude_deg": "-46.8466682434082", + "elevation_ft": "2831", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Embu", + "scheduled_service": "no", + "gps_code": "SSEJ" + }, + { + "id": "37448", + "ident": "SSEK", + "type": "small_airport", + "name": "Fazenda Lontra Airport", + "latitude_deg": "-20.017778396606445", + "longitude_deg": "-53.252498626708984", + "elevation_ft": "1299", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas Do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SSEK" + }, + { + "id": "37449", + "ident": "SSEL", + "type": "small_airport", + "name": "Fazenda Jatiuca Airport", + "latitude_deg": "-20.169721603393555", + "longitude_deg": "-52.93305587768555", + "elevation_ft": "1601", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Água Clara", + "scheduled_service": "no", + "gps_code": "SSEL" + }, + { + "id": "37450", + "ident": "SSEM", + "type": "heliport", + "name": "Esplanada das Marinas Heliport", + "latitude_deg": "-27.00666618347168", + "longitude_deg": "-48.608890533447266", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Balneário Camburiú", + "scheduled_service": "no", + "gps_code": "SSEM" + }, + { + "id": "44563", + "ident": "SSEN", + "type": "heliport", + "name": "Fazenda Baviera Heliport", + "latitude_deg": "-14.121219", + "longitude_deg": "-39.829334", + "elevation_ft": "538", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Itagibá", + "scheduled_service": "no", + "gps_code": "SSDB", + "local_code": "BA0216", + "keywords": "SSEN" + }, + { + "id": "37451", + "ident": "SSEO", + "type": "small_airport", + "name": "Fazenda Mimoso Airport", + "latitude_deg": "-20.73444366455078", + "longitude_deg": "-53.57666778564453", + "elevation_ft": "1299", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas Do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SSEO" + }, + { + "id": "30394", + "ident": "SSEP", + "type": "small_airport", + "name": "São Sepé Airport", + "latitude_deg": "-30.182199478149414", + "longitude_deg": "-53.57939910888672", + "elevation_ft": "502", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "São Sepé", + "scheduled_service": "no", + "gps_code": "SSEP", + "iata_code": "0" + }, + { + "id": "37452", + "ident": "SSEQ", + "type": "small_airport", + "name": "Fazenda Aldebaran Airport", + "latitude_deg": "-21.92332", + "longitude_deg": "-53.940833", + "elevation_ft": "1099", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Angélica", + "scheduled_service": "no", + "gps_code": "SDQA", + "local_code": "MS0044", + "keywords": "SSEQ, Fazenda Rio Brilhante" + }, + { + "id": "449", + "ident": "SSER", + "type": "small_airport", + "name": "Erechim Airport", + "latitude_deg": "-27.66189956665039", + "longitude_deg": "-52.2682991027832", + "elevation_ft": "2498", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Erechim", + "scheduled_service": "no", + "gps_code": "SSER", + "iata_code": "ERM", + "local_code": "SSER" + }, + { + "id": "37453", + "ident": "SSES", + "type": "small_airport", + "name": "Encruzilhada do Sul Airport", + "latitude_deg": "-30.558889389038086", + "longitude_deg": "-52.58250045776367", + "elevation_ft": "1460", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Encruzilhada Do Sul", + "scheduled_service": "no", + "gps_code": "SSES" + }, + { + "id": "44569", + "ident": "SSET", + "type": "small_airport", + "name": "Tambaú Airport", + "latitude_deg": "-21.69722222", + "longitude_deg": "-47.31555556", + "elevation_ft": "2451", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Tambaú", + "scheduled_service": "no", + "gps_code": "SSET" + }, + { + "id": "44564", + "ident": "SSEU", + "type": "small_airport", + "name": "Monte Carmelo Airport", + "latitude_deg": "-7.283055782318115", + "longitude_deg": "-56.576942443847656", + "elevation_ft": "915", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SSEU" + }, + { + "id": "37454", + "ident": "SSEV", + "type": "small_airport", + "name": "São Camilo Airport", + "latitude_deg": "-18.087221145629883", + "longitude_deg": "-57.13138961791992", + "elevation_ft": "289", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSEV" + }, + { + "id": "45652", + "ident": "SSEW", + "type": "small_airport", + "name": "Sítio Limoeiro Airport", + "latitude_deg": "-23.15", + "longitude_deg": "-48.31", + "elevation_ft": "3084", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Pardinho", + "scheduled_service": "no", + "gps_code": "SSEW" + }, + { + "id": "37455", + "ident": "SSEX", + "type": "small_airport", + "name": "Estância Caiman Airport", + "latitude_deg": "-19.966110229492188", + "longitude_deg": "-56.31083297729492", + "elevation_ft": "361", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "SSEX" + }, + { + "id": "37456", + "ident": "SSEY", + "type": "small_airport", + "name": "Estância Itapororó Airport", + "latitude_deg": "-29.436281", + "longitude_deg": "-56.293892", + "elevation_ft": "197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Alegrete", + "scheduled_service": "no", + "keywords": "SSEY" + }, + { + "id": "37457", + "ident": "SSEZ", + "type": "small_airport", + "name": "Espumoso Airport", + "latitude_deg": "-28.737499237060547", + "longitude_deg": "-52.856388092041016", + "elevation_ft": "1198", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Espumoso", + "scheduled_service": "no", + "gps_code": "SSEZ" + }, + { + "id": "450", + "ident": "SSFA", + "type": "small_airport", + "name": "Foz do Areia Airport", + "latitude_deg": "-25.98150062561035", + "longitude_deg": "-51.64070129394531", + "elevation_ft": "3645", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Pinhão", + "scheduled_service": "no", + "gps_code": "SSFA", + "local_code": "SSFA" + }, + { + "id": "451", + "ident": "SSFB", + "type": "small_airport", + "name": "Francisco Beltrão Airport", + "latitude_deg": "-26.059200286865234", + "longitude_deg": "-53.063499450683594", + "elevation_ft": "2100", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Francisco Beltrão", + "scheduled_service": "no", + "gps_code": "SSFB", + "iata_code": "FBE", + "local_code": "SSFB" + }, + { + "id": "333934", + "ident": "SSFC", + "type": "small_airport", + "name": "Safra Airport", + "latitude_deg": "-31.0225", + "longitude_deg": "-54.621667", + "elevation_ft": "443", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Dom Pedrito", + "scheduled_service": "no", + "gps_code": "SSFC", + "local_code": "RS0095" + }, + { + "id": "37458", + "ident": "SSFD", + "type": "small_airport", + "name": "Fazenda Acarajá Airport", + "latitude_deg": "-23.001110076904297", + "longitude_deg": "-54.69944381713867", + "elevation_ft": "1224", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Amambaí", + "scheduled_service": "no", + "gps_code": "SSFD" + }, + { + "id": "452", + "ident": "SSFE", + "type": "small_airport", + "name": "Estância Hércules Airport", + "latitude_deg": "-25.4606990814209", + "longitude_deg": "-54.59880065917969", + "elevation_ft": "558", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Foz Do Iguaçu", + "scheduled_service": "no", + "gps_code": "SSFE", + "local_code": "SSFE" + }, + { + "id": "37459", + "ident": "SSFF", + "type": "small_airport", + "name": "Fazenda São Francisco Airport", + "latitude_deg": "-21.177449", + "longitude_deg": "-54.301043", + "elevation_ft": "1204", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Alvorada Do Sul", + "scheduled_service": "no", + "keywords": "SSFF" + }, + { + "id": "37460", + "ident": "SSFG", + "type": "small_airport", + "name": "Fazenda Guanabara Airport", + "latitude_deg": "-22.661462", + "longitude_deg": "-52.142143", + "elevation_ft": "1010", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Paranapoema", + "scheduled_service": "no", + "gps_code": "SSXG", + "local_code": "PR0093", + "keywords": "SSFG" + }, + { + "id": "45581", + "ident": "SSFH", + "type": "small_airport", + "name": "Vale dos Dinassauros Airport", + "latitude_deg": "-19.782222", + "longitude_deg": "-47.811944", + "elevation_ft": "2438", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberaba", + "scheduled_service": "no", + "gps_code": "SSFH" + }, + { + "id": "453", + "ident": "SSFI", + "type": "small_airport", + "name": "Fazenda Itamaratí Airport", + "latitude_deg": "-22.188199996948242", + "longitude_deg": "-55.57780075073242", + "elevation_ft": "1837", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ponta Porã", + "scheduled_service": "no", + "gps_code": "SSFI", + "local_code": "SSFI" + }, + { + "id": "37461", + "ident": "SSFJ", + "type": "small_airport", + "name": "Fazenda Retiro da Cachoeira Airport", + "latitude_deg": "-20.807777404785156", + "longitude_deg": "-54.619720458984375", + "elevation_ft": "1435", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "gps_code": "SSFJ" + }, + { + "id": "37462", + "ident": "SSFK", + "type": "small_airport", + "name": "Forte Coimbra Airport", + "latitude_deg": "-19.906111", + "longitude_deg": "-57.779889", + "elevation_ft": "279", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSFK", + "local_code": "MS9002" + }, + { + "id": "37463", + "ident": "SSFL", + "type": "small_airport", + "name": "João Pereira dos Santos Filho Airport", + "latitude_deg": "-7.099999904632568", + "longitude_deg": "-40.62694549560547", + "elevation_ft": "1466", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Fronteiras", + "scheduled_service": "no", + "gps_code": "SSFL" + }, + { + "id": "37464", + "ident": "SSFM", + "type": "small_airport", + "name": "Fazenda Marimbondo Airport", + "latitude_deg": "-23.54235", + "longitude_deg": "-50.096283", + "elevation_ft": "1526", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Conselheiro Mairinck", + "scheduled_service": "no", + "keywords": "SSFM" + }, + { + "id": "37465", + "ident": "SSFN", + "type": "small_airport", + "name": "Fazenda Novilho Airport", + "latitude_deg": "-22.61916732788086", + "longitude_deg": "-54.92583465576172", + "elevation_ft": "1706", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Caarapó", + "scheduled_service": "no", + "gps_code": "SSFN" + }, + { + "id": "37466", + "ident": "SSFO", + "type": "small_airport", + "name": "Fazenda Novo Horizonte Airport", + "latitude_deg": "-20.039722442626953", + "longitude_deg": "-56.32027816772461", + "elevation_ft": "354", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "SSFO" + }, + { + "id": "37467", + "ident": "SSFP", + "type": "small_airport", + "name": "Fazenda São Paulo Airport", + "latitude_deg": "-20.864166259765625", + "longitude_deg": "-52.174720764160156", + "elevation_ft": "1145", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Três Lagoas", + "scheduled_service": "no", + "gps_code": "SSFP" + }, + { + "id": "37468", + "ident": "SSFQ", + "type": "small_airport", + "name": "Fazenda Barra Nova Airport", + "latitude_deg": "-21.319721", + "longitude_deg": "-54.735279", + "elevation_ft": "1608", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Brilhante", + "scheduled_service": "no", + "keywords": "SSFQ" + }, + { + "id": "37469", + "ident": "SSFR", + "type": "small_airport", + "name": "Fronteira Airport", + "latitude_deg": "-20.278662", + "longitude_deg": "-49.187636", + "elevation_ft": "1598", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Fronteira", + "scheduled_service": "no", + "gps_code": "SBFT", + "keywords": "SSFR" + }, + { + "id": "337116", + "ident": "SSFS", + "type": "small_airport", + "name": "Fazenda Sapezal Airport", + "latitude_deg": "-13.332545", + "longitude_deg": "-58.782143", + "elevation_ft": "1778", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SSFS", + "local_code": "MT0576" + }, + { + "id": "37470", + "ident": "SSFT", + "type": "closed", + "name": "Fazenda Thoma Airport", + "latitude_deg": "-21.65920066833496", + "longitude_deg": "-53.51110076904297", + "elevation_ft": "1111", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Andradina", + "scheduled_service": "no", + "gps_code": "SSFT" + }, + { + "id": "37471", + "ident": "SSFU", + "type": "small_airport", + "name": "Fazenda Ligação Airport", + "latitude_deg": "-23.84805679321289", + "longitude_deg": "-54.81611251831055", + "elevation_ft": "1739", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Sete Quedas", + "scheduled_service": "no", + "gps_code": "SSFU" + }, + { + "id": "454", + "ident": "SSFV", + "type": "closed", + "name": "Fazenda Recreio 3 Airport", + "latitude_deg": "-20.207500457763672", + "longitude_deg": "-53.77939987182617", + "elevation_ft": "1509", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas do Rio", + "scheduled_service": "no", + "gps_code": "SSFV", + "local_code": "SSFV" + }, + { + "id": "37472", + "ident": "SSFW", + "type": "small_airport", + "name": "Fazenda Grotão Airport", + "latitude_deg": "-18.677499771118164", + "longitude_deg": "-54.3922233581543", + "elevation_ft": "1063", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Coxim", + "scheduled_service": "no", + "gps_code": "SSFW" + }, + { + "id": "37473", + "ident": "SSFX", + "type": "small_airport", + "name": "Fazenda Primavera Airport", + "latitude_deg": "-23.455833435058594", + "longitude_deg": "-50.57583236694336", + "elevation_ft": "2239", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Nova Fátima", + "scheduled_service": "no", + "gps_code": "SSFX" + }, + { + "id": "37474", + "ident": "SSFY", + "type": "heliport", + "name": "Furnas Centrais Elétricas Heliport", + "latitude_deg": "-25.47194480895996", + "longitude_deg": "-54.54166793823242", + "elevation_ft": "751", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Foz Do Iguaçu", + "scheduled_service": "no", + "gps_code": "SSFY" + }, + { + "id": "455", + "ident": "SSGA", + "type": "small_airport", + "name": "Garibaldi Airport", + "latitude_deg": "-29.269399642944336", + "longitude_deg": "-51.531700134277344", + "elevation_ft": "2231", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Garibaldi", + "scheduled_service": "no", + "gps_code": "SSGA", + "local_code": "SSGA" + }, + { + "id": "456", + "ident": "SSGB", + "type": "small_airport", + "name": "Guaratuba Airport", + "latitude_deg": "-25.88159942626953", + "longitude_deg": "-48.612098693847656", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Guaratuba", + "scheduled_service": "no", + "gps_code": "SSGB", + "local_code": "SSGB" + }, + { + "id": "457", + "ident": "SSGC", + "type": "small_airport", + "name": "General Canrobert Pereira da Costa Airport", + "latitude_deg": "-20.45330047607422", + "longitude_deg": "-55.757598876953125", + "elevation_ft": "566", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SSGC", + "local_code": "SSGC" + }, + { + "id": "45643", + "ident": "SSGD", + "type": "heliport", + "name": "Pereira Alvim Heliport", + "latitude_deg": "-21.218889", + "longitude_deg": "-47.805", + "elevation_ft": "2096", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Preto", + "scheduled_service": "no", + "gps_code": "SSGD" + }, + { + "id": "37475", + "ident": "SSGE", + "type": "small_airport", + "name": "Fazenda Periquitos Airport", + "latitude_deg": "-20.50694465637207", + "longitude_deg": "-51.839168548583984", + "elevation_ft": "1180", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Três Lagoas", + "scheduled_service": "no", + "gps_code": "SSGE" + }, + { + "id": "458", + "ident": "SSGF", + "type": "small_airport", + "name": "Fazenda Formosa Airport", + "latitude_deg": "-20.199499130249023", + "longitude_deg": "-53.22489929199219", + "elevation_ft": "1575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas Do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SSGF", + "local_code": "SSGF" + }, + { + "id": "37476", + "ident": "SSGG", + "type": "small_airport", + "name": "Fazenda Jacaré de Chifre Airport", + "latitude_deg": "-21.02777862548828", + "longitude_deg": "-57.497222900390625", + "elevation_ft": "381", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SSGG" + }, + { + "id": "37477", + "ident": "SSGH", + "type": "small_airport", + "name": "Fazenda Capão Verde Airport", + "latitude_deg": "-20.073610305786133", + "longitude_deg": "-56.06833267211914", + "elevation_ft": "410", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SSGH" + }, + { + "id": "37478", + "ident": "SSGI", + "type": "small_airport", + "name": "Astral Airport", + "latitude_deg": "-30.060277938842773", + "longitude_deg": "-51.4375", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Eldorado Do Sul", + "scheduled_service": "no", + "gps_code": "SSGI" + }, + { + "id": "37479", + "ident": "SSGJ", + "type": "small_airport", + "name": "Fazenda Poleiro Grande Airport", + "latitude_deg": "-17.24972152709961", + "longitude_deg": "-56.27555465698242", + "elevation_ft": "331", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSGJ" + }, + { + "id": "37480", + "ident": "SSGK", + "type": "small_airport", + "name": "Fazenda Volta Grande Airport", + "latitude_deg": "-21.455833", + "longitude_deg": "-55.456944", + "elevation_ft": "1699", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Maracaju", + "scheduled_service": "no", + "keywords": "SSGK" + }, + { + "id": "46116", + "ident": "SSGL", + "type": "closed", + "name": "Fazenda Falcão Airport", + "latitude_deg": "-15.3994444444", + "longitude_deg": "-54.1811111111", + "elevation_ft": "1975", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Primavera Do Leste", + "scheduled_service": "no", + "gps_code": "SSGL", + "local_code": "SSGL" + }, + { + "id": "37481", + "ident": "SSGM", + "type": "small_airport", + "name": "Fazenda Seriema Airport", + "latitude_deg": "-21.69333267211914", + "longitude_deg": "-56.5625", + "elevation_ft": "1151", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bela Vista", + "scheduled_service": "no", + "gps_code": "SSGM" + }, + { + "id": "37482", + "ident": "SSGN", + "type": "small_airport", + "name": "Fazenda Guaíba Airport", + "latitude_deg": "-23.239166259765625", + "longitude_deg": "-54.54111099243164", + "elevation_ft": "1401", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Iguatemi", + "scheduled_service": "no", + "gps_code": "SSGN" + }, + { + "id": "37483", + "ident": "SSGO", + "type": "small_airport", + "name": "Rosada Airport", + "latitude_deg": "-19.42972183227539", + "longitude_deg": "-54.587223052978516", + "elevation_ft": "2211", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "São Gabriel D`Oeste", + "scheduled_service": "no", + "gps_code": "SSGO" + }, + { + "id": "44561", + "ident": "SSGP", + "type": "small_airport", + "name": "Piquet Airport", + "latitude_deg": "-15.854347", + "longitude_deg": "-47.808685", + "elevation_ft": "3281", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SSGP" + }, + { + "id": "37484", + "ident": "SSGQ", + "type": "closed", + "name": "Fazenda São Francisco Airport", + "latitude_deg": "-19.3808326721", + "longitude_deg": "-53.0416679382", + "elevation_ft": "1099", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Água Clara", + "scheduled_service": "no", + "gps_code": "SSGQ" + }, + { + "id": "29925", + "ident": "SSGR", + "type": "small_airport", + "name": "Guaporé Airport", + "latitude_deg": "-28.894699", + "longitude_deg": "-51.855301", + "elevation_ft": "1558", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Guaporé", + "scheduled_service": "no", + "local_code": "RS0033", + "keywords": "SSGR" + }, + { + "id": "46356", + "ident": "SSGS", + "type": "small_airport", + "name": "Fazenda Falcão Airport", + "latitude_deg": "-15.399444", + "longitude_deg": "-54.181111", + "elevation_ft": "1975", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Primavera Do Leste", + "scheduled_service": "no", + "gps_code": "SSGS", + "local_code": "SSGS" + }, + { + "id": "37485", + "ident": "SSGT", + "type": "small_airport", + "name": "Fazenda Capão Alto Airport", + "latitude_deg": "-21.698888778686523", + "longitude_deg": "-54.81388854980469", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Brilhante", + "scheduled_service": "no", + "gps_code": "SSGT" + }, + { + "id": "37486", + "ident": "SSGU", + "type": "small_airport", + "name": "Fazenda Gurucaia Airport", + "latitude_deg": "-23.19333267211914", + "longitude_deg": "-53.32833480834961", + "elevation_ft": "886", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Santa Isabel Do Ivaí", + "scheduled_service": "no", + "gps_code": "SSGU" + }, + { + "id": "29890", + "ident": "SSGV", + "type": "heliport", + "name": "Sorocred Heliport", + "latitude_deg": "-23.556667", + "longitude_deg": "-47.477778", + "elevation_ft": "2080", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Votorantim", + "scheduled_service": "no", + "gps_code": "SSGV" + }, + { + "id": "459", + "ident": "SSGW", + "type": "small_airport", + "name": "Goio-Erê Airport", + "latitude_deg": "-24.220300674438477", + "longitude_deg": "-53.044498443603516", + "elevation_ft": "1608", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Goio-Erê", + "scheduled_service": "no", + "gps_code": "SSGW", + "local_code": "SSGW" + }, + { + "id": "37487", + "ident": "SSGX", + "type": "small_airport", + "name": "Fazenda Rio Negro Airport", + "latitude_deg": "-19.569416", + "longitude_deg": "-56.245297", + "elevation_ft": "358", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SNIH", + "local_code": "MS0209", + "keywords": "SSGX" + }, + { + "id": "460", + "ident": "SSGY", + "type": "small_airport", + "name": "Guaíra Airport", + "latitude_deg": "-24.081100463867188", + "longitude_deg": "-54.19169998168945", + "elevation_ft": "889", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Guaíra", + "scheduled_service": "no", + "gps_code": "SSGY", + "iata_code": "QGA", + "local_code": "SSGY" + }, + { + "id": "37488", + "ident": "SSGZ", + "type": "small_airport", + "name": "Fazenda Santa Helena do Pindó Airport", + "latitude_deg": "-22.895000457763672", + "longitude_deg": "-53.86777877807617", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Naviraí", + "scheduled_service": "no", + "gps_code": "SSGZ" + }, + { + "id": "37489", + "ident": "SSHA", + "type": "small_airport", + "name": "Aeroclube de Aquidauana Airport", + "latitude_deg": "-20.480833053588867", + "longitude_deg": "-55.76944351196289", + "elevation_ft": "620", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SSHA" + }, + { + "id": "37490", + "ident": "SSHB", + "type": "small_airport", + "name": "Fazenda Serra Dourada Airport", + "latitude_deg": "-23.322873", + "longitude_deg": "-53.468829", + "elevation_ft": "1007", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Ivaté", + "scheduled_service": "no", + "keywords": "SSHB" + }, + { + "id": "45607", + "ident": "SSHC", + "type": "small_airport", + "name": "Capitão Pedro Paranhos Airport", + "latitude_deg": "-23.429444", + "longitude_deg": "-50.167778", + "elevation_ft": "1447", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Guapirama", + "scheduled_service": "no", + "gps_code": "SSHC" + }, + { + "id": "37491", + "ident": "SSHD", + "type": "small_airport", + "name": "Fazenda Bipandora II Airport", + "latitude_deg": "-22.002777099609375", + "longitude_deg": "-54.9011116027832", + "elevation_ft": "1368", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Itaporã", + "scheduled_service": "no", + "gps_code": "SSHD" + }, + { + "id": "342478", + "ident": "SSHE", + "type": "small_airport", + "name": "Fazenda Nova Guaporé", + "latitude_deg": "-13.90646", + "longitude_deg": "-60.322462", + "elevation_ft": "705", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SSHE", + "local_code": "MT0290", + "keywords": "Fazenda Araras, Fazenda dos Pássaros" + }, + { + "id": "37492", + "ident": "SSHF", + "type": "small_airport", + "name": "Sítio Serra Negra Airport", + "latitude_deg": "-18.03333282470703", + "longitude_deg": "-57.483333587646484", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSHF" + }, + { + "id": "461", + "ident": "SSHG", + "type": "small_airport", + "name": "Fazenda Tereré Airport", + "latitude_deg": "-22.357945", + "longitude_deg": "-55.763847", + "elevation_ft": "2277", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Antônio João", + "scheduled_service": "no", + "gps_code": "SITF", + "local_code": "MS0128", + "keywords": "SSHG, Hyran Garcete" + }, + { + "id": "37493", + "ident": "SSHH", + "type": "heliport", + "name": "Helisul I Heliport", + "latitude_deg": "-25.604167938232422", + "longitude_deg": "-54.49361038208008", + "elevation_ft": "732", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Foz Do Iguaçu", + "scheduled_service": "no", + "gps_code": "SSHH" + }, + { + "id": "37494", + "ident": "SSHI", + "type": "small_airport", + "name": "Fazenda Dom Francisco Airport", + "latitude_deg": "-23.251110076904297", + "longitude_deg": "-54.04833221435547", + "elevation_ft": "1237", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Itaquiraí", + "scheduled_service": "no", + "gps_code": "SSHI" + }, + { + "id": "37495", + "ident": "SSHJ", + "type": "small_airport", + "name": "Fazenda Santa Rita Airport", + "latitude_deg": "-22.267221450805664", + "longitude_deg": "-55.48805618286133", + "elevation_ft": "1686", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ponta Porã", + "scheduled_service": "no", + "gps_code": "SSHJ" + }, + { + "id": "37496", + "ident": "SSHK", + "type": "small_airport", + "name": "Fazenda Jaguarandy Airport", + "latitude_deg": "-22.5897216796875", + "longitude_deg": "-55.56944274902344", + "elevation_ft": "1968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ponta Porã", + "scheduled_service": "no", + "gps_code": "SSHK" + }, + { + "id": "37497", + "ident": "SSHL", + "type": "small_airport", + "name": "Fazenda Jussara Airport", + "latitude_deg": "-23.575000762939453", + "longitude_deg": "-52.40833282470703", + "elevation_ft": "1213", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Jussara", + "scheduled_service": "no", + "gps_code": "SSHL" + }, + { + "id": "37498", + "ident": "SSHM", + "type": "heliport", + "name": "Hospital Moinho de Vento Heliport", + "latitude_deg": "-30.024444580078125", + "longitude_deg": "-51.21110916137695", + "elevation_ft": "253", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Porto Alegre", + "scheduled_service": "no", + "gps_code": "SSHM" + }, + { + "id": "37499", + "ident": "SSHN", + "type": "small_airport", + "name": "Recanto das Águias Airport", + "latitude_deg": "-23.2450008392334", + "longitude_deg": "-51.87555694580078", + "elevation_ft": "1637", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Iguaraçu", + "scheduled_service": "no", + "gps_code": "SSHN" + }, + { + "id": "342514", + "ident": "SSHO", + "type": "heliport", + "name": "Hospital Santa Rita Helipad", + "latitude_deg": "-7.126055", + "longitude_deg": "-34.946861", + "elevation_ft": "213", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Santa Rita", + "scheduled_service": "no", + "gps_code": "SSHO", + "local_code": "PB0019" + }, + { + "id": "45612", + "ident": "SSHP", + "type": "heliport", + "name": "Hospital Municipal Ronaldo Gazolla Heliport", + "latitude_deg": "-22.825556", + "longitude_deg": "-43.347222", + "elevation_ft": "102", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SSHP" + }, + { + "id": "37500", + "ident": "SSHQ", + "type": "small_airport", + "name": "Fazenda Paraíso Airport", + "latitude_deg": "-20.562363", + "longitude_deg": "-54.864178", + "elevation_ft": "1280", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Terenos", + "scheduled_service": "no", + "keywords": "SSHQ" + }, + { + "id": "37501", + "ident": "SSHR", + "type": "heliport", + "name": "Horus Heliport", + "latitude_deg": "-26.33194351196289", + "longitude_deg": "-48.84916687011719", + "elevation_ft": "62", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Joinville", + "scheduled_service": "no", + "gps_code": "SSHR" + }, + { + "id": "37502", + "ident": "SSHS", + "type": "heliport", + "name": "Helisul IV Heliport", + "latitude_deg": "-25.613056182861328", + "longitude_deg": "-54.39805603027344", + "elevation_ft": "676", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Foz Do Iguaçu", + "scheduled_service": "no", + "gps_code": "SSHS" + }, + { + "id": "46119", + "ident": "SSHT", + "type": "small_airport", + "name": "Ingazeira Airport", + "latitude_deg": "-10.1304620248", + "longitude_deg": "-56.7186355591", + "elevation_ft": "853", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alta Floresta", + "scheduled_service": "no", + "gps_code": "SSHT" + }, + { + "id": "37503", + "ident": "SSHU", + "type": "small_airport", + "name": "Fazenda Centenário Airport", + "latitude_deg": "-19.45805549621582", + "longitude_deg": "-56.0452766418457", + "elevation_ft": "426", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SSHU" + }, + { + "id": "342516", + "ident": "SSHV", + "type": "small_airport", + "name": "Fazenda Genipapo Airport", + "latitude_deg": "-17.724468", + "longitude_deg": "-44.61594", + "elevation_ft": "1923", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Várzea da Palma", + "scheduled_service": "no", + "gps_code": "SSHV", + "local_code": "MG0183" + }, + { + "id": "37504", + "ident": "SSHW", + "type": "small_airport", + "name": "Fazenda Macaraí Airport", + "latitude_deg": "-23.417499542236328", + "longitude_deg": "-54.01250076293945", + "elevation_ft": "1056", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Itaquiraí", + "scheduled_service": "no", + "gps_code": "SSHW" + }, + { + "id": "462", + "ident": "SSHX", + "type": "small_airport", + "name": "Fazenda Jatobá Airport", + "latitude_deg": "-23.923799514770508", + "longitude_deg": "-55.30189895629883", + "elevation_ft": "1335", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Paranhos", + "scheduled_service": "no", + "gps_code": "SSHX", + "local_code": "SSHX" + }, + { + "id": "45608", + "ident": "SSHY", + "type": "heliport", + "name": "Itaipu Heliport", + "latitude_deg": "-25.420556", + "longitude_deg": "-54.593056", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Foz Do Iguaçu", + "scheduled_service": "no", + "gps_code": "SSHY" + }, + { + "id": "463", + "ident": "SSHZ", + "type": "small_airport", + "name": "Walter Bündchen Airport", + "latitude_deg": "-27.638299942", + "longitude_deg": "-54.339099884", + "elevation_ft": "1063", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Horizontina", + "scheduled_service": "no", + "gps_code": "SSHZ", + "iata_code": "HRZ", + "local_code": "SSHZ" + }, + { + "id": "342522", + "ident": "SSIA", + "type": "small_airport", + "name": "Fazenda Ipê Airport", + "latitude_deg": "-8.427943", + "longitude_deg": "-45.310246", + "elevation_ft": "1739", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Baixa Grande do Ribeiro", + "scheduled_service": "no", + "gps_code": "SSIA", + "local_code": "PI0037" + }, + { + "id": "37505", + "ident": "SSIB", + "type": "small_airport", + "name": "FAZENDA PRIMAVERA", + "latitude_deg": "-19.481805", + "longitude_deg": "-52.796431", + "elevation_ft": "1574", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "PARAISO DAS AGUAS", + "scheduled_service": "no", + "gps_code": "SSIB" + }, + { + "id": "37506", + "ident": "SSIC", + "type": "small_airport", + "name": "APLIC Aviação Agrícola Ltda Airport", + "latitude_deg": "-22.30666732788086", + "longitude_deg": "-54.82444381713867", + "elevation_ft": "1405", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Dourados", + "scheduled_service": "no", + "gps_code": "SSIC" + }, + { + "id": "464", + "ident": "SSID", + "type": "small_airport", + "name": "Independência Airport", + "latitude_deg": "-22.279199600219727", + "longitude_deg": "-53.38349914550781", + "elevation_ft": "1135", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Andradina", + "scheduled_service": "no", + "gps_code": "SSID", + "local_code": "SSID" + }, + { + "id": "37507", + "ident": "SSIE", + "type": "small_airport", + "name": "Teruel Ipanema Estância Airport", + "latitude_deg": "-20.604145", + "longitude_deg": "-54.59553", + "elevation_ft": "1732", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "gps_code": "SSIE", + "local_code": "MS0002" + }, + { + "id": "465", + "ident": "SSIF", + "type": "small_airport", + "name": "Fazenda Baunilha Airport", + "latitude_deg": "-23.560300827026367", + "longitude_deg": "-54.03390121459961", + "elevation_ft": "970", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Itaquiraí", + "scheduled_service": "no", + "gps_code": "SSIF", + "local_code": "SSIF" + }, + { + "id": "37508", + "ident": "SSIG", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-20.267874", + "longitude_deg": "-55.73184", + "elevation_ft": "617", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "keywords": "SSIG" + }, + { + "id": "37509", + "ident": "SSIH", + "type": "small_airport", + "name": "Fazenda Fortaleza Airport", + "latitude_deg": "-20.946947", + "longitude_deg": "-52.721681", + "elevation_ft": "1296", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Brasilândia", + "scheduled_service": "no", + "gps_code": "SNYF", + "local_code": "MS0240", + "keywords": "SSIH" + }, + { + "id": "37510", + "ident": "SSII", + "type": "closed", + "name": "Fazenda Orion Airport", + "latitude_deg": "-22.024088", + "longitude_deg": "-56.325231", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bela Vista", + "scheduled_service": "no", + "keywords": "SSII" + }, + { + "id": "466", + "ident": "SSIJ", + "type": "small_airport", + "name": "João Batista Bos Filho Airport", + "latitude_deg": "-28.368711", + "longitude_deg": "-53.846568", + "elevation_ft": "1197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Ijuí", + "scheduled_service": "no", + "gps_code": "SSIJ", + "iata_code": "IJU", + "local_code": "RS0032", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iju%C3%AD_Airport" + }, + { + "id": "354167", + "ident": "SSIK", + "type": "heliport", + "name": "VIVO Heliport", + "latitude_deg": "-23.465628", + "longitude_deg": "-46.857891", + "elevation_ft": "2526", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santana de Parnaíba", + "scheduled_service": "no", + "gps_code": "SSIK", + "local_code": "SP0751" + }, + { + "id": "37511", + "ident": "SSIM", + "type": "small_airport", + "name": "Boqueirão Alegre Airport", + "latitude_deg": "-30.2549991607666", + "longitude_deg": "-55.83944320678711", + "elevation_ft": "732", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Quaraí", + "scheduled_service": "no", + "gps_code": "SSIM" + }, + { + "id": "354166", + "ident": "SSIN", + "type": "heliport", + "name": "Sítio Costa dos Calhaus Heliport", + "latitude_deg": "-23.216775", + "longitude_deg": "-44.633209", + "elevation_ft": "361", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Paraty", + "scheduled_service": "no", + "gps_code": "SSIN", + "local_code": "RJ0145" + }, + { + "id": "37512", + "ident": "SSIO", + "type": "small_airport", + "name": "Candiota Airport", + "latitude_deg": "-31.49416732788086", + "longitude_deg": "-53.690834045410156", + "elevation_ft": "741", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Candiota", + "scheduled_service": "no", + "gps_code": "SSIO" + }, + { + "id": "37513", + "ident": "SSIP", + "type": "small_airport", + "name": "Fazenda Santa Otília Airport", + "latitude_deg": "-21.186742", + "longitude_deg": "-57.043427", + "elevation_ft": "833", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SI8B", + "local_code": "MS0601", + "keywords": "SSIP, SWXR" + }, + { + "id": "29983", + "ident": "SSIQ", + "type": "small_airport", + "name": "Itaqui Airport", + "latitude_deg": "-29.173099517822266", + "longitude_deg": "-56.53670120239258", + "elevation_ft": "230", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Itaqui", + "scheduled_service": "no", + "gps_code": "SSIQ", + "iata_code": "ITQ" + }, + { + "id": "37514", + "ident": "SSIR", + "type": "small_airport", + "name": "Ibirubá Airport", + "latitude_deg": "-28.604167938232422", + "longitude_deg": "-53.078887939453125", + "elevation_ft": "1447", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Ibirubá", + "scheduled_service": "no", + "gps_code": "SSIR" + }, + { + "id": "30264", + "ident": "SSIS", + "type": "small_airport", + "name": "Major José Ignácio Airport", + "latitude_deg": "-22.047778", + "longitude_deg": "-48.097222", + "elevation_ft": "1962", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ibaté", + "scheduled_service": "no", + "gps_code": "SSIS" + }, + { + "id": "45619", + "ident": "SSIT", + "type": "heliport", + "name": "Issaig I Heliport", + "latitude_deg": "-28.702032", + "longitude_deg": "-49.303132", + "elevation_ft": "89", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Içara", + "scheduled_service": "no", + "gps_code": "SSIU", + "local_code": "SC0093", + "keywords": "SSIT" + }, + { + "id": "37515", + "ident": "SSIU", + "type": "small_airport", + "name": "Sítio Enel Airport", + "latitude_deg": "-30.137259", + "longitude_deg": "-52.365496", + "elevation_ft": "223", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Pântano Grande", + "scheduled_service": "no", + "gps_code": "SDX6", + "local_code": "RS0176", + "keywords": "SSIU" + }, + { + "id": "37516", + "ident": "SSIV", + "type": "small_airport", + "name": "Fazenda Experimental Airport", + "latitude_deg": "-22.295927", + "longitude_deg": "-53.848994", + "elevation_ft": "1194", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ivinhema", + "scheduled_service": "no", + "keywords": "SSIV" + }, + { + "id": "37517", + "ident": "SSIW", + "type": "small_airport", + "name": "Fazenda Damaro Airport", + "latitude_deg": "-19.980153", + "longitude_deg": "-56.435725", + "elevation_ft": "344", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "SDMF", + "local_code": "MS0038", + "keywords": "SSIW" + }, + { + "id": "37518", + "ident": "SSIX", + "type": "small_airport", + "name": "Fazenda Campo Verde Airport", + "latitude_deg": "-22.652796", + "longitude_deg": "-53.507444", + "elevation_ft": "843", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Taquarussu", + "scheduled_service": "no", + "gps_code": "SDVT", + "local_code": "MS0058", + "keywords": "SSIX" + }, + { + "id": "46360", + "ident": "SSIY", + "type": "small_airport", + "name": "Fazenda Santa Adelina Airport", + "latitude_deg": "-21.528889", + "longitude_deg": "-49.743333", + "elevation_ft": "1411", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guaiçara", + "scheduled_service": "no", + "keywords": "SSIY" + }, + { + "id": "45627", + "ident": "SSIZ", + "type": "heliport", + "name": "Condomínio Fazenda da Grama Heliport", + "latitude_deg": "-23.059167", + "longitude_deg": "-47.0625", + "elevation_ft": "2257", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itupeva", + "scheduled_service": "no", + "gps_code": "SSIZ", + "home_link": "http://www.fazendadagrama.com.br/localizacao_como_chegar.htm" + }, + { + "id": "467", + "ident": "SSJA", + "type": "small_airport", + "name": "Santa Terezinha Airport", + "latitude_deg": "-27.1714000702", + "longitude_deg": "-51.5532989502", + "elevation_ft": "2546", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Joaçaba", + "scheduled_service": "no", + "gps_code": "SSJA", + "iata_code": "JCB", + "local_code": "SSJA" + }, + { + "id": "37519", + "ident": "SSJB", + "type": "small_airport", + "name": "Salenco Airport", + "latitude_deg": "-18.862227", + "longitude_deg": "-54.348679", + "elevation_ft": "1253", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "São Gabriel D`Oeste", + "scheduled_service": "no", + "keywords": "SSJB" + }, + { + "id": "37520", + "ident": "SSJC", + "type": "small_airport", + "name": "Fazenda do Jacuí Airport", + "latitude_deg": "-29.983505", + "longitude_deg": "-51.301625", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Guaíba", + "scheduled_service": "no", + "keywords": "SSJC" + }, + { + "id": "46212", + "ident": "SSJD", + "type": "closed", + "name": "Viana III Heliport", + "latitude_deg": "-27.007644", + "longitude_deg": "-48.610543", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Balneário Camboriú", + "scheduled_service": "no", + "local_code": "SC0094", + "keywords": "SSJD" + }, + { + "id": "29986", + "ident": "SSJE", + "type": "small_airport", + "name": "Fazenda São Joaquim Airport", + "latitude_deg": "-20.352222", + "longitude_deg": "-51.555833", + "elevation_ft": "1325", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Selvíria", + "scheduled_service": "no", + "keywords": "SSJE" + }, + { + "id": "37521", + "ident": "SSJF", + "type": "heliport", + "name": "Polícia Federal Curitiba Heliport", + "latitude_deg": "-25.37444305419922", + "longitude_deg": "-49.22833251953125", + "elevation_ft": "3064", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Curitiba", + "scheduled_service": "no", + "gps_code": "SSJF" + }, + { + "id": "37522", + "ident": "SSJG", + "type": "small_airport", + "name": "Fazenda Santa Ana Airport", + "latitude_deg": "-21.216388702392578", + "longitude_deg": "-57.68138885498047", + "elevation_ft": "351", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SSJG" + }, + { + "id": "37523", + "ident": "SSJH", + "type": "small_airport", + "name": "Fazenda Guarani Airport", + "latitude_deg": "-22.16583251953125", + "longitude_deg": "-53.573055267333984", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Andradina", + "scheduled_service": "no", + "gps_code": "SSJH" + }, + { + "id": "468", + "ident": "SSJI", + "type": "small_airport", + "name": "Jardim Airport", + "latitude_deg": "-21.493099212646484", + "longitude_deg": "-56.1525993347168", + "elevation_ft": "1053", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Jardim", + "scheduled_service": "no", + "gps_code": "SSJI", + "local_code": "SSJI" + }, + { + "id": "37524", + "ident": "SSJJ", + "type": "small_airport", + "name": "Fazenda Tupi Airport", + "latitude_deg": "-21.805647", + "longitude_deg": "-53.128837", + "elevation_ft": "1377", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Andradina", + "scheduled_service": "no", + "gps_code": "SWBT", + "local_code": "MS0365", + "keywords": "SSJJ" + }, + { + "id": "29999", + "ident": "SSJK", + "type": "small_airport", + "name": "Júlio de Castilho Airport", + "latitude_deg": "-29.153099060058594", + "longitude_deg": "-53.74330139160156", + "elevation_ft": "1633", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Júlio De Castilho", + "scheduled_service": "no", + "gps_code": "SSJK", + "iata_code": "0" + }, + { + "id": "37525", + "ident": "SSJL", + "type": "small_airport", + "name": "Fazenda Jamaica Airport", + "latitude_deg": "-19.347778", + "longitude_deg": "-53.77", + "elevation_ft": "1706", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Camapuã", + "scheduled_service": "no", + "keywords": "SSJL" + }, + { + "id": "37526", + "ident": "SSJM", + "type": "small_airport", + "name": "Fazenda Júlio Martins Airport", + "latitude_deg": "-18.842500686645508", + "longitude_deg": "-52.49944305419922", + "elevation_ft": "2621", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Chapadão Do Sul", + "scheduled_service": "no", + "gps_code": "SSJM" + }, + { + "id": "37527", + "ident": "SSJO", + "type": "small_airport", + "name": "Fazenda Angico Airport", + "latitude_deg": "-19.376388549804688", + "longitude_deg": "-57.45277786254883", + "elevation_ft": "511", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSJO" + }, + { + "id": "469", + "ident": "SSJP", + "type": "small_airport", + "name": "Fazenda Junqueira Airport", + "latitude_deg": "-22.895000457763672", + "longitude_deg": "-51.929168701171875", + "elevation_ft": "1427", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Colorado", + "scheduled_service": "no", + "gps_code": "SSJP", + "local_code": "SSJP" + }, + { + "id": "45653", + "ident": "SSJQ", + "type": "small_airport", + "name": "Fazenda Floresta Airport", + "latitude_deg": "-12.806725", + "longitude_deg": "-51.873778", + "elevation_ft": "1266", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Ribeirão Cascalheira", + "scheduled_service": "no", + "gps_code": "SSJQ" + }, + { + "id": "37528", + "ident": "SSJR", + "type": "small_airport", + "name": "Jaguarão Airport", + "latitude_deg": "-32.540557861328125", + "longitude_deg": "-53.3841667175293", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Jaguarão", + "scheduled_service": "no", + "gps_code": "SSJR" + }, + { + "id": "37529", + "ident": "SSJS", + "type": "heliport", + "name": "Malwee Heliport", + "latitude_deg": "-26.517934", + "longitude_deg": "-49.127257", + "elevation_ft": "141", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Jaraguá do Sul", + "scheduled_service": "no", + "gps_code": "SNYM", + "local_code": "SC0085", + "keywords": "SSJS" + }, + { + "id": "37530", + "ident": "SSJT", + "type": "small_airport", + "name": "Fazenda Rio Lagoa Airport", + "latitude_deg": "-20.84889", + "longitude_deg": "-53.20667", + "elevation_ft": "1082", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas Do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SSJT" + }, + { + "id": "37531", + "ident": "SSJU", + "type": "small_airport", + "name": "Fazenda Santa Paula Airport", + "latitude_deg": "-19.381389617919922", + "longitude_deg": "-52.309722900390625", + "elevation_ft": "1200", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Inocência", + "scheduled_service": "no", + "gps_code": "SSJU" + }, + { + "id": "37532", + "ident": "SSJV", + "type": "small_airport", + "name": "Piratininga Airport", + "latitude_deg": "-17.9424991607666", + "longitude_deg": "-56.47999954223633", + "elevation_ft": "150", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSJV" + }, + { + "id": "37533", + "ident": "SSJW", + "type": "small_airport", + "name": "Fazenda Jauru Airport", + "latitude_deg": "-21.782499313354492", + "longitude_deg": "-53.8922233581543", + "elevation_ft": "1017", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Brilhante", + "scheduled_service": "no", + "gps_code": "SSJW" + }, + { + "id": "37534", + "ident": "SSJX", + "type": "small_airport", + "name": "São Bento Airport", + "latitude_deg": "-19.478055953979492", + "longitude_deg": "-57.01416778564453", + "elevation_ft": "150", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSJX" + }, + { + "id": "37535", + "ident": "SSJY", + "type": "small_airport", + "name": "São João Airport", + "latitude_deg": "-17.707500457763672", + "longitude_deg": "-56.217220306396484", + "elevation_ft": "150", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSJY" + }, + { + "id": "37536", + "ident": "SSJZ", + "type": "small_airport", + "name": "Fazenda Três Unidos Airport", + "latitude_deg": "-24.051666259765625", + "longitude_deg": "-54.00666809082031", + "elevation_ft": "1000", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Terra Roxa", + "scheduled_service": "no", + "gps_code": "SSJZ" + }, + { + "id": "37537", + "ident": "SSKA", + "type": "small_airport", + "name": "Fazenda Campinas Airport", + "latitude_deg": "-18.905555725097656", + "longitude_deg": "-56.35972213745117", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSKA" + }, + { + "id": "37538", + "ident": "SSKB", + "type": "small_airport", + "name": "Fazenda Tupanciretan Airport", + "latitude_deg": "-19.474443435668945", + "longitude_deg": "-56.377220153808594", + "elevation_ft": "312", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SSKB" + }, + { + "id": "37539", + "ident": "SSKC", + "type": "small_airport", + "name": "Fazenda União Airport", + "latitude_deg": "-19.292785", + "longitude_deg": "-52.05937", + "elevation_ft": "1758", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Inocência", + "scheduled_service": "no", + "gps_code": "SWUN", + "local_code": "MS0397", + "keywords": "SSKC" + }, + { + "id": "37540", + "ident": "SSKD", + "type": "small_airport", + "name": "Fazenda União Airport", + "latitude_deg": "-19.75", + "longitude_deg": "-55.46666717529297", + "elevation_ft": "410", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SSKD" + }, + { + "id": "37541", + "ident": "SSKE", + "type": "small_airport", + "name": "Campo Primavera", + "latitude_deg": "-23.12116", + "longitude_deg": "-53.078492", + "elevation_ft": "1250", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Santa Mônica", + "scheduled_service": "no", + "gps_code": "SINP", + "local_code": "PR0049", + "keywords": "SSKE, Campo Evelina" + }, + { + "id": "37542", + "ident": "SSKF", + "type": "small_airport", + "name": "Porto Bonito Airport", + "latitude_deg": "-23.344521", + "longitude_deg": "-53.872329", + "elevation_ft": "1180", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Itaquiraí", + "scheduled_service": "no", + "gps_code": "SJPI", + "local_code": "MS0179", + "keywords": "SSKF" + }, + { + "id": "470", + "ident": "SSKG", + "type": "small_airport", + "name": "Estância Santa Maria Airport", + "latitude_deg": "-20.505300521850586", + "longitude_deg": "-54.5255012512207", + "elevation_ft": "2028", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Campo Grande", + "scheduled_service": "no", + "gps_code": "SSKG", + "local_code": "SSKG" + }, + { + "id": "37543", + "ident": "SSKH", + "type": "small_airport", + "name": "Fazenda Karl Hermann Isenberg Airport", + "latitude_deg": "-22.911666870117188", + "longitude_deg": "-55.53889083862305", + "elevation_ft": "1853", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aral Moreira", + "scheduled_service": "no", + "gps_code": "SSKH" + }, + { + "id": "37544", + "ident": "SSKI", + "type": "small_airport", + "name": "Fazenda Santa Helena Airport", + "latitude_deg": "-23.340699", + "longitude_deg": "-50.585196", + "elevation_ft": "1673", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Cornélio Procópio", + "scheduled_service": "no", + "gps_code": "SJEL", + "local_code": "PR0056", + "keywords": "SSKI" + }, + { + "id": "37545", + "ident": "SSKJ", + "type": "small_airport", + "name": "Fazenda Mestiça Airport", + "latitude_deg": "-24.307222366333008", + "longitude_deg": "-51.410831451416016", + "elevation_ft": "1575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Rio Branco Do Ivaí", + "scheduled_service": "no", + "gps_code": "SSKJ" + }, + { + "id": "37546", + "ident": "SSKK", + "type": "small_airport", + "name": "Capão da Canoa Airport", + "latitude_deg": "-29.76361083984375", + "longitude_deg": "-50.03694534301758", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Capão Da Canoa", + "scheduled_service": "no", + "gps_code": "SSKK" + }, + { + "id": "37547", + "ident": "SSKL", + "type": "small_airport", + "name": "Fazenda Pião Airport", + "latitude_deg": "-23.406944274902344", + "longitude_deg": "-55.22666549682617", + "elevation_ft": "1542", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Amambaí", + "scheduled_service": "no", + "gps_code": "SSKL" + }, + { + "id": "471", + "ident": "SSKM", + "type": "small_airport", + "name": "Campo Mourão Airport", + "latitude_deg": "-24.009199142499998", + "longitude_deg": "-52.3568000793", + "elevation_ft": "1854", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Campo Mourão", + "scheduled_service": "no", + "gps_code": "SSKM", + "iata_code": "CBW", + "local_code": "SSKM" + }, + { + "id": "472", + "ident": "SSKN", + "type": "small_airport", + "name": "Campo Novo Airport", + "latitude_deg": "-27.667200088500977", + "longitude_deg": "-53.808998107910156", + "elevation_ft": "1460", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Campo Novo", + "scheduled_service": "no", + "gps_code": "SSKN", + "local_code": "SSKN" + }, + { + "id": "37548", + "ident": "SSKO", + "type": "small_airport", + "name": "Independência Airport", + "latitude_deg": "-20.476110458374023", + "longitude_deg": "-55.83361053466797", + "elevation_ft": "544", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Anastácio", + "scheduled_service": "no", + "gps_code": "SSKO" + }, + { + "id": "37549", + "ident": "SSKP", + "type": "small_airport", + "name": "Copacel Airport", + "latitude_deg": "-24.308889389038086", + "longitude_deg": "-53.842220306396484", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Palotina", + "scheduled_service": "no", + "gps_code": "SSKP" + }, + { + "id": "45571", + "ident": "SSKQ", + "type": "small_airport", + "name": "Fazenda Santa Rosa Airport", + "latitude_deg": "-14.541111", + "longitude_deg": "-50.461944", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Nova Crixás", + "scheduled_service": "no", + "gps_code": "SSKQ" + }, + { + "id": "45654", + "ident": "SSKR", + "type": "small_airport", + "name": "Fazenda Primavera Airport", + "latitude_deg": "-17.17", + "longitude_deg": "-50.82", + "elevation_ft": "2306", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Paraúna", + "scheduled_service": "no", + "gps_code": "SSKR" + }, + { + "id": "473", + "ident": "SSKS", + "type": "small_airport", + "name": "Cachoeira do Sul Airport", + "latitude_deg": "-30.00189971923828", + "longitude_deg": "-52.940799713134766", + "elevation_ft": "253", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Cachoeira Do Sul", + "scheduled_service": "no", + "gps_code": "SSKS", + "iata_code": "QDB", + "local_code": "SSKS" + }, + { + "id": "37550", + "ident": "SSKT", + "type": "small_airport", + "name": "Aeroclube de Santa Catarina Airport", + "latitude_deg": "-27.61166763305664", + "longitude_deg": "-48.67277908325195", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "São José", + "scheduled_service": "no", + "gps_code": "SSKT" + }, + { + "id": "29813", + "ident": "SSKU", + "type": "small_airport", + "name": "Curitibanos Airport", + "latitude_deg": "-27.282499313354492", + "longitude_deg": "-50.61140060424805", + "elevation_ft": "3133", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Curitibanos", + "scheduled_service": "no", + "gps_code": "SSKU", + "iata_code": "QCR" + }, + { + "id": "37551", + "ident": "SSKV", + "type": "small_airport", + "name": "Retiro São João Airport", + "latitude_deg": "-22.396944046", + "longitude_deg": "-55.4855575562", + "elevation_ft": "1738", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ponta Porã", + "scheduled_service": "no", + "gps_code": "SSKV" + }, + { + "id": "45617", + "ident": "SSKW", + "type": "small_airport", + "name": "Cacoal Airport", + "latitude_deg": "-11.496", + "longitude_deg": "-61.4508", + "elevation_ft": "778", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Cacoal", + "scheduled_service": "yes", + "gps_code": "SSKW", + "iata_code": "OAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cacoal_Airport" + }, + { + "id": "46115", + "ident": "SSKX", + "type": "small_airport", + "name": "Fazenda São Luíz do Matão Airport", + "latitude_deg": "-19.869993", + "longitude_deg": "-50.652886", + "elevation_ft": "1168", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Carneirinho", + "scheduled_service": "no", + "gps_code": "SNLD", + "local_code": "MG0154", + "keywords": "SSKX" + }, + { + "id": "46114", + "ident": "SSKY", + "type": "small_airport", + "name": "Fazenda Querência Airport", + "latitude_deg": "-14.4736111111", + "longitude_deg": "-58.3552777778", + "elevation_ft": "2362", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tangará Da Serra", + "scheduled_service": "no", + "gps_code": "SSKY", + "local_code": "SSKY" + }, + { + "id": "474", + "ident": "SSKZ", + "type": "small_airport", + "name": "Carazinho Airport", + "latitude_deg": "-28.3225002289", + "longitude_deg": "-52.8162002563", + "elevation_ft": "1854", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Carazinho", + "scheduled_service": "no", + "gps_code": "SSKZ", + "local_code": "QRE" + }, + { + "id": "30058", + "ident": "SSLA", + "type": "small_airport", + "name": "Laguna Anita Garibaldi Airport", + "latitude_deg": "-28.392023", + "longitude_deg": "-48.754724", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Laguna", + "scheduled_service": "no", + "gps_code": "SSLA" + }, + { + "id": "37552", + "ident": "SSLB", + "type": "small_airport", + "name": "Fazenda São Paulino Airport", + "latitude_deg": "-19.025278091430664", + "longitude_deg": "-55.926109313964844", + "elevation_ft": "394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSLB" + }, + { + "id": "37553", + "ident": "SSLC", + "type": "small_airport", + "name": "Fazenda Laguna Carem Airport", + "latitude_deg": "-22.673332", + "longitude_deg": "-55.236667", + "elevation_ft": "1755", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Laguna Carapã", + "scheduled_service": "no", + "keywords": "SSLC" + }, + { + "id": "37554", + "ident": "SSLD", + "type": "small_airport", + "name": "Fazenda Lourdes Airport", + "latitude_deg": "-18.643888473510742", + "longitude_deg": "-56.75944519042969", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSLD" + }, + { + "id": "327783", + "ident": "SSLE", + "type": "heliport", + "name": "Eldorado Brasil Heliport", + "latitude_deg": "-20.595277", + "longitude_deg": "-51.613889", + "elevation_ft": "1037", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Três Lagoas", + "scheduled_service": "no", + "gps_code": "SSLE" + }, + { + "id": "37555", + "ident": "SSLF", + "type": "small_airport", + "name": "Fazenda Palmeira Airport", + "latitude_deg": "-22.543611526489258", + "longitude_deg": "-53.429443359375", + "elevation_ft": "885", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Taquarussu", + "scheduled_service": "no", + "gps_code": "SSLF" + }, + { + "id": "37556", + "ident": "SSLG", + "type": "small_airport", + "name": "São Luís Gonzaga Airport", + "latitude_deg": "-28.376388549804688", + "longitude_deg": "-55.037498474121094", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "São Luís Gonzaga", + "scheduled_service": "no", + "gps_code": "SSLG" + }, + { + "id": "327788", + "ident": "SSLH", + "type": "heliport", + "name": "Helipalm Heliport", + "latitude_deg": "-23.651964", + "longitude_deg": "-46.314775", + "elevation_ft": "2493", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Suzano", + "scheduled_service": "no", + "gps_code": "SSLH" + }, + { + "id": "31865", + "ident": "SSLI", + "type": "small_airport", + "name": "Estância Portal do Sol Airport", + "latitude_deg": "-22.165278", + "longitude_deg": "-47.892778", + "elevation_ft": "2425", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itirapina", + "scheduled_service": "no", + "gps_code": "SSLI" + }, + { + "id": "45570", + "ident": "SSLJ", + "type": "small_airport", + "name": "Fazenda Santa Izabel Airport", + "latitude_deg": "-14.265278", + "longitude_deg": "-47.0275", + "elevation_ft": "1434", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Flores De Goiás", + "scheduled_service": "no", + "gps_code": "SSLJ" + }, + { + "id": "37557", + "ident": "SSLK", + "type": "small_airport", + "name": "Fazenda Aldeia Airport", + "latitude_deg": "-18.216388702392578", + "longitude_deg": "-55.15888977050781", + "elevation_ft": "394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Coxim", + "scheduled_service": "no", + "gps_code": "SSLK" + }, + { + "id": "37558", + "ident": "SSLL", + "type": "small_airport", + "name": "Fazenda Itaguassu Airport", + "latitude_deg": "-22.249873", + "longitude_deg": "-55.926764", + "elevation_ft": "1788", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Antônio João", + "scheduled_service": "no", + "gps_code": "SJTC", + "local_code": "MS0432", + "keywords": "SSLL" + }, + { + "id": "335045", + "ident": "SSLM", + "type": "small_airport", + "name": "Estância Acrobata Airport", + "latitude_deg": "-16.548655", + "longitude_deg": "-48.941534", + "elevation_ft": "3510", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Leopoldo de Bulhões", + "scheduled_service": "no", + "gps_code": "SSLM", + "local_code": "GO0202" + }, + { + "id": "475", + "ident": "SSLN", + "type": "small_airport", + "name": "Helmuth Baungarten Airport", + "latitude_deg": "-27.159999847399998", + "longitude_deg": "-49.5424995422", + "elevation_ft": "1095", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Lontras", + "scheduled_service": "no", + "gps_code": "SSLN", + "iata_code": "LOI", + "local_code": "SSLN", + "wikipedia_link": "http://pt.wikipedia.org/wiki/Aeroporto_de_Lontras", + "keywords": "Baungartem" + }, + { + "id": "476", + "ident": "SSLO", + "type": "small_airport", + "name": "Loanda Airport", + "latitude_deg": "-22.91710090637207", + "longitude_deg": "-53.14899826049805", + "elevation_ft": "1542", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Loanda", + "scheduled_service": "no", + "gps_code": "SSLO", + "local_code": "SSLO" + }, + { + "id": "37559", + "ident": "SSLP", + "type": "small_airport", + "name": "Fazenda Lucero Porã Airport", + "latitude_deg": "-21.91083335876465", + "longitude_deg": "-57.64666748046875", + "elevation_ft": "299", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SSLP" + }, + { + "id": "37560", + "ident": "SSLQ", + "type": "small_airport", + "name": "Fazenda Campanário Airport", + "latitude_deg": "-22.783302", + "longitude_deg": "-55.072604", + "elevation_ft": "1362", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Laguna Carapã", + "scheduled_service": "no", + "gps_code": "SDTD", + "local_code": "SDTD", + "keywords": "SSLQ" + }, + { + "id": "37561", + "ident": "SSLR", + "type": "small_airport", + "name": "Ocorema Airport", + "latitude_deg": "-19.104999542236328", + "longitude_deg": "-57.59333419799805", + "elevation_ft": "413", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ladário", + "scheduled_service": "no", + "gps_code": "SSLR" + }, + { + "id": "37562", + "ident": "SSLS", + "type": "small_airport", + "name": "Salto Santiago Airport", + "latitude_deg": "-25.514133", + "longitude_deg": "-52.557499", + "elevation_ft": "2087", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Laranjeiras do Sul", + "scheduled_service": "no", + "keywords": "SSLS, Rio Bonito do Iguaçu" + }, + { + "id": "477", + "ident": "SSLT", + "type": "small_airport", + "name": "Alegrete Novo Airport", + "latitude_deg": "-29.812700271599997", + "longitude_deg": "-55.8933982849", + "elevation_ft": "459", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Alegrete", + "scheduled_service": "no", + "gps_code": "SSLT", + "iata_code": "ALQ", + "local_code": "SSLT", + "wikipedia_link": "http://pt.wikipedia.org/wiki/Aeroporto_Alegrete_Novo" + }, + { + "id": "37563", + "ident": "SSLU", + "type": "small_airport", + "name": "Fazenda Aurora Airport", + "latitude_deg": "-21.523332", + "longitude_deg": "-56.611667", + "elevation_ft": "754", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Jardim", + "scheduled_service": "no", + "gps_code": "SSXU", + "local_code": "SSXU", + "keywords": "SSLU" + }, + { + "id": "45641", + "ident": "SSLV", + "type": "heliport", + "name": "Metropolitan Business Center Heliport", + "latitude_deg": "-21.193333", + "longitude_deg": "-47.801389", + "elevation_ft": "2096", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Preto", + "scheduled_service": "no", + "gps_code": "SSLV" + }, + { + "id": "37564", + "ident": "SSLW", + "type": "small_airport", + "name": "Fazenda Três Cerros Airport", + "latitude_deg": "-21.97333335876465", + "longitude_deg": "-56.79750061035156", + "elevation_ft": "853", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bela Vista", + "scheduled_service": "no", + "gps_code": "SSLW" + }, + { + "id": "37565", + "ident": "SSLX", + "type": "small_airport", + "name": "Fazenda Brasília do Sul Airport", + "latitude_deg": "-22.701258", + "longitude_deg": "-54.608345", + "elevation_ft": "1296", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Juti", + "scheduled_service": "no", + "gps_code": "SSVD", + "local_code": "MS0339", + "keywords": "SSLX" + }, + { + "id": "45642", + "ident": "SSLY", + "type": "heliport", + "name": "Norte Sul Heliport", + "latitude_deg": "-22.901944", + "longitude_deg": "-47.046944", + "elevation_ft": "2356", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SSLY" + }, + { + "id": "37566", + "ident": "SSLZ", + "type": "small_airport", + "name": "Fazenda Vitória do Ivinhema Airport", + "latitude_deg": "-22.51972198486328", + "longitude_deg": "-53.66472244262695", + "elevation_ft": "1296", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ivinhema", + "scheduled_service": "no", + "gps_code": "SSLZ" + }, + { + "id": "37567", + "ident": "SSMA", + "type": "closed", + "name": "Marrecão Airport", + "latitude_deg": "-27.07", + "longitude_deg": "-48.89", + "elevation_ft": "68", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Brusque", + "scheduled_service": "no", + "gps_code": "SSMA" + }, + { + "id": "335047", + "ident": "SSMB", + "type": "small_airport", + "name": "Fazenda Oriente Airport", + "latitude_deg": "-22.282949", + "longitude_deg": "-43.628157", + "elevation_ft": "1877", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Valença", + "scheduled_service": "no", + "gps_code": "SSMB", + "local_code": "RJ0187" + }, + { + "id": "37568", + "ident": "SSMC", + "type": "small_airport", + "name": "Fazenda São Miguel da Catequese Airport", + "latitude_deg": "-22.087778091430664", + "longitude_deg": "-53.52000045776367", + "elevation_ft": "1209", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Andradina", + "scheduled_service": "no", + "gps_code": "SSMC" + }, + { + "id": "478", + "ident": "SSMD", + "type": "small_airport", + "name": "Medianeira Airport", + "latitude_deg": "-25.31089973449707", + "longitude_deg": "-54.070499420166016", + "elevation_ft": "1473", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Medianeira", + "scheduled_service": "no", + "gps_code": "SSMD", + "local_code": "SSMD" + }, + { + "id": "37569", + "ident": "SSME", + "type": "small_airport", + "name": "Fazenda Ipiranga Airport", + "latitude_deg": "-20.98055648803711", + "longitude_deg": "-55.565834045410156", + "elevation_ft": "804", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Anastácio", + "scheduled_service": "no", + "gps_code": "SSME" + }, + { + "id": "30098", + "ident": "SSMF", + "type": "small_airport", + "name": "Hugo Werner Airport", + "latitude_deg": "-26.160147", + "longitude_deg": "-49.832236", + "elevation_ft": "2690", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Mafra", + "scheduled_service": "no", + "local_code": "SC0021", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Mafra", + "keywords": "QMF, SSMF" + }, + { + "id": "45644", + "ident": "SSMG", + "type": "heliport", + "name": "Uno Heliport", + "latitude_deg": "-23.956667", + "longitude_deg": "-46.331389", + "elevation_ft": "226", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santos", + "scheduled_service": "no", + "gps_code": "SSMG" + }, + { + "id": "37570", + "ident": "SSMH", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-31.929443359375", + "longitude_deg": "-52.4636116027832", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Capão Do Leão", + "scheduled_service": "no", + "gps_code": "SSMH" + }, + { + "id": "37571", + "ident": "SSMI", + "type": "small_airport", + "name": "Fazenda Morrinhos Airport", + "latitude_deg": "-22.08388900756836", + "longitude_deg": "-56.30055618286133", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bela Vista", + "scheduled_service": "no", + "gps_code": "SSMI" + }, + { + "id": "37572", + "ident": "SSMJ", + "type": "small_airport", + "name": "Maracaju Airport", + "latitude_deg": "-21.633888244628906", + "longitude_deg": "-55.14500045776367", + "elevation_ft": "1283", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Maracaju", + "scheduled_service": "no", + "gps_code": "SSMJ" + }, + { + "id": "37573", + "ident": "SSMK", + "type": "small_airport", + "name": "El Dorado Airport", + "latitude_deg": "-30.073333740234375", + "longitude_deg": "-51.40972137451172", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Eldorado Do Sul", + "scheduled_service": "no", + "gps_code": "SSMK" + }, + { + "id": "37574", + "ident": "SSML", + "type": "small_airport", + "name": "Fazenda Maria Luíza Airport", + "latitude_deg": "-23.59722137451172", + "longitude_deg": "-54.64583206176758", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Iguatemi", + "scheduled_service": "no", + "gps_code": "SSML" + }, + { + "id": "331515", + "ident": "SSMM", + "type": "heliport", + "name": "MACAÉ Heliport", + "latitude_deg": "-6.103733", + "longitude_deg": "-40.284467", + "elevation_ft": "1247", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Tauá", + "scheduled_service": "no", + "gps_code": "SSMM", + "local_code": "CE0060" + }, + { + "id": "45655", + "ident": "SSMN", + "type": "small_airport", + "name": "Kururuzinho Airport", + "latitude_deg": "-8.88", + "longitude_deg": "-57.33", + "elevation_ft": "1640", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Jacareacanga", + "scheduled_service": "no", + "gps_code": "SSMN" + }, + { + "id": "337144", + "ident": "SSMO", + "type": "small_airport", + "name": "Fazenda Luma Airport", + "latitude_deg": "-19.344942", + "longitude_deg": "-52.730275", + "elevation_ft": "1821", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Paraíso das Águas", + "scheduled_service": "no", + "gps_code": "SSMO", + "local_code": "MS0511" + }, + { + "id": "37575", + "ident": "SSMP", + "type": "small_airport", + "name": "Fazenda Três Minas Airport", + "latitude_deg": "-23.67277717590332", + "longitude_deg": "-52.00972366333008", + "elevation_ft": "1391", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Itambé", + "scheduled_service": "no", + "gps_code": "SSMP" + }, + { + "id": "45626", + "ident": "SSMQ", + "type": "heliport", + "name": "Chácara Monte Alegre Heliport", + "latitude_deg": "-22.69", + "longitude_deg": "-46.680556", + "elevation_ft": "2454", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Monte Alegre Do Sul", + "scheduled_service": "no", + "gps_code": "SSMQ" + }, + { + "id": "479", + "ident": "SSMR", + "type": "small_airport", + "name": "Manoel Ribas Airport", + "latitude_deg": "-24.529600143432617", + "longitude_deg": "-51.65190124511719", + "elevation_ft": "2822", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Manoel Ribas", + "scheduled_service": "no", + "gps_code": "SSMR", + "local_code": "SSMR" + }, + { + "id": "45656", + "ident": "SSMS", + "type": "small_airport", + "name": "Fazenda Rancho Esperança Airport", + "latitude_deg": "-22.87", + "longitude_deg": "-55.5", + "elevation_ft": "1522", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aral Moreira", + "scheduled_service": "no", + "gps_code": "SSMS" + }, + { + "id": "480", + "ident": "SSMT", + "type": "small_airport", + "name": "Mostardas Airport", + "latitude_deg": "-31.103599548339844", + "longitude_deg": "-50.910301208496094", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Mostardas", + "scheduled_service": "no", + "gps_code": "SSMT", + "local_code": "SSMT" + }, + { + "id": "37576", + "ident": "SSMU", + "type": "heliport", + "name": "Magnum Heliport", + "latitude_deg": "-29.946943283081055", + "longitude_deg": "-51.10527801513672", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Cachoeirinha", + "scheduled_service": "no", + "gps_code": "SSMU" + }, + { + "id": "45633", + "ident": "SSMV", + "type": "small_airport", + "name": "Fazenda Boa Vista Airport", + "latitude_deg": "-22.0425", + "longitude_deg": "-47.56", + "elevation_ft": "2434", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Pirassununga", + "scheduled_service": "no", + "gps_code": "SSMV" + }, + { + "id": "37577", + "ident": "SSMW", + "type": "small_airport", + "name": "ICA (Ilha Clube Aerodesportivo) / Ultraleves Airport", + "latitude_deg": "-24.315277", + "longitude_deg": "-47.013889", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Peruibe", + "scheduled_service": "no", + "gps_code": "SSMW" + }, + { + "id": "45577", + "ident": "SSMX", + "type": "small_airport", + "name": "Fazenda Planalto Airport", + "latitude_deg": "-21.12", + "longitude_deg": "-46.42", + "elevation_ft": "3868", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Nova Resende", + "scheduled_service": "no", + "gps_code": "SSMX" + }, + { + "id": "481", + "ident": "SSMY", + "type": "small_airport", + "name": "São Miguel do Iguaçu Airport", + "latitude_deg": "-25.39888889", + "longitude_deg": "-54.23472222", + "elevation_ft": "951", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "São Miguel Do Iguaçu", + "scheduled_service": "no", + "gps_code": "SSMY", + "local_code": "SSMY" + }, + { + "id": "30333", + "ident": "SSMZ", + "type": "small_airport", + "name": "Fazenda São Mateus Airport", + "latitude_deg": "-13.917222", + "longitude_deg": "-59.983333", + "elevation_ft": "1070", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SSMZ" + }, + { + "id": "37578", + "ident": "SSNA", + "type": "small_airport", + "name": "Estância Miranda Airport", + "latitude_deg": "-19.896503", + "longitude_deg": "-56.427346", + "elevation_ft": "436", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "SSNA", + "local_code": "MS0307" + }, + { + "id": "482", + "ident": "SSNB", + "type": "small_airport", + "name": "Naviraí Airport", + "latitude_deg": "-23.034799575805664", + "longitude_deg": "-54.180198669433594", + "elevation_ft": "1329", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Naviraí", + "scheduled_service": "no", + "gps_code": "SSNB", + "local_code": "SSNB" + }, + { + "id": "45657", + "ident": "SSND", + "type": "small_airport", + "name": "Santa Maria Airport", + "latitude_deg": "-11.16", + "longitude_deg": "-52.82", + "elevation_ft": "1119", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São Félix Do Araguaia", + "scheduled_service": "no", + "gps_code": "SSND" + }, + { + "id": "37579", + "ident": "SSNE", + "type": "closed", + "name": "Fazenda São Benedito Airport", + "latitude_deg": "-18.42", + "longitude_deg": "-56.46", + "elevation_ft": "394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSNE" + }, + { + "id": "37580", + "ident": "SSNF", + "type": "small_airport", + "name": "Fazenda Naisa Airport", + "latitude_deg": "-20.329721450805664", + "longitude_deg": "-48.810001373291016", + "elevation_ft": "1739", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Colômbia", + "scheduled_service": "no", + "gps_code": "SSNF" + }, + { + "id": "30158", + "ident": "SSNG", + "type": "small_airport", + "name": "Montenegro Airport", + "latitude_deg": "-29.71940040588379", + "longitude_deg": "-51.48939895629883", + "elevation_ft": "125", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Montenegro", + "scheduled_service": "no", + "gps_code": "SSNG", + "iata_code": "QGF" + }, + { + "id": "30195", + "ident": "SSNH", + "type": "small_airport", + "name": "Novo Hamburgo Airport", + "latitude_deg": "-29.69610023498535", + "longitude_deg": "-51.08169937133789", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Novo Hamburgo", + "scheduled_service": "no", + "gps_code": "SSNH", + "iata_code": "QHV" + }, + { + "id": "37581", + "ident": "SSNI", + "type": "small_airport", + "name": "Fazenda Novo Rumo Airport", + "latitude_deg": "-22.98527717590332", + "longitude_deg": "-53.87694549560547", + "elevation_ft": "1247", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Naviraí", + "scheduled_service": "no", + "gps_code": "SSNI" + }, + { + "id": "30381", + "ident": "SSNJ", + "type": "small_airport", + "name": "Fazenda Primavera Airport", + "latitude_deg": "-19.5075", + "longitude_deg": "-55.90528", + "elevation_ft": "341", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SSNJ" + }, + { + "id": "37582", + "ident": "SSNK", + "type": "small_airport", + "name": "Sementes Petrovina Airport", + "latitude_deg": "-16.848464", + "longitude_deg": "-54.064558", + "elevation_ft": "2362", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pedra Preta", + "scheduled_service": "no", + "gps_code": "SWAP", + "local_code": "MT0326", + "keywords": "SSNK" + }, + { + "id": "45592", + "ident": "SSNL", + "type": "small_airport", + "name": "Fazenda Essência Airport", + "latitude_deg": "-14.316667", + "longitude_deg": "-55.766944", + "elevation_ft": "1818", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nobres", + "scheduled_service": "no", + "gps_code": "SSNL" + }, + { + "id": "37583", + "ident": "SSNM", + "type": "small_airport", + "name": "Guarantã Airport", + "latitude_deg": "-9.962281", + "longitude_deg": "-54.884974", + "elevation_ft": "968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Guarantã do Norte", + "scheduled_service": "no", + "gps_code": "SDN7", + "local_code": "MT0754", + "keywords": "SSNM" + }, + { + "id": "37584", + "ident": "SSNN", + "type": "small_airport", + "name": "Salvaterra II Airport", + "latitude_deg": "-17.197500228881836", + "longitude_deg": "-45.776668548583984", + "elevation_ft": "1749", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "João Pinheiro", + "scheduled_service": "no", + "gps_code": "SSNN" + }, + { + "id": "30190", + "ident": "SSNO", + "type": "closed", + "name": "Nonoaí Airport", + "latitude_deg": "-27.369023", + "longitude_deg": "-52.763246", + "elevation_ft": "1969", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Nonoaí", + "scheduled_service": "no", + "local_code": "RS0038", + "keywords": "SSNO, Armando Reginatto" + }, + { + "id": "30198", + "ident": "SSNP", + "type": "small_airport", + "name": "Nova Prata Airport", + "latitude_deg": "-28.802499771118164", + "longitude_deg": "-51.60419845581055", + "elevation_ft": "2264", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Nova Prata", + "scheduled_service": "no", + "gps_code": "SSNP", + "iata_code": "0" + }, + { + "id": "37585", + "ident": "SSNQ", + "type": "small_airport", + "name": "Nioaque Airport", + "latitude_deg": "-21.184722900390625", + "longitude_deg": "-55.83027648925781", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nioaque", + "scheduled_service": "no", + "gps_code": "SSNQ" + }, + { + "id": "37586", + "ident": "SSNR", + "type": "small_airport", + "name": "Fazenda Novo Horizonte Airport", + "latitude_deg": "-18.31861114501953", + "longitude_deg": "-54.93555450439453", + "elevation_ft": "754", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Coxim", + "scheduled_service": "no", + "gps_code": "SSNR" + }, + { + "id": "335548", + "ident": "SSNS", + "type": "small_airport", + "name": "Fazenda Pajuçara Airport", + "latitude_deg": "-13.183082", + "longitude_deg": "-45.104738", + "elevation_ft": "2372", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Correntina", + "scheduled_service": "no", + "gps_code": "SSNS", + "local_code": "BA0269" + }, + { + "id": "37587", + "ident": "SSNT", + "type": "small_airport", + "name": "Fazenda Rosa Mística Airport", + "latitude_deg": "-23.292499542236328", + "longitude_deg": "-55.05583190917969", + "elevation_ft": "1289", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Amambaí", + "scheduled_service": "no", + "gps_code": "SSNT" + }, + { + "id": "37588", + "ident": "SSNU", + "type": "small_airport", + "name": "Santa Isabel Airport", + "latitude_deg": "-22.240833282470703", + "longitude_deg": "-48.025001525878906", + "elevation_ft": "2582", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Brotas", + "scheduled_service": "no", + "gps_code": "SSNU" + }, + { + "id": "37589", + "ident": "SSNV", + "type": "small_airport", + "name": "Fazenda Novo Hamburgo Airport", + "latitude_deg": "-19.233055114746094", + "longitude_deg": "-57.029720306396484", + "elevation_ft": "285", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSNV" + }, + { + "id": "483", + "ident": "SSNW", + "type": "small_airport", + "name": "Aeródromo Fazenda Milano", + "latitude_deg": "-12.302778", + "longitude_deg": "-45.513889", + "elevation_ft": "2264", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Barreiras", + "scheduled_service": "no", + "gps_code": "SI4N", + "local_code": "BA0389", + "keywords": "SSNW, Fazenda Buriti" + }, + { + "id": "37590", + "ident": "SSNX", + "type": "heliport", + "name": "Fazenda da Toca Heliport", + "latitude_deg": "-22.213333129882812", + "longitude_deg": "-47.73666763305664", + "elevation_ft": "2572", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itirapina", + "scheduled_service": "no", + "gps_code": "SSNX" + }, + { + "id": "45593", + "ident": "SSNY", + "type": "small_airport", + "name": "Fazenda Florida Airport", + "latitude_deg": "-17.183611", + "longitude_deg": "-58.216667", + "elevation_ft": "541", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SSNY" + }, + { + "id": "37591", + "ident": "SSOA", + "type": "heliport", + "name": "Blue Tree Tower Faria Lima Heliport", + "latitude_deg": "-23.59055519104004", + "longitude_deg": "-46.68027877807617", + "elevation_ft": "2680", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SSOA" + }, + { + "id": "37592", + "ident": "SSOC", + "type": "small_airport", + "name": "Fazenda Sans Souci - Sede Airport", + "latitude_deg": "-19.03333282470703", + "longitude_deg": "-56.95000076293945", + "elevation_ft": "305", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSOC" + }, + { + "id": "37593", + "ident": "SSOD", + "type": "small_airport", + "name": "Fazenda Pouso Alegre Airport", + "latitude_deg": "-20.247777938842773", + "longitude_deg": "-56.415279388427734", + "elevation_ft": "374", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "SSOD" + }, + { + "id": "484", + "ident": "SSOE", + "type": "small_airport", + "name": "São Miguel do Oeste Airport", + "latitude_deg": "-26.781600952148438", + "longitude_deg": "-53.503501892089844", + "elevation_ft": "2180", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "São Miguel Do Oeste", + "scheduled_service": "no", + "gps_code": "SSOE", + "iata_code": "SQX", + "local_code": "SSOE" + }, + { + "id": "37594", + "ident": "SSOF", + "type": "small_airport", + "name": "Fazenda Vale da Serra Airport", + "latitude_deg": "-15.188888549804688", + "longitude_deg": "-43.53111267089844", + "elevation_ft": "1575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Monte Azul", + "scheduled_service": "no", + "gps_code": "SSOF" + }, + { + "id": "485", + "ident": "SSOG", + "type": "small_airport", + "name": "Arapongas Airport", + "latitude_deg": "-23.3529", + "longitude_deg": "-51.491699", + "elevation_ft": "2599", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Arapongas", + "scheduled_service": "no", + "gps_code": "SSOG", + "iata_code": "APX", + "local_code": "SSOG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arapongas_Airport" + }, + { + "id": "37595", + "ident": "SSOH", + "type": "heliport", + "name": "Cejen Heliport", + "latitude_deg": "-5.758889198303223", + "longitude_deg": "-35.19722366333008", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Natal", + "scheduled_service": "no", + "gps_code": "SSOH" + }, + { + "id": "37596", + "ident": "SSOI", + "type": "small_airport", + "name": "Pederneiras Airport", + "latitude_deg": "-22.307222366333008", + "longitude_deg": "-48.771942138671875", + "elevation_ft": "1788", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Pederneiras", + "scheduled_service": "no", + "gps_code": "SSOI" + }, + { + "id": "45583", + "ident": "SSOJ", + "type": "small_airport", + "name": "Fazenda Estrela Airport", + "latitude_deg": "-19.979167", + "longitude_deg": "-51.735", + "elevation_ft": "1509", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Inocência", + "scheduled_service": "no", + "gps_code": "SSOJ" + }, + { + "id": "37597", + "ident": "SSOK", + "type": "small_airport", + "name": "14 Bis Airport", + "latitude_deg": "-23.214166641200002", + "longitude_deg": "-51.185832977299995", + "elevation_ft": "1932", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Londrina", + "scheduled_service": "no", + "gps_code": "SSOK" + }, + { + "id": "486", + "ident": "SSOL", + "type": "small_airport", + "name": "Padre Israel Airport", + "latitude_deg": "-21.240601", + "longitude_deg": "-44.963902", + "elevation_ft": "3146", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Lavras", + "scheduled_service": "no", + "gps_code": "SSOL", + "iata_code": "VRZ", + "local_code": "MG0027", + "keywords": "Israel Batista de Carvalho" + }, + { + "id": "37598", + "ident": "SSOM", + "type": "heliport", + "name": "Hospital Estadual Walfredo Gurgel Heliport", + "latitude_deg": "-5.811110973358154", + "longitude_deg": "-35.204444885253906", + "elevation_ft": "56", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Natal", + "scheduled_service": "no", + "gps_code": "SSOM" + }, + { + "id": "37599", + "ident": "SSON", + "type": "small_airport", + "name": "Fazenda Joalice Airport", + "latitude_deg": "-23.787778854370117", + "longitude_deg": "-55.02916717529297", + "elevation_ft": "1476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Tacuru", + "scheduled_service": "no", + "gps_code": "SSON" + }, + { + "id": "37600", + "ident": "SSOO", + "type": "small_airport", + "name": "Estância J.D.S Airport", + "latitude_deg": "-22.337221145629883", + "longitude_deg": "-49.54305648803711", + "elevation_ft": "1903", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Fernão", + "scheduled_service": "no", + "gps_code": "SSOO" + }, + { + "id": "37601", + "ident": "SSOP", + "type": "small_airport", + "name": "Fazenda Cachoeirinha Airport", + "latitude_deg": "-20.043333053588867", + "longitude_deg": "-51.47472381591797", + "elevation_ft": "1539", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aparecida Do Taboado", + "scheduled_service": "no", + "gps_code": "SSOP" + }, + { + "id": "37602", + "ident": "SSOQ", + "type": "small_airport", + "name": "Fazenda Barranco Alto Airport", + "latitude_deg": "-19.577777862548828", + "longitude_deg": "-56.1522216796875", + "elevation_ft": "502", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SSOQ" + }, + { + "id": "37603", + "ident": "SSOR", + "type": "small_airport", + "name": "Chico Ledur Airport", + "latitude_deg": "-29.817701", + "longitude_deg": "-55.714634", + "elevation_ft": "381", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Alegrete", + "scheduled_service": "no", + "gps_code": "SSHD", + "local_code": "RS0096", + "keywords": "SSOR" + }, + { + "id": "37604", + "ident": "SSOS", + "type": "small_airport", + "name": "Osório Airport", + "latitude_deg": "-29.9022216796875", + "longitude_deg": "-50.25055694580078", + "elevation_ft": "39", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Osório", + "scheduled_service": "no", + "gps_code": "SSOS" + }, + { + "id": "37605", + "ident": "SSOT", + "type": "small_airport", + "name": "Fazenda Saco da Tapera Airport", + "latitude_deg": "-16.34694480895996", + "longitude_deg": "-45.34916687011719", + "elevation_ft": "1946", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "São Romão", + "scheduled_service": "no", + "gps_code": "SSOT" + }, + { + "id": "37606", + "ident": "SSOU", + "type": "small_airport", + "name": "Fazenda Inhumas Airport", + "latitude_deg": "-17.036942", + "longitude_deg": "-46.260277", + "elevation_ft": "1772", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Paracatu", + "scheduled_service": "no", + "keywords": "SSOU" + }, + { + "id": "37607", + "ident": "SSOV", + "type": "small_airport", + "name": "Fazenda Hora Airport", + "latitude_deg": "-16.14666748046875", + "longitude_deg": "-45.82500076293945", + "elevation_ft": "1837", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Urucuia", + "scheduled_service": "no", + "gps_code": "SSOV" + }, + { + "id": "45600", + "ident": "SSOW", + "type": "small_airport", + "name": "Comandante Carmelo Airport", + "latitude_deg": "-6.84", + "longitude_deg": "-56.586667", + "elevation_ft": "974", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Itaituba", + "scheduled_service": "no", + "gps_code": "SSOW" + }, + { + "id": "37608", + "ident": "SSOX", + "type": "heliport", + "name": "Aqualider Heliport", + "latitude_deg": "-8.443611145019531", + "longitude_deg": "-34.997501373291016", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Ipojuca", + "scheduled_service": "no", + "gps_code": "SSOX" + }, + { + "id": "46213", + "ident": "SSOY", + "type": "small_airport", + "name": "FazendaMorada do Sol Airport", + "latitude_deg": "-12.290556", + "longitude_deg": "-57.019444", + "elevation_ft": "971", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Maringá", + "scheduled_service": "no", + "gps_code": "SSOY", + "local_code": "SSOY" + }, + { + "id": "45580", + "ident": "SSOZ", + "type": "heliport", + "name": "Mina Brucutu Heliport", + "latitude_deg": "-19.86961", + "longitude_deg": "-43.395261", + "elevation_ft": "2959", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "São Gonçalo Do Rio Abaixo", + "scheduled_service": "no", + "gps_code": "SWYB", + "local_code": "MG0289", + "keywords": "SSOZ" + }, + { + "id": "334927", + "ident": "SSPA", + "type": "small_airport", + "name": "Fazenda Marajoara Airport", + "latitude_deg": "-11.963583", + "longitude_deg": "-49.038368", + "elevation_ft": "873", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Cariri do Tocantins", + "scheduled_service": "no", + "gps_code": "SSPA", + "local_code": "TO0057" + }, + { + "id": "487", + "ident": "SSPB", + "type": "small_airport", + "name": "Juvenal Loureiro Cardoso Airport", + "latitude_deg": "-26.217184", + "longitude_deg": "-52.694463", + "elevation_ft": "2697", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Pato Branco", + "scheduled_service": "yes", + "gps_code": "SBPO", + "iata_code": "PTO", + "local_code": "PR0018", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pato_Branco_Airport", + "keywords": "SSPB" + }, + { + "id": "45597", + "ident": "SSPC", + "type": "small_airport", + "name": "Fazenda Santa Júlia Airport", + "latitude_deg": "-13.731667", + "longitude_deg": "-51.34", + "elevation_ft": "866", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cocalinho", + "scheduled_service": "no", + "gps_code": "SSPC" + }, + { + "id": "46232", + "ident": "SSPD", + "type": "small_airport", + "name": "Fazenda Paraguá Airport", + "latitude_deg": "-14.766667", + "longitude_deg": "-60.033333", + "elevation_ft": "922", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SSPD", + "local_code": "SSPD" + }, + { + "id": "45590", + "ident": "SSPE", + "type": "small_airport", + "name": "Essência Retiro do Rio Cuiabá Airport", + "latitude_deg": "-14.435556", + "longitude_deg": "-55.609444", + "elevation_ft": "837", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nobres", + "scheduled_service": "no", + "gps_code": "SSPE" + }, + { + "id": "488", + "ident": "SSPF", + "type": "small_airport", + "name": "Fazenda São Rafael Airport", + "latitude_deg": "-24.769500732421875", + "longitude_deg": "-54.11869812011719", + "elevation_ft": "1420", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "São José Das Palmeiras", + "scheduled_service": "no", + "gps_code": "SSPF", + "local_code": "SSPF" + }, + { + "id": "489", + "ident": "SSPG", + "type": "small_airport", + "name": "Paranaguá Airport", + "latitude_deg": "-25.54010009765625", + "longitude_deg": "-48.53120040893555", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Paranaguá", + "scheduled_service": "no", + "gps_code": "SSPG", + "iata_code": "PNG", + "local_code": "SSPG" + }, + { + "id": "337146", + "ident": "SSPH", + "type": "small_airport", + "name": "Fazenda Santa Lucia Airport", + "latitude_deg": "-12.928641", + "longitude_deg": "-56.097017", + "elevation_ft": "1352", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Lucas do Rio Verde", + "scheduled_service": "no", + "gps_code": "SSPH", + "local_code": "MT0636" + }, + { + "id": "490", + "ident": "SSPI", + "type": "small_airport", + "name": "Paranavaí Airport", + "latitude_deg": "-23.08989906311035", + "longitude_deg": "-52.48849868774414", + "elevation_ft": "1526", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Paranavaí", + "scheduled_service": "no", + "gps_code": "SSPI", + "iata_code": "PVI", + "local_code": "SSPI" + }, + { + "id": "37609", + "ident": "SSPJ", + "type": "closed", + "name": "Fazenda Reserva Airport", + "latitude_deg": "-25.849569", + "longitude_deg": "-52.014685", + "elevation_ft": "3438", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Reserva Do Iguaçu", + "scheduled_service": "no", + "keywords": "SSPJ" + }, + { + "id": "491", + "ident": "SSPK", + "type": "small_airport", + "name": "Porecatu Airport", + "latitude_deg": "-22.778799057006836", + "longitude_deg": "-51.36140060424805", + "elevation_ft": "1424", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Porecatu", + "scheduled_service": "no", + "gps_code": "SSPK", + "local_code": "SSPK" + }, + { + "id": "492", + "ident": "SSPL", + "type": "small_airport", + "name": "Palmeira das Missões Airport", + "latitude_deg": "-27.9018001556", + "longitude_deg": "-53.32970047", + "elevation_ft": "2083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Palmeira Da Missões", + "scheduled_service": "no", + "gps_code": "SSPL", + "local_code": "SSPL" + }, + { + "id": "493", + "ident": "SSPM", + "type": "small_airport", + "name": "Porto Murtinho Airport", + "latitude_deg": "-21.7096004486084", + "longitude_deg": "-57.88019943237305", + "elevation_ft": "260", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Porto Murtinho", + "scheduled_service": "no", + "gps_code": "SSPM", + "local_code": "SSPM" + }, + { + "id": "494", + "ident": "SSPN", + "type": "small_airport", + "name": "Paranaíba Airport", + "latitude_deg": "-19.651199340820312", + "longitude_deg": "-51.19940185546875", + "elevation_ft": "1446", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Paranaíba", + "scheduled_service": "no", + "gps_code": "SSPN", + "iata_code": "PBB", + "local_code": "SSPN" + }, + { + "id": "37610", + "ident": "SSPO", + "type": "small_airport", + "name": "Aplicação Aviação Agrícola II Airport", + "latitude_deg": "-22.009166717499998", + "longitude_deg": "-54.789722442599995", + "elevation_ft": "1165", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Itaporã", + "scheduled_service": "no", + "gps_code": "SSPO" + }, + { + "id": "37611", + "ident": "SSPP", + "type": "small_airport", + "name": "Fazenda Palma Airport", + "latitude_deg": "-31.656944274900003", + "longitude_deg": "-52.2077789307", + "elevation_ft": "39", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Pelotas", + "scheduled_service": "no", + "gps_code": "SSPP" + }, + { + "id": "44568", + "ident": "SSPQ", + "type": "small_airport", + "name": "Santa Rosa do Purus Airport", + "latitude_deg": "-9.446646", + "longitude_deg": "-70.483364", + "elevation_ft": "751", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Santa Rosa do Purus", + "scheduled_service": "no", + "gps_code": "SSRA", + "local_code": "AC0011", + "keywords": "SSPQ" + }, + { + "id": "45563", + "ident": "SSPR", + "type": "small_airport", + "name": "Porto Walter Airport", + "latitude_deg": "-8.276196", + "longitude_deg": "-72.7458", + "elevation_ft": "651", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Porto Walter", + "scheduled_service": "no", + "gps_code": "SDL4", + "local_code": "AC0008", + "keywords": "SIRW, SSPR, SWPV" + }, + { + "id": "495", + "ident": "SSPS", + "type": "small_airport", + "name": "Palmas Airport", + "latitude_deg": "-26.472000122070312", + "longitude_deg": "-51.97589874267578", + "elevation_ft": "3609", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Palmas", + "scheduled_service": "no", + "gps_code": "SSPS", + "local_code": "SSPS" + }, + { + "id": "496", + "ident": "SSPT", + "type": "small_airport", + "name": "Palotina Airport", + "latitude_deg": "-24.343299865722656", + "longitude_deg": "-53.82870101928711", + "elevation_ft": "1220", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Palotina", + "scheduled_service": "no", + "gps_code": "SSPT", + "local_code": "SSPT" + }, + { + "id": "45562", + "ident": "SSPV", + "type": "small_airport", + "name": "Marechal Thaumaturgo Airport", + "latitude_deg": "-8.959443", + "longitude_deg": "-72.779721", + "elevation_ft": "751", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Marechal Thaumaturgo", + "scheduled_service": "no", + "gps_code": "SDP8", + "local_code": "AC0010", + "keywords": "SSMH, SSPV" + }, + { + "id": "45561", + "ident": "SSPX", + "type": "small_airport", + "name": "Manoel Urbano Airport", + "latitude_deg": "-8.8501", + "longitude_deg": "-69.260038", + "elevation_ft": "531", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Manoel Urbano", + "scheduled_service": "no", + "gps_code": "SIMB", + "local_code": "AC0007", + "keywords": "SSPX" + }, + { + "id": "37612", + "ident": "SSPY", + "type": "small_airport", + "name": "Porto Índio Airport", + "latitude_deg": "-17.672559", + "longitude_deg": "-57.748711", + "elevation_ft": "390", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSPY", + "local_code": "MS9001", + "home_link": "https://www.marinha.mil.br/com6dn/taxonomy/term/254" + }, + { + "id": "37613", + "ident": "SSPZ", + "type": "closed", + "name": "Fazenda Princesa do Sul Airport", + "latitude_deg": "-23.771099090576172", + "longitude_deg": "-54.677799224853516", + "elevation_ft": "1053", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Japoré", + "scheduled_service": "no", + "gps_code": "SSPZ" + }, + { + "id": "37614", + "ident": "SSQA", + "type": "small_airport", + "name": "Fazenda Guaporé Airport", + "latitude_deg": "-13.723055839538574", + "longitude_deg": "-60.315277099609375", + "elevation_ft": "830", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SSQA" + }, + { + "id": "45560", + "ident": "SSQB", + "type": "small_airport", + "name": "Jordão Airport", + "latitude_deg": "-9.189444", + "longitude_deg": "-71.946944", + "elevation_ft": "873", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Jordão", + "scheduled_service": "no", + "gps_code": "SJOD", + "local_code": "AC0009", + "keywords": "SSQB" + }, + { + "id": "497", + "ident": "SSQC", + "type": "small_airport", + "name": "Siqueira Campos Airport", + "latitude_deg": "-23.67449951171875", + "longitude_deg": "-49.815399169921875", + "elevation_ft": "2313", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Siqueira Campos", + "scheduled_service": "no", + "gps_code": "SSQC", + "local_code": "SSQC" + }, + { + "id": "37615", + "ident": "SSQD", + "type": "heliport", + "name": "Ilha do Cavaco Heliport", + "latitude_deg": "-23.013773", + "longitude_deg": "-44.267371", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SIVA", + "local_code": "RJ0092", + "keywords": "SSQD" + }, + { + "id": "37616", + "ident": "SSQE", + "type": "heliport", + "name": "TV Mundial I Heliport", + "latitude_deg": "-23.568056106567383", + "longitude_deg": "-46.70833206176758", + "elevation_ft": "2405", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SSQE" + }, + { + "id": "498", + "ident": "SSQF", + "type": "small_airport", + "name": "Fazenda Floresta Negra Airport", + "latitude_deg": "-23.815239", + "longitude_deg": "-54.698456", + "elevation_ft": "1263", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Sete Quedas", + "scheduled_service": "no", + "gps_code": "SWVY", + "local_code": "MS0399", + "keywords": "SSQF" + }, + { + "id": "37617", + "ident": "SSQG", + "type": "heliport", + "name": "Edifício Banespa Heliport", + "latitude_deg": "-23.545555114746094", + "longitude_deg": "-46.633609771728516", + "elevation_ft": "2674", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SSQG" + }, + { + "id": "37618", + "ident": "SSQH", + "type": "heliport", + "name": "Hospital Mater Dei Heliport", + "latitude_deg": "-19.927221298217773", + "longitude_deg": "-43.948890686035156", + "elevation_ft": "3054", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SSQH" + }, + { + "id": "46110", + "ident": "SSQI", + "type": "small_airport", + "name": "Santa Anastácia Airport", + "latitude_deg": "-12.509166666699999", + "longitude_deg": "-55.684722222199994", + "elevation_ft": "1250", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "gps_code": "SSQI", + "local_code": "SSQI" + }, + { + "id": "37619", + "ident": "SSQJ", + "type": "heliport", + "name": "Company Helipad", + "latitude_deg": "-23.572749", + "longitude_deg": "-46.703256", + "elevation_ft": "2536", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SI74", + "local_code": "SP1280", + "keywords": "SSQJ" + }, + { + "id": "37620", + "ident": "SSQK", + "type": "closed", + "name": "Viaoeste - Castelo III Heliport", + "latitude_deg": "-23.506069", + "longitude_deg": "-46.855314", + "elevation_ft": "2467", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "keywords": "SSQK" + }, + { + "id": "37621", + "ident": "SSQL", + "type": "small_airport", + "name": "Fazenda Matrichã Airport", + "latitude_deg": "-14.114289", + "longitude_deg": "-50.117869", + "elevation_ft": "3609", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Uirapuru", + "scheduled_service": "no", + "keywords": "SSQL" + }, + { + "id": "30468", + "ident": "SSQM", + "type": "small_airport", + "name": "Tanque Novo Airport", + "latitude_deg": "-13.54133", + "longitude_deg": "-42.475591", + "elevation_ft": "2464", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Tanque Novo", + "scheduled_service": "no", + "keywords": "SSQM" + }, + { + "id": "30172", + "ident": "SSQN", + "type": "small_airport", + "name": "Mundo Novo Airport", + "latitude_deg": "-11.770045", + "longitude_deg": "-40.419034", + "elevation_ft": "1788", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Mundo Novo", + "scheduled_service": "no", + "keywords": "SSQN" + }, + { + "id": "37622", + "ident": "SSQO", + "type": "small_airport", + "name": "Fazenda Itaporã Airport", + "latitude_deg": "-20.082778930664062", + "longitude_deg": "-53.88861083984375", + "elevation_ft": "1590", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas Do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SSQO" + }, + { + "id": "37623", + "ident": "SSQP", + "type": "small_airport", + "name": "Monte Santo Airport", + "latitude_deg": "-10.464823", + "longitude_deg": "-39.286476", + "elevation_ft": "1453", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Monte Santo", + "scheduled_service": "no", + "gps_code": "SSQP", + "local_code": "BA0061" + }, + { + "id": "37624", + "ident": "SSQQ", + "type": "closed", + "name": "Pedra do Sino Heliport", + "latitude_deg": "-20.899445", + "longitude_deg": "-43.818611", + "elevation_ft": "3596", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Carandaí", + "scheduled_service": "no", + "keywords": "SSQQ" + }, + { + "id": "45585", + "ident": "SSQR", + "type": "small_airport", + "name": "Fazenda Primavera Airport", + "latitude_deg": "-21.385867", + "longitude_deg": "-53.597493", + "elevation_ft": "1184", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SSQR", + "local_code": "MS0324" + }, + { + "id": "355778", + "ident": "SSQS", + "type": "small_airport", + "name": "Fazenda Brasil Airport", + "latitude_deg": "-15.032426", + "longitude_deg": "-52.310209", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra do Garças", + "scheduled_service": "no", + "gps_code": "SSQS", + "local_code": "MT0312" + }, + { + "id": "29761", + "ident": "SSQT", + "type": "small_airport", + "name": "Castro Airport", + "latitude_deg": "-24.807723", + "longitude_deg": "-49.959651", + "elevation_ft": "3314", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Castro", + "scheduled_service": "no", + "gps_code": "SSQT", + "local_code": "PR0013", + "keywords": "QAC, Major Neodo S. Pereira" + }, + { + "id": "37625", + "ident": "SSQU", + "type": "small_airport", + "name": "Fazenda Alegrete - Retiro Carabda Airport", + "latitude_deg": "-20.064722061157227", + "longitude_deg": "-55.70166778564453", + "elevation_ft": "410", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aquidauana", + "scheduled_service": "no", + "gps_code": "SSQU" + }, + { + "id": "37626", + "ident": "SSQV", + "type": "heliport", + "name": "UNICID - Universidade Cidade de São Paulo Heliport", + "latitude_deg": "-23.53583335876465", + "longitude_deg": "-46.559165954589844", + "elevation_ft": "2529", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SSQV" + }, + { + "id": "37627", + "ident": "SSQW", + "type": "heliport", + "name": "Royal Palm Plaza Heliport", + "latitude_deg": "-22.935556411743164", + "longitude_deg": "-47.0716667175293", + "elevation_ft": "2457", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campinas", + "scheduled_service": "no", + "gps_code": "SSQW" + }, + { + "id": "37628", + "ident": "SSQX", + "type": "heliport", + "name": "Frei Caneca Shopping Heliport", + "latitude_deg": "-23.553611755371094", + "longitude_deg": "-46.65250015258789", + "elevation_ft": "2713", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SSQX" + }, + { + "id": "37629", + "ident": "SSQY", + "type": "heliport", + "name": "Centro Empresarial de São Paulo Heliport", + "latitude_deg": "-23.648889541625977", + "longitude_deg": "-46.72944259643555", + "elevation_ft": "2503", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SSQY" + }, + { + "id": "499", + "ident": "SSQZ", + "type": "small_airport", + "name": "Mimoso do Oeste Airport", + "latitude_deg": "-12.106389", + "longitude_deg": "-45.895", + "elevation_ft": "2543", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Luíz Eduardo Magalhães", + "scheduled_service": "no", + "gps_code": "SSQZ", + "local_code": "BA0033" + }, + { + "id": "37630", + "ident": "SSRA", + "type": "small_airport", + "name": "Fazenda Rancho Belo Airport", + "latitude_deg": "-21.708332061767578", + "longitude_deg": "-53.09944534301758", + "elevation_ft": "1384", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Andradina", + "scheduled_service": "no", + "gps_code": "SSRA" + }, + { + "id": "37631", + "ident": "SSRB", + "type": "small_airport", + "name": "Rio Brilhante Airport", + "latitude_deg": "-21.8477783203125", + "longitude_deg": "-54.52777862548828", + "elevation_ft": "1024", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Brilhante", + "scheduled_service": "no", + "gps_code": "SSRB" + }, + { + "id": "37632", + "ident": "SSRC", + "type": "small_airport", + "name": "Fazenda Santa Inês Airport", + "latitude_deg": "-21.70305633544922", + "longitude_deg": "-54.36833190917969", + "elevation_ft": "1084", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Brilhante", + "scheduled_service": "no", + "gps_code": "SSRC" + }, + { + "id": "37633", + "ident": "SSRD", + "type": "small_airport", + "name": "Fazenda Sol Nascente Airport", + "latitude_deg": "-23.397499084472656", + "longitude_deg": "-55.24833297729492", + "elevation_ft": "1443", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Tacuru", + "scheduled_service": "no", + "gps_code": "SSRD" + }, + { + "id": "500", + "ident": "SSRE", + "type": "small_airport", + "name": "Realeza Airport", + "latitude_deg": "-25.80120086669922", + "longitude_deg": "-53.512699127197266", + "elevation_ft": "1693", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Realeza", + "scheduled_service": "no", + "gps_code": "SSRE", + "local_code": "SSRE" + }, + { + "id": "501", + "ident": "SSRF", + "type": "small_airport", + "name": "Castro Alves Airport", + "latitude_deg": "-12.765700340270996", + "longitude_deg": "-39.44670104980469", + "elevation_ft": "869", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Castro Alves", + "scheduled_service": "no", + "gps_code": "SSRF", + "local_code": "SSRF" + }, + { + "id": "37634", + "ident": "SSRG", + "type": "small_airport", + "name": "Fazenda Rancho Grande Airport", + "latitude_deg": "-22.77666664123535", + "longitude_deg": "-54.97666549682617", + "elevation_ft": "1319", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Laguna Carapã", + "scheduled_service": "no", + "gps_code": "SSRG" + }, + { + "id": "37635", + "ident": "SSRH", + "type": "small_airport", + "name": "Fazenda Retiro do Marimbondo Airport", + "latitude_deg": "-20.77805519104004", + "longitude_deg": "-55.9827766418457", + "elevation_ft": "577", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Anastácio", + "scheduled_service": "no", + "gps_code": "SSRH" + }, + { + "id": "37636", + "ident": "SSRI", + "type": "small_airport", + "name": "Fazenda Dos Sonhos Airport", + "latitude_deg": "-20.762013", + "longitude_deg": "-56.032548", + "elevation_ft": "551", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Anastácio", + "scheduled_service": "no", + "gps_code": "SIFS", + "local_code": "MS0083", + "keywords": "SSRI" + }, + { + "id": "37637", + "ident": "SSRJ", + "type": "small_airport", + "name": "Fazenda Jequitibá Airport", + "latitude_deg": "-21.878395", + "longitude_deg": "-53.815477", + "elevation_ft": "1181", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Alvorada do Sul", + "scheduled_service": "no", + "gps_code": "SJQB", + "local_code": "MS0180", + "keywords": "SSRJ" + }, + { + "id": "502", + "ident": "SSRK", + "type": "small_airport", + "name": "Campo Alegre de Lourdes Airport", + "latitude_deg": "-9.513910293579102", + "longitude_deg": "-42.99509811401367", + "elevation_ft": "1519", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Campo Alegre De Lourdes", + "scheduled_service": "no", + "gps_code": "SSRK", + "local_code": "SSRK" + }, + { + "id": "37638", + "ident": "SSRL", + "type": "small_airport", + "name": "Fazenda Santa Ana Airport", + "latitude_deg": "-22.037221908569336", + "longitude_deg": "-54.18888854980469", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Deodápolis", + "scheduled_service": "no", + "gps_code": "SSRL" + }, + { + "id": "37639", + "ident": "SSRM", + "type": "small_airport", + "name": "Fazenda São Sebastião Airport", + "latitude_deg": "-21.019444", + "longitude_deg": "-56.276112", + "elevation_ft": "791", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bonito", + "scheduled_service": "no", + "gps_code": "SD2R", + "local_code": "MS0535", + "keywords": "SNWB, SSRM" + }, + { + "id": "37640", + "ident": "SSRN", + "type": "small_airport", + "name": "Aeroclube de Rio Negrinho Airport", + "latitude_deg": "-26.321385", + "longitude_deg": "-49.521372", + "elevation_ft": "3025", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Rio Negrinho", + "scheduled_service": "no", + "gps_code": "SILN", + "local_code": "SC0028", + "keywords": "SSRN" + }, + { + "id": "37641", + "ident": "SSRO", + "type": "small_airport", + "name": "Fazenda Santa Rosa Airport", + "latitude_deg": "-22.891666412353516", + "longitude_deg": "-54.116943359375", + "elevation_ft": "1217", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Naviraí", + "scheduled_service": "no", + "gps_code": "SSRO" + }, + { + "id": "37642", + "ident": "SSRP", + "type": "heliport", + "name": "Vitrotec Heliport", + "latitude_deg": "-23.200000762939453", + "longitude_deg": "-46.78333282470703", + "elevation_ft": "2559", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Campo Limpo Paulista", + "scheduled_service": "no", + "gps_code": "SSRP" + }, + { + "id": "37643", + "ident": "SSRQ", + "type": "small_airport", + "name": "Refúgio Airport", + "latitude_deg": "-30.919166564941406", + "longitude_deg": "-54.467777252197266", + "elevation_ft": "709", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Dom Pedrito", + "scheduled_service": "no", + "gps_code": "SSRQ" + }, + { + "id": "37644", + "ident": "SSRS", + "type": "small_airport", + "name": "Rancho Sumidor Airport", + "latitude_deg": "-27.19232", + "longitude_deg": "-49.832029", + "elevation_ft": "1476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Pouso Redondo", + "scheduled_service": "no", + "gps_code": "SNZB", + "local_code": "SC0036", + "keywords": "SSRS" + }, + { + "id": "37645", + "ident": "SSRT", + "type": "small_airport", + "name": "Fazenda Mangal Airport", + "latitude_deg": "-1.541388988494873", + "longitude_deg": "-55.18055725097656", + "elevation_ft": "289", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Curuá", + "scheduled_service": "no", + "gps_code": "SSRT" + }, + { + "id": "30393", + "ident": "SSRU", + "type": "small_airport", + "name": "São Lourenço do Sul Airport", + "latitude_deg": "-31.38330078125", + "longitude_deg": "-52.032798767089844", + "elevation_ft": "28", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "São Lourenço Do Sul", + "scheduled_service": "no", + "gps_code": "SSRU", + "iata_code": "SQY" + }, + { + "id": "37646", + "ident": "SSRX", + "type": "small_airport", + "name": "Fazenda Marruá Airport", + "latitude_deg": "-12.779999732971191", + "longitude_deg": "-51.11277770996094", + "elevation_ft": "591", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Ribeirão Cascalheira", + "scheduled_service": "no", + "gps_code": "SSRX" + }, + { + "id": "37647", + "ident": "SSRY", + "type": "small_airport", + "name": "Rio Pardo Airport", + "latitude_deg": "-29.9727783203125", + "longitude_deg": "-52.36111068725586", + "elevation_ft": "230", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Rio Pardo", + "scheduled_service": "no", + "gps_code": "SSRY" + }, + { + "id": "37648", + "ident": "SSRZ", + "type": "small_airport", + "name": "Rosário do Sul Airport", + "latitude_deg": "-30.27750015258789", + "longitude_deg": "-54.92527770996094", + "elevation_ft": "348", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Rosário Do Sul", + "scheduled_service": "no", + "gps_code": "SSRZ" + }, + { + "id": "314920", + "ident": "SSS", + "type": "small_airport", + "name": "Siassi Airport", + "latitude_deg": "-5.5965", + "longitude_deg": "147.8106", + "elevation_ft": "1250", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Siassi", + "scheduled_service": "no", + "iata_code": "SSS", + "local_code": "SSI", + "keywords": "Sema, Semo" + }, + { + "id": "37649", + "ident": "SSSA", + "type": "small_airport", + "name": "Fazenda Sant`anna do Apa Airport", + "latitude_deg": "-22.02666664123535", + "longitude_deg": "-56.19361114501953", + "elevation_ft": "1047", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bela Vista", + "scheduled_service": "no", + "gps_code": "SSSA" + }, + { + "id": "503", + "ident": "SSSB", + "type": "small_airport", + "name": "São Borja Airport", + "latitude_deg": "-28.6549", + "longitude_deg": "-56.034599", + "elevation_ft": "246", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "São Borja", + "scheduled_service": "no", + "gps_code": "SSSB", + "iata_code": "JBS", + "local_code": "SSSB" + }, + { + "id": "504", + "ident": "SSSC", + "type": "small_airport", + "name": "Santa Cruz do Sul Airport", + "latitude_deg": "-29.684099197387695", + "longitude_deg": "-52.412200927734375", + "elevation_ft": "646", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Santa Cruz Do Sul", + "scheduled_service": "no", + "gps_code": "SSSC", + "iata_code": "CSU", + "local_code": "SSSC" + }, + { + "id": "30426", + "ident": "SSSD", + "type": "small_airport", + "name": "Soledade Airport", + "latitude_deg": "-28.863100051879883", + "longitude_deg": "-52.54059982299805", + "elevation_ft": "2165", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Soledade", + "scheduled_service": "no", + "gps_code": "SSSD", + "iata_code": "0" + }, + { + "id": "37650", + "ident": "SSSE", + "type": "heliport", + "name": "Jihad Dehaini Heliport", + "latitude_deg": "-25.57666778564453", + "longitude_deg": "-49.393611907958984", + "elevation_ft": "2972", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Araucária", + "scheduled_service": "no", + "gps_code": "SSSE" + }, + { + "id": "505", + "ident": "SSSF", + "type": "closed", + "name": "Fazenda San Marino Airport", + "latitude_deg": "-20.10219955444336", + "longitude_deg": "-52.44390106201172", + "elevation_ft": "1476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Tres Lagoas", + "scheduled_service": "no", + "gps_code": "SSSF", + "local_code": "SSSF" + }, + { + "id": "30391", + "ident": "SSSG", + "type": "small_airport", + "name": "São Gabriel Airport", + "latitude_deg": "-30.344999313354492", + "longitude_deg": "-54.267799377441406", + "elevation_ft": "472", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "São Gabriel", + "scheduled_service": "no", + "gps_code": "SSSG", + "iata_code": "0" + }, + { + "id": "37651", + "ident": "SSSH", + "type": "small_airport", + "name": "Fazenda Santo Inácio Airport", + "latitude_deg": "-19.199167251586914", + "longitude_deg": "-57.011112213134766", + "elevation_ft": "275", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSSH" + }, + { + "id": "335050", + "ident": "SSSI", + "type": "small_airport", + "name": "Fazenda Manto Verde Airport", + "latitude_deg": "-7.868144", + "longitude_deg": "-45.01548", + "elevation_ft": "1450", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Baixa Grande do Ribeiro", + "scheduled_service": "no", + "gps_code": "SSSI", + "local_code": "PI0054" + }, + { + "id": "44716", + "ident": "SSSN", + "type": "heliport", + "name": "do Açu Heliport", + "latitude_deg": "-21.7992000579834", + "longitude_deg": "-41.01890182495117", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "São João Da Barra", + "scheduled_service": "no", + "gps_code": "SSSN" + }, + { + "id": "37652", + "ident": "SSSO", + "type": "small_airport", + "name": "Fazenda São José I Airport", + "latitude_deg": "-21.412791", + "longitude_deg": "-52.032259", + "elevation_ft": "971", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Brasilândia", + "scheduled_service": "no", + "gps_code": "SDM4", + "local_code": "MS0586", + "keywords": "SSSO, Fazenda Santa Odila" + }, + { + "id": "37653", + "ident": "SSSP", + "type": "small_airport", + "name": "Fazenda Santa Delfina Airport", + "latitude_deg": "-20.0402774810791", + "longitude_deg": "-56.310001373291016", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "SSSP" + }, + { + "id": "30392", + "ident": "SSSQ", + "type": "small_airport", + "name": "Ismael Nunes Airport", + "latitude_deg": "-28.245505", + "longitude_deg": "-49.897702", + "elevation_ft": "4462", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "São Joaquim", + "scheduled_service": "no", + "local_code": "SC0020", + "keywords": "SSSQ" + }, + { + "id": "37654", + "ident": "SSSR", + "type": "small_airport", + "name": "Fazenda Santa Rosa Airport", + "latitude_deg": "-20.316389083862305", + "longitude_deg": "-52.733333587646484", + "elevation_ft": "1476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Água Clara", + "scheduled_service": "no", + "gps_code": "SSSR" + }, + { + "id": "37655", + "ident": "SSSS", + "type": "small_airport", + "name": "São Francisco do Sul Airport", + "latitude_deg": "-26.221111297607422", + "longitude_deg": "-48.56444549560547", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "São Francisco Do Sul", + "scheduled_service": "no", + "gps_code": "SSSS" + }, + { + "id": "37656", + "ident": "SSST", + "type": "small_airport", + "name": "Santiago Airport", + "latitude_deg": "-29.21500015258789", + "longitude_deg": "-54.842220306396484", + "elevation_ft": "1460", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Santiago", + "scheduled_service": "no", + "gps_code": "SSST" + }, + { + "id": "335501", + "ident": "SSSV", + "type": "small_airport", + "name": "Fazenda Palmitos Airport", + "latitude_deg": "-13.820338", + "longitude_deg": "-54.755788", + "elevation_ft": "1824", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Ubiratã", + "scheduled_service": "no", + "gps_code": "SSSV", + "local_code": "MT0510" + }, + { + "id": "37657", + "ident": "SSSW", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-19.722091", + "longitude_deg": "-51.950343", + "elevation_ft": "1460", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Inocência", + "scheduled_service": "no", + "gps_code": "SWXL", + "local_code": "MS0401", + "keywords": "SSSW" + }, + { + "id": "37658", + "ident": "SSSX", + "type": "small_airport", + "name": "Fazenda Sans Souci - Retiro Mutum Airport", + "latitude_deg": "-18.933332443237305", + "longitude_deg": "-57.016666412353516", + "elevation_ft": "300", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSSX" + }, + { + "id": "37659", + "ident": "SSSY", + "type": "small_airport", + "name": "Fazenda Silvana Airport", + "latitude_deg": "-22.516666412353516", + "longitude_deg": "-53.51166534423828", + "elevation_ft": "781", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nova Andradina", + "scheduled_service": "no", + "gps_code": "SSSY" + }, + { + "id": "30409", + "ident": "SSSZ", + "type": "small_airport", + "name": "Sertanópolis Airport", + "latitude_deg": "-23.06220054626465", + "longitude_deg": "-51.01390075683594", + "elevation_ft": "1181", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Sertanópolis", + "scheduled_service": "no", + "gps_code": "SSSZ", + "iata_code": "0" + }, + { + "id": "37660", + "ident": "SSTA", + "type": "small_airport", + "name": "Santa Maria Airport", + "latitude_deg": "-30.245832443237305", + "longitude_deg": "-54.80083465576172", + "elevation_ft": "709", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "São Gabriel", + "scheduled_service": "no", + "gps_code": "SSTA" + }, + { + "id": "506", + "ident": "SSTB", + "type": "small_airport", + "name": "Três Barras Airport", + "latitude_deg": "-26.135799407958984", + "longitude_deg": "-50.3109016418457", + "elevation_ft": "2559", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Três Barras", + "scheduled_service": "no", + "gps_code": "SSTB", + "local_code": "SSTB" + }, + { + "id": "37661", + "ident": "SSTC", + "type": "heliport", + "name": "Copesul Heliport", + "latitude_deg": "-29.882778167699996", + "longitude_deg": "-51.381111145", + "elevation_ft": "92", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Triunfo", + "scheduled_service": "no", + "gps_code": "SSTC" + }, + { + "id": "37662", + "ident": "SSTD", + "type": "small_airport", + "name": "Fazenda Arco de Canto Airport", + "latitude_deg": "-28.550832748413086", + "longitude_deg": "-51.59611129760742", + "elevation_ft": "2311", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "André Da Rocha", + "scheduled_service": "no", + "gps_code": "SSTD" + }, + { + "id": "37663", + "ident": "SSTF", + "type": "small_airport", + "name": "Fazenda Triunfo Airport", + "latitude_deg": "-17.872499465942383", + "longitude_deg": "-57.130001068115234", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSTF" + }, + { + "id": "37664", + "ident": "SSTG", + "type": "small_airport", + "name": "Fazenda Santa Terezinha Airport", + "latitude_deg": "-18.469444274902344", + "longitude_deg": "-57.05500030517578", + "elevation_ft": "525", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSTG" + }, + { + "id": "507", + "ident": "SSTH", + "type": "small_airport", + "name": "Fazenda Thália Airport", + "latitude_deg": "-25.520223", + "longitude_deg": "-49.682472", + "elevation_ft": "3346", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Balsa Nova", + "scheduled_service": "no", + "gps_code": "SDUE", + "local_code": "PR0040", + "keywords": "SSTH" + }, + { + "id": "45603", + "ident": "SSTI", + "type": "small_airport", + "name": "Arraial d`Ajuda Airport", + "latitude_deg": "-16.457778", + "longitude_deg": "-39.165833", + "elevation_ft": "279", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Porto Seguro", + "scheduled_service": "no", + "gps_code": "SSTI" + }, + { + "id": "37665", + "ident": "SSTJ", + "type": "small_airport", + "name": "Walter Ewaldo Siegel Airport", + "latitude_deg": "-27.3491668701", + "longitude_deg": "-49.818611145", + "elevation_ft": "1322", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Trombudo Central", + "scheduled_service": "no", + "gps_code": "SSTJ" + }, + { + "id": "37666", + "ident": "SSTK", + "type": "small_airport", + "name": "Fazenda União de Iguatemi Airport", + "latitude_deg": "-23.682777404785156", + "longitude_deg": "-54.53972244262695", + "elevation_ft": "794", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Iguatemi", + "scheduled_service": "no", + "gps_code": "SSTK" + }, + { + "id": "508", + "ident": "SSTL", + "type": "small_airport", + "name": "Plínio Alarcom Airport", + "latitude_deg": "-20.752643", + "longitude_deg": "-51.682026", + "elevation_ft": "1063", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Três Lagoas", + "scheduled_service": "yes", + "gps_code": "SBTG", + "iata_code": "TJL", + "local_code": "MS0006", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tr%C3%AAs_Lagoas_Airport", + "keywords": "SSTL, Três Lagoas Airport" + }, + { + "id": "37667", + "ident": "SSTN", + "type": "small_airport", + "name": "Alberto Bertelli Airport", + "latitude_deg": "-21.678611755371094", + "longitude_deg": "-48.211944580078125", + "elevation_ft": "2283", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Araraquara", + "scheduled_service": "no", + "gps_code": "SSTN" + }, + { + "id": "30492", + "ident": "SSTO", + "type": "small_airport", + "name": "Três Passos Airport", + "latitude_deg": "-27.512500762939453", + "longitude_deg": "-53.89830017089844", + "elevation_ft": "1503", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Três Passos", + "scheduled_service": "no", + "gps_code": "SSTO", + "iata_code": "0" + }, + { + "id": "45569", + "ident": "SSTP", + "type": "small_airport", + "name": "Fazenda Baessa Airport", + "latitude_deg": "-17.970833", + "longitude_deg": "-50.320556", + "elevation_ft": "1591", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Turvelândia", + "scheduled_service": "no", + "gps_code": "SSTP" + }, + { + "id": "45565", + "ident": "SSTQ", + "type": "small_airport", + "name": "Silvestre Airport", + "latitude_deg": "0.886389", + "longitude_deg": "-51.879444", + "elevation_ft": "459", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Pedra Branca Do Amapari", + "scheduled_service": "no", + "gps_code": "SSTQ" + }, + { + "id": "335052", + "ident": "SSTR", + "type": "small_airport", + "name": "Usina CEM Airport", + "latitude_deg": "-17.93653", + "longitude_deg": "-49.24176", + "elevation_ft": "2805", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Morrinhos", + "scheduled_service": "no", + "gps_code": "SSTR", + "local_code": "GO0193" + }, + { + "id": "37668", + "ident": "SSTS", + "type": "small_airport", + "name": "Fazenda Bandeirantes Airport", + "latitude_deg": "-22.610683", + "longitude_deg": "-53.444055", + "elevation_ft": "813", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Taquarussu", + "scheduled_service": "no", + "gps_code": "SWDR", + "local_code": "MS0369", + "keywords": "SSTS" + }, + { + "id": "45604", + "ident": "SSTT", + "type": "heliport", + "name": "Lemon Hotel Heliport", + "latitude_deg": "-8.074722", + "longitude_deg": "-34.905278", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Recife", + "scheduled_service": "no", + "gps_code": "SSTT" + }, + { + "id": "37669", + "ident": "SSTU", + "type": "small_airport", + "name": "Fazenda Jauru Airport", + "latitude_deg": "-18.729999542236328", + "longitude_deg": "-54.10499954223633", + "elevation_ft": "1250", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Camapuã", + "scheduled_service": "no", + "gps_code": "SSTU" + }, + { + "id": "337259", + "ident": "SSTV", + "type": "small_airport", + "name": "Fazenda Diamantino Airport", + "latitude_deg": "-12.120698", + "longitude_deg": "-55.40103", + "elevation_ft": "1227", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sinop", + "scheduled_service": "no", + "gps_code": "SSTV", + "local_code": "MT0584" + }, + { + "id": "343535", + "ident": "SSTW", + "type": "small_airport", + "name": "Quissamã Airstrip", + "latitude_deg": "-22.059444", + "longitude_deg": "-41.481111", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Quissamã", + "scheduled_service": "no", + "gps_code": "SSTW", + "local_code": "RJ0191" + }, + { + "id": "37670", + "ident": "SSTY", + "type": "small_airport", + "name": "Usina Foz do Chopim Airport", + "latitude_deg": "-25.5625", + "longitude_deg": "-53.176944732666016", + "elevation_ft": "1640", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Cruzeiro Do Iguaçu", + "scheduled_service": "no", + "gps_code": "SSTY" + }, + { + "id": "37671", + "ident": "SSTZ", + "type": "heliport", + "name": "SBC Trans Heliport", + "latitude_deg": "-23.698610305786133", + "longitude_deg": "-46.55277633666992", + "elevation_ft": "2523", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Bernardo Do Campo", + "scheduled_service": "no", + "gps_code": "SSTZ" + }, + { + "id": "314921", + "ident": "SSU", + "type": "closed", + "name": "Greenbrier Airport", + "latitude_deg": "37.775", + "longitude_deg": "-80.336", + "elevation_ft": "1795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "White Sulphur Springs", + "scheduled_service": "no", + "iata_code": "SSU" + }, + { + "id": "37672", + "ident": "SSUA", + "type": "small_airport", + "name": "Fazenda Sonora Estância Airport", + "latitude_deg": "-17.63111114501953", + "longitude_deg": "-54.77000045776367", + "elevation_ft": "1575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Sonora", + "scheduled_service": "no", + "gps_code": "SSUA" + }, + { + "id": "37673", + "ident": "SSUC", + "type": "small_airport", + "name": "Fazenda Aurora II Airport", + "latitude_deg": "-21.491111755371094", + "longitude_deg": "-53.203887939453125", + "elevation_ft": "1194", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas Do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SSUC" + }, + { + "id": "37674", + "ident": "SSUD", + "type": "heliport", + "name": "Bom dia Café Heliport", + "latitude_deg": "-21.59694480895996", + "longitude_deg": "-45.43777847290039", + "elevation_ft": "3107", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Varginha", + "scheduled_service": "no", + "gps_code": "SSUD" + }, + { + "id": "37675", + "ident": "SSUE", + "type": "heliport", + "name": "Fazenda Cachoeirão Heliport", + "latitude_deg": "-21.950826", + "longitude_deg": "-42.900292", + "elevation_ft": "1286", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Além Paraíba", + "scheduled_service": "no", + "keywords": "SSUE" + }, + { + "id": "334933", + "ident": "SSUF", + "type": "heliport", + "name": "Rede D'Or São Luiz Anália Franco Helipad", + "latitude_deg": "-23.54891", + "longitude_deg": "-46.558315", + "elevation_ft": "2694", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SSUF", + "local_code": "SP0884" + }, + { + "id": "37676", + "ident": "SSUG", + "type": "heliport", + "name": "Da Aurora Heliport", + "latitude_deg": "-21.460757", + "longitude_deg": "-42.698064", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Leopoldina", + "scheduled_service": "no", + "gps_code": "SNOY", + "local_code": "MG0300", + "keywords": "SSUG" + }, + { + "id": "37677", + "ident": "SSUH", + "type": "heliport", + "name": "Porto Frade Heliport", + "latitude_deg": "-22.969999", + "longitude_deg": "-44.444443", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Angra Dos Reis", + "scheduled_service": "no", + "gps_code": "SNFD", + "local_code": "RJ0128", + "keywords": "SSUH" + }, + { + "id": "430303", + "ident": "SSUI", + "type": "small_airport", + "name": "Fazenda Novo Horizonte Airport", + "latitude_deg": "-7.096976", + "longitude_deg": "-48.760541", + "elevation_ft": "607", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Santa Fé do Araguaia", + "scheduled_service": "no", + "gps_code": "SSUI", + "local_code": "TO0040" + }, + { + "id": "37678", + "ident": "SSUJ", + "type": "heliport", + "name": "Estrada do Iate Clube Heliport", + "latitude_deg": "-23.607221603393555", + "longitude_deg": "-47.263057708740234", + "elevation_ft": "2897", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Mairinque", + "scheduled_service": "no", + "gps_code": "SSUJ" + }, + { + "id": "37679", + "ident": "SSUK", + "type": "heliport", + "name": "ITC Heliport", + "latitude_deg": "-23.594932", + "longitude_deg": "-46.687667", + "elevation_ft": "2625", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SSUK" + }, + { + "id": "37680", + "ident": "SSUL", + "type": "small_airport", + "name": "Ultraleve Clube Curitiba Airport", + "latitude_deg": "-25.4769439697", + "longitude_deg": "-49.154167175299996", + "elevation_ft": "3215", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "São José Dos Pinhais", + "scheduled_service": "no", + "gps_code": "SSUL" + }, + { + "id": "509", + "ident": "SSUM", + "type": "small_airport", + "name": "Orlando de Carvalho Airport", + "latitude_deg": "-23.7987", + "longitude_deg": "-53.313801", + "elevation_ft": "1552", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Umuarama", + "scheduled_service": "yes", + "gps_code": "SSUM", + "iata_code": "UMU", + "local_code": "PR0019", + "wikipedia_link": "https://en.wikipedia.org/wiki/Umuarama_Airport" + }, + { + "id": "37681", + "ident": "SSUN", + "type": "heliport", + "name": "Terminal Petrobrás - Guarulhos Heliport", + "latitude_deg": "-23.470277786254883", + "longitude_deg": "-46.44694519042969", + "elevation_ft": "2474", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guarulhos", + "scheduled_service": "no", + "gps_code": "SSUN" + }, + { + "id": "37682", + "ident": "SSUO", + "type": "heliport", + "name": "Unifly Heliport", + "latitude_deg": "-23.4086112976", + "longitude_deg": "-46.330554962200004", + "elevation_ft": "2641", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Arujá", + "scheduled_service": "no", + "gps_code": "SSUO", + "iata_code": "ZFU" + }, + { + "id": "37683", + "ident": "SSUP", + "type": "heliport", + "name": "Hospital Santa Joana Heliport", + "latitude_deg": "-8.051667213439941", + "longitude_deg": "-34.89805603027344", + "elevation_ft": "135", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Recife", + "scheduled_service": "no", + "gps_code": "SSUP" + }, + { + "id": "37684", + "ident": "SSUQ", + "type": "small_airport", + "name": "Fazenda Santa Olinda Airport", + "latitude_deg": "-20.7549991607666", + "longitude_deg": "-55.043331146240234", + "elevation_ft": "915", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Sidrolândia", + "scheduled_service": "no", + "gps_code": "SSUQ" + }, + { + "id": "37685", + "ident": "SSUR", + "type": "small_airport", + "name": "Fazenda Água Branca Airport", + "latitude_deg": "-21.5836105347", + "longitude_deg": "-52.8722229004", + "elevation_ft": "1264", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Santa Rita Do Pardo", + "scheduled_service": "no", + "gps_code": "SSUR" + }, + { + "id": "37686", + "ident": "SSUT", + "type": "small_airport", + "name": "Fazenda Agrofel Airport", + "latitude_deg": "-14.444443702697754", + "longitude_deg": "-58.29777908325195", + "elevation_ft": "705", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tangará Da Serra", + "scheduled_service": "no", + "gps_code": "SSUT" + }, + { + "id": "37687", + "ident": "SSUU", + "type": "small_airport", + "name": "Fazenda Colorado Airport", + "latitude_deg": "-10.741666793823242", + "longitude_deg": "-49.47999954223633", + "elevation_ft": "761", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Lagoa Da Confusão", + "scheduled_service": "no", + "gps_code": "SSUU" + }, + { + "id": "510", + "ident": "SSUV", + "type": "small_airport", + "name": "União da Vitória Airport", + "latitude_deg": "-26.2334", + "longitude_deg": "-51.067797", + "elevation_ft": "2467", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "União Da Vitória", + "scheduled_service": "no", + "gps_code": "SSUV", + "local_code": "SSUV", + "keywords": "QVB" + }, + { + "id": "336868", + "ident": "SSUW", + "type": "small_airport", + "name": "Fazenda Palmeiras Airport", + "latitude_deg": "-22.775956", + "longitude_deg": "-51.505539", + "elevation_ft": "1470", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Centenário do Sul", + "scheduled_service": "no", + "gps_code": "SSUW", + "local_code": "PR0092" + }, + { + "id": "30510", + "ident": "SSUX", + "type": "small_airport", + "name": "Usina Mandu Airport", + "latitude_deg": "-20.483834", + "longitude_deg": "-48.373594", + "elevation_ft": "1597", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Guaíra", + "scheduled_service": "no", + "keywords": "SSUX" + }, + { + "id": "511", + "ident": "SSUY", + "type": "small_airport", + "name": "Fazenda Menina Airport", + "latitude_deg": "-20.640499", + "longitude_deg": "-51.476898", + "elevation_ft": "1115", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itapura", + "scheduled_service": "no", + "gps_code": "SSUK", + "local_code": "SP0258", + "keywords": "SSUY" + }, + { + "id": "37688", + "ident": "SSUZ", + "type": "small_airport", + "name": "Fazenda Vista Alegre Airport", + "latitude_deg": "-20.661666870117188", + "longitude_deg": "-50.84166717529297", + "elevation_ft": "1322", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sud Menucci", + "scheduled_service": "no", + "gps_code": "SSUZ" + }, + { + "id": "314924", + "ident": "SSV", + "type": "closed", + "name": "Siasi Airport", + "latitude_deg": "5.566779", + "longitude_deg": "120.841627", + "elevation_ft": "170", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-SLU", + "municipality": "Siasi", + "scheduled_service": "no", + "iata_code": "SSV" + }, + { + "id": "37689", + "ident": "SSVA", + "type": "small_airport", + "name": "Fazenda Visa Estância Airport", + "latitude_deg": "-19.0625", + "longitude_deg": "-57.62916564941406", + "elevation_ft": "805", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ladário", + "scheduled_service": "no", + "gps_code": "SSVA" + }, + { + "id": "37690", + "ident": "SSVB", + "type": "small_airport", + "name": "Fazenda Vaca Branca Airport", + "latitude_deg": "-23.066515", + "longitude_deg": "-53.821174", + "elevation_ft": "1086", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Naviraí", + "scheduled_service": "no", + "gps_code": "SSJB", + "local_code": "MS0288", + "keywords": "SSVB" + }, + { + "id": "37691", + "ident": "SSVC", + "type": "small_airport", + "name": "Vacaria Airport", + "latitude_deg": "-28.509721755981445", + "longitude_deg": "-50.918331146240234", + "elevation_ft": "3215", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Vacaria", + "scheduled_service": "no", + "gps_code": "SSVC" + }, + { + "id": "37692", + "ident": "SSVD", + "type": "small_airport", + "name": "Fazenda Alvorada Airport", + "latitude_deg": "-24.294224", + "longitude_deg": "-53.250647", + "elevation_ft": "1312", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Quarto Centenário", + "scheduled_service": "no", + "keywords": "SSVD" + }, + { + "id": "37693", + "ident": "SSVE", + "type": "small_airport", + "name": "Fazenda Cerro Verde Airport", + "latitude_deg": "-23.81277847290039", + "longitude_deg": "-55.057777404785156", + "elevation_ft": "1250", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Tacuru", + "scheduled_service": "no", + "gps_code": "SSVE" + }, + { + "id": "37694", + "ident": "SSVF", + "type": "small_airport", + "name": "Rancho Donana Airport", + "latitude_deg": "-22.960646", + "longitude_deg": "-49.149356", + "elevation_ft": "2257", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cerqueira César", + "scheduled_service": "no", + "keywords": "SSVF" + }, + { + "id": "37695", + "ident": "SSVG", + "type": "small_airport", + "name": "Fazenda Santa Virgínia Airport", + "latitude_deg": "-22.279057", + "longitude_deg": "-55.653944", + "elevation_ft": "2087", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ponta Porã", + "scheduled_service": "no", + "gps_code": "SDG2", + "local_code": "MS0627", + "keywords": "SSVG" + }, + { + "id": "37696", + "ident": "SSVH", + "type": "small_airport", + "name": "Fazenda Paquetá Airport", + "latitude_deg": "-22.366943359375", + "longitude_deg": "-55.127777099609375", + "elevation_ft": "1398", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ponta Porã", + "scheduled_service": "no", + "gps_code": "SSVH" + }, + { + "id": "512", + "ident": "SSVI", + "type": "small_airport", + "name": "Videira Airport", + "latitude_deg": "-26.99970054626465", + "longitude_deg": "-51.14189910888672", + "elevation_ft": "2756", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Videira", + "scheduled_service": "no", + "gps_code": "SSVI", + "iata_code": "VIA", + "local_code": "SSVI" + }, + { + "id": "37697", + "ident": "SSVJ", + "type": "small_airport", + "name": "Fazenda Cedro Airport", + "latitude_deg": "-21.870832", + "longitude_deg": "-55.747501", + "elevation_ft": "2280", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ponta Porã", + "scheduled_service": "no", + "keywords": "SSVJ" + }, + { + "id": "37698", + "ident": "SSVK", + "type": "small_airport", + "name": "Fazenda Dom Arlindo Airport", + "latitude_deg": "-22.794443130493164", + "longitude_deg": "-54.156944274902344", + "elevation_ft": "1299", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Naviraí", + "scheduled_service": "no", + "gps_code": "SSVK" + }, + { + "id": "37699", + "ident": "SSVL", + "type": "small_airport", + "name": "Fazenda Santa Claudina Airport", + "latitude_deg": "-22.521667", + "longitude_deg": "-54.677776", + "elevation_ft": "1476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Caarapó", + "scheduled_service": "no", + "gps_code": "SDNL", + "local_code": "MS0040", + "keywords": "SSVL" + }, + { + "id": "37700", + "ident": "SSVM", + "type": "small_airport", + "name": "Fazenda Santa Alaíde Airport", + "latitude_deg": "-22.002501", + "longitude_deg": "-54.974167", + "elevation_ft": "1499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Itaporã", + "scheduled_service": "no", + "keywords": "SSVM" + }, + { + "id": "30527", + "ident": "SSVN", + "type": "small_airport", + "name": "Veranópolis Airport", + "latitude_deg": "-28.934999465942383", + "longitude_deg": "-51.56829833984375", + "elevation_ft": "2133", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Veranópolis", + "scheduled_service": "no", + "gps_code": "SSVN", + "iata_code": "0" + }, + { + "id": "44734", + "ident": "SSVO", + "type": "small_airport", + "name": "Usina de Monções Airport", + "latitude_deg": "-20.8716678619", + "longitude_deg": "-50.1269454956", + "elevation_ft": "1437", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Monções", + "scheduled_service": "no", + "gps_code": "SSVO" + }, + { + "id": "30858", + "ident": "SSVP", + "type": "small_airport", + "name": "Santa Vitória do Palmar Airport", + "latitude_deg": "-33.50222396850586", + "longitude_deg": "-53.34416580200195", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Santa Vitória Do Palmar", + "scheduled_service": "no", + "gps_code": "SSVP", + "iata_code": "CTQ" + }, + { + "id": "37701", + "ident": "SSVQ", + "type": "small_airport", + "name": "Fazenda Serrito Airport", + "latitude_deg": "-22.4102783203125", + "longitude_deg": "-54.988609313964844", + "elevation_ft": "1510", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Laguna Carapã", + "scheduled_service": "no", + "gps_code": "SSVQ" + }, + { + "id": "309669", + "ident": "SSVR", + "type": "closed", + "name": "Volta Redonda Airport", + "latitude_deg": "-22.4978", + "longitude_deg": "-44.085", + "elevation_ft": "1245", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Volta Redonda", + "scheduled_service": "no", + "gps_code": "SSVR", + "iata_code": "QVR" + }, + { + "id": "46359", + "ident": "SSVS", + "type": "heliport", + "name": "Zezé Heliport", + "latitude_deg": "-23.128289", + "longitude_deg": "-47.003283", + "elevation_ft": "2480", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Jundiaí", + "scheduled_service": "no", + "gps_code": "SIZZ", + "local_code": "SP0585", + "keywords": "SSVS" + }, + { + "id": "333392", + "ident": "SSVT", + "type": "small_airport", + "name": "Fazenda Vittória Airstrip", + "latitude_deg": "-15.566667", + "longitude_deg": "-58.616111", + "elevation_ft": "830", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Figueirópolis d'Oeste", + "scheduled_service": "no", + "gps_code": "SSVT" + }, + { + "id": "45578", + "ident": "SSVU", + "type": "small_airport", + "name": "Fazenda Serra do Cabral Airport", + "latitude_deg": "-17.698889", + "longitude_deg": "-44.350278", + "elevation_ft": "3773", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Lassance", + "scheduled_service": "no", + "gps_code": "SSVU" + }, + { + "id": "37702", + "ident": "SSVV", + "type": "small_airport", + "name": "Fazenda Vaticano Airport", + "latitude_deg": "-21.294443", + "longitude_deg": "-56.11861", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Nioaque", + "scheduled_service": "no", + "gps_code": "SSWT" + }, + { + "id": "37703", + "ident": "SSVW", + "type": "small_airport", + "name": "Fazenda Galera Airport", + "latitude_deg": "-14.513055801391602", + "longitude_deg": "-59.55694580078125", + "elevation_ft": "975", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Conquista D`Oeste", + "scheduled_service": "no", + "gps_code": "SSVW" + }, + { + "id": "37704", + "ident": "SSVX", + "type": "small_airport", + "name": "Fazenda Manduri Airport", + "latitude_deg": "-18.508231", + "longitude_deg": "-56.424667", + "elevation_ft": "394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SDNV", + "local_code": "MS0041", + "keywords": "SSVX" + }, + { + "id": "30266", + "ident": "SSVY", + "type": "small_airport", + "name": "Fazenda Três Barras Airport", + "latitude_deg": "-20.93779945373535", + "longitude_deg": "-48.173301696777344", + "elevation_ft": "1575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Pitangueiras", + "scheduled_service": "no", + "gps_code": "SSVY", + "iata_code": "0" + }, + { + "id": "45623", + "ident": "SSVZ", + "type": "heliport", + "name": "Autovias Heliport", + "latitude_deg": "-21.163333", + "longitude_deg": "-47.754722", + "elevation_ft": "1804", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ribeirão Preto", + "scheduled_service": "no", + "gps_code": "SSVZ" + }, + { + "id": "30526", + "ident": "SSWA", + "type": "closed", + "name": "Venâncio Aires Airport", + "latitude_deg": "-29.6131", + "longitude_deg": "-52.217201", + "elevation_ft": "226", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Venâncio Aires", + "scheduled_service": "no", + "keywords": "SSWA" + }, + { + "id": "37705", + "ident": "SSWB", + "type": "closed", + "name": "Fazenda Sorte Grande Airport", + "latitude_deg": "-24.61", + "longitude_deg": "-52.36", + "elevation_ft": "2339", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Roncador", + "scheduled_service": "no", + "gps_code": "SSWB" + }, + { + "id": "37706", + "ident": "SSWC", + "type": "small_airport", + "name": "Fazenda Campo Verde Airport", + "latitude_deg": "-18.92212", + "longitude_deg": "-53.062763", + "elevation_ft": "2608", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Costa Rica", + "scheduled_service": "no", + "keywords": "SSWC" + }, + { + "id": "29979", + "ident": "SSWD", + "type": "closed", + "name": "Irai Vicente Dut Airport", + "latitude_deg": "-27.193599700927734", + "longitude_deg": "-53.23640060424805", + "elevation_ft": "1152", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Irai", + "scheduled_service": "no", + "gps_code": "SSWD" + }, + { + "id": "37707", + "ident": "SSWE", + "type": "small_airport", + "name": "Fazenda Califórnia Airport", + "latitude_deg": "-21.74388885498047", + "longitude_deg": "-50.9474983215332", + "elevation_ft": "1450", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Inúbia Paulista", + "scheduled_service": "no", + "gps_code": "SSWE" + }, + { + "id": "37708", + "ident": "SSWF", + "type": "small_airport", + "name": "Frederico Westphalen Airport", + "latitude_deg": "-27.347778", + "longitude_deg": "-53.4025", + "elevation_ft": "1857", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Frederico Westphalen", + "scheduled_service": "no", + "gps_code": "SSWF", + "home_link": "https://www.facebook.com/aeroclubeFW", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Frederico_Westphalen", + "keywords": "SSWF,SSOW" + }, + { + "id": "45579", + "ident": "SSWG", + "type": "heliport", + "name": "Laguna Heliport", + "latitude_deg": "-21.780833", + "longitude_deg": "-46.556111", + "elevation_ft": "4249", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Poços De Caldas", + "scheduled_service": "no", + "gps_code": "SSWG" + }, + { + "id": "45631", + "ident": "SSWH", + "type": "small_airport", + "name": "Fazenda Agropecuária Rossignolo Airport", + "latitude_deg": "-21.912222", + "longitude_deg": "-47.823611", + "elevation_ft": "2300", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Carlos", + "scheduled_service": "no", + "gps_code": "SSWH" + }, + { + "id": "45629", + "ident": "SSWI", + "type": "heliport", + "name": "Escas-Ipê Heliport", + "latitude_deg": "-23.157222", + "longitude_deg": "-46.320833", + "elevation_ft": "2848", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Nazaré Paulista", + "scheduled_service": "no", + "gps_code": "SSWI" + }, + { + "id": "46358", + "ident": "SSWJ", + "type": "heliport", + "name": "Studart Heliport", + "latitude_deg": "-4.457222", + "longitude_deg": "-37.794722", + "elevation_ft": "56", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Fortim", + "scheduled_service": "no", + "gps_code": "SSWJ", + "local_code": "SSWJ" + }, + { + "id": "37709", + "ident": "SSWK", + "type": "small_airport", + "name": "Guaiacuruzinho Airport", + "latitude_deg": "-23.031944274902344", + "longitude_deg": "-50.49583435058594", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Santa Mariana", + "scheduled_service": "no", + "gps_code": "SSWK" + }, + { + "id": "37710", + "ident": "SSWL", + "type": "small_airport", + "name": "Haras Fazenda Reunidas Sobral Airport", + "latitude_deg": "-1.284956", + "longitude_deg": "-48.214081", + "elevation_ft": "115", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santa Isabel do Pará", + "scheduled_service": "no", + "gps_code": "SSWL" + }, + { + "id": "37711", + "ident": "SSWM", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-23.5", + "longitude_deg": "-51.29999923706055", + "elevation_ft": "2461", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Londrina", + "scheduled_service": "no", + "gps_code": "SSWM" + }, + { + "id": "37712", + "ident": "SSWN", + "type": "small_airport", + "name": "Fazenda Figueira Branca Airport", + "latitude_deg": "-16.22833251953125", + "longitude_deg": "-57.592220306396484", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SSWN" + }, + { + "id": "37713", + "ident": "SSWO", + "type": "small_airport", + "name": "Fazenda Santa Marta Airport", + "latitude_deg": "-22.966388702392578", + "longitude_deg": "-54.07583236694336", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Naviraí", + "scheduled_service": "no", + "gps_code": "SSWO" + }, + { + "id": "37714", + "ident": "SSWP", + "type": "small_airport", + "name": "Fazenda Araguaia Airport", + "latitude_deg": "-8.742500305175781", + "longitude_deg": "-50.20750045776367", + "elevation_ft": "797", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Santa Maria Das Barreiras", + "scheduled_service": "no", + "gps_code": "SSWP" + }, + { + "id": "46111", + "ident": "SSWQ", + "type": "small_airport", + "name": "Santa Anastácia II Airport", + "latitude_deg": "-12.5275", + "longitude_deg": "-55.6247222222", + "elevation_ft": "1283", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "gps_code": "SSWQ", + "local_code": "SSWQ" + }, + { + "id": "37715", + "ident": "SSWR", + "type": "small_airport", + "name": "Fazenda Campana Airport", + "latitude_deg": "-21.894132", + "longitude_deg": "-54.294185", + "elevation_ft": "1043", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Brilhante", + "scheduled_service": "no", + "gps_code": "SSWR", + "local_code": "MS0344" + }, + { + "id": "29745", + "ident": "SSWS", + "type": "small_airport", + "name": "Caçapava do Sul Airport", + "latitude_deg": "-30.549625", + "longitude_deg": "-53.458177", + "elevation_ft": "1365", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Caçapava do Sul", + "scheduled_service": "no", + "gps_code": "SSWS", + "local_code": "RS0025", + "home_link": "https://cacapavadosul.rs.gov.br/noticia/visualizar/id/2856/?aeroporto-de-cacapava-do-sul-recebe-liberacao-da-anac.html" + }, + { + "id": "37716", + "ident": "SSWT", + "type": "small_airport", + "name": "Cambará Airport", + "latitude_deg": "-28.999722", + "longitude_deg": "-50.076111", + "elevation_ft": "3527", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Cambará Do Sul", + "scheduled_service": "no" + }, + { + "id": "43317", + "ident": "SSWU", + "type": "heliport", + "name": "Quick Heliport", + "latitude_deg": "-16.62027778", + "longitude_deg": "-49.2605552673", + "elevation_ft": "1552", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiânia", + "scheduled_service": "no", + "gps_code": "SSWU", + "local_code": "SSWU" + }, + { + "id": "37717", + "ident": "SSWV", + "type": "small_airport", + "name": "Fazenda Barra Grande Airport", + "latitude_deg": "-23.589072", + "longitude_deg": "-50.036105", + "elevation_ft": "1772", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Tomazinha", + "scheduled_service": "no", + "gps_code": "SDXO", + "local_code": "PR0041", + "keywords": "SSWV" + }, + { + "id": "37718", + "ident": "SSWW", + "type": "small_airport", + "name": "Fazenda Belém Airport", + "latitude_deg": "-18.67416763305664", + "longitude_deg": "-55.89472198486328", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSWW" + }, + { + "id": "37719", + "ident": "SSWX", + "type": "small_airport", + "name": "Fazenda Retiro Campanha Airport", + "latitude_deg": "-19.02805519104004", + "longitude_deg": "-56.290557861328125", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSWX" + }, + { + "id": "46472", + "ident": "SSWY", + "type": "heliport", + "name": "Flamboyant Heliport", + "latitude_deg": "-23.04861", + "longitude_deg": "-47.16722", + "elevation_ft": "2100", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Indaiatuba", + "scheduled_service": "no", + "gps_code": "SSWY", + "local_code": "SSWY" + }, + { + "id": "44735", + "ident": "SSWZ", + "type": "small_airport", + "name": "Fazenda Dona Neném Airport", + "latitude_deg": "-18.5094432831", + "longitude_deg": "-46.2738876343", + "elevation_ft": "3458", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Presidente Olegário", + "scheduled_service": "no", + "gps_code": "SSWZ" + }, + { + "id": "37720", + "ident": "SSXA", + "type": "small_airport", + "name": "Fazenda Congonhas Airport", + "latitude_deg": "-23.038610458374023", + "longitude_deg": "-50.934444427490234", + "elevation_ft": "1526", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Rancho Alegre", + "scheduled_service": "no", + "gps_code": "SSXA" + }, + { + "id": "37721", + "ident": "SSXb", + "type": "small_airport", + "name": "Casa das Onças Airport", + "latitude_deg": "-17.152219", + "longitude_deg": "-56.570669", + "elevation_ft": "351", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão de Melgaço", + "scheduled_service": "no", + "gps_code": "SDU7", + "local_code": "MT0778", + "keywords": "SSXB, Fazenda Alaska II" + }, + { + "id": "37722", + "ident": "SSXC", + "type": "small_airport", + "name": "Fazenda Alaska I Airport", + "latitude_deg": "-17.049999237060547", + "longitude_deg": "-56.08333206176758", + "elevation_ft": "571", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão De Melgaço", + "scheduled_service": "no", + "gps_code": "SSXC" + }, + { + "id": "30396", + "ident": "SSXD", + "type": "small_airport", + "name": "Sarandi Airport", + "latitude_deg": "-27.98110008239746", + "longitude_deg": "-52.86360168457031", + "elevation_ft": "2034", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Sarandi", + "scheduled_service": "no", + "gps_code": "SSXD", + "iata_code": "0" + }, + { + "id": "44714", + "ident": "SSXF", + "type": "heliport", + "name": "Alexandre Castro e Silva Helipad", + "latitude_deg": "-8.111772", + "longitude_deg": "-34.892798", + "elevation_ft": "199", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PE", + "municipality": "Recife", + "scheduled_service": "no", + "gps_code": "SNWN", + "local_code": "PE0050", + "keywords": "SSXF" + }, + { + "id": "324187", + "ident": "SSXG", + "type": "heliport", + "name": "Usina Hidrelétrica de Porto Primavera Heliport", + "latitude_deg": "-22.486397", + "longitude_deg": "-52.956547", + "elevation_ft": "873", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Rosana", + "scheduled_service": "no", + "gps_code": "SSXG" + }, + { + "id": "37723", + "ident": "SSXH", + "type": "small_airport", + "name": "Fazenda Jacamin Airport", + "latitude_deg": "-13.6980562210083", + "longitude_deg": "-56.29083251953125", + "elevation_ft": "1099", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Mutum", + "scheduled_service": "no", + "gps_code": "SSXH" + }, + { + "id": "37724", + "ident": "SSXI", + "type": "small_airport", + "name": "Fazenda Macisa Airport", + "latitude_deg": "-11.179444313049316", + "longitude_deg": "-56.79111099243164", + "elevation_ft": "1201", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tabaporã", + "scheduled_service": "no", + "gps_code": "SSXI" + }, + { + "id": "42238", + "ident": "SSXJ", + "type": "heliport", + "name": "Unidade de Tratamento de Gás de Cacimbas (UTCG) Heliport", + "latitude_deg": "-19.4658336639", + "longitude_deg": "-39.7583312988", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Linhares", + "scheduled_service": "no", + "gps_code": "SSXJ" + }, + { + "id": "37725", + "ident": "SSXK", + "type": "closed", + "name": "Fazenda Alvorada do Marape Airport", + "latitude_deg": "-12.887366", + "longitude_deg": "-56.736478", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tapurá", + "scheduled_service": "no", + "keywords": "SSXK" + }, + { + "id": "42741", + "ident": "SSXL", + "type": "small_airport", + "name": "Laguna Airport", + "latitude_deg": "-20.434722900390625", + "longitude_deg": "-56.33583450317383", + "elevation_ft": "554", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "SSXL" + }, + { + "id": "37726", + "ident": "SSXM", + "type": "small_airport", + "name": "Fazenda Guaciara Airport", + "latitude_deg": "-22.786666870117188", + "longitude_deg": "-53.88277816772461", + "elevation_ft": "1443", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Jateí", + "scheduled_service": "no", + "gps_code": "SSXM" + }, + { + "id": "44560", + "ident": "SSXN", + "type": "small_airport", + "name": "Aéreo Amazônia Airport", + "latitude_deg": "-8.298333333", + "longitude_deg": "-55.11472222", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Altamira", + "scheduled_service": "no", + "gps_code": "SSXN" + }, + { + "id": "37727", + "ident": "SSXO", + "type": "small_airport", + "name": "Pousada das Águias Airport", + "latitude_deg": "-23.288888931274414", + "longitude_deg": "-52.12916564941406", + "elevation_ft": "1932", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Presidente Castelo Branco", + "scheduled_service": "no", + "gps_code": "SSXO" + }, + { + "id": "37728", + "ident": "SSXP", + "type": "small_airport", + "name": "Fazenda Vitória Airport", + "latitude_deg": "-3.6202778816223145", + "longitude_deg": "-48.75611114501953", + "elevation_ft": "523", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "Centro Novo", + "scheduled_service": "no", + "gps_code": "SSXP" + }, + { + "id": "37729", + "ident": "SSXQ", + "type": "small_airport", + "name": "Fazenda Jota III Airport", + "latitude_deg": "-19.328611373901367", + "longitude_deg": "-51.9738883972168", + "elevation_ft": "1466", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Inocência", + "scheduled_service": "no", + "gps_code": "SSXQ" + }, + { + "id": "37730", + "ident": "SSXR", + "type": "small_airport", + "name": "Galletti II Airport", + "latitude_deg": "-2.9513890743255615", + "longitude_deg": "-51.14611053466797", + "elevation_ft": "974", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Portel", + "scheduled_service": "no", + "gps_code": "SSXR" + }, + { + "id": "37731", + "ident": "SSXS", + "type": "heliport", + "name": "Miramar Maragogi Heliport", + "latitude_deg": "-8.95888900756836", + "longitude_deg": "-35.178611755371094", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Maragogi", + "scheduled_service": "no", + "gps_code": "SSXS" + }, + { + "id": "37732", + "ident": "SSXT", + "type": "heliport", + "name": "Clube Céu Heliport", + "latitude_deg": "-22.977676", + "longitude_deg": "-43.390267", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SWCL", + "local_code": "RJ0151", + "keywords": "SSXT" + }, + { + "id": "37733", + "ident": "SSXU", + "type": "closed", + "name": "Fazenda Fartura Airport", + "latitude_deg": "-3.159407", + "longitude_deg": "-48.543434", + "elevation_ft": "276", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Tomé Açu", + "scheduled_service": "no", + "keywords": "SSXU" + }, + { + "id": "37734", + "ident": "SSXV", + "type": "small_airport", + "name": "Fazenda Santa Rita Airport", + "latitude_deg": "-22.950000762939453", + "longitude_deg": "-54.112220764160156", + "elevation_ft": "1201", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Naviraí", + "scheduled_service": "no", + "gps_code": "SSXV" + }, + { + "id": "37735", + "ident": "SSXW", + "type": "small_airport", + "name": "Fazendas Reunidas Schlatter Airport", + "latitude_deg": "-18.807777", + "longitude_deg": "-52.600277", + "elevation_ft": "2625", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Chapadão Do Sul", + "scheduled_service": "no", + "gps_code": "SSLW", + "local_code": "MS0304", + "keywords": "SSXW, Aero Porto Dal Lago" + }, + { + "id": "37736", + "ident": "SSXX", + "type": "small_airport", + "name": "Xanxerê Airport", + "latitude_deg": "-26.875556945800003", + "longitude_deg": "-52.373054504399995", + "elevation_ft": "2986", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Xanxerê", + "scheduled_service": "no", + "gps_code": "SSXX", + "iata_code": "AXE" + }, + { + "id": "37737", + "ident": "SSXY", + "type": "small_airport", + "name": "Barradão Airport", + "latitude_deg": "-9.619722366333008", + "longitude_deg": "-60.66749954223633", + "elevation_ft": "459", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Colniza", + "scheduled_service": "no", + "gps_code": "SSXY" + }, + { + "id": "37738", + "ident": "SSXZ", + "type": "small_airport", + "name": "Fazenda Santa Rosa Airport", + "latitude_deg": "-19.747499465942383", + "longitude_deg": "-50.12916564941406", + "elevation_ft": "1348", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Iturama", + "scheduled_service": "no", + "gps_code": "SSXZ" + }, + { + "id": "513", + "ident": "SSYA", + "type": "small_airport", + "name": "Avelino Vieira Airport", + "latitude_deg": "-24.103901", + "longitude_deg": "-49.789101", + "elevation_ft": "2641", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Arapoti", + "scheduled_service": "no", + "gps_code": "SSYA", + "iata_code": "AAG", + "local_code": "PR0020", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arapoti_Airport" + }, + { + "id": "29973", + "ident": "SSYB", + "type": "small_airport", + "name": "Fazenda Santa Elza Airport", + "latitude_deg": "-18.683332443237305", + "longitude_deg": "-53.28333282470703", + "elevation_ft": "1762", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Costa Rica", + "scheduled_service": "no", + "gps_code": "SSYB" + }, + { + "id": "37739", + "ident": "SSYC", + "type": "small_airport", + "name": "Fazenda Mimoso Airport", + "latitude_deg": "-19.049771", + "longitude_deg": "-52.966901", + "elevation_ft": "1959", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Chapadão do Sul", + "scheduled_service": "no", + "gps_code": "SIFM", + "local_code": "MS0081", + "keywords": "SSYC" + }, + { + "id": "37740", + "ident": "SSYD", + "type": "small_airport", + "name": "Fazenda Andorinha I Airport", + "latitude_deg": "-7.548056125640869", + "longitude_deg": "-49.20805740356445", + "elevation_ft": "643", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Pau D`Arco", + "scheduled_service": "no", + "gps_code": "SSYD" + }, + { + "id": "37741", + "ident": "SSYE", + "type": "small_airport", + "name": "Fazenda Roberta Airport", + "latitude_deg": "-15.320833206176758", + "longitude_deg": "-58.50166702270508", + "elevation_ft": "1033", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Araputanga", + "scheduled_service": "no", + "gps_code": "SSYE" + }, + { + "id": "37742", + "ident": "SSYF", + "type": "small_airport", + "name": "Fazenda do Café Airport", + "latitude_deg": "-18.871667861938477", + "longitude_deg": "-48.72055435180664", + "elevation_ft": "2762", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Monte Alegre De Minas", + "scheduled_service": "no", + "gps_code": "SSYF" + }, + { + "id": "37743", + "ident": "SSYG", + "type": "heliport", + "name": "Edifício Palládio Heliport", + "latitude_deg": "-23.59502", + "longitude_deg": "-46.685619", + "elevation_ft": "2589", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SDOF", + "local_code": "SP0393", + "keywords": "SSYG" + }, + { + "id": "37744", + "ident": "SSYH", + "type": "heliport", + "name": "Condomínio Spázio Central Heliport", + "latitude_deg": "-23.591102", + "longitude_deg": "-46.685704", + "elevation_ft": "2684", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SSYH" + }, + { + "id": "37745", + "ident": "SSYJ", + "type": "heliport", + "name": "Igreja Messiânica Mundial do Brasil Heliport", + "latitude_deg": "-23.761943817138672", + "longitude_deg": "-46.75555419921875", + "elevation_ft": "2513", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SSYJ" + }, + { + "id": "37746", + "ident": "SSYK", + "type": "heliport", + "name": "Hospital Alvorada Heliport", + "latitude_deg": "-23.601342", + "longitude_deg": "-46.661366", + "elevation_ft": "2690", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "local_code": "SP0882", + "keywords": "SSYK" + }, + { + "id": "37747", + "ident": "SSYL", + "type": "small_airport", + "name": "Fazenda Tuju Puitan Airport", + "latitude_deg": "-23.341110229492188", + "longitude_deg": "-54.56888961791992", + "elevation_ft": "1142", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Iguatemi", + "scheduled_service": "no", + "gps_code": "SSYL" + }, + { + "id": "37748", + "ident": "SSYM", + "type": "small_airport", + "name": "Tuiuiu Airport", + "latitude_deg": "-20.086944580078125", + "longitude_deg": "-56.616390228271484", + "elevation_ft": "548", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "SSYM" + }, + { + "id": "37749", + "ident": "SSYN", + "type": "small_airport", + "name": "Arrozeira Airport", + "latitude_deg": "-20.081388473510742", + "longitude_deg": "-56.66777801513672", + "elevation_ft": "427", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "SSYN" + }, + { + "id": "37750", + "ident": "SSYO", + "type": "small_airport", + "name": "Cachoeira Rica Airport", + "latitude_deg": "-15.262499809265137", + "longitude_deg": "-55.614723205566406", + "elevation_ft": "1155", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Chapada Dos Guimarães", + "scheduled_service": "no", + "gps_code": "SSYO" + }, + { + "id": "37751", + "ident": "SSYQ", + "type": "small_airport", + "name": "Agropecuária Monte Alverne Airport", + "latitude_deg": "-28.378889083862305", + "longitude_deg": "-52.87944412231445", + "elevation_ft": "1752", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Carazinho", + "scheduled_service": "no", + "gps_code": "SSYQ" + }, + { + "id": "37752", + "ident": "SSYR", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-20.346468", + "longitude_deg": "-52.319283", + "elevation_ft": "1306", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Três Lagoas", + "scheduled_service": "no", + "gps_code": "SD3D", + "local_code": "MS0542", + "keywords": "SSYR" + }, + { + "id": "37753", + "ident": "SSYS", + "type": "small_airport", + "name": "Fazenda Imbaúba Airport", + "latitude_deg": "-19.908889770507812", + "longitude_deg": "-52.5363883972168", + "elevation_ft": "1552", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Três Lagoas", + "scheduled_service": "no", + "gps_code": "SSYS" + }, + { + "id": "37754", + "ident": "SSYT", + "type": "small_airport", + "name": "Itapiranga Airport", + "latitude_deg": "-27.142499923706055", + "longitude_deg": "-53.68579864501953", + "elevation_ft": "1247", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Itapiranga", + "scheduled_service": "no", + "gps_code": "SSYT", + "local_code": "SSYT" + }, + { + "id": "37755", + "ident": "SSYU", + "type": "small_airport", + "name": "Fazenda Três Pontes Airport", + "latitude_deg": "-19.830639", + "longitude_deg": "-52.585309", + "elevation_ft": "1440", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Três Lagoas", + "scheduled_service": "no", + "gps_code": "SJGT", + "local_code": "MS0166", + "keywords": "SSYU, Água Clara" + }, + { + "id": "37756", + "ident": "SSYV", + "type": "small_airport", + "name": "Fazenda Progresso Airport", + "latitude_deg": "-19.726388931274414", + "longitude_deg": "-52.85139083862305", + "elevation_ft": "1650", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Água Clara", + "scheduled_service": "no", + "gps_code": "SSYV" + }, + { + "id": "37757", + "ident": "SSYW", + "type": "small_airport", + "name": "Fazenda Terra Forte Airport", + "latitude_deg": "-18.268333435058594", + "longitude_deg": "-54.782501220703125", + "elevation_ft": "1460", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Coxim", + "scheduled_service": "no", + "gps_code": "SSYW" + }, + { + "id": "37758", + "ident": "SSYX", + "type": "heliport", + "name": "Neo Química Heliport", + "latitude_deg": "-16.40277862548828", + "longitude_deg": "-48.964168548583984", + "elevation_ft": "3750", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Anápolis", + "scheduled_service": "no", + "gps_code": "SSYX" + }, + { + "id": "37759", + "ident": "SSYY", + "type": "small_airport", + "name": "Fazenda Fundãozinho Airport", + "latitude_deg": "-18.95111083984375", + "longitude_deg": "-53.149444580078125", + "elevation_ft": "1923", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Costa Rica", + "scheduled_service": "no", + "gps_code": "SSYY" + }, + { + "id": "37760", + "ident": "SSYZ", + "type": "small_airport", + "name": "Fazenda Procomp II Airport", + "latitude_deg": "-22.851110458374023", + "longitude_deg": "-55.39611053466797", + "elevation_ft": "2080", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Aral Moreira", + "scheduled_service": "no", + "gps_code": "SSYZ" + }, + { + "id": "37761", + "ident": "SSZA", + "type": "small_airport", + "name": "Fazenda São Sebastião da Formosa Airport", + "latitude_deg": "-17.72222137451172", + "longitude_deg": "-56.753334045410156", + "elevation_ft": "331", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSZA" + }, + { + "id": "37762", + "ident": "SSZB", + "type": "small_airport", + "name": "Fazenda Bela Vista Airport", + "latitude_deg": "-18.206666946411133", + "longitude_deg": "-56.809444427490234", + "elevation_ft": "331", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSZB" + }, + { + "id": "37763", + "ident": "SSZC", + "type": "small_airport", + "name": "Fazenda Lambari Airport", + "latitude_deg": "-18.025275", + "longitude_deg": "-54.999262", + "elevation_ft": "564", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Coxim", + "scheduled_service": "no", + "gps_code": "SI4E", + "local_code": "MS0603", + "keywords": "SWLL, SSCZ" + }, + { + "id": "37764", + "ident": "SSZD", + "type": "heliport", + "name": "Aficel Heliport", + "latitude_deg": "-5.116666793823242", + "longitude_deg": "-37.34333419799805", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RN", + "municipality": "Mossoró", + "scheduled_service": "no", + "gps_code": "SSZD" + }, + { + "id": "37765", + "ident": "SSZF", + "type": "small_airport", + "name": "Fazenda Santa Gertrudes Airport", + "latitude_deg": "-18.4777774810791", + "longitude_deg": "-56.02166748046875", + "elevation_ft": "150", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SSZF" + }, + { + "id": "37766", + "ident": "SSZG", + "type": "small_airport", + "name": "Fazenda São João Airport", + "latitude_deg": "-19.257221221923828", + "longitude_deg": "-52.89638900756836", + "elevation_ft": "1575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Água Clara", + "scheduled_service": "no", + "gps_code": "SSZG" + }, + { + "id": "37767", + "ident": "SSZH", + "type": "small_airport", + "name": "Fazenda Procomp I Airport", + "latitude_deg": "-23.64611053466797", + "longitude_deg": "-54.7147216796875", + "elevation_ft": "928", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Tacuru", + "scheduled_service": "no", + "gps_code": "SSZH" + }, + { + "id": "37768", + "ident": "SSZI", + "type": "heliport", + "name": "Condomínio Laguna Heliport", + "latitude_deg": "-9.703204", + "longitude_deg": "-35.800694", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AL", + "municipality": "Marechal Deodoro", + "scheduled_service": "no", + "gps_code": "SNLX", + "local_code": "AL0018", + "keywords": "SSZI" + }, + { + "id": "514", + "ident": "SSZJ", + "type": "small_airport", + "name": "Fazenda Torrão de Ouro Airport", + "latitude_deg": "-18.180700302124023", + "longitude_deg": "-54.501800537109375", + "elevation_ft": "899", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Pedro Gomes", + "scheduled_service": "no", + "gps_code": "SSZJ", + "local_code": "SSZJ" + }, + { + "id": "37769", + "ident": "SSZK", + "type": "small_airport", + "name": "São Carlos Airport", + "latitude_deg": "-22.2147216796875", + "longitude_deg": "-57.30638885498047", + "elevation_ft": "410", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Caracol", + "scheduled_service": "no", + "gps_code": "SSZK" + }, + { + "id": "37770", + "ident": "SSZL", + "type": "small_airport", + "name": "Fazenda Córrego Azul Airport", + "latitude_deg": "-21.454444885253906", + "longitude_deg": "-52.168609619140625", + "elevation_ft": "994", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Brasilândia", + "scheduled_service": "no", + "gps_code": "SSZL" + }, + { + "id": "37771", + "ident": "SSZM", + "type": "small_airport", + "name": "Reserva Acurizal Airport", + "latitude_deg": "-17.832875", + "longitude_deg": "-57.554401", + "elevation_ft": "351", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SDV7", + "local_code": "MS0577", + "keywords": "SSZM" + }, + { + "id": "37772", + "ident": "SSZN", + "type": "small_airport", + "name": "Prudentópolis Airport", + "latitude_deg": "-25.181943893432617", + "longitude_deg": "-50.92361068725586", + "elevation_ft": "2451", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Prudentópolis", + "scheduled_service": "no", + "gps_code": "SSZN" + }, + { + "id": "37773", + "ident": "SSZP", + "type": "small_airport", + "name": "Fazenda Santa Adriana Airport", + "latitude_deg": "-22.69611167907715", + "longitude_deg": "-54.2158317565918", + "elevation_ft": "1499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Jateí", + "scheduled_service": "no", + "gps_code": "SSZP" + }, + { + "id": "515", + "ident": "SSZQ", + "type": "small_airport", + "name": "Fazenda Panorama Airport", + "latitude_deg": "-22.038999557495117", + "longitude_deg": "-56.26940155029297", + "elevation_ft": "1197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bela Vista", + "scheduled_service": "no", + "gps_code": "SSZQ", + "local_code": "SSZQ" + }, + { + "id": "516", + "ident": "SSZR", + "type": "small_airport", + "name": "Santa Rosa Airport", + "latitude_deg": "-27.9067", + "longitude_deg": "-54.520401", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Santa Rosa", + "scheduled_service": "yes", + "gps_code": "SSZR", + "iata_code": "SRA", + "local_code": "SSZR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Rosa_Airport_(Brazil)" + }, + { + "id": "29768", + "ident": "SSZS", + "type": "small_airport", + "name": "Centenário do Sul Airport", + "latitude_deg": "-22.830799102783203", + "longitude_deg": "-51.603599548339844", + "elevation_ft": "1591", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Centenário Do Sul", + "scheduled_service": "no", + "gps_code": "SSZS", + "iata_code": "0" + }, + { + "id": "42239", + "ident": "SSZT", + "type": "small_airport", + "name": "Fazenda São João Airport", + "latitude_deg": "-22.794166564941406", + "longitude_deg": "-49.34111022949219", + "elevation_ft": "2146", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Águas De Santa Bárbara", + "scheduled_service": "no", + "gps_code": "SSZT" + }, + { + "id": "37774", + "ident": "SSZU", + "type": "small_airport", + "name": "Fazenda Três Marias Airport", + "latitude_deg": "-19.503125", + "longitude_deg": "-53.049556", + "elevation_ft": "1821", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Água Clara", + "scheduled_service": "no", + "gps_code": "SWUU", + "local_code": "MS0425", + "keywords": "SJTE, SSZU" + }, + { + "id": "37775", + "ident": "SSZV", + "type": "small_airport", + "name": "Fazenda Bordolândia Airport", + "latitude_deg": "-12.061019", + "longitude_deg": "-51.530589", + "elevation_ft": "1066", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Serra Nova Dourada", + "scheduled_service": "no", + "keywords": "SSZV" + }, + { + "id": "517", + "ident": "SSZW", + "type": "medium_airport", + "name": "Ponta Grossa Airport - Comandante Antonio Amilton Beraldo", + "latitude_deg": "-25.184476", + "longitude_deg": "-50.143822", + "elevation_ft": "2588", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Ponta Grossa", + "scheduled_service": "yes", + "gps_code": "SBPG", + "iata_code": "PGZ", + "local_code": "PR0012", + "home_link": "https://www.pontagrossa.pr.gov.br/smicqp/aeroporto", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ponta_Grossa_Airport", + "keywords": "SSZW, Sant'ana Airport" + }, + { + "id": "37776", + "ident": "SSZX", + "type": "small_airport", + "name": "Fazenda Lapa do Lobo Airport", + "latitude_deg": "-19.5272216796875", + "longitude_deg": "-50.970279693603516", + "elevation_ft": "1447", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Paranaíba", + "scheduled_service": "no", + "gps_code": "SSZX" + }, + { + "id": "37777", + "ident": "SSZY", + "type": "small_airport", + "name": "Carneirinho Agroindustrial Airport", + "latitude_deg": "-19.810105", + "longitude_deg": "-50.781629", + "elevation_ft": "1421", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Carneirinho", + "scheduled_service": "no", + "gps_code": "SD43", + "local_code": "MG0494", + "keywords": "SSZY" + }, + { + "id": "37778", + "ident": "SSZZ", + "type": "small_airport", + "name": "Fazenda Thauá Airport", + "latitude_deg": "-17.714736", + "longitude_deg": "-54.411307", + "elevation_ft": "2024", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Sonora", + "scheduled_service": "no", + "keywords": "SSZZ" + }, + { + "id": "322989", + "ident": "ST-0001", + "type": "seaplane_base", + "name": "Santo Antonio Seaport", + "latitude_deg": "1.63777", + "longitude_deg": "7.417778", + "continent": "AF", + "iso_country": "ST", + "iso_region": "ST-P", + "municipality": "Santo Antonio", + "scheduled_service": "no" + }, + { + "id": "6244", + "ident": "SUAA", + "type": "medium_airport", + "name": "Angel S Adami Airport", + "latitude_deg": "-34.7892", + "longitude_deg": "-56.264702", + "elevation_ft": "174", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-MO", + "municipality": "Montevideo", + "scheduled_service": "no", + "gps_code": "SUAA", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%81ngel_S._Adami_Airport", + "keywords": "Aeródromo de Melilla" + }, + { + "id": "30655", + "ident": "SUAG", + "type": "small_airport", + "name": "Artigas International Airport", + "latitude_deg": "-30.400699615478516", + "longitude_deg": "-56.50790023803711", + "elevation_ft": "410", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-AR", + "municipality": "Artigas", + "scheduled_service": "no", + "gps_code": "SUAG", + "iata_code": "ATI" + }, + { + "id": "325606", + "ident": "SUAN", + "type": "small_airport", + "name": "Anchorena Airport", + "latitude_deg": "-34.270516", + "longitude_deg": "-57.964383", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-CO", + "municipality": "Estancia Anchorena", + "scheduled_service": "no", + "gps_code": "SUAN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Estancia_Presidencial_Anchorena_Airport" + }, + { + "id": "325318", + "ident": "SUAY", + "type": "small_airport", + "name": "Termas del Arapey Airport", + "latitude_deg": "-30.938271", + "longitude_deg": "-57.517528", + "elevation_ft": "153", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-SA", + "municipality": "Termas del Arapey", + "scheduled_service": "no", + "gps_code": "SUAY" + }, + { + "id": "325319", + "ident": "SUBL", + "type": "small_airport", + "name": "Capitán Juan Manuel Boiso Lanza Air Base", + "latitude_deg": "-34.811533", + "longitude_deg": "-56.164317", + "elevation_ft": "131", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-MO", + "municipality": "Montevideo", + "scheduled_service": "no", + "gps_code": "SUBL", + "wikipedia_link": "https://es.wikipedia.org/wiki/Base_A%C3%A9rea_Cap._Juan_Manuel_Boiso_Lanza" + }, + { + "id": "41564", + "ident": "SUBU", + "type": "small_airport", + "name": "Bella Union Airport", + "latitude_deg": "-30.3333339691", + "longitude_deg": "-57.0833320618", + "elevation_ft": "70", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-AR", + "municipality": "Bella Union", + "scheduled_service": "no", + "gps_code": "SUBU", + "iata_code": "BUV" + }, + { + "id": "30868", + "ident": "SUCA", + "type": "small_airport", + "name": "Laguna de Los Patos International Airport", + "latitude_deg": "-34.456401824951", + "longitude_deg": "-57.770599365234", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-CO", + "municipality": "Colonia del Sacramento", + "scheduled_service": "no", + "gps_code": "SUCA", + "iata_code": "CYR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Colonia_Airport" + }, + { + "id": "325607", + "ident": "SUCD", + "type": "small_airport", + "name": "Cardona Airport", + "latitude_deg": "-33.875502", + "longitude_deg": "-57.397875", + "elevation_ft": "554", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-SO", + "municipality": "Cardona", + "scheduled_service": "no", + "gps_code": "SUCD" + }, + { + "id": "325611", + "ident": "SUCH", + "type": "small_airport", + "name": "Chuy Airport", + "latitude_deg": "-33.71085", + "longitude_deg": "-53.471334", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-RO", + "municipality": "Chuy", + "scheduled_service": "no", + "gps_code": "SUCH" + }, + { + "id": "325613", + "ident": "SUCL", + "type": "small_airport", + "name": "La Calera Airport", + "latitude_deg": "-34.286766", + "longitude_deg": "-55.354757", + "elevation_ft": "501", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-LA", + "municipality": "Minas", + "scheduled_service": "no", + "gps_code": "SUCL" + }, + { + "id": "39082", + "ident": "SUCM", + "type": "small_airport", + "name": "Zagarzazú International Airport", + "latitude_deg": "-33.96611", + "longitude_deg": "-58.325279", + "elevation_ft": "42", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-CO", + "municipality": "Carmelo", + "scheduled_service": "no", + "gps_code": "SUCM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zagarzaz%C3%BA_International_Airport", + "keywords": "Balneario Zagarzazú, Carmelo" + }, + { + "id": "325615", + "ident": "SUCN", + "type": "small_airport", + "name": "Aeroclub Canelones", + "latitude_deg": "-34.515153", + "longitude_deg": "-56.261384", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-CA", + "municipality": "Canelones", + "scheduled_service": "no", + "gps_code": "SUCN", + "home_link": "http://www.aeroclubcanelones.org.uy/sitio/" + }, + { + "id": "6245", + "ident": "SUDU", + "type": "medium_airport", + "name": "Santa Bernardina International Airport", + "latitude_deg": "-33.3588981628418", + "longitude_deg": "-56.49919891357422", + "elevation_ft": "305", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-DU", + "municipality": "Durazno", + "scheduled_service": "no", + "gps_code": "SUDU", + "iata_code": "DZO" + }, + { + "id": "325619", + "ident": "SUEL", + "type": "heliport", + "name": "Liberty Building Helipad", + "latitude_deg": "-34.868763", + "longitude_deg": "-56.166733", + "elevation_ft": "275", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-MO", + "municipality": "Montevideo", + "scheduled_service": "no", + "gps_code": "SUEL" + }, + { + "id": "326535", + "ident": "SUFT", + "type": "small_airport", + "name": "Frigorifico Tacuarembó Airport", + "latitude_deg": "-31.703611", + "longitude_deg": "-55.943056", + "elevation_ft": "490", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-TA", + "municipality": "Tacuarembó", + "scheduled_service": "no", + "gps_code": "SUFT" + }, + { + "id": "326530", + "ident": "SUGA", + "type": "small_airport", + "name": "Military Aeronautical School", + "latitude_deg": "-34.7469", + "longitude_deg": "-55.961", + "elevation_ft": "38", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-CA", + "municipality": "Pando", + "scheduled_service": "no", + "gps_code": "SUGA", + "home_link": "http://www.ema.edu.uy/" + }, + { + "id": "326536", + "ident": "SUGN", + "type": "small_airport", + "name": "Guichón Airfield", + "latitude_deg": "-32.3478", + "longitude_deg": "-57.1894", + "elevation_ft": "291", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-PA", + "municipality": "Guichón", + "scheduled_service": "no", + "gps_code": "SUGN" + }, + { + "id": "326537", + "ident": "SUJL", + "type": "small_airport", + "name": "Juan Lacaze Airport", + "latitude_deg": "-34.415352", + "longitude_deg": "-57.46422", + "elevation_ft": "40", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-CO", + "municipality": "Juan Lacaze", + "scheduled_service": "no", + "gps_code": "SUJL" + }, + { + "id": "326538", + "ident": "SUJP", + "type": "small_airport", + "name": "José Pedro Varela Airport", + "latitude_deg": "-33.4753", + "longitude_deg": "-54.539702", + "elevation_ft": "316", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-LA", + "municipality": "José Pedro Varela", + "scheduled_service": "no", + "gps_code": "SUJP" + }, + { + "id": "6246", + "ident": "SULS", + "type": "medium_airport", + "name": "Capitan Corbeta CA Curbelo International Airport", + "latitude_deg": "-34.855098724365234", + "longitude_deg": "-55.09429931640625", + "elevation_ft": "95", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-MA", + "municipality": "Punta del Este", + "scheduled_service": "no", + "gps_code": "SULS", + "iata_code": "PDP", + "home_link": "http://www.puntadeleste.aero/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Capitan_Corbeta_CA_Curbelo_International_Airport" + }, + { + "id": "32388", + "ident": "SUME", + "type": "small_airport", + "name": "Ricardo Detomasi Airport", + "latitude_deg": "-33.2489", + "longitude_deg": "-58.0737", + "elevation_ft": "68", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-RN", + "municipality": "Mercedes", + "scheduled_service": "no", + "gps_code": "SUME", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aeropuerto_Ricardo_Detomasi" + }, + { + "id": "326525", + "ident": "SUMI", + "type": "small_airport", + "name": "Minas Municipal Airfield", + "latitude_deg": "-34.345455", + "longitude_deg": "-55.227522", + "elevation_ft": "458", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-LA", + "municipality": "Minas", + "scheduled_service": "no", + "gps_code": "SUMI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Campo_Municipal_de_Aterrizaje_Airport" + }, + { + "id": "31920", + "ident": "SUMO", + "type": "small_airport", + "name": "Cerro Largo International Airport", + "latitude_deg": "-32.33789825439453", + "longitude_deg": "-54.21670150756836", + "elevation_ft": "364", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-CL", + "municipality": "Melo", + "scheduled_service": "no", + "gps_code": "SUMO", + "iata_code": "MLZ" + }, + { + "id": "6247", + "ident": "SUMU", + "type": "large_airport", + "name": "Carrasco International /General C L Berisso Airport", + "latitude_deg": "-34.838402", + "longitude_deg": "-56.0308", + "elevation_ft": "105", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-CA", + "municipality": "Montevideo", + "scheduled_service": "yes", + "gps_code": "SUMU", + "iata_code": "MVD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carrasco_International_Airport" + }, + { + "id": "326534", + "ident": "SUNM", + "type": "small_airport", + "name": "Estancia Nueva Mehlem Airport", + "latitude_deg": "-32.96963", + "longitude_deg": "-57.982351", + "elevation_ft": "158", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-RN", + "municipality": "Nuevo Berlin", + "scheduled_service": "no", + "gps_code": "SUNM" + }, + { + "id": "326526", + "ident": "SUPC", + "type": "small_airport", + "name": "Charles Chalkling Airport", + "latitude_deg": "-32.379601", + "longitude_deg": "-58.029761", + "elevation_ft": "184", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-PA", + "municipality": "Paysandú", + "scheduled_service": "no", + "gps_code": "SUPC", + "home_link": "http://www.charleschalkling.com/" + }, + { + "id": "32390", + "ident": "SUPE", + "type": "small_airport", + "name": "El Jagüel / Punta del Este Airport", + "latitude_deg": "-34.909716", + "longitude_deg": "-54.920212", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-MA", + "municipality": "Maldonado", + "scheduled_service": "yes", + "gps_code": "SUPE" + }, + { + "id": "30253", + "ident": "SUPU", + "type": "small_airport", + "name": "Tydeo Larre Borges Airport", + "latitude_deg": "-32.36330032348633", + "longitude_deg": "-58.0619010925293", + "elevation_ft": "138", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-PA", + "municipality": "Paysandu", + "scheduled_service": "no", + "gps_code": "SUPU", + "iata_code": "PDU" + }, + { + "id": "39083", + "ident": "SURB", + "type": "small_airport", + "name": "Rio Branco Airport", + "latitude_deg": "-32.58305740356445", + "longitude_deg": "-53.454166412353516", + "elevation_ft": "55", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-CL", + "municipality": "Jaguarao", + "scheduled_service": "no", + "gps_code": "SURB" + }, + { + "id": "32240", + "ident": "SURV", + "type": "small_airport", + "name": "Presidente General Don Oscar D. Gestido International Airport", + "latitude_deg": "-30.974599838256836", + "longitude_deg": "-55.476200103759766", + "elevation_ft": "712", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-RV", + "municipality": "Rivera", + "scheduled_service": "no", + "gps_code": "SURV", + "iata_code": "RVY" + }, + { + "id": "326557", + "ident": "SUSG", + "type": "small_airport", + "name": "San Gregorio Airport", + "latitude_deg": "-32.526501", + "longitude_deg": "-55.841636", + "elevation_ft": "371", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-TA", + "municipality": "Cerro Chato", + "scheduled_service": "no", + "gps_code": "SUSG" + }, + { + "id": "326553", + "ident": "SUSJ", + "type": "small_airport", + "name": "San José Airport", + "latitude_deg": "-34.350554", + "longitude_deg": "-56.752438", + "elevation_ft": "229", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-SJ", + "municipality": "San José", + "scheduled_service": "no", + "gps_code": "SUSJ", + "keywords": "Aeroclub Maragato" + }, + { + "id": "6248", + "ident": "SUSO", + "type": "medium_airport", + "name": "Nueva Hesperides International Airport", + "latitude_deg": "-31.438499450683594", + "longitude_deg": "-57.98529815673828", + "elevation_ft": "187", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-SA", + "municipality": "Salto", + "scheduled_service": "no", + "gps_code": "SUSO", + "iata_code": "STY" + }, + { + "id": "32423", + "ident": "SUTB", + "type": "small_airport", + "name": "Tacuarembo Airport", + "latitude_deg": "-31.749001", + "longitude_deg": "-55.925801", + "elevation_ft": "440", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-TA", + "municipality": "Tacuarembo", + "scheduled_service": "no", + "gps_code": "SUTB", + "iata_code": "TAW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tacuaremb%C3%B3_Airport" + }, + { + "id": "326547", + "ident": "SUTG", + "type": "small_airport", + "name": "Tomás Gomenzoro Airport", + "latitude_deg": "-30.436607", + "longitude_deg": "-57.446726", + "elevation_ft": "273", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-AR", + "municipality": "Tomás Gomenzoro", + "scheduled_service": "no", + "gps_code": "SUTG" + }, + { + "id": "32492", + "ident": "SUTR", + "type": "small_airport", + "name": "Treinta y Tres Airport", + "latitude_deg": "-33.195714", + "longitude_deg": "-54.347246", + "elevation_ft": "337", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-TT", + "municipality": "Treinta y Tres", + "scheduled_service": "no", + "gps_code": "SUTR", + "iata_code": "TYT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Treinta_y_Tres_Airport" + }, + { + "id": "326544", + "ident": "SUVE", + "type": "small_airport", + "name": "SAMAN Vergara Airport", + "latitude_deg": "-32.960353", + "longitude_deg": "-53.930913", + "elevation_ft": "102", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-TT", + "municipality": "Vergara", + "scheduled_service": "no", + "gps_code": "SUVE", + "keywords": "SAMAN Vergara Rice Plant" + }, + { + "id": "32568", + "ident": "SUVO", + "type": "small_airport", + "name": "Vichadero Airport", + "latitude_deg": "-31.767000198364258", + "longitude_deg": "-54.617000579833984", + "elevation_ft": "488", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-RV", + "municipality": "Vichadero", + "scheduled_service": "no", + "gps_code": "SUVO", + "iata_code": "VCH" + }, + { + "id": "326542", + "ident": "SUYI", + "type": "small_airport", + "name": "Sarandí del Yí Airport", + "latitude_deg": "-33.311667", + "longitude_deg": "-55.600278", + "elevation_ft": "460", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-DU", + "municipality": "Sarandi del Yí", + "scheduled_service": "no", + "gps_code": "SUYI" + }, + { + "id": "326541", + "ident": "SUYN", + "type": "small_airport", + "name": "Young Airport", + "latitude_deg": "-32.6872", + "longitude_deg": "-57.6581", + "elevation_ft": "230", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-RN", + "municipality": "Young", + "scheduled_service": "no", + "gps_code": "SUYN" + }, + { + "id": "314972", + "ident": "SUZ", + "type": "closed", + "name": "Suria Airport", + "latitude_deg": "-9.032", + "longitude_deg": "147.45", + "elevation_ft": "2600", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Suria", + "scheduled_service": "no", + "iata_code": "SUZ", + "local_code": "SUR" + }, + { + "id": "42020", + "ident": "SV-0001", + "type": "small_airport", + "name": "Rio Sucio Highway Airstrip", + "latitude_deg": "13.771100044250488", + "longitude_deg": "-89.37139892578125", + "elevation_ft": "1594", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-LI", + "municipality": "El Botoncillal", + "scheduled_service": "no" + }, + { + "id": "42021", + "ident": "SV-0002", + "type": "small_airport", + "name": "Las Cachas Airport", + "latitude_deg": "13.466724", + "longitude_deg": "-89.191345", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-LI", + "municipality": "Cangrejera", + "scheduled_service": "no", + "gps_code": "MSCS" + }, + { + "id": "42022", + "ident": "SV-0003", + "type": "closed", + "name": "El Playón Airport", + "latitude_deg": "13.454823", + "longitude_deg": "-88.756378", + "elevation_ft": "137", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-SV", + "municipality": "San Fernando", + "scheduled_service": "no" + }, + { + "id": "42023", + "ident": "SV-0004", + "type": "small_airport", + "name": "Santa Rosa de Lima Airport", + "latitude_deg": "13.616000175476074", + "longitude_deg": "-87.86389923095703", + "elevation_ft": "239", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-UN", + "municipality": "Santa Rosa de Lima", + "scheduled_service": "no" + }, + { + "id": "351334", + "ident": "SV-0005", + "type": "small_airport", + "name": "Usulutan Private Airport", + "latitude_deg": "13.33199", + "longitude_deg": "-88.50131", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-US", + "municipality": "Usulutan", + "scheduled_service": "no" + }, + { + "id": "351335", + "ident": "SV-0006", + "type": "small_airport", + "name": "Puerto El Triunfo Airport", + "latitude_deg": "13.29613", + "longitude_deg": "-88.53113", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "SV", + "iso_region": "SV-US", + "municipality": "Puerto El Triunfo", + "scheduled_service": "no" + }, + { + "id": "26480", + "ident": "SV02", + "type": "small_airport", + "name": "San Diego De Cabrutica Airport", + "latitude_deg": "8.404430389404297", + "longitude_deg": "-65.0155029296875", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "municipality": "El Roble", + "scheduled_service": "no", + "gps_code": "SV02" + }, + { + "id": "26483", + "ident": "SV73", + "type": "small_airport", + "name": "Uverito Airport", + "latitude_deg": "8.670319557189941", + "longitude_deg": "-62.62540054321289", + "elevation_ft": "300", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "scheduled_service": "no", + "gps_code": "SV73" + }, + { + "id": "26484", + "ident": "SV74", + "type": "small_airport", + "name": "Aricuaisa Airport", + "latitude_deg": "9.581870079040527", + "longitude_deg": "-72.78800201416016", + "elevation_ft": "165", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SV74" + }, + { + "id": "26485", + "ident": "SV75", + "type": "small_airport", + "name": "Machiques North Airport", + "latitude_deg": "10.088299751281738", + "longitude_deg": "-72.55480194091797", + "elevation_ft": "361", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SV75" + }, + { + "id": "6249", + "ident": "SVAC", + "type": "medium_airport", + "name": "Oswaldo Guevara Mujica Airport", + "latitude_deg": "9.553375", + "longitude_deg": "-69.237869", + "elevation_ft": "640", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "municipality": "Acarigua", + "scheduled_service": "yes", + "gps_code": "SVAC", + "iata_code": "AGV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oswaldo_Guevara_Mujica_Airport", + "keywords": "Acarigua-Araure Airport" + }, + { + "id": "40070", + "ident": "SVAE", + "type": "small_airport", + "name": "Montellano Airport", + "latitude_deg": "10.328100204467773", + "longitude_deg": "-72.48100280761719", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SVAE", + "keywords": "Formerly SV77" + }, + { + "id": "40071", + "ident": "SVAF", + "type": "small_airport", + "name": "Medano Alto Airport", + "latitude_deg": "6.933332920074463", + "longitude_deg": "-68.01667022705078", + "elevation_ft": "459", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "Médano Alto", + "scheduled_service": "no", + "gps_code": "SVAF" + }, + { + "id": "40072", + "ident": "SVAH", + "type": "small_airport", + "name": "Cachimbo Airport", + "latitude_deg": "10.033332824707031", + "longitude_deg": "-69.16666412353516", + "elevation_ft": "1000", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-K", + "municipality": "Coco de Mono", + "scheduled_service": "no", + "gps_code": "SVAH" + }, + { + "id": "40073", + "ident": "SVAI", + "type": "small_airport", + "name": "Arichuna Airport", + "latitude_deg": "7.866666793823242", + "longitude_deg": "-67.03333282470703", + "elevation_ft": "145", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVAI" + }, + { + "id": "6250", + "ident": "SVAJ", + "type": "small_airport", + "name": "Mata de Juajua Airport", + "latitude_deg": "8.818929672241211", + "longitude_deg": "-65.88670349121094", + "elevation_ft": "393", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVAJ" + }, + { + "id": "40074", + "ident": "SVAL", + "type": "small_airport", + "name": "Algodonal Airport", + "latitude_deg": "8.350000381469727", + "longitude_deg": "-69.51667022705078", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no", + "gps_code": "SVAL" + }, + { + "id": "40075", + "ident": "SVAM", + "type": "small_airport", + "name": "Mata de Caña Airport", + "latitude_deg": "7.316667079925537", + "longitude_deg": "-69.19999694824219", + "elevation_ft": "344", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVAM" + }, + { + "id": "6251", + "ident": "SVAN", + "type": "medium_airport", + "name": "Anaco Airport", + "latitude_deg": "9.430225", + "longitude_deg": "-64.470726", + "elevation_ft": "721", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "municipality": "Anaco", + "scheduled_service": "no", + "gps_code": "SVAN", + "iata_code": "AAO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anaco_Airport" + }, + { + "id": "40076", + "ident": "SVAO", + "type": "small_airport", + "name": "Altagracia de Orituco Airport", + "latitude_deg": "9.863332748413086", + "longitude_deg": "-66.2933349609375", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVAO" + }, + { + "id": "40077", + "ident": "SVAP", + "type": "small_airport", + "name": "Apurito Airport", + "latitude_deg": "7.918849945068359", + "longitude_deg": "-68.48300170898438", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "Apurito", + "scheduled_service": "no", + "gps_code": "SVAP" + }, + { + "id": "40078", + "ident": "SVAQ", + "type": "small_airport", + "name": "Mata Oscura Airport", + "latitude_deg": "9.25", + "longitude_deg": "-68.48332977294922", + "elevation_ft": "196", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-H", + "scheduled_service": "no", + "gps_code": "SVAQ" + }, + { + "id": "32393", + "ident": "SVAR", + "type": "small_airport", + "name": "Adícora Airport", + "latitude_deg": "11.936079", + "longitude_deg": "-69.811965", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-I", + "municipality": "Adícora", + "scheduled_service": "no", + "gps_code": "SVAR" + }, + { + "id": "6252", + "ident": "SVAS", + "type": "small_airport", + "name": "Armando Schwarck Airport", + "latitude_deg": "6.578050136566162", + "longitude_deg": "-66.81690216064453", + "elevation_ft": "266", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "municipality": "Guayabal", + "scheduled_service": "no", + "gps_code": "SVAS", + "iata_code": "LPJ" + }, + { + "id": "40315", + "ident": "SVAT", + "type": "small_airport", + "name": "San Fernando de Atabapo Airport", + "latitude_deg": "4.051683", + "longitude_deg": "-67.701133", + "elevation_ft": "301", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "municipality": "San Fernando de Atabapo", + "scheduled_service": "no", + "gps_code": "SVAT" + }, + { + "id": "40079", + "ident": "SVAU", + "type": "small_airport", + "name": "Agua Clara Airport", + "latitude_deg": "6.75", + "longitude_deg": "-68.33333587646484", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVAU" + }, + { + "id": "40080", + "ident": "SVAV", + "type": "small_airport", + "name": "El Alcaravan Airport", + "latitude_deg": "9.273332595825195", + "longitude_deg": "-63.418331146240234", + "elevation_ft": "128", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "scheduled_service": "no", + "gps_code": "SVAV" + }, + { + "id": "40081", + "ident": "SVAW", + "type": "small_airport", + "name": "Merecure Airport", + "latitude_deg": "7.483333110809326", + "longitude_deg": "-67.8499984741211", + "elevation_ft": "220", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVAW" + }, + { + "id": "6254", + "ident": "SVAX", + "type": "small_airport", + "name": "Los Andes Airport", + "latitude_deg": "10", + "longitude_deg": "-72.58333587646484", + "elevation_ft": "393", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SVAX" + }, + { + "id": "40082", + "ident": "SVAY", + "type": "small_airport", + "name": "Araya Airport", + "latitude_deg": "10.583333015441895", + "longitude_deg": "-64.24666595458984", + "elevation_ft": "32", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-R", + "scheduled_service": "no", + "gps_code": "SVAY" + }, + { + "id": "40083", + "ident": "SVAZ", + "type": "small_airport", + "name": "Mata Palos Airport", + "latitude_deg": "8.433333396911621", + "longitude_deg": "-68.55000305175781", + "elevation_ft": "224", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "scheduled_service": "no", + "gps_code": "SVAZ" + }, + { + "id": "40084", + "ident": "SVBA", + "type": "small_airport", + "name": "Boca Anaro Airport", + "latitude_deg": "7.8333330154418945", + "longitude_deg": "-70.26667022705078", + "elevation_ft": "298", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "municipality": "Boca de Anaro", + "scheduled_service": "no", + "gps_code": "SVBA" + }, + { + "id": "6255", + "ident": "SVBC", + "type": "large_airport", + "name": "General José Antonio Anzoategui International Airport", + "latitude_deg": "10.111111", + "longitude_deg": "-64.692222", + "elevation_ft": "30", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "municipality": "Barcelona", + "scheduled_service": "yes", + "gps_code": "SVBC", + "iata_code": "BLA", + "home_link": "http://aigdjaa.baer.gob.ve", + "wikipedia_link": "https://en.wikipedia.org/wiki/General_Jos%C3%A9_Antonio_Anzo%C3%A1tegui_International_Airport", + "keywords": "Barcelona, Puero La Cruz,Lecheria" + }, + { + "id": "40085", + "ident": "SVBD", + "type": "small_airport", + "name": "Los Camorucos Airport", + "latitude_deg": "7.616666793823242", + "longitude_deg": "-69.05000305175781", + "elevation_ft": "321", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVBD" + }, + { + "id": "40086", + "ident": "SVBE", + "type": "small_airport", + "name": "Bernal Airport", + "latitude_deg": "9.666666984558105", + "longitude_deg": "-72.58333587646484", + "elevation_ft": "249", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SVBE" + }, + { + "id": "40087", + "ident": "SVBF", + "type": "small_airport", + "name": "Hato Urañon Airport", + "latitude_deg": "6.99328", + "longitude_deg": "-67.19261", + "elevation_ft": "410", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVBF" + }, + { + "id": "40088", + "ident": "SVBG", + "type": "small_airport", + "name": "La Batalla Airport", + "latitude_deg": "9.199999809265137", + "longitude_deg": "-68.16666412353516", + "elevation_ft": "273", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-H", + "municipality": "La Cruz", + "scheduled_service": "no", + "gps_code": "SVBG" + }, + { + "id": "40089", + "ident": "SVBH", + "type": "small_airport", + "name": "Los Belseres Airport", + "latitude_deg": "10.941666603088379", + "longitude_deg": "-68.26667022705078", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-I", + "scheduled_service": "no", + "gps_code": "SVBH" + }, + { + "id": "6256", + "ident": "SVBI", + "type": "medium_airport", + "name": "Barinas Airport", + "latitude_deg": "8.615", + "longitude_deg": "-70.21416667", + "elevation_ft": "615", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "municipality": "Barinas", + "scheduled_service": "yes", + "gps_code": "SVBI", + "iata_code": "BNS" + }, + { + "id": "40090", + "ident": "SVBJ", + "type": "small_airport", + "name": "Hato Viejo Airport", + "latitude_deg": "7.321667194366455", + "longitude_deg": "-69.66999816894531", + "elevation_ft": "524", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVBJ" + }, + { + "id": "6257", + "ident": "SVBK", + "type": "small_airport", + "name": "Bocono Airport", + "latitude_deg": "9.26710033416748", + "longitude_deg": "-70.23049926757812", + "elevation_ft": "5084", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-T", + "municipality": "Bocono", + "scheduled_service": "no", + "gps_code": "SVBK" + }, + { + "id": "6258", + "ident": "SVBL", + "type": "medium_airport", + "name": "El Libertador Airbase", + "latitude_deg": "10.183375358600001", + "longitude_deg": "-67.55731964110001", + "elevation_ft": "1450", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-D", + "scheduled_service": "no", + "gps_code": "SVBL", + "local_code": "ELR" + }, + { + "id": "6259", + "ident": "SVBM", + "type": "medium_airport", + "name": "Barquisimeto International Airport", + "latitude_deg": "10.042746543884277", + "longitude_deg": "-69.3586196899414", + "elevation_ft": "2042", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-K", + "municipality": "Barquisimeto", + "scheduled_service": "yes", + "gps_code": "SVBM", + "iata_code": "BRM" + }, + { + "id": "40091", + "ident": "SVBN", + "type": "small_airport", + "name": "Bocon Airport", + "latitude_deg": "6.599999904632568", + "longitude_deg": "-62.733333587646484", + "elevation_ft": "1462", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVBN" + }, + { + "id": "40092", + "ident": "SVBP", + "type": "small_airport", + "name": "Jobito Airport", + "latitude_deg": "7.599999904632568", + "longitude_deg": "-67.19999694824219", + "elevation_ft": "138", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVBP" + }, + { + "id": "40093", + "ident": "SVBR", + "type": "small_airport", + "name": "Carbonero Airport", + "latitude_deg": "10.416666984558105", + "longitude_deg": "-68.66666412353516", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-U", + "scheduled_service": "no", + "gps_code": "SVBR" + }, + { + "id": "6261", + "ident": "SVBS", + "type": "medium_airport", + "name": "Escuela Mariscal Sucre Airport", + "latitude_deg": "10.249978065490723", + "longitude_deg": "-67.64942169189453", + "elevation_ft": "1338", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-D", + "municipality": "Maracay", + "scheduled_service": "yes", + "gps_code": "SVBS", + "iata_code": "MYC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mariscal_Sucre_Airport_(Venezuela)" + }, + { + "id": "40094", + "ident": "SVBT", + "type": "small_airport", + "name": "Boquemonte Airport", + "latitude_deg": "9.199999809265137", + "longitude_deg": "-69.75", + "elevation_ft": "1000", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "scheduled_service": "no", + "gps_code": "SVBT" + }, + { + "id": "40095", + "ident": "SVBU", + "type": "small_airport", + "name": "Central Venezuela Airport", + "latitude_deg": "9.173054", + "longitude_deg": "-71.112871", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "VE", + "iso_region": "VE-T", + "municipality": "Bobures", + "scheduled_service": "no", + "gps_code": "SVBU" + }, + { + "id": "40096", + "ident": "SVBV", + "type": "small_airport", + "name": "Banco Verde Airport", + "latitude_deg": "8.733332633972168", + "longitude_deg": "-69.53333282470703", + "elevation_ft": "348", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "scheduled_service": "no", + "gps_code": "SVBV" + }, + { + "id": "40097", + "ident": "SVBW", + "type": "small_airport", + "name": "Hato El Burro Airport", + "latitude_deg": "7.128957", + "longitude_deg": "-63.461154", + "elevation_ft": "921", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVBW" + }, + { + "id": "40098", + "ident": "SVBX", + "type": "closed", + "name": "La Cabaña Airport", + "latitude_deg": "9.766667", + "longitude_deg": "-72.699997", + "elevation_ft": "215", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SVBX" + }, + { + "id": "342437", + "ident": "SVCA", + "type": "closed", + "name": "Cabimas Airport", + "latitude_deg": "10.370879", + "longitude_deg": "-71.412098", + "elevation_ft": "65", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "municipality": "Cabimas", + "scheduled_service": "no", + "gps_code": "SVCA", + "keywords": "Cabimas" + }, + { + "id": "6262", + "ident": "SVCB", + "type": "medium_airport", + "name": "Aeropuerto \"General Tomas de Heres\". Ciudad Bolivar", + "latitude_deg": "8.12216091156", + "longitude_deg": "-63.5369567871", + "elevation_ft": "197", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVCB", + "iata_code": "CBL" + }, + { + "id": "6263", + "ident": "SVCD", + "type": "medium_airport", + "name": "Caicara del Orinoco Airport", + "latitude_deg": "7.625510215759277", + "longitude_deg": "-66.16280364990234", + "elevation_ft": "141", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVCD", + "iata_code": "CXA" + }, + { + "id": "6264", + "ident": "SVCE", + "type": "small_airport", + "name": "Zaraza Airport", + "latitude_deg": "9.350306", + "longitude_deg": "-65.280655", + "elevation_ft": "204", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "municipality": "Zaraza", + "scheduled_service": "no", + "gps_code": "SVCE", + "iata_code": "ZRZ" + }, + { + "id": "6265", + "ident": "SVCG", + "type": "small_airport", + "name": "Casigua El Cubo Airport", + "latitude_deg": "8.758139610290527", + "longitude_deg": "-72.53630065917969", + "elevation_ft": "99", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "municipality": "Casigua El Cubo", + "scheduled_service": "no", + "gps_code": "SVCG", + "iata_code": "CUV" + }, + { + "id": "40099", + "ident": "SVCH", + "type": "small_airport", + "name": "Achaguas Airport", + "latitude_deg": "7.739999771118164", + "longitude_deg": "-68.23999786376953", + "elevation_ft": "187", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVCH" + }, + { + "id": "40100", + "ident": "SVCI", + "type": "small_airport", + "name": "Punta de Oro Airport", + "latitude_deg": "9.501667022705078", + "longitude_deg": "-70.95166778564453", + "elevation_ft": "37", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-T", + "scheduled_service": "no", + "gps_code": "SVCI" + }, + { + "id": "6266", + "ident": "SVCJ", + "type": "small_airport", + "name": "San Carlos Airport", + "latitude_deg": "9.647720336914062", + "longitude_deg": "-68.57469940185547", + "elevation_ft": "512", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-H", + "municipality": "San Carlos", + "scheduled_service": "no", + "gps_code": "SVCJ" + }, + { + "id": "40101", + "ident": "SVCK", + "type": "small_airport", + "name": "Caño Lucas Airport", + "latitude_deg": "9.416666984558105", + "longitude_deg": "-68.88333129882812", + "elevation_ft": "301", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "municipality": "El Poblado", + "scheduled_service": "no", + "gps_code": "SVCK" + }, + { + "id": "6267", + "ident": "SVCL", + "type": "medium_airport", + "name": "Calabozo Airport", + "latitude_deg": "8.92465591430664", + "longitude_deg": "-67.4170913696289", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "municipality": "Guarico", + "scheduled_service": "no", + "gps_code": "SVCL", + "iata_code": "CLZ" + }, + { + "id": "40102", + "ident": "SVCM", + "type": "small_airport", + "name": "Cañita Mendera Airport", + "latitude_deg": "9.683333396911621", + "longitude_deg": "-68.41666412353516", + "elevation_ft": "662", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-H", + "municipality": "Tinaco", + "scheduled_service": "no", + "gps_code": "SVCM" + }, + { + "id": "6268", + "ident": "SVCN", + "type": "medium_airport", + "name": "Canaima Airport", + "latitude_deg": "6.231988906860352", + "longitude_deg": "-62.85443115234375", + "elevation_ft": "1450", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "municipality": "Canaima", + "scheduled_service": "yes", + "gps_code": "SVCN", + "iata_code": "CAJ" + }, + { + "id": "6269", + "ident": "SVCO", + "type": "closed", + "name": "Carora Airport", + "latitude_deg": "10.175603", + "longitude_deg": "-70.065216", + "elevation_ft": "1437", + "continent": "NA", + "iso_country": "VE", + "iso_region": "VE-K", + "municipality": "Carora", + "scheduled_service": "no", + "gps_code": "SVCO", + "iata_code": "VCR" + }, + { + "id": "6270", + "ident": "SVCP", + "type": "medium_airport", + "name": "General Francisco Bermúdez Airport", + "latitude_deg": "10.660014152526855", + "longitude_deg": "-63.261680603027344", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-R", + "municipality": "Carúpano", + "scheduled_service": "yes", + "gps_code": "SVCP", + "iata_code": "CUP" + }, + { + "id": "40103", + "ident": "SVCQ", + "type": "small_airport", + "name": "Cazorla Airport", + "latitude_deg": "8.060600280761719", + "longitude_deg": "-66.96990203857422", + "elevation_ft": "639", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVCQ" + }, + { + "id": "6271", + "ident": "SVCR", + "type": "medium_airport", + "name": "José Leonardo Chirinos Airport", + "latitude_deg": "11.41494369506836", + "longitude_deg": "-69.68090057373047", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-I", + "municipality": "Coro", + "scheduled_service": "yes", + "gps_code": "SVCR", + "iata_code": "CZE" + }, + { + "id": "6272", + "ident": "SVCS", + "type": "medium_airport", + "name": "Oscar Machado Zuluaga Airport", + "latitude_deg": "10.286110877990723", + "longitude_deg": "-66.81610870361328", + "elevation_ft": "2145", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-M", + "municipality": "Caracas", + "scheduled_service": "no", + "gps_code": "SVCS" + }, + { + "id": "40104", + "ident": "SVCT", + "type": "small_airport", + "name": "Caujarito Airport", + "latitude_deg": "6.883333206176758", + "longitude_deg": "-68.38333129882812", + "elevation_ft": "360", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVCT" + }, + { + "id": "6273", + "ident": "SVCU", + "type": "medium_airport", + "name": "Cumaná (Antonio José de Sucre) Airport", + "latitude_deg": "10.450332641601562", + "longitude_deg": "-64.1304702758789", + "elevation_ft": "14", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-R", + "scheduled_service": "yes", + "gps_code": "SVCU", + "iata_code": "CUM" + }, + { + "id": "40105", + "ident": "SVCV", + "type": "small_airport", + "name": "Cunaviche Airport", + "latitude_deg": "7.400000095367432", + "longitude_deg": "-67.43333435058594", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "Cunaviche", + "scheduled_service": "no", + "gps_code": "SVCV" + }, + { + "id": "40106", + "ident": "SVCW", + "type": "small_airport", + "name": "Chinazón Airport", + "latitude_deg": "9.326666831970215", + "longitude_deg": "-70.93333435058594", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-T", + "scheduled_service": "no", + "gps_code": "SVCW" + }, + { + "id": "40107", + "ident": "SVCX", + "type": "small_airport", + "name": "Guachara Airport", + "latitude_deg": "7.300000190734863", + "longitude_deg": "-68.36666870117188", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVCX" + }, + { + "id": "40108", + "ident": "SVCY", + "type": "small_airport", + "name": "Cuartel Yaruro Airport", + "latitude_deg": "6.933332920074463", + "longitude_deg": "-68.63333129882812", + "elevation_ft": "442", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "Las Campanas", + "scheduled_service": "no", + "gps_code": "SVCY" + }, + { + "id": "6274", + "ident": "SVCZ", + "type": "small_airport", + "name": "Capitán Manuel Ríos Airbase", + "latitude_deg": "9.372650146484375", + "longitude_deg": "-66.92279815673828", + "elevation_ft": "595", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "municipality": "Carrizal", + "scheduled_service": "no", + "gps_code": "SVCZ" + }, + { + "id": "40109", + "ident": "SVDA", + "type": "small_airport", + "name": "La Tortuga Punta Delgada Airport", + "latitude_deg": "10.946759", + "longitude_deg": "-65.228966", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-O", + "municipality": "Isla La Tortuga", + "scheduled_service": "no", + "gps_code": "SVDA", + "keywords": "ISL" + }, + { + "id": "40110", + "ident": "SVDB", + "type": "small_airport", + "name": "Doña Bella Airport", + "latitude_deg": "9.333333015441895", + "longitude_deg": "-68.43333435058594", + "elevation_ft": "651", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-H", + "scheduled_service": "no", + "gps_code": "SVDB" + }, + { + "id": "40111", + "ident": "SVDC", + "type": "small_airport", + "name": "Cocuiza Airport", + "latitude_deg": "8.59000015258789", + "longitude_deg": "-66.25499725341797", + "elevation_ft": "230", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVDC" + }, + { + "id": "40112", + "ident": "SVDF", + "type": "small_airport", + "name": "Punto Fijo Airport", + "latitude_deg": "6.866666793823242", + "longitude_deg": "-68.78333282470703", + "elevation_ft": "360", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVDF" + }, + { + "id": "40113", + "ident": "SVDG", + "type": "small_airport", + "name": "Punta Gorda Airport", + "latitude_deg": "9.649999618530273", + "longitude_deg": "-63.7216682434082", + "elevation_ft": "859", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "scheduled_service": "no", + "gps_code": "SVDG" + }, + { + "id": "40114", + "ident": "SVDM", + "type": "small_airport", + "name": "Dos Mosquises Airport", + "latitude_deg": "11.794284", + "longitude_deg": "-66.892958", + "elevation_ft": "5", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-W", + "municipality": "Isla Los Roques", + "scheduled_service": "no", + "gps_code": "SVDM" + }, + { + "id": "32394", + "ident": "SVDP", + "type": "small_airport", + "name": "La Divina Pastora Airport", + "latitude_deg": "4.730000019073486", + "longitude_deg": "-60.96500015258789", + "elevation_ft": "2581", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVDP" + }, + { + "id": "40115", + "ident": "SVDR", + "type": "small_airport", + "name": "Cordereño Airport", + "latitude_deg": "7.933332920074463", + "longitude_deg": "-69.9000015258789", + "elevation_ft": "268", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "municipality": "Cordereño", + "scheduled_service": "no", + "gps_code": "SVDR" + }, + { + "id": "40116", + "ident": "SVDS", + "type": "small_airport", + "name": "Codsa Airport", + "latitude_deg": "4.7916669845581055", + "longitude_deg": "-61.119998931884766", + "elevation_ft": "2850", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVDS" + }, + { + "id": "40117", + "ident": "SVDV", + "type": "small_airport", + "name": "Hato Veladero Airport", + "latitude_deg": "9.449999809265137", + "longitude_deg": "-63.17499923706055", + "elevation_ft": "239", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "scheduled_service": "no", + "gps_code": "SVDV" + }, + { + "id": "6275", + "ident": "SVDW", + "type": "small_airport", + "name": "Ciudad Piar Airport", + "latitude_deg": "7.493790149688721", + "longitude_deg": "-63.269798278808594", + "elevation_ft": "879", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVDW" + }, + { + "id": "40118", + "ident": "SVDX", + "type": "small_airport", + "name": "Hato Puga Airport", + "latitude_deg": "8.466667175292969", + "longitude_deg": "-62.483333587646484", + "elevation_ft": "268", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Y", + "scheduled_service": "no", + "gps_code": "SVDX" + }, + { + "id": "40119", + "ident": "SVDZ", + "type": "small_airport", + "name": "Puerto Paez Airport", + "latitude_deg": "6.220095", + "longitude_deg": "-67.447508", + "elevation_ft": "146", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "Puerto Paez", + "scheduled_service": "no", + "gps_code": "SVDZ", + "iata_code": "PPZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Puerto_Páez_Airport" + }, + { + "id": "6276", + "ident": "SVEB", + "type": "small_airport", + "name": "El Guayabo del Zulia Airport", + "latitude_deg": "8.676159858703613", + "longitude_deg": "-72.33560180664062", + "elevation_ft": "79", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SVEB" + }, + { + "id": "6277", + "ident": "SVED", + "type": "medium_airport", + "name": "El Dorado Airport", + "latitude_deg": "6.71573", + "longitude_deg": "-61.638786", + "elevation_ft": "318", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "municipality": "Bolivar", + "scheduled_service": "no", + "gps_code": "SVED", + "iata_code": "EOR" + }, + { + "id": "40120", + "ident": "SVEE", + "type": "small_airport", + "name": "El Esterero Airport", + "latitude_deg": "7.908332824707031", + "longitude_deg": "-68.69667053222656", + "elevation_ft": "590", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "El Samán de Apure", + "scheduled_service": "no", + "gps_code": "SVEE" + }, + { + "id": "40121", + "ident": "SVEF", + "type": "small_airport", + "name": "Empujeca Airport", + "latitude_deg": "10.595000267028809", + "longitude_deg": "-68.49500274658203", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-U", + "scheduled_service": "no", + "gps_code": "SVEF" + }, + { + "id": "40122", + "ident": "SVEG", + "type": "small_airport", + "name": "El Guayabo de Cojedes Airport", + "latitude_deg": "9.699999809265137", + "longitude_deg": "-68.33333587646484", + "elevation_ft": "23", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-H", + "scheduled_service": "no", + "gps_code": "SVEG" + }, + { + "id": "40123", + "ident": "SVEJ", + "type": "small_airport", + "name": "El Jabillal Airport", + "latitude_deg": "9.449999809265137", + "longitude_deg": "-70.80000305175781", + "elevation_ft": "354", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-T", + "scheduled_service": "no", + "gps_code": "SVEJ" + }, + { + "id": "40124", + "ident": "SVEK", + "type": "small_airport", + "name": "El Capitán Airport", + "latitude_deg": "10.11359977722168", + "longitude_deg": "-72.57659912109375", + "elevation_ft": "452", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SVEK" + }, + { + "id": "40125", + "ident": "SVEL", + "type": "small_airport", + "name": "El Callao (El Perú) Airport", + "latitude_deg": "7.300000190734863", + "longitude_deg": "-61.79999923706055", + "elevation_ft": "747", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVEL" + }, + { + "id": "40126", + "ident": "SVEM", + "type": "small_airport", + "name": "El Paraiso Airport", + "latitude_deg": "8.333333015441895", + "longitude_deg": "-70.375", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "municipality": "El Paraiso", + "scheduled_service": "no", + "gps_code": "SVEM" + }, + { + "id": "6278", + "ident": "SVEN", + "type": "small_airport", + "name": "Encontrados Airport", + "latitude_deg": "9.03777", + "longitude_deg": "-72.24797", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SVEN" + }, + { + "id": "6279", + "ident": "SVEP", + "type": "small_airport", + "name": "El Palmar Airport", + "latitude_deg": "10.206666946411133", + "longitude_deg": "-67.44166564941406", + "elevation_ft": "1554", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-D", + "scheduled_service": "no", + "gps_code": "SVEP" + }, + { + "id": "40127", + "ident": "SVER", + "type": "small_airport", + "name": "El Respiro Airport", + "latitude_deg": "7.216667175292969", + "longitude_deg": "-68.98332977294922", + "elevation_ft": "387", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVER" + }, + { + "id": "40128", + "ident": "SVES", + "type": "small_airport", + "name": "El Samán de Apure Airport", + "latitude_deg": "7.912350177764893", + "longitude_deg": "-68.69270324707031", + "elevation_ft": "361", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "El Samán de Apure", + "scheduled_service": "no", + "gps_code": "SVES" + }, + { + "id": "6280", + "ident": "SVET", + "type": "small_airport", + "name": "El Manteco Airport", + "latitude_deg": "7.349514", + "longitude_deg": "-62.531447", + "elevation_ft": "1000", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVET" + }, + { + "id": "40129", + "ident": "SVEW", + "type": "small_airport", + "name": "El Cenizo Airport", + "latitude_deg": "9.550000190734863", + "longitude_deg": "-70.68333435058594", + "elevation_ft": "426", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-T", + "scheduled_service": "no", + "gps_code": "SVEW" + }, + { + "id": "40130", + "ident": "SVEX", + "type": "small_airport", + "name": "La Esperanza Airport", + "latitude_deg": "8.699999809265137", + "longitude_deg": "-69.07499694824219", + "elevation_ft": "256", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "scheduled_service": "no", + "gps_code": "SVEX" + }, + { + "id": "40131", + "ident": "SVEY", + "type": "small_airport", + "name": "El Centro Airport", + "latitude_deg": "6.28000020980835", + "longitude_deg": "-69.11666870117188", + "elevation_ft": "318", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVEY" + }, + { + "id": "6281", + "ident": "SVEZ", + "type": "medium_airport", + "name": "Elorza Airport", + "latitude_deg": "7.0833330154418945", + "longitude_deg": "-69.53333282470703", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVEZ", + "iata_code": "EOZ" + }, + { + "id": "40132", + "ident": "SVFE", + "type": "small_airport", + "name": "Hacienda Santa Fé Airport", + "latitude_deg": "9.5", + "longitude_deg": "-72.58333587646484", + "elevation_ft": "524", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SVFE" + }, + { + "id": "40133", + "ident": "SVFG", + "type": "small_airport", + "name": "El Flagelo Airport", + "latitude_deg": "9.188332557678223", + "longitude_deg": "-67.01667022705078", + "elevation_ft": "663", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVFG" + }, + { + "id": "40134", + "ident": "SVFK", + "type": "small_airport", + "name": "La Fe de Cojedes Airport", + "latitude_deg": "9.483332633972168", + "longitude_deg": "-67.81666564941406", + "elevation_ft": "412", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "municipality": "La Mosca", + "scheduled_service": "no", + "gps_code": "SVFK" + }, + { + "id": "40135", + "ident": "SVFL", + "type": "small_airport", + "name": "Fundación Layera Airport", + "latitude_deg": "7.199999809265137", + "longitude_deg": "-68.13333129882812", + "elevation_ft": "219", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVFL" + }, + { + "id": "6282", + "ident": "SVFM", + "type": "medium_airport", + "name": "Generalissimo Francisco de Miranda Air Base", + "latitude_deg": "10.485033", + "longitude_deg": "-66.843513", + "elevation_ft": "2739", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-M", + "municipality": "La Carlota", + "scheduled_service": "no", + "gps_code": "SVFM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Generalissimo_Francisco_de_Miranda_Airbase" + }, + { + "id": "40136", + "ident": "SVFR", + "type": "small_airport", + "name": "El Frío Airport", + "latitude_deg": "7.823332786560059", + "longitude_deg": "-68.89833068847656", + "elevation_ft": "219", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "Guarico", + "scheduled_service": "no", + "gps_code": "SVFR" + }, + { + "id": "40137", + "ident": "SVFS", + "type": "small_airport", + "name": "Fagotrans Airport", + "latitude_deg": "9.401639938354492", + "longitude_deg": "-66.64309692382812", + "elevation_ft": "590", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-D", + "scheduled_service": "no", + "gps_code": "SVFS" + }, + { + "id": "40138", + "ident": "SVFT", + "type": "small_airport", + "name": "El Fuentero Airport", + "latitude_deg": "7.099999904632568", + "longitude_deg": "-69.58333587646484", + "elevation_ft": "420", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVFT" + }, + { + "id": "6283", + "ident": "SVFU", + "type": "small_airport", + "name": "La Fortuna Airport", + "latitude_deg": "7.5833330154418945", + "longitude_deg": "-71.46666717529297", + "elevation_ft": "417", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-S", + "municipality": "San Antonio de Caparo", + "scheduled_service": "no", + "gps_code": "SVFU" + }, + { + "id": "40139", + "ident": "SVFX", + "type": "small_airport", + "name": "La Fe de Apure Airport", + "latitude_deg": "7.2133331298828125", + "longitude_deg": "-69.49666595458984", + "elevation_ft": "442", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVFX" + }, + { + "id": "40140", + "ident": "SVFY", + "type": "small_airport", + "name": "Finca Yacurito Airport", + "latitude_deg": "9.033332824707031", + "longitude_deg": "-69.0999984741211", + "elevation_ft": "1706", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "scheduled_service": "no", + "gps_code": "SVFY" + }, + { + "id": "40141", + "ident": "SVGA", + "type": "small_airport", + "name": "Agropecuaria Gamma Airport", + "latitude_deg": "8.75", + "longitude_deg": "-70", + "elevation_ft": "495", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no", + "gps_code": "SVGA" + }, + { + "id": "6284", + "ident": "SVGC", + "type": "small_airport", + "name": "La Gran China Airport", + "latitude_deg": "9.777079582214355", + "longitude_deg": "-72.48680114746094", + "elevation_ft": "138", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SVGC" + }, + { + "id": "6285", + "ident": "SVGD", + "type": "medium_airport", + "name": "Guasdalito Airport", + "latitude_deg": "7.233333110809326", + "longitude_deg": "-70.80000305175781", + "elevation_ft": "426", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVGD", + "iata_code": "GDO" + }, + { + "id": "40142", + "ident": "SVGE", + "type": "small_airport", + "name": "Ganadería Pedernales Airport", + "latitude_deg": "9.210000038146973", + "longitude_deg": "-69.5816650390625", + "elevation_ft": "467", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "scheduled_service": "no", + "gps_code": "SVGE" + }, + { + "id": "40143", + "ident": "SVGG", + "type": "small_airport", + "name": "Agropecuaria Los Araguaneyes Airport", + "latitude_deg": "9.583333015441895", + "longitude_deg": "-63.04999923706055", + "elevation_ft": "507", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "scheduled_service": "no", + "gps_code": "SVGG" + }, + { + "id": "40144", + "ident": "SVGH", + "type": "small_airport", + "name": "La Guacharaca Airport", + "latitude_deg": "9.53499984741211", + "longitude_deg": "-66.7249984741211", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-D", + "scheduled_service": "no", + "gps_code": "SVGH" + }, + { + "id": "6286", + "ident": "SVGI", + "type": "medium_airport", + "name": "Guiria Airport", + "latitude_deg": "10.574077606200001", + "longitude_deg": "-62.3126678467", + "elevation_ft": "42", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-R", + "scheduled_service": "no", + "gps_code": "SVGI", + "iata_code": "GUI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guiria_Airport" + }, + { + "id": "40145", + "ident": "SVGL", + "type": "small_airport", + "name": "Agua Linda Airport", + "latitude_deg": "7.635000228881836", + "longitude_deg": "-70.8499984741211", + "elevation_ft": "417", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no", + "gps_code": "SVGL" + }, + { + "id": "40146", + "ident": "SVGP", + "type": "small_airport", + "name": "Guesipo Airport", + "latitude_deg": "9.633333206176758", + "longitude_deg": "-67.18333435058594", + "elevation_ft": "641", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVGP" + }, + { + "id": "40147", + "ident": "SVGR", + "type": "small_airport", + "name": "El Milagro Carabobo Airport", + "latitude_deg": "10.152999877929688", + "longitude_deg": "-68.37519836425781", + "elevation_ft": "2013", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-U", + "scheduled_service": "no", + "gps_code": "SVGR" + }, + { + "id": "32395", + "ident": "SVGT", + "type": "small_airport", + "name": "Guasipati Airport", + "latitude_deg": "7.474999904632568", + "longitude_deg": "-61.900001525878906", + "elevation_ft": "977", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVGT" + }, + { + "id": "6287", + "ident": "SVGU", + "type": "medium_airport", + "name": "Guanare Airport", + "latitude_deg": "9.026944160461426", + "longitude_deg": "-69.7551498413086", + "elevation_ft": "606", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "municipality": "Guanare", + "scheduled_service": "no", + "gps_code": "SVGU", + "iata_code": "GUQ" + }, + { + "id": "40148", + "ident": "SVGX", + "type": "small_airport", + "name": "Las Guadalupes Airport", + "latitude_deg": "8.749278", + "longitude_deg": "-63.556488", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "municipality": "Independencia", + "scheduled_service": "no", + "gps_code": "SVGX" + }, + { + "id": "40149", + "ident": "SVGZ", + "type": "small_airport", + "name": "La Garza Airport", + "latitude_deg": "7.949999809265137", + "longitude_deg": "-69.11666870117188", + "elevation_ft": "237", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVGZ" + }, + { + "id": "40150", + "ident": "SVHA", + "type": "small_airport", + "name": "Hato Altamira de Bolívar Airport", + "latitude_deg": "7.599999904632568", + "longitude_deg": "-63.21666717529297", + "elevation_ft": "1098", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVHA" + }, + { + "id": "40151", + "ident": "SVHC", + "type": "small_airport", + "name": "Hacienda El Caimito Airport", + "latitude_deg": "10.149999618530273", + "longitude_deg": "-72.18333435058594", + "elevation_ft": "138", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SVHC" + }, + { + "id": "6288", + "ident": "SVHD", + "type": "small_airport", + "name": "Hacienda El Calvario Airport", + "latitude_deg": "9.899999618530273", + "longitude_deg": "-72.55000305175781", + "elevation_ft": "264", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SVHD" + }, + { + "id": "40152", + "ident": "SVHE", + "type": "small_airport", + "name": "Hato Rancho Alegre Airport", + "latitude_deg": "9.566666603088379", + "longitude_deg": "-67.56666564941406", + "elevation_ft": "534", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVHE" + }, + { + "id": "6289", + "ident": "SVHG", + "type": "small_airport", + "name": "Higuerote Airport", + "latitude_deg": "10.462474", + "longitude_deg": "-66.092779", + "elevation_ft": "12", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-M", + "municipality": "Higuerote", + "scheduled_service": "yes", + "gps_code": "SVHG", + "iata_code": "HGE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Higuerote_Airport", + "keywords": "Sabana de Oro" + }, + { + "id": "6290", + "ident": "SVHH", + "type": "small_airport", + "name": "Churuguara Airport", + "latitude_deg": "10.808099746704102", + "longitude_deg": "-69.63839721679688", + "elevation_ft": "2461", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-I", + "municipality": "Churuguara", + "scheduled_service": "no", + "gps_code": "SVHH" + }, + { + "id": "40153", + "ident": "SVHK", + "type": "small_airport", + "name": "Hato la Guaca Airport", + "latitude_deg": "9.399999618530273", + "longitude_deg": "-67.78333282470703", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVHK" + }, + { + "id": "40154", + "ident": "SVHL", + "type": "small_airport", + "name": "Hacienda Carutal Airport", + "latitude_deg": "9.716667175292969", + "longitude_deg": "-66.78333282470703", + "elevation_ft": "1000", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-D", + "scheduled_service": "no", + "gps_code": "SVHL" + }, + { + "id": "40155", + "ident": "SVHM", + "type": "small_airport", + "name": "Hato Los Mamones Airport", + "latitude_deg": "9.333333015441895", + "longitude_deg": "-67.91666412353516", + "elevation_ft": "594", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-H", + "municipality": "Hato Los Mamomes", + "scheduled_service": "no", + "gps_code": "SVHM" + }, + { + "id": "40156", + "ident": "SVHN", + "type": "small_airport", + "name": "Hato La Chaconera Airport", + "latitude_deg": "8.105409622192383", + "longitude_deg": "-68.71910095214844", + "elevation_ft": "208", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no", + "gps_code": "SVHN" + }, + { + "id": "40157", + "ident": "SVHO", + "type": "small_airport", + "name": "El Oasis Airport", + "latitude_deg": "8.368220329284668", + "longitude_deg": "-69.95709991455078", + "elevation_ft": "396", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "municipality": "La Palmita", + "scheduled_service": "no", + "gps_code": "SVHO" + }, + { + "id": "40158", + "ident": "SVHP", + "type": "small_airport", + "name": "Hacienda El Paso Airport", + "latitude_deg": "10.713333129882812", + "longitude_deg": "-69.20833587646484", + "elevation_ft": "495", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-K", + "municipality": "Las Vegas del Tuy", + "scheduled_service": "no", + "gps_code": "SVHP" + }, + { + "id": "40159", + "ident": "SVHR", + "type": "small_airport", + "name": "Hato El Carito Airport", + "latitude_deg": "9.5", + "longitude_deg": "-67.94999694824219", + "elevation_ft": "256", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-H", + "municipality": "Los Marimares", + "scheduled_service": "no", + "gps_code": "SVHR" + }, + { + "id": "40160", + "ident": "SVHS", + "type": "small_airport", + "name": "Hato El Sesenta Airport", + "latitude_deg": "8.25", + "longitude_deg": "-65.58333587646484", + "elevation_ft": "499", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVHS" + }, + { + "id": "40161", + "ident": "SVHT", + "type": "small_airport", + "name": "Hato Altamira de Monagas Airport", + "latitude_deg": "9.366666793823242", + "longitude_deg": "-63.08333206176758", + "elevation_ft": "154", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "scheduled_service": "no", + "gps_code": "SVHT" + }, + { + "id": "40162", + "ident": "SVHX", + "type": "small_airport", + "name": "Hato La Candelaria Airport", + "latitude_deg": "8.683333396911621", + "longitude_deg": "-67.71666717529297", + "elevation_ft": "254", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVHX" + }, + { + "id": "40163", + "ident": "SVHY", + "type": "small_airport", + "name": "Hato Las Yeguas Airport", + "latitude_deg": "8.720000267028809", + "longitude_deg": "-68.47166442871094", + "elevation_ft": "1049", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-H", + "scheduled_service": "no", + "gps_code": "SVHY" + }, + { + "id": "31661", + "ident": "SVIC", + "type": "small_airport", + "name": "Icabarú Airport", + "latitude_deg": "4.336319923400879", + "longitude_deg": "-61.739601135253906", + "elevation_ft": "1574", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVIC", + "iata_code": "ICA" + }, + { + "id": "6291", + "ident": "SVIE", + "type": "small_airport", + "name": "Andrés Miguel Salazar Marcano Airport", + "latitude_deg": "10.794432", + "longitude_deg": "-63.98159", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-O", + "municipality": "Isla de Coche", + "scheduled_service": "yes", + "gps_code": "SVIE", + "iata_code": "ICC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Andr%C3%A9s_Miguel_Salazar_Marcano_Airport" + }, + { + "id": "40164", + "ident": "SVIM", + "type": "small_airport", + "name": "Hato El Caimán Airport", + "latitude_deg": "9.100000381469727", + "longitude_deg": "-69.62000274658203", + "elevation_ft": "462", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "scheduled_service": "no", + "gps_code": "SVIM" + }, + { + "id": "6292", + "ident": "SVJC", + "type": "medium_airport", + "name": "Josefa Camejo International Airport", + "latitude_deg": "11.78077507019043", + "longitude_deg": "-70.15149688720703", + "elevation_ft": "75", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-I", + "municipality": "Paraguaná", + "scheduled_service": "yes", + "gps_code": "SVJC", + "iata_code": "LSP" + }, + { + "id": "40165", + "ident": "SVJF", + "type": "small_airport", + "name": "Juan Florencio Airport", + "latitude_deg": "7.400000095367432", + "longitude_deg": "-67.98332977294922", + "elevation_ft": "187", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVJF" + }, + { + "id": "40166", + "ident": "SVJH", + "type": "small_airport", + "name": "Juancho Airport", + "latitude_deg": "8.179719924926758", + "longitude_deg": "-63.59600067138672", + "elevation_ft": "197", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "municipality": "Soledad", + "scheduled_service": "no", + "gps_code": "SVJH" + }, + { + "id": "40167", + "ident": "SVJI", + "type": "small_airport", + "name": "Hato La Lejanía Airport", + "latitude_deg": "9.097180366516113", + "longitude_deg": "-63.11859893798828", + "elevation_ft": "264", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "scheduled_service": "no", + "gps_code": "SVJI" + }, + { + "id": "40168", + "ident": "SVJJ", + "type": "small_airport", + "name": "Curujujul Airport", + "latitude_deg": "7.443333148956299", + "longitude_deg": "-67.79666900634766", + "elevation_ft": "321", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "Anzoategui", + "scheduled_service": "no", + "gps_code": "SVJJ" + }, + { + "id": "40169", + "ident": "SVJL", + "type": "small_airport", + "name": "Los Lajeros Airport", + "latitude_deg": "8.016667366027832", + "longitude_deg": "-67.38333129882812", + "elevation_ft": "132", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVJL" + }, + { + "id": "6293", + "ident": "SVJM", + "type": "medium_airport", + "name": "San Juan de Los Morros Airport", + "latitude_deg": "9.906952857971191", + "longitude_deg": "-67.379638671875", + "elevation_ft": "1404", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "municipality": "San Juan de los Morros", + "scheduled_service": "no", + "gps_code": "SVJM" + }, + { + "id": "40170", + "ident": "SVJO", + "type": "small_airport", + "name": "La Vigía Oeste Airport", + "latitude_deg": "9.666666984558105", + "longitude_deg": "-67.05000305175781", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVJO" + }, + { + "id": "40171", + "ident": "SVJU", + "type": "small_airport", + "name": "Hato La Laguna del Junco Airport", + "latitude_deg": "9.203088", + "longitude_deg": "-68.10817", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-H", + "scheduled_service": "no", + "gps_code": "SVJU" + }, + { + "id": "31718", + "ident": "SVKA", + "type": "small_airport", + "name": "Kavanayen Airport", + "latitude_deg": "5.632999897003174", + "longitude_deg": "-61.78300094604492", + "elevation_ft": "3900", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVKA", + "iata_code": "KAV" + }, + { + "id": "40172", + "ident": "SVKB", + "type": "small_airport", + "name": "La Calzada Airport", + "latitude_deg": "7.983333110809326", + "longitude_deg": "-70.0999984741211", + "elevation_ft": "291", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no", + "gps_code": "SVKB" + }, + { + "id": "40173", + "ident": "SVKC", + "type": "small_airport", + "name": "El Carrao Airport", + "latitude_deg": "8.539999961853027", + "longitude_deg": "-68.80500030517578", + "elevation_ft": "240", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "scheduled_service": "no", + "gps_code": "SVKC" + }, + { + "id": "40174", + "ident": "SVKI", + "type": "small_airport", + "name": "Piscuri Airport", + "latitude_deg": "7.54665994644165", + "longitude_deg": "-71.78839874267578", + "elevation_ft": "726", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVKI" + }, + { + "id": "40175", + "ident": "SVKL", + "type": "small_airport", + "name": "Las Clavellinas Airport", + "latitude_deg": "9.324999809265137", + "longitude_deg": "-70.9749984741211", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-L", + "municipality": "Las Clavellinasmer", + "scheduled_service": "no", + "gps_code": "SVKL" + }, + { + "id": "40176", + "ident": "SVKN", + "type": "small_airport", + "name": "Caño Negro Airport", + "latitude_deg": "5.5", + "longitude_deg": "-65.61833190917969", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no", + "gps_code": "SVKN" + }, + { + "id": "40177", + "ident": "SVKV", + "type": "small_airport", + "name": "Corral Viejo Airport", + "latitude_deg": "9.666666984558105", + "longitude_deg": "-70.96666717529297", + "elevation_ft": "14", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "municipality": "La Bombita", + "scheduled_service": "no", + "gps_code": "SVKV" + }, + { + "id": "40178", + "ident": "SVLA", + "type": "small_airport", + "name": "Las Adjuntas Airport", + "latitude_deg": "9.016667366027832", + "longitude_deg": "-63.75", + "elevation_ft": "534", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "municipality": "Las Colmenas", + "scheduled_service": "no", + "gps_code": "SVLA" + }, + { + "id": "40179", + "ident": "SVLB", + "type": "small_airport", + "name": "La Blanquilla Airport", + "latitude_deg": "11.820578575134277", + "longitude_deg": "-64.58621215820312", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-O", + "municipality": "La Blanquilla - Isla Margarita", + "scheduled_service": "no", + "gps_code": "SVLB" + }, + { + "id": "40180", + "ident": "SVLC", + "type": "small_airport", + "name": "El Lucero de Apure Airport", + "latitude_deg": "6.983333110809326", + "longitude_deg": "-68.06666564941406", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "El Lucero", + "scheduled_service": "no", + "gps_code": "SVLC" + }, + { + "id": "40181", + "ident": "SVLD", + "type": "small_airport", + "name": "Las Brisas Airport", + "latitude_deg": "7.203332901000977", + "longitude_deg": "-69.53666687011719", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "Mata de Vino", + "scheduled_service": "no", + "gps_code": "SVLD" + }, + { + "id": "6294", + "ident": "SVLF", + "type": "medium_airport", + "name": "La Fria Airport", + "latitude_deg": "8.239167213439941", + "longitude_deg": "-72.27102661132812", + "elevation_ft": "305", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-S", + "scheduled_service": "no", + "gps_code": "SVLF", + "iata_code": "LFR" + }, + { + "id": "40183", + "ident": "SVLG", + "type": "small_airport", + "name": "Las Majaguas Airport", + "latitude_deg": "9.649999618530273", + "longitude_deg": "-68.98332977294922", + "elevation_ft": "793", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "scheduled_service": "no", + "gps_code": "SVLG" + }, + { + "id": "40184", + "ident": "SVLH", + "type": "small_airport", + "name": "Las Delicias Airport", + "latitude_deg": "7.1666669845581055", + "longitude_deg": "-69.38333129882812", + "elevation_ft": "373", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "Banco del Medio", + "scheduled_service": "no", + "gps_code": "SVLH" + }, + { + "id": "40185", + "ident": "SVLI", + "type": "small_airport", + "name": "La Alcancía Airport", + "latitude_deg": "7.30698", + "longitude_deg": "-67.35287", + "elevation_ft": "46", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVLI" + }, + { + "id": "40186", + "ident": "SVLJ", + "type": "small_airport", + "name": "La Vieja Airport", + "latitude_deg": "9.683333396911621", + "longitude_deg": "-64.18333435058594", + "elevation_ft": "1262", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "municipality": "La Ceiba", + "scheduled_service": "no", + "gps_code": "SVLJ" + }, + { + "id": "40187", + "ident": "SVLK", + "type": "small_airport", + "name": "Hato Macolla Airport", + "latitude_deg": "6.1666669845581055", + "longitude_deg": "-69.16666412353516", + "elevation_ft": "296", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVLK" + }, + { + "id": "40188", + "ident": "SVLL", + "type": "small_airport", + "name": "Callejas Airport", + "latitude_deg": "8.008333206176758", + "longitude_deg": "-69.62666320800781", + "elevation_ft": "209", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "municipality": "Callejas", + "scheduled_service": "no", + "gps_code": "SVLL" + }, + { + "id": "6295", + "ident": "SVLM", + "type": "small_airport", + "name": "Las Flores Airport", + "latitude_deg": "9.497940063476562", + "longitude_deg": "-62.90130615234375", + "elevation_ft": "118", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "scheduled_service": "no", + "gps_code": "SVLM" + }, + { + "id": "40189", + "ident": "SVLN", + "type": "small_airport", + "name": "La Candelaria Airport", + "latitude_deg": "10.726699829101562", + "longitude_deg": "-68.33350372314453", + "elevation_ft": "420", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-I", + "scheduled_service": "no", + "gps_code": "SVLN" + }, + { + "id": "6296", + "ident": "SVLO", + "type": "small_airport", + "name": "La Orchila Airport", + "latitude_deg": "11.80823", + "longitude_deg": "-66.180768", + "elevation_ft": "5", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-W", + "municipality": "Isla La Orchila", + "scheduled_service": "no", + "gps_code": "SVLO" + }, + { + "id": "40190", + "ident": "SVLP", + "type": "small_airport", + "name": "Las Lagunitas Airport", + "latitude_deg": "6.933332920074463", + "longitude_deg": "-68.36666870117188", + "elevation_ft": "344", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVLP" + }, + { + "id": "40191", + "ident": "SVLS", + "type": "small_airport", + "name": "Las Corobas Airport", + "latitude_deg": "6.766666889190674", + "longitude_deg": "-68.3499984741211", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVLS" + }, + { + "id": "40192", + "ident": "SVLT", + "type": "small_airport", + "name": "La Argentina Airport", + "latitude_deg": "7.5833330154418945", + "longitude_deg": "-69.18333435058594", + "elevation_ft": "270", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVLT" + }, + { + "id": "40193", + "ident": "SVLU", + "type": "small_airport", + "name": "El Lechozo Airport", + "latitude_deg": "9.300000190734863", + "longitude_deg": "-66.67832946777344", + "elevation_ft": "529", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-D", + "municipality": "El Lechozo", + "scheduled_service": "no", + "gps_code": "SVLU" + }, + { + "id": "40194", + "ident": "SVLW", + "type": "small_airport", + "name": "Los Aguacates Airport", + "latitude_deg": "10.06833267211914", + "longitude_deg": "-68.02166748046875", + "elevation_ft": "1540", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-G", + "scheduled_service": "no", + "gps_code": "SVLW" + }, + { + "id": "40195", + "ident": "SVLX", + "type": "small_airport", + "name": "La Yaguita Airport", + "latitude_deg": "6.966667175292969", + "longitude_deg": "-69.3499984741211", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVLX" + }, + { + "id": "40196", + "ident": "SVLY", + "type": "small_airport", + "name": "La Yagua Airport", + "latitude_deg": "7.283332824707031", + "longitude_deg": "-68.53333282470703", + "elevation_ft": "393", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVLY" + }, + { + "id": "40197", + "ident": "SVLZ", + "type": "small_airport", + "name": "Las Cruces Airport", + "latitude_deg": "8.328880310058594", + "longitude_deg": "-68.75199890136719", + "elevation_ft": "494", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "scheduled_service": "no", + "gps_code": "SVLZ" + }, + { + "id": "40198", + "ident": "SVMA", + "type": "small_airport", + "name": "La Mona Airport", + "latitude_deg": "10.143199920654297", + "longitude_deg": "-68.1978988647461", + "elevation_ft": "2140", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-G", + "scheduled_service": "no", + "gps_code": "SVMA" + }, + { + "id": "40199", + "ident": "SVMB", + "type": "small_airport", + "name": "El Embrujo Airport", + "latitude_deg": "8.671667098999023", + "longitude_deg": "-66.50499725341797", + "elevation_ft": "720", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVMB" + }, + { + "id": "6297", + "ident": "SVMC", + "type": "medium_airport", + "name": "La Chinita International Airport", + "latitude_deg": "10.5582084656", + "longitude_deg": "-71.7278594971", + "elevation_ft": "239", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "municipality": "Maracaibo", + "scheduled_service": "yes", + "gps_code": "SVMC", + "iata_code": "MAR", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_Chinita_International_Airport" + }, + { + "id": "6298", + "ident": "SVMD", + "type": "medium_airport", + "name": "Alberto Carnevalli Airport", + "latitude_deg": "8.582078", + "longitude_deg": "-71.161041", + "elevation_ft": "5007", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-L", + "municipality": "Mérida", + "scheduled_service": "yes", + "gps_code": "SVMD", + "iata_code": "MRD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alberto_Carnevalli_Airport" + }, + { + "id": "40200", + "ident": "SVME", + "type": "small_airport", + "name": "Mapire Airport", + "latitude_deg": "7.7386298179626465", + "longitude_deg": "-64.71949768066406", + "elevation_ft": "196", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Y", + "scheduled_service": "no", + "gps_code": "SVME" + }, + { + "id": "40201", + "ident": "SVMF", + "type": "small_airport", + "name": "Mata Charo Airport", + "latitude_deg": "8.533332824707031", + "longitude_deg": "-69.94999694824219", + "elevation_ft": "377", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no", + "gps_code": "SVMF" + }, + { + "id": "6299", + "ident": "SVMG", + "type": "medium_airport", + "name": "Del Caribe Santiago Mariño International Airport", + "latitude_deg": "10.912603378295898", + "longitude_deg": "-63.96659851074219", + "elevation_ft": "74", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-O", + "municipality": "Isla Margarita", + "scheduled_service": "yes", + "gps_code": "SVMG", + "iata_code": "PMV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Del_Caribe_International_General_Santiago_Marino_Airport" + }, + { + "id": "40202", + "ident": "SVMH", + "type": "small_airport", + "name": "Macanillal Airport", + "latitude_deg": "7.316667079925537", + "longitude_deg": "-68", + "elevation_ft": "426", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVMH" + }, + { + "id": "6300", + "ident": "SVMI", + "type": "large_airport", + "name": "Simón Bolívar International Airport", + "latitude_deg": "10.601194", + "longitude_deg": "-66.991222", + "elevation_ft": "234", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-X", + "municipality": "Caracas", + "scheduled_service": "yes", + "gps_code": "SVMI", + "iata_code": "CCS", + "home_link": "http://www.aeropuerto-maiquetia.com.ve/web/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sim%C3%B3n_Bol%C3%ADvar_International_Airport", + "keywords": "Maiquetía \"Simón Bolívar\" International Airport" + }, + { + "id": "40203", + "ident": "SVMJ", + "type": "small_airport", + "name": "Hacienda Las Lomas Airport", + "latitude_deg": "10.598333358764648", + "longitude_deg": "-68.53500366210938", + "elevation_ft": "214", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-U", + "scheduled_service": "no", + "gps_code": "SVMJ" + }, + { + "id": "40204", + "ident": "SVMK", + "type": "small_airport", + "name": "El Milagro Cojedes Airport", + "latitude_deg": "9.229999542236328", + "longitude_deg": "-67.97000122070312", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-H", + "scheduled_service": "no", + "gps_code": "SVMK" + }, + { + "id": "40205", + "ident": "SVML", + "type": "small_airport", + "name": "El Milagro Sureste Airport", + "latitude_deg": "7.26544", + "longitude_deg": "-67.279643", + "elevation_ft": "230", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVML" + }, + { + "id": "40206", + "ident": "SVMM", + "type": "small_airport", + "name": "Mamón Airport", + "latitude_deg": "11.266667366027832", + "longitude_deg": "-70.25", + "elevation_ft": "151", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-I", + "scheduled_service": "no", + "gps_code": "SVMM" + }, + { + "id": "40207", + "ident": "SVMN", + "type": "small_airport", + "name": "Mene Grande Airport", + "latitude_deg": "9.803159713745117", + "longitude_deg": "-70.89219665527344", + "elevation_ft": "90", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "municipality": "Mene Grande", + "scheduled_service": "no", + "gps_code": "SVMN" + }, + { + "id": "40208", + "ident": "SVMO", + "type": "small_airport", + "name": "El Milagro Oeste Airport", + "latitude_deg": "7.683332920074463", + "longitude_deg": "-68.18333435058594", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVMO" + }, + { + "id": "6301", + "ident": "SVMP", + "type": "medium_airport", + "name": "Metropolitano Airport", + "latitude_deg": "10.133169174194336", + "longitude_deg": "-66.78782653808594", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-M", + "scheduled_service": "no", + "gps_code": "SVMP" + }, + { + "id": "40209", + "ident": "SVMQ", + "type": "small_airport", + "name": "Fundo la Marqueseña Airport", + "latitude_deg": "8.841667175292969", + "longitude_deg": "-70.03333282470703", + "elevation_ft": "646", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no", + "gps_code": "SVMQ" + }, + { + "id": "40210", + "ident": "SVMS", + "type": "small_airport", + "name": "Guasimal Airport", + "latitude_deg": "7.716667175292969", + "longitude_deg": "-67.98332977294922", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVMS" + }, + { + "id": "6302", + "ident": "SVMT", + "type": "medium_airport", + "name": "Maturín Airport", + "latitude_deg": "9.749023", + "longitude_deg": "-63.153348", + "elevation_ft": "224", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "municipality": "Maturín", + "scheduled_service": "yes", + "gps_code": "SVMT", + "iata_code": "MUN" + }, + { + "id": "40211", + "ident": "SVMV", + "type": "small_airport", + "name": "Maroa Airport", + "latitude_deg": "2.725057", + "longitude_deg": "-67.546875", + "elevation_ft": "501", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "municipality": "Maroa", + "scheduled_service": "no", + "gps_code": "SVMV" + }, + { + "id": "40212", + "ident": "SVMW", + "type": "small_airport", + "name": "Los Malabares Airport", + "latitude_deg": "7.616666793823242", + "longitude_deg": "-72.44999694824219", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-S", + "scheduled_service": "no", + "gps_code": "SVMW" + }, + { + "id": "40213", + "ident": "SVMX", + "type": "small_airport", + "name": "Mata Airport", + "latitude_deg": "9.199999809265137", + "longitude_deg": "-64.05000305175781", + "elevation_ft": "695", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "municipality": "Las Fernández", + "scheduled_service": "no", + "gps_code": "SVMX" + }, + { + "id": "40214", + "ident": "SVMY", + "type": "small_airport", + "name": "Manapiare Airport", + "latitude_deg": "5.308332920074463", + "longitude_deg": "-66.05000305175781", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no", + "gps_code": "SVMY" + }, + { + "id": "6303", + "ident": "SVMZ", + "type": "small_airport", + "name": "Mantecal Airport", + "latitude_deg": "7.55757999420166", + "longitude_deg": "-69.1416015625", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "Mantecal", + "scheduled_service": "no", + "gps_code": "SVMZ" + }, + { + "id": "40215", + "ident": "SVNA", + "type": "small_airport", + "name": "Macana Airport", + "latitude_deg": "9.923020362854004", + "longitude_deg": "-72.08049774169922", + "elevation_ft": "200", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SVNA" + }, + { + "id": "40216", + "ident": "SVNB", + "type": "small_airport", + "name": "Maripa Airport", + "latitude_deg": "7.400000095367432", + "longitude_deg": "-65.18333435058594", + "elevation_ft": "200", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVNB" + }, + { + "id": "40217", + "ident": "SVNE", + "type": "small_airport", + "name": "Las Mercedes Airport", + "latitude_deg": "7.766666889190674", + "longitude_deg": "-70.26667022705078", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no", + "gps_code": "SVNE" + }, + { + "id": "40218", + "ident": "SVNF", + "type": "small_airport", + "name": "Morichitos Airport", + "latitude_deg": "7.383333206176758", + "longitude_deg": "-68.83333587646484", + "elevation_ft": "210", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "Morichito", + "scheduled_service": "no", + "gps_code": "SVNF" + }, + { + "id": "40219", + "ident": "SVNG", + "type": "small_airport", + "name": "El Mango Airport", + "latitude_deg": "10.283332824707031", + "longitude_deg": "-72.46666717529297", + "elevation_ft": "393", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SVNG" + }, + { + "id": "40220", + "ident": "SVNJ", + "type": "small_airport", + "name": "Morichito II Airport", + "latitude_deg": "8.966667175292969", + "longitude_deg": "-66.08333587646484", + "elevation_ft": "361", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVNJ" + }, + { + "id": "40221", + "ident": "SVNK", + "type": "small_airport", + "name": "Hato Mikitole Airport", + "latitude_deg": "8.417778015136719", + "longitude_deg": "-63.567779541015625", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "scheduled_service": "no", + "gps_code": "SVNK" + }, + { + "id": "40222", + "ident": "SVNP", + "type": "small_airport", + "name": "Marisol Airport", + "latitude_deg": "9.133333206176758", + "longitude_deg": "-69.05500030517578", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "scheduled_service": "no", + "gps_code": "SVNP" + }, + { + "id": "40223", + "ident": "SVNR", + "type": "small_airport", + "name": "El Morichal Airport", + "latitude_deg": "6.983333110809326", + "longitude_deg": "-68.63333129882812", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVNR" + }, + { + "id": "40224", + "ident": "SVNT", + "type": "small_airport", + "name": "Mata de Turagua Airport", + "latitude_deg": "7.699999809265137", + "longitude_deg": "-69.30000305175781", + "elevation_ft": "354", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "La Guarandinga", + "scheduled_service": "no", + "gps_code": "SVNT" + }, + { + "id": "40225", + "ident": "SVNV", + "type": "small_airport", + "name": "Las Nieves Airport", + "latitude_deg": "6.5833330154418945", + "longitude_deg": "-66.19999694824219", + "elevation_ft": "866", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVNV" + }, + { + "id": "6304", + "ident": "SVNX", + "type": "small_airport", + "name": "Morichal Airport", + "latitude_deg": "8.828149795532227", + "longitude_deg": "-63.095001220703125", + "elevation_ft": "272", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "scheduled_service": "no", + "gps_code": "SVNX" + }, + { + "id": "40226", + "ident": "SVOA", + "type": "small_airport", + "name": "San Lorenzo De Barinas Airport", + "latitude_deg": "8.284722328186035", + "longitude_deg": "-69.91666412353516", + "elevation_ft": "374", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no", + "gps_code": "SVOA" + }, + { + "id": "40227", + "ident": "SVOB", + "type": "small_airport", + "name": "San Lorenzo De Falcón Airport", + "latitude_deg": "11.050000190734863", + "longitude_deg": "-68.48332977294922", + "elevation_ft": "137", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-I", + "scheduled_service": "no", + "gps_code": "SVOB" + }, + { + "id": "40228", + "ident": "SVOC", + "type": "small_airport", + "name": "San Luis Capanaparo Airport", + "latitude_deg": "6.966667175292969", + "longitude_deg": "-68.33333587646484", + "elevation_ft": "202", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVOC" + }, + { + "id": "40229", + "ident": "SVOD", + "type": "small_airport", + "name": "Santa Ana Airport", + "latitude_deg": "7.983333110809326", + "longitude_deg": "-67.6500015258789", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no", + "gps_code": "SVOD" + }, + { + "id": "6305", + "ident": "SVOE", + "type": "small_airport", + "name": "Sabaneta Airport", + "latitude_deg": "8.744139671325684", + "longitude_deg": "-69.91380310058594", + "elevation_ft": "530", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "municipality": "Sabaneta", + "scheduled_service": "no", + "gps_code": "SVOE" + }, + { + "id": "6306", + "ident": "SVOF", + "type": "small_airport", + "name": "Santa Bárbara de Monagas Airport", + "latitude_deg": "9.69849967956543", + "longitude_deg": "-63.62229919433594", + "elevation_ft": "804", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "scheduled_service": "no", + "gps_code": "SVOF" + }, + { + "id": "40230", + "ident": "SVOG", + "type": "small_airport", + "name": "Santa Bárbara del Amazonas Airport", + "latitude_deg": "3.941667079925537", + "longitude_deg": "-67.07833099365234", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no", + "gps_code": "SVOG" + }, + { + "id": "40231", + "ident": "SVOH", + "type": "small_airport", + "name": "San Silvestre Airport", + "latitude_deg": "8.350000381469727", + "longitude_deg": "-70.05000305175781", + "elevation_ft": "350", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no", + "gps_code": "SVOH" + }, + { + "id": "40232", + "ident": "SVOI", + "type": "small_airport", + "name": "Los Indios Airport", + "latitude_deg": "7.300000190734863", + "longitude_deg": "-68.06666564941406", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVOI" + }, + { + "id": "40233", + "ident": "SVOJ", + "type": "small_airport", + "name": "Ojo de Agua Airport", + "latitude_deg": "8.066666603088379", + "longitude_deg": "-70.18333435058594", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no", + "gps_code": "SVOJ" + }, + { + "id": "6307", + "ident": "SVOK", + "type": "small_airport", + "name": "Oritupano Airport", + "latitude_deg": "9.061304", + "longitude_deg": "-63.445116", + "elevation_ft": "485", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "municipality": "Oritupano", + "scheduled_service": "no", + "gps_code": "SVOK" + }, + { + "id": "40234", + "ident": "SVOL", + "type": "small_airport", + "name": "San Roque Airport", + "latitude_deg": "9.316666603088379", + "longitude_deg": "-64.63333129882812", + "elevation_ft": "590", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "municipality": "Santa Ana", + "scheduled_service": "no", + "gps_code": "SVOL" + }, + { + "id": "6308", + "ident": "SVON", + "type": "small_airport", + "name": "Oro Negro Airport", + "latitude_deg": "10.330699920654297", + "longitude_deg": "-71.32250213623047", + "elevation_ft": "164", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "municipality": "Cabimas", + "scheduled_service": "no", + "gps_code": "SVON", + "iata_code": "CBS" + }, + { + "id": "40235", + "ident": "SVOO", + "type": "small_airport", + "name": "Hato El Rosero Airport", + "latitude_deg": "7.650000095367432", + "longitude_deg": "-69.41666412353516", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVOO" + }, + { + "id": "40236", + "ident": "SVOP", + "type": "small_airport", + "name": "Los Oripopos Airport", + "latitude_deg": "7.599999904632568", + "longitude_deg": "-68.43333435058594", + "elevation_ft": "278", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVOP" + }, + { + "id": "40237", + "ident": "SVOQ", + "type": "small_airport", + "name": "Santa Mónica Airport", + "latitude_deg": "8.666666984558105", + "longitude_deg": "-67.66666412353516", + "elevation_ft": "836", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVOQ" + }, + { + "id": "40238", + "ident": "SVOR", + "type": "small_airport", + "name": "San Ramón Airport", + "latitude_deg": "8.091667175292969", + "longitude_deg": "-66.42166900634766", + "elevation_ft": "231", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVOR" + }, + { + "id": "40239", + "ident": "SVOS", + "type": "small_airport", + "name": "Los Cocos Airport", + "latitude_deg": "7.466667175292969", + "longitude_deg": "-68.66666412353516", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVOS" + }, + { + "id": "40240", + "ident": "SVOT", + "type": "small_airport", + "name": "San Pablo De Barinas Airport", + "latitude_deg": "7.766666889190674", + "longitude_deg": "-70.63333129882812", + "elevation_ft": "390", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no", + "gps_code": "SVOT" + }, + { + "id": "40241", + "ident": "SVOW", + "type": "small_airport", + "name": "Coco de Mono Airport", + "latitude_deg": "7.199999809265137", + "longitude_deg": "-68.51667022705078", + "elevation_ft": "380", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVOW" + }, + { + "id": "40242", + "ident": "SVOZ", + "type": "small_airport", + "name": "San Pablo Paeño Airport", + "latitude_deg": "7.783332824707031", + "longitude_deg": "-68.5", + "elevation_ft": "209", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVOZ" + }, + { + "id": "6309", + "ident": "SVPA", + "type": "medium_airport", + "name": "Cacique Aramare Airport", + "latitude_deg": "5.6199898719788", + "longitude_deg": "-67.606101989746", + "elevation_ft": "245", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "municipality": "Puerto Ayacucho", + "scheduled_service": "yes", + "gps_code": "SVPA", + "iata_code": "PYH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cacique_Aramare_Airport", + "keywords": "Casique Aramare Airport" + }, + { + "id": "26482", + "ident": "SVPB", + "type": "small_airport", + "name": "Punta Brava Airport", + "latitude_deg": "10.783900260925293", + "longitude_deg": "-68.34369659423828", + "elevation_ft": "19", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-I", + "scheduled_service": "no", + "gps_code": "SVPB" + }, + { + "id": "6310", + "ident": "SVPC", + "type": "medium_airport", + "name": "General Bartolome Salom International Airport", + "latitude_deg": "10.480500221252441", + "longitude_deg": "-68.072998046875", + "elevation_ft": "32", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-G", + "scheduled_service": "no", + "gps_code": "SVPC", + "iata_code": "PBL" + }, + { + "id": "40244", + "ident": "SVPD", + "type": "small_airport", + "name": "Hato La Ponderosa Airport", + "latitude_deg": "7.099999904632568", + "longitude_deg": "-67.9000015258789", + "elevation_ft": "257", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVPD" + }, + { + "id": "6311", + "ident": "SVPE", + "type": "small_airport", + "name": "Pedernales Airport", + "latitude_deg": "9.979240417480469", + "longitude_deg": "-62.228599548339844", + "elevation_ft": "25", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Y", + "scheduled_service": "no", + "gps_code": "SVPE", + "iata_code": "PDZ" + }, + { + "id": "40245", + "ident": "SVPF", + "type": "small_airport", + "name": "Pariaguán Airport", + "latitude_deg": "8.819120407104492", + "longitude_deg": "-64.73970031738281", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "municipality": "Pariaguán", + "scheduled_service": "no", + "gps_code": "SVPF" + }, + { + "id": "40246", + "ident": "SVPG", + "type": "small_airport", + "name": "El Progreso Airport", + "latitude_deg": "7.133333206176758", + "longitude_deg": "-68.58333587646484", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVPG" + }, + { + "id": "40247", + "ident": "SVPH", + "type": "small_airport", + "name": "Perai-Tepuy Airport", + "latitude_deg": "4.570275", + "longitude_deg": "-61.520262", + "elevation_ft": "2953", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "municipality": "Parai-tepuí", + "scheduled_service": "no", + "gps_code": "SVPX", + "iata_code": "PPH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Parai-tepuí_Airport", + "keywords": "SVPH" + }, + { + "id": "40248", + "ident": "SVPI", + "type": "small_airport", + "name": "El Paují Airport", + "latitude_deg": "4.466667175292969", + "longitude_deg": "-61.59333419799805", + "elevation_ft": "2716", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVPI" + }, + { + "id": "40249", + "ident": "SVPJ", + "type": "small_airport", + "name": "Pesurca Airport", + "latitude_deg": "6.283332824707031", + "longitude_deg": "-69.31666564941406", + "elevation_ft": "726", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVPJ" + }, + { + "id": "40250", + "ident": "SVPK", + "type": "small_airport", + "name": "Las Palmeras Airport", + "latitude_deg": "7.633333206176758", + "longitude_deg": "-69.36666870117188", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVPK" + }, + { + "id": "40251", + "ident": "SVPL", + "type": "small_airport", + "name": "El Pueblito Airport", + "latitude_deg": "7.816667079925537", + "longitude_deg": "-62.71666717529297", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVPL" + }, + { + "id": "6312", + "ident": "SVPM", + "type": "medium_airport", + "name": "Paramillo Airport", + "latitude_deg": "7.8013200759887695", + "longitude_deg": "-72.2029037475586", + "elevation_ft": "3314", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-S", + "scheduled_service": "no", + "gps_code": "SVPM", + "iata_code": "SCI" + }, + { + "id": "40252", + "ident": "SVPN", + "type": "small_airport", + "name": "Espino Airport", + "latitude_deg": "8.56350040435791", + "longitude_deg": "-66.01830291748047", + "elevation_ft": "689", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVPN" + }, + { + "id": "40253", + "ident": "SVPO", + "type": "small_airport", + "name": "Hato El Porvenir Airport", + "latitude_deg": "7.550000190734863", + "longitude_deg": "-68.25", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVPO" + }, + { + "id": "6313", + "ident": "SVPP", + "type": "small_airport", + "name": "Luepa Airport", + "latitude_deg": "5.792679786682129", + "longitude_deg": "-61.44020080566406", + "elevation_ft": "4250", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVPP" + }, + { + "id": "6315", + "ident": "SVPR", + "type": "medium_airport", + "name": "General Manuel Carlos Piar International Airport", + "latitude_deg": "8.288530349731445", + "longitude_deg": "-62.760398864746094", + "elevation_ft": "472", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "municipality": "Puerto Ordaz-Ciudad Guayana", + "scheduled_service": "yes", + "gps_code": "SVPR", + "iata_code": "PZO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manuel_Carlos_Piar_Guayana_Airport" + }, + { + "id": "40254", + "ident": "SVPS", + "type": "small_airport", + "name": "Hacienda La Pastora Airport", + "latitude_deg": "9.890000343322754", + "longitude_deg": "-70.12166595458984", + "elevation_ft": "1084", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-K", + "municipality": "San Pedro", + "scheduled_service": "no", + "gps_code": "SVPS" + }, + { + "id": "6316", + "ident": "SVPT", + "type": "medium_airport", + "name": "Palmarito Airport", + "latitude_deg": "7.566669940948486", + "longitude_deg": "-70.18329620361328", + "elevation_ft": "347", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "Palmarito", + "scheduled_service": "no", + "gps_code": "SVPT", + "iata_code": "PTM" + }, + { + "id": "40255", + "ident": "SVPU", + "type": "small_airport", + "name": "La Paragua Airport", + "latitude_deg": "6.835093", + "longitude_deg": "-63.34949", + "elevation_ft": "797", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "municipality": "La Paragua", + "scheduled_service": "no", + "gps_code": "SVPU" + }, + { + "id": "40256", + "ident": "SVPV", + "type": "small_airport", + "name": "Pedraza La Vieja Airport", + "latitude_deg": "7.9166669845581055", + "longitude_deg": "-71.03333282470703", + "elevation_ft": "554", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "municipality": "Pedraza La Vieja", + "scheduled_service": "no", + "gps_code": "SVPV" + }, + { + "id": "40257", + "ident": "SVPW", + "type": "small_airport", + "name": "Pelayo Airport", + "latitude_deg": "9.01309", + "longitude_deg": "-63.664095", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "municipality": "Pedro María Freites", + "scheduled_service": "no", + "gps_code": "SVPW" + }, + { + "id": "40259", + "ident": "SVPY", + "type": "small_airport", + "name": "Palma Sola Airport", + "latitude_deg": "10.489999771118164", + "longitude_deg": "-68.17500305175781", + "elevation_ft": "32", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-G", + "scheduled_service": "no", + "gps_code": "SVPY" + }, + { + "id": "40260", + "ident": "SVPZ", + "type": "small_airport", + "name": "La Paz Airport", + "latitude_deg": "7.488333225250244", + "longitude_deg": "-68.99333190917969", + "elevation_ft": "344", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVPZ" + }, + { + "id": "40261", + "ident": "SVQA", + "type": "small_airport", + "name": "Santa Rosalía Airport", + "latitude_deg": "7.466667175292969", + "longitude_deg": "-65.56666564941406", + "elevation_ft": "446", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVQA" + }, + { + "id": "40262", + "ident": "SVQB", + "type": "small_airport", + "name": "Santa Elena de Río Claro Airport", + "latitude_deg": "7.050000190734863", + "longitude_deg": "-67.76667022705078", + "elevation_ft": "219", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVQB" + }, + { + "id": "40263", + "ident": "SVQC", + "type": "small_airport", + "name": "Santa María La Tigra Airport", + "latitude_deg": "6.5", + "longitude_deg": "-67.13333129882812", + "elevation_ft": "164", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVQC" + }, + { + "id": "40264", + "ident": "SVQD", + "type": "small_airport", + "name": "Santa Juana Airport", + "latitude_deg": "8.958333015441895", + "longitude_deg": "-65.13833618164062", + "elevation_ft": "705", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVQD" + }, + { + "id": "40265", + "ident": "SVQI", + "type": "small_airport", + "name": "Tucupido Airport", + "latitude_deg": "9.350000381469727", + "longitude_deg": "-65.80000305175781", + "elevation_ft": "377", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVQI" + }, + { + "id": "40266", + "ident": "SVQJ", + "type": "small_airport", + "name": "La Trinidad De Apure Airport", + "latitude_deg": "7.233333110809326", + "longitude_deg": "-69.0999984741211", + "elevation_ft": "267", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "La Trinidad", + "scheduled_service": "no", + "gps_code": "SVQJ" + }, + { + "id": "40267", + "ident": "SVQK", + "type": "small_airport", + "name": "Tierra Negra Airport", + "latitude_deg": "9.678333282470703", + "longitude_deg": "-66.163330078125", + "elevation_ft": "924", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVQK" + }, + { + "id": "40268", + "ident": "SVQL", + "type": "small_airport", + "name": "Tocomita Airport", + "latitude_deg": "7.757760047912598", + "longitude_deg": "-63.082298278808594", + "elevation_ft": "590", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "municipality": "Gurí", + "scheduled_service": "no", + "gps_code": "SVQL" + }, + { + "id": "40269", + "ident": "SVQN", + "type": "small_airport", + "name": "Torunos Airport", + "latitude_deg": "8.316666603088379", + "longitude_deg": "-70.05000305175781", + "elevation_ft": "337", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no", + "gps_code": "SVQN" + }, + { + "id": "40270", + "ident": "SVQO", + "type": "small_airport", + "name": "Tocuyito Airport", + "latitude_deg": "10.082300186157227", + "longitude_deg": "-68.11900329589844", + "elevation_ft": "1710", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-G", + "scheduled_service": "no", + "gps_code": "SVQO" + }, + { + "id": "40271", + "ident": "SVQP", + "type": "small_airport", + "name": "Miquelon Airport", + "latitude_deg": "9.050000190734863", + "longitude_deg": "-71.36805725097656", + "elevation_ft": "18", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SVQP" + }, + { + "id": "40272", + "ident": "SVQQ", + "type": "small_airport", + "name": "Los Conucos Airport", + "latitude_deg": "9.850000381469727", + "longitude_deg": "-65.31666564941406", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "scheduled_service": "no", + "gps_code": "SVQQ" + }, + { + "id": "40273", + "ident": "SVQR", + "type": "small_airport", + "name": "Santa Rita Airport", + "latitude_deg": "7.516666889190674", + "longitude_deg": "-68.68333435058594", + "elevation_ft": "367", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "El Diero", + "scheduled_service": "no", + "gps_code": "SVQR" + }, + { + "id": "40274", + "ident": "SVQS", + "type": "small_airport", + "name": "Santa Rita Airport", + "latitude_deg": "7.6666669845581055", + "longitude_deg": "-66.80000305175781", + "elevation_ft": "210", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVQS" + }, + { + "id": "40275", + "ident": "SVQT", + "type": "small_airport", + "name": "Los Quitasoles Airport", + "latitude_deg": "7.633333206176758", + "longitude_deg": "-69.92500305175781", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVQT" + }, + { + "id": "6317", + "ident": "SVQU", + "type": "small_airport", + "name": "Santa Rosa de Guanare Airport", + "latitude_deg": "8.749580383300781", + "longitude_deg": "-69.72250366210938", + "elevation_ft": "429", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "municipality": "San Isidro", + "scheduled_service": "no", + "gps_code": "SVQU" + }, + { + "id": "40276", + "ident": "SVQW", + "type": "small_airport", + "name": "Tamatal Airport", + "latitude_deg": "8.833333015441895", + "longitude_deg": "-66.36666870117188", + "elevation_ft": "379", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVQW" + }, + { + "id": "40277", + "ident": "SVQX", + "type": "small_airport", + "name": "Tamayare Airport", + "latitude_deg": "10.566666603088379", + "longitude_deg": "-70.13333129882812", + "elevation_ft": "2100", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-K", + "municipality": "El Paso", + "scheduled_service": "no", + "gps_code": "SVQX" + }, + { + "id": "40278", + "ident": "SVQY", + "type": "small_airport", + "name": "Tapaquire Airport", + "latitude_deg": "7.909999847412109", + "longitude_deg": "-64.05833435058594", + "elevation_ft": "475", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVQY" + }, + { + "id": "40279", + "ident": "SVQZ", + "type": "small_airport", + "name": "Santa Rosa de Barinas Airport", + "latitude_deg": "8.433333396911621", + "longitude_deg": "-69.73332977294922", + "elevation_ft": "354", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no", + "gps_code": "SVQZ" + }, + { + "id": "6318", + "ident": "SVRA", + "type": "small_airport", + "name": "Río de Agua Airport", + "latitude_deg": "10.571700096130371", + "longitude_deg": "-62.9922981262207", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-R", + "scheduled_service": "no", + "gps_code": "SVRA" + }, + { + "id": "6319", + "ident": "SVRB", + "type": "small_airport", + "name": "Cumarebo Airport", + "latitude_deg": "11.512376", + "longitude_deg": "-69.314507", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-I", + "municipality": "Tocópero", + "scheduled_service": "no", + "gps_code": "SVRB" + }, + { + "id": "40280", + "ident": "SVRC", + "type": "small_airport", + "name": "El Rocío Airport", + "latitude_deg": "10.783332824707031", + "longitude_deg": "-68.55000305175781", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-I", + "scheduled_service": "no", + "gps_code": "SVRC" + }, + { + "id": "40281", + "ident": "SVRE", + "type": "small_airport", + "name": "Aracay Abajo Airport", + "latitude_deg": "8.393333435058594", + "longitude_deg": "-65.86666870117188", + "elevation_ft": "420", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVRE" + }, + { + "id": "40282", + "ident": "SVRF", + "type": "closed", + "name": "La Reforma Airport", + "latitude_deg": "9.119999885559999", + "longitude_deg": "-66.4233322144", + "elevation_ft": "500", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVRF" + }, + { + "id": "40283", + "ident": "SVRG", + "type": "small_airport", + "name": "Rancho Grande de Apure Airport", + "latitude_deg": "7.349999904632568", + "longitude_deg": "-69.3499984741211", + "elevation_ft": "918", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "La Leona", + "scheduled_service": "no", + "gps_code": "SVRG" + }, + { + "id": "40284", + "ident": "SVRH", + "type": "small_airport", + "name": "Rancho Grande de Táchira Airport", + "latitude_deg": "7.616666793823242", + "longitude_deg": "-71.98332977294922", + "elevation_ft": "315", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-S", + "scheduled_service": "no", + "gps_code": "SVRH" + }, + { + "id": "40285", + "ident": "SVRI", + "type": "small_airport", + "name": "Riecito Airport", + "latitude_deg": "6.784060001373291", + "longitude_deg": "-68.86509704589844", + "elevation_ft": "442", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "Caño Riecito", + "scheduled_service": "no", + "gps_code": "SVRI" + }, + { + "id": "40286", + "ident": "SVRK", + "type": "small_airport", + "name": "Los Arrecifes Airport", + "latitude_deg": "9.166666984558105", + "longitude_deg": "-67.75", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVRK" + }, + { + "id": "40287", + "ident": "SVRL", + "type": "small_airport", + "name": "San Pancracio Airport", + "latitude_deg": "8.516667366027832", + "longitude_deg": "-69.64167022705078", + "elevation_ft": "2034", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no", + "gps_code": "SVRL" + }, + { + "id": "40288", + "ident": "SVRM", + "type": "small_airport", + "name": "Hato La Romereña Airport", + "latitude_deg": "9.5", + "longitude_deg": "-67.66666412353516", + "elevation_ft": "665", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVRM" + }, + { + "id": "40289", + "ident": "SVRN", + "type": "small_airport", + "name": "El Terrón Airport", + "latitude_deg": "9.383333206176758", + "longitude_deg": "-63.266666412353516", + "elevation_ft": "376", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "scheduled_service": "no", + "gps_code": "SVRN" + }, + { + "id": "40290", + "ident": "SVRO", + "type": "small_airport", + "name": "El Rosario Airport", + "latitude_deg": "10.436667442321777", + "longitude_deg": "-63.91666793823242", + "elevation_ft": "693", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-R", + "scheduled_service": "no", + "gps_code": "SVRO" + }, + { + "id": "40291", + "ident": "SVRQ", + "type": "small_airport", + "name": "Rosetta Airport", + "latitude_deg": "5.433332920074463", + "longitude_deg": "-66.13417053222656", + "elevation_ft": "550", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no", + "gps_code": "SVRQ" + }, + { + "id": "40292", + "ident": "SVRR", + "type": "small_airport", + "name": "Carrao Airport", + "latitude_deg": "6.238992", + "longitude_deg": "-62.830839", + "elevation_ft": "1542", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVRR" + }, + { + "id": "40293", + "ident": "SVRS", + "type": "small_airport", + "name": "Los Roques Airport", + "latitude_deg": "11.946177", + "longitude_deg": "-66.669836", + "elevation_ft": "17", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-W", + "municipality": "Gran Roque Island", + "scheduled_service": "yes", + "gps_code": "SVRS", + "iata_code": "LRV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Los_Roques_Airport" + }, + { + "id": "40294", + "ident": "SVRT", + "type": "small_airport", + "name": "Corocito Airport", + "latitude_deg": "7.050000190734863", + "longitude_deg": "-68.56666564941406", + "elevation_ft": "354", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVRT" + }, + { + "id": "40295", + "ident": "SVRU", + "type": "small_airport", + "name": "Roblecito Airport", + "latitude_deg": "9.200220108032227", + "longitude_deg": "-66.31111145019531", + "elevation_ft": "459", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVRU" + }, + { + "id": "40296", + "ident": "SVRW", + "type": "small_airport", + "name": "Rosario Airport", + "latitude_deg": "9.199999809265137", + "longitude_deg": "-72.38333129882812", + "elevation_ft": "118", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SVRW" + }, + { + "id": "6320", + "ident": "SVRX", + "type": "small_airport", + "name": "Hacienda Río Yaza Airport", + "latitude_deg": "9.843469619750977", + "longitude_deg": "-72.54720306396484", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SVRX" + }, + { + "id": "40297", + "ident": "SVRY", + "type": "small_airport", + "name": "El Merey Airport", + "latitude_deg": "8.166666984558105", + "longitude_deg": "-62.83333206176758", + "elevation_ft": "242", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVRY" + }, + { + "id": "40298", + "ident": "SVRZ", + "type": "small_airport", + "name": "El Corozo Airport", + "latitude_deg": "8.466667175292969", + "longitude_deg": "-66.03333282470703", + "elevation_ft": "590", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVRZ" + }, + { + "id": "24677", + "ident": "SVS", + "type": "small_airport", + "name": "Stevens Village Airport", + "latitude_deg": "66.0172", + "longitude_deg": "-149.0545", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Stevens Village", + "scheduled_service": "no", + "gps_code": "SVS", + "iata_code": "SVS", + "local_code": "SVS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stevens_Village_Airport" + }, + { + "id": "6321", + "ident": "SVSA", + "type": "medium_airport", + "name": "San Antonio Del Tachira Airport", + "latitude_deg": "7.840829849243164", + "longitude_deg": "-72.439697265625", + "elevation_ft": "1312", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-S", + "scheduled_service": "yes", + "gps_code": "SVSA", + "iata_code": "SVZ" + }, + { + "id": "6322", + "ident": "SVSB", + "type": "small_airport", + "name": "Santa Bárbara de Barinas Airport", + "latitude_deg": "7.803514003753662", + "longitude_deg": "-71.16571807861328", + "elevation_ft": "590", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "municipality": "Santa Bárbara", + "scheduled_service": "no", + "gps_code": "SVSB", + "iata_code": "SBB" + }, + { + "id": "40299", + "ident": "SVSC", + "type": "small_airport", + "name": "San Carlos Río Negro Airport", + "latitude_deg": "1.9166669845581055", + "longitude_deg": "-67.05000305175781", + "elevation_ft": "367", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no", + "gps_code": "SVSC" + }, + { + "id": "40300", + "ident": "SVSD", + "type": "small_airport", + "name": "Sabana Dulce Airport", + "latitude_deg": "8.816666603088379", + "longitude_deg": "-69.63333129882812", + "elevation_ft": "390", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "scheduled_service": "no", + "gps_code": "SVSD" + }, + { + "id": "6323", + "ident": "SVSE", + "type": "medium_airport", + "name": "Santa Elena de Uairen Airport", + "latitude_deg": "4.554999828338623", + "longitude_deg": "-61.150001525878906", + "elevation_ft": "2938", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVSE", + "iata_code": "SNV" + }, + { + "id": "40301", + "ident": "SVSF", + "type": "small_airport", + "name": "San Antonio De Falcon Airport", + "latitude_deg": "11.050000190734863", + "longitude_deg": "-68.38500213623047", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-I", + "scheduled_service": "no", + "gps_code": "SVSF" + }, + { + "id": "40302", + "ident": "SVSG", + "type": "small_airport", + "name": "San Antonio De Barinas Airport", + "latitude_deg": "8.566666603088379", + "longitude_deg": "-70.05000305175781", + "elevation_ft": "460", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "municipality": "Barinas", + "scheduled_service": "no", + "gps_code": "SVSG" + }, + { + "id": "40303", + "ident": "SVSH", + "type": "small_airport", + "name": "San Juan De Río Claro Airport", + "latitude_deg": "7.18416690826416", + "longitude_deg": "-67.16805267333984", + "elevation_ft": "144", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVSH" + }, + { + "id": "40304", + "ident": "SVSI", + "type": "small_airport", + "name": "Agropecuaria San Francisco Airport", + "latitude_deg": "8.949999809265137", + "longitude_deg": "-68.08333587646484", + "elevation_ft": "249", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-H", + "scheduled_service": "no", + "gps_code": "SVSI" + }, + { + "id": "40305", + "ident": "SVSJ", + "type": "small_airport", + "name": "Central Bolívar Airport", + "latitude_deg": "8.916666984558105", + "longitude_deg": "-71.93333435058594", + "elevation_ft": "39", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SVSJ" + }, + { + "id": "40306", + "ident": "SVSK", + "type": "small_airport", + "name": "Nuestra Señora del Socorro Airport", + "latitude_deg": "9.778332710266113", + "longitude_deg": "-68.17500305175781", + "elevation_ft": "485", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-H", + "scheduled_service": "no", + "gps_code": "SVSK" + }, + { + "id": "40307", + "ident": "SVSL", + "type": "small_airport", + "name": "Hacienda Santa Elena de Mirand Airport", + "latitude_deg": "10.316666603088379", + "longitude_deg": "-66.30000305175781", + "elevation_ft": "233", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-M", + "scheduled_service": "no", + "gps_code": "SVSL" + }, + { + "id": "40308", + "ident": "SVSM", + "type": "small_airport", + "name": "Fundo Santa María Airport", + "latitude_deg": "8.321666717529297", + "longitude_deg": "-70.24666595458984", + "elevation_ft": "400", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no", + "gps_code": "SVSM" + }, + { + "id": "6324", + "ident": "SVSN", + "type": "small_airport", + "name": "Los Siete Samanes Airport", + "latitude_deg": "8.875639915466309", + "longitude_deg": "-66.83989715576172", + "elevation_ft": "394", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVSN" + }, + { + "id": "6325", + "ident": "SVSO", + "type": "medium_airport", + "name": "Mayor Buenaventura Vivas International Airport", + "latitude_deg": "7.56538", + "longitude_deg": "-72.035103", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-S", + "municipality": "Santo Domingo", + "scheduled_service": "yes", + "gps_code": "SVSO", + "iata_code": "STD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mayor_Buenaventura_Vivas_Airport" + }, + { + "id": "6326", + "ident": "SVSP", + "type": "medium_airport", + "name": "Sub Teniente Nestor Arias Airport", + "latitude_deg": "10.2787", + "longitude_deg": "-68.755203", + "elevation_ft": "761", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-U", + "municipality": "San Felipe", + "scheduled_service": "no", + "gps_code": "SVSP", + "iata_code": "SNF" + }, + { + "id": "40309", + "ident": "SVSQ", + "type": "small_airport", + "name": "San Leonardo Airport", + "latitude_deg": "7.033332824707031", + "longitude_deg": "-68.33333587646484", + "elevation_ft": "222", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVSQ" + }, + { + "id": "6327", + "ident": "SVSR", + "type": "medium_airport", + "name": "San Fernando De Apure Airport", + "latitude_deg": "7.883319854736328", + "longitude_deg": "-67.44400024414062", + "elevation_ft": "154", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "Inglaterra", + "scheduled_service": "no", + "gps_code": "SVSR", + "iata_code": "SFD" + }, + { + "id": "40310", + "ident": "SVSS", + "type": "small_airport", + "name": "Hacienda San José Airport", + "latitude_deg": "9.466667175292969", + "longitude_deg": "-71.03333282470703", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-T", + "municipality": "San José de Trujillo", + "scheduled_service": "no", + "gps_code": "SVSS" + }, + { + "id": "6328", + "ident": "SVST", + "type": "medium_airport", + "name": "San Tomé Airport", + "latitude_deg": "8.9451465606689", + "longitude_deg": "-64.151084899902", + "elevation_ft": "861", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "municipality": "El Tigre", + "scheduled_service": "yes", + "gps_code": "SVST", + "iata_code": "SOM", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Tom%C3%A9_Airport", + "keywords": "Don Edmundo Barrios, San José de Guanipa" + }, + { + "id": "40311", + "ident": "SVSU", + "type": "small_airport", + "name": "San Benito Airport", + "latitude_deg": "10.30222225189209", + "longitude_deg": "-72.0522232055664", + "elevation_ft": "75", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SVSU" + }, + { + "id": "40312", + "ident": "SVSW", + "type": "small_airport", + "name": "San Francisco De Carabobo Airport", + "latitude_deg": "10.102222442626953", + "longitude_deg": "-68.08333587646484", + "elevation_ft": "1484", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-G", + "scheduled_service": "no", + "gps_code": "SVSW" + }, + { + "id": "40313", + "ident": "SVSX", + "type": "small_airport", + "name": "San Juan de los Cayos Airport", + "latitude_deg": "11.175000190734863", + "longitude_deg": "-68.42166900634766", + "elevation_ft": "165", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-I", + "scheduled_service": "no", + "gps_code": "SVSX" + }, + { + "id": "40314", + "ident": "SVSY", + "type": "small_airport", + "name": "San Francisco de Mérida Airport", + "latitude_deg": "8.800000190734863", + "longitude_deg": "-71.58333587646484", + "elevation_ft": "99", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-L", + "scheduled_service": "no", + "gps_code": "SVSY" + }, + { + "id": "6329", + "ident": "SVSZ", + "type": "medium_airport", + "name": "Santa Bárbara del Zulia Airport", + "latitude_deg": "8.974550247192383", + "longitude_deg": "-71.94325256347656", + "elevation_ft": "32", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SVSZ", + "iata_code": "STB" + }, + { + "id": "40316", + "ident": "SVTB", + "type": "small_airport", + "name": "Turapa Airport", + "latitude_deg": "7.400000095367432", + "longitude_deg": "-64.36666870117188", + "elevation_ft": "390", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVTB" + }, + { + "id": "6330", + "ident": "SVTC", + "type": "medium_airport", + "name": "Tucupita Airport", + "latitude_deg": "9.088994026184082", + "longitude_deg": "-62.094173431396484", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Y", + "municipality": "Tucupita", + "scheduled_service": "no", + "gps_code": "SVTC", + "iata_code": "TUV" + }, + { + "id": "40317", + "ident": "SVTD", + "type": "small_airport", + "name": "La Estacada Airport", + "latitude_deg": "7.400000095367432", + "longitude_deg": "-69.06666564941406", + "elevation_ft": "360", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "La Estacada", + "scheduled_service": "no", + "gps_code": "SVTD" + }, + { + "id": "40318", + "ident": "SVTE", + "type": "small_airport", + "name": "Antabare Airport", + "latitude_deg": "6.483333110809326", + "longitude_deg": "-62.883331298828125", + "elevation_ft": "1204", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVTE" + }, + { + "id": "40319", + "ident": "SVTF", + "type": "small_airport", + "name": "La Trinidad de Ferro Airport", + "latitude_deg": "7.400000095367432", + "longitude_deg": "-67.94999694824219", + "elevation_ft": "393", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVTF" + }, + { + "id": "40320", + "ident": "SVTG", + "type": "small_airport", + "name": "La Tigra Airport", + "latitude_deg": "7.633333206176758", + "longitude_deg": "-68.69999694824219", + "elevation_ft": "360", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVTG" + }, + { + "id": "40321", + "ident": "SVTJ", + "type": "small_airport", + "name": "Central Matilde Airport", + "latitude_deg": "10.157899856567383", + "longitude_deg": "-68.86160278320312", + "elevation_ft": "866", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-U", + "municipality": "central Matilde", + "scheduled_service": "no", + "gps_code": "SVTJ" + }, + { + "id": "6331", + "ident": "SVTK", + "type": "small_airport", + "name": "La Trinidad de Orichuna Airport", + "latitude_deg": "7.108084", + "longitude_deg": "-69.789227", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "La Trinidad de Orichuna", + "scheduled_service": "no", + "gps_code": "SVTK" + }, + { + "id": "40322", + "ident": "SVTL", + "type": "small_airport", + "name": "La Centella Airport", + "latitude_deg": "6.941667079925537", + "longitude_deg": "-65.89167022705078", + "elevation_ft": "839", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVTL" + }, + { + "id": "6332", + "ident": "SVTM", + "type": "medium_airport", + "name": "Tumeremo Airport", + "latitude_deg": "7.24938", + "longitude_deg": "-61.52893", + "elevation_ft": "345", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVTM", + "iata_code": "TMO" + }, + { + "id": "40323", + "ident": "SVTN", + "type": "small_airport", + "name": "La Trinidad de Barinas Airport", + "latitude_deg": "8.133333206176758", + "longitude_deg": "-68.66666412353516", + "elevation_ft": "150", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no", + "gps_code": "SVTN" + }, + { + "id": "40324", + "ident": "SVTO", + "type": "small_airport", + "name": "El Toco Airport", + "latitude_deg": "9.199999809265137", + "longitude_deg": "-64.8499984741211", + "elevation_ft": "392", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "municipality": "El Toco", + "scheduled_service": "no", + "gps_code": "SVTO" + }, + { + "id": "40325", + "ident": "SVTP", + "type": "small_airport", + "name": "Playa Pintada Airport", + "latitude_deg": "10.141092", + "longitude_deg": "-65.437757", + "elevation_ft": "9", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-M", + "scheduled_service": "no", + "gps_code": "SVTP" + }, + { + "id": "32396", + "ident": "SVTR", + "type": "small_airport", + "name": "Temblador Airport", + "latitude_deg": "9.016667366027832", + "longitude_deg": "-62.733333587646484", + "elevation_ft": "104", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "scheduled_service": "no", + "gps_code": "SVTR" + }, + { + "id": "40326", + "ident": "SVTT", + "type": "small_airport", + "name": "La Torta Airport", + "latitude_deg": "9.511260032653809", + "longitude_deg": "-66.55390167236328", + "elevation_ft": "672", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVTT" + }, + { + "id": "40327", + "ident": "SVTU", + "type": "small_airport", + "name": "Turagua Airport", + "latitude_deg": "7.783332824707031", + "longitude_deg": "-69.23332977294922", + "elevation_ft": "338", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "Turagua", + "scheduled_service": "no", + "gps_code": "SVTU" + }, + { + "id": "40328", + "ident": "SVTV", + "type": "small_airport", + "name": "Turen Airport", + "latitude_deg": "9.25", + "longitude_deg": "-69.13333129882812", + "elevation_ft": "521", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "scheduled_service": "no", + "gps_code": "SVTV" + }, + { + "id": "40329", + "ident": "SVTY", + "type": "small_airport", + "name": "Toromacho Airport", + "latitude_deg": "9.130825803010001", + "longitude_deg": "-66.3911533356", + "elevation_ft": "450", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "municipality": "Las Mercedes del Llano", + "scheduled_service": "no", + "gps_code": "SVTY" + }, + { + "id": "40330", + "ident": "SVUA", + "type": "small_airport", + "name": "Mayupa Airport", + "latitude_deg": "6.250135", + "longitude_deg": "-62.785046", + "elevation_ft": "1672", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVUA" + }, + { + "id": "40331", + "ident": "SVUK", + "type": "small_airport", + "name": "San Ignacio Airport", + "latitude_deg": "9.449999809265137", + "longitude_deg": "-68.36666870117188", + "elevation_ft": "426", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-H", + "scheduled_service": "no", + "gps_code": "SVUK" + }, + { + "id": "32549", + "ident": "SVUM", + "type": "small_airport", + "name": "Uriman Airport", + "latitude_deg": "5.3333330154418945", + "longitude_deg": "-62.766666412353516", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVUM", + "iata_code": "URM" + }, + { + "id": "6333", + "ident": "SVUP", + "type": "small_airport", + "name": "Upata Airport", + "latitude_deg": "7.979939937591553", + "longitude_deg": "-62.32279968261719", + "elevation_ft": "1056", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVUP" + }, + { + "id": "32398", + "ident": "SVUQ", + "type": "small_airport", + "name": "Uon Quen Airport", + "latitude_deg": "4.983333110809326", + "longitude_deg": "-61.72833251953125", + "elevation_ft": "2820", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVUQ" + }, + { + "id": "40332", + "ident": "SVUY", + "type": "small_airport", + "name": "Uruyen Airport", + "latitude_deg": "5.680422", + "longitude_deg": "-62.457705", + "elevation_ft": "1476", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVUY" + }, + { + "id": "6334", + "ident": "SVVA", + "type": "medium_airport", + "name": "Arturo Michelena International Airport", + "latitude_deg": "10.14973258972168", + "longitude_deg": "-67.92839813232422", + "elevation_ft": "1411", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-G", + "municipality": "Valencia", + "scheduled_service": "yes", + "gps_code": "SVVA", + "iata_code": "VLN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arturo_Michelena_International_Airport" + }, + { + "id": "40333", + "ident": "SVVB", + "type": "small_airport", + "name": "Bajo Verde Airport", + "latitude_deg": "9.05138874053955", + "longitude_deg": "-66.46749877929688", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVVB" + }, + { + "id": "40334", + "ident": "SVVD", + "type": "small_airport", + "name": "Valle Grande Airport", + "latitude_deg": "8.266667366027832", + "longitude_deg": "-67.16666412353516", + "elevation_ft": "631", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVVD" + }, + { + "id": "6335", + "ident": "SVVG", + "type": "medium_airport", + "name": "Juan Pablo Pérez Alfonso Airport", + "latitude_deg": "8.624139", + "longitude_deg": "-71.672668", + "elevation_ft": "250", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-L", + "municipality": "El Vigía", + "scheduled_service": "yes", + "gps_code": "SVVG", + "iata_code": "VIG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Juan_Pablo_P%C3%A9rez_Alfonzo_Airport" + }, + { + "id": "40335", + "ident": "SVVH", + "type": "small_airport", + "name": "Valle Hondo Airport", + "latitude_deg": "9.366666793823242", + "longitude_deg": "-62.91666793823242", + "elevation_ft": "301", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "scheduled_service": "no", + "gps_code": "SVVH" + }, + { + "id": "40336", + "ident": "SVVK", + "type": "small_airport", + "name": "La Verdad Airport", + "latitude_deg": "7.133333206176758", + "longitude_deg": "-69.05000305175781", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "Las Queseritas", + "scheduled_service": "no", + "gps_code": "SVVK" + }, + { + "id": "6336", + "ident": "SVVL", + "type": "medium_airport", + "name": "Dr. Antonio Nicolás Briceño Airport", + "latitude_deg": "9.34047794342041", + "longitude_deg": "-70.58406066894531", + "elevation_ft": "2060", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-T", + "municipality": "Valera", + "scheduled_service": "yes", + "gps_code": "SVVL", + "iata_code": "VLV" + }, + { + "id": "40337", + "ident": "SVVM", + "type": "small_airport", + "name": "Buena Vista del Caño Medio Airport", + "latitude_deg": "6.9166669845581055", + "longitude_deg": "-68.1500015258789", + "elevation_ft": "475", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVVM" + }, + { + "id": "6337", + "ident": "SVVP", + "type": "medium_airport", + "name": "Valle de La Pascua Airport", + "latitude_deg": "9.22202777863", + "longitude_deg": "-65.9935836792", + "elevation_ft": "410", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no", + "gps_code": "SVVP", + "iata_code": "VDP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valle_de_la_Pascua_Airport" + }, + { + "id": "32399", + "ident": "SVVQ", + "type": "small_airport", + "name": "Venelac Airport", + "latitude_deg": "10.242799758911133", + "longitude_deg": "-70.50180053710938", + "elevation_ft": "1969", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-K", + "municipality": "Quebrada Arriba", + "scheduled_service": "no", + "gps_code": "SVVQ", + "keywords": "Formerly SV01" + }, + { + "id": "40338", + "ident": "SVVR", + "type": "small_airport", + "name": "Hato La Vergareña Airport", + "latitude_deg": "6.8333330154418945", + "longitude_deg": "-63.58333206176758", + "elevation_ft": "1082", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVVR" + }, + { + "id": "40339", + "ident": "SVVS", + "type": "small_airport", + "name": "Villa del Rosario Airport", + "latitude_deg": "10.316666603088379", + "longitude_deg": "-72.30000305175781", + "elevation_ft": "259", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "gps_code": "SVVS" + }, + { + "id": "40340", + "ident": "SVVV", + "type": "small_airport", + "name": "Venepal Airport", + "latitude_deg": "10.540200233459473", + "longitude_deg": "-68.24539947509766", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-G", + "scheduled_service": "no", + "gps_code": "SVVV" + }, + { + "id": "40341", + "ident": "SVVX", + "type": "small_airport", + "name": "Los Venados Airport", + "latitude_deg": "6.561666965484619", + "longitude_deg": "-66.00166320800781", + "elevation_ft": "621", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no", + "gps_code": "SVVX" + }, + { + "id": "40342", + "ident": "SVWA", + "type": "small_airport", + "name": "Mata de Agua Airport", + "latitude_deg": "7.316667079925537", + "longitude_deg": "-67.90833282470703", + "elevation_ft": "226", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "Santa Bárbara", + "scheduled_service": "no", + "gps_code": "SVWA" + }, + { + "id": "6338", + "ident": "SVWB", + "type": "small_airport", + "name": "La Bananera Airport", + "latitude_deg": "10.479499816894531", + "longitude_deg": "-68.4728012084961", + "elevation_ft": "49", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-U", + "scheduled_service": "no", + "gps_code": "SVWB" + }, + { + "id": "40343", + "ident": "SVWE", + "type": "small_airport", + "name": "Bella Vista Airport", + "latitude_deg": "8.011667251586914", + "longitude_deg": "-69.8316650390625", + "elevation_ft": "266", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no", + "gps_code": "SVWE" + }, + { + "id": "6314", + "ident": "SVWQ", + "type": "small_airport", + "name": "El Pardillero Airport", + "latitude_deg": "8.59827", + "longitude_deg": "-69.760803", + "elevation_ft": "2001", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "municipality": "Mijagual", + "scheduled_service": "no", + "gps_code": "SVWQ" + }, + { + "id": "40344", + "ident": "SVXF", + "type": "small_airport", + "name": "Hato Santa Clara Airport", + "latitude_deg": "7.150000095367432", + "longitude_deg": "-69.25", + "elevation_ft": "393", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVXF" + }, + { + "id": "40345", + "ident": "SVYA", + "type": "small_airport", + "name": "Yaure Airport", + "latitude_deg": "7.716667175292969", + "longitude_deg": "-71.23332977294922", + "elevation_ft": "482", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no", + "gps_code": "SVYA" + }, + { + "id": "40346", + "ident": "SVYG", + "type": "small_airport", + "name": "El Yagual Airport", + "latitude_deg": "7.466667175292969", + "longitude_deg": "-68.44999694824219", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVYG" + }, + { + "id": "40347", + "ident": "SVYI", + "type": "small_airport", + "name": "El Yavi Airport", + "latitude_deg": "5.4583330154418945", + "longitude_deg": "-65.89833068847656", + "elevation_ft": "557", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no", + "gps_code": "SVYI" + }, + { + "id": "40348", + "ident": "SVYP", + "type": "small_airport", + "name": "Yopita Airport", + "latitude_deg": "7.199999809265137", + "longitude_deg": "-69.31666564941406", + "elevation_ft": "360", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "gps_code": "SVYP" + }, + { + "id": "40349", + "ident": "SVYT", + "type": "small_airport", + "name": "Yutaje Airport", + "latitude_deg": "5.6097798347473145", + "longitude_deg": "-66.11039733886719", + "elevation_ft": "600", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no", + "gps_code": "SVYT" + }, + { + "id": "37779", + "ident": "SWAA", + "type": "small_airport", + "name": "Fazenda Ykaraí Airport", + "latitude_deg": "-14.5439", + "longitude_deg": "-50.592777", + "elevation_ft": "896", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Nova Crixás", + "scheduled_service": "no", + "gps_code": "SWAA", + "local_code": "GO0114" + }, + { + "id": "325622", + "ident": "SWAB", + "type": "heliport", + "name": "Bradesco Previdência Heliport", + "latitude_deg": "-23.486573", + "longitude_deg": "-46.856843", + "elevation_ft": "2815", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SWAB", + "local_code": "SP0794" + }, + { + "id": "334006", + "ident": "SWAC", + "type": "heliport", + "name": "Mina Águas Claras Heliport", + "latitude_deg": "-19.96895", + "longitude_deg": "-43.91452", + "elevation_ft": "3848", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Nova Lima", + "scheduled_service": "no", + "gps_code": "SWAC", + "local_code": "MG0297" + }, + { + "id": "327427", + "ident": "SWAD", + "type": "small_airport", + "name": "Fazenda Santa Adelaide Airport", + "latitude_deg": "-18.260878", + "longitude_deg": "-49.597006", + "elevation_ft": "1598", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Bom Jesus de Goiás", + "scheduled_service": "no", + "gps_code": "SWAD", + "local_code": "GO0115" + }, + { + "id": "37780", + "ident": "SWAE", + "type": "small_airport", + "name": "Uaicas Airport", + "latitude_deg": "3.551929", + "longitude_deg": "-63.169445", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Alto Alegre", + "scheduled_service": "no", + "gps_code": "SWAE", + "local_code": "RR0106" + }, + { + "id": "37781", + "ident": "SWAF", + "type": "closed", + "name": "Agroer Aviação Agrícola Airport", + "latitude_deg": "-16.483887", + "longitude_deg": "-54.667221", + "elevation_ft": "827", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Rondonópolis", + "scheduled_service": "no", + "keywords": "SWAF" + }, + { + "id": "327431", + "ident": "SWAG", + "type": "small_airport", + "name": "Agrícola Rio Galhão Airport", + "latitude_deg": "-10.424722", + "longitude_deg": "-46.076944", + "elevation_ft": "2552", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Mateiros", + "scheduled_service": "no", + "gps_code": "SWAG", + "local_code": "TO0041" + }, + { + "id": "37782", + "ident": "SWAH", + "type": "small_airport", + "name": "Agropecuária Floresta São Joaquim Ltda Airport", + "latitude_deg": "-10.141667", + "longitude_deg": "-60.652778", + "elevation_ft": "325", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Aripuanã", + "scheduled_service": "no", + "keywords": "SWAH" + }, + { + "id": "332991", + "ident": "SWAI", + "type": "small_airport", + "name": "Fazenda Alvorada I Airport", + "latitude_deg": "-10.706667", + "longitude_deg": "-52.654444", + "elevation_ft": "1699", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São José do Xingu", + "scheduled_service": "no", + "gps_code": "SSWA", + "local_code": "MT0319", + "keywords": "SWAI" + }, + { + "id": "332998", + "ident": "SWAJ", + "type": "small_airport", + "name": "Viatec Aviação Agrícola Airport", + "latitude_deg": "-33.215966", + "longitude_deg": "-53.266308", + "elevation_ft": "92", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Santa Vitória do Palmar", + "scheduled_service": "no", + "gps_code": "SWAJ", + "local_code": "RS0101", + "keywords": "Salso Airport" + }, + { + "id": "37783", + "ident": "SWAK", + "type": "small_airport", + "name": "Assunção do Içana Airport", + "latitude_deg": "1.061726", + "longitude_deg": "-67.603585", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "São Gabriel da Cachoeira", + "scheduled_service": "no", + "gps_code": "SWAK", + "local_code": "AM0042" + }, + { + "id": "334007", + "ident": "SWAM", + "type": "small_airport", + "name": "Fazenda Agropecuária Gomes Airport", + "latitude_deg": "-23.64966", + "longitude_deg": "-49.151692", + "elevation_ft": "2165", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Taquarituba", + "scheduled_service": "no", + "gps_code": "SWAM", + "local_code": "SP0269" + }, + { + "id": "37784", + "ident": "SWAN", + "type": "small_airport", + "name": "Arenápolis Airport", + "latitude_deg": "-14.50027847290039", + "longitude_deg": "-57.0172233581543", + "elevation_ft": "1329", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Arenápolis", + "scheduled_service": "no", + "gps_code": "SWAN" + }, + { + "id": "37785", + "ident": "SWAO", + "type": "small_airport", + "name": "Anamoim Airport", + "latitude_deg": "1.785851", + "longitude_deg": "-67.406097", + "elevation_ft": "335", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "São Gabriel da Cachoeira", + "scheduled_service": "no", + "gps_code": "SWAO", + "local_code": "AM0043" + }, + { + "id": "37786", + "ident": "SWAP", + "type": "closed", + "name": "Fazenda Apemag Airport", + "latitude_deg": "-15.333611", + "longitude_deg": "-57.317223", + "elevation_ft": "951", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra do Bugres", + "scheduled_service": "no", + "keywords": "SWAP" + }, + { + "id": "37787", + "ident": "SWAQ", + "type": "small_airport", + "name": "Érico Airport", + "latitude_deg": "3.76333", + "longitude_deg": "-62.409401", + "elevation_ft": "689", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Boa Vista", + "scheduled_service": "no", + "gps_code": "SWAQ", + "local_code": "RR0107" + }, + { + "id": "37788", + "ident": "SWAR", + "type": "small_airport", + "name": "Fazenda Aruanã Airport", + "latitude_deg": "-13.081903", + "longitude_deg": "-51.587892", + "elevation_ft": "968", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Ribeirão Cascalheira", + "scheduled_service": "no", + "gps_code": "SWAR", + "local_code": "MT0327" + }, + { + "id": "37789", + "ident": "SWAS", + "type": "heliport", + "name": "Telebrás I Heliport", + "latitude_deg": "-15.805406", + "longitude_deg": "-47.882817", + "elevation_ft": "3661", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "keywords": "SWAS" + }, + { + "id": "37790", + "ident": "SWAT", + "type": "small_airport", + "name": "Fazenda Cachoeira Airport", + "latitude_deg": "-17.095972", + "longitude_deg": "-53.346133", + "elevation_ft": "2795", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alto Araguaia", + "scheduled_service": "no", + "keywords": "SWAT" + }, + { + "id": "45575", + "ident": "SWAU", + "type": "small_airport", + "name": "Fazenda Nossa Senhora Aparecida Airport", + "latitude_deg": "-19.948255", + "longitude_deg": "-48.583883", + "elevation_ft": "2592", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Pirajuba", + "scheduled_service": "no", + "gps_code": "SWAU", + "local_code": "MG0196" + }, + { + "id": "37791", + "ident": "SWAV", + "type": "closed", + "name": "Fazenda Água Verde Airport", + "latitude_deg": "-14.072778", + "longitude_deg": "-57.454723", + "elevation_ft": "2037", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "keywords": "SWAV" + }, + { + "id": "37792", + "ident": "SWAW", + "type": "heliport", + "name": "Anatel Heliport", + "latitude_deg": "-15.80555", + "longitude_deg": "-47.882355", + "elevation_ft": "3661", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "keywords": "SWAW, Telebrás II" + }, + { + "id": "335537", + "ident": "SWAX", + "type": "small_airport", + "name": "Fazenda Sassapão Airport", + "latitude_deg": "-10.748889", + "longitude_deg": "-45.845278", + "elevation_ft": "2392", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Formosa do Rio Preto", + "scheduled_service": "no", + "gps_code": "SWAX", + "local_code": "BA0268" + }, + { + "id": "29666", + "ident": "SWAY", + "type": "small_airport", + "name": "Araguaiana Airport", + "latitude_deg": "-15.708652", + "longitude_deg": "-51.837865", + "elevation_ft": "994", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Araguaiana", + "scheduled_service": "no", + "local_code": "MT0026", + "keywords": "SWAY" + }, + { + "id": "37793", + "ident": "SWAZ", + "type": "small_airport", + "name": "Santo Atanázio Airport", + "latitude_deg": "0.39972200989723206", + "longitude_deg": "-69.30055236816406", + "elevation_ft": "394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "São Gabriel Da Cachoeira", + "scheduled_service": "no", + "gps_code": "SWAZ" + }, + { + "id": "29742", + "ident": "SWBA", + "type": "small_airport", + "name": "Buriti Alegre Airport", + "latitude_deg": "-18.125600814819336", + "longitude_deg": "-49.04280090332031", + "elevation_ft": "2848", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Buriti Alegre", + "scheduled_service": "no", + "gps_code": "SWBA", + "iata_code": "0" + }, + { + "id": "37794", + "ident": "SWBB", + "type": "small_airport", + "name": "Barra do Bugres Airport", + "latitude_deg": "-15.058610916137695", + "longitude_deg": "-57.18305587768555", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra Do Bugres", + "scheduled_service": "no", + "gps_code": "SWBB" + }, + { + "id": "518", + "ident": "SWBC", + "type": "small_airport", + "name": "Barcelos Airport", + "latitude_deg": "-0.981292", + "longitude_deg": "-62.919601", + "elevation_ft": "112", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Barcelos", + "scheduled_service": "yes", + "gps_code": "SWBC", + "iata_code": "BAZ", + "local_code": "SWBC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barcelos_Airport" + }, + { + "id": "311059", + "ident": "SWBE", + "type": "small_airport", + "name": "Walfrido Salmito de Almeida Airport", + "latitude_deg": "-4.0428", + "longitude_deg": "-40.8938", + "elevation_ft": "3014", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "São Benedito", + "scheduled_service": "no", + "gps_code": "SWBE", + "iata_code": "JSB", + "wikipedia_link": "https://en.wikipedia.org/wiki/S%C3%A3o_Benedito_Airport" + }, + { + "id": "37795", + "ident": "SWBF", + "type": "small_airport", + "name": "Fazenda Boa Fortuna Airport", + "latitude_deg": "-10.005000114440918", + "longitude_deg": "-49.491943359375", + "elevation_ft": "741", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Pium", + "scheduled_service": "no", + "gps_code": "SWBF" + }, + { + "id": "37796", + "ident": "SWBG", + "type": "small_airport", + "name": "Pontes e Lacerda Airport", + "latitude_deg": "-15.1934", + "longitude_deg": "-59.3848", + "elevation_ft": "870", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes e Lacerda", + "scheduled_service": "yes", + "gps_code": "SWBG", + "iata_code": "LCB", + "wikipedia_link": "http://pt.wikipedia.org/wiki/Aeroporto_de_Pontes_e_Lacerda", + "keywords": "União do Vale Airport" + }, + { + "id": "37797", + "ident": "SWBH", + "type": "small_airport", + "name": "Brejinho de Nazaré Airport", + "latitude_deg": "-11.025208", + "longitude_deg": "-48.575406", + "elevation_ft": "869", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Brejinho De Nazaré", + "scheduled_service": "no", + "local_code": "TO0010", + "keywords": "SWBH" + }, + { + "id": "519", + "ident": "SWBI", + "type": "small_airport", + "name": "Barreirinha Airport", + "latitude_deg": "-2.79241991043", + "longitude_deg": "-57.0578994751", + "elevation_ft": "69", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Barreirinha", + "scheduled_service": "no", + "gps_code": "SWBI", + "local_code": "SWBI" + }, + { + "id": "37798", + "ident": "SWBJ", + "type": "small_airport", + "name": "Fazenda Itarema Airport", + "latitude_deg": "-13.255318", + "longitude_deg": "-52.044446", + "elevation_ft": "1339", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Canarana", + "scheduled_service": "no", + "gps_code": "SWBJ", + "local_code": "MT0328" + }, + { + "id": "335549", + "ident": "SWBK", + "type": "small_airport", + "name": "Fazenda Paladino Airport", + "latitude_deg": "-13.089444", + "longitude_deg": "-45.8325", + "elevation_ft": "2746", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SWBK", + "local_code": "BA0256" + }, + { + "id": "520", + "ident": "SWBL", + "type": "small_airport", + "name": "Balbina Airport", + "latitude_deg": "-1.92481", + "longitude_deg": "-59.4123", + "elevation_ft": "564", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Presidente Figueiredo", + "scheduled_service": "no", + "local_code": "SWBL", + "keywords": "SWBL" + }, + { + "id": "334016", + "ident": "SWBM", + "type": "heliport", + "name": "Bauminas Heliport", + "latitude_deg": "-21.375625", + "longitude_deg": "-42.732444", + "elevation_ft": "630", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Cataguases", + "scheduled_service": "no", + "gps_code": "SWBM", + "local_code": "MG0280" + }, + { + "id": "37799", + "ident": "SWBN", + "type": "small_airport", + "name": "Fazenda Barreirinhos Airport", + "latitude_deg": "-16.946388244628906", + "longitude_deg": "-56.39277648925781", + "elevation_ft": "377", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão De Melgaço", + "scheduled_service": "no", + "gps_code": "SWBN" + }, + { + "id": "37800", + "ident": "SWBO", + "type": "small_airport", + "name": "Fazenda São João Airport", + "latitude_deg": "-14.2747220993042", + "longitude_deg": "-49.649166107177734", + "elevation_ft": "1542", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Campos Verdes", + "scheduled_service": "no", + "gps_code": "SWBO" + }, + { + "id": "37801", + "ident": "SWBP", + "type": "heliport", + "name": "Polícia Militar do Estado de Goiás Heliport", + "latitude_deg": "-16.513611", + "longitude_deg": "-49.25111", + "elevation_ft": "2264", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiânia", + "scheduled_service": "no", + "keywords": "SWBP, 1º BPM" + }, + { + "id": "37802", + "ident": "SWBQ", + "type": "small_airport", + "name": "Barracão Queimado Airport", + "latitude_deg": "-13.733611106899998", + "longitude_deg": "-59.7172203064", + "elevation_ft": "2067", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SWBQ" + }, + { + "id": "521", + "ident": "SWBR", + "type": "small_airport", + "name": "Borba Airport", + "latitude_deg": "-4.40634", + "longitude_deg": "-59.602402", + "elevation_ft": "293", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Borba", + "scheduled_service": "no", + "gps_code": "SWBR", + "iata_code": "RBB", + "local_code": "SWBR" + }, + { + "id": "29725", + "ident": "SWBS", + "type": "closed", + "name": "Brasileia Airport", + "latitude_deg": "-11.016900062561035", + "longitude_deg": "-68.73390197753906", + "elevation_ft": "489", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Brasileila", + "scheduled_service": "no", + "gps_code": "SWBS" + }, + { + "id": "37803", + "ident": "SWBT", + "type": "small_airport", + "name": "Fazenda Beira Rio Airport", + "latitude_deg": "-10.371110916137695", + "longitude_deg": "-55.81861114501953", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Canaã Do Norte", + "scheduled_service": "no", + "gps_code": "SWBT" + }, + { + "id": "37804", + "ident": "SWBU", + "type": "small_airport", + "name": "Fazenda Fartura Baixão Novo Airport", + "latitude_deg": "-10.215556144714355", + "longitude_deg": "-55.08305740356445", + "elevation_ft": "1214", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Peixoto De Azevedo", + "scheduled_service": "no", + "gps_code": "SWBU" + }, + { + "id": "522", + "ident": "SWBV", + "type": "small_airport", + "name": "Auaris Airport", + "latitude_deg": "4.003466", + "longitude_deg": "-64.493635", + "elevation_ft": "2490", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Boa Vista", + "scheduled_service": "no", + "gps_code": "SWBV", + "local_code": "SWBV" + }, + { + "id": "37805", + "ident": "SWBW", + "type": "small_airport", + "name": "Agro Pousadas do Guaporé Airport", + "latitude_deg": "-14.7683334351", + "longitude_deg": "-60.0344429016", + "elevation_ft": "886", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SWBW", + "keywords": "Fazenda Paraguá Airport, SSPD" + }, + { + "id": "37806", + "ident": "SWBX", + "type": "small_airport", + "name": "Fazenda Santo Antônio do Paraíso Airport", + "latitude_deg": "-17.4911117554", + "longitude_deg": "-55.2283325195", + "elevation_ft": "650", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Itiquira", + "scheduled_service": "no", + "gps_code": "SWBX" + }, + { + "id": "37807", + "ident": "SWBY", + "type": "small_airport", + "name": "Fazenda Goiasa Airport", + "latitude_deg": "-18.033436", + "longitude_deg": "-49.704762", + "elevation_ft": "2100", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Bom Jesus de Goiás", + "scheduled_service": "no", + "gps_code": "SIAG", + "local_code": "GO0045", + "keywords": "SWBY" + }, + { + "id": "37808", + "ident": "SWBZ", + "type": "small_airport", + "name": "JPO Airport", + "latitude_deg": "-12.60692", + "longitude_deg": "-55.764263", + "elevation_ft": "1155", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "gps_code": "SWIX", + "local_code": "MT0356", + "keywords": "SWBZ" + }, + { + "id": "523", + "ident": "SWCA", + "type": "small_airport", + "name": "Carauari Airport", + "latitude_deg": "-4.871520042419434", + "longitude_deg": "-66.89749908447266", + "elevation_ft": "355", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Carauari", + "scheduled_service": "no", + "gps_code": "SWCA", + "iata_code": "CAF", + "local_code": "SWCA" + }, + { + "id": "37809", + "ident": "SWCB", + "type": "small_airport", + "name": "Campos Belos Airport", + "latitude_deg": "-13.006213", + "longitude_deg": "-46.711208", + "elevation_ft": "2198", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Campos Belos", + "scheduled_service": "no", + "gps_code": "SWCB" + }, + { + "id": "37810", + "ident": "SWCC", + "type": "small_airport", + "name": "Fazenda Curitiba Airport", + "latitude_deg": "-13.546667", + "longitude_deg": "-60.418333", + "elevation_ft": "705", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SIYD", + "local_code": "MT0153", + "keywords": "SWCC" + }, + { + "id": "524", + "ident": "SWCD", + "type": "small_airport", + "name": "Fazenda Santa Mônica Airport", + "latitude_deg": "-15.93529987335205", + "longitude_deg": "-48.64659881591797", + "elevation_ft": "3888", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Alexânia", + "scheduled_service": "no", + "gps_code": "SWCD", + "local_code": "SWCD" + }, + { + "id": "525", + "ident": "SWCE", + "type": "small_airport", + "name": "Fazenda Colibri Airport", + "latitude_deg": "-16.2043", + "longitude_deg": "-55.398701", + "elevation_ft": "2310", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santo Antônio do Leverger", + "scheduled_service": "no", + "gps_code": "SWDD", + "local_code": "MT0473", + "keywords": "SWCE, Fazenda Cedro" + }, + { + "id": "37811", + "ident": "SWCF", + "type": "small_airport", + "name": "Fazenda Fronteira do Guaporé Airport", + "latitude_deg": "-13.735278", + "longitude_deg": "-60.477222", + "elevation_ft": "673", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SDE4", + "local_code": "MT0746", + "keywords": "SWCF, Fazenda Confap" + }, + { + "id": "526", + "ident": "SWCG", + "type": "small_airport", + "name": "Fazenda Varjão Grande Airport", + "latitude_deg": "-18.491501", + "longitude_deg": "-51.298801", + "elevation_ft": "2060", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Caçu", + "scheduled_service": "no", + "keywords": "SWCG" + }, + { + "id": "37812", + "ident": "SWCH", + "type": "small_airport", + "name": "Fazenda Charqueada Norte Airport", + "latitude_deg": "-10.00027847290039", + "longitude_deg": "-57.067222595214844", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alta Floresta", + "scheduled_service": "no", + "gps_code": "SWCH" + }, + { + "id": "334037", + "ident": "SWCI", + "type": "small_airport", + "name": "Agropecuária Rio Da Prata Airport", + "latitude_deg": "-14.223138", + "longitude_deg": "-46.550021", + "elevation_ft": "1752", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Posse", + "scheduled_service": "no", + "gps_code": "SWCI", + "local_code": "GO0203" + }, + { + "id": "37813", + "ident": "SWCJ", + "type": "small_airport", + "name": "Coperjava Airport", + "latitude_deg": "-11.835873", + "longitude_deg": "-49.712237", + "elevation_ft": "630", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Formoso Do Araguaia", + "scheduled_service": "no", + "gps_code": "SJLZ", + "local_code": "TO0031", + "keywords": "SWCJ" + }, + { + "id": "37814", + "ident": "SWCK", + "type": "small_airport", + "name": "Fazenda Cocal Airport", + "latitude_deg": "-12.683610916137695", + "longitude_deg": "-52.717220306396484", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Canarana", + "scheduled_service": "no", + "gps_code": "SWCK" + }, + { + "id": "37815", + "ident": "SWCL", + "type": "small_airport", + "name": "Chácara Santa Eulália Airport", + "latitude_deg": "-9.546667098999023", + "longitude_deg": "-57.41583251953125", + "elevation_ft": "669", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alta Floresta", + "scheduled_service": "no", + "gps_code": "SWCL" + }, + { + "id": "37816", + "ident": "SWCM", + "type": "small_airport", + "name": "Fazenda Couto Magalhães Airport", + "latitude_deg": "-13.994372", + "longitude_deg": "-52.933202", + "elevation_ft": "1378", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Água Boa", + "scheduled_service": "no", + "gps_code": "SIRM", + "local_code": "MT0123", + "keywords": "SWCM" + }, + { + "id": "37817", + "ident": "SWCN", + "type": "small_airport", + "name": "Fazenda Saudade Airport", + "latitude_deg": "-14.143333", + "longitude_deg": "-51.014999", + "elevation_ft": "784", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cocalinho", + "scheduled_service": "no", + "keywords": "SWCN" + }, + { + "id": "37818", + "ident": "SWCO", + "type": "small_airport", + "name": "Fazenda Continental Airport", + "latitude_deg": "-14.715556144714355", + "longitude_deg": "-51.209720611572266", + "elevation_ft": "919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cocalinho", + "scheduled_service": "no", + "gps_code": "SWCO" + }, + { + "id": "37819", + "ident": "SWCP", + "type": "small_airport", + "name": "Campo Novo do Parecis Airport", + "latitude_deg": "-13.628610610961914", + "longitude_deg": "-57.926387786865234", + "elevation_ft": "1818", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo Do Parecis", + "scheduled_service": "no", + "gps_code": "SWCP" + }, + { + "id": "527", + "ident": "SWCQ", + "type": "small_airport", + "name": "Costa Marques Airport", + "latitude_deg": "-12.421099662780762", + "longitude_deg": "-64.25160217285156", + "elevation_ft": "555", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Costa Marques", + "scheduled_service": "no", + "gps_code": "SWCQ", + "iata_code": "CQS", + "local_code": "SWCQ" + }, + { + "id": "37820", + "ident": "SWCR", + "type": "small_airport", + "name": "Porto Caracará Airport", + "latitude_deg": "-17.83388900756836", + "longitude_deg": "-57.16722106933594", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Poconé", + "scheduled_service": "no", + "gps_code": "SWCR" + }, + { + "id": "337274", + "ident": "SWCS", + "type": "small_airport", + "name": "Corticeiras Airport", + "latitude_deg": "-30.978246", + "longitude_deg": "-51.936816", + "elevation_ft": "79", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Cristal", + "scheduled_service": "no", + "gps_code": "SWCS", + "local_code": "RS0171" + }, + { + "id": "37821", + "ident": "SWCT", + "type": "small_airport", + "name": "Santa Rosa Pantanal Hotel Airport", + "latitude_deg": "-17.366367", + "longitude_deg": "-56.791377", + "elevation_ft": "364", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Poconé", + "scheduled_service": "no", + "gps_code": "SWJS", + "local_code": "MT0686", + "keywords": "SWCT, Complexo Turístico S. R. Pantanal Hotéis LTDA" + }, + { + "id": "37822", + "ident": "SWCU", + "type": "small_airport", + "name": "Fazenda Canuanã Airport", + "latitude_deg": "-11.975223", + "longitude_deg": "-49.9037", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Formoso do Araguaia", + "scheduled_service": "no", + "gps_code": "SNHE", + "local_code": "TO0036", + "keywords": "SWCU" + }, + { + "id": "37823", + "ident": "SWCV", + "type": "small_airport", + "name": "Casalvasco Airport", + "latitude_deg": "-15.489443779", + "longitude_deg": "-60.0855560303", + "elevation_ft": "676", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SWCV" + }, + { + "id": "29763", + "ident": "SWCW", + "type": "small_airport", + "name": "Cavalcante Airport", + "latitude_deg": "-13.778604", + "longitude_deg": "-47.412121", + "elevation_ft": "2625", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Cavalcante", + "scheduled_service": "no", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Cavalcante", + "keywords": "SWCW" + }, + { + "id": "37824", + "ident": "SWCX", + "type": "small_airport", + "name": "Cabixi Airport", + "latitude_deg": "-13.700278282165527", + "longitude_deg": "-60.700557708740234", + "elevation_ft": "1247", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cabixi", + "scheduled_service": "no", + "gps_code": "SWCX" + }, + { + "id": "37825", + "ident": "SWCY", + "type": "small_airport", + "name": "Fazenda Aparecida do Norte Airport", + "latitude_deg": "-12.845088", + "longitude_deg": "-56.97719", + "elevation_ft": "1004", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Maringá", + "scheduled_service": "no", + "keywords": "SWCY" + }, + { + "id": "29770", + "ident": "SWCZ", + "type": "small_airport", + "name": "Ceres Airport", + "latitude_deg": "-15.34469985961914", + "longitude_deg": "-49.604698181152344", + "elevation_ft": "1962", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Ceres", + "scheduled_service": "no", + "gps_code": "SWCZ", + "iata_code": "0" + }, + { + "id": "37826", + "ident": "SWDA", + "type": "small_airport", + "name": "Fazenda Duas Âncoras - Seção Sede Airport", + "latitude_deg": "-14.938389", + "longitude_deg": "-52.173471", + "elevation_ft": "925", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra Do Garças", + "scheduled_service": "no", + "keywords": "SWDA" + }, + { + "id": "37827", + "ident": "SWDB", + "type": "small_airport", + "name": "Fazenda Eldorado Airport", + "latitude_deg": "-15.576944", + "longitude_deg": "-52.218887", + "elevation_ft": "1086", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra Do Garças", + "scheduled_service": "no", + "keywords": "SWDB" + }, + { + "id": "37828", + "ident": "SWDC", + "type": "small_airport", + "name": "Fazenda Arco-Íris Airport", + "latitude_deg": "-16.93555", + "longitude_deg": "-53.573424", + "elevation_ft": "2710", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alto Garças", + "scheduled_service": "no", + "gps_code": "SIBA", + "local_code": "MT0081", + "keywords": "SWDC" + }, + { + "id": "37829", + "ident": "SWDE", + "type": "small_airport", + "name": "Fazenda Piratininga Airport", + "latitude_deg": "-12.822572", + "longitude_deg": "-50.328188", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "São Miguel Do Araguaia", + "scheduled_service": "no", + "gps_code": "SDPH", + "local_code": "GO0042", + "keywords": "SWDE" + }, + { + "id": "37830", + "ident": "SWDF", + "type": "small_airport", + "name": "Fazenda Braço Forte Airport", + "latitude_deg": "-9.521803", + "longitude_deg": "-55.040259", + "elevation_ft": "1417", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Novo Mundo", + "scheduled_service": "no", + "keywords": "SWDF" + }, + { + "id": "45638", + "ident": "SWDG", + "type": "small_airport", + "name": "Fazenda São José Airport", + "latitude_deg": "-21.744444", + "longitude_deg": "-49.164722", + "elevation_ft": "1509", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Reginópolis", + "scheduled_service": "no", + "gps_code": "SWDG" + }, + { + "id": "334176", + "ident": "SWDH", + "type": "heliport", + "name": "Damha Golfe Heliport", + "latitude_deg": "-21.951226", + "longitude_deg": "-47.89818", + "elevation_ft": "2802", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Carlos", + "scheduled_service": "no", + "gps_code": "SWDH", + "local_code": "SP0797" + }, + { + "id": "37831", + "ident": "SWDI", + "type": "small_airport", + "name": "Dois Irmãos Airport", + "latitude_deg": "-11.733611106872559", + "longitude_deg": "-49.33388900756836", + "elevation_ft": "771", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Peixe", + "scheduled_service": "no", + "gps_code": "SWDI" + }, + { + "id": "37832", + "ident": "SWDJ", + "type": "small_airport", + "name": "Fazenda Tundavala Airport", + "latitude_deg": "-14.85733", + "longitude_deg": "-52.036239", + "elevation_ft": "886", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra do Garças", + "scheduled_service": "no", + "gps_code": "SNOH", + "local_code": "MT0501", + "keywords": "SWDJ, Fazenda Duas Âncoras - Seção JAÓ" + }, + { + "id": "37833", + "ident": "SWDK", + "type": "small_airport", + "name": "Fazenda Dona Olga Airport", + "latitude_deg": "-13.019721984863281", + "longitude_deg": "-61.168609619140625", + "elevation_ft": "680", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Colorado D`Oeste", + "scheduled_service": "no", + "gps_code": "SWDK" + }, + { + "id": "334182", + "ident": "SWDL", + "type": "heliport", + "name": "Del Rey Heliport", + "latitude_deg": "-12.992708", + "longitude_deg": "-38.440159", + "elevation_ft": "26", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Salvador", + "scheduled_service": "no", + "gps_code": "SWDL", + "local_code": "BA0229" + }, + { + "id": "528", + "ident": "SWDM", + "type": "small_airport", + "name": "Diamantino Airport", + "latitude_deg": "-14.376899719238281", + "longitude_deg": "-56.40039825439453", + "elevation_ft": "1476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "gps_code": "SWDM", + "iata_code": "DMT", + "local_code": "SWDM" + }, + { + "id": "529", + "ident": "SWDN", + "type": "small_airport", + "name": "Dianópolis Airport", + "latitude_deg": "-11.5953998566", + "longitude_deg": "-46.846698761", + "elevation_ft": "2001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Dianópolis", + "scheduled_service": "no", + "gps_code": "SWDN", + "iata_code": "DNO" + }, + { + "id": "37834", + "ident": "SWDO", + "type": "small_airport", + "name": "Rosário do Leste Airport", + "latitude_deg": "-14.816944122314453", + "longitude_deg": "-56.41722106933594", + "elevation_ft": "699", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Rosário Do Leste", + "scheduled_service": "no", + "gps_code": "SWDO" + }, + { + "id": "46473", + "ident": "SWDP", + "type": "heliport", + "name": "Haras da Mata Heliport", + "latitude_deg": "-23.175", + "longitude_deg": "-47.92417", + "elevation_ft": "2064", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cesário Lange", + "scheduled_service": "no", + "gps_code": "SWDP", + "local_code": "SWDP" + }, + { + "id": "37835", + "ident": "SWDQ", + "type": "small_airport", + "name": "Fazenda Saltos do Poente Airport", + "latitude_deg": "-16.437618", + "longitude_deg": "-55.266176", + "elevation_ft": "1352", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santo Antônio Do Leverger", + "scheduled_service": "no", + "gps_code": "SNES", + "local_code": "MT0247", + "keywords": "SWDQ" + }, + { + "id": "37836", + "ident": "SWDS", + "type": "small_airport", + "name": "Fazenda Favo de Mel Airport", + "latitude_deg": "-15.648567", + "longitude_deg": "-59.327427", + "elevation_ft": "846", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes E Lacerda", + "scheduled_service": "no", + "keywords": "SWDS" + }, + { + "id": "37837", + "ident": "SWDT", + "type": "small_airport", + "name": "Fazenda Pioneira Airport", + "latitude_deg": "-14.283611297607422", + "longitude_deg": "-57.700557708740234", + "elevation_ft": "2178", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "gps_code": "SWDT" + }, + { + "id": "37838", + "ident": "SWDU", + "type": "small_airport", + "name": "Diauarum Airport", + "latitude_deg": "-11.196536", + "longitude_deg": "-53.234113", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo de Diauarum", + "scheduled_service": "no", + "keywords": "SWDU" + }, + { + "id": "37839", + "ident": "SWDV", + "type": "small_airport", + "name": "Descalvados Lenda Turismo Airport", + "latitude_deg": "-16.737443", + "longitude_deg": "-57.757403", + "elevation_ft": "354", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SDE2", + "local_code": "MT0692", + "keywords": "SWDV" + }, + { + "id": "37840", + "ident": "SWDW", + "type": "small_airport", + "name": "Divisão Airport", + "latitude_deg": "-13.116944313049316", + "longitude_deg": "-56.16722106933594", + "elevation_ft": "1345", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "gps_code": "SWDW" + }, + { + "id": "334198", + "ident": "SWDX", + "type": "heliport", + "name": "Edifício Torre Almirante Heliport", + "latitude_deg": "-22.907299", + "longitude_deg": "-43.175486", + "elevation_ft": "417", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio de Janeiro", + "scheduled_service": "no", + "gps_code": "SWDX", + "local_code": "RJ0154" + }, + { + "id": "37841", + "ident": "SWDY", + "type": "small_airport", + "name": "Fazenda Água Fria Airport", + "latitude_deg": "-14.754721641540527", + "longitude_deg": "-50.377498626708984", + "elevation_ft": "1175", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Nova Crixás", + "scheduled_service": "no", + "gps_code": "SWDY" + }, + { + "id": "37842", + "ident": "SWDZ", + "type": "small_airport", + "name": "Fazenda Água Limpa Airport", + "latitude_deg": "-15.289443969726562", + "longitude_deg": "-58.530277252197266", + "elevation_ft": "1181", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Indiavaí", + "scheduled_service": "no", + "gps_code": "SWDZ" + }, + { + "id": "307647", + "ident": "SWE", + "type": "small_airport", + "name": "Siwea Airport", + "latitude_deg": "-6.284181", + "longitude_deg": "147.582371", + "elevation_ft": "5960", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Siwea", + "scheduled_service": "no", + "gps_code": "AYEW", + "iata_code": "SWE", + "local_code": "SIW" + }, + { + "id": "334379", + "ident": "SWEA", + "type": "small_airport", + "name": "Fazenda Santiago de Compostela", + "latitude_deg": "-13.450612", + "longitude_deg": "-60.270319", + "elevation_ft": "876", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SWEA", + "local_code": "MT0332" + }, + { + "id": "37843", + "ident": "SWEB", + "type": "small_airport", + "name": "Fazenda Araúna Airport", + "latitude_deg": "-11.564014", + "longitude_deg": "-58.02652", + "elevation_ft": "951", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juara", + "scheduled_service": "no", + "keywords": "SWEB" + }, + { + "id": "530", + "ident": "SWEC", + "type": "small_airport", + "name": "Estância das Cascatas Airport", + "latitude_deg": "-15.896699905396", + "longitude_deg": "-52.095600128174", + "elevation_ft": "1017", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Aragarças", + "scheduled_service": "no", + "gps_code": "SWEC", + "local_code": "SWEC" + }, + { + "id": "37844", + "ident": "SWED", + "type": "small_airport", + "name": "Fazenda Eldorado Airport", + "latitude_deg": "-7.7572221755981445", + "longitude_deg": "-49.121665954589844", + "elevation_ft": "686", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Arapoema", + "scheduled_service": "no", + "gps_code": "SWED" + }, + { + "id": "531", + "ident": "SWEE", + "type": "small_airport", + "name": "Estirão do Equador Airport", + "latitude_deg": "-4.52378", + "longitude_deg": "-71.560799", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Atalaia Do Norte", + "scheduled_service": "no", + "gps_code": "SWEE", + "local_code": "AM9004" + }, + { + "id": "37845", + "ident": "SWEF", + "type": "small_airport", + "name": "Fazenda Europa Airport", + "latitude_deg": "-14.80166667", + "longitude_deg": "-51.34", + "elevation_ft": "899", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cocalinho", + "scheduled_service": "no", + "gps_code": "SWEF" + }, + { + "id": "37846", + "ident": "SWEG", + "type": "small_airport", + "name": "Fazenda Duas Marias Airport", + "latitude_deg": "-16.833332061767578", + "longitude_deg": "-55.669166564941406", + "elevation_ft": "446", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão De Melgaço", + "scheduled_service": "no", + "gps_code": "SWEG" + }, + { + "id": "532", + "ident": "SWEI", + "type": "small_airport", + "name": "Eirunepé Airport", + "latitude_deg": "-6.639530181884766", + "longitude_deg": "-69.87979888916016", + "elevation_ft": "412", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Eirunepé", + "scheduled_service": "no", + "gps_code": "SWEI", + "iata_code": "ERN", + "local_code": "SWEI" + }, + { + "id": "37847", + "ident": "SWEJ", + "type": "closed", + "name": "Fazenda Marazul Airport", + "latitude_deg": "-16.53890037536621", + "longitude_deg": "-55.91830062866211", + "elevation_ft": "479", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barao De Melgao", + "scheduled_service": "no", + "gps_code": "SWEJ" + }, + { + "id": "37848", + "ident": "SWEK", + "type": "small_airport", + "name": "Canarana Airport", + "latitude_deg": "-13.574443817138672", + "longitude_deg": "-52.27055740356445", + "elevation_ft": "1314", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Canarana", + "scheduled_service": "no", + "gps_code": "SWEK", + "iata_code": "CQA" + }, + { + "id": "37849", + "ident": "SWEL", + "type": "small_airport", + "name": "Fazenda Santa Eulália Airport", + "latitude_deg": "-15.058333396911621", + "longitude_deg": "-51.91666793823242", + "elevation_ft": "853", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Araguaiana", + "scheduled_service": "no", + "gps_code": "SWEL" + }, + { + "id": "37850", + "ident": "SWEM", + "type": "small_airport", + "name": "Emal - Empresa de Mineiração Aripuanã Ltda. Airport", + "latitude_deg": "-14.618888855", + "longitude_deg": "-54.003334045399995", + "elevation_ft": "1837", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Primavera Do Leste", + "scheduled_service": "no", + "gps_code": "SWEM" + }, + { + "id": "37851", + "ident": "SWEN", + "type": "small_airport", + "name": "Estância Recanto Airport", + "latitude_deg": "-9.937751", + "longitude_deg": "-56.087244", + "elevation_ft": "1004", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alta Floresta", + "scheduled_service": "no", + "gps_code": "SWEN", + "local_code": "MT0336" + }, + { + "id": "37852", + "ident": "SWEO", + "type": "small_airport", + "name": "Itapara Sport Fishing Airport", + "latitude_deg": "0.20972199738025665", + "longitude_deg": "-61.54999923706055", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Rorainópolis", + "scheduled_service": "no", + "gps_code": "SWEO" + }, + { + "id": "335533", + "ident": "SWEP", + "type": "small_airport", + "name": "Estância Punta del Este", + "latitude_deg": "-22.804612", + "longitude_deg": "-50.984144", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Sertaneja", + "scheduled_service": "no", + "gps_code": "SWEP", + "local_code": "PR0198" + }, + { + "id": "37854", + "ident": "SWEQ", + "type": "closed", + "name": "Fazenda Marazul III Airport", + "latitude_deg": "-16.591400146484375", + "longitude_deg": "-55.986698150634766", + "elevation_ft": "505", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão De Melgaço", + "scheduled_service": "no" + }, + { + "id": "37855", + "ident": "SWER", + "type": "small_airport", + "name": "Estância Santana Airport", + "latitude_deg": "-15.469721794128418", + "longitude_deg": "-56.063331604003906", + "elevation_ft": "801", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cuiabá", + "scheduled_service": "no", + "gps_code": "SWER" + }, + { + "id": "37856", + "ident": "SWES", + "type": "closed", + "name": "ESAT Aerotáxi Heliport", + "latitude_deg": "-15.791", + "longitude_deg": "-47.8948", + "elevation_ft": "3678", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "keywords": "SWES" + }, + { + "id": "37857", + "ident": "SWET", + "type": "small_airport", + "name": "Fazenda Encantado Airport", + "latitude_deg": "-13.312904", + "longitude_deg": "-58.799697", + "elevation_ft": "558", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SIEM", + "local_code": "MT0091", + "keywords": "SWET" + }, + { + "id": "37858", + "ident": "SWEU", + "type": "small_airport", + "name": "Ecotur Univini Park Airport", + "latitude_deg": "0.797558", + "longitude_deg": "-61.662983", + "elevation_ft": "266", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Caracaraí", + "scheduled_service": "no", + "gps_code": "SIRR", + "local_code": "RR0031", + "keywords": "SWEU" + }, + { + "id": "37859", + "ident": "SWEV", + "type": "closed", + "name": "Fazenda Piraim Airport", + "latitude_deg": "-16.251699447631836", + "longitude_deg": "-56.087501525878906", + "elevation_ft": "446", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nossa Senhora Do Livramento", + "scheduled_service": "no", + "gps_code": "SWEV" + }, + { + "id": "37860", + "ident": "SWEW", + "type": "small_airport", + "name": "Fazenda Felicidade Airport", + "latitude_deg": "-15.842222213745117", + "longitude_deg": "-58.63166809082031", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Esperidião", + "scheduled_service": "no", + "gps_code": "SWEW" + }, + { + "id": "37861", + "ident": "SWEX", + "type": "small_airport", + "name": "Fazenda Santa Escolastica Airport", + "latitude_deg": "-16.846666", + "longitude_deg": "-54.458889", + "elevation_ft": "1145", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pedra Preta", + "scheduled_service": "no", + "keywords": "SWEX" + }, + { + "id": "37862", + "ident": "SWEY", + "type": "small_airport", + "name": "Fazenda Santa Fé Airport", + "latitude_deg": "-13.535", + "longitude_deg": "-48.901669", + "elevation_ft": "1197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Santa Tereza De Goias", + "scheduled_service": "no", + "keywords": "SWEY" + }, + { + "id": "37863", + "ident": "SWEZ", + "type": "small_airport", + "name": "Fazenda Santa Rita de Cássia Airport", + "latitude_deg": "-15.25027847290039", + "longitude_deg": "-56.481109619140625", + "elevation_ft": "666", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Jangada", + "scheduled_service": "no", + "gps_code": "SWEZ" + }, + { + "id": "37864", + "ident": "SWFA", + "type": "small_airport", + "name": "Fazenda Pamplona Airport", + "latitude_deg": "-16.25055694580078", + "longitude_deg": "-47.61722183227539", + "elevation_ft": "3281", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Cristalina", + "scheduled_service": "no", + "gps_code": "SWFA" + }, + { + "id": "337283", + "ident": "SWFB", + "type": "heliport", + "name": "Fazendas Bergamini Heliport", + "latitude_deg": "-23.78721", + "longitude_deg": "-49.424154", + "elevation_ft": "1982", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Riversul", + "scheduled_service": "no", + "gps_code": "SWFB", + "local_code": "SP1282" + }, + { + "id": "37865", + "ident": "SWFC", + "type": "small_airport", + "name": "Fazenda Colorado Airport", + "latitude_deg": "-16.167221069335938", + "longitude_deg": "-54.842777252197266", + "elevation_ft": "1191", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juscimeira", + "scheduled_service": "no", + "gps_code": "SWFC" + }, + { + "id": "37866", + "ident": "SWFD", + "type": "small_airport", + "name": "Fazenda Tombador Airport", + "latitude_deg": "-11.716667175292969", + "longitude_deg": "-58.048057556152344", + "elevation_ft": "863", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SWFD" + }, + { + "id": "37867", + "ident": "SWFE", + "type": "small_airport", + "name": "Fazenda Colen Airport", + "latitude_deg": "-13.314443588256836", + "longitude_deg": "-56.11277770996094", + "elevation_ft": "1345", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Lucas Do Rio Verde", + "scheduled_service": "no", + "gps_code": "SWFE" + }, + { + "id": "37868", + "ident": "SWFF", + "type": "small_airport", + "name": "Fazenda Figueira Branca Airport", + "latitude_deg": "-10.723610877990723", + "longitude_deg": "-54.83833312988281", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sinop", + "scheduled_service": "no", + "gps_code": "SWFF" + }, + { + "id": "37869", + "ident": "SWFG", + "type": "small_airport", + "name": "Fazenda Guanabara Airport", + "latitude_deg": "-12.029999732971191", + "longitude_deg": "-51.6775016784668", + "elevation_ft": "1116", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra Do Garças", + "scheduled_service": "no", + "gps_code": "SWFG" + }, + { + "id": "37870", + "ident": "SWFH", + "type": "small_airport", + "name": "Fazenda Manchete Airport", + "latitude_deg": "-9.746944427490234", + "longitude_deg": "-49.980831146240234", + "elevation_ft": "640", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Araguacema", + "scheduled_service": "no", + "gps_code": "SWFH" + }, + { + "id": "323589", + "ident": "SWFI", + "type": "heliport", + "name": "Ferretti Group do Brasil Heliport", + "latitude_deg": "-23.605001", + "longitude_deg": "-47.01", + "elevation_ft": "3022", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Vargem Grande Paulista", + "scheduled_service": "no", + "gps_code": "SWFI" + }, + { + "id": "533", + "ident": "SWFJ", + "type": "closed", + "name": "Alcimar Leitão Airport", + "latitude_deg": "-8.16558", + "longitude_deg": "-70.352997", + "elevation_ft": "394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Feijó", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Old_Feij%C3%B3_Airport", + "keywords": "SWFJ, FEJ, Feijó Airport" + }, + { + "id": "37871", + "ident": "SWFK", + "type": "small_airport", + "name": "Fazenda Juquei Agropecuária Airport", + "latitude_deg": "-15.074722290039062", + "longitude_deg": "-48.238609313964844", + "elevation_ft": "2297", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Padre Bernardo", + "scheduled_service": "no", + "gps_code": "SWFK" + }, + { + "id": "37872", + "ident": "SWFL", + "type": "small_airport", + "name": "Fazenda Peixe Bravo Airport", + "latitude_deg": "-10.116944313049316", + "longitude_deg": "-50.41722106933594", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santa Terezinha", + "scheduled_service": "no", + "gps_code": "SWFL" + }, + { + "id": "37873", + "ident": "SWFN", + "type": "small_airport", + "name": "Flores Airport", + "latitude_deg": "-3.072917", + "longitude_deg": "-60.021937", + "elevation_ft": "203", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Manaus", + "scheduled_service": "no", + "gps_code": "SWFN", + "keywords": "Amazonas Aeroclub" + }, + { + "id": "37874", + "ident": "SWFO", + "type": "small_airport", + "name": "Fazenda Bocaína Airport", + "latitude_deg": "-15.346388816833496", + "longitude_deg": "-56.71110916137695", + "elevation_ft": "1037", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Jangada", + "scheduled_service": "no", + "gps_code": "SWFO" + }, + { + "id": "37875", + "ident": "SWFP", + "type": "small_airport", + "name": "Fazenda Primavera Airport", + "latitude_deg": "-10.637303", + "longitude_deg": "-52.028684", + "elevation_ft": "801", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Alegre Do Norte", + "scheduled_service": "no", + "gps_code": "SD4B", + "local_code": "MT0699", + "keywords": "SWFP, Fazenda Paraíso" + }, + { + "id": "534", + "ident": "SWFQ", + "type": "small_airport", + "name": "Fazenda Alvorada Airport", + "latitude_deg": "-10.392000198364258", + "longitude_deg": "-48.67919921875", + "elevation_ft": "943", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Porto Nacional", + "scheduled_service": "no", + "gps_code": "SWFQ", + "local_code": "SWFQ" + }, + { + "id": "535", + "ident": "SWFR", + "type": "small_airport", + "name": "Formosa Airport", + "latitude_deg": "-15.555100440979004", + "longitude_deg": "-47.345699310302734", + "elevation_ft": "3166", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Formosa", + "scheduled_service": "no", + "gps_code": "SWFR", + "local_code": "SWFR" + }, + { + "id": "37876", + "ident": "SWFS", + "type": "small_airport", + "name": "Fazenda Sucuri Airport", + "latitude_deg": "-13.536238", + "longitude_deg": "-54.935095", + "elevation_ft": "1575", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sinop", + "scheduled_service": "no", + "keywords": "SWFS" + }, + { + "id": "37877", + "ident": "SWFT", + "type": "small_airport", + "name": "Fazenda Santa Márcia Airport", + "latitude_deg": "-16.579439", + "longitude_deg": "-52.141618", + "elevation_ft": "2175", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Caiapônia", + "scheduled_service": "no", + "gps_code": "SWOS", + "local_code": "GO0141", + "keywords": "SWFT" + }, + { + "id": "37878", + "ident": "SWFU", + "type": "small_airport", + "name": "Fortuna Airport", + "latitude_deg": "-16.16694450378418", + "longitude_deg": "-59.50055694580078", + "elevation_ft": "866", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Fortuna", + "scheduled_service": "no", + "gps_code": "SWFU" + }, + { + "id": "323586", + "ident": "SWFV", + "type": "small_airport", + "name": "Terramare Airport", + "latitude_deg": "-20.722335", + "longitude_deg": "-45.864788", + "elevation_ft": "2569", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Guapé", + "scheduled_service": "no", + "gps_code": "SWFV" + }, + { + "id": "37879", + "ident": "SWFW", + "type": "small_airport", + "name": "Fazenda Jangada Airport", + "latitude_deg": "-14.719644", + "longitude_deg": "-51.914434", + "elevation_ft": "919", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Xavantina", + "scheduled_service": "no", + "keywords": "SWFW" + }, + { + "id": "536", + "ident": "SWFX", + "type": "small_airport", + "name": "São Félix do Araguaia Airport", + "latitude_deg": "-11.632399559020996", + "longitude_deg": "-50.68960189819336", + "elevation_ft": "650", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São Félix Do Araguaia", + "scheduled_service": "no", + "gps_code": "SWFX", + "iata_code": "SXO", + "local_code": "SWFX" + }, + { + "id": "37880", + "ident": "SWFY", + "type": "small_airport", + "name": "Fazenda Ipê Airport", + "latitude_deg": "-9.966943740844727", + "longitude_deg": "-50.950557708740234", + "elevation_ft": "718", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Rica", + "scheduled_service": "no", + "gps_code": "SWFY" + }, + { + "id": "37881", + "ident": "SWFZ", + "type": "small_airport", + "name": "Fazenda Shalon Airport", + "latitude_deg": "-9.987398", + "longitude_deg": "-56.675869", + "elevation_ft": "876", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alta Floresta", + "scheduled_service": "no", + "gps_code": "SDSH", + "local_code": "MT0060", + "keywords": "SWFZ, Serafino Ferruzzi" + }, + { + "id": "307448", + "ident": "SWG", + "type": "small_airport", + "name": "Satwag Airport", + "latitude_deg": "-6.13955555556", + "longitude_deg": "147.279166667", + "elevation_ft": "4185", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Satwag", + "scheduled_service": "no", + "gps_code": "AYSW", + "iata_code": "SWG", + "local_code": "SWG" + }, + { + "id": "37882", + "ident": "SWGA", + "type": "small_airport", + "name": "Fazenda Guará Airport", + "latitude_deg": "-14.8225", + "longitude_deg": "-60.017223", + "elevation_ft": "1378", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "keywords": "SWGA" + }, + { + "id": "323582", + "ident": "SWGC", + "type": "small_airport", + "name": "Agricenter Airport", + "latitude_deg": "-22.627129", + "longitude_deg": "-55.57916", + "elevation_ft": "2073", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ponta Porã", + "scheduled_service": "no", + "gps_code": "SWGC" + }, + { + "id": "323583", + "ident": "SWGD", + "type": "small_airport", + "name": "Fazenda Maiador Airport", + "latitude_deg": "-18.174926", + "longitude_deg": "-48.211119", + "elevation_ft": "2073", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiandira", + "scheduled_service": "no", + "gps_code": "SWFM", + "local_code": "GO0122", + "keywords": "SWGD, Fazenda Dourados" + }, + { + "id": "37883", + "ident": "SWGE", + "type": "small_airport", + "name": "Fazenda Pirigara Airport", + "latitude_deg": "-17.006745", + "longitude_deg": "-56.47934", + "elevation_ft": "344", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão De Melgaço", + "scheduled_service": "no", + "keywords": "SWGE" + }, + { + "id": "46214", + "ident": "SWGF", + "type": "closed", + "name": "Jirau Hydroelectric Plant Airport", + "latitude_deg": "-9.288032", + "longitude_deg": "-64.625487", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Jaci Paraná", + "scheduled_service": "no", + "keywords": "SWGF" + }, + { + "id": "37884", + "ident": "SWGH", + "type": "small_airport", + "name": "Fazenda Primavera Airport", + "latitude_deg": "-16.246111", + "longitude_deg": "-57.621388", + "elevation_ft": "1299", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SWUH", + "local_code": "SWUH", + "keywords": "SWGH" + }, + { + "id": "537", + "ident": "SWGI", + "type": "small_airport", + "name": "Gurupi Airport", + "latitude_deg": "-11.73960018157959", + "longitude_deg": "-49.132198333740234", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Gurupi", + "scheduled_service": "no", + "gps_code": "SWGI", + "iata_code": "GRP", + "local_code": "SWGI" + }, + { + "id": "316573", + "ident": "SWGJ", + "type": "closed", + "name": "Fazenda São Jorge Airstrip", + "latitude_deg": "-18.6448", + "longitude_deg": "-51.4828", + "elevation_ft": "1885", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Itaruma", + "scheduled_service": "no", + "keywords": "SWGJ" + }, + { + "id": "37885", + "ident": "SWGK", + "type": "small_airport", + "name": "Fazenda Sete Barras Airport", + "latitude_deg": "-12.56158", + "longitude_deg": "-51.694515", + "elevation_ft": "801", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Ribeirão Cascalheira", + "scheduled_service": "no", + "gps_code": "SSXP", + "local_code": "MT0495", + "keywords": "SWGK" + }, + { + "id": "37886", + "ident": "SWGL", + "type": "small_airport", + "name": "Goálcool Airport", + "latitude_deg": "-18.391389846801758", + "longitude_deg": "-52.10444259643555", + "elevation_ft": "2067", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Serranópolis", + "scheduled_service": "no", + "gps_code": "SWGL" + }, + { + "id": "37887", + "ident": "SWGM", + "type": "small_airport", + "name": "Ninho das Águias Airport", + "latitude_deg": "-15.490542", + "longitude_deg": "-55.814774", + "elevation_ft": "2464", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cuiabá", + "scheduled_service": "no", + "gps_code": "SWGM", + "keywords": "SWGM" + }, + { + "id": "538", + "ident": "SWGN", + "type": "medium_airport", + "name": "Araguaína Airport", + "latitude_deg": "-7.22787", + "longitude_deg": "-48.240501", + "elevation_ft": "771", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Araguaína", + "scheduled_service": "yes", + "gps_code": "SWGN", + "iata_code": "AUX", + "local_code": "SWGN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aragua%C3%ADna_Airport" + }, + { + "id": "37888", + "ident": "SWGO", + "type": "small_airport", + "name": "Santa Cecília Airport", + "latitude_deg": "-15.342632", + "longitude_deg": "-49.13533", + "elevation_ft": "2218", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goianésia", + "scheduled_service": "no", + "gps_code": "SWGO", + "local_code": "GO0123" + }, + { + "id": "539", + "ident": "SWGP", + "type": "small_airport", + "name": "Palmeiras de Goiás Airport", + "latitude_deg": "-16.826900482177734", + "longitude_deg": "-49.87889862060547", + "elevation_ft": "1995", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Palmeiras De Goiás", + "scheduled_service": "no", + "gps_code": "SWGP", + "local_code": "SWGP" + }, + { + "id": "37889", + "ident": "SWGQ", + "type": "small_airport", + "name": "Fazenda Monte Alegre Airport", + "latitude_deg": "-14.78083324432373", + "longitude_deg": "-57.35416793823242", + "elevation_ft": "755", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Olímpia", + "scheduled_service": "no", + "gps_code": "SWGQ" + }, + { + "id": "29655", + "ident": "SWGR", + "type": "closed", + "name": "Alto Garças Airport", + "latitude_deg": "-16.92", + "longitude_deg": "-53.54", + "elevation_ft": "2707", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alto Garças", + "scheduled_service": "no", + "wikipedia_link": "https://web.archive.org/web/20160617181444/https://pt.wikipedia.org/wiki/Aeroporto_de_Alto_Garças", + "keywords": "SWGR" + }, + { + "id": "37890", + "ident": "SWGS", + "type": "small_airport", + "name": "Fazenda Divisa Airport", + "latitude_deg": "-9.791666984558105", + "longitude_deg": "-50.81999969482422", + "elevation_ft": "755", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santana Do Araguaia", + "scheduled_service": "no", + "gps_code": "SWGS" + }, + { + "id": "46215", + "ident": "SWGT", + "type": "small_airport", + "name": "Fazenda Nova Airport", + "latitude_deg": "-17.172918", + "longitude_deg": "-50.208507", + "elevation_ft": "1909", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Jandaia", + "scheduled_service": "yes", + "gps_code": "SWGT", + "local_code": "GO0125" + }, + { + "id": "37891", + "ident": "SWGU", + "type": "small_airport", + "name": "Fazenda Água Fria Airport", + "latitude_deg": "-12.402723", + "longitude_deg": "-50.063592", + "elevation_ft": "738", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Sandolândia", + "scheduled_service": "no", + "gps_code": "SDV3", + "local_code": "TO0098", + "keywords": "SWGU" + }, + { + "id": "37892", + "ident": "SWGV", + "type": "small_airport", + "name": "Fazenda Cocal II Airport", + "latitude_deg": "-12.801944", + "longitude_deg": "-52.607777", + "elevation_ft": "1004", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Água Boa", + "scheduled_service": "no", + "gps_code": "SWGV", + "local_code": "MT0346" + }, + { + "id": "37893", + "ident": "SWGW", + "type": "small_airport", + "name": "Fazenda Santa Rita do Araguaia Airport", + "latitude_deg": "-15.437529", + "longitude_deg": "-51.599684", + "elevation_ft": "1047", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Jussara", + "scheduled_service": "no", + "gps_code": "SWGW", + "local_code": "GO0126" + }, + { + "id": "44452", + "ident": "SWGX", + "type": "heliport", + "name": "Primavera Hospital Helipad", + "latitude_deg": "-10.950251", + "longitude_deg": "-37.064921", + "elevation_ft": "128", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SE", + "municipality": "Aracaju", + "scheduled_service": "no", + "gps_code": "SJPV", + "local_code": "SE0006", + "keywords": "SWGX" + }, + { + "id": "334882", + "ident": "SWGY", + "type": "heliport", + "name": "Sierra Móveis Gramado Heliport", + "latitude_deg": "-29.41732", + "longitude_deg": "-50.853374", + "elevation_ft": "2182", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Gramado", + "scheduled_service": "no", + "gps_code": "SWGY", + "local_code": "RS0116" + }, + { + "id": "540", + "ident": "SWGZ", + "type": "small_airport", + "name": "Fazenda Guanabara Airport", + "latitude_deg": "-14.776846", + "longitude_deg": "-57.188846", + "elevation_ft": "988", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Olímpia", + "scheduled_service": "no", + "gps_code": "SWGG", + "local_code": "MT0344", + "keywords": "SWGZ" + }, + { + "id": "37894", + "ident": "SWHA", + "type": "small_airport", + "name": "Fazenda Boa Esperança Soberbinho Airport", + "latitude_deg": "-14.644721984863281", + "longitude_deg": "-49.81638717651367", + "elevation_ft": "1553", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Guarinos", + "scheduled_service": "no", + "gps_code": "SWHA" + }, + { + "id": "37895", + "ident": "SWHB", + "type": "heliport", + "name": "Brasex I Heliport", + "latitude_deg": "-15.855278", + "longitude_deg": "-47.866863", + "elevation_ft": "3314", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SWHB" + }, + { + "id": "341728", + "ident": "SWHC", + "type": "heliport", + "name": "Caracol Heliport", + "latitude_deg": "-29.317271", + "longitude_deg": "-50.851886", + "elevation_ft": "2221", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Canela", + "scheduled_service": "no", + "gps_code": "SWHC", + "local_code": "RS0126" + }, + { + "id": "335063", + "ident": "SWHD", + "type": "small_airport", + "name": "Fazenda Ipuitã Airport", + "latitude_deg": "-23.022277", + "longitude_deg": "-53.901218", + "elevation_ft": "1063", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Naviraí", + "scheduled_service": "no", + "gps_code": "SWHD", + "local_code": "MS0419" + }, + { + "id": "37896", + "ident": "SWHE", + "type": "small_airport", + "name": "Agropecuária Cajabi Airport", + "latitude_deg": "-10.734443664550781", + "longitude_deg": "-54.53444290161133", + "elevation_ft": "1352", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Marvelândia", + "scheduled_service": "no", + "gps_code": "SWHE" + }, + { + "id": "37897", + "ident": "SWHF", + "type": "small_airport", + "name": "Fazenda Frigovale I Airport", + "latitude_deg": "-10.490778", + "longitude_deg": "-48.3372", + "elevation_ft": "860", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Porto Nacional", + "scheduled_service": "no", + "keywords": "SWHF" + }, + { + "id": "541", + "ident": "SWHG", + "type": "small_airport", + "name": "Santa Helena de Goiás Airport", + "latitude_deg": "-17.827238", + "longitude_deg": "-50.588033", + "elevation_ft": "1591", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Santa Helena de Goiás", + "scheduled_service": "no", + "gps_code": "SWHG", + "local_code": "GO0032", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Santa_Helena_de_Goiás", + "keywords": "Deputado Federal José Alves de Assis" + }, + { + "id": "46216", + "ident": "SWHI", + "type": "heliport", + "name": "Gold Meat Heliport", + "latitude_deg": "-21.265", + "longitude_deg": "-47.311667", + "elevation_ft": "2680", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cajuru", + "scheduled_service": "no", + "gps_code": "SWHI", + "local_code": "SWHI" + }, + { + "id": "37898", + "ident": "SWHJ", + "type": "small_airport", + "name": "Fazenda Bela Vista Airport", + "latitude_deg": "-10.056322", + "longitude_deg": "-56.991573", + "elevation_ft": "866", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Monte Verde", + "scheduled_service": "no", + "gps_code": "SWRA", + "local_code": "MT0625", + "keywords": "SWHJ" + }, + { + "id": "353016", + "ident": "SWHK", + "type": "heliport", + "name": "Hbuster Helipad", + "latitude_deg": "-23.619013", + "longitude_deg": "-46.884922", + "elevation_ft": "2746", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cotia", + "scheduled_service": "no", + "gps_code": "SWHK", + "local_code": "SP0810" + }, + { + "id": "37899", + "ident": "SWHL", + "type": "small_airport", + "name": "Fazenda Marabá Airport", + "latitude_deg": "-15.274999618530273", + "longitude_deg": "-55.121665954589844", + "elevation_ft": "2247", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Verde", + "scheduled_service": "no", + "gps_code": "SWHL" + }, + { + "id": "37900", + "ident": "SWHN", + "type": "small_airport", + "name": "Fazenda Nossa Senhora de Fátima Airport", + "latitude_deg": "-10.156389236450195", + "longitude_deg": "-56.981109619140625", + "elevation_ft": "853", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Monte Verde", + "scheduled_service": "no", + "gps_code": "SWHN" + }, + { + "id": "37901", + "ident": "SWHO", + "type": "small_airport", + "name": "Gleba Oscar Americano I Airport", + "latitude_deg": "-11.533611297607422", + "longitude_deg": "-56.55055618286133", + "elevation_ft": "1017", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Dos Gaúchos", + "scheduled_service": "no", + "gps_code": "SWHO" + }, + { + "id": "37902", + "ident": "SWHP", + "type": "small_airport", + "name": "Olhos D`água Airport", + "latitude_deg": "-14.019444", + "longitude_deg": "-52.152222", + "elevation_ft": "1506", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Água Boa", + "scheduled_service": "no", + "gps_code": "SWHP", + "iata_code": "GGB" + }, + { + "id": "37903", + "ident": "SWHQ", + "type": "small_airport", + "name": "Fazenda Santa Cruz Airport", + "latitude_deg": "-15.189167022700001", + "longitude_deg": "-59.9391670227", + "elevation_ft": "1060", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SWHQ" + }, + { + "id": "37904", + "ident": "SWHS", + "type": "small_airport", + "name": "Fazenda São João Airport", + "latitude_deg": "-18.053333282470703", + "longitude_deg": "-50.38694381713867", + "elevation_ft": "1729", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Maurilândia", + "scheduled_service": "no", + "gps_code": "SWHS" + }, + { + "id": "542", + "ident": "SWHT", + "type": "small_airport", + "name": "Humaitá Airport", + "latitude_deg": "-7.532120227810001", + "longitude_deg": "-63.072101593", + "elevation_ft": "230", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Humaitá", + "scheduled_service": "no", + "gps_code": "SWHT", + "iata_code": "HUW", + "local_code": "SWHT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Humait%C3%A1_Airport" + }, + { + "id": "46217", + "ident": "SWHU", + "type": "small_airport", + "name": "Fazenda Izaura - Usina Cocal Airport", + "latitude_deg": "-22.506667", + "longitude_deg": "-50.865278", + "elevation_ft": "1542", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Racharia", + "scheduled_service": "no", + "gps_code": "SWHU", + "local_code": "SWHU" + }, + { + "id": "45658", + "ident": "SWHY", + "type": "small_airport", + "name": "Fazenda Esperança I Airport", + "latitude_deg": "-4.13", + "longitude_deg": "-48.69", + "elevation_ft": "285", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Rondon Do Pará", + "scheduled_service": "no", + "gps_code": "SWHY" + }, + { + "id": "37905", + "ident": "SWHZ", + "type": "small_airport", + "name": "Fazenda Taquaruçu Retiro Airport", + "latitude_deg": "-10.338610649108887", + "longitude_deg": "-55.96555709838867", + "elevation_ft": "1010", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Carlinda", + "scheduled_service": "no", + "gps_code": "SWHZ" + }, + { + "id": "29969", + "ident": "SWIA", + "type": "small_airport", + "name": "Iaciara Airport", + "latitude_deg": "-14.107609", + "longitude_deg": "-46.666918", + "elevation_ft": "1854", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Iaciara", + "scheduled_service": "no" + }, + { + "id": "37906", + "ident": "SWIB", + "type": "small_airport", + "name": "Fazenda Santa Laura Airport", + "latitude_deg": "-10.862777709960938", + "longitude_deg": "-54.91416549682617", + "elevation_ft": "1096", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Santa Helena", + "scheduled_service": "no", + "gps_code": "SWIB" + }, + { + "id": "337287", + "ident": "SWIC", + "type": "small_airport", + "name": "Fazenda Rancho Alegre Airport", + "latitude_deg": "-13.519624", + "longitude_deg": "-56.066678", + "elevation_ft": "1467", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Mutum", + "scheduled_service": "no", + "gps_code": "SWIC", + "local_code": "MT0591" + }, + { + "id": "543", + "ident": "SWID", + "type": "small_airport", + "name": "Fazenda Indiara Airport", + "latitude_deg": "-13.314900398254395", + "longitude_deg": "-49.774898529052734", + "elevation_ft": "909", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "São Miguel Do Araguaia", + "scheduled_service": "no", + "gps_code": "SWID", + "local_code": "SWID" + }, + { + "id": "37907", + "ident": "SWIE", + "type": "small_airport", + "name": "Fazenda São Francisco Airport", + "latitude_deg": "-13.919444", + "longitude_deg": "-50.009998", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Mundo Novo", + "scheduled_service": "no", + "gps_code": "SIGS", + "local_code": "GO0049", + "keywords": "SWIE" + }, + { + "id": "37908", + "ident": "SWIG", + "type": "small_airport", + "name": "Fazenda São José Airport", + "latitude_deg": "-15.010832786560059", + "longitude_deg": "-59.252220153808594", + "elevation_ft": "879", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes E Lacerda", + "scheduled_service": "no", + "gps_code": "SWIG" + }, + { + "id": "544", + "ident": "SWII", + "type": "small_airport", + "name": "Ipiranga Airport", + "latitude_deg": "-2.939069986343384", + "longitude_deg": "-69.69400024414062", + "elevation_ft": "131", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Santo Antônio Do Içá", + "scheduled_service": "no", + "gps_code": "SWII", + "iata_code": "IPG", + "local_code": "SWII" + }, + { + "id": "37909", + "ident": "SWIJ", + "type": "small_airport", + "name": "Fazenda São Jorge Airport", + "latitude_deg": "-17.518056869506836", + "longitude_deg": "-54.82638931274414", + "elevation_ft": "1683", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Itiquira", + "scheduled_service": "no", + "gps_code": "SWIJ" + }, + { + "id": "37910", + "ident": "SWIK", + "type": "small_airport", + "name": "Fazenda Vanguarda Airport", + "latitude_deg": "-14.917222023", + "longitude_deg": "-51.2838897705", + "elevation_ft": "935", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cocalinho", + "scheduled_service": "no", + "gps_code": "SWIK" + }, + { + "id": "37911", + "ident": "SWIL", + "type": "small_airport", + "name": "Fazenda Tarumã Airport", + "latitude_deg": "-17.015832901", + "longitude_deg": "-54.3497238159", + "elevation_ft": "1499", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pedra Preta", + "scheduled_service": "no", + "gps_code": "SWIL" + }, + { + "id": "37912", + "ident": "SWIM", + "type": "small_airport", + "name": "Fazenda Três Ranchos Airport", + "latitude_deg": "-16.126667022705078", + "longitude_deg": "-51.66972351074219", + "elevation_ft": "1142", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Montes Claros De Goiás", + "scheduled_service": "no", + "gps_code": "SWIM" + }, + { + "id": "545", + "ident": "SWIN", + "type": "small_airport", + "name": "Fazenda Itamarati Norte Airport", + "latitude_deg": "-14.243000030517578", + "longitude_deg": "-57.99530029296875", + "elevation_ft": "2188", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo Do Parecis", + "scheduled_service": "no", + "gps_code": "SWIN", + "local_code": "SWIN" + }, + { + "id": "37913", + "ident": "SWIO", + "type": "small_airport", + "name": "Fazenda Triângulo Airport", + "latitude_deg": "-17.621323", + "longitude_deg": "-50.142009", + "elevation_ft": "1562", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Edéia", + "scheduled_service": "no", + "gps_code": "SWIO" + }, + { + "id": "37914", + "ident": "SWIP", + "type": "small_airport", + "name": "Ipameri Airport", + "latitude_deg": "-17.68722152709961", + "longitude_deg": "-48.16194534301758", + "elevation_ft": "2729", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Ipameri", + "scheduled_service": "no", + "gps_code": "SWIP" + }, + { + "id": "45610", + "ident": "SWIR", + "type": "heliport", + "name": "CCN Torre Norte Heliport", + "latitude_deg": "-22.911944", + "longitude_deg": "-43.208333", + "elevation_ft": "128", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SWIR" + }, + { + "id": "37915", + "ident": "SWIU", + "type": "small_airport", + "name": "Madeirinha Airport", + "latitude_deg": "-9.846388816833496", + "longitude_deg": "-61.41749954223633", + "elevation_ft": "476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Aripuanã", + "scheduled_service": "no", + "gps_code": "SWIU" + }, + { + "id": "44439", + "ident": "SWIV", + "type": "small_airport", + "name": "Águia Branca do Paru Airport", + "latitude_deg": "-1.26805603504", + "longitude_deg": "-53.261390686", + "elevation_ft": "479", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Almeirim", + "scheduled_service": "no", + "gps_code": "SWIV" + }, + { + "id": "37916", + "ident": "SWIX", + "type": "small_airport", + "name": "Fazenda Michelin Airport", + "latitude_deg": "-17.379842", + "longitude_deg": "-54.736344", + "elevation_ft": "1640", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Itiquira", + "scheduled_service": "no", + "keywords": "SWIX" + }, + { + "id": "546", + "ident": "SWIY", + "type": "small_airport", + "name": "Santa Izabel do Morro Airport", + "latitude_deg": "-11.57229995727539", + "longitude_deg": "-50.66619873046875", + "elevation_ft": "647", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Cristalândia", + "scheduled_service": "no", + "gps_code": "SWIY", + "iata_code": "IDO", + "local_code": "SWIY" + }, + { + "id": "37917", + "ident": "SWJA", + "type": "small_airport", + "name": "Fazenda Juína Airport", + "latitude_deg": "-11.642778396606445", + "longitude_deg": "-59.087501525878906", + "elevation_ft": "1100", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juína", + "scheduled_service": "no", + "gps_code": "SWJA" + }, + { + "id": "37918", + "ident": "SWJB", + "type": "small_airport", + "name": "Fazenda Juba Airport", + "latitude_deg": "-14.744999885559082", + "longitude_deg": "-58.128334045410156", + "elevation_ft": "1667", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tangará Da Serra", + "scheduled_service": "no", + "gps_code": "SWJB" + }, + { + "id": "37919", + "ident": "SWJC", + "type": "small_airport", + "name": "Jaciara Airport", + "latitude_deg": "-15.971667289733887", + "longitude_deg": "-54.96861267089844", + "elevation_ft": "1198", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Jaciara", + "scheduled_service": "no", + "gps_code": "SWJC" + }, + { + "id": "37920", + "ident": "SWJD", + "type": "small_airport", + "name": "Fazenda Genipapo Airport", + "latitude_deg": "-13.452221870422363", + "longitude_deg": "-46.679443359375", + "elevation_ft": "1279", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "São Domingos", + "scheduled_service": "no", + "gps_code": "SWJD" + }, + { + "id": "37921", + "ident": "SWJE", + "type": "small_airport", + "name": "Fazenda Ibia Airport", + "latitude_deg": "-16.396944046020508", + "longitude_deg": "-52.328609466552734", + "elevation_ft": "2634", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Baliza", + "scheduled_service": "no", + "gps_code": "SWJE" + }, + { + "id": "37922", + "ident": "SWJF", + "type": "small_airport", + "name": "Fazenda São Marcelo Airport", + "latitude_deg": "-10.198919", + "longitude_deg": "-58.490691", + "elevation_ft": "738", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juruena", + "scheduled_service": "no", + "gps_code": "SDB9", + "local_code": "MT0703", + "keywords": "SWJF" + }, + { + "id": "37923", + "ident": "SWJG", + "type": "small_airport", + "name": "Fazenda Jaraguá Airport", + "latitude_deg": "-14.483611106872559", + "longitude_deg": "-57.43388748168945", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Arenápolis", + "scheduled_service": "no", + "gps_code": "SWJG" + }, + { + "id": "547", + "ident": "SWJI", + "type": "small_airport", + "name": "Ji-Paraná Airport", + "latitude_deg": "-10.870743", + "longitude_deg": "-61.846675", + "elevation_ft": "598", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Ji-Paraná", + "scheduled_service": "yes", + "gps_code": "SBJI", + "iata_code": "JPR", + "local_code": "RO0005", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ji-Paran%C3%A1_Airport", + "keywords": "SWJI" + }, + { + "id": "37924", + "ident": "SWJJ", + "type": "small_airport", + "name": "Fazenda Januarinho Airport", + "latitude_deg": "-15.050277709960938", + "longitude_deg": "-57.50055694580078", + "elevation_ft": "755", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Salto Do Céu", + "scheduled_service": "no", + "gps_code": "SWJJ" + }, + { + "id": "37925", + "ident": "SWJK", + "type": "small_airport", + "name": "Fazenda São Paulo Airport", + "latitude_deg": "-14.976388931274414", + "longitude_deg": "-51.33555603027344", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Britânia", + "scheduled_service": "no", + "gps_code": "SWJK" + }, + { + "id": "37926", + "ident": "SWJL", + "type": "small_airport", + "name": "Fazenda Invernada Airport", + "latitude_deg": "-19.04111099243164", + "longitude_deg": "-51.25944519042969", + "elevation_ft": "1345", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Itajá", + "scheduled_service": "no", + "gps_code": "SWJL" + }, + { + "id": "37927", + "ident": "SWJM", + "type": "small_airport", + "name": "Fazenda Bom Jesus Airport", + "latitude_deg": "-12.966388702392578", + "longitude_deg": "-46.565277099609375", + "elevation_ft": "2067", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Novo Alegre", + "scheduled_service": "no", + "gps_code": "SWJM" + }, + { + "id": "37928", + "ident": "SWJN", + "type": "small_airport", + "name": "Juína Airport", + "latitude_deg": "-11.419444", + "longitude_deg": "-58.701668", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juína", + "scheduled_service": "no", + "gps_code": "SWJN", + "iata_code": "JIA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ju%C3%ADna_Airport" + }, + { + "id": "37929", + "ident": "SWJO", + "type": "closed", + "name": "Fazenda São Paulo - Retiro Santa Maria Airport", + "latitude_deg": "-15.14", + "longitude_deg": "-51.254444", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Britânia", + "scheduled_service": "no" + }, + { + "id": "548", + "ident": "SWJP", + "type": "small_airport", + "name": "Bittencourt Airport", + "latitude_deg": "-1.4039299488067627", + "longitude_deg": "-69.42379760742188", + "elevation_ft": "257", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Japurá", + "scheduled_service": "no", + "gps_code": "SWJP", + "local_code": "SWJP" + }, + { + "id": "44442", + "ident": "SWJQ", + "type": "small_airport", + "name": "Fazenda Colibri Airport", + "latitude_deg": "-20.226943969726562", + "longitude_deg": "-51.84583282470703", + "elevation_ft": "1391", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Selvíria", + "scheduled_service": "no", + "gps_code": "SWJQ" + }, + { + "id": "37930", + "ident": "SWJR", + "type": "small_airport", + "name": "Fazenda União Airport", + "latitude_deg": "-11.948888778686523", + "longitude_deg": "-54.51555633544922", + "elevation_ft": "1180", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santa Carmen", + "scheduled_service": "no", + "gps_code": "SWJR" + }, + { + "id": "37931", + "ident": "SWJS", + "type": "small_airport", + "name": "Fazenda Samambaia Airport", + "latitude_deg": "-15.48611068725586", + "longitude_deg": "-51.26944351196289", + "elevation_ft": "692", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Jussara", + "scheduled_service": "no", + "gps_code": "SWJS" + }, + { + "id": "37932", + "ident": "SWJT", + "type": "small_airport", + "name": "Joatão do Colorado Airport", + "latitude_deg": "-11.493914", + "longitude_deg": "-52.620184", + "elevation_ft": "1165", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São Félix do Araguaia", + "scheduled_service": "no", + "gps_code": "SWXD", + "local_code": "MT0505", + "keywords": "SWJT, Fazenda Joatão" + }, + { + "id": "37933", + "ident": "SWJU", + "type": "small_airport", + "name": "Juruena Airport", + "latitude_deg": "-10.305832862854004", + "longitude_deg": "-58.489444732666016", + "elevation_ft": "525", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juruena", + "scheduled_service": "no", + "gps_code": "SWJU", + "iata_code": "JRN" + }, + { + "id": "549", + "ident": "SWJV", + "type": "small_airport", + "name": "Palmeiras do Javari Airport", + "latitude_deg": "-5.127240180969238", + "longitude_deg": "-72.80999755859375", + "elevation_ft": "394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Atalaia Do Norte", + "scheduled_service": "no", + "gps_code": "SWJV", + "local_code": "SWJV" + }, + { + "id": "550", + "ident": "SWJW", + "type": "small_airport", + "name": "Jataí Airport", + "latitude_deg": "-17.8299007416", + "longitude_deg": "-51.7729988098", + "elevation_ft": "2529", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Jataí", + "scheduled_service": "no", + "gps_code": "SWJW", + "iata_code": "JTI", + "local_code": "SWJW", + "wikipedia_link": "http://pt.wikipedia.org/wiki/Aeroporto_de_Jata%C3%AD" + }, + { + "id": "42742", + "ident": "SWJX", + "type": "small_airport", + "name": "Fazenda das Perobas Airport", + "latitude_deg": "-19.502222061199998", + "longitude_deg": "-44.1577796936", + "elevation_ft": "2762", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Prudente De Morais", + "scheduled_service": "no", + "gps_code": "SWJX" + }, + { + "id": "37934", + "ident": "SWJY", + "type": "small_airport", + "name": "Fazenda Campo Alegre III Airport", + "latitude_deg": "-16.844722747802734", + "longitude_deg": "-53.73444366455078", + "elevation_ft": "2625", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alto Garças", + "scheduled_service": "no", + "gps_code": "SWJY" + }, + { + "id": "37935", + "ident": "SWJZ", + "type": "small_airport", + "name": "Fazenda Morro Vermelho Airport", + "latitude_deg": "-15.981389045715332", + "longitude_deg": "-54.53388977050781", + "elevation_ft": "1654", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juscimeira", + "scheduled_service": "no", + "gps_code": "SWJZ" + }, + { + "id": "37936", + "ident": "SWKA", + "type": "small_airport", + "name": "Fazenda Canadá Airport", + "latitude_deg": "-15.595277786254883", + "longitude_deg": "-51.25722122192383", + "elevation_ft": "951", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Jussara", + "scheduled_service": "no", + "gps_code": "SWKA" + }, + { + "id": "37937", + "ident": "SWKB", + "type": "small_airport", + "name": "Fazenda Campina Airport", + "latitude_deg": "-9.142499923706055", + "longitude_deg": "-67.44583129882812", + "elevation_ft": "699", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Boca Do Acre", + "scheduled_service": "no", + "gps_code": "SWKB" + }, + { + "id": "551", + "ident": "SWKC", + "type": "small_airport", + "name": "Cáceres Airport", + "latitude_deg": "-16.04360008239746", + "longitude_deg": "-57.62990188598633", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SWKC", + "iata_code": "CCX", + "local_code": "SWKC" + }, + { + "id": "37938", + "ident": "SWKE", + "type": "small_airport", + "name": "Cobrape Airport", + "latitude_deg": "-11.50861", + "longitude_deg": "-49.84222", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Formoso Do Araguaia", + "scheduled_service": "no", + "gps_code": "SWKE" + }, + { + "id": "37939", + "ident": "SWKG", + "type": "small_airport", + "name": "Fazenda Água Limpa Airport", + "latitude_deg": "-13.407221794128418", + "longitude_deg": "-54.75194549560547", + "elevation_ft": "1623", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Ubiratã", + "scheduled_service": "no", + "gps_code": "SWKG" + }, + { + "id": "37940", + "ident": "SWKH", + "type": "small_airport", + "name": "Fazenda Floresta Airport", + "latitude_deg": "-15.221111297607422", + "longitude_deg": "-55.13277816772461", + "elevation_ft": "2050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Verde", + "scheduled_service": "no", + "gps_code": "SWKH" + }, + { + "id": "37941", + "ident": "SWKJ", + "type": "small_airport", + "name": "Fazenda Mutum Airport", + "latitude_deg": "-15.398056030273438", + "longitude_deg": "-54.608333587646484", + "elevation_ft": "1821", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Dom Aquino", + "scheduled_service": "no", + "gps_code": "SWKJ" + }, + { + "id": "552", + "ident": "SWKK", + "type": "closed", + "name": "Old Cacoal Airport", + "latitude_deg": "-11.43", + "longitude_deg": "-61.48", + "elevation_ft": "640", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Cacoal", + "scheduled_service": "no", + "keywords": "SWKK" + }, + { + "id": "37942", + "ident": "SWKL", + "type": "small_airport", + "name": "Fazenda Primavera do Terebinto Airport", + "latitude_deg": "-12.557778358459473", + "longitude_deg": "-61.99611282348633", + "elevation_ft": "590", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Alto Alegre Dos Parecis", + "scheduled_service": "no", + "gps_code": "SWKL" + }, + { + "id": "37943", + "ident": "SWKM", + "type": "small_airport", + "name": "Aero Agrícola Rondon Airport", + "latitude_deg": "-14.644166946411133", + "longitude_deg": "-57.50416564941406", + "elevation_ft": "1390", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tangará Da Serra", + "scheduled_service": "no", + "gps_code": "SWKM" + }, + { + "id": "554", + "ident": "SWKO", + "type": "small_airport", + "name": "Coari Airport", + "latitude_deg": "-4.13406", + "longitude_deg": "-63.132599", + "elevation_ft": "131", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Coari", + "scheduled_service": "no", + "gps_code": "SWKO", + "iata_code": "CIZ", + "local_code": "SWKO" + }, + { + "id": "37944", + "ident": "SWKP", + "type": "small_airport", + "name": "Chácara Veneza Airport", + "latitude_deg": "-15.242500305175781", + "longitude_deg": "-59.2852783203125", + "elevation_ft": "866", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes E Lacerda", + "scheduled_service": "no", + "gps_code": "SWKP" + }, + { + "id": "45606", + "ident": "SWKQ", + "type": "small_airport", + "name": "Serra da Capivara Airport", + "latitude_deg": "-9.083392", + "longitude_deg": "-42.644656", + "elevation_ft": "1362", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "São Raimundo Nonato", + "scheduled_service": "no", + "gps_code": "SWKQ", + "iata_code": "NSR", + "local_code": "PI0004" + }, + { + "id": "44443", + "ident": "SWKR", + "type": "small_airport", + "name": "Fazenda Mangue Che II Airport", + "latitude_deg": "-18.670000076300003", + "longitude_deg": "-51.585277557400005", + "elevation_ft": "1752", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Itarumã", + "scheduled_service": "no", + "gps_code": "SWKR" + }, + { + "id": "335065", + "ident": "SWKS", + "type": "heliport", + "name": "Fornagieri Heliport", + "latitude_deg": "-23.311762", + "longitude_deg": "-52.511049", + "elevation_ft": "1017", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "São Carlos do Ivaí", + "scheduled_service": "no", + "gps_code": "SWKS", + "local_code": "PR0150" + }, + { + "id": "555", + "ident": "SWKT", + "type": "small_airport", + "name": "Catalão Airport", + "latitude_deg": "-18.216800689697266", + "longitude_deg": "-47.89970016479492", + "elevation_ft": "2612", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Catalão", + "scheduled_service": "no", + "gps_code": "SWKT", + "iata_code": "TLZ", + "local_code": "SWKT" + }, + { + "id": "556", + "ident": "SWKU", + "type": "small_airport", + "name": "Cucuí Airport", + "latitude_deg": "1.120609998703003", + "longitude_deg": "-66.841796875", + "elevation_ft": "274", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "São Gabriel Da Cachoeira", + "scheduled_service": "no", + "gps_code": "SWKU", + "local_code": "SWKU" + }, + { + "id": "37945", + "ident": "SWKV", + "type": "small_airport", + "name": "Fazenda Beira Rio Airport", + "latitude_deg": "-10.900833129882812", + "longitude_deg": "-55.858333587646484", + "elevation_ft": "1096", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Itaúba", + "scheduled_service": "no", + "gps_code": "SWKV" + }, + { + "id": "29746", + "ident": "SWKX", + "type": "small_airport", + "name": "Corixá Airport", + "latitude_deg": "-16.38360023498535", + "longitude_deg": "-58.31719970703125", + "elevation_ft": "394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SWKX", + "iata_code": "0" + }, + { + "id": "42743", + "ident": "SWKY", + "type": "small_airport", + "name": "Fazenda Recanto da Cachoeira Airport", + "latitude_deg": "-20.3397216796875", + "longitude_deg": "-47.47305679321289", + "elevation_ft": "3064", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cristais Paulista", + "scheduled_service": "no", + "gps_code": "SWKY" + }, + { + "id": "37946", + "ident": "SWKZ", + "type": "small_airport", + "name": "Fazenda Cerejal Airport", + "latitude_deg": "-11.717499732971191", + "longitude_deg": "-58.25944519042969", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SWKZ" + }, + { + "id": "37947", + "ident": "SWLA", + "type": "small_airport", + "name": "Fazenda Amália Airport", + "latitude_deg": "-11.884721755981445", + "longitude_deg": "-58.63166809082031", + "elevation_ft": "1030", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juína", + "scheduled_service": "no", + "gps_code": "SWLA" + }, + { + "id": "557", + "ident": "SWLB", + "type": "small_airport", + "name": "Lábrea Airport", + "latitude_deg": "-7.278969764709473", + "longitude_deg": "-64.76950073242188", + "elevation_ft": "190", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Lábrea", + "scheduled_service": "no", + "gps_code": "SWLB", + "iata_code": "LBR", + "local_code": "SWLB" + }, + { + "id": "558", + "ident": "SWLC", + "type": "small_airport", + "name": "General Leite de Castro Airport", + "latitude_deg": "-17.8347225189209", + "longitude_deg": "-50.956111907958984", + "elevation_ft": "2464", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Rio Verde", + "scheduled_service": "no", + "gps_code": "SWLC", + "iata_code": "RVD", + "local_code": "SWLC" + }, + { + "id": "44449", + "ident": "SWLD", + "type": "small_airport", + "name": "Porto Cajueiro Airport", + "latitude_deg": "-14.88405", + "longitude_deg": "-45.338569", + "elevation_ft": "2510", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Januária", + "scheduled_service": "no", + "gps_code": "SNCK", + "local_code": "MG0140", + "keywords": "SWLD" + }, + { + "id": "37948", + "ident": "SWLE", + "type": "closed", + "name": "Pontes e Lacerda Airport", + "latitude_deg": "-15.231111", + "longitude_deg": "-59.34111", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes E Lacerda", + "scheduled_service": "no", + "keywords": "SWLE" + }, + { + "id": "37949", + "ident": "SWLF", + "type": "small_airport", + "name": "Fazenda Dona Laura Airport", + "latitude_deg": "-15.620278358459473", + "longitude_deg": "-58.20888900756836", + "elevation_ft": "725", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São José Dos Quatro Marcos", + "scheduled_service": "no", + "gps_code": "SWLF" + }, + { + "id": "45598", + "ident": "SWLG", + "type": "closed", + "name": "Recanto Airport", + "latitude_deg": "-12.99667", + "longitude_deg": "-51.906681", + "elevation_ft": "1335", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Ribeirão Cascalheira", + "scheduled_service": "no" + }, + { + "id": "37950", + "ident": "SWLI", + "type": "small_airport", + "name": "Fazenda Liberdade Airport", + "latitude_deg": "-17.005154", + "longitude_deg": "-56.471658", + "elevation_ft": "361", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão de Melgaço", + "scheduled_service": "no", + "keywords": "SWLI" + }, + { + "id": "37951", + "ident": "SWLK", + "type": "small_airport", + "name": "Fazenda Conceição Airport", + "latitude_deg": "-11.00027847290039", + "longitude_deg": "-58.21527862548828", + "elevation_ft": "1164", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juara", + "scheduled_service": "no", + "gps_code": "SWLK" + }, + { + "id": "37952", + "ident": "SWLM", + "type": "small_airport", + "name": "Fazenda Excalibur Airport", + "latitude_deg": "-15.2944440842", + "longitude_deg": "-60.3663902283", + "elevation_ft": "971", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SWLM" + }, + { + "id": "37953", + "ident": "SWLN", + "type": "small_airport", + "name": "Fazenda Franciosi Airport", + "latitude_deg": "-13.417998", + "longitude_deg": "-58.471792", + "elevation_ft": "1690", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SWFF", + "local_code": "MT0340", + "keywords": "SWLN" + }, + { + "id": "44453", + "ident": "SWLO", + "type": "heliport", + "name": "Hospital São José Heliport", + "latitude_deg": "-26.488056182900003", + "longitude_deg": "-49.0838890076", + "elevation_ft": "197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Jaraguá Do Sul", + "scheduled_service": "no", + "gps_code": "SWLO" + }, + { + "id": "37954", + "ident": "SWLP", + "type": "small_airport", + "name": "Fazenda Rosa - Paralelo 10 Airport", + "latitude_deg": "-9.968610763549805", + "longitude_deg": "-61.22972106933594", + "elevation_ft": "535", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Aripuanã", + "scheduled_service": "no", + "gps_code": "SWLP" + }, + { + "id": "335468", + "ident": "SWLQ", + "type": "small_airport", + "name": "Fazenda Mata Velha Airport", + "latitude_deg": "-7.908888", + "longitude_deg": "-61.562748", + "elevation_ft": "384", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Manicoré", + "scheduled_service": "no", + "gps_code": "SWLQ", + "local_code": "AM0089" + }, + { + "id": "37955", + "ident": "SWLR", + "type": "small_airport", + "name": "Fazenda Miura Airport", + "latitude_deg": "-15.440555572509766", + "longitude_deg": "-59.657222747802734", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes E Lacerda", + "scheduled_service": "no", + "gps_code": "SWLR" + }, + { + "id": "355407", + "ident": "SWLS", + "type": "small_airport", + "name": "Fazenda São Luís Airport", + "latitude_deg": "-24.198889", + "longitude_deg": "-53.874167", + "elevation_ft": "1004", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Palotina", + "scheduled_service": "no", + "gps_code": "SWLS", + "local_code": "PR0157" + }, + { + "id": "37956", + "ident": "SWLT", + "type": "small_airport", + "name": "Fazenda Tatiana Airport", + "latitude_deg": "-10.433889389038086", + "longitude_deg": "-54.16722106933594", + "elevation_ft": "1197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Marcelândia", + "scheduled_service": "no", + "gps_code": "SWLT" + }, + { + "id": "343194", + "ident": "SWLU", + "type": "small_airport", + "name": "CAVOK Airstrip", + "latitude_deg": "-29.886634", + "longitude_deg": "-50.736516", + "elevation_ft": "82", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Glorinha", + "scheduled_service": "no", + "gps_code": "SWLU", + "local_code": "RS0125" + }, + { + "id": "559", + "ident": "SWLV", + "type": "small_airport", + "name": "Santo Antônio do Lerverger Airport", + "latitude_deg": "-15.853400230407715", + "longitude_deg": "-56.087398529052734", + "elevation_ft": "544", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santo Antônio Do Leverger", + "scheduled_service": "no", + "gps_code": "SWLV", + "local_code": "SWLV" + }, + { + "id": "45572", + "ident": "SWLW", + "type": "heliport", + "name": "Grupo Tático Aéreo Heliport", + "latitude_deg": "-2.496389", + "longitude_deg": "-44.279444", + "elevation_ft": "89", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MA", + "municipality": "São Luís", + "scheduled_service": "no", + "gps_code": "SWLW" + }, + { + "id": "324192", + "ident": "SWLY", + "type": "small_airport", + "name": "Chácara MCL Airport", + "latitude_deg": "-20.880883", + "longitude_deg": "-51.356143", + "elevation_ft": "1345", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Andradina", + "scheduled_service": "no", + "gps_code": "SWLY" + }, + { + "id": "37957", + "ident": "SWMA", + "type": "small_airport", + "name": "Aero Agrícola Fulanete Airport", + "latitude_deg": "-11.833610534667969", + "longitude_deg": "-46.266666412353516", + "elevation_ft": "2828", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Barreiras", + "scheduled_service": "no", + "gps_code": "SWMA" + }, + { + "id": "37958", + "ident": "SWMB", + "type": "small_airport", + "name": "Fazenda Marimbondo Airport", + "latitude_deg": "-17.977222442626953", + "longitude_deg": "-49.58833312988281", + "elevation_ft": "2165", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiatuba", + "scheduled_service": "no", + "gps_code": "SWMB" + }, + { + "id": "37959", + "ident": "SWMC", + "type": "small_airport", + "name": "Capão da Cruz Airport", + "latitude_deg": "-21.458332061767578", + "longitude_deg": "-47.887779235839844", + "elevation_ft": "1936", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Luís Antônio", + "scheduled_service": "no", + "gps_code": "SWMC" + }, + { + "id": "37960", + "ident": "SWMD", + "type": "heliport", + "name": "Francisca Mendes Heliport", + "latitude_deg": "-3.032591", + "longitude_deg": "-59.964081", + "elevation_ft": "371", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Manaus", + "scheduled_service": "no", + "gps_code": "SIAM", + "local_code": "AM0057", + "keywords": "SWMD" + }, + { + "id": "560", + "ident": "SWME", + "type": "small_airport", + "name": "Mineiros Airport", + "latitude_deg": "-17.55139923095703", + "longitude_deg": "-52.55670166015625", + "elevation_ft": "2707", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Mineiros", + "scheduled_service": "no", + "gps_code": "SWME", + "local_code": "SWME" + }, + { + "id": "37961", + "ident": "SWMG", + "type": "small_airport", + "name": "Fazenda Caraíbas Airport", + "latitude_deg": "-13.3855562210083", + "longitude_deg": "-46.775001525878906", + "elevation_ft": "1637", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Monte Alegre De Goiás", + "scheduled_service": "no", + "gps_code": "SWMG" + }, + { + "id": "37962", + "ident": "SWMH", + "type": "small_airport", + "name": "Fazenda Bom Pastor Airport", + "latitude_deg": "-15.542222023010254", + "longitude_deg": "-51.01777648925781", + "elevation_ft": "895", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Itapirapuã", + "scheduled_service": "no", + "gps_code": "SWMH" + }, + { + "id": "37963", + "ident": "SWMJ", + "type": "small_airport", + "name": "Pousada Xaraés Airport", + "latitude_deg": "-19.495832443237305", + "longitude_deg": "-56.959999084472656", + "elevation_ft": "318", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SWMJ" + }, + { + "id": "561", + "ident": "SWMK", + "type": "small_airport", + "name": "Maturacá Airport", + "latitude_deg": "0.6282690167427063", + "longitude_deg": "-66.11509704589844", + "elevation_ft": "354", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "São Gabriel Da Cachoeira", + "scheduled_service": "no", + "gps_code": "SWMK", + "local_code": "SWMK" + }, + { + "id": "37964", + "ident": "SWML", + "type": "small_airport", + "name": "Monte Alegre de Goiás Airport", + "latitude_deg": "-13.24972152709961", + "longitude_deg": "-46.87138748168945", + "elevation_ft": "1821", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Monte Alegre De Goiás", + "scheduled_service": "no", + "gps_code": "SWML" + }, + { + "id": "37965", + "ident": "SWMM", + "type": "small_airport", + "name": "Buritizal Agropastoril Ltda Airport", + "latitude_deg": "-9.300277709960938", + "longitude_deg": "-60.67499923706055", + "elevation_ft": "432", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Aripuanã", + "scheduled_service": "no", + "gps_code": "SWMM" + }, + { + "id": "37966", + "ident": "SWMN", + "type": "small_airport", + "name": "Fazenda Forquilha Airport", + "latitude_deg": "-15.214686", + "longitude_deg": "-50.836191", + "elevation_ft": "1076", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Matrinchã", + "scheduled_service": "no", + "gps_code": "SJSX", + "local_code": "GO0086", + "keywords": "SWMN" + }, + { + "id": "37967", + "ident": "SWMO", + "type": "small_airport", + "name": "Fazenda Maria José Airport", + "latitude_deg": "-17.452777862548828", + "longitude_deg": "-54.74222183227539", + "elevation_ft": "1716", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Itiquira", + "scheduled_service": "no", + "gps_code": "SWMO" + }, + { + "id": "37968", + "ident": "SWMQ", + "type": "small_airport", + "name": "Fazenda Muiraquitã Airport", + "latitude_deg": "-10.416943550109863", + "longitude_deg": "-60.55055618286133", + "elevation_ft": "367", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Aripuanã", + "scheduled_service": "no", + "gps_code": "SWMQ" + }, + { + "id": "37969", + "ident": "SWMR", + "type": "small_airport", + "name": "Morro Redondo Airport", + "latitude_deg": "-14.250555992126465", + "longitude_deg": "-48.08388900756836", + "elevation_ft": "2067", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Morro Redondo", + "scheduled_service": "no", + "gps_code": "SWMR" + }, + { + "id": "37970", + "ident": "SWMT", + "type": "small_airport", + "name": "Fazenda Centro da Mata Airport", + "latitude_deg": "-12.657777786254883", + "longitude_deg": "-54.82777786254883", + "elevation_ft": "1214", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Ubiratã", + "scheduled_service": "no", + "gps_code": "SWMT" + }, + { + "id": "37971", + "ident": "SWMU", + "type": "small_airport", + "name": "Surumu Airport", + "latitude_deg": "4.31639003754", + "longitude_deg": "-60.7005996704", + "elevation_ft": "1640", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Pacaraima", + "scheduled_service": "no", + "gps_code": "SWMU" + }, + { + "id": "37972", + "ident": "SWMV", + "type": "small_airport", + "name": "Paa-Piu Airport", + "latitude_deg": "2.7269399166107178", + "longitude_deg": "-62.950599670410156", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Mucajaí", + "scheduled_service": "no", + "gps_code": "SWMV" + }, + { + "id": "562", + "ident": "SWMW", + "type": "small_airport", + "name": "Maués Airport", + "latitude_deg": "-3.37217", + "longitude_deg": "-57.7248", + "elevation_ft": "69", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Maués", + "scheduled_service": "no", + "gps_code": "SWMW", + "iata_code": "MBZ", + "local_code": "SWMW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mau%C3%A9s_Airport" + }, + { + "id": "139", + "ident": "SWMX", + "type": "small_airport", + "name": "Morrinhos Airport", + "latitude_deg": "-17.761758", + "longitude_deg": "-49.121654", + "elevation_ft": "2634", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Morrinhos", + "scheduled_service": "no", + "gps_code": "SJ4Y", + "local_code": "GO0028", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Morrinhos", + "keywords": "SWMX, SB48" + }, + { + "id": "37973", + "ident": "SWMY", + "type": "small_airport", + "name": "Porto Fluvial Suiá Missu Airport", + "latitude_deg": "-11.566944122314453", + "longitude_deg": "-50.700557708740234", + "elevation_ft": "623", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra Do Garças", + "scheduled_service": "no", + "gps_code": "SWMY" + }, + { + "id": "37974", + "ident": "SWMZ", + "type": "small_airport", + "name": "Aeroporto Agroer Aviação", + "latitude_deg": "-16.442424", + "longitude_deg": "-54.701269", + "elevation_ft": "1047", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Rondonópolis", + "scheduled_service": "no", + "gps_code": "SWMZ", + "local_code": "MT0369", + "keywords": "Estância Aeronaldo" + }, + { + "id": "563", + "ident": "SWNA", + "type": "small_airport", + "name": "Novo Aripuanã Airport", + "latitude_deg": "-5.118030071258545", + "longitude_deg": "-60.364898681640625", + "elevation_ft": "118", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Novo Aripuanã", + "scheduled_service": "no", + "gps_code": "SWNA", + "iata_code": "NVP", + "local_code": "SWNA" + }, + { + "id": "37975", + "ident": "SWNB", + "type": "small_airport", + "name": "Nobres Airport", + "latitude_deg": "-14.707222", + "longitude_deg": "-56.338333", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nobres", + "scheduled_service": "no", + "keywords": "SWNB" + }, + { + "id": "37976", + "ident": "SWNC", + "type": "small_airport", + "name": "Fazenda Vale do Juruena Airport", + "latitude_deg": "-9.400047", + "longitude_deg": "-58.229372", + "elevation_ft": "673", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Bandeirantes", + "scheduled_service": "no", + "gps_code": "SIKS", + "local_code": "MT0649", + "keywords": "SWNC, Fazenda Procomp" + }, + { + "id": "37977", + "ident": "SWND", + "type": "heliport", + "name": "Tamboré S/A Heliport", + "latitude_deg": "-23.509721756", + "longitude_deg": "-46.825832366899995", + "elevation_ft": "2444", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Barueri", + "scheduled_service": "no", + "gps_code": "SWND" + }, + { + "id": "331216", + "ident": "SWNE", + "type": "small_airport", + "name": "Nelson Saldanha Airport", + "latitude_deg": "-17.884849", + "longitude_deg": "-39.367075", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "Nova Viçosa", + "scheduled_service": "no", + "gps_code": "SWNE", + "local_code": "BA0183" + }, + { + "id": "37978", + "ident": "SWNF", + "type": "small_airport", + "name": "Agropecuária Tratex Airport", + "latitude_deg": "-10.893154", + "longitude_deg": "-55.566101", + "elevation_ft": "1033", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Colider", + "scheduled_service": "no", + "keywords": "SWNF" + }, + { + "id": "37979", + "ident": "SWNG", + "type": "small_airport", + "name": "Fazenda Nossa Senhora das Graças Airport", + "latitude_deg": "-12.896987", + "longitude_deg": "-55.834751", + "elevation_ft": "1279", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sorriso", + "scheduled_service": "no", + "gps_code": "SSDG", + "local_code": "MT0283", + "keywords": "SWNG" + }, + { + "id": "564", + "ident": "SWNH", + "type": "small_airport", + "name": "Aruanã Airport", + "latitude_deg": "-14.932499885559082", + "longitude_deg": "-51.048099517822266", + "elevation_ft": "820", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Aruanã", + "scheduled_service": "no", + "gps_code": "SWNH", + "local_code": "SWNH" + }, + { + "id": "37980", + "ident": "SWNI", + "type": "small_airport", + "name": "Nova Vida Airport", + "latitude_deg": "-10.178313", + "longitude_deg": "-62.825747", + "elevation_ft": "410", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Cacaulândia", + "scheduled_service": "no", + "keywords": "SJVD, SWNI, Ariquemes" + }, + { + "id": "37981", + "ident": "SWNJ", + "type": "small_airport", + "name": "Fazenda Itaquerê Airport", + "latitude_deg": "-15.12833309173584", + "longitude_deg": "-53.491668701171875", + "elevation_ft": "1749", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Novo São Joaquim", + "scheduled_service": "no", + "gps_code": "SWNJ" + }, + { + "id": "565", + "ident": "SWNK", + "type": "small_airport", + "name": "Novo Campo Airport", + "latitude_deg": "-8.83456", + "longitude_deg": "-67.312401", + "elevation_ft": "394", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Boca do Acre", + "scheduled_service": "no", + "gps_code": "SWNK", + "iata_code": "BCR", + "local_code": "SWNK", + "keywords": "SBBA" + }, + { + "id": "37982", + "ident": "SWNL", + "type": "small_airport", + "name": "Fazenda Araçatuba Airport", + "latitude_deg": "-15.19083309173584", + "longitude_deg": "-57.70750045776367", + "elevation_ft": "493", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Lambari D`Oeste", + "scheduled_service": "no", + "gps_code": "SWNL" + }, + { + "id": "37983", + "ident": "SWNM", + "type": "small_airport", + "name": "Normândia Airport", + "latitude_deg": "3.879933", + "longitude_deg": "-59.623589", + "elevation_ft": "282", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Normândia", + "scheduled_service": "no", + "keywords": "SWNM" + }, + { + "id": "37984", + "ident": "SWNN", + "type": "small_airport", + "name": "Novo Intento Airport", + "latitude_deg": "2.7799999713897705", + "longitude_deg": "-60.616668701171875", + "elevation_ft": "282", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Cantá", + "scheduled_service": "no", + "gps_code": "SWNN", + "local_code": "SWNN" + }, + { + "id": "37985", + "ident": "SWNO", + "type": "small_airport", + "name": "Nova Olinda do Norte Airport", + "latitude_deg": "-3.888357", + "longitude_deg": "-59.07998", + "elevation_ft": "121", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Nova Olinda do Norte", + "scheduled_service": "no", + "gps_code": "SWNO" + }, + { + "id": "32403", + "ident": "SWNP", + "type": "closed", + "name": "Novo Paraiso Airport", + "latitude_deg": "1.2381900548934937", + "longitude_deg": "-60.48630142211914", + "elevation_ft": "213", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Novo Paraiso", + "scheduled_service": "no", + "gps_code": "SWNP" + }, + { + "id": "566", + "ident": "SWNQ", + "type": "small_airport", + "name": "Niquelândia Airport", + "latitude_deg": "-14.434900283813477", + "longitude_deg": "-48.49150085449219", + "elevation_ft": "2756", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Niquelândia", + "scheduled_service": "no", + "gps_code": "SWNQ", + "iata_code": "NQL", + "local_code": "SWNQ" + }, + { + "id": "37986", + "ident": "SWNR", + "type": "small_airport", + "name": "Nortelândia Airport", + "latitude_deg": "-14.483611106872559", + "longitude_deg": "-56.7672233581543", + "elevation_ft": "1460", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nortelândia", + "scheduled_service": "no", + "gps_code": "SWNR" + }, + { + "id": "567", + "ident": "SWNS", + "type": "small_airport", + "name": "Anápolis Airport", + "latitude_deg": "-16.3623008728", + "longitude_deg": "-48.9271011353", + "elevation_ft": "3648", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Anápolis", + "scheduled_service": "no", + "gps_code": "SWNS", + "iata_code": "APS", + "local_code": "SWNS", + "wikipedia_link": "http://pt.wikipedia.org/wiki/Aeroporto_de_An%C3%A1polis" + }, + { + "id": "37987", + "ident": "SWNT", + "type": "small_airport", + "name": "Fazenda Santo Antônio Airport", + "latitude_deg": "-18.96500015258789", + "longitude_deg": "-50.79861068725586", + "elevation_ft": "1493", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Caçu", + "scheduled_service": "no", + "gps_code": "SWNT" + }, + { + "id": "568", + "ident": "SWNV", + "type": "small_airport", + "name": "Aeródromo Nacional de Aviação", + "latitude_deg": "-16.62584", + "longitude_deg": "-49.348832", + "elevation_ft": "2707", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goiânia", + "scheduled_service": "no", + "gps_code": "SBNV", + "local_code": "GO0002", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aeródromo_Nacional_de_Aviação", + "keywords": "SWNV" + }, + { + "id": "37989", + "ident": "SWNW", + "type": "small_airport", + "name": "Fazenda Tuiuiu Airport", + "latitude_deg": "-13.799444198608398", + "longitude_deg": "-55.45500183105469", + "elevation_ft": "1525", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nobres", + "scheduled_service": "no", + "gps_code": "SWNW" + }, + { + "id": "37990", + "ident": "SWNX", + "type": "small_airport", + "name": "Fazenda Independência Airport", + "latitude_deg": "-14.863708", + "longitude_deg": "-53.495098", + "elevation_ft": "2067", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santo Antônio do Leste", + "scheduled_service": "no", + "gps_code": "SI83", + "local_code": "MT0834", + "keywords": "ZWNX" + }, + { + "id": "37991", + "ident": "SWNY", + "type": "heliport", + "name": "Fazenda Canaã Heliport", + "latitude_deg": "-21.53472137451172", + "longitude_deg": "-47.68583297729492", + "elevation_ft": "1982", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Luís Antônio", + "scheduled_service": "no", + "gps_code": "SWNY" + }, + { + "id": "37992", + "ident": "SWNZ", + "type": "heliport", + "name": "Number One Heliport", + "latitude_deg": "-15.789167404174805", + "longitude_deg": "-47.88750076293945", + "elevation_ft": "3753", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SWNZ" + }, + { + "id": "37993", + "ident": "SWOA", + "type": "small_airport", + "name": "Arnapar Airport", + "latitude_deg": "-16.539443969726562", + "longitude_deg": "-49.398887634277344", + "elevation_ft": "2625", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goianira", + "scheduled_service": "no", + "gps_code": "SWOA" + }, + { + "id": "569", + "ident": "SWOB", + "type": "small_airport", + "name": "Fonte Boa Airport", + "latitude_deg": "-2.5326099395800004", + "longitude_deg": "-66.0831985474", + "elevation_ft": "207", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Fonte Boa", + "scheduled_service": "no", + "gps_code": "SWOB", + "iata_code": "FBA", + "local_code": "SWOB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fonte_Boa_Airport" + }, + { + "id": "37994", + "ident": "SWOC", + "type": "small_airport", + "name": "Fazenda São Bento do Bocajá Airport", + "latitude_deg": "-22.025278091430664", + "longitude_deg": "-57.364723205566406", + "elevation_ft": "443", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Caracol", + "scheduled_service": "no", + "gps_code": "SWOC" + }, + { + "id": "37995", + "ident": "SWOE", + "type": "small_airport", + "name": "Fazenda Duas Lagoas Airport", + "latitude_deg": "-16.165826", + "longitude_deg": "-58.185139", + "elevation_ft": "688", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SSDU", + "local_code": "MT0286", + "keywords": "SWOE" + }, + { + "id": "37996", + "ident": "SWOF", + "type": "small_airport", + "name": "Ouro Fino Airport", + "latitude_deg": "2.934148", + "longitude_deg": "-60.724504", + "elevation_ft": "282", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Boa Vista", + "scheduled_service": "no", + "keywords": "SWOF" + }, + { + "id": "570", + "ident": "SWOG", + "type": "small_airport", + "name": "Fazenda Itaipu Airport", + "latitude_deg": "-13.7525", + "longitude_deg": "-56.96111", + "elevation_ft": "1470", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São José Do Rio Claro", + "scheduled_service": "no", + "gps_code": "SWOG", + "local_code": "SWOG" + }, + { + "id": "45611", + "ident": "SWOH", + "type": "heliport", + "name": "Hospital Municipal Dr. Fernando Pereira Da Silva Heliport", + "latitude_deg": "-22.356111", + "longitude_deg": "-41.805833", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Macaé", + "scheduled_service": "no", + "gps_code": "SWOH" + }, + { + "id": "37997", + "ident": "SWOI", + "type": "small_airport", + "name": "Fazenda Juara Airport", + "latitude_deg": "-11.817694", + "longitude_deg": "-57.566954", + "elevation_ft": "1200", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juara", + "scheduled_service": "no", + "keywords": "SWOI" + }, + { + "id": "37998", + "ident": "SWOJ", + "type": "small_airport", + "name": "Fazenda Nova Alvorada Airport", + "latitude_deg": "-11.573332786560059", + "longitude_deg": "-58.26972198486328", + "elevation_ft": "1092", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SWOJ" + }, + { + "id": "37999", + "ident": "SWOK", + "type": "small_airport", + "name": "Fazenda Pontal Airport", + "latitude_deg": "-17.30555534362793", + "longitude_deg": "-53.93555450439453", + "elevation_ft": "2164", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Itiquira", + "scheduled_service": "no", + "gps_code": "SWOK" + }, + { + "id": "38000", + "ident": "SWOL", + "type": "small_airport", + "name": "Fazenda Roncador Airport", + "latitude_deg": "-15.096111297607422", + "longitude_deg": "-52.400001525878906", + "elevation_ft": "1351", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra Do Garças", + "scheduled_service": "no", + "gps_code": "SWOL" + }, + { + "id": "38001", + "ident": "SWOM", + "type": "small_airport", + "name": "Fazenda Salto Bello II Airport", + "latitude_deg": "-14.961111", + "longitude_deg": "-53.488056", + "elevation_ft": "1889", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Novo São Joaquim", + "scheduled_service": "no", + "keywords": "SWOM" + }, + { + "id": "38002", + "ident": "SWON", + "type": "small_airport", + "name": "Clube de Aviação Céu Azul Airport", + "latitude_deg": "-26.561531", + "longitude_deg": "-48.696048", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Araquari", + "scheduled_service": "no", + "gps_code": "SWON", + "local_code": "SWON" + }, + { + "id": "38003", + "ident": "SWOO", + "type": "small_airport", + "name": "Fazenda Três Marias do Água Limpa Airport", + "latitude_deg": "-15.07364", + "longitude_deg": "-51.3943", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Britânia", + "scheduled_service": "no", + "local_code": "GO0139", + "keywords": "SWOO" + }, + { + "id": "38004", + "ident": "SWOP", + "type": "small_airport", + "name": "Fazenda Embú Airport", + "latitude_deg": "-9.785799", + "longitude_deg": "-57.621937", + "elevation_ft": "866", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Monte Verde", + "scheduled_service": "no", + "gps_code": "SI2E", + "local_code": "MT0821", + "keywords": "SWOP, Fazenda Agropecuária Embu" + }, + { + "id": "38005", + "ident": "SWOQ", + "type": "closed", + "name": "Fazenda Surucucu Airport", + "latitude_deg": "-16.743335", + "longitude_deg": "-47.991669", + "elevation_ft": "3148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Luziânia", + "scheduled_service": "no", + "keywords": "SWOQ" + }, + { + "id": "38006", + "ident": "SWOR", + "type": "small_airport", + "name": "Fazenda Colorado Airport", + "latitude_deg": "-15.450833320617676", + "longitude_deg": "-51.223331451416016", + "elevation_ft": "896", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Britânia", + "scheduled_service": "no", + "gps_code": "SWOR" + }, + { + "id": "38007", + "ident": "SWOS", + "type": "small_airport", + "name": "Fazenda Tapajós Airport", + "latitude_deg": "-15.171944", + "longitude_deg": "-48.953056", + "elevation_ft": "2289", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Goianésia", + "scheduled_service": "no", + "keywords": "SWOS" + }, + { + "id": "38008", + "ident": "SWOT", + "type": "small_airport", + "name": "Fazenda Planorte Airport", + "latitude_deg": "-13.943333", + "longitude_deg": "-58.895278", + "elevation_ft": "2106", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SWOT" + }, + { + "id": "38009", + "ident": "SWOU", + "type": "heliport", + "name": "Rede Globo 2 Heliport", + "latitude_deg": "-23.614999771118164", + "longitude_deg": "-46.698333740234375", + "elevation_ft": "2576", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SWOU" + }, + { + "id": "38010", + "ident": "SWOV", + "type": "small_airport", + "name": "Retiro Arrombadinho Airport", + "latitude_deg": "-17.50749969482422", + "longitude_deg": "-55.40805435180664", + "elevation_ft": "423", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Itiquira", + "scheduled_service": "no", + "gps_code": "SWOV" + }, + { + "id": "38011", + "ident": "SWOW", + "type": "small_airport", + "name": "Moura Airport", + "latitude_deg": "-1.463542", + "longitude_deg": "-61.633088", + "elevation_ft": "190", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Moura", + "scheduled_service": "no", + "gps_code": "SWOW", + "local_code": "AM9003" + }, + { + "id": "38012", + "ident": "SWOX", + "type": "small_airport", + "name": "Estância Barbosa Airport", + "latitude_deg": "-15.765556", + "longitude_deg": "-56.495556", + "elevation_ft": "623", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nossa Senhora do Livramento", + "scheduled_service": "no", + "keywords": "SWOX" + }, + { + "id": "38013", + "ident": "SWOY", + "type": "small_airport", + "name": "Fazenda Duas Barras Airport", + "latitude_deg": "-16.025278091430664", + "longitude_deg": "-52.81222152709961", + "elevation_ft": "1239", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontal Do Araguaia", + "scheduled_service": "no", + "gps_code": "SWOY" + }, + { + "id": "38014", + "ident": "SWOZ", + "type": "small_airport", + "name": "Fazenda Santo Antônio Airport", + "latitude_deg": "-15.310556411743164", + "longitude_deg": "-54.899166107177734", + "elevation_ft": "2164", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Verde", + "scheduled_service": "no", + "gps_code": "SWOZ" + }, + { + "id": "38015", + "ident": "SWPA", + "type": "small_airport", + "name": "Pedro Afonso Airport", + "latitude_deg": "-8.997618", + "longitude_deg": "-48.155375", + "elevation_ft": "630", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Pedro Afonso", + "scheduled_service": "no", + "gps_code": "SWPA" + }, + { + "id": "38016", + "ident": "SWPB", + "type": "small_airport", + "name": "Forte Príncipe da Beira Airport", + "latitude_deg": "-12.420665", + "longitude_deg": "-64.418603", + "elevation_ft": "591", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Costa Marques", + "scheduled_service": "no", + "gps_code": "SWPB", + "local_code": "RO9001" + }, + { + "id": "38017", + "ident": "SWPC", + "type": "small_airport", + "name": "Parí Cachoeira Airport", + "latitude_deg": "0.2630560100078583", + "longitude_deg": "-69.7955551147461", + "elevation_ft": "377", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "São Gabriel Da Cachoeira", + "scheduled_service": "no", + "gps_code": "SWPC" + }, + { + "id": "38018", + "ident": "SWPD", + "type": "small_airport", + "name": "Pouso da Águia Airport", + "latitude_deg": "2.7836110591888428", + "longitude_deg": "-60.58777618408203", + "elevation_ft": "282", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Cantá", + "scheduled_service": "no", + "gps_code": "SWPD" + }, + { + "id": "38019", + "ident": "SWPE", + "type": "small_airport", + "name": "Fazenda Lagoa da Mata Airport", + "latitude_deg": "-10.136388778686523", + "longitude_deg": "-55.595001220703125", + "elevation_ft": "866", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Carlinda", + "scheduled_service": "no", + "gps_code": "SWPE" + }, + { + "id": "38020", + "ident": "SWPG", + "type": "closed", + "name": "Porto dos Gaúchos Airport", + "latitude_deg": "-11.5404", + "longitude_deg": "-57.3782", + "elevation_ft": "1312", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto dos Gaúchos", + "scheduled_service": "no", + "gps_code": "SWPG", + "iata_code": "PBV", + "local_code": "MT0010", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Porto_dos_Ga%C3%BAchos" + }, + { + "id": "38021", + "ident": "SWPH", + "type": "small_airport", + "name": "Fazenda Paulo Abreu Airport", + "latitude_deg": "-15.22611141204834", + "longitude_deg": "-52.130001068115234", + "elevation_ft": "978", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra Do Garças", + "scheduled_service": "no", + "gps_code": "SWPH" + }, + { + "id": "571", + "ident": "SWPI", + "type": "small_airport", + "name": "Parintins Airport", + "latitude_deg": "-2.6730198860168457", + "longitude_deg": "-56.777198791503906", + "elevation_ft": "87", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Parintins", + "scheduled_service": "no", + "gps_code": "SWPI", + "iata_code": "PIN", + "local_code": "SWPI" + }, + { + "id": "38022", + "ident": "SWPJ", + "type": "small_airport", + "name": "Fazenda São Caetano Airport", + "latitude_deg": "-16.0341663361", + "longitude_deg": "-53.0344429016", + "elevation_ft": "1587", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontal Do Araguaia", + "scheduled_service": "no", + "gps_code": "SWPJ", + "local_code": "PMW" + }, + { + "id": "38023", + "ident": "SWPK", + "type": "small_airport", + "name": "Poconé Airport", + "latitude_deg": "-16.272777557373047", + "longitude_deg": "-56.65083312988281", + "elevation_ft": "591", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Poconé", + "scheduled_service": "no", + "gps_code": "SWPK" + }, + { + "id": "38024", + "ident": "SWPL", + "type": "small_airport", + "name": "Posto Leonardo Vilas Boas Airport", + "latitude_deg": "-12.198332786560059", + "longitude_deg": "-53.38166809082031", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Chapada Dos Guimarães", + "scheduled_service": "no", + "gps_code": "SWPL" + }, + { + "id": "572", + "ident": "SWPM", + "type": "small_airport", + "name": "Pimenta Bueno Airport", + "latitude_deg": "-11.6416", + "longitude_deg": "-61.1791", + "elevation_ft": "682", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Pimenta Bueno", + "scheduled_service": "no", + "gps_code": "SWPM", + "iata_code": "PBQ", + "local_code": "RO0009", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Pimenta_Bueno", + "keywords": "SNNB" + }, + { + "id": "38025", + "ident": "SWPN", + "type": "small_airport", + "name": "Paranã Airport", + "latitude_deg": "-12.627595", + "longitude_deg": "-47.847759", + "elevation_ft": "886", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Paranã", + "scheduled_service": "no", + "keywords": "SWPN" + }, + { + "id": "38026", + "ident": "SWPO", + "type": "small_airport", + "name": "Fazenda Porta do Amazônia Airport", + "latitude_deg": "-10.265277862548828", + "longitude_deg": "-51.241390228271484", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santa Terezinha", + "scheduled_service": "no", + "gps_code": "SWPO" + }, + { + "id": "38027", + "ident": "SWPP", + "type": "small_airport", + "name": "Fazenda Pica-Pau Airport", + "latitude_deg": "-14.753055572509766", + "longitude_deg": "-50.665000915527344", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Mozarlândia", + "scheduled_service": "no", + "gps_code": "SWPP" + }, + { + "id": "38028", + "ident": "SWPQ", + "type": "small_airport", + "name": "Fazenda Piraguassu Airport", + "latitude_deg": "-10.861110687256", + "longitude_deg": "-51.685001373291", + "elevation_ft": "705", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Alegre Do Norte", + "scheduled_service": "no", + "gps_code": "SWPQ", + "iata_code": "PBX" + }, + { + "id": "573", + "ident": "SWPR", + "type": "small_airport", + "name": "Pires do Rio Airport", + "latitude_deg": "-17.31909942626953", + "longitude_deg": "-48.334800720214844", + "elevation_ft": "2428", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Pires Do Rio", + "scheduled_service": "no", + "gps_code": "SWPR", + "local_code": "SWPR" + }, + { + "id": "38029", + "ident": "SWPS", + "type": "small_airport", + "name": "Porto São Sebastião Airport", + "latitude_deg": "-12.966943740844727", + "longitude_deg": "-56.18388748168945", + "elevation_ft": "1106", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "gps_code": "SWPS" + }, + { + "id": "38030", + "ident": "SWPT", + "type": "small_airport", + "name": "Fazenda Piratinga Airport", + "latitude_deg": "-13.617221832299998", + "longitude_deg": "-55.013332366899995", + "elevation_ft": "1706", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sinop", + "scheduled_service": "no", + "gps_code": "SWPT" + }, + { + "id": "38031", + "ident": "SWPV", + "type": "small_airport", + "name": "Planaltina Airport", + "latitude_deg": "-15.678889", + "longitude_deg": "-47.544167", + "elevation_ft": "3806", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "local_code": "DF0002", + "keywords": "SWPV" + }, + { + "id": "38032", + "ident": "SWPW", + "type": "small_airport", + "name": "Pouso da Garça Airport", + "latitude_deg": "-16.967222213745117", + "longitude_deg": "-56.41722106933594", + "elevation_ft": "377", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão De Melgaço", + "scheduled_service": "no", + "gps_code": "SWPW" + }, + { + "id": "346098", + "ident": "SWPX", + "type": "small_airport", + "name": "Belterra Airport", + "latitude_deg": "-2.672198", + "longitude_deg": "-54.95151", + "elevation_ft": "574", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Belterra", + "scheduled_service": "no", + "gps_code": "SWPX", + "local_code": "PA0168" + }, + { + "id": "38033", + "ident": "SWPY", + "type": "small_airport", + "name": "Primavera do Leste Airport", + "latitude_deg": "-15.565555572509766", + "longitude_deg": "-54.33777618408203", + "elevation_ft": "2149", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Primavera Do Leste", + "scheduled_service": "no", + "gps_code": "SWPY" + }, + { + "id": "574", + "ident": "SWPZ", + "type": "small_airport", + "name": "Oriçanga de Abreu Airport", + "latitude_deg": "-14.1181001663208", + "longitude_deg": "-46.345401763916016", + "elevation_ft": "2713", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Posse", + "scheduled_service": "no", + "gps_code": "SWPZ", + "local_code": "SWPZ" + }, + { + "id": "44445", + "ident": "SWQB", + "type": "heliport", + "name": "Hahn Heliport", + "latitude_deg": "-22.9772224426", + "longitude_deg": "-46.3916664124", + "elevation_ft": "2838", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Piracaia", + "scheduled_service": "no", + "gps_code": "SWQB" + }, + { + "id": "323923", + "ident": "SWQC", + "type": "small_airport", + "name": "Fazenda São Francisco Airport", + "latitude_deg": "-17.500746", + "longitude_deg": "-51.597187", + "elevation_ft": "3123", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Rio Verde", + "scheduled_service": "no", + "gps_code": "SWQC", + "local_code": "SWQC" + }, + { + "id": "43318", + "ident": "SWQD", + "type": "heliport", + "name": "Hospital Estadual Adão Pereira Nunes Heliport", + "latitude_deg": "-22.67305564880371", + "longitude_deg": "-43.28388977050781", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Duque De Caxias", + "scheduled_service": "no", + "gps_code": "SWQD", + "local_code": "SWQD" + }, + { + "id": "38034", + "ident": "SWQE", + "type": "small_airport", + "name": "Querari Airport", + "latitude_deg": "1.08777", + "longitude_deg": "-69.838048", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "São Gabriel Da Cachoeira", + "scheduled_service": "no", + "gps_code": "SWQE" + }, + { + "id": "323921", + "ident": "SWQF", + "type": "heliport", + "name": "Miguel Dias III Heliport", + "latitude_deg": "-4.238269", + "longitude_deg": "-38.981362", + "elevation_ft": "3051", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Guaramiranga", + "scheduled_service": "no", + "gps_code": "SWQF", + "local_code": "SWQF" + }, + { + "id": "43315", + "ident": "SWQG", + "type": "small_airport", + "name": "Fazenda Sossego Airport", + "latitude_deg": "-21.45722198486328", + "longitude_deg": "-55.421112060546875", + "elevation_ft": "1706", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Maracaju", + "scheduled_service": "no", + "gps_code": "SWQG", + "local_code": "SWQG" + }, + { + "id": "38035", + "ident": "SWQH", + "type": "small_airport", + "name": "Agropecuária Nova Santana Airport", + "latitude_deg": "-10.147221565246582", + "longitude_deg": "-60.538612365722656", + "elevation_ft": "797", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Aripuanã", + "scheduled_service": "no", + "gps_code": "SWQH" + }, + { + "id": "38036", + "ident": "SWQI", + "type": "small_airport", + "name": "Caracaraí Airport", + "latitude_deg": "1.84389", + "longitude_deg": "-61.121827", + "elevation_ft": "184", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Caracaraí", + "scheduled_service": "no", + "gps_code": "SBQI", + "local_code": "RR9001", + "keywords": "SWQI" + }, + { + "id": "38037", + "ident": "SWQJ", + "type": "small_airport", + "name": "Campos de Júlio Airport", + "latitude_deg": "-13.414722442626953", + "longitude_deg": "-59.26750183105469", + "elevation_ft": "2132", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campos De Júlio", + "scheduled_service": "no", + "gps_code": "SWQJ" + }, + { + "id": "43319", + "ident": "SWQK", + "type": "small_airport", + "name": "Pedra Airport", + "latitude_deg": "-6.766666889190674", + "longitude_deg": "-36.481109619140625", + "elevation_ft": "1781", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PB", + "municipality": "Pedra Lavrada", + "scheduled_service": "no", + "gps_code": "SWQK", + "local_code": "SWQK" + }, + { + "id": "42242", + "ident": "SWQL", + "type": "small_airport", + "name": "Fazenda Três Companheiros Airport", + "latitude_deg": "-16.6825008392334", + "longitude_deg": "-52.252498626708984", + "elevation_ft": "2070", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Doverlândia", + "scheduled_service": "no", + "gps_code": "SWQL" + }, + { + "id": "38038", + "ident": "SWQM", + "type": "small_airport", + "name": "Fazenda Boa Vista Airport", + "latitude_deg": "-15.089444160461426", + "longitude_deg": "-56.37333297729492", + "elevation_ft": "688", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Acorizal", + "scheduled_service": "no", + "gps_code": "SWQM" + }, + { + "id": "38039", + "ident": "SWQN", + "type": "heliport", + "name": "Spa-Unicordis Heliport", + "latitude_deg": "-15.76361083984375", + "longitude_deg": "-48.25749969482422", + "elevation_ft": "3691", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Santo Antônio Do Descoberto", + "scheduled_service": "no", + "gps_code": "SWQN" + }, + { + "id": "343127", + "ident": "SWQO", + "type": "small_airport", + "name": "Fazenda Renascença Airstrip", + "latitude_deg": "-20.387728", + "longitude_deg": "-48.915386", + "elevation_ft": "1558", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Frutal", + "scheduled_service": "no", + "gps_code": "SWQO", + "local_code": "MG0422" + }, + { + "id": "44565", + "ident": "SWQP", + "type": "small_airport", + "name": "Rio Vermelho Açucar e Álcool Airport", + "latitude_deg": "-21.315277099609375", + "longitude_deg": "-51.369998931884766", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Junqueirópolis", + "scheduled_service": "no", + "gps_code": "SWQP" + }, + { + "id": "42736", + "ident": "SWQQ", + "type": "small_airport", + "name": "Fazenda Fundão Alegre Airport", + "latitude_deg": "-18.628055572509766", + "longitude_deg": "-54.10388946533203", + "elevation_ft": "1391", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Camapuã", + "scheduled_service": "no", + "gps_code": "SWQQ" + }, + { + "id": "44440", + "ident": "SWQR", + "type": "small_airport", + "name": "Estância Norteagro Airport", + "latitude_deg": "2.675832986831665", + "longitude_deg": "-60.77861022949219", + "elevation_ft": "279", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Boa Vista", + "scheduled_service": "no", + "gps_code": "SWQR" + }, + { + "id": "323920", + "ident": "SWQS", + "type": "small_airport", + "name": "Fazenda Santa Rosa", + "latitude_deg": "-20.941333", + "longitude_deg": "-53.435333", + "elevation_ft": "1424", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SWQS", + "local_code": "SWQS" + }, + { + "id": "38040", + "ident": "SWQT", + "type": "small_airport", + "name": "Fazenda São Nicolau Airport", + "latitude_deg": "-9.8644437789917", + "longitude_deg": "-58.229167938232", + "elevation_ft": "738", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cotriguaçu", + "scheduled_service": "no", + "gps_code": "SWQT" + }, + { + "id": "38041", + "ident": "SWQU", + "type": "small_airport", + "name": "Fazenda Guaporé Airport", + "latitude_deg": "-14.587499618499999", + "longitude_deg": "-60.126388549800005", + "elevation_ft": "728", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SWQU" + }, + { + "id": "38042", + "ident": "SWQV", + "type": "small_airport", + "name": "Fazenda Maristela Airport", + "latitude_deg": "-16.116666793823242", + "longitude_deg": "-58.96916580200195", + "elevation_ft": "833", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Esperidião", + "scheduled_service": "no", + "gps_code": "SWQV" + }, + { + "id": "38043", + "ident": "SWQW", + "type": "small_airport", + "name": "Fazenda Bacaeri Airport", + "latitude_deg": "-10.052778244018555", + "longitude_deg": "-56.825557708740234", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alta Floresta", + "scheduled_service": "no", + "gps_code": "SWQW" + }, + { + "id": "38044", + "ident": "SWQX", + "type": "small_airport", + "name": "Fazenda Barro Preto Airport", + "latitude_deg": "-13.335277557399998", + "longitude_deg": "-46.90111111", + "elevation_ft": "1578", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Monte Alegre De Goiás", + "scheduled_service": "no", + "gps_code": "SWQX" + }, + { + "id": "323919", + "ident": "SWQY", + "type": "small_airport", + "name": "Fazenda Peturú Airport", + "latitude_deg": "-2.684444", + "longitude_deg": "-52.3675", + "elevation_ft": "384", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Porto de Moz", + "scheduled_service": "no", + "gps_code": "SWQY", + "local_code": "PA0149" + }, + { + "id": "38045", + "ident": "SWQZ", + "type": "small_airport", + "name": "Fazenda Quatro Irmãos Airport", + "latitude_deg": "-20.878332138061523", + "longitude_deg": "-53.5533332824707", + "elevation_ft": "1509", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas Do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SWQZ" + }, + { + "id": "308106", + "ident": "SWR", + "type": "small_airport", + "name": "Silur Airport", + "latitude_deg": "-4.5298888888899995", + "longitude_deg": "153.054444444", + "elevation_ft": "217", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NIK", + "municipality": "Silur Mission", + "scheduled_service": "no", + "gps_code": "AYZI", + "iata_code": "SWR", + "local_code": "SLR" + }, + { + "id": "38046", + "ident": "SWRA", + "type": "small_airport", + "name": "Arraias Airport", + "latitude_deg": "-13.025154", + "longitude_deg": "-46.884107", + "elevation_ft": "1923", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Arraias", + "scheduled_service": "no", + "iata_code": "AAI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arraias_Airport", + "keywords": "SWRA" + }, + { + "id": "38047", + "ident": "SWRB", + "type": "small_airport", + "name": "Fazenda Rio dos Bugres Airport", + "latitude_deg": "-14.816944122314453", + "longitude_deg": "-56.950557708740234", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra Do Bugres", + "scheduled_service": "no", + "gps_code": "SWRB" + }, + { + "id": "38048", + "ident": "SWRC", + "type": "small_airport", + "name": "Fazenda Sevilha Airport", + "latitude_deg": "-12.626667022705078", + "longitude_deg": "-51.934165954589844", + "elevation_ft": "951", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Ribeirão Cascalheira", + "scheduled_service": "no", + "gps_code": "SWRC" + }, + { + "id": "575", + "ident": "SWRD", + "type": "medium_airport", + "name": "Maestro Marinho Franco Airport", + "latitude_deg": "-16.586", + "longitude_deg": "-54.7248", + "elevation_ft": "1467", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Rondonópolis", + "scheduled_service": "yes", + "gps_code": "SBRD", + "iata_code": "ROO", + "local_code": "MT0004", + "home_link": "http://www.rondonopolis.mt.gov.br/orgaos-municipais/aeroporto-municipal-maestro-marinho-franco/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rondon%C3%B3polis_Airport", + "keywords": "SWRD, Rondonópolis Airport" + }, + { + "id": "38049", + "ident": "SWRF", + "type": "small_airport", + "name": "Fazenda Toloza Airport", + "latitude_deg": "-13.18464", + "longitude_deg": "-57.997274", + "elevation_ft": "1644", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SIAT", + "local_code": "MT0626", + "keywords": "SWRF" + }, + { + "id": "38050", + "ident": "SWRG", + "type": "small_airport", + "name": "Fazenda Rancho Maria e Tereza Airport", + "latitude_deg": "-10.825833320617676", + "longitude_deg": "-65.2286148071289", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Guajará-Mirim", + "scheduled_service": "no", + "gps_code": "SWRG" + }, + { + "id": "327791", + "ident": "SWRH", + "type": "small_airport", + "name": "Fazenda Aurora Airport", + "latitude_deg": "-12.710022", + "longitude_deg": "-46.156952", + "elevation_ft": "2904", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SWRH" + }, + { + "id": "576", + "ident": "SWRI", + "type": "small_airport", + "name": "Fazenda Roncador I Airport", + "latitude_deg": "-12.155400276184082", + "longitude_deg": "-52.27899932861328", + "elevation_ft": "993", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Querência", + "scheduled_service": "no", + "gps_code": "SWRI", + "local_code": "SWRI" + }, + { + "id": "38051", + "ident": "SWRJ", + "type": "small_airport", + "name": "Fazenda Panflora Airport", + "latitude_deg": "-15.084167", + "longitude_deg": "-56.552222", + "elevation_ft": "757", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Rosário Oeste", + "scheduled_service": "no", + "gps_code": "SJOP", + "local_code": "MT0201", + "keywords": "SWRJ" + }, + { + "id": "28106", + "ident": "SWRK", + "type": "heliport", + "name": "Pedreira Pombal Fazenda Recanto Heliport", + "latitude_deg": "-22.486884", + "longitude_deg": "-44.257678", + "elevation_ft": "1492", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Barra Mansa", + "scheduled_service": "no", + "gps_code": "SWRK", + "local_code": "SWRK" + }, + { + "id": "38052", + "ident": "SWRL", + "type": "small_airport", + "name": "Fazenda Pouso Redondo Airport", + "latitude_deg": "-12.977222442626953", + "longitude_deg": "-61.04916763305664", + "elevation_ft": "1086", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Corumbiara", + "scheduled_service": "no", + "gps_code": "SWRL" + }, + { + "id": "38053", + "ident": "SWRM", + "type": "small_airport", + "name": "Santo Antônio do Descoberto Airport", + "latitude_deg": "-15.930556297302246", + "longitude_deg": "-48.33361053466797", + "elevation_ft": "3674", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Santo Antônio Do Descoberto", + "scheduled_service": "no", + "gps_code": "SWRM" + }, + { + "id": "38054", + "ident": "SWRN", + "type": "heliport", + "name": "Rio Negro Naval Station Heliport", + "latitude_deg": "-3.144233", + "longitude_deg": "-59.948214", + "elevation_ft": "131", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Manaus", + "scheduled_service": "no", + "gps_code": "SWRN", + "local_code": "AM9002" + }, + { + "id": "38055", + "ident": "SWRO", + "type": "small_airport", + "name": "Aeroclube de Rondônia Airport", + "latitude_deg": "-8.793611", + "longitude_deg": "-63.858055", + "elevation_ft": "312", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Porto Velho", + "scheduled_service": "no", + "gps_code": "SWRO" + }, + { + "id": "30627", + "ident": "SWRP", + "type": "small_airport", + "name": "Aripuanã Airport", + "latitude_deg": "-10.188278", + "longitude_deg": "-59.457273", + "elevation_ft": "623", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Aripuanã", + "scheduled_service": "no", + "gps_code": "SSOU", + "iata_code": "AIR", + "local_code": "SSOU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aripuan%C3%A3_Airport", + "keywords": "SWRP" + }, + { + "id": "323918", + "ident": "SWRQ", + "type": "small_airport", + "name": "Fazenda Vittória Airport", + "latitude_deg": "-15.558611", + "longitude_deg": "-58.586944", + "elevation_ft": "1033", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Figueirópolis d'Oeste", + "scheduled_service": "no", + "gps_code": "SWRQ", + "local_code": "SWRQ" + }, + { + "id": "38056", + "ident": "SWRR", + "type": "small_airport", + "name": "Fazenda Serra Azul Airport", + "latitude_deg": "-14.66749", + "longitude_deg": "-54.567477", + "elevation_ft": "1667", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Planalto Da Serra", + "scheduled_service": "no", + "gps_code": "SIZA", + "local_code": "MT0154", + "keywords": "SWRR" + }, + { + "id": "38057", + "ident": "SWRS", + "type": "small_airport", + "name": "Fazenda Santa Mônica Airport", + "latitude_deg": "-16.933332443237305", + "longitude_deg": "-54.906944274902344", + "elevation_ft": "1047", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Rondonópolis", + "scheduled_service": "no", + "gps_code": "SWRS" + }, + { + "id": "38058", + "ident": "SWRT", + "type": "small_airport", + "name": "Fazenda Santa Rita Airport", + "latitude_deg": "-17.3477783203125", + "longitude_deg": "-53.19305419921875", + "elevation_ft": "2346", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Santa Rita Do Araguaia", + "scheduled_service": "no", + "gps_code": "SWRT" + }, + { + "id": "30481", + "ident": "SWRU", + "type": "small_airport", + "name": "Umberto Bosaipo Regional Airport", + "latitude_deg": "-15.5564", + "longitude_deg": "-53.075298", + "elevation_ft": "1460", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tesouro", + "scheduled_service": "no", + "wikipedia_link": "http://pt.wikipedia.org/wiki/Aeroporto_de_Tesouro", + "keywords": "SWRU, Meruri Airport" + }, + { + "id": "38059", + "ident": "SWRV", + "type": "small_airport", + "name": "Fazenda Vale do Rio Verde Airport", + "latitude_deg": "-12.166944", + "longitude_deg": "-56.53389", + "elevation_ft": "1378", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "keywords": "SWRV" + }, + { + "id": "38060", + "ident": "SWRW", + "type": "small_airport", + "name": "Fazenda Santa Alice Airport", + "latitude_deg": "-15.587499618530273", + "longitude_deg": "-58.0444450378418", + "elevation_ft": "1115", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Mirassol D`Oeste", + "scheduled_service": "no", + "gps_code": "SWRW" + }, + { + "id": "38061", + "ident": "SWRX", + "type": "small_airport", + "name": "Fazenda Santa Cruz do Pessoê Airport", + "latitude_deg": "-15.161573", + "longitude_deg": "-60.440383", + "elevation_ft": "764", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "keywords": "SWRX" + }, + { + "id": "38062", + "ident": "SWRY", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-15.737500190734863", + "longitude_deg": "-57.47055435180664", + "elevation_ft": "1853", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Estrela", + "scheduled_service": "no", + "gps_code": "SWRY" + }, + { + "id": "577", + "ident": "SWRZ", + "type": "small_airport", + "name": "Fazenda Arrossensal Airport", + "latitude_deg": "-14.353099822998047", + "longitude_deg": "-56.71379852294922", + "elevation_ft": "1306", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nortelândia", + "scheduled_service": "no", + "gps_code": "SWRZ", + "local_code": "SWRZ" + }, + { + "id": "38063", + "ident": "SWSA", + "type": "small_airport", + "name": "Fazenda São João Airport", + "latitude_deg": "-12.289167404174805", + "longitude_deg": "-56.53388977050781", + "elevation_ft": "1476", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "gps_code": "SWSA" + }, + { + "id": "38064", + "ident": "SWSB", + "type": "small_airport", + "name": "Fazenda Sabiá Airport", + "latitude_deg": "-15.233332633972168", + "longitude_deg": "-51.97722244262695", + "elevation_ft": "951", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Araguaiana", + "scheduled_service": "no", + "gps_code": "SWSB" + }, + { + "id": "38065", + "ident": "SWSC", + "type": "small_airport", + "name": "Fazenda Santa Cruz Airport", + "latitude_deg": "-11.65102", + "longitude_deg": "-52.736311", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São Félix Do Araguaia", + "scheduled_service": "no", + "gps_code": "SIVF", + "local_code": "MT0140", + "keywords": "SWSC" + }, + { + "id": "38066", + "ident": "SWSD", + "type": "small_airport", + "name": "Fazenda Santo Antônio Airport", + "latitude_deg": "-15.623888969421387", + "longitude_deg": "-51.81388854980469", + "elevation_ft": "1079", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Araguaiana", + "scheduled_service": "no", + "gps_code": "SWSD" + }, + { + "id": "323917", + "ident": "SWSE", + "type": "heliport", + "name": "Iguatemi Corporate Heliport", + "latitude_deg": "-30.028333", + "longitude_deg": "-51.162777", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Porto Alegre", + "scheduled_service": "no", + "gps_code": "SWSE", + "local_code": "SWSE" + }, + { + "id": "578", + "ident": "SWSF", + "type": "small_airport", + "name": "Fazenda São Francisco Airport", + "latitude_deg": "-15.2241001129", + "longitude_deg": "-60.217201232899995", + "elevation_ft": "863", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SWSF", + "local_code": "SWSF" + }, + { + "id": "579", + "ident": "SWSG", + "type": "small_airport", + "name": "Fazenda Simarelli Airport", + "latitude_deg": "-13.606800079345703", + "longitude_deg": "-59.31679916381836", + "elevation_ft": "2136", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campos De Júlio", + "scheduled_service": "no", + "gps_code": "SWSG", + "local_code": "SWSG" + }, + { + "id": "38067", + "ident": "SWSH", + "type": "small_airport", + "name": "São Raimundo II Airport", + "latitude_deg": "-9.966388702392578", + "longitude_deg": "-56.15277862548828", + "elevation_ft": "932", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alta Floresta", + "scheduled_service": "no", + "gps_code": "SWSH" + }, + { + "id": "580", + "ident": "SWSI", + "type": "small_airport", + "name": "Presidente João Batista Figueiredo Airport", + "latitude_deg": "-11.885001", + "longitude_deg": "-55.586109", + "elevation_ft": "1227", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sinop", + "scheduled_service": "no", + "gps_code": "SBSI", + "iata_code": "OPS", + "local_code": "MT0002", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sinop_Airport_(Brazil)", + "keywords": "SWSI" + }, + { + "id": "38068", + "ident": "SWSK", + "type": "small_airport", + "name": "Fazenda São Marco Airport", + "latitude_deg": "3.052839", + "longitude_deg": "-60.479586", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Boa Vista", + "scheduled_service": "no", + "keywords": "SWSK" + }, + { + "id": "38069", + "ident": "SWSL", + "type": "heliport", + "name": "Teuto Heliport", + "latitude_deg": "-16.41083335876465", + "longitude_deg": "-48.927223205566406", + "elevation_ft": "3652", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Anápolis", + "scheduled_service": "no", + "gps_code": "SWSL" + }, + { + "id": "581", + "ident": "SWSM", + "type": "small_airport", + "name": "Fazenda Santa Maria Airport", + "latitude_deg": "-15.35833", + "longitude_deg": "-57.69444", + "elevation_ft": "525", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Lambari D`Oeste", + "scheduled_service": "no", + "gps_code": "SWSM", + "local_code": "SWSM" + }, + { + "id": "323916", + "ident": "SWSN", + "type": "small_airport", + "name": "Fazenda São Valentim Airport", + "latitude_deg": "-14.988833", + "longitude_deg": "-59.310833", + "elevation_ft": "873", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes e Lacerda", + "scheduled_service": "no", + "gps_code": "SWSN", + "local_code": "SWSN" + }, + { + "id": "323914", + "ident": "SWSO", + "type": "heliport", + "name": "Socimed Hospital Helipad", + "latitude_deg": "-28.473888", + "longitude_deg": "-48.988888", + "elevation_ft": "79", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Tubarão", + "scheduled_service": "no", + "gps_code": "SWSO", + "local_code": "SWSO" + }, + { + "id": "38070", + "ident": "SWSP", + "type": "small_airport", + "name": "Sopave Norte Airport", + "latitude_deg": "-13.7252779006958", + "longitude_deg": "-54.73833465576172", + "elevation_ft": "1690", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Paranatinga", + "scheduled_service": "no", + "gps_code": "SWSP" + }, + { + "id": "582", + "ident": "SWSQ", + "type": "small_airport", + "name": "São Joaquim Airport", + "latitude_deg": "1.700207", + "longitude_deg": "-69.389702", + "elevation_ft": "541", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "São Gabriel da Cachoeira", + "scheduled_service": "no", + "gps_code": "SWSQ", + "local_code": "AM0053" + }, + { + "id": "38071", + "ident": "SWSR", + "type": "small_airport", + "name": "Sertânia Airport", + "latitude_deg": "-13.75027847290039", + "longitude_deg": "-55.633888244628906", + "elevation_ft": "1772", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sertânia", + "scheduled_service": "no", + "gps_code": "SWSR" + }, + { + "id": "38072", + "ident": "SWSS", + "type": "closed", + "name": "Fazenda Silmar Airport", + "latitude_deg": "-16.165", + "longitude_deg": "-60.114445", + "elevation_ft": "863", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "keywords": "SWSS" + }, + { + "id": "38073", + "ident": "SWST", + "type": "small_airport", + "name": "Santa Terezinha Airport", + "latitude_deg": "-10.4647216796875", + "longitude_deg": "-50.518611907958984", + "elevation_ft": "663", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santa Terezinha", + "scheduled_service": "no", + "gps_code": "SWST", + "iata_code": "STZ" + }, + { + "id": "38074", + "ident": "SWSU", + "type": "small_airport", + "name": "Fazenda Santa Juliana Airport", + "latitude_deg": "-12.875085", + "longitude_deg": "-52.020235", + "elevation_ft": "1230", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Ribeirão Cascalheira", + "scheduled_service": "no", + "keywords": "SWSU" + }, + { + "id": "38075", + "ident": "SWSV", + "type": "small_airport", + "name": "Fazenda Santa Sílvia Airport", + "latitude_deg": "-14.3886108398", + "longitude_deg": "-51.3805541992", + "elevation_ft": "837", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cocalinho", + "scheduled_service": "no", + "gps_code": "SWSV" + }, + { + "id": "38076", + "ident": "SWSW", + "type": "heliport", + "name": "Federal District Civil Police (PCDF) Heliport", + "latitude_deg": "-15.779737", + "longitude_deg": "-47.913247", + "elevation_ft": "3816", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SWSW" + }, + { + "id": "38077", + "ident": "SWSX", + "type": "closed", + "name": "Seringal Nova Olinda Airport", + "latitude_deg": "-10.100445", + "longitude_deg": "-69.21258", + "elevation_ft": "673", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Sena Madureira", + "scheduled_service": "no", + "keywords": "SWSX" + }, + { + "id": "38078", + "ident": "SWSY", + "type": "small_airport", + "name": "São Simão Airport", + "latitude_deg": "-15.914596", + "longitude_deg": "-60.148355", + "elevation_ft": "705", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela da Santíssima Trindade", + "scheduled_service": "no", + "keywords": "SWSY" + }, + { + "id": "38079", + "ident": "SWSZ", + "type": "small_airport", + "name": "Fazenda Santa Luzia Airport", + "latitude_deg": "-9.773611068725586", + "longitude_deg": "-58.06277847290039", + "elevation_ft": "741", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Bandeirantes", + "scheduled_service": "no", + "gps_code": "SWSZ" + }, + { + "id": "38080", + "ident": "SWTA", + "type": "small_airport", + "name": "Fazenda Santa Márcia Airport", + "latitude_deg": "-15.415278", + "longitude_deg": "-58.408095", + "elevation_ft": "938", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Araputanga", + "scheduled_service": "no", + "keywords": "SWTA" + }, + { + "id": "38081", + "ident": "SWTB", + "type": "small_airport", + "name": "Tabajara Airport", + "latitude_deg": "-8.916943550109863", + "longitude_deg": "-62.11722183227539", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Ariquemes", + "scheduled_service": "no", + "gps_code": "SWTB" + }, + { + "id": "38082", + "ident": "SWTC", + "type": "closed", + "name": "Tocantínia Airport", + "latitude_deg": "-9.545695", + "longitude_deg": "-48.399067", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Tocantínia", + "scheduled_service": "no", + "keywords": "SWTC, Miracema do Norte" + }, + { + "id": "38083", + "ident": "SWTD", + "type": "small_airport", + "name": "Fazenda Sete de Setembro Airport", + "latitude_deg": "-13.880673", + "longitude_deg": "-52.400002", + "elevation_ft": "1066", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Água Boa", + "scheduled_service": "no", + "keywords": "SWTD" + }, + { + "id": "38084", + "ident": "SWTE", + "type": "small_airport", + "name": "Fazenda Trescinco Airport", + "latitude_deg": "-13.916944", + "longitude_deg": "-56.65889", + "elevation_ft": "1132", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Diamantino", + "scheduled_service": "no", + "keywords": "SWTE" + }, + { + "id": "38085", + "ident": "SWTF", + "type": "heliport", + "name": "Porto Moura Heliport", + "latitude_deg": "-4.550278", + "longitude_deg": "-65.567223", + "elevation_ft": "195", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Tefé", + "scheduled_service": "no", + "keywords": "SWTF" + }, + { + "id": "317302", + "ident": "SWTG", + "type": "small_airport", + "name": "Fazenda Santa Marina Airport", + "latitude_deg": "-20.847244", + "longitude_deg": "-50.788229", + "elevation_ft": "1126", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santo Antônio do Aracanguá", + "scheduled_service": "no", + "gps_code": "SWTG", + "local_code": "SWTG", + "keywords": "SDAJ" + }, + { + "id": "38086", + "ident": "SWTH", + "type": "small_airport", + "name": "Fazenda Smith", + "latitude_deg": "2.9185", + "longitude_deg": "-60.5107", + "elevation_ft": "290", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Bonfim", + "scheduled_service": "no", + "gps_code": "SWTH" + }, + { + "id": "583", + "ident": "SWTI", + "type": "small_airport", + "name": "São Vicente Airport", + "latitude_deg": "-14.5202999115", + "longitude_deg": "-59.7798995972", + "elevation_ft": "791", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Lacerda", + "scheduled_service": "no", + "gps_code": "SWTI", + "local_code": "SWTI" + }, + { + "id": "38087", + "ident": "SWTJ", + "type": "small_airport", + "name": "Fazenda Cachoeira Airport", + "latitude_deg": "-14.603333473205566", + "longitude_deg": "-57.79722213745117", + "elevation_ft": "1070", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tangará Da Serra", + "scheduled_service": "no", + "gps_code": "SWTJ" + }, + { + "id": "38088", + "ident": "SWTK", + "type": "small_airport", + "name": "Fazenda Santa Maria do Guaporé Airport", + "latitude_deg": "-14.2019443512", + "longitude_deg": "-60.280834198", + "elevation_ft": "797", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SWTK" + }, + { + "id": "43316", + "ident": "SWTL", + "type": "small_airport", + "name": "Fazenda Corumbiara Airport", + "latitude_deg": "-12.500555992126465", + "longitude_deg": "-61.28361129760742", + "elevation_ft": "1371", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Pimenta Bueno", + "scheduled_service": "no", + "gps_code": "SWTL", + "local_code": "SWTL" + }, + { + "id": "38089", + "ident": "SWTM", + "type": "closed", + "name": "Fazenda Santos Reis Airport", + "latitude_deg": "-16.266666", + "longitude_deg": "-59.150002", + "elevation_ft": "879", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Esperidião", + "scheduled_service": "no", + "keywords": "SWTM" + }, + { + "id": "38090", + "ident": "SWTN", + "type": "small_airport", + "name": "Fazenda Arapucel Airport", + "latitude_deg": "-15.041389465332031", + "longitude_deg": "-58.72916793823242", + "elevation_ft": "1345", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Araputanga", + "scheduled_service": "no", + "gps_code": "SWTN" + }, + { + "id": "584", + "ident": "SWTO", + "type": "small_airport", + "name": "Paraíso do Tocantins Airport", + "latitude_deg": "-10.174200058", + "longitude_deg": "-48.932800293", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Paraíso Do Tocantins", + "scheduled_service": "no", + "gps_code": "SWTO", + "local_code": "SWTO" + }, + { + "id": "38091", + "ident": "SWTP", + "type": "small_airport", + "name": "Tapuruquara Airport", + "latitude_deg": "-0.3786", + "longitude_deg": "-64.9923", + "elevation_ft": "223", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Santa Isabel Do Rio Negro", + "scheduled_service": "yes", + "gps_code": "SWTP", + "iata_code": "IRZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tapuruquara_Airport" + }, + { + "id": "585", + "ident": "SWTQ", + "type": "small_airport", + "name": "Rio Quente Resorts Airport", + "latitude_deg": "-17.768871", + "longitude_deg": "-48.761807", + "elevation_ft": "2247", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Rio Quente", + "scheduled_service": "no", + "gps_code": "SWTQ", + "local_code": "GO0146", + "keywords": "Termas Pousada do Rio Quente" + }, + { + "id": "38092", + "ident": "SWTR", + "type": "small_airport", + "name": "Taraquá Airport", + "latitude_deg": "0.12472199648618698", + "longitude_deg": "-68.54560089111328", + "elevation_ft": "246", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "São Gabriel Da Cachoeira", + "scheduled_service": "no", + "gps_code": "SWTR" + }, + { + "id": "586", + "ident": "SWTS", + "type": "small_airport", + "name": "Tangará da Serra Airport", + "latitude_deg": "-14.662", + "longitude_deg": "-57.443501", + "elevation_ft": "1460", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Tangará Da Serra", + "scheduled_service": "yes", + "gps_code": "SWTS", + "iata_code": "TGQ", + "local_code": "SWTS" + }, + { + "id": "323890", + "ident": "SWTT", + "type": "heliport", + "name": "Supermax Heliport", + "latitude_deg": "-25.432516", + "longitude_deg": "-49.326258", + "elevation_ft": "3120", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Curitiba", + "scheduled_service": "no", + "gps_code": "SWTT", + "local_code": "SWTT" + }, + { + "id": "587", + "ident": "SWTU", + "type": "small_airport", + "name": "Fazenda Tucunaré Airport", + "latitude_deg": "-13.465528", + "longitude_deg": "-58.866935", + "elevation_ft": "1814", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SWTU", + "iata_code": "AZL", + "local_code": "MT0410" + }, + { + "id": "38093", + "ident": "SWTV", + "type": "small_airport", + "name": "Fazenda Rio Preto Airport", + "latitude_deg": "-15.054098", + "longitude_deg": "-57.968368", + "elevation_ft": "676", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Salto do Céu", + "scheduled_service": "no", + "gps_code": "SD7U", + "local_code": "MT0313", + "keywords": "SWTV" + }, + { + "id": "38094", + "ident": "SWTW", + "type": "small_airport", + "name": "Fazenda São Lucas Airport", + "latitude_deg": "-15.706389427185059", + "longitude_deg": "-59.241668701171875", + "elevation_ft": "833", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes E Lacerda", + "scheduled_service": "no", + "gps_code": "SWTW" + }, + { + "id": "38095", + "ident": "SWTX", + "type": "small_airport", + "name": "Fazenda Olho D`Água Airport", + "latitude_deg": "-16.145278930664062", + "longitude_deg": "-52.97138977050781", + "elevation_ft": "1201", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Torixoreu", + "scheduled_service": "no", + "gps_code": "SWTX" + }, + { + "id": "38096", + "ident": "SWTY", + "type": "small_airport", + "name": "Taguatinga Airport", + "latitude_deg": "-12.433889389038086", + "longitude_deg": "-46.40055465698242", + "elevation_ft": "1959", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Taguatinga", + "scheduled_service": "no", + "gps_code": "SWTY", + "iata_code": "QHN" + }, + { + "id": "331885", + "ident": "SWTZ", + "type": "small_airport", + "name": "Fazenda Santo Antônio - Zampieri Airport", + "latitude_deg": "-20.739129", + "longitude_deg": "-53.535518", + "elevation_ft": "1319", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ribas do Rio Pardo", + "scheduled_service": "no", + "gps_code": "SWTZ", + "local_code": "MS0396" + }, + { + "id": "588", + "ident": "SWUA", + "type": "small_airport", + "name": "São Miguel do Araguaia Airport", + "latitude_deg": "-13.331299781799316", + "longitude_deg": "-50.197601318359375", + "elevation_ft": "1249", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "São Miguel Do Araguaia", + "scheduled_service": "no", + "gps_code": "SWUA", + "iata_code": "SQM", + "local_code": "SWUA" + }, + { + "id": "38097", + "ident": "SWUB", + "type": "small_airport", + "name": "Fazenda Serra Alegre Airport", + "latitude_deg": "-15.674167", + "longitude_deg": "-59.191666", + "elevation_ft": "1115", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes E Lacerda", + "scheduled_service": "no", + "keywords": "SWUB" + }, + { + "id": "38098", + "ident": "SWUC", + "type": "closed", + "name": "Luciára Airport", + "latitude_deg": "-11.231673", + "longitude_deg": "-50.672544", + "elevation_ft": "689", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Luciára", + "scheduled_service": "no", + "local_code": "MT0028", + "keywords": "SWUC" + }, + { + "id": "323843", + "ident": "SWUD", + "type": "small_airport", + "name": "Cláudio Airport", + "latitude_deg": "-20.445833", + "longitude_deg": "-44.812776", + "elevation_ft": "2690", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Cláudio", + "scheduled_service": "no", + "gps_code": "SWUD" + }, + { + "id": "38099", + "ident": "SWUE", + "type": "small_airport", + "name": "Fazenda Tapayuna Airport", + "latitude_deg": "-10.703332901000977", + "longitude_deg": "-55.936668395996094", + "elevation_ft": "1197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Canaã Do Norte", + "scheduled_service": "no", + "gps_code": "SWUE" + }, + { + "id": "42244", + "ident": "SWUF", + "type": "heliport", + "name": "Cervejaria Petrópolis Heliport", + "latitude_deg": "-23.258056640625", + "longitude_deg": "-47.66055679321289", + "elevation_ft": "2067", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Boituva", + "scheduled_service": "no", + "gps_code": "SWUF" + }, + { + "id": "354763", + "ident": "SWUG", + "type": "heliport", + "name": "Hospital MATER DEI Betim/Contagem Helipad", + "latitude_deg": "-19.94072", + "longitude_deg": "-44.147503", + "elevation_ft": "2979", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Betim", + "scheduled_service": "no", + "gps_code": "SWUG", + "local_code": "MG0295" + }, + { + "id": "336861", + "ident": "SWUI", + "type": "heliport", + "name": "Ilha do Maia Heliport", + "latitude_deg": "-23.027213", + "longitude_deg": "-44.331926", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Ilha do Maia", + "scheduled_service": "no", + "gps_code": "SWUI", + "local_code": "RJ0167" + }, + { + "id": "38101", + "ident": "SWUJ", + "type": "small_airport", + "name": "Taguá Agropecuária Airport", + "latitude_deg": "-12.208737", + "longitude_deg": "-55.375568", + "elevation_ft": "1230", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vera", + "scheduled_service": "no", + "keywords": "SWUJ" + }, + { + "id": "38102", + "ident": "SWUK", + "type": "small_airport", + "name": "Uapuí Cachoeira Airport", + "latitude_deg": "1.2163889408111572", + "longitude_deg": "-69.20055389404297", + "elevation_ft": "249", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "São Gabriel Da Cachoeira", + "scheduled_service": "no", + "gps_code": "SWUK" + }, + { + "id": "38103", + "ident": "SWUL", + "type": "small_airport", + "name": "Fazenda Furna Azul Airport", + "latitude_deg": "-6.2180562019348145", + "longitude_deg": "-48.421390533447266", + "elevation_ft": "407", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Ananás", + "scheduled_service": "no", + "gps_code": "SWUL" + }, + { + "id": "38104", + "ident": "SWUM", + "type": "small_airport", + "name": "Fazenda Rancho Novo Airport", + "latitude_deg": "-13.4425", + "longitude_deg": "-60.272778", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "keywords": "SWUM" + }, + { + "id": "38105", + "ident": "SWUN", + "type": "small_airport", + "name": "Fazenda Santa Eunice Airport", + "latitude_deg": "-10.166063", + "longitude_deg": "-57.554777", + "elevation_ft": "886", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Monte Verde", + "scheduled_service": "no", + "keywords": "SWUN" + }, + { + "id": "38106", + "ident": "SWUO", + "type": "closed", + "name": "Fazenda Santo André Airport", + "latitude_deg": "-13.686388969400001", + "longitude_deg": "-55.9872207642", + "elevation_ft": "1529", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Mutum", + "scheduled_service": "no", + "gps_code": "SWUO" + }, + { + "id": "589", + "ident": "SWUQ", + "type": "small_airport", + "name": "Surucucu Airport", + "latitude_deg": "2.83528", + "longitude_deg": "-63.646999", + "elevation_ft": "2854", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Alto Alegre", + "scheduled_service": "no", + "gps_code": "SWUQ", + "local_code": "RR0113" + }, + { + "id": "42240", + "ident": "SWUR", + "type": "small_airport", + "name": "Fazenda Vista Verde Airport", + "latitude_deg": "-8.491526", + "longitude_deg": "-44.384519", + "elevation_ft": "1945", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PI", + "municipality": "Palmeira Do Piauí", + "scheduled_service": "no", + "gps_code": "SWOQ", + "local_code": "PI0044", + "keywords": "SWUR" + }, + { + "id": "38108", + "ident": "SWUS", + "type": "small_airport", + "name": "Sede Fazenda São Benedito Airport", + "latitude_deg": "-14.232227", + "longitude_deg": "-57.710624", + "elevation_ft": "1798", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo Do Parecis", + "scheduled_service": "no", + "keywords": "SWUS" + }, + { + "id": "38109", + "ident": "SWUT", + "type": "small_airport", + "name": "Lavoura Fazenda São Benedito Airport", + "latitude_deg": "-14.220000267028809", + "longitude_deg": "-57.77888870239258", + "elevation_ft": "2001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Novo Do Parecis", + "scheduled_service": "no", + "gps_code": "SWUT" + }, + { + "id": "38110", + "ident": "SWUU", + "type": "small_airport", + "name": "Fazenda Uirapuru Airport", + "latitude_deg": "-12.100592", + "longitude_deg": "-54.175429", + "elevation_ft": "1148", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sinop", + "scheduled_service": "no", + "keywords": "SWUU" + }, + { + "id": "38111", + "ident": "SWUW", + "type": "small_airport", + "name": "Fazenda Okuhara Airport", + "latitude_deg": "-15.110948", + "longitude_deg": "-56.836696", + "elevation_ft": "807", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra do Bugres", + "scheduled_service": "no", + "gps_code": "SWUW", + "local_code": "MT0414", + "keywords": "Fazenda Santa Bárbara II, Alto Paraguai" + }, + { + "id": "323574", + "ident": "SWUX", + "type": "small_airport", + "name": "Fazenda 4 Amigos Airport", + "latitude_deg": "-9.409722", + "longitude_deg": "-49.668333", + "elevation_ft": "604", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Abreulândia", + "scheduled_service": "no", + "gps_code": "SWUX" + }, + { + "id": "591", + "ident": "SWUZ", + "type": "small_airport", + "name": "Brigadeiro Araripe Macedo Airport", + "latitude_deg": "-16.261699676513672", + "longitude_deg": "-47.96870040893555", + "elevation_ft": "3269", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Luziânia", + "scheduled_service": "no", + "gps_code": "SWUZ", + "local_code": "SWUZ" + }, + { + "id": "38112", + "ident": "SWVA", + "type": "heliport", + "name": "Valmir Amaral Heliport", + "latitude_deg": "-15.842128", + "longitude_deg": "-47.895041", + "elevation_ft": "3300", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SWVA" + }, + { + "id": "38113", + "ident": "SWVB", + "type": "small_airport", + "name": "Vila Bela da Santíssima Trindade Airport", + "latitude_deg": "-14.9942", + "longitude_deg": "-59.9458", + "elevation_ft": "660", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SWVB", + "iata_code": "MTG", + "local_code": "SWVB", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Vila_Bela_da_Sant%C3%ADssima_Trindade", + "keywords": "Mato Grosso Airport" + }, + { + "id": "38114", + "ident": "SWVC", + "type": "small_airport", + "name": "Vila Rica Airport", + "latitude_deg": "-9.979443550109863", + "longitude_deg": "-51.1422233581543", + "elevation_ft": "892", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Rica", + "scheduled_service": "no", + "gps_code": "SWVC", + "iata_code": "VLP" + }, + { + "id": "38115", + "ident": "SWVD", + "type": "small_airport", + "name": "Fazenda Rio Verde Airport", + "latitude_deg": "-17.984285", + "longitude_deg": "-52.574043", + "elevation_ft": "2592", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Serranópolis", + "scheduled_service": "no", + "keywords": "SWVD" + }, + { + "id": "38116", + "ident": "SWVE", + "type": "closed", + "name": "Fazenda Vista Alegre Airport", + "latitude_deg": "-9.788611", + "longitude_deg": "-68.007225", + "elevation_ft": "666", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Bujari", + "scheduled_service": "no", + "keywords": "SWVE" + }, + { + "id": "38117", + "ident": "SWVF", + "type": "small_airport", + "name": "Fazenda Sto Antônio Guaporé - Sede Nova Airport", + "latitude_deg": "-16.0094432831", + "longitude_deg": "-59.9280548096", + "elevation_ft": "709", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SWVF" + }, + { + "id": "316514", + "ident": "SWVG", + "type": "heliport", + "name": "Riacho Verde Heliport", + "latitude_deg": "-5.971", + "longitude_deg": "-40.2983", + "elevation_ft": "1387", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Tauá", + "scheduled_service": "no", + "gps_code": "SWVG", + "local_code": "SWVG" + }, + { + "id": "38118", + "ident": "SWVH", + "type": "small_airport", + "name": "Fazenda Vaca Branca Airport", + "latitude_deg": "-9.523333", + "longitude_deg": "-56.238333", + "elevation_ft": "899", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alta Floresta", + "scheduled_service": "no", + "gps_code": "SBQD", + "local_code": "MT0694", + "keywords": "SWVH" + }, + { + "id": "38119", + "ident": "SWVI", + "type": "closed", + "name": "Fazenda Pirassununga Airport", + "latitude_deg": "-11.517778", + "longitude_deg": "-48.31111", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "São Valério", + "scheduled_service": "no", + "keywords": "SWVI" + }, + { + "id": "38120", + "ident": "SWVJ", + "type": "small_airport", + "name": "Fazenda Uiapuru Airport", + "latitude_deg": "-13.663888931274414", + "longitude_deg": "-56.002220153808594", + "elevation_ft": "1519", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Mutum", + "scheduled_service": "no", + "gps_code": "SWVJ" + }, + { + "id": "38121", + "ident": "SWVK", + "type": "small_airport", + "name": "Fazenda Vale do Rio Celeste Airport", + "latitude_deg": "-13.035319", + "longitude_deg": "-55.32782", + "elevation_ft": "1411", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Ubiratã", + "scheduled_service": "no", + "gps_code": "SWVK" + }, + { + "id": "38122", + "ident": "SWVL", + "type": "small_airport", + "name": "Fazenda Vertente Airport", + "latitude_deg": "-15.896666526794434", + "longitude_deg": "-55.315555572509766", + "elevation_ft": "2444", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santo Antônio Do Leverger", + "scheduled_service": "no", + "gps_code": "SWVL" + }, + { + "id": "316513", + "ident": "SWVM", + "type": "heliport", + "name": "Vinte e Oito Helipad", + "latitude_deg": "-19.9626", + "longitude_deg": "-43.9584", + "elevation_ft": "3405", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Belo Horizonte", + "scheduled_service": "no", + "gps_code": "SWVM", + "local_code": "SWVM" + }, + { + "id": "38123", + "ident": "SWVN", + "type": "small_airport", + "name": "Nova Era & Thomazi Agropecuárias Airport", + "latitude_deg": "-13.634017", + "longitude_deg": "-59.796052", + "elevation_ft": "2054", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SD4H", + "local_code": "MT0698", + "keywords": "SWVN, Valdir Masutti Airport" + }, + { + "id": "38124", + "ident": "SWVO", + "type": "small_airport", + "name": "Panorama Airport", + "latitude_deg": "-11.370278358459473", + "longitude_deg": "-55.38055419921875", + "elevation_ft": "1017", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cláudia", + "scheduled_service": "no", + "gps_code": "SWVO" + }, + { + "id": "42245", + "ident": "SWVP", + "type": "small_airport", + "name": "Fazenda Santa Isabel Airport", + "latitude_deg": "1.156667", + "longitude_deg": "-50.330276", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AP", + "municipality": "Cutias", + "scheduled_service": "no", + "keywords": "SWVP" + }, + { + "id": "38125", + "ident": "SWVQ", + "type": "heliport", + "name": "Uniban Morumbi Heliport", + "latitude_deg": "-23.63166618347168", + "longitude_deg": "-46.69444274902344", + "elevation_ft": "2569", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "gps_code": "SWVQ" + }, + { + "id": "38126", + "ident": "SWVR", + "type": "small_airport", + "name": "Aeródromo do Canarinho", + "latitude_deg": "-11.906131", + "longitude_deg": "-55.456099", + "elevation_ft": "1460", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sinop", + "scheduled_service": "no", + "gps_code": "SWVR", + "keywords": "Estância Rosália" + }, + { + "id": "38127", + "ident": "SWVS", + "type": "small_airport", + "name": "Baia do Padre Airport", + "latitude_deg": "-15.861972", + "longitude_deg": "-60.04039", + "elevation_ft": "675", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SWVS", + "keywords": "Fazenda Sto Antônio do Guaporé" + }, + { + "id": "42735", + "ident": "SWVT", + "type": "small_airport", + "name": "Fazenda Estrela D`Alva Airport", + "latitude_deg": "-12.120271", + "longitude_deg": "-52.641184", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Querência", + "scheduled_service": "no", + "keywords": "SWVT" + }, + { + "id": "41096", + "ident": "SWVU", + "type": "small_airport", + "name": "Fazenda Ramalhete Airport", + "latitude_deg": "-21.733299255371094", + "longitude_deg": "-54.576698303222656", + "elevation_ft": "1099", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Rio Brilhante", + "scheduled_service": "no", + "gps_code": "SWVU" + }, + { + "id": "38128", + "ident": "SWVV", + "type": "small_airport", + "name": "Fazenda Bela Vista Airport", + "latitude_deg": "-15.755166", + "longitude_deg": "-60.096052", + "elevation_ft": "692", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SWVV", + "keywords": "Fazenda Esperança" + }, + { + "id": "316511", + "ident": "SWVW", + "type": "small_airport", + "name": "Furnaspark Resort Airport", + "latitude_deg": "-20.535", + "longitude_deg": "-45.6037", + "elevation_ft": "2580", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Formiga", + "scheduled_service": "no", + "gps_code": "SWVW", + "local_code": "SWVW", + "home_link": "http://www.furnaspark.com.br/airport-facility/" + }, + { + "id": "316509", + "ident": "SWVX", + "type": "small_airport", + "name": "Fazenda Guariba Airstrip", + "latitude_deg": "-10.2415", + "longitude_deg": "-60.1409", + "elevation_ft": "517", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Aripuanã", + "scheduled_service": "no", + "gps_code": "SWVX", + "local_code": "SWVX" + }, + { + "id": "42734", + "ident": "SWVY", + "type": "small_airport", + "name": "Fazenda Carvalho Airport", + "latitude_deg": "-17.568061", + "longitude_deg": "-56.482236", + "elevation_ft": "361", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Corumbá", + "scheduled_service": "no", + "gps_code": "SNQO", + "local_code": "MS0225", + "keywords": "SWVY" + }, + { + "id": "38129", + "ident": "SWVZ", + "type": "small_airport", + "name": "EMAL - Empresa de Mineração Aripuanã Ltda Airport", + "latitude_deg": "-14.75", + "longitude_deg": "-56.352779388427734", + "elevation_ft": "2362", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nobres", + "scheduled_service": "no", + "gps_code": "SWVZ" + }, + { + "id": "592", + "ident": "SWWA", + "type": "small_airport", + "name": "Porangatu Airport", + "latitude_deg": "-13.404800415039062", + "longitude_deg": "-49.15829849243164", + "elevation_ft": "1201", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Porangatu", + "scheduled_service": "no", + "gps_code": "SWWA", + "local_code": "SWWA" + }, + { + "id": "38130", + "ident": "SWWB", + "type": "small_airport", + "name": "Fazenda Rio Azul Airport", + "latitude_deg": "-11.258173", + "longitude_deg": "-54.927735", + "elevation_ft": "1083", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cláudia", + "scheduled_service": "no", + "gps_code": "SWWB" + }, + { + "id": "331936", + "ident": "SWWC", + "type": "heliport", + "name": "Cataratas Poços Helipad", + "latitude_deg": "2.766853", + "longitude_deg": "-60.716017", + "elevation_ft": "279", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RR", + "municipality": "Boa Vista", + "scheduled_service": "no", + "gps_code": "SWWC", + "local_code": "RR0115" + }, + { + "id": "38131", + "ident": "SWWD", + "type": "small_airport", + "name": "C.F. de Souza Bais Airport", + "latitude_deg": "-1.691388889", + "longitude_deg": "-63.785", + "elevation_ft": "207", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Barcelos", + "scheduled_service": "no", + "gps_code": "SWWD" + }, + { + "id": "331931", + "ident": "SWWE", + "type": "small_airport", + "name": "M. Baumann Airfield", + "latitude_deg": "-26.03618", + "longitude_deg": "-49.500291", + "elevation_ft": "3123", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PR", + "municipality": "Piên", + "scheduled_service": "no", + "gps_code": "SWWE", + "local_code": "PR0099" + }, + { + "id": "38132", + "ident": "SWWF", + "type": "small_airport", + "name": "Hotel Baiazinha Airport", + "latitude_deg": "-16.569721", + "longitude_deg": "-57.83139", + "elevation_ft": "446", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SDF8", + "local_code": "MT0745", + "keywords": "SWWF" + }, + { + "id": "46475", + "ident": "SWWG", + "type": "small_airport", + "name": "Fazenda Canamari Airport", + "latitude_deg": "-18.549552", + "longitude_deg": "-50.381241", + "elevation_ft": "1699", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Quirinópolis", + "scheduled_service": "no", + "gps_code": "SJJW", + "local_code": "GO0079", + "keywords": "SWWG" + }, + { + "id": "316506", + "ident": "SWWH", + "type": "small_airport", + "name": "Fazenda Marca Salto Airstrip", + "latitude_deg": "-21.9827", + "longitude_deg": "-53.904", + "elevation_ft": "1164", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Angélica", + "scheduled_service": "no", + "gps_code": "SWWH", + "local_code": "SWWH" + }, + { + "id": "38133", + "ident": "SWWI", + "type": "small_airport", + "name": "Fazenda Fortaleza Airport", + "latitude_deg": "-15.673333168029785", + "longitude_deg": "-53.57833480834961", + "elevation_ft": "1995", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "General Carneiro", + "scheduled_service": "no", + "gps_code": "SWWI" + }, + { + "id": "38134", + "ident": "SWWJ", + "type": "small_airport", + "name": "Posto de Proteção Ambiental Nossa Senhora do Carmo Airport", + "latitude_deg": "-16.68083381652832", + "longitude_deg": "-56.29916763305664", + "elevation_ft": "348", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão De Melgaço", + "scheduled_service": "no", + "gps_code": "SWWJ" + }, + { + "id": "593", + "ident": "SWWK", + "type": "small_airport", + "name": "Urucará Airport", + "latitude_deg": "-2.5288898944854736", + "longitude_deg": "-57.75579833984375", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Urucará", + "scheduled_service": "no", + "gps_code": "SWWK", + "local_code": "SWWK" + }, + { + "id": "594", + "ident": "SWWL", + "type": "small_airport", + "name": "Fazenda Agrocentro Airport", + "latitude_deg": "-15.696700096130371", + "longitude_deg": "-52.26390075683594", + "elevation_ft": "1119", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra Do Garças", + "scheduled_service": "no", + "gps_code": "SWWL", + "local_code": "SWWL" + }, + { + "id": "38135", + "ident": "SWWM", + "type": "small_airport", + "name": "Fazenda Pupila Airport", + "latitude_deg": "-18.771944046020508", + "longitude_deg": "-40.94944381713867", + "elevation_ft": "663", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Mantena", + "scheduled_service": "no", + "gps_code": "SWWM" + }, + { + "id": "38136", + "ident": "SWWN", + "type": "small_airport", + "name": "Fazenda Santa Amália Airport", + "latitude_deg": "-10.307853", + "longitude_deg": "-56.579088", + "elevation_ft": "1043", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alta Floresta", + "scheduled_service": "no", + "gps_code": "SDVX", + "local_code": "MT0069", + "keywords": "SWWN" + }, + { + "id": "316505", + "ident": "SWWO", + "type": "heliport", + "name": "Niely do Brasil Heliport", + "latitude_deg": "-22.7013", + "longitude_deg": "-43.4675", + "elevation_ft": "108", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Nova Iguaçu", + "scheduled_service": "no", + "gps_code": "SWWO", + "local_code": "SWWO" + }, + { + "id": "38137", + "ident": "SWWP", + "type": "heliport", + "name": "Fazenda Taboca Heliport", + "latitude_deg": "-15.85111141204834", + "longitude_deg": "-47.807777404785156", + "elevation_ft": "3543", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "gps_code": "SWWP" + }, + { + "id": "38138", + "ident": "SWWQ", + "type": "heliport", + "name": "UNB Autotrac Heliport", + "latitude_deg": "-15.772322", + "longitude_deg": "-47.870034", + "elevation_ft": "3435", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "keywords": "SWWQ" + }, + { + "id": "38139", + "ident": "SWWR", + "type": "heliport", + "name": "Brasília International Autodrome Heliport", + "latitude_deg": "-15.77615", + "longitude_deg": "-47.90045", + "elevation_ft": "3701", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-DF", + "municipality": "Brasília", + "scheduled_service": "no", + "keywords": "SWWR" + }, + { + "id": "323573", + "ident": "SWWS", + "type": "heliport", + "name": "Sorocaba Business Park Heliport", + "latitude_deg": "-23.445563", + "longitude_deg": "-47.389604", + "elevation_ft": "2021", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Sorocaba", + "scheduled_service": "no", + "gps_code": "SWWS", + "local_code": "SWWS" + }, + { + "id": "38140", + "ident": "SWWT", + "type": "small_airport", + "name": "Sílvio Gonçalves de Mello Airport", + "latitude_deg": "-18.705556869499997", + "longitude_deg": "-45.3355560303", + "elevation_ft": "1988", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Morada Nova De Minas", + "scheduled_service": "no", + "gps_code": "SWWT" + }, + { + "id": "595", + "ident": "SWWU", + "type": "small_airport", + "name": "Uruaçu Airport", + "latitude_deg": "-14.525555610656738", + "longitude_deg": "-49.137779235839844", + "elevation_ft": "1706", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Uruaçu", + "scheduled_service": "no", + "gps_code": "SWWU", + "local_code": "SWWU" + }, + { + "id": "38141", + "ident": "SWWV", + "type": "small_airport", + "name": "Posto de Proteção Ambiental Santa Maria Airport", + "latitude_deg": "-16.706388473510742", + "longitude_deg": "-56.02916717529297", + "elevation_ft": "381", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão De Melgaço", + "scheduled_service": "no", + "gps_code": "SWWV" + }, + { + "id": "38142", + "ident": "SWWW", + "type": "small_airport", + "name": "Posto de Proteção Ambiental São Luiz Airport", + "latitude_deg": "-16.68833351135254", + "longitude_deg": "-56.176387786865234", + "elevation_ft": "367", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão De Melgaço", + "scheduled_service": "no", + "gps_code": "SWWW" + }, + { + "id": "38143", + "ident": "SWWX", + "type": "small_airport", + "name": "Posto de Proteção Ambiental São Joaquim Airport", + "latitude_deg": "-16.746110916137695", + "longitude_deg": "-56.369998931884766", + "elevation_ft": "338", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão De Melgaço", + "scheduled_service": "no", + "gps_code": "SWWX" + }, + { + "id": "38144", + "ident": "SWWY", + "type": "small_airport", + "name": "Posto de Proteção Ambiental Espírito Santo Airport", + "latitude_deg": "-16.587221145629883", + "longitude_deg": "-56.279998779296875", + "elevation_ft": "354", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão De Melgaço", + "scheduled_service": "no", + "gps_code": "SWWY" + }, + { + "id": "38145", + "ident": "SWWZ", + "type": "small_airport", + "name": "Darinha Airport", + "latitude_deg": "-4.109722", + "longitude_deg": "-38.242778", + "elevation_ft": "62", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-CE", + "municipality": "Cascavel", + "scheduled_service": "no", + "gps_code": "SJND", + "local_code": "CE0020", + "keywords": "SWWZ" + }, + { + "id": "38146", + "ident": "SWXA", + "type": "small_airport", + "name": "Fazenda Canadazinho Airport", + "latitude_deg": "-15.044121", + "longitude_deg": "-51.404677", + "elevation_ft": "889", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Jussara", + "scheduled_service": "no", + "gps_code": "SWXA", + "local_code": "GO0149" + }, + { + "id": "316503", + "ident": "SWXB", + "type": "small_airport", + "name": "Fazenda Jangada Airstrip", + "latitude_deg": "-15.296", + "longitude_deg": "-55.175", + "elevation_ft": "2350", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Verde", + "scheduled_service": "no", + "gps_code": "SWXB", + "local_code": "SWXB" + }, + { + "id": "596", + "ident": "SWXC", + "type": "small_airport", + "name": "Fazenda Tropical Airport", + "latitude_deg": "-12.886099815368652", + "longitude_deg": "-61.298301696777344", + "elevation_ft": "981", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RO", + "municipality": "Cerejeiras", + "scheduled_service": "no", + "gps_code": "SWXC", + "local_code": "SWXC" + }, + { + "id": "38147", + "ident": "SWXD", + "type": "small_airport", + "name": "Aerogardi Airport", + "latitude_deg": "-21.561111450195312", + "longitude_deg": "-48.79861068725586", + "elevation_ft": "1762", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Itápolis", + "scheduled_service": "no", + "gps_code": "SWXD" + }, + { + "id": "316501", + "ident": "SWXE", + "type": "small_airport", + "name": "PCH Paranatinga II Airport", + "latitude_deg": "-13.867", + "longitude_deg": "-53.25", + "elevation_ft": "1174", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campinápolis", + "scheduled_service": "no", + "gps_code": "SWXE", + "local_code": "SWXE" + }, + { + "id": "38148", + "ident": "SWXF", + "type": "closed", + "name": "Chácara Córrego Fundo Airport", + "latitude_deg": "-15.59", + "longitude_deg": "-56.05", + "elevation_ft": "630", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cuiabá", + "scheduled_service": "no", + "gps_code": "SWXF" + }, + { + "id": "38149", + "ident": "SWXG", + "type": "small_airport", + "name": "Xingu Airport", + "latitude_deg": "-12.005556106567383", + "longitude_deg": "-53.4022216796875", + "elevation_ft": "1000", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barra Do Garças", + "scheduled_service": "no", + "gps_code": "SWXG" + }, + { + "id": "38150", + "ident": "SWXH", + "type": "small_airport", + "name": "Fazenda São Sebastião Airport", + "latitude_deg": "-13.064413", + "longitude_deg": "-46.258833", + "elevation_ft": "2999", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-BA", + "municipality": "São Desidério", + "scheduled_service": "no", + "gps_code": "SSTL", + "local_code": "BA0257", + "keywords": "SWXH" + }, + { + "id": "38151", + "ident": "SWXI", + "type": "heliport", + "name": "Tocca do Mar-Kao Heliport", + "latitude_deg": "-16.264921", + "longitude_deg": "-48.981098", + "elevation_ft": "3547", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Anápolis", + "scheduled_service": "no", + "keywords": "SWXI" + }, + { + "id": "38152", + "ident": "SWXJ", + "type": "small_airport", + "name": "Chácara São José Airport", + "latitude_deg": "-15.541943550109863", + "longitude_deg": "-55.983890533447266", + "elevation_ft": "568", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cuiabá", + "scheduled_service": "no", + "gps_code": "SWXJ" + }, + { + "id": "597", + "ident": "SWXK", + "type": "small_airport", + "name": "Fazenda Rio Alegre Airport", + "latitude_deg": "-13.274200439453125", + "longitude_deg": "-56.89229965209961", + "elevation_ft": "1240", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São José Do Rio Claro", + "scheduled_service": "no", + "gps_code": "SWXK", + "local_code": "SWXK" + }, + { + "id": "38153", + "ident": "SWXL", + "type": "small_airport", + "name": "Fazenda Lago Grande Airport", + "latitude_deg": "-12.101389", + "longitude_deg": "-49.951111", + "elevation_ft": "600", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Sandolândia", + "scheduled_service": "no", + "keywords": "SWXL" + }, + { + "id": "31882", + "ident": "SWXM", + "type": "small_airport", + "name": "Regional Orlando Villas Boas Airport", + "latitude_deg": "-10.170277595500002", + "longitude_deg": "-54.9527778625", + "elevation_ft": "886", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Matupá", + "scheduled_service": "no", + "gps_code": "SWXM", + "iata_code": "MBK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Matup%C3%A1_Airport", + "keywords": "Matupá Airport" + }, + { + "id": "335078", + "ident": "SWXN", + "type": "small_airport", + "name": "Fazenda Bom Jardim Airport", + "latitude_deg": "-17.247325", + "longitude_deg": "-51.270546", + "elevation_ft": "2933", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Montividiu", + "scheduled_service": "no", + "gps_code": "SWXN", + "local_code": "GO0199" + }, + { + "id": "41097", + "ident": "SWXO", + "type": "small_airport", + "name": "Fazenda Porto Seguro Airport", + "latitude_deg": "-7.131667137145996", + "longitude_deg": "-52.72722244262695", + "elevation_ft": "800", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "São Félix Do Xingu", + "scheduled_service": "no", + "gps_code": "SWXO" + }, + { + "id": "42243", + "ident": "SWXP", + "type": "small_airport", + "name": "Fazenda Santa Luzia Airport", + "latitude_deg": "-13.732873", + "longitude_deg": "-58.888168", + "elevation_ft": "1955", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sapezal", + "scheduled_service": "no", + "gps_code": "SNBW", + "local_code": "MT0568", + "keywords": "SWXP" + }, + { + "id": "38154", + "ident": "SWXR", + "type": "small_airport", + "name": "Faria Airport", + "latitude_deg": "-15.646366", + "longitude_deg": "-58.774302", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Esperidião", + "scheduled_service": "no", + "keywords": "SWXR" + }, + { + "id": "38155", + "ident": "SWXS", + "type": "small_airport", + "name": "Fazenda São João do Ibiporã Airport", + "latitude_deg": "-15.789999961853027", + "longitude_deg": "-59.636390686035156", + "elevation_ft": "951", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes E Lacerda", + "scheduled_service": "no", + "gps_code": "SWXS" + }, + { + "id": "38156", + "ident": "SWXT", + "type": "small_airport", + "name": "Fazenda Medalha Milagrosa Airport", + "latitude_deg": "-16.1016674042", + "longitude_deg": "-60.0649986267", + "elevation_ft": "853", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Vila Bela Da Santíssima Trindade", + "scheduled_service": "no", + "gps_code": "SWXT" + }, + { + "id": "598", + "ident": "SWXU", + "type": "small_airport", + "name": "Xapuri Airport", + "latitude_deg": "-10.663718", + "longitude_deg": "-68.485873", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Xapuri", + "scheduled_service": "no", + "gps_code": "SD7H", + "local_code": "AC0005", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Xapuri", + "keywords": "SWXU" + }, + { + "id": "32042", + "ident": "SWXV", + "type": "small_airport", + "name": "Xavantina Airport", + "latitude_deg": "-14.6983003616333", + "longitude_deg": "-52.34640121459961", + "elevation_ft": "1035", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Xavantina", + "scheduled_service": "no", + "gps_code": "SWXV", + "iata_code": "NOK" + }, + { + "id": "38157", + "ident": "SWXW", + "type": "small_airport", + "name": "Fazenda São João do Guaporé Airport", + "latitude_deg": "-15.973614", + "longitude_deg": "-59.889221", + "elevation_ft": "722", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes E Lacerda", + "scheduled_service": "no", + "gps_code": "SDDC", + "local_code": "MT0033", + "keywords": "SWXW" + }, + { + "id": "310852", + "ident": "SWXX", + "type": "small_airport", + "name": "Fazenda Canadá Airport", + "latitude_deg": "-18.8619", + "longitude_deg": "-48.423", + "elevation_ft": "2825", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Uberlândia", + "scheduled_service": "no", + "gps_code": "SWXX", + "local_code": "SWXX" + }, + { + "id": "38158", + "ident": "SWXY", + "type": "small_airport", + "name": "Fazenda Vô Zeca Airport", + "latitude_deg": "-10.355752", + "longitude_deg": "-50.676797", + "elevation_ft": "732", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Santa Terezinha", + "scheduled_service": "no", + "gps_code": "SNZS", + "local_code": "MT0665", + "keywords": "Fazenda Transoeste, SWXY" + }, + { + "id": "38159", + "ident": "SWXZ", + "type": "small_airport", + "name": "Fazenda Taquarussu Airport", + "latitude_deg": "-13.3125", + "longitude_deg": "-60.293331146240234", + "elevation_ft": "899", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Comodoro", + "scheduled_service": "no", + "gps_code": "SWXZ" + }, + { + "id": "38160", + "ident": "SWYA", + "type": "small_airport", + "name": "Fazenda Nossa Senhora Aparecida Airport", + "latitude_deg": "-16.044166564941406", + "longitude_deg": "-54.95166778564453", + "elevation_ft": "1082", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Jaciara", + "scheduled_service": "no", + "gps_code": "SWYA" + }, + { + "id": "599", + "ident": "SWYB", + "type": "heliport", + "name": "Chácara Messias Heliport", + "latitude_deg": "-23.278754", + "longitude_deg": "-46.253759", + "elevation_ft": "2270", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Santa Isabel", + "scheduled_service": "no", + "gps_code": "SJ26", + "local_code": "SP1440" + }, + { + "id": "38161", + "ident": "SWYC", + "type": "small_airport", + "name": "Jair Feliciano de Deus Airport", + "latitude_deg": "-15.693403", + "longitude_deg": "-58.107917", + "elevation_ft": "849", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Mirassol d`Oeste", + "scheduled_service": "no", + "gps_code": "SIUY", + "local_code": "MT0139", + "keywords": "SWYC" + }, + { + "id": "38162", + "ident": "SWYD", + "type": "closed", + "name": "Cotia Foods S/A Heliport", + "latitude_deg": "-23.6191673279", + "longitude_deg": "-46.881942749", + "elevation_ft": "2707", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Cotia", + "scheduled_service": "no", + "gps_code": "SWYD" + }, + { + "id": "341723", + "ident": "SWYE", + "type": "small_airport", + "name": "Fazenda São Lourenço Airstrip", + "latitude_deg": "-29.555833", + "longitude_deg": "-55.784444", + "elevation_ft": "449", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RS", + "municipality": "Alegrete", + "scheduled_service": "no", + "gps_code": "SWYE", + "local_code": "RS0172" + }, + { + "id": "38163", + "ident": "SWYF", + "type": "closed", + "name": "Minas Empreendimentos Heliport", + "latitude_deg": "-19.901388", + "longitude_deg": "-44.06472", + "elevation_ft": "2979", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Contagem", + "scheduled_service": "no", + "keywords": "SWYF" + }, + { + "id": "38164", + "ident": "SWYG", + "type": "small_airport", + "name": "São José Airport", + "latitude_deg": "-19.622072", + "longitude_deg": "-40.201496", + "elevation_ft": "187", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Aracruz", + "scheduled_service": "no", + "keywords": "SWYG" + }, + { + "id": "38165", + "ident": "SWYH", + "type": "small_airport", + "name": "Fazenda Aliança Airport", + "latitude_deg": "-15.292499542236328", + "longitude_deg": "-58.31444549560547", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Araputanga", + "scheduled_service": "no", + "gps_code": "SWYH" + }, + { + "id": "38166", + "ident": "SWYI", + "type": "small_airport", + "name": "Barragem Manoel Alves Airport", + "latitude_deg": "-11.557041", + "longitude_deg": "-46.985109", + "elevation_ft": "2067", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Dianópolis", + "scheduled_service": "no", + "keywords": "SWYI" + }, + { + "id": "38167", + "ident": "SWYJ", + "type": "small_airport", + "name": "Fazenda Agropecuária FR Ltda. Airport", + "latitude_deg": "-7.622499942779541", + "longitude_deg": "-56.06833267211914", + "elevation_ft": "860", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Novo Progresso", + "scheduled_service": "no", + "gps_code": "SWYJ" + }, + { + "id": "600", + "ident": "SWYK", + "type": "small_airport", + "name": "Fazenda Ilha Camargo Airport", + "latitude_deg": "-17.062599182128906", + "longitude_deg": "-56.58369827270508", + "elevation_ft": "358", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Poconé", + "scheduled_service": "no", + "gps_code": "SWYK", + "local_code": "SWYK" + }, + { + "id": "38168", + "ident": "SWYL", + "type": "closed", + "name": "Autódromo José Carlos Pace Heliport", + "latitude_deg": "-23.7033", + "longitude_deg": "-46.6995", + "elevation_ft": "2595", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Paulo", + "scheduled_service": "no", + "keywords": "SWYL, Interlagos Raceway" + }, + { + "id": "601", + "ident": "SWYM", + "type": "small_airport", + "name": "Fazenda Anhanguera Airport", + "latitude_deg": "-14.642499923706055", + "longitude_deg": "-59.449100494384766", + "elevation_ft": "951", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes E Lacerda", + "scheduled_service": "no", + "gps_code": "SWYM", + "local_code": "SWYM" + }, + { + "id": "602", + "ident": "SWYN", + "type": "small_airport", + "name": "Apuí Airport", + "latitude_deg": "-7.172773", + "longitude_deg": "-59.8396", + "elevation_ft": "197", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Apuí", + "scheduled_service": "no", + "gps_code": "SWYN", + "iata_code": "IUP", + "local_code": "AM0023" + }, + { + "id": "38169", + "ident": "SWYO", + "type": "small_airport", + "name": "Usina Branco Peres Airport", + "latitude_deg": "-21.4869441986084", + "longitude_deg": "-51.02555465698242", + "elevation_ft": "1335", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Adamantina", + "scheduled_service": "no", + "gps_code": "SWYO" + }, + { + "id": "38170", + "ident": "SWYP", + "type": "small_airport", + "name": "Fazenda Ribeiro do Céu Airport", + "latitude_deg": "-13.955319", + "longitude_deg": "-55.778993", + "elevation_ft": "1683", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Mutum", + "scheduled_service": "no", + "gps_code": "SWRX", + "local_code": "MT0392", + "keywords": "SWYP" + }, + { + "id": "603", + "ident": "SWYQ", + "type": "small_airport", + "name": "Fazenda Nova Fronteira Airport", + "latitude_deg": "-11.4678", + "longitude_deg": "-56.437599", + "elevation_ft": "1017", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Sinop", + "scheduled_service": "no", + "keywords": "SWYQ" + }, + { + "id": "38171", + "ident": "SWYR", + "type": "small_airport", + "name": "Fazenda Nossa Senhora do Pillar Airport", + "latitude_deg": "-15.3458328247", + "longitude_deg": "-58.795276641799994", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Jauru", + "scheduled_service": "no", + "gps_code": "SWYR" + }, + { + "id": "334003", + "ident": "SWYS", + "type": "small_airport", + "name": "Usina Cerradão Airport", + "latitude_deg": "-19.929763", + "longitude_deg": "-49.122725", + "elevation_ft": "1706", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Frutal", + "scheduled_service": "no", + "gps_code": "SWYS", + "local_code": "MG0302" + }, + { + "id": "38172", + "ident": "SWYT", + "type": "small_airport", + "name": "Fazenda Formosa Airport", + "latitude_deg": "-10.013056", + "longitude_deg": "-47.681667", + "elevation_ft": "1132", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-TO", + "municipality": "Novo Acordo", + "scheduled_service": "no", + "keywords": "SWYT" + }, + { + "id": "38173", + "ident": "SWYU", + "type": "small_airport", + "name": "Fazenda Entre Rios Airport", + "latitude_deg": "-14.439712", + "longitude_deg": "-50.864486", + "elevation_ft": "781", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Aruanã", + "scheduled_service": "no", + "keywords": "SWYU" + }, + { + "id": "604", + "ident": "SWYV", + "type": "small_airport", + "name": "Clube de Marte Ibirá de Pará-Quedismo Airport", + "latitude_deg": "-21.091388702392578", + "longitude_deg": "-49.22416687011719", + "elevation_ft": "1591", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Ibirá", + "scheduled_service": "no", + "gps_code": "SWYV", + "local_code": "SWYV" + }, + { + "id": "38174", + "ident": "SWYW", + "type": "small_airport", + "name": "Fazenda Adriana Airport", + "latitude_deg": "-16.834444046020508", + "longitude_deg": "-53.83527755737305", + "elevation_ft": "2241", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Alto Garças", + "scheduled_service": "no", + "gps_code": "SWYW" + }, + { + "id": "310848", + "ident": "SWYX", + "type": "small_airport", + "name": "Horizonte Azul Airport", + "latitude_deg": "-13.181", + "longitude_deg": "-53.27585", + "elevation_ft": "1277", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "SWYX", + "scheduled_service": "no", + "gps_code": "SWYX", + "local_code": "SWYX" + }, + { + "id": "38175", + "ident": "SWYY", + "type": "small_airport", + "name": "Fazenda Nova Viena Airport", + "latitude_deg": "-14.887778282165527", + "longitude_deg": "-52.27694320678711", + "elevation_ft": "994", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Nova Xavantina", + "scheduled_service": "no", + "gps_code": "SWYY" + }, + { + "id": "38176", + "ident": "SWYZ", + "type": "heliport", + "name": "Residência Oficial Heliport", + "latitude_deg": "-20.327198", + "longitude_deg": "-40.269191", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-ES", + "municipality": "Vila Velha", + "scheduled_service": "no", + "gps_code": "SJIE", + "local_code": "ES0020", + "keywords": "SWYZ" + }, + { + "id": "342109", + "ident": "SWZ", + "type": "heliport", + "name": "Western Sydney International (Nancy Bird Walton) Airport", + "latitude_deg": "-33.879444", + "longitude_deg": "150.739722", + "elevation_ft": "228", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Sydney (Badgerys Creek)", + "scheduled_service": "no", + "iata_code": "SWZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Western_Sydney_Airport" + }, + { + "id": "38177", + "ident": "SWZA", + "type": "small_airport", + "name": "Agrosan Airport", + "latitude_deg": "-11.397556", + "longitude_deg": "-58.121521", + "elevation_ft": "1040", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Juara", + "scheduled_service": "no", + "gps_code": "SWZA", + "local_code": "MT0443" + }, + { + "id": "38178", + "ident": "SWZB", + "type": "small_airport", + "name": "Fazenda Arara Azul Airport", + "latitude_deg": "-17.005472", + "longitude_deg": "-56.459641", + "elevation_ft": "384", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Barão De Melgaço", + "scheduled_service": "no", + "gps_code": "SJHZ", + "local_code": "MT0181", + "keywords": "SWZB" + }, + { + "id": "38179", + "ident": "SWZC", + "type": "small_airport", + "name": "Fazenda Corixo Airport", + "latitude_deg": "-16.245331", + "longitude_deg": "-58.894444", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Esperidião", + "scheduled_service": "no", + "gps_code": "SWZC", + "local_code": "MT0444" + }, + { + "id": "38180", + "ident": "SWZD", + "type": "small_airport", + "name": "Fazenda Denusa Destilaria Nova União Airport", + "latitude_deg": "-17.255833", + "longitude_deg": "-50.142674", + "elevation_ft": "1699", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Jandaia", + "scheduled_service": "no", + "gps_code": "SWZD", + "local_code": "GO0151" + }, + { + "id": "38181", + "ident": "SWZE", + "type": "small_airport", + "name": "Fazenda Tamboril Airport", + "latitude_deg": "-15.059733", + "longitude_deg": "-59.379215", + "elevation_ft": "1099", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Pontes E Lacerda", + "scheduled_service": "no", + "gps_code": "SWZE", + "local_code": "MT0445" + }, + { + "id": "38182", + "ident": "SWZF", + "type": "small_airport", + "name": "Fazenda Araguari Airport", + "latitude_deg": "-15.494722", + "longitude_deg": "-58.399445", + "elevation_ft": "902", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Araputanga", + "scheduled_service": "no", + "keywords": "SWZF" + }, + { + "id": "38183", + "ident": "SWZG", + "type": "small_airport", + "name": "Fazenda Lagoa Encantada Airport", + "latitude_deg": "-16.021695", + "longitude_deg": "-58.894873", + "elevation_ft": "800", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Porto Esperidião", + "scheduled_service": "no", + "gps_code": "SWZG", + "local_code": "MT0446" + }, + { + "id": "38184", + "ident": "SWZH", + "type": "small_airport", + "name": "Fazenda Caçapava Airport", + "latitude_deg": "-17.575001", + "longitude_deg": "-50.174997", + "elevation_ft": "1918", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Acreúna", + "scheduled_service": "no", + "keywords": "SWZH" + }, + { + "id": "316500", + "ident": "SWZI", + "type": "heliport", + "name": "Multitoc Heliport", + "latitude_deg": "-22.4318", + "longitude_deg": "-45.4342", + "elevation_ft": "2806", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Itajubá", + "scheduled_service": "no", + "gps_code": "SWZI", + "local_code": "SWZI" + }, + { + "id": "38185", + "ident": "SWZJ", + "type": "small_airport", + "name": "Fazenda São João Airport", + "latitude_deg": "-14.54722", + "longitude_deg": "-50.6536", + "elevation_ft": "1033", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Crixás", + "scheduled_service": "no", + "keywords": "SWZJ" + }, + { + "id": "38186", + "ident": "SWZK", + "type": "heliport", + "name": "CON-CN-Cidade Nova Heliport", + "latitude_deg": "-22.911388397216797", + "longitude_deg": "-43.20333480834961", + "elevation_ft": "125", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-RJ", + "municipality": "Rio De Janeiro", + "scheduled_service": "no", + "gps_code": "SWZK" + }, + { + "id": "38187", + "ident": "SWZL", + "type": "small_airport", + "name": "Fazenda Americana Airport", + "latitude_deg": "-18.147591", + "longitude_deg": "-41.715044", + "elevation_ft": "1106", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Itambacuri", + "scheduled_service": "no", + "gps_code": "SWEU", + "local_code": "MG0197", + "keywords": "SWZL" + }, + { + "id": "605", + "ident": "SWZM", + "type": "small_airport", + "name": "Usina São Simão Airport", + "latitude_deg": "-18.9865", + "longitude_deg": "-50.563599", + "elevation_ft": "1716", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "São Simão", + "scheduled_service": "no", + "gps_code": "SSYO", + "local_code": "GO0112", + "keywords": "SWZM" + }, + { + "id": "38188", + "ident": "SWZN", + "type": "small_airport", + "name": "Fazenda Francês Airport", + "latitude_deg": "-17.314771", + "longitude_deg": "-50.424987", + "elevation_ft": "2210", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Acreúna", + "scheduled_service": "no", + "gps_code": "SSSF", + "local_code": "GO0201", + "keywords": "SWZN" + }, + { + "id": "38189", + "ident": "SWZO", + "type": "small_airport", + "name": "Fazenda Lagoa Funda Airport", + "latitude_deg": "-15.342778205899998", + "longitude_deg": "-55.136390686", + "elevation_ft": "2165", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Campo Verde", + "scheduled_service": "no", + "gps_code": "SWZO" + }, + { + "id": "38190", + "ident": "SWZP", + "type": "small_airport", + "name": "Fazenda Vale Rico Airport", + "latitude_deg": "-16.3858337402", + "longitude_deg": "-54.20222091669999", + "elevation_ft": "1050", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Guiratinga", + "scheduled_service": "no", + "gps_code": "SWZP" + }, + { + "id": "38191", + "ident": "SWZQ", + "type": "small_airport", + "name": "Fazenda Jussara Airport", + "latitude_deg": "-15.845633", + "longitude_deg": "-51.072487", + "elevation_ft": "1344", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-GO", + "municipality": "Jussara", + "scheduled_service": "no", + "gps_code": "SWZQ" + }, + { + "id": "38192", + "ident": "SWZR", + "type": "small_airport", + "name": "Fazenda Ponto de Apoio Airport", + "latitude_deg": "-20.4665", + "longitude_deg": "-52.688", + "elevation_ft": "1270", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Água Clara", + "scheduled_service": "no", + "gps_code": "SWZR", + "keywords": "SJJN" + }, + { + "id": "38193", + "ident": "SWZS", + "type": "small_airport", + "name": "Fazenda Nova Larga Airport", + "latitude_deg": "-16.670163", + "longitude_deg": "-57.675261", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Cáceres", + "scheduled_service": "no", + "gps_code": "SWZS", + "local_code": "MT0450" + }, + { + "id": "42733", + "ident": "SWZT", + "type": "small_airport", + "name": "Fazenda do Brejo Airport", + "latitude_deg": "-19.254999", + "longitude_deg": "-44.473331", + "elevation_ft": "2451", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MG", + "municipality": "Paraopeba", + "scheduled_service": "no", + "gps_code": "SWZT", + "local_code": "MG0210", + "keywords": "Ageo Agropecuária Ltda" + }, + { + "id": "38194", + "ident": "SWZU", + "type": "closed", + "name": "Fazenda Rodoserv I Airport", + "latitude_deg": "-22.472779", + "longitude_deg": "-52.595833", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Ivinhema", + "scheduled_service": "no", + "keywords": "SWZU" + }, + { + "id": "38195", + "ident": "SWZV", + "type": "small_airport", + "name": "Fazenda Rodoserv III Airport", + "latitude_deg": "-21.868957", + "longitude_deg": "-56.771121", + "elevation_ft": "1001", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MS", + "municipality": "Bela Vista", + "scheduled_service": "no", + "gps_code": "SWZV", + "local_code": "MS0404" + }, + { + "id": "38196", + "ident": "SWZW", + "type": "small_airport", + "name": "Fazenda Santa Fé do Xingu Airport", + "latitude_deg": "-10.321111", + "longitude_deg": "-52.210556", + "elevation_ft": "1036", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "São José do Xingu", + "scheduled_service": "no", + "keywords": "SWZW" + }, + { + "id": "42241", + "ident": "SWZX", + "type": "heliport", + "name": "Opto Heliport", + "latitude_deg": "-22.000833511399996", + "longitude_deg": "-47.9163894653", + "elevation_ft": "2695", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "São Carlos", + "scheduled_service": "no", + "gps_code": "SWZX" + }, + { + "id": "38197", + "ident": "SWZY", + "type": "small_airport", + "name": "Fazenda Sete Estrelas Airport", + "latitude_deg": "-11.576917", + "longitude_deg": "-58.234363", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-MT", + "municipality": "Brasnorte", + "scheduled_service": "no", + "gps_code": "SWZY", + "local_code": "MT0451" + }, + { + "id": "38198", + "ident": "SWZZ", + "type": "heliport", + "name": "Graer Heliport", + "latitude_deg": "-26.263237", + "longitude_deg": "-48.858604", + "elevation_ft": "39", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SC", + "municipality": "Joinville", + "scheduled_service": "no", + "gps_code": "SWZZ", + "local_code": "SC0101" + }, + { + "id": "307449", + "ident": "SXH", + "type": "small_airport", + "name": "Sehulea Airport", + "latitude_deg": "-9.96452777778", + "longitude_deg": "151.161861111", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Sehulea", + "scheduled_service": "no", + "gps_code": "AYSL", + "iata_code": "SXH", + "local_code": "SEH" + }, + { + "id": "24678", + "ident": "SXP", + "type": "small_airport", + "name": "Nunam Iqua Airport", + "latitude_deg": "62.520599", + "longitude_deg": "-164.848006", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nunam Iqua", + "scheduled_service": "yes", + "iata_code": "SXP", + "local_code": "SXP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sheldon_Point_Airport", + "keywords": "Sheldon Point Airport" + }, + { + "id": "24679", + "ident": "SXS", + "type": "heliport", + "name": "Shell Army Heliport", + "latitude_deg": "31.362699508699997", + "longitude_deg": "-85.84940338130001", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker", + "scheduled_service": "no", + "gps_code": "KSXS", + "local_code": "SXS" + }, + { + "id": "35317", + "ident": "SY-0001", + "type": "heliport", + "name": "Taftanaz Airbase", + "latitude_deg": "35.9720993042", + "longitude_deg": "36.7831001282", + "elevation_ft": "1031", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-ID", + "municipality": "Taftanaz", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taftanaz_Military_Airbase", + "keywords": "Afis Air Base" + }, + { + "id": "309975", + "ident": "SY-0002", + "type": "heliport", + "name": "Qabr al-Sitt Heliport", + "latitude_deg": "33.45873", + "longitude_deg": "36.3577", + "elevation_ft": "2148", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-RD", + "municipality": "Beit Sahem", + "scheduled_service": "no" + }, + { + "id": "309976", + "ident": "SY-0003", + "type": "heliport", + "name": "Marj al-Sultan Heliport (North)", + "latitude_deg": "33.50026", + "longitude_deg": "36.4671", + "elevation_ft": "2038", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-RD", + "municipality": "Marj al-Sultan", + "scheduled_service": "no" + }, + { + "id": "309977", + "ident": "SY-0004", + "type": "heliport", + "name": "Marj al-Sultan Heliport (South)", + "latitude_deg": "33.487116", + "longitude_deg": "36.475288", + "elevation_ft": "2037", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-RD", + "municipality": "Marj al-Sultan", + "scheduled_service": "no" + }, + { + "id": "339013", + "ident": "SY-0005", + "type": "heliport", + "name": "Nayrab Military Heliport", + "latitude_deg": "36.1787", + "longitude_deg": "37.22041", + "elevation_ft": "1276", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-HL", + "municipality": "Aleppo", + "scheduled_service": "no" + }, + { + "id": "342023", + "ident": "SY-0006", + "type": "heliport", + "name": "Aleppo Air Defense Base Helipad", + "latitude_deg": "36.2236", + "longitude_deg": "37.0819", + "elevation_ft": "1542", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-HL", + "municipality": "Aleppo", + "scheduled_service": "no" + }, + { + "id": "342027", + "ident": "SY-0007", + "type": "heliport", + "name": "Aleppo Municipal Council Helipad", + "latitude_deg": "36.203", + "longitude_deg": "37.1463", + "elevation_ft": "1572", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-HL", + "municipality": "Aleppo", + "scheduled_service": "no" + }, + { + "id": "349450", + "ident": "SY-0008", + "type": "small_airport", + "name": "Al-Muhaddad Agricultural Airport", + "latitude_deg": "35.838829", + "longitude_deg": "38.284836", + "elevation_ft": "1119", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-RA", + "municipality": "Dibsi 'Afnan", + "scheduled_service": "no" + }, + { + "id": "349453", + "ident": "SY-0009", + "type": "small_airport", + "name": "Green Village Airport", + "latitude_deg": "35.04855", + "longitude_deg": "40.58405", + "elevation_ft": "676", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-DY", + "municipality": "Green Village", + "scheduled_service": "no" + }, + { + "id": "349454", + "ident": "SY-0010", + "type": "small_airport", + "name": "Al-Mayadin Airport", + "latitude_deg": "34.99724", + "longitude_deg": "40.42123", + "elevation_ft": "755", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-DY", + "municipality": "Al-Mayadin", + "scheduled_service": "no" + }, + { + "id": "349455", + "ident": "SY-0011", + "type": "small_airport", + "name": "As-Saliniyah Airport", + "latitude_deg": "34.73309", + "longitude_deg": "40.71139", + "elevation_ft": "747", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-DY", + "municipality": "As-Saliniyah", + "scheduled_service": "no" + }, + { + "id": "349679", + "ident": "SY-0012", + "type": "heliport", + "name": "El Lani Borderpost Helipad", + "latitude_deg": "36.165839", + "longitude_deg": "36.369263", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-ID", + "municipality": "El Lani", + "scheduled_service": "no" + }, + { + "id": "350783", + "ident": "SY-0013", + "type": "small_airport", + "name": "Murshid Sarhan Agricultural Airport", + "latitude_deg": "36.03552", + "longitude_deg": "36.68491", + "elevation_ft": "1079", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-ID", + "municipality": "Ma'arrat Misrin", + "scheduled_service": "no" + }, + { + "id": "355287", + "ident": "SY-0014", + "type": "small_airport", + "name": "Al-Tahaluf Airport", + "latitude_deg": "36.040253", + "longitude_deg": "40.732825", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-HA", + "municipality": "Ash-Shaddadi", + "scheduled_service": "no" + }, + { + "id": "355288", + "ident": "SY-0015", + "type": "heliport", + "name": "Tarek Heliport", + "latitude_deg": "34.434067", + "longitude_deg": "40.913862", + "continent": "AS", + "iso_country": "SY", + "iso_region": "SY-DY", + "municipality": "Al-Bukamal", + "scheduled_service": "no" + }, + { + "id": "346990", + "ident": "SYAG", + "type": "small_airport", + "name": "Anna Regina Airport", + "latitude_deg": "7.256583", + "longitude_deg": "-58.545671", + "elevation_ft": "53", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-PM", + "municipality": "Anna Regina", + "scheduled_service": "no", + "gps_code": "SYAG" + }, + { + "id": "30624", + "ident": "SYAH", + "type": "small_airport", + "name": "Aishalton Airport", + "latitude_deg": "2.473206", + "longitude_deg": "-59.321596", + "elevation_ft": "587", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-UT", + "municipality": "Aishalton", + "scheduled_service": "no", + "gps_code": "SYAH", + "iata_code": "AHL" + }, + { + "id": "347001", + "ident": "SYAL", + "type": "small_airport", + "name": "Albion Airport", + "latitude_deg": "6.24662", + "longitude_deg": "-57.379596", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-EB", + "municipality": "Albion", + "scheduled_service": "no", + "gps_code": "SYAL" + }, + { + "id": "32002", + "ident": "SYAN", + "type": "small_airport", + "name": "Annai Airport", + "latitude_deg": "3.959439992904663", + "longitude_deg": "-59.12419891357422", + "elevation_ft": "301", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-UT", + "municipality": "Annai", + "scheduled_service": "no", + "gps_code": "SYAN", + "iata_code": "NAI" + }, + { + "id": "32410", + "ident": "SYAP", + "type": "small_airport", + "name": "Apoteri Airport", + "latitude_deg": "4.013879776000977", + "longitude_deg": "-58.60499954223633", + "elevation_ft": "301", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-UT", + "municipality": "Apoteri", + "scheduled_service": "no", + "gps_code": "SYAP" + }, + { + "id": "32411", + "ident": "SYAW", + "type": "small_airport", + "name": "Awaruwaunau Airport", + "latitude_deg": "2.647622", + "longitude_deg": "-59.194678", + "elevation_ft": "797", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-UT", + "municipality": "Awaruwaunau", + "scheduled_service": "no", + "gps_code": "SYAW" + }, + { + "id": "308375", + "ident": "SYB", + "type": "seaplane_base", + "name": "Seal Bay Seaplane Base", + "latitude_deg": "58.373291", + "longitude_deg": "-152.201797", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Seal Bay", + "scheduled_service": "no", + "iata_code": "SYB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Seal_Bay_Seaplane_Base" + }, + { + "id": "346991", + "ident": "SYBG", + "type": "small_airport", + "name": "Baganara Airport.", + "latitude_deg": "6.34056", + "longitude_deg": "-58.591526", + "elevation_ft": "14", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-CU", + "municipality": "Banagara Island", + "scheduled_service": "no", + "gps_code": "SYBG" + }, + { + "id": "41511", + "ident": "SYBR", + "type": "small_airport", + "name": "Baramita Airport", + "latitude_deg": "7.370120048522949", + "longitude_deg": "-60.487998962402344", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-BA", + "municipality": "Baramita", + "scheduled_service": "no", + "gps_code": "SYBR", + "iata_code": "BMJ" + }, + { + "id": "41512", + "ident": "SYBT", + "type": "small_airport", + "name": "Bartica A Airport", + "latitude_deg": "6.358864", + "longitude_deg": "-58.655207", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-CU", + "municipality": "Bartica", + "scheduled_service": "no", + "gps_code": "SYBT", + "iata_code": "GFO" + }, + { + "id": "6356", + "ident": "SYCJ", + "type": "medium_airport", + "name": "Cheddi Jagan International Airport", + "latitude_deg": "6.49855", + "longitude_deg": "-58.254101", + "elevation_ft": "95", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-DE", + "municipality": "Georgetown", + "scheduled_service": "yes", + "gps_code": "SYCJ", + "iata_code": "GEO", + "local_code": "SYGT", + "home_link": "http://www.cjairport-gy.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cheddi_Jagan_International_Airport" + }, + { + "id": "334126", + "ident": "SYCP", + "type": "small_airport", + "name": "Cipo Airstrip", + "latitude_deg": "4.81955", + "longitude_deg": "-60.025623", + "elevation_ft": "1924", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-PT", + "scheduled_service": "no", + "gps_code": "SYCP" + }, + { + "id": "313735", + "ident": "SYDW", + "type": "small_airport", + "name": "Dadanawa Airport", + "latitude_deg": "2.82555", + "longitude_deg": "-59.5242", + "elevation_ft": "372", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-UT", + "municipality": "Dadanawa", + "scheduled_service": "no", + "gps_code": "SYDW" + }, + { + "id": "32414", + "ident": "SYEB", + "type": "small_airport", + "name": "Ebini Airport", + "latitude_deg": "5.56855", + "longitude_deg": "-57.77521", + "elevation_ft": "147", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-UD", + "municipality": "Ebini", + "scheduled_service": "no", + "gps_code": "SYEB" + }, + { + "id": "315125", + "ident": "SYF", + "type": "seaplane_base", + "name": "Silva Bay Seaplane Base", + "latitude_deg": "49.15", + "longitude_deg": "-123.696", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Gabriola Island", + "scheduled_service": "no", + "iata_code": "SYF" + }, + { + "id": "41513", + "ident": "SYGO", + "type": "medium_airport", + "name": "Eugene F. Correira International Airport", + "latitude_deg": "6.80628", + "longitude_deg": "-58.1059", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-DE", + "municipality": "Ogle", + "scheduled_service": "yes", + "gps_code": "SYEC", + "iata_code": "OGL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ogle_Airport" + }, + { + "id": "31674", + "ident": "SYIB", + "type": "small_airport", + "name": "Imbaimadai Airport", + "latitude_deg": "5.7081098556518555", + "longitude_deg": "-60.2942008972168", + "elevation_ft": "1646", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-CU", + "municipality": "Imbaimadai", + "scheduled_service": "no", + "gps_code": "SYIB", + "iata_code": "IMB" + }, + { + "id": "346992", + "ident": "SYKI", + "type": "small_airport", + "name": "Kaow Island Airport", + "latitude_deg": "6.433119", + "longitude_deg": "-58.6225", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-CU", + "municipality": "Kaow Island", + "scheduled_service": "no", + "gps_code": "SYKI", + "keywords": "Caou Island" + }, + { + "id": "32416", + "ident": "SYKK", + "type": "small_airport", + "name": "Kurukabaru Airport", + "latitude_deg": "4.7170000076293945", + "longitude_deg": "-59.983001708984375", + "elevation_ft": "3198", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-PT", + "municipality": "Kurukabaru", + "scheduled_service": "no", + "gps_code": "SYKK" + }, + { + "id": "31717", + "ident": "SYKM", + "type": "small_airport", + "name": "Kamarang Airport", + "latitude_deg": "5.865340232849121", + "longitude_deg": "-60.614200592041016", + "elevation_ft": "1601", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-CU", + "municipality": "Kamarang", + "scheduled_service": "no", + "gps_code": "SYKM", + "iata_code": "KAR" + }, + { + "id": "31772", + "ident": "SYKR", + "type": "small_airport", + "name": "Karanambo Airport", + "latitude_deg": "3.7519400119781494", + "longitude_deg": "-59.30970001220703", + "elevation_ft": "300", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-UT", + "municipality": "Karanambo", + "scheduled_service": "no", + "gps_code": "SYKR", + "iata_code": "KRM" + }, + { + "id": "41514", + "ident": "SYKS", + "type": "small_airport", + "name": "Karasabai Airport", + "latitude_deg": "4.033329963684082", + "longitude_deg": "-59.53329849243164", + "elevation_ft": "731", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-UT", + "municipality": "Karasabai", + "scheduled_service": "no", + "gps_code": "SYKS", + "iata_code": "KRG" + }, + { + "id": "31782", + "ident": "SYKT", + "type": "small_airport", + "name": "Kato Airport", + "latitude_deg": "4.649159908294678", + "longitude_deg": "-59.83219909667969", + "elevation_ft": "2299", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-PT", + "municipality": "Kato", + "scheduled_service": "no", + "gps_code": "SYKT", + "iata_code": "KTO" + }, + { + "id": "41515", + "ident": "SYKW", + "type": "small_airport", + "name": "Kwakwani Airport", + "latitude_deg": "5.283329963684082", + "longitude_deg": "-58.04999923706055", + "elevation_ft": "147", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-UD", + "municipality": "Kwakwani", + "scheduled_service": "no", + "gps_code": "SYKW" + }, + { + "id": "313428", + "ident": "SYKZ", + "type": "small_airport", + "name": "Konawaruk Airport", + "latitude_deg": "5.2684", + "longitude_deg": "-58.995", + "elevation_ft": "230", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-PT", + "municipality": "Konawaruk", + "scheduled_service": "no", + "gps_code": "SYKZ", + "iata_code": "KKG" + }, + { + "id": "24680", + "ident": "SYL", + "type": "heliport", + "name": "Roberts Army Heliport", + "latitude_deg": "35.814998626699996", + "longitude_deg": "-120.744003296", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Camp Roberts/San Miguel", + "scheduled_service": "no", + "gps_code": "KSYL", + "iata_code": "SYL", + "local_code": "SYL" + }, + { + "id": "6357", + "ident": "SYLD", + "type": "small_airport", + "name": "Linden Airport", + "latitude_deg": "5.96592", + "longitude_deg": "-58.270302", + "elevation_ft": "180", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-UD", + "municipality": "Linden", + "scheduled_service": "no", + "gps_code": "SYLD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Linden_Airport_(Guyana)" + }, + { + "id": "41516", + "ident": "SYLP", + "type": "small_airport", + "name": "Lumid Pau Airport", + "latitude_deg": "2.3939299583399998", + "longitude_deg": "-59.4410018921", + "elevation_ft": "656", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-UT", + "municipality": "Lumid Pau", + "scheduled_service": "no", + "gps_code": "SYLP", + "iata_code": "LUB", + "wikipedia_link": "http://pl.wikipedia.org/wiki/Port_lotniczy_Lumid_Pau" + }, + { + "id": "6358", + "ident": "SYLT", + "type": "medium_airport", + "name": "Lethem Airport", + "latitude_deg": "3.37276", + "longitude_deg": "-59.789398", + "elevation_ft": "351", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-UT", + "municipality": "Lethem", + "scheduled_service": "yes", + "gps_code": "SYLT", + "iata_code": "LTM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lethem_Airport" + }, + { + "id": "41517", + "ident": "SYMB", + "type": "small_airport", + "name": "Mabaruma Airport", + "latitude_deg": "8.20017", + "longitude_deg": "-59.777965", + "elevation_ft": "45", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-BA", + "municipality": "Mabaruma", + "scheduled_service": "no", + "gps_code": "SYMB", + "iata_code": "USI" + }, + { + "id": "31904", + "ident": "SYMD", + "type": "small_airport", + "name": "Mahdia Airport", + "latitude_deg": "5.277490139007568", + "longitude_deg": "-59.151100158691406", + "elevation_ft": "300", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-PT", + "municipality": "Mahdia", + "scheduled_service": "no", + "gps_code": "SYMD", + "iata_code": "MHA" + }, + { + "id": "332260", + "ident": "SYMK", + "type": "small_airport", + "name": "Maikwak Airport", + "latitude_deg": "4.898172", + "longitude_deg": "-59.817027", + "elevation_ft": "2001", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-PT", + "municipality": "Maikwak", + "scheduled_service": "no", + "gps_code": "SYMK", + "iata_code": "VEG" + }, + { + "id": "41518", + "ident": "SYMM", + "type": "small_airport", + "name": "Monkey Mountain Airport", + "latitude_deg": "4.483329772949219", + "longitude_deg": "-59.68330001831055", + "elevation_ft": "1456", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-PT", + "municipality": "Monkey Mountain", + "scheduled_service": "no", + "gps_code": "SYMM", + "iata_code": "MYM" + }, + { + "id": "32418", + "ident": "SYMN", + "type": "small_airport", + "name": "Manari Airport", + "latitude_deg": "3.433000087738037", + "longitude_deg": "-59.56700134277344", + "elevation_ft": "300", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-UT", + "municipality": "Manari", + "scheduled_service": "no", + "gps_code": "SYMN" + }, + { + "id": "32419", + "ident": "SYMP", + "type": "small_airport", + "name": "Mountain Point Airport", + "latitude_deg": "2.998971", + "longitude_deg": "-59.629261", + "elevation_ft": "400", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-UT", + "municipality": "Mountain Point", + "scheduled_service": "no", + "gps_code": "SYMP" + }, + { + "id": "41519", + "ident": "SYMR", + "type": "small_airport", + "name": "Matthews Ridge Airport", + "latitude_deg": "7.487736", + "longitude_deg": "-60.185237", + "elevation_ft": "324", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-BA", + "municipality": "Matthews Ridge", + "scheduled_service": "no", + "gps_code": "SYMR", + "iata_code": "MWJ" + }, + { + "id": "41520", + "ident": "SYMW", + "type": "small_airport", + "name": "Marurawana Airport", + "latitude_deg": "2.728699", + "longitude_deg": "-59.149733", + "elevation_ft": "1017", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-UT", + "municipality": "Marurawana", + "scheduled_service": "no", + "gps_code": "SYMW" + }, + { + "id": "24681", + "ident": "SYN", + "type": "small_airport", + "name": "Stanton Airfield", + "latitude_deg": "44.475579", + "longitude_deg": "-93.016756", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Dennison", + "scheduled_service": "no", + "gps_code": "KSYN", + "iata_code": "SYN", + "local_code": "SYN" + }, + { + "id": "41521", + "ident": "SYNA", + "type": "small_airport", + "name": "New Amsterdam Airport", + "latitude_deg": "6.244324", + "longitude_deg": "-57.474172", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-EB", + "municipality": "New Amsterdam", + "scheduled_service": "no", + "gps_code": "SYNA", + "iata_code": "QSX" + }, + { + "id": "32128", + "ident": "SYOR", + "type": "small_airport", + "name": "Orinduik Airport", + "latitude_deg": "4.72527", + "longitude_deg": "-60.035", + "elevation_ft": "1797", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-PT", + "municipality": "Orinduik", + "scheduled_service": "no", + "gps_code": "SYOR", + "iata_code": "ORJ" + }, + { + "id": "342236", + "ident": "SYPK", + "type": "small_airport", + "name": "Port Kaituma Airport", + "latitude_deg": "7.7424", + "longitude_deg": "-59.8819", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-BA", + "municipality": "Port Kaituma", + "scheduled_service": "no", + "gps_code": "SYPK" + }, + { + "id": "313988", + "ident": "SYPM", + "type": "small_airport", + "name": "Paramakatoi Airport", + "latitude_deg": "4.6975", + "longitude_deg": "-59.7125", + "elevation_ft": "2600", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-PT", + "municipality": "Paramakatoi", + "scheduled_service": "no", + "gps_code": "SYPM", + "iata_code": "PMT" + }, + { + "id": "41522", + "ident": "SYPR", + "type": "small_airport", + "name": "Paruima Airport", + "latitude_deg": "5.81724", + "longitude_deg": "-61.055489", + "elevation_ft": "1765", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-CU", + "municipality": "Paruima", + "scheduled_service": "no", + "gps_code": "SYPR", + "iata_code": "PRR" + }, + { + "id": "314567", + "ident": "SYSC", + "type": "small_airport", + "name": "Sand Creek Airport", + "latitude_deg": "2.9913", + "longitude_deg": "-59.51", + "elevation_ft": "360", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-UT", + "municipality": "Sand Creek", + "scheduled_service": "no", + "gps_code": "SYSC", + "iata_code": "SDC" + }, + { + "id": "309467", + "ident": "SYSK", + "type": "small_airport", + "name": "Skeldon Airport", + "latitude_deg": "5.8599", + "longitude_deg": "-57.14894", + "elevation_ft": "13", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-EB", + "municipality": "Skeldon", + "scheduled_service": "no", + "gps_code": "SYSK", + "iata_code": "SKM" + }, + { + "id": "348625", + "ident": "SYVB", + "type": "small_airport", + "name": "Von Better Airport", + "latitude_deg": "6.257711", + "longitude_deg": "-57.650478", + "elevation_ft": "8", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-MA", + "scheduled_service": "no", + "gps_code": "SYVB" + }, + { + "id": "41523", + "ident": "SYWI", + "type": "small_airport", + "name": "Wichabai Airport", + "latitude_deg": "2.867792", + "longitude_deg": "-59.531156", + "elevation_ft": "518", + "continent": "SA", + "iso_country": "GY", + "iso_region": "GY-UT", + "municipality": "Wichabai", + "scheduled_service": "no", + "gps_code": "SYWI" + }, + { + "id": "24682", + "ident": "SZN", + "type": "small_airport", + "name": "Santa Cruz Island Airport", + "latitude_deg": "34.06007", + "longitude_deg": "-119.915229", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Cruz Island", + "scheduled_service": "no", + "gps_code": "KSZN", + "iata_code": "SZN", + "local_code": "SZN" + }, + { + "id": "24683", + "ident": "SZP", + "type": "small_airport", + "name": "Santa Paula Airport", + "latitude_deg": "34.34719849", + "longitude_deg": "-119.060997", + "elevation_ft": "243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Paula", + "scheduled_service": "no", + "gps_code": "KSZP", + "iata_code": "SZP", + "local_code": "SZP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Santa_Paula_Airport" + }, + { + "id": "24684", + "ident": "T13", + "type": "small_airport", + "name": "Dallas South Port Airport", + "latitude_deg": "32.48238", + "longitude_deg": "-96.68597", + "elevation_ft": "474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Palmer", + "scheduled_service": "no", + "gps_code": "KT13", + "local_code": "T13" + }, + { + "id": "24685", + "ident": "T14", + "type": "small_airport", + "name": "Taylor Airport", + "latitude_deg": "32.95220184326172", + "longitude_deg": "-96.0958023071289", + "elevation_ft": "473", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Quinlan", + "scheduled_service": "no", + "gps_code": "T14", + "local_code": "T14" + }, + { + "id": "24686", + "ident": "T22", + "type": "heliport", + "name": "Charles L Kelly Army Heliport", + "latitude_deg": "29.466899871826172", + "longitude_deg": "-98.41699981689453", + "elevation_ft": "666", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Sam Houston", + "scheduled_service": "no", + "gps_code": "T22", + "local_code": "T22" + }, + { + "id": "24687", + "ident": "T25", + "type": "small_airport", + "name": "Aero Estates Airport", + "latitude_deg": "32.081775", + "longitude_deg": "-95.452163", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Frankston", + "scheduled_service": "no", + "local_code": "T25", + "keywords": "Formerly TX27" + }, + { + "id": "24688", + "ident": "T26", + "type": "small_airport", + "name": "Flying V Ranch Airport", + "latitude_deg": "29.108299255371094", + "longitude_deg": "-96.3988037109375", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Louise", + "scheduled_service": "no", + "gps_code": "T26", + "local_code": "T26" + }, + { + "id": "45820", + "ident": "T29", + "type": "small_airport", + "name": "Flying H Ranch Airport", + "latitude_deg": "33.632267", + "longitude_deg": "-96.9408", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Whitesboro", + "scheduled_service": "no", + "gps_code": "T29", + "local_code": "T29" + }, + { + "id": "24690", + "ident": "T32", + "type": "small_airport", + "name": "Sudden Stop Airport", + "latitude_deg": "33.572616", + "longitude_deg": "-96.905079", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Collinsville", + "scheduled_service": "no", + "local_code": "T32", + "keywords": "35TS" + }, + { + "id": "24691", + "ident": "T33", + "type": "small_airport", + "name": "Poetry Landing Airport", + "latitude_deg": "32.857101", + "longitude_deg": "-96.308296", + "elevation_ft": "555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Royse City", + "scheduled_service": "no", + "gps_code": "33XA", + "local_code": "33XA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rives_Air_Park", + "keywords": "T33, Rives Air Park" + }, + { + "id": "24692", + "ident": "T40", + "type": "closed", + "name": "McGehee Catfish Restaurant Airport", + "latitude_deg": "33.898638", + "longitude_deg": "-97.170782", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Marietta", + "scheduled_service": "no", + "keywords": "T40" + }, + { + "id": "24693", + "ident": "T44", + "type": "seaplane_base", + "name": "Trident Basin Seaplane Base", + "latitude_deg": "57.780799865722656", + "longitude_deg": "-152.39100646972656", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kodiak", + "scheduled_service": "no", + "gps_code": "T44", + "local_code": "T44" + }, + { + "id": "24694", + "ident": "T48", + "type": "small_airport", + "name": "Poetry Flying Ranch Airport", + "latitude_deg": "32.868099", + "longitude_deg": "-96.219101", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rockwall", + "scheduled_service": "no", + "local_code": "T48", + "wikipedia_link": "https://en.wikipedia.org/wiki/Phillips_Flying_Ranch_Airport", + "keywords": "20TX, Phillips Flying Ranch" + }, + { + "id": "24695", + "ident": "T57", + "type": "heliport", + "name": "Garland/Dfw Heloplex Heliport", + "latitude_deg": "32.88759994506836", + "longitude_deg": "-96.68360137939453", + "elevation_ft": "601", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garland", + "scheduled_service": "no", + "gps_code": "T57", + "local_code": "T57" + }, + { + "id": "24696", + "ident": "T58", + "type": "small_airport", + "name": "Ironhead Airport", + "latitude_deg": "33.3317985534668", + "longitude_deg": "-97.23030090332031", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanger", + "scheduled_service": "no", + "gps_code": "T58", + "local_code": "T58", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ironhead_Airport" + }, + { + "id": "24697", + "ident": "T66", + "type": "seaplane_base", + "name": "Visnaw Lake Seaplane Base", + "latitude_deg": "61.6189994812", + "longitude_deg": "-149.679000854", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "T66", + "local_code": "T66" + }, + { + "id": "24698", + "ident": "T71", + "type": "small_airport", + "name": "Cuero Municipal Airport", + "latitude_deg": "29.083599090576172", + "longitude_deg": "-97.26689910888672", + "elevation_ft": "214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cuero", + "scheduled_service": "no", + "gps_code": "T71", + "local_code": "T71" + }, + { + "id": "24699", + "ident": "T73", + "type": "small_airport", + "name": "Kirk Air Base", + "latitude_deg": "34.67430114746094", + "longitude_deg": "-80.68229675292969", + "elevation_ft": "578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "T73", + "local_code": "T73" + }, + { + "id": "24700", + "ident": "T76", + "type": "small_airport", + "name": "Rhome Meadows Airport", + "latitude_deg": "33.14929962158203", + "longitude_deg": "-97.49610137939453", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rhome", + "scheduled_service": "no", + "gps_code": "T76", + "local_code": "T76" + }, + { + "id": "24701", + "ident": "T79", + "type": "small_airport", + "name": "Skyway Manor Airport", + "latitude_deg": "29.555562", + "longitude_deg": "-95.327087", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pearland", + "scheduled_service": "no", + "local_code": "T79" + }, + { + "id": "24702", + "ident": "T80", + "type": "small_airport", + "name": "Bishop's Landing Airport", + "latitude_deg": "33.37730026245117", + "longitude_deg": "-96.72889709472656", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Celina", + "scheduled_service": "no", + "gps_code": "T80", + "local_code": "T80" + }, + { + "id": "24703", + "ident": "T84", + "type": "closed", + "name": "Fehmel Dusting Service Airport", + "latitude_deg": "28.952499", + "longitude_deg": "-95.973602", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bay City", + "scheduled_service": "no", + "local_code": "T84", + "keywords": "T84" + }, + { + "id": "24704", + "ident": "T87", + "type": "small_airport", + "name": "Flying C Airport", + "latitude_deg": "33.342201232910156", + "longitude_deg": "-97.2699966430664", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanger", + "scheduled_service": "no", + "gps_code": "T87", + "local_code": "T87", + "wikipedia_link": "https://en.wikipedia.org/wiki/Flying_C_Airport" + }, + { + "id": "24705", + "ident": "T91", + "type": "closed", + "name": "The Carter Memorial Airport", + "latitude_deg": "29.728663", + "longitude_deg": "-97.66099", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Luling", + "scheduled_service": "no", + "gps_code": "KT91", + "local_code": "T91", + "keywords": "luling, carter memorial" + }, + { + "id": "24706", + "ident": "T94", + "type": "small_airport", + "name": "Twin-Oaks Airport", + "latitude_deg": "29.57299995", + "longitude_deg": "-98.46309662", + "elevation_ft": "873", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "T94", + "local_code": "T94" + }, + { + "id": "24707", + "ident": "T95", + "type": "heliport", + "name": "Bay Electric Supply Heliport", + "latitude_deg": "29.488300323486328", + "longitude_deg": "-95.1073989868164", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "League City", + "scheduled_service": "no", + "gps_code": "T95", + "local_code": "T95" + }, + { + "id": "24708", + "ident": "TA00", + "type": "small_airport", + "name": "Rafter P Airport", + "latitude_deg": "32.38420104980469", + "longitude_deg": "-100.27899932861328", + "elevation_ft": "2190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sweetwater", + "scheduled_service": "no", + "gps_code": "TA00", + "local_code": "TA00" + }, + { + "id": "24709", + "ident": "TA01", + "type": "small_airport", + "name": "Phillips Farm Airport", + "latitude_deg": "32.341800689697266", + "longitude_deg": "-97.25029754638672", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alvarado", + "scheduled_service": "no", + "gps_code": "TA01", + "local_code": "TA01" + }, + { + "id": "24710", + "ident": "TA02", + "type": "small_airport", + "name": "Howard Field", + "latitude_deg": "33.102901458699996", + "longitude_deg": "-97.4642028809", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rhome", + "scheduled_service": "no", + "gps_code": "TA02", + "local_code": "TA02" + }, + { + "id": "24711", + "ident": "TA03", + "type": "closed", + "name": "Jo Na Acres Airport", + "latitude_deg": "29.7586", + "longitude_deg": "-95.9086", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brookshire", + "scheduled_service": "no", + "keywords": "TA03" + }, + { + "id": "24712", + "ident": "TA04", + "type": "closed", + "name": "Sheriff Department Heliport", + "latitude_deg": "31.548201", + "longitude_deg": "-97.078903", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no", + "gps_code": "TA04", + "local_code": "TA04" + }, + { + "id": "24713", + "ident": "TA05", + "type": "small_airport", + "name": "Anxiety Aerodrome", + "latitude_deg": "32.03770065307617", + "longitude_deg": "-96.53170013427734", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corsicana", + "scheduled_service": "no", + "gps_code": "TA05", + "local_code": "TA05" + }, + { + "id": "24714", + "ident": "TA06", + "type": "small_airport", + "name": "Morris Manor Airport", + "latitude_deg": "33.16120147705078", + "longitude_deg": "-95.80580139160156", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cumby", + "scheduled_service": "no", + "gps_code": "TA06", + "local_code": "TA06" + }, + { + "id": "24715", + "ident": "TA07", + "type": "small_airport", + "name": "Jet Ag Inc Airport", + "latitude_deg": "30.0072002411", + "longitude_deg": "-94.9669036865", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dayton", + "scheduled_service": "no", + "gps_code": "TA07", + "local_code": "TA07" + }, + { + "id": "24716", + "ident": "TA08", + "type": "small_airport", + "name": "Flying M Airport", + "latitude_deg": "33.149600982666016", + "longitude_deg": "-96.2739028930664", + "elevation_ft": "585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Floyd", + "scheduled_service": "no", + "gps_code": "TA08", + "local_code": "TA08" + }, + { + "id": "24717", + "ident": "TA09", + "type": "closed", + "name": "Naval Station Ingleside Heliport", + "latitude_deg": "27.834525", + "longitude_deg": "-97.204533", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ingleside", + "scheduled_service": "no", + "gps_code": "TA09", + "local_code": "TA09" + }, + { + "id": "24718", + "ident": "TA10", + "type": "closed", + "name": "Flying W Heliport", + "latitude_deg": "32.521801", + "longitude_deg": "-97.134697", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mansfield", + "scheduled_service": "no", + "keywords": "TA10" + }, + { + "id": "24719", + "ident": "TA11", + "type": "small_airport", + "name": "Tsa Gliderport", + "latitude_deg": "32.382499", + "longitude_deg": "-97.011852", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Midlothian", + "scheduled_service": "no", + "gps_code": "TA11", + "local_code": "TA11" + }, + { + "id": "24720", + "ident": "TA12", + "type": "closed", + "name": "Petroleum Helicopters Inc Heliport", + "latitude_deg": "29.701099", + "longitude_deg": "-93.944099", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sabine Pass", + "scheduled_service": "no", + "keywords": "TA12" + }, + { + "id": "24721", + "ident": "TA13", + "type": "small_airport", + "name": "Nebtex Land Company Airport", + "latitude_deg": "36.208131", + "longitude_deg": "-102.872672", + "elevation_ft": "4373", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Texline", + "scheduled_service": "no", + "gps_code": "TA13", + "local_code": "TA13" + }, + { + "id": "24722", + "ident": "TA14", + "type": "heliport", + "name": "LYB Heliport", + "latitude_deg": "29.83573", + "longitude_deg": "-95.10889", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Channelview", + "scheduled_service": "no", + "gps_code": "TA14", + "local_code": "TA14", + "keywords": "LPC Heliport" + }, + { + "id": "24723", + "ident": "TA15", + "type": "heliport", + "name": "Columbus Community Hospital Heliport", + "latitude_deg": "29.695243", + "longitude_deg": "-96.543805", + "elevation_ft": "196", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "TA15", + "local_code": "TA15" + }, + { + "id": "24724", + "ident": "TA16", + "type": "small_airport", + "name": "Travis Field Airport", + "latitude_deg": "33.447161", + "longitude_deg": "-100.859014", + "elevation_ft": "2317", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Spur", + "scheduled_service": "no", + "gps_code": "TA16", + "local_code": "TA16" + }, + { + "id": "24725", + "ident": "TA17", + "type": "small_airport", + "name": "Live Oak Ranch Airport", + "latitude_deg": "30.18599", + "longitude_deg": "-96.44465", + "elevation_ft": "387", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brenham", + "scheduled_service": "no", + "gps_code": "TA17", + "local_code": "TA17" + }, + { + "id": "24726", + "ident": "TA18", + "type": "small_airport", + "name": "Sunset Airport", + "latitude_deg": "32.70709991455078", + "longitude_deg": "-96.47940063476562", + "elevation_ft": "444", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Forney", + "scheduled_service": "no", + "gps_code": "TA18", + "local_code": "TA18" + }, + { + "id": "24727", + "ident": "TA19", + "type": "small_airport", + "name": "Post Oak Airfield", + "latitude_deg": "32.674598693847656", + "longitude_deg": "-97.78359985351562", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no", + "gps_code": "TA19", + "local_code": "TA19" + }, + { + "id": "24728", + "ident": "TA20", + "type": "heliport", + "name": "Houston Methodist Baytown Hospital Heliport", + "latitude_deg": "29.76923", + "longitude_deg": "-94.978341", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Baytown", + "scheduled_service": "no", + "gps_code": "44TT", + "local_code": "44TT", + "home_link": "https://www.houstonmethodist.org/locations/baytown/", + "keywords": "TA20, San Jacinto Methodist" + }, + { + "id": "24729", + "ident": "TA21", + "type": "closed", + "name": "Windmill Hill Airport", + "latitude_deg": "33.0182", + "longitude_deg": "-97.119202", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lewisville", + "scheduled_service": "no", + "gps_code": "TA21", + "local_code": "TA21" + }, + { + "id": "24730", + "ident": "TA22", + "type": "closed", + "name": "Reward Ranch Airport", + "latitude_deg": "33.7673", + "longitude_deg": "-96.121597", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bonham", + "scheduled_service": "no", + "keywords": "TA22" + }, + { + "id": "24731", + "ident": "TA23", + "type": "small_airport", + "name": "Morris Lazy K Ranch Airport", + "latitude_deg": "31.26129913330078", + "longitude_deg": "-96.21640014648438", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marquez", + "scheduled_service": "no", + "gps_code": "TA23", + "local_code": "TA23" + }, + { + "id": "24732", + "ident": "TA24", + "type": "small_airport", + "name": "Smoky Bend Ranch Airport", + "latitude_deg": "31.472514", + "longitude_deg": "-98.702014", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mullin", + "scheduled_service": "no", + "gps_code": "TA24", + "local_code": "TA24" + }, + { + "id": "24733", + "ident": "TA25", + "type": "small_airport", + "name": "Cook Canyon Ranch Airport", + "latitude_deg": "32.431734", + "longitude_deg": "-98.594762", + "elevation_ft": "1476", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ranger", + "scheduled_service": "no", + "gps_code": "TA25", + "local_code": "TA25" + }, + { + "id": "24734", + "ident": "TA26", + "type": "small_airport", + "name": "Coyote Crossing Airport", + "latitude_deg": "32.2963981628418", + "longitude_deg": "-97.05680084228516", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Maypearl", + "scheduled_service": "no", + "gps_code": "TA26", + "local_code": "TA26" + }, + { + "id": "24735", + "ident": "TA27", + "type": "closed", + "name": "Flying 'K' Airport", + "latitude_deg": "30.837983", + "longitude_deg": "-97.950346", + "elevation_ft": "1132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Briggs", + "scheduled_service": "no", + "keywords": "TA27" + }, + { + "id": "24736", + "ident": "TA28", + "type": "small_airport", + "name": "Woods Nr 2 Airport", + "latitude_deg": "29.79360008239746", + "longitude_deg": "-95.92520141601562", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brookshire", + "scheduled_service": "no", + "gps_code": "TA28", + "local_code": "TA28" + }, + { + "id": "24737", + "ident": "TA29", + "type": "closed", + "name": "Flying D Ranch Airport", + "latitude_deg": "29.9258", + "longitude_deg": "-100.839996", + "elevation_ft": "1630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no", + "keywords": "TA29" + }, + { + "id": "24738", + "ident": "TA30", + "type": "small_airport", + "name": "Old Forker Ultralightport", + "latitude_deg": "29.31879997253418", + "longitude_deg": "-95.08580017089844", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sante Fe", + "scheduled_service": "no", + "gps_code": "TA30", + "local_code": "TA30" + }, + { + "id": "24739", + "ident": "TA31", + "type": "small_airport", + "name": "Tularosa Airport", + "latitude_deg": "29.430500030517578", + "longitude_deg": "-100.25800323486328", + "elevation_ft": "1397", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no", + "gps_code": "TA31", + "local_code": "TA31" + }, + { + "id": "24740", + "ident": "TA32", + "type": "closed", + "name": "Upham Heliport", + "latitude_deg": "32.800301", + "longitude_deg": "-98.066704", + "elevation_ft": "873", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineral Wells", + "scheduled_service": "no", + "gps_code": "TA32", + "local_code": "TA32" + }, + { + "id": "24741", + "ident": "TA33", + "type": "small_airport", + "name": "Meyer Field", + "latitude_deg": "29.357999801635742", + "longitude_deg": "-95.63520050048828", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rosharon", + "scheduled_service": "no", + "gps_code": "TA33", + "local_code": "TA33" + }, + { + "id": "24742", + "ident": "TA34", + "type": "small_airport", + "name": "Flying G Airport", + "latitude_deg": "28.767302", + "longitude_deg": "-100.081329", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crystal City", + "scheduled_service": "no", + "gps_code": "TA34", + "local_code": "TA34" + }, + { + "id": "24743", + "ident": "TA35", + "type": "closed", + "name": "Faust Farm Airport", + "latitude_deg": "30.272699", + "longitude_deg": "-96.355003", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brenham", + "scheduled_service": "no", + "keywords": "TA35" + }, + { + "id": "24744", + "ident": "TA36", + "type": "closed", + "name": "Lempa Airport", + "latitude_deg": "29.005494", + "longitude_deg": "-97.31741", + "elevation_ft": "247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cuero", + "scheduled_service": "no", + "keywords": "TA36" + }, + { + "id": "322412", + "ident": "TA37", + "type": "small_airport", + "name": "Vaca Moo Airport", + "latitude_deg": "32.428021", + "longitude_deg": "-95.71258", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ben Wheeler", + "scheduled_service": "no", + "local_code": "TA37", + "keywords": "PNR" + }, + { + "id": "24746", + "ident": "TA38", + "type": "heliport", + "name": "Hendrick Medical Center Heliport", + "latitude_deg": "32.470605", + "longitude_deg": "-99.734428", + "elevation_ft": "1704", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Abilene", + "scheduled_service": "no", + "gps_code": "TA38", + "local_code": "TA38" + }, + { + "id": "24747", + "ident": "TA39", + "type": "heliport", + "name": "Eagle Lake Community Hospital Heliport", + "latitude_deg": "29.58690071105957", + "longitude_deg": "-96.34549713134766", + "elevation_ft": "174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eagle Lake", + "scheduled_service": "no", + "gps_code": "TA39", + "local_code": "TA39" + }, + { + "id": "24748", + "ident": "TA40", + "type": "heliport", + "name": "Dallas City Hall Heliport", + "latitude_deg": "32.77510070800781", + "longitude_deg": "-96.79669952392578", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "TA40", + "local_code": "TA40" + }, + { + "id": "24749", + "ident": "TA41", + "type": "heliport", + "name": "University Medical Center of El Paso Heliport", + "latitude_deg": "31.771626", + "longitude_deg": "-106.435463", + "elevation_ft": "3701", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Paso", + "scheduled_service": "no", + "gps_code": "TA41", + "local_code": "TA41", + "keywords": "Thomason General Hospital Heliport" + }, + { + "id": "24750", + "ident": "TA42", + "type": "closed", + "name": "Fly-N-Fish Lodge Airport", + "latitude_deg": "32.712898", + "longitude_deg": "-94.124901", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Uncertain", + "scheduled_service": "no", + "keywords": "TA42" + }, + { + "id": "24751", + "ident": "TA43", + "type": "small_airport", + "name": "Anderosa Airpark", + "latitude_deg": "31.047500610351562", + "longitude_deg": "-94.85440063476562", + "elevation_ft": "205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corrigan", + "scheduled_service": "no", + "gps_code": "TA43", + "local_code": "TA43" + }, + { + "id": "24752", + "ident": "TA44", + "type": "small_airport", + "name": "Puesta del Sol Airport", + "latitude_deg": "27.076169", + "longitude_deg": "-98.601476", + "elevation_ft": "448", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hebbronville", + "scheduled_service": "no", + "gps_code": "TA44", + "local_code": "TA44", + "keywords": "Kaffie Ranch" + }, + { + "id": "24753", + "ident": "TA45", + "type": "heliport", + "name": "Eckels Heliport", + "latitude_deg": "29.831323", + "longitude_deg": "-95.654937", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "TA45", + "local_code": "TA45" + }, + { + "id": "24754", + "ident": "TA46", + "type": "small_airport", + "name": "Baum Airport", + "latitude_deg": "32.562599182128906", + "longitude_deg": "-96.4011001586914", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kaufman", + "scheduled_service": "no", + "gps_code": "TA46", + "local_code": "TA46" + }, + { + "id": "24755", + "ident": "TA47", + "type": "small_airport", + "name": "Richards Airport", + "latitude_deg": "33.30139923095703", + "longitude_deg": "-97.24500274658203", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Krum", + "scheduled_service": "no", + "gps_code": "TA47", + "local_code": "TA47" + }, + { + "id": "24756", + "ident": "TA48", + "type": "heliport", + "name": "Hawk Nest Heliport", + "latitude_deg": "33.12739944458008", + "longitude_deg": "-97.15390014648438", + "elevation_ft": "657", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Argyle", + "scheduled_service": "no", + "gps_code": "TA48", + "local_code": "TA48" + }, + { + "id": "24757", + "ident": "TA49", + "type": "small_airport", + "name": "Keno Field", + "latitude_deg": "30.75510025024414", + "longitude_deg": "-97.79989624023438", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Andice", + "scheduled_service": "no", + "gps_code": "TA49", + "local_code": "TA49" + }, + { + "id": "24758", + "ident": "TA50", + "type": "small_airport", + "name": "Cielo Dorado Estates Airport", + "latitude_deg": "31.909819", + "longitude_deg": "-106.641657", + "elevation_ft": "3750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Anthony", + "scheduled_service": "no", + "gps_code": "NM05", + "local_code": "NM05", + "home_link": "http://www.cielodoradoestates.com/", + "keywords": "TA50, Sunland Park, anthony, cielo dorado" + }, + { + "id": "24759", + "ident": "TA51", + "type": "small_airport", + "name": "Eagle Airport", + "latitude_deg": "32.680274", + "longitude_deg": "-97.934725", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no", + "gps_code": "TA51", + "local_code": "TA51" + }, + { + "id": "24760", + "ident": "TA52", + "type": "small_airport", + "name": "Flying Bull Ranch Airport", + "latitude_deg": "29.805353", + "longitude_deg": "-100.011292", + "elevation_ft": "1614", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Barksdale", + "scheduled_service": "no", + "gps_code": "TA52", + "local_code": "TA52" + }, + { + "id": "24761", + "ident": "TA53", + "type": "small_airport", + "name": "Rocky Top Ranch Airport", + "latitude_deg": "30.130486", + "longitude_deg": "-98.409262", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Blanco", + "scheduled_service": "no", + "gps_code": "TA53", + "local_code": "TA53", + "keywords": "blanco, rocky top ranch" + }, + { + "id": "24762", + "ident": "TA54", + "type": "closed", + "name": "Clear Fork Ranch Heliport", + "latitude_deg": "32.733299", + "longitude_deg": "-97.646698", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no", + "keywords": "TA54" + }, + { + "id": "24763", + "ident": "TA55", + "type": "closed", + "name": "Del Valle Airport", + "latitude_deg": "30.16426", + "longitude_deg": "-97.596672", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Valle", + "scheduled_service": "no", + "gps_code": "TA55", + "local_code": "TA55" + }, + { + "id": "24764", + "ident": "TA56", + "type": "closed", + "name": "Blue Mountain Airport", + "latitude_deg": "30.5473", + "longitude_deg": "-104.0649", + "elevation_ft": "5502", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Davis", + "scheduled_service": "no", + "keywords": "TA56" + }, + { + "id": "24765", + "ident": "TA57", + "type": "small_airport", + "name": "Texas Valley Air Field", + "latitude_deg": "31.6238002777", + "longitude_deg": "-96.99250030520001", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no", + "gps_code": "TA57", + "local_code": "TA57" + }, + { + "id": "24766", + "ident": "TA58", + "type": "small_airport", + "name": "Rancho Encantado Airport", + "latitude_deg": "28.3214", + "longitude_deg": "-99.449997", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cotulla", + "scheduled_service": "no", + "gps_code": "TA58", + "local_code": "TA58" + }, + { + "id": "24767", + "ident": "TA59", + "type": "small_airport", + "name": "Flamingo Airfield", + "latitude_deg": "33.099300384521484", + "longitude_deg": "-98.28949737548828", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jacksboro", + "scheduled_service": "no", + "gps_code": "TA59", + "local_code": "TA59" + }, + { + "id": "24768", + "ident": "TA60", + "type": "small_airport", + "name": "Hurn Airport", + "latitude_deg": "32.3942985534668", + "longitude_deg": "-96.77940368652344", + "elevation_ft": "555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waxahachie", + "scheduled_service": "no", + "gps_code": "TA60", + "local_code": "TA60" + }, + { + "id": "24769", + "ident": "TA61", + "type": "small_airport", + "name": "Kay Ranch Airport", + "latitude_deg": "32.4734992980957", + "longitude_deg": "-95.16580200195312", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Winona", + "scheduled_service": "no", + "gps_code": "TA61", + "local_code": "TA61" + }, + { + "id": "24770", + "ident": "TA62", + "type": "closed", + "name": "Emergency-1 Houston Center Heliport", + "latitude_deg": "29.756599", + "longitude_deg": "-95.362397", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "keywords": "TA62" + }, + { + "id": "24771", + "ident": "TA63", + "type": "small_airport", + "name": "Flattop Ridge Airport", + "latitude_deg": "30.824081", + "longitude_deg": "-98.116485", + "elevation_ft": "1340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Burnet", + "scheduled_service": "no", + "gps_code": "TA63", + "local_code": "TA63" + }, + { + "id": "45837", + "ident": "TA64", + "type": "small_airport", + "name": "Persimmon Gap Ranch Airport", + "latitude_deg": "29.700917", + "longitude_deg": "-103.15", + "elevation_ft": "2680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no", + "gps_code": "TA64", + "local_code": "TA64" + }, + { + "id": "24772", + "ident": "TA65", + "type": "small_airport", + "name": "Sportsman's World Airport", + "latitude_deg": "32.8212013245", + "longitude_deg": "-98.47869873050001", + "elevation_ft": "1142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Palo Pinto", + "scheduled_service": "no", + "gps_code": "TA65", + "local_code": "TA65" + }, + { + "id": "24773", + "ident": "TA66", + "type": "small_airport", + "name": "Freedom Springs Ranch Airport", + "latitude_deg": "29.715421", + "longitude_deg": "-98.858834", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pipe Creek", + "scheduled_service": "no", + "gps_code": "TA66", + "local_code": "TA66" + }, + { + "id": "24774", + "ident": "TA67", + "type": "small_airport", + "name": "Biggin Hill Airpark", + "latitude_deg": "33.748429", + "longitude_deg": "-102.066313", + "elevation_ft": "3330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Shallowater", + "scheduled_service": "no", + "gps_code": "TA67", + "local_code": "TA67" + }, + { + "id": "24775", + "ident": "TA68", + "type": "closed", + "name": "HHI Sabine Heliport", + "latitude_deg": "29.713172", + "longitude_deg": "-93.910288", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sabine Pass", + "scheduled_service": "no", + "gps_code": "TA68", + "local_code": "TA68" + }, + { + "id": "24776", + "ident": "TA69", + "type": "heliport", + "name": "Lupton Farms Heliport", + "latitude_deg": "32.81679916381836", + "longitude_deg": "-96.58360290527344", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sunnyvale", + "scheduled_service": "no", + "gps_code": "TA69", + "local_code": "TA69" + }, + { + "id": "24777", + "ident": "TA70", + "type": "small_airport", + "name": "W J E Airport", + "latitude_deg": "31.78350067138672", + "longitude_deg": "-95.89749908447266", + "elevation_ft": "251", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tennessee Colony", + "scheduled_service": "no", + "gps_code": "TA70", + "local_code": "TA70" + }, + { + "id": "24778", + "ident": "TA71", + "type": "heliport", + "name": "Terrell Community Hospital Heliport", + "latitude_deg": "32.71", + "longitude_deg": "-96.2784", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Terrell", + "scheduled_service": "no", + "gps_code": "TA71", + "local_code": "TA71" + }, + { + "id": "24779", + "ident": "TA72", + "type": "closed", + "name": "Hillcrest Baptist Medical Center Heliport", + "latitude_deg": "31.559181", + "longitude_deg": "-97.175495", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no", + "home_link": "https://web.archive.org/web/20160819183927/http://www.kwtx.com/content/news/Waco--Original-Hillcrest-Hospital-will-be-closed-dow", + "keywords": "TA72" + }, + { + "id": "24780", + "ident": "TA73", + "type": "small_airport", + "name": "Barclay's Roost Airport", + "latitude_deg": "29.974700927734375", + "longitude_deg": "-99.16840362548828", + "elevation_ft": "1680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kerrville", + "scheduled_service": "no", + "gps_code": "TA73", + "local_code": "TA73" + }, + { + "id": "24781", + "ident": "TA74", + "type": "heliport", + "name": "Ineos CBW Heliport", + "latitude_deg": "29.230688", + "longitude_deg": "-95.189356", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alvin", + "scheduled_service": "no", + "gps_code": "TA74", + "local_code": "TA74", + "keywords": "Amoco" + }, + { + "id": "24782", + "ident": "TA75", + "type": "small_airport", + "name": "Cotton Patch Airport", + "latitude_deg": "30.386981", + "longitude_deg": "-97.105794", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "TA75", + "local_code": "TA75" + }, + { + "id": "24783", + "ident": "TA76", + "type": "closed", + "name": "Reddington Building Heliport", + "latitude_deg": "31.780199", + "longitude_deg": "-106.410867", + "elevation_ft": "3920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Paso", + "scheduled_service": "no", + "keywords": "TA76" + }, + { + "id": "24784", + "ident": "TA77", + "type": "closed", + "name": "Cottonpatch Aerodrome", + "latitude_deg": "33.1493", + "longitude_deg": "-96.898903", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Frisco", + "scheduled_service": "no", + "gps_code": "TA77", + "local_code": "TA77" + }, + { + "id": "24785", + "ident": "TA78", + "type": "small_airport", + "name": "Putty Ranch Airport", + "latitude_deg": "31.971359", + "longitude_deg": "-98.063372", + "elevation_ft": "1143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hico", + "scheduled_service": "no", + "gps_code": "TA78", + "local_code": "TA78" + }, + { + "id": "24786", + "ident": "TA79", + "type": "heliport", + "name": "University Medical Center Heliport", + "latitude_deg": "33.63949966430664", + "longitude_deg": "-101.88999938964844", + "elevation_ft": "3231", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lubbock", + "scheduled_service": "no", + "gps_code": "TA79", + "local_code": "TA79" + }, + { + "id": "24787", + "ident": "TA80", + "type": "small_airport", + "name": "U U Ranch Airport", + "latitude_deg": "33.8931999206543", + "longitude_deg": "-96.9281005859375", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Whitesboro", + "scheduled_service": "no", + "gps_code": "TA80", + "local_code": "TA80" + }, + { + "id": "24788", + "ident": "TA81", + "type": "small_airport", + "name": "Morning Star Ranch Airport", + "latitude_deg": "29.792017", + "longitude_deg": "-100.876851", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no", + "gps_code": "TA81", + "local_code": "TA81" + }, + { + "id": "24789", + "ident": "TA82", + "type": "closed", + "name": "R & J Livestock County Airport", + "latitude_deg": "29.024401", + "longitude_deg": "-99.527", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Batesville", + "scheduled_service": "no", + "keywords": "TA82" + }, + { + "id": "24790", + "ident": "TA83", + "type": "closed", + "name": "Short Field", + "latitude_deg": "32.539902", + "longitude_deg": "-97.1922", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mansfield", + "scheduled_service": "no", + "keywords": "TA83" + }, + { + "id": "24791", + "ident": "TA84", + "type": "small_airport", + "name": "Miller Ranch Airport", + "latitude_deg": "28.354999542236328", + "longitude_deg": "-99.93319702148438", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Carrizo Springs", + "scheduled_service": "no", + "gps_code": "TA84", + "local_code": "TA84" + }, + { + "id": "24792", + "ident": "TA85", + "type": "closed", + "name": "Chambers Airport", + "latitude_deg": "33.3232", + "longitude_deg": "-96.232202", + "elevation_ft": "692", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Celeste", + "scheduled_service": "no", + "keywords": "TA85" + }, + { + "id": "24793", + "ident": "TA86", + "type": "small_airport", + "name": "Dennis's Flying Farm Airport", + "latitude_deg": "32.60599899291992", + "longitude_deg": "-95.93499755859375", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Canton", + "scheduled_service": "no", + "gps_code": "TA86", + "local_code": "TA86" + }, + { + "id": "24794", + "ident": "TA87", + "type": "small_airport", + "name": "Carter-Norman Airport", + "latitude_deg": "33.105599", + "longitude_deg": "-97.545258", + "elevation_ft": "737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Boyd", + "scheduled_service": "no", + "gps_code": "TA87", + "local_code": "TA87" + }, + { + "id": "24795", + "ident": "TA88", + "type": "heliport", + "name": "Premier Aviation Inc Heliport", + "latitude_deg": "32.70009994506836", + "longitude_deg": "-97.05030059814453", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Grand Prairie", + "scheduled_service": "no", + "gps_code": "TA88", + "local_code": "TA88" + }, + { + "id": "24796", + "ident": "TA89", + "type": "small_airport", + "name": "Vaughan Ranch Airport", + "latitude_deg": "31.523799896240234", + "longitude_deg": "-98.80030059814453", + "elevation_ft": "1310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mullin", + "scheduled_service": "no", + "gps_code": "TA89", + "local_code": "TA89" + }, + { + "id": "24797", + "ident": "TA90", + "type": "small_airport", + "name": "Green Acres Airport", + "latitude_deg": "29.974700927734375", + "longitude_deg": "-95.81800079345703", + "elevation_ft": "181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hockley", + "scheduled_service": "no", + "gps_code": "TA90", + "local_code": "TA90" + }, + { + "id": "24798", + "ident": "TA91", + "type": "heliport", + "name": "Childress Regional Medical Center Heliport", + "latitude_deg": "34.444400787353516", + "longitude_deg": "-100.21800231933594", + "elevation_ft": "1952", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Childress", + "scheduled_service": "no", + "gps_code": "TA91", + "local_code": "TA91" + }, + { + "id": "24799", + "ident": "TA92", + "type": "closed", + "name": "Rowan Heliport", + "latitude_deg": "29.6308", + "longitude_deg": "-95.286903", + "elevation_ft": "47", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "keywords": "TA92" + }, + { + "id": "24800", + "ident": "TA93", + "type": "small_airport", + "name": "Lm Ranch Airport", + "latitude_deg": "33.63330078125", + "longitude_deg": "-96.73359680175781", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sherman", + "scheduled_service": "no", + "gps_code": "TA93", + "local_code": "TA93" + }, + { + "id": "24801", + "ident": "TA94", + "type": "heliport", + "name": "Creech Heliport", + "latitude_deg": "32.71120071411133", + "longitude_deg": "-96.55750274658203", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mesquite", + "scheduled_service": "no", + "gps_code": "TA94", + "local_code": "TA94" + }, + { + "id": "24802", + "ident": "TA95", + "type": "heliport", + "name": "Houston Northwest Medical Center Heliport", + "latitude_deg": "30.019272", + "longitude_deg": "-95.442905", + "elevation_ft": "116", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Spring", + "scheduled_service": "no", + "gps_code": "TA95", + "local_code": "TA95" + }, + { + "id": "24803", + "ident": "TA96", + "type": "heliport", + "name": "Helicopter Express Heliport", + "latitude_deg": "30.095199584960938", + "longitude_deg": "-95.5448989868164", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tomball", + "scheduled_service": "no", + "gps_code": "TA96", + "local_code": "TA96" + }, + { + "id": "24804", + "ident": "TA97", + "type": "small_airport", + "name": "White Wing Ranch Airport", + "latitude_deg": "29.637501", + "longitude_deg": "-95.968803", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wallis", + "scheduled_service": "no", + "gps_code": "TA97", + "local_code": "TA97" + }, + { + "id": "24805", + "ident": "TA98", + "type": "heliport", + "name": "Chevron Chemical County Heliport", + "latitude_deg": "29.82159996032715", + "longitude_deg": "-94.9229965209961", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Baytown", + "scheduled_service": "no", + "gps_code": "TA98", + "local_code": "TA98" + }, + { + "id": "24806", + "ident": "TA99", + "type": "closed", + "name": "Bell Helicopter Plant-3 Heliport", + "latitude_deg": "32.791801", + "longitude_deg": "-97.217002", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Richland Hills", + "scheduled_service": "no", + "keywords": "TA99" + }, + { + "id": "316417", + "ident": "TAA", + "type": "closed", + "name": "Tarapaina Airport", + "latitude_deg": "-9.414", + "longitude_deg": "161.358", + "elevation_ft": "80", + "continent": "OC", + "iso_country": "SB", + "iso_region": "SB-ML", + "municipality": "Tarapaina", + "scheduled_service": "no", + "iata_code": "TAA" + }, + { + "id": "342096", + "ident": "TAO", + "type": "large_airport", + "name": "Qingdao Jiaodong International Airport", + "latitude_deg": "36.361953", + "longitude_deg": "120.088171", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Jiaozhou, Qingdao", + "scheduled_service": "yes", + "gps_code": "ZSQD", + "iata_code": "TAO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qingdao_Jiaodong_International_Airport" + }, + { + "id": "6359", + "ident": "TAPA", + "type": "medium_airport", + "name": "V.C. Bird International Airport", + "latitude_deg": "17.1367", + "longitude_deg": "-61.792702", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "AG", + "iso_region": "AG-03", + "municipality": "St. John's", + "scheduled_service": "yes", + "gps_code": "TAPA", + "iata_code": "ANU", + "wikipedia_link": "https://en.wikipedia.org/wiki/VC_Bird_International_Airport" + }, + { + "id": "35328", + "ident": "TAPH", + "type": "medium_airport", + "name": "Codrington Airport", + "latitude_deg": "17.635799", + "longitude_deg": "-61.828602", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "AG", + "iso_region": "AG-10", + "municipality": "Codrington", + "scheduled_service": "yes", + "gps_code": "TAPH", + "iata_code": "BBQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Codrington_Airport" + }, + { + "id": "35326", + "ident": "TAPT", + "type": "small_airport", + "name": "Coco Point Lodge Airstrip", + "latitude_deg": "17.555599", + "longitude_deg": "-61.765301", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "AG", + "iso_region": "AG-10", + "municipality": "Coco Point", + "scheduled_service": "no", + "gps_code": "TAPT" + }, + { + "id": "32422", + "ident": "TAV", + "type": "closed", + "name": "Tau Airport", + "latitude_deg": "-14.23178", + "longitude_deg": "-169.51101", + "elevation_ft": "185", + "continent": "OC", + "iso_country": "AS", + "iso_region": "AS-MA", + "municipality": "Tau", + "scheduled_service": "no", + "iata_code": "TAV", + "local_code": "HI36", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tau_Airport" + }, + { + "id": "316418", + "ident": "TBA", + "type": "closed", + "name": "Tabibuga Airport", + "latitude_deg": "-5.5766", + "longitude_deg": "144.6508", + "elevation_ft": "4400", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-JI", + "municipality": "Tabibuga", + "scheduled_service": "no", + "iata_code": "TBA" + }, + { + "id": "309377", + "ident": "TBE", + "type": "small_airport", + "name": "Timbunke Airport", + "latitude_deg": "-4.196633", + "longitude_deg": "143.519222", + "elevation_ft": "24", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Timbunke", + "scheduled_service": "no", + "gps_code": "AYTV", + "iata_code": "TBE", + "local_code": "TIM" + }, + { + "id": "6360", + "ident": "TBPB", + "type": "medium_airport", + "name": "Grantley Adams International Airport", + "latitude_deg": "13.0746", + "longitude_deg": "-59.4925", + "elevation_ft": "169", + "continent": "NA", + "iso_country": "BB", + "iso_region": "BB-01", + "municipality": "Bridgetown", + "scheduled_service": "yes", + "gps_code": "TBPB", + "iata_code": "BGI", + "home_link": "http://www.gaia.bb/content/about-gaia-inc", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grantley_Adams_International_Airport", + "keywords": "Seawell" + }, + { + "id": "302308", + "ident": "TBPO", + "type": "heliport", + "name": "Bridgetown Heliport", + "latitude_deg": "13.095833", + "longitude_deg": "-59.618611", + "continent": "NA", + "iso_country": "BB", + "iso_region": "BB-08", + "scheduled_service": "no", + "gps_code": "TBPO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bridgetown_Heliport" + }, + { + "id": "307197", + "ident": "TBQ", + "type": "small_airport", + "name": "Tarabo Airport", + "latitude_deg": "-6.46666666667", + "longitude_deg": "145.532222222", + "elevation_ft": "6100", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EHG", + "municipality": "Tarabo", + "scheduled_service": "no", + "gps_code": "AYTR", + "iata_code": "TBQ", + "local_code": "TRB" + }, + { + "id": "309427", + "ident": "TBV", + "type": "small_airport", + "name": "Tabal Airstrip", + "latitude_deg": "8.3027", + "longitude_deg": "171.1615", + "elevation_ft": "32", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-AUR", + "municipality": "Tabal Island", + "scheduled_service": "no", + "iata_code": "TBV" + }, + { + "id": "348746", + "ident": "TC-0001", + "type": "small_airport", + "name": "West Caicos Airport", + "latitude_deg": "21.68178", + "longitude_deg": "-72.46157", + "continent": "NA", + "iso_country": "TC", + "iso_region": "TC-WC", + "municipality": "Yankee Town", + "scheduled_service": "no" + }, + { + "id": "309955", + "ident": "TCK", + "type": "small_airport", + "name": "Tinboli Airport", + "latitude_deg": "-4.0949", + "longitude_deg": "143.3838", + "elevation_ft": "59", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-ESW", + "municipality": "Tinboli", + "scheduled_service": "no", + "gps_code": "AYYL", + "iata_code": "TCK", + "local_code": "TOI" + }, + { + "id": "24808", + "ident": "TCT", + "type": "small_airport", + "name": "Takotna Airport", + "latitude_deg": "62.993206", + "longitude_deg": "-156.029026", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Takotna", + "scheduled_service": "yes", + "gps_code": "PPCT", + "iata_code": "TCT", + "local_code": "TCT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Takotna_Airport" + }, + { + "id": "28108", + "ident": "TCYT", + "type": "small_airport", + "name": "Crystal Brook Airport", + "latitude_deg": "-17.38355", + "longitude_deg": "144.450895", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "TCYT", + "local_code": "TCYT" + }, + { + "id": "308250", + "ident": "TD-0001", + "type": "small_airport", + "name": "Aozou Airstrip", + "latitude_deg": "22.645195", + "longitude_deg": "17.696527", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-TI", + "scheduled_service": "no" + }, + { + "id": "319200", + "ident": "TD-0002", + "type": "small_airport", + "name": "Doba Airport", + "latitude_deg": "8.701775", + "longitude_deg": "16.834947", + "elevation_ft": "1296", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-LR", + "municipality": "Doba", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Doba_Airport" + }, + { + "id": "319201", + "ident": "TD-0003", + "type": "small_airport", + "name": "Baïbokoum Airport", + "latitude_deg": "7.765304", + "longitude_deg": "15.703935", + "elevation_ft": "1476", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-LR", + "municipality": "Baïbokoum", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ba%C3%AFbokoum_Airport" + }, + { + "id": "319203", + "ident": "TD-0004", + "type": "small_airport", + "name": "Léré Airport", + "latitude_deg": "9.645894", + "longitude_deg": "14.173201", + "elevation_ft": "787", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-MO", + "municipality": "Léré", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/L%C3%A9r%C3%A9_Airport" + }, + { + "id": "319204", + "ident": "TD-0005", + "type": "small_airport", + "name": "Kélo Airport", + "latitude_deg": "9.31408", + "longitude_deg": "15.786463", + "elevation_ft": "1240", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-TA", + "municipality": "Kélo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/K%C3%A9lo_Airport" + }, + { + "id": "319205", + "ident": "TD-0006", + "type": "small_airport", + "name": "Koumra Airport", + "latitude_deg": "8.958891", + "longitude_deg": "17.635592", + "elevation_ft": "1401", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-MA", + "municipality": "Koumra", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Koumra_Airport" + }, + { + "id": "319206", + "ident": "TD-0007", + "type": "small_airport", + "name": "Goundi Airport", + "latitude_deg": "9.382597", + "longitude_deg": "17.380952", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-MA", + "municipality": "Goundi", + "scheduled_service": "no" + }, + { + "id": "319209", + "ident": "TD-0008", + "type": "small_airport", + "name": "Kyabé Airport", + "latitude_deg": "9.447491", + "longitude_deg": "18.927636", + "elevation_ft": "1240", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-MC", + "municipality": "Kyabé", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kyab%C3%A9_Airport" + }, + { + "id": "319210", + "ident": "TD-0009", + "type": "small_airport", + "name": "Haraze Airport", + "latitude_deg": "9.918697", + "longitude_deg": "20.90368", + "elevation_ft": "1358", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-SA", + "municipality": "Haraze", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Haraze_Airport" + }, + { + "id": "319234", + "ident": "TD-0010", + "type": "small_airport", + "name": "Usine Sugar Plantation Airstrip", + "latitude_deg": "8.974228", + "longitude_deg": "18.496038", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-MC", + "municipality": "Sarh", + "scheduled_service": "no" + }, + { + "id": "325963", + "ident": "TD-0011", + "type": "small_airport", + "name": "Iriba Airport", + "latitude_deg": "15.134124", + "longitude_deg": "22.221355", + "elevation_ft": "3061", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-WF", + "municipality": "Iriba", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iriba_Airport" + }, + { + "id": "330406", + "ident": "TD-0012", + "type": "closed", + "name": "Lac Iro Airstrip", + "latitude_deg": "10.146546", + "longitude_deg": "19.35757", + "elevation_ft": "1297", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-MC", + "municipality": "Souka Serhir", + "scheduled_service": "no" + }, + { + "id": "348667", + "ident": "TD-0013", + "type": "small_airport", + "name": "Guéréda Airport", + "latitude_deg": "14.5642", + "longitude_deg": "22.07495", + "elevation_ft": "3291", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-WF", + "municipality": "Guéréda", + "scheduled_service": "no" + }, + { + "id": "348668", + "ident": "TD-0014", + "type": "small_airport", + "name": "Amdjarass Airport", + "latitude_deg": "15.972705", + "longitude_deg": "22.770932", + "elevation_ft": "2960", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-EE", + "municipality": "Amdjarass", + "scheduled_service": "no" + }, + { + "id": "319232", + "ident": "TD-0015", + "type": "small_airport", + "name": "Moussoro Airport", + "latitude_deg": "13.645663", + "longitude_deg": "16.501386", + "elevation_ft": "984", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-BG", + "municipality": "Moussoro", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moussoro_Airport" + }, + { + "id": "355945", + "ident": "TD-0016", + "type": "small_airport", + "name": "Adré Airport", + "latitude_deg": "13.481042", + "longitude_deg": "22.179734", + "elevation_ft": "2582", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-OD", + "municipality": "Adré", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Adr%C3%A9_Airport" + }, + { + "id": "355957", + "ident": "TD-0017", + "type": "small_airport", + "name": "Kouba Olanga Airstrip", + "latitude_deg": "15.718333", + "longitude_deg": "18.311667", + "elevation_ft": "875", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-BO", + "municipality": "Kouba Olanga", + "scheduled_service": "no" + }, + { + "id": "355959", + "ident": "TD-0018", + "type": "small_airport", + "name": "Salal Airport", + "latitude_deg": "14.843333", + "longitude_deg": "17.226667", + "elevation_ft": "984", + "continent": "AF", + "iso_country": "TD", + "iso_region": "TD-BG", + "municipality": "Salal", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salal_Airport" + }, + { + "id": "309956", + "ident": "TDB", + "type": "small_airport", + "name": "Tetebedi Airport", + "latitude_deg": "-9.1586", + "longitude_deg": "148.0686", + "elevation_ft": "3365", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NPP", + "municipality": "Tetebedi", + "scheduled_service": "no", + "gps_code": "AYTF", + "iata_code": "TDB", + "local_code": "TEB", + "keywords": "Tetabedi" + }, + { + "id": "6361", + "ident": "TDCF", + "type": "medium_airport", + "name": "Canefield Airport", + "latitude_deg": "15.336693", + "longitude_deg": "-61.392108", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "DM", + "iso_region": "DM-10", + "municipality": "Canefield", + "scheduled_service": "yes", + "gps_code": "TDCF", + "iata_code": "DCF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Canefield_Airport" + }, + { + "id": "6362", + "ident": "TDPD", + "type": "medium_airport", + "name": "Douglas-Charles Airport", + "latitude_deg": "15.547", + "longitude_deg": "-61.299999", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "DM", + "iso_region": "DM-02", + "municipality": "Marigot", + "scheduled_service": "yes", + "gps_code": "TDPD", + "iata_code": "DOM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Melville_Hall_Airport" + }, + { + "id": "309428", + "ident": "TDS", + "type": "small_airport", + "name": "Sasereme Airport", + "latitude_deg": "-7.6217", + "longitude_deg": "142.868", + "elevation_ft": "121", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Sasereme", + "scheduled_service": "yes", + "gps_code": "AYSS", + "iata_code": "TDS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sasereme_Airport" + }, + { + "id": "24809", + "ident": "TE00", + "type": "heliport", + "name": "Coastal Bend Hospital Heliport", + "latitude_deg": "27.913313", + "longitude_deg": "-97.159352", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Aransas Pass", + "scheduled_service": "no", + "gps_code": "TE00", + "local_code": "TE00" + }, + { + "id": "24810", + "ident": "TE01", + "type": "small_airport", + "name": "Dillard Ranch Airport", + "latitude_deg": "31.304899215698242", + "longitude_deg": "-95.79660034179688", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Centerville", + "scheduled_service": "no", + "gps_code": "TE01", + "local_code": "TE01" + }, + { + "id": "24811", + "ident": "TE02", + "type": "small_airport", + "name": "Aresti Aerodrome", + "latitude_deg": "32.470699", + "longitude_deg": "-97.560303", + "elevation_ft": "985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Godley", + "scheduled_service": "no", + "local_code": "20T", + "keywords": "TE02" + }, + { + "id": "24812", + "ident": "TE03", + "type": "heliport", + "name": "Huntsville Memorial Hospital Heliport", + "latitude_deg": "30.698218", + "longitude_deg": "-95.55797", + "elevation_ft": "436", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Huntsville", + "scheduled_service": "no", + "gps_code": "TE03", + "local_code": "TE03" + }, + { + "id": "24813", + "ident": "TE04", + "type": "small_airport", + "name": "Split B Ranch Airport", + "latitude_deg": "35.70249938964844", + "longitude_deg": "-100.28500366210938", + "elevation_ft": "2580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Canadian", + "scheduled_service": "no", + "gps_code": "TE04", + "local_code": "TE04" + }, + { + "id": "24814", + "ident": "TE05", + "type": "heliport", + "name": "MX Ranch Heliport", + "latitude_deg": "32.3791656494", + "longitude_deg": "-96.6869430542", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ennis", + "scheduled_service": "no", + "gps_code": "TE05", + "local_code": "TE05" + }, + { + "id": "24815", + "ident": "TE06", + "type": "small_airport", + "name": "Casey Field", + "latitude_deg": "33.37929916381836", + "longitude_deg": "-96.31690216064453", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Leonard", + "scheduled_service": "no", + "gps_code": "TE06", + "local_code": "TE06" + }, + { + "id": "24816", + "ident": "TE07", + "type": "heliport", + "name": "OakBend Medical Center - Wharton Hospital Heliport", + "latitude_deg": "29.327886", + "longitude_deg": "-96.117153", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wharton", + "scheduled_service": "no", + "gps_code": "TE07", + "local_code": "TE07", + "keywords": "Gulf Coast Medical Center Heliport" + }, + { + "id": "24817", + "ident": "TE08", + "type": "small_airport", + "name": "Flying W Airport", + "latitude_deg": "32.149563", + "longitude_deg": "-100.159762", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wingate", + "scheduled_service": "no", + "gps_code": "TE08", + "local_code": "TE08" + }, + { + "id": "24818", + "ident": "TE09", + "type": "small_airport", + "name": "Minard Pegasus Airport", + "latitude_deg": "29.331899642944336", + "longitude_deg": "-95.2760009765625", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alvin", + "scheduled_service": "no", + "gps_code": "TE09", + "local_code": "TE09" + }, + { + "id": "24819", + "ident": "TE10", + "type": "small_airport", + "name": "Pierce Airport", + "latitude_deg": "33.815741", + "longitude_deg": "-98.229074", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Henrietta", + "scheduled_service": "no", + "gps_code": "TE10", + "local_code": "TE10" + }, + { + "id": "24820", + "ident": "TE11", + "type": "heliport", + "name": "Life Flight/Refuel Heliport", + "latitude_deg": "29.569700241088867", + "longitude_deg": "-95.43769836425781", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "TE11", + "local_code": "TE11" + }, + { + "id": "24821", + "ident": "TE12", + "type": "small_airport", + "name": "Cleveland Airport", + "latitude_deg": "29.300199508666992", + "longitude_deg": "-98.18360137939453", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "La Vernia", + "scheduled_service": "no", + "gps_code": "TE12", + "local_code": "TE12" + }, + { + "id": "24822", + "ident": "TE13", + "type": "small_airport", + "name": "Weiblen Airport", + "latitude_deg": "29.40019989013672", + "longitude_deg": "-98.88749694824219", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Castroville", + "scheduled_service": "no", + "gps_code": "TE13", + "local_code": "TE13" + }, + { + "id": "24823", + "ident": "TE14", + "type": "heliport", + "name": "Winns Heliport", + "latitude_deg": "30.402597", + "longitude_deg": "-97.961327", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jonestown", + "scheduled_service": "no", + "gps_code": "TE14", + "local_code": "TE14" + }, + { + "id": "24824", + "ident": "TE15", + "type": "small_airport", + "name": "M & M Land Company Airport", + "latitude_deg": "30.889962", + "longitude_deg": "-99.632628", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Menard", + "scheduled_service": "no", + "gps_code": "TE15", + "local_code": "TE15" + }, + { + "id": "45811", + "ident": "TE16", + "type": "small_airport", + "name": "Cow Pasture Airport", + "latitude_deg": "32.250425", + "longitude_deg": "-97.297236", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Parker", + "scheduled_service": "no", + "gps_code": "TE16", + "local_code": "TE16" + }, + { + "id": "24825", + "ident": "TE17", + "type": "small_airport", + "name": "Heathrow Airport", + "latitude_deg": "31.438513", + "longitude_deg": "-97.145842", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Robinson", + "scheduled_service": "no", + "gps_code": "TE17", + "local_code": "TE17" + }, + { + "id": "24826", + "ident": "TE18", + "type": "heliport", + "name": "Mother Frances Hospital Heliport", + "latitude_deg": "32.509300231933594", + "longitude_deg": "-95.28990173339844", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tyler", + "scheduled_service": "no", + "gps_code": "TE18", + "local_code": "TE18" + }, + { + "id": "24827", + "ident": "TE19", + "type": "heliport", + "name": "Tyler County Hospital Heliport", + "latitude_deg": "30.77630043029785", + "longitude_deg": "-94.42829895019531", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Woodville", + "scheduled_service": "no", + "gps_code": "TE19", + "local_code": "TE19" + }, + { + "id": "24828", + "ident": "TE20", + "type": "heliport", + "name": "Putman Heliport", + "latitude_deg": "33.023417", + "longitude_deg": "-96.536887", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wylie", + "scheduled_service": "no", + "gps_code": "TE20", + "local_code": "TE20" + }, + { + "id": "24829", + "ident": "TE21", + "type": "small_airport", + "name": "Lobo Mountain Ranch Airport", + "latitude_deg": "29.6513", + "longitude_deg": "-99.086403", + "elevation_ft": "1540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bandera", + "scheduled_service": "no", + "gps_code": "TE21", + "local_code": "TE21", + "keywords": "Dove Mountain Ranch" + }, + { + "id": "24830", + "ident": "TE22", + "type": "heliport", + "name": "Texas Scottish Rite Hospital For Children Heliport", + "latitude_deg": "32.801013", + "longitude_deg": "-96.815795", + "elevation_ft": "622", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "TE22", + "local_code": "TE22" + }, + { + "id": "24831", + "ident": "TE23", + "type": "heliport", + "name": "Santa Rosa Northwest Hospital Heliport", + "latitude_deg": "29.51110076904297", + "longitude_deg": "-98.5886001586914", + "elevation_ft": "932", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "TE23", + "local_code": "TE23" + }, + { + "id": "24832", + "ident": "TE24", + "type": "small_airport", + "name": "Horseshoe Lake Airport", + "latitude_deg": "33.3931999206543", + "longitude_deg": "-97.2052993774414", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanger", + "scheduled_service": "no", + "gps_code": "TE24", + "local_code": "TE24" + }, + { + "id": "24833", + "ident": "TE25", + "type": "closed", + "name": "Texas Department of Public Safety Waco Heliport", + "latitude_deg": "31.6402", + "longitude_deg": "-97.091904", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no", + "keywords": "TE25" + }, + { + "id": "24834", + "ident": "TE26", + "type": "small_airport", + "name": "Arrow 'S' Ranch Airport", + "latitude_deg": "28.7836", + "longitude_deg": "-98.349998", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Campbellton", + "scheduled_service": "no", + "gps_code": "TE26", + "local_code": "TE26" + }, + { + "id": "24835", + "ident": "TE27", + "type": "small_airport", + "name": "Harrison Piloncillo Ranch Airport", + "latitude_deg": "28.2544002532959", + "longitude_deg": "-99.59919738769531", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Catarina", + "scheduled_service": "no", + "gps_code": "TE27", + "local_code": "TE27" + }, + { + "id": "24836", + "ident": "TE28", + "type": "heliport", + "name": "Shell Deer Park Refinery Heliport", + "latitude_deg": "29.71508", + "longitude_deg": "-95.14404", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Deer Park", + "scheduled_service": "no", + "gps_code": "TE28", + "local_code": "TE28" + }, + { + "id": "24837", + "ident": "TE29", + "type": "small_airport", + "name": "La Esperanza Ranch Airport", + "latitude_deg": "28.069664", + "longitude_deg": "-99.568771", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Encinal", + "scheduled_service": "no", + "gps_code": "TE29", + "local_code": "TE29" + }, + { + "id": "24838", + "ident": "TE30", + "type": "heliport", + "name": "Harris Hospital Heliport", + "latitude_deg": "32.73680114746094", + "longitude_deg": "-97.33809661865234", + "elevation_ft": "753", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "TE30", + "local_code": "TE30" + }, + { + "id": "24839", + "ident": "TE31", + "type": "heliport", + "name": "Mc David Pontiac Company Heliport", + "latitude_deg": "32.8362007141", + "longitude_deg": "-97", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Irving", + "scheduled_service": "no", + "gps_code": "TE31", + "local_code": "TE31" + }, + { + "id": "24840", + "ident": "TE32", + "type": "small_airport", + "name": "Rancho Blanco Airport", + "latitude_deg": "27.3085994720459", + "longitude_deg": "-99.48139953613281", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laredo", + "scheduled_service": "no", + "gps_code": "TE32", + "local_code": "TE32" + }, + { + "id": "24841", + "ident": "TE33", + "type": "closed", + "name": "Eagles Nest Gliderport", + "latitude_deg": "31.67053", + "longitude_deg": "-102.20115", + "elevation_ft": "2985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Odessa", + "scheduled_service": "no", + "keywords": "TE33" + }, + { + "id": "24842", + "ident": "TE34", + "type": "small_airport", + "name": "Reb Folbre's Place Airport", + "latitude_deg": "32.76259994506836", + "longitude_deg": "-97.9728012084961", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Millsap", + "scheduled_service": "no", + "gps_code": "TE34", + "local_code": "TE34" + }, + { + "id": "24843", + "ident": "TE35", + "type": "heliport", + "name": "McCoy Building Supply 16 Heliport", + "latitude_deg": "29.6947", + "longitude_deg": "-98.146896", + "elevation_ft": "667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "New Braunfels", + "scheduled_service": "no", + "gps_code": "TE35", + "local_code": "TE35" + }, + { + "id": "24844", + "ident": "TE36", + "type": "small_airport", + "name": "Gerum Farm Airport", + "latitude_deg": "29.39189910888672", + "longitude_deg": "-97.18470001220703", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Shiner", + "scheduled_service": "no", + "gps_code": "TE36", + "local_code": "TE36" + }, + { + "id": "24845", + "ident": "TE37", + "type": "small_airport", + "name": "Canyon Ranch Airport", + "latitude_deg": "30.301354", + "longitude_deg": "-100.471987", + "elevation_ft": "2306", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no", + "gps_code": "TE37", + "local_code": "TE37" + }, + { + "id": "24846", + "ident": "TE38", + "type": "small_airport", + "name": "Loghouse STOLport", + "latitude_deg": "30.592699", + "longitude_deg": "-94.909401", + "elevation_ft": "184", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Goodrich", + "scheduled_service": "no", + "gps_code": "TE38", + "local_code": "TE38" + }, + { + "id": "24847", + "ident": "TE39", + "type": "small_airport", + "name": "Bucker Field", + "latitude_deg": "33.443199157714844", + "longitude_deg": "-97.27339935302734", + "elevation_ft": "877", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Era", + "scheduled_service": "no", + "gps_code": "TE39", + "local_code": "TE39" + }, + { + "id": "24848", + "ident": "TE40", + "type": "closed", + "name": "Caselman Ranch Airport", + "latitude_deg": "32.674801", + "longitude_deg": "-98.826202", + "elevation_ft": "1387", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Breckenridge", + "scheduled_service": "no", + "gps_code": "TE40", + "local_code": "TE40" + }, + { + "id": "24849", + "ident": "TE41", + "type": "heliport", + "name": "Montgomery Co Law Enforcement Cntr Heliport", + "latitude_deg": "30.335199356100002", + "longitude_deg": "-95.4530029297", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Conroe", + "scheduled_service": "no", + "gps_code": "TE41", + "local_code": "TE41" + }, + { + "id": "24850", + "ident": "TE42", + "type": "heliport", + "name": "D.F.C.H. Heliport", + "latitude_deg": "27.748600006103516", + "longitude_deg": "-97.38469696044922", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no", + "gps_code": "TE42", + "local_code": "TE42" + }, + { + "id": "24851", + "ident": "TE43", + "type": "heliport", + "name": "Parkland Health & Hospital System Heliport", + "latitude_deg": "32.80979919433594", + "longitude_deg": "-96.8395004272461", + "elevation_ft": "486", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "TE43", + "local_code": "TE43" + }, + { + "id": "24852", + "ident": "TE44", + "type": "closed", + "name": "My Heliport", + "latitude_deg": "30.1063", + "longitude_deg": "-94.855797", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dayton", + "scheduled_service": "no", + "keywords": "TE44" + }, + { + "id": "24853", + "ident": "TE45", + "type": "small_airport", + "name": "Buffalo Chips Airpark", + "latitude_deg": "32.46989822387695", + "longitude_deg": "-97.46530151367188", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Joshua", + "scheduled_service": "no", + "gps_code": "TE45", + "local_code": "TE45" + }, + { + "id": "24854", + "ident": "TE46", + "type": "heliport", + "name": "Refugio County Memorial Hospital Heliport", + "latitude_deg": "28.306522", + "longitude_deg": "-97.280551", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Refugio", + "scheduled_service": "no", + "gps_code": "TE46", + "local_code": "TE46" + }, + { + "id": "24855", + "ident": "TE47", + "type": "small_airport", + "name": "Cross Wind Acres Airport", + "latitude_deg": "32.20899963378906", + "longitude_deg": "-97.31780242919922", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rio Vista", + "scheduled_service": "no", + "gps_code": "TE47", + "local_code": "TE47" + }, + { + "id": "24856", + "ident": "TE48", + "type": "small_airport", + "name": "King's Ranch Airport", + "latitude_deg": "31.04490089416504", + "longitude_deg": "-98.04280090332031", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lampasas", + "scheduled_service": "no", + "gps_code": "TE48", + "local_code": "TE48" + }, + { + "id": "24857", + "ident": "TE49", + "type": "heliport", + "name": "H.S.I. Heliport", + "latitude_deg": "30.06100082397461", + "longitude_deg": "-95.55780029296875", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tomball", + "scheduled_service": "no", + "gps_code": "TE49", + "local_code": "TE49" + }, + { + "id": "24858", + "ident": "TE50", + "type": "small_airport", + "name": "Hirok Airport", + "latitude_deg": "32.17319869995117", + "longitude_deg": "-96.96610260009766", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "TE50", + "local_code": "TE50" + }, + { + "id": "24859", + "ident": "TE51", + "type": "small_airport", + "name": "Lackorn Airport", + "latitude_deg": "29.539100646972656", + "longitude_deg": "-97.83499908447266", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seguin", + "scheduled_service": "no", + "gps_code": "TE51", + "local_code": "TE51" + }, + { + "id": "24860", + "ident": "TE52", + "type": "small_airport", + "name": "Chigger Field", + "latitude_deg": "32.5359992980957", + "longitude_deg": "-97.5886001586914", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cresson", + "scheduled_service": "no", + "gps_code": "TE52", + "local_code": "TE52" + }, + { + "id": "24861", + "ident": "TE53", + "type": "closed", + "name": "Spring Branch Medical Center Heliport", + "latitude_deg": "29.805469", + "longitude_deg": "-95.508045", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "keywords": "TE53" + }, + { + "id": "24862", + "ident": "TE54", + "type": "heliport", + "name": "Alba-Golden Heliport", + "latitude_deg": "32.729400634765625", + "longitude_deg": "-95.564697265625", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Golden", + "scheduled_service": "no", + "gps_code": "TE54", + "local_code": "TE54" + }, + { + "id": "24863", + "ident": "TE55", + "type": "small_airport", + "name": "Flyin Armadillo Airport", + "latitude_deg": "33.4217", + "longitude_deg": "-98.190598", + "elevation_ft": "995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jacksboro", + "scheduled_service": "no", + "local_code": "55E", + "keywords": "TE55" + }, + { + "id": "24864", + "ident": "TE56", + "type": "closed", + "name": "11 TV Dallas Heliport", + "latitude_deg": "32.885101", + "longitude_deg": "-96.707199", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "keywords": "TE56" + }, + { + "id": "24865", + "ident": "TE57", + "type": "small_airport", + "name": "Haass Field", + "latitude_deg": "29.444799423217773", + "longitude_deg": "-99.122802734375", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hondo", + "scheduled_service": "no", + "gps_code": "TE57", + "local_code": "TE57" + }, + { + "id": "24866", + "ident": "TE58", + "type": "small_airport", + "name": "Terminal D Ranch Airport", + "latitude_deg": "28.4451", + "longitude_deg": "-98.0394", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beeville", + "scheduled_service": "no", + "gps_code": "TE58", + "local_code": "TE58" + }, + { + "id": "24867", + "ident": "TE59", + "type": "heliport", + "name": "Holler Heliport", + "latitude_deg": "29.813333", + "longitude_deg": "-98.363333", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bulverde", + "scheduled_service": "no", + "gps_code": "TE59", + "local_code": "TE59" + }, + { + "id": "24868", + "ident": "TE60", + "type": "heliport", + "name": "Christus Santa Rosa Hospital Helipad", + "latitude_deg": "29.716011", + "longitude_deg": "-98.124186", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "New Braunfels", + "scheduled_service": "no", + "gps_code": "TE60", + "local_code": "TE60" + }, + { + "id": "24869", + "ident": "TE61", + "type": "closed", + "name": "Wolf Point Heliport", + "latitude_deg": "28.7132", + "longitude_deg": "-96.409203", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Olivia", + "scheduled_service": "no", + "keywords": "TE61" + }, + { + "id": "24870", + "ident": "TE62", + "type": "small_airport", + "name": "High Man Tower Airstrip", + "latitude_deg": "27.854299545288086", + "longitude_deg": "-97.68229675292969", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Robstown", + "scheduled_service": "no", + "gps_code": "TE62", + "local_code": "TE62" + }, + { + "id": "24871", + "ident": "TE63", + "type": "small_airport", + "name": "Arrowhead Ranch Airport", + "latitude_deg": "28.2460994720459", + "longitude_deg": "-98.55280303955078", + "elevation_ft": "296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tilden", + "scheduled_service": "no", + "gps_code": "TE63", + "local_code": "TE63" + }, + { + "id": "24872", + "ident": "TE64", + "type": "heliport", + "name": "Yoakum Community Hospital Heliport", + "latitude_deg": "29.306286", + "longitude_deg": "-97.129226", + "elevation_ft": "335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Yoakum", + "scheduled_service": "no", + "gps_code": "TE64", + "local_code": "TE64" + }, + { + "id": "24873", + "ident": "TE65", + "type": "heliport", + "name": "Nrh Fire Department Heliport", + "latitude_deg": "32.85919952392578", + "longitude_deg": "-97.2300033569336", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "North Richland Hills", + "scheduled_service": "no", + "gps_code": "TE65", + "local_code": "TE65" + }, + { + "id": "24874", + "ident": "TE66", + "type": "heliport", + "name": "Lmc Heliport", + "latitude_deg": "33.2140007019043", + "longitude_deg": "-96.63269805908203", + "elevation_ft": "708", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mc Kinney", + "scheduled_service": "no", + "gps_code": "TE66", + "local_code": "TE66" + }, + { + "id": "24875", + "ident": "TE67", + "type": "small_airport", + "name": "Cibolo Sea-Willo Airpark", + "latitude_deg": "29.429100036621094", + "longitude_deg": "-98.13169860839844", + "elevation_ft": "517", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "New Berlin", + "scheduled_service": "no", + "gps_code": "TE67", + "local_code": "TE67" + }, + { + "id": "24876", + "ident": "TE68", + "type": "small_airport", + "name": "Nuggs Flying M Airport", + "latitude_deg": "33.7440986633", + "longitude_deg": "-96.6598968506", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pottsboro", + "scheduled_service": "no", + "gps_code": "TE68", + "local_code": "TE68" + }, + { + "id": "24877", + "ident": "TE69", + "type": "heliport", + "name": "OakBend Medical Center - Jackson Street Hospital Heliport", + "latitude_deg": "29.5756", + "longitude_deg": "-95.770798", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "TE69", + "local_code": "TE69", + "keywords": "Polly Ryon Memorial Hospital Heliport" + }, + { + "id": "24878", + "ident": "TE70", + "type": "closed", + "name": "Palmer Field", + "latitude_deg": "33.197688", + "longitude_deg": "-97.316201", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ponder", + "scheduled_service": "no", + "keywords": "TE70" + }, + { + "id": "24879", + "ident": "TE71", + "type": "small_airport", + "name": "GHSA-Wallis Glideport", + "latitude_deg": "29.611099", + "longitude_deg": "-96.027901", + "elevation_ft": "127", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wallis", + "scheduled_service": "no", + "gps_code": "TE71", + "local_code": "TE71" + }, + { + "id": "24880", + "ident": "TE72", + "type": "closed", + "name": "Haven Field", + "latitude_deg": "32.327099", + "longitude_deg": "-96.840201", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waxahachie", + "scheduled_service": "no", + "keywords": "TE72" + }, + { + "id": "24881", + "ident": "TE73", + "type": "small_airport", + "name": "Griffith Ranch Airport", + "latitude_deg": "29.855584", + "longitude_deg": "-94.353246", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Winnie", + "scheduled_service": "no", + "gps_code": "TE73", + "local_code": "TE73" + }, + { + "id": "24882", + "ident": "TE74", + "type": "small_airport", + "name": "Bucker Field", + "latitude_deg": "32.9536018371582", + "longitude_deg": "-95.86689758300781", + "elevation_ft": "485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Point", + "scheduled_service": "no", + "gps_code": "TE74", + "local_code": "TE74" + }, + { + "id": "24883", + "ident": "TE75", + "type": "small_airport", + "name": "Lexington Airfield", + "latitude_deg": "30.412500381469727", + "longitude_deg": "-96.9666976928711", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "TE75", + "local_code": "TE75" + }, + { + "id": "24884", + "ident": "TE76", + "type": "small_airport", + "name": "Vance Field", + "latitude_deg": "33.36830139160156", + "longitude_deg": "-97.68219757080078", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alvord", + "scheduled_service": "no", + "gps_code": "TE76", + "local_code": "TE76" + }, + { + "id": "24885", + "ident": "TE77", + "type": "small_airport", + "name": "Clover Lake Farms Airport", + "latitude_deg": "29.233699798583984", + "longitude_deg": "-95.47669982910156", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Angleton", + "scheduled_service": "no", + "gps_code": "TE77", + "local_code": "TE77" + }, + { + "id": "24886", + "ident": "TE78", + "type": "small_airport", + "name": "Fossil Creek Ranch Airport", + "latitude_deg": "29.568700790405273", + "longitude_deg": "-99.97450256347656", + "elevation_ft": "1325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Camp Wood", + "scheduled_service": "no", + "gps_code": "TE78", + "local_code": "TE78" + }, + { + "id": "24887", + "ident": "TE79", + "type": "heliport", + "name": "Hig Heliport", + "latitude_deg": "32.99570083618164", + "longitude_deg": "-96.9292984008789", + "elevation_ft": "455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Carrollton", + "scheduled_service": "no", + "gps_code": "TE79", + "local_code": "TE79" + }, + { + "id": "24888", + "ident": "TE80", + "type": "heliport", + "name": "Medical Center of Arlington Heliport", + "latitude_deg": "32.69219970703125", + "longitude_deg": "-97.11109924316406", + "elevation_ft": "664", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "TE80", + "local_code": "TE80" + }, + { + "id": "24889", + "ident": "TE81", + "type": "small_airport", + "name": "Smither Field", + "latitude_deg": "33.30970001220703", + "longitude_deg": "-97.0927963256836", + "elevation_ft": "655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Denton", + "scheduled_service": "no", + "gps_code": "TE81", + "local_code": "TE81" + }, + { + "id": "24890", + "ident": "TE82", + "type": "heliport", + "name": "5-State Heliport", + "latitude_deg": "32.9385986328125", + "longitude_deg": "-96.36750030517578", + "elevation_ft": "555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fate", + "scheduled_service": "no", + "gps_code": "TE82", + "local_code": "TE82" + }, + { + "id": "24891", + "ident": "TE83", + "type": "small_airport", + "name": "Westwind Ranch Airport", + "latitude_deg": "28.920799255371094", + "longitude_deg": "-99.756103515625", + "elevation_ft": "686", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "La Pryor", + "scheduled_service": "no", + "gps_code": "TE83", + "local_code": "TE83" + }, + { + "id": "24892", + "ident": "TE84", + "type": "small_airport", + "name": "Mockingbird Hill Airport", + "latitude_deg": "31.468038", + "longitude_deg": "-97.473385", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mc Gregor", + "scheduled_service": "no", + "gps_code": "TE84", + "local_code": "TE84" + }, + { + "id": "24893", + "ident": "TE85", + "type": "small_airport", + "name": "Marmack Airport", + "latitude_deg": "30.342199325561523", + "longitude_deg": "-95.66130065917969", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Montgomery", + "scheduled_service": "no", + "gps_code": "TE85", + "local_code": "TE85" + }, + { + "id": "24894", + "ident": "TE86", + "type": "small_airport", + "name": "Heritage Airfield", + "latitude_deg": "29.444400787353516", + "longitude_deg": "-98.11280059814453", + "elevation_ft": "555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "New Berlin", + "scheduled_service": "no", + "gps_code": "TE86", + "local_code": "TE86" + }, + { + "id": "24895", + "ident": "TE87", + "type": "small_airport", + "name": "Magee Airport", + "latitude_deg": "27.915800094604492", + "longitude_deg": "-97.32029724121094", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Portland", + "scheduled_service": "no", + "gps_code": "TE87", + "local_code": "TE87" + }, + { + "id": "24896", + "ident": "TE88", + "type": "small_airport", + "name": "BB Airpark", + "latitude_deg": "29.356955", + "longitude_deg": "-95.459023", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rosharon", + "scheduled_service": "no", + "gps_code": "TE88", + "local_code": "TE88" + }, + { + "id": "24897", + "ident": "TE89", + "type": "closed", + "name": "Verhalen Airport", + "latitude_deg": "32.537701", + "longitude_deg": "-94.236099", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Scottsville", + "scheduled_service": "no", + "keywords": "TE89" + }, + { + "id": "24898", + "ident": "TE90", + "type": "small_airport", + "name": "Flying L Airport", + "latitude_deg": "29.758899688720703", + "longitude_deg": "-99.15249633789062", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bandera", + "scheduled_service": "no", + "gps_code": "TE90", + "local_code": "TE90" + }, + { + "id": "24899", + "ident": "TE91", + "type": "small_airport", + "name": "Harrison Farm Airport", + "latitude_deg": "32.03929901123047", + "longitude_deg": "-95.08280181884766", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Troup", + "scheduled_service": "no", + "gps_code": "TE91", + "local_code": "TE91" + }, + { + "id": "24900", + "ident": "TE92", + "type": "small_airport", + "name": "Wales Air Field", + "latitude_deg": "31.59440040588379", + "longitude_deg": "-97.37090301513672", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no", + "gps_code": "TE92", + "local_code": "TE92" + }, + { + "id": "24901", + "ident": "TE93", + "type": "heliport", + "name": "Staggs Heliport", + "latitude_deg": "32.77180099487305", + "longitude_deg": "-97.73999786376953", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no", + "gps_code": "TE93", + "local_code": "TE93" + }, + { + "id": "24902", + "ident": "TE94", + "type": "heliport", + "name": "Starflight Facility Heliport", + "latitude_deg": "30.321283", + "longitude_deg": "-97.657488", + "elevation_ft": "554", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "TE94", + "local_code": "TE94" + }, + { + "id": "24903", + "ident": "TE95", + "type": "closed", + "name": "Deiterich Ranch Airport", + "latitude_deg": "30.753754", + "longitude_deg": "-98.146334", + "elevation_ft": "1385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bertram", + "scheduled_service": "no", + "keywords": "TE95" + }, + { + "id": "24904", + "ident": "TE96", + "type": "closed", + "name": "Crosswinds Airfield", + "latitude_deg": "30.433201", + "longitude_deg": "-97.412498", + "elevation_ft": "543", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Coupland", + "scheduled_service": "no", + "gps_code": "TE96", + "local_code": "TE96" + }, + { + "id": "24905", + "ident": "TE97", + "type": "small_airport", + "name": "Cameron Ranch Airport", + "latitude_deg": "30.18446", + "longitude_deg": "-98.959005", + "elevation_ft": "1760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fredericksburg", + "scheduled_service": "no", + "gps_code": "TE97", + "local_code": "TE97" + }, + { + "id": "24906", + "ident": "TE98", + "type": "heliport", + "name": "Frio Regional Hospital Heliport", + "latitude_deg": "28.8972", + "longitude_deg": "-99.117203", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pearsall", + "scheduled_service": "no", + "gps_code": "TE98", + "local_code": "TE98", + "keywords": "Air Evac Lifeteam Base 147 Heliport" + }, + { + "id": "24907", + "ident": "TE99", + "type": "small_airport", + "name": "Barnstormer Airport", + "latitude_deg": "32.020423", + "longitude_deg": "-97.253778", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Whitney", + "scheduled_service": "no", + "gps_code": "TE99", + "local_code": "TE99" + }, + { + "id": "302534", + "ident": "TEO", + "type": "small_airport", + "name": "Terapo Airport", + "latitude_deg": "-8.16972222222", + "longitude_deg": "146.194444444", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-GPK", + "municipality": "Terapo Mission", + "scheduled_service": "no", + "gps_code": "AYTY", + "iata_code": "TEO", + "local_code": "TPO" + }, + { + "id": "307336", + "ident": "TF-0001", + "type": "small_airport", + "name": "Tromelin Island Airstrip", + "latitude_deg": "-15.8916666667", + "longitude_deg": "54.5222222222", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "TF", + "iso_region": "TF-U-A", + "municipality": "Ile Tromelin", + "scheduled_service": "no" + }, + { + "id": "341266", + "ident": "TF-0002", + "type": "heliport", + "name": "Port-aux-Français Heliport", + "latitude_deg": "-49.35033", + "longitude_deg": "70.22033", + "continent": "AN", + "iso_country": "TF", + "iso_region": "TF-U-A", + "municipality": "Port-aux-Français", + "scheduled_service": "no" + }, + { + "id": "341267", + "ident": "TF-0003", + "type": "heliport", + "name": "Base Alfred Faure Heliport", + "latitude_deg": "-46.431689", + "longitude_deg": "51.857784", + "continent": "AN", + "iso_country": "TF", + "iso_region": "TF-U-A", + "municipality": "Base Alfred Faure", + "scheduled_service": "no" + }, + { + "id": "341497", + "ident": "TF-0004", + "type": "heliport", + "name": "Amsterdam Island Heliport", + "latitude_deg": "-37.79807", + "longitude_deg": "77.57229", + "continent": "AN", + "iso_country": "TF", + "iso_region": "TF-U-A", + "municipality": "Martin-de-Viviès", + "scheduled_service": "no" + }, + { + "id": "24909", + "ident": "TF8", + "type": "heliport", + "name": "Tinley Park Helistop", + "latitude_deg": "41.558884", + "longitude_deg": "-87.805992", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Tinley Park", + "scheduled_service": "no", + "local_code": "TF8" + }, + { + "id": "309430", + "ident": "TFB", + "type": "small_airport", + "name": "Tifalmin Airport", + "latitude_deg": "-5.1173", + "longitude_deg": "141.419", + "elevation_ft": "4735", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Tifalmin", + "scheduled_service": "no", + "gps_code": "AYTH", + "iata_code": "TFB", + "local_code": "TFM" + }, + { + "id": "30948", + "ident": "TFFA", + "type": "small_airport", + "name": "La Désirade Airport", + "latitude_deg": "16.296902", + "longitude_deg": "-61.0844", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "GP", + "iso_region": "GP-U-A", + "municipality": "Grande Anse", + "scheduled_service": "yes", + "gps_code": "TFFA", + "iata_code": "DSD", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_D%C3%A9sirade_Airport" + }, + { + "id": "30683", + "ident": "TFFB", + "type": "small_airport", + "name": "Basse-Terre Baillif Airport", + "latitude_deg": "16.013648", + "longitude_deg": "-61.742928", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "GP", + "iso_region": "GP-U-A", + "municipality": "Basse-Terre", + "scheduled_service": "yes", + "gps_code": "TFFB", + "iata_code": "BBR" + }, + { + "id": "32286", + "ident": "TFFC", + "type": "small_airport", + "name": "St-François Airport", + "latitude_deg": "16.257799", + "longitude_deg": "-61.262501", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "GP", + "iso_region": "GP-U-A", + "municipality": "St-François", + "scheduled_service": "yes", + "gps_code": "TFFC", + "iata_code": "SFC" + }, + { + "id": "6363", + "ident": "TFFF", + "type": "large_airport", + "name": "Martinique Aimé Césaire International Airport", + "latitude_deg": "14.591", + "longitude_deg": "-61.003201", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "MQ", + "iso_region": "MQ-U-A", + "municipality": "Fort-de-France", + "scheduled_service": "yes", + "gps_code": "TFFF", + "iata_code": "FDF", + "home_link": "http://www.martinique.aeroport.fr/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Martinique_Aim%C3%A9_C%C3%A9saire_International_Airport", + "keywords": "Le Lamentin Airport" + }, + { + "id": "6364", + "ident": "TFFG", + "type": "medium_airport", + "name": "Grand Case-Espérance Airport", + "latitude_deg": "18.099899", + "longitude_deg": "-63.047199", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "MF", + "iso_region": "MF-U-A", + "municipality": "Grand Case", + "scheduled_service": "yes", + "gps_code": "TFFG", + "iata_code": "SFG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Case-Esp%C3%A9rance_Airport", + "keywords": "Aérodrome de Grand-Case Espérance, CCE" + }, + { + "id": "32249", + "ident": "TFFJ", + "type": "medium_airport", + "name": "Saint Barthélemy - Rémy de Haenen Airport", + "latitude_deg": "17.9044", + "longitude_deg": "-62.843601", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "BL", + "iso_region": "BL-U-A", + "municipality": "Gustavia / Saint-Jean", + "scheduled_service": "yes", + "gps_code": "TFFJ", + "iata_code": "SBH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gustaf_III_Airport", + "keywords": "Saint Barthélemy Airport, St. Jean Airport, Aérodrome de St Jean, Saint Barth, St. Barts" + }, + { + "id": "6365", + "ident": "TFFM", + "type": "medium_airport", + "name": "Les Bases Airport", + "latitude_deg": "15.86870002746582", + "longitude_deg": "-61.27000045776367", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "GP", + "iso_region": "GP-U-A", + "municipality": "Grand Bourg", + "scheduled_service": "yes", + "gps_code": "TFFM", + "iata_code": "GBJ", + "keywords": "Marie Galante" + }, + { + "id": "6366", + "ident": "TFFR", + "type": "large_airport", + "name": "Pointe-à-Pitre Le Raizet International Airport", + "latitude_deg": "16.265301", + "longitude_deg": "-61.531799", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "GP", + "iso_region": "GP-U-A", + "municipality": "Pointe-à-Pitre", + "scheduled_service": "yes", + "gps_code": "TFFR", + "iata_code": "PTP", + "home_link": "http://www.guadeloupe.aeroport.fr/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pointe-%C3%A0-Pitre_International_Airport", + "keywords": "Le Raizet, Les Abymes" + }, + { + "id": "31853", + "ident": "TFFS", + "type": "small_airport", + "name": "Terre-de-Haut Airport", + "latitude_deg": "15.86439991", + "longitude_deg": "-61.5806007385", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "GP", + "iso_region": "GP-U-A", + "municipality": "Les Saintes", + "scheduled_service": "no", + "gps_code": "TFFS", + "iata_code": "LSS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Les_Saintes_Airport" + }, + { + "id": "309431", + "ident": "TFY", + "type": "small_airport", + "name": "Tarfaya Airport", + "latitude_deg": "27.9487", + "longitude_deg": "-12.9166", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "MA", + "iso_region": "MA-LAA", + "municipality": "Tarfaya", + "scheduled_service": "no", + "local_code": "TFY", + "keywords": "Cap-Juby, AG11082" + }, + { + "id": "307191", + "ident": "TGL", + "type": "small_airport", + "name": "Tagula Airport", + "latitude_deg": "-11.3311111111", + "longitude_deg": "153.202916667", + "elevation_ft": "59", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Sudest Island", + "scheduled_service": "no", + "gps_code": "AYTG", + "iata_code": "TGL", + "local_code": "TAG" + }, + { + "id": "6367", + "ident": "TGPY", + "type": "medium_airport", + "name": "Point Salines International Airport", + "latitude_deg": "12.004199981689453", + "longitude_deg": "-61.78620147705078", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "GD", + "iso_region": "GD-GE", + "municipality": "Saint George's", + "scheduled_service": "yes", + "gps_code": "TGPY", + "iata_code": "GND", + "home_link": "http://www.psiagrenada.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Point_Salines_International_Airport" + }, + { + "id": "30852", + "ident": "TGPZ", + "type": "small_airport", + "name": "Lauriston Airport", + "latitude_deg": "12.4761", + "longitude_deg": "-61.472801", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "GD", + "iso_region": "GD-PA", + "municipality": "Carriacou Island", + "scheduled_service": "yes", + "gps_code": "TGPZ", + "iata_code": "CRU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lauriston_Airport" + }, + { + "id": "302324", + "ident": "TH-0001", + "type": "small_airport", + "name": "Eastern Flying Club Airport", + "latitude_deg": "12.902439", + "longitude_deg": "100.933227", + "elevation_ft": "160", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-20", + "municipality": "Pattaya (Bang Lamung)", + "scheduled_service": "no", + "local_code": "EFC", + "home_link": "http://www.thaiflyingclub.com/linkairporteastern.html", + "keywords": "Jims" + }, + { + "id": "339376", + "ident": "TH-0002", + "type": "small_airport", + "name": "Khlong Si Airfield", + "latitude_deg": "14.170617", + "longitude_deg": "100.691757", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-13", + "municipality": "Khlong Si", + "scheduled_service": "no" + }, + { + "id": "308758", + "ident": "TH-0003", + "type": "small_airport", + "name": "Klong 15 Airfield", + "latitude_deg": "14.114705", + "longitude_deg": "100.949485", + "elevation_ft": "15", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-26", + "scheduled_service": "no" + }, + { + "id": "308759", + "ident": "TH-0004", + "type": "small_airport", + "name": "Prachom Klao Airfield", + "latitude_deg": "14.163603", + "longitude_deg": "101.337118", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-25", + "municipality": "Prachin Buri", + "scheduled_service": "no" + }, + { + "id": "339377", + "ident": "TH-0005", + "type": "small_airport", + "name": "Lektop-Thames Airport", + "latitude_deg": "14.03662", + "longitude_deg": "100.69448", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-13", + "municipality": "Khlong Luang", + "scheduled_service": "no" + }, + { + "id": "339378", + "ident": "TH-0006", + "type": "small_airport", + "name": "Thung Si Kan Airport", + "latitude_deg": "13.94571", + "longitude_deg": "100.57441", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-10", + "municipality": "Don Mueang", + "scheduled_service": "no" + }, + { + "id": "339379", + "ident": "TH-0007", + "type": "small_airport", + "name": "Chanthaburi Airstrip", + "latitude_deg": "12.63247", + "longitude_deg": "102.02603", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-22", + "municipality": "Khao Wua", + "scheduled_service": "no", + "gps_code": "VTBC" + }, + { + "id": "339380", + "ident": "TH-0008", + "type": "small_airport", + "name": "Koh Mai Si Airport", + "latitude_deg": "11.71678", + "longitude_deg": "102.51975", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-23", + "municipality": "Ko Kut", + "scheduled_service": "no" + }, + { + "id": "339964", + "ident": "TH-0009", + "type": "heliport", + "name": "Khao Khitchakut Heliport", + "latitude_deg": "12.836021", + "longitude_deg": "102.168767", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-22", + "municipality": "Khao Khitchakut", + "scheduled_service": "no" + }, + { + "id": "339965", + "ident": "TH-0010", + "type": "small_airport", + "name": "Klaeng Airfield", + "latitude_deg": "12.709905", + "longitude_deg": "101.630542", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-21", + "municipality": "Klaeng", + "scheduled_service": "no" + }, + { + "id": "339966", + "ident": "TH-0011", + "type": "small_airport", + "name": "Nong Khor Airfield", + "latitude_deg": "13.14027", + "longitude_deg": "101.04642", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-20", + "municipality": "Si Racha", + "scheduled_service": "no" + }, + { + "id": "339967", + "ident": "TH-0012", + "type": "small_airport", + "name": "Bang Phra Ultralightport", + "latitude_deg": "13.236033", + "longitude_deg": "100.994902", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-20", + "municipality": "Bang Phra", + "scheduled_service": "no" + }, + { + "id": "339968", + "ident": "TH-0013", + "type": "small_airport", + "name": "Ko Chan Airport", + "latitude_deg": "13.3938", + "longitude_deg": "101.32055", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-20", + "municipality": "Ko Chan", + "scheduled_service": "no" + }, + { + "id": "339969", + "ident": "TH-0014", + "type": "small_airport", + "name": "Supawan Mini Airfield", + "latitude_deg": "13.85782", + "longitude_deg": "100.32493", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-12", + "municipality": "Bang Yai", + "scheduled_service": "no" + }, + { + "id": "339970", + "ident": "TH-0015", + "type": "small_airport", + "name": "Best Ocean Airpark", + "latitude_deg": "13.54018", + "longitude_deg": "100.32936", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-74", + "municipality": "Samut Sakhon", + "scheduled_service": "no" + }, + { + "id": "339971", + "ident": "TH-0016", + "type": "small_airport", + "name": "Camp Burachat (Sanam Luang) Airfield", + "latitude_deg": "13.57376", + "longitude_deg": "99.75296", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-70", + "municipality": "Ratchaburi", + "scheduled_service": "no" + }, + { + "id": "339972", + "ident": "TH-0017", + "type": "small_airport", + "name": "Kaeng Krachan Airfield", + "latitude_deg": "12.87173", + "longitude_deg": "99.79265", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-67", + "municipality": "Tha Yang", + "scheduled_service": "no" + }, + { + "id": "339973", + "ident": "TH-0018", + "type": "small_airport", + "name": "Pran Buri Airport", + "latitude_deg": "12.38962", + "longitude_deg": "99.95801", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-77", + "municipality": "Pran Buri", + "scheduled_service": "no" + }, + { + "id": "339974", + "ident": "TH-0019", + "type": "small_airport", + "name": "Ratthaphum Airfield", + "latitude_deg": "7.1349", + "longitude_deg": "100.33063", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-90", + "municipality": "Rattaphum", + "scheduled_service": "no" + }, + { + "id": "339975", + "ident": "TH-0020", + "type": "heliport", + "name": "Khuan Timun Helipad", + "latitude_deg": "6.83411", + "longitude_deg": "101.02211", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-90", + "municipality": "Thepha", + "scheduled_service": "no" + }, + { + "id": "314031", + "ident": "TH-0021", + "type": "small_airport", + "name": "Phanom Sarakham Airport", + "latitude_deg": "13.7553", + "longitude_deg": "101.395", + "elevation_ft": "166", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-24", + "municipality": "Phanom Sarakham", + "scheduled_service": "no", + "local_code": "PMM" + }, + { + "id": "353794", + "ident": "TH-0022", + "type": "small_airport", + "name": "Old Betong Airport", + "latitude_deg": "5.78161", + "longitude_deg": "101.159256", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-95", + "municipality": "Betong", + "scheduled_service": "no", + "keywords": "Original Betong" + }, + { + "id": "354701", + "ident": "TH-0023", + "type": "small_airport", + "name": "Banana", + "latitude_deg": "13.14421", + "longitude_deg": "101.106062", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-20", + "municipality": "Si Racha District", + "scheduled_service": "no" + }, + { + "id": "354704", + "ident": "TH-0024", + "type": "small_airport", + "name": "Vanchanphen Airpark", + "latitude_deg": "13.94495", + "longitude_deg": "102.00432", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-27", + "scheduled_service": "no" + }, + { + "id": "354707", + "ident": "TH-0025", + "type": "small_airport", + "name": "Dropzone Thailand Airport", + "latitude_deg": "12.6714", + "longitude_deg": "101.5476", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-21", + "municipality": "Klaeng", + "scheduled_service": "no" + }, + { + "id": "354709", + "ident": "TH-0026", + "type": "small_airport", + "name": "Nong Prue Airport", + "latitude_deg": "12.893226", + "longitude_deg": "100.96015", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-20", + "municipality": "Pattaya", + "scheduled_service": "no" + }, + { + "id": "354713", + "ident": "TH-0027", + "type": "small_airport", + "name": "Lanna Airfield", + "latitude_deg": "18.67614", + "longitude_deg": "99.10522", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-50", + "scheduled_service": "no" + }, + { + "id": "354715", + "ident": "TH-0028", + "type": "small_airport", + "name": "Saha Group Airport", + "latitude_deg": "13.09147", + "longitude_deg": "100.96813", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-20", + "municipality": "Si Racha", + "scheduled_service": "no" + }, + { + "id": "356360", + "ident": "TH-0029", + "type": "small_airport", + "name": "Seri Thai Airport", + "latitude_deg": "16.77324", + "longitude_deg": "104.03372", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-46", + "municipality": "Na Khu", + "scheduled_service": "no" + }, + { + "id": "356361", + "ident": "TH-0030", + "type": "small_airport", + "name": "Kut Kho Kan Airport", + "latitude_deg": "16.15866", + "longitude_deg": "104.59257", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-35", + "municipality": "Kut Kho Kan", + "scheduled_service": "no" + }, + { + "id": "356370", + "ident": "TH-0031", + "type": "closed", + "name": "Ko Pha-ngan Airport", + "latitude_deg": "9.741118", + "longitude_deg": "100.070686", + "elevation_ft": "900", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-84", + "municipality": "Pha-ngan Island", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ko_Pha-ngan_Airport" + }, + { + "id": "429711", + "ident": "TH-0032", + "type": "small_airport", + "name": "Pattaya Huai Yai Airport", + "latitude_deg": "12.8351", + "longitude_deg": "100.98118", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-20", + "municipality": "Pattaya (Bang Lamung)", + "scheduled_service": "no" + }, + { + "id": "429712", + "ident": "TH-0033", + "type": "small_airport", + "name": "Storm Airport", + "latitude_deg": "13.99575", + "longitude_deg": "100.36536", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-13", + "municipality": "Lat Lum Kaeo", + "scheduled_service": "no" + }, + { + "id": "429713", + "ident": "TH-0034", + "type": "small_airport", + "name": "TFT Airfield", + "latitude_deg": "14.08045", + "longitude_deg": "100.852589", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-13", + "municipality": "Nong Suea", + "scheduled_service": "no" + }, + { + "id": "429714", + "ident": "TH-0035", + "type": "small_airport", + "name": "Lektop-Thames Airport Number 2", + "latitude_deg": "14.11717", + "longitude_deg": "100.76169", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-13", + "municipality": "Nong Suea", + "scheduled_service": "no" + }, + { + "id": "429715", + "ident": "TH-0036", + "type": "small_airport", + "name": "Kabin Buri Airport", + "latitude_deg": "14.01966", + "longitude_deg": "101.70217", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-25", + "municipality": "Kabin Buri", + "scheduled_service": "no" + }, + { + "id": "429716", + "ident": "TH-0037", + "type": "small_airport", + "name": "Lat Ya Army Airfield", + "latitude_deg": "14.125242", + "longitude_deg": "99.446955", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-71", + "municipality": "Kanchanaburi", + "scheduled_service": "no" + }, + { + "id": "429717", + "ident": "TH-0038", + "type": "small_airport", + "name": "River Kwai Airfield", + "latitude_deg": "14.06445", + "longitude_deg": "99.36168", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-71", + "municipality": "Kanchanaburi", + "scheduled_service": "no" + }, + { + "id": "429718", + "ident": "TH-0039", + "type": "small_airport", + "name": "Hinzon Airport", + "latitude_deg": "13.77697", + "longitude_deg": "101.61345", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-25", + "municipality": "Si Maha Phot", + "scheduled_service": "no" + }, + { + "id": "429719", + "ident": "TH-0040", + "type": "small_airport", + "name": "Khanong Phra Airport", + "latitude_deg": "14.63123", + "longitude_deg": "101.4659", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-30", + "municipality": "Khanong Phra", + "scheduled_service": "no" + }, + { + "id": "313984", + "ident": "THW", + "type": "seaplane_base", + "name": "Trincomalee Harbor Waterdrome", + "latitude_deg": "8.56", + "longitude_deg": "81.22", + "elevation_ft": "0", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-5", + "municipality": "Trincomalee", + "scheduled_service": "no", + "iata_code": "THW" + }, + { + "id": "312748", + "ident": "TIG", + "type": "closed", + "name": "Tingwon Airport", + "latitude_deg": "-2.6053", + "longitude_deg": "149.7107", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NIK", + "municipality": "Tingwon Island", + "scheduled_service": "no", + "iata_code": "TIG" + }, + { + "id": "6369", + "ident": "TIST", + "type": "medium_airport", + "name": "Cyril E. King Airport", + "latitude_deg": "18.337091", + "longitude_deg": "-64.977251", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "VI", + "iso_region": "VI-U-A", + "municipality": "Charlotte Amalie", + "scheduled_service": "yes", + "gps_code": "TIST", + "iata_code": "STT", + "local_code": "STT", + "home_link": "http://www.viport.com/airports.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cyril_E._King_Airport", + "keywords": "Harry S. Truman Airport" + }, + { + "id": "6370", + "ident": "TISX", + "type": "medium_airport", + "name": "Henry E Rohlsen Airport", + "latitude_deg": "17.701900482177734", + "longitude_deg": "-64.79859924316406", + "elevation_ft": "74", + "continent": "NA", + "iso_country": "VI", + "iso_region": "VI-U-A", + "municipality": "Christiansted", + "scheduled_service": "yes", + "gps_code": "TISX", + "iata_code": "STX", + "local_code": "STX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Henry_E._Rohlsen_Airport" + }, + { + "id": "44385", + "ident": "TJ-0001", + "type": "small_airport", + "name": "Dzhirgatal Airport", + "latitude_deg": "39.221141", + "longitude_deg": "71.207804", + "continent": "AS", + "iso_country": "TJ", + "iso_region": "TJ-RR", + "municipality": "Dzhirgatal", + "scheduled_service": "no", + "keywords": "Аэропорт Джиргаталь" + }, + { + "id": "44404", + "ident": "TJ-0002", + "type": "small_airport", + "name": "Dusti Airfield", + "latitude_deg": "37.369998931884766", + "longitude_deg": "68.68399810791016", + "continent": "AS", + "iso_country": "TJ", + "iso_region": "TJ-KT", + "municipality": "Dusti", + "scheduled_service": "no", + "keywords": "Аэродром Дусти" + }, + { + "id": "300330", + "ident": "TJ-0003", + "type": "small_airport", + "name": "Ayni Airport", + "latitude_deg": "39.405555555599996", + "longitude_deg": "68.5227777778", + "elevation_ft": "4655", + "continent": "AS", + "iso_country": "TJ", + "iso_region": "TJ-SU", + "municipality": "Ayni", + "scheduled_service": "no" + }, + { + "id": "300331", + "ident": "TJ-0004", + "type": "small_airport", + "name": "Penjikent Airport", + "latitude_deg": "39.482222222199994", + "longitude_deg": "67.6055555556", + "elevation_ft": "3400", + "continent": "AS", + "iso_country": "TJ", + "iso_region": "TJ-SU", + "municipality": "Panjakent", + "scheduled_service": "no" + }, + { + "id": "300332", + "ident": "TJ-0005", + "type": "small_airport", + "name": "Garm Airport", + "latitude_deg": "39.0038888889", + "longitude_deg": "70.2902777778", + "elevation_ft": "4280", + "continent": "AS", + "iso_country": "TJ", + "iso_region": "TJ-RR", + "municipality": "Garm", + "scheduled_service": "no" + }, + { + "id": "333191", + "ident": "TJ-0006", + "type": "small_airport", + "name": "Panj Airport", + "latitude_deg": "37.256862", + "longitude_deg": "69.092327", + "elevation_ft": "1237", + "continent": "AS", + "iso_country": "TJ", + "iso_region": "TJ-KT", + "municipality": "Panj", + "scheduled_service": "no" + }, + { + "id": "333192", + "ident": "TJ-0007", + "type": "small_airport", + "name": "Danghara Airport", + "latitude_deg": "38.078537", + "longitude_deg": "69.320385", + "elevation_ft": "2089", + "continent": "AS", + "iso_country": "TJ", + "iso_region": "TJ-KT", + "municipality": "Danghara", + "scheduled_service": "no" + }, + { + "id": "341244", + "ident": "TJ-0008", + "type": "small_airport", + "name": "Ishkoshim Regional Airport", + "latitude_deg": "36.73138", + "longitude_deg": "71.597087", + "continent": "AS", + "iso_country": "TJ", + "iso_region": "TJ-GB", + "municipality": "Ishkoshim", + "scheduled_service": "no" + }, + { + "id": "430068", + "ident": "TJ-0009", + "type": "small_airport", + "name": "Kanibadam Airport", + "latitude_deg": "40.34394", + "longitude_deg": "70.512219", + "elevation_ft": "1594", + "continent": "AS", + "iso_country": "TJ", + "iso_region": "TJ-SU", + "municipality": "Kanibadam", + "scheduled_service": "no" + }, + { + "id": "6374", + "ident": "TJ-UT44", + "type": "small_airport", + "name": "Murghab Airport", + "latitude_deg": "38.190399169921875", + "longitude_deg": "74.02469635009766", + "elevation_ft": "11962", + "continent": "AS", + "iso_country": "TJ", + "iso_region": "TJ-GB", + "municipality": "Murghab", + "scheduled_service": "no", + "keywords": "UT44, Murgab, Мурғоб, مرغاب" + }, + { + "id": "6375", + "ident": "TJ-UT45", + "type": "medium_airport", + "name": "Gissar Air Base", + "latitude_deg": "38.512298584", + "longitude_deg": "68.67250061040001", + "elevation_ft": "2379", + "continent": "AS", + "iso_country": "TJ", + "iso_region": "TJ-RR", + "municipality": "Dushanbe", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gissar_Air_Base", + "keywords": "UT45, Душанбе, Stalinabad" + }, + { + "id": "6376", + "ident": "TJ-UT46", + "type": "medium_airport", + "name": "Farkhor Air Base", + "latitude_deg": "37.46979904169999", + "longitude_deg": "69.3807983398", + "elevation_ft": "1450", + "continent": "AS", + "iso_country": "TJ", + "iso_region": "TJ-KT", + "municipality": "Parkhar", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Farkhor_Air_Base", + "keywords": "Parkhar South Airport, UT46" + }, + { + "id": "6378", + "ident": "TJAB", + "type": "medium_airport", + "name": "Antonio Nery Juarbe Pol Airport", + "latitude_deg": "18.45085", + "longitude_deg": "-66.675768", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Arecibo", + "scheduled_service": "no", + "gps_code": "TJAB", + "iata_code": "ARE", + "local_code": "ABO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Antonio_(Nery)_Juarbe_Pol_Airport" + }, + { + "id": "6379", + "ident": "TJBQ", + "type": "medium_airport", + "name": "Rafael Hernández International Airport", + "latitude_deg": "18.4949", + "longitude_deg": "-67.129402", + "elevation_ft": "237", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Aguadilla", + "scheduled_service": "yes", + "gps_code": "TJBQ", + "iata_code": "BQN", + "local_code": "BQN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rafael_Hern%C3%A1ndez_Airport", + "keywords": "Ramey, TJFF" + }, + { + "id": "315014", + "ident": "TJC", + "type": "small_airport", + "name": "Ticantiki Airport", + "latitude_deg": "9.4185", + "longitude_deg": "-78.4896", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Ticantiqui", + "scheduled_service": "no", + "iata_code": "TJC" + }, + { + "id": "42319", + "ident": "TJCG", + "type": "closed", + "name": "Vieques Airport", + "latitude_deg": "18.115801", + "longitude_deg": "-65.422699", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Vieques Island", + "scheduled_service": "no", + "keywords": "TJCQ, VQS" + }, + { + "id": "42320", + "ident": "TJCP", + "type": "small_airport", + "name": "Benjamin Rivera Noriega Airport", + "latitude_deg": "18.312954", + "longitude_deg": "-65.303893", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Culebra", + "scheduled_service": "no", + "gps_code": "TJCP", + "iata_code": "CPX", + "local_code": "CPX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Benjam%C3%ADn_Rivera_Noriega_Airport", + "keywords": "Culebra Airport" + }, + { + "id": "6380", + "ident": "TJFA", + "type": "closed", + "name": "Diego Jiménez Torres Airport", + "latitude_deg": "18.308901", + "longitude_deg": "-65.661903", + "elevation_ft": "64", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Fajardo", + "scheduled_service": "no", + "iata_code": "FAJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Diego_Jim%C3%A9nez_Torres_Airport", + "keywords": "FAJ, TJFA, X95" + }, + { + "id": "6381", + "ident": "TJIG", + "type": "medium_airport", + "name": "Fernando Luis Ribas Dominicci Airport", + "latitude_deg": "18.45680046081543", + "longitude_deg": "-66.09809875488281", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "San Juan", + "scheduled_service": "yes", + "gps_code": "TJIG", + "iata_code": "SIG", + "local_code": "SIG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fernando_Luis_Ribas_Dominicci_Airport", + "keywords": "Isla Grande" + }, + { + "id": "6382", + "ident": "TJMZ", + "type": "medium_airport", + "name": "Eugenio Maria De Hostos Airport", + "latitude_deg": "18.255699157714844", + "longitude_deg": "-67.14849853515625", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Mayaguez", + "scheduled_service": "yes", + "gps_code": "TJMZ", + "iata_code": "MAZ", + "local_code": "MAZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eugenio_Mar%C3%ADa_de_Hostos_Airport" + }, + { + "id": "6383", + "ident": "TJPS", + "type": "medium_airport", + "name": "Mercedita Airport", + "latitude_deg": "18.00830078125", + "longitude_deg": "-66.56300354003906", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Ponce", + "scheduled_service": "yes", + "gps_code": "TJPS", + "iata_code": "PSE", + "local_code": "PSE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mercedita_Airport" + }, + { + "id": "42321", + "ident": "TJRV", + "type": "small_airport", + "name": "José Aponte de la Torre Airport", + "latitude_deg": "18.2453", + "longitude_deg": "-65.643402", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Ceiba", + "scheduled_service": "yes", + "gps_code": "TJRV", + "iata_code": "NRR", + "local_code": "RVR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jos%C3%A9_Aponte_de_la_Torre_Airport", + "keywords": "Ceiba International Airport, NAS Roosevelt Roads, NRR, TJNR" + }, + { + "id": "6384", + "ident": "TJSJ", + "type": "large_airport", + "name": "Luis Munoz Marin International Airport", + "latitude_deg": "18.4393997192", + "longitude_deg": "-66.0018005371", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "San Juan", + "scheduled_service": "yes", + "gps_code": "TJSJ", + "iata_code": "SJU", + "local_code": "SJU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Luis_Mu%C3%B1oz_Mar%C3%ADn_International_Airport", + "keywords": "Isla Verde" + }, + { + "id": "6385", + "ident": "TJVQ", + "type": "small_airport", + "name": "Antonio Rivera Rodriguez Airport", + "latitude_deg": "18.1348", + "longitude_deg": "-65.493599", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Vieques", + "scheduled_service": "no", + "gps_code": "TJVQ", + "iata_code": "VQS", + "local_code": "VQS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Antonio_Rivera_Rodr%C3%ADguez_Airport" + }, + { + "id": "24911", + "ident": "TKE", + "type": "seaplane_base", + "name": "Tenakee Seaplane Base", + "latitude_deg": "57.77970123291", + "longitude_deg": "-135.21800231934", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tenakee Springs", + "scheduled_service": "no", + "gps_code": "TKE", + "iata_code": "TKE", + "local_code": "TKE", + "home_link": "http://www.tenakeespringsak.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tenakee_Seaplane_Base" + }, + { + "id": "24913", + "ident": "TKL", + "type": "seaplane_base", + "name": "Taku Lodge Seaplane Base", + "latitude_deg": "58.4897003174", + "longitude_deg": "-133.942993164", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Taku Lodge", + "scheduled_service": "no", + "gps_code": "TKL", + "iata_code": "TKL", + "local_code": "TKL" + }, + { + "id": "6386", + "ident": "TKPK", + "type": "medium_airport", + "name": "Robert L. Bradshaw International Airport", + "latitude_deg": "17.311199188232422", + "longitude_deg": "-62.71870040893555", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "KN", + "iso_region": "KN-U-A", + "municipality": "Basseterre", + "scheduled_service": "yes", + "gps_code": "TKPK", + "iata_code": "SKB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Robert_L._Bradshaw_International_Airport" + }, + { + "id": "6387", + "ident": "TKPN", + "type": "medium_airport", + "name": "Vance W. Amory International Airport", + "latitude_deg": "17.205699920654297", + "longitude_deg": "-62.589900970458984", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "KN", + "iso_region": "KN-U-A", + "municipality": "Charlestown", + "scheduled_service": "yes", + "gps_code": "TKPN", + "iata_code": "NEV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vance_W._Amory_International_Airport", + "keywords": "Nevis, Bambooshay Airport, Newcastle Airport" + }, + { + "id": "324707", + "ident": "TL-0001", + "type": "small_airport", + "name": "Lospalos Airfield", + "latitude_deg": "-8.455563", + "longitude_deg": "126.975861", + "continent": "AS", + "iso_country": "TL", + "iso_region": "TL-LA", + "municipality": "Lospalos", + "scheduled_service": "no", + "keywords": "Lospalos" + }, + { + "id": "324720", + "ident": "TL-0002", + "type": "closed", + "name": "Ahi Ru Airfield", + "latitude_deg": "-8.670092", + "longitude_deg": "127.022542", + "continent": "AS", + "iso_country": "TL", + "iso_region": "TL-LA", + "municipality": "Lori", + "scheduled_service": "no", + "keywords": "Ahi Ru, Lori" + }, + { + "id": "307239", + "ident": "TLP", + "type": "small_airport", + "name": "Tumolbil Airport", + "latitude_deg": "-4.7748", + "longitude_deg": "141.0133", + "elevation_ft": "3590", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-SAN", + "municipality": "Tumolbil", + "scheduled_service": "no", + "gps_code": "AYQL", + "iata_code": "TLP", + "local_code": "TUM" + }, + { + "id": "6388", + "ident": "TLPC", + "type": "medium_airport", + "name": "George F. L. Charles Airport", + "latitude_deg": "14.0202", + "longitude_deg": "-60.992901", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "LC", + "iso_region": "LC-02", + "municipality": "Castries", + "scheduled_service": "yes", + "gps_code": "TLPC", + "iata_code": "SLU", + "home_link": "http://www.slaspa.com/contentPages/view/george-f-l-charles-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/George_F._L._Charles_Airport", + "keywords": "Vigie Airport" + }, + { + "id": "6389", + "ident": "TLPL", + "type": "large_airport", + "name": "Hewanorra International Airport", + "latitude_deg": "13.7332", + "longitude_deg": "-60.952599", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "LC", + "iso_region": "LC-11", + "municipality": "Vieux Fort", + "scheduled_service": "yes", + "gps_code": "TLPL", + "iata_code": "UVF", + "home_link": "http://www.slaspa.com/contentPages/view/hewanorra-international-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hewanorra_International_Airport" + }, + { + "id": "24914", + "ident": "TLT", + "type": "small_airport", + "name": "Tuluksak Airport", + "latitude_deg": "61.086973", + "longitude_deg": "-160.922842", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tuluksak", + "scheduled_service": "no", + "gps_code": "PALT", + "iata_code": "TLT", + "local_code": "TLT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tuluksak_Airport" + }, + { + "id": "44342", + "ident": "TM-0001", + "type": "small_airport", + "name": "Garabogaz (Bekdash) Airport", + "latitude_deg": "41.546672", + "longitude_deg": "52.611931", + "elevation_ft": "-77", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-B", + "municipality": "Garabogaz", + "scheduled_service": "no", + "keywords": "Аэропорт Бекдаш, Bekdash" + }, + { + "id": "44383", + "ident": "TM-0002", + "type": "closed", + "name": "Dzhebel Air Base", + "latitude_deg": "39.681052", + "longitude_deg": "54.206008", + "elevation_ft": "-26", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-B", + "municipality": "Dzhebel", + "scheduled_service": "no", + "keywords": "Аэродром Джебел" + }, + { + "id": "44420", + "ident": "TM-0003", + "type": "small_airport", + "name": "Gyaurs (Gawers) Airfield", + "latitude_deg": "37.853775", + "longitude_deg": "58.789127", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-A", + "municipality": "Gyaurs", + "scheduled_service": "no", + "keywords": "Аэродром Гяурс" + }, + { + "id": "44980", + "ident": "TM-0004", + "type": "small_airport", + "name": "Kizyl Atrek Northwest Airport", + "latitude_deg": "37.7489497946", + "longitude_deg": "54.679877758", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-B", + "scheduled_service": "no" + }, + { + "id": "44983", + "ident": "TM-0005", + "type": "small_airport", + "name": "Kizyl Atrek West Airport", + "latitude_deg": "37.6529245108", + "longitude_deg": "54.7513103485", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-B", + "scheduled_service": "no" + }, + { + "id": "340406", + "ident": "TM-0006", + "type": "heliport", + "name": "Military Institute Heliport", + "latitude_deg": "37.927391", + "longitude_deg": "58.382454", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-S", + "municipality": "Ashgabat", + "scheduled_service": "no" + }, + { + "id": "340407", + "ident": "TM-0007", + "type": "heliport", + "name": "State Tribune Heliport", + "latitude_deg": "37.935809", + "longitude_deg": "58.377721", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-S", + "municipality": "Ashgabat", + "scheduled_service": "no" + }, + { + "id": "340408", + "ident": "TM-0008", + "type": "heliport", + "name": "Ministry of National Security and State Border Service Academy Heliport", + "latitude_deg": "37.913477", + "longitude_deg": "58.375071", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-S", + "municipality": "Ashgabat", + "scheduled_service": "no" + }, + { + "id": "340409", + "ident": "TM-0009", + "type": "heliport", + "name": "Infectious Diseases Management Center Heliport", + "latitude_deg": "38.006674", + "longitude_deg": "58.430019", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-S", + "municipality": "Ashgabat", + "scheduled_service": "no" + }, + { + "id": "340410", + "ident": "TM-0010", + "type": "heliport", + "name": "Cardiology Center Heliport", + "latitude_deg": "37.940432", + "longitude_deg": "58.364157", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-S", + "municipality": "Ashgabat", + "scheduled_service": "no" + }, + { + "id": "340411", + "ident": "TM-0011", + "type": "heliport", + "name": "Awaza Heliport", + "latitude_deg": "39.91011", + "longitude_deg": "52.90693", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-B", + "municipality": "Awaza", + "scheduled_service": "no" + }, + { + "id": "340412", + "ident": "TM-0012", + "type": "heliport", + "name": "Tarta Heliport", + "latitude_deg": "40.004694", + "longitude_deg": "52.773218", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-B", + "municipality": "Awaza", + "scheduled_service": "no" + }, + { + "id": "340413", + "ident": "TM-0013", + "type": "heliport", + "name": "Turkmenbashi Naval Base Heliport", + "latitude_deg": "39.985091", + "longitude_deg": "53.113749", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-B", + "municipality": "Dzhanga", + "scheduled_service": "no" + }, + { + "id": "340414", + "ident": "TM-0014", + "type": "heliport", + "name": "Turkmenbashi Naval Barracks Helipad", + "latitude_deg": "39.994327", + "longitude_deg": "53.124179", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-B", + "municipality": "Dzhanga", + "scheduled_service": "no" + }, + { + "id": "340415", + "ident": "TM-0015", + "type": "heliport", + "name": "Dzhanga Heliport", + "latitude_deg": "39.995549", + "longitude_deg": "53.125238", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-B", + "municipality": "Dzhanga", + "scheduled_service": "no" + }, + { + "id": "340416", + "ident": "TM-0016", + "type": "heliport", + "name": "Mollagara Heliport", + "latitude_deg": "39.626647", + "longitude_deg": "54.17339", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-B", + "municipality": "Mollagara", + "scheduled_service": "no" + }, + { + "id": "340417", + "ident": "TM-0017", + "type": "heliport", + "name": "Belek Heliport", + "latitude_deg": "39.941349", + "longitude_deg": "53.866348", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-B", + "municipality": "Belek", + "scheduled_service": "no" + }, + { + "id": "340418", + "ident": "TM-0018", + "type": "heliport", + "name": "Arçman Heliport", + "latitude_deg": "38.519675", + "longitude_deg": "57.171759", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-A", + "municipality": "Arçman", + "scheduled_service": "no" + }, + { + "id": "340435", + "ident": "TM-0019", + "type": "small_airport", + "name": "Gokdepe Airport", + "latitude_deg": "38.130407", + "longitude_deg": "57.906413", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-A", + "municipality": "Gokdepe", + "scheduled_service": "no" + }, + { + "id": "340436", + "ident": "TM-0020", + "type": "small_airport", + "name": "Yarajy Airport", + "latitude_deg": "38.263237", + "longitude_deg": "57.735114", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-A", + "municipality": "Yarajy", + "scheduled_service": "no" + }, + { + "id": "340437", + "ident": "TM-0021", + "type": "heliport", + "name": "Emergency Medical Center Ground Helipad", + "latitude_deg": "37.949405", + "longitude_deg": "58.336733", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-S", + "municipality": "Ashgabat", + "scheduled_service": "no" + }, + { + "id": "340438", + "ident": "TM-0022", + "type": "heliport", + "name": "Emergency Medical Center Rooftop Helipad", + "latitude_deg": "37.951526", + "longitude_deg": "58.338146", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-S", + "municipality": "Ashgabat", + "scheduled_service": "no" + }, + { + "id": "340439", + "ident": "TM-0023", + "type": "heliport", + "name": "Internal Affairs Ministry Training Center Helipad", + "latitude_deg": "37.949907", + "longitude_deg": "58.341706", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-S", + "municipality": "Ashgabat", + "scheduled_service": "no" + }, + { + "id": "340440", + "ident": "TM-0024", + "type": "heliport", + "name": "Internal Affairs Ministry Training Center Helipad 2", + "latitude_deg": "37.945654", + "longitude_deg": "58.337203", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-S", + "municipality": "Ashgabat", + "scheduled_service": "no" + }, + { + "id": "340441", + "ident": "TM-0025", + "type": "heliport", + "name": "Internal Affairs Ministry Training Center Helipad 3", + "latitude_deg": "37.945615", + "longitude_deg": "58.33569", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-S", + "municipality": "Ashgabat", + "scheduled_service": "no" + }, + { + "id": "340442", + "ident": "TM-0026", + "type": "heliport", + "name": "Oguzhan Presidential Palace Heliport", + "latitude_deg": "37.933416", + "longitude_deg": "58.380851", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-S", + "municipality": "Ashgabat", + "scheduled_service": "no" + }, + { + "id": "340443", + "ident": "TM-0027", + "type": "small_airport", + "name": "Tejen Airport", + "latitude_deg": "37.362201", + "longitude_deg": "60.586662", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-A", + "municipality": "Tejen", + "scheduled_service": "no" + }, + { + "id": "340444", + "ident": "TM-0028", + "type": "heliport", + "name": "Tejen Heliport", + "latitude_deg": "37.351976", + "longitude_deg": "60.538414", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-A", + "municipality": "Tejen", + "scheduled_service": "no" + }, + { + "id": "341245", + "ident": "TM-0029", + "type": "heliport", + "name": "Mary Heliport", + "latitude_deg": "37.56935", + "longitude_deg": "61.87228", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-M", + "municipality": "Mary", + "scheduled_service": "no" + }, + { + "id": "342833", + "ident": "TM-0030", + "type": "closed", + "name": "Türkmenabat Old Airport", + "latitude_deg": "39.084182", + "longitude_deg": "63.61124", + "elevation_ft": "600", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-L", + "municipality": "Türkmenabat", + "scheduled_service": "no", + "keywords": "CFZ, UTAV" + }, + { + "id": "351073", + "ident": "TM-0031", + "type": "heliport", + "name": "Garabogaz Carbamide Plant Heliport", + "latitude_deg": "41.52368", + "longitude_deg": "52.61801", + "elevation_ft": "-62", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-B", + "municipality": "Garabogaz", + "scheduled_service": "no" + }, + { + "id": "355315", + "ident": "TM-0032", + "type": "heliport", + "name": "Turkmenabat Presidential Heliport", + "latitude_deg": "39.092542", + "longitude_deg": "63.58828", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-L", + "municipality": "Turkmenabat", + "scheduled_service": "no" + }, + { + "id": "355316", + "ident": "TM-0033", + "type": "heliport", + "name": "Turkmenabat Railyard Heliport", + "latitude_deg": "38.978301", + "longitude_deg": "63.52476", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-L", + "municipality": "Turkmenabat", + "scheduled_service": "no" + }, + { + "id": "430486", + "ident": "TM-0034", + "type": "closed", + "name": "Former Kerki Airport", + "latitude_deg": "37.810331", + "longitude_deg": "65.212097", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-L", + "municipality": "Kerki", + "scheduled_service": "no", + "keywords": "KEA, UTAE" + }, + { + "id": "6395", + "ident": "TM-UT50", + "type": "small_airport", + "name": "Saraghs Southeast Airport", + "latitude_deg": "36.49190139770508", + "longitude_deg": "61.26649856567383", + "elevation_ft": "902", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-M", + "municipality": "Saraghs", + "scheduled_service": "no", + "keywords": "Serakhs, Sarakhs, UT50" + }, + { + "id": "6396", + "ident": "TM-UT51", + "type": "small_airport", + "name": "Kerki Airport", + "latitude_deg": "37.822051", + "longitude_deg": "65.135279", + "elevation_ft": "770", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-L", + "municipality": "Kerki", + "scheduled_service": "no", + "gps_code": "UTAE", + "iata_code": "KEA", + "home_link": "https://caa.gov.tm/en/item/227", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kerki_Airport", + "keywords": "UT51, Kerkiçi" + }, + { + "id": "6397", + "ident": "TM-UT52", + "type": "medium_airport", + "name": "Mary North Airport", + "latitude_deg": "37.66429901123047", + "longitude_deg": "61.82699966430664", + "elevation_ft": "728", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-M", + "municipality": "Mary", + "scheduled_service": "no", + "keywords": "UT52" + }, + { + "id": "6398", + "ident": "TM-UT55", + "type": "small_airport", + "name": "Kizyl-Arvat Airport", + "latitude_deg": "38.98419952392578", + "longitude_deg": "56.356998443603516", + "elevation_ft": "338", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-B", + "municipality": "Kizyl-Arvat", + "scheduled_service": "no", + "keywords": "UT55" + }, + { + "id": "6399", + "ident": "TM-UT56", + "type": "small_airport", + "name": "Gaurdak Airport", + "latitude_deg": "37.80590057373047", + "longitude_deg": "65.96549987792969", + "elevation_ft": "1085", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-L", + "municipality": "Gaurdak", + "scheduled_service": "no", + "keywords": "UT56" + }, + { + "id": "6400", + "ident": "TM-UT58", + "type": "small_airport", + "name": "Kala-I-Mor Airport", + "latitude_deg": "35.662899017333984", + "longitude_deg": "62.5547981262207", + "elevation_ft": "1329", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-M", + "municipality": "Turkmenkarakul", + "scheduled_service": "no", + "keywords": "Kalai Mor Airport, UT58" + }, + { + "id": "44482", + "ident": "TN-0001", + "type": "heliport", + "name": "La Karouba Air Base", + "latitude_deg": "37.247406005859375", + "longitude_deg": "9.82906723022461", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-23", + "municipality": "Pêcherie", + "scheduled_service": "no" + }, + { + "id": "429791", + "ident": "TN-0002", + "type": "heliport", + "name": "Bordj Choucha Heliport", + "latitude_deg": "33.13711", + "longitude_deg": "11.46215", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-82", + "municipality": "Allouet el Gounna", + "scheduled_service": "no" + }, + { + "id": "340382", + "ident": "TN-0003", + "type": "heliport", + "name": "Grande Île Cani Heliport", + "latitude_deg": "37.35535", + "longitude_deg": "10.124186", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-23", + "municipality": "Metline", + "scheduled_service": "no" + }, + { + "id": "352058", + "ident": "TN-0004", + "type": "heliport", + "name": "A1 Mareth Heliport", + "latitude_deg": "33.56221", + "longitude_deg": "10.31416", + "elevation_ft": "262", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-81", + "municipality": "Mareth", + "scheduled_service": "no" + }, + { + "id": "352059", + "ident": "TN-0005", + "type": "heliport", + "name": "A1 Ben Gardane Heliport", + "latitude_deg": "33.129982", + "longitude_deg": "11.069403", + "elevation_ft": "85", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-82", + "municipality": "Ben Gardane", + "scheduled_service": "no" + }, + { + "id": "352060", + "ident": "TN-0006", + "type": "heliport", + "name": "A1 Oudhref Heliport", + "latitude_deg": "34.02864", + "longitude_deg": "9.92317", + "elevation_ft": "240", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-81", + "municipality": "Oudhref", + "scheduled_service": "no" + }, + { + "id": "352061", + "ident": "TN-0007", + "type": "heliport", + "name": "A1 Mahres Heliport", + "latitude_deg": "34.59183", + "longitude_deg": "10.43878", + "elevation_ft": "172", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-61", + "municipality": "Mahres", + "scheduled_service": "no" + }, + { + "id": "352062", + "ident": "TN-0008", + "type": "heliport", + "name": "A1 El Djem Heliport", + "latitude_deg": "35.31021", + "longitude_deg": "10.64913", + "elevation_ft": "384", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-53", + "municipality": "El Djem", + "scheduled_service": "no" + }, + { + "id": "352131", + "ident": "TN-0009", + "type": "heliport", + "name": "Carthage Presidential Palace Heliport", + "latitude_deg": "36.85432", + "longitude_deg": "10.33735", + "elevation_ft": "3", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-11", + "municipality": "Carthage", + "scheduled_service": "no" + }, + { + "id": "352132", + "ident": "TN-0010", + "type": "heliport", + "name": "A1 Turki Heliport", + "latitude_deg": "36.56764", + "longitude_deg": "10.51647", + "elevation_ft": "187", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-21", + "municipality": "Turki", + "scheduled_service": "no" + }, + { + "id": "352133", + "ident": "TN-0011", + "type": "heliport", + "name": "A1 Utique Heliport", + "latitude_deg": "37.05679", + "longitude_deg": "9.99858", + "elevation_ft": "62", + "continent": "AF", + "iso_country": "TN", + "iso_region": "TN-23", + "municipality": "Utique", + "scheduled_service": "no" + }, + { + "id": "24916", + "ident": "TN00", + "type": "heliport", + "name": "Northcrest Medical Center Heliport", + "latitude_deg": "36.477500915527344", + "longitude_deg": "-86.88500213623047", + "elevation_ft": "689", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "TN00", + "local_code": "TN00" + }, + { + "id": "24917", + "ident": "TN01", + "type": "small_airport", + "name": "Ray Airport", + "latitude_deg": "35.347171", + "longitude_deg": "-89.819658", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Rosemark", + "scheduled_service": "no", + "gps_code": "TN01", + "local_code": "TN01" + }, + { + "id": "24918", + "ident": "TN02", + "type": "heliport", + "name": "TVA Watts Bar Nuclear Plant Heliport", + "latitude_deg": "35.60091", + "longitude_deg": "-84.796171", + "elevation_ft": "737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Dayton", + "scheduled_service": "no", + "gps_code": "TN02", + "keywords": "TN02" + }, + { + "id": "24919", + "ident": "TN03", + "type": "heliport", + "name": "Memorial Health Care System Heliport", + "latitude_deg": "35.0442008972168", + "longitude_deg": "-85.25830078125", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Chattanooga", + "scheduled_service": "no", + "gps_code": "TN03", + "local_code": "TN03" + }, + { + "id": "24920", + "ident": "TN04", + "type": "heliport", + "name": "Bristol Regional Medical Center Heliport", + "latitude_deg": "36.58679962158203", + "longitude_deg": "-82.25740051269531", + "elevation_ft": "1792", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Bristol", + "scheduled_service": "no", + "gps_code": "TN04", + "local_code": "TN04" + }, + { + "id": "24921", + "ident": "TN05", + "type": "heliport", + "name": "Jackson-Madison County General Hospital Heliport", + "latitude_deg": "35.636897", + "longitude_deg": "-88.830818", + "elevation_ft": "432", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "TN05", + "local_code": "TN05" + }, + { + "id": "24922", + "ident": "TN06", + "type": "heliport", + "name": "Grace Heliport", + "latitude_deg": "35.84669876098633", + "longitude_deg": "-86.37969970703125", + "elevation_ft": "631", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Murfreesboro", + "scheduled_service": "no", + "gps_code": "TN06", + "local_code": "TN06" + }, + { + "id": "24923", + "ident": "TN07", + "type": "small_airport", + "name": "Hawk Haven Airfield", + "latitude_deg": "35.687198638916016", + "longitude_deg": "-86.60639953613281", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Eagleville", + "scheduled_service": "no", + "gps_code": "TN07", + "local_code": "TN07" + }, + { + "id": "24924", + "ident": "TN08", + "type": "small_airport", + "name": "Oliver Springs Inc Airport", + "latitude_deg": "36.037601470947266", + "longitude_deg": "-84.30690002441406", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Oliver Springs", + "scheduled_service": "no", + "gps_code": "TN08", + "local_code": "TN08" + }, + { + "id": "24925", + "ident": "TN09", + "type": "small_airport", + "name": "Fergusons Flying Circus Airport", + "latitude_deg": "35.7140007019043", + "longitude_deg": "-84.41100311279297", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "TN09", + "local_code": "TN09" + }, + { + "id": "24926", + "ident": "TN10", + "type": "small_airport", + "name": "Lake View Airport", + "latitude_deg": "36.3390007019043", + "longitude_deg": "-83.77880096435547", + "elevation_ft": "1066", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Sharps Chapel", + "scheduled_service": "no", + "gps_code": "TN10", + "local_code": "TN10" + }, + { + "id": "24927", + "ident": "TN11", + "type": "small_airport", + "name": "Cantwell Airport", + "latitude_deg": "36.50149917602539", + "longitude_deg": "-83.25550079345703", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Sneedville", + "scheduled_service": "no", + "gps_code": "TN11", + "local_code": "TN11" + }, + { + "id": "24928", + "ident": "TN12", + "type": "small_airport", + "name": "Hudgin Air Airport", + "latitude_deg": "35.47359848022461", + "longitude_deg": "-86.68000030517578", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lewisburg", + "scheduled_service": "no", + "gps_code": "TN12", + "local_code": "TN12" + }, + { + "id": "24929", + "ident": "TN13", + "type": "closed", + "name": "Barret Airport", + "latitude_deg": "35.375099", + "longitude_deg": "-89.766701", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Barretville", + "scheduled_service": "no", + "keywords": "TN13" + }, + { + "id": "24930", + "ident": "TN14", + "type": "small_airport", + "name": "T-Top Airfield", + "latitude_deg": "35.689701080322266", + "longitude_deg": "-86.63580322265625", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Eagleville", + "scheduled_service": "no", + "gps_code": "TN14", + "local_code": "TN14" + }, + { + "id": "24931", + "ident": "TN15", + "type": "heliport", + "name": "Bedford Hospital Heliport", + "latitude_deg": "35.493099212646484", + "longitude_deg": "-86.47329711914062", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Shelbyville", + "scheduled_service": "no", + "gps_code": "TN15", + "local_code": "TN15" + }, + { + "id": "24932", + "ident": "TN16", + "type": "small_airport", + "name": "Huntingdon Airport", + "latitude_deg": "35.99449920654297", + "longitude_deg": "-88.46119689941406", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Huntingdon", + "scheduled_service": "no", + "gps_code": "TN16", + "local_code": "TN16" + }, + { + "id": "24933", + "ident": "TN17", + "type": "small_airport", + "name": "Vintage Field", + "latitude_deg": "35.582298278808594", + "longitude_deg": "-84.48799896240234", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Sweetwater", + "scheduled_service": "no", + "gps_code": "TN17", + "local_code": "TN17" + }, + { + "id": "24934", + "ident": "TN18", + "type": "small_airport", + "name": "Richardson Strip", + "latitude_deg": "35.20429992675781", + "longitude_deg": "-89.66670227050781", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Eads", + "scheduled_service": "no", + "gps_code": "TN18", + "local_code": "TN18" + }, + { + "id": "24935", + "ident": "TN19", + "type": "heliport", + "name": "Roane Medical Center Heliport", + "latitude_deg": "35.96289825439453", + "longitude_deg": "-84.55079650878906", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Harriman", + "scheduled_service": "no", + "gps_code": "TN19", + "local_code": "TN19" + }, + { + "id": "24936", + "ident": "TN20", + "type": "small_airport", + "name": "Seymour Air Park", + "latitude_deg": "35.81228", + "longitude_deg": "-83.774752", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Seymour", + "scheduled_service": "no", + "gps_code": "TN20", + "local_code": "TN20" + }, + { + "id": "24937", + "ident": "TN21", + "type": "small_airport", + "name": "Palmer Village-Napier Lake Airport", + "latitude_deg": "35.447098", + "longitude_deg": "-87.50458", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Hohenwald", + "scheduled_service": "no", + "gps_code": "TN21", + "local_code": "TN21" + }, + { + "id": "24938", + "ident": "TN22", + "type": "heliport", + "name": "Hickman County Health Services Heliport", + "latitude_deg": "35.78219985961914", + "longitude_deg": "-87.4636001586914", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Centerville", + "scheduled_service": "no", + "gps_code": "TN22", + "local_code": "TN22" + }, + { + "id": "24939", + "ident": "TN23", + "type": "small_airport", + "name": "Titan Field", + "latitude_deg": "36.49440002441406", + "longitude_deg": "-87.3218994140625", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Clarksville", + "scheduled_service": "no", + "gps_code": "TN23", + "local_code": "TN23" + }, + { + "id": "24940", + "ident": "TN24", + "type": "closed", + "name": "Spencer Field", + "latitude_deg": "35.3876", + "longitude_deg": "-85.962502", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Manchester", + "scheduled_service": "no", + "keywords": "TN24" + }, + { + "id": "24941", + "ident": "TN25", + "type": "heliport", + "name": "Methodist Hospital Central Heliport", + "latitude_deg": "35.13679885864258", + "longitude_deg": "-90.01840209960938", + "elevation_ft": "493", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Memphis", + "scheduled_service": "no", + "gps_code": "TN25", + "local_code": "TN25" + }, + { + "id": "24942", + "ident": "TN26", + "type": "closed", + "name": "Baptist Hospital Heliport", + "latitude_deg": "35.139", + "longitude_deg": "-90.030899", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Memphis", + "scheduled_service": "no", + "keywords": "TN26" + }, + { + "id": "24943", + "ident": "TN27", + "type": "closed", + "name": "Methodist Hospital Heliport", + "latitude_deg": "35.235401", + "longitude_deg": "-89.3526", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Somerville", + "scheduled_service": "no", + "keywords": "TN27" + }, + { + "id": "24944", + "ident": "TN28", + "type": "heliport", + "name": "Anderson-Tully County Heliport", + "latitude_deg": "35.17539978027344", + "longitude_deg": "-90.04450225830078", + "elevation_ft": "238", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Memphis", + "scheduled_service": "no", + "gps_code": "TN28", + "local_code": "TN28" + }, + { + "id": "24945", + "ident": "TN29", + "type": "heliport", + "name": "67 Madison Ave Partnership Ltd Heliport", + "latitude_deg": "35.137298583984375", + "longitude_deg": "-90.0542984008789", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Memphis", + "scheduled_service": "no", + "gps_code": "TN29", + "local_code": "TN29" + }, + { + "id": "24946", + "ident": "TN30", + "type": "small_airport", + "name": "Cub Haven Airport", + "latitude_deg": "35.54719924926758", + "longitude_deg": "-84.51000213623047", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Niota", + "scheduled_service": "no", + "gps_code": "TN30", + "local_code": "TN30" + }, + { + "id": "24947", + "ident": "TN31", + "type": "heliport", + "name": "Cookeville General Heliport", + "latitude_deg": "36.170101165771484", + "longitude_deg": "-85.50830078125", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Cookeville", + "scheduled_service": "no", + "gps_code": "TN31", + "local_code": "TN31" + }, + { + "id": "24948", + "ident": "TN32", + "type": "heliport", + "name": "Loudon Justice Center Heliport", + "latitude_deg": "35.77080154418945", + "longitude_deg": "-84.31310272216797", + "elevation_ft": "904", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Loudon", + "scheduled_service": "no", + "gps_code": "TN32", + "local_code": "TN32" + }, + { + "id": "24949", + "ident": "TN33", + "type": "heliport", + "name": "Tennessee Army & Air National Guard Heliport", + "latitude_deg": "36.10169982910156", + "longitude_deg": "-86.75830078125", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Nashville", + "scheduled_service": "no", + "gps_code": "TN33", + "local_code": "TN33" + }, + { + "id": "24950", + "ident": "TN34", + "type": "heliport", + "name": "St Thomas West Hospital Heliport", + "latitude_deg": "36.129253", + "longitude_deg": "-86.842928", + "elevation_ft": "497", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Nashville", + "scheduled_service": "no", + "gps_code": "TN34", + "local_code": "TN34" + }, + { + "id": "24951", + "ident": "TN35", + "type": "heliport", + "name": "Vanderbilt University Medical Center Heliport", + "latitude_deg": "36.14139938354492", + "longitude_deg": "-86.80280303955078", + "elevation_ft": "602", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Nashville", + "scheduled_service": "no", + "gps_code": "TN35", + "local_code": "TN35" + }, + { + "id": "24952", + "ident": "TN36", + "type": "small_airport", + "name": "Flying I Ranch Airport", + "latitude_deg": "35.762001037597656", + "longitude_deg": "-89.55120086669922", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Ripley", + "scheduled_service": "no", + "gps_code": "TN36", + "local_code": "TN36" + }, + { + "id": "24953", + "ident": "TN37", + "type": "small_airport", + "name": "Anderson Airport", + "latitude_deg": "35.40420150756836", + "longitude_deg": "-89.02230072021484", + "elevation_ft": "392", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Toone", + "scheduled_service": "no", + "gps_code": "TN37", + "local_code": "TN37" + }, + { + "id": "24954", + "ident": "TN38", + "type": "small_airport", + "name": "Rutledge Field", + "latitude_deg": "35.37189865112305", + "longitude_deg": "-86.26689910888672", + "elevation_ft": "1125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Tullahoma", + "scheduled_service": "no", + "gps_code": "TN38", + "local_code": "TN38" + }, + { + "id": "24955", + "ident": "TN39", + "type": "small_airport", + "name": "Amacher Strip", + "latitude_deg": "35.305599212646484", + "longitude_deg": "-86.23670196533203", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Tullahoma", + "scheduled_service": "no", + "gps_code": "TN39", + "local_code": "TN39" + }, + { + "id": "24956", + "ident": "TN40", + "type": "heliport", + "name": "Jellico Hospital Heliport", + "latitude_deg": "36.57389831542969", + "longitude_deg": "-84.12969970703125", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Jellico", + "scheduled_service": "no", + "gps_code": "TN40", + "local_code": "TN40" + }, + { + "id": "24957", + "ident": "TN41", + "type": "small_airport", + "name": "100 Aker Wood Airport", + "latitude_deg": "35.77280044555664", + "longitude_deg": "-84.76529693603516", + "elevation_ft": "809", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Spring City", + "scheduled_service": "no", + "gps_code": "TN41", + "local_code": "TN41" + }, + { + "id": "24958", + "ident": "TN42", + "type": "heliport", + "name": "Whitwell Medical Center Heliport", + "latitude_deg": "35.20289993286133", + "longitude_deg": "-85.51940155029297", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Whitwell", + "scheduled_service": "no", + "gps_code": "TN42", + "local_code": "TN42" + }, + { + "id": "24959", + "ident": "TN43", + "type": "small_airport", + "name": "Isle-A-Port STOLport", + "latitude_deg": "35.096843", + "longitude_deg": "-90.114406", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Memphis", + "scheduled_service": "no", + "gps_code": "TN43", + "local_code": "TN43" + }, + { + "id": "24960", + "ident": "TN44", + "type": "small_airport", + "name": "Deerfield Resort Airport", + "latitude_deg": "36.34669876098633", + "longitude_deg": "-84.01219940185547", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lafollette", + "scheduled_service": "no", + "gps_code": "TN44", + "local_code": "TN44" + }, + { + "id": "24961", + "ident": "TN45", + "type": "closed", + "name": "Cumberland River Hospital Heliport", + "latitude_deg": "36.543622", + "longitude_deg": "-85.500369", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Celina", + "scheduled_service": "no", + "home_link": "https://web.archive.org/web/20200320183859/https://crmchealth.org/closing-cumberland-river-hospital", + "keywords": "TN45" + }, + { + "id": "24962", + "ident": "TN46", + "type": "heliport", + "name": "Henry County Medical Center Heliport", + "latitude_deg": "36.2958984375", + "longitude_deg": "-88.30280303955078", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "TN46", + "local_code": "TN46" + }, + { + "id": "24963", + "ident": "TN47", + "type": "small_airport", + "name": "Needham's Airport", + "latitude_deg": "35.28900146484375", + "longitude_deg": "-89.74120330810547", + "elevation_ft": "289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "TN47", + "local_code": "TN47" + }, + { + "id": "24964", + "ident": "TN48", + "type": "small_airport", + "name": "Turner Field", + "latitude_deg": "36.2775993347168", + "longitude_deg": "-88.65370178222656", + "elevation_ft": "401", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Dresden", + "scheduled_service": "no", + "gps_code": "TN48", + "local_code": "TN48" + }, + { + "id": "346600", + "ident": "TN49", + "type": "small_airport", + "name": "Bellwood Field", + "latitude_deg": "36.262208", + "longitude_deg": "-86.162139", + "elevation_ft": "589", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "TN49", + "local_code": "TN49" + }, + { + "id": "24966", + "ident": "TN50", + "type": "small_airport", + "name": "Indian Hill Farm Airport", + "latitude_deg": "34.99150085449219", + "longitude_deg": "-85.65080261230469", + "elevation_ft": "676", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "New Hope", + "scheduled_service": "no", + "gps_code": "TN50", + "local_code": "TN50" + }, + { + "id": "24967", + "ident": "TN51", + "type": "closed", + "name": "Aydelotte STOLport", + "latitude_deg": "36.642799", + "longitude_deg": "-86.976402", + "elevation_ft": "545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Springfield", + "scheduled_service": "no", + "keywords": "TN51" + }, + { + "id": "24968", + "ident": "TN52", + "type": "small_airport", + "name": "King Airport", + "latitude_deg": "35.138099670410156", + "longitude_deg": "-86.08110046386719", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Winchester", + "scheduled_service": "no", + "gps_code": "TN52", + "local_code": "TN52" + }, + { + "id": "24969", + "ident": "TN53", + "type": "small_airport", + "name": "Parr Field", + "latitude_deg": "36.55590057373047", + "longitude_deg": "-87.44830322265625", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Clarksville", + "scheduled_service": "no", + "gps_code": "TN53", + "local_code": "TN53" + }, + { + "id": "24970", + "ident": "TN54", + "type": "closed", + "name": "Tan Rara Heliport", + "latitude_deg": "35.882599", + "longitude_deg": "-84.112396", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Concord", + "scheduled_service": "no", + "keywords": "TN54" + }, + { + "id": "24971", + "ident": "TN55", + "type": "heliport", + "name": "Ginny 'B' Heliport", + "latitude_deg": "36.093101501464844", + "longitude_deg": "-86.65470123291016", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Nashville", + "scheduled_service": "no", + "gps_code": "TN55", + "local_code": "TN55" + }, + { + "id": "24972", + "ident": "TN56", + "type": "small_airport", + "name": "Carey Airport", + "latitude_deg": "36.07229995727539", + "longitude_deg": "-85.11389923095703", + "elevation_ft": "1960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Mayland", + "scheduled_service": "no", + "gps_code": "TN56", + "local_code": "TN56" + }, + { + "id": "24973", + "ident": "TN57", + "type": "heliport", + "name": "Air Trade Center Heliport", + "latitude_deg": "36.4324989319", + "longitude_deg": "-82.29360198970001", + "elevation_ft": "1581", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Johnson City", + "scheduled_service": "no", + "gps_code": "TN57", + "local_code": "TN57" + }, + { + "id": "24974", + "ident": "TN58", + "type": "small_airport", + "name": "Parsons Field", + "latitude_deg": "35.391700744628906", + "longitude_deg": "-89.65650177001953", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Brighton", + "scheduled_service": "no", + "gps_code": "TN58", + "local_code": "TN58" + }, + { + "id": "24975", + "ident": "TN59", + "type": "heliport", + "name": "Vertiflite Heliport", + "latitude_deg": "35.76259994506836", + "longitude_deg": "-84.02490234375", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Maryville", + "scheduled_service": "no", + "gps_code": "TN59", + "local_code": "TN59" + }, + { + "id": "24976", + "ident": "TN60", + "type": "heliport", + "name": "Wsmv-Tv Heliport", + "latitude_deg": "36.14120101928711", + "longitude_deg": "-87.86199951171875", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Nashville", + "scheduled_service": "no", + "gps_code": "TN60", + "local_code": "TN60" + }, + { + "id": "24977", + "ident": "TN61", + "type": "heliport", + "name": "Ranger Heliport", + "latitude_deg": "35.20180130004883", + "longitude_deg": "-89.86840057373047", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Bartlett", + "scheduled_service": "no", + "gps_code": "TN61", + "local_code": "TN61" + }, + { + "id": "24978", + "ident": "TN62", + "type": "small_airport", + "name": "Mc Afee Stol Patch STOLport", + "latitude_deg": "36.3722991943", + "longitude_deg": "-82.3915023804", + "elevation_ft": "1925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Johnson City", + "scheduled_service": "no", + "gps_code": "TN62", + "local_code": "TN62" + }, + { + "id": "24979", + "ident": "TN64", + "type": "small_airport", + "name": "West Wind Airpark", + "latitude_deg": "35.5442008972168", + "longitude_deg": "-84.53279876708984", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Sweetwater", + "scheduled_service": "no", + "gps_code": "TN64", + "local_code": "TN64" + }, + { + "id": "24980", + "ident": "TN65", + "type": "small_airport", + "name": "Long Meadow Airstrip", + "latitude_deg": "35.6664009094", + "longitude_deg": "-86.48529815670001", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Murfreesburg", + "scheduled_service": "no", + "gps_code": "TN65", + "local_code": "TN65" + }, + { + "id": "24981", + "ident": "TN66", + "type": "small_airport", + "name": "Austin Field", + "latitude_deg": "35.74449920654297", + "longitude_deg": "-85.04720306396484", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Pikeville", + "scheduled_service": "no", + "gps_code": "TN66", + "local_code": "TN66" + }, + { + "id": "24982", + "ident": "TN67", + "type": "small_airport", + "name": "Myers-Smith Airport", + "latitude_deg": "35.24789810180664", + "longitude_deg": "-86.12860107421875", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Estill Springs", + "scheduled_service": "no", + "gps_code": "TN67", + "local_code": "TN67" + }, + { + "id": "24983", + "ident": "TN68", + "type": "small_airport", + "name": "Gibson STOLport", + "latitude_deg": "35.768348", + "longitude_deg": "-86.548636", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Murfreesboro", + "scheduled_service": "no", + "gps_code": "TN68", + "local_code": "TN68" + }, + { + "id": "24984", + "ident": "TN69", + "type": "heliport", + "name": "Methodist Lebonheur Healthcare Heliport", + "latitude_deg": "35.08919906616211", + "longitude_deg": "-89.80719757080078", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Germantown", + "scheduled_service": "no", + "gps_code": "TN69", + "local_code": "TN69" + }, + { + "id": "24985", + "ident": "TN70", + "type": "small_airport", + "name": "Burkeen Field", + "latitude_deg": "35.02619934082031", + "longitude_deg": "-89.70259857177734", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Collierville", + "scheduled_service": "no", + "gps_code": "TN70", + "local_code": "TN70" + }, + { + "id": "24986", + "ident": "TN71", + "type": "small_airport", + "name": "Cox Farm Airport", + "latitude_deg": "35.794498443603516", + "longitude_deg": "-84.34159851074219", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lenoir City", + "scheduled_service": "no", + "gps_code": "TN71", + "local_code": "TN71" + }, + { + "id": "24987", + "ident": "TN72", + "type": "closed", + "name": "King Airport", + "latitude_deg": "35.845901", + "longitude_deg": "-83.481796", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Sevierville", + "scheduled_service": "no", + "keywords": "TN72" + }, + { + "id": "24988", + "ident": "TN73", + "type": "closed", + "name": "Doc Jones Field", + "latitude_deg": "36.323399", + "longitude_deg": "-86.959396", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Ashland City", + "scheduled_service": "no", + "keywords": "TN73" + }, + { + "id": "24989", + "ident": "TN74", + "type": "small_airport", + "name": "Will A Hildreth Farm Airport", + "latitude_deg": "35.80009841918945", + "longitude_deg": "-84.31939697265625", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lenoir City", + "scheduled_service": "no", + "gps_code": "TN74", + "local_code": "TN74" + }, + { + "id": "24990", + "ident": "TN75", + "type": "heliport", + "name": "Rhea Medical Center Heliport", + "latitude_deg": "35.500099182128906", + "longitude_deg": "-85.0166015625", + "elevation_ft": "698", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Dayton", + "scheduled_service": "no", + "gps_code": "TN75", + "local_code": "TN75" + }, + { + "id": "24991", + "ident": "TN76", + "type": "heliport", + "name": "Mobley-Wood Heliport", + "latitude_deg": "36.30839920043945", + "longitude_deg": "-88.2958984375", + "elevation_ft": "432", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "TN76", + "local_code": "TN76" + }, + { + "id": "24992", + "ident": "TN77", + "type": "small_airport", + "name": "Whifferdill Airport", + "latitude_deg": "36.32180023", + "longitude_deg": "-87.15070343", + "elevation_ft": "622", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Chapmansboro", + "scheduled_service": "no", + "gps_code": "TN77", + "local_code": "TN77" + }, + { + "id": "24993", + "ident": "TN78", + "type": "heliport", + "name": "Sequoyah Nuclear Plant Heliport", + "latitude_deg": "35.23310089111328", + "longitude_deg": "-85.08799743652344", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Daisy", + "scheduled_service": "no", + "gps_code": "TN78", + "local_code": "TN78" + }, + { + "id": "24994", + "ident": "TN79", + "type": "small_airport", + "name": "Oakley Airport", + "latitude_deg": "36.173564", + "longitude_deg": "-86.952195", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Nashville", + "scheduled_service": "no", + "gps_code": "TN79", + "local_code": "TN79" + }, + { + "id": "24995", + "ident": "TN80", + "type": "small_airport", + "name": "Schiff Airport", + "latitude_deg": "36.2333984375", + "longitude_deg": "-85.42639923095703", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Cookeville", + "scheduled_service": "no", + "gps_code": "TN80", + "local_code": "TN80" + }, + { + "id": "24996", + "ident": "TN81", + "type": "small_airport", + "name": "Shultz Airport", + "latitude_deg": "35.7489013671875", + "longitude_deg": "-86.8135986328125", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "TN81", + "local_code": "TN81" + }, + { + "id": "24997", + "ident": "TN83", + "type": "small_airport", + "name": "Cedar Glade Aerodrome", + "latitude_deg": "35.720789", + "longitude_deg": "-86.275016", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Murfreesboro", + "scheduled_service": "no", + "gps_code": "TN83", + "local_code": "TN83" + }, + { + "id": "24998", + "ident": "TN84", + "type": "heliport", + "name": "Mc Gavock Heliport", + "latitude_deg": "36.2084007263", + "longitude_deg": "-86.67919921880001", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Nashville", + "scheduled_service": "no", + "gps_code": "TN84", + "local_code": "TN84" + }, + { + "id": "24999", + "ident": "TN85", + "type": "small_airport", + "name": "Hogue Airport", + "latitude_deg": "35.638999938964844", + "longitude_deg": "-85.39720153808594", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Spencer", + "scheduled_service": "no", + "gps_code": "TN85", + "local_code": "TN85" + }, + { + "id": "25000", + "ident": "TN86", + "type": "closed", + "name": "Walden Ridge Airport", + "latitude_deg": "35.798753", + "longitude_deg": "-84.763705", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Rockwood", + "scheduled_service": "no", + "gps_code": "TN86", + "local_code": "TN86" + }, + { + "id": "25001", + "ident": "TN87", + "type": "small_airport", + "name": "Montvale Airpark", + "latitude_deg": "35.69260025024414", + "longitude_deg": "-83.9988021850586", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Maryville", + "scheduled_service": "no", + "gps_code": "TN87", + "local_code": "TN87" + }, + { + "id": "25002", + "ident": "TN88", + "type": "heliport", + "name": "White County Community Hospital Heliport", + "latitude_deg": "35.94940185546875", + "longitude_deg": "-85.47810363769531", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Sparta", + "scheduled_service": "no", + "gps_code": "TN88", + "local_code": "TN88" + }, + { + "id": "25003", + "ident": "TN89", + "type": "small_airport", + "name": "Possum Bottom Airport", + "latitude_deg": "35.2584", + "longitude_deg": "-85.452698", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Whitwell", + "scheduled_service": "no", + "gps_code": "TN89", + "local_code": "TN89", + "keywords": "Matthews Airport" + }, + { + "id": "25004", + "ident": "TN90", + "type": "heliport", + "name": "Mathews Heliport", + "latitude_deg": "35.16939926147461", + "longitude_deg": "-85.26499938964844", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Chattanooga", + "scheduled_service": "no", + "gps_code": "TN90", + "local_code": "TN90" + }, + { + "id": "25005", + "ident": "TN91", + "type": "heliport", + "name": "Johnson City Medical Center Heliport", + "latitude_deg": "36.30830001831055", + "longitude_deg": "-82.3855972290039", + "elevation_ft": "1745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Johnson City", + "scheduled_service": "no", + "gps_code": "TN91", + "local_code": "TN91" + }, + { + "id": "25006", + "ident": "TN92", + "type": "heliport", + "name": "Metrocenter Heliport", + "latitude_deg": "36.19169998168945", + "longitude_deg": "-86.80829620361328", + "elevation_ft": "408", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Nashville", + "scheduled_service": "no", + "gps_code": "TN92", + "local_code": "TN92" + }, + { + "id": "25007", + "ident": "TN93", + "type": "closed", + "name": "Cotton Patch Airport", + "latitude_deg": "35.282299", + "longitude_deg": "-89.029198", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Bolivar", + "scheduled_service": "no", + "keywords": "TN93" + }, + { + "id": "25008", + "ident": "TN94", + "type": "small_airport", + "name": "Robertson Farm Airport", + "latitude_deg": "36.0010986328125", + "longitude_deg": "-84.07440185546875", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Knoxville", + "scheduled_service": "no", + "gps_code": "TN94", + "local_code": "TN94" + }, + { + "id": "25009", + "ident": "TN95", + "type": "heliport", + "name": "Tva Heliport", + "latitude_deg": "36.3083992004", + "longitude_deg": "-82.3832015991", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Johnson City", + "scheduled_service": "no", + "gps_code": "TN95", + "local_code": "TN95" + }, + { + "id": "25010", + "ident": "TN96", + "type": "small_airport", + "name": "Fall Creek Field", + "latitude_deg": "36.04119873046875", + "longitude_deg": "-86.3582992553711", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "TN96", + "local_code": "TN96" + }, + { + "id": "25011", + "ident": "TN97", + "type": "small_airport", + "name": "Triune Airfield", + "latitude_deg": "35.807199", + "longitude_deg": "-86.612456", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Nashville", + "scheduled_service": "no", + "gps_code": "TN97", + "local_code": "TN97" + }, + { + "id": "25012", + "ident": "TN98", + "type": "small_airport", + "name": "Sky Ranch Airport", + "latitude_deg": "35.885295", + "longitude_deg": "-83.957427", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Knoxville", + "scheduled_service": "no", + "gps_code": "TN98", + "local_code": "TN98" + }, + { + "id": "25013", + "ident": "TN99", + "type": "closed", + "name": "Pensinger Airport", + "latitude_deg": "36.296398", + "longitude_deg": "-82.760597", + "elevation_ft": "1265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Greeneville", + "scheduled_service": "no", + "keywords": "TN99" + }, + { + "id": "6402", + "ident": "TNCA", + "type": "large_airport", + "name": "Queen Beatrix International Airport", + "latitude_deg": "12.5014", + "longitude_deg": "-70.015198", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "AW", + "iso_region": "AW-U-A", + "municipality": "Oranjestad", + "scheduled_service": "yes", + "gps_code": "TNCA", + "iata_code": "AUA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Queen_Beatrix_International_Airport", + "keywords": "Playa" + }, + { + "id": "6403", + "ident": "TNCB", + "type": "large_airport", + "name": "Flamingo International Airport", + "latitude_deg": "12.131", + "longitude_deg": "-68.268501", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "BQ", + "iso_region": "BQ-U-A", + "municipality": "Kralendijk, Bonaire", + "scheduled_service": "yes", + "gps_code": "TNCB", + "iata_code": "BON", + "wikipedia_link": "https://en.wikipedia.org/wiki/Flamingo_International_Airport", + "keywords": "Bonaire" + }, + { + "id": "6404", + "ident": "TNCC", + "type": "large_airport", + "name": "Hato International Airport", + "latitude_deg": "12.1889", + "longitude_deg": "-68.959801", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "CW", + "iso_region": "CW-U-A", + "municipality": "Willemstad", + "scheduled_service": "yes", + "gps_code": "TNCC", + "iata_code": "CUR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hato_International_Airport", + "keywords": "Curaçao" + }, + { + "id": "6405", + "ident": "TNCE", + "type": "medium_airport", + "name": "F. D. Roosevelt Airport", + "latitude_deg": "17.49650001525879", + "longitude_deg": "-62.979400634765625", + "elevation_ft": "129", + "continent": "NA", + "iso_country": "BQ", + "iso_region": "BQ-U-A", + "municipality": "Sint Eustatius", + "scheduled_service": "yes", + "gps_code": "TNCE", + "iata_code": "EUX", + "wikipedia_link": "https://en.wikipedia.org/wiki/F.D._Roosevelt_Airport" + }, + { + "id": "6406", + "ident": "TNCM", + "type": "large_airport", + "name": "Princess Juliana International Airport", + "latitude_deg": "18.041", + "longitude_deg": "-63.108898", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "SX", + "iso_region": "SX-U-A", + "municipality": "Saint Martin", + "scheduled_service": "yes", + "gps_code": "TNCM", + "iata_code": "SXM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Princess_Juliana_International_Airport" + }, + { + "id": "32245", + "ident": "TNCS", + "type": "small_airport", + "name": "Juancho E. Yrausquin Airport", + "latitude_deg": "17.645000457763672", + "longitude_deg": "-63.220001220703125", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "BQ", + "iso_region": "BQ-U-A", + "municipality": "Saba", + "scheduled_service": "yes", + "gps_code": "TNCS", + "iata_code": "SAB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Juancho_E._Yrausquin_Airport" + }, + { + "id": "309411", + "ident": "TNW", + "type": "medium_airport", + "name": "Jumandy Airport", + "latitude_deg": "-1.059722", + "longitude_deg": "-77.583333", + "elevation_ft": "1234", + "continent": "SA", + "iso_country": "EC", + "iso_region": "EC-N", + "municipality": "Tena", + "scheduled_service": "no", + "gps_code": "SEJD", + "iata_code": "TNW", + "home_link": "http://www.dgac.gob.ec/tena/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jumandy_Airport" + }, + { + "id": "316447", + "ident": "TOK", + "type": "small_airport", + "name": "Torokina Airport", + "latitude_deg": "-6.2015", + "longitude_deg": "155.063", + "elevation_ft": "130", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NSB", + "municipality": "Torokina", + "scheduled_service": "no", + "iata_code": "TOK", + "local_code": "TKN", + "keywords": "Torakina" + }, + { + "id": "333097", + "ident": "TOV", + "type": "seaplane_base", + "name": "Tortola West End Seaplane Base", + "latitude_deg": "18.45", + "longitude_deg": "-64.583333", + "continent": "NA", + "iso_country": "VG", + "iso_region": "VG-U-A", + "municipality": "Tortola", + "scheduled_service": "no", + "iata_code": "TOV" + }, + { + "id": "25016", + "ident": "TPO", + "type": "small_airport", + "name": "Port Alsworth Airport", + "latitude_deg": "60.201681", + "longitude_deg": "-154.325863", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Port Alsworth", + "scheduled_service": "no", + "gps_code": "PALJ", + "iata_code": "PTA", + "local_code": "TPO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Alsworth_Airport" + }, + { + "id": "316460", + "ident": "TPT", + "type": "small_airport", + "name": "Tapeta Airport", + "latitude_deg": "6.4948", + "longitude_deg": "-8.873", + "elevation_ft": "870", + "continent": "AF", + "iso_country": "LR", + "iso_region": "LR-NI", + "municipality": "Tapeta", + "scheduled_service": "no", + "iata_code": "TPT" + }, + { + "id": "6407", + "ident": "TQPF", + "type": "medium_airport", + "name": "Clayton J Lloyd International Airport", + "latitude_deg": "18.204773", + "longitude_deg": "-63.05383", + "elevation_ft": "127", + "continent": "NA", + "iso_country": "AI", + "iso_region": "AI-U-A", + "municipality": "The Valley", + "scheduled_service": "yes", + "gps_code": "TQPF", + "iata_code": "AXA", + "home_link": "http://www.news.ai/ref/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anguilla_Wallblake_Airport", + "keywords": "Wallblake Airport" + }, + { + "id": "44485", + "ident": "TR-0001", + "type": "small_airport", + "name": "Akhisar TSA Airfield", + "latitude_deg": "38.97710037231445", + "longitude_deg": "27.852500915527344", + "elevation_ft": "405", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-45", + "municipality": "Akhisar", + "scheduled_service": "no" + }, + { + "id": "44486", + "ident": "TR-0002", + "type": "small_airport", + "name": "Divriği Airport", + "latitude_deg": "39.3316650390625", + "longitude_deg": "38.091819763183594", + "elevation_ft": "3526", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-58", + "scheduled_service": "no" + }, + { + "id": "44489", + "ident": "TR-0003", + "type": "heliport", + "name": "Kocaeli Köseköy Heliport", + "latitude_deg": "40.762224", + "longitude_deg": "30.002355", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-41", + "municipality": "İzmit", + "scheduled_service": "no", + "keywords": "Kocaeli Köseköy Airfield" + }, + { + "id": "44492", + "ident": "TR-0004", + "type": "medium_airport", + "name": "Temelli Air Base", + "latitude_deg": "39.73885726928711", + "longitude_deg": "32.378639221191406", + "elevation_ft": "2457", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-06", + "municipality": "Polatlı", + "scheduled_service": "no" + }, + { + "id": "44493", + "ident": "TR-0005", + "type": "small_airport", + "name": "Tuzla Air Base", + "latitude_deg": "40.822643", + "longitude_deg": "29.335127", + "elevation_ft": "79", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Tuzla, Istanbul", + "scheduled_service": "no" + }, + { + "id": "44523", + "ident": "TR-0006", + "type": "heliport", + "name": "Ankara BB Helipad", + "latitude_deg": "39.938958", + "longitude_deg": "32.838205", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-06", + "scheduled_service": "no" + }, + { + "id": "44694", + "ident": "TR-0008", + "type": "small_airport", + "name": "Bozcaada Airport", + "latitude_deg": "39.837845", + "longitude_deg": "25.995106", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-17", + "municipality": "Bozcaada", + "scheduled_service": "no" + }, + { + "id": "44695", + "ident": "TR-0009", + "type": "small_airport", + "name": "Çardak Highway Strip", + "latitude_deg": "37.828125", + "longitude_deg": "29.637863159179688", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-20", + "scheduled_service": "no" + }, + { + "id": "44696", + "ident": "TR-0010", + "type": "heliport", + "name": "Denizli Helipad", + "latitude_deg": "37.762107849121094", + "longitude_deg": "29.080123901367188", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-20", + "scheduled_service": "no" + }, + { + "id": "44744", + "ident": "TR-0011", + "type": "small_airport", + "name": "Diyarbakır Northwest Airport", + "latitude_deg": "38.01278305053711", + "longitude_deg": "39.95493698120117", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-21", + "scheduled_service": "no" + }, + { + "id": "44776", + "ident": "TR-0012", + "type": "small_airport", + "name": "Alaçatı Airport", + "latitude_deg": "38.24319839477539", + "longitude_deg": "26.424999237060547", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-35", + "municipality": "Çeşme", + "scheduled_service": "no" + }, + { + "id": "44930", + "ident": "TR-0013", + "type": "closed", + "name": "Konya West Airport", + "latitude_deg": "37.859693", + "longitude_deg": "32.456789", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-42", + "municipality": "Meram", + "scheduled_service": "no" + }, + { + "id": "44778", + "ident": "TR-0014", + "type": "small_airport", + "name": "Aksaray Airport", + "latitude_deg": "38.314704", + "longitude_deg": "33.8055", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-68", + "municipality": "Aksaray", + "scheduled_service": "no" + }, + { + "id": "44932", + "ident": "TR-0015", + "type": "small_airport", + "name": "Boranköy Air Base", + "latitude_deg": "38.4689457144", + "longitude_deg": "38.3651590347", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-44", + "municipality": "Battalgazi", + "scheduled_service": "no" + }, + { + "id": "44780", + "ident": "TR-0016", + "type": "small_airport", + "name": "Balıkesir Manyas Airfield", + "latitude_deg": "40.115020751953125", + "longitude_deg": "27.938940048217773", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-10", + "municipality": "Manyas", + "scheduled_service": "no" + }, + { + "id": "44781", + "ident": "TR-0017", + "type": "small_airport", + "name": "Bingöl Çeltiksuyu Airport", + "latitude_deg": "38.8592605591", + "longitude_deg": "40.5959625244", + "elevation_ft": "3506", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-12", + "municipality": "Bingöl", + "scheduled_service": "yes", + "gps_code": "LTCU", + "iata_code": "BGG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bing%C3%B6l_Airport" + }, + { + "id": "44782", + "ident": "TR-0018", + "type": "small_airport", + "name": "Bolu Air Base", + "latitude_deg": "40.74797058105469", + "longitude_deg": "31.650066375732422", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-14", + "municipality": "Bolu", + "scheduled_service": "no" + }, + { + "id": "44783", + "ident": "TR-0019", + "type": "closed", + "name": "Edirne Airport", + "latitude_deg": "41.720113", + "longitude_deg": "26.74171", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-22", + "municipality": "Edirne", + "scheduled_service": "no" + }, + { + "id": "44784", + "ident": "TR-0020", + "type": "closed", + "name": "Çanakkale Çan Airfield", + "latitude_deg": "39.98899841308594", + "longitude_deg": "27.036800384521484", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-17", + "municipality": "Çan", + "scheduled_service": "no" + }, + { + "id": "44785", + "ident": "TR-0021", + "type": "medium_airport", + "name": "Çukurhisar Airport", + "latitude_deg": "39.84389877319336", + "longitude_deg": "30.968000411987305", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-26", + "municipality": "Alpu", + "scheduled_service": "no" + }, + { + "id": "44786", + "ident": "TR-0022", + "type": "closed", + "name": "Eskişehir Kalkanlı Air Base", + "latitude_deg": "39.63469696044922", + "longitude_deg": "30.740367889404297", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-26", + "municipality": "Eskişehir", + "scheduled_service": "no" + }, + { + "id": "44787", + "ident": "TR-0023", + "type": "small_airport", + "name": "Karabiga Airport", + "latitude_deg": "40.380798", + "longitude_deg": "27.3034", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-17", + "municipality": "Karabiga", + "scheduled_service": "no" + }, + { + "id": "44788", + "ident": "TR-0024", + "type": "small_airport", + "name": "Gemlik Airfield", + "latitude_deg": "40.39849853515625", + "longitude_deg": "29.089500427246094", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-16", + "municipality": "Gemlik", + "scheduled_service": "no" + }, + { + "id": "351646", + "ident": "TR-0025", + "type": "heliport", + "name": "Bingöl 49th Motor Rifle Brigade Command Heliport", + "latitude_deg": "38.87961", + "longitude_deg": "40.51455", + "elevation_ft": "3615", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-12", + "municipality": "Bingöl", + "scheduled_service": "no" + }, + { + "id": "353969", + "ident": "TR-0026", + "type": "heliport", + "name": "Delphin Heliport", + "latitude_deg": "36.865983", + "longitude_deg": "30.875364", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-07", + "municipality": "Antalya", + "scheduled_service": "no", + "keywords": "delphin, helipad, antalya" + }, + { + "id": "44791", + "ident": "TR-0027", + "type": "small_airport", + "name": "Karacabey Hara Airfield", + "latitude_deg": "40.15639877319336", + "longitude_deg": "28.347900390625", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-16", + "municipality": "Karacabey", + "scheduled_service": "no" + }, + { + "id": "44792", + "ident": "TR-0028", + "type": "medium_airport", + "name": "Keşan Air Base", + "latitude_deg": "40.787068", + "longitude_deg": "26.606655", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-22", + "municipality": "Keşan", + "scheduled_service": "no", + "gps_code": "LTFL" + }, + { + "id": "44793", + "ident": "TR-0029", + "type": "small_airport", + "name": "Niğde Airport", + "latitude_deg": "37.845069885253906", + "longitude_deg": "34.47179412841797", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-51", + "municipality": "Bor", + "scheduled_service": "no" + }, + { + "id": "44794", + "ident": "TR-0030", + "type": "closed", + "name": "Pınarhisar Airport", + "latitude_deg": "41.634998", + "longitude_deg": "27.492399", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-39", + "municipality": "Pınarhisar", + "scheduled_service": "no" + }, + { + "id": "44795", + "ident": "TR-0031", + "type": "small_airport", + "name": "Polatlı Airport", + "latitude_deg": "39.569801330566406", + "longitude_deg": "32.15079879760742", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-06", + "municipality": "Polatlı", + "scheduled_service": "no" + }, + { + "id": "44796", + "ident": "TR-0032", + "type": "small_airport", + "name": "Salyazı Airport", + "latitude_deg": "40.222900390625", + "longitude_deg": "39.79309844970703", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-29", + "municipality": "Köse", + "scheduled_service": "no" + }, + { + "id": "44797", + "ident": "TR-0033", + "type": "small_airport", + "name": "Sarımsaklı Airfield", + "latitude_deg": "39.273658752441406", + "longitude_deg": "26.686948776245117", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-10", + "municipality": "Ayvalık", + "scheduled_service": "no" + }, + { + "id": "44798", + "ident": "TR-0034", + "type": "small_airport", + "name": "THK İnönü Airfield", + "latitude_deg": "39.82091522216797", + "longitude_deg": "30.11874008178711", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-26", + "municipality": "İnönü", + "scheduled_service": "no" + }, + { + "id": "44799", + "ident": "TR-0035", + "type": "small_airport", + "name": "Tatvan Airport", + "latitude_deg": "38.54180145263672", + "longitude_deg": "42.332401275634766", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-13", + "municipality": "Tatvan", + "scheduled_service": "no" + }, + { + "id": "44800", + "ident": "TR-0036", + "type": "closed", + "name": "Ünye Airport", + "latitude_deg": "41.141201", + "longitude_deg": "37.209202", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-52", + "municipality": "Ünye", + "scheduled_service": "no" + }, + { + "id": "44933", + "ident": "TR-0037", + "type": "small_airport", + "name": "Muş West Airport", + "latitude_deg": "38.7861877312", + "longitude_deg": "41.4696979523", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-49", + "municipality": "Muş", + "scheduled_service": "no" + }, + { + "id": "44934", + "ident": "TR-0038", + "type": "small_airport", + "name": "Yüksekova Highway Strip", + "latitude_deg": "37.5439478243", + "longitude_deg": "44.3380093575", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-30", + "municipality": "Yüksekova", + "scheduled_service": "no" + }, + { + "id": "46278", + "ident": "TR-0039", + "type": "small_airport", + "name": "Kayseri Hava İkmal Airfield", + "latitude_deg": "38.7029942184", + "longitude_deg": "35.504550933800004", + "elevation_ft": "3511", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-38", + "municipality": "Melikgazi", + "scheduled_service": "no" + }, + { + "id": "46279", + "ident": "TR-0040", + "type": "small_airport", + "name": "Manavgat Airport", + "latitude_deg": "36.735745875599996", + "longitude_deg": "31.508649587599997", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-07", + "municipality": "Manavgat", + "scheduled_service": "no" + }, + { + "id": "315916", + "ident": "TR-0041", + "type": "small_airport", + "name": "Fly Pergamon Sport Airfield", + "latitude_deg": "39.092842", + "longitude_deg": "27.148651", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-35", + "municipality": "Bergama", + "scheduled_service": "no", + "home_link": "http://www.flypergamon.com", + "keywords": "fly, pergamon, bergama, sport, airfield, microlight, ultralight, gyrocopter" + }, + { + "id": "337484", + "ident": "TR-0043", + "type": "heliport", + "name": "Titreyengöl Helipad", + "latitude_deg": "36.755223", + "longitude_deg": "31.446676", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-07", + "municipality": "Manavgat", + "scheduled_service": "no", + "keywords": "manavgat,titreyengöl" + }, + { + "id": "324731", + "ident": "TR-0044", + "type": "closed", + "name": "Çukurova Regional Airport (under construction)", + "latitude_deg": "36.890908", + "longitude_deg": "35.070522", + "elevation_ft": "15", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-33", + "municipality": "Tarsus", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Çukurova_Regional_Airport" + }, + { + "id": "338979", + "ident": "TR-0045", + "type": "heliport", + "name": "Ataköy Marina Helipad", + "latitude_deg": "40.97118", + "longitude_deg": "28.8695", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Bakırköy, Istanbul", + "scheduled_service": "no" + }, + { + "id": "338980", + "ident": "TR-0046", + "type": "heliport", + "name": "Acıbadem International Hospital Helipad", + "latitude_deg": "40.95844", + "longitude_deg": "28.83587", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Bakırköy, Istanbul", + "scheduled_service": "no" + }, + { + "id": "338981", + "ident": "TR-0047", + "type": "heliport", + "name": "Zeytinburnu Pier Helipad", + "latitude_deg": "40.98072", + "longitude_deg": "28.89584", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Zeytinburnu, Istanbul", + "scheduled_service": "no" + }, + { + "id": "338982", + "ident": "TR-0048", + "type": "heliport", + "name": "Istanbul Training and Research Hospital Helipad", + "latitude_deg": "41.003", + "longitude_deg": "28.93821", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Fatih, Istanbul", + "scheduled_service": "no" + }, + { + "id": "338983", + "ident": "TR-0049", + "type": "heliport", + "name": "Samatya Sahil Helipad", + "latitude_deg": "41.00203", + "longitude_deg": "28.94543", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Fatih, Istanbul", + "scheduled_service": "no" + }, + { + "id": "338984", + "ident": "TR-0050", + "type": "heliport", + "name": "Çırağan Palace Helipad", + "latitude_deg": "41.04284", + "longitude_deg": "29.01407", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Beşiktaş, Istanbul", + "scheduled_service": "no" + }, + { + "id": "338985", + "ident": "TR-0051", + "type": "heliport", + "name": "Boğaziçi University Helipad", + "latitude_deg": "41.08468", + "longitude_deg": "29.04824", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Beşiktaş, Istanbul", + "scheduled_service": "no" + }, + { + "id": "338986", + "ident": "TR-0052", + "type": "heliport", + "name": "Presidential Heliport", + "latitude_deg": "41.130006", + "longitude_deg": "29.059866", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Sarıyer, Istanbul", + "scheduled_service": "no" + }, + { + "id": "338987", + "ident": "TR-0053", + "type": "heliport", + "name": "Sultan Abdulhamid Hospital Helipad", + "latitude_deg": "41.00042", + "longitude_deg": "29.02056", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Üsküdar, Istanbul", + "scheduled_service": "no" + }, + { + "id": "338988", + "ident": "TR-0054", + "type": "heliport", + "name": "Haydarpaşa Numune Training and Research Hospital Helipad", + "latitude_deg": "41.00535", + "longitude_deg": "29.02336", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Üsküdar, Istanbul", + "scheduled_service": "no" + }, + { + "id": "338989", + "ident": "TR-0055", + "type": "heliport", + "name": "Selimiye 1st Army Command Branch Heliport", + "latitude_deg": "41.006532", + "longitude_deg": "29.0142", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Üsküdar, Istanbul", + "scheduled_service": "no" + }, + { + "id": "338990", + "ident": "TR-0056", + "type": "heliport", + "name": "Çengelköy Heliport", + "latitude_deg": "41.05508", + "longitude_deg": "29.05583", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Üsküdar, Istanbul", + "scheduled_service": "no" + }, + { + "id": "338991", + "ident": "TR-0057", + "type": "heliport", + "name": "Pasamandira Heliport", + "latitude_deg": "41.186167", + "longitude_deg": "29.120253", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Beykoz, Istanbul", + "scheduled_service": "no" + }, + { + "id": "338992", + "ident": "TR-0058", + "type": "heliport", + "name": "Istanbul Park Heliport", + "latitude_deg": "40.95486", + "longitude_deg": "29.41437", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Tuzla, Istanbul", + "scheduled_service": "no" + }, + { + "id": "338993", + "ident": "TR-0059", + "type": "heliport", + "name": "Derince Provincial Hospital Helipad", + "latitude_deg": "40.76099", + "longitude_deg": "29.81412", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-41", + "municipality": "Derince", + "scheduled_service": "no" + }, + { + "id": "338994", + "ident": "TR-0060", + "type": "heliport", + "name": "Sakarya Heliport", + "latitude_deg": "40.75879", + "longitude_deg": "30.39025", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-54", + "municipality": "Sakarya", + "scheduled_service": "no" + }, + { + "id": "338995", + "ident": "TR-0061", + "type": "heliport", + "name": "Sakarya University Heliport", + "latitude_deg": "40.74318", + "longitude_deg": "30.33131", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-54", + "municipality": "Sakarya", + "scheduled_service": "no" + }, + { + "id": "338996", + "ident": "TR-0062", + "type": "heliport", + "name": "Anadolu Health Center Helipad", + "latitude_deg": "40.81826", + "longitude_deg": "29.35425", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-41", + "municipality": "Gebze", + "scheduled_service": "no" + }, + { + "id": "338997", + "ident": "TR-0063", + "type": "heliport", + "name": "Sabancı University Helipad", + "latitude_deg": "40.89357", + "longitude_deg": "29.37775", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Tuzla, Istanbul", + "scheduled_service": "no" + }, + { + "id": "338998", + "ident": "TR-0064", + "type": "heliport", + "name": "Emsey Hospital Helipad", + "latitude_deg": "40.92411", + "longitude_deg": "29.28894", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Pendik, Istanbul", + "scheduled_service": "no" + }, + { + "id": "338999", + "ident": "TR-0065", + "type": "closed", + "name": "Kırıkkale High Specialization Hospital Helipad", + "latitude_deg": "39.86236", + "longitude_deg": "33.483787", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-71", + "municipality": "Kırıkkale", + "scheduled_service": "no" + }, + { + "id": "339002", + "ident": "TR-0066", + "type": "heliport", + "name": "Kayseri Provincial Health Directorate Helipad", + "latitude_deg": "38.698011", + "longitude_deg": "35.536004", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-38", + "municipality": "Melikgazi", + "scheduled_service": "no" + }, + { + "id": "339004", + "ident": "TR-0067", + "type": "heliport", + "name": "Kadirli Provincial Hospital Helipad", + "latitude_deg": "37.34517", + "longitude_deg": "36.09868", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-80", + "municipality": "Kadirli", + "scheduled_service": "no" + }, + { + "id": "339005", + "ident": "TR-0068", + "type": "heliport", + "name": "Acibadem Adana Hospital Helipad", + "latitude_deg": "36.99531", + "longitude_deg": "35.31486", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-01", + "municipality": "Seyhan", + "scheduled_service": "no" + }, + { + "id": "339006", + "ident": "TR-0069", + "type": "heliport", + "name": "Adana 112 Heliport", + "latitude_deg": "37.00791", + "longitude_deg": "35.34182", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-01", + "municipality": "Yüreğir", + "scheduled_service": "no" + }, + { + "id": "339007", + "ident": "TR-0070", + "type": "heliport", + "name": "Adana Sağlık Heliport", + "latitude_deg": "37.00712", + "longitude_deg": "35.34112", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-01", + "municipality": "Yüreğir", + "scheduled_service": "no" + }, + { + "id": "339008", + "ident": "TR-0071", + "type": "heliport", + "name": "Adana City Training and Research Hospital", + "latitude_deg": "37.0299", + "longitude_deg": "35.34716", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-01", + "municipality": "Yüreğir", + "scheduled_service": "no" + }, + { + "id": "339009", + "ident": "TR-0072", + "type": "heliport", + "name": "Balcali Hospital Helipad", + "latitude_deg": "37.05257", + "longitude_deg": "35.36235", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-01", + "municipality": "Sarıçam", + "scheduled_service": "no" + }, + { + "id": "339010", + "ident": "TR-0073", + "type": "heliport", + "name": "Osmaniye Provincial Hospital Helipad", + "latitude_deg": "37.051149", + "longitude_deg": "36.183218", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-80", + "municipality": "Akyar", + "scheduled_service": "no" + }, + { + "id": "339011", + "ident": "TR-0074", + "type": "heliport", + "name": "İsdemir (İskenderun Iron and Steel) Heliport", + "latitude_deg": "36.71344", + "longitude_deg": "36.21417", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "İskenderun", + "scheduled_service": "no" + }, + { + "id": "339014", + "ident": "TR-0075", + "type": "heliport", + "name": "Arsuz Heliport", + "latitude_deg": "36.41201", + "longitude_deg": "35.88043", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Arsuz", + "scheduled_service": "no" + }, + { + "id": "339015", + "ident": "TR-0076", + "type": "heliport", + "name": "İskenderun Heliport", + "latitude_deg": "36.59179", + "longitude_deg": "36.16022", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "İskenderun", + "scheduled_service": "no" + }, + { + "id": "339016", + "ident": "TR-0077", + "type": "heliport", + "name": "İskenderun Naval Heliport", + "latitude_deg": "36.59217", + "longitude_deg": "36.18057", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "İskenderun", + "scheduled_service": "no" + }, + { + "id": "340312", + "ident": "TR-0078", + "type": "small_airport", + "name": "Dörtyol Airfield", + "latitude_deg": "36.8309", + "longitude_deg": "36.2172", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Dörtyol", + "scheduled_service": "no" + }, + { + "id": "340313", + "ident": "TR-0079", + "type": "small_airport", + "name": "Kumköy Blue Sky Airport", + "latitude_deg": "36.80834", + "longitude_deg": "31.369507", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-07", + "municipality": "Manavgat", + "scheduled_service": "no" + }, + { + "id": "340314", + "ident": "TR-0080", + "type": "small_airport", + "name": "Engiz Airport", + "latitude_deg": "41.5129", + "longitude_deg": "36.1203", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-55", + "municipality": "İstiklal", + "scheduled_service": "no" + }, + { + "id": "341713", + "ident": "TR-0081", + "type": "heliport", + "name": "Kanyon Eczacıbaşı Helipad", + "latitude_deg": "41.078313", + "longitude_deg": "29.011714", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Şişli", + "scheduled_service": "no" + }, + { + "id": "341714", + "ident": "TR-0082", + "type": "heliport", + "name": "ÖzdilekPark River Plaza Helipad", + "latitude_deg": "41.077335", + "longitude_deg": "29.009588", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Şişli", + "scheduled_service": "no" + }, + { + "id": "341715", + "ident": "TR-0083", + "type": "heliport", + "name": "ÖzdilekPark Wyndham Grand Istanbul Levent Helipad", + "latitude_deg": "41.077345", + "longitude_deg": "29.01233", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Şişli", + "scheduled_service": "no" + }, + { + "id": "341717", + "ident": "TR-0084", + "type": "heliport", + "name": "15 July Camili Helipad", + "latitude_deg": "40.853043", + "longitude_deg": "30.319881", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-54", + "municipality": "Adapazarı", + "scheduled_service": "no" + }, + { + "id": "341718", + "ident": "TR-0085", + "type": "heliport", + "name": "Serdivan Heliport", + "latitude_deg": "40.785258", + "longitude_deg": "30.366197", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-54", + "municipality": "Serdivan", + "scheduled_service": "no" + }, + { + "id": "341719", + "ident": "TR-0086", + "type": "heliport", + "name": "Sakarya Yenikent Provincial Hospital Helipad", + "latitude_deg": "40.848736", + "longitude_deg": "30.34586", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-54", + "municipality": "Adapazarı", + "scheduled_service": "no" + }, + { + "id": "341764", + "ident": "TR-0087", + "type": "heliport", + "name": "Kocatepe Heliport", + "latitude_deg": "38.789281", + "longitude_deg": "30.467759", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-03", + "municipality": "Afyonkarahisar", + "scheduled_service": "no" + }, + { + "id": "341765", + "ident": "TR-0088", + "type": "heliport", + "name": "Afyonkarahisar Heliport", + "latitude_deg": "38.760204", + "longitude_deg": "30.551208", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-03", + "municipality": "Afyonkarahisar", + "scheduled_service": "no" + }, + { + "id": "341971", + "ident": "TR-0089", + "type": "heliport", + "name": "Cikcilli Heliport", + "latitude_deg": "36.556", + "longitude_deg": "32.0334", + "elevation_ft": "614", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-07", + "municipality": "Alanya", + "scheduled_service": "no" + }, + { + "id": "346113", + "ident": "TR-0090", + "type": "heliport", + "name": "Keşefli Helikopter Pisti", + "latitude_deg": "36.399866", + "longitude_deg": "32.179243", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-07", + "municipality": "Alanya", + "scheduled_service": "no" + }, + { + "id": "346114", + "ident": "TR-0091", + "type": "heliport", + "name": "NEBİLER UYEM HELIPORT", + "latitude_deg": "36.946246", + "longitude_deg": "30.599759", + "elevation_ft": "863", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-07", + "municipality": "Antalya", + "scheduled_service": "no", + "keywords": "uyem, orman, helipad, antalya, orman havacılık" + }, + { + "id": "346115", + "ident": "TR-0092", + "type": "small_airport", + "name": "Kelaynak Aviation Club Airport", + "latitude_deg": "36.93968", + "longitude_deg": "35.563492", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-01", + "scheduled_service": "no", + "keywords": "kelaynak" + }, + { + "id": "346117", + "ident": "TR-0093", + "type": "heliport", + "name": "Karpuzkaldıran Military Helipad", + "latitude_deg": "36.853054", + "longitude_deg": "30.796124", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-07", + "scheduled_service": "no" + }, + { + "id": "346390", + "ident": "TR-0094", + "type": "heliport", + "name": "Bozyazı Forest Depot Helipad", + "latitude_deg": "36.093271", + "longitude_deg": "32.934434", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-33", + "municipality": "Mersin", + "scheduled_service": "no", + "keywords": "bozyazı, ogm, helikopter, forestry, fire" + }, + { + "id": "346391", + "ident": "TR-0095", + "type": "heliport", + "name": "Anamur Air Special Camp Command Heliport", + "latitude_deg": "36.066834", + "longitude_deg": "32.862336", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-33", + "municipality": "Mersin", + "scheduled_service": "no" + }, + { + "id": "347110", + "ident": "TR-0096", + "type": "heliport", + "name": "Beşaslan Border Helipad", + "latitude_deg": "36.199773", + "longitude_deg": "36.468372", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "scheduled_service": "no" + }, + { + "id": "347187", + "ident": "TR-0097", + "type": "heliport", + "name": "Özeker Hd KRK, No. 10 Border Post Helipad", + "latitude_deg": "36.237698", + "longitude_deg": "36.546378", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Reyhanli", + "scheduled_service": "no" + }, + { + "id": "347188", + "ident": "TR-0098", + "type": "heliport", + "name": "Bükülmez Borderpost Helipad", + "latitude_deg": "36.326022", + "longitude_deg": "36.658212", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Reyhanli", + "scheduled_service": "no" + }, + { + "id": "347189", + "ident": "TR-0099", + "type": "closed", + "name": "Border Post Helipad", + "latitude_deg": "36.349089", + "longitude_deg": "36.598577", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "scheduled_service": "no" + }, + { + "id": "347190", + "ident": "TR-0100", + "type": "heliport", + "name": "Federal Border Guard No. 19 Helipad", + "latitude_deg": "36.354363", + "longitude_deg": "36.60863", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Hatayhamamı", + "scheduled_service": "no" + }, + { + "id": "347191", + "ident": "TR-0101", + "type": "closed", + "name": "Borderpost Helipad", + "latitude_deg": "36.464096", + "longitude_deg": "36.542735", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "scheduled_service": "no" + }, + { + "id": "347192", + "ident": "TR-0102", + "type": "heliport", + "name": "Federal Border Guard No. 15 Helipad", + "latitude_deg": "36.468229", + "longitude_deg": "36.547323", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Sucuköy", + "scheduled_service": "no" + }, + { + "id": "347193", + "ident": "TR-0103", + "type": "heliport", + "name": "Federal Border Guard No. 14 Helipad", + "latitude_deg": "36.496051", + "longitude_deg": "36.533348", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Sucuköy", + "scheduled_service": "no" + }, + { + "id": "347194", + "ident": "TR-0104", + "type": "heliport", + "name": "Incirli Border Post Helipad", + "latitude_deg": "36.533118", + "longitude_deg": "36.555966", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Incirli", + "scheduled_service": "no" + }, + { + "id": "347195", + "ident": "TR-0105", + "type": "heliport", + "name": "Federal Border Guard No. 12 Helipad", + "latitude_deg": "36.577022", + "longitude_deg": "36.578932", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Incirli", + "scheduled_service": "no" + }, + { + "id": "347196", + "ident": "TR-0106", + "type": "heliport", + "name": "Federal Border Guard No. 11 Helipad", + "latitude_deg": "36.635561", + "longitude_deg": "36.569454", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Kalatepe", + "scheduled_service": "no" + }, + { + "id": "347197", + "ident": "TR-0107", + "type": "heliport", + "name": "Federal Border Guard No. 10 Helipad", + "latitude_deg": "36.684507", + "longitude_deg": "36.60678", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Sugediği", + "scheduled_service": "no" + }, + { + "id": "347198", + "ident": "TR-0108", + "type": "heliport", + "name": "Federal Border Guard No. 8 Helipad", + "latitude_deg": "36.743157", + "longitude_deg": "36.604418", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Sugediği", + "scheduled_service": "no" + }, + { + "id": "347199", + "ident": "TR-0109", + "type": "heliport", + "name": "Sugediği Border Post Helipad", + "latitude_deg": "36.762655", + "longitude_deg": "36.609166", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Sugediği", + "scheduled_service": "no" + }, + { + "id": "347200", + "ident": "TR-0110", + "type": "heliport", + "name": "Federal Border Guard No. 4 Helipad", + "latitude_deg": "36.791192", + "longitude_deg": "36.640264", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Sugediği", + "scheduled_service": "no" + }, + { + "id": "347201", + "ident": "TR-0111", + "type": "heliport", + "name": "Federal Border Guard No. 1 Helipad", + "latitude_deg": "36.825974", + "longitude_deg": "36.662691", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Çınarbaşı", + "scheduled_service": "no" + }, + { + "id": "347202", + "ident": "TR-0112", + "type": "heliport", + "name": "Deliosman Border Post Helipad", + "latitude_deg": "36.825341", + "longitude_deg": "36.735336", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-79", + "municipality": "Deliosman", + "scheduled_service": "no" + }, + { + "id": "347203", + "ident": "TR-0113", + "type": "heliport", + "name": "Bulamaçlı Border Post Helipad", + "latitude_deg": "36.796234", + "longitude_deg": "36.810451", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-79", + "municipality": "Bulamaçlı", + "scheduled_service": "no" + }, + { + "id": "347204", + "ident": "TR-0114", + "type": "heliport", + "name": "Aybastı \"Border Eagles\" Border Post Helipad", + "latitude_deg": "36.761004", + "longitude_deg": "37.000944", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-79", + "municipality": "Aybastı", + "scheduled_service": "no" + }, + { + "id": "347205", + "ident": "TR-0115", + "type": "heliport", + "name": "Çalkaya Border Post Helipad", + "latitude_deg": "36.793147", + "longitude_deg": "36.834655", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-79", + "municipality": "Çalkaya", + "scheduled_service": "no" + }, + { + "id": "347206", + "ident": "TR-0116", + "type": "heliport", + "name": "Öncüpınar Border Crossing Helipads", + "latitude_deg": "36.64263", + "longitude_deg": "37.087863", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-79", + "municipality": "Öncüpınar", + "scheduled_service": "no" + }, + { + "id": "347207", + "ident": "TR-0117", + "type": "heliport", + "name": "Öncüpınar Border Post Helipad", + "latitude_deg": "36.643055", + "longitude_deg": "37.090787", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-79", + "municipality": "Akçabağlar", + "scheduled_service": "no" + }, + { + "id": "347208", + "ident": "TR-0118", + "type": "heliport", + "name": "Inanli Border Post Helipad", + "latitude_deg": "36.675765", + "longitude_deg": "37.134519", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-79", + "municipality": "Inanli", + "scheduled_service": "no" + }, + { + "id": "347209", + "ident": "TR-0119", + "type": "heliport", + "name": "Inanli Village Border Post Helipad", + "latitude_deg": "36.665583", + "longitude_deg": "37.166737", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-79", + "municipality": "Inanli", + "scheduled_service": "no" + }, + { + "id": "347210", + "ident": "TR-0120", + "type": "closed", + "name": "Cobanbeyli Border Crossing Helipad", + "latitude_deg": "36.637415", + "longitude_deg": "37.474492", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-79", + "municipality": "Cobanbeyli", + "scheduled_service": "no" + }, + { + "id": "347211", + "ident": "TR-0121", + "type": "heliport", + "name": "Dogan Border Post Helipad", + "latitude_deg": "36.669873", + "longitude_deg": "37.482378", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-79", + "municipality": "Elbeyli", + "scheduled_service": "no" + }, + { + "id": "347212", + "ident": "TR-0122", + "type": "heliport", + "name": "Konak Border Post Helipad", + "latitude_deg": "36.912036", + "longitude_deg": "38.210454", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-63", + "municipality": "Konak", + "scheduled_service": "no" + }, + { + "id": "349411", + "ident": "TR-0123", + "type": "heliport", + "name": "Tayfursökmen Borderpost Helipad", + "latitude_deg": "36.230191", + "longitude_deg": "36.398137", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Tayfursökmen", + "scheduled_service": "no" + }, + { + "id": "349412", + "ident": "TR-0124", + "type": "heliport", + "name": "Bohsin Borderpost Helipad", + "latitude_deg": "36.221112", + "longitude_deg": "36.38913", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Bohsin", + "scheduled_service": "no" + }, + { + "id": "349435", + "ident": "TR-0125", + "type": "heliport", + "name": "Tekirdağ İsmail Fehmi Cumalıoğlu City Hospital Heliport", + "latitude_deg": "41.00903", + "longitude_deg": "27.52396", + "elevation_ft": "558", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-59", + "municipality": "Tekirdağ", + "scheduled_service": "no" + }, + { + "id": "349436", + "ident": "TR-0126", + "type": "heliport", + "name": "Prof. Dr. Murat Dilmener Emergency Hospital Heliport", + "latitude_deg": "40.96841", + "longitude_deg": "28.80768", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Bakırköy, İstanbul", + "scheduled_service": "no" + }, + { + "id": "349437", + "ident": "TR-0127", + "type": "heliport", + "name": "Medipol Mega University Hospital Heliport", + "latitude_deg": "41.05842", + "longitude_deg": "28.84335", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Bağcılar, İstanbul", + "scheduled_service": "no" + }, + { + "id": "349438", + "ident": "TR-0128", + "type": "heliport", + "name": "İSPARK Hasdal Heliport", + "latitude_deg": "41.09257", + "longitude_deg": "28.9228", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Eyüpsultan, Istanbul", + "scheduled_service": "no" + }, + { + "id": "349439", + "ident": "TR-0129", + "type": "heliport", + "name": "Silivri State Hospital Helipad", + "latitude_deg": "41.079146", + "longitude_deg": "28.251484", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Silivri", + "scheduled_service": "no" + }, + { + "id": "349680", + "ident": "TR-0130", + "type": "heliport", + "name": "Ziyaret Garrison Helipad", + "latitude_deg": "36.16861", + "longitude_deg": "36.360348", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Altınözü", + "scheduled_service": "no" + }, + { + "id": "349681", + "ident": "TR-0131", + "type": "heliport", + "name": "Ziyaret Border Post Heliport", + "latitude_deg": "36.164833", + "longitude_deg": "36.368056", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Ziyaret, Altınözü", + "scheduled_service": "no" + }, + { + "id": "349682", + "ident": "TR-0132", + "type": "heliport", + "name": "Kıyıgören Garrison Helipad", + "latitude_deg": "36.130135", + "longitude_deg": "36.36799", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Altınözü", + "scheduled_service": "no" + }, + { + "id": "349683", + "ident": "TR-0133", + "type": "heliport", + "name": "Hacıpaşa helipad", + "latitude_deg": "36.069306", + "longitude_deg": "36.376533", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Altınözü", + "scheduled_service": "no" + }, + { + "id": "349684", + "ident": "TR-0134", + "type": "heliport", + "name": "Sarıbük Border Post Helipad", + "latitude_deg": "35.990792", + "longitude_deg": "36.332453", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Altınözü", + "scheduled_service": "no" + }, + { + "id": "349686", + "ident": "TR-0135", + "type": "heliport", + "name": "Sarıbük Garrison Helipad", + "latitude_deg": "36.00592", + "longitude_deg": "36.315999", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Altınözü", + "scheduled_service": "no" + }, + { + "id": "349732", + "ident": "TR-0136", + "type": "heliport", + "name": "Şanlı Karakolu Border Post Helipad", + "latitude_deg": "35.950741", + "longitude_deg": "36.279735", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Kolcular", + "scheduled_service": "no" + }, + { + "id": "349733", + "ident": "TR-0137", + "type": "heliport", + "name": "Kılıçtutan Garrison Helipad", + "latitude_deg": "35.962007", + "longitude_deg": "36.222106", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Kılıçtutan", + "scheduled_service": "no" + }, + { + "id": "349737", + "ident": "TR-0138", + "type": "heliport", + "name": "Üçırmak Garrison Helipad", + "latitude_deg": "35.954202", + "longitude_deg": "36.196835", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Üçırmak Köyü", + "scheduled_service": "no" + }, + { + "id": "349738", + "ident": "TR-0139", + "type": "heliport", + "name": "Arslanyazı Garrison Helipad", + "latitude_deg": "35.934991", + "longitude_deg": "36.178987", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Arslanyazı", + "scheduled_service": "no" + }, + { + "id": "349739", + "ident": "TR-0140", + "type": "heliport", + "name": "Uluyol Border Post Helipad", + "latitude_deg": "35.92054", + "longitude_deg": "36.168173", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Uluyol", + "scheduled_service": "no" + }, + { + "id": "349740", + "ident": "TR-0141", + "type": "heliport", + "name": "Güveççi Garrisson", + "latitude_deg": "35.889869", + "longitude_deg": "36.166097", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Güveççi", + "scheduled_service": "no" + }, + { + "id": "350851", + "ident": "TR-0142", + "type": "heliport", + "name": "Pınarhisar Gendarmerie Heliport", + "latitude_deg": "41.62548", + "longitude_deg": "27.50743", + "elevation_ft": "564", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-39", + "municipality": "Pınarhisar", + "scheduled_service": "no" + }, + { + "id": "350906", + "ident": "TR-0143", + "type": "heliport", + "name": "Hizirbey Heliport", + "latitude_deg": "41.00982", + "longitude_deg": "39.71286", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-61", + "municipality": "Trabzon", + "scheduled_service": "no" + }, + { + "id": "350907", + "ident": "TR-0144", + "type": "heliport", + "name": "Sakli Heliport", + "latitude_deg": "41.13264", + "longitude_deg": "29.30144", + "elevation_ft": "39", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Beykoz, Istanbul", + "scheduled_service": "no" + }, + { + "id": "350908", + "ident": "TR-0145", + "type": "heliport", + "name": "Poyrazköy Heliport", + "latitude_deg": "41.20829", + "longitude_deg": "29.14207", + "elevation_ft": "262", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Beykoz, Istanbul", + "scheduled_service": "no" + }, + { + "id": "350909", + "ident": "TR-0146", + "type": "heliport", + "name": "Liv Hospital Heliport", + "latitude_deg": "41.06037", + "longitude_deg": "29.0284", + "elevation_ft": "330", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Beşiktaş, Istanbul", + "scheduled_service": "no" + }, + { + "id": "350911", + "ident": "TR-0147", + "type": "heliport", + "name": "TRT Heliport", + "latitude_deg": "41.05694", + "longitude_deg": "29.03181", + "elevation_ft": "361", + "continent": "EU", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Beşiktaş, Istanbul", + "scheduled_service": "no" + }, + { + "id": "350912", + "ident": "TR-0148", + "type": "heliport", + "name": "Beykoz Rescue and Underwater Command Heliport", + "latitude_deg": "41.13878", + "longitude_deg": "29.07915", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Beykoz, Istanbul", + "scheduled_service": "no" + }, + { + "id": "350913", + "ident": "TR-0149", + "type": "heliport", + "name": "FMV Işık University Helipad", + "latitude_deg": "41.16733", + "longitude_deg": "29.56668", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Şile", + "scheduled_service": "no" + }, + { + "id": "350914", + "ident": "TR-0150", + "type": "heliport", + "name": "Kefken Coast Guard Heliport", + "latitude_deg": "41.17676", + "longitude_deg": "30.22468", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-41", + "municipality": "Kefken", + "scheduled_service": "no" + }, + { + "id": "350915", + "ident": "TR-0151", + "type": "heliport", + "name": "Black Sea Regional Command Heliport", + "latitude_deg": "41.28909", + "longitude_deg": "31.40395", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-67", + "municipality": "Ereğli", + "scheduled_service": "no" + }, + { + "id": "350917", + "ident": "TR-0152", + "type": "heliport", + "name": "Çatalağzı Thermal Power Plant Heliport", + "latitude_deg": "41.51946", + "longitude_deg": "31.89865", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-67", + "municipality": "Kilimli", + "scheduled_service": "no" + }, + { + "id": "350918", + "ident": "TR-0153", + "type": "heliport", + "name": "Bartin Naval Base Heliport", + "latitude_deg": "41.68146", + "longitude_deg": "32.2381", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-74", + "municipality": "Bartin", + "scheduled_service": "no" + }, + { + "id": "350919", + "ident": "TR-0154", + "type": "heliport", + "name": "Ilkadim Samsun Provincial Health Directorate Heliport", + "latitude_deg": "41.27392", + "longitude_deg": "36.29902", + "elevation_ft": "531", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-55", + "municipality": "Samsun", + "scheduled_service": "no" + }, + { + "id": "350920", + "ident": "TR-0155", + "type": "heliport", + "name": "Sahil Park Heliport", + "latitude_deg": "41.28482", + "longitude_deg": "36.34727", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-55", + "municipality": "Samsun", + "scheduled_service": "no" + }, + { + "id": "353971", + "ident": "TR-0156", + "type": "heliport", + "name": "Akdeniz Uni. Hospital Helipad", + "latitude_deg": "36.89544", + "longitude_deg": "30.660369", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-07", + "municipality": "Antalya", + "scheduled_service": "no" + }, + { + "id": "353972", + "ident": "TR-0157", + "type": "heliport", + "name": "Alara Helipad", + "latitude_deg": "36.659185", + "longitude_deg": "31.665097", + "elevation_ft": "75", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-07", + "municipality": "Antalya", + "scheduled_service": "no" + }, + { + "id": "353975", + "ident": "TR-0158", + "type": "heliport", + "name": "Düzlerçamı Forestry Heliport", + "latitude_deg": "36.98472", + "longitude_deg": "30.560253", + "elevation_ft": "855", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-07", + "municipality": "Antalya", + "scheduled_service": "no" + }, + { + "id": "353977", + "ident": "TR-0159", + "type": "small_airport", + "name": "Manavgat Model Ucak Pisti", + "latitude_deg": "36.748762", + "longitude_deg": "31.479854", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-07", + "municipality": "Antalya", + "scheduled_service": "no" + }, + { + "id": "353978", + "ident": "TR-0160", + "type": "heliport", + "name": "Antalya Mermer Heliport", + "latitude_deg": "37.08528", + "longitude_deg": "30.60972", + "elevation_ft": "1083", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-07", + "municipality": "Antalya", + "scheduled_service": "no" + }, + { + "id": "355201", + "ident": "TR-0161", + "type": "heliport", + "name": "Wyndham Grand İstanbul Levent Heliport", + "latitude_deg": "41.077076", + "longitude_deg": "29.012293", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "İstanbul,Şişli", + "scheduled_service": "no" + }, + { + "id": "355207", + "ident": "TR-0162", + "type": "heliport", + "name": "Kıyı Emniyet Gemi Hizmetleri Merkezi Heliport", + "latitude_deg": "40.228439", + "longitude_deg": "26.425834", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-17", + "municipality": "Çanakkale", + "scheduled_service": "no" + }, + { + "id": "355208", + "ident": "TR-0163", + "type": "heliport", + "name": "Güroymak Jandarma Helipad", + "latitude_deg": "38.567081", + "longitude_deg": "42.037394", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-13", + "municipality": "Güroymak", + "scheduled_service": "no" + }, + { + "id": "355209", + "ident": "TR-0164", + "type": "heliport", + "name": "Yılair Havacılık ve Ticaret AŞ ve Helikopter Pisti", + "latitude_deg": "40.41513", + "longitude_deg": "29.108555", + "elevation_ft": "115", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-16", + "municipality": "Gemlik", + "scheduled_service": "no" + }, + { + "id": "355210", + "ident": "TR-0165", + "type": "heliport", + "name": "İsPark Kısıklı Heliport Alanı", + "latitude_deg": "41.023192", + "longitude_deg": "29.056683", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Üsküdar", + "scheduled_service": "no", + "home_link": "https://ispark.istanbul/" + }, + { + "id": "355211", + "ident": "TR-0166", + "type": "heliport", + "name": "D-Marin Turgutreis Marina Heliport", + "latitude_deg": "37.002792", + "longitude_deg": "27.258346", + "elevation_ft": "1", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-48", + "municipality": "Bodrum", + "scheduled_service": "no", + "home_link": "https://www.d-marin.com/en/marinas/turgutreis/" + }, + { + "id": "355212", + "ident": "TR-0167", + "type": "heliport", + "name": "Kaan Havacılık Heliport", + "latitude_deg": "41.125811", + "longitude_deg": "28.983653", + "elevation_ft": "113", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Sarıyer", + "scheduled_service": "no", + "home_link": "http://www.kaanair.com/" + }, + { + "id": "355213", + "ident": "TR-0168", + "type": "heliport", + "name": "Ataşehir Belediyesi Afet Kriz Merkezi Helikopter Pisti", + "latitude_deg": "40.993379", + "longitude_deg": "29.116689", + "elevation_ft": "88", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Ataşehir", + "scheduled_service": "no" + }, + { + "id": "355214", + "ident": "TR-0169", + "type": "heliport", + "name": "Point Hotel Barbaros Helipad", + "latitude_deg": "41.064316", + "longitude_deg": "29.010589", + "elevation_ft": "120", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Şişli", + "scheduled_service": "no" + }, + { + "id": "355215", + "ident": "TR-0170", + "type": "heliport", + "name": "AFAD Helipad", + "latitude_deg": "39.906437", + "longitude_deg": "32.758553", + "elevation_ft": "856", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-06", + "municipality": "Çankaya", + "scheduled_service": "no" + }, + { + "id": "355216", + "ident": "TR-0171", + "type": "heliport", + "name": "Emniyet Genel Müdürlüğü (General Directorate of Security) Helipad", + "latitude_deg": "39.901178", + "longitude_deg": "32.844827", + "elevation_ft": "925", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-06", + "municipality": "Çankaya", + "scheduled_service": "no" + }, + { + "id": "355217", + "ident": "TR-0172", + "type": "heliport", + "name": "Vizyon Heliport", + "latitude_deg": "39.958307", + "longitude_deg": "32.822816", + "elevation_ft": "855", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-06", + "municipality": "Yenimahalle", + "scheduled_service": "no" + }, + { + "id": "355218", + "ident": "TR-0173", + "type": "heliport", + "name": "Turkey Air Traffic Control Center Helipad", + "latitude_deg": "40.138042", + "longitude_deg": "32.99355", + "elevation_ft": "947", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-06", + "municipality": "Çubuk", + "scheduled_service": "no" + }, + { + "id": "355219", + "ident": "TR-0174", + "type": "heliport", + "name": "Ankara Şehir Hastanesi Helipad", + "latitude_deg": "39.902222", + "longitude_deg": "32.757206", + "elevation_ft": "863", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-06", + "municipality": "Çankaya", + "scheduled_service": "no" + }, + { + "id": "355220", + "ident": "TR-0175", + "type": "heliport", + "name": "Erzurum Bölge Eğitim Ve Araştırma Hastanesi Helikopter Pisti", + "latitude_deg": "39.889903", + "longitude_deg": "41.24", + "elevation_ft": "1914", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-25", + "municipality": "Yakutiye", + "scheduled_service": "no" + }, + { + "id": "355221", + "ident": "TR-0176", + "type": "heliport", + "name": "Sarp Heliport", + "latitude_deg": "39.752732", + "longitude_deg": "30.63845", + "elevation_ft": "787", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-26", + "municipality": "Odunpazarı", + "scheduled_service": "no" + }, + { + "id": "355222", + "ident": "TR-0177", + "type": "heliport", + "name": "Cumhuriyet Parkı Helipad", + "latitude_deg": "39.753783", + "longitude_deg": "30.492112", + "elevation_ft": "805", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-26", + "municipality": "Odunpazarı", + "scheduled_service": "no" + }, + { + "id": "355223", + "ident": "TR-0178", + "type": "heliport", + "name": "İsdemir İskenderun Demir Ve Çelik Anonim Şirketi Helipad", + "latitude_deg": "36.713455", + "longitude_deg": "36.214113", + "elevation_ft": "66", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "İskenderun", + "scheduled_service": "no" + }, + { + "id": "355224", + "ident": "TR-0179", + "type": "heliport", + "name": "Lokman Hekim University Helipad", + "latitude_deg": "39.956382", + "longitude_deg": "32.583486", + "elevation_ft": "800", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-06", + "municipality": "Sincan", + "scheduled_service": "no" + }, + { + "id": "355225", + "ident": "TR-0180", + "type": "heliport", + "name": "Çanakkale Forest Fire Management Center Heliport", + "latitude_deg": "40.08168", + "longitude_deg": "26.375615", + "elevation_ft": "45", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-17", + "municipality": "Çanakkale Merkez/Çınarlı", + "scheduled_service": "no" + }, + { + "id": "355226", + "ident": "TR-0181", + "type": "heliport", + "name": "Fethiye Forest Management Directorate Heliport", + "latitude_deg": "36.665346", + "longitude_deg": "29.162051", + "elevation_ft": "66", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-48", + "municipality": "Fethiye/Çamköy", + "scheduled_service": "no" + }, + { + "id": "355227", + "ident": "TR-0182", + "type": "heliport", + "name": "Denizli Regional Directorate of Forestry Helicopter Heliport", + "latitude_deg": "37.734549", + "longitude_deg": "29.090766", + "elevation_ft": "550", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-20", + "municipality": "Pamukkale", + "scheduled_service": "no" + }, + { + "id": "355228", + "ident": "TR-0183", + "type": "heliport", + "name": "LOSEV - LÖSANTE Children and Adults Hospital Helipad", + "latitude_deg": "39.833125", + "longitude_deg": "32.719136", + "elevation_ft": "1159", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-06", + "municipality": "Gölbaşı", + "scheduled_service": "no" + }, + { + "id": "355235", + "ident": "TR-0184", + "type": "heliport", + "name": "KTÜ Farabi Hospital Helipad", + "latitude_deg": "40.993341", + "longitude_deg": "39.767285", + "elevation_ft": "117", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-61", + "municipality": "Ortahisar", + "scheduled_service": "no" + }, + { + "id": "355236", + "ident": "TR-0185", + "type": "heliport", + "name": "Turkish Coast Guard Samsun Air Base", + "latitude_deg": "41.259586", + "longitude_deg": "36.547321", + "elevation_ft": "5", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-55", + "municipality": "Çarşamba", + "scheduled_service": "no" + }, + { + "id": "355240", + "ident": "TR-0186", + "type": "heliport", + "name": "Marmaris Devlet Hastanesi Helipad", + "latitude_deg": "36.858558", + "longitude_deg": "28.258131", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-48", + "municipality": "Marmaris", + "scheduled_service": "no" + }, + { + "id": "355243", + "ident": "TR-0187", + "type": "heliport", + "name": "Teos Marina Helipad", + "latitude_deg": "38.193784", + "longitude_deg": "26.78312", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-35", + "municipality": "Seferihisar", + "scheduled_service": "no", + "home_link": "https://teosmarina.com/" + }, + { + "id": "355244", + "ident": "TR-0188", + "type": "heliport", + "name": "Uludağ Hospital Helipad", + "latitude_deg": "40.222192", + "longitude_deg": "28.867865", + "elevation_ft": "88", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-16", + "municipality": "Nilüfer", + "scheduled_service": "no" + }, + { + "id": "355245", + "ident": "TR-0189", + "type": "heliport", + "name": "Sönmez Airlines Inc. Helipad", + "latitude_deg": "40.255134", + "longitude_deg": "29.067867", + "elevation_ft": "88", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-16", + "municipality": "Osmangazi", + "scheduled_service": "no", + "home_link": "https://www.sonmezholding.com.tr/havacilik/" + }, + { + "id": "355246", + "ident": "TR-0190", + "type": "heliport", + "name": "Erguvan Bursa Provincial Health Directorate Heliport", + "latitude_deg": "40.226116", + "longitude_deg": "29.073486", + "elevation_ft": "295", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-16", + "municipality": "Erguvan", + "scheduled_service": "no" + }, + { + "id": "355247", + "ident": "TR-0191", + "type": "heliport", + "name": "Anafartalar Çanakkale Public Hospital Helipad", + "latitude_deg": "40.158998", + "longitude_deg": "26.419443", + "elevation_ft": "170", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-17", + "municipality": "Çanakkale Merkez", + "scheduled_service": "no" + }, + { + "id": "355248", + "ident": "TR-0192", + "type": "heliport", + "name": "ÖNÖC Central District Helipad", + "latitude_deg": "40.19931", + "longitude_deg": "29.05428", + "elevation_ft": "426", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-16", + "municipality": "Osmangazi", + "scheduled_service": "no" + }, + { + "id": "355249", + "ident": "TR-0193", + "type": "heliport", + "name": "Bursa City Hospital Helipad", + "latitude_deg": "40.26975", + "longitude_deg": "28.91379", + "elevation_ft": "393", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-16", + "municipality": "Nilüfer", + "scheduled_service": "no" + }, + { + "id": "355250", + "ident": "TR-0194", + "type": "heliport", + "name": "İzmir Air Ambulance Center", + "latitude_deg": "38.39713", + "longitude_deg": "27.1025", + "elevation_ft": "393", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-35", + "municipality": "Karabağlar", + "scheduled_service": "no" + }, + { + "id": "355251", + "ident": "TR-0195", + "type": "heliport", + "name": "Divan Taksim Palmira Turizm Ticaret Anonim Şirketi Helipad", + "latitude_deg": "41.04118", + "longitude_deg": "28.98712", + "elevation_ft": "223", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Şişli", + "scheduled_service": "no" + }, + { + "id": "355252", + "ident": "TR-0196", + "type": "heliport", + "name": "Turkish Aeronautical Association(THK) Sütlüce Helipad", + "latitude_deg": "41.056658", + "longitude_deg": "28.948733", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Beyoğlu", + "scheduled_service": "no" + }, + { + "id": "355253", + "ident": "TR-0197", + "type": "heliport", + "name": "İSKİ Büyükçekmece Biological Wastewater Treatment Plant Heliport", + "latitude_deg": "41.04769", + "longitude_deg": "28.5504", + "elevation_ft": "42", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Büyükçekmece", + "scheduled_service": "no" + }, + { + "id": "355254", + "ident": "TR-0198", + "type": "heliport", + "name": "ÇOSB Helipad", + "latitude_deg": "41.315069", + "longitude_deg": "27.97749", + "elevation_ft": "639", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-34", + "municipality": "Çerkezköy", + "scheduled_service": "no" + }, + { + "id": "355255", + "ident": "TR-0199", + "type": "heliport", + "name": "Doğuş Didim Marina İşl. Turizm Ticaret Anonim Şirketi Helipad", + "latitude_deg": "37.3396", + "longitude_deg": "27.259033", + "elevation_ft": "29", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-09", + "municipality": "Didim", + "scheduled_service": "no" + }, + { + "id": "355256", + "ident": "TR-0200", + "type": "heliport", + "name": "Kaplankaya Heliport", + "latitude_deg": "37.315101", + "longitude_deg": "27.400508", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-48", + "municipality": "Milas", + "scheduled_service": "no" + }, + { + "id": "355257", + "ident": "TR-0201", + "type": "heliport", + "name": "Turgut Özal Medical Center Helipad", + "latitude_deg": "38.33887", + "longitude_deg": "38.42868", + "elevation_ft": "3047", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-44", + "municipality": "Battalgazi", + "scheduled_service": "no" + }, + { + "id": "355258", + "ident": "TR-0202", + "type": "heliport", + "name": "Merzifon Karamustafa Paşa Public Hospital Helipad", + "latitude_deg": "40.866017", + "longitude_deg": "35.437485", + "elevation_ft": "2352", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-05", + "municipality": "Merzifon", + "scheduled_service": "no" + }, + { + "id": "355281", + "ident": "TR-0203", + "type": "heliport", + "name": "Düzce Atatürk State Hospital Helliport", + "latitude_deg": "40.843369", + "longitude_deg": "31.136438", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-54", + "municipality": "Düzce", + "scheduled_service": "no" + }, + { + "id": "355282", + "ident": "TR-0204", + "type": "heliport", + "name": "Kahramankazan State Hospital Heliport", + "latitude_deg": "40.194759", + "longitude_deg": "32.678128", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-06", + "municipality": "Kahramankazan", + "scheduled_service": "no" + }, + { + "id": "355283", + "ident": "TR-0205", + "type": "heliport", + "name": "Şereflikoçhisar State Hospital Heliport", + "latitude_deg": "38.955671", + "longitude_deg": "33.527948", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-06", + "municipality": "Şereflikoçhisar", + "scheduled_service": "no" + }, + { + "id": "355284", + "ident": "TR-0206", + "type": "heliport", + "name": "Kirikkale University Medical Faculty Hospital Heliport", + "latitude_deg": "39.869608", + "longitude_deg": "33.451769", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-71", + "municipality": "Yahşihan", + "scheduled_service": "no" + }, + { + "id": "355286", + "ident": "TR-0207", + "type": "heliport", + "name": "Yeni State Hospital Heliport", + "latitude_deg": "36.243603", + "longitude_deg": "36.560386", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-31", + "municipality": "Reyhanli", + "scheduled_service": "no" + }, + { + "id": "355354", + "ident": "TR-0209", + "type": "heliport", + "name": "Erdemir Heliport", + "latitude_deg": "41.25104", + "longitude_deg": "31.40929", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-67", + "municipality": "Ereğli", + "scheduled_service": "no" + }, + { + "id": "355355", + "ident": "TR-0210", + "type": "heliport", + "name": "Gazelle Resort Helipad", + "latitude_deg": "40.682794", + "longitude_deg": "31.631441", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-14", + "municipality": "Merkez", + "scheduled_service": "no" + }, + { + "id": "355357", + "ident": "TR-0211", + "type": "heliport", + "name": "Bolu Dagi Helipad", + "latitude_deg": "40.735812", + "longitude_deg": "31.426059", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-14", + "municipality": "Yeşilköy", + "scheduled_service": "no" + }, + { + "id": "355359", + "ident": "TR-0212", + "type": "heliport", + "name": "AIBU Helipad", + "latitude_deg": "40.715924", + "longitude_deg": "31.531502", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-14", + "municipality": "Merkez", + "scheduled_service": "no" + }, + { + "id": "355574", + "ident": "TR-0213", + "type": "small_airport", + "name": "Kadriye Airstrip", + "latitude_deg": "36.895324", + "longitude_deg": "30.963507", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-07", + "municipality": "Serik", + "scheduled_service": "no", + "home_link": "https://www.instagram.com/bluewaybelek/" + }, + { + "id": "355914", + "ident": "TR-0214", + "type": "heliport", + "name": "Heliport Rize", + "latitude_deg": "41.03832", + "longitude_deg": "40.520024", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-53", + "scheduled_service": "no" + }, + { + "id": "430017", + "ident": "TR-0215", + "type": "balloonport", + "name": "Nevşehir Heliport", + "latitude_deg": "38.66602", + "longitude_deg": "34.81896", + "elevation_ft": "3645", + "continent": "AS", + "iso_country": "TR", + "iso_region": "TR-50", + "municipality": "Nevşehir", + "scheduled_service": "no" + }, + { + "id": "43074", + "ident": "TRPG", + "type": "medium_airport", + "name": "John A. Osborne Airport", + "latitude_deg": "16.791400909423828", + "longitude_deg": "-62.19329833984375", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "MS", + "iso_region": "MS-U-A", + "municipality": "Gerald's Park", + "scheduled_service": "yes", + "gps_code": "TRPG", + "iata_code": "MNI", + "wikipedia_link": "https://en.wikipedia.org/wiki/John_A._Osborne_Airport", + "keywords": "Gerald's Airport" + }, + { + "id": "25017", + "ident": "TS00", + "type": "small_airport", + "name": "Fuller Airport", + "latitude_deg": "32.787314", + "longitude_deg": "-97.180499", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "TS00", + "local_code": "TS00" + }, + { + "id": "25018", + "ident": "TS01", + "type": "closed", + "name": "Landry Airport", + "latitude_deg": "30.710835", + "longitude_deg": "-97.650321", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Geogetown", + "scheduled_service": "no", + "local_code": "TS01", + "keywords": "TS01" + }, + { + "id": "25019", + "ident": "TS02", + "type": "small_airport", + "name": "One Sixty Four Place Airport", + "latitude_deg": "33.119598388671875", + "longitude_deg": "-98.23059844970703", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jacksboro", + "scheduled_service": "no", + "gps_code": "TS02", + "local_code": "TS02" + }, + { + "id": "25020", + "ident": "TS03", + "type": "small_airport", + "name": "Bryant's Landing Airport", + "latitude_deg": "32.061500549316406", + "longitude_deg": "-97.73780059814453", + "elevation_ft": "914", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Walnut Springs", + "scheduled_service": "no", + "gps_code": "TS03", + "local_code": "TS03" + }, + { + "id": "25021", + "ident": "TS04", + "type": "small_airport", + "name": "Rio Vista Ranch Airport", + "latitude_deg": "29.835800170898438", + "longitude_deg": "-100.97799682617188", + "elevation_ft": "1774", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no", + "gps_code": "TS04", + "local_code": "TS04" + }, + { + "id": "25022", + "ident": "TS05", + "type": "closed", + "name": "Progreso Airport", + "latitude_deg": "26.0837", + "longitude_deg": "-97.950302", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Progreso", + "scheduled_service": "no", + "keywords": "TS05" + }, + { + "id": "25023", + "ident": "TS06", + "type": "heliport", + "name": "Medical City Dallas Hospital Heliport", + "latitude_deg": "32.911864", + "longitude_deg": "-96.775337", + "elevation_ft": "517", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "TS06", + "local_code": "TS06" + }, + { + "id": "25024", + "ident": "TS07", + "type": "small_airport", + "name": "Dry Creek Airport", + "latitude_deg": "29.986299514770508", + "longitude_deg": "-95.68560028076172", + "elevation_ft": "152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cypress", + "scheduled_service": "no", + "gps_code": "TS07", + "local_code": "TS07" + }, + { + "id": "25025", + "ident": "TS08", + "type": "small_airport", + "name": "Kubecka Aviation Airport", + "latitude_deg": "29.070403", + "longitude_deg": "-96.504973", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ganado", + "scheduled_service": "no", + "gps_code": "TS08", + "local_code": "TS08" + }, + { + "id": "25026", + "ident": "TS09", + "type": "heliport", + "name": "Baptist Hospital of Southeast Texas Heliport", + "latitude_deg": "30.070083", + "longitude_deg": "-94.118795", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beaumont", + "scheduled_service": "no", + "gps_code": "TS09", + "local_code": "TS09" + }, + { + "id": "25027", + "ident": "TS10", + "type": "heliport", + "name": "Sheraton Spindletop Hotel Heliport", + "latitude_deg": "30.101299285888672", + "longitude_deg": "-94.13099670410156", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beaumont", + "scheduled_service": "no", + "gps_code": "TS10", + "local_code": "TS10" + }, + { + "id": "25028", + "ident": "TS11", + "type": "small_airport", + "name": "Glenmar Airport", + "latitude_deg": "33.10710144042969", + "longitude_deg": "-95.93000030517578", + "elevation_ft": "531", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Campbell", + "scheduled_service": "no", + "gps_code": "TS11", + "local_code": "TS11" + }, + { + "id": "25029", + "ident": "TS12", + "type": "heliport", + "name": "Cig 809 Heliport", + "latitude_deg": "28.982500076293945", + "longitude_deg": "-96.02880096435547", + "elevation_ft": "53", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bay City", + "scheduled_service": "no", + "gps_code": "TS12", + "local_code": "TS12" + }, + { + "id": "25030", + "ident": "TS13", + "type": "closed", + "name": "Station 30 Heliport", + "latitude_deg": "29.294701", + "longitude_deg": "-96.308899", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Campo", + "scheduled_service": "no", + "keywords": "TS13" + }, + { + "id": "25031", + "ident": "TS14", + "type": "small_airport", + "name": "Smith Flying Service Airport", + "latitude_deg": "32.108699798583984", + "longitude_deg": "-98.48799896240234", + "elevation_ft": "1275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "De Leon", + "scheduled_service": "no", + "gps_code": "TS14", + "local_code": "TS14" + }, + { + "id": "25032", + "ident": "TS15", + "type": "small_airport", + "name": "Cibolo Creek Ranch Airport", + "latitude_deg": "29.893564", + "longitude_deg": "-104.261207", + "elevation_ft": "4400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marfa", + "scheduled_service": "no", + "gps_code": "TS15", + "local_code": "TS15" + }, + { + "id": "25033", + "ident": "TS16", + "type": "closed", + "name": "Lewis Electric Apparatus Repair Inc Heliport", + "latitude_deg": "29.711045", + "longitude_deg": "-95.278555", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "TS16", + "local_code": "TS16" + }, + { + "id": "25034", + "ident": "TS17", + "type": "heliport", + "name": "First Bank Plaza Garage Heliport", + "latitude_deg": "29.734174", + "longitude_deg": "-95.500342", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "TS17", + "local_code": "TS17" + }, + { + "id": "25035", + "ident": "TS18", + "type": "small_airport", + "name": "Kingsland Estates Airport", + "latitude_deg": "30.654956", + "longitude_deg": "-98.484928", + "elevation_ft": "873", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kingsland", + "scheduled_service": "no", + "gps_code": "TS18", + "local_code": "TS18" + }, + { + "id": "25036", + "ident": "TS19", + "type": "closed", + "name": "GWS Incorporated Construction Heliport", + "latitude_deg": "29.680799", + "longitude_deg": "-95.401299", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "keywords": "TS19" + }, + { + "id": "25037", + "ident": "TS20", + "type": "closed", + "name": "C Lazy T Ranch Airport", + "latitude_deg": "33.532771", + "longitude_deg": "-99.193809", + "elevation_ft": "1365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seymour", + "scheduled_service": "no", + "keywords": "TS20" + }, + { + "id": "45842", + "ident": "TS21", + "type": "small_airport", + "name": "Roy Ranch Airport", + "latitude_deg": "33.084833", + "longitude_deg": "-101.114833", + "elevation_ft": "2366", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Justiceburg", + "scheduled_service": "no", + "gps_code": "TS21", + "local_code": "TS21" + }, + { + "id": "25038", + "ident": "TS22", + "type": "closed", + "name": "Joye Ranch Airport", + "latitude_deg": "29.241398", + "longitude_deg": "-97.62856", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Smiley", + "scheduled_service": "no", + "keywords": "TS22" + }, + { + "id": "25039", + "ident": "TS23", + "type": "heliport", + "name": "Mgm Heliport", + "latitude_deg": "30.336329", + "longitude_deg": "-97.906401", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "TS23", + "local_code": "TS23" + }, + { + "id": "25040", + "ident": "TS24", + "type": "closed", + "name": "Westchase Heliport", + "latitude_deg": "29.7363", + "longitude_deg": "-95.547401", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "keywords": "TS24" + }, + { + "id": "25041", + "ident": "TS25", + "type": "closed", + "name": "Mynatt Field", + "latitude_deg": "33.269798", + "longitude_deg": "-96.022499", + "elevation_ft": "557", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "South Sulphur", + "scheduled_service": "no", + "keywords": "TS25" + }, + { + "id": "25042", + "ident": "TS26", + "type": "heliport", + "name": "The Huntingdon Heliport", + "latitude_deg": "29.746885", + "longitude_deg": "-95.417966", + "elevation_ft": "566", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "TS26", + "local_code": "TS26" + }, + { + "id": "25043", + "ident": "TS27", + "type": "small_airport", + "name": "River Field", + "latitude_deg": "29.71619987", + "longitude_deg": "-96.59140015", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "TS27", + "local_code": "TS27" + }, + { + "id": "25044", + "ident": "TS28", + "type": "heliport", + "name": "Northeast Community Hospital Heliport", + "latitude_deg": "32.8390007019043", + "longitude_deg": "-97.14749908447266", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bedford", + "scheduled_service": "no", + "gps_code": "TS28", + "local_code": "TS28" + }, + { + "id": "25045", + "ident": "TS29", + "type": "small_airport", + "name": "Liberty Hill International Airport", + "latitude_deg": "31.294599533099998", + "longitude_deg": "-97.29699707030001", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eddy", + "scheduled_service": "no", + "gps_code": "TS29", + "local_code": "TS29" + }, + { + "id": "25046", + "ident": "TS30", + "type": "heliport", + "name": "Wilbarger General Hospital Heliport", + "latitude_deg": "34.1593017578125", + "longitude_deg": "-99.31620025634766", + "elevation_ft": "1226", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Vernon", + "scheduled_service": "no", + "gps_code": "TS30", + "local_code": "TS30" + }, + { + "id": "25047", + "ident": "TS31", + "type": "heliport", + "name": "Williams Tower Garage Heliport", + "latitude_deg": "29.737357", + "longitude_deg": "-95.462358", + "elevation_ft": "99", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "TS31", + "local_code": "TS31", + "keywords": "Transco Tower Garage Heliport" + }, + { + "id": "25048", + "ident": "TS32", + "type": "heliport", + "name": "Waskom Heliport", + "latitude_deg": "32.470699310302734", + "longitude_deg": "-94.05549621582031", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waskom", + "scheduled_service": "no", + "gps_code": "TS32", + "local_code": "TS32" + }, + { + "id": "25049", + "ident": "TS33", + "type": "heliport", + "name": "Tex-Star Heliport", + "latitude_deg": "29.78219985961914", + "longitude_deg": "-95.41739654541016", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "TS33", + "local_code": "TS33" + }, + { + "id": "25050", + "ident": "TS34", + "type": "heliport", + "name": "Woodcreek-Shell Heliport", + "latitude_deg": "29.789479", + "longitude_deg": "-95.609603", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "TS34", + "local_code": "TS34" + }, + { + "id": "25051", + "ident": "TS35", + "type": "small_airport", + "name": "West Liberty Airport", + "latitude_deg": "30.058300018310547", + "longitude_deg": "-94.97810363769531", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dayton", + "scheduled_service": "no", + "gps_code": "TS35", + "local_code": "TS35" + }, + { + "id": "25052", + "ident": "TS36", + "type": "small_airport", + "name": "Silver Wings Airport", + "latitude_deg": "30.219600677490234", + "longitude_deg": "-99.14080047607422", + "elevation_ft": "2110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fredricksburg", + "scheduled_service": "no", + "gps_code": "TS36", + "local_code": "TS36" + }, + { + "id": "25053", + "ident": "TS37", + "type": "heliport", + "name": "Harris County Clay Road Courthouse Heliport", + "latitude_deg": "29.833327", + "longitude_deg": "-95.655931", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "TS37", + "local_code": "TS37" + }, + { + "id": "25054", + "ident": "TS38", + "type": "heliport", + "name": "Helitrans Heliport", + "latitude_deg": "29.476600646972656", + "longitude_deg": "-95.4021987915039", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Iowa Colony/Manvel", + "scheduled_service": "no", + "gps_code": "TS38", + "local_code": "TS38" + }, + { + "id": "25055", + "ident": "TS39", + "type": "small_airport", + "name": "Sherman Airport", + "latitude_deg": "34.3120002746582", + "longitude_deg": "-101.41200256347656", + "elevation_ft": "3285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lockney", + "scheduled_service": "no", + "gps_code": "TS39", + "local_code": "TS39" + }, + { + "id": "25056", + "ident": "TS40", + "type": "closed", + "name": "Celina Field", + "latitude_deg": "33.312801", + "longitude_deg": "-96.763901", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Celina", + "scheduled_service": "no", + "local_code": "TS40", + "keywords": "TS40, celina field" + }, + { + "id": "25057", + "ident": "TS41", + "type": "heliport", + "name": "Station 24 Heliport", + "latitude_deg": "29.011485", + "longitude_deg": "-96.053987", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Markham", + "scheduled_service": "no", + "gps_code": "TS41", + "local_code": "TS41" + }, + { + "id": "25058", + "ident": "TS42", + "type": "closed", + "name": "Del-Tex Airport", + "latitude_deg": "34.196499", + "longitude_deg": "-102.127997", + "elevation_ft": "3600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Olton", + "scheduled_service": "no", + "keywords": "TS42" + }, + { + "id": "25059", + "ident": "TS43", + "type": "heliport", + "name": "Wagner Heliport", + "latitude_deg": "28.7164", + "longitude_deg": "-96.214273", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Palacios", + "scheduled_service": "no", + "gps_code": "TS43", + "local_code": "TS43" + }, + { + "id": "25060", + "ident": "TS44", + "type": "small_airport", + "name": "Dry Branch Ranch Airport", + "latitude_deg": "29.84000015258789", + "longitude_deg": "-96.02330017089844", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pattison", + "scheduled_service": "no", + "gps_code": "TS44", + "local_code": "TS44" + }, + { + "id": "25061", + "ident": "TS45", + "type": "heliport", + "name": "Gulfcoast Heliport", + "latitude_deg": "29.57659912109375", + "longitude_deg": "-95.33300018310547", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pearland", + "scheduled_service": "no", + "gps_code": "TS45", + "local_code": "TS45" + }, + { + "id": "25062", + "ident": "TS46", + "type": "closed", + "name": "PPH Heliport", + "latitude_deg": "29.932699", + "longitude_deg": "-93.938499", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port Arthur", + "scheduled_service": "no", + "keywords": "TS46" + }, + { + "id": "25063", + "ident": "TS47", + "type": "small_airport", + "name": "Rock Creek Ranch Airport", + "latitude_deg": "32.9687", + "longitude_deg": "-98.0119", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Whitt", + "scheduled_service": "no", + "local_code": "5TX", + "keywords": "TS47" + }, + { + "id": "25064", + "ident": "TS48", + "type": "heliport", + "name": "Arco Sabine Heliport", + "latitude_deg": "29.712726", + "longitude_deg": "-93.858892", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sabine Pass", + "scheduled_service": "no", + "gps_code": "TS48", + "local_code": "TS48" + }, + { + "id": "25065", + "ident": "TS49", + "type": "heliport", + "name": "Station 40 Heliport", + "latitude_deg": "30.176131", + "longitude_deg": "-94.503676", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sour Lake", + "scheduled_service": "no", + "gps_code": "TS49", + "local_code": "TS49" + }, + { + "id": "25066", + "ident": "TS50", + "type": "small_airport", + "name": "Austinia Airport", + "latitude_deg": "29.417499542236328", + "longitude_deg": "-94.99829864501953", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Texas City", + "scheduled_service": "no", + "gps_code": "TS50", + "local_code": "TS50" + }, + { + "id": "25067", + "ident": "TS51", + "type": "closed", + "name": "Barton Memorial Airport", + "latitude_deg": "31.836477", + "longitude_deg": "-94.459462", + "elevation_ft": "345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garrison", + "scheduled_service": "no", + "keywords": "TS51" + }, + { + "id": "25068", + "ident": "TS52", + "type": "heliport", + "name": "Tomball Regional Hospital Heliport", + "latitude_deg": "30.086700439453125", + "longitude_deg": "-95.62139892578125", + "elevation_ft": "182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tomball", + "scheduled_service": "no", + "gps_code": "TS52", + "local_code": "TS52" + }, + { + "id": "332772", + "ident": "TS53", + "type": "heliport", + "name": "Tecma Heliport", + "latitude_deg": "31.774682", + "longitude_deg": "-106.4707", + "elevation_ft": "3725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Paso", + "scheduled_service": "no", + "local_code": "TS53" + }, + { + "id": "25070", + "ident": "TS54", + "type": "small_airport", + "name": "Flying B Airport", + "latitude_deg": "33.014801025390625", + "longitude_deg": "-95.43440246582031", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pickton", + "scheduled_service": "no", + "gps_code": "TS54", + "local_code": "TS54" + }, + { + "id": "25071", + "ident": "TS55", + "type": "small_airport", + "name": "Bat Cave Field", + "latitude_deg": "29.671899795532227", + "longitude_deg": "-98.30449676513672", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garden Ridge", + "scheduled_service": "no", + "gps_code": "TS55", + "local_code": "TS55" + }, + { + "id": "25072", + "ident": "TS56", + "type": "heliport", + "name": "Ktvt Channel 11 Heliport", + "latitude_deg": "32.76139831542969", + "longitude_deg": "-97.24420166015625", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "TS56", + "local_code": "TS56" + }, + { + "id": "25073", + "ident": "TS57", + "type": "small_airport", + "name": "Red Ace Ranch Airport", + "latitude_deg": "33.241798400878906", + "longitude_deg": "-97.62110137939453", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Decatur", + "scheduled_service": "no", + "gps_code": "TS57", + "local_code": "TS57" + }, + { + "id": "25074", + "ident": "TS58", + "type": "heliport", + "name": "Denton Regional Medical Ctr - Flow Campus Heliport", + "latitude_deg": "33.1780014038", + "longitude_deg": "-97.09259796139999", + "elevation_ft": "622", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Denton", + "scheduled_service": "no", + "gps_code": "TS58", + "local_code": "TS58" + }, + { + "id": "25075", + "ident": "TS59", + "type": "heliport", + "name": "Bear Heliport", + "latitude_deg": "31.850823", + "longitude_deg": "-106.431963", + "elevation_ft": "3800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Paso", + "scheduled_service": "no", + "gps_code": "TS59", + "local_code": "TS59" + }, + { + "id": "25076", + "ident": "TS60", + "type": "heliport", + "name": "Superturf Heliport", + "latitude_deg": "32.87820053100586", + "longitude_deg": "-96.65859985351562", + "elevation_ft": "567", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garland", + "scheduled_service": "no", + "gps_code": "TS60", + "local_code": "TS60" + }, + { + "id": "25077", + "ident": "TS61", + "type": "small_airport", + "name": "Little 'L' Ranch Airport", + "latitude_deg": "32.21104", + "longitude_deg": "-97.642757", + "elevation_ft": "585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Glen Rose", + "scheduled_service": "no", + "gps_code": "TS61", + "local_code": "TS61" + }, + { + "id": "25078", + "ident": "TS62", + "type": "small_airport", + "name": "Norris Field", + "latitude_deg": "33.201864", + "longitude_deg": "-100.523631", + "elevation_ft": "1987", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jayton", + "scheduled_service": "no", + "gps_code": "TS62", + "local_code": "TS62" + }, + { + "id": "25079", + "ident": "TS63", + "type": "small_airport", + "name": "Square Air Airport", + "latitude_deg": "33.245493", + "longitude_deg": "-96.565834", + "elevation_ft": "655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "McKinney", + "scheduled_service": "no", + "gps_code": "TS63", + "local_code": "TS63" + }, + { + "id": "25080", + "ident": "TS64", + "type": "heliport", + "name": "Kimi Heliport", + "latitude_deg": "32.708499908447266", + "longitude_deg": "-96.560302734375", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mesquite", + "scheduled_service": "no", + "gps_code": "TS64", + "local_code": "TS64" + }, + { + "id": "25081", + "ident": "TS65", + "type": "small_airport", + "name": "Ducote Airpark", + "latitude_deg": "31.35849952697754", + "longitude_deg": "-100.61299896240234", + "elevation_ft": "1974", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Angelo", + "scheduled_service": "no", + "gps_code": "TS65", + "local_code": "TS65" + }, + { + "id": "25082", + "ident": "TS66", + "type": "heliport", + "name": "Lubbock Covenant Medical Center Heliport", + "latitude_deg": "33.57687", + "longitude_deg": "-101.890233", + "elevation_ft": "3225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lubbock", + "scheduled_service": "no", + "gps_code": "TS66", + "local_code": "TS66", + "keywords": "Lubbbock Methodist Hospital Heliport" + }, + { + "id": "25083", + "ident": "TS67", + "type": "small_airport", + "name": "Kitty Hawk Flying Field", + "latitude_deg": "29.625200271606445", + "longitude_deg": "-98.2780990600586", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garden Ridge", + "scheduled_service": "no", + "gps_code": "TS67", + "local_code": "TS67" + }, + { + "id": "25084", + "ident": "TS68", + "type": "heliport", + "name": "Valley Baptist Medical Center (VBMC) Heliport", + "latitude_deg": "26.176695", + "longitude_deg": "-97.670898", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Harlingen", + "scheduled_service": "no", + "gps_code": "TS68", + "local_code": "TS68" + }, + { + "id": "25085", + "ident": "TS69", + "type": "small_airport", + "name": "Barronena East Airport", + "latitude_deg": "27.482691", + "longitude_deg": "-98.659915", + "elevation_ft": "576", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hebbronville", + "scheduled_service": "no", + "gps_code": "TS69", + "local_code": "TS69" + }, + { + "id": "25086", + "ident": "TS70", + "type": "closed", + "name": "Jack Miller Airport", + "latitude_deg": "32.575102", + "longitude_deg": "-97.086998", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mansfield", + "scheduled_service": "no", + "keywords": "TS70, Jack Miller STOLport" + }, + { + "id": "25087", + "ident": "TS71", + "type": "small_airport", + "name": "Flying B Ranch Airport", + "latitude_deg": "32.52790069580078", + "longitude_deg": "-96.94390106201172", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ovilla", + "scheduled_service": "no", + "gps_code": "TS71", + "local_code": "TS71" + }, + { + "id": "25088", + "ident": "TS72", + "type": "heliport", + "name": "UT Health East Texas Cedar Creek Lake Heliport", + "latitude_deg": "32.332028", + "longitude_deg": "-96.115811", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gun Barrel City", + "scheduled_service": "no", + "gps_code": "TS72", + "local_code": "TS72", + "keywords": "ETMC - Gun Barrel City" + }, + { + "id": "25089", + "ident": "TS73", + "type": "closed", + "name": "Stubbs Strip", + "latitude_deg": "32.775338", + "longitude_deg": "-97.487404", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "TS73", + "local_code": "TS73" + }, + { + "id": "25090", + "ident": "TS74", + "type": "small_airport", + "name": "Glass Airport", + "latitude_deg": "33.36259841918945", + "longitude_deg": "-97.29450225830078", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanger", + "scheduled_service": "no", + "gps_code": "TS74", + "local_code": "TS74" + }, + { + "id": "25091", + "ident": "TS75", + "type": "closed", + "name": "Mitchell Number One Airport", + "latitude_deg": "30.503", + "longitude_deg": "-102.158997", + "elevation_ft": "2700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanderson", + "scheduled_service": "no", + "keywords": "TS75" + }, + { + "id": "25092", + "ident": "TS76", + "type": "small_airport", + "name": "Redstone Ranch Airport", + "latitude_deg": "30.250200271606445", + "longitude_deg": "-98.5947036743164", + "elevation_ft": "1460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Stonewall", + "scheduled_service": "no", + "gps_code": "TS76", + "local_code": "TS76" + }, + { + "id": "25093", + "ident": "TS77", + "type": "heliport", + "name": "Horlock Heliport", + "latitude_deg": "29.725000381469727", + "longitude_deg": "-95.46109771728516", + "elevation_ft": "87", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bellaire", + "scheduled_service": "no", + "gps_code": "TS77", + "local_code": "TS77" + }, + { + "id": "25094", + "ident": "TS78", + "type": "small_airport", + "name": "Loesch Ranch Airport", + "latitude_deg": "36.391700744628906", + "longitude_deg": "-100.46900177001953", + "elevation_ft": "2804", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Booker", + "scheduled_service": "no", + "gps_code": "TS78", + "local_code": "TS78" + }, + { + "id": "25095", + "ident": "TS79", + "type": "closed", + "name": "Air Logistics Heliport", + "latitude_deg": "28.439699", + "longitude_deg": "-96.419702", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port O'Connor", + "scheduled_service": "no", + "keywords": "TS79" + }, + { + "id": "25096", + "ident": "TS80", + "type": "closed", + "name": "Mc Alister Farm Airport", + "latitude_deg": "34.1306", + "longitude_deg": "-98.903099", + "elevation_ft": "1125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Electra", + "scheduled_service": "no", + "keywords": "TS80" + }, + { + "id": "25097", + "ident": "TS81", + "type": "closed", + "name": "Town & Country Heliport", + "latitude_deg": "29.7836", + "longitude_deg": "-95.555801", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "keywords": "TS81" + }, + { + "id": "25098", + "ident": "TS82", + "type": "heliport", + "name": "Gulf Tower Heliport", + "latitude_deg": "29.75550079345703", + "longitude_deg": "-95.36160278320312", + "elevation_ft": "774", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "TS82", + "local_code": "TS82" + }, + { + "id": "25099", + "ident": "TS83", + "type": "heliport", + "name": "Shell I C Heliport", + "latitude_deg": "29.693026", + "longitude_deg": "-95.407582", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "TS83", + "local_code": "TS83" + }, + { + "id": "25100", + "ident": "TS84", + "type": "closed", + "name": "Texoma Medical Center Heliport", + "latitude_deg": "33.766028", + "longitude_deg": "-96.550316", + "elevation_ft": "765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Denison", + "scheduled_service": "no", + "keywords": "TS84" + }, + { + "id": "25101", + "ident": "TS85", + "type": "small_airport", + "name": "Diamond J Airport", + "latitude_deg": "33.8106", + "longitude_deg": "-96.703903", + "elevation_ft": "802", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pottsboro", + "scheduled_service": "no", + "gps_code": "TS85", + "local_code": "TS85", + "keywords": "Tanglewood Airfield" + }, + { + "id": "25102", + "ident": "TS86", + "type": "heliport", + "name": "Community Hospital Heliport", + "latitude_deg": "29.562700271606445", + "longitude_deg": "-95.56410217285156", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Missouri City", + "scheduled_service": "no", + "gps_code": "TS86", + "local_code": "TS86" + }, + { + "id": "25103", + "ident": "TS87", + "type": "small_airport", + "name": "Bridle Ridge Airport", + "latitude_deg": "30.417999267578125", + "longitude_deg": "-96.07939910888672", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Navasota", + "scheduled_service": "no", + "gps_code": "TS87", + "local_code": "TS87" + }, + { + "id": "25104", + "ident": "TS88", + "type": "closed", + "name": "Memorial Hospital Heliport", + "latitude_deg": "29.689699", + "longitude_deg": "-95.200996", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pasadena", + "scheduled_service": "no", + "keywords": "TS88" + }, + { + "id": "25105", + "ident": "TS89", + "type": "small_airport", + "name": "Parker Airport", + "latitude_deg": "32.36715", + "longitude_deg": "-97.81647", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Granbury", + "scheduled_service": "no", + "gps_code": "TS89", + "local_code": "TS89" + }, + { + "id": "25106", + "ident": "TS90", + "type": "closed", + "name": "Bayless Airport", + "latitude_deg": "29.401235", + "longitude_deg": "-95.431436", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rosharon", + "scheduled_service": "no", + "keywords": "TS90" + }, + { + "id": "25107", + "ident": "TS91", + "type": "closed", + "name": "Tenneco Shorebase Heliport", + "latitude_deg": "29.705726", + "longitude_deg": "-93.85519", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sabine Pass", + "scheduled_service": "no", + "gps_code": "TS91", + "local_code": "TS91" + }, + { + "id": "25108", + "ident": "TS92", + "type": "small_airport", + "name": "Little Peach Airport", + "latitude_deg": "31.214599609375", + "longitude_deg": "-97.42669677734375", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Temple", + "scheduled_service": "no", + "gps_code": "TS92", + "local_code": "TS92" + }, + { + "id": "25109", + "ident": "TS93", + "type": "heliport", + "name": "Cathexis Heliport", + "latitude_deg": "29.762834", + "longitude_deg": "-95.32775", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "TS93", + "local_code": "TS93", + "keywords": "Brown & Root-Clinton Heliport" + }, + { + "id": "25110", + "ident": "TS94", + "type": "small_airport", + "name": "Rancho Buena Vista Airport", + "latitude_deg": "26.25119972229004", + "longitude_deg": "-97.30079650878906", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bay View", + "scheduled_service": "no", + "gps_code": "TS94", + "local_code": "TS94" + }, + { + "id": "25111", + "ident": "TS95", + "type": "closed", + "name": "Aviasud Airpark", + "latitude_deg": "29.486401", + "longitude_deg": "-95.930801", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beasley", + "scheduled_service": "no", + "keywords": "TS95" + }, + { + "id": "25112", + "ident": "TS96", + "type": "small_airport", + "name": "El Campo Airpark", + "latitude_deg": "29.26689910888672", + "longitude_deg": "-96.32520294189453", + "elevation_ft": "128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Campo", + "scheduled_service": "no", + "gps_code": "TS96", + "local_code": "TS96" + }, + { + "id": "25113", + "ident": "TS97", + "type": "heliport", + "name": "HPL Heliport", + "latitude_deg": "27.835061", + "longitude_deg": "-97.540573", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no", + "gps_code": "TS97", + "local_code": "TS97" + }, + { + "id": "25114", + "ident": "TS98", + "type": "closed", + "name": "Wings Over Texas Airport", + "latitude_deg": "32.7869", + "longitude_deg": "-96.3069", + "elevation_ft": "532", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Terrell", + "scheduled_service": "no", + "keywords": "TS98" + }, + { + "id": "25115", + "ident": "TS99", + "type": "closed", + "name": "Action Number 2 Heliport", + "latitude_deg": "29.935499", + "longitude_deg": "-95.513494", + "elevation_ft": "151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cypress", + "scheduled_service": "no", + "keywords": "TS99" + }, + { + "id": "25116", + "ident": "TSG", + "type": "small_airport", + "name": "Tanacross Airport", + "latitude_deg": "63.374401092499994", + "longitude_deg": "-143.335998535", + "elevation_ft": "1549", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tanacross", + "scheduled_service": "no", + "gps_code": "TSG", + "iata_code": "TSG", + "local_code": "TSG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tanacross_Airport" + }, + { + "id": "316424", + "ident": "TSI", + "type": "small_airport", + "name": "Tsile Tsile Airport", + "latitude_deg": "-6.8498", + "longitude_deg": "146.3554", + "elevation_ft": "500", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Tsile Tsile", + "scheduled_service": "no", + "iata_code": "TSI", + "local_code": "TSL" + }, + { + "id": "312749", + "ident": "TSK", + "type": "closed", + "name": "Taskul Airport", + "latitude_deg": "-2.546", + "longitude_deg": "150.4553", + "elevation_ft": "100", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NIK", + "municipality": "Taskul", + "scheduled_service": "no", + "iata_code": "TSK" + }, + { + "id": "40554", + "ident": "TT-TT01", + "type": "small_airport", + "name": "Camden Airfield", + "latitude_deg": "10.4263", + "longitude_deg": "-61.439701", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "TT", + "iso_region": "TT-CTT", + "municipality": "Couva", + "scheduled_service": "no", + "local_code": "TT01", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camden_Airstrip" + }, + { + "id": "328403", + "ident": "TT00", + "type": "small_airport", + "name": "Tree Top Air Airport", + "latitude_deg": "29.646666", + "longitude_deg": "-96.729444", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weimar", + "scheduled_service": "no", + "gps_code": "TT00", + "local_code": "TT00" + }, + { + "id": "4783", + "ident": "TT01", + "type": "small_airport", + "name": "Pagan Airstrip", + "latitude_deg": "18.12317", + "longitude_deg": "145.763347", + "elevation_ft": "34", + "continent": "OC", + "iso_country": "MP", + "iso_region": "MP-U-A", + "municipality": "Shomu-Shon, Pagan", + "scheduled_service": "no", + "gps_code": "TT01", + "local_code": "TT01", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pagan_Airstrip" + }, + { + "id": "4784", + "ident": "TT03", + "type": "heliport", + "name": "Nikko Heliport", + "latitude_deg": "15.25", + "longitude_deg": "145.783005", + "elevation_ft": "60", + "continent": "OC", + "iso_country": "MP", + "iso_region": "MP-U-A", + "municipality": "San Roque, Saipan", + "scheduled_service": "no", + "gps_code": "TT03", + "local_code": "TT03" + }, + { + "id": "4785", + "ident": "TT04", + "type": "heliport", + "name": "Gualo Rai Heliport", + "latitude_deg": "15.188155", + "longitude_deg": "145.724157", + "elevation_ft": "250", + "continent": "OC", + "iso_country": "MP", + "iso_region": "MP-U-A", + "municipality": "Gualo Rai, Saipan", + "scheduled_service": "no", + "gps_code": "TT04", + "local_code": "TT04" + }, + { + "id": "328924", + "ident": "TT05", + "type": "small_airport", + "name": "Patton Air Park", + "latitude_deg": "29.191361", + "longitude_deg": "-98.255124", + "elevation_ft": "451", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Floresville", + "scheduled_service": "no", + "gps_code": "TT05", + "local_code": "TT05" + }, + { + "id": "329031", + "ident": "TT06", + "type": "heliport", + "name": "Frio Cañon Heliport", + "latitude_deg": "29.790333", + "longitude_deg": "-99.701853", + "elevation_ft": "1706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Leakey", + "scheduled_service": "no", + "gps_code": "TT06", + "local_code": "TT06" + }, + { + "id": "353095", + "ident": "TT07", + "type": "heliport", + "name": "Coleman County Medical Center Heliport", + "latitude_deg": "31.828844", + "longitude_deg": "-99.426109", + "elevation_ft": "1707", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Colema", + "scheduled_service": "no", + "gps_code": "TT07", + "local_code": "TT07" + }, + { + "id": "329029", + "ident": "TT10", + "type": "small_airport", + "name": "Hutson Ranch Airport", + "latitude_deg": "33.429026", + "longitude_deg": "-99.9477778", + "elevation_ft": "1470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Knox City", + "scheduled_service": "no", + "gps_code": "TT10", + "local_code": "TT10" + }, + { + "id": "352441", + "ident": "TT12", + "type": "small_airport", + "name": "Pastrana Ranch Airport", + "latitude_deg": "32.272452", + "longitude_deg": "-97.693412", + "elevation_ft": "712", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rainbow", + "scheduled_service": "no", + "gps_code": "TT12", + "local_code": "TT12" + }, + { + "id": "350194", + "ident": "TT16", + "type": "small_airport", + "name": "Cosmo Field", + "latitude_deg": "32.936733", + "longitude_deg": "-98.397447", + "elevation_ft": "1059", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cosmo Field", + "scheduled_service": "no", + "gps_code": "TT16", + "local_code": "TT16" + }, + { + "id": "350196", + "ident": "TT19", + "type": "small_airport", + "name": "Circle C Ranch Airport", + "latitude_deg": "30.157615", + "longitude_deg": "-94.709893", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hardin", + "scheduled_service": "no", + "gps_code": "TT19", + "local_code": "TT19" + }, + { + "id": "328989", + "ident": "TT20", + "type": "small_airport", + "name": "Lazy 8 Flying Ranch Airport", + "latitude_deg": "30.964832", + "longitude_deg": "-95.834851", + "elevation_ft": "227", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Madisonville", + "scheduled_service": "no", + "gps_code": "TT20", + "local_code": "TT20" + }, + { + "id": "338973", + "ident": "TT21", + "type": "small_airport", + "name": "Grant Ranch Airport", + "latitude_deg": "33.289077", + "longitude_deg": "-97.671086", + "elevation_ft": "843", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alvord", + "scheduled_service": "no", + "gps_code": "TT21", + "local_code": "TT21" + }, + { + "id": "338860", + "ident": "TT31", + "type": "small_airport", + "name": "Y Bar Ranch Airport", + "latitude_deg": "28.539281", + "longitude_deg": "-98.800697", + "elevation_ft": "367", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fowlerton", + "scheduled_service": "no", + "gps_code": "TT31", + "local_code": "TT31" + }, + { + "id": "329073", + "ident": "TT32", + "type": "small_airport", + "name": "Kudlacek Field", + "latitude_deg": "33.011916", + "longitude_deg": "-96.410472", + "elevation_ft": "524", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Royse City", + "scheduled_service": "no", + "gps_code": "TT32", + "local_code": "TT32" + }, + { + "id": "353919", + "ident": "TT37", + "type": "small_airport", + "name": "Dragon Lady Airport", + "latitude_deg": "32.851273", + "longitude_deg": "-94.210746", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jefferson", + "scheduled_service": "no", + "gps_code": "TT37", + "local_code": "TT37" + }, + { + "id": "352460", + "ident": "TT40", + "type": "small_airport", + "name": "Burkett Ranch/Jackson Pasture Airport", + "latitude_deg": "33.075693", + "longitude_deg": "-98.799351", + "elevation_ft": "1214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Graham", + "scheduled_service": "no", + "gps_code": "TT40", + "local_code": "TT40" + }, + { + "id": "430462", + "ident": "TT41", + "type": "small_airport", + "name": "Four Notch Airport", + "latitude_deg": "30.697575", + "longitude_deg": "-95.48139", + "elevation_ft": "367", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Huntsville", + "scheduled_service": "no", + "gps_code": "TT41", + "local_code": "TT41" + }, + { + "id": "328992", + "ident": "TT45", + "type": "small_airport", + "name": "Nighthawks Nest Airport", + "latitude_deg": "29.497349", + "longitude_deg": "-98.154255", + "elevation_ft": "592", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "TT45", + "local_code": "TT45" + }, + { + "id": "354685", + "ident": "TT46", + "type": "small_airport", + "name": "PC Airport", + "latitude_deg": "30.804722", + "longitude_deg": "-96.431111", + "elevation_ft": "399", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bryan", + "scheduled_service": "no", + "gps_code": "TT46", + "local_code": "TT46" + }, + { + "id": "353922", + "ident": "TT50", + "type": "small_airport", + "name": "Daniel HQ/Pease Valley Airstrip", + "latitude_deg": "34.051014", + "longitude_deg": "-99.588683", + "elevation_ft": "1370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crowell", + "scheduled_service": "no", + "gps_code": "TT50", + "local_code": "TT50" + }, + { + "id": "353096", + "ident": "TT62", + "type": "heliport", + "name": "The Bluff Heliport", + "latitude_deg": "28.583981", + "longitude_deg": "-96.947511", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "McFaddin", + "scheduled_service": "no", + "gps_code": "TT62", + "local_code": "TT62" + }, + { + "id": "353099", + "ident": "TT65", + "type": "small_airport", + "name": "3 Barrel Ranch Airport", + "latitude_deg": "30.031614", + "longitude_deg": "-96.418631", + "elevation_ft": "311", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bleiblerville", + "scheduled_service": "no", + "gps_code": "TT65", + "local_code": "TT65" + }, + { + "id": "353101", + "ident": "TT66", + "type": "small_airport", + "name": "Rowdy T Ranch Airport", + "latitude_deg": "32.108456", + "longitude_deg": "-96.808471", + "elevation_ft": "538", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Frost", + "scheduled_service": "no", + "gps_code": "TT66", + "local_code": "TT66" + }, + { + "id": "354134", + "ident": "TT75", + "type": "small_airport", + "name": "Berkley Ranch Airport", + "latitude_deg": "30.432556", + "longitude_deg": "-95.745825", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Conroe", + "scheduled_service": "no", + "gps_code": "TT75", + "local_code": "TT75" + }, + { + "id": "338974", + "ident": "TT83", + "type": "heliport", + "name": "HBR Heliport", + "latitude_deg": "30.562092", + "longitude_deg": "-98.392831", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Horseshoe Bay", + "scheduled_service": "no", + "gps_code": "TT83", + "local_code": "TT83" + }, + { + "id": "430464", + "ident": "TT98", + "type": "small_airport", + "name": "Kelly Air Field", + "latitude_deg": "33.658808", + "longitude_deg": "-96.467672", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bells", + "scheduled_service": "no", + "gps_code": "TT98", + "local_code": "TT98" + }, + { + "id": "338975", + "ident": "TT99", + "type": "small_airport", + "name": "Leinart Farms Airstrip", + "latitude_deg": "33.19204", + "longitude_deg": "-96.21986", + "elevation_ft": "624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Merit", + "scheduled_service": "no", + "gps_code": "TT99", + "local_code": "TT99" + }, + { + "id": "6409", + "ident": "TTCP", + "type": "medium_airport", + "name": "Tobago-Crown Point Airport", + "latitude_deg": "11.149700164794922", + "longitude_deg": "-60.83219909667969", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "TT", + "iso_region": "TT-WTO", + "municipality": "Scarborough", + "scheduled_service": "yes", + "gps_code": "TTCP", + "iata_code": "TAB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Crown_Point_Airport" + }, + { + "id": "6410", + "ident": "TTPP", + "type": "medium_airport", + "name": "Piarco International Airport", + "latitude_deg": "10.5954", + "longitude_deg": "-61.3372", + "elevation_ft": "58", + "continent": "NA", + "iso_country": "TT", + "iso_region": "TT-TUP", + "municipality": "Port of Spain", + "scheduled_service": "yes", + "gps_code": "TTPP", + "iata_code": "POS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Piarco_International_Airport" + }, + { + "id": "309422", + "ident": "TTW", + "type": "seaplane_base", + "name": "Tissa Tank Waterdrome", + "latitude_deg": "6.2876", + "longitude_deg": "81.2906", + "elevation_ft": "75", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-3", + "municipality": "Tissamaharama", + "scheduled_service": "yes", + "iata_code": "TTW" + }, + { + "id": "315016", + "ident": "TUE", + "type": "closed", + "name": "Tupile Airport", + "latitude_deg": "9.45", + "longitude_deg": "-78.566667", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Isla Tupile", + "scheduled_service": "no", + "keywords": "TUE" + }, + { + "id": "316422", + "ident": "TUJ", + "type": "small_airport", + "name": "Tum Airport", + "latitude_deg": "6.26", + "longitude_deg": "35.5184", + "elevation_ft": "4700", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-SW", + "municipality": "Tum", + "scheduled_service": "no", + "iata_code": "TUJ" + }, + { + "id": "32025", + "ident": "TUPA", + "type": "small_airport", + "name": "Captain Auguste George Airport", + "latitude_deg": "18.727734", + "longitude_deg": "-64.32852", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "VG", + "iso_region": "VG-U-A", + "municipality": "Anegada", + "scheduled_service": "no", + "gps_code": "TUPA", + "iata_code": "NGD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Auguste_George_Airport" + }, + { + "id": "6411", + "ident": "TUPJ", + "type": "medium_airport", + "name": "Terrance B. Lettsome International Airport", + "latitude_deg": "18.445492", + "longitude_deg": "-64.541707", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "VG", + "iso_region": "VG-U-A", + "municipality": "Road Town", + "scheduled_service": "yes", + "gps_code": "TUPJ", + "iata_code": "EIS", + "home_link": "http://www.bareboatsbvi.com/beef_island.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Terrance_B._Lettsome_International_Airport", + "keywords": "BVI, Beef Island Airport" + }, + { + "id": "32575", + "ident": "TUPW", + "type": "small_airport", + "name": "Virgin Gorda Airport", + "latitude_deg": "18.446399688720703", + "longitude_deg": "-64.42749786376953", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "VG", + "iso_region": "VG-U-A", + "municipality": "Spanish Town", + "scheduled_service": "yes", + "gps_code": "TUPW", + "iata_code": "VIJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Virgin_Gorda_Airport" + }, + { + "id": "315012", + "ident": "TUT", + "type": "closed", + "name": "Tauta Airport", + "latitude_deg": "-5.8335", + "longitude_deg": "145.9341", + "elevation_ft": "4200", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Tauta", + "scheduled_service": "no", + "iata_code": "TUT" + }, + { + "id": "35154", + "ident": "TUZ", + "type": "closed", + "name": "Tucuma Airport", + "latitude_deg": "-3.9670000076293945", + "longitude_deg": "-66.43299865722656", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AM", + "municipality": "Tucuma", + "scheduled_service": "no", + "gps_code": "TUZ", + "iata_code": "BR-" + }, + { + "id": "325371", + "ident": "TV-0001", + "type": "closed", + "name": "Nanumea Airfield", + "latitude_deg": "-5.683334", + "longitude_deg": "176.129", + "elevation_ft": "36", + "continent": "OC", + "iso_country": "TV", + "iso_region": "TV-NMA", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nanumea_Airfield", + "keywords": "Ellice Islands" + }, + { + "id": "325372", + "ident": "TV-0002", + "type": "closed", + "name": "Nukufetau Airfield", + "latitude_deg": "-8.065", + "longitude_deg": "178.377224", + "elevation_ft": "55", + "continent": "OC", + "iso_country": "TV", + "iso_region": "TV-NKF", + "municipality": "Motulalo Island", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nukufetau_Airfield", + "keywords": "Ellice Islands" + }, + { + "id": "322383", + "ident": "TVSA", + "type": "medium_airport", + "name": "Argyle International Airport", + "latitude_deg": "13.156695", + "longitude_deg": "-61.149945", + "elevation_ft": "136", + "continent": "NA", + "iso_country": "VC", + "iso_region": "VC-04", + "municipality": "Kingstown", + "scheduled_service": "yes", + "gps_code": "TVSA", + "iata_code": "SVD", + "home_link": "http://www.svgiadc.com", + "wikipedia_link": "https://en.m.wikipedia.org/wiki/Argyle_International_Airport" + }, + { + "id": "6412", + "ident": "TVSB", + "type": "medium_airport", + "name": "J F Mitchell Airport", + "latitude_deg": "12.9884", + "longitude_deg": "-61.262001", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "VC", + "iso_region": "VC-06", + "municipality": "Bequia", + "scheduled_service": "no", + "gps_code": "TVSB", + "iata_code": "BQU", + "wikipedia_link": "https://en.wikipedia.org/wiki/J._F._Mitchell_Airport" + }, + { + "id": "6413", + "ident": "TVSC", + "type": "medium_airport", + "name": "Canouan Airport", + "latitude_deg": "12.699", + "longitude_deg": "-61.3424", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "VC", + "iso_region": "VC-06", + "municipality": "Canouan", + "scheduled_service": "yes", + "gps_code": "TVSC", + "iata_code": "CIW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Canouan_Airport" + }, + { + "id": "6414", + "ident": "TVSM", + "type": "medium_airport", + "name": "Mustique Airport", + "latitude_deg": "12.8879", + "longitude_deg": "-61.180199", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "VC", + "iso_region": "VC-06", + "municipality": "Mustique Island", + "scheduled_service": "yes", + "gps_code": "TVSM", + "iata_code": "MQS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mustique_Airport" + }, + { + "id": "32542", + "ident": "TVSU", + "type": "medium_airport", + "name": "Union Island International Airport", + "latitude_deg": "12.600135", + "longitude_deg": "-61.411945", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "VC", + "iso_region": "VC-06", + "municipality": "Union Island", + "scheduled_service": "yes", + "gps_code": "TVSU", + "iata_code": "UNI" + }, + { + "id": "6415", + "ident": "TVSV", + "type": "closed", + "name": "E T Joshua Airport", + "latitude_deg": "13.1443", + "longitude_deg": "-61.210899", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "VC", + "iso_region": "VC-04", + "municipality": "Arnos Vale", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/E.T._Joshua_Airport", + "keywords": "Arnos Vale Airport, SVD, TVSV" + }, + { + "id": "42426", + "ident": "TW-0001", + "type": "closed", + "name": "Penghu Airport", + "latitude_deg": "23.518", + "longitude_deg": "119.583", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-PEN", + "municipality": "Makung", + "scheduled_service": "no", + "keywords": "P'Eng Hu" + }, + { + "id": "42427", + "ident": "TW-0002", + "type": "small_airport", + "name": "Dongsha Island (Pratas Island) Airport", + "latitude_deg": "20.7066", + "longitude_deg": "116.721001", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-KHH", + "municipality": "Kaohsiung (Cijin - Pratas Island)", + "scheduled_service": "no", + "gps_code": "RCLM", + "iata_code": "DSX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dongsha_Island_Airport", + "keywords": "Pratas Islands; Dongsha; 東沙環礁機場" + }, + { + "id": "42428", + "ident": "TW-0003", + "type": "closed", + "name": "Highway Strip 58 60", + "latitude_deg": "24.9762", + "longitude_deg": "121.223999", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TAO", + "municipality": "Zhongli", + "scheduled_service": "no" + }, + { + "id": "42429", + "ident": "TW-0004", + "type": "medium_airport", + "name": "Zuoying Naval Airfield", + "latitude_deg": "22.705", + "longitude_deg": "120.280998", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-KHH", + "municipality": "Kaohsiung (Zuoying)", + "scheduled_service": "no", + "keywords": "Port Saei, Tsoying, 左營區" + }, + { + "id": "42430", + "ident": "TW-0005", + "type": "closed", + "name": "Bade Huaisheng Airport", + "latitude_deg": "24.936958", + "longitude_deg": "121.313095", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TAO", + "municipality": "Bade", + "scheduled_service": "no" + }, + { + "id": "44574", + "ident": "TW-0006", + "type": "small_airport", + "name": "Hualien (Chiashan) Air Base", + "latitude_deg": "24.026161", + "longitude_deg": "121.589897", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-HUA", + "municipality": "Hualien", + "scheduled_service": "no" + }, + { + "id": "325266", + "ident": "TW-0007", + "type": "small_airport", + "name": "Chiayi Highway Airstrip", + "latitude_deg": "23.538652", + "longitude_deg": "120.410156", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-CYQ", + "municipality": "Minxiong", + "scheduled_service": "no", + "keywords": "Chiayi" + }, + { + "id": "325267", + "ident": "TW-0008", + "type": "heliport", + "name": "China Medical University Hospital Heliport", + "latitude_deg": "24.154412", + "longitude_deg": "120.68327", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TXG", + "municipality": "Taichung (Wuqi)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/China_Medical_University_(Taiwan)", + "keywords": "China Medical University Hospital; 中國醫科大學附屬醫院直升機場" + }, + { + "id": "325268", + "ident": "TW-0009", + "type": "heliport", + "name": "CTS (China Television System) Helipad", + "latitude_deg": "25.043433", + "longitude_deg": "121.556379", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TPE", + "municipality": "Taipei", + "scheduled_service": "no", + "keywords": "CTS, China Television System, 中國電視系統" + }, + { + "id": "325270", + "ident": "TW-0010", + "type": "heliport", + "name": "Far Eastern Memorial Hospital Heliport", + "latitude_deg": "24.997071", + "longitude_deg": "121.453541", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TPE", + "municipality": "Taipei", + "scheduled_service": "no", + "keywords": "Far Eastern Memorial Hospital Heliport, 遠東紀念醫院直升機場" + }, + { + "id": "325272", + "ident": "TW-0011", + "type": "heliport", + "name": "Hsinchu Air Force Hospital Heliport", + "latitude_deg": "24.816245", + "longitude_deg": "120.96203", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-HSZ", + "municipality": "Hsinchu", + "scheduled_service": "no", + "keywords": "Hsinchu Air Force Hospital, 新竹空軍醫院直升機場, Xinchu" + }, + { + "id": "325273", + "ident": "TW-0012", + "type": "heliport", + "name": "Hulien Hospital Heliport", + "latitude_deg": "23.978511", + "longitude_deg": "121.611904", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-HUA", + "municipality": "Hualien", + "scheduled_service": "no", + "home_link": "http://www.hwln.mohw.gov.tw/", + "keywords": "Hulien Hospital, 胡聯醫院直升機場" + }, + { + "id": "325274", + "ident": "TW-0013", + "type": "heliport", + "name": "Jiali Shan Helipad", + "latitude_deg": "24.464734", + "longitude_deg": "121.223271", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-MIA", + "municipality": "Jiali Shan", + "scheduled_service": "no", + "keywords": "Jiali Shan, 嘉東機場" + }, + { + "id": "325275", + "ident": "TW-0014", + "type": "heliport", + "name": "Kaohsiung Armed Forces General Hospital Heliport", + "latitude_deg": "22.625979", + "longitude_deg": "120.339912", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-KHH", + "municipality": "Kaohsiung (Lingya)", + "scheduled_service": "no", + "home_link": "https://802.mnd.gov.tw/ListP07002.ShowItemListState.do", + "keywords": "Kaohsiung Armed Forces General Hospital; 高雄武裝總醫院直升機場" + }, + { + "id": "325276", + "ident": "TW-0015", + "type": "heliport", + "name": "Kaohsiung Veterans General Hospital Helipad", + "latitude_deg": "22.680648", + "longitude_deg": "120.322024", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-KHH", + "municipality": "Kaohsiung (Zuoying)", + "scheduled_service": "no", + "home_link": "https://www.vghtpe.gov.tw/Index.action", + "wikipedia_link": "https://www.vghtpe.gov.tw/Index.action", + "keywords": "Kaohsiung Veterans’ General Hospital, 高雄退伍軍人總醫院直升機停機坪" + }, + { + "id": "325277", + "ident": "TW-0016", + "type": "heliport", + "name": "Mackay Memorial Hospital Helipad", + "latitude_deg": "25.139707", + "longitude_deg": "121.460736", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TPQ", + "municipality": "New Taipei City", + "scheduled_service": "no", + "home_link": "http://eng.mmh.org.tw/dnn/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mackay_Memorial_Hospital", + "keywords": "Mackay Memorial Hospital; 麥凱紀念醫院直升機停機坪" + }, + { + "id": "325278", + "ident": "TW-0017", + "type": "heliport", + "name": "Maritime Patrol Directorate General Helipad", + "latitude_deg": "25.176236", + "longitude_deg": "121.421446", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TPQ", + "municipality": "Tanshui", + "scheduled_service": "no", + "keywords": "Maritime Patrol Directorate General, Tanshui, 海上巡邏總司令" + }, + { + "id": "325280", + "ident": "TW-0018", + "type": "heliport", + "name": "Nan-Gang Police District Helipad", + "latitude_deg": "25.055333", + "longitude_deg": "121.594626", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TPE", + "municipality": "Taipei", + "scheduled_service": "no", + "keywords": "Nan-Gang Police District, 南港警區直升機停機坪" + }, + { + "id": "325281", + "ident": "TW-0019", + "type": "heliport", + "name": "Puli Christian Hospital Heliport", + "latitude_deg": "23.970186", + "longitude_deg": "120.946488", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-NAN", + "municipality": "Puli", + "scheduled_service": "no", + "home_link": "http://www.pch.org.tw/english/e_index.html", + "wikipedia_link": "https://zh.wikipedia.org/wiki/%E5%9F%94%E9%87%8C%E5%9F%BA%E7%9D%A3%E6%95%99%E9%86%AB%E9%99%A2", + "keywords": "Puli Christian Hospital, 普里基督醫院直升機場" + }, + { + "id": "325283", + "ident": "TW-0020", + "type": "heliport", + "name": "Shuang Ho Hospital Heliport", + "latitude_deg": "24.992335", + "longitude_deg": "121.493431", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TPQ", + "municipality": "New Taipei City", + "scheduled_service": "no", + "home_link": "http://enoffical.shh.org.tw/", + "keywords": "Shuang Ho Hospital, 雙河醫院直升機場" + }, + { + "id": "325284", + "ident": "TW-0021", + "type": "heliport", + "name": "Sihong Heliport", + "latitude_deg": "24.430752", + "longitude_deg": "118.444118", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-X-KM", + "municipality": "Sihong", + "scheduled_service": "no", + "keywords": "Sihong, 泗洪直升機場" + }, + { + "id": "325285", + "ident": "TW-0022", + "type": "heliport", + "name": "Taichung Veterans General Hospital Helipad", + "latitude_deg": "24.1841", + "longitude_deg": "120.60313", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TXG", + "municipality": "Taichung (Xitun)", + "scheduled_service": "no", + "home_link": "http://www.vghtc.gov.tw/GipOpenWeb/wSite/mp?mp=8", + "keywords": "Taichung Veterans’ General Hospital, 台中退伍軍人總醫院直升機停機坪" + }, + { + "id": "325286", + "ident": "TW-0023", + "type": "heliport", + "name": "Taipei City Hall Helipad", + "latitude_deg": "25.037416", + "longitude_deg": "121.564598", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TPE", + "municipality": "Taipei", + "scheduled_service": "no", + "keywords": "Taipei City Hall" + }, + { + "id": "325287", + "ident": "TW-0024", + "type": "heliport", + "name": "Taipei City Hospital Heliport", + "latitude_deg": "25.051121", + "longitude_deg": "121.508931", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TPE", + "municipality": "Taipei", + "scheduled_service": "no", + "home_link": "http://english.tch.gov.taipei/", + "keywords": "Taipei City Hospital, 台北市醫院直升機場" + }, + { + "id": "325288", + "ident": "TW-0025", + "type": "heliport", + "name": "Taipei City Government Fire Bureau Helipad", + "latitude_deg": "25.040744", + "longitude_deg": "121.56907", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TPE", + "municipality": "Taipei", + "scheduled_service": "no", + "keywords": "Taipei City Government Fire Bureau, 台北市消防局直升機場" + }, + { + "id": "325289", + "ident": "TW-0026", + "type": "heliport", + "name": "Taipei Grand Hyatt Hotel Helipad", + "latitude_deg": "25.034933", + "longitude_deg": "121.562527", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TPE", + "municipality": "Taipei", + "scheduled_service": "no", + "home_link": "https://taipei.grand.hyatt.com/en/hotel/home.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Hyatt_Taipei", + "keywords": "Taipei Grand Hyatt Hotel Helipad, 台北貿易中心直升機停機坪" + }, + { + "id": "325290", + "ident": "TW-0027", + "type": "heliport", + "name": "Taipei Trade Center Helipad", + "latitude_deg": "25.033467", + "longitude_deg": "121.561098", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TPE", + "municipality": "Taipei", + "scheduled_service": "no", + "home_link": "http://www.ticc.com.tw/main_en/index.aspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taipei_World_Trade_Center", + "keywords": "Taipei Trade Center, 台北貿易中心直升機停機坪" + }, + { + "id": "325291", + "ident": "TW-0028", + "type": "heliport", + "name": "Taipei Veterans’ General Helipad", + "latitude_deg": "25.120213", + "longitude_deg": "121.51986", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TPE", + "municipality": "Taipei", + "scheduled_service": "no", + "home_link": "https://imsc.vghtpe.gov.tw/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taipei_Veterans_General_Hospital", + "keywords": "Taipei Veterans’ General Hospital Helipad, 台北退伍軍人總醫院直升機停機坪" + }, + { + "id": "325292", + "ident": "TW-0029", + "type": "heliport", + "name": "Taoyuan Armed Forces General Hospital Helipad", + "latitude_deg": "24.876416", + "longitude_deg": "121.2339", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TAO", + "municipality": "Taoyuan", + "scheduled_service": "no", + "home_link": "http://813.mnd.gov.tw/english/", + "wikipedia_link": "https://zh.wikipedia.org/wiki/%E5%9C%8B%E8%BB%8D%E6%A1%83%E5%9C%92%E7%B8%BD%E9%86%AB%E9%99%A2", + "keywords": "Taoyuan Armed Forces General Hospital, 桃園武裝總醫院直升機停機坪" + }, + { + "id": "325293", + "ident": "TW-0030", + "type": "heliport", + "name": "Tungs’ Taichung Metro Harbor Hospital Helipad", + "latitude_deg": "24.246903", + "longitude_deg": "120.542598", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TXG", + "municipality": "Taichung (Wuqi)", + "scheduled_service": "no", + "home_link": "http://www.sltung.com.tw/en-us/about.php", + "keywords": "Tungs’ Taichung Metro Harbor Hospital, 東涌台中地鐵港口醫院直升機停機坪" + }, + { + "id": "325295", + "ident": "TW-0031", + "type": "heliport", + "name": "Zhuzi Shan Helipad", + "latitude_deg": "25.215883", + "longitude_deg": "121.560851", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TPQ", + "scheduled_service": "no", + "keywords": "Zhuzi Shan, 朱子山直升機坪" + }, + { + "id": "326577", + "ident": "TW-0032", + "type": "small_airport", + "name": "Taimali Airport", + "latitude_deg": "22.586871", + "longitude_deg": "121.000736", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TTT", + "municipality": "Taimali", + "scheduled_service": "no", + "keywords": "Taimali" + }, + { + "id": "326578", + "ident": "TW-0033", + "type": "heliport", + "name": "Taimali Heliport", + "latitude_deg": "22.591106", + "longitude_deg": "121.000269", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TTT", + "municipality": "Taimali", + "scheduled_service": "no", + "keywords": "Taimali" + }, + { + "id": "337826", + "ident": "TW-0034", + "type": "small_airport", + "name": "Dapeng Bay Ultralightport", + "latitude_deg": "22.45167", + "longitude_deg": "120.48565", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-PIF", + "municipality": "Donggang", + "scheduled_service": "no" + }, + { + "id": "337828", + "ident": "TW-0035", + "type": "small_airport", + "name": "Shoufeng Ultralightport", + "latitude_deg": "23.87514", + "longitude_deg": "121.54155", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-HUA", + "municipality": "Shoufeng", + "scheduled_service": "no" + }, + { + "id": "337829", + "ident": "TW-0036", + "type": "small_airport", + "name": "Gogofly Flight Training Airfield", + "latitude_deg": "23.77948", + "longitude_deg": "121.47453", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-HUA", + "municipality": "Fenglin", + "scheduled_service": "no", + "keywords": "Huadong" + }, + { + "id": "337830", + "ident": "TW-0037", + "type": "small_airport", + "name": "Fenglin Airstrip", + "latitude_deg": "23.77262", + "longitude_deg": "121.47999", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-HUA", + "municipality": "Fenglin", + "scheduled_service": "no" + }, + { + "id": "337831", + "ident": "TW-0038", + "type": "small_airport", + "name": "Saijia Jiehao Ultralightport", + "latitude_deg": "22.75635", + "longitude_deg": "120.62325", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-PIF", + "municipality": "Gaoshu", + "scheduled_service": "no" + }, + { + "id": "337832", + "ident": "TW-0039", + "type": "small_airport", + "name": "Mingli Gliderport", + "latitude_deg": "23.71454", + "longitude_deg": "121.42002", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-HUA", + "municipality": "Fenglin", + "scheduled_service": "no" + }, + { + "id": "337833", + "ident": "TW-0040", + "type": "small_airport", + "name": "Wanrong Paraglider Base", + "latitude_deg": "23.71842", + "longitude_deg": "121.4036", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-HUA", + "municipality": "Fenglin", + "scheduled_service": "no" + }, + { + "id": "337840", + "ident": "TW-0041", + "type": "small_airport", + "name": "Puli - Hutoushan Gliderport", + "latitude_deg": "23.96623", + "longitude_deg": "120.98246", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-NAN", + "municipality": "Puli", + "scheduled_service": "no" + }, + { + "id": "338584", + "ident": "TW-0042", + "type": "small_airport", + "name": "Wuri Weihui Airfield", + "latitude_deg": "24.04881", + "longitude_deg": "120.63185", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TXG", + "municipality": "Taichung", + "scheduled_service": "no" + }, + { + "id": "340120", + "ident": "TW-0043", + "type": "heliport", + "name": "Pengjia Heliport", + "latitude_deg": "25.62799", + "longitude_deg": "122.08079", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-KEE", + "municipality": "Zhongzheng", + "scheduled_service": "no" + }, + { + "id": "340646", + "ident": "TW-0044", + "type": "closed", + "name": "Donggang Seaplane Base", + "latitude_deg": "22.451355", + "longitude_deg": "120.479395", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-PIF", + "municipality": "Donggang", + "scheduled_service": "no", + "keywords": "Toko Seaplane Base" + }, + { + "id": "342179", + "ident": "TW-0045", + "type": "heliport", + "name": "Wuqiu Township Office Helipad", + "latitude_deg": "24.98858", + "longitude_deg": "119.4523", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-X-KM", + "municipality": "Wuqiu", + "scheduled_service": "no" + }, + { + "id": "342180", + "ident": "TW-0046", + "type": "heliport", + "name": "Wuqiu Lighthouse Helipad", + "latitude_deg": "24.99154", + "longitude_deg": "119.4504", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-X-KM", + "municipality": "Wuqiu", + "scheduled_service": "no" + }, + { + "id": "342181", + "ident": "TW-0047", + "type": "heliport", + "name": "Xiaoqiu Helipad", + "latitude_deg": "24.98274", + "longitude_deg": "119.47445", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-X-KM", + "municipality": "Wuqiu", + "scheduled_service": "no" + }, + { + "id": "350884", + "ident": "TW-0048", + "type": "heliport", + "name": "Jialutang Coast Guard Heliport", + "latitude_deg": "22.33196", + "longitude_deg": "120.62823", + "elevation_ft": "56", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-PIF", + "municipality": "Fangshan", + "scheduled_service": "no" + }, + { + "id": "350885", + "ident": "TW-0049", + "type": "heliport", + "name": "Maanshan Nuclear Power Plant Heliport", + "latitude_deg": "21.96357", + "longitude_deg": "120.75167", + "elevation_ft": "88", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-PIF", + "municipality": "Hengchun", + "scheduled_service": "no" + }, + { + "id": "355923", + "ident": "TW-0050", + "type": "heliport", + "name": "Dongyin Heliport", + "latitude_deg": "26.3592", + "longitude_deg": "120.48321", + "elevation_ft": "166", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-X-LK", + "municipality": "Dongyin", + "scheduled_service": "no" + }, + { + "id": "355924", + "ident": "TW-0051", + "type": "heliport", + "name": "Dongju Heliport", + "latitude_deg": "25.9583", + "longitude_deg": "119.96752", + "elevation_ft": "85", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-X-LK", + "municipality": "Dongju", + "scheduled_service": "no" + }, + { + "id": "355925", + "ident": "TW-0052", + "type": "heliport", + "name": "Juguan Heliport", + "latitude_deg": "25.97132", + "longitude_deg": "119.93639", + "elevation_ft": "107", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-X-LK", + "municipality": "Juguan", + "scheduled_service": "no" + }, + { + "id": "355926", + "ident": "TW-0053", + "type": "small_airport", + "name": "Hualien Baiyun Airfield", + "latitude_deg": "23.89625", + "longitude_deg": "121.56376", + "elevation_ft": "95", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-HUA", + "municipality": "Shoufeng", + "scheduled_service": "no" + }, + { + "id": "355927", + "ident": "TW-0054", + "type": "small_airport", + "name": "Lanqingting Ultralightport", + "latitude_deg": "23.89849", + "longitude_deg": "121.56932", + "elevation_ft": "85", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-HUA", + "municipality": "Shoufeng", + "scheduled_service": "no" + }, + { + "id": "355928", + "ident": "TW-0055", + "type": "small_airport", + "name": "Shoufeng North Ultralightport", + "latitude_deg": "23.87808", + "longitude_deg": "121.54875", + "elevation_ft": "85", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-HUA", + "municipality": "Shoufeng", + "scheduled_service": "no" + }, + { + "id": "429709", + "ident": "TW-0056", + "type": "heliport", + "name": "Sanxing Heliport", + "latitude_deg": "24.69129", + "longitude_deg": "121.67017", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-ILA", + "municipality": "Sanxing", + "scheduled_service": "no" + }, + { + "id": "429710", + "ident": "TW-0057", + "type": "heliport", + "name": "Ren'ai Emergency Heliport", + "latitude_deg": "24.03231", + "longitude_deg": "121.1418", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-NAN", + "municipality": "Ren'ai", + "scheduled_service": "no" + }, + { + "id": "429861", + "ident": "TW-0058", + "type": "small_airport", + "name": "PIngtung Saijia Paragliding Field", + "latitude_deg": "22.75312", + "longitude_deg": "120.64695", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-PIF", + "municipality": "Saijia", + "scheduled_service": "no" + }, + { + "id": "429862", + "ident": "TW-0059", + "type": "small_airport", + "name": "Taipingshan Paragliding Field", + "latitude_deg": "22.92839", + "longitude_deg": "121.09995", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TTT", + "municipality": "Yanping", + "scheduled_service": "no" + }, + { + "id": "429863", + "ident": "TW-0060", + "type": "balloonport", + "name": "Skyrainbow Balloonport", + "latitude_deg": "22.94552", + "longitude_deg": "121.13676", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TTT", + "municipality": "Luye", + "scheduled_service": "no" + }, + { + "id": "429864", + "ident": "TW-0061", + "type": "small_airport", + "name": "Guanshan Airstrip", + "latitude_deg": "23.05556", + "longitude_deg": "121.17125", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-TTT", + "municipality": "Guanshan", + "scheduled_service": "no" + }, + { + "id": "30834", + "ident": "TW-CMJ", + "type": "small_airport", + "name": "Qimei Airport", + "latitude_deg": "23.213127", + "longitude_deg": "119.417539", + "elevation_ft": "63", + "continent": "AS", + "iso_country": "TW", + "iso_region": "TW-PEN", + "municipality": "Qimei", + "scheduled_service": "no", + "gps_code": "RCCM", + "iata_code": "CMJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qimei_Airport", + "keywords": "Qimei Airport, 七美機場, 七美机场" + }, + { + "id": "336113", + "ident": "TWC", + "type": "small_airport", + "name": "Tumxuk Tangwangcheng Airport", + "latitude_deg": "39.886663", + "longitude_deg": "79.233408", + "elevation_ft": "3566", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Tumxuk", + "scheduled_service": "yes", + "gps_code": "ZWTS", + "iata_code": "TWC", + "local_code": "TWC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tumxuk_Tangwangcheng_Airport" + }, + { + "id": "300312", + "ident": "TWH", + "type": "seaplane_base", + "name": "Two Harbors Amphibious Terminal", + "latitude_deg": "33.432222222200004", + "longitude_deg": "-118.508611111", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Two Harbors", + "scheduled_service": "no", + "iata_code": "TWH" + }, + { + "id": "25118", + "ident": "TX00", + "type": "small_airport", + "name": "Abilene Executive Airpark", + "latitude_deg": "32.44889831542969", + "longitude_deg": "-99.62000274658203", + "elevation_ft": "1822", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Abilene", + "scheduled_service": "no", + "gps_code": "TX00", + "local_code": "TX00" + }, + { + "id": "25119", + "ident": "TX01", + "type": "small_airport", + "name": "New Home Airport", + "latitude_deg": "33.30839920043945", + "longitude_deg": "-101.91000366210938", + "elevation_ft": "3234", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "New Home", + "scheduled_service": "no", + "gps_code": "TX01", + "local_code": "TX01" + }, + { + "id": "25120", + "ident": "TX02", + "type": "closed", + "name": "Portlock Airfield", + "latitude_deg": "32.526501", + "longitude_deg": "-99.6129", + "elevation_ft": "1780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Abilene", + "scheduled_service": "no", + "gps_code": "TX02", + "local_code": "TX02" + }, + { + "id": "25121", + "ident": "TX03", + "type": "small_airport", + "name": "Stapleton Field", + "latitude_deg": "31.875086", + "longitude_deg": "-97.068128", + "elevation_ft": "716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Abbott", + "scheduled_service": "no", + "gps_code": "TX03", + "local_code": "TX03" + }, + { + "id": "25122", + "ident": "TX04", + "type": "small_airport", + "name": "Lucky Star Ranch Airport", + "latitude_deg": "30.2911944", + "longitude_deg": "-96.5268611", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brenham", + "scheduled_service": "no", + "gps_code": "TX04", + "local_code": "TX04" + }, + { + "id": "25123", + "ident": "TX05", + "type": "small_airport", + "name": "Bud Dryden Airport", + "latitude_deg": "30.2605", + "longitude_deg": "-97.625298", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "TX05", + "local_code": "TX05" + }, + { + "id": "25124", + "ident": "TX06", + "type": "heliport", + "name": "Carrington Heliport", + "latitude_deg": "33.07809829711914", + "longitude_deg": "-97.14080047607422", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bartonville", + "scheduled_service": "no", + "gps_code": "TX06", + "local_code": "TX06" + }, + { + "id": "25125", + "ident": "TX07", + "type": "small_airport", + "name": "Nix River Ranch Strip", + "latitude_deg": "29.953365", + "longitude_deg": "-101.243022", + "elevation_ft": "1820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comstock", + "scheduled_service": "no", + "gps_code": "TX07", + "local_code": "TX07", + "keywords": "Lazy Two Ranch, Monarch Ranch" + }, + { + "id": "25126", + "ident": "TX08", + "type": "heliport", + "name": "The Ballpark in Arlington Heliport", + "latitude_deg": "32.7510986328125", + "longitude_deg": "-97.08509826660156", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "TX08", + "local_code": "TX08" + }, + { + "id": "45860", + "ident": "TX09", + "type": "closed", + "name": "Cunningham Airpark", + "latitude_deg": "29.675556", + "longitude_deg": "-98.012778", + "elevation_ft": "617", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "New Braunfels", + "scheduled_service": "no", + "keywords": "TX09" + }, + { + "id": "25127", + "ident": "TX10", + "type": "heliport", + "name": "Industrial Helicopters Inc Heliport", + "latitude_deg": "27.72330093383789", + "longitude_deg": "-97.57330322265625", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no", + "gps_code": "TX10", + "local_code": "TX10" + }, + { + "id": "25128", + "ident": "TX11", + "type": "small_airport", + "name": "Ross Planes Airport", + "latitude_deg": "32.13999938964844", + "longitude_deg": "-99.15869903564453", + "elevation_ft": "1765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cross Plains", + "scheduled_service": "no", + "gps_code": "TX11", + "local_code": "TX11" + }, + { + "id": "25129", + "ident": "TX12", + "type": "closed", + "name": "Kidd-Private Airport", + "latitude_deg": "33.808399", + "longitude_deg": "-96.608597", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Denison", + "scheduled_service": "no", + "keywords": "TX12" + }, + { + "id": "25130", + "ident": "TX13", + "type": "small_airport", + "name": "Mesa Vista Ranch Airport", + "latitude_deg": "35.889278", + "longitude_deg": "-101.030139", + "elevation_ft": "2772", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pampa", + "scheduled_service": "no", + "gps_code": "TX13", + "local_code": "TX13", + "keywords": "Formerly BPC" + }, + { + "id": "25131", + "ident": "TX14", + "type": "heliport", + "name": "Front Yard Landing Area Heliport", + "latitude_deg": "32.899673", + "longitude_deg": "-98.533196", + "elevation_ft": "1008", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Graham", + "scheduled_service": "no", + "gps_code": "TX14", + "local_code": "TX14" + }, + { + "id": "25132", + "ident": "TX15", + "type": "closed", + "name": "Beggs Ranch (Aledo) Airport", + "latitude_deg": "32.751499", + "longitude_deg": "-97.612801", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Aledo", + "scheduled_service": "no", + "gps_code": "TX15", + "local_code": "TX15" + }, + { + "id": "25133", + "ident": "TX16", + "type": "closed", + "name": "Log Cabin Airport", + "latitude_deg": "32.802502", + "longitude_deg": "-97.6092", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Aledo", + "scheduled_service": "no", + "keywords": "TX16" + }, + { + "id": "25134", + "ident": "TX17", + "type": "heliport", + "name": "UT Health East Texas Athens Hospital Heliport", + "latitude_deg": "32.168825", + "longitude_deg": "-95.846192", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Athens", + "scheduled_service": "no", + "gps_code": "TX17", + "local_code": "TX17", + "keywords": "ETMC - Athens Heliport" + }, + { + "id": "25135", + "ident": "TX18", + "type": "heliport", + "name": "Redmond Taylor Army Heliport", + "latitude_deg": "32.73379898071289", + "longitude_deg": "-96.97229766845703", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "TX18", + "local_code": "TX18" + }, + { + "id": "25136", + "ident": "TX19", + "type": "small_airport", + "name": "Russells Ranch Airport", + "latitude_deg": "33.538499", + "longitude_deg": "-94.90479", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Annona", + "scheduled_service": "no", + "gps_code": "TX19", + "local_code": "TX19" + }, + { + "id": "25137", + "ident": "TX20", + "type": "small_airport", + "name": "Steen Airport", + "latitude_deg": "32.7932014465332", + "longitude_deg": "-99.87789916992188", + "elevation_ft": "1670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Anson", + "scheduled_service": "no", + "gps_code": "TX20", + "local_code": "TX20" + }, + { + "id": "25138", + "ident": "TX21", + "type": "small_airport", + "name": "Hornady Ranch Airport", + "latitude_deg": "33.477845", + "longitude_deg": "-98.54619", + "elevation_ft": "1165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Archer City", + "scheduled_service": "no", + "gps_code": "TX21", + "local_code": "TX21" + }, + { + "id": "25139", + "ident": "TX22", + "type": "small_airport", + "name": "Leroux Airport", + "latitude_deg": "33.10179901123047", + "longitude_deg": "-97.15499877929688", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Argyle", + "scheduled_service": "no", + "gps_code": "TX22", + "local_code": "TX22" + }, + { + "id": "25140", + "ident": "TX23", + "type": "small_airport", + "name": "FLF Gliderport", + "latitude_deg": "30.8563", + "longitude_deg": "-97.9459", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Briggs", + "scheduled_service": "no", + "gps_code": "TX23", + "local_code": "TX23", + "keywords": "Fault Line Flyers" + }, + { + "id": "25141", + "ident": "TX24", + "type": "small_airport", + "name": "Oaks Airport", + "latitude_deg": "32.265243", + "longitude_deg": "-95.082936", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Arp", + "scheduled_service": "no", + "gps_code": "TX24", + "local_code": "TX24" + }, + { + "id": "25142", + "ident": "TX25", + "type": "small_airport", + "name": "Lochridge Ranch Airport", + "latitude_deg": "31.989299774169922", + "longitude_deg": "-95.95110321044922", + "elevation_ft": "391", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Athens", + "scheduled_service": "no", + "gps_code": "TX25", + "local_code": "TX25" + }, + { + "id": "25143", + "ident": "TX26", + "type": "heliport", + "name": "Mabry Army National Guard Heliport", + "latitude_deg": "30.323309", + "longitude_deg": "-97.760414", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "TX26", + "local_code": "TX26" + }, + { + "id": "25144", + "ident": "TX28", + "type": "heliport", + "name": "Dewberry Heliport", + "latitude_deg": "29.733299255371094", + "longitude_deg": "-95.86380004882812", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Katy", + "scheduled_service": "no", + "gps_code": "TX28", + "local_code": "TX28" + }, + { + "id": "25145", + "ident": "TX29", + "type": "small_airport", + "name": "Flying O Airport", + "latitude_deg": "32.28900146484375", + "longitude_deg": "-96.70439910888672", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bardwell", + "scheduled_service": "no", + "gps_code": "TX29", + "local_code": "TX29" + }, + { + "id": "25146", + "ident": "TX30", + "type": "heliport", + "name": "H E B Hospital Heliport", + "latitude_deg": "32.833499908447266", + "longitude_deg": "-97.12529754638672", + "elevation_ft": "552", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bedford", + "scheduled_service": "no", + "gps_code": "TX30", + "local_code": "TX30" + }, + { + "id": "25147", + "ident": "TX31", + "type": "small_airport", + "name": "Edwards Lucian Wells Ranch Airport", + "latitude_deg": "32.074522", + "longitude_deg": "-101.565804", + "elevation_ft": "2505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Big Spring", + "scheduled_service": "no", + "gps_code": "TX31", + "local_code": "TX31" + }, + { + "id": "25148", + "ident": "TX32", + "type": "small_airport", + "name": "Bar V K Airport", + "latitude_deg": "33.376399993896484", + "longitude_deg": "-97.24330139160156", + "elevation_ft": "765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bolivar", + "scheduled_service": "no", + "gps_code": "TX32", + "local_code": "TX32" + }, + { + "id": "25149", + "ident": "TX33", + "type": "closed", + "name": "Haire Airport", + "latitude_deg": "33.338873", + "longitude_deg": "-97.307432", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanger", + "scheduled_service": "no", + "keywords": "TX33" + }, + { + "id": "25150", + "ident": "TX34", + "type": "small_airport", + "name": "Windy Tales Airport", + "latitude_deg": "32.848415374800005", + "longitude_deg": "-97.9843063354", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineral Wells", + "scheduled_service": "no", + "gps_code": "TX34", + "local_code": "TX34" + }, + { + "id": "25151", + "ident": "TX35", + "type": "small_airport", + "name": "Key's Ranch Airport", + "latitude_deg": "33.443199157714844", + "longitude_deg": "-94.81410217285156", + "elevation_ft": "345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Boxelder/Lydia", + "scheduled_service": "no", + "gps_code": "TX35", + "local_code": "TX35" + }, + { + "id": "25152", + "ident": "TX36", + "type": "closed", + "name": "Green Ranch Airport", + "latitude_deg": "32.8335", + "longitude_deg": "-99.042", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Breckenridge", + "scheduled_service": "no", + "keywords": "TX36" + }, + { + "id": "25153", + "ident": "TX37", + "type": "small_airport", + "name": "Flying S Ranch Airport", + "latitude_deg": "33.131802", + "longitude_deg": "-97.7686", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paradise", + "scheduled_service": "no", + "gps_code": "TX37", + "local_code": "TX37" + }, + { + "id": "25154", + "ident": "TX38", + "type": "small_airport", + "name": "Duke Ranch Airport", + "latitude_deg": "36.37950134277344", + "longitude_deg": "-100.34300231933594", + "elevation_ft": "2705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Darrouzett", + "scheduled_service": "no", + "gps_code": "TX38", + "local_code": "TX38" + }, + { + "id": "25155", + "ident": "TX39", + "type": "small_airport", + "name": "Ruby Field", + "latitude_deg": "33.47719955444336", + "longitude_deg": "-97.25060272216797", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Era", + "scheduled_service": "no", + "gps_code": "TX39", + "local_code": "TX39" + }, + { + "id": "25156", + "ident": "TX40", + "type": "small_airport", + "name": "Echo Lake Airport", + "latitude_deg": "32.25429916381836", + "longitude_deg": "-95.65579986572266", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brownsboro", + "scheduled_service": "no", + "gps_code": "TX40", + "local_code": "TX40" + }, + { + "id": "25157", + "ident": "TX41", + "type": "small_airport", + "name": "Pippen-York Ranch Airport", + "latitude_deg": "30.091299057006836", + "longitude_deg": "-98.36470031738281", + "elevation_ft": "1340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Blanco", + "scheduled_service": "no", + "gps_code": "TX41", + "local_code": "TX41" + }, + { + "id": "25158", + "ident": "TX42", + "type": "small_airport", + "name": "Fair Weather Field", + "latitude_deg": "29.9375", + "longitude_deg": "-96.0394439697", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Monaville", + "scheduled_service": "no", + "gps_code": "TX42", + "local_code": "TX42" + }, + { + "id": "25159", + "ident": "TX43", + "type": "small_airport", + "name": "Goode Field", + "latitude_deg": "32.5098991394043", + "longitude_deg": "-96.00270080566406", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Canton", + "scheduled_service": "no", + "gps_code": "TX43", + "local_code": "TX43" + }, + { + "id": "25160", + "ident": "TX44", + "type": "heliport", + "name": "Hospitals of Providence Sierra Medical Center Heliport", + "latitude_deg": "31.777342", + "longitude_deg": "-106.481077", + "elevation_ft": "3905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Paso", + "scheduled_service": "no", + "gps_code": "TX44", + "local_code": "TX44" + }, + { + "id": "25161", + "ident": "TX45", + "type": "small_airport", + "name": "Hawkeye Hunting Club Airport", + "latitude_deg": "31.769656", + "longitude_deg": "-97.131757", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "West", + "scheduled_service": "no", + "gps_code": "TX45", + "local_code": "TX45" + }, + { + "id": "25162", + "ident": "TX46", + "type": "small_airport", + "name": "Blackwood Airpark", + "latitude_deg": "32.40959930419922", + "longitude_deg": "-97.38719940185547", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cleburne", + "scheduled_service": "no", + "gps_code": "TX46", + "local_code": "TX46" + }, + { + "id": "25163", + "ident": "TX47", + "type": "small_airport", + "name": "Sandy Creek Ranch Airfield", + "latitude_deg": "33.7076835632", + "longitude_deg": "-96.2238464355", + "elevation_ft": "547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Revenna", + "scheduled_service": "no", + "gps_code": "TX47", + "local_code": "TX47" + }, + { + "id": "45847", + "ident": "TX48", + "type": "small_airport", + "name": "Talley Airport", + "latitude_deg": "31.832222", + "longitude_deg": "-97.718889", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Clifton", + "scheduled_service": "no", + "gps_code": "TX48", + "local_code": "TX48" + }, + { + "id": "25164", + "ident": "TX49", + "type": "closed", + "name": "Biggin Hill Airport", + "latitude_deg": "30.118299", + "longitude_deg": "-95.860001", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hockley", + "scheduled_service": "no", + "keywords": "TX49" + }, + { + "id": "25165", + "ident": "TX50", + "type": "heliport", + "name": "Texas Health Presbyterian Hospital Denton Heliport", + "latitude_deg": "33.218495", + "longitude_deg": "-97.167045", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Denton", + "scheduled_service": "no", + "gps_code": "TX50", + "local_code": "TX50", + "keywords": "Denton Community Hospital" + }, + { + "id": "25166", + "ident": "TX51", + "type": "small_airport", + "name": "Smith Airport", + "latitude_deg": "32.20009994506836", + "longitude_deg": "-96.32939910888672", + "elevation_ft": "405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corsicana", + "scheduled_service": "no", + "gps_code": "TX51", + "local_code": "TX51" + }, + { + "id": "25167", + "ident": "TX52", + "type": "small_airport", + "name": "Parrish Airstrip", + "latitude_deg": "31.794599533081055", + "longitude_deg": "-97.7739028930664", + "elevation_ft": "917", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cranfills Gap", + "scheduled_service": "no", + "gps_code": "TX52", + "local_code": "TX52" + }, + { + "id": "25168", + "ident": "TX53", + "type": "heliport", + "name": "Police H Port-Redbird Heliport", + "latitude_deg": "32.68330001831055", + "longitude_deg": "-96.85810089111328", + "elevation_ft": "659", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "TX53", + "local_code": "TX53" + }, + { + "id": "42766", + "ident": "TX54", + "type": "closed", + "name": "Moore Airpark", + "latitude_deg": "26.212749", + "longitude_deg": "-98.406457", + "elevation_ft": "117", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Palmview", + "scheduled_service": "no", + "keywords": "TX54" + }, + { + "id": "25170", + "ident": "TX55", + "type": "heliport", + "name": "Southland Center Heliport", + "latitude_deg": "32.77370071411133", + "longitude_deg": "-96.79830169677734", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "TX55", + "local_code": "TX55" + }, + { + "id": "25171", + "ident": "TX56", + "type": "small_airport", + "name": "Douglass Ranch Airport", + "latitude_deg": "27.715499877929688", + "longitude_deg": "-98.70249938964844", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Freer", + "scheduled_service": "no", + "gps_code": "TX56", + "local_code": "TX56" + }, + { + "id": "25172", + "ident": "TX57", + "type": "heliport", + "name": "US Coast Guard Station South Padre Island Heliport", + "latitude_deg": "26.07189", + "longitude_deg": "-97.163386", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "South Padre Island", + "scheduled_service": "no", + "gps_code": "TX57", + "local_code": "TX57" + }, + { + "id": "25173", + "ident": "TX58", + "type": "heliport", + "name": "Southwest Custom Aircraft Heliport", + "latitude_deg": "32.58679962158203", + "longitude_deg": "-97.18329620361328", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mansfield", + "scheduled_service": "no", + "gps_code": "TX58", + "local_code": "TX58" + }, + { + "id": "25174", + "ident": "TX59", + "type": "heliport", + "name": "Eds Administration Nr 2 Heliport", + "latitude_deg": "33.073299407958984", + "longitude_deg": "-96.14749908447266", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Plano", + "scheduled_service": "no", + "gps_code": "TX59", + "local_code": "TX59" + }, + { + "id": "25175", + "ident": "TX60", + "type": "heliport", + "name": "T I Company Heliport", + "latitude_deg": "32.91429901123047", + "longitude_deg": "-96.752197265625", + "elevation_ft": "564", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "TX60", + "local_code": "TX60" + }, + { + "id": "25176", + "ident": "TX61", + "type": "closed", + "name": "Baker's Place Airport", + "latitude_deg": "30.3302", + "longitude_deg": "-97.4589", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Elgin", + "scheduled_service": "no", + "gps_code": "TX61", + "local_code": "TX61" + }, + { + "id": "25177", + "ident": "TX62", + "type": "small_airport", + "name": "Rhodes Ranch Airport", + "latitude_deg": "32.63349914550781", + "longitude_deg": "-95.43910217285156", + "elevation_ft": "405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineola", + "scheduled_service": "no", + "gps_code": "TX62", + "local_code": "TX62" + }, + { + "id": "25178", + "ident": "TX63", + "type": "heliport", + "name": "Brownfield Regional Medical Center Heliport", + "latitude_deg": "33.187599182128906", + "longitude_deg": "-102.26799774169922", + "elevation_ft": "3320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brownfield", + "scheduled_service": "no", + "gps_code": "TX63", + "local_code": "TX63" + }, + { + "id": "25179", + "ident": "TX64", + "type": "small_airport", + "name": "Lazy 9 Ranch Airport", + "latitude_deg": "33.29930114746094", + "longitude_deg": "-97.52729797363281", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Decatur", + "scheduled_service": "no", + "gps_code": "TX64", + "local_code": "TX64" + }, + { + "id": "25180", + "ident": "TX65", + "type": "heliport", + "name": "Beechwood Heliport", + "latitude_deg": "33.023101806640625", + "longitude_deg": "-97.28829956054688", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "TX65", + "local_code": "TX65" + }, + { + "id": "25181", + "ident": "TX66", + "type": "small_airport", + "name": "Rebel Field", + "latitude_deg": "29.398799896240234", + "longitude_deg": "-95.07849884033203", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alta Loma", + "scheduled_service": "no", + "gps_code": "TX66", + "local_code": "TX66" + }, + { + "id": "25182", + "ident": "TX67", + "type": "small_airport", + "name": "Hodges Air Field", + "latitude_deg": "32.3606", + "longitude_deg": "-97.302498", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Keene", + "scheduled_service": "no", + "gps_code": "TX67", + "local_code": "TX67", + "keywords": "Embry Ranch" + }, + { + "id": "25183", + "ident": "TX68", + "type": "small_airport", + "name": "Parker Place Airport", + "latitude_deg": "33.591800689697266", + "longitude_deg": "-96.27660369873047", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ector", + "scheduled_service": "no", + "gps_code": "TX68", + "local_code": "TX68" + }, + { + "id": "45846", + "ident": "TX69", + "type": "heliport", + "name": "Southwest General Hospital Heliport", + "latitude_deg": "29.352128", + "longitude_deg": "-98.54494", + "elevation_ft": "657", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "TX69", + "local_code": "TX69" + }, + { + "id": "25184", + "ident": "TX70", + "type": "small_airport", + "name": "Eberly Ranch Airport", + "latitude_deg": "30.061481", + "longitude_deg": "-96.225726", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Chappell Hill", + "scheduled_service": "no", + "gps_code": "TX70", + "local_code": "TX70" + }, + { + "id": "25185", + "ident": "TX71", + "type": "closed", + "name": "JMK International Inc Heliport", + "latitude_deg": "32.715333", + "longitude_deg": "-97.413665", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "keywords": "TX71" + }, + { + "id": "25186", + "ident": "TX72", + "type": "closed", + "name": "Wood Triple D Airport", + "latitude_deg": "30.379132", + "longitude_deg": "-97.194843", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Elgin", + "scheduled_service": "no", + "gps_code": "TX72", + "local_code": "TX72" + }, + { + "id": "25187", + "ident": "TX73", + "type": "closed", + "name": "Big Brown Creek Airstrip", + "latitude_deg": "31.830998", + "longitude_deg": "-96.0522", + "elevation_ft": "323", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fairfield", + "scheduled_service": "no", + "keywords": "TX73" + }, + { + "id": "25188", + "ident": "TX74", + "type": "small_airport", + "name": "Thomas Flying Field", + "latitude_deg": "32.261303", + "longitude_deg": "-97.27315", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Parker", + "scheduled_service": "no", + "gps_code": "TX74", + "local_code": "TX74" + }, + { + "id": "25189", + "ident": "TX75", + "type": "small_airport", + "name": "Sandbur Ranches Private Airport", + "latitude_deg": "31.009700775146484", + "longitude_deg": "-96.54080200195312", + "elevation_ft": "455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "TX75", + "local_code": "TX75" + }, + { + "id": "25190", + "ident": "TX76", + "type": "closed", + "name": "Baylor Scott & White Medical Center Heliport", + "latitude_deg": "32.919637", + "longitude_deg": "-96.660842", + "elevation_ft": "555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garland", + "scheduled_service": "no", + "home_link": "https://web.archive.org/web/20190317010213/https://www.bswhealth.com/locations/garland/pages/default.aspx?utm_source=web&utm_med", + "keywords": "TX76, BMCG Heliport" + }, + { + "id": "25191", + "ident": "TX77", + "type": "closed", + "name": "Mallick Tower Heliport", + "latitude_deg": "32.758499", + "longitude_deg": "-97.342003", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "keywords": "TX77" + }, + { + "id": "25192", + "ident": "TX78", + "type": "small_airport", + "name": "Block Ranch Airport", + "latitude_deg": "32.329200744628906", + "longitude_deg": "-97.23190307617188", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alvarado", + "scheduled_service": "no", + "gps_code": "TX78", + "local_code": "TX78" + }, + { + "id": "25193", + "ident": "TX79", + "type": "small_airport", + "name": "Crescent C Ranch Airport", + "latitude_deg": "28.0888881683", + "longitude_deg": "-99.04888916019999", + "elevation_ft": "277", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cotulla", + "scheduled_service": "no", + "gps_code": "TX79", + "local_code": "TX79" + }, + { + "id": "25194", + "ident": "TX80", + "type": "closed", + "name": "EDS Superdrome Heliport", + "latitude_deg": "33.132682", + "longitude_deg": "-96.789958", + "elevation_ft": "765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Frisco", + "scheduled_service": "no", + "gps_code": "TX80", + "local_code": "TX80" + }, + { + "id": "25195", + "ident": "TX81", + "type": "small_airport", + "name": "Robotek Airport", + "latitude_deg": "33.54999923706055", + "longitude_deg": "-97.03810119628906", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gainesville", + "scheduled_service": "no", + "gps_code": "TX81", + "local_code": "TX81" + }, + { + "id": "25196", + "ident": "TX82", + "type": "small_airport", + "name": "Laguna Park Community Airport", + "latitude_deg": "31.8636", + "longitude_deg": "-97.380898", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laguna Park", + "scheduled_service": "no", + "gps_code": "TX82", + "local_code": "TX82", + "keywords": "Laguna Park Air Strip, Rickfield Airstrip, Laguna-Not A-Park Airstrip" + }, + { + "id": "25197", + "ident": "TX83", + "type": "heliport", + "name": "Water Department Heliport", + "latitude_deg": "32.749000549316406", + "longitude_deg": "-97.34500122070312", + "elevation_ft": "547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "TX83", + "local_code": "TX83" + }, + { + "id": "25198", + "ident": "TX84", + "type": "closed", + "name": "GMF Ranch Heliport", + "latitude_deg": "33.090599", + "longitude_deg": "-96.566902", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Allen/Lucas", + "scheduled_service": "no", + "keywords": "TX84" + }, + { + "id": "25199", + "ident": "TX85", + "type": "heliport", + "name": "City of Fort Worth Heliport", + "latitude_deg": "32.77790069580078", + "longitude_deg": "-97.32499694824219", + "elevation_ft": "538", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "TX85", + "local_code": "TX85" + }, + { + "id": "25200", + "ident": "TX86", + "type": "heliport", + "name": "Methodist Hospital Alkek Heliport", + "latitude_deg": "29.710335", + "longitude_deg": "-95.398533", + "elevation_ft": "181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "TX86", + "local_code": "TX86" + }, + { + "id": "25201", + "ident": "TX87", + "type": "heliport", + "name": "South Texas Regional Hospital Heliport", + "latitude_deg": "28.933300018310547", + "longitude_deg": "-98.52449798583984", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jourdanton", + "scheduled_service": "no", + "gps_code": "TX87", + "local_code": "TX87" + }, + { + "id": "25202", + "ident": "TX88", + "type": "closed", + "name": "Stemmons Place Heliport", + "latitude_deg": "32.809072", + "longitude_deg": "-96.848967", + "elevation_ft": "477", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "keywords": "TX88" + }, + { + "id": "25203", + "ident": "TX89", + "type": "closed", + "name": "Ganze Ranch Airstrip", + "latitude_deg": "32.969799", + "longitude_deg": "-96.622498", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garland", + "scheduled_service": "no", + "keywords": "TX89" + }, + { + "id": "25204", + "ident": "TX90", + "type": "closed", + "name": "Flight Safety Texas Heliport", + "latitude_deg": "32.802101", + "longitude_deg": "-97.183296", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hurst", + "scheduled_service": "no", + "keywords": "TX90" + }, + { + "id": "25205", + "ident": "TX91", + "type": "small_airport", + "name": "Madeira Airpark", + "latitude_deg": "32.90760040283203", + "longitude_deg": "-96.5969009399414", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garland", + "scheduled_service": "no", + "gps_code": "TX91", + "local_code": "TX91" + }, + { + "id": "25206", + "ident": "TX92", + "type": "closed", + "name": "Green Airport", + "latitude_deg": "30.596001", + "longitude_deg": "-97.669403", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Georgetown", + "scheduled_service": "no", + "keywords": "TX92" + }, + { + "id": "25207", + "ident": "TX93", + "type": "small_airport", + "name": "Wright Ranch Airport", + "latitude_deg": "32.15007", + "longitude_deg": "-97.8401", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Glen Rose", + "scheduled_service": "no", + "gps_code": "TX93", + "local_code": "TX93" + }, + { + "id": "25208", + "ident": "TX94", + "type": "small_airport", + "name": "Flying D Ranch Airport", + "latitude_deg": "33.4529", + "longitude_deg": "-97.276703", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Era", + "scheduled_service": "no", + "gps_code": "TX94", + "local_code": "TX94", + "keywords": "Flying R Ranch Airport" + }, + { + "id": "25209", + "ident": "TX95", + "type": "small_airport", + "name": "Coppenger Farm Airport", + "latitude_deg": "32.41400146484375", + "longitude_deg": "-97.5322036743164", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Godley", + "scheduled_service": "no", + "gps_code": "TX95", + "local_code": "TX95" + }, + { + "id": "25210", + "ident": "TX96", + "type": "small_airport", + "name": "Maxwell Field", + "latitude_deg": "33.39929962158203", + "longitude_deg": "-97.25700378417969", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanger", + "scheduled_service": "no", + "gps_code": "TX96", + "local_code": "TX96" + }, + { + "id": "25211", + "ident": "TX97", + "type": "small_airport", + "name": "Cade Field", + "latitude_deg": "31.76490020751953", + "longitude_deg": "-97.79640197753906", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cranfills Gap", + "scheduled_service": "no", + "gps_code": "TX97", + "local_code": "TX97" + }, + { + "id": "25212", + "ident": "TX98", + "type": "small_airport", + "name": "Hawkins Field", + "latitude_deg": "32.473926", + "longitude_deg": "-97.501645", + "elevation_ft": "978", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Godley", + "scheduled_service": "no", + "gps_code": "35TT", + "local_code": "35TT", + "keywords": "TX98, Hawkins Private Airport" + }, + { + "id": "25213", + "ident": "TX99", + "type": "small_airport", + "name": "Williams Field", + "latitude_deg": "34.00680160522461", + "longitude_deg": "-102.98699951171875", + "elevation_ft": "4085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Goodland", + "scheduled_service": "no", + "gps_code": "TX99", + "local_code": "TX99", + "home_link": "http://www.flywga.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Williams_Gateway_Airport" + }, + { + "id": "6416", + "ident": "TXKF", + "type": "medium_airport", + "name": "L.F. Wade International International Airport", + "latitude_deg": "32.36399841308594", + "longitude_deg": "-64.67870330810547", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "BM", + "iso_region": "BM-U-A", + "municipality": "Hamilton", + "scheduled_service": "yes", + "gps_code": "TXKF", + "iata_code": "BDA", + "home_link": "http://www.bermudaairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bermuda_International_Airport", + "keywords": "Kindley Air Force Base, Fort Bell Army Airfield, NAS Bermuda, Naval Air Station Bermuda" + }, + { + "id": "25214", + "ident": "TYE", + "type": "small_airport", + "name": "Tyonek Airport", + "latitude_deg": "61.076556", + "longitude_deg": "-151.131363", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tyonek", + "scheduled_service": "no", + "iata_code": "TYE", + "local_code": "TYE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tyonek_Airport" + }, + { + "id": "42493", + "ident": "TZ-0001", + "type": "small_airport", + "name": "Mtera Airport", + "latitude_deg": "-7.097152", + "longitude_deg": "35.981575", + "elevation_ft": "2399", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-03", + "municipality": "Mtera", + "scheduled_service": "no" + }, + { + "id": "42494", + "ident": "TZ-0002", + "type": "small_airport", + "name": "Manyoni North Airport", + "latitude_deg": "-5.72119", + "longitude_deg": "34.838487", + "elevation_ft": "4080", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-23", + "municipality": "Manyoni", + "scheduled_service": "no" + }, + { + "id": "42495", + "ident": "TZ-0003", + "type": "small_airport", + "name": "Mbinga Airport", + "latitude_deg": "-10.96399974822998", + "longitude_deg": "35.01179885864258", + "elevation_ft": "4335", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-21", + "municipality": "Mbinga", + "scheduled_service": "no" + }, + { + "id": "42496", + "ident": "TZ-0004", + "type": "small_airport", + "name": "Tura Airport", + "latitude_deg": "-5.4892401695251465", + "longitude_deg": "33.87820053100586", + "elevation_ft": "4216", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-24", + "municipality": "Tura", + "scheduled_service": "no" + }, + { + "id": "300759", + "ident": "TZ-0005", + "type": "small_airport", + "name": "Mvumi Airport", + "latitude_deg": "-6.376389", + "longitude_deg": "35.898611", + "elevation_ft": "3445", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-03", + "municipality": "Mvumi", + "scheduled_service": "no", + "gps_code": "HTMV" + }, + { + "id": "300760", + "ident": "TZ-0006", + "type": "small_airport", + "name": "Kasulu Airport", + "latitude_deg": "-4.549167", + "longitude_deg": "30.102222", + "elevation_ft": "4175", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-08", + "municipality": "Kasulu", + "scheduled_service": "no", + "gps_code": "HTKU" + }, + { + "id": "318563", + "ident": "TZ-0007", + "type": "small_airport", + "name": "Tulawaka Gold Mine Airstrip", + "latitude_deg": "-3.210604", + "longitude_deg": "31.546516", + "elevation_ft": "3944", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-05", + "municipality": "Uyovu", + "scheduled_service": "no" + }, + { + "id": "318565", + "ident": "TZ-0008", + "type": "small_airport", + "name": "Maswa Airstrip", + "latitude_deg": "-3.186741", + "longitude_deg": "33.792056", + "elevation_ft": "4196", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-22", + "municipality": "Nyalikungu", + "scheduled_service": "no", + "gps_code": "HTMC" + }, + { + "id": "318566", + "ident": "TZ-0009", + "type": "small_airport", + "name": "Biharamulo Airport", + "latitude_deg": "-2.663273", + "longitude_deg": "31.36515", + "elevation_ft": "4723", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-05", + "municipality": "Biharamulo", + "scheduled_service": "no", + "gps_code": "HTBH" + }, + { + "id": "318567", + "ident": "TZ-0010", + "type": "small_airport", + "name": "Manyoni Airport", + "latitude_deg": "-5.758501", + "longitude_deg": "34.799656", + "elevation_ft": "4084", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-23", + "municipality": "Manyoni", + "scheduled_service": "no", + "gps_code": "HTMN" + }, + { + "id": "318568", + "ident": "TZ-0011", + "type": "small_airport", + "name": "Liwale Airport", + "latitude_deg": "-9.796886", + "longitude_deg": "37.870732", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-12", + "municipality": "Liwale", + "scheduled_service": "no" + }, + { + "id": "318569", + "ident": "TZ-0012", + "type": "small_airport", + "name": "Ifakara Airport", + "latitude_deg": "-8.064876", + "longitude_deg": "36.698112", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-16", + "municipality": "Ifakara", + "scheduled_service": "no" + }, + { + "id": "318570", + "ident": "TZ-0013", + "type": "small_airport", + "name": "Mkwaja Airport", + "latitude_deg": "-5.719283", + "longitude_deg": "38.828465", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-05", + "municipality": "Mkwaja", + "scheduled_service": "no" + }, + { + "id": "318571", + "ident": "TZ-0014", + "type": "small_airport", + "name": "Mbamba Bay Airport", + "latitude_deg": "-11.303451", + "longitude_deg": "34.842717", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-21", + "municipality": "Mbamba Bay", + "scheduled_service": "no" + }, + { + "id": "318572", + "ident": "TZ-0015", + "type": "small_airport", + "name": "Iku Airport", + "latitude_deg": "-6.908626", + "longitude_deg": "31.166407", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-20", + "municipality": "Iku", + "scheduled_service": "no" + }, + { + "id": "318573", + "ident": "TZ-0016", + "type": "small_airport", + "name": "Sasakwa Airport", + "latitude_deg": "-2.073124", + "longitude_deg": "34.510235", + "elevation_ft": "4301", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-13", + "scheduled_service": "no" + }, + { + "id": "318574", + "ident": "TZ-0017", + "type": "small_airport", + "name": "Jongomeru Airport", + "latitude_deg": "-7.894934", + "longitude_deg": "34.580821", + "elevation_ft": "3000", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-14", + "municipality": "Jongomeru", + "scheduled_service": "no" + }, + { + "id": "318575", + "ident": "TZ-0018", + "type": "small_airport", + "name": "Kogatende Airstrip", + "latitude_deg": "-1.568396", + "longitude_deg": "34.886933", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-13", + "municipality": "Kogatende", + "scheduled_service": "no" + }, + { + "id": "318576", + "ident": "TZ-0019", + "type": "closed", + "name": "Limai Airport", + "latitude_deg": "-2.269407", + "longitude_deg": "34.023569", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-22", + "scheduled_service": "no" + }, + { + "id": "318577", + "ident": "TZ-0020", + "type": "small_airport", + "name": "Lobo Airstrip", + "latitude_deg": "-2.009865", + "longitude_deg": "35.159105", + "elevation_ft": "5500", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-13", + "municipality": "Lobo", + "scheduled_service": "no" + }, + { + "id": "318578", + "ident": "TZ-0021", + "type": "small_airport", + "name": "Mpululu Airport", + "latitude_deg": "-7.042659", + "longitude_deg": "34.724101", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-04", + "municipality": "Mpululu", + "scheduled_service": "no" + }, + { + "id": "318579", + "ident": "TZ-0022", + "type": "small_airport", + "name": "Tarangire 2 Airport", + "latitude_deg": "-3.761121", + "longitude_deg": "36.027171", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-01", + "municipality": "Tarangire", + "scheduled_service": "no" + }, + { + "id": "318580", + "ident": "TZ-0023", + "type": "small_airport", + "name": "Rubondo Airport", + "latitude_deg": "-2.30078", + "longitude_deg": "31.849455", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-05", + "municipality": "Rubondo Island", + "scheduled_service": "no" + }, + { + "id": "318581", + "ident": "TZ-0024", + "type": "small_airport", + "name": "Ndutu Airport", + "latitude_deg": "-3.030715", + "longitude_deg": "34.988468", + "elevation_ft": "5353", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-01", + "municipality": "Ndutu", + "scheduled_service": "no" + }, + { + "id": "318582", + "ident": "TZ-0025", + "type": "small_airport", + "name": "Sitalike Airport", + "latitude_deg": "-6.631518", + "longitude_deg": "31.135481", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-20", + "municipality": "Sitalike", + "scheduled_service": "no" + }, + { + "id": "318583", + "ident": "TZ-0026", + "type": "small_airport", + "name": "Fort Ikoma Airport", + "latitude_deg": "-2.080103", + "longitude_deg": "34.62952", + "elevation_ft": "4412", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-13", + "municipality": "Fort Ikoma", + "scheduled_service": "no", + "gps_code": "HTFI" + }, + { + "id": "318584", + "ident": "TZ-0027", + "type": "small_airport", + "name": "Kuro Airport", + "latitude_deg": "-4.007918", + "longitude_deg": "36.076105", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-26", + "municipality": "Kuro", + "scheduled_service": "no" + }, + { + "id": "318585", + "ident": "TZ-0028", + "type": "small_airport", + "name": "Msembe Airport", + "latitude_deg": "-7.684811", + "longitude_deg": "34.922282", + "elevation_ft": "2500", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-04", + "municipality": "Msembe", + "scheduled_service": "no", + "gps_code": "HTMR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Msembe_Airstrip" + }, + { + "id": "318588", + "ident": "TZ-0029", + "type": "small_airport", + "name": "Magangwe Airport", + "latitude_deg": "-7.719942", + "longitude_deg": "34.226726", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-14", + "municipality": "Magangwe", + "scheduled_service": "no" + }, + { + "id": "318589", + "ident": "TZ-0030", + "type": "small_airport", + "name": "Beho Beho Airstrip", + "latitude_deg": "-7.666746", + "longitude_deg": "37.927229", + "elevation_ft": "393", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-19", + "municipality": "Beho Beho", + "scheduled_service": "no", + "gps_code": "HTBO" + }, + { + "id": "318590", + "ident": "TZ-0031", + "type": "small_airport", + "name": "Boma Ulanga Airstrip", + "latitude_deg": "-8.188467", + "longitude_deg": "36.91211", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-16", + "municipality": "Boma Ulanga", + "scheduled_service": "no" + }, + { + "id": "318591", + "ident": "TZ-0032", + "type": "small_airport", + "name": "Buturi Airport", + "latitude_deg": "-3.199844", + "longitude_deg": "34.436504", + "elevation_ft": "4730", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-22", + "municipality": "Buturi", + "scheduled_service": "no" + }, + { + "id": "318592", + "ident": "TZ-0033", + "type": "small_airport", + "name": "Fish Eagle Airport", + "latitude_deg": "-4.805057", + "longitude_deg": "31.276613", + "elevation_ft": "3300", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-08", + "municipality": "Ibolero", + "scheduled_service": "no", + "gps_code": "HTFE" + }, + { + "id": "318593", + "ident": "TZ-0034", + "type": "small_airport", + "name": "Isanga Airport", + "latitude_deg": "-7.527162", + "longitude_deg": "33.884071", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-23", + "municipality": "Isanga", + "scheduled_service": "no" + }, + { + "id": "318594", + "ident": "TZ-0035", + "type": "small_airport", + "name": "Kifura Airstrip", + "latitude_deg": "-3.838092", + "longitude_deg": "30.640202", + "elevation_ft": "4389", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-08", + "municipality": "Kifura", + "scheduled_service": "no" + }, + { + "id": "318595", + "ident": "TZ-0036", + "type": "small_airport", + "name": "Kihurumila Airport", + "latitude_deg": "-9.0411", + "longitude_deg": "38.273756", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-12", + "municipality": "Kihurumila", + "scheduled_service": "no" + }, + { + "id": "318596", + "ident": "TZ-0037", + "type": "small_airport", + "name": "Luhanyando Airoprt", + "latitude_deg": "-9.447883", + "longitude_deg": "36.848932", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-16", + "municipality": "Luhanyando", + "scheduled_service": "no" + }, + { + "id": "318597", + "ident": "TZ-0038", + "type": "closed", + "name": "Manane Airport", + "latitude_deg": "-8.206858", + "longitude_deg": "36.959834", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-16", + "municipality": "Manane", + "scheduled_service": "no" + }, + { + "id": "318598", + "ident": "TZ-0039", + "type": "small_airport", + "name": "Matambwe Airport", + "latitude_deg": "-7.528887", + "longitude_deg": "37.76201", + "elevation_ft": "585", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-16", + "municipality": "Matambwe", + "scheduled_service": "no", + "gps_code": "HTME" + }, + { + "id": "318599", + "ident": "TZ-0040", + "type": "closed", + "name": "Matambwe Old Airport", + "latitude_deg": "-7.535478", + "longitude_deg": "37.776384", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-16", + "municipality": "Matambwe", + "scheduled_service": "no" + }, + { + "id": "318600", + "ident": "TZ-0041", + "type": "small_airport", + "name": "Mbunga Airport", + "latitude_deg": "-8.978724", + "longitude_deg": "36.869154", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-16", + "municipality": "Mbunga", + "scheduled_service": "no" + }, + { + "id": "318603", + "ident": "TZ-0042", + "type": "small_airport", + "name": "Mkangira Airport", + "latitude_deg": "-8.958151", + "longitude_deg": "37.338793", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-16", + "municipality": "Mkangira", + "scheduled_service": "no" + }, + { + "id": "318604", + "ident": "TZ-0043", + "type": "small_airport", + "name": "Mkomazi-Kisima Airport", + "latitude_deg": "-4.079592", + "longitude_deg": "38.086684", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-09", + "municipality": "Mkomazi", + "scheduled_service": "no" + }, + { + "id": "318605", + "ident": "TZ-0044", + "type": "small_airport", + "name": "Mkuyu Airport", + "latitude_deg": "-9.966951", + "longitude_deg": "36.878941", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-12", + "municipality": "Mkuyu", + "scheduled_service": "no" + }, + { + "id": "318606", + "ident": "TZ-0045", + "type": "small_airport", + "name": "Mlembwe Airport", + "latitude_deg": "-9.426932", + "longitude_deg": "37.519672", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-12", + "municipality": "Mlembwe", + "scheduled_service": "no" + }, + { + "id": "318607", + "ident": "TZ-0046", + "type": "small_airport", + "name": "Mpunde Airport", + "latitude_deg": "-6.259359", + "longitude_deg": "33.619996", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-24", + "municipality": "Mpunde", + "scheduled_service": "no" + }, + { + "id": "318608", + "ident": "TZ-0047", + "type": "small_airport", + "name": "Mtemaupinde Airport", + "latitude_deg": "-11.206844", + "longitude_deg": "38.162974", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-17", + "municipality": "Mtemaupinde", + "scheduled_service": "no" + }, + { + "id": "318609", + "ident": "TZ-0048", + "type": "small_airport", + "name": "Mtemere Airport", + "latitude_deg": "-7.750093", + "longitude_deg": "38.208474", + "elevation_ft": "216", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-19", + "municipality": "Mtemere", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mtemere_Airstrip" + }, + { + "id": "318610", + "ident": "TZ-0049", + "type": "small_airport", + "name": "Muhuba Airport", + "latitude_deg": "-5.770289", + "longitude_deg": "31.721521", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-20", + "municipality": "Muhuba", + "scheduled_service": "no" + }, + { + "id": "318611", + "ident": "TZ-0050", + "type": "small_airport", + "name": "Mwambesi Airport", + "latitude_deg": "-11.61227", + "longitude_deg": "37.564572", + "elevation_ft": "1000", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-21", + "municipality": "Mwambesi", + "scheduled_service": "no", + "keywords": "Mwambezi" + }, + { + "id": "318612", + "ident": "TZ-0051", + "type": "small_airport", + "name": "Rungwa Airport", + "latitude_deg": "-6.935716", + "longitude_deg": "33.530089", + "elevation_ft": "4110", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-23", + "municipality": "Rungwa", + "scheduled_service": "no" + }, + { + "id": "318613", + "ident": "TZ-0052", + "type": "small_airport", + "name": "Saadani Airport", + "latitude_deg": "-6.030896", + "longitude_deg": "38.770264", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-19", + "municipality": "Saadani", + "scheduled_service": "no" + }, + { + "id": "318614", + "ident": "TZ-0053", + "type": "small_airport", + "name": "Sire Airport", + "latitude_deg": "-5.713026", + "longitude_deg": "31.83135", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-20", + "municipality": "Sire", + "scheduled_service": "no" + }, + { + "id": "318615", + "ident": "TZ-0054", + "type": "small_airport", + "name": "Siwandu Airport", + "latitude_deg": "-7.6847", + "longitude_deg": "38.136731", + "elevation_ft": "195", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-19", + "municipality": "Siwandu", + "scheduled_service": "no", + "gps_code": "HTZW" + }, + { + "id": "318616", + "ident": "TZ-0055", + "type": "small_airport", + "name": "Ngorongoro Airport", + "latitude_deg": "-3.221398", + "longitude_deg": "35.476965", + "elevation_ft": "7795", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-01", + "municipality": "Ngorongoro", + "scheduled_service": "no" + }, + { + "id": "318617", + "ident": "TZ-0056", + "type": "small_airport", + "name": "Alliance Airstrip", + "latitude_deg": "-2.602346", + "longitude_deg": "33.676018", + "elevation_ft": "3800", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-22", + "scheduled_service": "no" + }, + { + "id": "318618", + "ident": "TZ-0057", + "type": "small_airport", + "name": "Birise Airport", + "latitude_deg": "-5.428612", + "longitude_deg": "35.166079", + "elevation_ft": "4250", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-23", + "municipality": "Birise", + "scheduled_service": "no" + }, + { + "id": "318619", + "ident": "TZ-0058", + "type": "small_airport", + "name": "Bulyanhulu Airport", + "latitude_deg": "-3.2292", + "longitude_deg": "32.473316", + "elevation_ft": "3944", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-22", + "municipality": "Bubada", + "scheduled_service": "no", + "gps_code": "HTBN" + }, + { + "id": "318620", + "ident": "TZ-0059", + "type": "small_airport", + "name": "Chidudu Airport", + "latitude_deg": "-6.565131", + "longitude_deg": "35.1737", + "elevation_ft": "3670", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-23", + "municipality": "Chidudu", + "scheduled_service": "no" + }, + { + "id": "318621", + "ident": "TZ-0060", + "type": "small_airport", + "name": "Endanyawish Airport", + "latitude_deg": "-3.711702", + "longitude_deg": "35.270623", + "elevation_ft": "4350", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-01", + "municipality": "Endanyawish", + "scheduled_service": "no" + }, + { + "id": "318622", + "ident": "TZ-0061", + "type": "small_airport", + "name": "Golden Pride Mines Airport", + "latitude_deg": "-4.080354", + "longitude_deg": "33.160212", + "elevation_ft": "3789", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-24", + "scheduled_service": "no", + "gps_code": "HTGP" + }, + { + "id": "318623", + "ident": "TZ-0062", + "type": "small_airport", + "name": "Gorimba Airport", + "latitude_deg": "-4.837753", + "longitude_deg": "35.366121", + "elevation_ft": "4660", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-26", + "municipality": "Gorimba", + "scheduled_service": "no" + }, + { + "id": "318624", + "ident": "TZ-0063", + "type": "small_airport", + "name": "Gua Airport", + "latitude_deg": "-7.868375", + "longitude_deg": "32.48466", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-14", + "municipality": "Gua", + "scheduled_service": "no" + }, + { + "id": "318625", + "ident": "TZ-0064", + "type": "small_airport", + "name": "Handa Airport", + "latitude_deg": "-4.954854", + "longitude_deg": "35.323672", + "elevation_ft": "4150", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-23", + "municipality": "Handa", + "scheduled_service": "no" + }, + { + "id": "318626", + "ident": "TZ-0065", + "type": "small_airport", + "name": "Harbanget Airport", + "latitude_deg": "-3.868369", + "longitude_deg": "35.396409", + "elevation_ft": "5500", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-26", + "municipality": "Harbanget", + "scheduled_service": "no" + }, + { + "id": "318627", + "ident": "TZ-0066", + "type": "small_airport", + "name": "Haidom Airport", + "latitude_deg": "-4.198626", + "longitude_deg": "35.018655", + "elevation_ft": "5750", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-26", + "municipality": "Haidom", + "scheduled_service": "no", + "gps_code": "HTHY" + }, + { + "id": "318628", + "ident": "TZ-0067", + "type": "small_airport", + "name": "Ibanda Airport", + "latitude_deg": "-1.074975", + "longitude_deg": "30.51758", + "elevation_ft": "4300", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-05", + "municipality": "Ibanda", + "scheduled_service": "no" + }, + { + "id": "318629", + "ident": "TZ-0068", + "type": "small_airport", + "name": "Ifunda Farm Airstrip", + "latitude_deg": "-8.070735", + "longitude_deg": "35.432556", + "elevation_ft": "5744", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-04", + "municipality": "Ifunda", + "scheduled_service": "no" + }, + { + "id": "318630", + "ident": "TZ-0069", + "type": "small_airport", + "name": "Kagera Sugar Airport", + "latitude_deg": "-1.233641", + "longitude_deg": "31.327325", + "elevation_ft": "3830", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-05", + "scheduled_service": "no" + }, + { + "id": "318631", + "ident": "TZ-0070", + "type": "small_airport", + "name": "Kapalagulu Airport", + "latitude_deg": "-5.904938", + "longitude_deg": "30.082868", + "elevation_ft": "3500", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-08", + "municipality": "Kapalagulu", + "scheduled_service": "no" + }, + { + "id": "318632", + "ident": "TZ-0071", + "type": "small_airport", + "name": "Kapenta Airport", + "latitude_deg": "-8.357716", + "longitude_deg": "32.103045", + "elevation_ft": "2810", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-20", + "municipality": "Sumbawanga", + "scheduled_service": "no" + }, + { + "id": "318633", + "ident": "TZ-0072", + "type": "small_airport", + "name": "Ihanda Airstrip", + "latitude_deg": "-1.552361", + "longitude_deg": "31.104871", + "elevation_ft": "4900", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-05", + "municipality": "Ihanda", + "scheduled_service": "no" + }, + { + "id": "318634", + "ident": "TZ-0073", + "type": "small_airport", + "name": "Kibebe Airport", + "latitude_deg": "-7.797941", + "longitude_deg": "35.762345", + "elevation_ft": "4725", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-04", + "municipality": "Kibebe", + "scheduled_service": "no" + }, + { + "id": "318635", + "ident": "TZ-0074", + "type": "small_airport", + "name": "Kibidula Airport", + "latitude_deg": "-8.412202", + "longitude_deg": "35.094073", + "elevation_ft": "6281", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-04", + "municipality": "Kibidula", + "scheduled_service": "no" + }, + { + "id": "318636", + "ident": "TZ-0075", + "type": "small_airport", + "name": "Kihansi Airport", + "latitude_deg": "-8.653119", + "longitude_deg": "35.865055", + "elevation_ft": "957", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-04", + "municipality": "Kihansi", + "scheduled_service": "no" + }, + { + "id": "318637", + "ident": "TZ-0076", + "type": "small_airport", + "name": "Kilombero Airport", + "latitude_deg": "-7.687751", + "longitude_deg": "36.986496", + "elevation_ft": "984", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-16", + "municipality": "Kidatu", + "scheduled_service": "no" + }, + { + "id": "318638", + "ident": "TZ-0077", + "type": "small_airport", + "name": "Kilumbi Airport", + "latitude_deg": "-6.32536", + "longitude_deg": "34.173759", + "elevation_ft": "4540", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-23", + "municipality": "Kilumbi", + "scheduled_service": "no" + }, + { + "id": "318639", + "ident": "TZ-0078", + "type": "small_airport", + "name": "Kishoshoroni Airport", + "latitude_deg": "-2.015174", + "longitude_deg": "35.273109", + "elevation_ft": "6100", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-13", + "municipality": "Kishoshoroni", + "scheduled_service": "no" + }, + { + "id": "318640", + "ident": "TZ-0079", + "type": "small_airport", + "name": "Kitumbeine Airport", + "latitude_deg": "-2.820447", + "longitude_deg": "36.323156", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-01", + "municipality": "Kitumbeine", + "scheduled_service": "no" + }, + { + "id": "318641", + "ident": "TZ-0080", + "type": "small_airport", + "name": "Kwajoni Airport", + "latitude_deg": "-5.512166", + "longitude_deg": "38.965097", + "elevation_ft": "15", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-25", + "municipality": "Kwajoni", + "scheduled_service": "no" + }, + { + "id": "318642", + "ident": "TZ-0081", + "type": "small_airport", + "name": "Lolmorijoi Airport", + "latitude_deg": "-4.549415", + "longitude_deg": "37.024381", + "elevation_ft": "3800", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-26", + "municipality": "Simanjiro", + "scheduled_service": "no" + }, + { + "id": "318643", + "ident": "TZ-0082", + "type": "small_airport", + "name": "Lualanje Airport", + "latitude_deg": "-7.918083", + "longitude_deg": "33.552315", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-14", + "municipality": "Chunya", + "scheduled_service": "no" + }, + { + "id": "318644", + "ident": "TZ-0083", + "type": "small_airport", + "name": "Lugonesi Airport", + "latitude_deg": "-6.15954", + "longitude_deg": "30.298705", + "elevation_ft": "5200", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-20", + "municipality": "Mpanda", + "scheduled_service": "no" + }, + { + "id": "318645", + "ident": "TZ-0084", + "type": "small_airport", + "name": "Lukwati Airport", + "latitude_deg": "-7.599608", + "longitude_deg": "32.3072", + "elevation_ft": "4000", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-14", + "municipality": "Chunya", + "scheduled_service": "no" + }, + { + "id": "318646", + "ident": "TZ-0085", + "type": "small_airport", + "name": "Maboxi Airport", + "latitude_deg": "-8.391651", + "longitude_deg": "37.168761", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-16", + "municipality": "Kidatu", + "scheduled_service": "no" + }, + { + "id": "318647", + "ident": "TZ-0086", + "type": "small_airport", + "name": "Madaba Airport", + "latitude_deg": "-8.643293", + "longitude_deg": "37.673992", + "elevation_ft": "1040", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-21", + "municipality": "Liwale", + "scheduled_service": "no" + }, + { + "id": "318648", + "ident": "TZ-0087", + "type": "small_airport", + "name": "Mahaka Airport", + "latitude_deg": "-6.135581", + "longitude_deg": "35.049797", + "elevation_ft": "2740", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-03", + "municipality": "Mahaka", + "scheduled_service": "no" + }, + { + "id": "318649", + "ident": "TZ-0088", + "type": "small_airport", + "name": "Makau Airport", + "latitude_deg": "-3.367409", + "longitude_deg": "34.824166", + "elevation_ft": "5131", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-22", + "municipality": "Makau", + "scheduled_service": "no", + "gps_code": "HTMH" + }, + { + "id": "318651", + "ident": "TZ-0089", + "type": "small_airport", + "name": "Malagarasi Airport", + "latitude_deg": "-4.793813", + "longitude_deg": "30.712949", + "elevation_ft": "3819", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-08", + "municipality": "Malagarasi", + "scheduled_service": "no" + }, + { + "id": "318652", + "ident": "TZ-0090", + "type": "small_airport", + "name": "Mamarehe Airport", + "latitude_deg": "-2.657814", + "longitude_deg": "34.394518", + "elevation_ft": "4750", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-22", + "municipality": "Mamarehe", + "scheduled_service": "no" + }, + { + "id": "318653", + "ident": "TZ-0091", + "type": "small_airport", + "name": "Mashado Airport", + "latitude_deg": "-5.470712", + "longitude_deg": "38.955266", + "elevation_ft": "200", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-25", + "municipality": "Pangani", + "scheduled_service": "no" + }, + { + "id": "318654", + "ident": "TZ-0092", + "type": "small_airport", + "name": "Masimba Airport", + "latitude_deg": "-7.267927", + "longitude_deg": "34.218247", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-23", + "municipality": "Rungwa", + "scheduled_service": "no" + }, + { + "id": "318655", + "ident": "TZ-0093", + "type": "small_airport", + "name": "Matemanga Airport", + "latitude_deg": "-10.763142", + "longitude_deg": "36.953222", + "elevation_ft": "2700", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-21", + "municipality": "Matemanga", + "scheduled_service": "no" + }, + { + "id": "318656", + "ident": "TZ-0094", + "type": "small_airport", + "name": "Matipwili Airport", + "latitude_deg": "-6.248936", + "longitude_deg": "38.678104", + "elevation_ft": "85", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-19", + "municipality": "Matipwili", + "scheduled_service": "no" + }, + { + "id": "318657", + "ident": "TZ-0095", + "type": "small_airport", + "name": "Mbarali Airport", + "latitude_deg": "-8.656494", + "longitude_deg": "34.273113", + "elevation_ft": "3432", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-14", + "municipality": "Mbarali", + "scheduled_service": "no" + }, + { + "id": "318658", + "ident": "TZ-0096", + "type": "small_airport", + "name": "Mbono 2 Airport", + "latitude_deg": "-3.11141", + "longitude_deg": "34.660824", + "elevation_ft": "5320", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-22", + "municipality": "Maswa", + "scheduled_service": "no" + }, + { + "id": "318659", + "ident": "TZ-0097", + "type": "small_airport", + "name": "Buhemba Airport", + "latitude_deg": "-1.774223", + "longitude_deg": "34.098139", + "elevation_ft": "4534", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-18", + "municipality": "Buhemba", + "scheduled_service": "no" + }, + { + "id": "318660", + "ident": "TZ-0098", + "type": "small_airport", + "name": "Mchukwi Rufiji Airport", + "latitude_deg": "-7.772857", + "longitude_deg": "39.019695", + "elevation_ft": "450", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-19", + "municipality": "Rufiji", + "scheduled_service": "no" + }, + { + "id": "318661", + "ident": "TZ-0099", + "type": "small_airport", + "name": "Merugoi Airport", + "latitude_deg": "-2.723808", + "longitude_deg": "36.135783", + "elevation_ft": "3700", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-01", + "municipality": "Longido", + "scheduled_service": "no" + }, + { + "id": "318662", + "ident": "TZ-0100", + "type": "small_airport", + "name": "Mlambala Airport", + "latitude_deg": "-7.233234", + "longitude_deg": "32.063351", + "elevation_ft": "3278", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-20", + "municipality": "Mlambala", + "scheduled_service": "no" + }, + { + "id": "318663", + "ident": "TZ-0101", + "type": "small_airport", + "name": "Mlele Ram Airport", + "latitude_deg": "-6.784087", + "longitude_deg": "31.367951", + "elevation_ft": "3300", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-20", + "municipality": "Mlele", + "scheduled_service": "no" + }, + { + "id": "318664", + "ident": "TZ-0102", + "type": "small_airport", + "name": "Mngeta Airport", + "latitude_deg": "-8.364091", + "longitude_deg": "36.103211", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-16", + "municipality": "Ifakara", + "scheduled_service": "no" + }, + { + "id": "318665", + "ident": "TZ-0103", + "type": "small_airport", + "name": "Mountain Side Airport", + "latitude_deg": "-2.878109", + "longitude_deg": "37.135211", + "elevation_ft": "6200", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-09", + "municipality": "Moshi", + "scheduled_service": "no" + }, + { + "id": "318666", + "ident": "TZ-0104", + "type": "small_airport", + "name": "Msima 1 Airport", + "latitude_deg": "-6.339313", + "longitude_deg": "31.849913", + "elevation_ft": "3710", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-20", + "municipality": "Msima", + "scheduled_service": "no" + }, + { + "id": "318667", + "ident": "TZ-0105", + "type": "small_airport", + "name": "Msima 2 Airport", + "latitude_deg": "-5.839096", + "longitude_deg": "31.459827", + "elevation_ft": "3600", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-20", + "municipality": "Msima", + "scheduled_service": "no" + }, + { + "id": "318668", + "ident": "TZ-0106", + "type": "small_airport", + "name": "Mtibwa Airport", + "latitude_deg": "-6.148889", + "longitude_deg": "37.661551", + "elevation_ft": "1234", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-16", + "municipality": "Mvomero", + "scheduled_service": "no" + }, + { + "id": "318669", + "ident": "TZ-0107", + "type": "small_airport", + "name": "Muhesi Airport", + "latitude_deg": "-6.139352", + "longitude_deg": "34.464442", + "elevation_ft": "4300", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-23", + "municipality": "Muhesi", + "scheduled_service": "no" + }, + { + "id": "318670", + "ident": "TZ-0108", + "type": "small_airport", + "name": "Murungu Airport", + "latitude_deg": "-4.185382", + "longitude_deg": "31.293522", + "elevation_ft": "3300", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-08", + "municipality": "Murungu", + "scheduled_service": "no" + }, + { + "id": "318671", + "ident": "TZ-0109", + "type": "small_airport", + "name": "Naibormut Airport", + "latitude_deg": "-4.469807", + "longitude_deg": "36.669798", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-01", + "municipality": "Simanjiro", + "scheduled_service": "no" + }, + { + "id": "318672", + "ident": "TZ-0110", + "type": "small_airport", + "name": "Ng'Wazi Airport", + "latitude_deg": "-8.522635", + "longitude_deg": "35.179545", + "elevation_ft": "6040", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-04", + "municipality": "Ng'Wazi", + "scheduled_service": "no" + }, + { + "id": "318673", + "ident": "TZ-0111", + "type": "small_airport", + "name": "North Mara Airport", + "latitude_deg": "-1.425761", + "longitude_deg": "34.543508", + "elevation_ft": "4428", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-13", + "scheduled_service": "no" + }, + { + "id": "318674", + "ident": "TZ-0112", + "type": "small_airport", + "name": "Piti Airport", + "latitude_deg": "-7.20467", + "longitude_deg": "32.925773", + "elevation_ft": "3300", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-14", + "municipality": "Chunya", + "scheduled_service": "no" + }, + { + "id": "318675", + "ident": "TZ-0113", + "type": "small_airport", + "name": "Ras Kutani Airport", + "latitude_deg": "-6.93512", + "longitude_deg": "39.492977", + "elevation_ft": "144", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-02", + "municipality": "Dar es Salaam", + "scheduled_service": "no" + }, + { + "id": "318676", + "ident": "TZ-0114", + "type": "small_airport", + "name": "Rungwa River Airport", + "latitude_deg": "-7.107139", + "longitude_deg": "32.481492", + "elevation_ft": "3565", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-20", + "municipality": "Rungwa", + "scheduled_service": "no" + }, + { + "id": "318677", + "ident": "TZ-0115", + "type": "small_airport", + "name": "Shama Airport", + "latitude_deg": "-6.322146", + "longitude_deg": "32.562788", + "elevation_ft": "3650", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-20", + "municipality": "Shama", + "scheduled_service": "no" + }, + { + "id": "318678", + "ident": "TZ-0116", + "type": "small_airport", + "name": "Songo Songo Airstrip", + "latitude_deg": "-8.528092", + "longitude_deg": "39.506976", + "elevation_ft": "24", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-12", + "municipality": "Songo Songo Island", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Songo_Songo_Airstrip" + }, + { + "id": "318679", + "ident": "TZ-0117", + "type": "small_airport", + "name": "Tarime Airport", + "latitude_deg": "-1.293878", + "longitude_deg": "34.420428", + "elevation_ft": "4830", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-13", + "municipality": "Tarime", + "scheduled_service": "no" + }, + { + "id": "318680", + "ident": "TZ-0118", + "type": "small_airport", + "name": "TPC Airport", + "latitude_deg": "-3.500144", + "longitude_deg": "37.323855", + "elevation_ft": "2300", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-09", + "scheduled_service": "no" + }, + { + "id": "318681", + "ident": "TZ-0119", + "type": "small_airport", + "name": "Wosiwosi Airport", + "latitude_deg": "-2.402902", + "longitude_deg": "36.120142", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-26", + "municipality": "Monduli", + "scheduled_service": "no" + }, + { + "id": "318682", + "ident": "TZ-0120", + "type": "small_airport", + "name": "Yaeda Airport", + "latitude_deg": "-3.961546", + "longitude_deg": "35.144932", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-26", + "municipality": "Mbulu", + "scheduled_service": "no" + }, + { + "id": "318779", + "ident": "TZ-0121", + "type": "small_airport", + "name": "Bushman Airstrip", + "latitude_deg": "-9.17479", + "longitude_deg": "35.966534", + "elevation_ft": "1021", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-16", + "scheduled_service": "no" + }, + { + "id": "318780", + "ident": "TZ-0122", + "type": "small_airport", + "name": "Gelai East Airport", + "latitude_deg": "-2.476768", + "longitude_deg": "36.25761", + "elevation_ft": "3200", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-01", + "municipality": "Gelai", + "scheduled_service": "no" + }, + { + "id": "318781", + "ident": "TZ-0123", + "type": "small_airport", + "name": "Klein's Camp Airport", + "latitude_deg": "-1.775438", + "longitude_deg": "35.278282", + "elevation_ft": "6300", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-13", + "scheduled_service": "no", + "gps_code": "HTKC" + }, + { + "id": "318782", + "ident": "TZ-0124", + "type": "small_airport", + "name": "Lamai Airport", + "latitude_deg": "-1.561738", + "longitude_deg": "34.702039", + "elevation_ft": "4410", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-13", + "scheduled_service": "no" + }, + { + "id": "318783", + "ident": "TZ-0125", + "type": "small_airport", + "name": "Lugala Airport", + "latitude_deg": "-8.916494", + "longitude_deg": "36.126593", + "elevation_ft": "943", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-16", + "municipality": "Lugala", + "scheduled_service": "no" + }, + { + "id": "318784", + "ident": "TZ-0126", + "type": "small_airport", + "name": "Luwegu Airport", + "latitude_deg": "-9.022345", + "longitude_deg": "37.289976", + "elevation_ft": "500", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-16", + "municipality": "Luwegu", + "scheduled_service": "no" + }, + { + "id": "318785", + "ident": "TZ-0127", + "type": "small_airport", + "name": "Lwafi Airport", + "latitude_deg": "-6.982929", + "longitude_deg": "30.894894", + "elevation_ft": "3600", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-20", + "municipality": "Lwafi", + "scheduled_service": "no" + }, + { + "id": "318786", + "ident": "TZ-0128", + "type": "small_airport", + "name": "Makwasa Airport", + "latitude_deg": "-6.817874", + "longitude_deg": "34.218918", + "elevation_ft": "4000", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-23", + "municipality": "Makwasa", + "scheduled_service": "no" + }, + { + "id": "318787", + "ident": "TZ-0129", + "type": "small_airport", + "name": "Masusu Airport", + "latitude_deg": "-2.272545", + "longitude_deg": "35.808636", + "elevation_ft": "4000", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-01", + "municipality": "Masusu", + "scheduled_service": "no" + }, + { + "id": "318788", + "ident": "TZ-0130", + "type": "small_airport", + "name": "Mikindani Airport", + "latitude_deg": "-10.256118", + "longitude_deg": "40.093869", + "elevation_ft": "136", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-17", + "municipality": "Mikindani", + "scheduled_service": "no" + }, + { + "id": "318789", + "ident": "TZ-0131", + "type": "small_airport", + "name": "Mlele Airport", + "latitude_deg": "-7.119408", + "longitude_deg": "31.839151", + "elevation_ft": "3500", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-20", + "municipality": "Mlele", + "scheduled_service": "no" + }, + { + "id": "318790", + "ident": "TZ-0132", + "type": "small_airport", + "name": "Mugumu Airport", + "latitude_deg": "-1.870455", + "longitude_deg": "34.645517", + "elevation_ft": "5172", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-13", + "municipality": "Mugumu", + "scheduled_service": "no" + }, + { + "id": "318791", + "ident": "TZ-0133", + "type": "small_airport", + "name": "Nkinga Airport", + "latitude_deg": "-4.425665", + "longitude_deg": "33.450677", + "elevation_ft": "4000", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-24", + "municipality": "Nkinga", + "scheduled_service": "no" + }, + { + "id": "318792", + "ident": "TZ-0134", + "type": "small_airport", + "name": "Nkoname Airport", + "latitude_deg": "-6.918093", + "longitude_deg": "34.871684", + "elevation_ft": "3600", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-23", + "municipality": "Nkoname", + "scheduled_service": "no" + }, + { + "id": "318793", + "ident": "TZ-0135", + "type": "small_airport", + "name": "Olemilei Airport", + "latitude_deg": "-2.40866", + "longitude_deg": "35.627164", + "elevation_ft": "6000", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-01", + "municipality": "Arash", + "scheduled_service": "no" + }, + { + "id": "318794", + "ident": "TZ-0136", + "type": "small_airport", + "name": "Sanzale Airport", + "latitude_deg": "-6.471723", + "longitude_deg": "38.880082", + "elevation_ft": "47", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-19", + "municipality": "Bagamoyo", + "scheduled_service": "no", + "gps_code": "HTXX" + }, + { + "id": "318795", + "ident": "TZ-0137", + "type": "small_airport", + "name": "Sikonge Airport", + "latitude_deg": "-5.627718", + "longitude_deg": "32.762082", + "elevation_ft": "3600", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-24", + "municipality": "Sikonge", + "scheduled_service": "no" + }, + { + "id": "318796", + "ident": "TZ-0138", + "type": "small_airport", + "name": "Kasense Airport", + "latitude_deg": "-5.784903", + "longitude_deg": "31.355212", + "elevation_ft": "3000", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-24", + "scheduled_service": "no", + "gps_code": "HTKN" + }, + { + "id": "318797", + "ident": "TZ-0139", + "type": "small_airport", + "name": "Mawemeru Airport", + "latitude_deg": "-3.111222", + "longitude_deg": "32.21536", + "elevation_ft": "4000", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-18", + "municipality": "Mawemeru", + "scheduled_service": "no" + }, + { + "id": "318870", + "ident": "TZ-0140", + "type": "small_airport", + "name": "Buckreef Airport", + "latitude_deg": "-3.095158", + "longitude_deg": "32.019562", + "elevation_ft": "4017", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-18", + "municipality": "Buseresere", + "scheduled_service": "no" + }, + { + "id": "318920", + "ident": "TZ-0141", + "type": "small_airport", + "name": "Stieglers Gorge Airport", + "latitude_deg": "-7.820084", + "longitude_deg": "37.87828", + "elevation_ft": "600", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-19", + "scheduled_service": "no" + }, + { + "id": "318921", + "ident": "TZ-0142", + "type": "small_airport", + "name": "Sumbazi Airport", + "latitude_deg": "-7.884957", + "longitude_deg": "37.678091", + "elevation_ft": "750", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-16", + "scheduled_service": "no" + }, + { + "id": "340237", + "ident": "TZ-0143", + "type": "closed", + "name": "Rushungi Airport", + "latitude_deg": "-9.43453", + "longitude_deg": "39.60582", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-12", + "municipality": "Rushungi", + "scheduled_service": "no" + }, + { + "id": "351484", + "ident": "TZ-0144", + "type": "small_airport", + "name": "Milambi Airport", + "latitude_deg": "-1.40561", + "longitude_deg": "30.74995", + "elevation_ft": "4279", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-05", + "municipality": "Milambi", + "scheduled_service": "no" + }, + { + "id": "42491", + "ident": "TZ-GIT", + "type": "small_airport", + "name": "Mchauru Airport", + "latitude_deg": "-2.813667", + "longitude_deg": "32.172472", + "elevation_ft": "3955", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-18", + "municipality": "Geita", + "scheduled_service": "no", + "gps_code": "HTRU", + "iata_code": "GIT" + }, + { + "id": "42492", + "ident": "TZ-LUY", + "type": "small_airport", + "name": "Lushoto Airport", + "latitude_deg": "-4.783259868621826", + "longitude_deg": "38.30419921875", + "elevation_ft": "5360", + "continent": "AF", + "iso_country": "TZ", + "iso_region": "TZ-25", + "municipality": "Lushoto", + "scheduled_service": "no", + "iata_code": "LUY" + }, + { + "id": "333231", + "ident": "TZO", + "type": "small_airport", + "name": "Tsimiroro Airport", + "latitude_deg": "-18.345064", + "longitude_deg": "45.015643", + "elevation_ft": "755", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-U", + "municipality": "Ankisatra", + "scheduled_service": "no", + "iata_code": "TZO" + }, + { + "id": "25215", + "ident": "U37", + "type": "small_airport", + "name": "Midway Airport", + "latitude_deg": "43.45819854736328", + "longitude_deg": "-112.80899810791016", + "elevation_ft": "5017", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Atomic City", + "scheduled_service": "no", + "gps_code": "U37", + "local_code": "U37" + }, + { + "id": "25216", + "ident": "U41", + "type": "small_airport", + "name": "Dubois Municipal Airport", + "latitude_deg": "44.162057", + "longitude_deg": "-112.220581", + "elevation_ft": "5123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Dubois", + "scheduled_service": "no", + "gps_code": "KU41", + "iata_code": "DBS", + "local_code": "U41" + }, + { + "id": "25217", + "ident": "U45", + "type": "small_airport", + "name": "Graham US Forest Service Airport", + "latitude_deg": "43.9552001953", + "longitude_deg": "-115.273002625", + "elevation_ft": "5726", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "U45", + "local_code": "U45" + }, + { + "id": "25218", + "ident": "U46", + "type": "small_airport", + "name": "Big Southern Butte Airport", + "latitude_deg": "43.429100036621094", + "longitude_deg": "-113.05899810791016", + "elevation_ft": "5073", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Atomic City", + "scheduled_service": "no", + "gps_code": "U46", + "local_code": "U46" + }, + { + "id": "25219", + "ident": "U48", + "type": "small_airport", + "name": "Coxs Well Airport", + "latitude_deg": "43.21799850463867", + "longitude_deg": "-113.22699737548828", + "elevation_ft": "5034", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Atomic City", + "scheduled_service": "no", + "gps_code": "U48", + "local_code": "U48" + }, + { + "id": "25220", + "ident": "U51", + "type": "small_airport", + "name": "Bancroft Municipal Airport", + "latitude_deg": "42.72079849243164", + "longitude_deg": "-111.86699676513672", + "elevation_ft": "5435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Bancroft", + "scheduled_service": "no", + "gps_code": "U51", + "local_code": "U51" + }, + { + "id": "25221", + "ident": "U53", + "type": "small_airport", + "name": "Henry's Lake Airport", + "latitude_deg": "44.634376", + "longitude_deg": "-111.345261", + "elevation_ft": "6596", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Island Park", + "scheduled_service": "no", + "local_code": "U53" + }, + { + "id": "25222", + "ident": "U54", + "type": "small_airport", + "name": "Bernard US Forest Service Airport", + "latitude_deg": "44.979598999", + "longitude_deg": "-114.73500061", + "elevation_ft": "3626", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Bernard", + "scheduled_service": "no", + "gps_code": "U54", + "local_code": "U54" + }, + { + "id": "25223", + "ident": "U60", + "type": "small_airport", + "name": "Big Creek Airport", + "latitude_deg": "45.133201599121094", + "longitude_deg": "-115.3219985961914", + "elevation_ft": "5743", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Big Creek", + "scheduled_service": "no", + "gps_code": "U60", + "local_code": "U60" + }, + { + "id": "25224", + "ident": "U61", + "type": "small_airport", + "name": "Twin Bridges Airport", + "latitude_deg": "43.943544", + "longitude_deg": "-114.110356", + "elevation_ft": "6893", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Ketchum", + "scheduled_service": "no", + "local_code": "U61" + }, + { + "id": "25225", + "ident": "U65", + "type": "small_airport", + "name": "Carey Airport", + "latitude_deg": "43.30820083618164", + "longitude_deg": "-113.93399810791016", + "elevation_ft": "4783", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Carey", + "scheduled_service": "no", + "gps_code": "U65", + "local_code": "U65" + }, + { + "id": "25226", + "ident": "U72", + "type": "small_airport", + "name": "Upper Loon Creek US Forest Service Airport", + "latitude_deg": "44.591598510699995", + "longitude_deg": "-114.822998047", + "elevation_ft": "5500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Challis", + "scheduled_service": "no", + "gps_code": "U72", + "local_code": "U72" + }, + { + "id": "25227", + "ident": "U74", + "type": "small_airport", + "name": "Crescent Valley Airport", + "latitude_deg": "40.41590118408203", + "longitude_deg": "-116.56300354003906", + "elevation_ft": "4787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Crescent Valley", + "scheduled_service": "no", + "gps_code": "U74", + "local_code": "U74" + }, + { + "id": "25228", + "ident": "U84", + "type": "small_airport", + "name": "Donald D. Coski Memorial Airport", + "latitude_deg": "44.72545623779297", + "longitude_deg": "-116.09123992919922", + "elevation_ft": "4860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Donnelly", + "scheduled_service": "no", + "gps_code": "U84", + "local_code": "U84" + }, + { + "id": "25229", + "ident": "U86", + "type": "small_airport", + "name": "Camas County Airport", + "latitude_deg": "43.341839", + "longitude_deg": "-114.798186", + "elevation_ft": "5058", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Fairfield", + "scheduled_service": "no", + "local_code": "U86" + }, + { + "id": "25230", + "ident": "U87", + "type": "small_airport", + "name": "Smiley Creek Airport", + "latitude_deg": "43.912209", + "longitude_deg": "-114.79622", + "elevation_ft": "7160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Ketchum", + "scheduled_service": "no", + "gps_code": "KU87", + "local_code": "U87" + }, + { + "id": "25231", + "ident": "U88", + "type": "small_airport", + "name": "Garden Valley Airport", + "latitude_deg": "44.066863", + "longitude_deg": "-115.930903", + "elevation_ft": "3177", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Garden Valley", + "scheduled_service": "no", + "gps_code": "KU88", + "local_code": "U88" + }, + { + "id": "25232", + "ident": "U91", + "type": "small_airport", + "name": "Grasmere Airport", + "latitude_deg": "42.373295", + "longitude_deg": "-115.879525", + "elevation_ft": "5134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Grasmere", + "scheduled_service": "no", + "gps_code": "KU91", + "local_code": "U91" + }, + { + "id": "25233", + "ident": "U92", + "type": "small_airport", + "name": "Antelope Valley Airport", + "latitude_deg": "43.677068", + "longitude_deg": "-113.602962", + "elevation_ft": "6180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Grouse", + "scheduled_service": "no", + "gps_code": "KU92", + "local_code": "U92" + }, + { + "id": "25234", + "ident": "U93", + "type": "small_airport", + "name": "Magic Reservoir Airport", + "latitude_deg": "43.28239822387695", + "longitude_deg": "-114.3949966430664", + "elevation_ft": "4844", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Hailey", + "scheduled_service": "no", + "gps_code": "U93", + "local_code": "U93" + }, + { + "id": "25235", + "ident": "U94", + "type": "small_airport", + "name": "Hazelton Municipal Airport", + "latitude_deg": "42.576312", + "longitude_deg": "-114.135557", + "elevation_ft": "4172", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Hazelton", + "scheduled_service": "no", + "gps_code": "KU94", + "local_code": "U94" + }, + { + "id": "25236", + "ident": "U97", + "type": "small_airport", + "name": "Howe Airport", + "latitude_deg": "43.851378", + "longitude_deg": "-113.057893", + "elevation_ft": "4930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Howe", + "scheduled_service": "no", + "gps_code": "KU97", + "local_code": "U97" + }, + { + "id": "25237", + "ident": "U98", + "type": "small_airport", + "name": "Idaho City US Forest Service Airport", + "latitude_deg": "43.823676", + "longitude_deg": "-115.844573", + "elevation_ft": "3920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Idaho City", + "scheduled_service": "no", + "gps_code": "KU98", + "local_code": "U98" + }, + { + "id": "25238", + "ident": "U99", + "type": "small_airport", + "name": "Laidlaw Corrals Airport", + "latitude_deg": "43.037027", + "longitude_deg": "-113.733737", + "elevation_ft": "4427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Paul", + "scheduled_service": "no", + "gps_code": "KU99", + "local_code": "U99" + }, + { + "id": "34956", + "ident": "UA-0001", + "type": "closed", + "name": "Borodyanka Air Base", + "latitude_deg": "50.6633", + "longitude_deg": "29.8933", + "elevation_ft": "463", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "municipality": "Borodyanka", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Borodianka_%28air_base%29", + "keywords": "Borodianka Air Base, Аэродром Бородянка" + }, + { + "id": "34958", + "ident": "UA-0002", + "type": "small_airport", + "name": "Brody Air Base", + "latitude_deg": "50.130001068115234", + "longitude_deg": "25.170000076293945", + "elevation_ft": "787", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-46", + "municipality": "Brody", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brody_%28air_base%29", + "keywords": "Brody Air Base, Аэродром Броды, Аэродром Броди" + }, + { + "id": "34964", + "ident": "UA-0003", + "type": "small_airport", + "name": "Chernihiv Air Base", + "latitude_deg": "51.547537", + "longitude_deg": "31.309374", + "elevation_ft": "446", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-74", + "municipality": "Chernihiv", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chernihiv_%28air_base%29", + "keywords": "Chernigov Air Base" + }, + { + "id": "34966", + "ident": "UA-0004", + "type": "closed", + "name": "Pustogorod Air Base", + "latitude_deg": "51.849998474121094", + "longitude_deg": "34.04999923706055", + "elevation_ft": "636", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-59", + "municipality": "Hlukhiv", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chervonoye_Pustogorod", + "keywords": "Chervonoye Air Base, Chervonoe Air Base, Аэродром Червоное, Аэродром Пустогород" + }, + { + "id": "43013", + "ident": "UA-0005", + "type": "medium_airport", + "name": "Nizhyn Air Base", + "latitude_deg": "51.088535", + "longitude_deg": "31.870995", + "elevation_ft": "440", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-74", + "municipality": "Nizhyn", + "scheduled_service": "no", + "gps_code": "UKRN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nizhyn_(air_base)", + "keywords": "Nizhin Air Base, Nezhin Air Base, Аэродром Нежин" + }, + { + "id": "43869", + "ident": "UA-0006", + "type": "closed", + "name": "Kornych Air Base", + "latitude_deg": "48.52899932861328", + "longitude_deg": "25.125", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-26", + "scheduled_service": "no", + "keywords": "Kornich Air Base, Аэродром Корныч" + }, + { + "id": "43870", + "ident": "UA-0007", + "type": "closed", + "name": "Kolomiya Airport", + "latitude_deg": "48.55099868774414", + "longitude_deg": "25.04199981689453", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-26", + "municipality": "Kolomiya", + "scheduled_service": "no", + "keywords": "Kolomyya Airport, Аэропорт Коломыя, Аэропорт Коломия" + }, + { + "id": "43871", + "ident": "UA-0008", + "type": "closed", + "name": "Chortkiv Air Base", + "latitude_deg": "48.97800064086914", + "longitude_deg": "25.742000579833984", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-61", + "municipality": "Chortkiv", + "scheduled_service": "no", + "keywords": "Chortkov Air Base, Chyortkov Air Base, Аэродром Чортков, Аэродром Чёртков" + }, + { + "id": "44600", + "ident": "UA-0009", + "type": "small_airport", + "name": "Gora Klementyeva Airfield", + "latitude_deg": "45.012616", + "longitude_deg": "35.247767", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Otvazhnoe", + "scheduled_service": "no", + "keywords": "Uzun-Syrt Airfield, Аэродром Гора Клементьева, Аэродром Узун-Сырт" + }, + { + "id": "44294", + "ident": "UA-0010", + "type": "medium_airport", + "name": "Oktyabrskoe Air Base", + "latitude_deg": "45.31999969482422", + "longitude_deg": "34.099998474121094", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Oktyabrskoe", + "scheduled_service": "no", + "keywords": "Oktyabrskoye Air Base, Аэродром Октябрьское" + }, + { + "id": "44295", + "ident": "UA-0011", + "type": "closed", + "name": "Karankut Air Base", + "latitude_deg": "45.577999", + "longitude_deg": "34.282001", + "elevation_ft": "52", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Volnoye", + "scheduled_service": "no", + "keywords": "Krasnogvardeyskoe Air Base, Krasnogvardeyskoye Air Base, Аэродром Каранкут, Аэродром Красногвардейское" + }, + { + "id": "44297", + "ident": "UA-0012", + "type": "medium_airport", + "name": "Kirovskoe Air Base", + "latitude_deg": "45.16699981689453", + "longitude_deg": "35.18299865722656", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Kirovskoe", + "scheduled_service": "no", + "keywords": "Kirovskoye Air Base, Аэродром Кировское" + }, + { + "id": "44298", + "ident": "UA-0013", + "type": "small_airport", + "name": "Risovoye Airfield", + "latitude_deg": "45.995499", + "longitude_deg": "33.681017", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Krasnoperekopsk", + "scheduled_service": "no", + "keywords": "Risovoe Airfield, Аэродром Рисовое" + }, + { + "id": "44305", + "ident": "UA-0014", + "type": "closed", + "name": "Donuzlav Air Base", + "latitude_deg": "45.325884", + "longitude_deg": "33.050407", + "elevation_ft": "37", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Mirnyi", + "scheduled_service": "no", + "keywords": "Аэродром Донузлав" + }, + { + "id": "44306", + "ident": "UA-0015", + "type": "closed", + "name": "Perekop Airfield", + "latitude_deg": "46.15800094604492", + "longitude_deg": "33.71699905395508", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Armyansk", + "scheduled_service": "no", + "keywords": "Аэродром Перекоп" + }, + { + "id": "44307", + "ident": "UA-0016", + "type": "small_airport", + "name": "Yukharina Balka Airfield", + "latitude_deg": "44.5509986877", + "longitude_deg": "33.4879989624", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-40", + "municipality": "Sevastopol", + "scheduled_service": "no", + "keywords": "Аэродром Юхарина Балка" + }, + { + "id": "44308", + "ident": "UA-0017", + "type": "closed", + "name": "Genichesk Air Base", + "latitude_deg": "46.209", + "longitude_deg": "34.764999", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-65", + "municipality": "Genichesk", + "scheduled_service": "no", + "keywords": "Аэродром Геническ" + }, + { + "id": "44309", + "ident": "UA-0018", + "type": "small_airport", + "name": "Sevastopol Kozachya Bay Aerodrome / Khersones Air Base", + "latitude_deg": "44.578466", + "longitude_deg": "33.395462", + "elevation_ft": "46", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-40", + "municipality": "Sevastopol", + "scheduled_service": "no", + "keywords": "Hersones Air Base, Аэродром Херсонес, Khersones Air Base, Kozachya Bukhta" + }, + { + "id": "44310", + "ident": "UA-0019", + "type": "closed", + "name": "Bagerovo Air Base", + "latitude_deg": "45.407001", + "longitude_deg": "36.244999", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Bagerovo", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baherove_(air_base)", + "keywords": "Аэродром Багерово, Bagarovo, Baherove" + }, + { + "id": "44311", + "ident": "UA-0020", + "type": "medium_airport", + "name": "Melitopol Air Base", + "latitude_deg": "46.880001", + "longitude_deg": "35.305", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-23", + "municipality": "Melitopol", + "scheduled_service": "no", + "gps_code": "UKDM", + "keywords": "Аэродром Мелитополь" + }, + { + "id": "44312", + "ident": "UA-0021", + "type": "small_airport", + "name": "Skadovsk Airfield", + "latitude_deg": "46.131888", + "longitude_deg": "32.902506", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-65", + "municipality": "Skadovsk", + "scheduled_service": "no", + "gps_code": "UKOS", + "keywords": "Аэродром Скадовск" + }, + { + "id": "44313", + "ident": "UA-0022", + "type": "medium_airport", + "name": "Kacha Air Base", + "latitude_deg": "44.779764", + "longitude_deg": "33.572245", + "elevation_ft": "403", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Kacha", + "scheduled_service": "no", + "gps_code": "UKFA", + "wikipedia_link": "https://en.m.wikipedia.org/wiki/Kacha,_Sevastopol#Military_outpost", + "keywords": "Аэродром Кача, URFA, XRFA" + }, + { + "id": "44314", + "ident": "UA-0023", + "type": "closed", + "name": "Chkalovskiy Airfield", + "latitude_deg": "45.073002", + "longitude_deg": "35.202999", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Pervomaiske", + "scheduled_service": "no", + "keywords": "Chkalovsky Airfield, Аэродром Чкаловский" + }, + { + "id": "44332", + "ident": "UA-0024", + "type": "closed", + "name": "Askaniya-Nova Airport", + "latitude_deg": "46.419998", + "longitude_deg": "33.724998", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-65", + "municipality": "Khrestivka", + "scheduled_service": "no", + "keywords": "Askania-Nova Airport, Аэропорт Аскания-Нова" + }, + { + "id": "44343", + "ident": "UA-0025", + "type": "medium_airport", + "name": "Bila Tserkva Air Base", + "latitude_deg": "49.794998", + "longitude_deg": "30.030001", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "municipality": "Bila Tserkva", + "scheduled_service": "no", + "keywords": "Belaya Tserkov Airfield, Аэродром Белая Церковь" + }, + { + "id": "44368", + "ident": "UA-0026", + "type": "closed", + "name": "Blagoyevo Air Base", + "latitude_deg": "46.89500045776367", + "longitude_deg": "30.700000762939453", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "municipality": "Petrovka", + "scheduled_service": "no", + "keywords": "Blagoevo Air Base, Buyalik Air Base, Buyalyk Air Base, Аэродром Благоево, Аэродром Буялык" + }, + { + "id": "44369", + "ident": "UA-0027", + "type": "closed", + "name": "Bliznyuki Air Base", + "latitude_deg": "48.876999", + "longitude_deg": "36.549999", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-63", + "municipality": "Lozovaya", + "scheduled_service": "no", + "gps_code": "UKHB", + "keywords": "Bliznetsy Air Base, Аэродром Близнюки, Аэродром Близнецы" + }, + { + "id": "44376", + "ident": "UA-0028", + "type": "medium_airport", + "name": "Zhovtneve Air Base", + "latitude_deg": "45.63999938964844", + "longitude_deg": "28.670000076293945", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "municipality": "Bolgrad", + "scheduled_service": "no", + "keywords": "Zhovtnevoye Air Base, Zhovtnevoe Air Base, Bolgrad Air Base, Аэродром Жовтневе, Аэродром Жовтневое, Аэродром Болград" + }, + { + "id": "44377", + "ident": "UA-0029", + "type": "closed", + "name": "Bolshoy Tokmak Air Base", + "latitude_deg": "47.285459", + "longitude_deg": "35.707855", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-23", + "municipality": "Tokmak", + "scheduled_service": "no", + "keywords": "Bolshoi Tokmak Air Base, Аэродром Большой Токмак" + }, + { + "id": "44393", + "ident": "UA-0030", + "type": "closed", + "name": "Luzhani Airfield", + "latitude_deg": "48.38399887084961", + "longitude_deg": "25.767000198364258", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-77", + "municipality": "Luzhani", + "scheduled_service": "no", + "keywords": "Luzhany Airfield, Chernivtsi Northwest Airfield, Chernovtsy Northwest Airfield, Аэродром Лужаны, Аэродром Черновцы Северозападные" + }, + { + "id": "44394", + "ident": "UA-0031", + "type": "heliport", + "name": "Oleksandriya Air Base", + "latitude_deg": "48.68000030517578", + "longitude_deg": "33.18000030517578", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-35", + "municipality": "Oleksandriya", + "scheduled_service": "no", + "keywords": "Aleksandriya Air Base, Alexandriya Air Base, Аэродром Александрия, Аэродром Олександрия, Аэродром Олександрiя" + }, + { + "id": "44395", + "ident": "UA-0032", + "type": "small_airport", + "name": "Artsyz Air Base", + "latitude_deg": "45.945829", + "longitude_deg": "29.376832", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "municipality": "Artsyz", + "scheduled_service": "no", + "gps_code": "UKOA", + "keywords": "Chervonoglinskoye Airfield, Chervonoglinskoe Airfield, Chervonoglinskaya Airfield, Аэродром Арциз, Аэродром Червоноглинское, Аэродром Червоноглинская" + }, + { + "id": "44396", + "ident": "UA-0033", + "type": "closed", + "name": "Kiliya Airport", + "latitude_deg": "45.458866", + "longitude_deg": "29.287591", + "elevation_ft": "2", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "municipality": "Kiliya", + "scheduled_service": "no", + "keywords": "Аэропорт Килия" + }, + { + "id": "44397", + "ident": "UA-0034", + "type": "small_airport", + "name": "Lymanske Airfield", + "latitude_deg": "46.668998", + "longitude_deg": "30.011105", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "municipality": "Lymanske", + "scheduled_service": "no", + "keywords": "Limanske, Limanskoye Air Base, Limanskoe Air Base, Аэродром Лиманское, Аэродром Лиманське" + }, + { + "id": "44400", + "ident": "UA-0035", + "type": "closed", + "name": "Chоrnobil Heliport", + "latitude_deg": "51.2859992981", + "longitude_deg": "30.198999404900004", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "municipality": "Chоrnobil", + "scheduled_service": "no", + "keywords": "Chernobyl Heliport, Вертодром Чорнобиль, Вертодром Чернобыль" + }, + { + "id": "44402", + "ident": "UA-0036", + "type": "closed", + "name": "Dmitrievka Airfield", + "latitude_deg": "48.95000076293945", + "longitude_deg": "39.1150016784668", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-09", + "municipality": "Novoaydar", + "scheduled_service": "no", + "keywords": "Novoaydar Airfield, Аэродром Дмитриевка, Аэродром Новоайдар" + }, + { + "id": "44403", + "ident": "UA-0037", + "type": "small_airport", + "name": "Dobrianka Airfield", + "latitude_deg": "52.082491", + "longitude_deg": "31.121171", + "elevation_ft": "449", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-74", + "municipality": "Dobrianka", + "scheduled_service": "no", + "keywords": "Аэродром Добрянка, Dobryanka" + }, + { + "id": "44436", + "ident": "UA-0038", + "type": "small_airport", + "name": "Kiev Chaika", + "latitude_deg": "50.428696", + "longitude_deg": "30.29854", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "municipality": "Kiev", + "scheduled_service": "no", + "gps_code": "UKKJ", + "wikipedia_link": "https://en.wikipedia.org/Kiev_Chaika_Airfield" + }, + { + "id": "44437", + "ident": "UA-0039", + "type": "small_airport", + "name": "Tsuniv Airfield", + "latitude_deg": "49.831848", + "longitude_deg": "23.690052", + "elevation_ft": "869", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-46", + "municipality": "Gorodok", + "scheduled_service": "no", + "gps_code": "UKGC" + }, + { + "id": "44601", + "ident": "UA-0040", + "type": "closed", + "name": "Sovyetskiy Air Base", + "latitude_deg": "45.35499954223633", + "longitude_deg": "34.939998626708984", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Sovyetskiy", + "scheduled_service": "no", + "keywords": "Sovetskiy Air Base, Sovyetsky Air Base, Sovietsky Air Base, Аэродром Советский" + }, + { + "id": "44602", + "ident": "UA-0041", + "type": "closed", + "name": "Yuzhniy Airfield", + "latitude_deg": "44.5800018311", + "longitude_deg": "33.4959983826", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-40", + "municipality": "Sevastopol", + "scheduled_service": "no", + "keywords": "Molochka Airfield, Аэродром Южный, Аэродром Молочка" + }, + { + "id": "44625", + "ident": "UA-0042", + "type": "small_airport", + "name": "Voznesensk Air Base", + "latitude_deg": "47.509998", + "longitude_deg": "31.254999", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-48", + "municipality": "Voznesensk", + "scheduled_service": "no", + "gps_code": "UKOW", + "keywords": "Аэродром Вознесенск" + }, + { + "id": "44676", + "ident": "UA-0043", + "type": "heliport", + "name": "State House #10 (M S Gorbachev Dacha) (Foros) Heliport", + "latitude_deg": "44.391897", + "longitude_deg": "33.753988", + "elevation_ft": "168", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Foros", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Форос" + }, + { + "id": "44677", + "ident": "UA-0044", + "type": "heliport", + "name": "Sevastopol Naval Institute Helipad", + "latitude_deg": "44.61029815673828", + "longitude_deg": "33.47949981689453", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-40", + "municipality": "Sevastopol", + "scheduled_service": "no", + "keywords": "Sevastopol Navy Institute Helipad" + }, + { + "id": "44680", + "ident": "UA-0045", + "type": "closed", + "name": "Izyum Air Base", + "latitude_deg": "49.2599983215", + "longitude_deg": "37.154998779299994", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-63", + "municipality": "Ivanivka", + "scheduled_service": "no", + "keywords": "Levkovka Air Base, Аэродром Изюм, Аэродром Левковка" + }, + { + "id": "44684", + "ident": "UA-0046", + "type": "small_airport", + "name": "Kalynivka Air Base", + "latitude_deg": "49.485372", + "longitude_deg": "28.539097", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-05", + "municipality": "Kalynivka", + "scheduled_service": "no", + "keywords": "Kalinovka Air Base, Аэродром Калиновка" + }, + { + "id": "45170", + "ident": "UA-0047", + "type": "closed", + "name": "Dolgintsevo Air Base", + "latitude_deg": "47.887", + "longitude_deg": "33.533", + "elevation_ft": "341", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-12", + "municipality": "Kryvyi Rih", + "scheduled_service": "no", + "gps_code": "UKDJ", + "keywords": "УКДЙ, Аэродром Долгинцево" + }, + { + "id": "45177", + "ident": "UA-0048", + "type": "small_airport", + "name": "Poltava Air Base", + "latitude_deg": "49.627", + "longitude_deg": "34.487", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-53", + "municipality": "Poltava", + "scheduled_service": "no", + "keywords": "Аэродром Полтава" + }, + { + "id": "45178", + "ident": "UA-0049", + "type": "small_airport", + "name": "Myrhorod Air Base", + "latitude_deg": "49.932", + "longitude_deg": "33.641", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-53", + "municipality": "Myrhorod", + "scheduled_service": "no", + "iata_code": "MXR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Myrhorod_Air_Base", + "keywords": "Mirgorod Air Base, Аэродром Миргород" + }, + { + "id": "45179", + "ident": "UA-0050", + "type": "small_airport", + "name": "Kakhnovka Airfield", + "latitude_deg": "49.136799", + "longitude_deg": "33.477893", + "elevation_ft": "266", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-53", + "municipality": "Kremenchuk", + "scheduled_service": "no", + "gps_code": "UKHK", + "iata_code": "KHU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kremenchuk_Airport", + "keywords": "Аэродром Кахновка, Velyka Kokhnivka" + }, + { + "id": "45180", + "ident": "UA-0051", + "type": "small_airport", + "name": "Lokhvitsya Airfield", + "latitude_deg": "50.346", + "longitude_deg": "33.296", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-53", + "municipality": "Lokhvitsya", + "scheduled_service": "no", + "local_code": "ZD9Y", + "keywords": "Аэропорт Лохвица" + }, + { + "id": "45181", + "ident": "UA-0052", + "type": "small_airport", + "name": "Korotych Airfield", + "latitude_deg": "49.971", + "longitude_deg": "36.011", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-63", + "municipality": "Lyubotin", + "scheduled_service": "no", + "home_link": "http://www.aeroclub.net.ua/", + "keywords": "Korotich Airfield, Аэродром Коротыч, Аэродром Коротич" + }, + { + "id": "45182", + "ident": "UA-0053", + "type": "closed", + "name": "Palmira Airfield", + "latitude_deg": "49.763", + "longitude_deg": "32.123", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-71", + "municipality": "Zolotonosha", + "scheduled_service": "no", + "keywords": "Аэродром Пальмира" + }, + { + "id": "46120", + "ident": "UA-0054", + "type": "closed", + "name": "Kupyansk Air Base", + "latitude_deg": "49.684", + "longitude_deg": "37.715", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-63", + "municipality": "Kupyansk", + "scheduled_service": "no", + "keywords": "Аэродром Купянск" + }, + { + "id": "46263", + "ident": "UA-0055", + "type": "small_airport", + "name": "Shiroke Airfield", + "latitude_deg": "47.9188730788", + "longitude_deg": "34.9574661255", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-23", + "municipality": "Zaporizhia", + "scheduled_service": "no", + "keywords": "Shirokoye Airfield, Shirokoe Airfield, Аеродром Широке, Аэродром Широкое" + }, + { + "id": "46264", + "ident": "UA-0056", + "type": "small_airport", + "name": "Mayske Airfield", + "latitude_deg": "48.491944", + "longitude_deg": "35.625933", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-12", + "municipality": "Mayske", + "scheduled_service": "no", + "home_link": "http://www.avia-soyuz.com.ua/", + "keywords": "Mayskoye Airfield, Mayskoe Airfield, Аеродром Майське, Аэродром Майское" + }, + { + "id": "46265", + "ident": "UA-0057", + "type": "small_airport", + "name": "Mospyne Airfield", + "latitude_deg": "47.841620693900005", + "longitude_deg": "38.100843429600005", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-14", + "municipality": "Mospyne", + "scheduled_service": "no", + "keywords": "Mospine Airfield, Mospino Airfield, Аеродром Моспине, Аэродром Моспино" + }, + { + "id": "46266", + "ident": "UA-0058", + "type": "small_airport", + "name": "Yenakiyeve Airfield", + "latitude_deg": "48.179565", + "longitude_deg": "38.201866", + "elevation_ft": "727", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-14", + "municipality": "Yenakiyeve", + "scheduled_service": "no", + "keywords": "Yenakieve Airfield, Yenakiyevo Airfield, Enakievo Airfield, Аеродром Енакiеве, Аэродром Енакиево, DOSAAF Airfield" + }, + { + "id": "46267", + "ident": "UA-0059", + "type": "small_airport", + "name": "Valeryanivka Airfield", + "latitude_deg": "47.6288427809", + "longitude_deg": "37.399778366099994", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-14", + "municipality": "Volnovakha", + "scheduled_service": "no", + "home_link": "http://sky.dn.ua/", + "keywords": "Valeryanovka Airfield, Аеродром Валер'янівка, Аэродром Валерьяновка" + }, + { + "id": "46268", + "ident": "UA-0060", + "type": "closed", + "name": "Gostra Mogila Airfield", + "latitude_deg": "48.532282", + "longitude_deg": "39.390879", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-09", + "municipality": "Luhansk", + "scheduled_service": "no", + "keywords": "Ostraya Mogila Airfield, Luhansk East Airfield, Lugansk Vostochny Airfield, Аеродром Гостра Могила, Аэродром Острая Могила, Аэродром Луганск Восточный" + }, + { + "id": "46269", + "ident": "UA-0061", + "type": "closed", + "name": "Dalnik Airfield", + "latitude_deg": "46.493108", + "longitude_deg": "30.618859", + "elevation_ft": "213", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "municipality": "Odessa", + "scheduled_service": "no", + "keywords": "Zastava Airfield, Аэродром Дальник, Аэродром Застава" + }, + { + "id": "46270", + "ident": "UA-0062", + "type": "small_airport", + "name": "Liman Airfield", + "latitude_deg": "46.57851", + "longitude_deg": "30.703053", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "municipality": "Naberezhne", + "scheduled_service": "no", + "gps_code": "UKOE", + "home_link": "http://www.airclub.odessa.ua/", + "keywords": "Gidroport Airfield, Аэродром Лиман, Аэродром Гидропорт" + }, + { + "id": "46271", + "ident": "UA-0063", + "type": "heliport", + "name": "Kruglaya Bukhta Heliport", + "latitude_deg": "44.6014149349", + "longitude_deg": "33.4506440163", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-40", + "municipality": "Sevastopol", + "scheduled_service": "no", + "keywords": "Sevastopolsky Aviaremontny Zavod Heliport, Sevastopol Aircraft Repair Plant Heliport, Вертодром Круглая Бухта" + }, + { + "id": "46272", + "ident": "UA-0064", + "type": "heliport", + "name": "Yalta Heliport", + "latitude_deg": "44.485596", + "longitude_deg": "34.13744", + "elevation_ft": "430", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Yalta", + "scheduled_service": "no", + "keywords": "Вертодром Ялта" + }, + { + "id": "46273", + "ident": "UA-0065", + "type": "heliport", + "name": "Respect Hall Helipad", + "latitude_deg": "44.432273", + "longitude_deg": "34.081035", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Yalta", + "scheduled_service": "no", + "keywords": "Вертолётная площадка Респект Холл" + }, + { + "id": "46274", + "ident": "UA-0066", + "type": "closed", + "name": "Ochakiv Air Base", + "latitude_deg": "46.647786", + "longitude_deg": "31.553764", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-48", + "municipality": "Ochakiv", + "scheduled_service": "no", + "keywords": "Ochakov Air Base, Аеродром Очакiв, Аэродром Очаков" + }, + { + "id": "46365", + "ident": "UA-0067", + "type": "small_airport", + "name": "Kanatove Air Base", + "latitude_deg": "48.561364587499995", + "longitude_deg": "32.3872071505", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-35", + "municipality": "Kirovohrad", + "scheduled_service": "no", + "keywords": "Kanatovo Air Base, Аеродром Канатове, Аэродром Канатово" + }, + { + "id": "46366", + "ident": "UA-0068", + "type": "closed", + "name": "Mala Vyska Airfield", + "latitude_deg": "48.632", + "longitude_deg": "31.616", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-35", + "municipality": "Mala Vyska", + "scheduled_service": "no", + "keywords": "Malaya Viska Airfield, Аеродром Мала Виска, Аэродром Малая Виска" + }, + { + "id": "46367", + "ident": "UA-0069", + "type": "closed", + "name": "Uman Air Base", + "latitude_deg": "48.79403", + "longitude_deg": "30.208197", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-71", + "municipality": "Uman", + "scheduled_service": "no", + "gps_code": "UKKX", + "keywords": "Rodnikivka Airfield, Rodnikovka Airfield, Аеродром Умань, Аеродром Родникiвка, Аэродром Родниковка" + }, + { + "id": "46368", + "ident": "UA-0070", + "type": "small_airport", + "name": "Kamyanka Airfield", + "latitude_deg": "48.5525520601", + "longitude_deg": "35.0172901154", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-12", + "municipality": "Dnipropetrovsk", + "scheduled_service": "no", + "keywords": "Kamenka Airfield, Аеродром Кам'янка, Аэродром Каменка" + }, + { + "id": "46369", + "ident": "UA-0071", + "type": "closed", + "name": "Zhovti Vody Airstrip", + "latitude_deg": "48.350502506", + "longitude_deg": "33.444271087599994", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-12", + "municipality": "Zhovti Vody", + "scheduled_service": "no", + "keywords": "Zholtyye Vody Airstrip, ЗПС Жовті Води, ВПП Жёлтые Воды, ВПП Желтые Воды" + }, + { + "id": "46370", + "ident": "UA-0072", + "type": "closed", + "name": "Volodimirivka Airstrip", + "latitude_deg": "48.2840353492", + "longitude_deg": "33.4489488602", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-12", + "municipality": "Zhovti Vody", + "scheduled_service": "no", + "keywords": "ЗПС Володимирівка, ВПП Владимировка" + }, + { + "id": "46582", + "ident": "UA-0073", + "type": "heliport", + "name": "Hydropark", + "latitude_deg": "50.4580555556", + "longitude_deg": "30.5683333333", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-30", + "scheduled_service": "no" + }, + { + "id": "46584", + "ident": "UA-0074", + "type": "heliport", + "name": "Mariinsky park helipad", + "latitude_deg": "50.4486111111", + "longitude_deg": "30.545", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-30", + "scheduled_service": "no", + "keywords": "Ukraine president helipad, Mariinsky helipad" + }, + { + "id": "315690", + "ident": "UA-0075", + "type": "small_airport", + "name": "Zhalizhnia", + "latitude_deg": "50.4734613", + "longitude_deg": "24.4743705", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-46", + "scheduled_service": "no" + }, + { + "id": "315692", + "ident": "UA-0076", + "type": "small_airport", + "name": "Turynka", + "latitude_deg": "50.1205511", + "longitude_deg": "24.035789", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-46", + "scheduled_service": "no" + }, + { + "id": "315925", + "ident": "UA-0077", + "type": "closed", + "name": "Aerodrom Krupske", + "latitude_deg": "49.451556", + "longitude_deg": "24.043866", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-46", + "scheduled_service": "no" + }, + { + "id": "316279", + "ident": "UA-0078", + "type": "small_airport", + "name": "Chervonoarmiis'ke Airstrip", + "latitude_deg": "45.791888", + "longitude_deg": "28.72434", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "municipality": "Kubei", + "scheduled_service": "no" + }, + { + "id": "316280", + "ident": "UA-0079", + "type": "small_airport", + "name": "Andrushivka", + "latitude_deg": "50.0193428", + "longitude_deg": "28.9912024", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-18", + "scheduled_service": "no" + }, + { + "id": "316330", + "ident": "UA-0080", + "type": "closed", + "name": "Narodychi", + "latitude_deg": "51.2312512", + "longitude_deg": "29.0707288", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-18", + "scheduled_service": "no" + }, + { + "id": "316377", + "ident": "UA-0081", + "type": "small_airport", + "name": "Tal'ne", + "latitude_deg": "48.8715407", + "longitude_deg": "30.6593031", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-71", + "scheduled_service": "no" + }, + { + "id": "316378", + "ident": "UA-0082", + "type": "small_airport", + "name": "Vinnytsia Aircraft Sports Club - Sutysky Airport", + "latitude_deg": "49.066667", + "longitude_deg": "28.44166", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-05", + "municipality": "Sutysky", + "scheduled_service": "no" + }, + { + "id": "316429", + "ident": "UA-0083", + "type": "small_airport", + "name": "Filiutka", + "latitude_deg": "49.335903", + "longitude_deg": "29.270067", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-05", + "scheduled_service": "no" + }, + { + "id": "316454", + "ident": "UA-0084", + "type": "closed", + "name": "Mykolaivka-Novorosiis'ka Airstrip", + "latitude_deg": "46.130858", + "longitude_deg": "29.874125", + "elevation_ft": "269", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "municipality": "Mykolaivka-Novorosiis'ka", + "scheduled_service": "no" + }, + { + "id": "317424", + "ident": "UA-0085", + "type": "small_airport", + "name": "Iziaslav", + "latitude_deg": "50.1196431", + "longitude_deg": "26.8681069", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-68", + "scheduled_service": "no" + }, + { + "id": "318220", + "ident": "UA-0086", + "type": "small_airport", + "name": "Pohrebyshche", + "latitude_deg": "49.4943236", + "longitude_deg": "29.2417992", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-05", + "municipality": "Pohrebyshche", + "scheduled_service": "no" + }, + { + "id": "320475", + "ident": "UA-0087", + "type": "closed", + "name": "Krasni Okny Airfield", + "latitude_deg": "47.549189", + "longitude_deg": "29.428682", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "municipality": "Okny", + "scheduled_service": "no" + }, + { + "id": "320485", + "ident": "UA-0088", + "type": "small_airport", + "name": "Chervonobirka Airstrip", + "latitude_deg": "50.588009", + "longitude_deg": "29.264402", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-18", + "municipality": "Krasnobirka", + "scheduled_service": "no" + }, + { + "id": "320486", + "ident": "UA-0089", + "type": "small_airport", + "name": "Shevchenkove Airstrip", + "latitude_deg": "50.876703", + "longitude_deg": "29.071036", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-18", + "municipality": "Shevchenkove", + "scheduled_service": "no" + }, + { + "id": "320502", + "ident": "UA-0090", + "type": "small_airport", + "name": "Korostelivka Airstrip", + "latitude_deg": "50.557511", + "longitude_deg": "28.781421", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-18", + "municipality": "Korostelivka", + "scheduled_service": "no" + }, + { + "id": "320590", + "ident": "UA-0091", + "type": "small_airport", + "name": "Lidavo Airstrip", + "latitude_deg": "50.4681472", + "longitude_deg": "26.2177308", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-19", + "municipality": "Lidavo", + "scheduled_service": "no" + }, + { + "id": "320731", + "ident": "UA-0092", + "type": "small_airport", + "name": "Kryzhopil Airstrip", + "latitude_deg": "48.35874", + "longitude_deg": "28.860397", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-05", + "municipality": "Holubeche", + "scheduled_service": "no" + }, + { + "id": "320732", + "ident": "UA-0093", + "type": "closed", + "name": "Pishchanka Airstrip", + "latitude_deg": "48.200516", + "longitude_deg": "28.863063", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-05", + "municipality": "Pishchanka", + "scheduled_service": "no" + }, + { + "id": "320733", + "ident": "UA-0094", + "type": "small_airport", + "name": "Smodna Airfield", + "latitude_deg": "48.306675", + "longitude_deg": "25.14064", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-26", + "municipality": "Smodna", + "scheduled_service": "no" + }, + { + "id": "320856", + "ident": "UA-0095", + "type": "small_airport", + "name": "Turiisk Airfield", + "latitude_deg": "51.021679", + "longitude_deg": "24.618763", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-07", + "municipality": "Radovychi", + "scheduled_service": "no" + }, + { + "id": "321033", + "ident": "UA-0096", + "type": "small_airport", + "name": "Frunzivka Airstrip", + "latitude_deg": "47.3313702", + "longitude_deg": "29.7908674", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "scheduled_service": "no" + }, + { + "id": "321103", + "ident": "UA-0097", + "type": "small_airport", + "name": "Troits'ke Airstrip", + "latitude_deg": "47.6693733", + "longitude_deg": "30.2982862", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "municipality": "Troits'ke", + "scheduled_service": "no" + }, + { + "id": "321106", + "ident": "UA-0098", + "type": "small_airport", + "name": "Zabroshennyy aerodrom", + "latitude_deg": "49.532465", + "longitude_deg": "29.8864455", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "scheduled_service": "no", + "keywords": "Volodarka" + }, + { + "id": "321182", + "ident": "UA-0099", + "type": "small_airport", + "name": "Kremydivka Airfield", + "latitude_deg": "46.758049", + "longitude_deg": "30.792846", + "elevation_ft": "250", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "municipality": "Kremydivka", + "scheduled_service": "no" + }, + { + "id": "321183", + "ident": "UA-0100", + "type": "small_airport", + "name": "Ksaverivka Airfield", + "latitude_deg": "50.005647", + "longitude_deg": "30.197924", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "scheduled_service": "no", + "gps_code": "UKBD" + }, + { + "id": "321184", + "ident": "UA-0101", + "type": "heliport", + "name": "Mezhigyrya Heliport", + "latitude_deg": "50.621465", + "longitude_deg": "30.460391", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "scheduled_service": "no" + }, + { + "id": "321198", + "ident": "UA-0102", + "type": "small_airport", + "name": "Lyneya Airstrip", + "latitude_deg": "51.413316", + "longitude_deg": "30.87469", + "elevation_ft": "446", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-74", + "municipality": "Kovpyta", + "scheduled_service": "no" + }, + { + "id": "321199", + "ident": "UA-0103", + "type": "small_airport", + "name": "Buzova Glider Field", + "latitude_deg": "50.401711", + "longitude_deg": "30.053718", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "municipality": "Buzova", + "scheduled_service": "no", + "home_link": "http://gliding.com.ua" + }, + { + "id": "321200", + "ident": "UA-0104", + "type": "small_airport", + "name": "Dymer Airstrip", + "latitude_deg": "51.0071035", + "longitude_deg": "29.9782477", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "municipality": "Dymer", + "scheduled_service": "no" + }, + { + "id": "321207", + "ident": "UA-0105", + "type": "closed", + "name": "Karabachyn Airstrip", + "latitude_deg": "50.274742", + "longitude_deg": "29.441407", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-18", + "scheduled_service": "no" + }, + { + "id": "321208", + "ident": "UA-0106", + "type": "small_airport", + "name": "Anan'iv Airstrip", + "latitude_deg": "47.6796995", + "longitude_deg": "29.9669261", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "scheduled_service": "no" + }, + { + "id": "321214", + "ident": "UA-0107", + "type": "small_airport", + "name": "Kam'yanets'-Podil's'kyi Airfield", + "latitude_deg": "48.695634", + "longitude_deg": "26.609469", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-68", + "municipality": "Kamyan'ka", + "scheduled_service": "no", + "keywords": "Mekanik Avia,Механик Авиа" + }, + { + "id": "321481", + "ident": "UA-0108", + "type": "small_airport", + "name": "Drohobych Airfield", + "latitude_deg": "49.3662916", + "longitude_deg": "23.5683736", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-46", + "scheduled_service": "no" + }, + { + "id": "321490", + "ident": "UA-0109", + "type": "small_airport", + "name": "Malyn Airstrip", + "latitude_deg": "50.786675", + "longitude_deg": "29.246711", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-18", + "municipality": "Malyn", + "scheduled_service": "no" + }, + { + "id": "321616", + "ident": "UA-0110", + "type": "closed", + "name": "Pogorelovka Airstrip", + "latitude_deg": "48.525151", + "longitude_deg": "25.993457", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-77", + "scheduled_service": "no" + }, + { + "id": "321617", + "ident": "UA-0111", + "type": "closed", + "name": "Rudnya Airstrip", + "latitude_deg": "49.37228", + "longitude_deg": "27.531321", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-68", + "municipality": "Rudnya", + "scheduled_service": "no" + }, + { + "id": "321666", + "ident": "UA-0112", + "type": "small_airport", + "name": "Palianychyntsi Airstrip", + "latitude_deg": "50.0129543", + "longitude_deg": "29.9795159", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "scheduled_service": "no" + }, + { + "id": "321716", + "ident": "UA-0113", + "type": "small_airport", + "name": "Lanivtsi Airstrip", + "latitude_deg": "49.84537", + "longitude_deg": "26.116193", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-61", + "municipality": "Lanivtsi", + "scheduled_service": "no" + }, + { + "id": "322148", + "ident": "UA-0114", + "type": "small_airport", + "name": "Zahnitkiv Airstrip", + "latitude_deg": "48.0351886", + "longitude_deg": "28.9258992", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "municipality": "Zahnitkiv", + "scheduled_service": "no" + }, + { + "id": "322575", + "ident": "UA-0115", + "type": "small_airport", + "name": "Hardyshivka Airstrip", + "latitude_deg": "49.898809", + "longitude_deg": "28.436614", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-18", + "municipality": "Hardyshivka", + "scheduled_service": "no" + }, + { + "id": "323947", + "ident": "UA-0116", + "type": "small_airport", + "name": "Nova Vasylivka Airstrip", + "latitude_deg": "50.3228953", + "longitude_deg": "28.3612108", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-18", + "municipality": "Nova Vasylivka", + "scheduled_service": "no" + }, + { + "id": "324103", + "ident": "UA-0117", + "type": "small_airport", + "name": "Orekhovo Airfield", + "latitude_deg": "48.20211", + "longitude_deg": "35.021351", + "elevation_ft": "489", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-12", + "municipality": "Orekhovo", + "scheduled_service": "no", + "gps_code": "UKYO" + }, + { + "id": "324565", + "ident": "UA-0118", + "type": "heliport", + "name": "Rafalivka Helicopter Base", + "latitude_deg": "51.360218", + "longitude_deg": "25.9194958", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-19", + "scheduled_service": "no" + }, + { + "id": "324581", + "ident": "UA-0119", + "type": "small_airport", + "name": "Romashky Airstrip", + "latitude_deg": "49.7354043", + "longitude_deg": "30.5536534", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "municipality": "Romashky", + "scheduled_service": "no" + }, + { + "id": "326004", + "ident": "UA-0120", + "type": "small_airport", + "name": "Novopavlivka Airstrip", + "latitude_deg": "48.13629", + "longitude_deg": "36.73524", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-12", + "municipality": "Novopavlivka", + "scheduled_service": "no" + }, + { + "id": "326268", + "ident": "UA-0121", + "type": "small_airport", + "name": "Kobelyachok Airstrip", + "latitude_deg": "49.0522143", + "longitude_deg": "33.7993478", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-53", + "municipality": "Kobelyachok", + "scheduled_service": "no" + }, + { + "id": "326392", + "ident": "UA-0122", + "type": "closed", + "name": "Iskrivka Airstrip", + "latitude_deg": "48.1787704", + "longitude_deg": "33.354016", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-35", + "municipality": "Iskrivka", + "scheduled_service": "no" + }, + { + "id": "329398", + "ident": "UA-0123", + "type": "closed", + "name": "Biloyarivka Airstrip", + "latitude_deg": "47.810729", + "longitude_deg": "38.629275", + "elevation_ft": "347", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-14", + "municipality": "Biloyarivka", + "scheduled_service": "no" + }, + { + "id": "329476", + "ident": "UA-0124", + "type": "heliport", + "name": "Vychivka Helicopter Base", + "latitude_deg": "51.8205394", + "longitude_deg": "26.2873632", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-19", + "municipality": "Vychivka", + "scheduled_service": "no" + }, + { + "id": "331659", + "ident": "UA-0125", + "type": "heliport", + "name": "Bilohorodka Heliport", + "latitude_deg": "50.424536", + "longitude_deg": "30.272438", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "municipality": "Bilohorodka", + "scheduled_service": "no", + "local_code": "HD2P", + "keywords": "Белогородка" + }, + { + "id": "332158", + "ident": "UA-0126", + "type": "small_airport", + "name": "Pidhirya Airfield", + "latitude_deg": "48.788823", + "longitude_deg": "24.476531", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-26", + "scheduled_service": "no", + "gps_code": "UKMG" + }, + { + "id": "332720", + "ident": "UA-0127", + "type": "small_airport", + "name": "Kosino Spa Resort", + "latitude_deg": "48.253128", + "longitude_deg": "22.49937", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-21", + "scheduled_service": "no" + }, + { + "id": "332951", + "ident": "UA-0128", + "type": "small_airport", + "name": "Pidverbtsi Airstrip", + "latitude_deg": "48.78682", + "longitude_deg": "25.217443", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-26", + "scheduled_service": "no", + "local_code": "ZF5F" + }, + { + "id": "340324", + "ident": "UA-0129", + "type": "small_airport", + "name": "Koktebel Gliding Center", + "latitude_deg": "45.020896", + "longitude_deg": "35.206845", + "elevation_ft": "801", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Otvazhnoe", + "scheduled_service": "no" + }, + { + "id": "340325", + "ident": "UA-0130", + "type": "closed", + "name": "Kurgannoye Airstrip", + "latitude_deg": "45.8541", + "longitude_deg": "33.7062", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Kurgannoye", + "scheduled_service": "no" + }, + { + "id": "340326", + "ident": "UA-0131", + "type": "closed", + "name": "Kukushkino Airstrip", + "latitude_deg": "45.698139", + "longitude_deg": "33.36079", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Kukushkino", + "scheduled_service": "no" + }, + { + "id": "340327", + "ident": "UA-0132", + "type": "closed", + "name": "Slavne Airfield", + "latitude_deg": "45.731711", + "longitude_deg": "33.21123", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Slavne", + "scheduled_service": "no", + "keywords": "Slavnoye" + }, + { + "id": "340328", + "ident": "UA-0133", + "type": "closed", + "name": "Pochetnoye Airfield", + "latitude_deg": "45.999861", + "longitude_deg": "33.78224", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Pochetnoye", + "scheduled_service": "no" + }, + { + "id": "340329", + "ident": "UA-0134", + "type": "closed", + "name": "Chervonyi Chaban Airfield", + "latitude_deg": "46.18", + "longitude_deg": "33.5934", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-65", + "municipality": "Preobrazhenka", + "scheduled_service": "no" + }, + { + "id": "340330", + "ident": "UA-0135", + "type": "small_airport", + "name": "Pryvillia Airfield", + "latitude_deg": "46.1497", + "longitude_deg": "33.4064", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-65", + "municipality": "Pryvillia", + "scheduled_service": "no" + }, + { + "id": "340331", + "ident": "UA-0136", + "type": "small_airport", + "name": "Lazume Airfield", + "latitude_deg": "46.0838", + "longitude_deg": "32.5075", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-65", + "municipality": "Lazume", + "scheduled_service": "no" + }, + { + "id": "340332", + "ident": "UA-0137", + "type": "small_airport", + "name": "Bekhtery Airfield", + "latitude_deg": "46.232", + "longitude_deg": "32.292", + "elevation_ft": "14", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-65", + "municipality": "Bekhtery", + "scheduled_service": "no" + }, + { + "id": "340333", + "ident": "UA-0138", + "type": "closed", + "name": "Oleksiivka Airfield", + "latitude_deg": "46.2626", + "longitude_deg": "32.218", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-65", + "municipality": "Oleksiivka", + "scheduled_service": "no" + }, + { + "id": "341519", + "ident": "UA-0139", + "type": "heliport", + "name": "Kyiv Challenge Heliport", + "latitude_deg": "50.40645", + "longitude_deg": "30.57943", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "municipality": "Kiev", + "scheduled_service": "no" + }, + { + "id": "341520", + "ident": "UA-0140", + "type": "heliport", + "name": "Kyiv Challenge Heliport", + "latitude_deg": "50.40645", + "longitude_deg": "30.57943", + "elevation_ft": "314", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "municipality": "Kiev", + "scheduled_service": "no", + "gps_code": "UKIH" + }, + { + "id": "342019", + "ident": "UA-0141", + "type": "small_airport", + "name": "Luhansk Aviation Sports Club Airfield", + "latitude_deg": "48.50259", + "longitude_deg": "39.150295", + "elevation_ft": "545", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-09", + "municipality": "Luhansk", + "scheduled_service": "no" + }, + { + "id": "342020", + "ident": "UA-0142", + "type": "heliport", + "name": "Lysychansk Heliport", + "latitude_deg": "48.9323", + "longitude_deg": "38.4097", + "elevation_ft": "433", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-09", + "municipality": "Lysychansk", + "scheduled_service": "no" + }, + { + "id": "342021", + "ident": "UA-0143", + "type": "small_airport", + "name": "Blagodatnoye Delta-Paradrome", + "latitude_deg": "47.9042", + "longitude_deg": "38.5194", + "elevation_ft": "575", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-14", + "municipality": "Siyatel'", + "scheduled_service": "no" + }, + { + "id": "342082", + "ident": "UA-0144", + "type": "small_airport", + "name": "Borodyanka Aerodrome", + "latitude_deg": "50.6661", + "longitude_deg": "29.9329", + "elevation_ft": "476", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "municipality": "Borodyanka", + "scheduled_service": "no" + }, + { + "id": "342089", + "ident": "UA-0145", + "type": "small_airport", + "name": "Chernihiv West Airfield", + "latitude_deg": "51.5196", + "longitude_deg": "30.955", + "elevation_ft": "509", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-74", + "municipality": "Hirmanka", + "scheduled_service": "no" + }, + { + "id": "342153", + "ident": "UA-0146", + "type": "small_airport", + "name": "Aeroclub Swallow", + "latitude_deg": "48.81223", + "longitude_deg": "26.022577", + "elevation_ft": "873", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-61", + "municipality": "Borschiv", + "scheduled_service": "no", + "keywords": "Борщів, Ластівка,С172" + }, + { + "id": "342212", + "ident": "UA-0147", + "type": "heliport", + "name": "Yuzhne Heliport", + "latitude_deg": "46.61731", + "longitude_deg": "31.11865", + "elevation_ft": "119", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "municipality": "Yuzhne", + "scheduled_service": "no" + }, + { + "id": "342216", + "ident": "UA-0148", + "type": "closed", + "name": "Oleksandrivka Airfield", + "latitude_deg": "46.3069", + "longitude_deg": "31.9753", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-65", + "municipality": "Oleksandrivka", + "scheduled_service": "no" + }, + { + "id": "342217", + "ident": "UA-0149", + "type": "heliport", + "name": "Mriya Resort Helipad", + "latitude_deg": "44.3977", + "longitude_deg": "33.94168", + "elevation_ft": "251", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Yalta", + "scheduled_service": "no" + }, + { + "id": "342218", + "ident": "UA-0150", + "type": "heliport", + "name": "Internal Affairs Ministry Dacha Helipad", + "latitude_deg": "44.40043", + "longitude_deg": "33.92258", + "elevation_ft": "182", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Yalta", + "scheduled_service": "no" + }, + { + "id": "342219", + "ident": "UA-0151", + "type": "heliport", + "name": "Demetrynskaya Street Helipad", + "latitude_deg": "44.5097", + "longitude_deg": "33.6069", + "elevation_ft": "305", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-40", + "municipality": "Sevastopol", + "scheduled_service": "no" + }, + { + "id": "342220", + "ident": "UA-0152", + "type": "heliport", + "name": "Orlinovsky Helipad", + "latitude_deg": "44.4207", + "longitude_deg": "33.6741", + "elevation_ft": "348", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-40", + "municipality": "Sevastopol", + "scheduled_service": "no" + }, + { + "id": "342221", + "ident": "UA-0153", + "type": "heliport", + "name": "State House #9 (Oliva) Heliport", + "latitude_deg": "44.4074", + "longitude_deg": "33.8539", + "elevation_ft": "184", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Yalta", + "scheduled_service": "no" + }, + { + "id": "342222", + "ident": "UA-0154", + "type": "heliport", + "name": "State House #8 (Berehove) Heliport", + "latitude_deg": "44.4045", + "longitude_deg": "33.8663", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Yalta", + "scheduled_service": "no" + }, + { + "id": "342223", + "ident": "UA-0155", + "type": "heliport", + "name": "GK Tavriya Resort Seaside Helipad", + "latitude_deg": "44.4043", + "longitude_deg": "33.8779", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Yalta", + "scheduled_service": "no" + }, + { + "id": "342224", + "ident": "UA-0156", + "type": "heliport", + "name": "GK Tavriya Resort Heliport", + "latitude_deg": "44.40605", + "longitude_deg": "33.88245", + "elevation_ft": "430", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Yalta", + "scheduled_service": "no" + }, + { + "id": "342225", + "ident": "UA-0157", + "type": "heliport", + "name": "Naberezhnaya Helipad", + "latitude_deg": "44.39893", + "longitude_deg": "33.9192", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Yalta", + "scheduled_service": "no" + }, + { + "id": "342226", + "ident": "UA-0158", + "type": "heliport", + "name": "Oreanda Heliport", + "latitude_deg": "44.4513", + "longitude_deg": "34.1293", + "elevation_ft": "479", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Yalta", + "scheduled_service": "no" + }, + { + "id": "342227", + "ident": "UA-0159", + "type": "heliport", + "name": "Pension Wisteria Helipad", + "latitude_deg": "44.461824", + "longitude_deg": "34.145346", + "elevation_ft": "125", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Yalta", + "scheduled_service": "no" + }, + { + "id": "342228", + "ident": "UA-0160", + "type": "heliport", + "name": "Massandra Palace Heliport", + "latitude_deg": "44.5145", + "longitude_deg": "34.2039", + "elevation_ft": "971", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Yalta", + "scheduled_service": "no" + }, + { + "id": "342229", + "ident": "UA-0161", + "type": "heliport", + "name": "Artek Heliport", + "latitude_deg": "44.56059", + "longitude_deg": "34.307563", + "elevation_ft": "335", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Yalta", + "scheduled_service": "no" + }, + { + "id": "342230", + "ident": "UA-0162", + "type": "heliport", + "name": "Partenit Heliport", + "latitude_deg": "44.586", + "longitude_deg": "34.3396", + "elevation_ft": "374", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Alushta", + "scheduled_service": "no" + }, + { + "id": "342231", + "ident": "UA-0163", + "type": "heliport", + "name": "Profug Heliport", + "latitude_deg": "44.6511", + "longitude_deg": "34.3995", + "elevation_ft": "269", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Alushta", + "scheduled_service": "no" + }, + { + "id": "351106", + "ident": "UA-0164", + "type": "heliport", + "name": "Reni Heliport", + "latitude_deg": "45.42554", + "longitude_deg": "28.29038", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "municipality": "Reni", + "scheduled_service": "no" + }, + { + "id": "351110", + "ident": "UA-0165", + "type": "closed", + "name": "Frumushyka Airstrip", + "latitude_deg": "46.29002", + "longitude_deg": "29.40827", + "elevation_ft": "436", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "municipality": "Semysotka", + "scheduled_service": "no" + }, + { + "id": "351111", + "ident": "UA-0166", + "type": "heliport", + "name": "Frumushyka Heliport", + "latitude_deg": "46.29598", + "longitude_deg": "29.41779", + "elevation_ft": "418", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "municipality": "Semysotka", + "scheduled_service": "no" + }, + { + "id": "351112", + "ident": "UA-0167", + "type": "heliport", + "name": "Yuzhniy Heliport", + "latitude_deg": "44.57702", + "longitude_deg": "33.49612", + "elevation_ft": "278", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-40", + "municipality": "Sevastopol", + "scheduled_service": "no" + }, + { + "id": "351113", + "ident": "UA-0168", + "type": "small_airport", + "name": "Chaplynka Airport", + "latitude_deg": "46.34539", + "longitude_deg": "33.54191", + "elevation_ft": "72", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-65", + "municipality": "Chaplynka", + "scheduled_service": "no" + }, + { + "id": "351114", + "ident": "UA-0169", + "type": "small_airport", + "name": "Vesele Airport", + "latitude_deg": "47.0369", + "longitude_deg": "34.91204", + "elevation_ft": "253", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-23", + "municipality": "Vesele", + "scheduled_service": "no" + }, + { + "id": "351115", + "ident": "UA-0170", + "type": "small_airport", + "name": "Shyroke Airport", + "latitude_deg": "46.94635", + "longitude_deg": "34.91222", + "elevation_ft": "238", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-23", + "municipality": "Shyroke", + "scheduled_service": "no" + }, + { + "id": "351422", + "ident": "UA-0171", + "type": "small_airport", + "name": "Prymors'k Airport", + "latitude_deg": "46.7441", + "longitude_deg": "36.32766", + "elevation_ft": "89", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-23", + "municipality": "Prymors'k", + "scheduled_service": "no" + }, + { + "id": "351423", + "ident": "UA-0172", + "type": "small_airport", + "name": "Korsak Airport", + "latitude_deg": "46.7513", + "longitude_deg": "35.6342", + "elevation_ft": "115", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-23", + "municipality": "Pryazovs'ke", + "scheduled_service": "no" + }, + { + "id": "352972", + "ident": "UA-0173", + "type": "small_airport", + "name": "Hlukhiv Airport", + "latitude_deg": "51.68335", + "longitude_deg": "33.87135", + "elevation_ft": "577", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-59", + "municipality": "Hlukhiv", + "scheduled_service": "no" + }, + { + "id": "353018", + "ident": "UA-0174", + "type": "heliport", + "name": "Zmiyinyy Island Helipad", + "latitude_deg": "45.255778", + "longitude_deg": "30.201306", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "scheduled_service": "no" + }, + { + "id": "353019", + "ident": "UA-0175", + "type": "closed", + "name": "Holubivka Airfield", + "latitude_deg": "48.63034", + "longitude_deg": "38.67211", + "elevation_ft": "672", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-14", + "municipality": "Holubivka", + "scheduled_service": "no" + }, + { + "id": "353023", + "ident": "UA-0176", + "type": "heliport", + "name": "Yalta North Helipad", + "latitude_deg": "44.511515", + "longitude_deg": "34.155678", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Yalta", + "scheduled_service": "no" + }, + { + "id": "353281", + "ident": "UA-0177", + "type": "small_airport", + "name": "Ximik Airport", + "latitude_deg": "47.34706", + "longitude_deg": "35.142817", + "elevation_ft": "300", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-23", + "municipality": "Orlyanske", + "scheduled_service": "no" + }, + { + "id": "353282", + "ident": "UA-0178", + "type": "closed", + "name": "Mala Bilozerka Airport", + "latitude_deg": "47.268353", + "longitude_deg": "34.962648", + "elevation_ft": "246", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-23", + "municipality": "Mala Bilozerka", + "scheduled_service": "no" + }, + { + "id": "353372", + "ident": "UA-0179", + "type": "heliport", + "name": "Mamalyha Heliport", + "latitude_deg": "48.2477", + "longitude_deg": "26.58473", + "elevation_ft": "377", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-77", + "municipality": "Mamalyha", + "scheduled_service": "no" + }, + { + "id": "35070", + "ident": "UA-1901", + "type": "closed", + "name": "Sambir Air Base", + "latitude_deg": "49.54999923706055", + "longitude_deg": "23.334999084472656", + "elevation_ft": "860", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-46", + "municipality": "Sambir", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sambir_(air_base)" + }, + { + "id": "35087", + "ident": "UA-2644", + "type": "small_airport", + "name": "Starokostiantyniv Air Base", + "latitude_deg": "49.74829864501953", + "longitude_deg": "27.273300170898438", + "elevation_ft": "873", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-68", + "municipality": "Starokostiantyniv", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Starokostiantyniv_(air_base)" + }, + { + "id": "34982", + "ident": "UA-2904", + "type": "small_airport", + "name": "Dubno Air Base", + "latitude_deg": "50.45000076293945", + "longitude_deg": "25.83329963684082", + "elevation_ft": "735", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-19", + "municipality": "Dubno", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dubno_(air_base)" + }, + { + "id": "35006", + "ident": "UA-3578", + "type": "small_airport", + "name": "Konotop Air Base", + "latitude_deg": "51.25", + "longitude_deg": "33.1500015259", + "elevation_ft": "476", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-59", + "municipality": "Konotop", + "scheduled_service": "no", + "gps_code": "UKBF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Konotop_(air_base)" + }, + { + "id": "35045", + "ident": "UA-3730", + "type": "closed", + "name": "Okhtyrka Air Base", + "latitude_deg": "50.306", + "longitude_deg": "35.02", + "elevation_ft": "489", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-59", + "municipality": "Okhtyrka", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Okhtyrka_(air_base)", + "keywords": "Аэродром Ахтырка" + }, + { + "id": "35016", + "ident": "UA-3897", + "type": "closed", + "name": "Lebedyn Air Base", + "latitude_deg": "50.549999", + "longitude_deg": "34.533298", + "elevation_ft": "476", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-59", + "municipality": "Lebedyn", + "scheduled_service": "no", + "gps_code": "UKHN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lebedyn_(air_base)", + "keywords": "Lebedin Air Base, Аэродром Лебедин" + }, + { + "id": "35108", + "ident": "UA-6118", + "type": "small_airport", + "name": "Vasylkiv Air Base", + "latitude_deg": "50.233299255371094", + "longitude_deg": "30.299999237060547", + "elevation_ft": "673", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "municipality": "Vasylkiv", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vasylkiv_(air_base)" + }, + { + "id": "35109", + "ident": "UA-6709", + "type": "closed", + "name": "Velyka Krucha Air Base", + "latitude_deg": "50.1500015259", + "longitude_deg": "32.5332984924", + "elevation_ft": "384", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-53", + "municipality": "Pyriatyn", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Velyka_Krucha_(air_base)" + }, + { + "id": "35061", + "ident": "UA-7707", + "type": "small_airport", + "name": "Pryluki Air Base", + "latitude_deg": "50.56669998168945", + "longitude_deg": "32.31669998168945", + "elevation_ft": "449", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-74", + "municipality": "Pryluky", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pryluky_(air_base)", + "keywords": "Pryluky Air Base, Аэродром Прилуки" + }, + { + "id": "35089", + "ident": "UA-8143", + "type": "small_airport", + "name": "Stryi Air Base", + "latitude_deg": "49.24330139160156", + "longitude_deg": "23.786699295043945", + "elevation_ft": "1024", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-46", + "municipality": "Stryi", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stryi_(air_base)" + }, + { + "id": "34991", + "ident": "UA-8322", + "type": "closed", + "name": "Horodnia Air Base", + "latitude_deg": "51.883767", + "longitude_deg": "31.645489", + "elevation_ft": "489", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-74", + "municipality": "Gorodnya", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Horodnia_(air_base)", + "keywords": "Gorodnia Air Base, Gorodnya Air Base, Horodnya Air Base, Аэродром Городня" + }, + { + "id": "35022", + "ident": "UA-8381", + "type": "closed", + "name": "Liubsha Air Base", + "latitude_deg": "49.2883", + "longitude_deg": "24.198299", + "elevation_ft": "807", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-46", + "municipality": "Kalush", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Liubsha_(air_base)" + }, + { + "id": "35028", + "ident": "UA-8984", + "type": "small_airport", + "name": "Lutsk Air Base", + "latitude_deg": "50.788683025299996", + "longitude_deg": "25.3482913971", + "elevation_ft": "640", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-07", + "municipality": "Lutsk", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lutsk_(air_base)" + }, + { + "id": "35051", + "ident": "UA-9155", + "type": "small_airport", + "name": "Ovruch Air Base", + "latitude_deg": "51.271366119384766", + "longitude_deg": "28.720836639404297", + "elevation_ft": "528", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-18", + "municipality": "Ovruch", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ovruch_(air_base)" + }, + { + "id": "34999", + "ident": "UA-9861", + "type": "small_airport", + "name": "Zhovtneve Air Base", + "latitude_deg": "50.9109992980957", + "longitude_deg": "24.45199966430664", + "elevation_ft": "699", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-07", + "municipality": "Volodymyr-Volynskyi", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khovtnevoy", + "keywords": "Zhovtnevoye Air Base, Zhovtnevoe Air Base, Аэродром Жовтневе, Аэродром Жовтневое" + }, + { + "id": "3549", + "ident": "UA30", + "type": "medium_airport", + "name": "Batken Airport", + "latitude_deg": "40.042899", + "longitude_deg": "70.83784", + "elevation_ft": "3517", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-B", + "municipality": "Batken", + "scheduled_service": "yes", + "gps_code": "UAFB", + "home_link": "http://www.airport.kg/index.php?option=com_content&view=article&id=4&Itemid=6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Batken_Airport", + "keywords": "Batken" + }, + { + "id": "3964", + "ident": "UA34", + "type": "small_airport", + "name": "Chardara Airport", + "latitude_deg": "41.2765007019043", + "longitude_deg": "67.97100067138672", + "elevation_ft": "709", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Shardara", + "scheduled_service": "no", + "gps_code": "UA34", + "local_code": "UA34" + }, + { + "id": "3966", + "ident": "UA36", + "type": "small_airport", + "name": "Lugovoy Airport", + "latitude_deg": "42.972565", + "longitude_deg": "72.728051", + "elevation_ft": "2130", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ZHA", + "municipality": "Lugovoy", + "scheduled_service": "no", + "gps_code": "UA36", + "local_code": "XAAL" + }, + { + "id": "26413", + "ident": "UA66", + "type": "small_airport", + "name": "Chirchik Airport", + "latitude_deg": "41.51679992675781", + "longitude_deg": "69.57540130615234", + "elevation_ft": "2296", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-TO", + "municipality": "Chirchik", + "scheduled_service": "no", + "gps_code": "UA66", + "local_code": "UA66" + }, + { + "id": "6421", + "ident": "UAAA", + "type": "large_airport", + "name": "Almaty International Airport", + "latitude_deg": "43.354267", + "longitude_deg": "77.042828", + "elevation_ft": "2234", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALA", + "municipality": "Almaty", + "scheduled_service": "yes", + "gps_code": "UAAA", + "iata_code": "ALA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Almaty_International_Airport", + "keywords": "Alma Ata" + }, + { + "id": "6422", + "ident": "UAAH", + "type": "medium_airport", + "name": "Balkhash Airport", + "latitude_deg": "46.8932991027832", + "longitude_deg": "75.00499725341797", + "elevation_ft": "1446", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KAR", + "municipality": "Balkhash", + "scheduled_service": "no", + "gps_code": "UAAH", + "iata_code": "BXH", + "keywords": "Balqash" + }, + { + "id": "41853", + "ident": "UAAR", + "type": "small_airport", + "name": "Boralday Airport", + "latitude_deg": "43.352052", + "longitude_deg": "76.883039", + "elevation_ft": "2313", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ALM", + "municipality": "Boralday", + "scheduled_service": "no", + "gps_code": "UAAR", + "iata_code": "BXJ", + "home_link": "http://www.burundaiavia.kz/?lan=en", + "keywords": "Burunday Airport, Almaty Northwest, Alma-Ata Northwest, Аэропорт Боралдай, Аэропорт Бурундай, Аэропорт Алма-Ата Северозападная" + }, + { + "id": "41868", + "ident": "UAAT", + "type": "medium_airport", + "name": "Taldykorgan Airport", + "latitude_deg": "45.12255", + "longitude_deg": "78.442758", + "elevation_ft": "1925", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-JET", + "municipality": "Taldykorgan", + "scheduled_service": "no", + "gps_code": "UAAT", + "iata_code": "TDK", + "keywords": "Taldy Kurgan Airport, Taldy Kurgan Northeast Airport, Аэропорт Талды-Курган" + }, + { + "id": "319057", + "ident": "UABA", + "type": "small_airport", + "name": "Burana Airport", + "latitude_deg": "42.753693", + "longitude_deg": "75.33263", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-C", + "municipality": "Burana village", + "scheduled_service": "no", + "gps_code": "UABA", + "keywords": "Burana Airport" + }, + { + "id": "6423", + "ident": "UACC", + "type": "large_airport", + "name": "Nursultan Nazarbayev International Airport", + "latitude_deg": "51.022202", + "longitude_deg": "71.466904", + "elevation_ft": "1165", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-AKM", + "municipality": "Nur-Sultan", + "scheduled_service": "yes", + "gps_code": "UACC", + "iata_code": "NQZ", + "home_link": "https://www.nn-airport.kz", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nursultan_Nazarbayev_International_Airport" + }, + { + "id": "31768", + "ident": "UACK", + "type": "medium_airport", + "name": "Kokshetau Airport", + "latitude_deg": "53.329102", + "longitude_deg": "69.594597", + "elevation_ft": "900", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-AKM", + "municipality": "Kokshetau", + "scheduled_service": "yes", + "gps_code": "UACK", + "iata_code": "KOV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kokshetau_Airport", + "keywords": "KOKCHETAV TROFIMOVKA" + }, + { + "id": "32495", + "ident": "UACP", + "type": "medium_airport", + "name": "Petropavl Airport", + "latitude_deg": "54.774702", + "longitude_deg": "69.183273", + "elevation_ft": "453", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-SEV", + "municipality": "Petropavl", + "scheduled_service": "yes", + "gps_code": "UACP", + "iata_code": "PPK" + }, + { + "id": "320002", + "ident": "UACS", + "type": "small_airport", + "name": "Stepnogorsk Airport", + "latitude_deg": "52.326747", + "longitude_deg": "71.855652", + "elevation_ft": "1060", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-AKM", + "municipality": "Stepnogorsk", + "scheduled_service": "no", + "gps_code": "UACS", + "keywords": "Aksu, Степногорска, Аксу" + }, + { + "id": "6424", + "ident": "UADD", + "type": "medium_airport", + "name": "Taraz Airport", + "latitude_deg": "42.853599548339844", + "longitude_deg": "71.30359649658203", + "elevation_ft": "2184", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ZHA", + "municipality": "Taraz", + "scheduled_service": "yes", + "gps_code": "UADD", + "iata_code": "DMB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taraz_Airport", + "keywords": "Aulie Ata" + }, + { + "id": "301736", + "ident": "UAE", + "type": "small_airport", + "name": "Mount Aue Airport", + "latitude_deg": "-6.23416666667", + "longitude_deg": "144.664722222", + "elevation_ft": "4250", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-JI", + "scheduled_service": "no", + "gps_code": "AYAE", + "iata_code": "UAE", + "local_code": "AUE" + }, + { + "id": "41661", + "ident": "UAFG", + "type": "small_airport", + "name": "Cholpon-Ata Airport", + "latitude_deg": "42.64948", + "longitude_deg": "77.058381", + "elevation_ft": "5420", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-Y", + "municipality": "Cholpon-Ata", + "scheduled_service": "no", + "gps_code": "UAFG", + "keywords": "Cholpon-Ata Airport" + }, + { + "id": "46646", + "ident": "UAFI", + "type": "small_airport", + "name": "Isfana Airport", + "latitude_deg": "39.824737", + "longitude_deg": "69.56882", + "elevation_ft": "4625", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-B", + "municipality": "Isfana", + "scheduled_service": "yes", + "gps_code": "UAFI", + "home_link": "http://www.airport.kg/index.php?option=com_content&view=article&id=4&Itemid=6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Isfana_Airport", + "keywords": "Isfana Airport" + }, + { + "id": "6425", + "ident": "UAFL", + "type": "medium_airport", + "name": "Issyk-Kul International Airport", + "latitude_deg": "42.585584", + "longitude_deg": "76.701181", + "elevation_ft": "5425", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-Y", + "municipality": "Tamchy", + "scheduled_service": "yes", + "gps_code": "UCFL", + "iata_code": "IKU", + "local_code": "IKU", + "home_link": "http://www.airport.kg/index.php?option=com_content&view=article&id=4&Itemid=6", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tamchy_Airport", + "keywords": "UAFL, Issyk-Kul Airport, Chok-Tal Airport, Аэропорт Тамчы, Аэропорт Иссык-Куль, Аэропорт Чок-Тал" + }, + { + "id": "6426", + "ident": "UAFM", + "type": "large_airport", + "name": "Manas International Airport", + "latitude_deg": "43.0612983704", + "longitude_deg": "74.4776000977", + "elevation_ft": "2058", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-C", + "municipality": "Bishkek", + "scheduled_service": "yes", + "gps_code": "UCFM", + "iata_code": "FRU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manas_International_Airport", + "keywords": "UAFM, Manas Air Force Base" + }, + { + "id": "6427", + "ident": "UAFO", + "type": "medium_airport", + "name": "Osh Airport", + "latitude_deg": "40.6090011597", + "longitude_deg": "72.793296814", + "elevation_ft": "2927", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-O", + "municipality": "Osh", + "scheduled_service": "yes", + "gps_code": "UCFO", + "iata_code": "OSS", + "home_link": "http://www.airport.kg/eng/branches.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Osh_Airport" + }, + { + "id": "32496", + "ident": "UAFP", + "type": "small_airport", + "name": "Karakol Airport", + "latitude_deg": "42.508098602299995", + "longitude_deg": "78.4077987671", + "elevation_ft": "5590", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-Y", + "municipality": "Karakol", + "scheduled_service": "yes", + "gps_code": "UCFP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Karakol_International_Airport", + "keywords": "UAFP, Karakol Airport" + }, + { + "id": "6428", + "ident": "UAFW", + "type": "medium_airport", + "name": "Kant Air Base", + "latitude_deg": "42.85319900512695", + "longitude_deg": "74.84649658203125", + "elevation_ft": "2549", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-C", + "municipality": "Kant", + "scheduled_service": "no", + "gps_code": "UAFW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kant_Air_Base" + }, + { + "id": "46647", + "ident": "UAFZ", + "type": "small_airport", + "name": "Kazarman Airport", + "latitude_deg": "41.410291", + "longitude_deg": "74.044418", + "elevation_ft": "4298", + "continent": "AS", + "iso_country": "KG", + "iso_region": "KG-J", + "municipality": "Kazarman", + "scheduled_service": "yes", + "gps_code": "UAFZ", + "keywords": "Kazarman Airport" + }, + { + "id": "6429", + "ident": "UAII", + "type": "medium_airport", + "name": "Shymkent Airport", + "latitude_deg": "42.364200592041016", + "longitude_deg": "69.47889709472656", + "elevation_ft": "1385", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "municipality": "Shymkent", + "scheduled_service": "yes", + "gps_code": "UAII", + "iata_code": "CIT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shymkent_Airport", + "keywords": "Chimkent Airport, Аэропорт Шымкент, Аэропорт Чимкент" + }, + { + "id": "337747", + "ident": "UAIT", + "type": "large_airport", + "name": "Hazrat Sultan International Airport", + "latitude_deg": "43.313126", + "longitude_deg": "68.549881", + "elevation_ft": "951", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-YUZ", + "scheduled_service": "yes", + "gps_code": "UAIT", + "iata_code": "HSA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hazret_Sultan_International_Airport" + }, + { + "id": "6430", + "ident": "UAKD", + "type": "medium_airport", + "name": "Zhezkazgan National Airport", + "latitude_deg": "47.708953", + "longitude_deg": "67.738094", + "elevation_ft": "1250", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ULY", + "municipality": "Zhezkazgan", + "scheduled_service": "yes", + "gps_code": "UAKD", + "iata_code": "DZN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dzhezkazgan_Airport", + "keywords": "УАКД, Жезказган, Dzhezkazgan South" + }, + { + "id": "6431", + "ident": "UAKK", + "type": "medium_airport", + "name": "Sary-Arka Airport", + "latitude_deg": "49.670799", + "longitude_deg": "73.334396", + "elevation_ft": "1765", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KAR", + "municipality": "Karaganda", + "scheduled_service": "yes", + "gps_code": "UAKK", + "iata_code": "KGF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sary-Arka_Airport" + }, + { + "id": "44335", + "ident": "UAON", + "type": "medium_airport", + "name": "Yubileyniy Airfield", + "latitude_deg": "46.052421", + "longitude_deg": "63.249185", + "elevation_ft": "328", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-BAY", + "municipality": "Baikonur", + "scheduled_service": "no", + "gps_code": "UAON", + "keywords": "Yubileyniy Airfield, Yubileiniy Airfield, Yubileyny Airfield, Yubileiny Airfield, Аэродром Юбилейный" + }, + { + "id": "31794", + "ident": "UAOO", + "type": "small_airport", + "name": "Kyzylorda Airport", + "latitude_deg": "44.706902", + "longitude_deg": "65.592499", + "elevation_ft": "433", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KZY", + "municipality": "Kyzylorda", + "scheduled_service": "yes", + "gps_code": "UAOO", + "iata_code": "KZO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kyzylorda_Airport", + "keywords": "Kyzylorda Southwest" + }, + { + "id": "6432", + "ident": "UARR", + "type": "medium_airport", + "name": "Uralsk Airport", + "latitude_deg": "51.15079879760742", + "longitude_deg": "51.54309844970703", + "elevation_ft": "125", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ZAP", + "municipality": "Uralsk", + "scheduled_service": "yes", + "gps_code": "UARR", + "iata_code": "URA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oral_Ak_Zhol_Airport", + "keywords": "Podstepnyy" + }, + { + "id": "32501", + "ident": "UASA", + "type": "medium_airport", + "name": "Ayaguz Airport", + "latitude_deg": "47.919218", + "longitude_deg": "80.452194", + "elevation_ft": "2119", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ABA", + "municipality": "Ayaguz", + "scheduled_service": "no", + "gps_code": "UASA", + "keywords": "Ayagoz" + }, + { + "id": "41886", + "ident": "UASB", + "type": "medium_airport", + "name": "Ekibastuz Airport", + "latitude_deg": "51.590999603271484", + "longitude_deg": "75.21499633789062", + "elevation_ft": "621", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-PAV", + "municipality": "Ekibastuz", + "scheduled_service": "no", + "gps_code": "UASB", + "iata_code": "EKB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ekibastuz_Airport", + "keywords": "Аэропорт Экибастуз" + }, + { + "id": "6433", + "ident": "UASK", + "type": "medium_airport", + "name": "Ust-Kamenogorsk Airport", + "latitude_deg": "50.036571", + "longitude_deg": "82.493477", + "elevation_ft": "939", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-VOS", + "municipality": "Ust-Kamenogorsk (Oskemen)", + "scheduled_service": "yes", + "gps_code": "UASK", + "iata_code": "UKK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ust-Kamenogorsk_Airport", + "keywords": "Ust-Kamennogorsk Airport, Аэропорт Усть-Каменногорск" + }, + { + "id": "6434", + "ident": "UASP", + "type": "medium_airport", + "name": "Pavlodar Airport", + "latitude_deg": "52.19499969482422", + "longitude_deg": "77.07389831542969", + "elevation_ft": "410", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-PAV", + "municipality": "Pavlodar", + "scheduled_service": "yes", + "gps_code": "UASP", + "iata_code": "PWQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pavlodar_Airport", + "keywords": "Pavlodar South" + }, + { + "id": "6435", + "ident": "UASS", + "type": "medium_airport", + "name": "Semey Airport", + "latitude_deg": "50.351295", + "longitude_deg": "80.234398", + "elevation_ft": "761", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ABA", + "municipality": "Semey", + "scheduled_service": "yes", + "gps_code": "UASS", + "iata_code": "PLX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Semey_Airport", + "keywords": "Semipalatinsk Airport, Semey International Airport" + }, + { + "id": "318183", + "ident": "UASZ", + "type": "small_airport", + "name": "Zaysan Airport", + "latitude_deg": "47.487491", + "longitude_deg": "84.887675", + "elevation_ft": "1877", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-VOS", + "municipality": "Zaysan", + "scheduled_service": "yes", + "gps_code": "UASZ", + "iata_code": "SZI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zaysan_Airport", + "keywords": "Zaisan" + }, + { + "id": "32502", + "ident": "UATA", + "type": "small_airport", + "name": "Aralsk Airport", + "latitude_deg": "46.829607", + "longitude_deg": "61.607787", + "elevation_ft": "223", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KZY", + "municipality": "Aralsk", + "scheduled_service": "no", + "gps_code": "UATA", + "keywords": "Aral'sk Airport, Аэропорт Аральск" + }, + { + "id": "6436", + "ident": "UATE", + "type": "medium_airport", + "name": "Aktau Airport", + "latitude_deg": "43.860093", + "longitude_deg": "51.09086", + "elevation_ft": "73", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-MAN", + "municipality": "Aktau", + "scheduled_service": "yes", + "gps_code": "UATE", + "iata_code": "SCO", + "home_link": "http://aktau-airport.kz/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aktau_Airport", + "keywords": "Akshukyr" + }, + { + "id": "6437", + "ident": "UATG", + "type": "medium_airport", + "name": "Atyrau International Airport", + "latitude_deg": "47.122559", + "longitude_deg": "51.819321", + "elevation_ft": "-72", + "continent": "EU", + "iso_country": "KZ", + "iso_region": "KZ-ATY", + "municipality": "Atyrau", + "scheduled_service": "yes", + "gps_code": "UATG", + "iata_code": "GUW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atyrau_Airport" + }, + { + "id": "44391", + "ident": "UATR", + "type": "medium_airport", + "name": "Shalkar Airport", + "latitude_deg": "47.904999", + "longitude_deg": "59.619999", + "elevation_ft": "561", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-AKT", + "municipality": "Shalkar", + "scheduled_service": "no", + "gps_code": "UATR", + "keywords": "Chelkar, Аэропорт Челкар, Аэропорт Шалкар" + }, + { + "id": "6438", + "ident": "UATT", + "type": "medium_airport", + "name": "Aktobe Airport", + "latitude_deg": "50.2458", + "longitude_deg": "57.206699", + "elevation_ft": "738", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-AKT", + "municipality": "Aktobe", + "scheduled_service": "yes", + "gps_code": "UATT", + "iata_code": "AKX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aktobe_Airport", + "keywords": "Aktyubinsk Airport, Aktubinsk Airport, Аэропорт Актюбинск" + }, + { + "id": "351217", + "ident": "UATZ", + "type": "small_airport", + "name": "Tengiz Airport", + "latitude_deg": "46.301673", + "longitude_deg": "53.427308", + "elevation_ft": "-78", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ATY", + "municipality": "Tengiz", + "scheduled_service": "no", + "gps_code": "UATZ", + "keywords": "TCOV" + }, + { + "id": "30668", + "ident": "UAUR", + "type": "small_airport", + "name": "Arkalyk North Airport", + "latitude_deg": "50.318599700927734", + "longitude_deg": "66.95279693603516", + "elevation_ft": "1266", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KUS", + "municipality": "Arkalyk", + "scheduled_service": "no", + "gps_code": "UAUR", + "iata_code": "AYK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arkalyk_Airport" + }, + { + "id": "319622", + "ident": "UAUT", + "type": "small_airport", + "name": "Turgay Airport", + "latitude_deg": "49.632395", + "longitude_deg": "63.4703", + "elevation_ft": "445", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KUS", + "municipality": "Turgay", + "scheduled_service": "no", + "gps_code": "UAUT", + "keywords": "УАУТ, Торгай" + }, + { + "id": "6439", + "ident": "UAUU", + "type": "medium_airport", + "name": "Kostanay West Airport", + "latitude_deg": "53.20690155029297", + "longitude_deg": "63.55030059814453", + "elevation_ft": "595", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-KUS", + "municipality": "Kostanay", + "scheduled_service": "yes", + "gps_code": "UAUU", + "iata_code": "KSN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kostanai_Airport" + }, + { + "id": "73", + "ident": "UB12", + "type": "medium_airport", + "name": "Nasosnaya Air Base", + "latitude_deg": "40.591599", + "longitude_deg": "49.5574", + "elevation_ft": "-13", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-SM", + "municipality": "Nasosnaya", + "scheduled_service": "no", + "gps_code": "UBBI", + "local_code": "UB12", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nasosnaya_Air_Base", + "keywords": "UB12" + }, + { + "id": "74", + "ident": "UB13", + "type": "medium_airport", + "name": "Stepanakert Airport", + "latitude_deg": "39.901402", + "longitude_deg": "46.786999", + "elevation_ft": "2001", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-XCI", + "municipality": "Stepanakert", + "scheduled_service": "no", + "gps_code": "UBBS", + "local_code": "UB13", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stepanakert_Airport", + "keywords": "UB13, Khankendi, Nagorno-Karabakh Republic" + }, + { + "id": "75", + "ident": "UB14", + "type": "medium_airport", + "name": "Kyurdamir Air Base", + "latitude_deg": "40.27360153198242", + "longitude_deg": "48.16360092163086", + "elevation_ft": "-35", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-KUR", + "municipality": "Kyurdamir", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kyurdamir_Air_Base" + }, + { + "id": "76", + "ident": "UB16", + "type": "small_airport", + "name": "Balakan Airport", + "latitude_deg": "41.733048", + "longitude_deg": "46.355677", + "elevation_ft": "935", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-BAL", + "municipality": "Balakan", + "scheduled_service": "no", + "gps_code": "UB0G", + "local_code": "UB16", + "wikipedia_link": "https://en.wikipedia.org/wiki/Balakan_Airport", + "keywords": "Аэропорт Белоканы, UB16, Belokany" + }, + { + "id": "77", + "ident": "UB18", + "type": "medium_airport", + "name": "Baku Kala Air Base", + "latitude_deg": "40.40660095214844", + "longitude_deg": "50.200199127197266", + "elevation_ft": "40", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-BA", + "municipality": "Baku", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baku_Kala_Air_Base", + "keywords": "UB18" + }, + { + "id": "35339", + "ident": "UBBA", + "type": "small_airport", + "name": "Akstafa Airport", + "latitude_deg": "41.123616", + "longitude_deg": "45.420793", + "elevation_ft": "1085", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-AGA", + "municipality": "Akstafa", + "scheduled_service": "no", + "gps_code": "UBBA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Akstafa_Airport", + "keywords": "Aghstafa Airport, Agstafa Airport, UB17" + }, + { + "id": "6440", + "ident": "UBBB", + "type": "large_airport", + "name": "Heydar Aliyev International Airport", + "latitude_deg": "40.467498779296875", + "longitude_deg": "50.04669952392578", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-BA", + "municipality": "Baku", + "scheduled_service": "yes", + "gps_code": "UBBB", + "iata_code": "GYD", + "home_link": "http://www.airport-baku.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Heydar_Aliyev_International_Airport", + "keywords": "BAK, Bina International Airport, Heydər Əliyev adına beynəlxalq hava limanı" + }, + { + "id": "6441", + "ident": "UBBG", + "type": "medium_airport", + "name": "Ganja International Airport", + "latitude_deg": "40.737701", + "longitude_deg": "46.3176", + "elevation_ft": "1083", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-GA", + "municipality": "Ganja", + "scheduled_service": "yes", + "gps_code": "UBBG", + "iata_code": "KVD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ganja_International_Airport", + "keywords": "Gyandzha Airport, Аэропорт Гянджа" + }, + { + "id": "72", + "ident": "UBBL", + "type": "small_airport", + "name": "Lankaran International Airport", + "latitude_deg": "38.757919", + "longitude_deg": "48.807042", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-LA", + "municipality": "Lankaran", + "scheduled_service": "yes", + "gps_code": "UBBL", + "iata_code": "LLK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lankaran_International_Airport", + "keywords": "UB10, Lenkoran" + }, + { + "id": "6442", + "ident": "UBBN", + "type": "medium_airport", + "name": "Nakhchivan Airport", + "latitude_deg": "39.18880081176758", + "longitude_deg": "45.45840072631836", + "elevation_ft": "2863", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-NX", + "municipality": "Nakhchivan", + "scheduled_service": "yes", + "gps_code": "UBBN", + "iata_code": "NAJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nakhichevan_Airport", + "keywords": "Nakhichevan Airport, Аэропорт Нахичевань, UB15" + }, + { + "id": "300740", + "ident": "UBBQ", + "type": "medium_airport", + "name": "Gabala International Airport", + "latitude_deg": "40.808617", + "longitude_deg": "47.725389", + "elevation_ft": "935", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-QAB", + "municipality": "Gabala", + "scheduled_service": "yes", + "gps_code": "UBBQ", + "iata_code": "GBB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gabala_Airport", + "keywords": "Qəbələ, Qabala" + }, + { + "id": "43883", + "ident": "UBBY", + "type": "medium_airport", + "name": "Zaqatala International Airport", + "latitude_deg": "41.557823", + "longitude_deg": "46.669464", + "elevation_ft": "1279", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-ZAQ", + "municipality": "Zaqatala", + "scheduled_service": "no", + "gps_code": "UBBY", + "iata_code": "ZTU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zaqatala_International_Airport", + "keywords": "Zakataly Airport" + }, + { + "id": "32504", + "ident": "UBEE", + "type": "small_airport", + "name": "Yevlakh Airport", + "latitude_deg": "40.631901", + "longitude_deg": "47.141899", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-YE", + "municipality": "Yevlakh", + "scheduled_service": "no", + "gps_code": "UBEE", + "iata_code": "YLV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yevlakh_Airport", + "keywords": "Аэропорт Евлах" + }, + { + "id": "301982", + "ident": "UBI", + "type": "small_airport", + "name": "Buin Airport", + "latitude_deg": "-6.72916666667", + "longitude_deg": "155.683333333", + "elevation_ft": "230", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-NSB", + "municipality": "Buin", + "scheduled_service": "no", + "gps_code": "AYUI", + "iata_code": "UBI", + "local_code": "BUIN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buin_Airport", + "keywords": "Kara Airfield, Toripoil Airfield" + }, + { + "id": "7", + "ident": "UD21", + "type": "small_airport", + "name": "Arzni Airport", + "latitude_deg": "40.294102", + "longitude_deg": "44.564602", + "elevation_ft": "4416", + "continent": "AS", + "iso_country": "AM", + "iso_region": "AM-KT", + "municipality": "Nor Hachn", + "scheduled_service": "no", + "gps_code": "UD21", + "local_code": "UD21", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arzni_Airport", + "keywords": "Yerevan Yeghvard" + }, + { + "id": "6443", + "ident": "UDLS", + "type": "small_airport", + "name": "Stepanavan Airport", + "latitude_deg": "41.048500061", + "longitude_deg": "44.337200164799995", + "elevation_ft": "4836", + "continent": "AS", + "iso_country": "AM", + "iso_region": "AM-LO", + "municipality": "Stepanavan", + "scheduled_service": "no", + "gps_code": "UDLS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stepanavan_Airport", + "keywords": "Kalinino Airport" + }, + { + "id": "6444", + "ident": "UDSG", + "type": "medium_airport", + "name": "Shirak International Airport", + "latitude_deg": "40.750401", + "longitude_deg": "43.859299", + "elevation_ft": "5000", + "continent": "AS", + "iso_country": "AM", + "iso_region": "AM-SH", + "municipality": "Gyumri", + "scheduled_service": "yes", + "gps_code": "UDSG", + "iata_code": "LWN", + "home_link": "http://www.aviation.am/eng/gorc/aeroport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shirak_Airport", + "keywords": "UGEL" + }, + { + "id": "6445", + "ident": "UDYE", + "type": "medium_airport", + "name": "Erebuni Airport", + "latitude_deg": "40.122100830099996", + "longitude_deg": "44.465000152600005", + "elevation_ft": "2948", + "continent": "AS", + "iso_country": "AM", + "iso_region": "AM-ER", + "municipality": "Yerevan", + "scheduled_service": "no", + "gps_code": "UDYE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Erebuni_Airport", + "keywords": "Аэропорт Эребуни" + }, + { + "id": "6446", + "ident": "UDYZ", + "type": "large_airport", + "name": "Zvartnots International Airport", + "latitude_deg": "40.1473007202", + "longitude_deg": "44.3959007263", + "elevation_ft": "2838", + "continent": "AS", + "iso_country": "AM", + "iso_region": "AM-ER", + "municipality": "Yerevan", + "scheduled_service": "yes", + "gps_code": "UDYZ", + "iata_code": "EVN", + "home_link": "http://www.aia-zvartnots.aero/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zvartnots_International_Airport", + "keywords": "UGEE, Erevan Airport, Erivan Airport, Аэропорт Звартноц, Аэропорт Ереван" + }, + { + "id": "319868", + "ident": "UEAT", + "type": "small_airport", + "name": "Chumpu-Kytyl Airport", + "latitude_deg": "65.371234", + "longitude_deg": "143.167048", + "elevation_ft": "1240", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Tyubelyahe", + "scheduled_service": "no", + "gps_code": "UEAT", + "keywords": "УЕАТ, Тюбелях" + }, + { + "id": "32507", + "ident": "UEBB", + "type": "small_airport", + "name": "Batagay Airport", + "latitude_deg": "67.648002624512", + "longitude_deg": "134.69500732422", + "elevation_ft": "696", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Batagay", + "scheduled_service": "yes", + "gps_code": "UEBB", + "iata_code": "BQJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Batagay_Airport", + "keywords": "УЕББ, Батагай" + }, + { + "id": "319869", + "ident": "UEBC", + "type": "heliport", + "name": "Batagay Hospital Heliport", + "latitude_deg": "67.6501", + "longitude_deg": "134.6005", + "elevation_ft": "434", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Batagay", + "scheduled_service": "no", + "gps_code": "UEBC", + "keywords": "УЕБЦ, Батагай ЦРБ" + }, + { + "id": "319870", + "ident": "UEBE", + "type": "closed", + "name": "Tenkeli Airport", + "latitude_deg": "70.1643", + "longitude_deg": "140.7073", + "elevation_ft": "465", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Tenkeli", + "scheduled_service": "no", + "gps_code": "UEBE", + "keywords": "УЕБЕ, Тенкели" + }, + { + "id": "319866", + "ident": "UEBG", + "type": "small_airport", + "name": "Lake Khaiyr Airport", + "latitude_deg": "70.8083", + "longitude_deg": "133.5059", + "elevation_ft": "115", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Khayyr", + "scheduled_service": "no", + "gps_code": "UEBG", + "keywords": "Khaiyr, УЕБГ, Хайыр" + }, + { + "id": "319867", + "ident": "UEBK", + "type": "small_airport", + "name": "Kular Airport", + "latitude_deg": "70.59566", + "longitude_deg": "134.509293", + "elevation_ft": "1100", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Kular", + "scheduled_service": "no", + "gps_code": "UEBK", + "keywords": "УЕБК, Кулар, Cularo" + }, + { + "id": "32508", + "ident": "UEBN", + "type": "small_airport", + "name": "Nizhneyansk Airport", + "latitude_deg": "71.43699645996094", + "longitude_deg": "136.19000244140625", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Nizhneyansk", + "scheduled_service": "no", + "gps_code": "UEBN" + }, + { + "id": "314969", + "ident": "UEBS", + "type": "small_airport", + "name": "Sakkyryr Airport", + "latitude_deg": "67.792", + "longitude_deg": "130.394", + "elevation_ft": "1686", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Batagay-Alyta", + "scheduled_service": "yes", + "gps_code": "UEBS", + "iata_code": "SUK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sakkyryr_Airport", + "keywords": "УЕБС, Саккырыр, Батагаы-Алыта" + }, + { + "id": "44859", + "ident": "UEBT", + "type": "small_airport", + "name": "Ust-Kuyga Airport", + "latitude_deg": "70.011002", + "longitude_deg": "135.645004", + "elevation_ft": "327", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Ust-Kuyga", + "scheduled_service": "yes", + "gps_code": "UEBT", + "iata_code": "UKG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ust-Kuyga_Airport", + "keywords": "УЕБТ, Аэропорт Усть-Куйга" + }, + { + "id": "43675", + "ident": "UEBW", + "type": "small_airport", + "name": "Verkhoyansk Airport", + "latitude_deg": "67.54309844970703", + "longitude_deg": "133.3988037109375", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEBW", + "keywords": "Verhoyansk Airport, Аэропорт Верхоянск" + }, + { + "id": "319881", + "ident": "UECD", + "type": "closed", + "name": "Drilling Rig 363/2 Helipad", + "latitude_deg": "59.91494", + "longitude_deg": "110.14186", + "elevation_ft": "1148", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UECD", + "keywords": "УЕЦД, Буровая 363/2" + }, + { + "id": "327559", + "ident": "UECT", + "type": "small_airport", + "name": "Talakan Airport", + "latitude_deg": "59.876389", + "longitude_deg": "111.044444", + "elevation_ft": "1329", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Talakan Oil Field", + "scheduled_service": "no", + "gps_code": "UECT", + "iata_code": "TLK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Talakan_Airport" + }, + { + "id": "335170", + "ident": "UEDB", + "type": "small_airport", + "name": "Kulun-Elbyut Airport", + "latitude_deg": "66.794851", + "longitude_deg": "142.727423", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEDB" + }, + { + "id": "335164", + "ident": "UEDK", + "type": "small_airport", + "name": "Desku Airport", + "latitude_deg": "68.363387", + "longitude_deg": "144.51725", + "elevation_ft": "125", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEDK" + }, + { + "id": "319880", + "ident": "UEDN", + "type": "small_airport", + "name": "Horula Airfield", + "latitude_deg": "63.9622", + "longitude_deg": "118.644602", + "elevation_ft": "820", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Sayylyk", + "scheduled_service": "no", + "gps_code": "UEDN", + "keywords": "УЕДН, Хорула" + }, + { + "id": "30617", + "ident": "UEEA", + "type": "small_airport", + "name": "Aldan Airport", + "latitude_deg": "58.60279846191406", + "longitude_deg": "125.40899658203125", + "elevation_ft": "2241", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Aldan", + "scheduled_service": "no", + "gps_code": "UEEA", + "iata_code": "ADH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aldan_Airport" + }, + { + "id": "335171", + "ident": "UEED", + "type": "small_airport", + "name": "Sebyan-Kyuyol Airport", + "latitude_deg": "65.292822", + "longitude_deg": "129.991865", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEED" + }, + { + "id": "6447", + "ident": "UEEE", + "type": "medium_airport", + "name": "Yakutsk Airport", + "latitude_deg": "62.093299865722656", + "longitude_deg": "129.77099609375", + "elevation_ft": "325", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Yakutsk", + "scheduled_service": "yes", + "gps_code": "UEEE", + "iata_code": "YKS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yakutsk_Airport" + }, + { + "id": "335172", + "ident": "UEEG", + "type": "small_airport", + "name": "Chagda Airport", + "latitude_deg": "58.756895", + "longitude_deg": "130.6071", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEEG" + }, + { + "id": "335173", + "ident": "UEEJ", + "type": "small_airport", + "name": "Kobyay Airport", + "latitude_deg": "63.568351", + "longitude_deg": "126.512203", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEEJ" + }, + { + "id": "335174", + "ident": "UEEQ", + "type": "small_airport", + "name": "Sanyyakhtakh Airport", + "latitude_deg": "60.58802", + "longitude_deg": "124.04779", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEEQ" + }, + { + "id": "335175", + "ident": "UEEX", + "type": "small_airport", + "name": "Bel'kachi Airport", + "latitude_deg": "59.169249", + "longitude_deg": "131.91988", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEEX" + }, + { + "id": "335176", + "ident": "UEGT", + "type": "small_airport", + "name": "Sobolokh Airport", + "latitude_deg": "66.255869", + "longitude_deg": "143.323603", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEGT" + }, + { + "id": "335166", + "ident": "UEKG", + "type": "small_airport", + "name": "Kuberganya Airport", + "latitude_deg": "67.765668", + "longitude_deg": "144.509096", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEKG" + }, + { + "id": "335177", + "ident": "UEKO", + "type": "small_airport", + "name": "Delgey Airport", + "latitude_deg": "59.907533", + "longitude_deg": "118.649383", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEKO" + }, + { + "id": "335163", + "ident": "UEKU", + "type": "small_airport", + "name": "Kutana Airport", + "latitude_deg": "59.028719", + "longitude_deg": "131.788731", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "yes", + "gps_code": "UEKU" + }, + { + "id": "335165", + "ident": "UEKY", + "type": "small_airport", + "name": "Keng-Kyuyol Airport", + "latitude_deg": "68.076828", + "longitude_deg": "145.985126", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Keng-Kyuyol", + "scheduled_service": "no", + "gps_code": "UEKY" + }, + { + "id": "5751", + "ident": "UELL", + "type": "medium_airport", + "name": "Chulman Airport", + "latitude_deg": "56.913898468018", + "longitude_deg": "124.91400146484", + "elevation_ft": "2812", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Neryungri", + "scheduled_service": "yes", + "gps_code": "UELL", + "iata_code": "NER", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chulman_Airport", + "keywords": "Neryungri Airport, Аэропорт Чульман, Аэропорт Нерюнгри, CNN" + }, + { + "id": "335178", + "ident": "UELT", + "type": "small_airport", + "name": "Torgo Airport", + "latitude_deg": "58.44634", + "longitude_deg": "119.504728", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UELT" + }, + { + "id": "32509", + "ident": "UEMA", + "type": "medium_airport", + "name": "Moma Airport", + "latitude_deg": "66.450861", + "longitude_deg": "143.261551", + "elevation_ft": "656", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Khonuu", + "scheduled_service": "yes", + "gps_code": "UEMA", + "iata_code": "MQJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moma_Airport", + "keywords": "Аэропорт Мома" + }, + { + "id": "335179", + "ident": "UEMC", + "type": "small_airport", + "name": "Khatyngnakh Airport", + "latitude_deg": "67.489845", + "longitude_deg": "152.575679", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEMC" + }, + { + "id": "335180", + "ident": "UEMD", + "type": "small_airport", + "name": "Chagda Airport", + "latitude_deg": "63.371467", + "longitude_deg": "125.54296", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEMD" + }, + { + "id": "335181", + "ident": "UEME", + "type": "small_airport", + "name": "Tyaya Airport", + "latitude_deg": "63.689242", + "longitude_deg": "125.985031", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEME" + }, + { + "id": "42979", + "ident": "UEMM", + "type": "medium_airport", + "name": "Magan Airport", + "latitude_deg": "62.103484", + "longitude_deg": "129.545288", + "elevation_ft": "577", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Magan", + "scheduled_service": "no", + "gps_code": "UEMM", + "iata_code": "GYG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Magan_Airport", + "keywords": "УЕММ, Маган" + }, + { + "id": "335182", + "ident": "UEMN", + "type": "small_airport", + "name": "Syagannakh", + "latitude_deg": "68.372322", + "longitude_deg": "143.619676", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEMN" + }, + { + "id": "32510", + "ident": "UEMO", + "type": "medium_airport", + "name": "Olyokminsk Airport", + "latitude_deg": "60.397499", + "longitude_deg": "120.471001", + "elevation_ft": "656", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Olyokminsk", + "scheduled_service": "yes", + "gps_code": "UEMO", + "iata_code": "OLZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Olyokminsk_Airport", + "keywords": "Olekminsk Airport, Аэропорт Олёкминск, Аэропорт Олекминск" + }, + { + "id": "335183", + "ident": "UEMR", + "type": "small_airport", + "name": "Aryktakh Airport", + "latitude_deg": "63.561388", + "longitude_deg": "125.255277", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEMR" + }, + { + "id": "315295", + "ident": "UEMS", + "type": "small_airport", + "name": "Sangar Airport", + "latitude_deg": "63.9594", + "longitude_deg": "127.42", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Sangar", + "scheduled_service": "no", + "gps_code": "UEMS", + "wikipedia_link": "https://ru.wikipedia.org/wiki/%D0%A1%D0%B0%D0%BD%D0%B3%D0%B0%D1%80_(%D0%B0%D1%8D%D1%80%D0%BE%D0%BF%D0%BE%D1%80%D1%82)", + "keywords": "УЕМС, Аэропорт Сангар" + }, + { + "id": "44662", + "ident": "UEMT", + "type": "medium_airport", + "name": "Ust-Nera Airport", + "latitude_deg": "64.550003051758", + "longitude_deg": "143.11500549316", + "elevation_ft": "1805", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Ust-Nera", + "scheduled_service": "yes", + "gps_code": "UEMT", + "iata_code": "USR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ust-Nera_Airport", + "keywords": "УЕМТ, Аэропорт Усть-Нера" + }, + { + "id": "44668", + "ident": "UEMU", + "type": "small_airport", + "name": "Ust-Maya Airport", + "latitude_deg": "60.356998443604", + "longitude_deg": "134.43499755859", + "elevation_ft": "561", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Ust-Maya", + "scheduled_service": "yes", + "gps_code": "UEMU", + "iata_code": "UMS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ust-Maya_Airport", + "keywords": "УЕМУ, Аэропорт Усть-Мая" + }, + { + "id": "335184", + "ident": "UENH", + "type": "small_airport", + "name": "Yatek Airport", + "latitude_deg": "63.720041", + "longitude_deg": "124.187007", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UENH" + }, + { + "id": "43673", + "ident": "UENI", + "type": "small_airport", + "name": "Verkhnevilyuisk Airport", + "latitude_deg": "63.458057403564", + "longitude_deg": "120.26916503906", + "elevation_ft": "411", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Verkhnevilyuisk", + "scheduled_service": "yes", + "gps_code": "UENI", + "iata_code": "VHV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Verkhnevilyuysk_Airport", + "keywords": "УЕНИ, Verkhneviluisk Airport, Verhnevilyuisk Airport, Verhneviluisk Airport, Аэропорт Верхневилюйск" + }, + { + "id": "42978", + "ident": "UENK", + "type": "medium_airport", + "name": "Kyzyl-Syr Airport", + "latitude_deg": "63.8849983215332", + "longitude_deg": "122.7770004272461", + "elevation_ft": "331", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Kyzyl-Syr", + "scheduled_service": "no", + "gps_code": "UENK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kyzyl-Syr_Airport", + "keywords": "Аэропорт Кызыл-Сыр" + }, + { + "id": "32511", + "ident": "UENN", + "type": "small_airport", + "name": "Nyurba Airport", + "latitude_deg": "63.294998", + "longitude_deg": "118.336998", + "elevation_ft": "394", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Nyurba", + "scheduled_service": "no", + "gps_code": "UENN", + "iata_code": "NYR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nyurba_Airport" + }, + { + "id": "335185", + "ident": "UENO", + "type": "small_airport", + "name": "Chapayevo Airport", + "latitude_deg": "60.133212", + "longitude_deg": "117.13872", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UENO" + }, + { + "id": "35092", + "ident": "UENS", + "type": "small_airport", + "name": "Suntar Airport", + "latitude_deg": "62.185001373291", + "longitude_deg": "117.63500213623", + "elevation_ft": "452", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Suntar", + "scheduled_service": "yes", + "gps_code": "UENS", + "iata_code": "SUY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Suntar_Airport", + "keywords": "УЕНС, Сунтар" + }, + { + "id": "335186", + "ident": "UENU", + "type": "small_airport", + "name": "Sayylyk Airport", + "latitude_deg": "63.852094", + "longitude_deg": "123.846388", + "elevation_ft": "333", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UENU", + "keywords": "УЕНУ, Мукучи, Mukuchi" + }, + { + "id": "43006", + "ident": "UENW", + "type": "medium_airport", + "name": "Vilyuisk Airport", + "latitude_deg": "63.75666809082", + "longitude_deg": "121.69333648682", + "elevation_ft": "361", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Vilyuisk", + "scheduled_service": "yes", + "gps_code": "UENW", + "iata_code": "VYI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vilyuisk_Airport", + "keywords": "УЕНВ, Вилюйск" + }, + { + "id": "335187", + "ident": "UEOA", + "type": "small_airport", + "name": "Macha Airport", + "latitude_deg": "59.900692", + "longitude_deg": "117.597742", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEOA" + }, + { + "id": "335188", + "ident": "UEOQ", + "type": "small_airport", + "name": "Tyanya Airport", + "latitude_deg": "59.05574", + "longitude_deg": "119.780331", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEOQ" + }, + { + "id": "335189", + "ident": "UEOT", + "type": "small_airport", + "name": "Tokko Airport", + "latitude_deg": "59.978294", + "longitude_deg": "119.851098", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEOT" + }, + { + "id": "335190", + "ident": "UEOU", + "type": "small_airport", + "name": "Uritskoye Airport", + "latitude_deg": "60.558207", + "longitude_deg": "122.430611", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEOU" + }, + { + "id": "335191", + "ident": "UEQC", + "type": "small_airport", + "name": "Ezhantsy Airport", + "latitude_deg": "60.480888", + "longitude_deg": "135.146577", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEQC" + }, + { + "id": "335192", + "ident": "UEQK", + "type": "small_airport", + "name": "Kyuptsy Airport", + "latitude_deg": "60.858792", + "longitude_deg": "135.308905", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEQK" + }, + { + "id": "323215", + "ident": "UEQM", + "type": "small_airport", + "name": "Ust-Mil Airstrip", + "latitude_deg": "59.631249", + "longitude_deg": "133.089694", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Ust-Mil", + "scheduled_service": "no", + "gps_code": "UEQM" + }, + { + "id": "315334", + "ident": "UEQN", + "type": "small_airport", + "name": "Allakh-Yun Airport", + "latitude_deg": "61.1431", + "longitude_deg": "138.0313", + "elevation_ft": "1940", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Allakh-Yun", + "scheduled_service": "no", + "gps_code": "UEQN", + "local_code": "UEQN", + "keywords": "УЕЯН, Аллах-Юнь" + }, + { + "id": "43663", + "ident": "UERA", + "type": "medium_airport", + "name": "Aykhal Airport", + "latitude_deg": "65.959197998047", + "longitude_deg": "111.54650115967", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UERA", + "keywords": "УЕРА, Аikhal Airport, Аэропорт Айхал" + }, + { + "id": "32512", + "ident": "UERL", + "type": "medium_airport", + "name": "Lensk Airport", + "latitude_deg": "60.7206001282", + "longitude_deg": "114.825996399", + "elevation_ft": "801", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Lensk", + "scheduled_service": "yes", + "gps_code": "UERL", + "iata_code": "ULK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lensk_Airport" + }, + { + "id": "44597", + "ident": "UERO", + "type": "small_airport", + "name": "Olenyok Airport", + "latitude_deg": "68.514999", + "longitude_deg": "112.480003", + "elevation_ft": "847", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Olenyok", + "scheduled_service": "no", + "gps_code": "UERO", + "iata_code": "ONK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Olenyok_Airport", + "keywords": "УЕРО, Olenek Airport, Аэропорт Оленёк, Аэропорт Оленек" + }, + { + "id": "6448", + "ident": "UERP", + "type": "medium_airport", + "name": "Polyarny Airport", + "latitude_deg": "66.4003982544", + "longitude_deg": "112.029998779", + "elevation_ft": "1660", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Yakutia", + "scheduled_service": "yes", + "gps_code": "UERP", + "iata_code": "PYJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Polyarny_Airport", + "keywords": "Аэропорт Полярный" + }, + { + "id": "6449", + "ident": "UERR", + "type": "medium_airport", + "name": "Mirny Airport", + "latitude_deg": "62.534698486328125", + "longitude_deg": "114.03900146484375", + "elevation_ft": "1156", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Mirny", + "scheduled_service": "yes", + "gps_code": "UERR", + "iata_code": "MJZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mirny_Airport" + }, + { + "id": "44870", + "ident": "UERS", + "type": "medium_airport", + "name": "Saskylakh Airport", + "latitude_deg": "71.927902", + "longitude_deg": "114.080002", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Saskylakh", + "scheduled_service": "yes", + "gps_code": "UERS", + "iata_code": "SYS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saskylakh_Airport", + "keywords": "УЕРС, Аэропорт Саскылах" + }, + { + "id": "32513", + "ident": "UERT", + "type": "small_airport", + "name": "Vitim Airport", + "latitude_deg": "59.458", + "longitude_deg": "112.563004", + "elevation_ft": "610", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Vitim", + "scheduled_service": "no", + "gps_code": "UERT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vitim_Airport", + "keywords": "Аэропорт Витим" + }, + { + "id": "315337", + "ident": "UESA", + "type": "closed", + "name": "Andryushkino Airport", + "latitude_deg": "69.171971", + "longitude_deg": "154.455067", + "elevation_ft": "26", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Andryushkino", + "scheduled_service": "no", + "gps_code": "UESA", + "local_code": "UESA", + "keywords": "УЕСА, Андрюшкино" + }, + { + "id": "335193", + "ident": "UESC", + "type": "small_airport", + "name": "Berezovka Airport", + "latitude_deg": "67.120183", + "longitude_deg": "156.589766", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UESC" + }, + { + "id": "43667", + "ident": "UESG", + "type": "medium_airport", + "name": "Belaya Gora Airport", + "latitude_deg": "68.556227", + "longitude_deg": "146.22784", + "elevation_ft": "118", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Belaya Gora", + "scheduled_service": "no", + "gps_code": "UESG", + "iata_code": "BGN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Belaya_Gora_Airport", + "keywords": "Аэропорт Белая Гора" + }, + { + "id": "335194", + "ident": "UESH", + "type": "small_airport", + "name": "Argakhtakh Airport", + "latitude_deg": "68.443333", + "longitude_deg": "153.362222", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UESH" + }, + { + "id": "316761", + "ident": "UESK", + "type": "medium_airport", + "name": "Srednekolymsk Airport", + "latitude_deg": "67.4805", + "longitude_deg": "153.7364", + "elevation_ft": "60", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Srednekolymsk", + "scheduled_service": "yes", + "gps_code": "UESK", + "iata_code": "SEK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Srednekolymsk_Airport", + "keywords": "УЕСК, Среднеколымск" + }, + { + "id": "335195", + "ident": "UESL", + "type": "small_airport", + "name": "Sylgy-Ytar Airport", + "latitude_deg": "67.848145", + "longitude_deg": "154.838862", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UESL" + }, + { + "id": "32514", + "ident": "UESO", + "type": "medium_airport", + "name": "Chokurdakh Airport", + "latitude_deg": "70.62310028076172", + "longitude_deg": "147.90199279785156", + "elevation_ft": "151", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Chokurdah", + "scheduled_service": "yes", + "gps_code": "UESO", + "iata_code": "CKH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chokurdakh_Airport", + "keywords": "Chokurdah Airport, Cokurdah Airport, Аэропорт Чокурдах" + }, + { + "id": "335196", + "ident": "UESR", + "type": "small_airport", + "name": "Tumat Airport", + "latitude_deg": "70.72611", + "longitude_deg": "139.235833", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UESR" + }, + { + "id": "30870", + "ident": "UESS", + "type": "medium_airport", + "name": "Cherskiy Airport", + "latitude_deg": "68.7406005859375", + "longitude_deg": "161.33799743652344", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Cherskiy", + "scheduled_service": "yes", + "gps_code": "UESS", + "iata_code": "CYX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chersky_Airport", + "keywords": "Chersky Airport, Аэропорт Черский" + }, + { + "id": "6450", + "ident": "UEST", + "type": "medium_airport", + "name": "Tiksi Airport", + "latitude_deg": "71.697700500488", + "longitude_deg": "128.90299987793", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Tiksi", + "scheduled_service": "yes", + "gps_code": "UEST", + "iata_code": "IKS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tiksi_Airport", + "keywords": "УЕСТ, Аеропорт Тикси" + }, + { + "id": "42980", + "ident": "UESU", + "type": "medium_airport", + "name": "Zyryanka Airport", + "latitude_deg": "65.7485", + "longitude_deg": "150.8889", + "elevation_ft": "140", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Zyryanka", + "scheduled_service": "yes", + "gps_code": "UESU", + "iata_code": "ZKP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zyryanka_Airport", + "keywords": "УЕСУ, Аэропорт Зырянка" + }, + { + "id": "335197", + "ident": "UESV", + "type": "small_airport", + "name": "Svatay Airport", + "latitude_deg": "68.057338", + "longitude_deg": "151.79625", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UESV" + }, + { + "id": "335198", + "ident": "UESX", + "type": "small_airport", + "name": "Aleko-Kyuyol Airport", + "latitude_deg": "68.676693", + "longitude_deg": "151.873798", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UESX" + }, + { + "id": "335199", + "ident": "UESY", + "type": "small_airport", + "name": "Abyy Airport", + "latitude_deg": "68.400997", + "longitude_deg": "145.094419", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Abyy", + "scheduled_service": "no", + "gps_code": "UESY" + }, + { + "id": "335200", + "ident": "UESZ", + "type": "small_airport", + "name": "Kazachye Airport", + "latitude_deg": "70.746294", + "longitude_deg": "136.179271", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UESZ" + }, + { + "id": "43679", + "ident": "UEWD", + "type": "small_airport", + "name": "Dzhargalakh Airport", + "latitude_deg": "67.2672", + "longitude_deg": "130.5319", + "elevation_ft": "1400", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Dzhargalakh", + "scheduled_service": "no", + "gps_code": "UEWD", + "keywords": "УЕВД, Аэродром Джаргалах" + }, + { + "id": "335201", + "ident": "UEWO", + "type": "small_airport", + "name": "Kudu-Kyuyol Airport", + "latitude_deg": "59.460858", + "longitude_deg": "121.334896", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "scheduled_service": "no", + "gps_code": "UEWO" + }, + { + "id": "335167", + "ident": "UEYR", + "type": "small_airport", + "name": "Sasyr Airport", + "latitude_deg": "65.162269", + "longitude_deg": "147.073803", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Sasyr", + "scheduled_service": "no", + "gps_code": "UEYR" + }, + { + "id": "313726", + "ident": "UG-0001", + "type": "small_airport", + "name": "Kisoro Airport", + "latitude_deg": "-1.2837", + "longitude_deg": "29.7197", + "elevation_ft": "6200", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-W", + "municipality": "Kisoro", + "scheduled_service": "no", + "gps_code": "HUKI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kisoro_Airport" + }, + { + "id": "315271", + "ident": "UG-0002", + "type": "small_airport", + "name": "Savannah Airstrip", + "latitude_deg": "-0.7165", + "longitude_deg": "29.6997", + "elevation_ft": "3600", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-W", + "municipality": "Kihihi", + "scheduled_service": "no", + "iata_code": "KHX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Savannah_Airstrip" + }, + { + "id": "315276", + "ident": "UG-0003", + "type": "small_airport", + "name": "Mutukula Airport", + "latitude_deg": "-0.9273", + "longitude_deg": "31.4417", + "elevation_ft": "3820", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-C", + "municipality": "Mutukula", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mutukula_Airport" + }, + { + "id": "315278", + "ident": "UG-0004", + "type": "small_airport", + "name": "Nakasongola Airport", + "latitude_deg": "1.4077", + "longitude_deg": "32.4642", + "elevation_ft": "3565", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-C", + "municipality": "Nakasongola", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nakasongola_Airport" + }, + { + "id": "318430", + "ident": "UG-0005", + "type": "small_airport", + "name": "Koboko Airport", + "latitude_deg": "3.409147", + "longitude_deg": "30.969793", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-N", + "municipality": "Koboko", + "scheduled_service": "no" + }, + { + "id": "318431", + "ident": "UG-0006", + "type": "small_airport", + "name": "Kalongo Airport", + "latitude_deg": "3.044704", + "longitude_deg": "33.379279", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-N", + "municipality": "Kalongo", + "scheduled_service": "no" + }, + { + "id": "318930", + "ident": "UG-0007", + "type": "small_airport", + "name": "Chobe Safari Lodge Airport", + "latitude_deg": "2.239199", + "longitude_deg": "32.14468", + "elevation_ft": "3140", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-W", + "municipality": "Lolim", + "scheduled_service": "no", + "local_code": "HUOY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chobe_Safari_Lodge_Airport" + }, + { + "id": "318931", + "ident": "UG-0008", + "type": "small_airport", + "name": "Matany Airstrip", + "latitude_deg": "2.449456", + "longitude_deg": "34.396493", + "elevation_ft": "3895", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-N", + "municipality": "Matany", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Matany_Airstrip" + }, + { + "id": "319083", + "ident": "UG-0009", + "type": "small_airport", + "name": "Lake Albert Lodge Airstrip", + "latitude_deg": "1.47099", + "longitude_deg": "30.93749", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-W", + "municipality": "Munihoro", + "scheduled_service": "no" + }, + { + "id": "319084", + "ident": "UG-0010", + "type": "small_airport", + "name": "Buhuka Airport", + "latitude_deg": "1.246181", + "longitude_deg": "30.747939", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-W", + "municipality": "Buhuka", + "scheduled_service": "no" + }, + { + "id": "319085", + "ident": "UG-0011", + "type": "small_airport", + "name": "Buseruka Airport", + "latitude_deg": "1.555726", + "longitude_deg": "31.094862", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-W", + "municipality": "Buseruka", + "scheduled_service": "no" + }, + { + "id": "319086", + "ident": "UG-0012", + "type": "small_airport", + "name": "Butiaba Airport", + "latitude_deg": "1.80863", + "longitude_deg": "31.342983", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-W", + "municipality": "Butiaba", + "scheduled_service": "no" + }, + { + "id": "354058", + "ident": "UG-0013", + "type": "closed", + "name": "Hoima International Airport (under construction)", + "latitude_deg": "1.448544", + "longitude_deg": "31.073214", + "elevation_ft": "3510", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-W", + "municipality": "Hoima", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hoima_International_Airport", + "keywords": "Kabaale International" + }, + { + "id": "35165", + "ident": "UG-OYG", + "type": "small_airport", + "name": "Moyo Airport", + "latitude_deg": "3.6444001197815", + "longitude_deg": "31.762762069702", + "elevation_ft": "3250", + "continent": "AF", + "iso_country": "UG", + "iso_region": "UG-N", + "municipality": "Moyo", + "scheduled_service": "yes", + "gps_code": "HUMY", + "iata_code": "OYG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moyo_Airport" + }, + { + "id": "3086", + "ident": "UG0U", + "type": "medium_airport", + "name": "Gudauta Air Base", + "latitude_deg": "43.104", + "longitude_deg": "40.5793", + "elevation_ft": "79", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-AB", + "municipality": "Gudauta", + "scheduled_service": "no", + "gps_code": "UGSG", + "keywords": "Bambora Air Base, Bombora Air Base, Bamboura Air Base, Bomboura Air Base, UG23" + }, + { + "id": "78", + "ident": "UG11", + "type": "medium_airport", + "name": "Dollyar Air Base", + "latitude_deg": "40.8876", + "longitude_deg": "45.957001", + "elevation_ft": "1099", + "continent": "AS", + "iso_country": "AZ", + "iso_region": "AZ-SKR", + "municipality": "Dollyar", + "scheduled_service": "no", + "local_code": "UB11", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dollyar_Air_Base", + "keywords": "Dallyar Air Base, Аэродром Долляр, Аэродром Далляр" + }, + { + "id": "3085", + "ident": "UG22", + "type": "medium_airport", + "name": "Tbilisi Marneuli Air Base", + "latitude_deg": "41.459202", + "longitude_deg": "44.783199", + "elevation_ft": "1305", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-KK", + "municipality": "Tbilisi", + "scheduled_service": "no", + "keywords": "UG22" + }, + { + "id": "3087", + "ident": "UG24", + "type": "medium_airport", + "name": "Tbilisi Soganlug Air Base", + "latitude_deg": "41.649200439453125", + "longitude_deg": "44.9364013671875", + "elevation_ft": "1250", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-TB", + "municipality": "Tbilisi", + "scheduled_service": "no", + "keywords": "UG24" + }, + { + "id": "3088", + "ident": "UG25", + "type": "closed", + "name": "Telavi Kurdgelauri Airport", + "latitude_deg": "41.9533996582", + "longitude_deg": "45.5079994202", + "elevation_ft": "1489", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-KA", + "municipality": "Telavi", + "scheduled_service": "no", + "keywords": "UG25" + }, + { + "id": "3089", + "ident": "UG26", + "type": "small_airport", + "name": "Kutaisi West Airport", + "latitude_deg": "42.248600006103516", + "longitude_deg": "42.624698638916016", + "elevation_ft": "384", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-IM", + "municipality": "Kutaisi", + "scheduled_service": "no", + "keywords": "UG26" + }, + { + "id": "3090", + "ident": "UG27", + "type": "medium_airport", + "name": "Vaziani Air Base", + "latitude_deg": "41.62799835205078", + "longitude_deg": "45.030799865722656", + "elevation_ft": "1460", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-TB", + "municipality": "Tbilisi", + "scheduled_service": "no", + "keywords": "UG27" + }, + { + "id": "3091", + "ident": "UG28", + "type": "medium_airport", + "name": "Bolshiye Shiraki Air Base", + "latitude_deg": "41.37950134277344", + "longitude_deg": "46.3672981262207", + "elevation_ft": "1795", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-KA", + "municipality": "Bolshiye Shiraki", + "scheduled_service": "no", + "keywords": "UG28" + }, + { + "id": "25240", + "ident": "UGB", + "type": "small_airport", + "name": "Ugashik Bay Airport", + "latitude_deg": "57.424052", + "longitude_deg": "-157.74479", + "elevation_ft": "132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Pilot Point", + "scheduled_service": "no", + "iata_code": "UGB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ugashik_Bay_Airport" + }, + { + "id": "44384", + "ident": "UGEJ", + "type": "closed", + "name": "Jermuk Airport", + "latitude_deg": "39.823666", + "longitude_deg": "45.67327", + "continent": "AS", + "iso_country": "AM", + "iso_region": "AM-VD", + "municipality": "Jermuk", + "scheduled_service": "no", + "gps_code": "UGEJ", + "keywords": "Аэропорт Джермук" + }, + { + "id": "6451", + "ident": "UGKO", + "type": "medium_airport", + "name": "David the Builder Kutaisi International Airport", + "latitude_deg": "42.176768", + "longitude_deg": "42.482393", + "elevation_ft": "223", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-IM", + "municipality": "Kopitnari", + "scheduled_service": "yes", + "gps_code": "UGKO", + "iata_code": "KUT", + "wikipedia_link": "https://en.wikipedia.org/wiki/David_the_Builder_Kutaisi_International_Airport", + "keywords": "Kopitnari" + }, + { + "id": "45187", + "ident": "UGMM", + "type": "closed", + "name": "Mukhrani Airport", + "latitude_deg": "41.916", + "longitude_deg": "44.566", + "elevation_ft": "1807", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-MM", + "municipality": "Mukhrani", + "scheduled_service": "no", + "gps_code": "UGMM", + "keywords": "Muhrani Airport" + }, + { + "id": "315702", + "ident": "UGMS", + "type": "small_airport", + "name": "Mestia Queen Tamar Airport", + "latitude_deg": "43.053597", + "longitude_deg": "42.749012", + "elevation_ft": "4778", + "continent": "EU", + "iso_country": "GE", + "iso_region": "GE-SZ", + "municipality": "Mestia", + "scheduled_service": "yes", + "gps_code": "UGMS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Queen_Tamar_Airport" + }, + { + "id": "45186", + "ident": "UGSA", + "type": "small_airport", + "name": "Natakhtari Airfield", + "latitude_deg": "41.921737", + "longitude_deg": "44.712166", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-MM", + "municipality": "Natakhtari", + "scheduled_service": "yes", + "gps_code": "UGSA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Natakhtari_Airfield", + "keywords": "ნატახტარი" + }, + { + "id": "6452", + "ident": "UGSB", + "type": "medium_airport", + "name": "Batumi International Airport", + "latitude_deg": "41.6102981567", + "longitude_deg": "41.5997009277", + "elevation_ft": "105", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-AJ", + "municipality": "Batumi", + "scheduled_service": "yes", + "gps_code": "UGSB", + "iata_code": "BUS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Batumi_International_Airport" + }, + { + "id": "3092", + "ident": "UGSS", + "type": "medium_airport", + "name": "Sukhumi Babushara / Vladislav Ardzinba International Airport", + "latitude_deg": "42.8582", + "longitude_deg": "41.128101", + "elevation_ft": "53", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-AB", + "municipality": "Sukhumi", + "scheduled_service": "yes", + "gps_code": "UGSS", + "iata_code": "SUI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sukhumi_Babushara_Airport", + "keywords": "Babushara Airport, Sukhumi Dranda, UG29, URAS" + }, + { + "id": "6453", + "ident": "UGTB", + "type": "large_airport", + "name": "Tbilisi International Airport", + "latitude_deg": "41.6692008972", + "longitude_deg": "44.95470047", + "elevation_ft": "1624", + "continent": "AS", + "iso_country": "GE", + "iso_region": "GE-TB", + "municipality": "Tbilisi", + "scheduled_service": "yes", + "gps_code": "UGTB", + "iata_code": "TBS", + "home_link": "http://www.tbilisiairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tbilisi_International_Airport", + "keywords": "თბილისის საერთაშორისო აეროპორტი" + }, + { + "id": "323629", + "ident": "UHAC", + "type": "small_airport", + "name": "Chuvanskoye Airport", + "latitude_deg": "65.172163", + "longitude_deg": "167.952484", + "elevation_ft": "644", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Chuvanskoye", + "scheduled_service": "no", + "gps_code": "UHAC", + "local_code": "UHAC", + "keywords": "УХАЦ, Чуванское" + }, + { + "id": "315335", + "ident": "UHAO", + "type": "heliport", + "name": "Anadyr Heliport", + "latitude_deg": "64.716619", + "longitude_deg": "177.463081", + "elevation_ft": "32", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Anadyr", + "scheduled_service": "no", + "gps_code": "UHAO", + "local_code": "UHAO", + "keywords": "УХАО, Анадырь/Окружной," + }, + { + "id": "323631", + "ident": "UHAR", + "type": "small_airport", + "name": "Krasneno Airport", + "latitude_deg": "64.630631", + "longitude_deg": "174.781866", + "elevation_ft": "52", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Krasneno", + "scheduled_service": "no", + "gps_code": "UHAR", + "local_code": "UHAR", + "keywords": "УХАР, Краснено" + }, + { + "id": "323630", + "ident": "UHAW", + "type": "small_airport", + "name": "Vayegi Airport", + "latitude_deg": "64.167442", + "longitude_deg": "171.057887", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Vayegi", + "scheduled_service": "no", + "gps_code": "UHAW", + "local_code": "UHAW", + "keywords": "УХАВ, Ваеги" + }, + { + "id": "44365", + "ident": "UHB1", + "type": "medium_airport", + "name": "Birofeld Air Base", + "latitude_deg": "48.459999084472656", + "longitude_deg": "132.66000366210938", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-YEV", + "municipality": "Birofeld", + "scheduled_service": "no", + "gps_code": "UHB1", + "keywords": "Birofeld Severozapadniy Air Base, Birofeld Northwest Air Base, Аэродром Бирофельд Северозападный" + }, + { + "id": "315291", + "ident": "UHBA", + "type": "small_airport", + "name": "Arkhara Airport", + "latitude_deg": "49.4165", + "longitude_deg": "130.0673", + "elevation_ft": "420", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Arkhara", + "scheduled_service": "no", + "gps_code": "UHBA", + "keywords": "УХБА, Архара" + }, + { + "id": "6454", + "ident": "UHBB", + "type": "medium_airport", + "name": "Ignatyevo Airport", + "latitude_deg": "50.42539978027344", + "longitude_deg": "127.41200256347656", + "elevation_ft": "638", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Blagoveschensk", + "scheduled_service": "yes", + "gps_code": "UHBB", + "iata_code": "BQS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ignatyevo_Airport", + "keywords": "Blagoveschensk Airport, Blagoveshchensk Airport, Аэропорт Игнатьево, Аэропорт Благовещенск" + }, + { + "id": "43687", + "ident": "UHBE", + "type": "small_airport", + "name": "Zeya Airport", + "latitude_deg": "53.687023", + "longitude_deg": "127.090972", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Zeya", + "scheduled_service": "no", + "gps_code": "UHBE", + "keywords": "Аэропорт Зея" + }, + { + "id": "31520", + "ident": "UHBI", + "type": "small_airport", + "name": "Magdagachi Airport", + "latitude_deg": "53.472467", + "longitude_deg": "125.798094", + "elevation_ft": "1211", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Magdagachi", + "scheduled_service": "no", + "gps_code": "UHBI", + "iata_code": "GDG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Magdagachi_Airport" + }, + { + "id": "346954", + "ident": "UHBJ", + "type": "closed", + "name": "Sofiysk Airport", + "latitude_deg": "52.252622", + "longitude_deg": "133.962878", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Sofiysk", + "scheduled_service": "no", + "keywords": "UHBJ" + }, + { + "id": "321903", + "ident": "UHBN", + "type": "small_airport", + "name": "Novokievsky Uval Airport", + "latitude_deg": "51.6603", + "longitude_deg": "128.9329", + "elevation_ft": "591", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Novokievsky Uval", + "scheduled_service": "no", + "gps_code": "UHBN", + "local_code": "UHBN", + "keywords": "УХБН, Новокиевский Увал" + }, + { + "id": "335062", + "ident": "UHBO", + "type": "small_airport", + "name": "Oktyabrskiy Airport", + "latitude_deg": "53.004403", + "longitude_deg": "128.662691", + "elevation_ft": "1070", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "scheduled_service": "no", + "gps_code": "UHBO" + }, + { + "id": "32516", + "ident": "UHBP", + "type": "small_airport", + "name": "Ekimchan Airport", + "latitude_deg": "53.07609939575195", + "longitude_deg": "132.9510040283203", + "elevation_ft": "1781", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Ekimchan", + "scheduled_service": "no", + "gps_code": "UHBP", + "keywords": "Аэропорт Экимчан" + }, + { + "id": "42915", + "ident": "UHBS", + "type": "small_airport", + "name": "Svobodny Airport", + "latitude_deg": "51.45500183105469", + "longitude_deg": "128.09832763671875", + "elevation_ft": "600", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Svobodny", + "scheduled_service": "no", + "gps_code": "UHBS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Svobodny_Airport" + }, + { + "id": "32490", + "ident": "UHBW", + "type": "small_airport", + "name": "Tynda Airport", + "latitude_deg": "55.284199", + "longitude_deg": "124.778999", + "elevation_ft": "2001", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Tynda", + "scheduled_service": "no", + "gps_code": "UHBW", + "iata_code": "TYD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tynda_Airport", + "keywords": "Sigikta Airport" + }, + { + "id": "321901", + "ident": "UHBX", + "type": "small_airport", + "name": "Gornyy Airport", + "latitude_deg": "54.653452", + "longitude_deg": "128.455903", + "elevation_ft": "1363", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Gornyy", + "scheduled_service": "no", + "gps_code": "UHBX", + "local_code": "UHBX", + "keywords": "УХБЬ, Горный" + }, + { + "id": "324924", + "ident": "UHDW", + "type": "small_airport", + "name": "Vankarem Airport", + "latitude_deg": "67.838719", + "longitude_deg": "-175.8494283", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Vankarem", + "scheduled_service": "no", + "gps_code": "UHDW", + "keywords": "УХДВ, Ванкарем" + }, + { + "id": "321902", + "ident": "UHHG", + "type": "small_airport", + "name": "Bomnak Airfield", + "latitude_deg": "54.71275", + "longitude_deg": "128.8577", + "elevation_ft": "1199", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AMU", + "municipality": "Bomnak", + "scheduled_service": "no", + "gps_code": "UHHG", + "local_code": "UHHG", + "keywords": "УХХГ, Бомнак" + }, + { + "id": "6455", + "ident": "UHHH", + "type": "medium_airport", + "name": "Khabarovsk Novy Airport", + "latitude_deg": "48.528338", + "longitude_deg": "135.188588", + "elevation_ft": "244", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Khabarovsk", + "scheduled_service": "yes", + "gps_code": "UHHH", + "iata_code": "KHV", + "home_link": "http://airkhv.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khabarovsk_Novy_Airport", + "keywords": "Аэропорт Хабаровск-Новый" + }, + { + "id": "324923", + "ident": "UHHO", + "type": "small_airport", + "name": "Troitskoye Airport", + "latitude_deg": "49.444833", + "longitude_deg": "136.571033", + "elevation_ft": "93", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Troitskoye", + "scheduled_service": "no", + "gps_code": "UHHO", + "keywords": "УХХО, Троицкое" + }, + { + "id": "44856", + "ident": "UHHT", + "type": "small_airport", + "name": "Khabarovsk MVL Airport", + "latitude_deg": "48.525484", + "longitude_deg": "135.152478", + "elevation_ft": "262", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Khabarovsk", + "scheduled_service": "no", + "gps_code": "UHHT", + "keywords": "Аэропорт Хабаровск" + }, + { + "id": "44615", + "ident": "UHHY", + "type": "small_airport", + "name": "Chumikan Airport", + "latitude_deg": "54.69599914550781", + "longitude_deg": "135.28599548339844", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Chumikan", + "scheduled_service": "no", + "gps_code": "UHHY", + "keywords": "Аэропорт Чумикан" + }, + { + "id": "43691", + "ident": "UHJI", + "type": "small_airport", + "name": "Icha Airport", + "latitude_deg": "55.595402", + "longitude_deg": "155.619003", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Icha", + "scheduled_service": "no", + "keywords": "Аэропорт Ича, УХЯИ" + }, + { + "id": "44367", + "ident": "UHK1", + "type": "small_airport", + "name": "Kalinka Airport", + "latitude_deg": "48.407329", + "longitude_deg": "135.411571", + "elevation_ft": "151", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Blagodatnoye", + "scheduled_service": "no", + "gps_code": "UHK1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Blagodatnoye", + "keywords": "Blagodatnoye Air Base, Аэродром Благодатное" + }, + { + "id": "44857", + "ident": "UHK2", + "type": "small_airport", + "name": "Garovka Air Base", + "latitude_deg": "48.395946", + "longitude_deg": "135.223477", + "elevation_ft": "290", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Khabarovsk", + "scheduled_service": "no", + "gps_code": "UHK2", + "keywords": "Аэродром Гаровка" + }, + { + "id": "32517", + "ident": "UHKD", + "type": "medium_airport", + "name": "Dzemgi Airport", + "latitude_deg": "50.60559844970703", + "longitude_deg": "137.08099365234375", + "elevation_ft": "89", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Komsomolsk-na-Amur", + "scheduled_service": "yes", + "gps_code": "UHKD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dzemgi_Airport" + }, + { + "id": "43011", + "ident": "UHKG", + "type": "medium_airport", + "name": "Kamenny Ruchey Naval Air Base", + "latitude_deg": "49.23570251464844", + "longitude_deg": "140.19309997558594", + "elevation_ft": "659", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Sovetskaya Gavan", + "scheduled_service": "no", + "gps_code": "UHKG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kamenny_Ruchey", + "keywords": "Монгохто, Каменный Ручей" + }, + { + "id": "31790", + "ident": "UHKK", + "type": "medium_airport", + "name": "Komsomolsk-on-Amur Airport", + "latitude_deg": "50.409000396728516", + "longitude_deg": "136.9340057373047", + "elevation_ft": "92", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Komsomolsk-on-Amur", + "scheduled_service": "yes", + "gps_code": "UHKK", + "iata_code": "KXK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Komsomolsk-on-Amur_Airport", + "keywords": "Komsomolsk-na-Amure Airport, Khurba Airport, Аэропорт Комсомольск-на-Амуре, Аэропорт Хурба" + }, + { + "id": "43866", + "ident": "UHKM", + "type": "medium_airport", + "name": "Sovetskaya Gavan (Maygatka) Airport", + "latitude_deg": "48.925067", + "longitude_deg": "140.035348", + "elevation_ft": "768", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Sovetskaya Gavan", + "scheduled_service": "no", + "gps_code": "UHKM", + "iata_code": "GVN", + "keywords": "Sovietskaya Gavan Airport, May-Gatka Airport, Аэропорт Советская Гавань, Аэропорт Май-Гатка" + }, + { + "id": "339935", + "ident": "UHKP", + "type": "small_airport", + "name": "Sovetskaya Gavan (Postovaya) Airport", + "latitude_deg": "49.0311", + "longitude_deg": "140.22678", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Zavety Il'icha", + "scheduled_service": "no", + "gps_code": "UHKP" + }, + { + "id": "6456", + "ident": "UHMA", + "type": "medium_airport", + "name": "Ugolny Yuri Ryktheu Airport", + "latitude_deg": "64.734902", + "longitude_deg": "177.740997", + "elevation_ft": "194", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Anadyr", + "scheduled_service": "yes", + "gps_code": "UHMA", + "iata_code": "DYR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ugolny_Airport", + "keywords": "Аnadyr Airport, Аэропорт Анадырь" + }, + { + "id": "6457", + "ident": "UHMD", + "type": "medium_airport", + "name": "Provideniya Bay Airport", + "latitude_deg": "64.37809753417969", + "longitude_deg": "-173.2429962158203", + "elevation_ft": "72", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Chukotka", + "scheduled_service": "no", + "gps_code": "UHMD", + "iata_code": "PVS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Provideniya_Bay_Airport", + "keywords": "Bukhta Provideniya Airport, Urelik Airport, Ureliki Airport, Аэропорт Бухта Провидения, Аэропорт Урелики" + }, + { + "id": "43686", + "ident": "UHME", + "type": "small_airport", + "name": "Zaliv Kresta Airport", + "latitude_deg": "66.358398", + "longitude_deg": "-179.107697", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Egvekinot", + "scheduled_service": "no", + "gps_code": "UHME", + "keywords": "Аэропорт Залив Креста" + }, + { + "id": "44659", + "ident": "UHMF", + "type": "medium_airport", + "name": "Omsukchan Airport", + "latitude_deg": "62.457000732421875", + "longitude_deg": "155.7449951171875", + "elevation_ft": "1732", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MAG", + "municipality": "Omsukchan", + "scheduled_service": "yes", + "gps_code": "UHMF", + "keywords": "Аэропорт Омсукчан" + }, + { + "id": "42960", + "ident": "UHMG", + "type": "medium_airport", + "name": "Chaybukha Airport", + "latitude_deg": "61.834999084472656", + "longitude_deg": "160.54800415039062", + "elevation_ft": "207", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-MAG", + "municipality": "Chaybukha", + "scheduled_service": "yes", + "gps_code": "UHMG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chaybukha_Airport", + "keywords": "Airport Chaibukha,Airport Gizhiga, Аэропорт Чайбуха, Аэропорт Гижига" + }, + { + "id": "42964", + "ident": "UHMH", + "type": "closed", + "name": "Susuman Airport", + "latitude_deg": "62.766666412353516", + "longitude_deg": "148.14666748046875", + "elevation_ft": "2129", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-MAG", + "municipality": "Susman", + "scheduled_service": "no", + "gps_code": "UHMH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Susuman_Airport" + }, + { + "id": "35040", + "ident": "UHMI", + "type": "small_airport", + "name": "Mys Shmidta Airport", + "latitude_deg": "68.86830139160156", + "longitude_deg": "-179.3730010986328", + "elevation_ft": "20", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Mys Shmidta", + "scheduled_service": "no", + "gps_code": "UHMI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mys_Shmidta_Airport" + }, + { + "id": "44473", + "ident": "UHMK", + "type": "medium_airport", + "name": "Keperveem Airport", + "latitude_deg": "67.845001", + "longitude_deg": "166.139999", + "elevation_ft": "623", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Keperveem", + "scheduled_service": "yes", + "gps_code": "UHMK", + "iata_code": "KPW", + "keywords": "Keperveyem Airport, Аэропорт Кепервеем" + }, + { + "id": "42925", + "ident": "UHML", + "type": "small_airport", + "name": "Lavrentiya Airport", + "latitude_deg": "65.580426", + "longitude_deg": "-170.999177", + "elevation_ft": "30", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Lavrentiya", + "scheduled_service": "no", + "gps_code": "UHML", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lavrentiya_Airport" + }, + { + "id": "6458", + "ident": "UHMM", + "type": "medium_airport", + "name": "Sokol Airport", + "latitude_deg": "59.9109992980957", + "longitude_deg": "150.72000122070312", + "elevation_ft": "574", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-MAG", + "municipality": "Magadan", + "scheduled_service": "yes", + "gps_code": "UHMM", + "iata_code": "GDX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sokol_Airport" + }, + { + "id": "44610", + "ident": "UHMN", + "type": "small_airport", + "name": "Omolon Airport", + "latitude_deg": "65.23999786376953", + "longitude_deg": "160.5399932861328", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Omolon", + "scheduled_service": "yes", + "gps_code": "UHMN", + "keywords": "Аэропорт Омолон" + }, + { + "id": "44660", + "ident": "UHMO", + "type": "small_airport", + "name": "Markovo Airport", + "latitude_deg": "64.665088", + "longitude_deg": "170.429782", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Markovo", + "scheduled_service": "yes", + "gps_code": "UHMO", + "iata_code": "KVM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Markovo_Airport", + "keywords": "Аэропорт Марково" + }, + { + "id": "6459", + "ident": "UHMP", + "type": "medium_airport", + "name": "Pevek Airport", + "latitude_deg": "69.783302", + "longitude_deg": "170.597", + "elevation_ft": "11", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Apapelgino", + "scheduled_service": "no", + "gps_code": "UHMP", + "iata_code": "PWE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pevek_Airport", + "keywords": "УХМП, Аэропорт Певек" + }, + { + "id": "32518", + "ident": "UHMR", + "type": "small_airport", + "name": "Beringovskiy Airport", + "latitude_deg": "63.02", + "longitude_deg": "179.292999", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Beringovsky", + "scheduled_service": "no", + "gps_code": "UHMR", + "keywords": "Beringovsky Airport, Аэропорт Беринговский" + }, + { + "id": "42963", + "ident": "UHMS", + "type": "medium_airport", + "name": "Seymchan Airport", + "latitude_deg": "62.920780181884766", + "longitude_deg": "152.4227752685547", + "elevation_ft": "679", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-MAG", + "municipality": "Seymchan", + "scheduled_service": "no", + "gps_code": "UHMS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Seymchan_Airport", + "keywords": "Аэропорт Сеймчан" + }, + { + "id": "42961", + "ident": "UHMT", + "type": "medium_airport", + "name": "Magadan-13 Airport", + "latitude_deg": "59.62329864501953", + "longitude_deg": "150.9219970703125", + "elevation_ft": "164", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-MAG", + "municipality": "Magadan", + "scheduled_service": "no", + "gps_code": "UHMT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Magadan-13_Airport", + "keywords": "Аэропорт Магадан-13" + }, + { + "id": "42962", + "ident": "UHMW", + "type": "medium_airport", + "name": "Severo-Evensk Airport", + "latitude_deg": "61.921786", + "longitude_deg": "159.229059", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MAG", + "municipality": "Evensk", + "scheduled_service": "no", + "gps_code": "UHMW", + "iata_code": "SWV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Severo-Evensk_Airport", + "keywords": "Аэропорт Северо-Эвенск" + }, + { + "id": "324631", + "ident": "UHMZ", + "type": "small_airport", + "name": "Wrangel Island Airport", + "latitude_deg": "70.945356", + "longitude_deg": "-179.5", + "elevation_ft": "112", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHU", + "municipality": "Wrangel Island", + "scheduled_service": "no", + "gps_code": "UHMZ", + "local_code": "UHMZ", + "keywords": "УХМЗ, Остров Врангеля" + }, + { + "id": "42941", + "ident": "UHNA", + "type": "small_airport", + "name": "Munuk Airport", + "latitude_deg": "56.4321", + "longitude_deg": "138.0449", + "elevation_ft": "15", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Ayan", + "scheduled_service": "no", + "gps_code": "UHNA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Munuk_Airport", + "keywords": "УХНА, Аэропорт Мунук, Аян" + }, + { + "id": "45189", + "ident": "UHNB", + "type": "small_airport", + "name": "Bogorodskoye Airport", + "latitude_deg": "52.381041", + "longitude_deg": "140.449378", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Bogorodskoye", + "scheduled_service": "yes", + "gps_code": "UHNB", + "iata_code": "BQG", + "keywords": "Bogorodskoe Airport, Аэропорт Богородское, УХНБ" + }, + { + "id": "44611", + "ident": "UHNN", + "type": "medium_airport", + "name": "Nikolayevsk-na-Amure Airport", + "latitude_deg": "53.154999", + "longitude_deg": "140.649994", + "elevation_ft": "170", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Nikolayevsk-na-Amure Airport", + "scheduled_service": "yes", + "gps_code": "UHNN", + "iata_code": "NLI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nikolayevsk-on-Amur_Airport", + "keywords": "Nikolaevsk-na-Amure Airport, Nikolayevsk-on-Amur Airport, Аэропорт Николаевск-на-Амуре" + }, + { + "id": "339653", + "ident": "UHNT", + "type": "small_airport", + "name": "Tugur Airport", + "latitude_deg": "53.77586", + "longitude_deg": "136.83302", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Tugur", + "scheduled_service": "no", + "gps_code": "UHNT" + }, + { + "id": "315342", + "ident": "UHOA", + "type": "small_airport", + "name": "Arka Airport", + "latitude_deg": "60.1012", + "longitude_deg": "142.3015", + "elevation_ft": "749", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Arka", + "scheduled_service": "no", + "gps_code": "UHOA", + "local_code": "UHOA", + "keywords": "УХОА, Арка" + }, + { + "id": "35177", + "ident": "UHOO", + "type": "medium_airport", + "name": "Okhotsk Airport", + "latitude_deg": "59.410064697265625", + "longitude_deg": "143.05650329589844", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KHA", + "municipality": "Okhotsk", + "scheduled_service": "yes", + "gps_code": "UHOO", + "iata_code": "OHO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Okhotsk_Airport" + }, + { + "id": "42940", + "ident": "UHPA", + "type": "small_airport", + "name": "Ust-Pakhachi Airport", + "latitude_deg": "60.556587", + "longitude_deg": "169.107707", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Ust-Pakhachi", + "scheduled_service": "no", + "gps_code": "UHPA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ust-Pakhachi_Airport", + "keywords": "Аэропорт Усть-Пахачи, Пахачи, Pakhachi" + }, + { + "id": "308492", + "ident": "UHPD", + "type": "small_airport", + "name": "Ossora Airport", + "latitude_deg": "59.2236", + "longitude_deg": "163.0664", + "elevation_ft": "13", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Ossora", + "scheduled_service": "no", + "gps_code": "UHPD" + }, + { + "id": "44861", + "ident": "UHPG", + "type": "small_airport", + "name": "Tigil Airport", + "latitude_deg": "57.784000396728516", + "longitude_deg": "158.72999572753906", + "elevation_ft": "430", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Tigil", + "scheduled_service": "no", + "gps_code": "UHPG", + "keywords": "Аэропорт Тигиль" + }, + { + "id": "44855", + "ident": "UHPH", + "type": "small_airport", + "name": "Khalaktyrka Airport", + "latitude_deg": "53.026245", + "longitude_deg": "158.721972", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Petropavlovsk-Kamchatskiy", + "scheduled_service": "no", + "gps_code": "UHPH", + "keywords": "Аэропорт Халактырка" + }, + { + "id": "32519", + "ident": "UHPK", + "type": "small_airport", + "name": "Ust-Kamchatsk Airport", + "latitude_deg": "56.238854", + "longitude_deg": "162.689989", + "elevation_ft": "200", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Ust-Kamchatsk", + "scheduled_service": "yes", + "gps_code": "UHPK", + "local_code": "UKCH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ust-Kamchatsk_Airport", + "keywords": "УКЧ" + }, + { + "id": "42938", + "ident": "UHPL", + "type": "medium_airport", + "name": "Palana Airport", + "latitude_deg": "59.08199", + "longitude_deg": "159.892316", + "elevation_ft": "112", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Palana", + "scheduled_service": "no", + "gps_code": "UHPL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palana_Airport", + "keywords": "Аэропорт Палана" + }, + { + "id": "42936", + "ident": "UHPM", + "type": "small_airport", + "name": "Milkovo Airport", + "latitude_deg": "54.680580139160156", + "longitude_deg": "158.5485076904297", + "elevation_ft": "410", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Milkovo", + "scheduled_service": "no", + "gps_code": "UHPM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Milkovo_Airport", + "keywords": "Аэропорт Мильково" + }, + { + "id": "339646", + "ident": "UHPN", + "type": "small_airport", + "name": "Manily Airport", + "latitude_deg": "62.485962", + "longitude_deg": "165.338917", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Manily", + "scheduled_service": "no", + "gps_code": "UHPN" + }, + { + "id": "42935", + "ident": "UHPO", + "type": "heliport", + "name": "Kozyrevsk Heliport", + "latitude_deg": "56.090092", + "longitude_deg": "159.876308", + "elevation_ft": "331", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Kozyrevsk", + "scheduled_service": "no", + "gps_code": "UHPO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kozyrevsk_Airport", + "keywords": "Kozyrevsk Airport" + }, + { + "id": "6460", + "ident": "UHPP", + "type": "medium_airport", + "name": "Yelizovo Airport", + "latitude_deg": "53.16790008544922", + "longitude_deg": "158.45399475097656", + "elevation_ft": "131", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Petropavlovsk-Kamchatsky", + "scheduled_service": "yes", + "gps_code": "UHPP", + "iata_code": "PKC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Petropavlovsk-Kamchatsky_Airport" + }, + { + "id": "32520", + "ident": "UHPT", + "type": "small_airport", + "name": "Tilichiki Airport", + "latitude_deg": "60.384238", + "longitude_deg": "166.02503", + "elevation_ft": "7", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Korf", + "scheduled_service": "no", + "gps_code": "UHPT", + "keywords": "Korf Airport, Аэропорт Тиличики, Аэропорт Корф" + }, + { + "id": "44664", + "ident": "UHPU", + "type": "small_airport", + "name": "Ust-Khayryuzovo Airport", + "latitude_deg": "57.099706", + "longitude_deg": "156.737223", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Ust-Khayryuzovo", + "scheduled_service": "no", + "gps_code": "UHPU", + "keywords": "Ust-Khairyuzovo Airport, Аэропорт Усть-Хайрюзово" + }, + { + "id": "42937", + "ident": "UHPX", + "type": "small_airport", + "name": "Nikolskoye Airport", + "latitude_deg": "55.1783332824707", + "longitude_deg": "166.04833984375", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Nikolskoye", + "scheduled_service": "no", + "gps_code": "UHPX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nikolskoye_Airport", + "keywords": "Аэропорт Никольское, Bering Island, Commander Islands, Nikolsky" + }, + { + "id": "339644", + "ident": "UHQO", + "type": "small_airport", + "name": "Sobolevo Airport", + "latitude_deg": "54.30701", + "longitude_deg": "155.973673", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Sobolevo", + "scheduled_service": "no", + "gps_code": "UHPS", + "keywords": "UHQO" + }, + { + "id": "34959", + "ident": "UHSB", + "type": "small_airport", + "name": "Burevestnik Airport", + "latitude_deg": "44.919998", + "longitude_deg": "147.621994", + "elevation_ft": "79", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Kurilsk", + "scheduled_service": "no", + "gps_code": "UHSB", + "iata_code": "BVV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Burevestnik_Airport", + "keywords": "Iturup Airport, Аэропорт Буревестник, Tennei Airfield" + }, + { + "id": "35126", + "ident": "UHSH", + "type": "small_airport", + "name": "Okha Airport", + "latitude_deg": "53.517656", + "longitude_deg": "142.879772", + "elevation_ft": "115", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Okha", + "scheduled_service": "no", + "gps_code": "UHSH", + "iata_code": "OHH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Okha_Airport", + "keywords": "Novostroyka Airport, Аэропóрт Охá" + }, + { + "id": "319423", + "ident": "UHSI", + "type": "small_airport", + "name": "Iturup Airport", + "latitude_deg": "45.256389", + "longitude_deg": "147.95549", + "elevation_ft": "387", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Kurilsk", + "scheduled_service": "yes", + "gps_code": "UHSI", + "iata_code": "ITU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iturup_Airport" + }, + { + "id": "35125", + "ident": "UHSK", + "type": "small_airport", + "name": "Shakhtyorsk Airport", + "latitude_deg": "49.1903", + "longitude_deg": "142.082993", + "elevation_ft": "50", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Shakhtyorsk", + "scheduled_service": "yes", + "gps_code": "UHSK", + "iata_code": "EKS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shakhtyorsk_Airport", + "keywords": "Shakhtersk Airport, Аэропорт Шахтёрск, Аэропорт Шахтерск" + }, + { + "id": "41837", + "ident": "UHSM", + "type": "small_airport", + "name": "Yuzhno-Kurilsk Mendeleyevo Airport", + "latitude_deg": "43.961066", + "longitude_deg": "145.684977", + "elevation_ft": "584", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Yuzhno-Kurilsk", + "scheduled_service": "no", + "gps_code": "UHSM", + "iata_code": "DEE", + "keywords": "Mendeleevo Airport, Yuzhno-Kurilsk Airport, Island Kunashir Airport, Аэропорт Менделеево, Аэропорт Южно-Курильск, Аэропорт острова Кунашир" + }, + { + "id": "32521", + "ident": "UHSO", + "type": "small_airport", + "name": "Zonalnoye Airport", + "latitude_deg": "50.6692008972", + "longitude_deg": "142.761001587", + "elevation_ft": "479", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Tymovskoye", + "scheduled_service": "no", + "gps_code": "UHSO", + "iata_code": "ZZO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zonalnoye_Airport", + "keywords": "Zonalnoe Airport, Аэропорт Зональное" + }, + { + "id": "6461", + "ident": "UHSS", + "type": "medium_airport", + "name": "Yuzhno-Sakhalinsk Airport", + "latitude_deg": "46.885461", + "longitude_deg": "142.717466", + "elevation_ft": "59", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAK", + "municipality": "Yuzhno-Sakhalinsk", + "scheduled_service": "yes", + "gps_code": "UHSS", + "iata_code": "UUS", + "home_link": "http://www.airportus.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yuzhno-Sakhalinsk_Airport", + "keywords": "Аэропорт Южно-Сахалинск, Khomutovo" + }, + { + "id": "326733", + "ident": "UHTG", + "type": "small_airport", + "name": "Amgu Airport", + "latitude_deg": "45.84126", + "longitude_deg": "137.673568", + "elevation_ft": "10", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Amgu", + "scheduled_service": "no", + "gps_code": "UHTG", + "iata_code": "AEM" + }, + { + "id": "330390", + "ident": "UHTQ", + "type": "small_airport", + "name": "Svetlaya Airport", + "latitude_deg": "46.541704", + "longitude_deg": "138.321703", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Svetlaya", + "scheduled_service": "no", + "gps_code": "UHTQ", + "iata_code": "ETL", + "keywords": "Све́тлая" + }, + { + "id": "44742", + "ident": "UHU1", + "type": "small_airport", + "name": "Zolotaya Dolina Air Base", + "latitude_deg": "42.959999", + "longitude_deg": "133.115005", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Zolotaya Dolina", + "scheduled_service": "no", + "gps_code": "UHU1", + "home_link": "http://www.gold-valley.narod.ru/index.html", + "keywords": "Unashi Air Base, Аэродром Золотая Долина" + }, + { + "id": "330386", + "ident": "UHWE", + "type": "small_airport", + "name": "Yedinka Airport", + "latitude_deg": "47.178201", + "longitude_deg": "138.657357", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Yedinka", + "scheduled_service": "no", + "gps_code": "UHWE", + "iata_code": "EDN" + }, + { + "id": "313831", + "ident": "UHWK", + "type": "small_airport", + "name": "Kavalerovo Airport", + "latitude_deg": "44.2726", + "longitude_deg": "135.029", + "elevation_ft": "730", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Kavalerovo", + "scheduled_service": "no", + "gps_code": "UHWK", + "iata_code": "KVR", + "keywords": "УХВК, Кавалерово" + }, + { + "id": "43867", + "ident": "UHWP", + "type": "small_airport", + "name": "Plastun Airport", + "latitude_deg": "44.814998626709", + "longitude_deg": "136.29200744629", + "elevation_ft": "66", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Plastun", + "scheduled_service": "yes", + "gps_code": "UHWP", + "iata_code": "TLY", + "keywords": "Аэропорт Пластун" + }, + { + "id": "331737", + "ident": "UHWT", + "type": "small_airport", + "name": "Terney Airport", + "latitude_deg": "45.0825", + "longitude_deg": "136.5912", + "elevation_ft": "33", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Terney", + "scheduled_service": "no", + "gps_code": "UHWT", + "iata_code": "NEI" + }, + { + "id": "6462", + "ident": "UHWW", + "type": "large_airport", + "name": "Vladivostok International Airport", + "latitude_deg": "43.396256", + "longitude_deg": "132.148155", + "elevation_ft": "59", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Artyom", + "scheduled_service": "yes", + "gps_code": "UHWW", + "iata_code": "VVO", + "home_link": "http://www.vladivostokavia.ru/en/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vladivostok_International_Airport", + "keywords": "Vladivostok-Knevichi Airport" + }, + { + "id": "6463", + "ident": "UIAA", + "type": "medium_airport", + "name": "Chita-Kadala International Airport", + "latitude_deg": "52.026299", + "longitude_deg": "113.306", + "elevation_ft": "2272", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Chita", + "scheduled_service": "yes", + "gps_code": "UIAA", + "iata_code": "HTA", + "home_link": "http://aerochita.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kadala_Airport" + }, + { + "id": "325080", + "ident": "UIAB", + "type": "heliport", + "name": "Barnaul Heliport", + "latitude_deg": "50.3613832", + "longitude_deg": "116.4814", + "elevation_ft": "2224", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Borzya", + "scheduled_service": "no", + "gps_code": "UIAB", + "keywords": "УИАБ, Барнаул, Борзя" + }, + { + "id": "335246", + "ident": "UIAC", + "type": "small_airport", + "name": "Tungukochen Airport", + "latitude_deg": "53.538317", + "longitude_deg": "115.615139", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "scheduled_service": "no", + "gps_code": "UIAC" + }, + { + "id": "42997", + "ident": "UIAE", + "type": "medium_airport", + "name": "Krasnokamensk Airport", + "latitude_deg": "50.03310775756836", + "longitude_deg": "118.06114196777344", + "elevation_ft": "2139", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Krasnokamensk", + "scheduled_service": "no", + "gps_code": "UIAE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Krasnokamensk_Airport", + "keywords": "Аэропорт Краснокаменск" + }, + { + "id": "335243", + "ident": "UIAG", + "type": "small_airport", + "name": "Ust'-Karenga Airport", + "latitude_deg": "54.441672", + "longitude_deg": "116.513894", + "elevation_ft": "2223", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "scheduled_service": "no", + "gps_code": "UICU", + "keywords": "УИЦУ, Усть-Каренга" + }, + { + "id": "315293", + "ident": "UIAM", + "type": "heliport", + "name": "Mogocha Airbase", + "latitude_deg": "53.7421", + "longitude_deg": "119.7396", + "elevation_ft": "2094", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Mogocha", + "scheduled_service": "no", + "gps_code": "UIAM", + "local_code": "XIAM", + "keywords": "УИАМ, ЬИАМ, Могоча" + }, + { + "id": "42998", + "ident": "UIAR", + "type": "small_airport", + "name": "Chara Airport", + "latitude_deg": "56.913333892822266", + "longitude_deg": "118.2699966430664", + "elevation_ft": "2201", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-CHI", + "municipality": "Chara", + "scheduled_service": "no", + "gps_code": "UIAR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chara_Airport", + "keywords": "Chara Kyust-Kemda" + }, + { + "id": "335244", + "ident": "UIAU", + "type": "small_airport", + "name": "Yumurchen Airport", + "latitude_deg": "53.6195", + "longitude_deg": "114.034", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "scheduled_service": "no", + "gps_code": "UIAU" + }, + { + "id": "335245", + "ident": "UIAY", + "type": "small_airport", + "name": "Usugli Airport", + "latitude_deg": "52.659388", + "longitude_deg": "115.242634", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHI", + "scheduled_service": "no", + "gps_code": "UIAY" + }, + { + "id": "6464", + "ident": "UIBB", + "type": "medium_airport", + "name": "Bratsk Airport", + "latitude_deg": "56.370601654052734", + "longitude_deg": "101.697998046875", + "elevation_ft": "1610", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Bratsk", + "scheduled_service": "yes", + "gps_code": "UIBB", + "iata_code": "BTK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bratsk_Airport", + "keywords": "Аэропорт Братск" + }, + { + "id": "32523", + "ident": "UIBS", + "type": "small_airport", + "name": "Ust-Ilimsk Airport", + "latitude_deg": "58.13610076904297", + "longitude_deg": "102.56500244140625", + "elevation_ft": "1339", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Ust-Ilimsk", + "scheduled_service": "no", + "gps_code": "UIBS", + "iata_code": "UIK" + }, + { + "id": "42931", + "ident": "UIBV", + "type": "medium_airport", + "name": "Zheleznogorsk Airport", + "latitude_deg": "56.487701416015625", + "longitude_deg": "104.10600280761719", + "elevation_ft": "1946", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Zheleznogorsk-Ilimsky", + "scheduled_service": "no", + "gps_code": "UIBV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zheleznogorsk_Airport", + "keywords": "Аэропорт Железногорск" + }, + { + "id": "34948", + "ident": "UIIB", + "type": "small_airport", + "name": "Belaya Air Base", + "latitude_deg": "52.915000915527344", + "longitude_deg": "103.57499694824219", + "elevation_ft": "1503", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Usolye-Sibirskoye", + "scheduled_service": "no", + "gps_code": "UIIB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Belaya_%28air_base%29" + }, + { + "id": "6465", + "ident": "UIII", + "type": "medium_airport", + "name": "Irkutsk International Airport", + "latitude_deg": "52.268002", + "longitude_deg": "104.389", + "elevation_ft": "1675", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Irkutsk", + "scheduled_service": "yes", + "gps_code": "UIII", + "iata_code": "IKT", + "home_link": "http://www.iktport.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Irkutsk_Airport" + }, + { + "id": "43683", + "ident": "UIIV", + "type": "small_airport", + "name": "Zhigalovo Airport", + "latitude_deg": "54.79999923706055", + "longitude_deg": "105.1500015258789", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-IRK", + "scheduled_service": "no", + "gps_code": "UIIV", + "keywords": "Аэропорт Жигалово" + }, + { + "id": "32524", + "ident": "UIKB", + "type": "small_airport", + "name": "Bodaybo Airport", + "latitude_deg": "57.866100311299995", + "longitude_deg": "114.242996216", + "elevation_ft": "919", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Bodaybo", + "scheduled_service": "yes", + "gps_code": "UIKB", + "iata_code": "ODO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bodaybo_Airport", + "keywords": "Bodaibo Airport, Аэропорт Бодайбо" + }, + { + "id": "42926", + "ident": "UIKE", + "type": "small_airport", + "name": "Yerbogachen Airport", + "latitude_deg": "61.2750015259", + "longitude_deg": "108.029998779", + "elevation_ft": "400", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Erbogachen", + "scheduled_service": "no", + "gps_code": "UIKE", + "iata_code": "ERG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Erbogachen_Airport", + "keywords": "Yerbogachyon Airport, Erbogachyon Airport, Erbogachen Airport, Аэропорт Ербогачен, Аэропорт Ербогачён" + }, + { + "id": "32525", + "ident": "UIKK", + "type": "small_airport", + "name": "Kirensk Airport", + "latitude_deg": "57.773", + "longitude_deg": "108.064", + "elevation_ft": "840", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Kirensk", + "scheduled_service": "no", + "gps_code": "UIKK", + "iata_code": "KCK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kirensk_Airport" + }, + { + "id": "42929", + "ident": "UIKM", + "type": "small_airport", + "name": "Mama Airport", + "latitude_deg": "58.313331604003906", + "longitude_deg": "112.88999938964844", + "elevation_ft": "659", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Mama", + "scheduled_service": "no", + "gps_code": "UIKM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mama_Airport", + "keywords": "Аэропорт Мама" + }, + { + "id": "332617", + "ident": "UIKP", + "type": "small_airport", + "name": "Preobrazheniye Airport", + "latitude_deg": "42.921698", + "longitude_deg": "133.904438", + "elevation_ft": "34", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PRI", + "municipality": "Preobrazheniye", + "scheduled_service": "no", + "gps_code": "UIKP", + "iata_code": "RZH", + "keywords": "УИКП, Преображенка" + }, + { + "id": "308489", + "ident": "UINN", + "type": "small_airport", + "name": "Nizhneudinsk Airport", + "latitude_deg": "54.8894", + "longitude_deg": "99.067", + "elevation_ft": "1340", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Nizhneudinsk", + "scheduled_service": "no", + "gps_code": "UINN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nizhneudinsk_Airport", + "keywords": "УИНН, Аэропорт «Нижнеудинск»" + }, + { + "id": "44741", + "ident": "UIOO", + "type": "closed", + "name": "Ust-Ordynskiy Airport", + "latitude_deg": "52.82", + "longitude_deg": "104.739998", + "elevation_ft": "1775", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Ust-Ordynskiy", + "scheduled_service": "no", + "gps_code": "UIOO", + "keywords": "Ust-Ordynsky Airport, Аэропорт Усть-Ордынский" + }, + { + "id": "42928", + "ident": "UITK", + "type": "small_airport", + "name": "Kazachinskaya Airport", + "latitude_deg": "56.2801513671875", + "longitude_deg": "107.56756591796875", + "elevation_ft": "1499", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Kazachinskaya", + "scheduled_service": "no", + "gps_code": "UITK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kazachinskaya_Airport" + }, + { + "id": "42930", + "ident": "UITT", + "type": "medium_airport", + "name": "Ust-Kut Airport", + "latitude_deg": "56.8567008972168", + "longitude_deg": "105.7300033569336", + "elevation_ft": "2188", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-IRK", + "municipality": "Ust-Kut", + "scheduled_service": "yes", + "gps_code": "UITT", + "iata_code": "UKX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ust-Kut_Airport", + "keywords": "Аэропорт Усть-Кут" + }, + { + "id": "43666", + "ident": "UIUB", + "type": "medium_airport", + "name": "Bagdarin Airport", + "latitude_deg": "54.369009", + "longitude_deg": "113.477199", + "elevation_ft": "3084", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Bagdarin", + "scheduled_service": "no", + "gps_code": "UIUB", + "keywords": "Аэропорт Багдарин" + }, + { + "id": "32528", + "ident": "UIUN", + "type": "small_airport", + "name": "Nizhneangarsk Airport", + "latitude_deg": "55.80080032348633", + "longitude_deg": "109.59500122070312", + "elevation_ft": "1545", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Nizhneangarsk", + "scheduled_service": "no", + "gps_code": "UIUN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nizhneangarsk_Airport" + }, + { + "id": "6466", + "ident": "UIUU", + "type": "medium_airport", + "name": "Baikal International Airport", + "latitude_deg": "51.808614", + "longitude_deg": "107.439652", + "elevation_ft": "1690", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BU", + "municipality": "Ulan Ude", + "scheduled_service": "yes", + "gps_code": "UIUU", + "iata_code": "UUD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ulan-Ude_Airport", + "keywords": "Mukhino Airport, Ulan-Ude Airport" + }, + { + "id": "32529", + "ident": "UJAP", + "type": "small_airport", + "name": "Ujae Atoll Airport", + "latitude_deg": "8.92805957794", + "longitude_deg": "165.761993408", + "elevation_ft": "29", + "continent": "OC", + "iso_country": "MH", + "iso_region": "MH-UJA", + "municipality": "Ujae Atoll", + "scheduled_service": "yes", + "iata_code": "UJE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ujae_Airport" + }, + { + "id": "300606", + "ident": "UJN", + "type": "small_airport", + "name": "Uljin Airport", + "latitude_deg": "36.777049", + "longitude_deg": "129.461861", + "elevation_ft": "191", + "continent": "AS", + "iso_country": "KR", + "iso_region": "KR-47", + "municipality": "Bongsan-ri, Uljin", + "scheduled_service": "no", + "gps_code": "RKTL", + "iata_code": "UJN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Uljin_Airport" + }, + { + "id": "6417", + "ident": "UK59", + "type": "small_airport", + "name": "Chuhuiv Air Base", + "latitude_deg": "49.8382", + "longitude_deg": "36.641201", + "elevation_ft": "453", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-63", + "municipality": "Chuhuiv", + "scheduled_service": "no" + }, + { + "id": "6419", + "ident": "UK61", + "type": "small_airport", + "name": "Jagellon Airfield", + "latitude_deg": "49.7379", + "longitude_deg": "23.6689", + "elevation_ft": "895", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-46", + "municipality": "Gorodok", + "scheduled_service": "no", + "gps_code": "UKMC", + "home_link": "http://jagellon.com", + "keywords": "Cherliany Airport, Gorodok Airport, Аэропорт Черляны, Аэропорт Городок" + }, + { + "id": "6467", + "ident": "UKBB", + "type": "large_airport", + "name": "Boryspil International Airport", + "latitude_deg": "50.345001", + "longitude_deg": "30.894699", + "elevation_ft": "427", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "municipality": "Kiev", + "scheduled_service": "yes", + "gps_code": "UKBB", + "iata_code": "KBP", + "home_link": "https://kbp.aero/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boryspil_International_Airport", + "keywords": "Borispol, Міжнародний аеропорт \"Бориспіль\"" + }, + { + "id": "6468", + "ident": "UKCC", + "type": "closed", + "name": "Donetsk Sergei Prokofiev International Airport", + "latitude_deg": "48.075072", + "longitude_deg": "37.72527", + "elevation_ft": "791", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-14", + "municipality": "Donetsk", + "scheduled_service": "no", + "gps_code": "UKCC", + "iata_code": "DOK", + "home_link": "http://airport.dn.ua/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Donetsk_International_Airport", + "keywords": "Міжнародний аеропорт \"Донецьк\"" + }, + { + "id": "31774", + "ident": "UKCK", + "type": "small_airport", + "name": "Kramatorsk Airport", + "latitude_deg": "48.706799", + "longitude_deg": "37.630922", + "elevation_ft": "646", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-14", + "municipality": "Kramatorsk", + "scheduled_service": "no", + "gps_code": "UKCK", + "iata_code": "KRQ" + }, + { + "id": "6469", + "ident": "UKCM", + "type": "medium_airport", + "name": "Mariupol International Airport", + "latitude_deg": "47.07609939575195", + "longitude_deg": "37.44960021972656", + "elevation_ft": "251", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-14", + "municipality": "Mariupol", + "scheduled_service": "yes", + "gps_code": "UKCM", + "iata_code": "MPW", + "home_link": "http://www.maraero.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mariupol_International_Airport", + "keywords": "Міжнародний аеропорт \"Маріуполь\"" + }, + { + "id": "44429", + "ident": "UKCS", + "type": "small_airport", + "name": "Sievierodonetsk Airport", + "latitude_deg": "48.900926", + "longitude_deg": "38.54279", + "elevation_ft": "236", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-09", + "municipality": "Sievierodonetsk", + "scheduled_service": "no", + "gps_code": "UKCS", + "iata_code": "SEV", + "keywords": "Severodonetsk Airport, Аеропорт Северодонецьк, Аэропорт Северодонецк" + }, + { + "id": "6470", + "ident": "UKCW", + "type": "medium_airport", + "name": "Luhansk International Airport", + "latitude_deg": "48.4174003601", + "longitude_deg": "39.3740997314", + "elevation_ft": "636", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-09", + "municipality": "Luhansk", + "scheduled_service": "yes", + "gps_code": "UKCW", + "iata_code": "VSG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Luhansk_International_Airport", + "keywords": "Lugansk International Airport, Міжнародний аеропорт Луганськ, Аэропорт Луганск" + }, + { + "id": "31019", + "ident": "UKDB", + "type": "closed", + "name": "Berdyansk Airport", + "latitude_deg": "46.814999", + "longitude_deg": "36.758099", + "elevation_ft": "171", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-23", + "municipality": "Berdyansk", + "scheduled_service": "no", + "gps_code": "UKDB", + "iata_code": "ERD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Berdyansk_Airport" + }, + { + "id": "6471", + "ident": "UKDD", + "type": "medium_airport", + "name": "Dnipro International Airport", + "latitude_deg": "48.357201", + "longitude_deg": "35.100601", + "elevation_ft": "481", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-12", + "municipality": "Dnipro", + "scheduled_service": "yes", + "gps_code": "UKDD", + "iata_code": "DNK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dnipro_International_Airport", + "keywords": "Dnipropetrovsk, Міжнародний аеропорт «Дніпро»" + }, + { + "id": "6472", + "ident": "UKDE", + "type": "medium_airport", + "name": "Zaporizhzhia International Airport", + "latitude_deg": "47.867000579833984", + "longitude_deg": "35.31570053100586", + "elevation_ft": "373", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-23", + "municipality": "Zaporizhia", + "scheduled_service": "yes", + "gps_code": "UKDE", + "iata_code": "OZH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zaporizhia_International_Airport", + "keywords": "Zaporozhye Airport, Міжнародний аеропорт Запоріжжя, Аэропорт Запорожье" + }, + { + "id": "6473", + "ident": "UKDR", + "type": "medium_airport", + "name": "Kryvyi Rih International Airport", + "latitude_deg": "48.04330062866211", + "longitude_deg": "33.209999084472656", + "elevation_ft": "408", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-12", + "municipality": "Kryvyi Rih", + "scheduled_service": "yes", + "gps_code": "UKDR", + "iata_code": "KWG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kryvyi_Rih_International_Airport", + "keywords": "Lozuvatka International Airport, Міжнародний аеропорт \"Кривий Ріг\"" + }, + { + "id": "44293", + "ident": "UKFB", + "type": "medium_airport", + "name": "Sevastopol International Airport / Belbek Air Base", + "latitude_deg": "44.691822", + "longitude_deg": "33.57462", + "elevation_ft": "344", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Sevastopol", + "scheduled_service": "no", + "gps_code": "UKFB", + "iata_code": "UKS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sevastopol_International_Airport", + "keywords": "Севастополь,Бельбек" + }, + { + "id": "6474", + "ident": "UKFF", + "type": "medium_airport", + "name": "Simferopol International Airport", + "latitude_deg": "45.0522", + "longitude_deg": "33.975101", + "elevation_ft": "639", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Simferopol", + "scheduled_service": "yes", + "gps_code": "UKFF", + "iata_code": "SIP", + "local_code": "URFF", + "home_link": "https://new.sipaero.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Simferopol_International_Airport" + }, + { + "id": "44291", + "ident": "UKFG", + "type": "medium_airport", + "name": "Gvardeyskoe Air Base", + "latitude_deg": "45.116192", + "longitude_deg": "33.976625", + "elevation_ft": "721", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Sarabuz", + "scheduled_service": "no", + "gps_code": "UKFG", + "local_code": "XRFG", + "keywords": "Gvardeyskoye Air Base, Аэродром Гвардейское" + }, + { + "id": "44296", + "ident": "UKFI", + "type": "medium_airport", + "name": "Saky Air Base", + "latitude_deg": "45.090611", + "longitude_deg": "33.598536", + "elevation_ft": "36", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Novofedorovka", + "scheduled_service": "no", + "gps_code": "URFI", + "wikipedia_link": "https://ru.wikipedia.org/wiki/%D0%9D%D0%BE%D0%B2%D0%BE%D1%84%D1%91%D0%B4%D0%BE%D1%80%D0%BE%D0%B2%D0%BA%D0%B0_(%D0%A1%D0%B0%D0%BA", + "keywords": "Аэродом Саки, URFI" + }, + { + "id": "31747", + "ident": "UKFK", + "type": "small_airport", + "name": "Kerch Airport", + "latitude_deg": "45.372501373291016", + "longitude_deg": "36.40140151977539", + "elevation_ft": "171", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Kerch", + "scheduled_service": "no", + "gps_code": "UKFK", + "iata_code": "KHC" + }, + { + "id": "32531", + "ident": "UKFV", + "type": "small_airport", + "name": "Yevpatoriya Airport", + "latitude_deg": "45.225601", + "longitude_deg": "33.376701", + "elevation_ft": "33", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Yevpatoriya", + "scheduled_service": "no", + "gps_code": "UKFE", + "keywords": "UKFV, Yevpatoria Aircraft Repair Plant Airport" + }, + { + "id": "44430", + "ident": "UKFW", + "type": "small_airport", + "name": "Zavodskoe Airfield", + "latitude_deg": "44.919998", + "longitude_deg": "34.063", + "elevation_ft": "955", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Simferopol", + "scheduled_service": "no", + "gps_code": "URFW", + "home_link": "http://unavia.narod.ru/engl/index.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zavodske_Airfield", + "keywords": "Zavodskoye Airfield, Аэродром Заводское" + }, + { + "id": "43680", + "ident": "UKFY", + "type": "medium_airport", + "name": "Dzhankoy Airport", + "latitude_deg": "45.700901", + "longitude_deg": "34.4189", + "elevation_ft": "75", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-43", + "municipality": "Dzhankoy", + "scheduled_service": "no", + "gps_code": "UKFY", + "keywords": "Аэропорт Джанкой" + }, + { + "id": "335516", + "ident": "UKGW", + "type": "small_airport", + "name": "Voroniv Airfield", + "latitude_deg": "50.695956", + "longitude_deg": "26.699958", + "elevation_ft": "722", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-19", + "municipality": "Voroniv", + "scheduled_service": "no", + "gps_code": "UKGW" + }, + { + "id": "300610", + "ident": "UKH", + "type": "small_airport", + "name": "Mukhaizna Airport", + "latitude_deg": "19.386389", + "longitude_deg": "56.401389", + "elevation_ft": "473", + "continent": "AS", + "iso_country": "OM", + "iso_region": "OM-WU", + "municipality": "Mukhaizna Oil Field", + "scheduled_service": "no", + "gps_code": "OOMK", + "iata_code": "UKH" + }, + { + "id": "44431", + "ident": "UKHD", + "type": "small_airport", + "name": "Kharkiv North Airport", + "latitude_deg": "50.025002", + "longitude_deg": "36.268902", + "elevation_ft": "592", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-63", + "municipality": "Kharkiv", + "scheduled_service": "no", + "gps_code": "UKHV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kharkiv_North_Airport", + "keywords": "Kharkiv North Airport, Kharkiv Sokolniki Airport, Kharkоv Severny Airport, Аэропорт Харьков Северный, Аэропорт Харьков Сокольники, Аеропорт Харків-Північний" + }, + { + "id": "6476", + "ident": "UKHH", + "type": "medium_airport", + "name": "Kharkiv International Airport", + "latitude_deg": "49.924801", + "longitude_deg": "36.290001", + "elevation_ft": "508", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-63", + "municipality": "Kharkiv", + "scheduled_service": "yes", + "gps_code": "UKHH", + "iata_code": "HRK", + "home_link": "http://www.airport.kharkov.ua/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kharkiv_International_Airport", + "keywords": "Osnova International Airport, Міжнародний аеропорт \"Харків\"" + }, + { + "id": "32532", + "ident": "UKHP", + "type": "small_airport", + "name": "Suprunovka Airport", + "latitude_deg": "49.568599700927734", + "longitude_deg": "34.39720153808594", + "elevation_ft": "505", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-53", + "municipality": "Poltava", + "scheduled_service": "no", + "gps_code": "UKHP", + "iata_code": "PLV" + }, + { + "id": "32541", + "ident": "UKHS", + "type": "small_airport", + "name": "Sumy Airport", + "latitude_deg": "50.858299255371094", + "longitude_deg": "34.76250076293945", + "elevation_ft": "594", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-59", + "municipality": "Sumy", + "scheduled_service": "no", + "gps_code": "UKHS", + "iata_code": "UMY" + }, + { + "id": "6477", + "ident": "UKKE", + "type": "medium_airport", + "name": "Cherkasy International Airport", + "latitude_deg": "49.41559982299805", + "longitude_deg": "31.99530029296875", + "elevation_ft": "375", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-71", + "municipality": "Cherkasy", + "scheduled_service": "no", + "gps_code": "UKKE", + "iata_code": "CKC" + }, + { + "id": "31744", + "ident": "UKKG", + "type": "small_airport", + "name": "Kirovograd Airport", + "latitude_deg": "48.54280090332031", + "longitude_deg": "32.28499984741211", + "elevation_ft": "568", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-35", + "municipality": "Kirovograd", + "scheduled_service": "no", + "gps_code": "UKKG", + "iata_code": "KGO" + }, + { + "id": "32533", + "ident": "UKKH", + "type": "closed", + "name": "Chepelevka (Uzin) Air Base", + "latitude_deg": "49.7906", + "longitude_deg": "30.441401", + "elevation_ft": "568", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "municipality": "Uzin", + "scheduled_service": "no", + "gps_code": "UKKH" + }, + { + "id": "6478", + "ident": "UKKK", + "type": "medium_airport", + "name": "Kiev Zhuliany International Airport", + "latitude_deg": "50.40194", + "longitude_deg": "30.45194", + "elevation_ft": "587", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "municipality": "Kiev", + "scheduled_service": "yes", + "gps_code": "UKKK", + "iata_code": "IEV", + "home_link": "https://iev.aero/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kyiv_International_Airport_(Zhuliany)", + "keywords": "Міжнародний аеропорт \"Київ\"" + }, + { + "id": "6479", + "ident": "UKKM", + "type": "medium_airport", + "name": "Hostomel Airport", + "latitude_deg": "50.6035", + "longitude_deg": "30.1919", + "elevation_ft": "517", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "municipality": "Kiev", + "scheduled_service": "no", + "gps_code": "UKKM", + "iata_code": "GML", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hostomel_Airport", + "keywords": "Antonov International Airport, Аеропорт „Антонов”, Gostomel Airport" + }, + { + "id": "44432", + "ident": "UKKO", + "type": "medium_airport", + "name": "Ozerne Air Base", + "latitude_deg": "50.158298", + "longitude_deg": "28.7383", + "elevation_ft": "761", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-18", + "municipality": "Zhytomyr", + "scheduled_service": "no", + "gps_code": "UKKO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ozerne_(air_base)", + "keywords": "Zhitomyr Ozernoye, Oziernoye, Ozernoe, Ozernoye, Ozyornoye, Ozerne, Ozernyy, Ozyornaya" + }, + { + "id": "44433", + "ident": "UKKT", + "type": "closed", + "name": "Svyatoshyn Airport", + "latitude_deg": "50.478224", + "longitude_deg": "30.384631", + "elevation_ft": "582", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "municipality": "Svyatoshyn", + "scheduled_service": "no", + "gps_code": "UKKT" + }, + { + "id": "302309", + "ident": "UKKV", + "type": "small_airport", + "name": "Zhytomyr Airport", + "latitude_deg": "50.270556", + "longitude_deg": "28.738611", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-18", + "scheduled_service": "no", + "gps_code": "UKKV", + "iata_code": "ZTR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zhytomyr_Airport" + }, + { + "id": "28146", + "ident": "UKLC", + "type": "small_airport", + "name": "Lutsk Airport", + "latitude_deg": "50.678404", + "longitude_deg": "25.487165", + "elevation_ft": "774", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-07", + "municipality": "Lutsk", + "scheduled_service": "no", + "gps_code": "UKLC", + "iata_code": "UCK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lutsk_Airport" + }, + { + "id": "6420", + "ident": "UKLH", + "type": "medium_airport", + "name": "Khmelnytskyi Airport", + "latitude_deg": "49.359699", + "longitude_deg": "26.933399", + "elevation_ft": "1150", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-68", + "municipality": "Khmelnytskyi", + "scheduled_service": "no", + "gps_code": "UKLH", + "iata_code": "HMJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khmelnytskyi_Ruzhichnaya_Airport", + "keywords": "Khmelnitskiy, Khmelnytskyi Ruzhichnaya" + }, + { + "id": "6480", + "ident": "UKLI", + "type": "medium_airport", + "name": "Ivano-Frankivsk International Airport", + "latitude_deg": "48.88420104980469", + "longitude_deg": "24.686100006103516", + "elevation_ft": "919", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-26", + "municipality": "Ivano-Frankivsk", + "scheduled_service": "yes", + "gps_code": "UKLI", + "iata_code": "IFO", + "home_link": "http://www.aeroportifua.ifrastudio.com/index.php?area=2", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ivano-Frankivsk_International_Airport", + "keywords": "Міжнародний аеропорт Івано-Франківськ" + }, + { + "id": "6481", + "ident": "UKLL", + "type": "large_airport", + "name": "Lviv International Airport", + "latitude_deg": "49.8125", + "longitude_deg": "23.9561", + "elevation_ft": "1071", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-46", + "municipality": "Lviv", + "scheduled_service": "yes", + "gps_code": "UKLL", + "iata_code": "LWO", + "home_link": "http://www.airport.lviv.ua/index.php?id=home&L=1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lviv_International_Airport", + "keywords": "Міжнародний аеропорт \"Львів\"" + }, + { + "id": "6482", + "ident": "UKLN", + "type": "medium_airport", + "name": "Chernivtsi International Airport", + "latitude_deg": "48.259300231933594", + "longitude_deg": "25.98080062866211", + "elevation_ft": "826", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-77", + "municipality": "Chernivtsi", + "scheduled_service": "yes", + "gps_code": "UKLN", + "iata_code": "CWC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chernivtsi_International_Airport" + }, + { + "id": "6483", + "ident": "UKLR", + "type": "medium_airport", + "name": "Rivne International Airport", + "latitude_deg": "50.60710144042969", + "longitude_deg": "26.141599655151367", + "elevation_ft": "755", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-19", + "municipality": "Rivne", + "scheduled_service": "yes", + "gps_code": "UKLR", + "iata_code": "RWN", + "home_link": "http://www.aeroport.rv.ua/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rivne_International_Airport", + "keywords": "Міжнародний аеропорт \"Рівне\"" + }, + { + "id": "6484", + "ident": "UKLT", + "type": "small_airport", + "name": "Ternopil International Airport", + "latitude_deg": "49.5242", + "longitude_deg": "25.7001", + "elevation_ft": "1072", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-61", + "municipality": "Ternopil", + "scheduled_service": "no", + "gps_code": "UKLT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ternopil_Airport" + }, + { + "id": "6485", + "ident": "UKLU", + "type": "medium_airport", + "name": "Uzhhorod International Airport", + "latitude_deg": "48.634300231933594", + "longitude_deg": "22.263399124145508", + "elevation_ft": "383", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-21", + "municipality": "Uzhhorod", + "scheduled_service": "yes", + "gps_code": "UKLU", + "iata_code": "UDJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Uzhhorod_International_Airport", + "keywords": "Міжнародний аеропорт \"Ужгород\"" + }, + { + "id": "329681", + "ident": "UKNG", + "type": "small_airport", + "name": "Gogoliv Airfield", + "latitude_deg": "50.515308", + "longitude_deg": "31.046581", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "municipality": "Gogoliv (Kiev)", + "scheduled_service": "no", + "gps_code": "UKNG" + }, + { + "id": "32534", + "ident": "UKOH", + "type": "medium_airport", + "name": "Kherson International Airport", + "latitude_deg": "46.6758", + "longitude_deg": "32.506401", + "elevation_ft": "148", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-65", + "municipality": "Kherson", + "scheduled_service": "yes", + "gps_code": "UKOH", + "iata_code": "KHE", + "home_link": "http://airport.kherson.ua/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kherson_International_Airport" + }, + { + "id": "44434", + "ident": "UKOI", + "type": "closed", + "name": "Izmail International Airport", + "latitude_deg": "45.395959", + "longitude_deg": "28.801403", + "elevation_ft": "125", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "municipality": "Izmail", + "scheduled_service": "no", + "gps_code": "UKOI" + }, + { + "id": "6486", + "ident": "UKON", + "type": "medium_airport", + "name": "Mykolaiv International Airport", + "latitude_deg": "47.057899", + "longitude_deg": "31.9198", + "elevation_ft": "184", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-48", + "municipality": "Nikolayev", + "scheduled_service": "yes", + "gps_code": "UKON", + "iata_code": "NLV", + "home_link": "http://www.airport.nikolaev.ua/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mykolaiv_Airport", + "keywords": "Nikolayev Airport, Nikolaev Airport, Аэропорт Николаев" + }, + { + "id": "6487", + "ident": "UKOO", + "type": "medium_airport", + "name": "Odessa International Airport", + "latitude_deg": "46.4268", + "longitude_deg": "30.6765", + "elevation_ft": "172", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-51", + "municipality": "Odessa", + "scheduled_service": "yes", + "gps_code": "UKOO", + "iata_code": "ODS", + "home_link": "http://www.airport.od.ua/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Odessa_International_Airport", + "keywords": "Odesa Central, Міжнародний аеропорт Одеса" + }, + { + "id": "324998", + "ident": "UKOR", + "type": "small_airport", + "name": "Kulbakyne Air Base", + "latitude_deg": "46.936433", + "longitude_deg": "32.098618", + "elevation_ft": "177", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-48", + "municipality": "Mykolaiv", + "scheduled_service": "no", + "gps_code": "UKOR" + }, + { + "id": "32535", + "ident": "UKRR", + "type": "closed", + "name": "Chernihiv Shestovytsia Airport", + "latitude_deg": "51.402199", + "longitude_deg": "31.1583", + "elevation_ft": "446", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-74", + "municipality": "Chernihiv", + "scheduled_service": "no", + "gps_code": "UKKL", + "iata_code": "CEJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chernihiv_Shestovytsia_Airport" + }, + { + "id": "315770", + "ident": "UKVN", + "type": "small_airport", + "name": "Nalyvaikivka Airfield", + "latitude_deg": "50.479167", + "longitude_deg": "29.735833", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-32", + "municipality": "Nalyvaikivka", + "scheduled_service": "no", + "gps_code": "UKVN", + "home_link": "http://aeroprakt.org" + }, + { + "id": "30535", + "ident": "UKWW", + "type": "medium_airport", + "name": "Vinnytsia/Gavyryshivka International Airport", + "latitude_deg": "49.242531", + "longitude_deg": "28.613778", + "elevation_ft": "961", + "continent": "EU", + "iso_country": "UA", + "iso_region": "UA-05", + "municipality": "Vinnitsa", + "scheduled_service": "no", + "gps_code": "UKWW", + "iata_code": "VIN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Havryshivka_Vinnytsia_International_Airport", + "keywords": "Gavrishevka Airport, Gavrishivka Airport, Аэропорт Гавришевка , Аэропорт Гавришiвка" + }, + { + "id": "6488", + "ident": "ULAA", + "type": "medium_airport", + "name": "Talagi Airport", + "latitude_deg": "64.60030364990234", + "longitude_deg": "40.71670150756836", + "elevation_ft": "62", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Archangelsk", + "scheduled_service": "yes", + "gps_code": "ULAA", + "iata_code": "ARH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Talagi_Airport", + "keywords": "Арха́нгельск, Archangel" + }, + { + "id": "42916", + "ident": "ULAE", + "type": "small_airport", + "name": "Mezen Airport", + "latitude_deg": "65.87833404541016", + "longitude_deg": "44.21500015258789", + "elevation_ft": "46", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Mezen", + "scheduled_service": "no", + "gps_code": "ULAE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mezen_Airport", + "keywords": "Аэропорт Мезень" + }, + { + "id": "35124", + "ident": "ULAH", + "type": "small_airport", + "name": "Vaskovo Airport", + "latitude_deg": "64.44170379639999", + "longitude_deg": "40.421699523899996", + "elevation_ft": "82", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Arkhangelsk", + "scheduled_service": "no", + "gps_code": "ULAH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vaskovo_Airport", + "keywords": "Аэропорт Архангельск Васьково, УЛАХ" + }, + { + "id": "43016", + "ident": "ULAK", + "type": "medium_airport", + "name": "Severomorsk-1 Naval Air Base", + "latitude_deg": "69.03166961669922", + "longitude_deg": "33.418331146240234", + "elevation_ft": "239", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Severomorsk", + "scheduled_service": "no", + "gps_code": "ULAK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Severomorsk-1" + }, + { + "id": "44768", + "ident": "ULAL", + "type": "small_airport", + "name": "Leshukonskoye Airport", + "latitude_deg": "64.8960037231", + "longitude_deg": "45.7229995728", + "elevation_ft": "220", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Leshukonskoye", + "scheduled_service": "yes", + "gps_code": "ULAL", + "iata_code": "LDG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leshukonskoye_Airport", + "keywords": "Leshukonskoe Airport, Аэропорт Лешуконское" + }, + { + "id": "32040", + "ident": "ULAM", + "type": "medium_airport", + "name": "Naryan Mar Airport", + "latitude_deg": "67.63999938964844", + "longitude_deg": "53.12189865112305", + "elevation_ft": "36", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NEN", + "municipality": "Naryan Mar", + "scheduled_service": "yes", + "gps_code": "ULAM", + "iata_code": "NNM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naryan-Mar_Airport", + "keywords": "Нарья́н-Мар" + }, + { + "id": "44850", + "ident": "ULAN", + "type": "small_airport", + "name": "Shenkursk Airport", + "latitude_deg": "62.117000579833984", + "longitude_deg": "42.882999420166016", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Shenkursk", + "scheduled_service": "no", + "gps_code": "ULAN", + "keywords": "Nikiforovskaya Airport, Аэропорт Шенкурск, Аэропорт Никифоровская" + }, + { + "id": "46485", + "ident": "ULAO", + "type": "small_airport", + "name": "Onega Airport", + "latitude_deg": "63.9111140154", + "longitude_deg": "38.1258201599", + "elevation_ft": "59", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Onega", + "scheduled_service": "no", + "gps_code": "ULAO", + "keywords": "Аэропорт Онега, УЛАО" + }, + { + "id": "44754", + "ident": "ULAP", + "type": "small_airport", + "name": "Karpogory Airport", + "latitude_deg": "64.0130004883", + "longitude_deg": "44.4550018311", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Karpogory", + "scheduled_service": "no", + "gps_code": "ULAP", + "keywords": "Аэропорт Карпогоры, УЛАП" + }, + { + "id": "44755", + "ident": "ULAR", + "type": "small_airport", + "name": "Kargopol", + "latitude_deg": "61.515033", + "longitude_deg": "38.912039", + "elevation_ft": "420", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Kargopol", + "scheduled_service": "no", + "gps_code": "ULAR", + "keywords": "Аэропорт Каргополь, УЛАР" + }, + { + "id": "42918", + "ident": "ULAS", + "type": "small_airport", + "name": "Solovki Airport", + "latitude_deg": "65.0299987793", + "longitude_deg": "35.7333335876", + "elevation_ft": "60", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Solovetsky Islands", + "scheduled_service": "yes", + "gps_code": "ULAS", + "iata_code": "CSH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Solovki_Airport", + "keywords": "Аэропорт Соловки, УЛАС" + }, + { + "id": "44756", + "ident": "ULAT", + "type": "small_airport", + "name": "Pertominsk Airport", + "latitude_deg": "64.7900009155", + "longitude_deg": "38.4199981689", + "elevation_ft": "56", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Pertominsk", + "scheduled_service": "no", + "gps_code": "ULAT", + "keywords": "Аэропорт Пертоминск, УЛАТ" + }, + { + "id": "44775", + "ident": "ULAV", + "type": "small_airport", + "name": "Nizhnyaya Pesha Airport", + "latitude_deg": "66.75299835205078", + "longitude_deg": "47.74300003051758", + "elevation_ft": "32", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NEN", + "municipality": "Nizhnyaya Pesha", + "scheduled_service": "no", + "gps_code": "ULAV", + "keywords": "Аэропорт Нижняя Пеша" + }, + { + "id": "30819", + "ident": "ULBC", + "type": "medium_airport", + "name": "Cherepovets Airport", + "latitude_deg": "59.273601532", + "longitude_deg": "38.015800476100004", + "elevation_ft": "377", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLG", + "municipality": "Cherepovets", + "scheduled_service": "yes", + "gps_code": "ULWC", + "iata_code": "CEE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cherepovets_Airport", + "keywords": "УЛВЦ, Череповец" + }, + { + "id": "44759", + "ident": "ULBL", + "type": "small_airport", + "name": "Lopshenga Airport", + "latitude_deg": "64.9800033569", + "longitude_deg": "37.6930007935", + "elevation_ft": "49", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Lopshenga", + "scheduled_service": "no", + "gps_code": "ULBL", + "home_link": "http://www.aviapages.ru/airports/17973931010137965.shtml", + "keywords": "Аэропорт Лопшеньга, УЛБЛ" + }, + { + "id": "46484", + "ident": "ULBM", + "type": "small_airport", + "name": "Purnema Airfield", + "latitude_deg": "64.3854", + "longitude_deg": "37.441235", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Purnema", + "scheduled_service": "no", + "gps_code": "ULBM", + "keywords": "Аэропорт Пурнема, УЛБМ" + }, + { + "id": "44849", + "ident": "ULBO", + "type": "small_airport", + "name": "Shoyna Airport", + "latitude_deg": "67.86900329589844", + "longitude_deg": "44.1510009765625", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NEN", + "municipality": "Shoyna", + "scheduled_service": "no", + "gps_code": "ULBO", + "keywords": "Аэропорт Шойна" + }, + { + "id": "324784", + "ident": "ULBQ", + "type": "closed", + "name": "Soyana Airfield", + "latitude_deg": "65.783933", + "longitude_deg": "43.3832", + "elevation_ft": "59", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Soyana", + "scheduled_service": "no", + "gps_code": "ULBQ" + }, + { + "id": "44757", + "ident": "ULBZ", + "type": "small_airport", + "name": "Letnyaya Zolotitsa Airstrip", + "latitude_deg": "64.959999", + "longitude_deg": "36.830002", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Letnyaya Zolotitsa", + "scheduled_service": "no", + "gps_code": "ULBZ", + "keywords": "Аэропорт Летняя Золотица, УЛБЗ" + }, + { + "id": "30643", + "ident": "ULDD", + "type": "medium_airport", + "name": "Amderma Airport", + "latitude_deg": "69.76329803466797", + "longitude_deg": "61.556400299072266", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-NEN", + "municipality": "Amderma", + "scheduled_service": "yes", + "gps_code": "ULDD", + "iata_code": "AMV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amderma_Airport" + }, + { + "id": "43965", + "ident": "ULDT", + "type": "small_airport", + "name": "Karatayka Airport", + "latitude_deg": "68.764177", + "longitude_deg": "61.418718", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NEN", + "municipality": "Karatayka", + "scheduled_service": "no", + "gps_code": "ULDT", + "keywords": "Аэропорт Каратайка" + }, + { + "id": "43672", + "ident": "ULDW", + "type": "small_airport", + "name": "Varandey Airport", + "latitude_deg": "68.848503", + "longitude_deg": "58.201401", + "elevation_ft": "39", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NEN", + "municipality": "Varandey", + "scheduled_service": "no", + "gps_code": "ULDW", + "iata_code": "VRI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Varandey_Airport", + "keywords": "Varandei Airport, Аэропорт Варандей" + }, + { + "id": "44852", + "ident": "ULEH", + "type": "small_airport", + "name": "Khorey-Ver Airport", + "latitude_deg": "67.41500091552734", + "longitude_deg": "58.04499816894531", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Khorey-Ver", + "scheduled_service": "no", + "gps_code": "ULEH", + "keywords": "Аэропорт Хорей-Вер" + }, + { + "id": "44853", + "ident": "ULER", + "type": "small_airport", + "name": "Kharuta Airport", + "latitude_deg": "66.846122", + "longitude_deg": "59.539305", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NEN", + "municipality": "Kharuta", + "scheduled_service": "no", + "gps_code": "ULER", + "keywords": "Аэропорт Харута" + }, + { + "id": "300611", + "ident": "ULH", + "type": "medium_airport", + "name": "Majeed Bin Abdulaziz Airport", + "latitude_deg": "26.48", + "longitude_deg": "38.128889", + "elevation_ft": "2050", + "continent": "AS", + "iso_country": "SA", + "iso_region": "SA-03", + "municipality": "Al Ula", + "scheduled_service": "yes", + "gps_code": "OEAO", + "iata_code": "ULH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Prince_Abdul_Majeed_bin_Abdulaziz_Domestic_Airport" + }, + { + "id": "44851", + "ident": "ULIC", + "type": "small_airport", + "name": "Tsenogora Airport", + "latitude_deg": "64.8870010376", + "longitude_deg": "46.7210006714", + "elevation_ft": "262", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Tsenogora", + "scheduled_service": "no", + "gps_code": "ULJC", + "keywords": "Аэропорт Ценогора, УЛЙЦ" + }, + { + "id": "46486", + "ident": "ULJO", + "type": "small_airport", + "name": "Olema Airport", + "latitude_deg": "64.495", + "longitude_deg": "46.14666", + "elevation_ft": "164", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Olema", + "scheduled_service": "no", + "gps_code": "ULJO", + "keywords": "Аэропорт Олема, УЛЙО" + }, + { + "id": "31780", + "ident": "ULKK", + "type": "medium_airport", + "name": "Kotlas Airport", + "latitude_deg": "61.235801696777344", + "longitude_deg": "46.6974983215332", + "elevation_ft": "184", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Kotlas", + "scheduled_service": "yes", + "gps_code": "ULKK", + "iata_code": "KSZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kotlas_Airport", + "keywords": "Аэропорт Котлас" + }, + { + "id": "44900", + "ident": "ULKO", + "type": "closed", + "name": "Oktyabrskiy Airport", + "latitude_deg": "61.078999", + "longitude_deg": "43.199001", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Oktyabrskiy", + "scheduled_service": "no", + "gps_code": "ULKO", + "keywords": "Oktyabrsky Airport, Аэропорт Октябрьский" + }, + { + "id": "35073", + "ident": "ULKS", + "type": "small_airport", + "name": "Savvatiya Air Base", + "latitude_deg": "60.994998931884766", + "longitude_deg": "46.869998931884766", + "elevation_ft": "318", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Kotlas", + "scheduled_service": "no", + "gps_code": "ULKS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Savatiya", + "keywords": "Kotlas South, Savati, Savatiya, Савватия ,Саватия" + }, + { + "id": "44606", + "ident": "ULKW", + "type": "small_airport", + "name": "Velsk Airport", + "latitude_deg": "61.040000915527344", + "longitude_deg": "42.099998474121094", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Velsk", + "scheduled_service": "no", + "gps_code": "ULKW", + "keywords": "Аэропорт Вельск" + }, + { + "id": "6489", + "ident": "ULLI", + "type": "large_airport", + "name": "Pulkovo Airport", + "latitude_deg": "59.80030059814453", + "longitude_deg": "30.262500762939453", + "elevation_ft": "78", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SPE", + "municipality": "St. Petersburg", + "scheduled_service": "yes", + "gps_code": "ULLI", + "iata_code": "LED", + "home_link": "http://www.pulkovoairport.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pulkovo_Airport", + "keywords": "Аэропо́рт Пу́лково, Leningrad, Shosseynaya Airport, Saint Petersburg, Petrograd" + }, + { + "id": "34932", + "ident": "ULLP", + "type": "medium_airport", + "name": "Pushkin Airport", + "latitude_deg": "59.685001", + "longitude_deg": "30.338301", + "elevation_ft": "230", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SPE", + "municipality": "St. Petersburg", + "scheduled_service": "no", + "gps_code": "ULLP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pushkin_Airport", + "keywords": "Аэропорт Пушкин" + }, + { + "id": "35081", + "ident": "ULLS", + "type": "medium_airport", + "name": "Siversky Air Base", + "latitude_deg": "59.3567008972168", + "longitude_deg": "30.036699295043945", + "elevation_ft": "341", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Siversky", + "scheduled_service": "no", + "gps_code": "ULLS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Siversky_(air_base)" + }, + { + "id": "44753", + "ident": "ULMA", + "type": "small_airport", + "name": "Umba Airstrip", + "latitude_deg": "66.696999", + "longitude_deg": "34.387001", + "elevation_ft": "122", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Umba", + "scheduled_service": "no", + "gps_code": "ULMA", + "keywords": "Аэропорт Умба, УЛМА" + }, + { + "id": "315541", + "ident": "ULMB", + "type": "closed", + "name": "Varzuga Airport", + "latitude_deg": "66.4117", + "longitude_deg": "36.594", + "elevation_ft": "168", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Varzuga", + "scheduled_service": "no", + "gps_code": "ULMB", + "keywords": "УЛМБ, Варзуга" + }, + { + "id": "35001", + "ident": "ULMK", + "type": "small_airport", + "name": "Kirovsk-Apatity Airport", + "latitude_deg": "67.46330261230469", + "longitude_deg": "33.58829879760742", + "elevation_ft": "515", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Apatity", + "scheduled_service": "no", + "gps_code": "ULMK", + "iata_code": "KVK", + "home_link": "http://www.airkirovsk.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kirovsk-Apatity_Airport", + "keywords": "Kirovsk Airport, Apatity Airport, Аэропорт Кировск, Аэропорт Апатиты" + }, + { + "id": "6490", + "ident": "ULMM", + "type": "medium_airport", + "name": "Murmansk Airport", + "latitude_deg": "68.78170013427734", + "longitude_deg": "32.75080108642578", + "elevation_ft": "266", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Murmansk", + "scheduled_service": "yes", + "gps_code": "ULMM", + "iata_code": "MMK", + "home_link": "http://www.airport-murmansk.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Murmansk_Airport" + }, + { + "id": "315542", + "ident": "ULMN", + "type": "closed", + "name": "Kuzomen Airport", + "latitude_deg": "66.28", + "longitude_deg": "36.87", + "elevation_ft": "3", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Kuzomen", + "scheduled_service": "no", + "gps_code": "ULMN", + "local_code": "ULMN", + "keywords": "УЛМН, Кузомень" + }, + { + "id": "315538", + "ident": "ULMO", + "type": "closed", + "name": "Ponoy Airfield", + "latitude_deg": "67.11", + "longitude_deg": "41.106", + "elevation_ft": "545", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Ponoy", + "scheduled_service": "no", + "gps_code": "ULMO", + "local_code": "ULMO", + "keywords": "УЛМО, Поной" + }, + { + "id": "44762", + "ident": "ULMX", + "type": "small_airport", + "name": "Krasnoshchelye Airport", + "latitude_deg": "67.34799957279999", + "longitude_deg": "37.0769996643", + "elevation_ft": "492", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Krasnoshchelye", + "scheduled_service": "no", + "gps_code": "ULMX", + "keywords": "Krasnoschelye Airport, Аэропорт Краснощелье, УЛМЬ" + }, + { + "id": "44748", + "ident": "ULNB", + "type": "small_airport", + "name": "Borovichi Airport", + "latitude_deg": "58.43600082397461", + "longitude_deg": "33.888999938964844", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NGR", + "municipality": "Borovichi", + "scheduled_service": "no", + "gps_code": "ULNB", + "keywords": "Аэропорт Боровичи" + }, + { + "id": "44750", + "ident": "ULNM", + "type": "closed", + "name": "Maryovo Airport", + "latitude_deg": "57.31999969482422", + "longitude_deg": "32.04999923706055", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NGR", + "municipality": "Maryovo", + "scheduled_service": "no", + "gps_code": "ULNM", + "keywords": "Marevo Airport, Аэропорт Марёво, Аэропорт Марево" + }, + { + "id": "42972", + "ident": "ULNN", + "type": "closed", + "name": "Novgorod Airport", + "latitude_deg": "58.49330139160156", + "longitude_deg": "31.24169921875", + "elevation_ft": "85", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NGR", + "municipality": "Velikiy Novgorod", + "scheduled_service": "no", + "gps_code": "ULNN", + "iata_code": "NVR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Novgorod_Airport", + "keywords": "Old Novgorod, Аэропорт Новгород" + }, + { + "id": "44749", + "ident": "ULNP", + "type": "small_airport", + "name": "Pestovo Airfield", + "latitude_deg": "58.608002", + "longitude_deg": "35.779999", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NGR", + "municipality": "Pestovo", + "scheduled_service": "no", + "gps_code": "ULNP", + "keywords": "Аэропорт Пестово" + }, + { + "id": "42973", + "ident": "ULNR", + "type": "medium_airport", + "name": "Staraya Russa Air Base", + "latitude_deg": "57.961399", + "longitude_deg": "31.384399", + "elevation_ft": "52", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NGR", + "municipality": "Staraya Russa", + "scheduled_service": "no", + "gps_code": "ULNR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Staraya_Russa_Airport", + "keywords": "Staraya Rossiya" + }, + { + "id": "32584", + "ident": "ULOL", + "type": "closed", + "name": "Velikiye Luki Airport", + "latitude_deg": "56.381066", + "longitude_deg": "30.607846", + "elevation_ft": "328", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-PSK", + "municipality": "Velikiye Luki", + "scheduled_service": "no", + "gps_code": "ULOL", + "iata_code": "VLU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Velikiye_Luki_Airport" + }, + { + "id": "6491", + "ident": "ULOO", + "type": "medium_airport", + "name": "Pskov Airport", + "latitude_deg": "57.78390121459961", + "longitude_deg": "28.395599365234375", + "elevation_ft": "154", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PSK", + "municipality": "Pskov", + "scheduled_service": "yes", + "gps_code": "ULOO", + "iata_code": "PKV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pskov_Airport" + }, + { + "id": "44657", + "ident": "ULPA", + "type": "small_airport", + "name": "Pudozh Airport", + "latitude_deg": "61.8250007629", + "longitude_deg": "36.5800018311", + "elevation_ft": "144", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KR", + "municipality": "Pudozh", + "scheduled_service": "yes", + "gps_code": "ULPA", + "keywords": "Аэропорт Пудож, УЛПА" + }, + { + "id": "6492", + "ident": "ULPB", + "type": "medium_airport", + "name": "Petrozavodsk Airport", + "latitude_deg": "61.88520050048828", + "longitude_deg": "34.154701232910156", + "elevation_ft": "151", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KR", + "municipality": "Petrozavodsk", + "scheduled_service": "yes", + "gps_code": "ULPB", + "iata_code": "PES", + "wikipedia_link": "https://en.wikipedia.org/wiki/Petrozavodsk_Airport", + "keywords": "Besovets Airport, Аэропорт Петрозаводск, Аэропорт Бесовец" + }, + { + "id": "43964", + "ident": "ULPK", + "type": "small_airport", + "name": "Kalevala Airport", + "latitude_deg": "65.2099990845", + "longitude_deg": "31.1350002289", + "elevation_ft": "377", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KR", + "municipality": "Kalevala", + "scheduled_service": "no", + "gps_code": "ULPK", + "keywords": "Аэропорт Калевала, УЛПК" + }, + { + "id": "43334", + "ident": "ULPP", + "type": "medium_airport", + "name": "Peski Airport", + "latitude_deg": "61.83194351196289", + "longitude_deg": "34.295555114746094", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KR", + "municipality": "Petrozavodsk", + "scheduled_service": "no", + "gps_code": "ULPP", + "keywords": "Пески" + }, + { + "id": "44752", + "ident": "ULPS", + "type": "small_airport", + "name": "Segezha Airfield", + "latitude_deg": "63.758999", + "longitude_deg": "34.283001", + "elevation_ft": "377", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KR", + "municipality": "Segezha", + "scheduled_service": "no", + "gps_code": "ULPS", + "keywords": "Аэропорт Сегежа, УЛПС" + }, + { + "id": "43333", + "ident": "ULPW", + "type": "medium_airport", + "name": "Sortavala", + "latitude_deg": "61.736099", + "longitude_deg": "30.673599", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KR", + "scheduled_service": "no", + "gps_code": "ULPW", + "keywords": "Сортавала" + }, + { + "id": "44769", + "ident": "ULSL", + "type": "closed", + "name": "Lodeynoye Pole Airport", + "latitude_deg": "60.716999054", + "longitude_deg": "33.561000824", + "elevation_ft": "49", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Lodeynoye Pole", + "scheduled_service": "no", + "gps_code": "ULSL", + "keywords": "Lodeynoe Pole Airport, Аэропорт Лодейное Поле" + }, + { + "id": "44773", + "ident": "ULSR", + "type": "heliport", + "name": "Strelna Heliport", + "latitude_deg": "59.86050033569336", + "longitude_deg": "30.052000045776367", + "elevation_ft": "16", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SPE", + "municipality": "Saint Petersburg", + "scheduled_service": "no", + "gps_code": "ULSR", + "keywords": "Вертодром Стрельна" + }, + { + "id": "32239", + "ident": "ULSS", + "type": "closed", + "name": "Rzhevka Airport", + "latitude_deg": "59.98", + "longitude_deg": "30.5856", + "elevation_ft": "56", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "St. Petersburg", + "scheduled_service": "no", + "home_link": "http://www.airport-rzhevka.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rzhevka_Airport", + "keywords": "Smolnaya Airfield, Smolnoye Airfield, Аэропорт Ржевка, Аэродром Смольная, Аэродром Смольное, RVH, ULSS" + }, + { + "id": "331712", + "ident": "ULSW", + "type": "small_airport", + "name": "Severniy veter", + "latitude_deg": "59.835311", + "longitude_deg": "31.480533", + "elevation_ft": "194", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Putilovo", + "scheduled_service": "no", + "gps_code": "ULSW", + "home_link": "http://paracentr.ru", + "keywords": "Северный ветер,Putilovo" + }, + { + "id": "324862", + "ident": "ULSZ", + "type": "seaplane_base", + "name": "Lake Krasnogvardeyskoye Water Aerodrome", + "latitude_deg": "60.268033", + "longitude_deg": "29.234033", + "elevation_ft": "112", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "Utkino", + "scheduled_service": "no", + "gps_code": "ULSZ" + }, + { + "id": "326385", + "ident": "ULWB", + "type": "small_airport", + "name": "Belozersk Airport", + "latitude_deg": "60.015745", + "longitude_deg": "37.755371", + "elevation_ft": "399", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLG", + "municipality": "Belozersk", + "scheduled_service": "no", + "gps_code": "ULWB", + "keywords": "УЛВБ, Белозерск, Belozyorsk" + }, + { + "id": "44747", + "ident": "ULWK", + "type": "small_airport", + "name": "Kichmengskiy Gorodok Airport", + "latitude_deg": "59.97700119018555", + "longitude_deg": "45.82500076293945", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLG", + "municipality": "Kichmengskiy Gorodok", + "scheduled_service": "yes", + "gps_code": "ULWK", + "keywords": "Kichmengsky Gorodok Airport, Аэропорт Кичменгский Городок" + }, + { + "id": "44607", + "ident": "ULWR", + "type": "small_airport", + "name": "Vytegra Airfield", + "latitude_deg": "61.032001", + "longitude_deg": "36.435001", + "elevation_ft": "217", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLG", + "municipality": "Vytegra", + "scheduled_service": "yes", + "gps_code": "ULWR", + "keywords": "Аэропорт Вытегра, УЛВР" + }, + { + "id": "46286", + "ident": "ULWT", + "type": "closed", + "name": "Totma Airport", + "latitude_deg": "59.9835754516", + "longitude_deg": "42.7672863007", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLG", + "municipality": "Totma", + "scheduled_service": "no", + "gps_code": "ULWT", + "keywords": "Totma Airport, Аэропорт Тотьма, УЛВТ" + }, + { + "id": "32571", + "ident": "ULWW", + "type": "medium_airport", + "name": "Vologda Airport", + "latitude_deg": "59.282501220703125", + "longitude_deg": "39.944400787353516", + "elevation_ft": "387", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLG", + "municipality": "Vologda", + "scheduled_service": "no", + "gps_code": "ULWW", + "iata_code": "VGD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vologda_Airport", + "keywords": "Аэропорт Вологда" + }, + { + "id": "41499", + "ident": "UM-0001", + "type": "closed", + "name": "Midway Eastern Island Airfield", + "latitude_deg": "28.209396362304688", + "longitude_deg": "-177.33090209960938", + "continent": "OC", + "iso_country": "UM", + "iso_region": "UM-71", + "municipality": "Eastern Island", + "scheduled_service": "no" + }, + { + "id": "340682", + "ident": "UM-0002", + "type": "closed", + "name": "Kamakaiwi Field", + "latitude_deg": "0.809797", + "longitude_deg": "-176.615705", + "continent": "OC", + "iso_country": "UM", + "iso_region": "UM-84", + "municipality": "Howland Island", + "scheduled_service": "no", + "keywords": "WPA Howland Airfield, NAS Howland" + }, + { + "id": "347041", + "ident": "UM-0003", + "type": "small_airport", + "name": "Whomble Airport", + "latitude_deg": "40.021066", + "longitude_deg": "-102.17489", + "elevation_ft": "3700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Wray", + "scheduled_service": "no", + "gps_code": "31CO", + "local_code": "31CO" + }, + { + "id": "348663", + "ident": "UM-0004", + "type": "closed", + "name": "Jarvis Island Airport", + "latitude_deg": "-0.36633", + "longitude_deg": "-159.9913", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "UM", + "iso_region": "UM-86", + "municipality": "Jarvis Island", + "scheduled_service": "no", + "gps_code": "PLUR", + "keywords": "PLUR" + }, + { + "id": "348664", + "ident": "UM-0005", + "type": "closed", + "name": "Kingman Reef Seaplane Base", + "latitude_deg": "6.40405", + "longitude_deg": "-162.37781", + "continent": "OC", + "iso_country": "UM", + "iso_region": "UM-89", + "municipality": "Kingman Reef", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kingman_Reef" + }, + { + "id": "6495", + "ident": "UMBB", + "type": "medium_airport", + "name": "Brest Airport", + "latitude_deg": "52.108299", + "longitude_deg": "23.8981", + "elevation_ft": "468", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-BR", + "municipality": "Brest", + "scheduled_service": "yes", + "gps_code": "UMBB", + "iata_code": "BQT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brest_Airport", + "keywords": "Аэропорт Брест" + }, + { + "id": "308493", + "ident": "UMBK", + "type": "small_airport", + "name": "Borisovo Air Base", + "latitude_deg": "52.164", + "longitude_deg": "24.3999", + "elevation_ft": "463", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-BR", + "municipality": "Barysava", + "scheduled_service": "no", + "gps_code": "UMBK" + }, + { + "id": "319602", + "ident": "UMDU", + "type": "small_airport", + "name": "Shchuchyn", + "latitude_deg": "53.598206", + "longitude_deg": "24.763414", + "elevation_ft": "575", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-HR", + "municipality": "Shchuchyn", + "scheduled_service": "no", + "local_code": "XMDU", + "keywords": "ЬМФЙ, Щучин" + }, + { + "id": "6496", + "ident": "UMGG", + "type": "medium_airport", + "name": "Gomel Airport", + "latitude_deg": "52.527000427246094", + "longitude_deg": "31.016700744628906", + "elevation_ft": "472", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-HO", + "municipality": "Gomel", + "scheduled_service": "yes", + "gps_code": "UMGG", + "iata_code": "GME", + "home_link": "http://www.gomelavia.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gomel_Airport" + }, + { + "id": "329212", + "ident": "UMGI", + "type": "small_airport", + "name": "Rogachev", + "latitude_deg": "53.014712", + "longitude_deg": "29.878516", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-HO", + "municipality": "Min'kov", + "scheduled_service": "no", + "gps_code": "UMGI" + }, + { + "id": "6497", + "ident": "UMII", + "type": "medium_airport", + "name": "Vitebsk Vostochny Airport", + "latitude_deg": "55.126499176025", + "longitude_deg": "30.349599838257", + "elevation_ft": "682", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-VI", + "municipality": "Vitebsk", + "scheduled_service": "no", + "gps_code": "UMII", + "iata_code": "VTB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vitebsk_Vostochny_Airport", + "keywords": "УМІІ, УМИИ, Vitebsk Southeast, Vitebsk East Airport, Аэрапорт Віцебск, Аэропорт Витебск" + }, + { + "id": "6498", + "ident": "UMKK", + "type": "medium_airport", + "name": "Khrabrovo Airport", + "latitude_deg": "54.88999938964844", + "longitude_deg": "20.592599868774414", + "elevation_ft": "42", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KGD", + "municipality": "Kaliningrad", + "scheduled_service": "yes", + "gps_code": "UMKK", + "iata_code": "KGD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khrabrovo_Airport" + }, + { + "id": "30140", + "ident": "UMLI", + "type": "small_airport", + "name": "Minsk Machulishchy Air Base", + "latitude_deg": "53.7733", + "longitude_deg": "27.58", + "elevation_ft": "699", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MI", + "municipality": "Minsk", + "scheduled_service": "no", + "gps_code": "UMLI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Machulishchy_(air_base)", + "keywords": "Minsk Machulishchi Airport, Аэрапорт Мачулішчы, Аэропорт Мачулищи" + }, + { + "id": "44338", + "ident": "UMMA", + "type": "medium_airport", + "name": "Baranavichi Air Base", + "latitude_deg": "53.099998474121094", + "longitude_deg": "26.049999237060547", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-BR", + "municipality": "Baranavichi", + "scheduled_service": "no", + "gps_code": "UMMA", + "keywords": "Baranovichi Air Base, Аэродром Барановичи" + }, + { + "id": "41134", + "ident": "UMMB", + "type": "closed", + "name": "Borovaya Airfield", + "latitude_deg": "53.960461", + "longitude_deg": "27.650596", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MI", + "municipality": "Minsk", + "scheduled_service": "no", + "gps_code": "UMMB", + "home_link": "http://aeroclub-minsk.by/" + }, + { + "id": "6499", + "ident": "UMMG", + "type": "medium_airport", + "name": "Hrodna Airport", + "latitude_deg": "53.60200119018555", + "longitude_deg": "24.053800582885742", + "elevation_ft": "443", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-HR", + "municipality": "Hrodna", + "scheduled_service": "yes", + "gps_code": "UMMG", + "iata_code": "GNA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hrodna_Airport", + "keywords": "Grodno Airport, Гро́дна" + }, + { + "id": "6500", + "ident": "UMMM", + "type": "closed", + "name": "Minsk 1 Airport", + "latitude_deg": "53.864498", + "longitude_deg": "27.5397", + "elevation_ft": "748", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MI", + "municipality": "Minsk", + "scheduled_service": "no", + "gps_code": "UMMM", + "iata_code": "MHP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Minsk-1" + }, + { + "id": "46166", + "ident": "UMMR", + "type": "closed", + "name": "Ross Air Base", + "latitude_deg": "53.303", + "longitude_deg": "24.369", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-HR", + "municipality": "Ross", + "scheduled_service": "no", + "gps_code": "UMMR", + "keywords": "Аэродром Россь, УММР" + }, + { + "id": "6501", + "ident": "UMMS", + "type": "large_airport", + "name": "Minsk National Airport", + "latitude_deg": "53.888071", + "longitude_deg": "28.039964", + "elevation_ft": "670", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MI", + "municipality": "Minsk", + "scheduled_service": "yes", + "gps_code": "UMMS", + "iata_code": "MSQ", + "home_link": "http://airport.by/en", + "wikipedia_link": "https://en.wikipedia.org/wiki/Minsk_National_Airport", + "keywords": "Нацыянальны аэрапорт, Minsk 2 Airport" + }, + { + "id": "44375", + "ident": "UMNB", + "type": "medium_airport", + "name": "Babruisk Air Base", + "latitude_deg": "53.105", + "longitude_deg": "29.205", + "elevation_ft": "502", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MA", + "municipality": "Babruisk", + "scheduled_service": "no", + "gps_code": "UMNB", + "wikipedia_link": "https://ru.wikipedia.org/wiki/%D0%91%D0%BE%D0%B1%D1%80%D1%83%D0%B9%D1%81%D0%BA_(%D0%B0%D1%8D%D1%80%D0%BE%D0%B4%D1%80%D0%BE%D0%BC", + "keywords": "Bobruisk Air Base, Babruysk Air Base, Bobruysk Air Base, Аэродром Бабруйск, Аэродром Бобруйск" + }, + { + "id": "46155", + "ident": "UMNM", + "type": "small_airport", + "name": "Novo-Pashkovo Airfield", + "latitude_deg": "53.945", + "longitude_deg": "30.244", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MA", + "municipality": "Mahiylow / Mogilev", + "scheduled_service": "no", + "gps_code": "UMNM", + "keywords": "Аэропорт Ново-Пашково, УМНМ, DOSAAF" + }, + { + "id": "46167", + "ident": "UMNV", + "type": "small_airport", + "name": "Pruzhany Air Base", + "latitude_deg": "52.582295731799995", + "longitude_deg": "24.379863739", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-BR", + "municipality": "Pruzhany", + "scheduled_service": "no", + "gps_code": "UMNV", + "keywords": "Аэродром Пружаны, УМНЖ" + }, + { + "id": "6502", + "ident": "UMOO", + "type": "medium_airport", + "name": "Mogilev Airport", + "latitude_deg": "53.954898834228516", + "longitude_deg": "30.09510040283203", + "elevation_ft": "637", + "continent": "EU", + "iso_country": "BY", + "iso_region": "BY-MA", + "municipality": "Mogilev", + "scheduled_service": "yes", + "gps_code": "UMOO", + "iata_code": "MVQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mogilev_Airport" + }, + { + "id": "6503", + "ident": "UNAA", + "type": "medium_airport", + "name": "Abakan International Airport", + "latitude_deg": "53.740002", + "longitude_deg": "91.385002", + "elevation_ft": "831", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KK", + "municipality": "Abakan", + "scheduled_service": "yes", + "gps_code": "UNAA", + "iata_code": "ABA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abakan_International_Airport" + }, + { + "id": "44612", + "ident": "UNAU", + "type": "small_airport", + "name": "Shushenskoye Airport", + "latitude_deg": "53.385176", + "longitude_deg": "92.044718", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Kazantsevo", + "scheduled_service": "yes", + "gps_code": "UNAU", + "keywords": "Shushenskoe Airport, Kazantsevo Airport, Аэропорт Шушенское, Аэропорт Казанцево" + }, + { + "id": "44358", + "ident": "UNBA", + "type": "small_airport", + "name": "Kosh-Agach Airport", + "latitude_deg": "49.946443", + "longitude_deg": "88.630096", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AL", + "municipality": "Kosh-Agach", + "scheduled_service": "no", + "gps_code": "UNBA", + "keywords": "Аэропорт Кош-Агач" + }, + { + "id": "6504", + "ident": "UNBB", + "type": "medium_airport", + "name": "Barnaul Airport", + "latitude_deg": "53.363800048828125", + "longitude_deg": "83.53849792480469", + "elevation_ft": "837", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-ALT", + "municipality": "Barnaul", + "scheduled_service": "yes", + "gps_code": "UNBB", + "iata_code": "BAX", + "home_link": "http://airaltay.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barnaul_Airport", + "keywords": "Аэропорт Барнаул, Barnaul West, Mikhaylovka, Novomikhaylovka" + }, + { + "id": "315320", + "ident": "UNBC", + "type": "heliport", + "name": "Akkem Heliport", + "latitude_deg": "49.9071", + "longitude_deg": "86.5442", + "elevation_ft": "6695", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AL", + "municipality": "Akkem Lake", + "scheduled_service": "no", + "gps_code": "UNBC", + "local_code": "UNBC", + "keywords": "УНБЦ, Аккем" + }, + { + "id": "42913", + "ident": "UNBG", + "type": "medium_airport", + "name": "Gorno-Altaysk Airport", + "latitude_deg": "51.969204", + "longitude_deg": "85.836539", + "elevation_ft": "965", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AL", + "municipality": "Gorno-Altaysk", + "scheduled_service": "no", + "gps_code": "UNBG", + "iata_code": "RGK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gorno-Altaysk_Airport", + "keywords": "Аэропорт Горно-Алтайск" + }, + { + "id": "42911", + "ident": "UNBI", + "type": "small_airport", + "name": "Biysk Airport", + "latitude_deg": "52.478686", + "longitude_deg": "85.342513", + "elevation_ft": "620", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ALT", + "municipality": "Biysk", + "scheduled_service": "yes", + "gps_code": "UNBI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Biysk_Airport", + "keywords": "Аэропорт Бийск" + }, + { + "id": "46261", + "ident": "UNBM", + "type": "small_airport", + "name": "Volchikha Airport", + "latitude_deg": "52.0250889138", + "longitude_deg": "80.3378677368", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ALT", + "municipality": "Volchikha", + "scheduled_service": "no", + "gps_code": "UNBM", + "keywords": "Аэропорт Волчиха, УНБМ" + }, + { + "id": "42912", + "ident": "UNBR", + "type": "closed", + "name": "Rubtsovsk Airport", + "latitude_deg": "51.58925", + "longitude_deg": "81.204208", + "elevation_ft": "709", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ALT", + "municipality": "Rubtsovsk", + "scheduled_service": "no", + "gps_code": "UNBR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rubtsovsk_Airport" + }, + { + "id": "44354", + "ident": "UNBU", + "type": "small_airport", + "name": "Ust-Koksa Airport", + "latitude_deg": "50.264711", + "longitude_deg": "85.713489", + "elevation_ft": "3235", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AL", + "municipality": "Ust-Koksa Airport", + "scheduled_service": "no", + "gps_code": "UNBU", + "keywords": "Аэропорт Усть-Кокса" + }, + { + "id": "42975", + "ident": "UNCC", + "type": "small_airport", + "name": "Gorodskoy Aeroport Airfield", + "latitude_deg": "55.09573", + "longitude_deg": "82.90945", + "elevation_ft": "564", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Novosibirsk", + "scheduled_service": "no", + "gps_code": "UNNG", + "keywords": "Посадочная площадка Городской Аэропорт, Аэропорт Северный, Severny Airport" + }, + { + "id": "315338", + "ident": "UNEA", + "type": "heliport", + "name": "Anzhero-Sudzhensk Heliport", + "latitude_deg": "56.1498", + "longitude_deg": "86.0538", + "elevation_ft": "748", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KAM", + "municipality": "Anzhero-Sudzhensk", + "scheduled_service": "no", + "gps_code": "UNEA", + "local_code": "UNEA", + "keywords": "УНЕА, Анжеро-Судженск" + }, + { + "id": "6505", + "ident": "UNEE", + "type": "medium_airport", + "name": "Kemerovo Airport", + "latitude_deg": "55.27009963989258", + "longitude_deg": "86.1072006225586", + "elevation_ft": "863", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KEM", + "municipality": "Kemerovo", + "scheduled_service": "yes", + "gps_code": "UNEE", + "iata_code": "KEJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kemerovo_Airport" + }, + { + "id": "315321", + "ident": "UNHA", + "type": "small_airport", + "name": "Aksenovo Airport", + "latitude_deg": "58.963999", + "longitude_deg": "101.571868", + "elevation_ft": "580", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Aksenovo", + "scheduled_service": "no", + "gps_code": "UNHA", + "local_code": "UNHA", + "keywords": "УНХА, Аксеново" + }, + { + "id": "315499", + "ident": "UNHT", + "type": "heliport", + "name": "Tura Heliport", + "latitude_deg": "64.278786", + "longitude_deg": "100.214164", + "elevation_ft": "600", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Tura", + "scheduled_service": "no", + "gps_code": "UNHT", + "local_code": "UNHT", + "keywords": "УНХТ, Тура - МВЛ" + }, + { + "id": "330924", + "ident": "UNHZ", + "type": "small_airport", + "name": "Zotino Airport", + "latitude_deg": "60.900834", + "longitude_deg": "89.680726", + "elevation_ft": "138", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Zotino", + "scheduled_service": "no", + "gps_code": "UNHZ", + "keywords": "УНХЗ, Зотино" + }, + { + "id": "315318", + "ident": "UNIA", + "type": "small_airport", + "name": "Aydara Airport", + "latitude_deg": "58.5291", + "longitude_deg": "88.4031", + "elevation_ft": "373", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Aydara", + "scheduled_service": "no", + "gps_code": "UNIA", + "local_code": "UNIA", + "keywords": "УНИА, Айдара" + }, + { + "id": "42951", + "ident": "UNIB", + "type": "medium_airport", + "name": "Baykit Airport", + "latitude_deg": "61.676700592041016", + "longitude_deg": "96.3550033569336", + "elevation_ft": "853", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Baykit", + "scheduled_service": "no", + "gps_code": "UNIB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baykit_Airport", + "keywords": "Аэропорт Байкит" + }, + { + "id": "30995", + "ident": "UNII", + "type": "medium_airport", + "name": "Yeniseysk Airport", + "latitude_deg": "58.47420120239258", + "longitude_deg": "92.11250305175781", + "elevation_ft": "253", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Yeniseysk", + "scheduled_service": "yes", + "gps_code": "UNII", + "iata_code": "EIE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yeniseysk_Airport", + "keywords": "Yeniseisk Airport, Аэропорт Енисейск" + }, + { + "id": "44740", + "ident": "UNIJ", + "type": "small_airport", + "name": "Yartsevo Airport", + "latitude_deg": "60.255001068115234", + "longitude_deg": "90.19499969482422", + "elevation_ft": "210", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Yartsevo", + "scheduled_service": "no", + "gps_code": "UNIJ", + "keywords": "Аэропорт Ярцево" + }, + { + "id": "42955", + "ident": "UNIP", + "type": "medium_airport", + "name": "Podkamennaya Tunguska Airport", + "latitude_deg": "61.589699", + "longitude_deg": "89.994003", + "elevation_ft": "213", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Bor", + "scheduled_service": "no", + "gps_code": "UNIP", + "iata_code": "TGP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Podkamennaya_Tunguska_Airport", + "keywords": "Аэропорт Подкаменная Тунгуска" + }, + { + "id": "42956", + "ident": "UNIS", + "type": "medium_airport", + "name": "Severo-Yeniseysk Airport", + "latitude_deg": "60.373299", + "longitude_deg": "93.011703", + "elevation_ft": "1706", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Severo-Yeniseysk", + "scheduled_service": "yes", + "gps_code": "UNIS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Severo-Eniseysk_Airport", + "keywords": "Severo-Eniseisk Airport, Аэропорт Северо-Енисейск" + }, + { + "id": "32543", + "ident": "UNIT", + "type": "small_airport", + "name": "Tura Mountain Airport", + "latitude_deg": "64.333511352539", + "longitude_deg": "100.4328918457", + "elevation_ft": "2044", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Tura", + "scheduled_service": "yes", + "gps_code": "UNIT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tura_Airport", + "keywords": "УНИТ, Тура / Горный, Tura Northeast" + }, + { + "id": "32544", + "ident": "UNIW", + "type": "medium_airport", + "name": "Vanavara Airport", + "latitude_deg": "60.356229", + "longitude_deg": "102.309641", + "elevation_ft": "892", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Vanavara", + "scheduled_service": "yes", + "gps_code": "UNIW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vanavara_Airport", + "keywords": "Аэропорт Ванавара" + }, + { + "id": "42952", + "ident": "UNKB", + "type": "small_airport", + "name": "Boguchany Airport", + "latitude_deg": "58.380615234375", + "longitude_deg": "97.47233581542969", + "elevation_ft": "446", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Boguchany", + "scheduled_service": "no", + "gps_code": "UNKB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boguchany_Airport", + "keywords": "Аэропорт Богучаны" + }, + { + "id": "43337", + "ident": "UNKI", + "type": "small_airport", + "name": "Kodinsk Airport", + "latitude_deg": "58.479400634765625", + "longitude_deg": "99.09390258789062", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "scheduled_service": "no", + "gps_code": "UNKI", + "keywords": "Аэропорт Кодинск, Кодинск" + }, + { + "id": "35009", + "ident": "UNKK", + "type": "closed", + "name": "Krasnoyarsk Severniy Airport", + "latitude_deg": "56.041698", + "longitude_deg": "92.9067", + "elevation_ft": "676", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Krasnoyarsk", + "scheduled_service": "no", + "gps_code": "UNKK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Krasnoyarsk_Northeast", + "keywords": "Krasnoyarsk Severny Airport, Krasnoyarsk North Airport, Krasnoyarsk Northeast Airport, Аэропорт Красноярск Северный. Innokentievskaya Air Base" + }, + { + "id": "6506", + "ident": "UNKL", + "type": "large_airport", + "name": "Krasnoyarsk International Airport", + "latitude_deg": "56.173077", + "longitude_deg": "92.492437", + "elevation_ft": "942", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Krasnoyarsk", + "scheduled_service": "yes", + "gps_code": "UNKL", + "iata_code": "KJA", + "home_link": "http://www.kja.aero", + "wikipedia_link": "https://en.wikipedia.org/wiki/Krasnoyarsk_International_Airport", + "keywords": "Yemelyanovo" + }, + { + "id": "44425", + "ident": "UNKM", + "type": "medium_airport", + "name": "Krasnoyarsk Cheremshanka Airport", + "latitude_deg": "56.177584", + "longitude_deg": "92.545881", + "elevation_ft": "781", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Krasnoyarsk", + "scheduled_service": "yes", + "gps_code": "UNKM", + "home_link": "http://www.cheremshanka.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Krasnoyarsk_Cheremshanka_Airport", + "keywords": "Аэропорт Черемшанка" + }, + { + "id": "42957", + "ident": "UNKO", + "type": "medium_airport", + "name": "Sharypovo Airport", + "latitude_deg": "55.454914093", + "longitude_deg": "89.1738815308", + "elevation_ft": "1099", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Sharypovo", + "scheduled_service": "no", + "gps_code": "UNKO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sharypovo_Airport", + "keywords": "Аэропорт Шарыпово, УНКО" + }, + { + "id": "30616", + "ident": "UNKS", + "type": "medium_airport", + "name": "Achinsk Airport", + "latitude_deg": "56.269185", + "longitude_deg": "90.57511", + "elevation_ft": "1033", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Achinsk", + "scheduled_service": "no", + "gps_code": "UNKS", + "iata_code": "ACS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Achinsk_Airport" + }, + { + "id": "31793", + "ident": "UNKY", + "type": "medium_airport", + "name": "Kyzyl Airport", + "latitude_deg": "51.66939926147461", + "longitude_deg": "94.40059661865234", + "elevation_ft": "2123", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-TY", + "municipality": "Kyzyl", + "scheduled_service": "yes", + "gps_code": "UNKY", + "iata_code": "KYZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kyzyl_Airport" + }, + { + "id": "335225", + "ident": "UNLK", + "type": "small_airport", + "name": "Kargasok Airport", + "latitude_deg": "59.061858", + "longitude_deg": "80.823204", + "elevation_ft": "194", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TOM", + "municipality": "Kargasok", + "scheduled_service": "no", + "gps_code": "UNLK" + }, + { + "id": "32545", + "ident": "UNLL", + "type": "small_airport", + "name": "Kolpashevo Airport", + "latitude_deg": "58.32529830932617", + "longitude_deg": "82.93250274658203", + "elevation_ft": "243", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-TOM", + "municipality": "Kolpashevo", + "scheduled_service": "no", + "gps_code": "UNLL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kolpashevo_Airport" + }, + { + "id": "308514", + "ident": "UNLW", + "type": "small_airport", + "name": "Novy Vasyugan Airport", + "latitude_deg": "58.586", + "longitude_deg": "76.504", + "elevation_ft": "246", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TOM", + "municipality": "Novy Vasyugan", + "scheduled_service": "no", + "gps_code": "UNLW" + }, + { + "id": "42974", + "ident": "UNNE", + "type": "medium_airport", + "name": "Yeltsovka Airport", + "latitude_deg": "55.09239959716797", + "longitude_deg": "83.00450134277344", + "elevation_ft": "617", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Novosibirsk", + "scheduled_service": "no", + "gps_code": "UNNE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elitsovka_Airport", + "keywords": "Eltsovka Airport, Аэропорт Ельцовка" + }, + { + "id": "6507", + "ident": "UNNT", + "type": "large_airport", + "name": "Novosibirsk Tolmachevo Airport", + "latitude_deg": "55.019756", + "longitude_deg": "82.618675", + "elevation_ft": "365", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NVS", + "municipality": "Novosibirsk", + "scheduled_service": "yes", + "gps_code": "UNNT", + "iata_code": "OVB", + "home_link": "http://eng.tolmachevo.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tolmachevo_Airport" + }, + { + "id": "43882", + "ident": "UNOK", + "type": "small_airport", + "name": "Kalachinsk Airport", + "latitude_deg": "55.02000045776367", + "longitude_deg": "74.61000061035156", + "elevation_ft": "361", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-OMS", + "municipality": "Kalachinsk", + "scheduled_service": "no", + "gps_code": "UNOK", + "keywords": "Аэропорт Калачинск" + }, + { + "id": "6508", + "ident": "UNOO", + "type": "medium_airport", + "name": "Omsk Central Airport", + "latitude_deg": "54.96699905395508", + "longitude_deg": "73.31050109863281", + "elevation_ft": "311", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-OMS", + "municipality": "Omsk", + "scheduled_service": "yes", + "gps_code": "UNOO", + "iata_code": "OMS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tsentralny_Airport", + "keywords": "Omsk Tsentralny Airport" + }, + { + "id": "44356", + "ident": "UNOS", + "type": "medium_airport", + "name": "Omsk Severny Airport", + "latitude_deg": "54.9749984741", + "longitude_deg": "73.5550003052", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-OMS", + "municipality": "Omsk", + "scheduled_service": "no", + "gps_code": "UNOS", + "keywords": "Omsk North Airport, Аэропорт Омск Северный" + }, + { + "id": "44864", + "ident": "UNOT", + "type": "small_airport", + "name": "Tara Airport", + "latitude_deg": "56.900001525878906", + "longitude_deg": "74.30000305175781", + "elevation_ft": "253", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-OMS", + "municipality": "Tara", + "scheduled_service": "no", + "gps_code": "UNOT", + "keywords": "Аэропорт Тара" + }, + { + "id": "44862", + "ident": "UNOW", + "type": "small_airport", + "name": "Tevriz Airport", + "latitude_deg": "57.50400161743164", + "longitude_deg": "72.33100128173828", + "elevation_ft": "217", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-OMS", + "municipality": "Tevriz", + "scheduled_service": "no", + "gps_code": "UNOW", + "keywords": "Аэропорт Тевриз" + }, + { + "id": "310630", + "ident": "UNQA", + "type": "small_airport", + "name": "Aban Airport", + "latitude_deg": "56.6847", + "longitude_deg": "96.1203", + "elevation_ft": "844", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Aban", + "scheduled_service": "no", + "gps_code": "UNQA", + "keywords": "УНЯА, Абан" + }, + { + "id": "315351", + "ident": "UNSB", + "type": "heliport", + "name": "181 Sobolinaya Helipad", + "latitude_deg": "58.4589", + "longitude_deg": "79.5317", + "elevation_ft": "234", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TOM", + "scheduled_service": "no", + "gps_code": "UNSB", + "local_code": "UNSB", + "keywords": "УНСБ, 181 Соболиная" + }, + { + "id": "315350", + "ident": "UNSR", + "type": "heliport", + "name": "1 Razryvno-Moiseevskaya Helipad", + "latitude_deg": "58.095", + "longitude_deg": "76.0083", + "elevation_ft": "357", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TOM", + "scheduled_service": "no", + "gps_code": "UNSR", + "local_code": "UNSR", + "keywords": "УНСР, 1-я Разрывно-Моисеевская" + }, + { + "id": "32546", + "ident": "UNSS", + "type": "medium_airport", + "name": "Strezhevoy Airport", + "latitude_deg": "60.709400177", + "longitude_deg": "77.66000366210001", + "elevation_ft": "164", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-TOM", + "municipality": "Strezhevoy", + "scheduled_service": "no", + "gps_code": "UNSS", + "iata_code": "SWT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Strezhevoy_Airport", + "keywords": "Аэропорт Стрежевой" + }, + { + "id": "354740", + "ident": "UNTR", + "type": "small_airport", + "name": "Beryozkino Airfield", + "latitude_deg": "56.50264", + "longitude_deg": "84.686575", + "elevation_ft": "394", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-TOM", + "municipality": "Tomsk", + "scheduled_service": "no", + "gps_code": "UNTR", + "home_link": "http://sibaerocraft.ru/" + }, + { + "id": "32468", + "ident": "UNTT", + "type": "medium_airport", + "name": "Bogashevo Airport", + "latitude_deg": "56.380298614502", + "longitude_deg": "85.208297729492", + "elevation_ft": "597", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-TOM", + "municipality": "Tomsk", + "scheduled_service": "yes", + "gps_code": "UNTT", + "iata_code": "TOF", + "home_link": "http://www.tomskairport.ru", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bogashevo_Airport" + }, + { + "id": "32045", + "ident": "UNWW", + "type": "medium_airport", + "name": "Spichenkovo Airport", + "latitude_deg": "53.811401", + "longitude_deg": "86.877197", + "elevation_ft": "1024", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KEM", + "municipality": "Novokuznetsk", + "scheduled_service": "yes", + "gps_code": "UNWW", + "iata_code": "NOZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Spichenkovo_Airport" + }, + { + "id": "42953", + "ident": "UODD", + "type": "medium_airport", + "name": "Dikson Airport", + "latitude_deg": "73.51780700683594", + "longitude_deg": "80.37966918945312", + "elevation_ft": "47", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Dikson", + "scheduled_service": "no", + "gps_code": "UODD", + "iata_code": "DKS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dikson_Airport", + "keywords": "Аэропорт Диксон" + }, + { + "id": "315363", + "ident": "UODL", + "type": "small_airport", + "name": "Cape Chelyuskin Airfield", + "latitude_deg": "77.712", + "longitude_deg": "104.24", + "elevation_ft": "60", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Chelyuskin Polar Station", + "scheduled_service": "no", + "gps_code": "UODL", + "local_code": "UODL", + "keywords": "УОДЛ, Челюскин" + }, + { + "id": "35041", + "ident": "UODN", + "type": "medium_airport", + "name": "Nagurskoye", + "latitude_deg": "80.803207", + "longitude_deg": "47.663586", + "elevation_ft": "59", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Murmansk", + "scheduled_service": "no", + "gps_code": "XLDN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nagurskoye" + }, + { + "id": "35086", + "ident": "UODS", + "type": "small_airport", + "name": "Sredniy Ostrov Air Base", + "latitude_deg": "79.528297424316", + "longitude_deg": "91.074996948242", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Khatanga", + "scheduled_service": "no", + "gps_code": "UODS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sredny_Ostrov", + "keywords": "УОДС, Sredniy Ostrov Air Base, Аэродром Средний Остров" + }, + { + "id": "6509", + "ident": "UOHH", + "type": "medium_airport", + "name": "Khatanga Airport", + "latitude_deg": "71.97810363769531", + "longitude_deg": "102.49099731445312", + "elevation_ft": "95", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Khatanga", + "scheduled_service": "yes", + "gps_code": "UOHH", + "iata_code": "HTG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khatanga_Airport" + }, + { + "id": "43002", + "ident": "UOIC", + "type": "small_airport", + "name": "Snezhnogorsk Airport", + "latitude_deg": "68.07666778564453", + "longitude_deg": "87.6449966430664", + "elevation_ft": "102", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Snezhnogorsk", + "scheduled_service": "no", + "gps_code": "UOIC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Snezhnogorsk_Airport" + }, + { + "id": "42958", + "ident": "UOIG", + "type": "medium_airport", + "name": "Svetlogorsk Airport", + "latitude_deg": "66.83999633789062", + "longitude_deg": "88.40333557128906", + "elevation_ft": "394", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Svetlogorsk", + "scheduled_service": "no", + "gps_code": "UOIG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Svetlogorsk_Airport" + }, + { + "id": "31660", + "ident": "UOII", + "type": "medium_airport", + "name": "Igarka Airport", + "latitude_deg": "67.43720245361328", + "longitude_deg": "86.62190246582031", + "elevation_ft": "82", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Igarka", + "scheduled_service": "yes", + "gps_code": "UOII", + "iata_code": "IAA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Igarka_Airport" + }, + { + "id": "6510", + "ident": "UOOO", + "type": "medium_airport", + "name": "Norilsk-Alykel Airport", + "latitude_deg": "69.31109619140625", + "longitude_deg": "87.33219909667969", + "elevation_ft": "574", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Norilsk", + "scheduled_service": "yes", + "gps_code": "UOOO", + "iata_code": "NSK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Norilsk_Alykel_Airport" + }, + { + "id": "42959", + "ident": "UOOW", + "type": "medium_airport", + "name": "Valek Airport", + "latitude_deg": "69.39690399169922", + "longitude_deg": "88.35368347167969", + "elevation_ft": "108", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Valek", + "scheduled_service": "no", + "gps_code": "UOOW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Valek_Airport", + "keywords": "Аэропорт Валек" + }, + { + "id": "32547", + "ident": "UOTT", + "type": "small_airport", + "name": "Turukhansk Airport", + "latitude_deg": "65.797203064", + "longitude_deg": "87.9353027344", + "elevation_ft": "128", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Turukhansk", + "scheduled_service": "yes", + "gps_code": "UOTT", + "iata_code": "THX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Turukhansk_Airport" + }, + { + "id": "315497", + "ident": "UOTU", + "type": "small_airport", + "name": "Tutonchany Airport", + "latitude_deg": "64.210168", + "longitude_deg": "93.792455", + "elevation_ft": "900", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Tutonchany", + "scheduled_service": "no", + "gps_code": "UOTU", + "local_code": "UOTU", + "keywords": "УОТУ, Тутончаны" + }, + { + "id": "348666", + "ident": "UPAA", + "type": "closed", + "name": "Borok Airfield", + "latitude_deg": "58.36023", + "longitude_deg": "30.96933", + "elevation_ft": "79", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NGR", + "municipality": "Borok", + "scheduled_service": "no", + "gps_code": "UPAA", + "local_code": "UPAA" + }, + { + "id": "5994", + "ident": "URB", + "type": "closed", + "name": "Urubupunga Airport", + "latitude_deg": "-20.777099609375", + "longitude_deg": "-51.564800262451", + "elevation_ft": "1169", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-SP", + "municipality": "Castilho", + "scheduled_service": "no", + "iata_code": "URB", + "keywords": "SBUP" + }, + { + "id": "6511", + "ident": "URKA", + "type": "medium_airport", + "name": "Anapa Vityazevo Airport", + "latitude_deg": "45.002102", + "longitude_deg": "37.347301", + "elevation_ft": "174", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Krasnyi Kurgan", + "scheduled_service": "yes", + "gps_code": "URKA", + "iata_code": "AAQ", + "home_link": "http://basel.aero/en/anapa/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anapa_Airport", + "keywords": "Vityazevo Airport" + }, + { + "id": "45191", + "ident": "URKE", + "type": "medium_airport", + "name": "Yeysk Airport", + "latitude_deg": "46.68", + "longitude_deg": "38.21", + "elevation_ft": "60", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Yeysk", + "scheduled_service": "yes", + "gps_code": "URKE", + "iata_code": "EIK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yeysk_Airport", + "keywords": "Eysk Airport, Аэропорт Ейск, УРКЕ" + }, + { + "id": "315345", + "ident": "URKF", + "type": "heliport", + "name": "Afipsky Heliport", + "latitude_deg": "44.873", + "longitude_deg": "38.829", + "elevation_ft": "80", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Afipski", + "scheduled_service": "no", + "gps_code": "URKF", + "local_code": "URKF", + "keywords": "УРКФ, Основной" + }, + { + "id": "31522", + "ident": "URKG", + "type": "medium_airport", + "name": "Gelendzhik Airport", + "latitude_deg": "44.5820926295", + "longitude_deg": "38.0124807358", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Gelendzhik", + "scheduled_service": "yes", + "gps_code": "URKG", + "iata_code": "GDZ", + "home_link": "http://basel.aero/en/gelendjik/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gelendzhik_Airport", + "keywords": "Аэропорт Геленджик" + }, + { + "id": "44321", + "ident": "URKH", + "type": "medium_airport", + "name": "Khanskaya Air Base", + "latitude_deg": "44.68", + "longitude_deg": "40.035", + "elevation_ft": "600", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AD", + "municipality": "Maykop", + "scheduled_service": "no", + "gps_code": "URKH", + "keywords": "Hanskaya Airport, Аэропорт Ханская" + }, + { + "id": "6512", + "ident": "URKK", + "type": "medium_airport", + "name": "Krasnodar Pashkovsky International Airport", + "latitude_deg": "45.034698486328", + "longitude_deg": "39.170501708984", + "elevation_ft": "118", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Krasnodar", + "scheduled_service": "yes", + "gps_code": "URKK", + "iata_code": "KRR", + "home_link": "http://basel.aero/en/krasnodar/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pashkovsky_Airport", + "keywords": "Pashkovskiy Airport, Pashkovsky Airport" + }, + { + "id": "30125", + "ident": "URKM", + "type": "closed", + "name": "Maykop Airport", + "latitude_deg": "44.649374", + "longitude_deg": "40.096908", + "elevation_ft": "679", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AD", + "municipality": "Maykop", + "scheduled_service": "no", + "gps_code": "URKM" + }, + { + "id": "44330", + "ident": "URKR", + "type": "small_airport", + "name": "Armavir Air Base", + "latitude_deg": "44.968661", + "longitude_deg": "41.107408", + "elevation_ft": "712", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Armavir", + "scheduled_service": "no", + "gps_code": "URKR", + "keywords": "Аэродром Армавир" + }, + { + "id": "44300", + "ident": "URKS", + "type": "small_airport", + "name": "Enem Airfield", + "latitude_deg": "44.945999", + "longitude_deg": "38.931999", + "elevation_ft": "62", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-AD", + "municipality": "Enem", + "scheduled_service": "no", + "gps_code": "URKS", + "keywords": "Аэропорт Энем" + }, + { + "id": "46100", + "ident": "URME", + "type": "small_airport", + "name": "Yessentuki Airfield", + "latitude_deg": "44.06", + "longitude_deg": "42.829", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-STA", + "municipality": "Yessentuki", + "scheduled_service": "no", + "gps_code": "URME", + "keywords": "Ессентуки" + }, + { + "id": "42923", + "ident": "URMG", + "type": "medium_airport", + "name": "Khankala Air Base", + "latitude_deg": "43.2981", + "longitude_deg": "45.7841", + "elevation_ft": "548", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CE", + "municipality": "Grozny", + "scheduled_service": "no", + "keywords": "Khankala, Hankala, Ханкала, GRV, URMG" + }, + { + "id": "6513", + "ident": "URML", + "type": "medium_airport", + "name": "Makhachkala Uytash International Airport", + "latitude_deg": "42.816799", + "longitude_deg": "47.652302", + "elevation_ft": "12", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-DA", + "municipality": "Makhachkala", + "scheduled_service": "yes", + "gps_code": "URML", + "iata_code": "MCX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Uytash_airport" + }, + { + "id": "6514", + "ident": "URMM", + "type": "medium_airport", + "name": "Mineralnyye Vody Airport", + "latitude_deg": "44.225101470947266", + "longitude_deg": "43.08190155029297", + "elevation_ft": "1054", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-STA", + "municipality": "Mineralnyye Vody", + "scheduled_service": "yes", + "gps_code": "URMM", + "iata_code": "MRV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mineralnye_Vody_Airport" + }, + { + "id": "6515", + "ident": "URMN", + "type": "medium_airport", + "name": "Nalchik Airport", + "latitude_deg": "43.512901306152344", + "longitude_deg": "43.636600494384766", + "elevation_ft": "1461", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KB", + "municipality": "Nalchik", + "scheduled_service": "yes", + "gps_code": "URMN", + "iata_code": "NAL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nalchik_Airport" + }, + { + "id": "6516", + "ident": "URMO", + "type": "medium_airport", + "name": "Vladikavkaz Beslan International Airport", + "latitude_deg": "43.205101", + "longitude_deg": "44.606602", + "elevation_ft": "1673", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SE", + "municipality": "Beslan", + "scheduled_service": "yes", + "gps_code": "URMO", + "iata_code": "OGZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beslan_Airport", + "keywords": "Beslan Airport, Аэропорт Беслан, Аэропорт Владикавказ" + }, + { + "id": "46247", + "ident": "URMP", + "type": "closed", + "name": "Pyatigorsk Airport", + "latitude_deg": "44.0496271493", + "longitude_deg": "43.0214738846", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-STA", + "municipality": "Pyatigorsk", + "scheduled_service": "no", + "gps_code": "URMP", + "keywords": "Аэропорт Пятигорск, УРМП" + }, + { + "id": "43689", + "ident": "URMS", + "type": "medium_airport", + "name": "Magas Airport", + "latitude_deg": "43.323268", + "longitude_deg": "45.012568", + "elevation_ft": "1165", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-IN", + "municipality": "Sunzha", + "scheduled_service": "yes", + "gps_code": "URMS", + "iata_code": "IGT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Magas_Airport", + "keywords": "Sleptsovskaya Airport, Ingushetiya Airport, Ingushetia Airport, Аэропорт Магас, Аэропорт Слепцовская, Аэропорт Ингушетия, Nazran" + }, + { + "id": "6517", + "ident": "URMT", + "type": "medium_airport", + "name": "Stavropol Shpakovskoye Airport", + "latitude_deg": "45.10919952392578", + "longitude_deg": "42.11280059814453", + "elevation_ft": "1486", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-STA", + "municipality": "Stavropol", + "scheduled_service": "yes", + "gps_code": "URMT", + "iata_code": "STW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stavropol_Shpakovskoye_Airport" + }, + { + "id": "42954", + "ident": "UROD", + "type": "medium_airport", + "name": "Dudinka Airport", + "latitude_deg": "69.375", + "longitude_deg": "86.15666961669922", + "elevation_ft": "82", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KYA", + "municipality": "Dudinka", + "scheduled_service": "no", + "gps_code": "UROD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dudinka_Airport", + "keywords": "Аэропорт Дудинка" + }, + { + "id": "46487", + "ident": "URPE", + "type": "heliport", + "name": "Kem Helipad", + "latitude_deg": "64.96", + "longitude_deg": "34.64", + "elevation_ft": "82", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KR", + "municipality": "Kem", + "scheduled_service": "no", + "gps_code": "URPE", + "keywords": "Вертолётная площадка Кемь, УРПЕ" + }, + { + "id": "324922", + "ident": "URRE", + "type": "small_airport", + "name": "Remontnoye Airport", + "latitude_deg": "46.544302", + "longitude_deg": "43.6457", + "elevation_ft": "409", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Remontnoye", + "scheduled_service": "no", + "gps_code": "URRE", + "keywords": "УРРЕ, Ремонтное" + }, + { + "id": "46141", + "ident": "URRH", + "type": "small_airport", + "name": "Shakhty Airfield", + "latitude_deg": "47.697", + "longitude_deg": "40.287", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Shakhty", + "scheduled_service": "no", + "gps_code": "URRH", + "keywords": "Аэропорт Шахты, УРРХ" + }, + { + "id": "46088", + "ident": "URRM", + "type": "small_airport", + "name": "Morozovsk Air Base", + "latitude_deg": "48.313", + "longitude_deg": "41.791", + "elevation_ft": "400", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Morozovsk", + "scheduled_service": "no", + "gps_code": "URRM", + "keywords": "Аэродром Морозовск, УРРМ" + }, + { + "id": "326363", + "ident": "URRP", + "type": "large_airport", + "name": "Platov International Airport", + "latitude_deg": "47.493888", + "longitude_deg": "39.924722", + "elevation_ft": "213", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Rostov-on-Don", + "scheduled_service": "yes", + "gps_code": "URRP", + "iata_code": "ROV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Platov_International_Airport", + "keywords": "УРРП, Международный аэропорт Платов" + }, + { + "id": "6518", + "ident": "URRR", + "type": "closed", + "name": "Rostov-on-Don Airport", + "latitude_deg": "47.258203", + "longitude_deg": "39.8181", + "elevation_ft": "280", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Rostov-on-Don", + "scheduled_service": "no", + "gps_code": "URRR", + "iata_code": "RVI", + "home_link": "http://rnd-airport.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rostov-on-Don_Airport", + "keywords": "ROV, Аэропорт Ростов-на-Дону, Rostov-na-Donu Airport" + }, + { + "id": "46136", + "ident": "URRS", + "type": "closed", + "name": "Sal'sk 2 Airfield", + "latitude_deg": "46.45755", + "longitude_deg": "41.483345", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Sal'sk", + "scheduled_service": "no", + "keywords": "Аэропорт Сальск, УРРС" + }, + { + "id": "44865", + "ident": "URRT", + "type": "medium_airport", + "name": "Taganrog Yuzhny Airport", + "latitude_deg": "47.1983333", + "longitude_deg": "38.8491667", + "elevation_ft": "117", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "municipality": "Taganrog", + "scheduled_service": "yes", + "gps_code": "URRT", + "iata_code": "TGK", + "home_link": "http://www.beriev.com/rus/airport.html", + "wikipedia_link": "https://ru.wikipedia.org/wiki/Таганрог-Южный_(аэропорт)", + "keywords": "Taganrog South Airport, Аэропорт Таганрог Южный" + }, + { + "id": "43676", + "ident": "URRW", + "type": "small_airport", + "name": "Veshenskaya Airport", + "latitude_deg": "49.65660095214844", + "longitude_deg": "41.70069885253906", + "elevation_ft": "253", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "scheduled_service": "no", + "gps_code": "URRW", + "keywords": "Vyoshenskaya Airport, Аэропорт Вешенская, Аэропорт Вёшенская" + }, + { + "id": "43678", + "ident": "URRY", + "type": "closed", + "name": "Volgodonsk Airport", + "latitude_deg": "47.682098", + "longitude_deg": "42.0728", + "elevation_ft": "276", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ROS", + "scheduled_service": "no", + "gps_code": "URRQ", + "iata_code": "VLK", + "keywords": "Tsimlyansk Airport, Аэропорт Волгодонск, Аэропорт Цимлянск" + }, + { + "id": "6519", + "ident": "URSS", + "type": "large_airport", + "name": "Sochi International Airport", + "latitude_deg": "43.449902", + "longitude_deg": "39.9566", + "elevation_ft": "89", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KDA", + "municipality": "Sochi", + "scheduled_service": "yes", + "gps_code": "URSS", + "iata_code": "AER", + "home_link": "http://basel.aero/en/sochi/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sochi_International_Airport", + "keywords": "Adler Airport, Black Sea, Международный Аэропорт Сочи" + }, + { + "id": "6520", + "ident": "URWA", + "type": "medium_airport", + "name": "Astrakhan Narimanovo Boris M. Kustodiev International Airport", + "latitude_deg": "46.282843", + "longitude_deg": "48.010511", + "elevation_ft": "-65", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-AST", + "municipality": "Astrakhan", + "scheduled_service": "yes", + "gps_code": "URWA", + "iata_code": "ASF", + "home_link": "http://xn--80aaaa9dcahhdbllc1cxhc.xn--p1ai/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Narimanovo_Airport", + "keywords": "Astrahan Airport, Narimanovo Airport, Аэропорт Астрахань, Аэропорт Нариманово" + }, + { + "id": "6521", + "ident": "URWI", + "type": "medium_airport", + "name": "Elista Airport", + "latitude_deg": "46.3739013671875", + "longitude_deg": "44.33089828491211", + "elevation_ft": "501", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KL", + "municipality": "Elista", + "scheduled_service": "yes", + "gps_code": "URWI", + "iata_code": "ESL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elista_Airport" + }, + { + "id": "6522", + "ident": "URWW", + "type": "medium_airport", + "name": "Volgograd International Airport", + "latitude_deg": "48.782501220703125", + "longitude_deg": "44.34550094604492", + "elevation_ft": "482", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VGG", + "municipality": "Volgograd", + "scheduled_service": "yes", + "gps_code": "URWW", + "iata_code": "VOG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Volgograd_International_Airport", + "keywords": "Gumrak Airport, Аэропорт Волгоград, Аэропорт Гумрак" + }, + { + "id": "34930", + "ident": "US-0001", + "type": "small_airport", + "name": "Flying M Ranch Airport", + "latitude_deg": "38.61127", + "longitude_deg": "-119.001718", + "elevation_ft": "4922", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "scheduled_service": "no", + "local_code": "3A5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Flying-M_Ranch" + }, + { + "id": "38682", + "ident": "US-0002", + "type": "closed", + "name": "Governor's Island Army Airfield", + "latitude_deg": "40.68709945678711", + "longitude_deg": "-74.02210235595703", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Governor's Island", + "scheduled_service": "no" + }, + { + "id": "38684", + "ident": "US-0003", + "type": "closed", + "name": "Naval Air Station Rockaway", + "latitude_deg": "40.56999969482422", + "longitude_deg": "-73.87000274658203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Queens", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Station_Rockaway" + }, + { + "id": "38685", + "ident": "US-0004", + "type": "closed", + "name": "Rockaway Airport", + "latitude_deg": "40.601600646972656", + "longitude_deg": "-73.78199768066406", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Queens", + "scheduled_service": "no", + "keywords": "Edgemere Naval Outlying Field, NOLF" + }, + { + "id": "38686", + "ident": "US-0005", + "type": "closed", + "name": "Staten Island Airport", + "latitude_deg": "40.580299", + "longitude_deg": "-74.166199", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Staten Island", + "scheduled_service": "no" + }, + { + "id": "38687", + "ident": "US-0006", + "type": "closed", + "name": "Miller Army Airfield", + "latitude_deg": "40.567501", + "longitude_deg": "-74.099503", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Staten Island", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miller_Army_Air_Field_Historic_District" + }, + { + "id": "38688", + "ident": "US-0007", + "type": "closed", + "name": "Roosevelt Field", + "latitude_deg": "40.73809814453125", + "longitude_deg": "-73.61250305175781", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Garden City", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roosevelt_Field%2C_New_York" + }, + { + "id": "38689", + "ident": "US-0008", + "type": "closed", + "name": "Hicksville Aviation Country Club", + "latitude_deg": "40.7400016784668", + "longitude_deg": "-73.52999877929688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hicksville", + "scheduled_service": "no" + }, + { + "id": "39585", + "ident": "US-0009", + "type": "small_airport", + "name": "Ski Valley Airport", + "latitude_deg": "44.929100036621094", + "longitude_deg": "-116.17400360107422", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "scheduled_service": "no" + }, + { + "id": "39586", + "ident": "US-0010", + "type": "small_airport", + "name": "Dixie Town Airport", + "latitude_deg": "45.552799224853516", + "longitude_deg": "-115.45999908447266", + "elevation_ft": "5618", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Dixie", + "scheduled_service": "no" + }, + { + "id": "41345", + "ident": "US-0011", + "type": "small_airport", + "name": "Cascade Reservoir Private Strip", + "latitude_deg": "44.64739990234375", + "longitude_deg": "-116.08699798583984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Donnelly", + "scheduled_service": "no" + }, + { + "id": "42220", + "ident": "US-0012", + "type": "closed", + "name": "Richards Field", + "latitude_deg": "38.993770599365234", + "longitude_deg": "-94.4801025390625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kansas City", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Richards_Field", + "keywords": "Ong Field" + }, + { + "id": "43063", + "ident": "US-0013", + "type": "heliport", + "name": "City Heliport", + "latitude_deg": "36.7459983826", + "longitude_deg": "-76.0523986816", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Virginia Beach", + "scheduled_service": "no" + }, + { + "id": "43064", + "ident": "US-0014", + "type": "small_airport", + "name": "Johnson Farm Lines Airport", + "latitude_deg": "35.571201", + "longitude_deg": "-93.575203", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Clarksville", + "scheduled_service": "no" + }, + { + "id": "43065", + "ident": "US-0015", + "type": "heliport", + "name": "Canaan Air Base Heliport", + "latitude_deg": "35.09220123", + "longitude_deg": "-83.16860199", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "New Bern", + "scheduled_service": "no" + }, + { + "id": "43066", + "ident": "US-0016", + "type": "closed", + "name": "Oliver Till Airport", + "latitude_deg": "27.623899", + "longitude_deg": "-97.883102", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bishop", + "scheduled_service": "no" + }, + { + "id": "43067", + "ident": "US-0017", + "type": "closed", + "name": "Winter's Strip", + "latitude_deg": "60.3116", + "longitude_deg": "-151.320999", + "elevation_ft": "112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kasilof", + "scheduled_service": "no", + "keywords": "41AK" + }, + { + "id": "43068", + "ident": "US-0018", + "type": "small_airport", + "name": "Flying B Ranch Airport", + "latitude_deg": "31.83989906", + "longitude_deg": "-97.40579987", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Clifton", + "scheduled_service": "no" + }, + { + "id": "43069", + "ident": "US-0019", + "type": "small_airport", + "name": "The Ranch Airport", + "latitude_deg": "36.0102996826", + "longitude_deg": "-112.291999817", + "elevation_ft": "6204", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tusayan", + "scheduled_service": "no" + }, + { + "id": "43070", + "ident": "US-0020", + "type": "closed", + "name": "Watson Airport", + "latitude_deg": "40.070802", + "longitude_deg": "-94.146103", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Pattonsburg", + "scheduled_service": "no", + "keywords": "MO25" + }, + { + "id": "43071", + "ident": "US-0021", + "type": "closed", + "name": "Marion Correctional Institution Heliport", + "latitude_deg": "29.3053", + "longitude_deg": "-82.172601", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lowell", + "scheduled_service": "no" + }, + { + "id": "43072", + "ident": "US-0022", + "type": "small_airport", + "name": "Ria Airport", + "latitude_deg": "38.839206", + "longitude_deg": "-104.134898", + "elevation_ft": "6365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Rush", + "scheduled_service": "no", + "gps_code": "CO33", + "local_code": "CO33", + "keywords": "22CO, Cable's Corner" + }, + { + "id": "43073", + "ident": "US-0023", + "type": "small_airport", + "name": "Webb & Shepard Farm Airport", + "latitude_deg": "32.5617980957", + "longitude_deg": "-83.93990325930001", + "elevation_ft": "561", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fort Valley", + "scheduled_service": "no" + }, + { + "id": "43076", + "ident": "US-0024", + "type": "small_airport", + "name": "Hess Airport", + "latitude_deg": "31.677900314299997", + "longitude_deg": "-97.1399993896", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Elm Mott", + "scheduled_service": "no" + }, + { + "id": "43077", + "ident": "US-0025", + "type": "closed", + "name": "Brabsom Farm Airport", + "latitude_deg": "32.5168", + "longitude_deg": "-97.366997", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Burleson", + "scheduled_service": "no" + }, + { + "id": "43078", + "ident": "US-0026", + "type": "closed", + "name": "Tims Angus Farm Airport", + "latitude_deg": "44.2001", + "longitude_deg": "-75.905197", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "La Fargeville", + "scheduled_service": "no", + "keywords": "NY91" + }, + { + "id": "43079", + "ident": "US-0027", + "type": "closed", + "name": "R V Ranch Airport", + "latitude_deg": "33.551498", + "longitude_deg": "-96.189101", + "elevation_ft": "583", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bonham", + "scheduled_service": "no", + "keywords": "TX34" + }, + { + "id": "43080", + "ident": "US-0028", + "type": "closed", + "name": "Warren County Airport", + "latitude_deg": "36.422401", + "longitude_deg": "-78.138603", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Warrenton", + "scheduled_service": "no", + "keywords": "81NC" + }, + { + "id": "43081", + "ident": "US-0029", + "type": "closed", + "name": "Carrera Airpark", + "latitude_deg": "40.216599", + "longitude_deg": "-104.950997", + "elevation_ft": "4965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Mead", + "scheduled_service": "no", + "keywords": "93CO" + }, + { + "id": "43082", + "ident": "US-0030", + "type": "closed", + "name": "Markum Ranch Airport", + "latitude_deg": "32.695099", + "longitude_deg": "-97.511703", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "keywords": "TX79" + }, + { + "id": "10960", + "ident": "US-0031", + "type": "closed", + "name": "Berry Airport", + "latitude_deg": "32.857899", + "longitude_deg": "-91.348396", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Oak Grove", + "scheduled_service": "no", + "keywords": "41LA" + }, + { + "id": "43084", + "ident": "US-0032", + "type": "small_airport", + "name": "Grand Valley Lands Airport", + "latitude_deg": "32.233501434299995", + "longitude_deg": "-97.4002990723", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rio Vista", + "scheduled_service": "no" + }, + { + "id": "43085", + "ident": "US-0033", + "type": "small_airport", + "name": "Tassi Airport", + "latitude_deg": "36.252268", + "longitude_deg": "-113.963692", + "elevation_ft": "1544", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Meadview", + "scheduled_service": "no", + "keywords": "AZ01" + }, + { + "id": "43087", + "ident": "US-0034", + "type": "closed", + "name": "Shelton Laurel Lil National Airport", + "latitude_deg": "35.978901", + "longitude_deg": "-82.7033", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Marshall", + "scheduled_service": "no", + "keywords": "7NC4" + }, + { + "id": "43088", + "ident": "US-0035", + "type": "closed", + "name": "Stephenson Farms Airport", + "latitude_deg": "36.440701", + "longitude_deg": "-77.459099", + "elevation_ft": "138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Seaboard", + "scheduled_service": "no", + "keywords": "3NC8" + }, + { + "id": "43089", + "ident": "US-0036", + "type": "closed", + "name": "Wharton Field", + "latitude_deg": "37.594835", + "longitude_deg": "-77.217733", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Mechanicsville", + "scheduled_service": "no", + "keywords": "VA78" + }, + { + "id": "43090", + "ident": "US-0037", + "type": "closed", + "name": "Tenco Tractor Airport", + "latitude_deg": "38.769299", + "longitude_deg": "-121.518997", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sacramento", + "scheduled_service": "no", + "keywords": "CA23" + }, + { + "id": "43091", + "ident": "US-0038", + "type": "closed", + "name": "Canyon View Ranch Airport", + "latitude_deg": "41.827186", + "longitude_deg": "-104.513948", + "elevation_ft": "4564", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Yoder", + "scheduled_service": "no", + "local_code": "WY28" + }, + { + "id": "43093", + "ident": "US-0039", + "type": "closed", + "name": "Wind Rock Ranch Airport", + "latitude_deg": "43.47148", + "longitude_deg": "-109.48496", + "elevation_ft": "6705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Dubois", + "scheduled_service": "no" + }, + { + "id": "43094", + "ident": "US-0040", + "type": "closed", + "name": "Moosa Memorial Hospital Heliport", + "latitude_deg": "30.49967", + "longitude_deg": "-92.404053", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Eunice", + "scheduled_service": "no", + "keywords": "LA44" + }, + { + "id": "43095", + "ident": "US-0041", + "type": "closed", + "name": "Cleveland Airport", + "latitude_deg": "40.341702", + "longitude_deg": "-95.309998", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Fairfax", + "scheduled_service": "no", + "keywords": "MO76" + }, + { + "id": "331407", + "ident": "US-0042", + "type": "small_airport", + "name": "Byrd's Backcountry Airstrip", + "latitude_deg": "35.67766", + "longitude_deg": "-93.731468", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Ozark", + "scheduled_service": "no", + "local_code": "51AR" + }, + { + "id": "43097", + "ident": "US-0043", + "type": "closed", + "name": "Sears Airport", + "latitude_deg": "32.203773", + "longitude_deg": "-100.042172", + "elevation_ft": "2400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wingate", + "scheduled_service": "no", + "keywords": "88TX" + }, + { + "id": "43098", + "ident": "US-0044", + "type": "closed", + "name": "Heckendorf Ranches-Georgia Pass Ranch Airport", + "latitude_deg": "39.408298", + "longitude_deg": "-105.836998", + "elevation_ft": "9869", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Jefferson", + "scheduled_service": "no", + "keywords": "77CO" + }, + { + "id": "43099", + "ident": "US-0045", + "type": "small_airport", + "name": "Kastler Compressor Station Airport", + "latitude_deg": "40.990002", + "longitude_deg": "-109.196999", + "elevation_ft": "6783", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Dutch John", + "scheduled_service": "no" + }, + { + "id": "43100", + "ident": "US-0046", + "type": "closed", + "name": "Joe Fleming Field", + "latitude_deg": "29.523935", + "longitude_deg": "-97.876167", + "elevation_ft": "496", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seguin", + "scheduled_service": "no", + "keywords": "XS96" + }, + { + "id": "43101", + "ident": "US-0047", + "type": "small_airport", + "name": "San Mar Gale Airport", + "latitude_deg": "39.45840073", + "longitude_deg": "-84.13189697", + "elevation_ft": "968", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "scheduled_service": "no" + }, + { + "id": "43102", + "ident": "US-0048", + "type": "small_airport", + "name": "Kohn Airport", + "latitude_deg": "42.138619", + "longitude_deg": "-76.384123", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Owego", + "scheduled_service": "no" + }, + { + "id": "43103", + "ident": "US-0049", + "type": "closed", + "name": "Schumpert Clinic South Heliport", + "latitude_deg": "32.424", + "longitude_deg": "-93.720703", + "elevation_ft": "161", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Shreveport", + "scheduled_service": "no", + "keywords": "LA14" + }, + { + "id": "43105", + "ident": "US-0050", + "type": "closed", + "name": "Juniper Hills Airport", + "latitude_deg": "42.124298", + "longitude_deg": "-121.458", + "elevation_ft": "4120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Bonanza", + "scheduled_service": "no", + "keywords": "25OR" + }, + { + "id": "43108", + "ident": "US-0051", + "type": "small_airport", + "name": "Ten Oaks Airport", + "latitude_deg": "29.09607", + "longitude_deg": "-98.45192", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Leming", + "scheduled_service": "no" + }, + { + "id": "43109", + "ident": "US-0052", + "type": "small_airport", + "name": "Joyner Airport", + "latitude_deg": "45.3166007996", + "longitude_deg": "-93.47189331050001", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Monticello", + "scheduled_service": "no" + }, + { + "id": "43327", + "ident": "US-0053", + "type": "small_airport", + "name": "Meadowview Airport", + "latitude_deg": "33.0625991821", + "longitude_deg": "-96.1302032471", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Greeville", + "scheduled_service": "no" + }, + { + "id": "44469", + "ident": "US-0054", + "type": "closed", + "name": "Cibor Airport", + "latitude_deg": "43.00999832", + "longitude_deg": "-70.80000305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Rye", + "scheduled_service": "no" + }, + { + "id": "46183", + "ident": "US-0055", + "type": "small_airport", + "name": "Alkali Hot Springs Airport", + "latitude_deg": "37.675", + "longitude_deg": "-118.073333", + "elevation_ft": "4895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Dyer", + "scheduled_service": "no" + }, + { + "id": "45095", + "ident": "US-0056", + "type": "small_airport", + "name": "Delle Airstrip", + "latitude_deg": "40.762552", + "longitude_deg": "-112.787297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Grantsville", + "scheduled_service": "no" + }, + { + "id": "45096", + "ident": "US-0057", + "type": "closed", + "name": "Tuweep Airport", + "latitude_deg": "36.300833", + "longitude_deg": "-113.069167", + "elevation_ft": "4682", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Littlefield", + "scheduled_service": "no", + "keywords": "L50, Toroweap Landing Strip" + }, + { + "id": "45097", + "ident": "US-0058", + "type": "small_airport", + "name": "Avery Ranch Airstrip", + "latitude_deg": "41.629413537699996", + "longitude_deg": "-122.411416769", + "elevation_ft": "2620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "scheduled_service": "no" + }, + { + "id": "45163", + "ident": "US-0059", + "type": "small_airport", + "name": "Chicken Strip", + "latitude_deg": "36.807043", + "longitude_deg": "-117.781742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Death Valley", + "scheduled_service": "no", + "keywords": "Saline Valley, Warm Springs, Chicken Strip" + }, + { + "id": "13025", + "ident": "US-0060", + "type": "closed", + "name": "Comanche Landing Airport", + "latitude_deg": "30.787701", + "longitude_deg": "-83.221001", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Valdosta", + "scheduled_service": "no" + }, + { + "id": "24689", + "ident": "US-0061", + "type": "small_airport", + "name": "Herradura Lodge Airport", + "latitude_deg": "28.191295", + "longitude_deg": "-98.921839", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cotulla", + "scheduled_service": "no" + }, + { + "id": "8130", + "ident": "US-0062", + "type": "heliport", + "name": "Henry Mayo Newhall Memorial Hospital Rooftop Heliport", + "latitude_deg": "34.398552", + "longitude_deg": "-118.553525", + "elevation_ft": "1325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Valencia", + "scheduled_service": "no", + "keywords": "19CA" + }, + { + "id": "14407", + "ident": "US-0063", + "type": "closed", + "name": "Fairfield Airpark", + "latitude_deg": "35.519199", + "longitude_deg": "-86.418602", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Shelbyville", + "scheduled_service": "no", + "keywords": "7TN5" + }, + { + "id": "45976", + "ident": "US-0064", + "type": "small_airport", + "name": "Hickory Grove STOLport", + "latitude_deg": "33.901699066199996", + "longitude_deg": "-85.702796936", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Piedmont", + "scheduled_service": "no" + }, + { + "id": "45977", + "ident": "US-0065", + "type": "small_airport", + "name": "Capps Airport", + "latitude_deg": "34.584095", + "longitude_deg": "-91.968576", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "England", + "scheduled_service": "no" + }, + { + "id": "45978", + "ident": "US-0066", + "type": "closed", + "name": "Harts Field", + "latitude_deg": "33.699065", + "longitude_deg": "-112.367992", + "elevation_ft": "1313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Surprise", + "scheduled_service": "no", + "keywords": "AZ34" + }, + { + "id": "45979", + "ident": "US-0067", + "type": "closed", + "name": "Mosier Airport", + "latitude_deg": "38.436001", + "longitude_deg": "-121.315002", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Elk Grove", + "scheduled_service": "no", + "keywords": "CL85" + }, + { + "id": "45981", + "ident": "US-0068", + "type": "closed", + "name": "Browns Heliport", + "latitude_deg": "39.816799", + "longitude_deg": "-77.266403", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Gettysburg", + "scheduled_service": "no", + "keywords": "03PN" + }, + { + "id": "45982", + "ident": "US-0069", + "type": "closed", + "name": "Anaheim Police Heliport", + "latitude_deg": "33.826401", + "longitude_deg": "-117.901001", + "elevation_ft": "162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Anaheim", + "scheduled_service": "no", + "keywords": "35CA" + }, + { + "id": "324074", + "ident": "US-0070", + "type": "closed", + "name": "Naval Air Station Albany", + "latitude_deg": "31.598611", + "longitude_deg": "-84.094167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Albany", + "scheduled_service": "no" + }, + { + "id": "45984", + "ident": "US-0071", + "type": "heliport", + "name": "SCE San Onofre Heliport", + "latitude_deg": "33.371399", + "longitude_deg": "-117.560997", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceanside", + "scheduled_service": "no" + }, + { + "id": "45985", + "ident": "US-0072", + "type": "small_airport", + "name": "Ranger Ranch Airport", + "latitude_deg": "38.416401", + "longitude_deg": "-107.904367", + "elevation_ft": "6197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Montrose", + "scheduled_service": "no", + "local_code": "7CO2", + "keywords": "64CO, Happy Canyon Aero Ranch" + }, + { + "id": "45986", + "ident": "US-0073", + "type": "closed", + "name": "DTC North Heliport", + "latitude_deg": "39.634998", + "longitude_deg": "-104.898003", + "elevation_ft": "5585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "keywords": "41CO" + }, + { + "id": "45987", + "ident": "US-0074", + "type": "small_airport", + "name": "Henderson Airport", + "latitude_deg": "39.91669846", + "longitude_deg": "-104.8669968", + "elevation_ft": "5015", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Henderson", + "scheduled_service": "no" + }, + { + "id": "45988", + "ident": "US-0075", + "type": "small_airport", + "name": "Silver Heels Airport", + "latitude_deg": "39.29169846", + "longitude_deg": "-105.875", + "elevation_ft": "9600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Como", + "scheduled_service": "no" + }, + { + "id": "45989", + "ident": "US-0076", + "type": "small_airport", + "name": "Frontier Airstrip", + "latitude_deg": "40.21250153", + "longitude_deg": "-104.9820023", + "elevation_ft": "4979", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Mead", + "scheduled_service": "no" + }, + { + "id": "45990", + "ident": "US-0077", + "type": "small_airport", + "name": "Sand Arroya Airport", + "latitude_deg": "38.45280075", + "longitude_deg": "-103.5299988", + "elevation_ft": "4570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Sugar City", + "scheduled_service": "no", + "keywords": "6CO6" + }, + { + "id": "45991", + "ident": "US-0078", + "type": "small_airport", + "name": "Reid Ranches Airport", + "latitude_deg": "40.11660004", + "longitude_deg": "-104.3170013", + "elevation_ft": "4820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Roggen", + "scheduled_service": "no" + }, + { + "id": "45992", + "ident": "US-0079", + "type": "closed", + "name": "Southwest Citrus Airport", + "latitude_deg": "26.6628", + "longitude_deg": "-81.423401", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "La Belle", + "scheduled_service": "no", + "keywords": "8FL9" + }, + { + "id": "45993", + "ident": "US-0080", + "type": "closed", + "name": "Naples Grand Golf Resort Heliport", + "latitude_deg": "26.170799", + "longitude_deg": "-81.758904", + "elevation_ft": "121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Naples", + "scheduled_service": "no", + "keywords": "FL45" + }, + { + "id": "45994", + "ident": "US-0081", + "type": "heliport", + "name": "Sunshine Ranchettes Heliport", + "latitude_deg": "27.36420059", + "longitude_deg": "-81.48449707", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sebring", + "scheduled_service": "no" + }, + { + "id": "45995", + "ident": "US-0082", + "type": "heliport", + "name": "Road Rock Inc. Heliport", + "latitude_deg": "26.1343002319", + "longitude_deg": "-80.1522979736", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Lauderdale", + "scheduled_service": "no" + }, + { + "id": "45996", + "ident": "US-0083", + "type": "closed", + "name": "Ben Ammons Airport", + "latitude_deg": "33.310101", + "longitude_deg": "-84.048798", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Jackson", + "scheduled_service": "no" + }, + { + "id": "45997", + "ident": "US-0084", + "type": "closed", + "name": "Lost Creek Farms Airport", + "latitude_deg": "31.1052", + "longitude_deg": "-83.998802", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Meigs", + "scheduled_service": "no", + "keywords": "9GA2, Moultrie" + }, + { + "id": "45998", + "ident": "US-0085", + "type": "closed", + "name": "Middle Georgia Airport", + "latitude_deg": "32.502102", + "longitude_deg": "-83.741898", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Perry", + "scheduled_service": "no", + "keywords": "68GA" + }, + { + "id": "45999", + "ident": "US-0086", + "type": "medium_airport", + "name": "Jim's Private Airport", + "latitude_deg": "33.59790039", + "longitude_deg": "-84.14440155", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Conyers", + "scheduled_service": "no" + }, + { + "id": "21438", + "ident": "US-0087", + "type": "small_airport", + "name": "Mettie Airstrip", + "latitude_deg": "46.714958", + "longitude_deg": "-120.328817", + "elevation_ft": "2151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Yakima", + "scheduled_service": "no", + "local_code": "Z99", + "keywords": "Selah Creek Landing Zone" + }, + { + "id": "46001", + "ident": "US-0088", + "type": "closed", + "name": "Treadwell Airport", + "latitude_deg": "33.7981", + "longitude_deg": "-85.133102", + "elevation_ft": "1270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Buchanan", + "scheduled_service": "no", + "keywords": "3GA3" + }, + { + "id": "46002", + "ident": "US-0089", + "type": "heliport", + "name": "Emergency Medical Heliport Number 1", + "latitude_deg": "46.71910095", + "longitude_deg": "-116.9860001", + "elevation_ft": "2602", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Moscow", + "scheduled_service": "no" + }, + { + "id": "46003", + "ident": "US-0090", + "type": "small_airport", + "name": "Davison Restricted Landing Area", + "latitude_deg": "40.91479874", + "longitude_deg": "-89.12870026", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Minork", + "scheduled_service": "no" + }, + { + "id": "46004", + "ident": "US-0091", + "type": "small_airport", + "name": "Sarver Field", + "latitude_deg": "37.94120026", + "longitude_deg": "-87.15470123", + "elevation_ft": "391", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Richland City", + "scheduled_service": "no" + }, + { + "id": "46005", + "ident": "US-0092", + "type": "heliport", + "name": "Rayl Heliport", + "latitude_deg": "38.45000076", + "longitude_deg": "-96.55670166", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Strong City", + "scheduled_service": "no" + }, + { + "id": "46006", + "ident": "US-0093", + "type": "closed", + "name": "APCI Emergency Heliport", + "latitude_deg": "30.0319", + "longitude_deg": "-89.901703", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no", + "keywords": "LA95" + }, + { + "id": "46007", + "ident": "US-0094", + "type": "closed", + "name": "Delta Ultralightport", + "latitude_deg": "31.60329", + "longitude_deg": "-91.615075", + "elevation_ft": "61", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Ferriday", + "scheduled_service": "no" + }, + { + "id": "46008", + "ident": "US-0095", + "type": "closed", + "name": "Shell Pipeline Nairn Heliport", + "latitude_deg": "29.416901", + "longitude_deg": "-89.614799", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Nairn", + "scheduled_service": "no", + "keywords": "LA93" + }, + { + "id": "46009", + "ident": "US-0096", + "type": "heliport", + "name": "Camp Canard Heliport", + "latitude_deg": "29.71360016", + "longitude_deg": "-92.76290131", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Grand Chenier", + "scheduled_service": "yes" + }, + { + "id": "46280", + "ident": "US-0097", + "type": "closed", + "name": "Tremonton Municipal Airport", + "latitude_deg": "41.714795", + "longitude_deg": "-112.184143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Tremonton, UT", + "scheduled_service": "no", + "home_link": "http://www.members.tripod.com/airfields_freeman/UT/Airfields_UT_NE.htm", + "keywords": "TRT, U27" + }, + { + "id": "46011", + "ident": "US-0098", + "type": "closed", + "name": "Operators Inc. Training Facility Heliport", + "latitude_deg": "30.226601", + "longitude_deg": "-92.076797", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lafayette", + "scheduled_service": "no", + "keywords": "31LA" + }, + { + "id": "46474", + "ident": "US-0099", + "type": "closed", + "name": "Havasu Airpark", + "latitude_deg": "34.457279", + "longitude_deg": "-114.364114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Lake Havasu City", + "scheduled_service": "no", + "iata_code": "LHU", + "local_code": "LHU", + "keywords": "Lake Havasu City Municipal Airport" + }, + { + "id": "46013", + "ident": "US-0100", + "type": "small_airport", + "name": "Loggy Bayou Plantation Airport", + "latitude_deg": "32.27320099", + "longitude_deg": "-93.40599823", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Ringgold", + "scheduled_service": "no" + }, + { + "id": "46014", + "ident": "US-0101", + "type": "closed", + "name": "Air Logistics Heliport", + "latitude_deg": "29.763599", + "longitude_deg": "-93.012604", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Grand Chenier", + "scheduled_service": "no", + "keywords": "39LA" + }, + { + "id": "46015", + "ident": "US-0102", + "type": "closed", + "name": "Station 507F Heliport", + "latitude_deg": "29.765499", + "longitude_deg": "-92.957901", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Grand Chenier", + "scheduled_service": "no", + "keywords": "3LA7" + }, + { + "id": "46016", + "ident": "US-0103", + "type": "small_airport", + "name": "Hapworths Private Landing Area Airport", + "latitude_deg": "44.64030075", + "longitude_deg": "-69.67030334", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "North Fairfield", + "scheduled_service": "no" + }, + { + "id": "46017", + "ident": "US-0104", + "type": "closed", + "name": "Laurie's Landing Airport", + "latitude_deg": "37.5187", + "longitude_deg": "-93.093002", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Buffalo", + "scheduled_service": "no", + "keywords": "MO93" + }, + { + "id": "46018", + "ident": "US-0105", + "type": "small_airport", + "name": "Haerr Field", + "latitude_deg": "39.9500007629", + "longitude_deg": "-91.51679992679999", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Taylor", + "scheduled_service": "no" + }, + { + "id": "46019", + "ident": "US-0106", + "type": "small_airport", + "name": "Berryhill Farms Airport", + "latitude_deg": "32.064539", + "longitude_deg": "-91.347713", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Newellton", + "scheduled_service": "no" + }, + { + "id": "46020", + "ident": "US-0107", + "type": "small_airport", + "name": "Mackay Ranch Airport", + "latitude_deg": "45.32020187", + "longitude_deg": "-109.5490036", + "elevation_ft": "5400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Roscoe", + "scheduled_service": "no" + }, + { + "id": "46021", + "ident": "US-0108", + "type": "closed", + "name": "NC Executive Downtown Heliport", + "latitude_deg": "35.725289", + "longitude_deg": "-78.619704", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Raleigh", + "scheduled_service": "no" + }, + { + "id": "46022", + "ident": "US-0109", + "type": "small_airport", + "name": "Johnson Farms Airport", + "latitude_deg": "40.75009918", + "longitude_deg": "-75.06629944", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Belvidere", + "scheduled_service": "no" + }, + { + "id": "46023", + "ident": "US-0110", + "type": "closed", + "name": "Plane Haven Airport", + "latitude_deg": "42.450102", + "longitude_deg": "-78.237", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Centerville", + "scheduled_service": "no", + "keywords": "N01, NK51" + }, + { + "id": "46024", + "ident": "US-0111", + "type": "small_airport", + "name": "Boober Airport", + "latitude_deg": "40.09140015", + "longitude_deg": "-83.35910034", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Plain City", + "scheduled_service": "no" + }, + { + "id": "12618", + "ident": "US-0112", + "type": "closed", + "name": "Bendinsky Airport", + "latitude_deg": "40.8000984192", + "longitude_deg": "-76.112197876", + "elevation_ft": "1770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mahanoy City", + "scheduled_service": "no" + }, + { + "id": "46026", + "ident": "US-0113", + "type": "small_airport", + "name": "Compressor Station Nr 10 STOLport", + "latitude_deg": "45.12900161739999", + "longitude_deg": "-120.614997864", + "elevation_ft": "2677", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Kent", + "scheduled_service": "no" + }, + { + "id": "46027", + "ident": "US-0114", + "type": "small_airport", + "name": "Barnes Valley Airport", + "latitude_deg": "42.16149902", + "longitude_deg": "-120.9100037", + "elevation_ft": "5180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Lakeview", + "scheduled_service": "no" + }, + { + "id": "46028", + "ident": "US-0115", + "type": "small_airport", + "name": "Jerome Airport", + "latitude_deg": "36.351398468", + "longitude_deg": "-97.28420257570001", + "elevation_ft": "967", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Perry", + "scheduled_service": "no" + }, + { + "id": "46029", + "ident": "US-0116", + "type": "small_airport", + "name": "Melton Airport", + "latitude_deg": "35.84420013", + "longitude_deg": "-96.98200226", + "elevation_ft": "1022", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tryon", + "scheduled_service": "no" + }, + { + "id": "46030", + "ident": "US-0117", + "type": "heliport", + "name": "Allied Heliport", + "latitude_deg": "36.20669937", + "longitude_deg": "-96.00579834", + "elevation_ft": "746", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tulsa", + "scheduled_service": "no" + }, + { + "id": "300159", + "ident": "US-0118", + "type": "heliport", + "name": "Walter Reed National Medical Center Heliport", + "latitude_deg": "38.999595", + "longitude_deg": "-77.095668", + "elevation_ft": "312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Bethesda", + "scheduled_service": "no", + "local_code": "60MD" + }, + { + "id": "46032", + "ident": "US-0119", + "type": "small_airport", + "name": "Nesspor Airport", + "latitude_deg": "40.189804", + "longitude_deg": "-75.615196", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Phoenixville", + "scheduled_service": "no", + "gps_code": "5PA4", + "local_code": "5PA4", + "keywords": "12PA, Emery Field, Pottstown" + }, + { + "id": "46033", + "ident": "US-0120", + "type": "small_airport", + "name": "Big Bend Airport", + "latitude_deg": "41.280602", + "longitude_deg": "-80.280899", + "elevation_ft": "1315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mercer", + "scheduled_service": "no", + "keywords": "22PN" + }, + { + "id": "46034", + "ident": "US-0121", + "type": "small_airport", + "name": "Eagle's Nest Airport", + "latitude_deg": "48.933882", + "longitude_deg": "-118.574891", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Curlew", + "scheduled_service": "no" + }, + { + "id": "46035", + "ident": "US-0122", + "type": "heliport", + "name": "Wellmore Heliport", + "latitude_deg": "37.36259842", + "longitude_deg": "-82.20819855", + "elevation_ft": "1168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Big Rock", + "scheduled_service": "no" + }, + { + "id": "46036", + "ident": "US-0123", + "type": "small_airport", + "name": "Fighting Creek Farm Airport", + "latitude_deg": "37.51679993", + "longitude_deg": "-77.91390228", + "elevation_ft": "355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Powhatan", + "scheduled_service": "no" + }, + { + "id": "46037", + "ident": "US-0124", + "type": "small_airport", + "name": "Bachman Farm Ultralightport", + "latitude_deg": "37.74850082", + "longitude_deg": "-77.85389709", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Goochland Court House", + "scheduled_service": "no" + }, + { + "id": "46038", + "ident": "US-0125", + "type": "heliport", + "name": "Pavilion Heliport", + "latitude_deg": "36.84680176", + "longitude_deg": "-75.98719788", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Virginia Beach", + "scheduled_service": "no" + }, + { + "id": "46039", + "ident": "US-0126", + "type": "closed", + "name": "Swanson Private Heliport", + "latitude_deg": "38.751202", + "longitude_deg": "-77.671402", + "elevation_ft": "392", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Warrenton", + "scheduled_service": "no", + "keywords": "04VA, Vint Hill Farms Station" + }, + { + "id": "46040", + "ident": "US-0127", + "type": "heliport", + "name": "Lynnhaven Heliport", + "latitude_deg": "36.86539841", + "longitude_deg": "-76.03440094", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Virginia Beach", + "scheduled_service": "no" + }, + { + "id": "46041", + "ident": "US-0128", + "type": "small_airport", + "name": "Flying O Airport", + "latitude_deg": "45.17969894", + "longitude_deg": "-91.51820374", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "New Auburn", + "scheduled_service": "no" + }, + { + "id": "46042", + "ident": "US-0129", + "type": "closed", + "name": "Rohde's Airport", + "latitude_deg": "43.566399", + "longitude_deg": "-89.267097", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Pardeeville", + "scheduled_service": "no", + "keywords": "43WI" + }, + { + "id": "46043", + "ident": "US-0130", + "type": "small_airport", + "name": "Thompson Strawberry Farm Airport", + "latitude_deg": "42.57220078", + "longitude_deg": "-87.97789764", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Bristol", + "scheduled_service": "no" + }, + { + "id": "46044", + "ident": "US-0131", + "type": "small_airport", + "name": "Powderly Airport", + "latitude_deg": "33.79320145", + "longitude_deg": "-95.52799988", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Powderly", + "scheduled_service": "no" + }, + { + "id": "46045", + "ident": "US-0132", + "type": "closed", + "name": "Manning Airport", + "latitude_deg": "32.38499", + "longitude_deg": "-96.103688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mabank", + "scheduled_service": "no" + }, + { + "id": "299322", + "ident": "US-0133", + "type": "closed", + "name": "Amchitka West Airfield", + "latitude_deg": "51.62904", + "longitude_deg": "178.686408", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Amchitka Island", + "scheduled_service": "no" + }, + { + "id": "46047", + "ident": "US-0134", + "type": "closed", + "name": "CLM Ranch Airport", + "latitude_deg": "31.874497", + "longitude_deg": "-105.244303", + "elevation_ft": "3830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Salt Flat", + "scheduled_service": "no", + "keywords": "2TE7" + }, + { + "id": "46048", + "ident": "US-0135", + "type": "small_airport", + "name": "Cts Stacy Airport", + "latitude_deg": "30.13349915", + "longitude_deg": "-98.38359833", + "elevation_ft": "1460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Blanco", + "scheduled_service": "no" + }, + { + "id": "46049", + "ident": "US-0136", + "type": "closed", + "name": "Putz Airport", + "latitude_deg": "26.205196", + "longitude_deg": "-98.401226", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mission", + "scheduled_service": "no" + }, + { + "id": "46050", + "ident": "US-0137", + "type": "small_airport", + "name": "F6 Ranch Airport", + "latitude_deg": "30.54249", + "longitude_deg": "-100.08395", + "elevation_ft": "2166", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Junction", + "scheduled_service": "no" + }, + { + "id": "46051", + "ident": "US-0138", + "type": "small_airport", + "name": "Belcher Airport", + "latitude_deg": "33.382666", + "longitude_deg": "-97.107511", + "elevation_ft": "709", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanger", + "scheduled_service": "no" + }, + { + "id": "46052", + "ident": "US-0139", + "type": "small_airport", + "name": "Flying Hare Airport", + "latitude_deg": "28.36829948", + "longitude_deg": "-98.8934021", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fowlerton", + "scheduled_service": "no" + }, + { + "id": "46053", + "ident": "US-0140", + "type": "small_airport", + "name": "Flying ND Ranch Airport", + "latitude_deg": "31.5182", + "longitude_deg": "-97.501701", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crawford", + "scheduled_service": "no" + }, + { + "id": "46054", + "ident": "US-0141", + "type": "closed", + "name": "Little Elm Field", + "latitude_deg": "31.1241", + "longitude_deg": "-97.315002", + "elevation_ft": "652", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Temple", + "scheduled_service": "no", + "keywords": "1XS6" + }, + { + "id": "299710", + "ident": "US-0142", + "type": "small_airport", + "name": "Ropkey Field", + "latitude_deg": "40.058086", + "longitude_deg": "-86.79542", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Crawfordsville", + "scheduled_service": "no", + "gps_code": "50IN", + "local_code": "50IN" + }, + { + "id": "46056", + "ident": "US-0143", + "type": "small_airport", + "name": "Gross Private Airport", + "latitude_deg": "26.25919914", + "longitude_deg": "-98.27159882", + "elevation_ft": "156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mc Allen", + "scheduled_service": "no" + }, + { + "id": "46057", + "ident": "US-0144", + "type": "closed", + "name": "Twin Falls Ranch Airport", + "latitude_deg": "29.684099", + "longitude_deg": "-99.286201", + "elevation_ft": "1460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tarpley", + "scheduled_service": "no", + "keywords": "1XS3" + }, + { + "id": "46058", + "ident": "US-0145", + "type": "closed", + "name": "Viejo Ranch Ultralightport", + "latitude_deg": "29.607211", + "longitude_deg": "-98.720842", + "elevation_ft": "1375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Helotes", + "scheduled_service": "no" + }, + { + "id": "46059", + "ident": "US-0146", + "type": "closed", + "name": "Idle Airpark", + "latitude_deg": "29.473605", + "longitude_deg": "-98.137354", + "elevation_ft": "576", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marion", + "scheduled_service": "no", + "keywords": "XS78" + }, + { + "id": "46060", + "ident": "US-0147", + "type": "small_airport", + "name": "Wilson Airport", + "latitude_deg": "34.14170074", + "longitude_deg": "-100.1439972", + "elevation_ft": "1752", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paducah", + "scheduled_service": "no" + }, + { + "id": "46061", + "ident": "US-0148", + "type": "closed", + "name": "Carroll Lake-View Airport", + "latitude_deg": "32.462601", + "longitude_deg": "-97.114197", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Venus", + "scheduled_service": "no", + "keywords": "70TS" + }, + { + "id": "46062", + "ident": "US-0149", + "type": "small_airport", + "name": "Booker Airport", + "latitude_deg": "36.4413986206", + "longitude_deg": "-100.533996582", + "elevation_ft": "2837", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Booker", + "scheduled_service": "no" + }, + { + "id": "46063", + "ident": "US-0150", + "type": "closed", + "name": "Basslake Airport", + "latitude_deg": "32.486801", + "longitude_deg": "-95.561897", + "elevation_ft": "508", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Van", + "scheduled_service": "no", + "keywords": "8TX9" + }, + { + "id": "46064", + "ident": "US-0151", + "type": "small_airport", + "name": "Bethal Airport", + "latitude_deg": "34.9353981", + "longitude_deg": "-92.19210052", + "elevation_ft": "311", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jacksonville", + "scheduled_service": "no" + }, + { + "id": "46065", + "ident": "US-0152", + "type": "closed", + "name": "Rio Medina Airport", + "latitude_deg": "29.2669", + "longitude_deg": "-98.467", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "keywords": "XS80" + }, + { + "id": "46066", + "ident": "US-0153", + "type": "heliport", + "name": "Medical Center Heliport", + "latitude_deg": "29.70750046", + "longitude_deg": "-95.3927002", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "299711", + "ident": "US-0154", + "type": "small_airport", + "name": "Koester Field", + "latitude_deg": "38.118014", + "longitude_deg": "-87.702098", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "St. Wendel", + "scheduled_service": "no", + "gps_code": "5II5", + "local_code": "5II5" + }, + { + "id": "46068", + "ident": "US-0155", + "type": "closed", + "name": "Rancho Grande Airport", + "latitude_deg": "30.0735", + "longitude_deg": "-101.429001", + "elevation_ft": "1975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no", + "keywords": "XS34" + }, + { + "id": "46069", + "ident": "US-0156", + "type": "closed", + "name": "Jennings Ranch Airport", + "latitude_deg": "27.12622", + "longitude_deg": "-99.12403", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Zapata", + "scheduled_service": "no" + }, + { + "id": "46070", + "ident": "US-0157", + "type": "small_airport", + "name": "Prison Canyon Ranch Airport", + "latitude_deg": "29.874044", + "longitude_deg": "-99.127358", + "elevation_ft": "1884", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bandera", + "scheduled_service": "no" + }, + { + "id": "46071", + "ident": "US-0158", + "type": "closed", + "name": "Circle H Farms Ltd Airport", + "latitude_deg": "36.270717", + "longitude_deg": "-103.019571", + "elevation_ft": "4510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Texline", + "scheduled_service": "no", + "keywords": "97XS" + }, + { + "id": "46072", + "ident": "US-0159", + "type": "closed", + "name": "Goodall Ranch Airport", + "latitude_deg": "32.027901", + "longitude_deg": "-99.1073", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cross Plains", + "scheduled_service": "no", + "keywords": "TA16" + }, + { + "id": "46073", + "ident": "US-0160", + "type": "closed", + "name": "Beauchamp Ranch Airport", + "latitude_deg": "35.789799", + "longitude_deg": "-101.973", + "elevation_ft": "3505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dumas", + "scheduled_service": "no" + }, + { + "id": "46074", + "ident": "US-0161", + "type": "small_airport", + "name": "Eisenbeck Ranch Airport", + "latitude_deg": "32.485699", + "longitude_deg": "-96.589203", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bristol", + "scheduled_service": "no", + "keywords": "65TE" + }, + { + "id": "299715", + "ident": "US-0162", + "type": "small_airport", + "name": "Coberly Airport", + "latitude_deg": "38.786889", + "longitude_deg": "-100.419843", + "elevation_ft": "2540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Gove City", + "scheduled_service": "no", + "gps_code": "86KS", + "local_code": "86KS" + }, + { + "id": "46093", + "ident": "US-0163", + "type": "small_airport", + "name": "Panamint Springs Airport", + "latitude_deg": "36.338325", + "longitude_deg": "-117.467065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Darwin", + "scheduled_service": "no", + "keywords": "KSEL" + }, + { + "id": "46094", + "ident": "US-0164", + "type": "closed", + "name": "Fisher's Landing Resort Airstrip", + "latitude_deg": "32.974251969200004", + "longitude_deg": "-114.455308914", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "scheduled_service": "no" + }, + { + "id": "299716", + "ident": "US-0165", + "type": "small_airport", + "name": "Brocks Airport", + "latitude_deg": "34.916112", + "longitude_deg": "-78.600145", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Roseboro", + "scheduled_service": "no", + "gps_code": "87NC", + "local_code": "87NC" + }, + { + "id": "299718", + "ident": "US-0166", + "type": "small_airport", + "name": "Shimpa Airstrip", + "latitude_deg": "47.966781249099995", + "longitude_deg": "-96.640226841", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Euclid", + "scheduled_service": "no", + "gps_code": "8MN1", + "local_code": "8MN1" + }, + { + "id": "299720", + "ident": "US-0167", + "type": "closed", + "name": "Brewer Airport", + "latitude_deg": "39.210842", + "longitude_deg": "-89.11824", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Ramsey", + "scheduled_service": "no", + "keywords": "LL69" + }, + { + "id": "299721", + "ident": "US-0168", + "type": "small_airport", + "name": "The 88 Airport", + "latitude_deg": "33.568942", + "longitude_deg": "-97.190577", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gainesville", + "scheduled_service": "no", + "gps_code": "XS62", + "local_code": "XS62", + "keywords": "Stahl Airport" + }, + { + "id": "299723", + "ident": "US-0169", + "type": "heliport", + "name": "St. Joseph's Hospital Heliport", + "latitude_deg": "40.903483", + "longitude_deg": "-74.165493", + "elevation_ft": "206", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Paterson", + "scheduled_service": "no", + "gps_code": "03NJ", + "local_code": "03NJ" + }, + { + "id": "299728", + "ident": "US-0170", + "type": "heliport", + "name": "Helo Kearny Heliport", + "latitude_deg": "40.731487", + "longitude_deg": "-74.116622", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Kearny", + "scheduled_service": "no", + "gps_code": "65NJ", + "local_code": "65NJ" + }, + { + "id": "299731", + "ident": "US-0171", + "type": "heliport", + "name": "University Hospital Heliport", + "latitude_deg": "33.470792", + "longitude_deg": "-81.983817", + "elevation_ft": "174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Augusta", + "scheduled_service": "no", + "gps_code": "GA13", + "local_code": "GA13" + }, + { + "id": "299732", + "ident": "US-0172", + "type": "heliport", + "name": "Aspirus Ironwood Hospital Heliport", + "latitude_deg": "46.48106", + "longitude_deg": "-90.105336", + "elevation_ft": "1566", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ironwood", + "scheduled_service": "no", + "gps_code": "MI16", + "local_code": "MI16", + "keywords": "Grand View Health System Campus" + }, + { + "id": "299733", + "ident": "US-0173", + "type": "heliport", + "name": "Baltic Heliport", + "latitude_deg": "40.447778", + "longitude_deg": "-81.700277", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Baltic", + "scheduled_service": "no", + "gps_code": "OH88", + "local_code": "OH88" + }, + { + "id": "300244", + "ident": "US-0174", + "type": "closed", + "name": "Aurora Airpark", + "latitude_deg": "39.7325", + "longitude_deg": "-104.654722222", + "elevation_ft": "5665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Aurora", + "scheduled_service": "no", + "local_code": "01V", + "keywords": "East Colfax Airport, Columbine Airport" + }, + { + "id": "300372", + "ident": "US-0175", + "type": "heliport", + "name": "DeKalb Peachtree Heliport", + "latitude_deg": "33.8841666667", + "longitude_deg": "-84.30611111110001", + "elevation_ft": "998", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "local_code": "Z21" + }, + { + "id": "300373", + "ident": "US-0176", + "type": "heliport", + "name": "Ford ARNG Heliport", + "latitude_deg": "37.255277777799996", + "longitude_deg": "-87.205", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "scheduled_service": "no" + }, + { + "id": "300417", + "ident": "US-0177", + "type": "small_airport", + "name": "Utley Field", + "latitude_deg": "30.18798", + "longitude_deg": "-97.41453", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bastrop", + "scheduled_service": "no", + "local_code": "68XA" + }, + { + "id": "300656", + "ident": "US-0178", + "type": "small_airport", + "name": "Cow Creek Airport", + "latitude_deg": "47.9475", + "longitude_deg": "-109.008611111", + "elevation_ft": "3298", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Winifred", + "scheduled_service": "no", + "local_code": "CW0" + }, + { + "id": "300657", + "ident": "US-0179", + "type": "small_airport", + "name": "Black Butte North Airport", + "latitude_deg": "47.84542", + "longitude_deg": "-109.18656", + "elevation_ft": "3230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Lloyd", + "scheduled_service": "no", + "local_code": "BB0" + }, + { + "id": "300658", + "ident": "US-0180", + "type": "small_airport", + "name": "Bullwhacker Airport", + "latitude_deg": "47.847639", + "longitude_deg": "-109.098972", + "elevation_ft": "3147", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Winifred", + "scheduled_service": "no", + "local_code": "BW8" + }, + { + "id": "300659", + "ident": "US-0181", + "type": "seaplane_base", + "name": "Tavares Seaplane Base", + "latitude_deg": "28.8004722222", + "longitude_deg": "-81.72755555559999", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tavares", + "scheduled_service": "no", + "local_code": "FA1" + }, + { + "id": "301237", + "ident": "US-0182", + "type": "small_airport", + "name": "Southwest Lakes Airpark", + "latitude_deg": "41.891097", + "longitude_deg": "-86.586739", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Sawyer", + "scheduled_service": "no", + "gps_code": "7MI2", + "local_code": "7MI2" + }, + { + "id": "301244", + "ident": "US-0183", + "type": "heliport", + "name": "Phoebe Sumter Heliport", + "latitude_deg": "32.067498", + "longitude_deg": "-84.255273", + "elevation_ft": "424", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Americus", + "scheduled_service": "no", + "gps_code": "1GA7", + "local_code": "1GA7" + }, + { + "id": "301247", + "ident": "US-0184", + "type": "heliport", + "name": "Saint Anthony's Hospital East Heliport", + "latitude_deg": "39.715887", + "longitude_deg": "-105.127919", + "elevation_ft": "5681", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Lakewood", + "scheduled_service": "no", + "local_code": "42CO" + }, + { + "id": "301248", + "ident": "US-0185", + "type": "heliport", + "name": "Castle Rock Adventist Health Campus Heliport", + "latitude_deg": "39.406149", + "longitude_deg": "-104.884157", + "elevation_ft": "6134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "scheduled_service": "no", + "gps_code": "50CO" + }, + { + "id": "301249", + "ident": "US-0186", + "type": "heliport", + "name": "Watsontown / Helicopter 1 LLC Heliport", + "latitude_deg": "41.0940584612", + "longitude_deg": "-76.85953885320001", + "elevation_ft": "524", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "scheduled_service": "no", + "gps_code": "6PA7" + }, + { + "id": "301250", + "ident": "US-0187", + "type": "heliport", + "name": "East Tennessee Helicopters Heliport", + "latitude_deg": "36.419367", + "longitude_deg": "-81.945199", + "elevation_ft": "2350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Mountain City", + "scheduled_service": "no", + "gps_code": "9TN3", + "local_code": "9TN3" + }, + { + "id": "301439", + "ident": "US-0188", + "type": "heliport", + "name": "Coast Guard Air Station San Francisco", + "latitude_deg": "37.632056", + "longitude_deg": "-122.389694", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Francisco", + "scheduled_service": "no", + "local_code": "SFS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coast_Guard_Air_Station_San_Francisco" + }, + { + "id": "301440", + "ident": "US-0189", + "type": "heliport", + "name": "Orange County Global Medical Center Helipad", + "latitude_deg": "33.7549305556", + "longitude_deg": "-117.832736111", + "elevation_ft": "178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Ana", + "scheduled_service": "no", + "local_code": "1CN1", + "keywords": "Western Medical Center Santa Ana Heliport" + }, + { + "id": "301441", + "ident": "US-0190", + "type": "small_airport", + "name": "Rangeview Airstrip", + "latitude_deg": "62.312778", + "longitude_deg": "-150.335833", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Trapper Creek", + "scheduled_service": "no", + "gps_code": "0AA5", + "local_code": "0AA5" + }, + { + "id": "301447", + "ident": "US-0191", + "type": "seaplane_base", + "name": "Paradise Landing Seaplane Base", + "latitude_deg": "28.653888888900003", + "longitude_deg": "-81.3769444444", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Altamonte Springs", + "scheduled_service": "no", + "local_code": "0FA9" + }, + { + "id": "301477", + "ident": "US-0192", + "type": "heliport", + "name": "NG Cape May Armory Helistop", + "latitude_deg": "39.0979444444", + "longitude_deg": "-74.80588888890001", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "scheduled_service": "no", + "keywords": "H-243" + }, + { + "id": "301492", + "ident": "US-0193", + "type": "heliport", + "name": "Cape May County Dept of Mosquito Control Helistop", + "latitude_deg": "39.1055138889", + "longitude_deg": "-74.8770555556", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "scheduled_service": "no", + "keywords": "H-309" + }, + { + "id": "301493", + "ident": "US-0194", + "type": "heliport", + "name": "National Guard Vineland Armory Helistop", + "latitude_deg": "39.45", + "longitude_deg": "-75.04416666670001", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "scheduled_service": "no", + "keywords": "H-161" + }, + { + "id": "301542", + "ident": "US-0195", + "type": "heliport", + "name": "South Jersey Healthcare Helipad", + "latitude_deg": "39.444916666699996", + "longitude_deg": "-75.06058333330002", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Vineland", + "scheduled_service": "no", + "keywords": "H-497" + }, + { + "id": "301544", + "ident": "US-0196", + "type": "heliport", + "name": "New Jersey State Police Troop A Headquarters Heliport", + "latitude_deg": "39.578194", + "longitude_deg": "-74.866917", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Williamstown", + "scheduled_service": "no", + "keywords": "H-NJSP A3" + }, + { + "id": "301545", + "ident": "US-0197", + "type": "heliport", + "name": "J F Creamer Helistop", + "latitude_deg": "39.62", + "longitude_deg": "-74.85638888890001", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Folsom", + "scheduled_service": "no", + "keywords": "H-458" + }, + { + "id": "301546", + "ident": "US-0198", + "type": "heliport", + "name": "NG Hammonton Armory Helistop", + "latitude_deg": "39.6269444444", + "longitude_deg": "-74.7905555556", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "scheduled_service": "no", + "keywords": "h-244" + }, + { + "id": "301624", + "ident": "US-0199", + "type": "small_airport", + "name": "Coal Field", + "latitude_deg": "38.0121998344", + "longitude_deg": "-84.3464076519", + "elevation_ft": "984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "scheduled_service": "no" + }, + { + "id": "301864", + "ident": "US-0200", + "type": "small_airport", + "name": "Kogru River Airfield", + "latitude_deg": "70.574196", + "longitude_deg": "-152.259478", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kogru", + "scheduled_service": "no", + "local_code": "A41" + }, + { + "id": "301865", + "ident": "US-0201", + "type": "small_airport", + "name": "Cape Simpson Airport", + "latitude_deg": "71.057926", + "longitude_deg": "-154.73912", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cape Simpson", + "scheduled_service": "no", + "local_code": "A40" + }, + { + "id": "301987", + "ident": "US-0202", + "type": "closed", + "name": "Colts Neck Police Heliport", + "latitude_deg": "40.295272", + "longitude_deg": "-74.190309", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Colts Neck", + "scheduled_service": "no", + "keywords": "73NJ" + }, + { + "id": "301988", + "ident": "US-0203", + "type": "heliport", + "name": "High Crest Helistop", + "latitude_deg": "41.2913888889", + "longitude_deg": "-74.78666666670001", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Montegue", + "scheduled_service": "no", + "keywords": "H-255" + }, + { + "id": "301999", + "ident": "US-0204", + "type": "heliport", + "name": "Barnegat Light Helistop", + "latitude_deg": "39.7630833333", + "longitude_deg": "-74.1070277778", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Barnegat Light", + "scheduled_service": "no" + }, + { + "id": "302000", + "ident": "US-0205", + "type": "heliport", + "name": "Ocean County Mosquito Commission Heliport", + "latitude_deg": "39.7556944444", + "longitude_deg": "-74.2299166667", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Barnegat", + "scheduled_service": "no" + }, + { + "id": "302010", + "ident": "US-0206", + "type": "heliport", + "name": "NJSP - Tukerton Station Helistop", + "latitude_deg": "39.6493888889", + "longitude_deg": "-74.2969444444", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "West Creek", + "scheduled_service": "no", + "keywords": "H-NJSP-A2" + }, + { + "id": "302020", + "ident": "US-0207", + "type": "heliport", + "name": "NG Tuckerton Armory Helistop", + "latitude_deg": "39.61027777779999", + "longitude_deg": "-74.32722222219999", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Tuckerton", + "scheduled_service": "no" + }, + { + "id": "302021", + "ident": "US-0208", + "type": "heliport", + "name": "Community Medical Center Helistop", + "latitude_deg": "39.965888888900004", + "longitude_deg": "-74.21755555559999", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Toms River", + "scheduled_service": "no", + "keywords": "H-265" + }, + { + "id": "302022", + "ident": "US-0209", + "type": "heliport", + "name": "Cumberland County Mosquito Control Helistop", + "latitude_deg": "39.4216666667", + "longitude_deg": "-75.20555555559999", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bridgeton", + "scheduled_service": "no" + }, + { + "id": "302023", + "ident": "US-0210", + "type": "heliport", + "name": "USCGS Heliport", + "latitude_deg": "39.3789444444", + "longitude_deg": "-74.42308333330001", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Atlantic City", + "scheduled_service": "no" + }, + { + "id": "302026", + "ident": "US-0211", + "type": "heliport", + "name": "Atlantic City Country Club Helistop", + "latitude_deg": "39.3696666667", + "longitude_deg": "-74.54336111110001", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "scheduled_service": "no", + "keywords": "H-220" + }, + { + "id": "302027", + "ident": "US-0212", + "type": "heliport", + "name": "Still Meadows Helistop", + "latitude_deg": "39.4327777778", + "longitude_deg": "-74.4872222222", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Absecon", + "scheduled_service": "no", + "keywords": "H-235" + }, + { + "id": "302149", + "ident": "US-0213", + "type": "closed", + "name": "Montana ARNG Heliport", + "latitude_deg": "45.805", + "longitude_deg": "-108.566666667", + "elevation_ft": "3649", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Billings", + "scheduled_service": "no", + "gps_code": "KMNG", + "local_code": "MNG" + }, + { + "id": "302218", + "ident": "US-0214", + "type": "closed", + "name": "RAF Castle Archdale/RAF Lough Erne", + "latitude_deg": "54.4806105242", + "longitude_deg": "-7.72707939148", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-NIR", + "municipality": "County Fermanagh", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Castle_Archdale" + }, + { + "id": "307428", + "ident": "US-0215", + "type": "closed", + "name": "Denton Field / College Field", + "latitude_deg": "33.2762247487", + "longitude_deg": "-97.1330451965", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Denton", + "scheduled_service": "no" + }, + { + "id": "302246", + "ident": "US-0216", + "type": "closed", + "name": "RAF Carnaby", + "latitude_deg": "54.060833", + "longitude_deg": "-0.261667", + "elevation_ft": "33", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "East Riding of Yorkshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Carnaby" + }, + { + "id": "308354", + "ident": "US-0217", + "type": "closed", + "name": "Cape Sabine DEW Line Station", + "latitude_deg": "69.024167", + "longitude_deg": "-163.857225", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cape Beaufort", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cape_Sabine_Airport", + "keywords": "Z53" + }, + { + "id": "302254", + "ident": "US-0218", + "type": "closed", + "name": "RAF Catfoss", + "latitude_deg": "53.9199600906", + "longitude_deg": "-0.276460647583", + "elevation_ft": "36", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Yorkshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Catfoss" + }, + { + "id": "302255", + "ident": "US-0219", + "type": "closed", + "name": "RNAS Cattewater/RAF Cattewater/RAF Mount Batten", + "latitude_deg": "50.358889", + "longitude_deg": "-4.13", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Devon", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Cattewater" + }, + { + "id": "302269", + "ident": "US-0220", + "type": "closed", + "name": "Kingstown Municipal Airport/RAF Kingstown/RAF Carlisle", + "latitude_deg": "54.926944", + "longitude_deg": "-2.960278", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Cumbria", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Carlisle" + }, + { + "id": "302270", + "ident": "US-0221", + "type": "closed", + "name": "RAF Cardington", + "latitude_deg": "52.108922", + "longitude_deg": "-0.422499", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Bedfordshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Cardington" + }, + { + "id": "302272", + "ident": "US-0222", + "type": "closed", + "name": "RAF Chailey", + "latitude_deg": "50.955278", + "longitude_deg": "-0.055556", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "East Sussex", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Chailey" + }, + { + "id": "317247", + "ident": "US-0223", + "type": "heliport", + "name": "Sutter Health Memorial Medical Center Heliport", + "latitude_deg": "37.669127", + "longitude_deg": "-120.972088", + "elevation_ft": "97", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Modesto", + "scheduled_service": "no" + }, + { + "id": "309370", + "ident": "US-0224", + "type": "small_airport", + "name": "Pohakuloa Training Area Airstrip", + "latitude_deg": "19.726675", + "longitude_deg": "-155.524542", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Waimea (Kamuela)", + "scheduled_service": "no" + }, + { + "id": "309373", + "ident": "US-0225", + "type": "heliport", + "name": "Treasure Island Helipad", + "latitude_deg": "37.819896", + "longitude_deg": "-122.364774", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Francisco", + "scheduled_service": "no" + }, + { + "id": "309409", + "ident": "US-0226", + "type": "closed", + "name": "Tulsa Downtown Airpark", + "latitude_deg": "36.211", + "longitude_deg": "-96.0084", + "elevation_ft": "713", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tulsa", + "scheduled_service": "no", + "local_code": "TNR", + "keywords": "Tulsa North" + }, + { + "id": "309573", + "ident": "US-0227", + "type": "small_airport", + "name": "Ranger Station Airstrip", + "latitude_deg": "34.0373", + "longitude_deg": "-120.3493", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Miguel Island", + "scheduled_service": "no" + }, + { + "id": "309574", + "ident": "US-0228", + "type": "small_airport", + "name": "Point Bennett Research Station Airstrip", + "latitude_deg": "34.04328", + "longitude_deg": "-120.41184", + "elevation_ft": "389", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Miguel Island", + "scheduled_service": "no" + }, + { + "id": "309575", + "ident": "US-0229", + "type": "small_airport", + "name": "Bechers Bay Airstrip", + "latitude_deg": "33.99624", + "longitude_deg": "-120.0456", + "elevation_ft": "88", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Rosa Island", + "scheduled_service": "no" + }, + { + "id": "310038", + "ident": "US-0230", + "type": "small_airport", + "name": "Best Lock Corp. Airstrip", + "latitude_deg": "39.8880996704", + "longitude_deg": "-86.0661010742", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "keywords": "IN01" + }, + { + "id": "310039", + "ident": "US-0231", + "type": "heliport", + "name": "North Michigan Hospitals Inc Heliport", + "latitude_deg": "45.339199066199996", + "longitude_deg": "-84.97280120850002", + "elevation_ft": "636", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Petoskey", + "scheduled_service": "no" + }, + { + "id": "310045", + "ident": "US-0232", + "type": "small_airport", + "name": "Flying F Airport", + "latitude_deg": "33.878395", + "longitude_deg": "-97.733332", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Nocona", + "scheduled_service": "no", + "keywords": "36XS" + }, + { + "id": "310046", + "ident": "US-0233", + "type": "closed", + "name": "Nuttall Airport", + "latitude_deg": "32.223028", + "longitude_deg": "-95.193056", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Whitehouse", + "scheduled_service": "no" + }, + { + "id": "310048", + "ident": "US-0234", + "type": "small_airport", + "name": "Watson Airport", + "latitude_deg": "30.9526996613", + "longitude_deg": "-85.4173965454", + "elevation_ft": "122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Campbellton", + "scheduled_service": "no" + }, + { + "id": "310053", + "ident": "US-0235", + "type": "closed", + "name": "Farmer's Co-Op Airport", + "latitude_deg": "26.135599", + "longitude_deg": "-97.694702", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Harlingen", + "scheduled_service": "no", + "keywords": "30TX" + }, + { + "id": "310055", + "ident": "US-0236", + "type": "small_airport", + "name": "Yorktown Airport", + "latitude_deg": "28.947799682599996", + "longitude_deg": "-97.45999908450001", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Yorktown", + "scheduled_service": "no", + "keywords": "96TE" + }, + { + "id": "310060", + "ident": "US-0237", + "type": "heliport", + "name": "Westwood Corporation Heliport", + "latitude_deg": "45.5018005371", + "longitude_deg": "-122.67099762", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Westwood_Corporation_Heliport", + "keywords": "76OR" + }, + { + "id": "310062", + "ident": "US-0238", + "type": "closed", + "name": "Rosita Creek Airport", + "latitude_deg": "27.7455", + "longitude_deg": "-98.35498", + "elevation_ft": "383", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "310063", + "ident": "US-0239", + "type": "small_airport", + "name": "Stowers Ranch Airport", + "latitude_deg": "30.0576992035", + "longitude_deg": "-99.512802124", + "elevation_ft": "2002", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hunt", + "scheduled_service": "no" + }, + { + "id": "310098", + "ident": "US-0240", + "type": "closed", + "name": "Cardiff Brothers Airport", + "latitude_deg": "29.729401", + "longitude_deg": "-95.849701", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Katy", + "scheduled_service": "no", + "keywords": "56TE" + }, + { + "id": "310112", + "ident": "US-0241", + "type": "heliport", + "name": "Memorial Hospital of Cumberland Heliport", + "latitude_deg": "39.6428985596", + "longitude_deg": "-78.7510986328", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Cumberland", + "scheduled_service": "no" + }, + { + "id": "310878", + "ident": "US-0242", + "type": "small_airport", + "name": "Campbellville (Bellshill Airpark)", + "latitude_deg": "43.431667", + "longitude_deg": "-80.025334", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CMB5", + "local_code": "CMB5", + "wikipedia_link": "https://en.wikipedia.org/wiki/Campbellville_(Bellshill_Airpark)_Aerodrome" + }, + { + "id": "310879", + "ident": "US-0243", + "type": "heliport", + "name": "Almonte (General Hospital)", + "latitude_deg": "45.230286", + "longitude_deg": "-76.187342", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-ON", + "scheduled_service": "no", + "gps_code": "CAL5" + }, + { + "id": "311036", + "ident": "US-0244", + "type": "small_airport", + "name": "Peason Landing Strip", + "latitude_deg": "31.3945", + "longitude_deg": "-93.2988", + "elevation_ft": "407", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Anacoco", + "scheduled_service": "no", + "local_code": "AWC" + }, + { + "id": "311099", + "ident": "US-0245", + "type": "small_airport", + "name": "Little York Airport", + "latitude_deg": "38.695833", + "longitude_deg": "-85.919167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Scottsburg", + "scheduled_service": "no", + "gps_code": "63IN", + "local_code": "63IN" + }, + { + "id": "311992", + "ident": "US-0246", + "type": "closed", + "name": "Raco Army Airfield", + "latitude_deg": "46.35", + "longitude_deg": "-84.815", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Sault Ste. Marie", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Raco_Army_Airfield", + "keywords": "Smithers Winter Test Center" + }, + { + "id": "312158", + "ident": "US-0247", + "type": "heliport", + "name": "UPMC East Heliport", + "latitude_deg": "40.437308", + "longitude_deg": "-79.760699", + "elevation_ft": "1182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Monroeville", + "scheduled_service": "no", + "local_code": "6PN0" + }, + { + "id": "312184", + "ident": "US-0248", + "type": "small_airport", + "name": "Santa Margarita Ranch Airport", + "latitude_deg": "35.3996501011", + "longitude_deg": "-120.616037", + "elevation_ft": "987", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Margarita", + "scheduled_service": "no", + "home_link": "http://www.historicsantamargaritaranch.com", + "keywords": "5CL2" + }, + { + "id": "312187", + "ident": "US-0249", + "type": "small_airport", + "name": "Hearst San Simeon Airstrip", + "latitude_deg": "35.663764", + "longitude_deg": "-121.198944", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Simeon", + "scheduled_service": "no", + "gps_code": "CN66", + "local_code": "CN66", + "keywords": "Hearst Ranch, Hearst Castle Airport" + }, + { + "id": "312231", + "ident": "US-0250", + "type": "closed", + "name": "Newport Naval Air Facility", + "latitude_deg": "41.53", + "longitude_deg": "-71.345", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Gould Island", + "scheduled_service": "no" + }, + { + "id": "312521", + "ident": "US-0251", + "type": "closed", + "name": "Breckenridge Army Airfield", + "latitude_deg": "37.6903", + "longitude_deg": "-87.8395", + "elevation_ft": "439", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Morganfield", + "scheduled_service": "no" + }, + { + "id": "312880", + "ident": "US-0252", + "type": "small_airport", + "name": "Point Barrow Long Range Radar Station Airstrip", + "latitude_deg": "71.339245", + "longitude_deg": "-156.635529", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Utqiagvik", + "scheduled_service": "no", + "local_code": "PBA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Point_Barrow_Long_Range_Radar_Site", + "keywords": "A-17, Point Barrow Airport, Barrow Naval Arctic Research Laboratory Airfield" + }, + { + "id": "313159", + "ident": "US-0253", + "type": "small_airport", + "name": "Collensville/twincreek", + "latitude_deg": "62.339363", + "longitude_deg": "-151.475352", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "scheduled_service": "no" + }, + { + "id": "313358", + "ident": "US-0254", + "type": "medium_airport", + "name": "Yuma Auxiliary Army Airfield 2", + "latitude_deg": "32.547501", + "longitude_deg": "-114.511786", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yuma", + "scheduled_service": "no", + "keywords": "yuma" + }, + { + "id": "313484", + "ident": "US-0255", + "type": "closed", + "name": "North Shore Army Airfield", + "latitude_deg": "53.5126", + "longitude_deg": "-167.9218", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fort Glenn", + "scheduled_service": "no" + }, + { + "id": "313485", + "ident": "US-0256", + "type": "small_airport", + "name": "Cape Field at Fort Glenn", + "latitude_deg": "53.38", + "longitude_deg": "-167.8813", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fort Glenn", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cape_Field_at_Fort_Glenn", + "keywords": "Fort Glenn AAB, Otter Point NAF, BPR Ranch, PAUA" + }, + { + "id": "313713", + "ident": "US-0257", + "type": "small_airport", + "name": "Spaceport America", + "latitude_deg": "32.990278", + "longitude_deg": "-106.969722", + "elevation_ft": "4595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Truth or Consequences", + "scheduled_service": "no", + "local_code": "9NM9", + "keywords": "90NM" + }, + { + "id": "351552", + "ident": "US-0258", + "type": "heliport", + "name": "Barsons Utilities Heliport", + "latitude_deg": "32.690669", + "longitude_deg": "-96.9153", + "elevation_ft": "716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "53TX", + "local_code": "53TX" + }, + { + "id": "313525", + "ident": "US-0259", + "type": "heliport", + "name": "Cogdell Memorial Hospital Heliport", + "latitude_deg": "32.68835", + "longitude_deg": "-100.91627", + "elevation_ft": "2332", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Snyder", + "scheduled_service": "no" + }, + { + "id": "313579", + "ident": "US-0260", + "type": "closed", + "name": "San Clemente Naval Auxiliary Air Station", + "latitude_deg": "32.94721", + "longitude_deg": "-118.53085", + "elevation_ft": "924", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "scheduled_service": "no" + }, + { + "id": "313794", + "ident": "US-0261", + "type": "small_airport", + "name": "Matagorda Peninsula Airport", + "latitude_deg": "28.544", + "longitude_deg": "-96.1208", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "scheduled_service": "no" + }, + { + "id": "313795", + "ident": "US-0262", + "type": "small_airport", + "name": "Hewetts Airport", + "latitude_deg": "40.1708", + "longitude_deg": "-99.8171", + "elevation_ft": "2275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Beaver City", + "scheduled_service": "no", + "keywords": "84NE" + }, + { + "id": "313796", + "ident": "US-0263", + "type": "closed", + "name": "Ravenswood Airport", + "latitude_deg": "42.01", + "longitude_deg": "-87.93", + "elevation_ft": "656", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "no" + }, + { + "id": "317160", + "ident": "US-0264", + "type": "heliport", + "name": "Adventist Medical Center Hanford Heliport", + "latitude_deg": "36.3233", + "longitude_deg": "-119.6672", + "elevation_ft": "291", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hanford", + "scheduled_service": "no", + "local_code": "15CN" + }, + { + "id": "313864", + "ident": "US-0265", + "type": "small_airport", + "name": "Tiki Beach Bar & Grill Airstrip", + "latitude_deg": "29.452558", + "longitude_deg": "-94.657393", + "elevation_ft": "1", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crystal Beach", + "scheduled_service": "no" + }, + { + "id": "313931", + "ident": "US-0266", + "type": "closed", + "name": "Old Kona Airport", + "latitude_deg": "19.6448", + "longitude_deg": "-156.0114", + "elevation_ft": "8", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kailua-Kona", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Old_Kona_Airport_State_Recreation_Area" + }, + { + "id": "313932", + "ident": "US-0267", + "type": "closed", + "name": "Morse Field", + "latitude_deg": "18.9163", + "longitude_deg": "-155.6773", + "elevation_ft": "40", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "South Point", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Morse_Field_(Hawaii)", + "keywords": "South Cape Airport, South Point AFS, Ka Lae Military Reservation" + }, + { + "id": "314189", + "ident": "US-0268", + "type": "small_airport", + "name": "Gardiners Island Landing Field", + "latitude_deg": "41.065245", + "longitude_deg": "-72.092242", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "East Hampton", + "scheduled_service": "no" + }, + { + "id": "314191", + "ident": "US-0269", + "type": "closed", + "name": "Cedar Creek Park Major Raoul Lufbery Aerodrome", + "latitude_deg": "40.644907", + "longitude_deg": "-73.506528", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Wantagh", + "scheduled_service": "no" + }, + { + "id": "314822", + "ident": "US-0270", + "type": "closed", + "name": "Stinson Field Municipal Airport", + "latitude_deg": "33.8518", + "longitude_deg": "-88.5878", + "elevation_ft": "261", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Aberdeen", + "scheduled_service": "no", + "local_code": "3A8", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stinson_Field_Municipal_Airport", + "keywords": "Columbus AAAF #7" + }, + { + "id": "314860", + "ident": "US-0271", + "type": "heliport", + "name": "Plum Island Heliport", + "latitude_deg": "41.183222", + "longitude_deg": "-72.188816", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Orient", + "scheduled_service": "no" + }, + { + "id": "315023", + "ident": "US-0272", + "type": "small_airport", + "name": "Old Stevens Village Airport", + "latitude_deg": "66.0090026855", + "longitude_deg": "-149.095993042", + "elevation_ft": "329", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Stevens Village", + "scheduled_service": "no", + "keywords": "SVS" + }, + { + "id": "315548", + "ident": "US-0273", + "type": "closed", + "name": "NAS Squantum", + "latitude_deg": "42.29772", + "longitude_deg": "-71.03371", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Station_Squantum" + }, + { + "id": "315635", + "ident": "US-0274", + "type": "closed", + "name": "Ayresport Airport", + "latitude_deg": "31.6452", + "longitude_deg": "-84.3208", + "elevation_ft": "253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Albany", + "scheduled_service": "no", + "keywords": "52GA" + }, + { + "id": "315636", + "ident": "US-0275", + "type": "closed", + "name": "Taylor Airport", + "latitude_deg": "32.7417", + "longitude_deg": "-99.2977", + "elevation_ft": "1479", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Albany", + "scheduled_service": "no", + "local_code": "6F5" + }, + { + "id": "315647", + "ident": "US-0276", + "type": "closed", + "name": "Coronado Airport", + "latitude_deg": "35.195961", + "longitude_deg": "-106.575619", + "elevation_ft": "5285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "no", + "local_code": "4AC" + }, + { + "id": "315648", + "ident": "US-0277", + "type": "closed", + "name": "Pete's Patch Airport", + "latitude_deg": "42.1338", + "longitude_deg": "-91.5851", + "elevation_ft": "906", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Alburnett", + "scheduled_service": "no", + "keywords": "IA20" + }, + { + "id": "316111", + "ident": "US-0278", + "type": "heliport", + "name": "Williamson Memorial Hospital Helipad", + "latitude_deg": "37.6785", + "longitude_deg": "-82.2725", + "elevation_ft": "863", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Williamson", + "scheduled_service": "no" + }, + { + "id": "316112", + "ident": "US-0279", + "type": "heliport", + "name": "Williamson ARH Hospital Heliport", + "latitude_deg": "37.6766", + "longitude_deg": "-82.2964", + "elevation_ft": "679", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "South Williamson", + "scheduled_service": "no", + "gps_code": "3KY6", + "local_code": "3KY6" + }, + { + "id": "316234", + "ident": "US-0280", + "type": "closed", + "name": "Irvine Airport", + "latitude_deg": "37.7188", + "longitude_deg": "-83.9998", + "elevation_ft": "969", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Irvine", + "scheduled_service": "no", + "local_code": "E17" + }, + { + "id": "316247", + "ident": "US-0281", + "type": "closed", + "name": "Frank Field", + "latitude_deg": "43.6733", + "longitude_deg": "-116.7722", + "elevation_ft": "2327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Caldwell", + "scheduled_service": "no", + "keywords": "01ID, 63U" + }, + { + "id": "316423", + "ident": "US-0282", + "type": "small_airport", + "name": "Larry F Warren Field", + "latitude_deg": "36.090583", + "longitude_deg": "-79.170802", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Efland", + "scheduled_service": "no", + "local_code": "29NC" + }, + { + "id": "316651", + "ident": "US-0283", + "type": "closed", + "name": "Reeves Auxillary Army Airfield #1", + "latitude_deg": "35.4531", + "longitude_deg": "-100.9825", + "elevation_ft": "3260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pampa", + "scheduled_service": "no", + "keywords": "Pampa AFAA#2" + }, + { + "id": "316882", + "ident": "US-0284", + "type": "heliport", + "name": "Circuit of the Americas Heliport", + "latitude_deg": "30.131743", + "longitude_deg": "-97.638357", + "elevation_ft": "511", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Valle", + "scheduled_service": "no" + }, + { + "id": "316884", + "ident": "US-0285", + "type": "small_airport", + "name": "Private strip nr Huntsville", + "latitude_deg": "30.79851", + "longitude_deg": "-95.54221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "scheduled_service": "no" + }, + { + "id": "316885", + "ident": "US-0286", + "type": "small_airport", + "name": "Hodges Airfield", + "latitude_deg": "31.373602", + "longitude_deg": "-93.395117", + "elevation_ft": "432", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Florien", + "scheduled_service": "no" + }, + { + "id": "316887", + "ident": "US-0287", + "type": "small_airport", + "name": "Kurthwood Forest Service Airstrip", + "latitude_deg": "31.31646", + "longitude_deg": "-93.15745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kurthwood", + "scheduled_service": "no" + }, + { + "id": "317161", + "ident": "US-0288", + "type": "heliport", + "name": "Antelope Valley Hospital Medical Center Heliport", + "latitude_deg": "34.6878", + "longitude_deg": "-118.16", + "elevation_ft": "2357", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lancaster", + "scheduled_service": "no" + }, + { + "id": "317162", + "ident": "US-0289", + "type": "heliport", + "name": "New Barstow Community Hospital Heliport", + "latitude_deg": "34.892546", + "longitude_deg": "-117.017782", + "elevation_ft": "2317", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Barstow", + "scheduled_service": "no" + }, + { + "id": "317172", + "ident": "US-0290", + "type": "heliport", + "name": "Clovis Community Medical Center Heliport", + "latitude_deg": "36.8386", + "longitude_deg": "-119.6591", + "elevation_ft": "392", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Clovis", + "scheduled_service": "no", + "gps_code": "19CL", + "local_code": "19CL", + "keywords": "Clovis Community Hospital" + }, + { + "id": "317173", + "ident": "US-0291", + "type": "heliport", + "name": "Doctors Medical Center Heliport", + "latitude_deg": "37.6654", + "longitude_deg": "-120.9975", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Modesto", + "scheduled_service": "no", + "gps_code": "CA14", + "local_code": "CA14" + }, + { + "id": "317200", + "ident": "US-0292", + "type": "heliport", + "name": "Good Samaritan Hospital Heliport", + "latitude_deg": "37.253217", + "longitude_deg": "-121.947479", + "elevation_ft": "298", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Jose", + "scheduled_service": "no" + }, + { + "id": "317201", + "ident": "US-0293", + "type": "heliport", + "name": "Harbor/UCLA Medical Center Heliport", + "latitude_deg": "33.8292", + "longitude_deg": "-118.2926", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Torrance", + "scheduled_service": "no" + }, + { + "id": "317203", + "ident": "US-0294", + "type": "heliport", + "name": "John C. Fremont Hospital Heliport", + "latitude_deg": "37.499753", + "longitude_deg": "-119.977789", + "elevation_ft": "2204", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mariposa", + "scheduled_service": "no", + "gps_code": "CA10", + "local_code": "CA10" + }, + { + "id": "317204", + "ident": "US-0295", + "type": "heliport", + "name": "John Muir Mt. Diablo Medical Center Heliport", + "latitude_deg": "37.9241", + "longitude_deg": "-121.7337", + "elevation_ft": "132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Brentwood", + "scheduled_service": "no" + }, + { + "id": "317205", + "ident": "US-0296", + "type": "heliport", + "name": "Kaiser Permanente Manteca Heliport", + "latitude_deg": "37.7979", + "longitude_deg": "-121.2471", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Manteca", + "scheduled_service": "no", + "local_code": "17CA" + }, + { + "id": "317221", + "ident": "US-0297", + "type": "heliport", + "name": "Kaiser Permanente Medical Center Santa Clara Heliport", + "latitude_deg": "37.334947", + "longitude_deg": "-121.999816", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Clara", + "scheduled_service": "no", + "gps_code": "45CA", + "local_code": "45CA" + }, + { + "id": "317222", + "ident": "US-0298", + "type": "heliport", + "name": "Kaiser Permanente Modesto Heliport", + "latitude_deg": "37.708008", + "longitude_deg": "-121.052821", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Modesto", + "scheduled_service": "no" + }, + { + "id": "317225", + "ident": "US-0299", + "type": "heliport", + "name": "Kaweah Delta District Heliport (A-lll)", + "latitude_deg": "36.3281", + "longitude_deg": "-119.2939", + "elevation_ft": "349", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Visalia", + "scheduled_service": "no", + "home_link": "http://www.kaweahdelta.org/about/news/newsdetail.aspx?a=7113" + }, + { + "id": "6639", + "ident": "US-02AR", + "type": "closed", + "name": "Mount Comfort Airpark", + "latitude_deg": "36.090599", + "longitude_deg": "-94.209602", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Fayetteville", + "scheduled_service": "no", + "keywords": "02AR" + }, + { + "id": "317226", + "ident": "US-0300", + "type": "heliport", + "name": "Kern Valley Hospital Heliport", + "latitude_deg": "35.6345", + "longitude_deg": "-118.4069", + "elevation_ft": "2704", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mountain Mesa", + "scheduled_service": "no" + }, + { + "id": "317228", + "ident": "US-0301", + "type": "heliport", + "name": "Mad River Community Hospital Heliport", + "latitude_deg": "40.895308", + "longitude_deg": "-124.090957", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Arcata", + "scheduled_service": "no" + }, + { + "id": "318123", + "ident": "US-0302", + "type": "small_airport", + "name": "Elgin's Stony Field Airport", + "latitude_deg": "34.778494", + "longitude_deg": "-98.273123", + "elevation_ft": "1275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Elgin", + "scheduled_service": "no", + "gps_code": "OK03", + "local_code": "OK03" + }, + { + "id": "332477", + "ident": "US-0303", + "type": "small_airport", + "name": "Alekat Acres Airport", + "latitude_deg": "40.281036", + "longitude_deg": "-89.313037", + "elevation_ft": "696", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "3IL9", + "local_code": "3IL9" + }, + { + "id": "324090", + "ident": "US-0304", + "type": "small_airport", + "name": "Freeman Swank Farms Airport", + "latitude_deg": "40.59683", + "longitude_deg": "-82.43173", + "elevation_ft": "1071", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Butler", + "scheduled_service": "no", + "gps_code": "0OH5", + "local_code": "0OH5" + }, + { + "id": "324091", + "ident": "US-0305", + "type": "closed", + "name": "Walesboro Airport", + "latitude_deg": "39.142", + "longitude_deg": "-85.925", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Walesboro", + "scheduled_service": "no" + }, + { + "id": "324372", + "ident": "US-0306", + "type": "small_airport", + "name": "Plane Crazy Airport", + "latitude_deg": "30.5460694", + "longitude_deg": "-90.5763333", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "25LA", + "local_code": "25LA" + }, + { + "id": "21502", + "ident": "US-0307", + "type": "closed", + "name": "W & E Air Service Airport", + "latitude_deg": "31.495365", + "longitude_deg": "-91.699582", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Monterey", + "scheduled_service": "no", + "keywords": "LA35" + }, + { + "id": "318211", + "ident": "US-0308", + "type": "heliport", + "name": "Pebbly Beach Seaplane Base Helipad", + "latitude_deg": "33.336686", + "longitude_deg": "-118.311455", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Avalon", + "scheduled_service": "no", + "local_code": "L11" + }, + { + "id": "318234", + "ident": "US-0309", + "type": "small_airport", + "name": "Grebe Lake Airport", + "latitude_deg": "61.559459", + "longitude_deg": "-149.623942", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no", + "gps_code": "AK45", + "local_code": "AK45" + }, + { + "id": "324375", + "ident": "US-0310", + "type": "heliport", + "name": "Jones Regional Medical Center Heliport", + "latitude_deg": "42.100962", + "longitude_deg": "-91.2618444", + "elevation_ft": "838", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Anamosa", + "scheduled_service": "no", + "gps_code": "IA52", + "local_code": "IA52" + }, + { + "id": "319278", + "ident": "US-0311", + "type": "small_airport", + "name": "Vultures Row", + "latitude_deg": "33.340168", + "longitude_deg": "-97.103047", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sangar", + "scheduled_service": "no", + "local_code": "6X8" + }, + { + "id": "331475", + "ident": "US-0312", + "type": "heliport", + "name": "St Mary's Hospital - Franciscan-Skemp Heliport", + "latitude_deg": "43.945044", + "longitude_deg": "-90.814042", + "elevation_ft": "772", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Sparta", + "scheduled_service": "no", + "gps_code": "77WI", + "local_code": "77WI", + "keywords": "WI48, Arcadia" + }, + { + "id": "319280", + "ident": "US-0313", + "type": "small_airport", + "name": "Windmillcreek Airport", + "latitude_deg": "33.309023", + "longitude_deg": "-97.311284", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Krum", + "scheduled_service": "no", + "local_code": "85XA" + }, + { + "id": "319294", + "ident": "US-0314", + "type": "closed", + "name": "Hereford Field", + "latitude_deg": "31.415925", + "longitude_deg": "-110.147806", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Hereford", + "scheduled_service": "no", + "local_code": "01E", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arizona_World_War_II_Army_Airfields", + "keywords": "01e, hereford" + }, + { + "id": "319295", + "ident": "US-0315", + "type": "closed", + "name": "Forrest Field", + "latitude_deg": "31.374521", + "longitude_deg": "-109.67488", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Cochise County", + "scheduled_service": "no" + }, + { + "id": "324377", + "ident": "US-0316", + "type": "heliport", + "name": "Appleton Municipal Hospital Heliport", + "latitude_deg": "45.200273", + "longitude_deg": "-96.007611", + "elevation_ft": "1023", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Appleton", + "scheduled_service": "no", + "gps_code": "3MN3", + "local_code": "3MN3" + }, + { + "id": "324390", + "ident": "US-0317", + "type": "heliport", + "name": "Atwood Helipad", + "latitude_deg": "34.957466", + "longitude_deg": "-96.338358", + "elevation_ft": "799", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Atwood", + "scheduled_service": "no", + "gps_code": "14OK", + "local_code": "14OK" + }, + { + "id": "324391", + "ident": "US-0318", + "type": "small_airport", + "name": "Koch Field", + "latitude_deg": "39.288164", + "longitude_deg": "-103.238618", + "elevation_ft": "5180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Arriba", + "scheduled_service": "no", + "gps_code": "7CO4", + "local_code": "7CO4" + }, + { + "id": "320030", + "ident": "US-0319", + "type": "small_airport", + "name": "Ronnie Cole Airstrip", + "latitude_deg": "39.831008", + "longitude_deg": "-85.72268", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Greenfield", + "scheduled_service": "no" + }, + { + "id": "320031", + "ident": "US-0320", + "type": "small_airport", + "name": "My Place Airport", + "latitude_deg": "40.478828", + "longitude_deg": "-82.943787", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cardington", + "scheduled_service": "no", + "local_code": "3OH7" + }, + { + "id": "324417", + "ident": "US-0321", + "type": "heliport", + "name": "Andre Smith Aviation Heliport", + "latitude_deg": "30.361694", + "longitude_deg": "-91.007294", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no", + "gps_code": "LS32", + "local_code": "LS32" + }, + { + "id": "320812", + "ident": "US-0322", + "type": "closed", + "name": "Camp San Luis Obispo Army Airfield", + "latitude_deg": "35.3321", + "longitude_deg": "-120.7483", + "elevation_ft": "256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Camp San Luis Obispo", + "scheduled_service": "no" + }, + { + "id": "320934", + "ident": "US-0323", + "type": "small_airport", + "name": "Snowshoe Lake Airport and Seaplane Base", + "latitude_deg": "62.0328", + "longitude_deg": "-146.675004", + "elevation_ft": "2418", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Glennallen", + "scheduled_service": "no", + "gps_code": "5AK4", + "local_code": "5AK4" + }, + { + "id": "320958", + "ident": "US-0324", + "type": "seaplane_base", + "name": "Toledo Seaplane Base", + "latitude_deg": "41.622202", + "longitude_deg": "-83.5534", + "elevation_ft": "571", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Toledo", + "scheduled_service": "no", + "local_code": "2C9" + }, + { + "id": "320959", + "ident": "US-0325", + "type": "seaplane_base", + "name": "Steam Boat Bay Seaplane Base", + "latitude_deg": "46.397432", + "longitude_deg": "-94.370505", + "elevation_ft": "1197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "East Gull Lake", + "scheduled_service": "no", + "local_code": "M16" + }, + { + "id": "320960", + "ident": "US-0326", + "type": "seaplane_base", + "name": "Lake Keystone Seaplane Base", + "latitude_deg": "28.1359444", + "longitude_deg": "-82.593975", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Odessa", + "scheduled_service": "no", + "gps_code": "57FL", + "local_code": "57FL" + }, + { + "id": "324418", + "ident": "US-0327", + "type": "heliport", + "name": "Lakewood Health Center Heliport", + "latitude_deg": "48.706388", + "longitude_deg": "-94.601888", + "elevation_ft": "1093", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Baudette", + "scheduled_service": "no", + "gps_code": "34MN", + "local_code": "34MN" + }, + { + "id": "324419", + "ident": "US-0328", + "type": "small_airport", + "name": "Reynolds Ranch Airport", + "latitude_deg": "26.158425", + "longitude_deg": "-97.388688", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bayview", + "scheduled_service": "no", + "gps_code": "73TA", + "local_code": "73TA" + }, + { + "id": "321365", + "ident": "US-0329", + "type": "small_airport", + "name": "Russian Flat Airport", + "latitude_deg": "46.7243111", + "longitude_deg": "-110.4178278", + "elevation_ft": "6336", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Russian Flat", + "scheduled_service": "no", + "local_code": "M42", + "home_link": "http://theraf.org/russian-flat-airstrip" + }, + { + "id": "321265", + "ident": "US-0330", + "type": "heliport", + "name": "Auto Club Speedway Heliport", + "latitude_deg": "34.0874", + "longitude_deg": "-117.50506", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ontario", + "scheduled_service": "no" + }, + { + "id": "321324", + "ident": "US-0331", + "type": "heliport", + "name": "Wilbur Wright Birthplace Heliport", + "latitude_deg": "39.954245", + "longitude_deg": "-85.243602", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hagerstown", + "scheduled_service": "no", + "local_code": "II9", + "home_link": "http://www.wwbirthplace.com/" + }, + { + "id": "321366", + "ident": "US-0332", + "type": "seaplane_base", + "name": "Sage Lake Seaplane Base", + "latitude_deg": "44.351181", + "longitude_deg": "-83.942759", + "elevation_ft": "906", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Hale", + "scheduled_service": "no", + "local_code": "M47" + }, + { + "id": "321417", + "ident": "US-0333", + "type": "small_airport", + "name": "Griffin Field", + "latitude_deg": "44.8677222", + "longitude_deg": "-68.9771056", + "elevation_ft": "322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Levant", + "scheduled_service": "no", + "local_code": "PG1" + }, + { + "id": "321550", + "ident": "US-0334", + "type": "heliport", + "name": "AMITA Health Adventist Medical Center Hinsdale Heliport", + "latitude_deg": "41.805344", + "longitude_deg": "-87.921636", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hinsdale", + "scheduled_service": "no", + "gps_code": "1IL2", + "local_code": "1IL2" + }, + { + "id": "321559", + "ident": "US-0335", + "type": "heliport", + "name": "Midland Memorial Hospital Heliport", + "latitude_deg": "31.9967501", + "longitude_deg": "-102.1009444", + "elevation_ft": "2814", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Midland", + "scheduled_service": "no", + "gps_code": "03TA", + "local_code": "03TA" + }, + { + "id": "321561", + "ident": "US-0336", + "type": "small_airport", + "name": "Big View Airport", + "latitude_deg": "40.764462", + "longitude_deg": "-104.928654", + "elevation_ft": "5600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Carr", + "scheduled_service": "no", + "gps_code": "CO67", + "local_code": "CO67" + }, + { + "id": "321669", + "ident": "US-0337", + "type": "heliport", + "name": "Behring Ranch Heliport", + "latitude_deg": "39.3413112", + "longitude_deg": "-121.9509333", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Colusa", + "scheduled_service": "no", + "gps_code": "3CA3", + "local_code": "3CA3" + }, + { + "id": "324422", + "ident": "US-0338", + "type": "small_airport", + "name": "Brown's Homestead Airport", + "latitude_deg": "61.472911", + "longitude_deg": "-149.98245", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "95AK", + "local_code": "95AK" + }, + { + "id": "321792", + "ident": "US-0339", + "type": "small_airport", + "name": "In the Air Boys Airport", + "latitude_deg": "31.584173", + "longitude_deg": "-100.559373", + "elevation_ft": "2003", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Grape Creek", + "scheduled_service": "no", + "keywords": "Cloud Country" + }, + { + "id": "321829", + "ident": "US-0340", + "type": "small_airport", + "name": "Freps Airport", + "latitude_deg": "35.298118", + "longitude_deg": "-91.582508", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Bald Knob", + "scheduled_service": "no" + }, + { + "id": "321830", + "ident": "US-0341", + "type": "small_airport", + "name": "FFS Field", + "latitude_deg": "35.284432", + "longitude_deg": "-91.535999", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Bald Knob", + "scheduled_service": "no", + "local_code": "FFS" + }, + { + "id": "321831", + "ident": "US-0342", + "type": "small_airport", + "name": "Jps Field", + "latitude_deg": "35.295401", + "longitude_deg": "-91.578227", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Bald Knob, AR", + "scheduled_service": "no", + "local_code": "JPS" + }, + { + "id": "321833", + "ident": "US-0343", + "type": "small_airport", + "name": "Tuckers Field", + "latitude_deg": "35.64057", + "longitude_deg": "-91.865896", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Concord", + "scheduled_service": "no", + "local_code": "TUCK" + }, + { + "id": "321834", + "ident": "US-0344", + "type": "small_airport", + "name": "Elvis1 Field", + "latitude_deg": "35.217525", + "longitude_deg": "-91.647637", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Griffithville", + "scheduled_service": "no", + "keywords": "ELVIS1" + }, + { + "id": "321837", + "ident": "US-0345", + "type": "small_airport", + "name": "Cash field", + "latitude_deg": "35.800059", + "longitude_deg": "-91.030442", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Cash", + "scheduled_service": "no", + "local_code": "CASH" + }, + { + "id": "321838", + "ident": "US-0346", + "type": "small_airport", + "name": "Barbers Lake Field", + "latitude_deg": "35.160699", + "longitude_deg": "-91.53301", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Georgetown", + "scheduled_service": "no", + "keywords": "BARBERL" + }, + { + "id": "321839", + "ident": "US-0347", + "type": "small_airport", + "name": "Falwell Railroad Field", + "latitude_deg": "35.551564", + "longitude_deg": "-91.363072", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Newport", + "scheduled_service": "no", + "local_code": "FALRR" + }, + { + "id": "321841", + "ident": "US-0348", + "type": "small_airport", + "name": "Aubry Field", + "latitude_deg": "34.71968", + "longitude_deg": "-90.891562", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Aubrey", + "scheduled_service": "no", + "local_code": "AUBRY" + }, + { + "id": "321842", + "ident": "US-0349", + "type": "small_airport", + "name": "Aubry Field2", + "latitude_deg": "34.714668", + "longitude_deg": "-90.914616", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Aubrey", + "scheduled_service": "no", + "local_code": "AUBRY2" + }, + { + "id": "321843", + "ident": "US-0350", + "type": "small_airport", + "name": "Bennetts Field", + "latitude_deg": "35.27687", + "longitude_deg": "-91.484762", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Worden", + "scheduled_service": "no" + }, + { + "id": "321848", + "ident": "US-0351", + "type": "small_airport", + "name": "Collisons Field", + "latitude_deg": "35.32093", + "longitude_deg": "-91.512721", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Bald Knob", + "scheduled_service": "no", + "local_code": "COLLISO" + }, + { + "id": "321854", + "ident": "US-0352", + "type": "small_airport", + "name": "England Flying Service Airport", + "latitude_deg": "34.544423", + "longitude_deg": "-91.979719", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "England", + "scheduled_service": "no", + "local_code": "5MZ" + }, + { + "id": "321855", + "ident": "US-0353", + "type": "small_airport", + "name": "Buds Field", + "latitude_deg": "35.316699", + "longitude_deg": "-91.462707", + "elevation_ft": "205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Russell", + "scheduled_service": "no", + "local_code": "BUDS" + }, + { + "id": "321856", + "ident": "US-0354", + "type": "small_airport", + "name": "McConnaughhay's Field", + "latitude_deg": "35.097259", + "longitude_deg": "-91.642198", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Griffithville", + "scheduled_service": "no", + "keywords": "KENS" + }, + { + "id": "321858", + "ident": "US-0355", + "type": "small_airport", + "name": "Reapers Field", + "latitude_deg": "35.327459", + "longitude_deg": "-91.803972", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Albion", + "scheduled_service": "no", + "local_code": "REAPERS" + }, + { + "id": "321859", + "ident": "US-0356", + "type": "small_airport", + "name": "Tupelo Field", + "latitude_deg": "35.41211", + "longitude_deg": "-91.231098", + "elevation_ft": "217", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Tupelo", + "scheduled_service": "no", + "local_code": "TUPELO" + }, + { + "id": "321887", + "ident": "US-0357", + "type": "small_airport", + "name": "Reynolds Field", + "latitude_deg": "35.189439", + "longitude_deg": "-91.068507", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Penrose", + "scheduled_service": "no", + "local_code": "RYNDS" + }, + { + "id": "321914", + "ident": "US-0358", + "type": "seaplane_base", + "name": "Rat Landing Seaplane Base", + "latitude_deg": "36.389984", + "longitude_deg": "-76.911121", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Ahoskie", + "scheduled_service": "no", + "gps_code": "NC18", + "local_code": "NC18" + }, + { + "id": "321916", + "ident": "US-0359", + "type": "seaplane_base", + "name": "Northwoods Romeo Seaplane Base", + "latitude_deg": "45.538057", + "longitude_deg": "-92.024214", + "elevation_ft": "1243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Cumberland", + "scheduled_service": "no", + "gps_code": "4WI3", + "local_code": "4WI3" + }, + { + "id": "321918", + "ident": "US-0360", + "type": "seaplane_base", + "name": "Lakeside Seaplane Base", + "latitude_deg": "28.798054", + "longitude_deg": "-81.647041", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Mount Dora", + "scheduled_service": "no", + "gps_code": "22FL", + "local_code": "22FL" + }, + { + "id": "321921", + "ident": "US-0361", + "type": "seaplane_base", + "name": "Mathieu Landing Seaplane Base", + "latitude_deg": "47.3940723", + "longitude_deg": "-92.4881528", + "elevation_ft": "1342", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Eveleth", + "scheduled_service": "no", + "gps_code": "MN29", + "local_code": "MN29" + }, + { + "id": "321925", + "ident": "US-0362", + "type": "closed", + "name": "Ambersand Beach Seaplane Base", + "latitude_deg": "27.826006", + "longitude_deg": "-80.431299", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sebastian", + "scheduled_service": "no", + "keywords": "81FL" + }, + { + "id": "321926", + "ident": "US-0363", + "type": "seaplane_base", + "name": "Point Seaplane Base", + "latitude_deg": "44.9538889", + "longitude_deg": "-93.5644444", + "elevation_ft": "936", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Orono", + "scheduled_service": "no", + "gps_code": "11MN", + "local_code": "11MN" + }, + { + "id": "321927", + "ident": "US-0364", + "type": "seaplane_base", + "name": "Rising Sun Seaplane Base", + "latitude_deg": "38.9474639", + "longitude_deg": "-84.8509667", + "elevation_ft": "463", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Rising Sun", + "scheduled_service": "no", + "gps_code": "67IN", + "local_code": "67IN" + }, + { + "id": "321928", + "ident": "US-0365", + "type": "seaplane_base", + "name": "Hut Haven Seaplane Base", + "latitude_deg": "43.337701", + "longitude_deg": "-76.726725", + "elevation_ft": "279", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Fair Haven", + "scheduled_service": "no", + "gps_code": "77NY", + "local_code": "77NY", + "keywords": "Dodge Haven SPB, Wolcott" + }, + { + "id": "321929", + "ident": "US-0366", + "type": "seaplane_base", + "name": "Nils Seaplane Base", + "latitude_deg": "41.1700722", + "longitude_deg": "-77.4944778", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lock Haven", + "scheduled_service": "no", + "gps_code": "96PA", + "local_code": "96PA" + }, + { + "id": "321930", + "ident": "US-0367", + "type": "heliport", + "name": "Virginia DMV Headquarters Heliport", + "latitude_deg": "37.56138", + "longitude_deg": "-77.4623878", + "elevation_ft": "201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "7VA7", + "local_code": "7VA7" + }, + { + "id": "321935", + "ident": "US-0368", + "type": "small_airport", + "name": "Evergreen North-South Airpark", + "latitude_deg": "45.631344", + "longitude_deg": "-122.530695", + "elevation_ft": "312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Vancouver", + "scheduled_service": "no", + "gps_code": "WA81", + "local_code": "WA81" + }, + { + "id": "321937", + "ident": "US-0369", + "type": "closed", + "name": "Panama City Beach Airstrip", + "latitude_deg": "30.204029", + "longitude_deg": "-85.820232", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City Beach", + "scheduled_service": "no", + "keywords": "FA07, Buchanan STOLport" + }, + { + "id": "321938", + "ident": "US-0370", + "type": "seaplane_base", + "name": "Cape Air Seaplanes on Boston Harbor Seaplane Base", + "latitude_deg": "42.352502", + "longitude_deg": "-71.025832", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Boston", + "scheduled_service": "no", + "gps_code": "MA87", + "iata_code": "BNH", + "local_code": "MA87" + }, + { + "id": "321951", + "ident": "US-0371", + "type": "small_airport", + "name": "Bells Field", + "latitude_deg": "34.980201", + "longitude_deg": "-91.546", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Des Arc", + "scheduled_service": "no", + "keywords": "BELLS" + }, + { + "id": "321955", + "ident": "US-0372", + "type": "small_airport", + "name": "Stans Field", + "latitude_deg": "34.989705", + "longitude_deg": "-91.257173", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Cotton Plant", + "scheduled_service": "no", + "local_code": "STANS" + }, + { + "id": "321957", + "ident": "US-0373", + "type": "small_airport", + "name": "Mallets Field", + "latitude_deg": "35.211149", + "longitude_deg": "-92.534957", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Greenbrier", + "scheduled_service": "no", + "local_code": "MALLETT" + }, + { + "id": "321963", + "ident": "US-0374", + "type": "small_airport", + "name": "Lesters Field", + "latitude_deg": "35.277262", + "longitude_deg": "-91.341105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Augusta", + "scheduled_service": "no", + "local_code": "LESTER" + }, + { + "id": "321965", + "ident": "US-0375", + "type": "heliport", + "name": "Cimarron Heliport", + "latitude_deg": "36.512708", + "longitude_deg": "-104.924708", + "elevation_ft": "6460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Cimarron", + "scheduled_service": "no", + "local_code": "C12" + }, + { + "id": "321967", + "ident": "US-0376", + "type": "heliport", + "name": "Desoto Heliport", + "latitude_deg": "32.6316611", + "longitude_deg": "-96.8552278", + "elevation_ft": "648", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Desoto", + "scheduled_service": "no", + "local_code": "73T", + "home_link": "http://www.desotoheliport.com/" + }, + { + "id": "321969", + "ident": "US-0377", + "type": "heliport", + "name": "Memorial Medical Center Heliport", + "latitude_deg": "43.957945", + "longitude_deg": "-86.428237", + "elevation_ft": "632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ludington", + "scheduled_service": "no", + "gps_code": "3MI4", + "local_code": "3MI4" + }, + { + "id": "321970", + "ident": "US-0378", + "type": "heliport", + "name": "Amistad North Heliport", + "latitude_deg": "27.271825", + "longitude_deg": "-80.681792", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Okeechobee", + "scheduled_service": "no", + "gps_code": "FD40", + "local_code": "FD40" + }, + { + "id": "321971", + "ident": "US-0379", + "type": "heliport", + "name": "Silverbell Army Heliport", + "latitude_deg": "32.522268", + "longitude_deg": "-111.334291", + "elevation_ft": "1871", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Marana", + "scheduled_service": "no", + "gps_code": "02AZ", + "local_code": "02AZ", + "home_link": "http://www.luke.af.mil/Portals/58/Documents/Silverbell_Heliport_MAL.pdf?ver=2016-03-02-150740-640" + }, + { + "id": "321973", + "ident": "US-0380", + "type": "heliport", + "name": "Amangiri Heliport", + "latitude_deg": "37.0238889", + "longitude_deg": "-111.6168333", + "elevation_ft": "4066", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Big Water", + "scheduled_service": "no", + "gps_code": "UT18", + "local_code": "UT18" + }, + { + "id": "321974", + "ident": "US-0381", + "type": "heliport", + "name": "Loflin Heliport", + "latitude_deg": "45.215164", + "longitude_deg": "-122.865158", + "elevation_ft": "183", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Donald", + "scheduled_service": "no", + "gps_code": "7WA6", + "local_code": "7WA6" + }, + { + "id": "321983", + "ident": "US-0382", + "type": "heliport", + "name": "Lawler Heliport", + "latitude_deg": "42.7490694", + "longitude_deg": "-83.1204083", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Oakland", + "scheduled_service": "no", + "gps_code": "0MI1", + "local_code": "0MI1" + }, + { + "id": "321986", + "ident": "US-0383", + "type": "heliport", + "name": "Mercy Anderson Heliport", + "latitude_deg": "39.085496", + "longitude_deg": "-84.350118", + "elevation_ft": "817", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cincinnati", + "scheduled_service": "no", + "gps_code": "OH37", + "local_code": "OH37" + }, + { + "id": "321995", + "ident": "US-0384", + "type": "small_airport", + "name": "Beacon Station Airport", + "latitude_deg": "35.13047", + "longitude_deg": "-116.20977", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Baker", + "scheduled_service": "no" + }, + { + "id": "321996", + "ident": "US-0385", + "type": "heliport", + "name": "Marine Corps Community Services Barstow Heliport", + "latitude_deg": "34.873565", + "longitude_deg": "-116.954883", + "elevation_ft": "2097", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Barstow", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marine_Corps_Logistics_Base_Barstow" + }, + { + "id": "322005", + "ident": "US-0386", + "type": "heliport", + "name": "Grande Ronde Hospital EMS Heliport", + "latitude_deg": "45.319519", + "longitude_deg": "-118.105363", + "elevation_ft": "2895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "La Grande", + "scheduled_service": "no", + "gps_code": "01OR", + "local_code": "01OR" + }, + { + "id": "322045", + "ident": "US-0387", + "type": "heliport", + "name": "Adventist Health Howard Memorial Heliport", + "latitude_deg": "39.389097", + "longitude_deg": "-123.339297", + "elevation_ft": "1401", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Willits", + "scheduled_service": "no", + "gps_code": "CA02", + "local_code": "CA02", + "keywords": "Frank R Howard Memorial Hospital" + }, + { + "id": "322047", + "ident": "US-0388", + "type": "small_airport", + "name": "Polyanna Ranch Airport", + "latitude_deg": "32.0794444", + "longitude_deg": "-96.7102778", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Blooming Grove", + "scheduled_service": "no", + "gps_code": "4TE1", + "local_code": "4TE1" + }, + { + "id": "322049", + "ident": "US-0389", + "type": "small_airport", + "name": "Indianhead Ranch Airport", + "latitude_deg": "29.6753194", + "longitude_deg": "-100.897194", + "elevation_ft": "1545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no", + "gps_code": "1TS9", + "local_code": "1TS9", + "home_link": "http://indianheadranch.com/" + }, + { + "id": "322050", + "ident": "US-0390", + "type": "small_airport", + "name": "Sunshine Acres Airport", + "latitude_deg": "47.833889", + "longitude_deg": "-117.263611", + "elevation_ft": "2364", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Colbert", + "scheduled_service": "no", + "gps_code": "WA21", + "local_code": "WA21" + }, + { + "id": "322054", + "ident": "US-0391", + "type": "small_airport", + "name": "Stateline Airport", + "latitude_deg": "40.536617", + "longitude_deg": "-80.513076", + "elevation_ft": "1151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hookstown", + "scheduled_service": "no", + "gps_code": "29PA", + "local_code": "29PA" + }, + { + "id": "322055", + "ident": "US-0392", + "type": "heliport", + "name": "Harris Nuclear Plant Heliport", + "latitude_deg": "35.637515", + "longitude_deg": "-78.959566", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "New Hill", + "scheduled_service": "no", + "gps_code": "22NR", + "local_code": "22NR" + }, + { + "id": "322057", + "ident": "US-0393", + "type": "closed", + "name": "Elizabeth James Airport", + "latitude_deg": "40.565017", + "longitude_deg": "-78.355865", + "elevation_ft": "1076", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Altoona", + "scheduled_service": "no", + "keywords": "9PA1" + }, + { + "id": "322061", + "ident": "US-0394", + "type": "heliport", + "name": "Blackberry Ridge Heliport", + "latitude_deg": "41.6934", + "longitude_deg": "-91.5223639", + "elevation_ft": "713", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Iowa City", + "scheduled_service": "no", + "gps_code": "IA03", + "local_code": "IA03" + }, + { + "id": "322062", + "ident": "US-0395", + "type": "small_airport", + "name": "West Wind Airport", + "latitude_deg": "48.453723", + "longitude_deg": "-93.598064", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Littlefork", + "scheduled_service": "no", + "gps_code": "MN23", + "local_code": "MN23" + }, + { + "id": "322064", + "ident": "US-0396", + "type": "heliport", + "name": "Carilion Clinic Heliport", + "latitude_deg": "37.08682", + "longitude_deg": "-80.5062511", + "elevation_ft": "2127", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Christiansburg", + "scheduled_service": "no", + "gps_code": "VA22", + "local_code": "VA22" + }, + { + "id": "322067", + "ident": "US-0397", + "type": "small_airport", + "name": "Heinen Airport", + "latitude_deg": "39.779366", + "longitude_deg": "-96.004127", + "elevation_ft": "1318", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Seneca", + "scheduled_service": "no", + "gps_code": "63KS", + "local_code": "63KS" + }, + { + "id": "322068", + "ident": "US-0398", + "type": "small_airport", + "name": "Pheasant Wings Airport", + "latitude_deg": "34.9526806", + "longitude_deg": "-96.6125278", + "elevation_ft": "987", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Sasakwa", + "scheduled_service": "no", + "gps_code": "26OK", + "local_code": "26OK" + }, + { + "id": "322069", + "ident": "US-0399", + "type": "heliport", + "name": "LaSalle General Hospital Heliport", + "latitude_deg": "31.6938889", + "longitude_deg": "-92.1569444", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Jena", + "scheduled_service": "no" + }, + { + "id": "322093", + "ident": "US-0400", + "type": "small_airport", + "name": "Flugplatz Airport", + "latitude_deg": "38.0248388", + "longitude_deg": "-97.7339389", + "elevation_ft": "1472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Hutchinson", + "scheduled_service": "no", + "gps_code": "30KS", + "local_code": "30KS" + }, + { + "id": "322095", + "ident": "US-0401", + "type": "small_airport", + "name": "Dead Cow Field", + "latitude_deg": "34.758387", + "longitude_deg": "-76.644701", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Beaufort", + "scheduled_service": "no", + "gps_code": "05NC", + "local_code": "05NC" + }, + { + "id": "322096", + "ident": "US-0402", + "type": "small_airport", + "name": "Jalapeno Ranch Airport", + "latitude_deg": "33.860058", + "longitude_deg": "-113.929811", + "elevation_ft": "1090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bouse", + "scheduled_service": "no", + "gps_code": "62AZ", + "local_code": "62AZ", + "keywords": "bouse, jalapeno ranch" + }, + { + "id": "322100", + "ident": "US-0403", + "type": "small_airport", + "name": "Hooks Strip Airport", + "latitude_deg": "43.5922222", + "longitude_deg": "-118.773055", + "elevation_ft": "4133", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Burns", + "scheduled_service": "no", + "gps_code": "OR32", + "local_code": "OR32" + }, + { + "id": "322104", + "ident": "US-0404", + "type": "heliport", + "name": "Centerport Heliport", + "latitude_deg": "33.6716917", + "longitude_deg": "-117.8747611", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Costa Mesa", + "scheduled_service": "no", + "gps_code": "10CL", + "local_code": "10CL" + }, + { + "id": "322106", + "ident": "US-0405", + "type": "heliport", + "name": "North Port Fire Rescue Station 84 Heliport", + "latitude_deg": "27.066541", + "longitude_deg": "-82.162708", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "North Port", + "scheduled_service": "no", + "gps_code": "4FL4", + "local_code": "4FL4" + }, + { + "id": "322107", + "ident": "US-0406", + "type": "heliport", + "name": "Clear Lake Heliport", + "latitude_deg": "37.924833", + "longitude_deg": "-84.395223", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "27KY", + "local_code": "27KY" + }, + { + "id": "322112", + "ident": "US-0407", + "type": "small_airport", + "name": "Jubilee Acres Airport", + "latitude_deg": "27.785393", + "longitude_deg": "-81.65318", + "elevation_ft": "139", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Meade", + "scheduled_service": "no", + "gps_code": "FD10", + "local_code": "FD10" + }, + { + "id": "322115", + "ident": "US-0408", + "type": "small_airport", + "name": "Coose Field", + "latitude_deg": "37.3939486", + "longitude_deg": "-93.9599681", + "elevation_ft": "1082", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lockwood", + "scheduled_service": "no", + "gps_code": "MO95", + "local_code": "MO95" + }, + { + "id": "322130", + "ident": "US-0409", + "type": "small_airport", + "name": "B and S Farms Airfield", + "latitude_deg": "36.6404333", + "longitude_deg": "-94.4893472", + "elevation_ft": "1143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Anderson", + "scheduled_service": "no", + "gps_code": "MO13", + "local_code": "MO13" + }, + { + "id": "322132", + "ident": "US-0410", + "type": "heliport", + "name": "Holzer Athens Heliport", + "latitude_deg": "39.333238", + "longitude_deg": "-82.029195", + "elevation_ft": "614", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Athens", + "scheduled_service": "no", + "gps_code": "3OH3", + "local_code": "3OH3" + }, + { + "id": "322137", + "ident": "US-0411", + "type": "heliport", + "name": "Doctors Hospital Heliport", + "latitude_deg": "33.487583", + "longitude_deg": "-82.095592", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Augusta", + "scheduled_service": "no", + "gps_code": "8GA4", + "local_code": "8GA4", + "keywords": "S Heliport" + }, + { + "id": "322138", + "ident": "US-0412", + "type": "heliport", + "name": "Southlands ER Heliport", + "latitude_deg": "39.60336", + "longitude_deg": "-104.711839", + "elevation_ft": "6052", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Aurora", + "scheduled_service": "no", + "gps_code": "21CO", + "local_code": "21CO", + "home_link": "https://www.parkerhospital.org/pah/specialties/emergency-services/southlands-er/" + }, + { + "id": "322141", + "ident": "US-0413", + "type": "small_airport", + "name": "Rod's Sod Airport", + "latitude_deg": "39.392721", + "longitude_deg": "-81.67205", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Barlow", + "scheduled_service": "no", + "gps_code": "OH55", + "local_code": "OH55" + }, + { + "id": "322142", + "ident": "US-0414", + "type": "heliport", + "name": "Patients Emergency Room Heliport", + "latitude_deg": "29.822253", + "longitude_deg": "-94.902306", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Baytown", + "scheduled_service": "no", + "gps_code": "TX73", + "local_code": "TX73" + }, + { + "id": "322145", + "ident": "US-0415", + "type": "heliport", + "name": "Barbourville ARH Heliport", + "latitude_deg": "36.851594", + "longitude_deg": "-83.869164", + "elevation_ft": "1013", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Barbourville", + "scheduled_service": "no", + "gps_code": "7KY5", + "local_code": "7KY5", + "keywords": "7KY5" + }, + { + "id": "322177", + "ident": "US-0416", + "type": "heliport", + "name": "Stones River Hospital Heliport", + "latitude_deg": "35.831972", + "longitude_deg": "-86.071747", + "elevation_ft": "716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Woodbury", + "scheduled_service": "no", + "gps_code": "TN38", + "local_code": "TN38" + }, + { + "id": "322179", + "ident": "US-0417", + "type": "small_airport", + "name": "Flying V Ranch Airport", + "latitude_deg": "38.918174", + "longitude_deg": "-91.6831", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Williamsburg", + "scheduled_service": "no", + "gps_code": "10MO", + "local_code": "10MO" + }, + { + "id": "322180", + "ident": "US-0418", + "type": "heliport", + "name": "St Clare's Hospital Heliport", + "latitude_deg": "44.889456", + "longitude_deg": "-89.57905", + "elevation_ft": "1282", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Weston", + "scheduled_service": "yes", + "gps_code": "WI88", + "local_code": "WI88" + }, + { + "id": "322183", + "ident": "US-0419", + "type": "closed", + "name": "Zurik STOLport", + "latitude_deg": "40.347006", + "longitude_deg": "-82.777676", + "elevation_ft": "1155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Olive Green", + "scheduled_service": "no", + "keywords": "0OH4" + }, + { + "id": "322190", + "ident": "US-0420", + "type": "heliport", + "name": "Joint Township Memorial Hospital Heliport", + "latitude_deg": "40.544663", + "longitude_deg": "-84.372384", + "elevation_ft": "894", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "St. Marys", + "scheduled_service": "no", + "gps_code": "23OH", + "local_code": "23OH" + }, + { + "id": "322193", + "ident": "US-0421", + "type": "heliport", + "name": "Springfield Regional Medical Center Heliport", + "latitude_deg": "39.928752", + "longitude_deg": "-83.817517", + "elevation_ft": "969", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "pringfield", + "scheduled_service": "no", + "gps_code": "OH81", + "local_code": "OH81" + }, + { + "id": "322198", + "ident": "US-0422", + "type": "small_airport", + "name": "Rocky Point Airport", + "latitude_deg": "34.949258", + "longitude_deg": "-96.614243", + "elevation_ft": "985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Sasakwa", + "scheduled_service": "no", + "gps_code": "90OK", + "local_code": "90OK" + }, + { + "id": "322199", + "ident": "US-0423", + "type": "small_airport", + "name": "BHH Aviation Airport", + "latitude_deg": "36.476016", + "longitude_deg": "-79.595432", + "elevation_ft": "608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Ruffin", + "scheduled_service": "no", + "gps_code": "38NC", + "local_code": "38NC" + }, + { + "id": "322204", + "ident": "US-0424", + "type": "heliport", + "name": "Spectrum Health Reed City Hospital Heliport", + "latitude_deg": "43.878636", + "longitude_deg": "-85.519847", + "elevation_ft": "1065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Reed City", + "scheduled_service": "no", + "gps_code": "33MI", + "local_code": "33MI" + }, + { + "id": "322206", + "ident": "US-0425", + "type": "closed", + "name": "Rockin 7 Ranch Airport", + "latitude_deg": "31.16046", + "longitude_deg": "-96.437469", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Franklin", + "scheduled_service": "no", + "keywords": "09TA" + }, + { + "id": "322207", + "ident": "US-0426", + "type": "small_airport", + "name": "XWind Farm Airport", + "latitude_deg": "33.724417", + "longitude_deg": "-96.298306", + "elevation_ft": "512", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ravenna", + "scheduled_service": "no", + "gps_code": "09TA", + "local_code": "09TA", + "keywords": "https://web.archive.org/web/20150925002817/http://www.airnav.com/airport/09TA" + }, + { + "id": "322208", + "ident": "US-0427", + "type": "small_airport", + "name": "Evan Airport", + "latitude_deg": "30.314672", + "longitude_deg": "-90.907972", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Prairieville", + "scheduled_service": "no" + }, + { + "id": "322211", + "ident": "US-0428", + "type": "small_airport", + "name": "Sanctuary Ranch Airport", + "latitude_deg": "32.056457", + "longitude_deg": "-96.045951", + "elevation_ft": "264", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crossroads", + "scheduled_service": "no", + "gps_code": "7TS4", + "local_code": "7TS4" + }, + { + "id": "322212", + "ident": "US-0429", + "type": "small_airport", + "name": "Linn County Airport", + "latitude_deg": "38.173431", + "longitude_deg": "-94.690325", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Pleasanton", + "scheduled_service": "no", + "local_code": "1KS" + }, + { + "id": "322221", + "ident": "US-0430", + "type": "heliport", + "name": "J&J New Brunswick Helistop", + "latitude_deg": "40.501837", + "longitude_deg": "-74.445735", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "New Brunswick", + "scheduled_service": "no", + "gps_code": "06NJ", + "local_code": "06NJ" + }, + { + "id": "322222", + "ident": "US-0431", + "type": "heliport", + "name": "St. Mary's Good Samaritan Heliport", + "latitude_deg": "38.297222", + "longitude_deg": "-88.937778", + "elevation_ft": "501", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Mt. Vernon", + "scheduled_service": "no", + "gps_code": "4IL6", + "local_code": "4IL6" + }, + { + "id": "322226", + "ident": "US-0432", + "type": "heliport", + "name": "Honeywell Heliport", + "latitude_deg": "40.837083", + "longitude_deg": "-74.476694", + "elevation_ft": "201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Morris Plains", + "scheduled_service": "no", + "gps_code": "12NJ", + "local_code": "12NJ", + "keywords": "Johnson & Johnson Heliport" + }, + { + "id": "322231", + "ident": "US-0433", + "type": "small_airport", + "name": "Barren Creek Field Airport", + "latitude_deg": "38.455384", + "longitude_deg": "-75.797167", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Mardela Springs", + "scheduled_service": "no", + "gps_code": "MD80", + "local_code": "MD80", + "keywords": "55MD" + }, + { + "id": "322238", + "ident": "US-0434", + "type": "heliport", + "name": "UCSD Health System East Campus Interim Heliport", + "latitude_deg": "32.876406", + "longitude_deg": "-117.2210194", + "elevation_ft": "335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "La Jolla", + "scheduled_service": "no", + "gps_code": "52CA", + "local_code": "52CA" + }, + { + "id": "322245", + "ident": "US-0435", + "type": "small_airport", + "name": "Windsor Farms Airport", + "latitude_deg": "35.227514", + "longitude_deg": "-78.817261", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Linden", + "scheduled_service": "no", + "gps_code": "4NC3", + "local_code": "4NC3" + }, + { + "id": "322247", + "ident": "US-0436", + "type": "small_airport", + "name": "Sohler's Holly Hill Airport", + "latitude_deg": "45.413389", + "longitude_deg": "-122.993917", + "elevation_ft": "277", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "OR31", + "local_code": "OR31" + }, + { + "id": "322261", + "ident": "US-0437", + "type": "heliport", + "name": "The Medical Center at Franklin Heliport", + "latitude_deg": "36.700043", + "longitude_deg": "-86.577725", + "elevation_ft": "723", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "81KY", + "local_code": "81KY" + }, + { + "id": "322275", + "ident": "US-0438", + "type": "heliport", + "name": "Benson Heliport", + "latitude_deg": "45.314167", + "longitude_deg": "-95.613889", + "elevation_ft": "1033", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Benson", + "scheduled_service": "no", + "gps_code": "MN84", + "local_code": "MN84" + }, + { + "id": "322278", + "ident": "US-0439", + "type": "small_airport", + "name": "Hallick Farm Airport", + "latitude_deg": "43.099444", + "longitude_deg": "-89.776389", + "elevation_ft": "1097", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Black Earth", + "scheduled_service": "no", + "gps_code": "WI66", + "local_code": "WI66", + "keywords": "Hallick Farm Heliport" + }, + { + "id": "322291", + "ident": "US-0440", + "type": "small_airport", + "name": "Claasen Airport", + "latitude_deg": "33.321666", + "longitude_deg": "-96.324058", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Blue Ridge", + "scheduled_service": "no", + "gps_code": "70TE", + "local_code": "70TE" + }, + { + "id": "322292", + "ident": "US-0441", + "type": "heliport", + "name": "Rigby Field Heliport", + "latitude_deg": "43.922739", + "longitude_deg": "-69.595694", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Boothbay", + "scheduled_service": "no", + "gps_code": "ME44", + "local_code": "ME44" + }, + { + "id": "322294", + "ident": "US-0442", + "type": "small_airport", + "name": "Hefner Farms Airport", + "latitude_deg": "34.603617", + "longitude_deg": "-102.859839", + "elevation_ft": "4159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bovina", + "scheduled_service": "no", + "gps_code": "7TS9", + "local_code": "7TS9" + }, + { + "id": "322295", + "ident": "US-0443", + "type": "heliport", + "name": "Cleveland Clinic, Brunswick Family Health Center Heliport", + "latitude_deg": "41.237698", + "longitude_deg": "-81.815443", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Brunswick", + "scheduled_service": "no", + "gps_code": "04OH", + "local_code": "04OH" + }, + { + "id": "322296", + "ident": "US-0444", + "type": "small_airport", + "name": "Twisted T Field", + "latitude_deg": "30.260228", + "longitude_deg": "-96.597836", + "elevation_ft": "316", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Burton", + "scheduled_service": "no", + "gps_code": "TA42", + "local_code": "TA42" + }, + { + "id": "322302", + "ident": "US-0445", + "type": "small_airport", + "name": "Zoch Airport", + "latitude_deg": "31.193503", + "longitude_deg": "-95.893731", + "elevation_ft": "301", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Centerville", + "scheduled_service": "no", + "gps_code": "70TA", + "local_code": "70TA" + }, + { + "id": "322303", + "ident": "US-0446", + "type": "heliport", + "name": "Chilton County Health Care Authority Heliport", + "latitude_deg": "32.880686", + "longitude_deg": "-86.621082", + "elevation_ft": "683", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Clanton", + "scheduled_service": "no", + "gps_code": "5AL4", + "local_code": "5AL4" + }, + { + "id": "322305", + "ident": "US-0447", + "type": "heliport", + "name": "Eaken's Landing Heliport", + "latitude_deg": "40.862219", + "longitude_deg": "-80.697473", + "elevation_ft": "1167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Columbiana", + "scheduled_service": "no", + "gps_code": "OH02", + "local_code": "OH02" + }, + { + "id": "322306", + "ident": "US-0448", + "type": "heliport", + "name": "Kuhn Heliport", + "latitude_deg": "39.371666", + "longitude_deg": "-78.288612", + "elevation_ft": "977", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Cross Junction", + "scheduled_service": "no", + "gps_code": "4VA2", + "local_code": "4VA2" + }, + { + "id": "322307", + "ident": "US-0449", + "type": "small_airport", + "name": "Lakeview Airport", + "latitude_deg": "37.327", + "longitude_deg": "-86.154755", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Club Run", + "scheduled_service": "no", + "gps_code": "69KY", + "local_code": "69KY" + }, + { + "id": "322316", + "ident": "US-0450", + "type": "heliport", + "name": "Ogburn VFD Heliport", + "latitude_deg": "32.836806", + "longitude_deg": "-95.245914", + "elevation_ft": "472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Winnsboro", + "scheduled_service": "no", + "gps_code": "81TX", + "local_code": "81TX" + }, + { + "id": "322317", + "ident": "US-0451", + "type": "small_airport", + "name": "Renick Field", + "latitude_deg": "38.052222", + "longitude_deg": "-84.219167", + "elevation_ft": "951", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Winchester", + "scheduled_service": "no", + "gps_code": "3KY0", + "local_code": "3KY0" + }, + { + "id": "322318", + "ident": "US-0452", + "type": "small_airport", + "name": "McBee Field", + "latitude_deg": "32.757417", + "longitude_deg": "-96.057222", + "elevation_ft": "543", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wills Point", + "scheduled_service": "no", + "gps_code": "2TS9", + "local_code": "2TS9" + }, + { + "id": "322319", + "ident": "US-0453", + "type": "heliport", + "name": "Texas Health Willow Park Heliport", + "latitude_deg": "32.745222", + "longitude_deg": "-97.661694", + "elevation_ft": "856", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Willow Park", + "scheduled_service": "no", + "gps_code": "8TA4", + "local_code": "8TA4" + }, + { + "id": "322325", + "ident": "US-0454", + "type": "small_airport", + "name": "Pumpkin Patch Field", + "latitude_deg": "34.636768", + "longitude_deg": "-92.217762", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Tafton", + "scheduled_service": "no" + }, + { + "id": "322342", + "ident": "US-0455", + "type": "heliport", + "name": "Avera Dells Area Hospital Heliport", + "latitude_deg": "43.828501", + "longitude_deg": "-96.717278", + "elevation_ft": "1570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Dell Rapids", + "scheduled_service": "no", + "gps_code": "SD22", + "local_code": "SD22" + }, + { + "id": "322345", + "ident": "US-0456", + "type": "small_airport", + "name": "Kadrmas Airport", + "latitude_deg": "46.991308", + "longitude_deg": "-102.795222", + "elevation_ft": "2532", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Dickinson", + "scheduled_service": "no", + "gps_code": "ND10", + "local_code": "ND10" + }, + { + "id": "322346", + "ident": "US-0457", + "type": "small_airport", + "name": "Buck Knob Airport", + "latitude_deg": "44.667861", + "longitude_deg": "-91.891111", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Durand", + "scheduled_service": "no", + "gps_code": "WI74", + "local_code": "WI74" + }, + { + "id": "322347", + "ident": "US-0458", + "type": "heliport", + "name": "Hospitals of Providence Transmountain Campus Heliport", + "latitude_deg": "31.903219", + "longitude_deg": "-106.565189", + "elevation_ft": "4058", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Paso", + "scheduled_service": "no", + "gps_code": "8TE6", + "local_code": "8TE6" + }, + { + "id": "322349", + "ident": "US-0459", + "type": "small_airport", + "name": "Twisted JS Airport", + "latitude_deg": "33.092944", + "longitude_deg": "-96.3900278", + "elevation_ft": "597", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Farmersville", + "scheduled_service": "no", + "local_code": "TX6" + }, + { + "id": "322355", + "ident": "US-0460", + "type": "small_airport", + "name": "Falwell Base", + "latitude_deg": "35.54914", + "longitude_deg": "-91.332981", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Olyphant", + "scheduled_service": "no" + }, + { + "id": "322357", + "ident": "US-0461", + "type": "small_airport", + "name": "Oak Grove Farm Airport", + "latitude_deg": "38.657172", + "longitude_deg": "-75.721508", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Federalsburg", + "scheduled_service": "no", + "gps_code": "5MD4", + "local_code": "5MD4" + }, + { + "id": "322362", + "ident": "US-0462", + "type": "small_airport", + "name": "Mercey Hot Springs Airport", + "latitude_deg": "36.706512", + "longitude_deg": "-120.860132", + "elevation_ft": "1170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Firebaugh", + "scheduled_service": "no", + "gps_code": "CN22", + "local_code": "CN22" + }, + { + "id": "322365", + "ident": "US-0463", + "type": "heliport", + "name": "Medflight 5 Heliport", + "latitude_deg": "40.750947", + "longitude_deg": "-82.723906", + "elevation_ft": "1224", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Galion", + "scheduled_service": "no", + "gps_code": "8OH6", + "local_code": "8OH6" + }, + { + "id": "322366", + "ident": "US-0464", + "type": "small_airport", + "name": "Pharmnall Airport", + "latitude_deg": "32.215381", + "longitude_deg": "-97.140216", + "elevation_ft": "658", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Grandview", + "scheduled_service": "no", + "gps_code": "22TA", + "local_code": "22TA", + "keywords": "https://web.archive.org/web/20170311164723/http://www.airnav.com/airport/22TA" + }, + { + "id": "322368", + "ident": "US-0465", + "type": "small_airport", + "name": "Falwell Freeway", + "latitude_deg": "35.465008", + "longitude_deg": "-91.362532", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Possum Grape", + "scheduled_service": "no", + "gps_code": "FALF", + "local_code": "FALF" + }, + { + "id": "322378", + "ident": "US-0466", + "type": "small_airport", + "name": "Schroeder's Field", + "latitude_deg": "35.071718", + "longitude_deg": "-91.738801", + "elevation_ft": "205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Dogwood", + "scheduled_service": "no", + "keywords": "SCHR" + }, + { + "id": "322436", + "ident": "US-0467", + "type": "closed", + "name": "Fish Hatchery Farm Airport", + "latitude_deg": "46.202222", + "longitude_deg": "-114.11", + "elevation_ft": "3771", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Hamilton", + "scheduled_service": "no", + "keywords": "MT11" + }, + { + "id": "322437", + "ident": "US-0468", + "type": "heliport", + "name": "Volare North Heliport", + "latitude_deg": "44.25054", + "longitude_deg": "-85.724398", + "elevation_ft": "1164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Harrietta", + "scheduled_service": "no", + "gps_code": "3MI1", + "local_code": "3MI1", + "keywords": "Haretta" + }, + { + "id": "322449", + "ident": "US-0469", + "type": "small_airport", + "name": "1904 Private Runway Airport", + "latitude_deg": "36.161543", + "longitude_deg": "-97.861949", + "elevation_ft": "1151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hennessey", + "scheduled_service": "no", + "gps_code": "4OK0", + "local_code": "4OK0" + }, + { + "id": "322450", + "ident": "US-0470", + "type": "small_airport", + "name": "S Bar Ranch Airport", + "latitude_deg": "43.260004", + "longitude_deg": "-115.248611", + "elevation_ft": "5406", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Hill City", + "scheduled_service": "no", + "gps_code": "ID09", + "local_code": "ID09" + }, + { + "id": "322451", + "ident": "US-0471", + "type": "small_airport", + "name": "Smith Airpark", + "latitude_deg": "35.468522", + "longitude_deg": "-98.486925", + "elevation_ft": "1677", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hinton", + "scheduled_service": "no", + "gps_code": "29OK", + "local_code": "29OK" + }, + { + "id": "322461", + "ident": "US-0472", + "type": "heliport", + "name": "Wayne Memorial Hospital Heliport", + "latitude_deg": "41.589835", + "longitude_deg": "-75.261944", + "elevation_ft": "982", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Honesdale", + "scheduled_service": "no", + "gps_code": "7PA7", + "local_code": "7PA7" + }, + { + "id": "322469", + "ident": "US-0473", + "type": "small_airport", + "name": "Hye Airport", + "latitude_deg": "30.2517111", + "longitude_deg": "-98.562438", + "elevation_ft": "1494", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hye", + "scheduled_service": "no", + "gps_code": "0TS0", + "local_code": "0TS0", + "keywords": "https://web.archive.org/web/20170323060345/http://www.airnav.com/airport/0TS0" + }, + { + "id": "322474", + "ident": "US-0474", + "type": "small_airport", + "name": "Rado's Crossing Airport", + "latitude_deg": "41.90555", + "longitude_deg": "-83.6320111", + "elevation_ft": "673", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ida", + "scheduled_service": "no", + "gps_code": "MI12", + "local_code": "MI12" + }, + { + "id": "322475", + "ident": "US-0475", + "type": "heliport", + "name": "International Falls Customs & Border Patrol Heliport", + "latitude_deg": "48.602614", + "longitude_deg": "-93.389669", + "elevation_ft": "1122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "International Falls", + "scheduled_service": "no", + "gps_code": "MN96", + "local_code": "MN96" + }, + { + "id": "322477", + "ident": "US-0476", + "type": "heliport", + "name": "Medflight 9 Heliport", + "latitude_deg": "39.610442", + "longitude_deg": "-83.584972", + "elevation_ft": "1052", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Jeffersonville", + "scheduled_service": "no", + "gps_code": "OH14", + "local_code": "OH14" + }, + { + "id": "322478", + "ident": "US-0477", + "type": "small_airport", + "name": "R and R Airport", + "latitude_deg": "35.561633", + "longitude_deg": "-97.255833", + "elevation_ft": "1101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Jones", + "scheduled_service": "no", + "gps_code": "9OK9", + "local_code": "9OK9" + }, + { + "id": "322480", + "ident": "US-0478", + "type": "small_airport", + "name": "Skyview Ranch Airport", + "latitude_deg": "30.382211", + "longitude_deg": "-99.619264", + "elevation_ft": "2064", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Junction", + "scheduled_service": "no", + "gps_code": "7TA6", + "local_code": "7TA6" + }, + { + "id": "322485", + "ident": "US-0479", + "type": "small_airport", + "name": "Oakfield RLA Airport", + "latitude_deg": "41.846387", + "longitude_deg": "-88.570278", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Kaneville", + "scheduled_service": "no", + "gps_code": "IL85", + "local_code": "IL85" + }, + { + "id": "322491", + "ident": "US-0480", + "type": "heliport", + "name": "Baylor Scott and White Medical Center Heliport", + "latitude_deg": "30.332856", + "longitude_deg": "-97.971756", + "elevation_ft": "1082", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lakeway", + "scheduled_service": "no", + "gps_code": "9TS5", + "local_code": "9TS5" + }, + { + "id": "322493", + "ident": "US-0481", + "type": "small_airport", + "name": "Postoak Airport", + "latitude_deg": "31.301419", + "longitude_deg": "-98.224372", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lampasas", + "scheduled_service": "no", + "gps_code": "76TA", + "local_code": "76TA" + }, + { + "id": "322494", + "ident": "US-0482", + "type": "small_airport", + "name": "Sugar Hollow RLA Airport", + "latitude_deg": "40.129295", + "longitude_deg": "-88.831603", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lane", + "scheduled_service": "no", + "gps_code": "IL27", + "local_code": "IL27" + }, + { + "id": "322503", + "ident": "US-0483", + "type": "closed", + "name": "Reeves Field", + "latitude_deg": "33.75", + "longitude_deg": "-118.257001", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Pedro", + "scheduled_service": "no", + "home_link": "https://web.archive.org/web/20170328030926/http://blogs.dailybreeze.com/history/2015/04/04/reeves-field-on-terminal-island-kept-", + "keywords": "NAB San Pedro, Reeves Field, Terminal Island Airport, Allen Field" + }, + { + "id": "324423", + "ident": "US-0484", + "type": "seaplane_base", + "name": "Haggards Landing Seaplane Base", + "latitude_deg": "61.528024", + "longitude_deg": "-150.014681", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "AK48", + "local_code": "AK48" + }, + { + "id": "322510", + "ident": "US-0485", + "type": "heliport", + "name": "Mountain Point Medical Center Heliport", + "latitude_deg": "40.424595", + "longitude_deg": "-111.877673", + "elevation_ft": "4348", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Lehi", + "scheduled_service": "no", + "local_code": "05M" + }, + { + "id": "322513", + "ident": "US-0486", + "type": "closed", + "name": "Action Aero Airport", + "latitude_deg": "32.636246", + "longitude_deg": "-97.182234", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Arlington", + "scheduled_service": "no", + "keywords": "85TA" + }, + { + "id": "322514", + "ident": "US-0487", + "type": "small_airport", + "name": "Mena Airport", + "latitude_deg": "32.463158", + "longitude_deg": "-97.149856", + "elevation_ft": "639", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lillian", + "scheduled_service": "no", + "gps_code": "85TA", + "local_code": "85TA" + }, + { + "id": "322567", + "ident": "US-0488", + "type": "small_airport", + "name": "Goose Landing Airport", + "latitude_deg": "30.636065", + "longitude_deg": "-90.307628", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Loranger", + "scheduled_service": "no", + "gps_code": "LS26", + "local_code": "LS26" + }, + { + "id": "322568", + "ident": "US-0489", + "type": "small_airport", + "name": "Rememberance Airport", + "latitude_deg": "33.421253", + "longitude_deg": "-101.938542", + "elevation_ft": "3276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lubbock", + "scheduled_service": "no", + "gps_code": "82TE", + "local_code": "82TE" + }, + { + "id": "322571", + "ident": "US-0490", + "type": "small_airport", + "name": "Weitz Airport", + "latitude_deg": "43.594819", + "longitude_deg": "-116.832522", + "elevation_ft": "2289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Marsing", + "scheduled_service": "no", + "gps_code": "ID10", + "local_code": "ID10" + }, + { + "id": "322580", + "ident": "US-0491", + "type": "closed", + "name": "Ferrell Flying Field Heliport", + "latitude_deg": "39.386033", + "longitude_deg": "-84.321342", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mason", + "scheduled_service": "no", + "keywords": "07OH" + }, + { + "id": "322582", + "ident": "US-0492", + "type": "small_airport", + "name": "McClellan Creek Airport", + "latitude_deg": "35.340105", + "longitude_deg": "-100.629575", + "elevation_ft": "2796", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "McLean", + "scheduled_service": "no", + "gps_code": "0TS9", + "local_code": "0TS9" + }, + { + "id": "322583", + "ident": "US-0493", + "type": "heliport", + "name": "Melvin EMS Helipad", + "latitude_deg": "31.198517", + "longitude_deg": "-99.578306", + "elevation_ft": "1836", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Melvin", + "scheduled_service": "no", + "gps_code": "7TS7", + "local_code": "7TS7" + }, + { + "id": "322584", + "ident": "US-0494", + "type": "small_airport", + "name": "Mercury Ranch Airport", + "latitude_deg": "34.192302", + "longitude_deg": "-96.518658", + "elevation_ft": "801", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Milburn", + "scheduled_service": "no", + "gps_code": "2OK1", + "local_code": "2OK1" + }, + { + "id": "322586", + "ident": "US-0495", + "type": "small_airport", + "name": "Stichnoth RLA Airport", + "latitude_deg": "40.613531", + "longitude_deg": "-87.567222", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Milford", + "scheduled_service": "no", + "gps_code": "68IL", + "local_code": "68IL" + }, + { + "id": "322630", + "ident": "US-0496", + "type": "small_airport", + "name": "Sundre Airport", + "latitude_deg": "48.1911667", + "longitude_deg": "-101.202508", + "elevation_ft": "1555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Minot", + "scheduled_service": "no", + "gps_code": "ND36", + "local_code": "ND36" + }, + { + "id": "322631", + "ident": "US-0497", + "type": "small_airport", + "name": "Oliair Airport", + "latitude_deg": "32.256106", + "longitude_deg": "-91.719886", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Winnsboro", + "scheduled_service": "no", + "gps_code": "LS20", + "local_code": "LS20" + }, + { + "id": "322632", + "ident": "US-0498", + "type": "small_airport", + "name": "Oligrow Airport", + "latitude_deg": "32.2962333", + "longitude_deg": "-91.540041", + "elevation_ft": "88", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "LS15", + "local_code": "LS15" + }, + { + "id": "322633", + "ident": "US-0499", + "type": "small_airport", + "name": "Carrar Farm Airport", + "latitude_deg": "41.933778", + "longitude_deg": "-75.873902", + "elevation_ft": "1547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Montrose", + "scheduled_service": "no", + "gps_code": "7PA6", + "local_code": "7PA6" + }, + { + "id": "322637", + "ident": "US-0500", + "type": "small_airport", + "name": "Nettle Creek Landings Airport", + "latitude_deg": "41.432067", + "longitude_deg": "-88.522472", + "elevation_ft": "608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Morris", + "scheduled_service": "no", + "gps_code": "IL68", + "local_code": "IL68" + }, + { + "id": "322638", + "ident": "US-0501", + "type": "heliport", + "name": "S C Johnson Waxdale Heliport", + "latitude_deg": "42.711389", + "longitude_deg": "-87.883889", + "elevation_ft": "679", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Mount Pleasant", + "scheduled_service": "no", + "gps_code": "50WI", + "local_code": "50WI" + }, + { + "id": "322642", + "ident": "US-0502", + "type": "small_airport", + "name": "Kleinik RLA Airport", + "latitude_deg": "39.3830236", + "longitude_deg": "-89.2562542", + "elevation_ft": "668", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Nokomis", + "scheduled_service": "no", + "gps_code": "6IL7", + "local_code": "6IL7" + }, + { + "id": "322643", + "ident": "US-0503", + "type": "heliport", + "name": "Sentara Leigh Hospital Heliport", + "latitude_deg": "36.8512167", + "longitude_deg": "-76.1915417", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Norfolk", + "scheduled_service": "no", + "gps_code": "VA15", + "local_code": "VA15" + }, + { + "id": "322646", + "ident": "US-0504", + "type": "heliport", + "name": "Orlando VA Medical Center Heliport", + "latitude_deg": "28.364", + "longitude_deg": "-81.275192", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "FA75", + "local_code": "FA75" + }, + { + "id": "322648", + "ident": "US-0505", + "type": "closed", + "name": "Flying M Ranch Airport", + "latitude_deg": "45.008023", + "longitude_deg": "-92.594643", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Roberts", + "scheduled_service": "no", + "keywords": "78WI" + }, + { + "id": "322650", + "ident": "US-0506", + "type": "small_airport", + "name": "Dean Schwenk RLA Airport", + "latitude_deg": "39.9168889", + "longitude_deg": "-88.3048333", + "elevation_ft": "693", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pesotum", + "scheduled_service": "no", + "gps_code": "89IL", + "local_code": "89IL" + }, + { + "id": "322659", + "ident": "US-0507", + "type": "closed", + "name": "Natomas Field", + "latitude_deg": "38.638237", + "longitude_deg": "-121.515236", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sacramento", + "scheduled_service": "no", + "keywords": "Q96, 00CL, Branstetter Airport" + }, + { + "id": "322660", + "ident": "US-0508", + "type": "heliport", + "name": "Pipestone County Medical Center Heliport", + "latitude_deg": "43.9902778", + "longitude_deg": "-96.3233333", + "elevation_ft": "1723", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Pipestone", + "scheduled_service": "no", + "gps_code": "96MN", + "local_code": "96MN" + }, + { + "id": "322664", + "ident": "US-0509", + "type": "small_airport", + "name": "Pfau Airstrip", + "latitude_deg": "45.656815", + "longitude_deg": "-93.482312", + "elevation_ft": "997", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "MN68", + "local_code": "MN68" + }, + { + "id": "322668", + "ident": "US-0510", + "type": "small_airport", + "name": "Springhill Field Airport", + "latitude_deg": "43.454168", + "longitude_deg": "-90.427222", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Richland Center", + "scheduled_service": "no", + "gps_code": "7WI7", + "local_code": "7WI7" + }, + { + "id": "322669", + "ident": "US-0511", + "type": "heliport", + "name": "Elk Creek Heliport", + "latitude_deg": "45.2424028", + "longitude_deg": "-116.3286639", + "elevation_ft": "2992", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Riggins", + "scheduled_service": "no", + "gps_code": "11ID", + "local_code": "11ID" + }, + { + "id": "322673", + "ident": "US-0512", + "type": "heliport", + "name": "Ripon Medical Center Heliport", + "latitude_deg": "43.8336944", + "longitude_deg": "-88.8189167", + "elevation_ft": "963", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Ripon", + "scheduled_service": "no", + "gps_code": "70WI", + "local_code": "70WI" + }, + { + "id": "322685", + "ident": "US-0513", + "type": "small_airport", + "name": "Old Valley Airport", + "latitude_deg": "36.32833", + "longitude_deg": "-83.825555", + "elevation_ft": "1168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Sharps Chapel", + "scheduled_service": "no", + "gps_code": "TN13", + "local_code": "TN13" + }, + { + "id": "322686", + "ident": "US-0514", + "type": "heliport", + "name": "Willis-Knighton South Hospital Heliport", + "latitude_deg": "32.402916", + "longitude_deg": "-93.7986944", + "elevation_ft": "213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Shreveport", + "scheduled_service": "no", + "gps_code": "15LA", + "local_code": "15LA" + }, + { + "id": "322687", + "ident": "US-0515", + "type": "small_airport", + "name": "Sunny V Ranch Airport", + "latitude_deg": "29.9323694", + "longitude_deg": "-98.6771167", + "elevation_ft": "1231", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sisterdale", + "scheduled_service": "no", + "gps_code": "7TS3", + "local_code": "7TS3" + }, + { + "id": "322716", + "ident": "US-0516", + "type": "heliport", + "name": "Air Evac 95 Heliport", + "latitude_deg": "32.39214", + "longitude_deg": "-81.751583", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Statesboro", + "scheduled_service": "no", + "gps_code": "GA15", + "local_code": "GA15" + }, + { + "id": "322718", + "ident": "US-0517", + "type": "closed", + "name": "Young's Airport", + "latitude_deg": "31.585", + "longitude_deg": "-83.7291667", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Sumner", + "scheduled_service": "no", + "keywords": "03GA" + }, + { + "id": "322721", + "ident": "US-0518", + "type": "heliport", + "name": "TC Helicopter Heliport", + "latitude_deg": "44.7445139", + "longitude_deg": "-85.7501111", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Traverse City", + "scheduled_service": "no", + "gps_code": "MI94", + "local_code": "MI94" + }, + { + "id": "322745", + "ident": "US-0519", + "type": "heliport", + "name": "Oakwood Southshore Medical Center Heliport", + "latitude_deg": "42.115974", + "longitude_deg": "-83.214669", + "elevation_ft": "589", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Oakwood Southshore Medical Center Heliport", + "scheduled_service": "no", + "gps_code": "0MI8", + "local_code": "0MI8" + }, + { + "id": "322799", + "ident": "US-0520", + "type": "small_airport", + "name": "Delva Field Airport", + "latitude_deg": "32.544452", + "longitude_deg": "-95.67313", + "elevation_ft": "545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Van", + "scheduled_service": "no", + "gps_code": "00TX", + "local_code": "00TX" + }, + { + "id": "322801", + "ident": "US-0521", + "type": "small_airport", + "name": "Ross Airport", + "latitude_deg": "41.2098056", + "longitude_deg": "-82.3561167", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wakeman", + "scheduled_service": "no", + "gps_code": "26OH", + "local_code": "26OH" + }, + { + "id": "322803", + "ident": "US-0522", + "type": "seaplane_base", + "name": "Wayzata Bay Landing Seaplane Base", + "latitude_deg": "44.9538889", + "longitude_deg": "-93.503889", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Wayzata", + "scheduled_service": "no", + "gps_code": "MN37", + "local_code": "MN37" + }, + { + "id": "322804", + "ident": "US-0523", + "type": "heliport", + "name": "Chase Heliport", + "latitude_deg": "41.7896", + "longitude_deg": "-72.799112", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "West Hartford", + "scheduled_service": "no", + "gps_code": "CT04", + "local_code": "CT04" + }, + { + "id": "322805", + "ident": "US-0524", + "type": "small_airport", + "name": "J & H Airport", + "latitude_deg": "35.201725", + "longitude_deg": "-102.1516056", + "elevation_ft": "3903", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wildorado", + "scheduled_service": "no", + "gps_code": "5TS7", + "local_code": "5TS7" + }, + { + "id": "322807", + "ident": "US-0525", + "type": "heliport", + "name": "Windom Area Hospital Heliport", + "latitude_deg": "43.878357", + "longitude_deg": "-95.113219", + "elevation_ft": "1375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Windom", + "scheduled_service": "no", + "gps_code": "MN53", + "local_code": "MN53" + }, + { + "id": "322810", + "ident": "US-0526", + "type": "heliport", + "name": "Elliot Hospital Heliport", + "latitude_deg": "42.984945", + "longitude_deg": "-71.437722", + "elevation_ft": "329", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Manchester", + "scheduled_service": "no", + "gps_code": "NH48", + "local_code": "NH48" + }, + { + "id": "322813", + "ident": "US-0527", + "type": "heliport", + "name": "AdventHealth Zephyrhills Heliport", + "latitude_deg": "28.261934", + "longitude_deg": "-82.185663", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Zephyrhills", + "scheduled_service": "no", + "gps_code": "FD75", + "local_code": "FD75", + "keywords": "Florida Hospital Zephyrhills Heliport" + }, + { + "id": "322820", + "ident": "US-0528", + "type": "heliport", + "name": "Christus Spohn Hospital Alice Heliport", + "latitude_deg": "27.76503", + "longitude_deg": "-98.0409061", + "elevation_ft": "176", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alice", + "scheduled_service": "no", + "gps_code": "TA29", + "local_code": "TA29" + }, + { + "id": "322821", + "ident": "US-0529", + "type": "small_airport", + "name": "Hodges Field Airport", + "latitude_deg": "32.1234861", + "longitude_deg": "-84.1299667", + "elevation_ft": "455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Americus", + "scheduled_service": "no", + "gps_code": "4GA0", + "local_code": "4GA0" + }, + { + "id": "322874", + "ident": "US-0530", + "type": "small_airport", + "name": "Riverbend Ranch Airport", + "latitude_deg": "37.647486", + "longitude_deg": "-96.841453", + "elevation_ft": "1272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Augusta", + "scheduled_service": "no", + "gps_code": "77KS", + "local_code": "77KS" + }, + { + "id": "322877", + "ident": "US-0531", + "type": "closed", + "name": "Sowieja Airport", + "latitude_deg": "44.6344106", + "longitude_deg": "-93.072436", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Farmington", + "scheduled_service": "no", + "keywords": "05MN" + }, + { + "id": "322880", + "ident": "US-0532", + "type": "heliport", + "name": "Christus Spohn Hospital Beeville Heliport", + "latitude_deg": "28.406698", + "longitude_deg": "-97.730864", + "elevation_ft": "221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beeville", + "scheduled_service": "no", + "gps_code": "TA36", + "local_code": "TA36" + }, + { + "id": "322887", + "ident": "US-0533", + "type": "small_airport", + "name": "Arland Airport", + "latitude_deg": "38.968768", + "longitude_deg": "-97.602305", + "elevation_ft": "1352", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Bennington", + "scheduled_service": "no", + "gps_code": "00AR", + "local_code": "00AR" + }, + { + "id": "322902", + "ident": "US-0534", + "type": "small_airport", + "name": "Gaitros STOL Airport", + "latitude_deg": "39.942276", + "longitude_deg": "-88.733277", + "elevation_ft": "683", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Cerro Gordo", + "scheduled_service": "no", + "gps_code": "88IL", + "local_code": "88IL" + }, + { + "id": "322911", + "ident": "US-0535", + "type": "closed", + "name": "Sandy River Federal I Airport", + "latitude_deg": "56.226756", + "longitude_deg": "-160.230109", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "scheduled_service": "no", + "keywords": "KSR" + }, + { + "id": "322912", + "ident": "US-0536", + "type": "closed", + "name": "David River Airport", + "latitude_deg": "55.913896", + "longitude_deg": "-161.638059", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "scheduled_service": "no", + "keywords": "WQW" + }, + { + "id": "322913", + "ident": "US-0537", + "type": "closed", + "name": "Wide Bay Airport", + "latitude_deg": "57.3717", + "longitude_deg": "-156.41851", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "scheduled_service": "no", + "keywords": "WDB" + }, + { + "id": "323094", + "ident": "US-0538", + "type": "heliport", + "name": "Baylor Scott & White Medical Center College Station Heliport", + "latitude_deg": "30.582266", + "longitude_deg": "-96.278122", + "elevation_ft": "298", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "College Station", + "scheduled_service": "no", + "gps_code": "XS73", + "local_code": "XS73" + }, + { + "id": "323161", + "ident": "US-0539", + "type": "heliport", + "name": "Resolute Forest Products Heliport", + "latitude_deg": "33.322434", + "longitude_deg": "-86.35788", + "elevation_ft": "417", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Childersburg", + "scheduled_service": "no", + "local_code": "7AL6" + }, + { + "id": "323166", + "ident": "US-0540", + "type": "heliport", + "name": "South Baldwin Regional Medical Center Heliport", + "latitude_deg": "30.426669", + "longitude_deg": "-87.685113", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Foley", + "scheduled_service": "no", + "gps_code": "3AL4", + "local_code": "3AL4", + "keywords": "Foley Hospital Heliport" + }, + { + "id": "323171", + "ident": "US-0541", + "type": "heliport", + "name": "St Vincent's BLT Heliport", + "latitude_deg": "33.9299", + "longitude_deg": "-86.494813", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Oneonta", + "scheduled_service": "no", + "gps_code": "4AL2", + "local_code": "4AL2" + }, + { + "id": "323181", + "ident": "US-0542", + "type": "heliport", + "name": "Alyeska Resort Heliport", + "latitude_deg": "60.97", + "longitude_deg": "-149.101384", + "elevation_ft": "283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Girdwood", + "scheduled_service": "no", + "gps_code": "AK42", + "local_code": "AK42" + }, + { + "id": "323182", + "ident": "US-0543", + "type": "heliport", + "name": "PRL Logistics Heliport", + "latitude_deg": "60.529526", + "longitude_deg": "-151.256733", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kenai", + "scheduled_service": "no", + "gps_code": "82AK", + "local_code": "82AK" + }, + { + "id": "323183", + "ident": "US-0544", + "type": "heliport", + "name": "McCues Heliport", + "latitude_deg": "55.367488", + "longitude_deg": "-131.715812", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ketchikan", + "scheduled_service": "no", + "gps_code": "8AK4", + "local_code": "8AK4" + }, + { + "id": "323192", + "ident": "US-0545", + "type": "heliport", + "name": "Wolfe Point Heliport", + "latitude_deg": "55.362684", + "longitude_deg": "-131.709103", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ketchikan", + "scheduled_service": "no", + "gps_code": "3AK0", + "local_code": "3AK0" + }, + { + "id": "323195", + "ident": "US-0546", + "type": "heliport", + "name": "Great River Medical Center Heliport", + "latitude_deg": "35.943416", + "longitude_deg": "-89.91775", + "elevation_ft": "254", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Blytheville", + "scheduled_service": "no", + "gps_code": "AR30", + "local_code": "AR30" + }, + { + "id": "323199", + "ident": "US-0547", + "type": "heliport", + "name": "Santa Cruz Valley Regional Hospital Heliport", + "latitude_deg": "31.807352", + "longitude_deg": "-111.009554", + "elevation_ft": "2970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Green Valley", + "scheduled_service": "no", + "gps_code": "AZ69", + "local_code": "AZ69", + "keywords": "Green Valley Hospital" + }, + { + "id": "323202", + "ident": "US-0548", + "type": "heliport", + "name": "Banner Estrella Medical Center Heliport", + "latitude_deg": "33.479027", + "longitude_deg": "-112.256777", + "elevation_ft": "1037", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no", + "local_code": "BE1" + }, + { + "id": "323204", + "ident": "US-0549", + "type": "heliport", + "name": "Pleasant Valley Medical Center Heliport", + "latitude_deg": "34.102413", + "longitude_deg": "-110.960336", + "elevation_ft": "5190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Young", + "scheduled_service": "no", + "gps_code": "AZ11", + "local_code": "AZ11", + "keywords": "az11, young, Pleasant Valley Medical Center" + }, + { + "id": "323225", + "ident": "US-0550", + "type": "heliport", + "name": "Mimbres Memorial Hospital Heliport", + "latitude_deg": "32.259247", + "longitude_deg": "-107.767511", + "elevation_ft": "4315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Deming", + "scheduled_service": "no", + "gps_code": "NM04", + "local_code": "NM04" + }, + { + "id": "323226", + "ident": "US-0551", + "type": "heliport", + "name": "Tristar Horizon FSED Helipad", + "latitude_deg": "36.011243", + "longitude_deg": "-87.329008", + "elevation_ft": "894", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Dickson", + "scheduled_service": "no", + "gps_code": "5TN0", + "local_code": "5TN0" + }, + { + "id": "323227", + "ident": "US-0552", + "type": "closed", + "name": "Franciscan Skemp Mayo Health Systems Heliport", + "latitude_deg": "44.247368", + "longitude_deg": "-91.496704", + "elevation_ft": "747", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Arcadia", + "scheduled_service": "no", + "keywords": "WI48" + }, + { + "id": "323229", + "ident": "US-0553", + "type": "small_airport", + "name": "Younglove/Otterbach Airport", + "latitude_deg": "41.535651", + "longitude_deg": "-88.99904", + "elevation_ft": "694", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Earlville", + "scheduled_service": "no", + "gps_code": "IL55", + "local_code": "IL55" + }, + { + "id": "323230", + "ident": "US-0554", + "type": "small_airport", + "name": "Corn Alley 2 Airport", + "latitude_deg": "40.755681", + "longitude_deg": "-89.016593", + "elevation_ft": "728", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "El Paso", + "scheduled_service": "no", + "gps_code": "74IL", + "local_code": "74IL" + }, + { + "id": "323231", + "ident": "US-0555", + "type": "small_airport", + "name": "Sawtooth Airport", + "latitude_deg": "32.660811", + "longitude_deg": "-111.681486", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Eloy", + "scheduled_service": "no", + "gps_code": "AZ04", + "local_code": "AZ04", + "keywords": "eloy, sawtooth, az04" + }, + { + "id": "323289", + "ident": "US-0556", + "type": "small_airport", + "name": "Flying Gluepie Ranch Airport", + "latitude_deg": "38.467604", + "longitude_deg": "-120.803483", + "elevation_ft": "1451", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fiddletown", + "scheduled_service": "no", + "gps_code": "74CA", + "local_code": "74CA" + }, + { + "id": "323290", + "ident": "US-0557", + "type": "small_airport", + "name": "Joseph Scott Airport", + "latitude_deg": "37.688677", + "longitude_deg": "-90.194266", + "elevation_ft": "1059", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Fredericktown", + "scheduled_service": "no", + "gps_code": "MU22", + "local_code": "MU22", + "keywords": "https://web.archive.org/web/20170519183240/http://www.airnav.com/airport/MU22" + }, + { + "id": "323293", + "ident": "US-0558", + "type": "small_airport", + "name": "Crag Mountain Airport", + "latitude_deg": "61.704033", + "longitude_deg": "-148.908783", + "elevation_ft": "487", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sutton", + "scheduled_service": "no", + "gps_code": "52AK", + "local_code": "52AK" + }, + { + "id": "323294", + "ident": "US-0559", + "type": "closed", + "name": "White Mountain Gateway Airport", + "latitude_deg": "43.820352", + "longitude_deg": "-71.133957", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Freedom", + "scheduled_service": "no", + "keywords": "NH14" + }, + { + "id": "323296", + "ident": "US-0560", + "type": "small_airport", + "name": "Tommy's Field Airport", + "latitude_deg": "36.150833", + "longitude_deg": "-82.6325", + "elevation_ft": "1561", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "4TN5", + "local_code": "4TN5" + }, + { + "id": "323300", + "ident": "US-0561", + "type": "small_airport", + "name": "Sands Airport", + "latitude_deg": "43.8606806", + "longitude_deg": "-116.2627083", + "elevation_ft": "4310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Horseshoe Bend", + "scheduled_service": "no", + "gps_code": "ID67", + "local_code": "ID67" + }, + { + "id": "323332", + "ident": "US-0562", + "type": "small_airport", + "name": "Serenity Field Airport", + "latitude_deg": "30.615509", + "longitude_deg": "-90.536051", + "elevation_ft": "76", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Independence", + "scheduled_service": "no", + "gps_code": "14LA", + "local_code": "14LA", + "keywords": "Evans Field" + }, + { + "id": "324425", + "ident": "US-0563", + "type": "small_airport", + "name": "Happy Landings Airport", + "latitude_deg": "35.371547", + "longitude_deg": "-84.960956", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Birchwood", + "scheduled_service": "no", + "gps_code": "4TN1", + "local_code": "4TN1" + }, + { + "id": "324428", + "ident": "US-0564", + "type": "heliport", + "name": "Horseshoe Heliport", + "latitude_deg": "32.512561", + "longitude_deg": "-93.736322", + "elevation_ft": "168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bossier City", + "scheduled_service": "no", + "gps_code": "LS29", + "local_code": "LS29" + }, + { + "id": "323342", + "ident": "US-0565", + "type": "heliport", + "name": "Christus Spohn Hospital Kingsville Heliport", + "latitude_deg": "27.489274", + "longitude_deg": "-97.850262", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kingsville", + "scheduled_service": "no", + "gps_code": "TA10", + "local_code": "TA10" + }, + { + "id": "323364", + "ident": "US-0566", + "type": "heliport", + "name": "Logan Regional Hospital Heliport", + "latitude_deg": "41.755224", + "longitude_deg": "-111.820633", + "elevation_ft": "4583", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Logan", + "scheduled_service": "no", + "gps_code": "UT06", + "local_code": "UT06" + }, + { + "id": "323366", + "ident": "US-0567", + "type": "heliport", + "name": "Madelia Helipad", + "latitude_deg": "44.043611", + "longitude_deg": "-94.418055", + "elevation_ft": "989", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Madelia", + "scheduled_service": "no", + "gps_code": "44MN", + "local_code": "44MN" + }, + { + "id": "324429", + "ident": "US-0568", + "type": "seaplane_base", + "name": "Tailwind Boston Seaplane Base", + "latitude_deg": "42.351583", + "longitude_deg": "-71.024971", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Boston", + "scheduled_service": "no", + "gps_code": "MA17", + "local_code": "MA17" + }, + { + "id": "324434", + "ident": "US-0569", + "type": "small_airport", + "name": "Fokker Field", + "latitude_deg": "30.591771", + "longitude_deg": "-89.873134", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bush", + "scheduled_service": "no", + "gps_code": "2LA8", + "local_code": "2LA8" + }, + { + "id": "324438", + "ident": "US-0570", + "type": "heliport", + "name": "Kettering Health Greene Memorial Hospital Heliport", + "latitude_deg": "39.699601", + "longitude_deg": "-83.926744", + "elevation_ft": "927", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Xenia", + "scheduled_service": "no", + "gps_code": "69OH", + "local_code": "69OH" + }, + { + "id": "324440", + "ident": "US-0571", + "type": "medium_airport", + "name": "Williston Basin International Airport", + "latitude_deg": "48.258387", + "longitude_deg": "-103.748797", + "elevation_ft": "2344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Williston", + "scheduled_service": "yes", + "gps_code": "KXWA", + "iata_code": "XWA", + "local_code": "XWA", + "home_link": "http://www.xwaproject.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Williston_Basin_International_Airport" + }, + { + "id": "324441", + "ident": "US-0572", + "type": "heliport", + "name": "Wilson Helispot", + "latitude_deg": "45.343307", + "longitude_deg": "-122.697113", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "West Linn", + "scheduled_service": "no", + "gps_code": "57OR", + "local_code": "57OR" + }, + { + "id": "324450", + "ident": "US-0573", + "type": "small_airport", + "name": "Fisch RLA Airport", + "latitude_deg": "41.599583", + "longitude_deg": "-89.599026", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Walnut", + "scheduled_service": "no", + "gps_code": "IL83", + "local_code": "IL83" + }, + { + "id": "324451", + "ident": "US-0574", + "type": "small_airport", + "name": "Wilt RLA Airport", + "latitude_deg": "41.53375", + "longitude_deg": "-89.5525", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Walnut", + "scheduled_service": "no", + "gps_code": "IL76", + "local_code": "IL76" + }, + { + "id": "324452", + "ident": "US-0575", + "type": "heliport", + "name": "Parkview Warsaw Facility Heliport", + "latitude_deg": "41.257995", + "longitude_deg": "-85.828634", + "elevation_ft": "856", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Warsaw", + "scheduled_service": "no", + "gps_code": "5IN8", + "local_code": "5IN8" + }, + { + "id": "324469", + "ident": "US-0576", + "type": "small_airport", + "name": "Spring Creek Ranch Airport", + "latitude_deg": "34.357027", + "longitude_deg": "-96.734861", + "elevation_ft": "933", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tishomingo", + "scheduled_service": "no", + "gps_code": "73OK", + "local_code": "73OK" + }, + { + "id": "324477", + "ident": "US-0577", + "type": "heliport", + "name": "Hillsborough County Fire Rescue Heliport", + "latitude_deg": "27.9699806", + "longitude_deg": "-82.3455833", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tampa", + "scheduled_service": "no", + "gps_code": "FD01", + "local_code": "FD01" + }, + { + "id": "324479", + "ident": "US-0578", + "type": "small_airport", + "name": "Durin RLA Airport", + "latitude_deg": "41.785829", + "longitude_deg": "-89.030097", + "elevation_ft": "824", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Steward", + "scheduled_service": "no", + "gps_code": "IL53", + "local_code": "IL53" + }, + { + "id": "324494", + "ident": "US-0579", + "type": "small_airport", + "name": "Friends Field", + "latitude_deg": "41.481494", + "longitude_deg": "-88.705069", + "elevation_ft": "621", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Serena", + "scheduled_service": "no", + "gps_code": "7IL9", + "local_code": "7IL9", + "keywords": "Rottner Field" + }, + { + "id": "324496", + "ident": "US-0580", + "type": "small_airport", + "name": "Chips Airport", + "latitude_deg": "29.565891", + "longitude_deg": "-98.06058", + "elevation_ft": "573", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seguin", + "scheduled_service": "no", + "gps_code": "TA85", + "local_code": "TA85" + }, + { + "id": "324557", + "ident": "US-0581", + "type": "small_airport", + "name": "Lost Airfield", + "latitude_deg": "30.421204", + "longitude_deg": "-92.234197", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Church Point", + "scheduled_service": "no", + "gps_code": "71LA", + "local_code": "71LA" + }, + { + "id": "324564", + "ident": "US-0582", + "type": "heliport", + "name": "Valley Regional Hospital Heliport", + "latitude_deg": "43.384087", + "longitude_deg": "-72.341546", + "elevation_ft": "594", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Claremont", + "scheduled_service": "no", + "gps_code": "NH97", + "local_code": "NH97" + }, + { + "id": "324570", + "ident": "US-0583", + "type": "small_airport", + "name": "Rancho San Lorenzo Airport", + "latitude_deg": "31.55855", + "longitude_deg": "-106.203631", + "elevation_ft": "3628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Clint", + "scheduled_service": "no", + "gps_code": "TA62", + "local_code": "TA62" + }, + { + "id": "324572", + "ident": "US-0584", + "type": "heliport", + "name": "Dan's Apple Farm Heliport", + "latitude_deg": "42.621535", + "longitude_deg": "-82.8757", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Clinton Township", + "scheduled_service": "no", + "gps_code": "MI21", + "local_code": "MI21" + }, + { + "id": "324577", + "ident": "US-0585", + "type": "heliport", + "name": "Marion General Hospital Heliport", + "latitude_deg": "31.254751", + "longitude_deg": "-89.805308", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "1MS9", + "local_code": "1MS9" + }, + { + "id": "324579", + "ident": "US-0586", + "type": "heliport", + "name": "King Copters Heliport", + "latitude_deg": "46.307638", + "longitude_deg": "-114.111527", + "elevation_ft": "3496", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Corvallis", + "scheduled_service": "no", + "gps_code": "MT59", + "local_code": "MT59" + }, + { + "id": "324589", + "ident": "US-0587", + "type": "small_airport", + "name": "Lone Tree Airport", + "latitude_deg": "45.022277", + "longitude_deg": "-97.844861", + "elevation_ft": "1799", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Crocker", + "scheduled_service": "no", + "gps_code": "SD59", + "local_code": "SD59" + }, + { + "id": "324591", + "ident": "US-0588", + "type": "small_airport", + "name": "K-John Airport", + "latitude_deg": "30.219711", + "longitude_deg": "-92.319794", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Crowley", + "scheduled_service": "no", + "gps_code": "20LS", + "local_code": "20LS", + "keywords": "John Airport" + }, + { + "id": "324601", + "ident": "US-0589", + "type": "small_airport", + "name": "North Fox Island Airport", + "latitude_deg": "45.482269", + "longitude_deg": "-85.780422", + "elevation_ft": "639", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "North Fox Island", + "scheduled_service": "no", + "local_code": "6Y3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fox_Islands_(Michigan)" + }, + { + "id": "324602", + "ident": "US-0590", + "type": "small_airport", + "name": "Bison Hill Airport", + "latitude_deg": "35.158382", + "longitude_deg": "-97.548228", + "elevation_ft": "1304", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Norman", + "scheduled_service": "no", + "gps_code": "80OK", + "local_code": "80OK" + }, + { + "id": "324604", + "ident": "US-0591", + "type": "heliport", + "name": "Franciscan Health Munster Heliport", + "latitude_deg": "41.538333", + "longitude_deg": "-87.514444", + "elevation_ft": "617", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Munster", + "scheduled_service": "no", + "gps_code": "IN40", + "local_code": "IN40", + "keywords": "Franciscan Hospital Munster" + }, + { + "id": "324605", + "ident": "US-0592", + "type": "heliport", + "name": "MidMichigan Health Park Heliport", + "latitude_deg": "43.615276", + "longitude_deg": "-84.75054", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Mt Pleasant", + "scheduled_service": "no", + "gps_code": "1MI7", + "local_code": "1MI7" + }, + { + "id": "324607", + "ident": "US-0593", + "type": "small_airport", + "name": "Lynnhaven Field", + "latitude_deg": "38.331111", + "longitude_deg": "-78.754443", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "McGaheysville", + "scheduled_service": "no", + "gps_code": "VA49", + "local_code": "VA49" + }, + { + "id": "324608", + "ident": "US-0594", + "type": "heliport", + "name": "Potato Pond Heliport", + "latitude_deg": "42.601317", + "longitude_deg": "-84.400793", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Mason", + "scheduled_service": "no", + "gps_code": "MI73", + "local_code": "MI73" + }, + { + "id": "324634", + "ident": "US-0595", + "type": "heliport", + "name": "Desutter Farm Heliport", + "latitude_deg": "40.407341", + "longitude_deg": "-89.737208", + "elevation_ft": "488", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Manito", + "scheduled_service": "no", + "gps_code": "IL49", + "local_code": "IL49" + }, + { + "id": "324635", + "ident": "US-0596", + "type": "heliport", + "name": "Unity Medical Center Heliport", + "latitude_deg": "35.497544", + "longitude_deg": "-86.078634", + "elevation_ft": "1068", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Manchester", + "scheduled_service": "no", + "gps_code": "24TN", + "local_code": "24TN" + }, + { + "id": "324639", + "ident": "US-0597", + "type": "small_airport", + "name": "Big Horn County Airport", + "latitude_deg": "45.744416", + "longitude_deg": "-107.660472", + "elevation_ft": "3025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Hardin", + "scheduled_service": "no", + "local_code": "00U", + "keywords": "Hardin" + }, + { + "id": "324641", + "ident": "US-0598", + "type": "heliport", + "name": "Ronald Reagan UCLA Medical Center Helistop", + "latitude_deg": "34.066739", + "longitude_deg": "-118.446532", + "elevation_ft": "507", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "gps_code": "75CL", + "local_code": "75CL" + }, + { + "id": "337012", + "ident": "US-0599", + "type": "closed", + "name": "Tacna Landing Strip", + "latitude_deg": "32.693674", + "longitude_deg": "-113.960881", + "elevation_ft": "354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tacna", + "scheduled_service": "no" + }, + { + "id": "324645", + "ident": "US-0600", + "type": "small_airport", + "name": "Limerick Airport", + "latitude_deg": "43.6989", + "longitude_deg": "-70.777597", + "elevation_ft": "362", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Limerick", + "scheduled_service": "no", + "keywords": "Limerick Yarn Mills" + }, + { + "id": "324646", + "ident": "US-0601", + "type": "small_airport", + "name": "Stony Mountain Lodge Airport", + "latitude_deg": "61.257089", + "longitude_deg": "-153.797888", + "elevation_ft": "1197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Lime Village", + "scheduled_service": "no", + "gps_code": "AK53", + "local_code": "AK53" + }, + { + "id": "324647", + "ident": "US-0602", + "type": "small_airport", + "name": "Wilkeys Airport", + "latitude_deg": "32.175986", + "longitude_deg": "-95.635514", + "elevation_ft": "463", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Larue", + "scheduled_service": "no", + "gps_code": "TA50", + "local_code": "TA50" + }, + { + "id": "324653", + "ident": "US-0603", + "type": "seaplane_base", + "name": "Halifax River Seaplane Base", + "latitude_deg": "29.241827", + "longitude_deg": "-81.03233", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Holly Hill", + "scheduled_service": "no", + "local_code": "F15" + }, + { + "id": "324654", + "ident": "US-0604", + "type": "heliport", + "name": "HDC1 Heliport", + "latitude_deg": "32.919634", + "longitude_deg": "-97.309771", + "elevation_ft": "774", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "TA92", + "local_code": "TA92" + }, + { + "id": "324655", + "ident": "US-0605", + "type": "heliport", + "name": "Glencoe Regional Health Service Heliport", + "latitude_deg": "44.779044", + "longitude_deg": "-94.153122", + "elevation_ft": "1021", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Glencoe", + "scheduled_service": "no", + "gps_code": "MN82", + "local_code": "MN82" + }, + { + "id": "324656", + "ident": "US-0606", + "type": "small_airport", + "name": "Sword's Landing Airport", + "latitude_deg": "33.150833", + "longitude_deg": "-96.011944", + "elevation_ft": "553", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "77TA", + "local_code": "77TA" + }, + { + "id": "324658", + "ident": "US-0607", + "type": "heliport", + "name": "Guttenberg Municipal Hospital Heliport", + "latitude_deg": "42.786033", + "longitude_deg": "-91.099941", + "elevation_ft": "655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Guttenberg", + "scheduled_service": "no", + "gps_code": "IA60", + "local_code": "IA60" + }, + { + "id": "324676", + "ident": "US-0608", + "type": "small_airport", + "name": "Hazel Green Acres Airport", + "latitude_deg": "34.980471", + "longitude_deg": "-86.692304", + "elevation_ft": "908", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Hazel Green", + "scheduled_service": "no", + "gps_code": "8AL7", + "local_code": "8AL7" + }, + { + "id": "324677", + "ident": "US-0609", + "type": "closed", + "name": "Henry C. Mustin Naval Air Facility", + "latitude_deg": "39.89138", + "longitude_deg": "-75.162376", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Henry_C._Mustin_Naval_Air_Facility", + "keywords": "MUV, KMUV, Mustin Field, Mustin NALF" + }, + { + "id": "331476", + "ident": "US-0610", + "type": "closed", + "name": "Jasper Ridge Ranch Airport", + "latitude_deg": "39.0802", + "longitude_deg": "-104.6798167", + "elevation_ft": "7490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Colorado Springs", + "scheduled_service": "no", + "keywords": "90CO" + }, + { + "id": "324687", + "ident": "US-0611", + "type": "small_airport", + "name": "Haymaker Airport", + "latitude_deg": "36.04699", + "longitude_deg": "-97.8749", + "elevation_ft": "1134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hennessey", + "scheduled_service": "no", + "gps_code": "34OK", + "local_code": "34OK" + }, + { + "id": "324689", + "ident": "US-0612", + "type": "small_airport", + "name": "Hershey Flying Service Field Airport", + "latitude_deg": "41.162433", + "longitude_deg": "-100.97845", + "elevation_ft": "2899", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hershey", + "scheduled_service": "no", + "gps_code": "NE64", + "local_code": "NE64" + }, + { + "id": "324690", + "ident": "US-0613", + "type": "heliport", + "name": "Bell Air Ranch Heliport", + "latitude_deg": "39.180747", + "longitude_deg": "-83.783664", + "elevation_ft": "1023", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "OH41", + "local_code": "OH41" + }, + { + "id": "324692", + "ident": "US-0614", + "type": "heliport", + "name": "Melissa Memorial Hospital Heliport", + "latitude_deg": "40.579207", + "longitude_deg": "-102.289135", + "elevation_ft": "3732", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Holyoke", + "scheduled_service": "no", + "gps_code": "26CO", + "local_code": "26CO" + }, + { + "id": "324699", + "ident": "US-0615", + "type": "closed", + "name": "Lee Field", + "latitude_deg": "43.028826", + "longitude_deg": "-71.642754", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Goffstown", + "scheduled_service": "no", + "keywords": "NH03" + }, + { + "id": "324705", + "ident": "US-0616", + "type": "small_airport", + "name": "Flying M Airport", + "latitude_deg": "34.002175", + "longitude_deg": "-96.7701472", + "elevation_ft": "807", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Kingston", + "scheduled_service": "no", + "gps_code": "12OK", + "local_code": "12OK" + }, + { + "id": "324709", + "ident": "US-0617", + "type": "heliport", + "name": "Golden Nugget Lake Charles Heliport", + "latitude_deg": "30.20253", + "longitude_deg": "-93.2630361", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Charles", + "scheduled_service": "no", + "gps_code": "17LA", + "local_code": "17LA" + }, + { + "id": "324710", + "ident": "US-0618", + "type": "small_airport", + "name": "Red Creek Airport", + "latitude_deg": "62.291829", + "longitude_deg": "-147.405653", + "elevation_ft": "3530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Lake Louise", + "scheduled_service": "no", + "gps_code": "AK80", + "local_code": "AK80" + }, + { + "id": "324711", + "ident": "US-0619", + "type": "closed", + "name": "Wika Airport", + "latitude_deg": "61.038924", + "longitude_deg": "-149.763994", + "elevation_ft": "1148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchorage", + "scheduled_service": "no", + "keywords": "AK80" + }, + { + "id": "324714", + "ident": "US-0620", + "type": "heliport", + "name": "AdventHealth Ocala Heliport", + "latitude_deg": "29.172472", + "longitude_deg": "-82.139111", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ocala", + "scheduled_service": "no", + "gps_code": "57FD", + "local_code": "57FD", + "keywords": "Munroe Regional Medical Center" + }, + { + "id": "324716", + "ident": "US-0621", + "type": "heliport", + "name": "Renville County Regional Hospital Heliport", + "latitude_deg": "44.773658", + "longitude_deg": "-94.9719472", + "elevation_ft": "1081", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Olivia", + "scheduled_service": "no", + "gps_code": "MN64", + "local_code": "MN64" + }, + { + "id": "324717", + "ident": "US-0622", + "type": "heliport", + "name": "Avita Ontario Helipad", + "latitude_deg": "40.7714846", + "longitude_deg": "-82.595058", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ontario", + "scheduled_service": "no", + "gps_code": "96OH", + "local_code": "96OH" + }, + { + "id": "324718", + "ident": "US-0623", + "type": "seaplane_base", + "name": "Lake Meredith Seaplane Base", + "latitude_deg": "38.196313", + "longitude_deg": "-103.693761", + "elevation_ft": "4254", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Ordway", + "scheduled_service": "no", + "local_code": "CO1", + "keywords": "11CO" + }, + { + "id": "324745", + "ident": "US-0624", + "type": "small_airport", + "name": "Saunders Field", + "latitude_deg": "39.793541", + "longitude_deg": "-94.436362", + "elevation_ft": "1042", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Osborn", + "scheduled_service": "no", + "gps_code": "MU31", + "local_code": "MU31" + }, + { + "id": "324749", + "ident": "US-0625", + "type": "heliport", + "name": "Hemi Acres Heliport", + "latitude_deg": "43.041166", + "longitude_deg": "-84.297693", + "elevation_ft": "761", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Owosso", + "scheduled_service": "no", + "gps_code": "7MI4", + "local_code": "7MI4" + }, + { + "id": "324750", + "ident": "US-0626", + "type": "small_airport", + "name": "Musselman Airstrip", + "latitude_deg": "41.51825", + "longitude_deg": "-111.802416", + "elevation_ft": "5505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Paradise", + "scheduled_service": "no", + "gps_code": "UT01", + "local_code": "UT01" + }, + { + "id": "324802", + "ident": "US-0627", + "type": "small_airport", + "name": "Haymaker Private Airport", + "latitude_deg": "36.0539972", + "longitude_deg": "-97.8423583", + "elevation_ft": "1178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Dover", + "scheduled_service": "no", + "gps_code": "35OK", + "local_code": "35OK" + }, + { + "id": "324804", + "ident": "US-0628", + "type": "small_airport", + "name": "Heyoka Field", + "latitude_deg": "44.742138", + "longitude_deg": "-91.58536", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Eau Claire", + "scheduled_service": "no", + "gps_code": "53WI", + "local_code": "53WI" + }, + { + "id": "324806", + "ident": "US-0629", + "type": "small_airport", + "name": "Squadron Field", + "latitude_deg": "37.4611", + "longitude_deg": "-95.242088", + "elevation_ft": "947", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Erie", + "scheduled_service": "no", + "local_code": "11K", + "keywords": "11KS" + }, + { + "id": "324817", + "ident": "US-0630", + "type": "small_airport", + "name": "The Flying W Ranch Airport", + "latitude_deg": "34.176624", + "longitude_deg": "-83.936177", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Flowery Branch", + "scheduled_service": "no", + "gps_code": "GA01", + "local_code": "GA01" + }, + { + "id": "324820", + "ident": "US-0631", + "type": "small_airport", + "name": "Papp Airpark", + "latitude_deg": "43.251894", + "longitude_deg": "-73.563155", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Fort Edward", + "scheduled_service": "no", + "gps_code": "16NY", + "local_code": "16NY" + }, + { + "id": "324821", + "ident": "US-0632", + "type": "heliport", + "name": "Centracare Health Paynesville Heliport", + "latitude_deg": "45.373949", + "longitude_deg": "-94.716324", + "elevation_ft": "1179", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Paynesville", + "scheduled_service": "no", + "gps_code": "MN72", + "local_code": "MN72" + }, + { + "id": "324822", + "ident": "US-0633", + "type": "heliport", + "name": "Tsam Heliport", + "latitude_deg": "43.132266", + "longitude_deg": "-71.439537", + "elevation_ft": "302", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Pembroke", + "scheduled_service": "no", + "gps_code": "NH25", + "local_code": "NH25" + }, + { + "id": "324832", + "ident": "US-0634", + "type": "seaplane_base", + "name": "Emma's Bay Seaplane Base", + "latitude_deg": "46.631942", + "longitude_deg": "-94.20092", + "elevation_ft": "1206", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Pequot Lakes", + "scheduled_service": "no", + "gps_code": "2MN5", + "local_code": "2MN5" + }, + { + "id": "324842", + "ident": "US-0635", + "type": "heliport", + "name": "Highland Community Hospital Heliport", + "latitude_deg": "30.549252", + "longitude_deg": "-89.665883", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Picayune", + "scheduled_service": "no", + "gps_code": "2MS2", + "local_code": "2MS2" + }, + { + "id": "324847", + "ident": "US-0636", + "type": "heliport", + "name": "Richardson Regional Heliport - Campbell Road", + "latitude_deg": "32.975133", + "longitude_deg": "-96.726069", + "elevation_ft": "652", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Richardson", + "scheduled_service": "no", + "gps_code": "TA99", + "local_code": "TA99", + "keywords": "04XA" + }, + { + "id": "324848", + "ident": "US-0637", + "type": "small_airport", + "name": "Peltz Field", + "latitude_deg": "43.265972", + "longitude_deg": "-94.562508", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Ringsted", + "scheduled_service": "no", + "local_code": "8Y8", + "keywords": "2IA7" + }, + { + "id": "324852", + "ident": "US-0638", + "type": "small_airport", + "name": "Dusty Wings Field", + "latitude_deg": "32.786336", + "longitude_deg": "-113.9386", + "elevation_ft": "289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wellton", + "scheduled_service": "no", + "gps_code": "AZ06", + "local_code": "AZ06", + "keywords": "az06, wellton, dusty wings" + }, + { + "id": "324854", + "ident": "US-0639", + "type": "small_airport", + "name": "Krause Airport", + "latitude_deg": "41.29314", + "longitude_deg": "-99.37475", + "elevation_ft": "2363", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Ansley", + "scheduled_service": "no", + "gps_code": "NE45", + "local_code": "NE45" + }, + { + "id": "324856", + "ident": "US-0640", + "type": "small_airport", + "name": "Forseth Field", + "latitude_deg": "43.091569", + "longitude_deg": "-89.997986", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Arena", + "scheduled_service": "no", + "gps_code": "WI61", + "local_code": "WI61" + }, + { + "id": "324857", + "ident": "US-0641", + "type": "heliport", + "name": "Ridgeview Sibley Medical Center Heliport", + "latitude_deg": "44.61109", + "longitude_deg": "-94.084717", + "elevation_ft": "1004", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "6MN1", + "local_code": "6MN1" + }, + { + "id": "324860", + "ident": "US-0642", + "type": "small_airport", + "name": "Malinchak Private Airport", + "latitude_deg": "35.796263", + "longitude_deg": "-96.428147", + "elevation_ft": "906", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Bristow", + "scheduled_service": "no", + "gps_code": "OK69", + "local_code": "OK69" + }, + { + "id": "324865", + "ident": "US-0643", + "type": "small_airport", + "name": "Stockwell Field", + "latitude_deg": "39.714315", + "longitude_deg": "-93.14018", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Brookfield", + "scheduled_service": "no", + "gps_code": "MU03", + "local_code": "MU03" + }, + { + "id": "324867", + "ident": "US-0644", + "type": "heliport", + "name": "Dotlich Heliport", + "latitude_deg": "39.821563", + "longitude_deg": "-86.42773", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Brownsburg", + "scheduled_service": "no", + "gps_code": "IN77", + "local_code": "IN77" + }, + { + "id": "324873", + "ident": "US-0645", + "type": "small_airport", + "name": "Slate River Airpark", + "latitude_deg": "37.544271", + "longitude_deg": "-78.586836", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Buckingham", + "scheduled_service": "no", + "gps_code": "8VA1", + "local_code": "8VA1", + "keywords": "Slate River Ranch" + }, + { + "id": "324875", + "ident": "US-0646", + "type": "heliport", + "name": "Fairview Ridges Hospital Heliport", + "latitude_deg": "44.747319", + "longitude_deg": "-93.27278", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Burnsville", + "scheduled_service": "no", + "gps_code": "1MN1", + "local_code": "1MN1" + }, + { + "id": "324876", + "ident": "US-0647", + "type": "closed", + "name": "Hagemeyer Airport", + "latitude_deg": "39.44358", + "longitude_deg": "-84.042988", + "elevation_ft": "936", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Oregonia", + "scheduled_service": "no", + "keywords": "0OH5" + }, + { + "id": "324882", + "ident": "US-0648", + "type": "small_airport", + "name": "Shockly Field", + "latitude_deg": "33.612916", + "longitude_deg": "-88.368611", + "elevation_ft": "242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Caledonia", + "scheduled_service": "no", + "gps_code": "2MS3", + "local_code": "2MS3" + }, + { + "id": "324893", + "ident": "US-0649", + "type": "small_airport", + "name": "Martin Ranch Airport", + "latitude_deg": "29.712308", + "longitude_deg": "-100.584071", + "elevation_ft": "1718", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rocksprings", + "scheduled_service": "no", + "local_code": "65TS" + }, + { + "id": "324899", + "ident": "US-0650", + "type": "heliport", + "name": "Mercy Health Cassville Heliport", + "latitude_deg": "36.675236", + "longitude_deg": "-93.872200314", + "elevation_ft": "1314", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Cassville", + "scheduled_service": "no", + "local_code": "MU28" + }, + { + "id": "324900", + "ident": "US-0651", + "type": "small_airport", + "name": "El Tesoro Ranch Airport", + "latitude_deg": "28.662641", + "longitude_deg": "-98.723095", + "elevation_ft": "334", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Charlotte", + "scheduled_service": "no", + "gps_code": "02TS", + "local_code": "02TS" + }, + { + "id": "324916", + "ident": "US-0652", + "type": "heliport", + "name": "Rotary Run Heliport", + "latitude_deg": "40.605805", + "longitude_deg": "-81.415002", + "elevation_ft": "1027", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Zoar", + "scheduled_service": "no", + "local_code": "0OH2" + }, + { + "id": "324917", + "ident": "US-0653", + "type": "heliport", + "name": "Zeeland Community Hospital Heliport", + "latitude_deg": "42.820455", + "longitude_deg": "-85.989075", + "elevation_ft": "694", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Zeeland", + "scheduled_service": "no", + "local_code": "MI51" + }, + { + "id": "324919", + "ident": "US-0654", + "type": "small_airport", + "name": "Northwood Airstrip", + "latitude_deg": "43.563054", + "longitude_deg": "-90.285", + "elevation_ft": "1275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wonewoc", + "scheduled_service": "no", + "gps_code": "WI54", + "local_code": "WI54" + }, + { + "id": "324921", + "ident": "US-0655", + "type": "small_airport", + "name": "Davis Field", + "latitude_deg": "37.255011", + "longitude_deg": "-96.960372", + "elevation_ft": "1212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Winfield", + "scheduled_service": "no", + "local_code": "11KS", + "keywords": "2KS4, 00FD" + }, + { + "id": "324925", + "ident": "US-0656", + "type": "small_airport", + "name": "McMaster Gliderport", + "latitude_deg": "37.761289", + "longitude_deg": "-97.177341", + "elevation_ft": "1403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wichita", + "scheduled_service": "no", + "gps_code": "29KS", + "local_code": "29KS" + }, + { + "id": "324938", + "ident": "US-0657", + "type": "small_airport", + "name": "Erickson Intergalactic Airport", + "latitude_deg": "43.584909", + "longitude_deg": "-96.517555", + "elevation_ft": "1440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Valley Springs", + "scheduled_service": "no", + "gps_code": "SD73", + "local_code": "SD73" + }, + { + "id": "324941", + "ident": "US-0658", + "type": "small_airport", + "name": "Weiss Acres Airport", + "latitude_deg": "37.524327", + "longitude_deg": "-97.603186", + "elevation_ft": "1302", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Viola", + "scheduled_service": "no", + "gps_code": "24KS", + "local_code": "24KS" + }, + { + "id": "324947", + "ident": "US-0659", + "type": "heliport", + "name": "South Lake Hospital Main Campus Heliport", + "latitude_deg": "28.553163", + "longitude_deg": "-81.720461", + "elevation_ft": "291", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Clermont", + "scheduled_service": "no", + "gps_code": "FA82", + "local_code": "FA82" + }, + { + "id": "324965", + "ident": "US-0660", + "type": "small_airport", + "name": "Brandes Air Field 2", + "latitude_deg": "29.85693", + "longitude_deg": "-96.139293", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sealy", + "scheduled_service": "no", + "gps_code": "90TS", + "local_code": "90TS" + }, + { + "id": "324967", + "ident": "US-0661", + "type": "small_airport", + "name": "Chandler Ranch Airport", + "latitude_deg": "30.456653", + "longitude_deg": "-101.736402", + "elevation_ft": "1929", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanderson", + "scheduled_service": "no", + "local_code": "3TA1" + }, + { + "id": "324986", + "ident": "US-0662", + "type": "small_airport", + "name": "Dennys Playground Airport", + "latitude_deg": "42.304856", + "longitude_deg": "-98.124898", + "elevation_ft": "1904", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Royal", + "scheduled_service": "no", + "gps_code": "NE51", + "local_code": "NE51" + }, + { + "id": "324988", + "ident": "US-0663", + "type": "seaplane_base", + "name": "Hurley Memorial Seaport", + "latitude_deg": "43.566666", + "longitude_deg": "-95.440277", + "elevation_ft": "1523", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Round Lake", + "scheduled_service": "no", + "gps_code": "74MN", + "local_code": "74MN" + }, + { + "id": "325016", + "ident": "US-0664", + "type": "heliport", + "name": "Gifford Memorial Hospital Heliport", + "latitude_deg": "43.917194", + "longitude_deg": "-72.665972", + "elevation_ft": "746", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Randolph", + "scheduled_service": "no", + "local_code": "VT95" + }, + { + "id": "325023", + "ident": "US-0665", + "type": "small_airport", + "name": "Rancho Deluxe Airport", + "latitude_deg": "31.936408", + "longitude_deg": "-98.3456028", + "elevation_ft": "1381", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Edna Hill", + "scheduled_service": "no", + "gps_code": "81TS", + "local_code": "81TS" + }, + { + "id": "325025", + "ident": "US-0666", + "type": "heliport", + "name": "Barber Marina Heliport", + "latitude_deg": "30.31545", + "longitude_deg": "-87.572375", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Elberta", + "scheduled_service": "no", + "gps_code": "1AL9", + "local_code": "1AL9" + }, + { + "id": "331657", + "ident": "US-0667", + "type": "small_airport", + "name": "Sheridan Field", + "latitude_deg": "36.285449", + "longitude_deg": "-98.022917", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Drummond", + "scheduled_service": "no", + "gps_code": "OK99", + "local_code": "OK99" + }, + { + "id": "325030", + "ident": "US-0668", + "type": "seaplane_base", + "name": "Wildhurst Pines Seaplane Base", + "latitude_deg": "44.917519", + "longitude_deg": "-93.608201", + "elevation_ft": "928", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Excelsior", + "scheduled_service": "no", + "gps_code": "1MN4", + "local_code": "1MN4" + }, + { + "id": "325032", + "ident": "US-0669", + "type": "heliport", + "name": "Mercy Fairfield Hospital Heliport", + "latitude_deg": "39.311776", + "longitude_deg": "-84.518149", + "elevation_ft": "868", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "5OH7", + "local_code": "5OH7" + }, + { + "id": "325033", + "ident": "US-0670", + "type": "small_airport", + "name": "Fairmount Airport", + "latitude_deg": "31.218655", + "longitude_deg": "-93.701897", + "elevation_ft": "211", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fairmount", + "scheduled_service": "no", + "gps_code": "71TS", + "local_code": "71TS" + }, + { + "id": "325046", + "ident": "US-0671", + "type": "small_airport", + "name": "Glass Ranch Airport", + "latitude_deg": "31.769777", + "longitude_deg": "-101.310836", + "elevation_ft": "2687", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garden City", + "scheduled_service": "no", + "gps_code": "TS13", + "local_code": "TS13" + }, + { + "id": "325048", + "ident": "US-0672", + "type": "small_airport", + "name": "Hibbs Airport", + "latitude_deg": "43.665112", + "longitude_deg": "-116.858425", + "elevation_ft": "2446", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Greenleaf", + "scheduled_service": "no", + "gps_code": "ID97", + "local_code": "ID97" + }, + { + "id": "325065", + "ident": "US-0673", + "type": "heliport", + "name": "Novant Health UVA Haymarket Medical Center Heliport", + "latitude_deg": "38.819955", + "longitude_deg": "-77.641252", + "elevation_ft": "364", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Haymarket", + "scheduled_service": "no", + "gps_code": "45VA", + "local_code": "45VA" + }, + { + "id": "325068", + "ident": "US-0674", + "type": "small_airport", + "name": "Rollers Airport", + "latitude_deg": "36.155363", + "longitude_deg": "-97.848344", + "elevation_ft": "1103", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hennessey", + "scheduled_service": "no", + "gps_code": "OK48", + "local_code": "OK48" + }, + { + "id": "325070", + "ident": "US-0675", + "type": "small_airport", + "name": "Bethel Field", + "latitude_deg": "35.518193", + "longitude_deg": "-98.466788", + "elevation_ft": "1616", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hinton", + "scheduled_service": "no", + "gps_code": "OK61", + "local_code": "OK61" + }, + { + "id": "325071", + "ident": "US-0676", + "type": "small_airport", + "name": "Canadian River Corrientes Airport", + "latitude_deg": "35.539377", + "longitude_deg": "-98.430188", + "elevation_ft": "1534", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hinton", + "scheduled_service": "no", + "gps_code": "OK10", + "local_code": "OK10" + }, + { + "id": "325073", + "ident": "US-0677", + "type": "small_airport", + "name": "Ricker Ranch Airport", + "latitude_deg": "35.475144", + "longitude_deg": "-98.451627", + "elevation_ft": "1665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hinton", + "scheduled_service": "no", + "gps_code": "46OK", + "local_code": "46OK" + }, + { + "id": "325074", + "ident": "US-0678", + "type": "small_airport", + "name": "Riegleman Field", + "latitude_deg": "43.338527", + "longitude_deg": "-88.558332", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Hustisford", + "scheduled_service": "no", + "gps_code": "58WI", + "local_code": "58WI" + }, + { + "id": "325076", + "ident": "US-0679", + "type": "small_airport", + "name": "Entz Arts Airport", + "latitude_deg": "35.449911", + "longitude_deg": "-98.586214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hydro", + "scheduled_service": "no", + "gps_code": "16OK" + }, + { + "id": "325077", + "ident": "US-0680", + "type": "small_airport", + "name": "Wheeler Landing Strip", + "latitude_deg": "35.301502", + "longitude_deg": "-98.588785", + "elevation_ft": "1442", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Eakly", + "scheduled_service": "no" + }, + { + "id": "325082", + "ident": "US-0681", + "type": "heliport", + "name": "Bankhead Dam Heliport", + "latitude_deg": "33.454822", + "longitude_deg": "-87.360652", + "elevation_ft": "376", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Northport", + "scheduled_service": "no", + "local_code": "4AL0" + }, + { + "id": "325095", + "ident": "US-0682", + "type": "small_airport", + "name": "J5 Mike Airport", + "latitude_deg": "34.666347", + "longitude_deg": "-86.222286", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Woodville", + "scheduled_service": "no", + "gps_code": "4AL5", + "local_code": "4AL5" + }, + { + "id": "325099", + "ident": "US-0683", + "type": "heliport", + "name": "Montgomery Crew Headquarters Heliport", + "latitude_deg": "32.409235", + "longitude_deg": "-86.256073", + "elevation_ft": "186", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Montgomery", + "scheduled_service": "no", + "gps_code": "1AL3", + "local_code": "1AL3" + }, + { + "id": "325102", + "ident": "US-0684", + "type": "heliport", + "name": "Plant Franklin Heliport", + "latitude_deg": "32.607531", + "longitude_deg": "-85.094584", + "elevation_ft": "523", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Smiths Station", + "scheduled_service": "no", + "gps_code": "2AL0", + "local_code": "2AL0" + }, + { + "id": "325106", + "ident": "US-0685", + "type": "small_airport", + "name": "Rocky Springs Airpark", + "latitude_deg": "33.988596", + "longitude_deg": "-87.077074", + "elevation_ft": "649", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Bremen", + "scheduled_service": "no", + "gps_code": "AL30", + "local_code": "AL30" + }, + { + "id": "325109", + "ident": "US-0686", + "type": "small_airport", + "name": "Treeo Airport", + "latitude_deg": "30.591805", + "longitude_deg": "-87.822583", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Daphne", + "scheduled_service": "no", + "gps_code": "4AL3", + "local_code": "4AL3" + }, + { + "id": "325114", + "ident": "US-0687", + "type": "heliport", + "name": "Bach Helipad", + "latitude_deg": "64.83085", + "longitude_deg": "-147.66045", + "elevation_ft": "453", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fort Wainwright", + "scheduled_service": "no", + "gps_code": "8AK0", + "local_code": "8AK0" + }, + { + "id": "325123", + "ident": "US-0688", + "type": "small_airport", + "name": "Fireweed Airport", + "latitude_deg": "61.42687", + "longitude_deg": "-142.97823", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "McCarthy", + "scheduled_service": "no", + "gps_code": "0AK8", + "local_code": "0AK8", + "keywords": "Iverson Farm Airport" + }, + { + "id": "325159", + "ident": "US-0689", + "type": "small_airport", + "name": "Entz Home Airport", + "latitude_deg": "35.50288", + "longitude_deg": "-98.5375167", + "elevation_ft": "1613", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hydro", + "scheduled_service": "no", + "gps_code": "1OK2", + "local_code": "1OK2" + }, + { + "id": "325163", + "ident": "US-0690", + "type": "small_airport", + "name": "Entz Oliver Airport", + "latitude_deg": "35.522072", + "longitude_deg": "-98.523183", + "elevation_ft": "1570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hydro", + "scheduled_service": "no", + "gps_code": "1OK6", + "local_code": "1OK6" + }, + { + "id": "325167", + "ident": "US-0691", + "type": "small_airport", + "name": "South Farm Airport", + "latitude_deg": "35.499138", + "longitude_deg": "-98.615916", + "elevation_ft": "1657", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hydro", + "scheduled_service": "no", + "gps_code": "32OK", + "local_code": "32OK" + }, + { + "id": "331478", + "ident": "US-0692", + "type": "heliport", + "name": "George E Weems Memorial Hospital Heliport", + "latitude_deg": "29.723989", + "longitude_deg": "-84.992203", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Apalachicola", + "scheduled_service": "no", + "gps_code": "FL65", + "local_code": "FL65" + }, + { + "id": "331482", + "ident": "US-0693", + "type": "small_airport", + "name": "Flying H Ranch Airport", + "latitude_deg": "35.751666", + "longitude_deg": "-96.15375", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Beggs", + "scheduled_service": "no", + "gps_code": "OK50", + "local_code": "OK50" + }, + { + "id": "325315", + "ident": "US-0694", + "type": "heliport", + "name": "Cayuga Medical Center Heliport", + "latitude_deg": "42.469444", + "longitude_deg": "-76.53611", + "elevation_ft": "808", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Ithaca", + "scheduled_service": "no", + "gps_code": "NY32", + "local_code": "NY32" + }, + { + "id": "325316", + "ident": "US-0695", + "type": "small_airport", + "name": "DJ Farm Airport", + "latitude_deg": "30.456136", + "longitude_deg": "-83.144233", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jasper", + "scheduled_service": "no", + "gps_code": "FA93", + "local_code": "FA93" + }, + { + "id": "325326", + "ident": "US-0696", + "type": "small_airport", + "name": "Shank N Bank Airport", + "latitude_deg": "28.740058", + "longitude_deg": "-96.468189", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "La Ward", + "scheduled_service": "no", + "local_code": "TX0", + "keywords": "08TS" + }, + { + "id": "325402", + "ident": "US-0697", + "type": "heliport", + "name": "Franciscan Health Lafayette East Heliport", + "latitude_deg": "40.39415", + "longitude_deg": "-86.834645", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lafayette", + "scheduled_service": "no", + "gps_code": "76IN", + "local_code": "76IN" + }, + { + "id": "325403", + "ident": "US-0698", + "type": "small_airport", + "name": "Yancey Creek Ranch Airport", + "latitude_deg": "31.026952", + "longitude_deg": "-98.353051", + "elevation_ft": "1421", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lampasas", + "scheduled_service": "no", + "gps_code": "1TX0", + "local_code": "1TX0" + }, + { + "id": "325405", + "ident": "US-0699", + "type": "small_airport", + "name": "2C Ranch Airport", + "latitude_deg": "31.99788", + "longitude_deg": "-94.799815", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laneville", + "scheduled_service": "no", + "gps_code": "10TS", + "local_code": "10TS" + }, + { + "id": "325407", + "ident": "US-0700", + "type": "small_airport", + "name": "Green Valley Farms Airport", + "latitude_deg": "34.976388", + "longitude_deg": "-97.336944", + "elevation_ft": "1018", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "OK64", + "local_code": "OK64" + }, + { + "id": "325410", + "ident": "US-0701", + "type": "heliport", + "name": "Lindsborg Community Hospital Heliport", + "latitude_deg": "38.572594", + "longitude_deg": "-97.684213", + "elevation_ft": "1331", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Lindsborg", + "scheduled_service": "no", + "gps_code": "37KS", + "local_code": "37KS" + }, + { + "id": "325411", + "ident": "US-0702", + "type": "small_airport", + "name": "Roland Ranch Airport", + "latitude_deg": "29.848994", + "longitude_deg": "-97.768958", + "elevation_ft": "614", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lockhart", + "scheduled_service": "no", + "gps_code": "30TS", + "local_code": "30TS" + }, + { + "id": "325414", + "ident": "US-0703", + "type": "small_airport", + "name": "Matt Doyle Airpark", + "latitude_deg": "29.418272", + "longitude_deg": "-94.904466", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Texas City", + "scheduled_service": "no", + "gps_code": "55TE", + "local_code": "55TE" + }, + { + "id": "325420", + "ident": "US-0704", + "type": "heliport", + "name": "ACH Springdale Heliport", + "latitude_deg": "36.161888", + "longitude_deg": "-94.189098", + "elevation_ft": "1360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Springdale", + "scheduled_service": "no", + "gps_code": "14AR", + "local_code": "14AR" + }, + { + "id": "22853", + "ident": "US-0705", + "type": "closed", + "name": "Wright Field", + "latitude_deg": "48.188099", + "longitude_deg": "-103.620003", + "elevation_ft": "1885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Williston", + "scheduled_service": "no", + "keywords": "ND23" + }, + { + "id": "333177", + "ident": "US-0706", + "type": "closed", + "name": "Georgia-Paciffic Airport", + "latitude_deg": "31.140459", + "longitude_deg": "-85.046596", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Cedar Springs", + "scheduled_service": "no", + "keywords": "00J, 0GE2" + }, + { + "id": "325424", + "ident": "US-0707", + "type": "small_airport", + "name": "Helling Airport", + "latitude_deg": "39.728102", + "longitude_deg": "-102.171795", + "elevation_ft": "3853", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Idalia", + "scheduled_service": "no", + "gps_code": "CO08", + "local_code": "CO08" + }, + { + "id": "325425", + "ident": "US-0708", + "type": "small_airport", + "name": "McAlister Airpark", + "latitude_deg": "36.162222", + "longitude_deg": "-93.607222", + "elevation_ft": "1322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Marble", + "scheduled_service": "no", + "gps_code": "1AR4", + "local_code": "1AR4" + }, + { + "id": "325426", + "ident": "US-0709", + "type": "heliport", + "name": "Highlands Hospital Heliport", + "latitude_deg": "40.024639", + "longitude_deg": "-79.576177", + "elevation_ft": "1062", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Connellsville", + "scheduled_service": "no", + "gps_code": "PA38", + "local_code": "PA38" + }, + { + "id": "325427", + "ident": "US-0710", + "type": "small_airport", + "name": "Walnut Grove Airport", + "latitude_deg": "40.093043", + "longitude_deg": "-76.493138", + "elevation_ft": "366", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mount Joy", + "scheduled_service": "no", + "gps_code": "19PN", + "local_code": "19PN" + }, + { + "id": "325429", + "ident": "US-0711", + "type": "small_airport", + "name": "Lemons Airstrip", + "latitude_deg": "34.683855", + "longitude_deg": "-97.928033", + "elevation_ft": "1417", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Marlow", + "scheduled_service": "no", + "gps_code": "61OK", + "local_code": "61OK" + }, + { + "id": "325431", + "ident": "US-0712", + "type": "heliport", + "name": "Oishei Childrens Hospital Heliport", + "latitude_deg": "42.9009857", + "longitude_deg": "-78.867684", + "elevation_ft": "881", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Buffalo", + "scheduled_service": "no", + "gps_code": "1NY2", + "local_code": "1NY2" + }, + { + "id": "325446", + "ident": "US-0713", + "type": "small_airport", + "name": "Trigger Gap Airport", + "latitude_deg": "36.327777", + "longitude_deg": "-93.621944", + "elevation_ft": "1630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Norfork", + "scheduled_service": "no", + "local_code": "17A" + }, + { + "id": "325452", + "ident": "US-0714", + "type": "small_airport", + "name": "Sandy Ridge Farms Airport", + "latitude_deg": "33.660555", + "longitude_deg": "-94.241666", + "elevation_ft": "334", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Ashdown", + "scheduled_service": "no", + "gps_code": "57AR", + "local_code": "57AR" + }, + { + "id": "325473", + "ident": "US-0715", + "type": "small_airport", + "name": "Etna Airport", + "latitude_deg": "35.369847", + "longitude_deg": "-93.84306", + "elevation_ft": "536", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Ozark", + "scheduled_service": "no", + "gps_code": "2AR1", + "local_code": "2AR1" + }, + { + "id": "325475", + "ident": "US-0716", + "type": "small_airport", + "name": "Pegasus Airpark", + "latitude_deg": "35.947724", + "longitude_deg": "-97.489284", + "elevation_ft": "1155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Guthrie", + "scheduled_service": "no", + "gps_code": "74OK", + "local_code": "74OK" + }, + { + "id": "325485", + "ident": "US-0717", + "type": "heliport", + "name": "Baptist Health Medical Center Conway Heliport", + "latitude_deg": "35.057783", + "longitude_deg": "-92.419119", + "elevation_ft": "283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Conway", + "scheduled_service": "no", + "gps_code": "1AR3", + "local_code": "1AR3" + }, + { + "id": "325486", + "ident": "US-0718", + "type": "small_airport", + "name": "Brown Airstrip", + "latitude_deg": "34.684141", + "longitude_deg": "-97.866694", + "elevation_ft": "1330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Marlow", + "scheduled_service": "no", + "gps_code": "OK81", + "local_code": "OK81" + }, + { + "id": "325489", + "ident": "US-0719", + "type": "heliport", + "name": "Manele Heliport", + "latitude_deg": "20.745933", + "longitude_deg": "-156.913039", + "elevation_ft": "475", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Lanai", + "scheduled_service": "yes", + "gps_code": "HI02", + "local_code": "HI02" + }, + { + "id": "325490", + "ident": "US-0720", + "type": "small_airport", + "name": "CCR Field", + "latitude_deg": "40.303794", + "longitude_deg": "-110.20875", + "elevation_ft": "5983", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Bluebell", + "scheduled_service": "no", + "gps_code": "UT27", + "local_code": "UT27" + }, + { + "id": "325492", + "ident": "US-0721", + "type": "small_airport", + "name": "Pettijohn Acres Landing", + "latitude_deg": "34.664608", + "longitude_deg": "-98.077316", + "elevation_ft": "1270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Marlow", + "scheduled_service": "no", + "gps_code": "84OK", + "local_code": "84OK" + }, + { + "id": "325494", + "ident": "US-0722", + "type": "small_airport", + "name": "T & C Acres Airport", + "latitude_deg": "42.883902", + "longitude_deg": "-74.931344", + "elevation_ft": "1566", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Richard Springs", + "scheduled_service": "no", + "gps_code": "12NY", + "local_code": "12NY" + }, + { + "id": "325495", + "ident": "US-0723", + "type": "heliport", + "name": "Sam Hider Community Health Center Heliport", + "latitude_deg": "36.435036", + "longitude_deg": "-94.778663", + "elevation_ft": "1057", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Jay", + "scheduled_service": "no", + "gps_code": "OK87", + "local_code": "OK87" + }, + { + "id": "325496", + "ident": "US-0724", + "type": "heliport", + "name": "Glenwood Regional Medical Center Heliport", + "latitude_deg": "32.512084", + "longitude_deg": "-92.156778", + "elevation_ft": "88", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "West Monroe", + "scheduled_service": "no", + "gps_code": "1LA6", + "local_code": "1LA6" + }, + { + "id": "325497", + "ident": "US-0725", + "type": "small_airport", + "name": "Berg Field", + "latitude_deg": "41.033333", + "longitude_deg": "-83.687777", + "elevation_ft": "783", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Findlay", + "scheduled_service": "no", + "gps_code": "OH98", + "local_code": "OH98" + }, + { + "id": "325500", + "ident": "US-0726", + "type": "heliport", + "name": "Amistad Central Heliport", + "latitude_deg": "27.237333", + "longitude_deg": "-80.692163", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Okeechobee", + "scheduled_service": "no", + "gps_code": "18FA", + "local_code": "18FA" + }, + { + "id": "325501", + "ident": "US-0727", + "type": "heliport", + "name": "Niazi Heliport", + "latitude_deg": "28.27958", + "longitude_deg": "-80.6737833", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Merritt Island", + "scheduled_service": "no", + "gps_code": "12FA", + "local_code": "12FA" + }, + { + "id": "325502", + "ident": "US-0728", + "type": "small_airport", + "name": "Turnbull Airport", + "latitude_deg": "42.895647", + "longitude_deg": "-77.396962", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Bloomfield", + "scheduled_service": "no", + "gps_code": "48NY", + "local_code": "48NY" + }, + { + "id": "325504", + "ident": "US-0729", + "type": "small_airport", + "name": "Boardman Airfield", + "latitude_deg": "40.753086", + "longitude_deg": "-97.854027", + "elevation_ft": "1729", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Henderson", + "scheduled_service": "no", + "gps_code": "NE83", + "local_code": "NE83" + }, + { + "id": "325506", + "ident": "US-0730", + "type": "small_airport", + "name": "Hogg Field", + "latitude_deg": "31.350467", + "longitude_deg": "-95.16017", + "elevation_ft": "332", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kennard", + "scheduled_service": "no", + "gps_code": "TS99", + "local_code": "TS99" + }, + { + "id": "325509", + "ident": "US-0731", + "type": "small_airport", + "name": "Pom Wonderful Airstrip", + "latitude_deg": "36.652744", + "longitude_deg": "-119.587113", + "elevation_ft": "341", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Del Rey", + "scheduled_service": "no", + "gps_code": "0CA0", + "local_code": "0CA0" + }, + { + "id": "325512", + "ident": "US-0732", + "type": "heliport", + "name": "Hennepin County Medical Center Heliport", + "latitude_deg": "44.972055", + "longitude_deg": "-93.262605", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Minneapolis", + "scheduled_service": "no", + "gps_code": "9MN9", + "local_code": "9MN9" + }, + { + "id": "325517", + "ident": "US-0733", + "type": "small_airport", + "name": "Southfork River Ranch Airport", + "latitude_deg": "46.018888", + "longitude_deg": "-115.962222", + "elevation_ft": "1490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Stites", + "scheduled_service": "no", + "gps_code": "ID11", + "local_code": "ID11" + }, + { + "id": "325519", + "ident": "US-0734", + "type": "heliport", + "name": "ASP Lowell Heliport", + "latitude_deg": "36.255987", + "longitude_deg": "-94.1621428", + "elevation_ft": "1324", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Lowell", + "scheduled_service": "no", + "gps_code": "46AR", + "local_code": "46AR" + }, + { + "id": "325522", + "ident": "US-0735", + "type": "small_airport", + "name": "WWD Farms Airport", + "latitude_deg": "33.136988", + "longitude_deg": "-101.466267", + "elevation_ft": "2895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Post", + "scheduled_service": "no" + }, + { + "id": "325525", + "ident": "US-0736", + "type": "small_airport", + "name": "Taylor Field", + "latitude_deg": "32.898052", + "longitude_deg": "-94.162219", + "elevation_ft": "239", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bivins", + "scheduled_service": "no", + "gps_code": "TE72", + "local_code": "TE72" + }, + { + "id": "6550", + "ident": "US-0737", + "type": "closed", + "name": "Sands Ranch Airport", + "latitude_deg": "48.53721", + "longitude_deg": "-109.705492", + "elevation_ft": "2600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Havre", + "scheduled_service": "no", + "keywords": "00MT" + }, + { + "id": "325532", + "ident": "US-0738", + "type": "seaplane_base", + "name": "Moving Cloud Island Seaplane Base", + "latitude_deg": "46.029444", + "longitude_deg": "-89.686388", + "elevation_ft": "1615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Woodruff", + "scheduled_service": "no", + "gps_code": "1WI2", + "local_code": "1WI2" + }, + { + "id": "325533", + "ident": "US-0739", + "type": "heliport", + "name": "Bexar Metro Medical Heliport", + "latitude_deg": "29.582133", + "longitude_deg": "-98.581023", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "TS42", + "local_code": "TS42" + }, + { + "id": "325534", + "ident": "US-0740", + "type": "small_airport", + "name": "Big Chino Airstrip", + "latitude_deg": "35.029614", + "longitude_deg": "-112.6759", + "elevation_ft": "4410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Paulden", + "scheduled_service": "no", + "gps_code": "AZ09", + "local_code": "AZ09", + "keywords": "az09, paulden, big chino" + }, + { + "id": "325537", + "ident": "US-0741", + "type": "small_airport", + "name": "Flanders Field", + "latitude_deg": "31.157444", + "longitude_deg": "-97.07525", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lott", + "scheduled_service": "no", + "gps_code": "TS81", + "local_code": "TS81" + }, + { + "id": "332478", + "ident": "US-0742", + "type": "small_airport", + "name": "Stanton Hill Aerodrome", + "latitude_deg": "45.049494", + "longitude_deg": "-94.836683", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Atwater", + "scheduled_service": "yes", + "gps_code": "68MN", + "local_code": "68MN" + }, + { + "id": "325544", + "ident": "US-0743", + "type": "closed", + "name": "Chateau Thierry Flying Field (1919)", + "latitude_deg": "33.82469", + "longitude_deg": "-118.18795", + "elevation_ft": "86", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "325567", + "ident": "US-0744", + "type": "small_airport", + "name": "Fort Kent Municipal Airport", + "latitude_deg": "47.204206", + "longitude_deg": "-68.579212", + "elevation_ft": "708", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Fort Kent", + "scheduled_service": "no", + "local_code": "FTKEN" + }, + { + "id": "325573", + "ident": "US-0745", + "type": "closed", + "name": "Watson Airport", + "latitude_deg": "44.175925", + "longitude_deg": "-68.834624", + "elevation_ft": "101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Pulpit Harbor", + "scheduled_service": "no" + }, + { + "id": "325577", + "ident": "US-0746", + "type": "closed", + "name": "Fernald Field", + "latitude_deg": "44.647284", + "longitude_deg": "-68.901057", + "elevation_ft": "181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Winterport", + "scheduled_service": "no" + }, + { + "id": "325578", + "ident": "US-0747", + "type": "small_airport", + "name": "Lucky Landing Airport", + "latitude_deg": "44.904288", + "longitude_deg": "-68.808365", + "elevation_ft": "121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Glenburn", + "scheduled_service": "no" + }, + { + "id": "325582", + "ident": "US-0748", + "type": "closed", + "name": "St. Croix Airport", + "latitude_deg": "45.130651", + "longitude_deg": "-67.304735", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Baring", + "scheduled_service": "no" + }, + { + "id": "325587", + "ident": "US-0749", + "type": "closed", + "name": "Ashland airport", + "latitude_deg": "46.59822", + "longitude_deg": "-68.393795", + "elevation_ft": "724", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Ashland", + "scheduled_service": "no" + }, + { + "id": "325590", + "ident": "US-0750", + "type": "closed", + "name": "Ryders Skyport", + "latitude_deg": "44.284875", + "longitude_deg": "-75.380445", + "elevation_ft": "583", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Gouverneur", + "scheduled_service": "no" + }, + { + "id": "325591", + "ident": "US-0751", + "type": "closed", + "name": "Sunbright Heliport", + "latitude_deg": "37.925892", + "longitude_deg": "-84.392236", + "elevation_ft": "963", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Lexington", + "scheduled_service": "no", + "keywords": "7KY4" + }, + { + "id": "325659", + "ident": "US-0752", + "type": "heliport", + "name": "Mercy Mt. Orab Hospital Heliport", + "latitude_deg": "39.045998", + "longitude_deg": "-83.940905", + "elevation_ft": "962", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mount Orab", + "scheduled_service": "no", + "gps_code": "9OH0", + "local_code": "9OH0" + }, + { + "id": "325660", + "ident": "US-0753", + "type": "small_airport", + "name": "Mattingly Field", + "latitude_deg": "39.501336", + "longitude_deg": "-86.262923", + "elevation_ft": "861", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Martinsville", + "scheduled_service": "no", + "gps_code": "IN58", + "local_code": "IN58" + }, + { + "id": "325662", + "ident": "US-0754", + "type": "heliport", + "name": "Double D Ranch Heliport", + "latitude_deg": "40.2561", + "longitude_deg": "-77.056113", + "elevation_ft": "418", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mechanicsburg", + "scheduled_service": "no", + "gps_code": "70PA", + "local_code": "70PA" + }, + { + "id": "325683", + "ident": "US-0755", + "type": "small_airport", + "name": "Flyers Park Airport", + "latitude_deg": "40.154066", + "longitude_deg": "-82.306906", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Newark", + "scheduled_service": "no", + "gps_code": "OH20", + "local_code": "OH20" + }, + { + "id": "325685", + "ident": "US-0756", + "type": "heliport", + "name": "Dignity Health St. Rose Dominican Hospital North Las Vegas Campus Heliport", + "latitude_deg": "36.240802", + "longitude_deg": "-115.163186", + "elevation_ft": "2096", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "North Las Vegas", + "scheduled_service": "no", + "gps_code": "NV24", + "local_code": "NV24", + "keywords": "Emerus Heliport" + }, + { + "id": "325686", + "ident": "US-0757", + "type": "small_airport", + "name": "La Rue Airport", + "latitude_deg": "40.021791", + "longitude_deg": "-81.482376", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "OH94", + "local_code": "OH94" + }, + { + "id": "325687", + "ident": "US-0758", + "type": "heliport", + "name": "Riverside Shore Memorial Hospital Heliport", + "latitude_deg": "37.696297", + "longitude_deg": "-75.723176", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Onancock", + "scheduled_service": "no", + "gps_code": "3VG6", + "local_code": "3VG6" + }, + { + "id": "325688", + "ident": "US-0759", + "type": "small_airport", + "name": "Oneida Lake Strip Airport", + "latitude_deg": "43.169055", + "longitude_deg": "-75.705722", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Oneida", + "scheduled_service": "no", + "gps_code": "8NY7", + "local_code": "8NY7" + }, + { + "id": "325690", + "ident": "US-0760", + "type": "seaplane_base", + "name": "Moon Landing Seaplane Base", + "latitude_deg": "28.376722", + "longitude_deg": "-81.178136", + "elevation_ft": "61", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "FD21", + "local_code": "FD21" + }, + { + "id": "325693", + "ident": "US-0761", + "type": "heliport", + "name": "OPA Heliport", + "latitude_deg": "40.651027", + "longitude_deg": "-76.114111", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Orwigsburg", + "scheduled_service": "no", + "gps_code": "7PA0", + "local_code": "7PA0" + }, + { + "id": "325695", + "ident": "US-0762", + "type": "small_airport", + "name": "M Sansom Ranch Airport", + "latitude_deg": "31.421591", + "longitude_deg": "-99.836575", + "elevation_ft": "1810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paint Rock", + "scheduled_service": "no", + "gps_code": "06TS", + "local_code": "06TS" + }, + { + "id": "325703", + "ident": "US-0763", + "type": "heliport", + "name": "South Kohala Fire Station Heliport", + "latitude_deg": "19.946485", + "longitude_deg": "-155.834506", + "elevation_ft": "128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Waikoloa Village", + "scheduled_service": "no" + }, + { + "id": "325704", + "ident": "US-0764", + "type": "closed", + "name": "Waikoloa Air Strip", + "latitude_deg": "19.918787", + "longitude_deg": "-155.863337", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Waikoloa Village", + "scheduled_service": "no" + }, + { + "id": "325707", + "ident": "US-0765", + "type": "heliport", + "name": "GAF Helistop Heliport", + "latitude_deg": "40.844597", + "longitude_deg": "-74.461376", + "elevation_ft": "356", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Parsippanny", + "scheduled_service": "no", + "gps_code": "1NJ3", + "local_code": "1NJ3" + }, + { + "id": "325709", + "ident": "US-0766", + "type": "heliport", + "name": "Sebastian River Medical Center Heliport", + "latitude_deg": "27.842488", + "longitude_deg": "-80.489663", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Sebastian", + "scheduled_service": "no", + "gps_code": "FA03", + "local_code": "FA03" + }, + { + "id": "325710", + "ident": "US-0767", + "type": "small_airport", + "name": "Klenawicus Airfield", + "latitude_deg": "41.071008", + "longitude_deg": "-72.327018", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Shelter Island", + "scheduled_service": "no", + "gps_code": "NY03", + "local_code": "NY03" + }, + { + "id": "325716", + "ident": "US-0768", + "type": "closed", + "name": "Dream Fields Airport", + "latitude_deg": "30.95449", + "longitude_deg": "-88.465195", + "elevation_ft": "242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Lucedale", + "scheduled_service": "no", + "keywords": "7MS0" + }, + { + "id": "325742", + "ident": "US-0769", + "type": "heliport", + "name": "Lane Regional Medical Center Heliport", + "latitude_deg": "30.646977", + "longitude_deg": "-91.138274", + "elevation_ft": "88", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Zachary", + "scheduled_service": "no", + "gps_code": "3LA5", + "local_code": "3LA5" + }, + { + "id": "337120", + "ident": "US-0770", + "type": "heliport", + "name": "Maria Perham Franklin Hospital Heliport", + "latitude_deg": "36.112639", + "longitude_deg": "-78.294346", + "elevation_ft": "294", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Louisburg", + "scheduled_service": "no", + "gps_code": "NR24", + "local_code": "NR24", + "keywords": "01MU" + }, + { + "id": "325749", + "ident": "US-0771", + "type": "heliport", + "name": "CHI St. Luke's Hospital Heliport", + "latitude_deg": "29.60647", + "longitude_deg": "-95.61886", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sugarland", + "scheduled_service": "no", + "gps_code": "42TE", + "local_code": "42TE" + }, + { + "id": "325750", + "ident": "US-0772", + "type": "small_airport", + "name": "Wildcat Airport", + "latitude_deg": "31.849722", + "longitude_deg": "-101.06", + "elevation_ft": "2385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sterling City", + "scheduled_service": "no", + "gps_code": "46TE", + "local_code": "46TE" + }, + { + "id": "325752", + "ident": "US-0773", + "type": "heliport", + "name": "John Hopkins All Children's Hospital Heliport", + "latitude_deg": "27.76513", + "longitude_deg": "-82.640692", + "elevation_ft": "177", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St. Petersburg", + "scheduled_service": "no", + "gps_code": "FL14", + "local_code": "FL14" + }, + { + "id": "325754", + "ident": "US-0774", + "type": "heliport", + "name": "Muddy Bottoms Heliport", + "latitude_deg": "32.941501", + "longitude_deg": "-93.499254", + "elevation_ft": "238", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Springhill", + "scheduled_service": "no", + "gps_code": "LA94", + "local_code": "LA94" + }, + { + "id": "325755", + "ident": "US-0775", + "type": "heliport", + "name": "Isle of Wight Volunteer Rescue Squad Heliport", + "latitude_deg": "36.961165", + "longitude_deg": "-76.634444", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Smithfield", + "scheduled_service": "no", + "gps_code": "VA90", + "local_code": "VA90" + }, + { + "id": "325760", + "ident": "US-0776", + "type": "small_airport", + "name": "Itll Do Airfield", + "latitude_deg": "27.990591", + "longitude_deg": "-97.894114", + "elevation_ft": "153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sandia", + "scheduled_service": "no", + "gps_code": "1XS0", + "local_code": "1XS0" + }, + { + "id": "325766", + "ident": "US-0777", + "type": "small_airport", + "name": "Dow Ranch Airport", + "latitude_deg": "32.010311", + "longitude_deg": "-96.177127", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kerens", + "scheduled_service": "no", + "gps_code": "63TX", + "local_code": "63TX" + }, + { + "id": "325775", + "ident": "US-0778", + "type": "small_airport", + "name": "Flying L Airport", + "latitude_deg": "46.0248", + "longitude_deg": "-121.274985", + "elevation_ft": "1901", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Glenwood", + "scheduled_service": "no", + "gps_code": "10WA", + "local_code": "10WA" + }, + { + "id": "325777", + "ident": "US-0779", + "type": "heliport", + "name": "Fraundorfer Heliport", + "latitude_deg": "42.81513", + "longitude_deg": "-89.062412", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Fulton", + "scheduled_service": "no", + "gps_code": "11WI", + "local_code": "11WI" + }, + { + "id": "325779", + "ident": "US-0780", + "type": "small_airport", + "name": "Paducah Airport", + "latitude_deg": "34.023333", + "longitude_deg": "-100.343611", + "elevation_ft": "1981", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paducah", + "scheduled_service": "no", + "gps_code": "2TS5", + "local_code": "2TS5" + }, + { + "id": "325789", + "ident": "US-0781", + "type": "heliport", + "name": "Lifecare Medical Center Heliport", + "latitude_deg": "48.838611", + "longitude_deg": "-95.761388", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Roseau", + "scheduled_service": "no", + "gps_code": "7MN5", + "local_code": "7MN5" + }, + { + "id": "325827", + "ident": "US-0782", + "type": "heliport", + "name": "Dell Seton Medical Center Heliport", + "latitude_deg": "30.27575", + "longitude_deg": "-97.734388", + "elevation_ft": "613", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "68TX", + "local_code": "68TX" + }, + { + "id": "325828", + "ident": "US-0783", + "type": "small_airport", + "name": "Colvin Airport", + "latitude_deg": "41.345256", + "longitude_deg": "-82.828802", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bellevue", + "scheduled_service": "no", + "gps_code": "OH86", + "local_code": "OH86" + }, + { + "id": "325830", + "ident": "US-0784", + "type": "small_airport", + "name": "Glenwood Field", + "latitude_deg": "43.000891", + "longitude_deg": "-96.876605", + "elevation_ft": "1265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Beresford", + "scheduled_service": "no", + "local_code": "SD29" + }, + { + "id": "325837", + "ident": "US-0785", + "type": "small_airport", + "name": "Rock Ridge Airport", + "latitude_deg": "35.098644", + "longitude_deg": "-97.742605", + "elevation_ft": "1290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Blanchard", + "scheduled_service": "no", + "gps_code": "2OK3", + "local_code": "2OK3" + }, + { + "id": "325844", + "ident": "US-0786", + "type": "small_airport", + "name": "Fourth Creek Ranch Airport", + "latitude_deg": "36.324061", + "longitude_deg": "-100.396608", + "elevation_ft": "2702", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Booker", + "scheduled_service": "no", + "gps_code": "TS79", + "local_code": "TS79" + }, + { + "id": "325847", + "ident": "US-0787", + "type": "small_airport", + "name": "White Field Airport", + "latitude_deg": "29.974944", + "longitude_deg": "-82.925027", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Branford", + "scheduled_service": "no", + "gps_code": "FD95", + "local_code": "FD95" + }, + { + "id": "325849", + "ident": "US-0788", + "type": "heliport", + "name": "Pela 15 Heliport", + "latitude_deg": "35.778638", + "longitude_deg": "-87.044083", + "elevation_ft": "974", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Columbia", + "scheduled_service": "no", + "gps_code": "1TN1", + "local_code": "1TN1" + }, + { + "id": "325854", + "ident": "US-0789", + "type": "heliport", + "name": "Baptist Health Corbin Heliport", + "latitude_deg": "36.923333", + "longitude_deg": "-84.120471", + "elevation_ft": "1274", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Corbin", + "scheduled_service": "no", + "gps_code": "98KY", + "local_code": "98KY", + "keywords": "Air Evac 79 Heliport" + }, + { + "id": "325855", + "ident": "US-0790", + "type": "small_airport", + "name": "Field of Dreams Airport", + "latitude_deg": "28.470277", + "longitude_deg": "-82.240916", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Dade City", + "scheduled_service": "no", + "gps_code": "FD59", + "local_code": "FD59" + }, + { + "id": "325873", + "ident": "US-0791", + "type": "heliport", + "name": "Essentia Hospital Heliport", + "latitude_deg": "47.571683", + "longitude_deg": "-95.737955", + "elevation_ft": "1305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Fosston", + "scheduled_service": "no", + "gps_code": "MN97", + "local_code": "MN97" + }, + { + "id": "331483", + "ident": "US-0792", + "type": "small_airport", + "name": "Tracemont Field", + "latitude_deg": "31.358888", + "longitude_deg": "-92.7225", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Boyce", + "scheduled_service": "no", + "gps_code": "LA10", + "local_code": "LA10" + }, + { + "id": "325918", + "ident": "US-0793", + "type": "seaplane_base", + "name": "Lake Cochrane Seaplane Base", + "latitude_deg": "44.709763", + "longitude_deg": "-96.474541", + "elevation_ft": "1690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Gary", + "scheduled_service": "no", + "local_code": "SD2" + }, + { + "id": "331505", + "ident": "US-0794", + "type": "heliport", + "name": "Texas Health Resources Frisco Hospital Heliport", + "latitude_deg": "33.180555", + "longitude_deg": "-96.838333", + "elevation_ft": "646", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Frisco", + "scheduled_service": "no", + "gps_code": "13TA", + "local_code": "13TA" + }, + { + "id": "325936", + "ident": "US-0795", + "type": "heliport", + "name": "Childrens Hospital Colorado Heliport", + "latitude_deg": "39.556938", + "longitude_deg": "-105.009323", + "elevation_ft": "5595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Highlands Ranch", + "scheduled_service": "no", + "gps_code": "CO13", + "local_code": "CO13" + }, + { + "id": "331506", + "ident": "US-0796", + "type": "small_airport", + "name": "Stoner Memorial Airport", + "latitude_deg": "34.176388", + "longitude_deg": "-98.3097222", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Randlett", + "scheduled_service": "no", + "gps_code": "15OK", + "local_code": "15OK" + }, + { + "id": "325976", + "ident": "US-0797", + "type": "heliport", + "name": "Memorial Hermann Southwest Hospital Heliport", + "latitude_deg": "29.694205", + "longitude_deg": "-95.520133", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "TS98", + "local_code": "TS98" + }, + { + "id": "326076", + "ident": "US-0798", + "type": "seaplane_base", + "name": "Flying Floats Base Seaplane Base", + "latitude_deg": "45.864622", + "longitude_deg": "-89.143985", + "elevation_ft": "1628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Three Lakes", + "scheduled_service": "no", + "gps_code": "8WI7", + "local_code": "8WI7" + }, + { + "id": "326077", + "ident": "US-0799", + "type": "heliport", + "name": "Blackwater Heliport", + "latitude_deg": "33.499701", + "longitude_deg": "-117.041322", + "elevation_ft": "1195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Temecula", + "scheduled_service": "no", + "gps_code": "CN35", + "local_code": "CN35" + }, + { + "id": "326081", + "ident": "US-0800", + "type": "heliport", + "name": "Camelback Mountain Resort Heliport", + "latitude_deg": "41.054645", + "longitude_deg": "-75.347571", + "elevation_ft": "1305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tannersville", + "scheduled_service": "no", + "gps_code": "21PA", + "local_code": "21PA" + }, + { + "id": "326084", + "ident": "US-0801", + "type": "heliport", + "name": "Memorial Hermann Sugar Land Hospital Heliport", + "latitude_deg": "29.56545", + "longitude_deg": "-95.688863", + "elevation_ft": "74", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sugar Land", + "scheduled_service": "no", + "gps_code": "TX89", + "local_code": "TX89" + }, + { + "id": "326085", + "ident": "US-0802", + "type": "heliport", + "name": "Belleharbour Heliport", + "latitude_deg": "36.863365", + "longitude_deg": "-76.450301", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Suffolk", + "scheduled_service": "no", + "gps_code": "17VA", + "local_code": "17VA" + }, + { + "id": "326121", + "ident": "US-0803", + "type": "small_airport", + "name": "Red Oak Airport", + "latitude_deg": "38.337308", + "longitude_deg": "-91.421386", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Owensville", + "scheduled_service": "no", + "gps_code": "MO48", + "local_code": "MO48" + }, + { + "id": "326124", + "ident": "US-0804", + "type": "small_airport", + "name": "Big Creek Ranch Airstrip", + "latitude_deg": "36.914455", + "longitude_deg": "-95.463297", + "elevation_ft": "882", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "South Coffeyville", + "scheduled_service": "no", + "gps_code": "OK88", + "local_code": "OK88" + }, + { + "id": "331507", + "ident": "US-0805", + "type": "small_airport", + "name": "Ramey 1 Airport", + "latitude_deg": "34.614166", + "longitude_deg": "-98.023333", + "elevation_ft": "1204", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Marlow", + "scheduled_service": "no", + "gps_code": "0OK8", + "local_code": "0OK8" + }, + { + "id": "326180", + "ident": "US-0806", + "type": "small_airport", + "name": "Pro Agri Airport", + "latitude_deg": "33.401761", + "longitude_deg": "-102.314005", + "elevation_ft": "3471", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ropesville", + "scheduled_service": "no", + "gps_code": "TS84", + "local_code": "TS84" + }, + { + "id": "326182", + "ident": "US-0807", + "type": "small_airport", + "name": "M & M Airfield", + "latitude_deg": "43.183793", + "longitude_deg": "-75.401271", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Rome", + "scheduled_service": "no", + "gps_code": "NY53", + "local_code": "NY53" + }, + { + "id": "326246", + "ident": "US-0808", + "type": "small_airport", + "name": "Doren Field", + "latitude_deg": "43.198703", + "longitude_deg": "-85.593887", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Cedar Springs", + "scheduled_service": "no", + "gps_code": "77MI", + "local_code": "77MI" + }, + { + "id": "326255", + "ident": "US-0809", + "type": "seaplane_base", + "name": "Summer Lakes Seaplane Base", + "latitude_deg": "28.5275", + "longitude_deg": "-81.480831", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "FD43", + "local_code": "FD43", + "keywords": "Lake Hiawasee" + }, + { + "id": "326260", + "ident": "US-0810", + "type": "heliport", + "name": "GAC Waterfront Heliport", + "latitude_deg": "30.400611", + "longitude_deg": "-86.860526", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Navarre", + "scheduled_service": "no", + "gps_code": "FD32", + "local_code": "FD32" + }, + { + "id": "326261", + "ident": "US-0811", + "type": "seaplane_base", + "name": "Jones Brothers East Seaplane Base", + "latitude_deg": "28.797634", + "longitude_deg": "-81.646972", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Mount Dora", + "scheduled_service": "no", + "gps_code": "FD68", + "local_code": "FD68", + "home_link": "https://www.jonesairandsea.com/" + }, + { + "id": "326273", + "ident": "US-0812", + "type": "small_airport", + "name": "Mettler Airport", + "latitude_deg": "43.277774", + "longitude_deg": "-97.558545", + "elevation_ft": "1362", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Menno", + "scheduled_service": "no", + "gps_code": "SD77", + "local_code": "SD77" + }, + { + "id": "331524", + "ident": "US-0813", + "type": "heliport", + "name": "GEICO Helistop", + "latitude_deg": "28.53752", + "longitude_deg": "-81.384373", + "elevation_ft": "197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "FL05", + "local_code": "FL05" + }, + { + "id": "326276", + "ident": "US-0814", + "type": "heliport", + "name": "Melrose Hospital Heliport", + "latitude_deg": "45.675767", + "longitude_deg": "-94.8262469", + "elevation_ft": "1212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Melrose", + "scheduled_service": "no", + "gps_code": "MN78", + "local_code": "MN78" + }, + { + "id": "326277", + "ident": "US-0815", + "type": "small_airport", + "name": "Horning Farms Airstrip", + "latitude_deg": "34.730738", + "longitude_deg": "-98.014461", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Marlow", + "scheduled_service": "no", + "gps_code": "92OK", + "local_code": "92OK" + }, + { + "id": "326279", + "ident": "US-0816", + "type": "small_airport", + "name": "Malcom Farm Airport", + "latitude_deg": "34.643097", + "longitude_deg": "-98.044016", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Marlow", + "scheduled_service": "no", + "gps_code": "OK91", + "local_code": "OK91" + }, + { + "id": "326281", + "ident": "US-0817", + "type": "small_airport", + "name": "L&L Airport", + "latitude_deg": "34.693435", + "longitude_deg": "-97.898155", + "elevation_ft": "1416", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Marlow", + "scheduled_service": "no", + "gps_code": "OK89", + "local_code": "OK89" + }, + { + "id": "326282", + "ident": "US-0818", + "type": "heliport", + "name": "Centracare Health-Long Prairie Heliport", + "latitude_deg": "45.973911", + "longitude_deg": "-94.842578", + "elevation_ft": "1353", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Long Prairie", + "scheduled_service": "no", + "gps_code": "8MN9", + "local_code": "8MN9" + }, + { + "id": "326360", + "ident": "US-0819", + "type": "heliport", + "name": "High Alpine Heliport", + "latitude_deg": "45.228889", + "longitude_deg": "-111.375716", + "elevation_ft": "7580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Big Sky", + "scheduled_service": "no", + "gps_code": "MT16", + "local_code": "MT16" + }, + { + "id": "326361", + "ident": "US-0820", + "type": "small_airport", + "name": "Aileron Orchards Airport", + "latitude_deg": "35.788866", + "longitude_deg": "-114.132097", + "elevation_ft": "2872", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Dolan Springs", + "scheduled_service": "no", + "gps_code": "AZ49", + "local_code": "AZ49" + }, + { + "id": "326559", + "ident": "US-0821", + "type": "heliport", + "name": "University of Miami Hospital Heliport", + "latitude_deg": "25.787777", + "longitude_deg": "-80.215555", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "07FD", + "local_code": "07FD" + }, + { + "id": "326563", + "ident": "US-0822", + "type": "heliport", + "name": "Gray Ranch Company Heliport", + "latitude_deg": "34.403607", + "longitude_deg": "-96.758944", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Sulphur", + "scheduled_service": "no", + "gps_code": "2OK8", + "local_code": "2OK8" + }, + { + "id": "326564", + "ident": "US-0823", + "type": "small_airport", + "name": "TK Airport", + "latitude_deg": "35.551608", + "longitude_deg": "-98.466734", + "elevation_ft": "1427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hydro", + "scheduled_service": "no", + "gps_code": "3OK2", + "local_code": "3OK2" + }, + { + "id": "326566", + "ident": "US-0824", + "type": "small_airport", + "name": "Murdocks Flying V Airport", + "latitude_deg": "36.734008", + "longitude_deg": "-78.408189", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Boydton", + "scheduled_service": "no", + "gps_code": "3VG4", + "local_code": "3VG4" + }, + { + "id": "326567", + "ident": "US-0825", + "type": "heliport", + "name": "Bacon's Heliport", + "latitude_deg": "36.501288", + "longitude_deg": "-94.967911", + "elevation_ft": "765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Disney", + "scheduled_service": "no", + "gps_code": "44OK", + "local_code": "44OK" + }, + { + "id": "326568", + "ident": "US-0826", + "type": "small_airport", + "name": "Rush Springs Airstrip", + "latitude_deg": "34.815369", + "longitude_deg": "-97.974296", + "elevation_ft": "1410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Rush Springs", + "scheduled_service": "no", + "gps_code": "4OK2", + "local_code": "4OK2" + }, + { + "id": "326570", + "ident": "US-0827", + "type": "small_airport", + "name": "Hermann-Faulk Airfield", + "latitude_deg": "39.142616", + "longitude_deg": "-90.9588", + "elevation_ft": "816", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Silex", + "scheduled_service": "no", + "gps_code": "54MO", + "local_code": "54MO" + }, + { + "id": "326721", + "ident": "US-0828", + "type": "small_airport", + "name": "Hillview Airport", + "latitude_deg": "40.5986", + "longitude_deg": "-76.13695", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "2PA2", + "local_code": "2PA2" + }, + { + "id": "326722", + "ident": "US-0829", + "type": "heliport", + "name": "DR2 Heliport", + "latitude_deg": "40.602561", + "longitude_deg": "-75.643047", + "elevation_ft": "485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Fogelsville", + "scheduled_service": "no", + "gps_code": "3PA3", + "local_code": "3PA3" + }, + { + "id": "326724", + "ident": "US-0830", + "type": "small_airport", + "name": "Big Bar Airport", + "latitude_deg": "45.534577", + "longitude_deg": "-116.530917", + "elevation_ft": "1236", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Lucile", + "scheduled_service": "no", + "local_code": "1DA", + "keywords": "ID42" + }, + { + "id": "9710", + "ident": "US-0831", + "type": "closed", + "name": "Hallstead / Ulco Airport", + "latitude_deg": "41.94955", + "longitude_deg": "-75.73934", + "elevation_ft": "892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hallstead", + "scheduled_service": "no" + }, + { + "id": "326854", + "ident": "US-0832", + "type": "heliport", + "name": "Varnell Heliport", + "latitude_deg": "30.18213", + "longitude_deg": "-97.960985", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "5TA7", + "local_code": "5TA7" + }, + { + "id": "326861", + "ident": "US-0833", + "type": "heliport", + "name": "Sanford Bagley Heliport", + "latitude_deg": "47.52658", + "longitude_deg": "-95.401788", + "elevation_ft": "1472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Bagley", + "scheduled_service": "no", + "gps_code": "86MN", + "local_code": "86MN" + }, + { + "id": "326862", + "ident": "US-0834", + "type": "heliport", + "name": "Mercy Clermont Hospital Heliport", + "latitude_deg": "39.079158", + "longitude_deg": "-84.145274", + "elevation_ft": "857", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Batavia", + "scheduled_service": "no", + "gps_code": "5OH0", + "local_code": "5OH0" + }, + { + "id": "326864", + "ident": "US-0835", + "type": "heliport", + "name": "UH-Broadview Heights Health Center Heliport", + "latitude_deg": "41.3189721", + "longitude_deg": "-81.647611", + "elevation_ft": "989", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Broadway Heights", + "scheduled_service": "no", + "gps_code": "48OH", + "local_code": "48OH" + }, + { + "id": "326865", + "ident": "US-0836", + "type": "small_airport", + "name": "Chuck's Private Airstrip", + "latitude_deg": "35.840166", + "longitude_deg": "-97.671224", + "elevation_ft": "1053", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Cashion", + "scheduled_service": "no", + "gps_code": "4OK6", + "local_code": "4OK6" + }, + { + "id": "326868", + "ident": "US-0837", + "type": "small_airport", + "name": "RNR Farms Airport", + "latitude_deg": "46.166444", + "longitude_deg": "-123.361977", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Cathlamet", + "scheduled_service": "no", + "gps_code": "79WA", + "local_code": "79WA" + }, + { + "id": "326870", + "ident": "US-0838", + "type": "small_airport", + "name": "White Oak Field", + "latitude_deg": "40.338962", + "longitude_deg": "-82.7723125", + "elevation_ft": "1169", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Centerburg", + "scheduled_service": "no", + "gps_code": "OH87", + "local_code": "OH87" + }, + { + "id": "326874", + "ident": "US-0839", + "type": "small_airport", + "name": "Wedding Cake Ranch Airport", + "latitude_deg": "36.979347", + "longitude_deg": "-103.200417", + "elevation_ft": "4555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Clayton", + "scheduled_service": "no", + "local_code": "NM14", + "keywords": "nm14, wedding cake ranch, clayton" + }, + { + "id": "326875", + "ident": "US-0840", + "type": "heliport", + "name": "Manclark Airway Heliport", + "latitude_deg": "33.675027", + "longitude_deg": "-117.873166", + "elevation_ft": "77", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Costa Mesa", + "scheduled_service": "no", + "gps_code": "CA30", + "local_code": "CA30" + }, + { + "id": "326880", + "ident": "US-0841", + "type": "heliport", + "name": "Ulster Heights Kingdom Heliport", + "latitude_deg": "41.764146", + "longitude_deg": "-74.453385", + "elevation_ft": "1103", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Ellenville", + "scheduled_service": "no", + "gps_code": "NY14", + "local_code": "NY14" + }, + { + "id": "326972", + "ident": "US-0842", + "type": "small_airport", + "name": "Carr Creek Airport", + "latitude_deg": "37.203261", + "longitude_deg": "-91.1233", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Ellington", + "scheduled_service": "no", + "gps_code": "93MO", + "local_code": "93MO" + }, + { + "id": "326974", + "ident": "US-0843", + "type": "seaplane_base", + "name": "Eagles Nest 4 Seaplane Base", + "latitude_deg": "47.830927", + "longitude_deg": "-92.061058", + "elevation_ft": "1496", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Ely", + "scheduled_service": "no", + "gps_code": "73MN", + "local_code": "73MN" + }, + { + "id": "326976", + "ident": "US-0844", + "type": "small_airport", + "name": "Willow Creek Trading Post Airport", + "latitude_deg": "39.036757", + "longitude_deg": "-114.82994", + "elevation_ft": "6834", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Ely", + "scheduled_service": "no", + "gps_code": "NV99", + "local_code": "NV99" + }, + { + "id": "327086", + "ident": "US-0845", + "type": "seaplane_base", + "name": "Clearwater Seaplane Base", + "latitude_deg": "47.734533", + "longitude_deg": "-95.204433", + "elevation_ft": "1277", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Leonard", + "scheduled_service": "no", + "gps_code": "21MN", + "local_code": "21MN" + }, + { + "id": "327087", + "ident": "US-0846", + "type": "heliport", + "name": "Northeast Methodist Hospital Ground Heliport", + "latitude_deg": "29.553092", + "longitude_deg": "-98.350527", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Live Oak", + "scheduled_service": "no", + "gps_code": "XS10", + "local_code": "XS10" + }, + { + "id": "327088", + "ident": "US-0847", + "type": "small_airport", + "name": "Reed Mine Airport", + "latitude_deg": "35.299386", + "longitude_deg": "-80.457833", + "elevation_ft": "581", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Locust", + "scheduled_service": "no", + "gps_code": "5NC3", + "local_code": "5NC3" + }, + { + "id": "327090", + "ident": "US-0848", + "type": "small_airport", + "name": "In The Trenches Airport", + "latitude_deg": "32.510025", + "longitude_deg": "-94.824508", + "elevation_ft": "359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Longview", + "scheduled_service": "no", + "gps_code": "XS02", + "local_code": "XS02" + }, + { + "id": "327108", + "ident": "US-0849", + "type": "heliport", + "name": "Marquette Regional Hospital Heliport", + "latitude_deg": "46.544083", + "longitude_deg": "-87.406387", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Marquette", + "scheduled_service": "no", + "gps_code": "76MI", + "local_code": "76MI" + }, + { + "id": "327109", + "ident": "US-0850", + "type": "heliport", + "name": "Avera Marshall Regional Medical Center Heliport", + "latitude_deg": "44.447054", + "longitude_deg": "-95.777497", + "elevation_ft": "1165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Marshall", + "scheduled_service": "no", + "gps_code": "17MN", + "local_code": "17MN" + }, + { + "id": "327111", + "ident": "US-0851", + "type": "heliport", + "name": "Meister's Heliport", + "latitude_deg": "45.1991322", + "longitude_deg": "-92.573872", + "elevation_ft": "931", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "New Richmond", + "scheduled_service": "no", + "gps_code": "WI71", + "local_code": "WI71" + }, + { + "id": "327112", + "ident": "US-0852", + "type": "heliport", + "name": "St Elizabeth's Hospital Heliport", + "latitude_deg": "38.583295", + "longitude_deg": "-89.9341", + "elevation_ft": "546", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "O'Fallon", + "scheduled_service": "no", + "gps_code": "09IL", + "local_code": "09IL" + }, + { + "id": "327113", + "ident": "US-0853", + "type": "small_airport", + "name": "Rose Ranch Airport", + "latitude_deg": "34.122905", + "longitude_deg": "-102.171294", + "elevation_ft": "3580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Olton", + "scheduled_service": "no", + "gps_code": "XS06", + "local_code": "XS06" + }, + { + "id": "327114", + "ident": "US-0854", + "type": "heliport", + "name": "Loma Ridge Communication Center Heliport", + "latitude_deg": "33.765533", + "longitude_deg": "-117.744125", + "elevation_ft": "1286", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Orange", + "scheduled_service": "no", + "gps_code": "57CA", + "local_code": "57CA" + }, + { + "id": "327233", + "ident": "US-0855", + "type": "seaplane_base", + "name": "Ritz Carlton Grande Lakes Seaplane Base", + "latitude_deg": "28.396662", + "longitude_deg": "-81.433781", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "25FD", + "local_code": "25FD" + }, + { + "id": "327235", + "ident": "US-0856", + "type": "small_airport", + "name": "Markley Farm Airport", + "latitude_deg": "40.875694", + "longitude_deg": "-81.766497", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Orrville", + "scheduled_service": "no", + "gps_code": "OH24", + "local_code": "OH24" + }, + { + "id": "327237", + "ident": "US-0857", + "type": "small_airport", + "name": "Hidden Hills Ranch Airport", + "latitude_deg": "43.109332", + "longitude_deg": "-77.239176", + "elevation_ft": "516", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Palmyra", + "scheduled_service": "no", + "gps_code": "NY33", + "local_code": "NY33" + }, + { + "id": "327239", + "ident": "US-0858", + "type": "heliport", + "name": "Air Evac 139 Heliport", + "latitude_deg": "33.688641", + "longitude_deg": "-95.550414", + "elevation_ft": "459", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "2TS6", + "local_code": "2TS6" + }, + { + "id": "327240", + "ident": "US-0859", + "type": "small_airport", + "name": "Red Rock South Airport", + "latitude_deg": "36.421666", + "longitude_deg": "-97.161666", + "elevation_ft": "966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Perry", + "scheduled_service": "no", + "gps_code": "OL12", + "local_code": "OL12" + }, + { + "id": "327252", + "ident": "US-0860", + "type": "small_airport", + "name": "Sunrise Valley Ranch Lodge Airport", + "latitude_deg": "44.012486", + "longitude_deg": "-120.280458", + "elevation_ft": "4445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Prineville", + "scheduled_service": "no", + "gps_code": "29OR", + "local_code": "29OR" + }, + { + "id": "327254", + "ident": "US-0861", + "type": "small_airport", + "name": "Sky Ranch Airport", + "latitude_deg": "39.935451", + "longitude_deg": "-83.236398", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "West Jefferson", + "scheduled_service": "no", + "gps_code": "49OH", + "local_code": "49OH" + }, + { + "id": "327257", + "ident": "US-0862", + "type": "heliport", + "name": "Air Evac 122 Heliport", + "latitude_deg": "35.539857", + "longitude_deg": "-98.662398", + "elevation_ft": "1595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Weatherford", + "scheduled_service": "no", + "gps_code": "4OK1", + "local_code": "4OK1" + }, + { + "id": "327259", + "ident": "US-0863", + "type": "heliport", + "name": "Kennedy Health System Heliport", + "latitude_deg": "39.735537", + "longitude_deg": "-75.0652111", + "elevation_ft": "222", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Washington Township", + "scheduled_service": "no", + "gps_code": "9NJ9", + "local_code": "9NJ9" + }, + { + "id": "327281", + "ident": "US-0864", + "type": "heliport", + "name": "Temecula Valley Hospital Heliport", + "latitude_deg": "33.480208", + "longitude_deg": "-117.107989", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Temecula", + "scheduled_service": "no", + "gps_code": "98CL", + "local_code": "98CL" + }, + { + "id": "327282", + "ident": "US-0865", + "type": "heliport", + "name": "Rancho Milagro Heliport", + "latitude_deg": "36.535953", + "longitude_deg": "-105.652823", + "elevation_ft": "6917", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Taos", + "scheduled_service": "no", + "gps_code": "NM13", + "local_code": "NM13" + }, + { + "id": "327285", + "ident": "US-0866", + "type": "heliport", + "name": "Kennedy Memorial Hospital Heliport", + "latitude_deg": "39.827759", + "longitude_deg": "-75.00625", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Stratford", + "scheduled_service": "no", + "gps_code": "JY11", + "local_code": "JY11" + }, + { + "id": "327287", + "ident": "US-0867", + "type": "heliport", + "name": "Sparrow Clinton Hospital Heliport", + "latitude_deg": "42.993163", + "longitude_deg": "-84.55375", + "elevation_ft": "776", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "St Johns", + "scheduled_service": "no", + "gps_code": "69MI", + "local_code": "69MI" + }, + { + "id": "327289", + "ident": "US-0868", + "type": "heliport", + "name": "Mercy Health Heliport", + "latitude_deg": "43.607086", + "longitude_deg": "-86.364437", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Shelby", + "scheduled_service": "no", + "gps_code": "62MI", + "local_code": "62MI" + }, + { + "id": "327291", + "ident": "US-0869", + "type": "closed", + "name": "Jamros Airport", + "latitude_deg": "46.497886", + "longitude_deg": "-87.512548", + "elevation_ft": "737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Negaunee", + "scheduled_service": "no", + "keywords": "62MI" + }, + { + "id": "327294", + "ident": "US-0870", + "type": "small_airport", + "name": "Dorton Airport", + "latitude_deg": "39.288831", + "longitude_deg": "-93.992421", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "03MO", + "local_code": "03MO" + }, + { + "id": "327295", + "ident": "US-0871", + "type": "small_airport", + "name": "Oakhaus Landing Airport", + "latitude_deg": "40.353855", + "longitude_deg": "-83.5239", + "elevation_ft": "1083", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Raymond", + "scheduled_service": "no", + "gps_code": "5OH6", + "local_code": "5OH6" + }, + { + "id": "327297", + "ident": "US-0872", + "type": "heliport", + "name": "Atlantic Health Jets Training Center Heliport", + "latitude_deg": "40.780555", + "longitude_deg": "-74.417501", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Florham Park", + "scheduled_service": "no", + "gps_code": "25NJ", + "local_code": "25NJ" + }, + { + "id": "327831", + "ident": "US-0873", + "type": "small_airport", + "name": "Rolling Hills Airport", + "latitude_deg": "43.950842", + "longitude_deg": "-95.385325", + "elevation_ft": "1477", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Westbrook", + "scheduled_service": "no", + "gps_code": "3MN4", + "local_code": "3MN4" + }, + { + "id": "327838", + "ident": "US-0874", + "type": "heliport", + "name": "Black Rock Heliport", + "latitude_deg": "35.084975", + "longitude_deg": "-108.78835", + "elevation_ft": "6454", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Zuni", + "scheduled_service": "no", + "local_code": "NM1" + }, + { + "id": "327844", + "ident": "US-0875", + "type": "small_airport", + "name": "Richmond Plantation Airport", + "latitude_deg": "31.053", + "longitude_deg": "-92.632875", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Forest Hill", + "scheduled_service": "no", + "gps_code": "07LA", + "local_code": "07LA" + }, + { + "id": "327846", + "ident": "US-0876", + "type": "heliport", + "name": "Bell South Airfield Heliport", + "latitude_deg": "32.797005", + "longitude_deg": "-97.146067", + "elevation_ft": "473", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bell South Airfield Heliport", + "scheduled_service": "no", + "gps_code": "XS04", + "local_code": "XS04" + }, + { + "id": "327851", + "ident": "US-0877", + "type": "small_airport", + "name": "P-L Ranch Airport", + "latitude_deg": "46.969757", + "longitude_deg": "-122.726274", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Lacey", + "scheduled_service": "no", + "gps_code": "08WA", + "local_code": "08WA" + }, + { + "id": "331525", + "ident": "US-0878", + "type": "heliport", + "name": "Clive Holmes Estate Heliport", + "latitude_deg": "40.914111", + "longitude_deg": "-73.520597", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Oyster Bay", + "scheduled_service": "no", + "gps_code": "NY04", + "local_code": "NY04" + }, + { + "id": "331526", + "ident": "US-0879", + "type": "heliport", + "name": "Beach Mosquito Control District West Heliport", + "latitude_deg": "30.251066", + "longitude_deg": "-85.901572", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City Beach", + "scheduled_service": "no", + "gps_code": "0FL6", + "local_code": "0FL6" + }, + { + "id": "331625", + "ident": "US-0880", + "type": "closed", + "name": "Opa Locka West Airport", + "latitude_deg": "25.952481", + "longitude_deg": "-80.419152", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Opa-locka_West_Airport", + "keywords": "X46" + }, + { + "id": "327860", + "ident": "US-0881", + "type": "small_airport", + "name": "Mitch Veenstra Airport", + "latitude_deg": "42.852236", + "longitude_deg": "-85.839108", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Hudsonville", + "scheduled_service": "no", + "gps_code": "MI39", + "local_code": "MI39" + }, + { + "id": "327866", + "ident": "US-0882", + "type": "heliport", + "name": "The Christ Hospital Medical Center Heliport", + "latitude_deg": "39.375444", + "longitude_deg": "-84.360805", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "71OH", + "local_code": "71OH" + }, + { + "id": "331660", + "ident": "US-0883", + "type": "heliport", + "name": "Medical Center Barbour Heliport", + "latitude_deg": "31.889453", + "longitude_deg": "-85.156217", + "elevation_ft": "299", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Eufaula", + "scheduled_service": "no", + "gps_code": "AL00", + "local_code": "AL00" + }, + { + "id": "328034", + "ident": "US-0884", + "type": "small_airport", + "name": "Bent Hickory Air Ranch Airport", + "latitude_deg": "34.328029", + "longitude_deg": "-93.259288", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Point Cedar", + "scheduled_service": "no", + "gps_code": "0AR3", + "local_code": "0AR3" + }, + { + "id": "328038", + "ident": "US-0885", + "type": "small_airport", + "name": "Gove County Airport", + "latitude_deg": "39.038609", + "longitude_deg": "-100.233881", + "elevation_ft": "2637", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Quinter", + "scheduled_service": "no", + "local_code": "1QK" + }, + { + "id": "328040", + "ident": "US-0886", + "type": "seaplane_base", + "name": "Lily Lake Seaplane Base", + "latitude_deg": "47.219743", + "longitude_deg": "-93.512675", + "elevation_ft": "1284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Grand Rapids", + "scheduled_service": "no", + "gps_code": "12MN", + "local_code": "12MN" + }, + { + "id": "328042", + "ident": "US-0887", + "type": "small_airport", + "name": "Shady Lane Airport", + "latitude_deg": "43.061202", + "longitude_deg": "-84.548389", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "St Johns", + "scheduled_service": "no", + "local_code": "M99" + }, + { + "id": "328070", + "ident": "US-0888", + "type": "closed", + "name": "Lyons Airpark", + "latitude_deg": "34.489747", + "longitude_deg": "-85.793858", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Rainsville", + "scheduled_service": "no", + "keywords": "74A" + }, + { + "id": "328075", + "ident": "US-0889", + "type": "small_airport", + "name": "Bar Lazy B Airport", + "latitude_deg": "42.759858", + "longitude_deg": "-98.602015", + "elevation_ft": "1689", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "O'Neill", + "scheduled_service": "no", + "gps_code": "NE89", + "local_code": "NE89" + }, + { + "id": "328078", + "ident": "US-0890", + "type": "small_airport", + "name": "Miller Airport", + "latitude_deg": "43.155194", + "longitude_deg": "-75.785866", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Canastota", + "scheduled_service": "no", + "gps_code": "3NY1", + "local_code": "3NY1" + }, + { + "id": "328140", + "ident": "US-0891", + "type": "heliport", + "name": "Harvey Gulf Heliport", + "latitude_deg": "29.139916", + "longitude_deg": "-90.201486", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Golden Meadow", + "scheduled_service": "yes", + "gps_code": "9LA0", + "local_code": "9LA0" + }, + { + "id": "328151", + "ident": "US-0892", + "type": "closed", + "name": "Victory Field", + "latitude_deg": "34.0784", + "longitude_deg": "-99.289526", + "elevation_ft": "1227", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Vernon", + "scheduled_service": "no" + }, + { + "id": "328232", + "ident": "US-0893", + "type": "small_airport", + "name": "Twin Forks Airport", + "latitude_deg": "34.872083", + "longitude_deg": "-85.250361", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Chickamauga", + "scheduled_service": "no", + "gps_code": "GA77", + "local_code": "GA77", + "keywords": "http://www.airnav.com/airport/GA77" + }, + { + "id": "328236", + "ident": "US-0894", + "type": "heliport", + "name": "Guardian Centers of Georgia Heliport", + "latitude_deg": "32.501277", + "longitude_deg": "-83.7496111", + "elevation_ft": "452", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Perry", + "scheduled_service": "no", + "gps_code": "GA97", + "local_code": "GA97" + }, + { + "id": "328306", + "ident": "US-0895", + "type": "small_airport", + "name": "Woodley 2 Airport", + "latitude_deg": "41.522504", + "longitude_deg": "-89.655636", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Walnut", + "scheduled_service": "no", + "gps_code": "5IL8", + "local_code": "5IL8", + "home_link": "http://www.woodleyaerialspray.com/" + }, + { + "id": "328310", + "ident": "US-0896", + "type": "heliport", + "name": "St Joseph's Regional Medical Center Edison Lakes Heliport", + "latitude_deg": "41.706638", + "longitude_deg": "-86.17585", + "elevation_ft": "753", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Mishawaka", + "scheduled_service": "no", + "gps_code": "5IN2", + "local_code": "5IN2" + }, + { + "id": "328316", + "ident": "US-0897", + "type": "small_airport", + "name": "Tracy Airport", + "latitude_deg": "39.2348", + "longitude_deg": "-96.473601", + "elevation_ft": "1272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Manhattan", + "scheduled_service": "no", + "gps_code": "5KS6", + "local_code": "5KS6" + }, + { + "id": "328317", + "ident": "US-0898", + "type": "closed", + "name": "Bunn Airport", + "latitude_deg": "39.393103", + "longitude_deg": "-90.723736", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Nebo", + "scheduled_service": "no", + "keywords": "5LL6" + }, + { + "id": "328318", + "ident": "US-0899", + "type": "closed", + "name": "Sellers Airport", + "latitude_deg": "41.513921", + "longitude_deg": "-88.937579", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Earlville", + "scheduled_service": "no", + "keywords": "5LL4" + }, + { + "id": "328325", + "ident": "US-0900", + "type": "heliport", + "name": "Conshohocken Heliport", + "latitude_deg": "40.069583", + "longitude_deg": "-75.302362", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Conshohocken", + "scheduled_service": "no", + "gps_code": "5PA8", + "local_code": "5PA8" + }, + { + "id": "328404", + "ident": "US-0901", + "type": "small_airport", + "name": "Ellis Airport", + "latitude_deg": "36.04256", + "longitude_deg": "-77.37722", + "elevation_ft": "91", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hobgood", + "scheduled_service": "no", + "gps_code": "NC84", + "local_code": "NC84" + }, + { + "id": "328405", + "ident": "US-0902", + "type": "small_airport", + "name": "LevAirport", + "latitude_deg": "35.248077", + "longitude_deg": "-86.831065", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Pulaski", + "scheduled_service": "no", + "gps_code": "6TN5", + "local_code": "6TN5" + }, + { + "id": "328406", + "ident": "US-0903", + "type": "small_airport", + "name": "Oldstown Flying Tails Airport", + "latitude_deg": "41.324025", + "longitude_deg": "-80.792076", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cortland", + "scheduled_service": "no", + "gps_code": "81OH", + "local_code": "81OH" + }, + { + "id": "328407", + "ident": "US-0904", + "type": "small_airport", + "name": "Muncy Airport", + "latitude_deg": "35.471364", + "longitude_deg": "-98.541708", + "elevation_ft": "1680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hydro", + "scheduled_service": "no", + "gps_code": "05OK", + "local_code": "05OK" + }, + { + "id": "328411", + "ident": "US-0905", + "type": "small_airport", + "name": "Rocky Pond Airstrip", + "latitude_deg": "47.770535", + "longitude_deg": "-120.133558", + "elevation_ft": "826", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Orondo", + "scheduled_service": "no", + "gps_code": "13WA", + "local_code": "13WA" + }, + { + "id": "328414", + "ident": "US-0906", + "type": "small_airport", + "name": "Derick Ultralight Flightpark", + "latitude_deg": "40.194217", + "longitude_deg": "-77.518326", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Newburg", + "scheduled_service": "no", + "gps_code": "PA07", + "local_code": "PA07" + }, + { + "id": "328426", + "ident": "US-0907", + "type": "small_airport", + "name": "Embarcadero Airport", + "latitude_deg": "33.266375", + "longitude_deg": "-96.516722", + "elevation_ft": "654", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "McKinney", + "scheduled_service": "no", + "gps_code": "XS42", + "local_code": "XS42" + }, + { + "id": "328427", + "ident": "US-0908", + "type": "small_airport", + "name": "Peaster 01 Airport", + "latitude_deg": "32.850488", + "longitude_deg": "-97.862247", + "elevation_ft": "1247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no", + "gps_code": "XS53", + "local_code": "XS53" + }, + { + "id": "328430", + "ident": "US-0909", + "type": "small_airport", + "name": "La Parra Ranch Airport", + "latitude_deg": "27.225577", + "longitude_deg": "-97.69765", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sarita", + "scheduled_service": "no", + "gps_code": "XS63", + "local_code": "XS63" + }, + { + "id": "328431", + "ident": "US-0910", + "type": "heliport", + "name": "Claytime Heliport", + "latitude_deg": "29.004764", + "longitude_deg": "-95.9818722", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bay City", + "scheduled_service": "no", + "gps_code": "XS74", + "local_code": "XS74" + }, + { + "id": "328432", + "ident": "US-0911", + "type": "closed", + "name": "South Tajos Ranch Airport", + "latitude_deg": "26.867933", + "longitude_deg": "-97.667664", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sarita", + "scheduled_service": "no", + "keywords": "XS92" + }, + { + "id": "328433", + "ident": "US-0912", + "type": "small_airport", + "name": "Cardinal Field", + "latitude_deg": "29.256694", + "longitude_deg": "-96.987", + "elevation_ft": "221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cardinal Field", + "scheduled_service": "no", + "gps_code": "XS95", + "local_code": "XS95" + }, + { + "id": "328478", + "ident": "US-0913", + "type": "small_airport", + "name": "Ugashik Narrows Airport", + "latitude_deg": "57.557809", + "longitude_deg": "-156.787283", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "King Salmon", + "scheduled_service": "no", + "gps_code": "AA05", + "local_code": "AA05" + }, + { + "id": "328479", + "ident": "US-0914", + "type": "heliport", + "name": "St Vincent North Hospital Heliport", + "latitude_deg": "34.813552", + "longitude_deg": "-92.2073722", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "North Little Rock", + "scheduled_service": "no", + "gps_code": "1AR8", + "local_code": "1AR8", + "keywords": "http://www.airnav.com/airport/1AR8" + }, + { + "id": "328481", + "ident": "US-0915", + "type": "heliport", + "name": "Memorial Hospital Los Banos Heliport", + "latitude_deg": "37.064535", + "longitude_deg": "-120.858965", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Banos", + "scheduled_service": "no", + "gps_code": "CA80", + "local_code": "CA80" + }, + { + "id": "328490", + "ident": "US-0916", + "type": "small_airport", + "name": "Zamora Airport", + "latitude_deg": "38.79925", + "longitude_deg": "-121.830694", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodland", + "scheduled_service": "no", + "gps_code": "97CA", + "local_code": "97CA" + }, + { + "id": "328491", + "ident": "US-0917", + "type": "heliport", + "name": "Silo Heliport", + "latitude_deg": "41.793145", + "longitude_deg": "-73.049894", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Harwinton", + "scheduled_service": "no", + "gps_code": "07CT", + "local_code": "07CT" + }, + { + "id": "328492", + "ident": "US-0918", + "type": "heliport", + "name": "Air Evac 86 Heliport", + "latitude_deg": "32.066792", + "longitude_deg": "-84.252884", + "elevation_ft": "411", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Americus", + "scheduled_service": "no", + "gps_code": "GA07", + "local_code": "GA07" + }, + { + "id": "328493", + "ident": "US-0919", + "type": "small_airport", + "name": "Blackhawk Airport", + "latitude_deg": "41.14089", + "longitude_deg": "-87.394207", + "elevation_ft": "653", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lake Village", + "scheduled_service": "no", + "gps_code": "IN39", + "local_code": "IN39" + }, + { + "id": "328495", + "ident": "US-0920", + "type": "heliport", + "name": "Agfertilizers Heliport", + "latitude_deg": "47.54505", + "longitude_deg": "-111.451075", + "elevation_ft": "3435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Great Falls", + "scheduled_service": "no", + "gps_code": "MT17", + "local_code": "MT17" + }, + { + "id": "328498", + "ident": "US-0921", + "type": "small_airport", + "name": "Black I Ranch Airport", + "latitude_deg": "36.442222", + "longitude_deg": "-98.103888", + "elevation_ft": "1322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Carrier", + "scheduled_service": "no", + "gps_code": "8OK4", + "local_code": "8OK4" + }, + { + "id": "328499", + "ident": "US-0922", + "type": "small_airport", + "name": "Grass Strip Airport", + "latitude_deg": "35.814108", + "longitude_deg": "-96.874736", + "elevation_ft": "933", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Chandler", + "scheduled_service": "no", + "gps_code": "8OK6", + "local_code": "8OK6" + }, + { + "id": "328501", + "ident": "US-0923", + "type": "small_airport", + "name": "Lawles Airport", + "latitude_deg": "35.502414", + "longitude_deg": "-98.509241", + "elevation_ft": "1606", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hydro", + "scheduled_service": "no", + "gps_code": "60OK", + "local_code": "60OK" + }, + { + "id": "328502", + "ident": "US-0924", + "type": "heliport", + "name": "Mercy Hospital Kingfisher Heliport", + "latitude_deg": "35.809741", + "longitude_deg": "-97.945483", + "elevation_ft": "1112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Kingfisher", + "scheduled_service": "no", + "gps_code": "30OK", + "local_code": "30OK" + }, + { + "id": "328504", + "ident": "US-0925", + "type": "small_airport", + "name": "Jim Pettijohn Memorial Airport", + "latitude_deg": "34.66155", + "longitude_deg": "-98.102794", + "elevation_ft": "1222", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Marlow", + "scheduled_service": "no", + "gps_code": "7OK8", + "local_code": "7OK8" + }, + { + "id": "328505", + "ident": "US-0926", + "type": "small_airport", + "name": "VR Airstrip", + "latitude_deg": "34.65693", + "longitude_deg": "-97.79248", + "elevation_ft": "1281", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Marlow", + "scheduled_service": "no", + "gps_code": "2OK0", + "local_code": "2OK0" + }, + { + "id": "328574", + "ident": "US-0927", + "type": "closed", + "name": "Werries Airport", + "latitude_deg": "39.80637", + "longitude_deg": "-90.367778", + "elevation_ft": "601", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chapin", + "scheduled_service": "no", + "keywords": "IL28" + }, + { + "id": "328575", + "ident": "US-0928", + "type": "heliport", + "name": "Centegra Hospital-Huntley Heliport", + "latitude_deg": "42.177477", + "longitude_deg": "-88.398956", + "elevation_ft": "892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Huntley", + "scheduled_service": "no", + "gps_code": "IL74", + "local_code": "IL74" + }, + { + "id": "328576", + "ident": "US-0929", + "type": "closed", + "name": "Sisk Restricted Landing Area", + "latitude_deg": "40.852969", + "longitude_deg": "-89.707394", + "elevation_ft": "759", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Dunlap", + "scheduled_service": "no", + "keywords": "IL72" + }, + { + "id": "328578", + "ident": "US-0930", + "type": "closed", + "name": "Wildcat Air Landing Area", + "latitude_deg": "40.4347578", + "longitude_deg": "-86.7652847", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lafayette", + "scheduled_service": "no", + "keywords": "IN12" + }, + { + "id": "328590", + "ident": "US-0931", + "type": "closed", + "name": "Cascabel Air Park", + "latitude_deg": "32.300662", + "longitude_deg": "-110.364423", + "elevation_ft": "3374", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no", + "keywords": "05A, cascabel" + }, + { + "id": "331662", + "ident": "US-0932", + "type": "small_airport", + "name": "Koafm Airport", + "latitude_deg": "37.525247", + "longitude_deg": "-95.374108", + "elevation_ft": "1022", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Galesburg", + "scheduled_service": "no", + "gps_code": "45KS", + "local_code": "45KS" + }, + { + "id": "328795", + "ident": "US-0933", + "type": "heliport", + "name": "Waldo County General Hospital Heliport", + "latitude_deg": "44.413275", + "longitude_deg": "-68.994053", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Belfast", + "scheduled_service": "no", + "gps_code": "98ME", + "local_code": "98ME" + }, + { + "id": "328796", + "ident": "US-0934", + "type": "balloonport", + "name": "Murphy's Landing Balloonport", + "latitude_deg": "41.666664", + "longitude_deg": "-73.1894444", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Bethlehem", + "scheduled_service": "no", + "gps_code": "CT30", + "local_code": "CT30" + }, + { + "id": "328797", + "ident": "US-0935", + "type": "heliport", + "name": "Calais Regional Hospital Heliport", + "latitude_deg": "45.177134", + "longitude_deg": "-67.267936", + "elevation_ft": "153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Calais", + "scheduled_service": "no", + "gps_code": "46ME", + "local_code": "46ME" + }, + { + "id": "328799", + "ident": "US-0936", + "type": "small_airport", + "name": "Double Circle Ranch Airport", + "latitude_deg": "33.340547", + "longitude_deg": "-109.494464", + "elevation_ft": "4863", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Clifton", + "scheduled_service": "no", + "gps_code": "AZ66", + "local_code": "AZ66", + "keywords": "Z66, Eagle Creek Ranch" + }, + { + "id": "328800", + "ident": "US-0937", + "type": "small_airport", + "name": "Kutcher-Lakeview Airport", + "latitude_deg": "40.519204", + "longitude_deg": "-104.458293", + "elevation_ft": "4770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Galeton", + "scheduled_service": "no", + "gps_code": "CO26", + "local_code": "CO26" + }, + { + "id": "328919", + "ident": "US-0938", + "type": "heliport", + "name": "Advocate Sherman Hospital Heliport", + "latitude_deg": "42.072178", + "longitude_deg": "-88.329757", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Elgin", + "scheduled_service": "no", + "gps_code": "25LL", + "local_code": "25LL", + "keywords": "Sherman Hospital Randall Road" + }, + { + "id": "328920", + "ident": "US-0939", + "type": "small_airport", + "name": "Terhark Airport", + "latitude_deg": "42.6594", + "longitude_deg": "-88.43036", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Elkhorn", + "scheduled_service": "no", + "gps_code": "86WI", + "local_code": "86WI" + }, + { + "id": "328926", + "ident": "US-0940", + "type": "small_airport", + "name": "Culp Airport", + "latitude_deg": "40.9998", + "longitude_deg": "-86.91315", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Francesville", + "scheduled_service": "no", + "gps_code": "IN27", + "local_code": "IN27" + }, + { + "id": "328928", + "ident": "US-0941", + "type": "seaplane_base", + "name": "Aero Estates Seaplane Base", + "latitude_deg": "32.0791751", + "longitude_deg": "-95.4324805", + "elevation_ft": "345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Frankston", + "scheduled_service": "no", + "local_code": "TX1" + }, + { + "id": "328970", + "ident": "US-0942", + "type": "heliport", + "name": "North Ottawa Community Hospital Heliport", + "latitude_deg": "43.051425", + "longitude_deg": "-86.230092", + "elevation_ft": "609", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Grand Haven", + "scheduled_service": "no", + "gps_code": "84MI", + "local_code": "84MI" + }, + { + "id": "328975", + "ident": "US-0943", + "type": "seaplane_base", + "name": "Seaplane Scenics at Carillon Point Seaplane Base", + "latitude_deg": "47.66", + "longitude_deg": "-122.21", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Kirkland", + "scheduled_service": "no", + "gps_code": "WA32", + "local_code": "WA32" + }, + { + "id": "328980", + "ident": "US-0944", + "type": "closed", + "name": "Lamesa Army Airfield", + "latitude_deg": "32.844721", + "longitude_deg": "-101.92", + "elevation_ft": "3015", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lamesa", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lamesa_Army_Airfield" + }, + { + "id": "328983", + "ident": "US-0945", + "type": "heliport", + "name": "North Campus South Lake Hospital Heliport", + "latitude_deg": "28.671944", + "longitude_deg": "-81.850833", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Leesburg", + "scheduled_service": "no", + "gps_code": "90FA", + "local_code": "90FA" + }, + { + "id": "328991", + "ident": "US-0946", + "type": "heliport", + "name": "Brady Sullivan-Elm Helistop", + "latitude_deg": "42.992317", + "longitude_deg": "-71.465319", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Manchester", + "scheduled_service": "no", + "gps_code": "NH34", + "local_code": "NH34" + }, + { + "id": "329019", + "ident": "US-0947", + "type": "heliport", + "name": "Millinocket Regional Hospital Heliport", + "latitude_deg": "45.653266", + "longitude_deg": "-68.716977", + "elevation_ft": "459", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Millinocket", + "scheduled_service": "no", + "gps_code": "ME50", + "local_code": "ME50" + }, + { + "id": "329022", + "ident": "US-0948", + "type": "small_airport", + "name": "Greater Breezewood Regional Airport", + "latitude_deg": "39.874077", + "longitude_deg": "-78.297736", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Breezewood", + "scheduled_service": "no", + "local_code": "P17" + }, + { + "id": "329024", + "ident": "US-0949", + "type": "small_airport", + "name": "Yates Restricted Landing Area", + "latitude_deg": "39.533005", + "longitude_deg": "-90.21558", + "elevation_ft": "616", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Murrayville", + "scheduled_service": "no", + "gps_code": "IL29", + "local_code": "IL29" + }, + { + "id": "329025", + "ident": "US-0950", + "type": "heliport", + "name": "Rancho Springs Medical Center EMS Landing Site Heliport", + "latitude_deg": "33.557747", + "longitude_deg": "-117.183369", + "elevation_ft": "1157", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Murrieta", + "scheduled_service": "no", + "gps_code": "CA17", + "local_code": "CA17" + }, + { + "id": "329026", + "ident": "US-0951", + "type": "small_airport", + "name": "Two Hearted Airstrip", + "latitude_deg": "46.693345", + "longitude_deg": "-85.422095", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Newberry", + "scheduled_service": "no", + "local_code": "6Y5" + }, + { + "id": "329028", + "ident": "US-0952", + "type": "heliport", + "name": "Grant Regional Health Center Heliport", + "latitude_deg": "42.843453", + "longitude_deg": "-90.708073", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "5WI9", + "local_code": "5WI9" + }, + { + "id": "329033", + "ident": "US-0953", + "type": "small_airport", + "name": "Foggy Bottom Airport", + "latitude_deg": "33.037235", + "longitude_deg": "-95.293183", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Winnsboro", + "scheduled_service": "no", + "gps_code": "77TE", + "local_code": "77TE" + }, + { + "id": "329066", + "ident": "US-0954", + "type": "closed", + "name": "Benbow Airport", + "latitude_deg": "40.06638", + "longitude_deg": "-123.78651", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Garberville", + "scheduled_service": "no", + "local_code": "K0Q5" + }, + { + "id": "331663", + "ident": "US-0955", + "type": "heliport", + "name": "SCI Phoenix Heliport", + "latitude_deg": "40.232228", + "longitude_deg": "-75.436336", + "elevation_ft": "283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Graterford", + "scheduled_service": "no", + "gps_code": "4PS2", + "local_code": "4PS2" + }, + { + "id": "329068", + "ident": "US-0956", + "type": "small_airport", + "name": "Sweet Springs Airport", + "latitude_deg": "35.3118056", + "longitude_deg": "-91.8756361", + "elevation_ft": "418", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Searcy", + "scheduled_service": "no", + "gps_code": "35AR", + "local_code": "35AR" + }, + { + "id": "329070", + "ident": "US-0957", + "type": "seaplane_base", + "name": "Harmon Seaplane Base", + "latitude_deg": "30.249066", + "longitude_deg": "-92.085515", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Scott", + "scheduled_service": "no", + "gps_code": "0LA6", + "local_code": "0LA6" + }, + { + "id": "329075", + "ident": "US-0958", + "type": "heliport", + "name": "Redmond Regional Medical Center Heliport", + "latitude_deg": "34.277588", + "longitude_deg": "-85.193963", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Rome", + "scheduled_service": "no", + "gps_code": "GA12", + "local_code": "GA12" + }, + { + "id": "329078", + "ident": "US-0959", + "type": "heliport", + "name": "York Hospital Heliport", + "latitude_deg": "43.141583", + "longitude_deg": "-70.650669", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "York", + "scheduled_service": "no", + "gps_code": "ME94", + "local_code": "ME94" + }, + { + "id": "329205", + "ident": "US-0960", + "type": "heliport", + "name": "Tufts Medical Center Heliport", + "latitude_deg": "42.349037", + "longitude_deg": "-71.063223", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Boston", + "scheduled_service": "no", + "gps_code": "MA66", + "local_code": "MA66" + }, + { + "id": "329263", + "ident": "US-0961", + "type": "small_airport", + "name": "A J Patrol Airport", + "latitude_deg": "30.142781", + "longitude_deg": "-92.333328", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Crowley", + "scheduled_service": "no", + "gps_code": "LS09", + "local_code": "LS09" + }, + { + "id": "329266", + "ident": "US-0962", + "type": "small_airport", + "name": "Big Sandy Airport", + "latitude_deg": "34.87094", + "longitude_deg": "-113.586732", + "elevation_ft": "2922", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Kingman", + "scheduled_service": "no", + "gps_code": "AZ71", + "local_code": "AZ71" + }, + { + "id": "329268", + "ident": "US-0963", + "type": "small_airport", + "name": "Seven J Stock Farm Airport", + "latitude_deg": "31.103611", + "longitude_deg": "-95.702811", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crockett", + "scheduled_service": "no", + "gps_code": "85XS", + "local_code": "85XS" + }, + { + "id": "329269", + "ident": "US-0964", + "type": "small_airport", + "name": "Ranch at Double Gates Airport", + "latitude_deg": "31.600461", + "longitude_deg": "-99.41604", + "elevation_ft": "1610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Coleman", + "scheduled_service": "no", + "gps_code": "88XS", + "local_code": "88XS" + }, + { + "id": "329273", + "ident": "US-0965", + "type": "heliport", + "name": "South Campus South Lake Hospital Heliport", + "latitude_deg": "28.351187", + "longitude_deg": "-81.673346", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Clermont", + "scheduled_service": "no", + "gps_code": "40FA", + "local_code": "40FA" + }, + { + "id": "329274", + "ident": "US-0966", + "type": "small_airport", + "name": "Mosquito Strip Airport", + "latitude_deg": "41.393744", + "longitude_deg": "-80.813375", + "elevation_ft": "939", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bristolville", + "scheduled_service": "no", + "gps_code": "20OH", + "local_code": "20OH" + }, + { + "id": "329275", + "ident": "US-0967", + "type": "small_airport", + "name": "W E Ranch Airport", + "latitude_deg": "42.448186", + "longitude_deg": "-111.777543", + "elevation_ft": "5075", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Thatcher", + "scheduled_service": "no", + "local_code": "0ID" + }, + { + "id": "329277", + "ident": "US-0968", + "type": "small_airport", + "name": "Merrill Ranch Ultralight Flightpark", + "latitude_deg": "35.895353", + "longitude_deg": "-96.026122", + "elevation_ft": "706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Mounds", + "scheduled_service": "no", + "gps_code": "01OK", + "local_code": "01OK" + }, + { + "id": "329282", + "ident": "US-0969", + "type": "heliport", + "name": "SSJ Heliport", + "latitude_deg": "42.440114", + "longitude_deg": "-85.416805", + "elevation_ft": "947", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Hickory Corners", + "scheduled_service": "no", + "gps_code": "24MI", + "local_code": "24MI" + }, + { + "id": "329286", + "ident": "US-0970", + "type": "small_airport", + "name": "Flying J Airport", + "latitude_deg": "33.754547", + "longitude_deg": "-96.843558", + "elevation_ft": "729", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sadler", + "scheduled_service": "no", + "gps_code": "15TX", + "local_code": "15TX", + "keywords": "https://www.airnav.com/airport/15TX" + }, + { + "id": "329287", + "ident": "US-0971", + "type": "small_airport", + "name": "3 Mill Ranch Airport", + "latitude_deg": "30.284427", + "longitude_deg": "-99.473784", + "elevation_ft": "2232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mountain Home", + "scheduled_service": "no", + "gps_code": "44XS", + "local_code": "44XS" + }, + { + "id": "329288", + "ident": "US-0972", + "type": "heliport", + "name": "STS VIP Heliport", + "latitude_deg": "30.099886", + "longitude_deg": "-97.72675", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Creedmoor", + "scheduled_service": "no", + "gps_code": "4XS8", + "local_code": "4XS8" + }, + { + "id": "329289", + "ident": "US-0973", + "type": "small_airport", + "name": "Arrington Ranch Airport", + "latitude_deg": "35.531994", + "longitude_deg": "-101.1613", + "elevation_ft": "3327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Skellytown", + "scheduled_service": "no", + "gps_code": "7XS5", + "local_code": "7XS5" + }, + { + "id": "329290", + "ident": "US-0974", + "type": "small_airport", + "name": "Bemaroy Airport", + "latitude_deg": "31.30605", + "longitude_deg": "-99.492819", + "elevation_ft": "1590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pear Valley", + "scheduled_service": "no", + "gps_code": "8XS0", + "local_code": "8XS0" + }, + { + "id": "329291", + "ident": "US-0975", + "type": "heliport", + "name": "Hill Country Memorial Hospital Heliport", + "latitude_deg": "30.262778", + "longitude_deg": "-98.880611", + "elevation_ft": "1750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fredericksburg", + "scheduled_service": "no", + "gps_code": "3TX8", + "local_code": "3TX8" + }, + { + "id": "329292", + "ident": "US-0976", + "type": "heliport", + "name": "Texas Children's Hospital The Woodlands Heliport", + "latitude_deg": "30.200047", + "longitude_deg": "-95.456257", + "elevation_ft": "134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "The Woodlands", + "scheduled_service": "no", + "gps_code": "8XS1", + "local_code": "8XS1" + }, + { + "id": "329293", + "ident": "US-0977", + "type": "small_airport", + "name": "Cole Ranch Airport", + "latitude_deg": "29.001392", + "longitude_deg": "-96.992837", + "elevation_ft": "179", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Victoria", + "scheduled_service": "no", + "gps_code": "94XS", + "local_code": "94XS" + }, + { + "id": "329294", + "ident": "US-0978", + "type": "closed", + "name": "Lake Washington Airport", + "latitude_deg": "33.107344", + "longitude_deg": "-91.06844", + "elevation_ft": "116", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Foote", + "scheduled_service": "no", + "keywords": "MS12" + }, + { + "id": "329333", + "ident": "US-0979", + "type": "heliport", + "name": "ORMC Helistop", + "latitude_deg": "31.852906", + "longitude_deg": "-102.363762", + "elevation_ft": "2897", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Odessa", + "scheduled_service": "no", + "gps_code": "XS29", + "local_code": "XS29" + }, + { + "id": "329335", + "ident": "US-0980", + "type": "heliport", + "name": "Okemah Muscogee (Creek) Nation Community Hospital Heliport", + "latitude_deg": "35.423049", + "longitude_deg": "-96.276423", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Okemah", + "scheduled_service": "no", + "gps_code": "6OK5", + "local_code": "6OK5" + }, + { + "id": "329349", + "ident": "US-0981", + "type": "small_airport", + "name": "Green Acres Airfield", + "latitude_deg": "35.453818", + "longitude_deg": "-100.994294", + "elevation_ft": "3237", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pampa", + "scheduled_service": "no", + "gps_code": "XS28", + "local_code": "XS28" + }, + { + "id": "329359", + "ident": "US-0982", + "type": "heliport", + "name": "Centracare Health Heliport", + "latitude_deg": "45.302045", + "longitude_deg": "-93.782081", + "elevation_ft": "936", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Monticello", + "scheduled_service": "no", + "gps_code": "MN93", + "local_code": "MN93" + }, + { + "id": "329360", + "ident": "US-0983", + "type": "heliport", + "name": "LOMO 4 Heliport", + "latitude_deg": "38.172753", + "longitude_deg": "-92.642544", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Sunrise Beach", + "scheduled_service": "no", + "gps_code": "MO42", + "local_code": "MO42" + }, + { + "id": "331669", + "ident": "US-0984", + "type": "seaplane_base", + "name": "McKeen Seaplane Base", + "latitude_deg": "45.072894", + "longitude_deg": "-94.069683", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Howard Lake", + "scheduled_service": "no", + "gps_code": "6MN3", + "local_code": "6MN3" + }, + { + "id": "329433", + "ident": "US-0985", + "type": "closed", + "name": "Balcer Aero South Airport", + "latitude_deg": "38.505465", + "longitude_deg": "-92.21799", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Jefferson City", + "scheduled_service": "no", + "keywords": "MU17" + }, + { + "id": "329459", + "ident": "US-0986", + "type": "small_airport", + "name": "Dead Cow Lakebed Airstrip", + "latitude_deg": "40.147755", + "longitude_deg": "-119.907335", + "elevation_ft": "4845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Herlong, CA", + "scheduled_service": "no", + "local_code": "HSFIDCL", + "home_link": "http://www.stoldrag.com", + "keywords": "High Sierra Fly-In" + }, + { + "id": "329479", + "ident": "US-0987", + "type": "heliport", + "name": "Richfield Station Heliport", + "latitude_deg": "40.684303", + "longitude_deg": "-77.126431", + "elevation_ft": "674", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Richfield", + "scheduled_service": "no", + "gps_code": "0PA0", + "local_code": "0PA0" + }, + { + "id": "329480", + "ident": "US-0988", + "type": "heliport", + "name": "VRS Heliport", + "latitude_deg": "27.81355", + "longitude_deg": "-82.682233", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St. Petersburg", + "scheduled_service": "no", + "gps_code": "1FL4", + "local_code": "1FL4" + }, + { + "id": "329481", + "ident": "US-0989", + "type": "heliport", + "name": "Wang Heliport", + "latitude_deg": "40.889792", + "longitude_deg": "-73.491603", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Cove Neck", + "scheduled_service": "no", + "gps_code": "24NY", + "local_code": "24NY" + }, + { + "id": "329483", + "ident": "US-0990", + "type": "heliport", + "name": "Donagher Residence Heliport", + "latitude_deg": "40.247492", + "longitude_deg": "-77.059326", + "elevation_ft": "496", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Mechanicsburg", + "scheduled_service": "no", + "gps_code": "2PA0", + "local_code": "2PA0" + }, + { + "id": "329484", + "ident": "US-0991", + "type": "heliport", + "name": "AdventHealth Waterman Heliport", + "latitude_deg": "28.824408", + "longitude_deg": "-81.710528", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tavares", + "scheduled_service": "no", + "gps_code": "32FL", + "local_code": "32FL", + "keywords": "Florida Hospital Waterman Heliport" + }, + { + "id": "329489", + "ident": "US-0992", + "type": "small_airport", + "name": "Comanche Hills Ranch Airport", + "latitude_deg": "31.166855", + "longitude_deg": "-98.245888", + "elevation_ft": "1232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lampasas", + "scheduled_service": "no", + "gps_code": "71XS", + "local_code": "71XS" + }, + { + "id": "329502", + "ident": "US-0993", + "type": "small_airport", + "name": "Sherman Farm Air Airport", + "latitude_deg": "34.323601", + "longitude_deg": "-101.443302", + "elevation_ft": "3300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lockney", + "scheduled_service": "no", + "keywords": "7TA8" + }, + { + "id": "329541", + "ident": "US-0994", + "type": "heliport", + "name": "LQLZ Heliport", + "latitude_deg": "29.987475", + "longitude_deg": "-96.952806", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "La Grange", + "scheduled_service": "no", + "gps_code": "76XS", + "local_code": "76XS" + }, + { + "id": "329542", + "ident": "US-0995", + "type": "heliport", + "name": "Carova Beach Volunteer Fire and Rescue Heliport", + "latitude_deg": "36.516636", + "longitude_deg": "-75.865337", + "elevation_ft": "-3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Corolla", + "scheduled_service": "no", + "gps_code": "7NC0", + "local_code": "7NC0" + }, + { + "id": "329591", + "ident": "US-0996", + "type": "small_airport", + "name": "J A Knolle Airport", + "latitude_deg": "27.993892", + "longitude_deg": "-97.820567", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sandia", + "scheduled_service": "no", + "gps_code": "8XS3", + "local_code": "8XS3" + }, + { + "id": "329593", + "ident": "US-0997", + "type": "small_airport", + "name": "Underline OK Airport", + "latitude_deg": "32.929111", + "longitude_deg": "-97.713833", + "elevation_ft": "1116", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Springtown", + "scheduled_service": "no", + "gps_code": "93XS", + "local_code": "93XS" + }, + { + "id": "329596", + "ident": "US-0998", + "type": "small_airport", + "name": "Blue Ridge Airport", + "latitude_deg": "33.294014", + "longitude_deg": "-96.446889", + "elevation_ft": "639", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Blue Ridge", + "scheduled_service": "no", + "gps_code": "99XS", + "local_code": "99XS" + }, + { + "id": "329599", + "ident": "US-0999", + "type": "heliport", + "name": "Price Valley Helibase", + "latitude_deg": "45.020639", + "longitude_deg": "-116.437389", + "elevation_ft": "4197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "New Meadows", + "scheduled_service": "no", + "gps_code": "ID08", + "local_code": "ID08" + }, + { + "id": "18358", + "ident": "US-0F3", + "type": "small_airport", + "name": "Spirit Lake Municipal Airport", + "latitude_deg": "43.387500762939", + "longitude_deg": "-95.139198303223", + "elevation_ft": "1434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Spirit Lake", + "scheduled_service": "no", + "iata_code": "RTL", + "local_code": "0F3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Spirit_Lake_Municipal_Airport" + }, + { + "id": "329604", + "ident": "US-1000", + "type": "small_airport", + "name": "Jefferson River Airport", + "latitude_deg": "45.608981", + "longitude_deg": "-112.328003", + "elevation_ft": "4580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Twin Bridges", + "scheduled_service": "no", + "gps_code": "MT62", + "local_code": "MT62" + }, + { + "id": "329607", + "ident": "US-1001", + "type": "small_airport", + "name": "Stieger Field", + "latitude_deg": "35.574944", + "longitude_deg": "-81.427555", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hickory", + "scheduled_service": "no", + "gps_code": "NC78", + "local_code": "NC78" + }, + { + "id": "329610", + "ident": "US-1002", + "type": "heliport", + "name": "Moab Helibase", + "latitude_deg": "38.481555", + "longitude_deg": "-109.436056", + "elevation_ft": "5010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Moab", + "scheduled_service": "no", + "gps_code": "UT07", + "local_code": "UT07" + }, + { + "id": "329637", + "ident": "US-1003", + "type": "small_airport", + "name": "Allens Airport", + "latitude_deg": "34.974116", + "longitude_deg": "-79.074586", + "elevation_ft": "199", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Rockfish", + "scheduled_service": "no" + }, + { + "id": "329699", + "ident": "US-1004", + "type": "small_airport", + "name": "Noles Field", + "latitude_deg": "35.545278", + "longitude_deg": "-78.592778", + "elevation_ft": "279", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Angier", + "scheduled_service": "no", + "gps_code": "4NC2", + "local_code": "4NC2" + }, + { + "id": "329720", + "ident": "US-1005", + "type": "seaplane_base", + "name": "Sunnyside Seaplane Base", + "latitude_deg": "46.9717111", + "longitude_deg": "-94.568387", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hackensack", + "scheduled_service": "no", + "gps_code": "3MN5", + "local_code": "3MN5" + }, + { + "id": "329721", + "ident": "US-1006", + "type": "heliport", + "name": "Memorial Hospital of Lafayette County Heliport", + "latitude_deg": "42.684257", + "longitude_deg": "-90.109715", + "elevation_ft": "871", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Darlington", + "scheduled_service": "no", + "gps_code": "93WI", + "local_code": "93WI" + }, + { + "id": "329722", + "ident": "US-1007", + "type": "small_airport", + "name": "Crow Valley Airport", + "latitude_deg": "48.650361", + "longitude_deg": "-122.953586", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Eastsound", + "scheduled_service": "no", + "gps_code": "WA39", + "local_code": "WA39" + }, + { + "id": "329725", + "ident": "US-1008", + "type": "small_airport", + "name": "Gregg Airport", + "latitude_deg": "35.742167", + "longitude_deg": "-97.361257", + "elevation_ft": "1226", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Edmond", + "scheduled_service": "no", + "gps_code": "7OK1", + "local_code": "7OK1" + }, + { + "id": "329729", + "ident": "US-1009", + "type": "heliport", + "name": "Texas Childrens Downtown Heliport", + "latitude_deg": "29.708359", + "longitude_deg": "-95.402762", + "elevation_ft": "427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "7XS2", + "local_code": "7XS2" + }, + { + "id": "329730", + "ident": "US-1010", + "type": "small_airport", + "name": "Sunburst Field", + "latitude_deg": "40.0587833", + "longitude_deg": "-76.4376528", + "elevation_ft": "435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lancaster", + "scheduled_service": "no", + "gps_code": "4PA7", + "local_code": "4PA7" + }, + { + "id": "329740", + "ident": "US-1011", + "type": "heliport", + "name": "IU Health Morgan Heliport", + "latitude_deg": "39.425052", + "longitude_deg": "-86.404614", + "elevation_ft": "643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Martinsville", + "scheduled_service": "no", + "gps_code": "IN84", + "local_code": "IN84" + }, + { + "id": "329741", + "ident": "US-1012", + "type": "heliport", + "name": "Endless Mountains Health Systems Heliport", + "latitude_deg": "41.838092", + "longitude_deg": "-75.837361", + "elevation_ft": "1774", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Montrose", + "scheduled_service": "no", + "gps_code": "9PA1", + "local_code": "9PA1" + }, + { + "id": "329742", + "ident": "US-1013", + "type": "small_airport", + "name": "Bill Lee Memorial Airport", + "latitude_deg": "37.124789", + "longitude_deg": "-93.093217", + "elevation_ft": "1463", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Rogersville", + "scheduled_service": "no", + "gps_code": "MO18", + "local_code": "MO18" + }, + { + "id": "329743", + "ident": "US-1014", + "type": "heliport", + "name": "Primary Childrens Medical Center Heliport", + "latitude_deg": "40.771036", + "longitude_deg": "-111.839078", + "elevation_ft": "4953", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Salt Lake City", + "scheduled_service": "no", + "gps_code": "UT08", + "local_code": "UT08" + }, + { + "id": "329744", + "ident": "US-1015", + "type": "small_airport", + "name": "PL Fuller Rough Creek Ranch Airport", + "latitude_deg": "32.893325", + "longitude_deg": "-100.893908", + "elevation_ft": "2431", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Snyder", + "scheduled_service": "no", + "gps_code": "60XS", + "local_code": "60XS" + }, + { + "id": "331671", + "ident": "US-1016", + "type": "small_airport", + "name": "Irish Creek Airfield", + "latitude_deg": "37.880372", + "longitude_deg": "-97.887806", + "elevation_ft": "1512", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Hutchinson", + "scheduled_service": "no", + "gps_code": "SN51", + "local_code": "SN51" + }, + { + "id": "329805", + "ident": "US-1017", + "type": "heliport", + "name": "United States Military Academy Heliport", + "latitude_deg": "41.397662", + "longitude_deg": "-73.956403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "West Point", + "scheduled_service": "no", + "gps_code": "NY85", + "local_code": "NY85" + }, + { + "id": "329806", + "ident": "US-1018", + "type": "closed", + "name": "Elliott Homestead Landing Strip", + "latitude_deg": "42.244104", + "longitude_deg": "-74.699387", + "elevation_ft": "2025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Margaretville", + "scheduled_service": "no", + "keywords": "NY95" + }, + { + "id": "329837", + "ident": "US-1019", + "type": "closed", + "name": "Airlift Helicopters Heliport", + "latitude_deg": "39.616917", + "longitude_deg": "-119.895933", + "elevation_ft": "5355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Reno", + "scheduled_service": "no", + "keywords": "50NV" + }, + { + "id": "329841", + "ident": "US-1020", + "type": "closed", + "name": "Kardys Airport", + "latitude_deg": "29.576062", + "longitude_deg": "-98.246956", + "elevation_ft": "749", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cibolo", + "scheduled_service": "no", + "keywords": "15R" + }, + { + "id": "329850", + "ident": "US-1021", + "type": "small_airport", + "name": "D I's Cajun Restaurant Airport", + "latitude_deg": "30.368708", + "longitude_deg": "-92.583028", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Iota", + "scheduled_service": "no", + "local_code": "LA52" + }, + { + "id": "329861", + "ident": "US-1022", + "type": "small_airport", + "name": "Mount Moriah Field", + "latitude_deg": "34.116945", + "longitude_deg": "-93.6965", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Murfreesboro", + "scheduled_service": "no", + "gps_code": "02AR", + "local_code": "02AR" + }, + { + "id": "329874", + "ident": "US-1023", + "type": "heliport", + "name": "Illinois Wing & Rotor Heliport", + "latitude_deg": "39.897222", + "longitude_deg": "-88.142777", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Villa Grove", + "scheduled_service": "no", + "gps_code": "7IL5", + "local_code": "7IL5" + }, + { + "id": "329875", + "ident": "US-1024", + "type": "closed", + "name": "Keiley Ranch Strip Airport", + "latitude_deg": "46.778673", + "longitude_deg": "-112.665658", + "elevation_ft": "5200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Avon", + "scheduled_service": "no", + "keywords": "MT69" + }, + { + "id": "329879", + "ident": "US-1025", + "type": "small_airport", + "name": "Maverick Field", + "latitude_deg": "45.654367", + "longitude_deg": "-87.955158", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Pembine", + "scheduled_service": "no", + "gps_code": "WI90", + "local_code": "WI90" + }, + { + "id": "329883", + "ident": "US-1026", + "type": "small_airport", + "name": "Lander's Fork Ranch Airport", + "latitude_deg": "47.05362", + "longitude_deg": "-112.546111", + "elevation_ft": "5089", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "MT21", + "local_code": "MT21", + "keywords": "Nelson Ranch" + }, + { + "id": "329884", + "ident": "US-1027", + "type": "closed", + "name": "Hanson Field", + "latitude_deg": "40.622509", + "longitude_deg": "-99.640115", + "elevation_ft": "2470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Bertrand", + "scheduled_service": "no", + "keywords": "63NE" + }, + { + "id": "329885", + "ident": "US-1028", + "type": "closed", + "name": "Barton Oaks Heliport", + "latitude_deg": "30.263955", + "longitude_deg": "-97.780638", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "keywords": "9TA2" + }, + { + "id": "329886", + "ident": "US-1029", + "type": "closed", + "name": "Igloo Heliport", + "latitude_deg": "63.188748", + "longitude_deg": "-149.363855", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cantwell", + "scheduled_service": "no", + "keywords": "C36" + }, + { + "id": "329888", + "ident": "US-1030", + "type": "closed", + "name": "Hayesport Airport", + "latitude_deg": "33.543448", + "longitude_deg": "-96.975431", + "elevation_ft": "723", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Collinsville", + "scheduled_service": "no", + "keywords": "2T4" + }, + { + "id": "329890", + "ident": "US-1031", + "type": "closed", + "name": "Crists' Sky Ranch Airport", + "latitude_deg": "40.622226", + "longitude_deg": "-96.901972", + "elevation_ft": "1465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Crete", + "scheduled_service": "no", + "keywords": "7NE0" + }, + { + "id": "329893", + "ident": "US-1032", + "type": "closed", + "name": "Sportsmans Field", + "latitude_deg": "45.3538165", + "longitude_deg": "-111.7352525", + "elevation_ft": "4953", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Ennis", + "scheduled_service": "no", + "keywords": "05MT" + }, + { + "id": "329894", + "ident": "US-1033", + "type": "closed", + "name": "Donovan Airstrip", + "latitude_deg": "44.926931", + "longitude_deg": "-113.272078", + "elevation_ft": "6461", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Dillon", + "scheduled_service": "no" + }, + { + "id": "329895", + "ident": "US-1034", + "type": "closed", + "name": "Hirschy Landing Strip", + "latitude_deg": "45.438041", + "longitude_deg": "-113.435281", + "elevation_ft": "6466", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Jackson", + "scheduled_service": "no" + }, + { + "id": "329905", + "ident": "US-1035", + "type": "closed", + "name": "Hilltop Airport", + "latitude_deg": "33.605389", + "longitude_deg": "-84.655766", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fairburn", + "scheduled_service": "no", + "keywords": "89GA" + }, + { + "id": "329907", + "ident": "US-1036", + "type": "small_airport", + "name": "Fort Parker Flying Field", + "latitude_deg": "31.565251", + "longitude_deg": "-96.546095", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Groesbeck", + "scheduled_service": "no", + "gps_code": "01TS", + "local_code": "01TS" + }, + { + "id": "329908", + "ident": "US-1037", + "type": "small_airport", + "name": "Double H Ranch Airport", + "latitude_deg": "34.728253", + "longitude_deg": "-97.900578", + "elevation_ft": "1321", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Rush Springs", + "scheduled_service": "no", + "gps_code": "OK40", + "local_code": "OK40" + }, + { + "id": "329919", + "ident": "US-1038", + "type": "closed", + "name": "Conner Airport", + "latitude_deg": "35.097004", + "longitude_deg": "-115.221257", + "elevation_ft": "4108", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Goffs", + "scheduled_service": "no", + "keywords": "12L, 41CL" + }, + { + "id": "329923", + "ident": "US-1039", + "type": "closed", + "name": "Haynesville Airport", + "latitude_deg": "32.986107", + "longitude_deg": "-93.138785", + "elevation_ft": "348", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Haynesville", + "scheduled_service": "no", + "keywords": "5F3" + }, + { + "id": "329925", + "ident": "US-1040", + "type": "closed", + "name": "Ox Bow Ranch Airport", + "latitude_deg": "46.978202", + "longitude_deg": "-112.001854", + "elevation_ft": "3629", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Helena", + "scheduled_service": "no", + "keywords": "11MT" + }, + { + "id": "329926", + "ident": "US-1041", + "type": "closed", + "name": "Miami Gliderport Landing Strip", + "latitude_deg": "25.608162", + "longitude_deg": "-80.474778", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Homestead", + "scheduled_service": "no", + "keywords": "22FD" + }, + { + "id": "329927", + "ident": "US-1042", + "type": "closed", + "name": "Idabel Airport", + "latitude_deg": "33.904849", + "longitude_deg": "-94.845259", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Idabel", + "scheduled_service": "no", + "keywords": "KIBO, IBO" + }, + { + "id": "329929", + "ident": "US-1043", + "type": "closed", + "name": "Speedway Airport", + "latitude_deg": "39.799433", + "longitude_deg": "-86.356332", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Indianapolis", + "scheduled_service": "no", + "keywords": "3SY" + }, + { + "id": "329935", + "ident": "US-1044", + "type": "small_airport", + "name": "Good Life Ranch Airport", + "latitude_deg": "35.100344", + "longitude_deg": "-97.786225", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Chickasha", + "scheduled_service": "no", + "gps_code": "17OK", + "local_code": "17OK" + }, + { + "id": "329941", + "ident": "US-1045", + "type": "closed", + "name": "Rocky Ford STOLport", + "latitude_deg": "30.496351", + "longitude_deg": "-83.395114", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Madison", + "scheduled_service": "no", + "keywords": "7FD8" + }, + { + "id": "329942", + "ident": "US-1046", + "type": "heliport", + "name": "Moose Country Heliport", + "latitude_deg": "48.859575", + "longitude_deg": "-115.107441", + "elevation_ft": "3001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Rexford", + "scheduled_service": "no", + "gps_code": "MT07", + "local_code": "MT07" + }, + { + "id": "329943", + "ident": "US-1047", + "type": "closed", + "name": "Braman Heliport", + "latitude_deg": "26.761451", + "longitude_deg": "-80.050319", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "West Palm Beach", + "scheduled_service": "no", + "keywords": "6FL8" + }, + { + "id": "329944", + "ident": "US-1048", + "type": "closed", + "name": "Roberts Field", + "latitude_deg": "39.921731", + "longitude_deg": "-82.459043", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Thornville", + "scheduled_service": "no", + "keywords": "2OH3" + }, + { + "id": "329957", + "ident": "US-1049", + "type": "closed", + "name": "Ashley Airport", + "latitude_deg": "35.650111", + "longitude_deg": "-95.857941", + "elevation_ft": "731", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Morris", + "scheduled_service": "no", + "keywords": "O36" + }, + { + "id": "329959", + "ident": "US-1050", + "type": "closed", + "name": "Myrtle Creek Airport", + "latitude_deg": "67.215273", + "longitude_deg": "-149.981076", + "elevation_ft": "1670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Myrtle Creek", + "scheduled_service": "no", + "keywords": "60Z" + }, + { + "id": "329966", + "ident": "US-1051", + "type": "closed", + "name": "Florida Power Corp General HQ Helistop", + "latitude_deg": "27.7392", + "longitude_deg": "-82.681488", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St Petersburg", + "scheduled_service": "no", + "keywords": "02FL" + }, + { + "id": "329970", + "ident": "US-1052", + "type": "small_airport", + "name": "Howard Airfield", + "latitude_deg": "42.938527", + "longitude_deg": "-84.577182", + "elevation_ft": "761", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "St. Johns", + "scheduled_service": "no", + "gps_code": "25MI", + "local_code": "25MI" + }, + { + "id": "329973", + "ident": "US-1053", + "type": "small_airport", + "name": "Hiebert Airfield", + "latitude_deg": "38.215386", + "longitude_deg": "-97.3521847", + "elevation_ft": "1520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Goessel", + "scheduled_service": "no", + "gps_code": "38KS", + "local_code": "38KS" + }, + { + "id": "329978", + "ident": "US-1054", + "type": "heliport", + "name": "Orlando Health Central Horizons West Heliport", + "latitude_deg": "28.45803", + "longitude_deg": "-81.632976", + "elevation_ft": "106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Winter Garden", + "scheduled_service": "no", + "gps_code": "FL73", + "local_code": "FL73" + }, + { + "id": "330000", + "ident": "US-1055", + "type": "closed", + "name": "Craig Airport", + "latitude_deg": "32.916793", + "longitude_deg": "-97.1839", + "elevation_ft": "633", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Colleyville", + "scheduled_service": "no", + "keywords": "TX48" + }, + { + "id": "330004", + "ident": "US-1056", + "type": "closed", + "name": "Standish Industrial Airport", + "latitude_deg": "43.979745", + "longitude_deg": "-83.974159", + "elevation_ft": "623", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Standish", + "scheduled_service": "no", + "keywords": "Y75, Standish City" + }, + { + "id": "330010", + "ident": "US-1057", + "type": "small_airport", + "name": "Keutzer Airport", + "latitude_deg": "41.513367", + "longitude_deg": "-89.229531", + "elevation_ft": "798", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "La Moille", + "scheduled_service": "no", + "keywords": "19IL" + }, + { + "id": "330013", + "ident": "US-1058", + "type": "closed", + "name": "Grandpappy Point Landing Strip", + "latitude_deg": "33.851666", + "longitude_deg": "-96.643978", + "elevation_ft": "712", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pottsboro", + "scheduled_service": "no" + }, + { + "id": "330020", + "ident": "US-1059", + "type": "closed", + "name": "Pine Acres Airport", + "latitude_deg": "40.349854", + "longitude_deg": "-80.904326", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Hopedale", + "scheduled_service": "no", + "keywords": "09OH" + }, + { + "id": "330045", + "ident": "US-1060", + "type": "heliport", + "name": "David Grant USAF Medical Center Heliport", + "latitude_deg": "38.270296", + "longitude_deg": "-121.970902", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fairfield", + "scheduled_service": "no" + }, + { + "id": "330125", + "ident": "US-1061", + "type": "heliport", + "name": "Glascock Heliport", + "latitude_deg": "38.944455", + "longitude_deg": "-77.542183", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Arcola", + "scheduled_service": "no", + "gps_code": "98VA", + "local_code": "98VA" + }, + { + "id": "330127", + "ident": "US-1062", + "type": "small_airport", + "name": "Squaw Rock Airstrip", + "latitude_deg": "46.345021", + "longitude_deg": "-113.620536", + "elevation_ft": "4959", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Philipsburg", + "scheduled_service": "no", + "gps_code": "MT22", + "local_code": "MT22" + }, + { + "id": "330160", + "ident": "US-1063", + "type": "heliport", + "name": "Bannerman Heliport", + "latitude_deg": "30.562422", + "longitude_deg": "-84.221291", + "elevation_ft": "219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tallahassee", + "scheduled_service": "no", + "gps_code": "82FL", + "local_code": "82FL" + }, + { + "id": "330167", + "ident": "US-1064", + "type": "heliport", + "name": "Kettering Health Middletown Heliport", + "latitude_deg": "39.492222", + "longitude_deg": "-84.319166", + "elevation_ft": "723", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Middletown", + "scheduled_service": "no", + "gps_code": "3OH5", + "local_code": "3OH5" + }, + { + "id": "330168", + "ident": "US-1065", + "type": "heliport", + "name": "HCA Florida Capital Hospital Heliport", + "latitude_deg": "30.475936", + "longitude_deg": "-84.231006", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tallahassee", + "scheduled_service": "no", + "gps_code": "68FL", + "local_code": "68FL", + "keywords": "Tallahassee Community Hospital Heliport" + }, + { + "id": "330169", + "ident": "US-1066", + "type": "heliport", + "name": "Westgate Villas Helipad", + "latitude_deg": "28.331455", + "longitude_deg": "-81.593336", + "elevation_ft": "112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Kissimmee", + "scheduled_service": "no", + "gps_code": "FL63", + "local_code": "FL63" + }, + { + "id": "330170", + "ident": "US-1067", + "type": "seaplane_base", + "name": "Lake Sawyer Double EE Seaplane Base", + "latitude_deg": "47.333418", + "longitude_deg": "-122.033576", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Black Diamond", + "scheduled_service": "no", + "gps_code": "WA41", + "local_code": "WA41" + }, + { + "id": "330175", + "ident": "US-1068", + "type": "heliport", + "name": "Foley Heliport", + "latitude_deg": "40.736167", + "longitude_deg": "-80.039594", + "elevation_ft": "1037", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Callery", + "scheduled_service": "no", + "gps_code": "PA43", + "local_code": "PA43" + }, + { + "id": "330176", + "ident": "US-1069", + "type": "closed", + "name": "Birdhouse Heliport", + "latitude_deg": "47.601357", + "longitude_deg": "-117.235627", + "elevation_ft": "2341", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Spokane", + "scheduled_service": "no", + "keywords": "WA70" + }, + { + "id": "330178", + "ident": "US-1070", + "type": "heliport", + "name": "Sports Complex N Lot Heliport", + "latitude_deg": "39.901544", + "longitude_deg": "-75.161344", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "PA78", + "local_code": "PA78" + }, + { + "id": "330187", + "ident": "US-1071", + "type": "heliport", + "name": "Whiskey Lake Heliport", + "latitude_deg": "61.988741", + "longitude_deg": "-151.391211", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Skwentna", + "scheduled_service": "no", + "gps_code": "22AK", + "local_code": "22AK" + }, + { + "id": "330188", + "ident": "US-1072", + "type": "small_airport", + "name": "Hickman Airport", + "latitude_deg": "35.831105", + "longitude_deg": "-90.370414", + "elevation_ft": "258", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Black Oak", + "scheduled_service": "no", + "gps_code": "2AR8", + "local_code": "2AR8" + }, + { + "id": "330189", + "ident": "US-1073", + "type": "small_airport", + "name": "Garrison Airport", + "latitude_deg": "33.723611", + "longitude_deg": "-94.145277", + "elevation_ft": "329", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Ashdown", + "scheduled_service": "no", + "gps_code": "08AR", + "local_code": "08AR" + }, + { + "id": "330198", + "ident": "US-1074", + "type": "heliport", + "name": "St. Joseph's Hospital Heliport", + "latitude_deg": "43.055361", + "longitude_deg": "-76.150421", + "elevation_ft": "524", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Syracuse", + "scheduled_service": "no", + "gps_code": "43NY", + "local_code": "43NY" + }, + { + "id": "330199", + "ident": "US-1075", + "type": "heliport", + "name": "Kettering Emergency Center Preble Heliport", + "latitude_deg": "39.76637", + "longitude_deg": "-84.64822", + "elevation_ft": "1063", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Eaton", + "scheduled_service": "no", + "gps_code": "6OH3", + "local_code": "6OH3" + }, + { + "id": "330200", + "ident": "US-1076", + "type": "small_airport", + "name": "Don Brown Field", + "latitude_deg": "36.736666", + "longitude_deg": "-100.588888", + "elevation_ft": "2597", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Beaver", + "scheduled_service": "no", + "gps_code": "3OK6", + "local_code": "3OK6" + }, + { + "id": "330201", + "ident": "US-1077", + "type": "small_airport", + "name": "Tomahawk Airport", + "latitude_deg": "34.116098", + "longitude_deg": "-96.311968", + "elevation_ft": "718", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Caddo", + "scheduled_service": "no", + "gps_code": "9OK4", + "local_code": "9OK4" + }, + { + "id": "330204", + "ident": "US-1078", + "type": "small_airport", + "name": "Second F Airport", + "latitude_deg": "31.735331", + "longitude_deg": "-101.543178", + "elevation_ft": "2700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garden City", + "scheduled_service": "no", + "gps_code": "73XS", + "local_code": "73XS" + }, + { + "id": "330394", + "ident": "US-1079", + "type": "small_airport", + "name": "RNW Airport", + "latitude_deg": "33.014005", + "longitude_deg": "-97.70848", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paradise", + "scheduled_service": "no", + "gps_code": "0XA0", + "local_code": "0XA0" + }, + { + "id": "330458", + "ident": "US-1080", + "type": "small_airport", + "name": "Kuntz Restricted Landing Area", + "latitude_deg": "40.697944", + "longitude_deg": "-88.947", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Gridley", + "scheduled_service": "no", + "gps_code": "3IL8", + "local_code": "3IL8" + }, + { + "id": "330485", + "ident": "US-1081", + "type": "small_airport", + "name": "Teubel Restricted Landing Area", + "latitude_deg": "40.879852", + "longitude_deg": "-89.723109", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Dunlap", + "scheduled_service": "no", + "gps_code": "65IL", + "local_code": "65IL" + }, + { + "id": "330488", + "ident": "US-1082", + "type": "heliport", + "name": "Clarion North Medical Center Heliport", + "latitude_deg": "39.958587", + "longitude_deg": "-86.158947", + "elevation_ft": "849", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Carmel", + "scheduled_service": "no", + "gps_code": "IN73", + "local_code": "IN73" + }, + { + "id": "330493", + "ident": "US-1083", + "type": "heliport", + "name": "Kettering Health Troy Heliport", + "latitude_deg": "40.043815", + "longitude_deg": "-84.210994", + "elevation_ft": "831", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "OH17", + "local_code": "OH17" + }, + { + "id": "330495", + "ident": "US-1084", + "type": "heliport", + "name": "Los Alamos Medical Center Heliport", + "latitude_deg": "35.881661", + "longitude_deg": "-106.317528", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Los Alamos", + "scheduled_service": "no", + "gps_code": "NM15", + "local_code": "NM15" + }, + { + "id": "330499", + "ident": "US-1085", + "type": "small_airport", + "name": "Flying W Airport", + "latitude_deg": "42.783162", + "longitude_deg": "-75.165875", + "elevation_ft": "1420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Burlington Flats", + "scheduled_service": "no", + "gps_code": "NY78", + "local_code": "NY78" + }, + { + "id": "330598", + "ident": "US-1086", + "type": "heliport", + "name": "AdventHealth Apopka Heliport", + "latitude_deg": "28.649692", + "longitude_deg": "-81.541483", + "elevation_ft": "123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Apopka", + "scheduled_service": "no", + "gps_code": "1FA2", + "local_code": "1FA2", + "home_link": "https://www.swalihkmusa.com" + }, + { + "id": "330671", + "ident": "US-1087", + "type": "seaplane_base", + "name": "Yellowstone Seaplane Base", + "latitude_deg": "44.830001", + "longitude_deg": "-111.2875", + "elevation_ft": "6534", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "West Yellowstone", + "scheduled_service": "no", + "local_code": "8M3" + }, + { + "id": "330680", + "ident": "US-1088", + "type": "heliport", + "name": "Jonathan and Julianne Mabry Heliport", + "latitude_deg": "41.34305", + "longitude_deg": "-89.436595", + "elevation_ft": "663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "IL58", + "local_code": "IL58" + }, + { + "id": "330681", + "ident": "US-1089", + "type": "heliport", + "name": "Kitzmiller Landing Zone Heliport", + "latitude_deg": "39.388643", + "longitude_deg": "-79.181559", + "elevation_ft": "1608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Kitzmiller", + "scheduled_service": "no", + "gps_code": "MD07", + "local_code": "MD07" + }, + { + "id": "330686", + "ident": "US-1090", + "type": "small_airport", + "name": "Knokey Field", + "latitude_deg": "44.532319", + "longitude_deg": "-122.982869", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "6OR8", + "local_code": "6OR8" + }, + { + "id": "330687", + "ident": "US-1091", + "type": "heliport", + "name": "Marion General Hospital Heliport", + "latitude_deg": "40.56461", + "longitude_deg": "-85.665497", + "elevation_ft": "837", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "5IN7", + "local_code": "5IN7" + }, + { + "id": "330688", + "ident": "US-1092", + "type": "small_airport", + "name": "The Farm Airport", + "latitude_deg": "44.4825", + "longitude_deg": "-91.6225", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Mondovi", + "scheduled_service": "no", + "gps_code": "94WI", + "local_code": "94WI" + }, + { + "id": "330696", + "ident": "US-1093", + "type": "heliport", + "name": "AdventHealth Daytona Beach Heliport", + "latitude_deg": "29.24373", + "longitude_deg": "-81.107147", + "elevation_ft": "287", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Daytona Beach", + "scheduled_service": "no", + "gps_code": "4FL6", + "local_code": "4FL6" + }, + { + "id": "330697", + "ident": "US-1094", + "type": "small_airport", + "name": "Steppler Field", + "latitude_deg": "47.980443", + "longitude_deg": "-104.70888", + "elevation_ft": "2112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Culbertson", + "scheduled_service": "no", + "gps_code": "02MT", + "local_code": "02MT" + }, + { + "id": "330699", + "ident": "US-1095", + "type": "heliport", + "name": "Billings Flying Service Heliport", + "latitude_deg": "45.809186", + "longitude_deg": "-108.570514", + "elevation_ft": "3671", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Billings", + "scheduled_service": "no", + "gps_code": "03MT", + "local_code": "03MT" + }, + { + "id": "330702", + "ident": "US-1096", + "type": "small_airport", + "name": "Okemah Municipal Airport", + "latitude_deg": "35.4052694", + "longitude_deg": "-96.3055389", + "elevation_ft": "876", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Okemah", + "scheduled_service": "no", + "local_code": "F81", + "keywords": "Okemah Flying Field" + }, + { + "id": "330814", + "ident": "US-1097", + "type": "small_airport", + "name": "Spring Creek Field", + "latitude_deg": "31.901926", + "longitude_deg": "-97.854787", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Iredell", + "scheduled_service": "no", + "gps_code": "79TX", + "local_code": "79TX" + }, + { + "id": "330819", + "ident": "US-1098", + "type": "closed", + "name": "Big Flat Airstrip", + "latitude_deg": "45.040686", + "longitude_deg": "-119.571947", + "elevation_ft": "4392", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "\"Big\" Rock Flat", + "scheduled_service": "no" + }, + { + "id": "330893", + "ident": "US-1099", + "type": "closed", + "name": "Los Muertos Airport", + "latitude_deg": "30.20437", + "longitude_deg": "-103.251083", + "elevation_ft": "4034", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no", + "keywords": "6TE2" + }, + { + "id": "330938", + "ident": "US-1100", + "type": "small_airport", + "name": "Dug Bar Airport", + "latitude_deg": "45.805833", + "longitude_deg": "-116.6886889", + "elevation_ft": "1022", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Imnaha", + "scheduled_service": "no", + "local_code": "OR8" + }, + { + "id": "330939", + "ident": "US-1101", + "type": "small_airport", + "name": "Bobbitt Airport", + "latitude_deg": "36.618888", + "longitude_deg": "-97.535", + "elevation_ft": "1033", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lamont", + "scheduled_service": "no", + "gps_code": "02OK", + "local_code": "02OK" + }, + { + "id": "330944", + "ident": "US-1102", + "type": "small_airport", + "name": "Lord Flat Airport", + "latitude_deg": "45.666461", + "longitude_deg": "-116.618358", + "elevation_ft": "5594", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Imnaha", + "scheduled_service": "no", + "local_code": "OR9" + }, + { + "id": "330959", + "ident": "US-1103", + "type": "small_airport", + "name": "Viskup Family Field", + "latitude_deg": "36.611206", + "longitude_deg": "-96.097895", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Bartlesville", + "scheduled_service": "no", + "gps_code": "0OK2", + "local_code": "0OK2" + }, + { + "id": "330960", + "ident": "US-1104", + "type": "heliport", + "name": "Air Evac 133 Heliport", + "latitude_deg": "38.645501", + "longitude_deg": "-84.582222", + "elevation_ft": "941", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Williamstown", + "scheduled_service": "no", + "gps_code": "06KY", + "local_code": "06KY" + }, + { + "id": "330982", + "ident": "US-1105", + "type": "heliport", + "name": "Orlando Crossings Heliport", + "latitude_deg": "28.462666", + "longitude_deg": "-81.455259", + "elevation_ft": "142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "2FL5", + "local_code": "2FL5" + }, + { + "id": "331676", + "ident": "US-1106", + "type": "small_airport", + "name": "Sojourner Field", + "latitude_deg": "41.375261", + "longitude_deg": "-87.079883", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Kouts", + "scheduled_service": "no", + "gps_code": "IN04", + "local_code": "IN04" + }, + { + "id": "331077", + "ident": "US-1107", + "type": "small_airport", + "name": "Papas Dream Airport", + "latitude_deg": "37.2981431", + "longitude_deg": "-95.262931", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Parsons", + "scheduled_service": "no", + "gps_code": "39KS", + "local_code": "39KS" + }, + { + "id": "331687", + "ident": "US-1108", + "type": "seaplane_base", + "name": "Lake Shafer Seaplane Base", + "latitude_deg": "40.799039", + "longitude_deg": "-86.776961", + "elevation_ft": "655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Monticello", + "scheduled_service": "no", + "local_code": "I00" + }, + { + "id": "331114", + "ident": "US-1109", + "type": "small_airport", + "name": "Gary Stark Airport", + "latitude_deg": "27.405008", + "longitude_deg": "-80.811469", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Okeechobee", + "scheduled_service": "no", + "gps_code": "5FL6", + "local_code": "5FL6" + }, + { + "id": "331115", + "ident": "US-1110", + "type": "small_airport", + "name": "Old Boston Airport", + "latitude_deg": "39.027504", + "longitude_deg": "-84.046835", + "elevation_ft": "896", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Williamsburg", + "scheduled_service": "no", + "gps_code": "66OH", + "local_code": "66OH" + }, + { + "id": "331118", + "ident": "US-1111", + "type": "heliport", + "name": "Pickens County Medical Center Heliport", + "latitude_deg": "33.274242", + "longitude_deg": "-88.089355", + "elevation_ft": "239", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Carrollton", + "scheduled_service": "no", + "gps_code": "AL01", + "local_code": "AL01" + }, + { + "id": "331123", + "ident": "US-1112", + "type": "heliport", + "name": "Orlando Health ER & Medical Pavilion Heliport", + "latitude_deg": "28.339807", + "longitude_deg": "-81.395217", + "elevation_ft": "91", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Kissimmee", + "scheduled_service": "no", + "gps_code": "FL06", + "local_code": "FL06" + }, + { + "id": "331124", + "ident": "US-1113", + "type": "small_airport", + "name": "Besch Airport", + "latitude_deg": "42.973694", + "longitude_deg": "-94.035902", + "elevation_ft": "1165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Corwith", + "scheduled_service": "no", + "gps_code": "IA18", + "local_code": "IA18" + }, + { + "id": "331126", + "ident": "US-1114", + "type": "small_airport", + "name": "Stagecoach Airport", + "latitude_deg": "41.6052", + "longitude_deg": "-94.6161778", + "elevation_ft": "1395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Adair", + "scheduled_service": "no", + "gps_code": "IA43", + "local_code": "IA43" + }, + { + "id": "331132", + "ident": "US-1115", + "type": "small_airport", + "name": "Poplar Point Airport", + "latitude_deg": "42.925555", + "longitude_deg": "-115.757222", + "elevation_ft": "2525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Bruneau", + "scheduled_service": "no", + "gps_code": "ID42", + "local_code": "ID42" + }, + { + "id": "331135", + "ident": "US-1116", + "type": "small_airport", + "name": "Cougar Ranch Airport", + "latitude_deg": "44.741389", + "longitude_deg": "-114.918472", + "elevation_ft": "4276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Challis", + "scheduled_service": "no", + "local_code": "D47", + "keywords": "ID45" + }, + { + "id": "331197", + "ident": "US-1117", + "type": "small_airport", + "name": "Black Landing Field", + "latitude_deg": "40.372425", + "longitude_deg": "-76.743848", + "elevation_ft": "544", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Linglestown", + "scheduled_service": "no", + "gps_code": "PA44", + "local_code": "PA44" + }, + { + "id": "331199", + "ident": "US-1118", + "type": "heliport", + "name": "Freedom Helipad", + "latitude_deg": "39.552157", + "longitude_deg": "-119.836323", + "elevation_ft": "4850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Reno", + "scheduled_service": "no", + "gps_code": "NV77", + "local_code": "NV77", + "keywords": "Pathfinder" + }, + { + "id": "331203", + "ident": "US-1119", + "type": "small_airport", + "name": "Racecar Airport", + "latitude_deg": "35.671375", + "longitude_deg": "-86.721527", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Chapel Hill", + "scheduled_service": "no", + "gps_code": "TN27", + "local_code": "TN27" + }, + { + "id": "331205", + "ident": "US-1120", + "type": "small_airport", + "name": "TK Farms Airport", + "latitude_deg": "36.0575", + "longitude_deg": "-86.3955", + "elevation_ft": "556", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "TN26", + "local_code": "TN26" + }, + { + "id": "331206", + "ident": "US-1121", + "type": "heliport", + "name": "Worcester Heliport", + "latitude_deg": "40.192184", + "longitude_deg": "-75.313836", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Worcester", + "scheduled_service": "no", + "gps_code": "11PA", + "local_code": "11PA" + }, + { + "id": "331207", + "ident": "US-1122", + "type": "heliport", + "name": "Johanson Estate Heliport", + "latitude_deg": "40.906897", + "longitude_deg": "-73.515958", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Oyster Bay", + "scheduled_service": "no", + "gps_code": "NY38", + "local_code": "NY38" + }, + { + "id": "331208", + "ident": "US-1123", + "type": "small_airport", + "name": "Greensburg Municipal Airport", + "latitude_deg": "37.6227", + "longitude_deg": "-99.228377", + "elevation_ft": "2192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Greensburg", + "scheduled_service": "no", + "local_code": "9KS" + }, + { + "id": "331209", + "ident": "US-1124", + "type": "small_airport", + "name": "Coyote Run Airport", + "latitude_deg": "36.720351", + "longitude_deg": "-97.610781", + "elevation_ft": "1056", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lamont", + "scheduled_service": "no", + "gps_code": "48OK", + "local_code": "48OK" + }, + { + "id": "331705", + "ident": "US-1125", + "type": "small_airport", + "name": "Self Forward Landing Strip", + "latitude_deg": "31.117022", + "longitude_deg": "-93.154317", + "elevation_ft": "368", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Leesville", + "scheduled_service": "no", + "gps_code": "19LA", + "local_code": "19LA" + }, + { + "id": "332435", + "ident": "US-1126", + "type": "heliport", + "name": "Power County Hospital District Heliport", + "latitude_deg": "42.781421", + "longitude_deg": "-112.849347", + "elevation_ft": "4458", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "American Falls", + "scheduled_service": "no", + "gps_code": "ID34", + "local_code": "ID34" + }, + { + "id": "331776", + "ident": "US-1127", + "type": "heliport", + "name": "Simi Valley Hospital Heliport", + "latitude_deg": "34.289189", + "longitude_deg": "-118.746008", + "elevation_ft": "1045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Simi Valley", + "scheduled_service": "no", + "gps_code": "CA75", + "local_code": "CA75" + }, + { + "id": "331777", + "ident": "US-1128", + "type": "small_airport", + "name": "Ponca Int Airport", + "latitude_deg": "36.052361", + "longitude_deg": "-93.367325", + "elevation_ft": "2301", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Ponca", + "scheduled_service": "no", + "gps_code": "37AR", + "local_code": "37AR" + }, + { + "id": "331779", + "ident": "US-1129", + "type": "heliport", + "name": "Rotor-Lift Heliport", + "latitude_deg": "42.870225", + "longitude_deg": "-83.823705", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Swartz Creek", + "scheduled_service": "no", + "gps_code": "45MI", + "local_code": "45MI" + }, + { + "id": "331781", + "ident": "US-1130", + "type": "heliport", + "name": "Princeton Medical Center Heliport", + "latitude_deg": "40.340136", + "longitude_deg": "-74.625608", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "45NJ", + "local_code": "45NJ" + }, + { + "id": "331782", + "ident": "US-1131", + "type": "small_airport", + "name": "Willow ConocoPhillips Airport", + "latitude_deg": "70.110889", + "longitude_deg": "-152.12975", + "elevation_ft": "101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nuiqsut", + "scheduled_service": "no", + "gps_code": "42AK", + "local_code": "42AK" + }, + { + "id": "331809", + "ident": "US-1132", + "type": "small_airport", + "name": "Seib Airport", + "latitude_deg": "38.133139", + "longitude_deg": "-87.785764", + "elevation_ft": "428", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Poseyville", + "scheduled_service": "no", + "gps_code": "88IN", + "local_code": "88IN" + }, + { + "id": "331811", + "ident": "US-1133", + "type": "heliport", + "name": "Air One Helo Heliport", + "latitude_deg": "30.750556", + "longitude_deg": "-91.1575", + "elevation_ft": "143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Slaughter", + "scheduled_service": "no", + "gps_code": "1LA2", + "local_code": "1LA2" + }, + { + "id": "331812", + "ident": "US-1134", + "type": "small_airport", + "name": "M-4 Airport", + "latitude_deg": "30.403611", + "longitude_deg": "-95.438889", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Willis", + "scheduled_service": "no", + "gps_code": "32TE", + "local_code": "32TE" + }, + { + "id": "331820", + "ident": "US-1135", + "type": "heliport", + "name": "Bristow US LLC Heliport", + "latitude_deg": "29.295965", + "longitude_deg": "-89.372424", + "elevation_ft": "-1", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no", + "gps_code": "45LA", + "local_code": "45LA" + }, + { + "id": "331909", + "ident": "US-1136", + "type": "small_airport", + "name": "Lejeune Aerial Applications Airport", + "latitude_deg": "30.491835", + "longitude_deg": "-92.572846", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Basile", + "scheduled_service": "no", + "gps_code": "10LS", + "local_code": "10LS" + }, + { + "id": "331998", + "ident": "US-1137", + "type": "small_airport", + "name": "Rambo Airfield", + "latitude_deg": "38.524404", + "longitude_deg": "-77.686389", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Warrenton", + "scheduled_service": "no", + "gps_code": "0VA0", + "local_code": "0VA0" + }, + { + "id": "332000", + "ident": "US-1138", + "type": "small_airport", + "name": "Shorten Airfield", + "latitude_deg": "39.931731", + "longitude_deg": "-92.575156", + "elevation_ft": "898", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "MU06", + "local_code": "MU06" + }, + { + "id": "332003", + "ident": "US-1139", + "type": "heliport", + "name": "UCMC Air Care Walton Heliport", + "latitude_deg": "38.85303", + "longitude_deg": "-84.616604", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Walton", + "scheduled_service": "no", + "gps_code": "16KY", + "local_code": "16KY" + }, + { + "id": "332053", + "ident": "US-1140", + "type": "small_airport", + "name": "Powell Kaiser Airport", + "latitude_deg": "40.36302", + "longitude_deg": "-79.165909", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bolivar", + "scheduled_service": "no", + "gps_code": "01PA", + "local_code": "01PA" + }, + { + "id": "332086", + "ident": "US-1141", + "type": "heliport", + "name": "Leading Edge San Marcos Heliport", + "latitude_deg": "29.802406", + "longitude_deg": "-98.014838", + "elevation_ft": "673", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Marcos", + "scheduled_service": "no", + "gps_code": "67TA", + "local_code": "67TA", + "keywords": "san marcos, leading edge" + }, + { + "id": "332087", + "ident": "US-1142", + "type": "small_airport", + "name": "Bountiful Acres Airport", + "latitude_deg": "42.700167", + "longitude_deg": "-88.7125", + "elevation_ft": "975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Delavan", + "scheduled_service": "no", + "gps_code": "6WI3", + "local_code": "6WI3" + }, + { + "id": "332161", + "ident": "US-1143", + "type": "small_airport", + "name": "Heathcliff Airpark", + "latitude_deg": "40.622447", + "longitude_deg": "-82.252514", + "elevation_ft": "1033", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Loudonville", + "scheduled_service": "no", + "gps_code": "7OH7", + "local_code": "7OH7" + }, + { + "id": "332436", + "ident": "US-1144", + "type": "small_airport", + "name": "Thurmond Airport", + "latitude_deg": "31.917644", + "longitude_deg": "-108.780719", + "elevation_ft": "4477", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Animas", + "scheduled_service": "no", + "gps_code": "NM12", + "local_code": "NM12" + }, + { + "id": "332480", + "ident": "US-1145", + "type": "small_airport", + "name": "Wild Billy Airport", + "latitude_deg": "42.492816", + "longitude_deg": "-121.32015", + "elevation_ft": "4508", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Beatty", + "scheduled_service": "no", + "gps_code": "OR29", + "local_code": "OR29" + }, + { + "id": "332214", + "ident": "US-1146", + "type": "seaplane_base", + "name": "Port Angeles Seaplane Base", + "latitude_deg": "48.118585", + "longitude_deg": "-123.419576", + "elevation_ft": "1", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Port Angeles", + "scheduled_service": "no", + "local_code": "W66" + }, + { + "id": "332218", + "ident": "US-1147", + "type": "small_airport", + "name": "Forrest River Airport", + "latitude_deg": "44.891058", + "longitude_deg": "-85.889247", + "elevation_ft": "648", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Maple City", + "scheduled_service": "no", + "gps_code": "MI02", + "local_code": "MI02" + }, + { + "id": "332247", + "ident": "US-1148", + "type": "heliport", + "name": "Henderson Hospital Heliport", + "latitude_deg": "36.072294", + "longitude_deg": "-115.029647", + "elevation_ft": "1664", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Henderson", + "scheduled_service": "no", + "gps_code": "32NV", + "local_code": "32NV" + }, + { + "id": "332484", + "ident": "US-1149", + "type": "small_airport", + "name": "Hillbillies Airport", + "latitude_deg": "39.027183", + "longitude_deg": "-97.959355", + "elevation_ft": "1336", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Beverly", + "scheduled_service": "no", + "gps_code": "72KS", + "local_code": "72KS" + }, + { + "id": "332504", + "ident": "US-1150", + "type": "small_airport", + "name": "Clover Crest Airpark", + "latitude_deg": "46.370717", + "longitude_deg": "-111.285456", + "elevation_ft": "5278", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Townsend", + "scheduled_service": "no", + "gps_code": "MT24", + "local_code": "MT24" + }, + { + "id": "332505", + "ident": "US-1151", + "type": "heliport", + "name": "Riverside County Sheriff Thermal Heliport", + "latitude_deg": "33.639378", + "longitude_deg": "-116.153028", + "elevation_ft": "-117", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Thermal", + "scheduled_service": "no", + "gps_code": "1CA2", + "local_code": "1CA2" + }, + { + "id": "332506", + "ident": "US-1152", + "type": "heliport", + "name": "FOB Westbrook Heliport", + "latitude_deg": "32.03422", + "longitude_deg": "-106.14938", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Chaparral", + "scheduled_service": "no" + }, + { + "id": "332727", + "ident": "US-1153", + "type": "heliport", + "name": "Northeastern Nevada Regional Hospital Heliport", + "latitude_deg": "40.824431", + "longitude_deg": "-115.729981", + "elevation_ft": "5265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Elko", + "scheduled_service": "no", + "gps_code": "NV20", + "local_code": "NV20" + }, + { + "id": "332729", + "ident": "US-1154", + "type": "heliport", + "name": "Freedom Lake Center Heliport", + "latitude_deg": "39.899777", + "longitude_deg": "-74.935472", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Evesham", + "scheduled_service": "no", + "gps_code": "80NJ", + "local_code": "80NJ" + }, + { + "id": "332758", + "ident": "US-1155", + "type": "heliport", + "name": "Good Samaritan Medical Center Heliport", + "latitude_deg": "39.203055", + "longitude_deg": "-84.670558", + "elevation_ft": "668", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cincinnati", + "scheduled_service": "no", + "gps_code": "00OH", + "local_code": "00OH" + }, + { + "id": "332762", + "ident": "US-1156", + "type": "heliport", + "name": "Healthpark of Florida Emergency Helistop", + "latitude_deg": "26.5081", + "longitude_deg": "-81.913213", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Myers", + "scheduled_service": "no", + "gps_code": "3FL9", + "local_code": "3FL9" + }, + { + "id": "332763", + "ident": "US-1157", + "type": "small_airport", + "name": "Ragmuff Airport", + "latitude_deg": "46.019586", + "longitude_deg": "-69.533819", + "elevation_ft": "1046", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "ME26", + "local_code": "ME26" + }, + { + "id": "332766", + "ident": "US-1158", + "type": "small_airport", + "name": "Echols Field", + "latitude_deg": "38.334444", + "longitude_deg": "-79.160555", + "elevation_ft": "1782", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Mount Solon", + "scheduled_service": "no", + "gps_code": "16VA", + "local_code": "16VA" + }, + { + "id": "332768", + "ident": "US-1159", + "type": "small_airport", + "name": "STOL Airport", + "latitude_deg": "44.691873", + "longitude_deg": "-92.680278", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Prescott", + "scheduled_service": "no", + "gps_code": "65WI", + "local_code": "65WI" + }, + { + "id": "25069", + "ident": "US-1160", + "type": "closed", + "name": "Flying Cap Valley Airport", + "latitude_deg": "32.936501", + "longitude_deg": "-97.1353", + "elevation_ft": "638", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Grapevine", + "scheduled_service": "no", + "keywords": "TS53" + }, + { + "id": "332775", + "ident": "US-1161", + "type": "small_airport", + "name": "Elkwood Airpark", + "latitude_deg": "34.979659", + "longitude_deg": "-86.683974", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Hazel Green", + "scheduled_service": "no", + "gps_code": "AL99", + "local_code": "AL99" + }, + { + "id": "332776", + "ident": "US-1162", + "type": "small_airport", + "name": "Devoe Airport", + "latitude_deg": "40.331667", + "longitude_deg": "-104.579167", + "elevation_ft": "4770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Kersey", + "scheduled_service": "no", + "gps_code": "9CO7", + "local_code": "9CO7" + }, + { + "id": "332777", + "ident": "US-1163", + "type": "heliport", + "name": "Baraga County Memorial Hospital Heliport", + "latitude_deg": "46.7317", + "longitude_deg": "-88.423505", + "elevation_ft": "985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "L'Anse", + "scheduled_service": "no", + "gps_code": "MI43", + "local_code": "MI43" + }, + { + "id": "332782", + "ident": "US-1164", + "type": "small_airport", + "name": "Plunkett Aviation Services Inc Airport", + "latitude_deg": "32.608273", + "longitude_deg": "-91.382797", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Providence", + "scheduled_service": "no", + "gps_code": "46LA", + "local_code": "46LA", + "keywords": "Monticello" + }, + { + "id": "332786", + "ident": "US-1165", + "type": "heliport", + "name": "Pershing General Hospital Heliport", + "latitude_deg": "40.176367", + "longitude_deg": "-118.481444", + "elevation_ft": "4270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Lovelock", + "scheduled_service": "no", + "gps_code": "NV19", + "local_code": "NV19" + }, + { + "id": "332796", + "ident": "US-1166", + "type": "heliport", + "name": "Meaker RLA Heliport", + "latitude_deg": "41.074303", + "longitude_deg": "-89.760353", + "elevation_ft": "723", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Wyoming", + "scheduled_service": "no", + "gps_code": "3IL5", + "local_code": "3IL5" + }, + { + "id": "349755", + "ident": "US-1167", + "type": "small_airport", + "name": "Trinkle Agricultural Flying Airport", + "latitude_deg": "36.47794", + "longitude_deg": "-119.51948", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Kingsburg", + "scheduled_service": "no" + }, + { + "id": "332814", + "ident": "US-1168", + "type": "closed", + "name": "Walash Heliport", + "latitude_deg": "41.3255", + "longitude_deg": "-74.307", + "elevation_ft": "592", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Chester", + "scheduled_service": "no", + "keywords": "5NY9" + }, + { + "id": "332815", + "ident": "US-1169", + "type": "heliport", + "name": "Holzer Emergency Medical Facility Heliport", + "latitude_deg": "39.055847", + "longitude_deg": "-82.013892", + "elevation_ft": "703", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Pomeroy", + "scheduled_service": "no", + "gps_code": "9OH6", + "local_code": "9OH6" + }, + { + "id": "332817", + "ident": "US-1170", + "type": "small_airport", + "name": "Agape Farm Airport", + "latitude_deg": "44.060389", + "longitude_deg": "-120.798778", + "elevation_ft": "4003", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Prineville", + "scheduled_service": "no", + "gps_code": "OR42", + "local_code": "OR42" + }, + { + "id": "332820", + "ident": "US-1171", + "type": "small_airport", + "name": "Landeplatz Airport", + "latitude_deg": "44.228889", + "longitude_deg": "-94.415278", + "elevation_ft": "995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Searles", + "scheduled_service": "no", + "gps_code": "MN88", + "local_code": "MN88" + }, + { + "id": "332821", + "ident": "US-1172", + "type": "heliport", + "name": "Presbyterian Santa Fe Medical Center Heliport", + "latitude_deg": "35.616135", + "longitude_deg": "-106.026274", + "elevation_ft": "6433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Santa Fe", + "scheduled_service": "no", + "gps_code": "NM21", + "local_code": "NM21" + }, + { + "id": "332822", + "ident": "US-1173", + "type": "small_airport", + "name": "Grave-King Airport", + "latitude_deg": "42.675514", + "longitude_deg": "-123.189833", + "elevation_ft": "2570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Rogue River", + "scheduled_service": "no", + "gps_code": "OR44", + "local_code": "OR44" + }, + { + "id": "332825", + "ident": "US-1174", + "type": "heliport", + "name": "Saint Davids Healthcare Heliport", + "latitude_deg": "30.224917", + "longitude_deg": "-97.774785", + "elevation_ft": "786", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "5TX5", + "local_code": "5TX5" + }, + { + "id": "332826", + "ident": "US-1175", + "type": "small_airport", + "name": "Marble Creek Airstrip", + "latitude_deg": "44.773472", + "longitude_deg": "-114.985278", + "elevation_ft": "4685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Challis", + "scheduled_service": "no", + "local_code": "ID8", + "home_link": "https://idahoaviation.com/idaho-airstrip-detail.php?id=338", + "keywords": "Mitchell Ranch IDFG" + }, + { + "id": "332827", + "ident": "US-1176", + "type": "heliport", + "name": "Our Lady of the Lake Children's Hospital Heliport", + "latitude_deg": "30.401158", + "longitude_deg": "-91.097064", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no", + "gps_code": "23LS", + "local_code": "23LS" + }, + { + "id": "333042", + "ident": "US-1177", + "type": "heliport", + "name": "Camden Tower Heliport", + "latitude_deg": "39.948372", + "longitude_deg": "-75.130337", + "elevation_ft": "297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Camden", + "scheduled_service": "no", + "gps_code": "NJ02", + "local_code": "NJ02" + }, + { + "id": "333062", + "ident": "US-1178", + "type": "closed", + "name": "J D Milton Farm Airport", + "latitude_deg": "30.884769", + "longitude_deg": "-85.190048", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Greenwood", + "scheduled_service": "no", + "keywords": "FL36" + }, + { + "id": "333101", + "ident": "US-1179", + "type": "small_airport", + "name": "Polecat Aerodrome", + "latitude_deg": "33.53771", + "longitude_deg": "-81.599107", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Aiken", + "scheduled_service": "no", + "gps_code": "SC67", + "local_code": "SC67" + }, + { + "id": "333102", + "ident": "US-1180", + "type": "heliport", + "name": "Richard E. Jacobs Health Center Heliport", + "latitude_deg": "41.469964", + "longitude_deg": "-81.9812", + "elevation_ft": "632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Avon", + "scheduled_service": "no", + "gps_code": "1OH4", + "local_code": "1OH4" + }, + { + "id": "333112", + "ident": "US-1181", + "type": "closed", + "name": "The Pinnacle Ranch Airport", + "latitude_deg": "43.228304", + "longitude_deg": "-117.496119", + "elevation_ft": "2710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Jordan Valley", + "scheduled_service": "no", + "keywords": "OR13" + }, + { + "id": "333201", + "ident": "US-1182", + "type": "heliport", + "name": "Parkview Wabash Hospital Heliport", + "latitude_deg": "40.819961", + "longitude_deg": "-85.824131", + "elevation_ft": "789", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Wabash", + "scheduled_service": "no", + "gps_code": "IN89", + "local_code": "IN89" + }, + { + "id": "333202", + "ident": "US-1183", + "type": "heliport", + "name": "Cleveland Clinic, Twinsburg Family Health Center Heliport", + "latitude_deg": "41.301221", + "longitude_deg": "-81.436924", + "elevation_ft": "1041", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Twinsburg", + "scheduled_service": "no", + "gps_code": "4OH5", + "local_code": "4OH5" + }, + { + "id": "333318", + "ident": "US-1184", + "type": "closed", + "name": "Ragged Mountain Airport", + "latitude_deg": "39.817206", + "longitude_deg": "-78.480449", + "elevation_ft": "1029", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Chaneysville", + "scheduled_service": "no", + "keywords": "32PA" + }, + { + "id": "333329", + "ident": "US-1185", + "type": "small_airport", + "name": "Ala Doble Airport", + "latitude_deg": "38.653343", + "longitude_deg": "-122.028258", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Esparto", + "scheduled_service": "no", + "gps_code": "CA34", + "local_code": "CA34" + }, + { + "id": "333330", + "ident": "US-1186", + "type": "heliport", + "name": "Saint Agnes Medical Center Heliport", + "latitude_deg": "36.835911", + "longitude_deg": "-119.764797", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fresno", + "scheduled_service": "no", + "gps_code": "CA96", + "local_code": "CA96" + }, + { + "id": "333339", + "ident": "US-1187", + "type": "small_airport", + "name": "Santa Cruz Ranch Airstrip", + "latitude_deg": "33.989461", + "longitude_deg": "-119.680177", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Cruz Island", + "scheduled_service": "no", + "gps_code": "44CA", + "local_code": "44CA" + }, + { + "id": "333341", + "ident": "US-1188", + "type": "heliport", + "name": "Sonora Regional Medical Center Heliport", + "latitude_deg": "37.977058", + "longitude_deg": "-120.371939", + "elevation_ft": "2085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sonora", + "scheduled_service": "no", + "gps_code": "33CA", + "local_code": "33CA" + }, + { + "id": "333398", + "ident": "US-1189", + "type": "heliport", + "name": "VCU Health System-Main Hospital Heliport", + "latitude_deg": "37.539741", + "longitude_deg": "-77.429495", + "elevation_ft": "343", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "VG45", + "local_code": "VG45" + }, + { + "id": "333399", + "ident": "US-1190", + "type": "small_airport", + "name": "Gray Airport", + "latitude_deg": "40.854719", + "longitude_deg": "-81.122358", + "elevation_ft": "1256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Alliance", + "scheduled_service": "no", + "gps_code": "OH32", + "local_code": "OH32" + }, + { + "id": "333400", + "ident": "US-1191", + "type": "seaplane_base", + "name": "Iverson Seaplane Base", + "latitude_deg": "45.267346", + "longitude_deg": "-94.062087", + "elevation_ft": "998", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Annandale", + "scheduled_service": "no", + "gps_code": "58MN", + "local_code": "58MN" + }, + { + "id": "333402", + "ident": "US-1192", + "type": "small_airport", + "name": "Knight Field", + "latitude_deg": "41.956697", + "longitude_deg": "-94.086942", + "elevation_ft": "989", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Berkley", + "scheduled_service": "no", + "gps_code": "IA21", + "local_code": "IA21" + }, + { + "id": "333404", + "ident": "US-1193", + "type": "small_airport", + "name": "Landing Pointe Airport", + "latitude_deg": "45.733596", + "longitude_deg": "-108.674158", + "elevation_ft": "3284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Billings", + "scheduled_service": "no", + "gps_code": "MT57", + "local_code": "MT57" + }, + { + "id": "333406", + "ident": "US-1194", + "type": "small_airport", + "name": "Triumph Air Strip", + "latitude_deg": "29.331642", + "longitude_deg": "-89.476857", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Buras", + "scheduled_service": "no", + "gps_code": "LS87", + "local_code": "LS87" + }, + { + "id": "333451", + "ident": "US-1195", + "type": "heliport", + "name": "Blackheart Heliport", + "latitude_deg": "47.927394", + "longitude_deg": "-122.855047", + "elevation_ft": "651", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Quilcene", + "scheduled_service": "no", + "gps_code": "WA56", + "local_code": "WA56" + }, + { + "id": "333417", + "ident": "US-1196", + "type": "heliport", + "name": "Pogo Heliport", + "latitude_deg": "64.4475", + "longitude_deg": "-144.936389", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Delta Junction", + "scheduled_service": "no", + "gps_code": "1AK9", + "local_code": "1AK9" + }, + { + "id": "333418", + "ident": "US-1197", + "type": "small_airport", + "name": "Johnson Field", + "latitude_deg": "36.358947", + "longitude_deg": "-98.143872", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Meno", + "scheduled_service": "no", + "gps_code": "6OK3", + "local_code": "6OK3" + }, + { + "id": "333421", + "ident": "US-1198", + "type": "small_airport", + "name": "Blackmon Field", + "latitude_deg": "41.175167", + "longitude_deg": "-86.547444", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Monterey", + "scheduled_service": "no", + "gps_code": "IN69", + "local_code": "IN69" + }, + { + "id": "333422", + "ident": "US-1199", + "type": "small_airport", + "name": "Riata Ranch Airport", + "latitude_deg": "30.131808", + "longitude_deg": "-99.293532", + "elevation_ft": "2008", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mountain Home", + "scheduled_service": "no", + "gps_code": "TE33", + "local_code": "TE33" + }, + { + "id": "333424", + "ident": "US-1200", + "type": "heliport", + "name": "Mercyone New Hampton Medical Center Heliport", + "latitude_deg": "43.06335", + "longitude_deg": "-92.32208", + "elevation_ft": "1159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "New Hampton", + "scheduled_service": "no", + "gps_code": "IA50", + "local_code": "IA50" + }, + { + "id": "333425", + "ident": "US-1201", + "type": "small_airport", + "name": "Michels Farms Airport", + "latitude_deg": "44.218583", + "longitude_deg": "-94.137153", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "North Mankato", + "scheduled_service": "no", + "gps_code": "MN46", + "local_code": "MN46" + }, + { + "id": "333429", + "ident": "US-1202", + "type": "heliport", + "name": "Opelousas General Health System Main Campus Heliport", + "latitude_deg": "30.544868", + "longitude_deg": "-92.075118", + "elevation_ft": "109", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Opelousas", + "scheduled_service": "no", + "gps_code": "LS03", + "local_code": "LS03" + }, + { + "id": "333430", + "ident": "US-1203", + "type": "heliport", + "name": "Opelousas General Health System South Campus Heliport", + "latitude_deg": "30.47194", + "longitude_deg": "-92.078443", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Opelousas", + "scheduled_service": "no", + "gps_code": "LS63", + "local_code": "LS63" + }, + { + "id": "333431", + "ident": "US-1204", + "type": "small_airport", + "name": "Cloud Nine East Airport", + "latitude_deg": "42.5515", + "longitude_deg": "-84.098289", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Iosco Township", + "scheduled_service": "no", + "gps_code": "MI26", + "local_code": "MI26", + "keywords": "3MI3, L D Ranch" + }, + { + "id": "333433", + "ident": "US-1205", + "type": "small_airport", + "name": "Wray Airfield", + "latitude_deg": "40.469132", + "longitude_deg": "-94.716465", + "elevation_ft": "1225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Parnell", + "scheduled_service": "no", + "gps_code": "MU13", + "local_code": "MU13" + }, + { + "id": "333434", + "ident": "US-1206", + "type": "heliport", + "name": "Stanford Health Care-Valleycare Heliport", + "latitude_deg": "37.694414", + "longitude_deg": "-121.880897", + "elevation_ft": "422", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pleasanton", + "scheduled_service": "no", + "gps_code": "55CA", + "local_code": "55CA" + }, + { + "id": "333437", + "ident": "US-1207", + "type": "small_airport", + "name": "Bishman Private Airport", + "latitude_deg": "45.677", + "longitude_deg": "-93.5395", + "elevation_ft": "987", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "90MN", + "local_code": "90MN" + }, + { + "id": "333453", + "ident": "US-1208", + "type": "heliport", + "name": "Millionaire Heliport", + "latitude_deg": "47.926064", + "longitude_deg": "-122.853122", + "elevation_ft": "647", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Quilcene", + "scheduled_service": "no", + "gps_code": "WA17", + "local_code": "WA17" + }, + { + "id": "333455", + "ident": "US-1209", + "type": "small_airport", + "name": "DCH Annex Ultralight Flightpark", + "latitude_deg": "36.513258", + "longitude_deg": "-95.914335", + "elevation_ft": "672", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ramona", + "scheduled_service": "no", + "gps_code": "5OK6", + "local_code": "5OK6" + }, + { + "id": "333459", + "ident": "US-1210", + "type": "small_airport", + "name": "Perkins Airport", + "latitude_deg": "35.7298", + "longitude_deg": "-98.6587", + "elevation_ft": "1700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Thomas", + "scheduled_service": "no", + "gps_code": "5OK8", + "local_code": "5OK8" + }, + { + "id": "333472", + "ident": "US-1211", + "type": "heliport", + "name": "Beacon Granger Hospital Heliport", + "latitude_deg": "41.734672", + "longitude_deg": "-86.151233", + "elevation_ft": "787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "South Bend", + "scheduled_service": "no", + "gps_code": "IN67", + "local_code": "IN67" + }, + { + "id": "333474", + "ident": "US-1212", + "type": "heliport", + "name": "Renegades Mines Partners LLC Heliport", + "latitude_deg": "35.494674", + "longitude_deg": "-114.891148", + "elevation_ft": "3767", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Searchlight", + "scheduled_service": "no", + "gps_code": "NV10", + "local_code": "NV10" + }, + { + "id": "333477", + "ident": "US-1213", + "type": "seaplane_base", + "name": "Sault Ste Marie International Seaplane Base", + "latitude_deg": "46.483686", + "longitude_deg": "-84.301928", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Sault Ste Marie", + "scheduled_service": "no", + "local_code": "MI8", + "keywords": "MI98" + }, + { + "id": "333480", + "ident": "US-1214", + "type": "small_airport", + "name": "Wemmering Airport", + "latitude_deg": "36.71915", + "longitude_deg": "-80.547314", + "elevation_ft": "2951", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Hillsville", + "scheduled_service": "no", + "gps_code": "57VA", + "local_code": "57VA" + }, + { + "id": "333533", + "ident": "US-1215", + "type": "small_airport", + "name": "Prop Stop Airport", + "latitude_deg": "30.435132", + "longitude_deg": "-92.333769", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Eunice", + "scheduled_service": "no", + "gps_code": "LA03", + "local_code": "LA03" + }, + { + "id": "333534", + "ident": "US-1216", + "type": "seaplane_base", + "name": "Loon Lake Seaplane Base", + "latitude_deg": "48.075842", + "longitude_deg": "-90.706472", + "elevation_ft": "1765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Grand Marais", + "scheduled_service": "no", + "gps_code": "83MN", + "local_code": "83MN" + }, + { + "id": "333535", + "ident": "US-1217", + "type": "small_airport", + "name": "40 Acre Airstrip", + "latitude_deg": "45.157101", + "longitude_deg": "-113.802026", + "elevation_ft": "4303", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Salmon", + "scheduled_service": "no", + "gps_code": "ID52", + "local_code": "ID52" + }, + { + "id": "333545", + "ident": "US-1218", + "type": "closed", + "name": "Larry D. Herschberger Airport", + "latitude_deg": "39.720588", + "longitude_deg": "-88.49589", + "elevation_ft": "669", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Arthur", + "scheduled_service": "no", + "keywords": "IL17" + }, + { + "id": "333574", + "ident": "US-1219", + "type": "closed", + "name": "Alstead Airfield / Whitcomb Landing Strip", + "latitude_deg": "43.12542", + "longitude_deg": "-72.403507", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Walpole", + "scheduled_service": "no" + }, + { + "id": "333575", + "ident": "US-1220", + "type": "closed", + "name": "General Electric Airfield", + "latitude_deg": "38.920186", + "longitude_deg": "-83.328509", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Peebles", + "scheduled_service": "no" + }, + { + "id": "333597", + "ident": "US-1221", + "type": "closed", + "name": "Yam Yankees Airport", + "latitude_deg": "34.984056", + "longitude_deg": "-78.223328", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Elliot", + "scheduled_service": "no" + }, + { + "id": "333599", + "ident": "US-1222", + "type": "heliport", + "name": "Neshama Heliport", + "latitude_deg": "27.2109", + "longitude_deg": "-80.209622", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Stuart", + "scheduled_service": "no", + "gps_code": "FD73", + "local_code": "FD73" + }, + { + "id": "333607", + "ident": "US-1223", + "type": "small_airport", + "name": "Aero Saylee Airport", + "latitude_deg": "28.474205", + "longitude_deg": "-98.583811", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tilden", + "scheduled_service": "no", + "gps_code": "43TS", + "local_code": "43TS" + }, + { + "id": "333615", + "ident": "US-1224", + "type": "closed", + "name": "Inglenook Ranch Airport", + "latitude_deg": "38.470568", + "longitude_deg": "-122.445683", + "elevation_ft": "194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rutherford", + "scheduled_service": "no" + }, + { + "id": "333619", + "ident": "US-1225", + "type": "heliport", + "name": "Banner Fort Collins Medical Center Heliport", + "latitude_deg": "40.522222", + "longitude_deg": "-105.008333", + "elevation_ft": "4910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Fort Collins", + "scheduled_service": "no", + "gps_code": "57CO", + "local_code": "57CO" + }, + { + "id": "333620", + "ident": "US-1226", + "type": "small_airport", + "name": "Holder Field", + "latitude_deg": "36.247183", + "longitude_deg": "-85.511583", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Cookeville", + "scheduled_service": "no", + "gps_code": "4TN6", + "local_code": "4TN6" + }, + { + "id": "333626", + "ident": "US-1227", + "type": "closed", + "name": "Meaux Landing Strip", + "latitude_deg": "30.047151", + "longitude_deg": "-92.28349", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kaplan", + "scheduled_service": "no" + }, + { + "id": "333627", + "ident": "US-1228", + "type": "closed", + "name": "Abshire Landing Strip", + "latitude_deg": "30.082859", + "longitude_deg": "-92.267654", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kaplan", + "scheduled_service": "no", + "wikipedia_link": "https://ceb.wikipedia.org/wiki/Abshire_Landing_Strip" + }, + { + "id": "333664", + "ident": "US-1229", + "type": "heliport", + "name": "Lewis Gale Medical Center Heliport", + "latitude_deg": "37.263653", + "longitude_deg": "-80.030621", + "elevation_ft": "1074", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "39VA", + "local_code": "39VA" + }, + { + "id": "333832", + "ident": "US-1230", + "type": "small_airport", + "name": "Tres Perros Flying Field", + "latitude_deg": "29.467129", + "longitude_deg": "-97.109511", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Shiner", + "scheduled_service": "no" + }, + { + "id": "333874", + "ident": "US-1231", + "type": "small_airport", + "name": "Lapoint Seaplane Base", + "latitude_deg": "46.040278", + "longitude_deg": "-83.691389", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Drummond Island", + "scheduled_service": "no", + "local_code": "MI4" + }, + { + "id": "333896", + "ident": "US-1232", + "type": "closed", + "name": "Eagleville Airport", + "latitude_deg": "41.309663", + "longitude_deg": "-120.050268", + "elevation_ft": "4495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Eagleville", + "scheduled_service": "no", + "keywords": "A22" + }, + { + "id": "333897", + "ident": "US-1233", + "type": "heliport", + "name": "Rotorcraft Support Inc/RSI Heliport", + "latitude_deg": "34.391228", + "longitude_deg": "-118.932997", + "elevation_ft": "403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fillmore", + "scheduled_service": "no", + "local_code": "CN67" + }, + { + "id": "333898", + "ident": "US-1234", + "type": "closed", + "name": "Vidal Junction Airport", + "latitude_deg": "34.183619", + "longitude_deg": "-114.575086", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Vidal Junction", + "scheduled_service": "no" + }, + { + "id": "333944", + "ident": "US-1235", + "type": "small_airport", + "name": "Ron Airport", + "latitude_deg": "30.435556", + "longitude_deg": "-92.118333", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Sunset", + "scheduled_service": "no", + "gps_code": "5LA9", + "local_code": "5LA9" + }, + { + "id": "333953", + "ident": "US-1236", + "type": "closed", + "name": "Love Field Heliport", + "latitude_deg": "35.468116", + "longitude_deg": "-97.493372", + "elevation_ft": "1181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no", + "keywords": "OK33" + }, + { + "id": "333955", + "ident": "US-1237", + "type": "heliport", + "name": "Buckingham County Rescue Squad Heliport", + "latitude_deg": "37.537193", + "longitude_deg": "-78.477858", + "elevation_ft": "628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Dillwyn", + "scheduled_service": "no", + "gps_code": "VA97", + "local_code": "VA97" + }, + { + "id": "333963", + "ident": "US-1238", + "type": "heliport", + "name": "Deckert Heliport", + "latitude_deg": "40.719167", + "longitude_deg": "-89.157778", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Secor", + "scheduled_service": "no", + "gps_code": "95LL", + "local_code": "95LL" + }, + { + "id": "333965", + "ident": "US-1239", + "type": "heliport", + "name": "Rogersville Remote Fuel Site Heliport", + "latitude_deg": "37.117617", + "longitude_deg": "-93.029662", + "elevation_ft": "1475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Rogersville", + "scheduled_service": "no", + "gps_code": "85MO", + "local_code": "85MO" + }, + { + "id": "333975", + "ident": "US-1240", + "type": "heliport", + "name": "Franklin Foundation Hospital Heliport", + "latitude_deg": "29.800336", + "longitude_deg": "-91.523306", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "9LA7", + "local_code": "9LA7" + }, + { + "id": "333977", + "ident": "US-1241", + "type": "small_airport", + "name": "Plain Crazy Airport", + "latitude_deg": "40.465242", + "longitude_deg": "-91.229836", + "elevation_ft": "706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Carthage", + "scheduled_service": "no", + "gps_code": "4IS1", + "local_code": "4IS1" + }, + { + "id": "333994", + "ident": "US-1242", + "type": "small_airport", + "name": "Ashley Field", + "latitude_deg": "34.445884", + "longitude_deg": "-82.364309", + "elevation_ft": "777", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Honea Path", + "scheduled_service": "no", + "gps_code": "SC01", + "local_code": "SC01" + }, + { + "id": "333997", + "ident": "US-1243", + "type": "closed", + "name": "Armacost Farms Airport", + "latitude_deg": "39.603438", + "longitude_deg": "-76.744418", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Hampstead", + "scheduled_service": "no", + "keywords": "MD38" + }, + { + "id": "334117", + "ident": "US-1244", + "type": "heliport", + "name": "Centra Danville Medical Center Heliport", + "latitude_deg": "36.584468", + "longitude_deg": "-79.431313", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "5VA9", + "local_code": "5VA9" + }, + { + "id": "334202", + "ident": "US-1245", + "type": "heliport", + "name": "S&J Heliport", + "latitude_deg": "32.896194", + "longitude_deg": "-105.967167", + "elevation_ft": "4337", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Alamogordo", + "scheduled_service": "no", + "gps_code": "NM23", + "local_code": "NM23" + }, + { + "id": "334204", + "ident": "US-1246", + "type": "heliport", + "name": "Presbyterian Hospital Heliport", + "latitude_deg": "35.082", + "longitude_deg": "-106.634138", + "elevation_ft": "5073", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "no", + "gps_code": "NM39", + "local_code": "NM39" + }, + { + "id": "334207", + "ident": "US-1247", + "type": "small_airport", + "name": "Nelson High Point Airport", + "latitude_deg": "35.178114", + "longitude_deg": "-97.748376", + "elevation_ft": "1376", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Amber", + "scheduled_service": "no", + "gps_code": "8OK7", + "local_code": "8OK7" + }, + { + "id": "334213", + "ident": "US-1248", + "type": "heliport", + "name": "Piedmont Atlanta Hospital Helipad", + "latitude_deg": "33.808", + "longitude_deg": "-84.394139", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "2GA6", + "local_code": "2GA6" + }, + { + "id": "334217", + "ident": "US-1249", + "type": "small_airport", + "name": "Donner Airport", + "latitude_deg": "44.64617", + "longitude_deg": "-95.304916", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Belview", + "scheduled_service": "no", + "gps_code": "MN98", + "local_code": "MN98" + }, + { + "id": "334219", + "ident": "US-1250", + "type": "small_airport", + "name": "Campbells Airport", + "latitude_deg": "39.913889", + "longitude_deg": "-104.473333", + "elevation_ft": "5165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Bennett", + "scheduled_service": "no", + "gps_code": "CO41", + "local_code": "CO41" + }, + { + "id": "334220", + "ident": "US-1251", + "type": "small_airport", + "name": "Ostlunds Airport", + "latitude_deg": "45.676021", + "longitude_deg": "-108.570635", + "elevation_ft": "3828", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Billings", + "scheduled_service": "no", + "gps_code": "MT13", + "local_code": "MT13" + }, + { + "id": "334223", + "ident": "US-1252", + "type": "small_airport", + "name": "Thiefneck Flying Field", + "latitude_deg": "31.431336", + "longitude_deg": "-96.336493", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lake Limestone", + "scheduled_service": "no" + }, + { + "id": "334229", + "ident": "US-1253", + "type": "heliport", + "name": "Boulder City Hospital Heliport", + "latitude_deg": "35.9671", + "longitude_deg": "-114.843792", + "elevation_ft": "2394", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Boulder City", + "scheduled_service": "no", + "gps_code": "NV16", + "local_code": "NV16" + }, + { + "id": "334231", + "ident": "US-1254", + "type": "heliport", + "name": "BLSG Brandon Heliport", + "latitude_deg": "43.802033", + "longitude_deg": "-73.113019", + "elevation_ft": "361", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Brandon", + "scheduled_service": "no", + "gps_code": "VT33", + "local_code": "VT33" + }, + { + "id": "334233", + "ident": "US-1255", + "type": "small_airport", + "name": "Galloway Landings Airport", + "latitude_deg": "42.743097", + "longitude_deg": "-85.611167", + "elevation_ft": "826", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Caledonia", + "scheduled_service": "no", + "gps_code": "MI93", + "local_code": "MI93" + }, + { + "id": "334236", + "ident": "US-1256", + "type": "small_airport", + "name": "Rayworth Landing", + "latitude_deg": "33.60125", + "longitude_deg": "-84.914861", + "elevation_ft": "1259", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Carrollton", + "scheduled_service": "no", + "gps_code": "5GA9", + "local_code": "5GA9" + }, + { + "id": "334237", + "ident": "US-1257", + "type": "heliport", + "name": "Bianchi Heliport", + "latitude_deg": "41.384468", + "longitude_deg": "-87.433609", + "elevation_ft": "701", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Cedar Lake", + "scheduled_service": "no", + "gps_code": "IN13", + "local_code": "IN13" + }, + { + "id": "334238", + "ident": "US-1258", + "type": "heliport", + "name": "MUSC Shawn Jenkins Childrens Hospital Heliport", + "latitude_deg": "32.782201", + "longitude_deg": "-79.951485", + "elevation_ft": "192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Charleston", + "scheduled_service": "no", + "gps_code": "SC80", + "local_code": "SC80" + }, + { + "id": "334240", + "ident": "US-1259", + "type": "small_airport", + "name": "Woods Acres Airport", + "latitude_deg": "36.075609", + "longitude_deg": "-97.906167", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hennessey", + "scheduled_service": "no", + "gps_code": "9OK8", + "local_code": "9OK8" + }, + { + "id": "334243", + "ident": "US-1260", + "type": "small_airport", + "name": "Waters Home Airport", + "latitude_deg": "35.605978", + "longitude_deg": "-98.638666", + "elevation_ft": "1721", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hydro", + "scheduled_service": "no", + "gps_code": "7OK4", + "local_code": "7OK4" + }, + { + "id": "335787", + "ident": "US-1261", + "type": "closed", + "name": "Voyles Lazy V Ranch Landing Strip", + "latitude_deg": "30.339121", + "longitude_deg": "-98.280129", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marble Falls", + "scheduled_service": "no" + }, + { + "id": "334256", + "ident": "US-1262", + "type": "seaplane_base", + "name": "Crystal Creek Lodge Seaplane Base", + "latitude_deg": "58.646294", + "longitude_deg": "-156.577764", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "King Salmon", + "scheduled_service": "no", + "local_code": "AK51", + "keywords": "AKAA" + }, + { + "id": "334260", + "ident": "US-1263", + "type": "small_airport", + "name": "Readdick Field", + "latitude_deg": "30.76689", + "longitude_deg": "-81.716653", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Kingsland", + "scheduled_service": "no", + "gps_code": "GA36", + "local_code": "GA36" + }, + { + "id": "334261", + "ident": "US-1264", + "type": "small_airport", + "name": "Battle Ridge Butte Airport", + "latitude_deg": "46.043555", + "longitude_deg": "-115.886875", + "elevation_ft": "2687", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Kooskia", + "scheduled_service": "no", + "gps_code": "ID51", + "local_code": "ID51" + }, + { + "id": "334270", + "ident": "US-1265", + "type": "heliport", + "name": "BLSG Leicester Heliport", + "latitude_deg": "43.874739", + "longitude_deg": "-73.104369", + "elevation_ft": "441", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Leicester", + "scheduled_service": "no", + "gps_code": "VT21", + "local_code": "VT21" + }, + { + "id": "334271", + "ident": "US-1266", + "type": "small_airport", + "name": "Red Bird Airport", + "latitude_deg": "46.223104", + "longitude_deg": "-116.869994", + "elevation_ft": "2996", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Lewiston", + "scheduled_service": "no", + "gps_code": "ID57", + "local_code": "ID57" + }, + { + "id": "334274", + "ident": "US-1267", + "type": "heliport", + "name": "Rust Medical Center Heliport", + "latitude_deg": "35.218969", + "longitude_deg": "-106.694389", + "elevation_ft": "5253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Rio Rancho", + "scheduled_service": "no", + "gps_code": "NM36", + "local_code": "NM36" + }, + { + "id": "334276", + "ident": "US-1268", + "type": "small_airport", + "name": "Dogs Run Free Airport", + "latitude_deg": "46.858056", + "longitude_deg": "-120.778837", + "elevation_ft": "2410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Selah", + "scheduled_service": "no", + "gps_code": "WA76", + "local_code": "WA76" + }, + { + "id": "334277", + "ident": "US-1269", + "type": "small_airport", + "name": "Kourtis Family Farm Airport", + "latitude_deg": "36.415446", + "longitude_deg": "-96.056122", + "elevation_ft": "919", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Skiatook", + "scheduled_service": "no", + "gps_code": "OL19", + "local_code": "OL19" + }, + { + "id": "334278", + "ident": "US-1270", + "type": "small_airport", + "name": "Richland Creek Airport", + "latitude_deg": "35.914847", + "longitude_deg": "-92.899712", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Snowball", + "scheduled_service": "no", + "gps_code": "4AR9", + "local_code": "4AR9" + }, + { + "id": "334280", + "ident": "US-1271", + "type": "small_airport", + "name": "Taylor Homestead Airport", + "latitude_deg": "48.092824", + "longitude_deg": "-114.157961", + "elevation_ft": "2903", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Somers", + "scheduled_service": "no", + "gps_code": "MT61", + "local_code": "MT61" + }, + { + "id": "334282", + "ident": "US-1272", + "type": "small_airport", + "name": "Prairie Ridge Airport", + "latitude_deg": "34.7925", + "longitude_deg": "-96.908333", + "elevation_ft": "1154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Stratford", + "scheduled_service": "no", + "gps_code": "9OK7", + "local_code": "9OK7" + }, + { + "id": "334283", + "ident": "US-1273", + "type": "heliport", + "name": "St Lukes Monroe Heliport", + "latitude_deg": "40.997189", + "longitude_deg": "-75.26095", + "elevation_ft": "699", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Stroudsburg", + "scheduled_service": "no", + "gps_code": "PA13", + "local_code": "PA13" + }, + { + "id": "334309", + "ident": "US-1274", + "type": "small_airport", + "name": "Ottertail Lake Airport", + "latitude_deg": "45.818929", + "longitude_deg": "-111.695886", + "elevation_ft": "4155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Three Forks", + "scheduled_service": "no", + "gps_code": "MT36", + "local_code": "MT36" + }, + { + "id": "334311", + "ident": "US-1275", + "type": "seaplane_base", + "name": "Mirror Lake Seaplane Base", + "latitude_deg": "43.621666", + "longitude_deg": "-71.263889", + "elevation_ft": "509", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Tuftonboro", + "scheduled_service": "no", + "gps_code": "NH64", + "local_code": "NH64" + }, + { + "id": "334315", + "ident": "US-1276", + "type": "small_airport", + "name": "Lightfoot Farms Airport", + "latitude_deg": "44.484683", + "longitude_deg": "-95.509194", + "elevation_ft": "975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Vesta", + "scheduled_service": "no", + "gps_code": "8MN4", + "local_code": "8MN4" + }, + { + "id": "334317", + "ident": "US-1277", + "type": "small_airport", + "name": "Dungan Airport", + "latitude_deg": "39.719401", + "longitude_deg": "-85.269278", + "elevation_ft": "1064", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Connersville", + "scheduled_service": "no", + "gps_code": "IN12", + "local_code": "IN12" + }, + { + "id": "334319", + "ident": "US-1278", + "type": "heliport", + "name": "Foote Farm Association RLA Heliport", + "latitude_deg": "43.989494", + "longitude_deg": "-73.239858", + "elevation_ft": "167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Cornwall", + "scheduled_service": "no", + "gps_code": "VT54", + "local_code": "VT54" + }, + { + "id": "334321", + "ident": "US-1279", + "type": "heliport", + "name": "Quesnel Farm Property Heliport", + "latitude_deg": "43.988603", + "longitude_deg": "-73.252939", + "elevation_ft": "181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Cornwall", + "scheduled_service": "no", + "gps_code": "VT24", + "local_code": "VT24" + }, + { + "id": "334323", + "ident": "US-1280", + "type": "small_airport", + "name": "Mahoney Farm Airport", + "latitude_deg": "38.849622", + "longitude_deg": "-98.668278", + "elevation_ft": "1836", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Dorrance", + "scheduled_service": "no", + "gps_code": "2KS4", + "local_code": "2KS4" + }, + { + "id": "334324", + "ident": "US-1281", + "type": "heliport", + "name": "Oldsells Heliport", + "latitude_deg": "40.067685", + "longitude_deg": "-83.118001", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dublin", + "scheduled_service": "no", + "gps_code": "47OH", + "local_code": "47OH" + }, + { + "id": "334327", + "ident": "US-1282", + "type": "small_airport", + "name": "Peavine Airport", + "latitude_deg": "45.724117", + "longitude_deg": "-117.077375", + "elevation_ft": "4007", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Enterprise", + "scheduled_service": "no", + "local_code": "O62" + }, + { + "id": "334334", + "ident": "US-1283", + "type": "small_airport", + "name": "Spangler Farm Airport", + "latitude_deg": "41.012639", + "longitude_deg": "-84.877694", + "elevation_ft": "776", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Fort Wayne", + "scheduled_service": "no", + "gps_code": "22IN", + "local_code": "22IN" + }, + { + "id": "334335", + "ident": "US-1284", + "type": "small_airport", + "name": "Twin Lakes Airport", + "latitude_deg": "38.518522", + "longitude_deg": "-85.587583", + "elevation_ft": "663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Marysville", + "scheduled_service": "no", + "gps_code": "IN07", + "local_code": "IN07" + }, + { + "id": "334337", + "ident": "US-1285", + "type": "heliport", + "name": "1000 Museum Heliport", + "latitude_deg": "25.784189", + "longitude_deg": "-80.190046", + "elevation_ft": "709", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "FA10", + "local_code": "FA10" + }, + { + "id": "334338", + "ident": "US-1286", + "type": "heliport", + "name": "St Francis Medical Center Heliport", + "latitude_deg": "32.49866", + "longitude_deg": "-92.113999", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "LS90", + "local_code": "LS90" + }, + { + "id": "334340", + "ident": "US-1287", + "type": "heliport", + "name": "Ringgold County Heliport", + "latitude_deg": "40.719904", + "longitude_deg": "-94.22236", + "elevation_ft": "1218", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Mountt Ayr", + "scheduled_service": "no", + "gps_code": "IA49", + "local_code": "IA49" + }, + { + "id": "334343", + "ident": "US-1288", + "type": "heliport", + "name": "Prudential Center Helipor", + "latitude_deg": "40.733244", + "longitude_deg": "-74.171947", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Newark", + "scheduled_service": "no", + "gps_code": "NJ03", + "local_code": "NJ03" + }, + { + "id": "334344", + "ident": "US-1289", + "type": "seaplane_base", + "name": "Webster Lake Seaplane Base", + "latitude_deg": "41.325122", + "longitude_deg": "-85.682522", + "elevation_ft": "858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "North Webster", + "scheduled_service": "no", + "local_code": "IN9" + }, + { + "id": "334345", + "ident": "US-1290", + "type": "small_airport", + "name": "Holt Farms Airport", + "latitude_deg": "43.42778", + "longitude_deg": "-93.272746", + "elevation_ft": "1274", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Northwood", + "scheduled_service": "no", + "gps_code": "IA51", + "local_code": "IA51" + }, + { + "id": "334347", + "ident": "US-1291", + "type": "small_airport", + "name": "Porcupine Ridge Airport", + "latitude_deg": "34.511795", + "longitude_deg": "-108.037748", + "elevation_ft": "7540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Pie Town", + "scheduled_service": "no", + "gps_code": "NM30", + "local_code": "NM30" + }, + { + "id": "334351", + "ident": "US-1292", + "type": "closed", + "name": "Brentwood Ambulatory Care Center Heliport", + "latitude_deg": "41.3163", + "longitude_deg": "-81.568889", + "elevation_ft": "868", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Northfield", + "scheduled_service": "no", + "keywords": "80OI" + }, + { + "id": "334352", + "ident": "US-1293", + "type": "heliport", + "name": "George Washington University Hospital Heliport", + "latitude_deg": "38.900903", + "longitude_deg": "-77.051132", + "elevation_ft": "174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DC", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "24DC", + "local_code": "24DC" + }, + { + "id": "334358", + "ident": "US-1294", + "type": "small_airport", + "name": "Curry Ridge Airport", + "latitude_deg": "32.723321", + "longitude_deg": "-113.938501", + "elevation_ft": "329", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tacna", + "scheduled_service": "no", + "gps_code": "AZ60", + "local_code": "AZ60" + }, + { + "id": "334361", + "ident": "US-1295", + "type": "closed", + "name": "Keystone XL Whitewater Heliport", + "latitude_deg": "48.7575", + "longitude_deg": "-107.524167", + "elevation_ft": "2774", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Whitewater", + "scheduled_service": "no", + "keywords": "MT26" + }, + { + "id": "334362", + "ident": "US-1296", + "type": "small_airport", + "name": "Wapshilla Airport", + "latitude_deg": "45.941616", + "longitude_deg": "-116.763597", + "elevation_ft": "1410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Winchester", + "scheduled_service": "no", + "local_code": "I45", + "keywords": "ID50" + }, + { + "id": "334365", + "ident": "US-1297", + "type": "closed", + "name": "Army Reserve Parking Lot Heliport", + "latitude_deg": "43.305528", + "longitude_deg": "-91.791265", + "elevation_ft": "859", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Decorah", + "scheduled_service": "no", + "keywords": "1IA1" + }, + { + "id": "334368", + "ident": "US-1298", + "type": "closed", + "name": "PAF Cannery Airport", + "latitude_deg": "58.725948", + "longitude_deg": "-156.950868", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "South Naknek", + "scheduled_service": "no", + "keywords": "3AK" + }, + { + "id": "334372", + "ident": "US-1299", + "type": "closed", + "name": "Peninsula General Hospital Ground Level Heliport", + "latitude_deg": "38.361785", + "longitude_deg": "-75.598536", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Salisbury", + "scheduled_service": "no", + "keywords": "MD88" + }, + { + "id": "334388", + "ident": "US-1300", + "type": "closed", + "name": "Luck Field", + "latitude_deg": "32.599024", + "longitude_deg": "-97.322794", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no" + }, + { + "id": "335788", + "ident": "US-1301", + "type": "closed", + "name": "Baird Ranch Airstrip", + "latitude_deg": "30.276247", + "longitude_deg": "-98.310106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Johnson City", + "scheduled_service": "no" + }, + { + "id": "334414", + "ident": "US-1302", + "type": "small_airport", + "name": "Morgan's Airport", + "latitude_deg": "45.065474", + "longitude_deg": "-123.329269", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Ballston", + "scheduled_service": "no", + "gps_code": "OR71", + "local_code": "OR71" + }, + { + "id": "334415", + "ident": "US-1303", + "type": "heliport", + "name": "Zuma Beach Emergency Helipad", + "latitude_deg": "34.01885", + "longitude_deg": "-118.82685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Malibu", + "scheduled_service": "no" + }, + { + "id": "334416", + "ident": "US-1304", + "type": "heliport", + "name": "Hoover Dam Lodge Heliport", + "latitude_deg": "36.010463", + "longitude_deg": "-114.782017", + "elevation_ft": "1761", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Boulder City", + "scheduled_service": "no" + }, + { + "id": "334441", + "ident": "US-1305", + "type": "small_airport", + "name": "Bouse Airport", + "latitude_deg": "33.92894", + "longitude_deg": "-114.00011", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bouse", + "scheduled_service": "no", + "keywords": "bouse" + }, + { + "id": "334442", + "ident": "US-1306", + "type": "small_airport", + "name": "Quartzsite Airport", + "latitude_deg": "33.66185", + "longitude_deg": "-114.249", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Quartzsite", + "scheduled_service": "no" + }, + { + "id": "334443", + "ident": "US-1307", + "type": "closed", + "name": "Desert Gardens Airport", + "latitude_deg": "33.6573", + "longitude_deg": "-114.2357", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Quartzsite", + "scheduled_service": "no" + }, + { + "id": "334444", + "ident": "US-1308", + "type": "closed", + "name": "Ora Acres Airport", + "latitude_deg": "33.68147", + "longitude_deg": "-114.21366", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Quartzsite", + "scheduled_service": "no" + }, + { + "id": "334445", + "ident": "US-1309", + "type": "small_airport", + "name": "Salome Emergency Airfield", + "latitude_deg": "33.58057", + "longitude_deg": "-113.58721", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Salome", + "scheduled_service": "no" + }, + { + "id": "334446", + "ident": "US-1310", + "type": "small_airport", + "name": "75E Airport", + "latitude_deg": "33.63726", + "longitude_deg": "-113.34238", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Salome", + "scheduled_service": "no" + }, + { + "id": "334450", + "ident": "US-1311", + "type": "closed", + "name": "Gringo Pass Airfield", + "latitude_deg": "31.88181", + "longitude_deg": "-112.812", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Lukeville", + "scheduled_service": "no", + "keywords": "lukeville, gringo pass" + }, + { + "id": "334453", + "ident": "US-1312", + "type": "heliport", + "name": "US Border Patrol Ajo Station Helipad", + "latitude_deg": "32.27764", + "longitude_deg": "-112.73965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Why", + "scheduled_service": "no" + }, + { + "id": "334454", + "ident": "US-1313", + "type": "heliport", + "name": "Glendale Galleria Emergency Helipad", + "latitude_deg": "34.146228", + "longitude_deg": "-118.256723", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "334455", + "ident": "US-1314", + "type": "heliport", + "name": "Glendale City Center Emergency Helipad", + "latitude_deg": "34.146987", + "longitude_deg": "-118.255468", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "334456", + "ident": "US-1315", + "type": "heliport", + "name": "Glendale Police Helipad", + "latitude_deg": "34.147022", + "longitude_deg": "-118.249283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "334457", + "ident": "US-1316", + "type": "heliport", + "name": "330 North Brand Emergency Helipad", + "latitude_deg": "34.151351", + "longitude_deg": "-118.25461", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "334458", + "ident": "US-1317", + "type": "heliport", + "name": "400 North Brand Emergency Helipad", + "latitude_deg": "34.152008", + "longitude_deg": "-118.254578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "334459", + "ident": "US-1318", + "type": "heliport", + "name": "450 North Brand Emergency Helipad", + "latitude_deg": "34.152691", + "longitude_deg": "-118.254578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "334460", + "ident": "US-1319", + "type": "heliport", + "name": "Saint David's Medical Center Heliport", + "latitude_deg": "30.290417", + "longitude_deg": "-97.726731", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no" + }, + { + "id": "334461", + "ident": "US-1320", + "type": "closed", + "name": "Austin Executive Airpark", + "latitude_deg": "30.41504", + "longitude_deg": "-97.66498", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "local_code": "3R3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Austin_Executive_Airpark", + "keywords": "Tim's Airpark" + }, + { + "id": "334462", + "ident": "US-1321", + "type": "heliport", + "name": "St. David's Round Rock Medical Center Heliport", + "latitude_deg": "30.510166", + "longitude_deg": "-97.713159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Round Rock", + "scheduled_service": "no" + }, + { + "id": "334463", + "ident": "US-1322", + "type": "heliport", + "name": "Baylor Scott & White Round Rock Medical Center Heliport", + "latitude_deg": "30.5647", + "longitude_deg": "-97.68403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Round Rock", + "scheduled_service": "no" + }, + { + "id": "334464", + "ident": "US-1323", + "type": "heliport", + "name": "Ascension Seton Williamson Helipad", + "latitude_deg": "30.566127", + "longitude_deg": "-97.652117", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Round Rock", + "scheduled_service": "no", + "local_code": "63TA" + }, + { + "id": "334466", + "ident": "US-1324", + "type": "heliport", + "name": "Two Coves Residential Helipad", + "latitude_deg": "30.366321", + "longitude_deg": "-97.815914", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no" + }, + { + "id": "334467", + "ident": "US-1325", + "type": "closed", + "name": "Brenteson Incorporated Wholesale Airport", + "latitude_deg": "33.33153", + "longitude_deg": "-111.95204", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tempe", + "scheduled_service": "no" + }, + { + "id": "334468", + "ident": "US-1326", + "type": "small_airport", + "name": "Castle Dome UAS Site Eight Airport", + "latitude_deg": "32.973028", + "longitude_deg": "-114.272661", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yuma", + "scheduled_service": "no" + }, + { + "id": "334469", + "ident": "US-1327", + "type": "closed", + "name": "Castle Dome Airfield", + "latitude_deg": "32.9907", + "longitude_deg": "-114.252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yuma", + "scheduled_service": "no" + }, + { + "id": "334470", + "ident": "US-1328", + "type": "closed", + "name": "Yuma Proving Ground North Army Airfield", + "latitude_deg": "33.334473", + "longitude_deg": "-114.292402", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yuma", + "scheduled_service": "no" + }, + { + "id": "334471", + "ident": "US-1329", + "type": "closed", + "name": "Desert Center Airport (1929)", + "latitude_deg": "33.717415", + "longitude_deg": "-115.388718", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Desert Center", + "scheduled_service": "no" + }, + { + "id": "334472", + "ident": "US-1330", + "type": "closed", + "name": "Desert Center Intermediate Field", + "latitude_deg": "33.74527", + "longitude_deg": "-115.351", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Desert Center", + "scheduled_service": "no" + }, + { + "id": "334473", + "ident": "US-1331", + "type": "closed", + "name": "Eagle Mountain Pump Plant Landing Strip", + "latitude_deg": "33.800814", + "longitude_deg": "-115.450966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Desert Center", + "scheduled_service": "no" + }, + { + "id": "334474", + "ident": "US-1332", + "type": "small_airport", + "name": "Eagle Mountain Metropolitan Water District Airstrip", + "latitude_deg": "33.843954", + "longitude_deg": "-115.457447", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Desert Center", + "scheduled_service": "no" + }, + { + "id": "334475", + "ident": "US-1333", + "type": "closed", + "name": "Rice Army Airfield", + "latitude_deg": "34.056144", + "longitude_deg": "-114.814081", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rice", + "scheduled_service": "no" + }, + { + "id": "334476", + "ident": "US-1334", + "type": "heliport", + "name": "Brenda Emergency Helipad", + "latitude_deg": "33.67728", + "longitude_deg": "-113.9578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Brenda", + "scheduled_service": "no" + }, + { + "id": "334552", + "ident": "US-1335", + "type": "heliport", + "name": "Sandia Peak Helispot", + "latitude_deg": "35.209888", + "longitude_deg": "-106.448185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Sandia Park", + "scheduled_service": "no" + }, + { + "id": "334681", + "ident": "US-1336", + "type": "closed", + "name": "Luke Air Force Auxiliary Field 7", + "latitude_deg": "32.528254", + "longitude_deg": "-112.932801", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Ajo", + "scheduled_service": "no" + }, + { + "id": "334682", + "ident": "US-1337", + "type": "closed", + "name": "Gila Bend Airport (1947)", + "latitude_deg": "32.955439", + "longitude_deg": "-112.703837", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gila Bend", + "scheduled_service": "no" + }, + { + "id": "334683", + "ident": "US-1338", + "type": "closed", + "name": "Hunts Airport", + "latitude_deg": "32.953332", + "longitude_deg": "-112.725928", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gila Bend", + "scheduled_service": "no" + }, + { + "id": "334684", + "ident": "US-1339", + "type": "closed", + "name": "Gila Bend Airport (1960)", + "latitude_deg": "32.933687", + "longitude_deg": "-112.684836", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gila Bend", + "scheduled_service": "no" + }, + { + "id": "334685", + "ident": "US-1340", + "type": "closed", + "name": "Luke Air Force Auxiliary Field 11", + "latitude_deg": "32.817395", + "longitude_deg": "-112.91512", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gila Bend", + "scheduled_service": "no" + }, + { + "id": "334686", + "ident": "US-1341", + "type": "closed", + "name": "Luke Air Force Auxiliary Field 10", + "latitude_deg": "32.719349", + "longitude_deg": "-112.852936", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gila Bend", + "scheduled_service": "no" + }, + { + "id": "334687", + "ident": "US-1342", + "type": "closed", + "name": "Luke Air Force Auxiliary Field 9", + "latitude_deg": "32.660332", + "longitude_deg": "-112.870874", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gila Bend", + "scheduled_service": "no" + }, + { + "id": "334688", + "ident": "US-1343", + "type": "closed", + "name": "Luke Air Force Auxiliary Field 8", + "latitude_deg": "32.605544", + "longitude_deg": "-112.878342", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gila Bend", + "scheduled_service": "no" + }, + { + "id": "334689", + "ident": "US-1344", + "type": "closed", + "name": "Snowflake Municipal Airport", + "latitude_deg": "34.547041", + "longitude_deg": "-110.108972", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Snowflake", + "scheduled_service": "no" + }, + { + "id": "334690", + "ident": "US-1345", + "type": "closed", + "name": "Transwestern Pipeline Airfield 3", + "latitude_deg": "35.302938", + "longitude_deg": "-110.85454", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Leupp", + "scheduled_service": "no", + "keywords": "transwestern pipeline airfield 3" + }, + { + "id": "334691", + "ident": "US-1346", + "type": "closed", + "name": "Transwestern Pipeline Airfield 4", + "latitude_deg": "35.567946", + "longitude_deg": "-109.378552", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Klagetoh", + "scheduled_service": "no", + "local_code": "9.00E+05", + "keywords": "transwestern pipeline airfield 4" + }, + { + "id": "334692", + "ident": "US-1347", + "type": "closed", + "name": "Transwestern Pipeline Airfield 5", + "latitude_deg": "35.40486", + "longitude_deg": "-108.24918", + "elevation_ft": "7182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Thoreau", + "scheduled_service": "no", + "keywords": "97E" + }, + { + "id": "334693", + "ident": "US-1348", + "type": "closed", + "name": "Transwestern Pipeline Airfield 6", + "latitude_deg": "35.018786", + "longitude_deg": "-107.416914", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "New Laguna", + "scheduled_service": "no", + "keywords": "KLZZ, Laguna" + }, + { + "id": "334695", + "ident": "US-1349", + "type": "closed", + "name": "Transwestern Pipeline Airfield 7", + "latitude_deg": "34.320188", + "longitude_deg": "-106.267319", + "elevation_ft": "6840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Mountainair", + "scheduled_service": "no", + "local_code": "77E", + "keywords": "77E" + }, + { + "id": "334696", + "ident": "US-1350", + "type": "closed", + "name": "Allied Airstrip", + "latitude_deg": "32.148592", + "longitude_deg": "-110.853349", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "334697", + "ident": "US-1351", + "type": "closed", + "name": "Sahuarita Flight Strip", + "latitude_deg": "31.961484", + "longitude_deg": "-110.92196", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sahuarita", + "scheduled_service": "no" + }, + { + "id": "334698", + "ident": "US-1352", + "type": "closed", + "name": "Florence Junction Airport (1951)", + "latitude_deg": "33.254623", + "longitude_deg": "-111.346521", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Florence Junction", + "scheduled_service": "no" + }, + { + "id": "334699", + "ident": "US-1353", + "type": "closed", + "name": "Florence Junction Airport (1961)", + "latitude_deg": "33.259486", + "longitude_deg": "-111.329055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Apache Junction", + "scheduled_service": "no" + }, + { + "id": "334701", + "ident": "US-1354", + "type": "closed", + "name": "Transwestern Pipeline Number 8 Airport", + "latitude_deg": "33.923278", + "longitude_deg": "-105.337086", + "elevation_ft": "5820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "scheduled_service": "no", + "keywords": "62E" + }, + { + "id": "334716", + "ident": "US-1355", + "type": "closed", + "name": "Francisco Grande Airfield", + "latitude_deg": "32.883948", + "longitude_deg": "-111.8573", + "elevation_ft": "1344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Casa Grande", + "scheduled_service": "no" + }, + { + "id": "334717", + "ident": "US-1356", + "type": "closed", + "name": "Three Point Airport", + "latitude_deg": "32.901101", + "longitude_deg": "-111.761255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Casa Grande", + "scheduled_service": "no", + "local_code": "E58" + }, + { + "id": "334720", + "ident": "US-1357", + "type": "closed", + "name": "Haarman Field", + "latitude_deg": "32.107988", + "longitude_deg": "-111.101174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no", + "keywords": "haarman, tucson" + }, + { + "id": "334721", + "ident": "US-1358", + "type": "closed", + "name": "Neff Field", + "latitude_deg": "32.08981", + "longitude_deg": "-111.238718", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no", + "keywords": "tucson, neff field" + }, + { + "id": "334722", + "ident": "US-1359", + "type": "closed", + "name": "Tuba City Airport (1945)", + "latitude_deg": "36.120531", + "longitude_deg": "-111.268823", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tuba City", + "scheduled_service": "no", + "keywords": "Tó Naneesdizí" + }, + { + "id": "334723", + "ident": "US-1360", + "type": "closed", + "name": "Tuba City Airport (1956)", + "latitude_deg": "36.136661", + "longitude_deg": "-111.233397", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tuba City", + "scheduled_service": "no", + "keywords": "Tó Naneesdizí" + }, + { + "id": "334724", + "ident": "US-1361", + "type": "closed", + "name": "Winona Intermediate Field", + "latitude_deg": "35.144336", + "longitude_deg": "-111.270819", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Flagstaff", + "scheduled_service": "no" + }, + { + "id": "334725", + "ident": "US-1362", + "type": "closed", + "name": "Ash Fork Intermediate Field", + "latitude_deg": "35.228935", + "longitude_deg": "-112.552443", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Ash Fork", + "scheduled_service": "no", + "keywords": "ash fork" + }, + { + "id": "334726", + "ident": "US-1363", + "type": "closed", + "name": "Ash Fork Santa Fe Airfield", + "latitude_deg": "35.232334", + "longitude_deg": "-112.486911", + "elevation_ft": "5145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Ash Fork", + "scheduled_service": "no", + "keywords": "ash fork, jay hasbrook, santa fe airfield" + }, + { + "id": "334727", + "ident": "US-1364", + "type": "closed", + "name": "Grand Canyon North Rim Airport / V T Park Landing Strip", + "latitude_deg": "36.388469", + "longitude_deg": "-112.130585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "North Rim", + "scheduled_service": "no", + "keywords": "north rim, grand canyon, v t park" + }, + { + "id": "334728", + "ident": "US-1365", + "type": "closed", + "name": "Grand Canyon Red Butte Airfield", + "latitude_deg": "35.855595", + "longitude_deg": "-112.086468", + "elevation_ft": "6382", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tusayan", + "scheduled_service": "no", + "keywords": "grand canyon, red butte" + }, + { + "id": "334729", + "ident": "US-1366", + "type": "closed", + "name": "Hassayampa Field", + "latitude_deg": "33.366234", + "longitude_deg": "-112.758179", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Buckeye", + "scheduled_service": "no", + "keywords": "hassayampa, buckeye" + }, + { + "id": "334730", + "ident": "US-1367", + "type": "closed", + "name": "Luke Air Force Auxiliary Field 6 / Goodyear Field", + "latitude_deg": "33.442972", + "longitude_deg": "-112.514162", + "elevation_ft": "1089", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Buckeye", + "scheduled_service": "no" + }, + { + "id": "334731", + "ident": "US-1368", + "type": "closed", + "name": "Forepaugh Airport", + "latitude_deg": "33.950035", + "longitude_deg": "-112.996745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wickenburg", + "scheduled_service": "no", + "local_code": "44E", + "keywords": "wickenburg, echeverria, forepaugh" + }, + { + "id": "334732", + "ident": "US-1369", + "type": "closed", + "name": "Tonopah Intermediate Field", + "latitude_deg": "33.49739", + "longitude_deg": "-112.85205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonopah", + "scheduled_service": "no", + "keywords": "tonopah intermediate field" + }, + { + "id": "334733", + "ident": "US-1370", + "type": "closed", + "name": "Salome Airport", + "latitude_deg": "33.773118", + "longitude_deg": "-113.619919", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Salome", + "scheduled_service": "no", + "keywords": "salome" + }, + { + "id": "334734", + "ident": "US-1371", + "type": "closed", + "name": "Ford Motor Proving Ground Airfield", + "latitude_deg": "34.878327", + "longitude_deg": "-114.122286", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yucca", + "scheduled_service": "no", + "local_code": "58AZ", + "keywords": "58az, ford motor proving ground, yucca" + }, + { + "id": "334735", + "ident": "US-1372", + "type": "closed", + "name": "Topock Field", + "latitude_deg": "34.728066", + "longitude_deg": "-114.438572", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Topock", + "scheduled_service": "no", + "keywords": "topock" + }, + { + "id": "334736", + "ident": "US-1373", + "type": "closed", + "name": "Signal Auxiliary Army Airfield 2", + "latitude_deg": "34.374221", + "longitude_deg": "-113.909812", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Signal", + "scheduled_service": "no", + "keywords": "signal" + }, + { + "id": "334737", + "ident": "US-1374", + "type": "closed", + "name": "Bullhead City Airport", + "latitude_deg": "35.162023", + "longitude_deg": "-114.565473", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bullhead City", + "scheduled_service": "no", + "keywords": "bullhead city" + }, + { + "id": "334738", + "ident": "US-1375", + "type": "closed", + "name": "Lake Mohave Ranchos Airport", + "latitude_deg": "35.570005", + "longitude_deg": "-114.298282", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Dolan Springs", + "scheduled_service": "no", + "keywords": "dolan springs, lake mohave ranchos" + }, + { + "id": "334739", + "ident": "US-1376", + "type": "closed", + "name": "Cottonwood Landing Airport", + "latitude_deg": "35.485467", + "longitude_deg": "-114.665873", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Dolan Springs", + "scheduled_service": "no", + "local_code": "P53", + "keywords": "cottonwood springs, searchlight ferry, p53" + }, + { + "id": "334740", + "ident": "US-1377", + "type": "closed", + "name": "Cyclopic Field", + "latitude_deg": "35.739685", + "longitude_deg": "-114.078083", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Dolan Springs", + "scheduled_service": "no", + "keywords": "cyclopic" + }, + { + "id": "334741", + "ident": "US-1378", + "type": "closed", + "name": "Hackberry Field", + "latitude_deg": "35.43873", + "longitude_deg": "-113.79942", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Antares", + "scheduled_service": "no", + "keywords": "antares, hackberry" + }, + { + "id": "334742", + "ident": "US-1379", + "type": "closed", + "name": "Bowie Airport (1929)", + "latitude_deg": "32.328011", + "longitude_deg": "-109.507148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bowie", + "scheduled_service": "no" + }, + { + "id": "334743", + "ident": "US-1380", + "type": "closed", + "name": "Bowie Airport (1953)", + "latitude_deg": "32.335798", + "longitude_deg": "-109.473782", + "elevation_ft": "3730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bowie", + "scheduled_service": "no", + "keywords": "Bowie International, C L Stephens" + }, + { + "id": "334744", + "ident": "US-1381", + "type": "closed", + "name": "Angel Field", + "latitude_deg": "32.607207", + "longitude_deg": "-109.953232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Willcox", + "scheduled_service": "no", + "keywords": "fort grant, angel" + }, + { + "id": "334745", + "ident": "US-1382", + "type": "closed", + "name": "Cochise Intermediate Field", + "latitude_deg": "32.026417", + "longitude_deg": "-109.92568", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Cochise", + "scheduled_service": "no" + }, + { + "id": "334746", + "ident": "US-1383", + "type": "closed", + "name": "Forrest Field", + "latitude_deg": "31.37449", + "longitude_deg": "-109.67495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Douglas", + "scheduled_service": "no", + "keywords": "douglas, forrest, cochise" + }, + { + "id": "334747", + "ident": "US-1384", + "type": "closed", + "name": "Webb Field", + "latitude_deg": "31.76754", + "longitude_deg": "-109.69896", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Elfrida", + "scheduled_service": "no" + }, + { + "id": "334748", + "ident": "US-1385", + "type": "closed", + "name": "Miracle Valley Airstrip", + "latitude_deg": "31.37786", + "longitude_deg": "-110.16069", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Miracle Valley", + "scheduled_service": "no", + "keywords": "miracle valley" + }, + { + "id": "334749", + "ident": "US-1386", + "type": "closed", + "name": "Marsh Downtown Airport", + "latitude_deg": "32.716602", + "longitude_deg": "-114.610577", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yuma", + "scheduled_service": "no" + }, + { + "id": "334750", + "ident": "US-1387", + "type": "closed", + "name": "McDaniel Field", + "latitude_deg": "32.58927", + "longitude_deg": "-114.7655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Somerton", + "scheduled_service": "no", + "keywords": "somerton, mcdaniel" + }, + { + "id": "334751", + "ident": "US-1388", + "type": "closed", + "name": "Camp Horn Army Airfield", + "latitude_deg": "32.94602", + "longitude_deg": "-113.53446", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Dateland", + "scheduled_service": "no", + "keywords": "camp horn, dateland" + }, + { + "id": "334752", + "ident": "US-1389", + "type": "closed", + "name": "Colfred Airport", + "latitude_deg": "32.69299", + "longitude_deg": "-113.88291", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Colfred", + "scheduled_service": "no", + "keywords": "colfred" + }, + { + "id": "334753", + "ident": "US-1390", + "type": "closed", + "name": "DVR (Desert Valencia Ranch) Airport", + "latitude_deg": "32.71346", + "longitude_deg": "-113.897", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wellton", + "scheduled_service": "no", + "keywords": "wellton, dvr, desert valencia ranch" + }, + { + "id": "334754", + "ident": "US-1391", + "type": "closed", + "name": "Wellton Airport", + "latitude_deg": "32.65499", + "longitude_deg": "-114.09879", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wellton", + "scheduled_service": "no", + "keywords": "wellton" + }, + { + "id": "334755", + "ident": "US-1392", + "type": "closed", + "name": "Mesa Airport", + "latitude_deg": "33.43773", + "longitude_deg": "-111.84325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no", + "keywords": "mesa" + }, + { + "id": "334756", + "ident": "US-1393", + "type": "closed", + "name": "Freeway Airport", + "latitude_deg": "32.27777", + "longitude_deg": "-111.00957", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no", + "keywords": "tucson, gilpin, freeway" + }, + { + "id": "334757", + "ident": "US-1394", + "type": "closed", + "name": "Coronado Field", + "latitude_deg": "32.68694", + "longitude_deg": "-111.30042", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Red Rock", + "scheduled_service": "no", + "keywords": "red rock, coronado" + }, + { + "id": "334758", + "ident": "US-1395", + "type": "closed", + "name": "Avra Field", + "latitude_deg": "32.3787", + "longitude_deg": "-111.30518", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Marana", + "scheduled_service": "no", + "keywords": "avra, marana" + }, + { + "id": "334759", + "ident": "US-1396", + "type": "closed", + "name": "Red Rock Airport", + "latitude_deg": "32.599035", + "longitude_deg": "-111.345491", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Red Rock", + "scheduled_service": "no", + "keywords": "redrock" + }, + { + "id": "334768", + "ident": "US-1397", + "type": "heliport", + "name": "St. David's Emergency Center Bastrop Heliport", + "latitude_deg": "30.10283", + "longitude_deg": "-97.29191", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bastrop", + "scheduled_service": "no", + "keywords": "bastrop, st davids" + }, + { + "id": "334769", + "ident": "US-1398", + "type": "heliport", + "name": "Methodist Hospital Metropolitan Helipad", + "latitude_deg": "29.44148", + "longitude_deg": "-98.49094", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "keywords": "luling, ascension seton, edgar davis" + }, + { + "id": "334770", + "ident": "US-1399", + "type": "closed", + "name": "Eagle Rock Ranch Airport", + "latitude_deg": "30.027266", + "longitude_deg": "-98.116407", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Woodcreek", + "scheduled_service": "no" + }, + { + "id": "334771", + "ident": "US-1400", + "type": "small_airport", + "name": "Schultz Air Ranch", + "latitude_deg": "33.85674", + "longitude_deg": "-113.92928", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bouse", + "scheduled_service": "no", + "keywords": "bouse, schultz air ranch" + }, + { + "id": "334772", + "ident": "US-1401", + "type": "closed", + "name": "Utting Siding Airstrip", + "latitude_deg": "33.83405", + "longitude_deg": "-113.8786", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bouse", + "scheduled_service": "no", + "keywords": "bouse, utting" + }, + { + "id": "334773", + "ident": "US-1402", + "type": "closed", + "name": "Aguila Farms Airport", + "latitude_deg": "33.96473", + "longitude_deg": "-113.15907", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Aguila", + "scheduled_service": "no", + "local_code": "P51", + "keywords": "p51, aguila, aguila farms" + }, + { + "id": "334774", + "ident": "US-1403", + "type": "closed", + "name": "Flying E Guest Ranch Airport", + "latitude_deg": "33.94767", + "longitude_deg": "-112.79262", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wickenburg", + "scheduled_service": "no", + "keywords": "wickenburg, flying e" + }, + { + "id": "334775", + "ident": "US-1404", + "type": "closed", + "name": "Clementine Mine Airport", + "latitude_deg": "33.78091", + "longitude_deg": "-112.34438", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peoria", + "scheduled_service": "no", + "local_code": "AZ44", + "keywords": "peoria, clementine mine" + }, + { + "id": "334776", + "ident": "US-1405", + "type": "closed", + "name": "Sun City Airfield", + "latitude_deg": "33.740008", + "longitude_deg": "-112.259846", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sun City", + "scheduled_service": "no", + "keywords": "sun city" + }, + { + "id": "334777", + "ident": "US-1406", + "type": "closed", + "name": "Sycamore Creek Airport", + "latitude_deg": "33.661594", + "longitude_deg": "-111.614871", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Rio Verde", + "scheduled_service": "no" + }, + { + "id": "334778", + "ident": "US-1407", + "type": "closed", + "name": "Duncan Municipal Airport", + "latitude_deg": "32.693588", + "longitude_deg": "-109.128758", + "elevation_ft": "3876", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Duncan", + "scheduled_service": "no", + "keywords": "Duncan Municipal, O'Connor Field" + }, + { + "id": "334779", + "ident": "US-1408", + "type": "heliport", + "name": "Ascension Seton Smithville Regional Hospital Heliport", + "latitude_deg": "30.00439", + "longitude_deg": "-97.13581", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Smithville", + "scheduled_service": "no", + "gps_code": "TX54", + "local_code": "TX54", + "keywords": "smithville, ascension seton" + }, + { + "id": "334780", + "ident": "US-1409", + "type": "heliport", + "name": "Saint Mark's Medical Center Helipad", + "latitude_deg": "29.936221", + "longitude_deg": "-96.876528", + "elevation_ft": "344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "La Grange", + "scheduled_service": "no", + "keywords": "la grange, st marks" + }, + { + "id": "334781", + "ident": "US-1410", + "type": "heliport", + "name": "Sheraton Gateway Los Angeles Hotel Helipad", + "latitude_deg": "33.946537", + "longitude_deg": "-118.391011", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334782", + "ident": "US-1411", + "type": "heliport", + "name": "Skyview Center II Helipad", + "latitude_deg": "33.946951", + "longitude_deg": "-118.38967", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334783", + "ident": "US-1412", + "type": "heliport", + "name": "Skyview Center I Helipad", + "latitude_deg": "33.945919", + "longitude_deg": "-118.389734", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334784", + "ident": "US-1413", + "type": "heliport", + "name": "Crowne Plaza Los Angeles Airport Hotel Helipad", + "latitude_deg": "33.9459", + "longitude_deg": "-118.38897", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334785", + "ident": "US-1414", + "type": "heliport", + "name": "Residence Inn by Marriott Los Angeles Airport Helipad", + "latitude_deg": "33.946115", + "longitude_deg": "-118.387379", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334786", + "ident": "US-1415", + "type": "heliport", + "name": "Embassy Suites by Hilton Los Angeles International Airport North Helipad", + "latitude_deg": "33.94674", + "longitude_deg": "-118.38637", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334787", + "ident": "US-1416", + "type": "heliport", + "name": "Hilton Los Angeles Airport Helipad", + "latitude_deg": "33.94589", + "longitude_deg": "-118.38162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334788", + "ident": "US-1417", + "type": "heliport", + "name": "5777 West Century Plaza Helipad", + "latitude_deg": "33.94717", + "longitude_deg": "-118.38255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334789", + "ident": "US-1418", + "type": "heliport", + "name": "DirecTV LA1 Heliport", + "latitude_deg": "33.9304", + "longitude_deg": "-118.3858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "El Segundo", + "scheduled_service": "no" + }, + { + "id": "334790", + "ident": "US-1419", + "type": "heliport", + "name": "Raytheon Heliport", + "latitude_deg": "33.91554", + "longitude_deg": "-118.38704", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "El Segundo", + "scheduled_service": "no" + }, + { + "id": "334791", + "ident": "US-1420", + "type": "heliport", + "name": "Raytheon Building Helipad", + "latitude_deg": "33.93013", + "longitude_deg": "-118.39222", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "El Segundo", + "scheduled_service": "no" + }, + { + "id": "334792", + "ident": "US-1421", + "type": "heliport", + "name": "Bundy Olympic Helipad", + "latitude_deg": "34.032354", + "longitude_deg": "-118.452095", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334793", + "ident": "US-1422", + "type": "heliport", + "name": "Executive Tower Helipad", + "latitude_deg": "34.036235", + "longitude_deg": "-118.442788", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334794", + "ident": "US-1423", + "type": "heliport", + "name": "Trident Center Heliport", + "latitude_deg": "34.037822", + "longitude_deg": "-118.443153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334795", + "ident": "US-1424", + "type": "heliport", + "name": "11300 West Olympic Helipad", + "latitude_deg": "34.037747", + "longitude_deg": "-118.441356", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334796", + "ident": "US-1425", + "type": "heliport", + "name": "Variety Building Helipad", + "latitude_deg": "34.04746", + "longitude_deg": "-118.44605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334797", + "ident": "US-1426", + "type": "heliport", + "name": "Westwood Gateway III Heliport", + "latitude_deg": "34.046517", + "longitude_deg": "-118.444403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334815", + "ident": "US-1427", + "type": "small_airport", + "name": "Eagle Runway", + "latitude_deg": "31.60324", + "longitude_deg": "-110.42968", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Fort Huachuca", + "scheduled_service": "no" + }, + { + "id": "334816", + "ident": "US-1428", + "type": "small_airport", + "name": "Pioneer Runway", + "latitude_deg": "31.6043", + "longitude_deg": "-110.4397", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Fort Huachuca", + "scheduled_service": "no" + }, + { + "id": "334817", + "ident": "US-1429", + "type": "closed", + "name": "Rancho San Jose Airstrip", + "latitude_deg": "31.35546", + "longitude_deg": "-109.73468", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Douglas", + "scheduled_service": "no" + }, + { + "id": "334827", + "ident": "US-1430", + "type": "closed", + "name": "Thunderhead Airport", + "latitude_deg": "32.136745", + "longitude_deg": "-110.729249", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "334828", + "ident": "US-1431", + "type": "closed", + "name": "Tucson Downtown Airport", + "latitude_deg": "32.18955", + "longitude_deg": "-110.95065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no", + "local_code": "2SE" + }, + { + "id": "334829", + "ident": "US-1432", + "type": "heliport", + "name": "Morning Star Ranch Helipad", + "latitude_deg": "31.54252", + "longitude_deg": "-110.93422", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Rio Rico", + "scheduled_service": "no", + "keywords": "morning star ranch, rio rico" + }, + { + "id": "334831", + "ident": "US-1433", + "type": "heliport", + "name": "Pomona Valley Hospital Medical Center Helipad", + "latitude_deg": "34.076759", + "longitude_deg": "-117.749464", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pomona", + "scheduled_service": "no", + "home_link": "https://www.pvhmc.org/", + "keywords": "pvhmc, pomona valley hospital, pomona" + }, + { + "id": "334832", + "ident": "US-1434", + "type": "closed", + "name": "Colton Airpark / Morrow Field", + "latitude_deg": "34.074364", + "longitude_deg": "-117.363875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Colton", + "scheduled_service": "no", + "local_code": "RTO", + "keywords": "colton, morrow" + }, + { + "id": "334833", + "ident": "US-1435", + "type": "heliport", + "name": "Loma Linda University Hospital South Helipad", + "latitude_deg": "34.048957", + "longitude_deg": "-117.263818", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Loma Linda", + "scheduled_service": "no" + }, + { + "id": "334834", + "ident": "US-1436", + "type": "closed", + "name": "Harvey's Airport", + "latitude_deg": "33.617426", + "longitude_deg": "-114.832072", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Blythe", + "scheduled_service": "no", + "keywords": "Blythe, Harvey, Skyway" + }, + { + "id": "334835", + "ident": "US-1437", + "type": "closed", + "name": "Heron Field", + "latitude_deg": "33.606613", + "longitude_deg": "-114.574227", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Blythe", + "scheduled_service": "no", + "keywords": "blythe, heron" + }, + { + "id": "334836", + "ident": "US-1438", + "type": "closed", + "name": "Fly-In Picnic Grounds Airport", + "latitude_deg": "33.669845", + "longitude_deg": "-114.23039", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Quartzsite", + "scheduled_service": "no", + "local_code": "4AZ4", + "keywords": "quartzsite, fly-in picnic grounds, 4az4" + }, + { + "id": "334837", + "ident": "US-1439", + "type": "closed", + "name": "Quartzsite Field", + "latitude_deg": "33.66823", + "longitude_deg": "-114.1925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Quartzsite", + "scheduled_service": "no", + "keywords": "quartzsite, quartzsite field" + }, + { + "id": "334839", + "ident": "US-1440", + "type": "small_airport", + "name": "Red Creek Airstrip", + "latitude_deg": "34.160078", + "longitude_deg": "-111.726665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Pine", + "scheduled_service": "no", + "keywords": "pine, red creek, rcm" + }, + { + "id": "334840", + "ident": "US-1441", + "type": "small_airport", + "name": "Grand Gulch Airstrip", + "latitude_deg": "36.322144", + "longitude_deg": "-113.786345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Littlefield", + "scheduled_service": "no", + "keywords": "littlefield, grand gulch, grand gulch mine" + }, + { + "id": "334842", + "ident": "US-1442", + "type": "closed", + "name": "New Hope Landing Strip", + "latitude_deg": "33.622665", + "longitude_deg": "-113.768213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Salome", + "scheduled_service": "no", + "keywords": "salome, new hope" + }, + { + "id": "334843", + "ident": "US-1443", + "type": "closed", + "name": "Centennial Landing Strip", + "latitude_deg": "33.558634", + "longitude_deg": "-113.360678", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Salome", + "scheduled_service": "no", + "keywords": "centennial" + }, + { + "id": "334844", + "ident": "US-1444", + "type": "closed", + "name": "Watts Airport", + "latitude_deg": "33.412157", + "longitude_deg": "-112.838602", + "elevation_ft": "991", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonopah", + "scheduled_service": "no", + "keywords": "wintersburg, watts" + }, + { + "id": "334845", + "ident": "US-1445", + "type": "heliport", + "name": "Hu Hu Kam Memorial Hospital Helipad", + "latitude_deg": "33.073576", + "longitude_deg": "-111.759898", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sacaton", + "scheduled_service": "no", + "keywords": "sacaton, hu hu kam" + }, + { + "id": "334846", + "ident": "US-1446", + "type": "heliport", + "name": "Banner Casa Grande Medical Center Helipad", + "latitude_deg": "32.88179", + "longitude_deg": "-111.70912", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Casa Grande", + "scheduled_service": "no", + "keywords": "casa grande, banner casa grande medical center" + }, + { + "id": "334848", + "ident": "US-1447", + "type": "heliport", + "name": "University Medical Center South Heliport", + "latitude_deg": "32.17462", + "longitude_deg": "-110.93134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "334849", + "ident": "US-1448", + "type": "heliport", + "name": "Northwest Medical Center Helipad", + "latitude_deg": "32.31913", + "longitude_deg": "-111.01014", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "334850", + "ident": "US-1449", + "type": "heliport", + "name": "Tucson VA Medical Center Helipad", + "latitude_deg": "32.17969", + "longitude_deg": "-110.96429", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "334851", + "ident": "US-1450", + "type": "heliport", + "name": "Benson Hospital Helipad", + "latitude_deg": "31.96545", + "longitude_deg": "-110.30814", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Benson", + "scheduled_service": "no" + }, + { + "id": "334852", + "ident": "US-1451", + "type": "closed", + "name": "San Simon Airport", + "latitude_deg": "32.268066", + "longitude_deg": "-109.238605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "San Simon", + "scheduled_service": "no", + "keywords": "san simon" + }, + { + "id": "334854", + "ident": "US-1452", + "type": "heliport", + "name": "HeloRescue Landing Pad", + "latitude_deg": "31.907286", + "longitude_deg": "-109.163528", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Portal", + "scheduled_service": "no", + "keywords": "portal, helorescue" + }, + { + "id": "334855", + "ident": "US-1453", + "type": "closed", + "name": "Cotton City Landing Area", + "latitude_deg": "32.071125", + "longitude_deg": "-108.881072", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Cotton City", + "scheduled_service": "no", + "keywords": "cotton city" + }, + { + "id": "334857", + "ident": "US-1454", + "type": "closed", + "name": "Rodeo Intermediate Field", + "latitude_deg": "31.929073", + "longitude_deg": "-108.996606", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Rodeo", + "scheduled_service": "no" + }, + { + "id": "334858", + "ident": "US-1455", + "type": "closed", + "name": "Mount Riley Intermediate Field", + "latitude_deg": "31.79413", + "longitude_deg": "-107.06586", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Anthony", + "scheduled_service": "no" + }, + { + "id": "334861", + "ident": "US-1456", + "type": "closed", + "name": "Deming Auxiliary Army Airfield 1", + "latitude_deg": "32.02457", + "longitude_deg": "-107.88302", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Deming", + "scheduled_service": "no" + }, + { + "id": "334862", + "ident": "US-1457", + "type": "closed", + "name": "Deming Center Airport", + "latitude_deg": "32.25555", + "longitude_deg": "-107.94593", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Deming", + "scheduled_service": "no", + "keywords": "deming auxiliary army airfield 2, deming center airport, deming" + }, + { + "id": "334864", + "ident": "US-1458", + "type": "closed", + "name": "Corralitos Ranch Airstrip", + "latitude_deg": "32.301553", + "longitude_deg": "-106.991301", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Las Cruces", + "scheduled_service": "no" + }, + { + "id": "334865", + "ident": "US-1459", + "type": "closed", + "name": "Stahmann Farms Airfield (1966)", + "latitude_deg": "32.177337", + "longitude_deg": "-106.762197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Mesquite", + "scheduled_service": "no" + }, + { + "id": "334866", + "ident": "US-1460", + "type": "heliport", + "name": "MountainView Regional Medical Center Helipad", + "latitude_deg": "32.3236", + "longitude_deg": "-106.73014", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Las Cruces", + "scheduled_service": "no" + }, + { + "id": "334867", + "ident": "US-1461", + "type": "heliport", + "name": "Las Cruces City Heliport", + "latitude_deg": "32.318274", + "longitude_deg": "-106.758018", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Las Cruces", + "scheduled_service": "no" + }, + { + "id": "334886", + "ident": "US-1462", + "type": "heliport", + "name": "Gateway Los Angeles Helipad", + "latitude_deg": "34.04123", + "longitude_deg": "-118.470418", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334887", + "ident": "US-1463", + "type": "heliport", + "name": "12400 Wilshire Helipad", + "latitude_deg": "34.04175", + "longitude_deg": "-118.46974", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334888", + "ident": "US-1464", + "type": "heliport", + "name": "12100 Wilshire Helipad", + "latitude_deg": "34.04355", + "longitude_deg": "-118.46761", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334889", + "ident": "US-1465", + "type": "heliport", + "name": "Wilshire Bundy Plaza Helipad", + "latitude_deg": "34.04407", + "longitude_deg": "-118.46821", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334890", + "ident": "US-1466", + "type": "heliport", + "name": "Wilshire Landmark II Helipad", + "latitude_deg": "34.04795", + "longitude_deg": "-118.46193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334891", + "ident": "US-1467", + "type": "heliport", + "name": "Wilshire Landmark I Helipad", + "latitude_deg": "34.04882", + "longitude_deg": "-118.46239", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334892", + "ident": "US-1468", + "type": "heliport", + "name": "Wells Fargo Center Helipad", + "latitude_deg": "34.05102", + "longitude_deg": "-118.45986", + "elevation_ft": "608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "keywords": "World Savings Center Helipad" + }, + { + "id": "334895", + "ident": "US-1469", + "type": "heliport", + "name": "One Westwood Helipad", + "latitude_deg": "34.05755", + "longitude_deg": "-118.44716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334896", + "ident": "US-1470", + "type": "heliport", + "name": "The Tower Helipad", + "latitude_deg": "34.057922", + "longitude_deg": "-118.444945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334897", + "ident": "US-1471", + "type": "heliport", + "name": "UCLA Wilshire Center Helipad", + "latitude_deg": "34.058219", + "longitude_deg": "-118.44458", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334898", + "ident": "US-1472", + "type": "heliport", + "name": "Murdock Plaza Helipad", + "latitude_deg": "34.058397", + "longitude_deg": "-118.443984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "334899", + "ident": "US-1473", + "type": "closed", + "name": "Halls Crossing Airport", + "latitude_deg": "37.471133", + "longitude_deg": "-110.700431", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Halls Crossing", + "scheduled_service": "no" + }, + { + "id": "334902", + "ident": "US-1474", + "type": "small_airport", + "name": "Pakoon Airstrip", + "latitude_deg": "36.51859", + "longitude_deg": "-113.86992", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Littlefield", + "scheduled_service": "no", + "keywords": "pakoon" + }, + { + "id": "334903", + "ident": "US-1475", + "type": "closed", + "name": "Pakoon Springs Airstrip", + "latitude_deg": "36.415895", + "longitude_deg": "-113.964701", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Littlefield", + "scheduled_service": "no", + "keywords": "pakoon springs" + }, + { + "id": "334904", + "ident": "US-1476", + "type": "small_airport", + "name": "Imlay Airstrip", + "latitude_deg": "36.67959", + "longitude_deg": "-113.62732", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Littlefield", + "scheduled_service": "no", + "keywords": "imlay" + }, + { + "id": "334905", + "ident": "US-1477", + "type": "closed", + "name": "Copper Mountain Mine Airstrip", + "latitude_deg": "36.160503", + "longitude_deg": "-113.348265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Littlefield", + "scheduled_service": "no" + }, + { + "id": "334906", + "ident": "US-1478", + "type": "closed", + "name": "Lake Flat Airstrip", + "latitude_deg": "36.14118", + "longitude_deg": "-113.53097", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Oak Grove", + "scheduled_service": "no" + }, + { + "id": "334907", + "ident": "US-1479", + "type": "closed", + "name": "Greasewood Airport", + "latitude_deg": "35.52037", + "longitude_deg": "-109.87093", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Greasewood", + "scheduled_service": "no", + "keywords": "greasewood, Díwózhii Biiʼ Tó" + }, + { + "id": "334908", + "ident": "US-1480", + "type": "closed", + "name": "Dilkon Airport", + "latitude_deg": "35.39261", + "longitude_deg": "-110.31716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Dilkon", + "scheduled_service": "no", + "keywords": "dilkon" + }, + { + "id": "334938", + "ident": "US-1481", + "type": "heliport", + "name": "Cholla Power Plant Helipad", + "latitude_deg": "34.938952", + "longitude_deg": "-110.294685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Joseph City", + "scheduled_service": "no" + }, + { + "id": "335024", + "ident": "US-1482", + "type": "small_airport", + "name": "Willow Valley Airport", + "latitude_deg": "34.913306", + "longitude_deg": "-114.580078", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mohave Valley", + "scheduled_service": "no", + "gps_code": "45AZ", + "local_code": "45AZ", + "keywords": "45az, willow valley, mohave valley" + }, + { + "id": "335025", + "ident": "US-1483", + "type": "heliport", + "name": "Saint Anthony's Hospital Central Heliport", + "latitude_deg": "39.715737", + "longitude_deg": "-105.128485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Lakewood", + "scheduled_service": "no" + }, + { + "id": "335026", + "ident": "US-1484", + "type": "closed", + "name": "Coyote Flats", + "latitude_deg": "37.204816", + "longitude_deg": "-118.477206", + "elevation_ft": "9988", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Aspendell", + "scheduled_service": "no", + "gps_code": "04CA", + "local_code": "04CA", + "keywords": "04CA, coyote flats" + }, + { + "id": "335027", + "ident": "US-1485", + "type": "closed", + "name": "Big Pine Airstrip", + "latitude_deg": "37.147044", + "longitude_deg": "-118.239841", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Big Pine", + "scheduled_service": "no" + }, + { + "id": "335028", + "ident": "US-1486", + "type": "small_airport", + "name": "Angel Point Backcountry Airstrip", + "latitude_deg": "38.325346", + "longitude_deg": "-110.435949", + "elevation_ft": "5303", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "335029", + "ident": "US-1487", + "type": "small_airport", + "name": "Cinder Cone Dry Lake Bed Airstrip", + "latitude_deg": "35.982608", + "longitude_deg": "-117.899759", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Coso", + "scheduled_service": "no" + }, + { + "id": "335030", + "ident": "US-1488", + "type": "small_airport", + "name": "Monache Meadows Airstrip", + "latitude_deg": "36.22591", + "longitude_deg": "-118.171713", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pearsonville", + "scheduled_service": "no" + }, + { + "id": "335031", + "ident": "US-1489", + "type": "closed", + "name": "Templeton Meadows Airstrip", + "latitude_deg": "36.32473", + "longitude_deg": "-118.22735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pearsonville", + "scheduled_service": "no" + }, + { + "id": "335032", + "ident": "US-1490", + "type": "small_airport", + "name": "Grant Airpark (Olancha Airstrip)", + "latitude_deg": "36.256092", + "longitude_deg": "-117.997112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Olancha", + "scheduled_service": "no", + "local_code": "O99", + "keywords": "olancha, grant" + }, + { + "id": "335033", + "ident": "US-1491", + "type": "closed", + "name": "Adamson Field", + "latitude_deg": "36.28204", + "longitude_deg": "-117.99982", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Olancha", + "scheduled_service": "no" + }, + { + "id": "335034", + "ident": "US-1492", + "type": "closed", + "name": "Manzanar Airport", + "latitude_deg": "36.73689", + "longitude_deg": "-118.144784", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Manzanar", + "scheduled_service": "no", + "keywords": "manzanar" + }, + { + "id": "335116", + "ident": "US-1493", + "type": "seaplane_base", + "name": "Dry Tortugas Seaplane Base", + "latitude_deg": "24.626836", + "longitude_deg": "-82.871925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Key West", + "scheduled_service": "no", + "home_link": "https://keywestseaplanecharters.com/" + }, + { + "id": "335117", + "ident": "US-1494", + "type": "heliport", + "name": "Center West Helipad", + "latitude_deg": "34.059668", + "longitude_deg": "-118.442777", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "keywords": "los angeles, westwood, center west" + }, + { + "id": "335118", + "ident": "US-1495", + "type": "heliport", + "name": "White House South Lawn Helipad", + "latitude_deg": "38.897173", + "longitude_deg": "-77.036576", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DC", + "municipality": "Washington", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/South_Lawn", + "keywords": "white house south lawn" + }, + { + "id": "335119", + "ident": "US-1496", + "type": "heliport", + "name": "W Hollywood Helipad", + "latitude_deg": "34.101156", + "longitude_deg": "-118.325767", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "keywords": "w hollywood" + }, + { + "id": "335121", + "ident": "US-1497", + "type": "heliport", + "name": "1600 Vine Helipad", + "latitude_deg": "34.1001", + "longitude_deg": "-118.32564", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "keywords": "hollywood, 1600 vine" + }, + { + "id": "335122", + "ident": "US-1498", + "type": "heliport", + "name": "Vine Street Tower Helipad", + "latitude_deg": "34.10003", + "longitude_deg": "-118.32709", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "335132", + "ident": "US-1499", + "type": "closed", + "name": "Converse County Airport (Old) / American Legion Airport", + "latitude_deg": "42.744529", + "longitude_deg": "-105.36816", + "elevation_ft": "4854", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Douglas", + "scheduled_service": "no", + "keywords": "KDGW, DGW, Douglas Motorsports Park" + }, + { + "id": "335133", + "ident": "US-1500", + "type": "heliport", + "name": "Rolling V Ranch Heliport", + "latitude_deg": "33.02585", + "longitude_deg": "-97.45931", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rhome", + "scheduled_service": "no", + "gps_code": "3TE7", + "local_code": "3TE7", + "keywords": "3te7, rhome, rolling v ranch" + }, + { + "id": "335222", + "ident": "US-1501", + "type": "heliport", + "name": "Aspen Creek Lussow Heliport", + "latitude_deg": "45.449986", + "longitude_deg": "-89.581811", + "elevation_ft": "1522", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Tomahawk", + "scheduled_service": "no", + "gps_code": "WI04", + "local_code": "WI04" + }, + { + "id": "335329", + "ident": "US-1502", + "type": "seaplane_base", + "name": "Fort Pierce Seaplane Base", + "latitude_deg": "27.43935", + "longitude_deg": "-80.312139", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Pierce", + "scheduled_service": "no", + "local_code": "1FL" + }, + { + "id": "335330", + "ident": "US-1503", + "type": "seaplane_base", + "name": "Cedar Lake Seaplane Base", + "latitude_deg": "41.373461", + "longitude_deg": "-87.432811", + "elevation_ft": "692", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Cedar Lake", + "scheduled_service": "no", + "local_code": "IN7" + }, + { + "id": "335331", + "ident": "US-1504", + "type": "small_airport", + "name": "Stevens Ranch Airport", + "latitude_deg": "45.288043", + "longitude_deg": "-106.145296", + "elevation_ft": "3300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Ashland", + "scheduled_service": "no", + "local_code": "1M6" + }, + { + "id": "335332", + "ident": "US-1505", + "type": "seaplane_base", + "name": "Hudson Lake Seaplane Base", + "latitude_deg": "41.713967", + "longitude_deg": "-86.546017", + "elevation_ft": "761", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hudson Lake", + "scheduled_service": "no", + "local_code": "IN6" + }, + { + "id": "335350", + "ident": "US-1506", + "type": "small_airport", + "name": "Holyoak Airport", + "latitude_deg": "41.725774", + "longitude_deg": "-111.9914", + "elevation_ft": "4710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Mendon", + "scheduled_service": "no", + "gps_code": "UT29", + "local_code": "UT29" + }, + { + "id": "335351", + "ident": "US-1507", + "type": "small_airport", + "name": "Lynn Airfield", + "latitude_deg": "35.367566", + "longitude_deg": "-99.21945", + "elevation_ft": "1912", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Burns Flat", + "scheduled_service": "no", + "gps_code": "OK98", + "local_code": "OK98" + }, + { + "id": "335352", + "ident": "US-1508", + "type": "heliport", + "name": "EGM Heliport", + "latitude_deg": "30.197677", + "longitude_deg": "-99.317522", + "elevation_ft": "2073", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mountain Home", + "scheduled_service": "no", + "gps_code": "08TE", + "local_code": "08TE" + }, + { + "id": "335430", + "ident": "US-1509", + "type": "heliport", + "name": "St Lukes Anderson Heliport", + "latitude_deg": "40.650833", + "longitude_deg": "-75.2875", + "elevation_ft": "377", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Easton", + "scheduled_service": "no", + "gps_code": "PA34", + "local_code": "PA34" + }, + { + "id": "335807", + "ident": "US-1510", + "type": "small_airport", + "name": "Petty Creek Mountain Ranch Airport", + "latitude_deg": "46.909485", + "longitude_deg": "-114.465374", + "elevation_ft": "3519", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Alberton", + "scheduled_service": "no", + "gps_code": "MT81", + "local_code": "MT81" + }, + { + "id": "335813", + "ident": "US-1511", + "type": "heliport", + "name": "VFT, LLC Heliport", + "latitude_deg": "26.707389", + "longitude_deg": "-80.661694", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Belle Glade", + "scheduled_service": "no", + "gps_code": "18FL", + "local_code": "18FL" + }, + { + "id": "335816", + "ident": "US-1512", + "type": "small_airport", + "name": "Fish Creek Ranch Airport", + "latitude_deg": "42.544028", + "longitude_deg": "-110.395972", + "elevation_ft": "7635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Big Piney", + "scheduled_service": "no", + "gps_code": "WY19", + "local_code": "WY19" + }, + { + "id": "335817", + "ident": "US-1513", + "type": "small_airport", + "name": "Husky Ranch Airport", + "latitude_deg": "45.787", + "longitude_deg": "-108.729", + "elevation_ft": "3503", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Billings", + "scheduled_service": "no", + "gps_code": "MT40", + "local_code": "MT40" + }, + { + "id": "335819", + "ident": "US-1514", + "type": "small_airport", + "name": "Back Porch Ranch Airport", + "latitude_deg": "29.601894", + "longitude_deg": "-100.31725", + "elevation_ft": "1755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no", + "gps_code": "TE25", + "local_code": "TE25" + }, + { + "id": "335853", + "ident": "US-1515", + "type": "heliport", + "name": "Ascension Seton Highland Lakes Hospital Heliport", + "latitude_deg": "30.732575", + "longitude_deg": "-98.236241", + "elevation_ft": "1261", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Burnet", + "scheduled_service": "no", + "gps_code": "38TA", + "local_code": "38TA" + }, + { + "id": "335855", + "ident": "US-1516", + "type": "small_airport", + "name": "Pianosa Flying Farm Ultralight Flightpark", + "latitude_deg": "48.204361", + "longitude_deg": "-120.120722", + "elevation_ft": "1340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Carlton", + "scheduled_service": "no", + "gps_code": "WA20", + "local_code": "WA20" + }, + { + "id": "335857", + "ident": "US-1517", + "type": "small_airport", + "name": "Over the Top Aviation Airport", + "latitude_deg": "35.826974", + "longitude_deg": "-90.907992", + "elevation_ft": "252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Cash", + "scheduled_service": "no", + "gps_code": "9AR9", + "local_code": "9AR9" + }, + { + "id": "335858", + "ident": "US-1518", + "type": "heliport", + "name": "Cedar City Hospital Heliport", + "latitude_deg": "37.700261", + "longitude_deg": "-113.067536", + "elevation_ft": "5696", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Cedar City", + "scheduled_service": "no", + "gps_code": "UT50", + "local_code": "UT50" + }, + { + "id": "335861", + "ident": "US-1519", + "type": "seaplane_base", + "name": "Clearwater Marriott Seaplane Base", + "latitude_deg": "27.952748", + "longitude_deg": "-82.828299", + "elevation_ft": "1", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Clearwater", + "scheduled_service": "no", + "gps_code": "1FD2", + "local_code": "1FD2" + }, + { + "id": "335862", + "ident": "US-1520", + "type": "heliport", + "name": "WB Heliport", + "latitude_deg": "35.406667", + "longitude_deg": "-80.515", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "8NC5", + "local_code": "8NC5" + }, + { + "id": "335864", + "ident": "US-1521", + "type": "heliport", + "name": "Crespi Helistop", + "latitude_deg": "32.88233", + "longitude_deg": "-96.81171", + "elevation_ft": "566", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "TX98", + "local_code": "TX98" + }, + { + "id": "335865", + "ident": "US-1522", + "type": "heliport", + "name": "Delta Community Hospital Heliport", + "latitude_deg": "39.349544", + "longitude_deg": "-112.560613", + "elevation_ft": "4619", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Delta", + "scheduled_service": "no", + "gps_code": "UT48", + "local_code": "UT48" + }, + { + "id": "335869", + "ident": "US-1523", + "type": "heliport", + "name": "LZ Elbert Heliport", + "latitude_deg": "39.180966", + "longitude_deg": "-104.495483", + "elevation_ft": "7084", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Elbert", + "scheduled_service": "no", + "gps_code": "CO77", + "local_code": "CO77" + }, + { + "id": "335871", + "ident": "US-1524", + "type": "heliport", + "name": "Meemos Farm Heliport", + "latitude_deg": "43.856161", + "longitude_deg": "-85.325097", + "elevation_ft": "1081", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Evart", + "scheduled_service": "no", + "gps_code": "31MI", + "local_code": "31MI" + }, + { + "id": "335872", + "ident": "US-1525", + "type": "small_airport", + "name": "Fairfield Ranch Airport", + "latitude_deg": "43.395147", + "longitude_deg": "-114.825325", + "elevation_ft": "5183", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "ID70", + "local_code": "ID70" + }, + { + "id": "335873", + "ident": "US-1526", + "type": "heliport", + "name": "Mayo Clinic Fairmont Heliport", + "latitude_deg": "43.639507", + "longitude_deg": "-94.449098", + "elevation_ft": "1175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Fairmont", + "scheduled_service": "no", + "gps_code": "95MN", + "local_code": "95MN" + }, + { + "id": "335874", + "ident": "US-1527", + "type": "heliport", + "name": "AE153 Base Heliport", + "latitude_deg": "33.482261", + "longitude_deg": "-84.433199", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "GA93", + "local_code": "GA93" + }, + { + "id": "335877", + "ident": "US-1528", + "type": "heliport", + "name": "Twin County Regional Heliport", + "latitude_deg": "36.670222", + "longitude_deg": "-80.923308", + "elevation_ft": "2581", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Galax", + "scheduled_service": "no", + "gps_code": "VA80", + "local_code": "VA80" + }, + { + "id": "335937", + "ident": "US-1529", + "type": "small_airport", + "name": "Selenite / Factory Butte Coal Mine Airport", + "latitude_deg": "38.487142", + "longitude_deg": "-110.913785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "335938", + "ident": "US-1530", + "type": "small_airport", + "name": "Big Thompson Mesa Airstrip", + "latitude_deg": "37.68667", + "longitude_deg": "-110.91199", + "elevation_ft": "5010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no" + }, + { + "id": "335939", + "ident": "US-1531", + "type": "small_airport", + "name": "Stone Cabin Airstrip", + "latitude_deg": "39.77741", + "longitude_deg": "-110.31729", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Sunnyside", + "scheduled_service": "no" + }, + { + "id": "335940", + "ident": "US-1532", + "type": "closed", + "name": "Spiral Jetty Airstrip", + "latitude_deg": "41.457889", + "longitude_deg": "-112.686805", + "elevation_ft": "4240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Corinne", + "scheduled_service": "no" + }, + { + "id": "335941", + "ident": "US-1533", + "type": "small_airport", + "name": "Locomotive Springs Airstrip", + "latitude_deg": "41.707379", + "longitude_deg": "-112.919873", + "elevation_ft": "4225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Snowville", + "scheduled_service": "no" + }, + { + "id": "335942", + "ident": "US-1534", + "type": "closed", + "name": "Taylor Flat Airport", + "latitude_deg": "40.88985", + "longitude_deg": "-109.16491", + "elevation_ft": "5626", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Dutch John", + "scheduled_service": "no" + }, + { + "id": "335943", + "ident": "US-1535", + "type": "heliport", + "name": "McCamey County Hospital Helipad", + "latitude_deg": "31.115368", + "longitude_deg": "-102.211191", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "McCamey", + "scheduled_service": "no" + }, + { + "id": "335944", + "ident": "US-1536", + "type": "heliport", + "name": "Rankin County Hospital Helipad", + "latitude_deg": "31.232642", + "longitude_deg": "-101.934521", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rankin", + "scheduled_service": "no" + }, + { + "id": "335945", + "ident": "US-1537", + "type": "closed", + "name": "Power Line Lake Bed Airstrip", + "latitude_deg": "39.143026", + "longitude_deg": "-119.397767", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Yerington", + "scheduled_service": "no" + }, + { + "id": "335946", + "ident": "US-1538", + "type": "small_airport", + "name": "Quinns Mesa Airstrip", + "latitude_deg": "39.129844", + "longitude_deg": "-119.367453", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Yerington", + "scheduled_service": "no" + }, + { + "id": "335947", + "ident": "US-1539", + "type": "small_airport", + "name": "Scofield Airstrip", + "latitude_deg": "39.815871", + "longitude_deg": "-111.16426", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Scofield", + "scheduled_service": "no" + }, + { + "id": "335948", + "ident": "US-1540", + "type": "small_airport", + "name": "Indian Ranch Airport", + "latitude_deg": "39.271683", + "longitude_deg": "-122.483203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stonyford", + "scheduled_service": "no" + }, + { + "id": "335949", + "ident": "US-1541", + "type": "small_airport", + "name": "Scotts Mills Airstrip", + "latitude_deg": "44.90026", + "longitude_deg": "-122.511817", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Scotts Mills", + "scheduled_service": "no" + }, + { + "id": "335950", + "ident": "US-1542", + "type": "small_airport", + "name": "Illahee Ranch Airport", + "latitude_deg": "43.291779", + "longitude_deg": "-122.591532", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Idleyld Park", + "scheduled_service": "no" + }, + { + "id": "335951", + "ident": "US-1543", + "type": "closed", + "name": "Meers Point Airstrip", + "latitude_deg": "32.996067", + "longitude_deg": "-114.483547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yuma", + "scheduled_service": "no" + }, + { + "id": "335952", + "ident": "US-1544", + "type": "closed", + "name": "Wilson's Private Airport", + "latitude_deg": "41.275589", + "longitude_deg": "-82.104628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lagrange", + "scheduled_service": "no" + }, + { + "id": "335953", + "ident": "US-1545", + "type": "closed", + "name": "Chinquapin Landing Strip", + "latitude_deg": "28.755846", + "longitude_deg": "-95.770837", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wadsworth", + "scheduled_service": "no" + }, + { + "id": "335954", + "ident": "US-1546", + "type": "closed", + "name": "Peterson Chico Airport", + "latitude_deg": "39.703357", + "longitude_deg": "-121.783383", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chico", + "scheduled_service": "no", + "local_code": "5Q3" + }, + { + "id": "335955", + "ident": "US-1547", + "type": "closed", + "name": "Northern California Airways Landing Field / Patrick Field", + "latitude_deg": "39.704793", + "longitude_deg": "-121.81102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chico", + "scheduled_service": "no" + }, + { + "id": "335956", + "ident": "US-1548", + "type": "closed", + "name": "Calcasieu Coast Guard Station Airstrip", + "latitude_deg": "29.785796", + "longitude_deg": "-93.349328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cameron", + "scheduled_service": "no" + }, + { + "id": "335957", + "ident": "US-1549", + "type": "closed", + "name": "Longville Landing Strip", + "latitude_deg": "30.598579", + "longitude_deg": "-93.224359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Longville", + "scheduled_service": "no" + }, + { + "id": "335958", + "ident": "US-1550", + "type": "closed", + "name": "Piney Woods Airport", + "latitude_deg": "30.857916", + "longitude_deg": "-93.972845", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jasper", + "scheduled_service": "no", + "local_code": "41R" + }, + { + "id": "335959", + "ident": "US-1551", + "type": "closed", + "name": "Ringling Municipal Airport", + "latitude_deg": "34.16631", + "longitude_deg": "-97.632043", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ringling", + "scheduled_service": "no" + }, + { + "id": "335960", + "ident": "US-1552", + "type": "closed", + "name": "Terrylain Farm Landing Strip", + "latitude_deg": "34.62745", + "longitude_deg": "-95.32099", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Clayton", + "scheduled_service": "no" + }, + { + "id": "335961", + "ident": "US-1553", + "type": "closed", + "name": "Cow Pasture Airport", + "latitude_deg": "30.627813", + "longitude_deg": "-94.39378", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Warren", + "scheduled_service": "no" + }, + { + "id": "335966", + "ident": "US-1554", + "type": "small_airport", + "name": "Reeves Airstrip", + "latitude_deg": "33.092692", + "longitude_deg": "-115.545101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Calipatria", + "scheduled_service": "no" + }, + { + "id": "335967", + "ident": "US-1555", + "type": "small_airport", + "name": "Quick Silver Ranch Airport", + "latitude_deg": "36.24699", + "longitude_deg": "-118.819585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Springville", + "scheduled_service": "no" + }, + { + "id": "335968", + "ident": "US-1556", + "type": "closed", + "name": "Flying L Skytel Airport", + "latitude_deg": "44.466024", + "longitude_deg": "-109.473953", + "elevation_ft": "5717", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Cody", + "scheduled_service": "no" + }, + { + "id": "335969", + "ident": "US-1557", + "type": "closed", + "name": "Spieden Island Airstrip", + "latitude_deg": "48.643153", + "longitude_deg": "-123.144389", + "elevation_ft": "177", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Friday Harbor", + "scheduled_service": "no" + }, + { + "id": "335975", + "ident": "US-1558", + "type": "closed", + "name": "Otto Intermediate Field", + "latitude_deg": "35.07178", + "longitude_deg": "-106.00354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Stanley", + "scheduled_service": "no" + }, + { + "id": "335976", + "ident": "US-1559", + "type": "closed", + "name": "Green Horse Private Airstrip", + "latitude_deg": "35.120067", + "longitude_deg": "-106.03725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Stanley", + "scheduled_service": "no" + }, + { + "id": "335977", + "ident": "US-1560", + "type": "closed", + "name": "Price Ranch Airstrip", + "latitude_deg": "34.173465", + "longitude_deg": "-103.774828", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Floyd", + "scheduled_service": "no" + }, + { + "id": "335978", + "ident": "US-1561", + "type": "closed", + "name": "Melrose Air Force Range Airstrip", + "latitude_deg": "34.31831", + "longitude_deg": "-103.834405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Floyd", + "scheduled_service": "no" + }, + { + "id": "335979", + "ident": "US-1562", + "type": "closed", + "name": "Gates Park Airstrip", + "latitude_deg": "47.792861", + "longitude_deg": "-112.944002", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Augusta", + "scheduled_service": "no" + }, + { + "id": "335984", + "ident": "US-1563", + "type": "closed", + "name": "Tyndall AFB Silver Flag Runway", + "latitude_deg": "30.019983", + "longitude_deg": "-85.49861", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City", + "scheduled_service": "no" + }, + { + "id": "335985", + "ident": "US-1564", + "type": "closed", + "name": "Tyndall AFB Drone Runway", + "latitude_deg": "30.038505", + "longitude_deg": "-85.525753", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City", + "scheduled_service": "no" + }, + { + "id": "335986", + "ident": "US-1565", + "type": "closed", + "name": "Stadler Ranch Airport", + "latitude_deg": "29.17326", + "longitude_deg": "-100.61755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no" + }, + { + "id": "335987", + "ident": "US-1566", + "type": "small_airport", + "name": "Stand Fast Airport", + "latitude_deg": "29.807098", + "longitude_deg": "-101.787343", + "elevation_ft": "1340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Langtry", + "scheduled_service": "no", + "gps_code": "2TE8", + "local_code": "2TE8", + "home_link": "https://www.airnav.com/airport/2TE8" + }, + { + "id": "335992", + "ident": "US-1567", + "type": "small_airport", + "name": "Eden Valley Ranch / Albert Seeno Jr Airstrip", + "latitude_deg": "39.627639", + "longitude_deg": "-123.185449", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Willits", + "scheduled_service": "no" + }, + { + "id": "335994", + "ident": "US-1568", + "type": "closed", + "name": "Taylorcraft Airport", + "latitude_deg": "40.947326", + "longitude_deg": "-81.090705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Alliance", + "scheduled_service": "no" + }, + { + "id": "335995", + "ident": "US-1569", + "type": "closed", + "name": "Philmont Scout Ranch Landing Strip", + "latitude_deg": "36.4882", + "longitude_deg": "-104.94809", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Cimarron", + "scheduled_service": "no" + }, + { + "id": "335997", + "ident": "US-1570", + "type": "closed", + "name": "Inscription House Airport", + "latitude_deg": "36.943753", + "longitude_deg": "-110.798986", + "elevation_ft": "6037", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonalea", + "scheduled_service": "no", + "keywords": "Ts'ah bii Kin" + }, + { + "id": "335998", + "ident": "US-1571", + "type": "closed", + "name": "Kaibito Airport", + "latitude_deg": "36.57797", + "longitude_deg": "-111.08854", + "elevation_ft": "6041", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Kaibito", + "scheduled_service": "no", + "keywords": "Kʼaiʼbiiʼtó" + }, + { + "id": "335999", + "ident": "US-1572", + "type": "closed", + "name": "Inscription House Trading Post Landing Strip", + "latitude_deg": "36.658298", + "longitude_deg": "-110.757465", + "elevation_ft": "6777", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Shonto", + "scheduled_service": "no" + }, + { + "id": "336000", + "ident": "US-1573", + "type": "closed", + "name": "Toyei School Airport", + "latitude_deg": "35.71154", + "longitude_deg": "-109.93745", + "elevation_ft": "6545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Ganado", + "scheduled_service": "no" + }, + { + "id": "336001", + "ident": "US-1574", + "type": "closed", + "name": "Nazlini Airport", + "latitude_deg": "35.93141", + "longitude_deg": "-109.48389", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Nazlini", + "scheduled_service": "no" + }, + { + "id": "336002", + "ident": "US-1575", + "type": "closed", + "name": "Burnham Trading Post Landing Strip", + "latitude_deg": "36.360844", + "longitude_deg": "-108.498895", + "elevation_ft": "5443", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Newcomb", + "scheduled_service": "no" + }, + { + "id": "336003", + "ident": "US-1576", + "type": "closed", + "name": "Chaco Canyon Airfield", + "latitude_deg": "36.097851", + "longitude_deg": "-107.955716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Nageezi", + "scheduled_service": "no" + }, + { + "id": "336004", + "ident": "US-1577", + "type": "closed", + "name": "Pueblo Pintado Airport", + "latitude_deg": "35.968134", + "longitude_deg": "-107.647498", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Cuba", + "scheduled_service": "no" + }, + { + "id": "336005", + "ident": "US-1578", + "type": "closed", + "name": "Tanner Landing Strip", + "latitude_deg": "35.958608", + "longitude_deg": "-107.582513", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Cuba", + "scheduled_service": "no" + }, + { + "id": "336006", + "ident": "US-1579", + "type": "closed", + "name": "Chaco Trade Center Landing Strip", + "latitude_deg": "35.917555", + "longitude_deg": "-107.570561", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Cuba", + "scheduled_service": "no" + }, + { + "id": "336007", + "ident": "US-1580", + "type": "closed", + "name": "Star Lake Pumping Station Landing Strip", + "latitude_deg": "35.924106", + "longitude_deg": "-107.47368", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Cuba", + "scheduled_service": "no" + }, + { + "id": "336008", + "ident": "US-1581", + "type": "closed", + "name": "Star Lake Trading Point Landing Strip", + "latitude_deg": "35.896864", + "longitude_deg": "-107.469689", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Cuba", + "scheduled_service": "no" + }, + { + "id": "336009", + "ident": "US-1582", + "type": "closed", + "name": "Tinian Airstrip", + "latitude_deg": "35.838308", + "longitude_deg": "-107.333572", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Cuba", + "scheduled_service": "no" + }, + { + "id": "336010", + "ident": "US-1583", + "type": "closed", + "name": "Torreon Trading Post Landing Strip", + "latitude_deg": "35.781475", + "longitude_deg": "-107.260584", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Cuba", + "scheduled_service": "no" + }, + { + "id": "336011", + "ident": "US-1584", + "type": "closed", + "name": "Torreon Airport", + "latitude_deg": "35.788698", + "longitude_deg": "-107.242216", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Cuba", + "scheduled_service": "no" + }, + { + "id": "336012", + "ident": "US-1585", + "type": "closed", + "name": "Johnson Trading Post Landing Strip", + "latitude_deg": "35.891622", + "longitude_deg": "-107.153842", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Cuba", + "scheduled_service": "no" + }, + { + "id": "336013", + "ident": "US-1586", + "type": "small_airport", + "name": "Cuba Airport", + "latitude_deg": "35.951712", + "longitude_deg": "-106.957841", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Cuba", + "scheduled_service": "no", + "local_code": "NM2" + }, + { + "id": "336022", + "ident": "US-1587", + "type": "closed", + "name": "Kona Village Resort Airport", + "latitude_deg": "19.83247", + "longitude_deg": "-155.981666", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kailua-Kona", + "scheduled_service": "no" + }, + { + "id": "336023", + "ident": "US-1588", + "type": "closed", + "name": "Old Waimea-Kamuela Airport / Bordelon Field", + "latitude_deg": "20.00479", + "longitude_deg": "-155.682702", + "elevation_ft": "2585", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Waimea (Kamuela)", + "scheduled_service": "no", + "home_link": "https://web.archive.org/web/20161224140802/http://aviation.hawaii.gov/airfields-airports/hawaii/kamuela-airport-bordelon-field/" + }, + { + "id": "336024", + "ident": "US-1589", + "type": "closed", + "name": "Waipunalei Airstrip", + "latitude_deg": "19.982666", + "longitude_deg": "-155.269518", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Laupahoehoe", + "scheduled_service": "no" + }, + { + "id": "336025", + "ident": "US-1590", + "type": "closed", + "name": "Pahoa Airstrip", + "latitude_deg": "19.51612", + "longitude_deg": "-154.96268", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Pahoa", + "scheduled_service": "no" + }, + { + "id": "336026", + "ident": "US-1591", + "type": "closed", + "name": "Naalehu Airstrip", + "latitude_deg": "19.07604", + "longitude_deg": "-155.574528", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Naalehu", + "scheduled_service": "no" + }, + { + "id": "336027", + "ident": "US-1592", + "type": "closed", + "name": "Kahuku Airstrip", + "latitude_deg": "19.067102", + "longitude_deg": "-155.682621", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Naalehu", + "scheduled_service": "no" + }, + { + "id": "336038", + "ident": "US-1593", + "type": "closed", + "name": "Hilo Bay Seaplane Anchorage", + "latitude_deg": "19.741667", + "longitude_deg": "-155.066666", + "elevation_ft": "0", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Hilo", + "scheduled_service": "no", + "home_link": "https://web.archive.org/web/20161230202341/http://aviation.hawaii.gov/airfields-airports/seaplane-anchorages/hilo/" + }, + { + "id": "336043", + "ident": "US-1594", + "type": "heliport", + "name": "Salt Lick Heliport", + "latitude_deg": "30.132764", + "longitude_deg": "-98.011984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Driftwood", + "scheduled_service": "no" + }, + { + "id": "336044", + "ident": "US-1595", + "type": "heliport", + "name": "Fox Plaza Helipad", + "latitude_deg": "34.055188", + "longitude_deg": "-118.413278", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336045", + "ident": "US-1596", + "type": "heliport", + "name": "The Century Helipad", + "latitude_deg": "34.056268", + "longitude_deg": "-118.414593", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336046", + "ident": "US-1597", + "type": "heliport", + "name": "Constellation Place Helipad", + "latitude_deg": "34.057077", + "longitude_deg": "-118.417463", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336047", + "ident": "US-1598", + "type": "heliport", + "name": "2000 Avenue of the Stars Helipad", + "latitude_deg": "34.058233", + "longitude_deg": "-118.414684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336048", + "ident": "US-1599", + "type": "heliport", + "name": "Duchman Family Winery Helipad", + "latitude_deg": "30.10174", + "longitude_deg": "-98.01274", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Driftwood", + "scheduled_service": "no" + }, + { + "id": "336049", + "ident": "US-1600", + "type": "heliport", + "name": "Heli-Partners I-Drive Heliport", + "latitude_deg": "28.384406", + "longitude_deg": "-81.48515", + "elevation_ft": "112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "local_code": "FL76", + "keywords": "International Heli-Tours North" + }, + { + "id": "336050", + "ident": "US-1601", + "type": "closed", + "name": "Conner Field", + "latitude_deg": "33.6601", + "longitude_deg": "-114.23361", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Quartzsite", + "scheduled_service": "no" + }, + { + "id": "336051", + "ident": "US-1602", + "type": "closed", + "name": "Hawks Retreat Airstrip", + "latitude_deg": "33.776963", + "longitude_deg": "-113.806815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Salome", + "scheduled_service": "no" + }, + { + "id": "336052", + "ident": "US-1603", + "type": "closed", + "name": "Vicksburg Airstrip", + "latitude_deg": "33.73968", + "longitude_deg": "-113.75283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Salome", + "scheduled_service": "no" + }, + { + "id": "336053", + "ident": "US-1604", + "type": "closed", + "name": "Eagletail Pump Station Airport", + "latitude_deg": "33.53907", + "longitude_deg": "-113.464565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Salome", + "scheduled_service": "no" + }, + { + "id": "336054", + "ident": "US-1605", + "type": "closed", + "name": "Wintersburg Landing Strip", + "latitude_deg": "33.46796", + "longitude_deg": "-112.87057", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "336055", + "ident": "US-1606", + "type": "small_airport", + "name": "Arlington Landing Field", + "latitude_deg": "33.324683", + "longitude_deg": "-112.756441", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Arlington", + "scheduled_service": "no" + }, + { + "id": "336056", + "ident": "US-1607", + "type": "heliport", + "name": "Tovrea Castle Helipad", + "latitude_deg": "33.44759", + "longitude_deg": "-111.97194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "336057", + "ident": "US-1608", + "type": "closed", + "name": "Winters Wells Landing Strip", + "latitude_deg": "33.45224", + "longitude_deg": "-112.92531", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "336058", + "ident": "US-1609", + "type": "closed", + "name": "Orangewood Landing Strip", + "latitude_deg": "33.548226", + "longitude_deg": "-112.898555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "336059", + "ident": "US-1610", + "type": "closed", + "name": "Belmont Landing Strip", + "latitude_deg": "33.540751", + "longitude_deg": "-112.891066", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "336060", + "ident": "US-1611", + "type": "closed", + "name": "Brooks Farms Airport", + "latitude_deg": "33.522587", + "longitude_deg": "-113.157699", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "336061", + "ident": "US-1612", + "type": "closed", + "name": "Harquahala Valley Landing Field", + "latitude_deg": "33.416577", + "longitude_deg": "-113.166314", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "336062", + "ident": "US-1613", + "type": "small_airport", + "name": "Volcanic Well Landing Strip", + "latitude_deg": "33.35977", + "longitude_deg": "-113.12024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "336063", + "ident": "US-1614", + "type": "closed", + "name": "Big Horn Well Landing Strip", + "latitude_deg": "33.4938", + "longitude_deg": "-113.11859", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "336064", + "ident": "US-1615", + "type": "closed", + "name": "WT Ranch Airport", + "latitude_deg": "33.45717", + "longitude_deg": "-113.2484", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "336065", + "ident": "US-1616", + "type": "heliport", + "name": "Ascension Seton Northwest Helipad", + "latitude_deg": "30.404402", + "longitude_deg": "-97.74365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no" + }, + { + "id": "336066", + "ident": "US-1617", + "type": "heliport", + "name": "Kaiser Permanente Pasadena Heliport", + "latitude_deg": "34.150858", + "longitude_deg": "-118.141855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pasadena", + "scheduled_service": "no" + }, + { + "id": "336073", + "ident": "US-1618", + "type": "closed", + "name": "El Paso Natural Gas Turbine Station Landing Strip", + "latitude_deg": "34.531", + "longitude_deg": "-106.68636", + "elevation_ft": "5026", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Belen", + "scheduled_service": "no" + }, + { + "id": "336074", + "ident": "US-1619", + "type": "small_airport", + "name": "Ladder Ranch Landing Strip", + "latitude_deg": "33.002761", + "longitude_deg": "-107.485535", + "elevation_ft": "5174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Hillsboro", + "scheduled_service": "no" + }, + { + "id": "336077", + "ident": "US-1620", + "type": "closed", + "name": "Liberty Airport", + "latitude_deg": "41.80044", + "longitude_deg": "-74.70124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Liberty", + "scheduled_service": "no" + }, + { + "id": "336078", + "ident": "US-1621", + "type": "closed", + "name": "Livingston Manor Airport", + "latitude_deg": "41.89281", + "longitude_deg": "-74.81864", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Livingston Manor", + "scheduled_service": "no" + }, + { + "id": "336079", + "ident": "US-1622", + "type": "closed", + "name": "Antelope Wells Airport", + "latitude_deg": "31.33806", + "longitude_deg": "-108.534121", + "elevation_ft": "4670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Hachita", + "scheduled_service": "no" + }, + { + "id": "336086", + "ident": "US-1623", + "type": "closed", + "name": "Frenchman Field", + "latitude_deg": "41.53703", + "longitude_deg": "-74.91031", + "elevation_ft": "1286", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Eldred", + "scheduled_service": "no" + }, + { + "id": "336087", + "ident": "US-1624", + "type": "small_airport", + "name": "Brookton Landing Field", + "latitude_deg": "45.529306", + "longitude_deg": "-67.760174", + "elevation_ft": "472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Brookton", + "scheduled_service": "no" + }, + { + "id": "336089", + "ident": "US-1625", + "type": "small_airport", + "name": "Schoonover Airstrip", + "latitude_deg": "35.9658", + "longitude_deg": "-121.19755", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "King City", + "scheduled_service": "no" + }, + { + "id": "336090", + "ident": "US-1626", + "type": "closed", + "name": "Alamo Airstrip", + "latitude_deg": "35.96714", + "longitude_deg": "-121.18394", + "elevation_ft": "961", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "King City", + "scheduled_service": "no" + }, + { + "id": "336091", + "ident": "US-1627", + "type": "closed", + "name": "Hunter Liggett Army Airfield", + "latitude_deg": "35.994883", + "longitude_deg": "-121.230998", + "elevation_ft": "1037", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Jolon", + "scheduled_service": "no" + }, + { + "id": "336092", + "ident": "US-1628", + "type": "small_airport", + "name": "Halter Ranch Airport", + "latitude_deg": "35.64427", + "longitude_deg": "-120.85055", + "elevation_ft": "1488", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Paso Robles", + "scheduled_service": "no", + "gps_code": "89CA", + "local_code": "89CA", + "home_link": "https://www.halterranch.com/", + "keywords": "Q89, MacGillivray Ranch" + }, + { + "id": "336093", + "ident": "US-1629", + "type": "small_airport", + "name": "Glamis Landing Strip", + "latitude_deg": "32.992719", + "longitude_deg": "-114.972482", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glamis", + "scheduled_service": "no" + }, + { + "id": "336094", + "ident": "US-1630", + "type": "closed", + "name": "Antelope Valley Intermediate Field", + "latitude_deg": "34.78913", + "longitude_deg": "-118.65635", + "elevation_ft": "3017", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Quartz Hill", + "scheduled_service": "no" + }, + { + "id": "336099", + "ident": "US-1631", + "type": "heliport", + "name": "Dry Tortugas (South Coaling Dock) Helipad", + "latitude_deg": "24.626352", + "longitude_deg": "-82.873277", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Key West", + "scheduled_service": "no" + }, + { + "id": "336100", + "ident": "US-1632", + "type": "heliport", + "name": "Naval Air Station Key West Trumbo Point Heliport", + "latitude_deg": "24.565313", + "longitude_deg": "-81.79323", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Key West", + "scheduled_service": "no" + }, + { + "id": "336101", + "ident": "US-1633", + "type": "closed", + "name": "Ed Barry's Airstrip", + "latitude_deg": "24.6961", + "longitude_deg": "-81.3496", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Big Pine Key", + "scheduled_service": "no" + }, + { + "id": "336102", + "ident": "US-1634", + "type": "closed", + "name": "Matecumbe Key Airport", + "latitude_deg": "24.85973", + "longitude_deg": "-80.72728", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Islamorada", + "scheduled_service": "no" + }, + { + "id": "336117", + "ident": "US-1635", + "type": "closed", + "name": "Aransas Pass Municipal Airport", + "latitude_deg": "27.884937", + "longitude_deg": "-97.149665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Aransas Pass", + "scheduled_service": "no", + "local_code": "O3R" + }, + { + "id": "336130", + "ident": "US-1636", + "type": "heliport", + "name": "Westin Los Angeles Airport Helipad", + "latitude_deg": "33.944962", + "longitude_deg": "-118.373635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336131", + "ident": "US-1637", + "type": "heliport", + "name": "Renaissance Los Angeles Airport Helipad", + "latitude_deg": "33.94894", + "longitude_deg": "-118.385367", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336134", + "ident": "US-1638", + "type": "closed", + "name": "M and M Winnie Airport", + "latitude_deg": "29.84781", + "longitude_deg": "-94.376464", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Winnie", + "scheduled_service": "no" + }, + { + "id": "336135", + "ident": "US-1639", + "type": "small_airport", + "name": "Olancha Old State Highway Landout", + "latitude_deg": "36.263498", + "longitude_deg": "-118.005867", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Olancha", + "scheduled_service": "no" + }, + { + "id": "336136", + "ident": "US-1640", + "type": "small_airport", + "name": "Tunnel Meadows Airstrip", + "latitude_deg": "36.379539", + "longitude_deg": "-118.267387", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Three Rivers", + "scheduled_service": "no" + }, + { + "id": "336137", + "ident": "US-1641", + "type": "small_airport", + "name": "Owens Dry Lake Airstrip", + "latitude_deg": "36.52254", + "longitude_deg": "-118.034529", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lone Pine", + "scheduled_service": "no" + }, + { + "id": "336138", + "ident": "US-1642", + "type": "small_airport", + "name": "Boulder Airstrip", + "latitude_deg": "37.884778", + "longitude_deg": "-111.463444", + "elevation_ft": "6787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Boulder", + "scheduled_service": "no" + }, + { + "id": "336139", + "ident": "US-1643", + "type": "small_airport", + "name": "O'Connor TJ Field", + "latitude_deg": "28.287301", + "longitude_deg": "-97.257929", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Refugio", + "scheduled_service": "no" + }, + { + "id": "336144", + "ident": "US-1644", + "type": "small_airport", + "name": "Ox Ranch Airport", + "latitude_deg": "29.46192", + "longitude_deg": "-100.11429", + "elevation_ft": "1305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Uvalde", + "scheduled_service": "no", + "local_code": "10X", + "home_link": "https://oxranchairport.com/", + "keywords": "01TX" + }, + { + "id": "336145", + "ident": "US-1645", + "type": "small_airport", + "name": "Los Cerritos Airport", + "latitude_deg": "29.48623", + "longitude_deg": "-100.015583", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Uvalde", + "scheduled_service": "no", + "local_code": "62TX" + }, + { + "id": "336146", + "ident": "US-1646", + "type": "small_airport", + "name": "Havasu Palms Airstrip", + "latitude_deg": "34.394764", + "longitude_deg": "-114.280815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Needles", + "scheduled_service": "no" + }, + { + "id": "336147", + "ident": "US-1647", + "type": "closed", + "name": "Chemehuevi Landing Field", + "latitude_deg": "34.5198", + "longitude_deg": "-114.4008", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Havasu Lake", + "scheduled_service": "no" + }, + { + "id": "336148", + "ident": "US-1648", + "type": "small_airport", + "name": "Sagebrush Trails Estates Airport", + "latitude_deg": "34.582698", + "longitude_deg": "-114.027786", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Lake Havasu City", + "scheduled_service": "no", + "local_code": "9AZ2" + }, + { + "id": "336149", + "ident": "US-1649", + "type": "closed", + "name": "Planet Ranch Landing Strip", + "latitude_deg": "34.249424", + "longitude_deg": "-113.949817", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Parker", + "scheduled_service": "no" + }, + { + "id": "336150", + "ident": "US-1650", + "type": "closed", + "name": "McConnico Landing Strip", + "latitude_deg": "35.1337", + "longitude_deg": "-114.1121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Kingman", + "scheduled_service": "no" + }, + { + "id": "336152", + "ident": "US-1651", + "type": "closed", + "name": "Fivemile Landing Strip", + "latitude_deg": "34.793233", + "longitude_deg": "-114.501722", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mohave Valley", + "scheduled_service": "no" + }, + { + "id": "336153", + "ident": "US-1652", + "type": "closed", + "name": "Riverview Airport", + "latitude_deg": "34.819334", + "longitude_deg": "-114.603024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Needles", + "scheduled_service": "no" + }, + { + "id": "336154", + "ident": "US-1653", + "type": "closed", + "name": "Walters Ranch Landing Field", + "latitude_deg": "34.911731", + "longitude_deg": "-114.647527", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Needles", + "scheduled_service": "no" + }, + { + "id": "336155", + "ident": "US-1654", + "type": "small_airport", + "name": "Quality Aviation Airport", + "latitude_deg": "32.4226", + "longitude_deg": "-111.2404", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Marana", + "scheduled_service": "no" + }, + { + "id": "336156", + "ident": "US-1655", + "type": "closed", + "name": "Johnstone Mine Landing Strip", + "latitude_deg": "32.361059", + "longitude_deg": "-111.462951", + "elevation_ft": "2524", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Marana", + "scheduled_service": "no" + }, + { + "id": "336157", + "ident": "US-1656", + "type": "small_airport", + "name": "Gasline Strip", + "latitude_deg": "32.37509", + "longitude_deg": "-111.36956", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Marana", + "scheduled_service": "no" + }, + { + "id": "336159", + "ident": "US-1657", + "type": "closed", + "name": "Haleiwa Airfield", + "latitude_deg": "21.603853", + "longitude_deg": "-158.103819", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Haleiwa", + "scheduled_service": "no" + }, + { + "id": "336160", + "ident": "US-1658", + "type": "closed", + "name": "Former Cuero Airport / Brayton Flying Field", + "latitude_deg": "29.13536", + "longitude_deg": "-97.30265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cuero", + "scheduled_service": "no" + }, + { + "id": "336161", + "ident": "US-1659", + "type": "small_airport", + "name": "5D Ranch Airport", + "latitude_deg": "28.9175", + "longitude_deg": "-97.5759", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Nordheim", + "scheduled_service": "no" + }, + { + "id": "336195", + "ident": "US-1660", + "type": "small_airport", + "name": "AJC Airport", + "latitude_deg": "40.370482", + "longitude_deg": "-104.635141", + "elevation_ft": "4629", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Greeley", + "scheduled_service": "no", + "gps_code": "CO66", + "local_code": "CO66" + }, + { + "id": "336201", + "ident": "US-1661", + "type": "small_airport", + "name": "Heath Green Skyranch Airport", + "latitude_deg": "31.844722", + "longitude_deg": "-81.6875", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Hinesville", + "scheduled_service": "no", + "gps_code": "GA19", + "local_code": "GA19" + }, + { + "id": "336202", + "ident": "US-1662", + "type": "small_airport", + "name": "Daneco Landing Strip", + "latitude_deg": "29.588889", + "longitude_deg": "-90.826111", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Houma", + "scheduled_service": "no", + "gps_code": "LS59", + "local_code": "LS59" + }, + { + "id": "336203", + "ident": "US-1663", + "type": "closed", + "name": "Meeks Ranch Landing Strip", + "latitude_deg": "32.54644", + "longitude_deg": "-111.35784", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Red Rock", + "scheduled_service": "no" + }, + { + "id": "336204", + "ident": "US-1664", + "type": "closed", + "name": "Eloy Farms South Airstrip", + "latitude_deg": "32.59789", + "longitude_deg": "-111.45172", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Eloy", + "scheduled_service": "no" + }, + { + "id": "336205", + "ident": "US-1665", + "type": "closed", + "name": "North Star Mine Landing Strip", + "latitude_deg": "32.82114", + "longitude_deg": "-111.33128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Florence", + "scheduled_service": "no" + }, + { + "id": "336206", + "ident": "US-1666", + "type": "closed", + "name": "Camp Verde Airport", + "latitude_deg": "34.5432", + "longitude_deg": "-111.83464", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Camp Verde", + "scheduled_service": "no" + }, + { + "id": "336207", + "ident": "US-1667", + "type": "closed", + "name": "Wingfield Mesa Landing Strip", + "latitude_deg": "34.49031", + "longitude_deg": "-111.81088", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Camp Verde", + "scheduled_service": "no" + }, + { + "id": "336208", + "ident": "US-1668", + "type": "closed", + "name": "Riley Airport", + "latitude_deg": "34.84816", + "longitude_deg": "-117.13266", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Barstow", + "scheduled_service": "no" + }, + { + "id": "336209", + "ident": "US-1669", + "type": "closed", + "name": "Chalone Vineyard Airport", + "latitude_deg": "36.46537", + "longitude_deg": "-121.23436", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Paicines", + "scheduled_service": "no" + }, + { + "id": "336210", + "ident": "US-1670", + "type": "heliport", + "name": "Memorial Hermann Greater Heights Hospital Heliport", + "latitude_deg": "29.812", + "longitude_deg": "-95.431544", + "elevation_ft": "64", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "XA84", + "local_code": "XA84" + }, + { + "id": "336211", + "ident": "US-1671", + "type": "closed", + "name": "Torrey Airstrip", + "latitude_deg": "38.3213", + "longitude_deg": "-111.42363", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Torrey", + "scheduled_service": "no" + }, + { + "id": "336212", + "ident": "US-1672", + "type": "heliport", + "name": "Kane County Hospital Heliport", + "latitude_deg": "37.05426", + "longitude_deg": "-112.53024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Kanab", + "scheduled_service": "no", + "local_code": "UT02" + }, + { + "id": "336213", + "ident": "US-1673", + "type": "heliport", + "name": "Sanpete Valley Hospital Heliport", + "latitude_deg": "39.53115", + "longitude_deg": "-111.46056", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Mount Pleasant", + "scheduled_service": "no", + "local_code": "UT37" + }, + { + "id": "336214", + "ident": "US-1674", + "type": "small_airport", + "name": "Willow Springs Ranch Airport", + "latitude_deg": "32.707957", + "longitude_deg": "-110.871159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Oracle", + "scheduled_service": "no" + }, + { + "id": "336215", + "ident": "US-1675", + "type": "closed", + "name": "Zzyzx Airstrip", + "latitude_deg": "35.143373", + "longitude_deg": "-116.107035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Zzyzx", + "scheduled_service": "no" + }, + { + "id": "336216", + "ident": "US-1676", + "type": "closed", + "name": "Halloran Springs Landing Strip", + "latitude_deg": "35.369311", + "longitude_deg": "-115.8947", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Halloran Springs", + "scheduled_service": "no" + }, + { + "id": "336219", + "ident": "US-1677", + "type": "small_airport", + "name": "Bella Vista Ranch Airport", + "latitude_deg": "28.08591", + "longitude_deg": "-99.62058", + "elevation_ft": "787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Encinal", + "scheduled_service": "no", + "gps_code": "9TS3", + "local_code": "9TS3" + }, + { + "id": "336220", + "ident": "US-1678", + "type": "closed", + "name": "Buttermilk Slough Landing Strip", + "latitude_deg": "28.68367", + "longitude_deg": "-96.29942", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Palacios", + "scheduled_service": "no" + }, + { + "id": "336221", + "ident": "US-1679", + "type": "closed", + "name": "Sartwelle Ranch Airport", + "latitude_deg": "28.67089", + "longitude_deg": "-96.32386", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Palacios", + "scheduled_service": "no", + "local_code": "XS36" + }, + { + "id": "336222", + "ident": "US-1680", + "type": "closed", + "name": "Camp Hulen Army Airfield", + "latitude_deg": "28.71072", + "longitude_deg": "-96.25061", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Palacios", + "scheduled_service": "no" + }, + { + "id": "336223", + "ident": "US-1681", + "type": "closed", + "name": "Blessing Landing Strip", + "latitude_deg": "28.85711", + "longitude_deg": "-96.2225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Blessing", + "scheduled_service": "no" + }, + { + "id": "336224", + "ident": "US-1682", + "type": "closed", + "name": "Black River Pumping Station Landing Strip", + "latitude_deg": "33.45086", + "longitude_deg": "-109.760499", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Whiteriver", + "scheduled_service": "no" + }, + { + "id": "336225", + "ident": "US-1683", + "type": "heliport", + "name": "KP Cienega Helispot", + "latitude_deg": "33.57934", + "longitude_deg": "-109.3581", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Morenci", + "scheduled_service": "no" + }, + { + "id": "336226", + "ident": "US-1684", + "type": "heliport", + "name": "Cache Cienega Helispot", + "latitude_deg": "33.59908", + "longitude_deg": "-109.35093", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Alpine", + "scheduled_service": "no" + }, + { + "id": "336227", + "ident": "US-1685", + "type": "heliport", + "name": "Butterfly Cienega Helispot", + "latitude_deg": "33.61652", + "longitude_deg": "-109.33438", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Alpine", + "scheduled_service": "no" + }, + { + "id": "336228", + "ident": "US-1686", + "type": "heliport", + "name": "Willow Spring Helispot", + "latitude_deg": "33.61624", + "longitude_deg": "-109.31203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Alpine", + "scheduled_service": "no" + }, + { + "id": "336229", + "ident": "US-1687", + "type": "heliport", + "name": "South Fork Grant Creek Helispot", + "latitude_deg": "33.60626", + "longitude_deg": "-109.30471", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Alpine", + "scheduled_service": "no" + }, + { + "id": "336230", + "ident": "US-1688", + "type": "closed", + "name": "14400 Ranch Airport", + "latitude_deg": "31.75556", + "longitude_deg": "-100.46424", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bronte", + "scheduled_service": "no" + }, + { + "id": "336231", + "ident": "US-1689", + "type": "heliport", + "name": "Memorial Hermann Southeast Hospital Heliport", + "latitude_deg": "29.581957", + "longitude_deg": "-95.208378", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "XA83", + "local_code": "XA83" + }, + { + "id": "336232", + "ident": "US-1690", + "type": "closed", + "name": "Protection Island Landing Strip", + "latitude_deg": "48.127615", + "longitude_deg": "-122.929416", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Sequim", + "scheduled_service": "no" + }, + { + "id": "336235", + "ident": "US-1691", + "type": "small_airport", + "name": "San Ysidro Ranch Airport", + "latitude_deg": "28.311446", + "longitude_deg": "-99.707129", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Catarina", + "scheduled_service": "no", + "local_code": "TS40", + "keywords": "TS40, san ysidro ranch, catarina" + }, + { + "id": "336237", + "ident": "US-1692", + "type": "closed", + "name": "McAllister Landing Strip", + "latitude_deg": "40.13408", + "longitude_deg": "-91.46664", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Warsaw", + "scheduled_service": "no" + }, + { + "id": "336238", + "ident": "US-1693", + "type": "closed", + "name": "Adwell Corporation Airport", + "latitude_deg": "40.15128", + "longitude_deg": "-91.50061", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Warsaw", + "scheduled_service": "no" + }, + { + "id": "336239", + "ident": "US-1694", + "type": "closed", + "name": "H Meeker Airport", + "latitude_deg": "40.21103", + "longitude_deg": "-91.48976", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Warsaw", + "scheduled_service": "no" + }, + { + "id": "336241", + "ident": "US-1695", + "type": "heliport", + "name": "Holzer Medical Center - Jackson Heliport", + "latitude_deg": "39.033015", + "longitude_deg": "-82.640142", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Jackson", + "scheduled_service": "no", + "local_code": "OH00" + }, + { + "id": "336242", + "ident": "US-1696", + "type": "closed", + "name": "Manar Landing Strip", + "latitude_deg": "34.8879", + "longitude_deg": "-98.3406", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Apache", + "scheduled_service": "no" + }, + { + "id": "336243", + "ident": "US-1697", + "type": "heliport", + "name": "Baptist Oakleaf Emergency Heliport", + "latitude_deg": "30.197329", + "longitude_deg": "-81.834444", + "elevation_ft": "81", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "local_code": "42FA" + }, + { + "id": "336244", + "ident": "US-1698", + "type": "heliport", + "name": "McCall Storage Heliport", + "latitude_deg": "30.157099", + "longitude_deg": "-81.533849", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "local_code": "6FA7" + }, + { + "id": "336246", + "ident": "US-1699", + "type": "closed", + "name": "Saint George Landing Strip", + "latitude_deg": "41.181012", + "longitude_deg": "-87.777758", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Saint George", + "scheduled_service": "no" + }, + { + "id": "336247", + "ident": "US-1700", + "type": "closed", + "name": "Viall Homestead Landing Strip", + "latitude_deg": "41.29526", + "longitude_deg": "-87.87154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Manteno", + "scheduled_service": "no" + }, + { + "id": "336248", + "ident": "US-1701", + "type": "small_airport", + "name": "Davis Field", + "latitude_deg": "41.99783", + "longitude_deg": "-84.476468", + "elevation_ft": "1185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Jerome", + "scheduled_service": "no", + "local_code": "79MI" + }, + { + "id": "336250", + "ident": "US-1702", + "type": "small_airport", + "name": "WFK Airport", + "latitude_deg": "35.919208", + "longitude_deg": "-90.729712", + "elevation_ft": "393", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Jonesboro", + "scheduled_service": "no", + "gps_code": "81AR", + "local_code": "81AR" + }, + { + "id": "336252", + "ident": "US-1703", + "type": "small_airport", + "name": "Van Farowe Airfield", + "latitude_deg": "42.86912", + "longitude_deg": "-85.94893", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Hudsonville", + "scheduled_service": "no" + }, + { + "id": "336253", + "ident": "US-1704", + "type": "small_airport", + "name": "Dawson Private Strip", + "latitude_deg": "27.444844", + "longitude_deg": "-97.905942", + "elevation_ft": "74", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kingsville", + "scheduled_service": "no", + "local_code": "40TS" + }, + { + "id": "336254", + "ident": "US-1705", + "type": "heliport", + "name": "East Carroll Parish Hospital Heliport", + "latitude_deg": "32.811471", + "longitude_deg": "-91.172592", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Providence", + "scheduled_service": "no", + "local_code": "LS11" + }, + { + "id": "336255", + "ident": "US-1706", + "type": "small_airport", + "name": "Steward Lane Landout", + "latitude_deg": "37.14539", + "longitude_deg": "-118.26533", + "elevation_ft": "3940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Big Pine", + "scheduled_service": "no" + }, + { + "id": "336256", + "ident": "US-1707", + "type": "small_airport", + "name": "Turner Farms Airport", + "latitude_deg": "39.37175", + "longitude_deg": "-87.171389", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Portage", + "scheduled_service": "no", + "local_code": "3IN3" + }, + { + "id": "336257", + "ident": "US-1708", + "type": "heliport", + "name": "Chetz Pad Heliport", + "latitude_deg": "42.823244", + "longitude_deg": "-83.152336", + "elevation_ft": "954", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Leonard", + "scheduled_service": "no", + "local_code": "3MI5" + }, + { + "id": "336258", + "ident": "US-1709", + "type": "small_airport", + "name": "Cache Creek Airport", + "latitude_deg": "45.981985", + "longitude_deg": "-116.903981", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Joseph", + "scheduled_service": "no", + "gps_code": "OR62", + "local_code": "OR62" + }, + { + "id": "336264", + "ident": "US-1710", + "type": "closed", + "name": "Santa Rosa Landing Field", + "latitude_deg": "34.982428", + "longitude_deg": "-104.752707", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Santa Rosa", + "scheduled_service": "no" + }, + { + "id": "336265", + "ident": "US-1711", + "type": "small_airport", + "name": "Purple Sage Ranch Airport", + "latitude_deg": "29.754989", + "longitude_deg": "-99.033122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bandera", + "scheduled_service": "no" + }, + { + "id": "336266", + "ident": "US-1712", + "type": "heliport", + "name": "Monterey Island Condominium Helipad", + "latitude_deg": "34.157171", + "longitude_deg": "-118.253354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "336267", + "ident": "US-1713", + "type": "small_airport", + "name": "Paulson Ranch Airstrip", + "latitude_deg": "38.22114", + "longitude_deg": "-119.21496", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bridgeport", + "scheduled_service": "no" + }, + { + "id": "336268", + "ident": "US-1714", + "type": "heliport", + "name": "Glendale Gateway Helipad", + "latitude_deg": "34.158161", + "longitude_deg": "-118.255634", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "336269", + "ident": "US-1715", + "type": "heliport", + "name": "800 North Brand Helipad", + "latitude_deg": "34.158076", + "longitude_deg": "-118.25446", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "336270", + "ident": "US-1716", + "type": "small_airport", + "name": "Liberty Haven Airport", + "latitude_deg": "33.87635", + "longitude_deg": "-112.6315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Morristown", + "scheduled_service": "no" + }, + { + "id": "336271", + "ident": "US-1717", + "type": "heliport", + "name": "207 Goode Helipad", + "latitude_deg": "34.157037", + "longitude_deg": "-118.256401", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "336272", + "ident": "US-1718", + "type": "heliport", + "name": "Embassy Suites by Hilton Helipad", + "latitude_deg": "34.157859", + "longitude_deg": "-118.257705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "336273", + "ident": "US-1719", + "type": "heliport", + "name": "Hilton Los Angeles North Helipad", + "latitude_deg": "34.15876", + "longitude_deg": "-118.256375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "336274", + "ident": "US-1720", + "type": "closed", + "name": "Liveoak Creek Landing Strip", + "latitude_deg": "28.832795", + "longitude_deg": "-98.377934", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pleasanton", + "scheduled_service": "no" + }, + { + "id": "336275", + "ident": "US-1721", + "type": "heliport", + "name": "550 North Brand Helipad", + "latitude_deg": "34.154303", + "longitude_deg": "-118.254615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "336276", + "ident": "US-1722", + "type": "heliport", + "name": "Park Towers West Helipad", + "latitude_deg": "34.155608", + "longitude_deg": "-118.260924", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "336277", + "ident": "US-1723", + "type": "heliport", + "name": "Park Towers East Helipad", + "latitude_deg": "34.15563", + "longitude_deg": "-118.260076", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "336278", + "ident": "US-1724", + "type": "heliport", + "name": "500 North Brand Helipad", + "latitude_deg": "34.153202", + "longitude_deg": "-118.254717", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "336279", + "ident": "US-1725", + "type": "heliport", + "name": "505 North Brand Helipad", + "latitude_deg": "34.1533", + "longitude_deg": "-118.255436", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "336280", + "ident": "US-1726", + "type": "closed", + "name": "Kent Landing Field", + "latitude_deg": "31.069385", + "longitude_deg": "-104.226995", + "elevation_ft": "4226", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Davis", + "scheduled_service": "no" + }, + { + "id": "336281", + "ident": "US-1727", + "type": "closed", + "name": "Rancho del Otay Airfield", + "latitude_deg": "32.646607", + "longitude_deg": "-116.942296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chula Vista", + "scheduled_service": "no" + }, + { + "id": "336282", + "ident": "US-1728", + "type": "closed", + "name": "Eagle Field", + "latitude_deg": "31.04582", + "longitude_deg": "-104.845136", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Van Horn", + "scheduled_service": "no" + }, + { + "id": "336283", + "ident": "US-1729", + "type": "heliport", + "name": "Culberson Hospital Helipad", + "latitude_deg": "31.04826", + "longitude_deg": "-104.827595", + "elevation_ft": "4061", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Van Horn", + "scheduled_service": "no", + "local_code": "TE56" + }, + { + "id": "336284", + "ident": "US-1730", + "type": "closed", + "name": "Farmer Ranch Landing Strip", + "latitude_deg": "30.992694", + "longitude_deg": "-104.828517", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Van Horn", + "scheduled_service": "no" + }, + { + "id": "336285", + "ident": "US-1731", + "type": "closed", + "name": "Faskin Ranch Landing Strip", + "latitude_deg": "31.146621", + "longitude_deg": "-105.269923", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sierra Blanca", + "scheduled_service": "no" + }, + { + "id": "336286", + "ident": "US-1732", + "type": "closed", + "name": "Sierra Blanca Landing Strip", + "latitude_deg": "31.166975", + "longitude_deg": "-105.346205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sierra Blanca", + "scheduled_service": "no" + }, + { + "id": "336287", + "ident": "US-1733", + "type": "closed", + "name": "Old Mile High Airport", + "latitude_deg": "31.254781", + "longitude_deg": "-105.322462", + "elevation_ft": "4536", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sierra Blanca", + "scheduled_service": "no" + }, + { + "id": "336288", + "ident": "US-1734", + "type": "heliport", + "name": "Griffith Helipad", + "latitude_deg": "34.123556", + "longitude_deg": "-118.285321", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336289", + "ident": "US-1735", + "type": "closed", + "name": "Fort Hancock Landing Strip", + "latitude_deg": "31.294302", + "longitude_deg": "-105.837049", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Hancock", + "scheduled_service": "no" + }, + { + "id": "336292", + "ident": "US-1736", + "type": "closed", + "name": "Tornillo Landing Strip", + "latitude_deg": "31.440056", + "longitude_deg": "-106.073454", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tornillo", + "scheduled_service": "no" + }, + { + "id": "336293", + "ident": "US-1737", + "type": "closed", + "name": "Tornillo Feed Yards Airport", + "latitude_deg": "31.46066", + "longitude_deg": "-106.0913", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tornillo", + "scheduled_service": "no" + }, + { + "id": "336294", + "ident": "US-1738", + "type": "small_airport", + "name": "McGuire Ranch Airport", + "latitude_deg": "31.528397", + "longitude_deg": "-105.723431", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Hancock", + "scheduled_service": "no" + }, + { + "id": "336295", + "ident": "US-1739", + "type": "small_airport", + "name": "Worsham Airport", + "latitude_deg": "31.362689", + "longitude_deg": "-103.528976", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pecos", + "scheduled_service": "no" + }, + { + "id": "336304", + "ident": "US-1740", + "type": "closed", + "name": "Bare Ranch Airport", + "latitude_deg": "41.1699", + "longitude_deg": "-120.006752", + "elevation_ft": "4521", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Eagleville", + "scheduled_service": "no" + }, + { + "id": "336307", + "ident": "US-1741", + "type": "closed", + "name": "Big Bluff Ranch Airport", + "latitude_deg": "40.080278", + "longitude_deg": "-122.578056", + "elevation_ft": "902", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "scheduled_service": "no", + "home_link": "https://www.bigbluffranch.com/" + }, + { + "id": "336308", + "ident": "US-1742", + "type": "closed", + "name": "2G Ranch Airport", + "latitude_deg": "29.650615", + "longitude_deg": "-96.579469", + "elevation_ft": "259", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Columbus", + "scheduled_service": "no" + }, + { + "id": "336309", + "ident": "US-1743", + "type": "closed", + "name": "4 R Ranch Landing Strip", + "latitude_deg": "41.422713", + "longitude_deg": "-117.449384", + "elevation_ft": "4452", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Paradise Valley", + "scheduled_service": "no" + }, + { + "id": "336310", + "ident": "US-1744", + "type": "closed", + "name": "Walker Ranch Airport", + "latitude_deg": "31.393484", + "longitude_deg": "-99.481759", + "elevation_ft": "1421", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lohn", + "scheduled_service": "no" + }, + { + "id": "336313", + "ident": "US-1745", + "type": "closed", + "name": "Triangle Ranch Airport", + "latitude_deg": "34.029245", + "longitude_deg": "-100.068717", + "elevation_ft": "1752", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paducah", + "scheduled_service": "no" + }, + { + "id": "336317", + "ident": "US-1746", + "type": "closed", + "name": "Brock Ranch Landing Strip", + "latitude_deg": "42.846363", + "longitude_deg": "-94.047604", + "elevation_ft": "1129", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "scheduled_service": "no" + }, + { + "id": "336341", + "ident": "US-1747", + "type": "small_airport", + "name": "Breckenridge Airport", + "latitude_deg": "35.362732", + "longitude_deg": "-118.856117", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bakersfield", + "scheduled_service": "no" + }, + { + "id": "336358", + "ident": "US-1748", + "type": "closed", + "name": "Love County Airport", + "latitude_deg": "33.951868", + "longitude_deg": "-97.145555", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Marietta", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Love_County_Airport", + "keywords": "4O2" + }, + { + "id": "336360", + "ident": "US-1749", + "type": "closed", + "name": "Oakridge Farm Airport", + "latitude_deg": "35.178006", + "longitude_deg": "-81.644537", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Boiling Springs", + "scheduled_service": "no", + "keywords": "02NC" + }, + { + "id": "336361", + "ident": "US-1750", + "type": "closed", + "name": "USA Knollwood Hospital Heliport.", + "latitude_deg": "30.618988", + "longitude_deg": "-88.170211", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Mobile", + "scheduled_service": "no", + "keywords": "2AL9" + }, + { + "id": "336362", + "ident": "US-1751", + "type": "heliport", + "name": "Mulberry High School Heliport", + "latitude_deg": "27.896572", + "longitude_deg": "-81.957986", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Mulberry", + "scheduled_service": "no", + "keywords": "FD62" + }, + { + "id": "336383", + "ident": "US-1752", + "type": "closed", + "name": "Waller Airfield", + "latitude_deg": "30.271298", + "longitude_deg": "-98.419975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Johnson City", + "scheduled_service": "no" + }, + { + "id": "336386", + "ident": "US-1753", + "type": "heliport", + "name": "Westwood Place Helipad", + "latitude_deg": "34.058781", + "longitude_deg": "-118.442126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336392", + "ident": "US-1754", + "type": "heliport", + "name": "Californian on Wilshire Helipad", + "latitude_deg": "34.05933", + "longitude_deg": "-118.440101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336393", + "ident": "US-1755", + "type": "closed", + "name": "CJ Ranch Airport", + "latitude_deg": "30.244962", + "longitude_deg": "-98.502538", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Johnson City", + "scheduled_service": "no", + "keywords": "Cammack Ranch" + }, + { + "id": "336395", + "ident": "US-1756", + "type": "heliport", + "name": "Longford Condominium Helipad", + "latitude_deg": "34.059486", + "longitude_deg": "-118.439291", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336396", + "ident": "US-1757", + "type": "heliport", + "name": "Carlyle Wilshire Helipad", + "latitude_deg": "34.059615", + "longitude_deg": "-118.43869", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336397", + "ident": "US-1758", + "type": "heliport", + "name": "The Westford Condos Helipad", + "latitude_deg": "34.05981", + "longitude_deg": "-118.4381", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336398", + "ident": "US-1759", + "type": "heliport", + "name": "Park Wilshire Helipad", + "latitude_deg": "34.060175", + "longitude_deg": "-118.436871", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336399", + "ident": "US-1760", + "type": "heliport", + "name": "Remington Towers Helipad", + "latitude_deg": "34.060935", + "longitude_deg": "-118.437123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336400", + "ident": "US-1761", + "type": "heliport", + "name": "Wilshire Manning Condominiums Helipad", + "latitude_deg": "34.06049", + "longitude_deg": "-118.435289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336401", + "ident": "US-1762", + "type": "heliport", + "name": "Wilshire House Condominiums Helipad", + "latitude_deg": "34.061704", + "longitude_deg": "-118.434232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336402", + "ident": "US-1763", + "type": "heliport", + "name": "Wilshire Condominiums Helipad", + "latitude_deg": "34.061517", + "longitude_deg": "-118.432741", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336403", + "ident": "US-1764", + "type": "heliport", + "name": "Ten Five Sixty Condos Helipad", + "latitude_deg": "34.062055", + "longitude_deg": "-118.432521", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336404", + "ident": "US-1765", + "type": "heliport", + "name": "Regency Wilshire Condos Helipad", + "latitude_deg": "34.062677", + "longitude_deg": "-118.433293", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336405", + "ident": "US-1766", + "type": "closed", + "name": "Childress Landing Strip", + "latitude_deg": "30.70653", + "longitude_deg": "-101.46077", + "elevation_ft": "2268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no" + }, + { + "id": "336406", + "ident": "US-1767", + "type": "closed", + "name": "J Childress Ranch Landing Field", + "latitude_deg": "30.83536", + "longitude_deg": "-101.16155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no" + }, + { + "id": "336407", + "ident": "US-1768", + "type": "closed", + "name": "Baker Ranch Airport", + "latitude_deg": "30.903127", + "longitude_deg": "-101.243949", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no" + }, + { + "id": "336408", + "ident": "US-1769", + "type": "small_airport", + "name": "Pfeffer 2 Airport", + "latitude_deg": "29.946531", + "longitude_deg": "-95.941517", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waller", + "scheduled_service": "no", + "local_code": "6XS4" + }, + { + "id": "336409", + "ident": "US-1770", + "type": "closed", + "name": "Anderson's Airfield", + "latitude_deg": "45.055576", + "longitude_deg": "-123.612928", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Grand Ronde", + "scheduled_service": "no" + }, + { + "id": "336410", + "ident": "US-1771", + "type": "heliport", + "name": "Knight Hawk Helicopter Service Helipad", + "latitude_deg": "40.932235", + "longitude_deg": "-111.38647", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Coalville", + "scheduled_service": "no" + }, + { + "id": "336411", + "ident": "US-1772", + "type": "heliport", + "name": "Wilshire Marquis Condominiums Helipad", + "latitude_deg": "34.063366", + "longitude_deg": "-118.43303", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336412", + "ident": "US-1773", + "type": "closed", + "name": "Blue Water Landing Strip", + "latitude_deg": "29.05948", + "longitude_deg": "-95.14565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Freeport", + "scheduled_service": "no" + }, + { + "id": "336413", + "ident": "US-1774", + "type": "heliport", + "name": "Dorchester Condos Helipad", + "latitude_deg": "34.063375", + "longitude_deg": "-118.432011", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336414", + "ident": "US-1775", + "type": "closed", + "name": "Wenden Airfield", + "latitude_deg": "33.81322", + "longitude_deg": "-113.55237", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wenden", + "scheduled_service": "no" + }, + { + "id": "336415", + "ident": "US-1776", + "type": "closed", + "name": "Alamitos Landing Strip", + "latitude_deg": "32.73738", + "longitude_deg": "-115.452524", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Heber", + "scheduled_service": "no" + }, + { + "id": "336416", + "ident": "US-1777", + "type": "heliport", + "name": "Blair House Helipad", + "latitude_deg": "34.064317", + "longitude_deg": "-118.43141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336417", + "ident": "US-1778", + "type": "closed", + "name": "Habetz Landing Strip", + "latitude_deg": "30.264201", + "longitude_deg": "-92.357619", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Crowley", + "scheduled_service": "no" + }, + { + "id": "336418", + "ident": "US-1779", + "type": "heliport", + "name": "Mirabella Condominium Helipad", + "latitude_deg": "34.06565", + "longitude_deg": "-118.430187", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336420", + "ident": "US-1780", + "type": "heliport", + "name": "The Grand Condominiums Helipad", + "latitude_deg": "34.065877", + "longitude_deg": "-118.431185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336421", + "ident": "US-1781", + "type": "heliport", + "name": "Sterling International Towers Helipad", + "latitude_deg": "34.066623", + "longitude_deg": "-118.428277", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336422", + "ident": "US-1782", + "type": "heliport", + "name": "La Tour Helipad", + "latitude_deg": "34.066876", + "longitude_deg": "-118.427795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336423", + "ident": "US-1783", + "type": "heliport", + "name": "Diplomat Condominiums Helipad", + "latitude_deg": "34.067241", + "longitude_deg": "-118.426888", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336424", + "ident": "US-1784", + "type": "heliport", + "name": "Beverly West Residences Helipad", + "latitude_deg": "34.067645", + "longitude_deg": "-118.424968", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336425", + "ident": "US-1785", + "type": "closed", + "name": "Hull Private Helipad", + "latitude_deg": "35.032061", + "longitude_deg": "-85.257334", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Chattanooga", + "scheduled_service": "no" + }, + { + "id": "336427", + "ident": "US-1786", + "type": "closed", + "name": "Casa Blanca Airport", + "latitude_deg": "33.51285", + "longitude_deg": "-111.93669", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Scottsdale", + "scheduled_service": "no" + }, + { + "id": "336428", + "ident": "US-1787", + "type": "closed", + "name": "Motorola Airfield", + "latitude_deg": "33.46127", + "longitude_deg": "-111.90438", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Scottsdale", + "scheduled_service": "no" + }, + { + "id": "336429", + "ident": "US-1788", + "type": "heliport", + "name": "HonorHealth Scottsdale Shea Medical Center Heliport", + "latitude_deg": "33.581357", + "longitude_deg": "-111.885195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Scottsdale", + "scheduled_service": "no" + }, + { + "id": "336431", + "ident": "US-1789", + "type": "heliport", + "name": "Love Island House Private Helipad", + "latitude_deg": "41.383031", + "longitude_deg": "-73.73863", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Mahopac", + "scheduled_service": "no" + }, + { + "id": "336432", + "ident": "US-1790", + "type": "heliport", + "name": "Blue Sky Preserve Private Helipad", + "latitude_deg": "33.84288", + "longitude_deg": "-111.92696", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Cave Creek", + "scheduled_service": "no" + }, + { + "id": "336433", + "ident": "US-1791", + "type": "closed", + "name": "Blountstown Airport", + "latitude_deg": "30.44856", + "longitude_deg": "-85.02701", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Blountstown", + "scheduled_service": "no" + }, + { + "id": "336434", + "ident": "US-1792", + "type": "closed", + "name": "Sequoia Resort Airport", + "latitude_deg": "36.64191", + "longitude_deg": "-119.01", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Badger", + "scheduled_service": "no" + }, + { + "id": "336435", + "ident": "US-1793", + "type": "closed", + "name": "Split Mountain Landing Strip", + "latitude_deg": "40.431596", + "longitude_deg": "-109.235687", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Jensen", + "scheduled_service": "no" + }, + { + "id": "336436", + "ident": "US-1794", + "type": "heliport", + "name": "Watermarke Tower Helipad", + "latitude_deg": "34.046246", + "longitude_deg": "-118.261583", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336437", + "ident": "US-1795", + "type": "small_airport", + "name": "Solitude Backcountry Airstrip", + "latitude_deg": "38.21736", + "longitude_deg": "-119.15894", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bridgeport", + "scheduled_service": "no" + }, + { + "id": "336438", + "ident": "US-1796", + "type": "small_airport", + "name": "North Mono Landout", + "latitude_deg": "38.1002", + "longitude_deg": "-119.05277", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mono City", + "scheduled_service": "no" + }, + { + "id": "336439", + "ident": "US-1797", + "type": "small_airport", + "name": "Crestview Backcountry Airstrip", + "latitude_deg": "37.78289", + "longitude_deg": "-118.99987", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mammoth Lakes", + "scheduled_service": "no" + }, + { + "id": "336440", + "ident": "US-1798", + "type": "closed", + "name": "Arcularius Ranch Airport", + "latitude_deg": "37.7479", + "longitude_deg": "-118.89967", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mammoth Lakes", + "scheduled_service": "no" + }, + { + "id": "336441", + "ident": "US-1799", + "type": "closed", + "name": "Hammil Landing Strip", + "latitude_deg": "37.6749", + "longitude_deg": "-118.40367", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bishop", + "scheduled_service": "no" + }, + { + "id": "336442", + "ident": "US-1800", + "type": "small_airport", + "name": "Cinnamon Ranch Airport", + "latitude_deg": "37.67707", + "longitude_deg": "-118.3894", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bishop", + "scheduled_service": "no", + "keywords": "Cinnamon Ranch, Harris Brothers Ranch, Harris Ranch" + }, + { + "id": "336443", + "ident": "US-1801", + "type": "small_airport", + "name": "Madame Airport", + "latitude_deg": "37.92548", + "longitude_deg": "-118.40926", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Dyer", + "scheduled_service": "no" + }, + { + "id": "336444", + "ident": "US-1802", + "type": "closed", + "name": "Litchfield Park Airport", + "latitude_deg": "33.50185", + "longitude_deg": "-112.37484", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Litchfield Park", + "scheduled_service": "no" + }, + { + "id": "336453", + "ident": "US-1803", + "type": "small_airport", + "name": "Yuma Auxiliary Landing Field", + "latitude_deg": "32.508803", + "longitude_deg": "-114.462068", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yuma", + "scheduled_service": "no" + }, + { + "id": "336455", + "ident": "US-1804", + "type": "closed", + "name": "Airhaven Airport", + "latitude_deg": "33.491231", + "longitude_deg": "-112.124319", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "336456", + "ident": "US-1805", + "type": "closed", + "name": "Fram Field", + "latitude_deg": "33.52951", + "longitude_deg": "-112.27693", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "336457", + "ident": "US-1806", + "type": "closed", + "name": "Glendale Airhaven Airport", + "latitude_deg": "33.57064", + "longitude_deg": "-112.22858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Glendale", + "scheduled_service": "no", + "local_code": "P37" + }, + { + "id": "336458", + "ident": "US-1807", + "type": "closed", + "name": "Wittmann Field", + "latitude_deg": "33.713203", + "longitude_deg": "-112.526093", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wittmann", + "scheduled_service": "no" + }, + { + "id": "336459", + "ident": "US-1808", + "type": "closed", + "name": "Beardsley Field", + "latitude_deg": "33.704492", + "longitude_deg": "-112.417173", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Surprise", + "scheduled_service": "no" + }, + { + "id": "336460", + "ident": "US-1809", + "type": "closed", + "name": "Luke Auxiliary Field 3", + "latitude_deg": "33.631276", + "longitude_deg": "-112.366533", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Surprise", + "scheduled_service": "no" + }, + { + "id": "336461", + "ident": "US-1810", + "type": "closed", + "name": "Wickenburg Field", + "latitude_deg": "33.745184", + "longitude_deg": "-112.633553", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wittmann", + "scheduled_service": "no" + }, + { + "id": "336462", + "ident": "US-1811", + "type": "closed", + "name": "Thunderbird Field 1", + "latitude_deg": "33.620132", + "longitude_deg": "-112.179959", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "336463", + "ident": "US-1812", + "type": "closed", + "name": "Thunderbird #1 Auxiliary Airfield A-1", + "latitude_deg": "33.643634", + "longitude_deg": "-112.095823", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "336464", + "ident": "US-1813", + "type": "closed", + "name": "Thunderbird #1 Auxiliary Airfield A-2", + "latitude_deg": "33.656211", + "longitude_deg": "-112.24225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peoria", + "scheduled_service": "no" + }, + { + "id": "336465", + "ident": "US-1814", + "type": "closed", + "name": "Pylant Airport", + "latitude_deg": "33.58066", + "longitude_deg": "-112.1034", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "336466", + "ident": "US-1815", + "type": "small_airport", + "name": "Sunnyslope Glider Landing Zone", + "latitude_deg": "33.58442", + "longitude_deg": "-112.08094", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "336467", + "ident": "US-1816", + "type": "small_airport", + "name": "Mountain View Park Glider Landing Zone", + "latitude_deg": "33.57656", + "longitude_deg": "-112.08124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "336469", + "ident": "US-1817", + "type": "closed", + "name": "Turf Paradise Airfield", + "latitude_deg": "33.63252", + "longitude_deg": "-112.09212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "336470", + "ident": "US-1818", + "type": "closed", + "name": "Ramuda Ranch Landing Strip", + "latitude_deg": "33.9926", + "longitude_deg": "-112.73841", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wickenburg", + "scheduled_service": "no" + }, + { + "id": "336471", + "ident": "US-1819", + "type": "closed", + "name": "Wagoner Ranch Airstrip", + "latitude_deg": "34.223956", + "longitude_deg": "-112.540212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Kirkland", + "scheduled_service": "no" + }, + { + "id": "336531", + "ident": "US-1820", + "type": "heliport", + "name": "Matagorda Helipad", + "latitude_deg": "28.60699", + "longitude_deg": "-95.97056", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Matagorda", + "scheduled_service": "no" + }, + { + "id": "336532", + "ident": "US-1821", + "type": "closed", + "name": "Rubinkam Airport", + "latitude_deg": "41.5899", + "longitude_deg": "-87.68984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Markham", + "scheduled_service": "no" + }, + { + "id": "336533", + "ident": "US-1822", + "type": "closed", + "name": "Columbus Airstrip", + "latitude_deg": "29.719272", + "longitude_deg": "-96.560372", + "elevation_ft": "201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Columbus", + "scheduled_service": "no" + }, + { + "id": "336534", + "ident": "US-1823", + "type": "closed", + "name": "La Grange Municipal Airport - Guenther Field", + "latitude_deg": "29.896741", + "longitude_deg": "-96.901994", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "La Grange", + "scheduled_service": "no" + }, + { + "id": "336535", + "ident": "US-1824", + "type": "small_airport", + "name": "Double D Farms Airport", + "latitude_deg": "29.99879", + "longitude_deg": "-96.76103", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Warrenton", + "scheduled_service": "no", + "gps_code": "7TE1", + "local_code": "7TE1" + }, + { + "id": "336536", + "ident": "US-1825", + "type": "heliport", + "name": "Ascension Seton Neighborhood Hospital Heliport", + "latitude_deg": "30.10816", + "longitude_deg": "-97.34442", + "elevation_ft": "366", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bastrop", + "scheduled_service": "no", + "local_code": "TT13" + }, + { + "id": "336538", + "ident": "US-1826", + "type": "closed", + "name": "Bar Heart Ranch Airport", + "latitude_deg": "34.980256", + "longitude_deg": "-112.296023", + "elevation_ft": "4445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Drake", + "scheduled_service": "no", + "keywords": "13AZ, 8E8" + }, + { + "id": "336574", + "ident": "US-1827", + "type": "closed", + "name": "Wikieup Airport", + "latitude_deg": "34.70969", + "longitude_deg": "-113.61893", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wikieup", + "scheduled_service": "no" + }, + { + "id": "336575", + "ident": "US-1828", + "type": "closed", + "name": "Horseshoe Ranch Landing Strip", + "latitude_deg": "34.26371", + "longitude_deg": "-112.05392", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mayer", + "scheduled_service": "no" + }, + { + "id": "336576", + "ident": "US-1829", + "type": "closed", + "name": "Kleinschmidt Airport", + "latitude_deg": "44.63901", + "longitude_deg": "-122.90234", + "elevation_ft": "272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Scio", + "scheduled_service": "no" + }, + { + "id": "336577", + "ident": "US-1830", + "type": "small_airport", + "name": "Dillon's Landing Strip", + "latitude_deg": "34.41136", + "longitude_deg": "-112.7279", + "elevation_ft": "3924", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Kirkland", + "scheduled_service": "no" + }, + { + "id": "336578", + "ident": "US-1831", + "type": "closed", + "name": "Peeples Valley Landing Strip", + "latitude_deg": "34.28353", + "longitude_deg": "-112.708", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peeples Valley", + "scheduled_service": "no" + }, + { + "id": "336580", + "ident": "US-1832", + "type": "small_airport", + "name": "Muleshoe Ranch Landing Strip", + "latitude_deg": "34.52873", + "longitude_deg": "-112.97368", + "elevation_ft": "2743", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bagdad", + "scheduled_service": "no" + }, + { + "id": "336581", + "ident": "US-1833", + "type": "small_airport", + "name": "Stock Island Airport", + "latitude_deg": "30.413652", + "longitude_deg": "-85.746274", + "elevation_ft": "96", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City", + "scheduled_service": "no", + "gps_code": "94FA", + "local_code": "94FA", + "keywords": "Court Martial Lake, CML" + }, + { + "id": "336582", + "ident": "US-1834", + "type": "closed", + "name": "Sisson Landing Strip", + "latitude_deg": "32.983828", + "longitude_deg": "-112.813861", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gila Bend", + "scheduled_service": "no" + }, + { + "id": "336583", + "ident": "US-1835", + "type": "closed", + "name": "Citrus Valley South Landing Strip", + "latitude_deg": "32.98159", + "longitude_deg": "-112.82618", + "elevation_ft": "653", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gila Bend", + "scheduled_service": "no" + }, + { + "id": "336584", + "ident": "US-1836", + "type": "closed", + "name": "Galway Lake Landing Field", + "latitude_deg": "34.53706", + "longitude_deg": "-116.46828", + "elevation_ft": "2740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Newberry Springs", + "scheduled_service": "no" + }, + { + "id": "336585", + "ident": "US-1837", + "type": "closed", + "name": "Galway Lake Landing Field", + "latitude_deg": "34.53706", + "longitude_deg": "-116.46828", + "elevation_ft": "2740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Newberry Springs", + "scheduled_service": "no" + }, + { + "id": "336586", + "ident": "US-1838", + "type": "small_airport", + "name": "Soggy Lake Gliderport", + "latitude_deg": "34.4574", + "longitude_deg": "-116.69426", + "elevation_ft": "2870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lucerne Valley", + "scheduled_service": "no" + }, + { + "id": "336587", + "ident": "US-1839", + "type": "closed", + "name": "Landers Airport", + "latitude_deg": "34.26952", + "longitude_deg": "-116.39218", + "elevation_ft": "3061", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Landers", + "scheduled_service": "no" + }, + { + "id": "336588", + "ident": "US-1840", + "type": "closed", + "name": "Giant Rock International Spaceport", + "latitude_deg": "34.32908", + "longitude_deg": "-116.38491", + "elevation_ft": "2799", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Landers", + "scheduled_service": "no" + }, + { + "id": "336589", + "ident": "US-1841", + "type": "small_airport", + "name": "RT-9 Landing Strip", + "latitude_deg": "31.382768", + "longitude_deg": "-85.736682", + "elevation_ft": "256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker", + "scheduled_service": "no" + }, + { + "id": "336590", + "ident": "US-1842", + "type": "heliport", + "name": "Lake Tholocco Lodge Heliport", + "latitude_deg": "31.38599", + "longitude_deg": "-85.72226", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Ozark", + "scheduled_service": "no" + }, + { + "id": "336591", + "ident": "US-1843", + "type": "small_airport", + "name": "RT-6 Landing Strip", + "latitude_deg": "31.38935", + "longitude_deg": "-85.77755", + "elevation_ft": "272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker", + "scheduled_service": "no" + }, + { + "id": "336592", + "ident": "US-1844", + "type": "small_airport", + "name": "RT-4 Landing Strip", + "latitude_deg": "31.4186", + "longitude_deg": "-85.77598", + "elevation_ft": "382", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker", + "scheduled_service": "no" + }, + { + "id": "336593", + "ident": "US-1845", + "type": "small_airport", + "name": "RT-3 Landing Strip", + "latitude_deg": "31.4239", + "longitude_deg": "-85.778503", + "elevation_ft": "376", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker", + "scheduled_service": "no" + }, + { + "id": "336594", + "ident": "US-1846", + "type": "small_airport", + "name": "RT-14 Landing Strip", + "latitude_deg": "31.4201", + "longitude_deg": "-85.74251", + "elevation_ft": "383", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker", + "scheduled_service": "no" + }, + { + "id": "336595", + "ident": "US-1847", + "type": "small_airport", + "name": "RT-10 Landing Strip", + "latitude_deg": "31.4062", + "longitude_deg": "-85.72775", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker", + "scheduled_service": "no" + }, + { + "id": "336596", + "ident": "US-1848", + "type": "heliport", + "name": "Area 20 Ech Lake Field", + "latitude_deg": "31.40566", + "longitude_deg": "-85.75563", + "elevation_ft": "306", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker", + "scheduled_service": "no" + }, + { + "id": "336597", + "ident": "US-1849", + "type": "small_airport", + "name": "Wesley Chapel Airstrip", + "latitude_deg": "31.42076", + "longitude_deg": "-85.8481", + "elevation_ft": "282", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker", + "scheduled_service": "no" + }, + { + "id": "336598", + "ident": "US-1850", + "type": "closed", + "name": "Camp Alaflo Airstrip", + "latitude_deg": "31.4036", + "longitude_deg": "-85.85958", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "New Brockton", + "scheduled_service": "no" + }, + { + "id": "336602", + "ident": "US-1851", + "type": "closed", + "name": "Lahontan Field", + "latitude_deg": "39.45826", + "longitude_deg": "-118.78664", + "elevation_ft": "3960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Fallon", + "scheduled_service": "no" + }, + { + "id": "336603", + "ident": "US-1852", + "type": "seaplane_base", + "name": "Ski Pond Floatplane Strip", + "latitude_deg": "39.41836", + "longitude_deg": "-119.09629", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Silver Springs", + "scheduled_service": "no" + }, + { + "id": "336604", + "ident": "US-1853", + "type": "small_airport", + "name": "Fernley Airfield", + "latitude_deg": "39.5798", + "longitude_deg": "-119.20263", + "elevation_ft": "4209", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Fernley", + "scheduled_service": "no" + }, + { + "id": "336605", + "ident": "US-1854", + "type": "small_airport", + "name": "Tire Shop / Orange Lane Airstrip", + "latitude_deg": "39.44066", + "longitude_deg": "-119.20135", + "elevation_ft": "4275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Silver Springs", + "scheduled_service": "no" + }, + { + "id": "336606", + "ident": "US-1855", + "type": "closed", + "name": "Stump Alley Airstrip", + "latitude_deg": "39.415723", + "longitude_deg": "-119.170396", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Silver Springs", + "scheduled_service": "no" + }, + { + "id": "336607", + "ident": "US-1856", + "type": "closed", + "name": "Sand Point Airstrip", + "latitude_deg": "39.401929", + "longitude_deg": "-119.188249", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Silver Springs", + "scheduled_service": "no" + }, + { + "id": "336608", + "ident": "US-1857", + "type": "closed", + "name": "Dory's Place Airstrip", + "latitude_deg": "39.401366", + "longitude_deg": "-119.172285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Silver Springs", + "scheduled_service": "no" + }, + { + "id": "336651", + "ident": "US-1858", + "type": "small_airport", + "name": "Ibex / Tule Valley Hardpan Airstrip", + "latitude_deg": "38.94902", + "longitude_deg": "-113.37706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Garrison", + "scheduled_service": "no" + }, + { + "id": "336652", + "ident": "US-1859", + "type": "small_airport", + "name": "Twin Knolls Airstrip", + "latitude_deg": "39.7091", + "longitude_deg": "-109.44131", + "elevation_ft": "6448", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Jensen", + "scheduled_service": "no" + }, + { + "id": "336653", + "ident": "US-1860", + "type": "small_airport", + "name": "Bonanza Airstrip", + "latitude_deg": "40.0924", + "longitude_deg": "-109.18944", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Bonanza", + "scheduled_service": "no" + }, + { + "id": "336654", + "ident": "US-1861", + "type": "small_airport", + "name": "Buck Canyon Airstrip", + "latitude_deg": "39.79558", + "longitude_deg": "-109.46913", + "elevation_ft": "6337", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Jensen", + "scheduled_service": "no" + }, + { + "id": "336655", + "ident": "US-1862", + "type": "small_airport", + "name": "Archy Bench Airstrip", + "latitude_deg": "39.87205", + "longitude_deg": "-109.39653", + "elevation_ft": "5937", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Jensen", + "scheduled_service": "no" + }, + { + "id": "336656", + "ident": "US-1863", + "type": "small_airport", + "name": "Boulevard Ridge Airstrip", + "latitude_deg": "39.68227", + "longitude_deg": "-109.15275", + "elevation_ft": "7350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Jensen", + "scheduled_service": "no" + }, + { + "id": "336657", + "ident": "US-1864", + "type": "small_airport", + "name": "Atchee Ridge Airstrip", + "latitude_deg": "39.79406", + "longitude_deg": "-109.16824", + "elevation_ft": "6359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Jensen", + "scheduled_service": "no" + }, + { + "id": "336658", + "ident": "US-1865", + "type": "closed", + "name": "Swasey Peak Airstrip", + "latitude_deg": "39.55413", + "longitude_deg": "-113.28775", + "elevation_ft": "5260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Delta", + "scheduled_service": "no" + }, + { + "id": "336659", + "ident": "US-1866", + "type": "heliport", + "name": "Crane Memorial Hospital Helipad", + "latitude_deg": "31.39017", + "longitude_deg": "-102.34964", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crane", + "scheduled_service": "no" + }, + { + "id": "336660", + "ident": "US-1867", + "type": "heliport", + "name": "Martin County Hospital Heliport", + "latitude_deg": "32.13973", + "longitude_deg": "-101.78648", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Stanton", + "scheduled_service": "no" + }, + { + "id": "336661", + "ident": "US-1868", + "type": "closed", + "name": "Glass Ranch Airport", + "latitude_deg": "32.0733", + "longitude_deg": "-101.3898", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Big Spring", + "scheduled_service": "no" + }, + { + "id": "336662", + "ident": "US-1869", + "type": "closed", + "name": "Old McEntire Ranch Airport", + "latitude_deg": "31.8926", + "longitude_deg": "-101.13506", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sterling City", + "scheduled_service": "no" + }, + { + "id": "336663", + "ident": "US-1870", + "type": "small_airport", + "name": "McEntire Ranch Airport", + "latitude_deg": "31.900632", + "longitude_deg": "-101.130406", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sterling City", + "scheduled_service": "no" + }, + { + "id": "336665", + "ident": "US-1871", + "type": "heliport", + "name": "Dr Dan C Trigg Memorial Hospital Helipad", + "latitude_deg": "35.15708", + "longitude_deg": "-103.72203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Tucumcari", + "scheduled_service": "no" + }, + { + "id": "336666", + "ident": "US-1872", + "type": "small_airport", + "name": "Spankowski Airstrip", + "latitude_deg": "35.16129", + "longitude_deg": "-103.66967", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Tucumcari", + "scheduled_service": "no" + }, + { + "id": "336667", + "ident": "US-1873", + "type": "closed", + "name": "Cambria Pines Airport", + "latitude_deg": "35.554736", + "longitude_deg": "-121.076609", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Cambria", + "scheduled_service": "no" + }, + { + "id": "336670", + "ident": "US-1874", + "type": "small_airport", + "name": "Nine Mile Ranch Airport", + "latitude_deg": "38.38186", + "longitude_deg": "-118.93902", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Hawthorne", + "scheduled_service": "no" + }, + { + "id": "336671", + "ident": "US-1875", + "type": "closed", + "name": "Willow Creek Airport", + "latitude_deg": "40.9502", + "longitude_deg": "-123.63596", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Willow Creek", + "scheduled_service": "no" + }, + { + "id": "336672", + "ident": "US-1876", + "type": "closed", + "name": "Anderson Airstrip", + "latitude_deg": "41.30297", + "longitude_deg": "-123.54835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Orleans", + "scheduled_service": "no" + }, + { + "id": "336779", + "ident": "US-1877", + "type": "heliport", + "name": "Apex Helipad", + "latitude_deg": "34.045925", + "longitude_deg": "-118.262675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336780", + "ident": "US-1878", + "type": "small_airport", + "name": "Black Butte Airfield", + "latitude_deg": "34.50935", + "longitude_deg": "-117.72854", + "elevation_ft": "3297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Llano", + "scheduled_service": "no" + }, + { + "id": "336781", + "ident": "US-1879", + "type": "heliport", + "name": "Baylor Scott & White Llano Medical Center Helipad", + "latitude_deg": "30.742935", + "longitude_deg": "-98.677339", + "elevation_ft": "1048", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Llano", + "scheduled_service": "no" + }, + { + "id": "336782", + "ident": "US-1880", + "type": "small_airport", + "name": "Granite Hills Ranch Airport", + "latitude_deg": "30.7503", + "longitude_deg": "-98.51904", + "elevation_ft": "1006", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Llano", + "scheduled_service": "no" + }, + { + "id": "336783", + "ident": "US-1881", + "type": "small_airport", + "name": "Wirt Field", + "latitude_deg": "34.53139", + "longitude_deg": "-117.75359", + "elevation_ft": "3087", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Llano", + "scheduled_service": "no" + }, + { + "id": "336784", + "ident": "US-1882", + "type": "small_airport", + "name": "Oasis Airport", + "latitude_deg": "34.50889", + "longitude_deg": "-117.6458", + "elevation_ft": "3321", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Phelan", + "scheduled_service": "no" + }, + { + "id": "336785", + "ident": "US-1883", + "type": "small_airport", + "name": "Antelope Valley Soaring Club Gliderport", + "latitude_deg": "34.56135", + "longitude_deg": "-117.60316", + "elevation_ft": "3064", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Phelan", + "scheduled_service": "no" + }, + { + "id": "336786", + "ident": "US-1884", + "type": "small_airport", + "name": "Flying J Ranch Airport", + "latitude_deg": "34.63041", + "longitude_deg": "-117.61809", + "elevation_ft": "2848", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Adelanto", + "scheduled_service": "no" + }, + { + "id": "336787", + "ident": "US-1885", + "type": "small_airport", + "name": "Tadgyro Gyroport", + "latitude_deg": "34.65033", + "longitude_deg": "-117.63834", + "elevation_ft": "2848", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Adelanto", + "scheduled_service": "no" + }, + { + "id": "336788", + "ident": "US-1886", + "type": "small_airport", + "name": "Snow Airstrip", + "latitude_deg": "34.64828", + "longitude_deg": "-117.63748", + "elevation_ft": "2844", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Adelanto", + "scheduled_service": "no" + }, + { + "id": "336789", + "ident": "US-1887", + "type": "small_airport", + "name": "El Mirage Auxiliary Airfield", + "latitude_deg": "34.64404", + "longitude_deg": "-117.59592", + "elevation_ft": "2838", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Adelanto", + "scheduled_service": "no" + }, + { + "id": "336790", + "ident": "US-1888", + "type": "small_airport", + "name": "Bella Vista Airport", + "latitude_deg": "34.62758", + "longitude_deg": "-117.64694", + "elevation_ft": "2854", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Adelanto", + "scheduled_service": "no" + }, + { + "id": "336827", + "ident": "US-1889", + "type": "closed", + "name": "Hamoa Airport", + "latitude_deg": "20.71814", + "longitude_deg": "-155.99068", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Hana", + "scheduled_service": "no" + }, + { + "id": "336828", + "ident": "US-1890", + "type": "closed", + "name": "Maui (Puunene) Airport", + "latitude_deg": "20.8129", + "longitude_deg": "-156.45755", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kihei", + "scheduled_service": "no" + }, + { + "id": "336829", + "ident": "US-1891", + "type": "closed", + "name": "Maalaea Airport", + "latitude_deg": "20.79232", + "longitude_deg": "-156.51127", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Wailuku", + "scheduled_service": "no" + }, + { + "id": "336830", + "ident": "US-1892", + "type": "closed", + "name": "Border Field", + "latitude_deg": "32.53728", + "longitude_deg": "-117.11849", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "336831", + "ident": "US-1893", + "type": "closed", + "name": "Tyce Airport", + "latitude_deg": "32.62955", + "longitude_deg": "-117.10138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chula Vista", + "scheduled_service": "no" + }, + { + "id": "336832", + "ident": "US-1894", + "type": "closed", + "name": "National City Airport", + "latitude_deg": "32.65062", + "longitude_deg": "-117.1002", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "National City", + "scheduled_service": "no" + }, + { + "id": "336833", + "ident": "US-1895", + "type": "closed", + "name": "Peik's Airport", + "latitude_deg": "32.76409", + "longitude_deg": "-117.20876", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "336834", + "ident": "US-1896", + "type": "closed", + "name": "Del Mar Airport", + "latitude_deg": "32.97089", + "longitude_deg": "-117.25278", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Del Mar", + "scheduled_service": "no" + }, + { + "id": "336835", + "ident": "US-1897", + "type": "heliport", + "name": "Connexion Burbank Helipad", + "latitude_deg": "34.1846", + "longitude_deg": "-118.30883", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Burbank", + "scheduled_service": "no" + }, + { + "id": "336836", + "ident": "US-1898", + "type": "closed", + "name": "Lockheed Airport", + "latitude_deg": "34.18935", + "longitude_deg": "-118.33259", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Burbank", + "scheduled_service": "no" + }, + { + "id": "336837", + "ident": "US-1899", + "type": "closed", + "name": "Brand Field", + "latitude_deg": "34.17809", + "longitude_deg": "-118.27883", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "336838", + "ident": "US-1900", + "type": "heliport", + "name": "Chantry Flat Heliport", + "latitude_deg": "34.192321", + "longitude_deg": "-118.02218", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Arcadia", + "scheduled_service": "no" + }, + { + "id": "336839", + "ident": "US-1901", + "type": "heliport", + "name": "Mount Wilson Heliport", + "latitude_deg": "34.22292", + "longitude_deg": "-118.06264", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pasadena", + "scheduled_service": "no" + }, + { + "id": "336840", + "ident": "US-1902", + "type": "heliport", + "name": "Kahului Heliport", + "latitude_deg": "20.88901", + "longitude_deg": "-156.43386", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kahului", + "scheduled_service": "no" + }, + { + "id": "336841", + "ident": "US-1903", + "type": "heliport", + "name": "Seabase Pier Helipad", + "latitude_deg": "21.3173", + "longitude_deg": "-157.91312", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Honolulu", + "scheduled_service": "no" + }, + { + "id": "336843", + "ident": "US-1904", + "type": "small_airport", + "name": "Zemurray Airport", + "latitude_deg": "30.62318", + "longitude_deg": "-90.33244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Loranger", + "scheduled_service": "no" + }, + { + "id": "336844", + "ident": "US-1905", + "type": "small_airport", + "name": "Grosse Savanne Airport", + "latitude_deg": "30.01697", + "longitude_deg": "-93.07202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bell City", + "scheduled_service": "no" + }, + { + "id": "336845", + "ident": "US-1906", + "type": "small_airport", + "name": "Nunez Airport", + "latitude_deg": "29.738483", + "longitude_deg": "-92.837412", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Grand Chenier", + "scheduled_service": "no" + }, + { + "id": "336846", + "ident": "US-1907", + "type": "closed", + "name": "Hanks Airport", + "latitude_deg": "30.00943", + "longitude_deg": "-92.31221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kaplan", + "scheduled_service": "no" + }, + { + "id": "336847", + "ident": "US-1908", + "type": "small_airport", + "name": "Sonlef Air Strip", + "latitude_deg": "32.62978", + "longitude_deg": "-93.6576", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Benton", + "scheduled_service": "no", + "local_code": "LA81" + }, + { + "id": "336886", + "ident": "US-1909", + "type": "closed", + "name": "Estcourt Station Airport", + "latitude_deg": "47.444341", + "longitude_deg": "-69.148893", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Estcourt Station", + "scheduled_service": "no", + "keywords": "Estcourt, Station, Airfield, Abandoned" + }, + { + "id": "336894", + "ident": "US-1910", + "type": "heliport", + "name": "TCW Tower Helipad", + "latitude_deg": "34.046815", + "longitude_deg": "-118.262967", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "336895", + "ident": "US-1911", + "type": "closed", + "name": "Texas Agricultural Experiment Station Landing Field", + "latitude_deg": "30.270891", + "longitude_deg": "-100.564921", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no" + }, + { + "id": "336896", + "ident": "US-1912", + "type": "small_airport", + "name": "Goatneck Airport", + "latitude_deg": "32.154399", + "longitude_deg": "-97.560293", + "elevation_ft": "573", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cleburne", + "scheduled_service": "no", + "gps_code": "13TX", + "local_code": "13TX", + "keywords": "13tx" + }, + { + "id": "336897", + "ident": "US-1913", + "type": "closed", + "name": "J Shurley Ranch Airport", + "latitude_deg": "30.45008", + "longitude_deg": "-100.738621", + "elevation_ft": "2034", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no" + }, + { + "id": "336898", + "ident": "US-1914", + "type": "closed", + "name": "Taylor Box Draw Airport", + "latitude_deg": "30.481725", + "longitude_deg": "-101.026325", + "elevation_ft": "2093", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no" + }, + { + "id": "336899", + "ident": "US-1915", + "type": "small_airport", + "name": "Pakenham Landing Strip", + "latitude_deg": "30.422254", + "longitude_deg": "-101.888881", + "elevation_ft": "2165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sheffield", + "scheduled_service": "no" + }, + { + "id": "336900", + "ident": "US-1916", + "type": "small_airport", + "name": "Hackberry Landing Airstrip", + "latitude_deg": "30.20833", + "longitude_deg": "-101.64782", + "elevation_ft": "1677", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no" + }, + { + "id": "336901", + "ident": "US-1917", + "type": "small_airport", + "name": "Oasis Ranch Airport", + "latitude_deg": "30.46354", + "longitude_deg": "-101.8143", + "elevation_ft": "2067", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sheffield", + "scheduled_service": "no" + }, + { + "id": "336902", + "ident": "US-1918", + "type": "closed", + "name": "Hartman Farms Airport", + "latitude_deg": "30.9141", + "longitude_deg": "-102.34945", + "elevation_ft": "2477", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no" + }, + { + "id": "336903", + "ident": "US-1919", + "type": "closed", + "name": "Firestone Testing Center Landing Strip", + "latitude_deg": "30.93949", + "longitude_deg": "-103.09163", + "elevation_ft": "3028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no" + }, + { + "id": "336904", + "ident": "US-1920", + "type": "small_airport", + "name": "Luke Brown Farms Airport", + "latitude_deg": "30.95637", + "longitude_deg": "-103.56837", + "elevation_ft": "2991", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Balmorhea", + "scheduled_service": "no" + }, + { + "id": "336905", + "ident": "US-1921", + "type": "closed", + "name": "Verhalen Landing Strip", + "latitude_deg": "31.12288", + "longitude_deg": "-103.57144", + "elevation_ft": "2805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pecos", + "scheduled_service": "no" + }, + { + "id": "336906", + "ident": "US-1922", + "type": "closed", + "name": "Bacotes Landing Strip", + "latitude_deg": "31.11071", + "longitude_deg": "-103.51242", + "elevation_ft": "2818", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pecos", + "scheduled_service": "no" + }, + { + "id": "336907", + "ident": "US-1923", + "type": "small_airport", + "name": "White Shark Landing Strip", + "latitude_deg": "31.22843", + "longitude_deg": "-103.60704", + "elevation_ft": "2710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pecos", + "scheduled_service": "no" + }, + { + "id": "336908", + "ident": "US-1924", + "type": "closed", + "name": "Milford Auxiliary Airlfield", + "latitude_deg": "44.973391", + "longitude_deg": "-68.45757", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Milford", + "scheduled_service": "no" + }, + { + "id": "336918", + "ident": "US-1925", + "type": "heliport", + "name": "Lillian M Hudspeth Memorial Hospital Helipad", + "latitude_deg": "30.563859", + "longitude_deg": "-100.634755", + "elevation_ft": "2178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no", + "local_code": "XA68" + }, + { + "id": "336919", + "ident": "US-1926", + "type": "closed", + "name": "Chimney Bluff Landing Strip", + "latitude_deg": "30.47227", + "longitude_deg": "-100.22679", + "elevation_ft": "2128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no" + }, + { + "id": "336926", + "ident": "US-1927", + "type": "closed", + "name": "Anton Chico Intermediate Field", + "latitude_deg": "35.140195", + "longitude_deg": "-105.086889", + "elevation_ft": "5274", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "La Loma", + "scheduled_service": "no" + }, + { + "id": "336927", + "ident": "US-1928", + "type": "closed", + "name": "Gabaldon Landing Strip", + "latitude_deg": "35.48548", + "longitude_deg": "-105.28106", + "elevation_ft": "6529", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Las Vegas", + "scheduled_service": "no" + }, + { + "id": "336928", + "ident": "US-1929", + "type": "small_airport", + "name": "Tecolote Landing Strip", + "latitude_deg": "35.4543", + "longitude_deg": "-105.2632", + "elevation_ft": "6253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Las Vegas", + "scheduled_service": "no" + }, + { + "id": "336929", + "ident": "US-1930", + "type": "closed", + "name": "Alhambra Airport", + "latitude_deg": "34.07733", + "longitude_deg": "-118.11142", + "elevation_ft": "361", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Alhambra", + "scheduled_service": "no" + }, + { + "id": "336930", + "ident": "US-1931", + "type": "closed", + "name": "Vail Field", + "latitude_deg": "34.00313", + "longitude_deg": "-118.13506", + "elevation_ft": "168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Commerce", + "scheduled_service": "no" + }, + { + "id": "336931", + "ident": "US-1932", + "type": "closed", + "name": "Adams City Airport", + "latitude_deg": "39.83694", + "longitude_deg": "-104.9209", + "elevation_ft": "5123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Commerce City", + "scheduled_service": "no" + }, + { + "id": "336932", + "ident": "US-1933", + "type": "small_airport", + "name": "Alamosa Outport Airport", + "latitude_deg": "37.421944", + "longitude_deg": "-105.666111", + "elevation_ft": "7606", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Alamosa", + "scheduled_service": "no", + "gps_code": "CO14", + "local_code": "CO14" + }, + { + "id": "336967", + "ident": "US-1934", + "type": "heliport", + "name": "Flicksville Heliport", + "latitude_deg": "40.843194", + "longitude_deg": "-75.205319", + "elevation_ft": "447", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Flicksville", + "scheduled_service": "no", + "gps_code": "4PA0", + "local_code": "4PA0" + }, + { + "id": "336968", + "ident": "US-1935", + "type": "closed", + "name": "Albert Farms Airport", + "latitude_deg": "41.550101", + "longitude_deg": "-71.524227", + "elevation_ft": "177", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Exeter", + "scheduled_service": "no" + }, + { + "id": "336969", + "ident": "US-1936", + "type": "closed", + "name": "Boystown Fly-in-Ranch Airport", + "latitude_deg": "41.636518", + "longitude_deg": "-71.348562", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Warwick", + "scheduled_service": "no", + "keywords": "Prudence Island" + }, + { + "id": "336971", + "ident": "US-1937", + "type": "closed", + "name": "Coventry Airpark", + "latitude_deg": "41.688842", + "longitude_deg": "-71.585444", + "elevation_ft": "253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Coventry", + "scheduled_service": "no" + }, + { + "id": "336973", + "ident": "US-1938", + "type": "closed", + "name": "Willows Resort Airport", + "latitude_deg": "41.362323", + "longitude_deg": "-71.679508", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Charlestown", + "scheduled_service": "no" + }, + { + "id": "336974", + "ident": "US-1939", + "type": "closed", + "name": "Naval Auxiliary Air Station Charlestown", + "latitude_deg": "41.368056", + "longitude_deg": "-71.667222", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-RI", + "municipality": "Charlestown", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Auxiliary_Air_Station_Charlestown", + "keywords": "Atlantic Airport" + }, + { + "id": "336975", + "ident": "US-1940", + "type": "closed", + "name": "1st Street/Center Parking Garage Helipad", + "latitude_deg": "33.416693", + "longitude_deg": "-111.833122", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no" + }, + { + "id": "16413", + "ident": "US-1941", + "type": "closed", + "name": "Goldfield Ranch Airport", + "latitude_deg": "33.599804", + "longitude_deg": "-111.60588", + "elevation_ft": "1720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Fountain Hills", + "scheduled_service": "no", + "keywords": "AZ25" + }, + { + "id": "24426", + "ident": "US-1942", + "type": "closed", + "name": "Javika Airport", + "latitude_deg": "33.6521", + "longitude_deg": "-78.994202", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Surfside Beach", + "scheduled_service": "no", + "keywords": "SC28" + }, + { + "id": "337068", + "ident": "US-1943", + "type": "small_airport", + "name": "Ninetysix Ranch Airport", + "latitude_deg": "30.665049", + "longitude_deg": "-104.809293", + "elevation_ft": "3878", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Valentine", + "scheduled_service": "no" + }, + { + "id": "337069", + "ident": "US-1944", + "type": "closed", + "name": "Lost Cabin Landing Field", + "latitude_deg": "43.28317", + "longitude_deg": "-107.62722", + "elevation_ft": "5407", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Lysite", + "scheduled_service": "no" + }, + { + "id": "337076", + "ident": "US-1945", + "type": "closed", + "name": "Reynolds Airport", + "latitude_deg": "43.04399", + "longitude_deg": "-114.16538", + "elevation_ft": "4268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Richfield", + "scheduled_service": "no" + }, + { + "id": "337077", + "ident": "US-1946", + "type": "closed", + "name": "Grindstone Ag Airport", + "latitude_deg": "42.86956", + "longitude_deg": "-115.37552", + "elevation_ft": "3130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "King Hill", + "scheduled_service": "no" + }, + { + "id": "337078", + "ident": "US-1947", + "type": "closed", + "name": "Malta Airport", + "latitude_deg": "42.311347", + "longitude_deg": "-113.375752", + "elevation_ft": "4528", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Malta", + "scheduled_service": "no" + }, + { + "id": "337079", + "ident": "US-1948", + "type": "small_airport", + "name": "Darwin Landing Strip", + "latitude_deg": "36.263359", + "longitude_deg": "-117.597914", + "elevation_ft": "4711", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Darwin", + "scheduled_service": "no" + }, + { + "id": "314552", + "ident": "US-1949", + "type": "closed", + "name": "Quartz Hill Airport", + "latitude_deg": "34.65", + "longitude_deg": "-118.206", + "elevation_ft": "2465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lancaster", + "scheduled_service": "no", + "keywords": "RZH" + }, + { + "id": "15634", + "ident": "US-1950", + "type": "closed", + "name": "Foscoro Airport", + "latitude_deg": "44.680801", + "longitude_deg": "-87.3806", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Algoma", + "scheduled_service": "no", + "keywords": "99WI" + }, + { + "id": "337121", + "ident": "US-1951", + "type": "heliport", + "name": "Munson Healthcare Manistee Hospital Heliport", + "latitude_deg": "44.270725", + "longitude_deg": "-86.275168", + "elevation_ft": "607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Manistee", + "scheduled_service": "no", + "local_code": "0MI5" + }, + { + "id": "337122", + "ident": "US-1952", + "type": "heliport", + "name": "Greenville Memorial Hospital Heliport", + "latitude_deg": "34.817705", + "longitude_deg": "-82.414453", + "elevation_ft": "947", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Greenville", + "scheduled_service": "no", + "local_code": "15SC" + }, + { + "id": "337123", + "ident": "US-1953", + "type": "small_airport", + "name": "Nolnacs Airport", + "latitude_deg": "40.144306", + "longitude_deg": "-79.375139", + "elevation_ft": "1554", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Stahlstown", + "scheduled_service": "no", + "gps_code": "30PA", + "local_code": "30PA" + }, + { + "id": "337126", + "ident": "US-1954", + "type": "small_airport", + "name": "Huber Field", + "latitude_deg": "40.313975", + "longitude_deg": "-84.181046", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Sidney", + "scheduled_service": "no", + "gps_code": "41OH", + "local_code": "41OH" + }, + { + "id": "337148", + "ident": "US-1955", + "type": "heliport", + "name": "Plaza Medical Center Helipad", + "latitude_deg": "32.735947", + "longitude_deg": "-97.346179", + "elevation_ft": "667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "local_code": "89TE" + }, + { + "id": "337150", + "ident": "US-1956", + "type": "heliport", + "name": "Vail Health EMS Heliport", + "latitude_deg": "39.644566", + "longitude_deg": "-106.381554", + "elevation_ft": "8384", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Vail", + "scheduled_service": "no", + "local_code": "CO69" + }, + { + "id": "337151", + "ident": "US-1957", + "type": "small_airport", + "name": "Yaw-Hoo Field", + "latitude_deg": "40.854197", + "longitude_deg": "-95.085928", + "elevation_ft": "1248", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Clarinda", + "scheduled_service": "no", + "gps_code": "IA05", + "local_code": "IA05" + }, + { + "id": "337162", + "ident": "US-1958", + "type": "small_airport", + "name": "McPherson Airfield", + "latitude_deg": "39.136265", + "longitude_deg": "-85.146092", + "elevation_ft": "959", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Milan", + "scheduled_service": "no", + "gps_code": "IN26", + "local_code": "IN26" + }, + { + "id": "337163", + "ident": "US-1959", + "type": "small_airport", + "name": "Raymond Field", + "latitude_deg": "44.739002", + "longitude_deg": "-83.709453", + "elevation_ft": "907", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Barton City", + "scheduled_service": "no", + "gps_code": "MI58", + "local_code": "MI58" + }, + { + "id": "337168", + "ident": "US-1960", + "type": "heliport", + "name": "Three Rivers Medical Center Heliport", + "latitude_deg": "42.421867", + "longitude_deg": "-123.343958", + "elevation_ft": "943", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Grants Pass", + "scheduled_service": "no", + "local_code": "OR19" + }, + { + "id": "350253", + "ident": "US-1961", + "type": "small_airport", + "name": "Onion Creek Airport", + "latitude_deg": "30.17997", + "longitude_deg": "-98.21897", + "elevation_ft": "1323", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dripping Springs", + "scheduled_service": "no" + }, + { + "id": "337175", + "ident": "US-1962", + "type": "heliport", + "name": "Laurens Memorial Hospital Heliport", + "latitude_deg": "34.480551", + "longitude_deg": "-81.939265", + "elevation_ft": "677", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Clinton", + "scheduled_service": "no", + "gps_code": "SC33", + "local_code": "SC33" + }, + { + "id": "337176", + "ident": "US-1963", + "type": "heliport", + "name": "Jacks Heliport", + "latitude_deg": "34.01425", + "longitude_deg": "-81.369722", + "elevation_ft": "427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Lexington", + "scheduled_service": "no", + "local_code": "SC50" + }, + { + "id": "337177", + "ident": "US-1964", + "type": "small_airport", + "name": "North Greenville Hospital Heliport", + "latitude_deg": "34.975722", + "longitude_deg": "-82.455211", + "elevation_ft": "1063", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Travelers Rest", + "scheduled_service": "no", + "local_code": "SC54" + }, + { + "id": "337178", + "ident": "US-1965", + "type": "heliport", + "name": "Venesky Air Heliport", + "latitude_deg": "34.808633", + "longitude_deg": "-82.591444", + "elevation_ft": "1001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Easley", + "scheduled_service": "no", + "local_code": "SC93" + }, + { + "id": "337181", + "ident": "US-1966", + "type": "heliport", + "name": "Johnston Willis Heliport", + "latitude_deg": "37.509726", + "longitude_deg": "-77.593979", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "VG41", + "local_code": "VG41" + }, + { + "id": "337182", + "ident": "US-1967", + "type": "heliport", + "name": "Texas Health Mansfield Heliport", + "latitude_deg": "32.536037", + "longitude_deg": "-97.100156", + "elevation_ft": "638", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mansfield", + "scheduled_service": "no", + "gps_code": "XA64", + "local_code": "XA64" + }, + { + "id": "337187", + "ident": "US-1968", + "type": "heliport", + "name": "2110 South M-76 Heliport", + "latitude_deg": "44.273208", + "longitude_deg": "-84.222731", + "elevation_ft": "943", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "West Branch", + "scheduled_service": "no", + "gps_code": "0MI0", + "local_code": "0MI0" + }, + { + "id": "337189", + "ident": "US-1969", + "type": "heliport", + "name": "McLaren Greater Lansing Hospital Heliport", + "latitude_deg": "42.701447", + "longitude_deg": "-84.500411", + "elevation_ft": "858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lansing", + "scheduled_service": "no", + "gps_code": "2MI7", + "local_code": "2MI7" + }, + { + "id": "337191", + "ident": "US-1970", + "type": "seaplane_base", + "name": "St. Joseph River Seaplane Base", + "latitude_deg": "41.696408", + "longitude_deg": "-85.938136", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Elkhart", + "scheduled_service": "no", + "local_code": "0IN", + "keywords": "42IN" + }, + { + "id": "337193", + "ident": "US-1971", + "type": "heliport", + "name": "Watertown Medical Center Heliport", + "latitude_deg": "43.199952", + "longitude_deg": "-88.695642", + "elevation_ft": "886", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Watertown", + "scheduled_service": "no", + "gps_code": "49WI", + "local_code": "49WI" + }, + { + "id": "337194", + "ident": "US-1972", + "type": "small_airport", + "name": "Clemens Airport", + "latitude_deg": "37.378264", + "longitude_deg": "-95.339783", + "elevation_ft": "966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Parsons", + "scheduled_service": "no", + "gps_code": "50KS", + "local_code": "50KS" + }, + { + "id": "337204", + "ident": "US-1973", + "type": "heliport", + "name": "Gunderson Moundview Hospital Heliport", + "latitude_deg": "43.975125", + "longitude_deg": "-89.821413", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Friendship", + "scheduled_service": "no", + "gps_code": "64WI", + "local_code": "64WI" + }, + { + "id": "337205", + "ident": "US-1974", + "type": "heliport", + "name": "Sparrow Ionia Hospital Heliport", + "latitude_deg": "42.936275", + "longitude_deg": "-85.067343", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ionia", + "scheduled_service": "no", + "gps_code": "6MI5", + "local_code": "6MI5" + }, + { + "id": "337207", + "ident": "US-1975", + "type": "seaplane_base", + "name": "Jimmerson Lake Seaplane Base", + "latitude_deg": "41.707683", + "longitude_deg": "-85.060194", + "elevation_ft": "964", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Lake James", + "scheduled_service": "no", + "gps_code": "74IN", + "local_code": "74IN" + }, + { + "id": "337208", + "ident": "US-1976", + "type": "heliport", + "name": "Monroe Clinic Hospital Heliport", + "latitude_deg": "42.609157", + "longitude_deg": "-89.634061", + "elevation_ft": "1049", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "81WI", + "local_code": "81WI" + }, + { + "id": "337209", + "ident": "US-1977", + "type": "heliport", + "name": "Beach Helicopter Heliport", + "latitude_deg": "30.388202", + "longitude_deg": "-86.433322", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Destin", + "scheduled_service": "no", + "gps_code": "8FL5", + "local_code": "8FL5", + "keywords": "Destin Helicopters, Timberview Helicopters" + }, + { + "id": "337211", + "ident": "US-1978", + "type": "small_airport", + "name": "Northstar Airport", + "latitude_deg": "34.241056", + "longitude_deg": "-112.362778", + "elevation_ft": "7190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Crown King", + "scheduled_service": "no", + "gps_code": "AZ72", + "local_code": "AZ72" + }, + { + "id": "337212", + "ident": "US-1979", + "type": "seaplane_base", + "name": "Big Turkey Lake Seaplane Base", + "latitude_deg": "41.584967", + "longitude_deg": "-85.188628", + "elevation_ft": "927", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Stroh", + "scheduled_service": "no", + "local_code": "IN0" + }, + { + "id": "337213", + "ident": "US-1980", + "type": "seaplane_base", + "name": "Snow Lake Seaplane Base", + "latitude_deg": "41.729858", + "longitude_deg": "-85.032575", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Jamestown", + "scheduled_service": "no", + "local_code": "IN2" + }, + { + "id": "337214", + "ident": "US-1981", + "type": "seaplane_base", + "name": "Adams Lake Seaplane Base", + "latitude_deg": "41.552689", + "longitude_deg": "-85.331119", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Woolcottville", + "scheduled_service": "no", + "local_code": "IN5" + }, + { + "id": "337215", + "ident": "US-1982", + "type": "small_airport", + "name": "Beechwood Flying Field", + "latitude_deg": "38.688406", + "longitude_deg": "-85.703222", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Scottsburg", + "scheduled_service": "no", + "gps_code": "IN50", + "local_code": "IN50" + }, + { + "id": "337216", + "ident": "US-1983", + "type": "heliport", + "name": "Gateway Hospital Heliport", + "latitude_deg": "37.974536", + "longitude_deg": "-87.446162", + "elevation_ft": "395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Newburgh", + "scheduled_service": "no", + "gps_code": "IN95", + "local_code": "IN95" + }, + { + "id": "337217", + "ident": "US-1984", + "type": "heliport", + "name": "CS Mott Helipad", + "latitude_deg": "42.282135", + "longitude_deg": "-83.726678", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ann Arbor", + "scheduled_service": "no", + "gps_code": "MI50", + "local_code": "MI50" + }, + { + "id": "337227", + "ident": "US-1985", + "type": "small_airport", + "name": "M4 Strip", + "latitude_deg": "46.547292", + "longitude_deg": "-111.889722", + "elevation_ft": "4164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "East Helena", + "scheduled_service": "no", + "gps_code": "MT46", + "local_code": "MT46" + }, + { + "id": "337228", + "ident": "US-1986", + "type": "heliport", + "name": "Cleveland Clinic Fairview Hospital Heliport", + "latitude_deg": "41.450443", + "longitude_deg": "-81.822701", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cleveland", + "scheduled_service": "no", + "gps_code": "OH27", + "local_code": "OH27" + }, + { + "id": "337229", + "ident": "US-1987", + "type": "small_airport", + "name": "Tank Airport", + "latitude_deg": "40.06481", + "longitude_deg": "-81.622272", + "elevation_ft": "814", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "OI98", + "local_code": "OI98" + }, + { + "id": "337232", + "ident": "US-1988", + "type": "closed", + "name": "Fort Morgan Airport", + "latitude_deg": "30.229575", + "longitude_deg": "-88.016979", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Gulf Shores", + "scheduled_service": "no" + }, + { + "id": "337233", + "ident": "US-1989", + "type": "closed", + "name": "Hamilton Field", + "latitude_deg": "32.27028", + "longitude_deg": "-101.469254", + "elevation_ft": "2497", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Big Spring", + "scheduled_service": "no" + }, + { + "id": "337234", + "ident": "US-1990", + "type": "small_airport", + "name": "Flying A Ranch Airport", + "latitude_deg": "33.168711", + "longitude_deg": "-112.282237", + "elevation_ft": "1325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Buckeye", + "scheduled_service": "no" + }, + { + "id": "337235", + "ident": "US-1991", + "type": "small_airport", + "name": "Rainbow Rancho Airport", + "latitude_deg": "33.221612", + "longitude_deg": "-112.307333", + "elevation_ft": "1319", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Buckeye", + "scheduled_service": "no" + }, + { + "id": "337236", + "ident": "US-1992", + "type": "closed", + "name": "Lum Wash Landing Strip", + "latitude_deg": "33.34427", + "longitude_deg": "-112.46705", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Buckeye", + "scheduled_service": "no" + }, + { + "id": "337237", + "ident": "US-1993", + "type": "closed", + "name": "Patterson Landing Strip", + "latitude_deg": "33.18503", + "longitude_deg": "-112.67576", + "elevation_ft": "807", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Buckeye", + "scheduled_service": "no" + }, + { + "id": "337238", + "ident": "US-1994", + "type": "small_airport", + "name": "Desert Star Landing Strip", + "latitude_deg": "33.14506", + "longitude_deg": "-112.65465", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Buckeye", + "scheduled_service": "no" + }, + { + "id": "337239", + "ident": "US-1995", + "type": "small_airport", + "name": "Woods Road North Landing Strip", + "latitude_deg": "33.134869", + "longitude_deg": "-112.656658", + "elevation_ft": "837", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Buckeye", + "scheduled_service": "no" + }, + { + "id": "337240", + "ident": "US-1996", + "type": "closed", + "name": "Selma Landing Field", + "latitude_deg": "36.56505", + "longitude_deg": "-119.56834", + "elevation_ft": "322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Selma", + "scheduled_service": "no" + }, + { + "id": "337241", + "ident": "US-1997", + "type": "closed", + "name": "Paiva Intercity Landing Field", + "latitude_deg": "36.59897", + "longitude_deg": "-119.56047", + "elevation_ft": "335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Parlier", + "scheduled_service": "no" + }, + { + "id": "337242", + "ident": "US-1998", + "type": "closed", + "name": "Vernon Airstrip", + "latitude_deg": "40.10261", + "longitude_deg": "-112.42855", + "elevation_ft": "5507", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Vernon", + "scheduled_service": "no" + }, + { + "id": "337243", + "ident": "US-1999", + "type": "small_airport", + "name": "Bonner Aerial Applicators Airport", + "latitude_deg": "30.47646", + "longitude_deg": "-87.69608", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Summerdale", + "scheduled_service": "no", + "keywords": "Summerdale" + }, + { + "id": "337244", + "ident": "US-2000", + "type": "small_airport", + "name": "Marlow Landing Strip", + "latitude_deg": "30.46185", + "longitude_deg": "-87.79622", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Summerdale", + "scheduled_service": "no" + }, + { + "id": "337247", + "ident": "US-2001", + "type": "heliport", + "name": "Keystone XL Colome Heliport", + "latitude_deg": "43.265", + "longitude_deg": "-99.710278", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Colome", + "scheduled_service": "no", + "gps_code": "SD08", + "local_code": "SD08" + }, + { + "id": "337249", + "ident": "US-2002", + "type": "heliport", + "name": "Divine Savior Healthcare Inc Heliport", + "latitude_deg": "43.567352", + "longitude_deg": "-89.4655", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Portage", + "scheduled_service": "no", + "gps_code": "WI02", + "local_code": "WI02" + }, + { + "id": "337250", + "ident": "US-2003", + "type": "heliport", + "name": "Medical City Alliance Heliport", + "latitude_deg": "32.900331", + "longitude_deg": "-97.312834", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "XA65", + "local_code": "XA65" + }, + { + "id": "337252", + "ident": "US-2004", + "type": "seaplane_base", + "name": "Kenney Reservoir Seaplane Base", + "latitude_deg": "40.115319", + "longitude_deg": "-108.708119", + "elevation_ft": "5329", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Rangley", + "scheduled_service": "no", + "local_code": "13R" + }, + { + "id": "337308", + "ident": "US-2005", + "type": "closed", + "name": "Kekaha Airstrip", + "latitude_deg": "21.976758", + "longitude_deg": "-159.744312", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kekaha", + "scheduled_service": "no" + }, + { + "id": "337369", + "ident": "US-2006", + "type": "closed", + "name": "La Barge Landing Area", + "latitude_deg": "42.274514", + "longitude_deg": "-110.20051", + "elevation_ft": "6634", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "La Barge", + "scheduled_service": "no" + }, + { + "id": "337370", + "ident": "US-2007", + "type": "closed", + "name": "Stevens Flat Landing Strip", + "latitude_deg": "41.7025", + "longitude_deg": "-109.6801", + "elevation_ft": "6211", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Green River", + "scheduled_service": "no" + }, + { + "id": "337371", + "ident": "US-2008", + "type": "closed", + "name": "Igo Airfield", + "latitude_deg": "41.53836", + "longitude_deg": "-109.59265", + "elevation_ft": "6562", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Green River", + "scheduled_service": "no" + }, + { + "id": "337496", + "ident": "US-2009", + "type": "small_airport", + "name": "Mills Flying M Ranch Airport", + "latitude_deg": "35.0563", + "longitude_deg": "-95.8213", + "elevation_ft": "769", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "McAlester", + "scheduled_service": "no", + "keywords": "mills flying m ranch, sanders flying s ranch" + }, + { + "id": "337497", + "ident": "US-2010", + "type": "closed", + "name": "Kendall Gliderport", + "latitude_deg": "25.60369", + "longitude_deg": "-80.58518", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no" + }, + { + "id": "337498", + "ident": "US-2011", + "type": "small_airport", + "name": "South Fork Ranch Airport", + "latitude_deg": "29.96364", + "longitude_deg": "-99.48025", + "elevation_ft": "2182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hunt", + "scheduled_service": "no" + }, + { + "id": "337499", + "ident": "US-2012", + "type": "small_airport", + "name": "Whitworth Ranch Airport", + "latitude_deg": "29.95995", + "longitude_deg": "-99.46752", + "elevation_ft": "2060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hunt", + "scheduled_service": "no" + }, + { + "id": "337500", + "ident": "US-2013", + "type": "closed", + "name": "Hunt Landing Strip", + "latitude_deg": "30.05101", + "longitude_deg": "-99.34586", + "elevation_ft": "1798", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hunt", + "scheduled_service": "no" + }, + { + "id": "337501", + "ident": "US-2014", + "type": "heliport", + "name": "Laguna Vista Heliport", + "latitude_deg": "26.11271", + "longitude_deg": "-97.30817", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laguna Vista", + "scheduled_service": "no" + }, + { + "id": "337502", + "ident": "US-2015", + "type": "heliport", + "name": "Rio Grande Regional Hospital Helipad", + "latitude_deg": "26.18706", + "longitude_deg": "-98.22021", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "McAllen", + "scheduled_service": "no" + }, + { + "id": "337503", + "ident": "US-2016", + "type": "heliport", + "name": "South Texas Health System McAllen Helipad", + "latitude_deg": "26.18731", + "longitude_deg": "-98.22495", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "McAllen", + "scheduled_service": "no" + }, + { + "id": "337504", + "ident": "US-2017", + "type": "small_airport", + "name": "Eureka Ranch Airport", + "latitude_deg": "35.82534", + "longitude_deg": "-104.53477", + "elevation_ft": "5726", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Wagon Mound", + "scheduled_service": "no" + }, + { + "id": "337506", + "ident": "US-2018", + "type": "small_airport", + "name": "Putnams Airfield", + "latitude_deg": "45.06203", + "longitude_deg": "-120.18409", + "elevation_ft": "3153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Mount Vernon", + "scheduled_service": "no" + }, + { + "id": "337507", + "ident": "US-2019", + "type": "closed", + "name": "Coeburn Airport", + "latitude_deg": "36.93545", + "longitude_deg": "-82.50054", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Coeburn", + "scheduled_service": "no" + }, + { + "id": "337508", + "ident": "US-2020", + "type": "closed", + "name": "Powell Valley Airport", + "latitude_deg": "36.8563", + "longitude_deg": "-82.71682", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Big Stone Gap", + "scheduled_service": "no" + }, + { + "id": "337509", + "ident": "US-2021", + "type": "closed", + "name": "Huff Airport", + "latitude_deg": "36.77282", + "longitude_deg": "-81.72121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Monroe", + "scheduled_service": "no" + }, + { + "id": "337510", + "ident": "US-2022", + "type": "small_airport", + "name": "Catron Field", + "latitude_deg": "36.75755", + "longitude_deg": "-81.64486", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Chilhowie", + "scheduled_service": "no" + }, + { + "id": "337513", + "ident": "US-2023", + "type": "closed", + "name": "Parris Island Landing Field / Page Field Marine Corps Outer Landing Field", + "latitude_deg": "32.32097", + "longitude_deg": "-80.68001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Parris Island", + "scheduled_service": "no" + }, + { + "id": "337514", + "ident": "US-2024", + "type": "small_airport", + "name": "Broken Bottles Airstrip", + "latitude_deg": "39.02276", + "longitude_deg": "-119.65931", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Minden", + "scheduled_service": "no" + }, + { + "id": "337515", + "ident": "US-2025", + "type": "closed", + "name": "Condor Field", + "latitude_deg": "34.21353", + "longitude_deg": "-116.05345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Twentynine Palms", + "scheduled_service": "no" + }, + { + "id": "337555", + "ident": "US-2026", + "type": "closed", + "name": "Smithville Airport", + "latitude_deg": "31.901497", + "longitude_deg": "-84.310018", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Smithville", + "scheduled_service": "no" + }, + { + "id": "337556", + "ident": "US-2027", + "type": "closed", + "name": "Brooks Place Airport", + "latitude_deg": "29.912674", + "longitude_deg": "-97.633577", + "elevation_ft": "491", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lockhart", + "scheduled_service": "no" + }, + { + "id": "337557", + "ident": "US-2028", + "type": "closed", + "name": "Idle Hour Airport", + "latitude_deg": "30.57686", + "longitude_deg": "-88.25956", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Theodore", + "scheduled_service": "no" + }, + { + "id": "337558", + "ident": "US-2029", + "type": "closed", + "name": "Brewton Municipal Airport (1935)", + "latitude_deg": "31.147939", + "longitude_deg": "-87.070324", + "elevation_ft": "189", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Brewton", + "scheduled_service": "no" + }, + { + "id": "337559", + "ident": "US-2030", + "type": "closed", + "name": "Atmore Intermediate Field", + "latitude_deg": "31.07663", + "longitude_deg": "-87.57506", + "elevation_ft": "299", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Atmore", + "scheduled_service": "no" + }, + { + "id": "337560", + "ident": "US-2031", + "type": "closed", + "name": "Wilson Field", + "latitude_deg": "30.421418", + "longitude_deg": "-87.679206", + "elevation_ft": "86", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Foley", + "scheduled_service": "no" + }, + { + "id": "337561", + "ident": "US-2032", + "type": "closed", + "name": "Faircloth Naval Outlying Landing Field", + "latitude_deg": "30.446278", + "longitude_deg": "-87.46674", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Elberta", + "scheduled_service": "no" + }, + { + "id": "337563", + "ident": "US-2033", + "type": "closed", + "name": "Magnolia Naval Outer Landing Field", + "latitude_deg": "30.4487", + "longitude_deg": "-87.7683", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Marlow", + "scheduled_service": "no" + }, + { + "id": "337564", + "ident": "US-2034", + "type": "closed", + "name": "Lee Brothers Airfield", + "latitude_deg": "33.61894", + "longitude_deg": "-85.792734", + "elevation_ft": "662", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Anniston", + "scheduled_service": "no" + }, + { + "id": "337568", + "ident": "US-2035", + "type": "closed", + "name": "Larue Field", + "latitude_deg": "30.466856", + "longitude_deg": "-87.68343", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Summerdale", + "scheduled_service": "no", + "keywords": "9J1" + }, + { + "id": "337584", + "ident": "US-2036", + "type": "small_airport", + "name": "Auer Field", + "latitude_deg": "40.360983", + "longitude_deg": "-76.74389", + "elevation_ft": "536", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Linglestown", + "scheduled_service": "no", + "gps_code": "1PA6", + "local_code": "1PA6" + }, + { + "id": "337587", + "ident": "US-2037", + "type": "small_airport", + "name": "Herbs Field", + "latitude_deg": "38.912086", + "longitude_deg": "-84.905197", + "elevation_ft": "802", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Rising Sun", + "scheduled_service": "no", + "gps_code": "31II", + "local_code": "31II" + }, + { + "id": "337588", + "ident": "US-2038", + "type": "heliport", + "name": "Lake Willis Heliport", + "latitude_deg": "28.394345", + "longitude_deg": "-81.476321", + "elevation_ft": "108", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "gps_code": "92FL", + "local_code": "92FL" + }, + { + "id": "337594", + "ident": "US-2039", + "type": "small_airport", + "name": "Iwan Airfield", + "latitude_deg": "42.963776", + "longitude_deg": "-74.12556", + "elevation_ft": "773", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Amsterdam", + "scheduled_service": "no", + "gps_code": "7NY8", + "local_code": "7NY8" + }, + { + "id": "337633", + "ident": "US-2040", + "type": "heliport", + "name": "Airport Courthouse Helistop", + "latitude_deg": "33.928321", + "longitude_deg": "-118.371354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles33.92843, -118.37135", + "scheduled_service": "no" + }, + { + "id": "337634", + "ident": "US-2041", + "type": "closed", + "name": "Murrieta Hot Springs Airport (1962)", + "latitude_deg": "33.560365", + "longitude_deg": "-117.193926", + "elevation_ft": "1152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Murrieta", + "scheduled_service": "no", + "keywords": "Sky Park Landing Field" + }, + { + "id": "337635", + "ident": "US-2042", + "type": "closed", + "name": "Naval Outlying Landing Field Sand Hill", + "latitude_deg": "32.832747", + "longitude_deg": "-115.151615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Holtville", + "scheduled_service": "no" + }, + { + "id": "337636", + "ident": "US-2043", + "type": "closed", + "name": "Airport Lake Auxiliary Airfield", + "latitude_deg": "35.90233", + "longitude_deg": "-117.72971", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ridgecrest", + "scheduled_service": "no" + }, + { + "id": "337637", + "ident": "US-2044", + "type": "heliport", + "name": "Aero Long Beach 7 Helipad", + "latitude_deg": "33.807906", + "longitude_deg": "-118.144564", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "337638", + "ident": "US-2045", + "type": "heliport", + "name": "Aero Long Beach 4 Helipad", + "latitude_deg": "33.807424", + "longitude_deg": "-118.145786", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "337639", + "ident": "US-2046", + "type": "heliport", + "name": "Aero Long Beach 3 Helipad", + "latitude_deg": "33.80825", + "longitude_deg": "-118.14637", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "337641", + "ident": "US-2047", + "type": "closed", + "name": "Keller Landing Strip", + "latitude_deg": "48.12069", + "longitude_deg": "-118.69382", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Keller", + "scheduled_service": "no" + }, + { + "id": "337644", + "ident": "US-2048", + "type": "small_airport", + "name": "Palo Verde Ranch Airport", + "latitude_deg": "32.61263", + "longitude_deg": "-111.04575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "337645", + "ident": "US-2049", + "type": "closed", + "name": "Boundary Lake Landing Strip", + "latitude_deg": "43.57465", + "longitude_deg": "-119.90842", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Riley", + "scheduled_service": "no" + }, + { + "id": "337646", + "ident": "US-2050", + "type": "small_airport", + "name": "Hampton Airstrip", + "latitude_deg": "43.67738", + "longitude_deg": "-120.23833", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Hampton", + "scheduled_service": "no" + }, + { + "id": "337647", + "ident": "US-2051", + "type": "closed", + "name": "Brothers Landing Strip", + "latitude_deg": "43.81858", + "longitude_deg": "-120.6055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Brothers", + "scheduled_service": "no" + }, + { + "id": "337648", + "ident": "US-2052", + "type": "heliport", + "name": "Parkway Surgical Hospital Heliport", + "latitude_deg": "32.89611", + "longitude_deg": "-97.31321", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "local_code": "5TX9", + "keywords": "Wise Health" + }, + { + "id": "337650", + "ident": "US-2053", + "type": "closed", + "name": "Aloe Army Airfield", + "latitude_deg": "28.78004", + "longitude_deg": "-97.09851", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Victoria", + "scheduled_service": "no" + }, + { + "id": "337660", + "ident": "US-2054", + "type": "closed", + "name": "Hays City Airport", + "latitude_deg": "30.04735", + "longitude_deg": "-97.98354", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kyle", + "scheduled_service": "no" + }, + { + "id": "337661", + "ident": "US-2055", + "type": "heliport", + "name": "North Blanco EMS Heliport", + "latitude_deg": "30.272961", + "longitude_deg": "-98.398016", + "elevation_ft": "1173", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Johnson City", + "scheduled_service": "no" + }, + { + "id": "337662", + "ident": "US-2056", + "type": "closed", + "name": "Winters Airport", + "latitude_deg": "30.270951", + "longitude_deg": "-98.397391", + "elevation_ft": "1187", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Johnson City", + "scheduled_service": "no" + }, + { + "id": "337663", + "ident": "US-2057", + "type": "small_airport", + "name": "Hauptrief Aero Airport", + "latitude_deg": "30.400427", + "longitude_deg": "-98.580434", + "elevation_ft": "1753", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Johnson City", + "scheduled_service": "no", + "gps_code": "15XA", + "local_code": "15XA" + }, + { + "id": "337664", + "ident": "US-2058", + "type": "closed", + "name": "Circle Bar Landing Strip", + "latitude_deg": "30.702423", + "longitude_deg": "-101.093923", + "elevation_ft": "2480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no" + }, + { + "id": "337665", + "ident": "US-2059", + "type": "closed", + "name": "Winfield Army Airfield", + "latitude_deg": "30.88766", + "longitude_deg": "-102.82946", + "elevation_ft": "2966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no" + }, + { + "id": "337666", + "ident": "US-2060", + "type": "closed", + "name": "Ho'olulu Park Landing Field", + "latitude_deg": "19.71873", + "longitude_deg": "-155.06912", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Hilo", + "scheduled_service": "no" + }, + { + "id": "337667", + "ident": "US-2061", + "type": "closed", + "name": "Kualoa Army Airfield", + "latitude_deg": "21.51919", + "longitude_deg": "-157.83686", + "elevation_ft": "3", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kaneohe", + "scheduled_service": "no" + }, + { + "id": "337670", + "ident": "US-2062", + "type": "heliport", + "name": "Texas Health Harris Methodist Hospital Alliance Helipad", + "latitude_deg": "32.93013", + "longitude_deg": "-97.30894", + "elevation_ft": "781", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no" + }, + { + "id": "337672", + "ident": "US-2063", + "type": "heliport", + "name": "Tucson Police Department Helipad", + "latitude_deg": "32.217307", + "longitude_deg": "-110.971713", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "337673", + "ident": "US-2064", + "type": "closed", + "name": "Tucson Airpark", + "latitude_deg": "32.25398", + "longitude_deg": "-111.00489", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "337674", + "ident": "US-2065", + "type": "closed", + "name": "Lone Butte Landing Strip", + "latitude_deg": "33.28971", + "longitude_deg": "-111.94063", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Chandler", + "scheduled_service": "no" + }, + { + "id": "337675", + "ident": "US-2066", + "type": "closed", + "name": "Tango Ranch Airport", + "latitude_deg": "48.347593", + "longitude_deg": "-117.887824", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Addy", + "scheduled_service": "no" + }, + { + "id": "337677", + "ident": "US-2067", + "type": "closed", + "name": "El Paso Municipal Airport", + "latitude_deg": "31.82887", + "longitude_deg": "-106.43083", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Paso", + "scheduled_service": "no" + }, + { + "id": "337682", + "ident": "US-2068", + "type": "heliport", + "name": "Greene County Hospital Helipad", + "latitude_deg": "31.15455", + "longitude_deg": "-88.56179", + "elevation_ft": "117", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Leakesville", + "scheduled_service": "no" + }, + { + "id": "337685", + "ident": "US-2069", + "type": "small_airport", + "name": "Seth's Freedom Field", + "latitude_deg": "40.176299", + "longitude_deg": "-122.334682", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Red Bluff", + "scheduled_service": "no" + }, + { + "id": "337686", + "ident": "US-2070", + "type": "heliport", + "name": "717 Olympic Helipad", + "latitude_deg": "34.045085", + "longitude_deg": "-118.263319", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "337689", + "ident": "US-2071", + "type": "heliport", + "name": "Washington County Hospital Helipad", + "latitude_deg": "31.45925", + "longitude_deg": "-88.23477", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Chatom", + "scheduled_service": "no" + }, + { + "id": "337692", + "ident": "US-2072", + "type": "closed", + "name": "Fort Washakie Airport", + "latitude_deg": "43.02628", + "longitude_deg": "-108.90144", + "elevation_ft": "5833", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Fort Washakie", + "scheduled_service": "no" + }, + { + "id": "337693", + "ident": "US-2073", + "type": "closed", + "name": "Consuelo Hill Landing Strip", + "latitude_deg": "28.87094", + "longitude_deg": "-100.40943", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eagle Pass", + "scheduled_service": "no" + }, + { + "id": "337694", + "ident": "US-2074", + "type": "closed", + "name": "Cranfell Airfield", + "latitude_deg": "33.5311", + "longitude_deg": "-94.29073", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hooks", + "scheduled_service": "no" + }, + { + "id": "337695", + "ident": "US-2075", + "type": "small_airport", + "name": "Moser Ranch Airfield", + "latitude_deg": "33.61749", + "longitude_deg": "-94.50081", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "De Kalb", + "scheduled_service": "no" + }, + { + "id": "337697", + "ident": "US-2076", + "type": "closed", + "name": "Glenn Ranch Airstrip", + "latitude_deg": "33.46736", + "longitude_deg": "-103.96825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Roswell", + "scheduled_service": "no" + }, + { + "id": "337699", + "ident": "US-2077", + "type": "small_airport", + "name": "RT-2 Landing Strip", + "latitude_deg": "31.37066", + "longitude_deg": "-85.78028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker", + "scheduled_service": "no" + }, + { + "id": "337700", + "ident": "US-2078", + "type": "heliport", + "name": "Shamrock Heliport", + "latitude_deg": "35.94119", + "longitude_deg": "-113.90737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Meadview", + "scheduled_service": "no" + }, + { + "id": "337703", + "ident": "US-2079", + "type": "heliport", + "name": "Harlingen Medical Center Helipad", + "latitude_deg": "26.157778", + "longitude_deg": "-97.674443", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Harlingen", + "scheduled_service": "no" + }, + { + "id": "337705", + "ident": "US-2080", + "type": "closed", + "name": "Kipapa Field", + "latitude_deg": "21.44348", + "longitude_deg": "-158.02668", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Mililani", + "scheduled_service": "no" + }, + { + "id": "337706", + "ident": "US-2081", + "type": "closed", + "name": "Donovan Hughes Airport", + "latitude_deg": "40.57265", + "longitude_deg": "-74.17298", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Staten Island", + "scheduled_service": "no" + }, + { + "id": "337719", + "ident": "US-2082", + "type": "closed", + "name": "Marsh Creek Landing Strip", + "latitude_deg": "44.34838", + "longitude_deg": "-115.1044", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Stanley", + "scheduled_service": "no" + }, + { + "id": "337729", + "ident": "US-2083", + "type": "closed", + "name": "Hays Reservoir Landing Strip", + "latitude_deg": "42.06446", + "longitude_deg": "-108.38621", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Wamsutter", + "scheduled_service": "no" + }, + { + "id": "337730", + "ident": "US-2084", + "type": "closed", + "name": "Wamsutter Airport", + "latitude_deg": "41.68518", + "longitude_deg": "-107.98902", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Wamsutter", + "scheduled_service": "no" + }, + { + "id": "337732", + "ident": "US-2085", + "type": "closed", + "name": "Spring Valley Ranch Landing Strip", + "latitude_deg": "35.93211", + "longitude_deg": "-91.82947", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Batesville", + "scheduled_service": "no" + }, + { + "id": "337733", + "ident": "US-2086", + "type": "small_airport", + "name": "Trinity Field Airport", + "latitude_deg": "31.061066", + "longitude_deg": "-95.751494", + "elevation_ft": "212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Midway", + "scheduled_service": "no", + "gps_code": "TA82", + "local_code": "TA82" + }, + { + "id": "337734", + "ident": "US-2087", + "type": "closed", + "name": "Batesville West Landing Strip", + "latitude_deg": "28.95395", + "longitude_deg": "-99.63125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Batesville", + "scheduled_service": "no" + }, + { + "id": "337735", + "ident": "US-2088", + "type": "closed", + "name": "Batesville North Landing Strip", + "latitude_deg": "28.964538", + "longitude_deg": "-99.625075", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Batesville", + "scheduled_service": "no" + }, + { + "id": "337736", + "ident": "US-2089", + "type": "closed", + "name": "St Cloud Airport", + "latitude_deg": "28.23429", + "longitude_deg": "-81.28338", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St Cloud", + "scheduled_service": "no" + }, + { + "id": "337738", + "ident": "US-2090", + "type": "closed", + "name": "Lost Mountain Wilderness Retreat Airport", + "latitude_deg": "35.92783", + "longitude_deg": "-92.96186", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "St Joe", + "scheduled_service": "no" + }, + { + "id": "337739", + "ident": "US-2091", + "type": "closed", + "name": "Marshall Airport", + "latitude_deg": "34.04696", + "longitude_deg": "-96.08495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Bennington", + "scheduled_service": "no" + }, + { + "id": "337749", + "ident": "US-2092", + "type": "small_airport", + "name": "Superior Aero Estates Airport", + "latitude_deg": "46.93323", + "longitude_deg": "-92.31271", + "elevation_ft": "1384", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Saginaw", + "scheduled_service": "no", + "local_code": "43MN" + }, + { + "id": "337750", + "ident": "US-2093", + "type": "closed", + "name": "Fay Ranch Airport", + "latitude_deg": "28.93764", + "longitude_deg": "-95.74884", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bay City", + "scheduled_service": "no" + }, + { + "id": "337753", + "ident": "US-2094", + "type": "closed", + "name": "Bay City Airport", + "latitude_deg": "28.9776", + "longitude_deg": "-95.9408", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bay City", + "scheduled_service": "no" + }, + { + "id": "337754", + "ident": "US-2095", + "type": "closed", + "name": "Mangum Landing Field", + "latitude_deg": "28.976046", + "longitude_deg": "-95.91661", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bay City", + "scheduled_service": "no" + }, + { + "id": "337755", + "ident": "US-2096", + "type": "closed", + "name": "Port Aransas Airport (1950)", + "latitude_deg": "27.82815", + "longitude_deg": "-97.07424", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port Aransas", + "scheduled_service": "no" + }, + { + "id": "337756", + "ident": "US-2097", + "type": "closed", + "name": "Killam & Hurd Airport", + "latitude_deg": "27.61656", + "longitude_deg": "-99.51985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laredo", + "scheduled_service": "no" + }, + { + "id": "337780", + "ident": "US-2098", + "type": "heliport", + "name": "The Met Helipad", + "latitude_deg": "34.044828", + "longitude_deg": "-118.261998", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "337781", + "ident": "US-2099", + "type": "closed", + "name": "Culver City (Baker) Airport", + "latitude_deg": "33.98883", + "longitude_deg": "-118.39902", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Culver City", + "scheduled_service": "no" + }, + { + "id": "8803", + "ident": "US-20NJ", + "type": "heliport", + "name": "Enzon South Plainfield Heliport", + "latitude_deg": "40.5547981262", + "longitude_deg": "-74.4198989868", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "South Plainfield", + "scheduled_service": "no", + "local_code": "20NJ" + }, + { + "id": "337788", + "ident": "US-2100", + "type": "closed", + "name": "Mesa Air Park", + "latitude_deg": "33.41963", + "longitude_deg": "-111.86099", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no" + }, + { + "id": "337789", + "ident": "US-2101", + "type": "closed", + "name": "Los Angeles Motordrome", + "latitude_deg": "33.96569", + "longitude_deg": "-118.44444", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "337791", + "ident": "US-2102", + "type": "heliport", + "name": "Airport Towers Number 2 Heliport", + "latitude_deg": "33.917749", + "longitude_deg": "-118.395247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "El Segundo", + "scheduled_service": "no" + }, + { + "id": "337792", + "ident": "US-2103", + "type": "heliport", + "name": "Pacific Corporate Towers Heliport", + "latitude_deg": "33.919022", + "longitude_deg": "-118.395277", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "El Segundo", + "scheduled_service": "no" + }, + { + "id": "337795", + "ident": "US-2104", + "type": "closed", + "name": "Silver Lake Landing Strip", + "latitude_deg": "35.33014", + "longitude_deg": "-116.09198", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Baker", + "scheduled_service": "no" + }, + { + "id": "337796", + "ident": "US-2105", + "type": "small_airport", + "name": "Red Pass Ranch Airstrip", + "latitude_deg": "35.29002", + "longitude_deg": "-116.35214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fort Irwin", + "scheduled_service": "no" + }, + { + "id": "337797", + "ident": "US-2106", + "type": "heliport", + "name": "Platform Esther Heliport", + "latitude_deg": "33.71881", + "longitude_deg": "-118.11393", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Seal Beach", + "scheduled_service": "no" + }, + { + "id": "337798", + "ident": "US-2107", + "type": "heliport", + "name": "Platform Edith Heliport", + "latitude_deg": "33.59596", + "longitude_deg": "-118.14146", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Huntington Beach", + "scheduled_service": "no" + }, + { + "id": "337851", + "ident": "US-2108", + "type": "small_airport", + "name": "Bartlett Airstrip", + "latitude_deg": "36.478642", + "longitude_deg": "-118.033521", + "elevation_ft": "3721", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lone Pine", + "scheduled_service": "no" + }, + { + "id": "337852", + "ident": "US-2109", + "type": "small_airport", + "name": "Sage Flat Landing Strip", + "latitude_deg": "36.20935", + "longitude_deg": "-117.9757", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Olancha", + "scheduled_service": "no" + }, + { + "id": "337853", + "ident": "US-2110", + "type": "small_airport", + "name": "Dunmovin Landing Strip", + "latitude_deg": "36.08544", + "longitude_deg": "-117.95619", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Olancha", + "scheduled_service": "no" + }, + { + "id": "337854", + "ident": "US-2111", + "type": "small_airport", + "name": "Dunmovin Fallow Alfalfa Landing Field", + "latitude_deg": "36.07889", + "longitude_deg": "-117.95195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Olancha", + "scheduled_service": "no" + }, + { + "id": "337855", + "ident": "US-2112", + "type": "small_airport", + "name": "Dunmovin East Landing Strip", + "latitude_deg": "36.07917", + "longitude_deg": "-117.94621", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Olancha", + "scheduled_service": "no" + }, + { + "id": "337856", + "ident": "US-2113", + "type": "small_airport", + "name": "Gills Airstrip", + "latitude_deg": "36.06107", + "longitude_deg": "-117.95407", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Coso Junction", + "scheduled_service": "no" + }, + { + "id": "337857", + "ident": "US-2114", + "type": "small_airport", + "name": "Coso Dry Lake Airstrip", + "latitude_deg": "36.04032", + "longitude_deg": "-117.93444", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Coso Junction", + "scheduled_service": "no" + }, + { + "id": "337858", + "ident": "US-2115", + "type": "small_airport", + "name": "Little Lake Landing Strip", + "latitude_deg": "35.95066", + "longitude_deg": "-117.90671", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Little Lake", + "scheduled_service": "no" + }, + { + "id": "337859", + "ident": "US-2116", + "type": "small_airport", + "name": "Kennedy Meadows South Landing Strip", + "latitude_deg": "35.99393", + "longitude_deg": "-118.13463", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Inyokern", + "scheduled_service": "no" + }, + { + "id": "337860", + "ident": "US-2117", + "type": "small_airport", + "name": "Brown Landing Strip", + "latitude_deg": "35.78363", + "longitude_deg": "-117.84815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Inyokern", + "scheduled_service": "no" + }, + { + "id": "337861", + "ident": "US-2118", + "type": "closed", + "name": "Randsburg Wash Road Heliport", + "latitude_deg": "35.5223", + "longitude_deg": "-117.30581", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Randsburg", + "scheduled_service": "no" + }, + { + "id": "337862", + "ident": "US-2119", + "type": "small_airport", + "name": "Minnietta Mine Airport", + "latitude_deg": "36.24496", + "longitude_deg": "-117.4145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Darwin", + "scheduled_service": "no" + }, + { + "id": "337863", + "ident": "US-2120", + "type": "small_airport", + "name": "Ballarat Road Landing Strip", + "latitude_deg": "36.04214", + "longitude_deg": "-117.23249", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ballarat", + "scheduled_service": "no" + }, + { + "id": "337864", + "ident": "US-2121", + "type": "small_airport", + "name": "Indian Ranch Road Landing Strip", + "latitude_deg": "36.05102", + "longitude_deg": "-117.22583", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ballarat", + "scheduled_service": "no" + }, + { + "id": "337865", + "ident": "US-2122", + "type": "small_airport", + "name": "Trona Pinnacles Landing Strip", + "latitude_deg": "35.62386", + "longitude_deg": "-117.37446", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Trona", + "scheduled_service": "no" + }, + { + "id": "337866", + "ident": "US-2123", + "type": "small_airport", + "name": "Rankin Ranch Landing Strip", + "latitude_deg": "34.23413", + "longitude_deg": "-113.74702", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Parker", + "scheduled_service": "no" + }, + { + "id": "337867", + "ident": "US-2124", + "type": "small_airport", + "name": "Bar T Bar Ranch / Chilson Landing Strip", + "latitude_deg": "35.028557", + "longitude_deg": "-110.985165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Winslow", + "scheduled_service": "no" + }, + { + "id": "337885", + "ident": "US-2125", + "type": "closed", + "name": "Dublin Landing Strip", + "latitude_deg": "44.18425", + "longitude_deg": "-85.96103", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Dublin", + "scheduled_service": "no" + }, + { + "id": "337886", + "ident": "US-2126", + "type": "closed", + "name": "Schenkel Field", + "latitude_deg": "43.709739", + "longitude_deg": "-82.712154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ruth", + "scheduled_service": "no" + }, + { + "id": "337887", + "ident": "US-2127", + "type": "closed", + "name": "Schenkel Field", + "latitude_deg": "43.709739", + "longitude_deg": "-82.712154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ruth", + "scheduled_service": "no" + }, + { + "id": "337888", + "ident": "US-2128", + "type": "closed", + "name": "Dudley Airport", + "latitude_deg": "43.98613", + "longitude_deg": "-83.91645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Standish", + "scheduled_service": "no" + }, + { + "id": "337889", + "ident": "US-2129", + "type": "heliport", + "name": "600 West 9th Street Helipad", + "latitude_deg": "34.045108", + "longitude_deg": "-118.260891", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "337890", + "ident": "US-2130", + "type": "heliport", + "name": "Bullocks Building Helipad", + "latitude_deg": "34.046036", + "longitude_deg": "-118.259014", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "337891", + "ident": "US-2131", + "type": "heliport", + "name": "8th+Hope Helipad", + "latitude_deg": "34.046397", + "longitude_deg": "-118.259556", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "337892", + "ident": "US-2132", + "type": "heliport", + "name": "Sky Lofts Helipad", + "latitude_deg": "34.045655", + "longitude_deg": "-118.258579", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "337893", + "ident": "US-2133", + "type": "closed", + "name": "Au Gres Airport", + "latitude_deg": "44.05325", + "longitude_deg": "-83.69983", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Au Gres", + "scheduled_service": "no" + }, + { + "id": "337894", + "ident": "US-2134", + "type": "closed", + "name": "North Manitou Island Landing Strip", + "latitude_deg": "45.12515", + "longitude_deg": "-85.98038", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Leland", + "scheduled_service": "no" + }, + { + "id": "337896", + "ident": "US-2135", + "type": "small_airport", + "name": "Currie Airport", + "latitude_deg": "40.2832", + "longitude_deg": "-114.76452", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Wells", + "scheduled_service": "no" + }, + { + "id": "337897", + "ident": "US-2136", + "type": "small_airport", + "name": "Lages Station Landing Strip", + "latitude_deg": "40.10015", + "longitude_deg": "-114.56329", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Ely", + "scheduled_service": "no" + }, + { + "id": "337898", + "ident": "US-2137", + "type": "small_airport", + "name": "Trout Creek Airstrip", + "latitude_deg": "39.69446", + "longitude_deg": "-113.82192", + "elevation_ft": "4690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Wendover", + "scheduled_service": "no" + }, + { + "id": "337899", + "ident": "US-2138", + "type": "small_airport", + "name": "Cherry Creek Landing Strip", + "latitude_deg": "39.8698", + "longitude_deg": "-114.87372", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Ely", + "scheduled_service": "no" + }, + { + "id": "337902", + "ident": "US-2139", + "type": "small_airport", + "name": "Campbell Ranch Landing Strip", + "latitude_deg": "39.55528", + "longitude_deg": "-114.90672", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Ely", + "scheduled_service": "no" + }, + { + "id": "337903", + "ident": "US-2140", + "type": "closed", + "name": "Pioche Airport", + "latitude_deg": "38.00329", + "longitude_deg": "-114.51249", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Pioche", + "scheduled_service": "no" + }, + { + "id": "337904", + "ident": "US-2141", + "type": "small_airport", + "name": "Mount Wilson Guest Ranch Airport", + "latitude_deg": "38.25321", + "longitude_deg": "-114.46704", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Pioche", + "scheduled_service": "no" + }, + { + "id": "337905", + "ident": "US-2142", + "type": "closed", + "name": "Lake Valley Landing Strip", + "latitude_deg": "38.3638", + "longitude_deg": "-114.5524", + "elevation_ft": "5968", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Pioche", + "scheduled_service": "no" + }, + { + "id": "337907", + "ident": "US-2143", + "type": "closed", + "name": "Minerva Landing Strip", + "latitude_deg": "38.90173", + "longitude_deg": "-114.39038", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Baker", + "scheduled_service": "no" + }, + { + "id": "337908", + "ident": "US-2144", + "type": "closed", + "name": "Baker Landing Strip", + "latitude_deg": "38.9937", + "longitude_deg": "-114.1221", + "elevation_ft": "5390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Baker", + "scheduled_service": "no" + }, + { + "id": "337914", + "ident": "US-2145", + "type": "closed", + "name": "Gabbs Landing Strip", + "latitude_deg": "38.83832", + "longitude_deg": "-117.94615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Gabbs", + "scheduled_service": "no" + }, + { + "id": "337915", + "ident": "US-2146", + "type": "closed", + "name": "Macks Airport", + "latitude_deg": "33.39894", + "longitude_deg": "-93.9907", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Texarkana", + "scheduled_service": "no" + }, + { + "id": "337921", + "ident": "US-2147", + "type": "heliport", + "name": "Luamakika Helipad", + "latitude_deg": "20.56013", + "longitude_deg": "-156.57825", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kahoʻolawe", + "scheduled_service": "no", + "keywords": "Landing Zone 1A" + }, + { + "id": "337922", + "ident": "US-2148", + "type": "heliport", + "name": "Pu'ukahua Helipad", + "latitude_deg": "20.53844", + "longitude_deg": "-156.6341", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kahoʻolawe", + "scheduled_service": "no" + }, + { + "id": "337923", + "ident": "US-2149", + "type": "heliport", + "name": "Honokanai'a Helipad", + "latitude_deg": "20.51558", + "longitude_deg": "-156.68153", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kahoʻolawe", + "scheduled_service": "no" + }, + { + "id": "337929", + "ident": "US-2150", + "type": "closed", + "name": "McCormick Landing Strip", + "latitude_deg": "36.38825", + "longitude_deg": "-99.31114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Woodward", + "scheduled_service": "no" + }, + { + "id": "337931", + "ident": "US-2151", + "type": "closed", + "name": "Chewaucan Landing Strip", + "latitude_deg": "42.6132", + "longitude_deg": "-120.39301", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Lakeview", + "scheduled_service": "no" + }, + { + "id": "337932", + "ident": "US-2152", + "type": "closed", + "name": "ZX Ranch Landing trip", + "latitude_deg": "42.73323", + "longitude_deg": "-120.50125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Paisley", + "scheduled_service": "no" + }, + { + "id": "337933", + "ident": "US-2153", + "type": "closed", + "name": "Price Ranch Airport", + "latitude_deg": "36.56762", + "longitude_deg": "-103.48956", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Mount Dora", + "scheduled_service": "no" + }, + { + "id": "337934", + "ident": "US-2154", + "type": "closed", + "name": "Smith Airport", + "latitude_deg": "36.74154", + "longitude_deg": "-103.55264", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Des Moines", + "scheduled_service": "no" + }, + { + "id": "337935", + "ident": "US-2155", + "type": "closed", + "name": "Texline Landing Strip", + "latitude_deg": "36.38795", + "longitude_deg": "-103.01814", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Texline", + "scheduled_service": "no" + }, + { + "id": "337936", + "ident": "US-2156", + "type": "closed", + "name": "Amistad Land and Cattle Company Airport", + "latitude_deg": "35.903269", + "longitude_deg": "-103.102269", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Amistad", + "scheduled_service": "no" + }, + { + "id": "337937", + "ident": "US-2157", + "type": "closed", + "name": "Freeman Landing Strip", + "latitude_deg": "30.23083", + "longitude_deg": "-91.28435", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Plaquemine", + "scheduled_service": "no" + }, + { + "id": "337947", + "ident": "US-2158", + "type": "closed", + "name": "Earwood Ranch Airport", + "latitude_deg": "30.18353", + "longitude_deg": "-100.65541", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rocksprings", + "scheduled_service": "no" + }, + { + "id": "337957", + "ident": "US-2159", + "type": "closed", + "name": "U Lazy S Ranch Landing Strip", + "latitude_deg": "33.0331", + "longitude_deg": "-101.40492", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Post", + "scheduled_service": "no" + }, + { + "id": "337982", + "ident": "US-2160", + "type": "heliport", + "name": "Leming Heliport", + "latitude_deg": "29.068178", + "longitude_deg": "-98.490172", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Leming", + "scheduled_service": "no" + }, + { + "id": "337987", + "ident": "US-2161", + "type": "small_airport", + "name": "Wildlife/Stroud Airport", + "latitude_deg": "28.374943", + "longitude_deg": "-100.006131", + "elevation_ft": "853", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Catarina", + "scheduled_service": "no", + "gps_code": "TS80", + "local_code": "TS80", + "keywords": "La Bandera Ranch, Carrizo Springs" + }, + { + "id": "337988", + "ident": "US-2162", + "type": "closed", + "name": "Marley Ranch Airport", + "latitude_deg": "31.74032", + "longitude_deg": "-111.06507", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Amado", + "scheduled_service": "no" + }, + { + "id": "337989", + "ident": "US-2163", + "type": "closed", + "name": "Helvetia Mine Airport", + "latitude_deg": "31.90372", + "longitude_deg": "-110.78625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sahuarita", + "scheduled_service": "no" + }, + { + "id": "337990", + "ident": "US-2164", + "type": "closed", + "name": "Box Canyon Landing Strip", + "latitude_deg": "31.8039", + "longitude_deg": "-110.8309", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sahuarita", + "scheduled_service": "no" + }, + { + "id": "337991", + "ident": "US-2165", + "type": "closed", + "name": "Rio Rico Airstrip", + "latitude_deg": "31.4724", + "longitude_deg": "-111.00765", + "elevation_ft": "3445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Rio Rico", + "scheduled_service": "no" + }, + { + "id": "337992", + "ident": "US-2166", + "type": "closed", + "name": "Dinosaur Landing Strip", + "latitude_deg": "40.24098", + "longitude_deg": "-108.993645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Dinosaur", + "scheduled_service": "no" + }, + { + "id": "337993", + "ident": "US-2167", + "type": "closed", + "name": "Maybell Landing Strip", + "latitude_deg": "40.54614", + "longitude_deg": "-108.1105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Maybell", + "scheduled_service": "no" + }, + { + "id": "337994", + "ident": "US-2168", + "type": "heliport", + "name": "Riverside Community Hospital Helipad", + "latitude_deg": "33.97742", + "longitude_deg": "-117.38164", + "elevation_ft": "853", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Riverside", + "scheduled_service": "no", + "gps_code": "54CA", + "local_code": "54CA" + }, + { + "id": "338010", + "ident": "US-2169", + "type": "small_airport", + "name": "Floyd Ranch Airport", + "latitude_deg": "28.056653", + "longitude_deg": "-98.142042", + "elevation_ft": "282", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Orange Grove", + "scheduled_service": "no", + "gps_code": "TA56", + "local_code": "TA56" + }, + { + "id": "338011", + "ident": "US-2170", + "type": "heliport", + "name": "Transdec Helipad", + "latitude_deg": "32.7038", + "longitude_deg": "-117.25102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "338016", + "ident": "US-2171", + "type": "closed", + "name": "Lewis Airport", + "latitude_deg": "38.16825", + "longitude_deg": "-101.86758", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Syracuse", + "scheduled_service": "no" + }, + { + "id": "338017", + "ident": "US-2172", + "type": "closed", + "name": "Ashbaugh Airport", + "latitude_deg": "39.12973", + "longitude_deg": "-100.34458", + "elevation_ft": "2694", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Park", + "scheduled_service": "no" + }, + { + "id": "338018", + "ident": "US-2173", + "type": "closed", + "name": "Fairfax Municipal Airport", + "latitude_deg": "39.148056", + "longitude_deg": "-94.599722", + "elevation_ft": "741", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Kansas City", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fairfax_Municipal_Airport", + "keywords": "KCK, Fairfax Field, Sweeney Airport" + }, + { + "id": "338019", + "ident": "US-2174", + "type": "closed", + "name": "Pollyet Airport", + "latitude_deg": "37.97984", + "longitude_deg": "-101.15359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Lakin", + "scheduled_service": "no" + }, + { + "id": "338020", + "ident": "US-2175", + "type": "closed", + "name": "Galloway Airport", + "latitude_deg": "39.08334", + "longitude_deg": "-99.86706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "WaKeeney", + "scheduled_service": "no" + }, + { + "id": "338079", + "ident": "US-2176", + "type": "closed", + "name": "Red Hill Landing Strip", + "latitude_deg": "34.685142", + "longitude_deg": "-111.014265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Happy Jack", + "scheduled_service": "no" + }, + { + "id": "338080", + "ident": "US-2177", + "type": "closed", + "name": "Brown Landing Strip", + "latitude_deg": "34.69239", + "longitude_deg": "-111.05213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Happy Jack", + "scheduled_service": "no" + }, + { + "id": "338081", + "ident": "US-2178", + "type": "closed", + "name": "AZ Landing Strip", + "latitude_deg": "34.68821", + "longitude_deg": "-111.06145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Happy Jack", + "scheduled_service": "no" + }, + { + "id": "338085", + "ident": "US-2179", + "type": "small_airport", + "name": "Tyee Hydro Facility Airport", + "latitude_deg": "56.21867", + "longitude_deg": "-131.48493", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wrangell", + "scheduled_service": "no", + "keywords": "PAKE" + }, + { + "id": "338170", + "ident": "US-2180", + "type": "small_airport", + "name": "Guadalupe Intermediate Field", + "latitude_deg": "31.8561", + "longitude_deg": "-104.54412", + "elevation_ft": "3955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Van Horn", + "scheduled_service": "no" + }, + { + "id": "338171", + "ident": "US-2181", + "type": "closed", + "name": "Delaware River Ranch Airport", + "latitude_deg": "31.92464", + "longitude_deg": "-104.43595", + "elevation_ft": "3696", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Van Horn", + "scheduled_service": "no" + }, + { + "id": "338172", + "ident": "US-2182", + "type": "closed", + "name": "Guadalupe Pumping Station Airport", + "latitude_deg": "31.77709", + "longitude_deg": "-104.90609", + "elevation_ft": "3933", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Salt Flat", + "scheduled_service": "no" + }, + { + "id": "338173", + "ident": "US-2183", + "type": "closed", + "name": "Green Acres Landing Strip", + "latitude_deg": "31.77757", + "longitude_deg": "-105.31873", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Salt Flat", + "scheduled_service": "no" + }, + { + "id": "338179", + "ident": "US-2184", + "type": "small_airport", + "name": "Red Sands Ranch Airport", + "latitude_deg": "30.633744", + "longitude_deg": "-99.194606", + "elevation_ft": "1374", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mason", + "scheduled_service": "no", + "local_code": "1XS4" + }, + { + "id": "338180", + "ident": "US-2185", + "type": "closed", + "name": "James River Landing Strip", + "latitude_deg": "30.60036", + "longitude_deg": "-99.3008", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mason", + "scheduled_service": "no" + }, + { + "id": "338200", + "ident": "US-2186", + "type": "closed", + "name": "Stoval Field", + "latitude_deg": "32.72952", + "longitude_deg": "-113.63231", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Dateland", + "scheduled_service": "no" + }, + { + "id": "338201", + "ident": "US-2187", + "type": "closed", + "name": "Tenmile Wash East Landing Strip", + "latitude_deg": "32.74088", + "longitude_deg": "-113.33596", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Dateland", + "scheduled_service": "no" + }, + { + "id": "338202", + "ident": "US-2188", + "type": "closed", + "name": "Tenmile Wash West Landing Strip", + "latitude_deg": "32.73995", + "longitude_deg": "-113.36641", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Dateland", + "scheduled_service": "no" + }, + { + "id": "338203", + "ident": "US-2189", + "type": "closed", + "name": "Painted Rocks Landing Strip", + "latitude_deg": "33.02996", + "longitude_deg": "-113.05262", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Dateland", + "scheduled_service": "no" + }, + { + "id": "338204", + "ident": "US-2190", + "type": "closed", + "name": "Camp Horn Army Airfield", + "latitude_deg": "32.94626", + "longitude_deg": "-113.53415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Dateland", + "scheduled_service": "no" + }, + { + "id": "338205", + "ident": "US-2191", + "type": "heliport", + "name": "US Border Patrol Wellton Heliport", + "latitude_deg": "32.6668", + "longitude_deg": "-114.11127", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wellton", + "scheduled_service": "no" + }, + { + "id": "338206", + "ident": "US-2192", + "type": "closed", + "name": "Antelope Ranch Airport", + "latitude_deg": "32.71934", + "longitude_deg": "-114.01314", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wellton", + "scheduled_service": "no" + }, + { + "id": "338207", + "ident": "US-2193", + "type": "small_airport", + "name": "TACTS Airfield", + "latitude_deg": "32.49795", + "longitude_deg": "-114.14994", + "elevation_ft": "804", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wellton", + "scheduled_service": "no" + }, + { + "id": "338208", + "ident": "US-2194", + "type": "closed", + "name": "Solair Estates Airport", + "latitude_deg": "34.71136", + "longitude_deg": "-111.89297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Cornville", + "scheduled_service": "no", + "keywords": "AZ43" + }, + { + "id": "338209", + "ident": "US-2195", + "type": "heliport", + "name": "Verde Valley Medical Clinic Camp Verde Helipad", + "latitude_deg": "34.56693", + "longitude_deg": "-111.87611", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Camp Verde", + "scheduled_service": "no" + }, + { + "id": "338210", + "ident": "US-2196", + "type": "heliport", + "name": "Banner Payson Medical Center Helipad", + "latitude_deg": "34.23049", + "longitude_deg": "-111.32083", + "elevation_ft": "4934", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Payson", + "scheduled_service": "no" + }, + { + "id": "338219", + "ident": "US-2197", + "type": "heliport", + "name": "Baptist Hospital Heliport", + "latitude_deg": "25.685037", + "longitude_deg": "-80.33761", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no" + }, + { + "id": "338225", + "ident": "US-2198", + "type": "closed", + "name": "Fentress Landing Strip", + "latitude_deg": "29.7793", + "longitude_deg": "-97.77632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lockhart", + "scheduled_service": "no" + }, + { + "id": "338226", + "ident": "US-2199", + "type": "closed", + "name": "Seal Beach Airport (Crawford Field)", + "latitude_deg": "33.74021", + "longitude_deg": "-118.09214", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Seal Beach", + "scheduled_service": "no" + }, + { + "id": "8861", + "ident": "US-21PN", + "type": "closed", + "name": "Burle-Lancaster Heliport", + "latitude_deg": "40.056801", + "longitude_deg": "-76.280197", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lancaster", + "scheduled_service": "no", + "keywords": "21PN" + }, + { + "id": "338227", + "ident": "US-2200", + "type": "heliport", + "name": "Anaheim Bay Helipad", + "latitude_deg": "33.73792", + "longitude_deg": "-118.094434", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Seal Beach", + "scheduled_service": "no" + }, + { + "id": "338228", + "ident": "US-2201", + "type": "closed", + "name": "Disneyland Heliport (1955)", + "latitude_deg": "33.81101", + "longitude_deg": "-117.91596", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Anaheim", + "scheduled_service": "no" + }, + { + "id": "338229", + "ident": "US-2202", + "type": "closed", + "name": "Disneyland Heliport (1957)", + "latitude_deg": "33.81008", + "longitude_deg": "-117.91646", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Anaheim", + "scheduled_service": "no" + }, + { + "id": "338230", + "ident": "US-2203", + "type": "closed", + "name": "Disneyland Heliport (1960)", + "latitude_deg": "33.81108", + "longitude_deg": "-117.92657", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Anaheim", + "scheduled_service": "no" + }, + { + "id": "338283", + "ident": "US-2204", + "type": "closed", + "name": "Pasayten USFS Airfield", + "latitude_deg": "48.91657", + "longitude_deg": "-120.63161", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Mazama", + "scheduled_service": "no" + }, + { + "id": "338292", + "ident": "US-2205", + "type": "closed", + "name": "Cameron Airport", + "latitude_deg": "29.15964", + "longitude_deg": "-95.45049", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Angleton", + "scheduled_service": "no", + "keywords": "T34" + }, + { + "id": "338294", + "ident": "US-2206", + "type": "closed", + "name": "Oyster Creek Landing Strip", + "latitude_deg": "28.99166", + "longitude_deg": "-95.34494", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Freeport", + "scheduled_service": "no" + }, + { + "id": "338295", + "ident": "US-2207", + "type": "heliport", + "name": "CHI Saint Lukes Health Brazosport Hospital Helipad", + "latitude_deg": "29.02947", + "longitude_deg": "-95.45357", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lake Jackson", + "scheduled_service": "no" + }, + { + "id": "338296", + "ident": "US-2208", + "type": "heliport", + "name": "UTMB Health Angleton Danbury Campus Helipad", + "latitude_deg": "29.18446", + "longitude_deg": "-95.40397", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Angleton", + "scheduled_service": "no" + }, + { + "id": "338297", + "ident": "US-2209", + "type": "closed", + "name": "Forister Ranch Landing Strip", + "latitude_deg": "30.09361", + "longitude_deg": "-100.09213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rocksprings", + "scheduled_service": "no" + }, + { + "id": "338298", + "ident": "US-2210", + "type": "closed", + "name": "Rocksprings West Landing Field", + "latitude_deg": "30.03692", + "longitude_deg": "-100.25589", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rocksprings", + "scheduled_service": "no" + }, + { + "id": "338299", + "ident": "US-2211", + "type": "small_airport", + "name": "Nelda Mayfield Ranch Airport", + "latitude_deg": "30.28554", + "longitude_deg": "-100.23048", + "elevation_ft": "2301", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rocksprings", + "scheduled_service": "no", + "keywords": "Mayfield Ranch" + }, + { + "id": "338300", + "ident": "US-2212", + "type": "closed", + "name": "Estes Ranch Airport", + "latitude_deg": "30.27744", + "longitude_deg": "-100.1742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rocksprings", + "scheduled_service": "no" + }, + { + "id": "338301", + "ident": "US-2213", + "type": "closed", + "name": "Baker Ranch Landing Strip", + "latitude_deg": "30.20042", + "longitude_deg": "-100.26631", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rocksprings", + "scheduled_service": "no" + }, + { + "id": "338302", + "ident": "US-2214", + "type": "closed", + "name": "Hardwick Ranch Landing Strip", + "latitude_deg": "30.17478", + "longitude_deg": "-100.20478", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rocksprings", + "scheduled_service": "no" + }, + { + "id": "338303", + "ident": "US-2215", + "type": "closed", + "name": "Llano Springs Ranch Landing Strip", + "latitude_deg": "30.23535", + "longitude_deg": "-99.97804", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rocksprings", + "scheduled_service": "no" + }, + { + "id": "338304", + "ident": "US-2216", + "type": "small_airport", + "name": "Ridenhower Ranch Airport", + "latitude_deg": "30.290533", + "longitude_deg": "-100.022128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Junction", + "scheduled_service": "no" + }, + { + "id": "338305", + "ident": "US-2217", + "type": "closed", + "name": "Hill Ranch Landing Strip", + "latitude_deg": "30.32073", + "longitude_deg": "-100.04519", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Junction", + "scheduled_service": "no" + }, + { + "id": "338306", + "ident": "US-2218", + "type": "closed", + "name": "McLean Ranch Airport", + "latitude_deg": "30.2985", + "longitude_deg": "-99.90466", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Junction", + "scheduled_service": "no", + "keywords": "Paint Creek Ranch" + }, + { + "id": "338307", + "ident": "US-2219", + "type": "closed", + "name": "Telegraph Landing Strip", + "latitude_deg": "30.33257", + "longitude_deg": "-99.90533", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Junction", + "scheduled_service": "no" + }, + { + "id": "338308", + "ident": "US-2220", + "type": "closed", + "name": "141 Ranch Landing Strip", + "latitude_deg": "30.3341", + "longitude_deg": "-99.61807", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Junction", + "scheduled_service": "no" + }, + { + "id": "338309", + "ident": "US-2221", + "type": "closed", + "name": "Mudge Draw Landing Strip", + "latitude_deg": "30.30097", + "longitude_deg": "-99.59505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Junction", + "scheduled_service": "no" + }, + { + "id": "338310", + "ident": "US-2222", + "type": "closed", + "name": "McNutt Landing Strip", + "latitude_deg": "30.29337", + "longitude_deg": "-99.563", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Junction", + "scheduled_service": "no" + }, + { + "id": "338311", + "ident": "US-2223", + "type": "closed", + "name": "Sky Harbor Ranch Airport", + "latitude_deg": "30.21795", + "longitude_deg": "-99.45096", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mountain Home", + "scheduled_service": "no", + "keywords": "Ell Ranch" + }, + { + "id": "338312", + "ident": "US-2224", + "type": "closed", + "name": "Hernandez Trail Landing Strip", + "latitude_deg": "30.13975", + "longitude_deg": "-99.39028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mountain Home", + "scheduled_service": "no" + }, + { + "id": "338313", + "ident": "US-2225", + "type": "closed", + "name": "Lite-Flite Austin Airfield", + "latitude_deg": "30.34808", + "longitude_deg": "-97.48816", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Manor", + "scheduled_service": "no" + }, + { + "id": "338314", + "ident": "US-2226", + "type": "closed", + "name": "Penn Field", + "latitude_deg": "30.22456", + "longitude_deg": "-97.75721", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no" + }, + { + "id": "338315", + "ident": "US-2227", + "type": "closed", + "name": "Embassy Suites Garage Helipad", + "latitude_deg": "30.258794", + "longitude_deg": "-97.746606", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "keywords": "65TA" + }, + { + "id": "338316", + "ident": "US-2228", + "type": "closed", + "name": "University Airport", + "latitude_deg": "30.34351", + "longitude_deg": "-97.71058", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no" + }, + { + "id": "338318", + "ident": "US-2229", + "type": "closed", + "name": "Haile Airport", + "latitude_deg": "30.32228", + "longitude_deg": "-97.71746", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no" + }, + { + "id": "338319", + "ident": "US-2230", + "type": "closed", + "name": "San Marcos Airport / Thompson Field", + "latitude_deg": "29.86392", + "longitude_deg": "-97.91594", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Marcos", + "scheduled_service": "no" + }, + { + "id": "338320", + "ident": "US-2231", + "type": "closed", + "name": "San Marcos / Robert Lowman Municipal Airport", + "latitude_deg": "29.84897", + "longitude_deg": "-97.95934", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Marcos", + "scheduled_service": "no", + "local_code": "5R6" + }, + { + "id": "338327", + "ident": "US-2232", + "type": "closed", + "name": "Post Landing Strip", + "latitude_deg": "33.20655", + "longitude_deg": "-101.37826", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Post", + "scheduled_service": "no" + }, + { + "id": "338328", + "ident": "US-2233", + "type": "closed", + "name": "Idalou Airport", + "latitude_deg": "33.716598", + "longitude_deg": "-101.605065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lorenzo", + "scheduled_service": "no" + }, + { + "id": "338329", + "ident": "US-2234", + "type": "closed", + "name": "Rhodes / Shallowater Airport", + "latitude_deg": "33.68148", + "longitude_deg": "-102.00177", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Shallowater", + "scheduled_service": "no" + }, + { + "id": "338331", + "ident": "US-2235", + "type": "closed", + "name": "Terry County / Reese Air Force Auxiliary Field", + "latitude_deg": "33.36743", + "longitude_deg": "-102.37003", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Meadow", + "scheduled_service": "no" + }, + { + "id": "338332", + "ident": "US-2236", + "type": "closed", + "name": "Abilene Municipal Airport", + "latitude_deg": "32.4347", + "longitude_deg": "-99.69066", + "elevation_ft": "1746", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Abilene", + "scheduled_service": "no", + "keywords": "ABI, KABI" + }, + { + "id": "338333", + "ident": "US-2237", + "type": "closed", + "name": "Clear Lake Ranch Airfield", + "latitude_deg": "33.81698", + "longitude_deg": "-98.90263", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mankins", + "scheduled_service": "no" + }, + { + "id": "338334", + "ident": "US-2238", + "type": "closed", + "name": "Camp Wolters Army Airfield", + "latitude_deg": "32.84336", + "longitude_deg": "-98.0604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineral Wells", + "scheduled_service": "no" + }, + { + "id": "338335", + "ident": "US-2239", + "type": "closed", + "name": "Fort Wolters Army Heliport", + "latitude_deg": "32.840654", + "longitude_deg": "-98.053279", + "elevation_ft": "892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineral Wells", + "scheduled_service": "no" + }, + { + "id": "338336", + "ident": "US-2240", + "type": "closed", + "name": "Datil Landing Area", + "latitude_deg": "34.1344", + "longitude_deg": "-107.8301", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Datil", + "scheduled_service": "no" + }, + { + "id": "338337", + "ident": "US-2241", + "type": "closed", + "name": "Kennedy Hall Landing Strip", + "latitude_deg": "34.14442", + "longitude_deg": "-107.77921", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Datil", + "scheduled_service": "no" + }, + { + "id": "338338", + "ident": "US-2242", + "type": "closed", + "name": "Magdalena Municipal Airport (1942)", + "latitude_deg": "34.12363", + "longitude_deg": "-107.23458", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Magdalena", + "scheduled_service": "no" + }, + { + "id": "338339", + "ident": "US-2243", + "type": "closed", + "name": "Clines Corners Airport", + "latitude_deg": "35.006315", + "longitude_deg": "-105.673006", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Clines Corners", + "scheduled_service": "no", + "local_code": "KP70" + }, + { + "id": "338355", + "ident": "US-2244", + "type": "closed", + "name": "Never Again Airstrip", + "latitude_deg": "38.49502", + "longitude_deg": "-119.29651", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bridgeport", + "scheduled_service": "no" + }, + { + "id": "338356", + "ident": "US-2245", + "type": "small_airport", + "name": "Dry Lake (Short Bread) Landing Strip", + "latitude_deg": "38.56848", + "longitude_deg": "-119.28114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Wellington", + "scheduled_service": "no" + }, + { + "id": "338357", + "ident": "US-2246", + "type": "small_airport", + "name": "Antelope Landing Strip", + "latitude_deg": "38.57152", + "longitude_deg": "-119.29613", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Wellington", + "scheduled_service": "no" + }, + { + "id": "338358", + "ident": "US-2247", + "type": "small_airport", + "name": "Topaz Overlook Airstrip", + "latitude_deg": "38.70642", + "longitude_deg": "-119.5219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Topaz Lake", + "scheduled_service": "no" + }, + { + "id": "338359", + "ident": "US-2248", + "type": "small_airport", + "name": "Bald Mountain (High Boy) Airstrip", + "latitude_deg": "38.81114", + "longitude_deg": "-119.53289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Wellington", + "scheduled_service": "no" + }, + { + "id": "338360", + "ident": "US-2249", + "type": "small_airport", + "name": "Tailwheel Ridge Airstrip", + "latitude_deg": "38.86897", + "longitude_deg": "-119.49612", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Wellington", + "scheduled_service": "no" + }, + { + "id": "338361", + "ident": "US-2250", + "type": "small_airport", + "name": "Washoe Ranches Airstrip", + "latitude_deg": "38.74341", + "longitude_deg": "-119.47266", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Wellington", + "scheduled_service": "no" + }, + { + "id": "338363", + "ident": "US-2251", + "type": "closed", + "name": "Pinto Stagefield Army Heliport", + "latitude_deg": "32.87878", + "longitude_deg": "-98.00884", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no" + }, + { + "id": "338364", + "ident": "US-2252", + "type": "closed", + "name": "Ramrod Stagefield Army Heliport", + "latitude_deg": "32.82496", + "longitude_deg": "-98.00939", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no" + }, + { + "id": "338365", + "ident": "US-2253", + "type": "closed", + "name": "Qui Nhon Stagefield Army Heliport", + "latitude_deg": "32.90314", + "longitude_deg": "-98.16477", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineral Wells", + "scheduled_service": "no" + }, + { + "id": "338366", + "ident": "US-2254", + "type": "closed", + "name": "Wrangler Stagefield Army Heliport", + "latitude_deg": "32.89353", + "longitude_deg": "-98.23231", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Graford", + "scheduled_service": "no" + }, + { + "id": "338367", + "ident": "US-2255", + "type": "closed", + "name": "Tay Ninh Stagefield Army Heliport", + "latitude_deg": "32.85445", + "longitude_deg": "-98.58189", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Graham", + "scheduled_service": "no" + }, + { + "id": "338368", + "ident": "US-2256", + "type": "closed", + "name": "Pleiku Stagefield Army Heliport", + "latitude_deg": "32.89192", + "longitude_deg": "-98.29743", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Graford", + "scheduled_service": "no" + }, + { + "id": "338369", + "ident": "US-2257", + "type": "closed", + "name": "Bien Hoa Stagefield Army Heliport", + "latitude_deg": "32.81489", + "longitude_deg": "-98.29636", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Palo Pinto", + "scheduled_service": "no" + }, + { + "id": "338370", + "ident": "US-2258", + "type": "closed", + "name": "Downing Army Heliport", + "latitude_deg": "32.78284", + "longitude_deg": "-98.05075", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineral Wells", + "scheduled_service": "no" + }, + { + "id": "338371", + "ident": "US-2259", + "type": "closed", + "name": "Tuy Hoa Stagefield Army Heliport", + "latitude_deg": "32.79791", + "longitude_deg": "-97.87705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no" + }, + { + "id": "338372", + "ident": "US-2260", + "type": "closed", + "name": "Cam Ranh Stagefield Army Heliport", + "latitude_deg": "32.77479", + "longitude_deg": "-97.92341", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no" + }, + { + "id": "338373", + "ident": "US-2261", + "type": "closed", + "name": "An Khe Stagefield Army Heliport", + "latitude_deg": "32.85111", + "longitude_deg": "-97.9561", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no" + }, + { + "id": "338374", + "ident": "US-2262", + "type": "closed", + "name": "Da Nang Stagefield Army Heliport", + "latitude_deg": "32.9886", + "longitude_deg": "-98.07363", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Perrin", + "scheduled_service": "no" + }, + { + "id": "338375", + "ident": "US-2263", + "type": "closed", + "name": "Sundance Stagefield Army Heliport", + "latitude_deg": "32.87616", + "longitude_deg": "-98.05032", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineral Wells", + "scheduled_service": "no" + }, + { + "id": "338376", + "ident": "US-2264", + "type": "closed", + "name": "Lamkin Airstrip", + "latitude_deg": "32.87373", + "longitude_deg": "-98.05607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineral Wells", + "scheduled_service": "no" + }, + { + "id": "338377", + "ident": "US-2265", + "type": "closed", + "name": "Chu Lai Stagefield Army Heliport", + "latitude_deg": "32.98716", + "longitude_deg": "-98.12913", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Perrin", + "scheduled_service": "no" + }, + { + "id": "338378", + "ident": "US-2266", + "type": "closed", + "name": "Hue Stagefield Army Heliport", + "latitude_deg": "33.04498", + "longitude_deg": "-98.24813", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jacksboro", + "scheduled_service": "no" + }, + { + "id": "338379", + "ident": "US-2267", + "type": "closed", + "name": "Ben Cat Stagefield Army Heliport", + "latitude_deg": "32.67973", + "longitude_deg": "-98.63018", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ranger", + "scheduled_service": "no" + }, + { + "id": "338380", + "ident": "US-2268", + "type": "closed", + "name": "Can Tho Stagefield Army Heliport", + "latitude_deg": "32.6098", + "longitude_deg": "-98.38006", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gordon", + "scheduled_service": "no" + }, + { + "id": "338381", + "ident": "US-2269", + "type": "closed", + "name": "Bac Lieu Stagefield Army Heliport", + "latitude_deg": "32.51916", + "longitude_deg": "-98.26799", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gordon", + "scheduled_service": "no" + }, + { + "id": "338382", + "ident": "US-2270", + "type": "closed", + "name": "Soc Trang Stagefield Army Heliport", + "latitude_deg": "32.58962", + "longitude_deg": "-98.18098", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Santo", + "scheduled_service": "no" + }, + { + "id": "338383", + "ident": "US-2271", + "type": "closed", + "name": "My Tho Stagefield Army Heliport", + "latitude_deg": "32.65923", + "longitude_deg": "-98.10546", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineral Wells", + "scheduled_service": "no" + }, + { + "id": "338384", + "ident": "US-2272", + "type": "closed", + "name": "King Landing Strip", + "latitude_deg": "32.69984", + "longitude_deg": "-98.1334", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineral Wells", + "scheduled_service": "no" + }, + { + "id": "338385", + "ident": "US-2273", + "type": "closed", + "name": "Phu Loi Stagefield Army Heliport", + "latitude_deg": "32.71217", + "longitude_deg": "-98.11638", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineral Wells", + "scheduled_service": "no" + }, + { + "id": "338386", + "ident": "US-2274", + "type": "closed", + "name": "Vung Tau Stagefield Army Heliport", + "latitude_deg": "32.69928", + "longitude_deg": "-98.00651", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cool", + "scheduled_service": "no" + }, + { + "id": "338387", + "ident": "US-2275", + "type": "closed", + "name": "Dempsey Army Heliport", + "latitude_deg": "32.77853", + "longitude_deg": "-98.27363", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Palo Pinto", + "scheduled_service": "no" + }, + { + "id": "338388", + "ident": "US-2276", + "type": "small_airport", + "name": "Mafrige Ranch Inc Airport", + "latitude_deg": "29.811167", + "longitude_deg": "-100.687417", + "elevation_ft": "1847", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rocksprings", + "scheduled_service": "no", + "gps_code": "2TA9", + "local_code": "2TA9" + }, + { + "id": "338389", + "ident": "US-2277", + "type": "closed", + "name": "Granite Airport", + "latitude_deg": "33.53721", + "longitude_deg": "-111.98208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Paradise Valley", + "scheduled_service": "no" + }, + { + "id": "338390", + "ident": "US-2278", + "type": "closed", + "name": "North Phoenix Airport / Cactus Development Company Inc Airport", + "latitude_deg": "33.6", + "longitude_deg": "-112.03", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "338391", + "ident": "US-2279", + "type": "closed", + "name": "Rex Williams Field / Moseley Field", + "latitude_deg": "33.50331", + "longitude_deg": "-112.25281", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "338392", + "ident": "US-2280", + "type": "closed", + "name": "Wagon Wheels Ranch Airfield", + "latitude_deg": "32.213711", + "longitude_deg": "-110.790038", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "338393", + "ident": "US-2281", + "type": "closed", + "name": "Tucson Municipal Airport / Macauley Field / Mayse Field", + "latitude_deg": "32.163952", + "longitude_deg": "-110.967386", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "338394", + "ident": "US-2282", + "type": "closed", + "name": "Tempe Airport", + "latitude_deg": "33.40428", + "longitude_deg": "-111.95206", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tempe", + "scheduled_service": "no" + }, + { + "id": "338395", + "ident": "US-2283", + "type": "closed", + "name": "Fye Airstrip", + "latitude_deg": "32.916404", + "longitude_deg": "-111.692655", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Casa Grande", + "scheduled_service": "no" + }, + { + "id": "338396", + "ident": "US-2284", + "type": "closed", + "name": "John Walker Landing Strip", + "latitude_deg": "32.90307", + "longitude_deg": "-111.66634", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Casa Grande", + "scheduled_service": "no" + }, + { + "id": "338397", + "ident": "US-2285", + "type": "closed", + "name": "Central Arizona College Airport", + "latitude_deg": "32.95855", + "longitude_deg": "-111.64527", + "elevation_ft": "1414", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Coolidge", + "scheduled_service": "no" + }, + { + "id": "338398", + "ident": "US-2286", + "type": "closed", + "name": "Barnes Airfield", + "latitude_deg": "33.2559", + "longitude_deg": "-111.6258", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Queen Creek", + "scheduled_service": "no" + }, + { + "id": "338399", + "ident": "US-2287", + "type": "closed", + "name": "Barney Family Landing Strip", + "latitude_deg": "33.25942", + "longitude_deg": "-111.60452", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Queen Creek", + "scheduled_service": "no" + }, + { + "id": "338400", + "ident": "US-2288", + "type": "closed", + "name": "Whisper Ranch Landing Strip", + "latitude_deg": "33.22387", + "longitude_deg": "-111.65488", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Queen Creek", + "scheduled_service": "no" + }, + { + "id": "338404", + "ident": "US-2289", + "type": "closed", + "name": "Bakers Acres Airstrip", + "latitude_deg": "32.5701", + "longitude_deg": "-111.72024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Eloy", + "scheduled_service": "no" + }, + { + "id": "338405", + "ident": "US-2290", + "type": "small_airport", + "name": "Flying Crown Ranch Airport", + "latitude_deg": "32.571", + "longitude_deg": "-111.72892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Eloy", + "scheduled_service": "no" + }, + { + "id": "338406", + "ident": "US-2291", + "type": "closed", + "name": "Y Strip Airport", + "latitude_deg": "32.738922", + "longitude_deg": "-111.720133", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Arizona City", + "scheduled_service": "no" + }, + { + "id": "338407", + "ident": "US-2292", + "type": "closed", + "name": "Ambrosia Landing Field", + "latitude_deg": "33.80171", + "longitude_deg": "-113.18392", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Aguila", + "scheduled_service": "no" + }, + { + "id": "338408", + "ident": "US-2293", + "type": "closed", + "name": "Gilbert Airport", + "latitude_deg": "33.34486", + "longitude_deg": "-111.79454", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gilbert", + "scheduled_service": "no" + }, + { + "id": "338409", + "ident": "US-2294", + "type": "closed", + "name": "Gilbert Auxiliary Airfield #1", + "latitude_deg": "33.38732", + "longitude_deg": "-111.67149", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no" + }, + { + "id": "338410", + "ident": "US-2295", + "type": "closed", + "name": "Farm Aero Airport", + "latitude_deg": "33.42779", + "longitude_deg": "-112.16668", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "338411", + "ident": "US-2296", + "type": "closed", + "name": "Ranchos de los Caballeros Airport", + "latitude_deg": "33.93478", + "longitude_deg": "-112.78616", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wickenburg", + "scheduled_service": "no" + }, + { + "id": "338412", + "ident": "US-2297", + "type": "closed", + "name": "Gila Port Airport", + "latitude_deg": "33.41155", + "longitude_deg": "-112.18812", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "338413", + "ident": "US-2298", + "type": "closed", + "name": "Forepaugh Landing Strip", + "latitude_deg": "33.97813", + "longitude_deg": "-113.04193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wickenburg", + "scheduled_service": "no" + }, + { + "id": "338414", + "ident": "US-2299", + "type": "closed", + "name": "Fountain Hills Airport", + "latitude_deg": "33.50722", + "longitude_deg": "-111.76025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Scottsdale", + "scheduled_service": "no" + }, + { + "id": "338415", + "ident": "US-2300", + "type": "closed", + "name": "Hassayampa Airport", + "latitude_deg": "33.68509", + "longitude_deg": "-112.63022", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Buckeye", + "scheduled_service": "no" + }, + { + "id": "338416", + "ident": "US-2301", + "type": "closed", + "name": "Lake Pleasant Landing Field", + "latitude_deg": "33.82957", + "longitude_deg": "-112.26871", + "elevation_ft": "1558", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peoria", + "scheduled_service": "no" + }, + { + "id": "338417", + "ident": "US-2302", + "type": "closed", + "name": "Marsh Airstrip", + "latitude_deg": "33.468098", + "longitude_deg": "-112.402382", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Goodyear", + "scheduled_service": "no" + }, + { + "id": "338418", + "ident": "US-2303", + "type": "closed", + "name": "Phoenix District Airport", + "latitude_deg": "33.44047", + "longitude_deg": "-112.1483", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "338419", + "ident": "US-2304", + "type": "closed", + "name": "Ross Airport", + "latitude_deg": "33.413658", + "longitude_deg": "-111.846252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no" + }, + { + "id": "338420", + "ident": "US-2305", + "type": "closed", + "name": "Saguaro Airport", + "latitude_deg": "33.448376", + "longitude_deg": "-112.017372", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "338421", + "ident": "US-2306", + "type": "closed", + "name": "Sanders Airport", + "latitude_deg": "33.353", + "longitude_deg": "-111.96136", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tempe", + "scheduled_service": "no" + }, + { + "id": "338422", + "ident": "US-2307", + "type": "closed", + "name": "Sharman Landing Strip", + "latitude_deg": "33.91809", + "longitude_deg": "-112.12182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "New River", + "scheduled_service": "no" + }, + { + "id": "338423", + "ident": "US-2308", + "type": "closed", + "name": "Sky Hi Pioneer Airport", + "latitude_deg": "33.6717", + "longitude_deg": "-112.00237", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "338424", + "ident": "US-2309", + "type": "closed", + "name": "Vulture Gold Mine Landing Strip", + "latitude_deg": "33.82423", + "longitude_deg": "-112.82741", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wickenburg", + "scheduled_service": "no" + }, + { + "id": "338425", + "ident": "US-2310", + "type": "closed", + "name": "Old Hidden Valley Airport", + "latitude_deg": "33.06333", + "longitude_deg": "-112.16706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Maricopa", + "scheduled_service": "no", + "local_code": "AZ43" + }, + { + "id": "338426", + "ident": "US-2311", + "type": "closed", + "name": "Pinal Dusters Airport", + "latitude_deg": "33.00624", + "longitude_deg": "-112.04835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mobile", + "scheduled_service": "no" + }, + { + "id": "338436", + "ident": "US-2312", + "type": "closed", + "name": "Maker / Hughes Airport", + "latitude_deg": "32.45079", + "longitude_deg": "-99.78213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Abilene", + "scheduled_service": "no" + }, + { + "id": "338437", + "ident": "US-2313", + "type": "closed", + "name": "Butterfield Trail Airport", + "latitude_deg": "32.54217", + "longitude_deg": "-99.77328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Abilene", + "scheduled_service": "no" + }, + { + "id": "338537", + "ident": "US-2314", + "type": "closed", + "name": "Mesquite Groves Landing Strip", + "latitude_deg": "33.22465", + "longitude_deg": "-111.75942", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Chandler", + "scheduled_service": "no" + }, + { + "id": "338540", + "ident": "US-2315", + "type": "closed", + "name": "Old Colorado City Airport", + "latitude_deg": "32.37137", + "longitude_deg": "-100.86474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Colorado City", + "scheduled_service": "no" + }, + { + "id": "338541", + "ident": "US-2316", + "type": "closed", + "name": "Jefferies Ranch Landing Strip", + "latitude_deg": "27.8802", + "longitude_deg": "-99.60649", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laredo", + "scheduled_service": "no" + }, + { + "id": "338544", + "ident": "US-2317", + "type": "closed", + "name": "Lake Creek Airport", + "latitude_deg": "29.57387", + "longitude_deg": "-99.94882", + "elevation_ft": "1453", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Camp Wood", + "scheduled_service": "no" + }, + { + "id": "338545", + "ident": "US-2318", + "type": "closed", + "name": "Delta Wings Airport", + "latitude_deg": "41.57206", + "longitude_deg": "-83.98549", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Delta", + "scheduled_service": "no" + }, + { + "id": "338546", + "ident": "US-2319", + "type": "heliport", + "name": "Farallon Islands AWRS Helipad", + "latitude_deg": "37.697508", + "longitude_deg": "-123.002504", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Francisco", + "scheduled_service": "no" + }, + { + "id": "338554", + "ident": "US-2320", + "type": "closed", + "name": "Nored Ranch Airport", + "latitude_deg": "31.10578", + "longitude_deg": "-98.82827", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Saba", + "scheduled_service": "no" + }, + { + "id": "338555", + "ident": "US-2321", + "type": "closed", + "name": "Rosebud Landing Strip", + "latitude_deg": "31.11337", + "longitude_deg": "-96.99093", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rosebud", + "scheduled_service": "no" + }, + { + "id": "338556", + "ident": "US-2322", + "type": "closed", + "name": "Big Creek Airport", + "latitude_deg": "34.036", + "longitude_deg": "-96.12718", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Bokchito", + "scheduled_service": "no" + }, + { + "id": "338557", + "ident": "US-2323", + "type": "closed", + "name": "Frank Ranch Field", + "latitude_deg": "34.00797", + "longitude_deg": "-96.13933", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Bokchito", + "scheduled_service": "no" + }, + { + "id": "338579", + "ident": "US-2324", + "type": "small_airport", + "name": "Strickland/Smalley Field", + "latitude_deg": "32.8475", + "longitude_deg": "-87.713889", + "elevation_ft": "369", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Akron", + "scheduled_service": "no", + "gps_code": "AL03", + "local_code": "AL03" + }, + { + "id": "338583", + "ident": "US-2325", + "type": "heliport", + "name": "Phoebe Putney Memorial Hospital Heliport", + "latitude_deg": "31.591417", + "longitude_deg": "-84.156889", + "elevation_ft": "196", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "3GE9", + "local_code": "3GE9", + "home_link": "https://www.phoebehealth.com/" + }, + { + "id": "338598", + "ident": "US-2326", + "type": "closed", + "name": "Paradox Heliport", + "latitude_deg": "35.318611", + "longitude_deg": "-76.700556", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Aurora", + "scheduled_service": "no", + "keywords": "NC47" + }, + { + "id": "338632", + "ident": "US-2327", + "type": "closed", + "name": "Bagdad Intermediate Field", + "latitude_deg": "34.57327", + "longitude_deg": "-115.87824", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bagdad", + "scheduled_service": "no" + }, + { + "id": "338633", + "ident": "US-2328", + "type": "small_airport", + "name": "Amboy Airfield", + "latitude_deg": "34.56231", + "longitude_deg": "-115.74987", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Amboy", + "scheduled_service": "no" + }, + { + "id": "338634", + "ident": "US-2329", + "type": "closed", + "name": "Essex Landing Field", + "latitude_deg": "34.7516", + "longitude_deg": "-115.229", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Essex", + "scheduled_service": "no" + }, + { + "id": "338635", + "ident": "US-2330", + "type": "closed", + "name": "Fenner Air Strip", + "latitude_deg": "34.77119", + "longitude_deg": "-115.22119", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Essex", + "scheduled_service": "no" + }, + { + "id": "338636", + "ident": "US-2331", + "type": "closed", + "name": "Camp Goffs Army Airfield", + "latitude_deg": "34.93675", + "longitude_deg": "-115.06807", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Goffs", + "scheduled_service": "no" + }, + { + "id": "338637", + "ident": "US-2332", + "type": "closed", + "name": "Goffs Intermediate Field", + "latitude_deg": "34.93492", + "longitude_deg": "-115.03168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Goffs", + "scheduled_service": "no" + }, + { + "id": "338638", + "ident": "US-2333", + "type": "closed", + "name": "Rafter R Ranch Airport", + "latitude_deg": "35.42414", + "longitude_deg": "-95.4962", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Checotah", + "scheduled_service": "no" + }, + { + "id": "338639", + "ident": "US-2334", + "type": "closed", + "name": "Mission Field", + "latitude_deg": "35.5417", + "longitude_deg": "-97.21671", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Harrah", + "scheduled_service": "no", + "local_code": "48OK" + }, + { + "id": "338640", + "ident": "US-2335", + "type": "closed", + "name": "Centralia Landing Strip", + "latitude_deg": "39.14314", + "longitude_deg": "-92.12695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Centralia", + "scheduled_service": "no" + }, + { + "id": "338650", + "ident": "US-2336", + "type": "small_airport", + "name": "White Sands Space Harbor", + "latitude_deg": "32.94412", + "longitude_deg": "-106.4192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "White Sands", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/White_Sands_Space_Harbor" + }, + { + "id": "338652", + "ident": "US-2337", + "type": "closed", + "name": "Silver City Airport", + "latitude_deg": "46.74938", + "longitude_deg": "-112.18116", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Helena", + "scheduled_service": "no" + }, + { + "id": "338653", + "ident": "US-2338", + "type": "closed", + "name": "Nipomo Airfield", + "latitude_deg": "35.05848", + "longitude_deg": "-120.52343", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Arroyo Grande", + "scheduled_service": "no" + }, + { + "id": "338654", + "ident": "US-2339", + "type": "closed", + "name": "Old Santa Margarita Ranch Airport", + "latitude_deg": "35.3876", + "longitude_deg": "-120.62918", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Margarita", + "scheduled_service": "no" + }, + { + "id": "338655", + "ident": "US-2340", + "type": "closed", + "name": "Crescent / Daly Airport", + "latitude_deg": "43.46187", + "longitude_deg": "-121.71169", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Crescent", + "scheduled_service": "no" + }, + { + "id": "338656", + "ident": "US-2341", + "type": "closed", + "name": "Clark Field", + "latitude_deg": "35.24906", + "longitude_deg": "-120.65513", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Luis Obispo", + "scheduled_service": "no" + }, + { + "id": "338657", + "ident": "US-2342", + "type": "closed", + "name": "Weirs Airstrip", + "latitude_deg": "35.18497", + "longitude_deg": "-120.59028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Luis Obispo", + "scheduled_service": "no" + }, + { + "id": "338658", + "ident": "US-2343", + "type": "closed", + "name": "Sky Lawn Airport", + "latitude_deg": "35.36747", + "longitude_deg": "-120.83743", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Morro Bay", + "scheduled_service": "no" + }, + { + "id": "338659", + "ident": "US-2344", + "type": "closed", + "name": "California Polytechnic State University Airport", + "latitude_deg": "35.30858", + "longitude_deg": "-120.66782", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Luis Obispo", + "scheduled_service": "no" + }, + { + "id": "338660", + "ident": "US-2345", + "type": "closed", + "name": "Paso Robles Airport / Sherwood Field", + "latitude_deg": "35.6145", + "longitude_deg": "-120.655681", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Paso Robles", + "scheduled_service": "no" + }, + { + "id": "338661", + "ident": "US-2346", + "type": "closed", + "name": "Sinclair Field / Flying R Ranch Flying Field", + "latitude_deg": "35.761", + "longitude_deg": "-120.687", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Miguel", + "scheduled_service": "no" + }, + { + "id": "338662", + "ident": "US-2347", + "type": "small_airport", + "name": "Pianetta Winery Airstrip", + "latitude_deg": "35.82386", + "longitude_deg": "-120.70189", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Miguel", + "scheduled_service": "no" + }, + { + "id": "338663", + "ident": "US-2348", + "type": "closed", + "name": "Ace Field", + "latitude_deg": "34.00923", + "longitude_deg": "-118.16631", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Commerce", + "scheduled_service": "no" + }, + { + "id": "338676", + "ident": "US-2349", + "type": "small_airport", + "name": "Yoder Field", + "latitude_deg": "30.607486", + "longitude_deg": "-85.025292", + "elevation_ft": "138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Grand Ridge", + "scheduled_service": "no", + "gps_code": "0FD4", + "local_code": "0FD4" + }, + { + "id": "338678", + "ident": "US-2350", + "type": "small_airport", + "name": "Mac Field", + "latitude_deg": "45.51891", + "longitude_deg": "-118.047339", + "elevation_ft": "2924", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Summerville", + "scheduled_service": "no", + "gps_code": "1OR5", + "local_code": "1OR5" + }, + { + "id": "338680", + "ident": "US-2351", + "type": "closed", + "name": "Middle Aguanga Airstrip", + "latitude_deg": "33.43924", + "longitude_deg": "-116.87318", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Aguanga", + "scheduled_service": "no" + }, + { + "id": "338681", + "ident": "US-2352", + "type": "closed", + "name": "Sundance Ranch Airstrip", + "latitude_deg": "33.48756", + "longitude_deg": "-116.92456", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Aguanga", + "scheduled_service": "no" + }, + { + "id": "338682", + "ident": "US-2353", + "type": "heliport", + "name": "Oak Hill Hospital Heliport", + "latitude_deg": "28.537333", + "longitude_deg": "-82.53485", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Brooksville", + "scheduled_service": "no", + "gps_code": "23FD", + "local_code": "23FD" + }, + { + "id": "338683", + "ident": "US-2354", + "type": "closed", + "name": "White Mountain Landing Strip", + "latitude_deg": "33.44706", + "longitude_deg": "-116.88483", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Aguanga", + "scheduled_service": "no" + }, + { + "id": "338684", + "ident": "US-2355", + "type": "closed", + "name": "Anza Landing Strip", + "latitude_deg": "33.55215", + "longitude_deg": "-116.65045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Anza", + "scheduled_service": "no" + }, + { + "id": "338685", + "ident": "US-2356", + "type": "closed", + "name": "Garner Ranch Landing Strip", + "latitude_deg": "33.66432", + "longitude_deg": "-116.65255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mountain Center", + "scheduled_service": "no" + }, + { + "id": "338686", + "ident": "US-2357", + "type": "closed", + "name": "Montgomery Airfield / Marina Airfield", + "latitude_deg": "37.80648", + "longitude_deg": "-122.43914", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Francisco", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marina_Green" + }, + { + "id": "338687", + "ident": "US-2358", + "type": "small_airport", + "name": "Red Rock Field", + "latitude_deg": "46.880039", + "longitude_deg": "-119.588889", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Royal City", + "scheduled_service": "no", + "gps_code": "2WA2", + "local_code": "2WA2" + }, + { + "id": "338689", + "ident": "US-2359", + "type": "closed", + "name": "San Mateo Highlands Airfield", + "latitude_deg": "37.51205", + "longitude_deg": "-122.33948", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Mateo", + "scheduled_service": "no" + }, + { + "id": "338690", + "ident": "US-2360", + "type": "heliport", + "name": "Summit Pacific Medical Center Heliport", + "latitude_deg": "47.00629", + "longitude_deg": "-123.392177", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Elma", + "scheduled_service": "no", + "gps_code": "3WA6", + "local_code": "3WA6" + }, + { + "id": "338691", + "ident": "US-2361", + "type": "closed", + "name": "Bay Meadows Airport", + "latitude_deg": "37.54794", + "longitude_deg": "-122.29749", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Mateo", + "scheduled_service": "no" + }, + { + "id": "338692", + "ident": "US-2362", + "type": "closed", + "name": "San Mateo Airport", + "latitude_deg": "37.55874", + "longitude_deg": "-122.29772", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Mateo", + "scheduled_service": "no" + }, + { + "id": "338693", + "ident": "US-2363", + "type": "closed", + "name": "Belmont Airport", + "latitude_deg": "37.52867", + "longitude_deg": "-122.27925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Belmont", + "scheduled_service": "no" + }, + { + "id": "338694", + "ident": "US-2364", + "type": "closed", + "name": "San Francisco Downtown Heliport", + "latitude_deg": "37.79658", + "longitude_deg": "-122.39444", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Francisco", + "scheduled_service": "no" + }, + { + "id": "338696", + "ident": "US-2365", + "type": "closed", + "name": "Paul Mantz Seaplane Base", + "latitude_deg": "37.82548", + "longitude_deg": "-122.36425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Francisco", + "scheduled_service": "no" + }, + { + "id": "338697", + "ident": "US-2366", + "type": "closed", + "name": "Treasure Island Naval Auxiliary Airfield", + "latitude_deg": "37.82843", + "longitude_deg": "-122.36906", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Francisco", + "scheduled_service": "no" + }, + { + "id": "338698", + "ident": "US-2367", + "type": "closed", + "name": "Treasure Island (Pan American / Clipper Cove) Seaplane Base", + "latitude_deg": "37.81802", + "longitude_deg": "-122.36636", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Francisco", + "scheduled_service": "no" + }, + { + "id": "338699", + "ident": "US-2368", + "type": "closed", + "name": "Clark Dry Lake Naval Auxiliary Airfield", + "latitude_deg": "33.33427", + "longitude_deg": "-116.28769", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Borrego Springs", + "scheduled_service": "no" + }, + { + "id": "338700", + "ident": "US-2369", + "type": "closed", + "name": "White Airport", + "latitude_deg": "39.46126", + "longitude_deg": "-123.80045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fort Bragg", + "scheduled_service": "no" + }, + { + "id": "338701", + "ident": "US-2370", + "type": "closed", + "name": "Point Arena Hotel Airfield", + "latitude_deg": "38.93089", + "longitude_deg": "-123.71239", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Point Arena", + "scheduled_service": "no" + }, + { + "id": "338702", + "ident": "US-2371", + "type": "closed", + "name": "Peterson Redding Airport", + "latitude_deg": "40.62972", + "longitude_deg": "-122.37489", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Redding", + "scheduled_service": "no" + }, + { + "id": "338703", + "ident": "US-2372", + "type": "closed", + "name": "Kirkwood Airport", + "latitude_deg": "39.79", + "longitude_deg": "-122.13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Orland", + "scheduled_service": "no" + }, + { + "id": "338705", + "ident": "US-2373", + "type": "closed", + "name": "Williams Intermediate Field", + "latitude_deg": "39.09507", + "longitude_deg": "-122.15274", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Williams", + "scheduled_service": "no" + }, + { + "id": "338706", + "ident": "US-2374", + "type": "closed", + "name": "Union Lumber Company Airfield", + "latitude_deg": "39.43479", + "longitude_deg": "-123.81529", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fort Bragg", + "scheduled_service": "no" + }, + { + "id": "338707", + "ident": "US-2375", + "type": "closed", + "name": "Enterprise Sky Park", + "latitude_deg": "40.57616", + "longitude_deg": "-122.31911", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Redding", + "scheduled_service": "no", + "local_code": "Q93" + }, + { + "id": "338708", + "ident": "US-2376", + "type": "closed", + "name": "Redding Sky Ranch", + "latitude_deg": "40.50081", + "longitude_deg": "-122.37781", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Redding", + "scheduled_service": "no", + "local_code": "O74" + }, + { + "id": "338709", + "ident": "US-2377", + "type": "closed", + "name": "Clearlake Oaks Airport", + "latitude_deg": "39.02028", + "longitude_deg": "-122.65613", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Clearlake Oaks", + "scheduled_service": "no" + }, + { + "id": "338710", + "ident": "US-2378", + "type": "small_airport", + "name": "Butler Field", + "latitude_deg": "48.887147", + "longitude_deg": "-122.290566", + "elevation_ft": "223", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Everson", + "scheduled_service": "no", + "gps_code": "5WA2", + "local_code": "5WA2" + }, + { + "id": "338711", + "ident": "US-2379", + "type": "closed", + "name": "Pearce Field", + "latitude_deg": "38.93443", + "longitude_deg": "-122.62324", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Clearlake", + "scheduled_service": "no", + "local_code": "CKE" + }, + { + "id": "338712", + "ident": "US-2380", + "type": "closed", + "name": "Clearlake Highlands Airport", + "latitude_deg": "38.93559", + "longitude_deg": "-122.63218", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Clearlake", + "scheduled_service": "no" + }, + { + "id": "338713", + "ident": "US-2381", + "type": "closed", + "name": "Calistoga Gliderport", + "latitude_deg": "38.5783", + "longitude_deg": "-122.571716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Calistoga", + "scheduled_service": "no" + }, + { + "id": "338714", + "ident": "US-2382", + "type": "closed", + "name": "Santa Rosa Air Center", + "latitude_deg": "38.41448", + "longitude_deg": "-122.75771", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Rosa", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Auxiliary_Landing_Field_Santa_Rosa" + }, + { + "id": "338715", + "ident": "US-2383", + "type": "closed", + "name": "Santa Rosa Municipal Airport / Steiner Field", + "latitude_deg": "38.47355", + "longitude_deg": "-122.73821", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Rosa", + "scheduled_service": "no" + }, + { + "id": "338716", + "ident": "US-2384", + "type": "closed", + "name": "Santa Rosa Airpark", + "latitude_deg": "38.47711", + "longitude_deg": "-122.74073", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Rosa", + "scheduled_service": "no" + }, + { + "id": "338717", + "ident": "US-2385", + "type": "closed", + "name": "Santa Rosa Coddingtown Airport", + "latitude_deg": "38.47464", + "longitude_deg": "-122.74122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Rosa", + "scheduled_service": "no" + }, + { + "id": "338718", + "ident": "US-2386", + "type": "heliport", + "name": "UT Health Henderson Heliport", + "latitude_deg": "32.161186", + "longitude_deg": "-94.794822", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Henderson", + "scheduled_service": "no", + "gps_code": "60TA", + "local_code": "60TA" + }, + { + "id": "338719", + "ident": "US-2387", + "type": "closed", + "name": "Balfe Ranch Airport", + "latitude_deg": "36.87041", + "longitude_deg": "-119.57978", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Clovis", + "scheduled_service": "no" + }, + { + "id": "338720", + "ident": "US-2388", + "type": "closed", + "name": "Coalinga Airport (1927)", + "latitude_deg": "36.14861", + "longitude_deg": "-120.35638", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Coalinga", + "scheduled_service": "no" + }, + { + "id": "338721", + "ident": "US-2389", + "type": "closed", + "name": "Colburn Airport", + "latitude_deg": "36.20034", + "longitude_deg": "-119.18968", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lindsay", + "scheduled_service": "no" + }, + { + "id": "338722", + "ident": "US-2390", + "type": "closed", + "name": "Cooley Field", + "latitude_deg": "37.52572", + "longitude_deg": "-122.25248", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Redwood City", + "scheduled_service": "no" + }, + { + "id": "338723", + "ident": "US-2391", + "type": "small_airport", + "name": "Vintage Field", + "latitude_deg": "38.090674", + "longitude_deg": "-97.202583", + "elevation_ft": "1508", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Newton", + "scheduled_service": "no", + "gps_code": "76KS", + "local_code": "76KS" + }, + { + "id": "338725", + "ident": "US-2392", + "type": "closed", + "name": "Sebastopol Airport / Cnopius Field", + "latitude_deg": "38.40654", + "longitude_deg": "-122.81483", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sebastopol", + "scheduled_service": "no" + }, + { + "id": "338726", + "ident": "US-2393", + "type": "closed", + "name": "Paul Hoberg Airport", + "latitude_deg": "38.87141", + "longitude_deg": "-122.67717", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Middletown", + "scheduled_service": "no" + }, + { + "id": "338728", + "ident": "US-2394", + "type": "closed", + "name": "Naval Outlying Landing Field Cotati", + "latitude_deg": "38.34978", + "longitude_deg": "-122.7232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rohnert Park", + "scheduled_service": "no" + }, + { + "id": "338729", + "ident": "US-2395", + "type": "closed", + "name": "Central Airport", + "latitude_deg": "33.90771", + "longitude_deg": "-118.25059", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Compton", + "scheduled_service": "no" + }, + { + "id": "338730", + "ident": "US-2396", + "type": "closed", + "name": "Concord Naval Weapons Station Airfield", + "latitude_deg": "37.98996", + "longitude_deg": "-122.01831", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Concord", + "scheduled_service": "no" + }, + { + "id": "338731", + "ident": "US-2397", + "type": "closed", + "name": "Concord Airport (1927)", + "latitude_deg": "37.96969", + "longitude_deg": "-121.9949", + "elevation_ft": "1", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Concord", + "scheduled_service": "no" + }, + { + "id": "338732", + "ident": "US-2398", + "type": "closed", + "name": "San Francisco Bay Airdrome", + "latitude_deg": "37.78432", + "longitude_deg": "-122.28094", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Alameda", + "scheduled_service": "no" + }, + { + "id": "338733", + "ident": "US-2399", + "type": "closed", + "name": "Conejo Valley Airport (1926)", + "latitude_deg": "34.17842", + "longitude_deg": "-118.87237", + "elevation_ft": "742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Thousand Oaks", + "scheduled_service": "no" + }, + { + "id": "338734", + "ident": "US-2400", + "type": "closed", + "name": "Conejo Valley Airport (1950)", + "latitude_deg": "34.17774", + "longitude_deg": "-118.88193", + "elevation_ft": "703", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Thousand Oaks", + "scheduled_service": "no" + }, + { + "id": "338735", + "ident": "US-2401", + "type": "closed", + "name": "Rancho Conejo Airport", + "latitude_deg": "34.1964", + "longitude_deg": "-118.9179", + "elevation_ft": "673", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Thousand Oaks", + "scheduled_service": "no" + }, + { + "id": "338736", + "ident": "US-2402", + "type": "small_airport", + "name": "Cordell Landing Private Airport", + "latitude_deg": "33.0864", + "longitude_deg": "-116.46101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Julian", + "scheduled_service": "no" + }, + { + "id": "338737", + "ident": "US-2403", + "type": "closed", + "name": "Lockwood Valley Airfield", + "latitude_deg": "34.74213", + "longitude_deg": "-119.12543", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Frazier Park", + "scheduled_service": "no" + }, + { + "id": "338738", + "ident": "US-2404", + "type": "small_airport", + "name": "Lockwood Airpark", + "latitude_deg": "34.75582", + "longitude_deg": "-119.06587", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Frazier Park", + "scheduled_service": "no" + }, + { + "id": "338739", + "ident": "US-2405", + "type": "closed", + "name": "Cooksey Ranch Airport", + "latitude_deg": "31.22565", + "longitude_deg": "-100.50109", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Christoval", + "scheduled_service": "no" + }, + { + "id": "338740", + "ident": "US-2406", + "type": "closed", + "name": "Cornell Airport", + "latitude_deg": "36.03055", + "longitude_deg": "-119.02138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Porterville", + "scheduled_service": "no" + }, + { + "id": "338741", + "ident": "US-2407", + "type": "closed", + "name": "Stony Bridge Ranch Airport", + "latitude_deg": "33.84886", + "longitude_deg": "-117.61366", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Corona", + "scheduled_service": "no" + }, + { + "id": "338743", + "ident": "US-2408", + "type": "closed", + "name": "Vaughn Ranch Airport", + "latitude_deg": "34.0571", + "longitude_deg": "-105.6339", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Corona", + "scheduled_service": "no" + }, + { + "id": "338744", + "ident": "US-2409", + "type": "small_airport", + "name": "Strain Ranch Airport", + "latitude_deg": "39.053056", + "longitude_deg": "-122.095556", + "elevation_ft": "123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Arbuckle", + "scheduled_service": "no", + "gps_code": "55CL", + "local_code": "55CL" + }, + { + "id": "338745", + "ident": "US-2410", + "type": "small_airport", + "name": "Pacific Valley Aviation Airport", + "latitude_deg": "39.07541", + "longitude_deg": "-122.08247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Arbuckle", + "scheduled_service": "no", + "keywords": "Arbuckle" + }, + { + "id": "338746", + "ident": "US-2411", + "type": "closed", + "name": "Crafton Hills Airport", + "latitude_deg": "34.03616", + "longitude_deg": "-117.07154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Yucaipa", + "scheduled_service": "no" + }, + { + "id": "338747", + "ident": "US-2412", + "type": "closed", + "name": "Calimesa Airport", + "latitude_deg": "33.974328", + "longitude_deg": "-117.052496", + "elevation_ft": "2254", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Calimesa", + "scheduled_service": "no" + }, + { + "id": "338748", + "ident": "US-2413", + "type": "closed", + "name": "Wilmington / Los Angeles Harbor Airport", + "latitude_deg": "33.78791", + "longitude_deg": "-118.28601", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Wilmington", + "scheduled_service": "no" + }, + { + "id": "338749", + "ident": "US-2414", + "type": "closed", + "name": "Torrance Field / Bay Cities Airport", + "latitude_deg": "33.87376", + "longitude_deg": "-118.34798", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Torrance", + "scheduled_service": "no" + }, + { + "id": "338750", + "ident": "US-2415", + "type": "heliport", + "name": "Holiday Inn Torrance Helipad", + "latitude_deg": "33.850971", + "longitude_deg": "-118.289446", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Torrance", + "scheduled_service": "no" + }, + { + "id": "338751", + "ident": "US-2416", + "type": "closed", + "name": "Cranford Airport", + "latitude_deg": "33.8603", + "longitude_deg": "-118.05436", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Cerritos", + "scheduled_service": "no" + }, + { + "id": "338752", + "ident": "US-2417", + "type": "small_airport", + "name": "Wonder Valley Landing Strip", + "latitude_deg": "34.16051", + "longitude_deg": "-115.98728", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Twentynine Palms", + "scheduled_service": "no" + }, + { + "id": "338753", + "ident": "US-2418", + "type": "closed", + "name": "Cuddeback Dry Lake Landing Strip", + "latitude_deg": "35.30088", + "longitude_deg": "-117.47107", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Atolia", + "scheduled_service": "no" + }, + { + "id": "338754", + "ident": "US-2419", + "type": "closed", + "name": "Cuddeback Lake Gunnery Range Landing Strip", + "latitude_deg": "35.28064", + "longitude_deg": "-117.39824", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Atolia", + "scheduled_service": "no" + }, + { + "id": "338755", + "ident": "US-2420", + "type": "small_airport", + "name": "Lykes Fort Basinger Airport", + "latitude_deg": "27.379761", + "longitude_deg": "-81.147176", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lorida", + "scheduled_service": "no", + "gps_code": "7FD1", + "local_code": "7FD1" + }, + { + "id": "338756", + "ident": "US-2421", + "type": "heliport", + "name": "Kautz Creek Helibase", + "latitude_deg": "46.72975", + "longitude_deg": "-121.856752", + "elevation_ft": "2312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ashford", + "scheduled_service": "no", + "gps_code": "7WA7", + "local_code": "7WA7" + }, + { + "id": "338757", + "ident": "US-2422", + "type": "heliport", + "name": "Wetlands Ranch Heliport", + "latitude_deg": "39.973482", + "longitude_deg": "-107.622188", + "elevation_ft": "6996", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Meeker", + "scheduled_service": "no", + "gps_code": "90CO", + "local_code": "90CO" + }, + { + "id": "354296", + "ident": "US-2423", + "type": "small_airport", + "name": "Chunilna Cabin Strip", + "latitude_deg": "62.405556", + "longitude_deg": "-149.989444", + "elevation_ft": "548", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Talkeetna", + "scheduled_service": "no" + }, + { + "id": "338760", + "ident": "US-2424", + "type": "heliport", + "name": "Banner Ocotillo Medical Center Helipad", + "latitude_deg": "33.286131", + "longitude_deg": "-111.856602", + "elevation_ft": "1275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Chandler", + "scheduled_service": "no", + "gps_code": "AZ77", + "local_code": "AZ77" + }, + { + "id": "338761", + "ident": "US-2425", + "type": "small_airport", + "name": "Lykes Silver Lake Airport", + "latitude_deg": "26.916974", + "longitude_deg": "-81.562583", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "LaBelle", + "scheduled_service": "no", + "gps_code": "FL36", + "local_code": "FL36" + }, + { + "id": "338762", + "ident": "US-2426", + "type": "small_airport", + "name": "Elf Run Airport", + "latitude_deg": "41.352361", + "longitude_deg": "-94.211667", + "elevation_ft": "1227", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Winterset", + "scheduled_service": "no", + "gps_code": "IA76", + "local_code": "IA76" + }, + { + "id": "338763", + "ident": "US-2427", + "type": "small_airport", + "name": "Arivaca Hay Field Glider Landing Site", + "latitude_deg": "31.55939", + "longitude_deg": "-111.29803", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Arivaca", + "scheduled_service": "no" + }, + { + "id": "338764", + "ident": "US-2428", + "type": "closed", + "name": "Arivaca Landing Strip", + "latitude_deg": "31.58296", + "longitude_deg": "-111.338", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Arivaca", + "scheduled_service": "no" + }, + { + "id": "338765", + "ident": "US-2429", + "type": "small_airport", + "name": "Buenos Aires Airstrip", + "latitude_deg": "31.58628", + "longitude_deg": "-111.52282", + "elevation_ft": "3493", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sasabe", + "scheduled_service": "no" + }, + { + "id": "338766", + "ident": "US-2430", + "type": "closed", + "name": "Elk Horn Ranch Airport", + "latitude_deg": "31.81582", + "longitude_deg": "-111.46744", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sasabe", + "scheduled_service": "no" + }, + { + "id": "338767", + "ident": "US-2431", + "type": "closed", + "name": "Rancho Laos Airstrip", + "latitude_deg": "31.83825", + "longitude_deg": "-111.40056", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sasabe", + "scheduled_service": "no" + }, + { + "id": "338768", + "ident": "US-2432", + "type": "small_airport", + "name": "Flying Alpaca Airport", + "latitude_deg": "44.205428", + "longitude_deg": "-121.280792", + "elevation_ft": "3140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Redmond", + "scheduled_service": "no", + "gps_code": "OR79", + "local_code": "OR79" + }, + { + "id": "338769", + "ident": "US-2433", + "type": "small_airport", + "name": "Hideaway Airport", + "latitude_deg": "44.27526", + "longitude_deg": "-120.73558", + "elevation_ft": "3675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Prineville", + "scheduled_service": "no", + "gps_code": "OR85", + "local_code": "OR85" + }, + { + "id": "338770", + "ident": "US-2434", + "type": "small_airport", + "name": "Sands Airport", + "latitude_deg": "48.257888", + "longitude_deg": "-114.173398", + "elevation_ft": "3003", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Kalispell", + "scheduled_service": "no", + "gps_code": "MT89", + "local_code": "MT89" + }, + { + "id": "338771", + "ident": "US-2435", + "type": "heliport", + "name": "Concordia Parish Hospital District No 1 Heliport", + "latitude_deg": "31.6112", + "longitude_deg": "-91.5263", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Ferriday", + "scheduled_service": "no", + "gps_code": "LS50", + "local_code": "LS50" + }, + { + "id": "338772", + "ident": "US-2436", + "type": "closed", + "name": "Laredo Auxiliary Airfield #2", + "latitude_deg": "27.47317", + "longitude_deg": "-99.22501", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laredo", + "scheduled_service": "no" + }, + { + "id": "338776", + "ident": "US-2437", + "type": "closed", + "name": "Powderhorn Landing Field", + "latitude_deg": "28.49569", + "longitude_deg": "-96.47058", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seadrift", + "scheduled_service": "no" + }, + { + "id": "338777", + "ident": "US-2438", + "type": "heliport", + "name": "US Coast Guard Station Port O'Connor Heliport", + "latitude_deg": "28.43417", + "longitude_deg": "-96.42738", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port O'Connor", + "scheduled_service": "no" + }, + { + "id": "338778", + "ident": "US-2439", + "type": "closed", + "name": "Hagemeisters Twin Pine Ranch Airport", + "latitude_deg": "42.32912", + "longitude_deg": "-105.25283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Wheatland", + "scheduled_service": "no" + }, + { + "id": "338779", + "ident": "US-2440", + "type": "closed", + "name": "Horseshoe Creek Landing Strip", + "latitude_deg": "42.4511", + "longitude_deg": "-105.0144", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Glendo", + "scheduled_service": "no" + }, + { + "id": "338780", + "ident": "US-2441", + "type": "closed", + "name": "Dubois Landing Field", + "latitude_deg": "43.54372", + "longitude_deg": "-109.64519", + "elevation_ft": "7231", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Dubois", + "scheduled_service": "no" + }, + { + "id": "338781", + "ident": "US-2442", + "type": "closed", + "name": "Prairie Island-Schaller Airport", + "latitude_deg": "44.66339", + "longitude_deg": "-92.7106", + "elevation_ft": "711", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Welch", + "scheduled_service": "no" + }, + { + "id": "338782", + "ident": "US-2443", + "type": "closed", + "name": "Lakelawn Private Airport", + "latitude_deg": "42.93276", + "longitude_deg": "-76.44446", + "elevation_ft": "988", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Skaneateles", + "scheduled_service": "no" + }, + { + "id": "338783", + "ident": "US-2444", + "type": "closed", + "name": "Holingreen Ranch Airport", + "latitude_deg": "29.1033", + "longitude_deg": "-100.13725", + "elevation_ft": "851", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Uvalde", + "scheduled_service": "no" + }, + { + "id": "338784", + "ident": "US-2445", + "type": "small_airport", + "name": "Anacacho Wind Farm Landing Strip", + "latitude_deg": "29.20179", + "longitude_deg": "-100.18862", + "elevation_ft": "1229", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no" + }, + { + "id": "338785", + "ident": "US-2446", + "type": "small_airport", + "name": "Hobbs Ranch Airport", + "latitude_deg": "29.241", + "longitude_deg": "-100.3883", + "elevation_ft": "1087", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no" + }, + { + "id": "338786", + "ident": "US-2447", + "type": "closed", + "name": "Cueves Field", + "latitude_deg": "29.02708", + "longitude_deg": "-100.53477", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Quemado", + "scheduled_service": "no" + }, + { + "id": "338787", + "ident": "US-2448", + "type": "closed", + "name": "Putman Well Landing Strip", + "latitude_deg": "34.29265", + "longitude_deg": "-108.31305", + "elevation_ft": "7211", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Quemado", + "scheduled_service": "no" + }, + { + "id": "338788", + "ident": "US-2449", + "type": "closed", + "name": "Mangas Ranch Landing Area", + "latitude_deg": "34.2538", + "longitude_deg": "-108.35638", + "elevation_ft": "7210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Quemado", + "scheduled_service": "no" + }, + { + "id": "338789", + "ident": "US-2450", + "type": "closed", + "name": "Burke Ranch Landing Strip", + "latitude_deg": "28.82911", + "longitude_deg": "-100.14855", + "elevation_ft": "717", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eagle Pass", + "scheduled_service": "no" + }, + { + "id": "338790", + "ident": "US-2451", + "type": "small_airport", + "name": "Rockin L Ranch Landing Strip", + "latitude_deg": "28.91637", + "longitude_deg": "-100.11912", + "elevation_ft": "702", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eagle Pass", + "scheduled_service": "no" + }, + { + "id": "338791", + "ident": "US-2452", + "type": "small_airport", + "name": "Diamond C Ranch Landing Strip", + "latitude_deg": "28.89551", + "longitude_deg": "-100.22403", + "elevation_ft": "769", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eagle Pass", + "scheduled_service": "no" + }, + { + "id": "338792", + "ident": "US-2453", + "type": "closed", + "name": "Elm Creek Landing Strip", + "latitude_deg": "28.93223", + "longitude_deg": "-100.20423", + "elevation_ft": "744", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eagle Pass", + "scheduled_service": "no" + }, + { + "id": "338793", + "ident": "US-2454", + "type": "small_airport", + "name": "Double M Ranch Landing Strip", + "latitude_deg": "28.4771", + "longitude_deg": "-100.30372", + "elevation_ft": "718", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Indio", + "scheduled_service": "no" + }, + { + "id": "338794", + "ident": "US-2455", + "type": "balloonport", + "name": "Eagle Pass TARS Site", + "latitude_deg": "28.38537", + "longitude_deg": "-100.28594", + "elevation_ft": "709", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eagle Pass", + "scheduled_service": "no" + }, + { + "id": "338795", + "ident": "US-2456", + "type": "balloonport", + "name": "Fort Huachuca TARS Site", + "latitude_deg": "31.48581", + "longitude_deg": "-110.29571", + "elevation_ft": "4872", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Fort Huachuca", + "scheduled_service": "no" + }, + { + "id": "338796", + "ident": "US-2457", + "type": "balloonport", + "name": "Cudjoe Key South TARS Site", + "latitude_deg": "24.69609", + "longitude_deg": "-81.50449", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Cudjoe Key", + "scheduled_service": "no" + }, + { + "id": "338797", + "ident": "US-2458", + "type": "heliport", + "name": "Cudjoe Key Helipad", + "latitude_deg": "24.69567", + "longitude_deg": "-81.50429", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Cudjoe Key", + "scheduled_service": "no" + }, + { + "id": "338798", + "ident": "US-2459", + "type": "balloonport", + "name": "Cudjoe Key North TARS Site", + "latitude_deg": "24.70094", + "longitude_deg": "-81.5061", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Cudjoe Key", + "scheduled_service": "no" + }, + { + "id": "338799", + "ident": "US-2460", + "type": "balloonport", + "name": "Rio Grande City TARS Site", + "latitude_deg": "26.5723", + "longitude_deg": "-98.81714", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rio Grande City", + "scheduled_service": "no" + }, + { + "id": "338800", + "ident": "US-2461", + "type": "balloonport", + "name": "Deming TARS Site", + "latitude_deg": "32.02655", + "longitude_deg": "-107.86418", + "elevation_ft": "4216", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Deming", + "scheduled_service": "no" + }, + { + "id": "338801", + "ident": "US-2462", + "type": "closed", + "name": "Matagorda TARS Site", + "latitude_deg": "28.71051", + "longitude_deg": "-95.95766", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Matagorda", + "scheduled_service": "no" + }, + { + "id": "338802", + "ident": "US-2463", + "type": "closed", + "name": "Morgan City TARS Site", + "latitude_deg": "29.810622", + "longitude_deg": "-91.663007", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Franklin", + "scheduled_service": "no" + }, + { + "id": "338803", + "ident": "US-2464", + "type": "balloonport", + "name": "Yuma TARS Site", + "latitude_deg": "33.01587", + "longitude_deg": "-114.24328", + "elevation_ft": "991", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yuma", + "scheduled_service": "no" + }, + { + "id": "338804", + "ident": "US-2465", + "type": "balloonport", + "name": "Marfa TARS Site", + "latitude_deg": "30.4344", + "longitude_deg": "-104.32061", + "elevation_ft": "4701", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Shafter", + "scheduled_service": "no" + }, + { + "id": "338805", + "ident": "US-2466", + "type": "small_airport", + "name": "Silicz Boyz / Wagy Flat Landing Strip", + "latitude_deg": "35.66404", + "longitude_deg": "-118.54716", + "elevation_ft": "4534", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lake Isabella", + "scheduled_service": "no" + }, + { + "id": "338806", + "ident": "US-2467", + "type": "small_airport", + "name": "Carver's Cut Landing Strip", + "latitude_deg": "36.00557", + "longitude_deg": "-118.49114", + "elevation_ft": "4508", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Johnsondale", + "scheduled_service": "no" + }, + { + "id": "338807", + "ident": "US-2468", + "type": "small_airport", + "name": "Goler Heights Airstrip", + "latitude_deg": "35.42767", + "longitude_deg": "-117.73328", + "elevation_ft": "2472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Randsburg", + "scheduled_service": "no" + }, + { + "id": "338808", + "ident": "US-2469", + "type": "small_airport", + "name": "Holland Camp Airstrip", + "latitude_deg": "35.46051", + "longitude_deg": "-117.79401", + "elevation_ft": "3302", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Randsburg", + "scheduled_service": "no" + }, + { + "id": "338809", + "ident": "US-2470", + "type": "small_airport", + "name": "Rick's Strip", + "latitude_deg": "35.62674", + "longitude_deg": "-118.26595", + "elevation_ft": "2949", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Weldon", + "scheduled_service": "no" + }, + { + "id": "338810", + "ident": "US-2471", + "type": "small_airport", + "name": "Casa Rojo Airport", + "latitude_deg": "29.55558", + "longitude_deg": "-100.41822", + "elevation_ft": "1683", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no" + }, + { + "id": "338811", + "ident": "US-2472", + "type": "closed", + "name": "De Long Ranch Airport", + "latitude_deg": "29.56696", + "longitude_deg": "-100.35823", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no" + }, + { + "id": "338812", + "ident": "US-2473", + "type": "closed", + "name": "Pamandan Ranch Airport", + "latitude_deg": "29.56653", + "longitude_deg": "-100.33856", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no" + }, + { + "id": "338813", + "ident": "US-2474", + "type": "closed", + "name": "Silver Lake Ranch Airport", + "latitude_deg": "29.55543", + "longitude_deg": "-100.27395", + "elevation_ft": "1574", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no" + }, + { + "id": "338814", + "ident": "US-2475", + "type": "closed", + "name": "Shields Ranch Airport", + "latitude_deg": "29.65875", + "longitude_deg": "-99.96011", + "elevation_ft": "1592", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Camp Wood", + "scheduled_service": "no" + }, + { + "id": "338815", + "ident": "US-2476", + "type": "small_airport", + "name": "Flat Rock Creek Landing Strip", + "latitude_deg": "29.59578", + "longitude_deg": "-100.54625", + "elevation_ft": "1540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no" + }, + { + "id": "338816", + "ident": "US-2477", + "type": "closed", + "name": "Mud Creek Airport", + "latitude_deg": "29.44291", + "longitude_deg": "-100.63125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no" + }, + { + "id": "338817", + "ident": "US-2478", + "type": "small_airport", + "name": "A Foyt Ranch Airport", + "latitude_deg": "29.413675", + "longitude_deg": "-100.596485", + "elevation_ft": "1172", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no" + }, + { + "id": "338818", + "ident": "US-2479", + "type": "small_airport", + "name": "Pinto Creek Airport", + "latitude_deg": "29.3952", + "longitude_deg": "-100.46863", + "elevation_ft": "1172", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no" + }, + { + "id": "338819", + "ident": "US-2480", + "type": "closed", + "name": "Elm Creek Airport", + "latitude_deg": "29.38869", + "longitude_deg": "-100.45335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no" + }, + { + "id": "338820", + "ident": "US-2481", + "type": "closed", + "name": "Pinto Springs Airport", + "latitude_deg": "29.3974", + "longitude_deg": "-100.44482", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no" + }, + { + "id": "338821", + "ident": "US-2482", + "type": "small_airport", + "name": "Doak Ranch Airport", + "latitude_deg": "29.57056", + "longitude_deg": "-100.787356", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no" + }, + { + "id": "338822", + "ident": "US-2483", + "type": "closed", + "name": "Gillis Ranch Airport", + "latitude_deg": "29.60009", + "longitude_deg": "-100.78823", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no" + }, + { + "id": "338823", + "ident": "US-2484", + "type": "small_airport", + "name": "Grass Patch Springs Airport", + "latitude_deg": "29.87302", + "longitude_deg": "-100.99509", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comstock", + "scheduled_service": "no" + }, + { + "id": "338824", + "ident": "US-2485", + "type": "closed", + "name": "Dolan Falls Airport", + "latitude_deg": "29.89143", + "longitude_deg": "-100.99754", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comstock", + "scheduled_service": "no" + }, + { + "id": "338825", + "ident": "US-2486", + "type": "small_airport", + "name": "Grey Canyon Airport", + "latitude_deg": "29.92646", + "longitude_deg": "-101.09093", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comstock", + "scheduled_service": "no" + }, + { + "id": "338826", + "ident": "US-2487", + "type": "small_airport", + "name": "Virgil Cauthorn Ranch Airport", + "latitude_deg": "30.0974", + "longitude_deg": "-101.0791", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no" + }, + { + "id": "338827", + "ident": "US-2488", + "type": "small_airport", + "name": "Robert Cauthorn Ranch Airport", + "latitude_deg": "30.11153", + "longitude_deg": "-101.05483", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no" + }, + { + "id": "338828", + "ident": "US-2489", + "type": "small_airport", + "name": "Juno Airport", + "latitude_deg": "30.1817", + "longitude_deg": "-101.0872", + "elevation_ft": "1755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no" + }, + { + "id": "338829", + "ident": "US-2490", + "type": "small_airport", + "name": "Thomas Ranch Airport", + "latitude_deg": "30.20112", + "longitude_deg": "-100.96423", + "elevation_ft": "1823", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no" + }, + { + "id": "338830", + "ident": "US-2491", + "type": "closed", + "name": "Wilkins Ranch Airport", + "latitude_deg": "30.66333", + "longitude_deg": "-101.07317", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no" + }, + { + "id": "338831", + "ident": "US-2492", + "type": "closed", + "name": "R Mayer Ranch Airport", + "latitude_deg": "30.66869", + "longitude_deg": "-100.9099", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no" + }, + { + "id": "338832", + "ident": "US-2493", + "type": "small_airport", + "name": "Bill Moody Ranch Airport", + "latitude_deg": "29.1414", + "longitude_deg": "-100.72064", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no" + }, + { + "id": "338833", + "ident": "US-2494", + "type": "small_airport", + "name": "Hadley Wardlaw Ranch Airport", + "latitude_deg": "29.30618", + "longitude_deg": "-100.64597", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no" + }, + { + "id": "338835", + "ident": "US-2495", + "type": "closed", + "name": "Hicks Field (1917) / Camp Taliaferro Field #1", + "latitude_deg": "32.91052", + "longitude_deg": "-97.39883", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no" + }, + { + "id": "338836", + "ident": "US-2496", + "type": "heliport", + "name": "Seton Medical Center Harker Heights Heliport", + "latitude_deg": "31.072", + "longitude_deg": "-97.68214", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Harker Heights", + "scheduled_service": "no", + "gps_code": "28TS", + "local_code": "28TS" + }, + { + "id": "338837", + "ident": "US-2497", + "type": "closed", + "name": "Quilotosa Wash Target Strip", + "latitude_deg": "32.71474", + "longitude_deg": "-112.59854", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gila Bend", + "scheduled_service": "no" + }, + { + "id": "338838", + "ident": "US-2498", + "type": "closed", + "name": "Sauceda Wash Target Strip", + "latitude_deg": "32.66839", + "longitude_deg": "-112.61756", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gila Bend", + "scheduled_service": "no" + }, + { + "id": "338849", + "ident": "US-2499", + "type": "closed", + "name": "Manawaiopuna Falls (Jurassic Park) Helipad", + "latitude_deg": "21.9879", + "longitude_deg": "-159.52606", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Eleele", + "scheduled_service": "no" + }, + { + "id": "338850", + "ident": "US-2500", + "type": "heliport", + "name": "Manawaiopuna Falls (Island Helicopters) Helipad", + "latitude_deg": "21.98762", + "longitude_deg": "-159.52756", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Eleele", + "scheduled_service": "no" + }, + { + "id": "338851", + "ident": "US-2501", + "type": "closed", + "name": "Kealia Landing Strip", + "latitude_deg": "22.130698", + "longitude_deg": "-159.338118", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kapaa", + "scheduled_service": "no" + }, + { + "id": "338852", + "ident": "US-2502", + "type": "heliport", + "name": "Makaha Ridge Heliport", + "latitude_deg": "22.13063", + "longitude_deg": "-159.72739", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Waimea", + "scheduled_service": "no" + }, + { + "id": "338853", + "ident": "US-2503", + "type": "closed", + "name": "Dysart Mine Airstrip", + "latitude_deg": "35.45583", + "longitude_deg": "-107.87031", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Cuba", + "scheduled_service": "no" + }, + { + "id": "338854", + "ident": "US-2504", + "type": "closed", + "name": "Lee Ranch Airport", + "latitude_deg": "35.342087", + "longitude_deg": "-107.668954", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Grants", + "scheduled_service": "no" + }, + { + "id": "338855", + "ident": "US-2505", + "type": "closed", + "name": "Ciniza Airstrip", + "latitude_deg": "35.494231", + "longitude_deg": "-108.43195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Jamestown", + "scheduled_service": "no" + }, + { + "id": "338856", + "ident": "US-2506", + "type": "closed", + "name": "Anaconda Bluewater Airport", + "latitude_deg": "35.26147", + "longitude_deg": "-107.95435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Bluewater", + "scheduled_service": "no" + }, + { + "id": "338857", + "ident": "US-2507", + "type": "closed", + "name": "Laguna Compressor Station Landing Strip", + "latitude_deg": "34.98552", + "longitude_deg": "-107.30786", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Mesita", + "scheduled_service": "no" + }, + { + "id": "338858", + "ident": "US-2508", + "type": "closed", + "name": "Paguate (Jackpile Mine) Airport", + "latitude_deg": "35.1281", + "longitude_deg": "-107.3419", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Paguate", + "scheduled_service": "no" + }, + { + "id": "338859", + "ident": "US-2509", + "type": "heliport", + "name": "Mirasol Hills Heliport", + "latitude_deg": "30.321327", + "longitude_deg": "-98.158979", + "elevation_ft": "1043", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dripping Springs", + "scheduled_service": "no", + "gps_code": "TA22", + "local_code": "TA22" + }, + { + "id": "338862", + "ident": "US-2510", + "type": "small_airport", + "name": "Flatlander Airport", + "latitude_deg": "41.141411", + "longitude_deg": "-95.194381", + "elevation_ft": "1081", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Elliott", + "scheduled_service": "no", + "gps_code": "03IA", + "local_code": "03IA" + }, + { + "id": "338865", + "ident": "US-2511", + "type": "heliport", + "name": "Indiana University Health Inc Heliport", + "latitude_deg": "39.178222", + "longitude_deg": "-86.497769", + "elevation_ft": "839", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bloomington", + "scheduled_service": "no", + "gps_code": "06IN", + "local_code": "06IN" + }, + { + "id": "338866", + "ident": "US-2512", + "type": "heliport", + "name": "Indiana University Health Inc Heliport", + "latitude_deg": "39.178222", + "longitude_deg": "-86.497769", + "elevation_ft": "839", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Bloomington", + "scheduled_service": "no", + "gps_code": "06IN", + "local_code": "06IN" + }, + { + "id": "338867", + "ident": "US-2513", + "type": "heliport", + "name": "Winkler Helistop", + "latitude_deg": "26.480979", + "longitude_deg": "-81.896387", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ft Myers", + "scheduled_service": "no", + "gps_code": "15FD", + "local_code": "15FD" + }, + { + "id": "338871", + "ident": "US-2514", + "type": "small_airport", + "name": "Skyraider Skyranch Airport", + "latitude_deg": "46.849567", + "longitude_deg": "-122.470243", + "elevation_ft": "407", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Yelm", + "scheduled_service": "no", + "gps_code": "20WA", + "local_code": "20WA" + }, + { + "id": "338882", + "ident": "US-2515", + "type": "small_airport", + "name": "El Tejano Airport", + "latitude_deg": "29.427306", + "longitude_deg": "-95.162306", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alvin", + "scheduled_service": "no", + "gps_code": "23XA", + "local_code": "23XA" + }, + { + "id": "338892", + "ident": "US-2516", + "type": "closed", + "name": "Athens Airport", + "latitude_deg": "42.28355", + "longitude_deg": "-73.84527", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Athens", + "scheduled_service": "no" + }, + { + "id": "338893", + "ident": "US-2517", + "type": "closed", + "name": "Catskill Valley Airport", + "latitude_deg": "42.1951", + "longitude_deg": "-73.88911", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Catskill", + "scheduled_service": "no" + }, + { + "id": "338894", + "ident": "US-2518", + "type": "small_airport", + "name": "Flying K Ranch Airport", + "latitude_deg": "31.70414", + "longitude_deg": "-109.7892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Elfrida", + "scheduled_service": "no" + }, + { + "id": "338895", + "ident": "US-2519", + "type": "small_airport", + "name": "Dawn Ridge Airport", + "latitude_deg": "31.71053", + "longitude_deg": "-109.79427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Elfrida", + "scheduled_service": "no" + }, + { + "id": "338896", + "ident": "US-2520", + "type": "small_airport", + "name": "Elfrida Landing Strip", + "latitude_deg": "31.71796", + "longitude_deg": "-109.67894", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Elfrida", + "scheduled_service": "no" + }, + { + "id": "338897", + "ident": "US-2521", + "type": "closed", + "name": "Willcox Playa Emergency Landing Field", + "latitude_deg": "32.16529", + "longitude_deg": "-109.81273", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Willcox", + "scheduled_service": "no" + }, + { + "id": "338898", + "ident": "US-2522", + "type": "small_airport", + "name": "Sunland Farms Airport", + "latitude_deg": "32.02859", + "longitude_deg": "-109.90098", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Cochise", + "scheduled_service": "no" + }, + { + "id": "338899", + "ident": "US-2523", + "type": "closed", + "name": "Cochise Stronghold South Landing Strip", + "latitude_deg": "32.04319", + "longitude_deg": "-109.92316", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Cochise", + "scheduled_service": "no" + }, + { + "id": "338900", + "ident": "US-2524", + "type": "closed", + "name": "Zarpara Airport", + "latitude_deg": "32.11413", + "longitude_deg": "-109.72111", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Willcox", + "scheduled_service": "no" + }, + { + "id": "338901", + "ident": "US-2525", + "type": "closed", + "name": "Woodcreek Resort Airport", + "latitude_deg": "30.03332", + "longitude_deg": "-98.11733", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Woodcreek", + "scheduled_service": "no" + }, + { + "id": "338902", + "ident": "US-2526", + "type": "heliport", + "name": "Houston Healthcare Hospital Heliport", + "latitude_deg": "32.615397", + "longitude_deg": "-83.630544", + "elevation_ft": "434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Warner Robins", + "scheduled_service": "no", + "gps_code": "2GA3", + "local_code": "2GA3" + }, + { + "id": "338903", + "ident": "US-2527", + "type": "small_airport", + "name": "Lima Airport", + "latitude_deg": "29.85647", + "longitude_deg": "-99.37684", + "elevation_ft": "1750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Medina", + "scheduled_service": "no", + "keywords": "Horse Valley Ranch" + }, + { + "id": "338904", + "ident": "US-2528", + "type": "small_airport", + "name": "Johnson Ranch Airport", + "latitude_deg": "29.815737", + "longitude_deg": "-99.385715", + "elevation_ft": "2156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Medina", + "scheduled_service": "no" + }, + { + "id": "338905", + "ident": "US-2529", + "type": "heliport", + "name": "Northside Hospital Forsyth Heliport", + "latitude_deg": "34.179802", + "longitude_deg": "-84.140173", + "elevation_ft": "1213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Cumming", + "scheduled_service": "no", + "gps_code": "2GA4", + "local_code": "2GA4" + }, + { + "id": "338906", + "ident": "US-2530", + "type": "closed", + "name": "Trails End Ranch Airport", + "latitude_deg": "29.78346", + "longitude_deg": "-99.34958", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Medina", + "scheduled_service": "no" + }, + { + "id": "338907", + "ident": "US-2531", + "type": "closed", + "name": "Means Landing Strip", + "latitude_deg": "29.86128", + "longitude_deg": "-99.33905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Medina", + "scheduled_service": "no" + }, + { + "id": "338908", + "ident": "US-2532", + "type": "closed", + "name": "Circle R Sky Ranch Airport", + "latitude_deg": "29.822", + "longitude_deg": "-99.2621", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Medina", + "scheduled_service": "no" + }, + { + "id": "338909", + "ident": "US-2533", + "type": "closed", + "name": "Sides Airport", + "latitude_deg": "29.7881", + "longitude_deg": "-99.28205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Medina", + "scheduled_service": "no" + }, + { + "id": "338910", + "ident": "US-2534", + "type": "closed", + "name": "Peaceful Valley Airport", + "latitude_deg": "29.7767", + "longitude_deg": "-99.1559", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bandera", + "scheduled_service": "no" + }, + { + "id": "338911", + "ident": "US-2535", + "type": "closed", + "name": "Valdina Ranch Airport", + "latitude_deg": "29.49569", + "longitude_deg": "-99.38783", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "D'Hanis", + "scheduled_service": "no" + }, + { + "id": "338912", + "ident": "US-2536", + "type": "closed", + "name": "Seco Bluffs Airport", + "latitude_deg": "29.31761", + "longitude_deg": "-99.32587", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "D'Hanis", + "scheduled_service": "no" + }, + { + "id": "338913", + "ident": "US-2537", + "type": "small_airport", + "name": "Saddle Mountain Airport", + "latitude_deg": "29.69864", + "longitude_deg": "-99.726377", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rio Frio", + "scheduled_service": "no" + }, + { + "id": "338914", + "ident": "US-2538", + "type": "heliport", + "name": "The Barclay Condos Helipad", + "latitude_deg": "33.849042", + "longitude_deg": "-84.379683", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Atlanta", + "scheduled_service": "no", + "gps_code": "2GE9", + "local_code": "2GE9" + }, + { + "id": "338915", + "ident": "US-2539", + "type": "small_airport", + "name": "Montague Lake Airport", + "latitude_deg": "29.76385", + "longitude_deg": "-99.11345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bandera", + "scheduled_service": "no" + }, + { + "id": "338916", + "ident": "US-2540", + "type": "closed", + "name": "Flying L Guest Ranch Airport", + "latitude_deg": "29.71139", + "longitude_deg": "-99.04558", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bandera", + "scheduled_service": "no" + }, + { + "id": "338917", + "ident": "US-2541", + "type": "heliport", + "name": "Jefferson Cherry Hill Hospital Heliport", + "latitude_deg": "39.928131", + "longitude_deg": "-75.015475", + "elevation_ft": "182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Cherry Hill", + "scheduled_service": "no", + "gps_code": "31NJ", + "local_code": "31NJ" + }, + { + "id": "338918", + "ident": "US-2542", + "type": "heliport", + "name": "Christus Spohn Corpus Christi Shoreline Hospital Heliport", + "latitude_deg": "27.77787", + "longitude_deg": "-97.39436", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no" + }, + { + "id": "338919", + "ident": "US-2543", + "type": "heliport", + "name": "Christus Mother Frances Hospital Winnsboro Heliport", + "latitude_deg": "32.9462", + "longitude_deg": "-95.30666", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Winnsboro", + "scheduled_service": "no", + "gps_code": "11TA", + "local_code": "11TA" + }, + { + "id": "338920", + "ident": "US-2544", + "type": "seaplane_base", + "name": "Adams Seaplane Base", + "latitude_deg": "46.973611", + "longitude_deg": "-94.033889", + "elevation_ft": "1306", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Remer", + "scheduled_service": "no", + "gps_code": "4MN7", + "local_code": "4MN7" + }, + { + "id": "338921", + "ident": "US-2545", + "type": "small_airport", + "name": "Lamb Ranch Airport", + "latitude_deg": "38.027312", + "longitude_deg": "-95.115327", + "elevation_ft": "1009", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Mildred", + "scheduled_service": "no", + "gps_code": "59KS", + "local_code": "59KS" + }, + { + "id": "338922", + "ident": "US-2546", + "type": "small_airport", + "name": "Willys Lake Airport", + "latitude_deg": "38.19685", + "longitude_deg": "-98.182575", + "elevation_ft": "1631", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Sterling", + "scheduled_service": "no", + "gps_code": "68KS", + "local_code": "68KS" + }, + { + "id": "338925", + "ident": "US-2547", + "type": "seaplane_base", + "name": "Lake Samish Seaplane Base", + "latitude_deg": "48.673152", + "longitude_deg": "-122.401214", + "elevation_ft": "278", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Bellingham", + "scheduled_service": "no", + "gps_code": "93WA", + "local_code": "93WA" + }, + { + "id": "338926", + "ident": "US-2548", + "type": "heliport", + "name": "Pendry EHLF Helipad", + "latitude_deg": "34.094917", + "longitude_deg": "-118.373212", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "West Hollywood", + "scheduled_service": "no", + "gps_code": "CL90", + "local_code": "CL90" + }, + { + "id": "338928", + "ident": "US-2549", + "type": "small_airport", + "name": "Bigfoot Turf Airport", + "latitude_deg": "40.324957", + "longitude_deg": "-104.6151", + "elevation_ft": "4785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "La Salle", + "scheduled_service": "no", + "gps_code": "CO70", + "local_code": "CO70" + }, + { + "id": "338929", + "ident": "US-2550", + "type": "heliport", + "name": "Buffalo Hospital Heliport", + "latitude_deg": "45.193847", + "longitude_deg": "-93.869758", + "elevation_ft": "999", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Buffalo", + "scheduled_service": "no", + "gps_code": "MN03", + "local_code": "MN03" + }, + { + "id": "338930", + "ident": "US-2551", + "type": "small_airport", + "name": "Bowen Field Ultralight Flightpark", + "latitude_deg": "39.524389", + "longitude_deg": "-92.741815", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Prairie Hill", + "scheduled_service": "no", + "gps_code": "MO61", + "local_code": "MO61" + }, + { + "id": "338931", + "ident": "US-2552", + "type": "heliport", + "name": "UC San Diego Medical Center Helipad", + "latitude_deg": "32.75418", + "longitude_deg": "-117.16552", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "338932", + "ident": "US-2553", + "type": "closed", + "name": "Speer Airport", + "latitude_deg": "32.74673", + "longitude_deg": "-117.20357", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "338933", + "ident": "US-2554", + "type": "closed", + "name": "Grande Vista Airport", + "latitude_deg": "32.58243", + "longitude_deg": "-117.06669", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "338934", + "ident": "US-2555", + "type": "closed", + "name": "Wolfe Airpark", + "latitude_deg": "32.58559", + "longitude_deg": "-117.0526", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "338935", + "ident": "US-2556", + "type": "closed", + "name": "Borderland Field", + "latitude_deg": "32.5699", + "longitude_deg": "-117.06535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "338936", + "ident": "US-2557", + "type": "closed", + "name": "US Border Patrol Imperial Beach Heliport", + "latitude_deg": "32.56496", + "longitude_deg": "-117.10045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Imperial Beach", + "scheduled_service": "no" + }, + { + "id": "338937", + "ident": "US-2558", + "type": "heliport", + "name": "US Border Patrol Lordsburg Heliport", + "latitude_deg": "32.34963", + "longitude_deg": "-108.74642", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Lordsburg", + "scheduled_service": "no" + }, + { + "id": "338938", + "ident": "US-2559", + "type": "heliport", + "name": "US Border Patrol Bisbee Heliport", + "latitude_deg": "31.37687", + "longitude_deg": "-109.93083", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bisbee", + "scheduled_service": "no" + }, + { + "id": "338939", + "ident": "US-2560", + "type": "heliport", + "name": "US Border Patrol Nogales Heliport", + "latitude_deg": "31.35321", + "longitude_deg": "-110.96696", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Nogales", + "scheduled_service": "no" + }, + { + "id": "338940", + "ident": "US-2561", + "type": "heliport", + "name": "Holy Cross Hospital Heliport", + "latitude_deg": "31.34069", + "longitude_deg": "-110.96024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Nogales", + "scheduled_service": "no" + }, + { + "id": "338941", + "ident": "US-2562", + "type": "small_airport", + "name": "King Anvil Ranch Airstrip", + "latitude_deg": "31.99017", + "longitude_deg": "-111.382283", + "elevation_ft": "2714", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "338942", + "ident": "US-2563", + "type": "small_airport", + "name": "Diamond Bell Airstrip", + "latitude_deg": "32.03294", + "longitude_deg": "-111.35793", + "elevation_ft": "2621", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "338943", + "ident": "US-2564", + "type": "heliport", + "name": "Sells Indian Hospital Hlelipad", + "latitude_deg": "31.917916", + "longitude_deg": "-111.890221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sells", + "scheduled_service": "no" + }, + { + "id": "338944", + "ident": "US-2565", + "type": "heliport", + "name": "Kitt Peak Heliport", + "latitude_deg": "31.96083", + "longitude_deg": "-111.59832", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sells", + "scheduled_service": "no" + }, + { + "id": "338958", + "ident": "US-2566", + "type": "small_airport", + "name": "Ja Field", + "latitude_deg": "34.744306", + "longitude_deg": "-80.388889", + "elevation_ft": "570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Pageland", + "scheduled_service": "no", + "gps_code": "SC58", + "local_code": "SC58" + }, + { + "id": "338961", + "ident": "US-2567", + "type": "closed", + "name": "Agua Caliente Airstrip", + "latitude_deg": "33.26232", + "longitude_deg": "-112.80823", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Buckeye", + "scheduled_service": "no" + }, + { + "id": "338962", + "ident": "US-2568", + "type": "small_airport", + "name": "Daley Ranch Airport", + "latitude_deg": "33.000601", + "longitude_deg": "-116.473357", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Julian", + "scheduled_service": "no", + "keywords": "Peppertree Spring" + }, + { + "id": "338963", + "ident": "US-2569", + "type": "small_airport", + "name": "Butterfield Ranch Private Airstrip", + "latitude_deg": "32.98305", + "longitude_deg": "-116.435414", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Julian", + "scheduled_service": "no" + }, + { + "id": "338964", + "ident": "US-2570", + "type": "heliport", + "name": "Cal Fire San Diego Puerta La Cruz Helipad", + "latitude_deg": "33.32242", + "longitude_deg": "-116.68363", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Warner Springs", + "scheduled_service": "no" + }, + { + "id": "338965", + "ident": "US-2571", + "type": "small_airport", + "name": "Fulton Field", + "latitude_deg": "35.064867", + "longitude_deg": "-81.886554", + "elevation_ft": "836", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Spartanburg", + "scheduled_service": "no", + "gps_code": "SC66", + "local_code": "SC66" + }, + { + "id": "338966", + "ident": "US-2572", + "type": "small_airport", + "name": "Flying B Ranch Airport", + "latitude_deg": "30.099397", + "longitude_deg": "-95.861031", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waller", + "scheduled_service": "no", + "gps_code": "TA12", + "local_code": "TA12" + }, + { + "id": "338967", + "ident": "US-2573", + "type": "small_airport", + "name": "McCrea Airport", + "latitude_deg": "31.814697", + "longitude_deg": "-100.911814", + "elevation_ft": "2358", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sterling City", + "scheduled_service": "no", + "gps_code": "TA54", + "local_code": "TA54" + }, + { + "id": "338970", + "ident": "US-2574", + "type": "small_airport", + "name": "R-Ranch Airstrip", + "latitude_deg": "33.24225", + "longitude_deg": "-96.288667", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Merit", + "scheduled_service": "no", + "gps_code": "TE44", + "local_code": "TE44" + }, + { + "id": "338971", + "ident": "US-2575", + "type": "small_airport", + "name": "Joseph of Cupertino STOLport", + "latitude_deg": "33.650697", + "longitude_deg": "-97.432119", + "elevation_ft": "1093", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Muenster", + "scheduled_service": "no", + "gps_code": "TS20", + "local_code": "TS20" + }, + { + "id": "338972", + "ident": "US-2576", + "type": "small_airport", + "name": "Peeler Airpark", + "latitude_deg": "29.216212", + "longitude_deg": "-98.120967", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Floresville", + "scheduled_service": "no", + "gps_code": "TS47", + "local_code": "TS47" + }, + { + "id": "338976", + "ident": "US-2577", + "type": "heliport", + "name": "Shrub Oak Helistop", + "latitude_deg": "41.310553", + "longitude_deg": "-73.836158", + "elevation_ft": "663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Shrub Oak", + "scheduled_service": "no", + "gps_code": "31NY", + "local_code": "31NY" + }, + { + "id": "338977", + "ident": "US-2578", + "type": "heliport", + "name": "Northeast Methodist Hospital Rooftop Heliport", + "latitude_deg": "29.552404", + "longitude_deg": "-98.347281", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Live Oak", + "scheduled_service": "no", + "gps_code": "45TE", + "local_code": "45TE" + }, + { + "id": "338978", + "ident": "US-2579", + "type": "heliport", + "name": "A-1 Paint Horse Farm Heliport", + "latitude_deg": "42.011502", + "longitude_deg": "-85.094562", + "elevation_ft": "932", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Union City", + "scheduled_service": "no", + "gps_code": "8MI8", + "local_code": "8MI8" + }, + { + "id": "339036", + "ident": "US-2580", + "type": "heliport", + "name": "Residence Inn by Marriott Los Angeles LA Live Helipad", + "latitude_deg": "34.04606", + "longitude_deg": "-118.26564", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339037", + "ident": "US-2581", + "type": "heliport", + "name": "Ritz-Carlton Residences Helipad", + "latitude_deg": "34.04537", + "longitude_deg": "-118.266739", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339038", + "ident": "US-2582", + "type": "heliport", + "name": "Evo South Helipad", + "latitude_deg": "34.04043", + "longitude_deg": "-118.26346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339039", + "ident": "US-2583", + "type": "heliport", + "name": "Elleven Helipad", + "latitude_deg": "34.041382", + "longitude_deg": "-118.262721", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339040", + "ident": "US-2584", + "type": "heliport", + "name": "Luma Helipad", + "latitude_deg": "34.041636", + "longitude_deg": "-118.263273", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339041", + "ident": "US-2585", + "type": "heliport", + "name": "Oceanwide Plaza Helipad", + "latitude_deg": "34.042859", + "longitude_deg": "-118.264765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339042", + "ident": "US-2586", + "type": "heliport", + "name": "California Professional Center Helipad", + "latitude_deg": "34.036844", + "longitude_deg": "-118.265263", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339043", + "ident": "US-2587", + "type": "heliport", + "name": "Renaissance Tower Helipad", + "latitude_deg": "34.043348", + "longitude_deg": "-118.260757", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339044", + "ident": "US-2588", + "type": "heliport", + "name": "LEVEL Los Angeles Helipad", + "latitude_deg": "34.043788", + "longitude_deg": "-118.257657", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339045", + "ident": "US-2589", + "type": "heliport", + "name": "International Jewelry Plaza Helipad", + "latitude_deg": "34.047468", + "longitude_deg": "-118.252507", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339046", + "ident": "US-2590", + "type": "heliport", + "name": "600 Wilshire Helipad", + "latitude_deg": "34.04799", + "longitude_deg": "-118.25656", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339047", + "ident": "US-2591", + "type": "heliport", + "name": "655 Hope Helipad", + "latitude_deg": "34.0484", + "longitude_deg": "-118.25763", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339048", + "ident": "US-2592", + "type": "heliport", + "name": "Wilshire Grand Center Helipad", + "latitude_deg": "34.05008", + "longitude_deg": "-118.25984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339049", + "ident": "US-2593", + "type": "heliport", + "name": "Ernst & Young Plaza Helipad", + "latitude_deg": "34.04933", + "longitude_deg": "-118.26067", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339050", + "ident": "US-2594", + "type": "heliport", + "name": "777 Tower Helipad", + "latitude_deg": "34.04859", + "longitude_deg": "-118.26136", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339051", + "ident": "US-2595", + "type": "heliport", + "name": "801 Tower Helipad", + "latitude_deg": "34.0479", + "longitude_deg": "-118.26181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339052", + "ident": "US-2596", + "type": "heliport", + "name": "800 South Figueroa Helipad", + "latitude_deg": "34.047535", + "longitude_deg": "-118.26095", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339053", + "ident": "US-2597", + "type": "heliport", + "name": "Titan Offices Helipad", + "latitude_deg": "34.050784", + "longitude_deg": "-118.263059", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339054", + "ident": "US-2598", + "type": "heliport", + "name": "1100 Wilshire Helipad", + "latitude_deg": "34.052152", + "longitude_deg": "-118.263802", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339055", + "ident": "US-2599", + "type": "heliport", + "name": "Wedbush Center Helipad", + "latitude_deg": "34.05051", + "longitude_deg": "-118.26125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339056", + "ident": "US-2600", + "type": "heliport", + "name": "Figueroa at Wilshire Helipad", + "latitude_deg": "34.050793", + "longitude_deg": "-118.259298", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "keywords": "Sanwa Bank Plaza" + }, + { + "id": "339057", + "ident": "US-2601", + "type": "heliport", + "name": "NineFifteen Helipad", + "latitude_deg": "34.05102", + "longitude_deg": "-118.26006", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "keywords": "Sanwa Tower" + }, + { + "id": "339058", + "ident": "US-2602", + "type": "heliport", + "name": "Maunlife Investment Plaza Helipad", + "latitude_deg": "34.052139", + "longitude_deg": "-118.258134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339059", + "ident": "US-2603", + "type": "heliport", + "name": "Citigroup Center Helipad", + "latitude_deg": "34.05175", + "longitude_deg": "-118.25505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339060", + "ident": "US-2604", + "type": "heliport", + "name": "US Bank Tower Helipad", + "latitude_deg": "34.051051", + "longitude_deg": "-118.254422", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339061", + "ident": "US-2605", + "type": "heliport", + "name": "400 South Hope Helipad", + "latitude_deg": "34.05153", + "longitude_deg": "-118.25359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339062", + "ident": "US-2606", + "type": "heliport", + "name": "Wells Fargo Center South Tower Helipad", + "latitude_deg": "34.052104", + "longitude_deg": "-118.252673", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339063", + "ident": "US-2607", + "type": "heliport", + "name": "Wells Fargo Center North Tower Helipad", + "latitude_deg": "34.052864", + "longitude_deg": "-118.251944", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339064", + "ident": "US-2608", + "type": "heliport", + "name": "LA Grand Hotel Helipad", + "latitude_deg": "34.054353", + "longitude_deg": "-118.255763", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339065", + "ident": "US-2609", + "type": "heliport", + "name": "Promenade Towers South Helipad", + "latitude_deg": "34.05723", + "longitude_deg": "-118.25365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339066", + "ident": "US-2610", + "type": "heliport", + "name": "Promenade Towers North Helipad", + "latitude_deg": "34.05772", + "longitude_deg": "-118.25246", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339067", + "ident": "US-2611", + "type": "heliport", + "name": "Figueroa Plaza West Tower Helipad", + "latitude_deg": "34.05897", + "longitude_deg": "-118.2517", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339068", + "ident": "US-2612", + "type": "heliport", + "name": "Figueroa Plaza East Tower Helipad", + "latitude_deg": "34.05929", + "longitude_deg": "-118.25108", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339069", + "ident": "US-2613", + "type": "heliport", + "name": "255 Grand Tower Helipad", + "latitude_deg": "34.05368", + "longitude_deg": "-118.25156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339070", + "ident": "US-2614", + "type": "heliport", + "name": "One California Plaza Helipad", + "latitude_deg": "34.052259", + "longitude_deg": "-118.251396", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339071", + "ident": "US-2615", + "type": "heliport", + "name": "Two California Plaza Helipad", + "latitude_deg": "34.051499", + "longitude_deg": "-118.251708", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339072", + "ident": "US-2616", + "type": "heliport", + "name": "Metropolis Los Angeles South Helipad", + "latitude_deg": "34.048206", + "longitude_deg": "-118.263627", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339073", + "ident": "US-2617", + "type": "heliport", + "name": "Metropolis Los Angeles North Helipad", + "latitude_deg": "34.048801", + "longitude_deg": "-118.263595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339074", + "ident": "US-2618", + "type": "heliport", + "name": "TenTen Wilshire Helipad", + "latitude_deg": "34.05156", + "longitude_deg": "-118.26223", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339075", + "ident": "US-2619", + "type": "heliport", + "name": "Little Tokyo Towers Helipad", + "latitude_deg": "34.047335", + "longitude_deg": "-118.240625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339076", + "ident": "US-2620", + "type": "heliport", + "name": "420 E 3rd St Helipad", + "latitude_deg": "34.046726", + "longitude_deg": "-118.242298", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339077", + "ident": "US-2621", + "type": "heliport", + "name": "Ronald Reagan State Building North Helipad", + "latitude_deg": "34.0498", + "longitude_deg": "-118.24664", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339078", + "ident": "US-2622", + "type": "heliport", + "name": "Ronald Reagan State Building South Helipad", + "latitude_deg": "34.04915", + "longitude_deg": "-118.24702", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339079", + "ident": "US-2623", + "type": "heliport", + "name": "Helipad at the Emerson", + "latitude_deg": "34.054153", + "longitude_deg": "-118.251327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339080", + "ident": "US-2624", + "type": "heliport", + "name": "Museum Tower Helipad", + "latitude_deg": "34.053175", + "longitude_deg": "-118.249851", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339081", + "ident": "US-2625", + "type": "heliport", + "name": "Omni Los Angeles Hotel Helipad", + "latitude_deg": "34.052695", + "longitude_deg": "-118.250366", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339082", + "ident": "US-2626", + "type": "heliport", + "name": "Angelus Plaza 300 Helipad", + "latitude_deg": "34.051886", + "longitude_deg": "-118.250163", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339083", + "ident": "US-2627", + "type": "heliport", + "name": "Angelus Plaza 240 Helipad", + "latitude_deg": "34.052415", + "longitude_deg": "-118.249685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339084", + "ident": "US-2628", + "type": "heliport", + "name": "Angelus Plaza 245 Helipad", + "latitude_deg": "34.052384", + "longitude_deg": "-118.248918", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339085", + "ident": "US-2629", + "type": "heliport", + "name": "Angelus Plaza 200 Helipad", + "latitude_deg": "34.05342", + "longitude_deg": "-118.2487", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339086", + "ident": "US-2630", + "type": "heliport", + "name": "Olive Building Helipad", + "latitude_deg": "34.053762", + "longitude_deg": "-118.249181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339087", + "ident": "US-2631", + "type": "heliport", + "name": "The Vermont East Helipad", + "latitude_deg": "34.06145", + "longitude_deg": "-118.290712", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339088", + "ident": "US-2632", + "type": "heliport", + "name": "The Vermont West Helipad", + "latitude_deg": "34.061264", + "longitude_deg": "-118.291308", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339089", + "ident": "US-2633", + "type": "heliport", + "name": "Wilshire Square Two Helipad", + "latitude_deg": "34.062028", + "longitude_deg": "-118.295696", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339090", + "ident": "US-2634", + "type": "heliport", + "name": "Metroplex Helipad", + "latitude_deg": "34.06141", + "longitude_deg": "-118.301275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339091", + "ident": "US-2635", + "type": "heliport", + "name": "Wilshire Serrano Building Helipad", + "latitude_deg": "34.06233", + "longitude_deg": "-118.306189", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339092", + "ident": "US-2636", + "type": "heliport", + "name": "Solair Condos Helipad", + "latitude_deg": "34.062668", + "longitude_deg": "-118.308753", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339093", + "ident": "US-2637", + "type": "heliport", + "name": "5055 Wilshire Helipad", + "latitude_deg": "34.06246", + "longitude_deg": "-118.34042", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339094", + "ident": "US-2638", + "type": "closed", + "name": "Chaplin Airport", + "latitude_deg": "34.06152", + "longitude_deg": "-118.36445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339095", + "ident": "US-2639", + "type": "heliport", + "name": "City National Bank Helipad", + "latitude_deg": "34.06272", + "longitude_deg": "-118.36192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339096", + "ident": "US-2640", + "type": "heliport", + "name": "6500 Wilshire Helipad", + "latitude_deg": "34.06361", + "longitude_deg": "-118.370261", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "339097", + "ident": "US-2641", + "type": "balloonport", + "name": "Characters in Flight Balloonport", + "latitude_deg": "28.37096", + "longitude_deg": "-81.51947", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Buena Vista", + "scheduled_service": "no" + }, + { + "id": "339098", + "ident": "US-2642", + "type": "closed", + "name": "Airlando Airpark", + "latitude_deg": "28.37995", + "longitude_deg": "-81.52156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Buena Vista", + "scheduled_service": "no" + }, + { + "id": "339099", + "ident": "US-2643", + "type": "closed", + "name": "Hoequist Airport", + "latitude_deg": "28.50197", + "longitude_deg": "-81.40512", + "elevation_ft": "-4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "home_link": "https://members.tripod.com/airfields_freeman/FL/Airfields_FL_OrlandoSW.htm#hoequist" + }, + { + "id": "339100", + "ident": "US-2644", + "type": "closed", + "name": "Maguire Airport / Orlando West Airport", + "latitude_deg": "28.5334", + "longitude_deg": "-81.53993", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ocoee", + "scheduled_service": "no", + "local_code": "X30" + }, + { + "id": "339101", + "ident": "US-2645", + "type": "closed", + "name": "Longcoy Airport", + "latitude_deg": "28.57454", + "longitude_deg": "-81.51205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ocoee", + "scheduled_service": "no" + }, + { + "id": "339127", + "ident": "US-2646", + "type": "closed", + "name": "Parker Field", + "latitude_deg": "32.67724", + "longitude_deg": "-96.38604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Terrell", + "scheduled_service": "no" + }, + { + "id": "339128", + "ident": "US-2647", + "type": "closed", + "name": "Thompson Ranch Airport", + "latitude_deg": "32.522671", + "longitude_deg": "-96.32752", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kaufman", + "scheduled_service": "no" + }, + { + "id": "339129", + "ident": "US-2648", + "type": "small_airport", + "name": "Moore Ranch Airstrip", + "latitude_deg": "34.124937", + "longitude_deg": "-112.917239", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Congress", + "scheduled_service": "no" + }, + { + "id": "339130", + "ident": "US-2649", + "type": "heliport", + "name": "Smith Barney Tower Helipad", + "latitude_deg": "32.874037", + "longitude_deg": "-117.212529", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "339131", + "ident": "US-2650", + "type": "heliport", + "name": "Northern Trust Tower Helipad", + "latitude_deg": "32.873992", + "longitude_deg": "-117.211161", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "339132", + "ident": "US-2651", + "type": "closed", + "name": "Lou Foote Airport / Highway 77 Airport", + "latitude_deg": "32.63008", + "longitude_deg": "-96.82792", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "DeSoto", + "scheduled_service": "no" + }, + { + "id": "339133", + "ident": "US-2652", + "type": "closed", + "name": "Hampton Field / Clearview Airport", + "latitude_deg": "32.71723", + "longitude_deg": "-96.8529", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no" + }, + { + "id": "339134", + "ident": "US-2653", + "type": "closed", + "name": "Jasper Lee Airport", + "latitude_deg": "32.85212", + "longitude_deg": "-96.96195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Irving", + "scheduled_service": "no", + "keywords": "jap lee airport" + }, + { + "id": "339135", + "ident": "US-2654", + "type": "closed", + "name": "Grand Prairie Army Airfield", + "latitude_deg": "32.73108", + "longitude_deg": "-97.02346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Grand Prairie", + "scheduled_service": "no" + }, + { + "id": "339136", + "ident": "US-2655", + "type": "closed", + "name": "Naval Outlying Landing Field Arlington", + "latitude_deg": "32.688", + "longitude_deg": "-97.128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Arlington", + "scheduled_service": "no" + }, + { + "id": "339137", + "ident": "US-2656", + "type": "closed", + "name": "Naval Outlying Landing Field Mansfield", + "latitude_deg": "32.575", + "longitude_deg": "-97.092", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mansfield", + "scheduled_service": "no" + }, + { + "id": "339138", + "ident": "US-2657", + "type": "closed", + "name": "Naval Outlying Landing Field Five Points", + "latitude_deg": "32.62325", + "longitude_deg": "-97.1199", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Arlington", + "scheduled_service": "no" + }, + { + "id": "339139", + "ident": "US-2658", + "type": "closed", + "name": "Flyers Field", + "latitude_deg": "32.72437", + "longitude_deg": "-96.8986", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no" + }, + { + "id": "339140", + "ident": "US-2659", + "type": "small_airport", + "name": "Green Quartz Mine Airstrip", + "latitude_deg": "34.958826", + "longitude_deg": "-114.40468", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Oatman", + "scheduled_service": "no" + }, + { + "id": "339141", + "ident": "US-2660", + "type": "small_airport", + "name": "White Chief Mine Airstrip", + "latitude_deg": "35.00375", + "longitude_deg": "-114.390432", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Oatman", + "scheduled_service": "no" + }, + { + "id": "339258", + "ident": "US-2661", + "type": "closed", + "name": "Shumaker Landing Strip", + "latitude_deg": "32.12972", + "longitude_deg": "-109.14199", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "San Simon", + "scheduled_service": "no" + }, + { + "id": "339259", + "ident": "US-2662", + "type": "small_airport", + "name": "Cienega Ranch Landing Strip", + "latitude_deg": "32.03147", + "longitude_deg": "-109.04516", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Animas", + "scheduled_service": "no" + }, + { + "id": "339260", + "ident": "US-2663", + "type": "small_airport", + "name": "Painted Pony Airport", + "latitude_deg": "31.90154", + "longitude_deg": "-109.00894", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Rodeo", + "scheduled_service": "no" + }, + { + "id": "339261", + "ident": "US-2664", + "type": "closed", + "name": "Valley Vista Airstrip", + "latitude_deg": "31.84655", + "longitude_deg": "-109.01333", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Rodeo", + "scheduled_service": "no" + }, + { + "id": "339262", + "ident": "US-2665", + "type": "small_airport", + "name": "Many Wells Landing Strip", + "latitude_deg": "31.74565", + "longitude_deg": "-109.04547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Rodeo", + "scheduled_service": "no" + }, + { + "id": "339263", + "ident": "US-2666", + "type": "closed", + "name": "Dill Landing Strip", + "latitude_deg": "31.74336", + "longitude_deg": "-109.05345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Portal", + "scheduled_service": "no" + }, + { + "id": "339264", + "ident": "US-2667", + "type": "closed", + "name": "Brushy Landing Strip", + "latitude_deg": "31.73573", + "longitude_deg": "-109.05021", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Portal", + "scheduled_service": "no" + }, + { + "id": "339266", + "ident": "US-2668", + "type": "closed", + "name": "Coronado Farms Landing Strip", + "latitude_deg": "32.02536", + "longitude_deg": "-109.75299", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Willcox", + "scheduled_service": "no" + }, + { + "id": "339267", + "ident": "US-2669", + "type": "small_airport", + "name": "Ag-Air Airport", + "latitude_deg": "32.086522", + "longitude_deg": "-109.764675", + "elevation_ft": "4213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Willcox", + "scheduled_service": "no", + "keywords": "Kansas Settlement, K S Farms" + }, + { + "id": "339268", + "ident": "US-2670", + "type": "small_airport", + "name": "Shelton Road Landing Strip", + "latitude_deg": "32.02863", + "longitude_deg": "-109.78641", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Willcox", + "scheduled_service": "no" + }, + { + "id": "339269", + "ident": "US-2671", + "type": "small_airport", + "name": "Curry Airport", + "latitude_deg": "32.018221", + "longitude_deg": "-109.800607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Willcox", + "scheduled_service": "no", + "keywords": "Fern Road" + }, + { + "id": "339270", + "ident": "US-2672", + "type": "small_airport", + "name": "York Airport", + "latitude_deg": "32.01072", + "longitude_deg": "-109.78377", + "elevation_ft": "4210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Willcox", + "scheduled_service": "no", + "keywords": "Sulphur Springs" + }, + { + "id": "339271", + "ident": "US-2673", + "type": "closed", + "name": "Essex Landing Strip", + "latitude_deg": "32.06486", + "longitude_deg": "-109.92891", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Cochise", + "scheduled_service": "no" + }, + { + "id": "339272", + "ident": "US-2674", + "type": "small_airport", + "name": "Sunsites Airport", + "latitude_deg": "31.95394", + "longitude_deg": "-109.85452", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Pearce", + "scheduled_service": "no" + }, + { + "id": "339327", + "ident": "US-2675", + "type": "heliport", + "name": "Seguin Island Helipad", + "latitude_deg": "43.707915", + "longitude_deg": "-69.758061", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Phippsburg", + "scheduled_service": "no" + }, + { + "id": "339328", + "ident": "US-2676", + "type": "heliport", + "name": "Hope Island Private Helipad", + "latitude_deg": "43.70909", + "longitude_deg": "-70.11621", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Chebeague Island", + "scheduled_service": "no" + }, + { + "id": "339329", + "ident": "US-2677", + "type": "heliport", + "name": "LincolnHealth St. Andrews Urgent Care Center Helipad", + "latitude_deg": "43.85063", + "longitude_deg": "-69.63802", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Boothbay Harbor", + "scheduled_service": "no" + }, + { + "id": "339333", + "ident": "US-2678", + "type": "heliport", + "name": "Hakioawa Heliport", + "latitude_deg": "20.58758", + "longitude_deg": "-156.55753", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kaho'olawe", + "scheduled_service": "no" + }, + { + "id": "339334", + "ident": "US-2679", + "type": "heliport", + "name": "Kealialuna Helipad", + "latitude_deg": "20.57731", + "longitude_deg": "-156.57084", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kaho'olawe", + "scheduled_service": "no" + }, + { + "id": "339335", + "ident": "US-2680", + "type": "heliport", + "name": "Moaulaiki Helipad", + "latitude_deg": "20.56446", + "longitude_deg": "-156.58529", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kaho'olawe", + "scheduled_service": "no" + }, + { + "id": "339336", + "ident": "US-2681", + "type": "heliport", + "name": "Keālialalo Helipad", + "latitude_deg": "20.54621", + "longitude_deg": "-156.64327", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kaho'olawe", + "scheduled_service": "no", + "keywords": "LZ Seagull" + }, + { + "id": "339337", + "ident": "US-2682", + "type": "heliport", + "name": "LZ Squid Helipad", + "latitude_deg": "20.50918", + "longitude_deg": "-156.67287", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kaho'olawe", + "scheduled_service": "no" + }, + { + "id": "339338", + "ident": "US-2683", + "type": "heliport", + "name": "Honokanai'a South Helipad", + "latitude_deg": "20.50947", + "longitude_deg": "-156.68217", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kaho'olawe", + "scheduled_service": "no" + }, + { + "id": "339339", + "ident": "US-2684", + "type": "heliport", + "name": "Kanapou Helipad", + "latitude_deg": "20.56031", + "longitude_deg": "-156.5656", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kaho'olawe", + "scheduled_service": "no" + }, + { + "id": "339381", + "ident": "US-2685", + "type": "heliport", + "name": "Marriott Marquis San Diego Marina Helipad", + "latitude_deg": "32.70784", + "longitude_deg": "-117.164962", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "339382", + "ident": "US-2686", + "type": "heliport", + "name": "1620 5th Avenue Helipad", + "latitude_deg": "32.722292", + "longitude_deg": "-117.160504", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "339383", + "ident": "US-2687", + "type": "heliport", + "name": "DoubleTree San Diego Downtown Helipad", + "latitude_deg": "32.722495", + "longitude_deg": "-117.165332", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "339384", + "ident": "US-2688", + "type": "heliport", + "name": "Scripps Memorial Hospital Encinitas Helipad", + "latitude_deg": "33.037099", + "longitude_deg": "-117.285109", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Encinitas", + "scheduled_service": "no" + }, + { + "id": "339385", + "ident": "US-2689", + "type": "heliport", + "name": "NRG Cabrillo Power Helipad", + "latitude_deg": "33.13862", + "longitude_deg": "-117.33732", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Carlsbad", + "scheduled_service": "no" + }, + { + "id": "339386", + "ident": "US-2690", + "type": "heliport", + "name": "Naval Hospital Camp Pendleton Helipad", + "latitude_deg": "33.21874", + "longitude_deg": "-117.38795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceanside", + "scheduled_service": "no" + }, + { + "id": "339387", + "ident": "US-2691", + "type": "small_airport", + "name": "Camp Pendleton Highway Strip", + "latitude_deg": "33.30775", + "longitude_deg": "-117.47198", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceanside", + "scheduled_service": "no" + }, + { + "id": "339388", + "ident": "US-2692", + "type": "closed", + "name": "Camp Pendleton Strip #2", + "latitude_deg": "33.26014", + "longitude_deg": "-117.43348", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceanside", + "scheduled_service": "no" + }, + { + "id": "339389", + "ident": "US-2693", + "type": "closed", + "name": "NOLF Hourglass Field", + "latitude_deg": "32.90932", + "longitude_deg": "-117.12168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "339391", + "ident": "US-2694", + "type": "closed", + "name": "Capistrano Airport (1931)", + "latitude_deg": "33.47187", + "longitude_deg": "-117.67766", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Dana Point", + "scheduled_service": "no" + }, + { + "id": "339392", + "ident": "US-2695", + "type": "closed", + "name": "Capistrano Airport (1946)", + "latitude_deg": "33.48549", + "longitude_deg": "-117.67644", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Juan Capistrano", + "scheduled_service": "no" + }, + { + "id": "339393", + "ident": "US-2696", + "type": "closed", + "name": "Capistrano Airport (1966)", + "latitude_deg": "33.48506", + "longitude_deg": "-117.67154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Juan Capistrano", + "scheduled_service": "no", + "local_code": "L38" + }, + { + "id": "339394", + "ident": "US-2697", + "type": "heliport", + "name": "UC San Diego Health Downtown Helipad", + "latitude_deg": "32.713296", + "longitude_deg": "-117.165068", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "339395", + "ident": "US-2698", + "type": "heliport", + "name": "Koll Center Helipad", + "latitude_deg": "32.715327", + "longitude_deg": "-117.167642", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "339396", + "ident": "US-2699", + "type": "heliport", + "name": "Emerald Plaza South Helipad", + "latitude_deg": "32.716041", + "longitude_deg": "-117.166958", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "339397", + "ident": "US-2700", + "type": "heliport", + "name": "Emerald Plaza North Helipad", + "latitude_deg": "32.716506", + "longitude_deg": "-117.16684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "339398", + "ident": "US-2701", + "type": "heliport", + "name": "Hall of Justice Helipad", + "latitude_deg": "32.71633", + "longitude_deg": "-117.166057", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "339399", + "ident": "US-2702", + "type": "heliport", + "name": "Symphony Towers South Helipad", + "latitude_deg": "32.718022", + "longitude_deg": "-117.157913", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "339400", + "ident": "US-2703", + "type": "heliport", + "name": "Symphony Towers North Helipad", + "latitude_deg": "32.718618", + "longitude_deg": "-117.157946", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "339401", + "ident": "US-2704", + "type": "heliport", + "name": "Wells Fargo Plaza Helipad", + "latitude_deg": "32.71739", + "longitude_deg": "-117.160687", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "339402", + "ident": "US-2705", + "type": "heliport", + "name": "Corporate Center Helipad", + "latitude_deg": "32.717165", + "longitude_deg": "-117.167816", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "339403", + "ident": "US-2706", + "type": "heliport", + "name": "Best Western Plus Bayside Inn Helipad", + "latitude_deg": "32.719547", + "longitude_deg": "-117.167666", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "339404", + "ident": "US-2707", + "type": "heliport", + "name": "Assault Craft Unit Five Helipad", + "latitude_deg": "33.26065", + "longitude_deg": "-117.43077", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceanside", + "scheduled_service": "no" + }, + { + "id": "339405", + "ident": "US-2708", + "type": "heliport", + "name": "Camp Pendleton AOL Helipad", + "latitude_deg": "33.262499", + "longitude_deg": "-117.422497", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceanside", + "scheduled_service": "no" + }, + { + "id": "339406", + "ident": "US-2709", + "type": "heliport", + "name": "Camp Pendleton Stuart Mesa Helipad", + "latitude_deg": "33.276385", + "longitude_deg": "-117.428699", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceanside", + "scheduled_service": "no" + }, + { + "id": "339407", + "ident": "US-2710", + "type": "heliport", + "name": "Camp Pendleton Las Flores Heliport", + "latitude_deg": "33.31945", + "longitude_deg": "-117.48939", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceanside", + "scheduled_service": "no" + }, + { + "id": "339408", + "ident": "US-2711", + "type": "heliport", + "name": "Camp Pendleton Gladiator Beach Heliport", + "latitude_deg": "33.32833", + "longitude_deg": "-117.49861", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceanside", + "scheduled_service": "no" + }, + { + "id": "339409", + "ident": "US-2712", + "type": "closed", + "name": "Cypress Airpark", + "latitude_deg": "33.82905", + "longitude_deg": "-118.01425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Anaheim", + "scheduled_service": "no" + }, + { + "id": "339410", + "ident": "US-2713", + "type": "closed", + "name": "Meadowlark Airport", + "latitude_deg": "33.71722", + "longitude_deg": "-118.03878", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Huntington Beach", + "scheduled_service": "no", + "local_code": "L16" + }, + { + "id": "339411", + "ident": "US-2714", + "type": "closed", + "name": "Huntington Beach Airport (1932)", + "latitude_deg": "33.67444", + "longitude_deg": "-118.01676", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Huntington Beach", + "scheduled_service": "no" + }, + { + "id": "339412", + "ident": "US-2715", + "type": "closed", + "name": "Huntington Beach Airport (1946)", + "latitude_deg": "33.646", + "longitude_deg": "-117.979", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Huntington Beach", + "scheduled_service": "no" + }, + { + "id": "339413", + "ident": "US-2716", + "type": "closed", + "name": "Naval Outlying Landing Field Horse Farm", + "latitude_deg": "33.7944", + "longitude_deg": "-118.00591", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Garden Grove", + "scheduled_service": "no" + }, + { + "id": "339414", + "ident": "US-2717", + "type": "closed", + "name": "Naval Outlying Landing Field Haster Field", + "latitude_deg": "33.763", + "longitude_deg": "-117.965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Garden Grove", + "scheduled_service": "no" + }, + { + "id": "339415", + "ident": "US-2718", + "type": "heliport", + "name": "Ocean Club Helipad", + "latitude_deg": "33.764907", + "longitude_deg": "-118.175478", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339416", + "ident": "US-2719", + "type": "heliport", + "name": "Pacific Condominiums Helipad", + "latitude_deg": "33.765538", + "longitude_deg": "-118.182013", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339417", + "ident": "US-2720", + "type": "heliport", + "name": "The Current Helipad", + "latitude_deg": "33.76659", + "longitude_deg": "-118.184052", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339418", + "ident": "US-2721", + "type": "heliport", + "name": "Harbor Place Tower Condos Helipad", + "latitude_deg": "33.765904", + "longitude_deg": "-118.185854", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339419", + "ident": "US-2722", + "type": "heliport", + "name": "Aqua Condominiums East Helipad", + "latitude_deg": "33.766028", + "longitude_deg": "-118.187292", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339420", + "ident": "US-2723", + "type": "heliport", + "name": "Aqua Condominiums West Helipad", + "latitude_deg": "33.766104", + "longitude_deg": "-118.188246", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339421", + "ident": "US-2724", + "type": "heliport", + "name": "Chase Bank Helipad", + "latitude_deg": "33.766929", + "longitude_deg": "-118.187297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339422", + "ident": "US-2725", + "type": "heliport", + "name": "Westin Long Beach Helipad", + "latitude_deg": "33.767344", + "longitude_deg": "-118.188161", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339423", + "ident": "US-2726", + "type": "heliport", + "name": "Shoreline Square Helipad", + "latitude_deg": "33.767696", + "longitude_deg": "-118.188933", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339424", + "ident": "US-2727", + "type": "heliport", + "name": "180 Building Helipad", + "latitude_deg": "33.766171", + "longitude_deg": "-118.191272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339425", + "ident": "US-2728", + "type": "heliport", + "name": "Renaissance Long Beach Hotel Helipad", + "latitude_deg": "33.767428", + "longitude_deg": "-118.191454", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339426", + "ident": "US-2729", + "type": "heliport", + "name": "Landmark Square Helipad", + "latitude_deg": "33.767491", + "longitude_deg": "-118.19323", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339427", + "ident": "US-2730", + "type": "heliport", + "name": "Camden Harbor View Apartments East Helipad", + "latitude_deg": "33.766555", + "longitude_deg": "-118.19477", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339428", + "ident": "US-2731", + "type": "heliport", + "name": "Camden Harbor View Apartments West Helipad", + "latitude_deg": "33.766555", + "longitude_deg": "-118.195199", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339429", + "ident": "US-2732", + "type": "heliport", + "name": "West Ocean North Helipad", + "latitude_deg": "33.766679", + "longitude_deg": "-118.196728", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339430", + "ident": "US-2733", + "type": "heliport", + "name": "West Ocean South Helipad", + "latitude_deg": "33.766131", + "longitude_deg": "-118.196722", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339431", + "ident": "US-2734", + "type": "heliport", + "name": "World Trade Center Helipad", + "latitude_deg": "33.767803", + "longitude_deg": "-118.199828", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339432", + "ident": "US-2735", + "type": "heliport", + "name": "Hilton Long Beach Helipad", + "latitude_deg": "33.767991", + "longitude_deg": "-118.201212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339433", + "ident": "US-2736", + "type": "heliport", + "name": "Molina Center North Helipad", + "latitude_deg": "33.766653", + "longitude_deg": "-118.199962", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339434", + "ident": "US-2737", + "type": "heliport", + "name": "Molina Center South Helipad", + "latitude_deg": "33.766345", + "longitude_deg": "-118.200349", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339435", + "ident": "US-2738", + "type": "heliport", + "name": "Hyatt Regency Long Beach Helipad", + "latitude_deg": "33.76288", + "longitude_deg": "-118.190355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339436", + "ident": "US-2739", + "type": "heliport", + "name": "Residence Inn by Marriott Long Beach Downtown Helipad", + "latitude_deg": "33.75861", + "longitude_deg": "-118.20149", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "339437", + "ident": "US-2740", + "type": "closed", + "name": "NAS Terminal Island Seaplane Base", + "latitude_deg": "33.74657", + "longitude_deg": "-118.25308", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Pedro", + "scheduled_service": "no" + }, + { + "id": "339438", + "ident": "US-2741", + "type": "heliport", + "name": "Defense Fuel Support Point San Pedro Helipad", + "latitude_deg": "33.7772", + "longitude_deg": "-118.29759", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Pedro", + "scheduled_service": "no" + }, + { + "id": "339439", + "ident": "US-2742", + "type": "heliport", + "name": "Point Vicente Lighthouse Helipad", + "latitude_deg": "33.74144", + "longitude_deg": "-118.41028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rancho Palos Verdes", + "scheduled_service": "no" + }, + { + "id": "339440", + "ident": "US-2743", + "type": "heliport", + "name": "Redondo Generating Station Helipad", + "latitude_deg": "33.851183", + "longitude_deg": "-118.393858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Redondo Beach", + "scheduled_service": "no" + }, + { + "id": "339441", + "ident": "US-2744", + "type": "heliport", + "name": "Marina Pointe Azzurra Helipad", + "latitude_deg": "33.985053", + "longitude_deg": "-118.445234", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Marina del Rey", + "scheduled_service": "no" + }, + { + "id": "339442", + "ident": "US-2745", + "type": "heliport", + "name": "Marina Pointe Cove Helipad", + "latitude_deg": "33.984778", + "longitude_deg": "-118.44487", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Marina del Rey", + "scheduled_service": "no" + }, + { + "id": "339443", + "ident": "US-2746", + "type": "heliport", + "name": "Marina Pointe Regatta Seaside Helipad", + "latitude_deg": "33.984617", + "longitude_deg": "-118.444194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Marina del Rey", + "scheduled_service": "no" + }, + { + "id": "339444", + "ident": "US-2747", + "type": "heliport", + "name": "Ventura County Medical Center Helipad", + "latitude_deg": "34.27657", + "longitude_deg": "-119.25264", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ventura", + "scheduled_service": "no" + }, + { + "id": "339445", + "ident": "US-2748", + "type": "heliport", + "name": "Mariposa Oil Facility Helipad", + "latitude_deg": "34.47638", + "longitude_deg": "-120.20636", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Goleta", + "scheduled_service": "no" + }, + { + "id": "339447", + "ident": "US-2749", + "type": "heliport", + "name": "Platform Heritage Helipad", + "latitude_deg": "34.35029", + "longitude_deg": "-120.27919", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Goleta", + "scheduled_service": "no" + }, + { + "id": "339448", + "ident": "US-2750", + "type": "heliport", + "name": "Platform Harmony Helipad", + "latitude_deg": "34.37674", + "longitude_deg": "-120.16767", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Goleta", + "scheduled_service": "no" + }, + { + "id": "339449", + "ident": "US-2751", + "type": "heliport", + "name": "Platform Houchin Helipad", + "latitude_deg": "34.33503", + "longitude_deg": "-119.55301", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Carpinteria", + "scheduled_service": "no" + }, + { + "id": "339450", + "ident": "US-2752", + "type": "heliport", + "name": "Platform Hogan Helipad", + "latitude_deg": "34.33771", + "longitude_deg": "-119.54224", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Carpinteria", + "scheduled_service": "no" + }, + { + "id": "339451", + "ident": "US-2753", + "type": "heliport", + "name": "Dos Cuadras Offshore Oil Platform C Helipad", + "latitude_deg": "34.33187", + "longitude_deg": "-119.6138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Barbara", + "scheduled_service": "no" + }, + { + "id": "339452", + "ident": "US-2754", + "type": "heliport", + "name": "Dos Cuadras Offshore Oil Platform B Helipad", + "latitude_deg": "34.3323", + "longitude_deg": "-119.62268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Barbara", + "scheduled_service": "no" + }, + { + "id": "339453", + "ident": "US-2755", + "type": "heliport", + "name": "Dos Cuadras Offshore Oil Platform A Helipad", + "latitude_deg": "34.33289", + "longitude_deg": "-119.63195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Barbara", + "scheduled_service": "no" + }, + { + "id": "339454", + "ident": "US-2756", + "type": "heliport", + "name": "Platform Gilda Helipad", + "latitude_deg": "34.18244", + "longitude_deg": "-119.41951", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ventura", + "scheduled_service": "no" + }, + { + "id": "339455", + "ident": "US-2757", + "type": "heliport", + "name": "Platform Grace Helipad", + "latitude_deg": "34.17959", + "longitude_deg": "-119.46911", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ventura", + "scheduled_service": "no" + }, + { + "id": "339456", + "ident": "US-2758", + "type": "heliport", + "name": "Platform Gail Helipad", + "latitude_deg": "34.12508", + "longitude_deg": "-119.40104", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oxnard", + "scheduled_service": "no" + }, + { + "id": "339457", + "ident": "US-2759", + "type": "heliport", + "name": "Platform Gina Helipad", + "latitude_deg": "34.11736", + "longitude_deg": "-119.27705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oxnard", + "scheduled_service": "no" + }, + { + "id": "339458", + "ident": "US-2760", + "type": "heliport", + "name": "Platform Irene Helipad", + "latitude_deg": "34.6104", + "longitude_deg": "-120.72946", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lompoc", + "scheduled_service": "no" + }, + { + "id": "339459", + "ident": "US-2761", + "type": "heliport", + "name": "Diablo Canyon Power Plant Heliport", + "latitude_deg": "35.20611", + "longitude_deg": "-120.85269", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Avila Beach", + "scheduled_service": "no" + }, + { + "id": "339460", + "ident": "US-2762", + "type": "small_airport", + "name": "California Valley Airport", + "latitude_deg": "35.31455", + "longitude_deg": "-120.00185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Margarita", + "scheduled_service": "no" + }, + { + "id": "339461", + "ident": "US-2763", + "type": "closed", + "name": "Washburn Ranch Airport", + "latitude_deg": "35.12183", + "longitude_deg": "-119.77428", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Margarita", + "scheduled_service": "no" + }, + { + "id": "339462", + "ident": "US-2764", + "type": "closed", + "name": "Goodwin Ranch Airport", + "latitude_deg": "35.25091", + "longitude_deg": "-119.92184", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Margarita", + "scheduled_service": "no" + }, + { + "id": "339463", + "ident": "US-2765", + "type": "closed", + "name": "Cambria Air Force Station Helipad", + "latitude_deg": "35.5228", + "longitude_deg": "-121.06451", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Cambria", + "scheduled_service": "no" + }, + { + "id": "339464", + "ident": "US-2766", + "type": "closed", + "name": "Hearst Ranch Airport (1929)", + "latitude_deg": "35.650514", + "longitude_deg": "-121.195357", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Simeon", + "scheduled_service": "no" + }, + { + "id": "339465", + "ident": "US-2767", + "type": "closed", + "name": "Hearst Ranch Airport (1936)", + "latitude_deg": "35.64973", + "longitude_deg": "-121.186795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Simeon", + "scheduled_service": "no" + }, + { + "id": "339466", + "ident": "US-2768", + "type": "heliport", + "name": "Presidio of Monterey Helipad", + "latitude_deg": "36.6069", + "longitude_deg": "-121.89832", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Monterey", + "scheduled_service": "no" + }, + { + "id": "339467", + "ident": "US-2769", + "type": "closed", + "name": "Fort Ord South Parade Ground Army Airfield", + "latitude_deg": "36.64987", + "longitude_deg": "-121.80715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Seaside", + "scheduled_service": "no" + }, + { + "id": "339468", + "ident": "US-2770", + "type": "closed", + "name": "Santa Cruz-Capitola Airport", + "latitude_deg": "36.98112", + "longitude_deg": "-121.94219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Capitola", + "scheduled_service": "no" + }, + { + "id": "339469", + "ident": "US-2771", + "type": "heliport", + "name": "Pillar Point Air Force Station Helipad", + "latitude_deg": "37.49699", + "longitude_deg": "-122.49875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Half Moon Bay", + "scheduled_service": "no" + }, + { + "id": "339471", + "ident": "US-2772", + "type": "heliport", + "name": "UCSF Medical Center at Mission Bay Helipad", + "latitude_deg": "37.766614", + "longitude_deg": "-122.390361", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Francisco", + "scheduled_service": "no" + }, + { + "id": "339472", + "ident": "US-2773", + "type": "closed", + "name": "Ravenswood Substation Helipad", + "latitude_deg": "37.49369", + "longitude_deg": "-122.13917", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Menlo Park", + "scheduled_service": "no" + }, + { + "id": "339473", + "ident": "US-2774", + "type": "closed", + "name": "Mountain View Airport", + "latitude_deg": "37.41056", + "longitude_deg": "-122.10128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mountain View", + "scheduled_service": "no" + }, + { + "id": "339474", + "ident": "US-2775", + "type": "closed", + "name": "Goddard Airport", + "latitude_deg": "37.42968", + "longitude_deg": "-122.15794", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palo Alto", + "scheduled_service": "no" + }, + { + "id": "339475", + "ident": "US-2776", + "type": "heliport", + "name": "Stanford Health Care West Heliport", + "latitude_deg": "37.4346", + "longitude_deg": "-122.17755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palo Alto", + "scheduled_service": "no" + }, + { + "id": "339476", + "ident": "US-2777", + "type": "closed", + "name": "Warmsprings Airport", + "latitude_deg": "37.45608", + "longitude_deg": "-121.90538", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Milpitas", + "scheduled_service": "no" + }, + { + "id": "339477", + "ident": "US-2778", + "type": "closed", + "name": "Naval Outlying Landing Field Heath", + "latitude_deg": "37.49812", + "longitude_deg": "-121.96178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fremont", + "scheduled_service": "no" + }, + { + "id": "339478", + "ident": "US-2779", + "type": "closed", + "name": "Sky Sailing Airport", + "latitude_deg": "37.49703", + "longitude_deg": "-121.96212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fremont", + "scheduled_service": "no", + "local_code": "8Q4" + }, + { + "id": "339479", + "ident": "US-2780", + "type": "closed", + "name": "Skyways Airport", + "latitude_deg": "37.49488", + "longitude_deg": "-121.96135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fremont", + "scheduled_service": "no" + }, + { + "id": "339480", + "ident": "US-2781", + "type": "closed", + "name": "Centerville Airport", + "latitude_deg": "37.53132", + "longitude_deg": "-121.99066", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fremont", + "scheduled_service": "no" + }, + { + "id": "339481", + "ident": "US-2782", + "type": "closed", + "name": "Fremont Airport / King Skylanes Airport", + "latitude_deg": "37.45927", + "longitude_deg": "-121.929", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fremont", + "scheduled_service": "no", + "local_code": "Q59" + }, + { + "id": "339482", + "ident": "US-2783", + "type": "heliport", + "name": "US Coast Guard Base Alameda Helipad", + "latitude_deg": "37.78522", + "longitude_deg": "-122.25319", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Alameda", + "scheduled_service": "no" + }, + { + "id": "339483", + "ident": "US-2784", + "type": "closed", + "name": "Laney College Heliport", + "latitude_deg": "37.7962", + "longitude_deg": "-122.26339", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oakland", + "scheduled_service": "no" + }, + { + "id": "339484", + "ident": "US-2785", + "type": "closed", + "name": "Berkeley Marina Heliport", + "latitude_deg": "37.86661", + "longitude_deg": "-122.30633", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Berkeley", + "scheduled_service": "no", + "local_code": "JBK" + }, + { + "id": "339485", + "ident": "US-2786", + "type": "closed", + "name": "Lafayette Heliport", + "latitude_deg": "37.89038", + "longitude_deg": "-122.13317", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lafayette", + "scheduled_service": "no" + }, + { + "id": "339486", + "ident": "US-2787", + "type": "closed", + "name": "International Science Center Heliport", + "latitude_deg": "37.38651", + "longitude_deg": "-122.00365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sunnyvale", + "scheduled_service": "no", + "local_code": "JSV" + }, + { + "id": "339487", + "ident": "US-2788", + "type": "closed", + "name": "Santa Clara Valley Airport", + "latitude_deg": "37.39502", + "longitude_deg": "-121.99143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sunnyvale", + "scheduled_service": "no" + }, + { + "id": "339488", + "ident": "US-2789", + "type": "closed", + "name": "Alum Rock Airport", + "latitude_deg": "37.36621", + "longitude_deg": "-121.83423", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Jose", + "scheduled_service": "no" + }, + { + "id": "339489", + "ident": "US-2790", + "type": "closed", + "name": "Pacific Airmotive / King Road Airport", + "latitude_deg": "37.33473", + "longitude_deg": "-121.83576", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Jose", + "scheduled_service": "no" + }, + { + "id": "339490", + "ident": "US-2791", + "type": "closed", + "name": "Boulder Creek / Hilton Airport", + "latitude_deg": "37.15402", + "longitude_deg": "-122.15911", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Boulder Creek", + "scheduled_service": "no" + }, + { + "id": "339491", + "ident": "US-2792", + "type": "closed", + "name": "Hoover Lake Airstrip", + "latitude_deg": "37.153664", + "longitude_deg": "-121.444824", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Morgan Hill", + "scheduled_service": "no" + }, + { + "id": "339492", + "ident": "US-2793", + "type": "closed", + "name": "Hiller Airfield", + "latitude_deg": "37.47847", + "longitude_deg": "-122.14778", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Menlo Park", + "scheduled_service": "no" + }, + { + "id": "339493", + "ident": "US-2794", + "type": "closed", + "name": "Morgan Hill Airmen Landing Strip", + "latitude_deg": "37.14791", + "longitude_deg": "-121.64994", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Morgan Hill", + "scheduled_service": "no", + "local_code": "Q99" + }, + { + "id": "339494", + "ident": "US-2795", + "type": "closed", + "name": "Livermore Sky Ranch", + "latitude_deg": "37.69402", + "longitude_deg": "-121.7939", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Livermore", + "scheduled_service": "no" + }, + { + "id": "339495", + "ident": "US-2796", + "type": "closed", + "name": "Naval Outlying Landing Field Mays School", + "latitude_deg": "37.73441", + "longitude_deg": "-121.75263", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Livermore", + "scheduled_service": "no" + }, + { + "id": "339496", + "ident": "US-2797", + "type": "closed", + "name": "Naval Air Station Livermore", + "latitude_deg": "37.68839", + "longitude_deg": "-121.70782", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Livermore", + "scheduled_service": "no" + }, + { + "id": "339497", + "ident": "US-2798", + "type": "closed", + "name": "Hummingbird Haven Airport", + "latitude_deg": "37.69674", + "longitude_deg": "-121.69333", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Livermore", + "scheduled_service": "no" + }, + { + "id": "339498", + "ident": "US-2799", + "type": "closed", + "name": "Parks Air Force Base", + "latitude_deg": "37.72745", + "longitude_deg": "-121.89809", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Dublin", + "scheduled_service": "no" + }, + { + "id": "339499", + "ident": "US-2800", + "type": "small_airport", + "name": "Dublin Landing Strip", + "latitude_deg": "32.87153", + "longitude_deg": "-109.83971", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Pima", + "scheduled_service": "no" + }, + { + "id": "339500", + "ident": "US-2801", + "type": "closed", + "name": "Cherry Flat Landing Strip", + "latitude_deg": "37.38707", + "longitude_deg": "-121.76408", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Jose", + "scheduled_service": "no" + }, + { + "id": "339502", + "ident": "US-2802", + "type": "closed", + "name": "Benicia Airport", + "latitude_deg": "38.07441", + "longitude_deg": "-122.18942", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Benicia", + "scheduled_service": "no" + }, + { + "id": "339503", + "ident": "US-2803", + "type": "closed", + "name": "Mare Island Naval Shipyard Airfield", + "latitude_deg": "38.089", + "longitude_deg": "-122.272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Vallejo", + "scheduled_service": "no" + }, + { + "id": "339504", + "ident": "US-2804", + "type": "closed", + "name": "Martinez Airport", + "latitude_deg": "38.02247", + "longitude_deg": "-122.13335", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Martinez", + "scheduled_service": "no" + }, + { + "id": "339507", + "ident": "US-2805", + "type": "closed", + "name": "Discovery Bay Airport", + "latitude_deg": "37.89081", + "longitude_deg": "-121.62106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Discovery Bay", + "scheduled_service": "no" + }, + { + "id": "339508", + "ident": "US-2806", + "type": "closed", + "name": "Stan's Airpark", + "latitude_deg": "38.13091", + "longitude_deg": "-122.26658", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Vallejo", + "scheduled_service": "no" + }, + { + "id": "339509", + "ident": "US-2807", + "type": "closed", + "name": "Vallejo Sky Harbor", + "latitude_deg": "38.15464", + "longitude_deg": "-122.26029", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Vallejo", + "scheduled_service": "no" + }, + { + "id": "339510", + "ident": "US-2808", + "type": "closed", + "name": "Sherman Field", + "latitude_deg": "37.94918", + "longitude_deg": "-122.05622", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pleasant Hill", + "scheduled_service": "no" + }, + { + "id": "339511", + "ident": "US-2809", + "type": "closed", + "name": "San Rafael / Marin County Airport", + "latitude_deg": "38.01258", + "longitude_deg": "-122.51712", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Rafael", + "scheduled_service": "no" + }, + { + "id": "339512", + "ident": "US-2810", + "type": "closed", + "name": "San Francisco Bay Airport", + "latitude_deg": "37.96349", + "longitude_deg": "-122.50261", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Rafael", + "scheduled_service": "no" + }, + { + "id": "339513", + "ident": "US-2811", + "type": "heliport", + "name": "United States Coast Guard Pacific Strike Team Helipad", + "latitude_deg": "38.05551", + "longitude_deg": "-122.51156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Novato", + "scheduled_service": "no" + }, + { + "id": "339514", + "ident": "US-2812", + "type": "closed", + "name": "Bowers Field", + "latitude_deg": "38.78362", + "longitude_deg": "-123.5218", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Gualala", + "scheduled_service": "no" + }, + { + "id": "339515", + "ident": "US-2813", + "type": "closed", + "name": "Bodega Bay Helipad", + "latitude_deg": "38.31679", + "longitude_deg": "-123.03269", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bodega Bay", + "scheduled_service": "no" + }, + { + "id": "339516", + "ident": "US-2814", + "type": "closed", + "name": "Bodega Bay Seaplane Base", + "latitude_deg": "38.31283", + "longitude_deg": "-123.05127", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bodega Bay", + "scheduled_service": "no", + "local_code": "92Q" + }, + { + "id": "339517", + "ident": "US-2815", + "type": "closed", + "name": "Pinnegar Field", + "latitude_deg": "40.43625", + "longitude_deg": "-122.29167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Anderson", + "scheduled_service": "no" + }, + { + "id": "339518", + "ident": "US-2816", + "type": "closed", + "name": "Willits Airport (1957)", + "latitude_deg": "39.41382", + "longitude_deg": "-123.34322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Willits", + "scheduled_service": "no" + }, + { + "id": "339519", + "ident": "US-2817", + "type": "heliport", + "name": "US Coast Guard Station Bodega Bay Helipad", + "latitude_deg": "38.3118", + "longitude_deg": "-123.05222", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bodega Bay", + "scheduled_service": "no" + }, + { + "id": "339520", + "ident": "US-2818", + "type": "small_airport", + "name": "Hay Ranch Airport", + "latitude_deg": "38.87787", + "longitude_deg": "-123.6622", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Point Arena", + "scheduled_service": "no" + }, + { + "id": "339521", + "ident": "US-2819", + "type": "heliport", + "name": "US Coast Guard Point Arena Heliport", + "latitude_deg": "38.95295", + "longitude_deg": "-123.73728", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Point Arena", + "scheduled_service": "no" + }, + { + "id": "339522", + "ident": "US-2820", + "type": "small_airport", + "name": "Big Flat Airport", + "latitude_deg": "40.13271", + "longitude_deg": "-124.18395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Whitethorn", + "scheduled_service": "no" + }, + { + "id": "339523", + "ident": "US-2821", + "type": "closed", + "name": "Crissey Field", + "latitude_deg": "42.00076", + "longitude_deg": "-124.21121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Brookings", + "scheduled_service": "no" + }, + { + "id": "339525", + "ident": "US-2822", + "type": "heliport", + "name": "US Coast Guard Station Tillamook Bay Heliport", + "latitude_deg": "45.55435", + "longitude_deg": "-123.91606", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Garibaldi", + "scheduled_service": "no" + }, + { + "id": "339526", + "ident": "US-2823", + "type": "heliport", + "name": "Seaside Helicopters Heliport", + "latitude_deg": "45.97352", + "longitude_deg": "-123.92622", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Seaside", + "scheduled_service": "no" + }, + { + "id": "339527", + "ident": "US-2824", + "type": "heliport", + "name": "Providence Seaside Hospital Heliport", + "latitude_deg": "45.98903", + "longitude_deg": "-123.91302", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Seaside", + "scheduled_service": "no", + "gps_code": "OR58", + "local_code": "OR58" + }, + { + "id": "339528", + "ident": "US-2825", + "type": "heliport", + "name": "Fort Discovery Heliport", + "latitude_deg": "48.045583", + "longitude_deg": "-122.879556", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Sequim", + "scheduled_service": "no", + "local_code": "WA60" + }, + { + "id": "339529", + "ident": "US-2826", + "type": "heliport", + "name": "US Coast Guard Station Cape Disappointment Heliport", + "latitude_deg": "46.27752", + "longitude_deg": "-124.04329", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ilwaco", + "scheduled_service": "no" + }, + { + "id": "339530", + "ident": "US-2827", + "type": "closed", + "name": "Martin Ranch Airstrip", + "latitude_deg": "32.520382", + "longitude_deg": "-110.943485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "339531", + "ident": "US-2828", + "type": "heliport", + "name": "US Coast Guard Station Grays Harbor Heliport", + "latitude_deg": "46.90415", + "longitude_deg": "-124.10351", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Westport", + "scheduled_service": "no" + }, + { + "id": "339532", + "ident": "US-2829", + "type": "heliport", + "name": "New Dungeness Lighthouse Heliport", + "latitude_deg": "48.18116", + "longitude_deg": "-123.1108", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Sequim", + "scheduled_service": "no" + }, + { + "id": "339533", + "ident": "US-2830", + "type": "closed", + "name": "Timberline Quarter Horse Farm Airport", + "latitude_deg": "47.9602", + "longitude_deg": "-122.75893", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Chimacum", + "scheduled_service": "no" + }, + { + "id": "339534", + "ident": "US-2831", + "type": "heliport", + "name": "Cormorant Heliport", + "latitude_deg": "47.653165", + "longitude_deg": "-122.92501", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Brinnon", + "scheduled_service": "no", + "gps_code": "WA05", + "local_code": "WA05", + "keywords": "WA05" + }, + { + "id": "339537", + "ident": "US-2832", + "type": "heliport", + "name": "Grapeview Heliport", + "latitude_deg": "47.32772", + "longitude_deg": "-122.83651", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Grapeview", + "scheduled_service": "no" + }, + { + "id": "354303", + "ident": "US-2833", + "type": "small_airport", + "name": "Trout Island Airport", + "latitude_deg": "45.772778", + "longitude_deg": "-85.690278", + "elevation_ft": "591", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "scheduled_service": "no" + }, + { + "id": "339539", + "ident": "US-2834", + "type": "heliport", + "name": "St Michael Medical Center Bremerton Heliport", + "latitude_deg": "47.58205", + "longitude_deg": "-122.62516", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Bremerton", + "scheduled_service": "no" + }, + { + "id": "339540", + "ident": "US-2835", + "type": "heliport", + "name": "Naval Hospital Bremerton Heliport", + "latitude_deg": "47.59358", + "longitude_deg": "-122.6884", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Bremerton", + "scheduled_service": "no" + }, + { + "id": "339541", + "ident": "US-2836", + "type": "heliport", + "name": "Harrison Silverdale EMS Helistop", + "latitude_deg": "47.65447", + "longitude_deg": "-122.67599", + "elevation_ft": "281", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Silverdale", + "scheduled_service": "no", + "gps_code": "97WT", + "local_code": "97WT" + }, + { + "id": "339542", + "ident": "US-2837", + "type": "heliport", + "name": "North County Regional Fire Authority Heliport", + "latitude_deg": "48.174532", + "longitude_deg": "-122.353123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Stanwood", + "scheduled_service": "no" + }, + { + "id": "339543", + "ident": "US-2838", + "type": "closed", + "name": "Livingston Bay Airport", + "latitude_deg": "48.23371", + "longitude_deg": "-122.45156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Stanwood", + "scheduled_service": "no" + }, + { + "id": "339544", + "ident": "US-2839", + "type": "small_airport", + "name": "Allan Island Airport", + "latitude_deg": "48.4638", + "longitude_deg": "-122.70397", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Anacortes", + "scheduled_service": "no" + }, + { + "id": "339552", + "ident": "US-2840", + "type": "closed", + "name": "Millers Field", + "latitude_deg": "48.72338", + "longitude_deg": "-122.69733", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Lummi Island", + "scheduled_service": "no" + }, + { + "id": "339553", + "ident": "US-2841", + "type": "heliport", + "name": "Taku Harbor Helispot", + "latitude_deg": "58.076424", + "longitude_deg": "-134.007835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Juneau", + "scheduled_service": "no" + }, + { + "id": "339554", + "ident": "US-2842", + "type": "heliport", + "name": "Taku Pass Helispot", + "latitude_deg": "58.083228", + "longitude_deg": "-134.025784", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Juneau", + "scheduled_service": "no" + }, + { + "id": "339555", + "ident": "US-2843", + "type": "heliport", + "name": "Taku Lake South Helispot", + "latitude_deg": "58.087335", + "longitude_deg": "-134.028767", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Juneau", + "scheduled_service": "no" + }, + { + "id": "339556", + "ident": "US-2844", + "type": "heliport", + "name": "Taku Lake North Helispot", + "latitude_deg": "58.096621", + "longitude_deg": "-134.036427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Juneau", + "scheduled_service": "no" + }, + { + "id": "339557", + "ident": "US-2845", + "type": "heliport", + "name": "Irving Peak Helispot", + "latitude_deg": "58.108602", + "longitude_deg": "-134.038755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Juneau", + "scheduled_service": "no" + }, + { + "id": "339558", + "ident": "US-2846", + "type": "heliport", + "name": "Slocum Inlet Helispot", + "latitude_deg": "58.115673", + "longitude_deg": "-134.039319", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Juneau", + "scheduled_service": "no" + }, + { + "id": "339559", + "ident": "US-2847", + "type": "closed", + "name": "Sudden Stream Landing Strip", + "latitude_deg": "59.796533", + "longitude_deg": "-139.987085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Yakutat", + "scheduled_service": "no" + }, + { + "id": "339560", + "ident": "US-2848", + "type": "small_airport", + "name": "Yahtse River Airport", + "latitude_deg": "59.913", + "longitude_deg": "-141.2615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Yakutat", + "scheduled_service": "no" + }, + { + "id": "339561", + "ident": "US-2849", + "type": "closed", + "name": "Little River Landing Strip", + "latitude_deg": "59.998793", + "longitude_deg": "-141.846703", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Yakutat", + "scheduled_service": "no" + }, + { + "id": "339562", + "ident": "US-2850", + "type": "small_airport", + "name": "Katalla Airport", + "latitude_deg": "60.194407", + "longitude_deg": "-144.519299", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Katalla", + "scheduled_service": "no" + }, + { + "id": "339563", + "ident": "US-2851", + "type": "heliport", + "name": "Potato Point Heliport", + "latitude_deg": "61.056829", + "longitude_deg": "-146.69853", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Valdez", + "scheduled_service": "no" + }, + { + "id": "339564", + "ident": "US-2852", + "type": "closed", + "name": "Fairmount Point Seaplane Base", + "latitude_deg": "60.894417", + "longitude_deg": "-147.445986", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Valdez", + "scheduled_service": "no" + }, + { + "id": "339565", + "ident": "US-2853", + "type": "closed", + "name": "Portlock Seaplane Base", + "latitude_deg": "59.2111", + "longitude_deg": "-151.7635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nanwalek", + "scheduled_service": "no" + }, + { + "id": "339566", + "ident": "US-2854", + "type": "closed", + "name": "Dolima Airport", + "latitude_deg": "59.8571", + "longitude_deg": "-150.9147", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fox River", + "scheduled_service": "no" + }, + { + "id": "339567", + "ident": "US-2855", + "type": "small_airport", + "name": "Gardner Airport", + "latitude_deg": "60.424149", + "longitude_deg": "-151.148229", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Soldotna", + "scheduled_service": "no" + }, + { + "id": "339568", + "ident": "US-2856", + "type": "small_airport", + "name": "Pedginski Airport", + "latitude_deg": "60.399091", + "longitude_deg": "-151.188397", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Soldotna", + "scheduled_service": "no" + }, + { + "id": "339569", + "ident": "US-2857", + "type": "closed", + "name": "Tachick Airport", + "latitude_deg": "60.49308", + "longitude_deg": "-150.84277", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Soldotna", + "scheduled_service": "no" + }, + { + "id": "339570", + "ident": "US-2858", + "type": "small_airport", + "name": "Birdie Haven Airport", + "latitude_deg": "60.51053", + "longitude_deg": "-150.6433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no" + }, + { + "id": "339571", + "ident": "US-2859", + "type": "small_airport", + "name": "Feuding Lane South Airport", + "latitude_deg": "60.50035", + "longitude_deg": "-150.64422", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no" + }, + { + "id": "339572", + "ident": "US-2860", + "type": "small_airport", + "name": "Feuding Lane North Airport", + "latitude_deg": "60.52221", + "longitude_deg": "-150.65179", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no" + }, + { + "id": "339573", + "ident": "US-2861", + "type": "small_airport", + "name": "Spruce Hen Airport", + "latitude_deg": "60.55416", + "longitude_deg": "-150.79049", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no" + }, + { + "id": "339574", + "ident": "US-2862", + "type": "small_airport", + "name": "Moose Meadows Airport", + "latitude_deg": "60.55301", + "longitude_deg": "-150.641951", + "elevation_ft": "253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no", + "gps_code": "9AK9", + "local_code": "9AK9", + "keywords": "Brian Lane Airport" + }, + { + "id": "339575", + "ident": "US-2863", + "type": "small_airport", + "name": "Whale of a Tail Airport", + "latitude_deg": "60.55199", + "longitude_deg": "-150.62775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no" + }, + { + "id": "339576", + "ident": "US-2864", + "type": "small_airport", + "name": "Alaska Natural Gas Pipeline Airport", + "latitude_deg": "60.54353", + "longitude_deg": "-150.62684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no" + }, + { + "id": "339577", + "ident": "US-2865", + "type": "small_airport", + "name": "Atkins Road Airport", + "latitude_deg": "60.53895", + "longitude_deg": "-150.62299", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no" + }, + { + "id": "339579", + "ident": "US-2866", + "type": "small_airport", + "name": "Whisper Lake Airport", + "latitude_deg": "60.5141", + "longitude_deg": "-150.9169", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Soldotna", + "scheduled_service": "no" + }, + { + "id": "339580", + "ident": "US-2867", + "type": "closed", + "name": "Sangster Airport", + "latitude_deg": "60.5043", + "longitude_deg": "-150.8834", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no" + }, + { + "id": "339581", + "ident": "US-2868", + "type": "closed", + "name": "Morgans Landing Airport", + "latitude_deg": "60.5024", + "longitude_deg": "-150.8643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no" + }, + { + "id": "339582", + "ident": "US-2869", + "type": "closed", + "name": "Bird Homestead Airport", + "latitude_deg": "60.5013", + "longitude_deg": "-150.8489", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no" + }, + { + "id": "339583", + "ident": "US-2870", + "type": "small_airport", + "name": "Funny River Airport", + "latitude_deg": "60.494101", + "longitude_deg": "-150.8587", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no" + }, + { + "id": "339584", + "ident": "US-2871", + "type": "closed", + "name": "Eaglet Airport", + "latitude_deg": "60.5248", + "longitude_deg": "-150.769", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no" + }, + { + "id": "339585", + "ident": "US-2872", + "type": "closed", + "name": "Sara Airport", + "latitude_deg": "60.528835", + "longitude_deg": "-150.746058", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no" + }, + { + "id": "339586", + "ident": "US-2873", + "type": "small_airport", + "name": "Greatland Airport", + "latitude_deg": "60.5333", + "longitude_deg": "-150.7687", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no" + }, + { + "id": "339587", + "ident": "US-2874", + "type": "small_airport", + "name": "Watkins Airport", + "latitude_deg": "60.5552", + "longitude_deg": "-150.8689", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no" + }, + { + "id": "339588", + "ident": "US-2875", + "type": "closed", + "name": "Highbush Airport", + "latitude_deg": "60.576301", + "longitude_deg": "-151.18962", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kenai", + "scheduled_service": "no" + }, + { + "id": "339589", + "ident": "US-2876", + "type": "small_airport", + "name": "Alaska West Airport", + "latitude_deg": "60.635785", + "longitude_deg": "-151.303883", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nikiski", + "scheduled_service": "no" + }, + { + "id": "339590", + "ident": "US-2877", + "type": "small_airport", + "name": "Cavu Airport", + "latitude_deg": "60.65849", + "longitude_deg": "-151.28845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nikiski", + "scheduled_service": "no" + }, + { + "id": "339591", + "ident": "US-2878", + "type": "small_airport", + "name": "High Vista Airport", + "latitude_deg": "60.773212", + "longitude_deg": "-151.227815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nikiski", + "scheduled_service": "no", + "gps_code": "AK11", + "local_code": "AK11" + }, + { + "id": "339592", + "ident": "US-2879", + "type": "small_airport", + "name": "Stevens Airport", + "latitude_deg": "60.66376", + "longitude_deg": "-151.331735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nikiski", + "scheduled_service": "no" + }, + { + "id": "339593", + "ident": "US-2880", + "type": "small_airport", + "name": "Maranatha Airport", + "latitude_deg": "60.69973", + "longitude_deg": "-151.25215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nikiski", + "scheduled_service": "no" + }, + { + "id": "339594", + "ident": "US-2881", + "type": "small_airport", + "name": "Meimi Airport", + "latitude_deg": "60.72358", + "longitude_deg": "-151.12614", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nikiski", + "scheduled_service": "no" + }, + { + "id": "339595", + "ident": "US-2882", + "type": "small_airport", + "name": "Daniels Lake Airport", + "latitude_deg": "60.733784", + "longitude_deg": "-151.213632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nikiski", + "scheduled_service": "no" + }, + { + "id": "339596", + "ident": "US-2883", + "type": "small_airport", + "name": "Salamatof Beach Airport", + "latitude_deg": "60.61906", + "longitude_deg": "-151.34212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nikiski", + "scheduled_service": "no" + }, + { + "id": "339597", + "ident": "US-2884", + "type": "small_airport", + "name": "Moose Point Airport", + "latitude_deg": "60.954809", + "longitude_deg": "-150.687693", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kenai", + "scheduled_service": "no" + }, + { + "id": "339598", + "ident": "US-2885", + "type": "small_airport", + "name": "Swanson River Airport", + "latitude_deg": "60.75266", + "longitude_deg": "-150.804348", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kenai", + "scheduled_service": "no" + }, + { + "id": "339599", + "ident": "US-2886", + "type": "small_airport", + "name": "Chickaloon River Airport", + "latitude_deg": "60.8557", + "longitude_deg": "-150.046", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kenai", + "scheduled_service": "no" + }, + { + "id": "339600", + "ident": "US-2887", + "type": "small_airport", + "name": "Fire Tower Ridge Airstrip", + "latitude_deg": "61.353667", + "longitude_deg": "-149.647264", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Eagle River", + "scheduled_service": "no" + }, + { + "id": "339601", + "ident": "US-2888", + "type": "closed", + "name": "Philos Airport", + "latitude_deg": "61.5664", + "longitude_deg": "-149.3076", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no" + }, + { + "id": "339602", + "ident": "US-2889", + "type": "closed", + "name": "Minnicks Airport", + "latitude_deg": "61.5603", + "longitude_deg": "-149.4571", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no" + }, + { + "id": "339603", + "ident": "US-2890", + "type": "small_airport", + "name": "Caves Lake Airport", + "latitude_deg": "61.44839", + "longitude_deg": "-149.7807", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Knik", + "scheduled_service": "no" + }, + { + "id": "339604", + "ident": "US-2891", + "type": "small_airport", + "name": "Fish Creek Airport", + "latitude_deg": "61.44932", + "longitude_deg": "-149.79678", + "elevation_ft": "1", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Knik", + "scheduled_service": "no" + }, + { + "id": "339605", + "ident": "US-2892", + "type": "closed", + "name": "Point Mackenzie Airport", + "latitude_deg": "61.247802", + "longitude_deg": "-149.988366", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wasilla", + "scheduled_service": "no" + }, + { + "id": "339606", + "ident": "US-2893", + "type": "small_airport", + "name": "Point Mackenzie Substation Northwest Airstrip", + "latitude_deg": "61.26001", + "longitude_deg": "-150.0479", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Point Mackenzie", + "scheduled_service": "no" + }, + { + "id": "339607", + "ident": "US-2894", + "type": "small_airport", + "name": "Point Mackenzie Substation North Airstrip", + "latitude_deg": "61.265715", + "longitude_deg": "-150.024748", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Point Mackenzie", + "scheduled_service": "no" + }, + { + "id": "339608", + "ident": "US-2895", + "type": "small_airport", + "name": "Point Mackenzie Substation Northeast Airstrip", + "latitude_deg": "61.264622", + "longitude_deg": "-150.009041", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Point Mackenzie", + "scheduled_service": "no" + }, + { + "id": "339609", + "ident": "US-2896", + "type": "small_airport", + "name": "Lewis River Airport", + "latitude_deg": "61.251909", + "longitude_deg": "-150.744867", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Lewis River", + "scheduled_service": "no" + }, + { + "id": "339610", + "ident": "US-2897", + "type": "small_airport", + "name": "Theodore River Airport", + "latitude_deg": "61.233327", + "longitude_deg": "-150.847156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Theodore River", + "scheduled_service": "no" + }, + { + "id": "339611", + "ident": "US-2898", + "type": "closed", + "name": "Grants Cabin Airport", + "latitude_deg": "61.259267", + "longitude_deg": "-150.87709", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Theodore River", + "scheduled_service": "no" + }, + { + "id": "339612", + "ident": "US-2899", + "type": "small_airport", + "name": "Beluga River Airport", + "latitude_deg": "61.21832", + "longitude_deg": "-150.981996", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Beluga", + "scheduled_service": "no" + }, + { + "id": "339613", + "ident": "US-2900", + "type": "closed", + "name": "Tobona Airport", + "latitude_deg": "61.044557", + "longitude_deg": "-151.191605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tyonek", + "scheduled_service": "no" + }, + { + "id": "339614", + "ident": "US-2901", + "type": "small_airport", + "name": "Granite Point Airport", + "latitude_deg": "61.023339", + "longitude_deg": "-151.334206", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tyonek", + "scheduled_service": "no" + }, + { + "id": "339615", + "ident": "US-2902", + "type": "small_airport", + "name": "Ivanof Bay Airport", + "latitude_deg": "55.900861", + "longitude_deg": "-159.481631", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ivanof Bay", + "scheduled_service": "no" + }, + { + "id": "339616", + "ident": "US-2903", + "type": "small_airport", + "name": "Canoe Bay Airport", + "latitude_deg": "55.533453", + "longitude_deg": "-161.256611", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Aleutians East", + "scheduled_service": "no" + }, + { + "id": "339617", + "ident": "US-2904", + "type": "closed", + "name": "Jackson Harbor Airport", + "latitude_deg": "55.603015", + "longitude_deg": "-161.321635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Aleutians East", + "scheduled_service": "no" + }, + { + "id": "339618", + "ident": "US-2905", + "type": "closed", + "name": "Alexai Point Army Airfield", + "latitude_deg": "52.81416", + "longitude_deg": "173.2975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Attu Island", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alexai_Point_Army_Airfield" + }, + { + "id": "339619", + "ident": "US-2906", + "type": "closed", + "name": "Gakona Landing Strip", + "latitude_deg": "62.30166", + "longitude_deg": "-145.29138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Gakona", + "scheduled_service": "no" + }, + { + "id": "339620", + "ident": "US-2907", + "type": "closed", + "name": "Kiska Army Airfield", + "latitude_deg": "51.97194", + "longitude_deg": "177.52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kiska Island", + "scheduled_service": "no" + }, + { + "id": "339621", + "ident": "US-2908", + "type": "closed", + "name": "Ogliuga Island Army Airfield", + "latitude_deg": "51.60611", + "longitude_deg": "-178.65638", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ogliuga Island", + "scheduled_service": "no" + }, + { + "id": "339622", + "ident": "US-2909", + "type": "closed", + "name": "Shishmaref Airport (1950)", + "latitude_deg": "66.256", + "longitude_deg": "-166.058", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Shishmaref", + "scheduled_service": "no" + }, + { + "id": "339623", + "ident": "US-2910", + "type": "closed", + "name": "Western Shemya Army Airfield", + "latitude_deg": "52.72248", + "longitude_deg": "174.07037", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Shemya Island", + "scheduled_service": "no" + }, + { + "id": "339624", + "ident": "US-2911", + "type": "closed", + "name": "Fort Randall Army Airfield Satellite Field", + "latitude_deg": "55.17527", + "longitude_deg": "-162.647147", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cold Bay", + "scheduled_service": "no" + }, + { + "id": "339625", + "ident": "US-2912", + "type": "closed", + "name": "Eightmile Lake Airfield", + "latitude_deg": "61.843251", + "longitude_deg": "-151.110472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Eightmile Lake", + "scheduled_service": "no" + }, + { + "id": "339626", + "ident": "US-2913", + "type": "closed", + "name": "Bethel Airport (1939)", + "latitude_deg": "60.79066", + "longitude_deg": "-161.781381", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Bethel", + "scheduled_service": "no" + }, + { + "id": "339627", + "ident": "US-2914", + "type": "closed", + "name": "Bethel Airport (1941)", + "latitude_deg": "60.774501", + "longitude_deg": "-161.726509", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Bethel", + "scheduled_service": "no" + }, + { + "id": "339628", + "ident": "US-2915", + "type": "closed", + "name": "Weeks Field", + "latitude_deg": "64.838", + "longitude_deg": "-147.73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fairbanks", + "scheduled_service": "no" + }, + { + "id": "339629", + "ident": "US-2916", + "type": "closed", + "name": "Phillips Field", + "latitude_deg": "64.85", + "longitude_deg": "-147.793", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fairbanks", + "scheduled_service": "no" + }, + { + "id": "339630", + "ident": "US-2917", + "type": "closed", + "name": "Miller Army Airfield", + "latitude_deg": "57.616", + "longitude_deg": "-152.194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chiniak", + "scheduled_service": "no" + }, + { + "id": "339631", + "ident": "US-2918", + "type": "closed", + "name": "Huslia Airport (1952)", + "latitude_deg": "65.702536", + "longitude_deg": "-156.379221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Huslia", + "scheduled_service": "no" + }, + { + "id": "339632", + "ident": "US-2919", + "type": "closed", + "name": "Cannikin Nuclear Test Site Airfield", + "latitude_deg": "51.44497", + "longitude_deg": "179.13574", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Amchitka Island", + "scheduled_service": "no" + }, + { + "id": "339719", + "ident": "US-2920", + "type": "small_airport", + "name": "Nelson Airport", + "latitude_deg": "60.48453", + "longitude_deg": "-150.92269", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Soldotna", + "scheduled_service": "no" + }, + { + "id": "339737", + "ident": "US-2921", + "type": "closed", + "name": "North Gasoline Airport", + "latitude_deg": "60.823327", + "longitude_deg": "-149.985352", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "scheduled_service": "no" + }, + { + "id": "339738", + "ident": "US-2922", + "type": "closed", + "name": "Texaco Point Possession Airport", + "latitude_deg": "60.933643", + "longitude_deg": "-150.502825", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "scheduled_service": "no" + }, + { + "id": "339739", + "ident": "US-2923", + "type": "closed", + "name": "Copper Center 1 Airport", + "latitude_deg": "61.963085", + "longitude_deg": "-145.310152", + "elevation_ft": "1033", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Copper Center", + "scheduled_service": "no" + }, + { + "id": "339745", + "ident": "US-2924", + "type": "closed", + "name": "Brenwicks Airport", + "latitude_deg": "62.068419", + "longitude_deg": "-145.427428", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Glennallen", + "scheduled_service": "no", + "keywords": "3Z5" + }, + { + "id": "339752", + "ident": "US-2925", + "type": "closed", + "name": "Tolsona Lake Airport", + "latitude_deg": "62.111933", + "longitude_deg": "-146.038781", + "elevation_ft": "2075", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tolsona Lake", + "scheduled_service": "no" + }, + { + "id": "339754", + "ident": "US-2926", + "type": "closed", + "name": "Alexander Lake Airport", + "latitude_deg": "61.731678", + "longitude_deg": "-150.868335", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "scheduled_service": "no" + }, + { + "id": "339755", + "ident": "US-2927", + "type": "closed", + "name": "Chelatna Lake Lodge Airstrip", + "latitude_deg": "62.433736", + "longitude_deg": "-151.415505", + "elevation_ft": "1435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chelatna Lodge", + "scheduled_service": "no", + "home_link": "https://www.chelatna.com/" + }, + { + "id": "339756", + "ident": "US-2928", + "type": "closed", + "name": "Barnhart Airport", + "latitude_deg": "62.609732", + "longitude_deg": "-144.62338", + "elevation_ft": "1930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chistochina", + "scheduled_service": "no" + }, + { + "id": "339757", + "ident": "US-2929", + "type": "closed", + "name": "Mentasta Lodge Airstrip", + "latitude_deg": "62.895114", + "longitude_deg": "-143.674365", + "elevation_ft": "2300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "scheduled_service": "no" + }, + { + "id": "339758", + "ident": "US-2930", + "type": "closed", + "name": "Eagle Creek Mine Airport.", + "latitude_deg": "62.999423", + "longitude_deg": "-144.43814", + "elevation_ft": "3159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Eagle Creek Mine", + "scheduled_service": "no" + }, + { + "id": "339759", + "ident": "US-2931", + "type": "small_airport", + "name": "Francen Airstrip", + "latitude_deg": "63.066581", + "longitude_deg": "-144.885176", + "elevation_ft": "3140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "scheduled_service": "no" + }, + { + "id": "339760", + "ident": "US-2932", + "type": "closed", + "name": "Susitna Lodge Airport", + "latitude_deg": "63.089359", + "longitude_deg": "-147.474107", + "elevation_ft": "2646", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "scheduled_service": "no" + }, + { + "id": "339768", + "ident": "US-2933", + "type": "small_airport", + "name": "Stiletto Airpark", + "latitude_deg": "30.82315", + "longitude_deg": "-97.95815", + "elevation_ft": "1079", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Briggs", + "scheduled_service": "no", + "gps_code": "XS79", + "local_code": "XS79" + }, + { + "id": "339769", + "ident": "US-2934", + "type": "closed", + "name": "Pitts Ranch Airport", + "latitude_deg": "30.69913", + "longitude_deg": "-98.00481", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Liberty Hill", + "scheduled_service": "no" + }, + { + "id": "339770", + "ident": "US-2935", + "type": "closed", + "name": "Liberty Hill Airport", + "latitude_deg": "33.15009", + "longitude_deg": "-84.13753", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Milner", + "scheduled_service": "no" + }, + { + "id": "339812", + "ident": "US-2936", + "type": "closed", + "name": "Citrus Valley North Landing Strip", + "latitude_deg": "33.05859", + "longitude_deg": "-112.89875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gila Bend", + "scheduled_service": "no" + }, + { + "id": "339813", + "ident": "US-2937", + "type": "closed", + "name": "Smurr Airport", + "latitude_deg": "32.9272", + "longitude_deg": "-112.82856", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gila Bend", + "scheduled_service": "no" + }, + { + "id": "339814", + "ident": "US-2938", + "type": "closed", + "name": "Ridgway Airport", + "latitude_deg": "33.0306", + "longitude_deg": "-112.14754", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Maricopa", + "scheduled_service": "no" + }, + { + "id": "339815", + "ident": "US-2939", + "type": "closed", + "name": "Lake Saint Clair Landing Strip", + "latitude_deg": "32.65257", + "longitude_deg": "-111.94658", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Casa Grande", + "scheduled_service": "no" + }, + { + "id": "339816", + "ident": "US-2940", + "type": "closed", + "name": "Pretzer Strip", + "latitude_deg": "32.66873", + "longitude_deg": "-111.54253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Eloy", + "scheduled_service": "no" + }, + { + "id": "339817", + "ident": "US-2941", + "type": "closed", + "name": "Newman Peak Ranch Airport", + "latitude_deg": "32.73609", + "longitude_deg": "-111.45024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Eloy", + "scheduled_service": "no", + "keywords": "21E, 17AZ" + }, + { + "id": "339818", + "ident": "US-2942", + "type": "closed", + "name": "Bud Antle Ranch Airport", + "latitude_deg": "32.62549", + "longitude_deg": "-111.33711", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Picacho", + "scheduled_service": "no" + }, + { + "id": "339819", + "ident": "US-2943", + "type": "closed", + "name": "Florence State Prison Landing Strip", + "latitude_deg": "33.03209", + "longitude_deg": "-111.35751", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Florence", + "scheduled_service": "no" + }, + { + "id": "339820", + "ident": "US-2944", + "type": "closed", + "name": "Womack Airport", + "latitude_deg": "33.36924", + "longitude_deg": "-111.56437", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Apache Junction", + "scheduled_service": "no", + "keywords": "AZ21" + }, + { + "id": "339821", + "ident": "US-2945", + "type": "heliport", + "name": "Banner Goldfield Medical Center Heliport", + "latitude_deg": "33.39499", + "longitude_deg": "-111.56686", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Apache Junction", + "scheduled_service": "no" + }, + { + "id": "339830", + "ident": "US-2946", + "type": "closed", + "name": "Moulton Airport", + "latitude_deg": "40.663516", + "longitude_deg": "-92.685986", + "elevation_ft": "995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Moulton", + "scheduled_service": "no" + }, + { + "id": "339831", + "ident": "US-2947", + "type": "closed", + "name": "Moulton Municipal Airport", + "latitude_deg": "29.57035", + "longitude_deg": "-97.15403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Moulton", + "scheduled_service": "no" + }, + { + "id": "339833", + "ident": "US-2948", + "type": "closed", + "name": "Moulton Farms Airport", + "latitude_deg": "38.24688", + "longitude_deg": "-88.44108", + "elevation_ft": "379", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Wayne City", + "scheduled_service": "no" + }, + { + "id": "339858", + "ident": "US-2949", + "type": "small_airport", + "name": "Camp Pendleton LHD Practice Strip", + "latitude_deg": "33.30005", + "longitude_deg": "-117.46926", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceanside", + "scheduled_service": "no" + }, + { + "id": "339859", + "ident": "US-2950", + "type": "heliport", + "name": "Camp Pendleton Horno Heliport", + "latitude_deg": "33.38217", + "longitude_deg": "-117.47733", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceanside", + "scheduled_service": "no" + }, + { + "id": "339860", + "ident": "US-2951", + "type": "heliport", + "name": "Camp Pendleton School of Infantry Heliport", + "latitude_deg": "33.39259", + "longitude_deg": "-117.51548", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceanside", + "scheduled_service": "no" + }, + { + "id": "339861", + "ident": "US-2952", + "type": "small_airport", + "name": "Camp Pendleton Helicopter Outlying Landing Field", + "latitude_deg": "33.43321", + "longitude_deg": "-117.53266", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceanside", + "scheduled_service": "no" + }, + { + "id": "339862", + "ident": "US-2953", + "type": "heliport", + "name": "Camp Talega Heliport", + "latitude_deg": "33.4538", + "longitude_deg": "-117.56004", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Clemente", + "scheduled_service": "no" + }, + { + "id": "339863", + "ident": "US-2954", + "type": "closed", + "name": "Markham Airport", + "latitude_deg": "35.2775", + "longitude_deg": "-113.13725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Seligman", + "scheduled_service": "no" + }, + { + "id": "339865", + "ident": "US-2955", + "type": "heliport", + "name": "Yavapai Regional Medical Center West Campus Helipad", + "latitude_deg": "34.55819", + "longitude_deg": "-112.48159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Prescott", + "scheduled_service": "no" + }, + { + "id": "339866", + "ident": "US-2956", + "type": "heliport", + "name": "High Desert Hospital Heliport", + "latitude_deg": "34.70324", + "longitude_deg": "-118.2306", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lancaster", + "scheduled_service": "no" + }, + { + "id": "339867", + "ident": "US-2957", + "type": "closed", + "name": "Oban Airport", + "latitude_deg": "34.76822", + "longitude_deg": "-118.1534", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lancaster", + "scheduled_service": "no" + }, + { + "id": "339868", + "ident": "US-2958", + "type": "closed", + "name": "Antelope Valley Airport", + "latitude_deg": "34.64935", + "longitude_deg": "-118.13319", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lancaster", + "scheduled_service": "no" + }, + { + "id": "339869", + "ident": "US-2959", + "type": "closed", + "name": "Bolam Airport", + "latitude_deg": "34.48542", + "longitude_deg": "-114.40847", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Havasu Lake", + "scheduled_service": "no" + }, + { + "id": "339870", + "ident": "US-2960", + "type": "closed", + "name": "Fort McKavett Airport", + "latitude_deg": "30.82911", + "longitude_deg": "-100.14031", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort McKavett", + "scheduled_service": "no" + }, + { + "id": "339871", + "ident": "US-2961", + "type": "closed", + "name": "Derrick Ranch Airport", + "latitude_deg": "30.85555", + "longitude_deg": "-100.22851", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eldorado", + "scheduled_service": "no" + }, + { + "id": "339872", + "ident": "US-2962", + "type": "heliport", + "name": "Schleicher County Medical Center Helipad", + "latitude_deg": "30.87005", + "longitude_deg": "-100.59301", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eldorado", + "scheduled_service": "no" + }, + { + "id": "339873", + "ident": "US-2963", + "type": "closed", + "name": "Dryden Airport", + "latitude_deg": "30.04358", + "longitude_deg": "-102.11872", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dryden", + "scheduled_service": "no" + }, + { + "id": "339874", + "ident": "US-2964", + "type": "closed", + "name": "Sanderson Airport (1938)", + "latitude_deg": "30.15052", + "longitude_deg": "-102.41243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanderson", + "scheduled_service": "no" + }, + { + "id": "339875", + "ident": "US-2965", + "type": "closed", + "name": "Sanderson Airport (1965)", + "latitude_deg": "30.14417", + "longitude_deg": "-102.434881", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanderson", + "scheduled_service": "no" + }, + { + "id": "339876", + "ident": "US-2966", + "type": "closed", + "name": "Lajitas Airport", + "latitude_deg": "29.26515", + "longitude_deg": "-103.76556", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lajitas", + "scheduled_service": "no", + "keywords": "17XS" + }, + { + "id": "339878", + "ident": "US-2967", + "type": "closed", + "name": "Contrabando Airstrip", + "latitude_deg": "29.29127", + "longitude_deg": "-103.84625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lajitas", + "scheduled_service": "no" + }, + { + "id": "339879", + "ident": "US-2968", + "type": "closed", + "name": "Panther Creek Landing Strip", + "latitude_deg": "29.30926", + "longitude_deg": "-103.96906", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Redford", + "scheduled_service": "no" + }, + { + "id": "339880", + "ident": "US-2969", + "type": "closed", + "name": "Redford Landing Strip", + "latitude_deg": "29.46378", + "longitude_deg": "-104.20448", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Redford", + "scheduled_service": "no" + }, + { + "id": "339888", + "ident": "US-2970", + "type": "closed", + "name": "Johnson Ranch Airport", + "latitude_deg": "29.03162", + "longitude_deg": "-103.37313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Columbus", + "scheduled_service": "no" + }, + { + "id": "339889", + "ident": "US-2971", + "type": "closed", + "name": "Presidio County Airport", + "latitude_deg": "30.256023", + "longitude_deg": "-103.885603", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marfa", + "scheduled_service": "no", + "keywords": "Marfa Army Airfield, Marfa-Alpine Airport" + }, + { + "id": "339890", + "ident": "US-2972", + "type": "closed", + "name": "Marfa Auxiliary Army Airfield #1 / A-1 South Field", + "latitude_deg": "30.14753", + "longitude_deg": "-103.84396", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marfa", + "scheduled_service": "no" + }, + { + "id": "339891", + "ident": "US-2973", + "type": "closed", + "name": "Marfa Auxiliary Army Airfield #2", + "latitude_deg": "30.35781", + "longitude_deg": "-104.21775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marfa", + "scheduled_service": "no" + }, + { + "id": "339892", + "ident": "US-2974", + "type": "closed", + "name": "Marfa Auxiliary Army Airfield #3 / Ryan Field", + "latitude_deg": "30.41515", + "longitude_deg": "-104.30093", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marfa", + "scheduled_service": "no" + }, + { + "id": "339893", + "ident": "US-2975", + "type": "closed", + "name": "Marfa Auxiliary Army Airfield #5 / Aragon Field", + "latitude_deg": "30.34183", + "longitude_deg": "-104.1748", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marfa", + "scheduled_service": "no" + }, + { + "id": "339894", + "ident": "US-2976", + "type": "closed", + "name": "Marfa Municipal Airport (1923) / Marfa Auxiliary Army Airfield #7", + "latitude_deg": "30.32678", + "longitude_deg": "-103.99506", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marfa", + "scheduled_service": "no" + }, + { + "id": "339895", + "ident": "US-2977", + "type": "small_airport", + "name": "Comanche Ridge Ranch Airport", + "latitude_deg": "30.7713", + "longitude_deg": "-99.51577", + "elevation_ft": "1888", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "London", + "scheduled_service": "no", + "local_code": "5XA6", + "keywords": "Mason" + }, + { + "id": "340057", + "ident": "US-2978", + "type": "small_airport", + "name": "Simplot / Funky Airstrip", + "latitude_deg": "38.12098", + "longitude_deg": "-110.2394", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "340058", + "ident": "US-2979", + "type": "small_airport", + "name": "Dirty Devil Airstrip", + "latitude_deg": "38.17249", + "longitude_deg": "-110.44537", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "340059", + "ident": "US-2980", + "type": "small_airport", + "name": "Burr Point Airstrip", + "latitude_deg": "38.16657", + "longitude_deg": "-110.47852", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "340060", + "ident": "US-2981", + "type": "small_airport", + "name": "Burr Pass Airstrip", + "latitude_deg": "38.37246", + "longitude_deg": "-110.30749", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "340061", + "ident": "US-2982", + "type": "small_airport", + "name": "Temple Mountain Airstrip", + "latitude_deg": "38.64902", + "longitude_deg": "-110.65959", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "340062", + "ident": "US-2983", + "type": "small_airport", + "name": "Blackburn Draw Airstrip", + "latitude_deg": "38.49628", + "longitude_deg": "-110.61386", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "340063", + "ident": "US-2984", + "type": "small_airport", + "name": "Vincent Flying Services Airport", + "latitude_deg": "30.039231", + "longitude_deg": "-92.293145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kaplan", + "scheduled_service": "no" + }, + { + "id": "340064", + "ident": "US-2985", + "type": "closed", + "name": "Boatner Landing Strip", + "latitude_deg": "30.01738", + "longitude_deg": "-92.52681", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Gueydan", + "scheduled_service": "no" + }, + { + "id": "340066", + "ident": "US-2986", + "type": "heliport", + "name": "USC Medical Center Ground Heliport", + "latitude_deg": "34.05973", + "longitude_deg": "-118.21178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "340071", + "ident": "US-2987", + "type": "heliport", + "name": "Lavaca Medical Center Helipad", + "latitude_deg": "29.45757", + "longitude_deg": "-96.93735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hallettsville", + "scheduled_service": "no" + }, + { + "id": "340075", + "ident": "US-2988", + "type": "small_airport", + "name": "Mount Trumbull Airport", + "latitude_deg": "36.421743", + "longitude_deg": "-113.331199", + "elevation_ft": "5295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Littlefield", + "scheduled_service": "no" + }, + { + "id": "340076", + "ident": "US-2989", + "type": "small_airport", + "name": "Grapevine Spring Airstrip", + "latitude_deg": "36.322288", + "longitude_deg": "-113.972804", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Littlefield", + "scheduled_service": "no" + }, + { + "id": "340077", + "ident": "US-2990", + "type": "closed", + "name": "Longhorn Ranch Airport", + "latitude_deg": "35.00087", + "longitude_deg": "-105.91079", + "elevation_ft": "6326", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Moriarty", + "scheduled_service": "no" + }, + { + "id": "340078", + "ident": "US-2991", + "type": "closed", + "name": "Price Landing Strip", + "latitude_deg": "31.22799", + "longitude_deg": "-99.21309", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rochelle", + "scheduled_service": "no" + }, + { + "id": "340079", + "ident": "US-2992", + "type": "closed", + "name": "Buchanan Lake Village Airport", + "latitude_deg": "30.85729", + "longitude_deg": "-98.4539", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tow", + "scheduled_service": "no" + }, + { + "id": "340080", + "ident": "US-2993", + "type": "small_airport", + "name": "Shale Valley Ranch Airport", + "latitude_deg": "30.845165", + "longitude_deg": "-98.272914", + "elevation_ft": "1417", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Burnet", + "scheduled_service": "no", + "gps_code": "2TA0", + "local_code": "2TA0" + }, + { + "id": "340081", + "ident": "US-2994", + "type": "closed", + "name": "M&M Air Services Airport", + "latitude_deg": "29.952964", + "longitude_deg": "-94.226589", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beaumont", + "scheduled_service": "no" + }, + { + "id": "340198", + "ident": "US-2995", + "type": "small_airport", + "name": "Dauenhauer Field", + "latitude_deg": "33.015861", + "longitude_deg": "-97.634876", + "elevation_ft": "906", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Boyd", + "scheduled_service": "no", + "gps_code": "6TS2", + "local_code": "6TS2" + }, + { + "id": "340446", + "ident": "US-2996", + "type": "closed", + "name": "Leonards Landing Strip", + "latitude_deg": "30.24908", + "longitude_deg": "-92.31201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Rayne", + "scheduled_service": "no" + }, + { + "id": "340447", + "ident": "US-2997", + "type": "closed", + "name": "Fort Pierce Airport", + "latitude_deg": "27.408", + "longitude_deg": "-80.321", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Pierce", + "scheduled_service": "no" + }, + { + "id": "340448", + "ident": "US-2998", + "type": "closed", + "name": "Hollywood Airpark / MacArthur Field", + "latitude_deg": "25.997811", + "longitude_deg": "-80.15043", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Hollywood", + "scheduled_service": "no" + }, + { + "id": "340449", + "ident": "US-2999", + "type": "closed", + "name": "Broward Field / Bradley Field", + "latitude_deg": "26.16", + "longitude_deg": "-80.16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Lauderdale", + "scheduled_service": "no" + }, + { + "id": "42782", + "ident": "US-2FA7", + "type": "small_airport", + "name": "Kathrinstadt Airport", + "latitude_deg": "29.634436", + "longitude_deg": "-81.464935", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Hastings", + "scheduled_service": "no", + "local_code": "2FA7", + "home_link": "http://kathrinstadt-airport.8m.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kathrinstadt_Airport", + "keywords": "Kathrinstadt, Aeromarine, Vintage Airplane, Vintage Airline, 1920's" + }, + { + "id": "44459", + "ident": "US-2N8", + "type": "closed", + "name": "Marlboro Airport", + "latitude_deg": "40.3663", + "longitude_deg": "-74.254", + "elevation_ft": "122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Marlboro", + "scheduled_service": "no", + "keywords": "2N8, Preston Airfield, Matawan, Morganville" + }, + { + "id": "340450", + "ident": "US-3000", + "type": "closed", + "name": "NOLF Davie / South Florida Airport", + "latitude_deg": "26.04", + "longitude_deg": "-80.23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Davie", + "scheduled_service": "no" + }, + { + "id": "340451", + "ident": "US-3001", + "type": "closed", + "name": "NOLF Forman / Fort Lauderdale-Davie Airport", + "latitude_deg": "26.08", + "longitude_deg": "-80.24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Lauderdale", + "scheduled_service": "no" + }, + { + "id": "340453", + "ident": "US-3002", + "type": "closed", + "name": "Falcon Ridge Airpark", + "latitude_deg": "27.520037", + "longitude_deg": "-80.482834", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Pierce", + "scheduled_service": "no" + }, + { + "id": "340454", + "ident": "US-3003", + "type": "closed", + "name": "Worden Airport", + "latitude_deg": "42.03081", + "longitude_deg": "-121.87239", + "elevation_ft": "4087", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Klamath Falls", + "scheduled_service": "no" + }, + { + "id": "340456", + "ident": "US-3004", + "type": "small_airport", + "name": "Darrell Airstrip", + "latitude_deg": "30.04497", + "longitude_deg": "-94.71228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Liberty", + "scheduled_service": "no" + }, + { + "id": "340457", + "ident": "US-3005", + "type": "small_airport", + "name": "Salinas Landesert Ranch Airport", + "latitude_deg": "34.79996", + "longitude_deg": "-118.18028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lancaster", + "scheduled_service": "no" + }, + { + "id": "340458", + "ident": "US-3006", + "type": "closed", + "name": "Liberty Field", + "latitude_deg": "34.80337", + "longitude_deg": "-118.15847", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rosamond", + "scheduled_service": "no" + }, + { + "id": "340459", + "ident": "US-3007", + "type": "small_airport", + "name": "Double J Ranch Airport", + "latitude_deg": "27.557844", + "longitude_deg": "-98.782818", + "elevation_ft": "806", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Freer", + "scheduled_service": "no" + }, + { + "id": "340460", + "ident": "US-3008", + "type": "closed", + "name": "Solo Ranch Airport", + "latitude_deg": "27.59804", + "longitude_deg": "-98.66087", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Freer", + "scheduled_service": "no" + }, + { + "id": "340461", + "ident": "US-3009", + "type": "closed", + "name": "Gray Mountain Airport", + "latitude_deg": "35.74682", + "longitude_deg": "-111.47959", + "elevation_ft": "5039", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gray Mountain", + "scheduled_service": "no" + }, + { + "id": "340463", + "ident": "US-3010", + "type": "closed", + "name": "Ayres Airstrip", + "latitude_deg": "44.24753", + "longitude_deg": "-123.19479", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Junction City", + "scheduled_service": "no" + }, + { + "id": "340464", + "ident": "US-3011", + "type": "closed", + "name": "Commons Airport", + "latitude_deg": "44.29851", + "longitude_deg": "-123.14982", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Harrisburg", + "scheduled_service": "no", + "keywords": "Oregon Fresh" + }, + { + "id": "340465", + "ident": "US-3012", + "type": "closed", + "name": "Coburg North Airport", + "latitude_deg": "44.14517", + "longitude_deg": "-123.06689", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Coburg", + "scheduled_service": "no" + }, + { + "id": "340466", + "ident": "US-3013", + "type": "closed", + "name": "Coburg South Airport", + "latitude_deg": "44.13015", + "longitude_deg": "-123.05162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Coburg", + "scheduled_service": "no" + }, + { + "id": "340467", + "ident": "US-3014", + "type": "closed", + "name": "Peakville Landing Strip", + "latitude_deg": "41.97263", + "longitude_deg": "-75.09307", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "East Branch", + "scheduled_service": "no" + }, + { + "id": "340468", + "ident": "US-3015", + "type": "closed", + "name": "Grassy Point Seaplane Base", + "latitude_deg": "41.21231", + "longitude_deg": "-73.96464", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Haverstraw", + "scheduled_service": "no" + }, + { + "id": "340469", + "ident": "US-3016", + "type": "closed", + "name": "Stony Point Seaplane Base", + "latitude_deg": "41.23713", + "longitude_deg": "-73.97499", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Stony Point", + "scheduled_service": "no" + }, + { + "id": "340470", + "ident": "US-3017", + "type": "closed", + "name": "Cavalier Groves Airfield", + "latitude_deg": "27.87903", + "longitude_deg": "-80.52664", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Micco", + "scheduled_service": "no", + "keywords": "Sottile Groves, Canaveral Indian River Groves, Lake Byrd Citrus Packing Company, Micco Airfield" + }, + { + "id": "340471", + "ident": "US-3018", + "type": "heliport", + "name": "Harris County ESD #80 Heliport", + "latitude_deg": "29.889573", + "longitude_deg": "-95.058393", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crosby", + "scheduled_service": "no", + "gps_code": "6TA4", + "local_code": "6TA4", + "home_link": "https://www.airnav.com/airport/6TA4" + }, + { + "id": "340473", + "ident": "US-3019", + "type": "small_airport", + "name": "Lauderdale Airport", + "latitude_deg": "30.486859", + "longitude_deg": "-96.786795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Caldwell", + "scheduled_service": "no", + "gps_code": "49TA", + "local_code": "49TA" + }, + { + "id": "340482", + "ident": "US-3020", + "type": "closed", + "name": "Wildcat Creek Airport", + "latitude_deg": "38.588", + "longitude_deg": "-91.2206", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "New Haven", + "scheduled_service": "no" + }, + { + "id": "340486", + "ident": "US-3021", + "type": "closed", + "name": "A P Ranch Airport", + "latitude_deg": "27.857237", + "longitude_deg": "-99.079748", + "elevation_ft": "476", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Encinal", + "scheduled_service": "no" + }, + { + "id": "340487", + "ident": "US-3022", + "type": "small_airport", + "name": "Jacalon Ranch Airport", + "latitude_deg": "27.280417", + "longitude_deg": "-98.96699", + "elevation_ft": "823", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hebbronville", + "scheduled_service": "no", + "gps_code": "TE89", + "local_code": "TE89", + "home_link": "https://www.jacalonranch.com/size-location" + }, + { + "id": "340488", + "ident": "US-3023", + "type": "small_airport", + "name": "Ayers Field", + "latitude_deg": "33.571436", + "longitude_deg": "-98.114133", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bellevue", + "scheduled_service": "no", + "gps_code": "8XS2", + "local_code": "8XS2" + }, + { + "id": "340489", + "ident": "US-3024", + "type": "closed", + "name": "Chateau Thierry Flying Field (1920)", + "latitude_deg": "33.8026", + "longitude_deg": "-118.18825", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Long Beach", + "scheduled_service": "no" + }, + { + "id": "340504", + "ident": "US-3025", + "type": "small_airport", + "name": "Knox Ridge Airport", + "latitude_deg": "47.61666", + "longitude_deg": "-108.84805", + "elevation_ft": "2950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Winifred", + "scheduled_service": "no", + "local_code": "MT3" + }, + { + "id": "340509", + "ident": "US-3026", + "type": "small_airport", + "name": "Woodhawk Airport", + "latitude_deg": "47.779561", + "longitude_deg": "-109.078574", + "elevation_ft": "3100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Winifred", + "scheduled_service": "no", + "local_code": "WH0" + }, + { + "id": "340537", + "ident": "US-3027", + "type": "small_airport", + "name": "Walz Airport", + "latitude_deg": "37.045164", + "longitude_deg": "-98.570181", + "elevation_ft": "1387", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Kiowa", + "scheduled_service": "no", + "local_code": "4KS" + }, + { + "id": "340538", + "ident": "US-3028", + "type": "closed", + "name": "Prudhoe Bay Airstrip", + "latitude_deg": "70.251529", + "longitude_deg": "-148.346393", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Deadhorse", + "scheduled_service": "no" + }, + { + "id": "340541", + "ident": "US-3029", + "type": "closed", + "name": "Emma Creek Airport", + "latitude_deg": "67.318055", + "longitude_deg": "-150.183696", + "elevation_ft": "1079", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "scheduled_service": "no" + }, + { + "id": "340542", + "ident": "US-3030", + "type": "closed", + "name": "Dietrich Camp Landing Strip", + "latitude_deg": "67.686433", + "longitude_deg": "-149.734554", + "elevation_ft": "1476", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "scheduled_service": "no" + }, + { + "id": "340543", + "ident": "US-3031", + "type": "closed", + "name": "Linda Creek Airport", + "latitude_deg": "67.521337", + "longitude_deg": "-149.822799", + "elevation_ft": "1496", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "scheduled_service": "no" + }, + { + "id": "340545", + "ident": "US-3032", + "type": "closed", + "name": "Orange Hill Airstrip", + "latitude_deg": "62.211422", + "longitude_deg": "-142.85494", + "elevation_ft": "2887", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nabesna", + "scheduled_service": "no", + "home_link": "https://www.alaska.org/detail/orange-hill-airstrip" + }, + { + "id": "340546", + "ident": "US-3033", + "type": "closed", + "name": "Lees Camp Landing Strip", + "latitude_deg": "64.618286", + "longitude_deg": "-164.391357", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Lees Camp", + "scheduled_service": "no" + }, + { + "id": "340548", + "ident": "US-3034", + "type": "closed", + "name": "Ungalik Airstrip", + "latitude_deg": "64.553456", + "longitude_deg": "-160.787657", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ungalik", + "scheduled_service": "no" + }, + { + "id": "340549", + "ident": "US-3035", + "type": "closed", + "name": "Cape Krusenstern Airstrip", + "latitude_deg": "67.268444", + "longitude_deg": "-163.66996", + "elevation_ft": "489", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "scheduled_service": "no" + }, + { + "id": "340551", + "ident": "US-3036", + "type": "closed", + "name": "Red Dog Mine Portsite Airstrip", + "latitude_deg": "67.591567", + "longitude_deg": "-164.05283", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kivalina", + "scheduled_service": "no", + "keywords": "DeLong Mountain Terminal" + }, + { + "id": "340074", + "ident": "US-3037", + "type": "closed", + "name": "St George Municipal Airport", + "latitude_deg": "37.08774", + "longitude_deg": "-113.593109", + "elevation_ft": "2941", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "St George", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/St._George_Municipal_Airport", + "keywords": "SGU, KSGU" + }, + { + "id": "340804", + "ident": "US-3038", + "type": "closed", + "name": "Nuiqsut Airport (1970)", + "latitude_deg": "70.216484", + "longitude_deg": "-150.971426", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nuiqsut", + "scheduled_service": "no" + }, + { + "id": "340805", + "ident": "US-3039", + "type": "small_airport", + "name": "Brownlow Point Airport", + "latitude_deg": "69.979281", + "longitude_deg": "-144.834986", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Brownlow Point", + "scheduled_service": "no" + }, + { + "id": "340806", + "ident": "US-3040", + "type": "small_airport", + "name": "Kaktovik South Airstrip", + "latitude_deg": "70.11308", + "longitude_deg": "-143.655033", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Kaktovik", + "scheduled_service": "no" + }, + { + "id": "340807", + "ident": "US-3041", + "type": "small_airport", + "name": "Demarcation Bay Airfield", + "latitude_deg": "69.882551", + "longitude_deg": "-142.305616", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nuvagapak Point", + "scheduled_service": "no", + "keywords": "Nuvagapak Point" + }, + { + "id": "340841", + "ident": "US-3042", + "type": "closed", + "name": "Missouri River Ranch Airport", + "latitude_deg": "47.06065", + "longitude_deg": "-111.971604", + "elevation_ft": "3467", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Craig", + "scheduled_service": "no", + "keywords": "55MT" + }, + { + "id": "340857", + "ident": "US-3043", + "type": "small_airport", + "name": "Triple-Ace Field", + "latitude_deg": "33.25212", + "longitude_deg": "-97.553326", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Decatur", + "scheduled_service": "no", + "local_code": "35X" + }, + { + "id": "340870", + "ident": "US-3044", + "type": "heliport", + "name": "Nacogdoches Memorial Hospital Heliport", + "latitude_deg": "31.612723", + "longitude_deg": "-94.647583", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Nacogdoches", + "scheduled_service": "no", + "gps_code": "02TX", + "local_code": "02TX" + }, + { + "id": "340871", + "ident": "US-3045", + "type": "small_airport", + "name": "Evans Aerodrome", + "latitude_deg": "35.077017", + "longitude_deg": "-101.691369", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Amarillo", + "scheduled_service": "no", + "gps_code": "XS39", + "local_code": "XS39" + }, + { + "id": "340874", + "ident": "US-3046", + "type": "heliport", + "name": "Navarro Regional Hospital Heliport", + "latitude_deg": "32.083052", + "longitude_deg": "-96.503059", + "elevation_ft": "444", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corsicana", + "scheduled_service": "no", + "gps_code": "25TE", + "local_code": "25TE" + }, + { + "id": "340876", + "ident": "US-3047", + "type": "small_airport", + "name": "Socks Flyers Airport", + "latitude_deg": "38.883619", + "longitude_deg": "-84.257711", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "California", + "scheduled_service": "no", + "gps_code": "29KY", + "local_code": "29KY" + }, + { + "id": "340919", + "ident": "US-3048", + "type": "closed", + "name": "Guest Ranch Airport", + "latitude_deg": "29.25701", + "longitude_deg": "-98.46748", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no" + }, + { + "id": "340920", + "ident": "US-3049", + "type": "closed", + "name": "Hillsboro Municipal Airport (1966)", + "latitude_deg": "32.04684", + "longitude_deg": "-97.11627", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hillsboro", + "scheduled_service": "no" + }, + { + "id": "340921", + "ident": "US-3050", + "type": "closed", + "name": "Belton Airport", + "latitude_deg": "31.04439", + "longitude_deg": "-97.48441", + "elevation_ft": "673", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Belton", + "scheduled_service": "no" + }, + { + "id": "340922", + "ident": "US-3051", + "type": "closed", + "name": "Prairie Hill Air Force Auxiliary Field", + "latitude_deg": "31.63411", + "longitude_deg": "-96.7903", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mart", + "scheduled_service": "no" + }, + { + "id": "340923", + "ident": "US-3052", + "type": "small_airport", + "name": "Wieser Angus Ranch Airport", + "latitude_deg": "30.2521", + "longitude_deg": "-98.824486", + "elevation_ft": "1643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fredericksburg", + "scheduled_service": "no", + "gps_code": "35TE", + "local_code": "35TE" + }, + { + "id": "340931", + "ident": "US-3053", + "type": "heliport", + "name": "Memorial Health System Helipad", + "latitude_deg": "38.92433", + "longitude_deg": "-97.20553", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Abilene", + "scheduled_service": "no" + }, + { + "id": "340932", + "ident": "US-3054", + "type": "closed", + "name": "Wright Airpark", + "latitude_deg": "38.90412", + "longitude_deg": "-97.21121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Abilene", + "scheduled_service": "no" + }, + { + "id": "340933", + "ident": "US-3055", + "type": "closed", + "name": "Drews Airstrip", + "latitude_deg": "44.18376", + "longitude_deg": "-123.25147", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Junction City", + "scheduled_service": "no" + }, + { + "id": "340934", + "ident": "US-3056", + "type": "closed", + "name": "Adrian Landing Strip", + "latitude_deg": "35.28219", + "longitude_deg": "-102.66929", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Adrian", + "scheduled_service": "no" + }, + { + "id": "340935", + "ident": "US-3057", + "type": "heliport", + "name": "Henry Mayo Newhall Memorial Hospital Garage Heliport", + "latitude_deg": "34.39901", + "longitude_deg": "-118.5518", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Clarita", + "scheduled_service": "no" + }, + { + "id": "340936", + "ident": "US-3058", + "type": "closed", + "name": "6S Ranch Airport", + "latitude_deg": "34.4214", + "longitude_deg": "-118.47214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Clarita", + "scheduled_service": "no" + }, + { + "id": "340937", + "ident": "US-3059", + "type": "closed", + "name": "Newhall Airport", + "latitude_deg": "34.39814", + "longitude_deg": "-118.54721", + "elevation_ft": "1211", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Clarita", + "scheduled_service": "no", + "keywords": "Saugus Intermediate Field" + }, + { + "id": "340938", + "ident": "US-3060", + "type": "closed", + "name": "Santa Susana Airport", + "latitude_deg": "34.27", + "longitude_deg": "-118.7059", + "elevation_ft": "961", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Simi Valley", + "scheduled_service": "no" + }, + { + "id": "340941", + "ident": "US-3061", + "type": "heliport", + "name": "West Hills Hospital Helipad", + "latitude_deg": "34.20319", + "longitude_deg": "-118.62904", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "West Hills", + "scheduled_service": "no" + }, + { + "id": "340942", + "ident": "US-3062", + "type": "closed", + "name": "West Hills Co-Op Airport", + "latitude_deg": "35.65054", + "longitude_deg": "-119.88475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lost Hills", + "scheduled_service": "no", + "keywords": "Blackwells" + }, + { + "id": "340943", + "ident": "US-3063", + "type": "closed", + "name": "Semitropic Field", + "latitude_deg": "35.59387", + "longitude_deg": "-119.48543", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Wasco", + "scheduled_service": "no" + }, + { + "id": "340944", + "ident": "US-3064", + "type": "closed", + "name": "Crockett and Gambogy Ranch Airport", + "latitude_deg": "35.9425", + "longitude_deg": "-119.5915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Corcoran", + "scheduled_service": "no" + }, + { + "id": "340945", + "ident": "US-3065", + "type": "small_airport", + "name": "South Lake Farms Airport", + "latitude_deg": "35.9316", + "longitude_deg": "-119.6478", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Corcoran", + "scheduled_service": "no" + }, + { + "id": "340946", + "ident": "US-3066", + "type": "closed", + "name": "Cibola Camp Airstrip", + "latitude_deg": "33.22197", + "longitude_deg": "-114.66046", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yuma", + "scheduled_service": "no" + }, + { + "id": "340947", + "ident": "US-3067", + "type": "closed", + "name": "Cibola Lake Airstrip", + "latitude_deg": "33.26723", + "longitude_deg": "-114.65944", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yuma", + "scheduled_service": "no" + }, + { + "id": "340949", + "ident": "US-3068", + "type": "closed", + "name": "San Luis Airport", + "latitude_deg": "32.48626", + "longitude_deg": "-114.7766", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "San Luis", + "scheduled_service": "no" + }, + { + "id": "340950", + "ident": "US-3069", + "type": "closed", + "name": "Gadsden Airstrip", + "latitude_deg": "32.53474", + "longitude_deg": "-114.75735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gadsden", + "scheduled_service": "no" + }, + { + "id": "340951", + "ident": "US-3070", + "type": "closed", + "name": "Camp Pilot Knob Airfield", + "latitude_deg": "32.76591", + "longitude_deg": "-114.75581", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Winterhaven", + "scheduled_service": "no" + }, + { + "id": "340952", + "ident": "US-3071", + "type": "closed", + "name": "Smiley Field", + "latitude_deg": "32.70468", + "longitude_deg": "-113.92309", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tacna", + "scheduled_service": "no" + }, + { + "id": "340953", + "ident": "US-3072", + "type": "small_airport", + "name": "Radium Hot Springs Airfield", + "latitude_deg": "32.751354", + "longitude_deg": "-114.051773", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wellton", + "scheduled_service": "no" + }, + { + "id": "340954", + "ident": "US-3073", + "type": "small_airport", + "name": "Terry Ranch Airport", + "latitude_deg": "32.78015", + "longitude_deg": "-113.95825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wellton", + "scheduled_service": "no" + }, + { + "id": "340955", + "ident": "US-3074", + "type": "closed", + "name": "White Wing Ranch Airstrip", + "latitude_deg": "32.967674", + "longitude_deg": "-113.497725", + "elevation_ft": "508", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Dateland", + "scheduled_service": "no" + }, + { + "id": "340956", + "ident": "US-3075", + "type": "closed", + "name": "Sinton Airport", + "latitude_deg": "28.03996", + "longitude_deg": "-97.49163", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sinton", + "scheduled_service": "no" + }, + { + "id": "340957", + "ident": "US-3076", + "type": "closed", + "name": "Hunt Dusting Service Field", + "latitude_deg": "27.98394", + "longitude_deg": "-97.38275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Taft", + "scheduled_service": "no", + "keywords": "90R, Worsham Airfield" + }, + { + "id": "340958", + "ident": "US-3077", + "type": "closed", + "name": "Sabinal Northwest Airstrip", + "latitude_deg": "29.34224", + "longitude_deg": "-99.5005", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sabinal", + "scheduled_service": "no" + }, + { + "id": "340959", + "ident": "US-3078", + "type": "closed", + "name": "Cambo Ranch Airport", + "latitude_deg": "29.33358", + "longitude_deg": "-99.46855", + "elevation_ft": "371", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sabinal", + "scheduled_service": "no", + "keywords": "Sabinal Central" + }, + { + "id": "340960", + "ident": "US-3079", + "type": "closed", + "name": "Sabinal North Airstrip", + "latitude_deg": "29.3484", + "longitude_deg": "-99.4687", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sabinal", + "scheduled_service": "no" + }, + { + "id": "340961", + "ident": "US-3080", + "type": "heliport", + "name": "Resolute Health Hospital New Braunfels Helipad", + "latitude_deg": "29.72222", + "longitude_deg": "-98.06892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "New Braunfels", + "scheduled_service": "no" + }, + { + "id": "340962", + "ident": "US-3081", + "type": "closed", + "name": "Nolton Creek Airstrip", + "latitude_deg": "29.38312", + "longitude_deg": "-99.51249", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sabinal", + "scheduled_service": "no" + }, + { + "id": "340963", + "ident": "US-3082", + "type": "heliport", + "name": "South Texas Health System Edinburg Helipad", + "latitude_deg": "26.26274", + "longitude_deg": "-98.18243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Edinburg", + "scheduled_service": "no" + }, + { + "id": "340964", + "ident": "US-3083", + "type": "heliport", + "name": "Parkland Hospital #1 Heliport", + "latitude_deg": "32.8131", + "longitude_deg": "-96.83493", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no" + }, + { + "id": "340965", + "ident": "US-3084", + "type": "heliport", + "name": "Mission Regional Medical Center Helipad", + "latitude_deg": "26.19549", + "longitude_deg": "-98.31344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mission", + "scheduled_service": "no" + }, + { + "id": "340966", + "ident": "US-3085", + "type": "closed", + "name": "Mission Field", + "latitude_deg": "34.133216", + "longitude_deg": "-118.035851", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Arcadia", + "scheduled_service": "no", + "keywords": "Arcadia Intermediate Landing Field, Ross Field" + }, + { + "id": "340967", + "ident": "US-3086", + "type": "heliport", + "name": "Dimmitt Regional Hospital Helipad", + "latitude_deg": "28.51996", + "longitude_deg": "-99.8626", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Carrizo Springs", + "scheduled_service": "no" + }, + { + "id": "340968", + "ident": "US-3087", + "type": "closed", + "name": "Rocky Creek Airfield", + "latitude_deg": "28.651274", + "longitude_deg": "-99.889381", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crystal City", + "scheduled_service": "no" + }, + { + "id": "340969", + "ident": "US-3088", + "type": "closed", + "name": "SOS Ranch Airport", + "latitude_deg": "28.74856", + "longitude_deg": "-99.98015", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crystal City", + "scheduled_service": "no" + }, + { + "id": "340970", + "ident": "US-3089", + "type": "small_airport", + "name": "Barker Ranch Airport", + "latitude_deg": "28.755", + "longitude_deg": "-99.9432", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crystal City", + "scheduled_service": "no" + }, + { + "id": "340971", + "ident": "US-3090", + "type": "closed", + "name": "Vahlsing Airport", + "latitude_deg": "28.11814", + "longitude_deg": "-97.79181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mathis", + "scheduled_service": "no" + }, + { + "id": "340972", + "ident": "US-3091", + "type": "closed", + "name": "Lake Corpus Christi Airport", + "latitude_deg": "28.07222", + "longitude_deg": "-97.85651", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mathis", + "scheduled_service": "no" + }, + { + "id": "340973", + "ident": "US-3092", + "type": "small_airport", + "name": "Airforce Turbine Service Private Airport", + "latitude_deg": "28.14761", + "longitude_deg": "-97.7899", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mathis", + "scheduled_service": "no" + }, + { + "id": "340974", + "ident": "US-3093", + "type": "heliport", + "name": "Christus Saint Michael Hospital Helipad", + "latitude_deg": "33.46434", + "longitude_deg": "-94.07594", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Texarkana", + "scheduled_service": "no" + }, + { + "id": "340985", + "ident": "US-3094", + "type": "closed", + "name": "Fox Airport", + "latitude_deg": "26.47268", + "longitude_deg": "-97.7931", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Raymondville", + "scheduled_service": "no" + }, + { + "id": "340986", + "ident": "US-3095", + "type": "closed", + "name": "La Jarra Ranch Airport", + "latitude_deg": "26.48024", + "longitude_deg": "-97.74631", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Raymondville", + "scheduled_service": "no" + }, + { + "id": "340987", + "ident": "US-3096", + "type": "closed", + "name": "Raymondville Airstrip", + "latitude_deg": "26.47114", + "longitude_deg": "-97.76709", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Raymondville", + "scheduled_service": "no" + }, + { + "id": "340988", + "ident": "US-3097", + "type": "closed", + "name": "Yturria Ranch Airport", + "latitude_deg": "26.563654", + "longitude_deg": "-97.783525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Raymondville", + "scheduled_service": "no", + "keywords": "Esperanza Ranch" + }, + { + "id": "340989", + "ident": "US-3098", + "type": "closed", + "name": "Thomas Ranch Airport", + "latitude_deg": "26.595869", + "longitude_deg": "-97.77294", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Raymondville", + "scheduled_service": "no" + }, + { + "id": "340990", + "ident": "US-3099", + "type": "closed", + "name": "King Ranch Airstrip", + "latitude_deg": "26.762506", + "longitude_deg": "-97.693763", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Norias", + "scheduled_service": "no" + }, + { + "id": "340992", + "ident": "US-3100", + "type": "heliport", + "name": "Community Medical Center Heliport", + "latitude_deg": "39.964611", + "longitude_deg": "-74.215889", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Toms River", + "scheduled_service": "no", + "gps_code": "44NJ", + "local_code": "44NJ" + }, + { + "id": "341020", + "ident": "US-3101", + "type": "heliport", + "name": "Fluke Biomedical Heliport", + "latitude_deg": "47.9362", + "longitude_deg": "-122.26722", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Everett", + "scheduled_service": "no" + }, + { + "id": "341021", + "ident": "US-3102", + "type": "heliport", + "name": "Cal Fire Prado Helitack Base", + "latitude_deg": "33.98888", + "longitude_deg": "-117.68683", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chino", + "scheduled_service": "no" + }, + { + "id": "341022", + "ident": "US-3103", + "type": "heliport", + "name": "Cal Fire Vina Helitack Base", + "latitude_deg": "39.9287", + "longitude_deg": "-122.02833", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Vina", + "scheduled_service": "no" + }, + { + "id": "341023", + "ident": "US-3104", + "type": "heliport", + "name": "Cal Fire Alma Helitack Base", + "latitude_deg": "37.18357", + "longitude_deg": "-121.99059", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Gatos", + "scheduled_service": "no", + "local_code": "ALM" + }, + { + "id": "341024", + "ident": "US-3105", + "type": "heliport", + "name": "USFS Keenwild Helitack Base", + "latitude_deg": "33.71258", + "longitude_deg": "-116.71259", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mountain Center", + "scheduled_service": "no" + }, + { + "id": "341025", + "ident": "US-3106", + "type": "heliport", + "name": "Cal Fire Kneeland Helitack Base", + "latitude_deg": "40.71923", + "longitude_deg": "-123.92865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Kneeland", + "scheduled_service": "no" + }, + { + "id": "341026", + "ident": "US-3107", + "type": "heliport", + "name": "USFS Happy Camp Helitack Base", + "latitude_deg": "41.79131", + "longitude_deg": "-123.38567", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Happy Camp", + "scheduled_service": "no" + }, + { + "id": "341027", + "ident": "US-3108", + "type": "heliport", + "name": "Cal Fire Howard Forest Helitack Base", + "latitude_deg": "39.34594", + "longitude_deg": "-123.31635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Willits", + "scheduled_service": "no", + "local_code": "HFS" + }, + { + "id": "341028", + "ident": "US-3109", + "type": "heliport", + "name": "Cal Fire Boggs Mountain Helitack Base", + "latitude_deg": "38.83352", + "longitude_deg": "-122.71835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Kelseyville", + "scheduled_service": "no", + "local_code": "BGS" + }, + { + "id": "341029", + "ident": "US-3110", + "type": "heliport", + "name": "Cal Fire Bieber Helitack Base", + "latitude_deg": "41.12331", + "longitude_deg": "-121.13534", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bieber", + "scheduled_service": "no", + "local_code": "BBR" + }, + { + "id": "341030", + "ident": "US-3111", + "type": "heliport", + "name": "Cal Fire Bear Valley Helitack Base", + "latitude_deg": "36.57165", + "longitude_deg": "-121.18473", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Paicines", + "scheduled_service": "no" + }, + { + "id": "341031", + "ident": "US-3112", + "type": "closed", + "name": "Tannehill Ranch Airport", + "latitude_deg": "36.39449", + "longitude_deg": "-121.07143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Paicines", + "scheduled_service": "no" + }, + { + "id": "341032", + "ident": "US-3113", + "type": "small_airport", + "name": "Bar B Ranch", + "latitude_deg": "36.359985", + "longitude_deg": "-120.786329", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Paicines", + "scheduled_service": "no" + }, + { + "id": "341033", + "ident": "US-3114", + "type": "closed", + "name": "Sierra Pacific Airstrip", + "latitude_deg": "37.87942", + "longitude_deg": "-120.45344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chinese Camp", + "scheduled_service": "no" + }, + { + "id": "341034", + "ident": "US-3115", + "type": "closed", + "name": "Blythe Airport (1936)", + "latitude_deg": "33.57999", + "longitude_deg": "-114.6316", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Blythe", + "scheduled_service": "no" + }, + { + "id": "341035", + "ident": "US-3116", + "type": "heliport", + "name": "Palo Verde Hospital Helipad", + "latitude_deg": "33.61247", + "longitude_deg": "-114.59465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Blythe", + "scheduled_service": "no" + }, + { + "id": "341036", + "ident": "US-3117", + "type": "closed", + "name": "Blythe Auxiliary Airfield A-4", + "latitude_deg": "33.68124", + "longitude_deg": "-114.65911", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Blythe", + "scheduled_service": "no" + }, + { + "id": "341037", + "ident": "US-3118", + "type": "small_airport", + "name": "Chino Airstrip", + "latitude_deg": "34.03892", + "longitude_deg": "-114.38643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Parker", + "scheduled_service": "no" + }, + { + "id": "341038", + "ident": "US-3119", + "type": "closed", + "name": "Aqueduct Airstrip", + "latitude_deg": "34.1976", + "longitude_deg": "-114.4862", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Vidal", + "scheduled_service": "no" + }, + { + "id": "341039", + "ident": "US-3120", + "type": "closed", + "name": "Vidal Airport", + "latitude_deg": "34.1099", + "longitude_deg": "-114.5013", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Vidal", + "scheduled_service": "no" + }, + { + "id": "341040", + "ident": "US-3121", + "type": "heliport", + "name": "Parker Indian Hospital Helipad", + "latitude_deg": "34.14703", + "longitude_deg": "-114.30329", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Parker", + "scheduled_service": "no" + }, + { + "id": "341041", + "ident": "US-3122", + "type": "closed", + "name": "Coxcomb Airfield", + "latitude_deg": "33.9244", + "longitude_deg": "-115.23942", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Desert Center", + "scheduled_service": "no" + }, + { + "id": "341042", + "ident": "US-3123", + "type": "closed", + "name": "Camp Ibis Army Airfield", + "latitude_deg": "34.97633", + "longitude_deg": "-114.83992", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Needles", + "scheduled_service": "no" + }, + { + "id": "341043", + "ident": "US-3124", + "type": "heliport", + "name": "Colorado River Medical Center Helipad", + "latitude_deg": "34.83223", + "longitude_deg": "-114.61791", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Needles", + "scheduled_service": "no" + }, + { + "id": "341044", + "ident": "US-3125", + "type": "small_airport", + "name": "Fort Mojave Airstrip", + "latitude_deg": "34.87", + "longitude_deg": "-114.5888", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mohave Valley", + "scheduled_service": "no" + }, + { + "id": "341045", + "ident": "US-3126", + "type": "closed", + "name": "Boulder City Municipal Airport / Bullock Field", + "latitude_deg": "35.96749", + "longitude_deg": "-114.85395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Boulder City", + "scheduled_service": "no", + "keywords": "KBLD" + }, + { + "id": "341046", + "ident": "US-3127", + "type": "heliport", + "name": "Mead Substation Helipad", + "latitude_deg": "35.93011", + "longitude_deg": "-114.83705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Boulder City", + "scheduled_service": "no" + }, + { + "id": "341047", + "ident": "US-3128", + "type": "heliport", + "name": "Railroad Pass Heliport", + "latitude_deg": "35.97509", + "longitude_deg": "-114.91269", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Henderson", + "scheduled_service": "no" + }, + { + "id": "341048", + "ident": "US-3129", + "type": "heliport", + "name": "St Rose Dominican Hospital Siena Campus Heliport", + "latitude_deg": "36.00364", + "longitude_deg": "-115.11469", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Henderson", + "scheduled_service": "no" + }, + { + "id": "341049", + "ident": "US-3130", + "type": "closed", + "name": "Barton Field", + "latitude_deg": "36.01288", + "longitude_deg": "-115.2498", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no" + }, + { + "id": "341050", + "ident": "US-3131", + "type": "heliport", + "name": "Sunrise Mountain View Hospital Heliport", + "latitude_deg": "36.21432", + "longitude_deg": "-115.24838", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no", + "local_code": "10NV" + }, + { + "id": "341051", + "ident": "US-3132", + "type": "closed", + "name": "Joker Mine Airport", + "latitude_deg": "36.0921", + "longitude_deg": "-114.1632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Bunkerville", + "scheduled_service": "no" + }, + { + "id": "341052", + "ident": "US-3133", + "type": "closed", + "name": "Old Grand Canyon West Airport", + "latitude_deg": "36.024", + "longitude_deg": "-113.8264", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peach Springs", + "scheduled_service": "no" + }, + { + "id": "341053", + "ident": "US-3134", + "type": "closed", + "name": "Spanish Valley Airport", + "latitude_deg": "38.486868", + "longitude_deg": "-109.448118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Moab", + "scheduled_service": "no" + }, + { + "id": "341054", + "ident": "US-3135", + "type": "small_airport", + "name": "Planesfield Airport", + "latitude_deg": "38.48846", + "longitude_deg": "-109.43956", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Moab", + "scheduled_service": "no" + }, + { + "id": "341055", + "ident": "US-3136", + "type": "small_airport", + "name": "Rules Roost Airport", + "latitude_deg": "46.466878", + "longitude_deg": "-120.388448", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Wapato", + "scheduled_service": "no", + "gps_code": "5WA5", + "local_code": "5WA5" + }, + { + "id": "341056", + "ident": "US-3137", + "type": "closed", + "name": "Old Westwater Landing Strip", + "latitude_deg": "39.0963", + "longitude_deg": "-109.0814", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Moab", + "scheduled_service": "no" + }, + { + "id": "341057", + "ident": "US-3138", + "type": "closed", + "name": "Richardson Airstrip", + "latitude_deg": "38.69396", + "longitude_deg": "-109.36632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Moab", + "scheduled_service": "no" + }, + { + "id": "341058", + "ident": "US-3139", + "type": "closed", + "name": "Rhone Landing Strip", + "latitude_deg": "39.117", + "longitude_deg": "-108.6637", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Grand Junction", + "scheduled_service": "no" + }, + { + "id": "341061", + "ident": "US-3140", + "type": "closed", + "name": "McCoy Airfield", + "latitude_deg": "39.907004", + "longitude_deg": "-106.752374", + "elevation_ft": "6727", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "McCoy", + "scheduled_service": "no" + }, + { + "id": "341064", + "ident": "US-3141", + "type": "heliport", + "name": "VCU Health New Kent ED Heliport", + "latitude_deg": "37.50552", + "longitude_deg": "-77.187832", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Quinton", + "scheduled_service": "no", + "gps_code": "99VA", + "local_code": "99VA" + }, + { + "id": "341066", + "ident": "US-3142", + "type": "small_airport", + "name": "Greenhorn Strip", + "latitude_deg": "37.981528", + "longitude_deg": "-104.852504", + "elevation_ft": "6045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Colorado City", + "scheduled_service": "no", + "gps_code": "CO49", + "local_code": "CO49" + }, + { + "id": "341068", + "ident": "US-3143", + "type": "small_airport", + "name": "Davis Airport", + "latitude_deg": "42.499741", + "longitude_deg": "-95.066805", + "elevation_ft": "1309", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Nemaha", + "scheduled_service": "no", + "gps_code": "IA26", + "local_code": "IA26" + }, + { + "id": "341076", + "ident": "US-3144", + "type": "closed", + "name": "Cherry Heights Airport", + "latitude_deg": "45.60148", + "longitude_deg": "-121.25013", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "The Dalles", + "scheduled_service": "no" + }, + { + "id": "341077", + "ident": "US-3145", + "type": "closed", + "name": "John Day Dam Landing Strip", + "latitude_deg": "45.7084", + "longitude_deg": "-120.7303", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Maryhill", + "scheduled_service": "no" + }, + { + "id": "341078", + "ident": "US-3146", + "type": "small_airport", + "name": "Alamo Organic Orchards Airstrip", + "latitude_deg": "46.74329", + "longitude_deg": "-119.78381", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Mattawa", + "scheduled_service": "no" + }, + { + "id": "341079", + "ident": "US-3147", + "type": "closed", + "name": "Vantage Airport", + "latitude_deg": "46.934663", + "longitude_deg": "-119.986786", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Vantage", + "scheduled_service": "no", + "keywords": "WA68" + }, + { + "id": "341080", + "ident": "US-3148", + "type": "heliport", + "name": "Rocky Point Heliport", + "latitude_deg": "31.819454", + "longitude_deg": "-106.501599", + "elevation_ft": "4651", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Paso", + "scheduled_service": "no", + "gps_code": "TE95", + "local_code": "TE95" + }, + { + "id": "341082", + "ident": "US-3149", + "type": "small_airport", + "name": "Crown Creek Ranch Airport", + "latitude_deg": "48.858362", + "longitude_deg": "-117.949027", + "elevation_ft": "1740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Northport", + "scheduled_service": "no", + "gps_code": "57WA", + "local_code": "57WA" + }, + { + "id": "341086", + "ident": "US-3150", + "type": "heliport", + "name": "The Women's Hospital of Texas Heliport", + "latitude_deg": "29.694721", + "longitude_deg": "-95.403289", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "TX76", + "local_code": "TX76" + }, + { + "id": "341087", + "ident": "US-3151", + "type": "heliport", + "name": "GDC Heliport", + "latitude_deg": "37.636539", + "longitude_deg": "-113.343767", + "elevation_ft": "6208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Cedar City", + "scheduled_service": "no", + "gps_code": "UT59", + "local_code": "UT59" + }, + { + "id": "341088", + "ident": "US-3152", + "type": "heliport", + "name": "Peoa Private Heliport", + "latitude_deg": "40.736981", + "longitude_deg": "-111.357175", + "elevation_ft": "6121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Peoa", + "scheduled_service": "no", + "gps_code": "UT60", + "local_code": "UT60" + }, + { + "id": "341089", + "ident": "US-3153", + "type": "small_airport", + "name": "Pisha Farm Airport", + "latitude_deg": "43.777044", + "longitude_deg": "-90.414176", + "elevation_ft": "1411", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Kendall", + "scheduled_service": "no", + "gps_code": "WI80", + "local_code": "WI80" + }, + { + "id": "341093", + "ident": "US-3154", + "type": "closed", + "name": "Asotin County Airport", + "latitude_deg": "46.4248", + "longitude_deg": "-117.0614", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Clarkston", + "scheduled_service": "no" + }, + { + "id": "341095", + "ident": "US-3155", + "type": "heliport", + "name": "Cal Fire Academy Heliport", + "latitude_deg": "38.36698", + "longitude_deg": "-120.94271", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ione", + "scheduled_service": "no" + }, + { + "id": "341096", + "ident": "US-3156", + "type": "heliport", + "name": "Palomar Medical Center Escondido Helipad", + "latitude_deg": "33.122321", + "longitude_deg": "-117.122054", + "elevation_ft": "952", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Escondido", + "scheduled_service": "no", + "gps_code": "6CA7", + "local_code": "6CA7" + }, + { + "id": "341097", + "ident": "US-3157", + "type": "closed", + "name": "San Marcos Valley Airport", + "latitude_deg": "33.1417", + "longitude_deg": "-117.18315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Marcos", + "scheduled_service": "no" + }, + { + "id": "341099", + "ident": "US-3158", + "type": "closed", + "name": "McCormick Airfield", + "latitude_deg": "33.13664", + "longitude_deg": "-117.18667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Marcos", + "scheduled_service": "no" + }, + { + "id": "341100", + "ident": "US-3159", + "type": "closed", + "name": "Carlsbad Airport (1949)", + "latitude_deg": "33.16458", + "longitude_deg": "-117.31925", + "elevation_ft": "289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Carlsbad", + "scheduled_service": "no" + }, + { + "id": "341101", + "ident": "US-3160", + "type": "closed", + "name": "Escondido Engle Airport", + "latitude_deg": "33.12123", + "longitude_deg": "-117.10444", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Escondido", + "scheduled_service": "no" + }, + { + "id": "341102", + "ident": "US-3161", + "type": "heliport", + "name": "Houston Methodist West Hospital Helipad", + "latitude_deg": "29.78635", + "longitude_deg": "-95.69959", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "341104", + "ident": "US-3162", + "type": "heliport", + "name": "Bellville Medical Center Airport", + "latitude_deg": "29.954171", + "longitude_deg": "-96.260735", + "elevation_ft": "282", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bellville", + "scheduled_service": "no" + }, + { + "id": "341105", + "ident": "US-3163", + "type": "small_airport", + "name": "Creamers Field Airpark", + "latitude_deg": "64.88159", + "longitude_deg": "-147.72685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fairbanks", + "scheduled_service": "no" + }, + { + "id": "341106", + "ident": "US-3164", + "type": "heliport", + "name": "Los Angeles Orthopedic Center Helipad", + "latitude_deg": "34.0542", + "longitude_deg": "-118.26585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "341108", + "ident": "US-3165", + "type": "heliport", + "name": "Good Samaritan MedIcal Center South Tower Helipad", + "latitude_deg": "34.053878", + "longitude_deg": "-118.266037", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "341109", + "ident": "US-3166", + "type": "heliport", + "name": "Wilshire Bixel Helipad", + "latitude_deg": "34.05261", + "longitude_deg": "-118.26271", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "341111", + "ident": "US-3167", + "type": "closed", + "name": "Dominguez Field", + "latitude_deg": "33.85262", + "longitude_deg": "-118.24151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Carson", + "scheduled_service": "no" + }, + { + "id": "341112", + "ident": "US-3168", + "type": "closed", + "name": "Vultee Field", + "latitude_deg": "33.92135", + "longitude_deg": "-118.12804", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Downey", + "scheduled_service": "no", + "keywords": "EMSCO Field, Baker Field, Downey Field" + }, + { + "id": "341113", + "ident": "US-3169", + "type": "heliport", + "name": "La Palma Intercommunity Hospital Helipad", + "latitude_deg": "33.84772", + "longitude_deg": "-118.03918", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "La Palma", + "scheduled_service": "no" + }, + { + "id": "341116", + "ident": "US-3170", + "type": "closed", + "name": "Grand Central Air Terminal", + "latitude_deg": "34.16299", + "longitude_deg": "-118.28669", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "341132", + "ident": "US-3171", + "type": "heliport", + "name": "Texas Children's Hospital Helipad", + "latitude_deg": "29.78868", + "longitude_deg": "-95.69149", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "341135", + "ident": "US-3172", + "type": "closed", + "name": "Flying Acres Airfield", + "latitude_deg": "29.94974", + "longitude_deg": "-95.56818", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "341136", + "ident": "US-3173", + "type": "closed", + "name": "Airman's Field", + "latitude_deg": "29.96212", + "longitude_deg": "-95.44065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "341137", + "ident": "US-3174", + "type": "closed", + "name": "Collier Airport", + "latitude_deg": "29.87391", + "longitude_deg": "-95.47994", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "341159", + "ident": "US-3175", + "type": "heliport", + "name": "Houston Methodist Willowbrook Hospital Helipad", + "latitude_deg": "29.96848", + "longitude_deg": "-95.55072", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "341160", + "ident": "US-3176", + "type": "heliport", + "name": "Houston Methodist Willowbrook Hospital Helipad", + "latitude_deg": "29.96848", + "longitude_deg": "-95.55072", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "341161", + "ident": "US-3177", + "type": "heliport", + "name": "Valley Baptist Medical Center Brownsville Helipad", + "latitude_deg": "25.9177", + "longitude_deg": "-97.50918", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brownsville", + "scheduled_service": "no" + }, + { + "id": "341162", + "ident": "US-3178", + "type": "heliport", + "name": "Medical City Dallas Rooftop Heliport", + "latitude_deg": "32.913082", + "longitude_deg": "-96.773579", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no" + }, + { + "id": "341163", + "ident": "US-3179", + "type": "heliport", + "name": "Texas Health Huguley Hospital Fort Worth South Helipad", + "latitude_deg": "32.58645", + "longitude_deg": "-97.31601", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Burleson", + "scheduled_service": "no" + }, + { + "id": "341164", + "ident": "US-3180", + "type": "closed", + "name": "Argos Landing Field", + "latitude_deg": "34.72622", + "longitude_deg": "-116.25647", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Newberry Springs", + "scheduled_service": "no" + }, + { + "id": "341166", + "ident": "US-3181", + "type": "closed", + "name": "Islitas Landing Strip", + "latitude_deg": "27.66548", + "longitude_deg": "-99.65031", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laredo", + "scheduled_service": "no" + }, + { + "id": "341167", + "ident": "US-3182", + "type": "closed", + "name": "Link Ranch Airport", + "latitude_deg": "27.42637", + "longitude_deg": "-99.47155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laredo", + "scheduled_service": "no" + }, + { + "id": "341171", + "ident": "US-3183", + "type": "closed", + "name": "Columbia Aircraft Factory Airfield", + "latitude_deg": "40.6641", + "longitude_deg": "-73.72193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Valley Stream", + "scheduled_service": "no" + }, + { + "id": "341172", + "ident": "US-3184", + "type": "closed", + "name": "Henrichson Ranch Airport", + "latitude_deg": "28.26298", + "longitude_deg": "-99.27024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cotulla", + "scheduled_service": "no" + }, + { + "id": "341173", + "ident": "US-3185", + "type": "closed", + "name": "Sand Hollow Airport", + "latitude_deg": "28.437", + "longitude_deg": "-98.10201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Oakville", + "scheduled_service": "no" + }, + { + "id": "341174", + "ident": "US-3186", + "type": "closed", + "name": "Sky Ranch Airport", + "latitude_deg": "29.63792", + "longitude_deg": "-95.39783", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "341175", + "ident": "US-3187", + "type": "closed", + "name": "Tivoli Gulf Coast Airport", + "latitude_deg": "28.46822", + "longitude_deg": "-96.87334", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tivoli", + "scheduled_service": "no" + }, + { + "id": "341176", + "ident": "US-3188", + "type": "closed", + "name": "Humble Airport", + "latitude_deg": "29.98258", + "longitude_deg": "-95.28998", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Humble", + "scheduled_service": "no" + }, + { + "id": "341177", + "ident": "US-3189", + "type": "closed", + "name": "Brooks Air Force Base", + "latitude_deg": "29.34791", + "longitude_deg": "-98.43189", + "elevation_ft": "597", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brooks_Air_Force_Base", + "keywords": "Brooks Field, Kelly Field No. 5, Gosport Field" + }, + { + "id": "341178", + "ident": "US-3190", + "type": "heliport", + "name": "Mission Trail Baptist Hospital Helipad", + "latitude_deg": "29.34576", + "longitude_deg": "-98.4373", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no" + }, + { + "id": "341179", + "ident": "US-3191", + "type": "closed", + "name": "Sandia Creek Airport", + "latitude_deg": "30.99442", + "longitude_deg": "-103.67338", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Balmorhea", + "scheduled_service": "no" + }, + { + "id": "341186", + "ident": "US-3192", + "type": "closed", + "name": "Kahuku Army Airfield / Kuilima Air Park", + "latitude_deg": "21.70753", + "longitude_deg": "-157.97196", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kahuku", + "scheduled_service": "no" + }, + { + "id": "341190", + "ident": "US-3193", + "type": "heliport", + "name": "Texas Health Harris Methodist Hospital Helipad", + "latitude_deg": "32.73399", + "longitude_deg": "-97.33897", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no" + }, + { + "id": "341191", + "ident": "US-3194", + "type": "heliport", + "name": "Norman Regional HealthPlex Hospital Helipad", + "latitude_deg": "35.25871", + "longitude_deg": "-97.48925", + "elevation_ft": "1189", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Norman", + "scheduled_service": "no", + "local_code": "OL33" + }, + { + "id": "341198", + "ident": "US-3195", + "type": "closed", + "name": "Swaringen Airport", + "latitude_deg": "35.328473", + "longitude_deg": "-80.864516", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Charlotte", + "scheduled_service": "no", + "keywords": "4NC4" + }, + { + "id": "341370", + "ident": "US-3196", + "type": "closed", + "name": "Stanley Field", + "latitude_deg": "21.48401", + "longitude_deg": "-158.01358", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Mililani", + "scheduled_service": "no" + }, + { + "id": "341371", + "ident": "US-3197", + "type": "closed", + "name": "Kailua Sky Ranch", + "latitude_deg": "21.42779", + "longitude_deg": "-157.74784", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kailua", + "scheduled_service": "no" + }, + { + "id": "341372", + "ident": "US-3198", + "type": "closed", + "name": "Waiele Gulch Army Airfield", + "latitude_deg": "21.47129", + "longitude_deg": "-158.04155", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Wahiawa", + "scheduled_service": "no" + }, + { + "id": "341374", + "ident": "US-3199", + "type": "heliport", + "name": "Queen's Medical Center West Oahu Helipad", + "latitude_deg": "21.37319", + "longitude_deg": "-158.02663", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Ewa Beach", + "scheduled_service": "no" + }, + { + "id": "341375", + "ident": "US-3200", + "type": "heliport", + "name": "Spark M Matsunaga VA Medical Center Helipad", + "latitude_deg": "21.3622", + "longitude_deg": "-157.88626", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Honolulu", + "scheduled_service": "no" + }, + { + "id": "341376", + "ident": "US-3201", + "type": "heliport", + "name": "Adventist Health Castle Helipad", + "latitude_deg": "21.37957", + "longitude_deg": "-157.75815", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kailua", + "scheduled_service": "no" + }, + { + "id": "341377", + "ident": "US-3202", + "type": "heliport", + "name": "Kona Community Hospital Helipad", + "latitude_deg": "19.52057", + "longitude_deg": "-155.91694", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kealakekua", + "scheduled_service": "no" + }, + { + "id": "341379", + "ident": "US-3203", + "type": "closed", + "name": "Lightning Ranch Airstrip", + "latitude_deg": "32.43539", + "longitude_deg": "-110.11136", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Willcox", + "scheduled_service": "no" + }, + { + "id": "341380", + "ident": "US-3204", + "type": "closed", + "name": "Beaumont Airport", + "latitude_deg": "33.93364", + "longitude_deg": "-116.98589", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Beaumont", + "scheduled_service": "no" + }, + { + "id": "341389", + "ident": "US-3205", + "type": "closed", + "name": "Orchard Park Airport", + "latitude_deg": "42.79542", + "longitude_deg": "-78.74075", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Orchard Park", + "scheduled_service": "no", + "keywords": "34D, N34" + }, + { + "id": "341390", + "ident": "US-3206", + "type": "closed", + "name": "Mormon Lake Landing Strip", + "latitude_deg": "34.91415", + "longitude_deg": "-111.46626", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mormon Lake", + "scheduled_service": "no" + }, + { + "id": "341392", + "ident": "US-3207", + "type": "closed", + "name": "Bogguss Pasture Airstrip", + "latitude_deg": "34.96887", + "longitude_deg": "-111.45729", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mormon Lake", + "scheduled_service": "no" + }, + { + "id": "341393", + "ident": "US-3208", + "type": "heliport", + "name": "Mormon Lake Helibase", + "latitude_deg": "34.90897", + "longitude_deg": "-111.43852", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mormon Lake", + "scheduled_service": "no" + }, + { + "id": "341394", + "ident": "US-3209", + "type": "heliport", + "name": "Gas Company Tower Helipad", + "latitude_deg": "34.05004", + "longitude_deg": "-118.25324", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "341396", + "ident": "US-3210", + "type": "closed", + "name": "Bell Airport", + "latitude_deg": "34.03251", + "longitude_deg": "-118.15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "East Los Angeles", + "scheduled_service": "no" + }, + { + "id": "341402", + "ident": "US-3211", + "type": "closed", + "name": "Rough Rock Airstrip", + "latitude_deg": "36.40247", + "longitude_deg": "-109.86861", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Rough Rock", + "scheduled_service": "no" + }, + { + "id": "341403", + "ident": "US-3212", + "type": "small_airport", + "name": "Henson Farms Airport", + "latitude_deg": "34.361669", + "longitude_deg": "-101.083342", + "elevation_ft": "2650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Quitaque", + "scheduled_service": "no", + "gps_code": "3TS5", + "local_code": "3TS5" + }, + { + "id": "341404", + "ident": "US-3213", + "type": "closed", + "name": "Bill Pigg Airport", + "latitude_deg": "34.37648", + "longitude_deg": "-101.07949", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Quitaque", + "scheduled_service": "no" + }, + { + "id": "341405", + "ident": "US-3214", + "type": "small_airport", + "name": "Quitaque North Airstrip", + "latitude_deg": "34.39758", + "longitude_deg": "-101.04547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Quitaque", + "scheduled_service": "no" + }, + { + "id": "341411", + "ident": "US-3215", + "type": "closed", + "name": "Silverton Airport", + "latitude_deg": "45.01761", + "longitude_deg": "-122.80461", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Silverton", + "scheduled_service": "no" + }, + { + "id": "341412", + "ident": "US-3216", + "type": "heliport", + "name": "Barnes Jewish Hospital South Helipad", + "latitude_deg": "38.63627", + "longitude_deg": "-90.26571", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no" + }, + { + "id": "341413", + "ident": "US-3217", + "type": "heliport", + "name": "St Louis Childrens Hospital Helipad", + "latitude_deg": "38.63807", + "longitude_deg": "-90.26545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no" + }, + { + "id": "341414", + "ident": "US-3218", + "type": "closed", + "name": "St Louis Childrens Hospital Old Helipad", + "latitude_deg": "38.637937", + "longitude_deg": "-90.264685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no" + }, + { + "id": "341416", + "ident": "US-3219", + "type": "closed", + "name": "Quail Creek Airport", + "latitude_deg": "36.62636", + "longitude_deg": "-121.49164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Salinas", + "scheduled_service": "no" + }, + { + "id": "341417", + "ident": "US-3220", + "type": "closed", + "name": "American Legion Airport / Remco Flying Field", + "latitude_deg": "36.70047", + "longitude_deg": "-121.65798", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Salinas", + "scheduled_service": "no" + }, + { + "id": "341418", + "ident": "US-3221", + "type": "closed", + "name": "Watsonville Airport (1938)", + "latitude_deg": "36.86472", + "longitude_deg": "-121.77548", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Watsonville", + "scheduled_service": "no" + }, + { + "id": "341419", + "ident": "US-3222", + "type": "heliport", + "name": "SSM Health Cardinal Glennon Childrens Hospital Helipad", + "latitude_deg": "38.62066", + "longitude_deg": "-90.23993", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no" + }, + { + "id": "341429", + "ident": "US-3223", + "type": "closed", + "name": "Mexican Water Airport", + "latitude_deg": "36.95551", + "longitude_deg": "-109.64608", + "elevation_ft": "4918", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mexican Water", + "scheduled_service": "no", + "keywords": "Nokaita" + }, + { + "id": "341430", + "ident": "US-3224", + "type": "seaplane_base", + "name": "St Cloud Seaplane Base", + "latitude_deg": "28.270833", + "longitude_deg": "-81.285", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St Cloud", + "scheduled_service": "no", + "local_code": "3FL" + }, + { + "id": "341431", + "ident": "US-3225", + "type": "closed", + "name": "Many Farms Landing Strip", + "latitude_deg": "36.35977", + "longitude_deg": "-109.61771", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Many Farms", + "scheduled_service": "no" + }, + { + "id": "341432", + "ident": "US-3226", + "type": "closed", + "name": "Teec Nos Pos Airport", + "latitude_deg": "36.911833", + "longitude_deg": "-109.065461", + "elevation_ft": "5443", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Teec Nos Pos", + "scheduled_service": "no", + "keywords": "T’iis Názbąs" + }, + { + "id": "341445", + "ident": "US-3227", + "type": "heliport", + "name": "Arch Reactor Heliport", + "latitude_deg": "38.62522", + "longitude_deg": "-90.21327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "St Louis", + "scheduled_service": "no" + }, + { + "id": "341451", + "ident": "US-3228", + "type": "small_airport", + "name": "Counselor Airport", + "latitude_deg": "36.23241", + "longitude_deg": "-107.5044", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Counselor", + "scheduled_service": "no" + }, + { + "id": "341453", + "ident": "US-3229", + "type": "small_airport", + "name": "La Junta Airport", + "latitude_deg": "29.595161", + "longitude_deg": "-104.406761", + "elevation_ft": "2609", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Presidio", + "scheduled_service": "no" + }, + { + "id": "341454", + "ident": "US-3230", + "type": "small_airport", + "name": "Freedomfox Strip", + "latitude_deg": "39.77156", + "longitude_deg": "-119.89541", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Reno", + "scheduled_service": "no", + "home_link": "https://www.youtube.com/trentpalmer1", + "keywords": "NV99, Trent Palmer Airstrip" + }, + { + "id": "341466", + "ident": "US-3231", + "type": "small_airport", + "name": "Krenek Airport", + "latitude_deg": "29.08024", + "longitude_deg": "-96.462855", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ganado", + "scheduled_service": "no" + }, + { + "id": "341472", + "ident": "US-3232", + "type": "closed", + "name": "Bass Harbor Heliport", + "latitude_deg": "44.254444", + "longitude_deg": "-68.349167", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Bass Harbor", + "scheduled_service": "no", + "keywords": "ME36" + }, + { + "id": "341473", + "ident": "US-3233", + "type": "closed", + "name": "Dieters Airport", + "latitude_deg": "40.755791", + "longitude_deg": "-75.531714", + "elevation_ft": "768", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Cherryville", + "scheduled_service": "no", + "keywords": "07PA, 8N5" + }, + { + "id": "341475", + "ident": "US-3234", + "type": "heliport", + "name": "UPMC Bedford Memorial Heliport", + "latitude_deg": "40.025659", + "longitude_deg": "-78.433676", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Everett", + "scheduled_service": "no", + "gps_code": "35PA", + "local_code": "35PA" + }, + { + "id": "341476", + "ident": "US-3235", + "type": "closed", + "name": "UPMC Bedford Hospital Helipad", + "latitude_deg": "40.025366", + "longitude_deg": "-78.432758", + "elevation_ft": "1237", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Everett", + "scheduled_service": "no", + "keywords": "07PA" + }, + { + "id": "341478", + "ident": "US-3236", + "type": "closed", + "name": "Rosewood Landing Strip", + "latitude_deg": "30.9918", + "longitude_deg": "-91.8865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Simmesport", + "scheduled_service": "no" + }, + { + "id": "341479", + "ident": "US-3237", + "type": "closed", + "name": "Boone's Haven Landing Strip", + "latitude_deg": "31.24763", + "longitude_deg": "-91.90019", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Marksville", + "scheduled_service": "no", + "keywords": "Boonshaven, Bonshaven" + }, + { + "id": "341480", + "ident": "US-3238", + "type": "small_airport", + "name": "Louisiana Delta South End Landing Strip", + "latitude_deg": "31.24629", + "longitude_deg": "-91.98206", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Effie", + "scheduled_service": "no", + "keywords": "Marksville" + }, + { + "id": "341481", + "ident": "US-3239", + "type": "closed", + "name": "Ray's Landing Strip", + "latitude_deg": "31.1341", + "longitude_deg": "-92.176", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Marksville", + "scheduled_service": "no" + }, + { + "id": "341482", + "ident": "US-3240", + "type": "closed", + "name": "Myers No. 2 Landing Strip", + "latitude_deg": "31.3685", + "longitude_deg": "-92.5716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Alexandria", + "scheduled_service": "no" + }, + { + "id": "341483", + "ident": "US-3241", + "type": "small_airport", + "name": "Little River Landing Strip", + "latitude_deg": "31.5795", + "longitude_deg": "-92.8976", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cloutierville", + "scheduled_service": "no" + }, + { + "id": "341484", + "ident": "US-3242", + "type": "closed", + "name": "Robinson Landing Strip (I)", + "latitude_deg": "31.6719", + "longitude_deg": "-92.9121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Montgomery", + "scheduled_service": "no" + }, + { + "id": "341485", + "ident": "US-3243", + "type": "small_airport", + "name": "Robinson Landing Strip (II)", + "latitude_deg": "31.687491", + "longitude_deg": "-92.905003", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Montgomery", + "scheduled_service": "no" + }, + { + "id": "341486", + "ident": "US-3244", + "type": "small_airport", + "name": "Keystone Farms Airport", + "latitude_deg": "31.482183", + "longitude_deg": "-92.661376", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Colfax", + "scheduled_service": "no", + "local_code": "LA17" + }, + { + "id": "341487", + "ident": "US-3245", + "type": "closed", + "name": "Lucien Field", + "latitude_deg": "32.38724", + "longitude_deg": "-93.73535", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Shreveport", + "scheduled_service": "no", + "keywords": "F33" + }, + { + "id": "341488", + "ident": "US-3246", + "type": "small_airport", + "name": "Dixie Range Airstrip", + "latitude_deg": "28.08089", + "longitude_deg": "-98.71609", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tilden", + "scheduled_service": "no" + }, + { + "id": "341489", + "ident": "US-3247", + "type": "small_airport", + "name": "Bill Rogers Airport", + "latitude_deg": "33.35731", + "longitude_deg": "-93.71983", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Garland City", + "scheduled_service": "no" + }, + { + "id": "341490", + "ident": "US-3248", + "type": "closed", + "name": "Homan Landing Strip", + "latitude_deg": "33.5651", + "longitude_deg": "-93.8649", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Homan", + "scheduled_service": "no" + }, + { + "id": "341491", + "ident": "US-3249", + "type": "closed", + "name": "Loes Highport Landing Strip", + "latitude_deg": "33.83085", + "longitude_deg": "-96.70311", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pottsboro", + "scheduled_service": "no" + }, + { + "id": "341492", + "ident": "US-3250", + "type": "small_airport", + "name": "Donna Field", + "latitude_deg": "33.8151", + "longitude_deg": "-96.73469", + "elevation_ft": "787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pottsboro", + "scheduled_service": "no", + "local_code": "33TE", + "keywords": "Texoma" + }, + { + "id": "341493", + "ident": "US-3251", + "type": "closed", + "name": "Comet Landing Strip", + "latitude_deg": "33.89875", + "longitude_deg": "-96.95436", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Whitesboro", + "scheduled_service": "no" + }, + { + "id": "341494", + "ident": "US-3252", + "type": "closed", + "name": "Terral Airport", + "latitude_deg": "33.89261", + "longitude_deg": "-97.92727", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Terral", + "scheduled_service": "no" + }, + { + "id": "341495", + "ident": "US-3253", + "type": "small_airport", + "name": "Alkali Lake Landing Area", + "latitude_deg": "38.94085", + "longitude_deg": "-119.35925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Yerington", + "scheduled_service": "no" + }, + { + "id": "341496", + "ident": "US-3254", + "type": "small_airport", + "name": "One Time Airstrip", + "latitude_deg": "38.99715", + "longitude_deg": "-119.4427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Wellington", + "scheduled_service": "no" + }, + { + "id": "341501", + "ident": "US-3255", + "type": "closed", + "name": "Mar-a-Lago Helipad", + "latitude_deg": "26.67687", + "longitude_deg": "-80.03844", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Palm Beach", + "scheduled_service": "no" + }, + { + "id": "341505", + "ident": "US-3256", + "type": "closed", + "name": "Paetzold South Airport", + "latitude_deg": "34.80399", + "longitude_deg": "-102.37477", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hereford", + "scheduled_service": "no" + }, + { + "id": "341506", + "ident": "US-3257", + "type": "small_airport", + "name": "Page Ranch Airport", + "latitude_deg": "35.00937", + "longitude_deg": "-101.84228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Canyon", + "scheduled_service": "no" + }, + { + "id": "341507", + "ident": "US-3258", + "type": "closed", + "name": "Gartrell Field", + "latitude_deg": "35.06486", + "longitude_deg": "-101.96215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Canyon", + "scheduled_service": "no" + }, + { + "id": "341508", + "ident": "US-3259", + "type": "closed", + "name": "Canam Airport", + "latitude_deg": "34.9894", + "longitude_deg": "-101.96929", + "elevation_ft": "3606", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Canyon", + "scheduled_service": "no", + "keywords": "E08" + }, + { + "id": "341509", + "ident": "US-3260", + "type": "closed", + "name": "Happy Landing Strip", + "latitude_deg": "34.7392", + "longitude_deg": "-101.8555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Happy", + "scheduled_service": "no" + }, + { + "id": "341510", + "ident": "US-3261", + "type": "small_airport", + "name": "Pine Lane Landing Strip", + "latitude_deg": "45.173824", + "longitude_deg": "-69.424761", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Abbot", + "scheduled_service": "no" + }, + { + "id": "341511", + "ident": "US-3262", + "type": "heliport", + "name": "SCE Wildomar Heliport", + "latitude_deg": "33.58734", + "longitude_deg": "-117.23252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Wildomar", + "scheduled_service": "no" + }, + { + "id": "341531", + "ident": "US-3263", + "type": "heliport", + "name": "US Coast Guard Sector Galveston Helipad", + "latitude_deg": "29.33276", + "longitude_deg": "-94.76946", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Galveston", + "scheduled_service": "no" + }, + { + "id": "341532", + "ident": "US-3264", + "type": "heliport", + "name": "Stewart Beach Heliport", + "latitude_deg": "29.308", + "longitude_deg": "-94.76909", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Galveston", + "scheduled_service": "no", + "local_code": "89TX", + "home_link": "https://galvestonhelicopters.com/", + "keywords": "Galveston Helicopters" + }, + { + "id": "341543", + "ident": "US-3265", + "type": "small_airport", + "name": "Goose Creek Landing Strip", + "latitude_deg": "28.85727", + "longitude_deg": "-98.53582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jourdanton", + "scheduled_service": "no" + }, + { + "id": "341545", + "ident": "US-3266", + "type": "closed", + "name": "Salt Branch Landing Strip", + "latitude_deg": "28.49554", + "longitude_deg": "-98.54893", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tilden", + "scheduled_service": "no" + }, + { + "id": "341546", + "ident": "US-3267", + "type": "small_airport", + "name": "Quintanilla Ranch Airport", + "latitude_deg": "28.43503", + "longitude_deg": "-98.51429", + "elevation_ft": "344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tilden", + "scheduled_service": "no" + }, + { + "id": "341548", + "ident": "US-3268", + "type": "small_airport", + "name": "Berea-Richmond Airport", + "latitude_deg": "37.64519", + "longitude_deg": "-84.28297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Berea", + "scheduled_service": "no" + }, + { + "id": "341549", + "ident": "US-3269", + "type": "small_airport", + "name": "H & J Strip Airport", + "latitude_deg": "36.258116", + "longitude_deg": "-79.485745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Elon", + "scheduled_service": "no", + "local_code": "0NC1" + }, + { + "id": "341560", + "ident": "US-3270", + "type": "small_airport", + "name": "Dvoracek Field", + "latitude_deg": "45.244612", + "longitude_deg": "-85.238953", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Charlevoix", + "scheduled_service": "no", + "gps_code": "23MI", + "local_code": "23MI" + }, + { + "id": "341598", + "ident": "US-3271", + "type": "heliport", + "name": "HCA Florida Aventura Hospital Heliport", + "latitude_deg": "25.97052", + "longitude_deg": "-80.14527", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Aventura", + "scheduled_service": "no", + "gps_code": "1FD5", + "local_code": "1FD5", + "keywords": "Aventura Hospital and Medical Center Helipad" + }, + { + "id": "341599", + "ident": "US-3272", + "type": "heliport", + "name": "Key West Marriott Beachside Helipad", + "latitude_deg": "24.57071", + "longitude_deg": "-81.75198", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Key West", + "scheduled_service": "no" + }, + { + "id": "341600", + "ident": "US-3273", + "type": "seaplane_base", + "name": "Gulf of Mexico Seaplane Base", + "latitude_deg": "24.58069", + "longitude_deg": "-81.75175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Key West", + "scheduled_service": "no" + }, + { + "id": "341601", + "ident": "US-3274", + "type": "heliport", + "name": "ProMedica Hickman Hospital Heliport", + "latitude_deg": "41.964613", + "longitude_deg": "-84.00823", + "elevation_ft": "802", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Adrian", + "scheduled_service": "no", + "gps_code": "4MI0", + "local_code": "4MI0" + }, + { + "id": "341603", + "ident": "US-3275", + "type": "heliport", + "name": "Crane Lake Volunteer Fire Department Heliport", + "latitude_deg": "48.260174", + "longitude_deg": "-92.47583", + "elevation_ft": "1124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Crane Lake", + "scheduled_service": "no", + "gps_code": "4MN0", + "local_code": "4MN0" + }, + { + "id": "341611", + "ident": "US-3276", + "type": "heliport", + "name": "DKPA Landing", + "latitude_deg": "44.567637", + "longitude_deg": "-93.432632", + "elevation_ft": "987", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Webster", + "scheduled_service": "no", + "gps_code": "4MN8", + "local_code": "4MN8" + }, + { + "id": "341613", + "ident": "US-3277", + "type": "heliport", + "name": "St John Hospital & Medical Center Heliport", + "latitude_deg": "42.420083", + "longitude_deg": "-82.916753", + "elevation_ft": "613", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Detroit", + "scheduled_service": "no", + "gps_code": "55MI", + "local_code": "55MI" + }, + { + "id": "341614", + "ident": "US-3278", + "type": "heliport", + "name": "Scotts Landing", + "latitude_deg": "43.071325", + "longitude_deg": "-84.205208", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Owosso", + "scheduled_service": "no", + "gps_code": "5MI3", + "local_code": "5MI3" + }, + { + "id": "341615", + "ident": "US-3279", + "type": "heliport", + "name": "Delta Golf LZ Heliport", + "latitude_deg": "48.081133", + "longitude_deg": "-123.4523", + "elevation_ft": "877", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Port Angeles", + "scheduled_service": "no", + "gps_code": "85WA", + "local_code": "85WA" + }, + { + "id": "341618", + "ident": "US-3280", + "type": "heliport", + "name": "Lake Kabetogama Area Fire Department Heliport", + "latitude_deg": "48.439197", + "longitude_deg": "-93.050857", + "elevation_ft": "1214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Kabetogama", + "scheduled_service": "no", + "gps_code": "MN79", + "local_code": "MN79" + }, + { + "id": "341625", + "ident": "US-3281", + "type": "small_airport", + "name": "Cider Run Airport", + "latitude_deg": "45.335037", + "longitude_deg": "-122.409505", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Estacada", + "scheduled_service": "no", + "gps_code": "OR76", + "local_code": "OR76" + }, + { + "id": "341645", + "ident": "US-3282", + "type": "small_airport", + "name": "Pair-A-Dice Airport", + "latitude_deg": "44.673056", + "longitude_deg": "-123.004861", + "elevation_ft": "290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "OR82", + "local_code": "OR82" + }, + { + "id": "341647", + "ident": "US-3283", + "type": "small_airport", + "name": "Nelson Airfield", + "latitude_deg": "35.136528", + "longitude_deg": "-89.654722", + "elevation_ft": "333", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Memphis", + "scheduled_service": "no", + "gps_code": "TN99", + "local_code": "TN99" + }, + { + "id": "341716", + "ident": "US-3284", + "type": "heliport", + "name": "Texas Health Resources Arlington Memorial Heliport", + "latitude_deg": "32.748531", + "longitude_deg": "-97.117376", + "elevation_ft": "667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "65TA", + "local_code": "65TA" + }, + { + "id": "341766", + "ident": "US-3285", + "type": "closed", + "name": "Stony Kill Helipad", + "latitude_deg": "41.731386", + "longitude_deg": "-74.297673", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Wawarsing", + "scheduled_service": "no" + }, + { + "id": "341916", + "ident": "US-3286", + "type": "heliport", + "name": "Akron General Hospital Heliport 2", + "latitude_deg": "41.077809", + "longitude_deg": "-81.531582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Akron", + "scheduled_service": "no" + }, + { + "id": "341920", + "ident": "US-3287", + "type": "heliport", + "name": "Brooke Army Medical Center Army Heliport", + "latitude_deg": "29.458027", + "longitude_deg": "-98.413536", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no" + }, + { + "id": "341921", + "ident": "US-3288", + "type": "heliport", + "name": "San Antonio Military Medical Center Heliport", + "latitude_deg": "29.459043", + "longitude_deg": "-98.415686", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no" + }, + { + "id": "341995", + "ident": "US-3289", + "type": "closed", + "name": "Graham Bell Airport / East Mesa Airport", + "latitude_deg": "35.119", + "longitude_deg": "-106.584", + "elevation_ft": "5226", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "no" + }, + { + "id": "341996", + "ident": "US-3290", + "type": "closed", + "name": "Cutter-Carr Airport / Del Norte Airport", + "latitude_deg": "35.118", + "longitude_deg": "-106.618", + "elevation_ft": "5095", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "no", + "home_link": "http://www.airfields-freeman.com/NM/Airfields_NM_Albuquerque.htm#cutter" + }, + { + "id": "341997", + "ident": "US-3291", + "type": "closed", + "name": "El Rancho Airport", + "latitude_deg": "35.16334", + "longitude_deg": "-106.733565", + "elevation_ft": "5367", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "no" + }, + { + "id": "341998", + "ident": "US-3292", + "type": "closed", + "name": "Albuquerque Airport (1928)", + "latitude_deg": "35.0416", + "longitude_deg": "-106.556", + "elevation_ft": "5381", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "no", + "keywords": "Oxnard Field, Mobile Air Depot" + }, + { + "id": "341999", + "ident": "US-3293", + "type": "closed", + "name": "Paradise Acres Airport", + "latitude_deg": "35.01", + "longitude_deg": "-106.71", + "elevation_ft": "4931", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "no" + }, + { + "id": "342000", + "ident": "US-3294", + "type": "closed", + "name": "Sandia Base Airfield", + "latitude_deg": "34.973811", + "longitude_deg": "-106.490874", + "elevation_ft": "5709", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "no" + }, + { + "id": "342001", + "ident": "US-3295", + "type": "small_airport", + "name": "Santa Rosa Peak Airfield", + "latitude_deg": "35.367264", + "longitude_deg": "-107.236485", + "elevation_ft": "6604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Cubero", + "scheduled_service": "no" + }, + { + "id": "342002", + "ident": "US-3296", + "type": "closed", + "name": "Seven Bar Airport / Alameda Airport", + "latitude_deg": "35.2", + "longitude_deg": "-106.66", + "elevation_ft": "5066", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "no", + "keywords": "Q64" + }, + { + "id": "342003", + "ident": "US-3297", + "type": "closed", + "name": "Sky Court Airport / Snell Airport", + "latitude_deg": "35.117", + "longitude_deg": "-106.56", + "elevation_ft": "5361", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "no" + }, + { + "id": "342004", + "ident": "US-3298", + "type": "closed", + "name": "Western Air Express Airport / West Mesa Airport", + "latitude_deg": "35.086737", + "longitude_deg": "-106.718655", + "elevation_ft": "5098", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "no" + }, + { + "id": "342005", + "ident": "US-3299", + "type": "heliport", + "name": "Kirtland Air Force Base Auxiliary Field", + "latitude_deg": "34.953", + "longitude_deg": "-106.5618", + "elevation_ft": "5295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "no" + }, + { + "id": "39578", + "ident": "US-32M", + "type": "closed", + "name": "Norfolk Airport / Heenan-Menfi Memorial Airport", + "latitude_deg": "42.12854", + "longitude_deg": "-71.370277", + "elevation_ft": "137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Norfolk", + "scheduled_service": "no", + "keywords": "32M, MA07, Franklin-Norfolk, Norfolk" + }, + { + "id": "342133", + "ident": "US-3300", + "type": "heliport", + "name": "Baptist Health South Florida Helipad", + "latitude_deg": "25.48061", + "longitude_deg": "-80.43147", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Homestead", + "scheduled_service": "no" + }, + { + "id": "342028", + "ident": "US-3301", + "type": "heliport", + "name": "Getty Center Heliport", + "latitude_deg": "34.0798", + "longitude_deg": "-118.4752", + "elevation_ft": "861", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "342030", + "ident": "US-3302", + "type": "heliport", + "name": "Los Angeles County Fire Station 1 Heliport", + "latitude_deg": "34.0508", + "longitude_deg": "-118.1683", + "elevation_ft": "474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "East Los Angeles", + "scheduled_service": "no" + }, + { + "id": "342031", + "ident": "US-3303", + "type": "heliport", + "name": "Pacific Design Center Green Building Helipad", + "latitude_deg": "34.0833", + "longitude_deg": "-118.3827", + "elevation_ft": "286", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "West Hollywood", + "scheduled_service": "no" + }, + { + "id": "342049", + "ident": "US-3304", + "type": "small_airport", + "name": "Grayson Airport", + "latitude_deg": "37.845116", + "longitude_deg": "-78.54732", + "elevation_ft": "428", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Scottsville", + "scheduled_service": "no", + "gps_code": "65VA", + "local_code": "65VA" + }, + { + "id": "342084", + "ident": "US-3305", + "type": "closed", + "name": "Saint Josephs Hospital Heliport", + "latitude_deg": "35.58", + "longitude_deg": "-82.55", + "elevation_ft": "2169", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Asheville", + "scheduled_service": "no", + "keywords": "96NC" + }, + { + "id": "342111", + "ident": "US-3306", + "type": "heliport", + "name": "Miami Tower Helipad", + "latitude_deg": "25.77232", + "longitude_deg": "-80.19155", + "elevation_ft": "632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miami_Tower" + }, + { + "id": "342112", + "ident": "US-3307", + "type": "heliport", + "name": "One Biscayne Tower Helipad", + "latitude_deg": "25.77408", + "longitude_deg": "-80.18801", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/One_Biscayne_Tower" + }, + { + "id": "342116", + "ident": "US-3308", + "type": "small_airport", + "name": "Flight Bound Airstrip", + "latitude_deg": "60.522", + "longitude_deg": "-150.7867", + "elevation_ft": "216", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no" + }, + { + "id": "342134", + "ident": "US-3309", + "type": "heliport", + "name": "Kendall Regional Medical Center Heliport", + "latitude_deg": "25.7303", + "longitude_deg": "-80.3859", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "70FL", + "local_code": "70FL" + }, + { + "id": "342135", + "ident": "US-3310", + "type": "heliport", + "name": "Cleveland Clinic Tradition Hospital Helipad", + "latitude_deg": "27.26168", + "longitude_deg": "-80.42405", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Port Saint Lucie", + "scheduled_service": "no" + }, + { + "id": "342136", + "ident": "US-3311", + "type": "heliport", + "name": "Apache Lake Campground Heliport", + "latitude_deg": "33.578052", + "longitude_deg": "-111.252557", + "elevation_ft": "1923", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Roosevelt", + "scheduled_service": "no" + }, + { + "id": "342137", + "ident": "US-3312", + "type": "heliport", + "name": "Roosevelt Work Center Heliport", + "latitude_deg": "33.663402", + "longitude_deg": "-111.114466", + "elevation_ft": "2238", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Roosevelt", + "scheduled_service": "no" + }, + { + "id": "342138", + "ident": "US-3313", + "type": "heliport", + "name": "Canyon Lake Heliport", + "latitude_deg": "33.536893", + "longitude_deg": "-111.428685", + "elevation_ft": "1680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Apache Junction", + "scheduled_service": "no" + }, + { + "id": "342139", + "ident": "US-3314", + "type": "heliport", + "name": "Saguaro Lake Helipad", + "latitude_deg": "33.574582", + "longitude_deg": "-111.537412", + "elevation_ft": "1526", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no" + }, + { + "id": "342140", + "ident": "US-3315", + "type": "heliport", + "name": "MCSO Lake Patrol Helipad", + "latitude_deg": "33.545143", + "longitude_deg": "-111.609873", + "elevation_ft": "1427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no" + }, + { + "id": "342141", + "ident": "US-3316", + "type": "heliport", + "name": "Goldfield Work Center Helipad", + "latitude_deg": "33.55425", + "longitude_deg": "-111.617917", + "elevation_ft": "1384", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no" + }, + { + "id": "342142", + "ident": "US-3317", + "type": "heliport", + "name": "MCSO Goldfield Helipad", + "latitude_deg": "33.55197", + "longitude_deg": "-111.60859", + "elevation_ft": "1401", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no" + }, + { + "id": "342143", + "ident": "US-3318", + "type": "heliport", + "name": "Martin Emergency Center at Saint Lucie West Helipad", + "latitude_deg": "27.31916", + "longitude_deg": "-80.38235", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Port Saint Lucie", + "scheduled_service": "no" + }, + { + "id": "342144", + "ident": "US-3319", + "type": "heliport", + "name": "Health First's Palm Bay Hospital Helipad", + "latitude_deg": "28.00073", + "longitude_deg": "-80.6114", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Palm Bay", + "scheduled_service": "no" + }, + { + "id": "342145", + "ident": "US-3320", + "type": "heliport", + "name": "USC Seeley G Mudd Helipad", + "latitude_deg": "34.02152", + "longitude_deg": "-118.28904", + "elevation_ft": "339", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "342146", + "ident": "US-3321", + "type": "heliport", + "name": "Methodist Boerne Medical Center Helipad", + "latitude_deg": "29.77129", + "longitude_deg": "-98.73057", + "elevation_ft": "1427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Boerne", + "scheduled_service": "no" + }, + { + "id": "342148", + "ident": "US-3322", + "type": "heliport", + "name": "Luna Work Center Heliport", + "latitude_deg": "33.8231", + "longitude_deg": "-108.94138", + "elevation_ft": "7047", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Luna", + "scheduled_service": "no" + }, + { + "id": "342149", + "ident": "US-3323", + "type": "closed", + "name": "Cedar Mesa Landing Strip", + "latitude_deg": "34.02207", + "longitude_deg": "-110.2564", + "elevation_ft": "5413", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Cibecue", + "scheduled_service": "no" + }, + { + "id": "342150", + "ident": "US-3324", + "type": "small_airport", + "name": "Forestdale Landing Strip", + "latitude_deg": "34.11515", + "longitude_deg": "-110.13503", + "elevation_ft": "5945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Cibecue", + "scheduled_service": "no" + }, + { + "id": "342151", + "ident": "US-3325", + "type": "heliport", + "name": "Beaverhead Ranger Station Lower Heliport", + "latitude_deg": "33.422986", + "longitude_deg": "-108.111235", + "elevation_ft": "6749", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Magdalena", + "scheduled_service": "no" + }, + { + "id": "342152", + "ident": "US-3326", + "type": "heliport", + "name": "Beaverhead Ranger Station Upper Heliport", + "latitude_deg": "33.421205", + "longitude_deg": "-108.114621", + "elevation_ft": "6893", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Magdalena", + "scheduled_service": "no" + }, + { + "id": "342154", + "ident": "US-3327", + "type": "heliport", + "name": "Negrito Fire Base Heliport", + "latitude_deg": "33.51798", + "longitude_deg": "-108.52524", + "elevation_ft": "8005", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Reserve", + "scheduled_service": "no" + }, + { + "id": "342155", + "ident": "US-3328", + "type": "heliport", + "name": "Pleasant Valley Ranger Station Heliport", + "latitude_deg": "34.097049", + "longitude_deg": "-110.94058", + "elevation_ft": "5082", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Young", + "scheduled_service": "no" + }, + { + "id": "342156", + "ident": "US-3329", + "type": "closed", + "name": "Waldrip Airstrip", + "latitude_deg": "34.152317", + "longitude_deg": "-110.939928", + "elevation_ft": "5607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Young", + "scheduled_service": "no" + }, + { + "id": "342157", + "ident": "US-3330", + "type": "heliport", + "name": "Cave Creek Ranger Station Helipad", + "latitude_deg": "33.8514", + "longitude_deg": "-111.8314", + "elevation_ft": "3201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Scottsdale", + "scheduled_service": "no" + }, + { + "id": "342158", + "ident": "US-3331", + "type": "heliport", + "name": "Payson Ranger Station Helipad", + "latitude_deg": "34.2405", + "longitude_deg": "-111.3016", + "elevation_ft": "5087", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Payson", + "scheduled_service": "no" + }, + { + "id": "342203", + "ident": "US-3332", + "type": "closed", + "name": "Greenwood Ridge Airstrip", + "latitude_deg": "39.150736", + "longitude_deg": "-123.680182", + "elevation_ft": "1191", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Elk", + "scheduled_service": "no" + }, + { + "id": "342204", + "ident": "US-3333", + "type": "heliport", + "name": "Chicago Police Marine Heliport", + "latitude_deg": "41.88739", + "longitude_deg": "-87.60973", + "elevation_ft": "584", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "no", + "local_code": "10LL" + }, + { + "id": "342208", + "ident": "US-3334", + "type": "heliport", + "name": "Desert Willow Helipad", + "latitude_deg": "33.31848", + "longitude_deg": "-112.0495", + "elevation_ft": "1818", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "342209", + "ident": "US-3335", + "type": "closed", + "name": "Harper Dry Lake Airfield", + "latitude_deg": "35.0128", + "longitude_deg": "-117.28956", + "elevation_ft": "2029", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lockhart", + "scheduled_service": "no" + }, + { + "id": "342210", + "ident": "US-3336", + "type": "closed", + "name": "Boron Air Force Plant 72 Airfield", + "latitude_deg": "35.0523", + "longitude_deg": "-117.53939", + "elevation_ft": "2583", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Boron", + "scheduled_service": "no" + }, + { + "id": "342211", + "ident": "US-3337", + "type": "closed", + "name": "Myer Field", + "latitude_deg": "35.04", + "longitude_deg": "-118.162", + "elevation_ft": "2704", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mojave", + "scheduled_service": "no" + }, + { + "id": "342286", + "ident": "US-3338", + "type": "seaplane_base", + "name": "Avalon Port Seaplane Base", + "latitude_deg": "33.34526", + "longitude_deg": "-118.324329", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Avalon", + "scheduled_service": "no" + }, + { + "id": "342338", + "ident": "US-3339", + "type": "closed", + "name": "South Pacifier Emergency Landing Field", + "latitude_deg": "53.326389", + "longitude_deg": "-168.056389", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fort Glenn", + "scheduled_service": "no" + }, + { + "id": "342339", + "ident": "US-3340", + "type": "small_airport", + "name": "Coffee Point Airstrip", + "latitude_deg": "58.21393", + "longitude_deg": "-157.436654", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Coffee Point", + "scheduled_service": "no", + "keywords": "CFA" + }, + { + "id": "342340", + "ident": "US-3341", + "type": "closed", + "name": "Former Pilot Point Airport", + "latitude_deg": "57.5631", + "longitude_deg": "-157.5584", + "elevation_ft": "88", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Pilot Point", + "scheduled_service": "no", + "keywords": "PAPN" + }, + { + "id": "342341", + "ident": "US-3342", + "type": "small_airport", + "name": "Blue Mountain Lodge Airstrip", + "latitude_deg": "57.85424", + "longitude_deg": "-157.08532", + "elevation_ft": "171", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Jensens", + "scheduled_service": "no" + }, + { + "id": "342342", + "ident": "US-3343", + "type": "seaplane_base", + "name": "No See Um Lodge Seaplane Base", + "latitude_deg": "59.2101", + "longitude_deg": "-156.4892", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "King Salmon", + "scheduled_service": "no" + }, + { + "id": "342350", + "ident": "US-3344", + "type": "heliport", + "name": "Jackson County Hospital Helipad", + "latitude_deg": "28.96824", + "longitude_deg": "-96.63577", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Edna", + "scheduled_service": "no" + }, + { + "id": "342352", + "ident": "US-3345", + "type": "heliport", + "name": "HCA Houston Healthcare Kingwood Heliport", + "latitude_deg": "30.05143", + "longitude_deg": "-95.25423", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kingwood", + "scheduled_service": "no", + "gps_code": "TT59", + "local_code": "TT59" + }, + { + "id": "342353", + "ident": "US-3346", + "type": "heliport", + "name": "El Campo Memorial Hospital Helipad", + "latitude_deg": "29.21887", + "longitude_deg": "-96.29155", + "elevation_ft": "114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Campo", + "scheduled_service": "no" + }, + { + "id": "342357", + "ident": "US-3347", + "type": "heliport", + "name": "Mercy Hospital Heliport", + "latitude_deg": "25.74001", + "longitude_deg": "-80.21234", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "local_code": "FL25" + }, + { + "id": "342358", + "ident": "US-3348", + "type": "small_airport", + "name": "Randy Briggs Memorial Field", + "latitude_deg": "57.51641", + "longitude_deg": "-157.385951", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ugashik", + "scheduled_service": "no", + "gps_code": "AK96", + "local_code": "AK96" + }, + { + "id": "342359", + "ident": "US-3349", + "type": "closed", + "name": "Callies Airport", + "latitude_deg": "34.06016", + "longitude_deg": "-118.14049", + "elevation_ft": "419", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "El Monte", + "scheduled_service": "no", + "keywords": "Callies Flyers Airport" + }, + { + "id": "342361", + "ident": "US-3350", + "type": "heliport", + "name": "St Davids Georgetown Hospital Helipad", + "latitude_deg": "30.62525", + "longitude_deg": "-97.68959", + "elevation_ft": "764", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Georgetown", + "scheduled_service": "no" + }, + { + "id": "342362", + "ident": "US-3351", + "type": "heliport", + "name": "Canyon Vista Medical Center Helipad", + "latitude_deg": "31.55205", + "longitude_deg": "-110.22959", + "elevation_ft": "4386", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sierra Vista", + "scheduled_service": "no" + }, + { + "id": "342363", + "ident": "US-3352", + "type": "heliport", + "name": "Biltmore Tower Helipad", + "latitude_deg": "34.04986", + "longitude_deg": "-118.25385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "342364", + "ident": "US-3353", + "type": "heliport", + "name": "Baylor Scott & White Marble Falls Medical Center Helipad", + "latitude_deg": "30.51368", + "longitude_deg": "-98.30408", + "elevation_ft": "1082", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marble Falls", + "scheduled_service": "no" + }, + { + "id": "342365", + "ident": "US-3354", + "type": "heliport", + "name": "SunAmerica Center Helipad", + "latitude_deg": "34.05866", + "longitude_deg": "-118.41667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "342366", + "ident": "US-3355", + "type": "heliport", + "name": "1901 Avenue of the Stars Helipad", + "latitude_deg": "34.05949", + "longitude_deg": "-118.41766", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "342367", + "ident": "US-3356", + "type": "heliport", + "name": "Watt Plaza North Tower Helipad", + "latitude_deg": "34.06092", + "longitude_deg": "-118.41492", + "elevation_ft": "633", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "342368", + "ident": "US-3357", + "type": "heliport", + "name": "Watt Plaza South Tower Helipad", + "latitude_deg": "34.0603", + "longitude_deg": "-118.414395", + "elevation_ft": "633", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "342369", + "ident": "US-3358", + "type": "heliport", + "name": "Northrop Grumman Plaza I Helipad", + "latitude_deg": "34.06279", + "longitude_deg": "-118.41503", + "elevation_ft": "477", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "342370", + "ident": "US-3359", + "type": "heliport", + "name": "Northrop Grumman Plaza II Helipad", + "latitude_deg": "34.062196", + "longitude_deg": "-118.414682", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "342371", + "ident": "US-3360", + "type": "heliport", + "name": "Lake Dora Private Heliport", + "latitude_deg": "28.80106", + "longitude_deg": "-81.72211", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tavares", + "scheduled_service": "no" + }, + { + "id": "342372", + "ident": "US-3361", + "type": "heliport", + "name": "Saint David Fire Heliport", + "latitude_deg": "31.901151", + "longitude_deg": "-110.211033", + "elevation_ft": "3707", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Saint David", + "scheduled_service": "no" + }, + { + "id": "342373", + "ident": "US-3362", + "type": "heliport", + "name": "San Bernardino County Fire Station 322 Helipad", + "latitude_deg": "34.55838", + "longitude_deg": "-117.43871", + "elevation_ft": "2943", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Adelanto", + "scheduled_service": "no" + }, + { + "id": "342375", + "ident": "US-3363", + "type": "closed", + "name": "Devil's Garden Airport", + "latitude_deg": "41.52174", + "longitude_deg": "-120.66515", + "elevation_ft": "4993", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Alturas", + "scheduled_service": "no" + }, + { + "id": "342378", + "ident": "US-3364", + "type": "small_airport", + "name": "Goldthwaite Municipal Airport", + "latitude_deg": "31.429283", + "longitude_deg": "-98.608337", + "elevation_ft": "1457", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Goldthwaite", + "scheduled_service": "no", + "local_code": "T37", + "home_link": "https://www.airnav.com/airport/T37", + "wikipedia_link": "https://en.wikipedia.org/wiki/Goldthwaite_Municipal_Airport" + }, + { + "id": "342381", + "ident": "US-3365", + "type": "heliport", + "name": "Pecos County Memorial Hospital Helipad", + "latitude_deg": "30.90601", + "longitude_deg": "-102.88109", + "elevation_ft": "2956", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no" + }, + { + "id": "342382", + "ident": "US-3366", + "type": "heliport", + "name": "DoubleTree Hotel Anaheim Helipad", + "latitude_deg": "33.78838", + "longitude_deg": "-117.89156", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Orange", + "scheduled_service": "no" + }, + { + "id": "342383", + "ident": "US-3367", + "type": "closed", + "name": "Zitto Airport", + "latitude_deg": "34.1849", + "longitude_deg": "-118.3816", + "elevation_ft": "682", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "North Hollywood", + "scheduled_service": "no" + }, + { + "id": "342384", + "ident": "US-3368", + "type": "closed", + "name": "Adams Airport", + "latitude_deg": "34.19864", + "longitude_deg": "-118.37226", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sun Valley", + "scheduled_service": "no", + "keywords": "Adams Port, Bob Adams" + }, + { + "id": "342385", + "ident": "US-3369", + "type": "closed", + "name": "Wilson Airport", + "latitude_deg": "34.20023", + "longitude_deg": "-118.3662", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Burbank", + "scheduled_service": "no", + "keywords": "North Hollywood" + }, + { + "id": "342386", + "ident": "US-3370", + "type": "closed", + "name": "Indian Dunes Airport", + "latitude_deg": "34.424", + "longitude_deg": "-118.638", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Castaic", + "scheduled_service": "no", + "keywords": "4CA4" + }, + { + "id": "342397", + "ident": "US-3371", + "type": "closed", + "name": "Azevedo Landing Strip", + "latitude_deg": "37.04828", + "longitude_deg": "-120.56577", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Rita Park", + "scheduled_service": "no" + }, + { + "id": "342398", + "ident": "US-3372", + "type": "closed", + "name": "Eade Landing Strip", + "latitude_deg": "36.07927", + "longitude_deg": "-120.93144", + "elevation_ft": "489", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Ardo", + "scheduled_service": "no" + }, + { + "id": "342399", + "ident": "US-3373", + "type": "closed", + "name": "San Ardo South Landing Strip", + "latitude_deg": "36.00366", + "longitude_deg": "-120.90472", + "elevation_ft": "419", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Ardo", + "scheduled_service": "no" + }, + { + "id": "342409", + "ident": "US-3374", + "type": "closed", + "name": "World Drive Emergency Landing Strip", + "latitude_deg": "28.35731", + "longitude_deg": "-81.56408", + "elevation_ft": "97", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Buena Vista", + "scheduled_service": "no" + }, + { + "id": "342415", + "ident": "US-3375", + "type": "closed", + "name": "Evanston Municipal Airport", + "latitude_deg": "41.343728", + "longitude_deg": "-111.002509", + "elevation_ft": "6598", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Evanston", + "scheduled_service": "no", + "keywords": "EVW, KEVW, Evanston Flying Club Airfield" + }, + { + "id": "342416", + "ident": "US-3376", + "type": "closed", + "name": "Casper Central Airport", + "latitude_deg": "42.86458", + "longitude_deg": "-106.27452", + "elevation_ft": "5110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Evansville", + "scheduled_service": "no" + }, + { + "id": "342417", + "ident": "US-3377", + "type": "closed", + "name": "San Diego Airpark", + "latitude_deg": "32.80139", + "longitude_deg": "-117.19691", + "elevation_ft": "304", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "342418", + "ident": "US-3378", + "type": "heliport", + "name": "4250 Executive Square Helipad", + "latitude_deg": "32.87441", + "longitude_deg": "-117.21504", + "elevation_ft": "474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "La Jolla, San Diego", + "scheduled_service": "no" + }, + { + "id": "342419", + "ident": "US-3379", + "type": "heliport", + "name": "Aventine Helipad", + "latitude_deg": "32.87078", + "longitude_deg": "-117.22717", + "elevation_ft": "456", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "342420", + "ident": "US-3380", + "type": "heliport", + "name": "La Jolla Executive Tower Helipad", + "latitude_deg": "32.8738", + "longitude_deg": "-117.2157", + "elevation_ft": "544", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "La Jolla, San Diego", + "scheduled_service": "no" + }, + { + "id": "342421", + "ident": "US-3381", + "type": "heliport", + "name": "4275 Executive Square Helipad", + "latitude_deg": "32.8736", + "longitude_deg": "-117.215", + "elevation_ft": "498", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "La Jolla, San Diego", + "scheduled_service": "no" + }, + { + "id": "342422", + "ident": "US-3382", + "type": "heliport", + "name": "San Diego Marriott La Jolla Helipad", + "latitude_deg": "32.8732", + "longitude_deg": "-117.2159", + "elevation_ft": "543", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "La Jolla, San Diego", + "scheduled_service": "no" + }, + { + "id": "342423", + "ident": "US-3383", + "type": "heliport", + "name": "La Jolla Center I Helipad", + "latitude_deg": "32.874618", + "longitude_deg": "-117.206837", + "elevation_ft": "504", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "342424", + "ident": "US-3384", + "type": "heliport", + "name": "La Jolla Center II Helipad", + "latitude_deg": "32.8753", + "longitude_deg": "-117.2069", + "elevation_ft": "504", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "342428", + "ident": "US-3385", + "type": "closed", + "name": "Biosphere Two Landing Field", + "latitude_deg": "32.58957", + "longitude_deg": "-110.85411", + "elevation_ft": "3898", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Oracle", + "scheduled_service": "no", + "keywords": "1AZ9, Little Hill Mines" + }, + { + "id": "342440", + "ident": "US-3386", + "type": "heliport", + "name": "F P & L Turkey Point Helistop", + "latitude_deg": "25.430243", + "longitude_deg": "-80.339053", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Florida City", + "scheduled_service": "no", + "gps_code": "14FD", + "local_code": "14FD" + }, + { + "id": "342449", + "ident": "US-3387", + "type": "heliport", + "name": "Geisinger St Luke's Hospital Heliport", + "latitude_deg": "40.641917", + "longitude_deg": "-76.091369", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Orwigsburg", + "scheduled_service": "no", + "gps_code": "76PA", + "local_code": "76PA" + }, + { + "id": "342451", + "ident": "US-3388", + "type": "heliport", + "name": "Files Heliport", + "latitude_deg": "37.721306", + "longitude_deg": "-92.6768", + "elevation_ft": "1227", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "7MO6", + "local_code": "7MO6" + }, + { + "id": "342455", + "ident": "US-3389", + "type": "small_airport", + "name": "Mggenas Airport", + "latitude_deg": "41.476882", + "longitude_deg": "-92.37957", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Gibson", + "scheduled_service": "no", + "gps_code": "IA12", + "local_code": "IA12" + }, + { + "id": "342457", + "ident": "US-3390", + "type": "heliport", + "name": "Merrill Pioneer Community Hospital Heliport", + "latitude_deg": "43.42178", + "longitude_deg": "-96.17915", + "elevation_ft": "1397", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Rock Rapids", + "scheduled_service": "no", + "gps_code": "IA39", + "local_code": "IA39" + }, + { + "id": "342459", + "ident": "US-3391", + "type": "small_airport", + "name": "Weston Ranch Ultralight Flightpark", + "latitude_deg": "44.37166", + "longitude_deg": "-121.093056", + "elevation_ft": "3000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Prineville", + "scheduled_service": "no", + "gps_code": "OR56", + "local_code": "OR56" + }, + { + "id": "342471", + "ident": "US-3392", + "type": "closed", + "name": "Merrill-Ronne Airport / Matamoras Municipal Airport", + "latitude_deg": "41.362874", + "longitude_deg": "-74.697118", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Matamoras", + "scheduled_service": "no" + }, + { + "id": "342472", + "ident": "US-3393", + "type": "heliport", + "name": "Matamoras Heliport", + "latitude_deg": "41.36314", + "longitude_deg": "-74.69862", + "elevation_ft": "434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Matamoras", + "scheduled_service": "no" + }, + { + "id": "342473", + "ident": "US-3394", + "type": "small_airport", + "name": "Hammer Airfield", + "latitude_deg": "30.317636", + "longitude_deg": "-95.857988", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Plantersville", + "scheduled_service": "no", + "gps_code": "TS75", + "local_code": "TS75" + }, + { + "id": "342481", + "ident": "US-3395", + "type": "small_airport", + "name": "Boneyard Airstrip", + "latitude_deg": "37.66337", + "longitude_deg": "-122.02126", + "elevation_ft": "727", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hayward", + "scheduled_service": "no", + "keywords": "C01A" + }, + { + "id": "342482", + "ident": "US-3396", + "type": "small_airport", + "name": "Pistol Creek Ranch Landing Strip", + "latitude_deg": "44.73493", + "longitude_deg": "-115.14488", + "elevation_ft": "4774", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cascade", + "scheduled_service": "no" + }, + { + "id": "342483", + "ident": "US-3397", + "type": "closed", + "name": "Lake Mountain Landing Strip", + "latitude_deg": "40.02128", + "longitude_deg": "-123.40367", + "elevation_ft": "3392", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Zenia", + "scheduled_service": "no" + }, + { + "id": "342484", + "ident": "US-3398", + "type": "small_airport", + "name": "Vines Landing Strip", + "latitude_deg": "45.13232", + "longitude_deg": "-114.99935", + "elevation_ft": "4140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cascade", + "scheduled_service": "no", + "keywords": "I98D" + }, + { + "id": "342485", + "ident": "US-3399", + "type": "small_airport", + "name": "Mile Hi Landing Strip", + "latitude_deg": "45.14925", + "longitude_deg": "-115.00018", + "elevation_ft": "5860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cascade", + "scheduled_service": "no", + "keywords": "IDA1" + }, + { + "id": "342486", + "ident": "US-3400", + "type": "small_airport", + "name": "Simonds Landing Strip", + "latitude_deg": "45.0843", + "longitude_deg": "-115.1256", + "elevation_ft": "5243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cascade", + "scheduled_service": "no", + "keywords": "NA9" + }, + { + "id": "342487", + "ident": "US-3401", + "type": "small_airport", + "name": "Dovel Landing Strip", + "latitude_deg": "45.068", + "longitude_deg": "-115.1181", + "elevation_ft": "5302", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cascade", + "scheduled_service": "no" + }, + { + "id": "342488", + "ident": "US-3402", + "type": "small_airport", + "name": "Cedar Mountain Airstrip", + "latitude_deg": "39.18855", + "longitude_deg": "-110.60305", + "elevation_ft": "7536", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Green River", + "scheduled_service": "no", + "keywords": "UT1" + }, + { + "id": "342489", + "ident": "US-3403", + "type": "small_airport", + "name": "Mexican Mountain Airstrip", + "latitude_deg": "39.01928", + "longitude_deg": "-110.45136", + "elevation_ft": "4469", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Green River", + "scheduled_service": "no", + "keywords": "UT2" + }, + { + "id": "342491", + "ident": "US-3404", + "type": "small_airport", + "name": "Ragged Island Airstrip", + "latitude_deg": "43.83524", + "longitude_deg": "-68.88627", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Matinicus", + "scheduled_service": "no" + }, + { + "id": "342492", + "ident": "US-3405", + "type": "small_airport", + "name": "Searight Airport", + "latitude_deg": "48.81497", + "longitude_deg": "-114.36194", + "elevation_ft": "3898", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Polebridge", + "scheduled_service": "no" + }, + { + "id": "342493", + "ident": "US-3406", + "type": "small_airport", + "name": "Moose City Airport", + "latitude_deg": "48.99637", + "longitude_deg": "-114.47399", + "elevation_ft": "3980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Polebridge", + "scheduled_service": "no", + "local_code": "86MT" + }, + { + "id": "342494", + "ident": "US-3407", + "type": "small_airport", + "name": "Trailcreek Airport", + "latitude_deg": "45.50194", + "longitude_deg": "-110.70615", + "elevation_ft": "5240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Livingston", + "scheduled_service": "no", + "local_code": "MT98" + }, + { + "id": "342495", + "ident": "US-3408", + "type": "small_airport", + "name": "Strawberry Ridge Airstrip", + "latitude_deg": "35.85321", + "longitude_deg": "-82.11058", + "elevation_ft": "3706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Little Switzerland", + "scheduled_service": "no", + "keywords": "STBRD" + }, + { + "id": "342496", + "ident": "US-3409", + "type": "small_airport", + "name": "STOL-It Farm Airport", + "latitude_deg": "34.55189", + "longitude_deg": "-83.04187", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Fair Play", + "scheduled_service": "no", + "local_code": "1SC3", + "keywords": "1SC1" + }, + { + "id": "342497", + "ident": "US-3410", + "type": "small_airport", + "name": "Burnt Ridge Nursery Airstrip", + "latitude_deg": "46.58046", + "longitude_deg": "-122.62112", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Onalaska", + "scheduled_service": "no", + "keywords": "WN99" + }, + { + "id": "342498", + "ident": "US-3411", + "type": "small_airport", + "name": "Dewey Moore Airstrip", + "latitude_deg": "45.14977", + "longitude_deg": "-115.07732", + "elevation_ft": "4494", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cascade", + "scheduled_service": "no", + "keywords": "I99D" + }, + { + "id": "342499", + "ident": "US-3412", + "type": "small_airport", + "name": "James Ranch Airstrip", + "latitude_deg": "45.40172", + "longitude_deg": "-115.62048", + "elevation_ft": "2106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Dixie", + "scheduled_service": "no" + }, + { + "id": "342500", + "ident": "US-3413", + "type": "small_airport", + "name": "Gros Ventre Ballew Airstrip", + "latitude_deg": "43.63425", + "longitude_deg": "-110.4972", + "elevation_ft": "6919", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Jackson", + "scheduled_service": "no" + }, + { + "id": "342501", + "ident": "US-3414", + "type": "small_airport", + "name": "Gros Ventre Horn Airstrip", + "latitude_deg": "43.48376", + "longitude_deg": "-110.20942", + "elevation_ft": "7602", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Jackson", + "scheduled_service": "no" + }, + { + "id": "342510", + "ident": "US-3415", + "type": "small_airport", + "name": "South Shore Airport", + "latitude_deg": "45.09563", + "longitude_deg": "-96.91875", + "elevation_ft": "1903", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "South Shore", + "scheduled_service": "no" + }, + { + "id": "342511", + "ident": "US-3416", + "type": "heliport", + "name": "HCA Houston Healthcare Pearland Heliport", + "latitude_deg": "29.578395", + "longitude_deg": "-95.391427", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pearland", + "scheduled_service": "no", + "gps_code": "45TX", + "local_code": "45TX" + }, + { + "id": "342527", + "ident": "US-3417", + "type": "closed", + "name": "Wilson Ranch Airport", + "latitude_deg": "30.8792", + "longitude_deg": "-102.0951", + "elevation_ft": "2677", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Iraan", + "scheduled_service": "no" + }, + { + "id": "342536", + "ident": "US-3418", + "type": "closed", + "name": "Goliad North Landing Strip", + "latitude_deg": "28.73683", + "longitude_deg": "-97.40737", + "elevation_ft": "252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Goliad", + "scheduled_service": "no" + }, + { + "id": "342537", + "ident": "US-3419", + "type": "closed", + "name": "Harlingen Municipal Airport / Harvey Richards Field", + "latitude_deg": "26.203", + "longitude_deg": "-97.75323", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Harlingen", + "scheduled_service": "no" + }, + { + "id": "342539", + "ident": "US-3420", + "type": "closed", + "name": "San Benito Municipal Airport", + "latitude_deg": "26.13501", + "longitude_deg": "-97.612168", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Benito", + "scheduled_service": "no", + "keywords": "T66" + }, + { + "id": "342542", + "ident": "US-3421", + "type": "closed", + "name": "Edinburg Municipal Airport", + "latitude_deg": "26.30312", + "longitude_deg": "-98.20743", + "elevation_ft": "97", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Edinburg", + "scheduled_service": "no" + }, + { + "id": "342543", + "ident": "US-3422", + "type": "closed", + "name": "Humble-Kelsey Airfield", + "latitude_deg": "26.79439", + "longitude_deg": "-98.41682", + "elevation_ft": "241", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Encino", + "scheduled_service": "no" + }, + { + "id": "342544", + "ident": "US-3423", + "type": "closed", + "name": "Mauldin Airport", + "latitude_deg": "25.96744", + "longitude_deg": "-97.51692", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brownsville", + "scheduled_service": "no" + }, + { + "id": "342545", + "ident": "US-3424", + "type": "closed", + "name": "Arrowhead Ranch Airfield", + "latitude_deg": "26.551218", + "longitude_deg": "-98.440733", + "elevation_ft": "344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mission", + "scheduled_service": "no", + "keywords": "Mission Field, Moore Auxiliary Army Airfield Number 2" + }, + { + "id": "342546", + "ident": "US-3425", + "type": "closed", + "name": "Lytton Ranch Airport", + "latitude_deg": "27.04643", + "longitude_deg": "-98.77237", + "elevation_ft": "637", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hebbronville", + "scheduled_service": "no" + }, + { + "id": "342547", + "ident": "US-3426", + "type": "small_airport", + "name": "Borregos Ranch Airport", + "latitude_deg": "26.85087", + "longitude_deg": "-98.67016", + "elevation_ft": "522", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hebbronville", + "scheduled_service": "no" + }, + { + "id": "342548", + "ident": "US-3427", + "type": "small_airport", + "name": "Ranchos Las Islas Airport", + "latitude_deg": "26.71523", + "longitude_deg": "-98.64392", + "elevation_ft": "489", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rio Grande City", + "scheduled_service": "no" + }, + { + "id": "342549", + "ident": "US-3428", + "type": "closed", + "name": "Rio Grande Field", + "latitude_deg": "26.34714", + "longitude_deg": "-98.56566", + "elevation_ft": "296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Santa Elena", + "scheduled_service": "no", + "keywords": "Moore Auxiliary Airfield Number 3" + }, + { + "id": "342556", + "ident": "US-3429", + "type": "closed", + "name": "Bucker Field", + "latitude_deg": "32.6787", + "longitude_deg": "-97.5894", + "elevation_ft": "863", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Aledo", + "scheduled_service": "no" + }, + { + "id": "342557", + "ident": "US-3430", + "type": "closed", + "name": "Triple S Airport", + "latitude_deg": "32.67516", + "longitude_deg": "-97.58173", + "elevation_ft": "863", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Aledo", + "scheduled_service": "no" + }, + { + "id": "342561", + "ident": "US-3431", + "type": "closed", + "name": "North Ilion Airport", + "latitude_deg": "43.01847", + "longitude_deg": "-75.02229", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Herkimer", + "scheduled_service": "no" + }, + { + "id": "342562", + "ident": "US-3432", + "type": "closed", + "name": "Grant Park", + "latitude_deg": "41.87122", + "longitude_deg": "-87.61869", + "elevation_ft": "587", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "no" + }, + { + "id": "342563", + "ident": "US-3433", + "type": "heliport", + "name": "11645 Wilshire Boulevard Garage Helipad", + "latitude_deg": "34.05045", + "longitude_deg": "-118.46051", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "342578", + "ident": "US-3434", + "type": "heliport", + "name": "Seattle Police Harbor Patrol Heliport", + "latitude_deg": "47.64526", + "longitude_deg": "-122.33724", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Seattle", + "scheduled_service": "no" + }, + { + "id": "342579", + "ident": "US-3435", + "type": "heliport", + "name": "Ware Mountain Heliport", + "latitude_deg": "48.379878", + "longitude_deg": "-122.289972", + "elevation_ft": "781", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Mount Vernon", + "scheduled_service": "no" + }, + { + "id": "342580", + "ident": "US-3436", + "type": "heliport", + "name": "Ascension Seton Southwest Helipad", + "latitude_deg": "30.22667", + "longitude_deg": "-97.89285", + "elevation_ft": "993", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no" + }, + { + "id": "342581", + "ident": "US-3437", + "type": "heliport", + "name": "Christus Santa Rosa Hospital San Marcos", + "latitude_deg": "29.85277", + "longitude_deg": "-97.94675", + "elevation_ft": "676", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Marcos", + "scheduled_service": "no", + "keywords": "Central Texas Medical Center Heliport" + }, + { + "id": "342582", + "ident": "US-3438", + "type": "heliport", + "name": "Heart of Texas Memorial Hospital Helipad", + "latitude_deg": "31.11663", + "longitude_deg": "-99.34677", + "elevation_ft": "1757", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brady", + "scheduled_service": "no" + }, + { + "id": "342583", + "ident": "US-3439", + "type": "heliport", + "name": "Kingston Work Center Helipad", + "latitude_deg": "32.91789", + "longitude_deg": "-107.68543", + "elevation_ft": "6089", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Hillsboro", + "scheduled_service": "no" + }, + { + "id": "342584", + "ident": "US-3440", + "type": "heliport", + "name": "AdventHealth Rollins Brook Helipad", + "latitude_deg": "31.07298", + "longitude_deg": "-98.18688", + "elevation_ft": "1040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lampasas", + "scheduled_service": "no" + }, + { + "id": "342585", + "ident": "US-3441", + "type": "heliport", + "name": "Hamilton General Hospital Helipad", + "latitude_deg": "31.70406", + "longitude_deg": "-98.11356", + "elevation_ft": "1241", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hamilton", + "scheduled_service": "no" + }, + { + "id": "342586", + "ident": "US-3442", + "type": "seaplane_base", + "name": "Lake Hamilton Seaplane Base", + "latitude_deg": "28.056631", + "longitude_deg": "-81.638046", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Hamilton", + "scheduled_service": "no" + }, + { + "id": "342587", + "ident": "US-3443", + "type": "heliport", + "name": "Texas Tech University Medical Center Helipad", + "latitude_deg": "33.58872", + "longitude_deg": "-101.89388", + "elevation_ft": "3235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lubbock", + "scheduled_service": "no" + }, + { + "id": "342588", + "ident": "US-3444", + "type": "heliport", + "name": "Muleshoe Area Hospital Helipad", + "latitude_deg": "34.2217", + "longitude_deg": "-102.729", + "elevation_ft": "3796", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Muleshoe", + "scheduled_service": "no" + }, + { + "id": "342589", + "ident": "US-3445", + "type": "closed", + "name": "Faulkner Landing Strip", + "latitude_deg": "30.244", + "longitude_deg": "-92.33505", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Rayne", + "scheduled_service": "no" + }, + { + "id": "342590", + "ident": "US-3446", + "type": "closed", + "name": "Burntfork Landing Strip", + "latitude_deg": "41.019109", + "longitude_deg": "-110.002985", + "elevation_ft": "7267", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "McKinnon", + "scheduled_service": "no" + }, + { + "id": "342591", + "ident": "US-3447", + "type": "closed", + "name": "Westwood Airport (1948)", + "latitude_deg": "40.30623", + "longitude_deg": "-121.03624", + "elevation_ft": "5104", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Westwood", + "scheduled_service": "no" + }, + { + "id": "342592", + "ident": "US-3448", + "type": "closed", + "name": "Westwood Airport (1928)", + "latitude_deg": "40.29135", + "longitude_deg": "-120.93931", + "elevation_ft": "5048", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Westwood", + "scheduled_service": "no" + }, + { + "id": "342593", + "ident": "US-3449", + "type": "closed", + "name": "Devers Airstrip", + "latitude_deg": "30.03797", + "longitude_deg": "-94.52292", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Devers", + "scheduled_service": "no" + }, + { + "id": "342594", + "ident": "US-3450", + "type": "closed", + "name": "Road Forks Airport", + "latitude_deg": "32.24061", + "longitude_deg": "-108.9565", + "elevation_ft": "4196", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Road Forks", + "scheduled_service": "no" + }, + { + "id": "342595", + "ident": "US-3451", + "type": "closed", + "name": "Redrock Landing Strip", + "latitude_deg": "32.69074", + "longitude_deg": "-108.75685", + "elevation_ft": "4111", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Lordsburg", + "scheduled_service": "no" + }, + { + "id": "342596", + "ident": "US-3452", + "type": "closed", + "name": "Rosemead Airport", + "latitude_deg": "34.06921", + "longitude_deg": "-118.06005", + "elevation_ft": "252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "El Monte", + "scheduled_service": "no", + "keywords": "Western Air College Airport, Fletcher Airport" + }, + { + "id": "342597", + "ident": "US-3453", + "type": "heliport", + "name": "City of Industry Sheriff's Department Helipad", + "latitude_deg": "34.02452", + "longitude_deg": "-117.95811", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "City of Industry", + "scheduled_service": "no" + }, + { + "id": "342598", + "ident": "US-3454", + "type": "closed", + "name": "La Puente Sky Ranch", + "latitude_deg": "34.01199", + "longitude_deg": "-117.9318", + "elevation_ft": "381", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "La Puente", + "scheduled_service": "no" + }, + { + "id": "342599", + "ident": "US-3455", + "type": "closed", + "name": "Pomona Airport", + "latitude_deg": "34.02792", + "longitude_deg": "-117.74687", + "elevation_ft": "764", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pomona", + "scheduled_service": "no", + "keywords": "Burnley Airport" + }, + { + "id": "342600", + "ident": "US-3456", + "type": "heliport", + "name": "Lytle Creek Ranger Station Helipad", + "latitude_deg": "34.23455", + "longitude_deg": "-117.48236", + "elevation_ft": "2769", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lytle Creek", + "scheduled_service": "no", + "home_link": "https://www.fs.usda.gov/detail/sbnf/about-forest/districts/?cid=fsbdev7_007802" + }, + { + "id": "342701", + "ident": "US-3457", + "type": "small_airport", + "name": "Pue Ranch Airport", + "latitude_deg": "29.81904", + "longitude_deg": "-99.16814", + "elevation_ft": "1529", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bandera", + "scheduled_service": "no" + }, + { + "id": "342702", + "ident": "US-3458", + "type": "closed", + "name": "Spicewood Beach Landing Strip", + "latitude_deg": "30.5233", + "longitude_deg": "-98.1473", + "elevation_ft": "689", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Spicewood", + "scheduled_service": "no" + }, + { + "id": "342703", + "ident": "US-3459", + "type": "closed", + "name": "Hefner Ranch Airport", + "latitude_deg": "30.5494", + "longitude_deg": "-98.3073", + "elevation_ft": "769", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marble Falls", + "scheduled_service": "no" + }, + { + "id": "342704", + "ident": "US-3460", + "type": "closed", + "name": "McDonald Airstrip", + "latitude_deg": "30.5618", + "longitude_deg": "-98.2888", + "elevation_ft": "801", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Meadowlakes", + "scheduled_service": "no" + }, + { + "id": "342707", + "ident": "US-3461", + "type": "small_airport", + "name": "Burnt Flat Landing Strip", + "latitude_deg": "37.40319", + "longitude_deg": "-112.90984", + "elevation_ft": "6994", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Springdale", + "scheduled_service": "no" + }, + { + "id": "342733", + "ident": "US-3462", + "type": "heliport", + "name": "LZ Glen Heliport", + "latitude_deg": "32.661097", + "longitude_deg": "-95.017012", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pritchett", + "scheduled_service": "no", + "gps_code": "TX09", + "local_code": "TX09" + }, + { + "id": "342734", + "ident": "US-3463", + "type": "small_airport", + "name": "Wyatt Ranch Airport", + "latitude_deg": "30.52361", + "longitude_deg": "-100.23025", + "elevation_ft": "2271", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no" + }, + { + "id": "342735", + "ident": "US-3464", + "type": "small_airport", + "name": "Ingham Ranch Landing Strip", + "latitude_deg": "30.5637", + "longitude_deg": "-100.82161", + "elevation_ft": "2169", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no" + }, + { + "id": "342736", + "ident": "US-3465", + "type": "closed", + "name": "McCorkle Ranch Airport", + "latitude_deg": "30.75003", + "longitude_deg": "-102.76716", + "elevation_ft": "3181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no" + }, + { + "id": "342737", + "ident": "US-3466", + "type": "small_airport", + "name": "McKenzie Ranch Airport", + "latitude_deg": "30.7771", + "longitude_deg": "-102.5729", + "elevation_ft": "2983", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no" + }, + { + "id": "342738", + "ident": "US-3467", + "type": "closed", + "name": "Balmorhea Airport", + "latitude_deg": "30.99519", + "longitude_deg": "-103.76122", + "elevation_ft": "3215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Balmorhea", + "scheduled_service": "no" + }, + { + "id": "342739", + "ident": "US-3468", + "type": "closed", + "name": "Limpia Creek Landing Strip", + "latitude_deg": "30.8009", + "longitude_deg": "-103.7224", + "elevation_ft": "4132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Davis", + "scheduled_service": "no" + }, + { + "id": "342740", + "ident": "US-3469", + "type": "small_airport", + "name": "MacGuire Ranch Airport", + "latitude_deg": "30.290038", + "longitude_deg": "-104.003303", + "elevation_ft": "4685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marfa", + "scheduled_service": "no", + "gps_code": "21TE", + "local_code": "21TE" + }, + { + "id": "342741", + "ident": "US-3470", + "type": "small_airport", + "name": "Alfred Means Ranch Landing Strip", + "latitude_deg": "30.723587", + "longitude_deg": "-104.376698", + "elevation_ft": "4837", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Valentine", + "scheduled_service": "no" + }, + { + "id": "342742", + "ident": "US-3471", + "type": "small_airport", + "name": "Richard Kane Ranch Airport", + "latitude_deg": "31.0197", + "longitude_deg": "-104.5901", + "elevation_ft": "3926", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Van Horn", + "scheduled_service": "no" + }, + { + "id": "342743", + "ident": "US-3472", + "type": "closed", + "name": "Talley Ranch Airstrip", + "latitude_deg": "30.8437", + "longitude_deg": "-105.337", + "elevation_ft": "3454", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sierra Blanca", + "scheduled_service": "no" + }, + { + "id": "342744", + "ident": "US-3473", + "type": "closed", + "name": "Bennett Ranch Airport", + "latitude_deg": "30.6097", + "longitude_deg": "-104.9121", + "elevation_ft": "3142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Presidio", + "scheduled_service": "no" + }, + { + "id": "342745", + "ident": "US-3474", + "type": "closed", + "name": "Esperanza Landing Strip", + "latitude_deg": "31.1613", + "longitude_deg": "-105.7068", + "elevation_ft": "3648", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Hancock", + "scheduled_service": "no" + }, + { + "id": "342746", + "ident": "US-3475", + "type": "closed", + "name": "Westerner Inn Airpark", + "latitude_deg": "31.838", + "longitude_deg": "-106.568", + "elevation_ft": "3831", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Paso", + "scheduled_service": "no" + }, + { + "id": "342747", + "ident": "US-3476", + "type": "closed", + "name": "Bennett Field", + "latitude_deg": "31.95176", + "longitude_deg": "-106.41911", + "elevation_ft": "4032", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Paso", + "scheduled_service": "no" + }, + { + "id": "342748", + "ident": "US-3477", + "type": "closed", + "name": "Simpson Ranch Airport", + "latitude_deg": "32.2673", + "longitude_deg": "-107.4354", + "elevation_ft": "4154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Deming", + "scheduled_service": "no" + }, + { + "id": "342749", + "ident": "US-3478", + "type": "closed", + "name": "Lewis Flats Landing Strip", + "latitude_deg": "32.2335", + "longitude_deg": "-107.5071", + "elevation_ft": "4130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Deming", + "scheduled_service": "no" + }, + { + "id": "342750", + "ident": "US-3479", + "type": "closed", + "name": "Spalding Landing Strip", + "latitude_deg": "32.4745", + "longitude_deg": "-108.0024", + "elevation_ft": "4790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Deming", + "scheduled_service": "no" + }, + { + "id": "342751", + "ident": "US-3480", + "type": "small_airport", + "name": "Turner Ranch Airport", + "latitude_deg": "32.76895", + "longitude_deg": "-108.32291", + "elevation_ft": "6447", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Silver City", + "scheduled_service": "no" + }, + { + "id": "342752", + "ident": "US-3481", + "type": "small_airport", + "name": "Gila Airport", + "latitude_deg": "32.947656", + "longitude_deg": "-108.584608", + "elevation_ft": "4591", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Gila", + "scheduled_service": "no" + }, + { + "id": "342753", + "ident": "US-3482", + "type": "small_airport", + "name": "Sacaton Landing Strip", + "latitude_deg": "33.18243", + "longitude_deg": "-108.68286", + "elevation_ft": "6200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Buckhorn", + "scheduled_service": "no" + }, + { + "id": "342754", + "ident": "US-3483", + "type": "closed", + "name": "Lonely Mountain Landing Strip", + "latitude_deg": "34.027719", + "longitude_deg": "-110.519013", + "elevation_ft": "5198", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Cibecue", + "scheduled_service": "no" + }, + { + "id": "342755", + "ident": "US-3484", + "type": "heliport", + "name": "Punkin Center Heliport", + "latitude_deg": "33.87011", + "longitude_deg": "-111.31951", + "elevation_ft": "2539", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonto Basin", + "scheduled_service": "no" + }, + { + "id": "342756", + "ident": "US-3485", + "type": "closed", + "name": "Stanfield Airport", + "latitude_deg": "32.8837", + "longitude_deg": "-111.9679", + "elevation_ft": "1302", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Stanfield", + "scheduled_service": "no" + }, + { + "id": "342757", + "ident": "US-3486", + "type": "closed", + "name": "T&K Landing Strip", + "latitude_deg": "32.8823", + "longitude_deg": "-112.0277", + "elevation_ft": "1329", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Stanfield", + "scheduled_service": "no" + }, + { + "id": "342766", + "ident": "US-3487", + "type": "closed", + "name": "Three Points Landing Strip", + "latitude_deg": "32.0633", + "longitude_deg": "-111.3408", + "elevation_ft": "2564", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "342770", + "ident": "US-3488", + "type": "closed", + "name": "Ligurta Airstrip", + "latitude_deg": "32.678", + "longitude_deg": "-114.28298", + "elevation_ft": "249", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wellton", + "scheduled_service": "no" + }, + { + "id": "342771", + "ident": "US-3489", + "type": "closed", + "name": "Coyote Wells Airport", + "latitude_deg": "32.73582", + "longitude_deg": "-115.96398", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Imperial", + "scheduled_service": "no" + }, + { + "id": "342772", + "ident": "US-3490", + "type": "closed", + "name": "Miller's Airport", + "latitude_deg": "32.7316", + "longitude_deg": "-116.0279", + "elevation_ft": "673", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Imperial", + "scheduled_service": "no" + }, + { + "id": "342773", + "ident": "US-3491", + "type": "closed", + "name": "Abernathy Airport", + "latitude_deg": "32.6587", + "longitude_deg": "-116.5022", + "elevation_ft": "3063", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Campo", + "scheduled_service": "no" + }, + { + "id": "342774", + "ident": "US-3492", + "type": "small_airport", + "name": "Rough Acres Ranch Airport", + "latitude_deg": "32.697321", + "longitude_deg": "-116.267796", + "elevation_ft": "3614", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Boulevard", + "scheduled_service": "no" + }, + { + "id": "342775", + "ident": "US-3493", + "type": "small_airport", + "name": "Lansing Empire Ranch Airport", + "latitude_deg": "32.642792", + "longitude_deg": "-116.280687", + "elevation_ft": "3420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Boulevard", + "scheduled_service": "no" + }, + { + "id": "342776", + "ident": "US-3494", + "type": "closed", + "name": "Davis Ranch Airport", + "latitude_deg": "32.64734", + "longitude_deg": "-116.45559", + "elevation_ft": "2888", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Campo", + "scheduled_service": "no" + }, + { + "id": "342777", + "ident": "US-3495", + "type": "closed", + "name": "Rancho California Airport", + "latitude_deg": "33.5023", + "longitude_deg": "-117.1608", + "elevation_ft": "1014", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Temecula", + "scheduled_service": "no", + "keywords": "2L0, Murrieta Temecula" + }, + { + "id": "342778", + "ident": "US-3496", + "type": "closed", + "name": "Glen Ivy Ranch Airport", + "latitude_deg": "33.758384", + "longitude_deg": "-117.493114", + "elevation_ft": "1177", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Corona", + "scheduled_service": "no" + }, + { + "id": "342779", + "ident": "US-3497", + "type": "closed", + "name": "Elsinore Airport", + "latitude_deg": "33.658", + "longitude_deg": "-117.316", + "elevation_ft": "1237", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lake Elsinore", + "scheduled_service": "no" + }, + { + "id": "342780", + "ident": "US-3498", + "type": "closed", + "name": "Pechanga Airstrip", + "latitude_deg": "33.4713", + "longitude_deg": "-117.0979", + "elevation_ft": "1171", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Temecula", + "scheduled_service": "no" + }, + { + "id": "342781", + "ident": "US-3499", + "type": "closed", + "name": "Thompson Airport", + "latitude_deg": "33.564906", + "longitude_deg": "-117.239885", + "elevation_ft": "1132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Murrieta", + "scheduled_service": "no", + "keywords": "L86, Bear Creek, KMUE, Murrieta" + }, + { + "id": "342782", + "ident": "US-3500", + "type": "closed", + "name": "Norconian Club Airport", + "latitude_deg": "33.93", + "longitude_deg": "-117.57", + "elevation_ft": "648", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Norco", + "scheduled_service": "no" + }, + { + "id": "342783", + "ident": "US-3501", + "type": "small_airport", + "name": "Tenaja Ranch Airport", + "latitude_deg": "33.4887", + "longitude_deg": "-117.368", + "elevation_ft": "2067", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Murrieta", + "scheduled_service": "no", + "keywords": "Cold Springs" + }, + { + "id": "342784", + "ident": "US-3502", + "type": "small_airport", + "name": "Sky Ranch Airport", + "latitude_deg": "33.4597", + "longitude_deg": "-117.3749", + "elevation_ft": "2424", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fallbrook", + "scheduled_service": "no" + }, + { + "id": "342785", + "ident": "US-3503", + "type": "small_airport", + "name": "Garnsay Ranch Airport", + "latitude_deg": "33.4552", + "longitude_deg": "-117.3146", + "elevation_ft": "462", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fallbrook", + "scheduled_service": "no" + }, + { + "id": "342797", + "ident": "US-3504", + "type": "closed", + "name": "Crescent Junction Airport", + "latitude_deg": "38.9473", + "longitude_deg": "-109.8152", + "elevation_ft": "4904", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Green River", + "scheduled_service": "no" + }, + { + "id": "342801", + "ident": "US-3505", + "type": "small_airport", + "name": "La Vida Mission Landing Strip", + "latitude_deg": "36.12073", + "longitude_deg": "-108.17184", + "elevation_ft": "5883", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Farmington", + "scheduled_service": "no" + }, + { + "id": "342802", + "ident": "US-3506", + "type": "closed", + "name": "Canyon Colorado Equine Sanctuary Airfield", + "latitude_deg": "36.0789", + "longitude_deg": "-104.4282", + "elevation_ft": "6010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Wagon Mound", + "scheduled_service": "no" + }, + { + "id": "342803", + "ident": "US-3507", + "type": "closed", + "name": "Kachina Airport", + "latitude_deg": "36.382952", + "longitude_deg": "-105.591681", + "elevation_ft": "6921", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Taos", + "scheduled_service": "no" + }, + { + "id": "342804", + "ident": "US-3508", + "type": "closed", + "name": "Zia Field", + "latitude_deg": "36.3644", + "longitude_deg": "-105.6359", + "elevation_ft": "6876", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Taos", + "scheduled_service": "no" + }, + { + "id": "342874", + "ident": "US-3509", + "type": "closed", + "name": "Jolly Aero Airport", + "latitude_deg": "34.46055", + "longitude_deg": "-97.12783", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Davis", + "scheduled_service": "no" + }, + { + "id": "342875", + "ident": "US-3510", + "type": "closed", + "name": "Flying L Landing Strip", + "latitude_deg": "34.43808", + "longitude_deg": "-97.10275", + "elevation_ft": "778", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Davis", + "scheduled_service": "no" + }, + { + "id": "342916", + "ident": "US-3511", + "type": "small_airport", + "name": "Florence Military Reservation Airstrip", + "latitude_deg": "33.07479", + "longitude_deg": "-111.37029", + "elevation_ft": "1556", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Florence", + "scheduled_service": "no" + }, + { + "id": "342918", + "ident": "US-3512", + "type": "closed", + "name": "Magma Farm Landing Strip", + "latitude_deg": "33.135", + "longitude_deg": "-111.417", + "elevation_ft": "1605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Florence", + "scheduled_service": "no" + }, + { + "id": "342919", + "ident": "US-3513", + "type": "closed", + "name": "Bella Vista Farms Landing Strip", + "latitude_deg": "33.1619", + "longitude_deg": "-111.4786", + "elevation_ft": "1558", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "San Tan Valley", + "scheduled_service": "no" + }, + { + "id": "342920", + "ident": "US-3514", + "type": "small_airport", + "name": "University of Arizona Maricopa Agricultural Center North Airport", + "latitude_deg": "33.09204", + "longitude_deg": "-111.97801", + "elevation_ft": "1171", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Maricopa", + "scheduled_service": "no" + }, + { + "id": "342922", + "ident": "US-3515", + "type": "closed", + "name": "Van de Waerden Airport", + "latitude_deg": "33.076", + "longitude_deg": "-111.9401", + "elevation_ft": "1194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Maricopa", + "scheduled_service": "no" + }, + { + "id": "342923", + "ident": "US-3516", + "type": "closed", + "name": "Wiley Ranch Landing Strip", + "latitude_deg": "33.0166", + "longitude_deg": "-112.1397", + "elevation_ft": "1247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Maricopa", + "scheduled_service": "no" + }, + { + "id": "342924", + "ident": "US-3517", + "type": "closed", + "name": "187th Avenue Landing Strip", + "latitude_deg": "33.2395", + "longitude_deg": "-112.4528", + "elevation_ft": "1084", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Buckeye", + "scheduled_service": "no" + }, + { + "id": "342925", + "ident": "US-3518", + "type": "small_airport", + "name": "Rainbow Valley Landing Strip", + "latitude_deg": "33.3136", + "longitude_deg": "-112.5125", + "elevation_ft": "948", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Buckeye", + "scheduled_service": "no" + }, + { + "id": "342926", + "ident": "US-3519", + "type": "closed", + "name": "Sky Castle Airport", + "latitude_deg": "34.70101", + "longitude_deg": "-118.39299", + "elevation_ft": "2821", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Elizabeth Lake", + "scheduled_service": "no" + }, + { + "id": "342928", + "ident": "US-3520", + "type": "closed", + "name": "Neenach Landing Strip", + "latitude_deg": "34.7722", + "longitude_deg": "-118.4945", + "elevation_ft": "2827", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Neenach", + "scheduled_service": "no" + }, + { + "id": "342939", + "ident": "US-3521", + "type": "small_airport", + "name": "Bentalit Lodge Airstrip", + "latitude_deg": "61.934382", + "longitude_deg": "-150.98602", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Skwentna", + "scheduled_service": "no" + }, + { + "id": "342940", + "ident": "US-3522", + "type": "small_airport", + "name": "Fish Lakes Northeast Airstrip 1", + "latitude_deg": "61.978107", + "longitude_deg": "-150.873782", + "elevation_ft": "318", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Skwentna", + "scheduled_service": "no" + }, + { + "id": "342941", + "ident": "US-3523", + "type": "small_airport", + "name": "Fish Lakes Northeast Airstrip 2", + "latitude_deg": "61.981207", + "longitude_deg": "-150.883858", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Skwentna", + "scheduled_service": "no" + }, + { + "id": "342942", + "ident": "US-3524", + "type": "small_airport", + "name": "Glacier Park Airport", + "latitude_deg": "61.789395", + "longitude_deg": "-147.786525", + "elevation_ft": "1520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sutton-Alpine", + "scheduled_service": "no" + }, + { + "id": "342943", + "ident": "US-3525", + "type": "heliport", + "name": "Trinity Hospital Heliport", + "latitude_deg": "29.785743", + "longitude_deg": "-95.525047", + "elevation_ft": "79", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "342946", + "ident": "US-3526", + "type": "closed", + "name": "Henderson Field", + "latitude_deg": "34.42739", + "longitude_deg": "-119.29053", + "elevation_ft": "632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ojai", + "scheduled_service": "no" + }, + { + "id": "342947", + "ident": "US-3527", + "type": "closed", + "name": "Ventura Airpark", + "latitude_deg": "34.26", + "longitude_deg": "-119.265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ventura", + "scheduled_service": "no" + }, + { + "id": "342948", + "ident": "US-3528", + "type": "closed", + "name": "Carpinteria Airport", + "latitude_deg": "34.391", + "longitude_deg": "-119.508", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Carpinteria", + "scheduled_service": "no", + "keywords": "Santa Barbara" + }, + { + "id": "342949", + "ident": "US-3529", + "type": "closed", + "name": "Monrovia Airport", + "latitude_deg": "34.13623", + "longitude_deg": "-117.990021", + "elevation_ft": "494", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Monrovia", + "scheduled_service": "no", + "keywords": "Foothill Flying Field" + }, + { + "id": "342950", + "ident": "US-3530", + "type": "closed", + "name": "Pony Landing Strip", + "latitude_deg": "34.37143", + "longitude_deg": "-116.60999", + "elevation_ft": "2930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Landers", + "scheduled_service": "no" + }, + { + "id": "342951", + "ident": "US-3531", + "type": "closed", + "name": "Old Woman Springs Landing Strip", + "latitude_deg": "34.40142", + "longitude_deg": "-116.71293", + "elevation_ft": "3154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Landers", + "scheduled_service": "no" + }, + { + "id": "342952", + "ident": "US-3532", + "type": "closed", + "name": "Allen Field", + "latitude_deg": "35.05201", + "longitude_deg": "-119.02044", + "elevation_ft": "466", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bakersfield", + "scheduled_service": "no" + }, + { + "id": "342953", + "ident": "US-3533", + "type": "closed", + "name": "Baker Intermediate Field", + "latitude_deg": "35.28001", + "longitude_deg": "-116.06142", + "elevation_ft": "987", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Baker", + "scheduled_service": "no" + }, + { + "id": "342954", + "ident": "US-3534", + "type": "closed", + "name": "E Brown Ranch Airport", + "latitude_deg": "34.94062", + "longitude_deg": "-118.09318", + "elevation_ft": "2535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mojave", + "scheduled_service": "no" + }, + { + "id": "342955", + "ident": "US-3535", + "type": "heliport", + "name": "200 Spectrum Center Helipad", + "latitude_deg": "33.65266", + "longitude_deg": "-117.74786", + "elevation_ft": "537", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Irvine", + "scheduled_service": "no" + }, + { + "id": "342956", + "ident": "US-3536", + "type": "heliport", + "name": "300 Spectrum Center Helipad", + "latitude_deg": "33.6539", + "longitude_deg": "-117.7473", + "elevation_ft": "398", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Irvine", + "scheduled_service": "no", + "keywords": "Quest Software Tower" + }, + { + "id": "342957", + "ident": "US-3537", + "type": "heliport", + "name": "400 Spectrum Center Helipad", + "latitude_deg": "33.6542", + "longitude_deg": "-117.7457", + "elevation_ft": "543", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Irvine", + "scheduled_service": "no" + }, + { + "id": "342958", + "ident": "US-3538", + "type": "heliport", + "name": "100 Spectrum Center Helipad", + "latitude_deg": "33.6508", + "longitude_deg": "-117.7476", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Irvine", + "scheduled_service": "no", + "keywords": "8105 Tower" + }, + { + "id": "342959", + "ident": "US-3539", + "type": "heliport", + "name": "20 Pacifica Helipad", + "latitude_deg": "33.6507", + "longitude_deg": "-117.7498", + "elevation_ft": "407", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Irvine", + "scheduled_service": "no" + }, + { + "id": "342960", + "ident": "US-3540", + "type": "heliport", + "name": "40 Pacifica Helipad", + "latitude_deg": "33.6507", + "longitude_deg": "-117.7517", + "elevation_ft": "407", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Irvine", + "scheduled_service": "no" + }, + { + "id": "342961", + "ident": "US-3541", + "type": "closed", + "name": "Shandin Hills Airport", + "latitude_deg": "34.1385", + "longitude_deg": "-117.3084", + "elevation_ft": "1190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Bernardino", + "scheduled_service": "no", + "keywords": "Cooks, San Bernardino (1929)" + }, + { + "id": "342962", + "ident": "US-3542", + "type": "closed", + "name": "San Bernardino Airport (1942)", + "latitude_deg": "34.1753", + "longitude_deg": "-117.32101", + "elevation_ft": "1451", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Bernardino", + "scheduled_service": "no" + }, + { + "id": "342963", + "ident": "US-3543", + "type": "closed", + "name": "Fontana Gilfillan Airport", + "latitude_deg": "34.13228", + "longitude_deg": "-117.46666", + "elevation_ft": "1452", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fontana", + "scheduled_service": "no" + }, + { + "id": "342964", + "ident": "US-3544", + "type": "closed", + "name": "Palm Desert Airpark", + "latitude_deg": "33.74", + "longitude_deg": "-116.4", + "elevation_ft": "207", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rancho Mirage", + "scheduled_service": "no", + "keywords": "Desert Airport" + }, + { + "id": "342965", + "ident": "US-3545", + "type": "closed", + "name": "Indio Airport", + "latitude_deg": "33.73048", + "longitude_deg": "-116.21313", + "elevation_ft": "-16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Indio", + "scheduled_service": "no" + }, + { + "id": "342966", + "ident": "US-3546", + "type": "closed", + "name": "North Shore Airport", + "latitude_deg": "33.5227", + "longitude_deg": "-115.945", + "elevation_ft": "-223", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mecca", + "scheduled_service": "no" + }, + { + "id": "342967", + "ident": "US-3547", + "type": "closed", + "name": "Palm Springs Municipal Airport", + "latitude_deg": "33.8274", + "longitude_deg": "-116.53184", + "elevation_ft": "456", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palm Springs", + "scheduled_service": "no" + }, + { + "id": "342968", + "ident": "US-3548", + "type": "closed", + "name": "Steven's Desert Airport", + "latitude_deg": "33.844", + "longitude_deg": "-116.536", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palm Springs", + "scheduled_service": "no" + }, + { + "id": "342969", + "ident": "US-3549", + "type": "closed", + "name": "Ash Fork Jay Hasbrook Airport", + "latitude_deg": "35.208024", + "longitude_deg": "-112.485939", + "elevation_ft": "5076", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Ash Fork", + "scheduled_service": "no" + }, + { + "id": "342970", + "ident": "US-3550", + "type": "closed", + "name": "Atwater Municipal Airport (1957)", + "latitude_deg": "37.336", + "longitude_deg": "-120.6032", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Atwater", + "scheduled_service": "no", + "keywords": "0O1, Buller Field" + }, + { + "id": "342971", + "ident": "US-3551", + "type": "closed", + "name": "Herring Landing Strip", + "latitude_deg": "35.14705", + "longitude_deg": "-118.87342", + "elevation_ft": "423", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Arvin", + "scheduled_service": "no" + }, + { + "id": "342972", + "ident": "US-3552", + "type": "closed", + "name": "Arvin Intermediate Field", + "latitude_deg": "35.19915", + "longitude_deg": "-118.91692", + "elevation_ft": "361", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Arvin", + "scheduled_service": "no" + }, + { + "id": "342973", + "ident": "US-3553", + "type": "closed", + "name": "Alturas Airport (1927)", + "latitude_deg": "41.49884", + "longitude_deg": "-120.54248", + "elevation_ft": "4387", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Alturas", + "scheduled_service": "no" + }, + { + "id": "342974", + "ident": "US-3554", + "type": "closed", + "name": "Antioch Airport", + "latitude_deg": "37.96475", + "longitude_deg": "-121.80128", + "elevation_ft": "197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Antioch", + "scheduled_service": "no" + }, + { + "id": "342975", + "ident": "US-3555", + "type": "closed", + "name": "Frogtown Airport", + "latitude_deg": "38.04913", + "longitude_deg": "-120.51997", + "elevation_ft": "1530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Angels Camp", + "scheduled_service": "no" + }, + { + "id": "342976", + "ident": "US-3556", + "type": "closed", + "name": "Reilly Airfield", + "latitude_deg": "33.74554", + "longitude_deg": "-85.78057", + "elevation_ft": "754", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Anniston", + "scheduled_service": "no", + "keywords": "Fort McClellan, Henry J Reilly" + }, + { + "id": "342977", + "ident": "US-3557", + "type": "closed", + "name": "Apple Valley Airport (1948)", + "latitude_deg": "34.52896", + "longitude_deg": "-117.21015", + "elevation_ft": "2922", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Apple Valley", + "scheduled_service": "no" + }, + { + "id": "342978", + "ident": "US-3558", + "type": "closed", + "name": "Stepp Airport", + "latitude_deg": "32.29843", + "longitude_deg": "-95.86252", + "elevation_ft": "508", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Athens", + "scheduled_service": "no" + }, + { + "id": "342979", + "ident": "US-3559", + "type": "closed", + "name": "Atwater Airport (1936)", + "latitude_deg": "37.32052", + "longitude_deg": "-120.59949", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Atwater", + "scheduled_service": "no" + }, + { + "id": "342980", + "ident": "US-3560", + "type": "closed", + "name": "Auburn Airport (1936)", + "latitude_deg": "38.9404", + "longitude_deg": "-121.05529", + "elevation_ft": "1627", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Auburn", + "scheduled_service": "no" + }, + { + "id": "342981", + "ident": "US-3561", + "type": "closed", + "name": "Hamilton Cove Seaplane Base", + "latitude_deg": "33.35395", + "longitude_deg": "-118.32962", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Avalon", + "scheduled_service": "no" + }, + { + "id": "342982", + "ident": "US-3562", + "type": "closed", + "name": "Descanso Bay Seaplane Base", + "latitude_deg": "33.35072", + "longitude_deg": "-118.32677", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Avalon", + "scheduled_service": "no" + }, + { + "id": "342983", + "ident": "US-3563", + "type": "closed", + "name": "Two Harbors Airstrip", + "latitude_deg": "33.43716", + "longitude_deg": "-118.50171", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Two Harbors", + "scheduled_service": "no" + }, + { + "id": "342984", + "ident": "US-3564", + "type": "closed", + "name": "San Clemente Island Target Airstrip", + "latitude_deg": "32.83931", + "longitude_deg": "-118.41016", + "elevation_ft": "899", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Clemente Island", + "scheduled_service": "no" + }, + { + "id": "342986", + "ident": "US-3565", + "type": "heliport", + "name": "Commanders Point Private Helipad", + "latitude_deg": "30.39813", + "longitude_deg": "-97.91091", + "elevation_ft": "746", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no" + }, + { + "id": "342987", + "ident": "US-3566", + "type": "small_airport", + "name": "Accord Airport", + "latitude_deg": "41.80114", + "longitude_deg": "-74.21477", + "elevation_ft": "271", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Accord", + "scheduled_service": "no" + }, + { + "id": "342988", + "ident": "US-3567", + "type": "closed", + "name": "Ardmore Municipal Airport (1932)", + "latitude_deg": "34.29879", + "longitude_deg": "-97.14829", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ardmore", + "scheduled_service": "no" + }, + { + "id": "342989", + "ident": "US-3568", + "type": "closed", + "name": "Aguila Airfield", + "latitude_deg": "33.93636", + "longitude_deg": "-113.22896", + "elevation_ft": "2152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Aguila", + "scheduled_service": "no" + }, + { + "id": "342990", + "ident": "US-3569", + "type": "closed", + "name": "Aguila West Landing Strip", + "latitude_deg": "33.95392", + "longitude_deg": "-113.25918", + "elevation_ft": "2099", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Aguila", + "scheduled_service": "no" + }, + { + "id": "342991", + "ident": "US-3570", + "type": "closed", + "name": "Aguila North Airfield", + "latitude_deg": "33.99727", + "longitude_deg": "-113.21271", + "elevation_ft": "2163", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Aguila", + "scheduled_service": "no" + }, + { + "id": "342994", + "ident": "US-3571", + "type": "heliport", + "name": "Crystal Mountain Residential Helipad", + "latitude_deg": "30.3066", + "longitude_deg": "-97.87003", + "elevation_ft": "799", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no" + }, + { + "id": "342995", + "ident": "US-3572", + "type": "small_airport", + "name": "Adobe Mountain Airport", + "latitude_deg": "34.71576", + "longitude_deg": "-117.66976", + "elevation_ft": "2992", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lancaster", + "scheduled_service": "no" + }, + { + "id": "342996", + "ident": "US-3573", + "type": "small_airport", + "name": "El Mirage Valley Landing Strip", + "latitude_deg": "34.68552", + "longitude_deg": "-117.6367", + "elevation_ft": "2897", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Adelanto", + "scheduled_service": "no" + }, + { + "id": "342997", + "ident": "US-3574", + "type": "small_airport", + "name": "Evans Airstrip", + "latitude_deg": "34.65877", + "longitude_deg": "-117.63597", + "elevation_ft": "2858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Adelanto", + "scheduled_service": "no" + }, + { + "id": "342998", + "ident": "US-3575", + "type": "small_airport", + "name": "Hamilton Airstrip", + "latitude_deg": "34.65574", + "longitude_deg": "-117.63375", + "elevation_ft": "2851", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Adelanto", + "scheduled_service": "no" + }, + { + "id": "343003", + "ident": "US-3576", + "type": "closed", + "name": "Auberry Airport", + "latitude_deg": "37.08028", + "longitude_deg": "-119.4898", + "elevation_ft": "2011", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Auberry", + "scheduled_service": "no" + }, + { + "id": "343004", + "ident": "US-3577", + "type": "closed", + "name": "Topham Ranch-Auberry Airport", + "latitude_deg": "37.09334", + "longitude_deg": "-119.5109", + "elevation_ft": "2176", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Auberry", + "scheduled_service": "no" + }, + { + "id": "343005", + "ident": "US-3578", + "type": "small_airport", + "name": "Hewitson Airport", + "latitude_deg": "35.90928", + "longitude_deg": "-120.06358", + "elevation_ft": "593", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Avenal", + "scheduled_service": "no" + }, + { + "id": "343006", + "ident": "US-3579", + "type": "small_airport", + "name": "Reef Station Airport", + "latitude_deg": "35.9119", + "longitude_deg": "-120.0601", + "elevation_ft": "581", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Avenal", + "scheduled_service": "no" + }, + { + "id": "343007", + "ident": "US-3580", + "type": "closed", + "name": "Schriefer Airstrip", + "latitude_deg": "29.9348", + "longitude_deg": "-92.1823", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Abbeville", + "scheduled_service": "no" + }, + { + "id": "343008", + "ident": "US-3581", + "type": "closed", + "name": "Mouton Landing Strip", + "latitude_deg": "29.91659", + "longitude_deg": "-92.23334", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Abbeville", + "scheduled_service": "no" + }, + { + "id": "343009", + "ident": "US-3582", + "type": "closed", + "name": "Randall Green Landing Strip", + "latitude_deg": "29.90786", + "longitude_deg": "-92.29479", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Abbeville", + "scheduled_service": "no" + }, + { + "id": "343010", + "ident": "US-3583", + "type": "closed", + "name": "Roy Lee Landing Strip", + "latitude_deg": "29.82348", + "longitude_deg": "-92.14894", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Esther", + "scheduled_service": "no" + }, + { + "id": "343011", + "ident": "US-3584", + "type": "small_airport", + "name": "Ash Springs Landing Strip", + "latitude_deg": "37.45145", + "longitude_deg": "-115.17342", + "elevation_ft": "3582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Ash Springs", + "scheduled_service": "no" + }, + { + "id": "343012", + "ident": "US-3585", + "type": "closed", + "name": "Ash Meadows Sky Ranch", + "latitude_deg": "36.35834", + "longitude_deg": "-116.29556", + "elevation_ft": "2210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Pahrump", + "scheduled_service": "no", + "keywords": "Ash Meadows Airport" + }, + { + "id": "343016", + "ident": "US-3586", + "type": "closed", + "name": "Shawnee Municipal Airport Number 2", + "latitude_deg": "35.44307", + "longitude_deg": "-96.92295", + "elevation_ft": "999", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Shawnee", + "scheduled_service": "no" + }, + { + "id": "343018", + "ident": "US-3587", + "type": "closed", + "name": "Altuda Ranch Airport", + "latitude_deg": "30.3121", + "longitude_deg": "-103.47624", + "elevation_ft": "4788", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alpine", + "scheduled_service": "no" + }, + { + "id": "343019", + "ident": "US-3588", + "type": "closed", + "name": "Altuda Ranch Airport", + "latitude_deg": "30.3121", + "longitude_deg": "-103.47624", + "elevation_ft": "4788", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alpine", + "scheduled_service": "no" + }, + { + "id": "343020", + "ident": "US-3589", + "type": "small_airport", + "name": "Kramer Junction Airstrip", + "latitude_deg": "34.99831", + "longitude_deg": "-117.55786", + "elevation_ft": "2466", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Boron", + "scheduled_service": "no" + }, + { + "id": "343021", + "ident": "US-3590", + "type": "closed", + "name": "Barstow 30-20 Airport", + "latitude_deg": "34.91328", + "longitude_deg": "-117.02037", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Barstow", + "scheduled_service": "no" + }, + { + "id": "343022", + "ident": "US-3591", + "type": "closed", + "name": "Williams Well Landing Strip", + "latitude_deg": "35.12674", + "longitude_deg": "-116.9579", + "elevation_ft": "3506", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Barstow", + "scheduled_service": "no" + }, + { + "id": "343023", + "ident": "US-3592", + "type": "closed", + "name": "Barstow Landing Strip", + "latitude_deg": "31.44945", + "longitude_deg": "-103.41265", + "elevation_ft": "2566", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Barstow", + "scheduled_service": "no" + }, + { + "id": "343024", + "ident": "US-3593", + "type": "closed", + "name": "Wishon Airport", + "latitude_deg": "37.33291", + "longitude_deg": "-119.58041", + "elevation_ft": "3399", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bass Lake", + "scheduled_service": "no" + }, + { + "id": "343025", + "ident": "US-3594", + "type": "closed", + "name": "Silurian Lake Landing Strip", + "latitude_deg": "35.53034", + "longitude_deg": "-116.17518", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Baker", + "scheduled_service": "no" + }, + { + "id": "343026", + "ident": "US-3595", + "type": "closed", + "name": "Bard Landing Strip", + "latitude_deg": "35.12682", + "longitude_deg": "-103.24859", + "elevation_ft": "4009", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Bard", + "scheduled_service": "no" + }, + { + "id": "343027", + "ident": "US-3596", + "type": "closed", + "name": "Bardstown Landing Strip", + "latitude_deg": "37.81469", + "longitude_deg": "-85.53978", + "elevation_ft": "624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Bardstown", + "scheduled_service": "no" + }, + { + "id": "343030", + "ident": "US-3597", + "type": "heliport", + "name": "Blackfeet Community Hospital Helipad", + "latitude_deg": "48.56624", + "longitude_deg": "-113.02007", + "elevation_ft": "4415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Browning", + "scheduled_service": "no" + }, + { + "id": "343031", + "ident": "US-3598", + "type": "small_airport", + "name": "Indian Springs Airport", + "latitude_deg": "30.72341", + "longitude_deg": "-98.33963", + "elevation_ft": "1272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Burnet", + "scheduled_service": "no" + }, + { + "id": "343032", + "ident": "US-3599", + "type": "closed", + "name": "Flying X Ranch Airport", + "latitude_deg": "30.62781", + "longitude_deg": "-98.08259", + "elevation_ft": "1341", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bertram", + "scheduled_service": "no" + }, + { + "id": "343033", + "ident": "US-3600", + "type": "heliport", + "name": "Palomar Observatory Parking Lot Helipad", + "latitude_deg": "33.35906", + "longitude_deg": "-116.86697", + "elevation_ft": "5517", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palomar Mountain", + "scheduled_service": "no" + }, + { + "id": "343034", + "ident": "US-3601", + "type": "heliport", + "name": "Palomar Observatory Road Helipad", + "latitude_deg": "33.35762", + "longitude_deg": "-116.86436", + "elevation_ft": "5542", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palomar Mountain", + "scheduled_service": "no" + }, + { + "id": "343035", + "ident": "US-3602", + "type": "closed", + "name": "Sunrise Deuce Ranch Airport", + "latitude_deg": "30.65429", + "longitude_deg": "-98.09441", + "elevation_ft": "1383", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bertram", + "scheduled_service": "no" + }, + { + "id": "343036", + "ident": "US-3603", + "type": "closed", + "name": "Green River Airfield", + "latitude_deg": "44.40949", + "longitude_deg": "-122.69489", + "elevation_ft": "572", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sweet Home", + "scheduled_service": "no" + }, + { + "id": "343037", + "ident": "US-3604", + "type": "small_airport", + "name": "Wrights Airfield", + "latitude_deg": "44.26985", + "longitude_deg": "-123.0085", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Harrisburg", + "scheduled_service": "no" + }, + { + "id": "343040", + "ident": "US-3605", + "type": "closed", + "name": "Calico Ranch Airport", + "latitude_deg": "34.92693", + "longitude_deg": "-116.766198", + "elevation_ft": "1962", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Yermo", + "scheduled_service": "no" + }, + { + "id": "343041", + "ident": "US-3606", + "type": "closed", + "name": "Bellflower Airport", + "latitude_deg": "33.89182", + "longitude_deg": "-118.11142", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bellflower", + "scheduled_service": "no" + }, + { + "id": "343042", + "ident": "US-3607", + "type": "closed", + "name": "Big Pine Intermediate Field", + "latitude_deg": "37.1446", + "longitude_deg": "-118.28303", + "elevation_ft": "4009", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Big Pine", + "scheduled_service": "no" + }, + { + "id": "343043", + "ident": "US-3608", + "type": "closed", + "name": "Panorama Airport", + "latitude_deg": "34.18664", + "longitude_deg": "-118.35617", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Burbank", + "scheduled_service": "no" + }, + { + "id": "343044", + "ident": "US-3609", + "type": "closed", + "name": "Brea Airport", + "latitude_deg": "33.90854", + "longitude_deg": "-117.88588", + "elevation_ft": "338", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Brea", + "scheduled_service": "no" + }, + { + "id": "343045", + "ident": "US-3610", + "type": "closed", + "name": "Olga Airstrip", + "latitude_deg": "32.30932", + "longitude_deg": "-109.41274", + "elevation_ft": "3678", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bowie", + "scheduled_service": "no" + }, + { + "id": "343046", + "ident": "US-3611", + "type": "closed", + "name": "Ardis Airport", + "latitude_deg": "33.90183", + "longitude_deg": "-118.13379", + "elevation_ft": "84", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bellflower", + "scheduled_service": "no" + }, + { + "id": "343047", + "ident": "US-3612", + "type": "closed", + "name": "Berkeley Municipal Airport (1929)", + "latitude_deg": "37.88181", + "longitude_deg": "-122.30437", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Berkeley", + "scheduled_service": "no" + }, + { + "id": "343048", + "ident": "US-3613", + "type": "closed", + "name": "Byron Hot Springs Airport", + "latitude_deg": "37.8507", + "longitude_deg": "-121.6346", + "elevation_ft": "152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Byron", + "scheduled_service": "no" + }, + { + "id": "343049", + "ident": "US-3614", + "type": "closed", + "name": "Byron Airport (1955)", + "latitude_deg": "37.83424", + "longitude_deg": "-121.63605", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Byron", + "scheduled_service": "no", + "keywords": "4Q5" + }, + { + "id": "343050", + "ident": "US-3615", + "type": "small_airport", + "name": "Blanchard Mountain Landing Zone", + "latitude_deg": "48.59223", + "longitude_deg": "-122.41993", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Bow", + "scheduled_service": "no" + }, + { + "id": "343051", + "ident": "US-3616", + "type": "small_airport", + "name": "Gilks Ranch Airport", + "latitude_deg": "33.12738", + "longitude_deg": "-112.6669", + "elevation_ft": "781", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Buckeye", + "scheduled_service": "no" + }, + { + "id": "343052", + "ident": "US-3617", + "type": "small_airport", + "name": "Woods Road West Airstrip", + "latitude_deg": "33.12692", + "longitude_deg": "-112.67564", + "elevation_ft": "738", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Buckeye", + "scheduled_service": "no" + }, + { + "id": "343053", + "ident": "US-3618", + "type": "closed", + "name": "Eagles Roost Airport", + "latitude_deg": "29.79593", + "longitude_deg": "-99.05876", + "elevation_ft": "1418", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bandera", + "scheduled_service": "no" + }, + { + "id": "343054", + "ident": "US-3619", + "type": "closed", + "name": "Alaskan RV Park Airstrip", + "latitude_deg": "32.31561", + "longitude_deg": "-109.45397", + "elevation_ft": "3724", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bowie", + "scheduled_service": "no" + }, + { + "id": "343055", + "ident": "US-3620", + "type": "closed", + "name": "Benton Landing Field", + "latitude_deg": "37.82219", + "longitude_deg": "-118.47613", + "elevation_ft": "5430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Benton", + "scheduled_service": "no" + }, + { + "id": "343056", + "ident": "US-3621", + "type": "closed", + "name": "Fort McDowell East Garrison Heliport", + "latitude_deg": "37.86195", + "longitude_deg": "-122.42033", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Belvedere Tiburon", + "scheduled_service": "no" + }, + { + "id": "343057", + "ident": "US-3622", + "type": "closed", + "name": "Angel Island Nike Base Heliport", + "latitude_deg": "37.86162", + "longitude_deg": "-122.42995", + "elevation_ft": "781", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Belvedere Tiburon", + "scheduled_service": "no" + }, + { + "id": "343058", + "ident": "US-3623", + "type": "closed", + "name": "Borrego Valley Springs Landing Strip", + "latitude_deg": "33.26164", + "longitude_deg": "-116.40071", + "elevation_ft": "758", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Borrego Springs", + "scheduled_service": "no" + }, + { + "id": "343059", + "ident": "US-3624", + "type": "closed", + "name": "Ensign Ranch Airport", + "latitude_deg": "33.2345", + "longitude_deg": "-116.3575", + "elevation_ft": "577", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Borrego Springs", + "scheduled_service": "no" + }, + { + "id": "343060", + "ident": "US-3625", + "type": "closed", + "name": "Borrego Hotel Naval Outlying Landing Field", + "latitude_deg": "33.09353", + "longitude_deg": "-116.10718", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Borrego Springs", + "scheduled_service": "no", + "keywords": "Halfhill Lake" + }, + { + "id": "343063", + "ident": "US-3626", + "type": "closed", + "name": "Central Park Airport", + "latitude_deg": "33.4777", + "longitude_deg": "-86.8903", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Birmingham", + "scheduled_service": "no" + }, + { + "id": "343064", + "ident": "US-3627", + "type": "closed", + "name": "Roberts Field", + "latitude_deg": "33.51737", + "longitude_deg": "-86.87195", + "elevation_ft": "522", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Birmingham", + "scheduled_service": "no" + }, + { + "id": "343065", + "ident": "US-3628", + "type": "closed", + "name": "Bessemer Durham Airport", + "latitude_deg": "33.36675", + "longitude_deg": "-86.98004", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Bessemer", + "scheduled_service": "no", + "keywords": "Bessemer Airport (1947), Durham Airport" + }, + { + "id": "343066", + "ident": "US-3629", + "type": "balloonport", + "name": "Balloon Fiesta Park", + "latitude_deg": "35.19652", + "longitude_deg": "-106.59717", + "elevation_ft": "5075", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Albuquerque", + "scheduled_service": "no" + }, + { + "id": "343067", + "ident": "US-3630", + "type": "closed", + "name": "Anaheim Convention Center Temporary Heliport", + "latitude_deg": "33.80007", + "longitude_deg": "-117.9234", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Anaheim", + "scheduled_service": "no" + }, + { + "id": "343068", + "ident": "US-3631", + "type": "closed", + "name": "Fairfield Landing Strip", + "latitude_deg": "30.00512", + "longitude_deg": "-95.75578", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cypress", + "scheduled_service": "no" + }, + { + "id": "343069", + "ident": "US-3632", + "type": "closed", + "name": "Parsons Airport", + "latitude_deg": "34.38539", + "longitude_deg": "-119.47886", + "elevation_ft": "219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Carpinteria", + "scheduled_service": "no" + }, + { + "id": "343070", + "ident": "US-3633", + "type": "closed", + "name": "JBSA Recreation Park Canyon Lake Heliport", + "latitude_deg": "29.88856", + "longitude_deg": "-98.21854", + "elevation_ft": "958", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Canyon Lake", + "scheduled_service": "no" + }, + { + "id": "343071", + "ident": "US-3634", + "type": "small_airport", + "name": "Bumpy Airstrip", + "latitude_deg": "39.14763", + "longitude_deg": "-119.48718", + "elevation_ft": "8420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Carson City", + "scheduled_service": "no", + "keywords": "Lyon Peak North" + }, + { + "id": "343072", + "ident": "US-3635", + "type": "closed", + "name": "Calexico North Airfield", + "latitude_deg": "32.70028", + "longitude_deg": "-115.49504", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Calexico", + "scheduled_service": "no" + }, + { + "id": "343073", + "ident": "US-3636", + "type": "closed", + "name": "Silver Saddle Ranch Airport", + "latitude_deg": "35.22315", + "longitude_deg": "-117.76", + "elevation_ft": "2981", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "California City", + "scheduled_service": "no" + }, + { + "id": "343074", + "ident": "US-3637", + "type": "small_airport", + "name": "Calpine Airport", + "latitude_deg": "39.66152", + "longitude_deg": "-120.41848", + "elevation_ft": "4927", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Calpine", + "scheduled_service": "no" + }, + { + "id": "343077", + "ident": "US-3638", + "type": "closed", + "name": "Chico Airport (1936)", + "latitude_deg": "39.70194", + "longitude_deg": "-121.80148", + "elevation_ft": "209", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chico", + "scheduled_service": "no" + }, + { + "id": "343078", + "ident": "US-3639", + "type": "closed", + "name": "Shepherd Field", + "latitude_deg": "34.01384", + "longitude_deg": "-118.05305", + "elevation_ft": "218", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "City of Industry", + "scheduled_service": "no" + }, + { + "id": "343079", + "ident": "US-3640", + "type": "closed", + "name": "Ashburn Airport", + "latitude_deg": "41.74225", + "longitude_deg": "-87.73136", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "no" + }, + { + "id": "343080", + "ident": "US-3641", + "type": "closed", + "name": "Cicero Airport", + "latitude_deg": "41.85859", + "longitude_deg": "-87.74921", + "elevation_ft": "604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Cicero", + "scheduled_service": "no" + }, + { + "id": "343081", + "ident": "US-3642", + "type": "closed", + "name": "Clewiston Airport", + "latitude_deg": "26.7431", + "longitude_deg": "-80.94774", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Clewiston", + "scheduled_service": "no" + }, + { + "id": "343082", + "ident": "US-3643", + "type": "closed", + "name": "Wrights Farm Airport", + "latitude_deg": "39.25021", + "longitude_deg": "-84.504", + "elevation_ft": "766", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cincinnati", + "scheduled_service": "no" + }, + { + "id": "343083", + "ident": "US-3644", + "type": "closed", + "name": "Boston Ranch Airport", + "latitude_deg": "36.2221", + "longitude_deg": "-119.99945", + "elevation_ft": "281", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Huron", + "scheduled_service": "no" + }, + { + "id": "343084", + "ident": "US-3645", + "type": "closed", + "name": "Boston Field", + "latitude_deg": "36.21781", + "longitude_deg": "-119.98572", + "elevation_ft": "279", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Huron", + "scheduled_service": "no" + }, + { + "id": "343085", + "ident": "US-3646", + "type": "closed", + "name": "Murray Field", + "latitude_deg": "36.14517", + "longitude_deg": "-119.93279", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stratford", + "scheduled_service": "no" + }, + { + "id": "343086", + "ident": "US-3647", + "type": "closed", + "name": "Woods Ranch Airport", + "latitude_deg": "36.19205", + "longitude_deg": "-120.02052", + "elevation_ft": "299", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Huron", + "scheduled_service": "no", + "keywords": "Tornado" + }, + { + "id": "343087", + "ident": "US-3648", + "type": "closed", + "name": "Huron Field", + "latitude_deg": "36.21845", + "longitude_deg": "-120.03726", + "elevation_ft": "308", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Huron", + "scheduled_service": "no" + }, + { + "id": "343088", + "ident": "US-3649", + "type": "closed", + "name": "Willett Field", + "latitude_deg": "36.20028", + "longitude_deg": "-120.08632", + "elevation_ft": "354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Huron", + "scheduled_service": "no" + }, + { + "id": "343089", + "ident": "US-3650", + "type": "closed", + "name": "Indian Field", + "latitude_deg": "36.12875", + "longitude_deg": "-120.08623", + "elevation_ft": "354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Huron", + "scheduled_service": "no" + }, + { + "id": "343090", + "ident": "US-3651", + "type": "closed", + "name": "Kochergen Farms Airport", + "latitude_deg": "36.09427", + "longitude_deg": "-120.07011", + "elevation_ft": "378", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Kettleman City", + "scheduled_service": "no" + }, + { + "id": "343091", + "ident": "US-3652", + "type": "closed", + "name": "Oroville Auxiliary Army Airfield Number 5", + "latitude_deg": "39.58267", + "longitude_deg": "-121.63904", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oroville", + "scheduled_service": "no" + }, + { + "id": "343092", + "ident": "US-3653", + "type": "closed", + "name": "Chico Hot Springs Airport", + "latitude_deg": "45.34715", + "longitude_deg": "-110.6954", + "elevation_ft": "5240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Pray", + "scheduled_service": "no" + }, + { + "id": "343093", + "ident": "US-3654", + "type": "closed", + "name": "Corcoran South Airport", + "latitude_deg": "36.08346", + "longitude_deg": "-119.54516", + "elevation_ft": "207", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Corcoran", + "scheduled_service": "no" + }, + { + "id": "343094", + "ident": "US-3655", + "type": "small_airport", + "name": "Oak Ridge Airport", + "latitude_deg": "29.93739", + "longitude_deg": "-98.86126", + "elevation_ft": "1594", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comfort", + "scheduled_service": "no" + }, + { + "id": "343098", + "ident": "US-3656", + "type": "closed", + "name": "Wasioja Airstrip", + "latitude_deg": "34.963174", + "longitude_deg": "-119.796689", + "elevation_ft": "2245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "New Cuyama", + "scheduled_service": "no" + }, + { + "id": "343099", + "ident": "US-3657", + "type": "closed", + "name": "Russel Ranch Airport", + "latitude_deg": "35.00661", + "longitude_deg": "-119.82373", + "elevation_ft": "1773", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "New Cuyama", + "scheduled_service": "no" + }, + { + "id": "343101", + "ident": "US-3658", + "type": "small_airport", + "name": "Ballinger Canyon Airport", + "latitude_deg": "34.88565", + "longitude_deg": "-119.46628", + "elevation_ft": "2986", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "New Cuyama", + "scheduled_service": "no" + }, + { + "id": "343102", + "ident": "US-3659", + "type": "closed", + "name": "Maricopa Airport (1950)", + "latitude_deg": "35.05323", + "longitude_deg": "-119.40112", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Maricopa", + "scheduled_service": "no" + }, + { + "id": "343103", + "ident": "US-3660", + "type": "closed", + "name": "Maricopa Airport (1967)", + "latitude_deg": "35.05388", + "longitude_deg": "-119.41114", + "elevation_ft": "997", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Maricopa", + "scheduled_service": "no" + }, + { + "id": "343104", + "ident": "US-3661", + "type": "closed", + "name": "Bracken Oil Airport", + "latitude_deg": "35.06527", + "longitude_deg": "-119.40788", + "elevation_ft": "906", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Maricopa", + "scheduled_service": "no" + }, + { + "id": "343105", + "ident": "US-3662", + "type": "closed", + "name": "La Cresta Airport", + "latitude_deg": "35.408", + "longitude_deg": "-118.981", + "elevation_ft": "666", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bakersfield", + "scheduled_service": "no" + }, + { + "id": "343106", + "ident": "US-3663", + "type": "closed", + "name": "Rio Bravo Airport", + "latitude_deg": "35.406104", + "longitude_deg": "-118.851829", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bakersfield", + "scheduled_service": "no" + }, + { + "id": "343107", + "ident": "US-3664", + "type": "closed", + "name": "ProMedica Herrick Hospital Heliport", + "latitude_deg": "42.00176", + "longitude_deg": "-83.938009", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Tecumseh", + "scheduled_service": "no", + "keywords": "93MI" + }, + { + "id": "343108", + "ident": "US-3665", + "type": "closed", + "name": "Pond Field", + "latitude_deg": "35.696", + "longitude_deg": "-119.36608", + "elevation_ft": "276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Wasco", + "scheduled_service": "no" + }, + { + "id": "343109", + "ident": "US-3666", + "type": "closed", + "name": "Famoso Field", + "latitude_deg": "35.64096", + "longitude_deg": "-119.21265", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "McFarland", + "scheduled_service": "no" + }, + { + "id": "343110", + "ident": "US-3667", + "type": "closed", + "name": "Jasmin Field", + "latitude_deg": "35.73647", + "longitude_deg": "-119.12088", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Delano", + "scheduled_service": "no", + "keywords": "Dunlap Field" + }, + { + "id": "343111", + "ident": "US-3668", + "type": "closed", + "name": "Gardner Field", + "latitude_deg": "35.1067", + "longitude_deg": "-119.30294", + "elevation_ft": "433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Maricopa", + "scheduled_service": "no" + }, + { + "id": "343112", + "ident": "US-3669", + "type": "closed", + "name": "Taft Kern County Auxiliary Airfield Number 2", + "latitude_deg": "35.11203", + "longitude_deg": "-119.32714", + "elevation_ft": "417", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Maricopa", + "scheduled_service": "no" + }, + { + "id": "343113", + "ident": "US-3670", + "type": "closed", + "name": "Sunset Airport", + "latitude_deg": "35.0928", + "longitude_deg": "-119.35488", + "elevation_ft": "495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Maricopa", + "scheduled_service": "no" + }, + { + "id": "343114", + "ident": "US-3671", + "type": "closed", + "name": "Parker Field", + "latitude_deg": "35.06755", + "longitude_deg": "-119.20476", + "elevation_ft": "548", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bakersfield", + "scheduled_service": "no" + }, + { + "id": "343115", + "ident": "US-3672", + "type": "closed", + "name": "Cuyama Airport", + "latitude_deg": "34.85235", + "longitude_deg": "-119.48178", + "elevation_ft": "2785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Maricopa", + "scheduled_service": "no" + }, + { + "id": "343116", + "ident": "US-3673", + "type": "heliport", + "name": "Mount Pinos Ranger Station Heliport", + "latitude_deg": "34.80794", + "longitude_deg": "-119.01326", + "elevation_ft": "5266", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Frazier Park", + "scheduled_service": "no", + "keywords": "Chuchupate Ranger Station" + }, + { + "id": "343117", + "ident": "US-3674", + "type": "closed", + "name": "Muniz Ranch Airport", + "latitude_deg": "29.32092", + "longitude_deg": "-99.36572", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "D'Hanis", + "scheduled_service": "no" + }, + { + "id": "343118", + "ident": "US-3675", + "type": "closed", + "name": "Curry Airport", + "latitude_deg": "32.6514", + "longitude_deg": "-96.81573", + "elevation_ft": "584", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no" + }, + { + "id": "343119", + "ident": "US-3676", + "type": "closed", + "name": "Lazy B Ranch Airstrip", + "latitude_deg": "32.55515", + "longitude_deg": "-109.08891", + "elevation_ft": "4141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Duncan", + "scheduled_service": "no" + }, + { + "id": "343120", + "ident": "US-3677", + "type": "small_airport", + "name": "Mud Springs Ranch Airport", + "latitude_deg": "32.68097", + "longitude_deg": "-108.9632", + "elevation_ft": "3969", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Virden", + "scheduled_service": "no" + }, + { + "id": "343121", + "ident": "US-3678", + "type": "closed", + "name": "Alta Airport", + "latitude_deg": "36.54021", + "longitude_deg": "-119.31607", + "elevation_ft": "358", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Dinuba", + "scheduled_service": "no" + }, + { + "id": "343123", + "ident": "US-3679", + "type": "small_airport", + "name": "Shepp Ranch Airstrip", + "latitude_deg": "45.43976", + "longitude_deg": "-115.66458", + "elevation_ft": "2141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cascade", + "scheduled_service": "no" + }, + { + "id": "343124", + "ident": "US-3680", + "type": "closed", + "name": "Riggins Emergency Airstrip", + "latitude_deg": "45.4245", + "longitude_deg": "-116.3095", + "elevation_ft": "1773", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Riggins", + "scheduled_service": "no" + }, + { + "id": "343125", + "ident": "US-3681", + "type": "small_airport", + "name": "Campbells Ferry Airstrip", + "latitude_deg": "45.48703", + "longitude_deg": "-115.33065", + "elevation_ft": "2644", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Cascade", + "scheduled_service": "no" + }, + { + "id": "343126", + "ident": "US-3682", + "type": "heliport", + "name": "Indianola Forest Service Heliport", + "latitude_deg": "45.4005", + "longitude_deg": "-114.1666", + "elevation_ft": "3469", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "North Fork", + "scheduled_service": "no" + }, + { + "id": "343131", + "ident": "US-3683", + "type": "closed", + "name": "Wheelless Airport", + "latitude_deg": "31.22693", + "longitude_deg": "-85.48908", + "elevation_ft": "297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Dothan", + "scheduled_service": "no" + }, + { + "id": "343132", + "ident": "US-3684", + "type": "closed", + "name": "Dothan Municipal Airport", + "latitude_deg": "31.23963", + "longitude_deg": "-85.44073", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Dothan", + "scheduled_service": "no" + }, + { + "id": "343133", + "ident": "US-3685", + "type": "heliport", + "name": "Brownwood Regional Medical Center Heliport", + "latitude_deg": "31.67852", + "longitude_deg": "-98.99336", + "elevation_ft": "1434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brownwood", + "scheduled_service": "no" + }, + { + "id": "343134", + "ident": "US-3686", + "type": "heliport", + "name": "Air Evac Lifeteam Base 52 Heliport", + "latitude_deg": "31.67907", + "longitude_deg": "-98.9936", + "elevation_ft": "1430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brownwood", + "scheduled_service": "no" + }, + { + "id": "343135", + "ident": "US-3687", + "type": "heliport", + "name": "Air Evac 71 Heliport", + "latitude_deg": "28.52314", + "longitude_deg": "-99.82883", + "elevation_ft": "604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Carrizo Springs", + "scheduled_service": "no" + }, + { + "id": "343136", + "ident": "US-3688", + "type": "heliport", + "name": "Val Verde Regional Medical Center Heliport", + "latitude_deg": "29.37442", + "longitude_deg": "-100.89136", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no", + "keywords": "Air Evac Lifeteam Base 134 Heliport" + }, + { + "id": "343137", + "ident": "US-3689", + "type": "heliport", + "name": "Air Evac 99 Heliport", + "latitude_deg": "31.49293", + "longitude_deg": "-91.3664", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Natchez", + "scheduled_service": "no" + }, + { + "id": "343138", + "ident": "US-3690", + "type": "heliport", + "name": "Air Evac Lifeteam Base 47 Heliport", + "latitude_deg": "29.93424", + "longitude_deg": "-96.87494", + "elevation_ft": "346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "La Grange", + "scheduled_service": "no" + }, + { + "id": "343139", + "ident": "US-3691", + "type": "heliport", + "name": "Air Evac Lifeteam Base 49 Heliport", + "latitude_deg": "30.57898", + "longitude_deg": "-98.28101", + "elevation_ft": "782", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marble Falls", + "scheduled_service": "no" + }, + { + "id": "343140", + "ident": "US-3692", + "type": "closed", + "name": "Pilot Knoll Landing Strip", + "latitude_deg": "37.24327", + "longitude_deg": "-111.49139", + "elevation_ft": "5511", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Big Water", + "scheduled_service": "no" + }, + { + "id": "343141", + "ident": "US-3693", + "type": "small_airport", + "name": "Chadbourne Ranch Airport", + "latitude_deg": "32.0228", + "longitude_deg": "-100.2493", + "elevation_ft": "1974", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bronte", + "scheduled_service": "no" + }, + { + "id": "343142", + "ident": "US-3694", + "type": "small_airport", + "name": "Colt Mesa / Silver Falls Airstrip", + "latitude_deg": "37.73983", + "longitude_deg": "-111.08816", + "elevation_ft": "5778", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Boulder", + "scheduled_service": "no" + }, + { + "id": "343143", + "ident": "US-3695", + "type": "closed", + "name": "Board Ranch Airport", + "latitude_deg": "41.62643", + "longitude_deg": "-113.24882", + "elevation_ft": "4609", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Wendover", + "scheduled_service": "no" + }, + { + "id": "343144", + "ident": "US-3696", + "type": "closed", + "name": "Bush-Leland Airport", + "latitude_deg": "40.72417", + "longitude_deg": "-114.08337", + "elevation_ft": "4380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "West Wendover", + "scheduled_service": "no" + }, + { + "id": "343145", + "ident": "US-3697", + "type": "closed", + "name": "Buffalo Valley Intermediate Field", + "latitude_deg": "40.35044", + "longitude_deg": "-117.34665", + "elevation_ft": "4649", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Winnemucca", + "scheduled_service": "no" + }, + { + "id": "343146", + "ident": "US-3698", + "type": "closed", + "name": "Caliente Flight Strip", + "latitude_deg": "37.59964", + "longitude_deg": "-114.8557", + "elevation_ft": "4863", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Caliente", + "scheduled_service": "no", + "keywords": "Delamar, 0L2" + }, + { + "id": "343147", + "ident": "US-3699", + "type": "closed", + "name": "Delamar Dry Lake Landing Strip", + "latitude_deg": "37.31704", + "longitude_deg": "-114.94825", + "elevation_ft": "4538", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Alamo", + "scheduled_service": "no" + }, + { + "id": "343148", + "ident": "US-3700", + "type": "closed", + "name": "Bonnie Claire Lake Landing Strip", + "latitude_deg": "37.1685", + "longitude_deg": "-117.1609", + "elevation_ft": "4016", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Beatty", + "scheduled_service": "no" + }, + { + "id": "343149", + "ident": "US-3701", + "type": "closed", + "name": "Bonnie Claire Airport", + "latitude_deg": "37.20043", + "longitude_deg": "-117.18601", + "elevation_ft": "4281", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "4281", + "scheduled_service": "no" + }, + { + "id": "343150", + "ident": "US-3702", + "type": "closed", + "name": "Chicken Ranch Airport", + "latitude_deg": "36.06877", + "longitude_deg": "-115.95254", + "elevation_ft": "2595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Pahrump", + "scheduled_service": "no" + }, + { + "id": "343160", + "ident": "US-3703", + "type": "closed", + "name": "Flying C Ranch Airport", + "latitude_deg": "34.99734", + "longitude_deg": "-105.37844", + "elevation_ft": "6234", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Encino", + "scheduled_service": "no" + }, + { + "id": "343161", + "ident": "US-3704", + "type": "small_airport", + "name": "Galvan Ranch Airport", + "latitude_deg": "28.04846", + "longitude_deg": "-99.67192", + "elevation_ft": "691", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Encinal", + "scheduled_service": "no" + }, + { + "id": "343162", + "ident": "US-3705", + "type": "closed", + "name": "Kelvin Landing Strip", + "latitude_deg": "33.10898", + "longitude_deg": "-110.97074", + "elevation_ft": "1892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Kearny", + "scheduled_service": "no" + }, + { + "id": "343167", + "ident": "US-3706", + "type": "small_airport", + "name": "Morse Field", + "latitude_deg": "46.00768", + "longitude_deg": "-68.44212", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Patten", + "scheduled_service": "no", + "local_code": "A001" + }, + { + "id": "343168", + "ident": "US-3707", + "type": "closed", + "name": "Yreka Airport", + "latitude_deg": "41.73332", + "longitude_deg": "-122.63253", + "elevation_ft": "2615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Yreka", + "scheduled_service": "no" + }, + { + "id": "343174", + "ident": "US-3708", + "type": "closed", + "name": "Possum Creek Airport", + "latitude_deg": "39.6295", + "longitude_deg": "-107.3758", + "elevation_ft": "10002", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Glenwood Springs", + "scheduled_service": "no" + }, + { + "id": "343176", + "ident": "US-3709", + "type": "closed", + "name": "Van Vleck Tells Peak Airport", + "latitude_deg": "38.9523", + "longitude_deg": "-120.3002", + "elevation_ft": "6947", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Kyburz", + "scheduled_service": "no", + "keywords": "CA50" + }, + { + "id": "343209", + "ident": "US-3710", + "type": "small_airport", + "name": "Wide Load Airstrip", + "latitude_deg": "39.11422", + "longitude_deg": "-119.11104", + "elevation_ft": "4324", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Yerington", + "scheduled_service": "no" + }, + { + "id": "343233", + "ident": "US-3711", + "type": "closed", + "name": "Love Ranch Airport", + "latitude_deg": "30.91321", + "longitude_deg": "-105.40815", + "elevation_ft": "3710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Hancock", + "scheduled_service": "no" + }, + { + "id": "343234", + "ident": "US-3712", + "type": "closed", + "name": "Owego Airport", + "latitude_deg": "31.02346", + "longitude_deg": "-102.47605", + "elevation_ft": "2439", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Imperial", + "scheduled_service": "no" + }, + { + "id": "343235", + "ident": "US-3713", + "type": "closed", + "name": "Saddleback Ranch Airport", + "latitude_deg": "30.87613", + "longitude_deg": "-103.75188", + "elevation_ft": "3888", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Balmorhea", + "scheduled_service": "no" + }, + { + "id": "343236", + "ident": "US-3714", + "type": "closed", + "name": "Saddleback Ranch Number 2 Airport", + "latitude_deg": "30.89124", + "longitude_deg": "-103.72992", + "elevation_ft": "3642", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Balmorhea", + "scheduled_service": "no" + }, + { + "id": "343237", + "ident": "US-3715", + "type": "heliport", + "name": "Loma Linda University Hospital East Helipad", + "latitude_deg": "34.0495", + "longitude_deg": "-117.26313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Loma Linda", + "scheduled_service": "no" + }, + { + "id": "343238", + "ident": "US-3716", + "type": "heliport", + "name": "Mill Creek Ranger Station Heliport", + "latitude_deg": "34.07909", + "longitude_deg": "-117.04341", + "elevation_ft": "2770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mentone", + "scheduled_service": "no" + }, + { + "id": "343243", + "ident": "US-3717", + "type": "closed", + "name": "Land and Air / Edom Airport", + "latitude_deg": "33.81116", + "longitude_deg": "-116.39023", + "elevation_ft": "217", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Thousand Palms", + "scheduled_service": "no" + }, + { + "id": "343244", + "ident": "US-3718", + "type": "closed", + "name": "El Mirador Hotel Airport", + "latitude_deg": "33.83699", + "longitude_deg": "-116.54622", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palm Springs", + "scheduled_service": "no" + }, + { + "id": "343257", + "ident": "US-3719", + "type": "small_airport", + "name": "Bob Jenkins", + "latitude_deg": "40.43", + "longitude_deg": "-82.7", + "elevation_ft": "1296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "scheduled_service": "no" + }, + { + "id": "343266", + "ident": "US-3720", + "type": "small_airport", + "name": "Defuniak Springs Auxiliary Airfield", + "latitude_deg": "30.70265", + "longitude_deg": "-86.27122", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Defuniak Springs", + "scheduled_service": "no" + }, + { + "id": "343267", + "ident": "US-3721", + "type": "closed", + "name": "Wagner Field", + "latitude_deg": "30.6716", + "longitude_deg": "-86.3523", + "elevation_ft": "228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Niceville", + "scheduled_service": "no" + }, + { + "id": "343268", + "ident": "US-3722", + "type": "closed", + "name": "Baldsiefen Field", + "latitude_deg": "30.53836", + "longitude_deg": "-86.32279", + "elevation_ft": "109", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Niceville", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baldsiefen_Field", + "keywords": "Eglin Air Force Base Auxiliary Field #8" + }, + { + "id": "343269", + "ident": "US-3723", + "type": "small_airport", + "name": "Rock Hill LZ Airport", + "latitude_deg": "30.56995", + "longitude_deg": "-86.12963", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Rock Hill", + "scheduled_service": "no" + }, + { + "id": "343270", + "ident": "US-3724", + "type": "closed", + "name": "Epler Field", + "latitude_deg": "30.53225", + "longitude_deg": "-86.80505", + "elevation_ft": "177", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Walton Beach", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Epler_Field", + "keywords": "Eglin Air Force Base Auxiliary Field #7" + }, + { + "id": "343271", + "ident": "US-3725", + "type": "closed", + "name": "Piccolo Field", + "latitude_deg": "30.58757", + "longitude_deg": "-86.62353", + "elevation_ft": "184", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Valparaiso", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Piccolo_Field", + "keywords": "Eglin Air Force Auxiliary Field #5" + }, + { + "id": "343272", + "ident": "US-3726", + "type": "closed", + "name": "Peel Field", + "latitude_deg": "30.51255", + "longitude_deg": "-86.59187", + "elevation_ft": "107", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Valparaiso", + "scheduled_service": "no" + }, + { + "id": "343274", + "ident": "US-3727", + "type": "closed", + "name": "Fall River Airfield", + "latitude_deg": "43.80311", + "longitude_deg": "-121.57059", + "elevation_ft": "4257", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Bend", + "scheduled_service": "no" + }, + { + "id": "343279", + "ident": "US-3728", + "type": "closed", + "name": "Oxborrow Ranch Landing Field", + "latitude_deg": "37.67097", + "longitude_deg": "-114.45881", + "elevation_ft": "4587", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Caliente", + "scheduled_service": "no" + }, + { + "id": "343280", + "ident": "US-3729", + "type": "closed", + "name": "Chuckwalla Valley State Prison Helipad", + "latitude_deg": "33.56528", + "longitude_deg": "-114.90861", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Blythe", + "scheduled_service": "no" + }, + { + "id": "343281", + "ident": "US-3730", + "type": "small_airport", + "name": "Bell Road Airstrip", + "latitude_deg": "33.6293", + "longitude_deg": "-112.77434", + "elevation_ft": "1414", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Buckeye", + "scheduled_service": "no" + }, + { + "id": "343282", + "ident": "US-3731", + "type": "heliport", + "name": "Mountain Park Health Center Heliport", + "latitude_deg": "33.44765", + "longitude_deg": "-112.36002", + "elevation_ft": "984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Goodyear", + "scheduled_service": "no" + }, + { + "id": "343283", + "ident": "US-3732", + "type": "closed", + "name": "Sport Haven Airport", + "latitude_deg": "42.31345", + "longitude_deg": "-73.98655", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Cairo", + "scheduled_service": "no" + }, + { + "id": "343284", + "ident": "US-3733", + "type": "closed", + "name": "Aardvark Field", + "latitude_deg": "39.03506", + "longitude_deg": "-104.84504", + "elevation_ft": "6708", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Colorado Springs", + "scheduled_service": "no" + }, + { + "id": "343285", + "ident": "US-3734", + "type": "closed", + "name": "Guines Ranch Airport", + "latitude_deg": "26.70739", + "longitude_deg": "-80.83724", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Clewiston", + "scheduled_service": "no" + }, + { + "id": "343287", + "ident": "US-3735", + "type": "closed", + "name": "Haedtler Field", + "latitude_deg": "41.4691", + "longitude_deg": "-87.72536", + "elevation_ft": "751", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago Heights", + "scheduled_service": "no", + "keywords": "Governor's Airpark, Wings Field" + }, + { + "id": "343291", + "ident": "US-3736", + "type": "closed", + "name": "Grasshopper Junction Airfield", + "latitude_deg": "35.4031", + "longitude_deg": "-114.26021", + "elevation_ft": "3566", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Golden Valley", + "scheduled_service": "no" + }, + { + "id": "343293", + "ident": "US-3737", + "type": "closed", + "name": "Mineral Park Airstrip", + "latitude_deg": "35.34256", + "longitude_deg": "-114.18114", + "elevation_ft": "3705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Golden Valley", + "scheduled_service": "no" + }, + { + "id": "343294", + "ident": "US-3738", + "type": "heliport", + "name": "Kingman Regional Medical Center Heliport", + "latitude_deg": "35.22066", + "longitude_deg": "-114.03765", + "elevation_ft": "3432", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Kingman", + "scheduled_service": "no" + }, + { + "id": "343295", + "ident": "US-3739", + "type": "heliport", + "name": "Kingman Regional Medical Center Hualapai Mountain Campus Heliport", + "latitude_deg": "35.21981", + "longitude_deg": "-113.98512", + "elevation_ft": "3501", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Kingman", + "scheduled_service": "no" + }, + { + "id": "343296", + "ident": "US-3740", + "type": "closed", + "name": "Hualapai Field", + "latitude_deg": "35.19767", + "longitude_deg": "-114.03256", + "elevation_ft": "3580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Kingman", + "scheduled_service": "no" + }, + { + "id": "343297", + "ident": "US-3741", + "type": "heliport", + "name": "Oro Valley Hospital Helipad", + "latitude_deg": "32.42925", + "longitude_deg": "-110.94766", + "elevation_ft": "2699", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Oro Valley", + "scheduled_service": "no" + }, + { + "id": "343298", + "ident": "US-3742", + "type": "closed", + "name": "Robles Ranch Landing Strip", + "latitude_deg": "32.0726", + "longitude_deg": "-111.3295", + "elevation_ft": "2539", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "343299", + "ident": "US-3743", + "type": "closed", + "name": "Empire Ranch Airport", + "latitude_deg": "31.79301", + "longitude_deg": "-110.6277", + "elevation_ft": "4553", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Vail", + "scheduled_service": "no" + }, + { + "id": "343301", + "ident": "US-3744", + "type": "small_airport", + "name": "Kehley Ranch Airport", + "latitude_deg": "28.38274", + "longitude_deg": "-98.88951", + "elevation_ft": "472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fowlerton", + "scheduled_service": "no" + }, + { + "id": "343373", + "ident": "US-3745", + "type": "heliport", + "name": "Willow Flat Helipad", + "latitude_deg": "43.86789", + "longitude_deg": "-110.56696", + "elevation_ft": "6834", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Moran", + "scheduled_service": "no" + }, + { + "id": "343374", + "ident": "US-3746", + "type": "heliport", + "name": "Grant Village Helipad", + "latitude_deg": "44.38468", + "longitude_deg": "-110.55059", + "elevation_ft": "7848", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Mammoth", + "scheduled_service": "no" + }, + { + "id": "343375", + "ident": "US-3747", + "type": "heliport", + "name": "Yellowstone Club Heliport", + "latitude_deg": "45.24298", + "longitude_deg": "-111.378132", + "elevation_ft": "7615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Cameron", + "scheduled_service": "no" + }, + { + "id": "343376", + "ident": "US-3748", + "type": "closed", + "name": "Lakefront Lodge Airport", + "latitude_deg": "26.88774", + "longitude_deg": "-99.27566", + "elevation_ft": "338", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Zapata", + "scheduled_service": "no" + }, + { + "id": "343379", + "ident": "US-3749", + "type": "small_airport", + "name": "McAllister Wash Airstrip", + "latitude_deg": "33.06527", + "longitude_deg": "-114.4313", + "elevation_ft": "486", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yuma", + "scheduled_service": "no" + }, + { + "id": "343380", + "ident": "US-3750", + "type": "closed", + "name": "Indian Wash Airstrip", + "latitude_deg": "33.05903", + "longitude_deg": "-114.42778", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yuma", + "scheduled_service": "no" + }, + { + "id": "343381", + "ident": "US-3751", + "type": "small_airport", + "name": "Yuma Wash East Airstrip", + "latitude_deg": "33.16201", + "longitude_deg": "-114.48147", + "elevation_ft": "827", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yuma", + "scheduled_service": "no" + }, + { + "id": "343382", + "ident": "US-3752", + "type": "small_airport", + "name": "Mojave Wash Airstrip", + "latitude_deg": "33.31135", + "longitude_deg": "-114.36561", + "elevation_ft": "1135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yuma", + "scheduled_service": "no" + }, + { + "id": "343384", + "ident": "US-3753", + "type": "small_airport", + "name": "Senisa Ranch Airport", + "latitude_deg": "29.12863", + "longitude_deg": "-99.24882", + "elevation_ft": "694", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Yancey", + "scheduled_service": "no" + }, + { + "id": "343385", + "ident": "US-3754", + "type": "closed", + "name": "Wahweap Airport", + "latitude_deg": "36.98739", + "longitude_deg": "-111.50689", + "elevation_ft": "3980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Page", + "scheduled_service": "no" + }, + { + "id": "343386", + "ident": "US-3755", + "type": "closed", + "name": "Slide Mountain Gliderport", + "latitude_deg": "39.31328", + "longitude_deg": "-119.81246", + "elevation_ft": "5105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "New Washoe City", + "scheduled_service": "no" + }, + { + "id": "343389", + "ident": "US-3756", + "type": "small_airport", + "name": "Rocking Diamond G Ranch Airstrip", + "latitude_deg": "32.85138", + "longitude_deg": "-110.65631", + "elevation_ft": "2502", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Winkelman", + "scheduled_service": "no" + }, + { + "id": "343390", + "ident": "US-3757", + "type": "small_airport", + "name": "El Ranchito Aravaipa Landing Field", + "latitude_deg": "32.83776", + "longitude_deg": "-110.69308", + "elevation_ft": "2192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Dudleyville", + "scheduled_service": "no" + }, + { + "id": "343391", + "ident": "US-3758", + "type": "closed", + "name": "Aravaipa Airstrip", + "latitude_deg": "32.85082", + "longitude_deg": "-110.68386", + "elevation_ft": "2326", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Winkelman", + "scheduled_service": "no" + }, + { + "id": "343395", + "ident": "US-3759", + "type": "small_airport", + "name": "Turnbow Airstrip", + "latitude_deg": "33.01451", + "longitude_deg": "-112.40322", + "elevation_ft": "1483", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mobile", + "scheduled_service": "no" + }, + { + "id": "343396", + "ident": "US-3760", + "type": "small_airport", + "name": "Francisco Grande Gliderport", + "latitude_deg": "32.88374", + "longitude_deg": "-111.84774", + "elevation_ft": "1342", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Casa Grande", + "scheduled_service": "no" + }, + { + "id": "343403", + "ident": "US-3761", + "type": "heliport", + "name": "Skagit Valley Hospital Heliport", + "latitude_deg": "48.418044", + "longitude_deg": "-122.324427", + "elevation_ft": "202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Mt Vernon", + "scheduled_service": "no", + "gps_code": "0WA3", + "local_code": "0WA3" + }, + { + "id": "343413", + "ident": "US-3762", + "type": "heliport", + "name": "UMC Trauma Center Heliport", + "latitude_deg": "36.160894", + "longitude_deg": "-115.168145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no" + }, + { + "id": "343414", + "ident": "US-3763", + "type": "closed", + "name": "Zon Wells Airport", + "latitude_deg": "45.4552", + "longitude_deg": "-122.61913", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Milwaukie", + "scheduled_service": "no" + }, + { + "id": "343415", + "ident": "US-3764", + "type": "closed", + "name": "Swan Island Airport", + "latitude_deg": "45.56286", + "longitude_deg": "-122.71525", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no" + }, + { + "id": "343416", + "ident": "US-3765", + "type": "closed", + "name": "Swan Island Heliport", + "latitude_deg": "45.55699", + "longitude_deg": "-122.70282", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no" + }, + { + "id": "343418", + "ident": "US-3766", + "type": "heliport", + "name": "Television City Heliport", + "latitude_deg": "34.07457", + "longitude_deg": "-118.35883", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "343419", + "ident": "US-3767", + "type": "heliport", + "name": "Los Angeles County Sheriff West Hollywood Station Heliport", + "latitude_deg": "34.08461", + "longitude_deg": "-118.38345", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "West Hollywood", + "scheduled_service": "no", + "local_code": "3CA5" + }, + { + "id": "343420", + "ident": "US-3768", + "type": "heliport", + "name": "1 Hotel West Hollywood West Helipad", + "latitude_deg": "34.09416", + "longitude_deg": "-118.37609", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "West Hollywood", + "scheduled_service": "no" + }, + { + "id": "343421", + "ident": "US-3769", + "type": "heliport", + "name": "1 Hotel West Hollywood East Helipad", + "latitude_deg": "34.094274", + "longitude_deg": "-118.375556", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "West Hollywood", + "scheduled_service": "no" + }, + { + "id": "343422", + "ident": "US-3770", + "type": "heliport", + "name": "Medina Community Hospital Heliport", + "latitude_deg": "29.33565", + "longitude_deg": "-99.13476", + "elevation_ft": "872", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hondo", + "scheduled_service": "no" + }, + { + "id": "343423", + "ident": "US-3771", + "type": "closed", + "name": "Houston Methodist Saint Catherine Hospital Helipad", + "latitude_deg": "29.7764", + "longitude_deg": "-95.71736", + "elevation_ft": "111", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "343424", + "ident": "US-3772", + "type": "heliport", + "name": "Houston Methodist Sugar Land Hospital Helipad", + "latitude_deg": "29.59037", + "longitude_deg": "-95.62929", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sugar Land", + "scheduled_service": "no" + }, + { + "id": "343425", + "ident": "US-3773", + "type": "heliport", + "name": "Christus Southeast Texas Saint Elizabeth Hospital Heliport", + "latitude_deg": "30.08791", + "longitude_deg": "-94.13205", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beaumont", + "scheduled_service": "no" + }, + { + "id": "343426", + "ident": "US-3774", + "type": "heliport", + "name": "Baptist Health Hamburg Heliport", + "latitude_deg": "38.033833", + "longitude_deg": "-84.418583", + "elevation_ft": "988", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Lexington", + "scheduled_service": "no", + "gps_code": "53KY", + "local_code": "53KY" + }, + { + "id": "343427", + "ident": "US-3775", + "type": "heliport", + "name": "Garden Park Medical Center Heliport", + "latitude_deg": "30.44331", + "longitude_deg": "-89.0941", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Gulfport", + "scheduled_service": "no" + }, + { + "id": "343428", + "ident": "US-3776", + "type": "heliport", + "name": "Ocean Springs Hospital Heliport", + "latitude_deg": "30.41484", + "longitude_deg": "-88.77997", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Ocean Springs", + "scheduled_service": "no" + }, + { + "id": "343429", + "ident": "US-3777", + "type": "heliport", + "name": "West Florida Hospital Helipad", + "latitude_deg": "30.51654", + "longitude_deg": "-87.21967", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pensacola", + "scheduled_service": "no" + }, + { + "id": "343431", + "ident": "US-3778", + "type": "closed", + "name": "Jacksonville Airport", + "latitude_deg": "33.78855", + "longitude_deg": "-85.7741", + "elevation_ft": "744", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Jacksonville", + "scheduled_service": "no" + }, + { + "id": "343437", + "ident": "US-3779", + "type": "heliport", + "name": "Owensboro Health Regional Hospital Heliport", + "latitude_deg": "37.780302", + "longitude_deg": "-87.064011", + "elevation_ft": "408", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Owensboro", + "scheduled_service": "no", + "gps_code": "55KY", + "local_code": "55KY" + }, + { + "id": "343439", + "ident": "US-3780", + "type": "heliport", + "name": "Four Corners Regional Health Center Heliport", + "latitude_deg": "36.96262", + "longitude_deg": "-109.34975", + "elevation_ft": "5440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Teec Nos Pos", + "scheduled_service": "no" + }, + { + "id": "343445", + "ident": "US-3781", + "type": "heliport", + "name": "Cottage Grove Community Hospital Heliport", + "latitude_deg": "43.80319", + "longitude_deg": "-123.039386", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Cottage Grove", + "scheduled_service": "no", + "gps_code": "68OR", + "local_code": "68OR" + }, + { + "id": "343447", + "ident": "US-3782", + "type": "small_airport", + "name": "Lovers Lane Airport", + "latitude_deg": "38.645556", + "longitude_deg": "-94.117383", + "elevation_ft": "831", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Garden City", + "scheduled_service": "no", + "gps_code": "70MO", + "local_code": "70MO" + }, + { + "id": "343450", + "ident": "US-3783", + "type": "small_airport", + "name": "Maxwell Aviation Airport", + "latitude_deg": "38.278694", + "longitude_deg": "-98.07805", + "elevation_ft": "1677", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Lyons", + "scheduled_service": "no", + "local_code": "8KS", + "keywords": "87KS" + }, + { + "id": "343452", + "ident": "US-3784", + "type": "heliport", + "name": "Moores Field", + "latitude_deg": "38.9412", + "longitude_deg": "-84.30531", + "elevation_ft": "844", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "California", + "scheduled_service": "no", + "gps_code": "89KY", + "local_code": "89KY" + }, + { + "id": "343458", + "ident": "US-3785", + "type": "small_airport", + "name": "Marmande Airport", + "latitude_deg": "29.467912", + "longitude_deg": "-90.756999", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Theriot", + "scheduled_service": "no", + "gps_code": "LS08", + "local_code": "LS08" + }, + { + "id": "343460", + "ident": "US-3786", + "type": "heliport", + "name": "Exclusive Landing Area", + "latitude_deg": "41.796158", + "longitude_deg": "-86.520628", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Galien Township", + "scheduled_service": "no", + "gps_code": "MI77", + "local_code": "MI77" + }, + { + "id": "343462", + "ident": "US-3787", + "type": "small_airport", + "name": "Flying E Ranch Airport", + "latitude_deg": "34.174143", + "longitude_deg": "-96.224122", + "elevation_ft": "706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Caney", + "scheduled_service": "no", + "gps_code": "OK16", + "local_code": "OK16" + }, + { + "id": "343482", + "ident": "US-3788", + "type": "small_airport", + "name": "Saunders Field", + "latitude_deg": "37.579859", + "longitude_deg": "-77.919089", + "elevation_ft": "321", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Powhatan", + "scheduled_service": "no", + "gps_code": "9VA6", + "local_code": "9VA6" + }, + { + "id": "343584", + "ident": "US-3789", + "type": "closed", + "name": "Mojave Inyo Airport", + "latitude_deg": "35.05317", + "longitude_deg": "-118.16972", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mojave", + "scheduled_service": "no" + }, + { + "id": "343585", + "ident": "US-3790", + "type": "closed", + "name": "Westlake Medical Center Heliport", + "latitude_deg": "34.147162", + "longitude_deg": "-118.82096", + "elevation_ft": "902", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Westlake Village", + "scheduled_service": "no" + }, + { + "id": "343586", + "ident": "US-3791", + "type": "closed", + "name": "Wawona Airport", + "latitude_deg": "37.53131", + "longitude_deg": "-119.64769", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Wawona", + "scheduled_service": "no" + }, + { + "id": "343587", + "ident": "US-3792", + "type": "closed", + "name": "Yosemite Airport", + "latitude_deg": "37.72308", + "longitude_deg": "-119.63577", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Yosemite Village", + "scheduled_service": "no" + }, + { + "id": "343588", + "ident": "US-3793", + "type": "closed", + "name": "Three Rivers Airport (2nd)", + "latitude_deg": "36.454", + "longitude_deg": "-118.9043", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Three Rivers", + "scheduled_service": "no" + }, + { + "id": "343589", + "ident": "US-3794", + "type": "closed", + "name": "Three Rivers Airport (1935)", + "latitude_deg": "36.47526", + "longitude_deg": "-118.92131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Three Rivers", + "scheduled_service": "no" + }, + { + "id": "343654", + "ident": "US-3795", + "type": "closed", + "name": "Saddlebrooke Landing Field", + "latitude_deg": "32.52167", + "longitude_deg": "-110.92484", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "343655", + "ident": "US-3796", + "type": "small_airport", + "name": "Buckelew Farm Landing Field", + "latitude_deg": "32.07799", + "longitude_deg": "-111.3315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "343656", + "ident": "US-3797", + "type": "small_airport", + "name": "Patterson Landing Strip", + "latitude_deg": "32.90991", + "longitude_deg": "-109.86324", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Pima", + "scheduled_service": "no" + }, + { + "id": "343657", + "ident": "US-3798", + "type": "small_airport", + "name": "Palmer Farms Airfield", + "latitude_deg": "32.952", + "longitude_deg": "-109.92353", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Pima", + "scheduled_service": "no" + }, + { + "id": "343683", + "ident": "US-3799", + "type": "closed", + "name": "Plummer Landing Strip", + "latitude_deg": "29.85704", + "longitude_deg": "-94.47481", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Winnie", + "scheduled_service": "no" + }, + { + "id": "343723", + "ident": "US-3800", + "type": "heliport", + "name": "Puunene National Guard Heliport", + "latitude_deg": "20.81854", + "longitude_deg": "-156.46555", + "elevation_ft": "72", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kihei", + "scheduled_service": "no" + }, + { + "id": "343724", + "ident": "US-3801", + "type": "closed", + "name": "Gott Landing Strip", + "latitude_deg": "30.22045", + "longitude_deg": "-92.88688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Welsh", + "scheduled_service": "no" + }, + { + "id": "343746", + "ident": "US-3802", + "type": "closed", + "name": "Sundbeck Ranch Airport", + "latitude_deg": "30.38246", + "longitude_deg": "-97.28446", + "elevation_ft": "539", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Elgin", + "scheduled_service": "no" + }, + { + "id": "343755", + "ident": "US-3803", + "type": "closed", + "name": "Nursery Airfield", + "latitude_deg": "28.96753", + "longitude_deg": "-97.06217", + "elevation_ft": "183", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Victoria", + "scheduled_service": "no" + }, + { + "id": "343756", + "ident": "US-3804", + "type": "small_airport", + "name": "Nogal Canyon Ranch Airport", + "latitude_deg": "33.57352", + "longitude_deg": "-107.25416", + "elevation_ft": "5535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Magdalena", + "scheduled_service": "no" + }, + { + "id": "343761", + "ident": "US-3805", + "type": "closed", + "name": "Rancho El Fresno Airport", + "latitude_deg": "27.86053", + "longitude_deg": "-99.59208", + "elevation_ft": "592", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laredo", + "scheduled_service": "no" + }, + { + "id": "343762", + "ident": "US-3806", + "type": "small_airport", + "name": "Del Alto Ranch Airport", + "latitude_deg": "27.86067", + "longitude_deg": "-99.56233", + "elevation_ft": "674", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laredo", + "scheduled_service": "no" + }, + { + "id": "343763", + "ident": "US-3807", + "type": "closed", + "name": "Wagon Wheel Ranch Airport", + "latitude_deg": "27.76886", + "longitude_deg": "-99.75561", + "elevation_ft": "609", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laredo", + "scheduled_service": "no" + }, + { + "id": "343764", + "ident": "US-3808", + "type": "closed", + "name": "Sunny Cline Airport", + "latitude_deg": "29.30176", + "longitude_deg": "-99.57028", + "elevation_ft": "956", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Knippa", + "scheduled_service": "no" + }, + { + "id": "343765", + "ident": "US-3809", + "type": "small_airport", + "name": "Fish Creek Airport", + "latitude_deg": "43.48836", + "longitude_deg": "-110.87369", + "elevation_ft": "6136", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Wilson", + "scheduled_service": "no" + }, + { + "id": "343766", + "ident": "US-3810", + "type": "closed", + "name": "Wilson Airport", + "latitude_deg": "34.15312", + "longitude_deg": "-97.41892", + "elevation_ft": "946", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Wilson", + "scheduled_service": "no" + }, + { + "id": "343767", + "ident": "US-3811", + "type": "closed", + "name": "Whitehall Intermediate Field", + "latitude_deg": "45.80839", + "longitude_deg": "-112.2043", + "elevation_ft": "4596", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Whitehall", + "scheduled_service": "no" + }, + { + "id": "343768", + "ident": "US-3812", + "type": "small_airport", + "name": "Dietrich Airport", + "latitude_deg": "42.92045", + "longitude_deg": "-114.26322", + "elevation_ft": "4204", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Dietrich", + "scheduled_service": "no" + }, + { + "id": "343769", + "ident": "US-3813", + "type": "heliport", + "name": "Shoshone Medical Center Heliport", + "latitude_deg": "47.547906", + "longitude_deg": "-116.13007", + "elevation_ft": "2318", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Kellogg", + "scheduled_service": "no" + }, + { + "id": "343770", + "ident": "US-3814", + "type": "small_airport", + "name": "Shoshone Landing Area", + "latitude_deg": "42.94342", + "longitude_deg": "-114.38914", + "elevation_ft": "3987", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Shoshone", + "scheduled_service": "no" + }, + { + "id": "343771", + "ident": "US-3815", + "type": "closed", + "name": "Howell Airport", + "latitude_deg": "41.76881", + "longitude_deg": "-112.45479", + "elevation_ft": "4506", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Howell", + "scheduled_service": "no" + }, + { + "id": "343773", + "ident": "US-3816", + "type": "closed", + "name": "Runyon Landing Strip", + "latitude_deg": "42.14881", + "longitude_deg": "-83.57549", + "elevation_ft": "681", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Willis", + "scheduled_service": "no" + }, + { + "id": "343774", + "ident": "US-3817", + "type": "small_airport", + "name": "Brewer Landing Strip", + "latitude_deg": "41.94242", + "longitude_deg": "-83.71501", + "elevation_ft": "673", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Dundee", + "scheduled_service": "no" + }, + { + "id": "343775", + "ident": "US-3818", + "type": "closed", + "name": "Coast Guard Air Station Salem Seaplane Base", + "latitude_deg": "42.52549", + "longitude_deg": "-70.8695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Salem", + "scheduled_service": "no" + }, + { + "id": "343776", + "ident": "US-3819", + "type": "closed", + "name": "Coast Guard Air Station Ten Pound Island Seaplane Base", + "latitude_deg": "42.60907", + "longitude_deg": "-70.66116", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Gloucester", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coast_Guard_Aviation_Station_Ten_Pound_Island" + }, + { + "id": "343777", + "ident": "US-3820", + "type": "closed", + "name": "Dodd Army Airfield", + "latitude_deg": "29.48171", + "longitude_deg": "-98.42591", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no" + }, + { + "id": "343778", + "ident": "US-3821", + "type": "closed", + "name": "Cade Auxiliary Army Airfield", + "latitude_deg": "29.50989", + "longitude_deg": "-98.36189", + "elevation_ft": "798", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no" + }, + { + "id": "343779", + "ident": "US-3822", + "type": "closed", + "name": "Geronimo Field", + "latitude_deg": "29.59247", + "longitude_deg": "-97.99552", + "elevation_ft": "556", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seguin", + "scheduled_service": "no", + "keywords": "TE70" + }, + { + "id": "343780", + "ident": "US-3823", + "type": "small_airport", + "name": "BFS Airport", + "latitude_deg": "34.13113", + "longitude_deg": "-101.42291", + "elevation_ft": "3270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lockney", + "scheduled_service": "no", + "gps_code": "TE70", + "local_code": "TE70", + "home_link": "http://www.airnav.com/airport/TE70" + }, + { + "id": "343781", + "ident": "US-3824", + "type": "closed", + "name": "Northeast Airport", + "latitude_deg": "29.51292", + "longitude_deg": "-98.35544", + "elevation_ft": "796", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no" + }, + { + "id": "343782", + "ident": "US-3825", + "type": "closed", + "name": "Ireland Airport", + "latitude_deg": "29.55595", + "longitude_deg": "-98.01526", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seguin", + "scheduled_service": "no" + }, + { + "id": "343783", + "ident": "US-3826", + "type": "small_airport", + "name": "Dry Lake Landing Strip", + "latitude_deg": "36.46123", + "longitude_deg": "-114.88001", + "elevation_ft": "1969", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Moapa", + "scheduled_service": "no" + }, + { + "id": "343784", + "ident": "US-3827", + "type": "closed", + "name": "San Gabriel Landing Strip", + "latitude_deg": "30.70744", + "longitude_deg": "-97.17688", + "elevation_ft": "496", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Thorndale", + "scheduled_service": "no" + }, + { + "id": "343785", + "ident": "US-3828", + "type": "closed", + "name": "RaMax Farms Airport", + "latitude_deg": "36.5216", + "longitude_deg": "-95.45211", + "elevation_ft": "748", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Chelsea", + "scheduled_service": "no" + }, + { + "id": "343786", + "ident": "US-3829", + "type": "closed", + "name": "Carmel Hills Airport", + "latitude_deg": "28.07382", + "longitude_deg": "-97.9137", + "elevation_ft": "151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sandia", + "scheduled_service": "no" + }, + { + "id": "343787", + "ident": "US-3830", + "type": "closed", + "name": "House Landing Strip", + "latitude_deg": "28.04006", + "longitude_deg": "-97.93295", + "elevation_ft": "193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sandia", + "scheduled_service": "no" + }, + { + "id": "343788", + "ident": "US-3831", + "type": "small_airport", + "name": "Buell Airport", + "latitude_deg": "39.36211", + "longitude_deg": "-91.60818", + "elevation_ft": "749", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Perry", + "scheduled_service": "no" + }, + { + "id": "343789", + "ident": "US-3832", + "type": "closed", + "name": "Laketown Airport", + "latitude_deg": "41.84597", + "longitude_deg": "-111.31019", + "elevation_ft": "5935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Laketown", + "scheduled_service": "no" + }, + { + "id": "343790", + "ident": "US-3833", + "type": "closed", + "name": "Rich Field", + "latitude_deg": "31.54304", + "longitude_deg": "-97.18765", + "elevation_ft": "602", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no" + }, + { + "id": "343791", + "ident": "US-3834", + "type": "heliport", + "name": "Prairie Chapel Ranch / George W Bush Presidential Helipad", + "latitude_deg": "31.58022", + "longitude_deg": "-97.53941", + "elevation_ft": "857", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crawford", + "scheduled_service": "no" + }, + { + "id": "343792", + "ident": "US-3835", + "type": "closed", + "name": "Rancho del Cielo / Ronald Reagan Presidential Helipad", + "latitude_deg": "34.53054", + "longitude_deg": "-120.09272", + "elevation_ft": "2597", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Goleta", + "scheduled_service": "no" + }, + { + "id": "343793", + "ident": "US-3836", + "type": "closed", + "name": "Walkers Point / George H W Bush Presidential Helipad", + "latitude_deg": "43.34343", + "longitude_deg": "-70.4599", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Kennebunkport", + "scheduled_service": "no" + }, + { + "id": "343794", + "ident": "US-3837", + "type": "closed", + "name": "Richard Nixon Presidential Helipad", + "latitude_deg": "25.69175", + "longitude_deg": "-80.17505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Key Biscayne", + "scheduled_service": "no" + }, + { + "id": "343798", + "ident": "US-3838", + "type": "closed", + "name": "Kelp Bay Airport", + "latitude_deg": "57.54978", + "longitude_deg": "-134.867263", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "scheduled_service": "no", + "keywords": "KLP" + }, + { + "id": "343806", + "ident": "US-3839", + "type": "closed", + "name": "Flatonia Airport", + "latitude_deg": "29.70382", + "longitude_deg": "-97.09476", + "elevation_ft": "449", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Flatonia", + "scheduled_service": "no" + }, + { + "id": "343807", + "ident": "US-3840", + "type": "closed", + "name": "Vacaville Gliderport", + "latitude_deg": "38.32528", + "longitude_deg": "-122.0202", + "elevation_ft": "224", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Vacaville", + "scheduled_service": "no" + }, + { + "id": "343808", + "ident": "US-3841", + "type": "closed", + "name": "Avon Park South Target Airstrip", + "latitude_deg": "27.58329", + "longitude_deg": "-81.23434", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Avon Park", + "scheduled_service": "no" + }, + { + "id": "343809", + "ident": "US-3842", + "type": "closed", + "name": "Avon Park North Target Airstrip", + "latitude_deg": "27.70849", + "longitude_deg": "-81.29545", + "elevation_ft": "128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Avon Park", + "scheduled_service": "no" + }, + { + "id": "343810", + "ident": "US-3843", + "type": "closed", + "name": "Pile Point Airport", + "latitude_deg": "48.48699", + "longitude_deg": "-123.09071", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Friday Harbor", + "scheduled_service": "no" + }, + { + "id": "343811", + "ident": "US-3844", + "type": "closed", + "name": "Saltspring Airport", + "latitude_deg": "48.53649", + "longitude_deg": "-123.04408", + "elevation_ft": "161", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Friday Harbor", + "scheduled_service": "no" + }, + { + "id": "343812", + "ident": "US-3845", + "type": "small_airport", + "name": "Shaw Island AIrport", + "latitude_deg": "48.57613", + "longitude_deg": "-122.97616", + "elevation_ft": "316", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Shaw Island", + "scheduled_service": "no" + }, + { + "id": "343813", + "ident": "US-3846", + "type": "closed", + "name": "Garibaldi Brothers Airport", + "latitude_deg": "38.17305", + "longitude_deg": "-122.1264", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fairfield", + "scheduled_service": "no" + }, + { + "id": "343814", + "ident": "US-3847", + "type": "closed", + "name": "Vaca-Dixon Airport", + "latitude_deg": "38.40905", + "longitude_deg": "-121.90418", + "elevation_ft": "81", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Vacaville", + "scheduled_service": "no" + }, + { + "id": "343815", + "ident": "US-3848", + "type": "closed", + "name": "Woodburn Airport", + "latitude_deg": "45.15208", + "longitude_deg": "-122.90852", + "elevation_ft": "184", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Woodburn", + "scheduled_service": "no" + }, + { + "id": "343816", + "ident": "US-3849", + "type": "closed", + "name": "T-Bird Airport", + "latitude_deg": "44.05288", + "longitude_deg": "-123.18298", + "elevation_ft": "387", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Eugene", + "scheduled_service": "no" + }, + { + "id": "343817", + "ident": "US-3850", + "type": "small_airport", + "name": "Goodhart Canyon Airport", + "latitude_deg": "33.66015", + "longitude_deg": "-116.97385", + "elevation_ft": "1760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hemet", + "scheduled_service": "no" + }, + { + "id": "343820", + "ident": "US-3851", + "type": "small_airport", + "name": "Interstate Ag Airport", + "latitude_deg": "35.43212", + "longitude_deg": "-119.48608", + "elevation_ft": "269", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Buttonwillow", + "scheduled_service": "no", + "keywords": "KBUO, Buttonwillow" + }, + { + "id": "343821", + "ident": "US-3852", + "type": "small_airport", + "name": "Buttonwillow Land & Cattle Airport", + "latitude_deg": "35.45123", + "longitude_deg": "-119.43662", + "elevation_ft": "272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Buttonwillow", + "scheduled_service": "no" + }, + { + "id": "343822", + "ident": "US-3853", + "type": "closed", + "name": "Lappe Airport", + "latitude_deg": "30.70857", + "longitude_deg": "-98.41167", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kingsland", + "scheduled_service": "no" + }, + { + "id": "343823", + "ident": "US-3854", + "type": "small_airport", + "name": "Bethesda Airport", + "latitude_deg": "35.91013", + "longitude_deg": "-96.042259", + "elevation_ft": "723", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Mounds", + "scheduled_service": "no" + }, + { + "id": "343824", + "ident": "US-3855", + "type": "closed", + "name": "Beaverkill Airport", + "latitude_deg": "41.96627", + "longitude_deg": "-74.89783", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Roscoe", + "scheduled_service": "no" + }, + { + "id": "343825", + "ident": "US-3856", + "type": "closed", + "name": "Spring Brook Airport", + "latitude_deg": "41.97014", + "longitude_deg": "-74.89694", + "elevation_ft": "1379", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Roscoe", + "scheduled_service": "no" + }, + { + "id": "343826", + "ident": "US-3857", + "type": "small_airport", + "name": "Black Pond Airfield", + "latitude_deg": "41.50696", + "longitude_deg": "-73.76138", + "elevation_ft": "716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Carmel Hamlet", + "scheduled_service": "no", + "keywords": "KOAU, Lake Carmel" + }, + { + "id": "343827", + "ident": "US-3858", + "type": "closed", + "name": "Malabar Naval Outlying Landing Field", + "latitude_deg": "28.02123", + "longitude_deg": "-80.67993", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Palm Bay", + "scheduled_service": "no" + }, + { + "id": "343828", + "ident": "US-3859", + "type": "small_airport", + "name": "Stumberg Ranch Airport", + "latitude_deg": "28.39036", + "longitude_deg": "-99.64245", + "elevation_ft": "593", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Catarina", + "scheduled_service": "no" + }, + { + "id": "343829", + "ident": "US-3860", + "type": "small_airport", + "name": "Griffin Ranch Airport", + "latitude_deg": "28.67352", + "longitude_deg": "-100.23035", + "elevation_ft": "784", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eagle Pass", + "scheduled_service": "no" + }, + { + "id": "343830", + "ident": "US-3861", + "type": "closed", + "name": "Taylor Airport", + "latitude_deg": "39.94231", + "longitude_deg": "-91.51337", + "elevation_ft": "491", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Taylor", + "scheduled_service": "no" + }, + { + "id": "343831", + "ident": "US-3862", + "type": "closed", + "name": "Dunsford Airport", + "latitude_deg": "39.88005", + "longitude_deg": "-91.49703", + "elevation_ft": "471", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Taylor", + "scheduled_service": "no" + }, + { + "id": "343832", + "ident": "US-3863", + "type": "closed", + "name": "Schnelle Airport", + "latitude_deg": "40.09979", + "longitude_deg": "-91.40018", + "elevation_ft": "487", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Ursa", + "scheduled_service": "no" + }, + { + "id": "343833", + "ident": "US-3864", + "type": "closed", + "name": "Windy Hill Airport", + "latitude_deg": "40.05527", + "longitude_deg": "-91.50383", + "elevation_ft": "552", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "La Grange", + "scheduled_service": "no" + }, + { + "id": "343834", + "ident": "US-3865", + "type": "closed", + "name": "Sunland Airport", + "latitude_deg": "33.38842", + "longitude_deg": "-112.76167", + "elevation_ft": "955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Buckeye", + "scheduled_service": "no" + }, + { + "id": "343835", + "ident": "US-3866", + "type": "small_airport", + "name": "Vicksburg Junction Airstrip", + "latitude_deg": "33.72129", + "longitude_deg": "-113.7624", + "elevation_ft": "1289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Vicksburg", + "scheduled_service": "no", + "keywords": "King of Arizona" + }, + { + "id": "343836", + "ident": "US-3867", + "type": "heliport", + "name": "San Carlos Apache Healthcare Heliport", + "latitude_deg": "33.29664", + "longitude_deg": "-110.4174", + "elevation_ft": "2759", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peridot", + "scheduled_service": "no" + }, + { + "id": "343837", + "ident": "US-3868", + "type": "small_airport", + "name": "Date Creek Ranch Airport", + "latitude_deg": "34.21223", + "longitude_deg": "-113.0633", + "elevation_ft": "2800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Congress", + "scheduled_service": "no" + }, + { + "id": "343838", + "ident": "US-3869", + "type": "small_airport", + "name": "Santa Maria Ranch Airport", + "latitude_deg": "34.37376", + "longitude_deg": "-113.18861", + "elevation_ft": "1804", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bagdad", + "scheduled_service": "no" + }, + { + "id": "343839", + "ident": "US-3870", + "type": "small_airport", + "name": "R/A Ranch Airfield", + "latitude_deg": "34.28625", + "longitude_deg": "-112.93863", + "elevation_ft": "3260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Congress", + "scheduled_service": "no" + }, + { + "id": "343840", + "ident": "US-3871", + "type": "small_airport", + "name": "Cane Springs Ranch Airstrip", + "latitude_deg": "34.92459", + "longitude_deg": "-113.65246", + "elevation_ft": "2820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Kingman", + "scheduled_service": "no" + }, + { + "id": "343841", + "ident": "US-3872", + "type": "small_airport", + "name": "Bug Heaven Airfield", + "latitude_deg": "33.43811", + "longitude_deg": "-112.797", + "elevation_ft": "1043", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "343842", + "ident": "US-3873", + "type": "heliport", + "name": "Range Two Heliport", + "latitude_deg": "32.67773", + "longitude_deg": "-112.90309", + "elevation_ft": "1004", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gila Bend", + "scheduled_service": "no" + }, + { + "id": "343848", + "ident": "US-3874", + "type": "closed", + "name": "Grove Airport", + "latitude_deg": "25.54609", + "longitude_deg": "-80.4985", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Homestead", + "scheduled_service": "no" + }, + { + "id": "343849", + "ident": "US-3875", + "type": "closed", + "name": "River Mountain Ranch Airport", + "latitude_deg": "29.9119", + "longitude_deg": "-98.59257", + "elevation_ft": "1178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Boerne", + "scheduled_service": "no" + }, + { + "id": "343850", + "ident": "US-3876", + "type": "small_airport", + "name": "Buckelew Creek Airport", + "latitude_deg": "29.8642", + "longitude_deg": "-99.47915", + "elevation_ft": "2114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Medina", + "scheduled_service": "no" + }, + { + "id": "343851", + "ident": "US-3877", + "type": "small_airport", + "name": "Greenwood Valley Ranch Airport", + "latitude_deg": "29.99297", + "longitude_deg": "-99.90745", + "elevation_ft": "2054", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rocksprings", + "scheduled_service": "no" + }, + { + "id": "343852", + "ident": "US-3878", + "type": "heliport", + "name": "Christus Saint Michael Atlanta Hospital Heliport", + "latitude_deg": "33.10495", + "longitude_deg": "-94.16302", + "elevation_ft": "317", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Atlanta", + "scheduled_service": "no" + }, + { + "id": "343853", + "ident": "US-3879", + "type": "heliport", + "name": "Longview Regional Medical Center Heliport", + "latitude_deg": "32.53357", + "longitude_deg": "-94.72946", + "elevation_ft": "361", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Longview", + "scheduled_service": "no", + "local_code": "6TX3" + }, + { + "id": "343855", + "ident": "US-3880", + "type": "small_airport", + "name": "Pat Miller Hill Airport", + "latitude_deg": "32.96548", + "longitude_deg": "-94.75601", + "elevation_ft": "333", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lone Star", + "scheduled_service": "no" + }, + { + "id": "343856", + "ident": "US-3881", + "type": "closed", + "name": "Port Aransas Airport (1948)", + "latitude_deg": "27.84973", + "longitude_deg": "-97.05022", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port Aransas", + "scheduled_service": "no" + }, + { + "id": "343857", + "ident": "US-3882", + "type": "closed", + "name": "Premont Airport", + "latitude_deg": "27.36444", + "longitude_deg": "-98.11008", + "elevation_ft": "151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Premont", + "scheduled_service": "no" + }, + { + "id": "343862", + "ident": "US-3883", + "type": "heliport", + "name": "UCHealth Longs Peak Hospital Heliport", + "latitude_deg": "40.16306", + "longitude_deg": "-105.05615", + "elevation_ft": "4977", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Longmont", + "scheduled_service": "no" + }, + { + "id": "343863", + "ident": "US-3884", + "type": "heliport", + "name": "Quebec 01 Missile Alert Facility Helipad", + "latitude_deg": "41.54252", + "longitude_deg": "-104.9015", + "elevation_ft": "5945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Cheyenne", + "scheduled_service": "no" + }, + { + "id": "343864", + "ident": "US-3885", + "type": "closed", + "name": "Richmond County Airport", + "latitude_deg": "40.59021", + "longitude_deg": "-74.19689", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Staten Island", + "scheduled_service": "no" + }, + { + "id": "343872", + "ident": "US-3886", + "type": "small_airport", + "name": "Fendley Airport", + "latitude_deg": "29.68828", + "longitude_deg": "-95.9413", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fulshear", + "scheduled_service": "no" + }, + { + "id": "343873", + "ident": "US-3887", + "type": "closed", + "name": "Greer Airfield", + "latitude_deg": "30.68334", + "longitude_deg": "-101.83062", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sheffield", + "scheduled_service": "no" + }, + { + "id": "343874", + "ident": "US-3888", + "type": "small_airport", + "name": "Sheffield East Airport", + "latitude_deg": "30.69034", + "longitude_deg": "-101.803527", + "elevation_ft": "2221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sheffield", + "scheduled_service": "no", + "keywords": "Squaw Peak" + }, + { + "id": "343877", + "ident": "US-3889", + "type": "closed", + "name": "Murray-Air Kapolei Airport", + "latitude_deg": "21.32888", + "longitude_deg": "-158.06051", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kapolei", + "scheduled_service": "no" + }, + { + "id": "343882", + "ident": "US-3890", + "type": "closed", + "name": "Marine Corps Air Station Ewa", + "latitude_deg": "21.32539", + "longitude_deg": "-158.04518", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Ewa Beach", + "scheduled_service": "no" + }, + { + "id": "343883", + "ident": "US-3891", + "type": "closed", + "name": "Waipi'o Peninsula Naval Reservation Airfield", + "latitude_deg": "21.36043", + "longitude_deg": "-157.98687", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Waipahu", + "scheduled_service": "no" + }, + { + "id": "343886", + "ident": "US-3892", + "type": "heliport", + "name": "Oklahoma Department of Public Safety Helipad", + "latitude_deg": "35.50537", + "longitude_deg": "-97.47559", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no" + }, + { + "id": "343887", + "ident": "US-3893", + "type": "heliport", + "name": "OU Children's Hospital Heliport", + "latitude_deg": "35.48189", + "longitude_deg": "-97.49782", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no" + }, + { + "id": "343888", + "ident": "US-3894", + "type": "closed", + "name": "Cochise Stronghold North Landing Strip", + "latitude_deg": "32.08295", + "longitude_deg": "-109.92693", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Cochise", + "scheduled_service": "no" + }, + { + "id": "343890", + "ident": "US-3895", + "type": "small_airport", + "name": "Norton Airport", + "latitude_deg": "32.2839", + "longitude_deg": "-109.7969", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Willcox", + "scheduled_service": "no" + }, + { + "id": "343891", + "ident": "US-3896", + "type": "small_airport", + "name": "Wren Field", + "latitude_deg": "31.56684", + "longitude_deg": "-110.39005", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sierra Vista", + "scheduled_service": "no" + }, + { + "id": "343908", + "ident": "US-3897", + "type": "closed", + "name": "Killam Ranch Airport", + "latitude_deg": "27.53704", + "longitude_deg": "-99.41133", + "elevation_ft": "493", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laredo", + "scheduled_service": "no" + }, + { + "id": "343937", + "ident": "US-3898", + "type": "closed", + "name": "Puerto Cielo Airport", + "latitude_deg": "31.38149", + "longitude_deg": "-109.61592", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Douglas", + "scheduled_service": "no", + "keywords": "KPIC" + }, + { + "id": "343968", + "ident": "US-3899", + "type": "small_airport", + "name": "Force Ranch Airport", + "latitude_deg": "39.50794", + "longitude_deg": "-107.36984", + "elevation_ft": "8208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Glenwood Springs", + "scheduled_service": "no" + }, + { + "id": "343969", + "ident": "US-3900", + "type": "closed", + "name": "Alamo Mission Airport", + "latitude_deg": "34.42681", + "longitude_deg": "-107.5138", + "elevation_ft": "6233", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Alamo", + "scheduled_service": "no" + }, + { + "id": "343975", + "ident": "US-3901", + "type": "closed", + "name": "Tankersley Residence Heliport", + "latitude_deg": "32.25656", + "longitude_deg": "-110.81547", + "elevation_ft": "2509", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no", + "keywords": "Bear Canyon Heliport" + }, + { + "id": "343982", + "ident": "US-3902", + "type": "closed", + "name": "Gruy Airport", + "latitude_deg": "27.32972", + "longitude_deg": "-98.68437", + "elevation_ft": "604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hebbronville", + "scheduled_service": "no" + }, + { + "id": "343983", + "ident": "US-3903", + "type": "closed", + "name": "Camino de Fierro Airport", + "latitude_deg": "27.32774", + "longitude_deg": "-98.7193", + "elevation_ft": "617", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hebbronville", + "scheduled_service": "no" + }, + { + "id": "343985", + "ident": "US-3904", + "type": "heliport", + "name": "Sutter Medical Center Heliport", + "latitude_deg": "38.5705", + "longitude_deg": "-121.46965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sacramento", + "scheduled_service": "no" + }, + { + "id": "343992", + "ident": "US-3905", + "type": "heliport", + "name": "University Hospital and Medical Center Heliport", + "latitude_deg": "26.21206", + "longitude_deg": "-80.25567", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tamarac", + "scheduled_service": "no" + }, + { + "id": "343993", + "ident": "US-3906", + "type": "heliport", + "name": "Le Lac Heliport", + "latitude_deg": "26.41188", + "longitude_deg": "-80.13757", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Boca Raton", + "scheduled_service": "no" + }, + { + "id": "344002", + "ident": "US-3907", + "type": "closed", + "name": "Wheeler Airport", + "latitude_deg": "33.43268", + "longitude_deg": "-110.72355", + "elevation_ft": "3920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Globe", + "scheduled_service": "no", + "keywords": "KGLO, Stevens, Williams" + }, + { + "id": "344003", + "ident": "US-3908", + "type": "heliport", + "name": "San Carlos Heliport", + "latitude_deg": "33.3706", + "longitude_deg": "-110.45668", + "elevation_ft": "2844", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "San Carlos", + "scheduled_service": "no" + }, + { + "id": "344078", + "ident": "US-3909", + "type": "small_airport", + "name": "Diamond Bar Ranch Airport", + "latitude_deg": "33.08168", + "longitude_deg": "-110.02863", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Fort Thomas", + "scheduled_service": "no" + }, + { + "id": "344079", + "ident": "US-3910", + "type": "heliport", + "name": "Deer Canyon Helipad", + "latitude_deg": "34.17145", + "longitude_deg": "-117.57604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rancho Cucamonga", + "scheduled_service": "no" + }, + { + "id": "344080", + "ident": "US-3911", + "type": "heliport", + "name": "William Beaumont Army Medical Center Heliport", + "latitude_deg": "31.81929", + "longitude_deg": "-106.46094", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Paso", + "scheduled_service": "no" + }, + { + "id": "344081", + "ident": "US-3912", + "type": "heliport", + "name": "Children's Hospital Minneapolis Heliport", + "latitude_deg": "44.956812", + "longitude_deg": "-93.262006", + "elevation_ft": "998", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Minneapolis", + "scheduled_service": "no", + "local_code": "25MY" + }, + { + "id": "344082", + "ident": "US-3913", + "type": "heliport", + "name": "Ann & Robert H Lurie Children's Hospital Heliport", + "latitude_deg": "41.89654", + "longitude_deg": "-87.62168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "no" + }, + { + "id": "344083", + "ident": "US-3914", + "type": "small_airport", + "name": "Whisky Branch Airport", + "latitude_deg": "30.35019", + "longitude_deg": "-95.11502", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cleveland", + "scheduled_service": "no" + }, + { + "id": "344084", + "ident": "US-3915", + "type": "small_airport", + "name": "Freedom Field Ultralight Park", + "latitude_deg": "38.75359", + "longitude_deg": "-121.46282", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Elverta", + "scheduled_service": "no" + }, + { + "id": "344085", + "ident": "US-3916", + "type": "heliport", + "name": "Sandia Helitack Base", + "latitude_deg": "35.07095", + "longitude_deg": "-106.38016", + "elevation_ft": "6494", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Tijeras", + "scheduled_service": "no" + }, + { + "id": "344086", + "ident": "US-3917", + "type": "seaplane_base", + "name": "Scappoose Bay Seaplane Base", + "latitude_deg": "45.82773", + "longitude_deg": "-122.83689", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Warren", + "scheduled_service": "no" + }, + { + "id": "344089", + "ident": "US-3918", + "type": "heliport", + "name": "Jackson South Medical Center Heliport", + "latitude_deg": "25.62993", + "longitude_deg": "-80.3442", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "local_code": "FL91" + }, + { + "id": "344090", + "ident": "US-3919", + "type": "heliport", + "name": "Palms West Hospital Heliport", + "latitude_deg": "26.68466", + "longitude_deg": "-80.25155", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Loxahatchee", + "scheduled_service": "no" + }, + { + "id": "344091", + "ident": "US-3920", + "type": "heliport", + "name": "Florida Hospital Apopka Heliport", + "latitude_deg": "28.68147", + "longitude_deg": "-81.50746", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Apopka", + "scheduled_service": "no" + }, + { + "id": "344092", + "ident": "US-3921", + "type": "heliport", + "name": "Bravera Health Spring Hill Heliport", + "latitude_deg": "28.4378", + "longitude_deg": "-82.53896", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Spring Hill", + "scheduled_service": "no", + "local_code": "3FL6", + "keywords": "Bayfront" + }, + { + "id": "344093", + "ident": "US-3922", + "type": "closed", + "name": "Broome Field", + "latitude_deg": "31.32283", + "longitude_deg": "-100.42372", + "elevation_ft": "1985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Angelo", + "scheduled_service": "no" + }, + { + "id": "344094", + "ident": "US-3923", + "type": "closed", + "name": "Hine Airport", + "latitude_deg": "33.04306", + "longitude_deg": "-112.01934", + "elevation_ft": "1194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Maricopa", + "scheduled_service": "no" + }, + { + "id": "344095", + "ident": "US-3924", + "type": "closed", + "name": "Beltsville Airport", + "latitude_deg": "39.02728", + "longitude_deg": "-76.82113", + "elevation_ft": "159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Beltsville", + "scheduled_service": "no" + }, + { + "id": "344121", + "ident": "US-3925", + "type": "small_airport", + "name": "Camatta Ranch Airstrip", + "latitude_deg": "35.47585", + "longitude_deg": "-120.30864", + "elevation_ft": "1358", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Margarita", + "scheduled_service": "no", + "gps_code": "74CN", + "local_code": "74CN" + }, + { + "id": "344123", + "ident": "US-3926", + "type": "closed", + "name": "Paicines Airport", + "latitude_deg": "36.71273", + "longitude_deg": "-121.24987", + "elevation_ft": "724", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Paicines", + "scheduled_service": "no" + }, + { + "id": "344124", + "ident": "US-3927", + "type": "closed", + "name": "Panoche Pass Airport", + "latitude_deg": "36.63649", + "longitude_deg": "-121.01035", + "elevation_ft": "2125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Paicines", + "scheduled_service": "no" + }, + { + "id": "344125", + "ident": "US-3928", + "type": "closed", + "name": "Panoche Gliderport", + "latitude_deg": "36.6102", + "longitude_deg": "-120.88171", + "elevation_ft": "1342", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Paicines", + "scheduled_service": "no", + "keywords": "Panoche Inn" + }, + { + "id": "344126", + "ident": "US-3929", + "type": "closed", + "name": "Cooper's Airport", + "latitude_deg": "35.17204", + "longitude_deg": "-119.5042", + "elevation_ft": "1119", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fellows", + "scheduled_service": "no" + }, + { + "id": "344127", + "ident": "US-3930", + "type": "small_airport", + "name": "Fellows Taft Airport", + "latitude_deg": "35.21078", + "longitude_deg": "-119.42475", + "elevation_ft": "489", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Taft", + "scheduled_service": "no" + }, + { + "id": "344128", + "ident": "US-3931", + "type": "small_airport", + "name": "Buck Brown Airport", + "latitude_deg": "37.022", + "longitude_deg": "-112.38511", + "elevation_ft": "5096", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Kanab", + "scheduled_service": "no" + }, + { + "id": "344129", + "ident": "US-3932", + "type": "closed", + "name": "Harrisburg Junction Airport", + "latitude_deg": "37.15592", + "longitude_deg": "-113.41936", + "elevation_ft": "2883", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hurricane", + "scheduled_service": "no" + }, + { + "id": "344130", + "ident": "US-3933", + "type": "closed", + "name": "Holbrook Landing Field", + "latitude_deg": "35.03669", + "longitude_deg": "-104.40357", + "elevation_ft": "4822", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Cuervo", + "scheduled_service": "no" + }, + { + "id": "344131", + "ident": "US-3934", + "type": "closed", + "name": "Taiban Field", + "latitude_deg": "34.58845", + "longitude_deg": "-104.00768", + "elevation_ft": "4852", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "House", + "scheduled_service": "no", + "keywords": "Fort Sumner Auxiliary Airfield Number 5" + }, + { + "id": "344149", + "ident": "US-3935", + "type": "heliport", + "name": "Guadalupe County Hospital Heliport", + "latitude_deg": "34.93109", + "longitude_deg": "-104.69304", + "elevation_ft": "4615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Santa Rosa", + "scheduled_service": "no" + }, + { + "id": "344150", + "ident": "US-3936", + "type": "heliport", + "name": "Roosevelt General Hospital Heliport", + "latitude_deg": "34.16878", + "longitude_deg": "-103.36148", + "elevation_ft": "4012", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Portales", + "scheduled_service": "no" + }, + { + "id": "344151", + "ident": "US-3937", + "type": "small_airport", + "name": "White Castle Airport", + "latitude_deg": "30.16844", + "longitude_deg": "-91.12993", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "White Castle", + "scheduled_service": "no" + }, + { + "id": "344154", + "ident": "US-3938", + "type": "small_airport", + "name": "Grimes Airport", + "latitude_deg": "34.80863", + "longitude_deg": "-118.22616", + "elevation_ft": "2371", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rosamond", + "scheduled_service": "no" + }, + { + "id": "344155", + "ident": "US-3939", + "type": "small_airport", + "name": "Augusta Road Airfield", + "latitude_deg": "34.84013", + "longitude_deg": "-117.46608", + "elevation_ft": "2734", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Helendale", + "scheduled_service": "no" + }, + { + "id": "344160", + "ident": "US-3940", + "type": "closed", + "name": "Earlimart Duster Strip", + "latitude_deg": "35.90938", + "longitude_deg": "-119.25476", + "elevation_ft": "289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Earlimart", + "scheduled_service": "no" + }, + { + "id": "344161", + "ident": "US-3941", + "type": "closed", + "name": "Skylife Airport", + "latitude_deg": "45.53876", + "longitude_deg": "-122.51748", + "elevation_ft": "248", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no" + }, + { + "id": "344162", + "ident": "US-3942", + "type": "closed", + "name": "Cards Air Park", + "latitude_deg": "44.93173", + "longitude_deg": "-123.31554", + "elevation_ft": "377", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Dallas", + "scheduled_service": "no" + }, + { + "id": "344163", + "ident": "US-3943", + "type": "closed", + "name": "Trohs Skypark", + "latitude_deg": "45.51197", + "longitude_deg": "-122.50286", + "elevation_ft": "246", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no" + }, + { + "id": "344164", + "ident": "US-3944", + "type": "closed", + "name": "Bernard Airport", + "latitude_deg": "45.49846", + "longitude_deg": "-122.80936", + "elevation_ft": "224", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Beaverton", + "scheduled_service": "no" + }, + { + "id": "344171", + "ident": "US-3945", + "type": "heliport", + "name": "Saint Francis Medical Center Heliport", + "latitude_deg": "38.93942", + "longitude_deg": "-104.71818", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Colorado Springs", + "scheduled_service": "no" + }, + { + "id": "344172", + "ident": "US-3946", + "type": "closed", + "name": "Wardwell Field", + "latitude_deg": "42.912666", + "longitude_deg": "-106.343507", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Bar Nunn", + "scheduled_service": "no" + }, + { + "id": "344173", + "ident": "US-3947", + "type": "closed", + "name": "Goodyear Blimp Field", + "latitude_deg": "30.06083", + "longitude_deg": "-95.4361", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Spring", + "scheduled_service": "no" + }, + { + "id": "344174", + "ident": "US-3948", + "type": "heliport", + "name": "Methodist Stone Oak Hospital Heliport", + "latitude_deg": "29.61753", + "longitude_deg": "-98.47514", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no" + }, + { + "id": "344175", + "ident": "US-3949", + "type": "heliport", + "name": "Harbor Hospital Heliport", + "latitude_deg": "30.10072", + "longitude_deg": "-93.768", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Orange", + "scheduled_service": "no" + }, + { + "id": "344176", + "ident": "US-3950", + "type": "heliport", + "name": "Woman's Hospital Heliport", + "latitude_deg": "30.38483", + "longitude_deg": "-91.03914", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no" + }, + { + "id": "344177", + "ident": "US-3951", + "type": "closed", + "name": "National Guard Airport", + "latitude_deg": "34.15059", + "longitude_deg": "-118.28229", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Griffith_Park#Griffith_Park_Aerodrome", + "keywords": "Griffith Park Aerodrome" + }, + { + "id": "344178", + "ident": "US-3952", + "type": "closed", + "name": "Johannesburg Airport", + "latitude_deg": "35.36996", + "longitude_deg": "-117.62603", + "elevation_ft": "3551", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Johannesburg", + "scheduled_service": "no" + }, + { + "id": "344179", + "ident": "US-3953", + "type": "closed", + "name": "Coburn Airport", + "latitude_deg": "36.28677", + "longitude_deg": "-121.14599", + "elevation_ft": "404", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "King City", + "scheduled_service": "no" + }, + { + "id": "344180", + "ident": "US-3954", + "type": "heliport", + "name": "Palomar Medical Center Downtown Heliport", + "latitude_deg": "33.124541", + "longitude_deg": "-117.075609", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Escondido", + "scheduled_service": "no", + "local_code": "CL48" + }, + { + "id": "344181", + "ident": "US-3955", + "type": "heliport", + "name": "Springhill Medical Center Heliport", + "latitude_deg": "30.68369", + "longitude_deg": "-88.13098", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Mobile", + "scheduled_service": "no" + }, + { + "id": "344182", + "ident": "US-3956", + "type": "heliport", + "name": "USA Health Children's and Women's Hospital Heliport", + "latitude_deg": "30.69873", + "longitude_deg": "-88.07748", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Mobile", + "scheduled_service": "no", + "local_code": "75AL" + }, + { + "id": "344184", + "ident": "US-3957", + "type": "closed", + "name": "Delpert / Norwalk Airport", + "latitude_deg": "33.90742", + "longitude_deg": "-118.10174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Norwalk", + "scheduled_service": "no" + }, + { + "id": "344190", + "ident": "US-3958", + "type": "heliport", + "name": "Orange Park Medical Center Heliport", + "latitude_deg": "30.16529", + "longitude_deg": "-81.73625", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orange Park", + "scheduled_service": "no", + "local_code": "20FA" + }, + { + "id": "344208", + "ident": "US-3959", + "type": "closed", + "name": "Sky Lodge Landing Strip", + "latitude_deg": "45.657803", + "longitude_deg": "-70.263319", + "elevation_ft": "1358", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Moose River", + "scheduled_service": "no" + }, + { + "id": "344213", + "ident": "US-3960", + "type": "closed", + "name": "Glendale Airport", + "latitude_deg": "36.66906", + "longitude_deg": "-114.57282", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Moapa", + "scheduled_service": "no" + }, + { + "id": "344214", + "ident": "US-3961", + "type": "small_airport", + "name": "Minton Ranch Airport", + "latitude_deg": "28.16848", + "longitude_deg": "-99.41398", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Encinal", + "scheduled_service": "no" + }, + { + "id": "344215", + "ident": "US-3962", + "type": "small_airport", + "name": "Reynosa Ranch Airport", + "latitude_deg": "28.15004", + "longitude_deg": "-99.29814", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Encinal", + "scheduled_service": "no" + }, + { + "id": "344216", + "ident": "US-3963", + "type": "heliport", + "name": "Lewis Energy Heliport", + "latitude_deg": "28.0432", + "longitude_deg": "-99.36307", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Encinal", + "scheduled_service": "no" + }, + { + "id": "344217", + "ident": "US-3964", + "type": "heliport", + "name": "Kleinman's Heliport", + "latitude_deg": "40.898342", + "longitude_deg": "-73.518553", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Centre Island", + "scheduled_service": "no", + "gps_code": "35NY", + "local_code": "35NY" + }, + { + "id": "344221", + "ident": "US-3965", + "type": "closed", + "name": "Kendall Jackson Airstrip", + "latitude_deg": "37.00578", + "longitude_deg": "-120.21575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Madera", + "scheduled_service": "no" + }, + { + "id": "344222", + "ident": "US-3966", + "type": "closed", + "name": "Bar 43 Ranch Airport", + "latitude_deg": "35.97613", + "longitude_deg": "-120.89732", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Ardo", + "scheduled_service": "no" + }, + { + "id": "344223", + "ident": "US-3967", + "type": "small_airport", + "name": "Alamo Lake / Wayside Oasis Airport", + "latitude_deg": "34.247661", + "longitude_deg": "-113.485617", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wenden", + "scheduled_service": "no" + }, + { + "id": "344224", + "ident": "US-3968", + "type": "small_airport", + "name": "Bouquet Ranch Airport", + "latitude_deg": "33.846189", + "longitude_deg": "-111.248767", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonto Basin", + "scheduled_service": "no" + }, + { + "id": "344225", + "ident": "US-3969", + "type": "small_airport", + "name": "Bouse Southeast Airstrip", + "latitude_deg": "33.91855", + "longitude_deg": "-113.97231", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bouse", + "scheduled_service": "no" + }, + { + "id": "344226", + "ident": "US-3970", + "type": "small_airport", + "name": "Railroad Track Airstrip", + "latitude_deg": "34.00855", + "longitude_deg": "-112.90693", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wickenburg", + "scheduled_service": "no" + }, + { + "id": "344227", + "ident": "US-3971", + "type": "small_airport", + "name": "Rancho Estrella Airstrip", + "latitude_deg": "33.74966", + "longitude_deg": "-113.56603", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Salome", + "scheduled_service": "no" + }, + { + "id": "344228", + "ident": "US-3972", + "type": "small_airport", + "name": "Windmill Airstrip", + "latitude_deg": "33.651667", + "longitude_deg": "-113.223333", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Aguila", + "scheduled_service": "no" + }, + { + "id": "344229", + "ident": "US-3973", + "type": "closed", + "name": "Blue Hill Grade Airstrip", + "latitude_deg": "37.227977", + "longitude_deg": "-121.371338", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Newman", + "scheduled_service": "no" + }, + { + "id": "344230", + "ident": "US-3974", + "type": "small_airport", + "name": "Burch Ranch Airport", + "latitude_deg": "35.30394", + "longitude_deg": "-117.96682", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Cantil", + "scheduled_service": "no" + }, + { + "id": "344231", + "ident": "US-3975", + "type": "closed", + "name": "Cantil Glider Landing Field", + "latitude_deg": "35.29764", + "longitude_deg": "-117.98046", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Cantil", + "scheduled_service": "no" + }, + { + "id": "344232", + "ident": "US-3976", + "type": "closed", + "name": "Munsey Airstrip", + "latitude_deg": "35.28485", + "longitude_deg": "-117.92778", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Cantil", + "scheduled_service": "no" + }, + { + "id": "344233", + "ident": "US-3977", + "type": "small_airport", + "name": "99th Avenue Airport", + "latitude_deg": "32.98813", + "longitude_deg": "-112.28037", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Maricopa", + "scheduled_service": "no" + }, + { + "id": "344234", + "ident": "US-3978", + "type": "small_airport", + "name": "Burnt Corral Meadows Private Airstrip", + "latitude_deg": "36.22401", + "longitude_deg": "-118.49701", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Springville", + "scheduled_service": "no" + }, + { + "id": "344235", + "ident": "US-3979", + "type": "small_airport", + "name": "Canal View Airport", + "latitude_deg": "39.982457", + "longitude_deg": "-122.299815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Corning", + "scheduled_service": "no" + }, + { + "id": "344236", + "ident": "US-3980", + "type": "small_airport", + "name": "Carter Creek Airstrip", + "latitude_deg": "40.169015", + "longitude_deg": "-123.562262", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Alderpoint", + "scheduled_service": "no" + }, + { + "id": "344237", + "ident": "US-3981", + "type": "closed", + "name": "Superior Valley Targeting Airstrip", + "latitude_deg": "35.28576", + "longitude_deg": "-117.10062", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Barstow", + "scheduled_service": "no" + }, + { + "id": "344238", + "ident": "US-3982", + "type": "small_airport", + "name": "Sky Valley Ranch Airport", + "latitude_deg": "37.992044", + "longitude_deg": "-120.672705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Copperopolis", + "scheduled_service": "no" + }, + { + "id": "344239", + "ident": "US-3983", + "type": "small_airport", + "name": "Crazy Creek Gliderport", + "latitude_deg": "38.77035", + "longitude_deg": "-122.57231", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Middletown", + "scheduled_service": "no" + }, + { + "id": "344240", + "ident": "US-3984", + "type": "small_airport", + "name": "Crowder Flat Airstrip", + "latitude_deg": "41.85371", + "longitude_deg": "-120.75739", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Davis Creek", + "scheduled_service": "no" + }, + { + "id": "344241", + "ident": "US-3985", + "type": "closed", + "name": "Eagle Lake Airport", + "latitude_deg": "40.5709", + "longitude_deg": "-120.84474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Susanville", + "scheduled_service": "no" + }, + { + "id": "344242", + "ident": "US-3986", + "type": "small_airport", + "name": "Belfast Airstrip", + "latitude_deg": "40.44897", + "longitude_deg": "-120.45313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Litchfield", + "scheduled_service": "no" + }, + { + "id": "344249", + "ident": "US-3987", + "type": "closed", + "name": "Yellow Brick Road Airfield", + "latitude_deg": "29.75476", + "longitude_deg": "-96.12008", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sealy", + "scheduled_service": "no" + }, + { + "id": "344250", + "ident": "US-3988", + "type": "closed", + "name": "High Lonesome Airstrip", + "latitude_deg": "30.99047", + "longitude_deg": "-101.1453", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no" + }, + { + "id": "344251", + "ident": "US-3989", + "type": "small_airport", + "name": "Lewis Airport", + "latitude_deg": "30.1288", + "longitude_deg": "-92.40959", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Crowley", + "scheduled_service": "no" + }, + { + "id": "344252", + "ident": "US-3990", + "type": "small_airport", + "name": "Skyview Ranch Airport", + "latitude_deg": "30.21126", + "longitude_deg": "-91.86432", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Parks", + "scheduled_service": "no" + }, + { + "id": "344253", + "ident": "US-3991", + "type": "small_airport", + "name": "Juneau Landing Strip", + "latitude_deg": "30.37369", + "longitude_deg": "-91.9001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Arnaudville", + "scheduled_service": "no" + }, + { + "id": "344254", + "ident": "US-3992", + "type": "small_airport", + "name": "Gerald's Airstrip", + "latitude_deg": "30.37357", + "longitude_deg": "-91.89791", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Arnaudville", + "scheduled_service": "no" + }, + { + "id": "344255", + "ident": "US-3993", + "type": "closed", + "name": "Owenyo Airstrip", + "latitude_deg": "36.67058", + "longitude_deg": "-118.0275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lone Pine", + "scheduled_service": "no" + }, + { + "id": "344256", + "ident": "US-3994", + "type": "closed", + "name": "Maltby Airstrip", + "latitude_deg": "38.00046", + "longitude_deg": "-122.07", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Martinez", + "scheduled_service": "no" + }, + { + "id": "344257", + "ident": "US-3995", + "type": "small_airport", + "name": "Tremont Airport", + "latitude_deg": "38.47747", + "longitude_deg": "-121.69693", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Davis", + "scheduled_service": "no" + }, + { + "id": "344259", + "ident": "US-3996", + "type": "closed", + "name": "Eglin Site B5 Airfield", + "latitude_deg": "30.59306", + "longitude_deg": "-86.68497", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Valparaiso", + "scheduled_service": "no" + }, + { + "id": "344269", + "ident": "US-3997", + "type": "closed", + "name": "Sasco Airport", + "latitude_deg": "32.54976", + "longitude_deg": "-111.44181", + "elevation_ft": "1775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Eloy", + "scheduled_service": "no" + }, + { + "id": "344270", + "ident": "US-3998", + "type": "small_airport", + "name": "Saint David Gliderfield", + "latitude_deg": "31.83334", + "longitude_deg": "-110.20888", + "elevation_ft": "3711", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Saint David", + "scheduled_service": "no" + }, + { + "id": "344271", + "ident": "US-3999", + "type": "small_airport", + "name": "Bean Airport", + "latitude_deg": "33.77887", + "longitude_deg": "-112.42869", + "elevation_ft": "1634", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Surprise", + "scheduled_service": "no" + }, + { + "id": "10674", + "ident": "US-3NJ9", + "type": "closed", + "name": "Westbrook Valley Airport", + "latitude_deg": "41.0779", + "longitude_deg": "-74.3274", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Ringwood", + "scheduled_service": "no", + "keywords": "3NJ9" + }, + { + "id": "10802", + "ident": "US-3T9", + "type": "small_airport", + "name": "Big Bend Ranch State Park Airport", + "latitude_deg": "29.471037", + "longitude_deg": "-103.936899", + "elevation_ft": "4250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Redford", + "scheduled_service": "no", + "local_code": "3T9" + }, + { + "id": "344272", + "ident": "US-4000", + "type": "small_airport", + "name": "Ogden Field", + "latitude_deg": "33.83077", + "longitude_deg": "-112.63003", + "elevation_ft": "1890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Morristown", + "scheduled_service": "no" + }, + { + "id": "344273", + "ident": "US-4001", + "type": "small_airport", + "name": "Joy Ranch Airport", + "latitude_deg": "33.82205", + "longitude_deg": "-112.50109", + "elevation_ft": "1890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Surprise", + "scheduled_service": "no", + "keywords": "Chrysler Track" + }, + { + "id": "344274", + "ident": "US-4002", + "type": "closed", + "name": "Norterra Airstrip", + "latitude_deg": "33.76575", + "longitude_deg": "-112.08662", + "elevation_ft": "1621", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "344275", + "ident": "US-4003", + "type": "small_airport", + "name": "14th Street Gliderfield", + "latitude_deg": "33.7667", + "longitude_deg": "-112.05191", + "elevation_ft": "1716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "344281", + "ident": "US-4004", + "type": "heliport", + "name": "Harps Haven Heliport", + "latitude_deg": "42.60475", + "longitude_deg": "-83.735028", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Hartland Township", + "scheduled_service": "no", + "gps_code": "1MI1", + "local_code": "1MI1" + }, + { + "id": "344283", + "ident": "US-4005", + "type": "small_airport", + "name": "Antelope Creek Ranch Airport", + "latitude_deg": "41.56864", + "longitude_deg": "-121.93221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Macdoel", + "scheduled_service": "no" + }, + { + "id": "344284", + "ident": "US-4006", + "type": "small_airport", + "name": "Tucker Gulch Airport", + "latitude_deg": "36.37915", + "longitude_deg": "-120.79599", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Paicines", + "scheduled_service": "no" + }, + { + "id": "344285", + "ident": "US-4007", + "type": "small_airport", + "name": "Rathburn Mine Airport", + "latitude_deg": "39.069893", + "longitude_deg": "-122.444422", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Clearlake Oaks", + "scheduled_service": "no", + "keywords": "Indian Valley Reservoir" + }, + { + "id": "344286", + "ident": "US-4008", + "type": "small_airport", + "name": "Isabel Valley Airport", + "latitude_deg": "37.323542", + "longitude_deg": "-121.538959", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mount Hamilton", + "scheduled_service": "no", + "keywords": "Isabel Creek" + }, + { + "id": "344287", + "ident": "US-4009", + "type": "small_airport", + "name": "Kelli Field", + "latitude_deg": "34.267975", + "longitude_deg": "-116.374219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Landers", + "scheduled_service": "no" + }, + { + "id": "344288", + "ident": "US-4010", + "type": "small_airport", + "name": "Paramount Farming Company Airport", + "latitude_deg": "35.87048", + "longitude_deg": "-119.89446", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Kettleman City", + "scheduled_service": "no" + }, + { + "id": "344289", + "ident": "US-4011", + "type": "closed", + "name": "Landers South Airport", + "latitude_deg": "34.114221", + "longitude_deg": "-116.377456", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Yucca Valley", + "scheduled_service": "no" + }, + { + "id": "344290", + "ident": "US-4012", + "type": "small_airport", + "name": "Long Dave Valley Airport", + "latitude_deg": "34.7418", + "longitude_deg": "-118.98844", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Frazier Park", + "scheduled_service": "no" + }, + { + "id": "344291", + "ident": "US-4013", + "type": "closed", + "name": "Hidden Valley Dry Lake Airstrip", + "latitude_deg": "34.923608", + "longitude_deg": "-116.377635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Baker", + "scheduled_service": "no", + "keywords": "Oasis" + }, + { + "id": "344292", + "ident": "US-4014", + "type": "small_airport", + "name": "Old Canyon Airport", + "latitude_deg": "35.35926", + "longitude_deg": "-120.14002", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Margarita", + "scheduled_service": "no" + }, + { + "id": "344293", + "ident": "US-4015", + "type": "small_airport", + "name": "Michael Ranch Airport", + "latitude_deg": "39.677577", + "longitude_deg": "-122.314202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Orland", + "scheduled_service": "no" + }, + { + "id": "344294", + "ident": "US-4016", + "type": "small_airport", + "name": "Mann Ranch Airport", + "latitude_deg": "40.254804", + "longitude_deg": "-124.042969", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Honeydew", + "scheduled_service": "no", + "keywords": "Panther Gap" + }, + { + "id": "344295", + "ident": "US-4017", + "type": "small_airport", + "name": "Randsburg East Airport", + "latitude_deg": "35.49839", + "longitude_deg": "-117.27318", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Randsburg", + "scheduled_service": "no" + }, + { + "id": "344296", + "ident": "US-4018", + "type": "small_airport", + "name": "Red Hills Airstrip", + "latitude_deg": "37.865086", + "longitude_deg": "-120.487694", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Jamestown", + "scheduled_service": "no" + }, + { + "id": "344298", + "ident": "US-4019", + "type": "small_airport", + "name": "Reservoir F Airstrip", + "latitude_deg": "41.566446", + "longitude_deg": "-120.877072", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Canby", + "scheduled_service": "no" + }, + { + "id": "344299", + "ident": "US-4020", + "type": "small_airport", + "name": "Ridgecrest Airstrip", + "latitude_deg": "35.52307", + "longitude_deg": "-117.23247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Randsburg", + "scheduled_service": "no" + }, + { + "id": "344300", + "ident": "US-4021", + "type": "small_airport", + "name": "Miller Flat Airport", + "latitude_deg": "40.126223", + "longitude_deg": "-124.169917", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Whitethorn", + "scheduled_service": "no", + "keywords": "Shubrick Rock Beach" + }, + { + "id": "344301", + "ident": "US-4022", + "type": "small_airport", + "name": "South Likely Airport", + "latitude_deg": "41.19157", + "longitude_deg": "-120.47164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Likely", + "scheduled_service": "no" + }, + { + "id": "344302", + "ident": "US-4023", + "type": "small_airport", + "name": "Dolores Point Airport", + "latitude_deg": "38.70181", + "longitude_deg": "-109.04328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Gateway", + "scheduled_service": "no" + }, + { + "id": "344303", + "ident": "US-4024", + "type": "small_airport", + "name": "Dolores River Ranch Airport", + "latitude_deg": "38.731838", + "longitude_deg": "-109.020701", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Gateway", + "scheduled_service": "no" + }, + { + "id": "344304", + "ident": "US-4025", + "type": "small_airport", + "name": "La Garita Creek Ranch Airport", + "latitude_deg": "37.811667", + "longitude_deg": "-106.315278", + "elevation_ft": "8050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Del Norte", + "scheduled_service": "no", + "local_code": "5CO6" + }, + { + "id": "344305", + "ident": "US-4026", + "type": "small_airport", + "name": "Quarter Circle Circle Ranch Airport", + "latitude_deg": "38.142262", + "longitude_deg": "-106.747109", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Gunnison", + "scheduled_service": "no" + }, + { + "id": "344311", + "ident": "US-4027", + "type": "small_airport", + "name": "45 Ranch Airport", + "latitude_deg": "42.173084", + "longitude_deg": "-116.875378", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Grand View", + "scheduled_service": "no" + }, + { + "id": "344312", + "ident": "US-4028", + "type": "small_airport", + "name": "45 Ranch Old Airport", + "latitude_deg": "42.17637", + "longitude_deg": "-116.85425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Grand View", + "scheduled_service": "no" + }, + { + "id": "344313", + "ident": "US-4029", + "type": "small_airport", + "name": "Allison Ranch Airport", + "latitude_deg": "45.56423", + "longitude_deg": "-115.22563", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Elk City", + "scheduled_service": "no" + }, + { + "id": "344314", + "ident": "US-4030", + "type": "small_airport", + "name": "B Bar C Airport", + "latitude_deg": "44.858942", + "longitude_deg": "-114.455903", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Challis", + "scheduled_service": "no" + }, + { + "id": "344315", + "ident": "US-4031", + "type": "closed", + "name": "Rams Horn Ranch Airport", + "latitude_deg": "44.87839", + "longitude_deg": "-114.45554", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Challis", + "scheduled_service": "no" + }, + { + "id": "344316", + "ident": "US-4032", + "type": "small_airport", + "name": "Castle Creek Road Airport", + "latitude_deg": "44.82191", + "longitude_deg": "-114.4208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Challis", + "scheduled_service": "no" + }, + { + "id": "344317", + "ident": "US-4033", + "type": "small_airport", + "name": "Concord Airport", + "latitude_deg": "45.584512", + "longitude_deg": "-115.681444", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Elk City", + "scheduled_service": "no", + "keywords": "Buffalo Hump, KGRH" + }, + { + "id": "344318", + "ident": "US-4034", + "type": "small_airport", + "name": "Whitewater Ranch Airport", + "latitude_deg": "45.53523", + "longitude_deg": "-115.30032", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Warren", + "scheduled_service": "no" + }, + { + "id": "344319", + "ident": "US-4035", + "type": "small_airport", + "name": "Yellow Pine Bar Airport", + "latitude_deg": "45.54082", + "longitude_deg": "-115.25379", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Elk City", + "scheduled_service": "no" + }, + { + "id": "344320", + "ident": "US-4036", + "type": "small_airport", + "name": "Crofoot Ranch Airport", + "latitude_deg": "45.5609", + "longitude_deg": "-115.14867", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Warren", + "scheduled_service": "no" + }, + { + "id": "344321", + "ident": "US-4037", + "type": "small_airport", + "name": "Cook Ranch Airport", + "latitude_deg": "45.63508", + "longitude_deg": "-115.29155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Elk City", + "scheduled_service": "no" + }, + { + "id": "344323", + "ident": "US-4038", + "type": "small_airport", + "name": "Mullins Airport", + "latitude_deg": "45.71655", + "longitude_deg": "-115.36404", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Elk City", + "scheduled_service": "no" + }, + { + "id": "344324", + "ident": "US-4039", + "type": "small_airport", + "name": "Badley Ranch Airport", + "latitude_deg": "45.34264", + "longitude_deg": "-115.51953", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Dixie", + "scheduled_service": "no" + }, + { + "id": "344325", + "ident": "US-4040", + "type": "small_airport", + "name": "Castle Airport", + "latitude_deg": "42.639579", + "longitude_deg": "-116.986472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Murphy", + "scheduled_service": "no", + "keywords": "Cliffs Landing Strip" + }, + { + "id": "344326", + "ident": "US-4041", + "type": "small_airport", + "name": "Copenhaver Ranch Airport", + "latitude_deg": "45.366657", + "longitude_deg": "-115.513742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Dixie", + "scheduled_service": "no" + }, + { + "id": "344327", + "ident": "US-4042", + "type": "small_airport", + "name": "Hatter Creek Airport", + "latitude_deg": "46.858272", + "longitude_deg": "-116.822259", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Princeton", + "scheduled_service": "no" + }, + { + "id": "344328", + "ident": "US-4043", + "type": "small_airport", + "name": "Eagle Creek Airport", + "latitude_deg": "45.998108", + "longitude_deg": "-116.703973", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Winchester", + "scheduled_service": "no" + }, + { + "id": "344329", + "ident": "US-4044", + "type": "small_airport", + "name": "Elk Meadows Airport", + "latitude_deg": "45.27396", + "longitude_deg": "-116.08236", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Riggins", + "scheduled_service": "no" + }, + { + "id": "344330", + "ident": "US-4045", + "type": "closed", + "name": "Falconberry Airport", + "latitude_deg": "44.699954", + "longitude_deg": "-114.76869", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Stanley", + "scheduled_service": "no" + }, + { + "id": "344331", + "ident": "US-4046", + "type": "small_airport", + "name": "Heimgartner Airport", + "latitude_deg": "46.605933", + "longitude_deg": "-116.775497", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Juliaetta", + "scheduled_service": "no", + "keywords": "Fix Ridge" + }, + { + "id": "344332", + "ident": "US-4047", + "type": "small_airport", + "name": "Foxglove Ranch Airport", + "latitude_deg": "46.133163", + "longitude_deg": "-115.795184", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Kooskia", + "scheduled_service": "no" + }, + { + "id": "344333", + "ident": "US-4048", + "type": "small_airport", + "name": "Greene Valley Ranch Airport", + "latitude_deg": "43.8167", + "longitude_deg": "-115.11483", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Atlanta", + "scheduled_service": "no" + }, + { + "id": "344334", + "ident": "US-4049", + "type": "small_airport", + "name": "Happy Hollow Ranch Airport", + "latitude_deg": "44.944055", + "longitude_deg": "-116.682264", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Council", + "scheduled_service": "no" + }, + { + "id": "344335", + "ident": "US-4050", + "type": "small_airport", + "name": "Hoodoo Meadows Airport", + "latitude_deg": "45.055387", + "longitude_deg": "-114.559603", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Challis", + "scheduled_service": "no" + }, + { + "id": "344336", + "ident": "US-4051", + "type": "small_airport", + "name": "Horse Heaven Airport", + "latitude_deg": "47.82675", + "longitude_deg": "-116.49752", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Athol", + "scheduled_service": "no" + }, + { + "id": "344337", + "ident": "US-4052", + "type": "heliport", + "name": "Athol Hospital Heliport", + "latitude_deg": "42.58471", + "longitude_deg": "-72.20906", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Athol", + "scheduled_service": "no" + }, + { + "id": "344338", + "ident": "US-4053", + "type": "small_airport", + "name": "LMC Ranch Airport", + "latitude_deg": "44.670423", + "longitude_deg": "-113.917062", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "May", + "scheduled_service": "no", + "keywords": "Little Morgan Creek" + }, + { + "id": "344339", + "ident": "US-4054", + "type": "small_airport", + "name": "Depot Airstrip", + "latitude_deg": "43.260249", + "longitude_deg": "-116.559092", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Murphy", + "scheduled_service": "no", + "keywords": "Marsing Murphy" + }, + { + "id": "344340", + "ident": "US-4055", + "type": "small_airport", + "name": "North Star Ranch Airport", + "latitude_deg": "45.93605", + "longitude_deg": "-114.83005", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Kooskia", + "scheduled_service": "no" + }, + { + "id": "344341", + "ident": "US-4056", + "type": "small_airport", + "name": "Selway Lodge Airport", + "latitude_deg": "46.00623", + "longitude_deg": "-114.84348", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Kooskia", + "scheduled_service": "no" + }, + { + "id": "344342", + "ident": "US-4057", + "type": "small_airport", + "name": "White Bird Hill Airport", + "latitude_deg": "45.863813", + "longitude_deg": "-116.201486", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Grangeville", + "scheduled_service": "no" + }, + { + "id": "344343", + "ident": "US-4058", + "type": "small_airport", + "name": "Wind Ridge Airport", + "latitude_deg": "45.87633", + "longitude_deg": "-116.17888", + "elevation_ft": "4050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Grangeville", + "scheduled_service": "no", + "local_code": "66ID" + }, + { + "id": "344344", + "ident": "US-4059", + "type": "small_airport", + "name": "Pittsburg Airport", + "latitude_deg": "45.629516", + "longitude_deg": "-116.474911", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Imnaha", + "scheduled_service": "no" + }, + { + "id": "344345", + "ident": "US-4060", + "type": "small_airport", + "name": "Root Ranch Airport", + "latitude_deg": "45.31238", + "longitude_deg": "-115.02567", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Warren", + "scheduled_service": "no" + }, + { + "id": "344346", + "ident": "US-4061", + "type": "small_airport", + "name": "Saylor Creek Airport", + "latitude_deg": "42.74718", + "longitude_deg": "-115.5671", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Bruneau", + "scheduled_service": "no" + }, + { + "id": "344347", + "ident": "US-4062", + "type": "small_airport", + "name": "South Fork Ranch Airport", + "latitude_deg": "45.24033", + "longitude_deg": "-115.53174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Warren", + "scheduled_service": "no" + }, + { + "id": "344348", + "ident": "US-4063", + "type": "small_airport", + "name": "Triangle Airport", + "latitude_deg": "42.787973", + "longitude_deg": "-116.63694", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Murphy", + "scheduled_service": "no" + }, + { + "id": "344349", + "ident": "US-4064", + "type": "small_airport", + "name": "Young Landing Area", + "latitude_deg": "42.95511", + "longitude_deg": "-115.81656", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Bruneau", + "scheduled_service": "no" + }, + { + "id": "344350", + "ident": "US-4065", + "type": "small_airport", + "name": "Foster Ranch Airport", + "latitude_deg": "44.655451", + "longitude_deg": "-114.643681", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Stanley", + "scheduled_service": "no", + "keywords": "Triple Creek Ranch" + }, + { + "id": "344351", + "ident": "US-4066", + "type": "small_airport", + "name": "Wiley Ranch Airport", + "latitude_deg": "45.059566", + "longitude_deg": "-115.626963", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Yellow Pine", + "scheduled_service": "no" + }, + { + "id": "344352", + "ident": "US-4067", + "type": "small_airport", + "name": "Yellow Jacket Ranch Airport", + "latitude_deg": "45.15202", + "longitude_deg": "-115.56084", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Yellow Pine", + "scheduled_service": "no" + }, + { + "id": "344353", + "ident": "US-4068", + "type": "small_airport", + "name": "Pony Creek Airport", + "latitude_deg": "45.18901", + "longitude_deg": "-115.56701", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Yellow Pine", + "scheduled_service": "no" + }, + { + "id": "344354", + "ident": "US-4069", + "type": "small_airport", + "name": "Colson Airport", + "latitude_deg": "45.30076", + "longitude_deg": "-114.52333", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Shoup", + "scheduled_service": "no" + }, + { + "id": "344355", + "ident": "US-4070", + "type": "closed", + "name": "North Fork Airport", + "latitude_deg": "45.41228", + "longitude_deg": "-113.99481", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "North Fork", + "scheduled_service": "no" + }, + { + "id": "344356", + "ident": "US-4071", + "type": "closed", + "name": "Cumming Triangle Landing Area", + "latitude_deg": "45.4423", + "longitude_deg": "-113.99478", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Gibbonsville", + "scheduled_service": "no" + }, + { + "id": "344361", + "ident": "US-4072", + "type": "closed", + "name": "Castle Dale Airport", + "latitude_deg": "39.2454", + "longitude_deg": "-111.02467", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Castle Dale", + "scheduled_service": "no" + }, + { + "id": "344363", + "ident": "US-4073", + "type": "small_airport", + "name": "Crazy Mountain Ranch Airport", + "latitude_deg": "45.8951", + "longitude_deg": "-110.48754", + "elevation_ft": "5495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Clyde Park", + "scheduled_service": "no" + }, + { + "id": "344364", + "ident": "US-4074", + "type": "small_airport", + "name": "Ervin Ridge Airport", + "latitude_deg": "47.81338", + "longitude_deg": "-109.16338", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Lloyd", + "scheduled_service": "no" + }, + { + "id": "344365", + "ident": "US-4075", + "type": "small_airport", + "name": "Black Butte West Airport", + "latitude_deg": "47.8415", + "longitude_deg": "-109.204028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Lloyd", + "scheduled_service": "no" + }, + { + "id": "344366", + "ident": "US-4076", + "type": "closed", + "name": "Lloyd Airfield", + "latitude_deg": "33.99216", + "longitude_deg": "-101.09311", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dougherty", + "scheduled_service": "no" + }, + { + "id": "344367", + "ident": "US-4077", + "type": "small_airport", + "name": "Higgins Brothers Airport", + "latitude_deg": "46.26705", + "longitude_deg": "-110.78879", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "White Sulphur Springs", + "scheduled_service": "no" + }, + { + "id": "344368", + "ident": "US-4078", + "type": "closed", + "name": "Lime Creek Airport", + "latitude_deg": "48.61881", + "longitude_deg": "-116.028516", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Troy", + "scheduled_service": "no" + }, + { + "id": "344369", + "ident": "US-4079", + "type": "small_airport", + "name": "Barrel Springs Airport", + "latitude_deg": "40.77972", + "longitude_deg": "-118.72339", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Gerlach", + "scheduled_service": "no" + }, + { + "id": "344370", + "ident": "US-4080", + "type": "closed", + "name": "Gerlach Airport", + "latitude_deg": "40.65479", + "longitude_deg": "-119.35476", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Gerlach", + "scheduled_service": "no" + }, + { + "id": "344371", + "ident": "US-4081", + "type": "small_airport", + "name": "Columbus Airport", + "latitude_deg": "38.11669", + "longitude_deg": "-118.00548", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Columbus", + "scheduled_service": "no" + }, + { + "id": "344372", + "ident": "US-4082", + "type": "small_airport", + "name": "Deer Creek Grade Airport", + "latitude_deg": "41.959158", + "longitude_deg": "-115.426567", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Jarbidge", + "scheduled_service": "no" + }, + { + "id": "344373", + "ident": "US-4083", + "type": "small_airport", + "name": "Gamble Ranch Airport", + "latitude_deg": "41.36219", + "longitude_deg": "-114.19465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Montello", + "scheduled_service": "no" + }, + { + "id": "344374", + "ident": "US-4084", + "type": "small_airport", + "name": "Winecup Gamble Ranch Airport", + "latitude_deg": "41.37807", + "longitude_deg": "-114.17883", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Montello", + "scheduled_service": "no" + }, + { + "id": "344375", + "ident": "US-4085", + "type": "small_airport", + "name": "Seibeck Mine Airport", + "latitude_deg": "37.36002", + "longitude_deg": "-117.381901", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Goldfield", + "scheduled_service": "no", + "keywords": "Seibeck Mine" + }, + { + "id": "344376", + "ident": "US-4086", + "type": "small_airport", + "name": "Gold Point Airport", + "latitude_deg": "37.36384", + "longitude_deg": "-117.36616", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Goldfield", + "scheduled_service": "no" + }, + { + "id": "344377", + "ident": "US-4087", + "type": "closed", + "name": "Old Camp Airport", + "latitude_deg": "37.27116", + "longitude_deg": "-117.3507", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Goldfield", + "scheduled_service": "no" + }, + { + "id": "344378", + "ident": "US-4088", + "type": "closed", + "name": "Stateline Airport", + "latitude_deg": "37.29048", + "longitude_deg": "-117.39765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Goldfield", + "scheduled_service": "no" + }, + { + "id": "344379", + "ident": "US-4089", + "type": "small_airport", + "name": "Wilkins Airport", + "latitude_deg": "41.40538", + "longitude_deg": "-114.76472", + "elevation_ft": "5886", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Wells", + "scheduled_service": "no", + "keywords": "Great Basin" + }, + { + "id": "344380", + "ident": "US-4090", + "type": "small_airport", + "name": "Leonard Creek Ranch Airport", + "latitude_deg": "41.502955", + "longitude_deg": "-118.727172", + "elevation_ft": "4181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Winnemucca", + "scheduled_service": "no" + }, + { + "id": "344381", + "ident": "US-4091", + "type": "small_airport", + "name": "Lovelock Airport", + "latitude_deg": "40.19135", + "longitude_deg": "-118.44993", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Lovelock", + "scheduled_service": "no" + }, + { + "id": "344382", + "ident": "US-4092", + "type": "small_airport", + "name": "Colado Airport", + "latitude_deg": "40.24558", + "longitude_deg": "-118.39897", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Lovelock", + "scheduled_service": "no" + }, + { + "id": "344383", + "ident": "US-4093", + "type": "closed", + "name": "Humboldt Intermediate Field", + "latitude_deg": "40.08556", + "longitude_deg": "-118.15599", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Lovelock", + "scheduled_service": "no" + }, + { + "id": "344384", + "ident": "US-4094", + "type": "closed", + "name": "Marietta Airport", + "latitude_deg": "38.24078", + "longitude_deg": "-118.33755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Mina", + "scheduled_service": "no" + }, + { + "id": "344385", + "ident": "US-4095", + "type": "small_airport", + "name": "Montello Airport", + "latitude_deg": "41.27497", + "longitude_deg": "-114.21128", + "elevation_ft": "5052", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Montello", + "scheduled_service": "no" + }, + { + "id": "344386", + "ident": "US-4096", + "type": "small_airport", + "name": "Basecamp Airport", + "latitude_deg": "38.324189", + "longitude_deg": "-116.276976", + "elevation_ft": "5228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "344387", + "ident": "US-4097", + "type": "small_airport", + "name": "Summit Lake Airport", + "latitude_deg": "41.551", + "longitude_deg": "-119.04767", + "elevation_ft": "5909", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Winnemucca", + "scheduled_service": "no" + }, + { + "id": "344388", + "ident": "US-4098", + "type": "small_airport", + "name": "Three Shotgun Shells Airfield", + "latitude_deg": "39.14796", + "longitude_deg": "-119.28873", + "elevation_ft": "4705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Dayton", + "scheduled_service": "no" + }, + { + "id": "344389", + "ident": "US-4099", + "type": "small_airport", + "name": "Too Short Airstrip", + "latitude_deg": "39.14952", + "longitude_deg": "-119.29388", + "elevation_ft": "4711", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Dayton", + "scheduled_service": "no" + }, + { + "id": "344390", + "ident": "US-4100", + "type": "small_airport", + "name": "Hop Skip and Jump / Julian Lane Airstrip", + "latitude_deg": "39.1432", + "longitude_deg": "-119.30001", + "elevation_ft": "4750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Dayton", + "scheduled_service": "no" + }, + { + "id": "344391", + "ident": "US-4101", + "type": "small_airport", + "name": "Byington Ranch Airport", + "latitude_deg": "41.73971", + "longitude_deg": "-115.97895", + "elevation_ft": "5922", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Mountain City", + "scheduled_service": "no", + "keywords": "KELG, Van Duzer Creek" + }, + { + "id": "344392", + "ident": "US-4102", + "type": "small_airport", + "name": "Virgin Creek Airport", + "latitude_deg": "41.88737", + "longitude_deg": "-119.00646", + "elevation_ft": "4954", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Winnemucca", + "scheduled_service": "no" + }, + { + "id": "344393", + "ident": "US-4103", + "type": "small_airport", + "name": "Virgin Valley Ranch Airport", + "latitude_deg": "41.79173", + "longitude_deg": "-119.104592", + "elevation_ft": "5085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Winnemucca", + "scheduled_service": "no" + }, + { + "id": "344394", + "ident": "US-4104", + "type": "closed", + "name": "Hawks Valley Airport", + "latitude_deg": "42.10102", + "longitude_deg": "-119.08098", + "elevation_ft": "5532", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Fields", + "scheduled_service": "no" + }, + { + "id": "344418", + "ident": "US-4105", + "type": "small_airport", + "name": "Desert Bighorn Flat Airstrip", + "latitude_deg": "38.93999", + "longitude_deg": "-118.97846", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Yerington", + "scheduled_service": "no" + }, + { + "id": "344419", + "ident": "US-4106", + "type": "small_airport", + "name": "Easy Street Airstrip", + "latitude_deg": "39.06709", + "longitude_deg": "-119.32247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Yerington", + "scheduled_service": "no" + }, + { + "id": "344420", + "ident": "US-4107", + "type": "small_airport", + "name": "Gold Mine Airstrip", + "latitude_deg": "39.0739", + "longitude_deg": "-119.33564", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Yerington", + "scheduled_service": "no", + "keywords": "Minnesota Mine" + }, + { + "id": "344421", + "ident": "US-4108", + "type": "small_airport", + "name": "Gold Mine Number 2 Airstrip", + "latitude_deg": "39.07119", + "longitude_deg": "-119.33769", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Yerington", + "scheduled_service": "no", + "keywords": "Minnesota Mine" + }, + { + "id": "344422", + "ident": "US-4109", + "type": "small_airport", + "name": "Too Many Horses Airstrip", + "latitude_deg": "39.19454", + "longitude_deg": "-119.40979", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Dayton", + "scheduled_service": "no" + }, + { + "id": "344423", + "ident": "US-4110", + "type": "small_airport", + "name": "MTB Airstrip", + "latitude_deg": "39.1232", + "longitude_deg": "-119.40588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Dayton", + "scheduled_service": "no" + }, + { + "id": "344424", + "ident": "US-4111", + "type": "closed", + "name": "Lambertucci Airport", + "latitude_deg": "38.08936", + "longitude_deg": "-117.27565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "344447", + "ident": "US-4112", + "type": "closed", + "name": "Kamp Airport", + "latitude_deg": "43.135129", + "longitude_deg": "-75.648733", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Durhamville", + "scheduled_service": "no" + }, + { + "id": "344448", + "ident": "US-4113", + "type": "heliport", + "name": "West Jersey Hospital Heliport", + "latitude_deg": "39.78129", + "longitude_deg": "-74.92207", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Berlin", + "scheduled_service": "no" + }, + { + "id": "344450", + "ident": "US-4114", + "type": "heliport", + "name": "Edward Thornton Little Egg Harbor Community Center Emergency Helipad", + "latitude_deg": "39.57023", + "longitude_deg": "-74.37528", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Mystic Islands", + "scheduled_service": "no" + }, + { + "id": "344451", + "ident": "US-4115", + "type": "heliport", + "name": "Lacey Township Municipal Heliport", + "latitude_deg": "39.86253", + "longitude_deg": "-74.20683", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Lacey Township", + "scheduled_service": "no" + }, + { + "id": "344452", + "ident": "US-4116", + "type": "heliport", + "name": "First Aid Squad Helipad", + "latitude_deg": "39.9682", + "longitude_deg": "-74.2556", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Toms River", + "scheduled_service": "no" + }, + { + "id": "344453", + "ident": "US-4117", + "type": "small_airport", + "name": "Blewett Airport", + "latitude_deg": "29.95655", + "longitude_deg": "-94.17294", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beaumont", + "scheduled_service": "no" + }, + { + "id": "344454", + "ident": "US-4118", + "type": "closed", + "name": "Sulfur Plant Airport", + "latitude_deg": "29.89032", + "longitude_deg": "-94.69353", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Liberty", + "scheduled_service": "no" + }, + { + "id": "344455", + "ident": "US-4119", + "type": "closed", + "name": "Loftin Airport", + "latitude_deg": "29.92927", + "longitude_deg": "-95.02657", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crosby", + "scheduled_service": "no" + }, + { + "id": "344456", + "ident": "US-4120", + "type": "heliport", + "name": "Black Forest Heliport", + "latitude_deg": "30.14534", + "longitude_deg": "-95.4339", + "elevation_ft": "126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Spring", + "scheduled_service": "no", + "gps_code": "1TE2", + "local_code": "1TE2" + }, + { + "id": "344457", + "ident": "US-4121", + "type": "small_airport", + "name": "Radke Airport", + "latitude_deg": "44.8433", + "longitude_deg": "-92.84427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hastings", + "scheduled_service": "no" + }, + { + "id": "344462", + "ident": "US-4122", + "type": "small_airport", + "name": "Centennial Park Airport", + "latitude_deg": "33.79714", + "longitude_deg": "-113.55374", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wenden", + "scheduled_service": "no" + }, + { + "id": "344463", + "ident": "US-4123", + "type": "small_airport", + "name": "Monroe Street Airport", + "latitude_deg": "33.74735", + "longitude_deg": "-113.58768", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Salome", + "scheduled_service": "no" + }, + { + "id": "344464", + "ident": "US-4124", + "type": "small_airport", + "name": "Blake Ranch Airport", + "latitude_deg": "35.08599", + "longitude_deg": "-113.80787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Kingman", + "scheduled_service": "no" + }, + { + "id": "344572", + "ident": "US-4125", + "type": "heliport", + "name": "University of Colorado Hospital Heliport", + "latitude_deg": "39.74222", + "longitude_deg": "-104.84241", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Aurora", + "scheduled_service": "no" + }, + { + "id": "344573", + "ident": "US-4126", + "type": "heliport", + "name": "Cheyenne Regional Medical Center West Campus Heliport", + "latitude_deg": "41.14069", + "longitude_deg": "-104.81643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Cheyenne", + "scheduled_service": "no" + }, + { + "id": "344574", + "ident": "US-4127", + "type": "heliport", + "name": "Wyoming Army National Guard Army Aviation Support Facility Heliport", + "latitude_deg": "41.1943", + "longitude_deg": "-104.86939", + "elevation_ft": "6283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Cheyenne", + "scheduled_service": "no" + }, + { + "id": "344608", + "ident": "US-4128", + "type": "closed", + "name": "Ewing Farms Airport", + "latitude_deg": "37.2525", + "longitude_deg": "-120.37116", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Merced", + "scheduled_service": "no" + }, + { + "id": "344631", + "ident": "US-4129", + "type": "heliport", + "name": "US Border Patrol San Luis Helipad", + "latitude_deg": "32.46262", + "longitude_deg": "-114.6939", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "San Luis", + "scheduled_service": "no" + }, + { + "id": "344632", + "ident": "US-4130", + "type": "heliport", + "name": "White Bluff Resort Heliport", + "latitude_deg": "32.02947", + "longitude_deg": "-97.39908", + "elevation_ft": "578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Whitney", + "scheduled_service": "no" + }, + { + "id": "344633", + "ident": "US-4131", + "type": "closed", + "name": "Radio Bay Seaplane Base", + "latitude_deg": "19.7344", + "longitude_deg": "-155.05567", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Hilo", + "scheduled_service": "no" + }, + { + "id": "344634", + "ident": "US-4132", + "type": "closed", + "name": "Ala Wai Heliport", + "latitude_deg": "21.28232", + "longitude_deg": "-157.84092", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Honolulu", + "scheduled_service": "no" + }, + { + "id": "344635", + "ident": "US-4133", + "type": "closed", + "name": "Lonesome Pines Airport", + "latitude_deg": "30.80114", + "longitude_deg": "-86.68443", + "elevation_ft": "244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Baker", + "scheduled_service": "no" + }, + { + "id": "344636", + "ident": "US-4134", + "type": "small_airport", + "name": "Cobb Airport", + "latitude_deg": "30.8127", + "longitude_deg": "-86.63728", + "elevation_ft": "187", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Baker", + "scheduled_service": "no" + }, + { + "id": "344637", + "ident": "US-4135", + "type": "heliport", + "name": "Lower Helipad", + "latitude_deg": "37.0895", + "longitude_deg": "-121.89086", + "elevation_ft": "1379", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Soquel", + "scheduled_service": "no" + }, + { + "id": "344679", + "ident": "US-4136", + "type": "closed", + "name": "Leefe Airport", + "latitude_deg": "41.81454", + "longitude_deg": "-111.0066", + "elevation_ft": "6283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Kemmerer", + "scheduled_service": "no" + }, + { + "id": "344680", + "ident": "US-4137", + "type": "heliport", + "name": "Upper Helipad", + "latitude_deg": "37.07779", + "longitude_deg": "-121.88369", + "elevation_ft": "2181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Soquel", + "scheduled_service": "no" + }, + { + "id": "344681", + "ident": "US-4138", + "type": "heliport", + "name": "Kaiser Permanente Antioch Medical Center Helport", + "latitude_deg": "37.95192", + "longitude_deg": "-121.77434", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Antioch", + "scheduled_service": "no" + }, + { + "id": "344682", + "ident": "US-4139", + "type": "closed", + "name": "Boron Northwest Airport", + "latitude_deg": "35.03872", + "longitude_deg": "-117.74543", + "elevation_ft": "2383", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Boron", + "scheduled_service": "no" + }, + { + "id": "344683", + "ident": "US-4140", + "type": "small_airport", + "name": "Boron West Airport", + "latitude_deg": "35.02425", + "longitude_deg": "-117.75861", + "elevation_ft": "2355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Boron", + "scheduled_service": "no" + }, + { + "id": "344685", + "ident": "US-4141", + "type": "small_airport", + "name": "Flying Apple Ranch Airport", + "latitude_deg": "35.92571", + "longitude_deg": "-121.07256", + "elevation_ft": "948", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lockwood", + "scheduled_service": "no" + }, + { + "id": "344687", + "ident": "US-4142", + "type": "closed", + "name": "Roth Airport", + "latitude_deg": "35.94072", + "longitude_deg": "-121.06692", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lockwood", + "scheduled_service": "no" + }, + { + "id": "344688", + "ident": "US-4143", + "type": "closed", + "name": "Greeley Airport", + "latitude_deg": "35.42307", + "longitude_deg": "-119.23069", + "elevation_ft": "338", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bakerfield", + "scheduled_service": "no" + }, + { + "id": "344689", + "ident": "US-4144", + "type": "closed", + "name": "Flying Coyote Farm Airport", + "latitude_deg": "45.40721", + "longitude_deg": "-122.24405", + "elevation_ft": "199", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sandy", + "scheduled_service": "no" + }, + { + "id": "344690", + "ident": "US-4145", + "type": "small_airport", + "name": "Anchor Ranch Airport", + "latitude_deg": "29.51691", + "longitude_deg": "-99.5158", + "elevation_ft": "1196", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Utopia", + "scheduled_service": "no" + }, + { + "id": "344691", + "ident": "US-4146", + "type": "small_airport", + "name": "McKinney Airport", + "latitude_deg": "41.95431", + "longitude_deg": "-75.64979", + "elevation_ft": "892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Susquehanna", + "scheduled_service": "no" + }, + { + "id": "344727", + "ident": "US-4147", + "type": "closed", + "name": "Coast Guard Air Station Biloxi Seaplane Base", + "latitude_deg": "30.38964", + "longitude_deg": "-88.85534", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Biloxi", + "scheduled_service": "no" + }, + { + "id": "344728", + "ident": "US-4148", + "type": "closed", + "name": "Jackson County Airport / Raby Field", + "latitude_deg": "30.37885", + "longitude_deg": "-88.53438", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Pascagoula", + "scheduled_service": "no" + }, + { + "id": "344730", + "ident": "US-4149", + "type": "closed", + "name": "Hancock County Airport", + "latitude_deg": "30.31598", + "longitude_deg": "-89.37858", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Bay St Louis", + "scheduled_service": "no" + }, + { + "id": "344735", + "ident": "US-4150", + "type": "closed", + "name": "Division Street Airport", + "latitude_deg": "45.50849", + "longitude_deg": "-122.47006", + "elevation_ft": "265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Gresham", + "scheduled_service": "no" + }, + { + "id": "344737", + "ident": "US-4151", + "type": "closed", + "name": "Big Ben Airstrip", + "latitude_deg": "31.9407", + "longitude_deg": "-108.81648", + "elevation_ft": "4413", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Animas", + "scheduled_service": "no" + }, + { + "id": "344738", + "ident": "US-4152", + "type": "closed", + "name": "Gover Airstrip", + "latitude_deg": "33.73211", + "longitude_deg": "-96.41664", + "elevation_ft": "538", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Denison", + "scheduled_service": "no" + }, + { + "id": "344739", + "ident": "US-4153", + "type": "closed", + "name": "Plato Airfield", + "latitude_deg": "34.60815", + "longitude_deg": "-117.57165", + "elevation_ft": "2887", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Adelanto", + "scheduled_service": "no" + }, + { + "id": "344740", + "ident": "US-4154", + "type": "small_airport", + "name": "Plato East Airstrip", + "latitude_deg": "34.61195", + "longitude_deg": "-117.56802", + "elevation_ft": "2874", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Adelanto", + "scheduled_service": "no" + }, + { + "id": "344741", + "ident": "US-4155", + "type": "closed", + "name": "Dairyland Southwest Airport", + "latitude_deg": "36.99194", + "longitude_deg": "-120.35624", + "elevation_ft": "158", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chowchilla", + "scheduled_service": "no" + }, + { + "id": "344742", + "ident": "US-4156", + "type": "closed", + "name": "Kleinhammer Field / Machado Dusters Airport", + "latitude_deg": "36.3165", + "longitude_deg": "-119.789", + "elevation_ft": "223", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lemoore", + "scheduled_service": "no" + }, + { + "id": "344743", + "ident": "US-4157", + "type": "small_airport", + "name": "Alto Colorado Ranch Airport", + "latitude_deg": "26.90146", + "longitude_deg": "-98.33837", + "elevation_ft": "267", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Encino", + "scheduled_service": "no" + }, + { + "id": "344744", + "ident": "US-4158", + "type": "closed", + "name": "Imperial Valley Cattle Company Number 1 Airstrip", + "latitude_deg": "32.47087", + "longitude_deg": "-111.75048", + "elevation_ft": "1703", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sells", + "scheduled_service": "no" + }, + { + "id": "344746", + "ident": "US-4159", + "type": "closed", + "name": "Republic Steel Airport", + "latitude_deg": "34.00204", + "longitude_deg": "-86.041", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Gadsden", + "scheduled_service": "no" + }, + { + "id": "344747", + "ident": "US-4160", + "type": "small_airport", + "name": "Cora Texas Landing Strip", + "latitude_deg": "30.13206", + "longitude_deg": "-91.12859", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "White Castle", + "scheduled_service": "no" + }, + { + "id": "344748", + "ident": "US-4161", + "type": "closed", + "name": "Air Farm Landing Strip", + "latitude_deg": "30.094016", + "longitude_deg": "-91.048843", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Donaldsonville", + "scheduled_service": "no" + }, + { + "id": "344749", + "ident": "US-4162", + "type": "closed", + "name": "Ragan Farms Airport", + "latitude_deg": "36.090911", + "longitude_deg": "-119.1803", + "elevation_ft": "354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodville", + "scheduled_service": "no" + }, + { + "id": "344750", + "ident": "US-4163", + "type": "heliport", + "name": "Carl R Darnall Army Medical Center Heliport", + "latitude_deg": "31.12706", + "longitude_deg": "-97.7829", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Hood", + "scheduled_service": "no" + }, + { + "id": "344751", + "ident": "US-4164", + "type": "small_airport", + "name": "Fort Hood Landing Strip 12 Hammer", + "latitude_deg": "31.21354", + "longitude_deg": "-97.84257", + "elevation_ft": "944", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Hood", + "scheduled_service": "no" + }, + { + "id": "344752", + "ident": "US-4165", + "type": "small_airport", + "name": "Fort Hood Cold Springs UAV Airstrip", + "latitude_deg": "31.25127", + "longitude_deg": "-97.63089", + "elevation_ft": "779", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gatesville", + "scheduled_service": "no" + }, + { + "id": "344753", + "ident": "US-4166", + "type": "heliport", + "name": "Fort Hood Northeast Heliport", + "latitude_deg": "31.25372", + "longitude_deg": "-97.588", + "elevation_ft": "859", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gatesville", + "scheduled_service": "no" + }, + { + "id": "344754", + "ident": "US-4167", + "type": "closed", + "name": "Flying J Ranch Airport", + "latitude_deg": "30.62715", + "longitude_deg": "-91.03317", + "elevation_ft": "87", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Pride", + "scheduled_service": "no" + }, + { + "id": "344763", + "ident": "US-4168", + "type": "small_airport", + "name": "Tucker Road Landing Field", + "latitude_deg": "32.33563", + "longitude_deg": "-111.34394", + "elevation_ft": "2066", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Marana", + "scheduled_service": "no" + }, + { + "id": "344764", + "ident": "US-4169", + "type": "small_airport", + "name": "Schuk Toak Farms Landing Field", + "latitude_deg": "32.19563", + "longitude_deg": "-111.27355", + "elevation_ft": "2307", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "344774", + "ident": "US-4170", + "type": "heliport", + "name": "New Milford Hospital Heliport", + "latitude_deg": "41.58052", + "longitude_deg": "-73.40733", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "New Milford", + "scheduled_service": "no" + }, + { + "id": "344777", + "ident": "US-4171", + "type": "small_airport", + "name": "Valencia Community Air Ranch", + "latitude_deg": "34.77909", + "longitude_deg": "-106.6384", + "elevation_ft": "5082", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Los Lunas", + "scheduled_service": "no" + }, + { + "id": "344778", + "ident": "US-4172", + "type": "small_airport", + "name": "El Dorado Substation Airstrip", + "latitude_deg": "35.79271", + "longitude_deg": "-115.01256", + "elevation_ft": "1821", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Searchlight", + "scheduled_service": "no", + "keywords": "KHEN" + }, + { + "id": "344779", + "ident": "US-4173", + "type": "closed", + "name": "Harquahala Ranches Airstrip", + "latitude_deg": "33.35663", + "longitude_deg": "-113.22205", + "elevation_ft": "12963", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "344780", + "ident": "US-4174", + "type": "small_airport", + "name": "Sundown Airstrip", + "latitude_deg": "34.66062", + "longitude_deg": "-114.01252", + "elevation_ft": "2133", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yucca", + "scheduled_service": "no" + }, + { + "id": "344781", + "ident": "US-4175", + "type": "small_airport", + "name": "Creosote Airstrip", + "latitude_deg": "34.646", + "longitude_deg": "-114.0095", + "elevation_ft": "2126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yucca", + "scheduled_service": "no" + }, + { + "id": "344783", + "ident": "US-4176", + "type": "small_airport", + "name": "McCracken Mine Airport", + "latitude_deg": "34.47307", + "longitude_deg": "-113.7211", + "elevation_ft": "2232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yucca", + "scheduled_service": "no" + }, + { + "id": "344785", + "ident": "US-4177", + "type": "small_airport", + "name": "Seventeen Mile Ranch Airport", + "latitude_deg": "34.71358", + "longitude_deg": "-113.92119", + "elevation_ft": "3226", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yucca", + "scheduled_service": "no" + }, + { + "id": "344786", + "ident": "US-4178", + "type": "closed", + "name": "Hillside Airport", + "latitude_deg": "34.41994", + "longitude_deg": "-112.91869", + "elevation_ft": "3862", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Hillside", + "scheduled_service": "no" + }, + { + "id": "344787", + "ident": "US-4179", + "type": "small_airport", + "name": "Hillside Airstrip", + "latitude_deg": "39.97716", + "longitude_deg": "-112.005", + "elevation_ft": "5125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Elberta", + "scheduled_service": "no" + }, + { + "id": "344789", + "ident": "US-4180", + "type": "closed", + "name": "Double O Ranch Airport", + "latitude_deg": "35.18879", + "longitude_deg": "-112.89615", + "elevation_ft": "4973", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Seligman", + "scheduled_service": "no" + }, + { + "id": "344790", + "ident": "US-4181", + "type": "small_airport", + "name": "Agua Caliente Airport", + "latitude_deg": "32.9915", + "longitude_deg": "-113.33574", + "elevation_ft": "482", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Dateland", + "scheduled_service": "no" + }, + { + "id": "344791", + "ident": "US-4182", + "type": "heliport", + "name": "UCHealth Highlands Ranch Hospital Heliport", + "latitude_deg": "39.55234", + "longitude_deg": "-105.00521", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Highlands Ranch", + "scheduled_service": "no" + }, + { + "id": "344792", + "ident": "US-4183", + "type": "closed", + "name": "Camas National Wildlife Refuge Airstrip", + "latitude_deg": "43.9576", + "longitude_deg": "-112.26993", + "elevation_ft": "4795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Hamer", + "scheduled_service": "no" + }, + { + "id": "344802", + "ident": "US-4184", + "type": "small_airport", + "name": "Burntfork Airport", + "latitude_deg": "41.12042", + "longitude_deg": "-110.87208", + "elevation_ft": "7618", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Evanston", + "scheduled_service": "no" + }, + { + "id": "344815", + "ident": "US-4185", + "type": "seaplane_base", + "name": "Cedarville Reservoir Seaplane Base", + "latitude_deg": "41.204361", + "longitude_deg": "-85.014361", + "elevation_ft": "781", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Leo-Cedarville", + "scheduled_service": "no", + "local_code": "IN4" + }, + { + "id": "344816", + "ident": "US-4186", + "type": "heliport", + "name": "Sabine Pilots Heliport", + "latitude_deg": "29.935694", + "longitude_deg": "-93.9855", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port Arthur", + "scheduled_service": "no", + "gps_code": "00TA", + "local_code": "00TA" + }, + { + "id": "344819", + "ident": "US-4187", + "type": "small_airport", + "name": "Denney Airport", + "latitude_deg": "35.595846", + "longitude_deg": "-85.718814", + "elevation_ft": "898", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "McMinnville", + "scheduled_service": "no", + "gps_code": "11TN", + "local_code": "11TN" + }, + { + "id": "344824", + "ident": "US-4188", + "type": "small_airport", + "name": "Foshee Airport", + "latitude_deg": "32.433222", + "longitude_deg": "-86.374592", + "elevation_ft": "143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Millbrook", + "scheduled_service": "no", + "gps_code": "28AL", + "local_code": "28AL" + }, + { + "id": "344833", + "ident": "US-4189", + "type": "small_airport", + "name": "Fly Sky Airport", + "latitude_deg": "35.629167", + "longitude_deg": "-81.34375", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Hickory", + "scheduled_service": "no", + "gps_code": "36NC", + "local_code": "36NC" + }, + { + "id": "344836", + "ident": "US-4190", + "type": "heliport", + "name": "Circuit of the Americas South Heliport", + "latitude_deg": "30.12502", + "longitude_deg": "-97.63734", + "elevation_ft": "619", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Valle", + "scheduled_service": "no" + }, + { + "id": "344838", + "ident": "US-4191", + "type": "closed", + "name": "Owls Head Farm Airport", + "latitude_deg": "30.55934", + "longitude_deg": "-86.07754", + "elevation_ft": "132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Defuniak Springs", + "scheduled_service": "no" + }, + { + "id": "344839", + "ident": "US-4192", + "type": "small_airport", + "name": "Harrison Airport", + "latitude_deg": "45.69576", + "longitude_deg": "-111.77325", + "elevation_ft": "5015", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Harrison", + "scheduled_service": "no" + }, + { + "id": "344840", + "ident": "US-4193", + "type": "small_airport", + "name": "Hamilton Triple C Farms Airport", + "latitude_deg": "43.61605", + "longitude_deg": "-111.69417", + "elevation_ft": "5023", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Ririe", + "scheduled_service": "no" + }, + { + "id": "344841", + "ident": "US-4194", + "type": "closed", + "name": "Alexander Airport", + "latitude_deg": "30.51051", + "longitude_deg": "-89.68747", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Picayune", + "scheduled_service": "no" + }, + { + "id": "344843", + "ident": "US-4195", + "type": "closed", + "name": "Rankin Airport", + "latitude_deg": "36.152176", + "longitude_deg": "-119.251071", + "elevation_ft": "302", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tulare", + "scheduled_service": "no" + }, + { + "id": "344844", + "ident": "US-4196", + "type": "closed", + "name": "Moores Airport", + "latitude_deg": "36.24215", + "longitude_deg": "-119.34361", + "elevation_ft": "299", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tulare", + "scheduled_service": "no" + }, + { + "id": "344847", + "ident": "US-4197", + "type": "small_airport", + "name": "Frost Ranch Airport", + "latitude_deg": "29.92751", + "longitude_deg": "-100.00272", + "elevation_ft": "1829", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Barksdale", + "scheduled_service": "no", + "keywords": "Hackberry" + }, + { + "id": "344848", + "ident": "US-4198", + "type": "small_airport", + "name": "Taylor Ranch Airport", + "latitude_deg": "30.12543", + "longitude_deg": "-100.78048", + "elevation_ft": "2025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no" + }, + { + "id": "344849", + "ident": "US-4199", + "type": "closed", + "name": "Willie B Whitehead Ranch Airport", + "latitude_deg": "30.21146", + "longitude_deg": "-100.75588", + "elevation_ft": "2109", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no" + }, + { + "id": "344850", + "ident": "US-4200", + "type": "small_airport", + "name": "Flying W Ranch Airport", + "latitude_deg": "30.55811", + "longitude_deg": "-101.02685", + "elevation_ft": "2201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no" + }, + { + "id": "344851", + "ident": "US-4201", + "type": "closed", + "name": "Trans Pecos Ranch Airprot", + "latitude_deg": "30.74769", + "longitude_deg": "-102.46339", + "elevation_ft": "3413", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no" + }, + { + "id": "344852", + "ident": "US-4202", + "type": "small_airport", + "name": "McKenna Ranch Airport", + "latitude_deg": "30.03199", + "longitude_deg": "-100.87202", + "elevation_ft": "2082", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no" + }, + { + "id": "344854", + "ident": "US-4203", + "type": "closed", + "name": "Causey Landing Field", + "latitude_deg": "33.83962", + "longitude_deg": "-103.06963", + "elevation_ft": "3964", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Causey", + "scheduled_service": "no" + }, + { + "id": "344859", + "ident": "US-4204", + "type": "heliport", + "name": "Grand Canyon Ranch West Heliport", + "latitude_deg": "35.87896", + "longitude_deg": "-113.99572", + "elevation_ft": "4114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Meadview", + "scheduled_service": "no" + }, + { + "id": "344860", + "ident": "US-4205", + "type": "closed", + "name": "Grand Canyon Ranch East Heliport", + "latitude_deg": "35.87763", + "longitude_deg": "-113.98092", + "elevation_ft": "4173", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Meadview", + "scheduled_service": "no" + }, + { + "id": "344864", + "ident": "US-4206", + "type": "closed", + "name": "Tordillo Camp Airport", + "latitude_deg": "28.06766", + "longitude_deg": "-99.94292", + "elevation_ft": "627", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Encinal", + "scheduled_service": "no" + }, + { + "id": "344865", + "ident": "US-4207", + "type": "small_airport", + "name": "Quatro Ranch Airport", + "latitude_deg": "28.58135", + "longitude_deg": "-99.65251", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crystal City", + "scheduled_service": "no" + }, + { + "id": "344866", + "ident": "US-4208", + "type": "closed", + "name": "W5 Ranch Airport", + "latitude_deg": "29.0196", + "longitude_deg": "-99.67703", + "elevation_ft": "787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Batesville", + "scheduled_service": "no" + }, + { + "id": "344867", + "ident": "US-4209", + "type": "closed", + "name": "Kincaid Ranch Airport", + "latitude_deg": "29.08619", + "longitude_deg": "-99.56182", + "elevation_ft": "892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Batesville", + "scheduled_service": "no" + }, + { + "id": "344868", + "ident": "US-4210", + "type": "closed", + "name": "AVK Ranch Airport", + "latitude_deg": "29.06225", + "longitude_deg": "-99.47081", + "elevation_ft": "741", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Batesville", + "scheduled_service": "no" + }, + { + "id": "344869", + "ident": "US-4211", + "type": "closed", + "name": "Lyles Ranch Airport", + "latitude_deg": "29.07823", + "longitude_deg": "-99.88502", + "elevation_ft": "836", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "La Pryor", + "scheduled_service": "no" + }, + { + "id": "344870", + "ident": "US-4212", + "type": "small_airport", + "name": "Chaparosa Ranch Airport", + "latitude_deg": "28.88995", + "longitude_deg": "-99.85254", + "elevation_ft": "699", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "La Pryor", + "scheduled_service": "no", + "keywords": "La Paloma Ranch" + }, + { + "id": "344871", + "ident": "US-4213", + "type": "closed", + "name": "Garwood Airport", + "latitude_deg": "29.44598", + "longitude_deg": "-96.40422", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garwood", + "scheduled_service": "no" + }, + { + "id": "344872", + "ident": "US-4214", + "type": "closed", + "name": "Laguna Ranch Airport", + "latitude_deg": "29.07701", + "longitude_deg": "-99.34175", + "elevation_ft": "659", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pearsall", + "scheduled_service": "no" + }, + { + "id": "344873", + "ident": "US-4215", + "type": "small_airport", + "name": "Southern Pine Straw Airport", + "latitude_deg": "30.36255", + "longitude_deg": "-87.53872", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Elberta", + "scheduled_service": "no" + }, + { + "id": "344874", + "ident": "US-4216", + "type": "small_airport", + "name": "Antelope Springs Ranch Airport", + "latitude_deg": "43.41404", + "longitude_deg": "-106.58489", + "elevation_ft": "5230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Kaycee", + "scheduled_service": "no" + }, + { + "id": "344876", + "ident": "US-4217", + "type": "small_airport", + "name": "Oasis Ranch Airport", + "latitude_deg": "37.49377", + "longitude_deg": "-117.911", + "elevation_ft": "5013", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Big Pine", + "scheduled_service": "no" + }, + { + "id": "344878", + "ident": "US-4218", + "type": "small_airport", + "name": "Mynning Airport", + "latitude_deg": "42.23346", + "longitude_deg": "-84.00172", + "elevation_ft": "948", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Chelsea", + "scheduled_service": "no" + }, + { + "id": "344879", + "ident": "US-4219", + "type": "small_airport", + "name": "Versailles Airport", + "latitude_deg": "39.05985", + "longitude_deg": "-85.24456", + "elevation_ft": "971", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Versailles", + "scheduled_service": "no" + }, + { + "id": "344880", + "ident": "US-4220", + "type": "heliport", + "name": "6080 Center Drive Helipad", + "latitude_deg": "33.97693", + "longitude_deg": "-118.39181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "344881", + "ident": "US-4221", + "type": "heliport", + "name": "6100 Center Drive Helipad", + "latitude_deg": "33.97728", + "longitude_deg": "-118.39244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "344882", + "ident": "US-4222", + "type": "heliport", + "name": "6060 Center Drive Helipad", + "latitude_deg": "33.97603", + "longitude_deg": "-118.39093", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "344883", + "ident": "US-4223", + "type": "heliport", + "name": "Howard Hughes Tower Helipad", + "latitude_deg": "33.9785", + "longitude_deg": "-118.39368", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "344884", + "ident": "US-4224", + "type": "heliport", + "name": "Northpoint Helipad", + "latitude_deg": "33.98013", + "longitude_deg": "-118.394", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "344885", + "ident": "US-4225", + "type": "heliport", + "name": "AON Center Helipad", + "latitude_deg": "34.04914", + "longitude_deg": "-118.25715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "344886", + "ident": "US-4226", + "type": "heliport", + "name": "550 South Hope Street Helipad", + "latitude_deg": "34.04985", + "longitude_deg": "-118.25543", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "344887", + "ident": "US-4227", + "type": "closed", + "name": "1221 SW 1st Avenue Helipad", + "latitude_deg": "45.51422", + "longitude_deg": "-122.67606", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no" + }, + { + "id": "344888", + "ident": "US-4228", + "type": "small_airport", + "name": "Riverby Ranch Airport", + "latitude_deg": "33.83057", + "longitude_deg": "-95.92814", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Telephone", + "scheduled_service": "no" + }, + { + "id": "344889", + "ident": "US-4229", + "type": "closed", + "name": "Koch Airport", + "latitude_deg": "35.505", + "longitude_deg": "-95.50941", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Checotah", + "scheduled_service": "no" + }, + { + "id": "344890", + "ident": "US-4230", + "type": "small_airport", + "name": "Galichia Airport", + "latitude_deg": "37.5028", + "longitude_deg": "-94.7102", + "elevation_ft": "954", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Pittsburg", + "scheduled_service": "no" + }, + { + "id": "344901", + "ident": "US-4231", + "type": "closed", + "name": "Old Bolivar Airport", + "latitude_deg": "37.60578", + "longitude_deg": "-93.43366", + "elevation_ft": "1112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Bolivar", + "scheduled_service": "no" + }, + { + "id": "344909", + "ident": "US-4232", + "type": "small_airport", + "name": "Phillips Airport", + "latitude_deg": "40.07502", + "longitude_deg": "-91.79001", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lewistown", + "scheduled_service": "no" + }, + { + "id": "344912", + "ident": "US-4233", + "type": "small_airport", + "name": "Harrison Field", + "latitude_deg": "33.721347", + "longitude_deg": "-96.638389", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Denison", + "scheduled_service": "no", + "gps_code": "58TE", + "local_code": "58TE" + }, + { + "id": "344920", + "ident": "US-4234", + "type": "closed", + "name": "Halm Ranch Airport", + "latitude_deg": "30.19397", + "longitude_deg": "-98.20461", + "elevation_ft": "1366", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dripping Springs", + "scheduled_service": "no" + }, + { + "id": "344921", + "ident": "US-4235", + "type": "heliport", + "name": "Houston Methodist The Woodlands Hospital Heliport", + "latitude_deg": "30.20434", + "longitude_deg": "-95.45286", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Shenandoah", + "scheduled_service": "no", + "gps_code": "31TA", + "local_code": "31TA" + }, + { + "id": "344922", + "ident": "US-4236", + "type": "closed", + "name": "Nyack Seaplane Base", + "latitude_deg": "41.0901", + "longitude_deg": "-73.91326", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Nyack", + "scheduled_service": "no" + }, + { + "id": "344923", + "ident": "US-4237", + "type": "closed", + "name": "Mountain View Airport", + "latitude_deg": "41.24529", + "longitude_deg": "-110.35615", + "elevation_ft": "7070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Fort Bridger", + "scheduled_service": "no" + }, + { + "id": "344924", + "ident": "US-4238", + "type": "small_airport", + "name": "Pilots Point Airport", + "latitude_deg": "36.59581", + "longitude_deg": "-93.629758", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Shell Knob", + "scheduled_service": "no", + "gps_code": "5MO7", + "local_code": "5MO7" + }, + { + "id": "344926", + "ident": "US-4239", + "type": "closed", + "name": "Tillamook Coastway Number 1 Airport", + "latitude_deg": "45.45452", + "longitude_deg": "-123.80879", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Tillamook", + "scheduled_service": "no" + }, + { + "id": "344927", + "ident": "US-4240", + "type": "closed", + "name": "Truckee Intermediate Field", + "latitude_deg": "39.35795", + "longitude_deg": "-120.1368", + "elevation_ft": "5832", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Truckee", + "scheduled_service": "no", + "keywords": "Airport Flats" + }, + { + "id": "344928", + "ident": "US-4241", + "type": "closed", + "name": "D-Bar Ranch Airport", + "latitude_deg": "32.04028", + "longitude_deg": "-100.46197", + "elevation_ft": "2516", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Robert Lee", + "scheduled_service": "no" + }, + { + "id": "344929", + "ident": "US-4242", + "type": "closed", + "name": "Zellwin Farms Airport", + "latitude_deg": "28.72584", + "longitude_deg": "-81.63593", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Zellwood", + "scheduled_service": "no" + }, + { + "id": "344930", + "ident": "US-4243", + "type": "small_airport", + "name": "Caineville Airport", + "latitude_deg": "38.34051", + "longitude_deg": "-111.03077", + "elevation_ft": "4642", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Torrey", + "scheduled_service": "no" + }, + { + "id": "344931", + "ident": "US-4244", + "type": "small_airport", + "name": "Poway Field Gliderport", + "latitude_deg": "32.95455", + "longitude_deg": "-117.01223", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Poway", + "scheduled_service": "no" + }, + { + "id": "344932", + "ident": "US-4245", + "type": "small_airport", + "name": "Neilson Wash Airport", + "latitude_deg": "38.36093", + "longitude_deg": "-110.88837", + "elevation_ft": "4705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Torrey", + "scheduled_service": "no" + }, + { + "id": "344933", + "ident": "US-4246", + "type": "small_airport", + "name": "Bullfrog Creek Airstrip", + "latitude_deg": "37.85802", + "longitude_deg": "-110.84807", + "elevation_ft": "5089", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Torrey", + "scheduled_service": "no" + }, + { + "id": "344934", + "ident": "US-4247", + "type": "small_airport", + "name": "Sids Strip", + "latitude_deg": "30.81423", + "longitude_deg": "-85.57195", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Chipley", + "scheduled_service": "no" + }, + { + "id": "344936", + "ident": "US-4248", + "type": "heliport", + "name": "US Border Patrol Comstock Station Heliport", + "latitude_deg": "29.6417", + "longitude_deg": "-101.13042", + "elevation_ft": "1447", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comstock", + "scheduled_service": "no" + }, + { + "id": "344938", + "ident": "US-4249", + "type": "closed", + "name": "South Apache Ranch Airport", + "latitude_deg": "27.942575", + "longitude_deg": "-99.923995", + "elevation_ft": "531", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laredo", + "scheduled_service": "no" + }, + { + "id": "344942", + "ident": "US-4250", + "type": "closed", + "name": "Bachelor Field", + "latitude_deg": "31.0224", + "longitude_deg": "-87.41476", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Atmore", + "scheduled_service": "no" + }, + { + "id": "344943", + "ident": "US-4251", + "type": "closed", + "name": "Hopville Airport", + "latitude_deg": "44.80513", + "longitude_deg": "-123.13225", + "elevation_ft": "167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Independence", + "scheduled_service": "no" + }, + { + "id": "344944", + "ident": "US-4252", + "type": "small_airport", + "name": "Short Road Airstrip", + "latitude_deg": "39.18857", + "longitude_deg": "-119.31662", + "elevation_ft": "4567", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Dayton", + "scheduled_service": "no" + }, + { + "id": "344945", + "ident": "US-4253", + "type": "small_airport", + "name": "Huffman Prairie Flying Field", + "latitude_deg": "39.80424", + "longitude_deg": "-84.06429", + "elevation_ft": "804", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dayton", + "scheduled_service": "no", + "keywords": "Huffman Field" + }, + { + "id": "344946", + "ident": "US-4254", + "type": "small_airport", + "name": "Big Meadow Airstrip", + "latitude_deg": "39.17177", + "longitude_deg": "-119.44333", + "elevation_ft": "6649", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Dayton", + "scheduled_service": "no" + }, + { + "id": "344947", + "ident": "US-4255", + "type": "closed", + "name": "Foster Field", + "latitude_deg": "28.69561", + "longitude_deg": "-97.27677", + "elevation_ft": "153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Goliad", + "scheduled_service": "no", + "keywords": "Aloe Auxiliary Airfield Number 10" + }, + { + "id": "344948", + "ident": "US-4256", + "type": "small_airport", + "name": "Elkton Airfield", + "latitude_deg": "43.6235", + "longitude_deg": "-123.57557", + "elevation_ft": "113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Elkton", + "scheduled_service": "no" + }, + { + "id": "344950", + "ident": "US-4257", + "type": "heliport", + "name": "InterContinental Los Angeles Century City Helipad", + "latitude_deg": "34.05413", + "longitude_deg": "-118.4125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "344951", + "ident": "US-4258", + "type": "closed", + "name": "McCarrell Airport", + "latitude_deg": "35.16033", + "longitude_deg": "-109.49706", + "elevation_ft": "5787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Chambers", + "scheduled_service": "no" + }, + { + "id": "344952", + "ident": "US-4259", + "type": "closed", + "name": "Gingrich Airport", + "latitude_deg": "40.16153", + "longitude_deg": "-75.58369", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Spring City", + "scheduled_service": "no" + }, + { + "id": "344953", + "ident": "US-4260", + "type": "closed", + "name": "Muskrat Landing Strip", + "latitude_deg": "42.88889", + "longitude_deg": "-107.80529", + "elevation_ft": "6089", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Riverton", + "scheduled_service": "no" + }, + { + "id": "344954", + "ident": "US-4261", + "type": "closed", + "name": "Willow Springs Draw Airport", + "latitude_deg": "42.78146", + "longitude_deg": "-107.62511", + "elevation_ft": "6657", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Riverton", + "scheduled_service": "no" + }, + { + "id": "344955", + "ident": "US-4262", + "type": "closed", + "name": "Stahmann Farms Airfield (1958)", + "latitude_deg": "32.19", + "longitude_deg": "-106.75", + "elevation_ft": "3850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Mesquite", + "scheduled_service": "no" + }, + { + "id": "344956", + "ident": "US-4263", + "type": "closed", + "name": "Walker Ranch Private Airport", + "latitude_deg": "28.05535", + "longitude_deg": "-81.4048", + "elevation_ft": "67", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Poinciana", + "scheduled_service": "no" + }, + { + "id": "344957", + "ident": "US-4264", + "type": "closed", + "name": "US Naval Reservation Homestead Heliport", + "latitude_deg": "25.37271", + "longitude_deg": "-80.42719", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Homestead", + "scheduled_service": "no" + }, + { + "id": "344958", + "ident": "US-4265", + "type": "small_airport", + "name": "Sail Park Airstrip", + "latitude_deg": "39.33959", + "longitude_deg": "-119.39216", + "elevation_ft": "4259", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Silver Springs", + "scheduled_service": "no", + "keywords": "Misfits Flat" + }, + { + "id": "344959", + "ident": "US-4266", + "type": "closed", + "name": "Mooneys Mudhole Airstrip", + "latitude_deg": "39.37366", + "longitude_deg": "-119.17745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Silver Springs", + "scheduled_service": "no" + }, + { + "id": "344960", + "ident": "US-4267", + "type": "closed", + "name": "Bowling Alley Airstrip", + "latitude_deg": "39.36911", + "longitude_deg": "-119.1599", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Silver Springs", + "scheduled_service": "no" + }, + { + "id": "344961", + "ident": "US-4268", + "type": "closed", + "name": "Wild Horses Airstrip", + "latitude_deg": "39.34959", + "longitude_deg": "-119.13121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Silver Springs", + "scheduled_service": "no" + }, + { + "id": "344963", + "ident": "US-4269", + "type": "small_airport", + "name": "Good For All Airstrip", + "latitude_deg": "39.29383", + "longitude_deg": "-119.17876", + "elevation_ft": "4209", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Silver Springs", + "scheduled_service": "no" + }, + { + "id": "344964", + "ident": "US-4270", + "type": "small_airport", + "name": "Railroad Crossing Airstrip", + "latitude_deg": "39.27018", + "longitude_deg": "-119.27709", + "elevation_ft": "4262", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Silver Springs", + "scheduled_service": "no" + }, + { + "id": "344965", + "ident": "US-4271", + "type": "small_airport", + "name": "Lookout Airstrip", + "latitude_deg": "39.24729", + "longitude_deg": "-119.19186", + "elevation_ft": "5217", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Silver Springs", + "scheduled_service": "no" + }, + { + "id": "344966", + "ident": "US-4272", + "type": "small_airport", + "name": "Far East Airstrip", + "latitude_deg": "39.32819", + "longitude_deg": "-118.99023", + "elevation_ft": "4281", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Silver Springs", + "scheduled_service": "no" + }, + { + "id": "344972", + "ident": "US-4273", + "type": "closed", + "name": "Sunrise Airfield", + "latitude_deg": "35.29422", + "longitude_deg": "-111.00063", + "elevation_ft": "4764", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Leupp", + "scheduled_service": "no" + }, + { + "id": "344973", + "ident": "US-4274", + "type": "heliport", + "name": "Sunrise Helipad", + "latitude_deg": "35.29367", + "longitude_deg": "-111.00055", + "elevation_ft": "4747", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Leupp", + "scheduled_service": "no" + }, + { + "id": "344974", + "ident": "US-4275", + "type": "heliport", + "name": "Warner Center Marriott Woodland Hills Helipad", + "latitude_deg": "34.1788", + "longitude_deg": "-118.6038", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodland Hills", + "scheduled_service": "no" + }, + { + "id": "344975", + "ident": "US-4276", + "type": "heliport", + "name": "Warner Center Plaza V Helipad", + "latitude_deg": "34.1787", + "longitude_deg": "-118.6028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodland Hills", + "scheduled_service": "no" + }, + { + "id": "344976", + "ident": "US-4277", + "type": "heliport", + "name": "Warner Center Plaza VI Helipad", + "latitude_deg": "34.1788", + "longitude_deg": "-118.602", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodland Hills", + "scheduled_service": "no" + }, + { + "id": "344977", + "ident": "US-4278", + "type": "heliport", + "name": "Warner Center Plaza III Helipad", + "latitude_deg": "34.1788", + "longitude_deg": "-118.601", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodland Hills", + "scheduled_service": "no" + }, + { + "id": "344978", + "ident": "US-4279", + "type": "heliport", + "name": "Warner Center Plaza II Helipad", + "latitude_deg": "34.1788", + "longitude_deg": "-118.5998", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodland Hills", + "scheduled_service": "no" + }, + { + "id": "344979", + "ident": "US-4280", + "type": "heliport", + "name": "Anthem Blue Cross Heliport", + "latitude_deg": "34.1806", + "longitude_deg": "-118.59942", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodland Hills", + "scheduled_service": "no" + }, + { + "id": "344980", + "ident": "US-4281", + "type": "heliport", + "name": "Warner Corporate Center East Helipad", + "latitude_deg": "34.18768", + "longitude_deg": "-118.59596", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodland Hills", + "scheduled_service": "no" + }, + { + "id": "344981", + "ident": "US-4282", + "type": "heliport", + "name": "Warner Corporate Center West Helipad", + "latitude_deg": "34.1877", + "longitude_deg": "-118.5968", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodland Hills", + "scheduled_service": "no" + }, + { + "id": "344983", + "ident": "US-4283", + "type": "heliport", + "name": "Trillium Building East Tower Helipad", + "latitude_deg": "34.18512", + "longitude_deg": "-118.59616", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodland Hills", + "scheduled_service": "no" + }, + { + "id": "344984", + "ident": "US-4284", + "type": "heliport", + "name": "Trillium Building West Tower Helipad", + "latitude_deg": "34.18511", + "longitude_deg": "-118.59689", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodland Hills", + "scheduled_service": "no" + }, + { + "id": "344985", + "ident": "US-4285", + "type": "heliport", + "name": "Hilton Woodland Hills/Los Angeles Helipad", + "latitude_deg": "34.18621", + "longitude_deg": "-118.59672", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodland Hills", + "scheduled_service": "no" + }, + { + "id": "344986", + "ident": "US-4286", + "type": "heliport", + "name": "Farmers Plaza South Helipad", + "latitude_deg": "34.18453", + "longitude_deg": "-118.60196", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodland Hills", + "scheduled_service": "no" + }, + { + "id": "344988", + "ident": "US-4287", + "type": "heliport", + "name": "Farmers Plaza North Helipad", + "latitude_deg": "34.18519", + "longitude_deg": "-118.60242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodland Hills", + "scheduled_service": "no" + }, + { + "id": "344989", + "ident": "US-4288", + "type": "heliport", + "name": "Hilton Los Angeles/Universal City Helipad", + "latitude_deg": "34.13639", + "longitude_deg": "-118.35808", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Universal City", + "scheduled_service": "no" + }, + { + "id": "344990", + "ident": "US-4289", + "type": "heliport", + "name": "Universal City Plaza Helipad", + "latitude_deg": "34.13832", + "longitude_deg": "-118.36186", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Universal City", + "scheduled_service": "no" + }, + { + "id": "344991", + "ident": "US-4290", + "type": "heliport", + "name": "Lumina Hollywood Helipad", + "latitude_deg": "34.09844", + "longitude_deg": "-118.31946", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "344992", + "ident": "US-4291", + "type": "heliport", + "name": "Emerson College Los Angeles Center Helipad", + "latitude_deg": "34.09774", + "longitude_deg": "-118.31975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "344993", + "ident": "US-4292", + "type": "heliport", + "name": "Hollywood Proper Residences Helipad", + "latitude_deg": "34.0996", + "longitude_deg": "-118.32334", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "344994", + "ident": "US-4293", + "type": "heliport", + "name": "Loews Hollywood Hotel Helipad", + "latitude_deg": "34.10318", + "longitude_deg": "-118.33931", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "344995", + "ident": "US-4294", + "type": "closed", + "name": "Burdette / Dycer Airport", + "latitude_deg": "33.95094", + "longitude_deg": "-118.3134", + "elevation_ft": "207", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "344996", + "ident": "US-4295", + "type": "closed", + "name": "Aero Corporation of California Airport", + "latitude_deg": "33.95369", + "longitude_deg": "-118.31349", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "344997", + "ident": "US-4296", + "type": "heliport", + "name": "Rambla Pacifico Helipad", + "latitude_deg": "34.05663", + "longitude_deg": "-118.64903", + "elevation_ft": "1432", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Malibu", + "scheduled_service": "no" + }, + { + "id": "344998", + "ident": "US-4297", + "type": "heliport", + "name": "Malibu Rocky Oaks Estate Vineyards Helipad", + "latitude_deg": "34.102798", + "longitude_deg": "-118.809142", + "elevation_ft": "2094", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Malibu", + "scheduled_service": "no" + }, + { + "id": "344999", + "ident": "US-4298", + "type": "heliport", + "name": "Pelican Hill Golf Club Helipad", + "latitude_deg": "33.5857", + "longitude_deg": "-117.8411", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Newport Coast", + "scheduled_service": "no" + }, + { + "id": "345000", + "ident": "US-4299", + "type": "closed", + "name": "Pinecastle Targeting Airstrip", + "latitude_deg": "29.11781", + "longitude_deg": "-81.71622", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Altoona", + "scheduled_service": "no" + }, + { + "id": "345001", + "ident": "US-4300", + "type": "closed", + "name": "Camp Ocala Airport", + "latitude_deg": "29.10476", + "longitude_deg": "-81.62976", + "elevation_ft": "64", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Altoona", + "scheduled_service": "no" + }, + { + "id": "345002", + "ident": "US-4301", + "type": "heliport", + "name": "Camp Ocala Heliport", + "latitude_deg": "29.105389", + "longitude_deg": "-81.629949", + "elevation_ft": "61", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Altoona", + "scheduled_service": "no" + }, + { + "id": "345003", + "ident": "US-4302", + "type": "closed", + "name": "Caddo Airport", + "latitude_deg": "34.21828", + "longitude_deg": "-118.52302", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Reseda", + "scheduled_service": "no" + }, + { + "id": "345004", + "ident": "US-4303", + "type": "small_airport", + "name": "Mountain View Airfield", + "latitude_deg": "37.900694", + "longitude_deg": "-84.177778", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Winchester,", + "scheduled_service": "no", + "gps_code": "78KY", + "local_code": "78KY" + }, + { + "id": "345005", + "ident": "US-4304", + "type": "small_airport", + "name": "Naquin Field", + "latitude_deg": "29.735178", + "longitude_deg": "-90.700701", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Raceland", + "scheduled_service": "no", + "gps_code": "78LA", + "local_code": "78LA" + }, + { + "id": "345007", + "ident": "US-4305", + "type": "small_airport", + "name": "Clarks Field", + "latitude_deg": "38.272179", + "longitude_deg": "-83.578744", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "84KY", + "local_code": "84KY" + }, + { + "id": "345009", + "ident": "US-4306", + "type": "closed", + "name": "Astor Airport", + "latitude_deg": "29.16865", + "longitude_deg": "-81.56378", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Astor", + "scheduled_service": "no" + }, + { + "id": "345010", + "ident": "US-4307", + "type": "heliport", + "name": "Hualapai Tribe EMS Heliport", + "latitude_deg": "35.53706", + "longitude_deg": "-113.42031", + "elevation_ft": "4892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peach Springs", + "scheduled_service": "no" + }, + { + "id": "345011", + "ident": "US-4308", + "type": "closed", + "name": "Peach Springs Airport", + "latitude_deg": "35.54202", + "longitude_deg": "-113.41761", + "elevation_ft": "4951", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peach Springs", + "scheduled_service": "no" + }, + { + "id": "345012", + "ident": "US-4309", + "type": "closed", + "name": "Saugatuck-Douglas Airport", + "latitude_deg": "42.61833", + "longitude_deg": "-86.206", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Fennville", + "scheduled_service": "no" + }, + { + "id": "345013", + "ident": "US-4310", + "type": "closed", + "name": "Imperial Airport", + "latitude_deg": "31.27805", + "longitude_deg": "-102.69305", + "elevation_ft": "2391", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Imperial", + "scheduled_service": "no" + }, + { + "id": "345025", + "ident": "US-4311", + "type": "closed", + "name": "Old Vaughn Airport", + "latitude_deg": "34.58787", + "longitude_deg": "-105.20646", + "elevation_ft": "6075", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Vaughn", + "scheduled_service": "no" + }, + { + "id": "345026", + "ident": "US-4312", + "type": "closed", + "name": "White Sands Road Airstrip", + "latitude_deg": "32.39829", + "longitude_deg": "-106.39414", + "elevation_ft": "3977", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "White Sands", + "scheduled_service": "no" + }, + { + "id": "345034", + "ident": "US-4313", + "type": "closed", + "name": "Hat Ranch Airport", + "latitude_deg": "32.02495", + "longitude_deg": "-105.88898", + "elevation_ft": "5270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Dell City", + "scheduled_service": "no" + }, + { + "id": "345035", + "ident": "US-4314", + "type": "closed", + "name": "Cornudas Ranch Airport", + "latitude_deg": "32.07719", + "longitude_deg": "-105.52705", + "elevation_ft": "4887", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Dell City", + "scheduled_service": "no" + }, + { + "id": "345037", + "ident": "US-4315", + "type": "heliport", + "name": "EAMC Freestanding Emergency Department Heliport", + "latitude_deg": "32.584275", + "longitude_deg": "-85.499886", + "elevation_ft": "619", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "AL85", + "local_code": "AL85" + }, + { + "id": "345040", + "ident": "US-4316", + "type": "small_airport", + "name": "Klusaw Airport", + "latitude_deg": "31.8779", + "longitude_deg": "-109.5232", + "elevation_ft": "4724", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Pearce", + "scheduled_service": "no" + }, + { + "id": "345041", + "ident": "US-4317", + "type": "closed", + "name": "Turkey Creek Airport", + "latitude_deg": "31.8863", + "longitude_deg": "-109.4828", + "elevation_ft": "4934", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Pearce", + "scheduled_service": "no" + }, + { + "id": "345042", + "ident": "US-4318", + "type": "closed", + "name": "Nelson Lake Targeting Airfield", + "latitude_deg": "35.42161", + "longitude_deg": "-116.76205", + "elevation_ft": "3069", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fort Irwin", + "scheduled_service": "no" + }, + { + "id": "345043", + "ident": "US-4319", + "type": "small_airport", + "name": "Nelson Lake Airport", + "latitude_deg": "35.427666", + "longitude_deg": "-116.761608", + "elevation_ft": "3076", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fort Irwin", + "scheduled_service": "no" + }, + { + "id": "345047", + "ident": "US-4320", + "type": "closed", + "name": "Fuego Mountain Airport", + "latitude_deg": "42.64236", + "longitude_deg": "-121.4783", + "elevation_ft": "5190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Chiloquin", + "scheduled_service": "no" + }, + { + "id": "345049", + "ident": "US-4321", + "type": "closed", + "name": "Flying L Airport", + "latitude_deg": "38.58915", + "longitude_deg": "-89.8019", + "elevation_ft": "443", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lebanon", + "scheduled_service": "no" + }, + { + "id": "345050", + "ident": "US-4322", + "type": "closed", + "name": "Henke Field", + "latitude_deg": "38.86579", + "longitude_deg": "-89.98536", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Edwardsville", + "scheduled_service": "no" + }, + { + "id": "345052", + "ident": "US-4323", + "type": "heliport", + "name": "Sentara Northern Virginia Medical Center Heliport", + "latitude_deg": "38.63836", + "longitude_deg": "-77.28654", + "elevation_ft": "193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Woodbridge", + "scheduled_service": "no" + }, + { + "id": "345053", + "ident": "US-4324", + "type": "heliport", + "name": "Parkview Regional Hospital Heliport", + "latitude_deg": "31.67598", + "longitude_deg": "-96.48126", + "elevation_ft": "515", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mexia", + "scheduled_service": "no" + }, + { + "id": "345054", + "ident": "US-4325", + "type": "closed", + "name": "Big Lake Airport", + "latitude_deg": "31.12799", + "longitude_deg": "-101.15519", + "elevation_ft": "2550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Barnhart", + "scheduled_service": "no" + }, + { + "id": "345055", + "ident": "US-4326", + "type": "closed", + "name": "Toyah Auxiliary Airfield", + "latitude_deg": "31.31953", + "longitude_deg": "-103.86513", + "elevation_ft": "3018", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Toyah", + "scheduled_service": "no" + }, + { + "id": "345056", + "ident": "US-4327", + "type": "heliport", + "name": "John Galt Heliport", + "latitude_deg": "40.636389", + "longitude_deg": "-105.050833", + "elevation_ft": "5100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Fort Collins", + "scheduled_service": "no", + "gps_code": "CO86", + "local_code": "CO86" + }, + { + "id": "345057", + "ident": "US-4328", + "type": "small_airport", + "name": "Plain Ol' Field", + "latitude_deg": "43.139235", + "longitude_deg": "-93.433589", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Clear Lake", + "scheduled_service": "no", + "gps_code": "IA38", + "local_code": "IA38", + "keywords": "https://www.airnav.com/airport/IA38" + }, + { + "id": "345063", + "ident": "US-4329", + "type": "heliport", + "name": "Zion Helicopters Heliport", + "latitude_deg": "37.178933", + "longitude_deg": "-113.122428", + "elevation_ft": "3605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Virgin", + "scheduled_service": "no", + "gps_code": "UT70", + "local_code": "UT70" + }, + { + "id": "345066", + "ident": "US-4330", + "type": "heliport", + "name": "LR Wasatch Heliport", + "latitude_deg": "41.248972", + "longitude_deg": "-111.776722", + "elevation_ft": "4938", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Huntsville", + "scheduled_service": "no", + "gps_code": "UT76", + "local_code": "UT76" + }, + { + "id": "345067", + "ident": "US-4331", + "type": "heliport", + "name": "Warren Memorial Replacement Hospital Heliport", + "latitude_deg": "38.919361", + "longitude_deg": "-78.15456", + "elevation_ft": "787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Front Royal", + "scheduled_service": "no", + "gps_code": "VA36", + "local_code": "VA36" + }, + { + "id": "345076", + "ident": "US-4332", + "type": "heliport", + "name": "Fulton Medical Center Heliport", + "latitude_deg": "38.843", + "longitude_deg": "-91.96634", + "elevation_ft": "831", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Fulton", + "scheduled_service": "no" + }, + { + "id": "345077", + "ident": "US-4333", + "type": "small_airport", + "name": "Cal Acres Airport", + "latitude_deg": "36.96658", + "longitude_deg": "-94.51867", + "elevation_ft": "1119", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Joplin", + "scheduled_service": "no" + }, + { + "id": "345078", + "ident": "US-4334", + "type": "small_airport", + "name": "Shepherd Airport", + "latitude_deg": "36.98843", + "longitude_deg": "-94.32045", + "elevation_ft": "1149", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Diamond", + "scheduled_service": "no" + }, + { + "id": "345079", + "ident": "US-4335", + "type": "closed", + "name": "Mount Vernon Municipal Airport (Former)", + "latitude_deg": "37.11158", + "longitude_deg": "-93.8334", + "elevation_ft": "1233", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Mount Vernon", + "scheduled_service": "no" + }, + { + "id": "345080", + "ident": "US-4336", + "type": "closed", + "name": "Williams Airport", + "latitude_deg": "37.09822", + "longitude_deg": "-93.86905", + "elevation_ft": "1122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Mount Vernon", + "scheduled_service": "no" + }, + { + "id": "345081", + "ident": "US-4337", + "type": "closed", + "name": "Shellbine Airfield", + "latitude_deg": "30.94235", + "longitude_deg": "-81.53045", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Woodbine", + "scheduled_service": "no", + "keywords": "Union Carbide Plant Strip" + }, + { + "id": "345082", + "ident": "US-4338", + "type": "closed", + "name": "Bonner Field", + "latitude_deg": "30.46733", + "longitude_deg": "-87.67906", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Summerdale", + "scheduled_service": "no" + }, + { + "id": "345083", + "ident": "US-4339", + "type": "closed", + "name": "Goodpasture Airport", + "latitude_deg": "39.32508", + "longitude_deg": "-91.48962", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Vandalia", + "scheduled_service": "no" + }, + { + "id": "345084", + "ident": "US-4340", + "type": "closed", + "name": "Monett Airport", + "latitude_deg": "36.93261", + "longitude_deg": "-93.90747", + "elevation_ft": "1370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Monett", + "scheduled_service": "no" + }, + { + "id": "345085", + "ident": "US-4341", + "type": "small_airport", + "name": "Ozarks Skydiving Center", + "latitude_deg": "37.2307", + "longitude_deg": "-93.93015", + "elevation_ft": "1270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Miller", + "scheduled_service": "no" + }, + { + "id": "345102", + "ident": "US-4342", + "type": "closed", + "name": "Middleton Airport", + "latitude_deg": "31.74046", + "longitude_deg": "-99.98443", + "elevation_ft": "1703", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ballinger", + "scheduled_service": "no" + }, + { + "id": "345103", + "ident": "US-4343", + "type": "small_airport", + "name": "Lebanon Airport", + "latitude_deg": "33.98789", + "longitude_deg": "-96.91457", + "elevation_ft": "693", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lebanon", + "scheduled_service": "no" + }, + { + "id": "345108", + "ident": "US-4344", + "type": "closed", + "name": "Burner Farm Airport", + "latitude_deg": "31.55064", + "longitude_deg": "-100.28402", + "elevation_ft": "1795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Angelo", + "scheduled_service": "no" + }, + { + "id": "356403", + "ident": "US-4345", + "type": "small_airport", + "name": "Crabbe Airport", + "latitude_deg": "37.75152", + "longitude_deg": "-77.23813", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Manquin", + "scheduled_service": "no" + }, + { + "id": "345110", + "ident": "US-4346", + "type": "small_airport", + "name": "Flying 7H Ranch Airport", + "latitude_deg": "31.431052", + "longitude_deg": "-98.46706", + "elevation_ft": "1542", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Goldthwaite", + "scheduled_service": "no", + "gps_code": "TA76", + "local_code": "TA76" + }, + { + "id": "345147", + "ident": "US-4347", + "type": "small_airport", + "name": "La Salle Ranch Airport", + "latitude_deg": "28.42738", + "longitude_deg": "-96.45515", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port O'Connor", + "scheduled_service": "no" + }, + { + "id": "345148", + "ident": "US-4348", + "type": "small_airport", + "name": "Green Acres Airport", + "latitude_deg": "37.483887", + "longitude_deg": "-105.745958", + "elevation_ft": "7521", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Alamosa", + "scheduled_service": "no", + "gps_code": "CO83", + "local_code": "CO83" + }, + { + "id": "345159", + "ident": "US-4349", + "type": "heliport", + "name": "Southwest Health Heliport", + "latitude_deg": "42.720475", + "longitude_deg": "-90.457832", + "elevation_ft": "1003", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Platteville", + "scheduled_service": "no", + "gps_code": "WI20", + "local_code": "WI20" + }, + { + "id": "345160", + "ident": "US-4350", + "type": "small_airport", + "name": "Radio Ranch Airport", + "latitude_deg": "41.072778", + "longitude_deg": "-104.825653", + "elevation_ft": "6115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Cheyenne", + "scheduled_service": "no", + "gps_code": "WY46", + "local_code": "WY46" + }, + { + "id": "345162", + "ident": "US-4351", + "type": "heliport", + "name": "Knolls Scene Landing Location", + "latitude_deg": "40.725076", + "longitude_deg": "-113.25877", + "elevation_ft": "4253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Knolls", + "scheduled_service": "no", + "gps_code": "UT57", + "local_code": "UT57" + }, + { + "id": "345165", + "ident": "US-4352", + "type": "heliport", + "name": "McLaren Macomb Hospital Heliport", + "latitude_deg": "42.588711", + "longitude_deg": "-82.898347", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Mount Clemens", + "scheduled_service": "no", + "gps_code": "MI00", + "local_code": "MI00" + }, + { + "id": "345175", + "ident": "US-4353", + "type": "closed", + "name": "Mills County Airport", + "latitude_deg": "31.48186", + "longitude_deg": "-98.57196", + "elevation_ft": "1588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Goldthwaite", + "scheduled_service": "no" + }, + { + "id": "345183", + "ident": "US-4354", + "type": "small_airport", + "name": "Tarkington Woods Airport", + "latitude_deg": "30.33622", + "longitude_deg": "-94.93961", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cleveland", + "scheduled_service": "no" + }, + { + "id": "345184", + "ident": "US-4355", + "type": "closed", + "name": "Moss Hill Airport", + "latitude_deg": "30.25058", + "longitude_deg": "-94.70649", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Liberty", + "scheduled_service": "no" + }, + { + "id": "345185", + "ident": "US-4356", + "type": "small_airport", + "name": "Rattlesnake Bend Airport", + "latitude_deg": "30.21241", + "longitude_deg": "-94.52709", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sour Lake", + "scheduled_service": "no" + }, + { + "id": "345186", + "ident": "US-4357", + "type": "small_airport", + "name": "Bangs Airport", + "latitude_deg": "31.71384", + "longitude_deg": "-99.09432", + "elevation_ft": "1644", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bangs", + "scheduled_service": "no" + }, + { + "id": "345187", + "ident": "US-4358", + "type": "closed", + "name": "Ricker Airport", + "latitude_deg": "31.70956", + "longitude_deg": "-98.86649", + "elevation_ft": "1442", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Early", + "scheduled_service": "no" + }, + { + "id": "345188", + "ident": "US-4359", + "type": "small_airport", + "name": "Miller Ranch Airport", + "latitude_deg": "31.845", + "longitude_deg": "-99.6951", + "elevation_ft": "1987", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Talpa", + "scheduled_service": "no" + }, + { + "id": "345189", + "ident": "US-4360", + "type": "small_airport", + "name": "B T Averheart Airport", + "latitude_deg": "31.90176", + "longitude_deg": "-96.31207", + "elevation_ft": "394", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Streetman", + "scheduled_service": "no" + }, + { + "id": "345190", + "ident": "US-4361", + "type": "small_airport", + "name": "Wilhelm Airport", + "latitude_deg": "31.06732", + "longitude_deg": "-100.00362", + "elevation_ft": "2350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eden", + "scheduled_service": "no" + }, + { + "id": "345203", + "ident": "US-4362", + "type": "closed", + "name": "Old Mexia Airport", + "latitude_deg": "31.67093", + "longitude_deg": "-96.46696", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mexia", + "scheduled_service": "no" + }, + { + "id": "345218", + "ident": "US-4363", + "type": "heliport", + "name": "Christus Jacksonville Heliport", + "latitude_deg": "31.93774", + "longitude_deg": "-95.24697", + "elevation_ft": "491", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jacksonville", + "scheduled_service": "no", + "local_code": "XA58" + }, + { + "id": "345219", + "ident": "US-4364", + "type": "closed", + "name": "Tradinghouse Creek Airport", + "latitude_deg": "31.5688", + "longitude_deg": "-96.96293", + "elevation_ft": "456", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no" + }, + { + "id": "345220", + "ident": "US-4365", + "type": "closed", + "name": "Gage Airfield", + "latitude_deg": "31.64311", + "longitude_deg": "-96.27947", + "elevation_ft": "501", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Teague", + "scheduled_service": "no" + }, + { + "id": "345221", + "ident": "US-4366", + "type": "closed", + "name": "Adkins Airport", + "latitude_deg": "31.69009", + "longitude_deg": "-96.16942", + "elevation_ft": "484", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fairfield", + "scheduled_service": "no" + }, + { + "id": "345222", + "ident": "US-4367", + "type": "heliport", + "name": "Sayre Community Hospital Heliport", + "latitude_deg": "35.313611", + "longitude_deg": "-99.626196", + "elevation_ft": "1874", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Sayre", + "scheduled_service": "no", + "gps_code": "7OK5", + "local_code": "7OK5" + }, + { + "id": "345223", + "ident": "US-4368", + "type": "heliport", + "name": "Doctors Hospital Heliport", + "latitude_deg": "37.250289", + "longitude_deg": "-76.668863", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Williamsburg", + "scheduled_service": "no", + "gps_code": "VA86", + "local_code": "VA86" + }, + { + "id": "345224", + "ident": "US-4369", + "type": "heliport", + "name": "Air Evac Base 142 Heliport", + "latitude_deg": "31.436046", + "longitude_deg": "-83.479137", + "elevation_ft": "347", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Tifton", + "scheduled_service": "no", + "gps_code": "GA34", + "local_code": "GA34" + }, + { + "id": "345226", + "ident": "US-4370", + "type": "heliport", + "name": "Cannon Falls Medical Center Heliport", + "latitude_deg": "44.485722", + "longitude_deg": "-92.902225", + "elevation_ft": "1008", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Cannon Falls", + "scheduled_service": "no", + "gps_code": "3MN8", + "local_code": "3MN8" + }, + { + "id": "345230", + "ident": "US-4371", + "type": "closed", + "name": "Comanche Maverick Ranch Airport", + "latitude_deg": "28.69581", + "longitude_deg": "-100.3981", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eagle Pass", + "scheduled_service": "no" + }, + { + "id": "345236", + "ident": "US-4372", + "type": "heliport", + "name": "Southwest Regional Medical Center Heliport", + "latitude_deg": "38.859084", + "longitude_deg": "-83.895893", + "elevation_ft": "923", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Georgetown", + "scheduled_service": "no", + "gps_code": "OH16", + "local_code": "OH16", + "keywords": "Air Evac 89 Heliport" + }, + { + "id": "345239", + "ident": "US-4373", + "type": "heliport", + "name": "76ers Camden Helipad", + "latitude_deg": "39.941952", + "longitude_deg": "-75.12817", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Camden", + "scheduled_service": "no", + "gps_code": "71NJ", + "local_code": "71NJ" + }, + { + "id": "345242", + "ident": "US-4374", + "type": "small_airport", + "name": "Fleming Ranch Airport", + "latitude_deg": "30.883", + "longitude_deg": "-96.1714", + "elevation_ft": "291", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "North Zulch", + "scheduled_service": "no" + }, + { + "id": "345243", + "ident": "US-4375", + "type": "small_airport", + "name": "Double H Airport", + "latitude_deg": "31.26781", + "longitude_deg": "-95.64239", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crockett", + "scheduled_service": "no" + }, + { + "id": "345244", + "ident": "US-4376", + "type": "closed", + "name": "Maeora Airport", + "latitude_deg": "32.23887", + "longitude_deg": "-93.92191", + "elevation_ft": "313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Keithville", + "scheduled_service": "no" + }, + { + "id": "345245", + "ident": "US-4377", + "type": "heliport", + "name": "Falfurrias Hospital Heliport", + "latitude_deg": "27.21484", + "longitude_deg": "-98.1468", + "elevation_ft": "111", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Falfurrias", + "scheduled_service": "no" + }, + { + "id": "345246", + "ident": "US-4378", + "type": "heliport", + "name": "South Texas Health System Heart Heliport", + "latitude_deg": "26.18283", + "longitude_deg": "-98.21793", + "elevation_ft": "117", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "McAllen", + "scheduled_service": "no" + }, + { + "id": "345247", + "ident": "US-4379", + "type": "heliport", + "name": "Baptist Emergency Hospital Overlook Heliport", + "latitude_deg": "29.68091", + "longitude_deg": "-98.45435", + "elevation_ft": "1272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no" + }, + { + "id": "345248", + "ident": "US-4380", + "type": "heliport", + "name": "Christus Good Shepherd Medical Center Heliport", + "latitude_deg": "32.53751", + "longitude_deg": "-94.37137", + "elevation_ft": "372", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marshall", + "scheduled_service": "no" + }, + { + "id": "345249", + "ident": "US-4381", + "type": "small_airport", + "name": "Baker Spring Airport", + "latitude_deg": "31.21353", + "longitude_deg": "-98.91008", + "elevation_ft": "1444", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Saba", + "scheduled_service": "no" + }, + { + "id": "345250", + "ident": "US-4382", + "type": "small_airport", + "name": "B Miller Ranch Airport", + "latitude_deg": "31.35077", + "longitude_deg": "-98.64745", + "elevation_ft": "1245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Saba", + "scheduled_service": "no" + }, + { + "id": "345251", + "ident": "US-4383", + "type": "heliport", + "name": "Concho County Hospital Heliport", + "latitude_deg": "31.22163", + "longitude_deg": "-99.8485", + "elevation_ft": "2043", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eden", + "scheduled_service": "no" + }, + { + "id": "345255", + "ident": "US-4384", + "type": "closed", + "name": "Presidio East Airport", + "latitude_deg": "29.5509", + "longitude_deg": "-104.34242", + "elevation_ft": "2611", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Presidio", + "scheduled_service": "no" + }, + { + "id": "345256", + "ident": "US-4385", + "type": "closed", + "name": "Baeza Ranch Number 1 Airport", + "latitude_deg": "29.56337", + "longitude_deg": "-104.33763", + "elevation_ft": "2628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Presidio", + "scheduled_service": "no" + }, + { + "id": "345257", + "ident": "US-4386", + "type": "closed", + "name": "Baeza Ranch Number 2 Airport", + "latitude_deg": "29.56346", + "longitude_deg": "-104.3428", + "elevation_ft": "2629", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Presidio", + "scheduled_service": "no" + }, + { + "id": "345258", + "ident": "US-4387", + "type": "closed", + "name": "Presidio Old Airport", + "latitude_deg": "29.61293", + "longitude_deg": "-104.35809", + "elevation_ft": "2859", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Presidio", + "scheduled_service": "no", + "keywords": "KPRS, PRS" + }, + { + "id": "345259", + "ident": "US-4388", + "type": "closed", + "name": "Mesquite Ranch Airport", + "latitude_deg": "29.80306", + "longitude_deg": "-104.50417", + "elevation_ft": "3204", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Presidio", + "scheduled_service": "no" + }, + { + "id": "345260", + "ident": "US-4389", + "type": "closed", + "name": "Chinati Ranch Airport", + "latitude_deg": "29.82617", + "longitude_deg": "-104.60394", + "elevation_ft": "2725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Presidio", + "scheduled_service": "no" + }, + { + "id": "345261", + "ident": "US-4390", + "type": "small_airport", + "name": "Brite Ranch Airport", + "latitude_deg": "30.32858", + "longitude_deg": "-104.53165", + "elevation_ft": "4718", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marfa", + "scheduled_service": "no" + }, + { + "id": "345273", + "ident": "US-4391", + "type": "heliport", + "name": "Mercy Hospital Joplin Heliport", + "latitude_deg": "37.03726", + "longitude_deg": "-94.51104", + "elevation_ft": "1007", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Joplin", + "scheduled_service": "no" + }, + { + "id": "345274", + "ident": "US-4392", + "type": "heliport", + "name": "UT Health Jacksonville Heliport", + "latitude_deg": "31.95973", + "longitude_deg": "-95.2704", + "elevation_ft": "511", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jacksonville", + "scheduled_service": "no" + }, + { + "id": "345275", + "ident": "US-4393", + "type": "heliport", + "name": "Reagan Hospital District Heliport", + "latitude_deg": "31.20293", + "longitude_deg": "-101.46065", + "elevation_ft": "2684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Big Lake", + "scheduled_service": "no" + }, + { + "id": "345276", + "ident": "US-4394", + "type": "heliport", + "name": "Irion County Heliport", + "latitude_deg": "31.25733", + "longitude_deg": "-100.81927", + "elevation_ft": "2236", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mertzon", + "scheduled_service": "no" + }, + { + "id": "345277", + "ident": "US-4395", + "type": "heliport", + "name": "Danville V A Heliport", + "latitude_deg": "40.122523", + "longitude_deg": "-87.588093", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Danville", + "scheduled_service": "no", + "local_code": "19IL" + }, + { + "id": "345278", + "ident": "US-4396", + "type": "heliport", + "name": "Wilco Heliport", + "latitude_deg": "41.934226", + "longitude_deg": "-89.365041", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Oregon", + "scheduled_service": "no", + "gps_code": "31LL", + "local_code": "31LL" + }, + { + "id": "345287", + "ident": "US-4397", + "type": "small_airport", + "name": "Skyline Air Ranch Airport", + "latitude_deg": "31.556821", + "longitude_deg": "-110.107384", + "elevation_ft": "4180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sierra Vista", + "scheduled_service": "no", + "gps_code": "1AZ6", + "local_code": "1AZ6" + }, + { + "id": "345291", + "ident": "US-4398", + "type": "heliport", + "name": "Sharp Memorial Hospital Helipad", + "latitude_deg": "32.799419", + "longitude_deg": "-117.153493", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no", + "gps_code": "CL36", + "local_code": "CL36" + }, + { + "id": "345293", + "ident": "US-4399", + "type": "small_airport", + "name": "Flying D Ranch Airport", + "latitude_deg": "37.755821", + "longitude_deg": "-104.648112", + "elevation_ft": "6000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Walsenburg", + "scheduled_service": "no", + "gps_code": "73CO", + "local_code": "73CO" + }, + { + "id": "345294", + "ident": "US-4400", + "type": "small_airport", + "name": "Flying G Air Ranch Airport", + "latitude_deg": "39.230595", + "longitude_deg": "-104.470936", + "elevation_ft": "6911", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Elbert", + "scheduled_service": "no", + "gps_code": "CO39", + "local_code": "CO39" + }, + { + "id": "345302", + "ident": "US-4401", + "type": "closed", + "name": "Jet-Star Airport", + "latitude_deg": "33.6036", + "longitude_deg": "-97.190397", + "elevation_ft": "846", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gainesville", + "scheduled_service": "no" + }, + { + "id": "345304", + "ident": "US-4402", + "type": "heliport", + "name": "Church of Scientology Creston Base Heliport", + "latitude_deg": "35.45286", + "longitude_deg": "-120.50436", + "elevation_ft": "1398", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Creston", + "scheduled_service": "no" + }, + { + "id": "345306", + "ident": "US-4403", + "type": "small_airport", + "name": "Soboba Flight Park Gliderport", + "latitude_deg": "33.81863", + "longitude_deg": "-116.962", + "elevation_ft": "1551", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Jacinto", + "scheduled_service": "no" + }, + { + "id": "345307", + "ident": "US-4404", + "type": "heliport", + "name": "Monroe County Hospital Heliport", + "latitude_deg": "41.043049", + "longitude_deg": "-92.7977", + "elevation_ft": "957", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Albia", + "scheduled_service": "no", + "gps_code": "IA22", + "local_code": "IA22" + }, + { + "id": "345308", + "ident": "US-4405", + "type": "heliport", + "name": "Church of Scientology Petrolia Base Heliport", + "latitude_deg": "40.36984", + "longitude_deg": "-124.33114", + "elevation_ft": "897", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ferndale", + "scheduled_service": "no" + }, + { + "id": "345309", + "ident": "US-4406", + "type": "heliport", + "name": "Willis-Knighton Pierremont Heliport", + "latitude_deg": "32.43178", + "longitude_deg": "-93.70696", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Shreveport", + "scheduled_service": "no" + }, + { + "id": "345310", + "ident": "US-4407", + "type": "small_airport", + "name": "Hunter Field", + "latitude_deg": "32.01371", + "longitude_deg": "-95.29653", + "elevation_ft": "588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jacksonville", + "scheduled_service": "no", + "local_code": "17XA", + "keywords": "Cherokee Cove" + }, + { + "id": "345311", + "ident": "US-4408", + "type": "closed", + "name": "San Diego Airport", + "latitude_deg": "27.7436", + "longitude_deg": "-98.25392", + "elevation_ft": "341", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "345312", + "ident": "US-4409", + "type": "small_airport", + "name": "Superior Airport", + "latitude_deg": "27.130513", + "longitude_deg": "-98.403554", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Falfurrias", + "scheduled_service": "no" + }, + { + "id": "345313", + "ident": "US-4410", + "type": "closed", + "name": "La Reforma Airport", + "latitude_deg": "26.68881", + "longitude_deg": "-98.38208", + "elevation_ft": "241", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Delmita", + "scheduled_service": "no" + }, + { + "id": "345314", + "ident": "US-4411", + "type": "heliport", + "name": "Connally Memorial Medical Center Heliport", + "latitude_deg": "29.15855", + "longitude_deg": "-98.17574", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Floresville", + "scheduled_service": "no" + }, + { + "id": "345315", + "ident": "US-4412", + "type": "small_airport", + "name": "Haverlah East Farm Airport", + "latitude_deg": "29.1563", + "longitude_deg": "-98.11357", + "elevation_ft": "492", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Floresville", + "scheduled_service": "no" + }, + { + "id": "345316", + "ident": "US-4413", + "type": "small_airport", + "name": "Tee Pee Creek Airport", + "latitude_deg": "33.96433", + "longitude_deg": "-100.78861", + "elevation_ft": "2380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Matador", + "scheduled_service": "no", + "gps_code": "8TE0", + "local_code": "8TE0" + }, + { + "id": "345317", + "ident": "US-4414", + "type": "closed", + "name": "Matador Ranch Airport", + "latitude_deg": "33.99683", + "longitude_deg": "-100.82429", + "elevation_ft": "2435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Matador", + "scheduled_service": "no" + }, + { + "id": "345318", + "ident": "US-4415", + "type": "closed", + "name": "Burgher Ranch Airport", + "latitude_deg": "29.43374", + "longitude_deg": "-96.50371", + "elevation_ft": "166", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garwood", + "scheduled_service": "no" + }, + { + "id": "345319", + "ident": "US-4416", + "type": "small_airport", + "name": "Lehrer Ranch Airport", + "latitude_deg": "29.42426", + "longitude_deg": "-96.51263", + "elevation_ft": "165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garwood", + "scheduled_service": "no" + }, + { + "id": "345331", + "ident": "US-4417", + "type": "heliport", + "name": "Hollywood Helipad", + "latitude_deg": "26.045527", + "longitude_deg": "-80.215821", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Hollywood", + "scheduled_service": "no", + "gps_code": "FL56", + "local_code": "FL56" + }, + { + "id": "345332", + "ident": "US-4418", + "type": "small_airport", + "name": "Shepard Strip", + "latitude_deg": "48.149209", + "longitude_deg": "-116.998043", + "elevation_ft": "2313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Oldtown", + "scheduled_service": "no", + "gps_code": "07ID", + "local_code": "07ID" + }, + { + "id": "345334", + "ident": "US-4419", + "type": "heliport", + "name": "Freeman Hospital Heliport", + "latitude_deg": "37.0532", + "longitude_deg": "-94.52714", + "elevation_ft": "977", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Joplin", + "scheduled_service": "no" + }, + { + "id": "345335", + "ident": "US-4420", + "type": "heliport", + "name": "Kansas City University Medicine and Biosciences Heliport", + "latitude_deg": "37.05625", + "longitude_deg": "-94.52726", + "elevation_ft": "1026", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Joplin", + "scheduled_service": "no" + }, + { + "id": "345336", + "ident": "US-4421", + "type": "closed", + "name": "Doherty Farms Airport", + "latitude_deg": "38.92753", + "longitude_deg": "-121.92127", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Arbuckle", + "scheduled_service": "no" + }, + { + "id": "345337", + "ident": "US-4422", + "type": "heliport", + "name": "Lone Oak Barn Heliport", + "latitude_deg": "30.55348", + "longitude_deg": "-97.60873", + "elevation_ft": "671", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Round Rock", + "scheduled_service": "no" + }, + { + "id": "345338", + "ident": "US-4423", + "type": "heliport", + "name": "San Diego Heliport", + "latitude_deg": "32.90138", + "longitude_deg": "-117.20488", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "345343", + "ident": "US-4424", + "type": "heliport", + "name": "McDowell Heliport", + "latitude_deg": "39.888315", + "longitude_deg": "-87.81658", + "elevation_ft": "706", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Sidell", + "scheduled_service": "no", + "gps_code": "2IL6", + "local_code": "2IL6" + }, + { + "id": "345344", + "ident": "US-4425", + "type": "heliport", + "name": "Bourbon Community Hospital Heliport", + "latitude_deg": "38.220574", + "longitude_deg": "-84.239339", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "0KY9", + "local_code": "0KY9" + }, + { + "id": "345347", + "ident": "US-4426", + "type": "heliport", + "name": "Rockcastle Hospital Inc Heliport", + "latitude_deg": "37.358479", + "longitude_deg": "-84.336285", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "1KY5", + "local_code": "1KY5" + }, + { + "id": "345354", + "ident": "US-4427", + "type": "closed", + "name": "Muleshoe National Wildlife Refuge Airport", + "latitude_deg": "33.95699", + "longitude_deg": "-102.77626", + "elevation_ft": "3752", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Muleshoe", + "scheduled_service": "no" + }, + { + "id": "345355", + "ident": "US-4428", + "type": "closed", + "name": "Warren Airfield", + "latitude_deg": "34.23167", + "longitude_deg": "-102.70607", + "elevation_ft": "3786", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Muleshoe", + "scheduled_service": "no" + }, + { + "id": "345356", + "ident": "US-4429", + "type": "heliport", + "name": "Air Methods Heliport", + "latitude_deg": "30.04548", + "longitude_deg": "-99.15383", + "elevation_ft": "1647", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kerrville", + "scheduled_service": "no", + "keywords": "Kerrville State Hospital Heliport" + }, + { + "id": "345357", + "ident": "US-4430", + "type": "small_airport", + "name": "Shady Lawn Field", + "latitude_deg": "43.128584", + "longitude_deg": "-84.381293", + "elevation_ft": "683", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Bannister", + "scheduled_service": "no", + "local_code": "4M4" + }, + { + "id": "345358", + "ident": "US-4431", + "type": "closed", + "name": "Hico Airport", + "latitude_deg": "31.98765", + "longitude_deg": "-98.04294", + "elevation_ft": "1103", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hico", + "scheduled_service": "no" + }, + { + "id": "345359", + "ident": "US-4432", + "type": "heliport", + "name": "Carondelet St Joseph's Hospital Heliport", + "latitude_deg": "32.22745", + "longitude_deg": "-110.85657", + "elevation_ft": "2561", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "345360", + "ident": "US-4433", + "type": "small_airport", + "name": "Left Coulee Airport", + "latitude_deg": "47.885427", + "longitude_deg": "-109.022698", + "elevation_ft": "3150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Winifred", + "scheduled_service": "no", + "local_code": "LC0" + }, + { + "id": "345361", + "ident": "US-4434", + "type": "small_airport", + "name": "Pace Lake Airport", + "latitude_deg": "30.51796", + "longitude_deg": "-87.50743", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Seminole", + "scheduled_service": "no" + }, + { + "id": "345362", + "ident": "US-4435", + "type": "heliport", + "name": "Qualcomm Building T Helipad", + "latitude_deg": "32.89487", + "longitude_deg": "-117.196063", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no" + }, + { + "id": "345363", + "ident": "US-4436", + "type": "small_airport", + "name": "Fitzsimmons Airport", + "latitude_deg": "30.48204", + "longitude_deg": "-90.17711", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Covington", + "scheduled_service": "no" + }, + { + "id": "345367", + "ident": "US-4437", + "type": "heliport", + "name": "AdventHealth Tampa Heliport", + "latitude_deg": "28.07043", + "longitude_deg": "-82.42225", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tampa", + "scheduled_service": "no", + "local_code": "3FA1" + }, + { + "id": "345368", + "ident": "US-4438", + "type": "closed", + "name": "Old Tamiami Airport", + "latitude_deg": "25.75239", + "longitude_deg": "-80.37443", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no" + }, + { + "id": "345369", + "ident": "US-4439", + "type": "closed", + "name": "Pan American Field", + "latitude_deg": "25.8047", + "longitude_deg": "-80.27667", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no" + }, + { + "id": "345370", + "ident": "US-4440", + "type": "seaplane_base", + "name": "Lake Eustis Seaplane Base", + "latitude_deg": "28.81283", + "longitude_deg": "-81.74813", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Tavares", + "scheduled_service": "no" + }, + { + "id": "345373", + "ident": "US-4441", + "type": "small_airport", + "name": "Fuller Brothers L P Ranch Airport", + "latitude_deg": "32.920917", + "longitude_deg": "-101.050201", + "elevation_ft": "2452", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Snyder", + "scheduled_service": "no", + "keywords": "Fullerville" + }, + { + "id": "345374", + "ident": "US-4442", + "type": "heliport", + "name": "Osowaw Boulevard Residential Helipad", + "latitude_deg": "28.44989", + "longitude_deg": "-82.66402", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Spring Hill", + "scheduled_service": "no" + }, + { + "id": "345375", + "ident": "US-4443", + "type": "heliport", + "name": "AdventHealth Dade City Heliport", + "latitude_deg": "28.3474", + "longitude_deg": "-82.20031", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Dade City", + "scheduled_service": "no" + }, + { + "id": "345376", + "ident": "US-4444", + "type": "heliport", + "name": "AdventHealth Lake Nona Heliport", + "latitude_deg": "28.40346", + "longitude_deg": "-81.24584", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no" + }, + { + "id": "345377", + "ident": "US-4445", + "type": "heliport", + "name": "ORMC Trauma Center Heliport", + "latitude_deg": "29.175578", + "longitude_deg": "-82.136648", + "elevation_ft": "207", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ocala", + "scheduled_service": "no", + "local_code": "3FD1" + }, + { + "id": "345378", + "ident": "US-4446", + "type": "small_airport", + "name": "Truss Ranch Airport", + "latitude_deg": "32.21365", + "longitude_deg": "-98.14515", + "elevation_ft": "1391", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Stephenville", + "scheduled_service": "no" + }, + { + "id": "345379", + "ident": "US-4447", + "type": "heliport", + "name": "CHI Saint Luke’s Health Memorial Lufkin Rooftop Heliport", + "latitude_deg": "31.33629", + "longitude_deg": "-94.74118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lufkin", + "scheduled_service": "no" + }, + { + "id": "345380", + "ident": "US-4448", + "type": "heliport", + "name": "CHI St. Luke’s Health Memorial San Augustine Heliport", + "latitude_deg": "31.53252", + "longitude_deg": "-94.10225", + "elevation_ft": "431", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Augustine", + "scheduled_service": "no" + }, + { + "id": "345381", + "ident": "US-4449", + "type": "small_airport", + "name": "Ezer Ranch Airport", + "latitude_deg": "29.59957", + "longitude_deg": "-94.65346", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Anahuac", + "scheduled_service": "no" + }, + { + "id": "345382", + "ident": "US-4450", + "type": "heliport", + "name": "Bayside Community Hospital Heliport", + "latitude_deg": "29.75265", + "longitude_deg": "-94.68681", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Anahuac", + "scheduled_service": "no" + }, + { + "id": "345383", + "ident": "US-4451", + "type": "small_airport", + "name": "Coyle Farms Airport", + "latitude_deg": "29.37667", + "longitude_deg": "-96.52785", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garwood", + "scheduled_service": "no" + }, + { + "id": "345401", + "ident": "US-4452", + "type": "small_airport", + "name": "Whitegate Airport", + "latitude_deg": "29.34726", + "longitude_deg": "-96.50977", + "elevation_ft": "151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garwood", + "scheduled_service": "no" + }, + { + "id": "345402", + "ident": "US-4453", + "type": "small_airport", + "name": "Schiurring Ranch Airport", + "latitude_deg": "29.31576", + "longitude_deg": "-96.48563", + "elevation_ft": "136", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Campo", + "scheduled_service": "no" + }, + { + "id": "345403", + "ident": "US-4454", + "type": "small_airport", + "name": "BHRB Ranch Airport", + "latitude_deg": "29.81547", + "longitude_deg": "-100.35408", + "elevation_ft": "1935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rocksprings", + "scheduled_service": "no" + }, + { + "id": "345404", + "ident": "US-4455", + "type": "small_airport", + "name": "Black Waterhole Ranch Airport", + "latitude_deg": "29.89836", + "longitude_deg": "-100.43201", + "elevation_ft": "1929", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rocksprings", + "scheduled_service": "no" + }, + { + "id": "345405", + "ident": "US-4456", + "type": "heliport", + "name": "North Bay Hospital Heliport", + "latitude_deg": "28.25567", + "longitude_deg": "-82.71395", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "New Port Richey", + "scheduled_service": "no", + "local_code": "6FA6", + "keywords": "Morton Plant North Bay Hospital" + }, + { + "id": "345406", + "ident": "US-4457", + "type": "small_airport", + "name": "Triple Eagle Ranch Airport", + "latitude_deg": "32.25306", + "longitude_deg": "-97.96037", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bluff Dale", + "scheduled_service": "no" + }, + { + "id": "345407", + "ident": "US-4458", + "type": "closed", + "name": "Red Bluff Airport", + "latitude_deg": "31.99724", + "longitude_deg": "-104.02603", + "elevation_ft": "2920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Malaga", + "scheduled_service": "no" + }, + { + "id": "345408", + "ident": "US-4459", + "type": "closed", + "name": "Dudley Airfield", + "latitude_deg": "31.8752", + "longitude_deg": "-98.6607", + "elevation_ft": "1647", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comanche", + "scheduled_service": "no" + }, + { + "id": "345409", + "ident": "US-4460", + "type": "heliport", + "name": "Mitchell County Hospital Heliport", + "latitude_deg": "32.40588", + "longitude_deg": "-100.87592", + "elevation_ft": "2147", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Colorado City", + "scheduled_service": "no" + }, + { + "id": "345414", + "ident": "US-4461", + "type": "small_airport", + "name": "Smith Field", + "latitude_deg": "44.623373", + "longitude_deg": "-93.401234", + "elevation_ft": "958", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Elko", + "scheduled_service": "no", + "gps_code": "MN15", + "local_code": "MN15" + }, + { + "id": "345418", + "ident": "US-4462", + "type": "heliport", + "name": "Two Harbors Fire Department Heliport", + "latitude_deg": "47.039345", + "longitude_deg": "-91.667889", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Two Harbors", + "scheduled_service": "no", + "gps_code": "MN99", + "local_code": "MN99" + }, + { + "id": "345421", + "ident": "US-4463", + "type": "small_airport", + "name": "Cummings Farms Airfield", + "latitude_deg": "36.728257", + "longitude_deg": "-86.726096", + "elevation_ft": "638", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "8KY3", + "local_code": "8KY3" + }, + { + "id": "345425", + "ident": "US-4464", + "type": "heliport", + "name": "Missouri Baptist Hospital Heliport", + "latitude_deg": "38.196459", + "longitude_deg": "-91.170022", + "elevation_ft": "991", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Sullivan", + "scheduled_service": "no", + "gps_code": "MO52", + "local_code": "MO52" + }, + { + "id": "345430", + "ident": "US-4465", + "type": "small_airport", + "name": "One Eyed Creek Airport", + "latitude_deg": "31.291666", + "longitude_deg": "-94.699444", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lufkin", + "scheduled_service": "no", + "gps_code": "TX49", + "local_code": "TX49" + }, + { + "id": "345433", + "ident": "US-4466", + "type": "heliport", + "name": "Formosa Plastics Heliport", + "latitude_deg": "28.690799", + "longitude_deg": "-96.551644", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Point Comfort", + "scheduled_service": "no", + "gps_code": "TS51", + "local_code": "TS51" + }, + { + "id": "345434", + "ident": "US-4467", + "type": "heliport", + "name": "Miners Medical Center Heliport", + "latitude_deg": "40.658341", + "longitude_deg": "-78.706146", + "elevation_ft": "1825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hastings", + "scheduled_service": "no", + "gps_code": "90PN", + "local_code": "90PN", + "home_link": "https://www.conemaugh.org/directory-search/find-a-location/conemaugh-miners-medical-center", + "keywords": "Conemaugh" + }, + { + "id": "345442", + "ident": "US-4468", + "type": "heliport", + "name": "Sandoval Regional Medical Center Heliport", + "latitude_deg": "35.308095", + "longitude_deg": "-106.680969", + "elevation_ft": "5564", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Rio Rancho", + "scheduled_service": "no", + "gps_code": "50NM", + "local_code": "50NM" + }, + { + "id": "345447", + "ident": "US-4469", + "type": "small_airport", + "name": "El Quinto Ranch Airport", + "latitude_deg": "28.210956", + "longitude_deg": "-98.833737", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cotulla", + "scheduled_service": "no", + "gps_code": "7TE8", + "local_code": "7TE8" + }, + { + "id": "345452", + "ident": "US-4470", + "type": "heliport", + "name": "Lackawanna County 911 Center Heliport", + "latitude_deg": "41.455545", + "longitude_deg": "-75.557823", + "elevation_ft": "1395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Jessup", + "scheduled_service": "no", + "gps_code": "33PN", + "local_code": "33PN" + }, + { + "id": "345453", + "ident": "US-4471", + "type": "heliport", + "name": "JF Ranch Heliport", + "latitude_deg": "31.140464", + "longitude_deg": "-98.207077", + "elevation_ft": "1290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lampasas", + "scheduled_service": "no", + "gps_code": "92TX", + "local_code": "92TX" + }, + { + "id": "345455", + "ident": "US-4472", + "type": "heliport", + "name": "Texas Health Resources Burleson Heliport", + "latitude_deg": "32.497633", + "longitude_deg": "-97.368763", + "elevation_ft": "799", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Burleson", + "scheduled_service": "no", + "gps_code": "8TA7", + "local_code": "8TA7" + }, + { + "id": "345456", + "ident": "US-4473", + "type": "heliport", + "name": "Dallas Cowboys Heliport", + "latitude_deg": "32.745287", + "longitude_deg": "-97.094212", + "elevation_ft": "565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "1TX1", + "local_code": "1TX1" + }, + { + "id": "345461", + "ident": "US-4474", + "type": "closed", + "name": "Wente Airport", + "latitude_deg": "37.626763", + "longitude_deg": "-121.755896", + "elevation_ft": "517", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Livermore", + "scheduled_service": "no" + }, + { + "id": "345468", + "ident": "US-4475", + "type": "heliport", + "name": "Jerry Lay Heliport", + "latitude_deg": "40.860832", + "longitude_deg": "-88.985637", + "elevation_ft": "757", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Minonk", + "scheduled_service": "no", + "gps_code": "IS18", + "local_code": "IS18" + }, + { + "id": "345471", + "ident": "US-4476", + "type": "heliport", + "name": "Teton Springs Heliport", + "latitude_deg": "43.574394", + "longitude_deg": "-111.10825", + "elevation_ft": "6296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Victor", + "scheduled_service": "no", + "gps_code": "ID15", + "local_code": "ID15" + }, + { + "id": "345482", + "ident": "US-4477", + "type": "heliport", + "name": "Peach Regional Medical Center Heliport", + "latitude_deg": "32.606189", + "longitude_deg": "-83.758886", + "elevation_ft": "474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Byron", + "scheduled_service": "no", + "gps_code": "28GA", + "local_code": "28GA" + }, + { + "id": "345484", + "ident": "US-4478", + "type": "closed", + "name": "Former Lampasas Airport", + "latitude_deg": "31.13994", + "longitude_deg": "-98.23777", + "elevation_ft": "1355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lampasas", + "scheduled_service": "no" + }, + { + "id": "345485", + "ident": "US-4479", + "type": "closed", + "name": "Floyd Henderson Ranch Airport", + "latitude_deg": "30.62716", + "longitude_deg": "-102.67541", + "elevation_ft": "3424", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no" + }, + { + "id": "345486", + "ident": "US-4480", + "type": "closed", + "name": "Lea Ranch Airport", + "latitude_deg": "30.59379", + "longitude_deg": "-102.57005", + "elevation_ft": "3262", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no" + }, + { + "id": "345487", + "ident": "US-4481", + "type": "small_airport", + "name": "Big Canyon Ranch Airport", + "latitude_deg": "30.37666", + "longitude_deg": "-102.33175", + "elevation_ft": "2966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanderson", + "scheduled_service": "no" + }, + { + "id": "345488", + "ident": "US-4482", + "type": "small_airport", + "name": "Hagelstein Ranch Airport", + "latitude_deg": "30.27899", + "longitude_deg": "-102.32105", + "elevation_ft": "2762", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanderson", + "scheduled_service": "no" + }, + { + "id": "345489", + "ident": "US-4483", + "type": "closed", + "name": "Sanderson Field (1919)", + "latitude_deg": "30.14199", + "longitude_deg": "-102.40309", + "elevation_ft": "2789", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanderson", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sanderson_Field_(Texas)" + }, + { + "id": "345490", + "ident": "US-4484", + "type": "closed", + "name": "Eagle Pass Municipal Airport", + "latitude_deg": "28.70344", + "longitude_deg": "-100.48112", + "elevation_ft": "807", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eagle Pass", + "scheduled_service": "no", + "keywords": "EGP, KEGP" + }, + { + "id": "345492", + "ident": "US-4485", + "type": "small_airport", + "name": "Williams Flying Field", + "latitude_deg": "39.236882", + "longitude_deg": "-85.693241", + "elevation_ft": "745", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hartsville", + "scheduled_service": "no", + "gps_code": "24IN", + "local_code": "24IN" + }, + { + "id": "349756", + "ident": "US-4486", + "type": "heliport", + "name": "Adventist Health Delano Regional Medical Center Heliport", + "latitude_deg": "35.76186", + "longitude_deg": "-119.23738", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Delano", + "scheduled_service": "no" + }, + { + "id": "345512", + "ident": "US-4487", + "type": "small_airport", + "name": "Jamison Field", + "latitude_deg": "38.995678", + "longitude_deg": "-100.223427", + "elevation_ft": "2548", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Quinter", + "scheduled_service": "no", + "gps_code": "23JY", + "local_code": "23JY" + }, + { + "id": "345513", + "ident": "US-4488", + "type": "small_airport", + "name": "Sodbuster Strip", + "latitude_deg": "44.400916", + "longitude_deg": "-92.687488", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Goodhue", + "scheduled_service": "no", + "gps_code": "6MN7", + "local_code": "6MN7" + }, + { + "id": "345549", + "ident": "US-4489", + "type": "heliport", + "name": "Turner Heliport", + "latitude_deg": "43.291006", + "longitude_deg": "-83.740025", + "elevation_ft": "652", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Birch Run", + "scheduled_service": "no", + "gps_code": "42MI", + "local_code": "42MI" + }, + { + "id": "345560", + "ident": "US-4490", + "type": "heliport", + "name": "Phelps County Regional Medical Center Heliport", + "latitude_deg": "37.95322", + "longitude_deg": "-91.786501", + "elevation_ft": "1339", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Rolla", + "scheduled_service": "no", + "gps_code": "47MO", + "local_code": "47MO" + }, + { + "id": "345574", + "ident": "US-4491", + "type": "heliport", + "name": "Mercy Hospital-Lebanon Heliport", + "latitude_deg": "37.68216", + "longitude_deg": "-92.633688", + "elevation_ft": "1339", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "46MO", + "local_code": "46MO" + }, + { + "id": "345575", + "ident": "US-4492", + "type": "small_airport", + "name": "Pfeiffer Field", + "latitude_deg": "39.521125", + "longitude_deg": "-84.628292", + "elevation_ft": "806", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Collinsville", + "scheduled_service": "no", + "gps_code": "2OH7", + "local_code": "2OH7" + }, + { + "id": "345579", + "ident": "US-4493", + "type": "small_airport", + "name": "Aerodrome Les Noyers", + "latitude_deg": "39.680353", + "longitude_deg": "-83.744672", + "elevation_ft": "1085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Jamestown", + "scheduled_service": "no", + "gps_code": "50OH", + "local_code": "50OH" + }, + { + "id": "345580", + "ident": "US-4494", + "type": "small_airport", + "name": "The Farm Airport", + "latitude_deg": "41.456389", + "longitude_deg": "-79.982778", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Cochranton", + "scheduled_service": "no", + "keywords": "7PA8" + }, + { + "id": "345584", + "ident": "US-4495", + "type": "heliport", + "name": "Wayne Medical Center Heliport", + "latitude_deg": "35.325521", + "longitude_deg": "-87.756708", + "elevation_ft": "749", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Waynesboro", + "scheduled_service": "no", + "gps_code": "TN24", + "local_code": "TN24" + }, + { + "id": "345585", + "ident": "US-4496", + "type": "heliport", + "name": "HTS Aurora Heliport", + "latitude_deg": "45.243228", + "longitude_deg": "-122.764503", + "elevation_ft": "192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Aurora", + "scheduled_service": "no", + "gps_code": "OR24", + "local_code": "OR24" + }, + { + "id": "345633", + "ident": "US-4497", + "type": "small_airport", + "name": "R&D Aviation Airport", + "latitude_deg": "34.50348", + "longitude_deg": "-98.33774", + "elevation_ft": "1086", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lawton", + "scheduled_service": "no" + }, + { + "id": "345644", + "ident": "US-4498", + "type": "heliport", + "name": "Medical City McKinney Heliport", + "latitude_deg": "33.16096", + "longitude_deg": "-96.63638", + "elevation_ft": "643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "McKinney", + "scheduled_service": "no", + "local_code": "51XA" + }, + { + "id": "345645", + "ident": "US-4499", + "type": "closed", + "name": "Bonebrake Airport", + "latitude_deg": "31.18937", + "longitude_deg": "-102.89989", + "elevation_ft": "2540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no", + "keywords": "Courtney Creek" + }, + { + "id": "345646", + "ident": "US-4500", + "type": "heliport", + "name": "UT Southwestern Medical Center Heliport", + "latitude_deg": "32.82037", + "longitude_deg": "-96.85028", + "elevation_ft": "435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "38TX", + "local_code": "38TX" + }, + { + "id": "345647", + "ident": "US-4501", + "type": "heliport", + "name": "Los Angeles Department of Water and Power Mojave Heliport", + "latitude_deg": "35.07179", + "longitude_deg": "-118.17455", + "elevation_ft": "2860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mojave", + "scheduled_service": "no" + }, + { + "id": "345648", + "ident": "US-4502", + "type": "heliport", + "name": "Markleeville Heliport", + "latitude_deg": "38.6909", + "longitude_deg": "-119.77513", + "elevation_ft": "5778", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Markleeville", + "scheduled_service": "no" + }, + { + "id": "345649", + "ident": "US-4503", + "type": "heliport", + "name": "Carson Valley Medical Center Heliport", + "latitude_deg": "38.92048", + "longitude_deg": "-119.71892", + "elevation_ft": "4813", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Gardnerville", + "scheduled_service": "no" + }, + { + "id": "345681", + "ident": "US-4504", + "type": "small_airport", + "name": "Millstream Airpark", + "latitude_deg": "42.963025", + "longitude_deg": "-84.044572", + "elevation_ft": "752", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Corunna", + "scheduled_service": "no", + "local_code": "56M" + }, + { + "id": "345685", + "ident": "US-4505", + "type": "heliport", + "name": "Harsens Island Heliport", + "latitude_deg": "42.592204", + "longitude_deg": "-82.571983", + "elevation_ft": "578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Harsens Island", + "scheduled_service": "no", + "local_code": "HD6", + "home_link": "https://www.michigan.gov/documents/aero/Harsens_Island_heliport_385384_7.pdf" + }, + { + "id": "345695", + "ident": "US-4506", + "type": "heliport", + "name": "Dobbins Helipad", + "latitude_deg": "33.34426", + "longitude_deg": "-112.05801", + "elevation_ft": "2345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "345701", + "ident": "US-4507", + "type": "heliport", + "name": "TMC Bonham Hospital Heliport", + "latitude_deg": "33.57805", + "longitude_deg": "-96.16593", + "elevation_ft": "566", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bonham", + "scheduled_service": "no" + }, + { + "id": "345702", + "ident": "US-4508", + "type": "heliport", + "name": "Muscogee (Creek) Nation Medical Center Heliport", + "latitude_deg": "35.611", + "longitude_deg": "-95.95294", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Okmulgee", + "scheduled_service": "no" + }, + { + "id": "345704", + "ident": "US-4509", + "type": "closed", + "name": "Huntersville Field", + "latitude_deg": "46.777757", + "longitude_deg": "-94.852052", + "elevation_ft": "1380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Menahga", + "scheduled_service": "no", + "keywords": "4MN9" + }, + { + "id": "345705", + "ident": "US-4510", + "type": "small_airport", + "name": "Castle Canyon Airport", + "latitude_deg": "29.55667", + "longitude_deg": "-101.05068", + "elevation_ft": "1307", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no" + }, + { + "id": "345706", + "ident": "US-4511", + "type": "heliport", + "name": "Oklahoma City Police Department Heliport", + "latitude_deg": "35.44991", + "longitude_deg": "-97.53077", + "elevation_ft": "1191", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oklahoma City", + "scheduled_service": "no" + }, + { + "id": "345708", + "ident": "US-4512", + "type": "closed", + "name": "Sabine Pass Port Authority Heliport", + "latitude_deg": "29.73627", + "longitude_deg": "-93.88734", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sabine Pass", + "scheduled_service": "no" + }, + { + "id": "345709", + "ident": "US-4513", + "type": "heliport", + "name": "OU Medical Center Edmond Heliport", + "latitude_deg": "35.65504", + "longitude_deg": "-97.46072", + "elevation_ft": "1184", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Edmond", + "scheduled_service": "no", + "gps_code": "11OK", + "local_code": "11OK" + }, + { + "id": "345710", + "ident": "US-4514", + "type": "heliport", + "name": "Mount Lemmon Sky Center Observatory Heliport", + "latitude_deg": "32.44159", + "longitude_deg": "-110.78839", + "elevation_ft": "9137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mount Lemmon", + "scheduled_service": "no" + }, + { + "id": "345711", + "ident": "US-4515", + "type": "heliport", + "name": "Cobre Valley Regional Medical Center Heliport", + "latitude_deg": "33.40626", + "longitude_deg": "-110.82724", + "elevation_ft": "3376", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Globe", + "scheduled_service": "no" + }, + { + "id": "345712", + "ident": "US-4516", + "type": "heliport", + "name": "P D Helispot", + "latitude_deg": "33.49151", + "longitude_deg": "-109.33843", + "elevation_ft": "7159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Clifton", + "scheduled_service": "no" + }, + { + "id": "345713", + "ident": "US-4517", + "type": "small_airport", + "name": "Medanales Airport", + "latitude_deg": "36.19792", + "longitude_deg": "-106.21867", + "elevation_ft": "5903", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Medanales", + "scheduled_service": "no" + }, + { + "id": "345714", + "ident": "US-4518", + "type": "heliport", + "name": "Hannagan Meadow Heliport", + "latitude_deg": "33.63242", + "longitude_deg": "-109.32584", + "elevation_ft": "9167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Clifton", + "scheduled_service": "no" + }, + { + "id": "345717", + "ident": "US-4519", + "type": "small_airport", + "name": "Jackson Hole Airport", + "latitude_deg": "33.63298", + "longitude_deg": "-110.59792", + "elevation_ft": "5082", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Globe", + "scheduled_service": "no" + }, + { + "id": "345718", + "ident": "US-4520", + "type": "small_airport", + "name": "West Catlett Airstrip", + "latitude_deg": "38.83281", + "longitude_deg": "-121.58041", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Nicolaus", + "scheduled_service": "no" + }, + { + "id": "345720", + "ident": "US-4521", + "type": "small_airport", + "name": "Willow Creek Airport", + "latitude_deg": "42.84886", + "longitude_deg": "-110.93977", + "elevation_ft": "6234", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Bedford", + "scheduled_service": "no" + }, + { + "id": "345721", + "ident": "US-4522", + "type": "small_airport", + "name": "Clark Airport", + "latitude_deg": "31.88974", + "longitude_deg": "-109.08696", + "elevation_ft": "4354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Portal", + "scheduled_service": "no" + }, + { + "id": "345722", + "ident": "US-4523", + "type": "small_airport", + "name": "Freeman Property Airport", + "latitude_deg": "29.84162", + "longitude_deg": "-95.80005", + "elevation_ft": "151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Katy", + "scheduled_service": "no" + }, + { + "id": "345723", + "ident": "US-4524", + "type": "small_airport", + "name": "Trusty Ranch Airport", + "latitude_deg": "36.23197", + "longitude_deg": "-95.65056", + "elevation_ft": "614", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Claremore", + "scheduled_service": "no" + }, + { + "id": "345724", + "ident": "US-4525", + "type": "heliport", + "name": "Buena Vista Helipad", + "latitude_deg": "33.3423", + "longitude_deg": "-112.04593", + "elevation_ft": "2416", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "345727", + "ident": "US-4526", + "type": "heliport", + "name": "Las Pulgas Heliport", + "latitude_deg": "33.34502", + "longitude_deg": "-117.4077", + "elevation_ft": "238", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceanside", + "scheduled_service": "no" + }, + { + "id": "345728", + "ident": "US-4527", + "type": "small_airport", + "name": "White Ranch Airport", + "latitude_deg": "29.82055", + "longitude_deg": "-101.79605", + "elevation_ft": "1329", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dryden", + "scheduled_service": "no" + }, + { + "id": "345729", + "ident": "US-4528", + "type": "small_airport", + "name": "Casa de Piedras Airport", + "latitude_deg": "29.85283", + "longitude_deg": "-101.91219", + "elevation_ft": "1835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dryden", + "scheduled_service": "no" + }, + { + "id": "345730", + "ident": "US-4529", + "type": "closed", + "name": "Robinson Airport", + "latitude_deg": "31.85221", + "longitude_deg": "-103.07521", + "elevation_ft": "2864", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kermit", + "scheduled_service": "no" + }, + { + "id": "345732", + "ident": "US-4530", + "type": "closed", + "name": "Allison Ranch North Airport", + "latitude_deg": "30.56471", + "longitude_deg": "-101.80469", + "elevation_ft": "2642", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sheffield", + "scheduled_service": "no" + }, + { + "id": "345733", + "ident": "US-4531", + "type": "closed", + "name": "Allison Ranch Northeast Airport", + "latitude_deg": "30.56036", + "longitude_deg": "-101.79393", + "elevation_ft": "2632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sheffield", + "scheduled_service": "no" + }, + { + "id": "345734", + "ident": "US-4532", + "type": "heliport", + "name": "Inn at Dos Brisas Helipad", + "latitude_deg": "30.22079", + "longitude_deg": "-96.25737", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brenham", + "scheduled_service": "no" + }, + { + "id": "345736", + "ident": "US-4533", + "type": "heliport", + "name": "Easter Hill Private Helipad", + "latitude_deg": "33.780599", + "longitude_deg": "-117.781602", + "elevation_ft": "912", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "North Tustin", + "scheduled_service": "no", + "keywords": "Dubbs Hill, Sunrise Lane, Tim Yale" + }, + { + "id": "345737", + "ident": "US-4534", + "type": "heliport", + "name": "69 Bravo Heliport", + "latitude_deg": "34.07494", + "longitude_deg": "-118.62757", + "elevation_ft": "2451", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Topanga", + "scheduled_service": "no" + }, + { + "id": "345738", + "ident": "US-4535", + "type": "closed", + "name": "Will F Rogers Ranch Airport", + "latitude_deg": "32.4461", + "longitude_deg": "-106.69951", + "elevation_ft": "4360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Organ", + "scheduled_service": "no" + }, + { + "id": "345739", + "ident": "US-4536", + "type": "closed", + "name": "Horseshoe Island Airport", + "latitude_deg": "43.22588", + "longitude_deg": "-76.25855", + "elevation_ft": "369", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Clay", + "scheduled_service": "no" + }, + { + "id": "345740", + "ident": "US-4537", + "type": "small_airport", + "name": "Hensley Ranch Airport", + "latitude_deg": "30.83663", + "longitude_deg": "-97.9453", + "elevation_ft": "1115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bertram", + "scheduled_service": "no" + }, + { + "id": "345741", + "ident": "US-4538", + "type": "heliport", + "name": "Henman House Private Helipad", + "latitude_deg": "34.08902", + "longitude_deg": "-118.88497", + "elevation_ft": "1582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Malibu", + "scheduled_service": "no" + }, + { + "id": "345742", + "ident": "US-4539", + "type": "small_airport", + "name": "RJ Ranch Airport", + "latitude_deg": "30.91543", + "longitude_deg": "-97.95522", + "elevation_ft": "1093", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Briggs", + "scheduled_service": "no" + }, + { + "id": "345743", + "ident": "US-4540", + "type": "closed", + "name": "Deaton Ranch Airport", + "latitude_deg": "30.14531", + "longitude_deg": "-102.4421", + "elevation_ft": "2884", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanderson", + "scheduled_service": "no" + }, + { + "id": "345744", + "ident": "US-4541", + "type": "small_airport", + "name": "Wind Blown Airport", + "latitude_deg": "32.84932", + "longitude_deg": "-109.85253", + "elevation_ft": "3018", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Pima", + "scheduled_service": "no" + }, + { + "id": "345745", + "ident": "US-4542", + "type": "small_airport", + "name": "Mud Hollow Airport", + "latitude_deg": "32.8542", + "longitude_deg": "-109.84832", + "elevation_ft": "2973", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Pima", + "scheduled_service": "no" + }, + { + "id": "345746", + "ident": "US-4543", + "type": "closed", + "name": "Nun-Dakah-Et Airfield", + "latitude_deg": "42.61026", + "longitude_deg": "-76.72167", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Interlaken", + "scheduled_service": "no" + }, + { + "id": "345747", + "ident": "US-4544", + "type": "closed", + "name": "Fort Stockton South Airport", + "latitude_deg": "30.86877", + "longitude_deg": "-102.88819", + "elevation_ft": "3002", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no" + }, + { + "id": "345748", + "ident": "US-4545", + "type": "closed", + "name": "FBM Company Airport", + "latitude_deg": "41.44212", + "longitude_deg": "-87.69413", + "elevation_ft": "797", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "University Park", + "scheduled_service": "no" + }, + { + "id": "345749", + "ident": "US-4546", + "type": "heliport", + "name": "Permian Regional Medical Center Heliport", + "latitude_deg": "32.33761", + "longitude_deg": "-102.54743", + "elevation_ft": "3180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Andrews", + "scheduled_service": "no" + }, + { + "id": "345750", + "ident": "US-4547", + "type": "closed", + "name": "Cahoots Airport", + "latitude_deg": "35.42256", + "longitude_deg": "-111.24924", + "elevation_ft": "4964", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Flagstaff", + "scheduled_service": "no" + }, + { + "id": "345751", + "ident": "US-4548", + "type": "heliport", + "name": "Roden Crater Helipad", + "latitude_deg": "35.42335", + "longitude_deg": "-111.25485", + "elevation_ft": "5089", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Flagstaff", + "scheduled_service": "no" + }, + { + "id": "345752", + "ident": "US-4549", + "type": "heliport", + "name": "Old Naval Hospital Heliport", + "latitude_deg": "33.34073", + "longitude_deg": "-117.32441", + "elevation_ft": "209", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceanside", + "scheduled_service": "no" + }, + { + "id": "345753", + "ident": "US-4550", + "type": "small_airport", + "name": "Thorp Airport", + "latitude_deg": "31.3002", + "longitude_deg": "-100.80448", + "elevation_ft": "2179", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mertzon", + "scheduled_service": "no" + }, + { + "id": "345755", + "ident": "US-4551", + "type": "closed", + "name": "Harral Draw Airport", + "latitude_deg": "30.61911", + "longitude_deg": "-102.19318", + "elevation_ft": "2624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sheffield", + "scheduled_service": "no" + }, + { + "id": "345778", + "ident": "US-4552", + "type": "heliport", + "name": "HCA Florida Fawcett Hospital Heliport", + "latitude_deg": "26.988793", + "longitude_deg": "-82.099457", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Port Charlotte", + "scheduled_service": "no", + "gps_code": "2FD8", + "local_code": "2FD8", + "keywords": "Fawcett Memorial Hospital Helipad" + }, + { + "id": "345779", + "ident": "US-4553", + "type": "small_airport", + "name": "Moria Meadow Airport", + "latitude_deg": "30.13918", + "longitude_deg": "-95.952925", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waller", + "scheduled_service": "no", + "gps_code": "53TS", + "local_code": "53TS" + }, + { + "id": "345780", + "ident": "US-4554", + "type": "small_airport", + "name": "Diamond H Airport", + "latitude_deg": "37.255651", + "longitude_deg": "-95.231522", + "elevation_ft": "913", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Parsons", + "scheduled_service": "no", + "gps_code": "80KS", + "local_code": "80KS" + }, + { + "id": "345782", + "ident": "US-4555", + "type": "small_airport", + "name": "Scott Airfield", + "latitude_deg": "32.13718", + "longitude_deg": "-100.12988", + "elevation_ft": "2179", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wingate", + "scheduled_service": "no", + "gps_code": "88TE", + "local_code": "88TE" + }, + { + "id": "345785", + "ident": "US-4556", + "type": "closed", + "name": "Lone Company Airstrip", + "latitude_deg": "38.5263", + "longitude_deg": "-119.46167", + "elevation_ft": "5449", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Walker", + "scheduled_service": "no" + }, + { + "id": "345786", + "ident": "US-4557", + "type": "closed", + "name": "Marine Corps Airfield Sunrise Springs", + "latitude_deg": "34.29726", + "longitude_deg": "-116.26719", + "elevation_ft": "2585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Joshua Tree", + "scheduled_service": "no" + }, + { + "id": "345787", + "ident": "US-4558", + "type": "closed", + "name": "Hillcrest Airport", + "latitude_deg": "34.40798", + "longitude_deg": "-103.16699", + "elevation_ft": "4241", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Clovis", + "scheduled_service": "no", + "keywords": "E86" + }, + { + "id": "345788", + "ident": "US-4559", + "type": "closed", + "name": "Portales Municipal Airport (1941)", + "latitude_deg": "34.24958", + "longitude_deg": "-103.23907", + "elevation_ft": "4060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Portales", + "scheduled_service": "no" + }, + { + "id": "345789", + "ident": "US-4560", + "type": "closed", + "name": "Portales Municipal Airport (1949)", + "latitude_deg": "34.18047", + "longitude_deg": "-103.372", + "elevation_ft": "4020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Portales", + "scheduled_service": "no" + }, + { + "id": "345790", + "ident": "US-4561", + "type": "closed", + "name": "Portales Municipal Airport (1944)", + "latitude_deg": "34.13123", + "longitude_deg": "-103.39214", + "elevation_ft": "4080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Portales", + "scheduled_service": "no" + }, + { + "id": "345791", + "ident": "US-4562", + "type": "small_airport", + "name": "Nokai Dome Airport", + "latitude_deg": "37.27877", + "longitude_deg": "-110.57212", + "elevation_ft": "5951", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no" + }, + { + "id": "345792", + "ident": "US-4563", + "type": "closed", + "name": "Zahn Upper Airport", + "latitude_deg": "37.23075", + "longitude_deg": "-110.57534", + "elevation_ft": "4803", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no" + }, + { + "id": "345793", + "ident": "US-4564", + "type": "closed", + "name": "Zahns Camp Airport", + "latitude_deg": "37.22067", + "longitude_deg": "-110.54791", + "elevation_ft": "3796", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no" + }, + { + "id": "345794", + "ident": "US-4565", + "type": "small_airport", + "name": "Electra Airport", + "latitude_deg": "34.05279", + "longitude_deg": "-98.89049", + "elevation_ft": "1171", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Electra", + "scheduled_service": "no" + }, + { + "id": "345795", + "ident": "US-4566", + "type": "small_airport", + "name": "Waggoner WT East Ranch Airport", + "latitude_deg": "33.97125", + "longitude_deg": "-99.2236", + "elevation_ft": "1145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Electra", + "scheduled_service": "no", + "keywords": "Zacaweista Ranch" + }, + { + "id": "345797", + "ident": "US-4567", + "type": "closed", + "name": "Red Lake Airport", + "latitude_deg": "35.90319", + "longitude_deg": "-109.04714", + "elevation_ft": "7058", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Navajo", + "scheduled_service": "no" + }, + { + "id": "345798", + "ident": "US-4568", + "type": "closed", + "name": "Adwell Corporation Airport", + "latitude_deg": "39.35063", + "longitude_deg": "-90.60118", + "elevation_ft": "424", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Eldred", + "scheduled_service": "no" + }, + { + "id": "345799", + "ident": "US-4569", + "type": "closed", + "name": "Herschberger Airport", + "latitude_deg": "39.3513", + "longitude_deg": "-90.5728", + "elevation_ft": "429", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Carrollton", + "scheduled_service": "no" + }, + { + "id": "345801", + "ident": "US-4570", + "type": "heliport", + "name": "Cloud County Health Center Heliport", + "latitude_deg": "39.566153", + "longitude_deg": "-97.672947", + "elevation_ft": "1443", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Concordia", + "scheduled_service": "no" + }, + { + "id": "345808", + "ident": "US-4571", + "type": "heliport", + "name": "Scottsdale Heliport", + "latitude_deg": "33.625153", + "longitude_deg": "-111.918294", + "elevation_ft": "1511", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Scottsdale", + "scheduled_service": "no", + "gps_code": "AZ83", + "local_code": "AZ83" + }, + { + "id": "345809", + "ident": "US-4572", + "type": "small_airport", + "name": "McCall Airport", + "latitude_deg": "34.479551", + "longitude_deg": "-86.77128", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Somerville", + "scheduled_service": "no", + "gps_code": "AL04", + "local_code": "AL04" + }, + { + "id": "345813", + "ident": "US-4573", + "type": "heliport", + "name": "Gundersen Palmer Lutheran Hospital Heliport", + "latitude_deg": "42.968917", + "longitude_deg": "-91.800867", + "elevation_ft": "1151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "West Union", + "scheduled_service": "no", + "gps_code": "IA15", + "local_code": "IA15" + }, + { + "id": "345815", + "ident": "US-4574", + "type": "small_airport", + "name": "Workman Airfield", + "latitude_deg": "41.6099", + "longitude_deg": "-90.858951", + "elevation_ft": "716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Stockton", + "scheduled_service": "no", + "gps_code": "IA68", + "local_code": "IA68" + }, + { + "id": "345817", + "ident": "US-4575", + "type": "small_airport", + "name": "Gutwein Airport", + "latitude_deg": "40.964444", + "longitude_deg": "-86.918472", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Francesville", + "scheduled_service": "no", + "gps_code": "IN21", + "local_code": "IN21" + }, + { + "id": "345828", + "ident": "US-4576", + "type": "small_airport", + "name": "C2K Airport", + "latitude_deg": "37.37176", + "longitude_deg": "-93.143055", + "elevation_ft": "1289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Fair Grove", + "scheduled_service": "no", + "gps_code": "MO15", + "local_code": "MO15" + }, + { + "id": "345830", + "ident": "US-4577", + "type": "heliport", + "name": "Columbus Regional Medical Center Heliport", + "latitude_deg": "34.337443", + "longitude_deg": "-78.696377", + "elevation_ft": "71", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Whiteville", + "scheduled_service": "no", + "gps_code": "NC78", + "local_code": "NC78" + }, + { + "id": "345832", + "ident": "US-4578", + "type": "small_airport", + "name": "Naked Acres Airport", + "latitude_deg": "42.986556", + "longitude_deg": "-77.650949", + "elevation_ft": "686", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Rochester", + "scheduled_service": "no", + "gps_code": "NY78", + "local_code": "NY78" + }, + { + "id": "345842", + "ident": "US-4579", + "type": "heliport", + "name": "United Regional Health Care Heliport", + "latitude_deg": "33.90365", + "longitude_deg": "-98.50209", + "elevation_ft": "999", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wichita Falls", + "scheduled_service": "no", + "keywords": "Air Evac 34 Heliport" + }, + { + "id": "345843", + "ident": "US-4580", + "type": "heliport", + "name": "Walter E Long Metropolitan Park Auxiliary Helicopter Landing Zone", + "latitude_deg": "30.2808", + "longitude_deg": "-97.60267", + "elevation_ft": "568", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no" + }, + { + "id": "345845", + "ident": "US-4581", + "type": "closed", + "name": "Henrietta Municipal Airport", + "latitude_deg": "33.79582", + "longitude_deg": "-98.22324", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Henrietta", + "scheduled_service": "no" + }, + { + "id": "345847", + "ident": "US-4582", + "type": "heliport", + "name": "Plains Regional Medical Center Heliport", + "latitude_deg": "34.4196", + "longitude_deg": "-103.23497", + "elevation_ft": "4313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Clovis", + "scheduled_service": "no" + }, + { + "id": "345848", + "ident": "US-4583", + "type": "closed", + "name": "Magnolia Airport", + "latitude_deg": "40.65857", + "longitude_deg": "-81.3018", + "elevation_ft": "952", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Magnolia", + "scheduled_service": "no" + }, + { + "id": "345849", + "ident": "US-4584", + "type": "small_airport", + "name": "Schindler Airport", + "latitude_deg": "30.41051", + "longitude_deg": "-87.78172", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Magnolia Springs", + "scheduled_service": "no" + }, + { + "id": "345850", + "ident": "US-4585", + "type": "closed", + "name": "Ravenna Arsenal Crash Test Runway", + "latitude_deg": "41.17258", + "longitude_deg": "-81.12745", + "elevation_ft": "1078", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ravenna", + "scheduled_service": "no" + }, + { + "id": "345851", + "ident": "US-4586", + "type": "closed", + "name": "Ravenna Arsenal Test Support Runway", + "latitude_deg": "41.16389", + "longitude_deg": "-81.11931", + "elevation_ft": "1099", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ravenna", + "scheduled_service": "no" + }, + { + "id": "345852", + "ident": "US-4587", + "type": "closed", + "name": "Southeast Corner Airfield", + "latitude_deg": "34.64219", + "longitude_deg": "-98.28864", + "elevation_ft": "1299", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lawton", + "scheduled_service": "no" + }, + { + "id": "345853", + "ident": "US-4588", + "type": "closed", + "name": "Central High Airport", + "latitude_deg": "34.61386", + "longitude_deg": "-98.07481", + "elevation_ft": "1198", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Central High", + "scheduled_service": "no" + }, + { + "id": "345869", + "ident": "US-4589", + "type": "closed", + "name": "Hillcrest Country Club Airport", + "latitude_deg": "42.75252", + "longitude_deg": "-74.03962", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Duanesburg", + "scheduled_service": "no" + }, + { + "id": "345870", + "ident": "US-4590", + "type": "heliport", + "name": "Claremore Indian Hospital Heliport", + "latitude_deg": "36.31518", + "longitude_deg": "-95.62941", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Claremore", + "scheduled_service": "no" + }, + { + "id": "345871", + "ident": "US-4591", + "type": "heliport", + "name": "Hillcrest Hospital South Heliport", + "latitude_deg": "36.03441", + "longitude_deg": "-95.86372", + "elevation_ft": "689", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tulsa", + "scheduled_service": "no" + }, + { + "id": "345872", + "ident": "US-4592", + "type": "heliport", + "name": "Saint Francis Hospital South Heliport", + "latitude_deg": "36.03305", + "longitude_deg": "-95.85827", + "elevation_ft": "707", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tulsa", + "scheduled_service": "no" + }, + { + "id": "345874", + "ident": "US-4593", + "type": "closed", + "name": "Ward Family Airport", + "latitude_deg": "33.80651", + "longitude_deg": "-96.67454", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pottsboro", + "scheduled_service": "no" + }, + { + "id": "345875", + "ident": "US-4594", + "type": "small_airport", + "name": "Johns Place Airport", + "latitude_deg": "35.21371", + "longitude_deg": "-118.00805", + "elevation_ft": "2280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "California City", + "scheduled_service": "no" + }, + { + "id": "345876", + "ident": "US-4595", + "type": "small_airport", + "name": "Smithport Airport", + "latitude_deg": "43.05046", + "longitude_deg": "-75.22808", + "elevation_ft": "1148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Frankfort", + "scheduled_service": "no" + }, + { + "id": "345877", + "ident": "US-4596", + "type": "heliport", + "name": "Park City Ski Mountain Helipad", + "latitude_deg": "40.62383", + "longitude_deg": "-111.51905", + "elevation_ft": "8435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Park City", + "scheduled_service": "no" + }, + { + "id": "345878", + "ident": "US-4597", + "type": "closed", + "name": "Canyons Temporary Helipad", + "latitude_deg": "40.68348", + "longitude_deg": "-111.5552", + "elevation_ft": "6917", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Park City", + "scheduled_service": "no", + "keywords": "Powderbird, Park City Helitours" + }, + { + "id": "345879", + "ident": "US-4598", + "type": "small_airport", + "name": "Timpanogos Canal Airport", + "latitude_deg": "40.54138", + "longitude_deg": "-111.40638", + "elevation_ft": "5833", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Heber City", + "scheduled_service": "no" + }, + { + "id": "345881", + "ident": "US-4599", + "type": "small_airport", + "name": "Dymesich Airport", + "latitude_deg": "40.40435", + "longitude_deg": "-122.21366", + "elevation_ft": "414", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Cottonwood", + "scheduled_service": "no" + }, + { + "id": "11108", + "ident": "US-45AR", + "type": "closed", + "name": "Moore Farm Airport", + "latitude_deg": "34.550389", + "longitude_deg": "-92.05012", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "England", + "scheduled_service": "no", + "keywords": "45AR" + }, + { + "id": "345882", + "ident": "US-4600", + "type": "closed", + "name": "Goodall SSP Ranch Airport", + "latitude_deg": "30.55543", + "longitude_deg": "-98.19445", + "elevation_ft": "751", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marble Falls", + "scheduled_service": "no" + }, + { + "id": "345883", + "ident": "US-4601", + "type": "heliport", + "name": "Tuba City Regional Health Care Heliport", + "latitude_deg": "36.13616", + "longitude_deg": "-111.23532", + "elevation_ft": "4954", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tuba City", + "scheduled_service": "no" + }, + { + "id": "345884", + "ident": "US-4602", + "type": "closed", + "name": "Chicago Fire Department Quinn Fire Academy Heliport", + "latitude_deg": "41.86952", + "longitude_deg": "-87.64187", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "no" + }, + { + "id": "345885", + "ident": "US-4603", + "type": "closed", + "name": "Galbraith Airport", + "latitude_deg": "41.01843", + "longitude_deg": "-111.97498", + "elevation_ft": "4224", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Kaysville", + "scheduled_service": "no" + }, + { + "id": "345886", + "ident": "US-4604", + "type": "closed", + "name": "Arthur Ranch Airport", + "latitude_deg": "30.00615", + "longitude_deg": "-99.2242", + "elevation_ft": "2062", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kerrville", + "scheduled_service": "no" + }, + { + "id": "345887", + "ident": "US-4605", + "type": "closed", + "name": "Parker Ranch Airport", + "latitude_deg": "30.386067", + "longitude_deg": "-98.211694", + "elevation_ft": "921", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Round Mountain", + "scheduled_service": "no", + "keywords": "Goodfellow Army Airfield Aux #6" + }, + { + "id": "345888", + "ident": "US-4606", + "type": "closed", + "name": "Vancourt Field", + "latitude_deg": "31.33445", + "longitude_deg": "-100.28755", + "elevation_ft": "1928", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Angelo", + "scheduled_service": "no", + "keywords": "Goodfellow Army Airfield Aux #6" + }, + { + "id": "345889", + "ident": "US-4607", + "type": "heliport", + "name": "NASA Michoud Heliport", + "latitude_deg": "30.01918", + "longitude_deg": "-89.91717", + "elevation_ft": "1", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no" + }, + { + "id": "345890", + "ident": "US-4608", + "type": "closed", + "name": "Michoud Factory Airfield", + "latitude_deg": "30.01835", + "longitude_deg": "-89.91729", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no" + }, + { + "id": "345893", + "ident": "US-4609", + "type": "closed", + "name": "Garrett Field", + "latitude_deg": "30.26628", + "longitude_deg": "-89.72457", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Slidell", + "scheduled_service": "no" + }, + { + "id": "345894", + "ident": "US-4610", + "type": "closed", + "name": "Valley View Airpark", + "latitude_deg": "35.60272", + "longitude_deg": "-117.62224", + "elevation_ft": "2466", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ridgecrest", + "scheduled_service": "no" + }, + { + "id": "345895", + "ident": "US-4611", + "type": "closed", + "name": "East Lake Charles Airport", + "latitude_deg": "30.217386", + "longitude_deg": "-93.14388", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Charles", + "scheduled_service": "no" + }, + { + "id": "345902", + "ident": "US-4612", + "type": "closed", + "name": "A Bar H Fam Airport", + "latitude_deg": "32.24193", + "longitude_deg": "-109.163", + "elevation_ft": "3704", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "San Simon", + "scheduled_service": "no" + }, + { + "id": "345903", + "ident": "US-4613", + "type": "closed", + "name": "Worthington Airport", + "latitude_deg": "32.84764", + "longitude_deg": "-115.61654", + "elevation_ft": "-55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Imperial", + "scheduled_service": "no" + }, + { + "id": "345905", + "ident": "US-4614", + "type": "closed", + "name": "Cameron Airport", + "latitude_deg": "35.89394", + "longitude_deg": "-111.383", + "elevation_ft": "4213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Cameron", + "scheduled_service": "no", + "keywords": "Naʼníʼá Hasání" + }, + { + "id": "345931", + "ident": "US-4615", + "type": "small_airport", + "name": "Thompson Creek Oilfield Airport", + "latitude_deg": "44.958605", + "longitude_deg": "-104.868655", + "elevation_ft": "3814", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Hulett", + "scheduled_service": "no", + "local_code": "11WY" + }, + { + "id": "345932", + "ident": "US-4616", + "type": "small_airport", + "name": "Thompson Creek Oilfield Airport", + "latitude_deg": "44.958839", + "longitude_deg": "-104.872012", + "elevation_ft": "3814", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Hulett", + "scheduled_service": "no", + "local_code": "11WY" + }, + { + "id": "345933", + "ident": "US-4617", + "type": "small_airport", + "name": "West Airport", + "latitude_deg": "35.429444", + "longitude_deg": "-80.450277", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Mount Pleasant", + "scheduled_service": "no", + "local_code": "62NR" + }, + { + "id": "345934", + "ident": "US-4618", + "type": "small_airport", + "name": "Tellico Plains Municipal Airport", + "latitude_deg": "35.381666", + "longitude_deg": "-84.303888", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Tellico Plains", + "scheduled_service": "no", + "local_code": "85TN" + }, + { + "id": "345935", + "ident": "US-4619", + "type": "small_airport", + "name": "Steele Farms Airport", + "latitude_deg": "33.143333", + "longitude_deg": "-91.06", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Hollandale", + "scheduled_service": "no", + "local_code": "90MS" + }, + { + "id": "345936", + "ident": "US-4620", + "type": "small_airport", + "name": "Werner Ranch Airfield", + "latitude_deg": "41.54925", + "longitude_deg": "-100.048966", + "elevation_ft": "2838", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Anselmo", + "scheduled_service": "no", + "local_code": "NE36" + }, + { + "id": "345937", + "ident": "US-4621", + "type": "small_airport", + "name": "Carolina Bay Airport", + "latitude_deg": "34.097222", + "longitude_deg": "-78.719722", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Whiteville", + "scheduled_service": "no", + "local_code": "NR82" + }, + { + "id": "345939", + "ident": "US-4622", + "type": "closed", + "name": "Midway Airport", + "latitude_deg": "33.03533", + "longitude_deg": "-109.99787", + "elevation_ft": "2762", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Fort Thomas", + "scheduled_service": "no" + }, + { + "id": "345940", + "ident": "US-4623", + "type": "closed", + "name": "Baker Airport", + "latitude_deg": "32.74709", + "longitude_deg": "-109.68641", + "elevation_ft": "3131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Safford", + "scheduled_service": "no" + }, + { + "id": "345941", + "ident": "US-4624", + "type": "closed", + "name": "Swift Airport", + "latitude_deg": "32.7375", + "longitude_deg": "-109.67023", + "elevation_ft": "3135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Safford", + "scheduled_service": "no" + }, + { + "id": "345942", + "ident": "US-4625", + "type": "closed", + "name": "Intermountain Sprayers Airport", + "latitude_deg": "39.41701", + "longitude_deg": "-110.83379", + "elevation_ft": "5719", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Elmo", + "scheduled_service": "no" + }, + { + "id": "345943", + "ident": "US-4626", + "type": "small_airport", + "name": "Miracle Mile Airport", + "latitude_deg": "42.21896", + "longitude_deg": "-106.86738", + "elevation_ft": "5971", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Hanna", + "scheduled_service": "no" + }, + { + "id": "345944", + "ident": "US-4627", + "type": "closed", + "name": "Gypsite Springs Airport", + "latitude_deg": "35.33588", + "longitude_deg": "-117.9381", + "elevation_ft": "2062", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Cantil", + "scheduled_service": "no", + "keywords": "Gypsy Springs" + }, + { + "id": "345945", + "ident": "US-4628", + "type": "small_airport", + "name": "Aciero Farms Landing Field", + "latitude_deg": "35.37214", + "longitude_deg": "-117.81281", + "elevation_ft": "2053", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Randsburg", + "scheduled_service": "no" + }, + { + "id": "345946", + "ident": "US-4629", + "type": "small_airport", + "name": "Columbia Junction Airstrip", + "latitude_deg": "39.52496", + "longitude_deg": "-110.46457", + "elevation_ft": "5990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "East Carbon", + "scheduled_service": "no", + "keywords": "Sunnyside Airport" + }, + { + "id": "345947", + "ident": "US-4630", + "type": "small_airport", + "name": "Helendale Airport", + "latitude_deg": "34.82444", + "longitude_deg": "-117.30442", + "elevation_ft": "2518", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Helendale", + "scheduled_service": "no" + }, + { + "id": "345948", + "ident": "US-4631", + "type": "closed", + "name": "Hawes Auxiliary Airport", + "latitude_deg": "34.92302", + "longitude_deg": "-117.37643", + "elevation_ft": "2321", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Helendale", + "scheduled_service": "no", + "keywords": "Hawes Auxiliary Airfield Number 1" + }, + { + "id": "345949", + "ident": "US-4632", + "type": "small_airport", + "name": "Badwater Airport", + "latitude_deg": "43.31841", + "longitude_deg": "-107.42493", + "elevation_ft": "6371", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Powder River", + "scheduled_service": "no" + }, + { + "id": "345950", + "ident": "US-4633", + "type": "closed", + "name": "Powder Puff Airport", + "latitude_deg": "34.62376", + "longitude_deg": "-109.66182", + "elevation_ft": "5433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Concho", + "scheduled_service": "no" + }, + { + "id": "345951", + "ident": "US-4634", + "type": "closed", + "name": "Hammonton Airport", + "latitude_deg": "39.18965", + "longitude_deg": "-121.41966", + "elevation_ft": "138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hammonton", + "scheduled_service": "no" + }, + { + "id": "345952", + "ident": "US-4635", + "type": "small_airport", + "name": "Foster Ranch Airport", + "latitude_deg": "31.22266", + "longitude_deg": "-104.31489", + "elevation_ft": "3832", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Van Horn", + "scheduled_service": "no" + }, + { + "id": "345953", + "ident": "US-4636", + "type": "closed", + "name": "Lohn Airport", + "latitude_deg": "31.31523", + "longitude_deg": "-99.4055", + "elevation_ft": "1571", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lohn", + "scheduled_service": "no" + }, + { + "id": "345954", + "ident": "US-4637", + "type": "small_airport", + "name": "Maheu Airport", + "latitude_deg": "44.14018", + "longitude_deg": "-70.34786", + "elevation_ft": "711", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Minot", + "scheduled_service": "no" + }, + { + "id": "345955", + "ident": "US-4638", + "type": "closed", + "name": "Hemond Airport", + "latitude_deg": "44.13342", + "longitude_deg": "-70.34113", + "elevation_ft": "666", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Minot", + "scheduled_service": "no", + "keywords": "72B" + }, + { + "id": "345968", + "ident": "US-4639", + "type": "heliport", + "name": "Iraan General Hospital Heliport", + "latitude_deg": "30.91493", + "longitude_deg": "-101.90816", + "elevation_ft": "2257", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Iraan", + "scheduled_service": "no" + }, + { + "id": "345972", + "ident": "US-4640", + "type": "heliport", + "name": "Crystal Park Helipad", + "latitude_deg": "38.83881", + "longitude_deg": "-104.94404", + "elevation_ft": "8865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Manitou Springs", + "scheduled_service": "no" + }, + { + "id": "345973", + "ident": "US-4641", + "type": "heliport", + "name": "Patos Island Helipad", + "latitude_deg": "48.78821", + "longitude_deg": "-122.96994", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Eastsound", + "scheduled_service": "no" + }, + { + "id": "345974", + "ident": "US-4642", + "type": "closed", + "name": "Little Mountain Heliport", + "latitude_deg": "41.25132", + "longitude_deg": "-112.2516", + "elevation_ft": "4239", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Ogden", + "scheduled_service": "no" + }, + { + "id": "345979", + "ident": "US-4643", + "type": "closed", + "name": "Proctor Lake Emergency Landing Field", + "latitude_deg": "35.11556", + "longitude_deg": "-118.34671", + "elevation_ft": "3907", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tehachapi", + "scheduled_service": "no" + }, + { + "id": "345980", + "ident": "US-4644", + "type": "small_airport", + "name": "Oak Creek Canyon Terrace Landing Field", + "latitude_deg": "35.04809", + "longitude_deg": "-118.36713", + "elevation_ft": "3700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tehachapi", + "scheduled_service": "no" + }, + { + "id": "345981", + "ident": "US-4645", + "type": "heliport", + "name": "Fillmore Community Hospital Heliport", + "latitude_deg": "38.9548", + "longitude_deg": "-112.34085", + "elevation_ft": "5070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Fillmore", + "scheduled_service": "no" + }, + { + "id": "345982", + "ident": "US-4646", + "type": "closed", + "name": "Smalls Airport", + "latitude_deg": "44.77931", + "longitude_deg": "-123.36598", + "elevation_ft": "277", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Monmouth", + "scheduled_service": "no" + }, + { + "id": "345983", + "ident": "US-4647", + "type": "small_airport", + "name": "Clint Odom Airport", + "latitude_deg": "33.41718", + "longitude_deg": "-84.71221", + "elevation_ft": "928", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Newnan", + "scheduled_service": "no" + }, + { + "id": "345988", + "ident": "US-4648", + "type": "closed", + "name": "Crocker Airport", + "latitude_deg": "30.55117", + "longitude_deg": "-99.39489", + "elevation_ft": "1742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mason", + "scheduled_service": "no" + }, + { + "id": "345989", + "ident": "US-4649", + "type": "small_airport", + "name": "Monument Mountain Airport", + "latitude_deg": "30.56524", + "longitude_deg": "-99.39425", + "elevation_ft": "1766", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mason", + "scheduled_service": "no" + }, + { + "id": "345990", + "ident": "US-4650", + "type": "small_airport", + "name": "Mason Airport", + "latitude_deg": "37.5377", + "longitude_deg": "-97.39184", + "elevation_ft": "1283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Haysville", + "scheduled_service": "no" + }, + { + "id": "345991", + "ident": "US-4651", + "type": "closed", + "name": "Creekside Airport", + "latitude_deg": "30.36723", + "longitude_deg": "-87.6582", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Foley", + "scheduled_service": "no" + }, + { + "id": "345993", + "ident": "US-4652", + "type": "closed", + "name": "Naval Outlying Landing Field Bronson", + "latitude_deg": "30.38496", + "longitude_deg": "-87.40802", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pensacola", + "scheduled_service": "no" + }, + { + "id": "345995", + "ident": "US-4653", + "type": "closed", + "name": "Naval Air Station Pensacola Chevalier Field", + "latitude_deg": "30.35435", + "longitude_deg": "-87.2678", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pensacola", + "scheduled_service": "no", + "keywords": "NPA, KNPA" + }, + { + "id": "346002", + "ident": "US-4654", + "type": "closed", + "name": "Artesia Airport", + "latitude_deg": "32.67965", + "longitude_deg": "-109.71761", + "elevation_ft": "3375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Safford", + "scheduled_service": "no" + }, + { + "id": "346004", + "ident": "US-4655", + "type": "closed", + "name": "Old Hatch Airport", + "latitude_deg": "32.62807", + "longitude_deg": "-107.30455", + "elevation_ft": "4511", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Deming", + "scheduled_service": "no" + }, + { + "id": "346006", + "ident": "US-4656", + "type": "closed", + "name": "Bear Canyon Airport", + "latitude_deg": "33.5276", + "longitude_deg": "-110.34405", + "elevation_ft": "4442", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "San Carlos", + "scheduled_service": "no" + }, + { + "id": "346007", + "ident": "US-4657", + "type": "closed", + "name": "Pūko‘o Airport", + "latitude_deg": "21.07222", + "longitude_deg": "-156.79892", + "elevation_ft": "12", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Kaunakakai", + "scheduled_service": "no" + }, + { + "id": "346008", + "ident": "US-4658", + "type": "closed", + "name": "Carl Thompson Airstrip", + "latitude_deg": "41.12355", + "longitude_deg": "-74.0973", + "elevation_ft": "532", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Montebello", + "scheduled_service": "no" + }, + { + "id": "346009", + "ident": "US-4659", + "type": "small_airport", + "name": "JL Mayfield Ranch Airport", + "latitude_deg": "30.15989", + "longitude_deg": "-100.54345", + "elevation_ft": "2147", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no" + }, + { + "id": "346010", + "ident": "US-4660", + "type": "small_airport", + "name": "Mayfield Ranch Airport", + "latitude_deg": "31.90102", + "longitude_deg": "-105.4798", + "elevation_ft": "4590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Salt Flat", + "scheduled_service": "no" + }, + { + "id": "346011", + "ident": "US-4661", + "type": "closed", + "name": "Jasper Intermediate Field", + "latitude_deg": "30.48346", + "longitude_deg": "-82.92606", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jasper", + "scheduled_service": "no" + }, + { + "id": "346012", + "ident": "US-4662", + "type": "heliport", + "name": "Gila Cliff Dwellings Heliport", + "latitude_deg": "33.22392", + "longitude_deg": "-108.23788", + "elevation_ft": "5820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Magdalena", + "scheduled_service": "no" + }, + { + "id": "346013", + "ident": "US-4663", + "type": "closed", + "name": "Gila Hot Springs Airport", + "latitude_deg": "33.19689", + "longitude_deg": "-108.20957", + "elevation_ft": "5673", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Silver City", + "scheduled_service": "no" + }, + { + "id": "346014", + "ident": "US-4664", + "type": "closed", + "name": "Epps Ranch Airport", + "latitude_deg": "30.28808", + "longitude_deg": "-100.57668", + "elevation_ft": "2261", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no" + }, + { + "id": "346015", + "ident": "US-4665", + "type": "closed", + "name": "Marathon Airport", + "latitude_deg": "30.20165", + "longitude_deg": "-103.228", + "elevation_ft": "4112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no" + }, + { + "id": "346016", + "ident": "US-4666", + "type": "closed", + "name": "Willow Creek Airport", + "latitude_deg": "30.19669", + "longitude_deg": "-102.97096", + "elevation_ft": "4108", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "yes" + }, + { + "id": "346017", + "ident": "US-4667", + "type": "small_airport", + "name": "Yellow Tank Airport", + "latitude_deg": "30.235863", + "longitude_deg": "-103.311868", + "elevation_ft": "4250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no" + }, + { + "id": "346018", + "ident": "US-4668", + "type": "closed", + "name": "Corkscrew Airport", + "latitude_deg": "26.44475", + "longitude_deg": "-81.62838", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Estero", + "scheduled_service": "no" + }, + { + "id": "346019", + "ident": "US-4669", + "type": "closed", + "name": "Wooster Airport", + "latitude_deg": "40.83701", + "longitude_deg": "-81.90893", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Wooster", + "scheduled_service": "no" + }, + { + "id": "346020", + "ident": "US-4670", + "type": "closed", + "name": "Briar Hill Airport", + "latitude_deg": "40.5408", + "longitude_deg": "-81.91847", + "elevation_ft": "812", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Millersburg", + "scheduled_service": "no" + }, + { + "id": "346021", + "ident": "US-4671", + "type": "small_airport", + "name": "Chataignier Airport", + "latitude_deg": "30.59223", + "longitude_deg": "-92.25759", + "elevation_ft": "61", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Ville Platte", + "scheduled_service": "no" + }, + { + "id": "346030", + "ident": "US-4672", + "type": "heliport", + "name": "Reeves County Hospital District Heliport", + "latitude_deg": "31.40206", + "longitude_deg": "-103.51351", + "elevation_ft": "2602", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pecos", + "scheduled_service": "no" + }, + { + "id": "346031", + "ident": "US-4673", + "type": "small_airport", + "name": "Hidden Splendor Airstrip", + "latitude_deg": "38.56861", + "longitude_deg": "-110.95732", + "elevation_ft": "4833", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Green River", + "scheduled_service": "no" + }, + { + "id": "346032", + "ident": "US-4674", + "type": "small_airport", + "name": "Black Mountain Airport", + "latitude_deg": "41.56063", + "longitude_deg": "-112.78459", + "elevation_ft": "4223", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Corinne", + "scheduled_service": "no" + }, + { + "id": "346033", + "ident": "US-4675", + "type": "small_airport", + "name": "Nordin Ranch Airport", + "latitude_deg": "37.32287", + "longitude_deg": "-113.95672", + "elevation_ft": "4248", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Gunlock", + "scheduled_service": "no", + "keywords": "D1" + }, + { + "id": "346034", + "ident": "US-4676", + "type": "small_airport", + "name": "Copper Globe / Sagebrush Bench Airstrip", + "latitude_deg": "38.81777", + "longitude_deg": "-110.92918", + "elevation_ft": "7244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Emery", + "scheduled_service": "no" + }, + { + "id": "346035", + "ident": "US-4677", + "type": "small_airport", + "name": "Cliff Dweller Flat Airport", + "latitude_deg": "38.87283", + "longitude_deg": "-110.56975", + "elevation_ft": "6698", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Emery", + "scheduled_service": "no" + }, + { + "id": "346036", + "ident": "US-4678", + "type": "small_airport", + "name": "Sagebrush Flat / Peter's Point Airport", + "latitude_deg": "39.73503", + "longitude_deg": "-110.11694", + "elevation_ft": "7262", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Sunnyside", + "scheduled_service": "no" + }, + { + "id": "346037", + "ident": "US-4679", + "type": "small_airport", + "name": "Daddy Spring Airport", + "latitude_deg": "39.69595", + "longitude_deg": "-110.25004", + "elevation_ft": "8328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Sunnyside", + "scheduled_service": "no" + }, + { + "id": "346038", + "ident": "US-4680", + "type": "small_airport", + "name": "Rock Creek Airport", + "latitude_deg": "39.53881", + "longitude_deg": "-110.0331", + "elevation_ft": "4465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Sunnyside", + "scheduled_service": "no" + }, + { + "id": "346039", + "ident": "US-4681", + "type": "small_airport", + "name": "Flat Rock Airport", + "latitude_deg": "39.5668", + "longitude_deg": "-109.7147", + "elevation_ft": "7512", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Randlett", + "scheduled_service": "no", + "keywords": "Flat Rock Oilfield" + }, + { + "id": "346040", + "ident": "US-4682", + "type": "small_airport", + "name": "Flat Rock Mesa Airport", + "latitude_deg": "39.5546", + "longitude_deg": "-109.6958", + "elevation_ft": "7484", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Randlett", + "scheduled_service": "no" + }, + { + "id": "346041", + "ident": "US-4683", + "type": "small_airport", + "name": "Willow Flats Airport", + "latitude_deg": "39.4325", + "longitude_deg": "-109.4441", + "elevation_ft": "7605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Thompson Springs", + "scheduled_service": "no" + }, + { + "id": "346042", + "ident": "US-4684", + "type": "small_airport", + "name": "Horsecorn Canyon Airport", + "latitude_deg": "39.42193", + "longitude_deg": "-109.84008", + "elevation_ft": "8543", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Sunnyside", + "scheduled_service": "no" + }, + { + "id": "346043", + "ident": "US-4685", + "type": "closed", + "name": "Range Creek Ranch Airport", + "latitude_deg": "39.36027", + "longitude_deg": "-110.12929", + "elevation_ft": "5062", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Sunnyside", + "scheduled_service": "no" + }, + { + "id": "346044", + "ident": "US-4686", + "type": "small_airport", + "name": "White Wash Sand Dunes Airport", + "latitude_deg": "38.81555", + "longitude_deg": "-110.03941", + "elevation_ft": "4537", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Green River", + "scheduled_service": "no" + }, + { + "id": "346045", + "ident": "US-4687", + "type": "small_airport", + "name": "Gruvers Mesa Airport", + "latitude_deg": "38.71597", + "longitude_deg": "-110.2012", + "elevation_ft": "4833", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "346046", + "ident": "US-4688", + "type": "small_airport", + "name": "Red Reef Airport", + "latitude_deg": "38.6402", + "longitude_deg": "-110.25836", + "elevation_ft": "5020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "346049", + "ident": "US-4689", + "type": "closed", + "name": "Nomans Land Navy Airfield", + "latitude_deg": "41.25359", + "longitude_deg": "-70.82362", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Chilmark", + "scheduled_service": "no" + }, + { + "id": "346050", + "ident": "US-4690", + "type": "heliport", + "name": "Temple Bar Helicopter Refueling Station", + "latitude_deg": "35.89605", + "longitude_deg": "-114.20669", + "elevation_ft": "2753", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Temple Bar Marina", + "scheduled_service": "no" + }, + { + "id": "346053", + "ident": "US-4691", + "type": "small_airport", + "name": "Central Airport", + "latitude_deg": "37.42194", + "longitude_deg": "-113.6067", + "elevation_ft": "5436", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Central", + "scheduled_service": "no" + }, + { + "id": "346054", + "ident": "US-4692", + "type": "closed", + "name": "Searls Field", + "latitude_deg": "40.06089", + "longitude_deg": "-91.03455", + "elevation_ft": "736", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Camp Point", + "scheduled_service": "no", + "keywords": "Searls RLA 59" + }, + { + "id": "346073", + "ident": "US-4693", + "type": "small_airport", + "name": "Wild Creek Airport", + "latitude_deg": "37.82798", + "longitude_deg": "-118.13084", + "elevation_ft": "5315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Dyer", + "scheduled_service": "no" + }, + { + "id": "346074", + "ident": "US-4694", + "type": "small_airport", + "name": "Panamint Dry Lake Landing Strip", + "latitude_deg": "36.32607", + "longitude_deg": "-117.40749", + "elevation_ft": "1580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Darwin", + "scheduled_service": "no" + }, + { + "id": "346075", + "ident": "US-4695", + "type": "closed", + "name": "Searles Dry Lake Landing Field", + "latitude_deg": "35.66469", + "longitude_deg": "-117.37088", + "elevation_ft": "1633", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Trona", + "scheduled_service": "no" + }, + { + "id": "346076", + "ident": "US-4696", + "type": "closed", + "name": "Pilot Knob Valley Targeting Airfield", + "latitude_deg": "35.57979", + "longitude_deg": "-117.04268", + "elevation_ft": "2105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Trona", + "scheduled_service": "no" + }, + { + "id": "346078", + "ident": "US-4697", + "type": "closed", + "name": "Holsclaw STOL Strip", + "latitude_deg": "38.82812", + "longitude_deg": "-121.17473", + "elevation_ft": "404", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Loomis", + "scheduled_service": "no" + }, + { + "id": "346079", + "ident": "US-4698", + "type": "small_airport", + "name": "Hoff Private Airport", + "latitude_deg": "35.62417", + "longitude_deg": "-118.26155", + "elevation_ft": "2956", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Weldon", + "scheduled_service": "no" + }, + { + "id": "346080", + "ident": "US-4699", + "type": "closed", + "name": "Rancho Escondido Airport", + "latitude_deg": "35.53617", + "longitude_deg": "-118.20589", + "elevation_ft": "3704", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Weldon", + "scheduled_service": "no" + }, + { + "id": "346081", + "ident": "US-4700", + "type": "small_airport", + "name": "Edberg Airport", + "latitude_deg": "44.41701", + "longitude_deg": "-92.92713", + "elevation_ft": "912", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Cannon Falls", + "scheduled_service": "no" + }, + { + "id": "346088", + "ident": "US-4701", + "type": "closed", + "name": "Navajo Number Five Airport", + "latitude_deg": "34.88976", + "longitude_deg": "-109.42782", + "elevation_ft": "6453", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Saint Johns", + "scheduled_service": "no" + }, + { + "id": "346089", + "ident": "US-4702", + "type": "closed", + "name": "Flying M Airport", + "latitude_deg": "38.30039", + "longitude_deg": "-113.01701", + "elevation_ft": "5047", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Milford", + "scheduled_service": "no" + }, + { + "id": "346090", + "ident": "US-4703", + "type": "closed", + "name": "Pioneer Mine Airport", + "latitude_deg": "38.46653", + "longitude_deg": "-120.85166", + "elevation_ft": "1073", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Plymouth", + "scheduled_service": "no" + }, + { + "id": "346091", + "ident": "US-4704", + "type": "small_airport", + "name": "Rabbit Lake South Airport", + "latitude_deg": "34.44844", + "longitude_deg": "-117.00493", + "elevation_ft": "2946", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lucerne Valley", + "scheduled_service": "no" + }, + { + "id": "346092", + "ident": "US-4705", + "type": "small_airport", + "name": "Rabbit Lake Auxiliary Landing Field", + "latitude_deg": "34.45646", + "longitude_deg": "-117.01663", + "elevation_ft": "2940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lucerne Valley", + "scheduled_service": "no" + }, + { + "id": "346093", + "ident": "US-4706", + "type": "closed", + "name": "Bruce Family Airport", + "latitude_deg": "30.31893", + "longitude_deg": "-94.08337", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Evadale", + "scheduled_service": "no" + }, + { + "id": "346094", + "ident": "US-4707", + "type": "closed", + "name": "Wilderness Point Airport", + "latitude_deg": "33.81682", + "longitude_deg": "-97.61578", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Nocona", + "scheduled_service": "no" + }, + { + "id": "346095", + "ident": "US-4708", + "type": "closed", + "name": "Dickerson Airport", + "latitude_deg": "35.00887", + "longitude_deg": "-97.96238", + "elevation_ft": "1206", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Chickasha", + "scheduled_service": "no" + }, + { + "id": "346096", + "ident": "US-4709", + "type": "closed", + "name": "Schenk Airport", + "latitude_deg": "35.06988", + "longitude_deg": "-97.96979", + "elevation_ft": "1099", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Chickasha", + "scheduled_service": "no" + }, + { + "id": "346097", + "ident": "US-4710", + "type": "small_airport", + "name": "Cascabel Central Landing Field", + "latitude_deg": "32.23618", + "longitude_deg": "-110.32889", + "elevation_ft": "3222", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Benson", + "scheduled_service": "no" + }, + { + "id": "346141", + "ident": "US-4711", + "type": "small_airport", + "name": "Promontory Point Intermediate Field", + "latitude_deg": "41.21148", + "longitude_deg": "-112.43485", + "elevation_ft": "4268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Corinne", + "scheduled_service": "no" + }, + { + "id": "346142", + "ident": "US-4712", + "type": "closed", + "name": "Bar B Ranch Airport", + "latitude_deg": "34.85378", + "longitude_deg": "-103.76616", + "elevation_ft": "4503", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Tucumcari", + "scheduled_service": "no" + }, + { + "id": "346143", + "ident": "US-4713", + "type": "closed", + "name": "Frink / Niland Marina Airport", + "latitude_deg": "33.35737", + "longitude_deg": "-115.64535", + "elevation_ft": "-170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Niland", + "scheduled_service": "no" + }, + { + "id": "346144", + "ident": "US-4714", + "type": "closed", + "name": "Cristian Airport", + "latitude_deg": "32.55121", + "longitude_deg": "-107.40769", + "elevation_ft": "4539", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Deming", + "scheduled_service": "no" + }, + { + "id": "346145", + "ident": "US-4715", + "type": "small_airport", + "name": "Midland Airport", + "latitude_deg": "33.85218", + "longitude_deg": "-114.7979", + "elevation_ft": "966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Blythe", + "scheduled_service": "no" + }, + { + "id": "346146", + "ident": "US-4716", + "type": "small_airport", + "name": "Midland Airport", + "latitude_deg": "33.85218", + "longitude_deg": "-114.7979", + "elevation_ft": "966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Blythe", + "scheduled_service": "no" + }, + { + "id": "346147", + "ident": "US-4717", + "type": "small_airport", + "name": "Standard Mine / Arlington Mine Airport", + "latitude_deg": "33.82033", + "longitude_deg": "-114.86336", + "elevation_ft": "958", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Blythe", + "scheduled_service": "no" + }, + { + "id": "346148", + "ident": "US-4718", + "type": "closed", + "name": "Nevada City Airport", + "latitude_deg": "39.27616", + "longitude_deg": "-121.02902", + "elevation_ft": "3057", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Nevada City", + "scheduled_service": "no" + }, + { + "id": "346149", + "ident": "US-4719", + "type": "closed", + "name": "Hinds Ranch Airport", + "latitude_deg": "29.76893", + "longitude_deg": "-101.05636", + "elevation_ft": "1890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comstock", + "scheduled_service": "no" + }, + { + "id": "346150", + "ident": "US-4720", + "type": "closed", + "name": "Continental Ranch Airport", + "latitude_deg": "29.84875", + "longitude_deg": "-101.29059", + "elevation_ft": "1572", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comstock", + "scheduled_service": "no" + }, + { + "id": "346151", + "ident": "US-4721", + "type": "closed", + "name": "Marine Corps Outlying Landing Field Seagle", + "latitude_deg": "34.27241", + "longitude_deg": "-116.19287", + "elevation_ft": "2329", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Joshua Tree", + "scheduled_service": "no" + }, + { + "id": "346152", + "ident": "US-4722", + "type": "heliport", + "name": "Robert E Bush Naval Hospital Heliport", + "latitude_deg": "34.22514", + "longitude_deg": "-116.04771", + "elevation_ft": "1850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Twentynine Palms", + "scheduled_service": "no" + }, + { + "id": "346153", + "ident": "US-4723", + "type": "heliport", + "name": "KD Rifle Range Heliport", + "latitude_deg": "34.25878", + "longitude_deg": "-116.05158", + "elevation_ft": "2129", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Twentynine Palms", + "scheduled_service": "no" + }, + { + "id": "346154", + "ident": "US-4724", + "type": "closed", + "name": "Bullion Wash Targeting Airstrip", + "latitude_deg": "34.4644", + "longitude_deg": "-116.22382", + "elevation_ft": "2897", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Twentynine Palms", + "scheduled_service": "no" + }, + { + "id": "346155", + "ident": "US-4725", + "type": "small_airport", + "name": "Lindsey Ranch Airport", + "latitude_deg": "31.64137", + "longitude_deg": "-110.13989", + "elevation_ft": "4173", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tombstone", + "scheduled_service": "no" + }, + { + "id": "346156", + "ident": "US-4726", + "type": "small_airport", + "name": "Pecos Valley Wildlife Management Club Airport", + "latitude_deg": "29.92127", + "longitude_deg": "-101.28098", + "elevation_ft": "1765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comstock", + "scheduled_service": "no" + }, + { + "id": "346157", + "ident": "US-4727", + "type": "closed", + "name": "Lazy Two Ranch Airport", + "latitude_deg": "29.94499", + "longitude_deg": "-101.24024", + "elevation_ft": "1841", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comstock", + "scheduled_service": "no" + }, + { + "id": "346159", + "ident": "US-4728", + "type": "closed", + "name": "Pyote Air Force Base", + "latitude_deg": "31.51099", + "longitude_deg": "-103.14181", + "elevation_ft": "2613", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pyote", + "scheduled_service": "no" + }, + { + "id": "346160", + "ident": "US-4729", + "type": "closed", + "name": "East Buchanan Well Airport", + "latitude_deg": "31.86058", + "longitude_deg": "-102.56413", + "elevation_ft": "3076", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Odessa", + "scheduled_service": "no" + }, + { + "id": "346161", + "ident": "US-4730", + "type": "closed", + "name": "Sid Richardson Airport", + "latitude_deg": "31.76707", + "longitude_deg": "-102.51081", + "elevation_ft": "3081", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Odessa", + "scheduled_service": "no" + }, + { + "id": "346162", + "ident": "US-4731", + "type": "heliport", + "name": "Texas Health Harris Methodist Hospital Azle Heliport", + "latitude_deg": "32.87996", + "longitude_deg": "-97.53212", + "elevation_ft": "666", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Azle", + "scheduled_service": "no" + }, + { + "id": "346163", + "ident": "US-4732", + "type": "small_airport", + "name": "Ninemile Ranch Airport", + "latitude_deg": "30.16663", + "longitude_deg": "-102.58104", + "elevation_ft": "3353", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no" + }, + { + "id": "346164", + "ident": "US-4733", + "type": "small_airport", + "name": "Dudley Ranch Airport", + "latitude_deg": "30.25761", + "longitude_deg": "-102.26236", + "elevation_ft": "2585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanderson", + "scheduled_service": "no" + }, + { + "id": "346165", + "ident": "US-4734", + "type": "small_airport", + "name": "Meyers Ranch Airport", + "latitude_deg": "30.07903", + "longitude_deg": "-101.95424", + "elevation_ft": "1995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dryden", + "scheduled_service": "no" + }, + { + "id": "346166", + "ident": "US-4735", + "type": "small_airport", + "name": "Manny Ranch Airport", + "latitude_deg": "30.65685", + "longitude_deg": "-102.39403", + "elevation_ft": "3015", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no" + }, + { + "id": "346167", + "ident": "US-4736", + "type": "closed", + "name": "Belding Airport", + "latitude_deg": "30.75027", + "longitude_deg": "-103.02753", + "elevation_ft": "3322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no" + }, + { + "id": "346168", + "ident": "US-4737", + "type": "closed", + "name": "Longfellow Ranch Airport", + "latitude_deg": "30.53378", + "longitude_deg": "-102.83581", + "elevation_ft": "3907", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no" + }, + { + "id": "346169", + "ident": "US-4738", + "type": "closed", + "name": "Elsinore Ranch Airport", + "latitude_deg": "30.61603", + "longitude_deg": "-102.95577", + "elevation_ft": "3684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no" + }, + { + "id": "346170", + "ident": "US-4739", + "type": "closed", + "name": "Chostner Airport", + "latitude_deg": "34.5915", + "longitude_deg": "-117.71178", + "elevation_ft": "2900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palmdale", + "scheduled_service": "no" + }, + { + "id": "346171", + "ident": "US-4740", + "type": "closed", + "name": "Causey Airport", + "latitude_deg": "33.87567", + "longitude_deg": "-103.12159", + "elevation_ft": "4066", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Causey", + "scheduled_service": "no" + }, + { + "id": "346172", + "ident": "US-4741", + "type": "small_airport", + "name": "Wildlife Ranch Airport", + "latitude_deg": "34.31315", + "longitude_deg": "-97.9964", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Comanche", + "scheduled_service": "no", + "local_code": "25OK", + "keywords": "Shelby Airport" + }, + { + "id": "346173", + "ident": "US-4742", + "type": "small_airport", + "name": "Morrison Airport", + "latitude_deg": "34.06773", + "longitude_deg": "-99.25579", + "elevation_ft": "1288", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Vernon", + "scheduled_service": "no" + }, + { + "id": "346174", + "ident": "US-4743", + "type": "small_airport", + "name": "Wolf Airport", + "latitude_deg": "34.0695", + "longitude_deg": "-99.26098", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Vernon", + "scheduled_service": "no" + }, + { + "id": "346175", + "ident": "US-4744", + "type": "heliport", + "name": "Air Evac 110 Heliport", + "latitude_deg": "35.221052", + "longitude_deg": "-87.339794", + "elevation_ft": "922", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lawrenceburg", + "scheduled_service": "no" + }, + { + "id": "346176", + "ident": "US-4745", + "type": "heliport", + "name": "Air Evac 101 Heliport", + "latitude_deg": "39.7655", + "longitude_deg": "-82.54576", + "elevation_ft": "1022", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lancaster", + "scheduled_service": "no" + }, + { + "id": "346177", + "ident": "US-4746", + "type": "heliport", + "name": "Air Evac 102 Heliport", + "latitude_deg": "32.495845", + "longitude_deg": "-82.926294", + "elevation_ft": "256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Dublin", + "scheduled_service": "no" + }, + { + "id": "346178", + "ident": "US-4747", + "type": "heliport", + "name": "Air Evac 103 Heliport", + "latitude_deg": "38.31867", + "longitude_deg": "-80.80644", + "elevation_ft": "1966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Summersville", + "scheduled_service": "no" + }, + { + "id": "346179", + "ident": "US-4748", + "type": "heliport", + "name": "Air Evac 74 Heliport", + "latitude_deg": "32.45011", + "longitude_deg": "-96.83818", + "elevation_ft": "617", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waxahachie", + "scheduled_service": "no" + }, + { + "id": "346180", + "ident": "US-4749", + "type": "heliport", + "name": "Air Evac 107 Heliport", + "latitude_deg": "40.1656", + "longitude_deg": "-82.42038", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Saint Louisville", + "scheduled_service": "no" + }, + { + "id": "346181", + "ident": "US-4750", + "type": "heliport", + "name": "Air Evac 108 Heliport", + "latitude_deg": "36.760464", + "longitude_deg": "-88.650665", + "elevation_ft": "476", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Mayfield", + "scheduled_service": "no" + }, + { + "id": "346182", + "ident": "US-4751", + "type": "heliport", + "name": "Jackson Purchase Medical Center Heliport", + "latitude_deg": "36.758969", + "longitude_deg": "-88.65033", + "elevation_ft": "476", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Mayfield", + "scheduled_service": "no" + }, + { + "id": "346183", + "ident": "US-4752", + "type": "heliport", + "name": "Air Evac 112 Heliport", + "latitude_deg": "33.61792", + "longitude_deg": "-85.09802", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Carrollton", + "scheduled_service": "no" + }, + { + "id": "346197", + "ident": "US-4753", + "type": "small_airport", + "name": "R & R Aero Airport", + "latitude_deg": "42.721133", + "longitude_deg": "-78.186114", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Warsaw", + "scheduled_service": "no", + "local_code": "5R5" + }, + { + "id": "346232", + "ident": "US-4754", + "type": "closed", + "name": "Dewald Airport", + "latitude_deg": "47.076581", + "longitude_deg": "-118.504173", + "elevation_ft": "1896", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ritzville", + "scheduled_service": "no" + }, + { + "id": "346241", + "ident": "US-4755", + "type": "small_airport", + "name": "Painter Field", + "latitude_deg": "37.566998", + "longitude_deg": "-75.794528", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Painter", + "scheduled_service": "no", + "gps_code": "VA20", + "local_code": "VA20" + }, + { + "id": "346243", + "ident": "US-4756", + "type": "heliport", + "name": "Egypt Farms Heliport", + "latitude_deg": "39.045344", + "longitude_deg": "-77.708096", + "elevation_ft": "459", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Purcellville", + "scheduled_service": "no", + "gps_code": "4VA0", + "local_code": "4VA0" + }, + { + "id": "346244", + "ident": "US-4757", + "type": "small_airport", + "name": "Garden Valley Airport", + "latitude_deg": "32.53014", + "longitude_deg": "-95.55959", + "elevation_ft": "576", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lindale", + "scheduled_service": "no" + }, + { + "id": "346245", + "ident": "US-4758", + "type": "small_airport", + "name": "Valley Plant Airport", + "latitude_deg": "33.54721", + "longitude_deg": "-96.37333", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Whitewright", + "scheduled_service": "no" + }, + { + "id": "346246", + "ident": "US-4759", + "type": "small_airport", + "name": "Fort Sill West Airport", + "latitude_deg": "34.6567", + "longitude_deg": "-98.70133", + "elevation_ft": "1415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Indiahoma", + "scheduled_service": "no" + }, + { + "id": "346263", + "ident": "US-4760", + "type": "heliport", + "name": "Elysian Park Helipad", + "latitude_deg": "34.08281", + "longitude_deg": "-118.23692", + "elevation_ft": "736", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "346264", + "ident": "US-4761", + "type": "heliport", + "name": "West Valley Area Heliport", + "latitude_deg": "34.19282", + "longitude_deg": "-118.54707", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Reseda", + "scheduled_service": "no" + }, + { + "id": "346284", + "ident": "US-4762", + "type": "closed", + "name": "Groveton Airfield", + "latitude_deg": "44.615", + "longitude_deg": "-71.485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Groveton", + "scheduled_service": "no" + }, + { + "id": "346285", + "ident": "US-4763", + "type": "closed", + "name": "Daniel Webster Airport / Sanders Airfield", + "latitude_deg": "42.809601", + "longitude_deg": "-71.487994", + "elevation_ft": "203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Merrimack", + "scheduled_service": "no", + "keywords": "David Webster" + }, + { + "id": "346286", + "ident": "US-4764", + "type": "small_airport", + "name": "Rock & A Hard Place Ranch Airport", + "latitude_deg": "41.284785", + "longitude_deg": "-105.510786", + "elevation_ft": "7566", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Laramie", + "scheduled_service": "no", + "gps_code": "WY61", + "local_code": "WY61" + }, + { + "id": "346288", + "ident": "US-4765", + "type": "small_airport", + "name": "Las Arenas Earth and Sky Observatory Airport", + "latitude_deg": "37.478667", + "longitude_deg": "-105.632453", + "elevation_ft": "7582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Alamosa", + "scheduled_service": "no", + "gps_code": "2CO2", + "local_code": "2CO2" + }, + { + "id": "346294", + "ident": "US-4766", + "type": "small_airport", + "name": "Ritel Copter Airstrip", + "latitude_deg": "42.313802", + "longitude_deg": "-92.411751", + "elevation_ft": "982", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Hudson", + "scheduled_service": "no", + "gps_code": "IA42", + "local_code": "IA42" + }, + { + "id": "346311", + "ident": "US-4767", + "type": "small_airport", + "name": "Kelley Airport", + "latitude_deg": "41.35582", + "longitude_deg": "-95.848236", + "elevation_ft": "1196", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Crescent", + "scheduled_service": "no", + "gps_code": "IA32", + "local_code": "IA32" + }, + { + "id": "346376", + "ident": "US-4768", + "type": "small_airport", + "name": "Dornak Braden Airport", + "latitude_deg": "29.70872", + "longitude_deg": "-96.36847", + "elevation_ft": "223", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alleyton", + "scheduled_service": "no", + "gps_code": "0TX8", + "local_code": "0TX8" + }, + { + "id": "346387", + "ident": "US-4769", + "type": "small_airport", + "name": "Skydive California Airport", + "latitude_deg": "37.731326", + "longitude_deg": "-121.335589", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tracy", + "scheduled_service": "no", + "gps_code": "CA74", + "local_code": "CA74" + }, + { + "id": "346389", + "ident": "US-4770", + "type": "heliport", + "name": "Gateway Helipad Heliport", + "latitude_deg": "38.676414", + "longitude_deg": "-108.978614", + "elevation_ft": "4575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Gateway", + "scheduled_service": "no", + "gps_code": "7CO1", + "local_code": "7CO1" + }, + { + "id": "346392", + "ident": "US-4771", + "type": "heliport", + "name": "Kremmling Memorial Hospital Heliport", + "latitude_deg": "40.076269", + "longitude_deg": "-105.925273", + "elevation_ft": "7918", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Granby", + "scheduled_service": "no", + "gps_code": "51CO", + "local_code": "51CO" + }, + { + "id": "346397", + "ident": "US-4772", + "type": "closed", + "name": "Cook Airport", + "latitude_deg": "31.43271", + "longitude_deg": "-93.45226", + "elevation_ft": "283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Florien", + "scheduled_service": "no" + }, + { + "id": "346398", + "ident": "US-4773", + "type": "heliport", + "name": "Christus Southeast Texas Jasper Memorial Hospital Heliport", + "latitude_deg": "30.90757", + "longitude_deg": "-94.00887", + "elevation_ft": "245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jasper", + "scheduled_service": "no" + }, + { + "id": "346399", + "ident": "US-4774", + "type": "small_airport", + "name": "Area 142 Airport", + "latitude_deg": "32.62864", + "longitude_deg": "-99.14053", + "elevation_ft": "1307", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Moran", + "scheduled_service": "no", + "gps_code": "1TA1", + "local_code": "1TA1" + }, + { + "id": "346400", + "ident": "US-4775", + "type": "heliport", + "name": "Sabine County Hospital Heliport", + "latitude_deg": "31.33436", + "longitude_deg": "-93.86316", + "elevation_ft": "291", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hemphill", + "scheduled_service": "no" + }, + { + "id": "346401", + "ident": "US-4776", + "type": "closed", + "name": "Spurger Airport", + "latitude_deg": "30.65118", + "longitude_deg": "-94.17091", + "elevation_ft": "143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Spurger", + "scheduled_service": "no" + }, + { + "id": "346402", + "ident": "US-4777", + "type": "closed", + "name": "Shiro Airport", + "latitude_deg": "30.6467", + "longitude_deg": "-95.854", + "elevation_ft": "372", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bedias", + "scheduled_service": "no" + }, + { + "id": "346403", + "ident": "US-4778", + "type": "heliport", + "name": "Spalding Regional Medical Center Heliport", + "latitude_deg": "33.239872", + "longitude_deg": "-84.266483", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Griffin", + "scheduled_service": "no", + "gps_code": "45GA", + "local_code": "45GA" + }, + { + "id": "346406", + "ident": "US-4779", + "type": "heliport", + "name": "OSF St Paul Medical Center Heliport", + "latitude_deg": "41.55251", + "longitude_deg": "-89.08645", + "elevation_ft": "773", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mendota", + "scheduled_service": "no", + "gps_code": "14IL", + "local_code": "14IL" + }, + { + "id": "346409", + "ident": "US-4780", + "type": "heliport", + "name": "Chicago Helicopter Experience Heliport", + "latitude_deg": "41.848206", + "longitude_deg": "-87.648395", + "elevation_ft": "582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Chicago", + "scheduled_service": "no", + "gps_code": "IL09", + "local_code": "IL09" + }, + { + "id": "346412", + "ident": "US-4781", + "type": "heliport", + "name": "Sioux Center Health Heliport", + "latitude_deg": "43.06877", + "longitude_deg": "-96.159275", + "elevation_ft": "1397", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Sioux Center", + "scheduled_service": "no", + "gps_code": "IA06", + "local_code": "IA06" + }, + { + "id": "346417", + "ident": "US-4782", + "type": "small_airport", + "name": "Miller Restricted Landing Area", + "latitude_deg": "40.066483", + "longitude_deg": "-89.272144", + "elevation_ft": "626", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "2LL3", + "local_code": "2LL3" + }, + { + "id": "346420", + "ident": "US-4783", + "type": "heliport", + "name": "Griffin Heliport", + "latitude_deg": "30.768832", + "longitude_deg": "-85.081698", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Marianna", + "scheduled_service": "no", + "gps_code": "69FL", + "local_code": "69FL" + }, + { + "id": "346424", + "ident": "US-4784", + "type": "small_airport", + "name": "Hallmark Airport", + "latitude_deg": "40.955506", + "longitude_deg": "-86.905932", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Francesville", + "scheduled_service": "no", + "gps_code": "IN32", + "local_code": "IN32" + }, + { + "id": "346426", + "ident": "US-4785", + "type": "heliport", + "name": "Our Lady of the Lake Livingston Heliport", + "latitude_deg": "30.465919", + "longitude_deg": "-90.867483", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Walker", + "scheduled_service": "no", + "gps_code": "LA42", + "local_code": "LA42" + }, + { + "id": "346427", + "ident": "US-4786", + "type": "small_airport", + "name": "Grame Airport", + "latitude_deg": "38.119762", + "longitude_deg": "-86.764998", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Troy", + "scheduled_service": "no", + "gps_code": "21IN", + "local_code": "21IN" + }, + { + "id": "346440", + "ident": "US-4787", + "type": "heliport", + "name": "Memorial Hermann Cypress Hospital Heliport", + "latitude_deg": "29.98753", + "longitude_deg": "-95.73203", + "elevation_ft": "156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cypress", + "scheduled_service": "no" + }, + { + "id": "346441", + "ident": "US-4788", + "type": "heliport", + "name": "Memorial Hermann Pearland Hospital Heliport", + "latitude_deg": "29.56465", + "longitude_deg": "-95.38804", + "elevation_ft": "56", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pearland", + "scheduled_service": "no" + }, + { + "id": "346442", + "ident": "US-4789", + "type": "heliport", + "name": "OakBend Medical Center - Williams Way Hospital Heliport", + "latitude_deg": "29.55539", + "longitude_deg": "-95.71516", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Richmond", + "scheduled_service": "no" + }, + { + "id": "346445", + "ident": "US-4790", + "type": "heliport", + "name": "CHI Saint Lukes Health Patients Medical Center Heliport", + "latitude_deg": "29.64204", + "longitude_deg": "-95.16241", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pasadena", + "scheduled_service": "no" + }, + { + "id": "346446", + "ident": "US-4791", + "type": "closed", + "name": "Diamond Heliport", + "latitude_deg": "29.68298", + "longitude_deg": "-95.14428", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pasadena", + "scheduled_service": "no" + }, + { + "id": "346447", + "ident": "US-4792", + "type": "heliport", + "name": "Bayshore Medical Center Heliport", + "latitude_deg": "29.66324", + "longitude_deg": "-95.18192", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pasadena", + "scheduled_service": "no" + }, + { + "id": "346448", + "ident": "US-4793", + "type": "closed", + "name": "Pasadena Post Office Heliport", + "latitude_deg": "29.69381", + "longitude_deg": "-95.20011", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pasadena", + "scheduled_service": "no" + }, + { + "id": "346449", + "ident": "US-4794", + "type": "heliport", + "name": "St Joseph Health/College Station Heliport", + "latitude_deg": "30.58157", + "longitude_deg": "-96.28874", + "elevation_ft": "306", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "College Station", + "scheduled_service": "no", + "gps_code": "XS92", + "local_code": "XS92" + }, + { + "id": "346450", + "ident": "US-4795", + "type": "small_airport", + "name": "Snowden Field", + "latitude_deg": "30.728833", + "longitude_deg": "-99.340181", + "elevation_ft": "1731", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mason", + "scheduled_service": "no", + "gps_code": "6TX1", + "local_code": "6TX1" + }, + { + "id": "346451", + "ident": "US-4796", + "type": "closed", + "name": "Jacintoport Heliport", + "latitude_deg": "29.76911", + "longitude_deg": "-95.1247", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Channelview", + "scheduled_service": "no" + }, + { + "id": "346452", + "ident": "US-4797", + "type": "closed", + "name": "Life Flight Heliport", + "latitude_deg": "29.76125", + "longitude_deg": "-95.17349", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "346459", + "ident": "US-4798", + "type": "heliport", + "name": "Novant Health Presbyterian Medical Center Heliport", + "latitude_deg": "35.21205", + "longitude_deg": "-80.82359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Charlotte", + "scheduled_service": "no" + }, + { + "id": "346460", + "ident": "US-4799", + "type": "heliport", + "name": "Atrium Health University City Heliport", + "latitude_deg": "35.30562", + "longitude_deg": "-80.74846", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Charlotte", + "scheduled_service": "no" + }, + { + "id": "346461", + "ident": "US-4800", + "type": "heliport", + "name": "Bayne-Jones Army Community Hospital Heliport", + "latitude_deg": "31.0633", + "longitude_deg": "-93.2152", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Leesville", + "scheduled_service": "no" + }, + { + "id": "346462", + "ident": "US-4801", + "type": "small_airport", + "name": "Geronimo Forward Landing Strip", + "latitude_deg": "31.11228", + "longitude_deg": "-92.96459", + "elevation_ft": "355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Hicks", + "scheduled_service": "no" + }, + { + "id": "346463", + "ident": "US-4802", + "type": "heliport", + "name": "CHI Saint Luke's Health Memorial Livingston Heliport", + "latitude_deg": "30.7301", + "longitude_deg": "-94.94029", + "elevation_ft": "161", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Livingston", + "scheduled_service": "no" + }, + { + "id": "346464", + "ident": "US-4803", + "type": "heliport", + "name": "K&M Big Woods Heliport", + "latitude_deg": "30.26289", + "longitude_deg": "-93.51823", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Vinton", + "scheduled_service": "no" + }, + { + "id": "346465", + "ident": "US-4804", + "type": "heliport", + "name": "Starks Compressor Station Heliport", + "latitude_deg": "30.35734", + "longitude_deg": "-93.60299", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Starks", + "scheduled_service": "no" + }, + { + "id": "346466", + "ident": "US-4805", + "type": "heliport", + "name": "Mid Jefferson Extended Care Hospital Heliport", + "latitude_deg": "29.95692", + "longitude_deg": "-93.98631", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port Arthur", + "scheduled_service": "no" + }, + { + "id": "346467", + "ident": "US-4806", + "type": "closed", + "name": "Fowler Airport", + "latitude_deg": "30.59933", + "longitude_deg": "-98.62888", + "elevation_ft": "1789", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Llano", + "scheduled_service": "no" + }, + { + "id": "346468", + "ident": "US-4807", + "type": "closed", + "name": "Trails End Airstrip", + "latitude_deg": "34.09226", + "longitude_deg": "-112.07478", + "elevation_ft": "2260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Black Canyon City", + "scheduled_service": "no" + }, + { + "id": "346469", + "ident": "US-4808", + "type": "closed", + "name": "Cross Y Ranch Airport", + "latitude_deg": "34.108451", + "longitude_deg": "-112.097137", + "elevation_ft": "2326", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Black Canyon City", + "scheduled_service": "no", + "keywords": "AZ07" + }, + { + "id": "346470", + "ident": "US-4809", + "type": "closed", + "name": "Fenster School Airport", + "latitude_deg": "32.30653", + "longitude_deg": "-110.81769", + "elevation_ft": "2701", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "346471", + "ident": "US-4810", + "type": "closed", + "name": "Cregier Airport", + "latitude_deg": "32.1995", + "longitude_deg": "-110.7906", + "elevation_ft": "2790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "346472", + "ident": "US-4811", + "type": "closed", + "name": "La Paloma Heliport", + "latitude_deg": "32.31911", + "longitude_deg": "-110.91781", + "elevation_ft": "2715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tucson", + "scheduled_service": "no" + }, + { + "id": "346473", + "ident": "US-4812", + "type": "closed", + "name": "Brave Bull Ranch Resort Airport", + "latitude_deg": "32.49833", + "longitude_deg": "-110.88991", + "elevation_ft": "3038", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Catalina", + "scheduled_service": "no" + }, + { + "id": "346474", + "ident": "US-4813", + "type": "heliport", + "name": "Ten Thousand Helipad", + "latitude_deg": "34.06332", + "longitude_deg": "-118.41443", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "346475", + "ident": "US-4814", + "type": "heliport", + "name": "631 South Olive Helipad", + "latitude_deg": "34.04762", + "longitude_deg": "-118.2552", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "346476", + "ident": "US-4815", + "type": "heliport", + "name": "Los Angeles County Men's Detention Center Twin Towers East Heliport", + "latitude_deg": "34.05887", + "longitude_deg": "-118.22997", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "346477", + "ident": "US-4816", + "type": "heliport", + "name": "Los Angeles County Men's Detention Center Twin Towers West Heliport", + "latitude_deg": "34.05844", + "longitude_deg": "-118.23127", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "346478", + "ident": "US-4817", + "type": "heliport", + "name": "Los Angeles County Metropolitan Transit Authority Headquarters Heliport", + "latitude_deg": "34.05638", + "longitude_deg": "-118.23291", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "346479", + "ident": "US-4818", + "type": "closed", + "name": "Pacific Electric Building Heliport", + "latitude_deg": "34.04462", + "longitude_deg": "-118.24981", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "346499", + "ident": "US-4819", + "type": "closed", + "name": "Sumerset HIlls Airport", + "latitude_deg": "40.7", + "longitude_deg": "-74.533", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Basking Ridge", + "scheduled_service": "no" + }, + { + "id": "346504", + "ident": "US-4820", + "type": "small_airport", + "name": "Cub Landing Center", + "latitude_deg": "45.159784", + "longitude_deg": "-83.740003", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Posen", + "scheduled_service": "no", + "gps_code": "49MI", + "local_code": "49MI" + }, + { + "id": "346509", + "ident": "US-4821", + "type": "heliport", + "name": "Mercy Health - Mercy Campus Heliport", + "latitude_deg": "43.205958", + "longitude_deg": "-86.207453", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Muskegon", + "scheduled_service": "no", + "gps_code": "36MI", + "local_code": "36MI" + }, + { + "id": "346516", + "ident": "US-4822", + "type": "heliport", + "name": "Cornerstone Plaza Helipad", + "latitude_deg": "34.03466", + "longitude_deg": "-118.45551", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "346517", + "ident": "US-4823", + "type": "heliport", + "name": "Pacific Western Bank Helipad", + "latitude_deg": "34.03936", + "longitude_deg": "-118.43856", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Los Angeles", + "scheduled_service": "no" + }, + { + "id": "346519", + "ident": "US-4824", + "type": "closed", + "name": "Old Quartzsite Airport", + "latitude_deg": "33.65763", + "longitude_deg": "-114.22412", + "elevation_ft": "883", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Quartzsite", + "scheduled_service": "no" + }, + { + "id": "346523", + "ident": "US-4825", + "type": "closed", + "name": "Searchlight Ferry Airport", + "latitude_deg": "35.45909", + "longitude_deg": "-114.63057", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Golden Valley", + "scheduled_service": "no" + }, + { + "id": "346526", + "ident": "US-4826", + "type": "heliport", + "name": "Martha's Vineyard Hospital Heliport", + "latitude_deg": "41.459786", + "longitude_deg": "-70.578935", + "elevation_ft": "1", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Oak Bluffs", + "scheduled_service": "no", + "gps_code": "MA62", + "local_code": "MA62" + }, + { + "id": "346529", + "ident": "US-4827", + "type": "heliport", + "name": "Kettering Health Piqua Heliport", + "latitude_deg": "40.149905", + "longitude_deg": "-84.217088", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Piqua", + "scheduled_service": "no", + "gps_code": "13OH", + "local_code": "13OH" + }, + { + "id": "346531", + "ident": "US-4828", + "type": "small_airport", + "name": "Flintstone Airport", + "latitude_deg": "34.5362", + "longitude_deg": "-112.14576", + "elevation_ft": "4820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Dewey", + "scheduled_service": "no", + "keywords": "Hyslip Airport" + }, + { + "id": "346532", + "ident": "US-4829", + "type": "closed", + "name": "Rancho Roca Roja Airport", + "latitude_deg": "34.64373", + "longitude_deg": "-111.715", + "elevation_ft": "1904", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Lake Montezuma", + "scheduled_service": "no", + "keywords": "Ward Ranch" + }, + { + "id": "346533", + "ident": "US-4830", + "type": "closed", + "name": "Chandler Airport (1928)", + "latitude_deg": "33.28546", + "longitude_deg": "-111.8498", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Chandler", + "scheduled_service": "no" + }, + { + "id": "346534", + "ident": "US-4831", + "type": "closed", + "name": "Chandler Airport (1929)", + "latitude_deg": "33.273048", + "longitude_deg": "-111.828684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Chandler", + "scheduled_service": "no" + }, + { + "id": "346536", + "ident": "US-4832", + "type": "closed", + "name": "Donald Wilcut Heliport", + "latitude_deg": "31.73419", + "longitude_deg": "-106.34552", + "elevation_ft": "3678", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Paso", + "scheduled_service": "no", + "keywords": "83TS" + }, + { + "id": "346537", + "ident": "US-4833", + "type": "closed", + "name": "South Phoenix Airport", + "latitude_deg": "33.4134", + "longitude_deg": "-112.05089", + "elevation_ft": "1089", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "346538", + "ident": "US-4834", + "type": "closed", + "name": "Air-Topia Airport", + "latitude_deg": "33.39053", + "longitude_deg": "-112.14651", + "elevation_ft": "1043", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "346539", + "ident": "US-4835", + "type": "heliport", + "name": "Mountain Vista Medical Center Heliport", + "latitude_deg": "33.39207", + "longitude_deg": "-111.61253", + "elevation_ft": "1522", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no" + }, + { + "id": "346543", + "ident": "US-4836", + "type": "heliport", + "name": "Citrus County Mosquito Control Home Base Heliport", + "latitude_deg": "28.87683", + "longitude_deg": "-82.49104", + "elevation_ft": "86", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lecanto", + "scheduled_service": "no", + "gps_code": "07FL", + "local_code": "07FL" + }, + { + "id": "346544", + "ident": "US-4837", + "type": "closed", + "name": "ATA Memorial White Waltham Airport", + "latitude_deg": "41.16526", + "longitude_deg": "-76.57576", + "elevation_ft": "1308", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Millville", + "scheduled_service": "no", + "keywords": "6PA2" + }, + { + "id": "346545", + "ident": "US-4838", + "type": "closed", + "name": "AX Ranch Airstrip", + "latitude_deg": "46.97386", + "longitude_deg": "-102.2946", + "elevation_ft": "2080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Richardton", + "scheduled_service": "no", + "keywords": "0NA6" + }, + { + "id": "346546", + "ident": "US-4839", + "type": "closed", + "name": "A-Copy Heliport", + "latitude_deg": "42.20121", + "longitude_deg": "-71.15532", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Westwood", + "scheduled_service": "no", + "keywords": "0MA3" + }, + { + "id": "346552", + "ident": "US-4840", + "type": "heliport", + "name": "The Medical Center at Caverna Heliport", + "latitude_deg": "37.161535", + "longitude_deg": "-85.923225", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Horse Cave", + "scheduled_service": "no", + "gps_code": "0KY6", + "local_code": "0KY6" + }, + { + "id": "346558", + "ident": "US-4841", + "type": "small_airport", + "name": "Winnett Airport", + "latitude_deg": "46.978723", + "longitude_deg": "-108.365831", + "elevation_ft": "2989", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Winnett", + "scheduled_service": "no", + "local_code": "7S2" + }, + { + "id": "346561", + "ident": "US-4842", + "type": "seaplane_base", + "name": "Skyyharbour Seaplane Base", + "latitude_deg": "42.174469", + "longitude_deg": "-85.551035", + "elevation_ft": "853", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Kalamazoo", + "scheduled_service": "no", + "local_code": "11C" + }, + { + "id": "346564", + "ident": "US-4843", + "type": "heliport", + "name": "St John Pavilion Heliport", + "latitude_deg": "39.281936", + "longitude_deg": "-94.902965", + "elevation_ft": "859", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Leavenworth", + "scheduled_service": "no", + "gps_code": "1KS5", + "local_code": "1KS5" + }, + { + "id": "346572", + "ident": "US-4844", + "type": "seaplane_base", + "name": "Hammock Seaplane Landing Area", + "latitude_deg": "30.533178", + "longitude_deg": "-81.482233", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "gps_code": "7FL3", + "local_code": "7FL3" + }, + { + "id": "346580", + "ident": "US-4845", + "type": "closed", + "name": "Riverview Airport", + "latitude_deg": "44.94154", + "longitude_deg": "-90.25794", + "elevation_ft": "1358", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Abbotsford", + "scheduled_service": "no", + "keywords": "WI49" + }, + { + "id": "346581", + "ident": "US-4846", + "type": "heliport", + "name": "Schiller Heliport", + "latitude_deg": "42.525049", + "longitude_deg": "-83.863803", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Howell", + "scheduled_service": "no", + "gps_code": "8MI5", + "local_code": "8MI5" + }, + { + "id": "346585", + "ident": "US-4847", + "type": "heliport", + "name": "Beebe Heliport", + "latitude_deg": "38.530782", + "longitude_deg": "-75.141045", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-DE", + "municipality": "Frankford", + "scheduled_service": "no", + "gps_code": "DE22", + "local_code": "DE22" + }, + { + "id": "346586", + "ident": "US-4848", + "type": "small_airport", + "name": "Walnut Glen Farm Airport", + "latitude_deg": "38.023889", + "longitude_deg": "-91.902083", + "elevation_ft": "707", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Rolla", + "scheduled_service": "no", + "gps_code": "MU99", + "local_code": "MU99" + }, + { + "id": "346587", + "ident": "US-4849", + "type": "small_airport", + "name": "One Particular Harbour Ultralight Flightpark", + "latitude_deg": "32.216422", + "longitude_deg": "-107.499528", + "elevation_ft": "4127", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Deming", + "scheduled_service": "no", + "gps_code": "NM18", + "local_code": "NM18" + }, + { + "id": "346588", + "ident": "US-4850", + "type": "closed", + "name": "Abide Airpark", + "latitude_deg": "33.44677", + "longitude_deg": "-91.03272", + "elevation_ft": "128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Greenville", + "scheduled_service": "no", + "keywords": "MS08" + }, + { + "id": "346590", + "ident": "US-4851", + "type": "small_airport", + "name": "Rainy Mesa Airstrip", + "latitude_deg": "33.55212", + "longitude_deg": "-108.633134", + "elevation_ft": "7450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Reserve", + "scheduled_service": "no", + "gps_code": "NM54", + "local_code": "NM54" + }, + { + "id": "346593", + "ident": "US-4852", + "type": "closed", + "name": "McGinnis Airport", + "latitude_deg": "39.41782", + "longitude_deg": "-74.51285", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Absecon", + "scheduled_service": "no", + "keywords": "NJ01" + }, + { + "id": "346594", + "ident": "US-4853", + "type": "small_airport", + "name": "Pine View Airport", + "latitude_deg": "43.11553", + "longitude_deg": "-76.91067", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Clyde", + "scheduled_service": "no", + "gps_code": "NY41", + "local_code": "NY41" + }, + { + "id": "346596", + "ident": "US-4854", + "type": "closed", + "name": "Ace Airpark", + "latitude_deg": "40.04487", + "longitude_deg": "-85.66719", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Anderson", + "scheduled_service": "no", + "keywords": "3AE" + }, + { + "id": "346597", + "ident": "US-4855", + "type": "closed", + "name": "H & R Skylane Airport", + "latitude_deg": "40.18938", + "longitude_deg": "-85.74901", + "elevation_ft": "879", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Anderson", + "scheduled_service": "no" + }, + { + "id": "350254", + "ident": "US-4856", + "type": "heliport", + "name": "Gonzales Healthcare Systems Heliport", + "latitude_deg": "29.51812", + "longitude_deg": "-97.42867", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gonzales", + "scheduled_service": "no", + "keywords": "18" + }, + { + "id": "346602", + "ident": "US-4857", + "type": "closed", + "name": "Acme Skyport", + "latitude_deg": "44.76532", + "longitude_deg": "-85.4708", + "elevation_ft": "216", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Acme", + "scheduled_service": "no", + "keywords": "Y17" + }, + { + "id": "346604", + "ident": "US-4858", + "type": "small_airport", + "name": "Natural Selection Airport", + "latitude_deg": "35.916936", + "longitude_deg": "-84.447094", + "elevation_ft": "1045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Harriman", + "scheduled_service": "no", + "gps_code": "TN51", + "local_code": "TN51" + }, + { + "id": "346606", + "ident": "US-4859", + "type": "closed", + "name": "Georgia Lite Flite Airport", + "latitude_deg": "34.07933", + "longitude_deg": "-84.63065", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Acworth", + "scheduled_service": "no", + "keywords": "31GA" + }, + { + "id": "346607", + "ident": "US-4860", + "type": "closed", + "name": "Adak Naval Air Station - Albert E Mitchell Field", + "latitude_deg": "51.94097", + "longitude_deg": "-176.60105", + "elevation_ft": "106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Adak", + "scheduled_service": "no" + }, + { + "id": "346608", + "ident": "US-4861", + "type": "small_airport", + "name": "Rock Airport", + "latitude_deg": "37.8625", + "longitude_deg": "-79.35736", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "VA65", + "local_code": "VA65" + }, + { + "id": "346610", + "ident": "US-4862", + "type": "small_airport", + "name": "Sewell Airport", + "latitude_deg": "64.39801", + "longitude_deg": "-146.92842", + "elevation_ft": "689", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Salcha", + "scheduled_service": "no" + }, + { + "id": "346620", + "ident": "US-4863", + "type": "small_airport", + "name": "Harford Airport", + "latitude_deg": "41.273646", + "longitude_deg": "-88.444185", + "elevation_ft": "584", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mazon", + "scheduled_service": "no", + "gps_code": "IL97", + "local_code": "IL97" + }, + { + "id": "346624", + "ident": "US-4864", + "type": "small_airport", + "name": "Tamarack Landing", + "latitude_deg": "38.845428", + "longitude_deg": "-97.50495", + "elevation_ft": "1215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Salina", + "scheduled_service": "no", + "gps_code": "17KS", + "local_code": "17KS" + }, + { + "id": "346626", + "ident": "US-4865", + "type": "small_airport", + "name": "Steil Restricted Landing Area Airport", + "latitude_deg": "41.231388", + "longitude_deg": "-89.452593", + "elevation_ft": "648", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Tiskilwa", + "scheduled_service": "no", + "gps_code": "53IL", + "local_code": "53IL" + }, + { + "id": "346629", + "ident": "US-4866", + "type": "heliport", + "name": "University Medical Center New Orleans Heliport", + "latitude_deg": "29.959248", + "longitude_deg": "-90.082596", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no", + "gps_code": "LA58", + "local_code": "LA58" + }, + { + "id": "346631", + "ident": "US-4867", + "type": "heliport", + "name": "Prairie State Generating Heliport", + "latitude_deg": "38.276239", + "longitude_deg": "-89.67195", + "elevation_ft": "449", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Marissa", + "scheduled_service": "no", + "gps_code": "5IL4", + "local_code": "5IL4" + }, + { + "id": "346633", + "ident": "US-4868", + "type": "small_airport", + "name": "Whybrew Field", + "latitude_deg": "39.916664", + "longitude_deg": "-85.847108", + "elevation_ft": "858", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Fortville", + "scheduled_service": "no", + "gps_code": "08IN", + "local_code": "08IN" + }, + { + "id": "346636", + "ident": "US-4869", + "type": "heliport", + "name": "St Joseph - London Heliport", + "latitude_deg": "37.117929", + "longitude_deg": "-84.110336", + "elevation_ft": "1260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "London", + "scheduled_service": "no", + "gps_code": "5KY9", + "local_code": "5KY9" + }, + { + "id": "346638", + "ident": "US-4870", + "type": "heliport", + "name": "Meritus Hospital Helipad", + "latitude_deg": "39.622962", + "longitude_deg": "-77.686177", + "elevation_ft": "578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Hagerstown", + "scheduled_service": "no", + "gps_code": "5MD3", + "local_code": "5MD3" + }, + { + "id": "346639", + "ident": "US-4871", + "type": "heliport", + "name": "Sinai II Heliport", + "latitude_deg": "39.351975", + "longitude_deg": "-76.661949", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Baltimore", + "scheduled_service": "no", + "gps_code": "8MD3", + "local_code": "8MD3" + }, + { + "id": "346640", + "ident": "US-4872", + "type": "heliport", + "name": "Riverland Medical Center Heliport", + "latitude_deg": "31.646413", + "longitude_deg": "-91.556835", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Ferriday", + "scheduled_service": "no", + "gps_code": "LA70", + "local_code": "LA70" + }, + { + "id": "346643", + "ident": "US-4873", + "type": "heliport", + "name": "St Joseph Berea Heliport", + "latitude_deg": "37.578456", + "longitude_deg": "-84.28616", + "elevation_ft": "972", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Berea", + "scheduled_service": "no", + "gps_code": "5KY3", + "local_code": "5KY3" + }, + { + "id": "346670", + "ident": "US-4874", + "type": "heliport", + "name": "Irwindale Speedway Heliport", + "latitude_deg": "34.10835", + "longitude_deg": "-117.98662", + "elevation_ft": "387", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Irwindale", + "scheduled_service": "no" + }, + { + "id": "346671", + "ident": "US-4875", + "type": "heliport", + "name": "Hospitals of Providence Children's Hospital Heliport", + "latitude_deg": "31.770378", + "longitude_deg": "-106.500941", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Paso", + "scheduled_service": "no" + }, + { + "id": "346672", + "ident": "US-4876", + "type": "small_airport", + "name": "R Mayer Ranch Airport", + "latitude_deg": "30.63876", + "longitude_deg": "-100.87064", + "elevation_ft": "2178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no" + }, + { + "id": "346674", + "ident": "US-4877", + "type": "heliport", + "name": "Baylor Scott & White Taylor Medical Center Heliport", + "latitude_deg": "30.59155", + "longitude_deg": "-97.41579", + "elevation_ft": "606", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Taylor", + "scheduled_service": "no" + }, + { + "id": "346675", + "ident": "US-4878", + "type": "heliport", + "name": "US Border Patrol Sierra Blanca Station Heliport", + "latitude_deg": "31.17232", + "longitude_deg": "-105.33917", + "elevation_ft": "4475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sierra Blanca", + "scheduled_service": "no" + }, + { + "id": "346676", + "ident": "US-4879", + "type": "heliport", + "name": "Air Evac 25 Heliport", + "latitude_deg": "34.47435", + "longitude_deg": "-97.96424", + "elevation_ft": "1083", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Duncan", + "scheduled_service": "no" + }, + { + "id": "346677", + "ident": "US-4880", + "type": "heliport", + "name": "Air Evac 45 Heliport", + "latitude_deg": "33.71394", + "longitude_deg": "-87.81666", + "elevation_ft": "354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fayette", + "scheduled_service": "no" + }, + { + "id": "346678", + "ident": "US-4881", + "type": "heliport", + "name": "Air Evac 19 Heliport", + "latitude_deg": "36.51837", + "longitude_deg": "-86.03299", + "elevation_ft": "985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lafayette", + "scheduled_service": "no", + "keywords": "Lifeflight Helipad" + }, + { + "id": "346679", + "ident": "US-4882", + "type": "heliport", + "name": "Air Evac 3 Heliport", + "latitude_deg": "36.94215", + "longitude_deg": "-89.53532", + "elevation_ft": "312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Sikeston", + "scheduled_service": "no" + }, + { + "id": "346680", + "ident": "US-4883", + "type": "heliport", + "name": "Air Evac 1 Heliport", + "latitude_deg": "36.72315", + "longitude_deg": "-91.88087", + "elevation_ft": "1085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "West Plains", + "scheduled_service": "no" + }, + { + "id": "346681", + "ident": "US-4884", + "type": "heliport", + "name": "Air Evac 7 Heliport", + "latitude_deg": "35.6374", + "longitude_deg": "-88.82845", + "elevation_ft": "407", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Jackson", + "scheduled_service": "no" + }, + { + "id": "346683", + "ident": "US-4885", + "type": "heliport", + "name": "Air Evac 8 Heliport", + "latitude_deg": "37.71727", + "longitude_deg": "-90.41183", + "elevation_ft": "866", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Farmington", + "scheduled_service": "no" + }, + { + "id": "346685", + "ident": "US-4886", + "type": "heliport", + "name": "Air Evac 11 Heliport", + "latitude_deg": "38.31956", + "longitude_deg": "-88.85194", + "elevation_ft": "449", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mount Vernon", + "scheduled_service": "no" + }, + { + "id": "346686", + "ident": "US-4887", + "type": "heliport", + "name": "Air Evac 12 Heliport", + "latitude_deg": "36.34353", + "longitude_deg": "-92.39268", + "elevation_ft": "838", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Mountain Home", + "scheduled_service": "no" + }, + { + "id": "346688", + "ident": "US-4888", + "type": "heliport", + "name": "Air Evac 13 Heliport", + "latitude_deg": "38.19687", + "longitude_deg": "-91.16958", + "elevation_ft": "988", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Sullivan", + "scheduled_service": "no", + "local_code": "95MU" + }, + { + "id": "346690", + "ident": "US-4889", + "type": "heliport", + "name": "Air Evac 14 Heliport", + "latitude_deg": "36.70929", + "longitude_deg": "-85.13534", + "elevation_ft": "1017", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Albany", + "scheduled_service": "no" + }, + { + "id": "346691", + "ident": "US-4890", + "type": "heliport", + "name": "Air Evac 21 Heliport", + "latitude_deg": "35.42309", + "longitude_deg": "-99.39689", + "elevation_ft": "1969", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Elk City", + "scheduled_service": "no" + }, + { + "id": "346692", + "ident": "US-4891", + "type": "heliport", + "name": "Air Evac 22 Heliport", + "latitude_deg": "35.29783", + "longitude_deg": "-93.68473", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Paris", + "scheduled_service": "no" + }, + { + "id": "346709", + "ident": "US-4892", + "type": "heliport", + "name": "Air Evac 24 Heliport", + "latitude_deg": "36.787728", + "longitude_deg": "-90.446016", + "elevation_ft": "443", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Poplar Bluff", + "scheduled_service": "no" + }, + { + "id": "346710", + "ident": "US-4893", + "type": "heliport", + "name": "Poplar Bluff Regional Medical Center Heliport", + "latitude_deg": "36.787052", + "longitude_deg": "-90.444515", + "elevation_ft": "433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Poplar Bluff", + "scheduled_service": "no" + }, + { + "id": "346711", + "ident": "US-4894", + "type": "heliport", + "name": "Air Evac 26 Heliport", + "latitude_deg": "34.803614", + "longitude_deg": "-96.675355", + "elevation_ft": "1001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ada", + "scheduled_service": "no" + }, + { + "id": "346712", + "ident": "US-4895", + "type": "heliport", + "name": "Air Evac 28 Heliport", + "latitude_deg": "39.01703", + "longitude_deg": "-88.54228", + "elevation_ft": "548", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Watson", + "scheduled_service": "no" + }, + { + "id": "346713", + "ident": "US-4896", + "type": "heliport", + "name": "Air Evac 830 Heliport", + "latitude_deg": "35.16907", + "longitude_deg": "-92.7182", + "elevation_ft": "373", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Morrilton", + "scheduled_service": "no" + }, + { + "id": "346714", + "ident": "US-4897", + "type": "heliport", + "name": "Air Evac 31 Heliport", + "latitude_deg": "36.32531", + "longitude_deg": "-88.86934", + "elevation_ft": "367", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Martin", + "scheduled_service": "no" + }, + { + "id": "346715", + "ident": "US-4898", + "type": "heliport", + "name": "West Tennessee Healthcare Volunteer Martin Heliport", + "latitude_deg": "36.33505", + "longitude_deg": "-88.86742", + "elevation_ft": "381", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Martin", + "scheduled_service": "no" + }, + { + "id": "346716", + "ident": "US-4899", + "type": "heliport", + "name": "Air Evac 33 Heliport", + "latitude_deg": "36.60683", + "longitude_deg": "-83.73954", + "elevation_ft": "1138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Middlesboro", + "scheduled_service": "no" + }, + { + "id": "346719", + "ident": "US-4900", + "type": "heliport", + "name": "Air Evac 37 Heliport", + "latitude_deg": "36.07569", + "longitude_deg": "-87.79404", + "elevation_ft": "656", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Waverly", + "scheduled_service": "no" + }, + { + "id": "346720", + "ident": "US-4901", + "type": "heliport", + "name": "Three Rivers Hospital Heliport", + "latitude_deg": "36.076044", + "longitude_deg": "-87.792876", + "elevation_ft": "674", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Waverly", + "scheduled_service": "no" + }, + { + "id": "346721", + "ident": "US-4902", + "type": "heliport", + "name": "Air Evac 38 / MU 4 Heliport", + "latitude_deg": "40.21223", + "longitude_deg": "-92.58854", + "elevation_ft": "949", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Kirksville", + "scheduled_service": "no" + }, + { + "id": "346722", + "ident": "US-4903", + "type": "heliport", + "name": "Air Evac 39 Heliport", + "latitude_deg": "39.47534", + "longitude_deg": "-87.09961", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Brazil", + "scheduled_service": "no" + }, + { + "id": "346723", + "ident": "US-4904", + "type": "heliport", + "name": "Air Evac 40 Heliport", + "latitude_deg": "36.23819", + "longitude_deg": "-93.10752", + "elevation_ft": "1132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Harrison", + "scheduled_service": "no" + }, + { + "id": "346724", + "ident": "US-4905", + "type": "heliport", + "name": "Gainesville Health Care Center Heliport", + "latitude_deg": "36.59848", + "longitude_deg": "-92.46184", + "elevation_ft": "966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Gainesville", + "scheduled_service": "no" + }, + { + "id": "346725", + "ident": "US-4906", + "type": "heliport", + "name": "Air Evac 42 Heliport", + "latitude_deg": "35.03946", + "longitude_deg": "-90.77753", + "elevation_ft": "351", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Forrest City", + "scheduled_service": "no" + }, + { + "id": "346726", + "ident": "US-4907", + "type": "heliport", + "name": "Air Evac 44 Heliport", + "latitude_deg": "35.42793", + "longitude_deg": "-86.02578", + "elevation_ft": "1086", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Manchester", + "scheduled_service": "no" + }, + { + "id": "346727", + "ident": "US-4908", + "type": "heliport", + "name": "Air Evac 51 Heliport", + "latitude_deg": "32.02435", + "longitude_deg": "-97.09464", + "elevation_ft": "692", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hillsboro", + "scheduled_service": "no" + }, + { + "id": "346728", + "ident": "US-4909", + "type": "heliport", + "name": "Hill Regional Hospital Heliport", + "latitude_deg": "32.0134", + "longitude_deg": "-97.0985", + "elevation_ft": "656", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hillsboro", + "scheduled_service": "no" + }, + { + "id": "346729", + "ident": "US-4910", + "type": "heliport", + "name": "Scenic Mountain Medical Center Heliport", + "latitude_deg": "32.23586", + "longitude_deg": "-101.49158", + "elevation_ft": "2568", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Big Spring", + "scheduled_service": "no" + }, + { + "id": "346730", + "ident": "US-4911", + "type": "heliport", + "name": "Big Spring State Hospital Heliport", + "latitude_deg": "32.2723", + "longitude_deg": "-101.49823", + "elevation_ft": "2520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Big Spring", + "scheduled_service": "no" + }, + { + "id": "346731", + "ident": "US-4912", + "type": "heliport", + "name": "Air Evac 58 Heliport", + "latitude_deg": "34.93499", + "longitude_deg": "-88.56236", + "elevation_ft": "464", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Corinth", + "scheduled_service": "no" + }, + { + "id": "346732", + "ident": "US-4913", + "type": "heliport", + "name": "Magnolia Regional Health Center Heliport", + "latitude_deg": "34.93617", + "longitude_deg": "-88.56036", + "elevation_ft": "476", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Corinth", + "scheduled_service": "no" + }, + { + "id": "346733", + "ident": "US-4914", + "type": "heliport", + "name": "Air Evac 59 Heliport", + "latitude_deg": "40.62671", + "longitude_deg": "-91.38473", + "elevation_ft": "556", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Fort Madison", + "scheduled_service": "no" + }, + { + "id": "346734", + "ident": "US-4915", + "type": "heliport", + "name": "Air Evac 60 / MU 3 Heliport", + "latitude_deg": "38.72712", + "longitude_deg": "-93.22845", + "elevation_ft": "896", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Sedalia", + "scheduled_service": "no" + }, + { + "id": "346735", + "ident": "US-4916", + "type": "heliport", + "name": "Air Evac 61 Heliport", + "latitude_deg": "34.30559", + "longitude_deg": "-89.9161", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Batesville", + "scheduled_service": "no" + }, + { + "id": "346736", + "ident": "US-4917", + "type": "heliport", + "name": "Air Evac 62 Heliport", + "latitude_deg": "37.00057", + "longitude_deg": "-86.43436", + "elevation_ft": "499", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Bowling Green", + "scheduled_service": "no" + }, + { + "id": "346737", + "ident": "US-4918", + "type": "heliport", + "name": "Air Evac 62 Heliport", + "latitude_deg": "37.00057", + "longitude_deg": "-86.43436", + "elevation_ft": "499", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Bowling Green", + "scheduled_service": "no" + }, + { + "id": "346738", + "ident": "US-4919", + "type": "heliport", + "name": "Elmore Community Hospital Heliport", + "latitude_deg": "32.55322", + "longitude_deg": "-86.18588", + "elevation_ft": "228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Wetumpka", + "scheduled_service": "no" + }, + { + "id": "346739", + "ident": "US-4920", + "type": "heliport", + "name": "Air Evac 65 Heliport", + "latitude_deg": "33.54089", + "longitude_deg": "-96.60779", + "elevation_ft": "794", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sherman", + "scheduled_service": "no" + }, + { + "id": "346740", + "ident": "US-4921", + "type": "small_airport", + "name": "Drew 9 Airport", + "latitude_deg": "45.743247", + "longitude_deg": "-91.652658", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Birchwood", + "scheduled_service": "no", + "gps_code": "6WI6", + "local_code": "6WI6" + }, + { + "id": "346742", + "ident": "US-4922", + "type": "heliport", + "name": "Air Evac 69 Heliport", + "latitude_deg": "32.43328", + "longitude_deg": "-97.80373", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Granbury", + "scheduled_service": "no" + }, + { + "id": "346743", + "ident": "US-4923", + "type": "heliport", + "name": "Air Evac 70 Heliport", + "latitude_deg": "36.43847", + "longitude_deg": "-99.40004", + "elevation_ft": "1923", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Woodward", + "scheduled_service": "no" + }, + { + "id": "346744", + "ident": "US-4924", + "type": "heliport", + "name": "AllianceHealth Woodward Heliport", + "latitude_deg": "36.43806", + "longitude_deg": "-99.39938", + "elevation_ft": "1921", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Woodward", + "scheduled_service": "no" + }, + { + "id": "346745", + "ident": "US-4925", + "type": "heliport", + "name": "Air Evac 72 Heliport", + "latitude_deg": "35.32617", + "longitude_deg": "-87.77838", + "elevation_ft": "947", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Waynesboro", + "scheduled_service": "no" + }, + { + "id": "346746", + "ident": "US-4926", + "type": "heliport", + "name": "Air Evac 73 Heliport", + "latitude_deg": "34.04768", + "longitude_deg": "-94.35376", + "elevation_ft": "442", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "DeQueen", + "scheduled_service": "no" + }, + { + "id": "346747", + "ident": "US-4927", + "type": "heliport", + "name": "Air Evac 75 Heliport", + "latitude_deg": "36.04932", + "longitude_deg": "-89.37994", + "elevation_ft": "331", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Dyersburg", + "scheduled_service": "no" + }, + { + "id": "346748", + "ident": "US-4928", + "type": "heliport", + "name": "Air Evac 77 Heliport", + "latitude_deg": "33.01564", + "longitude_deg": "-85.07324", + "elevation_ft": "696", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "LaGrange", + "scheduled_service": "no" + }, + { + "id": "346749", + "ident": "US-4929", + "type": "heliport", + "name": "Diamond Creek #2 Heliport", + "latitude_deg": "36.168644", + "longitude_deg": "-81.818019", + "elevation_ft": "4250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Banner Elk", + "scheduled_service": "no", + "gps_code": "7NC8", + "local_code": "7NC8" + }, + { + "id": "346751", + "ident": "US-4930", + "type": "heliport", + "name": "Air Evac 80 Heliport", + "latitude_deg": "37.78568", + "longitude_deg": "-89.85292", + "elevation_ft": "607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Perryville", + "scheduled_service": "no" + }, + { + "id": "346752", + "ident": "US-4931", + "type": "closed", + "name": "Air Evac 81 Heliport", + "latitude_deg": "40.67335", + "longitude_deg": "-80.64467", + "elevation_ft": "1155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "East Liverpool", + "scheduled_service": "no" + }, + { + "id": "346753", + "ident": "US-4932", + "type": "closed", + "name": "Air Evac 82 Heliport", + "latitude_deg": "40.10621", + "longitude_deg": "-80.73628", + "elevation_ft": "1162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Martins Ferry", + "scheduled_service": "no" + }, + { + "id": "346755", + "ident": "US-4933", + "type": "heliport", + "name": "Air Evac 83 Heliport", + "latitude_deg": "35.74982", + "longitude_deg": "-95.4065", + "elevation_ft": "607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Muskogee", + "scheduled_service": "no" + }, + { + "id": "346757", + "ident": "US-4934", + "type": "heliport", + "name": "Air Evac 141 Heliport", + "latitude_deg": "35.638597", + "longitude_deg": "-88.126379", + "elevation_ft": "519", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Parsons", + "scheduled_service": "no" + }, + { + "id": "346758", + "ident": "US-4935", + "type": "heliport", + "name": "Air Evac 85 Heliport", + "latitude_deg": "37.85701", + "longitude_deg": "-81.90812", + "elevation_ft": "1643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Logan", + "scheduled_service": "no" + }, + { + "id": "346759", + "ident": "US-4936", + "type": "heliport", + "name": "Air Evac 90 Heliport", + "latitude_deg": "31.4767", + "longitude_deg": "-82.85439", + "elevation_ft": "253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Douglas", + "scheduled_service": "no" + }, + { + "id": "346760", + "ident": "US-4937", + "type": "heliport", + "name": "Meadows Regional Medical Center Heliport", + "latitude_deg": "32.209", + "longitude_deg": "-82.37635", + "elevation_ft": "279", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Vidalia", + "scheduled_service": "no" + }, + { + "id": "346761", + "ident": "US-4938", + "type": "heliport", + "name": "Air Evac 91 Heliport", + "latitude_deg": "32.2077", + "longitude_deg": "-82.37034", + "elevation_ft": "272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Vidalia", + "scheduled_service": "no" + }, + { + "id": "346762", + "ident": "US-4939", + "type": "heliport", + "name": "Air Evac 94 Heliport", + "latitude_deg": "35.22434", + "longitude_deg": "-88.2348", + "elevation_ft": "449", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Savannah", + "scheduled_service": "no" + }, + { + "id": "346763", + "ident": "US-4940", + "type": "small_airport", + "name": "Sandy Rock Airport", + "latitude_deg": "48.615321", + "longitude_deg": "-110.324932", + "elevation_ft": "2890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Gildford", + "scheduled_service": "no", + "gps_code": "14MT", + "local_code": "14MT" + }, + { + "id": "346764", + "ident": "US-4941", + "type": "heliport", + "name": "Air Evac 97 Heliport", + "latitude_deg": "38.73953", + "longitude_deg": "-82.98799", + "elevation_ft": "532", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Portsmouth", + "scheduled_service": "no", + "local_code": "68OH" + }, + { + "id": "346765", + "ident": "US-4942", + "type": "closed", + "name": "Air Evac 98 Heliport", + "latitude_deg": "39.40905", + "longitude_deg": "-82.9764", + "elevation_ft": "679", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Chillicothe", + "scheduled_service": "no" + }, + { + "id": "346779", + "ident": "US-4943", + "type": "heliport", + "name": "Air Evac 104 Heliport", + "latitude_deg": "26.18642", + "longitude_deg": "-98.2277", + "elevation_ft": "122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "McAllen", + "scheduled_service": "no" + }, + { + "id": "346781", + "ident": "US-4944", + "type": "heliport", + "name": "Air Evac 111 Heliport", + "latitude_deg": "37.924994", + "longitude_deg": "-90.772489", + "elevation_ft": "961", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Potosi", + "scheduled_service": "no" + }, + { + "id": "346782", + "ident": "US-4945", + "type": "heliport", + "name": "Washington County Memorial Hospital Heliport", + "latitude_deg": "37.925326", + "longitude_deg": "-90.773132", + "elevation_ft": "966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Potosi", + "scheduled_service": "no" + }, + { + "id": "346787", + "ident": "US-4946", + "type": "heliport", + "name": "PHI Med 14 Heliport", + "latitude_deg": "30.131114", + "longitude_deg": "-97.450884", + "elevation_ft": "526", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cedar Creek", + "scheduled_service": "no" + }, + { + "id": "346790", + "ident": "US-4947", + "type": "heliport", + "name": "Penn Presbyterian Medical Center - North Heliport", + "latitude_deg": "39.959125", + "longitude_deg": "-75.197629", + "elevation_ft": "194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "PA39", + "local_code": "PA39" + }, + { + "id": "346833", + "ident": "US-4948", + "type": "closed", + "name": "Amelia Airport", + "latitude_deg": "29.684315", + "longitude_deg": "-91.092904", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Amelia", + "scheduled_service": "no" + }, + { + "id": "346836", + "ident": "US-4949", + "type": "heliport", + "name": "Sequim EMS Heliport", + "latitude_deg": "48.088404", + "longitude_deg": "-123.110915", + "elevation_ft": "170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Sequim", + "scheduled_service": "no", + "gps_code": "3WA9", + "local_code": "3WA9" + }, + { + "id": "346853", + "ident": "US-4950", + "type": "small_airport", + "name": "Rancho Sabino Grande Airport", + "latitude_deg": "29.550495", + "longitude_deg": "-99.516225", + "elevation_ft": "1287", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Utopia", + "scheduled_service": "no", + "gps_code": "6TX2", + "local_code": "6TX2" + }, + { + "id": "346858", + "ident": "US-4951", + "type": "small_airport", + "name": "Caney Ridge Airport", + "latitude_deg": "37.065357", + "longitude_deg": "-82.44411", + "elevation_ft": "2401", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Clintwood", + "scheduled_service": "no", + "gps_code": "VA75", + "local_code": "VA75" + }, + { + "id": "346861", + "ident": "US-4952", + "type": "small_airport", + "name": "Boyd Airport", + "latitude_deg": "32.060873", + "longitude_deg": "-97.588677", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Morgan", + "scheduled_service": "no", + "gps_code": "TX36", + "local_code": "TX36", + "keywords": "43TX, Diamond Seven Ranch" + }, + { + "id": "346877", + "ident": "US-4953", + "type": "small_airport", + "name": "Cube Cove Airport", + "latitude_deg": "57.92998", + "longitude_deg": "-134.7125", + "elevation_ft": "571", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cube Cove", + "scheduled_service": "no" + }, + { + "id": "346880", + "ident": "US-4954", + "type": "heliport", + "name": "DeTar Hospital North Heliport", + "latitude_deg": "28.85455", + "longitude_deg": "-97.020521", + "elevation_ft": "97", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Victoria", + "scheduled_service": "no" + }, + { + "id": "346881", + "ident": "US-4955", + "type": "heliport", + "name": "Baylor Scott & White Medical Center Brenham Heliport", + "latitude_deg": "30.1453", + "longitude_deg": "-96.39998", + "elevation_ft": "391", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brenham", + "scheduled_service": "no" + }, + { + "id": "346882", + "ident": "US-4956", + "type": "heliport", + "name": "Riceland Medical Center Heliport", + "latitude_deg": "29.8197", + "longitude_deg": "-94.37592", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Winnie", + "scheduled_service": "no" + }, + { + "id": "346883", + "ident": "US-4957", + "type": "heliport", + "name": "Corpus Christi Medical Center Bay Area Heliport", + "latitude_deg": "27.69225", + "longitude_deg": "-97.34572", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no", + "local_code": "71TT" + }, + { + "id": "346884", + "ident": "US-4958", + "type": "heliport", + "name": "CHI Saint Joseph Health Madison Hospital Heliport", + "latitude_deg": "30.94238", + "longitude_deg": "-95.91155", + "elevation_ft": "256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Madisonville", + "scheduled_service": "no" + }, + { + "id": "346885", + "ident": "US-4959", + "type": "heliport", + "name": "Texas Emergency Hospital Heliport", + "latitude_deg": "30.34262", + "longitude_deg": "-95.08404", + "elevation_ft": "157", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cleveland", + "scheduled_service": "no", + "keywords": "Leggett Memorial Hospital Heliport" + }, + { + "id": "346886", + "ident": "US-4960", + "type": "small_airport", + "name": "4S Ranch Airport", + "latitude_deg": "29.95893", + "longitude_deg": "-98.18745", + "elevation_ft": "944", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fischer", + "scheduled_service": "no", + "gps_code": "TS25", + "local_code": "TS25" + }, + { + "id": "346887", + "ident": "US-4961", + "type": "small_airport", + "name": "EZ Ranch Airport", + "latitude_deg": "34.33222", + "longitude_deg": "-112.06965", + "elevation_ft": "3638", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mayer", + "scheduled_service": "no" + }, + { + "id": "346888", + "ident": "US-4962", + "type": "heliport", + "name": "Banner Ironwood Medical Center Heliport", + "latitude_deg": "33.21567", + "longitude_deg": "-111.56616", + "elevation_ft": "1486", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Queen Creek", + "scheduled_service": "no" + }, + { + "id": "346889", + "ident": "US-4963", + "type": "closed", + "name": "MB Acres Airport", + "latitude_deg": "33.21226", + "longitude_deg": "-111.72483", + "elevation_ft": "1348", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Queen Creek", + "scheduled_service": "no", + "keywords": "Round Top" + }, + { + "id": "346890", + "ident": "US-4964", + "type": "heliport", + "name": "Hospitals of Providence Horizon City Campus Heliport", + "latitude_deg": "31.68171", + "longitude_deg": "-106.20745", + "elevation_ft": "3997", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Horizon City", + "scheduled_service": "no" + }, + { + "id": "346891", + "ident": "US-4965", + "type": "small_airport", + "name": "Cherokee Ranch Airport", + "latitude_deg": "28.23088", + "longitude_deg": "-81.81103", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Polk City", + "scheduled_service": "no" + }, + { + "id": "346892", + "ident": "US-4966", + "type": "closed", + "name": "McCollum Airport", + "latitude_deg": "28.1527", + "longitude_deg": "-81.88052", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lakeland", + "scheduled_service": "no" + }, + { + "id": "346893", + "ident": "US-4967", + "type": "closed", + "name": "Altha International Airport", + "latitude_deg": "30.58705", + "longitude_deg": "-85.07029", + "elevation_ft": "147", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Altha", + "scheduled_service": "no" + }, + { + "id": "346894", + "ident": "US-4968", + "type": "heliport", + "name": "Baylor Scott & White McLane Children's Center Heliport", + "latitude_deg": "31.07164", + "longitude_deg": "-97.37553", + "elevation_ft": "652", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Temple", + "scheduled_service": "no", + "local_code": "40TX" + }, + { + "id": "346895", + "ident": "US-4969", + "type": "small_airport", + "name": "Dos Mijos Ranch Airport", + "latitude_deg": "30.54269", + "longitude_deg": "-100.13795", + "elevation_ft": "2294", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no" + }, + { + "id": "346896", + "ident": "US-4970", + "type": "small_airport", + "name": "Trinidad Ranch Airport", + "latitude_deg": "30.16883", + "longitude_deg": "-99.88286", + "elevation_ft": "2207", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rocksprings", + "scheduled_service": "no" + }, + { + "id": "346897", + "ident": "US-4971", + "type": "heliport", + "name": "Ochsner University Hospital & Clinics Heliport", + "latitude_deg": "30.21604", + "longitude_deg": "-92.04722", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lafayette", + "scheduled_service": "no" + }, + { + "id": "346906", + "ident": "US-4972", + "type": "small_airport", + "name": "Hopf Field", + "latitude_deg": "30.737375", + "longitude_deg": "-98.703672", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Llano", + "scheduled_service": "no", + "gps_code": "TS46", + "local_code": "TS46" + }, + { + "id": "346908", + "ident": "US-4973", + "type": "heliport", + "name": "King Air Heliport", + "latitude_deg": "40.622639", + "longitude_deg": "-75.900833", + "elevation_ft": "561", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Kempton", + "scheduled_service": "no", + "gps_code": "3PS6", + "local_code": "3PS6" + }, + { + "id": "346909", + "ident": "US-4974", + "type": "small_airport", + "name": "B Flying Ranch Airport", + "latitude_deg": "30.669856", + "longitude_deg": "-99.331716", + "elevation_ft": "1400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mason", + "scheduled_service": "no", + "gps_code": "0TA8", + "local_code": "0TA8" + }, + { + "id": "346915", + "ident": "US-4975", + "type": "heliport", + "name": "North Post Oak Heliport", + "latitude_deg": "29.79588", + "longitude_deg": "-95.458907", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "0TE3", + "local_code": "0TE3" + }, + { + "id": "346930", + "ident": "US-4976", + "type": "heliport", + "name": "Stafford Hospital Center Heliport", + "latitude_deg": "38.414446", + "longitude_deg": "-77.407281", + "elevation_ft": "213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Stafford", + "scheduled_service": "no", + "gps_code": "41VA", + "local_code": "41VA" + }, + { + "id": "346945", + "ident": "US-4977", + "type": "small_airport", + "name": "Taylors Airport", + "latitude_deg": "39.355533", + "longitude_deg": "-78.07904", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Gerrardstown", + "scheduled_service": "no", + "gps_code": "WV68", + "local_code": "WV68" + }, + { + "id": "346968", + "ident": "US-4978", + "type": "heliport", + "name": "Sutter Medical Center Castro Valley Heliport", + "latitude_deg": "37.698958", + "longitude_deg": "-122.089262", + "elevation_ft": "224", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Castro Valley", + "scheduled_service": "no", + "gps_code": "0CA1", + "local_code": "0CA1" + }, + { + "id": "346971", + "ident": "US-4979", + "type": "small_airport", + "name": "Poker Bluff Airport", + "latitude_deg": "61.639602", + "longitude_deg": "-150.513757", + "elevation_ft": "109", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Willow", + "scheduled_service": "no", + "gps_code": "35AK", + "local_code": "35AK" + }, + { + "id": "346978", + "ident": "US-4980", + "type": "heliport", + "name": "Saddle Rock ER Heliport", + "latitude_deg": "39.579207", + "longitude_deg": "-104.725692", + "elevation_ft": "5982", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Aurora", + "scheduled_service": "no", + "gps_code": "7CO5", + "local_code": "7CO5" + }, + { + "id": "346985", + "ident": "US-4981", + "type": "small_airport", + "name": "Bryan Field", + "latitude_deg": "34.911185", + "longitude_deg": "-91.837072", + "elevation_ft": "253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Lonoke", + "scheduled_service": "no", + "gps_code": "39AR", + "local_code": "39AR" + }, + { + "id": "347002", + "ident": "US-4982", + "type": "small_airport", + "name": "Ashlawn Airport", + "latitude_deg": "40.110614", + "longitude_deg": "-105.235151", + "elevation_ft": "5313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Longmont", + "scheduled_service": "no", + "gps_code": "CO23", + "local_code": "CO23" + }, + { + "id": "347004", + "ident": "US-4983", + "type": "seaplane_base", + "name": "Lake Tobesofkee Seaplane Base", + "latitude_deg": "32.843967", + "longitude_deg": "-83.824022", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Macon", + "scheduled_service": "no", + "gps_code": "75GA", + "local_code": "75GA" + }, + { + "id": "347008", + "ident": "US-4984", + "type": "heliport", + "name": "Elmhurst Memorial Hospital Heliport", + "latitude_deg": "41.864635", + "longitude_deg": "-87.937011", + "elevation_ft": "674", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Elmhurst", + "scheduled_service": "no", + "gps_code": "7IL6", + "local_code": "7IL6" + }, + { + "id": "347013", + "ident": "US-4985", + "type": "small_airport", + "name": "Vada Airport", + "latitude_deg": "31.072486", + "longitude_deg": "-84.394741", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Bainbridge", + "scheduled_service": "no", + "gps_code": "GA42", + "local_code": "GA42" + }, + { + "id": "347015", + "ident": "US-4986", + "type": "small_airport", + "name": "Hummingbirds Landing", + "latitude_deg": "27.120972", + "longitude_deg": "-81.802692", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Arcadia", + "scheduled_service": "no", + "gps_code": "FL40", + "local_code": "FL40" + }, + { + "id": "347040", + "ident": "US-4987", + "type": "small_airport", + "name": "Lazy River Airport", + "latitude_deg": "45.402518", + "longitude_deg": "-87.857457", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wausaukee", + "scheduled_service": "no", + "gps_code": "06WI", + "local_code": "06WI" + }, + { + "id": "347049", + "ident": "US-4988", + "type": "small_airport", + "name": "Lebeau Ranch Airport", + "latitude_deg": "39.303056", + "longitude_deg": "-104.40961", + "elevation_ft": "6565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Kiowa", + "scheduled_service": "no", + "gps_code": "0CO5", + "local_code": "0CO5" + }, + { + "id": "347050", + "ident": "US-4989", + "type": "heliport", + "name": "Baycare South Florida Baptist Hospital Heliport", + "latitude_deg": "28.015042", + "longitude_deg": "-82.138504", + "elevation_ft": "119", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Plant City", + "scheduled_service": "no", + "gps_code": "02FL", + "local_code": "02FL" + }, + { + "id": "347054", + "ident": "US-4990", + "type": "heliport", + "name": "Elizabethtown Community Hospital Heliport", + "latitude_deg": "44.216383", + "longitude_deg": "-73.596353", + "elevation_ft": "607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Elizabethtown", + "scheduled_service": "no", + "gps_code": "10NY", + "local_code": "10NY" + }, + { + "id": "347058", + "ident": "US-4991", + "type": "seaplane_base", + "name": "Cherry Pockets Fish Camp Seaplane Base", + "latitude_deg": "27.993719", + "longitude_deg": "-81.544454", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Wales", + "scheduled_service": "no", + "gps_code": "13FD", + "local_code": "13FD" + }, + { + "id": "347062", + "ident": "US-4992", + "type": "small_airport", + "name": "Johnson Strip Yentna Airport", + "latitude_deg": "61.9454", + "longitude_deg": "-151.036966", + "elevation_ft": "187", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Skwentna", + "scheduled_service": "no", + "gps_code": "27AK", + "local_code": "27AK" + }, + { + "id": "347068", + "ident": "US-4993", + "type": "heliport", + "name": "Ideal Fire Station 2 Heliport", + "latitude_deg": "46.732405", + "longitude_deg": "-94.20661", + "elevation_ft": "1309", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Pine River", + "scheduled_service": "no", + "gps_code": "5MN8", + "local_code": "5MN8" + }, + { + "id": "347071", + "ident": "US-4994", + "type": "heliport", + "name": "MidMichigan Health Park Helipad", + "latitude_deg": "43.617689", + "longitude_deg": "-83.930719", + "elevation_ft": "596", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Bay City", + "scheduled_service": "no", + "gps_code": "8MI0", + "local_code": "8MI0" + }, + { + "id": "347072", + "ident": "US-4995", + "type": "small_airport", + "name": "Newport Meadows Airport", + "latitude_deg": "41.977865", + "longitude_deg": "-83.282059", + "elevation_ft": "587", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "99MI", + "local_code": "99MI" + }, + { + "id": "347076", + "ident": "US-4996", + "type": "closed", + "name": "Rodd Naval Auxiliary Air Station", + "latitude_deg": "27.64975", + "longitude_deg": "-97.37702", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no", + "keywords": "Rodd Field" + }, + { + "id": "347077", + "ident": "US-4997", + "type": "closed", + "name": "Kingsville Naval Outlying Landing Field Number 36", + "latitude_deg": "27.68022", + "longitude_deg": "-97.78032", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Driscoll", + "scheduled_service": "no", + "keywords": "Naval Outlying Landing Field 26832" + }, + { + "id": "347078", + "ident": "US-4998", + "type": "closed", + "name": "Corpus Christi Airport Cliff Maus Field", + "latitude_deg": "27.76517", + "longitude_deg": "-97.43679", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no" + }, + { + "id": "347082", + "ident": "US-4999", + "type": "heliport", + "name": "Tulane Medical Center Heliport", + "latitude_deg": "29.95573", + "longitude_deg": "-90.07636", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no" + }, + { + "id": "11796", + "ident": "US-4WI7", + "type": "closed", + "name": "Gopher STOL Airport", + "latitude_deg": "44.6411", + "longitude_deg": "-91.512703", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Eleva", + "scheduled_service": "no", + "keywords": "WI87" + }, + { + "id": "347083", + "ident": "US-5000", + "type": "heliport", + "name": "Ochsner Lafayette General Southwest Medical Center Heliport", + "latitude_deg": "30.19809", + "longitude_deg": "-92.07819", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lafayette", + "scheduled_service": "no" + }, + { + "id": "347084", + "ident": "US-5001", + "type": "heliport", + "name": "MercyOne North Iowa Medical Center Heliport", + "latitude_deg": "43.150401", + "longitude_deg": "-93.21532", + "elevation_ft": "1147", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Mason City", + "scheduled_service": "no", + "gps_code": "IA47", + "local_code": "IA47" + }, + { + "id": "347086", + "ident": "US-5002", + "type": "small_airport", + "name": "Carr Field", + "latitude_deg": "42.243331", + "longitude_deg": "-96.098492", + "elevation_ft": "1064", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Hornick", + "scheduled_service": "no", + "gps_code": "IA59", + "local_code": "IA59" + }, + { + "id": "347093", + "ident": "US-5003", + "type": "small_airport", + "name": "Hall Farms Airport", + "latitude_deg": "41.347967", + "longitude_deg": "-94.121403", + "elevation_ft": "1160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Winterset", + "scheduled_service": "no", + "gps_code": "IA61", + "local_code": "IA61" + }, + { + "id": "347094", + "ident": "US-5004", + "type": "small_airport", + "name": "Matthias Field", + "latitude_deg": "43.3746", + "longitude_deg": "-92.308274", + "elevation_ft": "1304", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Lime Springs", + "scheduled_service": "no", + "gps_code": "IA62", + "local_code": "IA62" + }, + { + "id": "347101", + "ident": "US-5005", + "type": "small_airport", + "name": "Mountain View Airport", + "latitude_deg": "36.170278", + "longitude_deg": "-82.55625", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Johnson City", + "scheduled_service": "no", + "gps_code": "TN54", + "local_code": "TN54" + }, + { + "id": "347156", + "ident": "US-5006", + "type": "small_airport", + "name": "La Pointe Airport", + "latitude_deg": "30.220861", + "longitude_deg": "-91.886444", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "St. Martin", + "scheduled_service": "no", + "gps_code": "87LA", + "local_code": "87LA" + }, + { + "id": "347161", + "ident": "US-5007", + "type": "heliport", + "name": "Morgan State University - Pearl Heliport", + "latitude_deg": "38.393916", + "longitude_deg": "-76.505972", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "St Leonard", + "scheduled_service": "no", + "gps_code": "MD59", + "local_code": "MD59" + }, + { + "id": "347215", + "ident": "US-5008", + "type": "heliport", + "name": "Houston Police Department North Heliport", + "latitude_deg": "29.87856", + "longitude_deg": "-95.44593", + "elevation_ft": "87", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "347216", + "ident": "US-5009", + "type": "heliport", + "name": "Houston Police Department Westside Heliport", + "latitude_deg": "29.72748", + "longitude_deg": "-95.60358", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "347220", + "ident": "US-5010", + "type": "heliport", + "name": "Southwestern Medical Center Heliport", + "latitude_deg": "34.59304", + "longitude_deg": "-98.46414", + "elevation_ft": "1137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lawton", + "scheduled_service": "no" + }, + { + "id": "347221", + "ident": "US-5011", + "type": "heliport", + "name": "CFMC Home Health Agency Heliport", + "latitude_deg": "29.69261", + "longitude_deg": "-96.78365", + "elevation_ft": "386", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weimar", + "scheduled_service": "no" + }, + { + "id": "347222", + "ident": "US-5012", + "type": "heliport", + "name": "Children's Clinic of Southwest Louisiana Heliport", + "latitude_deg": "30.14195", + "longitude_deg": "-93.24691", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Charles", + "scheduled_service": "no" + }, + { + "id": "347223", + "ident": "US-5013", + "type": "heliport", + "name": "Lawton Indian Hospital Heliport", + "latitude_deg": "34.62759", + "longitude_deg": "-98.38342", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Duncan", + "scheduled_service": "no", + "keywords": "Kiowa Indian Hospital Heliport" + }, + { + "id": "347224", + "ident": "US-5014", + "type": "heliport", + "name": "Frederick Memorial Nursing Center Heliport", + "latitude_deg": "34.40375", + "longitude_deg": "-99.01247", + "elevation_ft": "1312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Frederick", + "scheduled_service": "no", + "keywords": "Tillman County Hospital Heliport" + }, + { + "id": "347241", + "ident": "US-5015", + "type": "heliport", + "name": "Kell West Regional Hospital Heliport", + "latitude_deg": "33.87374", + "longitude_deg": "-98.57974", + "elevation_ft": "1026", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wichita Falls", + "scheduled_service": "no" + }, + { + "id": "347242", + "ident": "US-5016", + "type": "closed", + "name": "Burkburnett Airport", + "latitude_deg": "34.07275", + "longitude_deg": "-98.59391", + "elevation_ft": "1051", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Burkburnett", + "scheduled_service": "no" + }, + { + "id": "347243", + "ident": "US-5017", + "type": "heliport", + "name": "Clay County Memorial Hospital Heliport", + "latitude_deg": "33.81325", + "longitude_deg": "-98.19675", + "elevation_ft": "922", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Henrietta", + "scheduled_service": "no" + }, + { + "id": "347244", + "ident": "US-5018", + "type": "heliport", + "name": "Central Hospital of Bowie Heliport", + "latitude_deg": "33.562682", + "longitude_deg": "-97.835006", + "elevation_ft": "1095", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bowie", + "scheduled_service": "no" + }, + { + "id": "347247", + "ident": "US-5019", + "type": "heliport", + "name": "Texas Motor Speedway Infield Heliport", + "latitude_deg": "33.03943", + "longitude_deg": "-97.28192", + "elevation_ft": "633", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no" + }, + { + "id": "347248", + "ident": "US-5020", + "type": "heliport", + "name": "Texas Motor Speedway Heliport", + "latitude_deg": "33.04288", + "longitude_deg": "-97.27867", + "elevation_ft": "623", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no" + }, + { + "id": "347249", + "ident": "US-5021", + "type": "heliport", + "name": "Texas Health Presbyterian Hospital Flower Mound Heliport", + "latitude_deg": "33.04618", + "longitude_deg": "-97.06657", + "elevation_ft": "584", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Flower Mound", + "scheduled_service": "no" + }, + { + "id": "347250", + "ident": "US-5022", + "type": "heliport", + "name": "Baylor Scott & White Centennial Medical Center Heliport", + "latitude_deg": "33.11301", + "longitude_deg": "-96.77152", + "elevation_ft": "738", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Frisco", + "scheduled_service": "no" + }, + { + "id": "347251", + "ident": "US-5023", + "type": "heliport", + "name": "Electra Memorial Hospital Heliport", + "latitude_deg": "34.01866", + "longitude_deg": "-98.92515", + "elevation_ft": "1221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Electra", + "scheduled_service": "no" + }, + { + "id": "347252", + "ident": "US-5024", + "type": "heliport", + "name": "Freestone Medical Center Heliport", + "latitude_deg": "31.7255", + "longitude_deg": "-96.16989", + "elevation_ft": "472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fairfield", + "scheduled_service": "no" + }, + { + "id": "347296", + "ident": "US-5025", + "type": "heliport", + "name": "Nacogdoches Medical Center Heliport", + "latitude_deg": "31.65249", + "longitude_deg": "-94.65296", + "elevation_ft": "416", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Nacogdoches", + "scheduled_service": "no" + }, + { + "id": "347313", + "ident": "US-5026", + "type": "closed", + "name": "Lewis River Golf Course Airport", + "latitude_deg": "45.9339", + "longitude_deg": "-122.65551", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Woodland", + "scheduled_service": "no" + }, + { + "id": "347317", + "ident": "US-5027", + "type": "heliport", + "name": "PeaceHealth United General Medical Center Heliport", + "latitude_deg": "48.49567", + "longitude_deg": "-122.27761", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Sedro-Woolley", + "scheduled_service": "no" + }, + { + "id": "347319", + "ident": "US-5028", + "type": "small_airport", + "name": "Wall Bridge Airport", + "latitude_deg": "42.88663", + "longitude_deg": "-75.99902", + "elevation_ft": "1383", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Fabius", + "scheduled_service": "no" + }, + { + "id": "347321", + "ident": "US-5029", + "type": "closed", + "name": "Bevell Place Airport", + "latitude_deg": "28.48821", + "longitude_deg": "-82.04058", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Webster", + "scheduled_service": "no" + }, + { + "id": "347323", + "ident": "US-5030", + "type": "heliport", + "name": "Arizona State Prison Florence Heliport", + "latitude_deg": "33.02858", + "longitude_deg": "-111.3745", + "elevation_ft": "1519", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Florence", + "scheduled_service": "no" + }, + { + "id": "347325", + "ident": "US-5031", + "type": "heliport", + "name": "Arizona State Prison Fort Grant Heliport", + "latitude_deg": "32.62209", + "longitude_deg": "-109.94218", + "elevation_ft": "4839", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Willcox", + "scheduled_service": "no" + }, + { + "id": "347343", + "ident": "US-5032", + "type": "heliport", + "name": "Braunig Emergency Helicopter Landing Facility", + "latitude_deg": "29.25577", + "longitude_deg": "-98.38323", + "elevation_ft": "517", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Elmendorf", + "scheduled_service": "no", + "local_code": "09XA" + }, + { + "id": "347344", + "ident": "US-5033", + "type": "heliport", + "name": "Calaveras Power Station Helipad", + "latitude_deg": "29.30271", + "longitude_deg": "-98.3239", + "elevation_ft": "504", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "local_code": "21XA", + "keywords": "Calaveras Emergency Helicopter Landing Facility" + }, + { + "id": "347345", + "ident": "US-5034", + "type": "small_airport", + "name": "Robertson Ranch Airport", + "latitude_deg": "28.86505", + "longitude_deg": "-98.41429", + "elevation_ft": "352", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pleasanton", + "scheduled_service": "no" + }, + { + "id": "347347", + "ident": "US-5035", + "type": "closed", + "name": "Kingsville Naval Air Station South Field / Kingsville South Municipal Airport", + "latitude_deg": "27.4781", + "longitude_deg": "-97.82719", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kingsville", + "scheduled_service": "no" + }, + { + "id": "347348", + "ident": "US-5036", + "type": "closed", + "name": "Velesky Airport", + "latitude_deg": "39.658394", + "longitude_deg": "-83.6752", + "elevation_ft": "1087", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Jamestown", + "scheduled_service": "no", + "keywords": "OH73" + }, + { + "id": "347349", + "ident": "US-5037", + "type": "closed", + "name": "Kingsville Intermediate Field", + "latitude_deg": "27.48931", + "longitude_deg": "-97.87215", + "elevation_ft": "58", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kingsville", + "scheduled_service": "no" + }, + { + "id": "347350", + "ident": "US-5038", + "type": "closed", + "name": "Kingsville Naval Outlying Landing Field Number 55", + "latitude_deg": "27.277", + "longitude_deg": "-97.72433", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Riviera", + "scheduled_service": "no" + }, + { + "id": "347352", + "ident": "US-5039", + "type": "closed", + "name": "Kingsville Naval Outlying Landing Field Number 42", + "latitude_deg": "27.49532", + "longitude_deg": "-97.35948", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Riviera", + "scheduled_service": "no" + }, + { + "id": "347353", + "ident": "US-5040", + "type": "closed", + "name": "Kingsville Naval Outlying Landing Field Number 41", + "latitude_deg": "27.55961", + "longitude_deg": "-97.34088", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Riviera", + "scheduled_service": "no" + }, + { + "id": "347354", + "ident": "US-5041", + "type": "closed", + "name": "Kingsville Naval Outlying Landing Field Number 11", + "latitude_deg": "27.56465", + "longitude_deg": "-97.47298", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no" + }, + { + "id": "347355", + "ident": "US-5042", + "type": "closed", + "name": "Kingsville Naval Outlying Landing Field Number 21", + "latitude_deg": "27.65778", + "longitude_deg": "-97.54235", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no" + }, + { + "id": "347356", + "ident": "US-5043", + "type": "closed", + "name": "Kingsville Naval Outlying Landing Field Number 13", + "latitude_deg": "27.52448", + "longitude_deg": "-97.54417", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no" + }, + { + "id": "347357", + "ident": "US-5044", + "type": "closed", + "name": "Kingsville Naval Outlying Landing Field Number 25", + "latitude_deg": "27.51594", + "longitude_deg": "-97.62543", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no" + }, + { + "id": "347358", + "ident": "US-5045", + "type": "heliport", + "name": "Texas Department of Public Safety Weslaco Heliport", + "latitude_deg": "26.18766", + "longitude_deg": "-97.9612", + "elevation_ft": "67", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weslaco", + "scheduled_service": "no" + }, + { + "id": "347359", + "ident": "US-5046", + "type": "heliport", + "name": "Duck Blind Helipad", + "latitude_deg": "29.76498", + "longitude_deg": "-93.8822", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cameron", + "scheduled_service": "no" + }, + { + "id": "347360", + "ident": "US-5047", + "type": "heliport", + "name": "Cheniere LNG Terminal Heliport", + "latitude_deg": "29.74841", + "longitude_deg": "-93.86652", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cameron", + "scheduled_service": "no" + }, + { + "id": "347361", + "ident": "US-5048", + "type": "closed", + "name": "Mobil Rockport Heliport", + "latitude_deg": "27.95947", + "longitude_deg": "-97.09603", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rockport", + "scheduled_service": "no" + }, + { + "id": "347388", + "ident": "US-5049", + "type": "closed", + "name": "Quintana Airport", + "latitude_deg": "28.33764", + "longitude_deg": "-97.14834", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Refugio", + "scheduled_service": "no" + }, + { + "id": "347389", + "ident": "US-5050", + "type": "heliport", + "name": "Houston Police Department Northeast Heliport", + "latitude_deg": "29.83289", + "longitude_deg": "-95.27237", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "347390", + "ident": "US-5051", + "type": "closed", + "name": "Kingsville Naval Outlying Landing Field Number 53", + "latitude_deg": "27.58776", + "longitude_deg": "-97.86152", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kingsville", + "scheduled_service": "no" + }, + { + "id": "347391", + "ident": "US-5052", + "type": "closed", + "name": "Kingsville Naval Outlying Landing Field Number 51", + "latitude_deg": "27.39419", + "longitude_deg": "-97.819", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kingsville", + "scheduled_service": "no" + }, + { + "id": "347392", + "ident": "US-5053", + "type": "closed", + "name": "House Tank Airport", + "latitude_deg": "27.59389", + "longitude_deg": "-99.29331", + "elevation_ft": "714", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laredo", + "scheduled_service": "no" + }, + { + "id": "347393", + "ident": "US-5054", + "type": "closed", + "name": "Lobo Ranch Airport", + "latitude_deg": "27.58305", + "longitude_deg": "-99.27984", + "elevation_ft": "702", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laredo", + "scheduled_service": "no" + }, + { + "id": "347394", + "ident": "US-5055", + "type": "small_airport", + "name": "Dry Valley Airport", + "latitude_deg": "33.49801", + "longitude_deg": "-97.63795", + "elevation_ft": "938", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Forestburg", + "scheduled_service": "no" + }, + { + "id": "347395", + "ident": "US-5056", + "type": "heliport", + "name": "Hageman Reserve Helipad", + "latitude_deg": "33.35846", + "longitude_deg": "-95.37892", + "elevation_ft": "423", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sulphur Bluff", + "scheduled_service": "no" + }, + { + "id": "347396", + "ident": "US-5057", + "type": "heliport", + "name": "Weleetka Power Plant Heliport", + "latitude_deg": "35.32496", + "longitude_deg": "-96.13625", + "elevation_ft": "686", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Weleetka", + "scheduled_service": "no" + }, + { + "id": "347397", + "ident": "US-5058", + "type": "heliport", + "name": "Ascension Saint John Owasso Heliport", + "latitude_deg": "36.29945", + "longitude_deg": "-95.83645", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Owasso", + "scheduled_service": "no" + }, + { + "id": "347398", + "ident": "US-5059", + "type": "heliport", + "name": "Ascension Saint John Broken Arrow Heliport", + "latitude_deg": "36.07851", + "longitude_deg": "-95.79982", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Broken Arrow", + "scheduled_service": "no" + }, + { + "id": "347425", + "ident": "US-5060", + "type": "small_airport", + "name": "Moore-Gilmore Airfield", + "latitude_deg": "31.240545", + "longitude_deg": "-103.068166", + "elevation_ft": "2623", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Coyanosa", + "scheduled_service": "no" + }, + { + "id": "347426", + "ident": "US-5061", + "type": "closed", + "name": "Coyanosa Gin Airport", + "latitude_deg": "31.27433", + "longitude_deg": "-103.06463", + "elevation_ft": "2578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Coyanosa", + "scheduled_service": "no" + }, + { + "id": "347427", + "ident": "US-5062", + "type": "closed", + "name": "Love Field", + "latitude_deg": "32.17171", + "longitude_deg": "-95.4125", + "elevation_ft": "398", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bullard", + "scheduled_service": "no" + }, + { + "id": "347428", + "ident": "US-5063", + "type": "small_airport", + "name": "Frisco Ridge Airfield", + "latitude_deg": "34.74856", + "longitude_deg": "-98.34334", + "elevation_ft": "1306", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Elgin", + "scheduled_service": "no" + }, + { + "id": "347429", + "ident": "US-5064", + "type": "closed", + "name": "Medicine Park Airport", + "latitude_deg": "34.71961", + "longitude_deg": "-98.38567", + "elevation_ft": "1136", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Elgin", + "scheduled_service": "no" + }, + { + "id": "347430", + "ident": "US-5065", + "type": "closed", + "name": "Welge Ranch Airport", + "latitude_deg": "30.46876", + "longitude_deg": "-99.10472", + "elevation_ft": "1719", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Doss", + "scheduled_service": "no" + }, + { + "id": "347431", + "ident": "US-5066", + "type": "closed", + "name": "Evers Airport", + "latitude_deg": "30.4806", + "longitude_deg": "-99.27766", + "elevation_ft": "1862", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Doss", + "scheduled_service": "no" + }, + { + "id": "347432", + "ident": "US-5067", + "type": "heliport", + "name": "Atrium Health Huntersville Heliport", + "latitude_deg": "35.43837", + "longitude_deg": "-80.86583", + "elevation_ft": "753", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Huntersville", + "scheduled_service": "no" + }, + { + "id": "347444", + "ident": "US-5068", + "type": "heliport", + "name": "Atrium Health Steele Creek Heliport", + "latitude_deg": "35.09823", + "longitude_deg": "-80.99298", + "elevation_ft": "604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Charlotte", + "scheduled_service": "no" + }, + { + "id": "347445", + "ident": "US-5069", + "type": "closed", + "name": "Chapman Ranch Airport", + "latitude_deg": "35.01289", + "longitude_deg": "-112.62633", + "elevation_ft": "4530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Chino Valley", + "scheduled_service": "no" + }, + { + "id": "347446", + "ident": "US-5070", + "type": "closed", + "name": "Old Poley Ranch Airport", + "latitude_deg": "34.61606", + "longitude_deg": "-112.67054", + "elevation_ft": "4828", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Skull Valley", + "scheduled_service": "no" + }, + { + "id": "347447", + "ident": "US-5071", + "type": "heliport", + "name": "APS Redhawk Power Plant Heliport", + "latitude_deg": "33.33151", + "longitude_deg": "-112.83988", + "elevation_ft": "879", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Arlington", + "scheduled_service": "no" + }, + { + "id": "347448", + "ident": "US-5072", + "type": "small_airport", + "name": "Babocomari Ranch Airport", + "latitude_deg": "31.6204", + "longitude_deg": "-110.46079", + "elevation_ft": "4750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Elgin", + "scheduled_service": "no" + }, + { + "id": "347449", + "ident": "US-5073", + "type": "heliport", + "name": "Bayfront Health Seven River Heliport", + "latitude_deg": "28.95185", + "longitude_deg": "-82.62366", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Crystal River", + "scheduled_service": "no", + "keywords": "Seven Rivers Regional Medical Center Heliport" + }, + { + "id": "347450", + "ident": "US-5074", + "type": "closed", + "name": "Denton Ranch Airport", + "latitude_deg": "32.19348", + "longitude_deg": "-99.56834", + "elevation_ft": "1986", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Clyde", + "scheduled_service": "no" + }, + { + "id": "347452", + "ident": "US-5075", + "type": "closed", + "name": "Naval Air Station Pensacola Corry Field", + "latitude_deg": "30.40183", + "longitude_deg": "-87.2934", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pensacola", + "scheduled_service": "no", + "keywords": "Kiwanis Field" + }, + { + "id": "347453", + "ident": "US-5076", + "type": "heliport", + "name": "Corry Field Heliport", + "latitude_deg": "30.39808", + "longitude_deg": "-87.29552", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Pensacola", + "scheduled_service": "no" + }, + { + "id": "347454", + "ident": "US-5077", + "type": "heliport", + "name": "Smiley Volunteer Fire Department Heliport", + "latitude_deg": "29.27019", + "longitude_deg": "-97.63525", + "elevation_ft": "312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Smiley", + "scheduled_service": "no" + }, + { + "id": "347455", + "ident": "US-5078", + "type": "heliport", + "name": "AllianceHealth Madill Heliport", + "latitude_deg": "34.08067", + "longitude_deg": "-96.77729", + "elevation_ft": "804", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Madill", + "scheduled_service": "no" + }, + { + "id": "347456", + "ident": "US-5079", + "type": "heliport", + "name": "Mercy Hospital Tishomingo Heliport", + "latitude_deg": "34.22188", + "longitude_deg": "-96.67447", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tishomingo", + "scheduled_service": "no" + }, + { + "id": "347457", + "ident": "US-5080", + "type": "heliport", + "name": "Johnson County Ambulance Heliport", + "latitude_deg": "34.22282", + "longitude_deg": "-96.67297", + "elevation_ft": "694", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Tishomingo", + "scheduled_service": "no" + }, + { + "id": "347458", + "ident": "US-5081", + "type": "heliport", + "name": "Arbuckle Memorial Hospital Heliport", + "latitude_deg": "34.50468", + "longitude_deg": "-96.99686", + "elevation_ft": "952", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Sulphur", + "scheduled_service": "no" + }, + { + "id": "347459", + "ident": "US-5082", + "type": "closed", + "name": "Culwell Ranch Airport", + "latitude_deg": "33.010122", + "longitude_deg": "-97.086122", + "elevation_ft": "643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Flower Mound", + "scheduled_service": "no" + }, + { + "id": "347462", + "ident": "US-5083", + "type": "small_airport", + "name": "Blue Jay Airfield", + "latitude_deg": "33.090447", + "longitude_deg": "-97.267872", + "elevation_ft": "668", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Justin", + "scheduled_service": "no", + "gps_code": "XA49", + "local_code": "XA49" + }, + { + "id": "347464", + "ident": "US-5084", + "type": "closed", + "name": "Flower Mound Airport", + "latitude_deg": "33.01854", + "longitude_deg": "-97.11272", + "elevation_ft": "617", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Flower Mound", + "scheduled_service": "no" + }, + { + "id": "347465", + "ident": "US-5085", + "type": "closed", + "name": "Briarhill Airport", + "latitude_deg": "33.07601", + "longitude_deg": "-97.06713", + "elevation_ft": "642", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Highland Village", + "scheduled_service": "no" + }, + { + "id": "347466", + "ident": "US-5086", + "type": "heliport", + "name": "Wise Health System Bridgeport Campus Heliport", + "latitude_deg": "33.21911", + "longitude_deg": "-97.76188", + "elevation_ft": "779", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bridgeport", + "scheduled_service": "no" + }, + { + "id": "347467", + "ident": "US-5087", + "type": "small_airport", + "name": "Boeing Field", + "latitude_deg": "38.808643", + "longitude_deg": "-107.636147", + "elevation_ft": "5784", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Paonia", + "scheduled_service": "no", + "gps_code": "43CO", + "local_code": "43CO" + }, + { + "id": "347468", + "ident": "US-5088", + "type": "heliport", + "name": "Texas Health Harris Methodist Hospital Cleburne Heliport", + "latitude_deg": "32.33297", + "longitude_deg": "-97.43782", + "elevation_ft": "788", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cleburne", + "scheduled_service": "no" + }, + { + "id": "347470", + "ident": "US-5089", + "type": "heliport", + "name": "Key Largo Bay Marriott Beach Resort Helipad", + "latitude_deg": "25.14228", + "longitude_deg": "-80.39992", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Key Largo", + "scheduled_service": "no" + }, + { + "id": "347471", + "ident": "US-5090", + "type": "closed", + "name": "Trumbo Point Seaplane Base", + "latitude_deg": "24.56661", + "longitude_deg": "-81.79347", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Key West", + "scheduled_service": "no" + }, + { + "id": "347472", + "ident": "US-5091", + "type": "heliport", + "name": "Monroe County Sheriff's Department Heliport", + "latitude_deg": "24.57792", + "longitude_deg": "-81.7524", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Key West", + "scheduled_service": "no" + }, + { + "id": "347475", + "ident": "US-5092", + "type": "heliport", + "name": "East Sister Rock Island Private Helipad", + "latitude_deg": "24.687178", + "longitude_deg": "-81.074767", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Marathon", + "scheduled_service": "no" + }, + { + "id": "347476", + "ident": "US-5093", + "type": "heliport", + "name": "Pumpkin Key Private Helipad", + "latitude_deg": "25.32602", + "longitude_deg": "-80.2952", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Key Largo", + "scheduled_service": "no" + }, + { + "id": "347478", + "ident": "US-5094", + "type": "heliport", + "name": "Summerland Key Private Helipad", + "latitude_deg": "24.66167", + "longitude_deg": "-81.45564", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Summerland Key", + "scheduled_service": "no" + }, + { + "id": "347481", + "ident": "US-5095", + "type": "closed", + "name": "Compton Flying C Ranch Airport", + "latitude_deg": "25.65525", + "longitude_deg": "-80.34888", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no" + }, + { + "id": "347482", + "ident": "US-5096", + "type": "small_airport", + "name": "Juniper Hills Airport", + "latitude_deg": "39.379791", + "longitude_deg": "-108.088254", + "elevation_ft": "5400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Parachute", + "scheduled_service": "no", + "gps_code": "CO29", + "local_code": "CO29" + }, + { + "id": "347484", + "ident": "US-5097", + "type": "closed", + "name": "Homestead Municipal Airport", + "latitude_deg": "25.475", + "longitude_deg": "-80.465", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Homestead", + "scheduled_service": "no" + }, + { + "id": "347485", + "ident": "US-5098", + "type": "closed", + "name": "Brown's Airport / Aero Country Club", + "latitude_deg": "25.66972", + "longitude_deg": "-80.31205", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no" + }, + { + "id": "347486", + "ident": "US-5099", + "type": "closed", + "name": "Chapman Field", + "latitude_deg": "25.63856", + "longitude_deg": "-80.29169", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no" + }, + { + "id": "347487", + "ident": "US-5100", + "type": "closed", + "name": "Naval Air Station Richmond", + "latitude_deg": "25.61448", + "longitude_deg": "-80.3971", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Naval_Air_Station_Richmond" + }, + { + "id": "347488", + "ident": "US-5101", + "type": "heliport", + "name": "US Coast Guard Miami Communication Station Heliport", + "latitude_deg": "25.62158", + "longitude_deg": "-80.38941", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no" + }, + { + "id": "347489", + "ident": "US-5102", + "type": "closed", + "name": "Davis Airport", + "latitude_deg": "25.5619", + "longitude_deg": "-80.45573", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no" + }, + { + "id": "347491", + "ident": "US-5103", + "type": "small_airport", + "name": "Fought'N'Won Ultralight Flightpark", + "latitude_deg": "40.341388", + "longitude_deg": "-104.922647", + "elevation_ft": "5000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Johnstown", + "scheduled_service": "no", + "gps_code": "CO81", + "local_code": "CO81" + }, + { + "id": "347497", + "ident": "US-5104", + "type": "heliport", + "name": "Earlybird Heliport", + "latitude_deg": "40.642378", + "longitude_deg": "-89.272665", + "elevation_ft": "742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Goodfield", + "scheduled_service": "no", + "gps_code": "IL35", + "local_code": "IL35" + }, + { + "id": "347504", + "ident": "US-5105", + "type": "small_airport", + "name": "Ellerbe Field", + "latitude_deg": "32.300466", + "longitude_deg": "-93.636533", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Shreveport", + "scheduled_service": "no", + "gps_code": "1LA4", + "local_code": "1LA4" + }, + { + "id": "347512", + "ident": "US-5106", + "type": "heliport", + "name": "White Oak Resources Heliport", + "latitude_deg": "38.17067", + "longitude_deg": "-88.600713", + "elevation_ft": "418", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "McLeansboro", + "scheduled_service": "no", + "gps_code": "IL33", + "local_code": "IL33" + }, + { + "id": "347513", + "ident": "US-5107", + "type": "small_airport", + "name": "T & M Airfield", + "latitude_deg": "30.618305", + "longitude_deg": "-91.945889", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Port Barre", + "scheduled_service": "no", + "gps_code": "55LA", + "local_code": "55LA" + }, + { + "id": "347537", + "ident": "US-5108", + "type": "closed", + "name": "Lain-Matthews Airport", + "latitude_deg": "25.57608", + "longitude_deg": "-80.52894", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no" + }, + { + "id": "347538", + "ident": "US-5109", + "type": "closed", + "name": "Tom Werner Airport", + "latitude_deg": "25.58454", + "longitude_deg": "-80.45392", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no" + }, + { + "id": "347539", + "ident": "US-5110", + "type": "small_airport", + "name": "Rugowski Aviation Airport", + "latitude_deg": "33.16198", + "longitude_deg": "-97.71925", + "elevation_ft": "804", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paradise", + "scheduled_service": "no" + }, + { + "id": "347540", + "ident": "US-5111", + "type": "heliport", + "name": "Muenster Memorial Hospital Heliport", + "latitude_deg": "33.65289", + "longitude_deg": "-97.38053", + "elevation_ft": "1001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Muenster", + "scheduled_service": "no" + }, + { + "id": "347541", + "ident": "US-5112", + "type": "closed", + "name": "4M Ranch Airport", + "latitude_deg": "40.17498", + "longitude_deg": "-108.41737", + "elevation_ft": "5515", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Meeker", + "scheduled_service": "no" + }, + { + "id": "347542", + "ident": "US-5113", + "type": "small_airport", + "name": "Valley View Airport", + "latitude_deg": "42.92137", + "longitude_deg": "-75.41403", + "elevation_ft": "1369", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Waterville", + "scheduled_service": "no" + }, + { + "id": "347543", + "ident": "US-5114", + "type": "closed", + "name": "Hillcrest Airport", + "latitude_deg": "40.15936", + "longitude_deg": "-82.62406", + "elevation_ft": "1283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Johnstown", + "scheduled_service": "no" + }, + { + "id": "347546", + "ident": "US-5115", + "type": "closed", + "name": "Sanford-Lee County Brick Field", + "latitude_deg": "35.432683", + "longitude_deg": "-79.183338", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Sanford", + "scheduled_service": "no", + "keywords": "W77" + }, + { + "id": "347548", + "ident": "US-5116", + "type": "closed", + "name": "Portage Airport", + "latitude_deg": "60.80842", + "longitude_deg": "-148.933598", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Portage", + "scheduled_service": "no" + }, + { + "id": "347549", + "ident": "US-5117", + "type": "closed", + "name": "Cohoe Airport", + "latitude_deg": "60.371548", + "longitude_deg": "-151.306034", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cohoe", + "scheduled_service": "no" + }, + { + "id": "347550", + "ident": "US-5118", + "type": "closed", + "name": "Old Girdwood Airstrip", + "latitude_deg": "60.939162", + "longitude_deg": "-149.172629", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Girdwood", + "scheduled_service": "no" + }, + { + "id": "347554", + "ident": "US-5119", + "type": "heliport", + "name": "Largo Medical Center Heliport", + "latitude_deg": "27.9142", + "longitude_deg": "-82.80295", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Largo", + "scheduled_service": "no", + "local_code": "14FL" + }, + { + "id": "347555", + "ident": "US-5120", + "type": "small_airport", + "name": "Carlton Ranch-Sidell Airport", + "latitude_deg": "27.20768", + "longitude_deg": "-82.12742", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Arcadia", + "scheduled_service": "no" + }, + { + "id": "347558", + "ident": "US-5121", + "type": "closed", + "name": "National Parachute Test Range - Superstition Airfield", + "latitude_deg": "32.92009", + "longitude_deg": "-115.85875", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Imperial", + "scheduled_service": "no" + }, + { + "id": "347559", + "ident": "US-5122", + "type": "small_airport", + "name": "WISS Airfield", + "latitude_deg": "33.31464", + "longitude_deg": "-115.40322", + "elevation_ft": "502", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Niland", + "scheduled_service": "no" + }, + { + "id": "347560", + "ident": "US-5123", + "type": "heliport", + "name": "LZ Bull Heliport", + "latitude_deg": "33.05933", + "longitude_deg": "-115.03533", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Niland", + "scheduled_service": "no" + }, + { + "id": "347561", + "ident": "US-5124", + "type": "small_airport", + "name": "LZ Phantom Airfield", + "latitude_deg": "33.16071", + "longitude_deg": "-114.97052", + "elevation_ft": "1509", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Niland", + "scheduled_service": "no" + }, + { + "id": "347562", + "ident": "US-5125", + "type": "small_airport", + "name": "Compressor Station 14 Airport", + "latitude_deg": "42.17178", + "longitude_deg": "-121.43953", + "elevation_ft": "4137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Bonanza", + "scheduled_service": "no" + }, + { + "id": "347563", + "ident": "US-5126", + "type": "closed", + "name": "Bedfield Airport", + "latitude_deg": "42.12594", + "longitude_deg": "-121.47522", + "elevation_ft": "4130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Klamath Falls", + "scheduled_service": "no" + }, + { + "id": "347564", + "ident": "US-5127", + "type": "closed", + "name": "Bud Coffee Field", + "latitude_deg": "37.62425", + "longitude_deg": "-121.00133", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Modesto", + "scheduled_service": "no" + }, + { + "id": "347565", + "ident": "US-5128", + "type": "closed", + "name": "Chemurgic Airport", + "latitude_deg": "37.47621", + "longitude_deg": "-120.91718", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Turlock", + "scheduled_service": "no" + }, + { + "id": "347566", + "ident": "US-5129", + "type": "closed", + "name": "Fulkerth Airport", + "latitude_deg": "37.50385", + "longitude_deg": "-121.04254", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Crows Landing", + "scheduled_service": "no" + }, + { + "id": "347567", + "ident": "US-5130", + "type": "small_airport", + "name": "Arrowhead Ranch Airport", + "latitude_deg": "48.23424", + "longitude_deg": "-122.4748", + "elevation_ft": "204", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Camano", + "scheduled_service": "no" + }, + { + "id": "347594", + "ident": "US-5131", + "type": "closed", + "name": "Walters Private Airport", + "latitude_deg": "34.37284", + "longitude_deg": "-98.40101", + "elevation_ft": "1061", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Walters", + "scheduled_service": "no" + }, + { + "id": "347595", + "ident": "US-5132", + "type": "small_airport", + "name": "Wings As Eagles Airport", + "latitude_deg": "31.93499", + "longitude_deg": "-99.29982", + "elevation_ft": "1615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Coleman", + "scheduled_service": "no" + }, + { + "id": "347597", + "ident": "US-5133", + "type": "closed", + "name": "Kelso Airfield", + "latitude_deg": "35.06847", + "longitude_deg": "-115.64281", + "elevation_ft": "2510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Kelso", + "scheduled_service": "no" + }, + { + "id": "347598", + "ident": "US-5134", + "type": "closed", + "name": "Bessemer Mine Airport", + "latitude_deg": "34.57827", + "longitude_deg": "-116.55765", + "elevation_ft": "3117", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Landers", + "scheduled_service": "no" + }, + { + "id": "347599", + "ident": "US-5135", + "type": "closed", + "name": "Bagdad Highway Airfield", + "latitude_deg": "34.28577", + "longitude_deg": "-116.03303", + "elevation_ft": "2392", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Twentynine Palms", + "scheduled_service": "no" + }, + { + "id": "347600", + "ident": "US-5136", + "type": "closed", + "name": "Aldrich Airport", + "latitude_deg": "41.8556", + "longitude_deg": "-75.59273", + "elevation_ft": "1639", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Jackson Township", + "scheduled_service": "no" + }, + { + "id": "347609", + "ident": "US-5137", + "type": "heliport", + "name": "Comanche County Medical Center Heliport", + "latitude_deg": "31.98526", + "longitude_deg": "-98.56237", + "elevation_ft": "1275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Comanche", + "scheduled_service": "no" + }, + { + "id": "347610", + "ident": "US-5138", + "type": "heliport", + "name": "Lynn County Hospital District Heliport", + "latitude_deg": "33.16771", + "longitude_deg": "-101.81622", + "elevation_ft": "3108", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tahoka", + "scheduled_service": "no" + }, + { + "id": "347615", + "ident": "US-5139", + "type": "small_airport", + "name": "Snouffer Field", + "latitude_deg": "37.456281", + "longitude_deg": "-92.404059", + "elevation_ft": "1204", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lynchburg", + "scheduled_service": "no", + "gps_code": "78MO", + "local_code": "78MO" + }, + { + "id": "347617", + "ident": "US-5140", + "type": "closed", + "name": "Lucky Badger Airport", + "latitude_deg": "47.73842", + "longitude_deg": "-120.18156", + "elevation_ft": "1251", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Orondo", + "scheduled_service": "no" + }, + { + "id": "347618", + "ident": "US-5141", + "type": "closed", + "name": "Edgerton Airport", + "latitude_deg": "43.41546", + "longitude_deg": "-106.23862", + "elevation_ft": "4980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Edgerton", + "scheduled_service": "no" + }, + { + "id": "347619", + "ident": "US-5142", + "type": "closed", + "name": "Tall City Airport", + "latitude_deg": "31.34431", + "longitude_deg": "-103.63485", + "elevation_ft": "2730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pecos", + "scheduled_service": "no" + }, + { + "id": "347620", + "ident": "US-5143", + "type": "closed", + "name": "T&P Airport", + "latitude_deg": "31.13251", + "longitude_deg": "-103.70478", + "elevation_ft": "2949", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Balmorhea", + "scheduled_service": "no" + }, + { + "id": "347621", + "ident": "US-5144", + "type": "small_airport", + "name": "El Perro Rojo Ranch Airport", + "latitude_deg": "28.08775", + "longitude_deg": "-98.81378", + "elevation_ft": "2947", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Encinal", + "scheduled_service": "no" + }, + { + "id": "347622", + "ident": "US-5145", + "type": "small_airport", + "name": "Spring Creek Airport", + "latitude_deg": "37.6777", + "longitude_deg": "-120.27409", + "elevation_ft": "1329", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Coulterville", + "scheduled_service": "no" + }, + { + "id": "347623", + "ident": "US-5146", + "type": "small_airport", + "name": "Granite Dell Airport", + "latitude_deg": "37.70834", + "longitude_deg": "-120.31877", + "elevation_ft": "1359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Coulterville", + "scheduled_service": "no" + }, + { + "id": "347624", + "ident": "US-5147", + "type": "closed", + "name": "Oak Flat Mine Airport", + "latitude_deg": "37.72115", + "longitude_deg": "-120.44696", + "elevation_ft": "943", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "La Grange", + "scheduled_service": "no" + }, + { + "id": "347625", + "ident": "US-5148", + "type": "small_airport", + "name": "Halfmoon Flats Airport", + "latitude_deg": "48.46106", + "longitude_deg": "-113.991", + "elevation_ft": "3445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "West Glacier", + "scheduled_service": "no" + }, + { + "id": "347626", + "ident": "US-5149", + "type": "closed", + "name": "West Glacier Airport", + "latitude_deg": "48.49517", + "longitude_deg": "-113.98989", + "elevation_ft": "3203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "West Glacier", + "scheduled_service": "no" + }, + { + "id": "347627", + "ident": "US-5150", + "type": "closed", + "name": "Belle Alliance Airport", + "latitude_deg": "30.05283", + "longitude_deg": "-91.03111", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Belle Rose", + "scheduled_service": "no" + }, + { + "id": "347628", + "ident": "US-5151", + "type": "closed", + "name": "Don's Flying Service Airport", + "latitude_deg": "29.92927", + "longitude_deg": "-90.98805", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Napoleonville", + "scheduled_service": "no" + }, + { + "id": "347629", + "ident": "US-5152", + "type": "closed", + "name": "Cedar Grove Plantation Airport", + "latitude_deg": "29.861823", + "longitude_deg": "-90.958543", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Labadieville", + "scheduled_service": "no" + }, + { + "id": "347630", + "ident": "US-5153", + "type": "closed", + "name": "Midway Airport", + "latitude_deg": "29.81352", + "longitude_deg": "-90.88906", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Thibodaux", + "scheduled_service": "no" + }, + { + "id": "347631", + "ident": "US-5154", + "type": "small_airport", + "name": "Malone Airfield", + "latitude_deg": "36.732825", + "longitude_deg": "-89.582128", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Matthews", + "scheduled_service": "no", + "gps_code": "65MO", + "local_code": "65MO" + }, + { + "id": "347632", + "ident": "US-5155", + "type": "heliport", + "name": "Elkhart General Hospital Helipad", + "latitude_deg": "41.679391", + "longitude_deg": "-85.993847", + "elevation_ft": "806", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Elkhart", + "scheduled_service": "no", + "gps_code": "14IN", + "local_code": "14IN" + }, + { + "id": "347637", + "ident": "US-5156", + "type": "closed", + "name": "Wills Airport", + "latitude_deg": "30.80471", + "longitude_deg": "-89.66018", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Poplarville", + "scheduled_service": "no" + }, + { + "id": "347638", + "ident": "US-5157", + "type": "small_airport", + "name": "Cole Airport", + "latitude_deg": "34.38356", + "longitude_deg": "-116.55577", + "elevation_ft": "2848", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Landers", + "scheduled_service": "no" + }, + { + "id": "347639", + "ident": "US-5158", + "type": "closed", + "name": "Toponas Airport", + "latitude_deg": "40.05586", + "longitude_deg": "-106.79056", + "elevation_ft": "8248", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Toponas", + "scheduled_service": "no" + }, + { + "id": "347640", + "ident": "US-5159", + "type": "closed", + "name": "Wonder Valley Airport", + "latitude_deg": "36.79213", + "longitude_deg": "-119.30959", + "elevation_ft": "662", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sanger", + "scheduled_service": "no" + }, + { + "id": "347641", + "ident": "US-5160", + "type": "small_airport", + "name": "Happy Butt Private Airport", + "latitude_deg": "39.59593", + "longitude_deg": "-104.23376", + "elevation_ft": "5512", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Byers", + "scheduled_service": "no" + }, + { + "id": "347642", + "ident": "US-5161", + "type": "small_airport", + "name": "Colorado Live Steamers Airport", + "latitude_deg": "39.82835", + "longitude_deg": "-104.19409", + "elevation_ft": "5025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Byers", + "scheduled_service": "no", + "keywords": "Staple D Ranch" + }, + { + "id": "347643", + "ident": "US-5162", + "type": "closed", + "name": "Linnebur Ranch Airport", + "latitude_deg": "39.73017", + "longitude_deg": "-104.11568", + "elevation_ft": "5072", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Byers", + "scheduled_service": "no" + }, + { + "id": "347644", + "ident": "US-5163", + "type": "closed", + "name": "Lead Valley Range Airport", + "latitude_deg": "39.72852", + "longitude_deg": "-103.91279", + "elevation_ft": "5082", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Deer Trail", + "scheduled_service": "no" + }, + { + "id": "347680", + "ident": "US-5164", + "type": "heliport", + "name": "Paris Regional Medical Center Heliport", + "latitude_deg": "33.6893", + "longitude_deg": "-95.54837", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "19TE", + "local_code": "19TE" + }, + { + "id": "347681", + "ident": "US-5165", + "type": "closed", + "name": "Antimony Airport", + "latitude_deg": "38.12521", + "longitude_deg": "-111.99375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Antimony", + "scheduled_service": "no" + }, + { + "id": "347690", + "ident": "US-5166", + "type": "small_airport", + "name": "Maguire Field", + "latitude_deg": "44.79175", + "longitude_deg": "-89.888706", + "elevation_ft": "1274", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Mosinee", + "scheduled_service": "no", + "gps_code": "WI53", + "local_code": "WI53" + }, + { + "id": "347693", + "ident": "US-5167", + "type": "closed", + "name": "Eagle Nest Airport", + "latitude_deg": "31.486832", + "longitude_deg": "-97.37279", + "elevation_ft": "651", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "McGregor", + "scheduled_service": "no" + }, + { + "id": "347700", + "ident": "US-5168", + "type": "small_airport", + "name": "Gregory Airport", + "latitude_deg": "45.629736", + "longitude_deg": "-93.174972", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Cambridge", + "scheduled_service": "no", + "gps_code": "02MN", + "local_code": "02MN", + "keywords": "https://www.airnav.com/airport/02MN" + }, + { + "id": "347702", + "ident": "US-5169", + "type": "seaplane_base", + "name": "Cutfoot Sioux Seaplane Base", + "latitude_deg": "47.516522", + "longitude_deg": "-94.086439", + "elevation_ft": "1297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Deer River", + "scheduled_service": "no", + "gps_code": "06MN", + "local_code": "06MN" + }, + { + "id": "347703", + "ident": "US-5170", + "type": "seaplane_base", + "name": "Cutfoot Sioux Seaplane Base", + "latitude_deg": "47.516522", + "longitude_deg": "-94.086439", + "elevation_ft": "1297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Deer River", + "scheduled_service": "no", + "gps_code": "06MN", + "local_code": "06MN" + }, + { + "id": "347708", + "ident": "US-5171", + "type": "heliport", + "name": "OhioHealth Ashland Health Center Heliport", + "latitude_deg": "40.860472", + "longitude_deg": "-82.277525", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "19OH", + "local_code": "19OH" + }, + { + "id": "347712", + "ident": "US-5172", + "type": "heliport", + "name": "Ross Landing Zone 1 Heliport", + "latitude_deg": "39.31093", + "longitude_deg": "-84.650173", + "elevation_ft": "543", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "1OH7", + "local_code": "1OH7" + }, + { + "id": "347713", + "ident": "US-5173", + "type": "heliport", + "name": "Ross Landing Zone 2 Heliport", + "latitude_deg": "39.38334", + "longitude_deg": "-84.654261", + "elevation_ft": "614", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Hamilton", + "scheduled_service": "no", + "gps_code": "1OI7", + "local_code": "1OI7" + }, + { + "id": "347714", + "ident": "US-5174", + "type": "small_airport", + "name": "Somers Lane Airport", + "latitude_deg": "43.143219", + "longitude_deg": "-84.606419", + "elevation_ft": "669", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Ashley", + "scheduled_service": "no", + "gps_code": "2MI3", + "local_code": "2MI3" + }, + { + "id": "347716", + "ident": "US-5175", + "type": "small_airport", + "name": "Hunninghake Aerial Airport", + "latitude_deg": "39.830583", + "longitude_deg": "-96.164858", + "elevation_ft": "1287", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Baileyville", + "scheduled_service": "no", + "gps_code": "3KS1", + "local_code": "3KS1" + }, + { + "id": "347718", + "ident": "US-5176", + "type": "small_airport", + "name": "Dudes Landing Airport", + "latitude_deg": "38.85918", + "longitude_deg": "-92.601271", + "elevation_ft": "796", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Prairie Home", + "scheduled_service": "no", + "gps_code": "40MO", + "local_code": "40MO" + }, + { + "id": "347719", + "ident": "US-5177", + "type": "heliport", + "name": "St Francis Regional Medical Center Heliport", + "latitude_deg": "44.772311", + "longitude_deg": "-93.503898", + "elevation_ft": "847", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Shakopee", + "scheduled_service": "no", + "gps_code": "41MN", + "local_code": "41MN" + }, + { + "id": "347720", + "ident": "US-5178", + "type": "small_airport", + "name": "Rhodes Airfield", + "latitude_deg": "37.184614", + "longitude_deg": "-96.886278", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Winfield", + "scheduled_service": "no", + "gps_code": "4KS4", + "local_code": "4KS4" + }, + { + "id": "347724", + "ident": "US-5179", + "type": "heliport", + "name": "Lehigh Valley Hospital/Muhlenberg Heliport", + "latitude_deg": "40.645556", + "longitude_deg": "-75.40725", + "elevation_ft": "372", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bethlehem", + "scheduled_service": "no", + "gps_code": "63PA", + "local_code": "63PA" + }, + { + "id": "347729", + "ident": "US-5180", + "type": "heliport", + "name": "Spencer Calahan Office Building Helipad", + "latitude_deg": "30.439883", + "longitude_deg": "-91.188114", + "elevation_ft": "86", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Baton Rouge", + "scheduled_service": "no", + "gps_code": "85LA", + "local_code": "85LA" + }, + { + "id": "347731", + "ident": "US-5181", + "type": "seaplane_base", + "name": "Serenity Seaplane Base", + "latitude_deg": "29.572889", + "longitude_deg": "-95.050561", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seabrook", + "scheduled_service": "no", + "gps_code": "95XS", + "local_code": "95XS" + }, + { + "id": "347734", + "ident": "US-5182", + "type": "small_airport", + "name": "Home Field", + "latitude_deg": "33.607911", + "longitude_deg": "-83.355257", + "elevation_ft": "488", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "GA65", + "local_code": "GA65" + }, + { + "id": "347735", + "ident": "US-5183", + "type": "heliport", + "name": "Jackson County Regional Health Center Heliport", + "latitude_deg": "42.046308", + "longitude_deg": "-90.656858", + "elevation_ft": "752", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Maquoketa", + "scheduled_service": "no", + "gps_code": "IA65", + "local_code": "IA65" + }, + { + "id": "347737", + "ident": "US-5184", + "type": "small_airport", + "name": "Slickpoo MX Park Airport", + "latitude_deg": "46.323533", + "longitude_deg": "-116.71345", + "elevation_ft": "1730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Slickpoo", + "scheduled_service": "no", + "gps_code": "ID45", + "local_code": "ID45" + }, + { + "id": "347739", + "ident": "US-5185", + "type": "small_airport", + "name": "Pearson Airstrip", + "latitude_deg": "44.068611", + "longitude_deg": "-120.803333", + "elevation_ft": "3900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Prineville", + "scheduled_service": "no", + "gps_code": "OR84", + "local_code": "OR84" + }, + { + "id": "347741", + "ident": "US-5186", + "type": "small_airport", + "name": "K2 Airport", + "latitude_deg": "45.752743", + "longitude_deg": "-119.383403", + "elevation_ft": "748", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Echo", + "scheduled_service": "no", + "gps_code": "OR92", + "local_code": "OR92" + }, + { + "id": "347750", + "ident": "US-5187", + "type": "small_airport", + "name": "Flying Tails Airport", + "latitude_deg": "33.306528", + "longitude_deg": "-79.948642", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Bonneau", + "scheduled_service": "no", + "gps_code": "SC05", + "local_code": "SC05" + }, + { + "id": "347751", + "ident": "US-5188", + "type": "small_airport", + "name": "Randys Airpark", + "latitude_deg": "30.642021", + "longitude_deg": "-97.520035", + "elevation_ft": "602", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Georgetown", + "scheduled_service": "no", + "gps_code": "TA68", + "local_code": "TA68" + }, + { + "id": "347752", + "ident": "US-5189", + "type": "heliport", + "name": "Quality Care ER Heliport", + "latitude_deg": "33.089336", + "longitude_deg": "-96.126506", + "elevation_ft": "547", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "XA35", + "local_code": "XA35" + }, + { + "id": "347773", + "ident": "US-5190", + "type": "closed", + "name": "Karnes City Airport", + "latitude_deg": "28.8752", + "longitude_deg": "-97.91282", + "elevation_ft": "459", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Karnes City", + "scheduled_service": "no" + }, + { + "id": "347818", + "ident": "US-5191", + "type": "closed", + "name": "Ben Bolt East Airport", + "latitude_deg": "27.65033", + "longitude_deg": "-98.04372", + "elevation_ft": "183", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alice", + "scheduled_service": "no" + }, + { + "id": "347833", + "ident": "US-5192", + "type": "heliport", + "name": "Greentree Heliport", + "latitude_deg": "41.38917", + "longitude_deg": "-74.24993", + "elevation_ft": "452", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Chester", + "scheduled_service": "no" + }, + { + "id": "347837", + "ident": "US-5193", + "type": "heliport", + "name": "South Shore University Hospital Heliport", + "latitude_deg": "40.72624", + "longitude_deg": "-73.24258", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Bay Shore", + "scheduled_service": "no" + }, + { + "id": "347839", + "ident": "US-5194", + "type": "closed", + "name": "Toms Point Seaplane Base", + "latitude_deg": "40.83523", + "longitude_deg": "-73.71105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Port Washington", + "scheduled_service": "no" + }, + { + "id": "347840", + "ident": "US-5195", + "type": "closed", + "name": "Mitchel Field", + "latitude_deg": "40.72701", + "longitude_deg": "-73.59518", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Uniondale", + "scheduled_service": "no" + }, + { + "id": "347841", + "ident": "US-5196", + "type": "heliport", + "name": "Captains Cove Seaport Heliport", + "latitude_deg": "41.15895", + "longitude_deg": "-73.21371", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Bridgeport", + "scheduled_service": "no" + }, + { + "id": "347842", + "ident": "US-5197", + "type": "heliport", + "name": "Stamford Hospital Heliport", + "latitude_deg": "41.05428", + "longitude_deg": "-73.55211", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Stamford", + "scheduled_service": "no" + }, + { + "id": "347843", + "ident": "US-5198", + "type": "small_airport", + "name": "Johnson Landing Strip", + "latitude_deg": "41.819096", + "longitude_deg": "-73.64321", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Millbrook", + "scheduled_service": "no", + "gps_code": "11NY", + "local_code": "11NY" + }, + { + "id": "347859", + "ident": "US-5199", + "type": "closed", + "name": "Regency Heliport", + "latitude_deg": "39.77275", + "longitude_deg": "-104.99245", + "elevation_ft": "5194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no" + }, + { + "id": "347860", + "ident": "US-5200", + "type": "heliport", + "name": "Valley View Hospital Heliport", + "latitude_deg": "39.533063", + "longitude_deg": "-107.322448", + "elevation_ft": "5855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Glenwood Springs", + "scheduled_service": "no", + "gps_code": "60CO", + "local_code": "60CO" + }, + { + "id": "347861", + "ident": "US-5201", + "type": "heliport", + "name": "Fort Belvoir Community Hospital Heliport", + "latitude_deg": "38.70663", + "longitude_deg": "-77.14495", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fort Belvoir", + "scheduled_service": "no", + "local_code": "VG93" + }, + { + "id": "347862", + "ident": "US-5202", + "type": "heliport", + "name": "North Suburban Medical Center Heliport", + "latitude_deg": "39.92766", + "longitude_deg": "-104.92268", + "elevation_ft": "5174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Thornton", + "scheduled_service": "no" + }, + { + "id": "347863", + "ident": "US-5203", + "type": "heliport", + "name": "St Thomas More Hospital Heliport", + "latitude_deg": "38.45548", + "longitude_deg": "-105.23148", + "elevation_ft": "5361", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Canon City", + "scheduled_service": "no" + }, + { + "id": "347869", + "ident": "US-5204", + "type": "small_airport", + "name": "Pettigrew Ranch Airport", + "latitude_deg": "34.91912", + "longitude_deg": "-104.17107", + "elevation_ft": "4832", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Santa Rosa", + "scheduled_service": "no" + }, + { + "id": "347870", + "ident": "US-5205", + "type": "small_airport", + "name": "Jensen Road Airport", + "latitude_deg": "46.91785", + "longitude_deg": "-122.3136", + "elevation_ft": "641", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Eatonville", + "scheduled_service": "no" + }, + { + "id": "347871", + "ident": "US-5206", + "type": "small_airport", + "name": "Asplund Field", + "latitude_deg": "46.89221", + "longitude_deg": "-122.38145", + "elevation_ft": "774", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Eatonville", + "scheduled_service": "no" + }, + { + "id": "347872", + "ident": "US-5207", + "type": "small_airport", + "name": "Woolf Hollow Airport", + "latitude_deg": "39.56481", + "longitude_deg": "-111.38121", + "elevation_ft": "7297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Mount Pleasant", + "scheduled_service": "no" + }, + { + "id": "347873", + "ident": "US-5208", + "type": "heliport", + "name": "Allina Hospital & Clinic Owatonna Heliport", + "latitude_deg": "44.111443", + "longitude_deg": "-93.252007", + "elevation_ft": "1162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Owatonna", + "scheduled_service": "no", + "gps_code": "MN38", + "local_code": "MN38" + }, + { + "id": "347874", + "ident": "US-5209", + "type": "heliport", + "name": "Emerson Hospital Heliport", + "latitude_deg": "42.45119", + "longitude_deg": "-71.37487", + "elevation_ft": "121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Concord", + "scheduled_service": "no" + }, + { + "id": "347875", + "ident": "US-5210", + "type": "closed", + "name": "Millipore Heliport", + "latitude_deg": "42.48369", + "longitude_deg": "-71.27075", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Bedford", + "scheduled_service": "no" + }, + { + "id": "347881", + "ident": "US-5211", + "type": "small_airport", + "name": "Mach 1 Jet Port Airport", + "latitude_deg": "32.450354", + "longitude_deg": "-89.905586", + "elevation_ft": "377", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Brandon", + "scheduled_service": "no", + "gps_code": "MS20", + "local_code": "MS20" + }, + { + "id": "347884", + "ident": "US-5212", + "type": "small_airport", + "name": "McGuire Airfield", + "latitude_deg": "37.399687", + "longitude_deg": "-94.209738", + "elevation_ft": "989", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Golden City", + "scheduled_service": "no", + "gps_code": "7MO7", + "local_code": "7MO7" + }, + { + "id": "347916", + "ident": "US-5213", + "type": "small_airport", + "name": "Ratcliff Ranch Airport", + "latitude_deg": "36.724167", + "longitude_deg": "-95.341968", + "elevation_ft": "902", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Vinita", + "scheduled_service": "no", + "gps_code": "2OK6", + "local_code": "2OK6" + }, + { + "id": "347919", + "ident": "US-5214", + "type": "heliport", + "name": "Big Creek Ranch Heliport", + "latitude_deg": "36.857107", + "longitude_deg": "-95.472972", + "elevation_ft": "853", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lenapah", + "scheduled_service": "no", + "gps_code": "OK44", + "local_code": "OK44" + }, + { + "id": "347926", + "ident": "US-5215", + "type": "small_airport", + "name": "Taildragger Acres Airport", + "latitude_deg": "39.490612", + "longitude_deg": "-75.433298", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "24NJ", + "local_code": "24NJ" + }, + { + "id": "347951", + "ident": "US-5216", + "type": "heliport", + "name": "Little Colorado Medical Center Heliport", + "latitude_deg": "35.03611", + "longitude_deg": "-110.6927", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Winslow", + "scheduled_service": "no" + }, + { + "id": "347952", + "ident": "US-5217", + "type": "heliport", + "name": "Winslow Indian Healthcare Center Heliport", + "latitude_deg": "35.03491", + "longitude_deg": "-110.71525", + "elevation_ft": "6882", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Winslow", + "scheduled_service": "no" + }, + { + "id": "347953", + "ident": "US-5218", + "type": "heliport", + "name": "Varnell Heliport", + "latitude_deg": "30.23429", + "longitude_deg": "-98.17122", + "elevation_ft": "1253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dripping Springs", + "scheduled_service": "no", + "local_code": "74TA" + }, + { + "id": "347954", + "ident": "US-5219", + "type": "heliport", + "name": "Rehoboth McKinley Hospital Heliport", + "latitude_deg": "35.5073", + "longitude_deg": "-108.72515", + "elevation_ft": "6788", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Gallup", + "scheduled_service": "no" + }, + { + "id": "347956", + "ident": "US-5220", + "type": "small_airport", + "name": "Red Horse Wash Airport", + "latitude_deg": "35.83381", + "longitude_deg": "-111.88364", + "elevation_ft": "6754", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Williams", + "scheduled_service": "no" + }, + { + "id": "347957", + "ident": "US-5221", + "type": "heliport", + "name": "Bar 4 Heliport", + "latitude_deg": "36.12176", + "longitude_deg": "-112.69365", + "elevation_ft": "5742", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Supai", + "scheduled_service": "no" + }, + { + "id": "347958", + "ident": "US-5222", + "type": "heliport", + "name": "Hualapai Hilltop Heliport", + "latitude_deg": "36.15742", + "longitude_deg": "-112.71007", + "elevation_ft": "5144", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Supai", + "scheduled_service": "no" + }, + { + "id": "347959", + "ident": "US-5223", + "type": "closed", + "name": "Supai Construction Heliport", + "latitude_deg": "36.22802", + "longitude_deg": "-112.71646", + "elevation_ft": "5577", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Supai", + "scheduled_service": "no" + }, + { + "id": "347960", + "ident": "US-5224", + "type": "heliport", + "name": "Havasupai Village Heliport", + "latitude_deg": "36.23619", + "longitude_deg": "-112.68866", + "elevation_ft": "3192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Supai", + "scheduled_service": "no" + }, + { + "id": "347962", + "ident": "US-5225", + "type": "small_airport", + "name": "Dixie Farm Service Airport", + "latitude_deg": "33.1067", + "longitude_deg": "-93.73326", + "elevation_ft": "209", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Bradley", + "scheduled_service": "no", + "keywords": "Gin City" + }, + { + "id": "347967", + "ident": "US-5226", + "type": "heliport", + "name": "UPMC Lititz Heliport", + "latitude_deg": "40.133044", + "longitude_deg": "-76.31081", + "elevation_ft": "419", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lititz", + "scheduled_service": "no", + "gps_code": "3PA1", + "local_code": "3PA1" + }, + { + "id": "347974", + "ident": "US-5227", + "type": "heliport", + "name": "Gateway Medical Center Heliport", + "latitude_deg": "36.580587", + "longitude_deg": "-87.269366", + "elevation_ft": "516", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Clarksville", + "scheduled_service": "no", + "gps_code": "TN93", + "local_code": "TN93", + "keywords": "Tennnova Healthcare" + }, + { + "id": "347975", + "ident": "US-5228", + "type": "small_airport", + "name": "Judkins Airport", + "latitude_deg": "43.93186", + "longitude_deg": "-111.1438", + "elevation_ft": "6060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Felt", + "scheduled_service": "no" + }, + { + "id": "347976", + "ident": "US-5229", + "type": "heliport", + "name": "Peppermint Heliport", + "latitude_deg": "36.07365", + "longitude_deg": "-118.54167", + "elevation_ft": "7382", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Springville", + "scheduled_service": "no" + }, + { + "id": "347977", + "ident": "US-5230", + "type": "closed", + "name": "Fawcett Ranch Airport", + "latitude_deg": "30.01529", + "longitude_deg": "-100.92343", + "elevation_ft": "1749", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no" + }, + { + "id": "347978", + "ident": "US-5231", + "type": "closed", + "name": "Dolan Creek Airport", + "latitude_deg": "29.9428", + "longitude_deg": "-100.96065", + "elevation_ft": "1597", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no" + }, + { + "id": "347979", + "ident": "US-5232", + "type": "small_airport", + "name": "High Lonesome Ranch Airport", + "latitude_deg": "30.10269", + "longitude_deg": "-100.97947", + "elevation_ft": "2098", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no" + }, + { + "id": "347981", + "ident": "US-5233", + "type": "closed", + "name": "Twomile Ranch Airport", + "latitude_deg": "30.15975", + "longitude_deg": "-101.03487", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no" + }, + { + "id": "347983", + "ident": "US-5234", + "type": "closed", + "name": "Brunswick Municipal Airport", + "latitude_deg": "31.18565", + "longitude_deg": "-81.48103", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Brunswick", + "scheduled_service": "no" + }, + { + "id": "347984", + "ident": "US-5235", + "type": "small_airport", + "name": "Kingsley Private Airport", + "latitude_deg": "37.44043", + "longitude_deg": "-94.30852", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lamar", + "scheduled_service": "no" + }, + { + "id": "347985", + "ident": "US-5236", + "type": "closed", + "name": "Olam Airport", + "latitude_deg": "32.09184", + "longitude_deg": "-98.41613", + "elevation_ft": "1435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dublin", + "scheduled_service": "no" + }, + { + "id": "347986", + "ident": "US-5237", + "type": "closed", + "name": "Jones Tanks Airport", + "latitude_deg": "29.80478", + "longitude_deg": "-102.82844", + "elevation_ft": "2789", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no" + }, + { + "id": "347987", + "ident": "US-5238", + "type": "small_airport", + "name": "Sosa Peak Airport", + "latitude_deg": "29.87758", + "longitude_deg": "-103.2495", + "elevation_ft": "3284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no" + }, + { + "id": "347988", + "ident": "US-5239", + "type": "closed", + "name": "Spring Creek Ranch Airport", + "latitude_deg": "29.89522", + "longitude_deg": "-103.25229", + "elevation_ft": "3273", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no" + }, + { + "id": "347989", + "ident": "US-5240", + "type": "closed", + "name": "Reynolds Creek Ranch Airport", + "latitude_deg": "29.9859", + "longitude_deg": "-103.28172", + "elevation_ft": "3480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no" + }, + { + "id": "347991", + "ident": "US-5241", + "type": "small_airport", + "name": "Adams Ranch Airport", + "latitude_deg": "29.40709", + "longitude_deg": "-102.83871", + "elevation_ft": "1768", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Terlingua", + "scheduled_service": "no" + }, + { + "id": "347997", + "ident": "US-5242", + "type": "closed", + "name": "Mentone Airport", + "latitude_deg": "31.71004", + "longitude_deg": "-103.5975", + "elevation_ft": "2684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mentone", + "scheduled_service": "no" + }, + { + "id": "347998", + "ident": "US-5243", + "type": "closed", + "name": "Eunice Airport", + "latitude_deg": "32.45987", + "longitude_deg": "-103.24142", + "elevation_ft": "3569", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Eunice", + "scheduled_service": "no", + "keywords": "Lea County-Eunice" + }, + { + "id": "347999", + "ident": "US-5244", + "type": "small_airport", + "name": "Continental Ranch Airport", + "latitude_deg": "30.34981", + "longitude_deg": "-102.06171", + "elevation_ft": "2419", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanderson", + "scheduled_service": "no" + }, + { + "id": "348000", + "ident": "US-5245", + "type": "small_airport", + "name": "Dry Creek Airport", + "latitude_deg": "30.19867", + "longitude_deg": "-102.91354", + "elevation_ft": "4321", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no" + }, + { + "id": "348001", + "ident": "US-5246", + "type": "small_airport", + "name": "Bullis Gap Ranch Airport", + "latitude_deg": "29.82028", + "longitude_deg": "-102.59868", + "elevation_ft": "2559", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no" + }, + { + "id": "348002", + "ident": "US-5247", + "type": "small_airport", + "name": "San Francisco Creek Ranch Airport", + "latitude_deg": "29.88892", + "longitude_deg": "-102.53196", + "elevation_ft": "2098", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no" + }, + { + "id": "348003", + "ident": "US-5248", + "type": "small_airport", + "name": "Keese Canyon Airport", + "latitude_deg": "32.52184", + "longitude_deg": "-108.38236", + "elevation_ft": "5991", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Silver City", + "scheduled_service": "no" + }, + { + "id": "348004", + "ident": "US-5249", + "type": "closed", + "name": "White Signal Airport", + "latitude_deg": "32.55395", + "longitude_deg": "-108.33547", + "elevation_ft": "5883", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Silver City", + "scheduled_service": "no" + }, + { + "id": "348005", + "ident": "US-5250", + "type": "heliport", + "name": "Sierra National Forest Huntington Heliport", + "latitude_deg": "37.2427", + "longitude_deg": "-119.16603", + "elevation_ft": "7247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lakeshore", + "scheduled_service": "no" + }, + { + "id": "348006", + "ident": "US-5251", + "type": "heliport", + "name": "White Bark Helipad at Kaiser Pass", + "latitude_deg": "37.29333", + "longitude_deg": "-119.08992", + "elevation_ft": "9554", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lakeshore", + "scheduled_service": "no" + }, + { + "id": "348007", + "ident": "US-5252", + "type": "closed", + "name": "Dora Airport", + "latitude_deg": "33.93954", + "longitude_deg": "-103.33184", + "elevation_ft": "4287", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Portales", + "scheduled_service": "no" + }, + { + "id": "348008", + "ident": "US-5253", + "type": "closed", + "name": "Sullivan Bridge Airport", + "latitude_deg": "31.48455", + "longitude_deg": "-103.48069", + "elevation_ft": "2585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pecos", + "scheduled_service": "no" + }, + { + "id": "348009", + "ident": "US-5254", + "type": "closed", + "name": "Looney Ranch Airport", + "latitude_deg": "31.42412", + "longitude_deg": "-104.46407", + "elevation_ft": "4287", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Van Horn", + "scheduled_service": "no" + }, + { + "id": "348010", + "ident": "US-5255", + "type": "closed", + "name": "Paudler Airfield", + "latitude_deg": "33.65336", + "longitude_deg": "-101.2123", + "elevation_ft": "3009", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crosbyton", + "scheduled_service": "no" + }, + { + "id": "348011", + "ident": "US-5256", + "type": "closed", + "name": "Crosbyton West Airport", + "latitude_deg": "33.6472", + "longitude_deg": "-101.25867", + "elevation_ft": "3019", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crosbyton", + "scheduled_service": "no" + }, + { + "id": "348012", + "ident": "US-5257", + "type": "small_airport", + "name": "Ralls Airport", + "latitude_deg": "33.67103", + "longitude_deg": "-101.35432", + "elevation_ft": "3091", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ralls", + "scheduled_service": "no" + }, + { + "id": "348013", + "ident": "US-5258", + "type": "closed", + "name": "Mustang Stagefield Army Heliport", + "latitude_deg": "32.9385", + "longitude_deg": "-98.02809", + "elevation_ft": "1096", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no" + }, + { + "id": "348014", + "ident": "US-5259", + "type": "closed", + "name": "Beula Strip", + "latitude_deg": "32.93932", + "longitude_deg": "-98.03039", + "elevation_ft": "1099", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no" + }, + { + "id": "348015", + "ident": "US-5260", + "type": "closed", + "name": "Midkiff Gas Plant Airport", + "latitude_deg": "31.639682", + "longitude_deg": "-101.763096", + "elevation_ft": "2720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Midkiff", + "scheduled_service": "no" + }, + { + "id": "348016", + "ident": "US-5261", + "type": "closed", + "name": "Crossroads Airport", + "latitude_deg": "31.65021", + "longitude_deg": "-101.63624", + "elevation_ft": "2680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garden City", + "scheduled_service": "no" + }, + { + "id": "348017", + "ident": "US-5262", + "type": "closed", + "name": "Stanton South Airport", + "latitude_deg": "32.12264", + "longitude_deg": "-101.7961", + "elevation_ft": "2679", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Stanton", + "scheduled_service": "no" + }, + { + "id": "348018", + "ident": "US-5263", + "type": "closed", + "name": "Scheihing Airport", + "latitude_deg": "35.86769", + "longitude_deg": "-97.47392", + "elevation_ft": "1088", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Guthrie", + "scheduled_service": "no" + }, + { + "id": "348019", + "ident": "US-5264", + "type": "closed", + "name": "Bayless Ranch Airport", + "latitude_deg": "32.3921", + "longitude_deg": "-110.45338", + "elevation_ft": "2999", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Benson", + "scheduled_service": "no" + }, + { + "id": "348020", + "ident": "US-5265", + "type": "closed", + "name": "Cascabel Airport", + "latitude_deg": "32.29561", + "longitude_deg": "-110.37762", + "elevation_ft": "3268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Benson", + "scheduled_service": "no" + }, + { + "id": "348021", + "ident": "US-5266", + "type": "small_airport", + "name": "Aeroview Airport", + "latitude_deg": "41.97105", + "longitude_deg": "-88.49246", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Virgil", + "scheduled_service": "no" + }, + { + "id": "348023", + "ident": "US-5267", + "type": "closed", + "name": "Willie Jones Airport", + "latitude_deg": "30.90194", + "longitude_deg": "-87.17401", + "elevation_ft": "205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jay", + "scheduled_service": "no" + }, + { + "id": "348024", + "ident": "US-5268", + "type": "closed", + "name": "Douglas Odoms Flying Service Airport", + "latitude_deg": "30.88797", + "longitude_deg": "-87.22324", + "elevation_ft": "252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jay", + "scheduled_service": "no" + }, + { + "id": "348025", + "ident": "US-5269", + "type": "heliport", + "name": "Charlotte Motor Speedway Heliport", + "latitude_deg": "35.35465", + "longitude_deg": "-80.68347", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Charlotte", + "scheduled_service": "no" + }, + { + "id": "348027", + "ident": "US-5270", + "type": "heliport", + "name": "Atrium Health Kings Mountain Heliport", + "latitude_deg": "35.24193", + "longitude_deg": "-81.35713", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Kings Mountain", + "scheduled_service": "no" + }, + { + "id": "348028", + "ident": "US-5271", + "type": "closed", + "name": "Magnetic Laboratories Airport", + "latitude_deg": "41.76822", + "longitude_deg": "-75.709", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Kingsley", + "scheduled_service": "no" + }, + { + "id": "348029", + "ident": "US-5272", + "type": "heliport", + "name": "Saint Bernard Heliport", + "latitude_deg": "29.8226", + "longitude_deg": "-89.60891", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Saint Bernard", + "scheduled_service": "no" + }, + { + "id": "348030", + "ident": "US-5273", + "type": "heliport", + "name": "South Cameron Memorial Hospital Heliport", + "latitude_deg": "29.80835", + "longitude_deg": "-93.16628", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cameron", + "scheduled_service": "no" + }, + { + "id": "348031", + "ident": "US-5274", + "type": "heliport", + "name": "Jackson County Memorial Hospital Heliport", + "latitude_deg": "34.63622", + "longitude_deg": "-99.3181", + "elevation_ft": "1378", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Altus", + "scheduled_service": "no" + }, + { + "id": "348032", + "ident": "US-5275", + "type": "heliport", + "name": "Methodist Hospitals Southlake Campus Heliport", + "latitude_deg": "41.45755", + "longitude_deg": "-87.32969", + "elevation_ft": "702", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Merrillville", + "scheduled_service": "no" + }, + { + "id": "348033", + "ident": "US-5276", + "type": "closed", + "name": "Agency Draw Oil Field Airport", + "latitude_deg": "39.69044", + "longitude_deg": "-109.58889", + "elevation_ft": "6152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Randlett", + "scheduled_service": "no" + }, + { + "id": "348034", + "ident": "US-5277", + "type": "small_airport", + "name": "Altamont Airport", + "latitude_deg": "40.36534", + "longitude_deg": "-110.26589", + "elevation_ft": "6369", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Altamont", + "scheduled_service": "no", + "keywords": "LC Ranch" + }, + { + "id": "348035", + "ident": "US-5278", + "type": "closed", + "name": "Antelope Mountain Airport", + "latitude_deg": "39.31929", + "longitude_deg": "-113.28382", + "elevation_ft": "6080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Delta", + "scheduled_service": "no" + }, + { + "id": "348036", + "ident": "US-5279", + "type": "small_airport", + "name": "Below Buckacre Airstrip", + "latitude_deg": "38.08803", + "longitude_deg": "-110.36443", + "elevation_ft": "4582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "348038", + "ident": "US-5280", + "type": "small_airport", + "name": "Big Flat Airport", + "latitude_deg": "38.54759", + "longitude_deg": "-109.76407", + "elevation_ft": "6144", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Moab", + "scheduled_service": "no" + }, + { + "id": "348039", + "ident": "US-5281", + "type": "closed", + "name": "Black Ledge Airstrip", + "latitude_deg": "38.188787", + "longitude_deg": "-110.122862", + "elevation_ft": "5710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Monticello", + "scheduled_service": "no" + }, + { + "id": "348040", + "ident": "US-5282", + "type": "closed", + "name": "Blue Hogan Wash Airstrip", + "latitude_deg": "37.2342", + "longitude_deg": "-109.3468", + "elevation_ft": "4606", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Montezuma Creek", + "scheduled_service": "no" + }, + { + "id": "348041", + "ident": "US-5283", + "type": "small_airport", + "name": "Bonneville Salt Flats", + "latitude_deg": "40.7952", + "longitude_deg": "-113.8117", + "elevation_ft": "4219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Wendover", + "scheduled_service": "no", + "home_link": "https://utahbackcountrypilots.org/airstrips/BONNEVILLESALTFLATS" + }, + { + "id": "348042", + "ident": "US-5284", + "type": "small_airport", + "name": "Boundary Butte Mesa Airport", + "latitude_deg": "37.0287", + "longitude_deg": "-109.4612", + "elevation_ft": "5472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Bluff", + "scheduled_service": "no" + }, + { + "id": "348043", + "ident": "US-5285", + "type": "small_airport", + "name": "Broom Mountain Airport", + "latitude_deg": "41.346", + "longitude_deg": "-113.1475", + "elevation_ft": "4616", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Wendover", + "scheduled_service": "no" + }, + { + "id": "348044", + "ident": "US-5286", + "type": "small_airport", + "name": "Lakeside Airstrip", + "latitude_deg": "41.2132", + "longitude_deg": "-112.91327", + "elevation_ft": "4213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Oasis", + "scheduled_service": "no" + }, + { + "id": "348045", + "ident": "US-5287", + "type": "small_airport", + "name": "Utah Test and Training Range Airport", + "latitude_deg": "41.11216", + "longitude_deg": "-112.97863", + "elevation_ft": "4242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Oasis", + "scheduled_service": "no" + }, + { + "id": "348046", + "ident": "US-5288", + "type": "heliport", + "name": "Utah Test and Training Range Heliport", + "latitude_deg": "41.05732", + "longitude_deg": "-112.92267", + "elevation_ft": "4452", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Oasis", + "scheduled_service": "no" + }, + { + "id": "348047", + "ident": "US-5289", + "type": "heliport", + "name": "Oasis Heliport", + "latitude_deg": "41.04809", + "longitude_deg": "-112.93924", + "elevation_ft": "4449", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Oasis", + "scheduled_service": "no" + }, + { + "id": "348048", + "ident": "US-5290", + "type": "small_airport", + "name": "Browns Rim Airstrip", + "latitude_deg": "37.8564", + "longitude_deg": "-110.29779", + "elevation_ft": "4884", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no" + }, + { + "id": "348055", + "ident": "US-5291", + "type": "small_airport", + "name": "Brush Creek Airstrip", + "latitude_deg": "40.6025", + "longitude_deg": "-109.5072", + "elevation_ft": "6241", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Vernal", + "scheduled_service": "no" + }, + { + "id": "348056", + "ident": "US-5292", + "type": "small_airport", + "name": "Butler Wash at Poison Spring Canyon Airstrip", + "latitude_deg": "38.138134", + "longitude_deg": "-110.588822", + "elevation_ft": "4945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "348057", + "ident": "US-5293", + "type": "closed", + "name": "Cajon Mesa Airstrip", + "latitude_deg": "37.3222", + "longitude_deg": "-109.1447", + "elevation_ft": "5300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Montezuma Creek", + "scheduled_service": "no" + }, + { + "id": "348058", + "ident": "US-5294", + "type": "closed", + "name": "Callao Airstrip", + "latitude_deg": "39.8984", + "longitude_deg": "-113.6923", + "elevation_ft": "4326", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Wendover", + "scheduled_service": "no" + }, + { + "id": "348059", + "ident": "US-5295", + "type": "small_airport", + "name": "Carberry Airport", + "latitude_deg": "40.44092", + "longitude_deg": "-112.36721", + "elevation_ft": "5077", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Stockton", + "scheduled_service": "no" + }, + { + "id": "348060", + "ident": "US-5296", + "type": "closed", + "name": "Castle Creek Airstrip", + "latitude_deg": "37.3995", + "longitude_deg": "-110.4713", + "elevation_ft": "5290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Halls Crossing", + "scheduled_service": "no" + }, + { + "id": "348061", + "ident": "US-5297", + "type": "small_airport", + "name": "Cave Flat Airstrip", + "latitude_deg": "37.9363", + "longitude_deg": "-110.8935", + "elevation_ft": "5961", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Torrey", + "scheduled_service": "no" + }, + { + "id": "348062", + "ident": "US-5298", + "type": "small_airport", + "name": "Cedar Camp Airstrip", + "latitude_deg": "39.4252", + "longitude_deg": "-109.4935", + "elevation_ft": "7392", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Thompson Springs", + "scheduled_service": "no" + }, + { + "id": "348063", + "ident": "US-5299", + "type": "small_airport", + "name": "Chandler Canyon Airstrip", + "latitude_deg": "39.46727", + "longitude_deg": "-110.02273", + "elevation_ft": "4390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Sunnyside", + "scheduled_service": "no" + }, + { + "id": "348064", + "ident": "US-5300", + "type": "small_airport", + "name": "Cisco Airport", + "latitude_deg": "38.96561", + "longitude_deg": "-109.32301", + "elevation_ft": "4396", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Cisco", + "scheduled_service": "no" + }, + { + "id": "348065", + "ident": "US-5301", + "type": "small_airport", + "name": "Clay Hills Crossing Airstrip", + "latitude_deg": "37.317", + "longitude_deg": "-110.3674", + "elevation_ft": "3971", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no" + }, + { + "id": "348066", + "ident": "US-5302", + "type": "closed", + "name": "Confluence Airstrip", + "latitude_deg": "38.222", + "longitude_deg": "-109.88446", + "elevation_ft": "4856", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Moab", + "scheduled_service": "no" + }, + { + "id": "348067", + "ident": "US-5303", + "type": "closed", + "name": "Cove Canyon Airstrip", + "latitude_deg": "37.9442", + "longitude_deg": "-110.2505", + "elevation_ft": "5285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no" + }, + { + "id": "348068", + "ident": "US-5304", + "type": "small_airport", + "name": "Dark Canyon North Airstrip", + "latitude_deg": "37.8959", + "longitude_deg": "-110.089", + "elevation_ft": "6709", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Monticello", + "scheduled_service": "no" + }, + { + "id": "348069", + "ident": "US-5305", + "type": "closed", + "name": "Dark Canyon South Airstrip", + "latitude_deg": "37.8242", + "longitude_deg": "-110.0901", + "elevation_ft": "6847", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Monticello", + "scheduled_service": "no" + }, + { + "id": "348070", + "ident": "US-5306", + "type": "small_airport", + "name": "Deer Flat Airport", + "latitude_deg": "37.6654", + "longitude_deg": "-110.0271", + "elevation_ft": "7398", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no" + }, + { + "id": "348071", + "ident": "US-5307", + "type": "small_airport", + "name": "Doe Canyon Airport", + "latitude_deg": "38.3412", + "longitude_deg": "-109.1772", + "elevation_ft": "7500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "La Sal", + "scheduled_service": "no" + }, + { + "id": "348072", + "ident": "US-5308", + "type": "closed", + "name": "Drum Mountain Airport", + "latitude_deg": "39.62459", + "longitude_deg": "-113.20704", + "elevation_ft": "4847", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Delta", + "scheduled_service": "no", + "keywords": "Weis" + }, + { + "id": "348073", + "ident": "US-5309", + "type": "small_airport", + "name": "Eagle City Airstrip", + "latitude_deg": "38.0831", + "longitude_deg": "-110.6961", + "elevation_ft": "6312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no", + "keywords": "Eagle Benches South" + }, + { + "id": "348074", + "ident": "US-5310", + "type": "small_airport", + "name": "East Bench Airport", + "latitude_deg": "39.92163", + "longitude_deg": "-109.4551", + "elevation_ft": "5488", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Jensen", + "scheduled_service": "no" + }, + { + "id": "348075", + "ident": "US-5311", + "type": "small_airport", + "name": "East Mountain Airstrip", + "latitude_deg": "39.3478", + "longitude_deg": "-111.1697", + "elevation_ft": "9683", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Orangeville", + "scheduled_service": "no" + }, + { + "id": "348076", + "ident": "US-5312", + "type": "small_airport", + "name": "East Seep Canyon Airstrip", + "latitude_deg": "39.78856", + "longitude_deg": "-109.20584", + "elevation_ft": "6201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Jensen", + "scheduled_service": "no" + }, + { + "id": "348077", + "ident": "US-5313", + "type": "closed", + "name": "Elaterite Basin Airstrip", + "latitude_deg": "38.2262", + "longitude_deg": "-110.05792", + "elevation_ft": "5207", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Monticello", + "scheduled_service": "no" + }, + { + "id": "348078", + "ident": "US-5314", + "type": "small_airport", + "name": "Energy Airport", + "latitude_deg": "38.2416", + "longitude_deg": "-110.66", + "elevation_ft": "4831", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "348079", + "ident": "US-5315", + "type": "small_airport", + "name": "Escalante Mountain Airstrip", + "latitude_deg": "37.5323", + "longitude_deg": "-111.7063", + "elevation_ft": "7493", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Escalante", + "scheduled_service": "no" + }, + { + "id": "348080", + "ident": "US-5316", + "type": "closed", + "name": "Fish Springs Airport", + "latitude_deg": "39.836", + "longitude_deg": "-113.3961", + "elevation_ft": "4341", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Dugway", + "scheduled_service": "no" + }, + { + "id": "348081", + "ident": "US-5317", + "type": "closed", + "name": "Flint Flat Airstrip", + "latitude_deg": "38.12676", + "longitude_deg": "-110.13673", + "elevation_ft": "6844", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Monticello", + "scheduled_service": "no" + }, + { + "id": "348082", + "ident": "US-5318", + "type": "small_airport", + "name": "Fremont Island Lower Airstrip", + "latitude_deg": "41.1757", + "longitude_deg": "-112.3808", + "elevation_ft": "4233", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hooper", + "scheduled_service": "no" + }, + { + "id": "348083", + "ident": "US-5319", + "type": "small_airport", + "name": "Fremont Island Upper Airstrip", + "latitude_deg": "41.16", + "longitude_deg": "-112.3333", + "elevation_ft": "4667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hooper", + "scheduled_service": "no" + }, + { + "id": "348084", + "ident": "US-5320", + "type": "small_airport", + "name": "Gold Creek / Shootering Airstrip", + "latitude_deg": "37.87469", + "longitude_deg": "-110.62444", + "elevation_ft": "5968", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no" + }, + { + "id": "348085", + "ident": "US-5321", + "type": "closed", + "name": "Gordon Flats Airport", + "latitude_deg": "38.1762", + "longitude_deg": "-110.1537", + "elevation_ft": "6522", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Monticello", + "scheduled_service": "no" + }, + { + "id": "348086", + "ident": "US-5322", + "type": "small_airport", + "name": "Guilder Peak Airport", + "latitude_deg": "41.2343", + "longitude_deg": "-111.55284", + "elevation_ft": "8190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Morgan", + "scheduled_service": "no" + }, + { + "id": "348087", + "ident": "US-5323", + "type": "closed", + "name": "Halfway Bench Airstrip", + "latitude_deg": "38.242", + "longitude_deg": "-110.6505", + "elevation_ft": "4803", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "348088", + "ident": "US-5324", + "type": "closed", + "name": "Hammond Airstrip", + "latitude_deg": "37.6843", + "longitude_deg": "-109.7732", + "elevation_ft": "8160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Blanding", + "scheduled_service": "no" + }, + { + "id": "348089", + "ident": "US-5325", + "type": "small_airport", + "name": "Hatch Airport", + "latitude_deg": "37.64946", + "longitude_deg": "-112.41839", + "elevation_ft": "7026", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hatch", + "scheduled_service": "no" + }, + { + "id": "348090", + "ident": "US-5326", + "type": "closed", + "name": "High Spur Airstrip", + "latitude_deg": "38.3974", + "longitude_deg": "-110.1341", + "elevation_ft": "6030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "348091", + "ident": "US-5327", + "type": "closed", + "name": "Hole-in-the-Rock Airstrip", + "latitude_deg": "37.2668", + "longitude_deg": "-110.9362", + "elevation_ft": "4501", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Escalante", + "scheduled_service": "no" + }, + { + "id": "348092", + "ident": "US-5328", + "type": "closed", + "name": "Horse Canyon Airstrip", + "latitude_deg": "38.2733", + "longitude_deg": "-109.9797", + "elevation_ft": "5000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Monticello", + "scheduled_service": "no" + }, + { + "id": "348093", + "ident": "US-5329", + "type": "small_airport", + "name": "Horseshoe Canyon Airstrip", + "latitude_deg": "38.516317", + "longitude_deg": "-110.103606", + "elevation_ft": "5210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "348094", + "ident": "US-5330", + "type": "closed", + "name": "Keg Knoll Airstrip", + "latitude_deg": "38.5675", + "longitude_deg": "-110.1005", + "elevation_ft": "5243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "348095", + "ident": "US-5331", + "type": "small_airport", + "name": "Little Antelope Valley Airstrip", + "latitude_deg": "38.428", + "longitude_deg": "-110.6022", + "elevation_ft": "4938", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "348096", + "ident": "US-5332", + "type": "small_airport", + "name": "Little Water Spring Airstrip", + "latitude_deg": "37.25", + "longitude_deg": "-109.3987", + "elevation_ft": "4628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Montezuma Creek", + "scheduled_service": "no" + }, + { + "id": "348097", + "ident": "US-5333", + "type": "small_airport", + "name": "Knolls Low Flight Strip", + "latitude_deg": "40.7892", + "longitude_deg": "-113.1978", + "elevation_ft": "4241", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Knolls", + "scheduled_service": "no" + }, + { + "id": "348098", + "ident": "US-5334", + "type": "small_airport", + "name": "Mackie Ranch Airport", + "latitude_deg": "37.533007", + "longitude_deg": "-113.748193", + "elevation_ft": "5590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Enterprise", + "scheduled_service": "no", + "local_code": "UT91", + "home_link": "https://utahbackcountrypilots.org/airstrips/MACKIERANCH" + }, + { + "id": "348099", + "ident": "US-5335", + "type": "small_airport", + "name": "Manor Lands Airport", + "latitude_deg": "40.9413", + "longitude_deg": "-110.8239", + "elevation_ft": "8276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Kamas", + "scheduled_service": "no" + }, + { + "id": "348100", + "ident": "US-5336", + "type": "small_airport", + "name": "McCook Ridge Airstrip", + "latitude_deg": "39.6365", + "longitude_deg": "-109.26611", + "elevation_ft": "6882", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Thompson Springs", + "scheduled_service": "no" + }, + { + "id": "348101", + "ident": "US-5337", + "type": "closed", + "name": "McKay Flat Airstrip", + "latitude_deg": "38.7057", + "longitude_deg": "-110.8667", + "elevation_ft": "6749", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Green River", + "scheduled_service": "no" + }, + { + "id": "348102", + "ident": "US-5338", + "type": "small_airport", + "name": "Mexican Hat Airport", + "latitude_deg": "37.1615", + "longitude_deg": "-109.8609", + "elevation_ft": "4313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Mexican Hat", + "scheduled_service": "no", + "keywords": "Naakaii Chʼah" + }, + { + "id": "348103", + "ident": "US-5339", + "type": "closed", + "name": "Mikes Mesa Airstrip", + "latitude_deg": "37.27", + "longitude_deg": "-110.4537", + "elevation_ft": "4080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no" + }, + { + "id": "348104", + "ident": "US-5340", + "type": "small_airport", + "name": "Montezuma Creek Airstrip", + "latitude_deg": "37.26518", + "longitude_deg": "-109.31208", + "elevation_ft": "4455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Montezuma Creek", + "scheduled_service": "no" + }, + { + "id": "348105", + "ident": "US-5341", + "type": "small_airport", + "name": "Moon Ridge Airstrip", + "latitude_deg": "39.39", + "longitude_deg": "-109.5805", + "elevation_ft": "7950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Thompson Springs", + "scheduled_service": "no" + }, + { + "id": "348106", + "ident": "US-5342", + "type": "small_airport", + "name": "Moqui Fork Airstrip", + "latitude_deg": "38.3888", + "longitude_deg": "-110.163", + "elevation_ft": "5930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "348107", + "ident": "US-5343", + "type": "closed", + "name": "Mule Canyon Airstrip", + "latitude_deg": "37.474063", + "longitude_deg": "-109.710245", + "elevation_ft": "5951", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Blanding", + "scheduled_service": "no" + }, + { + "id": "348108", + "ident": "US-5344", + "type": "small_airport", + "name": "Navajo Airstrip", + "latitude_deg": "37.25523", + "longitude_deg": "-109.4442", + "elevation_ft": "4880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Bluff", + "scheduled_service": "no" + }, + { + "id": "348109", + "ident": "US-5345", + "type": "small_airport", + "name": "North Point Airstrip", + "latitude_deg": "39.604", + "longitude_deg": "-109.9552", + "elevation_ft": "7336", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Sunnyside", + "scheduled_service": "no" + }, + { + "id": "348110", + "ident": "US-5346", + "type": "small_airport", + "name": "O'Grain Ranch Airstrip", + "latitude_deg": "38.177", + "longitude_deg": "-113.9663", + "elevation_ft": "6525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Modena", + "scheduled_service": "no" + }, + { + "id": "348111", + "ident": "US-5347", + "type": "small_airport", + "name": "Olsen Corral Airstrip", + "latitude_deg": "39.8592", + "longitude_deg": "-109.346", + "elevation_ft": "5886", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Jensen", + "scheduled_service": "no" + }, + { + "id": "348113", + "ident": "US-5348", + "type": "small_airport", + "name": "Book Cliff Ridge / P R Springs Airstrip", + "latitude_deg": "39.4387", + "longitude_deg": "-109.2903", + "elevation_ft": "8270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Thompson Springs", + "scheduled_service": "no" + }, + { + "id": "348114", + "ident": "US-5349", + "type": "small_airport", + "name": "Pine Flat Airstrip", + "latitude_deg": "38.46616", + "longitude_deg": "-109.08037", + "elevation_ft": "8110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "La Sal", + "scheduled_service": "no" + }, + { + "id": "348115", + "ident": "US-5350", + "type": "small_airport", + "name": "Piute Canyon Airstrip", + "latitude_deg": "37.64854", + "longitude_deg": "-110.3007", + "elevation_ft": "4970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no" + }, + { + "id": "348116", + "ident": "US-5351", + "type": "closed", + "name": "Piute Farms Airstrip", + "latitude_deg": "37.23931", + "longitude_deg": "-110.42664", + "elevation_ft": "5753", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no" + }, + { + "id": "348117", + "ident": "US-5352", + "type": "small_airport", + "name": "Poison Spring Airstrip", + "latitude_deg": "38.09712", + "longitude_deg": "-110.38568", + "elevation_ft": "4720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "348118", + "ident": "US-5353", + "type": "small_airport", + "name": "Pole Canyon Airport", + "latitude_deg": "37.53838", + "longitude_deg": "-112.428489", + "elevation_ft": "7747", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Kanab", + "scheduled_service": "no" + }, + { + "id": "348119", + "ident": "US-5354", + "type": "small_airport", + "name": "Pony Express Airstrip", + "latitude_deg": "39.8603", + "longitude_deg": "-113.6167", + "elevation_ft": "4344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Wendover", + "scheduled_service": "no" + }, + { + "id": "348120", + "ident": "US-5355", + "type": "small_airport", + "name": "Pussy Willow Spring Airstrip", + "latitude_deg": "37.2782", + "longitude_deg": "-109.2792", + "elevation_ft": "4774", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Montezuma Creek", + "scheduled_service": "no" + }, + { + "id": "348121", + "ident": "US-5356", + "type": "small_airport", + "name": "Red Horse Spring Airstrip", + "latitude_deg": "37.48269", + "longitude_deg": "-110.18439", + "elevation_ft": "5236", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no" + }, + { + "id": "348122", + "ident": "US-5357", + "type": "small_airport", + "name": "Road Junction 95-276 Airstrip", + "latitude_deg": "38.03372", + "longitude_deg": "-110.58435", + "elevation_ft": "4850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no" + }, + { + "id": "348123", + "ident": "US-5358", + "type": "small_airport", + "name": "Roan Cliffs Airstrip", + "latitude_deg": "39.53821", + "longitude_deg": "-110.24437", + "elevation_ft": "9606", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Sunnyside", + "scheduled_service": "no" + }, + { + "id": "348124", + "ident": "US-5359", + "type": "small_airport", + "name": "Ekker Ranch Airport", + "latitude_deg": "38.29312", + "longitude_deg": "-110.35952", + "elevation_ft": "5799", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no", + "keywords": "Robbers Roost" + }, + { + "id": "348125", + "ident": "US-5360", + "type": "small_airport", + "name": "Rockland Ranch Airstrip", + "latitude_deg": "38.22033", + "longitude_deg": "-109.46467", + "elevation_ft": "5910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Moab", + "scheduled_service": "no" + }, + { + "id": "348126", + "ident": "US-5361", + "type": "small_airport", + "name": "Rustler Canyon Airstrip", + "latitude_deg": "38.27581", + "longitude_deg": "-109.72945", + "elevation_ft": "4669", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Monticello", + "scheduled_service": "no" + }, + { + "id": "348127", + "ident": "US-5362", + "type": "small_airport", + "name": "Seeley Cabin Airstrip", + "latitude_deg": "39.7897", + "longitude_deg": "-109.2643", + "elevation_ft": "6250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Jensen", + "scheduled_service": "no" + }, + { + "id": "348128", + "ident": "US-5363", + "type": "small_airport", + "name": "Seep Ridge Airstrip", + "latitude_deg": "39.4964", + "longitude_deg": "-109.3386", + "elevation_ft": "7888", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Thompson Springs", + "scheduled_service": "no" + }, + { + "id": "348129", + "ident": "US-5364", + "type": "small_airport", + "name": "Slate Creek Airstrip", + "latitude_deg": "37.9852", + "longitude_deg": "-110.6511", + "elevation_ft": "5500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no" + }, + { + "id": "348130", + "ident": "US-5365", + "type": "small_airport", + "name": "Spring Canyon Airstrip", + "latitude_deg": "38.6397", + "longitude_deg": "-109.9692", + "elevation_ft": "4979", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Moab", + "scheduled_service": "no" + }, + { + "id": "348131", + "ident": "US-5366", + "type": "small_airport", + "name": "Starr Spring Airstrip", + "latitude_deg": "37.8236", + "longitude_deg": "-110.64327", + "elevation_ft": "5482", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no" + }, + { + "id": "348132", + "ident": "US-5367", + "type": "small_airport", + "name": "Steamboat Mesa Airstrip", + "latitude_deg": "38.7712", + "longitude_deg": "-109.0917", + "elevation_ft": "6263", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Cisco", + "scheduled_service": "no" + }, + { + "id": "348133", + "ident": "US-5368", + "type": "small_airport", + "name": "Steer Ridge East Airstrip", + "latitude_deg": "39.3519", + "longitude_deg": "-109.5683", + "elevation_ft": "8287", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Thompson Springs", + "scheduled_service": "no" + }, + { + "id": "348134", + "ident": "US-5369", + "type": "small_airport", + "name": "Steer Ridge West Airstrip", + "latitude_deg": "39.3563", + "longitude_deg": "-109.6072", + "elevation_ft": "8390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Thompson Springs", + "scheduled_service": "no" + }, + { + "id": "348135", + "ident": "US-5370", + "type": "small_airport", + "name": "Sweetwater Reef Airstrip", + "latitude_deg": "38.5505", + "longitude_deg": "-110.3203", + "elevation_ft": "5159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "348136", + "ident": "US-5371", + "type": "small_airport", + "name": "Tabyago Spring Airstrip", + "latitude_deg": "39.6218", + "longitude_deg": "-109.8436", + "elevation_ft": "7162", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Sunnyside", + "scheduled_service": "no" + }, + { + "id": "348137", + "ident": "US-5372", + "type": "small_airport", + "name": "Three Pines Airstrip", + "latitude_deg": "39.4392", + "longitude_deg": "-109.4", + "elevation_ft": "7735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Thompson Springs", + "scheduled_service": "no" + }, + { + "id": "348138", + "ident": "US-5373", + "type": "small_airport", + "name": "Towave Reservoir Airstrip", + "latitude_deg": "39.5691", + "longitude_deg": "-109.7651", + "elevation_ft": "7345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Randlett", + "scheduled_service": "no" + }, + { + "id": "348139", + "ident": "US-5374", + "type": "small_airport", + "name": "Trachyte Ranch Airport", + "latitude_deg": "37.97128", + "longitude_deg": "-110.613", + "elevation_ft": "5102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no" + }, + { + "id": "348140", + "ident": "US-5375", + "type": "small_airport", + "name": "Valley of the Gods Airport", + "latitude_deg": "37.2531", + "longitude_deg": "-109.9204", + "elevation_ft": "5240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Blanding", + "scheduled_service": "no" + }, + { + "id": "348142", + "ident": "US-5376", + "type": "small_airport", + "name": "Wallsburg Airport", + "latitude_deg": "40.3909", + "longitude_deg": "-111.4044", + "elevation_ft": "6030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Wallsburg", + "scheduled_service": "no" + }, + { + "id": "348143", + "ident": "US-5377", + "type": "small_airport", + "name": "Wee Hope Mine / Radium King Airstrip", + "latitude_deg": "37.5715", + "longitude_deg": "-110.224", + "elevation_ft": "5476", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no" + }, + { + "id": "348144", + "ident": "US-5378", + "type": "small_airport", + "name": "Dog Knoll Airstrip", + "latitude_deg": "39.6009", + "longitude_deg": "-109.8008", + "elevation_ft": "7244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Sunnyside", + "scheduled_service": "no" + }, + { + "id": "348145", + "ident": "US-5379", + "type": "small_airport", + "name": "Willow Springs Airstrip", + "latitude_deg": "38.4895", + "longitude_deg": "-110.1192", + "elevation_ft": "5420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hanksville", + "scheduled_service": "no" + }, + { + "id": "348146", + "ident": "US-5380", + "type": "small_airport", + "name": "Winter Ridge Airstrip", + "latitude_deg": "39.5012", + "longitude_deg": "-109.5573", + "elevation_ft": "7403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Thompson Springs", + "scheduled_service": "no" + }, + { + "id": "348148", + "ident": "US-5381", + "type": "small_airport", + "name": "Bluebell Airport", + "latitude_deg": "40.36996", + "longitude_deg": "-110.24246", + "elevation_ft": "6405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Bluebell", + "scheduled_service": "no" + }, + { + "id": "348173", + "ident": "US-5382", + "type": "small_airport", + "name": "Strable Landing Strip Airport", + "latitude_deg": "41.204516", + "longitude_deg": "-84.496159", + "elevation_ft": "714", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cecil", + "scheduled_service": "no", + "gps_code": "OH99", + "local_code": "OH99" + }, + { + "id": "348174", + "ident": "US-5383", + "type": "small_airport", + "name": "McNeel Ranch Airport", + "latitude_deg": "27.16314", + "longitude_deg": "-99.36131", + "elevation_ft": "384", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Ygnacio", + "scheduled_service": "no" + }, + { + "id": "348176", + "ident": "US-5384", + "type": "small_airport", + "name": "Blue Mountain Airfield", + "latitude_deg": "33.26611", + "longitude_deg": "-115.12672", + "elevation_ft": "1306", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Niland", + "scheduled_service": "no" + }, + { + "id": "348177", + "ident": "US-5385", + "type": "heliport", + "name": "LZ Redwing Heliport", + "latitude_deg": "33.28203", + "longitude_deg": "-115.06518", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Niland", + "scheduled_service": "no" + }, + { + "id": "348178", + "ident": "US-5386", + "type": "heliport", + "name": "LZ Burt Heliport", + "latitude_deg": "33.27149", + "longitude_deg": "-115.07513", + "elevation_ft": "1109", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Niland", + "scheduled_service": "no" + }, + { + "id": "348179", + "ident": "US-5387", + "type": "heliport", + "name": "LZ Goose Heliport", + "latitude_deg": "33.24349", + "longitude_deg": "-115.07783", + "elevation_ft": "1247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Niland", + "scheduled_service": "no" + }, + { + "id": "348180", + "ident": "US-5388", + "type": "heliport", + "name": "LZ Owl Heliport", + "latitude_deg": "33.22292", + "longitude_deg": "-115.09904", + "elevation_ft": "1404", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Niland", + "scheduled_service": "no" + }, + { + "id": "348181", + "ident": "US-5389", + "type": "heliport", + "name": "LZ Jayhawk Heliport", + "latitude_deg": "33.23488", + "longitude_deg": "-115.1346", + "elevation_ft": "1467", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Niland", + "scheduled_service": "no" + }, + { + "id": "348182", + "ident": "US-5390", + "type": "small_airport", + "name": "Speed Bag UAS Strip", + "latitude_deg": "33.27345", + "longitude_deg": "-115.41179", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Niland", + "scheduled_service": "no" + }, + { + "id": "348183", + "ident": "US-5391", + "type": "closed", + "name": "Red Point Targeting Airfield", + "latitude_deg": "32.54374", + "longitude_deg": "-113.24297", + "elevation_ft": "761", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Ajo", + "scheduled_service": "no" + }, + { + "id": "348184", + "ident": "US-5392", + "type": "closed", + "name": "Growler Wash Targeting Airfield", + "latitude_deg": "32.46542", + "longitude_deg": "-113.19141", + "elevation_ft": "771", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Ajo", + "scheduled_service": "no" + }, + { + "id": "348185", + "ident": "US-5393", + "type": "closed", + "name": "Crater Range Targeting Airfield", + "latitude_deg": "32.63579", + "longitude_deg": "-113.19666", + "elevation_ft": "804", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Ajo", + "scheduled_service": "no" + }, + { + "id": "348186", + "ident": "US-5394", + "type": "closed", + "name": "Sagrera Landing Strip", + "latitude_deg": "29.82878", + "longitude_deg": "-92.19842", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Esther", + "scheduled_service": "no" + }, + { + "id": "348201", + "ident": "US-5395", + "type": "closed", + "name": "Brindley Field", + "latitude_deg": "40.84004", + "longitude_deg": "-73.31392", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "East Northport", + "scheduled_service": "no" + }, + { + "id": "348202", + "ident": "US-5396", + "type": "closed", + "name": "Smithtown Airport", + "latitude_deg": "40.8274", + "longitude_deg": "-73.23293", + "elevation_ft": "61", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hauppauge", + "scheduled_service": "no" + }, + { + "id": "348203", + "ident": "US-5397", + "type": "heliport", + "name": "Suffolk Police Hauppauge Heliport", + "latitude_deg": "40.8283", + "longitude_deg": "-73.232548", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hauppauge", + "scheduled_service": "no" + }, + { + "id": "348204", + "ident": "US-5398", + "type": "closed", + "name": "Fitzmaurice Airport", + "latitude_deg": "40.68872", + "longitude_deg": "-73.44893", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Massapequa Park", + "scheduled_service": "no" + }, + { + "id": "348205", + "ident": "US-5399", + "type": "closed", + "name": "Bender-Brentwood Airport", + "latitude_deg": "40.78298", + "longitude_deg": "-73.22217", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Brentwood", + "scheduled_service": "no" + }, + { + "id": "348206", + "ident": "US-5400", + "type": "closed", + "name": "Islip Airport (1928)", + "latitude_deg": "40.7509", + "longitude_deg": "-73.21137", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Islip", + "scheduled_service": "no" + }, + { + "id": "348207", + "ident": "US-5401", + "type": "closed", + "name": "Vanderbilt Seaplane Base", + "latitude_deg": "40.90603", + "longitude_deg": "-73.36472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Centerport", + "scheduled_service": "no" + }, + { + "id": "348208", + "ident": "US-5402", + "type": "closed", + "name": "Rosette Airport", + "latitude_deg": "41.81352", + "longitude_deg": "-113.36914", + "elevation_ft": "5585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Park Valley", + "scheduled_service": "no" + }, + { + "id": "348210", + "ident": "US-5403", + "type": "small_airport", + "name": "Nefas Airport", + "latitude_deg": "39.83173", + "longitude_deg": "-119.69416", + "elevation_ft": "4274", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Reno", + "scheduled_service": "no" + }, + { + "id": "348211", + "ident": "US-5404", + "type": "small_airport", + "name": "Williams Airport", + "latitude_deg": "39.82237", + "longitude_deg": "-119.69334", + "elevation_ft": "4267", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Reno", + "scheduled_service": "no" + }, + { + "id": "348212", + "ident": "US-5405", + "type": "small_airport", + "name": "Kirk Ranch Airport", + "latitude_deg": "31.64188", + "longitude_deg": "-105.00131", + "elevation_ft": "3629", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Salt Flat", + "scheduled_service": "no" + }, + { + "id": "348213", + "ident": "US-5406", + "type": "closed", + "name": "Salt Flat Intermediate Field", + "latitude_deg": "31.74668", + "longitude_deg": "-105.09192", + "elevation_ft": "3710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Salt Flat", + "scheduled_service": "no" + }, + { + "id": "348214", + "ident": "US-5407", + "type": "closed", + "name": "L W B Ranch Airport", + "latitude_deg": "31.7784", + "longitude_deg": "-105.4482", + "elevation_ft": "4339", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cornudas", + "scheduled_service": "no" + }, + { + "id": "348215", + "ident": "US-5408", + "type": "closed", + "name": "Double U Ranch Airport", + "latitude_deg": "31.76842", + "longitude_deg": "-105.62328", + "elevation_ft": "4551", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cornudas", + "scheduled_service": "no" + }, + { + "id": "348216", + "ident": "US-5409", + "type": "closed", + "name": "Hudspeth Intermediate Field", + "latitude_deg": "31.80074", + "longitude_deg": "-105.6316", + "elevation_ft": "4695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cornudas", + "scheduled_service": "no" + }, + { + "id": "348217", + "ident": "US-5410", + "type": "closed", + "name": "Hueco Airport", + "latitude_deg": "31.83139", + "longitude_deg": "-106.13315", + "elevation_ft": "4108", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Paso", + "scheduled_service": "no", + "keywords": "4.00E+08" + }, + { + "id": "348257", + "ident": "US-5411", + "type": "heliport", + "name": "Mercy Hospital Carthage Heliport", + "latitude_deg": "37.13699", + "longitude_deg": "-94.32217", + "elevation_ft": "1071", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Carthage", + "scheduled_service": "no", + "local_code": "38MU" + }, + { + "id": "348258", + "ident": "US-5412", + "type": "heliport", + "name": "Mercy Hospital Aurora Heliport", + "latitude_deg": "36.96944", + "longitude_deg": "-93.7092", + "elevation_ft": "1385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Aurora", + "scheduled_service": "no", + "local_code": "86MU" + }, + { + "id": "348259", + "ident": "US-5413", + "type": "heliport", + "name": "Mercy Hospital Logan County Heliport", + "latitude_deg": "35.87618", + "longitude_deg": "-97.4631", + "elevation_ft": "1066", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Guthrie", + "scheduled_service": "no" + }, + { + "id": "348260", + "ident": "US-5414", + "type": "closed", + "name": "Port Eads Airport", + "latitude_deg": "29.0163", + "longitude_deg": "-89.17304", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no" + }, + { + "id": "348266", + "ident": "US-5415", + "type": "heliport", + "name": "Emeline Pass Heliport", + "latitude_deg": "29.31014", + "longitude_deg": "-89.29803", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no" + }, + { + "id": "348267", + "ident": "US-5416", + "type": "seaplane_base", + "name": "Grand Bay Seaplane Base", + "latitude_deg": "29.31206", + "longitude_deg": "-89.2925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no" + }, + { + "id": "348268", + "ident": "US-5417", + "type": "closed", + "name": "Pribyl Ranch Airport", + "latitude_deg": "36.14716", + "longitude_deg": "-97.8952", + "elevation_ft": "1181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hennessey", + "scheduled_service": "no" + }, + { + "id": "348270", + "ident": "US-5418", + "type": "heliport", + "name": "INTEGRIS Bass Baptist Health Center Heliport", + "latitude_deg": "36.39013", + "longitude_deg": "-97.88675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Enid", + "scheduled_service": "no" + }, + { + "id": "348271", + "ident": "US-5419", + "type": "small_airport", + "name": "Johnson Airport", + "latitude_deg": "33.225688", + "longitude_deg": "-84.665982", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Luthersville", + "scheduled_service": "no", + "gps_code": "74GA", + "local_code": "74GA" + }, + { + "id": "348272", + "ident": "US-5420", + "type": "heliport", + "name": "HCA Florida Poinciana Hospital Heliport", + "latitude_deg": "28.144702", + "longitude_deg": "-81.475602", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Kissimmee", + "scheduled_service": "no", + "gps_code": "24FD", + "local_code": "24FD", + "keywords": "Poinciana Medical Center Heliport" + }, + { + "id": "348273", + "ident": "US-5421", + "type": "small_airport", + "name": "Salt Creek Airport", + "latitude_deg": "33.03617", + "longitude_deg": "-108.2069", + "elevation_ft": "5863", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Silver City", + "scheduled_service": "no" + }, + { + "id": "348274", + "ident": "US-5422", + "type": "small_airport", + "name": "Pyramid Unicorn Airport", + "latitude_deg": "31.20019", + "longitude_deg": "-90.02265", + "elevation_ft": "337", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Kokomo", + "scheduled_service": "no" + }, + { + "id": "348275", + "ident": "US-5423", + "type": "small_airport", + "name": "Watrous Airport", + "latitude_deg": "35.7923", + "longitude_deg": "-105.00886", + "elevation_ft": "6575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Watrous", + "scheduled_service": "no" + }, + { + "id": "348276", + "ident": "US-5424", + "type": "small_airport", + "name": "Epperson Pumping Station Airport", + "latitude_deg": "33.32968", + "longitude_deg": "-103.57038", + "elevation_ft": "4235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Tatum", + "scheduled_service": "no" + }, + { + "id": "348277", + "ident": "US-5425", + "type": "closed", + "name": "Pahrump Landing Strip", + "latitude_deg": "36.19533", + "longitude_deg": "-115.98348", + "elevation_ft": "2680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Pahrump", + "scheduled_service": "no" + }, + { + "id": "348278", + "ident": "US-5426", + "type": "heliport", + "name": "Pahrump Medical Center Heliport", + "latitude_deg": "36.19171", + "longitude_deg": "-115.98697", + "elevation_ft": "2654", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Pahrump", + "scheduled_service": "no" + }, + { + "id": "348279", + "ident": "US-5427", + "type": "heliport", + "name": "Desert View Hospital Heliport", + "latitude_deg": "36.21526", + "longitude_deg": "-116.0261", + "elevation_ft": "2585", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Pahrump", + "scheduled_service": "no" + }, + { + "id": "348280", + "ident": "US-5428", + "type": "closed", + "name": "Desert Rock Army Airfield", + "latitude_deg": "36.64877", + "longitude_deg": "-116.01057", + "elevation_ft": "3661", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Mercury", + "scheduled_service": "no" + }, + { + "id": "348281", + "ident": "US-5429", + "type": "closed", + "name": "Black Mesa Pumping Station Airport", + "latitude_deg": "36.43897", + "longitude_deg": "-110.39034", + "elevation_ft": "6538", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Kayenta", + "scheduled_service": "no" + }, + { + "id": "348286", + "ident": "US-5430", + "type": "heliport", + "name": "Fort Rucker Dustoff Complex Heliport", + "latitude_deg": "31.32079", + "longitude_deg": "-85.7394", + "elevation_ft": "238", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker", + "scheduled_service": "no" + }, + { + "id": "348287", + "ident": "US-5431", + "type": "heliport", + "name": "US Army Aeromedical Research Laboratory Heliport", + "latitude_deg": "31.32547", + "longitude_deg": "-85.72676", + "elevation_ft": "353", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker", + "scheduled_service": "no" + }, + { + "id": "348288", + "ident": "US-5432", + "type": "heliport", + "name": "Lyster Army Health Clinic Heliport", + "latitude_deg": "31.32743", + "longitude_deg": "-85.72527", + "elevation_ft": "347", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker", + "scheduled_service": "no" + }, + { + "id": "348289", + "ident": "US-5433", + "type": "heliport", + "name": "Howze Field", + "latitude_deg": "31.32926", + "longitude_deg": "-85.7146", + "elevation_ft": "357", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker", + "scheduled_service": "no" + }, + { + "id": "348290", + "ident": "US-5434", + "type": "heliport", + "name": "Landing Zone RT-47 Heliport", + "latitude_deg": "31.34012", + "longitude_deg": "-85.68486", + "elevation_ft": "341", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker", + "scheduled_service": "no" + }, + { + "id": "348291", + "ident": "US-5435", + "type": "closed", + "name": "RT-334 Landing Strip", + "latitude_deg": "31.47359", + "longitude_deg": "-85.71626", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Ozark", + "scheduled_service": "no" + }, + { + "id": "348292", + "ident": "US-5436", + "type": "small_airport", + "name": "RT-415 Landing Strip", + "latitude_deg": "31.52705", + "longitude_deg": "-85.85731", + "elevation_ft": "246", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "New Brockton", + "scheduled_service": "no" + }, + { + "id": "348293", + "ident": "US-5437", + "type": "small_airport", + "name": "RT-416 Landing Strip", + "latitude_deg": "31.53583", + "longitude_deg": "-85.84708", + "elevation_ft": "244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "New Brockton", + "scheduled_service": "no" + }, + { + "id": "348294", + "ident": "US-5438", + "type": "small_airport", + "name": "RT-414 Landing Strip", + "latitude_deg": "31.5406", + "longitude_deg": "-85.85386", + "elevation_ft": "243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Jack", + "scheduled_service": "no" + }, + { + "id": "348295", + "ident": "US-5439", + "type": "small_airport", + "name": "RT-337 Landing Strip", + "latitude_deg": "31.44336", + "longitude_deg": "-85.86206", + "elevation_ft": "427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "New Brockton", + "scheduled_service": "no" + }, + { + "id": "348296", + "ident": "US-5440", + "type": "closed", + "name": "Fico Farms Airport", + "latitude_deg": "30.05951", + "longitude_deg": "-85.28216", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Wewahitchka", + "scheduled_service": "no" + }, + { + "id": "348297", + "ident": "US-5441", + "type": "closed", + "name": "Telegraph Creek Airport", + "latitude_deg": "26.73458", + "longitude_deg": "-81.70042", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Alva", + "scheduled_service": "no" + }, + { + "id": "348298", + "ident": "US-5442", + "type": "small_airport", + "name": "RT-7 Landing Strip", + "latitude_deg": "31.41224", + "longitude_deg": "-85.75802", + "elevation_ft": "319", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker", + "scheduled_service": "no" + }, + { + "id": "348299", + "ident": "US-5443", + "type": "small_airport", + "name": "Area 18 Landing Strip", + "latitude_deg": "31.39104", + "longitude_deg": "-85.76728", + "elevation_ft": "271", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Fort Rucker", + "scheduled_service": "no" + }, + { + "id": "348301", + "ident": "US-5444", + "type": "small_airport", + "name": "V and J Ranch Airport", + "latitude_deg": "31.92954", + "longitude_deg": "-101.06844", + "elevation_ft": "2440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sterling City", + "scheduled_service": "no" + }, + { + "id": "348331", + "ident": "US-5445", + "type": "closed", + "name": "Bar J Lazy V Airport", + "latitude_deg": "41.15389", + "longitude_deg": "-103.39831", + "elevation_ft": "4580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Dix", + "scheduled_service": "no" + }, + { + "id": "348332", + "ident": "US-5446", + "type": "closed", + "name": "Mitchell Airport", + "latitude_deg": "41.91952", + "longitude_deg": "-103.80825", + "elevation_ft": "3936", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Mitchell", + "scheduled_service": "no" + }, + { + "id": "348333", + "ident": "US-5447", + "type": "closed", + "name": "Lance Creek Airport", + "latitude_deg": "43.04357", + "longitude_deg": "-104.70938", + "elevation_ft": "4455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Lance Creek", + "scheduled_service": "no" + }, + { + "id": "348334", + "ident": "US-5448", + "type": "closed", + "name": "Lonetree Creek Airport", + "latitude_deg": "43.37615", + "longitude_deg": "-105.38992", + "elevation_ft": "4906", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Douglas", + "scheduled_service": "no" + }, + { + "id": "348335", + "ident": "US-5449", + "type": "small_airport", + "name": "Moore Ranch Airport", + "latitude_deg": "43.51846", + "longitude_deg": "-106.03849", + "elevation_ft": "5167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Linch", + "scheduled_service": "no" + }, + { + "id": "348337", + "ident": "US-5450", + "type": "closed", + "name": "Fisher Ranch Airport", + "latitude_deg": "43.69045", + "longitude_deg": "-106.64215", + "elevation_ft": "4764", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Kaycee", + "scheduled_service": "no" + }, + { + "id": "348338", + "ident": "US-5451", + "type": "closed", + "name": "Jeffrey City North Airport", + "latitude_deg": "42.506738", + "longitude_deg": "-107.829938", + "elevation_ft": "6332", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Jeffrey City", + "scheduled_service": "no" + }, + { + "id": "348339", + "ident": "US-5452", + "type": "closed", + "name": "Jeffrey City Airport", + "latitude_deg": "42.48283", + "longitude_deg": "-107.83206", + "elevation_ft": "6344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Jeffrey City", + "scheduled_service": "no" + }, + { + "id": "348342", + "ident": "US-5453", + "type": "closed", + "name": "Bennett Airport", + "latitude_deg": "43.31966", + "longitude_deg": "-115.45066", + "elevation_ft": "4730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Mountain Home", + "scheduled_service": "no" + }, + { + "id": "348344", + "ident": "US-5454", + "type": "small_airport", + "name": "Lida Airport", + "latitude_deg": "37.45683", + "longitude_deg": "-117.50742", + "elevation_ft": "6415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Goldfield", + "scheduled_service": "no" + }, + { + "id": "348347", + "ident": "US-5455", + "type": "closed", + "name": "Silver Peak Airport", + "latitude_deg": "37.76637", + "longitude_deg": "-117.62967", + "elevation_ft": "4250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Silver Peak", + "scheduled_service": "no" + }, + { + "id": "348348", + "ident": "US-5456", + "type": "small_airport", + "name": "Coaldale Airport", + "latitude_deg": "38.02679", + "longitude_deg": "-117.88914", + "elevation_ft": "4664", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Coaldale", + "scheduled_service": "no" + }, + { + "id": "348349", + "ident": "US-5457", + "type": "small_airport", + "name": "Coaldale Junction Airport", + "latitude_deg": "38.04306", + "longitude_deg": "-117.89703", + "elevation_ft": "4572", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Coaldale", + "scheduled_service": "no" + }, + { + "id": "348351", + "ident": "US-5458", + "type": "closed", + "name": "Sullivan Airport", + "latitude_deg": "42.17771", + "longitude_deg": "-106.23483", + "elevation_ft": "6931", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Medicine Bow", + "scheduled_service": "no" + }, + { + "id": "348352", + "ident": "US-5459", + "type": "closed", + "name": "Ringer Airport", + "latitude_deg": "42.21721", + "longitude_deg": "-86.33822", + "elevation_ft": "714", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Coloma", + "scheduled_service": "no" + }, + { + "id": "348353", + "ident": "US-5460", + "type": "closed", + "name": "Sayville Airport", + "latitude_deg": "40.75181", + "longitude_deg": "-73.08484", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Sayville", + "scheduled_service": "no" + }, + { + "id": "348354", + "ident": "US-5461", + "type": "closed", + "name": "New Sayville Airport", + "latitude_deg": "40.76111", + "longitude_deg": "-73.07226", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Sayville", + "scheduled_service": "no" + }, + { + "id": "348356", + "ident": "US-5462", + "type": "heliport", + "name": "Brookhaven Memorial Hospital Heliport", + "latitude_deg": "40.78036", + "longitude_deg": "-72.97608", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Patchogue", + "scheduled_service": "no" + }, + { + "id": "348358", + "ident": "US-5463", + "type": "closed", + "name": "Kaufmans Airport", + "latitude_deg": "42.10242", + "longitude_deg": "-85.02315", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Tekonsha", + "scheduled_service": "no" + }, + { + "id": "348361", + "ident": "US-5464", + "type": "small_airport", + "name": "Las Vivoritas Airport", + "latitude_deg": "27.17846", + "longitude_deg": "-98.65057", + "elevation_ft": "497", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hebbronville", + "scheduled_service": "no" + }, + { + "id": "348383", + "ident": "US-5465", + "type": "small_airport", + "name": "Mitchell Field", + "latitude_deg": "44.6952", + "longitude_deg": "-123.01966", + "elevation_ft": "253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Albany", + "scheduled_service": "no", + "gps_code": "OR67", + "local_code": "OR67" + }, + { + "id": "348399", + "ident": "US-5466", + "type": "closed", + "name": "Gatlin Ranch Airport", + "latitude_deg": "29.90076", + "longitude_deg": "-102.21323", + "elevation_ft": "1910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanderson", + "scheduled_service": "no" + }, + { + "id": "348400", + "ident": "US-5467", + "type": "closed", + "name": "Cox Airport", + "latitude_deg": "30.10411", + "longitude_deg": "-102.76178", + "elevation_ft": "3721", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no" + }, + { + "id": "348404", + "ident": "US-5468", + "type": "heliport", + "name": "Talon Air Heliport", + "latitude_deg": "29.483446", + "longitude_deg": "-95.008382", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dickinson", + "scheduled_service": "no", + "local_code": "T34", + "home_link": "https://talonairservices.com/" + }, + { + "id": "348408", + "ident": "US-5469", + "type": "small_airport", + "name": "Buzzard Creek Airstrip", + "latitude_deg": "31.327814", + "longitude_deg": "-98.804769", + "elevation_ft": "1309", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Saba", + "scheduled_service": "no", + "gps_code": "2TX9", + "local_code": "2TX9" + }, + { + "id": "348410", + "ident": "US-5470", + "type": "small_airport", + "name": "Pilots Grove Airport", + "latitude_deg": "37.338794", + "longitude_deg": "-77.19883", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Charles City", + "scheduled_service": "no", + "gps_code": "VA05", + "local_code": "VA05" + }, + { + "id": "348545", + "ident": "US-5471", + "type": "small_airport", + "name": "Fence Field", + "latitude_deg": "39.159238", + "longitude_deg": "-87.099835", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Jasonville", + "scheduled_service": "no", + "gps_code": "10IN", + "local_code": "10IN" + }, + { + "id": "348551", + "ident": "US-5472", + "type": "heliport", + "name": "Allegheny Wexford Rooftop Heliport", + "latitude_deg": "40.636154", + "longitude_deg": "-80.062786", + "elevation_ft": "1310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wexford", + "scheduled_service": "no", + "gps_code": "33PA", + "local_code": "33PA" + }, + { + "id": "348558", + "ident": "US-5473", + "type": "small_airport", + "name": "Dittemore Field", + "latitude_deg": "39.777744", + "longitude_deg": "-95.142261", + "elevation_ft": "1153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Dittemore Field", + "scheduled_service": "no", + "gps_code": "5KS2", + "local_code": "5KS2" + }, + { + "id": "348567", + "ident": "US-5474", + "type": "heliport", + "name": "Windys Central Helipad", + "latitude_deg": "39.103831", + "longitude_deg": "-84.487208", + "elevation_ft": "588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Bellevue", + "scheduled_service": "no", + "gps_code": "86KY", + "local_code": "86KY" + }, + { + "id": "348570", + "ident": "US-5475", + "type": "heliport", + "name": "St Gabriels Hospital Heliport", + "latitude_deg": "45.967036", + "longitude_deg": "-94.363815", + "elevation_ft": "1123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Little Falls", + "scheduled_service": "no", + "gps_code": "89MN", + "local_code": "89MN" + }, + { + "id": "348572", + "ident": "US-5476", + "type": "heliport", + "name": "MercyOne Waterloo Medical Center Heliport", + "latitude_deg": "42.46115", + "longitude_deg": "-92.347008", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Waterloo", + "scheduled_service": "no", + "gps_code": "IA75", + "local_code": "IA75" + }, + { + "id": "348573", + "ident": "US-5477", + "type": "small_airport", + "name": "Bascom Field", + "latitude_deg": "41.787253", + "longitude_deg": "-93.512406", + "elevation_ft": "969", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Elkhart", + "scheduled_service": "no", + "gps_code": "IA77", + "local_code": "IA77" + }, + { + "id": "348575", + "ident": "US-5478", + "type": "small_airport", + "name": "Hell Roaring Ranch Airport", + "latitude_deg": "44.018226", + "longitude_deg": "-114.839637", + "elevation_ft": "6800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Stanley", + "scheduled_service": "no", + "gps_code": "ID39", + "local_code": "ID39" + }, + { + "id": "348577", + "ident": "US-5479", + "type": "heliport", + "name": "St Lukes East Heliport", + "latitude_deg": "38.940184", + "longitude_deg": "-94.382381", + "elevation_ft": "984", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lees Summit", + "scheduled_service": "no", + "gps_code": "MU42", + "local_code": "MU42" + }, + { + "id": "348591", + "ident": "US-5480", + "type": "heliport", + "name": "ODF Heliport", + "latitude_deg": "44.409444", + "longitude_deg": "-118.965556", + "elevation_ft": "3680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "John Day", + "scheduled_service": "no", + "gps_code": "OR98", + "local_code": "OR98" + }, + { + "id": "348673", + "ident": "US-5481", + "type": "small_airport", + "name": "Rees Reservoir Airport", + "latitude_deg": "29.45858", + "longitude_deg": "-96.47976", + "elevation_ft": "177", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garwood", + "scheduled_service": "no" + }, + { + "id": "348674", + "ident": "US-5482", + "type": "small_airport", + "name": "ANF Air Service Airport", + "latitude_deg": "29.43246", + "longitude_deg": "-96.48388", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garwood", + "scheduled_service": "no" + }, + { + "id": "348675", + "ident": "US-5483", + "type": "small_airport", + "name": "Muse Ranch Airport", + "latitude_deg": "29.42644", + "longitude_deg": "-96.45394", + "elevation_ft": "166", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garwood", + "scheduled_service": "no" + }, + { + "id": "348691", + "ident": "US-5484", + "type": "closed", + "name": "Fields Airport", + "latitude_deg": "42.259159", + "longitude_deg": "-118.662225", + "elevation_ft": "4213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Fields", + "scheduled_service": "no" + }, + { + "id": "348707", + "ident": "US-5485", + "type": "closed", + "name": "Madison Army Airfield", + "latitude_deg": "38.82566", + "longitude_deg": "-85.43455", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Madison", + "scheduled_service": "no" + }, + { + "id": "348709", + "ident": "US-5486", + "type": "closed", + "name": "Kettering Field", + "latitude_deg": "39.77574", + "longitude_deg": "-84.19015", + "elevation_ft": "738", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Dayton", + "scheduled_service": "no" + }, + { + "id": "348713", + "ident": "US-5487", + "type": "heliport", + "name": "Covenant Health Hobbs Hospital Heliport", + "latitude_deg": "32.762368", + "longitude_deg": "-103.186646", + "elevation_ft": "3670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Hobbs", + "scheduled_service": "no", + "gps_code": "NM59", + "local_code": "NM59" + }, + { + "id": "348722", + "ident": "US-5488", + "type": "small_airport", + "name": "Groom Airport", + "latitude_deg": "35.19825", + "longitude_deg": "-101.06345", + "elevation_ft": "3260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Groom", + "scheduled_service": "no" + }, + { + "id": "348723", + "ident": "US-5489", + "type": "closed", + "name": "Rock Creek Airport", + "latitude_deg": "42.45417", + "longitude_deg": "-114.34788", + "elevation_ft": "4010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Kimberly", + "scheduled_service": "no" + }, + { + "id": "348725", + "ident": "US-5490", + "type": "closed", + "name": "Monument Heliport", + "latitude_deg": "44.817654", + "longitude_deg": "-119.421791", + "elevation_ft": "2001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Monument", + "scheduled_service": "no" + }, + { + "id": "348726", + "ident": "US-5491", + "type": "closed", + "name": "Brewer Airport", + "latitude_deg": "44.52337", + "longitude_deg": "-121.16688", + "elevation_ft": "2684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Culver", + "scheduled_service": "no" + }, + { + "id": "348730", + "ident": "US-5492", + "type": "small_airport", + "name": "Nixon Airport", + "latitude_deg": "39.83582", + "longitude_deg": "-119.34948", + "elevation_ft": "3967", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Nixon", + "scheduled_service": "no" + }, + { + "id": "348735", + "ident": "US-5493", + "type": "small_airport", + "name": "Morgan Airport", + "latitude_deg": "32.88733", + "longitude_deg": "-93.44159", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Sarepta", + "scheduled_service": "no" + }, + { + "id": "348737", + "ident": "US-5494", + "type": "closed", + "name": "Eaton Airport", + "latitude_deg": "39.75399", + "longitude_deg": "-84.68232", + "elevation_ft": "1107", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Eaton", + "scheduled_service": "no" + }, + { + "id": "348738", + "ident": "US-5495", + "type": "small_airport", + "name": "Hatts Ranch Airport", + "latitude_deg": "38.87078", + "longitude_deg": "-110.38355", + "elevation_ft": "4229", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Emery", + "scheduled_service": "no" + }, + { + "id": "348739", + "ident": "US-5496", + "type": "small_airport", + "name": "Hosmer Airfield", + "latitude_deg": "41.43149", + "longitude_deg": "-81.11292", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Burton", + "scheduled_service": "no" + }, + { + "id": "348742", + "ident": "US-5497", + "type": "small_airport", + "name": "Warm Springs Airport", + "latitude_deg": "38.18834", + "longitude_deg": "-116.36399", + "elevation_ft": "5420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Warm Springs", + "scheduled_service": "no" + }, + { + "id": "348743", + "ident": "US-5498", + "type": "small_airport", + "name": "Twin Springs Ranch Airport", + "latitude_deg": "38.20608", + "longitude_deg": "-116.17535", + "elevation_ft": "5151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "348745", + "ident": "US-5499", + "type": "small_airport", + "name": "Moroni Airport", + "latitude_deg": "38.13404", + "longitude_deg": "-116.61238", + "elevation_ft": "5650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "348764", + "ident": "US-5500", + "type": "small_airport", + "name": "Evans Airport", + "latitude_deg": "34.05895", + "longitude_deg": "-88.02717", + "elevation_ft": "502", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Hamilton", + "scheduled_service": "no" + }, + { + "id": "348765", + "ident": "US-5501", + "type": "closed", + "name": "Jordan Valley Airport", + "latitude_deg": "42.97971", + "longitude_deg": "-117.07617", + "elevation_ft": "4371", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Jordan Valley", + "scheduled_service": "no" + }, + { + "id": "348766", + "ident": "US-5502", + "type": "small_airport", + "name": "Ferriday Airport", + "latitude_deg": "31.631844", + "longitude_deg": "-91.569471", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Ferriday", + "scheduled_service": "no" + }, + { + "id": "348767", + "ident": "US-5503", + "type": "closed", + "name": "Wild Horse Airport", + "latitude_deg": "41.62175", + "longitude_deg": "-115.83907", + "elevation_ft": "6354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Elko", + "scheduled_service": "no" + }, + { + "id": "348768", + "ident": "US-5504", + "type": "closed", + "name": "Sutcliffe Airport", + "latitude_deg": "39.94224", + "longitude_deg": "-119.60579", + "elevation_ft": "3960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Reno", + "scheduled_service": "no" + }, + { + "id": "348770", + "ident": "US-5505", + "type": "small_airport", + "name": "Cove Spring Airstrip", + "latitude_deg": "38.00228", + "longitude_deg": "-110.24366", + "elevation_ft": "5522", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no" + }, + { + "id": "348771", + "ident": "US-5506", + "type": "heliport", + "name": "Bay Couquille Heliport", + "latitude_deg": "29.38677", + "longitude_deg": "-89.38047", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no" + }, + { + "id": "348775", + "ident": "US-5507", + "type": "closed", + "name": "Coram Airport", + "latitude_deg": "40.86864", + "longitude_deg": "-72.98837", + "elevation_ft": "86", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Coram", + "scheduled_service": "no" + }, + { + "id": "348777", + "ident": "US-5508", + "type": "small_airport", + "name": "Chatham Airport", + "latitude_deg": "33.97618", + "longitude_deg": "-91.82812", + "elevation_ft": "219", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Star City", + "scheduled_service": "no" + }, + { + "id": "348778", + "ident": "US-5509", + "type": "small_airport", + "name": "Frizzell Airport", + "latitude_deg": "33.956792", + "longitude_deg": "-91.773648", + "elevation_ft": "179", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Star City", + "scheduled_service": "no" + }, + { + "id": "348779", + "ident": "US-5510", + "type": "small_airport", + "name": "Farm Brothers Flying Service Airport", + "latitude_deg": "34.20656", + "longitude_deg": "-91.89342", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Pine Bluff", + "scheduled_service": "no", + "keywords": "Atkins Lake" + }, + { + "id": "348784", + "ident": "US-5511", + "type": "small_airport", + "name": "Camp Lejeune LZ Bluebird Airstrip", + "latitude_deg": "34.55317", + "longitude_deg": "-77.31798", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Sneads Ferry", + "scheduled_service": "no" + }, + { + "id": "348791", + "ident": "US-5512", + "type": "closed", + "name": "Haley Ranch Airport", + "latitude_deg": "33.41846", + "longitude_deg": "-104.58336", + "elevation_ft": "3652", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Roswell", + "scheduled_service": "no" + }, + { + "id": "348792", + "ident": "US-5513", + "type": "closed", + "name": "Roswell Municipal Airport / Roswell Auxiliary Army Airfield Number 9", + "latitude_deg": "33.40826", + "longitude_deg": "-104.54914", + "elevation_ft": "3623", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Roswell", + "scheduled_service": "no" + }, + { + "id": "348796", + "ident": "US-5514", + "type": "small_airport", + "name": "Dog Bone Lake Airfield", + "latitude_deg": "36.8462", + "longitude_deg": "-115.44853", + "elevation_ft": "3412", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Indian Springs", + "scheduled_service": "no" + }, + { + "id": "348797", + "ident": "US-5515", + "type": "closed", + "name": "Modena Airport", + "latitude_deg": "37.79972", + "longitude_deg": "-113.92701", + "elevation_ft": "5490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Modena", + "scheduled_service": "no" + }, + { + "id": "348798", + "ident": "US-5516", + "type": "closed", + "name": "Acoma Airport", + "latitude_deg": "37.55144", + "longitude_deg": "-114.17141", + "elevation_ft": "5550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Caliente", + "scheduled_service": "no" + }, + { + "id": "348812", + "ident": "US-5517", + "type": "small_airport", + "name": "Elm Valley Airport", + "latitude_deg": "32.27671", + "longitude_deg": "-99.99932", + "elevation_ft": "2536", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tuscola", + "scheduled_service": "no" + }, + { + "id": "348813", + "ident": "US-5518", + "type": "small_airport", + "name": "Long Ranch Airport", + "latitude_deg": "34.79102", + "longitude_deg": "-102.48953", + "elevation_ft": "3894", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hereford", + "scheduled_service": "no" + }, + { + "id": "348814", + "ident": "US-5519", + "type": "small_airport", + "name": "Irwin Airport", + "latitude_deg": "34.09282", + "longitude_deg": "-101.21976", + "elevation_ft": "3151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Floydada", + "scheduled_service": "no" + }, + { + "id": "348815", + "ident": "US-5520", + "type": "closed", + "name": "Norman Airfield", + "latitude_deg": "33.93824", + "longitude_deg": "-101.09637", + "elevation_ft": "3077", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dougherty", + "scheduled_service": "no" + }, + { + "id": "348816", + "ident": "US-5521", + "type": "closed", + "name": "Horne Airport", + "latitude_deg": "35.496625", + "longitude_deg": "-95.154419", + "elevation_ft": "482", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Webbers Falls", + "scheduled_service": "no" + }, + { + "id": "348817", + "ident": "US-5522", + "type": "closed", + "name": "Sheffield Airport", + "latitude_deg": "35.496479", + "longitude_deg": "-95.121145", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Webbers Falls", + "scheduled_service": "no" + }, + { + "id": "348818", + "ident": "US-5523", + "type": "closed", + "name": "Rollow Airport", + "latitude_deg": "37.64326", + "longitude_deg": "-95.44585", + "elevation_ft": "951", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Chanute", + "scheduled_service": "no" + }, + { + "id": "348819", + "ident": "US-5524", + "type": "small_airport", + "name": "Windsoar Airport", + "latitude_deg": "38.54565", + "longitude_deg": "-93.50751", + "elevation_ft": "932", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Windsor", + "scheduled_service": "no", + "gps_code": "1MO2", + "local_code": "1MO2", + "keywords": "Windsor Municipal" + }, + { + "id": "348833", + "ident": "US-5525", + "type": "closed", + "name": "Former Santa Maria Municipal Airport / Hancock Field", + "latitude_deg": "34.9441", + "longitude_deg": "-120.42155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Maria", + "scheduled_service": "no" + }, + { + "id": "348834", + "ident": "US-5526", + "type": "heliport", + "name": "Menifee Valley Medical Center Heliport", + "latitude_deg": "33.71839", + "longitude_deg": "-117.168", + "elevation_ft": "1537", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Menifee", + "scheduled_service": "no" + }, + { + "id": "348846", + "ident": "US-5527", + "type": "closed", + "name": "Boonville Airport", + "latitude_deg": "38.99199", + "longitude_deg": "-92.74832", + "elevation_ft": "592", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Boonville", + "scheduled_service": "no" + }, + { + "id": "348856", + "ident": "US-5528", + "type": "small_airport", + "name": "Frontier Field", + "latitude_deg": "40.617047", + "longitude_deg": "-100.725821", + "elevation_ft": "2980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Maywood", + "scheduled_service": "no", + "gps_code": "NE15", + "local_code": "NE15" + }, + { + "id": "348859", + "ident": "US-5529", + "type": "small_airport", + "name": "Hull Airport", + "latitude_deg": "39.71693", + "longitude_deg": "-91.21122", + "elevation_ft": "468", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hull", + "scheduled_service": "no" + }, + { + "id": "348860", + "ident": "US-5530", + "type": "closed", + "name": "Long Pond Airport", + "latitude_deg": "40.29428", + "longitude_deg": "-91.45739", + "elevation_ft": "484", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Wilcox Township", + "scheduled_service": "no" + }, + { + "id": "348861", + "ident": "US-5531", + "type": "small_airport", + "name": "LZ Bravo Airport", + "latitude_deg": "39.63695", + "longitude_deg": "-92.16716", + "elevation_ft": "787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Woodlawn Township", + "scheduled_service": "no" + }, + { + "id": "348862", + "ident": "US-5532", + "type": "small_airport", + "name": "Campbell Airport", + "latitude_deg": "40.23259", + "longitude_deg": "-90.37979", + "elevation_ft": "684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Astoria", + "scheduled_service": "no" + }, + { + "id": "348863", + "ident": "US-5533", + "type": "closed", + "name": "Lewisburg Airfield", + "latitude_deg": "40.97019", + "longitude_deg": "-76.89879", + "elevation_ft": "455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lewisburg", + "scheduled_service": "no" + }, + { + "id": "348874", + "ident": "US-5534", + "type": "closed", + "name": "Willow Grove Airport", + "latitude_deg": "40.53386", + "longitude_deg": "-90.80404", + "elevation_ft": "747", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Blandinsville", + "scheduled_service": "no" + }, + { + "id": "348875", + "ident": "US-5535", + "type": "small_airport", + "name": "Martins Airport", + "latitude_deg": "40.40328", + "longitude_deg": "-91.16885", + "elevation_ft": "692", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Carthage", + "scheduled_service": "no" + }, + { + "id": "348876", + "ident": "US-5536", + "type": "closed", + "name": "Carlyle Airpark", + "latitude_deg": "38.63531", + "longitude_deg": "-89.39577", + "elevation_ft": "472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Carlyle", + "scheduled_service": "no" + }, + { + "id": "348877", + "ident": "US-5537", + "type": "small_airport", + "name": "Twenhafel Field", + "latitude_deg": "38.53616", + "longitude_deg": "-89.33475", + "elevation_ft": "453", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Carlyle", + "scheduled_service": "no" + }, + { + "id": "348878", + "ident": "US-5538", + "type": "small_airport", + "name": "Shubert Airport", + "latitude_deg": "38.27432", + "longitude_deg": "-89.63394", + "elevation_ft": "472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Coulterville", + "scheduled_service": "no" + }, + { + "id": "348879", + "ident": "US-5539", + "type": "closed", + "name": "Skillet Knob Heliport", + "latitude_deg": "33.23041", + "longitude_deg": "-106.64061", + "elevation_ft": "7589", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "White Sands", + "scheduled_service": "no" + }, + { + "id": "348880", + "ident": "US-5540", + "type": "small_airport", + "name": "Sunspot Airport", + "latitude_deg": "32.79288", + "longitude_deg": "-105.82026", + "elevation_ft": "9078", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Sunspot", + "scheduled_service": "no" + }, + { + "id": "348881", + "ident": "US-5541", + "type": "closed", + "name": "Delassus Airport", + "latitude_deg": "37.91466", + "longitude_deg": "-89.94062", + "elevation_ft": "377", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Kaskaskia", + "scheduled_service": "no" + }, + { + "id": "348882", + "ident": "US-5542", + "type": "closed", + "name": "Red Valley Airport", + "latitude_deg": "36.61827", + "longitude_deg": "-109.06264", + "elevation_ft": "5732", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Red Valley", + "scheduled_service": "no", + "keywords": "Red Rock, Tsé Łichííʼ Dah Azkání" + }, + { + "id": "348908", + "ident": "US-5543", + "type": "closed", + "name": "Pepin Airport", + "latitude_deg": "44.4411", + "longitude_deg": "-92.12858", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Pepin", + "scheduled_service": "no" + }, + { + "id": "348950", + "ident": "US-5544", + "type": "heliport", + "name": "Arizona General Hospital Mesa Heliport", + "latitude_deg": "33.35147", + "longitude_deg": "-111.63631", + "elevation_ft": "1407", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Mesa", + "scheduled_service": "no" + }, + { + "id": "348951", + "ident": "US-5545", + "type": "small_airport", + "name": "Yellowstone Mesa Airport", + "latitude_deg": "36.75415", + "longitude_deg": "-112.94444", + "elevation_ft": "5520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Fredonia", + "scheduled_service": "no" + }, + { + "id": "348952", + "ident": "US-5546", + "type": "small_airport", + "name": "Pipe Spring Airport", + "latitude_deg": "36.85311", + "longitude_deg": "-112.73801", + "elevation_ft": "4885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Fredonia", + "scheduled_service": "no" + }, + { + "id": "348953", + "ident": "US-5547", + "type": "small_airport", + "name": "Kinney Flat Airport", + "latitude_deg": "36.3612", + "longitude_deg": "-113.30832", + "elevation_ft": "5318", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Littlefield", + "scheduled_service": "no" + }, + { + "id": "348954", + "ident": "US-5548", + "type": "heliport", + "name": "Serenity Helicopters Picnic Area Heliport", + "latitude_deg": "35.95707", + "longitude_deg": "-113.76217", + "elevation_ft": "2070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peach Springs", + "scheduled_service": "no" + }, + { + "id": "348955", + "ident": "US-5549", + "type": "heliport", + "name": "Waterfall Rapids Picnic Area Heliport", + "latitude_deg": "35.963928", + "longitude_deg": "-113.755538", + "elevation_ft": "1907", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peach Springs", + "scheduled_service": "no" + }, + { + "id": "348956", + "ident": "US-5550", + "type": "heliport", + "name": "Sundance Helicopters Picnic Area Heliport", + "latitude_deg": "35.967192", + "longitude_deg": "-113.766126", + "elevation_ft": "1440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peach Springs", + "scheduled_service": "no" + }, + { + "id": "348957", + "ident": "US-5551", + "type": "heliport", + "name": "Maverick Helicopters Picnic Area Heliport", + "latitude_deg": "35.96004", + "longitude_deg": "-113.74452", + "elevation_ft": "1486", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peach Springs", + "scheduled_service": "no" + }, + { + "id": "348959", + "ident": "US-5552", + "type": "small_airport", + "name": "Penn Valley Airstrip", + "latitude_deg": "36.1984", + "longitude_deg": "-113.5128", + "elevation_ft": "5991", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Littlefield", + "scheduled_service": "no" + }, + { + "id": "348960", + "ident": "US-5553", + "type": "closed", + "name": "Clifton Airport", + "latitude_deg": "40.94075", + "longitude_deg": "-87.92314", + "elevation_ft": "202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Clifton", + "scheduled_service": "no" + }, + { + "id": "348981", + "ident": "US-5554", + "type": "closed", + "name": "Hospah Airport", + "latitude_deg": "35.73348", + "longitude_deg": "-107.73584", + "elevation_ft": "6916", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Ojo Encino", + "scheduled_service": "no" + }, + { + "id": "348982", + "ident": "US-5555", + "type": "closed", + "name": "Whitehorse Airport", + "latitude_deg": "35.82138", + "longitude_deg": "-107.74815", + "elevation_ft": "6657", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Cuba", + "scheduled_service": "no" + }, + { + "id": "348985", + "ident": "US-5556", + "type": "closed", + "name": "Wertz Oilfield Airport", + "latitude_deg": "42.2235", + "longitude_deg": "-107.51002", + "elevation_ft": "6711", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Rawlins", + "scheduled_service": "no" + }, + { + "id": "348986", + "ident": "US-5557", + "type": "small_airport", + "name": "South Pass City Airport", + "latitude_deg": "42.46252", + "longitude_deg": "-108.79917", + "elevation_ft": "7949", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "South Pass City", + "scheduled_service": "no" + }, + { + "id": "348987", + "ident": "US-5558", + "type": "closed", + "name": "Sun Valley Airport", + "latitude_deg": "40.51181", + "longitude_deg": "-81.41813", + "elevation_ft": "943", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "New Philadelphia", + "scheduled_service": "no" + }, + { + "id": "348994", + "ident": "US-5559", + "type": "small_airport", + "name": "Wroten Island Airport", + "latitude_deg": "38.32299", + "longitude_deg": "-76.1966", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Crapo", + "scheduled_service": "no" + }, + { + "id": "348996", + "ident": "US-5560", + "type": "closed", + "name": "Leach Lake Target Airfield", + "latitude_deg": "35.59266", + "longitude_deg": "-116.681", + "elevation_ft": "2042", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fort Irwin", + "scheduled_service": "no" + }, + { + "id": "348997", + "ident": "US-5561", + "type": "small_airport", + "name": "Leach Lake West Airfield", + "latitude_deg": "35.58115", + "longitude_deg": "-116.72465", + "elevation_ft": "2133", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fort Irwin", + "scheduled_service": "no" + }, + { + "id": "348998", + "ident": "US-5562", + "type": "closed", + "name": "Leach Lake South Airfield", + "latitude_deg": "35.56825", + "longitude_deg": "-116.68931", + "elevation_ft": "2102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fort Irwin", + "scheduled_service": "no" + }, + { + "id": "349003", + "ident": "US-5563", + "type": "closed", + "name": "Alamo Hueco Airport", + "latitude_deg": "31.46749", + "longitude_deg": "-108.51879", + "elevation_ft": "4550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Hachita", + "scheduled_service": "no" + }, + { + "id": "349020", + "ident": "US-5564", + "type": "small_airport", + "name": "El Paso Natural Gas Company Airport", + "latitude_deg": "33.70653", + "longitude_deg": "-104.55096", + "elevation_ft": "3824", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Roswell", + "scheduled_service": "no" + }, + { + "id": "349023", + "ident": "US-5565", + "type": "heliport", + "name": "Orogrande Range Camp Heliport", + "latitude_deg": "32.40921", + "longitude_deg": "-106.14773", + "elevation_ft": "4200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Orogrande", + "scheduled_service": "no" + }, + { + "id": "349024", + "ident": "US-5566", + "type": "small_airport", + "name": "Fort Bliss MacGregor Range Assault Strip", + "latitude_deg": "32.41794", + "longitude_deg": "-105.99551", + "elevation_ft": "4081", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Orogrande", + "scheduled_service": "no" + }, + { + "id": "349025", + "ident": "US-5567", + "type": "closed", + "name": "Orogrande Airport", + "latitude_deg": "32.38793", + "longitude_deg": "-106.14012", + "elevation_ft": "4203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Orogrande", + "scheduled_service": "no" + }, + { + "id": "349026", + "ident": "US-5568", + "type": "closed", + "name": "White Sands Missile Range Airstrip", + "latitude_deg": "32.4127", + "longitude_deg": "-106.25767", + "elevation_ft": "4047", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "White Sands", + "scheduled_service": "no" + }, + { + "id": "349040", + "ident": "US-5569", + "type": "small_airport", + "name": "E-501 Aviation Airport", + "latitude_deg": "32.11584", + "longitude_deg": "-106.3757", + "elevation_ft": "4052", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Chaparral", + "scheduled_service": "no" + }, + { + "id": "349041", + "ident": "US-5570", + "type": "closed", + "name": "Thompson Reservoir South Airport", + "latitude_deg": "32.47876", + "longitude_deg": "-106.32598", + "elevation_ft": "3994", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "White Sands", + "scheduled_service": "no" + }, + { + "id": "349042", + "ident": "US-5571", + "type": "closed", + "name": "Thompson Reservoir Airport", + "latitude_deg": "32.51059", + "longitude_deg": "-106.33034", + "elevation_ft": "3980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "White Sands", + "scheduled_service": "no" + }, + { + "id": "349043", + "ident": "US-5572", + "type": "heliport", + "name": "White Sands Missile Range South Heliport", + "latitude_deg": "32.40791", + "longitude_deg": "-106.27509", + "elevation_ft": "4045", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "White Sands", + "scheduled_service": "no" + }, + { + "id": "349044", + "ident": "US-5573", + "type": "heliport", + "name": "Orogrande North Heliport 1", + "latitude_deg": "32.427155", + "longitude_deg": "-106.176229", + "elevation_ft": "4094", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Orogrande", + "scheduled_service": "no" + }, + { + "id": "349045", + "ident": "US-5574", + "type": "heliport", + "name": "Orogrande North Heliport 2", + "latitude_deg": "32.434105", + "longitude_deg": "-106.178241", + "elevation_ft": "4062", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Orogrande", + "scheduled_service": "no" + }, + { + "id": "349048", + "ident": "US-5575", + "type": "closed", + "name": "Harrington Flat Airport", + "latitude_deg": "38.86752", + "longitude_deg": "-122.74342", + "elevation_ft": "2893", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Cobb", + "scheduled_service": "no" + }, + { + "id": "349049", + "ident": "US-5576", + "type": "small_airport", + "name": "Stevensburg Airport", + "latitude_deg": "38.462416", + "longitude_deg": "-77.90617", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Culpeper", + "scheduled_service": "no" + }, + { + "id": "349051", + "ident": "US-5577", + "type": "small_airport", + "name": "Thornton River Airport", + "latitude_deg": "38.63296", + "longitude_deg": "-78.08321", + "elevation_ft": "376", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Castleton", + "scheduled_service": "no" + }, + { + "id": "349052", + "ident": "US-5578", + "type": "heliport", + "name": "Carillon Giles Community Hospital Heliport", + "latitude_deg": "37.33385", + "longitude_deg": "-80.71262", + "elevation_ft": "1983", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Pearlsburg", + "scheduled_service": "no", + "gps_code": "VA67", + "local_code": "VA67" + }, + { + "id": "349053", + "ident": "US-5579", + "type": "small_airport", + "name": "Shackelford Airport", + "latitude_deg": "38.590661", + "longitude_deg": "-78.227963", + "elevation_ft": "688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Sperryville", + "scheduled_service": "no" + }, + { + "id": "349054", + "ident": "US-5580", + "type": "heliport", + "name": "Labette Health Heliport", + "latitude_deg": "37.32175", + "longitude_deg": "-95.26572", + "elevation_ft": "886", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Parsons", + "scheduled_service": "no" + }, + { + "id": "349070", + "ident": "US-5581", + "type": "heliport", + "name": "Alta Vista Regional Hospital Heliport", + "latitude_deg": "35.62234", + "longitude_deg": "-105.21071", + "elevation_ft": "6505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Las Vegas", + "scheduled_service": "no" + }, + { + "id": "349071", + "ident": "US-5582", + "type": "closed", + "name": "Pendaries Village Airfield", + "latitude_deg": "35.8515", + "longitude_deg": "-105.37701", + "elevation_ft": "7512", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Rociada", + "scheduled_service": "no" + }, + { + "id": "349072", + "ident": "US-5583", + "type": "small_airport", + "name": "Mora Ranch Airport", + "latitude_deg": "36.15948", + "longitude_deg": "-104.91113", + "elevation_ft": "7054", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Wagon Mound", + "scheduled_service": "no" + }, + { + "id": "349074", + "ident": "US-5584", + "type": "closed", + "name": "Red River Ranch Airport", + "latitude_deg": "36.2406", + "longitude_deg": "-104.60629", + "elevation_ft": "5953", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Springer", + "scheduled_service": "no" + }, + { + "id": "349076", + "ident": "US-5585", + "type": "heliport", + "name": "Colquitt Regional Medical Center Heliport", + "latitude_deg": "31.12602", + "longitude_deg": "-83.77869", + "elevation_ft": "308", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Moultrie", + "scheduled_service": "no" + }, + { + "id": "349077", + "ident": "US-5586", + "type": "closed", + "name": "Millican Airport", + "latitude_deg": "43.87571", + "longitude_deg": "-120.91611", + "elevation_ft": "4323", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Bend", + "scheduled_service": "no" + }, + { + "id": "349078", + "ident": "US-5587", + "type": "closed", + "name": "Barkers Field", + "latitude_deg": "43.56009", + "longitude_deg": "-124.18514", + "elevation_ft": "353", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "North Bend", + "scheduled_service": "no" + }, + { + "id": "349080", + "ident": "US-5588", + "type": "closed", + "name": "Pomme Aero Airport", + "latitude_deg": "37.91439", + "longitude_deg": "-93.39413", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Wheatland", + "scheduled_service": "no" + }, + { + "id": "349083", + "ident": "US-5589", + "type": "closed", + "name": "Ottawa Airport / Skydive Chicago Airfield", + "latitude_deg": "41.36464", + "longitude_deg": "-88.85958", + "elevation_ft": "616", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Ottawa", + "scheduled_service": "no", + "keywords": "C13" + }, + { + "id": "349085", + "ident": "US-5590", + "type": "small_airport", + "name": "Tierra Amarilla / El Vado Lake State Park Airport", + "latitude_deg": "36.62884", + "longitude_deg": "-106.71482", + "elevation_ft": "7245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Tierra Amarilla", + "scheduled_service": "no" + }, + { + "id": "349086", + "ident": "US-5591", + "type": "closed", + "name": "Dulce Airport", + "latitude_deg": "36.92468", + "longitude_deg": "-106.9906", + "elevation_ft": "6824", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Dulce", + "scheduled_service": "no" + }, + { + "id": "349087", + "ident": "US-5592", + "type": "heliport", + "name": "Jicarilla Apache Fish and Game Heliport", + "latitude_deg": "36.93097", + "longitude_deg": "-106.99343", + "elevation_ft": "6768", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Dulce", + "scheduled_service": "no" + }, + { + "id": "349088", + "ident": "US-5593", + "type": "small_airport", + "name": "Lama Airport", + "latitude_deg": "37.24671", + "longitude_deg": "-105.92875", + "elevation_ft": "7613", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Sanford", + "scheduled_service": "no" + }, + { + "id": "349089", + "ident": "US-5594", + "type": "closed", + "name": "Crowther Airport", + "latitude_deg": "37.2497", + "longitude_deg": "-105.91221", + "elevation_ft": "7610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Sanford", + "scheduled_service": "no" + }, + { + "id": "349091", + "ident": "US-5595", + "type": "closed", + "name": "Crandall Airport", + "latitude_deg": "42.60591", + "longitude_deg": "-82.57682", + "elevation_ft": "579", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Harsens Island", + "scheduled_service": "no" + }, + { + "id": "349095", + "ident": "US-5596", + "type": "closed", + "name": "Fort Bliss MacGregor Range Target Airfield", + "latitude_deg": "32.34487", + "longitude_deg": "-105.81584", + "elevation_ft": "5325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Orogrande", + "scheduled_service": "no" + }, + { + "id": "349106", + "ident": "US-5597", + "type": "heliport", + "name": "East Cooper Medical Center Heliport", + "latitude_deg": "32.822246", + "longitude_deg": "-79.850403", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Mount Pleasant", + "scheduled_service": "no", + "gps_code": "20SC", + "local_code": "20SC" + }, + { + "id": "349108", + "ident": "US-5598", + "type": "small_airport", + "name": "Bar Triangle Airport", + "latitude_deg": "30.793129", + "longitude_deg": "-99.216548", + "elevation_ft": "1684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mason", + "scheduled_service": "no", + "gps_code": "5TX1", + "local_code": "5TX1" + }, + { + "id": "349117", + "ident": "US-5599", + "type": "small_airport", + "name": "Crumley Field", + "latitude_deg": "36.504337", + "longitude_deg": "-82.183045", + "elevation_ft": "1565", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Bristol", + "scheduled_service": "no", + "gps_code": "1TN9", + "local_code": "1TN9" + }, + { + "id": "349130", + "ident": "US-5600", + "type": "small_airport", + "name": "Roberts Airport", + "latitude_deg": "43.73061", + "longitude_deg": "-112.157", + "elevation_ft": "4780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Robert", + "scheduled_service": "no" + }, + { + "id": "349132", + "ident": "US-5601", + "type": "closed", + "name": "Naval Air Station Tongue Point", + "latitude_deg": "46.198835", + "longitude_deg": "-123.762031", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Astoria", + "scheduled_service": "no" + }, + { + "id": "349133", + "ident": "US-5602", + "type": "closed", + "name": "Wheless Field", + "latitude_deg": "46.15338", + "longitude_deg": "-123.82626", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Astoria", + "scheduled_service": "no" + }, + { + "id": "349137", + "ident": "US-5603", + "type": "small_airport", + "name": "Fort Benton Reservation Airport", + "latitude_deg": "47.81434", + "longitude_deg": "-110.65391", + "elevation_ft": "2638", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Fort Benton", + "scheduled_service": "no" + }, + { + "id": "349138", + "ident": "US-5604", + "type": "closed", + "name": "Queets Airport", + "latitude_deg": "47.5401", + "longitude_deg": "-124.33143", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Queets", + "scheduled_service": "no" + }, + { + "id": "349139", + "ident": "US-5605", + "type": "closed", + "name": "Briggs Airport", + "latitude_deg": "40.71078", + "longitude_deg": "-81.39651", + "elevation_ft": "1073", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "East Sparta", + "scheduled_service": "no" + }, + { + "id": "349140", + "ident": "US-5606", + "type": "small_airport", + "name": "North Fork Airport", + "latitude_deg": "48.93527", + "longitude_deg": "-114.3969", + "elevation_ft": "3842", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Polebridge", + "scheduled_service": "no" + }, + { + "id": "349142", + "ident": "US-5607", + "type": "small_airport", + "name": "Calpine South Airport", + "latitude_deg": "39.63915", + "longitude_deg": "-120.42927", + "elevation_ft": "4936", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Calpine", + "scheduled_service": "no" + }, + { + "id": "349143", + "ident": "US-5608", + "type": "small_airport", + "name": "Maddalena Airport", + "latitude_deg": "39.82365", + "longitude_deg": "-120.28408", + "elevation_ft": "4904", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Beckwourth", + "scheduled_service": "no" + }, + { + "id": "349144", + "ident": "US-5609", + "type": "small_airport", + "name": "Winnemucca Ranch Airport", + "latitude_deg": "39.94808", + "longitude_deg": "-119.80228", + "elevation_ft": "5167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Reno", + "scheduled_service": "no" + }, + { + "id": "349145", + "ident": "US-5610", + "type": "small_airport", + "name": "W Diamond Ranch Airport", + "latitude_deg": "43.88476", + "longitude_deg": "-107.34413", + "elevation_ft": "4850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Ten Sleep", + "scheduled_service": "no" + }, + { + "id": "349146", + "ident": "US-5611", + "type": "closed", + "name": "Clovelly Airport", + "latitude_deg": "29.54088", + "longitude_deg": "-90.30687", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cut Off", + "scheduled_service": "no" + }, + { + "id": "349148", + "ident": "US-5612", + "type": "seaplane_base", + "name": "Clovelly Farms Seaplane Base", + "latitude_deg": "29.55333", + "longitude_deg": "-90.27527", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cut Off", + "scheduled_service": "no" + }, + { + "id": "349149", + "ident": "US-5613", + "type": "heliport", + "name": "Mississippi Baptist Medical Center Heliport", + "latitude_deg": "32.314982", + "longitude_deg": "-90.180599", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "12MS", + "local_code": "12MS" + }, + { + "id": "349150", + "ident": "US-5614", + "type": "heliport", + "name": "Reid Hospital Heliport", + "latitude_deg": "39.8643", + "longitude_deg": "-84.88288", + "elevation_ft": "1073", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "IN68", + "local_code": "IN68" + }, + { + "id": "349229", + "ident": "US-5615", + "type": "closed", + "name": "Martins Creek Airport", + "latitude_deg": "40.806", + "longitude_deg": "-75.116", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Martins Creek", + "scheduled_service": "no" + }, + { + "id": "349230", + "ident": "US-5616", + "type": "closed", + "name": "Honesdale Airport", + "latitude_deg": "41.55155", + "longitude_deg": "-75.22878", + "elevation_ft": "943", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Honesdale", + "scheduled_service": "no" + }, + { + "id": "349231", + "ident": "US-5617", + "type": "closed", + "name": "Lehighton Airport", + "latitude_deg": "40.82578", + "longitude_deg": "-75.72454", + "elevation_ft": "544", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lehighton", + "scheduled_service": "no" + }, + { + "id": "349233", + "ident": "US-5618", + "type": "closed", + "name": "Betts Army Airfield", + "latitude_deg": "41.19529", + "longitude_deg": "-75.42495", + "elevation_ft": "1992", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tobyhanna", + "scheduled_service": "no" + }, + { + "id": "349262", + "ident": "US-5619", + "type": "closed", + "name": "Ingalls Airport", + "latitude_deg": "41.47855", + "longitude_deg": "-81.40026", + "elevation_ft": "736", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Chagrin Falls", + "scheduled_service": "no" + }, + { + "id": "349268", + "ident": "US-5620", + "type": "heliport", + "name": "Chevron Southpass Tank Battery E-3 Heliport", + "latitude_deg": "29.03785", + "longitude_deg": "-89.31892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no" + }, + { + "id": "349269", + "ident": "US-5621", + "type": "seaplane_base", + "name": "Chevron Southpass Tank Battery E-3 Seaplane Base", + "latitude_deg": "29.03716", + "longitude_deg": "-89.31955", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no" + }, + { + "id": "349270", + "ident": "US-5622", + "type": "seaplane_base", + "name": "Chevron Southpass Tank Battery W-2 Seaplane Base", + "latitude_deg": "29.04025", + "longitude_deg": "-89.32897", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no" + }, + { + "id": "349271", + "ident": "US-5623", + "type": "seaplane_base", + "name": "Chevron Southpass Tank Battery W-1 Seaplane Base", + "latitude_deg": "29.089656", + "longitude_deg": "-89.287025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no" + }, + { + "id": "349272", + "ident": "US-5624", + "type": "heliport", + "name": "Chevron Southpass Tank Battery W-1 Heliport", + "latitude_deg": "29.01079", + "longitude_deg": "-89.35651", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no" + }, + { + "id": "349273", + "ident": "US-5625", + "type": "heliport", + "name": "East Bay Heliport", + "latitude_deg": "29.031776", + "longitude_deg": "-89.249786", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no" + }, + { + "id": "349274", + "ident": "US-5626", + "type": "seaplane_base", + "name": "E-5 Tank Battery Seaplane Base", + "latitude_deg": "28.98399", + "longitude_deg": "-89.36027", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no" + }, + { + "id": "349275", + "ident": "US-5627", + "type": "seaplane_base", + "name": "Quarantine Bay Seaplane Base", + "latitude_deg": "29.40235", + "longitude_deg": "-89.52115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Venice", + "scheduled_service": "no" + }, + { + "id": "349276", + "ident": "US-5628", + "type": "heliport", + "name": "ProMedica Hospital Medical Complex Heliport", + "latitude_deg": "41.6794", + "longitude_deg": "-83.5928", + "elevation_ft": "618", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Toledo", + "scheduled_service": "no" + }, + { + "id": "349277", + "ident": "US-5629", + "type": "heliport", + "name": "Mercy Health Perrysburg Hospital Heliport", + "latitude_deg": "41.53578", + "longitude_deg": "-83.63824", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Perrysburg", + "scheduled_service": "no" + }, + { + "id": "349278", + "ident": "US-5630", + "type": "heliport", + "name": "ProMedica Bay Park Hospital Heliport", + "latitude_deg": "41.62169", + "longitude_deg": "-83.47924", + "elevation_ft": "619", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Oregon", + "scheduled_service": "no" + }, + { + "id": "349279", + "ident": "US-5631", + "type": "heliport", + "name": "Alliance Refinery Heliport", + "latitude_deg": "29.68005", + "longitude_deg": "-89.98019", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Belle Chasse", + "scheduled_service": "no" + }, + { + "id": "349280", + "ident": "US-5632", + "type": "heliport", + "name": "ProMedica Dorothy L Kern Cancer Center Heliport", + "latitude_deg": "41.37943", + "longitude_deg": "-83.11641", + "elevation_ft": "611", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Fremont", + "scheduled_service": "no" + }, + { + "id": "349282", + "ident": "US-5633", + "type": "closed", + "name": "St. Joseph's Hospital Heliport", + "latitude_deg": "44.94794", + "longitude_deg": "-93.10044", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "St Paul", + "scheduled_service": "no" + }, + { + "id": "349283", + "ident": "US-5634", + "type": "heliport", + "name": "Prairie Island Nuclear Generating Plant Heliport", + "latitude_deg": "44.62279", + "longitude_deg": "-92.64205", + "elevation_ft": "696", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Welch", + "scheduled_service": "no" + }, + { + "id": "349284", + "ident": "US-5635", + "type": "heliport", + "name": "Henry County Hospital Heliport", + "latitude_deg": "41.41189", + "longitude_deg": "-84.08765", + "elevation_ft": "671", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Napoleon", + "scheduled_service": "no", + "local_code": "OH06" + }, + { + "id": "349285", + "ident": "US-5636", + "type": "closed", + "name": "Warsaw Airport", + "latitude_deg": "40.3319", + "longitude_deg": "-91.44644", + "elevation_ft": "488", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Warsaw", + "scheduled_service": "no" + }, + { + "id": "349341", + "ident": "US-5637", + "type": "closed", + "name": "Hitchcock Airport", + "latitude_deg": "46.37715", + "longitude_deg": "-120.74821", + "elevation_ft": "1024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "White Swan", + "scheduled_service": "no" + }, + { + "id": "349376", + "ident": "US-5638", + "type": "closed", + "name": "Waynesboro Worley Field", + "latitude_deg": "39.73443", + "longitude_deg": "-77.53561", + "elevation_ft": "714", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Waynesboro", + "scheduled_service": "no" + }, + { + "id": "349409", + "ident": "US-5639", + "type": "closed", + "name": "San Luis Airport", + "latitude_deg": "37.192146", + "longitude_deg": "-105.463536", + "elevation_ft": "7973", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "San Luis", + "scheduled_service": "no" + }, + { + "id": "349416", + "ident": "US-5640", + "type": "closed", + "name": "Square Top Airport", + "latitude_deg": "42.54353", + "longitude_deg": "-109.61888", + "elevation_ft": "7370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Boulder", + "scheduled_service": "no" + }, + { + "id": "349421", + "ident": "US-5641", + "type": "small_airport", + "name": "Nijmegen UAS Launch and Recovery Site", + "latitude_deg": "35.09893", + "longitude_deg": "-79.33013", + "elevation_ft": "411", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Aberdeen", + "scheduled_service": "no" + }, + { + "id": "349422", + "ident": "US-5642", + "type": "small_airport", + "name": "Luzon Drop Zone Airfield", + "latitude_deg": "35.0123", + "longitude_deg": "-79.46216", + "elevation_ft": "346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Wagram", + "scheduled_service": "no" + }, + { + "id": "349462", + "ident": "US-5643", + "type": "small_airport", + "name": "Heritage Farm Field", + "latitude_deg": "41.381985", + "longitude_deg": "-86.43116", + "elevation_ft": "771", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Plymouth", + "scheduled_service": "no", + "gps_code": "18IN", + "local_code": "18IN" + }, + { + "id": "349466", + "ident": "US-5644", + "type": "small_airport", + "name": "Haven Center Airport", + "latitude_deg": "41.113", + "longitude_deg": "-84.90356", + "elevation_ft": "753", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Fort Wayne", + "scheduled_service": "no", + "gps_code": "26IN", + "local_code": "26IN" + }, + { + "id": "349468", + "ident": "US-5645", + "type": "small_airport", + "name": "Sands Hill Airport", + "latitude_deg": "30.119444", + "longitude_deg": "-96.712222", + "elevation_ft": "403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Carmine", + "scheduled_service": "no", + "gps_code": "27TX", + "local_code": "27TX" + }, + { + "id": "349474", + "ident": "US-5646", + "type": "heliport", + "name": "Freedom Heliport", + "latitude_deg": "41.109444", + "longitude_deg": "-85.222778", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Fort Wayne", + "scheduled_service": "no", + "gps_code": "28IN", + "local_code": "28IN" + }, + { + "id": "349475", + "ident": "US-5647", + "type": "small_airport", + "name": "Cherry Field", + "latitude_deg": "43.072603", + "longitude_deg": "-86.029628", + "elevation_ft": "629", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Nunica", + "scheduled_service": "no", + "gps_code": "2MI0", + "local_code": "2MI0" + }, + { + "id": "349483", + "ident": "US-5648", + "type": "small_airport", + "name": "Kauffman Airfield Ultralight Flightpark", + "latitude_deg": "44.71394", + "longitude_deg": "-84.067251", + "elevation_ft": "1137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Fairview", + "scheduled_service": "no", + "gps_code": "2MI4", + "local_code": "2MI4" + }, + { + "id": "349485", + "ident": "US-5649", + "type": "small_airport", + "name": "Scudder Field", + "latitude_deg": "38.918164", + "longitude_deg": "-84.974235", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Rising Sun", + "scheduled_service": "no", + "gps_code": "32IN", + "local_code": "32IN" + }, + { + "id": "349494", + "ident": "US-5650", + "type": "heliport", + "name": "Swan Lake Heliport", + "latitude_deg": "42.459958", + "longitude_deg": "-85.971292", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Allegan", + "scheduled_service": "no", + "gps_code": "4MI3", + "local_code": "4MI3" + }, + { + "id": "349498", + "ident": "US-5651", + "type": "heliport", + "name": "Lewis Heliport", + "latitude_deg": "43.219556", + "longitude_deg": "-83.54764", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Millington", + "scheduled_service": "no", + "gps_code": "5MI4", + "local_code": "5MI4" + }, + { + "id": "349507", + "ident": "US-5652", + "type": "small_airport", + "name": "Hickerson Airport", + "latitude_deg": "39.939297", + "longitude_deg": "-83.902082", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Springfield", + "scheduled_service": "no", + "gps_code": "75OH", + "local_code": "75OH" + }, + { + "id": "349513", + "ident": "US-5653", + "type": "small_airport", + "name": "Red Hawk Airport", + "latitude_deg": "31.218114", + "longitude_deg": "-92.174134", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Effie", + "scheduled_service": "no", + "gps_code": "80LA", + "local_code": "80LA" + }, + { + "id": "349525", + "ident": "US-5654", + "type": "heliport", + "name": "Russellville Hospital Pad Heliport", + "latitude_deg": "34.510677", + "longitude_deg": "-87.719296", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Russellville", + "scheduled_service": "no", + "gps_code": "AL15", + "local_code": "AL15" + }, + { + "id": "349535", + "ident": "US-5655", + "type": "heliport", + "name": "Quinault Indian Nation Heliport", + "latitude_deg": "47.339525", + "longitude_deg": "-124.282106", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Taholah", + "scheduled_service": "no", + "gps_code": "WA70", + "local_code": "WA70" + }, + { + "id": "349537", + "ident": "US-5656", + "type": "closed", + "name": "Creech Air Force Base Auxiliary Airfield", + "latitude_deg": "36.6416", + "longitude_deg": "-115.65891", + "elevation_ft": "3051", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Indian Springs", + "scheduled_service": "no" + }, + { + "id": "349538", + "ident": "US-5657", + "type": "small_airport", + "name": "Palmer Airport", + "latitude_deg": "39.99315", + "longitude_deg": "-92.11829", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Novelty", + "scheduled_service": "no" + }, + { + "id": "349539", + "ident": "US-5658", + "type": "closed", + "name": "Gough Airport", + "latitude_deg": "39.42031", + "longitude_deg": "-91.657", + "elevation_ft": "747", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Perry", + "scheduled_service": "no" + }, + { + "id": "349540", + "ident": "US-5659", + "type": "closed", + "name": "Dromey Airport", + "latitude_deg": "40.28207", + "longitude_deg": "-92.21848", + "elevation_ft": "801", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Greensburg", + "scheduled_service": "no" + }, + { + "id": "349541", + "ident": "US-5660", + "type": "small_airport", + "name": "Hurst Airport", + "latitude_deg": "30.93505", + "longitude_deg": "-90.5713", + "elevation_ft": "294", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kentwood", + "scheduled_service": "no", + "keywords": "Inspiration Park" + }, + { + "id": "349542", + "ident": "US-5661", + "type": "seaplane_base", + "name": "Knox Bay Seaplane Base", + "latitude_deg": "43.42704", + "longitude_deg": "-74.51613", + "elevation_ft": "1660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Piseco", + "scheduled_service": "no" + }, + { + "id": "349543", + "ident": "US-5662", + "type": "closed", + "name": "Eaglecrest Field", + "latitude_deg": "40.18839", + "longitude_deg": "-81.92797", + "elevation_ft": "999", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Conesville", + "scheduled_service": "no" + }, + { + "id": "349544", + "ident": "US-5663", + "type": "closed", + "name": "Robinson Arms Landing Airport", + "latitude_deg": "31.96173", + "longitude_deg": "-103.96332", + "elevation_ft": "2855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Orla", + "scheduled_service": "no", + "keywords": "Gray Rock" + }, + { + "id": "349545", + "ident": "US-5664", + "type": "small_airport", + "name": "Flying J Ranch Airport", + "latitude_deg": "29.81428", + "longitude_deg": "-92.35223", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Abbeville", + "scheduled_service": "no" + }, + { + "id": "349546", + "ident": "US-5665", + "type": "closed", + "name": "Hebert Airport", + "latitude_deg": "29.82279", + "longitude_deg": "-92.31795", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Abbeville", + "scheduled_service": "no" + }, + { + "id": "349547", + "ident": "US-5666", + "type": "closed", + "name": "Foresthill Airport", + "latitude_deg": "39.01816", + "longitude_deg": "-120.83928", + "elevation_ft": "3070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Foresthill", + "scheduled_service": "no" + }, + { + "id": "349548", + "ident": "US-5667", + "type": "closed", + "name": "Creighton Island Airport", + "latitude_deg": "31.50157", + "longitude_deg": "-81.33035", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Townsend", + "scheduled_service": "no" + }, + { + "id": "349549", + "ident": "US-5668", + "type": "closed", + "name": "Lagrange Airport", + "latitude_deg": "41.17055", + "longitude_deg": "-88.19013", + "elevation_ft": "587", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Essex", + "scheduled_service": "no" + }, + { + "id": "349550", + "ident": "US-5669", + "type": "small_airport", + "name": "Brownies Lebanon Airport", + "latitude_deg": "39.39813", + "longitude_deg": "-84.2054", + "elevation_ft": "879", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Lebanon", + "scheduled_service": "no", + "keywords": "Duff" + }, + { + "id": "349592", + "ident": "US-5670", + "type": "heliport", + "name": "Choctaw Nation Healthcare Center Heliport", + "latitude_deg": "34.756713", + "longitude_deg": "-95.083609", + "elevation_ft": "817", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Talihina", + "scheduled_service": "no", + "local_code": "OK35" + }, + { + "id": "349593", + "ident": "US-5671", + "type": "heliport", + "name": "Acoma-Canoncito-Laguna Hospital Heliport", + "latitude_deg": "35.06824", + "longitude_deg": "-107.572", + "elevation_ft": "6152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Acoma Pueblo", + "scheduled_service": "no", + "local_code": "NM60", + "keywords": "Acoma Hospital Heliport" + }, + { + "id": "349594", + "ident": "US-5672", + "type": "closed", + "name": "Salamanca Airport", + "latitude_deg": "42.15408", + "longitude_deg": "-78.74727", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Salamanca / Onë:dagö:h", + "scheduled_service": "no" + }, + { + "id": "349596", + "ident": "US-5673", + "type": "small_airport", + "name": "Moore Airport", + "latitude_deg": "34.27586", + "longitude_deg": "-84.59022", + "elevation_ft": "927", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Waleska", + "scheduled_service": "no" + }, + { + "id": "349597", + "ident": "US-5674", + "type": "closed", + "name": "Harris Neck Army Airfield", + "latitude_deg": "31.63973", + "longitude_deg": "-81.27142", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Townsend", + "scheduled_service": "no" + }, + { + "id": "349598", + "ident": "US-5675", + "type": "closed", + "name": "Harris Neck Intermediate Field", + "latitude_deg": "31.62179", + "longitude_deg": "-81.2664", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Townsend", + "scheduled_service": "no" + }, + { + "id": "349599", + "ident": "US-5676", + "type": "closed", + "name": "Matthews Ranch Airport", + "latitude_deg": "33.03078", + "longitude_deg": "-99.35166", + "elevation_ft": "1346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Albany", + "scheduled_service": "no" + }, + { + "id": "349600", + "ident": "US-5677", + "type": "closed", + "name": "Nergenah Airport", + "latitude_deg": "39.65421", + "longitude_deg": "-89.91538", + "elevation_ft": "652", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Loami", + "scheduled_service": "no" + }, + { + "id": "349601", + "ident": "US-5678", + "type": "closed", + "name": "Park Airport", + "latitude_deg": "39.65979", + "longitude_deg": "-89.88795", + "elevation_ft": "647", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Loami", + "scheduled_service": "no" + }, + { + "id": "349602", + "ident": "US-5679", + "type": "closed", + "name": "Negus Airport", + "latitude_deg": "39.73214", + "longitude_deg": "-90.08656", + "elevation_ft": "648", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Jacksonville", + "scheduled_service": "no" + }, + { + "id": "349603", + "ident": "US-5680", + "type": "closed", + "name": "Lloyd Airport", + "latitude_deg": "39.44805", + "longitude_deg": "-89.70339", + "elevation_ft": "668", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Girard", + "scheduled_service": "no" + }, + { + "id": "349613", + "ident": "US-5681", + "type": "closed", + "name": "Houghton Airport", + "latitude_deg": "38.75755", + "longitude_deg": "-75.7916", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Federalsburg", + "scheduled_service": "no" + }, + { + "id": "349615", + "ident": "US-5682", + "type": "closed", + "name": "Lower Marlboro Airport", + "latitude_deg": "38.65158", + "longitude_deg": "-76.67811", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Lower Marlboro", + "scheduled_service": "no" + }, + { + "id": "349616", + "ident": "US-5683", + "type": "small_airport", + "name": "Mellomar Airport", + "latitude_deg": "38.652", + "longitude_deg": "-76.674", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Lower Marlboro", + "scheduled_service": "no" + }, + { + "id": "349617", + "ident": "US-5684", + "type": "closed", + "name": "Park Hall Airport", + "latitude_deg": "38.22566", + "longitude_deg": "-76.44852", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Lexington Park", + "scheduled_service": "no" + }, + { + "id": "349618", + "ident": "US-5685", + "type": "closed", + "name": "Half Pone Point Airport", + "latitude_deg": "38.35145", + "longitude_deg": "-76.50452", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Hollywood", + "scheduled_service": "no" + }, + { + "id": "349619", + "ident": "US-5686", + "type": "closed", + "name": "La Plata Airfield", + "latitude_deg": "38.54409", + "longitude_deg": "-76.91969", + "elevation_ft": "193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "La Plata", + "scheduled_service": "no" + }, + { + "id": "349620", + "ident": "US-5687", + "type": "small_airport", + "name": "Nyce Airport", + "latitude_deg": "38.35103", + "longitude_deg": "-76.86327", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Newburg", + "scheduled_service": "no", + "keywords": "MD84" + }, + { + "id": "349622", + "ident": "US-5688", + "type": "heliport", + "name": "Claiborne Memorial Medical Center Heliport", + "latitude_deg": "32.79461", + "longitude_deg": "-93.06143", + "elevation_ft": "286", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Homer", + "scheduled_service": "no" + }, + { + "id": "349626", + "ident": "US-5689", + "type": "closed", + "name": "Tippetts Airport", + "latitude_deg": "29.862", + "longitude_deg": "-101.49129", + "elevation_ft": "1616", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Langtry", + "scheduled_service": "no" + }, + { + "id": "349627", + "ident": "US-5690", + "type": "small_airport", + "name": "Shudde Ranch Airport", + "latitude_deg": "29.830493", + "longitude_deg": "-102.431517", + "elevation_ft": "2168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no" + }, + { + "id": "349628", + "ident": "US-5691", + "type": "small_airport", + "name": "Stovall Ranch Airport", + "latitude_deg": "29.744507", + "longitude_deg": "-102.793136", + "elevation_ft": "2989", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no" + }, + { + "id": "349635", + "ident": "US-5692", + "type": "heliport", + "name": "Seminole Hospital Heliport", + "latitude_deg": "32.72067", + "longitude_deg": "-102.65497", + "elevation_ft": "3332", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seminole", + "scheduled_service": "no" + }, + { + "id": "349636", + "ident": "US-5693", + "type": "heliport", + "name": "Yoakum County Hospital Heliport", + "latitude_deg": "32.96939", + "longitude_deg": "-102.83611", + "elevation_ft": "3581", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Denver City", + "scheduled_service": "no" + }, + { + "id": "349637", + "ident": "US-5694", + "type": "closed", + "name": "Burchard Farms Airport", + "latitude_deg": "31.497607", + "longitude_deg": "-103.864861", + "elevation_ft": "3184", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Verhalen", + "scheduled_service": "no" + }, + { + "id": "349638", + "ident": "US-5695", + "type": "closed", + "name": "Rock House Crossing Airport", + "latitude_deg": "32.06071", + "longitude_deg": "-104.01947", + "elevation_ft": "2910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Loving", + "scheduled_service": "no" + }, + { + "id": "349639", + "ident": "US-5696", + "type": "closed", + "name": "McAdoo Airport", + "latitude_deg": "33.73042", + "longitude_deg": "-101.01393", + "elevation_ft": "2992", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "McAdoo", + "scheduled_service": "no" + }, + { + "id": "349640", + "ident": "US-5697", + "type": "heliport", + "name": "Hardeman County Memorial Hospital Heliport", + "latitude_deg": "34.29739", + "longitude_deg": "-99.74223", + "elevation_ft": "1569", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Quanah", + "scheduled_service": "no" + }, + { + "id": "349641", + "ident": "US-5698", + "type": "small_airport", + "name": "Double R Ranch Airport", + "latitude_deg": "36.78248", + "longitude_deg": "-95.41332", + "elevation_ft": "801", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Vinita", + "scheduled_service": "no", + "local_code": "OK05" + }, + { + "id": "349642", + "ident": "US-5699", + "type": "closed", + "name": "Michael Airport", + "latitude_deg": "34.67089", + "longitude_deg": "-99.85065", + "elevation_ft": "1596", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hollis", + "scheduled_service": "no" + }, + { + "id": "349643", + "ident": "US-5700", + "type": "closed", + "name": "Coomes Farms Airport", + "latitude_deg": "34.67752", + "longitude_deg": "-99.89168", + "elevation_ft": "1630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hollis", + "scheduled_service": "no" + }, + { + "id": "349644", + "ident": "US-5701", + "type": "heliport", + "name": "Olney Hamilton Hospital Heliport", + "latitude_deg": "33.36961", + "longitude_deg": "-98.76531", + "elevation_ft": "1197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Olney", + "scheduled_service": "no" + }, + { + "id": "349645", + "ident": "US-5702", + "type": "heliport", + "name": "Scorpion Ranch Heliport", + "latitude_deg": "34.05199", + "longitude_deg": "-119.56434", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Cruz Island", + "scheduled_service": "no" + }, + { + "id": "349646", + "ident": "US-5703", + "type": "heliport", + "name": "Anacapa Coast Guard Rainshed Heliport", + "latitude_deg": "34.01412", + "longitude_deg": "-119.36573", + "elevation_ft": "214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Anacapa Island", + "scheduled_service": "no" + }, + { + "id": "349648", + "ident": "US-5704", + "type": "closed", + "name": "Maljamar Airport", + "latitude_deg": "32.85694", + "longitude_deg": "-103.75478", + "elevation_ft": "4245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Maljamar", + "scheduled_service": "no" + }, + { + "id": "349649", + "ident": "US-5705", + "type": "closed", + "name": "Howe Airfield", + "latitude_deg": "41.25903", + "longitude_deg": "-105.58925", + "elevation_ft": "7225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Laramie", + "scheduled_service": "no" + }, + { + "id": "349650", + "ident": "US-5706", + "type": "closed", + "name": "Rays Airpark", + "latitude_deg": "41.24475", + "longitude_deg": "-105.73128", + "elevation_ft": "7208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Laramie", + "scheduled_service": "no" + }, + { + "id": "349651", + "ident": "US-5707", + "type": "heliport", + "name": "Reynolds Aerial Service Heliport", + "latitude_deg": "40.186799", + "longitude_deg": "-88.503984", + "elevation_ft": "711", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mansfield", + "scheduled_service": "no", + "gps_code": "6IL3", + "local_code": "6IL3" + }, + { + "id": "349652", + "ident": "US-5708", + "type": "closed", + "name": "Nelson Airport", + "latitude_deg": "41.41808", + "longitude_deg": "-88.47229", + "elevation_ft": "581", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Morris", + "scheduled_service": "no" + }, + { + "id": "349663", + "ident": "US-5709", + "type": "small_airport", + "name": "Curlew Valley Airport", + "latitude_deg": "41.95408", + "longitude_deg": "-112.80615", + "elevation_ft": "4480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Snowville", + "scheduled_service": "no" + }, + { + "id": "349664", + "ident": "US-5710", + "type": "small_airport", + "name": "Yale Road Airport", + "latitude_deg": "42.516859", + "longitude_deg": "-113.287715", + "elevation_ft": "4354", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Declo", + "scheduled_service": "no" + }, + { + "id": "349665", + "ident": "US-5711", + "type": "small_airport", + "name": "Heglar Creek Airport", + "latitude_deg": "42.50885", + "longitude_deg": "-113.23674", + "elevation_ft": "4426", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Declo", + "scheduled_service": "no" + }, + { + "id": "349666", + "ident": "US-5712", + "type": "small_airport", + "name": "Deseret Grain Storage Airport", + "latitude_deg": "42.436306", + "longitude_deg": "-113.856384", + "elevation_ft": "4288", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Burley", + "scheduled_service": "no", + "keywords": "North Kenyon" + }, + { + "id": "349667", + "ident": "US-5713", + "type": "closed", + "name": "Rehn Ranch Airport", + "latitude_deg": "42.49546", + "longitude_deg": "-113.12985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Declo", + "scheduled_service": "no" + }, + { + "id": "349669", + "ident": "US-5714", + "type": "closed", + "name": "Savage Ranch Landing Area", + "latitude_deg": "42.47325", + "longitude_deg": "-113.86132", + "elevation_ft": "4281", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Burley", + "scheduled_service": "no" + }, + { + "id": "349670", + "ident": "US-5715", + "type": "closed", + "name": "Klosterman Landing Area", + "latitude_deg": "42.67446", + "longitude_deg": "-113.77861", + "elevation_ft": "4213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Rupert", + "scheduled_service": "no" + }, + { + "id": "349671", + "ident": "US-5716", + "type": "heliport", + "name": "Cassia Regional Hospital Heliport", + "latitude_deg": "42.535093", + "longitude_deg": "-113.780331", + "elevation_ft": "4157", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Burley", + "scheduled_service": "no" + }, + { + "id": "349672", + "ident": "US-5717", + "type": "small_airport", + "name": "Kimama Airport", + "latitude_deg": "42.83987", + "longitude_deg": "-113.7909", + "elevation_ft": "4311", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Paul", + "scheduled_service": "no" + }, + { + "id": "349673", + "ident": "US-5718", + "type": "closed", + "name": "Newton Brothers Airport", + "latitude_deg": "42.81624", + "longitude_deg": "-113.74502", + "elevation_ft": "4372", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Rupert", + "scheduled_service": "no" + }, + { + "id": "349674", + "ident": "US-5719", + "type": "closed", + "name": "Jentsch Kearl Farms Number 1 Airport", + "latitude_deg": "42.83688", + "longitude_deg": "-113.56981", + "elevation_ft": "4374", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Rupert", + "scheduled_service": "no" + }, + { + "id": "349675", + "ident": "US-5720", + "type": "small_airport", + "name": "Jentsch Kearl Farms Number 2 Airport", + "latitude_deg": "42.833159", + "longitude_deg": "-113.545733", + "elevation_ft": "4324", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Rupert", + "scheduled_service": "no" + }, + { + "id": "349676", + "ident": "US-5721", + "type": "closed", + "name": "Bredding Ranch Landing Area", + "latitude_deg": "42.80589", + "longitude_deg": "-113.03665", + "elevation_ft": "4551", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "American Falls", + "scheduled_service": "no" + }, + { + "id": "349687", + "ident": "US-5722", + "type": "heliport", + "name": "Talladega Superspeedway Heliport", + "latitude_deg": "33.56988", + "longitude_deg": "-86.07012", + "elevation_ft": "518", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Lincoln", + "scheduled_service": "no" + }, + { + "id": "349690", + "ident": "US-5723", + "type": "heliport", + "name": "Kansas Speedway Heliport", + "latitude_deg": "39.11832", + "longitude_deg": "-94.82556", + "elevation_ft": "997", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Kansas City", + "scheduled_service": "no" + }, + { + "id": "349691", + "ident": "US-5724", + "type": "heliport", + "name": "Bristol Motor Speedway Heliport", + "latitude_deg": "36.51211", + "longitude_deg": "-82.2592", + "elevation_ft": "1464", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Bristol", + "scheduled_service": "no" + }, + { + "id": "349692", + "ident": "US-5725", + "type": "heliport", + "name": "Darlington Raceway Heliport", + "latitude_deg": "34.29622", + "longitude_deg": "-79.90726", + "elevation_ft": "154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Darlington", + "scheduled_service": "no" + }, + { + "id": "349694", + "ident": "US-5726", + "type": "heliport", + "name": "Nashville Superspeedway Heliport", + "latitude_deg": "36.04575", + "longitude_deg": "-86.40613", + "elevation_ft": "561", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lebanon", + "scheduled_service": "no" + }, + { + "id": "349695", + "ident": "US-5727", + "type": "heliport", + "name": "World Wide Technology Raceway", + "latitude_deg": "38.65205", + "longitude_deg": "-90.13473", + "elevation_ft": "408", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "East Saint Louis", + "scheduled_service": "no" + }, + { + "id": "349696", + "ident": "US-5728", + "type": "heliport", + "name": "Phoenix Raceway Heliport", + "latitude_deg": "33.37311", + "longitude_deg": "-112.30648", + "elevation_ft": "981", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Avondale", + "scheduled_service": "no" + }, + { + "id": "349697", + "ident": "US-5729", + "type": "heliport", + "name": "Phoenix Raceway Infield Heliport", + "latitude_deg": "33.3755", + "longitude_deg": "-112.30815", + "elevation_ft": "968", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Avondale", + "scheduled_service": "no" + }, + { + "id": "349698", + "ident": "US-5730", + "type": "heliport", + "name": "Las Vegas Motor Speedway Infield Heliport", + "latitude_deg": "36.27141", + "longitude_deg": "-115.01279", + "elevation_ft": "1954", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no" + }, + { + "id": "349699", + "ident": "US-5731", + "type": "heliport", + "name": "Las Vegas Motor Speedway Heliport", + "latitude_deg": "36.26737", + "longitude_deg": "-115.01574", + "elevation_ft": "1948", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no" + }, + { + "id": "349701", + "ident": "US-5732", + "type": "closed", + "name": "Raisin City Airport", + "latitude_deg": "36.59991", + "longitude_deg": "-119.92675", + "elevation_ft": "233", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Raisin City", + "scheduled_service": "no" + }, + { + "id": "349702", + "ident": "US-5733", + "type": "closed", + "name": "Camden Oilfield Airport", + "latitude_deg": "36.47078", + "longitude_deg": "-119.83157", + "elevation_ft": "233", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Riverdale", + "scheduled_service": "no" + }, + { + "id": "349703", + "ident": "US-5734", + "type": "closed", + "name": "Pasajero Farm Airport", + "latitude_deg": "36.26251", + "longitude_deg": "-120.11244", + "elevation_ft": "341", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Huron", + "scheduled_service": "no" + }, + { + "id": "349713", + "ident": "US-5735", + "type": "small_airport", + "name": "Discovery Bay at Norwalk Landing Airport", + "latitude_deg": "36.622333", + "longitude_deg": "-93.54", + "elevation_ft": "1054", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Shell Knob", + "scheduled_service": "no", + "local_code": "MO06" + }, + { + "id": "349714", + "ident": "US-5736", + "type": "closed", + "name": "Watts Smith Airport", + "latitude_deg": "36.79894", + "longitude_deg": "-93.42241", + "elevation_ft": "1236", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Galena", + "scheduled_service": "no" + }, + { + "id": "349757", + "ident": "US-5737", + "type": "closed", + "name": "Tres Picos Farms Airport", + "latitude_deg": "36.42456", + "longitude_deg": "-120.32045", + "elevation_ft": "387", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Coalinga", + "scheduled_service": "no" + }, + { + "id": "349758", + "ident": "US-5738", + "type": "closed", + "name": "Five Points Ranch Airport", + "latitude_deg": "36.42518", + "longitude_deg": "-120.26511", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Five Points", + "scheduled_service": "no", + "keywords": "Farrell Ranch" + }, + { + "id": "349792", + "ident": "US-5739", + "type": "closed", + "name": "Santa Nella Airport", + "latitude_deg": "37.09274", + "longitude_deg": "-121.0238", + "elevation_ft": "168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Gustine", + "scheduled_service": "no" + }, + { + "id": "349793", + "ident": "US-5740", + "type": "heliport", + "name": "St Elizabeth Community Hospital Heliport", + "latitude_deg": "40.148644", + "longitude_deg": "-122.220555", + "elevation_ft": "302", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Red Bluff", + "scheduled_service": "no" + }, + { + "id": "349794", + "ident": "US-5741", + "type": "heliport", + "name": "Twin Cities Community Hospital Heliport", + "latitude_deg": "35.55605", + "longitude_deg": "-120.71903", + "elevation_ft": "856", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Templeton", + "scheduled_service": "no" + }, + { + "id": "349795", + "ident": "US-5742", + "type": "heliport", + "name": "Rideout Regional Medical Center Heliport", + "latitude_deg": "39.13828", + "longitude_deg": "-121.59269", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Marysville", + "scheduled_service": "no" + }, + { + "id": "349796", + "ident": "US-5743", + "type": "closed", + "name": "Cheim Airport", + "latitude_deg": "39.16162", + "longitude_deg": "-121.56775", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Marysville", + "scheduled_service": "no" + }, + { + "id": "349797", + "ident": "US-5744", + "type": "small_airport", + "name": "Theil Air Care Airport", + "latitude_deg": "36.80654", + "longitude_deg": "-120.6164", + "elevation_ft": "236", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Firebaugh", + "scheduled_service": "no" + }, + { + "id": "349798", + "ident": "US-5745", + "type": "small_airport", + "name": "Moe's Crop Dusting Airport", + "latitude_deg": "38.91093", + "longitude_deg": "-121.49484", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Nicolaus", + "scheduled_service": "no" + }, + { + "id": "349799", + "ident": "US-5746", + "type": "closed", + "name": "DS Dusters Airport", + "latitude_deg": "32.74829", + "longitude_deg": "-115.41333", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Holtville", + "scheduled_service": "no" + }, + { + "id": "349801", + "ident": "US-5747", + "type": "small_airport", + "name": "Martins Dusters Airport", + "latitude_deg": "39.25746", + "longitude_deg": "-122.06951", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Colusa", + "scheduled_service": "no" + }, + { + "id": "349802", + "ident": "US-5748", + "type": "small_airport", + "name": "Porter Flying Services Airport", + "latitude_deg": "39.61668", + "longitude_deg": "-121.84831", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chico", + "scheduled_service": "no", + "keywords": "PM Dusters" + }, + { + "id": "349803", + "ident": "US-5749", + "type": "small_airport", + "name": "Giffen Cantua Ranch Airport", + "latitude_deg": "36.48307", + "longitude_deg": "-120.38482", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Cantua Creek", + "scheduled_service": "no" + }, + { + "id": "349804", + "ident": "US-5750", + "type": "small_airport", + "name": "Patterson Airport", + "latitude_deg": "37.33698", + "longitude_deg": "-121.02807", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Newman", + "scheduled_service": "no" + }, + { + "id": "349805", + "ident": "US-5751", + "type": "heliport", + "name": "PJ Helicopters Heliport", + "latitude_deg": "40.14532", + "longitude_deg": "-122.24249", + "elevation_ft": "324", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Red Bluff", + "scheduled_service": "no" + }, + { + "id": "349806", + "ident": "US-5752", + "type": "heliport", + "name": "NorthBay Medical Center Heliport", + "latitude_deg": "38.26128", + "longitude_deg": "-122.04829", + "elevation_ft": "41", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fairfield", + "scheduled_service": "no" + }, + { + "id": "349807", + "ident": "US-5753", + "type": "heliport", + "name": "California Highway Patrol Academy Heliport", + "latitude_deg": "38.59769", + "longitude_deg": "-121.56262", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "West Sacramento", + "scheduled_service": "no" + }, + { + "id": "349808", + "ident": "US-5754", + "type": "small_airport", + "name": "Diversified Equipment Airport", + "latitude_deg": "34.82029", + "longitude_deg": "-117.16971", + "elevation_ft": "2380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Barstow", + "scheduled_service": "no" + }, + { + "id": "349809", + "ident": "US-5755", + "type": "small_airport", + "name": "Delicato Vineyards Airport", + "latitude_deg": "36.14802", + "longitude_deg": "-121.08664", + "elevation_ft": "449", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "King City", + "scheduled_service": "no" + }, + { + "id": "349810", + "ident": "US-5756", + "type": "small_airport", + "name": "Western Ag Aviation Airport", + "latitude_deg": "36.64116", + "longitude_deg": "-120.23306", + "elevation_ft": "167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tranquillity", + "scheduled_service": "no" + }, + { + "id": "349811", + "ident": "US-5757", + "type": "small_airport", + "name": "Azcal Airport", + "latitude_deg": "36.18644", + "longitude_deg": "-119.95838", + "elevation_ft": "256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stratford", + "scheduled_service": "no" + }, + { + "id": "349812", + "ident": "US-5758", + "type": "small_airport", + "name": "Mid Cal Ag Aviation Airport", + "latitude_deg": "36.72123", + "longitude_deg": "-120.24715", + "elevation_ft": "167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Kerman", + "scheduled_service": "no" + }, + { + "id": "349813", + "ident": "US-5759", + "type": "closed", + "name": "Hoffman Airport", + "latitude_deg": "36.76124", + "longitude_deg": "-120.03553", + "elevation_ft": "237", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Kerman", + "scheduled_service": "no" + }, + { + "id": "349814", + "ident": "US-5760", + "type": "small_airport", + "name": "Yribarren Airport", + "latitude_deg": "36.7401", + "longitude_deg": "-120.01278", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Kerman", + "scheduled_service": "no" + }, + { + "id": "349815", + "ident": "US-5761", + "type": "small_airport", + "name": "Blair Airport", + "latitude_deg": "36.22065", + "longitude_deg": "-119.79901", + "elevation_ft": "213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lemoore", + "scheduled_service": "no" + }, + { + "id": "349816", + "ident": "US-5762", + "type": "closed", + "name": "Ianni Strip", + "latitude_deg": "36.267", + "longitude_deg": "-119.54381", + "elevation_ft": "243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hanford", + "scheduled_service": "no" + }, + { + "id": "349818", + "ident": "US-5763", + "type": "closed", + "name": "Baldwin Airport", + "latitude_deg": "36.1339", + "longitude_deg": "-119.58009", + "elevation_ft": "213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Corcoran", + "scheduled_service": "no" + }, + { + "id": "349819", + "ident": "US-5764", + "type": "small_airport", + "name": "3H Cattle Company Airport", + "latitude_deg": "36.18478", + "longitude_deg": "-119.57312", + "elevation_ft": "223", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hanford", + "scheduled_service": "no" + }, + { + "id": "349820", + "ident": "US-5765", + "type": "small_airport", + "name": "Helm Airport", + "latitude_deg": "36.52585", + "longitude_deg": "-120.09958", + "elevation_ft": "187", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Helm", + "scheduled_service": "no" + }, + { + "id": "349821", + "ident": "US-5766", + "type": "small_airport", + "name": "Hughes Ag Airport", + "latitude_deg": "36.43886", + "longitude_deg": "-119.9001", + "elevation_ft": "217", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Riverdale", + "scheduled_service": "no" + }, + { + "id": "349822", + "ident": "US-5767", + "type": "small_airport", + "name": "Coit Ranch Airport", + "latitude_deg": "36.68997", + "longitude_deg": "-120.47319", + "elevation_ft": "266", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mendota", + "scheduled_service": "no" + }, + { + "id": "349823", + "ident": "US-5768", + "type": "small_airport", + "name": "Organic Pastures Airport", + "latitude_deg": "36.6296", + "longitude_deg": "-119.99478", + "elevation_ft": "213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fresno", + "scheduled_service": "no" + }, + { + "id": "349824", + "ident": "US-5769", + "type": "closed", + "name": "Cannon Field", + "latitude_deg": "36.77624", + "longitude_deg": "-119.77833", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fresno", + "scheduled_service": "no" + }, + { + "id": "349825", + "ident": "US-5770", + "type": "closed", + "name": "Furlong Field", + "latitude_deg": "36.80508", + "longitude_deg": "-119.8657", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fresno", + "scheduled_service": "no" + }, + { + "id": "349826", + "ident": "US-5771", + "type": "small_airport", + "name": "Star Pump Airport", + "latitude_deg": "36.81383", + "longitude_deg": "-120.25874", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Madera", + "scheduled_service": "no" + }, + { + "id": "349827", + "ident": "US-5772", + "type": "small_airport", + "name": "Haley Flying Service Airport", + "latitude_deg": "37.81668", + "longitude_deg": "-121.4545", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tracy", + "scheduled_service": "no" + }, + { + "id": "349828", + "ident": "US-5773", + "type": "small_airport", + "name": "Kenny's Cropdusting Airport", + "latitude_deg": "36.5416", + "longitude_deg": "-119.76411", + "elevation_ft": "266", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fresno", + "scheduled_service": "no" + }, + { + "id": "349829", + "ident": "US-5774", + "type": "small_airport", + "name": "Sweetser Dusters Airport", + "latitude_deg": "38.88396", + "longitude_deg": "-121.71373", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Robbins", + "scheduled_service": "no" + }, + { + "id": "349830", + "ident": "US-5775", + "type": "small_airport", + "name": "Hawke Ag Aviation Airport", + "latitude_deg": "37.73585", + "longitude_deg": "-120.70723", + "elevation_ft": "195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oakdale", + "scheduled_service": "no" + }, + { + "id": "349831", + "ident": "US-5776", + "type": "small_airport", + "name": "Merced County Mosquito Abatement District Airport", + "latitude_deg": "37.07956", + "longitude_deg": "-120.72101", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Dos Palos", + "scheduled_service": "no" + }, + { + "id": "349832", + "ident": "US-5777", + "type": "closed", + "name": "Berryessa Airport", + "latitude_deg": "38.57164", + "longitude_deg": "-122.22452", + "elevation_ft": "462", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Napa", + "scheduled_service": "no" + }, + { + "id": "349833", + "ident": "US-5778", + "type": "heliport", + "name": "Colusa Medical Center Heliport", + "latitude_deg": "39.20586", + "longitude_deg": "-121.99982", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Colusa", + "scheduled_service": "no" + }, + { + "id": "349834", + "ident": "US-5779", + "type": "small_airport", + "name": "Miller Airport", + "latitude_deg": "39.26326", + "longitude_deg": "-122.01693", + "elevation_ft": "59", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Colusa", + "scheduled_service": "no" + }, + { + "id": "349835", + "ident": "US-5780", + "type": "small_airport", + "name": "Carter Airport", + "latitude_deg": "39.29623", + "longitude_deg": "-122.00925", + "elevation_ft": "64", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Colusa", + "scheduled_service": "no" + }, + { + "id": "349836", + "ident": "US-5781", + "type": "small_airport", + "name": "Formanos Dusters Airport", + "latitude_deg": "39.38862", + "longitude_deg": "-122.0357", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Colusa", + "scheduled_service": "no" + }, + { + "id": "349837", + "ident": "US-5782", + "type": "closed", + "name": "Bounde Creek Airport", + "latitude_deg": "39.39532", + "longitude_deg": "-122.06344", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Colusa", + "scheduled_service": "no" + }, + { + "id": "349838", + "ident": "US-5783", + "type": "closed", + "name": "Englewood Airport", + "latitude_deg": "39.65927", + "longitude_deg": "-104.91527", + "elevation_ft": "5568", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no" + }, + { + "id": "349839", + "ident": "US-5784", + "type": "closed", + "name": "Stouts Airport", + "latitude_deg": "39.62805", + "longitude_deg": "-104.81313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Aurora", + "scheduled_service": "no", + "keywords": "C&S" + }, + { + "id": "349840", + "ident": "US-5785", + "type": "closed", + "name": "Cherry Creek Airport", + "latitude_deg": "39.62843", + "longitude_deg": "-104.81993", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Aurora", + "scheduled_service": "no" + }, + { + "id": "349841", + "ident": "US-5786", + "type": "closed", + "name": "Denver-Douglas Airport", + "latitude_deg": "39.417", + "longitude_deg": "-104.881", + "elevation_ft": "6083", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Castle Rock", + "scheduled_service": "no" + }, + { + "id": "349842", + "ident": "US-5787", + "type": "closed", + "name": "Lowry Field", + "latitude_deg": "39.71749", + "longitude_deg": "-104.88921", + "elevation_ft": "5420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no" + }, + { + "id": "349843", + "ident": "US-5788", + "type": "heliport", + "name": "Atlanta Motor Speedway Heliport", + "latitude_deg": "33.3831", + "longitude_deg": "-84.31936", + "elevation_ft": "827", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Hampton", + "scheduled_service": "no" + }, + { + "id": "349844", + "ident": "US-5789", + "type": "heliport", + "name": "Kentucky Speedway Heliport", + "latitude_deg": "38.71471", + "longitude_deg": "-84.91146", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Sparta", + "scheduled_service": "no" + }, + { + "id": "349845", + "ident": "US-5790", + "type": "small_airport", + "name": "American West Aviation Airport", + "latitude_deg": "36.44813", + "longitude_deg": "-120.01345", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Five Points", + "scheduled_service": "no" + }, + { + "id": "349846", + "ident": "US-5791", + "type": "small_airport", + "name": "Woolf Farming Airport", + "latitude_deg": "36.18911", + "longitude_deg": "-120.12282", + "elevation_ft": "404", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Huron", + "scheduled_service": "no" + }, + { + "id": "349847", + "ident": "US-5792", + "type": "closed", + "name": "Sunburst Cropdusting Airport", + "latitude_deg": "39.44859", + "longitude_deg": "-112.61538", + "elevation_ft": "4602", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Delta", + "scheduled_service": "no" + }, + { + "id": "349864", + "ident": "US-5793", + "type": "small_airport", + "name": "Warren Airport", + "latitude_deg": "41.69113", + "longitude_deg": "-88.72256", + "elevation_ft": "734", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Somonauk", + "scheduled_service": "no" + }, + { + "id": "349873", + "ident": "US-5794", + "type": "small_airport", + "name": "Zenith Landing", + "latitude_deg": "45.988911", + "longitude_deg": "-92.901539", + "elevation_ft": "1008", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hinkley", + "scheduled_service": "no", + "gps_code": "33MN", + "local_code": "33MN" + }, + { + "id": "349891", + "ident": "US-5795", + "type": "small_airport", + "name": "Morris Equipment Airport", + "latitude_deg": "32.65434", + "longitude_deg": "-114.70228", + "elevation_ft": "112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yuma", + "scheduled_service": "no" + }, + { + "id": "349892", + "ident": "US-5796", + "type": "small_airport", + "name": "Ag Air Airport", + "latitude_deg": "37.9387", + "longitude_deg": "-121.13013", + "elevation_ft": "69", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stockton", + "scheduled_service": "no" + }, + { + "id": "349893", + "ident": "US-5797", + "type": "small_airport", + "name": "Kelcor Airport", + "latitude_deg": "36.9253", + "longitude_deg": "-121.34465", + "elevation_ft": "406", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hollister", + "scheduled_service": "no" + }, + { + "id": "349894", + "ident": "US-5798", + "type": "small_airport", + "name": "Kracker Jack Aviation Airport", + "latitude_deg": "39.68054", + "longitude_deg": "-122.0004", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Glenn", + "scheduled_service": "no" + }, + { + "id": "349895", + "ident": "US-5799", + "type": "small_airport", + "name": "Alabama Aerial Applicators Airport", + "latitude_deg": "30.498211", + "longitude_deg": "-87.761438", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Silverhill", + "scheduled_service": "no" + }, + { + "id": "349901", + "ident": "US-5800", + "type": "small_airport", + "name": "Bohemian Hill Airport", + "latitude_deg": "30.50853", + "longitude_deg": "-87.78288", + "elevation_ft": "94", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Silverhill", + "scheduled_service": "no" + }, + { + "id": "349902", + "ident": "US-5801", + "type": "small_airport", + "name": "Chisenhill Agricultural Services Airport", + "latitude_deg": "30.454", + "longitude_deg": "-87.71488", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Foley", + "scheduled_service": "no" + }, + { + "id": "349903", + "ident": "US-5802", + "type": "small_airport", + "name": "Harding Flying Services Airport", + "latitude_deg": "38.40514", + "longitude_deg": "-121.61308", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Clarksburg", + "scheduled_service": "no" + }, + { + "id": "349904", + "ident": "US-5803", + "type": "small_airport", + "name": "Val-Air Airport", + "latitude_deg": "33.00524", + "longitude_deg": "-115.46632", + "elevation_ft": "-135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Brawley", + "scheduled_service": "no" + }, + { + "id": "349905", + "ident": "US-5804", + "type": "small_airport", + "name": "Ag Aviation Airport", + "latitude_deg": "34.52754", + "longitude_deg": "-103.05113", + "elevation_ft": "4228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Texico", + "scheduled_service": "no" + }, + { + "id": "349906", + "ident": "US-5805", + "type": "small_airport", + "name": "Rowland Dusters Airport", + "latitude_deg": "26.49044", + "longitude_deg": "-97.95981", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lasara", + "scheduled_service": "no", + "local_code": "75XS", + "keywords": "Raymondville" + }, + { + "id": "349907", + "ident": "US-5806", + "type": "small_airport", + "name": "Alamo Aerial Applicators Airport", + "latitude_deg": "26.09342", + "longitude_deg": "-98.11185", + "elevation_ft": "84", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alamo", + "scheduled_service": "no" + }, + { + "id": "349908", + "ident": "US-5807", + "type": "small_airport", + "name": "Bennack Flying Services Airport", + "latitude_deg": "26.42522", + "longitude_deg": "-97.86537", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lyford", + "scheduled_service": "no" + }, + { + "id": "349909", + "ident": "US-5808", + "type": "small_airport", + "name": "Gerik Ag Airport", + "latitude_deg": "31.705", + "longitude_deg": "-97.24893", + "elevation_ft": "466", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no" + }, + { + "id": "349910", + "ident": "US-5809", + "type": "small_airport", + "name": "Hoelscher Ag Spray Airport", + "latitude_deg": "31.41917", + "longitude_deg": "-100.19341", + "elevation_ft": "1827", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Angelo", + "scheduled_service": "no" + }, + { + "id": "349911", + "ident": "US-5810", + "type": "small_airport", + "name": "JCS Airport", + "latitude_deg": "33.09126", + "longitude_deg": "-97.33378", + "elevation_ft": "738", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Justin", + "scheduled_service": "no" + }, + { + "id": "349912", + "ident": "US-5811", + "type": "small_airport", + "name": "Morgenroth Airport", + "latitude_deg": "28.71847", + "longitude_deg": "-96.92565", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Victoria", + "scheduled_service": "no" + }, + { + "id": "349913", + "ident": "US-5812", + "type": "small_airport", + "name": "Stotts Aerial Spray Airport", + "latitude_deg": "33.50569", + "longitude_deg": "-97.19175", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Valley View", + "scheduled_service": "no" + }, + { + "id": "349914", + "ident": "US-5813", + "type": "small_airport", + "name": "Parmer County Spraying Airport", + "latitude_deg": "34.52047", + "longitude_deg": "-102.93015", + "elevation_ft": "4118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bovina", + "scheduled_service": "no" + }, + { + "id": "349915", + "ident": "US-5814", + "type": "small_airport", + "name": "Gregg Airport", + "latitude_deg": "33.41699", + "longitude_deg": "-102.05589", + "elevation_ft": "3308", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ropesville", + "scheduled_service": "no" + }, + { + "id": "349916", + "ident": "US-5815", + "type": "small_airport", + "name": "Farm and Ranch Aerial Services Airport", + "latitude_deg": "29.32485", + "longitude_deg": "-96.02216", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wharton", + "scheduled_service": "no" + }, + { + "id": "349917", + "ident": "US-5816", + "type": "small_airport", + "name": "Nelson Flyers Airport", + "latitude_deg": "29.05147", + "longitude_deg": "-96.33196", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Louise", + "scheduled_service": "no" + }, + { + "id": "349928", + "ident": "US-5817", + "type": "small_airport", + "name": "Russell Spraying Airport", + "latitude_deg": "34.38972", + "longitude_deg": "-102.72084", + "elevation_ft": "3983", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Muleshoe", + "scheduled_service": "no" + }, + { + "id": "349936", + "ident": "US-5818", + "type": "heliport", + "name": "Hoffstadt Viewpoint Heliport", + "latitude_deg": "46.32653", + "longitude_deg": "-122.48971", + "elevation_ft": "1374", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Toutle", + "scheduled_service": "no" + }, + { + "id": "349937", + "ident": "US-5819", + "type": "heliport", + "name": "Mount Saint Helens Forest Learning Center Helipad", + "latitude_deg": "46.30827", + "longitude_deg": "-122.39454", + "elevation_ft": "2661", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Toutle", + "scheduled_service": "no" + }, + { + "id": "349938", + "ident": "US-5820", + "type": "heliport", + "name": "Johnston Ridge Heliport", + "latitude_deg": "46.27877", + "longitude_deg": "-122.21652", + "elevation_ft": "4158", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Toutle", + "scheduled_service": "no" + }, + { + "id": "349939", + "ident": "US-5821", + "type": "small_airport", + "name": "Nish Ag Air Airport", + "latitude_deg": "39.03227", + "longitude_deg": "-119.17657", + "elevation_ft": "4364", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Yerington", + "scheduled_service": "no" + }, + { + "id": "349940", + "ident": "US-5822", + "type": "small_airport", + "name": "Bruton Aerial Spraying Airport", + "latitude_deg": "31.6959", + "longitude_deg": "-101.54265", + "elevation_ft": "2684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garden City", + "scheduled_service": "no" + }, + { + "id": "349942", + "ident": "US-5823", + "type": "small_airport", + "name": "Foshee Spraying Service Airport", + "latitude_deg": "33.23454", + "longitude_deg": "-102.42881", + "elevation_ft": "3433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brownfield", + "scheduled_service": "no" + }, + { + "id": "349945", + "ident": "US-5824", + "type": "heliport", + "name": "Fisher County Hospital Heliport", + "latitude_deg": "32.83413", + "longitude_deg": "-100.43675", + "elevation_ft": "1953", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rotan", + "scheduled_service": "no" + }, + { + "id": "349946", + "ident": "US-5825", + "type": "small_airport", + "name": "Cleveland Airport", + "latitude_deg": "35.387", + "longitude_deg": "-81.62575", + "elevation_ft": "1023", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Shelby", + "scheduled_service": "no" + }, + { + "id": "349947", + "ident": "US-5826", + "type": "heliport", + "name": "Atrium Health Cleveland Heliport", + "latitude_deg": "35.30371", + "longitude_deg": "-81.53665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Shelby", + "scheduled_service": "no" + }, + { + "id": "349948", + "ident": "US-5827", + "type": "small_airport", + "name": "Metz Landing Strip", + "latitude_deg": "36.23747", + "longitude_deg": "-98.02458", + "elevation_ft": "1211", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Drummond", + "scheduled_service": "no" + }, + { + "id": "349956", + "ident": "US-5828", + "type": "closed", + "name": "Texaco Airport", + "latitude_deg": "32.48205", + "longitude_deg": "-93.70551", + "elevation_ft": "166", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Shreveport", + "scheduled_service": "no" + }, + { + "id": "349957", + "ident": "US-5829", + "type": "closed", + "name": "Stovall Airport", + "latitude_deg": "32.44937", + "longitude_deg": "-93.78287", + "elevation_ft": "202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Shreveport", + "scheduled_service": "no" + }, + { + "id": "349958", + "ident": "US-5830", + "type": "closed", + "name": "Shreveport Greenwood Airport", + "latitude_deg": "32.46813", + "longitude_deg": "-93.82419", + "elevation_ft": "252", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Shreveport", + "scheduled_service": "no" + }, + { + "id": "349959", + "ident": "US-5831", + "type": "closed", + "name": "Ruston Municipal Airport", + "latitude_deg": "32.51101", + "longitude_deg": "-92.62852", + "elevation_ft": "327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Ruston", + "scheduled_service": "no", + "keywords": "KRSN, RSN" + }, + { + "id": "349960", + "ident": "US-5832", + "type": "heliport", + "name": "East Timbalier Island Heliport", + "latitude_deg": "29.06963", + "longitude_deg": "-90.3226", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Golden Meadow", + "scheduled_service": "no" + }, + { + "id": "349961", + "ident": "US-5833", + "type": "small_airport", + "name": "Cruse Airport", + "latitude_deg": "41.24801", + "longitude_deg": "-106.81554", + "elevation_ft": "7531", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Encampment", + "scheduled_service": "no" + }, + { + "id": "349962", + "ident": "US-5834", + "type": "small_airport", + "name": "Black Bear Creek Airport", + "latitude_deg": "44.07043", + "longitude_deg": "-115.79322", + "elevation_ft": "3392", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Garden Valley", + "scheduled_service": "no" + }, + { + "id": "350031", + "ident": "US-5835", + "type": "heliport", + "name": "US Border Patrol Brownsville Heliport", + "latitude_deg": "26.01953", + "longitude_deg": "-97.50814", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brownsville", + "scheduled_service": "no" + }, + { + "id": "350032", + "ident": "US-5836", + "type": "closed", + "name": "Sunnyside Airport", + "latitude_deg": "25.85634", + "longitude_deg": "-80.21506", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no" + }, + { + "id": "350033", + "ident": "US-5837", + "type": "closed", + "name": "North Shore Medical Center Heliport", + "latitude_deg": "25.85872", + "longitude_deg": "-80.21344", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no" + }, + { + "id": "350034", + "ident": "US-5838", + "type": "heliport", + "name": "Big Tujunga Dam Heliport", + "latitude_deg": "34.29486", + "longitude_deg": "-118.18794", + "elevation_ft": "2315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tujunga", + "scheduled_service": "no" + }, + { + "id": "350035", + "ident": "US-5839", + "type": "heliport", + "name": "Chilao Fire Station Heliport", + "latitude_deg": "34.33227", + "longitude_deg": "-118.02669", + "elevation_ft": "5265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palmdale", + "scheduled_service": "no" + }, + { + "id": "350036", + "ident": "US-5840", + "type": "closed", + "name": "Green Acres Airport", + "latitude_deg": "36.33982", + "longitude_deg": "-119.32612", + "elevation_ft": "318", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Visalia", + "scheduled_service": "no", + "keywords": "2Q1" + }, + { + "id": "350037", + "ident": "US-5841", + "type": "heliport", + "name": "Barley Flats Heliport", + "latitude_deg": "34.27659", + "longitude_deg": "-118.07217", + "elevation_ft": "5610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palmdale", + "scheduled_service": "no" + }, + { + "id": "350038", + "ident": "US-5842", + "type": "small_airport", + "name": "Chapeño Airport", + "latitude_deg": "26.93818", + "longitude_deg": "-98.1779", + "elevation_ft": "159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Encino", + "scheduled_service": "no" + }, + { + "id": "350039", + "ident": "US-5843", + "type": "closed", + "name": "Pitts Aviation Airport", + "latitude_deg": "25.47335", + "longitude_deg": "-80.53384", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no" + }, + { + "id": "350040", + "ident": "US-5844", + "type": "closed", + "name": "Miami Municipal Airport / Amelia Earhart Field", + "latitude_deg": "25.87734", + "longitude_deg": "-80.26377", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Hialeah", + "scheduled_service": "no" + }, + { + "id": "350041", + "ident": "US-5845", + "type": "closed", + "name": "Master Field", + "latitude_deg": "25.88045", + "longitude_deg": "-80.25117", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no" + }, + { + "id": "350042", + "ident": "US-5846", + "type": "closed", + "name": "Polsa Rosa Ranch Airport", + "latitude_deg": "34.43245", + "longitude_deg": "-118.24093", + "elevation_ft": "2540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Acton", + "scheduled_service": "no" + }, + { + "id": "350043", + "ident": "US-5847", + "type": "heliport", + "name": "Vallecito Conservation Camp 1 Heliport", + "latitude_deg": "38.10667", + "longitude_deg": "-120.49207", + "elevation_ft": "2020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Angels Camp", + "scheduled_service": "no" + }, + { + "id": "350045", + "ident": "US-5848", + "type": "heliport", + "name": "Los Angeles River Ranger District Office Heliport", + "latitude_deg": "34.29753", + "longitude_deg": "-118.36132", + "elevation_ft": "1392", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sylmar", + "scheduled_service": "no" + }, + { + "id": "350046", + "ident": "US-5849", + "type": "heliport", + "name": "Mount Gleason Heliport", + "latitude_deg": "34.37956", + "longitude_deg": "-118.15368", + "elevation_ft": "5600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palmdale", + "scheduled_service": "no" + }, + { + "id": "350047", + "ident": "US-5850", + "type": "heliport", + "name": "Josephine Peak Heliport", + "latitude_deg": "34.28599", + "longitude_deg": "-118.15395", + "elevation_ft": "5515", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palmdale", + "scheduled_service": "no" + }, + { + "id": "350048", + "ident": "US-5851", + "type": "heliport", + "name": "Santa Cruz Island Navy Heliport", + "latitude_deg": "33.99483", + "longitude_deg": "-119.63414", + "elevation_ft": "1489", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Cruz Island", + "scheduled_service": "no" + }, + { + "id": "350049", + "ident": "US-5852", + "type": "small_airport", + "name": "Smugglers Cove Airport", + "latitude_deg": "34.02831", + "longitude_deg": "-119.54093", + "elevation_ft": "341", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Cruz Island", + "scheduled_service": "no" + }, + { + "id": "350050", + "ident": "US-5853", + "type": "heliport", + "name": "Cal Fire San Diego Campo Fire Station 40 Heliport", + "latitude_deg": "32.62909", + "longitude_deg": "-116.46888", + "elevation_ft": "2623", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Campo", + "scheduled_service": "no" + }, + { + "id": "350051", + "ident": "US-5854", + "type": "closed", + "name": "Black Meadow Landing Airport", + "latitude_deg": "34.34696", + "longitude_deg": "-114.19319", + "elevation_ft": "564", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Parker Dam", + "scheduled_service": "no" + }, + { + "id": "350052", + "ident": "US-5855", + "type": "closed", + "name": "Sabine River Authority Airport", + "latitude_deg": "32.84792", + "longitude_deg": "-95.88578", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Point", + "scheduled_service": "no" + }, + { + "id": "350053", + "ident": "US-5856", + "type": "closed", + "name": "Empire Airport", + "latitude_deg": "37.63333", + "longitude_deg": "-120.90526", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Modesto", + "scheduled_service": "no" + }, + { + "id": "350054", + "ident": "US-5857", + "type": "closed", + "name": "Naval Auxiliary Air Station Vernalis", + "latitude_deg": "37.59862", + "longitude_deg": "-121.3117", + "elevation_ft": "212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Vernalis", + "scheduled_service": "no" + }, + { + "id": "350055", + "ident": "US-5858", + "type": "closed", + "name": "Farmco Airport", + "latitude_deg": "37.44357", + "longitude_deg": "-120.76669", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Delhi", + "scheduled_service": "no" + }, + { + "id": "350056", + "ident": "US-5859", + "type": "closed", + "name": "Fiorini Airport", + "latitude_deg": "37.45767", + "longitude_deg": "-120.76659", + "elevation_ft": "126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Delhi", + "scheduled_service": "no" + }, + { + "id": "350058", + "ident": "US-5860", + "type": "closed", + "name": "Saint Johns Airport", + "latitude_deg": "36.36487", + "longitude_deg": "-119.2837", + "elevation_ft": "338", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Visalia", + "scheduled_service": "no" + }, + { + "id": "350059", + "ident": "US-5861", + "type": "small_airport", + "name": "Rice Airport", + "latitude_deg": "34.64661", + "longitude_deg": "-114.27036", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Lake Havasu City", + "scheduled_service": "no" + }, + { + "id": "350060", + "ident": "US-5862", + "type": "heliport", + "name": "Nahata' Dziil Health Center Heliport", + "latitude_deg": "35.19301", + "longitude_deg": "-109.31739", + "elevation_ft": "5883", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sanders", + "scheduled_service": "no" + }, + { + "id": "350061", + "ident": "US-5863", + "type": "heliport", + "name": "Occidental Peak Heliport", + "latitude_deg": "34.23293", + "longitude_deg": "-118.07509", + "elevation_ft": "5621", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pasadena", + "scheduled_service": "no" + }, + { + "id": "350062", + "ident": "US-5864", + "type": "closed", + "name": "Tipton Field", + "latitude_deg": "36.00432", + "longitude_deg": "-119.22801", + "elevation_ft": "312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pixley", + "scheduled_service": "no" + }, + { + "id": "350063", + "ident": "US-5865", + "type": "closed", + "name": "Shackelford Canyon Airport", + "latitude_deg": "29.87074", + "longitude_deg": "-101.36855", + "elevation_ft": "1594", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comstock", + "scheduled_service": "no" + }, + { + "id": "350071", + "ident": "US-5866", + "type": "heliport", + "name": "Cal Fire San Diego Dulzura Fire Station 30 Heliport", + "latitude_deg": "32.64317", + "longitude_deg": "-116.77619", + "elevation_ft": "1115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Dulzura", + "scheduled_service": "no" + }, + { + "id": "350072", + "ident": "US-5867", + "type": "heliport", + "name": "Sabine Power Plant Heliport", + "latitude_deg": "30.02505", + "longitude_deg": "-93.87443", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Orange", + "scheduled_service": "no" + }, + { + "id": "350073", + "ident": "US-5868", + "type": "closed", + "name": "Madill Airport", + "latitude_deg": "34.07615", + "longitude_deg": "-96.7704", + "elevation_ft": "863", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Madill", + "scheduled_service": "no" + }, + { + "id": "350074", + "ident": "US-5869", + "type": "closed", + "name": "Roos Airport", + "latitude_deg": "34.51362", + "longitude_deg": "-96.85492", + "elevation_ft": "1232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Mill Creek", + "scheduled_service": "no" + }, + { + "id": "350075", + "ident": "US-5870", + "type": "closed", + "name": "Planada Airport", + "latitude_deg": "37.29769", + "longitude_deg": "-120.32778", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Planada", + "scheduled_service": "no" + }, + { + "id": "350076", + "ident": "US-5871", + "type": "small_airport", + "name": "Agriland Airport", + "latitude_deg": "37.10534", + "longitude_deg": "-120.10171", + "elevation_ft": "313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chowchilla", + "scheduled_service": "no" + }, + { + "id": "350077", + "ident": "US-5872", + "type": "small_airport", + "name": "O'Flanagan Airport", + "latitude_deg": "37.01784", + "longitude_deg": "-120.41533", + "elevation_ft": "154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Chowchilla", + "scheduled_service": "no" + }, + { + "id": "350078", + "ident": "US-5873", + "type": "small_airport", + "name": "Kearney Airport", + "latitude_deg": "36.59831", + "longitude_deg": "-119.50463", + "elevation_ft": "344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Parlier", + "scheduled_service": "no" + }, + { + "id": "350079", + "ident": "US-5874", + "type": "heliport", + "name": "Adventist Health Tehachapi Heliport", + "latitude_deg": "35.14862", + "longitude_deg": "-118.44996", + "elevation_ft": "3986", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tehachapi", + "scheduled_service": "no" + }, + { + "id": "350080", + "ident": "US-5875", + "type": "closed", + "name": "Chambless Airport", + "latitude_deg": "34.56581", + "longitude_deg": "-115.54394", + "elevation_ft": "736", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Amboy", + "scheduled_service": "no" + }, + { + "id": "350081", + "ident": "US-5876", + "type": "small_airport", + "name": "Greenwood Airport", + "latitude_deg": "34.50796", + "longitude_deg": "-113.62795", + "elevation_ft": "1765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yucca", + "scheduled_service": "no" + }, + { + "id": "350082", + "ident": "US-5877", + "type": "small_airport", + "name": "Pipeline Road Airport", + "latitude_deg": "34.45129", + "longitude_deg": "-113.86997", + "elevation_ft": "1985", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yucca", + "scheduled_service": "no" + }, + { + "id": "350083", + "ident": "US-5878", + "type": "small_airport", + "name": "Signal Airport", + "latitude_deg": "34.47634", + "longitude_deg": "-113.65774", + "elevation_ft": "1801", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yucca", + "scheduled_service": "no" + }, + { + "id": "350084", + "ident": "US-5879", + "type": "small_airport", + "name": "Silverado Airport", + "latitude_deg": "34.71027", + "longitude_deg": "-113.94632", + "elevation_ft": "2936", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yucca", + "scheduled_service": "no" + }, + { + "id": "350085", + "ident": "US-5880", + "type": "small_airport", + "name": "Tobasa Airport", + "latitude_deg": "35.27823", + "longitude_deg": "-113.59424", + "elevation_ft": "4488", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Hackberry", + "scheduled_service": "no" + }, + { + "id": "350086", + "ident": "US-5881", + "type": "heliport", + "name": "Oak Springs Heliport", + "latitude_deg": "34.36355", + "longitude_deg": "-117.10806", + "elevation_ft": "5125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hesperia", + "scheduled_service": "no" + }, + { + "id": "350087", + "ident": "US-5882", + "type": "closed", + "name": "Strathmore Field", + "latitude_deg": "36.11303", + "longitude_deg": "-119.12049", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Porterville", + "scheduled_service": "no" + }, + { + "id": "350088", + "ident": "US-5883", + "type": "heliport", + "name": "South Georgia Medical Center Heliport", + "latitude_deg": "30.86171", + "longitude_deg": "-83.2851", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Valdosta", + "scheduled_service": "no" + }, + { + "id": "350089", + "ident": "US-5884", + "type": "small_airport", + "name": "Chappell Crook Airport", + "latitude_deg": "33.1997", + "longitude_deg": "-84.60184", + "elevation_ft": "764", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Gay", + "scheduled_service": "no" + }, + { + "id": "350090", + "ident": "US-5885", + "type": "heliport", + "name": "Wellstar Paulding Hospital Heliport", + "latitude_deg": "33.89995", + "longitude_deg": "-84.78143", + "elevation_ft": "1047", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Hiram", + "scheduled_service": "no" + }, + { + "id": "350091", + "ident": "US-5886", + "type": "closed", + "name": "Everett Ranch Airport", + "latitude_deg": "30.12659", + "longitude_deg": "-101.53597", + "elevation_ft": "1611", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no" + }, + { + "id": "350092", + "ident": "US-5887", + "type": "closed", + "name": "Two Section Canyon Airport", + "latitude_deg": "30.16887", + "longitude_deg": "-101.53914", + "elevation_ft": "1637", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no" + }, + { + "id": "350093", + "ident": "US-5888", + "type": "closed", + "name": "Pandale Mesa Airport", + "latitude_deg": "30.16916", + "longitude_deg": "-101.52242", + "elevation_ft": "2070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no" + }, + { + "id": "350094", + "ident": "US-5889", + "type": "closed", + "name": "Gries Ranch Airport", + "latitude_deg": "30.20767", + "longitude_deg": "-101.54173", + "elevation_ft": "1709", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no" + }, + { + "id": "350095", + "ident": "US-5890", + "type": "closed", + "name": "Robbins Field", + "latitude_deg": "44.98096", + "longitude_deg": "-68.92022", + "elevation_ft": "364", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Hudson", + "scheduled_service": "no" + }, + { + "id": "350097", + "ident": "US-5891", + "type": "heliport", + "name": "US Military Gunnery Naval Base Heliport", + "latitude_deg": "33.29065", + "longitude_deg": "-115.49002", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Niland", + "scheduled_service": "no" + }, + { + "id": "350098", + "ident": "US-5892", + "type": "small_airport", + "name": "Monolith Airport", + "latitude_deg": "34.57805", + "longitude_deg": "-116.95685", + "elevation_ft": "3015", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lucerne Valley", + "scheduled_service": "no" + }, + { + "id": "350099", + "ident": "US-5893", + "type": "small_airport", + "name": "Harrod Airport", + "latitude_deg": "34.52872", + "longitude_deg": "-116.85341", + "elevation_ft": "3038", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lucerne Valley", + "scheduled_service": "no" + }, + { + "id": "350100", + "ident": "US-5894", + "type": "closed", + "name": "Butterfield Lake Estates Heliport", + "latitude_deg": "33.47892", + "longitude_deg": "-116.9612", + "elevation_ft": "1506", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Aguanga", + "scheduled_service": "no" + }, + { + "id": "350101", + "ident": "US-5895", + "type": "small_airport", + "name": "Alico Ranch Airport", + "latitude_deg": "26.5979", + "longitude_deg": "-81.13205", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Clewiston", + "scheduled_service": "no" + }, + { + "id": "350102", + "ident": "US-5896", + "type": "small_airport", + "name": "The Florida Ridge Airsports Park", + "latitude_deg": "26.76282", + "longitude_deg": "-81.23091", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Clewiston", + "scheduled_service": "no" + }, + { + "id": "350103", + "ident": "US-5897", + "type": "closed", + "name": "Alico Felda Grove Airport", + "latitude_deg": "26.51924", + "longitude_deg": "-81.38166", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "LaBelle", + "scheduled_service": "no" + }, + { + "id": "350104", + "ident": "US-5898", + "type": "small_airport", + "name": "Felda Airport", + "latitude_deg": "26.52105", + "longitude_deg": "-81.40396", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "LaBelle", + "scheduled_service": "no" + }, + { + "id": "350105", + "ident": "US-5899", + "type": "small_airport", + "name": "Buffalo Airport", + "latitude_deg": "39.30816", + "longitude_deg": "-104.70851", + "elevation_ft": "6948", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Franktown", + "scheduled_service": "no", + "gps_code": "7CO3", + "local_code": "7CO3" + }, + { + "id": "39414", + "ident": "US-58T", + "type": "small_airport", + "name": "Heritage Creek Airstrip", + "latitude_deg": "33.16870117", + "longitude_deg": "-97.48419952", + "elevation_ft": "883", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Decatur", + "scheduled_service": "no", + "local_code": "58T", + "keywords": "58TA" + }, + { + "id": "350106", + "ident": "US-5900", + "type": "heliport", + "name": "Pineville Community Hospital Heliport", + "latitude_deg": "36.7639", + "longitude_deg": "-83.707066", + "elevation_ft": "1019", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Pineville", + "scheduled_service": "no", + "gps_code": "7KY2", + "local_code": "7KY2" + }, + { + "id": "350113", + "ident": "US-5901", + "type": "heliport", + "name": "Wood County Hospital Heliport", + "latitude_deg": "41.376599", + "longitude_deg": "-83.666709", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bowling Green", + "scheduled_service": "no", + "gps_code": "85OH", + "local_code": "85OH" + }, + { + "id": "350121", + "ident": "US-5902", + "type": "heliport", + "name": "Elkview General Hospital Heliport", + "latitude_deg": "35.03829", + "longitude_deg": "-99.09799", + "elevation_ft": "1581", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hobart", + "scheduled_service": "no" + }, + { + "id": "350138", + "ident": "US-5903", + "type": "closed", + "name": "Smith Airport", + "latitude_deg": "39.63424", + "longitude_deg": "-90.13838", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Franklin", + "scheduled_service": "no" + }, + { + "id": "350139", + "ident": "US-5904", + "type": "closed", + "name": "Sunset Airport", + "latitude_deg": "39.2947", + "longitude_deg": "-90.16019", + "elevation_ft": "546", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Greenfield", + "scheduled_service": "no" + }, + { + "id": "350163", + "ident": "US-5905", + "type": "small_airport", + "name": "Skinner Dam Airport", + "latitude_deg": "42.94037", + "longitude_deg": "-117.26904", + "elevation_ft": "4254", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Jordan Valley", + "scheduled_service": "no" + }, + { + "id": "350190", + "ident": "US-5906", + "type": "seaplane_base", + "name": "Winfield Landing Seaplane Base", + "latitude_deg": "43.384951", + "longitude_deg": "-85.368699", + "elevation_ft": "913", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Coral", + "scheduled_service": "no", + "local_code": "C61" + }, + { + "id": "350192", + "ident": "US-5907", + "type": "small_airport", + "name": "Elk Ridge Airport", + "latitude_deg": "44.723606", + "longitude_deg": "-116.021987", + "elevation_ft": "4925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Donnelly", + "scheduled_service": "no", + "gps_code": "ID76", + "local_code": "ID76" + }, + { + "id": "350199", + "ident": "US-5908", + "type": "small_airport", + "name": "Kingsley Airfield", + "latitude_deg": "37.23135", + "longitude_deg": "-93.92955", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Miller, MO", + "scheduled_service": "no", + "local_code": "MO9" + }, + { + "id": "24430", + "ident": "US-5909", + "type": "closed", + "name": "Sky Valley Airpark", + "latitude_deg": "34.650398", + "longitude_deg": "-82.503502", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Pelzer", + "scheduled_service": "no", + "keywords": "SC32" + }, + { + "id": "24965", + "ident": "US-5910", + "type": "closed", + "name": "Colony Park Heliport", + "latitude_deg": "35.949799", + "longitude_deg": "-83.9907", + "elevation_ft": "1086", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Knoxville", + "scheduled_service": "no", + "keywords": "TN49" + }, + { + "id": "350267", + "ident": "US-5911", + "type": "small_airport", + "name": "Hubbard East Airport", + "latitude_deg": "31.83064", + "longitude_deg": "-96.7662", + "elevation_ft": "584", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hubbard", + "scheduled_service": "no" + }, + { + "id": "350268", + "ident": "US-5912", + "type": "small_airport", + "name": "Seminole Canyon Airport", + "latitude_deg": "29.74453", + "longitude_deg": "-101.31635", + "elevation_ft": "1526", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comstock", + "scheduled_service": "no" + }, + { + "id": "350269", + "ident": "US-5913", + "type": "small_airport", + "name": "Emerald Cave Airport", + "latitude_deg": "29.8497", + "longitude_deg": "-101.56838", + "elevation_ft": "1542", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Langtry", + "scheduled_service": "no" + }, + { + "id": "350270", + "ident": "US-5914", + "type": "small_airport", + "name": "Deer Valley Ranch Airport", + "latitude_deg": "29.90563", + "longitude_deg": "-99.28096", + "elevation_ft": "1765", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Medina", + "scheduled_service": "no" + }, + { + "id": "350271", + "ident": "US-5915", + "type": "small_airport", + "name": "Guadalupe Ranch Airport", + "latitude_deg": "29.92151", + "longitude_deg": "-99.58961", + "elevation_ft": "2382", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Vanderpool", + "scheduled_service": "no" + }, + { + "id": "350272", + "ident": "US-5916", + "type": "small_airport", + "name": "Spring Country Ranch Airport", + "latitude_deg": "29.8305", + "longitude_deg": "-99.68289", + "elevation_ft": "1878", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Leakey", + "scheduled_service": "no" + }, + { + "id": "350273", + "ident": "US-5917", + "type": "small_airport", + "name": "Privilege Creek Ranch Airport", + "latitude_deg": "29.85022", + "longitude_deg": "-98.93037", + "elevation_ft": "1991", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comfort", + "scheduled_service": "no" + }, + { + "id": "350274", + "ident": "US-5918", + "type": "small_airport", + "name": "Champee Springs Ranch Airport", + "latitude_deg": "29.81733", + "longitude_deg": "-98.88841", + "elevation_ft": "1960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Boerne", + "scheduled_service": "no" + }, + { + "id": "350275", + "ident": "US-5919", + "type": "small_airport", + "name": "Irvin Ranch Airport", + "latitude_deg": "31.0666", + "longitude_deg": "-98.24368", + "elevation_ft": "1220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lampasas", + "scheduled_service": "no" + }, + { + "id": "350276", + "ident": "US-5920", + "type": "small_airport", + "name": "Jernigan Ranch Airport", + "latitude_deg": "29.74645", + "longitude_deg": "-99.56487", + "elevation_ft": "1660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Vanderpool", + "scheduled_service": "no" + }, + { + "id": "350277", + "ident": "US-5921", + "type": "small_airport", + "name": "Harton Ranch Airport", + "latitude_deg": "31.14963", + "longitude_deg": "-98.10521", + "elevation_ft": "1017", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lampasas", + "scheduled_service": "no" + }, + { + "id": "350278", + "ident": "US-5922", + "type": "small_airport", + "name": "Nocona Ranch Airport", + "latitude_deg": "29.58352", + "longitude_deg": "-99.2915", + "elevation_ft": "1363", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hondo", + "scheduled_service": "no" + }, + { + "id": "350279", + "ident": "US-5923", + "type": "small_airport", + "name": "Skeen Ranch Outer Airport", + "latitude_deg": "33.200179", + "longitude_deg": "-105.153906", + "elevation_ft": "5587", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Hondo", + "scheduled_service": "no" + }, + { + "id": "350282", + "ident": "US-5924", + "type": "small_airport", + "name": "Trees Ranch Airport", + "latitude_deg": "29.930661", + "longitude_deg": "-99.847205", + "elevation_ft": "2342", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Leakey", + "scheduled_service": "no" + }, + { + "id": "350283", + "ident": "US-5925", + "type": "small_airport", + "name": "Tobin Ranch Airport", + "latitude_deg": "30.24258", + "longitude_deg": "-100.16189", + "elevation_ft": "2090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rocksprings", + "scheduled_service": "no" + }, + { + "id": "350284", + "ident": "US-5926", + "type": "closed", + "name": "Devils Canyon Ranch Airport", + "latitude_deg": "29.98776", + "longitude_deg": "-101.78245", + "elevation_ft": "1785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Langtry", + "scheduled_service": "no" + }, + { + "id": "350285", + "ident": "US-5927", + "type": "closed", + "name": "Shumla Bend Airport", + "latitude_deg": "29.81478", + "longitude_deg": "-101.39698", + "elevation_ft": "1476", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comstock", + "scheduled_service": "no" + }, + { + "id": "350286", + "ident": "US-5928", + "type": "closed", + "name": "Painted Canyon Airport", + "latitude_deg": "29.8395", + "longitude_deg": "-101.45326", + "elevation_ft": "1451", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Langtry", + "scheduled_service": "no" + }, + { + "id": "350287", + "ident": "US-5929", + "type": "small_airport", + "name": "Fortyone Draw Airport", + "latitude_deg": "30.24654", + "longitude_deg": "-102.56912", + "elevation_ft": "3485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no" + }, + { + "id": "350288", + "ident": "US-5930", + "type": "closed", + "name": "Washboard Canyon Airport", + "latitude_deg": "29.89404", + "longitude_deg": "-102.33619", + "elevation_ft": "1932", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanderson", + "scheduled_service": "no", + "keywords": "Captain Frank Wiseburn Ranch" + }, + { + "id": "350289", + "ident": "US-5931", + "type": "small_airport", + "name": "Isinglass Canyon Airport", + "latitude_deg": "29.96057", + "longitude_deg": "-102.357155", + "elevation_ft": "2192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanderson", + "scheduled_service": "no" + }, + { + "id": "350290", + "ident": "US-5932", + "type": "small_airport", + "name": "Wee Satch Ranch Airport", + "latitude_deg": "29.60772", + "longitude_deg": "-100.63071", + "elevation_ft": "1483", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no" + }, + { + "id": "350291", + "ident": "US-5933", + "type": "small_airport", + "name": "White Mountain Airport", + "latitude_deg": "29.87156", + "longitude_deg": "-100.23501", + "elevation_ft": "2304", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rocksprings", + "scheduled_service": "no" + }, + { + "id": "350294", + "ident": "US-5934", + "type": "small_airport", + "name": "Bearpaw Airport", + "latitude_deg": "46.779094", + "longitude_deg": "-100.514856", + "elevation_ft": "1744", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Menoken", + "scheduled_service": "no", + "gps_code": "18ND", + "local_code": "18ND" + }, + { + "id": "350301", + "ident": "US-5935", + "type": "small_airport", + "name": "Blews Airport", + "latitude_deg": "39.50342", + "longitude_deg": "-75.171193", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Bridgeton", + "scheduled_service": "no", + "gps_code": "34NJ", + "local_code": "34NJ" + }, + { + "id": "350305", + "ident": "US-5936", + "type": "closed", + "name": "Prewitt Airport", + "latitude_deg": "30.32126", + "longitude_deg": "-97.29414", + "elevation_ft": "462", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Elgin", + "scheduled_service": "no" + }, + { + "id": "350306", + "ident": "US-5937", + "type": "small_airport", + "name": "Seed Farm Airport", + "latitude_deg": "33.07044", + "longitude_deg": "-111.84801", + "elevation_ft": "1362", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Sacaton", + "scheduled_service": "no" + }, + { + "id": "350307", + "ident": "US-5938", + "type": "heliport", + "name": "Starr County Memorial Hospital Heliport", + "latitude_deg": "26.377602", + "longitude_deg": "-98.858063", + "elevation_ft": "191", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rio Grande City", + "scheduled_service": "no" + }, + { + "id": "350308", + "ident": "US-5939", + "type": "closed", + "name": "Rio Grande City Airport (1949)", + "latitude_deg": "26.38235", + "longitude_deg": "-98.7961", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rio Grande City", + "scheduled_service": "no" + }, + { + "id": "350309", + "ident": "US-5940", + "type": "closed", + "name": "Hollingshead Airport", + "latitude_deg": "33.43198", + "longitude_deg": "-112.43488", + "elevation_ft": "972", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Goodyear", + "scheduled_service": "no" + }, + { + "id": "350310", + "ident": "US-5941", + "type": "closed", + "name": "Gomez Airport", + "latitude_deg": "33.41713", + "longitude_deg": "-112.16313", + "elevation_ft": "1024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "350311", + "ident": "US-5942", + "type": "closed", + "name": "Coolidge Airport (1956)", + "latitude_deg": "32.97171", + "longitude_deg": "-111.54681", + "elevation_ft": "1401", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Coolidge", + "scheduled_service": "no" + }, + { + "id": "350312", + "ident": "US-5943", + "type": "closed", + "name": "Randolph Airport", + "latitude_deg": "32.91477", + "longitude_deg": "-111.54373", + "elevation_ft": "1437", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Casa Grande", + "scheduled_service": "no" + }, + { + "id": "350313", + "ident": "US-5944", + "type": "closed", + "name": "Woodruff Airport", + "latitude_deg": "32.94976", + "longitude_deg": "-111.59743", + "elevation_ft": "1404", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Coolidge", + "scheduled_service": "no" + }, + { + "id": "350315", + "ident": "US-5945", + "type": "closed", + "name": "Henness Airport", + "latitude_deg": "32.87585", + "longitude_deg": "-111.70476", + "elevation_ft": "1421", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Casa Grande", + "scheduled_service": "no" + }, + { + "id": "350316", + "ident": "US-5946", + "type": "closed", + "name": "University Airfield", + "latitude_deg": "32.27372", + "longitude_deg": "-106.74433", + "elevation_ft": "3981", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Las Cruces", + "scheduled_service": "no" + }, + { + "id": "350317", + "ident": "US-5947", + "type": "closed", + "name": "115th Avenue Airport", + "latitude_deg": "33.45687", + "longitude_deg": "-112.3019", + "elevation_ft": "1003", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Avondale", + "scheduled_service": "no" + }, + { + "id": "350319", + "ident": "US-5948", + "type": "closed", + "name": "Dysart Airport", + "latitude_deg": "33.534", + "longitude_deg": "-112.345", + "elevation_ft": "1089", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "350320", + "ident": "US-5949", + "type": "closed", + "name": "Toltec Airport", + "latitude_deg": "32.77264", + "longitude_deg": "-111.61981", + "elevation_ft": "1525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Eloy", + "scheduled_service": "no" + }, + { + "id": "350321", + "ident": "US-5950", + "type": "closed", + "name": "Eloy Airport (1965)", + "latitude_deg": "32.75484", + "longitude_deg": "-111.56632", + "elevation_ft": "1553", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Eloy", + "scheduled_service": "no" + }, + { + "id": "350322", + "ident": "US-5951", + "type": "closed", + "name": "MV Airport", + "latitude_deg": "32.28634", + "longitude_deg": "-109.36185", + "elevation_ft": "3676", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bowie", + "scheduled_service": "no" + }, + { + "id": "350323", + "ident": "US-5952", + "type": "closed", + "name": "Barnes Airport", + "latitude_deg": "32.24162", + "longitude_deg": "-109.1427", + "elevation_ft": "3784", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "San Simon", + "scheduled_service": "no" + }, + { + "id": "350324", + "ident": "US-5953", + "type": "closed", + "name": "Wheless / Double L Ranch Airport", + "latitude_deg": "30.42409", + "longitude_deg": "-98.02553", + "elevation_ft": "782", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lago Vista", + "scheduled_service": "no" + }, + { + "id": "350325", + "ident": "US-5954", + "type": "closed", + "name": "Dunlop Airport", + "latitude_deg": "30.79351", + "longitude_deg": "-97.87468", + "elevation_ft": "1061", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Florence", + "scheduled_service": "no" + }, + { + "id": "350326", + "ident": "US-5955", + "type": "closed", + "name": "Quien Sabe Ranch Airport", + "latitude_deg": "29.43042", + "longitude_deg": "-97.74451", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Nixon", + "scheduled_service": "no" + }, + { + "id": "350327", + "ident": "US-5956", + "type": "closed", + "name": "Kenedy Airport (1953)", + "latitude_deg": "28.80352", + "longitude_deg": "-97.8354", + "elevation_ft": "424", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kenedy", + "scheduled_service": "no" + }, + { + "id": "350328", + "ident": "US-5957", + "type": "closed", + "name": "Travland Airport", + "latitude_deg": "28.42477", + "longitude_deg": "-97.76362", + "elevation_ft": "290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beeville", + "scheduled_service": "no" + }, + { + "id": "350329", + "ident": "US-5958", + "type": "closed", + "name": "Mathis Airport", + "latitude_deg": "28.10815", + "longitude_deg": "-97.83215", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mathis", + "scheduled_service": "no" + }, + { + "id": "350330", + "ident": "US-5959", + "type": "closed", + "name": "Plummer Airport", + "latitude_deg": "32.75323", + "longitude_deg": "-111.13985", + "elevation_ft": "2667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Florence", + "scheduled_service": "no" + }, + { + "id": "350331", + "ident": "US-5960", + "type": "closed", + "name": "Douglas Aviation Field", + "latitude_deg": "31.37546", + "longitude_deg": "-109.54399", + "elevation_ft": "4044", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Douglas", + "scheduled_service": "no" + }, + { + "id": "350332", + "ident": "US-5961", + "type": "small_airport", + "name": "Double Oak Ranch Airport", + "latitude_deg": "30.35428", + "longitude_deg": "-100.45695", + "elevation_ft": "2268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no" + }, + { + "id": "350361", + "ident": "US-5962", + "type": "closed", + "name": "San Pedro Ranch Airport", + "latitude_deg": "26.08156", + "longitude_deg": "-97.98466", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weslaco", + "scheduled_service": "no" + }, + { + "id": "350363", + "ident": "US-5963", + "type": "closed", + "name": "Chessher Farms Airport", + "latitude_deg": "29.310818", + "longitude_deg": "-97.766107", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Nixon", + "scheduled_service": "no" + }, + { + "id": "350364", + "ident": "US-5964", + "type": "closed", + "name": "Haby Ranch Airport", + "latitude_deg": "29.85727", + "longitude_deg": "-99.56093", + "elevation_ft": "2289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Vanderpool", + "scheduled_service": "no" + }, + { + "id": "350365", + "ident": "US-5965", + "type": "closed", + "name": "Canyon Ranch Airport", + "latitude_deg": "29.64014", + "longitude_deg": "-99.823794", + "elevation_ft": "1950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Uvalde", + "scheduled_service": "no", + "keywords": "Rancho Canonero" + }, + { + "id": "350366", + "ident": "US-5966", + "type": "closed", + "name": "Pan-Gil Ranch Airport", + "latitude_deg": "30.0809", + "longitude_deg": "-100.08264", + "elevation_ft": "2330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rocksprings", + "scheduled_service": "no" + }, + { + "id": "350369", + "ident": "US-5967", + "type": "closed", + "name": "Eppright Flying Service / Mission Agro Airport", + "latitude_deg": "26.208", + "longitude_deg": "-98.36311", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mission", + "scheduled_service": "no" + }, + { + "id": "350370", + "ident": "US-5968", + "type": "closed", + "name": "Pharr Airport", + "latitude_deg": "26.17096", + "longitude_deg": "-98.18082", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pharr", + "scheduled_service": "no" + }, + { + "id": "350371", + "ident": "US-5969", + "type": "closed", + "name": "Los Fresnos Airport", + "latitude_deg": "26.0626", + "longitude_deg": "-97.47362", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Los Fresnos", + "scheduled_service": "no" + }, + { + "id": "350372", + "ident": "US-5970", + "type": "closed", + "name": "Woods Airport", + "latitude_deg": "26.16984", + "longitude_deg": "-98.03916", + "elevation_ft": "88", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Donna", + "scheduled_service": "no" + }, + { + "id": "350385", + "ident": "US-5971", + "type": "closed", + "name": "Walker Farms Airport", + "latitude_deg": "32.414", + "longitude_deg": "-111.22994", + "elevation_ft": "2016", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Marana", + "scheduled_service": "no" + }, + { + "id": "350403", + "ident": "US-5972", + "type": "closed", + "name": "Anderson Acres Airport", + "latitude_deg": "41.79279", + "longitude_deg": "-74.23912", + "elevation_ft": "246", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Accord", + "scheduled_service": "no" + }, + { + "id": "350405", + "ident": "US-5973", + "type": "closed", + "name": "Sages Airfield", + "latitude_deg": "41.77915", + "longitude_deg": "-74.26825", + "elevation_ft": "318", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Kerhonkson", + "scheduled_service": "no" + }, + { + "id": "350411", + "ident": "US-5974", + "type": "closed", + "name": "Grove Ranch Airport", + "latitude_deg": "30.48599", + "longitude_deg": "-98.03289", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marble Falls", + "scheduled_service": "no" + }, + { + "id": "350414", + "ident": "US-5975", + "type": "closed", + "name": "Shepherd Farm Airport", + "latitude_deg": "30.20834", + "longitude_deg": "-98.72113", + "elevation_ft": "1625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fredericksburg", + "scheduled_service": "no" + }, + { + "id": "350416", + "ident": "US-5976", + "type": "small_airport", + "name": "West Buckeye Airport", + "latitude_deg": "33.39461", + "longitude_deg": "-112.73029", + "elevation_ft": "962", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Buckeye", + "scheduled_service": "no" + }, + { + "id": "350417", + "ident": "US-5977", + "type": "small_airport", + "name": "Garrett Ranch Airport", + "latitude_deg": "29.87767", + "longitude_deg": "-97.43555", + "elevation_ft": "639", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Red Rock", + "scheduled_service": "no" + }, + { + "id": "350418", + "ident": "US-5978", + "type": "closed", + "name": "Mayer Bryden Ranch Airport", + "latitude_deg": "30.59525", + "longitude_deg": "-100.7992", + "elevation_ft": "2217", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no" + }, + { + "id": "350419", + "ident": "US-5979", + "type": "closed", + "name": "Price Airport", + "latitude_deg": "30.757", + "longitude_deg": "-98.01697", + "elevation_ft": "1125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bertram", + "scheduled_service": "no" + }, + { + "id": "350420", + "ident": "US-5980", + "type": "closed", + "name": "Duff-Goober Ranch Airport", + "latitude_deg": "30.25253", + "longitude_deg": "-97.13282", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paige", + "scheduled_service": "no" + }, + { + "id": "350421", + "ident": "US-5981", + "type": "closed", + "name": "Running M Airport", + "latitude_deg": "30.04756", + "longitude_deg": "-97.26344", + "elevation_ft": "345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bastrop", + "scheduled_service": "no" + }, + { + "id": "350422", + "ident": "US-5982", + "type": "closed", + "name": "El Capricho Ranch Airport", + "latitude_deg": "29.15751", + "longitude_deg": "-97.73457", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gillett", + "scheduled_service": "no" + }, + { + "id": "350423", + "ident": "US-5983", + "type": "closed", + "name": "Cochran Ranch Airport", + "latitude_deg": "29.10588", + "longitude_deg": "-97.711863", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Yorktown", + "scheduled_service": "no" + }, + { + "id": "350424", + "ident": "US-5984", + "type": "closed", + "name": "McKenzie Airport", + "latitude_deg": "32.81415", + "longitude_deg": "-111.55846", + "elevation_ft": "1513", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Eloy", + "scheduled_service": "no" + }, + { + "id": "350425", + "ident": "US-5985", + "type": "closed", + "name": "Earley Airport", + "latitude_deg": "32.86435", + "longitude_deg": "-111.54707", + "elevation_ft": "1486", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Coolidge", + "scheduled_service": "no" + }, + { + "id": "350428", + "ident": "US-5986", + "type": "closed", + "name": "Foster Airport", + "latitude_deg": "29.27015", + "longitude_deg": "-98.44767", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no" + }, + { + "id": "350429", + "ident": "US-5987", + "type": "closed", + "name": "Riverview Airport", + "latitude_deg": "29.27855", + "longitude_deg": "-98.5922", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Von Ormy", + "scheduled_service": "no" + }, + { + "id": "350442", + "ident": "US-5988", + "type": "heliport", + "name": "Baptist Medical Center South Heliport", + "latitude_deg": "30.13721", + "longitude_deg": "-81.53477", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jacksonville", + "scheduled_service": "no", + "local_code": "1FA4" + }, + { + "id": "350443", + "ident": "US-5989", + "type": "closed", + "name": "Kingsville Naval Outlying Landing Field Number 31", + "latitude_deg": "27.77281", + "longitude_deg": "-97.62857", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Robstown", + "scheduled_service": "no" + }, + { + "id": "350444", + "ident": "US-5990", + "type": "closed", + "name": "Kingsville Naval Outlying Landing Field Number 35", + "latitude_deg": "27.77626", + "longitude_deg": "-97.75851", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Robstown", + "scheduled_service": "no" + }, + { + "id": "350445", + "ident": "US-5991", + "type": "closed", + "name": "Kingsville Naval Outlying Landing Field Number 32", + "latitude_deg": "27.71448", + "longitude_deg": "-97.68019", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Robstown", + "scheduled_service": "no" + }, + { + "id": "350446", + "ident": "US-5992", + "type": "closed", + "name": "Douglas Airport", + "latitude_deg": "27.80849", + "longitude_deg": "-97.51524", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no" + }, + { + "id": "350473", + "ident": "US-5993", + "type": "closed", + "name": "Yermo Airport", + "latitude_deg": "34.90982", + "longitude_deg": "-116.81629", + "elevation_ft": "1927", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Yermo", + "scheduled_service": "no" + }, + { + "id": "350474", + "ident": "US-5994", + "type": "closed", + "name": "Calico Guest Ranch Airport", + "latitude_deg": "34.91119", + "longitude_deg": "-116.85949", + "elevation_ft": "1950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Yermo", + "scheduled_service": "no" + }, + { + "id": "350475", + "ident": "US-5995", + "type": "closed", + "name": "Corona Airport (1954)", + "latitude_deg": "33.88047", + "longitude_deg": "-117.54645", + "elevation_ft": "623", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Corona", + "scheduled_service": "no" + }, + { + "id": "350476", + "ident": "US-5996", + "type": "closed", + "name": "D4C Ranch Airport", + "latitude_deg": "36.12484", + "longitude_deg": "-115.19534", + "elevation_ft": "2174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no" + }, + { + "id": "350477", + "ident": "US-5997", + "type": "closed", + "name": "Sky Corral Airport", + "latitude_deg": "36.13254", + "longitude_deg": "-115.17981", + "elevation_ft": "2134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no" + }, + { + "id": "350478", + "ident": "US-5998", + "type": "closed", + "name": "Porters Airport", + "latitude_deg": "36.15065", + "longitude_deg": "-115.19692", + "elevation_ft": "2181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no" + }, + { + "id": "350479", + "ident": "US-5999", + "type": "closed", + "name": "Whitney Airport", + "latitude_deg": "36.10431", + "longitude_deg": "-115.04439", + "elevation_ft": "1663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no" + }, + { + "id": "28489", + "ident": "US-59S", + "type": "closed", + "name": "Evergreen Field", + "latitude_deg": "45.619998931884766", + "longitude_deg": "-122.52999877929688", + "elevation_ft": "312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Vancouver", + "scheduled_service": "no", + "local_code": "59S", + "wikipedia_link": "https://en.wikipedia.org/wiki/Evergreen_Field" + }, + { + "id": "350480", + "ident": "US-6000", + "type": "closed", + "name": "Utah Central Airport", + "latitude_deg": "40.72407", + "longitude_deg": "-111.97242", + "elevation_ft": "4245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "West Valley City", + "scheduled_service": "no" + }, + { + "id": "350481", + "ident": "US-6001", + "type": "closed", + "name": "Alta Airpark", + "latitude_deg": "40.59064", + "longitude_deg": "-111.84144", + "elevation_ft": "4801", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Sandy", + "scheduled_service": "no" + }, + { + "id": "350482", + "ident": "US-6002", + "type": "closed", + "name": "Carter Sky Ranch", + "latitude_deg": "40.53638", + "longitude_deg": "-111.85137", + "elevation_ft": "4773", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Draper", + "scheduled_service": "no" + }, + { + "id": "350483", + "ident": "US-6003", + "type": "closed", + "name": "Falcon Field Airport", + "latitude_deg": "40.71577", + "longitude_deg": "-111.94888", + "elevation_ft": "4235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Salt Lake City", + "scheduled_service": "no" + }, + { + "id": "350499", + "ident": "US-6004", + "type": "heliport", + "name": "US Border Patrol Sunburst Heliport", + "latitude_deg": "48.88595", + "longitude_deg": "-111.89637", + "elevation_ft": "3338", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Sunburst", + "scheduled_service": "no" + }, + { + "id": "350500", + "ident": "US-6005", + "type": "heliport", + "name": "US Border Patrol Oroville Heliport", + "latitude_deg": "48.9872", + "longitude_deg": "-119.4602", + "elevation_ft": "1029", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Oroville", + "scheduled_service": "no" + }, + { + "id": "350501", + "ident": "US-6006", + "type": "closed", + "name": "Sky Acres Airport", + "latitude_deg": "45.06", + "longitude_deg": "-122.933", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Brooks", + "scheduled_service": "no" + }, + { + "id": "350502", + "ident": "US-6007", + "type": "closed", + "name": "Poe Airport", + "latitude_deg": "34.79964", + "longitude_deg": "-116.50254", + "elevation_ft": "1850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Newberry Springs", + "scheduled_service": "no" + }, + { + "id": "350503", + "ident": "US-6008", + "type": "closed", + "name": "Yuma Auxiliary Landing Field Number 1", + "latitude_deg": "32.6606", + "longitude_deg": "-114.44414", + "elevation_ft": "284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yuma", + "scheduled_service": "no" + }, + { + "id": "350504", + "ident": "US-6009", + "type": "closed", + "name": "Murrieta Hot Springs Airport (1953)", + "latitude_deg": "33.55653", + "longitude_deg": "-117.15196", + "elevation_ft": "1134", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Murrieta", + "scheduled_service": "no" + }, + { + "id": "350505", + "ident": "US-6010", + "type": "closed", + "name": "Anderson Field / Rockwell Field", + "latitude_deg": "36.13583", + "longitude_deg": "-115.14532", + "elevation_ft": "2044", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no" + }, + { + "id": "350508", + "ident": "US-6011", + "type": "heliport", + "name": "Hoover Dam Lakeview Heliport", + "latitude_deg": "36.01514", + "longitude_deg": "-114.75693", + "elevation_ft": "1592", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Boulder City", + "scheduled_service": "no" + }, + { + "id": "350510", + "ident": "US-6012", + "type": "heliport", + "name": "Hoover Dam Lookout Heliport", + "latitude_deg": "36.01228", + "longitude_deg": "-114.73073", + "elevation_ft": "1403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Temple Bar Marina", + "scheduled_service": "no" + }, + { + "id": "350512", + "ident": "US-6013", + "type": "closed", + "name": "Mesquite Airport (1953)", + "latitude_deg": "36.81408", + "longitude_deg": "-114.05186", + "elevation_ft": "1766", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Mesquite", + "scheduled_service": "no" + }, + { + "id": "350513", + "ident": "US-6014", + "type": "heliport", + "name": "Central Valley Medical Center Heliport", + "latitude_deg": "39.73078", + "longitude_deg": "-111.83788", + "elevation_ft": "5085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Nephi", + "scheduled_service": "no" + }, + { + "id": "350534", + "ident": "US-6015", + "type": "heliport", + "name": "Lone Peak Hospital Heliport", + "latitude_deg": "40.53574", + "longitude_deg": "-111.89013", + "elevation_ft": "4334", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Draper", + "scheduled_service": "no" + }, + { + "id": "350535", + "ident": "US-6016", + "type": "heliport", + "name": "Barrett Hospital Heliport", + "latitude_deg": "45.20219", + "longitude_deg": "-112.64649", + "elevation_ft": "5147", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Dillon", + "scheduled_service": "no" + }, + { + "id": "350536", + "ident": "US-6017", + "type": "small_airport", + "name": "Argenta Airport", + "latitude_deg": "45.26368", + "longitude_deg": "-112.84517", + "elevation_ft": "6000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Dillon", + "scheduled_service": "no" + }, + { + "id": "350540", + "ident": "US-6018", + "type": "closed", + "name": "Shankle Ranch Airport", + "latitude_deg": "31.6466", + "longitude_deg": "-111.0455", + "elevation_ft": "3142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tubac", + "scheduled_service": "no" + }, + { + "id": "350541", + "ident": "US-6019", + "type": "closed", + "name": "Tubac Airstrip", + "latitude_deg": "31.64126", + "longitude_deg": "-111.04885", + "elevation_ft": "3152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tubac", + "scheduled_service": "no" + }, + { + "id": "350542", + "ident": "US-6020", + "type": "closed", + "name": "Rusty Spur Emergency Landing Zone", + "latitude_deg": "31.62029", + "longitude_deg": "-111.06945", + "elevation_ft": "3365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Tubac", + "scheduled_service": "no" + }, + { + "id": "350543", + "ident": "US-6021", + "type": "closed", + "name": "Summer Home Airport", + "latitude_deg": "37.81894", + "longitude_deg": "-121.20594", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Manteca", + "scheduled_service": "no" + }, + { + "id": "350544", + "ident": "US-6022", + "type": "closed", + "name": "Sacramento Sky Ranch Airport", + "latitude_deg": "38.50041", + "longitude_deg": "-121.43467", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sacramento", + "scheduled_service": "no" + }, + { + "id": "350545", + "ident": "US-6023", + "type": "closed", + "name": "Fairfield Suisun Airpark", + "latitude_deg": "38.24842", + "longitude_deg": "-122.0253", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Suisun City", + "scheduled_service": "no" + }, + { + "id": "350559", + "ident": "US-6024", + "type": "closed", + "name": "Woodland East Airport", + "latitude_deg": "38.68632", + "longitude_deg": "-121.73404", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodland", + "scheduled_service": "no" + }, + { + "id": "350560", + "ident": "US-6025", + "type": "heliport", + "name": "Glenn Medical Center Heliport", + "latitude_deg": "39.52202", + "longitude_deg": "-122.20848", + "elevation_ft": "136", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Willows", + "scheduled_service": "no" + }, + { + "id": "350561", + "ident": "US-6026", + "type": "closed", + "name": "Sacramento National Wildlife Refuge Airport", + "latitude_deg": "39.42516", + "longitude_deg": "-122.18508", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Willows", + "scheduled_service": "no" + }, + { + "id": "350562", + "ident": "US-6027", + "type": "closed", + "name": "Dwyer Airport", + "latitude_deg": "45.47075", + "longitude_deg": "-122.56224", + "elevation_ft": "209", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Portland", + "scheduled_service": "no" + }, + { + "id": "350563", + "ident": "US-6028", + "type": "closed", + "name": "Scherers Ranch Airport", + "latitude_deg": "46.61064", + "longitude_deg": "-122.89005", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Chehalis", + "scheduled_service": "no" + }, + { + "id": "350564", + "ident": "US-6029", + "type": "closed", + "name": "Martha Lake Airport", + "latitude_deg": "47.86312", + "longitude_deg": "-122.23795", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Lynnwood", + "scheduled_service": "no" + }, + { + "id": "350565", + "ident": "US-6030", + "type": "closed", + "name": "State Forestry Airport", + "latitude_deg": "38.55402", + "longitude_deg": "-121.68075", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Davis", + "scheduled_service": "no" + }, + { + "id": "350566", + "ident": "US-6031", + "type": "closed", + "name": "El Macero Airport", + "latitude_deg": "38.54388", + "longitude_deg": "-121.67631", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Davis", + "scheduled_service": "no" + }, + { + "id": "350568", + "ident": "US-6032", + "type": "closed", + "name": "Best Airport", + "latitude_deg": "38.76592", + "longitude_deg": "-121.76597", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woodland", + "scheduled_service": "no" + }, + { + "id": "350569", + "ident": "US-6033", + "type": "closed", + "name": "Capitol Sky Park", + "latitude_deg": "38.58363", + "longitude_deg": "-121.52238", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sacramento", + "scheduled_service": "no" + }, + { + "id": "350570", + "ident": "US-6034", + "type": "small_airport", + "name": "Odom Ranch Airport", + "latitude_deg": "30.12965", + "longitude_deg": "-102.16388", + "elevation_ft": "2340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dryden", + "scheduled_service": "no" + }, + { + "id": "350571", + "ident": "US-6035", + "type": "closed", + "name": "Kerr Ranch Airport", + "latitude_deg": "30.12843", + "longitude_deg": "-102.10327", + "elevation_ft": "2250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dryden", + "scheduled_service": "no" + }, + { + "id": "350572", + "ident": "US-6036", + "type": "closed", + "name": "Shary / Hopson Putz Airport", + "latitude_deg": "26.17145", + "longitude_deg": "-98.2903", + "elevation_ft": "101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mission", + "scheduled_service": "no" + }, + { + "id": "350573", + "ident": "US-6037", + "type": "small_airport", + "name": "Rio Dusters Airport", + "latitude_deg": "26.08293", + "longitude_deg": "-97.68157", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Benito", + "scheduled_service": "no" + }, + { + "id": "350574", + "ident": "US-6038", + "type": "closed", + "name": "Donna Dusting Service Airport", + "latitude_deg": "26.12338", + "longitude_deg": "-98.05786", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Donna", + "scheduled_service": "no" + }, + { + "id": "350575", + "ident": "US-6039", + "type": "closed", + "name": "Puckett Ranch Airport", + "latitude_deg": "30.61517", + "longitude_deg": "-102.55771", + "elevation_ft": "3246", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no" + }, + { + "id": "350577", + "ident": "US-6040", + "type": "closed", + "name": "Ligon Ranch Airport", + "latitude_deg": "30.7688", + "longitude_deg": "-102.35639", + "elevation_ft": "3250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Stockton", + "scheduled_service": "no" + }, + { + "id": "350578", + "ident": "US-6041", + "type": "closed", + "name": "Odem Airport", + "latitude_deg": "27.91799", + "longitude_deg": "-97.57462", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Odem", + "scheduled_service": "no" + }, + { + "id": "350581", + "ident": "US-6042", + "type": "closed", + "name": "Kingsville Naval Outlying Landing Field Number 20", + "latitude_deg": "27.6418", + "longitude_deg": "-97.47538", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no" + }, + { + "id": "350582", + "ident": "US-6043", + "type": "closed", + "name": "Kingsville Naval Outlying Landing Field Number 22", + "latitude_deg": "27.64487", + "longitude_deg": "-97.61649", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Robstown", + "scheduled_service": "no" + }, + { + "id": "350583", + "ident": "US-6044", + "type": "closed", + "name": "Kingsville Naval Outlying Landing Field Number 52", + "latitude_deg": "27.40286", + "longitude_deg": "-97.73907", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kingsville", + "scheduled_service": "no" + }, + { + "id": "350588", + "ident": "US-6045", + "type": "closed", + "name": "Pearland Airport", + "latitude_deg": "34.55134", + "longitude_deg": "-118.06123", + "elevation_ft": "2714", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palmdale", + "scheduled_service": "no" + }, + { + "id": "350589", + "ident": "US-6046", + "type": "closed", + "name": "Galbraith Airport", + "latitude_deg": "34.57433", + "longitude_deg": "-118.12195", + "elevation_ft": "2686", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Palmdale", + "scheduled_service": "no" + }, + { + "id": "350590", + "ident": "US-6047", + "type": "heliport", + "name": "University of Utah Health South Jordan Medical Center Heliport", + "latitude_deg": "40.54114", + "longitude_deg": "-112.01445", + "elevation_ft": "4817", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "South Jordan", + "scheduled_service": "no" + }, + { + "id": "350591", + "ident": "US-6048", + "type": "heliport", + "name": "Logan Health Conrad Heliport", + "latitude_deg": "48.17471", + "longitude_deg": "-111.95791", + "elevation_ft": "3516", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Conrad", + "scheduled_service": "no" + }, + { + "id": "350592", + "ident": "US-6049", + "type": "heliport", + "name": "Logan Health Shelby Heliport", + "latitude_deg": "48.5103", + "longitude_deg": "-111.85021", + "elevation_ft": "3290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Shelby", + "scheduled_service": "no" + }, + { + "id": "350593", + "ident": "US-6050", + "type": "heliport", + "name": "Dubois Medical Clinic Heliport", + "latitude_deg": "43.52679", + "longitude_deg": "-109.616", + "elevation_ft": "6903", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Dubois", + "scheduled_service": "no" + }, + { + "id": "350594", + "ident": "US-6051", + "type": "heliport", + "name": "Dubois Rest Area Heliport", + "latitude_deg": "44.1802", + "longitude_deg": "-112.2382", + "elevation_ft": "5173", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Dubois", + "scheduled_service": "no" + }, + { + "id": "350595", + "ident": "US-6052", + "type": "heliport", + "name": "Spanish Fork Hospital Heliport", + "latitude_deg": "40.1314", + "longitude_deg": "-111.64196", + "elevation_ft": "4542", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Spanish Fork", + "scheduled_service": "no" + }, + { + "id": "350596", + "ident": "US-6053", + "type": "heliport", + "name": "Benefis Teton Medical Center Heliport", + "latitude_deg": "47.81436", + "longitude_deg": "-112.19186", + "elevation_ft": "3826", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Choteau", + "scheduled_service": "no" + }, + { + "id": "350597", + "ident": "US-6054", + "type": "heliport", + "name": "Layton Hospital Heliport", + "latitude_deg": "41.05287", + "longitude_deg": "-111.96996", + "elevation_ft": "4324", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Layton", + "scheduled_service": "no" + }, + { + "id": "350598", + "ident": "US-6055", + "type": "heliport", + "name": "Beaver Valley Hospital Heliport", + "latitude_deg": "38.28925", + "longitude_deg": "-112.64312", + "elevation_ft": "5944", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Beaver", + "scheduled_service": "no" + }, + { + "id": "350599", + "ident": "US-6056", + "type": "heliport", + "name": "Intermountain St George Regional Hospital Heliport", + "latitude_deg": "37.09891", + "longitude_deg": "-113.55266", + "elevation_ft": "2654", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "St George", + "scheduled_service": "no" + }, + { + "id": "350600", + "ident": "US-6057", + "type": "heliport", + "name": "Southern Hills Hospital Heliport", + "latitude_deg": "36.07367", + "longitude_deg": "-115.29625", + "elevation_ft": "2564", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no" + }, + { + "id": "350601", + "ident": "US-6058", + "type": "heliport", + "name": "Primm Heliport", + "latitude_deg": "35.61419", + "longitude_deg": "-115.38044", + "elevation_ft": "2628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Primm", + "scheduled_service": "no" + }, + { + "id": "350602", + "ident": "US-6059", + "type": "heliport", + "name": "Marine Corps Logistics Base Barstow Heliport", + "latitude_deg": "34.8974", + "longitude_deg": "-116.87729", + "elevation_ft": "1965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Daggett", + "scheduled_service": "no" + }, + { + "id": "350603", + "ident": "US-6060", + "type": "closed", + "name": "Calaveras County San Andreas Airport", + "latitude_deg": "38.18585", + "longitude_deg": "-120.66882", + "elevation_ft": "1142", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Andreas", + "scheduled_service": "no" + }, + { + "id": "350604", + "ident": "US-6061", + "type": "closed", + "name": "Taft-Kern County Auxiliary Airport", + "latitude_deg": "35.06959", + "longitude_deg": "-119.09173", + "elevation_ft": "444", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bakersfield", + "scheduled_service": "no" + }, + { + "id": "350605", + "ident": "US-6062", + "type": "small_airport", + "name": "Skydive San Joaquin Valley Airport", + "latitude_deg": "35.097819", + "longitude_deg": "-119.070961", + "elevation_ft": "327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bakersfield", + "scheduled_service": "no", + "gps_code": "81CA", + "local_code": "81CA" + }, + { + "id": "350607", + "ident": "US-6063", + "type": "closed", + "name": "Oranges Airport", + "latitude_deg": "38.02948", + "longitude_deg": "-121.31807", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stockton", + "scheduled_service": "no" + }, + { + "id": "350608", + "ident": "US-6064", + "type": "closed", + "name": "West Lane Airport", + "latitude_deg": "38.01322", + "longitude_deg": "-121.28869", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stockton", + "scheduled_service": "no" + }, + { + "id": "350609", + "ident": "US-6065", + "type": "closed", + "name": "Jackson Ranch Airport", + "latitude_deg": "41.47993", + "longitude_deg": "-122.41349", + "elevation_ft": "2928", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Weed", + "scheduled_service": "no" + }, + { + "id": "350610", + "ident": "US-6066", + "type": "closed", + "name": "Hult Airport", + "latitude_deg": "43.10547", + "longitude_deg": "-123.43394", + "elevation_ft": "523", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Dillard", + "scheduled_service": "no" + }, + { + "id": "350611", + "ident": "US-6067", + "type": "closed", + "name": "Springfield Airport", + "latitude_deg": "44.05787", + "longitude_deg": "-122.99022", + "elevation_ft": "474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Springfield", + "scheduled_service": "no" + }, + { + "id": "350612", + "ident": "US-6068", + "type": "closed", + "name": "Grants Pass Airport (1943)", + "latitude_deg": "42.46163", + "longitude_deg": "-123.32548", + "elevation_ft": "1153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Grants Pass", + "scheduled_service": "no" + }, + { + "id": "350613", + "ident": "US-6069", + "type": "closed", + "name": "Eugene Airpark", + "latitude_deg": "44.03694", + "longitude_deg": "-123.1149", + "elevation_ft": "451", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Eugene", + "scheduled_service": "no" + }, + { + "id": "350614", + "ident": "US-6070", + "type": "closed", + "name": "Longview Airport", + "latitude_deg": "46.10753", + "longitude_deg": "-122.91882", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Longview", + "scheduled_service": "no" + }, + { + "id": "350615", + "ident": "US-6071", + "type": "closed", + "name": "Vision Field", + "latitude_deg": "46.22488", + "longitude_deg": "-122.90875", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Castle Rock", + "scheduled_service": "no" + }, + { + "id": "350616", + "ident": "US-6072", + "type": "closed", + "name": "Ben Barry's Sky Harbor", + "latitude_deg": "47.2474", + "longitude_deg": "-122.39406", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tacoma", + "scheduled_service": "no" + }, + { + "id": "350617", + "ident": "US-6073", + "type": "closed", + "name": "City View Airport", + "latitude_deg": "47.28888", + "longitude_deg": "-122.37908", + "elevation_ft": "455", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tacoma", + "scheduled_service": "no" + }, + { + "id": "350618", + "ident": "US-6074", + "type": "closed", + "name": "Fort Lewis Auxiliary Airfield Number 1", + "latitude_deg": "47.07913", + "longitude_deg": "-122.47175", + "elevation_ft": "376", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tacoma", + "scheduled_service": "no" + }, + { + "id": "350619", + "ident": "US-6075", + "type": "closed", + "name": "Gaffney's Lake Wilderness Resort Airport", + "latitude_deg": "47.3792", + "longitude_deg": "-122.04354", + "elevation_ft": "467", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Maple Valley", + "scheduled_service": "no" + }, + { + "id": "350620", + "ident": "US-6076", + "type": "closed", + "name": "Moss Airport", + "latitude_deg": "47.072", + "longitude_deg": "-122.298", + "elevation_ft": "552", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Graham", + "scheduled_service": "no", + "keywords": "2WA4" + }, + { + "id": "350621", + "ident": "US-6077", + "type": "closed", + "name": "Auburn Airfield", + "latitude_deg": "47.29334", + "longitude_deg": "-122.19484", + "elevation_ft": "283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Auburn", + "scheduled_service": "no" + }, + { + "id": "350622", + "ident": "US-6078", + "type": "closed", + "name": "Evergreen Industrial Airport", + "latitude_deg": "47.304579", + "longitude_deg": "-122.322352", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Federal Way", + "scheduled_service": "no" + }, + { + "id": "350623", + "ident": "US-6079", + "type": "closed", + "name": "Mueller-Harkins Airport / Clover Park Technical College Airfield", + "latitude_deg": "47.17409", + "longitude_deg": "-122.50094", + "elevation_ft": "271", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Lakewood", + "scheduled_service": "no" + }, + { + "id": "350624", + "ident": "US-6080", + "type": "closed", + "name": "Fort Lewis Auxiliary Airfield Number 2", + "latitude_deg": "47.03303", + "longitude_deg": "-122.54277", + "elevation_ft": "334", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tacoma", + "scheduled_service": "no" + }, + { + "id": "350625", + "ident": "US-6081", + "type": "closed", + "name": "Fort Lewis Auxiliary Airfield Number 3", + "latitude_deg": "47.03198", + "longitude_deg": "-122.45762", + "elevation_ft": "395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tacoma", + "scheduled_service": "no" + }, + { + "id": "350626", + "ident": "US-6082", + "type": "closed", + "name": "Tacoma Airport", + "latitude_deg": "47.24032", + "longitude_deg": "-122.52757", + "elevation_ft": "352", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tacoma", + "scheduled_service": "no" + }, + { + "id": "350627", + "ident": "US-6083", + "type": "closed", + "name": "South Tacoma Airport", + "latitude_deg": "47.21751", + "longitude_deg": "-122.48821", + "elevation_ft": "256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tacoma", + "scheduled_service": "no" + }, + { + "id": "350628", + "ident": "US-6084", + "type": "closed", + "name": "Naval Air Station Seattle", + "latitude_deg": "47.68164", + "longitude_deg": "-122.25347", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Seattle", + "scheduled_service": "no", + "keywords": "Puget Sound, Sand Point" + }, + { + "id": "350629", + "ident": "US-6085", + "type": "small_airport", + "name": "King Airport", + "latitude_deg": "48.52831", + "longitude_deg": "-123.06384", + "elevation_ft": "154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Friday Harbor", + "scheduled_service": "no" + }, + { + "id": "350630", + "ident": "US-6086", + "type": "closed", + "name": "Brickner Ranch Airport", + "latitude_deg": "29.98806", + "longitude_deg": "-101.87834", + "elevation_ft": "1645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dryden", + "scheduled_service": "no" + }, + { + "id": "350631", + "ident": "US-6087", + "type": "closed", + "name": "Malvado East Airport", + "latitude_deg": "29.99766", + "longitude_deg": "-101.84294", + "elevation_ft": "1824", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Langtry", + "scheduled_service": "no" + }, + { + "id": "350632", + "ident": "US-6088", + "type": "closed", + "name": "Cinco de Mayo Ranch Airport", + "latitude_deg": "29.84614", + "longitude_deg": "-101.85628", + "elevation_ft": "1712", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dryden", + "scheduled_service": "no" + }, + { + "id": "350637", + "ident": "US-6089", + "type": "closed", + "name": "Burke Ranch Airport", + "latitude_deg": "29.72743", + "longitude_deg": "-98.6681", + "elevation_ft": "1405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fair Oaks Ranch", + "scheduled_service": "no" + }, + { + "id": "350638", + "ident": "US-6090", + "type": "closed", + "name": "Mitchell Airfield", + "latitude_deg": "30.06693", + "longitude_deg": "-94.22507", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beaumont", + "scheduled_service": "no" + }, + { + "id": "350639", + "ident": "US-6091", + "type": "closed", + "name": "Schwarz Flying Service Airport", + "latitude_deg": "30.68785", + "longitude_deg": "-97.2816", + "elevation_ft": "476", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Taylor", + "scheduled_service": "no", + "keywords": "Kenneth Schwarz Flying Service" + }, + { + "id": "350640", + "ident": "US-6092", + "type": "closed", + "name": "Halbert Ranch Airport", + "latitude_deg": "30.5928", + "longitude_deg": "-100.71635", + "elevation_ft": "2321", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no" + }, + { + "id": "350641", + "ident": "US-6093", + "type": "closed", + "name": "Ingenhuett Airport", + "latitude_deg": "29.97733", + "longitude_deg": "-98.89167", + "elevation_ft": "1435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comfort", + "scheduled_service": "no" + }, + { + "id": "350642", + "ident": "US-6094", + "type": "closed", + "name": "Fauna Airport", + "latitude_deg": "29.84274", + "longitude_deg": "-95.1719", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "350643", + "ident": "US-6095", + "type": "closed", + "name": "Cheek Airport", + "latitude_deg": "29.97765", + "longitude_deg": "-94.1979", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Beaumont", + "scheduled_service": "no" + }, + { + "id": "350644", + "ident": "US-6096", + "type": "closed", + "name": "Skyline / Perkins Airport", + "latitude_deg": "38.54334", + "longitude_deg": "-121.39825", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sacramento", + "scheduled_service": "no" + }, + { + "id": "350645", + "ident": "US-6097", + "type": "closed", + "name": "Reed Army Airfield", + "latitude_deg": "38.51748", + "longitude_deg": "-121.39682", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sacramento", + "scheduled_service": "no" + }, + { + "id": "350646", + "ident": "US-6098", + "type": "closed", + "name": "Del Paso / Lindbergh Airport", + "latitude_deg": "38.63794", + "longitude_deg": "-121.39154", + "elevation_ft": "71", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sacramento", + "scheduled_service": "no" + }, + { + "id": "350647", + "ident": "US-6099", + "type": "closed", + "name": "North Sacramento Airport", + "latitude_deg": "38.62489", + "longitude_deg": "-121.4641", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sacramento", + "scheduled_service": "no" + }, + { + "id": "350648", + "ident": "US-6100", + "type": "closed", + "name": "Fair Oaks Airport", + "latitude_deg": "38.60802", + "longitude_deg": "-121.26697", + "elevation_ft": "132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rancho Cordova", + "scheduled_service": "no" + }, + { + "id": "350649", + "ident": "US-6101", + "type": "closed", + "name": "Jensen Airport", + "latitude_deg": "38.51003", + "longitude_deg": "-121.50509", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sacramento", + "scheduled_service": "no" + }, + { + "id": "350650", + "ident": "US-6102", + "type": "closed", + "name": "Kingsville Naval Outlying Landing Field Number 54", + "latitude_deg": "27.31787", + "longitude_deg": "-97.79706", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Riviera", + "scheduled_service": "no" + }, + { + "id": "350651", + "ident": "US-6103", + "type": "heliport", + "name": "Fort Harrison Army Heliport", + "latitude_deg": "46.61603", + "longitude_deg": "-112.09581", + "elevation_ft": "3962", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Helena", + "scheduled_service": "no" + }, + { + "id": "350652", + "ident": "US-6104", + "type": "heliport", + "name": "Bingham Memorial Hospital Heliport", + "latitude_deg": "43.1933", + "longitude_deg": "-112.34588", + "elevation_ft": "4500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Blackfoot", + "scheduled_service": "no" + }, + { + "id": "350653", + "ident": "US-6105", + "type": "heliport", + "name": "Nell J Redfield Memorial Hospital Heliport", + "latitude_deg": "42.18966", + "longitude_deg": "-112.24971", + "elevation_ft": "4542", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Malad City", + "scheduled_service": "no" + }, + { + "id": "350654", + "ident": "US-6106", + "type": "heliport", + "name": "Lakeview Hospital Heliport", + "latitude_deg": "40.88539", + "longitude_deg": "-111.86829", + "elevation_ft": "4521", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Bountiful", + "scheduled_service": "no" + }, + { + "id": "350655", + "ident": "US-6107", + "type": "heliport", + "name": "Centennial Hills Hospital Heliport", + "latitude_deg": "36.28788", + "longitude_deg": "-115.28583", + "elevation_ft": "2570", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Las Vegas", + "scheduled_service": "no" + }, + { + "id": "350656", + "ident": "US-6108", + "type": "closed", + "name": "Agua Vida Ranch Airport", + "latitude_deg": "30.18632", + "longitude_deg": "-100.50217", + "elevation_ft": "2306", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no" + }, + { + "id": "350657", + "ident": "US-6109", + "type": "closed", + "name": "Mayfield Ranch Airport", + "latitude_deg": "30.52915", + "longitude_deg": "-100.7586", + "elevation_ft": "2119", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no", + "keywords": "Fawcett Ranch" + }, + { + "id": "350658", + "ident": "US-6110", + "type": "closed", + "name": "Sentell Ranch Airport", + "latitude_deg": "30.40785", + "longitude_deg": "-100.32128", + "elevation_ft": "2120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no" + }, + { + "id": "350659", + "ident": "US-6111", + "type": "closed", + "name": "Kirschk Ranch Airport", + "latitude_deg": "29.77809", + "longitude_deg": "-98.6586", + "elevation_ft": "1419", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Boerne", + "scheduled_service": "no" + }, + { + "id": "350660", + "ident": "US-6112", + "type": "closed", + "name": "Scroggins Airport", + "latitude_deg": "29.81492", + "longitude_deg": "-95.82153", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Katy", + "scheduled_service": "no" + }, + { + "id": "350661", + "ident": "US-6113", + "type": "closed", + "name": "King Airport", + "latitude_deg": "29.81493", + "longitude_deg": "-95.77244", + "elevation_ft": "137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Katy", + "scheduled_service": "no", + "keywords": "Franz" + }, + { + "id": "350662", + "ident": "US-6114", + "type": "closed", + "name": "Jorgenson Airport", + "latitude_deg": "29.79652", + "longitude_deg": "-95.70114", + "elevation_ft": "114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "350663", + "ident": "US-6115", + "type": "closed", + "name": "Porter Road Airport", + "latitude_deg": "29.82171", + "longitude_deg": "-95.79511", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Katy", + "scheduled_service": "no" + }, + { + "id": "350664", + "ident": "US-6116", + "type": "closed", + "name": "Ka-Brook Airport", + "latitude_deg": "29.81375", + "longitude_deg": "-95.86461", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Katy", + "scheduled_service": "no", + "keywords": "Beckendorff Farms" + }, + { + "id": "350665", + "ident": "US-6117", + "type": "small_airport", + "name": "Smith Aviation Airport", + "latitude_deg": "30.24247", + "longitude_deg": "-93.52531", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Vinton", + "scheduled_service": "no" + }, + { + "id": "350666", + "ident": "US-6118", + "type": "closed", + "name": "Edgerly Airport", + "latitude_deg": "30.23479", + "longitude_deg": "-93.51304", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Vinton", + "scheduled_service": "no" + }, + { + "id": "350667", + "ident": "US-6119", + "type": "small_airport", + "name": "Lewis Flying Services Airport", + "latitude_deg": "30.12122", + "longitude_deg": "-92.48135", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Morse", + "scheduled_service": "no" + }, + { + "id": "350668", + "ident": "US-6120", + "type": "small_airport", + "name": "McIntyre Flying Services Airport", + "latitude_deg": "29.167855", + "longitude_deg": "-95.361111", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Angleton", + "scheduled_service": "no", + "local_code": "53XA" + }, + { + "id": "350670", + "ident": "US-6121", + "type": "small_airport", + "name": "Little Comanche Creek Airport", + "latitude_deg": "29.45517", + "longitude_deg": "-99.38285", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "D'Hanis", + "scheduled_service": "no" + }, + { + "id": "350671", + "ident": "US-6122", + "type": "small_airport", + "name": "Dunman Mountain Airport", + "latitude_deg": "30.51007", + "longitude_deg": "-98.48465", + "elevation_ft": "1046", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Horseshoe Bay", + "scheduled_service": "no" + }, + { + "id": "350672", + "ident": "US-6123", + "type": "closed", + "name": "La Parrilla Ranch Airport", + "latitude_deg": "27.6592", + "longitude_deg": "-98.64602", + "elevation_ft": "663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Freer", + "scheduled_service": "no" + }, + { + "id": "350673", + "ident": "US-6124", + "type": "closed", + "name": "Fair Ranch Airport", + "latitude_deg": "29.92695", + "longitude_deg": "-99.90788", + "elevation_ft": "2089", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Leakey", + "scheduled_service": "no" + }, + { + "id": "350674", + "ident": "US-6125", + "type": "closed", + "name": "Tarpley Airport", + "latitude_deg": "29.65479", + "longitude_deg": "-99.27365", + "elevation_ft": "1326", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tarpley", + "scheduled_service": "no" + }, + { + "id": "350675", + "ident": "US-6126", + "type": "closed", + "name": "Jones Airport", + "latitude_deg": "29.62741", + "longitude_deg": "-99.54133", + "elevation_ft": "1367", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Utopia", + "scheduled_service": "no" + }, + { + "id": "350676", + "ident": "US-6127", + "type": "small_airport", + "name": "Brindle Canyon Airport", + "latitude_deg": "30.01436", + "longitude_deg": "-102.56025", + "elevation_ft": "2672", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no" + }, + { + "id": "350677", + "ident": "US-6128", + "type": "small_airport", + "name": "Upper Maxon Creek Airport", + "latitude_deg": "29.98946", + "longitude_deg": "-102.54635", + "elevation_ft": "2468", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no" + }, + { + "id": "350678", + "ident": "US-6129", + "type": "small_airport", + "name": "Lower Maxon Creek Airport", + "latitude_deg": "29.97329", + "longitude_deg": "-102.52268", + "elevation_ft": "2402", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no" + }, + { + "id": "350679", + "ident": "US-6130", + "type": "small_airport", + "name": "Murrah Ranch Airport", + "latitude_deg": "30.05363", + "longitude_deg": "-102.5172", + "elevation_ft": "2749", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanderson", + "scheduled_service": "no" + }, + { + "id": "350680", + "ident": "US-6131", + "type": "small_airport", + "name": "Maverick Creek Airport", + "latitude_deg": "29.63451", + "longitude_deg": "-100.05211", + "elevation_ft": "1587", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Camp Wood", + "scheduled_service": "no" + }, + { + "id": "350681", + "ident": "US-6132", + "type": "closed", + "name": "Anderson Ranch Airport", + "latitude_deg": "29.73081", + "longitude_deg": "-100.09076", + "elevation_ft": "1555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Barksdale", + "scheduled_service": "no" + }, + { + "id": "350682", + "ident": "US-6133", + "type": "closed", + "name": "South Buckley Draw Airport", + "latitude_deg": "30.24505", + "longitude_deg": "-100.78233", + "elevation_ft": "2012", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no" + }, + { + "id": "350683", + "ident": "US-6134", + "type": "small_airport", + "name": "La Paloma Ranch Airport", + "latitude_deg": "27.19223", + "longitude_deg": "-97.94505", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sarita", + "scheduled_service": "no" + }, + { + "id": "350684", + "ident": "US-6135", + "type": "small_airport", + "name": "San Jose de los Llanitos Airport", + "latitude_deg": "26.61891", + "longitude_deg": "-97.95865", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Raymondville", + "scheduled_service": "no" + }, + { + "id": "350685", + "ident": "US-6136", + "type": "closed", + "name": "Calaway Airport", + "latitude_deg": "29.08521", + "longitude_deg": "-96.50394", + "elevation_ft": "77", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ganado", + "scheduled_service": "no" + }, + { + "id": "350686", + "ident": "US-6137", + "type": "small_airport", + "name": "Bain Airport", + "latitude_deg": "29.10605", + "longitude_deg": "-96.46298", + "elevation_ft": "77", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Louise", + "scheduled_service": "no" + }, + { + "id": "350687", + "ident": "US-6138", + "type": "small_airport", + "name": "Lott Airport", + "latitude_deg": "29.17212", + "longitude_deg": "-96.40145", + "elevation_ft": "92", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Campo", + "scheduled_service": "no" + }, + { + "id": "350688", + "ident": "US-6139", + "type": "small_airport", + "name": "Schermund Airport", + "latitude_deg": "29.32236", + "longitude_deg": "-96.40264", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Campo", + "scheduled_service": "no" + }, + { + "id": "350689", + "ident": "US-6140", + "type": "small_airport", + "name": "Kallina Airport", + "latitude_deg": "29.30573", + "longitude_deg": "-96.32667", + "elevation_ft": "132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Campo", + "scheduled_service": "no" + }, + { + "id": "350690", + "ident": "US-6141", + "type": "small_airport", + "name": "Ellis Airport", + "latitude_deg": "29.29559", + "longitude_deg": "-96.39997", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "El Campo", + "scheduled_service": "no" + }, + { + "id": "350691", + "ident": "US-6142", + "type": "closed", + "name": "Tucson Compressor Station Airport", + "latitude_deg": "32.3622", + "longitude_deg": "-111.36657", + "elevation_ft": "2065", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Marana", + "scheduled_service": "no" + }, + { + "id": "350695", + "ident": "US-6143", + "type": "small_airport", + "name": "Satan Canyon Airport", + "latitude_deg": "29.73894", + "longitude_deg": "-100.89167", + "elevation_ft": "1746", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no" + }, + { + "id": "350696", + "ident": "US-6144", + "type": "small_airport", + "name": "Turkey Creek Ranch Airport", + "latitude_deg": "29.68373", + "longitude_deg": "-100.82288", + "elevation_ft": "1614", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no" + }, + { + "id": "350697", + "ident": "US-6145", + "type": "closed", + "name": "Dead Mans Pass Airport", + "latitude_deg": "29.82941", + "longitude_deg": "-101.16563", + "elevation_ft": "1787", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comstock", + "scheduled_service": "no" + }, + { + "id": "350698", + "ident": "US-6146", + "type": "small_airport", + "name": "Dead Mans Canyon Airport", + "latitude_deg": "29.82706", + "longitude_deg": "-101.21619", + "elevation_ft": "1582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comstock", + "scheduled_service": "no" + }, + { + "id": "350699", + "ident": "US-6147", + "type": "small_airport", + "name": "Straub Ranch Airport", + "latitude_deg": "30.05862", + "longitude_deg": "-101.69533", + "elevation_ft": "2001", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Langtry", + "scheduled_service": "no" + }, + { + "id": "350700", + "ident": "US-6148", + "type": "closed", + "name": "Wood Ranch Airport", + "latitude_deg": "30.18637", + "longitude_deg": "-102.17283", + "elevation_ft": "2381", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dryden", + "scheduled_service": "no" + }, + { + "id": "350701", + "ident": "US-6149", + "type": "closed", + "name": "Long Mountain Airport", + "latitude_deg": "30.90979", + "longitude_deg": "-98.34043", + "elevation_ft": "1499", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lampasas", + "scheduled_service": "no" + }, + { + "id": "350702", + "ident": "US-6150", + "type": "small_airport", + "name": "High Point Airport", + "latitude_deg": "30.92701", + "longitude_deg": "-81.43221", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Saint Marys", + "scheduled_service": "no", + "local_code": "GA46" + }, + { + "id": "350703", + "ident": "US-6151", + "type": "closed", + "name": "Cabin Bluff Airport", + "latitude_deg": "30.88656", + "longitude_deg": "-81.52089", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Woodbine", + "scheduled_service": "no" + }, + { + "id": "350704", + "ident": "US-6152", + "type": "heliport", + "name": "Southeast Georgia Health System Camden Campus Heliport", + "latitude_deg": "30.78068", + "longitude_deg": "-81.61565", + "elevation_ft": "24", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "St Marys", + "scheduled_service": "no" + }, + { + "id": "350705", + "ident": "US-6153", + "type": "closed", + "name": "La Perla Ranch Airport", + "latitude_deg": "27.20521", + "longitude_deg": "-99.409", + "elevation_ft": "367", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Ygnacio", + "scheduled_service": "no" + }, + { + "id": "350706", + "ident": "US-6154", + "type": "small_airport", + "name": "Callville Bay Airport", + "latitude_deg": "36.14527", + "longitude_deg": "-114.71799", + "elevation_ft": "1203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Overton", + "scheduled_service": "no" + }, + { + "id": "350707", + "ident": "US-6155", + "type": "small_airport", + "name": "Five Points Airport", + "latitude_deg": "36.42548", + "longitude_deg": "-120.1034", + "elevation_ft": "226", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Five Points", + "scheduled_service": "no" + }, + { + "id": "350708", + "ident": "US-6156", + "type": "closed", + "name": "Rok Airport", + "latitude_deg": "45.49621", + "longitude_deg": "-122.48038", + "elevation_ft": "293", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Gresham", + "scheduled_service": "no" + }, + { + "id": "350709", + "ident": "US-6157", + "type": "closed", + "name": "Birdsdale Airport", + "latitude_deg": "45.52265", + "longitude_deg": "-122.45365", + "elevation_ft": "237", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Gresham", + "scheduled_service": "no" + }, + { + "id": "350710", + "ident": "US-6158", + "type": "closed", + "name": "Tono Airport", + "latitude_deg": "46.77394", + "longitude_deg": "-122.83055", + "elevation_ft": "236", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tenino", + "scheduled_service": "no" + }, + { + "id": "350711", + "ident": "US-6159", + "type": "small_airport", + "name": "Omega Airport", + "latitude_deg": "32.50468", + "longitude_deg": "-91.15881", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Tallulah", + "scheduled_service": "no" + }, + { + "id": "350712", + "ident": "US-6160", + "type": "closed", + "name": "Grimes Airport", + "latitude_deg": "32.64621", + "longitude_deg": "-91.18707", + "elevation_ft": "94", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Transylvania", + "scheduled_service": "no" + }, + { + "id": "350713", + "ident": "US-6161", + "type": "small_airport", + "name": "Batton Airport", + "latitude_deg": "32.6889", + "longitude_deg": "-91.21374", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Transylvania", + "scheduled_service": "no" + }, + { + "id": "350714", + "ident": "US-6162", + "type": "closed", + "name": "Atherton Airport", + "latitude_deg": "32.71035", + "longitude_deg": "-91.16641", + "elevation_ft": "97", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Transylvania", + "scheduled_service": "no" + }, + { + "id": "350715", + "ident": "US-6163", + "type": "small_airport", + "name": "Wilson Airport", + "latitude_deg": "32.80347", + "longitude_deg": "-91.20572", + "elevation_ft": "97", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Providence", + "scheduled_service": "no" + }, + { + "id": "350716", + "ident": "US-6164", + "type": "closed", + "name": "Gassoway Airport", + "latitude_deg": "32.99314", + "longitude_deg": "-91.23014", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lake Providence", + "scheduled_service": "no" + }, + { + "id": "350717", + "ident": "US-6165", + "type": "small_airport", + "name": "Sciara and Whittington (Bobbie Harper Road) Airport", + "latitude_deg": "33.05808", + "longitude_deg": "-91.25293", + "elevation_ft": "103", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Eudora", + "scheduled_service": "no" + }, + { + "id": "350718", + "ident": "US-6166", + "type": "closed", + "name": "Grand Lake Airport", + "latitude_deg": "33.09393", + "longitude_deg": "-91.21929", + "elevation_ft": "111", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Eudora", + "scheduled_service": "no" + }, + { + "id": "350719", + "ident": "US-6167", + "type": "small_airport", + "name": "Standridge Flying Service Airport", + "latitude_deg": "33.33345", + "longitude_deg": "-91.29939", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Lake Village", + "scheduled_service": "no" + }, + { + "id": "350720", + "ident": "US-6168", + "type": "closed", + "name": "Sciara and Whittington (Beouff Street) Airport", + "latitude_deg": "33.11548", + "longitude_deg": "-91.28789", + "elevation_ft": "121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Eudora", + "scheduled_service": "no" + }, + { + "id": "350721", + "ident": "US-6169", + "type": "closed", + "name": "Browns Airport", + "latitude_deg": "33.21045", + "longitude_deg": "-91.26769", + "elevation_ft": "126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Eudora", + "scheduled_service": "no" + }, + { + "id": "350722", + "ident": "US-6170", + "type": "small_airport", + "name": "Boydell Airport", + "latitude_deg": "33.36424", + "longitude_deg": "-91.48549", + "elevation_ft": "128", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Montrose", + "scheduled_service": "no" + }, + { + "id": "350723", + "ident": "US-6171", + "type": "small_airport", + "name": "Maddox Airport", + "latitude_deg": "33.55273", + "longitude_deg": "-91.37578", + "elevation_ft": "138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Dermott", + "scheduled_service": "no" + }, + { + "id": "350724", + "ident": "US-6172", + "type": "small_airport", + "name": "French Airport", + "latitude_deg": "33.57379", + "longitude_deg": "-91.38565", + "elevation_ft": "138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Dermott", + "scheduled_service": "no" + }, + { + "id": "350725", + "ident": "US-6173", + "type": "closed", + "name": "Chicot Bayou Airport", + "latitude_deg": "33.58524", + "longitude_deg": "-91.24954", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Arkansas City", + "scheduled_service": "no" + }, + { + "id": "350726", + "ident": "US-6174", + "type": "closed", + "name": "Tierra Tierra Farm Airport", + "latitude_deg": "33.61171", + "longitude_deg": "-91.21846", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Arkansas City", + "scheduled_service": "no" + }, + { + "id": "350727", + "ident": "US-6175", + "type": "small_airport", + "name": "Rohwer Airport", + "latitude_deg": "33.76862", + "longitude_deg": "-91.27211", + "elevation_ft": "147", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Rohwer", + "scheduled_service": "no" + }, + { + "id": "350728", + "ident": "US-6176", + "type": "small_airport", + "name": "K&P Flying Services Airport", + "latitude_deg": "33.87275", + "longitude_deg": "-91.33787", + "elevation_ft": "149", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Watson", + "scheduled_service": "no" + }, + { + "id": "350729", + "ident": "US-6177", + "type": "small_airport", + "name": "Mankin Airport", + "latitude_deg": "33.88437", + "longitude_deg": "-91.26651", + "elevation_ft": "149", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Watson", + "scheduled_service": "no" + }, + { + "id": "350730", + "ident": "US-6178", + "type": "small_airport", + "name": "Perkins Air Service Airport", + "latitude_deg": "33.88563", + "longitude_deg": "-91.42572", + "elevation_ft": "152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Dumas", + "scheduled_service": "no", + "keywords": "Dumas Airstrip" + }, + { + "id": "350731", + "ident": "US-6179", + "type": "closed", + "name": "Pickens Airport", + "latitude_deg": "33.85826", + "longitude_deg": "-91.47819", + "elevation_ft": "161", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Dumas", + "scheduled_service": "no" + }, + { + "id": "350732", + "ident": "US-6180", + "type": "small_airport", + "name": "Farm Brothers Flyers Airport", + "latitude_deg": "33.99083", + "longitude_deg": "-91.53963", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Gould", + "scheduled_service": "no" + }, + { + "id": "350744", + "ident": "US-6181", + "type": "small_airport", + "name": "Neal Ranch Airport", + "latitude_deg": "30.351", + "longitude_deg": "-103.09708", + "elevation_ft": "4475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no" + }, + { + "id": "350745", + "ident": "US-6182", + "type": "small_airport", + "name": "Shumway Innernational Airport", + "latitude_deg": "39.192007", + "longitude_deg": "-88.670287", + "elevation_ft": "642", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Effingham", + "scheduled_service": "no", + "gps_code": "IL05", + "local_code": "IL05" + }, + { + "id": "350746", + "ident": "US-6183", + "type": "closed", + "name": "Cole Airstrip", + "latitude_deg": "42.00084", + "longitude_deg": "-122.64161", + "elevation_ft": "2869", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Hornbrook", + "scheduled_service": "no" + }, + { + "id": "350747", + "ident": "US-6184", + "type": "closed", + "name": "Skyridge Airport", + "latitude_deg": "38.88024", + "longitude_deg": "-121.07212", + "elevation_ft": "1450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Auburn", + "scheduled_service": "no" + }, + { + "id": "350748", + "ident": "US-6185", + "type": "closed", + "name": "Fair Oaks Airport / Phoenix Field", + "latitude_deg": "38.65688", + "longitude_deg": "-121.21984", + "elevation_ft": "273", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fair Oaks", + "scheduled_service": "no" + }, + { + "id": "350749", + "ident": "US-6186", + "type": "heliport", + "name": "Sutter Delta Medical Center Heliport", + "latitude_deg": "37.98361", + "longitude_deg": "-121.80152", + "elevation_ft": "143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Antioch", + "scheduled_service": "no" + }, + { + "id": "350750", + "ident": "US-6187", + "type": "heliport", + "name": "Touchette Regional Hospital Heliport", + "latitude_deg": "38.56955", + "longitude_deg": "-90.109503", + "elevation_ft": "416", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Centreville", + "scheduled_service": "no", + "gps_code": "LL59", + "local_code": "LL59" + }, + { + "id": "350751", + "ident": "US-6188", + "type": "closed", + "name": "Rio Vista Airport (1952)", + "latitude_deg": "38.17056", + "longitude_deg": "-121.68784", + "elevation_ft": "47", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rio Vista", + "scheduled_service": "no" + }, + { + "id": "350755", + "ident": "US-6189", + "type": "closed", + "name": "Schultz Airport", + "latitude_deg": "30.36035", + "longitude_deg": "-92.39286", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Crowley", + "scheduled_service": "no" + }, + { + "id": "350758", + "ident": "US-6190", + "type": "closed", + "name": "Ellis Airport", + "latitude_deg": "30.30135", + "longitude_deg": "-92.46057", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Iota", + "scheduled_service": "no" + }, + { + "id": "350759", + "ident": "US-6191", + "type": "small_airport", + "name": "Roberts Cove Airport", + "latitude_deg": "30.2804", + "longitude_deg": "-92.29524", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Rayne", + "scheduled_service": "no" + }, + { + "id": "350761", + "ident": "US-6192", + "type": "heliport", + "name": "Ochsner Medical Complex Iberville Heliport", + "latitude_deg": "30.26565", + "longitude_deg": "-91.21922", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Plaquemine", + "scheduled_service": "no" + }, + { + "id": "350763", + "ident": "US-6193", + "type": "small_airport", + "name": "Morgans Flying Service Airport", + "latitude_deg": "30.09204", + "longitude_deg": "-92.41284", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Crowley", + "scheduled_service": "no" + }, + { + "id": "350764", + "ident": "US-6194", + "type": "closed", + "name": "Merrit Airport", + "latitude_deg": "30.09518", + "longitude_deg": "-92.42549", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Crowley", + "scheduled_service": "no" + }, + { + "id": "350773", + "ident": "US-6195", + "type": "closed", + "name": "Eastland Airport", + "latitude_deg": "30.3068", + "longitude_deg": "-92.26014", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Rayne", + "scheduled_service": "no" + }, + { + "id": "350774", + "ident": "US-6196", + "type": "closed", + "name": "Mid South Flying Service Airport", + "latitude_deg": "30.35772", + "longitude_deg": "-92.26447", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Branch", + "scheduled_service": "no" + }, + { + "id": "350775", + "ident": "US-6197", + "type": "small_airport", + "name": "Matidora Airport", + "latitude_deg": "29.44947", + "longitude_deg": "-89.62355", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Buras", + "scheduled_service": "no", + "gps_code": "LS84", + "local_code": "LS84" + }, + { + "id": "350776", + "ident": "US-6198", + "type": "small_airport", + "name": "Alma Airport", + "latitude_deg": "26.732986", + "longitude_deg": "-81.571042", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Alva", + "scheduled_service": "no", + "gps_code": "87FL", + "local_code": "87FL" + }, + { + "id": "350777", + "ident": "US-6199", + "type": "closed", + "name": "Trading Post Airport", + "latitude_deg": "37.28731", + "longitude_deg": "-89.45201", + "elevation_ft": "328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "McClure", + "scheduled_service": "no" + }, + { + "id": "350778", + "ident": "US-6200", + "type": "small_airport", + "name": "Thompson Flying Service Airport", + "latitude_deg": "36.9395", + "longitude_deg": "-89.36965", + "elevation_ft": "324", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Charleston", + "scheduled_service": "no" + }, + { + "id": "350779", + "ident": "US-6201", + "type": "small_airport", + "name": "Lost Hill Aviation Airport", + "latitude_deg": "37.08808", + "longitude_deg": "-89.79408", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Oran", + "scheduled_service": "no" + }, + { + "id": "350780", + "ident": "US-6202", + "type": "closed", + "name": "Painton Airport", + "latitude_deg": "37.08546", + "longitude_deg": "-89.80331", + "elevation_ft": "322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Oran", + "scheduled_service": "no" + }, + { + "id": "350781", + "ident": "US-6203", + "type": "small_airport", + "name": "Hall Aviation Airport", + "latitude_deg": "36.66285", + "longitude_deg": "-90.40674", + "elevation_ft": "314", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Poplar Bluff", + "scheduled_service": "no" + }, + { + "id": "350785", + "ident": "US-6204", + "type": "small_airport", + "name": "Old Hickory Airpark", + "latitude_deg": "41.821903", + "longitude_deg": "-80.950011", + "elevation_ft": "637", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Geneva", + "scheduled_service": "no", + "gps_code": "OH12", + "local_code": "OH12" + }, + { + "id": "350787", + "ident": "US-6205", + "type": "small_airport", + "name": "Addison-Henley Field", + "latitude_deg": "30.402128", + "longitude_deg": "-89.325358", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Pass Christian", + "scheduled_service": "no", + "gps_code": "0MS7", + "local_code": "0MS7" + }, + { + "id": "350814", + "ident": "US-6206", + "type": "small_airport", + "name": "Wolf Island Farms Airport", + "latitude_deg": "36.72304", + "longitude_deg": "-89.2163", + "elevation_ft": "303", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "East Prairie", + "scheduled_service": "no" + }, + { + "id": "350815", + "ident": "US-6207", + "type": "small_airport", + "name": "John Wright Airport", + "latitude_deg": "36.55811", + "longitude_deg": "-89.28072", + "elevation_ft": "294", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KY", + "municipality": "Hickman", + "scheduled_service": "no" + }, + { + "id": "350816", + "ident": "US-6208", + "type": "closed", + "name": "Reelfoot Airport", + "latitude_deg": "36.37397", + "longitude_deg": "-89.44034", + "elevation_ft": "298", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Tiptonville", + "scheduled_service": "no" + }, + { + "id": "350817", + "ident": "US-6209", + "type": "small_airport", + "name": "Wynn Airport", + "latitude_deg": "36.32492", + "longitude_deg": "-89.4701", + "elevation_ft": "286", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Wynnburg", + "scheduled_service": "no" + }, + { + "id": "350818", + "ident": "US-6210", + "type": "small_airport", + "name": "Coppage Farm Services Airport", + "latitude_deg": "36.187149", + "longitude_deg": "-89.830068", + "elevation_ft": "263", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hayti", + "scheduled_service": "no" + }, + { + "id": "350819", + "ident": "US-6211", + "type": "small_airport", + "name": "Quinn Aviation Airport", + "latitude_deg": "35.74051", + "longitude_deg": "-90.33155", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Caraway", + "scheduled_service": "no" + }, + { + "id": "350820", + "ident": "US-6212", + "type": "small_airport", + "name": "Bowman Airport", + "latitude_deg": "35.68853", + "longitude_deg": "-90.22903", + "elevation_ft": "231", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Osceola", + "scheduled_service": "no", + "keywords": "Lepanto Crop Service" + }, + { + "id": "350821", + "ident": "US-6213", + "type": "closed", + "name": "Helm Airport", + "latitude_deg": "35.61431", + "longitude_deg": "-90.36325", + "elevation_ft": "221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Lepanto", + "scheduled_service": "no" + }, + { + "id": "350822", + "ident": "US-6214", + "type": "small_airport", + "name": "Walton Agwings Airport", + "latitude_deg": "35.57535", + "longitude_deg": "-90.49617", + "elevation_ft": "214", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Trumann", + "scheduled_service": "no" + }, + { + "id": "350823", + "ident": "US-6215", + "type": "small_airport", + "name": "Simpson Flying Services Airport", + "latitude_deg": "35.79651", + "longitude_deg": "-90.07822", + "elevation_ft": "232", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Manila", + "scheduled_service": "no" + }, + { + "id": "350824", + "ident": "US-6216", + "type": "closed", + "name": "McGinnis Airport", + "latitude_deg": "35.72201", + "longitude_deg": "-90.17417", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Osceola", + "scheduled_service": "no" + }, + { + "id": "350825", + "ident": "US-6217", + "type": "closed", + "name": "Simpson Airport", + "latitude_deg": "35.8611", + "longitude_deg": "-90.08038", + "elevation_ft": "241", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Dell", + "scheduled_service": "no" + }, + { + "id": "350826", + "ident": "US-6218", + "type": "closed", + "name": "Wilson Airport", + "latitude_deg": "35.56671", + "longitude_deg": "-90.05601", + "elevation_ft": "234", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Wilson", + "scheduled_service": "no" + }, + { + "id": "350827", + "ident": "US-6219", + "type": "small_airport", + "name": "Delta School Airstrip", + "latitude_deg": "35.57562", + "longitude_deg": "-90.04128", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Wilson", + "scheduled_service": "no" + }, + { + "id": "350828", + "ident": "US-6220", + "type": "closed", + "name": "Bondsville Airport", + "latitude_deg": "35.63699", + "longitude_deg": "-90.24352", + "elevation_ft": "229", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Lepanto", + "scheduled_service": "no" + }, + { + "id": "350829", + "ident": "US-6221", + "type": "closed", + "name": "Oxford Airport", + "latitude_deg": "39.74465", + "longitude_deg": "-76.00993", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Nottingham", + "scheduled_service": "no" + }, + { + "id": "350830", + "ident": "US-6222", + "type": "small_airport", + "name": "Leese Airport", + "latitude_deg": "41.87532", + "longitude_deg": "-122.41478", + "elevation_ft": "2807", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Montague", + "scheduled_service": "no" + }, + { + "id": "350831", + "ident": "US-6223", + "type": "small_airport", + "name": "Skeen Ranch Airport", + "latitude_deg": "42.45299", + "longitude_deg": "-121.52483", + "elevation_ft": "4359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sprague River", + "scheduled_service": "no" + }, + { + "id": "350832", + "ident": "US-6224", + "type": "small_airport", + "name": "Nickel Airport", + "latitude_deg": "30.08537", + "longitude_deg": "-92.4874", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Morse", + "scheduled_service": "no" + }, + { + "id": "350833", + "ident": "US-6225", + "type": "closed", + "name": "Canvasback Airport", + "latitude_deg": "30.0855", + "longitude_deg": "-92.48475", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Morse", + "scheduled_service": "no" + }, + { + "id": "350834", + "ident": "US-6226", + "type": "closed", + "name": "Alvie Airport", + "latitude_deg": "30.07189", + "longitude_deg": "-92.54948", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Gueydan", + "scheduled_service": "no" + }, + { + "id": "350835", + "ident": "US-6227", + "type": "small_airport", + "name": "Monceaux Airport", + "latitude_deg": "30.1204", + "longitude_deg": "-92.36018", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Crowley", + "scheduled_service": "no" + }, + { + "id": "350836", + "ident": "US-6228", + "type": "small_airport", + "name": "Kidder Airport", + "latitude_deg": "30.457664", + "longitude_deg": "-91.925772", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Arnaudville", + "scheduled_service": "no" + }, + { + "id": "350837", + "ident": "US-6229", + "type": "small_airport", + "name": "Saint Margaret Airport", + "latitude_deg": "30.43834", + "longitude_deg": "-92.26872", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Church Point", + "scheduled_service": "no" + }, + { + "id": "350838", + "ident": "US-6230", + "type": "closed", + "name": "Elridge Young Airport", + "latitude_deg": "30.47539", + "longitude_deg": "-92.22493", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Opelousas", + "scheduled_service": "no" + }, + { + "id": "350839", + "ident": "US-6231", + "type": "heliport", + "name": "UT Health North Campus Tyler Heliport", + "latitude_deg": "32.42658", + "longitude_deg": "-95.21093", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tyler", + "scheduled_service": "no" + }, + { + "id": "350840", + "ident": "US-6232", + "type": "closed", + "name": "Lafleur Airport", + "latitude_deg": "30.63471", + "longitude_deg": "-92.24885", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Ville Platte", + "scheduled_service": "no" + }, + { + "id": "350841", + "ident": "US-6233", + "type": "small_airport", + "name": "Winchester Ranch Airport", + "latitude_deg": "30.350087", + "longitude_deg": "-101.061194", + "elevation_ft": "2170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no" + }, + { + "id": "350842", + "ident": "US-6234", + "type": "closed", + "name": "Santa Cruz Ranch Airport", + "latitude_deg": "26.55477", + "longitude_deg": "-98.55882", + "elevation_ft": "429", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Santa Elena", + "scheduled_service": "no" + }, + { + "id": "350843", + "ident": "US-6235", + "type": "small_airport", + "name": "Juana Ranch Airport", + "latitude_deg": "30.080954", + "longitude_deg": "-100.920367", + "elevation_ft": "1907", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no" + }, + { + "id": "350844", + "ident": "US-6236", + "type": "small_airport", + "name": "White Ranch Airport", + "latitude_deg": "30.06846", + "longitude_deg": "-100.89646", + "elevation_ft": "1872", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Del Rio", + "scheduled_service": "no" + }, + { + "id": "350845", + "ident": "US-6237", + "type": "small_airport", + "name": "Murrah Ranch Airport", + "latitude_deg": "30.15749", + "longitude_deg": "-100.97292", + "elevation_ft": "1877", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sonora", + "scheduled_service": "no" + }, + { + "id": "350846", + "ident": "US-6238", + "type": "closed", + "name": "Albers Ranch Airport", + "latitude_deg": "30.08486", + "longitude_deg": "-101.29975", + "elevation_ft": "2124", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comstock", + "scheduled_service": "no" + }, + { + "id": "350847", + "ident": "US-6239", + "type": "closed", + "name": "Fielder Draw Airport", + "latitude_deg": "30.16003", + "longitude_deg": "-101.71022", + "elevation_ft": "1996", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Langtry", + "scheduled_service": "no" + }, + { + "id": "350848", + "ident": "US-6240", + "type": "closed", + "name": "La Mesa Ranch Airport", + "latitude_deg": "27.88737", + "longitude_deg": "-99.74067", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laredo", + "scheduled_service": "no" + }, + { + "id": "350849", + "ident": "US-6241", + "type": "closed", + "name": "Continental Oil Company Airport", + "latitude_deg": "26.52225", + "longitude_deg": "-98.58907", + "elevation_ft": "458", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rio Grande City", + "scheduled_service": "no" + }, + { + "id": "350850", + "ident": "US-6242", + "type": "closed", + "name": "Yoas Ranch Airport", + "latitude_deg": "30.10376", + "longitude_deg": "-102.72637", + "elevation_ft": "3648", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no" + }, + { + "id": "350857", + "ident": "US-6243", + "type": "closed", + "name": "Big Canyon Airport", + "latitude_deg": "30.14347", + "longitude_deg": "-101.91827", + "elevation_ft": "1988", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Langtry", + "scheduled_service": "no" + }, + { + "id": "350858", + "ident": "US-6244", + "type": "closed", + "name": "Hutchinson Ranch Airport", + "latitude_deg": "30.14462", + "longitude_deg": "-101.88639", + "elevation_ft": "2029", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Langtry", + "scheduled_service": "no" + }, + { + "id": "350859", + "ident": "US-6245", + "type": "small_airport", + "name": "Terrell Station Airport", + "latitude_deg": "30.39133", + "longitude_deg": "-101.83379", + "elevation_ft": "2501", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sheffield", + "scheduled_service": "no" + }, + { + "id": "350860", + "ident": "US-6246", + "type": "heliport", + "name": "Northern Rockies Medical Center Heliport", + "latitude_deg": "48.62749", + "longitude_deg": "-112.32585", + "elevation_ft": "3872", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Cut Bank", + "scheduled_service": "no" + }, + { + "id": "350861", + "ident": "US-6247", + "type": "heliport", + "name": "Deer Lodge Medical Center Heliport", + "latitude_deg": "46.41404", + "longitude_deg": "-112.72662", + "elevation_ft": "4544", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Deer Lodge", + "scheduled_service": "no" + }, + { + "id": "350862", + "ident": "US-6248", + "type": "heliport", + "name": "Donalsonville Hospital Heliport", + "latitude_deg": "31.05187", + "longitude_deg": "-84.88143", + "elevation_ft": "151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Donalsonville", + "scheduled_service": "no" + }, + { + "id": "350863", + "ident": "US-6249", + "type": "small_airport", + "name": "East River Flying Service Airport", + "latitude_deg": "31.02697", + "longitude_deg": "-84.50036", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Bainbridge", + "scheduled_service": "no" + }, + { + "id": "350864", + "ident": "US-6250", + "type": "heliport", + "name": "Alder Springs Forest Service Heliport", + "latitude_deg": "39.65092", + "longitude_deg": "-122.72652", + "elevation_ft": "4472", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Elk Creek", + "scheduled_service": "no" + }, + { + "id": "350865", + "ident": "US-6251", + "type": "small_airport", + "name": "Elk Creek Airport", + "latitude_deg": "39.59483", + "longitude_deg": "-122.56487", + "elevation_ft": "876", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Elk Creek", + "scheduled_service": "no" + }, + { + "id": "350866", + "ident": "US-6252", + "type": "small_airport", + "name": "Butler Airport", + "latitude_deg": "39.5857", + "longitude_deg": "-122.58237", + "elevation_ft": "1074", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Elk Creek", + "scheduled_service": "no" + }, + { + "id": "350867", + "ident": "US-6253", + "type": "closed", + "name": "Wild Horse Ranch Airport", + "latitude_deg": "40.31771", + "longitude_deg": "-122.79805", + "elevation_ft": "1608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Platina", + "scheduled_service": "no" + }, + { + "id": "350868", + "ident": "US-6254", + "type": "small_airport", + "name": "Stonyford Airport", + "latitude_deg": "39.36099", + "longitude_deg": "-122.57941", + "elevation_ft": "1357", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stonyford", + "scheduled_service": "no" + }, + { + "id": "350869", + "ident": "US-6255", + "type": "small_airport", + "name": "Montgomery Creek Airport", + "latitude_deg": "39.40638", + "longitude_deg": "-122.50112", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Stonyford", + "scheduled_service": "no" + }, + { + "id": "350870", + "ident": "US-6256", + "type": "closed", + "name": "Cen-Tex Airport", + "latitude_deg": "30.64203", + "longitude_deg": "-92.17014", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Opelousas", + "scheduled_service": "no" + }, + { + "id": "350904", + "ident": "US-6257", + "type": "heliport", + "name": "Southside Community Hospital Heliport", + "latitude_deg": "37.301884", + "longitude_deg": "-78.402922", + "elevation_ft": "344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Farmville", + "scheduled_service": "no", + "gps_code": "VA77", + "local_code": "VA77" + }, + { + "id": "350910", + "ident": "US-6258", + "type": "small_airport", + "name": "Harkey Ranch Airport", + "latitude_deg": "30.940392", + "longitude_deg": "-99.189914", + "elevation_ft": "1674", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mason", + "scheduled_service": "no", + "gps_code": "8TX6", + "local_code": "8TX6" + }, + { + "id": "350922", + "ident": "US-6259", + "type": "small_airport", + "name": "(Duplicate) J & W Windy Hill Airport", + "latitude_deg": "33.445914", + "longitude_deg": "-96.57079", + "elevation_ft": "784", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Van Alstyne", + "scheduled_service": "no", + "gps_code": "06XA", + "local_code": "06XA" + }, + { + "id": "350925", + "ident": "US-6260", + "type": "small_airport", + "name": "Sandy Creek Airport", + "latitude_deg": "30.569528", + "longitude_deg": "-95.482361", + "elevation_ft": "383", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "New Waverly", + "scheduled_service": "no", + "gps_code": "73TX", + "local_code": "73TX" + }, + { + "id": "350931", + "ident": "US-6261", + "type": "heliport", + "name": "Browns Ferry Nuclear Plant Heliport", + "latitude_deg": "34.70782", + "longitude_deg": "-87.1203", + "elevation_ft": "568", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Athens", + "scheduled_service": "no" + }, + { + "id": "350932", + "ident": "US-6262", + "type": "heliport", + "name": "Barry Power Plant Heliport", + "latitude_deg": "31.0087", + "longitude_deg": "-88.00798", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Bucks", + "scheduled_service": "no" + }, + { + "id": "350936", + "ident": "US-6263", + "type": "small_airport", + "name": "Scottys Island Airstrip", + "latitude_deg": "56.715292", + "longitude_deg": "-158.539443", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Port Heiden", + "scheduled_service": "no" + }, + { + "id": "350938", + "ident": "US-6264", + "type": "small_airport", + "name": "Wil-Co Flying Services Airport", + "latitude_deg": "34.290183", + "longitude_deg": "-91.365842", + "elevation_ft": "193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "DeWitt", + "scheduled_service": "no" + }, + { + "id": "350969", + "ident": "US-6265", + "type": "heliport", + "name": "Chickasaw Nation Medical Center Heliport", + "latitude_deg": "34.730033", + "longitude_deg": "-96.643508", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Ada", + "scheduled_service": "no", + "gps_code": "19OK", + "local_code": "19OK" + }, + { + "id": "350971", + "ident": "US-6266", + "type": "small_airport", + "name": "Circle WC Ranch Airport", + "latitude_deg": "33.440311", + "longitude_deg": "-94.927992", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bogata", + "scheduled_service": "no", + "gps_code": "6TE4", + "local_code": "6TE4" + }, + { + "id": "350994", + "ident": "US-6267", + "type": "small_airport", + "name": "Moncrief Plantation Airport", + "latitude_deg": "30.87947", + "longitude_deg": "-91.91629", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Plaucheville", + "scheduled_service": "no" + }, + { + "id": "350995", + "ident": "US-6268", + "type": "small_airport", + "name": "M&J Flying Services Airport", + "latitude_deg": "30.95364", + "longitude_deg": "-91.93179", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Plaucheville", + "scheduled_service": "no" + }, + { + "id": "350996", + "ident": "US-6269", + "type": "small_airport", + "name": "Dufour Airport", + "latitude_deg": "30.98408", + "longitude_deg": "-91.95898", + "elevation_ft": "44", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Plaucheville", + "scheduled_service": "no" + }, + { + "id": "350997", + "ident": "US-6270", + "type": "small_airport", + "name": "Cloverleaf Airport", + "latitude_deg": "31.01126", + "longitude_deg": "-91.93166", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Plaucheville", + "scheduled_service": "no" + }, + { + "id": "350998", + "ident": "US-6271", + "type": "small_airport", + "name": "Tailwinds Airport", + "latitude_deg": "30.70933", + "longitude_deg": "-91.57215", + "elevation_ft": "34", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Morganza", + "scheduled_service": "no" + }, + { + "id": "350999", + "ident": "US-6272", + "type": "small_airport", + "name": "Batchelor Airport", + "latitude_deg": "30.8422", + "longitude_deg": "-91.66658", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Batchelor", + "scheduled_service": "no" + }, + { + "id": "351031", + "ident": "US-6273", + "type": "heliport", + "name": "Agua Fria Generating Station Heliport", + "latitude_deg": "33.55422", + "longitude_deg": "-112.21466", + "elevation_ft": "1135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "351032", + "ident": "US-6274", + "type": "heliport", + "name": "Santan Generating Station Heliport", + "latitude_deg": "33.3297", + "longitude_deg": "-111.75054", + "elevation_ft": "1276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gilbert", + "scheduled_service": "no" + }, + { + "id": "351033", + "ident": "US-6275", + "type": "heliport", + "name": "Hidalgo County Sheriff's Jail Heliport", + "latitude_deg": "26.41827", + "longitude_deg": "-98.12845", + "elevation_ft": "91", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Edinburg", + "scheduled_service": "no" + }, + { + "id": "351034", + "ident": "US-6276", + "type": "heliport", + "name": "Silverhawk Generating Station Heliport", + "latitude_deg": "36.41133", + "longitude_deg": "-114.95959", + "elevation_ft": "2503", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Moapa", + "scheduled_service": "no" + }, + { + "id": "351035", + "ident": "US-6277", + "type": "heliport", + "name": "Harry Allen Generating Station Heliport", + "latitude_deg": "36.4298", + "longitude_deg": "-114.90095", + "elevation_ft": "2090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Moapa", + "scheduled_service": "no" + }, + { + "id": "351036", + "ident": "US-6278", + "type": "heliport", + "name": "Navajo Generating Station Heliport", + "latitude_deg": "36.89717", + "longitude_deg": "-111.38598", + "elevation_ft": "4373", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Page", + "scheduled_service": "no" + }, + { + "id": "351037", + "ident": "US-6279", + "type": "heliport", + "name": "Gila River Power Station Heliport", + "latitude_deg": "32.97279", + "longitude_deg": "-112.69642", + "elevation_ft": "712", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gila Bend", + "scheduled_service": "no" + }, + { + "id": "351038", + "ident": "US-6280", + "type": "heliport", + "name": "Comanche Peak Nuclear Power Plant Heliport 1", + "latitude_deg": "32.3011", + "longitude_deg": "-97.78163", + "elevation_ft": "807", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Glen Rose", + "scheduled_service": "no" + }, + { + "id": "351039", + "ident": "US-6281", + "type": "heliport", + "name": "Comanche Peak Nuclear Power Plant Heliport 2", + "latitude_deg": "32.29947", + "longitude_deg": "-97.80834", + "elevation_ft": "897", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Glen Rose", + "scheduled_service": "no" + }, + { + "id": "351040", + "ident": "US-6282", + "type": "heliport", + "name": "Fayette Coal Power Plant North Heliport", + "latitude_deg": "29.92116", + "longitude_deg": "-96.75167", + "elevation_ft": "409", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "La Grange", + "scheduled_service": "no" + }, + { + "id": "351041", + "ident": "US-6283", + "type": "heliport", + "name": "Martin Lake Power Plant Heliport", + "latitude_deg": "32.26354", + "longitude_deg": "-94.57499", + "elevation_ft": "322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tatum", + "scheduled_service": "no" + }, + { + "id": "351042", + "ident": "US-6284", + "type": "heliport", + "name": "Welsh Power Plant Heliport", + "latitude_deg": "33.05313", + "longitude_deg": "-94.8407", + "elevation_ft": "341", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pittsburg", + "scheduled_service": "no" + }, + { + "id": "351043", + "ident": "US-6285", + "type": "heliport", + "name": "Mesquite Power Generating Station Heliport", + "latitude_deg": "33.3435", + "longitude_deg": "-112.86138", + "elevation_ft": "892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Arlington", + "scheduled_service": "no" + }, + { + "id": "351044", + "ident": "US-6286", + "type": "heliport", + "name": "South Texas Project West Heliport", + "latitude_deg": "28.79785", + "longitude_deg": "-96.0555", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sargent", + "scheduled_service": "no" + }, + { + "id": "351045", + "ident": "US-6287", + "type": "heliport", + "name": "Memorial Medical Center Heliport", + "latitude_deg": "28.62024", + "longitude_deg": "-96.633", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port Lavaca", + "scheduled_service": "no" + }, + { + "id": "351046", + "ident": "US-6288", + "type": "heliport", + "name": "NRG Limestone Power Plant Heliport", + "latitude_deg": "31.42676", + "longitude_deg": "-96.24879", + "elevation_ft": "462", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Donie", + "scheduled_service": "no" + }, + { + "id": "351047", + "ident": "US-6289", + "type": "heliport", + "name": "W A Parish Power Plant Heliport", + "latitude_deg": "29.48242", + "longitude_deg": "-95.63543", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Richmond", + "scheduled_service": "no" + }, + { + "id": "351048", + "ident": "US-6290", + "type": "heliport", + "name": "Oak Grove Power Plant Heliport", + "latitude_deg": "31.17591", + "longitude_deg": "-96.48424", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Franklin", + "scheduled_service": "no" + }, + { + "id": "351049", + "ident": "US-6291", + "type": "heliport", + "name": "Skinwalker Ranch Private Helipad", + "latitude_deg": "40.258184", + "longitude_deg": "-109.888265", + "elevation_ft": "4915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Gusher", + "scheduled_service": "no" + }, + { + "id": "351067", + "ident": "US-6292", + "type": "heliport", + "name": "GOH Montoursville Heliport", + "latitude_deg": "41.246597", + "longitude_deg": "-76.9396", + "elevation_ft": "549", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Montoursville", + "scheduled_service": "no", + "gps_code": "20PA", + "local_code": "20PA" + }, + { + "id": "351068", + "ident": "US-6293", + "type": "heliport", + "name": "WSR Heliport", + "latitude_deg": "42.058333", + "longitude_deg": "-85.161806", + "elevation_ft": "928", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Union City", + "scheduled_service": "no", + "gps_code": "MI91", + "local_code": "MI91" + }, + { + "id": "351077", + "ident": "US-6294", + "type": "heliport", + "name": "Golden Oak Ranch Heliport", + "latitude_deg": "34.3834", + "longitude_deg": "-118.46875", + "elevation_ft": "1790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Clarita", + "scheduled_service": "no" + }, + { + "id": "351078", + "ident": "US-6295", + "type": "heliport", + "name": "Montecito Ranch Private Heliport", + "latitude_deg": "34.41918", + "longitude_deg": "-119.58493", + "elevation_ft": "182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Carpinteria", + "scheduled_service": "no" + }, + { + "id": "351079", + "ident": "US-6296", + "type": "closed", + "name": "Cal-Aero Port", + "latitude_deg": "32.84411", + "longitude_deg": "-115.55694", + "elevation_ft": "-62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Imperial", + "scheduled_service": "no" + }, + { + "id": "351083", + "ident": "US-6297", + "type": "small_airport", + "name": "Flying G Ranch Airport", + "latitude_deg": "32.029339", + "longitude_deg": "-97.010608", + "elevation_ft": "664", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bynum", + "scheduled_service": "no", + "gps_code": "08TS", + "local_code": "08TS" + }, + { + "id": "351084", + "ident": "US-6298", + "type": "heliport", + "name": "Four Oaks Place Wells Fargo Tower Helipad", + "latitude_deg": "29.75304", + "longitude_deg": "-95.46031", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "351086", + "ident": "US-6299", + "type": "heliport", + "name": "Four Oaks Place Aon Building Helipad", + "latitude_deg": "29.75336", + "longitude_deg": "-95.46123", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "351087", + "ident": "US-6300", + "type": "small_airport", + "name": "Cedar & Sky Fly in Ranch Airport", + "latitude_deg": "35.583878", + "longitude_deg": "-98.304101", + "elevation_ft": "1588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Geary", + "scheduled_service": "no", + "gps_code": "OL28", + "local_code": "OL28" + }, + { + "id": "351088", + "ident": "US-6301", + "type": "heliport", + "name": "Four Oaks Place BHP Billiton Tower", + "latitude_deg": "29.75309", + "longitude_deg": "-95.46211", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "351089", + "ident": "US-6302", + "type": "heliport", + "name": "Presbyterian Belen Clinic Heliport", + "latitude_deg": "34.65621", + "longitude_deg": "-106.7931", + "elevation_ft": "4892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Belen", + "scheduled_service": "no" + }, + { + "id": "351090", + "ident": "US-6303", + "type": "closed", + "name": "Washington Hospital Heliport", + "latitude_deg": "37.55643", + "longitude_deg": "-121.97826", + "elevation_ft": "63", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Fremont", + "scheduled_service": "no" + }, + { + "id": "351091", + "ident": "US-6304", + "type": "heliport", + "name": "Rancho Escondido Heliport", + "latitude_deg": "37.62386", + "longitude_deg": "-121.6992", + "elevation_ft": "882", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Livermore", + "scheduled_service": "no" + }, + { + "id": "351093", + "ident": "US-6305", + "type": "heliport", + "name": "Landells Heliport", + "latitude_deg": "33.92264", + "longitude_deg": "-116.45348", + "elevation_ft": "942", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Desert Hot Springs", + "scheduled_service": "no" + }, + { + "id": "351094", + "ident": "US-6306", + "type": "heliport", + "name": "Alyssa Taylor Heliport", + "latitude_deg": "39.637675", + "longitude_deg": "-77.144903", + "elevation_ft": "541", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Westminster", + "scheduled_service": "no", + "gps_code": "MD26", + "local_code": "MD26" + }, + { + "id": "351095", + "ident": "US-6307", + "type": "closed", + "name": "Hamilton Ranch Airport", + "latitude_deg": "37.3708", + "longitude_deg": "-121.46941", + "elevation_ft": "2114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Livermore", + "scheduled_service": "no" + }, + { + "id": "351097", + "ident": "US-6308", + "type": "small_airport", + "name": "Matts Airport", + "latitude_deg": "37.721561", + "longitude_deg": "-77.22024", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Manquin", + "scheduled_service": "no", + "gps_code": "5VA4", + "local_code": "5VA4" + }, + { + "id": "351098", + "ident": "US-6309", + "type": "heliport", + "name": "Santa Paula Hospital Heliport", + "latitude_deg": "34.36601", + "longitude_deg": "-119.06421", + "elevation_ft": "579", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Paula", + "scheduled_service": "no" + }, + { + "id": "351108", + "ident": "US-6310", + "type": "heliport", + "name": "Reston Hospital Center Helipad.", + "latitude_deg": "38.962817", + "longitude_deg": "-77.363952", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Reston", + "scheduled_service": "no", + "gps_code": "43VA", + "local_code": "43VA" + }, + { + "id": "351142", + "ident": "US-6311", + "type": "heliport", + "name": "Living Earth Heliport", + "latitude_deg": "45.030117", + "longitude_deg": "-97.008825", + "elevation_ft": "1949", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Watertown", + "scheduled_service": "no", + "gps_code": "3SD6", + "local_code": "3SD6" + }, + { + "id": "351166", + "ident": "US-6312", + "type": "small_airport", + "name": "McMillin Landingstrip", + "latitude_deg": "40.887366", + "longitude_deg": "-80.320269", + "elevation_ft": "918", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Wampum", + "scheduled_service": "no", + "gps_code": "9PA3", + "local_code": "9PA3" + }, + { + "id": "351170", + "ident": "US-6313", + "type": "small_airport", + "name": "John R Armstrong Memorial Field", + "latitude_deg": "32.911365", + "longitude_deg": "-95.738833", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Emory", + "scheduled_service": "no", + "gps_code": "67TX", + "local_code": "67TX" + }, + { + "id": "351179", + "ident": "US-6314", + "type": "small_airport", + "name": "Fiddleair Airport", + "latitude_deg": "35.275145", + "longitude_deg": "-78.433865", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Newton Grove", + "scheduled_service": "no", + "gps_code": "63NC", + "local_code": "63NC" + }, + { + "id": "351182", + "ident": "US-6315", + "type": "heliport", + "name": "El Capitan Lodge Heliport", + "latitude_deg": "31.81867", + "longitude_deg": "-104.06951", + "elevation_ft": "3056", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Orla", + "scheduled_service": "no" + }, + { + "id": "351183", + "ident": "US-6316", + "type": "heliport", + "name": "Carlsbad Caverns Heliport", + "latitude_deg": "32.17854", + "longitude_deg": "-104.43868", + "elevation_ft": "4419", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Carlsbad", + "scheduled_service": "no" + }, + { + "id": "351184", + "ident": "US-6317", + "type": "closed", + "name": "Carlsbad Caverns Airpark", + "latitude_deg": "32.17535", + "longitude_deg": "-104.35881", + "elevation_ft": "3613", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Carlsbad", + "scheduled_service": "no" + }, + { + "id": "351185", + "ident": "US-6318", + "type": "heliport", + "name": "Carlsbad Medical Center Heliport", + "latitude_deg": "32.44139", + "longitude_deg": "-104.25742", + "elevation_ft": "3163", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Carlsbad", + "scheduled_service": "no" + }, + { + "id": "351187", + "ident": "US-6319", + "type": "heliport", + "name": "Camp Swift Heliport", + "latitude_deg": "30.22114", + "longitude_deg": "-97.31521", + "elevation_ft": "464", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bastrop", + "scheduled_service": "no" + }, + { + "id": "351190", + "ident": "US-6320", + "type": "heliport", + "name": "Ballinger Memorial Hospital Heliport", + "latitude_deg": "31.75049", + "longitude_deg": "-99.96293", + "elevation_ft": "1675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ballinger", + "scheduled_service": "no" + }, + { + "id": "351192", + "ident": "US-6321", + "type": "small_airport", + "name": "Garden City Airport", + "latitude_deg": "31.85415", + "longitude_deg": "-101.48145", + "elevation_ft": "2625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Garden City", + "scheduled_service": "no" + }, + { + "id": "351193", + "ident": "US-6322", + "type": "small_airport", + "name": "Farris Airport", + "latitude_deg": "37.94259", + "longitude_deg": "-100.77788", + "elevation_ft": "2876", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Garden City", + "scheduled_service": "no" + }, + { + "id": "351194", + "ident": "US-6323", + "type": "closed", + "name": "Finney County Feedyard Airport", + "latitude_deg": "38.00768", + "longitude_deg": "-100.77386", + "elevation_ft": "2911", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Garden City", + "scheduled_service": "no" + }, + { + "id": "351195", + "ident": "US-6324", + "type": "heliport", + "name": "St Catherine Hospital Heliport", + "latitude_deg": "37.9702", + "longitude_deg": "-100.86776", + "elevation_ft": "2838", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Garden City", + "scheduled_service": "no" + }, + { + "id": "351218", + "ident": "US-6325", + "type": "small_airport", + "name": "Farnsworth Airport", + "latitude_deg": "43.1936", + "longitude_deg": "-76.88359", + "elevation_ft": "406", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "North Rose", + "scheduled_service": "no" + }, + { + "id": "351219", + "ident": "US-6326", + "type": "closed", + "name": "Lyons-Clyde Airport", + "latitude_deg": "43.10956", + "longitude_deg": "-76.92377", + "elevation_ft": "405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Clyde", + "scheduled_service": "no" + }, + { + "id": "351220", + "ident": "US-6327", + "type": "closed", + "name": "Ashtabula-Conneaut Airport", + "latitude_deg": "41.90942", + "longitude_deg": "-80.67791", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "North Kingsville", + "scheduled_service": "no" + }, + { + "id": "351221", + "ident": "US-6328", + "type": "closed", + "name": "Woerner Airport", + "latitude_deg": "41.82461", + "longitude_deg": "-80.91996", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Geneva", + "scheduled_service": "no" + }, + { + "id": "351224", + "ident": "US-6329", + "type": "heliport", + "name": "Petroleum Helicopters Houma Heliport", + "latitude_deg": "29.57807", + "longitude_deg": "-90.66689", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Houma", + "scheduled_service": "no" + }, + { + "id": "351225", + "ident": "US-6330", + "type": "closed", + "name": "Machesney Airport", + "latitude_deg": "42.34943", + "longitude_deg": "-89.05325", + "elevation_ft": "732", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Machesney Park", + "scheduled_service": "no" + }, + { + "id": "351226", + "ident": "US-6331", + "type": "closed", + "name": "Kings Acres Airport", + "latitude_deg": "42.327", + "longitude_deg": "-88.972", + "elevation_ft": "732", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Loves Park", + "scheduled_service": "no" + }, + { + "id": "351227", + "ident": "US-6332", + "type": "seaplane_base", + "name": "Lunn Seaplane Base", + "latitude_deg": "42.1063", + "longitude_deg": "-89.30254", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Oregon", + "scheduled_service": "no" + }, + { + "id": "351237", + "ident": "US-6333", + "type": "heliport", + "name": "Garber Brothers Heliport", + "latitude_deg": "29.70578", + "longitude_deg": "-91.2237", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Berwick", + "scheduled_service": "no" + }, + { + "id": "351241", + "ident": "US-6334", + "type": "closed", + "name": "Flowerfield Airport", + "latitude_deg": "40.90334", + "longitude_deg": "-73.13462", + "elevation_ft": "169", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Stony Brook", + "scheduled_service": "no" + }, + { + "id": "351244", + "ident": "US-6335", + "type": "closed", + "name": "Gyrodyne Company Heliport", + "latitude_deg": "40.90277", + "longitude_deg": "-73.13742", + "elevation_ft": "156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Stony Brook", + "scheduled_service": "no" + }, + { + "id": "351245", + "ident": "US-6336", + "type": "closed", + "name": "Gyrodyne Tethering Pad", + "latitude_deg": "40.90059", + "longitude_deg": "-73.13986", + "elevation_ft": "154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Stony Brook", + "scheduled_service": "no" + }, + { + "id": "351246", + "ident": "US-6337", + "type": "closed", + "name": "SBM Heliport", + "latitude_deg": "40.89598", + "longitude_deg": "-73.14036", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Stony Brook", + "scheduled_service": "no" + }, + { + "id": "351249", + "ident": "US-6338", + "type": "heliport", + "name": "OSF Healthcare/Urbana Heliport", + "latitude_deg": "40.117746", + "longitude_deg": "-88.225433", + "elevation_ft": "736", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Urbana", + "scheduled_service": "no", + "gps_code": "0IL3", + "local_code": "0IL3" + }, + { + "id": "351250", + "ident": "US-6339", + "type": "small_airport", + "name": "Leverton Airport", + "latitude_deg": "37.393907", + "longitude_deg": "-97.151485", + "elevation_ft": "1251", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Udall", + "scheduled_service": "no", + "gps_code": "0KS2", + "local_code": "0KS2" + }, + { + "id": "351255", + "ident": "US-6340", + "type": "small_airport", + "name": "Bowen Lake Ranch Airport", + "latitude_deg": "32.633372", + "longitude_deg": "-95.647578", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Grand Saline", + "scheduled_service": "no", + "gps_code": "96TS", + "local_code": "96TS" + }, + { + "id": "351258", + "ident": "US-6341", + "type": "small_airport", + "name": "Loken Farm Airport", + "latitude_deg": "43.451656", + "longitude_deg": "-93.318306", + "elevation_ft": "1259", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Northwood", + "scheduled_service": "no", + "gps_code": "IA07", + "local_code": "IA07" + }, + { + "id": "351261", + "ident": "US-6342", + "type": "heliport", + "name": "Petter Heliport", + "latitude_deg": "41.233881", + "longitude_deg": "-94.356047", + "elevation_ft": "1332", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Orient", + "scheduled_service": "no", + "gps_code": "IA14", + "local_code": "IA14" + }, + { + "id": "351262", + "ident": "US-6343", + "type": "heliport", + "name": "MercyOne Cedar Falls Medical Center Heliport", + "latitude_deg": "42.533884", + "longitude_deg": "-92.458416", + "elevation_ft": "931", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Cedar Falls", + "scheduled_service": "no", + "gps_code": "IA66", + "local_code": "IA66" + }, + { + "id": "351265", + "ident": "US-6344", + "type": "small_airport", + "name": "Fecundity Farm Strip Airport", + "latitude_deg": "42.553333", + "longitude_deg": "-114.547639", + "elevation_ft": "3780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Twin Falls", + "scheduled_service": "no", + "gps_code": "ID93", + "local_code": "ID93" + }, + { + "id": "351306", + "ident": "US-6345", + "type": "small_airport", + "name": "BFS West Airport", + "latitude_deg": "26.4795", + "longitude_deg": "-98.383019", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "McCook", + "scheduled_service": "no", + "gps_code": "TA20", + "local_code": "TA20" + }, + { + "id": "351311", + "ident": "US-6346", + "type": "small_airport", + "name": "Parkers Landing", + "latitude_deg": "33.400144", + "longitude_deg": "-96.498344", + "elevation_ft": "688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Van Alstyne", + "scheduled_service": "no", + "gps_code": "TX16", + "local_code": "TX16" + }, + { + "id": "351322", + "ident": "US-6347", + "type": "heliport", + "name": "Wooden Shoe Heliport", + "latitude_deg": "40.704608", + "longitude_deg": "-111.331683", + "elevation_ft": "6293", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Peoa", + "scheduled_service": "no", + "gps_code": "UT62", + "local_code": "UT62" + }, + { + "id": "351344", + "ident": "US-6348", + "type": "heliport", + "name": "Spotsylvania Regional Medical Center Heliport", + "latitude_deg": "38.21661", + "longitude_deg": "-77.49555", + "elevation_ft": "237", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fredericksburg", + "scheduled_service": "no", + "gps_code": "03VA", + "local_code": "03VA" + }, + { + "id": "351346", + "ident": "US-6349", + "type": "heliport", + "name": "Prairie du Chien Memorial Hospital Heliport", + "latitude_deg": "43.020851", + "longitude_deg": "-91.111341", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Prairie du Chien", + "scheduled_service": "no", + "gps_code": "4WI6", + "local_code": "4WI6", + "keywords": "Crossing Rivers" + }, + { + "id": "351355", + "ident": "US-6350", + "type": "heliport", + "name": "Carilion Roanoke Memorial Hospital Helipad", + "latitude_deg": "37.251049", + "longitude_deg": "-79.942848", + "elevation_ft": "1112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Roanoke", + "scheduled_service": "no", + "gps_code": "VG62", + "local_code": "VG62" + }, + { + "id": "351359", + "ident": "US-6351", + "type": "small_airport", + "name": "Rocky Acres Airport", + "latitude_deg": "35.509256", + "longitude_deg": "-86.690605", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Lewisburg", + "scheduled_service": "no", + "gps_code": "2TN3", + "local_code": "2TN3" + }, + { + "id": "351416", + "ident": "US-6352", + "type": "small_airport", + "name": "Concho Aviation Airport", + "latitude_deg": "31.86266", + "longitude_deg": "-101.08277", + "elevation_ft": "2357", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sterling City", + "scheduled_service": "no" + }, + { + "id": "351418", + "ident": "US-6353", + "type": "closed", + "name": "Oswalt Aerodrome", + "latitude_deg": "40.91879", + "longitude_deg": "-82.47737", + "elevation_ft": "1194", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Greenwich", + "scheduled_service": "no" + }, + { + "id": "351419", + "ident": "US-6354", + "type": "heliport", + "name": "Kinetica Helipad", + "latitude_deg": "29.62701", + "longitude_deg": "-92.36494", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kaplan", + "scheduled_service": "no" + }, + { + "id": "351534", + "ident": "US-6355", + "type": "heliport", + "name": "The Washington Hospital Rooftop Heliport", + "latitude_deg": "40.18323", + "longitude_deg": "-80.246233", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "25PA", + "local_code": "25PA" + }, + { + "id": "13074", + "ident": "US-6356", + "type": "closed", + "name": "Hightower Areo Plantation Airport", + "latitude_deg": "34.970001", + "longitude_deg": "-80.0289", + "elevation_ft": "395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Wadesboro", + "scheduled_service": "no", + "keywords": "67NC" + }, + { + "id": "351553", + "ident": "US-6357", + "type": "small_airport", + "name": "Devil's Finger Airport", + "latitude_deg": "32.02199", + "longitude_deg": "-97.677383", + "elevation_ft": "827", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Morgan", + "scheduled_service": "no", + "gps_code": "TX28", + "local_code": "TX28" + }, + { + "id": "351566", + "ident": "US-6358", + "type": "heliport", + "name": "Pemiscot Memorial Hospital Heliport", + "latitude_deg": "36.23814", + "longitude_deg": "-89.74051", + "elevation_ft": "268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hayti", + "scheduled_service": "no" + }, + { + "id": "351567", + "ident": "US-6359", + "type": "closed", + "name": "Advance Intermediate Field", + "latitude_deg": "37.10634", + "longitude_deg": "-89.92759", + "elevation_ft": "349", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Advance", + "scheduled_service": "no" + }, + { + "id": "351568", + "ident": "US-6360", + "type": "small_airport", + "name": "Nilsen Airport", + "latitude_deg": "37.11118", + "longitude_deg": "-90.03153", + "elevation_ft": "362", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Sturdivant", + "scheduled_service": "no" + }, + { + "id": "351580", + "ident": "US-6361", + "type": "small_airport", + "name": "Devil Dusters Airport", + "latitude_deg": "32.835265", + "longitude_deg": "-104.512207", + "elevation_ft": "3619", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Artesia", + "scheduled_service": "no" + }, + { + "id": "351581", + "ident": "US-6362", + "type": "closed", + "name": "Roswell Auxiliary Army Airfield Number 4", + "latitude_deg": "32.984", + "longitude_deg": "-104.49112", + "elevation_ft": "3566", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Roswell", + "scheduled_service": "no" + }, + { + "id": "351582", + "ident": "US-6363", + "type": "closed", + "name": "Artesia Municipal Airport / Roswell Auxiliary Army Airfield Number 7", + "latitude_deg": "32.83565", + "longitude_deg": "-104.50777", + "elevation_ft": "3609", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Artesia", + "scheduled_service": "no" + }, + { + "id": "351615", + "ident": "US-6364", + "type": "small_airport", + "name": "Rancho Hielo Brazos Airport", + "latitude_deg": "32.201077", + "longitude_deg": "-97.842253", + "elevation_ft": "928", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Glen Rose", + "scheduled_service": "no", + "gps_code": "TA35", + "local_code": "TA35" + }, + { + "id": "351620", + "ident": "US-6365", + "type": "heliport", + "name": "Bear River Valley Hospital Heliport", + "latitude_deg": "41.724473", + "longitude_deg": "-112.183719", + "elevation_ft": "4338", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Tremonton", + "scheduled_service": "no", + "gps_code": "79UT", + "local_code": "79UT" + }, + { + "id": "351639", + "ident": "US-6366", + "type": "small_airport", + "name": "Cain Airport", + "latitude_deg": "33.354262", + "longitude_deg": "-97.439203", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Slidell", + "scheduled_service": "no", + "local_code": "T28" + }, + { + "id": "351645", + "ident": "US-6367", + "type": "heliport", + "name": "Keller Heliport", + "latitude_deg": "40.806351", + "longitude_deg": "-75.321681", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Bushkill Township", + "scheduled_service": "no", + "gps_code": "3PS3", + "local_code": "3PS3" + }, + { + "id": "351652", + "ident": "US-6368", + "type": "heliport", + "name": "Baylor Scott & White Pflugerville Medical Center Emergency Helipad", + "latitude_deg": "30.45152", + "longitude_deg": "-97.59046", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pflugerville", + "scheduled_service": "no" + }, + { + "id": "351653", + "ident": "US-6369", + "type": "heliport", + "name": "Steiner Ranch Steakhouse Heliport", + "latitude_deg": "30.39045", + "longitude_deg": "-97.8713", + "elevation_ft": "1026", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no" + }, + { + "id": "351682", + "ident": "US-6370", + "type": "closed", + "name": "Washington Ranch Airport", + "latitude_deg": "32.10311", + "longitude_deg": "-104.46663", + "elevation_ft": "3668", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Carlsbad", + "scheduled_service": "no", + "keywords": "Rattlesnake Springs" + }, + { + "id": "351684", + "ident": "US-6371", + "type": "closed", + "name": "Los Angeles Fire Department Station 88 Heliport", + "latitude_deg": "34.162966", + "longitude_deg": "-118.46808", + "elevation_ft": "679", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Sherman Oaks", + "scheduled_service": "no" + }, + { + "id": "351695", + "ident": "US-6372", + "type": "closed", + "name": "Riverside Campground Airport", + "latitude_deg": "35.581493", + "longitude_deg": "-76.515554", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Belhaven", + "scheduled_service": "no", + "home_link": "https://www.visitnc.com/listing/rXf2/riverside-campground", + "keywords": "05W" + }, + { + "id": "351696", + "ident": "US-6373", + "type": "closed", + "name": "Thornton Airport", + "latitude_deg": "39.3411", + "longitude_deg": "-88.2914", + "elevation_ft": "621", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Toledo", + "scheduled_service": "no", + "keywords": "03LL" + }, + { + "id": "351697", + "ident": "US-6374", + "type": "closed", + "name": "Dunlap Airport", + "latitude_deg": "38.724308", + "longitude_deg": "-87.743919", + "elevation_ft": "439", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Bridgeport", + "scheduled_service": "no", + "keywords": "07LL" + }, + { + "id": "351698", + "ident": "US-6375", + "type": "closed", + "name": "Herr II Airport", + "latitude_deg": "41.420052", + "longitude_deg": "-83.797161", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Grand Rapids", + "scheduled_service": "no", + "keywords": "04OI" + }, + { + "id": "351891", + "ident": "US-6376", + "type": "closed", + "name": "Peard Bay DEW Line Station", + "latitude_deg": "70.808056", + "longitude_deg": "-158.258889", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Peard Bay", + "scheduled_service": "no" + }, + { + "id": "351911", + "ident": "US-6377", + "type": "heliport", + "name": "Camp Smith Heliport", + "latitude_deg": "21.38869", + "longitude_deg": "-157.90035", + "elevation_ft": "817", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Aiea", + "scheduled_service": "no" + }, + { + "id": "351912", + "ident": "US-6378", + "type": "heliport", + "name": "Forest Way Private Heliport", + "latitude_deg": "30.4329", + "longitude_deg": "-97.93236", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no" + }, + { + "id": "351913", + "ident": "US-6379", + "type": "heliport", + "name": "Hidden Cove Private Heliport", + "latitude_deg": "33.13356", + "longitude_deg": "-96.93356", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Frisco", + "scheduled_service": "no" + }, + { + "id": "351914", + "ident": "US-6380", + "type": "heliport", + "name": "Nanakuli Heliport", + "latitude_deg": "21.42541", + "longitude_deg": "-158.1346", + "elevation_ft": "138", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Waianae", + "scheduled_service": "no" + }, + { + "id": "351915", + "ident": "US-6381", + "type": "heliport", + "name": "Makua Lower Heliport", + "latitude_deg": "21.52936", + "longitude_deg": "-158.22585", + "elevation_ft": "23", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Waialua", + "scheduled_service": "no" + }, + { + "id": "351916", + "ident": "US-6382", + "type": "heliport", + "name": "Makua Upper Heliport", + "latitude_deg": "21.52928", + "longitude_deg": "-158.21626", + "elevation_ft": "223", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Waialua", + "scheduled_service": "no" + }, + { + "id": "351917", + "ident": "US-6383", + "type": "heliport", + "name": "Diamond Head Heliport", + "latitude_deg": "21.26357", + "longitude_deg": "-157.80314", + "elevation_ft": "292", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Honolulu", + "scheduled_service": "no" + }, + { + "id": "351918", + "ident": "US-6384", + "type": "heliport", + "name": "Wadley Regional Medical Center Heliport", + "latitude_deg": "33.42886", + "longitude_deg": "-94.04799", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Texarkana", + "scheduled_service": "no" + }, + { + "id": "351988", + "ident": "US-6385", + "type": "closed", + "name": "Carbondale Airport", + "latitude_deg": "39.37874", + "longitude_deg": "-107.2066", + "elevation_ft": "6286", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Carbondale", + "scheduled_service": "no" + }, + { + "id": "351989", + "ident": "US-6386", + "type": "closed", + "name": "Snowmass Airport", + "latitude_deg": "39.3322", + "longitude_deg": "-106.97688", + "elevation_ft": "6959", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Snowmass", + "scheduled_service": "no" + }, + { + "id": "351990", + "ident": "US-6387", + "type": "small_airport", + "name": "Deanda Airport", + "latitude_deg": "38.85341", + "longitude_deg": "-107.83477", + "elevation_ft": "6549", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Hotchkiss", + "scheduled_service": "no" + }, + { + "id": "352006", + "ident": "US-6388", + "type": "small_airport", + "name": "Snoopys Airport", + "latitude_deg": "38.809576", + "longitude_deg": "-95.599171", + "elevation_ft": "1102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Carbondale", + "scheduled_service": "no" + }, + { + "id": "352007", + "ident": "US-6389", + "type": "closed", + "name": "Dale A Klassing Airport", + "latitude_deg": "39.81683", + "longitude_deg": "-91.03351", + "elevation_ft": "821", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Liberty", + "scheduled_service": "no" + }, + { + "id": "352008", + "ident": "US-6390", + "type": "heliport", + "name": "North Fork Toutle River Heliport", + "latitude_deg": "46.37467", + "longitude_deg": "-122.59622", + "elevation_ft": "688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Toutle", + "scheduled_service": "no" + }, + { + "id": "352112", + "ident": "US-6391", + "type": "small_airport", + "name": "Long Lake Plantation Airport", + "latitude_deg": "34.48462", + "longitude_deg": "-90.6352", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Helena", + "scheduled_service": "no" + }, + { + "id": "352113", + "ident": "US-6392", + "type": "small_airport", + "name": "Buron Griffin Airport", + "latitude_deg": "34.448697", + "longitude_deg": "-90.66181", + "elevation_ft": "176", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Helena", + "scheduled_service": "no" + }, + { + "id": "352114", + "ident": "US-6393", + "type": "small_airport", + "name": "Riddell Airport", + "latitude_deg": "34.48335", + "longitude_deg": "-90.71574", + "elevation_ft": "177", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Helena", + "scheduled_service": "no" + }, + { + "id": "352115", + "ident": "US-6394", + "type": "small_airport", + "name": "Wooten Airport", + "latitude_deg": "34.66033", + "longitude_deg": "-90.79683", + "elevation_ft": "212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Lexa", + "scheduled_service": "no" + }, + { + "id": "352116", + "ident": "US-6395", + "type": "small_airport", + "name": "Andy Riddell Flying Service Airport", + "latitude_deg": "34.56025", + "longitude_deg": "-90.93233", + "elevation_ft": "192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Marvell", + "scheduled_service": "no" + }, + { + "id": "352134", + "ident": "US-6396", + "type": "closed", + "name": "Savannah Wilmington Island Airport", + "latitude_deg": "32.01172", + "longitude_deg": "-80.98234", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Savannah", + "scheduled_service": "no" + }, + { + "id": "352135", + "ident": "US-6397", + "type": "closed", + "name": "Saffold Field", + "latitude_deg": "32.0395", + "longitude_deg": "-81.00707", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Savannah", + "scheduled_service": "no" + }, + { + "id": "352136", + "ident": "US-6398", + "type": "small_airport", + "name": "M&M Air Service Airport", + "latitude_deg": "34.20235", + "longitude_deg": "-90.30756", + "elevation_ft": "157", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Lambert", + "scheduled_service": "no" + }, + { + "id": "352137", + "ident": "US-6399", + "type": "small_airport", + "name": "South Air Flying Service Airport", + "latitude_deg": "34.18135", + "longitude_deg": "-90.29329", + "elevation_ft": "158", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Lambert", + "scheduled_service": "no" + }, + { + "id": "352138", + "ident": "US-6400", + "type": "closed", + "name": "Lambert Airport", + "latitude_deg": "34.20805", + "longitude_deg": "-90.29036", + "elevation_ft": "151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Lambert", + "scheduled_service": "no" + }, + { + "id": "352139", + "ident": "US-6401", + "type": "closed", + "name": "Longstreet Airport", + "latitude_deg": "34.11057", + "longitude_deg": "-90.33081", + "elevation_ft": "153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Vance", + "scheduled_service": "no" + }, + { + "id": "352140", + "ident": "US-6402", + "type": "closed", + "name": "Walnut Road Airport", + "latitude_deg": "34.10484", + "longitude_deg": "-90.35827", + "elevation_ft": "155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Vance", + "scheduled_service": "no" + }, + { + "id": "352141", + "ident": "US-6403", + "type": "closed", + "name": "Drew Airport", + "latitude_deg": "33.77907", + "longitude_deg": "-90.53413", + "elevation_ft": "138", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Drew", + "scheduled_service": "no" + }, + { + "id": "352142", + "ident": "US-6404", + "type": "heliport", + "name": "North Sunflower Medical Center Heliport", + "latitude_deg": "33.7353", + "longitude_deg": "-90.54439", + "elevation_ft": "135", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Ruleville", + "scheduled_service": "no" + }, + { + "id": "352143", + "ident": "US-6405", + "type": "closed", + "name": "Ruleville Airport", + "latitude_deg": "33.73708", + "longitude_deg": "-90.54422", + "elevation_ft": "137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Ruleville", + "scheduled_service": "no" + }, + { + "id": "352144", + "ident": "US-6406", + "type": "small_airport", + "name": "Quiver River Flying Service Airport", + "latitude_deg": "33.74209", + "longitude_deg": "-90.46883", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Ruleville", + "scheduled_service": "no", + "keywords": "Cane Lake Aero, Neal" + }, + { + "id": "352145", + "ident": "US-6407", + "type": "closed", + "name": "Marble Hill Airport", + "latitude_deg": "33.49095", + "longitude_deg": "-90.57777", + "elevation_ft": "114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Sunflower", + "scheduled_service": "no" + }, + { + "id": "352146", + "ident": "US-6408", + "type": "small_airport", + "name": "Morgan Airport", + "latitude_deg": "33.606212", + "longitude_deg": "-90.821022", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Shaw", + "scheduled_service": "no" + }, + { + "id": "352147", + "ident": "US-6409", + "type": "small_airport", + "name": "Girdley Flying Service Airport", + "latitude_deg": "35.68414", + "longitude_deg": "-90.14733", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Osceola", + "scheduled_service": "no" + }, + { + "id": "352216", + "ident": "US-6410", + "type": "seaplane_base", + "name": "Clifford Lake Seaplane Base", + "latitude_deg": "43.305026", + "longitude_deg": "-85.185314", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Stanton", + "scheduled_service": "no", + "local_code": "22C" + }, + { + "id": "352237", + "ident": "US-6411", + "type": "small_airport", + "name": "Aubrey's Airpark", + "latitude_deg": "32.498194", + "longitude_deg": "-81.622444", + "elevation_ft": "186", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Statesboro", + "scheduled_service": "no", + "gps_code": "2GA7", + "local_code": "2GA7" + }, + { + "id": "352238", + "ident": "US-6412", + "type": "heliport", + "name": "Abbvie Heliport", + "latitude_deg": "42.289167", + "longitude_deg": "-87.894306", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "North Chicago", + "scheduled_service": "no", + "gps_code": "2IL4", + "local_code": "2IL4" + }, + { + "id": "352240", + "ident": "US-6413", + "type": "heliport", + "name": "Crown Point Corporation Helipad", + "latitude_deg": "42.024292", + "longitude_deg": "-87.781189", + "elevation_ft": "644", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Morton Grove", + "scheduled_service": "no", + "gps_code": "2IL5", + "local_code": "2IL5" + }, + { + "id": "352242", + "ident": "US-6414", + "type": "heliport", + "name": "Koehler Heliport", + "latitude_deg": "40.888497", + "longitude_deg": "-89.122475", + "elevation_ft": "748", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Benson", + "scheduled_service": "no", + "gps_code": "3IL7", + "local_code": "3IL7" + }, + { + "id": "352246", + "ident": "US-6415", + "type": "small_airport", + "name": "Fly8ma Pilot Lodge Airport", + "latitude_deg": "61.584332", + "longitude_deg": "-149.803772", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Big Lake", + "scheduled_service": "no", + "gps_code": "57AK", + "local_code": "57AK" + }, + { + "id": "352248", + "ident": "US-6416", + "type": "small_airport", + "name": "Goans Field", + "latitude_deg": "37.807278", + "longitude_deg": "-94.740903", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Fort Scott", + "scheduled_service": "no", + "gps_code": "5KS4", + "local_code": "5KS4" + }, + { + "id": "352256", + "ident": "US-6417", + "type": "heliport", + "name": "Newman Regional Health Heliport", + "latitude_deg": "38.410613", + "longitude_deg": "-96.195576", + "elevation_ft": "1164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Emporia", + "scheduled_service": "no", + "gps_code": "6KS1", + "local_code": "6KS1" + }, + { + "id": "352258", + "ident": "US-6418", + "type": "heliport", + "name": "Via Christi St Teresa Heliport", + "latitude_deg": "37.72658", + "longitude_deg": "-97.513554", + "elevation_ft": "1357", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Wichita", + "scheduled_service": "no", + "gps_code": "6KS3", + "local_code": "6KS3" + }, + { + "id": "352260", + "ident": "US-6419", + "type": "small_airport", + "name": "Kennedy Airport", + "latitude_deg": "37.412254", + "longitude_deg": "-100.092391", + "elevation_ft": "2749", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Minneola", + "scheduled_service": "no", + "gps_code": "7KS7", + "local_code": "7KS7" + }, + { + "id": "352261", + "ident": "US-6420", + "type": "small_airport", + "name": "Scooters Airport", + "latitude_deg": "61.948417", + "longitude_deg": "-151.524312", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Skwentna", + "scheduled_service": "no", + "gps_code": "AK64", + "local_code": "AK64" + }, + { + "id": "352262", + "ident": "US-6421", + "type": "heliport", + "name": "Centura Health Interquest Campus Heliport", + "latitude_deg": "38.987594", + "longitude_deg": "-104.810103", + "elevation_ft": "6648", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Colorado Springs", + "scheduled_service": "no", + "gps_code": "CO91", + "local_code": "CO91" + }, + { + "id": "352265", + "ident": "US-6422", + "type": "small_airport", + "name": "Bresette Airport", + "latitude_deg": "41.096814", + "longitude_deg": "-96.284072", + "elevation_ft": "1072", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Gretna", + "scheduled_service": "no", + "gps_code": "NE24", + "local_code": "NE24" + }, + { + "id": "352268", + "ident": "US-6423", + "type": "small_airport", + "name": "Andrew J Ciechomski Memorial Airport", + "latitude_deg": "40.102153", + "longitude_deg": "-80.899029", + "elevation_ft": "1241", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "St Clairsville", + "scheduled_service": "no", + "gps_code": "OH90", + "local_code": "OH90" + }, + { + "id": "352293", + "ident": "US-6424", + "type": "small_airport", + "name": "Spokane Airport", + "latitude_deg": "31.68924", + "longitude_deg": "-91.4677", + "elevation_ft": "58", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Ferriday", + "scheduled_service": "no" + }, + { + "id": "352294", + "ident": "US-6425", + "type": "closed", + "name": "Goldman Airport", + "latitude_deg": "31.84194", + "longitude_deg": "-91.38261", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Waterproof", + "scheduled_service": "no" + }, + { + "id": "352295", + "ident": "US-6426", + "type": "closed", + "name": "Cropduster Airport", + "latitude_deg": "31.96907", + "longitude_deg": "-91.21191", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "St Joseph", + "scheduled_service": "no" + }, + { + "id": "352298", + "ident": "US-6427", + "type": "small_airport", + "name": "Beam Farms Airport", + "latitude_deg": "39.501988", + "longitude_deg": "-83.711786", + "elevation_ft": "1095", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Sabina", + "scheduled_service": "no", + "gps_code": "OI85", + "local_code": "OI85" + }, + { + "id": "352343", + "ident": "US-6428", + "type": "closed", + "name": "Loco Hills Landing Field", + "latitude_deg": "32.81335", + "longitude_deg": "-103.98334", + "elevation_ft": "3635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Loco Hills", + "scheduled_service": "no" + }, + { + "id": "352344", + "ident": "US-6429", + "type": "small_airport", + "name": "Red Lake Landing Field", + "latitude_deg": "35.67842", + "longitude_deg": "-114.08774", + "elevation_ft": "2784", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Dolan Springs", + "scheduled_service": "no" + }, + { + "id": "352346", + "ident": "US-6430", + "type": "small_airport", + "name": "Hanks Airport", + "latitude_deg": "30.74184", + "longitude_deg": "-91.78053", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Melville", + "scheduled_service": "no" + }, + { + "id": "352352", + "ident": "US-6431", + "type": "heliport", + "name": "Montgomery County Ambulance Base 2 Heliport", + "latitude_deg": "38.90886", + "longitude_deg": "-91.45994", + "elevation_ft": "844", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "New Florence", + "scheduled_service": "no" + }, + { + "id": "352353", + "ident": "US-6432", + "type": "small_airport", + "name": "L'Anse Aux Pailles Airport", + "latitude_deg": "30.58873", + "longitude_deg": "-92.26986", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Ville Platte", + "scheduled_service": "no" + }, + { + "id": "352354", + "ident": "US-6433", + "type": "small_airport", + "name": "Indian Village Airport", + "latitude_deg": "30.44492", + "longitude_deg": "-92.97048", + "elevation_ft": "32", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Kinder", + "scheduled_service": "no" + }, + { + "id": "352356", + "ident": "US-6434", + "type": "closed", + "name": "Kaena Point Satellite Tracking Station Heliport", + "latitude_deg": "21.56202", + "longitude_deg": "-158.24123", + "elevation_ft": "1286", + "continent": "OC", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Waialua", + "scheduled_service": "no" + }, + { + "id": "352401", + "ident": "US-6435", + "type": "closed", + "name": "Gillett Airport", + "latitude_deg": "47.11062", + "longitude_deg": "-109.48808", + "elevation_ft": "3806", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Lewistown", + "scheduled_service": "no" + }, + { + "id": "352402", + "ident": "US-6436", + "type": "small_airport", + "name": "Lucier Ranch Airport", + "latitude_deg": "47.17709", + "longitude_deg": "-109.3064", + "elevation_ft": "4449", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Lewistown", + "scheduled_service": "no" + }, + { + "id": "352423", + "ident": "US-6437", + "type": "heliport", + "name": "Cypress Creek Private Heliport", + "latitude_deg": "35.05383", + "longitude_deg": "-92.11654", + "elevation_ft": "282", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Vilonia", + "scheduled_service": "no" + }, + { + "id": "352424", + "ident": "US-6438", + "type": "small_airport", + "name": "Tidwell Flying Services Airport", + "latitude_deg": "34.77831", + "longitude_deg": "-91.79921", + "elevation_ft": "227", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Carlisle", + "scheduled_service": "no" + }, + { + "id": "352425", + "ident": "US-6439", + "type": "small_airport", + "name": "Lissie Flying Service Airport", + "latitude_deg": "29.54103", + "longitude_deg": "-96.22514", + "elevation_ft": "152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lissie", + "scheduled_service": "no", + "local_code": "TX90" + }, + { + "id": "352426", + "ident": "US-6440", + "type": "small_airport", + "name": "Daniel Flying Services Airport", + "latitude_deg": "28.44536", + "longitude_deg": "-96.89783", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tivoli", + "scheduled_service": "no" + }, + { + "id": "352434", + "ident": "US-6441", + "type": "small_airport", + "name": "La Buena Vida Airport", + "latitude_deg": "28.150459", + "longitude_deg": "-97.381139", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Woodsboro", + "scheduled_service": "no", + "gps_code": "TS05", + "local_code": "TS05" + }, + { + "id": "352437", + "ident": "US-6442", + "type": "small_airport", + "name": "Hidden Valley Ranch Airport", + "latitude_deg": "29.585081", + "longitude_deg": "-99.55405", + "elevation_ft": "1417", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Utopia", + "scheduled_service": "no", + "gps_code": "TS90", + "local_code": "TS90" + }, + { + "id": "352440", + "ident": "US-6443", + "type": "closed", + "name": "Richland Flying Service Airport", + "latitude_deg": "29.35635", + "longitude_deg": "-95.44996", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rosharon", + "scheduled_service": "no" + }, + { + "id": "352540", + "ident": "US-6444", + "type": "small_airport", + "name": "Yuma Proving Ground East Airstrip", + "latitude_deg": "33.17512", + "longitude_deg": "-114.28999", + "elevation_ft": "1073", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Yuma", + "scheduled_service": "no" + }, + { + "id": "352541", + "ident": "US-6445", + "type": "small_airport", + "name": "Indian Springs Auxiliary Field Number 1", + "latitude_deg": "37.27642", + "longitude_deg": "-115.7555", + "elevation_ft": "4488", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Mercury", + "scheduled_service": "no" + }, + { + "id": "352542", + "ident": "US-6446", + "type": "small_airport", + "name": "Groom Mine Airstrip", + "latitude_deg": "37.31707", + "longitude_deg": "-115.77118", + "elevation_ft": "4790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Mercury", + "scheduled_service": "no" + }, + { + "id": "352543", + "ident": "US-6447", + "type": "small_airport", + "name": "Gunderson Airport", + "latitude_deg": "37.67236", + "longitude_deg": "-115.84327", + "elevation_ft": "4836", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Alamo", + "scheduled_service": "no" + }, + { + "id": "352544", + "ident": "US-6448", + "type": "small_airport", + "name": "Penoyer Farms Airport", + "latitude_deg": "37.6551", + "longitude_deg": "-115.78624", + "elevation_ft": "4797", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Alamo", + "scheduled_service": "no" + }, + { + "id": "352545", + "ident": "US-6449", + "type": "small_airport", + "name": "Rachel Airport", + "latitude_deg": "37.65902", + "longitude_deg": "-115.71245", + "elevation_ft": "4885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Alamo", + "scheduled_service": "no" + }, + { + "id": "352590", + "ident": "US-6450", + "type": "closed", + "name": "Clemens Airport", + "latitude_deg": "28.98643", + "longitude_deg": "-95.55806", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brazoria", + "scheduled_service": "no" + }, + { + "id": "352591", + "ident": "US-6451", + "type": "closed", + "name": "Browns Ranch Airport", + "latitude_deg": "39.81482", + "longitude_deg": "-77.25403", + "elevation_ft": "521", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Gettysburg", + "scheduled_service": "no", + "keywords": "Browns Landing Strip" + }, + { + "id": "352593", + "ident": "US-6452", + "type": "small_airport", + "name": "Blankenship Airport", + "latitude_deg": "35.06149", + "longitude_deg": "-102.65979", + "elevation_ft": "4150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hereford", + "scheduled_service": "no" + }, + { + "id": "352594", + "ident": "US-6453", + "type": "closed", + "name": "Meekins Neck Airport", + "latitude_deg": "38.38575", + "longitude_deg": "-76.25375", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Church Creek", + "scheduled_service": "no" + }, + { + "id": "352597", + "ident": "US-6454", + "type": "closed", + "name": "Double K Ranch Airport", + "latitude_deg": "41.65358", + "longitude_deg": "-106.07861", + "elevation_ft": "7284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "McFadden", + "scheduled_service": "no" + }, + { + "id": "352598", + "ident": "US-6455", + "type": "small_airport", + "name": "Pleasant Hill Airport", + "latitude_deg": "34.29018", + "longitude_deg": "-94.27796", + "elevation_ft": "974", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Wickes", + "scheduled_service": "no" + }, + { + "id": "352641", + "ident": "US-6456", + "type": "small_airport", + "name": "Jack Creek Ranch Airport", + "latitude_deg": "41.4337", + "longitude_deg": "-116.09768", + "elevation_ft": "5875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Tuscarora", + "scheduled_service": "no" + }, + { + "id": "352642", + "ident": "US-6457", + "type": "small_airport", + "name": "Boling-Iago Southwest Airport", + "latitude_deg": "29.24523", + "longitude_deg": "-95.97955", + "elevation_ft": "81", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Boling-Iago", + "scheduled_service": "no" + }, + { + "id": "352643", + "ident": "US-6458", + "type": "closed", + "name": "J B Fillman Airport", + "latitude_deg": "41.21575", + "longitude_deg": "-88.3628", + "elevation_ft": "568", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mazon", + "scheduled_service": "no" + }, + { + "id": "352645", + "ident": "US-6459", + "type": "closed", + "name": "Rena-Vera Airport", + "latitude_deg": "39.78104", + "longitude_deg": "-77.23248", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Gettysburg", + "scheduled_service": "no", + "keywords": "Rena-Vera Landing Strip" + }, + { + "id": "352646", + "ident": "US-6460", + "type": "small_airport", + "name": "Hickory Hill Farms Airport", + "latitude_deg": "39.77459", + "longitude_deg": "-77.20415", + "elevation_ft": "466", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Gettysburg", + "scheduled_service": "no" + }, + { + "id": "352647", + "ident": "US-6461", + "type": "closed", + "name": "Miller/Maple Park Farm Airport", + "latitude_deg": "41.897928", + "longitude_deg": "-88.588625", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Maple Park", + "scheduled_service": "no" + }, + { + "id": "352655", + "ident": "US-6462", + "type": "closed", + "name": "Shimerfield Airport", + "latitude_deg": "39.896522", + "longitude_deg": "-77.195399", + "elevation_ft": "539", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Gettysburg", + "scheduled_service": "no" + }, + { + "id": "352656", + "ident": "US-6463", + "type": "closed", + "name": "Diedrich Airport", + "latitude_deg": "41.87445", + "longitude_deg": "-88.83472", + "elevation_ft": "876", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "DeKalb", + "scheduled_service": "no" + }, + { + "id": "352658", + "ident": "US-6464", + "type": "closed", + "name": "Gettysburg Airport / Forney Field", + "latitude_deg": "39.8438", + "longitude_deg": "-77.24687", + "elevation_ft": "584", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Gettysburg", + "scheduled_service": "no" + }, + { + "id": "352659", + "ident": "US-6465", + "type": "closed", + "name": "Gettysburg Airport (1942)", + "latitude_deg": "39.85657", + "longitude_deg": "-77.26383", + "elevation_ft": "588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Gettysburg", + "scheduled_service": "no" + }, + { + "id": "352660", + "ident": "US-6466", + "type": "closed", + "name": "Marx V Stott Airport", + "latitude_deg": "41.98182", + "longitude_deg": "-88.81104", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "DeKalb", + "scheduled_service": "no" + }, + { + "id": "352662", + "ident": "US-6467", + "type": "closed", + "name": "Skyport Airport", + "latitude_deg": "40.24521", + "longitude_deg": "-76.9864", + "elevation_ft": "404", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Harrisburg", + "scheduled_service": "no" + }, + { + "id": "352667", + "ident": "US-6468", + "type": "small_airport", + "name": "Cholla Canyon Ranch Airport", + "latitude_deg": "34.69323", + "longitude_deg": "-113.57241", + "elevation_ft": "2113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Wikieup", + "scheduled_service": "no" + }, + { + "id": "352668", + "ident": "US-6469", + "type": "small_airport", + "name": "O'Brien Flying Services Airport", + "latitude_deg": "30.2602", + "longitude_deg": "-93.54702", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Vinton", + "scheduled_service": "no" + }, + { + "id": "352714", + "ident": "US-6470", + "type": "closed", + "name": "Aleknagik Old Airport", + "latitude_deg": "59.27004", + "longitude_deg": "-158.62368", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Aleknagik", + "scheduled_service": "no" + }, + { + "id": "352715", + "ident": "US-6471", + "type": "small_airport", + "name": "Silver Salmon Airport", + "latitude_deg": "59.24928", + "longitude_deg": "-158.62955", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Aleknagik", + "scheduled_service": "no" + }, + { + "id": "352717", + "ident": "US-6472", + "type": "small_airport", + "name": "Shannon Lake Airport", + "latitude_deg": "59.05351", + "longitude_deg": "-158.58384", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Dillingham", + "scheduled_service": "no" + }, + { + "id": "352720", + "ident": "US-6473", + "type": "heliport", + "name": "Banner Gateway Medical Center Heliport", + "latitude_deg": "33.38551", + "longitude_deg": "-111.72371", + "elevation_ft": "1302", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Gilbert", + "scheduled_service": "no" + }, + { + "id": "352723", + "ident": "US-6474", + "type": "small_airport", + "name": "Goldmine Plantation Airport", + "latitude_deg": "32.20546", + "longitude_deg": "-91.85117", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Mangham", + "scheduled_service": "no" + }, + { + "id": "352724", + "ident": "US-6475", + "type": "small_airport", + "name": "High Hopes Airport", + "latitude_deg": "32.23695", + "longitude_deg": "-91.88099", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Mangham", + "scheduled_service": "no" + }, + { + "id": "352725", + "ident": "US-6476", + "type": "closed", + "name": "Hines Airport", + "latitude_deg": "32.31742", + "longitude_deg": "-91.842", + "elevation_ft": "71", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Mangham", + "scheduled_service": "no" + }, + { + "id": "352726", + "ident": "US-6477", + "type": "small_airport", + "name": "Fletcher Airport", + "latitude_deg": "32.24502", + "longitude_deg": "-91.68056", + "elevation_ft": "81", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Winnsboro", + "scheduled_service": "no" + }, + { + "id": "352727", + "ident": "US-6478", + "type": "closed", + "name": "Taylor Bayou Airport", + "latitude_deg": "32.25058", + "longitude_deg": "-91.65659", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Winnsboro", + "scheduled_service": "no" + }, + { + "id": "352730", + "ident": "US-6479", + "type": "heliport", + "name": "LeConte Medical Center Heliport", + "latitude_deg": "35.85604", + "longitude_deg": "-83.53407", + "elevation_ft": "972", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Sevierville", + "scheduled_service": "no" + }, + { + "id": "352732", + "ident": "US-6480", + "type": "closed", + "name": "Saratoga Airport", + "latitude_deg": "40.24055", + "longitude_deg": "-84.90663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Winchester", + "scheduled_service": "no" + }, + { + "id": "352744", + "ident": "US-6481", + "type": "heliport", + "name": "San Tan Remote Test Facility Heliport", + "latitude_deg": "33.18746", + "longitude_deg": "-111.73854", + "elevation_ft": "1391", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Queen Creek", + "scheduled_service": "no" + }, + { + "id": "352745", + "ident": "US-6482", + "type": "closed", + "name": "Devener Airport", + "latitude_deg": "39.82897", + "longitude_deg": "-76.96959", + "elevation_ft": "619", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Hanover", + "scheduled_service": "no" + }, + { + "id": "352746", + "ident": "US-6483", + "type": "small_airport", + "name": "Ruggles Private Airport", + "latitude_deg": "33.61993", + "longitude_deg": "-93.52266", + "elevation_ft": "362", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Hope", + "scheduled_service": "no" + }, + { + "id": "352757", + "ident": "US-6484", + "type": "heliport", + "name": "Siloam Springs Regional Hospital Heliport", + "latitude_deg": "36.18938", + "longitude_deg": "-94.50675", + "elevation_ft": "1147", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Siloam Springs", + "scheduled_service": "no", + "local_code": "AR69" + }, + { + "id": "352759", + "ident": "US-6485", + "type": "heliport", + "name": "Loop Heliport", + "latitude_deg": "29.11707", + "longitude_deg": "-90.20929", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Golden Meadow", + "scheduled_service": "no" + }, + { + "id": "352764", + "ident": "US-6486", + "type": "small_airport", + "name": "Shackleford Airport", + "latitude_deg": "33.20309", + "longitude_deg": "-84.37866", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Williamson", + "scheduled_service": "no" + }, + { + "id": "352766", + "ident": "US-6487", + "type": "small_airport", + "name": "Diller Airport", + "latitude_deg": "34.94573", + "longitude_deg": "-102.3453", + "elevation_ft": "3850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hereford", + "scheduled_service": "no" + }, + { + "id": "352768", + "ident": "US-6488", + "type": "closed", + "name": "Paetzold North Airport", + "latitude_deg": "34.97651", + "longitude_deg": "-102.29688", + "elevation_ft": "3855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hereford", + "scheduled_service": "no" + }, + { + "id": "352769", + "ident": "US-6489", + "type": "small_airport", + "name": "Hoffman Airport", + "latitude_deg": "34.88074", + "longitude_deg": "-102.42705", + "elevation_ft": "3866", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hereford", + "scheduled_service": "no" + }, + { + "id": "352770", + "ident": "US-6490", + "type": "heliport", + "name": "Van Buren County Hospital Heliport", + "latitude_deg": "40.73689", + "longitude_deg": "-91.95736", + "elevation_ft": "624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Keosauqua", + "scheduled_service": "no" + }, + { + "id": "352771", + "ident": "US-6491", + "type": "small_airport", + "name": "Pleasant Hill Airport", + "latitude_deg": "39.431217", + "longitude_deg": "-90.907874", + "elevation_ft": "447", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Pleasant Hill", + "scheduled_service": "no" + }, + { + "id": "352773", + "ident": "US-6492", + "type": "closed", + "name": "Landsdowne Airport", + "latitude_deg": "40.08935", + "longitude_deg": "-84.59769", + "elevation_ft": "1037", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Greenville", + "scheduled_service": "no" + }, + { + "id": "352774", + "ident": "US-6493", + "type": "heliport", + "name": "Henry Ford Macomb Hospital Heliport", + "latitude_deg": "42.61544", + "longitude_deg": "-82.96174", + "elevation_ft": "602", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Clinton Township", + "scheduled_service": "no", + "local_code": "90MI" + }, + { + "id": "352775", + "ident": "US-6494", + "type": "balloonport", + "name": "Metamora Balloonport", + "latitude_deg": "42.9461", + "longitude_deg": "-83.29176", + "elevation_ft": "1048", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Metamora", + "scheduled_service": "no" + }, + { + "id": "352776", + "ident": "US-6495", + "type": "closed", + "name": "Rogers Airport", + "latitude_deg": "44.08239", + "longitude_deg": "-92.36732", + "elevation_ft": "1281", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Rochester", + "scheduled_service": "no" + }, + { + "id": "352781", + "ident": "US-6496", + "type": "small_airport", + "name": "Hamner Brook Airport", + "latitude_deg": "43.9981", + "longitude_deg": "-74.41847", + "elevation_ft": "1788", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Long Lake", + "scheduled_service": "no" + }, + { + "id": "352802", + "ident": "US-6497", + "type": "closed", + "name": "Carlsbad South Airport", + "latitude_deg": "32.26108", + "longitude_deg": "-104.22944", + "elevation_ft": "3266", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Carlsbad", + "scheduled_service": "no" + }, + { + "id": "352803", + "ident": "US-6498", + "type": "small_airport", + "name": "Fort Hood Landing Strip 50", + "latitude_deg": "31.23025", + "longitude_deg": "-97.79886", + "elevation_ft": "879", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Hood", + "scheduled_service": "no" + }, + { + "id": "352804", + "ident": "US-6499", + "type": "heliport", + "name": "Fort Hood Forward Area Refueling Point West (FARP-W)", + "latitude_deg": "31.33458", + "longitude_deg": "-97.74878", + "elevation_ft": "904", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Hood", + "scheduled_service": "no" + }, + { + "id": "352805", + "ident": "US-6500", + "type": "heliport", + "name": "Fort Hood Forward Area Refueling Point East (FARP-E)", + "latitude_deg": "31.33906", + "longitude_deg": "-97.6913", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Hood", + "scheduled_service": "no" + }, + { + "id": "352806", + "ident": "US-6501", + "type": "small_airport", + "name": "Fort Hood Stampede Creek Airstrip", + "latitude_deg": "31.27132", + "longitude_deg": "-97.82474", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Hood", + "scheduled_service": "no" + }, + { + "id": "352807", + "ident": "US-6502", + "type": "small_airport", + "name": "Fort Hood Landing Strip 22", + "latitude_deg": "31.20208", + "longitude_deg": "-97.55721", + "elevation_ft": "882", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Hood", + "scheduled_service": "no" + }, + { + "id": "352808", + "ident": "US-6503", + "type": "heliport", + "name": "Artesia General Hospital Heliport", + "latitude_deg": "32.84955", + "longitude_deg": "-104.41121", + "elevation_ft": "3396", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Artesia", + "scheduled_service": "no" + }, + { + "id": "352847", + "ident": "US-6504", + "type": "heliport", + "name": "Spectrum Health Pennock Heliport", + "latitude_deg": "42.64526", + "longitude_deg": "-85.30303", + "elevation_ft": "807", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Hastings", + "scheduled_service": "no" + }, + { + "id": "352848", + "ident": "US-6505", + "type": "small_airport", + "name": "Bellamy Airport", + "latitude_deg": "43.37136", + "longitude_deg": "-85.63963", + "elevation_ft": "894", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Howard City", + "scheduled_service": "no" + }, + { + "id": "352849", + "ident": "US-6506", + "type": "small_airport", + "name": "Howard City South Airport", + "latitude_deg": "43.38306", + "longitude_deg": "-85.46489", + "elevation_ft": "272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Howard City", + "scheduled_service": "no" + }, + { + "id": "352850", + "ident": "US-6507", + "type": "heliport", + "name": "Sundance Boat Tours Heliport", + "latitude_deg": "35.98954", + "longitude_deg": "-113.78054", + "elevation_ft": "1243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peach Springs", + "scheduled_service": "no" + }, + { + "id": "352853", + "ident": "US-6508", + "type": "small_airport", + "name": "Castle Haven Airport", + "latitude_deg": "38.61304", + "longitude_deg": "-76.19133", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Cambridge", + "scheduled_service": "no" + }, + { + "id": "352854", + "ident": "US-6509", + "type": "small_airport", + "name": "White Sands Mar Site Airport", + "latitude_deg": "32.62591", + "longitude_deg": "-106.33345", + "elevation_ft": "3959", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "White Sands", + "scheduled_service": "no" + }, + { + "id": "352858", + "ident": "US-6510", + "type": "small_airport", + "name": "Dry Lake Airport", + "latitude_deg": "41.67554", + "longitude_deg": "-121.26808", + "elevation_ft": "4150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tulelake", + "scheduled_service": "no" + }, + { + "id": "352859", + "ident": "US-6511", + "type": "small_airport", + "name": "Kohlmeyer Airport", + "latitude_deg": "43.750116", + "longitude_deg": "-92.203832", + "elevation_ft": "1306", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Fountain", + "scheduled_service": "no" + }, + { + "id": "352862", + "ident": "US-6512", + "type": "closed", + "name": "Champion Executive Airport", + "latitude_deg": "41.52271", + "longitude_deg": "-80.85623", + "elevation_ft": "939", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Orwell", + "scheduled_service": "no" + }, + { + "id": "352863", + "ident": "US-6513", + "type": "small_airport", + "name": "Trumbull Airport", + "latitude_deg": "41.67432", + "longitude_deg": "-80.97836", + "elevation_ft": "1025", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Geneva", + "scheduled_service": "no" + }, + { + "id": "352870", + "ident": "US-6514", + "type": "closed", + "name": "Mathews Airport", + "latitude_deg": "33.94102", + "longitude_deg": "-98.30538", + "elevation_ft": "947", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wichita Falls", + "scheduled_service": "no" + }, + { + "id": "352871", + "ident": "US-6515", + "type": "small_airport", + "name": "Apple Valley Airport", + "latitude_deg": "46.55495", + "longitude_deg": "-120.56325", + "elevation_ft": "1115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Yakima", + "scheduled_service": "no" + }, + { + "id": "352872", + "ident": "US-6516", + "type": "closed", + "name": "Oologah Airport", + "latitude_deg": "36.41259", + "longitude_deg": "-95.71733", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Oologah", + "scheduled_service": "no" + }, + { + "id": "352873", + "ident": "US-6517", + "type": "small_airport", + "name": "Black Mountain Open Space Gliderport", + "latitude_deg": "32.98795", + "longitude_deg": "-117.12226", + "elevation_ft": "1127", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Diego", + "scheduled_service": "no", + "home_link": "https://www.sdhgpa.com/black-mountain-open-space-history.html", + "keywords": "Little Black" + }, + { + "id": "352874", + "ident": "US-6518", + "type": "heliport", + "name": "Cameron Fire Station Heliport", + "latitude_deg": "32.72053", + "longitude_deg": "-116.46464", + "elevation_ft": "3255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Pine Valley", + "scheduled_service": "no" + }, + { + "id": "352875", + "ident": "US-6519", + "type": "heliport", + "name": "Jefferson County Hospital Heliport", + "latitude_deg": "34.15707", + "longitude_deg": "-97.97902", + "elevation_ft": "948", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Waurika", + "scheduled_service": "no" + }, + { + "id": "352877", + "ident": "US-6520", + "type": "small_airport", + "name": "Colman Airport", + "latitude_deg": "41.08405", + "longitude_deg": "-88.14146", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Buckingham", + "scheduled_service": "no" + }, + { + "id": "352878", + "ident": "US-6521", + "type": "closed", + "name": "Porter Airport", + "latitude_deg": "40.98714", + "longitude_deg": "-88.11107", + "elevation_ft": "722", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Herscher", + "scheduled_service": "no" + }, + { + "id": "352910", + "ident": "US-6522", + "type": "closed", + "name": "Exxon Flour Bluff Heliport", + "latitude_deg": "27.65961", + "longitude_deg": "-97.28486", + "elevation_ft": "11", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corpus Christi", + "scheduled_service": "no" + }, + { + "id": "352911", + "ident": "US-6523", + "type": "closed", + "name": "Shissler Seed Company Inc Airport", + "latitude_deg": "41.041", + "longitude_deg": "-90.89669", + "elevation_ft": "566", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Keithsburg", + "scheduled_service": "no" + }, + { + "id": "352912", + "ident": "US-6524", + "type": "closed", + "name": "Flynn Airport", + "latitude_deg": "45.31793", + "longitude_deg": "-93.77724", + "elevation_ft": "943", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Big Lake", + "scheduled_service": "no" + }, + { + "id": "352913", + "ident": "US-6525", + "type": "closed", + "name": "West Shore Airport", + "latitude_deg": "40.49066", + "longitude_deg": "-75.91535", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Shoemakersville", + "scheduled_service": "no" + }, + { + "id": "352914", + "ident": "US-6526", + "type": "heliport", + "name": "Wellspan Waynesboro Hospital Heliport", + "latitude_deg": "39.75101", + "longitude_deg": "-77.56978", + "elevation_ft": "694", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Waynesboro", + "scheduled_service": "no" + }, + { + "id": "352915", + "ident": "US-6527", + "type": "closed", + "name": "Judys Airport", + "latitude_deg": "39.632", + "longitude_deg": "-84.44929", + "elevation_ft": "941", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Germantown", + "scheduled_service": "no" + }, + { + "id": "352929", + "ident": "US-6528", + "type": "small_airport", + "name": "Hines Airport", + "latitude_deg": "43.55812", + "longitude_deg": "-119.0997", + "elevation_ft": "4477", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Hines", + "scheduled_service": "no" + }, + { + "id": "352935", + "ident": "US-6529", + "type": "small_airport", + "name": "Kettley Farms Airport", + "latitude_deg": "41.74929", + "longitude_deg": "-89.04459", + "elevation_ft": "914", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Steward", + "scheduled_service": "no" + }, + { + "id": "352936", + "ident": "US-6530", + "type": "closed", + "name": "Arlington Southwest Airport", + "latitude_deg": "44.57597", + "longitude_deg": "-94.12551", + "elevation_ft": "997", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Arlington", + "scheduled_service": "no" + }, + { + "id": "352937", + "ident": "US-6531", + "type": "closed", + "name": "Ballek Airport", + "latitude_deg": "41.77641", + "longitude_deg": "-88.67568", + "elevation_ft": "757", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Hinckley", + "scheduled_service": "no" + }, + { + "id": "352949", + "ident": "US-6532", + "type": "closed", + "name": "Matteson Airport", + "latitude_deg": "41.23931", + "longitude_deg": "-88.34626", + "elevation_ft": "563", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Mazon", + "scheduled_service": "no" + }, + { + "id": "352950", + "ident": "US-6533", + "type": "closed", + "name": "Krause Airport", + "latitude_deg": "42.17868", + "longitude_deg": "-88.65452", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Marengo", + "scheduled_service": "no" + }, + { + "id": "352951", + "ident": "US-6534", + "type": "small_airport", + "name": "Giblin Farms Airport", + "latitude_deg": "42.17916", + "longitude_deg": "-88.69116", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Marengo", + "scheduled_service": "no" + }, + { + "id": "352982", + "ident": "US-6535", + "type": "small_airport", + "name": "Potato Run Airport", + "latitude_deg": "38.41655", + "longitude_deg": "-77.95513", + "elevation_ft": "341", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Culpeper", + "scheduled_service": "no" + }, + { + "id": "353002", + "ident": "US-6536", + "type": "small_airport", + "name": "Dick Burns Farm Airport", + "latitude_deg": "41.58455", + "longitude_deg": "-88.68929", + "elevation_ft": "661", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Leland", + "scheduled_service": "no" + }, + { + "id": "353003", + "ident": "US-6537", + "type": "closed", + "name": "Greenville Municipal Airport", + "latitude_deg": "33.38748", + "longitude_deg": "-91.00132", + "elevation_ft": "117", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Greenville", + "scheduled_service": "no" + }, + { + "id": "353004", + "ident": "US-6538", + "type": "closed", + "name": "Stoneville Airport", + "latitude_deg": "33.42603", + "longitude_deg": "-90.90838", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Stoneville", + "scheduled_service": "no" + }, + { + "id": "353005", + "ident": "US-6539", + "type": "closed", + "name": "Tate Airport", + "latitude_deg": "33.41772", + "longitude_deg": "-90.893", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Leland", + "scheduled_service": "no" + }, + { + "id": "353006", + "ident": "US-6540", + "type": "small_airport", + "name": "Edwards 1 Airport", + "latitude_deg": "33.43983", + "longitude_deg": "-90.83463", + "elevation_ft": "114", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Leland", + "scheduled_service": "no", + "local_code": "36MS" + }, + { + "id": "353007", + "ident": "US-6541", + "type": "small_airport", + "name": "Double R Flying Service Airport", + "latitude_deg": "31.19204", + "longitude_deg": "-84.72605", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Colquitt", + "scheduled_service": "no" + }, + { + "id": "353008", + "ident": "US-6542", + "type": "closed", + "name": "Thompson Springs Airport", + "latitude_deg": "38.97498", + "longitude_deg": "-109.70656", + "elevation_ft": "5201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Thompson Springs", + "scheduled_service": "no" + }, + { + "id": "353009", + "ident": "US-6543", + "type": "small_airport", + "name": "Dickey Airport", + "latitude_deg": "44.129719", + "longitude_deg": "-113.89241", + "elevation_ft": "6421", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Mackay", + "scheduled_service": "no" + }, + { + "id": "353011", + "ident": "US-6544", + "type": "closed", + "name": "Harding Airport", + "latitude_deg": "39.32213", + "longitude_deg": "-89.98309", + "elevation_ft": "618", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Carlinville", + "scheduled_service": "no", + "keywords": "Harding Brothers Restricted Landing Area" + }, + { + "id": "353012", + "ident": "US-6545", + "type": "small_airport", + "name": "Killam Flying Service Airport", + "latitude_deg": "39.34419", + "longitude_deg": "-89.98608", + "elevation_ft": "607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Hettick", + "scheduled_service": "no" + }, + { + "id": "353013", + "ident": "US-6546", + "type": "closed", + "name": "Bibble Airport", + "latitude_deg": "39.37225", + "longitude_deg": "-90.05918", + "elevation_ft": "185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Ribble", + "scheduled_service": "no" + }, + { + "id": "353014", + "ident": "US-6547", + "type": "heliport", + "name": "Cherokee Medical Center Heliport", + "latitude_deg": "35.08979", + "longitude_deg": "-81.63361", + "elevation_ft": "722", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Gaffney", + "scheduled_service": "no" + }, + { + "id": "353015", + "ident": "US-6548", + "type": "heliport", + "name": "Mary Black Hospital Heliport", + "latitude_deg": "34.9791", + "longitude_deg": "-81.89749", + "elevation_ft": "814", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Spartanburg", + "scheduled_service": "no" + }, + { + "id": "353027", + "ident": "US-6549", + "type": "seaplane_base", + "name": "Michigan Seaplane Base", + "latitude_deg": "42.667991", + "longitude_deg": "-83.456633", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "White Lake", + "scheduled_service": "no", + "local_code": "41D", + "keywords": "Pontiac Lake" + }, + { + "id": "353031", + "ident": "US-6550", + "type": "heliport", + "name": "Njoy Spirits Distillery Heliport", + "latitude_deg": "28.57754", + "longitude_deg": "-82.6007", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Spring Hill", + "scheduled_service": "no", + "local_code": "37FD" + }, + { + "id": "353041", + "ident": "US-6551", + "type": "small_airport", + "name": "Circle W Ranch Airport", + "latitude_deg": "32.686356", + "longitude_deg": "-97.839742", + "elevation_ft": "978", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no", + "local_code": "77TX" + }, + { + "id": "353049", + "ident": "US-6552", + "type": "heliport", + "name": "Ascension Genesys Hospital Heliport", + "latitude_deg": "42.891333", + "longitude_deg": "-83.641883", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Grand Blanc", + "scheduled_service": "no", + "local_code": "8MI1" + }, + { + "id": "353055", + "ident": "US-6553", + "type": "heliport", + "name": "Ascension Sacred Heart Navarre Heliport", + "latitude_deg": "30.403442", + "longitude_deg": "-86.916753", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Navarre", + "scheduled_service": "no", + "local_code": "FL23" + }, + { + "id": "353063", + "ident": "US-6554", + "type": "small_airport", + "name": "Dune Bird Airport", + "latitude_deg": "45.059096", + "longitude_deg": "-85.695325", + "elevation_ft": "678", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Leland", + "scheduled_service": "no", + "local_code": "MI56" + }, + { + "id": "353067", + "ident": "US-6555", + "type": "small_airport", + "name": "Hiawatha Sportsmans Club Airport", + "latitude_deg": "46.127744", + "longitude_deg": "-85.46724", + "elevation_ft": "673", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Naubinway", + "scheduled_service": "no", + "local_code": "MI69" + }, + { + "id": "353068", + "ident": "US-6556", + "type": "small_airport", + "name": "Eliasville Airport", + "latitude_deg": "32.94967", + "longitude_deg": "-98.74961", + "elevation_ft": "1156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Breckenridge", + "scheduled_service": "no" + }, + { + "id": "353069", + "ident": "US-6557", + "type": "heliport", + "name": "Thirst Hill Heliport", + "latitude_deg": "32.8833", + "longitude_deg": "-118.45121", + "elevation_ft": "1936", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "San Clemente Island", + "scheduled_service": "no" + }, + { + "id": "353072", + "ident": "US-6558", + "type": "closed", + "name": "Nash Airport", + "latitude_deg": "34.01604", + "longitude_deg": "-95.49269", + "elevation_ft": "521", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hugo", + "scheduled_service": "no" + }, + { + "id": "353073", + "ident": "US-6559", + "type": "heliport", + "name": "Choctaw Memorial Hospital Heliport", + "latitude_deg": "34.01186", + "longitude_deg": "-95.49595", + "elevation_ft": "518", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hugo", + "scheduled_service": "no" + }, + { + "id": "353074", + "ident": "US-6560", + "type": "small_airport", + "name": "Las Vegas East Airport", + "latitude_deg": "35.59286", + "longitude_deg": "-105.19024", + "elevation_ft": "6599", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Las Vegas", + "scheduled_service": "no" + }, + { + "id": "353075", + "ident": "US-6561", + "type": "closed", + "name": "Springer Airfield", + "latitude_deg": "36.37198", + "longitude_deg": "-104.58946", + "elevation_ft": "5933", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Springer", + "scheduled_service": "no" + }, + { + "id": "353077", + "ident": "US-6562", + "type": "closed", + "name": "Arnold Ranch Airport", + "latitude_deg": "30.20338", + "longitude_deg": "-103.36152", + "elevation_ft": "4188", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marathon", + "scheduled_service": "no", + "keywords": "Dugout Mountain" + }, + { + "id": "353078", + "ident": "US-6563", + "type": "closed", + "name": "Johnson Airfield", + "latitude_deg": "32.76402", + "longitude_deg": "-101.94478", + "elevation_ft": "3003", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lamesa", + "scheduled_service": "no" + }, + { + "id": "353079", + "ident": "US-6564", + "type": "closed", + "name": "Sekiu River Airport", + "latitude_deg": "48.27542", + "longitude_deg": "-124.39429", + "elevation_ft": "434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Sekiu", + "scheduled_service": "no" + }, + { + "id": "353080", + "ident": "US-6565", + "type": "closed", + "name": "Montesano Airport", + "latitude_deg": "46.97811", + "longitude_deg": "-123.65946", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Montesano", + "scheduled_service": "no" + }, + { + "id": "353081", + "ident": "US-6566", + "type": "closed", + "name": "Ocean Park Airport", + "latitude_deg": "46.45743", + "longitude_deg": "-124.0515", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ocean Park", + "scheduled_service": "no" + }, + { + "id": "353082", + "ident": "US-6567", + "type": "small_airport", + "name": "Ship Ashore Airport", + "latitude_deg": "41.93628", + "longitude_deg": "-124.18942", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Smith River", + "scheduled_service": "no" + }, + { + "id": "353083", + "ident": "US-6568", + "type": "closed", + "name": "Corzatt Airport", + "latitude_deg": "40.81071", + "longitude_deg": "-90.87152", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Biggsville", + "scheduled_service": "no" + }, + { + "id": "353084", + "ident": "US-6569", + "type": "small_airport", + "name": "Gibson Restricted Landing Area", + "latitude_deg": "41.00496", + "longitude_deg": "-90.70824", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Little York", + "scheduled_service": "no" + }, + { + "id": "353085", + "ident": "US-6570", + "type": "small_airport", + "name": "Bordelonville Airport", + "latitude_deg": "31.09824", + "longitude_deg": "-91.91425", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Bordelonville", + "scheduled_service": "no" + }, + { + "id": "353086", + "ident": "US-6571", + "type": "small_airport", + "name": "Wilkes Flying Service Airport", + "latitude_deg": "30.99365", + "longitude_deg": "-91.90176", + "elevation_ft": "46", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Simmesport", + "scheduled_service": "no" + }, + { + "id": "353087", + "ident": "US-6572", + "type": "small_airport", + "name": "Arrowhead Airpark", + "latitude_deg": "38.762444", + "longitude_deg": "-94.575035", + "elevation_ft": "1107", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Belton", + "scheduled_service": "no", + "local_code": "MU46" + }, + { + "id": "353089", + "ident": "US-6573", + "type": "small_airport", + "name": "Warped Wing Airport", + "latitude_deg": "40.159569", + "longitude_deg": "-82.73766", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Johnstown", + "scheduled_service": "no", + "local_code": "OH56" + }, + { + "id": "353107", + "ident": "US-6574", + "type": "small_airport", + "name": "Latanier Airport", + "latitude_deg": "31.14475", + "longitude_deg": "-92.35408", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lecompte", + "scheduled_service": "no" + }, + { + "id": "353108", + "ident": "US-6575", + "type": "closed", + "name": "Johnson Airport", + "latitude_deg": "40.221912", + "longitude_deg": "-90.041987", + "elevation_ft": "485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Havana", + "scheduled_service": "no" + }, + { + "id": "353109", + "ident": "US-6576", + "type": "small_airport", + "name": "Worsham Farms Flying Service Airport", + "latitude_deg": "31.12673", + "longitude_deg": "-84.41362", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Camilla", + "scheduled_service": "no" + }, + { + "id": "353110", + "ident": "US-6577", + "type": "closed", + "name": "Post Oak Airport", + "latitude_deg": "31.14528", + "longitude_deg": "-84.36661", + "elevation_ft": "151", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Camilla", + "scheduled_service": "no" + }, + { + "id": "353111", + "ident": "US-6578", + "type": "closed", + "name": "Kettenpom Airport", + "latitude_deg": "40.16097", + "longitude_deg": "-123.46385", + "elevation_ft": "3408", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Zenia", + "scheduled_service": "no" + }, + { + "id": "353112", + "ident": "US-6579", + "type": "heliport", + "name": "Fort Rock Heliport", + "latitude_deg": "43.35581", + "longitude_deg": "-121.05641", + "elevation_ft": "4327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Fort Rock", + "scheduled_service": "no" + }, + { + "id": "353113", + "ident": "US-6580", + "type": "small_airport", + "name": "Haven Airport", + "latitude_deg": "45.48811", + "longitude_deg": "-94.12244", + "elevation_ft": "997", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Saint Cloud", + "scheduled_service": "no" + }, + { + "id": "353114", + "ident": "US-6581", + "type": "heliport", + "name": "Jackson Medical Center Heliport", + "latitude_deg": "31.53156", + "longitude_deg": "-87.8956", + "elevation_ft": "268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Jackson", + "scheduled_service": "no" + }, + { + "id": "353115", + "ident": "US-6582", + "type": "heliport", + "name": "JEJ Helipad", + "latitude_deg": "30.318636", + "longitude_deg": "-97.790331", + "elevation_ft": "662", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "local_code": "TX77" + }, + { + "id": "353117", + "ident": "US-6583", + "type": "small_airport", + "name": "Innis Airport", + "latitude_deg": "30.89011", + "longitude_deg": "-91.68118", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Innis", + "scheduled_service": "no" + }, + { + "id": "353118", + "ident": "US-6584", + "type": "heliport", + "name": "Jasper Memorial Hospital Heliport", + "latitude_deg": "33.31404", + "longitude_deg": "-83.68715", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Monticello", + "scheduled_service": "no" + }, + { + "id": "353120", + "ident": "US-6585", + "type": "closed", + "name": "Pearson Road Airport", + "latitude_deg": "32.96903", + "longitude_deg": "-104.46995", + "elevation_ft": "3501", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Lake Arthur", + "scheduled_service": "no" + }, + { + "id": "353121", + "ident": "US-6586", + "type": "small_airport", + "name": "Lake Tolliver Airport", + "latitude_deg": "33.10297", + "longitude_deg": "-104.30257", + "elevation_ft": "3392", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Hagerman", + "scheduled_service": "no" + }, + { + "id": "353122", + "ident": "US-6587", + "type": "closed", + "name": "Roswell Auxiliary Army Airfield Number 3", + "latitude_deg": "33.13088", + "longitude_deg": "-104.54343", + "elevation_ft": "3729", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Hagerman", + "scheduled_service": "no" + }, + { + "id": "353123", + "ident": "US-6588", + "type": "closed", + "name": "Roswell Auxiliary Army Airfield Number 2", + "latitude_deg": "33.17549", + "longitude_deg": "-104.46648", + "elevation_ft": "3597", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Dexter", + "scheduled_service": "no" + }, + { + "id": "353124", + "ident": "US-6589", + "type": "closed", + "name": "Roswell Auxiliary Army Airfield Number 1", + "latitude_deg": "33.23985", + "longitude_deg": "-104.63024", + "elevation_ft": "3837", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Roswell", + "scheduled_service": "no" + }, + { + "id": "353125", + "ident": "US-6590", + "type": "small_airport", + "name": "Lee Aviation Airport", + "latitude_deg": "33.26703", + "longitude_deg": "-104.38942", + "elevation_ft": "3502", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Dexter", + "scheduled_service": "no" + }, + { + "id": "353126", + "ident": "US-6591", + "type": "small_airport", + "name": "Cornucopia Ranch Airport", + "latitude_deg": "32.48138", + "longitude_deg": "-105.33806", + "elevation_ft": "5327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Piñon", + "scheduled_service": "no" + }, + { + "id": "353127", + "ident": "US-6592", + "type": "heliport", + "name": "Gerald Champion Regional Medical Center Heliport", + "latitude_deg": "32.9242", + "longitude_deg": "-105.93557", + "elevation_ft": "4488", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Alamogordo", + "scheduled_service": "no" + }, + { + "id": "353130", + "ident": "US-6593", + "type": "small_airport", + "name": "Vaughan Airport", + "latitude_deg": "31.032149", + "longitude_deg": "-92.341952", + "elevation_ft": "67", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cheneyville", + "scheduled_service": "no" + }, + { + "id": "353131", + "ident": "US-6594", + "type": "small_airport", + "name": "Sand Burr Airport", + "latitude_deg": "33.84646", + "longitude_deg": "-81.381307", + "elevation_ft": "499", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Gilbert", + "scheduled_service": "no", + "local_code": "SC84" + }, + { + "id": "353134", + "ident": "US-6595", + "type": "closed", + "name": "Bayou Robert Airport", + "latitude_deg": "31.17065", + "longitude_deg": "-92.42922", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lecompte", + "scheduled_service": "no" + }, + { + "id": "353135", + "ident": "US-6596", + "type": "closed", + "name": "Gordin Airport", + "latitude_deg": "39.832837", + "longitude_deg": "-83.567144", + "elevation_ft": "141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "South Charleston", + "scheduled_service": "no" + }, + { + "id": "353137", + "ident": "US-6597", + "type": "small_airport", + "name": "Yellow Bayou Airport", + "latitude_deg": "30.95981", + "longitude_deg": "-91.84643", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Simmesport", + "scheduled_service": "no", + "keywords": "Paul Juneau" + }, + { + "id": "353138", + "ident": "US-6598", + "type": "small_airport", + "name": "Labbee Field", + "latitude_deg": "46.3793", + "longitude_deg": "-120.56011", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "White Swan", + "scheduled_service": "no" + }, + { + "id": "353150", + "ident": "US-6599", + "type": "small_airport", + "name": "Equinox Landing Field", + "latitude_deg": "43.16275", + "longitude_deg": "-73.04516", + "elevation_ft": "752", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Manchester Center", + "scheduled_service": "no" + }, + { + "id": "353151", + "ident": "US-6600", + "type": "small_airport", + "name": "Panhandle Milling Airport", + "latitude_deg": "34.98217", + "longitude_deg": "-102.2031", + "elevation_ft": "3803", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hereford", + "scheduled_service": "no" + }, + { + "id": "353152", + "ident": "US-6601", + "type": "closed", + "name": "County Road 16 Airport", + "latitude_deg": "34.96953", + "longitude_deg": "-102.26473", + "elevation_ft": "3827", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hereford", + "scheduled_service": "no" + }, + { + "id": "353153", + "ident": "US-6602", + "type": "closed", + "name": "Palo Duro Airport", + "latitude_deg": "35.12051", + "longitude_deg": "-102.19028", + "elevation_ft": "3853", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wildorado", + "scheduled_service": "no" + }, + { + "id": "353154", + "ident": "US-6603", + "type": "small_airport", + "name": "Sand Point Airport", + "latitude_deg": "35.06337", + "longitude_deg": "-102.95352", + "elevation_ft": "4343", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hereford", + "scheduled_service": "no" + }, + { + "id": "353155", + "ident": "US-6604", + "type": "closed", + "name": "Burgess Airport", + "latitude_deg": "42.49499", + "longitude_deg": "-84.70302", + "elevation_ft": "902", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Eaton Rapids", + "scheduled_service": "no" + }, + { + "id": "353156", + "ident": "US-6605", + "type": "closed", + "name": "Maple Air Manor Airfield", + "latitude_deg": "42.46459", + "longitude_deg": "-84.70871", + "elevation_ft": "943", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Eaton Rapids", + "scheduled_service": "no" + }, + { + "id": "353157", + "ident": "US-6606", + "type": "closed", + "name": "Williams Airport", + "latitude_deg": "42.4328", + "longitude_deg": "-84.59462", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Onondaga", + "scheduled_service": "no" + }, + { + "id": "353158", + "ident": "US-6607", + "type": "small_airport", + "name": "Gorilla Airport", + "latitude_deg": "42.42583", + "longitude_deg": "-84.57844", + "elevation_ft": "994", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Onondaga", + "scheduled_service": "no" + }, + { + "id": "353159", + "ident": "US-6608", + "type": "small_airport", + "name": "Haeuser Airport", + "latitude_deg": "44.23373", + "longitude_deg": "-91.85131", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Buffalo City", + "scheduled_service": "no" + }, + { + "id": "353160", + "ident": "US-6609", + "type": "heliport", + "name": "St Croix Regional Medical Center Heliport", + "latitude_deg": "45.40903", + "longitude_deg": "-92.64257", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Saint Croix Falls", + "scheduled_service": "no" + }, + { + "id": "353161", + "ident": "US-6610", + "type": "closed", + "name": "Sickles Airport", + "latitude_deg": "35.37485", + "longitude_deg": "-98.46443", + "elevation_ft": "1641", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Lookeba", + "scheduled_service": "no" + }, + { + "id": "353162", + "ident": "US-6611", + "type": "closed", + "name": "Hinton-Red Rock Airport", + "latitude_deg": "35.45097", + "longitude_deg": "-98.35684", + "elevation_ft": "1648", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Hinton", + "scheduled_service": "no" + }, + { + "id": "353163", + "ident": "US-6612", + "type": "heliport", + "name": "Physicians Hospital in Anadarko Heliport", + "latitude_deg": "35.07034", + "longitude_deg": "-98.22756", + "elevation_ft": "1181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Anadarko", + "scheduled_service": "no" + }, + { + "id": "353166", + "ident": "US-6613", + "type": "heliport", + "name": "Wildrose Ranger Station Heliport", + "latitude_deg": "36.2653", + "longitude_deg": "-117.18292", + "elevation_ft": "4244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Death Valley", + "scheduled_service": "no" + }, + { + "id": "353167", + "ident": "US-6614", + "type": "small_airport", + "name": "Amargosa Valley Airport", + "latitude_deg": "36.48892", + "longitude_deg": "-116.41944", + "elevation_ft": "2283", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Amargosa Valley", + "scheduled_service": "no" + }, + { + "id": "353168", + "ident": "US-6615", + "type": "small_airport", + "name": "Belcher Airport", + "latitude_deg": "38.76993", + "longitude_deg": "-122.5559", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Middletown", + "scheduled_service": "no" + }, + { + "id": "353169", + "ident": "US-6616", + "type": "closed", + "name": "Cherokee Airport", + "latitude_deg": "35.10007", + "longitude_deg": "-81.65089", + "elevation_ft": "797", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Gaffney", + "scheduled_service": "no" + }, + { + "id": "353170", + "ident": "US-6617", + "type": "small_airport", + "name": "Riske Airport", + "latitude_deg": "42.36668", + "longitude_deg": "-84.68774", + "elevation_ft": "961", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Springport", + "scheduled_service": "no" + }, + { + "id": "353171", + "ident": "US-6618", + "type": "closed", + "name": "King Airport", + "latitude_deg": "35.30233", + "longitude_deg": "-98.48887", + "elevation_ft": "1558", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Eakly", + "scheduled_service": "no" + }, + { + "id": "353172", + "ident": "US-6619", + "type": "small_airport", + "name": "Smoke Creek Airport", + "latitude_deg": "40.58461", + "longitude_deg": "-119.9678", + "elevation_ft": "4355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Gerlach", + "scheduled_service": "no" + }, + { + "id": "353175", + "ident": "US-6620", + "type": "small_airport", + "name": "Schrag Airport", + "latitude_deg": "47.12579", + "longitude_deg": "-118.8612", + "elevation_ft": "1529", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ritzville", + "scheduled_service": "no" + }, + { + "id": "353176", + "ident": "US-6621", + "type": "small_airport", + "name": "Franz Ranch Airport", + "latitude_deg": "47.04313", + "longitude_deg": "-118.87065", + "elevation_ft": "1462", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ritzville", + "scheduled_service": "no" + }, + { + "id": "353177", + "ident": "US-6622", + "type": "heliport", + "name": "Lincoln Hospital Heliport", + "latitude_deg": "47.65732", + "longitude_deg": "-118.1464", + "elevation_ft": "2433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Davenport", + "scheduled_service": "no" + }, + { + "id": "353178", + "ident": "US-6623", + "type": "closed", + "name": "Meadow Valley Airport", + "latitude_deg": "37.69074", + "longitude_deg": "-114.45015", + "elevation_ft": "4596", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Caliente", + "scheduled_service": "no" + }, + { + "id": "353179", + "ident": "US-6624", + "type": "closed", + "name": "Cody North Airport", + "latitude_deg": "44.57048", + "longitude_deg": "-109.09013", + "elevation_ft": "5268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Cody", + "scheduled_service": "no" + }, + { + "id": "353180", + "ident": "US-6625", + "type": "closed", + "name": "Old Sturgis Airport", + "latitude_deg": "44.419844", + "longitude_deg": "-103.394173", + "elevation_ft": "3289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Sturgis", + "scheduled_service": "no" + }, + { + "id": "353181", + "ident": "US-6626", + "type": "closed", + "name": "Bear Butte Airport", + "latitude_deg": "44.48964", + "longitude_deg": "-103.30259", + "elevation_ft": "2890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Sturgis", + "scheduled_service": "no" + }, + { + "id": "353182", + "ident": "US-6627", + "type": "small_airport", + "name": "Coen Aerial Spraying Airport", + "latitude_deg": "38.20856", + "longitude_deg": "-102.78847", + "elevation_ft": "3921", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Wiley", + "scheduled_service": "no" + }, + { + "id": "353215", + "ident": "US-6628", + "type": "closed", + "name": "Rocky Ford South Airport", + "latitude_deg": "38.02458", + "longitude_deg": "-103.74354", + "elevation_ft": "4364", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Rocky Ford", + "scheduled_service": "no" + }, + { + "id": "353218", + "ident": "US-6629", + "type": "small_airport", + "name": "Burns Junction Airport", + "latitude_deg": "42.78314", + "longitude_deg": "-117.84925", + "elevation_ft": "3944", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Jordan Valley", + "scheduled_service": "no" + }, + { + "id": "353220", + "ident": "US-6630", + "type": "closed", + "name": "Adams Airport", + "latitude_deg": "45.14193", + "longitude_deg": "-122.74296", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Woodburn", + "scheduled_service": "no" + }, + { + "id": "353221", + "ident": "US-6631", + "type": "closed", + "name": "Cedar Creek Airport", + "latitude_deg": "45.14783", + "longitude_deg": "-122.70372", + "elevation_ft": "204", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Woodburn", + "scheduled_service": "no" + }, + { + "id": "353252", + "ident": "US-6632", + "type": "closed", + "name": "Delany Airport", + "latitude_deg": "32.95017", + "longitude_deg": "-90.95428", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Rolling Fork", + "scheduled_service": "no" + }, + { + "id": "353266", + "ident": "US-6633", + "type": "small_airport", + "name": "Conlen Airport", + "latitude_deg": "36.23841", + "longitude_deg": "-102.2371", + "elevation_ft": "3817", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dalhart", + "scheduled_service": "no" + }, + { + "id": "353267", + "ident": "US-6634", + "type": "small_airport", + "name": "Larsen Farms Airport", + "latitude_deg": "36.00295", + "longitude_deg": "-102.87499", + "elevation_ft": "4245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dalhart", + "scheduled_service": "no" + }, + { + "id": "353268", + "ident": "US-6635", + "type": "small_airport", + "name": "Ute Dam Airport", + "latitude_deg": "35.3562", + "longitude_deg": "-103.4374", + "elevation_ft": "3812", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Logan", + "scheduled_service": "no" + }, + { + "id": "353269", + "ident": "US-6636", + "type": "closed", + "name": "Purgatoire Canyon Airport", + "latitude_deg": "37.3881", + "longitude_deg": "-103.88273", + "elevation_ft": "5121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Model", + "scheduled_service": "no" + }, + { + "id": "353270", + "ident": "US-6637", + "type": "closed", + "name": "Houghton East Airport", + "latitude_deg": "37.58163", + "longitude_deg": "-104.03483", + "elevation_ft": "5250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Model", + "scheduled_service": "no" + }, + { + "id": "353271", + "ident": "US-6638", + "type": "closed", + "name": "Houghton Airport", + "latitude_deg": "37.59383", + "longitude_deg": "-104.03925", + "elevation_ft": "5265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Model", + "scheduled_service": "no" + }, + { + "id": "353272", + "ident": "US-6639", + "type": "closed", + "name": "Houghton West Airport", + "latitude_deg": "37.58422", + "longitude_deg": "-104.04612", + "elevation_ft": "5180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Model", + "scheduled_service": "no" + }, + { + "id": "353274", + "ident": "US-6640", + "type": "small_airport", + "name": "Kanorado West Airport", + "latitude_deg": "39.35012", + "longitude_deg": "-102.06424", + "elevation_ft": "3952", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Burlington", + "scheduled_service": "no" + }, + { + "id": "353277", + "ident": "US-6641", + "type": "closed", + "name": "Burlington Municipal Airport", + "latitude_deg": "39.31146", + "longitude_deg": "-102.28416", + "elevation_ft": "4178", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Burlington", + "scheduled_service": "no", + "keywords": "3V1, K3V1" + }, + { + "id": "353278", + "ident": "US-6642", + "type": "small_airport", + "name": "Rowdys Airport", + "latitude_deg": "38.81742", + "longitude_deg": "-102.33042", + "elevation_ft": "4244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Cheyenne Wells", + "scheduled_service": "no" + }, + { + "id": "353279", + "ident": "US-6643", + "type": "small_airport", + "name": "Dead Stick Ranch Airport", + "latitude_deg": "39.34066", + "longitude_deg": "-104.52024", + "elevation_ft": "6663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Kiowa", + "scheduled_service": "no" + }, + { + "id": "353286", + "ident": "US-6644", + "type": "closed", + "name": "Ordway Airport", + "latitude_deg": "38.21003", + "longitude_deg": "-103.76123", + "elevation_ft": "4299", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Ordway", + "scheduled_service": "no" + }, + { + "id": "353287", + "ident": "US-6645", + "type": "closed", + "name": "Orahood Airstrip", + "latitude_deg": "38.20168", + "longitude_deg": "-103.76553", + "elevation_ft": "4290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Ordway", + "scheduled_service": "no" + }, + { + "id": "353288", + "ident": "US-6646", + "type": "closed", + "name": "Alexander Dawson School Airport", + "latitude_deg": "40.059", + "longitude_deg": "-105.107", + "elevation_ft": "5032", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Lafayette", + "scheduled_service": "no" + }, + { + "id": "353289", + "ident": "US-6647", + "type": "closed", + "name": "Rocky Ford Auxiliary Army Airfield Number 1", + "latitude_deg": "38.1339", + "longitude_deg": "-103.68751", + "elevation_ft": "4346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Rocky Ford", + "scheduled_service": "no" + }, + { + "id": "353290", + "ident": "US-6648", + "type": "closed", + "name": "Las Animas Auxiliary Army Airfield Number 2", + "latitude_deg": "38.14594", + "longitude_deg": "-103.26541", + "elevation_ft": "4121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Las Animas", + "scheduled_service": "no" + }, + { + "id": "353291", + "ident": "US-6649", + "type": "closed", + "name": "Arlington Auxiliary Army Airfield Number 4", + "latitude_deg": "38.33186", + "longitude_deg": "-103.27781", + "elevation_ft": "4327", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Fort Lyon", + "scheduled_service": "no" + }, + { + "id": "353292", + "ident": "US-6650", + "type": "small_airport", + "name": "Leyners Hayfield Airport", + "latitude_deg": "40.04511", + "longitude_deg": "-105.11635", + "elevation_ft": "5056", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Lafayette", + "scheduled_service": "no" + }, + { + "id": "353295", + "ident": "US-6651", + "type": "closed", + "name": "Litchfield Municipal Airport (1947)", + "latitude_deg": "45.1381", + "longitude_deg": "-94.51599", + "elevation_ft": "1115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Litchfield", + "scheduled_service": "no" + }, + { + "id": "353296", + "ident": "US-6652", + "type": "closed", + "name": "Dawson Municipal Airport", + "latitude_deg": "44.9264", + "longitude_deg": "-96.01706", + "elevation_ft": "1060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Dawson", + "scheduled_service": "no", + "keywords": "72D, Dawson Mills" + }, + { + "id": "353297", + "ident": "US-6653", + "type": "closed", + "name": "Boeing-Tulalip Heliport", + "latitude_deg": "48.09607", + "longitude_deg": "-122.18615", + "elevation_ft": "72", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tulalip", + "scheduled_service": "no" + }, + { + "id": "353309", + "ident": "US-6654", + "type": "small_airport", + "name": "Murphy Road Airstrip", + "latitude_deg": "46.84804", + "longitude_deg": "-67.89721", + "elevation_ft": "566", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Fort Fairfield", + "scheduled_service": "no" + }, + { + "id": "353343", + "ident": "US-6655", + "type": "heliport", + "name": "Arizona Lifeline 1 Heliport", + "latitude_deg": "31.86868", + "longitude_deg": "-110.20885", + "elevation_ft": "3678", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Saint David", + "scheduled_service": "no" + }, + { + "id": "353345", + "ident": "US-6656", + "type": "heliport", + "name": "Miller Peak Emergency Helipad", + "latitude_deg": "31.39284", + "longitude_deg": "-110.29301", + "elevation_ft": "9433", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Hereford", + "scheduled_service": "no" + }, + { + "id": "353346", + "ident": "US-6657", + "type": "small_airport", + "name": "Smyer Airport", + "latitude_deg": "32.31455", + "longitude_deg": "-109.85565", + "elevation_ft": "4208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Willcox", + "scheduled_service": "no" + }, + { + "id": "353347", + "ident": "US-6658", + "type": "small_airport", + "name": "Permenter Airport", + "latitude_deg": "32.20981", + "longitude_deg": "-109.95204", + "elevation_ft": "4282", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Willcox", + "scheduled_service": "no" + }, + { + "id": "353357", + "ident": "US-6659", + "type": "heliport", + "name": "Bear Spring Emergency Helipad", + "latitude_deg": "31.40544", + "longitude_deg": "-110.3154", + "elevation_ft": "8726", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Hereford", + "scheduled_service": "no" + }, + { + "id": "353358", + "ident": "US-6660", + "type": "heliport", + "name": "Copper Canyon Emergency Helipad", + "latitude_deg": "31.38172", + "longitude_deg": "-110.29197", + "elevation_ft": "8403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Hereford", + "scheduled_service": "no" + }, + { + "id": "353359", + "ident": "US-6661", + "type": "small_airport", + "name": "Muleshoe Ranch Airport", + "latitude_deg": "32.32575", + "longitude_deg": "-110.22999", + "elevation_ft": "4154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Willcox", + "scheduled_service": "no" + }, + { + "id": "353363", + "ident": "US-6662", + "type": "small_airport", + "name": "Uncle Curtis Airport", + "latitude_deg": "31.88353", + "longitude_deg": "-109.51667", + "elevation_ft": "4761", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Pearce", + "scheduled_service": "no" + }, + { + "id": "353364", + "ident": "US-6663", + "type": "closed", + "name": "Cross Creek Airport", + "latitude_deg": "31.88799", + "longitude_deg": "-109.52749", + "elevation_ft": "4700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Pearce", + "scheduled_service": "no" + }, + { + "id": "353457", + "ident": "US-6664", + "type": "heliport", + "name": "Golden Acorn Plaza Heliport", + "latitude_deg": "32.70376", + "longitude_deg": "-116.35715", + "elevation_ft": "4145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Campo", + "scheduled_service": "no" + }, + { + "id": "353463", + "ident": "US-6665", + "type": "small_airport", + "name": "Countryview Airport", + "latitude_deg": "41.530379", + "longitude_deg": "-85.971086", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Goshen", + "scheduled_service": "no", + "local_code": "IN34" + }, + { + "id": "353464", + "ident": "US-6666", + "type": "heliport", + "name": "Sevier Valley Hospital Heliport", + "latitude_deg": "38.783223", + "longitude_deg": "-112.082847", + "elevation_ft": "5402", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Richfield", + "scheduled_service": "no", + "gps_code": "UT40", + "local_code": "UT40" + }, + { + "id": "353469", + "ident": "US-6667", + "type": "heliport", + "name": "JMHS Hospital Heliport", + "latitude_deg": "44.930871", + "longitude_deg": "-96.065719", + "elevation_ft": "1059", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Dawson", + "scheduled_service": "no", + "gps_code": "72MN", + "local_code": "72MN" + }, + { + "id": "353475", + "ident": "US-6668", + "type": "small_airport", + "name": "Bakko Aviation Airport", + "latitude_deg": "45.47989", + "longitude_deg": "-95.33771", + "elevation_ft": "1322", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Glenwood", + "scheduled_service": "no", + "gps_code": "MN71", + "local_code": "MN71" + }, + { + "id": "353478", + "ident": "US-6669", + "type": "heliport", + "name": "Hartford Industrial Heliport", + "latitude_deg": "48.024469", + "longitude_deg": "-122.057891", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Lake Stevens", + "scheduled_service": "no", + "gps_code": "WA11", + "local_code": "WA11" + }, + { + "id": "353479", + "ident": "US-6670", + "type": "heliport", + "name": "Neptune Spear Heliport", + "latitude_deg": "47.927576", + "longitude_deg": "-122.852286", + "elevation_ft": "648", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Quilcene", + "scheduled_service": "no", + "gps_code": "WA58", + "local_code": "WA58" + }, + { + "id": "353482", + "ident": "US-6671", + "type": "small_airport", + "name": "Star Field", + "latitude_deg": "32.160246", + "longitude_deg": "-98.946905", + "elevation_ft": "1625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rising Star", + "scheduled_service": "no", + "gps_code": "TX88", + "local_code": "TX88" + }, + { + "id": "353486", + "ident": "US-6672", + "type": "small_airport", + "name": "Redtail Ranch Airstrip", + "latitude_deg": "45.064722", + "longitude_deg": "-117.661578", + "elevation_ft": "3400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "scheduled_service": "no", + "gps_code": "OR03", + "local_code": "OR03" + }, + { + "id": "353501", + "ident": "US-6673", + "type": "small_airport", + "name": "Matlock Ranch Airport", + "latitude_deg": "32.38951", + "longitude_deg": "-97.60598", + "elevation_ft": "863", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Godley", + "scheduled_service": "no" + }, + { + "id": "353502", + "ident": "US-6674", + "type": "small_airport", + "name": "Reimondi Ranch Airport", + "latitude_deg": "32.39562", + "longitude_deg": "-97.59654", + "elevation_ft": "915", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Godley", + "scheduled_service": "no" + }, + { + "id": "353503", + "ident": "US-6675", + "type": "heliport", + "name": "US Border Patrol Boulevard Heliport", + "latitude_deg": "32.68334", + "longitude_deg": "-116.29272", + "elevation_ft": "3688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Boulevard", + "scheduled_service": "no" + }, + { + "id": "353504", + "ident": "US-6676", + "type": "closed", + "name": "Chimney Lake Airport", + "latitude_deg": "32.14539", + "longitude_deg": "-97.97791", + "elevation_ft": "1245", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bluff Dale", + "scheduled_service": "no" + }, + { + "id": "353505", + "ident": "US-6677", + "type": "small_airport", + "name": "Western States Ranches Airport", + "latitude_deg": "32.03162", + "longitude_deg": "-98.41945", + "elevation_ft": "1382", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dublin", + "scheduled_service": "no" + }, + { + "id": "353506", + "ident": "US-6678", + "type": "heliport", + "name": "Texas Health Harris Methodist Hospital Stephenville Heliport", + "latitude_deg": "32.22244", + "longitude_deg": "-98.20312", + "elevation_ft": "1278", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Stephenville", + "scheduled_service": "no" + }, + { + "id": "353514", + "ident": "US-6679", + "type": "small_airport", + "name": "Graham Airport", + "latitude_deg": "31.79212", + "longitude_deg": "-98.13309", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hamilton", + "scheduled_service": "no" + }, + { + "id": "353515", + "ident": "US-6680", + "type": "small_airport", + "name": "Hansen Airport", + "latitude_deg": "31.62353", + "longitude_deg": "-98.15035", + "elevation_ft": "1257", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hamilton", + "scheduled_service": "no" + }, + { + "id": "353516", + "ident": "US-6681", + "type": "small_airport", + "name": "Johnston Airport", + "latitude_deg": "31.89036", + "longitude_deg": "-98.1252", + "elevation_ft": "1316", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hico", + "scheduled_service": "no" + }, + { + "id": "353517", + "ident": "US-6682", + "type": "small_airport", + "name": "Jolley Airport", + "latitude_deg": "31.44083", + "longitude_deg": "-98.11833", + "elevation_ft": "1468", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Evant", + "scheduled_service": "no" + }, + { + "id": "353518", + "ident": "US-6683", + "type": "small_airport", + "name": "D Bar K Airport", + "latitude_deg": "31.36532", + "longitude_deg": "-97.61458", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gatesville", + "scheduled_service": "no" + }, + { + "id": "353519", + "ident": "US-6684", + "type": "small_airport", + "name": "Lovejoy Airport", + "latitude_deg": "31.46178", + "longitude_deg": "-97.75589", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gatesville", + "scheduled_service": "no" + }, + { + "id": "353520", + "ident": "US-6685", + "type": "small_airport", + "name": "Tyler Airport", + "latitude_deg": "31.76532", + "longitude_deg": "-97.98163", + "elevation_ft": "1125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hico", + "scheduled_service": "no" + }, + { + "id": "353521", + "ident": "US-6686", + "type": "small_airport", + "name": "Bratton Airport", + "latitude_deg": "31.32024", + "longitude_deg": "-97.89408", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gatesville", + "scheduled_service": "no" + }, + { + "id": "353525", + "ident": "US-6687", + "type": "small_airport", + "name": "Earthquake Valley Glider Landing Zone", + "latitude_deg": "33.05897", + "longitude_deg": "-116.4207", + "elevation_ft": "2560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Julian", + "scheduled_service": "no" + }, + { + "id": "353527", + "ident": "US-6688", + "type": "small_airport", + "name": "Coyote Canyon Airport", + "latitude_deg": "33.32817", + "longitude_deg": "-116.37135", + "elevation_ft": "774", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Borrego Springs", + "scheduled_service": "no" + }, + { + "id": "353528", + "ident": "US-6689", + "type": "small_airport", + "name": "Blair Valley Landing Field", + "latitude_deg": "33.0325", + "longitude_deg": "-116.40269", + "elevation_ft": "2540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Julian", + "scheduled_service": "no" + }, + { + "id": "353530", + "ident": "US-6690", + "type": "small_airport", + "name": "Little Blair Valley Landing Field", + "latitude_deg": "33.02664", + "longitude_deg": "-116.3886", + "elevation_ft": "2730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Julian", + "scheduled_service": "no" + }, + { + "id": "353531", + "ident": "US-6691", + "type": "closed", + "name": "Naval Auxiliary Air Station Salton Sea", + "latitude_deg": "33.19351", + "longitude_deg": "-115.86565", + "elevation_ft": "-59", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Salton City", + "scheduled_service": "no" + }, + { + "id": "353532", + "ident": "US-6692", + "type": "closed", + "name": "Little Dixie Airport", + "latitude_deg": "35.48893", + "longitude_deg": "-117.95616", + "elevation_ft": "3132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Inyokern", + "scheduled_service": "no" + }, + { + "id": "353533", + "ident": "US-6693", + "type": "small_airport", + "name": "South Coles Levee Oilfield Airport", + "latitude_deg": "35.262", + "longitude_deg": "-119.26404", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bakersfield", + "scheduled_service": "no" + }, + { + "id": "353534", + "ident": "US-6694", + "type": "small_airport", + "name": "Oropeza Airport", + "latitude_deg": "33.4381", + "longitude_deg": "-116.88491", + "elevation_ft": "1880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Aguanga", + "scheduled_service": "no" + }, + { + "id": "353535", + "ident": "US-6695", + "type": "heliport", + "name": "Saint Andrews Abbey Heliport", + "latitude_deg": "34.45517", + "longitude_deg": "-117.87341", + "elevation_ft": "3635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Valyermo", + "scheduled_service": "no" + }, + { + "id": "353536", + "ident": "US-6696", + "type": "heliport", + "name": "Hyundai Motor Group California Proving Grounds Heliport", + "latitude_deg": "35.05544", + "longitude_deg": "-118.01914", + "elevation_ft": "2515", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "California City", + "scheduled_service": "no" + }, + { + "id": "353562", + "ident": "US-6697", + "type": "small_airport", + "name": "Hewitson-McGlishaw Ranch Airport", + "latitude_deg": "35.84088", + "longitude_deg": "-119.98173", + "elevation_ft": "436", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Avenal", + "scheduled_service": "no" + }, + { + "id": "353563", + "ident": "US-6698", + "type": "closed", + "name": "Badger Hill Airport", + "latitude_deg": "35.83793", + "longitude_deg": "-119.94584", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Avenal", + "scheduled_service": "no" + }, + { + "id": "353564", + "ident": "US-6699", + "type": "small_airport", + "name": "Stamoules Airport", + "latitude_deg": "36.72905", + "longitude_deg": "-120.47083", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mendota", + "scheduled_service": "no" + }, + { + "id": "353565", + "ident": "US-6700", + "type": "closed", + "name": "Whitesbridge Airport", + "latitude_deg": "36.73822", + "longitude_deg": "-120.42358", + "elevation_ft": "203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mendota", + "scheduled_service": "no" + }, + { + "id": "353566", + "ident": "US-6701", + "type": "small_airport", + "name": "Goldenrod Airport", + "latitude_deg": "36.81334", + "longitude_deg": "-120.04077", + "elevation_ft": "246", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Kerman", + "scheduled_service": "no" + }, + { + "id": "353570", + "ident": "US-6702", + "type": "closed", + "name": "Airaya Airport", + "latitude_deg": "37.90045", + "longitude_deg": "-121.65536", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Brentwood", + "scheduled_service": "no" + }, + { + "id": "353571", + "ident": "US-6703", + "type": "closed", + "name": "McCauley Estate Airport", + "latitude_deg": "37.95118", + "longitude_deg": "-121.65034", + "elevation_ft": "28", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Brentwood", + "scheduled_service": "no" + }, + { + "id": "353572", + "ident": "US-6704", + "type": "closed", + "name": "Black Airport", + "latitude_deg": "35.98628", + "longitude_deg": "-120.10897", + "elevation_ft": "755", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Avenal", + "scheduled_service": "no" + }, + { + "id": "353573", + "ident": "US-6705", + "type": "small_airport", + "name": "Ranchita 2608 Airport", + "latitude_deg": "33.20531", + "longitude_deg": "-116.51319", + "elevation_ft": "4095", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ranchita", + "scheduled_service": "no", + "local_code": "26CL", + "keywords": "Stevens" + }, + { + "id": "353574", + "ident": "US-6706", + "type": "small_airport", + "name": "Mariposa Airport", + "latitude_deg": "33.13499", + "longitude_deg": "-116.13708", + "elevation_ft": "208", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Borrego Springs", + "scheduled_service": "no" + }, + { + "id": "353575", + "ident": "US-6707", + "type": "small_airport", + "name": "Broadway Airport", + "latitude_deg": "33.10486", + "longitude_deg": "-116.04788", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Borrego Springs", + "scheduled_service": "no", + "keywords": "Baileys Well" + }, + { + "id": "353577", + "ident": "US-6708", + "type": "closed", + "name": "Mount Vernon Airport", + "latitude_deg": "42.93678", + "longitude_deg": "-89.68838", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Mount Horeb", + "scheduled_service": "no" + }, + { + "id": "353579", + "ident": "US-6709", + "type": "closed", + "name": "Aero Sports Ultralightport", + "latitude_deg": "32.61034", + "longitude_deg": "-92.06481", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Monroe", + "scheduled_service": "no" + }, + { + "id": "353581", + "ident": "US-6710", + "type": "closed", + "name": "Hudson Airport", + "latitude_deg": "32.66589", + "longitude_deg": "-97.66445", + "elevation_ft": "1014", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Aledo", + "scheduled_service": "no" + }, + { + "id": "353583", + "ident": "US-6711", + "type": "closed", + "name": "Englebert Farms Airport", + "latitude_deg": "44.2302", + "longitude_deg": "-87.5966", + "elevation_ft": "653", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Two Rivers", + "scheduled_service": "no" + }, + { + "id": "353585", + "ident": "US-6712", + "type": "closed", + "name": "Bells Airport", + "latitude_deg": "43.81154", + "longitude_deg": "-87.75269", + "elevation_ft": "656", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Sheboygan", + "scheduled_service": "no" + }, + { + "id": "353592", + "ident": "US-6713", + "type": "closed", + "name": "Becks Farm Airport", + "latitude_deg": "38.35746", + "longitude_deg": "-89.36804", + "elevation_ft": "517", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Nashville", + "scheduled_service": "no" + }, + { + "id": "353593", + "ident": "US-6714", + "type": "small_airport", + "name": "Lone Eagle Landing Airport", + "latitude_deg": "37.77641", + "longitude_deg": "-90.2267", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Sainte Genevieve", + "scheduled_service": "no" + }, + { + "id": "353594", + "ident": "US-6715", + "type": "closed", + "name": "Cambridge Airport", + "latitude_deg": "42.98429", + "longitude_deg": "-88.99213", + "elevation_ft": "877", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Cambridge", + "scheduled_service": "no" + }, + { + "id": "353605", + "ident": "US-6716", + "type": "small_airport", + "name": "Maynard Airport", + "latitude_deg": "34.5386", + "longitude_deg": "-91.94517", + "elevation_ft": "228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "England", + "scheduled_service": "no" + }, + { + "id": "353606", + "ident": "US-6717", + "type": "closed", + "name": "Carl Lee Road Airport", + "latitude_deg": "34.52936", + "longitude_deg": "-91.94956", + "elevation_ft": "227", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "England", + "scheduled_service": "no" + }, + { + "id": "353607", + "ident": "US-6718", + "type": "small_airport", + "name": "Tar Bottom Airport", + "latitude_deg": "34.504457", + "longitude_deg": "-91.939403", + "elevation_ft": "217", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "England", + "scheduled_service": "no" + }, + { + "id": "353608", + "ident": "US-6719", + "type": "closed", + "name": "Coy Airport", + "latitude_deg": "34.49941", + "longitude_deg": "-91.8708", + "elevation_ft": "216", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "England", + "scheduled_service": "no" + }, + { + "id": "353609", + "ident": "US-6720", + "type": "small_airport", + "name": "County Line Flying Services Airport", + "latitude_deg": "34.5467", + "longitude_deg": "-91.88838", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "England", + "scheduled_service": "no" + }, + { + "id": "353610", + "ident": "US-6721", + "type": "small_airport", + "name": "Henderson Airport", + "latitude_deg": "34.5377", + "longitude_deg": "-91.8582", + "elevation_ft": "213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "England", + "scheduled_service": "no" + }, + { + "id": "353611", + "ident": "US-6722", + "type": "closed", + "name": "Coy East Airport", + "latitude_deg": "34.54551", + "longitude_deg": "-91.86043", + "elevation_ft": "212", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "England", + "scheduled_service": "no" + }, + { + "id": "353612", + "ident": "US-6723", + "type": "closed", + "name": "Cross Bayou Airport", + "latitude_deg": "34.56457", + "longitude_deg": "-91.88873", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "England", + "scheduled_service": "no" + }, + { + "id": "353613", + "ident": "US-6724", + "type": "closed", + "name": "Webb Flying Service Airport", + "latitude_deg": "34.54282", + "longitude_deg": "-91.80854", + "elevation_ft": "206", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "England", + "scheduled_service": "no" + }, + { + "id": "353615", + "ident": "US-6725", + "type": "small_airport", + "name": "Cherry Canyon Airport", + "latitude_deg": "38.1198", + "longitude_deg": "-115.52873", + "elevation_ft": "5792", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Hiko", + "scheduled_service": "no" + }, + { + "id": "353616", + "ident": "US-6726", + "type": "closed", + "name": "Civa Airport", + "latitude_deg": "38.03033", + "longitude_deg": "-115.43767", + "elevation_ft": "5164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Adaven", + "scheduled_service": "no" + }, + { + "id": "353617", + "ident": "US-6727", + "type": "small_airport", + "name": "Forest Moon Ranch Airport", + "latitude_deg": "38.374293", + "longitude_deg": "-115.170057", + "elevation_ft": "5233", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Hiko", + "scheduled_service": "no", + "keywords": "Hot Creek Butte" + }, + { + "id": "353618", + "ident": "US-6728", + "type": "closed", + "name": "Butterfield Springs Airport", + "latitude_deg": "38.444875", + "longitude_deg": "-115.012313", + "elevation_ft": "5310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Lund", + "scheduled_service": "no" + }, + { + "id": "353619", + "ident": "US-6729", + "type": "closed", + "name": "Holt Camp Creek Airport", + "latitude_deg": "39.13398", + "longitude_deg": "-115.04551", + "elevation_ft": "6434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Ely", + "scheduled_service": "no" + }, + { + "id": "353620", + "ident": "US-6730", + "type": "small_airport", + "name": "Moorman Ranch Airport", + "latitude_deg": "39.3668", + "longitude_deg": "-115.3139", + "elevation_ft": "6481", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Ely", + "scheduled_service": "no" + }, + { + "id": "353621", + "ident": "US-6731", + "type": "closed", + "name": "Moorman Ranch East Airport", + "latitude_deg": "39.35243", + "longitude_deg": "-115.3017", + "elevation_ft": "6500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Ely", + "scheduled_service": "no" + }, + { + "id": "353678", + "ident": "US-6732", + "type": "small_airport", + "name": "Sabinal East Airport", + "latitude_deg": "29.30368", + "longitude_deg": "-99.44243", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sabinal", + "scheduled_service": "no" + }, + { + "id": "353679", + "ident": "US-6733", + "type": "small_airport", + "name": "McQuown Ranch Ultralightport", + "latitude_deg": "29.47239", + "longitude_deg": "-99.70361", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sabinal", + "scheduled_service": "no", + "keywords": "Howard Ranch" + }, + { + "id": "353680", + "ident": "US-6734", + "type": "small_airport", + "name": "Nunley Ranch Airport", + "latitude_deg": "29.17113", + "longitude_deg": "-99.49331", + "elevation_ft": "807", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sabinal", + "scheduled_service": "no" + }, + { + "id": "353682", + "ident": "US-6735", + "type": "small_airport", + "name": "Dripping Springs Hollow Airport", + "latitude_deg": "29.51036", + "longitude_deg": "-99.65546", + "elevation_ft": "1435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sabinal", + "scheduled_service": "no" + }, + { + "id": "353684", + "ident": "US-6736", + "type": "small_airport", + "name": "Blanco Ranch Airport", + "latitude_deg": "29.52685", + "longitude_deg": "-99.61585", + "elevation_ft": "1505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sabinal", + "scheduled_service": "no" + }, + { + "id": "353685", + "ident": "US-6737", + "type": "small_airport", + "name": "Griffith Ranch Airport", + "latitude_deg": "29.58777", + "longitude_deg": "-99.7268", + "elevation_ft": "1415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Concan", + "scheduled_service": "no" + }, + { + "id": "353686", + "ident": "US-6738", + "type": "small_airport", + "name": "Buffalo Grass Airport", + "latitude_deg": "32.53953", + "longitude_deg": "-103.80583", + "elevation_ft": "3509", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Hobbs", + "scheduled_service": "no" + }, + { + "id": "353687", + "ident": "US-6739", + "type": "closed", + "name": "Home Ranch Airport", + "latitude_deg": "39.40941", + "longitude_deg": "-114.50784", + "elevation_ft": "5952", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Ely", + "scheduled_service": "no" + }, + { + "id": "353688", + "ident": "US-6740", + "type": "closed", + "name": "Muncy Creek Ranch Airport", + "latitude_deg": "39.60178", + "longitude_deg": "-114.53586", + "elevation_ft": "6083", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Ely", + "scheduled_service": "no", + "keywords": "Eldridge Ranch" + }, + { + "id": "353689", + "ident": "US-6741", + "type": "small_airport", + "name": "Meadow Creek Ranch Airport", + "latitude_deg": "39.52462", + "longitude_deg": "-114.51805", + "elevation_ft": "5709", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Ely", + "scheduled_service": "no" + }, + { + "id": "353690", + "ident": "US-6742", + "type": "closed", + "name": "Posey Airport", + "latitude_deg": "32.24003", + "longitude_deg": "-83.69122", + "elevation_ft": "409", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Unadilla", + "scheduled_service": "no" + }, + { + "id": "353691", + "ident": "US-6743", + "type": "closed", + "name": "DeLoach Airport", + "latitude_deg": "32.16461", + "longitude_deg": "-83.62697", + "elevation_ft": "371", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Unadilla", + "scheduled_service": "no" + }, + { + "id": "353694", + "ident": "US-6744", + "type": "small_airport", + "name": "Butler Island Airport", + "latitude_deg": "44.82453", + "longitude_deg": "-73.2331", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "North Hero", + "scheduled_service": "no" + }, + { + "id": "353722", + "ident": "US-6745", + "type": "heliport", + "name": "Miami Valley Hospital South Heliport", + "latitude_deg": "39.65158", + "longitude_deg": "-84.11314", + "elevation_ft": "982", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Centerville", + "scheduled_service": "no" + }, + { + "id": "353723", + "ident": "US-6746", + "type": "heliport", + "name": "Kettering Health Soin Medical Center Heliport", + "latitude_deg": "39.77174", + "longitude_deg": "-84.06381", + "elevation_ft": "987", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Beavercreek", + "scheduled_service": "no", + "local_code": "OA35" + }, + { + "id": "353724", + "ident": "US-6747", + "type": "heliport", + "name": "Miami Valley Hospital Jamestown Heliport", + "latitude_deg": "39.65559", + "longitude_deg": "-83.75079", + "elevation_ft": "1056", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Jamestown", + "scheduled_service": "no" + }, + { + "id": "353731", + "ident": "US-6748", + "type": "small_airport", + "name": "Elephant Mountain Airport", + "latitude_deg": "30.03411", + "longitude_deg": "-103.57538", + "elevation_ft": "4302", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Alpine", + "scheduled_service": "no" + }, + { + "id": "353732", + "ident": "US-6749", + "type": "small_airport", + "name": "Terlingua Ranch West Airport", + "latitude_deg": "29.41688", + "longitude_deg": "-103.51585", + "elevation_ft": "3156", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Terlingua", + "scheduled_service": "no" + }, + { + "id": "353733", + "ident": "US-6750", + "type": "closed", + "name": "Longhorn Ranch Airport", + "latitude_deg": "29.50722", + "longitude_deg": "-103.52682", + "elevation_ft": "3458", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Terlingua", + "scheduled_service": "no" + }, + { + "id": "353781", + "ident": "US-6751", + "type": "closed", + "name": "Elephant Rock Airport", + "latitude_deg": "29.87917", + "longitude_deg": "-104.26987", + "elevation_ft": "4395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marfa", + "scheduled_service": "no" + }, + { + "id": "353782", + "ident": "US-6752", + "type": "small_airport", + "name": "Carrizal Ranch Airport", + "latitude_deg": "29.82383", + "longitude_deg": "-104.06525", + "elevation_ft": "3738", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marfa", + "scheduled_service": "no" + }, + { + "id": "353783", + "ident": "US-6753", + "type": "small_airport", + "name": "Los Alamos Ranch Airport", + "latitude_deg": "29.73997", + "longitude_deg": "-104.06134", + "elevation_ft": "3470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marfa", + "scheduled_service": "no", + "keywords": "Casa Piedra" + }, + { + "id": "353784", + "ident": "US-6754", + "type": "small_airport", + "name": "Skydive West Plains Airport", + "latitude_deg": "47.15973", + "longitude_deg": "-118.29638", + "elevation_ft": "1884", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ritzville", + "scheduled_service": "no" + }, + { + "id": "353785", + "ident": "US-6755", + "type": "closed", + "name": "Paulina Airport", + "latitude_deg": "44.12733", + "longitude_deg": "-119.96662", + "elevation_ft": "3675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Paulina", + "scheduled_service": "no" + }, + { + "id": "353786", + "ident": "US-6756", + "type": "closed", + "name": "Campbell Brothers Airport", + "latitude_deg": "31.41011", + "longitude_deg": "-91.76443", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Monterey", + "scheduled_service": "no" + }, + { + "id": "353787", + "ident": "US-6757", + "type": "closed", + "name": "Cypress Airport", + "latitude_deg": "31.42861", + "longitude_deg": "-91.7309", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Monterey", + "scheduled_service": "no" + }, + { + "id": "353788", + "ident": "US-6758", + "type": "closed", + "name": "Eloise Airport", + "latitude_deg": "31.44272", + "longitude_deg": "-91.71361", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Monterey", + "scheduled_service": "no" + }, + { + "id": "353789", + "ident": "US-6759", + "type": "closed", + "name": "Monterey Airport", + "latitude_deg": "31.45117", + "longitude_deg": "-91.71208", + "elevation_ft": "51", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Monterey", + "scheduled_service": "no" + }, + { + "id": "353790", + "ident": "US-6760", + "type": "closed", + "name": "Bayou Cross Cocodrie Airport", + "latitude_deg": "31.50221", + "longitude_deg": "-91.69527", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Monterey", + "scheduled_service": "no" + }, + { + "id": "353791", + "ident": "US-6761", + "type": "closed", + "name": "Burton Airstrip", + "latitude_deg": "31.9225", + "longitude_deg": "-81.56379", + "elevation_ft": "67", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Hinesville", + "scheduled_service": "no", + "keywords": "Fort Stewart" + }, + { + "id": "353795", + "ident": "US-6762", + "type": "closed", + "name": "Commodore Decatur Airport", + "latitude_deg": "30.91574", + "longitude_deg": "-84.6095", + "elevation_ft": "105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Bainbridge", + "scheduled_service": "no", + "keywords": "20J" + }, + { + "id": "353797", + "ident": "US-6763", + "type": "closed", + "name": "Cow Creek Airport", + "latitude_deg": "33.95071", + "longitude_deg": "-112.31123", + "elevation_ft": "1899", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Peoria", + "scheduled_service": "no" + }, + { + "id": "353798", + "ident": "US-6764", + "type": "closed", + "name": "Rocky Ford Auxiliary Army Airfield", + "latitude_deg": "30.6681", + "longitude_deg": "-83.48579", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Quitman", + "scheduled_service": "no" + }, + { + "id": "353799", + "ident": "US-6765", + "type": "closed", + "name": "Lake Park Auxiliary Army Airfield", + "latitude_deg": "30.66964", + "longitude_deg": "-83.18683", + "elevation_ft": "164", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Lake Park", + "scheduled_service": "no" + }, + { + "id": "353800", + "ident": "US-6766", + "type": "closed", + "name": "Reynoldsville Auxiliary Army Airfield", + "latitude_deg": "30.83945", + "longitude_deg": "-84.78332", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Reynoldsville", + "scheduled_service": "no" + }, + { + "id": "353801", + "ident": "US-6767", + "type": "heliport", + "name": "Castle Hot Springs Resort Heliport", + "latitude_deg": "33.98227", + "longitude_deg": "-112.36273", + "elevation_ft": "1978", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Morristown", + "scheduled_service": "no" + }, + { + "id": "353802", + "ident": "US-6768", + "type": "closed", + "name": "Rose City Airport", + "latitude_deg": "30.82785", + "longitude_deg": "-84.00056", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Thomasville", + "scheduled_service": "no" + }, + { + "id": "353803", + "ident": "US-6769", + "type": "small_airport", + "name": "Bemiss Auxiliary Army Airfield", + "latitude_deg": "30.9506", + "longitude_deg": "-83.14866", + "elevation_ft": "197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Bemiss", + "scheduled_service": "no" + }, + { + "id": "353804", + "ident": "US-6770", + "type": "closed", + "name": "Vada Auxiliary Army Airfield", + "latitude_deg": "31.08903", + "longitude_deg": "-84.44096", + "elevation_ft": "146", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Vada", + "scheduled_service": "no" + }, + { + "id": "353805", + "ident": "US-6771", + "type": "closed", + "name": "Babcock Auxiliary Army Airfield", + "latitude_deg": "31.12035", + "longitude_deg": "-84.6171", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Colquitt", + "scheduled_service": "no" + }, + { + "id": "353807", + "ident": "US-6772", + "type": "small_airport", + "name": "Mission Mountain Airport", + "latitude_deg": "32.492482", + "longitude_deg": "-99.146186", + "elevation_ft": "1443", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Moran", + "scheduled_service": "no", + "local_code": "57XS" + }, + { + "id": "353809", + "ident": "US-6773", + "type": "seaplane_base", + "name": "Salisbury Seaplane Base", + "latitude_deg": "45.076603", + "longitude_deg": "-92.98597", + "elevation_ft": "924", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "White Bear Township", + "scheduled_service": "no", + "gps_code": "09MN", + "local_code": "09MN" + }, + { + "id": "353812", + "ident": "US-6774", + "type": "heliport", + "name": "Regional Health Services of Howard County Heliport", + "latitude_deg": "43.380684", + "longitude_deg": "-92.117803", + "elevation_ft": "1326", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Cresco", + "scheduled_service": "no", + "gps_code": "0IA6", + "local_code": "0IA6" + }, + { + "id": "353813", + "ident": "US-6775", + "type": "heliport", + "name": "Santa Clarita Valley Sheriff's Station Heliport", + "latitude_deg": "34.40842", + "longitude_deg": "-118.50442", + "elevation_ft": "1460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Clarita", + "scheduled_service": "no" + }, + { + "id": "353815", + "ident": "US-6776", + "type": "small_airport", + "name": "American Dream Skyranch Airport", + "latitude_deg": "34.097769", + "longitude_deg": "-81.891542", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Ninety Six", + "scheduled_service": "no", + "gps_code": "18SC", + "local_code": "18SC" + }, + { + "id": "353816", + "ident": "US-6777", + "type": "small_airport", + "name": "Baker Farm Airport", + "latitude_deg": "37.587675", + "longitude_deg": "-91.783336", + "elevation_ft": "1362", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Licking", + "scheduled_service": "no", + "gps_code": "21MO", + "local_code": "21MO" + }, + { + "id": "353826", + "ident": "US-6778", + "type": "heliport", + "name": "Lakeside Hospital Heliport", + "latitude_deg": "41.238665", + "longitude_deg": "-96.181574", + "elevation_ft": "1312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Omaha", + "scheduled_service": "no", + "gps_code": "22NE", + "local_code": "22NE" + }, + { + "id": "353827", + "ident": "US-6779", + "type": "small_airport", + "name": "Jungmanns Landing", + "latitude_deg": "41.568454", + "longitude_deg": "-93.980806", + "elevation_ft": "914", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Adel", + "scheduled_service": "no", + "gps_code": "2IA7", + "local_code": "2IA7" + }, + { + "id": "353852", + "ident": "US-6780", + "type": "heliport", + "name": "Sanford Bemidji Medical Center Heliport", + "latitude_deg": "47.502953", + "longitude_deg": "-94.900691", + "elevation_ft": "1383", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Bemidji", + "scheduled_service": "no", + "gps_code": "54MN", + "local_code": "54MN" + }, + { + "id": "353860", + "ident": "US-6781", + "type": "small_airport", + "name": "Hoerr Restricted Landing Area", + "latitude_deg": "40.790583", + "longitude_deg": "-89.665717", + "elevation_ft": "676", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Peoria", + "scheduled_service": "no", + "gps_code": "6IL0", + "local_code": "6IL0" + }, + { + "id": "353863", + "ident": "US-6782", + "type": "small_airport", + "name": "Kingfield Airport", + "latitude_deg": "40.927343", + "longitude_deg": "-90.26511", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Knoxville", + "scheduled_service": "no", + "gps_code": "6IL6", + "local_code": "6IL6" + }, + { + "id": "353868", + "ident": "US-6783", + "type": "small_airport", + "name": "Whitaker's Landing", + "latitude_deg": "33.693268", + "longitude_deg": "-95.308711", + "elevation_ft": "545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "72XS", + "local_code": "72XS" + }, + { + "id": "353870", + "ident": "US-6784", + "type": "seaplane_base", + "name": "Spring Bay Seaplane Base", + "latitude_deg": "40.835603", + "longitude_deg": "-89.529085", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Spring Bay", + "scheduled_service": "no", + "local_code": "I24", + "keywords": "7IL2" + }, + { + "id": "353877", + "ident": "US-6785", + "type": "heliport", + "name": "Kingdon RLA-H Heliport", + "latitude_deg": "40.769553", + "longitude_deg": "-88.949134", + "elevation_ft": "713", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "El Paso", + "scheduled_service": "no", + "gps_code": "8IL6", + "local_code": "8IL6" + }, + { + "id": "353880", + "ident": "US-6786", + "type": "heliport", + "name": "Quiram Heliport", + "latitude_deg": "40.850183", + "longitude_deg": "-89.0713", + "elevation_ft": "729", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Benson", + "scheduled_service": "no", + "gps_code": "9IL3", + "local_code": "9IL3" + }, + { + "id": "353882", + "ident": "US-6787", + "type": "heliport", + "name": "USA Fed Heliport", + "latitude_deg": "30.686606", + "longitude_deg": "-88.188789", + "elevation_ft": "174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Mobile", + "scheduled_service": "no", + "gps_code": "AL31", + "local_code": "AL31" + }, + { + "id": "353884", + "ident": "US-6788", + "type": "small_airport", + "name": "Coldbrook Field", + "latitude_deg": "42.220129", + "longitude_deg": "-85.36704", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Climax", + "scheduled_service": "no", + "gps_code": "MI47", + "local_code": "MI47" + }, + { + "id": "353890", + "ident": "US-6789", + "type": "small_airport", + "name": "Christian Outreach Airfield", + "latitude_deg": "38.304219", + "longitude_deg": "-90.527154", + "elevation_ft": "596", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "MO89", + "local_code": "MO89" + }, + { + "id": "353911", + "ident": "US-6790", + "type": "small_airport", + "name": "Founding Fathers Field", + "latitude_deg": "39.77218", + "longitude_deg": "-75.910839", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "New London", + "scheduled_service": "no", + "gps_code": "PN39", + "local_code": "PN39" + }, + { + "id": "353914", + "ident": "US-6791", + "type": "heliport", + "name": "Rushmore Heliport", + "latitude_deg": "43.894804", + "longitude_deg": "-103.42149", + "elevation_ft": "4330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Keystone", + "scheduled_service": "no", + "local_code": "SD42" + }, + { + "id": "353915", + "ident": "US-6792", + "type": "small_airport", + "name": "Alpha Whisky Airstrip", + "latitude_deg": "32.732139", + "longitude_deg": "-95.266825", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineola", + "scheduled_service": "no", + "gps_code": "TA27", + "local_code": "TA27" + }, + { + "id": "353917", + "ident": "US-6793", + "type": "seaplane_base", + "name": "Deep Water Cove Seaplane Base", + "latitude_deg": "31.9874", + "longitude_deg": "-96.216936", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Corsicana", + "scheduled_service": "no", + "gps_code": "TS70", + "local_code": "TS70" + }, + { + "id": "353935", + "ident": "US-6794", + "type": "small_airport", + "name": "Buckle L Ranch East Airport", + "latitude_deg": "34.278988", + "longitude_deg": "-100.092557", + "elevation_ft": "1710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paducah", + "scheduled_service": "no", + "gps_code": "TX12", + "local_code": "TX12" + }, + { + "id": "354012", + "ident": "US-6795", + "type": "heliport", + "name": "Texas Department of Public Safety Austin Heliport", + "latitude_deg": "30.327702", + "longitude_deg": "-97.72458", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no" + }, + { + "id": "354030", + "ident": "US-6796", + "type": "closed", + "name": "Laughlin Ranch Airport", + "latitude_deg": "29.95229", + "longitude_deg": "-100.08753", + "elevation_ft": "2390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rocksprings", + "scheduled_service": "no" + }, + { + "id": "354059", + "ident": "US-6797", + "type": "heliport", + "name": "Los Angeles County Sheriff Lynwood Heliport", + "latitude_deg": "33.92746", + "longitude_deg": "-118.22944", + "elevation_ft": "89", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lynwood", + "scheduled_service": "no" + }, + { + "id": "354060", + "ident": "US-6798", + "type": "heliport", + "name": "Edmund D Edelman Children's Courthouse Heliport", + "latitude_deg": "34.05802", + "longitude_deg": "-118.1667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Monterey Park", + "scheduled_service": "no" + }, + { + "id": "354061", + "ident": "US-6799", + "type": "heliport", + "name": "Los Angeles County Sheriff Lancaster Station Heliport", + "latitude_deg": "34.70029", + "longitude_deg": "-118.13805", + "elevation_ft": "2348", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lancaster", + "scheduled_service": "no" + }, + { + "id": "354062", + "ident": "US-6800", + "type": "small_airport", + "name": "Myers Airport", + "latitude_deg": "34.46014", + "longitude_deg": "-103.66256", + "elevation_ft": "4475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Melrose", + "scheduled_service": "no" + }, + { + "id": "354063", + "ident": "US-6801", + "type": "closed", + "name": "Ney Cave Airport", + "latitude_deg": "29.613157", + "longitude_deg": "-99.125108", + "elevation_ft": "1353", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hondo", + "scheduled_service": "no" + }, + { + "id": "354065", + "ident": "US-6802", + "type": "small_airport", + "name": "Volpe Ranch Airport", + "latitude_deg": "27.88686", + "longitude_deg": "-98.9056", + "elevation_ft": "416", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Encinal", + "scheduled_service": "no" + }, + { + "id": "354066", + "ident": "US-6803", + "type": "closed", + "name": "Welder Dobie Ranch Airport", + "latitude_deg": "28.00724", + "longitude_deg": "-98.89836", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Encinal", + "scheduled_service": "no" + }, + { + "id": "354068", + "ident": "US-6804", + "type": "closed", + "name": "Martin Airport", + "latitude_deg": "32.31598", + "longitude_deg": "-99.56774", + "elevation_ft": "1216", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Clyde", + "scheduled_service": "no" + }, + { + "id": "354070", + "ident": "US-6805", + "type": "small_airport", + "name": "Pierce Ranch Airport", + "latitude_deg": "30.471", + "longitude_deg": "-101.46346", + "elevation_ft": "2049", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ozona", + "scheduled_service": "no" + }, + { + "id": "354072", + "ident": "US-6806", + "type": "small_airport", + "name": "Dry Sycamore Creek Airport", + "latitude_deg": "29.6308", + "longitude_deg": "-100.30627", + "elevation_ft": "1759", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brackettville", + "scheduled_service": "no" + }, + { + "id": "354112", + "ident": "US-6807", + "type": "small_airport", + "name": "Hammer Restricted Landing Area", + "latitude_deg": "40.974358", + "longitude_deg": "-89.002794", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Dana", + "scheduled_service": "no", + "gps_code": "38IL", + "local_code": "38IL" + }, + { + "id": "354114", + "ident": "US-6808", + "type": "seaplane_base", + "name": "Morningwood Seaplane Base", + "latitude_deg": "29.431189", + "longitude_deg": "-81.520028", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Crescent City", + "scheduled_service": "no", + "gps_code": "17FD", + "local_code": "17FD", + "keywords": "Lake Stella" + }, + { + "id": "354121", + "ident": "US-6809", + "type": "small_airport", + "name": "Furfaro Restricted Landing Area", + "latitude_deg": "38.693", + "longitude_deg": "-89.781861", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "St Jacob", + "scheduled_service": "no", + "gps_code": "94IL", + "local_code": "94IL" + }, + { + "id": "354125", + "ident": "US-6810", + "type": "heliport", + "name": "HCA Florida Westside Hospital Heliport", + "latitude_deg": "26.123314", + "longitude_deg": "-80.260475", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Plantation", + "scheduled_service": "no", + "gps_code": "FD82", + "local_code": "FD82" + }, + { + "id": "354128", + "ident": "US-6811", + "type": "heliport", + "name": "Veterans Memorial Hospital Heliport", + "latitude_deg": "43.268011", + "longitude_deg": "-91.473799", + "elevation_ft": "1258", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Waukon", + "scheduled_service": "no", + "gps_code": "IA80", + "local_code": "IA80" + }, + { + "id": "354129", + "ident": "US-6812", + "type": "heliport", + "name": "Joint Force HQ Heliport", + "latitude_deg": "35.806042", + "longitude_deg": "-78.713158", + "elevation_ft": "435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Raleigh", + "scheduled_service": "no", + "gps_code": "NC47", + "local_code": "NC47" + }, + { + "id": "354137", + "ident": "US-6813", + "type": "heliport", + "name": "HCA Houston Healthcare Northwest Heliport", + "latitude_deg": "30.019864", + "longitude_deg": "-95.441131", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "TX33", + "local_code": "TX33" + }, + { + "id": "16461", + "ident": "US-6814", + "type": "closed", + "name": "Lone Mountain International Airport", + "latitude_deg": "31.355286", + "longitude_deg": "-110.37466", + "elevation_ft": "5350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Hereford", + "scheduled_service": "no", + "keywords": "AZ74, Patagonia" + }, + { + "id": "354368", + "ident": "US-6815", + "type": "small_airport", + "name": "Old Tununak Airport", + "latitude_deg": "60.569185", + "longitude_deg": "-165.246284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tununak", + "scheduled_service": "no" + }, + { + "id": "354369", + "ident": "US-6816", + "type": "small_airport", + "name": "Barrow Airport", + "latitude_deg": "67.076704", + "longitude_deg": "-156.943828", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Barrow", + "scheduled_service": "no" + }, + { + "id": "354370", + "ident": "US-6817", + "type": "closed", + "name": "Old Levelock Airport", + "latitude_deg": "59.117545", + "longitude_deg": "-156.865282", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Levelock", + "scheduled_service": "no" + }, + { + "id": "354372", + "ident": "US-6818", + "type": "closed", + "name": "Lignite Airstrip", + "latitude_deg": "63.910501", + "longitude_deg": "-149.023865", + "elevation_ft": "1171", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Lignite", + "scheduled_service": "no", + "keywords": "11Z" + }, + { + "id": "354375", + "ident": "US-6819", + "type": "closed", + "name": "(Duplicate)Brenwicks Airport", + "latitude_deg": "62.061519", + "longitude_deg": "-145.425526", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Glennallen", + "scheduled_service": "no" + }, + { + "id": "354377", + "ident": "US-6820", + "type": "small_airport", + "name": "Dawson City Airport", + "latitude_deg": "66.809432", + "longitude_deg": "-141.643875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Dawson City", + "scheduled_service": "no" + }, + { + "id": "354431", + "ident": "US-6821", + "type": "closed", + "name": "Gillmor Airport", + "latitude_deg": "41.282831", + "longitude_deg": "-83.147975", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Fremont,", + "scheduled_service": "no", + "keywords": "01OH" + }, + { + "id": "354433", + "ident": "US-6822", + "type": "heliport", + "name": "Holler Heliport", + "latitude_deg": "29.74668", + "longitude_deg": "-98.36335", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bulverde", + "scheduled_service": "no", + "local_code": "TE59" + }, + { + "id": "354605", + "ident": "US-6823", + "type": "heliport", + "name": "Sanford Tracy Heliport", + "latitude_deg": "44.231874", + "longitude_deg": "-95.607018", + "elevation_ft": "1385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Tracy", + "scheduled_service": "no", + "gps_code": "0MN5", + "local_code": "0MN5" + }, + { + "id": "354606", + "ident": "US-6824", + "type": "heliport", + "name": "City of Remer Heliport", + "latitude_deg": "47.05951", + "longitude_deg": "-93.9214", + "elevation_ft": "1343", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Remer", + "scheduled_service": "no", + "gps_code": "16MN", + "local_code": "16MN" + }, + { + "id": "354609", + "ident": "US-6825", + "type": "small_airport", + "name": "Silverhorn Ranch Airport", + "latitude_deg": "27.929578", + "longitude_deg": "-98.533769", + "elevation_ft": "691", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Freer", + "scheduled_service": "no", + "gps_code": "19TS", + "local_code": "19TS" + }, + { + "id": "354624", + "ident": "US-6826", + "type": "small_airport", + "name": "Carris Health Redwood Falls Heliport", + "latitude_deg": "44.53", + "longitude_deg": "-95.09", + "elevation_ft": "1021", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Redwood Falls", + "scheduled_service": "no", + "gps_code": "37MN", + "local_code": "37MN" + }, + { + "id": "354626", + "ident": "US-6827", + "type": "heliport", + "name": "Air Care & Mobile Care Mount Orab Heliport", + "latitude_deg": "39.037278", + "longitude_deg": "-83.923879", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Mount Orab", + "scheduled_service": "no", + "gps_code": "3OH2", + "local_code": "3OH2" + }, + { + "id": "354628", + "ident": "US-6828", + "type": "seaplane_base", + "name": "Great Lakes Seaplane Base", + "latitude_deg": "42.466547", + "longitude_deg": "-88.132836", + "elevation_ft": "737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Antioch", + "scheduled_service": "no", + "gps_code": "41IL", + "local_code": "41IL", + "keywords": "Lake Marie" + }, + { + "id": "354632", + "ident": "US-6829", + "type": "heliport", + "name": "Corry Memorial Hospital Heliport", + "latitude_deg": "41.937012", + "longitude_deg": "-79.612277", + "elevation_ft": "1502", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Corry", + "scheduled_service": "no", + "gps_code": "43PN", + "local_code": "43PN" + }, + { + "id": "354639", + "ident": "US-6830", + "type": "heliport", + "name": "Hospital of the University of Pennsylvania - East Heliport", + "latitude_deg": "39.948113", + "longitude_deg": "-75.19109", + "elevation_ft": "316", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no", + "gps_code": "4PS7", + "local_code": "4PS7" + }, + { + "id": "354641", + "ident": "US-6831", + "type": "small_airport", + "name": "Flack Field", + "latitude_deg": "33.113458", + "longitude_deg": "-97.528053", + "elevation_ft": "778", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Decatur", + "scheduled_service": "no", + "gps_code": "62TS", + "local_code": "62TS" + }, + { + "id": "354671", + "ident": "US-6832", + "type": "small_airport", + "name": "Mouse and Snake Ranch Airport", + "latitude_deg": "36.303444", + "longitude_deg": "-81.215201", + "elevation_ft": "1458", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "North Wilkesboro", + "scheduled_service": "no", + "gps_code": "NC35", + "local_code": "NC35" + }, + { + "id": "354682", + "ident": "US-6833", + "type": "small_airport", + "name": "Tigertown Ultralight Flightpark", + "latitude_deg": "41.842975", + "longitude_deg": "-75.805868", + "elevation_ft": "1618", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Montrose", + "scheduled_service": "no", + "gps_code": "PN43", + "local_code": "PN43" + }, + { + "id": "354683", + "ident": "US-6834", + "type": "heliport", + "name": "Borglum Heliport", + "latitude_deg": "43.890889", + "longitude_deg": "-103.426103", + "elevation_ft": "4405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Keystone", + "scheduled_service": "no", + "local_code": "SD62", + "keywords": "Mount Rushmore" + }, + { + "id": "354688", + "ident": "US-6835", + "type": "small_airport", + "name": "Weavers Landing", + "latitude_deg": "38.327565", + "longitude_deg": "-79.030328", + "elevation_ft": "1325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Bridgewater", + "scheduled_service": "no", + "gps_code": "VA63", + "local_code": "VA63" + }, + { + "id": "354717", + "ident": "US-6836", + "type": "small_airport", + "name": "Greenleaf Air Ranch", + "latitude_deg": "43.681793", + "longitude_deg": "-116.826618", + "elevation_ft": "2400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Greenleaf", + "scheduled_service": "no" + }, + { + "id": "354752", + "ident": "US-6837", + "type": "closed", + "name": "Naval Air Station Hitchcock", + "latitude_deg": "29.32512", + "longitude_deg": "-95.04479", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hitchcock", + "scheduled_service": "no" + }, + { + "id": "354753", + "ident": "US-6838", + "type": "closed", + "name": "Globe Aircraft Airport", + "latitude_deg": "32.85593", + "longitude_deg": "-97.35058", + "elevation_ft": "689", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Saginaw", + "scheduled_service": "no" + }, + { + "id": "354754", + "ident": "US-6839", + "type": "closed", + "name": "Gorman Airport", + "latitude_deg": "32.21316", + "longitude_deg": "-98.68448", + "elevation_ft": "1426", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gorman", + "scheduled_service": "no" + }, + { + "id": "354755", + "ident": "US-6840", + "type": "closed", + "name": "Ritchey Airport", + "latitude_deg": "32.84429", + "longitude_deg": "-97.32988", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Saginaw", + "scheduled_service": "no" + }, + { + "id": "354756", + "ident": "US-6841", + "type": "closed", + "name": "Pops / Blue Mound Airport", + "latitude_deg": "32.85417", + "longitude_deg": "-97.33301", + "elevation_ft": "673", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Saginaw", + "scheduled_service": "no", + "keywords": "3F0" + }, + { + "id": "354757", + "ident": "US-6842", + "type": "heliport", + "name": "Canyon Lake Helicopters Heliport", + "latitude_deg": "29.9122", + "longitude_deg": "-98.21547", + "elevation_ft": "943", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Canyon Lake", + "scheduled_service": "no" + }, + { + "id": "354758", + "ident": "US-6843", + "type": "closed", + "name": "Genoa Airport", + "latitude_deg": "29.63004", + "longitude_deg": "-95.1986", + "elevation_ft": "934", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "354759", + "ident": "US-6844", + "type": "closed", + "name": "S&S Patrol Field", + "latitude_deg": "29.48205", + "longitude_deg": "-95.13019", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "League City", + "scheduled_service": "no" + }, + { + "id": "354760", + "ident": "US-6845", + "type": "closed", + "name": "Alta Vista Airport", + "latitude_deg": "32.8981", + "longitude_deg": "-97.28743", + "elevation_ft": "678", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Keller", + "scheduled_service": "no" + }, + { + "id": "354761", + "ident": "US-6846", + "type": "small_airport", + "name": "Herman Airport", + "latitude_deg": "30.41322", + "longitude_deg": "-95.34795", + "elevation_ft": "279", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Willis", + "scheduled_service": "no" + }, + { + "id": "354762", + "ident": "US-6847", + "type": "small_airport", + "name": "Eldorado Northwest Airport", + "latitude_deg": "30.909266", + "longitude_deg": "-100.799372", + "elevation_ft": "2505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Eldorado", + "scheduled_service": "no" + }, + { + "id": "354956", + "ident": "US-6848", + "type": "small_airport", + "name": "Sinclair Island Airport", + "latitude_deg": "48.6234", + "longitude_deg": "-122.67129", + "elevation_ft": "39", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Anacortes", + "scheduled_service": "no" + }, + { + "id": "354957", + "ident": "US-6849", + "type": "small_airport", + "name": "Cypress Island Airport", + "latitude_deg": "48.57233", + "longitude_deg": "-122.69048", + "elevation_ft": "961", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Anacortes", + "scheduled_service": "no" + }, + { + "id": "354958", + "ident": "US-6850", + "type": "small_airport", + "name": "Condit Airport", + "latitude_deg": "34.53393", + "longitude_deg": "-116.87808", + "elevation_ft": "2966", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lucerne Valley", + "scheduled_service": "no" + }, + { + "id": "354959", + "ident": "US-6851", + "type": "small_airport", + "name": "Mayo Airport", + "latitude_deg": "34.29217", + "longitude_deg": "-116.37605", + "elevation_ft": "2949", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Landers", + "scheduled_service": "no" + }, + { + "id": "354960", + "ident": "US-6852", + "type": "small_airport", + "name": "Warren Airport", + "latitude_deg": "34.36688", + "longitude_deg": "-116.53189", + "elevation_ft": "3087", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Landers", + "scheduled_service": "no" + }, + { + "id": "354961", + "ident": "US-6853", + "type": "small_airport", + "name": "Scull Airport", + "latitude_deg": "31.91703", + "longitude_deg": "-94.25929", + "elevation_ft": "318", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tenaha", + "scheduled_service": "no" + }, + { + "id": "354962", + "ident": "US-6854", + "type": "small_airport", + "name": "Horney Ranch Airport", + "latitude_deg": "34.34947", + "longitude_deg": "-104.54438", + "elevation_ft": "4631", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Fort Sumner", + "scheduled_service": "no" + }, + { + "id": "354964", + "ident": "US-6855", + "type": "heliport", + "name": "Alexandria Mega Shelter Heliport", + "latitude_deg": "31.17042", + "longitude_deg": "-92.41556", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Lecompte", + "scheduled_service": "no" + }, + { + "id": "354965", + "ident": "US-6856", + "type": "small_airport", + "name": "Little Eva Plantation Airport", + "latitude_deg": "31.52807", + "longitude_deg": "-92.85738", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Cloutierville", + "scheduled_service": "no" + }, + { + "id": "354966", + "ident": "US-6857", + "type": "small_airport", + "name": "Methvin Airport", + "latitude_deg": "31.64287", + "longitude_deg": "-93.00284", + "elevation_ft": "109", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Natchez", + "scheduled_service": "no" + }, + { + "id": "354967", + "ident": "US-6858", + "type": "closed", + "name": "Jenkins Airport", + "latitude_deg": "33.69516", + "longitude_deg": "-100.87875", + "elevation_ft": "2758", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dickens", + "scheduled_service": "no" + }, + { + "id": "354974", + "ident": "US-6859", + "type": "small_airport", + "name": "Twin Peaks Ranch Airport", + "latitude_deg": "44.94559", + "longitude_deg": "-113.98606", + "elevation_ft": "5115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Salmon", + "scheduled_service": "no" + }, + { + "id": "354975", + "ident": "US-6860", + "type": "small_airport", + "name": "Boyd Airport", + "latitude_deg": "35.49094", + "longitude_deg": "-94.71377", + "elevation_ft": "554", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OK", + "municipality": "Sallisaw", + "scheduled_service": "no" + }, + { + "id": "354977", + "ident": "US-6861", + "type": "small_airport", + "name": "Black Bridge Airport", + "latitude_deg": "37.61501", + "longitude_deg": "-79.50693", + "elevation_ft": "832", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Natural Bridge Station", + "scheduled_service": "no" + }, + { + "id": "354978", + "ident": "US-6862", + "type": "closed", + "name": "Matovich Ranch Airport", + "latitude_deg": "47.09127", + "longitude_deg": "-107.79086", + "elevation_ft": "2770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Mosby", + "scheduled_service": "no" + }, + { + "id": "354985", + "ident": "US-6863", + "type": "small_airport", + "name": "Edwards 2 Airport", + "latitude_deg": "33.41965", + "longitude_deg": "-90.79959", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Leland", + "scheduled_service": "no", + "local_code": "64MS", + "keywords": "Satterfield" + }, + { + "id": "354986", + "ident": "US-6864", + "type": "small_airport", + "name": "Lewis Air Services Airport", + "latitude_deg": "33.37952", + "longitude_deg": "-90.80979", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Leland", + "scheduled_service": "no" + }, + { + "id": "355001", + "ident": "US-6865", + "type": "closed", + "name": "Allen Airport", + "latitude_deg": "35.67936", + "longitude_deg": "-79.61695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Ramseur", + "scheduled_service": "no" + }, + { + "id": "355002", + "ident": "US-6866", + "type": "closed", + "name": "Caveness Field", + "latitude_deg": "35.6792", + "longitude_deg": "-79.61542", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Ramseur", + "scheduled_service": "no" + }, + { + "id": "355003", + "ident": "US-6867", + "type": "closed", + "name": "Emerson Airport", + "latitude_deg": "36.73727", + "longitude_deg": "-93.38172", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Reeds Spring", + "scheduled_service": "no" + }, + { + "id": "355004", + "ident": "US-6868", + "type": "closed", + "name": "Herndon Orchard Airport", + "latitude_deg": "37.01663", + "longitude_deg": "-93.59882", + "elevation_ft": "1375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Billings", + "scheduled_service": "no" + }, + { + "id": "355005", + "ident": "US-6869", + "type": "closed", + "name": "Bob White Airport", + "latitude_deg": "36.58259", + "longitude_deg": "-93.57129", + "elevation_ft": "999", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Shell Knob", + "scheduled_service": "no" + }, + { + "id": "355006", + "ident": "US-6870", + "type": "small_airport", + "name": "Paradise Mountain Airport", + "latitude_deg": "36.45477", + "longitude_deg": "-93.85036", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Busch", + "scheduled_service": "no" + }, + { + "id": "355012", + "ident": "US-6871", + "type": "heliport", + "name": "Cox Barton County Hospital Heliport", + "latitude_deg": "37.505692", + "longitude_deg": "-94.301603", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Lamar", + "scheduled_service": "no", + "home_link": "https://www.coxhealth.com/about-us/cox-barton-county/" + }, + { + "id": "355044", + "ident": "US-6872", + "type": "small_airport", + "name": "White Hills Airport", + "latitude_deg": "35.721776", + "longitude_deg": "-114.450539", + "elevation_ft": "2420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "White Hills", + "scheduled_service": "no", + "gps_code": "04AZ", + "local_code": "04AZ" + }, + { + "id": "355063", + "ident": "US-6873", + "type": "heliport", + "name": "Peoples Hangar Heliport", + "latitude_deg": "33.630113", + "longitude_deg": "-111.909008", + "elevation_ft": "1497", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Scottsdale", + "scheduled_service": "no", + "gps_code": "07AZ", + "local_code": "07AZ" + }, + { + "id": "355066", + "ident": "US-6874", + "type": "heliport", + "name": "South Central Kansas Medical Center Heliport", + "latitude_deg": "37.13378", + "longitude_deg": "-97.038508", + "elevation_ft": "1202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Arkansas City", + "scheduled_service": "no", + "gps_code": "0KS3", + "local_code": "0KS3" + }, + { + "id": "355068", + "ident": "US-6875", + "type": "heliport", + "name": "Constellation Aviation Heliport", + "latitude_deg": "33.62949", + "longitude_deg": "-111.9079", + "elevation_ft": "1598", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Scottsdale", + "scheduled_service": "no", + "gps_code": "17AZ", + "local_code": "17AZ" + }, + { + "id": "355069", + "ident": "US-6876", + "type": "heliport", + "name": "GC Heliport", + "latitude_deg": "35.941485", + "longitude_deg": "-113.908026", + "elevation_ft": "5106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Meadview", + "scheduled_service": "no", + "gps_code": "20AZ", + "local_code": "20AZ" + }, + { + "id": "355075", + "ident": "US-6877", + "type": "balloonport", + "name": "Barrys Folly Nr 12 Balloonport", + "latitude_deg": "40.113056", + "longitude_deg": "-75.6925", + "elevation_ft": "637", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Pottstown", + "scheduled_service": "no", + "gps_code": "3PN8", + "local_code": "3PN8" + }, + { + "id": "355077", + "ident": "US-6878", + "type": "heliport", + "name": "Samaritan Hospital Heliport", + "latitude_deg": "39.748588", + "longitude_deg": "-92.468968", + "elevation_ft": "882", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Macon", + "scheduled_service": "no", + "gps_code": "6MO9", + "local_code": "6MO9" + }, + { + "id": "355081", + "ident": "US-6879", + "type": "heliport", + "name": "GMR Moberly Heliport", + "latitude_deg": "39.447076", + "longitude_deg": "-92.413205", + "elevation_ft": "862", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Moberly", + "scheduled_service": "no", + "gps_code": "76MU", + "local_code": "76MU" + }, + { + "id": "355082", + "ident": "US-6880", + "type": "heliport", + "name": "Lehigh Valley Hospital/Carbon Heliport", + "latitude_deg": "40.811553", + "longitude_deg": "-75.746886", + "elevation_ft": "558", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lehighton", + "scheduled_service": "no", + "gps_code": "7PS4", + "local_code": "7PS4" + }, + { + "id": "355100", + "ident": "US-6881", + "type": "heliport", + "name": "Dayton Springfield Emergency Center Heliport", + "latitude_deg": "39.847051", + "longitude_deg": "-83.989819", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Fairborn", + "scheduled_service": "no", + "gps_code": "84OH", + "local_code": "84OH" + }, + { + "id": "355102", + "ident": "US-6882", + "type": "small_airport", + "name": "Flying Fajita Airport", + "latitude_deg": "31.204237", + "longitude_deg": "-97.442267", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Moody", + "scheduled_service": "no", + "gps_code": "84TA", + "local_code": "84TA" + }, + { + "id": "355105", + "ident": "US-6883", + "type": "small_airport", + "name": "Rothwell Airport", + "latitude_deg": "41.739254", + "longitude_deg": "-101.804921", + "elevation_ft": "3704", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Hyannis", + "scheduled_service": "no", + "gps_code": "9NE6", + "local_code": "9NE6" + }, + { + "id": "355109", + "ident": "US-6884", + "type": "heliport", + "name": "Crenshaw Community Hospital Heliport", + "latitude_deg": "31.693863", + "longitude_deg": "-86.265737", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Luverne", + "scheduled_service": "no", + "gps_code": "AL06", + "local_code": "AL06" + }, + { + "id": "355112", + "ident": "US-6885", + "type": "heliport", + "name": "MP25 Heliport", + "latitude_deg": "26.488417", + "longitude_deg": "-81.829519", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Fort Myers", + "scheduled_service": "no", + "gps_code": "FL26", + "local_code": "FL26" + }, + { + "id": "355113", + "ident": "US-6886", + "type": "heliport", + "name": "FPL RMO Heliport", + "latitude_deg": "25.917292", + "longitude_deg": "-80.281606", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami Gardens", + "scheduled_service": "no", + "gps_code": "FL79", + "local_code": "FL79" + }, + { + "id": "355115", + "ident": "US-6887", + "type": "small_airport", + "name": "SJ Airfield", + "latitude_deg": "42.880647", + "longitude_deg": "-93.31519", + "elevation_ft": "1209", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Sheffield", + "scheduled_service": "no", + "gps_code": "IA94", + "local_code": "IA94" + }, + { + "id": "355122", + "ident": "US-6888", + "type": "small_airport", + "name": "Bighorn Airpark", + "latitude_deg": "46.296332", + "longitude_deg": "-116.954207", + "elevation_ft": "2270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Lewiston", + "scheduled_service": "no", + "gps_code": "ID83", + "local_code": "ID83" + }, + { + "id": "355124", + "ident": "US-6889", + "type": "small_airport", + "name": "LL Landing", + "latitude_deg": "47.459404", + "longitude_deg": "-100.907125", + "elevation_ft": "1931", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Turtle Lake", + "scheduled_service": "no", + "gps_code": "ND92", + "local_code": "ND92" + }, + { + "id": "355125", + "ident": "US-6890", + "type": "heliport", + "name": "Community Medical Center Heliport", + "latitude_deg": "40.077209", + "longitude_deg": "-95.608885", + "elevation_ft": "1009", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Falls City", + "scheduled_service": "no", + "gps_code": "NE52", + "local_code": "NE52" + }, + { + "id": "355127", + "ident": "US-6891", + "type": "small_airport", + "name": "Creekview Airport", + "latitude_deg": "42.184957", + "longitude_deg": "-98.4191", + "elevation_ft": "1946", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Ewing", + "scheduled_service": "no", + "gps_code": "NE73", + "local_code": "NE73" + }, + { + "id": "355130", + "ident": "US-6892", + "type": "heliport", + "name": "Saint James Hospital Heliport", + "latitude_deg": "42.357176", + "longitude_deg": "-77.663748", + "elevation_ft": "1169", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hornell", + "scheduled_service": "no", + "gps_code": "NK47", + "local_code": "NK47" + }, + { + "id": "355132", + "ident": "US-6893", + "type": "small_airport", + "name": "Paradise Landing", + "latitude_deg": "35.166904", + "longitude_deg": "-81.930007", + "elevation_ft": "947", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Chesnee", + "scheduled_service": "no", + "gps_code": "SC36", + "local_code": "SC36" + }, + { + "id": "355133", + "ident": "US-6894", + "type": "heliport", + "name": "The Oasis Heliport", + "latitude_deg": "28.8611", + "longitude_deg": "-97.054731", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Victoria", + "scheduled_service": "no", + "gps_code": "TA83", + "local_code": "TA83" + }, + { + "id": "355146", + "ident": "US-6895", + "type": "closed", + "name": "MRP Airpark", + "latitude_deg": "39.58884", + "longitude_deg": "-77.18764", + "elevation_ft": "518", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Union Bridge", + "scheduled_service": "no" + }, + { + "id": "355365", + "ident": "US-6896", + "type": "small_airport", + "name": "San Clemente Rancho Airport", + "latitude_deg": "36.4097", + "longitude_deg": "-121.72911", + "elevation_ft": "2290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Carmel-by-the-Sea", + "scheduled_service": "no", + "keywords": "Carmel Valley Village, KCAL" + }, + { + "id": "355367", + "ident": "US-6897", + "type": "closed", + "name": "Malmo Airport", + "latitude_deg": "40.39165", + "longitude_deg": "-76.09662", + "elevation_ft": "413", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "North Heidelberg", + "scheduled_service": "no" + }, + { + "id": "355376", + "ident": "US-6898", + "type": "small_airport", + "name": "Mueller Airport", + "latitude_deg": "38.93577", + "longitude_deg": "-89.62467", + "elevation_ft": "598", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "New Douglas", + "scheduled_service": "no" + }, + { + "id": "355381", + "ident": "US-6899", + "type": "closed", + "name": "Biels and Lake Meade Airport", + "latitude_deg": "39.99949", + "longitude_deg": "-77.04074", + "elevation_ft": "542", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "East Berlin", + "scheduled_service": "no" + }, + { + "id": "355469", + "ident": "US-6900", + "type": "small_airport", + "name": "Dry Creek Airport", + "latitude_deg": "63.683461", + "longitude_deg": "-144.619525", + "elevation_ft": "1392", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Delta Junction", + "scheduled_service": "no" + }, + { + "id": "355470", + "ident": "US-6901", + "type": "small_airport", + "name": "Hadley Island Airport", + "latitude_deg": "64.698426", + "longitude_deg": "-148.241077", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fairbanks North Star", + "scheduled_service": "no" + }, + { + "id": "355471", + "ident": "US-6902", + "type": "small_airport", + "name": "Workshop Acres Airport", + "latitude_deg": "64.496788", + "longitude_deg": "-149.081329", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nenana", + "scheduled_service": "no" + }, + { + "id": "355472", + "ident": "US-6903", + "type": "small_airport", + "name": "Clear Sky Lodge West Airport", + "latitude_deg": "64.256363", + "longitude_deg": "-149.23696", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Clear", + "scheduled_service": "no" + }, + { + "id": "355473", + "ident": "US-6904", + "type": "small_airport", + "name": "Fort Wainwright South Airport", + "latitude_deg": "64.388995", + "longitude_deg": "-147.687172", + "elevation_ft": "732", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fairbanks North Star", + "scheduled_service": "no" + }, + { + "id": "355474", + "ident": "US-6905", + "type": "small_airport", + "name": "Rochester Lodge Airport", + "latitude_deg": "64.253613", + "longitude_deg": "-149.180641", + "elevation_ft": "653", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Clear", + "scheduled_service": "no" + }, + { + "id": "355475", + "ident": "US-6906", + "type": "closed", + "name": "Former Clear Airport", + "latitude_deg": "64.241567", + "longitude_deg": "-149.201763", + "elevation_ft": "682", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Clear", + "scheduled_service": "no" + }, + { + "id": "355476", + "ident": "US-6907", + "type": "small_airport", + "name": "Clear Sky Lodge Southwest Airport", + "latitude_deg": "64.252224", + "longitude_deg": "-149.232442", + "elevation_ft": "666", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Clear", + "scheduled_service": "no" + }, + { + "id": "355478", + "ident": "US-6908", + "type": "small_airport", + "name": "Liaho Airport", + "latitude_deg": "64.22504", + "longitude_deg": "-149.25832", + "elevation_ft": "712", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Healy", + "scheduled_service": "no" + }, + { + "id": "355482", + "ident": "US-6909", + "type": "small_airport", + "name": "Trapper Creek Airport", + "latitude_deg": "62.310787", + "longitude_deg": "-150.231686", + "elevation_ft": "359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Trapper Creek", + "scheduled_service": "no" + }, + { + "id": "355483", + "ident": "US-6910", + "type": "small_airport", + "name": "Trapper Creek West Airport", + "latitude_deg": "62.312621", + "longitude_deg": "-150.259983", + "elevation_ft": "395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Trapper Creek", + "scheduled_service": "no" + }, + { + "id": "355486", + "ident": "US-6911", + "type": "small_airport", + "name": "Upper Susitna Shooters Airport", + "latitude_deg": "62.069447", + "longitude_deg": "-150.045831", + "elevation_ft": "301", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Talkeetna", + "scheduled_service": "no" + }, + { + "id": "355487", + "ident": "US-6912", + "type": "small_airport", + "name": "Goose Creek Airport", + "latitude_deg": "62.037492", + "longitude_deg": "-150.077443", + "elevation_ft": "257", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Talkeetna", + "scheduled_service": "no" + }, + { + "id": "355488", + "ident": "US-6913", + "type": "small_airport", + "name": "Rutter Airport", + "latitude_deg": "61.857911", + "longitude_deg": "-150.10705", + "elevation_ft": "249", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Willow", + "scheduled_service": "no" + }, + { + "id": "355489", + "ident": "US-6914", + "type": "small_airport", + "name": "Houston North Airport", + "latitude_deg": "61.656249", + "longitude_deg": "-149.886685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Houston", + "scheduled_service": "no" + }, + { + "id": "355492", + "ident": "US-6915", + "type": "small_airport", + "name": "Pams Carrots Airport", + "latitude_deg": "61.611009", + "longitude_deg": "-149.162047", + "elevation_ft": "375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no" + }, + { + "id": "355493", + "ident": "US-6916", + "type": "small_airport", + "name": "Scott Airport", + "latitude_deg": "61.61729", + "longitude_deg": "-149.16254", + "elevation_ft": "447", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no" + }, + { + "id": "355494", + "ident": "US-6917", + "type": "heliport", + "name": "Knik River Lodge Heliport", + "latitude_deg": "61.43482", + "longitude_deg": "-148.765569", + "elevation_ft": "297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Palmer", + "scheduled_service": "no" + }, + { + "id": "355495", + "ident": "US-6918", + "type": "small_airport", + "name": "Otter Trail Airport", + "latitude_deg": "60.55496", + "longitude_deg": "-150.731992", + "elevation_ft": "202", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Sterling", + "scheduled_service": "no" + }, + { + "id": "355496", + "ident": "US-6919", + "type": "small_airport", + "name": "West Mackey Lake Airport", + "latitude_deg": "60.533621", + "longitude_deg": "-151.013357", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ridgeway", + "scheduled_service": "no" + }, + { + "id": "355497", + "ident": "US-6920", + "type": "small_airport", + "name": "Dolly Varden Airport", + "latitude_deg": "60.524812", + "longitude_deg": "-150.99632", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ridgeway", + "scheduled_service": "no" + }, + { + "id": "355498", + "ident": "US-6921", + "type": "small_airport", + "name": "East Mackeys Lake Airport", + "latitude_deg": "60.529934", + "longitude_deg": "-150.988054", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ridgeway", + "scheduled_service": "no" + }, + { + "id": "355499", + "ident": "US-6922", + "type": "small_airport", + "name": "TJ Airport", + "latitude_deg": "60.490493", + "longitude_deg": "-151.013109", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Soldotna", + "scheduled_service": "no" + }, + { + "id": "355500", + "ident": "US-6923", + "type": "small_airport", + "name": "Rensselaer Airport", + "latitude_deg": "60.454089", + "longitude_deg": "-151.130964", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kalifornsky", + "scheduled_service": "no" + }, + { + "id": "355501", + "ident": "US-6924", + "type": "small_airport", + "name": "Johnson Lake Airport", + "latitude_deg": "60.28103", + "longitude_deg": "-151.26693", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kasilof", + "scheduled_service": "no" + }, + { + "id": "355502", + "ident": "US-6925", + "type": "small_airport", + "name": "Virginia Lake Airport", + "latitude_deg": "60.28221", + "longitude_deg": "-151.27996", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kasilof", + "scheduled_service": "no" + }, + { + "id": "355503", + "ident": "US-6926", + "type": "small_airport", + "name": "Corea Creek Airport", + "latitude_deg": "60.16435", + "longitude_deg": "-151.47329", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ninilchik", + "scheduled_service": "no" + }, + { + "id": "355504", + "ident": "US-6927", + "type": "small_airport", + "name": "Anchor River Gravel Pit South Airport", + "latitude_deg": "59.746953", + "longitude_deg": "-151.773711", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchor Point", + "scheduled_service": "no" + }, + { + "id": "355505", + "ident": "US-6928", + "type": "small_airport", + "name": "Anchor River Gravel Pit North Airport", + "latitude_deg": "59.767857", + "longitude_deg": "-151.773359", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchor Point", + "scheduled_service": "no" + }, + { + "id": "355506", + "ident": "US-6929", + "type": "closed", + "name": "Cirrostratus Airport", + "latitude_deg": "59.672102", + "longitude_deg": "-151.658368", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Homer", + "scheduled_service": "no" + }, + { + "id": "355507", + "ident": "US-6930", + "type": "small_airport", + "name": "Rucksack Airport", + "latitude_deg": "59.681267", + "longitude_deg": "-151.603272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Homer", + "scheduled_service": "no" + }, + { + "id": "355508", + "ident": "US-6931", + "type": "closed", + "name": "Former Ouzinkie Airport", + "latitude_deg": "57.925766", + "longitude_deg": "-152.49693", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ouzinkie", + "scheduled_service": "no" + }, + { + "id": "355517", + "ident": "US-6932", + "type": "seaplane_base", + "name": "George Inlet Lodge Seaplane Base", + "latitude_deg": "55.365321", + "longitude_deg": "-131.473301", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ketchikan", + "scheduled_service": "no" + }, + { + "id": "355518", + "ident": "US-6933", + "type": "seaplane_base", + "name": "Silverking Lodge Seaplane Base", + "latitude_deg": "55.543832", + "longitude_deg": "-131.718221", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ketchikan", + "scheduled_service": "no" + }, + { + "id": "355519", + "ident": "US-6934", + "type": "seaplane_base", + "name": "Anan Creek Seaplane Base", + "latitude_deg": "56.185882", + "longitude_deg": "-131.892024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wrangell", + "scheduled_service": "no" + }, + { + "id": "355520", + "ident": "US-6935", + "type": "seaplane_base", + "name": "Mount Rynda Cabin Seaplane Base", + "latitude_deg": "56.666146", + "longitude_deg": "-132.240525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wrangell", + "scheduled_service": "no" + }, + { + "id": "355524", + "ident": "US-6936", + "type": "small_airport", + "name": "Lake Camp Airport", + "latitude_deg": "58.680683", + "longitude_deg": "-156.497895", + "elevation_ft": "213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "King Salmon", + "scheduled_service": "no" + }, + { + "id": "355525", + "ident": "US-6937", + "type": "closed", + "name": "Former Egegik Airport", + "latitude_deg": "58.207033", + "longitude_deg": "-157.37326", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Egegik", + "scheduled_service": "no" + }, + { + "id": "355526", + "ident": "US-6938", + "type": "closed", + "name": "Tanaga Auxiliary Airfield", + "latitude_deg": "51.683048", + "longitude_deg": "-178.051092", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tanaga Island", + "scheduled_service": "no" + }, + { + "id": "355584", + "ident": "US-6939", + "type": "closed", + "name": "Ramapo Heliport", + "latitude_deg": "41.10768", + "longitude_deg": "-74.02511", + "elevation_ft": "403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Nanuet", + "scheduled_service": "no" + }, + { + "id": "355585", + "ident": "US-6940", + "type": "heliport", + "name": "Hapuna Heliport", + "latitude_deg": "20.005018", + "longitude_deg": "-155.795885", + "elevation_ft": "666", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-HI", + "municipality": "Waimea (Kamuela)", + "scheduled_service": "no", + "keywords": "Mauna Kea Helicopters, Sunshine Helicopters" + }, + { + "id": "355607", + "ident": "US-6941", + "type": "heliport", + "name": "Keller Army Community Hospital Heliport", + "latitude_deg": "41.40122", + "longitude_deg": "-73.97823", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "West Point", + "scheduled_service": "no" + }, + { + "id": "355608", + "ident": "US-6942", + "type": "closed", + "name": "Peck Airport", + "latitude_deg": "42.62051", + "longitude_deg": "-73.91753", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Slingerlands", + "scheduled_service": "no" + }, + { + "id": "355616", + "ident": "US-6943", + "type": "heliport", + "name": "Big Pocono State Forest Heliport", + "latitude_deg": "41.0423", + "longitude_deg": "-75.35432", + "elevation_ft": "2096", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Tannersville", + "scheduled_service": "no" + }, + { + "id": "355617", + "ident": "US-6944", + "type": "heliport", + "name": "Mohonk Mountain House Heliport", + "latitude_deg": "41.76723", + "longitude_deg": "-74.16047", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "New Paltz", + "scheduled_service": "no" + }, + { + "id": "355618", + "ident": "US-6945", + "type": "heliport", + "name": "Atlantic Air 3 Helipad Vernon Post", + "latitude_deg": "41.18119", + "longitude_deg": "-74.533", + "elevation_ft": "407", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Vernon Township", + "scheduled_service": "no" + }, + { + "id": "355619", + "ident": "US-6946", + "type": "closed", + "name": "Hilltop Heliport", + "latitude_deg": "41.11322", + "longitude_deg": "-74.1261", + "elevation_ft": "434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Suffern", + "scheduled_service": "no" + }, + { + "id": "355624", + "ident": "US-6947", + "type": "closed", + "name": "Flying T Ranch Airport", + "latitude_deg": "43.59031", + "longitude_deg": "-83.20865", + "elevation_ft": "725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Cass City", + "scheduled_service": "no" + }, + { + "id": "355625", + "ident": "US-6948", + "type": "closed", + "name": "Gibson Airport", + "latitude_deg": "41.33142", + "longitude_deg": "-86.42738", + "elevation_ft": "754", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Plymouth", + "scheduled_service": "no" + }, + { + "id": "355636", + "ident": "US-6949", + "type": "closed", + "name": "Hi Hi Sky Ranch", + "latitude_deg": "33.19831", + "longitude_deg": "-117.34693", + "elevation_ft": "54", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oceanside", + "scheduled_service": "no" + }, + { + "id": "355638", + "ident": "US-6950", + "type": "heliport", + "name": "Lehigh Valley Hospital/Hecktown Oaks Heliport", + "latitude_deg": "40.697908", + "longitude_deg": "-75.280214", + "elevation_ft": "390", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Easton", + "scheduled_service": "no", + "gps_code": "27PN", + "local_code": "27PN" + }, + { + "id": "355639", + "ident": "US-6951", + "type": "small_airport", + "name": "Thomas Ridge Airport", + "latitude_deg": "32.450833", + "longitude_deg": "-84.249181", + "elevation_ft": "515", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Rupert", + "scheduled_service": "no", + "gps_code": "3GA7", + "local_code": "3GA7" + }, + { + "id": "355641", + "ident": "US-6952", + "type": "small_airport", + "name": "Hostetler's Airfield", + "latitude_deg": "36.407222", + "longitude_deg": "-93.464167", + "elevation_ft": "1365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Green Forest", + "scheduled_service": "no", + "gps_code": "5AR8", + "local_code": "5AR8" + }, + { + "id": "355642", + "ident": "US-6953", + "type": "heliport", + "name": "Apopka Emergency Facility Structure Heliport", + "latitude_deg": "28.688333", + "longitude_deg": "-81.554328", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "scheduled_service": "no", + "gps_code": "5FD5", + "local_code": "5FD5" + }, + { + "id": "355662", + "ident": "US-6954", + "type": "heliport", + "name": "Ste Vincent's/Ste Johns County Hospital Heliport", + "latitude_deg": "30.069722", + "longitude_deg": "-81.4975", + "elevation_ft": "27", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "St Johns", + "scheduled_service": "no", + "gps_code": "6FL2", + "local_code": "6FL2" + }, + { + "id": "355663", + "ident": "US-6955", + "type": "small_airport", + "name": "Foxtrot Field Ultralight Flightpark", + "latitude_deg": "38.511972", + "longitude_deg": "-95.021308", + "elevation_ft": "894", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Osawatomie", + "scheduled_service": "no", + "gps_code": "6KS6", + "local_code": "6KS6" + }, + { + "id": "355672", + "ident": "US-6956", + "type": "heliport", + "name": "Unity Point Marshalltown Heliport", + "latitude_deg": "42.000789", + "longitude_deg": "-92.915239", + "elevation_ft": "994", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Marshalltown", + "scheduled_service": "no", + "gps_code": "98IA", + "local_code": "98IA" + }, + { + "id": "355678", + "ident": "US-6957", + "type": "heliport", + "name": "Ahuja Medical Center Heliport", + "latitude_deg": "41.4531", + "longitude_deg": "-81.493782", + "elevation_ft": "1177", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Beachwood", + "scheduled_service": "no", + "gps_code": "9OH9", + "local_code": "9OH9" + }, + { + "id": "355680", + "ident": "US-6958", + "type": "heliport", + "name": "McLaren Regional Medical Center Heliport", + "latitude_deg": "43.014842", + "longitude_deg": "-83.732064", + "elevation_ft": "737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Flint", + "scheduled_service": "no", + "gps_code": "MI04", + "local_code": "MI04" + }, + { + "id": "355682", + "ident": "US-6959", + "type": "heliport", + "name": "Beaumont Hospital Wayne Heliport", + "latitude_deg": "42.272639", + "longitude_deg": "-83.366725", + "elevation_ft": "649", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Wayne", + "scheduled_service": "no", + "gps_code": "MI33", + "local_code": "MI33" + }, + { + "id": "355689", + "ident": "US-6960", + "type": "small_airport", + "name": "Magic Valley Airport", + "latitude_deg": "35.451066", + "longitude_deg": "-85.314181", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Dunlap", + "scheduled_service": "no", + "gps_code": "TN45", + "local_code": "TN45" + }, + { + "id": "355692", + "ident": "US-6961", + "type": "small_airport", + "name": "South Fork Field", + "latitude_deg": "36.766632", + "longitude_deg": "-81.578979", + "elevation_ft": "2300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "VA59", + "local_code": "VA59" + }, + { + "id": "355731", + "ident": "US-6962", + "type": "closed", + "name": "Nason Creek State Airport", + "latitude_deg": "47.764946", + "longitude_deg": "-120.796502", + "elevation_ft": "2188", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Leavenworth", + "scheduled_service": "no", + "keywords": "KLEN; East Stevens Pass, Dardanelles" + }, + { + "id": "355733", + "ident": "US-6963", + "type": "small_airport", + "name": "Pearly Gates Ranch Airport", + "latitude_deg": "47.77673", + "longitude_deg": "-120.66457", + "elevation_ft": "1896", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Leavenworth", + "scheduled_service": "no", + "keywords": "KLEO" + }, + { + "id": "355734", + "ident": "US-6964", + "type": "closed", + "name": "Bowers Auxiliary Field", + "latitude_deg": "47.10988", + "longitude_deg": "-120.6339", + "elevation_ft": "2154", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ellensburg", + "scheduled_service": "no" + }, + { + "id": "355735", + "ident": "US-6965", + "type": "closed", + "name": "Fancher Field", + "latitude_deg": "47.44579", + "longitude_deg": "-120.27516", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Wenatchee", + "scheduled_service": "no" + }, + { + "id": "355787", + "ident": "US-6966", + "type": "heliport", + "name": "Big Cypress National Preserve Heliport", + "latitude_deg": "25.89987", + "longitude_deg": "-81.32079", + "elevation_ft": "2", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Ochopee", + "scheduled_service": "no" + }, + { + "id": "355789", + "ident": "US-6967", + "type": "closed", + "name": "Barnes Airfield", + "latitude_deg": "34.86419", + "longitude_deg": "-117.96492", + "elevation_ft": "2340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rosamond", + "scheduled_service": "no", + "keywords": "Barnes Rancho, Happy Bottom Riding Club, Pancho Barnes" + }, + { + "id": "355790", + "ident": "US-6968", + "type": "closed", + "name": "Rancho Grande Airport", + "latitude_deg": "34.53473", + "longitude_deg": "-119.21492", + "elevation_ft": "3385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ojai", + "scheduled_service": "no" + }, + { + "id": "355791", + "ident": "US-6969", + "type": "small_airport", + "name": "Upper Hartman Ranch Airport", + "latitude_deg": "34.610164", + "longitude_deg": "-119.382334", + "elevation_ft": "4247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ojai", + "scheduled_service": "no" + }, + { + "id": "355792", + "ident": "US-6970", + "type": "small_airport", + "name": "Cuaslui Creek Airport", + "latitude_deg": "34.78462", + "longitude_deg": "-120.18502", + "elevation_ft": "1204", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Maria", + "scheduled_service": "no" + }, + { + "id": "355793", + "ident": "US-6971", + "type": "heliport", + "name": "Lebec Heliport", + "latitude_deg": "34.81107", + "longitude_deg": "-118.88781", + "elevation_ft": "4044", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Lebec", + "scheduled_service": "no" + }, + { + "id": "355794", + "ident": "US-6972", + "type": "small_airport", + "name": "Porter Ranch Airport", + "latitude_deg": "35.13192", + "longitude_deg": "-120.35665", + "elevation_ft": "753", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Arroyo Grande", + "scheduled_service": "no" + }, + { + "id": "355795", + "ident": "US-6973", + "type": "small_airport", + "name": "Pozo Airport", + "latitude_deg": "35.30181", + "longitude_deg": "-120.36211", + "elevation_ft": "1561", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Margarita", + "scheduled_service": "no" + }, + { + "id": "355796", + "ident": "US-6974", + "type": "small_airport", + "name": "Leffler Ag Services Airport", + "latitude_deg": "35.29903", + "longitude_deg": "-120.42266", + "elevation_ft": "1439", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Margarita", + "scheduled_service": "no" + }, + { + "id": "355797", + "ident": "US-6975", + "type": "small_airport", + "name": "Bean Canyon Airport", + "latitude_deg": "35.31172", + "longitude_deg": "-120.33956", + "elevation_ft": "1564", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Margarita", + "scheduled_service": "no" + }, + { + "id": "355798", + "ident": "US-6976", + "type": "small_airport", + "name": "Wilson Creek Airport", + "latitude_deg": "35.39428", + "longitude_deg": "-120.416", + "elevation_ft": "1882", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Creston", + "scheduled_service": "no" + }, + { + "id": "355799", + "ident": "US-6977", + "type": "small_airport", + "name": "Katacreek Airport", + "latitude_deg": "35.4529", + "longitude_deg": "-120.476", + "elevation_ft": "1308", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Creston", + "scheduled_service": "no" + }, + { + "id": "355800", + "ident": "US-6978", + "type": "small_airport", + "name": "Double L Ranch Airport", + "latitude_deg": "35.28597", + "longitude_deg": "-120.31308", + "elevation_ft": "1602", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Santa Margarita", + "scheduled_service": "no" + }, + { + "id": "355801", + "ident": "US-6979", + "type": "small_airport", + "name": "Italian Bar Airport", + "latitude_deg": "37.16506", + "longitude_deg": "-119.4569", + "elevation_ft": "2127", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "North Fork", + "scheduled_service": "no" + }, + { + "id": "355802", + "ident": "US-6980", + "type": "small_airport", + "name": "Gordon Gulch Airport", + "latitude_deg": "35.74478", + "longitude_deg": "-118.85077", + "elevation_ft": "1677", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Woody", + "scheduled_service": "no" + }, + { + "id": "355803", + "ident": "US-6981", + "type": "small_airport", + "name": "Dick Palmer Airport", + "latitude_deg": "37.94884", + "longitude_deg": "-113.42752", + "elevation_ft": "5105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Lund", + "scheduled_service": "no" + }, + { + "id": "355804", + "ident": "US-6982", + "type": "heliport", + "name": "Poso Fire Station Helipad", + "latitude_deg": "35.80661", + "longitude_deg": "-118.63364", + "elevation_ft": "4990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Posey", + "scheduled_service": "no" + }, + { + "id": "355805", + "ident": "US-6983", + "type": "small_airport", + "name": "Beryl Airport", + "latitude_deg": "37.87902", + "longitude_deg": "-113.68144", + "elevation_ft": "5152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Beryl", + "scheduled_service": "no" + }, + { + "id": "355806", + "ident": "US-6984", + "type": "closed", + "name": "Huggins Airport", + "latitude_deg": "40.47502", + "longitude_deg": "-85.37414", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hartford City", + "scheduled_service": "no", + "keywords": "Inman" + }, + { + "id": "355807", + "ident": "US-6985", + "type": "heliport", + "name": "IU Health Blackford Hospital Heliport", + "latitude_deg": "40.46703", + "longitude_deg": "-85.37307", + "elevation_ft": "923", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Hartford City", + "scheduled_service": "no", + "local_code": "4IN0" + }, + { + "id": "355808", + "ident": "US-6986", + "type": "closed", + "name": "Selma Airport", + "latitude_deg": "40.18815", + "longitude_deg": "-85.26042", + "elevation_ft": "1014", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IN", + "municipality": "Selma", + "scheduled_service": "no" + }, + { + "id": "355809", + "ident": "US-6987", + "type": "closed", + "name": "Rex Wiseman Airport", + "latitude_deg": "32.38057", + "longitude_deg": "-87.08911", + "elevation_ft": "131", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Selma", + "scheduled_service": "no" + }, + { + "id": "355819", + "ident": "US-6988", + "type": "small_airport", + "name": "New Prater Ranch Airport", + "latitude_deg": "33.86813", + "longitude_deg": "-82.46076", + "elevation_ft": "459", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Lincolnton", + "scheduled_service": "no" + }, + { + "id": "355820", + "ident": "US-6989", + "type": "heliport", + "name": "Atrium Health Lincoln Hospital Heliport", + "latitude_deg": "35.48848", + "longitude_deg": "-81.20397", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Lincolnton", + "scheduled_service": "no" + }, + { + "id": "355821", + "ident": "US-6990", + "type": "small_airport", + "name": "Laughing Crow Airpark", + "latitude_deg": "35.45248", + "longitude_deg": "-81.459", + "elevation_ft": "973", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Cherryville", + "scheduled_service": "no" + }, + { + "id": "355822", + "ident": "US-6991", + "type": "small_airport", + "name": "Rebel Air Field", + "latitude_deg": "35.48461", + "longitude_deg": "-81.4128", + "elevation_ft": "1004", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Vale", + "scheduled_service": "no" + }, + { + "id": "355823", + "ident": "US-6992", + "type": "small_airport", + "name": "Jarrell Airport", + "latitude_deg": "35.4239", + "longitude_deg": "-81.25374", + "elevation_ft": "829", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Lincolnton", + "scheduled_service": "no" + }, + { + "id": "355824", + "ident": "US-6993", + "type": "small_airport", + "name": "Duncan Airport", + "latitude_deg": "35.49372", + "longitude_deg": "-81.34415", + "elevation_ft": "902", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Vale", + "scheduled_service": "no" + }, + { + "id": "355825", + "ident": "US-6994", + "type": "small_airport", + "name": "Jeffords Airport", + "latitude_deg": "35.49027", + "longitude_deg": "-81.32643", + "elevation_ft": "861", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Lincolnton", + "scheduled_service": "no" + }, + { + "id": "355826", + "ident": "US-6995", + "type": "heliport", + "name": "Capital Health Regional Medical Center Heliport", + "latitude_deg": "40.23589", + "longitude_deg": "-74.75247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Trenton", + "scheduled_service": "no" + }, + { + "id": "355833", + "ident": "US-6996", + "type": "heliport", + "name": "Adventist HealthCare White Oak Medical Center Heliport", + "latitude_deg": "39.05093", + "longitude_deg": "-76.95878", + "elevation_ft": "304", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Silver Spring", + "scheduled_service": "no" + }, + { + "id": "355834", + "ident": "US-6997", + "type": "heliport", + "name": "Ranger Heliport", + "latitude_deg": "28.54811", + "longitude_deg": "-81.56346", + "elevation_ft": "108", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Winter Garden", + "scheduled_service": "no" + }, + { + "id": "355835", + "ident": "US-6998", + "type": "closed", + "name": "Scottys Incorporated Heliport", + "latitude_deg": "28.03575", + "longitude_deg": "-81.78339", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Winter Haven", + "scheduled_service": "no" + }, + { + "id": "355836", + "ident": "US-6999", + "type": "closed", + "name": "Valleywise Health Maryvale Heliport", + "latitude_deg": "33.50291", + "longitude_deg": "-112.17091", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Phoenix", + "scheduled_service": "no" + }, + { + "id": "355837", + "ident": "US-7000", + "type": "heliport", + "name": "Abrazo Buckeye Emergency Center Heliport", + "latitude_deg": "33.44197", + "longitude_deg": "-112.5552", + "elevation_ft": "1106", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Buckeye", + "scheduled_service": "no" + }, + { + "id": "355838", + "ident": "US-7001", + "type": "heliport", + "name": "Abrazo Arrowhead Campus Heliport", + "latitude_deg": "33.65611", + "longitude_deg": "-112.20133", + "elevation_ft": "1253", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Glendale", + "scheduled_service": "no" + }, + { + "id": "355839", + "ident": "US-7002", + "type": "heliport", + "name": "Naylor Place Heliport", + "latitude_deg": "34.58915", + "longitude_deg": "-118.70306", + "elevation_ft": "3242", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Castaic", + "scheduled_service": "no" + }, + { + "id": "355840", + "ident": "US-7003", + "type": "heliport", + "name": "Federal Reserve Bank Heliport", + "latitude_deg": "39.95356", + "longitude_deg": "-75.15018", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Philadelphia", + "scheduled_service": "no" + }, + { + "id": "355841", + "ident": "US-7004", + "type": "heliport", + "name": "Midstream Fuel Service Heliport", + "latitude_deg": "30.53059", + "longitude_deg": "-88.1117", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Theodore", + "scheduled_service": "no" + }, + { + "id": "355842", + "ident": "US-7005", + "type": "closed", + "name": "Girard Airport", + "latitude_deg": "29.77741", + "longitude_deg": "-96.87897", + "elevation_ft": "394", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "La Grange", + "scheduled_service": "no" + }, + { + "id": "355843", + "ident": "US-7006", + "type": "small_airport", + "name": "Kainer Airport", + "latitude_deg": "29.65893", + "longitude_deg": "-96.99035", + "elevation_ft": "375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Schulenburg", + "scheduled_service": "no" + }, + { + "id": "355844", + "ident": "US-7007", + "type": "small_airport", + "name": "Stage Coach Airport", + "latitude_deg": "33.87175", + "longitude_deg": "-113.98716", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bouse", + "scheduled_service": "no" + }, + { + "id": "355845", + "ident": "US-7008", + "type": "small_airport", + "name": "Cunningham Wash Airport", + "latitude_deg": "33.8729", + "longitude_deg": "-113.97815", + "elevation_ft": "1024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Bouse", + "scheduled_service": "no" + }, + { + "id": "355846", + "ident": "US-7009", + "type": "heliport", + "name": "Ira J Chrisman Pumping Plant Helipad", + "latitude_deg": "35.01604", + "longitude_deg": "-118.979863", + "elevation_ft": "801", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bakersfield", + "scheduled_service": "no" + }, + { + "id": "355847", + "ident": "US-7010", + "type": "heliport", + "name": "Edmonston Pumping Plant Helipad", + "latitude_deg": "34.94493", + "longitude_deg": "-118.82542", + "elevation_ft": "1224", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Arvin", + "scheduled_service": "no" + }, + { + "id": "355848", + "ident": "US-7011", + "type": "heliport", + "name": "Los Angeles County Fire Department Del Valle Regional Training Center Heliport 143A", + "latitude_deg": "34.43106", + "longitude_deg": "-118.66599", + "elevation_ft": "1383", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Castaic", + "scheduled_service": "no" + }, + { + "id": "355849", + "ident": "US-7012", + "type": "heliport", + "name": "Pomona Farming Heliport", + "latitude_deg": "35.04953", + "longitude_deg": "-119.07389", + "elevation_ft": "505", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Bakersfield", + "scheduled_service": "no" + }, + { + "id": "355850", + "ident": "US-7013", + "type": "small_airport", + "name": "Jeffrey Brown Airport", + "latitude_deg": "37.64926", + "longitude_deg": "-121.37479", + "elevation_ft": "167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Tracy", + "scheduled_service": "no" + }, + { + "id": "355851", + "ident": "US-7014", + "type": "heliport", + "name": "LZ17 Heliport", + "latitude_deg": "39.99196", + "longitude_deg": "-74.54511", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Browns Mills", + "scheduled_service": "no" + }, + { + "id": "355852", + "ident": "US-7015", + "type": "heliport", + "name": "Prince George's Equestrian Center Heliport", + "latitude_deg": "38.81179", + "longitude_deg": "-76.74539", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "Upper Marlboro", + "scheduled_service": "no" + }, + { + "id": "355853", + "ident": "US-7016", + "type": "heliport", + "name": "Ascension Saint Vincents Clay County Heliport", + "latitude_deg": "30.1076", + "longitude_deg": "-81.8329", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Middleburg", + "scheduled_service": "no" + }, + { + "id": "355854", + "ident": "US-7017", + "type": "small_airport", + "name": "4 Delta Airport", + "latitude_deg": "32.11056", + "longitude_deg": "-106.35958", + "elevation_ft": "4026", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Chaparral", + "scheduled_service": "no" + }, + { + "id": "355855", + "ident": "US-7018", + "type": "heliport", + "name": "Doña Ana Range Heliport", + "latitude_deg": "32.15206", + "longitude_deg": "-106.50506", + "elevation_ft": "4094", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Chaparral", + "scheduled_service": "no" + }, + { + "id": "355856", + "ident": "US-7019", + "type": "heliport", + "name": "Range 50 Heliport", + "latitude_deg": "32.19219", + "longitude_deg": "-106.53188", + "elevation_ft": "4544", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Vado", + "scheduled_service": "no" + }, + { + "id": "355857", + "ident": "US-7020", + "type": "heliport", + "name": "JFK Heliport", + "latitude_deg": "32.3809", + "longitude_deg": "-106.4728", + "elevation_ft": "4203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "White Sands", + "scheduled_service": "no" + }, + { + "id": "355858", + "ident": "US-7021", + "type": "heliport", + "name": "Buena Vista Pumping Plant Helipad", + "latitude_deg": "35.160179", + "longitude_deg": "-119.346848", + "elevation_ft": "443", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Maricopa", + "scheduled_service": "no" + }, + { + "id": "355859", + "ident": "US-7022", + "type": "small_airport", + "name": "Pilibos Ranch Airport", + "latitude_deg": "36.67868", + "longitude_deg": "-120.50965", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Mendota", + "scheduled_service": "no" + }, + { + "id": "355860", + "ident": "US-7023", + "type": "heliport", + "name": "McGregor Range South Heliport", + "latitude_deg": "32.02449", + "longitude_deg": "-106.1434", + "elevation_ft": "4101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Chaparral", + "scheduled_service": "no" + }, + { + "id": "355861", + "ident": "US-7024", + "type": "heliport", + "name": "McGregor Range Main Heliport", + "latitude_deg": "32.0768", + "longitude_deg": "-106.15238", + "elevation_ft": "4117", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Chaparral", + "scheduled_service": "no" + }, + { + "id": "355862", + "ident": "US-7025", + "type": "heliport", + "name": "McGregor Base Camp Heliport", + "latitude_deg": "32.07608", + "longitude_deg": "-106.17894", + "elevation_ft": "4104", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Chaparral", + "scheduled_service": "no" + }, + { + "id": "355863", + "ident": "US-7026", + "type": "heliport", + "name": "McGregor DFAC Heliport", + "latitude_deg": "32.08408", + "longitude_deg": "-106.17702", + "elevation_ft": "4117", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Chaparral", + "scheduled_service": "no" + }, + { + "id": "355883", + "ident": "US-7027", + "type": "small_airport", + "name": "Tensas River Plantation Airport", + "latitude_deg": "32.07783", + "longitude_deg": "-91.54881", + "elevation_ft": "64", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Gilbert", + "scheduled_service": "no", + "keywords": "Chicago Mill" + }, + { + "id": "355884", + "ident": "US-7028", + "type": "small_airport", + "name": "By-Macon Aero Services Airport", + "latitude_deg": "32.09508", + "longitude_deg": "-91.60544", + "elevation_ft": "77", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Winnsboro", + "scheduled_service": "no", + "keywords": "Bayou Macon, Bear" + }, + { + "id": "355885", + "ident": "US-7029", + "type": "small_airport", + "name": "Holcomb's Flying Service Airport", + "latitude_deg": "32.06816", + "longitude_deg": "-91.62666", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Gilbert", + "scheduled_service": "no" + }, + { + "id": "355886", + "ident": "US-7030", + "type": "small_airport", + "name": "Hutto's Flying Services Airport", + "latitude_deg": "31.97388", + "longitude_deg": "-91.67725", + "elevation_ft": "74", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Wisner", + "scheduled_service": "no" + }, + { + "id": "355887", + "ident": "US-7031", + "type": "closed", + "name": "Yarbrough Brothers Airport", + "latitude_deg": "31.96188", + "longitude_deg": "-91.65813", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Wisner", + "scheduled_service": "no" + }, + { + "id": "355888", + "ident": "US-7032", + "type": "closed", + "name": "Russell Airport", + "latitude_deg": "32.15886", + "longitude_deg": "-91.85913", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Winnsboro", + "scheduled_service": "no" + }, + { + "id": "355893", + "ident": "US-7033", + "type": "closed", + "name": "Kenneys Airstrip", + "latitude_deg": "32.14441", + "longitude_deg": "-92.03618", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Columbia", + "scheduled_service": "no" + }, + { + "id": "355894", + "ident": "US-7034", + "type": "closed", + "name": "Willow Wind Airport", + "latitude_deg": "32.40493", + "longitude_deg": "-92.08341", + "elevation_ft": "66", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Monroe", + "scheduled_service": "no" + }, + { + "id": "355895", + "ident": "US-7035", + "type": "heliport", + "name": "Dumont Dunes Heliport", + "latitude_deg": "35.69526", + "longitude_deg": "-116.24097", + "elevation_ft": "758", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Baker", + "scheduled_service": "no" + }, + { + "id": "355896", + "ident": "US-7036", + "type": "heliport", + "name": "Walter M Higgins Generating Station Heliport", + "latitude_deg": "35.61483", + "longitude_deg": "-115.35519", + "elevation_ft": "2781", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Primm", + "scheduled_service": "no" + }, + { + "id": "355897", + "ident": "US-7037", + "type": "closed", + "name": "North Lake Helistop", + "latitude_deg": "28.655556", + "longitude_deg": "-81.386667", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Altamonte Springs", + "scheduled_service": "no", + "keywords": "3FL7" + }, + { + "id": "355899", + "ident": "US-7038", + "type": "closed", + "name": "Makinze Trail Airport", + "latitude_deg": "63.34194", + "longitude_deg": "-143.10399", + "elevation_ft": "1624", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tok", + "scheduled_service": "no" + }, + { + "id": "355900", + "ident": "US-7039", + "type": "small_airport", + "name": "Tumey Airport", + "latitude_deg": "63.9728", + "longitude_deg": "-145.55813", + "elevation_ft": "1293", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Delta Junction", + "scheduled_service": "no" + }, + { + "id": "355901", + "ident": "US-7040", + "type": "small_airport", + "name": "Delta Junction Lodge Airport", + "latitude_deg": "63.98128", + "longitude_deg": "-145.54909", + "elevation_ft": "1290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Delta Junction", + "scheduled_service": "no" + }, + { + "id": "355902", + "ident": "US-7041", + "type": "small_airport", + "name": "Winter Trail Airport", + "latitude_deg": "64.45915", + "longitude_deg": "-146.89281", + "elevation_ft": "673", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Salcha", + "scheduled_service": "no" + }, + { + "id": "355903", + "ident": "US-7042", + "type": "small_airport", + "name": "Salchaket Airport", + "latitude_deg": "64.45729", + "longitude_deg": "-146.91206", + "elevation_ft": "669", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Salcha", + "scheduled_service": "no" + }, + { + "id": "355904", + "ident": "US-7043", + "type": "small_airport", + "name": "Yupik Berry Farm Airport", + "latitude_deg": "64.61417", + "longitude_deg": "-147.12356", + "elevation_ft": "568", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Salcha", + "scheduled_service": "no" + }, + { + "id": "355905", + "ident": "US-7044", + "type": "small_airport", + "name": "Becker Ridge Airport", + "latitude_deg": "64.77145", + "longitude_deg": "-148.03549", + "elevation_ft": "892", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Fairbanks", + "scheduled_service": "no" + }, + { + "id": "355906", + "ident": "US-7045", + "type": "small_airport", + "name": "KJ Field", + "latitude_deg": "63.90438", + "longitude_deg": "-149.03199", + "elevation_ft": "1345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Lignite", + "scheduled_service": "no" + }, + { + "id": "355907", + "ident": "US-7046", + "type": "closed", + "name": "Old Lignite Airstrip", + "latitude_deg": "63.8999", + "longitude_deg": "-148.98414", + "elevation_ft": "1276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Lignite", + "scheduled_service": "no" + }, + { + "id": "355908", + "ident": "US-7047", + "type": "small_airport", + "name": "Usibelli Coal Mine Airport", + "latitude_deg": "63.9001", + "longitude_deg": "-148.99494", + "elevation_ft": "1191", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Lignite", + "scheduled_service": "no" + }, + { + "id": "355909", + "ident": "US-7048", + "type": "small_airport", + "name": "Colorado Lake Airport", + "latitude_deg": "63.16052", + "longitude_deg": "-149.44277", + "elevation_ft": "1924", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cantwell", + "scheduled_service": "no" + }, + { + "id": "355930", + "ident": "US-7049", + "type": "closed", + "name": "Santee Golf Airstrip", + "latitude_deg": "33.48364", + "longitude_deg": "-80.45972", + "elevation_ft": "127", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Santee", + "scheduled_service": "no" + }, + { + "id": "355982", + "ident": "US-7050", + "type": "closed", + "name": "Johnson Field", + "latitude_deg": "35.83706", + "longitude_deg": "-79.93251", + "elevation_ft": "751", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Sophia", + "scheduled_service": "no" + }, + { + "id": "355983", + "ident": "US-7051", + "type": "closed", + "name": "Pugh Field", + "latitude_deg": "35.72805", + "longitude_deg": "-79.73855", + "elevation_ft": "746", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Asheboro", + "scheduled_service": "no" + }, + { + "id": "355984", + "ident": "US-7052", + "type": "closed", + "name": "Hinshaw Airport", + "latitude_deg": "35.74187", + "longitude_deg": "-79.81294", + "elevation_ft": "761", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Asheboro", + "scheduled_service": "no" + }, + { + "id": "355985", + "ident": "US-7053", + "type": "small_airport", + "name": "Arnold Ultralightport", + "latitude_deg": "38.39392", + "longitude_deg": "-90.35133", + "elevation_ft": "395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Arnold", + "scheduled_service": "no" + }, + { + "id": "355987", + "ident": "US-7054", + "type": "closed", + "name": "Fairgrove Airport", + "latitude_deg": "35.84992", + "longitude_deg": "-80.06714", + "elevation_ft": "906", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Thomasville", + "scheduled_service": "no" + }, + { + "id": "355988", + "ident": "US-7055", + "type": "closed", + "name": "Shallowford Airport", + "latitude_deg": "36.08436", + "longitude_deg": "-80.51404", + "elevation_ft": "709", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Lewisville", + "scheduled_service": "no" + }, + { + "id": "355989", + "ident": "US-7056", + "type": "small_airport", + "name": "Paradise Mountain Airport", + "latitude_deg": "40.74801", + "longitude_deg": "-95.67094", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Sidney", + "scheduled_service": "no", + "gps_code": "IA02", + "local_code": "IA02" + }, + { + "id": "356035", + "ident": "US-7057", + "type": "closed", + "name": "Wright Airport", + "latitude_deg": "40.44438", + "longitude_deg": "-88.40937", + "elevation_ft": "738", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Gibson City", + "scheduled_service": "no" + }, + { + "id": "356036", + "ident": "US-7058", + "type": "small_airport", + "name": "Hupp Flat Aiurport", + "latitude_deg": "44.056166", + "longitude_deg": "-106.183977", + "elevation_ft": "4193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Buffalo", + "scheduled_service": "no" + }, + { + "id": "356042", + "ident": "US-7059", + "type": "small_airport", + "name": "MA and KA Dickson Airport", + "latitude_deg": "39.66465", + "longitude_deg": "-102.17079", + "elevation_ft": "3808", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Idalia", + "scheduled_service": "no" + }, + { + "id": "356043", + "ident": "US-7060", + "type": "closed", + "name": "Schooley Airport", + "latitude_deg": "38.10183", + "longitude_deg": "-94.34716", + "elevation_ft": "791", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Rich Hill", + "scheduled_service": "no" + }, + { + "id": "356044", + "ident": "US-7061", + "type": "closed", + "name": "Skyway Ranch Airport", + "latitude_deg": "36.93949", + "longitude_deg": "-90.52117", + "elevation_ft": "381", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Williamsville", + "scheduled_service": "no" + }, + { + "id": "356048", + "ident": "US-7062", + "type": "closed", + "name": "Gobernador Strip Airport", + "latitude_deg": "36.70573", + "longitude_deg": "-107.38361", + "elevation_ft": "6766", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Blanco", + "scheduled_service": "no" + }, + { + "id": "356049", + "ident": "US-7063", + "type": "closed", + "name": "Sinclair Intermediate Field", + "latitude_deg": "41.80354", + "longitude_deg": "-107.05206", + "elevation_ft": "6559", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Sinclair", + "scheduled_service": "no" + }, + { + "id": "356051", + "ident": "US-7064", + "type": "closed", + "name": "Powell Flats Airport", + "latitude_deg": "44.73297", + "longitude_deg": "-108.7025", + "elevation_ft": "4341", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Powell", + "scheduled_service": "no" + }, + { + "id": "356052", + "ident": "US-7065", + "type": "closed", + "name": "Crown Hill Airport", + "latitude_deg": "44.75241", + "longitude_deg": "-108.704", + "elevation_ft": "4376", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Powell", + "scheduled_service": "no" + }, + { + "id": "356055", + "ident": "US-7066", + "type": "closed", + "name": "Forner Tuluksak Airport", + "latitude_deg": "61.096703", + "longitude_deg": "-160.969963", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tuluksak", + "scheduled_service": "no" + }, + { + "id": "356062", + "ident": "US-7067", + "type": "small_airport", + "name": "Ayotte Airport", + "latitude_deg": "48.09471", + "longitude_deg": "-114.6607", + "elevation_ft": "3944", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Marion", + "scheduled_service": "no" + }, + { + "id": "356063", + "ident": "US-7068", + "type": "closed", + "name": "Hugo Municipal Airport", + "latitude_deg": "39.15236", + "longitude_deg": "-103.48748", + "elevation_ft": "5311", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Hugo", + "scheduled_service": "no" + }, + { + "id": "356064", + "ident": "US-7069", + "type": "closed", + "name": "Stratton Municipal Airport", + "latitude_deg": "39.3113", + "longitude_deg": "-102.59851", + "elevation_ft": "4399", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Stratton", + "scheduled_service": "no" + }, + { + "id": "356065", + "ident": "US-7070", + "type": "small_airport", + "name": "Stults Family Farm Airport", + "latitude_deg": "40.2086", + "longitude_deg": "-102.30686", + "elevation_ft": "3772", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Wray", + "scheduled_service": "no" + }, + { + "id": "356072", + "ident": "US-7071", + "type": "closed", + "name": "Tustin Airport", + "latitude_deg": "38.86667", + "longitude_deg": "-100.42958", + "elevation_ft": "2604", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Gove City", + "scheduled_service": "no" + }, + { + "id": "356073", + "ident": "US-7072", + "type": "closed", + "name": "Stevenson Airport", + "latitude_deg": "38.95001", + "longitude_deg": "-100.76708", + "elevation_ft": "2916", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-KS", + "municipality": "Oakley", + "scheduled_service": "no" + }, + { + "id": "356074", + "ident": "US-7073", + "type": "heliport", + "name": "Pine Ridge Hospital Heliport", + "latitude_deg": "43.02407", + "longitude_deg": "-102.54191", + "elevation_ft": "3284", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Pine Ridge", + "scheduled_service": "no" + }, + { + "id": "356075", + "ident": "US-7074", + "type": "small_airport", + "name": "Pacific Creek Airport", + "latitude_deg": "42.25084", + "longitude_deg": "-109.13576", + "elevation_ft": "6995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Farson", + "scheduled_service": "no" + }, + { + "id": "356076", + "ident": "US-7075", + "type": "small_airport", + "name": "Farson Airport", + "latitude_deg": "42.11807", + "longitude_deg": "-109.45949", + "elevation_ft": "6621", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Farson", + "scheduled_service": "no" + }, + { + "id": "356077", + "ident": "US-7076", + "type": "closed", + "name": "Farson South Airport", + "latitude_deg": "42.0878", + "longitude_deg": "-109.44882", + "elevation_ft": "6594", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Farson", + "scheduled_service": "no" + }, + { + "id": "356078", + "ident": "US-7077", + "type": "closed", + "name": "Foraker Airport", + "latitude_deg": "40.344254", + "longitude_deg": "-81.554518", + "elevation_ft": "1012", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Port Washington", + "scheduled_service": "no" + }, + { + "id": "356079", + "ident": "US-7078", + "type": "closed", + "name": "Tappan Airfield", + "latitude_deg": "40.31003", + "longitude_deg": "-81.1099", + "elevation_ft": "906", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Cadiz", + "scheduled_service": "no" + }, + { + "id": "356080", + "ident": "US-7079", + "type": "closed", + "name": "Friendship Airpark", + "latitude_deg": "40.29189", + "longitude_deg": "-80.78204", + "elevation_ft": "1165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Bloomingdale", + "scheduled_service": "no", + "keywords": "Jefferson County" + }, + { + "id": "356081", + "ident": "US-7080", + "type": "small_airport", + "name": "Fort Valley Airport", + "latitude_deg": "38.90413", + "longitude_deg": "-78.35633", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fort Valley", + "scheduled_service": "no", + "keywords": "Secret Passage Ranch" + }, + { + "id": "356082", + "ident": "US-7081", + "type": "small_airport", + "name": "Wallops Island Drone Runway", + "latitude_deg": "37.8853", + "longitude_deg": "-75.43706", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Wallops Island", + "scheduled_service": "no" + }, + { + "id": "356083", + "ident": "US-7082", + "type": "small_airport", + "name": "Castle Landing Strip", + "latitude_deg": "37.08865", + "longitude_deg": "-77.88192", + "elevation_ft": "368", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Wilsons", + "scheduled_service": "no" + }, + { + "id": "356178", + "ident": "US-7083", + "type": "small_airport", + "name": "Grand Oak Plantation Airport", + "latitude_deg": "31.725356", + "longitude_deg": "-84.311485", + "elevation_ft": "296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Sasser", + "scheduled_service": "no", + "gps_code": "1GA6", + "local_code": "1GA6" + }, + { + "id": "356186", + "ident": "US-7084", + "type": "heliport", + "name": "Johnson Memorial Hospital Heliport", + "latitude_deg": "41.980569", + "longitude_deg": "-72.391469", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CT", + "municipality": "Hartford", + "scheduled_service": "no", + "gps_code": "20CT", + "local_code": "20CT" + }, + { + "id": "356206", + "ident": "US-7085", + "type": "small_airport", + "name": "Griswold Airport", + "latitude_deg": "30.820225", + "longitude_deg": "-87.129672", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Jay", + "scheduled_service": "no", + "gps_code": "8FL9", + "local_code": "8FL9" + }, + { + "id": "356207", + "ident": "US-7086", + "type": "heliport", + "name": "North Ridgeville Hospital Heliport", + "latitude_deg": "41.383704", + "longitude_deg": "-81.982448", + "elevation_ft": "758", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "North Ridgeville", + "scheduled_service": "no", + "gps_code": "9OH4", + "local_code": "9OH4" + }, + { + "id": "356210", + "ident": "US-7087", + "type": "heliport", + "name": "Ascension St. Vincent's Fed Heliport", + "latitude_deg": "33.64145", + "longitude_deg": "-86.612256", + "elevation_ft": "782", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Trussville", + "scheduled_service": "no", + "gps_code": "AL73", + "local_code": "AL73" + }, + { + "id": "356212", + "ident": "US-7088", + "type": "small_airport", + "name": "Bailey Air Airport", + "latitude_deg": "31.944456", + "longitude_deg": "-91.805012", + "elevation_ft": "64", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Fort Necessity", + "scheduled_service": "no", + "gps_code": "LA04", + "local_code": "LA04" + }, + { + "id": "356214", + "ident": "US-7089", + "type": "small_airport", + "name": "WC Field", + "latitude_deg": "30.858517", + "longitude_deg": "-92.81235", + "elevation_ft": "167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Elizabeth", + "scheduled_service": "no", + "gps_code": "LS46", + "local_code": "LS46" + }, + { + "id": "356216", + "ident": "US-7090", + "type": "small_airport", + "name": "Wildcat Field", + "latitude_deg": "46.285556", + "longitude_deg": "-113.518056", + "elevation_ft": "5085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Philipsburg", + "scheduled_service": "no", + "gps_code": "MT82", + "local_code": "MT82" + }, + { + "id": "356231", + "ident": "US-7091", + "type": "heliport", + "name": "Samaritan Sweet Home Health Center Heliport", + "latitude_deg": "44.405556", + "longitude_deg": "-122.676667", + "elevation_ft": "647", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Sweet Home", + "scheduled_service": "no", + "gps_code": "OR97", + "local_code": "OR97" + }, + { + "id": "15590", + "ident": "US-7092", + "type": "closed", + "name": "Trap Travelstead Field", + "latitude_deg": "32.418201", + "longitude_deg": "-95.000198", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Winona", + "scheduled_service": "no", + "keywords": "98TS" + }, + { + "id": "356448", + "ident": "US-7093", + "type": "small_airport", + "name": "Coleman Homestead Airport", + "latitude_deg": "62.105925", + "longitude_deg": "-150.109463", + "elevation_ft": "282", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Talkeetna", + "scheduled_service": "no", + "gps_code": "01CN", + "local_code": "01CN" + }, + { + "id": "429742", + "ident": "US-7094", + "type": "heliport", + "name": "Tootsie's Cabaret Heliport", + "latitude_deg": "25.942167", + "longitude_deg": "-80.202269", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "7FD3", + "local_code": "7FD3" + }, + { + "id": "429743", + "ident": "US-7095", + "type": "heliport", + "name": "Regional One Health Helipad", + "latitude_deg": "35.142213", + "longitude_deg": "-90.031607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TN", + "municipality": "Memphis", + "scheduled_service": "no", + "gps_code": "05TN", + "local_code": "05TN" + }, + { + "id": "429750", + "ident": "US-7096", + "type": "small_airport", + "name": "White Stone Ranch Airport", + "latitude_deg": "31.854306", + "longitude_deg": "-97.93625", + "elevation_ft": "1174", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Hico", + "scheduled_service": "no", + "gps_code": "22XA", + "local_code": "22XA" + }, + { + "id": "429755", + "ident": "US-7097", + "type": "small_airport", + "name": "Hamilton Strip", + "latitude_deg": "31.212736", + "longitude_deg": "-83.636056", + "elevation_ft": "298", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Norman Park", + "scheduled_service": "no", + "gps_code": "GA49", + "local_code": "GA49" + }, + { + "id": "429761", + "ident": "US-7098", + "type": "heliport", + "name": "VCU Childrens Medical Center Helipad", + "latitude_deg": "37.540633", + "longitude_deg": "-77.431628", + "elevation_ft": "448", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "VG10", + "local_code": "VG10" + }, + { + "id": "429766", + "ident": "US-7099", + "type": "heliport", + "name": "Laguna Seca Raceway Heliport", + "latitude_deg": "36.586191", + "longitude_deg": "-121.75979", + "elevation_ft": "846", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Monterey", + "scheduled_service": "no" + }, + { + "id": "429860", + "ident": "US-7100", + "type": "small_airport", + "name": "TAC-X Army Airfield / Dean Field", + "latitude_deg": "32.10129", + "longitude_deg": "-81.65883", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Pembroke", + "scheduled_service": "no", + "keywords": "Fort Stewart" + }, + { + "id": "429900", + "ident": "US-7101", + "type": "small_airport", + "name": "Burkett Ranch Airport", + "latitude_deg": "30.34381", + "longitude_deg": "-97.09811", + "elevation_ft": "482", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lincoln", + "scheduled_service": "no" + }, + { + "id": "429904", + "ident": "US-7102", + "type": "closed", + "name": "Roy Municipal Airport", + "latitude_deg": "35.93483", + "longitude_deg": "-104.1929", + "elevation_ft": "5895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Roy", + "scheduled_service": "no" + }, + { + "id": "429905", + "ident": "US-7103", + "type": "heliport", + "name": "Alpine Private Heliport", + "latitude_deg": "33.82468", + "longitude_deg": "-109.12852", + "elevation_ft": "7993", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Alpine", + "scheduled_service": "no" + }, + { + "id": "429906", + "ident": "US-7104", + "type": "closed", + "name": "Zorro Ranch Airport", + "latitude_deg": "35.25154", + "longitude_deg": "-105.97701", + "elevation_ft": "6642", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NM", + "municipality": "Stanley", + "scheduled_service": "no" + }, + { + "id": "429982", + "ident": "US-7105", + "type": "closed", + "name": "Bar O Ranch Airport", + "latitude_deg": "30.483567", + "longitude_deg": "-99.569534", + "elevation_ft": "2070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Junction", + "scheduled_service": "no" + }, + { + "id": "429983", + "ident": "US-7106", + "type": "small_airport", + "name": "Dabbs Airport", + "latitude_deg": "33.914897", + "longitude_deg": "-80.128598", + "elevation_ft": "132", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Mayesville", + "scheduled_service": "no" + }, + { + "id": "430001", + "ident": "US-7107", + "type": "closed", + "name": "Woodpecker Landing Strip", + "latitude_deg": "45.68465", + "longitude_deg": "-118.72027", + "elevation_ft": "1396", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Pendleton", + "scheduled_service": "no" + }, + { + "id": "430002", + "ident": "US-7108", + "type": "closed", + "name": "Horne Airfield", + "latitude_deg": "45.59503", + "longitude_deg": "-118.75178", + "elevation_ft": "1403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Pendleton", + "scheduled_service": "no" + }, + { + "id": "430003", + "ident": "US-7109", + "type": "closed", + "name": "Butter Creek Airport", + "latitude_deg": "45.48118", + "longitude_deg": "-119.11471", + "elevation_ft": "1979", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Pilot Rock", + "scheduled_service": "no" + }, + { + "id": "430004", + "ident": "US-7110", + "type": "closed", + "name": "Butter Creek Airport", + "latitude_deg": "45.48118", + "longitude_deg": "-119.11471", + "elevation_ft": "1979", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Pilot Rock", + "scheduled_service": "no" + }, + { + "id": "430011", + "ident": "US-7111", + "type": "balloonport", + "name": "Great Park Balloon Ride", + "latitude_deg": "33.6726", + "longitude_deg": "-117.7431", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Irvine", + "scheduled_service": "no" + }, + { + "id": "430019", + "ident": "US-7112", + "type": "closed", + "name": "Watson Island Blimp Base", + "latitude_deg": "25.78601", + "longitude_deg": "-80.17733", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no" + }, + { + "id": "430051", + "ident": "US-7113", + "type": "closed", + "name": "Grand Prairie Armed Forces Reserve Complex", + "latitude_deg": "32.74", + "longitude_deg": "-96.97", + "elevation_ft": "486", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Grand Prairie", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grand_Prairie_Armed_Forces_Reserve_Complex", + "keywords": "Hensley Field, NAS Dallas" + }, + { + "id": "430053", + "ident": "US-7114", + "type": "heliport", + "name": "Fayette Coal Power Plant South Heliport", + "latitude_deg": "29.91035", + "longitude_deg": "-96.75454", + "elevation_ft": "378", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "La Grange", + "scheduled_service": "no" + }, + { + "id": "430054", + "ident": "US-7115", + "type": "closed", + "name": "Allen Airstrip", + "latitude_deg": "31.83078", + "longitude_deg": "-93.27681", + "elevation_ft": "121", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Allen", + "scheduled_service": "no" + }, + { + "id": "430055", + "ident": "US-7116", + "type": "closed", + "name": "Wardview Airport", + "latitude_deg": "32.9684", + "longitude_deg": "-93.76994", + "elevation_ft": "198", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Plain Dealing", + "scheduled_service": "no" + }, + { + "id": "430056", + "ident": "US-7117", + "type": "small_airport", + "name": "Clark Ranch Airport", + "latitude_deg": "39.6692", + "longitude_deg": "-123.47953", + "elevation_ft": "1643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Laytonville", + "scheduled_service": "no" + }, + { + "id": "430057", + "ident": "US-7118", + "type": "heliport", + "name": "Cal Fire Laytonville Fire Station Heliport", + "latitude_deg": "39.70267", + "longitude_deg": "-123.48628", + "elevation_ft": "1737", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Laytonville", + "scheduled_service": "no" + }, + { + "id": "430059", + "ident": "US-7119", + "type": "small_airport", + "name": "Capell Valley Airport", + "latitude_deg": "38.46194", + "longitude_deg": "-122.19456", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Napa", + "scheduled_service": "no" + }, + { + "id": "430062", + "ident": "US-7120", + "type": "small_airport", + "name": "La Grange Airpark", + "latitude_deg": "41.65395", + "longitude_deg": "-104.20652", + "elevation_ft": "4534", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "La Grange", + "scheduled_service": "no" + }, + { + "id": "430065", + "ident": "US-7121", + "type": "closed", + "name": "Anderson Airport", + "latitude_deg": "41.60311", + "longitude_deg": "-103.9033", + "elevation_ft": "4605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NE", + "municipality": "Harrisburg", + "scheduled_service": "no" + }, + { + "id": "430073", + "ident": "US-7122", + "type": "closed", + "name": "Pine Bluff Toney Airport", + "latitude_deg": "34.19568", + "longitude_deg": "-91.96526", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Pine Bluff", + "scheduled_service": "no" + }, + { + "id": "430132", + "ident": "US-7123", + "type": "closed", + "name": "Eminence Airport", + "latitude_deg": "37.18782", + "longitude_deg": "-91.40539", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Eminence", + "scheduled_service": "no" + }, + { + "id": "430134", + "ident": "US-7124", + "type": "closed", + "name": "Harwell Airport", + "latitude_deg": "35.67948", + "longitude_deg": "-89.99037", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Osceola", + "scheduled_service": "no" + }, + { + "id": "430135", + "ident": "US-7125", + "type": "heliport", + "name": "Osceola Medical Center Heliport", + "latitude_deg": "45.301", + "longitude_deg": "-92.70082", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Osceola", + "scheduled_service": "no" + }, + { + "id": "430137", + "ident": "US-7126", + "type": "heliport", + "name": "Osceola Medical Center Heliport", + "latitude_deg": "45.301", + "longitude_deg": "-92.70082", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Osceola", + "scheduled_service": "no" + }, + { + "id": "430138", + "ident": "US-7127", + "type": "closed", + "name": "Creamery Package Airport", + "latitude_deg": "35.55688", + "longitude_deg": "-90.16116", + "elevation_ft": "233", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Joiner", + "scheduled_service": "no" + }, + { + "id": "430139", + "ident": "US-7128", + "type": "closed", + "name": "Marion West Airport", + "latitude_deg": "35.20596", + "longitude_deg": "-90.21543", + "elevation_ft": "222", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Marion", + "scheduled_service": "no" + }, + { + "id": "430140", + "ident": "US-7129", + "type": "closed", + "name": "Marion South Airport", + "latitude_deg": "35.20046", + "longitude_deg": "-90.21044", + "elevation_ft": "218", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Marion", + "scheduled_service": "no" + }, + { + "id": "430232", + "ident": "US-7130", + "type": "heliport", + "name": "Iowa Speedway Heliport", + "latitude_deg": "41.67473", + "longitude_deg": "-93.01357", + "elevation_ft": "901", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Newton", + "scheduled_service": "no" + }, + { + "id": "430253", + "ident": "US-7131", + "type": "heliport", + "name": "Children's Hospital Colorado North Campus Heliport", + "latitude_deg": "40.00208", + "longitude_deg": "-104.99247", + "elevation_ft": "5186", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Broomfield", + "scheduled_service": "no" + }, + { + "id": "430254", + "ident": "US-7132", + "type": "heliport", + "name": "St. Anthony North Hospital Heliport", + "latitude_deg": "39.95629", + "longitude_deg": "-104.99059", + "elevation_ft": "5195", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Westminster", + "scheduled_service": "no" + }, + { + "id": "430259", + "ident": "US-7133", + "type": "closed", + "name": "Fry Airport", + "latitude_deg": "43.59126", + "longitude_deg": "-119.01868", + "elevation_ft": "4150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OR", + "municipality": "Burns", + "scheduled_service": "no" + }, + { + "id": "430262", + "ident": "US-7134", + "type": "small_airport", + "name": "Pine Creek Airport", + "latitude_deg": "47.35774", + "longitude_deg": "-117.33768", + "elevation_ft": "2425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Spangle", + "scheduled_service": "no" + }, + { + "id": "430263", + "ident": "US-7135", + "type": "closed", + "name": "Hardesty Airport", + "latitude_deg": "47.33535", + "longitude_deg": "-117.32215", + "elevation_ft": "2395", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Spangle", + "scheduled_service": "no" + }, + { + "id": "430264", + "ident": "US-7136", + "type": "closed", + "name": "North Pine Airport", + "latitude_deg": "47.27226", + "longitude_deg": "-117.35477", + "elevation_ft": "2345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Spangle", + "scheduled_service": "no" + }, + { + "id": "430265", + "ident": "US-7137", + "type": "closed", + "name": "Freeman Place Airport", + "latitude_deg": "46.14097", + "longitude_deg": "-114.91767", + "elevation_ft": "2425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Kooskia", + "scheduled_service": "no", + "keywords": "Seminole Ranch" + }, + { + "id": "430266", + "ident": "US-7138", + "type": "closed", + "name": "Garden City Gliderport", + "latitude_deg": "43.71488", + "longitude_deg": "-116.29837", + "elevation_ft": "2879", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Garden City", + "scheduled_service": "no" + }, + { + "id": "430267", + "ident": "US-7139", + "type": "closed", + "name": "Currant Southeast Airport", + "latitude_deg": "38.72325", + "longitude_deg": "-115.45959", + "elevation_ft": "5256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "430269", + "ident": "US-7140", + "type": "closed", + "name": "Potato City Airfield", + "latitude_deg": "41.75562", + "longitude_deg": "-77.87371", + "elevation_ft": "2464", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Coudersport", + "scheduled_service": "no" + }, + { + "id": "430270", + "ident": "US-7141", + "type": "closed", + "name": "Ulysses Airport", + "latitude_deg": "41.877932", + "longitude_deg": "-77.71029", + "elevation_ft": "2550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Ulysses", + "scheduled_service": "no" + }, + { + "id": "430305", + "ident": "US-7142", + "type": "closed", + "name": "Williams Field", + "latitude_deg": "43.34169", + "longitude_deg": "-82.835768", + "elevation_ft": "764", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Sandusky", + "scheduled_service": "no", + "keywords": "05G" + }, + { + "id": "430372", + "ident": "US-7143", + "type": "closed", + "name": "Northeast Cape Air Force Station", + "latitude_deg": "63.32758", + "longitude_deg": "-168.970231", + "elevation_ft": "3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Saint Lawrence Island", + "scheduled_service": "no", + "home_link": "http://www.fortwiki.com/Northeast_Cape_Air_Force_Station" + }, + { + "id": "430399", + "ident": "US-7144", + "type": "small_airport", + "name": "Marshall Farms Airport", + "latitude_deg": "41.860383", + "longitude_deg": "-88.655742", + "elevation_ft": "841", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IL", + "municipality": "Cortland", + "scheduled_service": "no", + "gps_code": "08IL", + "local_code": "08IL" + }, + { + "id": "430409", + "ident": "US-7145", + "type": "seaplane_base", + "name": "Kevins Seaport Seaplane Base", + "latitude_deg": "42.274442", + "longitude_deg": "-72.599656", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MA", + "municipality": "South Hadley", + "scheduled_service": "no", + "gps_code": "14MA", + "local_code": "14MA" + }, + { + "id": "430413", + "ident": "US-7146", + "type": "seaplane_base", + "name": "Tarvair Seaplane Base", + "latitude_deg": "28.540556", + "longitude_deg": "-81.778911", + "elevation_ft": "97", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Clermont", + "scheduled_service": "no", + "gps_code": "43FL", + "local_code": "43FL" + }, + { + "id": "430426", + "ident": "US-7147", + "type": "seaplane_base", + "name": "Luckys Seaplane Base", + "latitude_deg": "46.991499", + "longitude_deg": "-95.048462", + "elevation_ft": "1490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Park Rapids", + "scheduled_service": "no", + "gps_code": "70MN", + "local_code": "70MN" + }, + { + "id": "430430", + "ident": "US-7148", + "type": "heliport", + "name": "Baycare Wesley Chapel Hospital Heliport", + "latitude_deg": "28.221988", + "longitude_deg": "-82.356868", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Wesley Chapel", + "scheduled_service": "no", + "gps_code": "7FL2", + "local_code": "7FL2" + }, + { + "id": "430435", + "ident": "US-7149", + "type": "heliport", + "name": "Sarasota Memorial Hospital Heliport", + "latitude_deg": "27.136668", + "longitude_deg": "-82.412521", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Venice", + "scheduled_service": "no", + "gps_code": "8FD8", + "local_code": "8FD8" + }, + { + "id": "430444", + "ident": "US-7150", + "type": "heliport", + "name": "OneLegacy Helistop", + "latitude_deg": "34.12885", + "longitude_deg": "-117.927658", + "elevation_ft": "628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Azusa", + "scheduled_service": "no", + "gps_code": "CA48", + "local_code": "CA48" + }, + { + "id": "430446", + "ident": "US-7151", + "type": "small_airport", + "name": "Whiskey Throttle Field", + "latitude_deg": "30.432778", + "longitude_deg": "-85.499306", + "elevation_ft": "137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Panama City", + "scheduled_service": "no", + "gps_code": "FL83", + "local_code": "FL83" + }, + { + "id": "430450", + "ident": "US-7152", + "type": "heliport", + "name": "Orlando Health Randal Park Heliport", + "latitude_deg": "28.429656", + "longitude_deg": "-81.231367", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Orlando", + "scheduled_service": "no", + "local_code": "FL46" + }, + { + "id": "430451", + "ident": "US-7153", + "type": "small_airport", + "name": "Danford Field", + "latitude_deg": "48.150719", + "longitude_deg": "-114.166831", + "elevation_ft": "2882", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Kalispell", + "scheduled_service": "no", + "gps_code": "MT26", + "local_code": "MT26" + }, + { + "id": "430453", + "ident": "US-7154", + "type": "small_airport", + "name": "Montfort Ranch Airport", + "latitude_deg": "45.193345", + "longitude_deg": "-111.716805", + "elevation_ft": "5407", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MT", + "municipality": "Cameron", + "scheduled_service": "no", + "gps_code": "MT68", + "local_code": "MT68" + }, + { + "id": "430469", + "ident": "US-7155", + "type": "small_airport", + "name": "Gritz Field", + "latitude_deg": "28.630675", + "longitude_deg": "-97.385894", + "elevation_ft": "182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Goliad", + "scheduled_service": "no", + "gps_code": "XS46", + "local_code": "XS46" + }, + { + "id": "430471", + "ident": "US-7156", + "type": "heliport", + "name": "Mount St Marys Hospital Helipad", + "latitude_deg": "43.153497", + "longitude_deg": "-79.031407", + "elevation_ft": "607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Lewiston", + "scheduled_service": "no", + "gps_code": "5NY3", + "local_code": "5NY3" + }, + { + "id": "430510", + "ident": "US-7157", + "type": "closed", + "name": "Former Dublin Airport", + "latitude_deg": "32.1038", + "longitude_deg": "-98.30114", + "elevation_ft": "1401", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dublin", + "scheduled_service": "no" + }, + { + "id": "430511", + "ident": "US-7158", + "type": "heliport", + "name": "North Runnels Hospital Heliport", + "latitude_deg": "31.94923", + "longitude_deg": "-99.95871", + "elevation_ft": "1817", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Winters", + "scheduled_service": "no" + }, + { + "id": "430513", + "ident": "US-7159", + "type": "heliport", + "name": "Ineos Phenol Heliport", + "latitude_deg": "30.52958", + "longitude_deg": "-88.127459", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AL", + "municipality": "Theodore", + "scheduled_service": "no" + }, + { + "id": "430514", + "ident": "US-7160", + "type": "heliport", + "name": "Baptist Health Bethesda Hospital West Heliport", + "latitude_deg": "26.52929", + "longitude_deg": "-80.19844", + "elevation_ft": "21", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Boynton Beach", + "scheduled_service": "no", + "local_code": "FL47" + }, + { + "id": "430530", + "ident": "US-7161", + "type": "heliport", + "name": "HCA Florida Englewood Hospital Heliport", + "latitude_deg": "26.95098", + "longitude_deg": "-82.32641", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Englewood", + "scheduled_service": "no" + }, + { + "id": "430536", + "ident": "US-7162", + "type": "small_airport", + "name": "BNCFL Airport", + "latitude_deg": "29.58089", + "longitude_deg": "-81.59189", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "San Mateo", + "scheduled_service": "no", + "gps_code": "34FL", + "local_code": "34FL" + }, + { + "id": "430543", + "ident": "US-7163", + "type": "heliport", + "name": "HCA Florida Citrus Hospital Heliport", + "latitude_deg": "28.83402", + "longitude_deg": "-82.3354", + "elevation_ft": "82", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Inverness", + "scheduled_service": "no" + }, + { + "id": "430544", + "ident": "US-7164", + "type": "closed", + "name": "Holtsmans Airport", + "latitude_deg": "38.689446", + "longitude_deg": "-121.524131", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rio Linda", + "scheduled_service": "no", + "keywords": "CA16" + }, + { + "id": "430545", + "ident": "US-7165", + "type": "heliport", + "name": "VA Medical Center Livermore Heliport", + "latitude_deg": "37.6271", + "longitude_deg": "-121.75961", + "elevation_ft": "558", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Livermore", + "scheduled_service": "no" + }, + { + "id": "430546", + "ident": "US-7166", + "type": "closed", + "name": "Davis Airport", + "latitude_deg": "35.61022", + "longitude_deg": "-117.67256", + "elevation_ft": "2299", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Ridgecrest", + "scheduled_service": "no" + }, + { + "id": "430547", + "ident": "US-7167", + "type": "closed", + "name": "Rosamond West Airstrip", + "latitude_deg": "34.87194", + "longitude_deg": "-118.22307", + "elevation_ft": "2435", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rosamond", + "scheduled_service": "no" + }, + { + "id": "430548", + "ident": "US-7168", + "type": "small_airport", + "name": "Werner Airport", + "latitude_deg": "34.92876", + "longitude_deg": "-118.19864", + "elevation_ft": "2704", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Rosamond", + "scheduled_service": "no" + }, + { + "id": "430549", + "ident": "US-7169", + "type": "small_airport", + "name": "Flying Acres Airport", + "latitude_deg": "43.34701", + "longitude_deg": "-75.3579", + "elevation_ft": "856", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Westernville", + "scheduled_service": "no" + }, + { + "id": "430550", + "ident": "US-7170", + "type": "heliport", + "name": "Madison County Memorial Heliport Helport", + "latitude_deg": "30.47176", + "longitude_deg": "-83.41852", + "elevation_ft": "177", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Madison", + "scheduled_service": "no" + }, + { + "id": "430551", + "ident": "US-7171", + "type": "heliport", + "name": "ShorePoint Health Punta Gorda Heliport", + "latitude_deg": "26.94194", + "longitude_deg": "-82.03866", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Punta Gorda", + "scheduled_service": "no", + "keywords": "Belmont Health Punta Gorda Heliport" + }, + { + "id": "430552", + "ident": "US-7172", + "type": "small_airport", + "name": "Adana Airfield", + "latitude_deg": "26.95232", + "longitude_deg": "-81.86994", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Punta Gorda", + "scheduled_service": "no", + "gps_code": "40FL", + "local_code": "40FL" + }, + { + "id": "430553", + "ident": "US-7173", + "type": "heliport", + "name": "Butte Meadows Heliport", + "latitude_deg": "40.08107", + "longitude_deg": "-121.55278", + "elevation_ft": "4348", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Butte Meadows", + "scheduled_service": "no" + }, + { + "id": "430554", + "ident": "US-7174", + "type": "heliport", + "name": "Feather River Hospital Heliport", + "latitude_deg": "39.75836", + "longitude_deg": "-121.57007", + "elevation_ft": "1917", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Paradise", + "scheduled_service": "no" + }, + { + "id": "430555", + "ident": "US-7175", + "type": "small_airport", + "name": "Woods Bay Airport", + "latitude_deg": "32.085", + "longitude_deg": "-109.70134", + "elevation_ft": "4301", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Willcox", + "scheduled_service": "no" + }, + { + "id": "430556", + "ident": "US-7176", + "type": "heliport", + "name": "Air Force Research Laboratory Heliport", + "latitude_deg": "34.92597", + "longitude_deg": "-117.69473", + "elevation_ft": "3018", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Boron", + "scheduled_service": "no" + }, + { + "id": "430557", + "ident": "US-7177", + "type": "small_airport", + "name": "Basile Flying Service Airport", + "latitude_deg": "30.51849", + "longitude_deg": "-92.58601", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Basile", + "scheduled_service": "no" + }, + { + "id": "430558", + "ident": "US-7178", + "type": "small_airport", + "name": "Detraz Flying Service Airport", + "latitude_deg": "29.91137", + "longitude_deg": "-92.17985", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Abbeville", + "scheduled_service": "no" + }, + { + "id": "430559", + "ident": "US-7179", + "type": "heliport", + "name": "Round Mountain Substation Heliport", + "latitude_deg": "40.80885", + "longitude_deg": "-121.93626", + "elevation_ft": "2137", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Round Mountain", + "scheduled_service": "no" + }, + { + "id": "430560", + "ident": "US-7180", + "type": "heliport", + "name": "Cal Fire Manton Heliport", + "latitude_deg": "40.43347", + "longitude_deg": "-121.8747", + "elevation_ft": "1967", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Manton", + "scheduled_service": "no" + }, + { + "id": "430561", + "ident": "US-7181", + "type": "heliport", + "name": "Anselmo Heliport", + "latitude_deg": "40.51487", + "longitude_deg": "-121.9981", + "elevation_ft": "1715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Shingletown", + "scheduled_service": "no" + }, + { + "id": "430562", + "ident": "US-7182", + "type": "small_airport", + "name": "Stony Island Airport", + "latitude_deg": "43.89052", + "longitude_deg": "-76.32743", + "elevation_ft": "296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hounsfield", + "scheduled_service": "no" + }, + { + "id": "430563", + "ident": "US-7183", + "type": "small_airport", + "name": "Galloo Island Airport", + "latitude_deg": "43.9055", + "longitude_deg": "-76.39704", + "elevation_ft": "287", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Hounsfield", + "scheduled_service": "no" + }, + { + "id": "430574", + "ident": "US-7184", + "type": "heliport", + "name": "George Regional Hospital Heliport", + "latitude_deg": "30.92265", + "longitude_deg": "-88.59386", + "elevation_ft": "266", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MS", + "municipality": "Lucedale", + "scheduled_service": "no" + }, + { + "id": "430575", + "ident": "US-7185", + "type": "heliport", + "name": "Bonita Community Health Center Heliport", + "latitude_deg": "26.3947", + "longitude_deg": "-81.80806", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Bonita Springs", + "scheduled_service": "no" + }, + { + "id": "430576", + "ident": "US-7186", + "type": "heliport", + "name": "Old Station Helibase", + "latitude_deg": "40.66875", + "longitude_deg": "-121.41966", + "elevation_ft": "4370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Old Station", + "scheduled_service": "no" + }, + { + "id": "430577", + "ident": "US-7187", + "type": "heliport", + "name": "Shasta County Fire Department Company 12 Heliport", + "latitude_deg": "40.67636", + "longitude_deg": "-121.42791", + "elevation_ft": "4373", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Old Station", + "scheduled_service": "no" + }, + { + "id": "430578", + "ident": "US-7188", + "type": "closed", + "name": "Sky Ranch Airport", + "latitude_deg": "40.36226", + "longitude_deg": "-79.71691", + "elevation_ft": "1146", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Trafford", + "scheduled_service": "no" + }, + { + "id": "430579", + "ident": "US-7189", + "type": "small_airport", + "name": "Edisto Island Private Airstrip", + "latitude_deg": "32.54185", + "longitude_deg": "-80.30939", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Edisto Island", + "scheduled_service": "no" + }, + { + "id": "430593", + "ident": "US-7190", + "type": "closed", + "name": "Pownal Airport", + "latitude_deg": "43.8757", + "longitude_deg": "-70.20746", + "elevation_ft": "126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ME", + "municipality": "Pownal", + "scheduled_service": "no" + }, + { + "id": "430594", + "ident": "US-7191", + "type": "closed", + "name": "C&M Ranch Airport", + "latitude_deg": "35.24002", + "longitude_deg": "-102.660488", + "elevation_ft": "4091", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Adrian", + "scheduled_service": "no" + }, + { + "id": "430599", + "ident": "US-7192", + "type": "closed", + "name": "Lewistown Airport", + "latitude_deg": "40.56473", + "longitude_deg": "-77.6394", + "elevation_ft": "581", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Lewistown", + "scheduled_service": "no" + }, + { + "id": "430600", + "ident": "US-7193", + "type": "small_airport", + "name": "Dixie Valley Bombing Range Airfield", + "latitude_deg": "39.24092", + "longitude_deg": "-118.24309", + "elevation_ft": "4298", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Fallon", + "scheduled_service": "no" + }, + { + "id": "430602", + "ident": "US-7194", + "type": "small_airport", + "name": "Mellan Airstrip", + "latitude_deg": "37.68407", + "longitude_deg": "-116.62354", + "elevation_ft": "5404", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "430603", + "ident": "US-7195", + "type": "small_airport", + "name": "C14 Airport", + "latitude_deg": "37.755515", + "longitude_deg": "-116.645794", + "elevation_ft": "5463", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "430604", + "ident": "US-7196", + "type": "closed", + "name": "Silent Butte Target Airfield", + "latitude_deg": "37.37728", + "longitude_deg": "-116.46684", + "elevation_ft": "5328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "430605", + "ident": "US-7197", + "type": "closed", + "name": "Gold Flat Target Airfield", + "latitude_deg": "37.42488", + "longitude_deg": "-116.65547", + "elevation_ft": "5265", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "430606", + "ident": "US-7198", + "type": "closed", + "name": "Scottys Junction Airport", + "latitude_deg": "37.283617", + "longitude_deg": "-117.043962", + "elevation_ft": "4030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Beatty", + "scheduled_service": "no" + }, + { + "id": "430607", + "ident": "US-7199", + "type": "closed", + "name": "Frans Star Ranch Airport", + "latitude_deg": "36.93943", + "longitude_deg": "-116.72484", + "elevation_ft": "3440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Beatty", + "scheduled_service": "no" + }, + { + "id": "430608", + "ident": "US-7200", + "type": "closed", + "name": "Pahute Mesa South Target Airfield", + "latitude_deg": "37.36475", + "longitude_deg": "-116.8289", + "elevation_ft": "5312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "430609", + "ident": "US-7201", + "type": "closed", + "name": "Pahute Mesa North Target Airfield", + "latitude_deg": "37.43041", + "longitude_deg": "-116.85282", + "elevation_ft": "5413", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "430610", + "ident": "US-7202", + "type": "closed", + "name": "Civet Cat Canyon Target Airfield", + "latitude_deg": "37.59178", + "longitude_deg": "-116.92259", + "elevation_ft": "4849", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "430611", + "ident": "US-7203", + "type": "heliport", + "name": "Tonopah Test Range ECW Heliport", + "latitude_deg": "37.71217", + "longitude_deg": "-116.44342", + "elevation_ft": "5712", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "430614", + "ident": "US-7204", + "type": "closed", + "name": "Electronic Warfare Target Airfield", + "latitude_deg": "37.40207", + "longitude_deg": "-116.2414", + "elevation_ft": "5436", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "430615", + "ident": "US-7205", + "type": "closed", + "name": "Indian Springs Auxiliary Field Number 2", + "latitude_deg": "37.53418", + "longitude_deg": "-116.49489", + "elevation_ft": "5197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Tonopah", + "scheduled_service": "no" + }, + { + "id": "430616", + "ident": "US-7206", + "type": "closed", + "name": "Two Buttes Airport", + "latitude_deg": "37.5642", + "longitude_deg": "-102.40337", + "elevation_ft": "4112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Two Buttes", + "scheduled_service": "no" + }, + { + "id": "430617", + "ident": "US-7207", + "type": "small_airport", + "name": "Air Sprayers Airport", + "latitude_deg": "37.64431", + "longitude_deg": "-102.42857", + "elevation_ft": "4197", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Granada", + "scheduled_service": "no" + }, + { + "id": "430641", + "ident": "US-7208", + "type": "heliport", + "name": "Hangar Studios Heliport", + "latitude_deg": "30.73588", + "longitude_deg": "-97.87436", + "elevation_ft": "1021", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Liberty Hill", + "scheduled_service": "no" + }, + { + "id": "14122", + "ident": "US-7GA6", + "type": "closed", + "name": "Holder's Field", + "latitude_deg": "33.3615", + "longitude_deg": "-84.1446", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Locust Grove", + "scheduled_service": "no", + "keywords": "7GA6" + }, + { + "id": "15357", + "ident": "US-92N", + "type": "heliport", + "name": "Steel Pier Taj Mahal Heliport", + "latitude_deg": "39.356426", + "longitude_deg": "-74.418232", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Atlantic City", + "scheduled_service": "no", + "gps_code": "28NJ", + "local_code": "28NJ", + "keywords": "Formerly 92N" + }, + { + "id": "15405", + "ident": "US-93TX", + "type": "closed", + "name": "Putz Aero Inc Airport", + "latitude_deg": "30.915738", + "longitude_deg": "-96.685774", + "elevation_ft": "279", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Calvert", + "scheduled_service": "no", + "keywords": "93TX" + }, + { + "id": "38690", + "ident": "US-BPA", + "type": "closed", + "name": "Grumman Bethpage Airport", + "latitude_deg": "40.749401092499994", + "longitude_deg": "-73.4960021973", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Bethpage", + "scheduled_service": "no", + "iata_code": "BPA" + }, + { + "id": "42732", + "ident": "US-BRC", + "type": "small_airport", + "name": "Black Rock City Airport (duplicate)", + "latitude_deg": "0.01", + "longitude_deg": "-0.01", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NV", + "municipality": "Gerlach", + "scheduled_service": "no" + }, + { + "id": "16595", + "ident": "US-CA64", + "type": "closed", + "name": "Gilbreath Bros Duck Club Airport", + "latitude_deg": "35.677086", + "longitude_deg": "-119.582131", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Wasco", + "scheduled_service": "no", + "keywords": "CA64" + }, + { + "id": "16876", + "ident": "US-CO22", + "type": "small_airport", + "name": "Greenhorn Valley Airport", + "latitude_deg": "37.959662", + "longitude_deg": "-104.785066", + "elevation_ft": "5796", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "scheduled_service": "no", + "keywords": "CO22" + }, + { + "id": "17405", + "ident": "US-FL35", + "type": "closed", + "name": "Eglin Field Nr 2 Airport", + "latitude_deg": "30.5777", + "longitude_deg": "-86.450798", + "elevation_ft": "159", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Valparaiso", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pierce_Field", + "keywords": "FL35, Pierce Field" + }, + { + "id": "17520", + "ident": "US-GA46", + "type": "closed", + "name": "Newnan Hospital Heliport", + "latitude_deg": "33.380901", + "longitude_deg": "-84.801003", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-GA", + "municipality": "Newnan", + "scheduled_service": "no", + "keywords": "GA46" + }, + { + "id": "21470", + "ident": "US-LA03", + "type": "closed", + "name": "Daniel Airport", + "latitude_deg": "30.355631", + "longitude_deg": "-91.275771", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Addis", + "scheduled_service": "no", + "keywords": "LA03" + }, + { + "id": "21503", + "ident": "US-LA36", + "type": "closed", + "name": "Charlie Airport", + "latitude_deg": "32.419601", + "longitude_deg": "-93.234299", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Fryeburg", + "scheduled_service": "no", + "keywords": "LA36" + }, + { + "id": "21542", + "ident": "US-LA75", + "type": "closed", + "name": "Braithwaite Park Airport", + "latitude_deg": "29.860404", + "longitude_deg": "-89.903124", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "Braithwaite", + "scheduled_service": "no", + "keywords": "LA75" + }, + { + "id": "21551", + "ident": "US-LA84", + "type": "closed", + "name": "Humana Hospital New Orleans Heliport", + "latitude_deg": "30.041901", + "longitude_deg": "-89.958397", + "elevation_ft": "-3", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-LA", + "municipality": "New Orleans", + "scheduled_service": "no", + "keywords": "LA84" + }, + { + "id": "23122", + "ident": "US-NJ77", + "type": "closed", + "name": "Caven Point USAR Center Heliport", + "latitude_deg": "40.650101", + "longitude_deg": "-74.0829", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NJ", + "municipality": "Jersey City", + "scheduled_service": "no", + "keywords": "NJ77" + }, + { + "id": "23664", + "ident": "US-OI05", + "type": "small_airport", + "name": "Nain Military Airport", + "latitude_deg": "33.093649", + "longitude_deg": "53.41278", + "elevation_ft": "3550", + "continent": "AS", + "iso_country": "IR", + "iso_region": "IR-10", + "municipality": "Chupanan", + "scheduled_service": "no" + }, + { + "id": "23670", + "ident": "US-OI21", + "type": "heliport", + "name": "Va Hospital Heliport", + "latitude_deg": "39.3666992188", + "longitude_deg": "-82.99990081790001", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-OH", + "municipality": "Chillicothe", + "scheduled_service": "no", + "gps_code": "OI21", + "local_code": "OI21" + }, + { + "id": "24018", + "ident": "US-PA47", + "type": "small_airport", + "name": "Dream Air Airport", + "latitude_deg": "41.852933", + "longitude_deg": "-80.407192", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Albion", + "scheduled_service": "no", + "local_code": "07PA", + "keywords": "PA47, Jim Shearer" + }, + { + "id": "24447", + "ident": "US-SC49", + "type": "heliport", + "name": "Bamberg County Memorial Hospital Heliport", + "latitude_deg": "33.307174", + "longitude_deg": "-81.028461", + "elevation_ft": "152", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SC", + "municipality": "Bamberg", + "scheduled_service": "no", + "local_code": "SC49" + }, + { + "id": "25169", + "ident": "US-TX54", + "type": "closed", + "name": "Aero Estates Airport", + "latitude_deg": "33.298501", + "longitude_deg": "-96.863897", + "elevation_ft": "605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Celina", + "scheduled_service": "no", + "keywords": "TX54" + }, + { + "id": "25316", + "ident": "US-UT73", + "type": "heliport", + "name": "Diamond 'G' Ranch Heliport", + "latitude_deg": "37.23469924926758", + "longitude_deg": "-113.2770004272461", + "elevation_ft": "3020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Toquerville", + "scheduled_service": "no", + "gps_code": "UT73", + "local_code": "UT73" + }, + { + "id": "25320", + "ident": "US-UT77", + "type": "heliport", + "name": "Aladdin Air Heliport", + "latitude_deg": "37.698299407958984", + "longitude_deg": "-112.18299865722656", + "elevation_ft": "7540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Tropic", + "scheduled_service": "no", + "gps_code": "UT77", + "local_code": "UT77" + }, + { + "id": "25371", + "ident": "US-VA38", + "type": "heliport", + "name": "LZ Alfa Heliport", + "latitude_deg": "36.790333", + "longitude_deg": "-75.96621", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Virginia Beach", + "scheduled_service": "no", + "local_code": "VA38" + }, + { + "id": "25379", + "ident": "US-VA47", + "type": "heliport", + "name": "Rockingham Memorial Hospital Heliport", + "latitude_deg": "38.405312", + "longitude_deg": "-78.854038", + "elevation_ft": "1452", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Harrisonburg", + "scheduled_service": "no", + "gps_code": "VA47", + "local_code": "VA47", + "keywords": "Sentara RMH" + }, + { + "id": "25383", + "ident": "US-VA51", + "type": "heliport", + "name": "Dmme Heliport", + "latitude_deg": "36.8557014465332", + "longitude_deg": "-82.75959777832031", + "elevation_ft": "1950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Big Stone Gap", + "scheduled_service": "no", + "gps_code": "VA51", + "local_code": "VA51" + }, + { + "id": "25385", + "ident": "US-VA53", + "type": "heliport", + "name": "Nichols Heliport", + "latitude_deg": "37.647499084472656", + "longitude_deg": "-76.43299865722656", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "White Stone", + "scheduled_service": "no", + "gps_code": "VA53", + "local_code": "VA53" + }, + { + "id": "25406", + "ident": "US-VA74", + "type": "heliport", + "name": "Caton South Heliport", + "latitude_deg": "38.04570007324219", + "longitude_deg": "-77.78140258789062", + "elevation_ft": "260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Mineral", + "scheduled_service": "no", + "gps_code": "VA74", + "local_code": "VA74" + }, + { + "id": "17813", + "ident": "US0099", + "type": "small_airport", + "name": "Murray Airport", + "latitude_deg": "48.354198455799995", + "longitude_deg": "-116.507003784", + "elevation_ft": "2220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ID", + "municipality": "Sandpoint", + "scheduled_service": "no" + }, + { + "id": "26370", + "ident": "USCC", + "type": "medium_airport", + "name": "Chelyabinsk Balandino Airport", + "latitude_deg": "55.305801", + "longitude_deg": "61.5033", + "elevation_ft": "769", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CHE", + "municipality": "Chelyabinsk", + "scheduled_service": "yes", + "gps_code": "USCC", + "iata_code": "CEK", + "home_link": "http://cekport.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chelyabinsk_Airport" + }, + { + "id": "34963", + "ident": "USCG", + "type": "small_airport", + "name": "Chelyabinsk Shagol Airport", + "latitude_deg": "55.2599983215332", + "longitude_deg": "61.29999923706055", + "elevation_ft": "830", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-CHE", + "scheduled_service": "no", + "gps_code": "USCG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chelyabinsk_Shagol_Airport", + "keywords": "Bakal Airport" + }, + { + "id": "26371", + "ident": "USCM", + "type": "medium_airport", + "name": "Magnitogorsk International Airport", + "latitude_deg": "53.39310073852539", + "longitude_deg": "58.755699157714844", + "elevation_ft": "1430", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BA", + "municipality": "Magnitogorsk", + "scheduled_service": "yes", + "gps_code": "USCM", + "iata_code": "MQF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Magnitogorsk_International_Airport" + }, + { + "id": "44456", + "ident": "USCV", + "type": "small_airport", + "name": "Kalachevo Airfield", + "latitude_deg": "54.952999114990234", + "longitude_deg": "61.5", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-CHE", + "municipality": "Chelyabinsk", + "scheduled_service": "no", + "gps_code": "USCV", + "keywords": "Аэродром Калачево" + }, + { + "id": "327554", + "ident": "USDA", + "type": "medium_airport", + "name": "Sabetta International Airport", + "latitude_deg": "71.219167", + "longitude_deg": "72.052222", + "elevation_ft": "46", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Sabetta", + "scheduled_service": "yes", + "gps_code": "USDA", + "iata_code": "SBT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sabetta_International_Airport" + }, + { + "id": "343470", + "ident": "USDB", + "type": "medium_airport", + "name": "Bovanenkovo Airport", + "latitude_deg": "70.315278", + "longitude_deg": "68.333611", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Bovanenkovo", + "scheduled_service": "yes", + "gps_code": "USDB", + "iata_code": "BVJ", + "home_link": "https://avia.gazprom.com/about/airports/bovanenkovo/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bovanenkovo_Airport", + "keywords": "HELIOPS,GAZPROM,LNG" + }, + { + "id": "26372", + "ident": "USDD", + "type": "medium_airport", + "name": "Salekhard Airport", + "latitude_deg": "66.5907974243164", + "longitude_deg": "66.61100006103516", + "elevation_ft": "218", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Salekhard", + "scheduled_service": "yes", + "gps_code": "USDD", + "iata_code": "SLY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salekhard_Airport" + }, + { + "id": "44854", + "ident": "USDH", + "type": "closed", + "name": "Kharasavey Airport", + "latitude_deg": "71.238106", + "longitude_deg": "66.920894", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TYU", + "municipality": "Kharasavey", + "scheduled_service": "no", + "gps_code": "USDH", + "keywords": "Аэропорт Харасавей, Аэропорт Харасавэй" + }, + { + "id": "43664", + "ident": "USDI", + "type": "small_airport", + "name": "Antipayuta Airport", + "latitude_deg": "69.092869", + "longitude_deg": "76.860989", + "elevation_ft": "69", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Antipayuta", + "scheduled_service": "no", + "gps_code": "USDI", + "keywords": "УСДИ, Аэропорт Антипаюта" + }, + { + "id": "32551", + "ident": "USDK", + "type": "small_airport", + "name": "Mys Kamenny Airport", + "latitude_deg": "68.467676", + "longitude_deg": "73.596733", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Mys Kamennyi", + "scheduled_service": "no", + "gps_code": "USDK", + "iata_code": "YMK", + "keywords": "Аэропорт Мыс Каменный" + }, + { + "id": "44848", + "ident": "USDL", + "type": "heliport", + "name": "Labytnangi Heliport", + "latitude_deg": "66.67449951171875", + "longitude_deg": "66.44200134277344", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Labytnangi", + "scheduled_service": "no", + "gps_code": "USDL", + "keywords": "Вертодром Лабытнанги" + }, + { + "id": "44669", + "ident": "USDO", + "type": "small_airport", + "name": "Tolka Airport", + "latitude_deg": "63.987808", + "longitude_deg": "82.050889", + "elevation_ft": "92", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Tolka", + "scheduled_service": "yes", + "gps_code": "USDO", + "keywords": "Аэропорт Толька" + }, + { + "id": "45048", + "ident": "USDP", + "type": "small_airport", + "name": "Krasnoselkup Airport", + "latitude_deg": "65.717", + "longitude_deg": "82.455", + "elevation_ft": "101", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Krasnoselkup", + "scheduled_service": "no", + "gps_code": "USDP", + "iata_code": "KKQ", + "keywords": "Аэропорт Красноселькуп" + }, + { + "id": "43339", + "ident": "USDR", + "type": "small_airport", + "name": "Yar-Sale Airport", + "latitude_deg": "66.853517", + "longitude_deg": "70.847406", + "elevation_ft": "33", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Yar-Sale", + "scheduled_service": "no", + "gps_code": "USDR", + "keywords": "Yar-Salye Airport, Аэропорт Яр-Сале" + }, + { + "id": "32552", + "ident": "USDS", + "type": "small_airport", + "name": "Tarko-Sale Airport", + "latitude_deg": "64.930485", + "longitude_deg": "77.811295", + "elevation_ft": "82", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Tarko-Sale", + "scheduled_service": "no", + "gps_code": "USDS", + "iata_code": "TQL" + }, + { + "id": "32553", + "ident": "USDT", + "type": "small_airport", + "name": "Tazovsky Airport", + "latitude_deg": "67.4842", + "longitude_deg": "78.644402", + "elevation_ft": "92", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Tazovsky", + "scheduled_service": "no", + "gps_code": "USDT" + }, + { + "id": "44860", + "ident": "USDU", + "type": "small_airport", + "name": "Urengoy Airport", + "latitude_deg": "65.9599990845", + "longitude_deg": "78.43699646", + "elevation_ft": "56", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Urengoy", + "scheduled_service": "no", + "gps_code": "USDU", + "iata_code": "UEN", + "keywords": "Аэропорт Уренгой" + }, + { + "id": "310629", + "ident": "USHA", + "type": "small_airport", + "name": "Saranpaul' Airport", + "latitude_deg": "64.2571", + "longitude_deg": "60.9123", + "elevation_ft": "90", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Saranpaul'", + "scheduled_service": "no", + "gps_code": "USHA", + "keywords": "УСХА, Саранпауль" + }, + { + "id": "43693", + "ident": "USHB", + "type": "medium_airport", + "name": "Berezovo Airport", + "latitude_deg": "63.92100143432617", + "longitude_deg": "65.03050231933594", + "elevation_ft": "98", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KHM", + "scheduled_service": "no", + "gps_code": "USHB", + "iata_code": "EZV", + "keywords": "Beryozovo Airport, Аэропорт Березово, Аэропорт Берёзово" + }, + { + "id": "26373", + "ident": "USHH", + "type": "medium_airport", + "name": "Khanty Mansiysk Airport", + "latitude_deg": "61.028499603271484", + "longitude_deg": "69.08609771728516", + "elevation_ft": "76", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Khanty-Mansiysk", + "scheduled_service": "yes", + "gps_code": "USHH", + "iata_code": "HMA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khanty-Mansiysk_Airport" + }, + { + "id": "43688", + "ident": "USHI", + "type": "small_airport", + "name": "Igrim Airport", + "latitude_deg": "63.200391", + "longitude_deg": "64.440136", + "elevation_ft": "79", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHM", + "scheduled_service": "no", + "gps_code": "USHI", + "iata_code": "IRM", + "keywords": "Аэропорт Игрим" + }, + { + "id": "42942", + "ident": "USHK", + "type": "small_airport", + "name": "Kondinskoye Airport", + "latitude_deg": "59.65508270263672", + "longitude_deg": "67.43004608154297", + "elevation_ft": "131", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Kondinskoye", + "scheduled_service": "no", + "gps_code": "USHK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kondinskoye_Airport", + "keywords": "Аэропорт Кондинское" + }, + { + "id": "44617", + "ident": "USHL", + "type": "small_airport", + "name": "Lugovoy Airport", + "latitude_deg": "59.7239990234375", + "longitude_deg": "65.83300018310547", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Lugovoy", + "scheduled_service": "yes", + "gps_code": "USHL", + "keywords": "Аэропорт Луговой" + }, + { + "id": "42944", + "ident": "USHN", + "type": "medium_airport", + "name": "Nyagan Airport", + "latitude_deg": "62.110001", + "longitude_deg": "65.614998", + "elevation_ft": "361", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Nyagan", + "scheduled_service": "yes", + "gps_code": "USHN", + "iata_code": "NYA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nyagan_Airport", + "keywords": "УСХН, Аэропорт Нягань" + }, + { + "id": "32554", + "ident": "USHS", + "type": "medium_airport", + "name": "Sovetskiy Airport", + "latitude_deg": "61.326622009277344", + "longitude_deg": "63.60191345214844", + "elevation_ft": "351", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Sovetskiy", + "scheduled_service": "yes", + "gps_code": "USHS", + "iata_code": "OVS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sovetsky_Tyumenskaya", + "keywords": "Sovyetskiy Airport, Sovyetsky Airport, Sovetsky Airport, Аэропорт Советский" + }, + { + "id": "32548", + "ident": "USHU", + "type": "medium_airport", + "name": "Uray Airport", + "latitude_deg": "60.10329818725586", + "longitude_deg": "64.82669830322266", + "elevation_ft": "190", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Uray", + "scheduled_service": "yes", + "gps_code": "USHU", + "iata_code": "URJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Uray_Airport", + "keywords": "Urai" + }, + { + "id": "43692", + "ident": "USHY", + "type": "medium_airport", + "name": "Beloyarskiy Airport", + "latitude_deg": "63.686901", + "longitude_deg": "66.698601", + "elevation_ft": "82", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHM", + "scheduled_service": "yes", + "gps_code": "USHQ", + "iata_code": "EYK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beloyarsk_Airport", + "keywords": "Beloyarsky Airport, Аэропорт Белоярский, УСХЯ" + }, + { + "id": "31670", + "ident": "USII", + "type": "medium_airport", + "name": "Izhevsk Airport", + "latitude_deg": "56.82809829711914", + "longitude_deg": "53.45750045776367", + "elevation_ft": "531", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-UD", + "municipality": "Izhevsk", + "scheduled_service": "yes", + "gps_code": "USII", + "iata_code": "IJK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Izhevsk_Airport", + "keywords": "Аэропорт Ижевск" + }, + { + "id": "42945", + "ident": "USKK", + "type": "medium_airport", + "name": "Pobedilovo Airport", + "latitude_deg": "58.503883", + "longitude_deg": "49.347831", + "elevation_ft": "479", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KIR", + "municipality": "Kirov", + "scheduled_service": "yes", + "gps_code": "USKK", + "iata_code": "KVX", + "home_link": "http://www.pobedilovo.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pobedilovo_Airport", + "keywords": "Аэропорт Победилово" + }, + { + "id": "35175", + "ident": "USMM", + "type": "medium_airport", + "name": "Nadym Airport", + "latitude_deg": "65.48090362548828", + "longitude_deg": "72.69889831542969", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Nadym", + "scheduled_service": "yes", + "gps_code": "USMM", + "iata_code": "NYM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nadym_Airport", + "keywords": "Аэропорт Надым" + }, + { + "id": "32057", + "ident": "USMU", + "type": "medium_airport", + "name": "Novy Urengoy Airport", + "latitude_deg": "66.06939697265625", + "longitude_deg": "76.52030181884766", + "elevation_ft": "210", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Novy Urengoy", + "scheduled_service": "yes", + "gps_code": "USMU", + "iata_code": "NUX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Novy_Urengoy_Airport" + }, + { + "id": "26374", + "ident": "USNN", + "type": "medium_airport", + "name": "Nizhnevartovsk Airport", + "latitude_deg": "60.94929885864258", + "longitude_deg": "76.48359680175781", + "elevation_ft": "177", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Nizhnevartovsk", + "scheduled_service": "yes", + "gps_code": "USNN", + "iata_code": "NJC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nizhnevartovsk_Airport" + }, + { + "id": "32197", + "ident": "USNR", + "type": "closed", + "name": "Raduzhny Airport", + "latitude_deg": "62.1586", + "longitude_deg": "77.328903", + "elevation_ft": "250", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Raduzhnyi", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Raduzhny_Airport", + "keywords": "RAT, USNR" + }, + { + "id": "316934", + "ident": "USO", + "type": "closed", + "name": "Usino Airport", + "latitude_deg": "-5.5276", + "longitude_deg": "145.371", + "elevation_ft": "430", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Usino", + "scheduled_service": "no", + "iata_code": "USO", + "keywords": "Usini" + }, + { + "id": "34943", + "ident": "USPB", + "type": "small_airport", + "name": "Bakharevka Airport", + "latitude_deg": "57.951698303222656", + "longitude_deg": "56.19499969482422", + "elevation_ft": "564", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PER", + "municipality": "Perm", + "scheduled_service": "no", + "gps_code": "USPB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bakharevka_Airport", + "keywords": "Аэропорт Бахаревка" + }, + { + "id": "26375", + "ident": "USPP", + "type": "medium_airport", + "name": "Perm International Airport", + "latitude_deg": "57.914501", + "longitude_deg": "56.021198", + "elevation_ft": "404", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PER", + "municipality": "Perm", + "scheduled_service": "yes", + "gps_code": "USPP", + "iata_code": "PEE", + "home_link": "http://www.aviaperm.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Perm_International_Airport", + "keywords": "Bolshoye Savino" + }, + { + "id": "42976", + "ident": "USPT", + "type": "small_airport", + "name": "Berezniki Airport", + "latitude_deg": "59.57954788208008", + "longitude_deg": "56.85768127441406", + "elevation_ft": "207", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PER", + "municipality": "Solikamsk", + "scheduled_service": "no", + "gps_code": "USPT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Berezniki_Airport", + "keywords": "Аэропорт Березники" + }, + { + "id": "315317", + "ident": "USRA", + "type": "small_airport", + "name": "Ay-Pim Airport", + "latitude_deg": "62.265", + "longitude_deg": "71.191", + "elevation_ft": "258", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Ay-Pim", + "scheduled_service": "no", + "gps_code": "USRA", + "local_code": "USRA", + "keywords": "УСРА, Ай-Пим Аэродромы" + }, + { + "id": "26376", + "ident": "USRK", + "type": "medium_airport", + "name": "Kogalym International Airport", + "latitude_deg": "62.190399169921875", + "longitude_deg": "74.53379821777344", + "elevation_ft": "220", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Kogalym", + "scheduled_service": "yes", + "gps_code": "USRK", + "iata_code": "KGP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kogalym_International_Airport" + }, + { + "id": "42943", + "ident": "USRN", + "type": "medium_airport", + "name": "Nefteyugansk Airport", + "latitude_deg": "61.108299255371094", + "longitude_deg": "72.6500015258789", + "elevation_ft": "115", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Nefteyugansk", + "scheduled_service": "yes", + "gps_code": "USRN", + "iata_code": "NFG", + "home_link": "http://www.nuatc.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nefteyugansk_Airport", + "keywords": "Аэропорт Нефтеюганск" + }, + { + "id": "35176", + "ident": "USRO", + "type": "medium_airport", + "name": "Noyabrsk Airport", + "latitude_deg": "63.18330001831055", + "longitude_deg": "75.2699966430664", + "elevation_ft": "446", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-YAN", + "municipality": "Noyabrsk", + "scheduled_service": "yes", + "gps_code": "USRO", + "iata_code": "NOJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Noyabrsk_Airport" + }, + { + "id": "26377", + "ident": "USRR", + "type": "medium_airport", + "name": "Surgut Airport", + "latitude_deg": "61.34370040893555", + "longitude_deg": "73.40180206298828", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KHM", + "municipality": "Surgut", + "scheduled_service": "yes", + "gps_code": "USRR", + "iata_code": "SGC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Surgut_Airport" + }, + { + "id": "42984", + "ident": "USSE", + "type": "closed", + "name": "Severouralsk Airport", + "latitude_deg": "60.301666259765625", + "longitude_deg": "60.07500076293945", + "elevation_ft": "604", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SVE", + "municipality": "Severouralsk", + "scheduled_service": "no", + "gps_code": "USSE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Severouralsk_Airport", + "keywords": "Аэропорт Североуральск" + }, + { + "id": "42985", + "ident": "USSK", + "type": "medium_airport", + "name": "Uktus Airport", + "latitude_deg": "56.701698303222656", + "longitude_deg": "60.790000915527344", + "elevation_ft": "643", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SVE", + "municipality": "Yekaterinburg", + "scheduled_service": "no", + "gps_code": "USSK", + "home_link": "http://uktus.uralfirm.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Uktus_Airport", + "keywords": "Аэропорт Уктус" + }, + { + "id": "315324", + "ident": "USSQ", + "type": "small_airport", + "name": "Alapayevsk Airfield", + "latitude_deg": "57.868108", + "longitude_deg": "61.748304", + "elevation_ft": "420", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SVE", + "municipality": "Alapayevsk", + "scheduled_service": "no", + "gps_code": "USSQ", + "local_code": "USSQ", + "keywords": "УССЯ, Алапаевск, Alapaevsk" + }, + { + "id": "26378", + "ident": "USSS", + "type": "large_airport", + "name": "Koltsovo Airport", + "latitude_deg": "56.743099212646", + "longitude_deg": "60.802700042725", + "elevation_ft": "764", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SVE", + "municipality": "Yekaterinburg", + "scheduled_service": "yes", + "gps_code": "USSS", + "iata_code": "SVX", + "home_link": "http://www.koltsovo.ru/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Koltsovo_Airport" + }, + { + "id": "342469", + "ident": "USTJ", + "type": "small_airport", + "name": "Remezov Airport", + "latitude_deg": "58.058466", + "longitude_deg": "68.343392", + "elevation_ft": "167", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TYU", + "municipality": "Tobolsk", + "scheduled_service": "no", + "gps_code": "USTJ", + "iata_code": "RMZ", + "keywords": "Tobolsk New, Ремезова" + }, + { + "id": "42992", + "ident": "USTL", + "type": "small_airport", + "name": "Plekhanovo Airport", + "latitude_deg": "57.144691", + "longitude_deg": "65.469718", + "elevation_ft": "308", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TYU", + "municipality": "Tyumen", + "scheduled_service": "no", + "gps_code": "USTL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Plekhanovo_Airport", + "keywords": "Plekhanovo" + }, + { + "id": "32471", + "ident": "USTO", + "type": "small_airport", + "name": "Tobolsk Airport", + "latitude_deg": "58.135799407958984", + "longitude_deg": "68.23190307617188", + "elevation_ft": "167", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-TYU", + "municipality": "Tobolsk", + "scheduled_service": "no", + "gps_code": "USTO", + "iata_code": "TOX" + }, + { + "id": "26379", + "ident": "USTR", + "type": "medium_airport", + "name": "Roshchino International Airport", + "latitude_deg": "57.189601898199996", + "longitude_deg": "65.3243026733", + "elevation_ft": "378", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-TYU", + "municipality": "Tyumen", + "scheduled_service": "yes", + "gps_code": "USTR", + "iata_code": "TJM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roschino_International_Airport" + }, + { + "id": "44868", + "ident": "USUK", + "type": "small_airport", + "name": "Kurtamysh Airfield", + "latitude_deg": "54.918263", + "longitude_deg": "64.471722", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KGN", + "municipality": "Kurtamysh", + "scheduled_service": "no", + "gps_code": "USUK", + "keywords": "Аэропорт Куртамыш" + }, + { + "id": "31773", + "ident": "USUU", + "type": "medium_airport", + "name": "Kurgan Airport", + "latitude_deg": "55.47529983520508", + "longitude_deg": "65.41560363769531", + "elevation_ft": "240", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KGN", + "municipality": "Kurgan", + "scheduled_service": "yes", + "gps_code": "USUU", + "iata_code": "KRO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kurgan_Airport" + }, + { + "id": "46314", + "ident": "USW", + "type": "small_airport", + "name": "Boggs Field Airport", + "latitude_deg": "38.823797", + "longitude_deg": "-81.348829", + "elevation_ft": "928", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Spencer", + "scheduled_service": "no", + "gps_code": "KUSW", + "local_code": "USW" + }, + { + "id": "25243", + "ident": "UT00", + "type": "small_airport", + "name": "Swains Creek Airport", + "latitude_deg": "37.472198486328125", + "longitude_deg": "-112.62200164794922", + "elevation_ft": "7780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Alton", + "scheduled_service": "no", + "gps_code": "UT00", + "local_code": "UT00" + }, + { + "id": "25244", + "ident": "UT01", + "type": "closed", + "name": "FHP Hospital Heliport", + "latitude_deg": "40.716702", + "longitude_deg": "-111.889", + "elevation_ft": "4250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Salt Lake City", + "scheduled_service": "no", + "keywords": "UT01" + }, + { + "id": "25245", + "ident": "UT02", + "type": "closed", + "name": "Sandy Ranch Airport", + "latitude_deg": "38.088902", + "longitude_deg": "-111.067001", + "elevation_ft": "5468", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Torrey", + "scheduled_service": "no", + "local_code": "UT02", + "keywords": "UT02" + }, + { + "id": "25246", + "ident": "UT03", + "type": "small_airport", + "name": "Hite Airport", + "latitude_deg": "37.894702", + "longitude_deg": "-110.379124", + "elevation_ft": "3840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no", + "gps_code": "UT03", + "local_code": "UT03" + }, + { + "id": "25247", + "ident": "UT04", + "type": "heliport", + "name": "Arches Tours Heliport", + "latitude_deg": "38.600197", + "longitude_deg": "-109.573679", + "elevation_ft": "4100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Moab", + "scheduled_service": "no", + "gps_code": "UT04", + "local_code": "UT04" + }, + { + "id": "25248", + "ident": "UT05", + "type": "heliport", + "name": "Utah National Guard Headquarters Heliport", + "latitude_deg": "40.517398834228516", + "longitude_deg": "-111.88899993896484", + "elevation_ft": "4430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Draper", + "scheduled_service": "no", + "gps_code": "UT05", + "local_code": "UT05" + }, + { + "id": "25249", + "ident": "UT06", + "type": "closed", + "name": "Rogers Roost Airport", + "latitude_deg": "38.966266", + "longitude_deg": "-109.719847", + "elevation_ft": "5100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Thompson Springs", + "scheduled_service": "no", + "keywords": "UT06" + }, + { + "id": "25250", + "ident": "UT07", + "type": "closed", + "name": "Air Village Strip", + "latitude_deg": "40.424999", + "longitude_deg": "-109.592002", + "elevation_ft": "5800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Vernal", + "scheduled_service": "no", + "keywords": "UT07" + }, + { + "id": "25251", + "ident": "UT08", + "type": "closed", + "name": "Camp Williams Airfield", + "latitude_deg": "40.4319", + "longitude_deg": "-111.931", + "elevation_ft": "4860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Saratoga Springs", + "scheduled_service": "no", + "keywords": "UT08" + }, + { + "id": "25252", + "ident": "UT09", + "type": "small_airport", + "name": "Tavaputs Ranch Airport", + "latitude_deg": "39.500912", + "longitude_deg": "-110.179739", + "elevation_ft": "9200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Sunnyside", + "scheduled_service": "no", + "gps_code": "UT09", + "local_code": "UT09" + }, + { + "id": "25253", + "ident": "UT10", + "type": "small_airport", + "name": "Cedar Valley Airport", + "latitude_deg": "40.357201", + "longitude_deg": "-112.017997", + "elevation_ft": "5000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Eagle Mountain", + "scheduled_service": "no", + "gps_code": "UT10", + "local_code": "UT10", + "keywords": "Cedar Fort" + }, + { + "id": "25254", + "ident": "UT11", + "type": "heliport", + "name": "Intermountain Medical Center Helipad", + "latitude_deg": "40.66025161739999", + "longitude_deg": "-111.889526367", + "elevation_ft": "4314", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Murray", + "scheduled_service": "no", + "gps_code": "UT11", + "local_code": "UT11" + }, + { + "id": "25255", + "ident": "UT12", + "type": "heliport", + "name": "Gilbert Development Shop Heliport", + "latitude_deg": "37.6875", + "longitude_deg": "-113.08599853515625", + "elevation_ft": "5670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Cedar City", + "scheduled_service": "no", + "gps_code": "UT12", + "local_code": "UT12" + }, + { + "id": "25256", + "ident": "UT13", + "type": "small_airport", + "name": "Number 18 Airport", + "latitude_deg": "40.563899993896484", + "longitude_deg": "-112.01399993896484", + "elevation_ft": "4820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "South Jordan", + "scheduled_service": "no", + "gps_code": "UT13", + "local_code": "UT13" + }, + { + "id": "25257", + "ident": "UT14", + "type": "heliport", + "name": "Brigham City Community Hospital Heliport", + "latitude_deg": "41.491953", + "longitude_deg": "-112.026418", + "elevation_ft": "4313", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Brigham City", + "scheduled_service": "no", + "gps_code": "UT14", + "local_code": "UT14" + }, + { + "id": "25258", + "ident": "UT15", + "type": "small_airport", + "name": "Flying Cal Ute Rancheros Airport", + "latitude_deg": "37.9286003112793", + "longitude_deg": "-112.76899719238281", + "elevation_ft": "5764", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Paragonah", + "scheduled_service": "no", + "gps_code": "UT15", + "local_code": "UT15" + }, + { + "id": "25259", + "ident": "UT16", + "type": "heliport", + "name": "McKay-Dee Hospital Center Heliport", + "latitude_deg": "41.182899", + "longitude_deg": "-111.955002", + "elevation_ft": "4615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Ogden", + "scheduled_service": "no", + "gps_code": "UT16", + "local_code": "UT16" + }, + { + "id": "25260", + "ident": "UT17", + "type": "small_airport", + "name": "Pfeiler Ranch Airport", + "latitude_deg": "37.93220138549805", + "longitude_deg": "-112.33200073242188", + "elevation_ft": "7040", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Panguitch", + "scheduled_service": "no", + "gps_code": "UT17", + "local_code": "UT17" + }, + { + "id": "25261", + "ident": "UT18", + "type": "closed", + "name": "U S Forest Service Heliport", + "latitude_deg": "40.7533", + "longitude_deg": "-111.847", + "elevation_ft": "4800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Salt Lake City", + "scheduled_service": "no", + "keywords": "UT18" + }, + { + "id": "25262", + "ident": "UT19", + "type": "heliport", + "name": "Salt Lake Regional Medical Center Heliport", + "latitude_deg": "40.767515", + "longitude_deg": "-111.861894", + "elevation_ft": "4519", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Salt Lake City", + "scheduled_service": "no", + "gps_code": "UT19", + "local_code": "UT19", + "keywords": "Holy Cross Hospital Heliport" + }, + { + "id": "6371", + "ident": "UT1A", + "type": "small_airport", + "name": "Isfara Airport", + "latitude_deg": "40.121545", + "longitude_deg": "70.667209", + "elevation_ft": "2814", + "continent": "AS", + "iso_country": "TJ", + "iso_region": "TJ-SU", + "municipality": "Isfara", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Isfara_Airport", + "keywords": "UT1A" + }, + { + "id": "6372", + "ident": "UT1B", + "type": "small_airport", + "name": "Moskovskiy Pyandzh Airport", + "latitude_deg": "37.64039993286133", + "longitude_deg": "69.64659881591797", + "elevation_ft": "1624", + "continent": "AS", + "iso_country": "TJ", + "iso_region": "TJ-KT", + "municipality": "Ak-Mazar", + "scheduled_service": "no", + "keywords": "UT1B" + }, + { + "id": "6373", + "ident": "UT1C", + "type": "small_airport", + "name": "Khorog Airport", + "latitude_deg": "37.502222", + "longitude_deg": "71.513333", + "elevation_ft": "6700", + "continent": "AS", + "iso_country": "TJ", + "iso_region": "TJ-GB", + "municipality": "Khorog", + "scheduled_service": "no", + "gps_code": "UTOD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khorog_Airport", + "keywords": "UT1C" + }, + { + "id": "6390", + "ident": "UT1E", + "type": "small_airport", + "name": "Pitnyak Airport", + "latitude_deg": "41.124373", + "longitude_deg": "61.414535", + "elevation_ft": "358", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-L", + "municipality": "Gazojak", + "scheduled_service": "no", + "keywords": "UT1E" + }, + { + "id": "6391", + "ident": "UT1F", + "type": "small_airport", + "name": "Yangadzha Airport", + "latitude_deg": "40.038486", + "longitude_deg": "53.32868", + "elevation_ft": "-20", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-B", + "municipality": "Yangadzha", + "scheduled_service": "no", + "keywords": "UT1F" + }, + { + "id": "6392", + "ident": "UT1G", + "type": "medium_airport", + "name": "Ashgabat Bezmein Air Base", + "latitude_deg": "38.012001", + "longitude_deg": "58.195", + "elevation_ft": "920", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-S", + "municipality": "Ashgabat", + "scheduled_service": "no", + "keywords": "Aktepe, Ak-Tepe, Ashkhabad Northwest, Актепе, Ак-Тепе, Безмеин, Ашхабад Северозападный, UT1G" + }, + { + "id": "6393", + "ident": "UT1H", + "type": "small_airport", + "name": "Balkanabat Airport", + "latitude_deg": "39.480598", + "longitude_deg": "54.366001", + "elevation_ft": "5", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-B", + "municipality": "Balkanabat", + "scheduled_service": "yes", + "iata_code": "BKN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Balkanabat_Airport", + "keywords": "Nebit Dag, Балканабат, UT1H" + }, + { + "id": "6394", + "ident": "UT1J", + "type": "small_airport", + "name": "Cheleken East Airport", + "latitude_deg": "39.411515", + "longitude_deg": "53.199037", + "elevation_ft": "-43", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-B", + "municipality": "Cheleken", + "scheduled_service": "no", + "keywords": "Аэропорт Челекен, UT1J" + }, + { + "id": "26416", + "ident": "UT1M", + "type": "small_airport", + "name": "Kakaydy Airport", + "latitude_deg": "37.624298095703125", + "longitude_deg": "67.5176010131836", + "elevation_ft": "1207", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SU", + "municipality": "Goran", + "scheduled_service": "no", + "gps_code": "UT1M", + "local_code": "UT1M" + }, + { + "id": "26419", + "ident": "UT1P", + "type": "small_airport", + "name": "Kogon South Airport", + "latitude_deg": "39.686776", + "longitude_deg": "64.548161", + "elevation_ft": "689", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-BU", + "municipality": "Kogon", + "scheduled_service": "no", + "gps_code": "UT1P", + "local_code": "UT1P" + }, + { + "id": "26420", + "ident": "UT1Q", + "type": "small_airport", + "name": "Pakhtakor Airport", + "latitude_deg": "40.25270080566406", + "longitude_deg": "67.91079711914062", + "elevation_ft": "1023", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Pakhtakor", + "scheduled_service": "no", + "gps_code": "UT1Q", + "local_code": "UT1Q" + }, + { + "id": "25263", + "ident": "UT20", + "type": "closed", + "name": "Channel 4 Heliport", + "latitude_deg": "40.732396", + "longitude_deg": "-111.955002", + "elevation_ft": "4235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Salt Lake City", + "scheduled_service": "no", + "keywords": "UT20" + }, + { + "id": "25264", + "ident": "UT21", + "type": "heliport", + "name": "Medical Center Helistop", + "latitude_deg": "40.772644", + "longitude_deg": "-111.83722", + "elevation_ft": "5000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Salt Lake City", + "scheduled_service": "no", + "gps_code": "UT21", + "local_code": "UT21" + }, + { + "id": "25265", + "ident": "UT22", + "type": "heliport", + "name": "Western Surgery Center Heliport", + "latitude_deg": "41.74720001220703", + "longitude_deg": "-111.81700134277344", + "elevation_ft": "4465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Logan", + "scheduled_service": "no", + "gps_code": "UT22", + "local_code": "UT22" + }, + { + "id": "25266", + "ident": "UT23", + "type": "heliport", + "name": "Pioneer Valley Hospital Heliport", + "latitude_deg": "40.69990158081055", + "longitude_deg": "-111.98999786376953", + "elevation_ft": "4251", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "West Valley City", + "scheduled_service": "no", + "gps_code": "UT23", + "local_code": "UT23" + }, + { + "id": "25267", + "ident": "UT24", + "type": "small_airport", + "name": "Strawberry Valley Estates Airport", + "latitude_deg": "37.49330139160156", + "longitude_deg": "-112.6449966430664", + "elevation_ft": "8141", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Alton", + "scheduled_service": "no", + "gps_code": "UT24", + "local_code": "UT24" + }, + { + "id": "25268", + "ident": "UT25", + "type": "small_airport", + "name": "Monument Valley Airport", + "latitude_deg": "37.015868", + "longitude_deg": "-110.202031", + "elevation_ft": "5192", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Oljato-Monument Valley", + "scheduled_service": "no", + "gps_code": "UT25", + "iata_code": "GMV", + "local_code": "UT25", + "home_link": "http://gouldings.com/new/wp-content/uploads/2010/09/Gouldings_Airport_Rules.pdf", + "keywords": "71V, Tsé Biiʼ Ndzisgaii" + }, + { + "id": "25269", + "ident": "UT26", + "type": "small_airport", + "name": "Bryce Woodland Estates Airport", + "latitude_deg": "37.566419", + "longitude_deg": "-112.453394", + "elevation_ft": "7600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hatch", + "scheduled_service": "no", + "gps_code": "UT26", + "local_code": "UT26" + }, + { + "id": "25270", + "ident": "UT27", + "type": "closed", + "name": "Hurricane Mesa Airport", + "latitude_deg": "37.251099", + "longitude_deg": "-113.209", + "elevation_ft": "5105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hurricane", + "scheduled_service": "no", + "keywords": "UT27" + }, + { + "id": "25271", + "ident": "UT28", + "type": "small_airport", + "name": "Sun Valley Estates Airport", + "latitude_deg": "37.974998474121094", + "longitude_deg": "-113.46299743652344", + "elevation_ft": "5110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Lund", + "scheduled_service": "no", + "gps_code": "UT28", + "local_code": "UT28" + }, + { + "id": "25272", + "ident": "UT29", + "type": "closed", + "name": "Jack's Airport", + "latitude_deg": "41.733898", + "longitude_deg": "-112.194", + "elevation_ft": "4440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Tremonton", + "scheduled_service": "no", + "keywords": "UT29" + }, + { + "id": "25273", + "ident": "UT30", + "type": "small_airport", + "name": "Deer Springs Ranch Airport", + "latitude_deg": "37.342498779296875", + "longitude_deg": "-112.2239990234375", + "elevation_ft": "6485", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Kanab", + "scheduled_service": "no", + "gps_code": "UT30", + "local_code": "UT30" + }, + { + "id": "25274", + "ident": "UT31", + "type": "heliport", + "name": "American Stores Heliport", + "latitude_deg": "40.763403", + "longitude_deg": "-111.890702", + "elevation_ft": "4691", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Salt Lake City", + "scheduled_service": "no", + "gps_code": "UT31", + "local_code": "UT31" + }, + { + "id": "25275", + "ident": "UT32", + "type": "heliport", + "name": "Ashley Valley Medical Center Heliport", + "latitude_deg": "40.45830154418945", + "longitude_deg": "-109.54199981689453", + "elevation_ft": "5342", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Vernal", + "scheduled_service": "no", + "gps_code": "UT32", + "local_code": "UT32" + }, + { + "id": "25276", + "ident": "UT33", + "type": "heliport", + "name": "Kutv Channel Two Heliport", + "latitude_deg": "40.724700927734375", + "longitude_deg": "-111.97599792480469", + "elevation_ft": "4240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Salt Lake City", + "scheduled_service": "no", + "gps_code": "UT33", + "local_code": "UT33" + }, + { + "id": "25277", + "ident": "UT34", + "type": "heliport", + "name": "Tooele Army Depot Helipad Heliport", + "latitude_deg": "40.5010986328125", + "longitude_deg": "-112.34400177001953", + "elevation_ft": "4920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Tooele", + "scheduled_service": "no", + "gps_code": "UT34", + "local_code": "UT34" + }, + { + "id": "25278", + "ident": "UT35", + "type": "heliport", + "name": "Mountain View Hospital Heliport", + "latitude_deg": "40.044291", + "longitude_deg": "-111.715391", + "elevation_ft": "4597", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Payson", + "scheduled_service": "no", + "gps_code": "UT35", + "local_code": "UT35" + }, + { + "id": "25279", + "ident": "UT36", + "type": "heliport", + "name": "Wecco Heliport", + "latitude_deg": "37.31660079956055", + "longitude_deg": "-113.31700134277344", + "elevation_ft": "5315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Cedar City", + "scheduled_service": "no", + "gps_code": "UT36", + "local_code": "UT36" + }, + { + "id": "25280", + "ident": "UT37", + "type": "closed", + "name": "Carmel Mountain Ranch Airport", + "latitude_deg": "37.269885", + "longitude_deg": "-112.675867", + "elevation_ft": "5590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Orderville", + "scheduled_service": "no", + "keywords": "UT37" + }, + { + "id": "25281", + "ident": "UT38", + "type": "heliport", + "name": "Two Jays #1 Heliport", + "latitude_deg": "38.542062", + "longitude_deg": "-109.519831", + "elevation_ft": "4500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Moab", + "scheduled_service": "no", + "gps_code": "UT38", + "local_code": "UT38" + }, + { + "id": "25282", + "ident": "UT39", + "type": "heliport", + "name": "A A Helicopters Inc Heliport", + "latitude_deg": "40.859211", + "longitude_deg": "-111.935141", + "elevation_ft": "4234", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "North Salt Lake", + "scheduled_service": "no", + "gps_code": "UT39", + "local_code": "UT39" + }, + { + "id": "25283", + "ident": "UT40", + "type": "closed", + "name": "Payne Field", + "latitude_deg": "41.098301", + "longitude_deg": "-112.115997", + "elevation_ft": "4228", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Syracuse", + "scheduled_service": "no", + "keywords": "UT40" + }, + { + "id": "25284", + "ident": "UT41", + "type": "small_airport", + "name": "Glenmar Ranch Airport", + "latitude_deg": "40.33940124511719", + "longitude_deg": "-111.9990005493164", + "elevation_ft": "5030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Cedar Fort", + "scheduled_service": "no", + "gps_code": "UT41", + "local_code": "UT41" + }, + { + "id": "25285", + "ident": "UT42", + "type": "small_airport", + "name": "Westwater Airport", + "latitude_deg": "39.14670181274414", + "longitude_deg": "-109.1449966430664", + "elevation_ft": "4660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Cisco", + "scheduled_service": "no", + "gps_code": "UT42", + "local_code": "UT42" + }, + { + "id": "25286", + "ident": "UT43", + "type": "small_airport", + "name": "Citabriair Airport", + "latitude_deg": "37.63610076904297", + "longitude_deg": "-113.24700164794922", + "elevation_ft": "5600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Kanarraville", + "scheduled_service": "no", + "gps_code": "UT43", + "local_code": "UT43" + }, + { + "id": "25287", + "ident": "UT44", + "type": "heliport", + "name": "Davis Hospital & Medical Center Heliport", + "latitude_deg": "41.09183", + "longitude_deg": "-111.99592", + "elevation_ft": "4300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Layton", + "scheduled_service": "no", + "gps_code": "UT44", + "local_code": "UT44" + }, + { + "id": "25288", + "ident": "UT45", + "type": "heliport", + "name": "State Capitol Helicopter Landing Site Heliport", + "latitude_deg": "40.77688217163086", + "longitude_deg": "-111.88691711425781", + "elevation_ft": "4350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Salt Lake City", + "scheduled_service": "no", + "gps_code": "UT45", + "local_code": "UT45" + }, + { + "id": "25289", + "ident": "UT46", + "type": "heliport", + "name": "Tooele Army Depot /South Area/ Heliport", + "latitude_deg": "40.317444", + "longitude_deg": "-112.308559", + "elevation_ft": "5355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Tooele", + "scheduled_service": "no", + "gps_code": "UT46", + "local_code": "UT46" + }, + { + "id": "25290", + "ident": "UT47", + "type": "small_airport", + "name": "Grassy Meadows/Sky Ranch Landowners Assn Airport", + "latitude_deg": "37.1018981934", + "longitude_deg": "-113.314002991", + "elevation_ft": "3350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hurricane", + "scheduled_service": "no", + "gps_code": "UT47", + "local_code": "UT47" + }, + { + "id": "25291", + "ident": "UT48", + "type": "closed", + "name": "LBL Farms Airport", + "latitude_deg": "41.1502", + "longitude_deg": "-112.098999", + "elevation_ft": "4260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Clinton", + "scheduled_service": "no", + "keywords": "UT48" + }, + { + "id": "25292", + "ident": "UT49", + "type": "small_airport", + "name": "Desert Aviation Airport", + "latitude_deg": "39.45940017700195", + "longitude_deg": "-112.65499877929688", + "elevation_ft": "4589", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Delta", + "scheduled_service": "no", + "gps_code": "UT49", + "local_code": "UT49" + }, + { + "id": "25293", + "ident": "UT50", + "type": "heliport", + "name": "Moab Memorial Hospital Heliport", + "latitude_deg": "38.575635", + "longitude_deg": "-109.55829", + "elevation_ft": "3977", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Moab", + "scheduled_service": "no", + "gps_code": "UT50", + "local_code": "UT50" + }, + { + "id": "25294", + "ident": "UT51", + "type": "heliport", + "name": "Utah Valley Regional Medical Center Heliport", + "latitude_deg": "40.24800109863281", + "longitude_deg": "-111.66600036621094", + "elevation_ft": "4590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Provo", + "scheduled_service": "no", + "gps_code": "UT51", + "local_code": "UT51" + }, + { + "id": "25295", + "ident": "UT52", + "type": "heliport", + "name": "Dixie Medical Center Heliport", + "latitude_deg": "37.098174", + "longitude_deg": "-113.57579", + "elevation_ft": "2700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "St George", + "scheduled_service": "no", + "gps_code": "UT52", + "local_code": "UT52" + }, + { + "id": "25296", + "ident": "UT53", + "type": "small_airport", + "name": "Sky Ranch Airport", + "latitude_deg": "38.493843", + "longitude_deg": "-109.446567", + "elevation_ft": "4875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Moab", + "scheduled_service": "no", + "gps_code": "UT53", + "local_code": "UT53" + }, + { + "id": "25297", + "ident": "UT54", + "type": "small_airport", + "name": "Crystal Springs Ranch Airport", + "latitude_deg": "37.253299713134766", + "longitude_deg": "-113.33399963378906", + "elevation_ft": "3671", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Leeds", + "scheduled_service": "no", + "gps_code": "UT54", + "local_code": "UT54" + }, + { + "id": "25298", + "ident": "UT55", + "type": "heliport", + "name": "LDS Hospital Heliport", + "latitude_deg": "40.778192", + "longitude_deg": "-111.879515", + "elevation_ft": "4729", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Salt Lake City", + "scheduled_service": "no", + "gps_code": "UT55", + "local_code": "UT55" + }, + { + "id": "25299", + "ident": "UT56", + "type": "heliport", + "name": "American Fork Hospital Heliport", + "latitude_deg": "40.379671", + "longitude_deg": "-111.768604", + "elevation_ft": "4603", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "American Fork", + "scheduled_service": "no", + "gps_code": "UT56", + "local_code": "UT56" + }, + { + "id": "25300", + "ident": "UT57", + "type": "closed", + "name": "Sulphurdale Airport", + "latitude_deg": "38.572498", + "longitude_deg": "-112.592003", + "elevation_ft": "6060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Beaver", + "scheduled_service": "no", + "keywords": "UT57" + }, + { + "id": "25301", + "ident": "UT58", + "type": "heliport", + "name": "Bonanza Power Plant Heliport", + "latitude_deg": "40.08219909667969", + "longitude_deg": "-109.29199981689453", + "elevation_ft": "5028", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Bonanza", + "scheduled_service": "no", + "gps_code": "UT58", + "local_code": "UT58" + }, + { + "id": "25302", + "ident": "UT59", + "type": "closed", + "name": "Needles Outpost Airport", + "latitude_deg": "38.170575", + "longitude_deg": "-109.733634", + "elevation_ft": "4950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Monticello", + "scheduled_service": "no", + "keywords": "UT59" + }, + { + "id": "25303", + "ident": "UT60", + "type": "closed", + "name": "Century Equipment Company Heliport", + "latitude_deg": "40.678558", + "longitude_deg": "-111.902991", + "elevation_ft": "4255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Murray", + "scheduled_service": "no", + "keywords": "UT60" + }, + { + "id": "25304", + "ident": "UT61", + "type": "heliport", + "name": "Duchesne Co. Hospital Heliport", + "latitude_deg": "40.33610153198242", + "longitude_deg": "-110.33999633789062", + "elevation_ft": "5182", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Roosevelt", + "scheduled_service": "no", + "gps_code": "UT61", + "local_code": "UT61" + }, + { + "id": "25305", + "ident": "UT62", + "type": "heliport", + "name": "Department of Veterans Affairs Heliport", + "latitude_deg": "40.756929", + "longitude_deg": "-111.842119", + "elevation_ft": "4713", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Salt Lake City", + "scheduled_service": "no", + "keywords": "UT62" + }, + { + "id": "25306", + "ident": "UT63", + "type": "heliport", + "name": "Alta View Hospital Heliport", + "latitude_deg": "40.57780075073242", + "longitude_deg": "-111.85399627685547", + "elevation_ft": "4660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Sandy", + "scheduled_service": "no", + "gps_code": "UT63", + "local_code": "UT63" + }, + { + "id": "25307", + "ident": "UT64", + "type": "heliport", + "name": "St. Marks Hospital Heliport", + "latitude_deg": "40.686152", + "longitude_deg": "-111.856205", + "elevation_ft": "4315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Salt Lake City", + "scheduled_service": "no", + "gps_code": "UT64", + "local_code": "UT64" + }, + { + "id": "25308", + "ident": "UT65", + "type": "small_airport", + "name": "Goshute Airport", + "latitude_deg": "39.99800109863281", + "longitude_deg": "-113.97699737548828", + "elevation_ft": "5460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Ibapah", + "scheduled_service": "no", + "gps_code": "UT65", + "local_code": "UT65" + }, + { + "id": "25309", + "ident": "UT66", + "type": "heliport", + "name": "Ward Heliport", + "latitude_deg": "40.59989929199219", + "longitude_deg": "-111.8010025024414", + "elevation_ft": "5000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Sandy", + "scheduled_service": "no", + "gps_code": "UT66", + "local_code": "UT66" + }, + { + "id": "25310", + "ident": "UT67", + "type": "small_airport", + "name": "Paradise Air Park", + "latitude_deg": "40.44110107421875", + "longitude_deg": "-109.84700012207031", + "elevation_ft": "5700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Tridell", + "scheduled_service": "no", + "gps_code": "UT67", + "local_code": "UT67" + }, + { + "id": "25311", + "ident": "UT68", + "type": "closed", + "name": "Caveman Ranch Airport", + "latitude_deg": "38.472801", + "longitude_deg": "-109.660004", + "elevation_ft": "3940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Moab", + "scheduled_service": "no", + "gps_code": "UT68", + "local_code": "UT68", + "keywords": "Tangri-La" + }, + { + "id": "25312", + "ident": "UT69", + "type": "small_airport", + "name": "Pelican Lake Airport", + "latitude_deg": "40.181400299072266", + "longitude_deg": "-109.6719970703125", + "elevation_ft": "4815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Randlett", + "scheduled_service": "no", + "gps_code": "UT69", + "local_code": "UT69" + }, + { + "id": "25313", + "ident": "UT70", + "type": "closed", + "name": "Garrison Airport", + "latitude_deg": "38.964901", + "longitude_deg": "-114.037003", + "elevation_ft": "5225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Garrison", + "scheduled_service": "no", + "keywords": "UT70" + }, + { + "id": "25314", + "ident": "UT71", + "type": "heliport", + "name": "Tooele Valley Hospital Heliport", + "latitude_deg": "40.524898529052734", + "longitude_deg": "-112.29399871826172", + "elevation_ft": "5100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Tooele", + "scheduled_service": "no", + "gps_code": "UT71", + "local_code": "UT71" + }, + { + "id": "25315", + "ident": "UT72", + "type": "heliport", + "name": "Two Jays #2 Heliport", + "latitude_deg": "38.584352", + "longitude_deg": "-109.566789", + "elevation_ft": "4200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Moab", + "scheduled_service": "no", + "gps_code": "UT72", + "local_code": "UT72" + }, + { + "id": "25317", + "ident": "UT74", + "type": "small_airport", + "name": "Fry Canyon Field", + "latitude_deg": "37.6483", + "longitude_deg": "-110.167", + "elevation_ft": "5372", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Hite", + "scheduled_service": "no", + "gps_code": "UT74", + "local_code": "UT74" + }, + { + "id": "25318", + "ident": "UT75", + "type": "small_airport", + "name": "Mineral Canyon Strip", + "latitude_deg": "38.531583177899996", + "longitude_deg": "-109.995889664", + "elevation_ft": "3900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Moab", + "scheduled_service": "no", + "gps_code": "UT75", + "local_code": "UT75" + }, + { + "id": "25319", + "ident": "UT76", + "type": "closed", + "name": "Phc Hospital Heliport", + "latitude_deg": "40.716702", + "longitude_deg": "-111.889", + "elevation_ft": "4250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Salt Lake City", + "scheduled_service": "no", + "keywords": "UT76" + }, + { + "id": "25321", + "ident": "UT78", + "type": "heliport", + "name": "Timpanogos Regional Hospital Heliport", + "latitude_deg": "40.312933", + "longitude_deg": "-111.714455", + "elevation_ft": "4735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Orem", + "scheduled_service": "no", + "gps_code": "UT78", + "local_code": "UT78" + }, + { + "id": "25322", + "ident": "UT79", + "type": "small_airport", + "name": "3-I Rocker Ranch Airport", + "latitude_deg": "40.41559982299805", + "longitude_deg": "-109.34400177001953", + "elevation_ft": "4865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Jensen", + "scheduled_service": "no", + "gps_code": "UT79", + "local_code": "UT79" + }, + { + "id": "25323", + "ident": "UT80", + "type": "small_airport", + "name": "Hamilton Fort Ranch Airport", + "latitude_deg": "37.634700775146484", + "longitude_deg": "-113.15899658203125", + "elevation_ft": "5460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Cedar City", + "scheduled_service": "no", + "gps_code": "UT80", + "local_code": "UT80" + }, + { + "id": "25324", + "ident": "UT81", + "type": "heliport", + "name": "Blanding Ambulance Heliport", + "latitude_deg": "37.63560104370117", + "longitude_deg": "-109.48400115966797", + "elevation_ft": "5900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Blanding", + "scheduled_service": "no", + "gps_code": "UT81", + "local_code": "UT81" + }, + { + "id": "25325", + "ident": "UT82", + "type": "small_airport", + "name": "Beryl Junction Airport", + "latitude_deg": "37.709999084472656", + "longitude_deg": "-113.64600372314453", + "elevation_ft": "5181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Beryl", + "scheduled_service": "no", + "gps_code": "UT82", + "local_code": "UT82" + }, + { + "id": "25326", + "ident": "UT83", + "type": "small_airport", + "name": "Thunder Ridge Airpark", + "latitude_deg": "40.263806", + "longitude_deg": "-110.865183", + "elevation_ft": "7050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Fruitland", + "scheduled_service": "no", + "gps_code": "UT83", + "local_code": "UT83" + }, + { + "id": "25327", + "ident": "UT84", + "type": "heliport", + "name": "Skaggs Heliport", + "latitude_deg": "40.68830108642578", + "longitude_deg": "-111.89199829101562", + "elevation_ft": "4289", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "South Salt Lake City", + "scheduled_service": "no", + "gps_code": "UT84", + "local_code": "UT84" + }, + { + "id": "45862", + "ident": "UT85", + "type": "heliport", + "name": "Cirque Lodge Studio Heliport", + "latitude_deg": "40.311547", + "longitude_deg": "-111.66568", + "elevation_ft": "4860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Orem", + "scheduled_service": "no", + "gps_code": "UT85", + "local_code": "UT85" + }, + { + "id": "45865", + "ident": "UT86", + "type": "heliport", + "name": "Miller Motorsports Park Heliport", + "latitude_deg": "40.583624", + "longitude_deg": "-112.383013", + "elevation_ft": "4403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Tooele", + "scheduled_service": "no", + "gps_code": "UT86", + "local_code": "UT86" + }, + { + "id": "45864", + "ident": "UT87", + "type": "heliport", + "name": "Jordan Valley Hospital Heliport", + "latitude_deg": "40.591144", + "longitude_deg": "-111.976341", + "elevation_ft": "4590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "West Jordan", + "scheduled_service": "no", + "gps_code": "UT87", + "local_code": "UT87" + }, + { + "id": "351328", + "ident": "UT89", + "type": "small_airport", + "name": "Cold Water Airport", + "latitude_deg": "41.681612", + "longitude_deg": "-111.98181", + "elevation_ft": "4926", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Mendon", + "scheduled_service": "no", + "gps_code": "UT89", + "local_code": "UT89" + }, + { + "id": "324447", + "ident": "UT90", + "type": "small_airport", + "name": "CAVOK Ranch Airport", + "latitude_deg": "41.585369", + "longitude_deg": "-111.9037", + "elevation_ft": "5155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Wellsville", + "scheduled_service": "no", + "gps_code": "UT90", + "local_code": "UT90" + }, + { + "id": "355690", + "ident": "UT92", + "type": "heliport", + "name": "UBMC Vernal Helipad 1", + "latitude_deg": "40.462114", + "longitude_deg": "-109.540625", + "elevation_ft": "5371", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Vernal", + "scheduled_service": "no", + "gps_code": "UT92", + "local_code": "UT92" + }, + { + "id": "25328", + "ident": "UT97", + "type": "small_airport", + "name": "Happy Canyon Airport", + "latitude_deg": "38.15719985961914", + "longitude_deg": "-110.29199981689453", + "elevation_ft": "4934", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Happy Canyon", + "scheduled_service": "no", + "gps_code": "UT97", + "local_code": "UT97" + }, + { + "id": "25329", + "ident": "UT98", + "type": "heliport", + "name": "Redwood Health Center Heliport", + "latitude_deg": "40.72560119628906", + "longitude_deg": "-111.93399810791016", + "elevation_ft": "4258", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Salt Lake City", + "scheduled_service": "no", + "gps_code": "UT98", + "local_code": "UT98" + }, + { + "id": "25330", + "ident": "UT99", + "type": "small_airport", + "name": "West Desert Airpark", + "latitude_deg": "40.243268", + "longitude_deg": "-112.092018", + "elevation_ft": "4902", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-UT", + "municipality": "Fairfield", + "scheduled_service": "no", + "local_code": "UT9", + "keywords": "UT99, Cedar Valley" + }, + { + "id": "26380", + "ident": "UTAA", + "type": "large_airport", + "name": "Ashgabat International Airport", + "latitude_deg": "37.986801", + "longitude_deg": "58.361", + "elevation_ft": "692", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-S", + "municipality": "Ashgabat", + "scheduled_service": "yes", + "gps_code": "UTAA", + "iata_code": "ASB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ashgabat_International_Airport", + "keywords": "Saparmurat Turkmenbashy International Airport" + }, + { + "id": "26381", + "ident": "UTAK", + "type": "medium_airport", + "name": "Turkmenbashi International Airport", + "latitude_deg": "40.063301", + "longitude_deg": "53.007198", + "elevation_ft": "279", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-B", + "municipality": "Turkmenbashi", + "scheduled_service": "yes", + "gps_code": "UTAK", + "iata_code": "KRW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Turkmenbashi_International_Airport" + }, + { + "id": "26382", + "ident": "UTAM", + "type": "medium_airport", + "name": "Mary International Airport", + "latitude_deg": "37.62353", + "longitude_deg": "61.895668", + "elevation_ft": "728", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-M", + "municipality": "Mary", + "scheduled_service": "yes", + "gps_code": "UTAM", + "iata_code": "MYP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mary_International_Airport" + }, + { + "id": "26383", + "ident": "UTAT", + "type": "medium_airport", + "name": "Daşoguz Airport", + "latitude_deg": "41.759853", + "longitude_deg": "59.836149", + "elevation_ft": "272", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-D", + "municipality": "Daşoguz", + "scheduled_service": "yes", + "gps_code": "UTAT", + "iata_code": "TAZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Da%C5%9Foguz_Airport", + "keywords": "Tashauz Airport, Dashkhovuz, Dashhowuz, Dashoguz, Dasoguz, Дашогуз" + }, + { + "id": "26384", + "ident": "UTAV", + "type": "medium_airport", + "name": "Türkmenabat International Airport", + "latitude_deg": "38.930662", + "longitude_deg": "63.563982", + "elevation_ft": "649", + "continent": "AS", + "iso_country": "TM", + "iso_region": "TM-L", + "municipality": "Türkmenabat", + "scheduled_service": "yes", + "gps_code": "UTAV", + "iata_code": "CRZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Turkmenabat_International_Airport", + "keywords": "Turkmenabad Airport, Chardzhou Airport, Аэропорт Туркменабат, Аэропорт Туркменабад , Аэропорт Чарджоу, چهارجوی" + }, + { + "id": "26385", + "ident": "UTDD", + "type": "medium_airport", + "name": "Dushanbe Airport", + "latitude_deg": "38.543300628699996", + "longitude_deg": "68.8249969482", + "elevation_ft": "2575", + "continent": "AS", + "iso_country": "TJ", + "iso_region": "TJ-RR", + "municipality": "Dushanbe", + "scheduled_service": "yes", + "gps_code": "UTDD", + "iata_code": "DYU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dushanbe_Airport" + }, + { + "id": "6377", + "ident": "UTDK", + "type": "medium_airport", + "name": "Kulob Airport", + "latitude_deg": "37.98809814453125", + "longitude_deg": "69.80500030517578", + "elevation_ft": "2293", + "continent": "AS", + "iso_country": "TJ", + "iso_region": "TJ-KT", + "municipality": "Kulyab", + "scheduled_service": "yes", + "gps_code": "UTDK", + "iata_code": "TJU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kulob_Airport" + }, + { + "id": "26386", + "ident": "UTDL", + "type": "medium_airport", + "name": "Khujand Airport", + "latitude_deg": "40.215401", + "longitude_deg": "69.694702", + "elevation_ft": "1450", + "continent": "AS", + "iso_country": "TJ", + "iso_region": "TJ-SU", + "municipality": "Khujand", + "scheduled_service": "yes", + "gps_code": "UTDL", + "iata_code": "LBD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khudzhand_Airport", + "keywords": "Khodjend, Khodzhent, Leninabad, Khudzhand" + }, + { + "id": "32556", + "ident": "UTDT", + "type": "medium_airport", + "name": "Qurghonteppa International Airport", + "latitude_deg": "37.86640167236328", + "longitude_deg": "68.86470031738281", + "elevation_ft": "1473", + "continent": "AS", + "iso_country": "TJ", + "iso_region": "TJ-KT", + "municipality": "Kurgan-Tyube", + "scheduled_service": "yes", + "gps_code": "UTDT", + "iata_code": "KQT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qurghonteppa_International_Airport", + "keywords": "Kurgan-Tube" + }, + { + "id": "30672", + "ident": "UTKA", + "type": "medium_airport", + "name": "Andizhan Airport", + "latitude_deg": "40.727699", + "longitude_deg": "72.293999", + "elevation_ft": "1515", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-AN", + "municipality": "Andizhan", + "scheduled_service": "yes", + "gps_code": "UTFA", + "iata_code": "AZN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Andizhan_Airport", + "keywords": "UTKA, Andijan Airport" + }, + { + "id": "31118", + "ident": "UTKF", + "type": "medium_airport", + "name": "Fergana International Airport", + "latitude_deg": "40.358799", + "longitude_deg": "71.745003", + "elevation_ft": "1980", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-FA", + "municipality": "Fergana", + "scheduled_service": "yes", + "gps_code": "UTFF", + "iata_code": "FEG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fergana_International_Airport", + "keywords": "UTKF" + }, + { + "id": "41794", + "ident": "UTKK", + "type": "small_airport", + "name": "Kokand Airport", + "latitude_deg": "40.447183", + "longitude_deg": "70.989144", + "elevation_ft": "1357", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-FA", + "municipality": "Kokand", + "scheduled_service": "no", + "gps_code": "UTKK", + "keywords": "Kokand South" + }, + { + "id": "32038", + "ident": "UTKN", + "type": "small_airport", + "name": "Namangan Airport", + "latitude_deg": "40.9846", + "longitude_deg": "71.556702", + "elevation_ft": "1555", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-NG", + "municipality": "Namangan", + "scheduled_service": "yes", + "gps_code": "UTFN", + "iata_code": "NMA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Namangan_Airport" + }, + { + "id": "32558", + "ident": "UTNM", + "type": "small_airport", + "name": "Muynak Airport", + "latitude_deg": "43.753636", + "longitude_deg": "59.029884", + "elevation_ft": "177", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QR", + "municipality": "Muynak", + "scheduled_service": "no", + "gps_code": "UTNM", + "iata_code": "MOK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Muynak_Airport" + }, + { + "id": "32013", + "ident": "UTNN", + "type": "medium_airport", + "name": "Nukus Airport", + "latitude_deg": "42.4884", + "longitude_deg": "59.623299", + "elevation_ft": "246", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QR", + "municipality": "Nukus", + "scheduled_service": "yes", + "gps_code": "UTNN", + "iata_code": "NCU", + "wikipedia_link": "https://en.m.wikipedia.org/wiki/Nukus_Airport" + }, + { + "id": "32559", + "ident": "UTNT", + "type": "small_airport", + "name": "Turtkul Airport", + "latitude_deg": "41.57500076293945", + "longitude_deg": "60.96659851074219", + "elevation_ft": "305", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QR", + "municipality": "Turtkul", + "scheduled_service": "no", + "gps_code": "UTNT" + }, + { + "id": "26387", + "ident": "UTNU", + "type": "medium_airport", + "name": "Urgench Airport", + "latitude_deg": "41.58430099487305", + "longitude_deg": "60.641700744628906", + "elevation_ft": "320", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-XO", + "municipality": "Urgench", + "scheduled_service": "yes", + "gps_code": "UTNU", + "iata_code": "UGC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Urgench_Airport" + }, + { + "id": "32561", + "ident": "UTSA", + "type": "medium_airport", + "name": "Navoi Airport", + "latitude_deg": "40.117199", + "longitude_deg": "65.170799", + "elevation_ft": "1140", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-NW", + "municipality": "Navoi", + "scheduled_service": "yes", + "gps_code": "UTSA", + "iata_code": "NVI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Navoi_International_Airport" + }, + { + "id": "26388", + "ident": "UTSB", + "type": "medium_airport", + "name": "Bukhara International Airport", + "latitude_deg": "39.775002", + "longitude_deg": "64.483299", + "elevation_ft": "751", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-BU", + "municipality": "Bukhara", + "scheduled_service": "yes", + "gps_code": "UTSB", + "iata_code": "BHK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bukhara_International_Airport", + "keywords": "Buhara Airport" + }, + { + "id": "41812", + "ident": "UTSH", + "type": "small_airport", + "name": "Shahrisabz Airport", + "latitude_deg": "39.068003", + "longitude_deg": "66.758388", + "elevation_ft": "1900", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Shahrisabz", + "scheduled_service": "no", + "gps_code": "UTSH" + }, + { + "id": "26417", + "ident": "UTSK", + "type": "small_airport", + "name": "Karshi Airport", + "latitude_deg": "38.802246", + "longitude_deg": "65.773068", + "elevation_ft": "1230", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Karshi", + "scheduled_service": "yes", + "gps_code": "UTSK", + "iata_code": "KSQ", + "local_code": "UT1N", + "wikipedia_link": "https://en.wikipedia.org/wiki/Karshi_Airport", + "keywords": "Qarshi Airport" + }, + { + "id": "26389", + "ident": "UTSL", + "type": "small_airport", + "name": "Karshi-Khanabad Air Base", + "latitude_deg": "38.833599", + "longitude_deg": "65.921501", + "elevation_ft": "1365", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Khanabad", + "scheduled_service": "no", + "gps_code": "UTSL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Karshi-Khanabad_Air_Base", + "keywords": "UTSL, K2 Air Base, Qarshi Khanabad Airport" + }, + { + "id": "41821", + "ident": "UTSM", + "type": "small_airport", + "name": "Tandy Bulak Airport", + "latitude_deg": "41.76079177856445", + "longitude_deg": "64.60240173339844", + "elevation_ft": "716", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-NW", + "municipality": "Tandy Bulak", + "scheduled_service": "no", + "gps_code": "UTSM" + }, + { + "id": "41685", + "ident": "UTSN", + "type": "small_airport", + "name": "Sugraly Airport", + "latitude_deg": "41.613899", + "longitude_deg": "64.2332", + "elevation_ft": "1396", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-NW", + "municipality": "Zarafshan", + "scheduled_service": "yes", + "gps_code": "UTSN", + "iata_code": "AFS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zarafshan_Airport" + }, + { + "id": "41686", + "ident": "UTSR", + "type": "small_airport", + "name": "Sariasiya Airport", + "latitude_deg": "38.41059875488281", + "longitude_deg": "67.94519805908203", + "elevation_ft": "1949", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SU", + "municipality": "Sariasiya", + "scheduled_service": "no", + "gps_code": "UTSR" + }, + { + "id": "26390", + "ident": "UTSS", + "type": "medium_airport", + "name": "Samarkand Airport", + "latitude_deg": "39.70050048828125", + "longitude_deg": "66.98380279541016", + "elevation_ft": "2224", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SA", + "municipality": "Samarkand", + "scheduled_service": "yes", + "gps_code": "UTSS", + "iata_code": "SKD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Samarkand_Airport" + }, + { + "id": "26391", + "ident": "UTST", + "type": "medium_airport", + "name": "Termez Airport", + "latitude_deg": "37.287261", + "longitude_deg": "67.311869", + "elevation_ft": "1027", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SU", + "municipality": "Termez", + "scheduled_service": "yes", + "gps_code": "UTST", + "iata_code": "TMJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Termez_Airport" + }, + { + "id": "32562", + "ident": "UTSU", + "type": "small_airport", + "name": "Uchkuduk Airport", + "latitude_deg": "42.083099365234375", + "longitude_deg": "63.44929885864258", + "elevation_ft": "416", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-NW", + "municipality": "Uchkuduk", + "scheduled_service": "no", + "gps_code": "UTSU" + }, + { + "id": "41687", + "ident": "UTTP", + "type": "medium_airport", + "name": "Tashkent East Airport", + "latitude_deg": "41.312889", + "longitude_deg": "69.395535", + "elevation_ft": "1574", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-TO", + "municipality": "Tashkent", + "scheduled_service": "yes", + "gps_code": "UTTP", + "keywords": "Tashkent Vostochny Airport" + }, + { + "id": "26392", + "ident": "UTTT", + "type": "large_airport", + "name": "Tashkent International Airport", + "latitude_deg": "41.257900238", + "longitude_deg": "69.2811965942", + "elevation_ft": "1417", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-TO", + "municipality": "Tashkent", + "scheduled_service": "yes", + "gps_code": "UTTT", + "iata_code": "TAS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tashkent_International_Airport" + }, + { + "id": "315193", + "ident": "UTU", + "type": "small_airport", + "name": "Ustupo Airport", + "latitude_deg": "9.1283", + "longitude_deg": "-77.9337", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "PA", + "iso_region": "PS-GY", + "municipality": "Ustupo", + "scheduled_service": "no", + "iata_code": "UTU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ustupo_Airport" + }, + { + "id": "31761", + "ident": "UUBA", + "type": "medium_airport", + "name": "Kostroma Sokerkino Airport", + "latitude_deg": "57.7969017029", + "longitude_deg": "41.019401550299996", + "elevation_ft": "446", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KOS", + "municipality": "Kostroma", + "scheduled_service": "yes", + "gps_code": "UUBA", + "iata_code": "KMW", + "home_link": "http://www.kmtn.ru/~koao/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kostroma_Airport", + "keywords": "Аэропорт Кострома Сокеркино" + }, + { + "id": "30762", + "ident": "UUBB", + "type": "closed", + "name": "Bykovo Airport", + "latitude_deg": "55.617199", + "longitude_deg": "38.060001", + "elevation_ft": "427", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "UUBB", + "iata_code": "BKA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bykovo_Airport", + "keywords": "Аэропорт Быково" + }, + { + "id": "42934", + "ident": "UUBC", + "type": "medium_airport", + "name": "Grabtsevo Airport", + "latitude_deg": "54.5499992371", + "longitude_deg": "36.3666687012", + "elevation_ft": "656", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KLU", + "municipality": "Kaluga", + "scheduled_service": "no", + "gps_code": "UUBC", + "iata_code": "KLF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Grabtsevo_Airport", + "keywords": "Аэропорт Грабцево" + }, + { + "id": "43669", + "ident": "UUBD", + "type": "medium_airport", + "name": "Dyagilevo Air Base", + "latitude_deg": "54.642284", + "longitude_deg": "39.569047", + "elevation_ft": "440", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-RYA", + "municipality": "Ryazan", + "scheduled_service": "no", + "gps_code": "UUBD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dyagilevo", + "keywords": "Dyaghilevo Air Base, Аэродром Дягилево" + }, + { + "id": "31690", + "ident": "UUBI", + "type": "medium_airport", + "name": "Ivanovo South Airport", + "latitude_deg": "56.93939971923828", + "longitude_deg": "40.940799713134766", + "elevation_ft": "410", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-IVA", + "municipality": "Ivanovo", + "scheduled_service": "yes", + "gps_code": "UUBI", + "iata_code": "IWA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ivanovo_Yuzhny_Airport", + "keywords": "Ivanovo Yuzhniy Airport, Ivanovo Yuzhny Airport, Аэропорт Иваново Южный" + }, + { + "id": "32241", + "ident": "UUBK", + "type": "medium_airport", + "name": "Staroselye Airport", + "latitude_deg": "58.10419845581055", + "longitude_deg": "38.92940139770508", + "elevation_ft": "423", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAR", + "municipality": "Rybinsk", + "scheduled_service": "yes", + "gps_code": "UUBK", + "iata_code": "RYB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Staroselye_Airport", + "keywords": "Аэропорт Староселье" + }, + { + "id": "35074", + "ident": "UUBL", + "type": "medium_airport", + "name": "Semyazino Airport", + "latitude_deg": "56.127423", + "longitude_deg": "40.315202", + "elevation_ft": "554", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLA", + "municipality": "Vladimir", + "scheduled_service": "no", + "gps_code": "UUBL", + "home_link": "http://www2.vtsnet.ru/vlavia/HTMLs/airdrom_rus.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Semyazino_Airport", + "keywords": "Vladimir Airport, Аэропорт Семязино, Аэропорт Владимир" + }, + { + "id": "42966", + "ident": "UUBM", + "type": "medium_airport", + "name": "Myachkovo Airport", + "latitude_deg": "55.5600013733", + "longitude_deg": "37.9850006104", + "elevation_ft": "410", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "UUBM", + "home_link": "http://www.miachkovo.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Myachkovo_Airport", + "keywords": "Аэропорт Мячково" + }, + { + "id": "44648", + "ident": "UUBN", + "type": "small_airport", + "name": "Zmeyevo Airfield", + "latitude_deg": "56.915001", + "longitude_deg": "35.935001", + "elevation_ft": "472", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TVE", + "municipality": "Tver", + "scheduled_service": "no", + "gps_code": "UUBN", + "keywords": "Zmeevo Airport, Zmeyovo Airport, Аэропорт Змеево, Аэропорт Змеёво" + }, + { + "id": "26393", + "ident": "UUBP", + "type": "medium_airport", + "name": "Bryansk Airport", + "latitude_deg": "53.214199", + "longitude_deg": "34.176399", + "elevation_ft": "663", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BRY", + "municipality": "Bryansk", + "scheduled_service": "yes", + "gps_code": "UUBP", + "iata_code": "BZK", + "home_link": "http://www.airport.bryansk.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bryansk_International_Airport", + "keywords": "Аэропорт Брянск, УУБП" + }, + { + "id": "335153", + "ident": "UUBQ", + "type": "small_airport", + "name": "Sharya Airport", + "latitude_deg": "58.391989", + "longitude_deg": "45.554466", + "elevation_ft": "120", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KOS", + "scheduled_service": "yes", + "gps_code": "UUBQ" + }, + { + "id": "42967", + "ident": "UUBW", + "type": "large_airport", + "name": "Zhukovsky International Airport", + "latitude_deg": "55.553299", + "longitude_deg": "38.150002", + "elevation_ft": "377", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Moscow", + "scheduled_service": "yes", + "gps_code": "UUBW", + "iata_code": "ZIA", + "home_link": "http://zia.aero/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zhukovsky_International_Airport", + "keywords": "Аэропорт Раменское, Zhukovsky Air Base, Gromov Flight Research Institute, Лётно-исследовательский институт имени М. М. Громова, ЛИИ" + }, + { + "id": "26394", + "ident": "UUDD", + "type": "large_airport", + "name": "Domodedovo International Airport", + "latitude_deg": "55.40879821777344", + "longitude_deg": "37.90629959106445", + "elevation_ft": "588", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Moscow", + "scheduled_service": "yes", + "gps_code": "UUDD", + "iata_code": "DME", + "home_link": "http://www.domodedovo.ru/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Domodedovo_International_Airport", + "keywords": "MOW, Аэропорт Домоде́дово" + }, + { + "id": "26395", + "ident": "UUDL", + "type": "small_airport", + "name": "Tunoshna Airport", + "latitude_deg": "57.560699", + "longitude_deg": "40.157398", + "elevation_ft": "287", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-YAR", + "municipality": "Tunoshna", + "scheduled_service": "no", + "gps_code": "UUDL", + "iata_code": "IAR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tunoshna" + }, + { + "id": "26396", + "ident": "UUEE", + "type": "large_airport", + "name": "Sheremetyevo International Airport", + "latitude_deg": "55.972599", + "longitude_deg": "37.4146", + "elevation_ft": "622", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Moscow", + "scheduled_service": "yes", + "gps_code": "UUEE", + "iata_code": "SVO", + "home_link": "http://www.svo.aero/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sheremetyevo_International_Airport", + "keywords": "MOW, Международный аэропорт Шереметьево, svo, sheremetyevo, moscow" + }, + { + "id": "42990", + "ident": "UUEI", + "type": "small_airport", + "name": "Kimry Airfield", + "latitude_deg": "56.798302", + "longitude_deg": "37.330002", + "elevation_ft": "449", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TVE", + "municipality": "Kimry", + "scheduled_service": "no", + "gps_code": "UUEI", + "home_link": "http://www.aero-club.ru/borki.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kimry_Airport", + "keywords": "Borki,Kletino,Кимры,Борки,Клетино" + }, + { + "id": "26397", + "ident": "UUEM", + "type": "medium_airport", + "name": "Migalovo Air Base", + "latitude_deg": "56.82469940185547", + "longitude_deg": "35.7577018737793", + "elevation_ft": "469", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TVE", + "municipality": "Tver", + "scheduled_service": "no", + "gps_code": "UUEM", + "iata_code": "KLD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Migalovo" + }, + { + "id": "325060", + "ident": "UUMD", + "type": "small_airport", + "name": "Selnikovo Airfield", + "latitude_deg": "55.129783", + "longitude_deg": "39.145733", + "elevation_ft": "351", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Selnikovo", + "scheduled_service": "no", + "gps_code": "UUMD", + "keywords": "УУМД, Сельниково" + }, + { + "id": "35090", + "ident": "UUMI", + "type": "small_airport", + "name": "Stupino Air Base", + "latitude_deg": "54.888", + "longitude_deg": "38.147", + "elevation_ft": "584", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Stupino", + "scheduled_service": "no", + "gps_code": "UUMI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stupino_Airfield", + "keywords": "Krutyshki Airfield, Аэродром Ступино, Аэродром Крутышки" + }, + { + "id": "44920", + "ident": "UUML", + "type": "small_airport", + "name": "Severka Airfield", + "latitude_deg": "55.206608", + "longitude_deg": "38.679149", + "elevation_ft": "433", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Voskresensk", + "scheduled_service": "no", + "gps_code": "UUML", + "home_link": "http://www.aviaseverka.ru/", + "keywords": "Аэродром Северка" + }, + { + "id": "34931", + "ident": "UUMO", + "type": "medium_airport", + "name": "Ostafyevo International Airport", + "latitude_deg": "55.511667", + "longitude_deg": "37.507222", + "elevation_ft": "568", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "UUMO", + "iata_code": "OSF", + "home_link": "http://eng.gazpromavia.ru/page20.shtml", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ostafievo_International_Airport", + "keywords": "Ostafievo, Междунаро́дный аэропо́рт «Оста́фьево», Gazprom" + }, + { + "id": "325055", + "ident": "UUMQ", + "type": "closed", + "name": "Gan'kino Airfield", + "latitude_deg": "54.8704087", + "longitude_deg": "39.3805418999", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "scheduled_service": "no", + "gps_code": "UUMQ" + }, + { + "id": "42968", + "ident": "UUMT", + "type": "medium_airport", + "name": "Tretyakovo Airport", + "latitude_deg": "54.904998779299994", + "longitude_deg": "39.02666854859999", + "elevation_ft": "515", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Lukhovitsy", + "scheduled_service": "no", + "gps_code": "UUMT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tretyakovo_Airport", + "keywords": "Lukhovitsy Airport, Аэропорт Третьяково, Аэропорт Луховицы" + }, + { + "id": "34969", + "ident": "UUMU", + "type": "medium_airport", + "name": "Chkalovskiy Air Base", + "latitude_deg": "55.8783", + "longitude_deg": "38.061699", + "elevation_ft": "499", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "UUMU", + "iata_code": "CKL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chkalovsky_Airport", + "keywords": "Chkalovsky Airport, Аэродром Чкаловский" + }, + { + "id": "26398", + "ident": "UUOB", + "type": "medium_airport", + "name": "Belgorod International Airport", + "latitude_deg": "50.643798828125", + "longitude_deg": "36.5900993347168", + "elevation_ft": "735", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BEL", + "municipality": "Belgorod", + "scheduled_service": "yes", + "gps_code": "UUOB", + "iata_code": "EGO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Belgorod_Airport" + }, + { + "id": "42995", + "ident": "UUOD", + "type": "small_airport", + "name": "Pridacha Airport", + "latitude_deg": "51.65227127075195", + "longitude_deg": "39.255523681640625", + "elevation_ft": "344", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VOR", + "municipality": "Voronezh", + "scheduled_service": "no", + "gps_code": "UUOD", + "home_link": "http://www.vaso.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pridacha_Airport", + "keywords": "Аэропорт Придача, Repnoe Airport, Voronezh East Airport" + }, + { + "id": "26399", + "ident": "UUOK", + "type": "medium_airport", + "name": "Kursk East Airport", + "latitude_deg": "51.7505989074707", + "longitude_deg": "36.29560089111328", + "elevation_ft": "686", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KRS", + "municipality": "Kursk", + "scheduled_service": "yes", + "gps_code": "UUOK", + "iata_code": "URS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kursk_Vostochny_Airport", + "keywords": "Kursk Vostochny Airport" + }, + { + "id": "31846", + "ident": "UUOL", + "type": "medium_airport", + "name": "Lipetsk Airport", + "latitude_deg": "52.70280075073242", + "longitude_deg": "39.53779983520508", + "elevation_ft": "584", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LIP", + "municipality": "Lipetsk", + "scheduled_service": "yes", + "gps_code": "UUOL", + "iata_code": "LPK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lipetsk_Airport" + }, + { + "id": "26400", + "ident": "UUOO", + "type": "medium_airport", + "name": "Voronezh International Airport", + "latitude_deg": "51.81420135498047", + "longitude_deg": "39.22959899902344", + "elevation_ft": "514", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VOR", + "municipality": "Voronezh", + "scheduled_service": "yes", + "gps_code": "UUOO", + "iata_code": "VOZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Voronezh_International_Airport", + "keywords": "Chertovitskoye Airport, Chertovitskoe Airport, Аэропорт Воронеж, Аэропорт Чертовицкое" + }, + { + "id": "342078", + "ident": "UUOP", + "type": "small_airport", + "name": "Tomarovka Aerodrome", + "latitude_deg": "50.6945", + "longitude_deg": "36.2922", + "elevation_ft": "656", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BEL", + "municipality": "Pushkarnoye", + "scheduled_service": "no", + "local_code": "XUOP", + "keywords": "Томаровка, ЬУОП" + }, + { + "id": "32091", + "ident": "UUOR", + "type": "medium_airport", + "name": "Oryol Yuzhny Airport", + "latitude_deg": "52.934700012200004", + "longitude_deg": "36.0022010803", + "elevation_ft": "656", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ORL", + "municipality": "Orel", + "scheduled_service": "no", + "gps_code": "UUOR", + "iata_code": "OEL", + "keywords": "Oryol South Airport, Orel Yuzhny Airport, Orel South Airport, Аэропорт Орёл Южный, Аэропорт Орел Южный" + }, + { + "id": "42922", + "ident": "UUOS", + "type": "small_airport", + "name": "Stary Oskol Airfield", + "latitude_deg": "51.329216", + "longitude_deg": "37.768848", + "elevation_ft": "791", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BEL", + "municipality": "Stary Oskol", + "scheduled_service": "no", + "gps_code": "UUOS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stary_Oskol_Airport", + "keywords": "Staryy Oskol" + }, + { + "id": "32427", + "ident": "UUOT", + "type": "medium_airport", + "name": "Donskoye Airport", + "latitude_deg": "52.806098937988", + "longitude_deg": "41.482799530029", + "elevation_ft": "413", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TAM", + "municipality": "Tambov", + "scheduled_service": "no", + "gps_code": "UUOT", + "iata_code": "TBW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tambov_Donskoye_Airport" + }, + { + "id": "44421", + "ident": "UURH", + "type": "heliport", + "name": "Haryaginskiy Heliport", + "latitude_deg": "67.21299743652344", + "longitude_deg": "56.78099822998047", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KO", + "municipality": "Haryaginskiy", + "scheduled_service": "no", + "gps_code": "UURH", + "keywords": "Haryaginsky Heliport, Аэропорт Харьягинский" + }, + { + "id": "336167", + "ident": "UUTZ", + "type": "small_airport", + "name": "Zavidovo Air Park (U.C.)", + "latitude_deg": "56.553558", + "longitude_deg": "36.559481", + "elevation_ft": "1562", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TVE", + "municipality": "Shetakovo", + "scheduled_service": "no", + "gps_code": "UUTZ", + "home_link": "http://www.zavidovoairpark.com/infrastructure" + }, + { + "id": "315021", + "ident": "UUU", + "type": "small_airport", + "name": "Manumu Airport", + "latitude_deg": "-9.0746", + "longitude_deg": "147.5735", + "elevation_ft": "1800", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-CPM", + "municipality": "Manumu", + "scheduled_service": "no", + "iata_code": "UUU", + "local_code": "MMU" + }, + { + "id": "42910", + "ident": "UUUS", + "type": "closed", + "name": "Tushino Airport", + "latitude_deg": "55.818333", + "longitude_deg": "37.426666", + "elevation_ft": "420", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOW", + "municipality": "Moscow", + "scheduled_service": "no", + "gps_code": "UUUS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tushino_Airport" + }, + { + "id": "42933", + "ident": "UUWE", + "type": "medium_airport", + "name": "Yermolino Air Base", + "latitude_deg": "55.228333", + "longitude_deg": "36.608334", + "elevation_ft": "640", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KLU", + "municipality": "Balabanovo", + "scheduled_service": "no", + "gps_code": "UUWE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ermolino_Airport", + "keywords": "Ermolino Airport, Аэропорт Ермолино" + }, + { + "id": "352883", + "ident": "UUWK", + "type": "small_airport", + "name": "Kudinovo Airfield", + "latitude_deg": "55.023839", + "longitude_deg": "36.244583", + "elevation_ft": "600", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KLU", + "municipality": "Kudinovo", + "scheduled_service": "no", + "gps_code": "UUWK", + "home_link": "http://www.uuwk.ru/", + "keywords": "Кудиново" + }, + { + "id": "32242", + "ident": "UUWR", + "type": "small_airport", + "name": "Turlatovo Airport", + "latitude_deg": "54.55590057373047", + "longitude_deg": "39.855201721191406", + "elevation_ft": "502", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-RYA", + "municipality": "Ryazan", + "scheduled_service": "no", + "gps_code": "UUWR", + "iata_code": "RZN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Turlatovo_Airport", + "keywords": "Аэропорт Турлатово" + }, + { + "id": "42330", + "ident": "UUWV", + "type": "small_airport", + "name": "Klokovo Airfield", + "latitude_deg": "54.239", + "longitude_deg": "37.6", + "elevation_ft": "499", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TUL", + "municipality": "Tula", + "scheduled_service": "no", + "gps_code": "UUBT", + "iata_code": "TYA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Klokovo", + "keywords": "Аэродром Клоково" + }, + { + "id": "26401", + "ident": "UUWW", + "type": "large_airport", + "name": "Vnukovo International Airport", + "latitude_deg": "55.5914993286", + "longitude_deg": "37.2615013123", + "elevation_ft": "685", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MOS", + "municipality": "Moscow", + "scheduled_service": "yes", + "gps_code": "UUWW", + "iata_code": "VKO", + "home_link": "http://www.vnukovo.ru/eng", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vnukovo_International_Airport", + "keywords": "MOW, Международный аэропорт Внуково" + }, + { + "id": "32506", + "ident": "UUYH", + "type": "medium_airport", + "name": "Ukhta Airport", + "latitude_deg": "63.566898345947266", + "longitude_deg": "53.8046989440918", + "elevation_ft": "482", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KO", + "municipality": "Ukhta", + "scheduled_service": "yes", + "gps_code": "UUYH", + "iata_code": "UCT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ukhta_Airport" + }, + { + "id": "42946", + "ident": "UUYI", + "type": "medium_airport", + "name": "Inta Airport", + "latitude_deg": "66.053372", + "longitude_deg": "60.105786", + "elevation_ft": "184", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KO", + "municipality": "Inta", + "scheduled_service": "no", + "gps_code": "UUYI", + "iata_code": "INA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Inta_Airport", + "keywords": "Аэропорт Инта" + }, + { + "id": "42950", + "ident": "UUYK", + "type": "medium_airport", + "name": "Vuktyl Airport", + "latitude_deg": "63.823299407958984", + "longitude_deg": "57.279998779296875", + "elevation_ft": "358", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KO", + "municipality": "Vuktyl", + "scheduled_service": "no", + "gps_code": "UUYK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vuktyl_Airport", + "keywords": "Аэропорт Вуктыл" + }, + { + "id": "43682", + "ident": "UUYM", + "type": "small_airport", + "name": "Yemva Airport", + "latitude_deg": "62.6054000854", + "longitude_deg": "50.925201416", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KO", + "municipality": "Emva", + "scheduled_service": "no", + "gps_code": "UUYM", + "keywords": "Emva Airport, Аэропорт Емва" + }, + { + "id": "32154", + "ident": "UUYP", + "type": "medium_airport", + "name": "Pechora Airport", + "latitude_deg": "65.12110137939453", + "longitude_deg": "57.13079833984375", + "elevation_ft": "98", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KO", + "municipality": "Pechora", + "scheduled_service": "yes", + "gps_code": "UUYP", + "iata_code": "PEX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pechora_Airport" + }, + { + "id": "32555", + "ident": "UUYS", + "type": "medium_airport", + "name": "Usinsk Airport", + "latitude_deg": "66.00469970703125", + "longitude_deg": "57.3671989440918", + "elevation_ft": "262", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KO", + "municipality": "Usinsk", + "scheduled_service": "yes", + "gps_code": "UUYS", + "iata_code": "USK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Usinsk_Airport" + }, + { + "id": "44858", + "ident": "UUYT", + "type": "small_airport", + "name": "Ust-Kulom Airport", + "latitude_deg": "61.689998626708984", + "longitude_deg": "53.709999084472656", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KO", + "municipality": "Ust-Kulom", + "scheduled_service": "no", + "gps_code": "UUYT", + "keywords": "Аэропорт Усть-Кулом" + }, + { + "id": "42947", + "ident": "UUYV", + "type": "medium_airport", + "name": "Izhma Airport", + "latitude_deg": "65.03170013427734", + "longitude_deg": "53.970001220703125", + "elevation_ft": "230", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KO", + "municipality": "Izhma", + "scheduled_service": "no", + "gps_code": "UUYV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Izhma_Airport", + "keywords": "Аэропорт Ижма" + }, + { + "id": "32581", + "ident": "UUYW", + "type": "medium_airport", + "name": "Vorkuta Airport", + "latitude_deg": "67.48860168457031", + "longitude_deg": "63.993099212646484", + "elevation_ft": "604", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-KO", + "municipality": "Vorkuta", + "scheduled_service": "yes", + "gps_code": "UUYW", + "iata_code": "VKT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vorkuta_Airport" + }, + { + "id": "42949", + "ident": "UUYX", + "type": "medium_airport", + "name": "Ust-Tsylma Airport", + "latitude_deg": "65.43729400630001", + "longitude_deg": "52.20033645629999", + "elevation_ft": "262", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KO", + "municipality": "Ust-Tsylma", + "scheduled_service": "no", + "gps_code": "UUYX", + "iata_code": "UTS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ust-Tsylma_Airport", + "keywords": "Ust-Tsilma, Усть-Цильма" + }, + { + "id": "26402", + "ident": "UUYY", + "type": "medium_airport", + "name": "Syktyvkar Airport", + "latitude_deg": "61.64699935913086", + "longitude_deg": "50.84510040283203", + "elevation_ft": "342", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-KO", + "municipality": "Syktyvkar", + "scheduled_service": "yes", + "gps_code": "UUYY", + "iata_code": "SCW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Syktyvkar_Airport" + }, + { + "id": "44901", + "ident": "UWGB", + "type": "small_airport", + "name": "Bolshoye Boldino Airport", + "latitude_deg": "55.02000045776367", + "longitude_deg": "45.314998626708984", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ARK", + "municipality": "Bolshoye Boldino", + "scheduled_service": "no", + "gps_code": "UWGB", + "keywords": "Bolshoe Boldino Airport, Аэропорт Большое Болдино" + }, + { + "id": "26403", + "ident": "UWGG", + "type": "medium_airport", + "name": "Nizhny Novgorod Strigino International Airport", + "latitude_deg": "56.230098724365", + "longitude_deg": "43.784000396729", + "elevation_ft": "256", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NIZ", + "municipality": "Nizhny Novgorod", + "scheduled_service": "yes", + "gps_code": "UWGG", + "iata_code": "GOJ", + "home_link": "http://www.airportnn.ru/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nizhny_Novgorod_International_Airport", + "keywords": "Strigino Airport" + }, + { + "id": "35174", + "ident": "UWKB", + "type": "medium_airport", + "name": "Bugulma Airport", + "latitude_deg": "54.63999938964844", + "longitude_deg": "52.801700592041016", + "elevation_ft": "991", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TA", + "municipality": "Bugulma", + "scheduled_service": "yes", + "gps_code": "UWKB", + "iata_code": "UUA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bugulma_Airport", + "keywords": "Аэропорт Бугульма" + }, + { + "id": "26404", + "ident": "UWKD", + "type": "large_airport", + "name": "Kazan International Airport", + "latitude_deg": "55.606201171875", + "longitude_deg": "49.278701782227", + "elevation_ft": "411", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TA", + "municipality": "Kazan", + "scheduled_service": "yes", + "gps_code": "UWKD", + "iata_code": "KZN", + "home_link": "http://www.kazan.aero/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kazan_International_Airport" + }, + { + "id": "26405", + "ident": "UWKE", + "type": "medium_airport", + "name": "Begishevo Airport", + "latitude_deg": "55.564701080322266", + "longitude_deg": "52.092498779296875", + "elevation_ft": "643", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TA", + "municipality": "Nizhnekamsk", + "scheduled_service": "yes", + "gps_code": "UWKE", + "iata_code": "NBC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Begishevo_Airport" + }, + { + "id": "34954", + "ident": "UWKG", + "type": "medium_airport", + "name": "Borisoglebskoye Airport", + "latitude_deg": "55.866699", + "longitude_deg": "49.133301", + "elevation_ft": "213", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TA", + "municipality": "Kazan", + "scheduled_service": "no", + "gps_code": "UWKG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Borisoglebskoye_Airport", + "keywords": "Аэропорт Борисоглебское" + }, + { + "id": "42986", + "ident": "UWKI", + "type": "small_airport", + "name": "Chistopol Airport", + "latitude_deg": "55.3057975769043", + "longitude_deg": "50.61598587036133", + "elevation_ft": "604", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TA", + "municipality": "Chistopol", + "scheduled_service": "no", + "gps_code": "UWKI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chistopol_Airport" + }, + { + "id": "31707", + "ident": "UWKJ", + "type": "medium_airport", + "name": "Yoshkar-Ola Airport", + "latitude_deg": "56.700599670410156", + "longitude_deg": "47.904701232910156", + "elevation_ft": "348", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ME", + "municipality": "Yoshkar-Ola", + "scheduled_service": "yes", + "gps_code": "UWKJ", + "iata_code": "JOK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yoshkar-Ola_Airport", + "keywords": "Аэропорт Йошкар-Ола" + }, + { + "id": "26406", + "ident": "UWKS", + "type": "medium_airport", + "name": "Cheboksary Airport", + "latitude_deg": "56.090301513671875", + "longitude_deg": "47.3473014831543", + "elevation_ft": "558", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-CU", + "municipality": "Cheboksary", + "scheduled_service": "yes", + "gps_code": "UWKS", + "iata_code": "CSY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cheboksary_Airport" + }, + { + "id": "43684", + "ident": "UWKV", + "type": "medium_airport", + "name": "Zhigansk Airport", + "latitude_deg": "66.7965011597", + "longitude_deg": "123.361000061", + "elevation_ft": "292", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-SA", + "municipality": "Zhigansk", + "scheduled_service": "yes", + "gps_code": "UEVV", + "iata_code": "ZIX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zhigansk_Airport", + "keywords": "УЕЖЖ, Аэропорт Жиганск" + }, + { + "id": "43881", + "ident": "UWKW", + "type": "heliport", + "name": "Yudino Heliport", + "latitude_deg": "55.85900115966797", + "longitude_deg": "49.040000915527344", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TA", + "municipality": "Kazan", + "scheduled_service": "no", + "gps_code": "UWKW", + "home_link": "http://kazanhelicopters.com/", + "keywords": "Kazan Helicopter Works, Юдино, Казанский Вертолетный завод" + }, + { + "id": "35104", + "ident": "UWLL", + "type": "medium_airport", + "name": "Ulyanovsk Baratayevka Airport", + "latitude_deg": "54.268299", + "longitude_deg": "48.2267", + "elevation_ft": "449", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ULY", + "municipality": "Ulyanovsk", + "scheduled_service": "yes", + "gps_code": "UWLL", + "iata_code": "ULV", + "home_link": "http://ulk.aero/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ulyanovsk_Baratayevka_Airport" + }, + { + "id": "46256", + "ident": "UWLS", + "type": "small_airport", + "name": "Soldatskaya Tashla Airfield", + "latitude_deg": "54.0152837323", + "longitude_deg": "48.306026458699996", + "elevation_ft": "673", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ULY", + "scheduled_service": "no", + "gps_code": "UWLS", + "keywords": "Аэродром Солдатская Ташла, УВЛС" + }, + { + "id": "26407", + "ident": "UWLW", + "type": "medium_airport", + "name": "Ulyanovsk East Airport", + "latitude_deg": "54.401001", + "longitude_deg": "48.8027", + "elevation_ft": "252", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ULY", + "municipality": "Cherdakly", + "scheduled_service": "yes", + "gps_code": "UWLW", + "iata_code": "ULY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ulyanovsk_Vostochny_Airport", + "keywords": "Ulyanovsk Vostochny Airport" + }, + { + "id": "310608", + "ident": "UWOD", + "type": "small_airport", + "name": "Adamovka Airport", + "latitude_deg": "51.499284", + "longitude_deg": "59.936658", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-ORE", + "municipality": "Adamovka", + "scheduled_service": "no", + "gps_code": "UWOD" + }, + { + "id": "310609", + "ident": "UWOH", + "type": "small_airport", + "name": "Kvarkeno Airport", + "latitude_deg": "52.077797", + "longitude_deg": "59.686542", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-ORE", + "municipality": "Kvarkeno", + "scheduled_service": "yes", + "gps_code": "UWOH" + }, + { + "id": "26408", + "ident": "UWOO", + "type": "medium_airport", + "name": "Orenburg Central Airport", + "latitude_deg": "51.795799255371094", + "longitude_deg": "55.45669937133789", + "elevation_ft": "387", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ORE", + "municipality": "Orenburg", + "scheduled_service": "yes", + "gps_code": "UWOO", + "iata_code": "REN", + "home_link": "http://www.airoport.orenair.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orenburg_Tsentralny_Airport", + "keywords": "Orenburg Tsentralny Airport, Аэропорт Центральный" + }, + { + "id": "26409", + "ident": "UWOR", + "type": "medium_airport", + "name": "Orsk Airport", + "latitude_deg": "51.072498", + "longitude_deg": "58.5956", + "elevation_ft": "909", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-ORE", + "municipality": "Orsk", + "scheduled_service": "yes", + "gps_code": "UWOR", + "iata_code": "OSW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orsk_Airport" + }, + { + "id": "335161", + "ident": "UWOS", + "type": "small_airport", + "name": "Svetlyy Airport", + "latitude_deg": "50.800721", + "longitude_deg": "60.902367", + "elevation_ft": "978", + "continent": "AS", + "iso_country": "RU", + "iso_region": "RU-ORE", + "scheduled_service": "yes", + "gps_code": "UWOS" + }, + { + "id": "32155", + "ident": "UWPP", + "type": "medium_airport", + "name": "Penza Airport", + "latitude_deg": "53.110599517822266", + "longitude_deg": "45.02109909057617", + "elevation_ft": "614", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PNZ", + "municipality": "Penza", + "scheduled_service": "yes", + "gps_code": "UWPP", + "iata_code": "PEZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Penza_Airport", + "keywords": "Penza South" + }, + { + "id": "42965", + "ident": "UWPS", + "type": "medium_airport", + "name": "Saransk Airport", + "latitude_deg": "54.12512969970703", + "longitude_deg": "45.212257385253906", + "elevation_ft": "676", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MO", + "municipality": "Saransk", + "scheduled_service": "yes", + "gps_code": "UWPS", + "iata_code": "SKX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saransk_Airport", + "keywords": "Аэропорт Саранск" + }, + { + "id": "30804", + "ident": "UWSB", + "type": "medium_airport", + "name": "Balakovo Airport", + "latitude_deg": "51.8582992554", + "longitude_deg": "47.7456016541", + "elevation_ft": "95", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAR", + "municipality": "Balakovo", + "scheduled_service": "yes", + "gps_code": "UWSB", + "iata_code": "BWO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Balakovo_Airport", + "keywords": "Malaya Bykovka Airport, Аэропорт Балаково, Аэропорт Малая Быковка" + }, + { + "id": "339001", + "ident": "UWSG", + "type": "large_airport", + "name": "Gagarin International Airport", + "latitude_deg": "51.712778", + "longitude_deg": "46.171111", + "elevation_ft": "103", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAR", + "municipality": "Saratov", + "scheduled_service": "yes", + "gps_code": "UWSG", + "iata_code": "GSV", + "home_link": "http://gsv.aero/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saratov_Gagarin_Airport" + }, + { + "id": "44315", + "ident": "UWSK", + "type": "small_airport", + "name": "Krasny Kut Airport", + "latitude_deg": "50.955458", + "longitude_deg": "46.949901", + "elevation_ft": "177", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAR", + "municipality": "Krasny Kut", + "scheduled_service": "no", + "gps_code": "UWSK", + "home_link": "http://www.kluga.ru/", + "keywords": "Аэропорт Красный Кут" + }, + { + "id": "26410", + "ident": "UWSS", + "type": "closed", + "name": "Saratov Central Airport", + "latitude_deg": "51.564999", + "longitude_deg": "46.0467", + "elevation_ft": "499", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAR", + "municipality": "Saratov", + "scheduled_service": "no", + "gps_code": "UWSS", + "iata_code": "RTW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saratov_Tsentralny_Airport", + "keywords": "Saratov Tsentralny Airport, Аэропорт Центральный" + }, + { + "id": "351649", + "ident": "UWTK", + "type": "small_airport", + "name": "Karaishevo Airfield", + "latitude_deg": "55.53869", + "longitude_deg": "49.32154", + "elevation_ft": "185", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TA", + "municipality": "Karaishevo", + "scheduled_service": "no", + "gps_code": "UWTK" + }, + { + "id": "42920", + "ident": "UWUA", + "type": "small_airport", + "name": "Sibay Airport", + "latitude_deg": "52.68741226196289", + "longitude_deg": "58.71480178833008", + "elevation_ft": "1309", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BA", + "municipality": "Sibay", + "scheduled_service": "no", + "gps_code": "UWUA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sibay_Airport" + }, + { + "id": "30690", + "ident": "UWUB", + "type": "small_airport", + "name": "Beloretsk Airport", + "latitude_deg": "53.938389", + "longitude_deg": "58.340113", + "elevation_ft": "1827", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BA", + "municipality": "Beloretsk", + "scheduled_service": "no", + "gps_code": "UWUB", + "iata_code": "BCX" + }, + { + "id": "32019", + "ident": "UWUF", + "type": "small_airport", + "name": "Neftekamsk Airport", + "latitude_deg": "56.1068992615", + "longitude_deg": "54.3471984863", + "elevation_ft": "456", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BA", + "municipality": "Neftekamsk", + "scheduled_service": "no", + "gps_code": "UWUF", + "iata_code": "NEF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Neftekamsk_Airport", + "keywords": "УВУФ, Нефтекамск" + }, + { + "id": "32112", + "ident": "UWUK", + "type": "small_airport", + "name": "Oktyabrskiy Airport", + "latitude_deg": "54.4399986267", + "longitude_deg": "53.3883018494", + "elevation_ft": "377", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TA", + "municipality": "Kzyl-Yar", + "scheduled_service": "no", + "gps_code": "UWUK", + "iata_code": "OKT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oktyabrsky_Airport", + "keywords": "Oktyabrsky Airport, Аэропорт Октябрьский" + }, + { + "id": "42921", + "ident": "UWUM", + "type": "medium_airport", + "name": "Maksimovka Airport", + "latitude_deg": "54.83000183105469", + "longitude_deg": "56.16830062866211", + "elevation_ft": "325", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BA", + "municipality": "Ufa", + "scheduled_service": "no", + "gps_code": "UWUM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ufa_Maximovka_Airport", + "keywords": "Maximovka Airport, Аэропорт Максимовка" + }, + { + "id": "26411", + "ident": "UWUU", + "type": "large_airport", + "name": "Ufa International Airport", + "latitude_deg": "54.557498931885", + "longitude_deg": "55.874401092529", + "elevation_ft": "449", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-BA", + "municipality": "Ufa", + "scheduled_service": "yes", + "gps_code": "UWUU", + "iata_code": "UFA", + "home_link": "http://www.airportufa.ru/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ufa_International_Airport", + "keywords": "Международный аэропорт Уфа" + }, + { + "id": "315322", + "ident": "UWUZ", + "type": "small_airport", + "name": "Aktanysh Airport", + "latitude_deg": "55.6975", + "longitude_deg": "54.0677", + "elevation_ft": "378", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-TA", + "municipality": "Aktanysh", + "scheduled_service": "no", + "gps_code": "UWUZ", + "local_code": "UWUZ", + "keywords": "УВУЗ, Актаныш" + }, + { + "id": "43671", + "ident": "UWWB", + "type": "medium_airport", + "name": "Buguruslan Severny Airport", + "latitude_deg": "53.71839904789999", + "longitude_deg": "52.3718986511", + "elevation_ft": "728", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-ORE", + "municipality": "Buguruslan", + "scheduled_service": "no", + "gps_code": "UWWB", + "keywords": "Buguruslan North Airport, Аэропорт Бугуруслан Северный" + }, + { + "id": "46254", + "ident": "UWWE", + "type": "small_airport", + "name": "Verkhneye Sancheleyevo Airfield", + "latitude_deg": "53.6960966684", + "longitude_deg": "49.491519928", + "elevation_ft": "246", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAM", + "municipality": "Tolyatti", + "scheduled_service": "no", + "gps_code": "UWWE", + "home_link": "http://www.aviatlt.ru/", + "keywords": "Verkhnee Sancheleevo Airfield, Аэродром Верхнее Санчелеево, УВВЕ" + }, + { + "id": "44614", + "ident": "UWWG", + "type": "medium_airport", + "name": "Bezymyanka Airfield", + "latitude_deg": "53.220001220703125", + "longitude_deg": "50.32500076293945", + "elevation_ft": "135", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAM", + "municipality": "Samara", + "scheduled_service": "no", + "gps_code": "UWWG", + "home_link": "http://www.aviacor.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bezymyanka_%28airport%29", + "keywords": "Bezimyanka Airfield, Аэродром Безымянка" + }, + { + "id": "44613", + "ident": "UWWS", + "type": "small_airport", + "name": "Smyshlyayevka Airport", + "latitude_deg": "53.2400016784668", + "longitude_deg": "50.375", + "elevation_ft": "131", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAM", + "municipality": "Samara", + "scheduled_service": "no", + "gps_code": "UWWS", + "keywords": "Smyshlyaevka Airport, Аэропорт Смышляевка" + }, + { + "id": "46255", + "ident": "UWWT", + "type": "closed", + "name": "Tolyatti Airport", + "latitude_deg": "53.596638", + "longitude_deg": "49.378374", + "elevation_ft": "230", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAM", + "municipality": "Tolyatti", + "scheduled_service": "no", + "keywords": "Аэропорт Тольятти, УВВТ, UWWT" + }, + { + "id": "26412", + "ident": "UWWW", + "type": "large_airport", + "name": "Kurumoch International Airport", + "latitude_deg": "53.504901885986", + "longitude_deg": "50.16429901123", + "elevation_ft": "477", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAM", + "municipality": "Samara", + "scheduled_service": "yes", + "gps_code": "UWWW", + "iata_code": "KUF", + "home_link": "http://airport.samara.ru/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kurumoch_International_Airport" + }, + { + "id": "39084", + "ident": "UY-0001", + "type": "small_airport", + "name": "Villa Independencia Airport", + "latitude_deg": "-33.14196", + "longitude_deg": "-58.293759", + "elevation_ft": "52", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-RN", + "municipality": "Fray Bentos", + "scheduled_service": "no", + "gps_code": "SUFB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Villa_Independencia_Airport", + "keywords": "FZB, Fray Bentos Airport" + }, + { + "id": "39085", + "ident": "UY-0002", + "type": "small_airport", + "name": "Rocha Airport", + "latitude_deg": "-34.4781", + "longitude_deg": "-54.2799", + "elevation_ft": "91", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-RO", + "municipality": "Rocha", + "scheduled_service": "no" + }, + { + "id": "324370", + "ident": "UY-0003", + "type": "closed", + "name": "Carlos M Fraschini Airport", + "latitude_deg": "-32.246237", + "longitude_deg": "-58.093017", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-PA", + "municipality": "Paysandu", + "scheduled_service": "no" + }, + { + "id": "324371", + "ident": "UY-0004", + "type": "small_airport", + "name": "Garcia Brum Airstrip", + "latitude_deg": "-32.396295", + "longitude_deg": "-56.588257", + "elevation_ft": "448", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-PA", + "scheduled_service": "no" + }, + { + "id": "324636", + "ident": "UY-0005", + "type": "small_airport", + "name": "Joaquín Lenzina Airport", + "latitude_deg": "-31.868851", + "longitude_deg": "-55.498746", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-TA", + "municipality": "Ansina", + "scheduled_service": "no" + }, + { + "id": "324637", + "ident": "UY-0006", + "type": "small_airport", + "name": "Ansina Airstrip", + "latitude_deg": "-31.869065", + "longitude_deg": "-55.491636", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-TA", + "municipality": "Ansina", + "scheduled_service": "no" + }, + { + "id": "325594", + "ident": "UY-0007", + "type": "small_airport", + "name": "La Lata Aeroclub Airport", + "latitude_deg": "-30.952597", + "longitude_deg": "-55.5353", + "elevation_ft": "743", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-RV", + "municipality": "Rivera", + "scheduled_service": "no" + }, + { + "id": "325597", + "ident": "UY-0008", + "type": "small_airport", + "name": "Ricardo Raver Airport", + "latitude_deg": "-34.312485", + "longitude_deg": "-57.041631", + "elevation_ft": "92", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-SJ", + "municipality": "Ecilda Paullier", + "scheduled_service": "no" + }, + { + "id": "325599", + "ident": "UY-0009", + "type": "small_airport", + "name": "Aeroclub Guichón Airfield", + "latitude_deg": "-32.346251", + "longitude_deg": "-57.170861", + "elevation_ft": "276", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-PA", + "municipality": "Guichón", + "scheduled_service": "no" + }, + { + "id": "325603", + "ident": "UY-0010", + "type": "small_airport", + "name": "Saman Lascano Airport", + "latitude_deg": "-33.755113", + "longitude_deg": "-54.148823", + "elevation_ft": "163", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-RO", + "municipality": "Lascano", + "scheduled_service": "no" + }, + { + "id": "325604", + "ident": "UY-0011", + "type": "small_airport", + "name": "La Media Luna Airport", + "latitude_deg": "-30.4053", + "longitude_deg": "-57.2756", + "elevation_ft": "255", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-AR", + "municipality": "Yucutujá", + "scheduled_service": "no" + }, + { + "id": "325903", + "ident": "UY-0012", + "type": "heliport", + "name": "Carmelo Park Hyatt Heliport", + "latitude_deg": "-33.95582", + "longitude_deg": "-58.335986", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-CO", + "municipality": "Carmelo", + "scheduled_service": "no" + }, + { + "id": "326528", + "ident": "UY-0013", + "type": "small_airport", + "name": "Florida Aviation Center", + "latitude_deg": "-34.08392", + "longitude_deg": "-56.186665", + "elevation_ft": "188", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-FD", + "municipality": "Florida", + "scheduled_service": "no", + "gps_code": "SUFL" + }, + { + "id": "326549", + "ident": "UY-0014", + "type": "small_airport", + "name": "Juan B. Desalvo Airport", + "latitude_deg": "-33.485556", + "longitude_deg": "-56.890833", + "elevation_ft": "423", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-FS", + "municipality": "Trinidad", + "scheduled_service": "no", + "gps_code": "SUTD", + "keywords": "Aeroclub de Flores" + }, + { + "id": "348478", + "ident": "UY-0015", + "type": "small_airport", + "name": "La Arcadia Airport", + "latitude_deg": "-34.18717", + "longitude_deg": "-58.0733", + "elevation_ft": "59", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-CO", + "municipality": "Puerto de Conchillas", + "scheduled_service": "no" + }, + { + "id": "348479", + "ident": "UY-0016", + "type": "small_airport", + "name": "La Rabida Airport", + "latitude_deg": "-34.72139", + "longitude_deg": "-56.61134", + "elevation_ft": "104", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-SJ", + "municipality": "Estancia La Rabida", + "scheduled_service": "no" + }, + { + "id": "348480", + "ident": "UY-0017", + "type": "small_airport", + "name": "Kiyú Airport", + "latitude_deg": "-34.66828", + "longitude_deg": "-56.71273", + "elevation_ft": "75", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-SJ", + "municipality": "Kiyú", + "scheduled_service": "no" + }, + { + "id": "348481", + "ident": "UY-0018", + "type": "small_airport", + "name": "La Horqueta Airport", + "latitude_deg": "-34.56547", + "longitude_deg": "-56.72975", + "elevation_ft": "144", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-SJ", + "municipality": "Puntas de Valdez", + "scheduled_service": "no" + }, + { + "id": "348482", + "ident": "UY-0019", + "type": "small_airport", + "name": "Wings of Freedom Airport", + "latitude_deg": "-34.76568", + "longitude_deg": "-55.48423", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-CA", + "municipality": "Cuchilla Alta", + "scheduled_service": "no" + }, + { + "id": "348483", + "ident": "UY-0020", + "type": "small_airport", + "name": "Cumbres de Carrasco Airport", + "latitude_deg": "-34.76896", + "longitude_deg": "-55.95315", + "elevation_ft": "83", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-CA", + "municipality": "Ciudad de la Costa", + "scheduled_service": "no" + }, + { + "id": "348484", + "ident": "UY-0021", + "type": "small_airport", + "name": "La Rinconada Airport", + "latitude_deg": "-34.66773", + "longitude_deg": "-54.30602", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-RO", + "municipality": "La Paloma", + "scheduled_service": "no" + }, + { + "id": "349347", + "ident": "UY-0022", + "type": "small_airport", + "name": "Nueva Helvecia Airport", + "latitude_deg": "-34.244003", + "longitude_deg": "-57.205465", + "elevation_ft": "135", + "continent": "SA", + "iso_country": "UY", + "iso_region": "UY-CO", + "municipality": "Nueva Helvecia", + "scheduled_service": "no" + }, + { + "id": "41688", + "ident": "UZ-0001", + "type": "closed", + "name": "Aim Southeast Airport", + "latitude_deg": "40.753399", + "longitude_deg": "72.752296", + "elevation_ft": "2240", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-AN", + "municipality": "Kurgantepa", + "scheduled_service": "no" + }, + { + "id": "41689", + "ident": "UZ-0002", + "type": "closed", + "name": "Ak Kurgan Airport", + "latitude_deg": "40.86287", + "longitude_deg": "69.029046", + "elevation_ft": "969", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-TO", + "municipality": "Ak Kurgan", + "scheduled_service": "no" + }, + { + "id": "26418", + "ident": "UZ-0003", + "type": "closed", + "name": "Beleuli North Airport", + "latitude_deg": "44.054254", + "longitude_deg": "57.54776", + "elevation_ft": "413", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QR", + "municipality": "Jasliq", + "scheduled_service": "no", + "local_code": "UT1O", + "keywords": "Zhaslyk Airport, Аэропорт Белеули Северный, Аэропорт Жаслык" + }, + { + "id": "41691", + "ident": "UZ-0004", + "type": "closed", + "name": "Andizhan Northeast Airport", + "latitude_deg": "40.887563", + "longitude_deg": "72.406724", + "elevation_ft": "1585", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-AN", + "municipality": "Andizhan", + "scheduled_service": "no" + }, + { + "id": "41692", + "ident": "UZ-0005", + "type": "closed", + "name": "Balykchi Southwest Airport", + "latitude_deg": "40.827202", + "longitude_deg": "71.767998", + "elevation_ft": "1344", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-AN", + "municipality": "Saryksu", + "scheduled_service": "no" + }, + { + "id": "41693", + "ident": "UZ-0006", + "type": "small_airport", + "name": "Besh Kotan Airport", + "latitude_deg": "37.493271", + "longitude_deg": "66.978463", + "elevation_ft": "1063", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SU", + "municipality": "Besh Kotan", + "scheduled_service": "no" + }, + { + "id": "41694", + "ident": "UZ-0007", + "type": "closed", + "name": "Charkhin Airport", + "latitude_deg": "39.6665", + "longitude_deg": "66.7705", + "elevation_ft": "2200", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SA", + "municipality": "Charkhin", + "scheduled_service": "no" + }, + { + "id": "41695", + "ident": "UZ-0008", + "type": "closed", + "name": "Chartak Airport", + "latitude_deg": "40.949405", + "longitude_deg": "69.043633", + "elevation_ft": "999", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-TO", + "municipality": "Chartak", + "scheduled_service": "no" + }, + { + "id": "41696", + "ident": "UZ-0009", + "type": "small_airport", + "name": "Chinaz Highway Airstrip", + "latitude_deg": "40.97949981689453", + "longitude_deg": "68.79219818115234", + "elevation_ft": "923", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-TO", + "municipality": "Chinaz", + "scheduled_service": "no" + }, + { + "id": "41697", + "ident": "UZ-0010", + "type": "closed", + "name": "Dustlik North Airport", + "latitude_deg": "40.549809", + "longitude_deg": "68.08371", + "elevation_ft": "879", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Dustlik", + "scheduled_service": "no" + }, + { + "id": "41698", + "ident": "UZ-0011", + "type": "closed", + "name": "Dutyr Airport", + "latitude_deg": "40.372501", + "longitude_deg": "71.370499", + "elevation_ft": "1473", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-FA", + "municipality": "Rishtan", + "scheduled_service": "no" + }, + { + "id": "41699", + "ident": "UZ-0012", + "type": "small_airport", + "name": "Kunkhodzha Airport", + "latitude_deg": "43.118801", + "longitude_deg": "58.3736", + "elevation_ft": "300", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QR", + "municipality": "Kunkhodzha", + "scheduled_service": "no", + "keywords": "Dzhangabirlyk West" + }, + { + "id": "41700", + "ident": "UZ-0013", + "type": "small_airport", + "name": "Dzhar-Tepe Airport", + "latitude_deg": "39.16740036010742", + "longitude_deg": "66.7145004272461", + "elevation_ft": "2022", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Dzhar-Tepe", + "scheduled_service": "no" + }, + { + "id": "41701", + "ident": "UZ-0014", + "type": "closed", + "name": "Fergana Southwest Airport", + "latitude_deg": "40.309101", + "longitude_deg": "71.7145", + "elevation_ft": "2327", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-FA", + "municipality": "Fergana", + "scheduled_service": "no" + }, + { + "id": "41702", + "ident": "UZ-0015", + "type": "closed", + "name": "Galyabita East Airport", + "latitude_deg": "38.419701", + "longitude_deg": "68.101097", + "elevation_ft": "1940", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SU", + "municipality": "Galyabita", + "scheduled_service": "no" + }, + { + "id": "41703", + "ident": "UZ-0016", + "type": "closed", + "name": "Guzar Airport", + "latitude_deg": "38.634701", + "longitude_deg": "66.272797", + "elevation_ft": "1679", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Guzar", + "scheduled_service": "no" + }, + { + "id": "41704", + "ident": "UZ-0017", + "type": "closed", + "name": "Atakent Airport", + "latitude_deg": "40.874993", + "longitude_deg": "68.460041", + "elevation_ft": "852", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Atakent", + "scheduled_service": "no" + }, + { + "id": "41705", + "ident": "UZ-0018", + "type": "closed", + "name": "Ilich North Airport", + "latitude_deg": "40.939201", + "longitude_deg": "68.520203", + "elevation_ft": "835", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Ilich", + "scheduled_service": "no" + }, + { + "id": "41706", + "ident": "UZ-0019", + "type": "small_airport", + "name": "Imeni Kirova Airport", + "latitude_deg": "40.633514", + "longitude_deg": "68.617562", + "elevation_ft": "875", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SI", + "municipality": "Imeni Kirova", + "scheduled_service": "no" + }, + { + "id": "41707", + "ident": "UZ-0020", + "type": "small_airport", + "name": "Aranchi Airfield", + "latitude_deg": "41.026817", + "longitude_deg": "69.199536", + "elevation_ft": "1132", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-TO", + "municipality": "Aranchi", + "scheduled_service": "no", + "keywords": "Angren, Kalinovka" + }, + { + "id": "41708", + "ident": "UZ-0021", + "type": "small_airport", + "name": "Kamashi Airport", + "latitude_deg": "38.80440139770508", + "longitude_deg": "66.52960205078125", + "elevation_ft": "1780", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Kamashi", + "scheduled_service": "no" + }, + { + "id": "41709", + "ident": "UZ-0022", + "type": "small_airport", + "name": "Kara Kalpak Airport", + "latitude_deg": "40.80339813232422", + "longitude_deg": "71.18920135498047", + "elevation_ft": "1229", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-NG", + "municipality": "Kara Kalpak", + "scheduled_service": "no" + }, + { + "id": "41710", + "ident": "UZ-0023", + "type": "small_airport", + "name": "Kayki Airport", + "latitude_deg": "41.078374", + "longitude_deg": "72.028289", + "elevation_ft": "1570", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-NG", + "municipality": "Kayki", + "scheduled_service": "no" + }, + { + "id": "41711", + "ident": "UZ-0024", + "type": "heliport", + "name": "Dehqonobod Heliport", + "latitude_deg": "38.343389", + "longitude_deg": "66.447908", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Dehqonobod", + "scheduled_service": "no" + }, + { + "id": "41712", + "ident": "UZ-0025", + "type": "small_airport", + "name": "Kokand Southeast Airport", + "latitude_deg": "40.377905", + "longitude_deg": "71.093859", + "elevation_ft": "1890", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-FA", + "municipality": "Kokand", + "scheduled_service": "no" + }, + { + "id": "41713", + "ident": "UZ-0026", + "type": "closed", + "name": "Qo'shrabot Airport", + "latitude_deg": "39.766998", + "longitude_deg": "64.312103", + "elevation_ft": "715", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-BU", + "municipality": "Chor Bakr", + "scheduled_service": "no", + "keywords": "Kosh Rabat" + }, + { + "id": "41714", + "ident": "UZ-0027", + "type": "closed", + "name": "Kumushkent Airport", + "latitude_deg": "39.807999", + "longitude_deg": "66.844299", + "elevation_ft": "2025", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SA", + "municipality": "Kumushkent", + "scheduled_service": "no" + }, + { + "id": "41715", + "ident": "UZ-0028", + "type": "small_airport", + "name": "Kuva Southeast Airport", + "latitude_deg": "40.483441", + "longitude_deg": "72.280825", + "elevation_ft": "1973", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-AN", + "municipality": "Markhamat", + "scheduled_service": "no", + "keywords": "AG3808, FR38715" + }, + { + "id": "41716", + "ident": "UZ-0029", + "type": "small_airport", + "name": "Kuva West Airport", + "latitude_deg": "40.504785", + "longitude_deg": "71.902458", + "elevation_ft": "1591", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-FA", + "municipality": "Ramadan", + "scheduled_service": "no" + }, + { + "id": "41717", + "ident": "UZ-0030", + "type": "small_airport", + "name": "Muglan Airport", + "latitude_deg": "38.901798248291016", + "longitude_deg": "65.39669799804688", + "elevation_ft": "1050", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Muglan", + "scheduled_service": "no" + }, + { + "id": "41718", + "ident": "UZ-0031", + "type": "small_airport", + "name": "Muruntau Southeast Airport", + "latitude_deg": "41.47116470336914", + "longitude_deg": "64.66607666015625", + "elevation_ft": "1340", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-NW", + "municipality": "Muruntau", + "scheduled_service": "no" + }, + { + "id": "41719", + "ident": "UZ-0032", + "type": "small_airport", + "name": "Namangan Northeast Airport", + "latitude_deg": "41.044891", + "longitude_deg": "71.786989", + "elevation_ft": "1591", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-NG", + "municipality": "Namangan", + "scheduled_service": "no" + }, + { + "id": "41720", + "ident": "UZ-0033", + "type": "small_airport", + "name": "Naubag Airport", + "latitude_deg": "37.65290069580078", + "longitude_deg": "66.97380065917969", + "elevation_ft": "1264", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SU", + "municipality": "Akkurgan", + "scheduled_service": "no" + }, + { + "id": "41721", + "ident": "UZ-0034", + "type": "small_airport", + "name": "Nishan Airport", + "latitude_deg": "38.58919906616211", + "longitude_deg": "65.60970306396484", + "elevation_ft": "1165", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Nishan", + "scheduled_service": "no" + }, + { + "id": "41722", + "ident": "UZ-0035", + "type": "small_airport", + "name": "Nukus South Airport", + "latitude_deg": "42.36360168457031", + "longitude_deg": "59.516998291015625", + "elevation_ft": "240", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QR", + "municipality": "Nukus", + "scheduled_service": "no" + }, + { + "id": "41723", + "ident": "UZ-0036", + "type": "closed", + "name": "Obi Kiik Airport", + "latitude_deg": "38.249298", + "longitude_deg": "67.721703", + "elevation_ft": "2213", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SU", + "municipality": "Khodzhi Sagat", + "scheduled_service": "no" + }, + { + "id": "41724", + "ident": "UZ-0037", + "type": "small_airport", + "name": "Ostrov Vozrozhdeniya Airport", + "latitude_deg": "45.159148", + "longitude_deg": "59.301882", + "elevation_ft": "232", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QR", + "municipality": "Kantubek", + "scheduled_service": "no" + }, + { + "id": "41725", + "ident": "UZ-0038", + "type": "closed", + "name": "Ostrov Vozrozhdeniya Southwest Airport", + "latitude_deg": "45.090401", + "longitude_deg": "59.222099", + "elevation_ft": "194", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QR", + "municipality": "Kantubek", + "scheduled_service": "no" + }, + { + "id": "41726", + "ident": "UZ-0039", + "type": "closed", + "name": "Pap Airport", + "latitude_deg": "40.888599", + "longitude_deg": "71.091301", + "elevation_ft": "1516", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-NG", + "municipality": "Khalkabad", + "scheduled_service": "no" + }, + { + "id": "41727", + "ident": "UZ-0040", + "type": "closed", + "name": "Payark Airport", + "latitude_deg": "39.937801361083984", + "longitude_deg": "66.8666000366211", + "elevation_ft": "1990", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SA", + "municipality": "Payark", + "scheduled_service": "no" + }, + { + "id": "41728", + "ident": "UZ-0041", + "type": "closed", + "name": "Saybui Airport", + "latitude_deg": "40.636002", + "longitude_deg": "71.700699", + "elevation_ft": "1391", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-FA", + "municipality": "Saybui", + "scheduled_service": "no", + "keywords": "Soybuyi" + }, + { + "id": "41729", + "ident": "UZ-0042", + "type": "small_airport", + "name": "Shirabad Northeast Airport", + "latitude_deg": "37.690399169921875", + "longitude_deg": "67.05039978027344", + "elevation_ft": "1313", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SU", + "municipality": "Shirabad", + "scheduled_service": "no" + }, + { + "id": "41730", + "ident": "UZ-0043", + "type": "small_airport", + "name": "Shur Ob East Airport", + "latitude_deg": "37.39509963989258", + "longitude_deg": "67.03990173339844", + "elevation_ft": "936", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SU", + "municipality": "Shur Ob", + "scheduled_service": "no" + }, + { + "id": "41731", + "ident": "UZ-0044", + "type": "closed", + "name": "Shurchi North Airport", + "latitude_deg": "38.030998", + "longitude_deg": "67.792198", + "elevation_ft": "1483", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SU", + "municipality": "Shurchi", + "scheduled_service": "no" + }, + { + "id": "41732", + "ident": "UZ-0045", + "type": "closed", + "name": "Soldatskiy Southeast Airport", + "latitude_deg": "40.789132", + "longitude_deg": "68.977414", + "elevation_ft": "960", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-TO", + "municipality": "Soldatskiy", + "scheduled_service": "no" + }, + { + "id": "41733", + "ident": "UZ-0046", + "type": "small_airport", + "name": "Statsiya Yakkabag Airport", + "latitude_deg": "38.975366", + "longitude_deg": "66.726805", + "elevation_ft": "1970", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Yakkabag", + "scheduled_service": "no" + }, + { + "id": "41734", + "ident": "UZ-0047", + "type": "small_airport", + "name": "Syrdarya Airport", + "latitude_deg": "40.809101", + "longitude_deg": "68.687698", + "elevation_ft": "858", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SI", + "municipality": "Syrdarya", + "scheduled_service": "no" + }, + { + "id": "41735", + "ident": "UZ-0048", + "type": "small_airport", + "name": "Syrdarya Highway Southwest Airstrip", + "latitude_deg": "40.772499", + "longitude_deg": "68.563599", + "elevation_ft": "864", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Syrdaya", + "scheduled_service": "no" + }, + { + "id": "41736", + "ident": "UZ-0049", + "type": "closed", + "name": "Tallimarjon Airport", + "latitude_deg": "38.317592", + "longitude_deg": "65.565767", + "elevation_ft": "1257", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Tallimarjon", + "scheduled_service": "no" + }, + { + "id": "41737", + "ident": "UZ-0050", + "type": "closed", + "name": "Tardzhilga Airport", + "latitude_deg": "39.248299", + "longitude_deg": "66.266098", + "elevation_ft": "1616", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Tardzhilga", + "scheduled_service": "no" + }, + { + "id": "41738", + "ident": "UZ-0051", + "type": "small_airport", + "name": "Tashkent Angor Airport", + "latitude_deg": "37.464258", + "longitude_deg": "67.078743", + "elevation_ft": "1041", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SU", + "municipality": "Tashkent", + "scheduled_service": "no" + }, + { + "id": "41739", + "ident": "UZ-0052", + "type": "closed", + "name": "Termez East Airport", + "latitude_deg": "37.2808", + "longitude_deg": "67.365501", + "elevation_ft": "1024", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SU", + "municipality": "Termez", + "scheduled_service": "no" + }, + { + "id": "41740", + "ident": "UZ-0053", + "type": "closed", + "name": "Toytepa Airport", + "latitude_deg": "41.0755", + "longitude_deg": "69.345123", + "elevation_ft": "1265", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-TO", + "municipality": "Nurafshon", + "scheduled_service": "no" + }, + { + "id": "41741", + "ident": "UZ-0054", + "type": "small_airport", + "name": "Uchkurgan Southeast Airport", + "latitude_deg": "41.046854", + "longitude_deg": "72.116494", + "elevation_ft": "1562", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-NG", + "municipality": "Uchkurgan", + "scheduled_service": "no" + }, + { + "id": "41742", + "ident": "UZ-0055", + "type": "small_airport", + "name": "Udurgi Airport", + "latitude_deg": "39.726809", + "longitude_deg": "64.390273", + "elevation_ft": "718", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-BU", + "municipality": "Udurgi", + "scheduled_service": "no" + }, + { + "id": "41743", + "ident": "UZ-0056", + "type": "small_airport", + "name": "Uychi Southeast Airport", + "latitude_deg": "41.00979995727539", + "longitude_deg": "71.94869995117188", + "elevation_ft": "1440", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-NG", + "municipality": "Uychi", + "scheduled_service": "no" + }, + { + "id": "41744", + "ident": "UZ-0057", + "type": "closed", + "name": "Yangi-Kent Airport", + "latitude_deg": "38.688099", + "longitude_deg": "66.0868", + "elevation_ft": "1510", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Yangi-Kent", + "scheduled_service": "no" + }, + { + "id": "41745", + "ident": "UZ-0058", + "type": "closed", + "name": "Yaypan Northeast Airport", + "latitude_deg": "40.383145", + "longitude_deg": "70.926544", + "elevation_ft": "1790", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-FA", + "municipality": "Yaypan", + "scheduled_service": "no", + "keywords": "Яыпан, Yaydan" + }, + { + "id": "41746", + "ident": "UZ-0059", + "type": "closed", + "name": "Zar Chob Airport", + "latitude_deg": "38.515999", + "longitude_deg": "67.846603", + "elevation_ft": "2530", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SU", + "municipality": "Zar Chob", + "scheduled_service": "no" + }, + { + "id": "41747", + "ident": "UZ-0060", + "type": "small_airport", + "name": "Alhi Airport", + "latitude_deg": "40.93299", + "longitude_deg": "69.13819", + "elevation_ft": "1091", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-TO", + "municipality": "Alhi", + "scheduled_service": "no" + }, + { + "id": "41748", + "ident": "UZ-0061", + "type": "small_airport", + "name": "Aradzhi Airport", + "latitude_deg": "41.50798416137695", + "longitude_deg": "60.42179870605469", + "elevation_ft": "311", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-XO", + "municipality": "Aradzhi", + "scheduled_service": "no" + }, + { + "id": "41749", + "ident": "UZ-0062", + "type": "closed", + "name": "Aravan Northeast Airport", + "latitude_deg": "40.580502", + "longitude_deg": "72.3536", + "elevation_ft": "1857", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-AN", + "municipality": "Shorkishlak", + "scheduled_service": "no" + }, + { + "id": "41750", + "ident": "UZ-0063", + "type": "closed", + "name": "Bakht Southeast Airport", + "latitude_deg": "40.706402", + "longitude_deg": "68.688797", + "elevation_ft": "864", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SI", + "municipality": "Bakht", + "scheduled_service": "no" + }, + { + "id": "41751", + "ident": "UZ-0064", + "type": "closed", + "name": "Bayaut Pervyy West Airport", + "latitude_deg": "40.425999", + "longitude_deg": "68.967102", + "elevation_ft": "936", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SI", + "municipality": "Bayaut Pervyy", + "scheduled_service": "no" + }, + { + "id": "41752", + "ident": "UZ-0065", + "type": "small_airport", + "name": "Beruni Airport", + "latitude_deg": "41.68532180786133", + "longitude_deg": "60.71579360961914", + "elevation_ft": "318", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QR", + "municipality": "Beruni", + "scheduled_service": "no" + }, + { + "id": "41753", + "ident": "UZ-0066", + "type": "small_airport", + "name": "Chambel Airport", + "latitude_deg": "40.023572", + "longitude_deg": "67.143373", + "elevation_ft": "2198", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Khatcha", + "scheduled_service": "no" + }, + { + "id": "41754", + "ident": "UZ-0067", + "type": "closed", + "name": "Chim Airport", + "latitude_deg": "38.8302", + "longitude_deg": "66.262497", + "elevation_ft": "1480", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Chim", + "scheduled_service": "no" + }, + { + "id": "41755", + "ident": "UZ-0068", + "type": "closed", + "name": "Chimkurgan Airport", + "latitude_deg": "40.3797", + "longitude_deg": "67.664101", + "elevation_ft": "925", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Chimkurgan", + "scheduled_service": "no" + }, + { + "id": "41756", + "ident": "UZ-0069", + "type": "closed", + "name": "Chimkurgan Northwest Airport", + "latitude_deg": "40.4104", + "longitude_deg": "67.784203", + "elevation_ft": "890", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Chimkurgan", + "scheduled_service": "no" + }, + { + "id": "41757", + "ident": "UZ-0070", + "type": "closed", + "name": "Daul Airport", + "latitude_deg": "39.743599", + "longitude_deg": "66.7239", + "elevation_ft": "2082", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SA", + "municipality": "Daul", + "scheduled_service": "no" + }, + { + "id": "41758", + "ident": "UZ-0071", + "type": "closed", + "name": "Denau Airport", + "latitude_deg": "38.248901", + "longitude_deg": "67.927803", + "elevation_ft": "1637", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SU", + "municipality": "Denau", + "scheduled_service": "no" + }, + { + "id": "41759", + "ident": "UZ-0072", + "type": "closed", + "name": "Denau Southwest Airport", + "latitude_deg": "38.205843", + "longitude_deg": "67.878004", + "elevation_ft": "1690", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SU", + "municipality": "Denau", + "scheduled_service": "no" + }, + { + "id": "41760", + "ident": "UZ-0073", + "type": "closed", + "name": "Dimitrovskoye Airport", + "latitude_deg": "40.297217", + "longitude_deg": "69.04903", + "elevation_ft": "997", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SI", + "municipality": "Dimitrovskoye", + "scheduled_service": "no" + }, + { + "id": "41761", + "ident": "UZ-0074", + "type": "closed", + "name": "Dustlik East Airport", + "latitude_deg": "40.468533", + "longitude_deg": "68.13723", + "elevation_ft": "900", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Dustlik", + "scheduled_service": "no" + }, + { + "id": "41762", + "ident": "UZ-0075", + "type": "closed", + "name": "Dustlik Northeast Airport", + "latitude_deg": "40.477516", + "longitude_deg": "68.088692", + "elevation_ft": "900", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Dustlik", + "scheduled_service": "no" + }, + { + "id": "41763", + "ident": "UZ-0076", + "type": "closed", + "name": "Dustlik Southeast Airport", + "latitude_deg": "40.391499", + "longitude_deg": "68.033203", + "elevation_ft": "941", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Dustlik", + "scheduled_service": "no" + }, + { + "id": "41764", + "ident": "UZ-0077", + "type": "small_airport", + "name": "Dzharkurgan East Airport", + "latitude_deg": "37.50899887084961", + "longitude_deg": "67.47229766845703", + "elevation_ft": "1138", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SU", + "municipality": "Dzharkurgan", + "scheduled_service": "no" + }, + { + "id": "41765", + "ident": "UZ-0078", + "type": "closed", + "name": "Faizabad Airport", + "latitude_deg": "38.744911", + "longitude_deg": "65.780071", + "elevation_ft": "1238", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Faizabad", + "scheduled_service": "no" + }, + { + "id": "41766", + "ident": "UZ-0079", + "type": "small_airport", + "name": "Gilyambor Airport", + "latitude_deg": "37.40700149536133", + "longitude_deg": "67.18370056152344", + "elevation_ft": "1024", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SU", + "municipality": "Gilyambor", + "scheduled_service": "no" + }, + { + "id": "41767", + "ident": "UZ-0080", + "type": "closed", + "name": "Golodnaya Step Southeast Airport", + "latitude_deg": "40.415798", + "longitude_deg": "68.414902", + "elevation_ft": "916", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SI", + "municipality": "Golodnaya", + "scheduled_service": "no" + }, + { + "id": "41768", + "ident": "UZ-0081", + "type": "small_airport", + "name": "Gulistan North Airport", + "latitude_deg": "40.51276", + "longitude_deg": "68.798999", + "elevation_ft": "893", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SI", + "municipality": "Gulistan", + "scheduled_service": "no" + }, + { + "id": "41769", + "ident": "UZ-0082", + "type": "closed", + "name": "Imeni Chkalova Airport", + "latitude_deg": "40.553902", + "longitude_deg": "68.9216", + "elevation_ft": "898", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SI", + "municipality": "Imeni Chkalova", + "scheduled_service": "no" + }, + { + "id": "41770", + "ident": "UZ-0083", + "type": "closed", + "name": "Irdzharskaya Northwest Airport", + "latitude_deg": "40.737", + "longitude_deg": "67.961998", + "elevation_ft": "830", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Irdzharskaya", + "scheduled_service": "no" + }, + { + "id": "41771", + "ident": "UZ-0084", + "type": "closed", + "name": "Irdzharskaya West Airport", + "latitude_deg": "40.679401", + "longitude_deg": "67.998398", + "elevation_ft": "846", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Irdzharskaya", + "scheduled_service": "no" + }, + { + "id": "41772", + "ident": "UZ-0085", + "type": "closed", + "name": "Isat Airport", + "latitude_deg": "38.948502", + "longitude_deg": "66.5466", + "elevation_ft": "1742", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Isat", + "scheduled_service": "no" + }, + { + "id": "41773", + "ident": "UZ-0086", + "type": "closed", + "name": "Isbaskent Airport", + "latitude_deg": "41.009102", + "longitude_deg": "72.412102", + "elevation_ft": "1821", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-AN", + "municipality": "Kochkor-ata", + "scheduled_service": "no" + }, + { + "id": "41774", + "ident": "UZ-0087", + "type": "closed", + "name": "Ishbulak North Airport", + "latitude_deg": "39.102901", + "longitude_deg": "66.616096", + "elevation_ft": "1840", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Nushkent", + "scheduled_service": "no" + }, + { + "id": "41775", + "ident": "UZ-0088", + "type": "closed", + "name": "Kairma Airport", + "latitude_deg": "39.741823", + "longitude_deg": "66.574575", + "elevation_ft": "2004", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SA", + "municipality": "Mevali", + "scheduled_service": "no" + }, + { + "id": "41776", + "ident": "UZ-0089", + "type": "closed", + "name": "Karakoy Southeast Airport", + "latitude_deg": "40.771599", + "longitude_deg": "68.193298", + "elevation_ft": "860", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Karakoy", + "scheduled_service": "no" + }, + { + "id": "41777", + "ident": "UZ-0090", + "type": "small_airport", + "name": "Karadarya East Airport", + "latitude_deg": "40.014198303222656", + "longitude_deg": "66.29219818115234", + "elevation_ft": "1563", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SA", + "municipality": "Karadarya", + "scheduled_service": "no" + }, + { + "id": "41778", + "ident": "UZ-0091", + "type": "closed", + "name": "Karakoy Airport", + "latitude_deg": "40.9072", + "longitude_deg": "68.210999", + "elevation_ft": "859", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Karakoy", + "scheduled_service": "no" + }, + { + "id": "41779", + "ident": "UZ-0092", + "type": "closed", + "name": "Karakoy Southwest Airport", + "latitude_deg": "40.816101", + "longitude_deg": "68.1604", + "elevation_ft": "843", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Karakoy", + "scheduled_service": "no" + }, + { + "id": "41780", + "ident": "UZ-0093", + "type": "closed", + "name": "Qorako'l Airport", + "latitude_deg": "39.5131", + "longitude_deg": "63.8592", + "elevation_ft": "658", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-BU", + "municipality": "Qorako'l", + "scheduled_service": "no", + "keywords": "Karakul" + }, + { + "id": "41781", + "ident": "UZ-0094", + "type": "closed", + "name": "Karshi East Airport", + "latitude_deg": "38.867298", + "longitude_deg": "65.841499", + "elevation_ft": "1258", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Karshi", + "scheduled_service": "no" + }, + { + "id": "41782", + "ident": "UZ-0095", + "type": "small_airport", + "name": "Karyz Airport", + "latitude_deg": "39.01860046386719", + "longitude_deg": "66.5188980102539", + "elevation_ft": "1674", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Ayman", + "scheduled_service": "no" + }, + { + "id": "41783", + "ident": "UZ-0096", + "type": "small_airport", + "name": "Kasan Southwest Airport", + "latitude_deg": "39.02119827270508", + "longitude_deg": "65.53369903564453", + "elevation_ft": "1113", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Kasan", + "scheduled_service": "no" + }, + { + "id": "41784", + "ident": "UZ-0097", + "type": "closed", + "name": "Kattakurgan East Airport", + "latitude_deg": "39.909", + "longitude_deg": "66.305397", + "elevation_ft": "1730", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SA", + "municipality": "Kattakurgan", + "scheduled_service": "no" + }, + { + "id": "41785", + "ident": "UZ-0098", + "type": "closed", + "name": "Kattaming Airport", + "latitude_deg": "39.940601", + "longitude_deg": "66.094704", + "elevation_ft": "1454", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SA", + "municipality": "Kattaming", + "scheduled_service": "no" + }, + { + "id": "41786", + "ident": "UZ-0099", + "type": "closed", + "name": "Kazakly Baudark Airport", + "latitude_deg": "38.985699", + "longitude_deg": "65.823097", + "elevation_ft": "1283", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Kazakly Baudark", + "scheduled_service": "no" + }, + { + "id": "41787", + "ident": "UZ-0100", + "type": "closed", + "name": "Khatyrchi Northwest Airport", + "latitude_deg": "40.053001", + "longitude_deg": "65.932404", + "elevation_ft": "1372", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SA", + "municipality": "Khatyrchi", + "scheduled_service": "no" + }, + { + "id": "41788", + "ident": "UZ-0101", + "type": "small_airport", + "name": "Khavast Airport", + "latitude_deg": "40.199849", + "longitude_deg": "68.853511", + "elevation_ft": "1230", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SI", + "municipality": "Kahvast", + "scheduled_service": "no" + }, + { + "id": "41789", + "ident": "UZ-0102", + "type": "closed", + "name": "Kilab Northwest Airport", + "latitude_deg": "39.160702", + "longitude_deg": "66.854599", + "elevation_ft": "2135", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Kilab", + "scheduled_service": "no" + }, + { + "id": "41790", + "ident": "UZ-0103", + "type": "closed", + "name": "Kilab Southeast Airport", + "latitude_deg": "39.093096", + "longitude_deg": "66.916695", + "elevation_ft": "2227", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Kilab", + "scheduled_service": "no" + }, + { + "id": "41791", + "ident": "UZ-0104", + "type": "closed", + "name": "Kishiseit East Airport", + "latitude_deg": "40.5611", + "longitude_deg": "67.829597", + "elevation_ft": "840", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Kishiseit", + "scheduled_service": "no" + }, + { + "id": "41792", + "ident": "UZ-0105", + "type": "closed", + "name": "Kishiseit Northeast Airport", + "latitude_deg": "40.581902", + "longitude_deg": "67.793098", + "elevation_ft": "840", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Kishiseit", + "scheduled_service": "no" + }, + { + "id": "41793", + "ident": "UZ-0106", + "type": "closed", + "name": "Kodzhar Southwest Airport", + "latitude_deg": "38.806198", + "longitude_deg": "65.569702", + "elevation_ft": "1127", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Chodshar", + "scheduled_service": "no" + }, + { + "id": "41795", + "ident": "UZ-0107", + "type": "closed", + "name": "Kokand North Airport", + "latitude_deg": "40.659401", + "longitude_deg": "70.859398", + "elevation_ft": "1224", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-FA", + "municipality": "Kokand", + "scheduled_service": "no" + }, + { + "id": "41796", + "ident": "UZ-0108", + "type": "closed", + "name": "Kolodets Sari Bel West Airport", + "latitude_deg": "40.3088", + "longitude_deg": "67.8507", + "elevation_ft": "991", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Kolodets Sari", + "scheduled_service": "no" + }, + { + "id": "41797", + "ident": "UZ-0109", + "type": "closed", + "name": "Kukaral Sedmoy Airport", + "latitude_deg": "40.652401", + "longitude_deg": "69.197197", + "elevation_ft": "1039", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-TO", + "municipality": "Kukaral", + "scheduled_service": "no" + }, + { + "id": "41798", + "ident": "UZ-0110", + "type": "closed", + "name": "Quvvacha Airport", + "latitude_deg": "39.498299", + "longitude_deg": "63.711498", + "elevation_ft": "630", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-BU", + "municipality": "Quvvacha", + "scheduled_service": "no", + "keywords": "Kuvacha" + }, + { + "id": "41799", + "ident": "UZ-0111", + "type": "closed", + "name": "Kuvasay North Airport", + "latitude_deg": "40.379501", + "longitude_deg": "71.976097", + "elevation_ft": "2196", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-FA", + "municipality": "Ualik", + "scheduled_service": "no" + }, + { + "id": "41800", + "ident": "UZ-0112", + "type": "small_airport", + "name": "Malekskaya Airport", + "latitude_deg": "40.709064", + "longitude_deg": "68.581698", + "elevation_ft": "865", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SI", + "municipality": "Malekskaya", + "scheduled_service": "no" + }, + { + "id": "41801", + "ident": "UZ-0113", + "type": "closed", + "name": "Margelan Airport", + "latitude_deg": "40.441502", + "longitude_deg": "71.6745", + "elevation_ft": "1593", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-FA", + "municipality": "Margelan", + "scheduled_service": "no" + }, + { + "id": "41802", + "ident": "UZ-0114", + "type": "closed", + "name": "Matlha Airport", + "latitude_deg": "40.377899", + "longitude_deg": "69.183098", + "elevation_ft": "930", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-TO", + "municipality": "Parchayuz", + "scheduled_service": "no" + }, + { + "id": "41803", + "ident": "UZ-0115", + "type": "small_airport", + "name": "Mitan Airport", + "latitude_deg": "39.98030090332031", + "longitude_deg": "66.560302734375", + "elevation_ft": "1711", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SA", + "municipality": "Kara Darya", + "scheduled_service": "no" + }, + { + "id": "41804", + "ident": "UZ-0116", + "type": "small_airport", + "name": "Nadezhdinskoye Airport", + "latitude_deg": "40.62350082397461", + "longitude_deg": "68.93990325927734", + "elevation_ft": "886", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SI", + "municipality": "Obetovanni", + "scheduled_service": "no" + }, + { + "id": "41805", + "ident": "UZ-0117", + "type": "closed", + "name": "Namangan Southwest Airport", + "latitude_deg": "40.945801", + "longitude_deg": "71.515099", + "elevation_ft": "1544", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-NG", + "municipality": "Namangan", + "scheduled_service": "no" + }, + { + "id": "41806", + "ident": "UZ-0118", + "type": "closed", + "name": "Naukent Airport", + "latitude_deg": "40.2369", + "longitude_deg": "71.729698", + "elevation_ft": "2617", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-FA", + "municipality": "Naukent", + "scheduled_service": "no" + }, + { + "id": "41807", + "ident": "UZ-0119", + "type": "small_airport", + "name": "Pap East Airport", + "latitude_deg": "40.88519", + "longitude_deg": "71.181217", + "elevation_ft": "1410", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-NG", + "municipality": "Khalkabad", + "scheduled_service": "no" + }, + { + "id": "41808", + "ident": "UZ-0120", + "type": "closed", + "name": "Put'k Sotsialismu Airport", + "latitude_deg": "40.692299", + "longitude_deg": "68.3237", + "elevation_ft": "861", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Put'k Sotsialismu", + "scheduled_service": "no" + }, + { + "id": "41809", + "ident": "UZ-0121", + "type": "closed", + "name": "Shabskiy North Airport", + "latitude_deg": "40.249729", + "longitude_deg": "68.982325", + "elevation_ft": "1089", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SI", + "municipality": "Shabskiy", + "scheduled_service": "no" + }, + { + "id": "41810", + "ident": "UZ-0122", + "type": "closed", + "name": "Shakhrikhan South Airport", + "latitude_deg": "40.622501", + "longitude_deg": "72.025497", + "elevation_ft": "1481", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-AN", + "municipality": "Shakhrikhan", + "scheduled_service": "no" + }, + { + "id": "41811", + "ident": "UZ-0123", + "type": "closed", + "name": "Shakhrikhan West Airport", + "latitude_deg": "40.702801", + "longitude_deg": "71.901199", + "elevation_ft": "1398", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-AN", + "municipality": "Shakhrikhan", + "scheduled_service": "no" + }, + { + "id": "41813", + "ident": "UZ-0124", + "type": "small_airport", + "name": "Shahrisabz Southwest Airport", + "latitude_deg": "39.030067", + "longitude_deg": "66.775825", + "elevation_ft": "1940", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Shahrisabz", + "scheduled_service": "no" + }, + { + "id": "41814", + "ident": "UZ-0125", + "type": "closed", + "name": "Shamaldy Say Southeast Airport", + "latitude_deg": "41.144699", + "longitude_deg": "72.186897", + "elevation_ft": "1720", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-AN", + "municipality": "Shamaldy Say", + "scheduled_service": "no" + }, + { + "id": "41815", + "ident": "UZ-0126", + "type": "small_airport", + "name": "Shamenay Airport", + "latitude_deg": "42.63859939575195", + "longitude_deg": "58.917198181152344", + "elevation_ft": "218", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QR", + "municipality": "Shamenay", + "scheduled_service": "no" + }, + { + "id": "41816", + "ident": "UZ-0127", + "type": "closed", + "name": "Shurchi West Airport", + "latitude_deg": "37.9132", + "longitude_deg": "67.753502", + "elevation_ft": "1477", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SU", + "municipality": "Shurchi", + "scheduled_service": "no" + }, + { + "id": "41817", + "ident": "UZ-0128", + "type": "closed", + "name": "Siyazy/Pa Yan Airport", + "latitude_deg": "39.8242", + "longitude_deg": "64.595001", + "elevation_ft": "751", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-NW", + "municipality": "Char-Khana", + "scheduled_service": "no" + }, + { + "id": "41818", + "ident": "UZ-0129", + "type": "closed", + "name": "Srentenka Airport", + "latitude_deg": "40.302556", + "longitude_deg": "69.153363", + "elevation_ft": "930", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-TO", + "municipality": "Srentenka", + "scheduled_service": "no" + }, + { + "id": "41819", + "ident": "UZ-0130", + "type": "small_airport", + "name": "Surkhany Airport", + "latitude_deg": "37.73059844970703", + "longitude_deg": "67.5770034790039", + "elevation_ft": "1305", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SU", + "municipality": "Surkhany", + "scheduled_service": "no" + }, + { + "id": "41820", + "ident": "UZ-0131", + "type": "closed", + "name": "Syrdar Northwest Airport", + "latitude_deg": "40.9408", + "longitude_deg": "68.622101", + "elevation_ft": "839", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SI", + "municipality": "Syrdarya", + "scheduled_service": "no" + }, + { + "id": "41822", + "ident": "UZ-0132", + "type": "closed", + "name": "Tmeni Telmana Airport", + "latitude_deg": "40.7318", + "longitude_deg": "68.222", + "elevation_ft": "865", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Gagarin", + "scheduled_service": "no" + }, + { + "id": "41823", + "ident": "UZ-0133", + "type": "closed", + "name": "Ulmas Airport", + "latitude_deg": "38.886398", + "longitude_deg": "66.362", + "elevation_ft": "1560", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Karabag", + "scheduled_service": "no" + }, + { + "id": "41824", + "ident": "UZ-0134", + "type": "closed", + "name": "Uzunkuduk Airport", + "latitude_deg": "40.576336", + "longitude_deg": "67.139565", + "elevation_ft": "942", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Uzunkuduk", + "scheduled_service": "no" + }, + { + "id": "41825", + "ident": "UZ-0135", + "type": "closed", + "name": "Yakkatu Airport", + "latitude_deg": "40.4022", + "longitude_deg": "70.5276", + "elevation_ft": "1330", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-FA", + "municipality": "Yakkatu", + "scheduled_service": "no", + "keywords": "Yakkatut" + }, + { + "id": "41826", + "ident": "UZ-0136", + "type": "small_airport", + "name": "Yangi Aryn Airport", + "latitude_deg": "41.3560905456543", + "longitude_deg": "60.599308013916016", + "elevation_ft": "311", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-XO", + "municipality": "Yangi Aryn", + "scheduled_service": "no" + }, + { + "id": "41827", + "ident": "UZ-0137", + "type": "closed", + "name": "Yangi Kurgan Airport", + "latitude_deg": "40.5564", + "longitude_deg": "71.207001", + "elevation_ft": "1309", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-FA", + "municipality": "Karym Baba", + "scheduled_service": "no" + }, + { + "id": "41828", + "ident": "UZ-0138", + "type": "closed", + "name": "Yangi Yul Airport", + "latitude_deg": "41.135601", + "longitude_deg": "69.0569", + "elevation_ft": "1217", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-TO", + "municipality": "Yangi Yul", + "scheduled_service": "no" + }, + { + "id": "41829", + "ident": "UZ-0139", + "type": "closed", + "name": "Yangiabad East Airport", + "latitude_deg": "40.283298", + "longitude_deg": "68.396004", + "elevation_ft": "1004", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SI", + "municipality": "Yangiabad", + "scheduled_service": "no" + }, + { + "id": "41830", + "ident": "UZ-0140", + "type": "closed", + "name": "Yangiabad Northwest Airport", + "latitude_deg": "40.262501", + "longitude_deg": "68.309502", + "elevation_ft": "1008", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SI", + "municipality": "Yangiabad", + "scheduled_service": "no" + }, + { + "id": "41831", + "ident": "UZ-0141", + "type": "closed", + "name": "Yangikishiak Airport", + "latitude_deg": "40.42621", + "longitude_deg": "67.193032", + "elevation_ft": "1830", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Yangikishiak", + "scheduled_service": "no" + }, + { + "id": "41832", + "ident": "UZ-0142", + "type": "small_airport", + "name": "Yangikurgan / Akdaya Airport", + "latitude_deg": "39.92290115356445", + "longitude_deg": "66.654296875", + "elevation_ft": "1800", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SA", + "municipality": "Yangikurgan", + "scheduled_service": "no" + }, + { + "id": "41833", + "ident": "UZ-0143", + "type": "small_airport", + "name": "Yangiturmysh Airport", + "latitude_deg": "40.71609878540039", + "longitude_deg": "69.08039855957031", + "elevation_ft": "980", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-TO", + "municipality": "Yangiturmish", + "scheduled_service": "no" + }, + { + "id": "41834", + "ident": "UZ-0144", + "type": "closed", + "name": "Yerzhar Southwest Airport", + "latitude_deg": "40.623699", + "longitude_deg": "68.090599", + "elevation_ft": "867", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Yerzhar", + "scheduled_service": "no" + }, + { + "id": "41835", + "ident": "UZ-0145", + "type": "closed", + "name": "Zolotaya Orda Airport", + "latitude_deg": "40.577999", + "longitude_deg": "68.699402", + "elevation_ft": "865", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SI", + "municipality": "Zolotaya", + "scheduled_service": "no" + }, + { + "id": "44863", + "ident": "UZ-0146", + "type": "closed", + "name": "Tashkent Sergeli Airport", + "latitude_deg": "41.199796", + "longitude_deg": "69.239141", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-TO", + "municipality": "Toshkent", + "scheduled_service": "no", + "keywords": "Toshkent Sergeli Airport" + }, + { + "id": "319901", + "ident": "UZ-0147", + "type": "small_airport", + "name": "Tomar Ozek Airport", + "latitude_deg": "43.615", + "longitude_deg": "59.267", + "elevation_ft": "185", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QR", + "municipality": "Potlatau", + "scheduled_service": "no" + }, + { + "id": "329015", + "ident": "UZ-0148", + "type": "closed", + "name": "Komsomolsk-na-Ustyurte Airport", + "latitude_deg": "44.024526", + "longitude_deg": "58.2515106", + "elevation_ft": "524", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QR", + "municipality": "Komsomolsk-na-Ustyurte", + "scheduled_service": "no" + }, + { + "id": "337752", + "ident": "UZ-0149", + "type": "closed", + "name": "Oktyabrskoye Airstrip", + "latitude_deg": "40.187119", + "longitude_deg": "67.844567", + "elevation_ft": "1160", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-JI", + "municipality": "Jizzax", + "scheduled_service": "no", + "keywords": "Dzhizak, Jizzakh, Жиззах, جىززﻩخ" + }, + { + "id": "351309", + "ident": "UZ-0150", + "type": "heliport", + "name": "Tahtakupir Heliport", + "latitude_deg": "43.03831", + "longitude_deg": "60.25968", + "elevation_ft": "190", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QR", + "municipality": "Tahtakupir", + "scheduled_service": "no" + }, + { + "id": "351310", + "ident": "UZ-0151", + "type": "heliport", + "name": "Maidanak Training Base Heliport", + "latitude_deg": "38.68432", + "longitude_deg": "66.94912", + "elevation_ft": "8904", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Chit", + "scheduled_service": "no" + }, + { + "id": "355317", + "ident": "UZ-0152", + "type": "closed", + "name": "Eski-Jomboy Airport", + "latitude_deg": "39.66816", + "longitude_deg": "67.159314", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-SA", + "municipality": "Dzhambay", + "scheduled_service": "no" + }, + { + "id": "429865", + "ident": "UZ-0153", + "type": "small_airport", + "name": "Suh airport", + "latitude_deg": "39.987179", + "longitude_deg": "71.124615", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-FA", + "scheduled_service": "no" + }, + { + "id": "26427", + "ident": "UZ-UT73", + "type": "small_airport", + "name": "Maymanak Airport", + "latitude_deg": "39.13779830932617", + "longitude_deg": "65.16529846191406", + "elevation_ft": "1047", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QA", + "municipality": "Maynanak", + "scheduled_service": "no", + "gps_code": "UT73", + "local_code": "UT73" + }, + { + "id": "26429", + "ident": "UZ-UT77", + "type": "small_airport", + "name": "Kungirot Airport", + "latitude_deg": "43.082662", + "longitude_deg": "58.885077", + "elevation_ft": "180", + "continent": "AS", + "iso_country": "UZ", + "iso_region": "UZ-QR", + "municipality": "Kungirot", + "scheduled_service": "no", + "gps_code": "UT77", + "local_code": "UT77", + "keywords": "Kungrad" + }, + { + "id": "313332", + "ident": "UZM", + "type": "small_airport", + "name": "Hope Bay Aerodrome", + "latitude_deg": "68.156", + "longitude_deg": "-106.618", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-NU", + "municipality": "Hope Bay", + "scheduled_service": "no", + "iata_code": "UZM", + "local_code": "CHB3", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hope_Bay_Aerodrome" + }, + { + "id": "313684", + "ident": "UZR", + "type": "small_airport", + "name": "Urzhar Airport", + "latitude_deg": "47.09115", + "longitude_deg": "81.66521", + "continent": "AS", + "iso_country": "KZ", + "iso_region": "KZ-ABA", + "municipality": "Urzhar", + "scheduled_service": "yes", + "gps_code": "UASU", + "iata_code": "UZR", + "keywords": "Urdzhar, Үржар, Урджар" + }, + { + "id": "44551", + "ident": "VA-0001", + "type": "heliport", + "name": "Vatican City Heliport", + "latitude_deg": "41.9019775391", + "longitude_deg": "12.4461307526", + "elevation_ft": "221", + "continent": "EU", + "iso_country": "VA", + "iso_region": "VA-U-A", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vatican_City_Heliport" + }, + { + "id": "25333", + "ident": "VA00", + "type": "small_airport", + "name": "Brook Hill Farm Airport", + "latitude_deg": "37.928199768066406", + "longitude_deg": "-79.1781005859375", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Steeles Tavern", + "scheduled_service": "no", + "gps_code": "VA00", + "local_code": "VA00" + }, + { + "id": "25334", + "ident": "VA01", + "type": "heliport", + "name": "Marty 1 Heliport", + "latitude_deg": "36.940101623535156", + "longitude_deg": "-82.48149871826172", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Coeburn", + "scheduled_service": "no", + "gps_code": "VA01", + "local_code": "VA01" + }, + { + "id": "25335", + "ident": "VA02", + "type": "small_airport", + "name": "Pace Airport", + "latitude_deg": "36.58521", + "longitude_deg": "-79.8772", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Ridgeway", + "scheduled_service": "no", + "gps_code": "VA02", + "local_code": "VA02" + }, + { + "id": "25336", + "ident": "VA03", + "type": "heliport", + "name": "Hospital Heliport", + "latitude_deg": "37.35240173339844", + "longitude_deg": "-79.5167007446289", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Bedford", + "scheduled_service": "no", + "gps_code": "VA03", + "local_code": "VA03" + }, + { + "id": "25337", + "ident": "VA04", + "type": "small_airport", + "name": "Barrows Airport", + "latitude_deg": "37.49209976196289", + "longitude_deg": "-79.92870330810547", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fincastle", + "scheduled_service": "no", + "gps_code": "VA04", + "local_code": "VA04" + }, + { + "id": "25338", + "ident": "VA05", + "type": "heliport", + "name": "Clinchfield Heliport", + "latitude_deg": "36.90570068359375", + "longitude_deg": "-82.0634994506836", + "elevation_ft": "2050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Lebanon", + "scheduled_service": "no", + "gps_code": "VA05", + "local_code": "VA05" + }, + { + "id": "25339", + "ident": "VA06", + "type": "small_airport", + "name": "Deer Run Airport", + "latitude_deg": "36.994300842285156", + "longitude_deg": "-80.45449829101562", + "elevation_ft": "2400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Floyd", + "scheduled_service": "no", + "gps_code": "VA06", + "local_code": "VA06" + }, + { + "id": "25340", + "ident": "VA07", + "type": "small_airport", + "name": "Burkes Garden Airport", + "latitude_deg": "37.096025", + "longitude_deg": "-81.369359", + "elevation_ft": "3060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Tazewell", + "scheduled_service": "no", + "gps_code": "VA07", + "local_code": "VA07", + "keywords": "MBC Ranch" + }, + { + "id": "25341", + "ident": "VA08", + "type": "small_airport", + "name": "Longbranch Airport", + "latitude_deg": "37.717098236083984", + "longitude_deg": "-76.35880279541016", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Kilmarnock", + "scheduled_service": "no", + "gps_code": "VA08", + "local_code": "VA08" + }, + { + "id": "25342", + "ident": "VA09", + "type": "heliport", + "name": "Wise A.R.Hospital Heliport", + "latitude_deg": "36.9718017578125", + "longitude_deg": "-82.58489990234375", + "elevation_ft": "2600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Wise", + "scheduled_service": "no", + "gps_code": "VA09", + "local_code": "VA09" + }, + { + "id": "25343", + "ident": "VA10", + "type": "small_airport", + "name": "Catawba Valley Airport", + "latitude_deg": "37.28010177612305", + "longitude_deg": "-80.30139923095703", + "elevation_ft": "1720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Blacksburg", + "scheduled_service": "no", + "gps_code": "VA10", + "local_code": "VA10" + }, + { + "id": "25344", + "ident": "VA11", + "type": "small_airport", + "name": "White Oak Stand Airport", + "latitude_deg": "36.807899475097656", + "longitude_deg": "-81.70120239257812", + "elevation_ft": "2100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Chilhowie", + "scheduled_service": "no", + "gps_code": "VA11", + "local_code": "VA11" + }, + { + "id": "25345", + "ident": "VA12", + "type": "small_airport", + "name": "Gravely Airport", + "latitude_deg": "36.64680099487305", + "longitude_deg": "-79.7969970703125", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Martinsville", + "scheduled_service": "no", + "gps_code": "VA12", + "local_code": "VA12" + }, + { + "id": "25346", + "ident": "VA13", + "type": "small_airport", + "name": "Breezy Knoll Airport", + "latitude_deg": "37.26539993286133", + "longitude_deg": "-79.04280090332031", + "elevation_ft": "785", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Rustburg", + "scheduled_service": "no", + "gps_code": "VA13", + "local_code": "VA13" + }, + { + "id": "25347", + "ident": "VA14", + "type": "small_airport", + "name": "Southampton Correctional Center Airport", + "latitude_deg": "36.740699768066406", + "longitude_deg": "-77.26270294189453", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Capron", + "scheduled_service": "no", + "gps_code": "VA14", + "local_code": "VA14" + }, + { + "id": "25348", + "ident": "VA15", + "type": "closed", + "name": "Stokes Airport", + "latitude_deg": "37.65622", + "longitude_deg": "-78.045566", + "elevation_ft": "295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Cartersville", + "scheduled_service": "no", + "keywords": "VA15" + }, + { + "id": "25349", + "ident": "VA16", + "type": "small_airport", + "name": "Centreville Airport", + "latitude_deg": "38.87929916381836", + "longitude_deg": "-77.4843978881836", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Centreville", + "scheduled_service": "no", + "gps_code": "VA16", + "local_code": "VA16" + }, + { + "id": "25350", + "ident": "VA17", + "type": "small_airport", + "name": "Mulberry Run Airport", + "latitude_deg": "39.0359", + "longitude_deg": "-78.392197", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Strasburg", + "scheduled_service": "no", + "gps_code": "VA17", + "local_code": "VA17" + }, + { + "id": "25351", + "ident": "VA18", + "type": "small_airport", + "name": "Bundoran Airport", + "latitude_deg": "37.96849822998047", + "longitude_deg": "-78.68219757080078", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Charlottesville", + "scheduled_service": "no", + "gps_code": "VA18", + "local_code": "VA18" + }, + { + "id": "25352", + "ident": "VA19", + "type": "small_airport", + "name": "Snow Hill Airport", + "latitude_deg": "37.95399856567383", + "longitude_deg": "-78.36920166015625", + "elevation_ft": "268", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Charlottesville", + "scheduled_service": "no", + "gps_code": "VA19", + "local_code": "VA19" + }, + { + "id": "3283", + "ident": "VA1B", + "type": "small_airport", + "name": "Chanda Airport", + "latitude_deg": "19.994699478149414", + "longitude_deg": "79.22250366210938", + "elevation_ft": "625", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "scheduled_service": "no", + "gps_code": "VA1B", + "local_code": "VA1B" + }, + { + "id": "3284", + "ident": "VA1C", + "type": "small_airport", + "name": "Birlagram Airport", + "latitude_deg": "23.4468994140625", + "longitude_deg": "75.42030334472656", + "elevation_ft": "1541", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "scheduled_service": "no", + "gps_code": "VA1C", + "local_code": "VA1C" + }, + { + "id": "3285", + "ident": "VA1D", + "type": "small_airport", + "name": "Muirpur Airport", + "latitude_deg": "24.125200271606445", + "longitude_deg": "83.04060363769531", + "elevation_ft": "1122", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "scheduled_service": "no", + "gps_code": "VA1D", + "local_code": "VA1D" + }, + { + "id": "3286", + "ident": "VA1E", + "type": "small_airport", + "name": "Bhilai Airport", + "latitude_deg": "21.294200897216797", + "longitude_deg": "81.37950134277344", + "elevation_ft": "1014", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-CT", + "scheduled_service": "no", + "gps_code": "VA1E", + "local_code": "VA1E" + }, + { + "id": "3287", + "ident": "VA1F", + "type": "small_airport", + "name": "Sidhi Airport", + "latitude_deg": "24.402299880981445", + "longitude_deg": "81.8147964477539", + "elevation_ft": "1093", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "scheduled_service": "no", + "gps_code": "VA1F", + "local_code": "VA1F" + }, + { + "id": "3288", + "ident": "VA1G", + "type": "medium_airport", + "name": "Rewa Airport, Chorhata, REWA", + "latitude_deg": "24.503401", + "longitude_deg": "81.220299", + "elevation_ft": "1000", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "municipality": "Rewa", + "scheduled_service": "no", + "gps_code": "VA1G", + "iata_code": "REW", + "local_code": "VA1G", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rewa_Airport" + }, + { + "id": "3289", + "ident": "VA1H", + "type": "small_airport", + "name": "Ondwa Airport", + "latitude_deg": "25.14150047302246", + "longitude_deg": "74.61150360107422", + "elevation_ft": "1450", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "scheduled_service": "no", + "gps_code": "VA1H", + "local_code": "VA1H" + }, + { + "id": "3290", + "ident": "VA1J", + "type": "small_airport", + "name": "Dhana Airport", + "latitude_deg": "23.753599166870117", + "longitude_deg": "78.85579681396484", + "elevation_ft": "1706", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "scheduled_service": "no", + "gps_code": "VA1J", + "local_code": "VA1J" + }, + { + "id": "3291", + "ident": "VA1K", + "type": "small_airport", + "name": "Naliya Air Force Station", + "latitude_deg": "23.2223", + "longitude_deg": "68.891296", + "elevation_ft": "135", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Naliya", + "scheduled_service": "no", + "gps_code": "VANY", + "keywords": "Raedhanpur Airport, VA1K" + }, + { + "id": "3292", + "ident": "VA1L", + "type": "small_airport", + "name": "Amla Airport", + "latitude_deg": "21.926399", + "longitude_deg": "78.113602", + "elevation_ft": "2435", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "municipality": "Amla", + "scheduled_service": "no", + "gps_code": "VA1L", + "local_code": "VA1L" + }, + { + "id": "3293", + "ident": "VA1M", + "type": "small_airport", + "name": "Karad Airport", + "latitude_deg": "17.285900115966797", + "longitude_deg": "74.15809631347656", + "elevation_ft": "1890", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "scheduled_service": "no", + "gps_code": "VA1M", + "local_code": "VA1M" + }, + { + "id": "3294", + "ident": "VA1N", + "type": "small_airport", + "name": "Nimach Airport", + "latitude_deg": "24.43079948425293", + "longitude_deg": "74.8677978515625", + "elevation_ft": "1617", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "scheduled_service": "no", + "gps_code": "VA1N", + "local_code": "VA1N" + }, + { + "id": "3295", + "ident": "VA1O", + "type": "small_airport", + "name": "Burhar Airport", + "latitude_deg": "23.235200881958008", + "longitude_deg": "81.50370025634766", + "elevation_ft": "1500", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "scheduled_service": "no", + "gps_code": "VA1O", + "local_code": "VA1O" + }, + { + "id": "3296", + "ident": "VA1P", + "type": "small_airport", + "name": "Diu Airport", + "latitude_deg": "20.7131", + "longitude_deg": "70.921097", + "elevation_ft": "31", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-DH", + "municipality": "Diu", + "scheduled_service": "yes", + "gps_code": "VA1P", + "iata_code": "DIU", + "local_code": "VA1P", + "home_link": "http://aai.aero/allAirports/diu_airpo_gi.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Diu_Airport" + }, + { + "id": "25353", + "ident": "VA20", + "type": "closed", + "name": "SRMC Heliport", + "latitude_deg": "37.216801", + "longitude_deg": "-77.397797", + "elevation_ft": "126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Petersburg", + "scheduled_service": "no", + "keywords": "VA20" + }, + { + "id": "25354", + "ident": "VA21", + "type": "heliport", + "name": "Morven Farms Heliport", + "latitude_deg": "37.940101623535156", + "longitude_deg": "-78.50859832763672", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Charlottesville", + "scheduled_service": "no", + "gps_code": "VA21", + "local_code": "VA21" + }, + { + "id": "25355", + "ident": "VA22", + "type": "closed", + "name": "Big River Ranch Airport", + "latitude_deg": "36.675097", + "longitude_deg": "-78.695", + "elevation_ft": "375", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Clarksville", + "scheduled_service": "no", + "keywords": "VA22" + }, + { + "id": "25356", + "ident": "VA23", + "type": "small_airport", + "name": "Sanford Field", + "latitude_deg": "38.119714", + "longitude_deg": "-76.613674", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Hague", + "scheduled_service": "no", + "gps_code": "VA23", + "local_code": "VA23" + }, + { + "id": "25357", + "ident": "VA24", + "type": "small_airport", + "name": "Skovhus Airport", + "latitude_deg": "37.41429901123047", + "longitude_deg": "-78.96420288085938", + "elevation_ft": "712", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "VA24", + "local_code": "VA24" + }, + { + "id": "25358", + "ident": "VA25", + "type": "small_airport", + "name": "Twin Towers Airport", + "latitude_deg": "36.76430130004883", + "longitude_deg": "-78.3604965209961", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Chase City", + "scheduled_service": "no", + "gps_code": "VA25", + "local_code": "VA25" + }, + { + "id": "25359", + "ident": "VA26", + "type": "closed", + "name": "Trent Farm Airstrip", + "latitude_deg": "36.654046", + "longitude_deg": "-80.114687", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Critz", + "scheduled_service": "no", + "local_code": "VA26", + "keywords": "VA26" + }, + { + "id": "25360", + "ident": "VA27", + "type": "small_airport", + "name": "Moorefield's Airstrip", + "latitude_deg": "36.559898376464844", + "longitude_deg": "-80.13780212402344", + "elevation_ft": "1110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Critz", + "scheduled_service": "no", + "gps_code": "VA27", + "local_code": "VA27" + }, + { + "id": "25361", + "ident": "VA28", + "type": "small_airport", + "name": "Layne Farm Airstrip", + "latitude_deg": "37.121299743652344", + "longitude_deg": "-78.64360046386719", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Cullen", + "scheduled_service": "no", + "gps_code": "VA28", + "local_code": "VA28" + }, + { + "id": "25362", + "ident": "VA29", + "type": "heliport", + "name": "Novant Health UVA Culpeper Medical Center Heliport", + "latitude_deg": "38.454606", + "longitude_deg": "-78.01435", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Culpeper", + "scheduled_service": "no", + "gps_code": "VA29", + "local_code": "VA29", + "keywords": "Culpeper Memorial Hospital" + }, + { + "id": "3297", + "ident": "VA2A", + "type": "small_airport", + "name": "Phalodi Airport", + "latitude_deg": "27.112899780273438", + "longitude_deg": "72.38899993896484", + "elevation_ft": "781", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "scheduled_service": "no", + "gps_code": "VA2A", + "local_code": "VA2A" + }, + { + "id": "3298", + "ident": "VA2B", + "type": "small_airport", + "name": "Dr. Bhimrao Ambedkar Airstrip", + "latitude_deg": "28.904933", + "longitude_deg": "77.677524", + "elevation_ft": "732", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Meerut", + "scheduled_service": "no", + "gps_code": "VA2B", + "local_code": "VA2B" + }, + { + "id": "3299", + "ident": "VA2C", + "type": "medium_airport", + "name": "Birsi Airport", + "latitude_deg": "21.526817", + "longitude_deg": "80.290347", + "elevation_ft": "987", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Gondia", + "scheduled_service": "yes", + "gps_code": "VAGD", + "iata_code": "GDB", + "local_code": "VA2C", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gondia_Airport", + "keywords": "Birsi" + }, + { + "id": "3300", + "ident": "VA2D", + "type": "small_airport", + "name": "Ratlam Airport", + "latitude_deg": "23.381399154663086", + "longitude_deg": "75.02559661865234", + "elevation_ft": "1702", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "scheduled_service": "no", + "gps_code": "VA2D", + "local_code": "VA2D" + }, + { + "id": "25363", + "ident": "VA30", + "type": "small_airport", + "name": "Berryvale Airport", + "latitude_deg": "38.526798248291016", + "longitude_deg": "-77.9563980102539", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Culpeper", + "scheduled_service": "no", + "gps_code": "VA30", + "local_code": "VA30" + }, + { + "id": "25364", + "ident": "VA31", + "type": "small_airport", + "name": "Apple Grove Airport", + "latitude_deg": "37.76259994506836", + "longitude_deg": "-76.34629821777344", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Kilmarnock", + "scheduled_service": "no", + "gps_code": "VA31", + "local_code": "VA31" + }, + { + "id": "25365", + "ident": "VA32", + "type": "small_airport", + "name": "Longs Airport", + "latitude_deg": "38.804298400878906", + "longitude_deg": "-78.5719985961914", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Edinburg", + "scheduled_service": "no", + "gps_code": "VA32", + "local_code": "VA32" + }, + { + "id": "25366", + "ident": "VA33", + "type": "closed", + "name": "Beaver Dam Airpark", + "latitude_deg": "37.0443", + "longitude_deg": "-76.768204", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Surry", + "scheduled_service": "no", + "keywords": "VA33" + }, + { + "id": "25367", + "ident": "VA34", + "type": "small_airport", + "name": "Big Buffalo Airstrip", + "latitude_deg": "37.288219", + "longitude_deg": "-78.453404", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Farmville", + "scheduled_service": "no", + "gps_code": "VA34", + "local_code": "VA34" + }, + { + "id": "25368", + "ident": "VA35", + "type": "heliport", + "name": "Fort Lee Nr 1 /Hqs/ Heliport", + "latitude_deg": "37.241798400899995", + "longitude_deg": "-77.3430023193", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fort Lee", + "scheduled_service": "no", + "gps_code": "VA35", + "local_code": "VA35" + }, + { + "id": "25369", + "ident": "VA36", + "type": "closed", + "name": "F. U. M. A. Airport", + "latitude_deg": "37.744598", + "longitude_deg": "-78.270302", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fork Union", + "scheduled_service": "no", + "keywords": "VA36" + }, + { + "id": "25370", + "ident": "VA37", + "type": "heliport", + "name": "Heth Army Heliport", + "latitude_deg": "38.15010070800781", + "longitude_deg": "-77.36640167236328", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fort A. P. Hill", + "scheduled_service": "no", + "gps_code": "VA37", + "local_code": "VA37" + }, + { + "id": "25372", + "ident": "VA39", + "type": "heliport", + "name": "Fort Lee AHP 3(Qrtmst Cen) Heliport", + "latitude_deg": "37.25019836", + "longitude_deg": "-77.33300018", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fort Lee", + "scheduled_service": "no", + "gps_code": "VA39", + "local_code": "VA39" + }, + { + "id": "45880", + "ident": "VA40", + "type": "heliport", + "name": "Virginia International Raceway Heliport", + "latitude_deg": "36.565541", + "longitude_deg": "-79.206797", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Danville", + "scheduled_service": "no", + "gps_code": "VA40", + "local_code": "VA40", + "keywords": "O'Gara Tech Training Facility" + }, + { + "id": "25373", + "ident": "VA41", + "type": "small_airport", + "name": "High Hopes Airport", + "latitude_deg": "37.934600830078125", + "longitude_deg": "-75.60990142822266", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Withams", + "scheduled_service": "no", + "gps_code": "VA41", + "local_code": "VA41" + }, + { + "id": "25374", + "ident": "VA42", + "type": "small_airport", + "name": "Dogwood Airpark", + "latitude_deg": "38.358972", + "longitude_deg": "-77.452744", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fredericksburg", + "scheduled_service": "no", + "gps_code": "VA42", + "local_code": "VA42" + }, + { + "id": "25375", + "ident": "VA43", + "type": "closed", + "name": "Balcony Downs Airstrip", + "latitude_deg": "37.646658", + "longitude_deg": "-79.42517", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Buena Vista", + "scheduled_service": "no", + "keywords": "VA43, Glascow" + }, + { + "id": "25376", + "ident": "VA44", + "type": "small_airport", + "name": "Rose Retreat Farm Airport", + "latitude_deg": "37.716800689697266", + "longitude_deg": "-77.88390350341797", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Goochland", + "scheduled_service": "no", + "gps_code": "VA44", + "local_code": "VA44" + }, + { + "id": "25377", + "ident": "VA45", + "type": "small_airport", + "name": "Lous Airport", + "latitude_deg": "38.127899169921875", + "longitude_deg": "-78.1635971069336", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Gordonsville", + "scheduled_service": "no", + "gps_code": "VA45", + "local_code": "VA45" + }, + { + "id": "25378", + "ident": "VA46", + "type": "small_airport", + "name": "Timber Ridge Airpark", + "latitude_deg": "39.296199798583984", + "longitude_deg": "-78.36219787597656", + "elevation_ft": "1024", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Gore", + "scheduled_service": "no", + "gps_code": "VA46", + "local_code": "VA46" + }, + { + "id": "25380", + "ident": "VA48", + "type": "seaplane_base", + "name": "Lockerman Seaplane Base", + "latitude_deg": "37.03820037841797", + "longitude_deg": "-79.59609985351562", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Gretna", + "scheduled_service": "no", + "gps_code": "VA48", + "local_code": "VA48" + }, + { + "id": "25381", + "ident": "VA49", + "type": "closed", + "name": "Robertson Airport", + "latitude_deg": "37.705399", + "longitude_deg": "-77.372498", + "elevation_ft": "193", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Hanover", + "scheduled_service": "no", + "keywords": "VA49" + }, + { + "id": "25382", + "ident": "VA50", + "type": "small_airport", + "name": "Woods Farm Airstrip", + "latitude_deg": "37.7150993347168", + "longitude_deg": "-77.30249786376953", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Hanover", + "scheduled_service": "no", + "gps_code": "VA50", + "local_code": "VA50" + }, + { + "id": "25384", + "ident": "VA52", + "type": "small_airport", + "name": "Frank Field", + "latitude_deg": "38.4851", + "longitude_deg": "-78.945297", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Harrisonburg", + "scheduled_service": "no", + "gps_code": "VA52", + "local_code": "VA52", + "keywords": "Lester Frank" + }, + { + "id": "25386", + "ident": "VA54", + "type": "heliport", + "name": "Crippen's Heliport", + "latitude_deg": "38.976200103759766", + "longitude_deg": "-77.32669830322266", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Reston", + "scheduled_service": "no", + "gps_code": "VA54", + "local_code": "VA54" + }, + { + "id": "25387", + "ident": "VA55", + "type": "heliport", + "name": "Summit Heliport", + "latitude_deg": "37.364898681640625", + "longitude_deg": "-79.90059661865234", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Roanoke", + "scheduled_service": "no", + "gps_code": "VA55", + "local_code": "VA55" + }, + { + "id": "25388", + "ident": "VA56", + "type": "small_airport", + "name": "Wells Airport", + "latitude_deg": "37.003501892089844", + "longitude_deg": "-76.82749938964844", + "elevation_ft": "88", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Ivor", + "scheduled_service": "no", + "gps_code": "VA56", + "local_code": "VA56" + }, + { + "id": "25389", + "ident": "VA57", + "type": "small_airport", + "name": "Powhatan Airport", + "latitude_deg": "38.24850082397461", + "longitude_deg": "-77.21910095214844", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "King George", + "scheduled_service": "no", + "gps_code": "VA57", + "local_code": "VA57" + }, + { + "id": "25390", + "ident": "VA58", + "type": "small_airport", + "name": "River Bend Airport", + "latitude_deg": "38.90610122680664", + "longitude_deg": "-78.44439697265625", + "elevation_ft": "606", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Maurertown", + "scheduled_service": "no", + "gps_code": "VA58", + "local_code": "VA58" + }, + { + "id": "25391", + "ident": "VA59", + "type": "closed", + "name": "Weatherly & Son Airport", + "latitude_deg": "36.6357", + "longitude_deg": "-76.151603", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Chesapeake", + "scheduled_service": "no", + "keywords": "VA59" + }, + { + "id": "25392", + "ident": "VA60", + "type": "balloonport", + "name": "Flying Horse Farm Balloonport", + "latitude_deg": "39.051498", + "longitude_deg": "-77.777496", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Unison", + "scheduled_service": "no", + "gps_code": "VA60", + "local_code": "VA60" + }, + { + "id": "25393", + "ident": "VA61", + "type": "small_airport", + "name": "Lovettsville Airfield", + "latitude_deg": "39.26532", + "longitude_deg": "-77.653598", + "elevation_ft": "529", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Lovettsville", + "scheduled_service": "no", + "gps_code": "VA61", + "local_code": "VA61", + "keywords": "Scott Airpark" + }, + { + "id": "25394", + "ident": "VA62", + "type": "small_airport", + "name": "The Grass Patch Airport", + "latitude_deg": "39.257856", + "longitude_deg": "-77.65407", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Lovettsville", + "scheduled_service": "no", + "gps_code": "VA62", + "local_code": "VA62" + }, + { + "id": "25395", + "ident": "VA63", + "type": "closed", + "name": "Twin River Airport", + "latitude_deg": "37.679434", + "longitude_deg": "-79.4202", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Glasgow", + "scheduled_service": "no", + "keywords": "VA63" + }, + { + "id": "25396", + "ident": "VA64", + "type": "closed", + "name": "Hill Top Airport", + "latitude_deg": "37.41563", + "longitude_deg": "-77.954206", + "elevation_ft": "254", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Amelia Court House", + "scheduled_service": "no", + "keywords": "VA64" + }, + { + "id": "25397", + "ident": "VA65", + "type": "closed", + "name": "Ivy Hill Airport", + "latitude_deg": "37.3946", + "longitude_deg": "-79.324799", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Lynchburg", + "scheduled_service": "no", + "keywords": "VA65" + }, + { + "id": "25398", + "ident": "VA66", + "type": "small_airport", + "name": "Breeden Airport", + "latitude_deg": "38.607601165771484", + "longitude_deg": "-77.56939697265625", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Catlett", + "scheduled_service": "no", + "gps_code": "VA66", + "local_code": "VA66" + }, + { + "id": "25399", + "ident": "VA67", + "type": "closed", + "name": "Homeland Airport", + "latitude_deg": "38.570099", + "longitude_deg": "-77.934998", + "elevation_ft": "404", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Culpeper", + "scheduled_service": "no", + "keywords": "VA67" + }, + { + "id": "25400", + "ident": "VA68", + "type": "small_airport", + "name": "Lakeview Aerodrome", + "latitude_deg": "37.116908", + "longitude_deg": "-79.603844", + "elevation_ft": "1020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Moneta", + "scheduled_service": "no", + "gps_code": "VA68", + "local_code": "VA68" + }, + { + "id": "25401", + "ident": "VA69", + "type": "heliport", + "name": "Armada/Hoffler Business Center Heliport", + "latitude_deg": "36.78879928588867", + "longitude_deg": "-76.22630310058594", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Chesapeake", + "scheduled_service": "no", + "gps_code": "VA69", + "local_code": "VA69" + }, + { + "id": "25402", + "ident": "VA70", + "type": "heliport", + "name": "Riverside Walter Reed Hospital Heliport", + "latitude_deg": "37.42179870605469", + "longitude_deg": "-76.54299926757812", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Gloucester", + "scheduled_service": "no", + "gps_code": "VA70", + "local_code": "VA70" + }, + { + "id": "25403", + "ident": "VA71", + "type": "small_airport", + "name": "Aden Field", + "latitude_deg": "38.64849853515625", + "longitude_deg": "-77.53279876708984", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Manassas", + "scheduled_service": "no", + "gps_code": "VA71", + "local_code": "VA71" + }, + { + "id": "25404", + "ident": "VA72", + "type": "small_airport", + "name": "Covington Airport", + "latitude_deg": "36.600101470947266", + "longitude_deg": "-80.0386962890625", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Martinsville", + "scheduled_service": "no", + "gps_code": "VA72", + "local_code": "VA72" + }, + { + "id": "25405", + "ident": "VA73", + "type": "small_airport", + "name": "Mazza Airport", + "latitude_deg": "37.244598388671875", + "longitude_deg": "-77.49420166015625", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Matoaca", + "scheduled_service": "no", + "gps_code": "VA73", + "local_code": "VA73" + }, + { + "id": "25407", + "ident": "VA75", + "type": "closed", + "name": "Smith Field", + "latitude_deg": "38.30415", + "longitude_deg": "-79.507686", + "elevation_ft": "2020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Mc Dowell", + "scheduled_service": "no", + "keywords": "VA75" + }, + { + "id": "25408", + "ident": "VA76", + "type": "closed", + "name": "Baskerville Airport", + "latitude_deg": "36.987598", + "longitude_deg": "-77.771698", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Mc Kenney", + "scheduled_service": "no", + "keywords": "VA76" + }, + { + "id": "25409", + "ident": "VA77", + "type": "closed", + "name": "Hanover Air Park", + "latitude_deg": "37.694", + "longitude_deg": "-77.3769", + "elevation_ft": "196", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Hanover", + "scheduled_service": "no", + "keywords": "VA77" + }, + { + "id": "25410", + "ident": "VA78", + "type": "heliport", + "name": "White Oak Farm Heliport", + "latitude_deg": "37.071552276599995", + "longitude_deg": "-76.8744659424", + "elevation_ft": "91", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Surry", + "scheduled_service": "no", + "gps_code": "VA78", + "local_code": "VA78" + }, + { + "id": "25411", + "ident": "VA79", + "type": "small_airport", + "name": "Hickory Tree Farms Airport", + "latitude_deg": "38.9529", + "longitude_deg": "-77.746902", + "elevation_ft": "544", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "The Plains", + "scheduled_service": "no", + "gps_code": "VA79", + "local_code": "VA79" + }, + { + "id": "25412", + "ident": "VA80", + "type": "closed", + "name": "Woodle Airport", + "latitude_deg": "37.478802", + "longitude_deg": "-77.701897", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Midlothian", + "scheduled_service": "no", + "keywords": "VA80" + }, + { + "id": "25413", + "ident": "VA81", + "type": "small_airport", + "name": "Cub Field", + "latitude_deg": "37.94540023803711", + "longitude_deg": "-77.89939880371094", + "elevation_ft": "396", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Mineral", + "scheduled_service": "no", + "gps_code": "VA81", + "local_code": "VA81" + }, + { + "id": "25414", + "ident": "VA82", + "type": "heliport", + "name": "Inova Mount Vernon Hospital Heliport", + "latitude_deg": "38.740275", + "longitude_deg": "-77.07625", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Alexandria", + "scheduled_service": "no", + "gps_code": "VA82", + "local_code": "VA82" + }, + { + "id": "25415", + "ident": "VA83", + "type": "small_airport", + "name": "Fincastle Airport", + "latitude_deg": "37.52239990234375", + "longitude_deg": "-79.85199737548828", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fincastle", + "scheduled_service": "no", + "gps_code": "VA83", + "local_code": "VA83" + }, + { + "id": "25416", + "ident": "VA84", + "type": "heliport", + "name": "Point Farm Heliport", + "latitude_deg": "37.309898376464844", + "longitude_deg": "-76.01580047607422", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Cape Charles", + "scheduled_service": "no", + "gps_code": "VA84", + "local_code": "VA84" + }, + { + "id": "25417", + "ident": "VA85", + "type": "small_airport", + "name": "New Castle International Airport", + "latitude_deg": "37.48350143432617", + "longitude_deg": "-80.09980010986328", + "elevation_ft": "1320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "New Castle", + "scheduled_service": "no", + "gps_code": "VA85", + "local_code": "VA85" + }, + { + "id": "25418", + "ident": "VA86", + "type": "closed", + "name": "Buddy Davis Field", + "latitude_deg": "38.689301", + "longitude_deg": "-78.706398", + "elevation_ft": "1042", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "New Market", + "scheduled_service": "no", + "keywords": "VA86" + }, + { + "id": "25419", + "ident": "VA87", + "type": "small_airport", + "name": "Valley View Airport", + "latitude_deg": "38.69179916381836", + "longitude_deg": "-77.55110168457031", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Nokesville", + "scheduled_service": "no", + "gps_code": "VA87", + "local_code": "VA87" + }, + { + "id": "25420", + "ident": "VA88", + "type": "heliport", + "name": "Sentara Norfolk General Hospital Heliport", + "latitude_deg": "36.86130142211914", + "longitude_deg": "-76.30359649658203", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Norfolk", + "scheduled_service": "no", + "gps_code": "VA88", + "local_code": "VA88" + }, + { + "id": "25421", + "ident": "VA89", + "type": "small_airport", + "name": "Chance Airport", + "latitude_deg": "37.56460189819336", + "longitude_deg": "-75.92630004882812", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Davis Wharf", + "scheduled_service": "no", + "gps_code": "VA89", + "local_code": "VA89" + }, + { + "id": "25422", + "ident": "VA90", + "type": "closed", + "name": "Hudgins Farm Ultralightport", + "latitude_deg": "37.496799", + "longitude_deg": "-76.413597", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Cobbs Creek", + "scheduled_service": "no", + "keywords": "VA90" + }, + { + "id": "25423", + "ident": "VA91", + "type": "closed", + "name": "Johnson Field", + "latitude_deg": "37.704899", + "longitude_deg": "-75.726601", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Onancock", + "scheduled_service": "no", + "keywords": "VA91" + }, + { + "id": "25424", + "ident": "VA92", + "type": "small_airport", + "name": "Peace and Plenty Farm Airport", + "latitude_deg": "37.7238", + "longitude_deg": "-75.785998", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Onancock", + "scheduled_service": "no", + "gps_code": "VA92", + "local_code": "VA92" + }, + { + "id": "25425", + "ident": "VA93", + "type": "small_airport", + "name": "Ayers Airport", + "latitude_deg": "38.90510177612305", + "longitude_deg": "-78.65470123291016", + "elevation_ft": "1340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Columbia Furnace", + "scheduled_service": "no", + "gps_code": "VA93", + "local_code": "VA93" + }, + { + "id": "25426", + "ident": "VA94", + "type": "small_airport", + "name": "Plainview Airport", + "latitude_deg": "37.535701751708984", + "longitude_deg": "-77.89140319824219", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Powhatan", + "scheduled_service": "no", + "gps_code": "VA94", + "local_code": "VA94" + }, + { + "id": "25427", + "ident": "VA95", + "type": "closed", + "name": "Spring Valley Airport", + "latitude_deg": "37.597099", + "longitude_deg": "-77.8003", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Powhatan", + "scheduled_service": "no", + "keywords": "VA95" + }, + { + "id": "25428", + "ident": "VA96", + "type": "small_airport", + "name": "Faber Airport", + "latitude_deg": "37.825401306152344", + "longitude_deg": "-78.73169708251953", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Lovingston", + "scheduled_service": "no", + "gps_code": "VA96", + "local_code": "VA96" + }, + { + "id": "25429", + "ident": "VA97", + "type": "closed", + "name": "Harris Airport", + "latitude_deg": "38.912601", + "longitude_deg": "-77.881699", + "elevation_ft": "566", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Rectortown", + "scheduled_service": "no", + "keywords": "VA97" + }, + { + "id": "25430", + "ident": "VA98", + "type": "small_airport", + "name": "Reedville Airport", + "latitude_deg": "37.82820129394531", + "longitude_deg": "-76.27330017089844", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Reedville", + "scheduled_service": "no", + "gps_code": "VA98", + "local_code": "VA98" + }, + { + "id": "25431", + "ident": "VA99", + "type": "small_airport", + "name": "Federhart-Ophelia Airport", + "latitude_deg": "37.905998", + "longitude_deg": "-76.290497", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Reedville", + "scheduled_service": "no", + "gps_code": "VA99", + "local_code": "VA99", + "keywords": "STOLport" + }, + { + "id": "26431", + "ident": "VAAH", + "type": "medium_airport", + "name": "Sardar Vallabhbhai Patel International Airport", + "latitude_deg": "23.0771999359", + "longitude_deg": "72.63469696039999", + "elevation_ft": "189", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Ahmedabad", + "scheduled_service": "yes", + "gps_code": "VAAH", + "iata_code": "AMD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sardar_Vallabhbhai_Patel_International_Airport", + "keywords": "Gandhinagar Air Force Station" + }, + { + "id": "26432", + "ident": "VAAK", + "type": "medium_airport", + "name": "Akola Airport", + "latitude_deg": "20.698931", + "longitude_deg": "77.056883", + "elevation_ft": "999", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Akola", + "scheduled_service": "no", + "gps_code": "VAAK", + "iata_code": "AKD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Akola_Airport", + "keywords": "Shioni Airport" + }, + { + "id": "26433", + "ident": "VAAU", + "type": "medium_airport", + "name": "Aurangabad Airport", + "latitude_deg": "19.862699508666992", + "longitude_deg": "75.39810180664062", + "elevation_ft": "1911", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Aurangabad", + "scheduled_service": "yes", + "gps_code": "VAAU", + "iata_code": "IXU", + "home_link": "http://aai.aero/allAirports/aurangabad_generalinfo.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aurangabad_Airport", + "keywords": "Chikkalthana Airport" + }, + { + "id": "26434", + "ident": "VABB", + "type": "large_airport", + "name": "Chhatrapati Shivaji International Airport", + "latitude_deg": "19.0886993408", + "longitude_deg": "72.8678970337", + "elevation_ft": "39", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Mumbai", + "scheduled_service": "yes", + "gps_code": "VABB", + "iata_code": "BOM", + "home_link": "http://www.csia.in/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chhatrapati_Shivaji_International_Airport", + "keywords": "Bombay, Sahar International Airport" + }, + { + "id": "26435", + "ident": "VABI", + "type": "medium_airport", + "name": "Bilaspur Airport", + "latitude_deg": "21.9884", + "longitude_deg": "82.111", + "elevation_ft": "899", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-CT", + "municipality": "Bilaspur", + "scheduled_service": "yes", + "gps_code": "VEBU", + "iata_code": "PAB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bilaspur_Airport", + "keywords": "VABI" + }, + { + "id": "26436", + "ident": "VABJ", + "type": "medium_airport", + "name": "Bhuj Airport", + "latitude_deg": "23.2877998352", + "longitude_deg": "69.6701965332", + "elevation_ft": "268", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Bhuj", + "scheduled_service": "yes", + "gps_code": "VABJ", + "iata_code": "BHJ", + "home_link": "http://aai.aero/allAirports/bhuj_generalinfo.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bhuj_Airport", + "keywords": "Bhuj Rudra Mata Air Force Station, Shyamji Krishna Verma, Bhuj Airport" + }, + { + "id": "26437", + "ident": "VABM", + "type": "medium_airport", + "name": "Belagavi Airport", + "latitude_deg": "15.8593", + "longitude_deg": "74.618301", + "elevation_ft": "2487", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Belgaum", + "scheduled_service": "yes", + "gps_code": "VOBM", + "iata_code": "IXG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Belgaum_Airport", + "keywords": "VABM" + }, + { + "id": "26438", + "ident": "VABO", + "type": "medium_airport", + "name": "Vadodara Airport", + "latitude_deg": "22.336201", + "longitude_deg": "73.226303", + "elevation_ft": "129", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Vadodara", + "scheduled_service": "yes", + "gps_code": "VABO", + "iata_code": "BDQ", + "home_link": "http://aai.aero/allAirports/vadodara_generalinfo.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vadodara_Airport", + "keywords": "Civil Airport Harni" + }, + { + "id": "26439", + "ident": "VABP", + "type": "medium_airport", + "name": "Raja Bhoj International Airport", + "latitude_deg": "23.2875003815", + "longitude_deg": "77.3374023438", + "elevation_ft": "1711", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "municipality": "Bhopal", + "scheduled_service": "yes", + "gps_code": "VABP", + "iata_code": "BHO", + "home_link": "http://aai.aero/allAirports/bhopal_generalinfo.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bhopal_Airport" + }, + { + "id": "26440", + "ident": "VABV", + "type": "medium_airport", + "name": "Bhavnagar Airport", + "latitude_deg": "21.752199173", + "longitude_deg": "72.1852035522", + "elevation_ft": "44", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Bhavnagar", + "scheduled_service": "yes", + "gps_code": "VABV", + "iata_code": "BHU", + "home_link": "http://aai.aero/allAirports/bhavnagar.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bhavnagar_Airport" + }, + { + "id": "26441", + "ident": "VADN", + "type": "medium_airport", + "name": "Daman Airport", + "latitude_deg": "20.434401", + "longitude_deg": "72.843201", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-DH", + "municipality": "Daman", + "scheduled_service": "no", + "gps_code": "VADN", + "iata_code": "NMB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Daman_Airport" + }, + { + "id": "26442", + "ident": "VADS", + "type": "small_airport", + "name": "Deesa Airport", + "latitude_deg": "24.2679", + "longitude_deg": "72.204399", + "elevation_ft": "485", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Deesa", + "scheduled_service": "no", + "gps_code": "VADS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Deesa_Airport", + "keywords": "Disa, Palanpur" + }, + { + "id": "26443", + "ident": "VAGN", + "type": "small_airport", + "name": "Guna Airport", + "latitude_deg": "24.654699", + "longitude_deg": "77.347298", + "elevation_ft": "1600", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "scheduled_service": "no", + "gps_code": "VAGN", + "iata_code": "GUX" + }, + { + "id": "26444", + "ident": "VAGO", + "type": "large_airport", + "name": "Dabolim Airport", + "latitude_deg": "15.3808", + "longitude_deg": "73.831398", + "elevation_ft": "150", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GA", + "municipality": "Vasco da Gama", + "scheduled_service": "yes", + "gps_code": "VOGO", + "iata_code": "GOI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dabolim_Airport", + "keywords": "Goa Airport, Dabolim Navy Airbase, दाबोळी विमानतळ" + }, + { + "id": "26445", + "ident": "VAHB", + "type": "medium_airport", + "name": "Hubli Airport", + "latitude_deg": "15.361700058", + "longitude_deg": "75.08489990230001", + "elevation_ft": "2171", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Hubli", + "scheduled_service": "yes", + "gps_code": "VOHB", + "iata_code": "HBX", + "home_link": "http://www.airportsindia.org.in/allAirports/hubli_generalinfo.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hubli_Airport", + "keywords": "VAHB" + }, + { + "id": "26446", + "ident": "VAID", + "type": "medium_airport", + "name": "Devi Ahilyabai Holkar Airport", + "latitude_deg": "22.7217998505", + "longitude_deg": "75.8011016846", + "elevation_ft": "1850", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "municipality": "Indore", + "scheduled_service": "yes", + "gps_code": "VAID", + "iata_code": "IDR", + "home_link": "http://aai.aero/allAirports/indore_technicalinfo.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Devi_Ahilyabai_Holkar_International_Airport" + }, + { + "id": "26447", + "ident": "VAJB", + "type": "medium_airport", + "name": "Jabalpur Airport", + "latitude_deg": "23.177799224853516", + "longitude_deg": "80.052001953125", + "elevation_ft": "1624", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "scheduled_service": "yes", + "gps_code": "VAJB", + "iata_code": "JLR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jabalpur_Airport" + }, + { + "id": "30171", + "ident": "VAJJ", + "type": "small_airport", + "name": "Juhu Aerodrome", + "latitude_deg": "19.098100662231445", + "longitude_deg": "72.83419799804688", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Mumbai", + "scheduled_service": "no", + "gps_code": "VAJJ", + "home_link": "http://www.airportsindia.org.in/allAirports/juhu.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Juhu_Aerodrome", + "keywords": "Bombay" + }, + { + "id": "26448", + "ident": "VAJM", + "type": "medium_airport", + "name": "Jamnagar Airport", + "latitude_deg": "22.465499877929688", + "longitude_deg": "70.01260375976562", + "elevation_ft": "69", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Jamnagar", + "scheduled_service": "yes", + "gps_code": "VAJM", + "iata_code": "JGA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jamnagar_Airport", + "keywords": "Jamnagar Air Force Station" + }, + { + "id": "26449", + "ident": "VAKE", + "type": "medium_airport", + "name": "Kandla Airport", + "latitude_deg": "23.1127", + "longitude_deg": "70.100304", + "elevation_ft": "96", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Kandla", + "scheduled_service": "yes", + "gps_code": "VAKE", + "iata_code": "IXY", + "home_link": "http://aai.aero/allAirports/kandla_generalinfo.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kandla_Airport" + }, + { + "id": "26450", + "ident": "VAKJ", + "type": "medium_airport", + "name": "Khajuraho Airport", + "latitude_deg": "24.8172", + "longitude_deg": "79.918602", + "elevation_ft": "728", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "municipality": "Khajuraho", + "scheduled_service": "yes", + "gps_code": "VEKO", + "iata_code": "HJR", + "home_link": "https://www.aai.aero/en/airports/khajuraho", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khajuraho_Airport", + "keywords": "VAKJ" + }, + { + "id": "26451", + "ident": "VAKP", + "type": "medium_airport", + "name": "Kolhapur Airport", + "latitude_deg": "16.6646995544", + "longitude_deg": "74.2893981934", + "elevation_ft": "1996", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "scheduled_service": "yes", + "gps_code": "VAKP", + "iata_code": "KLH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kolhapur_Airport" + }, + { + "id": "26452", + "ident": "VAKS", + "type": "medium_airport", + "name": "Keshod Airport", + "latitude_deg": "21.317101", + "longitude_deg": "70.270401", + "elevation_ft": "167", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Keshod", + "scheduled_service": "no", + "gps_code": "VAKS", + "iata_code": "IXK" + }, + { + "id": "340182", + "ident": "VAMA", + "type": "small_airport", + "name": "Mundra Airport", + "latitude_deg": "22.834795", + "longitude_deg": "69.765408", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Mundra", + "scheduled_service": "no", + "gps_code": "VAMA" + }, + { + "id": "30180", + "ident": "VAND", + "type": "medium_airport", + "name": "Nanded Airport", + "latitude_deg": "19.1833000183", + "longitude_deg": "77.31670379639999", + "elevation_ft": "1250", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Nanded", + "scheduled_service": "yes", + "gps_code": "VAND", + "iata_code": "NDC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nanded_Airport" + }, + { + "id": "26453", + "ident": "VANP", + "type": "medium_airport", + "name": "Dr. Babasaheb Ambedkar International Airport", + "latitude_deg": "21.092199", + "longitude_deg": "79.047203", + "elevation_ft": "1033", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Nagpur", + "scheduled_service": "yes", + "gps_code": "VANP", + "iata_code": "NAG", + "home_link": "http://aai.aero/allAirports/nagpur1_generalinfo.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dr._Babasaheb_Ambedkar_International_Airport", + "keywords": "Sonegaon Airport, Sonegaon Air Force Station" + }, + { + "id": "26454", + "ident": "VANR", + "type": "closed", + "name": "Gandhinagar Airport", + "latitude_deg": "19.963699", + "longitude_deg": "73.807602", + "elevation_ft": "1959", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Nashik", + "scheduled_service": "no", + "gps_code": "VANR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gandhinagar_Airport", + "keywords": "ISK, Nasik Road Airport" + }, + { + "id": "3301", + "ident": "VAOZ", + "type": "medium_airport", + "name": "Nashik Airport", + "latitude_deg": "20.119101", + "longitude_deg": "73.912903", + "elevation_ft": "1900", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Nasik", + "scheduled_service": "yes", + "gps_code": "VAOZ", + "iata_code": "ISK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nashik_Airport", + "keywords": "VA35" + }, + { + "id": "26455", + "ident": "VAPO", + "type": "medium_airport", + "name": "Pune Airport / Lohagaon Air Force Station", + "latitude_deg": "18.5821", + "longitude_deg": "73.919701", + "elevation_ft": "1942", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Pune", + "scheduled_service": "yes", + "gps_code": "VAPO", + "iata_code": "PNQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pune_Airport", + "keywords": "Lohegaon Airport, Lohegaon Air Force Station" + }, + { + "id": "26456", + "ident": "VAPR", + "type": "medium_airport", + "name": "Porbandar Airport", + "latitude_deg": "21.649524", + "longitude_deg": "69.656405", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Porbandar", + "scheduled_service": "yes", + "gps_code": "VAPR", + "iata_code": "PBD", + "home_link": "http://www.airportsindia.org.in/allAirports/porbander.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Porbandar_Airport" + }, + { + "id": "26457", + "ident": "VARG", + "type": "medium_airport", + "name": "Ratnagiri Airport", + "latitude_deg": "17.013599", + "longitude_deg": "73.327797", + "elevation_ft": "305", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "scheduled_service": "no", + "gps_code": "VARG", + "iata_code": "RTC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ratnagiri_Airport" + }, + { + "id": "26458", + "ident": "VARK", + "type": "medium_airport", + "name": "Rajkot Airport", + "latitude_deg": "22.3092002869", + "longitude_deg": "70.77950286869999", + "elevation_ft": "441", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "municipality": "Rajkot", + "scheduled_service": "yes", + "gps_code": "VARK", + "iata_code": "RAJ", + "home_link": "http://www.airportsindia.org.in/allAirports/rajkot.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rajkot_Airport" + }, + { + "id": "26459", + "ident": "VARP", + "type": "small_airport", + "name": "Swami Vivekananda Airport", + "latitude_deg": "21.180401", + "longitude_deg": "81.7388", + "elevation_ft": "1041", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-CT", + "municipality": "Raipur", + "scheduled_service": "yes", + "gps_code": "VERP", + "iata_code": "RPR", + "home_link": "http://aai.aero/allAirports/raipur_generalinfo.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Swami_Vivekananda_Airport", + "keywords": "Mana Airport,Raipur Airport" + }, + { + "id": "327452", + "ident": "VASD", + "type": "medium_airport", + "name": "Shirdi Airport", + "latitude_deg": "19.688752", + "longitude_deg": "74.377354", + "elevation_ft": "1926", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Kakadi", + "scheduled_service": "yes", + "gps_code": "VASD", + "iata_code": "SAG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shirdi_Airport", + "keywords": "Ahmednagar, Saibaba" + }, + { + "id": "26460", + "ident": "VASL", + "type": "medium_airport", + "name": "Solapur Airport", + "latitude_deg": "17.6280002594", + "longitude_deg": "75.93479919430001", + "elevation_ft": "1584", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Solapur", + "scheduled_service": "no", + "gps_code": "VASL", + "iata_code": "SSE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Solapur_Airport", + "keywords": "Sholapur" + }, + { + "id": "26461", + "ident": "VASU", + "type": "medium_airport", + "name": "Surat Airport", + "latitude_deg": "21.1140995026", + "longitude_deg": "72.7417984009", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-GJ", + "scheduled_service": "yes", + "gps_code": "VASU", + "iata_code": "STV" + }, + { + "id": "26462", + "ident": "VAUD", + "type": "medium_airport", + "name": "Maharana Pratap Airport", + "latitude_deg": "24.617700576799997", + "longitude_deg": "73.89610290530001", + "elevation_ft": "1684", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "municipality": "Udaipur", + "scheduled_service": "yes", + "gps_code": "VAUD", + "iata_code": "UDR", + "home_link": "http://www.airportsindia.org.in/allAirports/udaipur_airpo_gi.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Udaipur_Airport", + "keywords": "Dabok Airport" + }, + { + "id": "25433", + "ident": "VBW", + "type": "small_airport", + "name": "Bridgewater Air Park", + "latitude_deg": "38.366699", + "longitude_deg": "-78.960297", + "elevation_ft": "1165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Bridgewater", + "scheduled_service": "no", + "gps_code": "KVBW", + "local_code": "VBW" + }, + { + "id": "26463", + "ident": "VCBI", + "type": "large_airport", + "name": "Bandaranaike International Colombo Airport", + "latitude_deg": "7.180759906768799", + "longitude_deg": "79.88410186767578", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-1", + "municipality": "Colombo", + "scheduled_service": "yes", + "gps_code": "VCBI", + "iata_code": "CMB", + "home_link": "http://www.airport.lk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bandaranaike_International_Airport", + "keywords": "RAF Negombo, Katunayake International Airport" + }, + { + "id": "340292", + "ident": "VCC", + "type": "closed", + "name": "Limbé Airport", + "latitude_deg": "4.01583", + "longitude_deg": "9.19999", + "elevation_ft": "-3", + "continent": "AF", + "iso_country": "CM", + "iso_region": "CM-SW", + "municipality": "Limbé", + "scheduled_service": "no", + "iata_code": "VCC" + }, + { + "id": "26464", + "ident": "VCCA", + "type": "medium_airport", + "name": "Anuradhapura Airport", + "latitude_deg": "8.301542", + "longitude_deg": "80.42848", + "elevation_ft": "324", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-7", + "municipality": "Anuradhapura", + "scheduled_service": "no", + "gps_code": "VCCA", + "iata_code": "ACJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anuradhapura_Airport", + "keywords": "SLAF Anuradhapura" + }, + { + "id": "26465", + "ident": "VCCB", + "type": "medium_airport", + "name": "Batticaloa Airport", + "latitude_deg": "7.70576", + "longitude_deg": "81.678802", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-5", + "municipality": "Batticaloa", + "scheduled_service": "yes", + "gps_code": "VCCB", + "iata_code": "BTC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Batticaloa_Airport" + }, + { + "id": "26466", + "ident": "VCCC", + "type": "medium_airport", + "name": "Colombo Ratmalana Airport", + "latitude_deg": "6.821990013122559", + "longitude_deg": "79.88619995117188", + "elevation_ft": "22", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-1", + "municipality": "Colombo", + "scheduled_service": "yes", + "gps_code": "VCCC", + "iata_code": "RML", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ratmalana_Airport" + }, + { + "id": "26467", + "ident": "VCCG", + "type": "medium_airport", + "name": "Ampara Airport", + "latitude_deg": "7.336745", + "longitude_deg": "81.623869", + "elevation_ft": "150", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-5", + "municipality": "Ampara", + "scheduled_service": "no", + "gps_code": "VCCG", + "iata_code": "ADP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amparai_Airport", + "keywords": "GOY, Gal Oya Airport" + }, + { + "id": "31927", + "ident": "VCCH", + "type": "medium_airport", + "name": "Hingurakgoda Air Force Base", + "latitude_deg": "8.04981", + "longitude_deg": "80.9814", + "elevation_ft": "170", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-7", + "municipality": "Polonnaruwa Town", + "scheduled_service": "no", + "gps_code": "VCCH", + "iata_code": "HIM", + "home_link": "http://www.airforce.lk/pages.php?pages=hingurakgoda", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hingurakgoda_Airport", + "keywords": "MNH, Minneriya Airport" + }, + { + "id": "26468", + "ident": "VCCJ", + "type": "medium_airport", + "name": "Jaffna International Airport", + "latitude_deg": "9.79233", + "longitude_deg": "80.070099", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-4", + "municipality": "Jaffna", + "scheduled_service": "yes", + "gps_code": "VCCJ", + "iata_code": "JAF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jaffna_International_Airport", + "keywords": "SLAF Palaly, Kankesanturai" + }, + { + "id": "26469", + "ident": "VCCK", + "type": "medium_airport", + "name": "Koggala Airport", + "latitude_deg": "5.993680000305176", + "longitude_deg": "80.32029724121094", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-3", + "municipality": "Galle", + "scheduled_service": "yes", + "gps_code": "VCCK", + "iata_code": "KCT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Koggala_Airport", + "keywords": "SLAF Koggala" + }, + { + "id": "26470", + "ident": "VCCN", + "type": "small_airport", + "name": "Katukurunda Air Force Base", + "latitude_deg": "6.55212020874", + "longitude_deg": "79.9775009155", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-1", + "municipality": "Kalutara", + "scheduled_service": "no", + "gps_code": "VCCN", + "iata_code": "KTY", + "local_code": "VC14", + "wikipedia_link": "https://en.wikipedia.org/wiki/Katukurunda_Airport", + "keywords": "SLAF Katukurunda" + }, + { + "id": "4392", + "ident": "VCCS", + "type": "small_airport", + "name": "Sigiriya Air Force Base", + "latitude_deg": "7.956669807430001", + "longitude_deg": "80.7285003662", + "elevation_ft": "630", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-2", + "municipality": "Sigiriya", + "scheduled_service": "no", + "gps_code": "VCCS", + "iata_code": "GIU", + "home_link": "http://www.airforce.lk/pages.php?pages=sigiriya", + "keywords": "VC15, SLAF Sigiriya" + }, + { + "id": "26471", + "ident": "VCCT", + "type": "medium_airport", + "name": "China Bay Airport", + "latitude_deg": "8.5385103225708", + "longitude_deg": "81.18190002441406", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-5", + "municipality": "Trincomalee", + "scheduled_service": "yes", + "gps_code": "VCCT", + "iata_code": "TRR", + "wikipedia_link": "https://en.wikipedia.org/wiki/China_Bay_Airport", + "keywords": "SLAF China Bay, RAF China Bay, Trincomalee Airport" + }, + { + "id": "4391", + "ident": "VCCV", + "type": "small_airport", + "name": "Vavuniya Airport", + "latitude_deg": "8.741009", + "longitude_deg": "80.497845", + "elevation_ft": "299", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-4", + "municipality": "Vavuniya", + "scheduled_service": "no", + "gps_code": "VCCV", + "keywords": "VC13" + }, + { + "id": "26472", + "ident": "VCCW", + "type": "small_airport", + "name": "Weerawila Airport", + "latitude_deg": "6.25448989868", + "longitude_deg": "81.23519897460001", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-3", + "municipality": "Weerawila", + "scheduled_service": "yes", + "gps_code": "VCCW", + "iata_code": "WRZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Weerawila_Airport", + "keywords": "Wirawila Airport" + }, + { + "id": "309579", + "ident": "VCRI", + "type": "large_airport", + "name": "Mattala Rajapaksa International Airport", + "latitude_deg": "6.284467", + "longitude_deg": "81.124128", + "elevation_ft": "157", + "continent": "AS", + "iso_country": "LK", + "iso_region": "LK-3", + "scheduled_service": "yes", + "gps_code": "VCRI", + "iata_code": "HRI", + "local_code": "VCRI", + "home_link": "http://www.mria.lk/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mattala_Rajapaksa_International_Airport", + "keywords": "Hambantota International Airport" + }, + { + "id": "26473", + "ident": "VDBG", + "type": "medium_airport", + "name": "Battambang Airport", + "latitude_deg": "13.0956", + "longitude_deg": "103.223999", + "elevation_ft": "59", + "continent": "AS", + "iso_country": "KH", + "iso_region": "KH-2", + "municipality": "Battambang", + "scheduled_service": "yes", + "gps_code": "VDBG", + "iata_code": "BBM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Battambang_Airport" + }, + { + "id": "32569", + "ident": "VDKC", + "type": "small_airport", + "name": "Kampong Cham Airport", + "latitude_deg": "12.028657", + "longitude_deg": "105.441165", + "elevation_ft": "148", + "continent": "AS", + "iso_country": "KH", + "iso_region": "KH-3", + "municipality": "Kompong Cham", + "scheduled_service": "no", + "gps_code": "VDKC" + }, + { + "id": "26474", + "ident": "VDKH", + "type": "medium_airport", + "name": "Kampong Chhnang Airport", + "latitude_deg": "12.255032", + "longitude_deg": "104.564657", + "elevation_ft": "56", + "continent": "AS", + "iso_country": "KH", + "iso_region": "KH-4", + "municipality": "Kampong Chhnang", + "scheduled_service": "no", + "gps_code": "VDKH", + "iata_code": "KZC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kampong_Chhnang_Airport" + }, + { + "id": "46543", + "ident": "VDKK", + "type": "small_airport", + "name": "Koh Kong Airport", + "latitude_deg": "11.613397", + "longitude_deg": "102.997084", + "continent": "AS", + "iso_country": "KH", + "iso_region": "KH-9", + "municipality": "Krong Khemara Phoumin", + "scheduled_service": "no", + "gps_code": "VDKK", + "iata_code": "KKZ" + }, + { + "id": "31781", + "ident": "VDKT", + "type": "closed", + "name": "Kratie Airport", + "latitude_deg": "12.489017", + "longitude_deg": "106.05469", + "continent": "AS", + "iso_country": "KH", + "iso_region": "KH-10", + "municipality": "Kratie", + "scheduled_service": "no", + "keywords": "KTI, VDKT" + }, + { + "id": "46544", + "ident": "VDMK", + "type": "small_airport", + "name": "Mondulkiri Airport", + "latitude_deg": "12.463648", + "longitude_deg": "107.187252", + "continent": "AS", + "iso_country": "KH", + "iso_region": "KH-11", + "municipality": "Sen Monorom", + "scheduled_service": "no", + "gps_code": "VDMK", + "iata_code": "MWV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mondulkiri_Airport" + }, + { + "id": "26475", + "ident": "VDPP", + "type": "large_airport", + "name": "Phnom Penh International Airport", + "latitude_deg": "11.5466", + "longitude_deg": "104.844002", + "elevation_ft": "40", + "continent": "AS", + "iso_country": "KH", + "iso_region": "KH-12", + "municipality": "Phnom Penh (Pou Senchey)", + "scheduled_service": "yes", + "gps_code": "VDPP", + "iata_code": "PNH", + "home_link": "http://www.cambodia-airports.com/phnompenh/en/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Phnom_Penh_International_Airport", + "keywords": "Pochentong International Airport" + }, + { + "id": "35306", + "ident": "VDRK", + "type": "medium_airport", + "name": "Ratanakiri Airport", + "latitude_deg": "13.729999542236328", + "longitude_deg": "106.98699951171875", + "continent": "AS", + "iso_country": "KH", + "iso_region": "KH-16", + "municipality": "Ratanakiri", + "scheduled_service": "no", + "gps_code": "VDRK", + "iata_code": "RBE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ratanankiri_Airport" + }, + { + "id": "26476", + "ident": "VDSR", + "type": "large_airport", + "name": "Siem Reap International Airport", + "latitude_deg": "13.41155", + "longitude_deg": "103.813044", + "elevation_ft": "60", + "continent": "AS", + "iso_country": "KH", + "iso_region": "KH-17", + "municipality": "Siem Reap", + "scheduled_service": "yes", + "gps_code": "VDSR", + "iata_code": "REP", + "home_link": "http://www.cambodia-airports.com/siemreap/en", + "wikipedia_link": "https://en.wikipedia.org/wiki/Siem_Reap_International_Airport", + "keywords": "Angkor International Airport" + }, + { + "id": "26477", + "ident": "VDST", + "type": "heliport", + "name": "Stung Treng Airport", + "latitude_deg": "13.5319", + "longitude_deg": "106.014999", + "elevation_ft": "203", + "continent": "AS", + "iso_country": "KH", + "iso_region": "KH-19", + "municipality": "Stung Treng", + "scheduled_service": "no", + "gps_code": "VDST", + "iata_code": "TNX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stung_Treng_Airport" + }, + { + "id": "26478", + "ident": "VDSV", + "type": "small_airport", + "name": "Sihanoukville International Airport", + "latitude_deg": "10.569498", + "longitude_deg": "103.631001", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "KH", + "iso_region": "KH-18", + "municipality": "Preah Sihanouk", + "scheduled_service": "yes", + "gps_code": "VDSV", + "iata_code": "KOS", + "home_link": "http://www.sihanoukville-cambodia.com/about-sihanoukville/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sihanoukville_International_Airport", + "keywords": "Kompong Som" + }, + { + "id": "313338", + "ident": "VDSY", + "type": "small_airport", + "name": "Krakor Airport", + "latitude_deg": "12.5385", + "longitude_deg": "104.1486", + "elevation_ft": "62", + "continent": "AS", + "iso_country": "KH", + "iso_region": "KH-15", + "municipality": "Krakor", + "scheduled_service": "no", + "gps_code": "VDSY", + "iata_code": "KZD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Krakor_Airport" + }, + { + "id": "40350", + "ident": "VE-0001", + "type": "small_airport", + "name": "Acañana Airport", + "latitude_deg": "3.233333110809326", + "longitude_deg": "-65.94999694824219", + "elevation_ft": "418", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40351", + "ident": "VE-0002", + "type": "heliport", + "name": "Acañana Heliport", + "latitude_deg": "3.233333110809326", + "longitude_deg": "-65.94999694824219", + "elevation_ft": "460", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40352", + "ident": "VE-0003", + "type": "heliport", + "name": "Acarigua Heliport", + "latitude_deg": "9.542195", + "longitude_deg": "-69.241566", + "elevation_ft": "705", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "municipality": "Acarigua", + "scheduled_service": "no" + }, + { + "id": "40353", + "ident": "VE-0004", + "type": "heliport", + "name": "Accro Heliport", + "latitude_deg": "9.579999923706055", + "longitude_deg": "-63.63516616821289", + "elevation_ft": "643", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "scheduled_service": "no" + }, + { + "id": "40354", + "ident": "VE-0005", + "type": "heliport", + "name": "Aeroatun Heliport", + "latitude_deg": "10.471667289733887", + "longitude_deg": "-64.18499755859375", + "elevation_ft": "11", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-R", + "municipality": "Cumaná", + "scheduled_service": "no" + }, + { + "id": "40355", + "ident": "VE-0006", + "type": "heliport", + "name": "Aeroservicios Ranger Heliport", + "latitude_deg": "7.300556182861328", + "longitude_deg": "-61.50138854980469", + "elevation_ft": "525", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "municipality": "Tumeremo", + "scheduled_service": "no" + }, + { + "id": "40356", + "ident": "VE-0007", + "type": "heliport", + "name": "Aerotécnica Heliport", + "latitude_deg": "9.538128", + "longitude_deg": "-69.223776", + "elevation_ft": "720", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "municipality": "Acarigua", + "scheduled_service": "no" + }, + { + "id": "40357", + "ident": "VE-0008", + "type": "small_airport", + "name": "Agropecuaria Cuajarote Airport", + "latitude_deg": "9.258333206176758", + "longitude_deg": "-67.55833435058594", + "elevation_ft": "400", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no" + }, + { + "id": "40358", + "ident": "VE-0009", + "type": "heliport", + "name": "Aguasay Heliport", + "latitude_deg": "9.421667098999023", + "longitude_deg": "-63.73833465576172", + "elevation_ft": "634", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "municipality": "Aguasay", + "scheduled_service": "no" + }, + { + "id": "40359", + "ident": "VE-0010", + "type": "heliport", + "name": "Alto Ipare Heliport", + "latitude_deg": "9.87166690826416", + "longitude_deg": "-66.30833435058594", + "elevation_ft": "1278", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "municipality": "Altagracia de Orituco", + "scheduled_service": "no" + }, + { + "id": "40360", + "ident": "VE-0011", + "type": "heliport", + "name": "Araguay Mujo Heliport", + "latitude_deg": "9.933333396911621", + "longitude_deg": "-63.5", + "elevation_ft": "757", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "municipality": "Aragua de Maturín", + "scheduled_service": "no" + }, + { + "id": "40361", + "ident": "VE-0012", + "type": "small_airport", + "name": "Arekuna Airport", + "latitude_deg": "6.483333110809326", + "longitude_deg": "-62.891666412353516", + "elevation_ft": "1192", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "municipality": "Canaima", + "scheduled_service": "no" + }, + { + "id": "40362", + "ident": "VE-0013", + "type": "heliport", + "name": "Aripao Heliport", + "latitude_deg": "7.0391669273376465", + "longitude_deg": "-65.1675033569336", + "elevation_ft": "259", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40363", + "ident": "VE-0014", + "type": "small_airport", + "name": "Arismendi Airport", + "latitude_deg": "8.484167098999023", + "longitude_deg": "-68.366943359375", + "elevation_ft": "225", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "municipality": "Arismendi", + "scheduled_service": "no" + }, + { + "id": "40364", + "ident": "VE-0015", + "type": "small_airport", + "name": "Asisa (Alto Asisa) Airpòrt", + "latitude_deg": "4.468889236450195", + "longitude_deg": "-65.7691650390625", + "elevation_ft": "786", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40365", + "ident": "VE-0016", + "type": "small_airport", + "name": "Asita Airport", + "latitude_deg": "5.199999809265137", + "longitude_deg": "-65.58333587646484", + "elevation_ft": "690", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40366", + "ident": "VE-0017", + "type": "heliport", + "name": "Avila Heliport", + "latitude_deg": "10.481332778930664", + "longitude_deg": "-66.70649719238281", + "elevation_ft": "1808", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-M", + "municipality": "Caracas", + "scheduled_service": "no" + }, + { + "id": "40367", + "ident": "VE-0018", + "type": "heliport", + "name": "Balgres Heliport", + "latitude_deg": "10.15250015258789", + "longitude_deg": "-66.7471694946289", + "elevation_ft": "600", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-M", + "scheduled_service": "no" + }, + { + "id": "40368", + "ident": "VE-0019", + "type": "heliport", + "name": "Bancomara Heliport", + "latitude_deg": "10.658332824707031", + "longitude_deg": "-71.61000061035156", + "elevation_ft": "158", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "municipality": "Maracaibo", + "scheduled_service": "no" + }, + { + "id": "40369", + "ident": "VE-0020", + "type": "heliport", + "name": "Barrancas Heliport", + "latitude_deg": "8.699999809265137", + "longitude_deg": "-62.20500183105469", + "elevation_ft": "42", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "municipality": "Barrancas", + "scheduled_service": "no" + }, + { + "id": "40370", + "ident": "VE-0021", + "type": "small_airport", + "name": "Belen Airport", + "latitude_deg": "3.74666690826416", + "longitude_deg": "-65.76333618164062", + "elevation_ft": "577", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "municipality": "Culebra", + "scheduled_service": "no" + }, + { + "id": "40371", + "ident": "VE-0022", + "type": "heliport", + "name": "Boca de Uracoa Heliport", + "latitude_deg": "9.121832847595215", + "longitude_deg": "-62.32350158691406", + "elevation_ft": "8", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "municipality": "Boca de Uracoa", + "scheduled_service": "no" + }, + { + "id": "40372", + "ident": "VE-0023", + "type": "small_airport", + "name": "Buena Vista del Caño Airport", + "latitude_deg": "3.5", + "longitude_deg": "-65.33333587646484", + "elevation_ft": "680", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40373", + "ident": "VE-0024", + "type": "heliport", + "name": "Buena Vista Heliport", + "latitude_deg": "9.356833457946777", + "longitude_deg": "-64.51882934570312", + "elevation_ft": "524", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "scheduled_service": "no" + }, + { + "id": "40374", + "ident": "VE-0025", + "type": "heliport", + "name": "Buja Heliport", + "latitude_deg": "9.583333015441895", + "longitude_deg": "-62.654998779296875", + "elevation_ft": "43", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "municipality": "San José de Buja", + "scheduled_service": "no" + }, + { + "id": "40375", + "ident": "VE-0026", + "type": "heliport", + "name": "Cabimas Hilton Heliport", + "latitude_deg": "10.466667175292969", + "longitude_deg": "-71.44999694824219", + "elevation_ft": "120", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "municipality": "Las Múcuras", + "scheduled_service": "no" + }, + { + "id": "40376", + "ident": "VE-0027", + "type": "small_airport", + "name": "Cabuya Airport", + "latitude_deg": "4.062468", + "longitude_deg": "-66.828305", + "elevation_ft": "358", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "municipality": "Canaripo", + "scheduled_service": "no" + }, + { + "id": "40377", + "ident": "VE-0028", + "type": "small_airport", + "name": "Cacuri Airport", + "latitude_deg": "4.821667194366455", + "longitude_deg": "-65.33999633789062", + "elevation_ft": "857", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40378", + "ident": "VE-0029", + "type": "small_airport", + "name": "Cacurito Airport", + "latitude_deg": "6.050000190734863", + "longitude_deg": "-66.9000015258789", + "elevation_ft": "814", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40379", + "ident": "VE-0030", + "type": "heliport", + "name": "Caicara de Maturín Heliport", + "latitude_deg": "9.80666732788086", + "longitude_deg": "-63.60499954223633", + "elevation_ft": "550", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "municipality": "Caicara de Maturín", + "scheduled_service": "no" + }, + { + "id": "40380", + "ident": "VE-0031", + "type": "small_airport", + "name": "Camani Airport", + "latitude_deg": "5.108333110809326", + "longitude_deg": "-66.25833129882812", + "elevation_ft": "370", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40381", + "ident": "VE-0032", + "type": "small_airport", + "name": "Camatagua Airport", + "latitude_deg": "9.8114595413208", + "longitude_deg": "-66.8927993774414", + "elevation_ft": "881", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-D", + "municipality": "Camatagua", + "scheduled_service": "no" + }, + { + "id": "40382", + "ident": "VE-0033", + "type": "small_airport", + "name": "Campo de Palma Airport", + "latitude_deg": "8.620490074157715", + "longitude_deg": "-72.22599792480469", + "elevation_ft": "87", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no" + }, + { + "id": "40383", + "ident": "VE-0034", + "type": "small_airport", + "name": "Caño Iguana Sur Airport", + "latitude_deg": "5.050000190734863", + "longitude_deg": "-65.61666870117188", + "elevation_ft": "518", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40384", + "ident": "VE-0035", + "type": "small_airport", + "name": "Caño Santo Airport", + "latitude_deg": "5.550000190734863", + "longitude_deg": "-66.25", + "elevation_ft": "730", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40385", + "ident": "VE-0036", + "type": "heliport", + "name": "Capitán Alfredo Sierra Heliport", + "latitude_deg": "10.118332862854004", + "longitude_deg": "-71.23833465576172", + "elevation_ft": "21", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "municipality": "Lagunillas", + "scheduled_service": "no" + }, + { + "id": "40386", + "ident": "VE-0037", + "type": "heliport", + "name": "Capure Heliport", + "latitude_deg": "9.966667175292969", + "longitude_deg": "-62.150001525878906", + "elevation_ft": "16", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Y", + "scheduled_service": "no" + }, + { + "id": "40387", + "ident": "VE-0038", + "type": "heliport", + "name": "Caribe (Simón Bolívar Internacional) Heliport", + "latitude_deg": "10.598333358800001", + "longitude_deg": "-66.9966659546", + "elevation_ft": "316", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-X", + "municipality": "Caracas", + "scheduled_service": "no" + }, + { + "id": "40388", + "ident": "VE-0039", + "type": "heliport", + "name": "Caripe Heliport", + "latitude_deg": "10.155555725097656", + "longitude_deg": "-63.5", + "elevation_ft": "4255", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "municipality": "Caripe", + "scheduled_service": "no" + }, + { + "id": "40389", + "ident": "VE-0040", + "type": "heliport", + "name": "Caripito Heliport", + "latitude_deg": "10.106200218200684", + "longitude_deg": "-63.0974006652832", + "elevation_ft": "137", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "municipality": "Caripiro", + "scheduled_service": "no" + }, + { + "id": "40390", + "ident": "VE-0041", + "type": "small_airport", + "name": "Carona Airport", + "latitude_deg": "4.599999904632568", + "longitude_deg": "-63.93333435058594", + "elevation_ft": "1169", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "municipality": "Simaraña", + "scheduled_service": "no" + }, + { + "id": "40391", + "ident": "VE-0042", + "type": "small_airport", + "name": "Cayoateri (Coyowateli) Airport", + "latitude_deg": "2.4215199947357178", + "longitude_deg": "-64.29730224609375", + "elevation_ft": "812", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40392", + "ident": "VE-0043", + "type": "small_airport", + "name": "Ceibana Airport", + "latitude_deg": "9.406339645385742", + "longitude_deg": "-71.03829956054688", + "elevation_ft": "41", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-T", + "scheduled_service": "no" + }, + { + "id": "40393", + "ident": "VE-0044", + "type": "heliport", + "name": "Centro Lago I Heliport", + "latitude_deg": "9.873332977294922", + "longitude_deg": "-71.45500183105469", + "elevation_ft": "33", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no" + }, + { + "id": "40394", + "ident": "VE-0045", + "type": "heliport", + "name": "Centro Miranda Heliport", + "latitude_deg": "10.648332595825195", + "longitude_deg": "-71.62999725341797", + "elevation_ft": "138", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "municipality": "Maracaibo", + "scheduled_service": "no" + }, + { + "id": "40395", + "ident": "VE-0046", + "type": "small_airport", + "name": "Cerro Bolívar Airport", + "latitude_deg": "7.5", + "longitude_deg": "-63.400001525878906", + "elevation_ft": "492", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40396", + "ident": "VE-0047", + "type": "heliport", + "name": "Cerro El Divorcio Heliport", + "latitude_deg": "10.091667175292969", + "longitude_deg": "-63.80699920654297", + "elevation_ft": "4930", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "municipality": "Cerro El Divorcio", + "scheduled_service": "no" + }, + { + "id": "40397", + "ident": "VE-0048", + "type": "heliport", + "name": "Cerro El Escondido Heliport", + "latitude_deg": "10.419333457946777", + "longitude_deg": "-63.27299880981445", + "elevation_ft": "865", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-R", + "municipality": "Buena Esperanza", + "scheduled_service": "no" + }, + { + "id": "40398", + "ident": "VE-0049", + "type": "heliport", + "name": "Cerro Negro Heliport", + "latitude_deg": "10.213333129882812", + "longitude_deg": "-63.5716667175293", + "elevation_ft": "5133", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "municipality": "Cerro Negro", + "scheduled_service": "no" + }, + { + "id": "40399", + "ident": "VE-0050", + "type": "small_airport", + "name": "Chajuraña Airport", + "latitude_deg": "5.1483330726623535", + "longitude_deg": "-64.84833526611328", + "elevation_ft": "1114", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40400", + "ident": "VE-0051", + "type": "small_airport", + "name": "Chaparalito Airport", + "latitude_deg": "6.5883331298828125", + "longitude_deg": "-68.28666687011719", + "elevation_ft": "224", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no" + }, + { + "id": "40401", + "ident": "VE-0052", + "type": "small_airport", + "name": "Chivapure Airport", + "latitude_deg": "6.033332824707031", + "longitude_deg": "-66.26667022705078", + "elevation_ft": "1154", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40402", + "ident": "VE-0053", + "type": "small_airport", + "name": "Chorobobo Airport", + "latitude_deg": "10.033332824707031", + "longitude_deg": "-69.25", + "elevation_ft": "1467", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-K", + "scheduled_service": "no" + }, + { + "id": "40403", + "ident": "VE-0054", + "type": "heliport", + "name": "Clínica Avila Heliport", + "latitude_deg": "10.516500473022461", + "longitude_deg": "-66.86609649658203", + "elevation_ft": "3106", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-A", + "municipality": "Chacao", + "scheduled_service": "no" + }, + { + "id": "40404", + "ident": "VE-0055", + "type": "heliport", + "name": "Corporación Venezolana de Televisión Heliport", + "latitude_deg": "10.500100135803223", + "longitude_deg": "-66.8677978515625", + "elevation_ft": "3020", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-M", + "municipality": "La Carlota", + "scheduled_service": "no" + }, + { + "id": "40405", + "ident": "VE-0056", + "type": "small_airport", + "name": "Coshiloateri Airport", + "latitude_deg": "3.0833330154418945", + "longitude_deg": "-65.81500244140625", + "elevation_ft": "450", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40406", + "ident": "VE-0057", + "type": "small_airport", + "name": "El Carmen Airport", + "latitude_deg": "6.150000095367432", + "longitude_deg": "-67.06666564941406", + "elevation_ft": "213", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40407", + "ident": "VE-0058", + "type": "small_airport", + "name": "El Cedral Airport", + "latitude_deg": "7.431666851043701", + "longitude_deg": "-69.32666778564453", + "elevation_ft": "285", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "Apure", + "scheduled_service": "no" + }, + { + "id": "40408", + "ident": "VE-0059", + "type": "small_airport", + "name": "El Diamante Airport", + "latitude_deg": "6.434721946716309", + "longitude_deg": "-65.81888580322266", + "elevation_ft": "948", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40409", + "ident": "VE-0060", + "type": "heliport", + "name": "El Encantado Heliport", + "latitude_deg": "10.45199966430664", + "longitude_deg": "-66.7947998046875", + "elevation_ft": "328", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-M", + "municipality": "El Encantado", + "scheduled_service": "no" + }, + { + "id": "40410", + "ident": "VE-0061", + "type": "small_airport", + "name": "El Millanero Airport", + "latitude_deg": "8.316666603088379", + "longitude_deg": "-67.11166381835938", + "elevation_ft": "192", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no" + }, + { + "id": "40411", + "ident": "VE-0062", + "type": "small_airport", + "name": "El Samán de Barinas Airport", + "latitude_deg": "8.543333053588867", + "longitude_deg": "-70.16666412353516", + "elevation_ft": "510", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no" + }, + { + "id": "40412", + "ident": "VE-0063", + "type": "small_airport", + "name": "El Samán de Guárico Airport", + "latitude_deg": "8.824999809265137", + "longitude_deg": "-67.0183334350586", + "elevation_ft": "334", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no" + }, + { + "id": "40413", + "ident": "VE-0064", + "type": "heliport", + "name": "Ensco III Heliport", + "latitude_deg": "10.046667098999023", + "longitude_deg": "-71.586669921875", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no" + }, + { + "id": "40414", + "ident": "VE-0065", + "type": "heliport", + "name": "Ensco IV Heliport", + "latitude_deg": "9.585832595825195", + "longitude_deg": "-71.4669418334961", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no" + }, + { + "id": "40415", + "ident": "VE-0066", + "type": "heliport", + "name": "Ensco VI Heliport", + "latitude_deg": "9.598210334777832", + "longitude_deg": "-66.1355972290039", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no" + }, + { + "id": "40416", + "ident": "VE-0067", + "type": "small_airport", + "name": "Entrerios Airport", + "latitude_deg": "5.9583330154418945", + "longitude_deg": "-64.43333435058594", + "elevation_ft": "921", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40417", + "ident": "VE-0068", + "type": "small_airport", + "name": "Erebastina Airport", + "latitude_deg": "5.133333206176758", + "longitude_deg": "-64.8499984741211", + "elevation_ft": "1250", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40418", + "ident": "VE-0069", + "type": "heliport", + "name": "Evhelca Heliport", + "latitude_deg": "10.471667289733887", + "longitude_deg": "-64.19000244140625", + "elevation_ft": "35", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-R", + "municipality": "Cumaná", + "scheduled_service": "no" + }, + { + "id": "40419", + "ident": "VE-0070", + "type": "heliport", + "name": "Florida Heliport", + "latitude_deg": "10.483332633972168", + "longitude_deg": "-66.75", + "elevation_ft": "3154", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-M", + "scheduled_service": "no" + }, + { + "id": "40420", + "ident": "VE-0071", + "type": "heliport", + "name": "Florida Hill Heliport", + "latitude_deg": "10.475099563598633", + "longitude_deg": "-66.7698974609375", + "elevation_ft": "3500", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-M", + "scheduled_service": "no" + }, + { + "id": "40421", + "ident": "VE-0072", + "type": "heliport", + "name": "Fumyteca Heliport", + "latitude_deg": "10.158332824707031", + "longitude_deg": "-68.9316635131836", + "elevation_ft": "787", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-U", + "scheduled_service": "no" + }, + { + "id": "40422", + "ident": "VE-0073", + "type": "heliport", + "name": "Galáctica Heliport", + "latitude_deg": "10.479999542236328", + "longitude_deg": "-66.64833068847656", + "elevation_ft": "1345", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-M", + "municipality": "El Cercado", + "scheduled_service": "no" + }, + { + "id": "40423", + "ident": "VE-0074", + "type": "heliport", + "name": "Gaston Heliport", + "latitude_deg": "10.399999618530273", + "longitude_deg": "-67.00833129882812", + "elevation_ft": "3500", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-M", + "scheduled_service": "no" + }, + { + "id": "40424", + "ident": "VE-0075", + "type": "small_airport", + "name": "Guanarito Airport", + "latitude_deg": "8.673333168029785", + "longitude_deg": "-69.18499755859375", + "elevation_ft": "304", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "scheduled_service": "no" + }, + { + "id": "40425", + "ident": "VE-0076", + "type": "small_airport", + "name": "Guanay Airport", + "latitude_deg": "5.682809829711914", + "longitude_deg": "-66.35800170898438", + "elevation_ft": "501", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40426", + "ident": "VE-0077", + "type": "small_airport", + "name": "Guaviarito Airport", + "latitude_deg": "5.633333206176758", + "longitude_deg": "-66.21666717529297", + "elevation_ft": "1140", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40427", + "ident": "VE-0078", + "type": "heliport", + "name": "Guiniquina Heliport", + "latitude_deg": "9.191944122314453", + "longitude_deg": "-61.09138870239258", + "elevation_ft": "53", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Y", + "scheduled_service": "no" + }, + { + "id": "40428", + "ident": "VE-0079", + "type": "small_airport", + "name": "Hacienda Bella Vista Airport", + "latitude_deg": "8.050000190734863", + "longitude_deg": "-69.8499984741211", + "elevation_ft": "266", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no" + }, + { + "id": "40429", + "ident": "VE-0080", + "type": "small_airport", + "name": "Hacienda El Oasis Airport", + "latitude_deg": "8.376270294189453", + "longitude_deg": "-69.97840118408203", + "elevation_ft": "356", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "municipality": "La Palmita", + "scheduled_service": "no" + }, + { + "id": "40430", + "ident": "VE-0081", + "type": "small_airport", + "name": "Hato Aguaro Airport", + "latitude_deg": "8.116666793823242", + "longitude_deg": "-66.58333587646484", + "elevation_ft": "159", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no" + }, + { + "id": "40431", + "ident": "VE-0082", + "type": "small_airport", + "name": "Hato El Cujicito Airport", + "latitude_deg": "8.966667175292969", + "longitude_deg": "-67.80000305175781", + "elevation_ft": "245", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no" + }, + { + "id": "40432", + "ident": "VE-0083", + "type": "small_airport", + "name": "Hato El Gallo de Oro Airport", + "latitude_deg": "8.84000015258789", + "longitude_deg": "-63.60166549682617", + "elevation_ft": "565", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "scheduled_service": "no" + }, + { + "id": "40433", + "ident": "VE-0084", + "type": "small_airport", + "name": "Hato El Samán Airport", + "latitude_deg": "8.805000305175781", + "longitude_deg": "-67.13166809082031", + "elevation_ft": "325", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no" + }, + { + "id": "40434", + "ident": "VE-0085", + "type": "small_airport", + "name": "Hato El Socorro Airport", + "latitude_deg": "8.991666793823242", + "longitude_deg": "-68.2249984741211", + "elevation_ft": "388", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-H", + "municipality": "El Socorro", + "scheduled_service": "no" + }, + { + "id": "40435", + "ident": "VE-0086", + "type": "small_airport", + "name": "Hato Guaribe Airport", + "latitude_deg": "9.838333129882812", + "longitude_deg": "-63.573333740234375", + "elevation_ft": "727", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "scheduled_service": "no" + }, + { + "id": "40436", + "ident": "VE-0087", + "type": "small_airport", + "name": "Hato Los Pozos Airport", + "latitude_deg": "9.635000228881836", + "longitude_deg": "-65.80332946777344", + "elevation_ft": "665", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no" + }, + { + "id": "40437", + "ident": "VE-0088", + "type": "small_airport", + "name": "Hato Rancho Novillero Airport", + "latitude_deg": "8.78499984741211", + "longitude_deg": "-63.73833465576172", + "elevation_ft": "631", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "scheduled_service": "no" + }, + { + "id": "40438", + "ident": "VE-0089", + "type": "small_airport", + "name": "Hato San Antonio Airport", + "latitude_deg": "9.050000190734863", + "longitude_deg": "-67.6500015258789", + "elevation_ft": "294", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no" + }, + { + "id": "40439", + "ident": "VE-0090", + "type": "small_airport", + "name": "Hato San Francisco Airport", + "latitude_deg": "7.668333053588867", + "longitude_deg": "-69.32499694824219", + "elevation_ft": "623", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no" + }, + { + "id": "40440", + "ident": "VE-0091", + "type": "small_airport", + "name": "Hato San Leonardo Airport", + "latitude_deg": "6.989999771118164", + "longitude_deg": "-68.26166534423828", + "elevation_ft": "511", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no" + }, + { + "id": "40441", + "ident": "VE-0092", + "type": "small_airport", + "name": "Hato Servio Tulio Airport", + "latitude_deg": "8.704999923706055", + "longitude_deg": "-64.62000274658203", + "elevation_ft": "520", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "municipality": "Las Matas", + "scheduled_service": "no" + }, + { + "id": "40442", + "ident": "VE-0093", + "type": "small_airport", + "name": "Hato Yavi Airport", + "latitude_deg": "5.589670181274414", + "longitude_deg": "-65.86070251464844", + "elevation_ft": "415", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40443", + "ident": "VE-0094", + "type": "heliport", + "name": "Heliyasa Heliport", + "latitude_deg": "10.116666793823242", + "longitude_deg": "-69.08333587646484", + "elevation_ft": "1017", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-U", + "municipality": "La Piedra", + "scheduled_service": "no" + }, + { + "id": "40444", + "ident": "VE-0095", + "type": "heliport", + "name": "Isla de Tigre Heliport", + "latitude_deg": "9.569999694824219", + "longitude_deg": "-62.43669891357422", + "elevation_ft": "20", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Y", + "municipality": "Isla de Tigre", + "scheduled_service": "no", + "iata_code": "ELX" + }, + { + "id": "40445", + "ident": "VE-0096", + "type": "small_airport", + "name": "Isla Ratón Airport", + "latitude_deg": "5.050278186798096", + "longitude_deg": "-67.81722259521484", + "elevation_ft": "302", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40446", + "ident": "VE-0097", + "type": "heliport", + "name": "Jose Heliport", + "latitude_deg": "10.069899559020996", + "longitude_deg": "-64.8678970336914", + "elevation_ft": "40", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "municipality": "El José", + "scheduled_service": "no" + }, + { + "id": "40447", + "ident": "VE-0098", + "type": "small_airport", + "name": "Juan Mateo Airport", + "latitude_deg": "7.431666851043701", + "longitude_deg": "-68.13666534423828", + "elevation_ft": "192", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "Juan Mateo", + "scheduled_service": "no" + }, + { + "id": "40448", + "ident": "VE-0099", + "type": "small_airport", + "name": "Junglaven Airport", + "latitude_deg": "5.050000190734863", + "longitude_deg": "-66.23332977294922", + "elevation_ft": "404", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40449", + "ident": "VE-0100", + "type": "small_airport", + "name": "Kanarakuni Norte Airport", + "latitude_deg": "4.433332920074463", + "longitude_deg": "-64.13333129882812", + "elevation_ft": "1374", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40450", + "ident": "VE-0101", + "type": "small_airport", + "name": "Kanarakuni Sur Airport", + "latitude_deg": "4.4166669845581055", + "longitude_deg": "-64.11666870117188", + "elevation_ft": "1503", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40451", + "ident": "VE-0102", + "type": "small_airport", + "name": "Kanaripo Airport", + "latitude_deg": "4.066667079925537", + "longitude_deg": "-66.94999694824219", + "elevation_ft": "302", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40452", + "ident": "VE-0103", + "type": "small_airport", + "name": "Kavac Airport", + "latitude_deg": "5.71196", + "longitude_deg": "-62.409559", + "elevation_ft": "1600", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40453", + "ident": "VE-0104", + "type": "small_airport", + "name": "La Bendición Ramera Airport", + "latitude_deg": "7.483333110809326", + "longitude_deg": "-68.9000015258789", + "elevation_ft": "236", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no" + }, + { + "id": "40454", + "ident": "VE-0105", + "type": "small_airport", + "name": "La Cantara Airport", + "latitude_deg": "8.716667175292969", + "longitude_deg": "-69.24166870117188", + "elevation_ft": "297", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "scheduled_service": "no" + }, + { + "id": "40455", + "ident": "VE-0106", + "type": "heliport", + "name": "La Concepción Heliport", + "latitude_deg": "10.618332862854004", + "longitude_deg": "-71.8183364868164", + "elevation_ft": "259", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "municipality": "La Concepción", + "scheduled_service": "no" + }, + { + "id": "40456", + "ident": "VE-0107", + "type": "small_airport", + "name": "Aeropuerto La Esmeralda", + "latitude_deg": "3.166667", + "longitude_deg": "-65.533333", + "elevation_ft": "375", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "municipality": "La Esmeralda", + "scheduled_service": "no", + "gps_code": "SVLE" + }, + { + "id": "40457", + "ident": "VE-0108", + "type": "heliport", + "name": "La Ladera Heliport", + "latitude_deg": "9.290833473205566", + "longitude_deg": "-62.288333892822266", + "elevation_ft": "17", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Y", + "scheduled_service": "no" + }, + { + "id": "40458", + "ident": "VE-0109", + "type": "small_airport", + "name": "La Tortuga Punta Arena Airport", + "latitude_deg": "10.9266996383667", + "longitude_deg": "-65.40889739990234", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-O", + "municipality": "Isla La Tortuga", + "scheduled_service": "no" + }, + { + "id": "40459", + "ident": "VE-0110", + "type": "small_airport", + "name": "La Trinidad De Amazonas Airport", + "latitude_deg": "5.099999904632568", + "longitude_deg": "-65.93333435058594", + "elevation_ft": "441", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40460", + "ident": "VE-0111", + "type": "small_airport", + "name": "La Yegua Airport", + "latitude_deg": "8.731666564941406", + "longitude_deg": "-68.47000122070312", + "elevation_ft": "213", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-H", + "scheduled_service": "no" + }, + { + "id": "40461", + "ident": "VE-0112", + "type": "heliport", + "name": "Lago Guanoco Heliport", + "latitude_deg": "10.199999809265137", + "longitude_deg": "-62.866668701171875", + "elevation_ft": "9", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-R", + "municipality": "Guariquén", + "scheduled_service": "no" + }, + { + "id": "40462", + "ident": "VE-0113", + "type": "heliport", + "name": "Lagunillas Heliport", + "latitude_deg": "10.133333206176758", + "longitude_deg": "-71.25", + "elevation_ft": "2469", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "municipality": "Lagunillas", + "scheduled_service": "no" + }, + { + "id": "40463", + "ident": "VE-0114", + "type": "small_airport", + "name": "Lagunillas Airport", + "latitude_deg": "10.12399959564209", + "longitude_deg": "-71.23799896240234", + "elevation_ft": "2469", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "municipality": "Lagunillas", + "scheduled_service": "no", + "iata_code": "LGY" + }, + { + "id": "40464", + "ident": "VE-0115", + "type": "heliport", + "name": "Lamargas Heliport", + "latitude_deg": "9.65999984741211", + "longitude_deg": "-71.6449966430664", + "elevation_ft": "46", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no" + }, + { + "id": "40465", + "ident": "VE-0116", + "type": "small_airport", + "name": "Las Carmelitas de Apure Airport", + "latitude_deg": "7.211667060852051", + "longitude_deg": "-69.8499984741211", + "elevation_ft": "426", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no" + }, + { + "id": "40466", + "ident": "VE-0117", + "type": "small_airport", + "name": "Las Mercedes Capanaparo Airport", + "latitude_deg": "6.953951", + "longitude_deg": "-67.241082", + "elevation_ft": "160", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "municipality": "La Villeguera", + "scheduled_service": "no" + }, + { + "id": "40467", + "ident": "VE-0118", + "type": "heliport", + "name": "Loma Azul Heliport", + "latitude_deg": "10.5916671753", + "longitude_deg": "-67.063331604", + "elevation_ft": "181", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-X", + "municipality": "Mamo", + "scheduled_service": "no" + }, + { + "id": "40468", + "ident": "VE-0119", + "type": "small_airport", + "name": "Los Caballos Airport", + "latitude_deg": "9.311667442321777", + "longitude_deg": "-68.163330078125", + "elevation_ft": "290", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-H", + "municipality": "Los Caballos", + "scheduled_service": "no" + }, + { + "id": "40469", + "ident": "VE-0120", + "type": "small_airport", + "name": "Luisa Airport", + "latitude_deg": "9.616666793823242", + "longitude_deg": "-68.4000015258789", + "elevation_ft": "407", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-H", + "scheduled_service": "no" + }, + { + "id": "40470", + "ident": "VE-0121", + "type": "small_airport", + "name": "Macagua Airport", + "latitude_deg": "8.276666641235352", + "longitude_deg": "-62.39833450317383", + "elevation_ft": "1952", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40471", + "ident": "VE-0122", + "type": "small_airport", + "name": "Majagua Airport", + "latitude_deg": "5.466667175292969", + "longitude_deg": "-65.91666412353516", + "elevation_ft": "416", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40472", + "ident": "VE-0123", + "type": "small_airport", + "name": "Majawa Airport", + "latitude_deg": "5.133333206176758", + "longitude_deg": "-65.03333282470703", + "elevation_ft": "1938", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40473", + "ident": "VE-0124", + "type": "small_airport", + "name": "Majawana Airport", + "latitude_deg": "5.233333110809326", + "longitude_deg": "-64.9000015258789", + "elevation_ft": "2042", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40474", + "ident": "VE-0125", + "type": "heliport", + "name": "Mantenimiento Del Via SRL Heliport", + "latitude_deg": "10.6162004471", + "longitude_deg": "-66.8252029419", + "elevation_ft": "10", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-X", + "scheduled_service": "no" + }, + { + "id": "40475", + "ident": "VE-0126", + "type": "small_airport", + "name": "Maraca Airport", + "latitude_deg": "5.966667175292969", + "longitude_deg": "-66.91666412353516", + "elevation_ft": "755", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40476", + "ident": "VE-0127", + "type": "small_airport", + "name": "Marieta Airport", + "latitude_deg": "5.164999961853027", + "longitude_deg": "-66.5250015258789", + "elevation_ft": "392", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40477", + "ident": "VE-0128", + "type": "small_airport", + "name": "Marueta Airport", + "latitude_deg": "4.301667213439941", + "longitude_deg": "-66.29666900634766", + "elevation_ft": "383", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40478", + "ident": "VE-0129", + "type": "small_airport", + "name": "Mata de Bárbara Airport", + "latitude_deg": "8.416666984558105", + "longitude_deg": "-68.44999694824219", + "elevation_ft": "262", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-E", + "scheduled_service": "no" + }, + { + "id": "40479", + "ident": "VE-0130", + "type": "small_airport", + "name": "Mata de Guama Airport", + "latitude_deg": "7.989630222320557", + "longitude_deg": "-69.2782974243164", + "elevation_ft": "256", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no" + }, + { + "id": "40480", + "ident": "VE-0131", + "type": "small_airport", + "name": "Mavaca I Airport", + "latitude_deg": "2.537709951400757", + "longitude_deg": "-65.20279693603516", + "elevation_ft": "532", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40481", + "ident": "VE-0132", + "type": "small_airport", + "name": "Mavaca II Airport", + "latitude_deg": "2.5206899642944336", + "longitude_deg": "-65.1990966796875", + "elevation_ft": "1154", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40482", + "ident": "VE-0133", + "type": "small_airport", + "name": "Mawhishiña Airport", + "latitude_deg": "4.1666669845581055", + "longitude_deg": "-65.19999694824219", + "elevation_ft": "4011", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40483", + "ident": "VE-0134", + "type": "small_airport", + "name": "Mayobateli Airport", + "latitude_deg": "2.733333110809326", + "longitude_deg": "-64.08333587646484", + "elevation_ft": "3500", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40484", + "ident": "VE-0135", + "type": "heliport", + "name": "Melia Caribe Heliport", + "latitude_deg": "10.6153478622", + "longitude_deg": "-66.84023284909999", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-X", + "municipality": "La Guaira", + "scheduled_service": "no" + }, + { + "id": "40485", + "ident": "VE-0136", + "type": "heliport", + "name": "Mene Grande Heliport", + "latitude_deg": "9.716667175292969", + "longitude_deg": "-71.17832946777344", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no" + }, + { + "id": "40486", + "ident": "VE-0137", + "type": "small_airport", + "name": "Menoreño Airport", + "latitude_deg": "7.131667137145996", + "longitude_deg": "-69.23332977294922", + "elevation_ft": "269", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no" + }, + { + "id": "40487", + "ident": "VE-0138", + "type": "small_airport", + "name": "Mikuski Airport", + "latitude_deg": "5.5833330154418945", + "longitude_deg": "-65.94999694824219", + "elevation_ft": "517", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40488", + "ident": "VE-0139", + "type": "small_airport", + "name": "Misión Padamo Airport", + "latitude_deg": "3", + "longitude_deg": "-65.28333282470703", + "elevation_ft": "528", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40489", + "ident": "VE-0140", + "type": "small_airport", + "name": "Moriche Airport", + "latitude_deg": "4.716667175292969", + "longitude_deg": "-66.33333587646484", + "elevation_ft": "381", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40490", + "ident": "VE-0141", + "type": "heliport", + "name": "Motatan II Heliport", + "latitude_deg": "9.62166690826416", + "longitude_deg": "-70.80833435058594", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-T", + "municipality": "Santa Isabel", + "scheduled_service": "no" + }, + { + "id": "40491", + "ident": "VE-0142", + "type": "heliport", + "name": "Muelle B. Uracoa Heliport", + "latitude_deg": "9.12527847290039", + "longitude_deg": "-62.32805633544922", + "elevation_ft": "15", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "scheduled_service": "no" + }, + { + "id": "40492", + "ident": "VE-0143", + "type": "heliport", + "name": "Muelle Seco Heliport", + "latitude_deg": "10.237099647521973", + "longitude_deg": "-64.6343994140625", + "elevation_ft": "145", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "municipality": "Puerto La Cruz", + "scheduled_service": "no" + }, + { + "id": "40493", + "ident": "VE-0144", + "type": "small_airport", + "name": "Ocamo Airport", + "latitude_deg": "2.7895898818969727", + "longitude_deg": "-65.216796875", + "elevation_ft": "415", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40494", + "ident": "VE-0145", + "type": "small_airport", + "name": "Pacicuchero Airport", + "latitude_deg": "6.599999904632568", + "longitude_deg": "-68.43333435058594", + "elevation_ft": "209", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no" + }, + { + "id": "40495", + "ident": "VE-0146", + "type": "small_airport", + "name": "Parima Airport", + "latitude_deg": "2.7833330631256104", + "longitude_deg": "-64.23332977294922", + "elevation_ft": "2850", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40496", + "ident": "VE-0147", + "type": "heliport", + "name": "Parque Central Heliport", + "latitude_deg": "10.50100040435791", + "longitude_deg": "-66.90129852294922", + "elevation_ft": "2869", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-A", + "municipality": "Caracas", + "scheduled_service": "no" + }, + { + "id": "40497", + "ident": "VE-0148", + "type": "small_airport", + "name": "Parupa Airport", + "latitude_deg": "5.4816670417785645", + "longitude_deg": "-63.621665954589844", + "elevation_ft": "1038", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40498", + "ident": "VE-0149", + "type": "heliport", + "name": "Pedeca Heliport", + "latitude_deg": "10.452500343322754", + "longitude_deg": "-66.92350006103516", + "elevation_ft": "2988", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-A", + "municipality": "Caracas", + "scheduled_service": "no" + }, + { + "id": "40499", + "ident": "VE-0150", + "type": "small_airport", + "name": "Pendare Airport", + "latitude_deg": "6.102089881896973", + "longitude_deg": "-67.06849670410156", + "elevation_ft": "193", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40500", + "ident": "VE-0151", + "type": "small_airport", + "name": "Pista Larga Airport", + "latitude_deg": "5.983333110809326", + "longitude_deg": "-66.23332977294922", + "elevation_ft": "1379", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40501", + "ident": "VE-0152", + "type": "heliport", + "name": "Planta de Vapor HH-8 Heliport", + "latitude_deg": "10.116666793823242", + "longitude_deg": "-71.53333282470703", + "elevation_ft": "65", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no" + }, + { + "id": "40502", + "ident": "VE-0153", + "type": "heliport", + "name": "Planta Lagogas I Heliport", + "latitude_deg": "10.125", + "longitude_deg": "-71.53500366210938", + "elevation_ft": "66", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no" + }, + { + "id": "40503", + "ident": "VE-0154", + "type": "heliport", + "name": "Planta Lama Heliport", + "latitude_deg": "9.933500289916992", + "longitude_deg": "-71.6433334350586", + "elevation_ft": "43", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no" + }, + { + "id": "40504", + "ident": "VE-0155", + "type": "heliport", + "name": "Planta Procesos la Paz Heliport", + "latitude_deg": "10.701666831970215", + "longitude_deg": "-71.96700286865234", + "elevation_ft": "86", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "municipality": "La Paz", + "scheduled_service": "no" + }, + { + "id": "40505", + "ident": "VE-0156", + "type": "heliport", + "name": "Planta Procesos Mara Heliport", + "latitude_deg": "10.880000114440918", + "longitude_deg": "-71.88666534423828", + "elevation_ft": "88", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "municipality": "Campo Mara", + "scheduled_service": "no" + }, + { + "id": "40506", + "ident": "VE-0157", + "type": "heliport", + "name": "Planta Sidor Heliport", + "latitude_deg": "5.699260234832764", + "longitude_deg": "-67.59950256347656", + "elevation_ft": "187", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "municipality": "Puerto Ayacucho", + "scheduled_service": "no" + }, + { + "id": "40507", + "ident": "VE-0158", + "type": "heliport", + "name": "Planta Sisor I Heliport", + "latitude_deg": "8.084444046020508", + "longitude_deg": "-63.40194320678711", + "elevation_ft": "403", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40508", + "ident": "VE-0159", + "type": "heliport", + "name": "Planta Sisor II Heliport", + "latitude_deg": "8.239999771118164", + "longitude_deg": "-62.866668701171875", + "elevation_ft": "366", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "municipality": "Puerto Ordaz", + "scheduled_service": "no" + }, + { + "id": "40509", + "ident": "VE-0160", + "type": "heliport", + "name": "Planta Sisor III Heliport", + "latitude_deg": "8.966699600219727", + "longitude_deg": "-64.20249938964844", + "elevation_ft": "243", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "scheduled_service": "no" + }, + { + "id": "40510", + "ident": "VE-0161", + "type": "small_airport", + "name": "Platanal Airport", + "latitude_deg": "2.429229974746704", + "longitude_deg": "-64.90859985351562", + "elevation_ft": "543", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40511", + "ident": "VE-0162", + "type": "heliport", + "name": "Prosomaca Heliport", + "latitude_deg": "9.84000015258789", + "longitude_deg": "-66.38666534423828", + "elevation_ft": "984", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "municipality": "Altagracia de Orituco", + "scheduled_service": "no" + }, + { + "id": "40512", + "ident": "VE-0163", + "type": "heliport", + "name": "Protinal Heliport", + "latitude_deg": "10.18166732788086", + "longitude_deg": "-67.97666931152344", + "elevation_ft": "1487", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-G", + "municipality": "Valencia", + "scheduled_service": "no" + }, + { + "id": "40513", + "ident": "VE-0164", + "type": "heliport", + "name": "Pueblo Nuevo Heliport", + "latitude_deg": "9.942333221435547", + "longitude_deg": "-64.05783081054688", + "elevation_ft": "1871", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "scheduled_service": "no" + }, + { + "id": "40514", + "ident": "VE-0165", + "type": "small_airport", + "name": "Punta de Mata Airport", + "latitude_deg": "9.666666984558105", + "longitude_deg": "-63.650001525878906", + "elevation_ft": "553", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "municipality": "Punta de Mata", + "scheduled_service": "no" + }, + { + "id": "40515", + "ident": "VE-0166", + "type": "heliport", + "name": "Punta de Palma Heliport", + "latitude_deg": "10.4399995803833", + "longitude_deg": "-71.62999725341797", + "elevation_ft": "3", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "municipality": "Palmarejo", + "scheduled_service": "no" + }, + { + "id": "40516", + "ident": "VE-0167", + "type": "heliport", + "name": "Punta Diablito Heliport", + "latitude_deg": "9.440667152404785", + "longitude_deg": "-62.40299987792969", + "elevation_ft": "4", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Y", + "scheduled_service": "no" + }, + { + "id": "40517", + "ident": "VE-0168", + "type": "heliport", + "name": "Quiriquiri Heliport", + "latitude_deg": "9.971667289733887", + "longitude_deg": "-63.2216682434082", + "elevation_ft": "184", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "municipality": "Quiriquiri", + "scheduled_service": "no" + }, + { + "id": "40518", + "ident": "VE-0169", + "type": "small_airport", + "name": "Rancho Pando Airport", + "latitude_deg": "4.800000190734863", + "longitude_deg": "-65.38333129882812", + "elevation_ft": "880", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40519", + "ident": "VE-0170", + "type": "small_airport", + "name": "Raudales de Danta Airport", + "latitude_deg": "5.045000076293945", + "longitude_deg": "-67.55500030517578", + "elevation_ft": "321", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40520", + "ident": "VE-0171", + "type": "heliport", + "name": "Raulera Heliport", + "latitude_deg": "10.032221794128418", + "longitude_deg": "-64.04638671875", + "elevation_ft": "4658", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "scheduled_service": "no" + }, + { + "id": "40521", + "ident": "VE-0172", + "type": "heliport", + "name": "Rigo Heliport", + "latitude_deg": "10.5", + "longitude_deg": "-71.75", + "elevation_ft": "39", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no" + }, + { + "id": "40522", + "ident": "VE-0173", + "type": "small_airport", + "name": "Río Chico (Club Miami)", + "latitude_deg": "10.283332824707031", + "longitude_deg": "-65.80000305175781", + "elevation_ft": "4", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-M", + "municipality": "San José de Río Chico", + "scheduled_service": "no" + }, + { + "id": "40523", + "ident": "VE-0174", + "type": "small_airport", + "name": "Río Hacha Airport", + "latitude_deg": "4.783332824707031", + "longitude_deg": "-65.3499984741211", + "elevation_ft": "874", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40524", + "ident": "VE-0175", + "type": "small_airport", + "name": "San Antonio De Amazonas Airport", + "latitude_deg": "3.5833330154418945", + "longitude_deg": "-66.81666564941406", + "elevation_ft": "738", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40525", + "ident": "VE-0176", + "type": "heliport", + "name": "San Antonio de Maturín Heliport", + "latitude_deg": "10.116666793823242", + "longitude_deg": "-63.71666717529297", + "elevation_ft": "1480", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "municipality": "San Antonio", + "scheduled_service": "no" + }, + { + "id": "40526", + "ident": "VE-0177", + "type": "heliport", + "name": "San Francisco Heliport", + "latitude_deg": "10.542979", + "longitude_deg": "-71.621171", + "elevation_ft": "7", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "municipality": "Maracaibo", + "scheduled_service": "no" + }, + { + "id": "40527", + "ident": "VE-0178", + "type": "small_airport", + "name": "San José de Kayama Airport", + "latitude_deg": "6.318333148956299", + "longitude_deg": "-65.37666320800781", + "elevation_ft": "1118", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40528", + "ident": "VE-0179", + "type": "small_airport", + "name": "San José de Río Cuao Airport", + "latitude_deg": "5.5", + "longitude_deg": "-66.71666717529297", + "elevation_ft": "1647", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40529", + "ident": "VE-0180", + "type": "small_airport", + "name": "San Pedro de Adawaña Airport", + "latitude_deg": "5.361667156219482", + "longitude_deg": "-64.24333190917969", + "elevation_ft": "990", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40530", + "ident": "VE-0181", + "type": "small_airport", + "name": "San Simón de Cocuy Airport", + "latitude_deg": "1.2552000284194946", + "longitude_deg": "-66.82630157470703", + "elevation_ft": "340", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40531", + "ident": "VE-0182", + "type": "small_airport", + "name": "Santa María de Erebato Airport", + "latitude_deg": "4.949999809265137", + "longitude_deg": "-64.80000305175781", + "elevation_ft": "1200", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "40532", + "ident": "VE-0183", + "type": "heliport", + "name": "Servicentro (Electricidad de Caracas) Heliport", + "latitude_deg": "10.48550033569336", + "longitude_deg": "-66.85199737548828", + "elevation_ft": "2900", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-A", + "municipality": "Caracas", + "scheduled_service": "no" + }, + { + "id": "40533", + "ident": "VE-0184", + "type": "small_airport", + "name": "Simaraboshe Airport", + "latitude_deg": "3.816667079925537", + "longitude_deg": "-64.5999984741211", + "elevation_ft": "2570", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "338086", + "ident": "VE-0185", + "type": "small_airport", + "name": "La Sabanita Airstrip", + "latitude_deg": "6.258333", + "longitude_deg": "-67.11", + "elevation_ft": "245", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "municipality": "La Sabanita", + "scheduled_service": "no" + }, + { + "id": "40535", + "ident": "VE-0186", + "type": "small_airport", + "name": "Tavi Tavi Airport", + "latitude_deg": "4.650000095367432", + "longitude_deg": "-66.30000305175781", + "elevation_ft": "377", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40536", + "ident": "VE-0187", + "type": "heliport", + "name": "Temblador Heliport", + "latitude_deg": "9.033332824707031", + "longitude_deg": "-62.53333282470703", + "elevation_ft": "150", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "municipality": "Temblador", + "scheduled_service": "no" + }, + { + "id": "40537", + "ident": "VE-0188", + "type": "small_airport", + "name": "Tencuk Airport", + "latitude_deg": "5.033332824707031", + "longitude_deg": "-65.51667022705078", + "elevation_ft": "811", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40538", + "ident": "VE-0189", + "type": "small_airport", + "name": "Tenqua Airport", + "latitude_deg": "5.033332824707031", + "longitude_deg": "-65.63333129882812", + "elevation_ft": "548", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40539", + "ident": "VE-0190", + "type": "small_airport", + "name": "Tinaquillo A Airport", + "latitude_deg": "9.933333396911621", + "longitude_deg": "-69.66666412353516", + "elevation_ft": "1476", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-K", + "municipality": "Quibor", + "scheduled_service": "no" + }, + { + "id": "40540", + "ident": "VE-0191", + "type": "small_airport", + "name": "Toky Airport", + "latitude_deg": "3.1666669845581055", + "longitude_deg": "-65.16666412353516", + "elevation_ft": "585", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40541", + "ident": "VE-0192", + "type": "small_airport", + "name": "Trial Airport", + "latitude_deg": "8.108332633972168", + "longitude_deg": "-66.43333435058594", + "elevation_ft": "163", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-J", + "scheduled_service": "no" + }, + { + "id": "40542", + "ident": "VE-0193", + "type": "heliport", + "name": "Unigas I Heliport", + "latitude_deg": "9.766667366027832", + "longitude_deg": "-71.20166778564453", + "elevation_ft": "98", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no" + }, + { + "id": "40543", + "ident": "VE-0194", + "type": "heliport", + "name": "Uracoa Heliport", + "latitude_deg": "9.016667366027832", + "longitude_deg": "-62.375", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "scheduled_service": "no" + }, + { + "id": "40544", + "ident": "VE-0195", + "type": "small_airport", + "name": "Urica Airport", + "latitude_deg": "9.699999809265137", + "longitude_deg": "-64.03333282470703", + "elevation_ft": "981", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-B", + "municipality": "Urica", + "scheduled_service": "no" + }, + { + "id": "40545", + "ident": "VE-0196", + "type": "heliport", + "name": "Vencerámica La Victoria Heliport", + "latitude_deg": "10.233332633972168", + "longitude_deg": "-67.44999694824219", + "elevation_ft": "5249", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-D", + "municipality": "La Victoria", + "scheduled_service": "no" + }, + { + "id": "40546", + "ident": "VE-0197", + "type": "heliport", + "name": "Vencerámica Tejerías Heliport", + "latitude_deg": "10.25", + "longitude_deg": "-67.16666412353516", + "elevation_ft": "5269", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-D", + "scheduled_service": "no" + }, + { + "id": "40547", + "ident": "VE-0198", + "type": "small_airport", + "name": "Wanana Airport", + "latitude_deg": "4.3333330154418945", + "longitude_deg": "-65.25", + "elevation_ft": "3473", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40548", + "ident": "VE-0199", + "type": "small_airport", + "name": "Wasara Airport", + "latitude_deg": "4.739109992980957", + "longitude_deg": "-65.21530151367188", + "elevation_ft": "930", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40549", + "ident": "VE-0200", + "type": "small_airport", + "name": "Washina Airport", + "latitude_deg": "3.4666669368743896", + "longitude_deg": "-65.33333587646484", + "elevation_ft": "595", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40550", + "ident": "VE-0201", + "type": "heliport", + "name": "Wousa Heliport", + "latitude_deg": "8.184832572937012", + "longitude_deg": "-60.01716613769531", + "elevation_ft": "64", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Y", + "scheduled_service": "no" + }, + { + "id": "40551", + "ident": "VE-0202", + "type": "small_airport", + "name": "Yajanamateli Airport", + "latitude_deg": "3.6166670322418213", + "longitude_deg": "-65.19999694824219", + "elevation_ft": "757", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "scheduled_service": "no" + }, + { + "id": "40552", + "ident": "VE-0203", + "type": "heliport", + "name": "Yocucual Heliport", + "latitude_deg": "10.156999588012695", + "longitude_deg": "-63.419166564941406", + "elevation_ft": "3614", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "municipality": "Colorado", + "scheduled_service": "no" + }, + { + "id": "338087", + "ident": "VE-0204", + "type": "small_airport", + "name": "La Mangas Airstrip", + "latitude_deg": "6.290535", + "longitude_deg": "-67.175323", + "elevation_ft": "153", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "41598", + "ident": "VE-0205", + "type": "small_airport", + "name": "Kamarata Airport", + "latitude_deg": "5.7171", + "longitude_deg": "-62.33727", + "elevation_ft": "1770", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "municipality": "Kamarata", + "scheduled_service": "no", + "gps_code": "SVKM", + "iata_code": "KTV" + }, + { + "id": "41599", + "ident": "VE-0206", + "type": "small_airport", + "name": "La Guaira Airport", + "latitude_deg": "10.5333299637", + "longitude_deg": "-67.0333328247", + "elevation_ft": "2569", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-X", + "municipality": "La Guaira", + "scheduled_service": "no", + "iata_code": "LAG" + }, + { + "id": "41600", + "ident": "VE-0207", + "type": "small_airport", + "name": "Macagua Airport", + "latitude_deg": "8.2788", + "longitude_deg": "-62.6652", + "elevation_ft": "231", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "municipality": "Ciudad Guayana", + "scheduled_service": "no", + "gps_code": "SVMU", + "iata_code": "SFX", + "keywords": "San Felix Airport" + }, + { + "id": "41601", + "ident": "VE-0208", + "type": "small_airport", + "name": "San Salvador de Paul Airport", + "latitude_deg": "7", + "longitude_deg": "-62", + "elevation_ft": "576", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "municipality": "San Salvador de Paul", + "scheduled_service": "no", + "iata_code": "SVV" + }, + { + "id": "41602", + "ident": "VE-0209", + "type": "small_airport", + "name": "Wonken Airport", + "latitude_deg": "5.25", + "longitude_deg": "-61.733333587646484", + "elevation_ft": "3250", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "municipality": "Wonken", + "scheduled_service": "no", + "iata_code": "WOK" + }, + { + "id": "6253", + "ident": "VE-0210", + "type": "small_airport", + "name": "La Culata Airport", + "latitude_deg": "9.284347", + "longitude_deg": "-68.391008", + "elevation_ft": "295", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-H", + "scheduled_service": "no", + "gps_code": "SVKZ" + }, + { + "id": "307219", + "ident": "VE-0211", + "type": "small_airport", + "name": "Tama Tama Field", + "latitude_deg": "3.14861111111", + "longitude_deg": "-65.8611111111", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-Z", + "municipality": "Predra Lais", + "scheduled_service": "no" + }, + { + "id": "341702", + "ident": "VE-0212", + "type": "heliport", + "name": "Apartaderos Heliport", + "latitude_deg": "9.687776", + "longitude_deg": "-68.952097", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "municipality": "Apartaderos", + "scheduled_service": "no" + }, + { + "id": "341703", + "ident": "VE-0213", + "type": "heliport", + "name": "JM Casal Ramos Hospital Helipad", + "latitude_deg": "9.558571", + "longitude_deg": "-69.218464", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-P", + "municipality": "Acarigua", + "scheduled_service": "no" + }, + { + "id": "341794", + "ident": "VE-0214", + "type": "small_airport", + "name": "Aerofumigaciones Campo Alegre Airstrip", + "latitude_deg": "9.453367", + "longitude_deg": "-68.677618", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-H", + "municipality": "Campo Alegre", + "scheduled_service": "no" + }, + { + "id": "342234", + "ident": "VE-0215", + "type": "small_airport", + "name": "Uruyen Airstrip", + "latitude_deg": "5.681915", + "longitude_deg": "-62.409442", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-F", + "scheduled_service": "no" + }, + { + "id": "342235", + "ident": "VE-0216", + "type": "small_airport", + "name": "Hato el Gallo Airstrip", + "latitude_deg": "9.429", + "longitude_deg": "-63.3372", + "elevation_ft": "318", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-N", + "municipality": "Maturín", + "scheduled_service": "no" + }, + { + "id": "348509", + "ident": "VE-0217", + "type": "small_airport", + "name": "Castilletes Airport", + "latitude_deg": "11.82596", + "longitude_deg": "-71.34955", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "municipality": "Castilletes", + "scheduled_service": "no" + }, + { + "id": "40182", + "ident": "VE-0218", + "type": "closed", + "name": "El Lucero del Zulia Airport", + "latitude_deg": "10.45", + "longitude_deg": "-71.366669", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "VE", + "iso_region": "VE-V", + "municipality": "El Luchero", + "scheduled_service": "no", + "keywords": "SVFZ" + }, + { + "id": "6260", + "ident": "VE-0219", + "type": "closed", + "name": "Bachaquero Airport", + "latitude_deg": "10.0015", + "longitude_deg": "-71.083702", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "VE", + "iso_region": "VE-V", + "scheduled_service": "no", + "keywords": "SVBQ" + }, + { + "id": "40258", + "ident": "VE-0220", + "type": "closed", + "name": "El Piñal Airport", + "latitude_deg": "7.366667", + "longitude_deg": "-68.683334", + "elevation_ft": "268", + "continent": "NA", + "iso_country": "VE", + "iso_region": "VE-C", + "scheduled_service": "no", + "keywords": "SVPX" + }, + { + "id": "430360", + "ident": "VE-0221", + "type": "closed", + "name": "Grano de Oro International Airport", + "latitude_deg": "10.675116", + "longitude_deg": "-71.639099", + "elevation_ft": "235", + "continent": "SA", + "iso_country": "VE", + "iso_region": "VE-V", + "municipality": "Maracaibo", + "scheduled_service": "no", + "wikipedia_link": "https://es.wikipedia.org/wiki/Aeropuerto_Grano_de_Oro" + }, + { + "id": "3307", + "ident": "VE23", + "type": "small_airport", + "name": "Burnpur Airport", + "latitude_deg": "23.631500244140625", + "longitude_deg": "86.97550201416016", + "elevation_ft": "310", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "scheduled_service": "no", + "gps_code": "VE23", + "local_code": "VE23" + }, + { + "id": "3308", + "ident": "VE24", + "type": "small_airport", + "name": "Sookerating (Doomdooma) Airport", + "latitude_deg": "27.5529", + "longitude_deg": "95.570602", + "elevation_ft": "400", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AS", + "municipality": "Sokriting T.E.", + "scheduled_service": "no", + "gps_code": "VE24", + "local_code": "VE24" + }, + { + "id": "3310", + "ident": "VE36", + "type": "small_airport", + "name": "Nuagaon Airport", + "latitude_deg": "20.511699676513672", + "longitude_deg": "83.4480972290039", + "elevation_ft": "656", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "scheduled_service": "no", + "gps_code": "VE36", + "local_code": "VE36" + }, + { + "id": "3311", + "ident": "VE41", + "type": "small_airport", + "name": "Giridih Airport", + "latitude_deg": "24.201900482177734", + "longitude_deg": "86.28980255126953", + "elevation_ft": "1000", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-BR", + "scheduled_service": "no", + "gps_code": "VE41", + "local_code": "VE41" + }, + { + "id": "3312", + "ident": "VE44", + "type": "medium_airport", + "name": "Hashimara Air Force Station", + "latitude_deg": "26.698299407958984", + "longitude_deg": "89.36910247802734", + "elevation_ft": "340", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "municipality": "Jalpaiguri", + "scheduled_service": "no", + "gps_code": "VE44", + "local_code": "VE44" + }, + { + "id": "3315", + "ident": "VE54", + "type": "small_airport", + "name": "Daltonganj Airport", + "latitude_deg": "24.01930046081543", + "longitude_deg": "84.09510040283203", + "elevation_ft": "803", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-BR", + "scheduled_service": "no", + "gps_code": "VE54", + "local_code": "VE54" + }, + { + "id": "3316", + "ident": "VE62", + "type": "small_airport", + "name": "Cuttack Airport", + "latitude_deg": "20.549601", + "longitude_deg": "85.886299", + "elevation_ft": "115", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Bandalo", + "scheduled_service": "no", + "gps_code": "VE62", + "local_code": "VE62" + }, + { + "id": "3317", + "ident": "VE67", + "type": "small_airport", + "name": "Mechuka Advanced Landing Ground", + "latitude_deg": "28.602458", + "longitude_deg": "94.126139", + "elevation_ft": "7900", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Kargong", + "scheduled_service": "no", + "gps_code": "VE67", + "local_code": "VE67" + }, + { + "id": "3318", + "ident": "VE85", + "type": "small_airport", + "name": "Bentayan Airport", + "latitude_deg": "23.09510040283203", + "longitude_deg": "75.88529968261719", + "elevation_ft": "1666", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "municipality": "Ujjain", + "scheduled_service": "no", + "keywords": "VE85" + }, + { + "id": "3319", + "ident": "VE89", + "type": "small_airport", + "name": "Darbhanga Airport", + "latitude_deg": "26.192801", + "longitude_deg": "85.916901", + "elevation_ft": "156", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-BR", + "municipality": "Darbhanga", + "scheduled_service": "yes", + "gps_code": "VE89", + "iata_code": "DBR", + "local_code": "VE89", + "wikipedia_link": "https://en.wikipedia.org/wiki/Darbhanga_Airport" + }, + { + "id": "3320", + "ident": "VE91", + "type": "small_airport", + "name": "Vijaynagar Advanced Landing Ground", + "latitude_deg": "27.1935997009", + "longitude_deg": "97.00370025630001", + "elevation_ft": "4167", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "scheduled_service": "no", + "gps_code": "VE91", + "local_code": "VE91" + }, + { + "id": "3321", + "ident": "VE96", + "type": "small_airport", + "name": "Thuniabhand Airport", + "latitude_deg": "22.00160026550293", + "longitude_deg": "78.91719818115234", + "elevation_ft": "2182", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "scheduled_service": "no", + "gps_code": "VE96", + "local_code": "VE96" + }, + { + "id": "26488", + "ident": "VEAN", + "type": "medium_airport", + "name": "Along Airport", + "latitude_deg": "28.17530059814453", + "longitude_deg": "94.802001953125", + "elevation_ft": "900", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "scheduled_service": "no", + "gps_code": "VEAN", + "iata_code": "IXV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Along_Airport" + }, + { + "id": "26489", + "ident": "VEAT", + "type": "medium_airport", + "name": "Agartala - Maharaja Bir Bikram Airport", + "latitude_deg": "23.886999", + "longitude_deg": "91.240402", + "elevation_ft": "46", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TR", + "municipality": "Agartala", + "scheduled_service": "yes", + "gps_code": "VEAT", + "iata_code": "IXA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Agartala_Airport", + "keywords": "Singerbhil Airport, Agartala Air Force Station" + }, + { + "id": "26490", + "ident": "VEAZ", + "type": "small_airport", + "name": "Tuirial Airfield", + "latitude_deg": "23.746214", + "longitude_deg": "92.802846", + "elevation_ft": "1093", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MZ", + "municipality": "Aizawl", + "scheduled_service": "no", + "gps_code": "VEAZ" + }, + { + "id": "29689", + "ident": "VEBA", + "type": "small_airport", + "name": "Behala Airport", + "latitude_deg": "22.504230499267578", + "longitude_deg": "88.29342651367188", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "municipality": "Behala", + "scheduled_service": "no", + "gps_code": "VEBA", + "keywords": "Parnasree" + }, + { + "id": "26491", + "ident": "VEBD", + "type": "medium_airport", + "name": "Bagdogra Airport", + "latitude_deg": "26.68120002746582", + "longitude_deg": "88.32859802246094", + "elevation_ft": "412", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "municipality": "Siliguri", + "scheduled_service": "yes", + "gps_code": "VEBD", + "iata_code": "IXB", + "home_link": "http://aai.aero/allAirports/bagdogra_generalinfo.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bagdogra_Airport", + "keywords": "Bagdogra Air Force Station" + }, + { + "id": "32206", + "ident": "VEBG", + "type": "small_airport", + "name": "Balurghat Airport", + "latitude_deg": "25.261699676513672", + "longitude_deg": "88.79560089111328", + "elevation_ft": "78", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "municipality": "Balurghat", + "scheduled_service": "no", + "gps_code": "VEBG", + "iata_code": "RGH" + }, + { + "id": "26492", + "ident": "VEBI", + "type": "medium_airport", + "name": "Shillong Airport", + "latitude_deg": "25.70359992980957", + "longitude_deg": "91.97869873046875", + "elevation_ft": "2910", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-ML", + "municipality": "Shillong", + "scheduled_service": "yes", + "gps_code": "VEBI", + "iata_code": "SHL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shillong_Airport", + "keywords": "Barapani Airport, Barapani Air Force Station, Umroi Airport" + }, + { + "id": "26493", + "ident": "VEBK", + "type": "small_airport", + "name": "Bokaro Airport", + "latitude_deg": "23.64349937438965", + "longitude_deg": "86.1489028930664", + "elevation_ft": "715", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-BR", + "scheduled_service": "no", + "gps_code": "VEBK" + }, + { + "id": "340009", + "ident": "VEBM", + "type": "small_airport", + "name": "Berhampur Airport", + "latitude_deg": "19.2975", + "longitude_deg": "84.876944", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Berhampur (Brahmapur)", + "scheduled_service": "no", + "gps_code": "VEBM" + }, + { + "id": "26494", + "ident": "VEBS", + "type": "medium_airport", + "name": "Biju Patnaik Airport", + "latitude_deg": "20.244400024399997", + "longitude_deg": "85.8178024292", + "elevation_ft": "138", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Bhubaneswar", + "scheduled_service": "yes", + "gps_code": "VEBS", + "iata_code": "BBI", + "home_link": "http://aai.aero/allAirports/bhubaneshwar_generalinfo.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Biju_Patnaik_Airport" + }, + { + "id": "26495", + "ident": "VECA", + "type": "small_airport", + "name": "Chabua Air Force Station", + "latitude_deg": "27.4622", + "longitude_deg": "95.117699", + "elevation_ft": "367", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AS", + "municipality": "Chabua", + "scheduled_service": "no", + "gps_code": "VECA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chabua_Air_Force_Station" + }, + { + "id": "26496", + "ident": "VECC", + "type": "large_airport", + "name": "Netaji Subhash Chandra Bose International Airport", + "latitude_deg": "22.654699325561523", + "longitude_deg": "88.44670104980469", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "municipality": "Kolkata", + "scheduled_service": "yes", + "gps_code": "VECC", + "iata_code": "CCU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Netaji_Subhash_Chandra_Bose_International_Airport", + "keywords": "Calcutta, Kolkatta, Dum Dum Air Force Station" + }, + { + "id": "29775", + "ident": "VECK", + "type": "small_airport", + "name": "Chakulia Airport", + "latitude_deg": "22.460599899291992", + "longitude_deg": "86.70780181884766", + "elevation_ft": "430", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-JH", + "scheduled_service": "no", + "gps_code": "VECK" + }, + { + "id": "26497", + "ident": "VECO", + "type": "small_airport", + "name": "Cooch Behar Airport", + "latitude_deg": "26.3305", + "longitude_deg": "89.467201", + "elevation_ft": "138", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "municipality": "Cooch Behar", + "scheduled_service": "no", + "gps_code": "VECO", + "iata_code": "COH" + }, + { + "id": "26498", + "ident": "VEDB", + "type": "medium_airport", + "name": "Dhanbad Airport", + "latitude_deg": "23.833999633789062", + "longitude_deg": "86.42530059814453", + "elevation_ft": "847", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-BR", + "scheduled_service": "no", + "gps_code": "VEDB", + "iata_code": "DBD" + }, + { + "id": "317982", + "ident": "VEDG", + "type": "medium_airport", + "name": "Kazi Nazrul Islam Airport", + "latitude_deg": "23.6225", + "longitude_deg": "87.243", + "elevation_ft": "300", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "municipality": "Durgapur", + "scheduled_service": "yes", + "gps_code": "VEDG", + "iata_code": "RDP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kazi_Nazrul_Islam_Airport", + "keywords": "Andal Airport, Durgapur Airport" + }, + { + "id": "26499", + "ident": "VEDX", + "type": "small_airport", + "name": "Kalaikunda Air Force Station", + "latitude_deg": "22.339500427246094", + "longitude_deg": "87.2145004272461", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "scheduled_service": "no", + "gps_code": "VEDX", + "keywords": "VE60" + }, + { + "id": "44474", + "ident": "VEDZ", + "type": "small_airport", + "name": "Daporijo Airport", + "latitude_deg": "27.985500335699996", + "longitude_deg": "94.22280120850002", + "elevation_ft": "750", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Daporijo", + "scheduled_service": "no", + "gps_code": "VEDZ", + "iata_code": "DEP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Daporijo_Airport", + "keywords": "Deparijo, Daparizo, Deparizo, DAE" + }, + { + "id": "26500", + "ident": "VEGK", + "type": "medium_airport", + "name": "Gorakhpur Airport", + "latitude_deg": "26.739700317399997", + "longitude_deg": "83.4496994019", + "elevation_ft": "259", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Gorakhpur", + "scheduled_service": "yes", + "gps_code": "VEGK", + "iata_code": "GOP", + "home_link": "http://www.aai.aero/allAirports/gorakhpur.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gorakhpur_Airport", + "keywords": "Gorakhpur Air Force Station" + }, + { + "id": "26501", + "ident": "VEGT", + "type": "medium_airport", + "name": "Lokpriya Gopinath Bordoloi International Airport", + "latitude_deg": "26.10610008239746", + "longitude_deg": "91.58589935302734", + "elevation_ft": "162", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AS", + "municipality": "Guwahati", + "scheduled_service": "yes", + "gps_code": "VEGT", + "iata_code": "GAU", + "home_link": "http://aai.aero/guwahati/index.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lokpriya_Gopinath_Bordoloi_International_Airport", + "keywords": "Borjhar Airport, Mountain Shadow Air Force Station" + }, + { + "id": "26502", + "ident": "VEGY", + "type": "medium_airport", + "name": "Gaya Airport", + "latitude_deg": "24.744300842285156", + "longitude_deg": "84.95120239257812", + "elevation_ft": "380", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-BR", + "scheduled_service": "yes", + "gps_code": "VEGY", + "iata_code": "GAY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gaya_Airport" + }, + { + "id": "26503", + "ident": "VEHK", + "type": "small_airport", + "name": "Hirakud Airport", + "latitude_deg": "21.5802001953125", + "longitude_deg": "84.00569915771484", + "elevation_ft": "658", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Sambalpur", + "scheduled_service": "no", + "gps_code": "VEHK" + }, + { + "id": "26504", + "ident": "VEIM", + "type": "medium_airport", + "name": "Imphal Airport", + "latitude_deg": "24.7600002289", + "longitude_deg": "93.896697998", + "elevation_ft": "2540", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MN", + "municipality": "Imphal", + "scheduled_service": "yes", + "gps_code": "VEIM", + "iata_code": "IMF", + "home_link": "http://www.aai.aero/allAirports/imphal_gen.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Imphal_Airport" + }, + { + "id": "26505", + "ident": "VEJH", + "type": "small_airport", + "name": "Jharsuguda Airport", + "latitude_deg": "21.9135", + "longitude_deg": "84.0504", + "elevation_ft": "751", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "scheduled_service": "no", + "gps_code": "VEJH", + "iata_code": "JRG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jharsuguda_Airport" + }, + { + "id": "32183", + "ident": "VEJP", + "type": "small_airport", + "name": "Jeypore Airport", + "latitude_deg": "18.8799991607666", + "longitude_deg": "82.552001953125", + "elevation_ft": "1952", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Jeypore", + "scheduled_service": "no", + "gps_code": "VEJP", + "iata_code": "PYB", + "keywords": "Jeypur, Jaypur" + }, + { + "id": "26506", + "ident": "VEJS", + "type": "medium_airport", + "name": "Sonari Airport", + "latitude_deg": "22.813786", + "longitude_deg": "86.169739", + "elevation_ft": "475", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-JH", + "municipality": "Jamshedpur", + "scheduled_service": "no", + "gps_code": "VEJS", + "iata_code": "IXW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sonari_Airport" + }, + { + "id": "26507", + "ident": "VEJT", + "type": "medium_airport", + "name": "Jorhat Airport", + "latitude_deg": "26.7315006256", + "longitude_deg": "94.1754989624", + "elevation_ft": "311", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AS", + "municipality": "Jorhat", + "scheduled_service": "yes", + "gps_code": "VEJT", + "iata_code": "JRH", + "home_link": "http://aai.aero/allAirports/jorhat_airpo_gi.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jorhat_Airport", + "keywords": "Rowriah Airport, Jorhat Air Force Station" + }, + { + "id": "350147", + "ident": "VEKI", + "type": "medium_airport", + "name": "Kushinagar International Airport", + "latitude_deg": "26.776534", + "longitude_deg": "83.889214", + "elevation_ft": "266", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Kushinagar", + "scheduled_service": "no", + "gps_code": "VEKI", + "iata_code": "KBK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kushinagar_International_Airport" + }, + { + "id": "309893", + "ident": "VEKJ", + "type": "small_airport", + "name": "Kendujhar Airport", + "latitude_deg": "21.696667", + "longitude_deg": "85.581667", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Gopinathapur", + "scheduled_service": "no", + "gps_code": "VEKJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kendujhar_Airstrip", + "keywords": "Keonjhar, Raisuon" + }, + { + "id": "30005", + "ident": "VEKM", + "type": "small_airport", + "name": "Kamalpur Airport", + "latitude_deg": "24.134325", + "longitude_deg": "91.810769", + "elevation_ft": "131", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TR", + "municipality": "Manik Bhandar", + "scheduled_service": "no", + "gps_code": "VEKM", + "iata_code": "IXQ" + }, + { + "id": "26508", + "ident": "VEKR", + "type": "medium_airport", + "name": "Kailashahar Airport", + "latitude_deg": "24.308657", + "longitude_deg": "92.00768", + "elevation_ft": "79", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TR", + "municipality": "Kailashahar", + "scheduled_service": "no", + "gps_code": "VEKR", + "iata_code": "IXH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kailashahar_Airport" + }, + { + "id": "26509", + "ident": "VEKU", + "type": "medium_airport", + "name": "Silchar Airport", + "latitude_deg": "24.9129009247", + "longitude_deg": "92.97869873050001", + "elevation_ft": "352", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AS", + "municipality": "Silchar", + "scheduled_service": "yes", + "gps_code": "VEKU", + "iata_code": "IXS", + "home_link": "http://aai.aero/allAirports/silchar_general.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Silchar_Airport", + "keywords": "Kumbhigram Air Force Station" + }, + { + "id": "31691", + "ident": "VEKW", + "type": "small_airport", + "name": "Khowai Airport", + "latitude_deg": "24.061899", + "longitude_deg": "91.603897", + "elevation_ft": "95", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TR", + "municipality": "Khowai", + "scheduled_service": "no", + "gps_code": "VEKW", + "iata_code": "IXN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khowai_Airport" + }, + { + "id": "26510", + "ident": "VELP", + "type": "medium_airport", + "name": "Lengpui Airport", + "latitude_deg": "23.840599", + "longitude_deg": "92.619698", + "elevation_ft": "1398", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MZ", + "municipality": "Aizawl (Lengpui)", + "scheduled_service": "yes", + "gps_code": "VELP", + "iata_code": "AJL", + "home_link": "http://www.aai.aero/allAirports/lengpui.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lengpui_Airport" + }, + { + "id": "26511", + "ident": "VELR", + "type": "medium_airport", + "name": "Lilabari North Lakhimpur Airport", + "latitude_deg": "27.2955", + "longitude_deg": "94.097603", + "elevation_ft": "330", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AS", + "municipality": "Lilabari", + "scheduled_service": "yes", + "gps_code": "VELR", + "iata_code": "IXI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lilabari_Airport" + }, + { + "id": "31799", + "ident": "VEMH", + "type": "small_airport", + "name": "Malda Airport", + "latitude_deg": "25.01018", + "longitude_deg": "88.126917", + "elevation_ft": "79", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "municipality": "Malda", + "scheduled_service": "no", + "gps_code": "VEMH", + "iata_code": "LDA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Malda_Airport", + "keywords": "English Bazar" + }, + { + "id": "26512", + "ident": "VEMN", + "type": "medium_airport", + "name": "Dibrugarh Airport", + "latitude_deg": "27.4839000702", + "longitude_deg": "95.0168991089", + "elevation_ft": "362", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AS", + "municipality": "Dibrugarh", + "scheduled_service": "yes", + "gps_code": "VEMN", + "iata_code": "DIB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dibrugarh_Airport", + "keywords": "Mohanbari Air Force Station" + }, + { + "id": "26513", + "ident": "VEMR", + "type": "medium_airport", + "name": "Dimapur Airport", + "latitude_deg": "25.883899688699998", + "longitude_deg": "93.77110290530001", + "elevation_ft": "487", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-NL", + "municipality": "Dimapur", + "scheduled_service": "yes", + "gps_code": "VEMR", + "iata_code": "DMU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dimapur_Airport" + }, + { + "id": "26514", + "ident": "VEMZ", + "type": "medium_airport", + "name": "Muzaffarpur Airport", + "latitude_deg": "26.119101", + "longitude_deg": "85.313698", + "elevation_ft": "174", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-BR", + "municipality": "Muzaffarpur", + "scheduled_service": "no", + "gps_code": "VEMZ", + "iata_code": "MZU" + }, + { + "id": "26515", + "ident": "VENP", + "type": "small_airport", + "name": "Nawapara Airport", + "latitude_deg": "20.8700008392334", + "longitude_deg": "82.51959991455078", + "elevation_ft": "1058", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-CT", + "municipality": "Nawapara", + "scheduled_service": "no", + "gps_code": "VENP" + }, + { + "id": "31692", + "ident": "VEPG", + "type": "small_airport", + "name": "Pasighat Airport", + "latitude_deg": "28.064786", + "longitude_deg": "95.336952", + "elevation_ft": "477", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Pasighat", + "scheduled_service": "no", + "gps_code": "VEPG", + "iata_code": "IXT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pasighat_Airport" + }, + { + "id": "26516", + "ident": "VEPH", + "type": "medium_airport", + "name": "Panagarh Air Force Station", + "latitude_deg": "23.474300384499998", + "longitude_deg": "87.4274978638", + "elevation_ft": "240", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "scheduled_service": "no", + "gps_code": "VEPH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Panagarh_Airport" + }, + { + "id": "3309", + "ident": "VEPI", + "type": "small_airport", + "name": "Barrackpore Air Force Station", + "latitude_deg": "22.7810001373", + "longitude_deg": "88.3591995239", + "elevation_ft": "18", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-WB", + "municipality": "Barrackpore", + "scheduled_service": "no", + "gps_code": "VEPI", + "local_code": "VE31" + }, + { + "id": "26517", + "ident": "VEPT", + "type": "medium_airport", + "name": "Jay Prakash Narayan Airport", + "latitude_deg": "25.591299", + "longitude_deg": "85.087997", + "elevation_ft": "170", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-BR", + "municipality": "Patna", + "scheduled_service": "yes", + "gps_code": "VEPT", + "iata_code": "PAT", + "home_link": "http://airportsindia.org.in/allAirports/patna_techinfo.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jay_Prakash_Narayan_Airport", + "keywords": "Lok Nayah Jayprakash" + }, + { + "id": "26518", + "ident": "VEPU", + "type": "small_airport", + "name": "Purnea Airport", + "latitude_deg": "25.759599685668945", + "longitude_deg": "87.41000366210938", + "elevation_ft": "129", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-BR", + "scheduled_service": "no", + "gps_code": "VEPU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Purnea_Airport" + }, + { + "id": "26519", + "ident": "VERC", + "type": "medium_airport", + "name": "Birsa Munda Airport", + "latitude_deg": "23.314300537100003", + "longitude_deg": "85.3217010498", + "elevation_ft": "2148", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-JH", + "municipality": "Ranchi", + "scheduled_service": "yes", + "gps_code": "VERC", + "iata_code": "IXR", + "home_link": "http://airportsindia.org.in/allAirports/ranchi.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Birsa_Munda_Airport" + }, + { + "id": "26520", + "ident": "VERK", + "type": "medium_airport", + "name": "Rourkela Airport", + "latitude_deg": "22.256571", + "longitude_deg": "84.815193", + "elevation_ft": "659", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "municipality": "Rourkela", + "scheduled_service": "no", + "gps_code": "VERK", + "iata_code": "RRK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rourkela_Airport" + }, + { + "id": "30325", + "ident": "VERL", + "type": "small_airport", + "name": "Raxaul Airport", + "latitude_deg": "26.966699600219727", + "longitude_deg": "84.83329772949219", + "elevation_ft": "259", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-BR", + "scheduled_service": "no", + "gps_code": "VERL" + }, + { + "id": "30356", + "ident": "VERU", + "type": "small_airport", + "name": "Rupsi Airport", + "latitude_deg": "26.141867", + "longitude_deg": "89.907892", + "elevation_ft": "131", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AS", + "municipality": "Rupsi", + "scheduled_service": "no", + "gps_code": "VERU", + "iata_code": "RUP" + }, + { + "id": "26521", + "ident": "VETZ", + "type": "medium_airport", + "name": "Tezpur Airport", + "latitude_deg": "26.7091007232666", + "longitude_deg": "92.78469848632812", + "elevation_ft": "240", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AS", + "scheduled_service": "yes", + "gps_code": "VETZ", + "iata_code": "TEZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tezpur_Airport", + "keywords": "Salonibari Airport, Tezpur Air Force Station" + }, + { + "id": "26522", + "ident": "VEUK", + "type": "small_airport", + "name": "Utkela Airport", + "latitude_deg": "20.097400665283203", + "longitude_deg": "83.18379974365234", + "elevation_ft": "680", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-OR", + "scheduled_service": "no", + "gps_code": "VEUK" + }, + { + "id": "26523", + "ident": "VEVZ", + "type": "medium_airport", + "name": "Visakhapatnam Airport / INS Dega", + "latitude_deg": "17.723506", + "longitude_deg": "83.227729", + "elevation_ft": "15", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Visakhapatnam", + "scheduled_service": "yes", + "gps_code": "VOVZ", + "iata_code": "VTZ", + "home_link": "http://www.vizagairport.in/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Visakhapatnam_Airport", + "keywords": "VEVZ, Visakhapatnam, Vizag" + }, + { + "id": "26524", + "ident": "VEZO", + "type": "medium_airport", + "name": "Ziro Airport", + "latitude_deg": "27.588301", + "longitude_deg": "93.828102", + "elevation_ft": "5403", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AR", + "municipality": "Ziro", + "scheduled_service": "no", + "gps_code": "VEZO", + "iata_code": "ZER", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zero_Airport" + }, + { + "id": "336098", + "ident": "VG-0001", + "type": "heliport", + "name": "Eustatia Heliport", + "latitude_deg": "18.508933", + "longitude_deg": "-64.359584", + "continent": "NA", + "iso_country": "VG", + "iso_region": "VG-U-A", + "municipality": "Spanish Town", + "scheduled_service": "no" + }, + { + "id": "25435", + "ident": "VG00", + "type": "closed", + "name": "Mears Field", + "latitude_deg": "37.370089", + "longitude_deg": "-75.944796", + "elevation_ft": "22", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Cape Charles", + "scheduled_service": "no", + "keywords": "VG00" + }, + { + "id": "25436", + "ident": "VG01", + "type": "small_airport", + "name": "Eureka Airport", + "latitude_deg": "37.060258", + "longitude_deg": "-78.563233", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Keysville", + "scheduled_service": "no", + "gps_code": "VG01", + "local_code": "VG01" + }, + { + "id": "25437", + "ident": "VG02", + "type": "heliport", + "name": "Innsbrook Technical Center Heliport", + "latitude_deg": "37.654598236083984", + "longitude_deg": "-77.58219909667969", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "VG02", + "local_code": "VG02" + }, + { + "id": "25438", + "ident": "VG03", + "type": "heliport", + "name": "Chesapeake Energy Center Heliport", + "latitude_deg": "36.77069854736328", + "longitude_deg": "-76.30159759521484", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Chesapeake", + "scheduled_service": "no", + "gps_code": "VG03", + "local_code": "VG03" + }, + { + "id": "25439", + "ident": "VG04", + "type": "heliport", + "name": "Yorktown Power Station Heliport", + "latitude_deg": "37.2140007019043", + "longitude_deg": "-76.45359802246094", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Newport News", + "scheduled_service": "no", + "gps_code": "VG04", + "local_code": "VG04" + }, + { + "id": "25440", + "ident": "VG05", + "type": "small_airport", + "name": "Payne Airport", + "latitude_deg": "37.879600524902344", + "longitude_deg": "-78.05750274658203", + "elevation_ft": "463", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Tabscott", + "scheduled_service": "no", + "gps_code": "VG05", + "local_code": "VG05" + }, + { + "id": "25441", + "ident": "VG06", + "type": "small_airport", + "name": "Fulcher Family Farms Airport", + "latitude_deg": "37.725101470947266", + "longitude_deg": "-79.08309936523438", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Amherst", + "scheduled_service": "no", + "gps_code": "VG06", + "local_code": "VG06" + }, + { + "id": "25442", + "ident": "VG07", + "type": "small_airport", + "name": "Rular Airport", + "latitude_deg": "38.53889846801758", + "longitude_deg": "-77.82830047607422", + "elevation_ft": "305", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Remington", + "scheduled_service": "no", + "gps_code": "VG07", + "local_code": "VG07" + }, + { + "id": "25443", + "ident": "VG08", + "type": "heliport", + "name": "Montgomery Regional Hospital Heliport", + "latitude_deg": "37.186500549316406", + "longitude_deg": "-80.40899658203125", + "elevation_ft": "2126", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Blacksburg", + "scheduled_service": "no", + "gps_code": "VG08", + "local_code": "VG08" + }, + { + "id": "25444", + "ident": "VG09", + "type": "small_airport", + "name": "Starbase Airport", + "latitude_deg": "37.23142", + "longitude_deg": "-75.984535", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Cape Charles", + "scheduled_service": "no", + "gps_code": "VG09", + "local_code": "VG09" + }, + { + "id": "25445", + "ident": "VG10", + "type": "closed", + "name": "Cathro Airport", + "latitude_deg": "37.927972", + "longitude_deg": "-78.551216", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Charlottesville", + "scheduled_service": "no", + "keywords": "VG10" + }, + { + "id": "25446", + "ident": "VG11", + "type": "heliport", + "name": "Carrsville Volunteer Fire Department Heliport", + "latitude_deg": "36.71072", + "longitude_deg": "-76.82299", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Franklin", + "scheduled_service": "no", + "gps_code": "VG11", + "local_code": "VG11" + }, + { + "id": "25447", + "ident": "VG12", + "type": "small_airport", + "name": "Simpsonville Airport", + "latitude_deg": "38.317796", + "longitude_deg": "-77.867402", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Rhoadesville", + "scheduled_service": "no", + "gps_code": "VG12", + "local_code": "VG12" + }, + { + "id": "25448", + "ident": "VG13", + "type": "heliport", + "name": "White Stone Heliport", + "latitude_deg": "37.64870071411133", + "longitude_deg": "-76.38760375976562", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "White Stone", + "scheduled_service": "no", + "gps_code": "VG13", + "local_code": "VG13" + }, + { + "id": "25449", + "ident": "VG14", + "type": "heliport", + "name": "Philip M Grabill Jr Memorial Heliport", + "latitude_deg": "38.87139892578125", + "longitude_deg": "-78.51329803466797", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Woodstock", + "scheduled_service": "no", + "gps_code": "VG14", + "local_code": "VG14" + }, + { + "id": "25450", + "ident": "VG15", + "type": "heliport", + "name": "White Stone Family Practice Heliport", + "latitude_deg": "37.64419937133789", + "longitude_deg": "-76.39520263671875", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "White Stone", + "scheduled_service": "no", + "gps_code": "VG15", + "local_code": "VG15" + }, + { + "id": "25451", + "ident": "VG16", + "type": "small_airport", + "name": "Landis Airport", + "latitude_deg": "36.624012", + "longitude_deg": "-80.169342", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Patrick Springs", + "scheduled_service": "no", + "gps_code": "VG16", + "local_code": "VG16", + "keywords": "Collins Airport" + }, + { + "id": "25452", + "ident": "VG17", + "type": "heliport", + "name": "Defense Supply Center Richmond Heliport", + "latitude_deg": "37.423749", + "longitude_deg": "-77.448411", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "VG17", + "local_code": "VG17" + }, + { + "id": "25453", + "ident": "VG18", + "type": "small_airport", + "name": "Sky Bryce Airport", + "latitude_deg": "38.81589889526367", + "longitude_deg": "-78.77030181884766", + "elevation_ft": "1263", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Basye", + "scheduled_service": "no", + "gps_code": "VG18", + "local_code": "VG18" + }, + { + "id": "25454", + "ident": "VG19", + "type": "small_airport", + "name": "Sawyer Airport", + "latitude_deg": "37.990522", + "longitude_deg": "-75.592872", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "New Church", + "scheduled_service": "no", + "gps_code": "VG19", + "local_code": "VG19", + "keywords": "01W, Sawyer STOLport" + }, + { + "id": "25455", + "ident": "VG20", + "type": "small_airport", + "name": "Onley Airport", + "latitude_deg": "37.67509841918945", + "longitude_deg": "-75.70989990234375", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Onley", + "scheduled_service": "no", + "gps_code": "VG20", + "local_code": "VG20" + }, + { + "id": "25456", + "ident": "VG21", + "type": "seaplane_base", + "name": "Irvington Marina Seaplane Base", + "latitude_deg": "37.65760040283203", + "longitude_deg": "-76.43720245361328", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Irvington", + "scheduled_service": "no", + "gps_code": "VG21", + "local_code": "VG21" + }, + { + "id": "25457", + "ident": "VG22", + "type": "small_airport", + "name": "Rockfish Airport", + "latitude_deg": "37.878819", + "longitude_deg": "-78.893558", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Nellysford", + "scheduled_service": "no", + "gps_code": "VG22", + "local_code": "VG22", + "keywords": "Rockfish Airpark, Wintergreen" + }, + { + "id": "25458", + "ident": "VG23", + "type": "closed", + "name": "Smith Airport", + "latitude_deg": "38.927898", + "longitude_deg": "-77.562798", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Arcola", + "scheduled_service": "no", + "keywords": "VG23" + }, + { + "id": "25459", + "ident": "VG24", + "type": "small_airport", + "name": "Mayers Airport", + "latitude_deg": "37.77666", + "longitude_deg": "-77.48727", + "elevation_ft": "215", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "VG24", + "local_code": "VG24" + }, + { + "id": "25460", + "ident": "VG25", + "type": "small_airport", + "name": "Robinson Airport", + "latitude_deg": "37.3484992981", + "longitude_deg": "-79.5719985962", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Bedford", + "scheduled_service": "no", + "gps_code": "VG25", + "local_code": "VG25" + }, + { + "id": "25461", + "ident": "VG27", + "type": "small_airport", + "name": "Windy Ridge Airport", + "latitude_deg": "37.2692985534668", + "longitude_deg": "-79.43589782714844", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Bedford", + "scheduled_service": "no", + "gps_code": "VG27", + "local_code": "VG27" + }, + { + "id": "25462", + "ident": "VG28", + "type": "small_airport", + "name": "Mann Airport", + "latitude_deg": "36.54899978637695", + "longitude_deg": "-77.19139862060547", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Boykins", + "scheduled_service": "no", + "gps_code": "VG28", + "local_code": "VG28" + }, + { + "id": "25463", + "ident": "VG29", + "type": "small_airport", + "name": "Branham Mill Airpark", + "latitude_deg": "37.969847", + "longitude_deg": "-76.70886", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Warsaw", + "scheduled_service": "no", + "gps_code": "VG29", + "local_code": "VG29" + }, + { + "id": "25464", + "ident": "VG30", + "type": "small_airport", + "name": "Scott Farm Strip", + "latitude_deg": "37.22710037231445", + "longitude_deg": "-75.97689819335938", + "elevation_ft": "33", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Cape Charles", + "scheduled_service": "no", + "gps_code": "VG30", + "local_code": "VG30" + }, + { + "id": "25465", + "ident": "VG31", + "type": "small_airport", + "name": "Sager Field", + "latitude_deg": "38.713401794433594", + "longitude_deg": "-78.86389923095703", + "elevation_ft": "1280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Broadway", + "scheduled_service": "no", + "gps_code": "VG31", + "local_code": "VG31" + }, + { + "id": "25466", + "ident": "VG32", + "type": "small_airport", + "name": "Eastview Airport", + "latitude_deg": "37.61429977416992", + "longitude_deg": "-78.60359954833984", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Buckingham", + "scheduled_service": "no", + "gps_code": "VG32", + "local_code": "VG32" + }, + { + "id": "25467", + "ident": "VG33", + "type": "small_airport", + "name": "Bull Farm Airport", + "latitude_deg": "37.154598236083984", + "longitude_deg": "-75.95690155029297", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Cape Charles", + "scheduled_service": "no", + "gps_code": "VG33", + "local_code": "VG33" + }, + { + "id": "25468", + "ident": "VG34", + "type": "small_airport", + "name": "Merifield Airport", + "latitude_deg": "36.584598541259766", + "longitude_deg": "-78.50080108642578", + "elevation_ft": "355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Clarksville", + "scheduled_service": "no", + "gps_code": "VG34", + "local_code": "VG34" + }, + { + "id": "25469", + "ident": "VG35", + "type": "heliport", + "name": "Walker Army Heliport", + "latitude_deg": "37.016700744628906", + "longitude_deg": "-76.30000305175781", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Fort Monroe", + "scheduled_service": "no", + "gps_code": "VG35", + "local_code": "VG35" + }, + { + "id": "25470", + "ident": "VG36", + "type": "small_airport", + "name": "Keysville Airport", + "latitude_deg": "37.03820037841797", + "longitude_deg": "-78.46279907226562", + "elevation_ft": "627", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Keysville", + "scheduled_service": "no", + "gps_code": "VG36", + "local_code": "VG36" + }, + { + "id": "25471", + "ident": "VG37", + "type": "small_airport", + "name": "Umphlett Airstrip", + "latitude_deg": "36.589206", + "longitude_deg": "-76.638458", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Whaleyville", + "scheduled_service": "no", + "gps_code": "VG37", + "local_code": "VG37" + }, + { + "id": "25472", + "ident": "VG38", + "type": "small_airport", + "name": "Easter Field", + "latitude_deg": "37.369598", + "longitude_deg": "-78.083099", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Amelia Court House", + "scheduled_service": "no", + "gps_code": "VG38", + "local_code": "VG38" + }, + { + "id": "25473", + "ident": "VG39", + "type": "small_airport", + "name": "Earth Airport", + "latitude_deg": "37.221529", + "longitude_deg": "-76.008568", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Cape Charles", + "scheduled_service": "no", + "gps_code": "VG39", + "local_code": "VG39" + }, + { + "id": "25474", + "ident": "VG40", + "type": "small_airport", + "name": "Woody Field Airport", + "latitude_deg": "36.8835983276", + "longitude_deg": "-79.85230255130001", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Rocky Mount", + "scheduled_service": "no", + "gps_code": "VG40", + "local_code": "VG40" + }, + { + "id": "25475", + "ident": "VG41", + "type": "heliport", + "name": "Smyth County Community Hospital Heliport", + "latitude_deg": "36.852917", + "longitude_deg": "-81.505063", + "elevation_ft": "2201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Marion", + "scheduled_service": "no", + "keywords": "VG41" + }, + { + "id": "25476", + "ident": "VG42", + "type": "small_airport", + "name": "Henshaw Airport", + "latitude_deg": "37.25239944458008", + "longitude_deg": "-77.15270233154297", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Hopewell", + "scheduled_service": "no", + "gps_code": "VG42", + "local_code": "VG42" + }, + { + "id": "25477", + "ident": "VG43", + "type": "small_airport", + "name": "Arrowpoint Airport", + "latitude_deg": "38.307079", + "longitude_deg": "-78.098953", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "VG43", + "local_code": "VG43" + }, + { + "id": "25478", + "ident": "VG44", + "type": "heliport", + "name": "Dickerson Port Heliport", + "latitude_deg": "37.252498626708984", + "longitude_deg": "-76.47229766845703", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Gloucester", + "scheduled_service": "no", + "gps_code": "VG44", + "local_code": "VG44" + }, + { + "id": "25479", + "ident": "VG45", + "type": "heliport", + "name": "Medical College of Virginia Heliport", + "latitude_deg": "37.54169845581055", + "longitude_deg": "-77.44170379638672", + "elevation_ft": "343", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "VG45", + "local_code": "VG45" + }, + { + "id": "25480", + "ident": "VG46", + "type": "heliport", + "name": "Franklin County Memorial Hospital Heliport", + "latitude_deg": "36.992801666259766", + "longitude_deg": "-79.8906021118164", + "elevation_ft": "1153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Rocky Mount", + "scheduled_service": "no", + "gps_code": "VG46", + "local_code": "VG46" + }, + { + "id": "25481", + "ident": "VG47", + "type": "heliport", + "name": "Carilion Patient Transportation Services Heliport", + "latitude_deg": "37.25210189819336", + "longitude_deg": "-79.94979858398438", + "elevation_ft": "946", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Roanoke", + "scheduled_service": "no", + "gps_code": "VG47", + "local_code": "VG47" + }, + { + "id": "25482", + "ident": "VG48", + "type": "heliport", + "name": "Clear Moore Corp. Kenneth Moore Heliport", + "latitude_deg": "37.17390060424805", + "longitude_deg": "-76.4749984741211", + "elevation_ft": "47", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Yorktown", + "scheduled_service": "no", + "gps_code": "VG48", + "local_code": "VG48" + }, + { + "id": "25483", + "ident": "VG49", + "type": "heliport", + "name": "Tappahannock Hospital Heliport", + "latitude_deg": "37.901100158691406", + "longitude_deg": "-76.87689971923828", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Tappahannock", + "scheduled_service": "no", + "gps_code": "VG49", + "local_code": "VG49" + }, + { + "id": "25484", + "ident": "VG50", + "type": "heliport", + "name": "Lonesome Pine Hospital Heliport", + "latitude_deg": "36.87710189819336", + "longitude_deg": "-82.75379943847656", + "elevation_ft": "1596", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Big Stone Gap", + "scheduled_service": "no", + "gps_code": "VG50", + "local_code": "VG50" + }, + { + "id": "25485", + "ident": "VG51", + "type": "heliport", + "name": "Sentara Obici Hospital Heliport", + "latitude_deg": "36.7733001709", + "longitude_deg": "-76.58219909670001", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Elephant Fork", + "scheduled_service": "no", + "gps_code": "VG51", + "local_code": "VG51" + }, + { + "id": "25486", + "ident": "VG52", + "type": "small_airport", + "name": "Woodridge Field", + "latitude_deg": "37.83919906616211", + "longitude_deg": "-78.82170104980469", + "elevation_ft": "663", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Lovingston", + "scheduled_service": "no", + "gps_code": "VG52", + "local_code": "VG52" + }, + { + "id": "25487", + "ident": "VG53", + "type": "small_airport", + "name": "Venning's Landing Airport", + "latitude_deg": "37.04359817504883", + "longitude_deg": "-79.80139923095703", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Rocky Mount", + "scheduled_service": "no", + "gps_code": "VG53", + "local_code": "VG53" + }, + { + "id": "430466", + "ident": "VG54", + "type": "small_airport", + "name": "Bear River Field", + "latitude_deg": "38.319067", + "longitude_deg": "-78.763754", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "McGaheysville", + "scheduled_service": "no", + "gps_code": "VG54", + "local_code": "VG54" + }, + { + "id": "25488", + "ident": "VG55", + "type": "small_airport", + "name": "Woodstock Airport", + "latitude_deg": "38.881078", + "longitude_deg": "-78.55815", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Woodstock", + "scheduled_service": "no", + "gps_code": "VG55", + "local_code": "VG55", + "keywords": "Burner" + }, + { + "id": "25489", + "ident": "VG56", + "type": "small_airport", + "name": "Midway Airport", + "latitude_deg": "37.80958", + "longitude_deg": "-75.615034", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Bloxom", + "scheduled_service": "no", + "gps_code": "VG56", + "local_code": "VG56" + }, + { + "id": "25490", + "ident": "VG57", + "type": "small_airport", + "name": "Maples Field", + "latitude_deg": "38.605701", + "longitude_deg": "-77.584702", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Catlett", + "scheduled_service": "no", + "gps_code": "VG57", + "local_code": "VG57" + }, + { + "id": "45872", + "ident": "VG58", + "type": "small_airport", + "name": "Abbott Airport", + "latitude_deg": "36.945202", + "longitude_deg": "-79.791942", + "elevation_ft": "981", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Rocky Mount", + "scheduled_service": "no", + "gps_code": "VG58", + "local_code": "VG58" + }, + { + "id": "45875", + "ident": "VG59", + "type": "heliport", + "name": "Cedar Point Landing Heliport", + "latitude_deg": "37.069444", + "longitude_deg": "-80.649444", + "elevation_ft": "1865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Dublin", + "scheduled_service": "no", + "gps_code": "VG59", + "local_code": "VG59" + }, + { + "id": "45874", + "ident": "VG62", + "type": "heliport", + "name": "Carilion Roanoke Memorial Hospital Heliport", + "latitude_deg": "37.25", + "longitude_deg": "-79.933333", + "elevation_ft": "1112", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Roanoke", + "scheduled_service": "no", + "gps_code": "VG62", + "local_code": "VG62" + }, + { + "id": "45877", + "ident": "VG63", + "type": "heliport", + "name": "Federal Reserve Heliport", + "latitude_deg": "37.611722", + "longitude_deg": "-77.646333", + "elevation_ft": "181", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "VG63", + "local_code": "VG63" + }, + { + "id": "45884", + "ident": "VG64", + "type": "small_airport", + "name": "Lee Field", + "latitude_deg": "37.561036", + "longitude_deg": "-76.851135", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "West Point", + "scheduled_service": "no", + "gps_code": "VG64", + "local_code": "VG64" + }, + { + "id": "329486", + "ident": "VG94", + "type": "heliport", + "name": "Loves Helipad", + "latitude_deg": "36.745292", + "longitude_deg": "-78.101337", + "elevation_ft": "431", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Loves Helipad", + "scheduled_service": "no", + "gps_code": "VG94", + "local_code": "VG94" + }, + { + "id": "309876", + "ident": "VGBG", + "type": "small_airport", + "name": "Bogra Airport", + "latitude_deg": "24.8668", + "longitude_deg": "89.3165", + "elevation_ft": "69", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-5", + "municipality": "Bogra", + "scheduled_service": "no", + "gps_code": "VGBG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bogra_STOLport" + }, + { + "id": "26525", + "ident": "VGBR", + "type": "medium_airport", + "name": "Barisal Airport", + "latitude_deg": "22.801000595092773", + "longitude_deg": "90.30120086669922", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-1", + "municipality": "Barisal", + "scheduled_service": "yes", + "gps_code": "VGBR", + "iata_code": "BZL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barisal_Airport" + }, + { + "id": "26526", + "ident": "VGCB", + "type": "medium_airport", + "name": "Cox's Bazar Airport", + "latitude_deg": "21.452199935913086", + "longitude_deg": "91.96389770507812", + "elevation_ft": "12", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Cox's Bazar", + "scheduled_service": "yes", + "gps_code": "VGCB", + "iata_code": "CXB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cox's_Bazar_Airport" + }, + { + "id": "30832", + "ident": "VGCM", + "type": "small_airport", + "name": "Comilla Airport", + "latitude_deg": "23.43720054626465", + "longitude_deg": "91.189697265625", + "elevation_ft": "25", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Comilla", + "scheduled_service": "no", + "gps_code": "VGCM", + "iata_code": "CLA" + }, + { + "id": "26527", + "ident": "VGEG", + "type": "medium_airport", + "name": "Shah Amanat International Airport", + "latitude_deg": "22.249599", + "longitude_deg": "91.813301", + "elevation_ft": "12", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-2", + "municipality": "Chattogram (Chittagong)", + "scheduled_service": "yes", + "gps_code": "VGEG", + "iata_code": "CGP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shah_Amanat_International_Airport", + "keywords": "M.A. Hannan International Airport" + }, + { + "id": "26528", + "ident": "VGIS", + "type": "medium_airport", + "name": "Ishurdi Airport", + "latitude_deg": "24.15250015258789", + "longitude_deg": "89.04940032958984", + "elevation_ft": "45", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-5", + "municipality": "Ishurdi", + "scheduled_service": "no", + "gps_code": "VGIS", + "iata_code": "IRD" + }, + { + "id": "26529", + "ident": "VGJR", + "type": "medium_airport", + "name": "Jessore Airport", + "latitude_deg": "23.1838", + "longitude_deg": "89.160797", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-4", + "municipality": "Jashore (Jessore)", + "scheduled_service": "yes", + "gps_code": "VGJR", + "iata_code": "JSR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jessore_Airport" + }, + { + "id": "31831", + "ident": "VGLM", + "type": "small_airport", + "name": "Lalmonirhat Airport", + "latitude_deg": "25.887624", + "longitude_deg": "89.431254", + "elevation_ft": "106", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-5", + "municipality": "Lalmonirhat", + "scheduled_service": "no", + "gps_code": "VGLM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lalmonirhat_Airport" + }, + { + "id": "26530", + "ident": "VGRJ", + "type": "medium_airport", + "name": "Shah Mokhdum Airport", + "latitude_deg": "24.43720054626465", + "longitude_deg": "88.61650085449219", + "elevation_ft": "64", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-5", + "municipality": "Rajshahi", + "scheduled_service": "yes", + "gps_code": "VGRJ", + "iata_code": "RJH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shah_Makhdum_Airport" + }, + { + "id": "26531", + "ident": "VGSD", + "type": "medium_airport", + "name": "Saidpur Airport", + "latitude_deg": "25.759199142456055", + "longitude_deg": "88.90889739990234", + "elevation_ft": "125", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-5", + "municipality": "Saidpur", + "scheduled_service": "yes", + "gps_code": "VGSD", + "iata_code": "SPD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saidpur_Airport" + }, + { + "id": "32455", + "ident": "VGSG", + "type": "small_airport", + "name": "Thakurgaon Airport", + "latitude_deg": "26.016399383544922", + "longitude_deg": "88.40360260009766", + "elevation_ft": "176", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-5", + "municipality": "Thakurgaon", + "scheduled_service": "no", + "gps_code": "VGSG", + "iata_code": "TKR" + }, + { + "id": "32744", + "ident": "VGSH", + "type": "small_airport", + "name": "Shamshernagar Airport", + "latitude_deg": "24.398333", + "longitude_deg": "91.916944", + "elevation_ft": "56", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-6", + "municipality": "Shamshernagar", + "scheduled_service": "no", + "gps_code": "VGSH", + "iata_code": "ZHM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shamshernagar_STOLport" + }, + { + "id": "26532", + "ident": "VGSY", + "type": "medium_airport", + "name": "Osmany International Airport", + "latitude_deg": "24.963832", + "longitude_deg": "91.864843", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-6", + "municipality": "Sylhet", + "scheduled_service": "yes", + "gps_code": "VGSY", + "iata_code": "ZYL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Osmani_International_Airport" + }, + { + "id": "26533", + "ident": "VGTJ", + "type": "small_airport", + "name": "Tejgaon Airport", + "latitude_deg": "23.778799057006836", + "longitude_deg": "90.38269805908203", + "elevation_ft": "24", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-3", + "municipality": "Dhaka", + "scheduled_service": "no", + "gps_code": "VGTJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tejgaon_Airport" + }, + { + "id": "26534", + "ident": "VGZR", + "type": "large_airport", + "name": "Hazrat Shahjalal International Airport", + "latitude_deg": "23.843347", + "longitude_deg": "90.397783", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "BD", + "iso_region": "BD-3", + "municipality": "Dhaka", + "scheduled_service": "yes", + "gps_code": "VGHS", + "iata_code": "DAC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shahjalal_International_Airport", + "keywords": "VGZR, Zia International Airport, Dacca International Airport, Hazrat Shahjalal International Airport" + }, + { + "id": "26535", + "ident": "VHHH", + "type": "large_airport", + "name": "Hong Kong International Airport", + "latitude_deg": "22.308901", + "longitude_deg": "113.915001", + "elevation_ft": "28", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Hong Kong", + "scheduled_service": "yes", + "gps_code": "VHHH", + "iata_code": "HKG", + "home_link": "http://www.hongkongairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hong_Kong_International_Airport", + "keywords": "Chek Lap Kok Airport, 赤鱲角機場" + }, + { + "id": "28112", + "ident": "VHHX", + "type": "closed", + "name": "Hong Kong International Airport Kai Tak", + "latitude_deg": "22.320304", + "longitude_deg": "114.198074", + "elevation_ft": "28", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Kowloon City, Kowloon", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kai_Tak_Airport", + "keywords": "checkerboard, kowloon, Kaitak, RAF Kai Tak, HKG, VHHX" + }, + { + "id": "26536", + "ident": "VHSK", + "type": "medium_airport", + "name": "Shek Kong Air Base", + "latitude_deg": "22.4366", + "longitude_deg": "114.080002", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Islands, New Territories", + "scheduled_service": "no", + "gps_code": "VHSK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shek_Kong_Airfield", + "keywords": "Yuen Long Airport, RAF Sek Kong, 石崗機場" + }, + { + "id": "43192", + "ident": "VHST", + "type": "heliport", + "name": "Shun Tak Heliport", + "latitude_deg": "22.288868", + "longitude_deg": "114.152369", + "elevation_ft": "107", + "continent": "AS", + "iso_country": "HK", + "iso_region": "HK-U-A", + "municipality": "Central and Western, Hong Kong Island", + "scheduled_service": "yes", + "gps_code": "VHST", + "iata_code": "HHP", + "home_link": "http://www.skyshuttlehk.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hong_Kong-Macau_Ferry_Pier,_Hong_Kong#Heliport" + }, + { + "id": "429736", + "ident": "VI00", + "type": "small_airport", + "name": "Saifai Airport", + "latitude_deg": "26.9202", + "longitude_deg": "79.06277", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Barauli Khurd", + "scheduled_service": "no", + "gps_code": "VI00", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saifai_Airstrip" + }, + { + "id": "25491", + "ident": "VI01", + "type": "heliport", + "name": "DPS Heliport", + "latitude_deg": "17.708900451660156", + "longitude_deg": "-64.79650115966797", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "VI", + "iso_region": "VI-U-A", + "municipality": "Frederiksted St Croix", + "scheduled_service": "no", + "gps_code": "VI01", + "local_code": "VI01" + }, + { + "id": "25492", + "ident": "VI02", + "type": "heliport", + "name": "St. Thomas Waterfront Heliport", + "latitude_deg": "18.338600158691406", + "longitude_deg": "-64.93930053710938", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "VI", + "iso_region": "VI-U-A", + "municipality": "Charlotte Amalie", + "scheduled_service": "no", + "gps_code": "VI02", + "local_code": "VI02" + }, + { + "id": "25493", + "ident": "VI03", + "type": "heliport", + "name": "Frenchman's Reef Heliport", + "latitude_deg": "18.31999969482422", + "longitude_deg": "-64.9220962524414", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "VI", + "iso_region": "VI-U-A", + "municipality": "St Thomas", + "scheduled_service": "no", + "gps_code": "VI03", + "local_code": "VI03" + }, + { + "id": "25494", + "ident": "VI04", + "type": "heliport", + "name": "Stouffer Grand Beach Resort Heliport", + "latitude_deg": "18.345800399780273", + "longitude_deg": "-64.90399932861328", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "VI", + "iso_region": "VI-U-A", + "municipality": "Charlotte Amalie", + "scheduled_service": "no", + "gps_code": "VI04", + "local_code": "VI04" + }, + { + "id": "3322", + "ident": "VI20", + "type": "small_airport", + "name": "Bhilwara Airport", + "latitude_deg": "28.07710075378418", + "longitude_deg": "76.20500183105469", + "elevation_ft": "955", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HR", + "scheduled_service": "no", + "gps_code": "VI20", + "local_code": "VI20" + }, + { + "id": "25495", + "ident": "VI22", + "type": "seaplane_base", + "name": "Charlotte Amalie Harbor Seaplane Base", + "latitude_deg": "18.338600158691406", + "longitude_deg": "-64.9406967163086", + "continent": "NA", + "iso_country": "VI", + "iso_region": "VI-U-A", + "municipality": "Charlotte Amalie St Thomas", + "scheduled_service": "yes", + "gps_code": "VI22", + "iata_code": "SPB", + "local_code": "VI22", + "wikipedia_link": "https://en.wikipedia.org/wiki/Charlotte_Amalie_Harbor_Seaplane_Base" + }, + { + "id": "25496", + "ident": "VI32", + "type": "seaplane_base", + "name": "Christiansted Harbor Seaplane Base", + "latitude_deg": "17.74720001220703", + "longitude_deg": "-64.70490264892578", + "continent": "NA", + "iso_country": "VI", + "iso_region": "VI-U-A", + "municipality": "Christiansted St Croix", + "scheduled_service": "yes", + "gps_code": "VI32", + "iata_code": "SSB", + "local_code": "VI32", + "wikipedia_link": "https://en.wikipedia.org/wiki/Christiansted_Harbor_Seaplane_Base" + }, + { + "id": "3323", + "ident": "VI40", + "type": "small_airport", + "name": "Karnal Airport", + "latitude_deg": "29.714663", + "longitude_deg": "77.037438", + "elevation_ft": "829", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HR", + "municipality": "Niawal", + "scheduled_service": "no", + "gps_code": "VI40", + "local_code": "VI40" + }, + { + "id": "3324", + "ident": "VI43", + "type": "small_airport", + "name": "Suratgarh New Airport", + "latitude_deg": "29.387800216674805", + "longitude_deg": "73.90390014648438", + "elevation_ft": "554", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "scheduled_service": "no", + "gps_code": "VI43", + "local_code": "VI43", + "keywords": "Phalodi Air Force Station" + }, + { + "id": "3325", + "ident": "VI57", + "type": "small_airport", + "name": "Thoise Airport", + "latitude_deg": "34.652599", + "longitude_deg": "77.375801", + "elevation_ft": "10046", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Nubra", + "scheduled_service": "no", + "gps_code": "VI57", + "local_code": "VI57" + }, + { + "id": "3327", + "ident": "VI65", + "type": "small_airport", + "name": "Kargil Airport", + "latitude_deg": "34.5243", + "longitude_deg": "76.155899", + "elevation_ft": "9604", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Kargil", + "scheduled_service": "no", + "gps_code": "VI65", + "local_code": "VI65", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kargil_Airport" + }, + { + "id": "3328", + "ident": "VI66", + "type": "small_airport", + "name": "Fukche Advanced Landing Ground", + "latitude_deg": "32.937401", + "longitude_deg": "79.213203", + "elevation_ft": "13700", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Koyul", + "scheduled_service": "no", + "gps_code": "VI66", + "local_code": "VI66" + }, + { + "id": "3329", + "ident": "VI69", + "type": "small_airport", + "name": "Jhunjhunu Airport", + "latitude_deg": "28.106700897216797", + "longitude_deg": "75.37560272216797", + "elevation_ft": "1110", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "scheduled_service": "no", + "gps_code": "VI69", + "local_code": "VI69" + }, + { + "id": "3330", + "ident": "VI70", + "type": "small_airport", + "name": "Pilani New Airport", + "latitude_deg": "28.348800659179688", + "longitude_deg": "75.59369659423828", + "elevation_ft": "1100", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "scheduled_service": "no", + "gps_code": "VI70", + "local_code": "VI70" + }, + { + "id": "3331", + "ident": "VI71", + "type": "small_airport", + "name": "Pinjore Airfield and Flying Club", + "latitude_deg": "30.82457", + "longitude_deg": "76.883652", + "elevation_ft": "1700", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HR", + "municipality": "Gannan", + "scheduled_service": "no", + "gps_code": "VI71", + "local_code": "VI71", + "keywords": "Kalka" + }, + { + "id": "3332", + "ident": "VI73", + "type": "small_airport", + "name": "Nagaur Airport", + "latitude_deg": "27.20829963684082", + "longitude_deg": "73.7114028930664", + "elevation_ft": "950", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "scheduled_service": "no", + "gps_code": "VI73", + "local_code": "VI73" + }, + { + "id": "3333", + "ident": "VI75", + "type": "small_airport", + "name": "IIT Kanpur Airport", + "latitude_deg": "26.520399", + "longitude_deg": "80.232904", + "elevation_ft": "400", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Kanpur", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/IIT_Kanpur_Airport", + "keywords": "Kalyanpur Airport, VI75" + }, + { + "id": "3334", + "ident": "VI76", + "type": "small_airport", + "name": "Band Tal Airport", + "latitude_deg": "26.000099182128906", + "longitude_deg": "78.26180267333984", + "elevation_ft": "790", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "scheduled_service": "no", + "gps_code": "VI76", + "local_code": "VI76" + }, + { + "id": "3335", + "ident": "VI82", + "type": "small_airport", + "name": "Maa Ganga Airport Uttarkashi", + "latitude_deg": "30.582583", + "longitude_deg": "78.323164", + "elevation_ft": "2983", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UT", + "municipality": "Chinyalisour", + "scheduled_service": "no", + "gps_code": "VI82", + "local_code": "VI82", + "keywords": "Bharkot" + }, + { + "id": "3336", + "ident": "VI88", + "type": "small_airport", + "name": "Beas Airport", + "latitude_deg": "31.559999", + "longitude_deg": "75.341301", + "elevation_ft": "741", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-PB", + "municipality": "Bhaini", + "scheduled_service": "no", + "gps_code": "VI88", + "local_code": "VI88", + "keywords": "Jallowal Airport" + }, + { + "id": "3337", + "ident": "VI90", + "type": "small_airport", + "name": "Akbarpur Mahamaya Rajkiya Airport", + "latitude_deg": "26.447599", + "longitude_deg": "82.568199", + "elevation_ft": "288", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Akbarpur", + "scheduled_service": "no", + "gps_code": "VI90", + "local_code": "VI90" + }, + { + "id": "26537", + "ident": "VIAG", + "type": "medium_airport", + "name": "Agra Airport / Agra Air Force Station", + "latitude_deg": "27.157683", + "longitude_deg": "77.960942", + "elevation_ft": "551", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Agra", + "scheduled_service": "yes", + "gps_code": "VIAG", + "iata_code": "AGR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Agra_Airport", + "keywords": "Kheria Airport, Pandit Deen Dayal Upadhyay Airport, RAF Agra" + }, + { + "id": "298454", + "ident": "VIAH", + "type": "small_airport", + "name": "Dhanipur Airstrip", + "latitude_deg": "27.860856311", + "longitude_deg": "78.14686775210001", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Aligarth", + "scheduled_service": "no", + "gps_code": "VIAH" + }, + { + "id": "26538", + "ident": "VIAL", + "type": "medium_airport", + "name": "Prayagraj Deendayal Upadhyay Airport / Bamrauli Air Force Station", + "latitude_deg": "25.4401", + "longitude_deg": "81.733902", + "elevation_ft": "322", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Allahabad", + "scheduled_service": "yes", + "gps_code": "VEAB", + "iata_code": "IXD", + "home_link": "https://www.aai.aero/en/node/75695", + "wikipedia_link": "https://en.wikipedia.org/wiki/Prayagraj_Airport", + "keywords": "VIAL, Allahabad Bamrauli Airport, Bamrauli Air Force Station" + }, + { + "id": "26539", + "ident": "VIAM", + "type": "medium_airport", + "name": "Ambala Air Force Station", + "latitude_deg": "30.368099", + "longitude_deg": "76.816704", + "elevation_ft": "909", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HR", + "municipality": "Ambala", + "scheduled_service": "no", + "gps_code": "VIAM", + "local_code": "VI18", + "wikipedia_link": "https://en.wikipedia.org/wiki/Halwara_Air_Force_Base" + }, + { + "id": "26540", + "ident": "VIAR", + "type": "medium_airport", + "name": "Sri Guru Ram Dass Jee International Airport", + "latitude_deg": "31.7096", + "longitude_deg": "74.797302", + "elevation_ft": "756", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-PB", + "municipality": "Amritsar", + "scheduled_service": "yes", + "gps_code": "VIAR", + "iata_code": "ATQ", + "home_link": "http://www.aai.aero/allAirports/amritsar_generalinfo.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sri_Guru_Ram_Dass_Jee_International_Airport", + "keywords": "Amritsar Air Force Station" + }, + { + "id": "26541", + "ident": "VIAW", + "type": "small_airport", + "name": "Awantipura Air Force Station", + "latitude_deg": "33.876598", + "longitude_deg": "74.9757", + "elevation_ft": "5393", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-JK", + "municipality": "Awantipura", + "scheduled_service": "no", + "gps_code": "VIAW", + "keywords": "Awantipora, Awantipur" + }, + { + "id": "26542", + "ident": "VIAX", + "type": "small_airport", + "name": "Adampur Airport", + "latitude_deg": "31.4338", + "longitude_deg": "75.758797", + "elevation_ft": "775", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-PB", + "municipality": "Adampur", + "scheduled_service": "yes", + "gps_code": "VIAX", + "iata_code": "AIP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Adampur_Air_Force_Base", + "keywords": "Adampur Air Force Station" + }, + { + "id": "316886", + "ident": "VIB", + "type": "closed", + "name": "Villa Constitución Airport", + "latitude_deg": "25.0552", + "longitude_deg": "-111.6874", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-BCS", + "municipality": "Comondú", + "scheduled_service": "no", + "iata_code": "VIB" + }, + { + "id": "26543", + "ident": "VIBK", + "type": "medium_airport", + "name": "Nal Airport", + "latitude_deg": "28.070600509643555", + "longitude_deg": "73.20719909667969", + "elevation_ft": "750", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "municipality": "Bikaner", + "scheduled_service": "no", + "gps_code": "VIBK", + "iata_code": "BKB", + "keywords": "Nal Air Force Station" + }, + { + "id": "26544", + "ident": "VIBL", + "type": "small_airport", + "name": "Bakshi Ka Talab Air Force Station", + "latitude_deg": "26.988300323486328", + "longitude_deg": "80.89309692382812", + "elevation_ft": "385", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Lucknow", + "scheduled_service": "no", + "gps_code": "VIBL" + }, + { + "id": "26545", + "ident": "VIBN", + "type": "medium_airport", + "name": "Lal Bahadur Shastri Airport", + "latitude_deg": "25.452129", + "longitude_deg": "82.861805", + "elevation_ft": "266", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Varanasi", + "scheduled_service": "yes", + "gps_code": "VEBN", + "iata_code": "VNS", + "home_link": "https://www.aai.aero/en/airports/varanasi", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lal_Bahadur_Shastri_Airport", + "keywords": "VIBN, Babatpur Airport, Varanasi Airport" + }, + { + "id": "26546", + "ident": "VIBR", + "type": "medium_airport", + "name": "Kullu Manali Airport", + "latitude_deg": "31.876699", + "longitude_deg": "77.154404", + "elevation_ft": "3573", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HP", + "municipality": "Bhuntar", + "scheduled_service": "no", + "gps_code": "VIBR", + "iata_code": "KUU" + }, + { + "id": "26547", + "ident": "VIBT", + "type": "medium_airport", + "name": "Bhatinda Air Force Station", + "latitude_deg": "30.270099639892578", + "longitude_deg": "74.75579833984375", + "elevation_ft": "662", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-PB", + "scheduled_service": "no", + "gps_code": "VIBT", + "iata_code": "BUP" + }, + { + "id": "26548", + "ident": "VIBW", + "type": "small_airport", + "name": "Bhiwani Airport", + "latitude_deg": "28.836999893188477", + "longitude_deg": "76.1791000366211", + "elevation_ft": "720", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HR", + "scheduled_service": "no", + "gps_code": "VIBW" + }, + { + "id": "26549", + "ident": "VIBY", + "type": "medium_airport", + "name": "Bareilly Air Force Station", + "latitude_deg": "28.4221000671", + "longitude_deg": "79.45079803470001", + "elevation_ft": "580", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Bareilly", + "scheduled_service": "no", + "gps_code": "VIBY", + "iata_code": "BEK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trishul_Air-base", + "keywords": "Trishul Air Base" + }, + { + "id": "26550", + "ident": "VICG", + "type": "medium_airport", + "name": "Chandigarh International Airport", + "latitude_deg": "30.6735", + "longitude_deg": "76.788498", + "elevation_ft": "1012", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-CH", + "municipality": "Chandigarh", + "scheduled_service": "yes", + "gps_code": "VICG", + "iata_code": "IXC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chandigarh_Airport", + "keywords": "Chandigarh Air Force Station" + }, + { + "id": "26551", + "ident": "VICX", + "type": "medium_airport", + "name": "Kanpur Airport", + "latitude_deg": "26.404301", + "longitude_deg": "80.410103", + "elevation_ft": "410", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Kanpur", + "scheduled_service": "yes", + "gps_code": "VECX", + "iata_code": "KNU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kanpur_Airport", + "keywords": "VICX, Ganesh Shankar Vidyarthi Airport, Chakeri Air Force Station" + }, + { + "id": "26552", + "ident": "VIDD", + "type": "medium_airport", + "name": "Safdarjung Airport", + "latitude_deg": "28.585453", + "longitude_deg": "77.203563", + "elevation_ft": "705", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-DL", + "municipality": "New Delhi", + "scheduled_service": "no", + "gps_code": "VIDD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Safdarjung_Airport" + }, + { + "id": "26553", + "ident": "VIDF", + "type": "small_airport", + "name": "Pithoragarh Airport", + "latitude_deg": "29.593599", + "longitude_deg": "80.239197", + "elevation_ft": "4910", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UT", + "municipality": "Pithoragarh", + "scheduled_service": "no", + "gps_code": "VIDF" + }, + { + "id": "26554", + "ident": "VIDN", + "type": "medium_airport", + "name": "Dehradun Jolly Grant Airport", + "latitude_deg": "30.189243", + "longitude_deg": "78.176651", + "elevation_ft": "1831", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UT", + "municipality": "Dehradun (Jauligrant)", + "scheduled_service": "yes", + "gps_code": "VIDN", + "iata_code": "DED", + "home_link": "http://aai.aero/allAirports/dehradun_generalinfo.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jolly_Grant_Airport", + "keywords": "Jauligrant, Jolly Grant" + }, + { + "id": "26555", + "ident": "VIDP", + "type": "large_airport", + "name": "Indira Gandhi International Airport", + "latitude_deg": "28.55563", + "longitude_deg": "77.09519", + "elevation_ft": "777", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-DL", + "municipality": "New Delhi", + "scheduled_service": "yes", + "gps_code": "VIDP", + "iata_code": "DEL", + "home_link": "http://www.newdelhiairport.in/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Indira_Gandhi_International_Airport", + "keywords": "Palam Air Force Station" + }, + { + "id": "26556", + "ident": "VIDX", + "type": "small_airport", + "name": "Hindon Airport / Hindon Air Force Station", + "latitude_deg": "28.707701", + "longitude_deg": "77.358902", + "elevation_ft": "700", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Ghaziabad", + "scheduled_service": "yes", + "gps_code": "VIDX" + }, + { + "id": "333095", + "ident": "VIF", + "type": "heliport", + "name": "Vieste Heliport", + "latitude_deg": "41.866417", + "longitude_deg": "16.165116", + "elevation_ft": "14", + "continent": "EU", + "iso_country": "IT", + "iso_region": "IT-75", + "municipality": "Vieste", + "scheduled_service": "no", + "iata_code": "VIF" + }, + { + "id": "26557", + "ident": "VIGG", + "type": "medium_airport", + "name": "Kangra Airport", + "latitude_deg": "32.1651", + "longitude_deg": "76.263397", + "elevation_ft": "2525", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HP", + "municipality": "Gaggal", + "scheduled_service": "yes", + "gps_code": "VIGG", + "iata_code": "DHM" + }, + { + "id": "26558", + "ident": "VIGR", + "type": "medium_airport", + "name": "Gwalior Airport", + "latitude_deg": "26.29330062866211", + "longitude_deg": "78.22779846191406", + "elevation_ft": "617", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "municipality": "Gwalior", + "scheduled_service": "yes", + "gps_code": "VIGR", + "iata_code": "GWL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gwalior_Airport", + "keywords": "Maharajpur Air Force Station" + }, + { + "id": "26559", + "ident": "VIHR", + "type": "medium_airport", + "name": "Hissar Airport", + "latitude_deg": "29.179399490356445", + "longitude_deg": "75.75530242919922", + "elevation_ft": "700", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HR", + "scheduled_service": "no", + "gps_code": "VIHR", + "iata_code": "HSS" + }, + { + "id": "26560", + "ident": "VIHX", + "type": "small_airport", + "name": "Halwara Air Force Station", + "latitude_deg": "30.748501", + "longitude_deg": "75.629799", + "elevation_ft": "790", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-PB", + "municipality": "Halwara", + "scheduled_service": "no", + "gps_code": "VIHX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Halwara_Air_Force_Station", + "keywords": "Ludhiana International Airport" + }, + { + "id": "26561", + "ident": "VIJN", + "type": "small_airport", + "name": "Jhansi Airport", + "latitude_deg": "25.491199493408203", + "longitude_deg": "78.55840301513672", + "elevation_ft": "801", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "scheduled_service": "no", + "gps_code": "VIJN" + }, + { + "id": "26562", + "ident": "VIJO", + "type": "medium_airport", + "name": "Jodhpur Airport", + "latitude_deg": "26.251100540161133", + "longitude_deg": "73.04889678955078", + "elevation_ft": "717", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "municipality": "Jodhpur", + "scheduled_service": "yes", + "gps_code": "VIJO", + "iata_code": "JDH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jodhpur_Airport", + "keywords": "Jodhpur Air Force Station" + }, + { + "id": "26563", + "ident": "VIJP", + "type": "medium_airport", + "name": "Jaipur International Airport", + "latitude_deg": "26.8242", + "longitude_deg": "75.812202", + "elevation_ft": "1263", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "municipality": "Jaipur", + "scheduled_service": "yes", + "gps_code": "VIJP", + "iata_code": "JAI", + "home_link": "https://www.jaipurairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jaipur_International_Airport" + }, + { + "id": "26564", + "ident": "VIJR", + "type": "medium_airport", + "name": "Jaisalmer Airport", + "latitude_deg": "26.888700485229492", + "longitude_deg": "70.86499786376953", + "elevation_ft": "751", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "scheduled_service": "no", + "gps_code": "VIJR", + "iata_code": "JSA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jaisalmer_Airport", + "keywords": "Jaisalmer Air Force Station" + }, + { + "id": "26565", + "ident": "VIJU", + "type": "medium_airport", + "name": "Jammu Airport", + "latitude_deg": "32.688849", + "longitude_deg": "74.838152", + "elevation_ft": "996", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-JK", + "municipality": "Jammu", + "scheduled_service": "yes", + "gps_code": "VIJU", + "iata_code": "IXJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jammu_Airport", + "keywords": "Satwari Airport" + }, + { + "id": "26566", + "ident": "VIKA", + "type": "small_airport", + "name": "Kanpur Civil Airport", + "latitude_deg": "26.440857", + "longitude_deg": "80.365029", + "elevation_ft": "411", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Kanpur", + "scheduled_service": "no", + "gps_code": "VIKA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kanpur_Civil_Airport" + }, + { + "id": "327453", + "ident": "VIKG", + "type": "medium_airport", + "name": "Kishangarh Airport Ajmer", + "latitude_deg": "26.591007", + "longitude_deg": "74.812956", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "municipality": "Ajmer (Kishangarh)", + "scheduled_service": "yes", + "gps_code": "VIKG", + "iata_code": "KQH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kishangarh_Airport" + }, + { + "id": "26567", + "ident": "VIKO", + "type": "medium_airport", + "name": "Kota Airport", + "latitude_deg": "25.160200119", + "longitude_deg": "75.84559631350001", + "elevation_ft": "896", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "municipality": "Kota", + "scheduled_service": "no", + "gps_code": "VIKO", + "iata_code": "KTU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kota_Airport" + }, + { + "id": "26568", + "ident": "VILD", + "type": "medium_airport", + "name": "Ludhiana Airport", + "latitude_deg": "30.854700088500977", + "longitude_deg": "75.95259857177734", + "elevation_ft": "834", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-PB", + "scheduled_service": "no", + "gps_code": "VILD", + "iata_code": "LUH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sahnewal_Airport" + }, + { + "id": "26569", + "ident": "VILH", + "type": "medium_airport", + "name": "Leh Kushok Bakula Rimpochee Airport", + "latitude_deg": "34.135899", + "longitude_deg": "77.546501", + "elevation_ft": "10682", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LA", + "municipality": "Leh", + "scheduled_service": "yes", + "gps_code": "VILH", + "iata_code": "IXL", + "home_link": "http://airportsindia.org.in/allAirports/leh_generalinfo.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leh_Kushok_Bakula_Rimpochee_Airport", + "keywords": "Leh Air Force Station" + }, + { + "id": "26570", + "ident": "VILK", + "type": "medium_airport", + "name": "Chaudhary Charan Singh International Airport", + "latitude_deg": "26.7605991364", + "longitude_deg": "80.8892974854", + "elevation_ft": "410", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Lucknow", + "scheduled_service": "yes", + "gps_code": "VILK", + "iata_code": "LKO", + "home_link": "http://aai.aero/allAirports/lucknow_generalinfo.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amausi_Airport", + "keywords": "Amausi International Airport" + }, + { + "id": "32576", + "ident": "VILP", + "type": "small_airport", + "name": "Lalitpur Airport", + "latitude_deg": "24.716999053955078", + "longitude_deg": "78.41699981689453", + "elevation_ft": "1204", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Lalitpur", + "scheduled_service": "no", + "gps_code": "VILP" + }, + { + "id": "26571", + "ident": "VIPK", + "type": "medium_airport", + "name": "Pathankot Airport", + "latitude_deg": "32.233611", + "longitude_deg": "75.634444", + "elevation_ft": "1017", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-PB", + "municipality": "Pathankot", + "scheduled_service": "yes", + "gps_code": "VIPK", + "iata_code": "IXP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pathankot_Airport" + }, + { + "id": "26572", + "ident": "VIPL", + "type": "small_airport", + "name": "Patiala Airport", + "latitude_deg": "30.314800262451172", + "longitude_deg": "76.364501953125", + "elevation_ft": "820", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-PB", + "scheduled_service": "no", + "gps_code": "VIPL" + }, + { + "id": "26573", + "ident": "VIPT", + "type": "medium_airport", + "name": "Pantnagar Airport", + "latitude_deg": "29.0334", + "longitude_deg": "79.473701", + "elevation_ft": "769", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Pantnagar", + "scheduled_service": "yes", + "gps_code": "VIPT", + "iata_code": "PGH", + "keywords": "Panthnagar" + }, + { + "id": "26574", + "ident": "VIRB", + "type": "small_airport", + "name": "Fursatganj Airport", + "latitude_deg": "26.248501", + "longitude_deg": "81.380501", + "elevation_ft": "360", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Tarauna", + "scheduled_service": "no", + "gps_code": "VERB" + }, + { + "id": "26575", + "ident": "VISA", + "type": "medium_airport", + "name": "Sirsa Air Force Station", + "latitude_deg": "29.56060028076172", + "longitude_deg": "75.006103515625", + "elevation_ft": "650", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HR", + "scheduled_service": "no", + "gps_code": "VISA" + }, + { + "id": "26576", + "ident": "VISM", + "type": "small_airport", + "name": "Shimla Airport", + "latitude_deg": "31.0818", + "longitude_deg": "77.068001", + "elevation_ft": "5072", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-HP", + "municipality": "Jubbarhatti", + "scheduled_service": "no", + "gps_code": "VISM", + "iata_code": "SLV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shimla_Airport" + }, + { + "id": "26577", + "ident": "VISP", + "type": "small_airport", + "name": "Sarsawa Air Force Station", + "latitude_deg": "29.994303", + "longitude_deg": "77.42456", + "elevation_ft": "891", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-UP", + "municipality": "Sherpur Naqeebpur", + "scheduled_service": "no", + "gps_code": "VISP", + "keywords": "Sarsawan" + }, + { + "id": "26578", + "ident": "VISR", + "type": "medium_airport", + "name": "Sheikh ul Alam International Airport", + "latitude_deg": "33.987099", + "longitude_deg": "74.7742", + "elevation_ft": "5429", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-JK", + "municipality": "Srinagar", + "scheduled_service": "yes", + "gps_code": "VISR", + "iata_code": "SXR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Srinagar_Airport", + "keywords": "Srinagar Air Force Station" + }, + { + "id": "26579", + "ident": "VIST", + "type": "small_airport", + "name": "Satna Airport", + "latitude_deg": "24.56262", + "longitude_deg": "80.852927", + "elevation_ft": "1060", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MP", + "scheduled_service": "yes", + "gps_code": "VEST", + "iata_code": "TNI", + "home_link": "https://www.aai.aero/en/airports/satna", + "wikipedia_link": "https://en.wikipedia.org/wiki/Satna_Airport", + "keywords": "VIST" + }, + { + "id": "26580", + "ident": "VIUT", + "type": "small_airport", + "name": "Uttarlai Airport", + "latitude_deg": "25.812999725341797", + "longitude_deg": "71.4822998046875", + "elevation_ft": "500", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-RJ", + "scheduled_service": "no", + "gps_code": "VIUT", + "keywords": "Uttarlai Air Force Station" + }, + { + "id": "26581", + "ident": "VIUX", + "type": "medium_airport", + "name": "Udhampur Air Force Station", + "latitude_deg": "32.902152", + "longitude_deg": "75.155709", + "elevation_ft": "2066", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-JK", + "municipality": "Udhampur", + "scheduled_service": "no", + "gps_code": "VIUX" + }, + { + "id": "307240", + "ident": "VIV", + "type": "small_airport", + "name": "Vivigani Airfield", + "latitude_deg": "-9.30333333333", + "longitude_deg": "150.318888889", + "elevation_ft": "117", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Vivigani", + "scheduled_service": "no", + "iata_code": "VIV", + "local_code": "VIV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vivigani_Airfield" + }, + { + "id": "316948", + "ident": "VJQ", + "type": "small_airport", + "name": "Gurue Airport", + "latitude_deg": "-15.5062", + "longitude_deg": "36.9904", + "elevation_ft": "2248", + "continent": "AF", + "iso_country": "MZ", + "iso_region": "MZ-Q", + "municipality": "Gurue", + "scheduled_service": "no", + "iata_code": "VJQ" + }, + { + "id": "25497", + "ident": "VKX", + "type": "small_airport", + "name": "Potomac Airfield", + "latitude_deg": "38.74760056", + "longitude_deg": "-76.9571991", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Friendly", + "scheduled_service": "no", + "gps_code": "KVKX", + "local_code": "VKX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Potomac_Airfield", + "keywords": "DC3, FRZ, ADIZ" + }, + { + "id": "30647", + "ident": "VLAP", + "type": "small_airport", + "name": "Attopeu Airport", + "latitude_deg": "14.793056", + "longitude_deg": "107.045278", + "elevation_ft": "344", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-AT", + "municipality": "Attopeu", + "scheduled_service": "no", + "gps_code": "VLAP", + "iata_code": "AOU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Attapeu_International_Airport" + }, + { + "id": "26582", + "ident": "VLHS", + "type": "small_airport", + "name": "Ban Huoeisay Airport", + "latitude_deg": "20.2572994232", + "longitude_deg": "100.43699646", + "elevation_ft": "1380", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-BK", + "municipality": "Huay Xai", + "scheduled_service": "yes", + "gps_code": "VLHS", + "iata_code": "HOE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ban_Huoeisay_Airport", + "keywords": "Ban Houayxay, Ban Houei Sai, Ban Huay Xai, ສະໜາມບິນບໍ່ແກ້ວ," + }, + { + "id": "26583", + "ident": "VLLB", + "type": "medium_airport", + "name": "Luang Phabang International Airport", + "latitude_deg": "19.897300720214844", + "longitude_deg": "102.16100311279297", + "elevation_ft": "955", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-LP", + "municipality": "Luang Phabang", + "scheduled_service": "yes", + "gps_code": "VLLB", + "iata_code": "LPQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Luang_Prabang_International_Airport" + }, + { + "id": "31868", + "ident": "VLLN", + "type": "small_airport", + "name": "Luang Namtha Airport", + "latitude_deg": "20.966999", + "longitude_deg": "101.400002", + "elevation_ft": "1968", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-LM", + "municipality": "Luang Namtha", + "scheduled_service": "yes", + "gps_code": "VLLN", + "iata_code": "LXG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Louang_Namtha_Airport" + }, + { + "id": "32582", + "ident": "VLOS", + "type": "small_airport", + "name": "Oudomsay Airport", + "latitude_deg": "20.68269920349121", + "longitude_deg": "101.99400329589844", + "elevation_ft": "1804", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-OU", + "municipality": "Oudomsay", + "scheduled_service": "yes", + "gps_code": "VLOS", + "iata_code": "ODY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oudomsay_Airport" + }, + { + "id": "26584", + "ident": "VLPS", + "type": "medium_airport", + "name": "Pakse International Airport", + "latitude_deg": "15.132100105285645", + "longitude_deg": "105.78099822998047", + "elevation_ft": "351", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-CH", + "municipality": "Pakse", + "scheduled_service": "yes", + "gps_code": "VLPS", + "iata_code": "PKZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pakse_Airport" + }, + { + "id": "26585", + "ident": "VLPV", + "type": "small_airport", + "name": "Phonesavanh Airport", + "latitude_deg": "19.45490074157715", + "longitude_deg": "103.21800231933594", + "elevation_ft": "3628", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-XI", + "scheduled_service": "no", + "gps_code": "VLPV" + }, + { + "id": "32741", + "ident": "VLSB", + "type": "small_airport", + "name": "Sayaboury Airport", + "latitude_deg": "19.2436", + "longitude_deg": "101.7093", + "elevation_ft": "962", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-XA", + "municipality": "Sainyabuli", + "scheduled_service": "yes", + "gps_code": "VLSB", + "iata_code": "ZBY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sayaboury_Airport" + }, + { + "id": "26586", + "ident": "VLSK", + "type": "medium_airport", + "name": "Savannakhet Airport", + "latitude_deg": "16.55660057067871", + "longitude_deg": "104.76000213623047", + "elevation_ft": "509", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-SV", + "scheduled_service": "no", + "gps_code": "VLSK", + "iata_code": "ZVK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Savannakhet_Airport" + }, + { + "id": "26587", + "ident": "VLSN", + "type": "medium_airport", + "name": "Sam Neua Airport", + "latitude_deg": "20.418399810791016", + "longitude_deg": "104.06700134277344", + "elevation_ft": "3281", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-HO", + "scheduled_service": "no", + "gps_code": "VLSN", + "iata_code": "NEU" + }, + { + "id": "32585", + "ident": "VLSV", + "type": "small_airport", + "name": "Saravane Airport", + "latitude_deg": "15.709439207700001", + "longitude_deg": "106.410698891", + "elevation_ft": "574", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-SL", + "municipality": "Saravane", + "scheduled_service": "no", + "gps_code": "VLSV", + "iata_code": "VNA" + }, + { + "id": "32445", + "ident": "VLTK", + "type": "small_airport", + "name": "Thakhek Airport", + "latitude_deg": "17.377917", + "longitude_deg": "104.857378", + "elevation_ft": "449", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-KH", + "municipality": "Thakhek", + "scheduled_service": "no", + "gps_code": "VLTK", + "iata_code": "THK" + }, + { + "id": "26588", + "ident": "VLVT", + "type": "medium_airport", + "name": "Wattay International Airport", + "latitude_deg": "17.988300323500003", + "longitude_deg": "102.56300354", + "elevation_ft": "564", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-VT", + "municipality": "Vientiane", + "scheduled_service": "yes", + "gps_code": "VLVT", + "iata_code": "VTE", + "home_link": "http://www.vientianeairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wattay_International_Airport" + }, + { + "id": "32703", + "ident": "VLXK", + "type": "small_airport", + "name": "Xieng Khouang Airport", + "latitude_deg": "19.450001", + "longitude_deg": "103.157997", + "elevation_ft": "3445", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-XI", + "municipality": "Xieng Khouang", + "scheduled_service": "yes", + "gps_code": "VLXK", + "iata_code": "XKH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Xieng_Khouang_Airport" + }, + { + "id": "317828", + "ident": "VLXL", + "type": "small_airport", + "name": "Xienglom Airport", + "latitude_deg": "19.6203", + "longitude_deg": "100.815332", + "elevation_ft": "1830", + "continent": "AS", + "iso_country": "LA", + "iso_region": "LA-BK", + "municipality": "Xienglom", + "scheduled_service": "no", + "gps_code": "VLXL", + "iata_code": "XIE", + "wikipedia_link": "https://pl.wikipedia.org/wiki/Port_lotniczy_Xienglom" + }, + { + "id": "41567", + "ident": "VMI", + "type": "small_airport", + "name": "Dr Juan Plate Airport", + "latitude_deg": "-22.159109", + "longitude_deg": "-57.942581", + "elevation_ft": "280", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-1", + "municipality": "Puerto Vallemi", + "scheduled_service": "no", + "iata_code": "VMI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dr._Juan_Plate_Airport" + }, + { + "id": "26589", + "ident": "VMMC", + "type": "large_airport", + "name": "Macau International Airport", + "latitude_deg": "22.149599", + "longitude_deg": "113.592003", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "MO", + "iso_region": "MO-U-A", + "municipality": "Freguesia de Nossa Senhora do Carmo (Taipa)", + "scheduled_service": "yes", + "gps_code": "VMMC", + "iata_code": "MFM", + "home_link": "http://www.macau-airport.gov.mo/en/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Macau_International_Airport", + "keywords": "澳門國際機場" + }, + { + "id": "35144", + "ident": "VN-0001", + "type": "medium_airport", + "name": "Dong Hoi Airport", + "latitude_deg": "17.515", + "longitude_deg": "106.590556", + "elevation_ft": "59", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-NC", + "municipality": "Dong Hoi", + "scheduled_service": "yes", + "gps_code": "VVDH", + "iata_code": "VDH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dong_Hoi_Airport" + }, + { + "id": "46218", + "ident": "VN-0002", + "type": "closed", + "name": "Duc My Airstrip", + "latitude_deg": "12.5384566216", + "longitude_deg": "109.007956982", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Duc My", + "scheduled_service": "no" + }, + { + "id": "46318", + "ident": "VN-0003", + "type": "heliport", + "name": "Bach Mai Heliport", + "latitude_deg": "20.996632", + "longitude_deg": "105.832232", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-RRD", + "municipality": "Hanoi (Thanh Xuan)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bach_Mai_Airfield", + "keywords": "Bac Mai Airfield, Sân bay Bach Mai" + }, + { + "id": "313727", + "ident": "VN-0004", + "type": "small_airport", + "name": "Yen Bai Air Base", + "latitude_deg": "21.732873", + "longitude_deg": "104.853601", + "elevation_ft": "131", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-NW", + "municipality": "Yen Bai", + "scheduled_service": "no", + "gps_code": "VVYB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Y%C3%AAn_B%C3%A1i_Air_Base", + "keywords": "Sân bay Quân sự Yên Bái" + }, + { + "id": "314645", + "ident": "VN-0005", + "type": "small_airport", + "name": "Đảo Trường Sa (Spratly Island) Airport", + "latitude_deg": "8.644541", + "longitude_deg": "111.920347", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Trường Sa (Đảo Trường Sa / Spratly Island)", + "scheduled_service": "no" + }, + { + "id": "314650", + "ident": "VN-0006", + "type": "heliport", + "name": "Đảo Nam Yết (Namyit Island) Helipad", + "latitude_deg": "10.178882", + "longitude_deg": "114.368989", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Trường Sa (Đảo Nam Yết / Namyit island)", + "scheduled_service": "no" + }, + { + "id": "314653", + "ident": "VN-0007", + "type": "heliport", + "name": "Đá Tây (West London Reef) Helipad", + "latitude_deg": "8.845476", + "longitude_deg": "112.195874", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Trường Sa (Đá Tây / West London Reef)", + "scheduled_service": "no" + }, + { + "id": "314654", + "ident": "VN-0008", + "type": "heliport", + "name": "Đá Lớn (Discovery Great Reef) Helipad", + "latitude_deg": "10.022871", + "longitude_deg": "113.854429", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Trường Sa (Đá Lớn / Discovery Great Reef)", + "scheduled_service": "no" + }, + { + "id": "314655", + "ident": "VN-0009", + "type": "heliport", + "name": "Đảo Phan Vinh (Pearson Reef B) Helipad", + "latitude_deg": "8.959083", + "longitude_deg": "113.653409", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Trường Sa (Đảo Phan Vinh / Pearson Reef B)", + "scheduled_service": "no" + }, + { + "id": "316654", + "ident": "VN-0010", + "type": "closed", + "name": "Phu Quoc Airport", + "latitude_deg": "10.2270002365", + "longitude_deg": "103.967002869", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SW", + "municipality": "Duong Dong", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Phu_Quoc_Airport" + }, + { + "id": "316992", + "ident": "VN-0011", + "type": "heliport", + "name": "Năm Căn Heliport", + "latitude_deg": "8.754521", + "longitude_deg": "104.983229", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SW", + "municipality": "Năm Căn", + "scheduled_service": "no", + "keywords": "Năm Căn Airfield" + }, + { + "id": "328642", + "ident": "VN-0012", + "type": "closed", + "name": "Nước Mặn (Marble Mountain) Air Facility", + "latitude_deg": "16.029341", + "longitude_deg": "108.252693", + "elevation_ft": "29", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Da Nang", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marble_Mountain_Air_Facility", + "keywords": "Da Nang East Airfield, Khuê Mỹ" + }, + { + "id": "328643", + "ident": "VN-0013", + "type": "closed", + "name": "Red Beach Airfield", + "latitude_deg": "16.096", + "longitude_deg": "108.143", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Da Nang", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Red_Beach_Base_Area" + }, + { + "id": "339023", + "ident": "VN-0014", + "type": "heliport", + "name": "Central Pediatric Institute Helipad", + "latitude_deg": "21.02465", + "longitude_deg": "105.80721", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-RRD", + "municipality": "Hanoi (Dong Da)", + "scheduled_service": "no" + }, + { + "id": "339024", + "ident": "VN-0015", + "type": "heliport", + "name": "Keangnam Tower A Helipad", + "latitude_deg": "21.018246", + "longitude_deg": "105.784203", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-RRD", + "municipality": "Hanoi (Nam Tu Liem)", + "scheduled_service": "no" + }, + { + "id": "339025", + "ident": "VN-0016", + "type": "heliport", + "name": "Keangnam Tower B Helipad", + "latitude_deg": "21.017639", + "longitude_deg": "105.783358", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-RRD", + "municipality": "Hanoi (Nam Tu Liem)", + "scheduled_service": "no" + }, + { + "id": "339026", + "ident": "VN-0017", + "type": "heliport", + "name": "Keangnam Hanoi Landmark Tower Helipad", + "latitude_deg": "21.016751", + "longitude_deg": "105.784181", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-RRD", + "municipality": "Hanoi (Nam Tu Liem)", + "scheduled_service": "no" + }, + { + "id": "342100", + "ident": "VN-0018", + "type": "closed", + "name": "Long Thanh International Airport (under construction)", + "latitude_deg": "10.7725", + "longitude_deg": "107.045278", + "elevation_ft": "249", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SE", + "municipality": "Ho Chi Minh City (Long Thanh)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Long_Thanh_International_Airport" + }, + { + "id": "351429", + "ident": "VN-0019", + "type": "small_airport", + "name": "Phu Quy Airport", + "latitude_deg": "10.53367", + "longitude_deg": "108.92867", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Phu Quy", + "scheduled_service": "no" + }, + { + "id": "354332", + "ident": "VN-0020", + "type": "small_airport", + "name": "Ongkarak Airport (Klong 16)", + "latitude_deg": "14.10993", + "longitude_deg": "101.00166", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-26", + "municipality": "Ongkarak", + "scheduled_service": "no", + "local_code": "VT16" + }, + { + "id": "354340", + "ident": "VN-0021", + "type": "heliport", + "name": "Amboyna Cay Heliport", + "latitude_deg": "7.891412", + "longitude_deg": "112.921032", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Trường Sa district", + "scheduled_service": "no" + }, + { + "id": "354396", + "ident": "VN-0022", + "type": "heliport", + "name": "Central London Reef helipad", + "latitude_deg": "8.930803", + "longitude_deg": "112.35265", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Trường Sa Đông", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/London_Reefs" + }, + { + "id": "354398", + "ident": "VN-0023", + "type": "heliport", + "name": "Hospital helipad", + "latitude_deg": "8.644365", + "longitude_deg": "111.918647", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Trường Sa (Đảo Trường Sa / Spratly Island)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Spratly_Island" + }, + { + "id": "354399", + "ident": "VN-0024", + "type": "heliport", + "name": "Đảo Phan Vinh (Pearson Reef A) Helipad", + "latitude_deg": "8.975395", + "longitude_deg": "113.707745", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Trường Sa (Đảo Phan Vinh / Pearson Reef A)", + "scheduled_service": "no" + }, + { + "id": "354401", + "ident": "VN-0025", + "type": "heliport", + "name": "Sand Cay Helipad", + "latitude_deg": "10.373477", + "longitude_deg": "114.481165", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Đảo Sơn Ca", + "scheduled_service": "no", + "wikipedia_link": "https://vi.wikipedia.org/wiki/%C4%90%E1%BA%A3o_S%C6%A1n_Ca" + }, + { + "id": "354403", + "ident": "VN-0026", + "type": "heliport", + "name": "Sin Cowe Island Helipad", + "latitude_deg": "9.884198", + "longitude_deg": "114.331133", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Trường Sa district / Sinh Ton Commune", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sin_Cowe_Island" + }, + { + "id": "354405", + "ident": "VN-0027", + "type": "heliport", + "name": "Sin Cowe East Island Helipad", + "latitude_deg": "9.903182", + "longitude_deg": "114.563638", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Trường Sa district / Sinh Ton Commune", + "scheduled_service": "no", + "wikipedia_link": "https://vi.wikipedia.org/wiki/vi:Sinh Tồn (xã)" + }, + { + "id": "354411", + "ident": "VN-0028", + "type": "heliport", + "name": "Southwest Cay Helipad", + "latitude_deg": "11.429637", + "longitude_deg": "114.332163", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Song Tu Tay", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Southwest_Cay" + }, + { + "id": "430076", + "ident": "VN-0029", + "type": "closed", + "name": "Phu Tho Municipal Airport", + "latitude_deg": "21.39981", + "longitude_deg": "105.20861", + "elevation_ft": "138", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-NW", + "municipality": "Phu Tho", + "scheduled_service": "no" + }, + { + "id": "430077", + "ident": "VN-0030", + "type": "small_airport", + "name": "Hoa Lac Airfield", + "latitude_deg": "21.028592", + "longitude_deg": "105.493469", + "elevation_ft": "128", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-RRD", + "municipality": "Hanoi (Thach That)", + "scheduled_service": "no" + }, + { + "id": "430078", + "ident": "VN-0031", + "type": "seaplane_base", + "name": "Hai Au Seaplane Base", + "latitude_deg": "20.916443", + "longitude_deg": "106.989654", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-NE", + "municipality": "Ha Long", + "scheduled_service": "no" + }, + { + "id": "430079", + "ident": "VN-0032", + "type": "heliport", + "name": "Tuan Chau Heliport", + "latitude_deg": "20.92382", + "longitude_deg": "106.99229", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-NE", + "municipality": "Ha Long", + "scheduled_service": "no" + }, + { + "id": "430080", + "ident": "VN-0033", + "type": "heliport", + "name": "Ha Long Heliport", + "latitude_deg": "20.96198", + "longitude_deg": "107.05843", + "elevation_ft": "226", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-NE", + "municipality": "Ha Long", + "scheduled_service": "no" + }, + { + "id": "430081", + "ident": "VN-0034", + "type": "heliport", + "name": "108 Hospital Northeast Heliport", + "latitude_deg": "21.01809", + "longitude_deg": "105.86157", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-RRD", + "municipality": "Hanoi (Hoan Kiem)", + "scheduled_service": "no" + }, + { + "id": "430082", + "ident": "VN-0035", + "type": "heliport", + "name": "108 Hospital North Tower Heliport", + "latitude_deg": "21.01721", + "longitude_deg": "105.85995", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-U-A", + "municipality": "Hanoi (Hoan Kiem)", + "scheduled_service": "no" + }, + { + "id": "430083", + "ident": "VN-0036", + "type": "heliport", + "name": "108 Hospital South Tower Heliport", + "latitude_deg": "21.01647", + "longitude_deg": "105.86016", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-U-A", + "municipality": "Hanoi (Hoan Kiem)", + "scheduled_service": "no" + }, + { + "id": "430088", + "ident": "VN-0037", + "type": "closed", + "name": "Tay Loc Airfield", + "latitude_deg": "16.47629", + "longitude_deg": "107.56879", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-NC", + "municipality": "Huế", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/T%C3%A2y_L%E1%BB%99c_Airfield", + "keywords": "Tây Lộc Airfield, Huế Citadel Airfield" + }, + { + "id": "430098", + "ident": "VN-0038", + "type": "closed", + "name": "Bu Dop Airport", + "latitude_deg": "12.02068", + "longitude_deg": "106.81091", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SE", + "municipality": "Bu Dop", + "scheduled_service": "no" + }, + { + "id": "430099", + "ident": "VN-0039", + "type": "closed", + "name": "Phuoc Binh Airport", + "latitude_deg": "11.82115", + "longitude_deg": "106.96111", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SE", + "municipality": "Phuoc Binh", + "scheduled_service": "no" + }, + { + "id": "430100", + "ident": "VN-0040", + "type": "closed", + "name": "Tan Loi Airport", + "latitude_deg": "11.67391", + "longitude_deg": "106.66366", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SE", + "municipality": "Tan Loi", + "scheduled_service": "no" + }, + { + "id": "430101", + "ident": "VN-0041", + "type": "closed", + "name": "Minh Tam Airport", + "latitude_deg": "11.58743", + "longitude_deg": "106.4887", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SE", + "municipality": "Hon Quan", + "scheduled_service": "no" + }, + { + "id": "430102", + "ident": "VN-0042", + "type": "closed", + "name": "Dau Tieng Airport", + "latitude_deg": "11.28692", + "longitude_deg": "106.36333", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SE", + "municipality": "Dau Tieng", + "scheduled_service": "no" + }, + { + "id": "430103", + "ident": "VN-0043", + "type": "closed", + "name": "Chon Thanh Airport", + "latitude_deg": "11.40283", + "longitude_deg": "106.6168", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SE", + "municipality": "Chon Thanh", + "scheduled_service": "no" + }, + { + "id": "430104", + "ident": "VN-0044", + "type": "small_airport", + "name": "Phu Giao Airport", + "latitude_deg": "11.30034", + "longitude_deg": "106.79325", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SE", + "municipality": "Phu Giao", + "scheduled_service": "no" + }, + { + "id": "430105", + "ident": "VN-0045", + "type": "closed", + "name": "Long Khanh Airport", + "latitude_deg": "10.91308", + "longitude_deg": "107.24561", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SE", + "municipality": "Long Khanh", + "scheduled_service": "no" + }, + { + "id": "430106", + "ident": "VN-0046", + "type": "closed", + "name": "Thong Binh Airport", + "latitude_deg": "10.92421", + "longitude_deg": "105.50921", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SW", + "municipality": "Thong Binh", + "scheduled_service": "no" + }, + { + "id": "430107", + "ident": "VN-0047", + "type": "closed", + "name": "Dak Mil Airport", + "latitude_deg": "12.43221", + "longitude_deg": "107.66625", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-CH", + "municipality": "Dak Mil", + "scheduled_service": "no" + }, + { + "id": "430108", + "ident": "VN-0048", + "type": "closed", + "name": "Can Tho Army Airfield", + "latitude_deg": "10.05125", + "longitude_deg": "105.76271", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SW", + "municipality": "Can Tho", + "scheduled_service": "no" + }, + { + "id": "430109", + "ident": "VN-0049", + "type": "closed", + "name": "Binh Duong Airport", + "latitude_deg": "10.99827", + "longitude_deg": "106.69953", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SW", + "municipality": "Binh Duong", + "scheduled_service": "no" + }, + { + "id": "430110", + "ident": "VN-0050", + "type": "closed", + "name": "Chau Duc Airport", + "latitude_deg": "10.56844", + "longitude_deg": "107.18631", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SW", + "municipality": "Chau Duc", + "scheduled_service": "no", + "keywords": "Luscombe" + }, + { + "id": "35153", + "ident": "VN-KON", + "type": "closed", + "name": "Kontum Airport", + "latitude_deg": "14.356075", + "longitude_deg": "108.016667", + "elevation_ft": "1804", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-CH", + "municipality": "Kontum", + "scheduled_service": "no", + "iata_code": "KON", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kontum_Airfield" + }, + { + "id": "30760", + "ident": "VNBG", + "type": "small_airport", + "name": "Bajhang Airport", + "latitude_deg": "29.538999557495117", + "longitude_deg": "81.1854019165039", + "elevation_ft": "4100", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P7", + "municipality": "Bajhang", + "scheduled_service": "no", + "gps_code": "VNBG", + "iata_code": "BJH" + }, + { + "id": "30706", + "ident": "VNBJ", + "type": "small_airport", + "name": "Bhojpur Airport", + "latitude_deg": "27.14739990234375", + "longitude_deg": "87.05079650878906", + "elevation_ft": "4000", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Bhojpur", + "scheduled_service": "no", + "gps_code": "VNBJ", + "iata_code": "BHP" + }, + { + "id": "30701", + "ident": "VNBL", + "type": "small_airport", + "name": "Baglung Airport", + "latitude_deg": "28.212799072265625", + "longitude_deg": "83.66629791259766", + "elevation_ft": "3320", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P4", + "municipality": "Baglung", + "scheduled_service": "no", + "gps_code": "VNBL", + "iata_code": "BGL" + }, + { + "id": "30707", + "ident": "VNBP", + "type": "small_airport", + "name": "Bharatpur Airport", + "latitude_deg": "27.678101", + "longitude_deg": "84.429398", + "elevation_ft": "600", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P3", + "municipality": "Bharatpur", + "scheduled_service": "yes", + "gps_code": "VNBP", + "iata_code": "BHR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bharatpur_Airport" + }, + { + "id": "30761", + "ident": "VNBR", + "type": "small_airport", + "name": "Bajura Airport", + "latitude_deg": "29.50200080871582", + "longitude_deg": "81.66899871826172", + "elevation_ft": "4300", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P7", + "municipality": "Bajura", + "scheduled_service": "no", + "gps_code": "VNBR", + "iata_code": "BJU" + }, + { + "id": "30753", + "ident": "VNBT", + "type": "small_airport", + "name": "Baitadi Airport", + "latitude_deg": "29.463421", + "longitude_deg": "80.548968", + "elevation_ft": "4200", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P7", + "municipality": "Baitadi", + "scheduled_service": "no", + "gps_code": "VNBT", + "iata_code": "BIT" + }, + { + "id": "26593", + "ident": "VNBW", + "type": "medium_airport", + "name": "Gautam Buddha International Airport", + "latitude_deg": "27.505328", + "longitude_deg": "83.412594", + "elevation_ft": "358", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P5", + "municipality": "Siddharthanagar (Bhairahawa)", + "scheduled_service": "yes", + "gps_code": "VNBW", + "iata_code": "BWA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gautam_Buddha_Airport", + "keywords": "Bhairahawa Airport" + }, + { + "id": "26594", + "ident": "VNCG", + "type": "small_airport", + "name": "Bhadrapur Airport", + "latitude_deg": "26.5708007812", + "longitude_deg": "88.07959747310001", + "elevation_ft": "300", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Bhadrapur", + "scheduled_service": "yes", + "gps_code": "VNCG", + "iata_code": "BDP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bhadrapur_Airport", + "keywords": "Chandragadhi Airport" + }, + { + "id": "30931", + "ident": "VNDG", + "type": "small_airport", + "name": "Tulsipur Airport", + "latitude_deg": "28.111099243164062", + "longitude_deg": "82.29419708251953", + "elevation_ft": "2100", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P5", + "municipality": "Dang", + "scheduled_service": "no", + "gps_code": "VNDG", + "iata_code": "DNP" + }, + { + "id": "30913", + "ident": "VNDH", + "type": "small_airport", + "name": "Dhangarhi Airport", + "latitude_deg": "28.7533", + "longitude_deg": "80.581902", + "elevation_ft": "690", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P7", + "municipality": "Dhangarhi", + "scheduled_service": "no", + "gps_code": "VNDH", + "iata_code": "DHI" + }, + { + "id": "30875", + "ident": "VNDL", + "type": "small_airport", + "name": "Darchula Airport", + "latitude_deg": "29.669200897216797", + "longitude_deg": "80.54840087890625", + "elevation_ft": "2132", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P7", + "municipality": "Darchula", + "scheduled_service": "no", + "gps_code": "VNDL", + "iata_code": "DAP" + }, + { + "id": "30936", + "ident": "VNDP", + "type": "small_airport", + "name": "Dolpa Airport", + "latitude_deg": "28.985659", + "longitude_deg": "82.818703", + "elevation_ft": "8200", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P6", + "municipality": "Dolpa", + "scheduled_service": "yes", + "gps_code": "VNDP", + "iata_code": "DOP" + }, + { + "id": "32586", + "ident": "VNDR", + "type": "small_airport", + "name": "Dhorpatan Airport", + "latitude_deg": "28.492115", + "longitude_deg": "83.050644", + "elevation_ft": "8950", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P4", + "municipality": "Dhorpatan", + "scheduled_service": "no", + "gps_code": "VNDR" + }, + { + "id": "32301", + "ident": "VNDT", + "type": "small_airport", + "name": "Silgadi Doti Airport", + "latitude_deg": "29.262226", + "longitude_deg": "80.935968", + "elevation_ft": "2100", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P7", + "municipality": "Silgadi Doti", + "scheduled_service": "no", + "gps_code": "VNDT", + "iata_code": "SIH" + }, + { + "id": "31532", + "ident": "VNGK", + "type": "small_airport", + "name": "Palungtar Airport", + "latitude_deg": "28.0385", + "longitude_deg": "84.4664", + "elevation_ft": "1500", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P4", + "municipality": "Gorkha", + "scheduled_service": "no", + "gps_code": "VNGK", + "iata_code": "GKH", + "keywords": "Gorkha Airport" + }, + { + "id": "31703", + "ident": "VNJI", + "type": "small_airport", + "name": "Jiri Airport", + "latitude_deg": "27.626313", + "longitude_deg": "86.230581", + "elevation_ft": "6000", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P3", + "municipality": "Jiri", + "scheduled_service": "no", + "gps_code": "VNJI", + "iata_code": "JIR" + }, + { + "id": "31712", + "ident": "VNJL", + "type": "small_airport", + "name": "Jumla Airport", + "latitude_deg": "29.2742", + "longitude_deg": "82.193298", + "elevation_ft": "7700", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P6", + "municipality": "Jumla", + "scheduled_service": "yes", + "gps_code": "VNJL", + "iata_code": "JUM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jumla_Airport" + }, + { + "id": "26595", + "ident": "VNJP", + "type": "medium_airport", + "name": "Janakpur Airport", + "latitude_deg": "26.708799", + "longitude_deg": "85.922401", + "elevation_ft": "256", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P2", + "municipality": "Janakpur", + "scheduled_service": "yes", + "gps_code": "VNJP", + "iata_code": "JKR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Janakpur_Airport" + }, + { + "id": "308298", + "ident": "VNJS", + "type": "small_airport", + "name": "Jomsom Airport", + "latitude_deg": "28.780426", + "longitude_deg": "83.723", + "elevation_ft": "8976", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P4", + "municipality": "Jomsom", + "scheduled_service": "yes", + "gps_code": "VNJS", + "iata_code": "JMO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jomsom_Airport", + "keywords": "Jomosom" + }, + { + "id": "308291", + "ident": "VNKL", + "type": "small_airport", + "name": "Kangel Danda Airport", + "latitude_deg": "27.4106333137", + "longitude_deg": "86.6465950012", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "scheduled_service": "no", + "gps_code": "VNKL" + }, + { + "id": "26596", + "ident": "VNKT", + "type": "large_airport", + "name": "Tribhuvan International Airport", + "latitude_deg": "27.6966", + "longitude_deg": "85.3591", + "elevation_ft": "4390", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P3", + "municipality": "Kathmandu", + "scheduled_service": "yes", + "gps_code": "VNKT", + "iata_code": "KTM", + "home_link": "http://www.tiairport.com.np/index.php", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tribhuvan_International_Airport", + "keywords": "gaucharan" + }, + { + "id": "31802", + "ident": "VNLD", + "type": "small_airport", + "name": "Lamidanda Airport", + "latitude_deg": "27.25309944152832", + "longitude_deg": "86.66999816894531", + "elevation_ft": "4100", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Lamidanda", + "scheduled_service": "no", + "gps_code": "VNLD", + "iata_code": "LDN" + }, + { + "id": "28150", + "ident": "VNLK", + "type": "small_airport", + "name": "Lukla Airport", + "latitude_deg": "27.686899185180664", + "longitude_deg": "86.72969818115234", + "elevation_ft": "9380", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Lukla", + "scheduled_service": "yes", + "gps_code": "VNLK", + "iata_code": "LUA", + "keywords": "Mount Everest, Tenzing Norgay, Sir Edmund Hillary" + }, + { + "id": "31856", + "ident": "VNLT", + "type": "small_airport", + "name": "Langtang Airport", + "latitude_deg": "28.200000762939453", + "longitude_deg": "85.58300018310547", + "elevation_ft": "12000", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P3", + "municipality": "Langtang", + "scheduled_service": "no", + "gps_code": "VNLT", + "iata_code": "LTG" + }, + { + "id": "30106", + "ident": "VNMA", + "type": "small_airport", + "name": "Manang Airport", + "latitude_deg": "28.641399", + "longitude_deg": "84.089203", + "elevation_ft": "11001", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P4", + "municipality": "Ngawal", + "scheduled_service": "no", + "gps_code": "VNMA", + "iata_code": "NGX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manang_Airport" + }, + { + "id": "31892", + "ident": "VNMG", + "type": "small_airport", + "name": "Meghauli Airport", + "latitude_deg": "27.5774", + "longitude_deg": "84.22875", + "elevation_ft": "600", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P3", + "municipality": "Meghauli", + "scheduled_service": "yes", + "gps_code": "VNMG", + "iata_code": "MEY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Meghauli_Airport" + }, + { + "id": "32706", + "ident": "VNMN", + "type": "small_airport", + "name": "Mahendranagar Airport", + "latitude_deg": "28.963199615478516", + "longitude_deg": "80.14790344238281", + "elevation_ft": "650", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P7", + "municipality": "Mahendranagar", + "scheduled_service": "no", + "gps_code": "VNMN", + "iata_code": "XMG" + }, + { + "id": "26597", + "ident": "VNNG", + "type": "medium_airport", + "name": "Nepalgunj Airport", + "latitude_deg": "28.1036", + "longitude_deg": "81.667", + "elevation_ft": "540", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P5", + "municipality": "Nepalgunj", + "scheduled_service": "yes", + "gps_code": "VNNG", + "iata_code": "KEP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nepalgunj_Airport" + }, + { + "id": "26598", + "ident": "VNPK", + "type": "medium_airport", + "name": "Pokhara Airport", + "latitude_deg": "28.200899124145508", + "longitude_deg": "83.98210144042969", + "elevation_ft": "2712", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P4", + "municipality": "Pokhara", + "scheduled_service": "yes", + "gps_code": "VNPK", + "iata_code": "PKR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pokhara_Airport" + }, + { + "id": "32172", + "ident": "VNPL", + "type": "small_airport", + "name": "Phaplu Airport", + "latitude_deg": "27.517787", + "longitude_deg": "86.584454", + "elevation_ft": "7918", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Phaplu", + "scheduled_service": "yes", + "gps_code": "VNPL", + "iata_code": "PPL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Phaplu_Airport" + }, + { + "id": "32213", + "ident": "VNRB", + "type": "small_airport", + "name": "Rajbiraj Airport", + "latitude_deg": "26.510066", + "longitude_deg": "86.733902", + "elevation_ft": "250", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P2", + "municipality": "Rajbiraj", + "scheduled_service": "no", + "gps_code": "VNRB", + "iata_code": "RJB" + }, + { + "id": "32209", + "ident": "VNRC", + "type": "small_airport", + "name": "Ramechhap Airport", + "latitude_deg": "27.393999099731445", + "longitude_deg": "86.0614013671875", + "elevation_ft": "1555", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P3", + "municipality": "Ramechhap", + "scheduled_service": "no", + "gps_code": "VNRC", + "iata_code": "RHP" + }, + { + "id": "32236", + "ident": "VNRK", + "type": "small_airport", + "name": "Rukum Chaurjahari Airport", + "latitude_deg": "28.627001", + "longitude_deg": "82.194021", + "elevation_ft": "2500", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P6", + "municipality": "Rukumkot", + "scheduled_service": "yes", + "gps_code": "VNCJ", + "iata_code": "RUK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rukumkot_Airport", + "keywords": "VNRK, Rukumkot Airport" + }, + { + "id": "32587", + "ident": "VNRP", + "type": "small_airport", + "name": "Rolpa Airport", + "latitude_deg": "28.267292", + "longitude_deg": "82.756496", + "elevation_ft": "4100", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P5", + "municipality": "Rolpa", + "scheduled_service": "no", + "gps_code": "VNRP", + "iata_code": "RPA" + }, + { + "id": "32237", + "ident": "VNRT", + "type": "small_airport", + "name": "Rumjatar Airport", + "latitude_deg": "27.303499221801758", + "longitude_deg": "86.55039978027344", + "elevation_ft": "4500", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Rumjatar", + "scheduled_service": "yes", + "gps_code": "VNRT", + "iata_code": "RUM" + }, + { + "id": "315124", + "ident": "VNSB", + "type": "small_airport", + "name": "Syangboche Airport", + "latitude_deg": "27.8112", + "longitude_deg": "86.7124", + "elevation_ft": "12400", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Namche Bazaar", + "scheduled_service": "no", + "gps_code": "VNSB", + "iata_code": "SYH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Syangboche_Airport", + "keywords": "Syanboche" + }, + { + "id": "26599", + "ident": "VNSI", + "type": "small_airport", + "name": "Simara Airport", + "latitude_deg": "27.159803", + "longitude_deg": "84.980021", + "elevation_ft": "450", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P2", + "municipality": "Simara", + "scheduled_service": "yes", + "gps_code": "VNSI", + "iata_code": "SIF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Simara_Airport" + }, + { + "id": "32311", + "ident": "VNSK", + "type": "small_airport", + "name": "Surkhet Airport", + "latitude_deg": "28.586", + "longitude_deg": "81.636002", + "elevation_ft": "2400", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P6", + "municipality": "Surkhet", + "scheduled_service": "yes", + "gps_code": "VNSK", + "iata_code": "SKH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Surkhet_Airport" + }, + { + "id": "337590", + "ident": "VNSL", + "type": "small_airport", + "name": "Rukum Salle Airport", + "latitude_deg": "28.636161", + "longitude_deg": "82.45018", + "elevation_ft": "5184", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P6", + "municipality": "Musikot", + "scheduled_service": "yes", + "gps_code": "VNSL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rukum_Salle_Airport" + }, + { + "id": "31110", + "ident": "VNSR", + "type": "small_airport", + "name": "Sanfebagar Airport", + "latitude_deg": "29.236629", + "longitude_deg": "81.215317", + "elevation_ft": "2280", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P7", + "municipality": "Sanfebagar", + "scheduled_service": "no", + "gps_code": "VNSR", + "iata_code": "FEB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sanfebagar_Airport" + }, + { + "id": "31675", + "ident": "VNST", + "type": "small_airport", + "name": "Simikot Airport", + "latitude_deg": "29.971099853515625", + "longitude_deg": "81.81890106201172", + "elevation_ft": "9246", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P6", + "municipality": "Simikot", + "scheduled_service": "yes", + "gps_code": "VNST", + "iata_code": "IMK" + }, + { + "id": "308294", + "ident": "VNTH", + "type": "small_airport", + "name": "Thamkharka Airport", + "latitude_deg": "27.04787", + "longitude_deg": "86.858022", + "elevation_ft": "5240", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Khotang Bazar", + "scheduled_service": "no", + "gps_code": "VNTH" + }, + { + "id": "308293", + "ident": "VNTJ", + "type": "medium_airport", + "name": "Taplejung Airport", + "latitude_deg": "27.3509", + "longitude_deg": "87.69525", + "elevation_ft": "7990", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Taplejung", + "scheduled_service": "yes", + "gps_code": "VNTJ", + "iata_code": "TPJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taplejung_Airport", + "keywords": "Suketar Airport" + }, + { + "id": "32588", + "ident": "VNTP", + "type": "small_airport", + "name": "Tikapur Airport", + "latitude_deg": "28.5219", + "longitude_deg": "81.123", + "elevation_ft": "522", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P7", + "municipality": "Tikapur", + "scheduled_service": "no", + "gps_code": "VNTP", + "iata_code": "TPU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tikapur_Airport" + }, + { + "id": "32463", + "ident": "VNTR", + "type": "small_airport", + "name": "Tumling Tar Airport", + "latitude_deg": "27.315001", + "longitude_deg": "87.193298", + "elevation_ft": "1700", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Tumling Tar", + "scheduled_service": "yes", + "gps_code": "VNTR", + "iata_code": "TMI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tumlingtar_Airport" + }, + { + "id": "26600", + "ident": "VNVT", + "type": "medium_airport", + "name": "Biratnagar Airport", + "latitude_deg": "26.48150062561035", + "longitude_deg": "87.26399993896484", + "elevation_ft": "236", + "continent": "AS", + "iso_country": "NP", + "iso_region": "NP-P1", + "municipality": "Biratnagar", + "scheduled_service": "yes", + "gps_code": "VNVT", + "iata_code": "BIR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Biratnagar_Airport" + }, + { + "id": "3338", + "ident": "VO26", + "type": "small_airport", + "name": "Kovilpatti Airport", + "latitude_deg": "9.15389", + "longitude_deg": "77.821198", + "elevation_ft": "325", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Nallatinputhur", + "scheduled_service": "no", + "gps_code": "VO26", + "local_code": "VO26" + }, + { + "id": "3340", + "ident": "VO52", + "type": "small_airport", + "name": "Harihar Airport", + "latitude_deg": "14.534533", + "longitude_deg": "75.786879", + "elevation_ft": "1750", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Harihar", + "scheduled_service": "no", + "gps_code": "VO52", + "local_code": "VO52" + }, + { + "id": "3341", + "ident": "VO55", + "type": "medium_airport", + "name": "Murod Kond Airport", + "latitude_deg": "18.411501", + "longitude_deg": "76.464699", + "elevation_ft": "2136", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-MM", + "municipality": "Latur", + "scheduled_service": "yes", + "gps_code": "VALT", + "iata_code": "LTU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Latur_Airport" + }, + { + "id": "3342", + "ident": "VO80", + "type": "small_airport", + "name": "Tuticorin Airport", + "latitude_deg": "8.724241", + "longitude_deg": "78.025803", + "elevation_ft": "129", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Vagaikulam", + "scheduled_service": "yes", + "gps_code": "VOTK", + "iata_code": "TCR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tuticorin_Airport", + "keywords": "VO80, Tuticorin Southwest Airport, Thoothukudi" + }, + { + "id": "3343", + "ident": "VO94", + "type": "medium_airport", + "name": "Campbell Bay Airport / INS Baaz", + "latitude_deg": "7.01304", + "longitude_deg": "93.922798", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AN", + "municipality": "Campbell Bay", + "scheduled_service": "no", + "gps_code": "VOBX", + "keywords": "VO94" + }, + { + "id": "3344", + "ident": "VO95", + "type": "small_airport", + "name": "Hosur Airport", + "latitude_deg": "12.661299705505371", + "longitude_deg": "77.76719665527344", + "elevation_ft": "3116", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "scheduled_service": "no", + "gps_code": "VO95", + "local_code": "VO95" + }, + { + "id": "26601", + "ident": "VOAR", + "type": "small_airport", + "name": "INS Rajali / Arakkonam Naval Air Station", + "latitude_deg": "13.0712", + "longitude_deg": "79.6912", + "elevation_ft": "265", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Arakkonam", + "scheduled_service": "no", + "gps_code": "VOAR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arakkonam_Naval_Air_Station", + "keywords": "Arkonam, Arakkonam" + }, + { + "id": "26602", + "ident": "VOAT", + "type": "medium_airport", + "name": "Agatti Airport", + "latitude_deg": "10.8237", + "longitude_deg": "72.176003", + "elevation_ft": "14", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-LD", + "municipality": "Agatti", + "scheduled_service": "yes", + "gps_code": "VOAT", + "iata_code": "AGX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Agatti_Aerodrome" + }, + { + "id": "26603", + "ident": "VOBG", + "type": "medium_airport", + "name": "HAL Airport", + "latitude_deg": "12.95", + "longitude_deg": "77.668198", + "elevation_ft": "2912", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Bangalore", + "scheduled_service": "no", + "gps_code": "VOBG", + "wikipedia_link": "https://en.wikipedia.org/wiki/HAL_Bangalore_International_Airport", + "keywords": "Bengaluru, Hindustan Airport, HAL Airport, Hindustan Aeronautics" + }, + { + "id": "26604", + "ident": "VOBI", + "type": "medium_airport", + "name": "Bellary Airport", + "latitude_deg": "15.162799835205078", + "longitude_deg": "76.88279724121094", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Bellary", + "scheduled_service": "no", + "gps_code": "VOBI", + "iata_code": "BEP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bellary_Airport", + "keywords": "Jindal Vijayanagar, Vijaynagar" + }, + { + "id": "35145", + "ident": "VOBL", + "type": "large_airport", + "name": "Kempegowda International Airport", + "latitude_deg": "13.1979", + "longitude_deg": "77.706299", + "elevation_ft": "3000", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Bangalore", + "scheduled_service": "yes", + "gps_code": "VOBL", + "iata_code": "BLR", + "home_link": "http://www.bengaluruairport.com/home/home.jspx", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kempegowda_International_Airport" + }, + { + "id": "26605", + "ident": "VOBR", + "type": "medium_airport", + "name": "Bidar Airport / Bidar Air Force Station", + "latitude_deg": "17.9081", + "longitude_deg": "77.487099", + "elevation_ft": "2178", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Bidar", + "scheduled_service": "no", + "gps_code": "VOBR", + "iata_code": "IXX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bidar_Airport" + }, + { + "id": "26606", + "ident": "VOBZ", + "type": "medium_airport", + "name": "Vijayawada Airport", + "latitude_deg": "16.530399", + "longitude_deg": "80.796799", + "elevation_ft": "82", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Gannavaram", + "scheduled_service": "yes", + "gps_code": "VOBZ", + "iata_code": "VGA", + "home_link": "https://www.aai.aero/en/airports/vijayawada", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vijayawada_Airport" + }, + { + "id": "26607", + "ident": "VOCB", + "type": "medium_airport", + "name": "Coimbatore International Airport", + "latitude_deg": "11.029999733", + "longitude_deg": "77.0434036255", + "elevation_ft": "1324", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Coimbatore", + "scheduled_service": "yes", + "gps_code": "VOCB", + "iata_code": "CJB", + "home_link": "http://www.airportsindia.org.in/allAirports/coimbatore_generalinfo.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coimbatore_Airport" + }, + { + "id": "26608", + "ident": "VOCC", + "type": "small_airport", + "name": "INS Garuda / Willingdon Island Naval Air Station", + "latitude_deg": "9.946064", + "longitude_deg": "76.271947", + "elevation_ft": "8", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Kochi", + "scheduled_service": "no", + "gps_code": "VOCC", + "wikipedia_link": "https://en.wikipedia.org/wiki/INS_Garuda", + "keywords": "RAF Willingdon Island, Gochin, COK, Willingdon Island Air Base" + }, + { + "id": "26609", + "ident": "VOCI", + "type": "large_airport", + "name": "Cochin International Airport", + "latitude_deg": "10.152", + "longitude_deg": "76.401901", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Kochi", + "scheduled_service": "yes", + "gps_code": "VOCI", + "iata_code": "COK", + "home_link": "http://www.cial.aero/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cochin_International_Airport", + "keywords": "Cochin" + }, + { + "id": "26610", + "ident": "VOCL", + "type": "medium_airport", + "name": "Calicut International Airport", + "latitude_deg": "11.1368", + "longitude_deg": "75.955299", + "elevation_ft": "342", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Calicut", + "scheduled_service": "yes", + "gps_code": "VOCL", + "iata_code": "CCJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Calicut_International_Airport" + }, + { + "id": "26611", + "ident": "VOCP", + "type": "medium_airport", + "name": "Kadapa Airport", + "latitude_deg": "14.513154", + "longitude_deg": "78.769183", + "elevation_ft": "430", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Kadapa", + "scheduled_service": "yes", + "gps_code": "VOCP", + "iata_code": "CDP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kadapa_Airport", + "keywords": "Cuddapah" + }, + { + "id": "26612", + "ident": "VOCX", + "type": "medium_airport", + "name": "Car Nicobar Air Force Base", + "latitude_deg": "9.153056", + "longitude_deg": "92.819273", + "elevation_ft": "5", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AN", + "municipality": "IAF Camp", + "scheduled_service": "no", + "gps_code": "VOCX", + "iata_code": "CBD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Car_Nicobar_Air_Force_Base", + "keywords": "Carnicobar" + }, + { + "id": "26613", + "ident": "VODG", + "type": "medium_airport", + "name": "Dundigul Air Force Academy", + "latitude_deg": "17.627199173", + "longitude_deg": "78.4033966064", + "elevation_ft": "2013", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TG", + "municipality": "Hyderabad", + "scheduled_service": "no", + "gps_code": "VODG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dundigul_Air_Force_Academy" + }, + { + "id": "32589", + "ident": "VODK", + "type": "closed", + "name": "Dunakonda Airport", + "latitude_deg": "15.8063", + "longitude_deg": "79.4882", + "elevation_ft": "472", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Dunakonda", + "scheduled_service": "no", + "gps_code": "VODK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Donakonda_Airport" + }, + { + "id": "26614", + "ident": "VOHK", + "type": "small_airport", + "name": "Hakimpet Airport", + "latitude_deg": "17.553499", + "longitude_deg": "78.524902", + "elevation_ft": "2020", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TG", + "municipality": "Secunderabad", + "scheduled_service": "no", + "gps_code": "VOHK", + "keywords": "Hakimpeth Air Force Station, Hakimpet Air Force Station, VO28" + }, + { + "id": "35141", + "ident": "VOHS", + "type": "large_airport", + "name": "Rajiv Gandhi International Airport", + "latitude_deg": "17.231318", + "longitude_deg": "78.429855", + "elevation_ft": "2024", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TG", + "municipality": "Hyderabad", + "scheduled_service": "yes", + "gps_code": "VOHS", + "iata_code": "HYD", + "home_link": "http://www.hyderabad.aero/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rajiv_Gandhi_International_Airport", + "keywords": "Shamshabad, Hyderabad" + }, + { + "id": "26615", + "ident": "VOHY", + "type": "medium_airport", + "name": "Begumpet Airport", + "latitude_deg": "17.4531", + "longitude_deg": "78.467598", + "elevation_ft": "1742", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TG", + "municipality": "Hyderabad", + "scheduled_service": "no", + "gps_code": "VOHY", + "iata_code": "BPM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Begumpet_Airport", + "keywords": "Begumpet Air Force Station, HYD, Hyderabad Airport" + }, + { + "id": "329504", + "ident": "VOKN", + "type": "medium_airport", + "name": "Kannur International Airport", + "latitude_deg": "11.918614", + "longitude_deg": "75.547211", + "elevation_ft": "330", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Kannur", + "scheduled_service": "yes", + "gps_code": "VOKN", + "iata_code": "CNN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kannur_International_Airport" + }, + { + "id": "44630", + "ident": "VOKP", + "type": "small_airport", + "name": "Baldota Koppal Aerodrome", + "latitude_deg": "15.359481", + "longitude_deg": "76.219411", + "elevation_ft": "1700", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Basapur", + "scheduled_service": "no", + "gps_code": "VOKP" + }, + { + "id": "340146", + "ident": "VOKU", + "type": "medium_airport", + "name": "Kurnool Airport", + "latitude_deg": "15.716288", + "longitude_deg": "78.16923", + "elevation_ft": "920", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Orvakal", + "scheduled_service": "yes", + "gps_code": "VOKU", + "iata_code": "KJB", + "local_code": "KJB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kurnool_Airport", + "keywords": "Orvakal" + }, + { + "id": "26616", + "ident": "VOMD", + "type": "medium_airport", + "name": "Madurai Airport", + "latitude_deg": "9.83450984955", + "longitude_deg": "78.09339904790001", + "elevation_ft": "459", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Madurai", + "scheduled_service": "yes", + "gps_code": "VOMD", + "iata_code": "IXM", + "home_link": "http://www.airportsindia.org.in/allAirports/madurai_airpo_gi.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Madurai_Airport", + "keywords": "Madurai Air Force Station" + }, + { + "id": "26617", + "ident": "VOML", + "type": "medium_airport", + "name": "Mangalore International Airport", + "latitude_deg": "12.9612998962", + "longitude_deg": "74.8900985718", + "elevation_ft": "337", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Mangalore", + "scheduled_service": "yes", + "gps_code": "VOML", + "iata_code": "IXE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mangalore_International_Airport", + "keywords": "Bajpe Airport" + }, + { + "id": "26618", + "ident": "VOMM", + "type": "large_airport", + "name": "Chennai International Airport", + "latitude_deg": "12.990005", + "longitude_deg": "80.169296", + "elevation_ft": "52", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Chennai", + "scheduled_service": "yes", + "gps_code": "VOMM", + "iata_code": "MAA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chennai_International_Airport", + "keywords": "Madras" + }, + { + "id": "31996", + "ident": "VOMY", + "type": "small_airport", + "name": "Mysore Airport", + "latitude_deg": "12.23", + "longitude_deg": "76.655833", + "elevation_ft": "2349", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Mysore", + "scheduled_service": "no", + "gps_code": "VOMY", + "iata_code": "MYQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mysore_Airport", + "keywords": "Mysuru, Mandakalli airport" + }, + { + "id": "26619", + "ident": "VONS", + "type": "small_airport", + "name": "Nagarjuna Sagar Airport", + "latitude_deg": "16.541574", + "longitude_deg": "79.316504", + "elevation_ft": "658", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Nagarjuna Sagar", + "scheduled_service": "no", + "gps_code": "VONS" + }, + { + "id": "26620", + "ident": "VOPB", + "type": "medium_airport", + "name": "Veer Savarkar International Airport / INS Utkrosh", + "latitude_deg": "11.641208", + "longitude_deg": "92.729643", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AN", + "municipality": "Port Blair", + "scheduled_service": "yes", + "gps_code": "VOPB", + "iata_code": "IXZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Veer_Savarkar_International_Airport", + "keywords": "Port Blair Airport, Port Blair Air Force Station" + }, + { + "id": "26621", + "ident": "VOPC", + "type": "medium_airport", + "name": "Pondicherry Airport", + "latitude_deg": "11.968", + "longitude_deg": "79.812", + "elevation_ft": "134", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-PY", + "municipality": "Puducherry (Pondicherry)", + "scheduled_service": "yes", + "gps_code": "VOPC", + "iata_code": "PNY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pondicherry_Airport" + }, + { + "id": "26622", + "ident": "VOPN", + "type": "medium_airport", + "name": "Sri Sathya Sai Airport", + "latitude_deg": "14.1492996216", + "longitude_deg": "77.7910995483", + "elevation_ft": "1558", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Puttaparthi", + "scheduled_service": "no", + "gps_code": "VOPN", + "iata_code": "PUT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sri_Sathya_Sai_Airport" + }, + { + "id": "313997", + "ident": "VORG", + "type": "small_airport", + "name": "Basanth Nagar Airport", + "latitude_deg": "18.701", + "longitude_deg": "79.3923", + "elevation_ft": "670", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TG", + "municipality": "Ramagundam", + "scheduled_service": "no", + "gps_code": "VORG", + "iata_code": "RMD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ramagundam_Airport" + }, + { + "id": "32591", + "ident": "VORM", + "type": "small_airport", + "name": "Ramnad Naval Air Station", + "latitude_deg": "9.32509040833", + "longitude_deg": "78.971496582", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Ramnad", + "scheduled_service": "no", + "gps_code": "VORM", + "keywords": "Ramanathapuram" + }, + { + "id": "26623", + "ident": "VORY", + "type": "medium_airport", + "name": "Rajahmundry Airport", + "latitude_deg": "17.105799", + "longitude_deg": "81.813204", + "elevation_ft": "151", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Madhurapudi", + "scheduled_service": "yes", + "gps_code": "VORY", + "iata_code": "RJA", + "home_link": "http://aai.aero/allAirports/rajahmundry_generalinfo.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rajahmundry_Airport" + }, + { + "id": "26624", + "ident": "VOSM", + "type": "medium_airport", + "name": "Salem Airport", + "latitude_deg": "11.78330039978", + "longitude_deg": "78.06559753418", + "elevation_ft": "1008", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Salem", + "scheduled_service": "no", + "gps_code": "VOSM", + "iata_code": "SXV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Salem_Airport_(India)" + }, + { + "id": "26625", + "ident": "VOSX", + "type": "small_airport", + "name": "Coimbatore Air Force Station", + "latitude_deg": "11.01360034942627", + "longitude_deg": "77.15969848632812", + "elevation_ft": "1250", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Sulur", + "scheduled_service": "no", + "gps_code": "VOSX" + }, + { + "id": "26626", + "ident": "VOTJ", + "type": "small_airport", + "name": "Thanjavur Air Force Station", + "latitude_deg": "10.723835", + "longitude_deg": "79.109457", + "elevation_ft": "253", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Thanjavur", + "scheduled_service": "no", + "gps_code": "VOTJ", + "iata_code": "TJV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thanjavur_Air_Force_Station", + "keywords": "Tanjavur, Tanjore Air Force Base" + }, + { + "id": "26627", + "ident": "VOTP", + "type": "small_airport", + "name": "Tirupati Airport", + "latitude_deg": "13.632499694800002", + "longitude_deg": "79.543296814", + "elevation_ft": "350", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-AP", + "municipality": "Tirupati", + "scheduled_service": "yes", + "gps_code": "VOTP", + "iata_code": "TIR", + "home_link": "http://aai.aero/allAirports/tirupati_generalinfo.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tirupati_Airport" + }, + { + "id": "26628", + "ident": "VOTR", + "type": "medium_airport", + "name": "Tiruchirappalli International Airport", + "latitude_deg": "10.766223", + "longitude_deg": "78.71774", + "elevation_ft": "288", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Tiruchirappalli", + "scheduled_service": "yes", + "gps_code": "VOTR", + "iata_code": "TRZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tiruchirappalli_International_Airport", + "keywords": "Trichy, Trichinopoly, RAF Kajamalai" + }, + { + "id": "26629", + "ident": "VOTV", + "type": "large_airport", + "name": "Trivandrum International Airport", + "latitude_deg": "8.48211956024", + "longitude_deg": "76.9200973511", + "elevation_ft": "15", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KL", + "municipality": "Thiruvananthapuram", + "scheduled_service": "yes", + "gps_code": "VOTV", + "iata_code": "TRV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trivandrum_International_Airport", + "keywords": "Thiruvananthapuram International Airport, Trivandrum Air Force Station" + }, + { + "id": "26630", + "ident": "VOTX", + "type": "small_airport", + "name": "Tambaram Air Force Station", + "latitude_deg": "12.90719985961914", + "longitude_deg": "80.12190246582031", + "elevation_ft": "90", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Chennai", + "scheduled_service": "no", + "gps_code": "VOTX" + }, + { + "id": "32592", + "ident": "VOVR", + "type": "small_airport", + "name": "Vellore Airport", + "latitude_deg": "12.90880012512207", + "longitude_deg": "79.06680297851562", + "elevation_ft": "764", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TN", + "municipality": "Vellore", + "scheduled_service": "no", + "gps_code": "VOVR" + }, + { + "id": "32647", + "ident": "VOWA", + "type": "small_airport", + "name": "Warangal Airport", + "latitude_deg": "17.9144", + "longitude_deg": "79.602203", + "elevation_ft": "935", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-TG", + "municipality": "Warangal", + "scheduled_service": "no", + "gps_code": "VOWA", + "iata_code": "WGC", + "home_link": "http://aai.aero/allAirports/warrangal.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Warangal_Airport", + "keywords": "Mamnoor, Warrangal" + }, + { + "id": "26631", + "ident": "VOYK", + "type": "small_airport", + "name": "Yelahanka Air Force Station", + "latitude_deg": "13.135499954223633", + "longitude_deg": "77.60600280761719", + "elevation_ft": "3045", + "continent": "AS", + "iso_country": "IN", + "iso_region": "IN-KA", + "municipality": "Yelahanka", + "scheduled_service": "no", + "gps_code": "VOYK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yelahanka_Air_Force_Station" + }, + { + "id": "606", + "ident": "VQ10", + "type": "small_airport", + "name": "Yongphulla Airport", + "latitude_deg": "27.256399", + "longitude_deg": "91.514503", + "elevation_ft": "9000", + "continent": "AS", + "iso_country": "BT", + "iso_region": "BT-41", + "municipality": "Tashigang", + "scheduled_service": "yes", + "gps_code": "VQTY", + "iata_code": "YON", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yongphulla_Airport", + "keywords": "Yonphula Airport, VQ10" + }, + { + "id": "315554", + "ident": "VQBT", + "type": "small_airport", + "name": "Bathpalathang Airport", + "latitude_deg": "27.5622", + "longitude_deg": "90.7471", + "elevation_ft": "8485", + "continent": "AS", + "iso_country": "BT", + "iso_region": "BT-33", + "municipality": "Jakar", + "scheduled_service": "yes", + "gps_code": "VQBT", + "iata_code": "BUT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bathpalathang_Airport", + "keywords": "Bumthang Domestic" + }, + { + "id": "308995", + "ident": "VQGP", + "type": "medium_airport", + "name": "Gelephu Airport", + "latitude_deg": "26.88456", + "longitude_deg": "90.46412", + "elevation_ft": "980", + "continent": "AS", + "iso_country": "BT", + "iso_region": "BT-31", + "municipality": "Gelephu", + "scheduled_service": "no", + "gps_code": "VQGP", + "iata_code": "GLU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gelephu_Airport" + }, + { + "id": "26632", + "ident": "VQPR", + "type": "medium_airport", + "name": "Paro International Airport", + "latitude_deg": "27.4032", + "longitude_deg": "89.424599", + "elevation_ft": "7364", + "continent": "AS", + "iso_country": "BT", + "iso_region": "BT-11", + "municipality": "Paro", + "scheduled_service": "yes", + "gps_code": "VQPR", + "iata_code": "PBH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paro_Airport", + "keywords": "སྤ་རོ་གནམ་ཐང༌།, paro gnam thang" + }, + { + "id": "321776", + "ident": "VQTU", + "type": "heliport", + "name": "Thimphu Heliport", + "latitude_deg": "27.4513", + "longitude_deg": "89.6557", + "elevation_ft": "7608", + "continent": "AS", + "iso_country": "BT", + "iso_region": "BT-15", + "municipality": "Thimphu", + "scheduled_service": "no", + "gps_code": "VQTU", + "keywords": "QJC, Lungthenphug Heliport, BSA Heliport" + }, + { + "id": "336108", + "ident": "VRBK", + "type": "small_airport", + "name": "Kulhudhuffushi Airport", + "latitude_deg": "6.630762", + "longitude_deg": "73.067815", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-23", + "municipality": "Kulhudhuffushi", + "scheduled_service": "yes", + "gps_code": "VRBK", + "iata_code": "HDK", + "local_code": "HDK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kulhudhuffushi_Airport" + }, + { + "id": "335882", + "ident": "VRDA", + "type": "medium_airport", + "name": "Maafaru International Airport", + "latitude_deg": "5.818394", + "longitude_deg": "73.469181", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-25", + "municipality": "Noonu Atoll", + "scheduled_service": "yes", + "gps_code": "VRDA", + "iata_code": "NMF", + "home_link": "http://www.maafaruairport.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maafaru_International_Airport" + }, + { + "id": "316421", + "ident": "VREI", + "type": "small_airport", + "name": "Ifuru Airport", + "latitude_deg": "5.7083", + "longitude_deg": "73.025", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-13", + "municipality": "Ifuru Island", + "scheduled_service": "no", + "gps_code": "VREI", + "iata_code": "IFU" + }, + { + "id": "316420", + "ident": "VRMD", + "type": "small_airport", + "name": "Dharavandhoo Airport", + "latitude_deg": "5.1561", + "longitude_deg": "73.1302", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-20", + "municipality": "Baa Atoll", + "scheduled_service": "yes", + "gps_code": "VRMD", + "iata_code": "DRV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dharavandhoo_Airport" + }, + { + "id": "300712", + "ident": "VRMF", + "type": "small_airport", + "name": "Fuvahmulah Airport", + "latitude_deg": "-0.309722222222", + "longitude_deg": "73.435", + "elevation_ft": "17", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-29", + "municipality": "Fuvahmulah Island", + "scheduled_service": "no", + "gps_code": "VRMR", + "iata_code": "FVM" + }, + { + "id": "26633", + "ident": "VRMG", + "type": "medium_airport", + "name": "Gan International Airport", + "latitude_deg": "-0.693342", + "longitude_deg": "73.155602", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-01", + "municipality": "Gan", + "scheduled_service": "yes", + "gps_code": "VRMG", + "iata_code": "GAN", + "local_code": "MV", + "home_link": "http://www.airports.com.mv/domestic/gan.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gan_International_Airport", + "keywords": "Gan Airport, Addu City, Maldives" + }, + { + "id": "26634", + "ident": "VRMH", + "type": "medium_airport", + "name": "Hanimaadhoo Airport", + "latitude_deg": "6.744229793548584", + "longitude_deg": "73.17050170898438", + "elevation_ft": "4", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-23", + "municipality": "Haa Dhaalu Atoll", + "scheduled_service": "yes", + "gps_code": "VRMH", + "iata_code": "HAQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hanimaadhoo_Airport" + }, + { + "id": "26635", + "ident": "VRMK", + "type": "medium_airport", + "name": "Kadhdhoo Airport", + "latitude_deg": "1.8591699600219727", + "longitude_deg": "73.52189636230469", + "elevation_ft": "4", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-05", + "municipality": "Kadhdhoo", + "scheduled_service": "yes", + "gps_code": "VRMK", + "iata_code": "KDO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kadhdhoo_Airport" + }, + { + "id": "26636", + "ident": "VRMM", + "type": "large_airport", + "name": "Malé International Airport", + "latitude_deg": "4.191830158233643", + "longitude_deg": "73.52909851074219", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-MLE", + "municipality": "Malé", + "scheduled_service": "yes", + "gps_code": "VRMM", + "iata_code": "MLE", + "home_link": "http://www.airports.com.mv/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mal%C3%A9_International_Airport" + }, + { + "id": "308991", + "ident": "VRMO", + "type": "small_airport", + "name": "Kooddoo Airport", + "latitude_deg": "0.7324", + "longitude_deg": "73.4336", + "elevation_ft": "29", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-27", + "municipality": "Huvadhu Atoll", + "scheduled_service": "yes", + "gps_code": "VRMO", + "iata_code": "GKK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kooddoo_Airport" + }, + { + "id": "26637", + "ident": "VRMT", + "type": "medium_airport", + "name": "Kaadedhdhoo Airport", + "latitude_deg": "0.488131", + "longitude_deg": "72.996902", + "elevation_ft": "2", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-28", + "municipality": "Huvadhu Atoll", + "scheduled_service": "yes", + "gps_code": "VRMT", + "iata_code": "KDM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kaadedhdhoo_Domestic_Airport" + }, + { + "id": "330376", + "ident": "VRMU", + "type": "small_airport", + "name": "Dhaalu Atoll Airport", + "latitude_deg": "2.666075", + "longitude_deg": "72.887118", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-17", + "municipality": "Kudahuvadhoo", + "scheduled_service": "no", + "gps_code": "VRMU", + "iata_code": "DDD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dhaalu_Airport" + }, + { + "id": "301316", + "ident": "VRMV", + "type": "medium_airport", + "name": "Villa Airport", + "latitude_deg": "3.470556", + "longitude_deg": "72.835833", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-00", + "municipality": "Maamigili", + "scheduled_service": "yes", + "gps_code": "VRMV", + "iata_code": "VAM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maamigili_Airport" + }, + { + "id": "316419", + "ident": "VRNT", + "type": "small_airport", + "name": "Thimarafushi Airport", + "latitude_deg": "2.211", + "longitude_deg": "73.1533", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-08", + "municipality": "Thimarafushi", + "scheduled_service": "yes", + "gps_code": "VRNT", + "iata_code": "TMF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thimarafushi_Airport" + }, + { + "id": "336109", + "ident": "VRQM", + "type": "small_airport", + "name": "Maavaarulaa Airport", + "latitude_deg": "0.338085", + "longitude_deg": "73.512869", + "continent": "AS", + "iso_country": "MV", + "iso_region": "MV-28", + "municipality": "Maavaarulu", + "scheduled_service": "yes", + "gps_code": "VRQM", + "iata_code": "RUL", + "local_code": "RUL" + }, + { + "id": "25498", + "ident": "VT01", + "type": "small_airport", + "name": "Teal Farm Airport", + "latitude_deg": "44.28260040283203", + "longitude_deg": "-72.93730163574219", + "elevation_ft": "1440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Huntington", + "scheduled_service": "no", + "gps_code": "VT01", + "local_code": "VT01" + }, + { + "id": "25499", + "ident": "VT02", + "type": "closed", + "name": "Red Fox Airport", + "latitude_deg": "43.147301", + "longitude_deg": "-72.885101", + "elevation_ft": "1434", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Bondville", + "scheduled_service": "no", + "keywords": "VT02" + }, + { + "id": "25500", + "ident": "VT03", + "type": "small_airport", + "name": "Maule's Roost Airport", + "latitude_deg": "44.08869934082031", + "longitude_deg": "-72.98090362548828", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Lincoln", + "scheduled_service": "no", + "gps_code": "VT03", + "local_code": "VT03" + }, + { + "id": "25501", + "ident": "VT04", + "type": "heliport", + "name": "Southwestern Vermont Heliport", + "latitude_deg": "42.8745002746582", + "longitude_deg": "-73.20760345458984", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Bennington", + "scheduled_service": "no", + "gps_code": "VT04", + "local_code": "VT04" + }, + { + "id": "25502", + "ident": "VT06", + "type": "small_airport", + "name": "Santa's Airport", + "latitude_deg": "43.004398345947266", + "longitude_deg": "-72.47370147705078", + "elevation_ft": "673", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Putney", + "scheduled_service": "no", + "gps_code": "VT06", + "local_code": "VT06" + }, + { + "id": "25503", + "ident": "VT07", + "type": "closed", + "name": "Berlin Armory Heliport", + "latitude_deg": "44.220901", + "longitude_deg": "-72.565697", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Berlin", + "scheduled_service": "no", + "keywords": "VT07" + }, + { + "id": "25504", + "ident": "VT08", + "type": "heliport", + "name": "Bradford Armory Heliport", + "latitude_deg": "44.00149917602539", + "longitude_deg": "-72.12310028076172", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Bradford", + "scheduled_service": "no", + "gps_code": "VT08", + "local_code": "VT08" + }, + { + "id": "25505", + "ident": "VT09", + "type": "small_airport", + "name": "Spencer Airport", + "latitude_deg": "44.11360168457031", + "longitude_deg": "-73.29029846191406", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Addison", + "scheduled_service": "no", + "gps_code": "VT09", + "local_code": "VT09" + }, + { + "id": "25506", + "ident": "VT10", + "type": "small_airport", + "name": "Manning Personal Airstrip", + "latitude_deg": "43.98139953613281", + "longitude_deg": "-73.38569641113281", + "elevation_ft": "255", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Bridport", + "scheduled_service": "no", + "gps_code": "VT10", + "local_code": "VT10" + }, + { + "id": "25507", + "ident": "VT11", + "type": "small_airport", + "name": "Ass-Pirin Acres Airport", + "latitude_deg": "44.06869888305664", + "longitude_deg": "-73.37339782714844", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Addison", + "scheduled_service": "no", + "gps_code": "VT11", + "local_code": "VT11" + }, + { + "id": "25508", + "ident": "VT12", + "type": "small_airport", + "name": "E.A.Deeds Farm Airport", + "latitude_deg": "44.29119873046875", + "longitude_deg": "-73.283203125", + "elevation_ft": "127", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Charlotte", + "scheduled_service": "no", + "gps_code": "VT12", + "local_code": "VT12" + }, + { + "id": "25509", + "ident": "VT13", + "type": "small_airport", + "name": "Holloway Airport", + "latitude_deg": "43.30009841918945", + "longitude_deg": "-72.71759796142578", + "elevation_ft": "1520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Chester", + "scheduled_service": "no", + "gps_code": "VT13", + "local_code": "VT13" + }, + { + "id": "25510", + "ident": "VT14", + "type": "small_airport", + "name": "Axinn Airport", + "latitude_deg": "44.045101165771484", + "longitude_deg": "-73.1895980834961", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Weybridge", + "scheduled_service": "no", + "gps_code": "VT14", + "local_code": "VT14" + }, + { + "id": "25511", + "ident": "VT15", + "type": "small_airport", + "name": "Savage Island Airport", + "latitude_deg": "44.70389938354492", + "longitude_deg": "-73.24600219726562", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Grand Isle", + "scheduled_service": "no", + "gps_code": "VT15", + "local_code": "VT15" + }, + { + "id": "25512", + "ident": "VT16", + "type": "heliport", + "name": "Velco Heliport", + "latitude_deg": "43.6598014831543", + "longitude_deg": "-72.9928970336914", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Rutland", + "scheduled_service": "no", + "gps_code": "VT16", + "local_code": "VT16" + }, + { + "id": "25513", + "ident": "VT17", + "type": "small_airport", + "name": "Smith Airport", + "latitude_deg": "43.36899948120117", + "longitude_deg": "-72.67430114746094", + "elevation_ft": "1502", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Ludlow", + "scheduled_service": "no", + "gps_code": "VT17", + "local_code": "VT17" + }, + { + "id": "25514", + "ident": "VT18", + "type": "heliport", + "name": "Morrisville Armory Heliport", + "latitude_deg": "44.55419921875", + "longitude_deg": "-72.52729797363281", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Morrisville", + "scheduled_service": "no", + "gps_code": "VT18", + "local_code": "VT18" + }, + { + "id": "25515", + "ident": "VT19", + "type": "heliport", + "name": "Newport Armory Heliport", + "latitude_deg": "44.949501037597656", + "longitude_deg": "-72.19950103759766", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "VT19", + "local_code": "VT19" + }, + { + "id": "25516", + "ident": "VT20", + "type": "small_airport", + "name": "Mach Personal Strip", + "latitude_deg": "43.36669921875", + "longitude_deg": "-73.14820098876953", + "elevation_ft": "854", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Pawlet", + "scheduled_service": "no", + "gps_code": "VT20", + "local_code": "VT20" + }, + { + "id": "25517", + "ident": "VT21", + "type": "closed", + "name": "State Garage Site Heliport", + "latitude_deg": "44.826401", + "longitude_deg": "-73.088203", + "elevation_ft": "380", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "St. Albans", + "scheduled_service": "no", + "keywords": "VT21" + }, + { + "id": "25518", + "ident": "VT22", + "type": "small_airport", + "name": "Shelburne Farms Airport", + "latitude_deg": "44.40140151977539", + "longitude_deg": "-73.26709747314453", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Shelburne", + "scheduled_service": "no", + "gps_code": "VT22", + "local_code": "VT22" + }, + { + "id": "25519", + "ident": "VT23", + "type": "small_airport", + "name": "Bostwick Farm Airport", + "latitude_deg": "44.37089920043945", + "longitude_deg": "-73.25039672851562", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Shelburne", + "scheduled_service": "no", + "gps_code": "VT23", + "local_code": "VT23" + }, + { + "id": "25520", + "ident": "VT24", + "type": "closed", + "name": "Torrey Airport", + "latitude_deg": "43.931999", + "longitude_deg": "-73.370102", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Shoreham", + "scheduled_service": "no", + "keywords": "VT24" + }, + { + "id": "25521", + "ident": "VT25", + "type": "small_airport", + "name": "Sky Acres Airport", + "latitude_deg": "44.41669845581055", + "longitude_deg": "-73.16619873046875", + "elevation_ft": "330", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "South Burlington", + "scheduled_service": "no", + "gps_code": "VT25", + "local_code": "VT25" + }, + { + "id": "25522", + "ident": "VT26", + "type": "small_airport", + "name": "Allenholm Airport", + "latitude_deg": "44.624612", + "longitude_deg": "-73.306495", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "South Hero", + "scheduled_service": "no", + "gps_code": "VT26", + "local_code": "VT26" + }, + { + "id": "25523", + "ident": "VT27", + "type": "heliport", + "name": "Villeneuve Heliport", + "latitude_deg": "44.515899658203125", + "longitude_deg": "-72.95120239257812", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Underhill", + "scheduled_service": "no", + "gps_code": "VT27", + "local_code": "VT27" + }, + { + "id": "25524", + "ident": "VT28", + "type": "heliport", + "name": "Vergennes Armory Heliport", + "latitude_deg": "44.1708984375", + "longitude_deg": "-73.2468032836914", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Vergennes", + "scheduled_service": "no", + "gps_code": "VT28", + "local_code": "VT28" + }, + { + "id": "25525", + "ident": "VT29", + "type": "closed", + "name": "Mad River Fly-In Airport", + "latitude_deg": "44.226447", + "longitude_deg": "-72.795403", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Waitsfield", + "scheduled_service": "no", + "keywords": "VT29, Angus Airport" + }, + { + "id": "25526", + "ident": "VT30", + "type": "small_airport", + "name": "Ketcham Landing Area Airport", + "latitude_deg": "44.16255", + "longitude_deg": "-72.834313", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Waitsfield", + "scheduled_service": "no", + "gps_code": "VT30", + "local_code": "VT30" + }, + { + "id": "25527", + "ident": "VT31", + "type": "small_airport", + "name": "Carriers Skypark Airport", + "latitude_deg": "44.11119842529297", + "longitude_deg": "-72.44400024414062", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Washington", + "scheduled_service": "no", + "gps_code": "VT31", + "local_code": "VT31" + }, + { + "id": "25528", + "ident": "VT32", + "type": "heliport", + "name": "Bobby Heliport", + "latitude_deg": "42.98899841308594", + "longitude_deg": "-72.62809753417969", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Brookline", + "scheduled_service": "no", + "gps_code": "VT32", + "local_code": "VT32" + }, + { + "id": "25529", + "ident": "VT33", + "type": "closed", + "name": "Yankee Kingdom Airport", + "latitude_deg": "44.105598", + "longitude_deg": "-73.377899", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "West Addison", + "scheduled_service": "no", + "keywords": "VT33" + }, + { + "id": "25530", + "ident": "VT34", + "type": "small_airport", + "name": "Major W. Guth STOLport", + "latitude_deg": "43.06010055541992", + "longitude_deg": "-72.49199676513672", + "elevation_ft": "819", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Westminster", + "scheduled_service": "no", + "gps_code": "VT34", + "local_code": "VT34" + }, + { + "id": "25531", + "ident": "VT35", + "type": "heliport", + "name": "Williston Armory Heliport", + "latitude_deg": "44.438899993896484", + "longitude_deg": "-73.07730102539062", + "elevation_ft": "495", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Williston", + "scheduled_service": "no", + "gps_code": "VT35", + "local_code": "VT35" + }, + { + "id": "25532", + "ident": "VT36", + "type": "heliport", + "name": "MCHV Heliport", + "latitude_deg": "44.4734", + "longitude_deg": "-73.18875", + "elevation_ft": "345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "VT36", + "local_code": "VT36" + }, + { + "id": "25533", + "ident": "VT37", + "type": "heliport", + "name": "Windsor Armory Heliport", + "latitude_deg": "43.47090148925781", + "longitude_deg": "-72.40370178222656", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Windsor", + "scheduled_service": "no", + "gps_code": "VT37", + "local_code": "VT37" + }, + { + "id": "25534", + "ident": "VT38", + "type": "small_airport", + "name": "Greenwoods Airfield", + "latitude_deg": "45.008584", + "longitude_deg": "-73.240966", + "elevation_ft": "179", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Alburg", + "scheduled_service": "no", + "gps_code": "VT38", + "local_code": "VT38" + }, + { + "id": "25535", + "ident": "VT39", + "type": "small_airport", + "name": "Taylor Airport", + "latitude_deg": "44.607601165771484", + "longitude_deg": "-72.48040008544922", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Wolcott", + "scheduled_service": "no", + "gps_code": "VT39", + "local_code": "VT39" + }, + { + "id": "25536", + "ident": "VT40", + "type": "heliport", + "name": "Wenlock Crossing Heliport", + "latitude_deg": "44.777000427246094", + "longitude_deg": "-71.75150299072266", + "elevation_ft": "1157", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Ferdinand", + "scheduled_service": "no", + "gps_code": "VT40", + "local_code": "VT40" + }, + { + "id": "25537", + "ident": "VT41", + "type": "closed", + "name": "Moore's Field", + "latitude_deg": "42.924198", + "longitude_deg": "-72.5298", + "elevation_ft": "310", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Putney", + "scheduled_service": "no", + "keywords": "VT41" + }, + { + "id": "25538", + "ident": "VT42", + "type": "small_airport", + "name": "Two Tails Airport", + "latitude_deg": "44.51259994506836", + "longitude_deg": "-72.60710144042969", + "elevation_ft": "754", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Morrisville", + "scheduled_service": "no", + "gps_code": "VT42", + "local_code": "VT42" + }, + { + "id": "25539", + "ident": "VT43", + "type": "small_airport", + "name": "Onyon Airport", + "latitude_deg": "43.01919937133789", + "longitude_deg": "-72.65290069580078", + "elevation_ft": "427", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Townshend", + "scheduled_service": "no", + "gps_code": "VT43", + "local_code": "VT43" + }, + { + "id": "25540", + "ident": "VT44", + "type": "small_airport", + "name": "Perras Field", + "latitude_deg": "44.52669906616211", + "longitude_deg": "-72.58149719238281", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Morrisville", + "scheduled_service": "no", + "gps_code": "VT44", + "local_code": "VT44" + }, + { + "id": "25541", + "ident": "VT45", + "type": "small_airport", + "name": "Davis Private Airport", + "latitude_deg": "44.51729965209961", + "longitude_deg": "-72.97930145263672", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Jericho", + "scheduled_service": "no", + "gps_code": "VT45", + "local_code": "VT45" + }, + { + "id": "25542", + "ident": "VT46", + "type": "small_airport", + "name": "Northern Lights Airport", + "latitude_deg": "44.872002", + "longitude_deg": "-73.286499", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Alburg", + "scheduled_service": "no", + "gps_code": "VT46", + "local_code": "VT46" + }, + { + "id": "25543", + "ident": "VT47", + "type": "small_airport", + "name": "Miller Farm Airfield", + "latitude_deg": "42.778599", + "longitude_deg": "-72.527802", + "elevation_ft": "285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Vernon", + "scheduled_service": "no", + "gps_code": "VT47", + "local_code": "VT47", + "keywords": "Miller's Pleasure" + }, + { + "id": "25544", + "ident": "VT48", + "type": "closed", + "name": "Fairholt Airport", + "latitude_deg": "44.461399", + "longitude_deg": "-73.195999", + "elevation_ft": "350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Burlington", + "scheduled_service": "no", + "keywords": "VT48" + }, + { + "id": "25545", + "ident": "VT50", + "type": "heliport", + "name": "Enosburg Falls Armory Heliport", + "latitude_deg": "44.91389846801758", + "longitude_deg": "-72.80509948730469", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Enosburg Falls", + "scheduled_service": "no", + "gps_code": "VT50", + "local_code": "VT50" + }, + { + "id": "25546", + "ident": "VT51", + "type": "heliport", + "name": "Ibm Heliport", + "latitude_deg": "44.4817008972168", + "longitude_deg": "-73.09649658203125", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Essex Junction", + "scheduled_service": "no", + "gps_code": "VT51", + "local_code": "VT51" + }, + { + "id": "25547", + "ident": "VT52", + "type": "small_airport", + "name": "Shaw Meadow Airport", + "latitude_deg": "44.64339828491211", + "longitude_deg": "-73.1875991821289", + "elevation_ft": "230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "VT52", + "local_code": "VT52" + }, + { + "id": "25548", + "ident": "VT53", + "type": "small_airport", + "name": "Bailey Airport", + "latitude_deg": "44.117795", + "longitude_deg": "-73.377546", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Panton", + "scheduled_service": "no", + "gps_code": "VT53", + "local_code": "VT53", + "keywords": "Staton Airport" + }, + { + "id": "25549", + "ident": "VT54", + "type": "closed", + "name": "R G Newsome Heliport", + "latitude_deg": "43.651501", + "longitude_deg": "-72.422302", + "elevation_ft": "660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Quechee", + "scheduled_service": "no", + "keywords": "VT54" + }, + { + "id": "25550", + "ident": "VT55", + "type": "small_airport", + "name": "Brandon Airport", + "latitude_deg": "43.90119934082031", + "longitude_deg": "-72.58290100097656", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Randolph", + "scheduled_service": "no", + "gps_code": "VT55", + "local_code": "VT55" + }, + { + "id": "25551", + "ident": "VT56", + "type": "small_airport", + "name": "West Burke Aerodrome", + "latitude_deg": "44.61309814453125", + "longitude_deg": "-71.98090362548828", + "elevation_ft": "1285", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "West Burke", + "scheduled_service": "no", + "gps_code": "VT56", + "local_code": "VT56" + }, + { + "id": "25552", + "ident": "VT57", + "type": "seaplane_base", + "name": "Malletts Head Seaplane Base", + "latitude_deg": "44.56060028076172", + "longitude_deg": "-73.24040222167969", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Colchester", + "scheduled_service": "no", + "gps_code": "VT57", + "local_code": "VT57" + }, + { + "id": "25553", + "ident": "VT58", + "type": "seaplane_base", + "name": "Stave Island Seaplane Base", + "latitude_deg": "44.59590148925781", + "longitude_deg": "-73.34760284423828", + "elevation_ft": "95", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "South Hero", + "scheduled_service": "no", + "gps_code": "VT58", + "local_code": "VT58" + }, + { + "id": "25554", + "ident": "VT59", + "type": "small_airport", + "name": "Ardell Flying Field", + "latitude_deg": "43.277801513671875", + "longitude_deg": "-72.91079711914062", + "elevation_ft": "1919", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Manchester", + "scheduled_service": "no", + "gps_code": "VT59", + "local_code": "VT59" + }, + { + "id": "25555", + "ident": "VT60", + "type": "small_airport", + "name": "Hulett Landing Strip", + "latitude_deg": "43.330101013183594", + "longitude_deg": "-73.24259948730469", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "West Pawlett", + "scheduled_service": "no", + "gps_code": "VT60", + "local_code": "VT60" + }, + { + "id": "25556", + "ident": "VT61", + "type": "heliport", + "name": "Rutland Regional Medical Center Heliport", + "latitude_deg": "43.59809875488281", + "longitude_deg": "-72.95500183105469", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Rutland", + "scheduled_service": "no", + "gps_code": "VT61", + "local_code": "VT61" + }, + { + "id": "25557", + "ident": "VT62", + "type": "small_airport", + "name": "Catamount Airfield", + "latitude_deg": "44.39039993286133", + "longitude_deg": "-72.35060119628906", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Cabot", + "scheduled_service": "no", + "gps_code": "VT62", + "local_code": "VT62" + }, + { + "id": "25558", + "ident": "VT63", + "type": "small_airport", + "name": "Douglas Field", + "latitude_deg": "44.99530029296875", + "longitude_deg": "-72.37899780273438", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "North Troy", + "scheduled_service": "no", + "gps_code": "VT63", + "local_code": "VT63" + }, + { + "id": "25559", + "ident": "VT64", + "type": "small_airport", + "name": "Mountain View Farm Airport", + "latitude_deg": "44.51530075073242", + "longitude_deg": "-72.64119720458984", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Morristown", + "scheduled_service": "no", + "gps_code": "VT64", + "local_code": "VT64" + }, + { + "id": "324415", + "ident": "VT67", + "type": "heliport", + "name": "Central Vermont Medical Center Heliport", + "latitude_deg": "44.219369", + "longitude_deg": "-72.560408", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Barre", + "scheduled_service": "no", + "gps_code": "VT65", + "local_code": "VT65", + "keywords": "VT67" + }, + { + "id": "25560", + "ident": "VT70", + "type": "heliport", + "name": "North Country Hospital Heliport", + "latitude_deg": "44.95640182495117", + "longitude_deg": "-72.19950103759766", + "elevation_ft": "720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "VT70", + "local_code": "VT70" + }, + { + "id": "45871", + "ident": "VT73", + "type": "small_airport", + "name": "Melrose Springs Airfield", + "latitude_deg": "43.944861", + "longitude_deg": "-73.316833", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Bridport", + "scheduled_service": "no", + "gps_code": "VT73", + "local_code": "VT73" + }, + { + "id": "25561", + "ident": "VT8", + "type": "small_airport", + "name": "Shelburne Airport", + "latitude_deg": "44.359573991699996", + "longitude_deg": "-73.227481842", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Shelburne", + "scheduled_service": "no", + "gps_code": "VT8", + "local_code": "VT8" + }, + { + "id": "334360", + "ident": "VT80", + "type": "heliport", + "name": "Monument Farms Dairy Bittersweet Falls Road Heliport", + "latitude_deg": "44.036531", + "longitude_deg": "-73.213869", + "elevation_ft": "394", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Weybridge", + "scheduled_service": "no", + "gps_code": "VT80", + "local_code": "VT80" + }, + { + "id": "322688", + "ident": "VT88", + "type": "heliport", + "name": "VTPAD Heliport", + "latitude_deg": "44.058938", + "longitude_deg": "-73.019483", + "elevation_ft": "1908", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "South Lincoln", + "scheduled_service": "no", + "gps_code": "VT88", + "local_code": "VT88" + }, + { + "id": "45868", + "ident": "VT96", + "type": "heliport", + "name": "Mansfield Heliflight Inc Heliport", + "latitude_deg": "44.600117", + "longitude_deg": "-73.16505", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VT", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "VT96", + "local_code": "VT96" + }, + { + "id": "315195", + "ident": "VTA", + "type": "small_airport", + "name": "Victoria Airport", + "latitude_deg": "14.9344", + "longitude_deg": "-87.394", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "HN", + "iso_region": "HN-YO", + "municipality": "Victoria", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Victoria_Airport_(Honduras)" + }, + { + "id": "26638", + "ident": "VTBD", + "type": "large_airport", + "name": "Don Mueang International Airport", + "latitude_deg": "13.9125995636", + "longitude_deg": "100.607002258", + "elevation_ft": "9", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-10", + "municipality": "Bangkok", + "scheduled_service": "yes", + "gps_code": "VTBD", + "iata_code": "DMK", + "home_link": "http://www2.airportthai.co.th/airportnew/bangkok/index.asp?lang=en", + "wikipedia_link": "https://en.wikipedia.org/wiki/Don_Mueang_International_Airport", + "keywords": "Old Bangkok International Airport, Don Muang Royal Thai Air Force Base" + }, + { + "id": "26639", + "ident": "VTBH", + "type": "small_airport", + "name": "Sa Pran Nak Airport", + "latitude_deg": "14.9493999481", + "longitude_deg": "100.642997742", + "elevation_ft": "95", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-16", + "scheduled_service": "no", + "gps_code": "VTBH", + "iata_code": "KKM" + }, + { + "id": "26640", + "ident": "VTBI", + "type": "small_airport", + "name": "Khao E To Airport", + "latitude_deg": "14.0778", + "longitude_deg": "101.379997", + "elevation_ft": "80", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-25", + "municipality": "Prachin Buri", + "scheduled_service": "no", + "gps_code": "VTBI" + }, + { + "id": "26641", + "ident": "VTBK", + "type": "medium_airport", + "name": "Kamphaeng Saen Airport", + "latitude_deg": "14.1020002365", + "longitude_deg": "99.9171981812", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-72", + "municipality": "Nakhon Pathom", + "scheduled_service": "no", + "gps_code": "VTBK", + "iata_code": "KDT" + }, + { + "id": "26642", + "ident": "VTBL", + "type": "medium_airport", + "name": "Khok Kathiam Airport", + "latitude_deg": "14.8746004105", + "longitude_deg": "100.663002014", + "elevation_ft": "123", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-16", + "scheduled_service": "no", + "gps_code": "VTBL" + }, + { + "id": "32594", + "ident": "VTBN", + "type": "small_airport", + "name": "Prachuap Khiri Khan Airport", + "latitude_deg": "12.417200088500977", + "longitude_deg": "99.86940002441406", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-77", + "municipality": "Prachuap Khiri Khan", + "scheduled_service": "no", + "gps_code": "VTBN" + }, + { + "id": "26643", + "ident": "VTBO", + "type": "medium_airport", + "name": "Trat Airport", + "latitude_deg": "12.2746", + "longitude_deg": "102.319", + "elevation_ft": "105", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-23", + "municipality": "Laem Ngop", + "scheduled_service": "yes", + "gps_code": "VTBO", + "iata_code": "TDX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trat_Airport" + }, + { + "id": "26644", + "ident": "VTBP", + "type": "small_airport", + "name": "Prachuap Airport", + "latitude_deg": "11.788399696350098", + "longitude_deg": "99.80470275878906", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-77", + "scheduled_service": "no", + "gps_code": "VTBP" + }, + { + "id": "28118", + "ident": "VTBS", + "type": "large_airport", + "name": "Suvarnabhumi Airport", + "latitude_deg": "13.681099891662598", + "longitude_deg": "100.74700164794922", + "elevation_ft": "5", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-10", + "municipality": "Bangkok", + "scheduled_service": "yes", + "gps_code": "VTBS", + "iata_code": "BKK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Suvarnabhumi_Airport" + }, + { + "id": "32595", + "ident": "VTBT", + "type": "small_airport", + "name": "Bang Phra Airport", + "latitude_deg": "13.232426", + "longitude_deg": "100.956802", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-20", + "municipality": "Bang Phra", + "scheduled_service": "no", + "gps_code": "VTBT", + "home_link": "http://www.thaiflyingclub.com/" + }, + { + "id": "26645", + "ident": "VTBU", + "type": "medium_airport", + "name": "U-Tapao International Airport", + "latitude_deg": "12.679900169372559", + "longitude_deg": "101.00499725341797", + "elevation_ft": "42", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-21", + "municipality": "Rayong", + "scheduled_service": "yes", + "gps_code": "VTBU", + "iata_code": "UTP", + "home_link": "http://www.utapao.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/U-Tapao_International_Airport", + "keywords": "Utapao, U-Taphao, U-Tapao Royal Thai Navy Airfield" + }, + { + "id": "26646", + "ident": "VTBW", + "type": "small_airport", + "name": "Watthana Nakhon Airport", + "latitude_deg": "13.768799781799316", + "longitude_deg": "102.31500244140625", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-25", + "scheduled_service": "no", + "gps_code": "VTBW" + }, + { + "id": "32596", + "ident": "VTCB", + "type": "small_airport", + "name": "Phayao Ban Chiang Kham Airport", + "latitude_deg": "19.5", + "longitude_deg": "100.28299713134766", + "elevation_ft": "1272", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-56", + "municipality": "Phayao Ban Chiang Kham", + "scheduled_service": "no", + "gps_code": "VTCB" + }, + { + "id": "26647", + "ident": "VTCC", + "type": "large_airport", + "name": "Chiang Mai International Airport", + "latitude_deg": "18.766799926799997", + "longitude_deg": "98.962600708", + "elevation_ft": "1036", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-50", + "municipality": "Chiang Mai", + "scheduled_service": "yes", + "gps_code": "VTCC", + "iata_code": "CNX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chiang_Mai_International_Airport" + }, + { + "id": "26648", + "ident": "VTCH", + "type": "medium_airport", + "name": "Mae Hong Son Airport", + "latitude_deg": "19.301300048828125", + "longitude_deg": "97.97579956054688", + "elevation_ft": "929", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-58", + "scheduled_service": "yes", + "gps_code": "VTCH", + "iata_code": "HGN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mae_Hong_Son_Airport" + }, + { + "id": "32597", + "ident": "VTCI", + "type": "small_airport", + "name": "Mae Hong Son Airport", + "latitude_deg": "19.3719997406", + "longitude_deg": "98.43699646", + "elevation_ft": "1271", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-58", + "municipality": "Mae Hong Son", + "scheduled_service": "no", + "gps_code": "VTCI", + "iata_code": "PYY", + "wikipedia_link": "http://en.wikipedihttp://en.wikipedia.org/wiki/Pai_Airporta.org/wiki/Pai_Airport", + "keywords": "Pai Airport" + }, + { + "id": "26649", + "ident": "VTCL", + "type": "medium_airport", + "name": "Lampang Airport", + "latitude_deg": "18.27090072631836", + "longitude_deg": "99.50420379638672", + "elevation_ft": "811", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-52", + "scheduled_service": "yes", + "gps_code": "VTCL", + "iata_code": "LPT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lampang_Airport" + }, + { + "id": "26650", + "ident": "VTCN", + "type": "medium_airport", + "name": "Nan Airport", + "latitude_deg": "18.807899475097656", + "longitude_deg": "100.78299713134766", + "elevation_ft": "685", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-55", + "scheduled_service": "yes", + "gps_code": "VTCN", + "iata_code": "NNT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nan_Airport" + }, + { + "id": "302310", + "ident": "VTCO", + "type": "small_airport", + "name": "Lamphun Airport", + "latitude_deg": "18.546816", + "longitude_deg": "99.012029", + "elevation_ft": "925", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-51", + "scheduled_service": "yes", + "gps_code": "VTCO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lamphun_Airport" + }, + { + "id": "26651", + "ident": "VTCP", + "type": "medium_airport", + "name": "Phrae Airport", + "latitude_deg": "18.132200241088867", + "longitude_deg": "100.16500091552734", + "elevation_ft": "538", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-54", + "scheduled_service": "no", + "gps_code": "VTCP", + "iata_code": "PRH" + }, + { + "id": "26652", + "ident": "VTCR", + "type": "closed", + "name": "Old Chiang Rai Airport", + "latitude_deg": "19.885401", + "longitude_deg": "99.826797", + "elevation_ft": "1312", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-57", + "municipality": "Chiang Rai", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Old_Chiang_Rai_Airport", + "keywords": "VTCR" + }, + { + "id": "32598", + "ident": "VTCS", + "type": "small_airport", + "name": "Mae Sariang Airport", + "latitude_deg": "18.180962", + "longitude_deg": "97.930627", + "elevation_ft": "1030", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-58", + "municipality": "Mae Sariang", + "scheduled_service": "no", + "gps_code": "VTCS" + }, + { + "id": "26653", + "ident": "VTCT", + "type": "medium_airport", + "name": "Mae Fah Luang - Chiang Rai International Airport", + "latitude_deg": "19.952299", + "longitude_deg": "99.882896", + "elevation_ft": "1280", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-57", + "municipality": "Chiang Rai", + "scheduled_service": "yes", + "gps_code": "VTCT", + "iata_code": "CEI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chiang_Rai_International_Airport" + }, + { + "id": "354711", + "ident": "VTCY", + "type": "small_airport", + "name": "Nok Airfield", + "latitude_deg": "18.6762", + "longitude_deg": "99.11157", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-50", + "scheduled_service": "no", + "gps_code": "VTCY", + "home_link": "http://nokaviation.com" + }, + { + "id": "30677", + "ident": "VTED", + "type": "small_airport", + "name": "Udorn Air Base", + "latitude_deg": "17.382999420166016", + "longitude_deg": "102.80000305175781", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-41", + "municipality": "Ban Mak Khaen", + "scheduled_service": "no", + "gps_code": "VTED", + "iata_code": "BAO" + }, + { + "id": "26654", + "ident": "VTPB", + "type": "medium_airport", + "name": "Phetchabun Airport", + "latitude_deg": "16.6760005951", + "longitude_deg": "101.194999695", + "elevation_ft": "450", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-67", + "scheduled_service": "yes", + "gps_code": "VTPB", + "iata_code": "PHY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Phetchabun_Airport" + }, + { + "id": "26655", + "ident": "VTPH", + "type": "medium_airport", + "name": "Hua Hin Airport", + "latitude_deg": "12.6361999512", + "longitude_deg": "99.951499939", + "elevation_ft": "62", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-76", + "municipality": "Hua Hin", + "scheduled_service": "yes", + "gps_code": "VTPH", + "iata_code": "HHQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hua_Hin_Airport" + }, + { + "id": "26656", + "ident": "VTPI", + "type": "medium_airport", + "name": "Takhli Airport", + "latitude_deg": "15.277299881", + "longitude_deg": "100.29599762", + "elevation_ft": "107", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-60", + "scheduled_service": "no", + "gps_code": "VTPI", + "iata_code": "TKH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Takhli_Royal_Thai_Air_Force_Base" + }, + { + "id": "26657", + "ident": "VTPL", + "type": "small_airport", + "name": "Sak Long Airport", + "latitude_deg": "16.82430076599121", + "longitude_deg": "101.2509994506836", + "elevation_ft": "500", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-67", + "scheduled_service": "no", + "gps_code": "VTPL" + }, + { + "id": "26658", + "ident": "VTPM", + "type": "medium_airport", + "name": "Mae Sot Airport", + "latitude_deg": "16.699899673461914", + "longitude_deg": "98.54509735107422", + "elevation_ft": "690", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-63", + "scheduled_service": "yes", + "gps_code": "VTPM", + "iata_code": "MAQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mae_Sot_Airport" + }, + { + "id": "26659", + "ident": "VTPN", + "type": "small_airport", + "name": "Nakhon Sawan Airport", + "latitude_deg": "15.67300033569336", + "longitude_deg": "100.13700103759766", + "elevation_ft": "113", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-60", + "scheduled_service": "no", + "gps_code": "VTPN" + }, + { + "id": "26660", + "ident": "VTPO", + "type": "medium_airport", + "name": "Sukhothai Airport", + "latitude_deg": "17.238000869750977", + "longitude_deg": "99.81819915771484", + "elevation_ft": "179", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-64", + "scheduled_service": "yes", + "gps_code": "VTPO", + "iata_code": "THS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sukhothai_Airport" + }, + { + "id": "26661", + "ident": "VTPP", + "type": "medium_airport", + "name": "Phitsanulok Airport", + "latitude_deg": "16.782899856567383", + "longitude_deg": "100.27899932861328", + "elevation_ft": "154", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-65", + "scheduled_service": "yes", + "gps_code": "VTPP", + "iata_code": "PHS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Phitsanulok_Airport" + }, + { + "id": "32602", + "ident": "VTPR", + "type": "small_airport", + "name": "Photharam Airport", + "latitude_deg": "13.668600082397461", + "longitude_deg": "99.73139953613281", + "elevation_ft": "88", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-70", + "municipality": "Photharam", + "scheduled_service": "no", + "gps_code": "VTPR" + }, + { + "id": "26662", + "ident": "VTPT", + "type": "medium_airport", + "name": "Tak Airport", + "latitude_deg": "16.895999908447266", + "longitude_deg": "99.25330352783203", + "elevation_ft": "478", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-63", + "scheduled_service": "no", + "gps_code": "VTPT", + "iata_code": "TKT" + }, + { + "id": "32560", + "ident": "VTPU", + "type": "small_airport", + "name": "Uttaradit Airport", + "latitude_deg": "17.617000579833984", + "longitude_deg": "100.0999984741211", + "elevation_ft": "262", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-53", + "municipality": "Uttaradit", + "scheduled_service": "no", + "gps_code": "VTPU", + "iata_code": "UTR" + }, + { + "id": "26663", + "ident": "VTPY", + "type": "small_airport", + "name": "Khunan Phumipol Airport", + "latitude_deg": "17.23419952392578", + "longitude_deg": "99.05789947509766", + "elevation_ft": "492", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-63", + "scheduled_service": "no", + "gps_code": "VTPY" + }, + { + "id": "26664", + "ident": "VTSA", + "type": "small_airport", + "name": "Khoun Khan Airport", + "latitude_deg": "6.661399841308594", + "longitude_deg": "100.08000183105469", + "elevation_ft": "18", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-91", + "scheduled_service": "no", + "gps_code": "VTSA" + }, + { + "id": "26665", + "ident": "VTSB", + "type": "medium_airport", + "name": "Surat Thani Airport", + "latitude_deg": "9.13259983063", + "longitude_deg": "99.135597229", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-84", + "municipality": "Surat Thani", + "scheduled_service": "yes", + "gps_code": "VTSB", + "iata_code": "URT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Surat_Thani_Airport" + }, + { + "id": "26666", + "ident": "VTSC", + "type": "medium_airport", + "name": "Narathiwat Airport", + "latitude_deg": "6.5199198722839355", + "longitude_deg": "101.74299621582031", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-96", + "scheduled_service": "yes", + "gps_code": "VTSC", + "iata_code": "NAW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Narathiwat_Airport" + }, + { + "id": "26667", + "ident": "VTSE", + "type": "medium_airport", + "name": "Chumphon Airport", + "latitude_deg": "10.7112", + "longitude_deg": "99.361702", + "elevation_ft": "18", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-86", + "municipality": "Chumphon", + "scheduled_service": "yes", + "gps_code": "VTSE", + "iata_code": "CJM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chumphon_Airport" + }, + { + "id": "26668", + "ident": "VTSF", + "type": "medium_airport", + "name": "Nakhon Si Thammarat Airport", + "latitude_deg": "8.539620399475098", + "longitude_deg": "99.9447021484375", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-80", + "municipality": "Nakhon Si Thammarat", + "scheduled_service": "yes", + "gps_code": "VTSF", + "iata_code": "NST", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nakhon_Si_Thammarat_Airport", + "keywords": "ท่าอากาศยานนครศรีธรรมราช" + }, + { + "id": "26669", + "ident": "VTSG", + "type": "medium_airport", + "name": "Krabi Airport", + "latitude_deg": "8.09912014008", + "longitude_deg": "98.9861984253", + "elevation_ft": "82", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-81", + "municipality": "Krabi", + "scheduled_service": "yes", + "gps_code": "VTSG", + "iata_code": "KBV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Krabi_Airport" + }, + { + "id": "26670", + "ident": "VTSH", + "type": "medium_airport", + "name": "Songkhla Airport", + "latitude_deg": "7.186560153961182", + "longitude_deg": "100.60800170898438", + "elevation_ft": "12", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-90", + "scheduled_service": "no", + "gps_code": "VTSH", + "iata_code": "SGZ" + }, + { + "id": "26671", + "ident": "VTSK", + "type": "medium_airport", + "name": "Pattani Airport", + "latitude_deg": "6.785459995269775", + "longitude_deg": "101.15399932861328", + "elevation_ft": "8", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-94", + "scheduled_service": "no", + "gps_code": "VTSK", + "iata_code": "PAN" + }, + { + "id": "26672", + "ident": "VTSM", + "type": "medium_airport", + "name": "Samui Airport", + "latitude_deg": "9.547789573669998", + "longitude_deg": "100.06199646", + "elevation_ft": "64", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-80", + "municipality": "Na Thon (Ko Samui Island)", + "scheduled_service": "yes", + "gps_code": "VTSM", + "iata_code": "USM", + "home_link": "http://www.samuiairportonline.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Samui_Airport" + }, + { + "id": "26673", + "ident": "VTSN", + "type": "medium_airport", + "name": "Cha Eian Airport", + "latitude_deg": "8.47115039825", + "longitude_deg": "99.9555969238", + "elevation_ft": "44", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-80", + "municipality": "Nakhon Si Thammarat", + "scheduled_service": "no", + "gps_code": "VTSN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cha_Eian_Airport", + "keywords": "NST" + }, + { + "id": "26674", + "ident": "VTSP", + "type": "large_airport", + "name": "Phuket International Airport", + "latitude_deg": "8.1132", + "longitude_deg": "98.316902", + "elevation_ft": "82", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-83", + "municipality": "Phuket", + "scheduled_service": "yes", + "gps_code": "VTSP", + "iata_code": "HKT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Phuket_International_Airport" + }, + { + "id": "26675", + "ident": "VTSR", + "type": "medium_airport", + "name": "Ranong Airport", + "latitude_deg": "9.77762", + "longitude_deg": "98.585503", + "elevation_ft": "57", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-85", + "municipality": "Ranong", + "scheduled_service": "yes", + "gps_code": "VTSR", + "iata_code": "UNN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ranong_Airport" + }, + { + "id": "26676", + "ident": "VTSS", + "type": "medium_airport", + "name": "Hat Yai International Airport", + "latitude_deg": "6.93320989609", + "longitude_deg": "100.392997742", + "elevation_ft": "90", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-90", + "municipality": "Hat Yai", + "scheduled_service": "yes", + "gps_code": "VTSS", + "iata_code": "HDY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hat_Yai_International_Airport" + }, + { + "id": "26677", + "ident": "VTST", + "type": "medium_airport", + "name": "Trang Airport", + "latitude_deg": "7.50874", + "longitude_deg": "99.6166", + "elevation_ft": "67", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-92", + "municipality": "Trang", + "scheduled_service": "yes", + "gps_code": "VTST", + "iata_code": "TST", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trang_Airport" + }, + { + "id": "354573", + "ident": "VTSW", + "type": "small_airport", + "name": "Phuket Airpark", + "latitude_deg": "8.018733", + "longitude_deg": "98.40291", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-83", + "municipality": "Talang", + "scheduled_service": "no", + "gps_code": "VTSW", + "home_link": "http://www.phuketairpark.com/" + }, + { + "id": "26678", + "ident": "VTUD", + "type": "medium_airport", + "name": "Udon Thani Airport", + "latitude_deg": "17.386400222800003", + "longitude_deg": "102.788002014", + "elevation_ft": "579", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-41", + "municipality": "Udon Thani", + "scheduled_service": "yes", + "gps_code": "VTUD", + "iata_code": "UTH", + "home_link": "http://www.udonthaniairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Udon_Thani_International_Airport" + }, + { + "id": "26679", + "ident": "VTUI", + "type": "medium_airport", + "name": "Sakon Nakhon Airport", + "latitude_deg": "17.195100784301758", + "longitude_deg": "104.11900329589844", + "elevation_ft": "529", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-47", + "scheduled_service": "yes", + "gps_code": "VTUI", + "iata_code": "SNO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sakon_Nakhon_Airport" + }, + { + "id": "26680", + "ident": "VTUJ", + "type": "medium_airport", + "name": "Surin Airport", + "latitude_deg": "14.868300437927", + "longitude_deg": "103.49800109863", + "elevation_ft": "478", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-32", + "municipality": "Surin", + "scheduled_service": "yes", + "gps_code": "VTUJ", + "iata_code": "PXR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Surin_Airport", + "keywords": "Surin Bhakdi Airport" + }, + { + "id": "26681", + "ident": "VTUK", + "type": "medium_airport", + "name": "Khon Kaen Airport", + "latitude_deg": "16.466600418099997", + "longitude_deg": "102.783996582", + "elevation_ft": "670", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-40", + "municipality": "Khon Kaen", + "scheduled_service": "yes", + "gps_code": "VTUK", + "iata_code": "KKC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khon_Kaen_Airport" + }, + { + "id": "26682", + "ident": "VTUL", + "type": "medium_airport", + "name": "Loei Airport", + "latitude_deg": "17.43910026550293", + "longitude_deg": "101.72200012207031", + "elevation_ft": "860", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-42", + "scheduled_service": "yes", + "gps_code": "VTUL", + "iata_code": "LOE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Loei_Airport" + }, + { + "id": "26683", + "ident": "VTUN", + "type": "small_airport", + "name": "Khorat Airport", + "latitude_deg": "14.9345", + "longitude_deg": "102.079002", + "elevation_ft": "729", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-30", + "municipality": "Nakhon Ratchasima", + "scheduled_service": "no", + "gps_code": "VTUN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Korat_Royal_Thai_Air_Force_Base", + "keywords": "Korat Air Base" + }, + { + "id": "26684", + "ident": "VTUO", + "type": "medium_airport", + "name": "Buri Ram Airport", + "latitude_deg": "15.229499816894531", + "longitude_deg": "103.25299835205078", + "elevation_ft": "590", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-31", + "scheduled_service": "yes", + "gps_code": "VTUO", + "iata_code": "BFV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buriram_Airport" + }, + { + "id": "26685", + "ident": "VTUQ", + "type": "medium_airport", + "name": "Nakhon Ratchasima Airport", + "latitude_deg": "14.9495", + "longitude_deg": "102.313004", + "elevation_ft": "765", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-30", + "municipality": "Chaloem Phra Kiat", + "scheduled_service": "no", + "gps_code": "VTUQ", + "iata_code": "NAK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nakhon_Ratchasima_Airport" + }, + { + "id": "26686", + "ident": "VTUR", + "type": "small_airport", + "name": "Rob Muang Airport", + "latitude_deg": "16.07040023803711", + "longitude_deg": "103.64600372314453", + "elevation_ft": "459", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-45", + "scheduled_service": "no", + "gps_code": "VTUR" + }, + { + "id": "26687", + "ident": "VTUU", + "type": "medium_airport", + "name": "Ubon Ratchathani Airport", + "latitude_deg": "15.2512998581", + "longitude_deg": "104.870002747", + "elevation_ft": "406", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-34", + "municipality": "Ubon Ratchathani", + "scheduled_service": "yes", + "gps_code": "VTUU", + "iata_code": "UBP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ubon_Ratchathani_Airport" + }, + { + "id": "26688", + "ident": "VTUV", + "type": "medium_airport", + "name": "Roi Et Airport", + "latitude_deg": "16.11680030822754", + "longitude_deg": "103.77400207519531", + "elevation_ft": "451", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-45", + "scheduled_service": "yes", + "gps_code": "VTUV", + "iata_code": "ROI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roi_Et_Airport" + }, + { + "id": "26689", + "ident": "VTUW", + "type": "medium_airport", + "name": "Nakhon Phanom Airport", + "latitude_deg": "17.383800506591797", + "longitude_deg": "104.64299774169922", + "elevation_ft": "587", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-48", + "scheduled_service": "yes", + "gps_code": "VTUW", + "iata_code": "KOP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nakhon_Phanom_Airport" + }, + { + "id": "32603", + "ident": "VTUZ", + "type": "small_airport", + "name": "Nam Phung Dam Airport", + "latitude_deg": "16.65220069885254", + "longitude_deg": "102.96700286865234", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-40", + "municipality": "Khon Kaen", + "scheduled_service": "no", + "gps_code": "VTUZ", + "keywords": "VTEZ" + }, + { + "id": "342011", + "ident": "VU-0001", + "type": "closed", + "name": "Turtle Bay Airfield", + "latitude_deg": "-15.377557", + "longitude_deg": "167.179473", + "elevation_ft": "58", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-SAM", + "municipality": "Espiritu Santo Is.", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Turtle_Bay_Airfield", + "keywords": "Fighter Field #1" + }, + { + "id": "342012", + "ident": "VU-0002", + "type": "closed", + "name": "Luganville Airfield", + "latitude_deg": "-15.5155", + "longitude_deg": "167.1319", + "elevation_ft": "484", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-SAM", + "municipality": "Espiritu Santo Is.", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Luganville_Airfield", + "keywords": "Bomber Field #3" + }, + { + "id": "342018", + "ident": "VU-0003", + "type": "closed", + "name": "Palikulo Bay Airfield", + "latitude_deg": "-15.5016", + "longitude_deg": "167.2458", + "elevation_ft": "43", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-SAM", + "municipality": "Espiritu Santo Is.", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palikulo_Bay_Airfield", + "keywords": "Bomber Field #1" + }, + { + "id": "342025", + "ident": "VU-0004", + "type": "closed", + "name": "Luganville Seaplane Base", + "latitude_deg": "-15.555", + "longitude_deg": "167.147", + "elevation_ft": "0", + "continent": "OC", + "iso_country": "VU", + "iso_region": "VU-SAM", + "municipality": "Espiritu Santo Is.", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Luganville_Seaplane_Base" + }, + { + "id": "301325", + "ident": "VUU", + "type": "small_airport", + "name": "Mvuu Camp Airport", + "latitude_deg": "-14.838611", + "longitude_deg": "35.301389", + "elevation_ft": "1600", + "continent": "AF", + "iso_country": "MW", + "iso_region": "MW-MH", + "municipality": "Liwonde National Park", + "scheduled_service": "no", + "iata_code": "VUU" + }, + { + "id": "26591", + "ident": "VV02", + "type": "small_airport", + "name": "Bien Hoa Air Base", + "latitude_deg": "10.9766998291", + "longitude_deg": "106.818000793", + "elevation_ft": "79", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SE", + "municipality": "Bien Hoa", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bien_Hoa_Air_Base" + }, + { + "id": "26592", + "ident": "VV03", + "type": "small_airport", + "name": "Haiphong Kien An Airport", + "latitude_deg": "20.8034", + "longitude_deg": "106.605003", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-RRD", + "municipality": "Haiphong (Kien An)", + "scheduled_service": "no" + }, + { + "id": "26690", + "ident": "VVBM", + "type": "medium_airport", + "name": "Buon Ma Thuot Airport", + "latitude_deg": "12.668299675", + "longitude_deg": "108.120002747", + "elevation_ft": "1729", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-CH", + "municipality": "Buon Ma Thuot", + "scheduled_service": "yes", + "gps_code": "VVBM", + "iata_code": "BMV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buon_Ma_Thuot_Airport" + }, + { + "id": "26691", + "ident": "VVCA", + "type": "small_airport", + "name": "Chu Lai Airport", + "latitude_deg": "15.4033", + "longitude_deg": "108.706001", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Tam Nghĩa", + "scheduled_service": "yes", + "gps_code": "VVCA", + "iata_code": "VCL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chu_Lai_Airport", + "keywords": "chu lai air base" + }, + { + "id": "26692", + "ident": "VVCI", + "type": "medium_airport", + "name": "Cat Bi International Airport", + "latitude_deg": "20.81686", + "longitude_deg": "106.722994", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-RRD", + "municipality": "Haiphong (Hai An)", + "scheduled_service": "yes", + "gps_code": "VVCI", + "iata_code": "HPH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cat_Bi_Airport", + "keywords": "Catbi Airport" + }, + { + "id": "302311", + "ident": "VVCL", + "type": "closed", + "name": "Cam Ly Airport", + "latitude_deg": "11.950284", + "longitude_deg": "108.411005", + "elevation_ft": "4937", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-CH", + "scheduled_service": "no", + "gps_code": "VVCL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cam_Ly_Airport", + "keywords": "VVCL" + }, + { + "id": "301824", + "ident": "VVCM", + "type": "medium_airport", + "name": "Cà Mau Airport", + "latitude_deg": "9.177667", + "longitude_deg": "105.177778", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SW", + "municipality": "Ca Mau City", + "scheduled_service": "yes", + "gps_code": "VVCM", + "iata_code": "CAH", + "wikipedia_link": "https://en.wikipedia.org/wiki/C%C3%A0_Mau_Airport", + "keywords": "Moranc Airfield, Quan Long Airport" + }, + { + "id": "26693", + "ident": "VVCR", + "type": "medium_airport", + "name": "Cam Ranh International Airport / Cam Ranh Air Base", + "latitude_deg": "11.9982", + "longitude_deg": "109.219002", + "elevation_ft": "40", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Cam Ranh", + "scheduled_service": "yes", + "gps_code": "VVCR", + "iata_code": "CXR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cam_Ranh_International_Airport" + }, + { + "id": "26694", + "ident": "VVCS", + "type": "medium_airport", + "name": "Con Dao Airport", + "latitude_deg": "8.73183", + "longitude_deg": "106.633003", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SE", + "municipality": "Con Dao", + "scheduled_service": "yes", + "gps_code": "VVCS", + "iata_code": "VCS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Con_Dao_Airport", + "keywords": "Conson Airport" + }, + { + "id": "26695", + "ident": "VVCT", + "type": "medium_airport", + "name": "Can Tho International Airport", + "latitude_deg": "10.0851", + "longitude_deg": "105.711998", + "elevation_ft": "9", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SW", + "municipality": "Can Tho", + "scheduled_service": "yes", + "gps_code": "VVCT", + "iata_code": "VCA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Can_Tho_International_Airport", + "keywords": "Binh Thuy Air Base, Trà Nóc Airport" + }, + { + "id": "26696", + "ident": "VVDB", + "type": "medium_airport", + "name": "Dien Bien Phu Airport", + "latitude_deg": "21.3974990845", + "longitude_deg": "103.008003235", + "elevation_ft": "1611", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-NW", + "municipality": "Dien Bien Phu", + "scheduled_service": "yes", + "gps_code": "VVDB", + "iata_code": "DIN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dien_Bien_Phu_Airport" + }, + { + "id": "30923", + "ident": "VVDL", + "type": "medium_airport", + "name": "Lien Khuong Airport", + "latitude_deg": "11.75", + "longitude_deg": "108.366997", + "elevation_ft": "3156", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-CH", + "municipality": "Da Lat", + "scheduled_service": "yes", + "gps_code": "VVDL", + "iata_code": "DLI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lien_Khuong_Airport", + "keywords": "Lienkhang" + }, + { + "id": "26697", + "ident": "VVDN", + "type": "medium_airport", + "name": "Da Nang International Airport", + "latitude_deg": "16.0439", + "longitude_deg": "108.198997", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Da Nang", + "scheduled_service": "yes", + "gps_code": "VVDN", + "iata_code": "DAD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Da_Nang_International_Airport", + "keywords": "Danang, Cảng Hàng không Quốc tế Đà Nẵng" + }, + { + "id": "26698", + "ident": "VVGL", + "type": "medium_airport", + "name": "Gia Lam Air Base", + "latitude_deg": "21.040501", + "longitude_deg": "105.886002", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-RRD", + "municipality": "Hanoi (Long Bien)", + "scheduled_service": "no", + "gps_code": "VVGL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gia_Lam_Airbase" + }, + { + "id": "26699", + "ident": "VVKP", + "type": "small_airport", + "name": "Kep Air Base", + "latitude_deg": "21.394599914599997", + "longitude_deg": "106.261001587", + "elevation_ft": "55", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-NE", + "municipality": "Kep", + "scheduled_service": "no", + "gps_code": "VVKP" + }, + { + "id": "301326", + "ident": "VVN", + "type": "small_airport", + "name": "Las Malvinas/Echarate Airport", + "latitude_deg": "-11.854861", + "longitude_deg": "-72.939332", + "elevation_ft": "1285", + "continent": "SA", + "iso_country": "PE", + "iso_region": "PE-CUS", + "municipality": "Las Malvinas", + "scheduled_service": "no", + "gps_code": "SPWT", + "iata_code": "VVN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Las_Malvinas_Airport" + }, + { + "id": "26700", + "ident": "VVNB", + "type": "large_airport", + "name": "Noi Bai International Airport", + "latitude_deg": "21.221201", + "longitude_deg": "105.806999", + "elevation_ft": "39", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-RRD", + "municipality": "Hanoi (Soc Son)", + "scheduled_service": "yes", + "gps_code": "VVNB", + "iata_code": "HAN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Noi_Bai_International_Airport", + "keywords": "Noibai Airport, Sân bay Quốc tế Nội Bài" + }, + { + "id": "32382", + "ident": "VVNS", + "type": "small_airport", + "name": "Na San Airport", + "latitude_deg": "21.215301", + "longitude_deg": "104.032803", + "elevation_ft": "2133", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-NW", + "municipality": "Mai Son", + "scheduled_service": "no", + "gps_code": "VVNS", + "iata_code": "SQH" + }, + { + "id": "26701", + "ident": "VVNT", + "type": "closed", + "name": "Nha Trang Air Base", + "latitude_deg": "12.2275", + "longitude_deg": "109.192001", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Nha Trang", + "scheduled_service": "no", + "gps_code": "VVNT", + "iata_code": "NHA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nha_Trang_Air_Base", + "keywords": "Nhatrang, BA 194" + }, + { + "id": "26702", + "ident": "VVPB", + "type": "medium_airport", + "name": "Phu Bai International Airport", + "latitude_deg": "16.400628", + "longitude_deg": "107.703094", + "elevation_ft": "48", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-NC", + "municipality": "Huế", + "scheduled_service": "yes", + "gps_code": "VVPB", + "iata_code": "HUI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Phu_Bai_International_Airport", + "keywords": "Phubai" + }, + { + "id": "26703", + "ident": "VVPC", + "type": "medium_airport", + "name": "Phu Cat Airport", + "latitude_deg": "13.955", + "longitude_deg": "109.042", + "elevation_ft": "80", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Quy Nohn", + "scheduled_service": "yes", + "gps_code": "VVPC", + "iata_code": "UIH", + "home_link": "https://vietnamairport.vn/phucatairport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Phu_Cat_Airport", + "keywords": "Phucat" + }, + { + "id": "26704", + "ident": "VVPK", + "type": "medium_airport", + "name": "Pleiku Airport", + "latitude_deg": "14.004500389099121", + "longitude_deg": "108.01699829101562", + "elevation_ft": "2434", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-CH", + "municipality": "Pleiku", + "scheduled_service": "yes", + "gps_code": "VVPK", + "iata_code": "PXU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pleiku_Air_Base" + }, + { + "id": "26705", + "ident": "VVPQ", + "type": "medium_airport", + "name": "Phu Quoc International Airport", + "latitude_deg": "10.1698", + "longitude_deg": "103.9931", + "elevation_ft": "37", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SW", + "municipality": "Phu Quoc Island", + "scheduled_service": "yes", + "gps_code": "VVPQ", + "iata_code": "PQC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Phu_Quoc_International_Airport" + }, + { + "id": "26706", + "ident": "VVPR", + "type": "small_airport", + "name": "Phan Rang Airport", + "latitude_deg": "11.6335", + "longitude_deg": "108.952003", + "elevation_ft": "101", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Phan Rang", + "scheduled_service": "no", + "gps_code": "VVPR", + "iata_code": "PHA" + }, + { + "id": "32158", + "ident": "VVPT", + "type": "closed", + "name": "Phan Thiet Airport", + "latitude_deg": "10.906204", + "longitude_deg": "108.069008", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Phan Thiet", + "scheduled_service": "no", + "gps_code": "VVPT", + "iata_code": "PHH" + }, + { + "id": "32580", + "ident": "VVRG", + "type": "medium_airport", + "name": "Rach Gia Airport", + "latitude_deg": "9.95802997234", + "longitude_deg": "105.132379532", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SW", + "municipality": "Rach Gia", + "scheduled_service": "yes", + "gps_code": "VVRG", + "iata_code": "VKG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rach_Gia_Airport" + }, + { + "id": "26707", + "ident": "VVTH", + "type": "medium_airport", + "name": "Dong Tac Airport", + "latitude_deg": "13.0496", + "longitude_deg": "109.334", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Tuy Hoa", + "scheduled_service": "yes", + "gps_code": "VVTH", + "iata_code": "TBB", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C4%90%C3%B4ng_T%C3%A1c_(Tuy_Hoa)_Airport" + }, + { + "id": "26708", + "ident": "VVTS", + "type": "large_airport", + "name": "Tan Son Nhat International Airport", + "latitude_deg": "10.8188", + "longitude_deg": "106.652", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SE", + "municipality": "Ho Chi Minh City", + "scheduled_service": "yes", + "gps_code": "VVTS", + "iata_code": "SGN", + "home_link": "http://www.tsnairport.hochiminhcity.gov.vn/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tan_Son_Nhat_International_Airport", + "keywords": "Tansonnhat, Sài Gòn, Saigon, Sân bay Quốc tế Tân Sơn Nhất, Tan Son Nhut Air Base, Tan Son Nhut Airfield" + }, + { + "id": "327354", + "ident": "VVTX", + "type": "small_airport", + "name": "Tho Xuan Airport", + "latitude_deg": "19.901667", + "longitude_deg": "105.467778", + "elevation_ft": "59", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-NC", + "municipality": "Thanh Hóa", + "scheduled_service": "yes", + "gps_code": "VVTX", + "iata_code": "THD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tho_Xuan_Airport", + "keywords": "Bai Thuong" + }, + { + "id": "332254", + "ident": "VVVD", + "type": "medium_airport", + "name": "Van Don International Airport", + "latitude_deg": "21.120693", + "longitude_deg": "107.41539", + "elevation_ft": "24", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-NE", + "municipality": "Van Don", + "scheduled_service": "yes", + "gps_code": "VVVD", + "iata_code": "VDO", + "home_link": "http://www.vandon-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Van_Don_International_Airport", + "keywords": "Cẩm Phả, Sân bay Quốc tế Vân Đồn" + }, + { + "id": "26709", + "ident": "VVVH", + "type": "medium_airport", + "name": "Vinh Airport", + "latitude_deg": "18.7376003265", + "longitude_deg": "105.67099762", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-NC", + "municipality": "Vinh", + "scheduled_service": "yes", + "gps_code": "VVVH", + "iata_code": "VII", + "wikipedia_link": "https://en.wikipedia.org/wiki/Vinh_Airport" + }, + { + "id": "32601", + "ident": "VVVT", + "type": "small_airport", + "name": "Vung Tau Airport", + "latitude_deg": "10.375093", + "longitude_deg": "107.096185", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SE", + "municipality": "Vung Tau", + "scheduled_service": "no", + "gps_code": "VVVT", + "iata_code": "VTG", + "keywords": "Cap Saint Jacques Airfield, Vung Tau Air Base" + }, + { + "id": "4686", + "ident": "VY02", + "type": "small_airport", + "name": "New Magway Airport", + "latitude_deg": "20.153600692749023", + "longitude_deg": "94.96869659423828", + "elevation_ft": "279", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-03", + "municipality": "Magway", + "scheduled_service": "no", + "gps_code": "VY02", + "local_code": "VY02" + }, + { + "id": "26710", + "ident": "VYAN", + "type": "small_airport", + "name": "Ann Airport", + "latitude_deg": "19.769199", + "longitude_deg": "94.0261", + "elevation_ft": "74", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-16", + "municipality": "Aeng", + "scheduled_service": "no", + "gps_code": "VYAN", + "iata_code": "VBA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ann_Airport" + }, + { + "id": "26711", + "ident": "VYAS", + "type": "small_airport", + "name": "Anisakan Airport", + "latitude_deg": "21.955400466918945", + "longitude_deg": "96.40609741210938", + "elevation_ft": "3000", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-04", + "municipality": "Anisakan", + "scheduled_service": "no", + "gps_code": "VYAS", + "keywords": "Maymo" + }, + { + "id": "26712", + "ident": "VYBG", + "type": "small_airport", + "name": "Bagan Airport", + "latitude_deg": "21.178800582885742", + "longitude_deg": "94.9301986694336", + "elevation_ft": "312", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-04", + "municipality": "Nyaung U", + "scheduled_service": "yes", + "gps_code": "VYBG", + "iata_code": "NYU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nyaung_U_Airport" + }, + { + "id": "26713", + "ident": "VYBM", + "type": "small_airport", + "name": "Banmaw Airport", + "latitude_deg": "24.27044", + "longitude_deg": "97.2476", + "elevation_ft": "370", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-11", + "municipality": "Banmaw", + "scheduled_service": "yes", + "gps_code": "VYBM", + "iata_code": "BMO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Banmaw_Airport", + "keywords": "Banmaws, Bhamo" + }, + { + "id": "32605", + "ident": "VYBP", + "type": "small_airport", + "name": "Bokpyinn Airport", + "latitude_deg": "11.1494", + "longitude_deg": "98.735901", + "elevation_ft": "100", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-05", + "municipality": "Bokpyinn", + "scheduled_service": "no", + "gps_code": "VYBP", + "iata_code": "VBP", + "keywords": "VY03, Toungkomei Airport, Taungkamet, Bokpyin, Bokopyin" + }, + { + "id": "26714", + "ident": "VYCI", + "type": "small_airport", + "name": "Coco Island Airport", + "latitude_deg": "14.137964", + "longitude_deg": "93.367853", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-06", + "municipality": "Cocokyun", + "scheduled_service": "no", + "gps_code": "VYCI", + "keywords": "Cocokyun, Coco Kyun, Great Coco Island" + }, + { + "id": "26715", + "ident": "VYCZ", + "type": "small_airport", + "name": "Chanmyathazi Airport", + "latitude_deg": "21.940500259399414", + "longitude_deg": "96.089599609375", + "elevation_ft": "252", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-04", + "municipality": "Mandalay", + "scheduled_service": "no", + "gps_code": "VYCZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mandalay_Chanmyathazi_Airport", + "keywords": "Mandalay" + }, + { + "id": "26716", + "ident": "VYDW", + "type": "medium_airport", + "name": "Dawei Airport", + "latitude_deg": "14.103899955749512", + "longitude_deg": "98.20359802246094", + "elevation_ft": "84", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-05", + "municipality": "Dawei", + "scheduled_service": "yes", + "gps_code": "VYDW", + "iata_code": "TVY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dawei_Airport" + }, + { + "id": "26717", + "ident": "VYEL", + "type": "medium_airport", + "name": "Nay Pyi Taw International Airport", + "latitude_deg": "19.623501", + "longitude_deg": "96.200996", + "elevation_ft": "302", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-04", + "municipality": "Pyinmana", + "scheduled_service": "yes", + "gps_code": "VYNT", + "iata_code": "NYT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nay_Pyi_Taw_International_Airport", + "keywords": "VYEL, Ela, Nay Pyi Taw International" + }, + { + "id": "31516", + "ident": "VYGG", + "type": "small_airport", + "name": "Gangaw Airport", + "latitude_deg": "22.174699783325195", + "longitude_deg": "94.1343994140625", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-03", + "municipality": "Gangaw", + "scheduled_service": "no", + "gps_code": "VYGG", + "iata_code": "GAW" + }, + { + "id": "29930", + "ident": "VYGW", + "type": "small_airport", + "name": "Gwa Airport", + "latitude_deg": "17.600000381469727", + "longitude_deg": "94.58329772949219", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-16", + "municipality": "Gwa", + "scheduled_service": "no", + "gps_code": "VYGW", + "iata_code": "GWA" + }, + { + "id": "29949", + "ident": "VYHB", + "type": "small_airport", + "name": "Hmawbi Air Base", + "latitude_deg": "17.11669921875", + "longitude_deg": "96.06670379638672", + "elevation_ft": "69", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-06", + "municipality": "Hmawbi", + "scheduled_service": "no", + "gps_code": "VYHB", + "keywords": "Hmawby" + }, + { + "id": "26718", + "ident": "VYHH", + "type": "medium_airport", + "name": "Heho Airport", + "latitude_deg": "20.746999740600586", + "longitude_deg": "96.79199981689453", + "elevation_ft": "3858", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-17", + "municipality": "Heho", + "scheduled_service": "yes", + "gps_code": "VYHH", + "iata_code": "HEH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Heho_Airport" + }, + { + "id": "26719", + "ident": "VYHL", + "type": "small_airport", + "name": "Hommalinn Airport", + "latitude_deg": "24.899599075317383", + "longitude_deg": "94.91400146484375", + "elevation_ft": "534", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-01", + "municipality": "Hommalinn", + "scheduled_service": "no", + "gps_code": "VYHL", + "iata_code": "HOX" + }, + { + "id": "32450", + "ident": "VYHN", + "type": "small_airport", + "name": "Tilin Airport", + "latitude_deg": "21.700000762939453", + "longitude_deg": "94.0999984741211", + "elevation_ft": "1385", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-03", + "municipality": "Tilin", + "scheduled_service": "no", + "gps_code": "VYHN", + "iata_code": "TIO" + }, + { + "id": "26720", + "ident": "VYKG", + "type": "medium_airport", + "name": "Kengtung Airport", + "latitude_deg": "21.301599502563477", + "longitude_deg": "99.63600158691406", + "elevation_ft": "2798", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-17", + "municipality": "Kengtung", + "scheduled_service": "yes", + "gps_code": "VYKG", + "iata_code": "KET", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kengtung_Airport" + }, + { + "id": "31749", + "ident": "VYKI", + "type": "small_airport", + "name": "Kanti Airport", + "latitude_deg": "25.988300323486328", + "longitude_deg": "95.67440032958984", + "elevation_ft": "6000", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-01", + "municipality": "Kanti", + "scheduled_service": "yes", + "gps_code": "VYKI", + "iata_code": "KHM" + }, + { + "id": "26721", + "ident": "VYKL", + "type": "small_airport", + "name": "Kalay Airport", + "latitude_deg": "23.188800811767578", + "longitude_deg": "94.05110168457031", + "elevation_ft": "499", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-01", + "municipality": "Kalemyo", + "scheduled_service": "no", + "gps_code": "VYKL", + "iata_code": "KMV" + }, + { + "id": "26722", + "ident": "VYKP", + "type": "medium_airport", + "name": "Kyaukpyu Airport", + "latitude_deg": "19.42639923095703", + "longitude_deg": "93.53479766845703", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-16", + "municipality": "Kyaukpyu", + "scheduled_service": "yes", + "gps_code": "VYKP", + "iata_code": "KYP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kyaukpyu_Airport" + }, + { + "id": "26723", + "ident": "VYKT", + "type": "medium_airport", + "name": "Kawthoung Airport", + "latitude_deg": "10.049300193786621", + "longitude_deg": "98.53800201416016", + "elevation_ft": "180", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-05", + "municipality": "Kawthoung", + "scheduled_service": "yes", + "gps_code": "VYKT", + "iata_code": "KAW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kawthaung_Airport" + }, + { + "id": "30051", + "ident": "VYKU", + "type": "small_airport", + "name": "Kyauktu Airport", + "latitude_deg": "21.399999618530273", + "longitude_deg": "94.13330078125", + "elevation_ft": "1250", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-03", + "municipality": "Kyauktu", + "scheduled_service": "no", + "gps_code": "VYKU", + "iata_code": "KYT" + }, + { + "id": "26724", + "ident": "VYLK", + "type": "medium_airport", + "name": "Loikaw Airport", + "latitude_deg": "19.691499710083008", + "longitude_deg": "97.21479797363281", + "elevation_ft": "2940", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-12", + "municipality": "Loikaw", + "scheduled_service": "yes", + "gps_code": "VYLK", + "iata_code": "LIW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Loikaw_Airport" + }, + { + "id": "32606", + "ident": "VYLN", + "type": "small_airport", + "name": "Lonekin Airport", + "latitude_deg": "25.649999618530273", + "longitude_deg": "96.36699676513672", + "elevation_ft": "1010", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-11", + "municipality": "Lonekin", + "scheduled_service": "no", + "gps_code": "VYLN" + }, + { + "id": "26725", + "ident": "VYLS", + "type": "medium_airport", + "name": "Lashio Airport", + "latitude_deg": "22.9778995513916", + "longitude_deg": "97.752197265625", + "elevation_ft": "2450", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-17", + "municipality": "Lashio", + "scheduled_service": "yes", + "gps_code": "VYLS", + "iata_code": "LSH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lashio_Airport" + }, + { + "id": "26726", + "ident": "VYLY", + "type": "small_airport", + "name": "Lanywa Airport", + "latitude_deg": "20.940399169921875", + "longitude_deg": "94.82260131835938", + "elevation_ft": "175", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-03", + "municipality": "Lanywa", + "scheduled_service": "no", + "gps_code": "VYLY" + }, + { + "id": "26727", + "ident": "VYMD", + "type": "large_airport", + "name": "Mandalay International Airport", + "latitude_deg": "21.702199935913086", + "longitude_deg": "95.97789764404297", + "elevation_ft": "300", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-04", + "municipality": "Mandalay", + "scheduled_service": "yes", + "gps_code": "VYMD", + "iata_code": "MDL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mandalay_International_Airport" + }, + { + "id": "26728", + "ident": "VYME", + "type": "medium_airport", + "name": "Myeik Airport", + "latitude_deg": "12.439800262451172", + "longitude_deg": "98.62149810791016", + "elevation_ft": "75", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-05", + "municipality": "Mkeik", + "scheduled_service": "yes", + "gps_code": "VYME", + "iata_code": "MGZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Myeik_Airport" + }, + { + "id": "32607", + "ident": "VYMH", + "type": "small_airport", + "name": "Mong Hpayak Airport", + "latitude_deg": "20.83300018310547", + "longitude_deg": "99.94999694824219", + "elevation_ft": "1700", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-17", + "municipality": "Mong Hpayak", + "scheduled_service": "no", + "gps_code": "VYMH" + }, + { + "id": "32608", + "ident": "VYMI", + "type": "small_airport", + "name": "Mongyai Airport", + "latitude_deg": "22.482999801635742", + "longitude_deg": "98.03299713134766", + "elevation_ft": "2900", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-17", + "municipality": "Mongyai", + "scheduled_service": "no", + "gps_code": "VYMI" + }, + { + "id": "26729", + "ident": "VYMK", + "type": "medium_airport", + "name": "Myitkyina Airport", + "latitude_deg": "25.38360023498535", + "longitude_deg": "97.35189819335938", + "elevation_ft": "475", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-11", + "municipality": "Myitkyina", + "scheduled_service": "yes", + "gps_code": "VYMK", + "iata_code": "MYT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mtwara_Airport" + }, + { + "id": "32609", + "ident": "VYML", + "type": "medium_airport", + "name": "Meiktila Air Base", + "latitude_deg": "20.88640022277832", + "longitude_deg": "95.89279174804688", + "elevation_ft": "699", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-04", + "municipality": "Meiktila", + "scheduled_service": "no", + "gps_code": "VYML" + }, + { + "id": "26730", + "ident": "VYMM", + "type": "small_airport", + "name": "Mawlamyine Airport", + "latitude_deg": "16.444700241088867", + "longitude_deg": "97.66069793701172", + "elevation_ft": "52", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-15", + "municipality": "Mawlamyine", + "scheduled_service": "yes", + "gps_code": "VYMM", + "iata_code": "MNU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mawlamyaing_Airport" + }, + { + "id": "31901", + "ident": "VYMN", + "type": "small_airport", + "name": "Manaung Airport", + "latitude_deg": "18.845800399780273", + "longitude_deg": "93.68890380859375", + "elevation_ft": "102", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-16", + "municipality": "Manaung", + "scheduled_service": "no", + "gps_code": "VYMN", + "iata_code": "MGU" + }, + { + "id": "26731", + "ident": "VYMO", + "type": "medium_airport", + "name": "Momeik Airport", + "latitude_deg": "23.092500686645508", + "longitude_deg": "96.64530181884766", + "elevation_ft": "600", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-17", + "scheduled_service": "no", + "gps_code": "VYMO", + "iata_code": "MOE" + }, + { + "id": "32610", + "ident": "VYMP", + "type": "small_airport", + "name": "Mongpyin Airport", + "latitude_deg": "21.350000381469727", + "longitude_deg": "99.03299713134766", + "elevation_ft": "1516", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-17", + "municipality": "Mongpyin", + "scheduled_service": "no", + "gps_code": "VYMP" + }, + { + "id": "26732", + "ident": "VYMS", + "type": "medium_airport", + "name": "Mong Hsat Airport", + "latitude_deg": "20.516799926757812", + "longitude_deg": "99.25679779052734", + "elevation_ft": "1875", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-17", + "municipality": "Mong Hsat", + "scheduled_service": "yes", + "gps_code": "VYMS", + "iata_code": "MOG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Monghsat_Airport", + "keywords": "Monghsat Airport" + }, + { + "id": "31897", + "ident": "VYMT", + "type": "small_airport", + "name": "Mong Tong Airport", + "latitude_deg": "20.29669952392578", + "longitude_deg": "98.8989028930664", + "elevation_ft": "1840", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-17", + "municipality": "Mong Tong", + "scheduled_service": "no", + "gps_code": "VYMT", + "iata_code": "MGK" + }, + { + "id": "32611", + "ident": "VYMU", + "type": "small_airport", + "name": "Mrauk-U Airport", + "latitude_deg": "20.525901", + "longitude_deg": "93.252979", + "elevation_ft": "60", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-16", + "municipality": "Mrauk-U", + "scheduled_service": "no", + "gps_code": "VYMU" + }, + { + "id": "30101", + "ident": "VYMW", + "type": "small_airport", + "name": "Magway Airport", + "latitude_deg": "20.1656", + "longitude_deg": "94.941399", + "elevation_ft": "279", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-03", + "municipality": "Magway", + "scheduled_service": "yes", + "gps_code": "VYMW", + "iata_code": "MWQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Magway_Airport" + }, + { + "id": "32612", + "ident": "VYMY", + "type": "small_airport", + "name": "Monywar Airport", + "latitude_deg": "22.221638", + "longitude_deg": "95.093479", + "elevation_ft": "298", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-01", + "municipality": "Monywar", + "scheduled_service": "no", + "gps_code": "VYMY", + "iata_code": "NYW" + }, + { + "id": "32613", + "ident": "VYNM", + "type": "small_airport", + "name": "Naungmom Airport", + "latitude_deg": "27.5", + "longitude_deg": "97.81700134277344", + "elevation_ft": "2200", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-11", + "municipality": "Naungmom", + "scheduled_service": "no", + "gps_code": "VYNM" + }, + { + "id": "26733", + "ident": "VYNP", + "type": "medium_airport", + "name": "Nampong Air Base", + "latitude_deg": "25.354400634799998", + "longitude_deg": "97.2951965332", + "elevation_ft": "459", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-11", + "municipality": "Myitkyina", + "scheduled_service": "no", + "gps_code": "VYNP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nampong_Air_Force_Base" + }, + { + "id": "26734", + "ident": "VYNS", + "type": "medium_airport", + "name": "Namsang Airport", + "latitude_deg": "20.890499114990234", + "longitude_deg": "97.73590087890625", + "elevation_ft": "3100", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-17", + "municipality": "Namsang", + "scheduled_service": "no", + "gps_code": "VYNS", + "iata_code": "NMS" + }, + { + "id": "32039", + "ident": "VYNT", + "type": "small_airport", + "name": "Namtu Airport", + "latitude_deg": "23.083", + "longitude_deg": "97.383003", + "elevation_ft": "2000", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-17", + "municipality": "Namtu", + "scheduled_service": "no", + "gps_code": "VYNU", + "iata_code": "NMT" + }, + { + "id": "26735", + "ident": "VYPA", + "type": "small_airport", + "name": "Hpa-N Airport", + "latitude_deg": "16.893699645996094", + "longitude_deg": "97.67459869384766", + "elevation_ft": "150", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-13", + "municipality": "Hpa-N", + "scheduled_service": "no", + "gps_code": "VYPA", + "iata_code": "PAA" + }, + { + "id": "32614", + "ident": "VYPB", + "type": "small_airport", + "name": "Phonngbyin Airport", + "latitude_deg": "24.25", + "longitude_deg": "94.78299713134766", + "elevation_ft": "300", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-01", + "municipality": "Phonngbyin", + "scheduled_service": "no", + "gps_code": "VYPB" + }, + { + "id": "32615", + "ident": "VYPE", + "type": "small_airport", + "name": "Seinzan (Paletwa) Airport", + "latitude_deg": "21.28416", + "longitude_deg": "92.90048", + "elevation_ft": "60", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-14", + "municipality": "Paletwa", + "scheduled_service": "no", + "gps_code": "VYPE" + }, + { + "id": "32616", + "ident": "VYPI", + "type": "small_airport", + "name": "Pearl Island Airport", + "latitude_deg": "11.276081", + "longitude_deg": "98.213278", + "elevation_ft": "5", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-05", + "municipality": "Pearl Island", + "scheduled_service": "no", + "gps_code": "VYPI" + }, + { + "id": "30251", + "ident": "VYPK", + "type": "small_airport", + "name": "Pauk Airport", + "latitude_deg": "21.449199676513672", + "longitude_deg": "94.48690032958984", + "elevation_ft": "249", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-03", + "municipality": "Pauk", + "scheduled_service": "no", + "gps_code": "VYPK", + "iata_code": "PAU" + }, + { + "id": "32617", + "ident": "VYPL", + "type": "small_airport", + "name": "Pinlebu Airport", + "latitude_deg": "24.08300018310547", + "longitude_deg": "95.36699676513672", + "elevation_ft": "830", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-01", + "municipality": "Pinlebu", + "scheduled_service": "no", + "gps_code": "VYPL" + }, + { + "id": "26736", + "ident": "VYPN", + "type": "small_airport", + "name": "Pathein Airport", + "latitude_deg": "16.815201", + "longitude_deg": "94.7799", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-07", + "municipality": "Pathein", + "scheduled_service": "yes", + "gps_code": "VYPN", + "iata_code": "BSX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pathein_Airport", + "keywords": "Bassein" + }, + { + "id": "32618", + "ident": "VYPP", + "type": "small_airport", + "name": "Hpapun Airport", + "latitude_deg": "18.0666999817", + "longitude_deg": "97.449798584", + "elevation_ft": "300", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-13", + "municipality": "Pa Pun", + "scheduled_service": "no", + "gps_code": "VYPP", + "iata_code": "PPU" + }, + { + "id": "26737", + "ident": "VYPT", + "type": "medium_airport", + "name": "Putao Airport", + "latitude_deg": "27.32990074157715", + "longitude_deg": "97.42630004882812", + "elevation_ft": "1500", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-11", + "municipality": "Putao", + "scheduled_service": "yes", + "gps_code": "VYPT", + "iata_code": "PBU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Putao_Airport" + }, + { + "id": "30234", + "ident": "VYPU", + "type": "small_airport", + "name": "Pakhokku Airport", + "latitude_deg": "21.4043", + "longitude_deg": "95.11125", + "elevation_ft": "151", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-03", + "municipality": "Pakhokku", + "scheduled_service": "yes", + "gps_code": "VYPU", + "iata_code": "PKK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pakokku_Airport" + }, + { + "id": "32619", + "ident": "VYPW", + "type": "small_airport", + "name": "Palaw Airport", + "latitude_deg": "12.959289", + "longitude_deg": "98.641627", + "elevation_ft": "150", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-05", + "municipality": "Palaw", + "scheduled_service": "no", + "gps_code": "VYPW" + }, + { + "id": "26738", + "ident": "VYPY", + "type": "small_airport", + "name": "Pyay Airport", + "latitude_deg": "18.824499130249023", + "longitude_deg": "95.26599884033203", + "elevation_ft": "120", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-02", + "municipality": "Pye", + "scheduled_service": "no", + "gps_code": "VYPY", + "iata_code": "PRU" + }, + { + "id": "32620", + "ident": "VYSA", + "type": "small_airport", + "name": "Saw Airport", + "latitude_deg": "21.16699981689453", + "longitude_deg": "94.16699981689453", + "elevation_ft": "1100", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-03", + "municipality": "Saw", + "scheduled_service": "no", + "gps_code": "VYSA" + }, + { + "id": "32621", + "ident": "VYSL", + "type": "small_airport", + "name": "Salingyi Airport", + "latitude_deg": "22.100000381469727", + "longitude_deg": "95.01699829101562", + "elevation_ft": "264", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-01", + "municipality": "Salingyi", + "scheduled_service": "no", + "gps_code": "VYSL" + }, + { + "id": "32622", + "ident": "VYSO", + "type": "closed", + "name": "Sedoktayar Airport", + "latitude_deg": "20.444466", + "longitude_deg": "94.242377", + "elevation_ft": "500", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-03", + "municipality": "Sedoktayar", + "scheduled_service": "no", + "gps_code": "VYSO" + }, + { + "id": "26739", + "ident": "VYST", + "type": "medium_airport", + "name": "Shante Air Base", + "latitude_deg": "20.941699981689453", + "longitude_deg": "95.91449737548828", + "elevation_ft": "630", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-04", + "municipality": "Meiktila", + "scheduled_service": "no", + "gps_code": "VYST" + }, + { + "id": "26740", + "ident": "VYSW", + "type": "medium_airport", + "name": "Sittwe Airport", + "latitude_deg": "20.133165", + "longitude_deg": "92.870693", + "elevation_ft": "27", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-16", + "municipality": "Sittwe", + "scheduled_service": "yes", + "gps_code": "VYSW", + "iata_code": "AKY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sittwe_Airport" + }, + { + "id": "26741", + "ident": "VYTD", + "type": "medium_airport", + "name": "Thandwe Airport", + "latitude_deg": "18.4606990814209", + "longitude_deg": "94.30010223388672", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-16", + "municipality": "Thandwe", + "scheduled_service": "yes", + "gps_code": "VYTD", + "iata_code": "SNW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thandwe_Airport" + }, + { + "id": "26742", + "ident": "VYTL", + "type": "medium_airport", + "name": "Tachileik Airport", + "latitude_deg": "20.483800888061523", + "longitude_deg": "99.9354019165039", + "elevation_ft": "1280", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-17", + "municipality": "Tachileik", + "scheduled_service": "yes", + "gps_code": "VYTL", + "iata_code": "THL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tachilek_Airport" + }, + { + "id": "32623", + "ident": "VYTN", + "type": "small_airport", + "name": "Tanai Airport", + "latitude_deg": "26.367000579833984", + "longitude_deg": "96.73300170898438", + "elevation_ft": "690", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-11", + "municipality": "Tanai", + "scheduled_service": "no", + "gps_code": "VYTN" + }, + { + "id": "26743", + "ident": "VYTO", + "type": "small_airport", + "name": "Taungoo Airport", + "latitude_deg": "19.031299591064453", + "longitude_deg": "96.40119934082031", + "elevation_ft": "160", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-02", + "municipality": "Taungoo", + "scheduled_service": "no", + "gps_code": "VYTO" + }, + { + "id": "32624", + "ident": "VYTY", + "type": "small_airport", + "name": "Tanyang Airport", + "latitude_deg": "22.482999801635742", + "longitude_deg": "98.4000015258789", + "elevation_ft": "250", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-17", + "municipality": "Tanyang", + "scheduled_service": "no", + "gps_code": "VYTY" + }, + { + "id": "32625", + "ident": "VYXG", + "type": "small_airport", + "name": "Kyaukhtu South Airport", + "latitude_deg": "21.406700134277344", + "longitude_deg": "94.13030242919922", + "elevation_ft": "1345", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-03", + "municipality": "Kyaukhtu South", + "scheduled_service": "no", + "gps_code": "VYXG", + "keywords": "New Kyauktu" + }, + { + "id": "32714", + "ident": "VYYE", + "type": "small_airport", + "name": "Ye Airport", + "latitude_deg": "15.301361", + "longitude_deg": "97.864288", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-15", + "municipality": "Ye", + "scheduled_service": "no", + "gps_code": "VYYE", + "iata_code": "XYE" + }, + { + "id": "26744", + "ident": "VYYY", + "type": "large_airport", + "name": "Yangon International Airport", + "latitude_deg": "16.907300949099998", + "longitude_deg": "96.1332015991", + "elevation_ft": "109", + "continent": "AS", + "iso_country": "MM", + "iso_region": "MM-06", + "municipality": "Yangon", + "scheduled_service": "yes", + "gps_code": "VYYY", + "iata_code": "RGN", + "home_link": "http://www.yangonairportonline.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yangon_International_Airport", + "keywords": "Rangoon" + }, + { + "id": "25563", + "ident": "W00", + "type": "small_airport", + "name": "Freeway Airport", + "latitude_deg": "38.941397", + "longitude_deg": "-76.772401", + "elevation_ft": "168", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Bowie", + "scheduled_service": "no", + "local_code": "W00", + "home_link": "http://www.freewayaviation.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Freeway_Airport", + "keywords": "SFRA, FRZ, \"Outside FRZ\", Mitchellville" + }, + { + "id": "25564", + "ident": "W04", + "type": "small_airport", + "name": "Ocean Shores Municipal Airport", + "latitude_deg": "46.999324", + "longitude_deg": "-124.142418", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ocean Shores", + "scheduled_service": "no", + "local_code": "W04" + }, + { + "id": "25565", + "ident": "W07", + "type": "small_airport", + "name": "Leon Airport", + "latitude_deg": "38.70349884033203", + "longitude_deg": "-81.95220184326172", + "elevation_ft": "563", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Leon", + "scheduled_service": "no", + "gps_code": "W07", + "local_code": "W07" + }, + { + "id": "25566", + "ident": "W09", + "type": "small_airport", + "name": "Lower Monumental State Airport", + "latitude_deg": "46.55039978027344", + "longitude_deg": "-118.53600311279297", + "elevation_ft": "813", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Kahlotus", + "scheduled_service": "no", + "gps_code": "W09", + "local_code": "W09" + }, + { + "id": "25567", + "ident": "W10", + "type": "small_airport", + "name": "Whidbey Air Park", + "latitude_deg": "48.01750183105469", + "longitude_deg": "-122.43800354003906", + "elevation_ft": "271", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Langley", + "scheduled_service": "no", + "gps_code": "W10", + "local_code": "W10" + }, + { + "id": "25568", + "ident": "W12", + "type": "small_airport", + "name": "Lost River Airport", + "latitude_deg": "48.649602", + "longitude_deg": "-120.501999", + "elevation_ft": "2415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Mazama", + "scheduled_service": "no", + "local_code": "W12", + "keywords": "Lost River Resort" + }, + { + "id": "25569", + "ident": "W13", + "type": "small_airport", + "name": "Eagle's Nest Airport", + "latitude_deg": "38.07709884643555", + "longitude_deg": "-78.94419860839844", + "elevation_ft": "1437", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Waynesboro", + "scheduled_service": "no", + "gps_code": "W13", + "local_code": "W13" + }, + { + "id": "25570", + "ident": "W16", + "type": "small_airport", + "name": "First Air Field", + "latitude_deg": "47.871375", + "longitude_deg": "-121.995698", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Monroe", + "scheduled_service": "no", + "local_code": "W16" + }, + { + "id": "25571", + "ident": "W18", + "type": "closed", + "name": "Suburban Airport", + "latitude_deg": "39.0769", + "longitude_deg": "-76.828003", + "elevation_ft": "148", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Laurel", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Suburban_Airport", + "keywords": "W18" + }, + { + "id": "25572", + "ident": "W19", + "type": "small_airport", + "name": "Verona Airport", + "latitude_deg": "42.983299255371094", + "longitude_deg": "-89.51679992675781", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Verona", + "scheduled_service": "no", + "gps_code": "W19", + "local_code": "W19" + }, + { + "id": "25573", + "ident": "W20", + "type": "small_airport", + "name": "Moses Lake Municipal Airport", + "latitude_deg": "47.141998291015625", + "longitude_deg": "-119.23799896240234", + "elevation_ft": "1203", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Moses Lake", + "scheduled_service": "no", + "gps_code": "W20", + "local_code": "W20" + }, + { + "id": "25574", + "ident": "W23", + "type": "small_airport", + "name": "Wild Rose Idlewild Airport", + "latitude_deg": "44.19779968261719", + "longitude_deg": "-89.21790313720703", + "elevation_ft": "908", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wild Rose", + "scheduled_service": "no", + "gps_code": "W23", + "local_code": "W23" + }, + { + "id": "25575", + "ident": "W24", + "type": "small_airport", + "name": "Falwell Airport", + "latitude_deg": "37.377899169921875", + "longitude_deg": "-79.12220001220703", + "elevation_ft": "939", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Lynchburg", + "scheduled_service": "no", + "gps_code": "W24", + "local_code": "W24" + }, + { + "id": "25576", + "ident": "W26", + "type": "seaplane_base", + "name": "Foxair Seaplane Base", + "latitude_deg": "44.4989013671875", + "longitude_deg": "-88.02230072021484", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Green Bay", + "scheduled_service": "no", + "gps_code": "W26", + "local_code": "W26" + }, + { + "id": "25577", + "ident": "W27", + "type": "small_airport", + "name": "Woodland State Airport", + "latitude_deg": "45.898799896240234", + "longitude_deg": "-122.73699951171875", + "elevation_ft": "29", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Woodland", + "scheduled_service": "no", + "gps_code": "W27", + "local_code": "W27" + }, + { + "id": "25578", + "ident": "W29", + "type": "small_airport", + "name": "Bay Bridge Airport", + "latitude_deg": "38.97639846801758", + "longitude_deg": "-76.32959747314453", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Stevensville", + "scheduled_service": "no", + "gps_code": "W29", + "local_code": "W29" + }, + { + "id": "25579", + "ident": "W33", + "type": "seaplane_base", + "name": "Friday Harbor Seaplane Base", + "latitude_deg": "48.537300109899995", + "longitude_deg": "-123.010002136", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Friday Harbor", + "scheduled_service": "no", + "gps_code": "W33", + "iata_code": "FBS", + "local_code": "W33" + }, + { + "id": "25580", + "ident": "W34", + "type": "small_airport", + "name": "Shiocton Airport", + "latitude_deg": "44.4547004699707", + "longitude_deg": "-88.56179809570312", + "elevation_ft": "769", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Shiocton", + "scheduled_service": "no", + "gps_code": "W34", + "local_code": "W34" + }, + { + "id": "25581", + "ident": "W36", + "type": "seaplane_base", + "name": "Will Rogers Wiley Post Memorial Seaplane Base", + "latitude_deg": "47.499801635699995", + "longitude_deg": "-122.21900177", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Renton", + "scheduled_service": "no", + "gps_code": "W36", + "local_code": "W36", + "wikipedia_link": "https://en.wikipedia.org/wiki/Will_Rogers_-_Wiley_Post_Memorial_Seaplane_Base" + }, + { + "id": "25582", + "ident": "W37", + "type": "seaplane_base", + "name": "American Lake Seaplane Base", + "latitude_deg": "47.14149856567383", + "longitude_deg": "-122.56099700927734", + "elevation_ft": "235", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tacoma", + "scheduled_service": "no", + "gps_code": "W37", + "local_code": "W37" + }, + { + "id": "25583", + "ident": "W39", + "type": "seaplane_base", + "name": "Roche Harbor Seaplane Base", + "latitude_deg": "48.60820007324219", + "longitude_deg": "-123.16000366210938", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Roche Harbor", + "scheduled_service": "no", + "gps_code": "W39", + "local_code": "W39" + }, + { + "id": "25584", + "ident": "W42", + "type": "small_airport", + "name": "Fallston Airport", + "latitude_deg": "39.50149917602539", + "longitude_deg": "-76.41110229492188", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Fallston", + "scheduled_service": "no", + "gps_code": "W42", + "local_code": "W42" + }, + { + "id": "25585", + "ident": "W48", + "type": "small_airport", + "name": "Essex Skypark Airport", + "latitude_deg": "39.26259994506836", + "longitude_deg": "-76.43299865722656", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Baltimore", + "scheduled_service": "no", + "gps_code": "W48", + "local_code": "W48" + }, + { + "id": "25586", + "ident": "W49", + "type": "seaplane_base", + "name": "Rosario Seaplane Base", + "latitude_deg": "48.6456985474", + "longitude_deg": "-122.867996216", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Rosario", + "scheduled_service": "no", + "gps_code": "W49", + "iata_code": "RSJ", + "local_code": "W49" + }, + { + "id": "25587", + "ident": "W50", + "type": "small_airport", + "name": "Davis Airstrip", + "latitude_deg": "39.24449920654297", + "longitude_deg": "-77.14859771728516", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MD", + "municipality": "Laytonsville", + "scheduled_service": "no", + "gps_code": "W50", + "local_code": "W50" + }, + { + "id": "25588", + "ident": "W52", + "type": "small_airport", + "name": "Goheen Airport", + "latitude_deg": "45.82680130004883", + "longitude_deg": "-122.5770034790039", + "elevation_ft": "292", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Battle Ground", + "scheduled_service": "no", + "gps_code": "W52", + "local_code": "W52" + }, + { + "id": "25589", + "ident": "W55", + "type": "seaplane_base", + "name": "Kenmore Air Harbor Seaplane Base", + "latitude_deg": "47.6290016174", + "longitude_deg": "-122.338996887", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Seattle", + "scheduled_service": "yes", + "gps_code": "W55", + "iata_code": "LKE", + "local_code": "W55", + "home_link": "http://www.kenmoreair.com/flight-information/terminals/seattle-terminals/seattle-lake-union-seaplane-terminal/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kenmore_Air_Harbor_Seaplane_Base", + "keywords": "WA57, Lake Union" + }, + { + "id": "25590", + "ident": "W56", + "type": "small_airport", + "name": "Fly For Fun Airport", + "latitude_deg": "45.68730163574219", + "longitude_deg": "-122.52200317382812", + "elevation_ft": "297", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Vancouver", + "scheduled_service": "no", + "gps_code": "W56", + "local_code": "W56" + }, + { + "id": "25591", + "ident": "W57", + "type": "small_airport", + "name": "Round Lake Airport and Seaplane Base", + "latitude_deg": "42.92919921875", + "longitude_deg": "-73.770401000977", + "elevation_ft": "175", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NY", + "municipality": "Round Lake", + "scheduled_service": "no", + "gps_code": "W57", + "local_code": "W57", + "home_link": "https://www.dot.ny.gov/divisions/operating/opdm/aviation/repository/air_dir2/Round-Lake-revised.pdf", + "keywords": "NY46" + }, + { + "id": "25592", + "ident": "W58", + "type": "small_airport", + "name": "Cedars North Airpark", + "latitude_deg": "45.764469", + "longitude_deg": "-122.515229", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Battle Ground", + "scheduled_service": "no", + "local_code": "W58", + "keywords": "9WA4" + }, + { + "id": "25593", + "ident": "W73", + "type": "small_airport", + "name": "Mid Atlantic Soaring Center Airport", + "latitude_deg": "39.75699996948242", + "longitude_deg": "-77.35140228271484", + "elevation_ft": "573", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-PA", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "W73", + "local_code": "W73" + }, + { + "id": "25594", + "ident": "W75", + "type": "small_airport", + "name": "Hummel Field", + "latitude_deg": "37.60240173339844", + "longitude_deg": "-76.44670104980469", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Saluda", + "scheduled_service": "no", + "gps_code": "W75", + "local_code": "W75" + }, + { + "id": "25595", + "ident": "W79", + "type": "closed", + "name": "Tappahannock Municipal Airport", + "latitude_deg": "37.925098", + "longitude_deg": "-76.871597", + "elevation_ft": "31", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-VA", + "municipality": "Tappahannock", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tappahannock_Municipal_Airport", + "keywords": "W79" + }, + { + "id": "25596", + "ident": "W87", + "type": "small_airport", + "name": "Wickenheiser Airport", + "latitude_deg": "42.01810073852539", + "longitude_deg": "-83.377197265625", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Carleton", + "scheduled_service": "no", + "gps_code": "W87", + "local_code": "W87" + }, + { + "id": "25597", + "ident": "W88", + "type": "small_airport", + "name": "Air Harbor Airport", + "latitude_deg": "36.17359924316406", + "longitude_deg": "-79.8031005859375", + "elevation_ft": "822", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NC", + "municipality": "Greensboro", + "scheduled_service": "no", + "gps_code": "W88", + "local_code": "W88" + }, + { + "id": "25598", + "ident": "WA00", + "type": "small_airport", + "name": "Mercer Ranch Airport", + "latitude_deg": "45.898488", + "longitude_deg": "-119.915638", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Alderdale", + "scheduled_service": "no", + "gps_code": "WA00", + "local_code": "WA00" + }, + { + "id": "25599", + "ident": "WA01", + "type": "small_airport", + "name": "Wirkkala Airport", + "latitude_deg": "46.356201171875", + "longitude_deg": "-123.81500244140625", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Naselle", + "scheduled_service": "no", + "gps_code": "WA01", + "local_code": "WA01" + }, + { + "id": "25600", + "ident": "WA02", + "type": "heliport", + "name": "The Island Hospital Heliport", + "latitude_deg": "48.502601623535156", + "longitude_deg": "-122.61499786376953", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Anacortes", + "scheduled_service": "no", + "gps_code": "WA02", + "local_code": "WA02" + }, + { + "id": "45904", + "ident": "WA03", + "type": "heliport", + "name": "Tristan Heliport", + "latitude_deg": "48.987451", + "longitude_deg": "-122.288134", + "elevation_ft": "48", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Sumas", + "scheduled_service": "no", + "gps_code": "WA03", + "local_code": "WA03" + }, + { + "id": "25601", + "ident": "WA04", + "type": "small_airport", + "name": "Kyles Airport", + "latitude_deg": "47.814902", + "longitude_deg": "-122.043915", + "elevation_ft": "470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Snohomish", + "scheduled_service": "no", + "gps_code": "WA04", + "local_code": "WA04" + }, + { + "id": "25602", + "ident": "WA05", + "type": "small_airport", + "name": "Apex Airpark", + "latitude_deg": "47.656799", + "longitude_deg": "-122.733002", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Silverdale", + "scheduled_service": "no", + "local_code": "8W5", + "keywords": "WA05" + }, + { + "id": "25603", + "ident": "WA06", + "type": "heliport", + "name": "Don Johnson Home Heliport", + "latitude_deg": "47.30229949951172", + "longitude_deg": "-122.1510009765625", + "elevation_ft": "429", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "WA06", + "local_code": "WA06" + }, + { + "id": "25604", + "ident": "WA07", + "type": "small_airport", + "name": "Barker Airport", + "latitude_deg": "48.37480163574219", + "longitude_deg": "-122.33899688720703", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Mount Vernon", + "scheduled_service": "no", + "gps_code": "WA07", + "local_code": "WA07" + }, + { + "id": "25605", + "ident": "WA08", + "type": "small_airport", + "name": "Zwainz Farms Airport", + "latitude_deg": "47.720699310302734", + "longitude_deg": "-117.90899658203125", + "elevation_ft": "2795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Reardan", + "scheduled_service": "no", + "gps_code": "WA08", + "local_code": "WA08" + }, + { + "id": "25606", + "ident": "WA09", + "type": "small_airport", + "name": "Roche Harbor Airport", + "latitude_deg": "48.6123008728", + "longitude_deg": "-123.138999939", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Roche Harbor", + "scheduled_service": "no", + "gps_code": "WA09", + "iata_code": "RCE", + "local_code": "WA09", + "home_link": "http://www.wsdot.wa.gov/aviation/AllStateAirports/RocheHarbor_RocheHarbor.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roche_Harbor_Airport", + "keywords": "9S1" + }, + { + "id": "25607", + "ident": "WA10", + "type": "closed", + "name": "Gosney Airport", + "latitude_deg": "43.722197", + "longitude_deg": "-106.667", + "elevation_ft": "4830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Kaycee", + "scheduled_service": "no", + "keywords": "WA10" + }, + { + "id": "25608", + "ident": "WA11", + "type": "closed", + "name": "Boeing Military Airplanes Heliport", + "latitude_deg": "47.522598", + "longitude_deg": "-122.305", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tukwila", + "scheduled_service": "no", + "keywords": "WA11" + }, + { + "id": "25609", + "ident": "WA12", + "type": "small_airport", + "name": "Acme Field", + "latitude_deg": "48.71356", + "longitude_deg": "-122.195926", + "elevation_ft": "301", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Acme", + "scheduled_service": "no", + "gps_code": "WA12", + "local_code": "WA12" + }, + { + "id": "25610", + "ident": "WA13", + "type": "seaplane_base", + "name": "Seaplane Landing Area Seaplane Base", + "latitude_deg": "48.20830154418945", + "longitude_deg": "-120.59200286865234", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Chelan", + "scheduled_service": "no", + "gps_code": "WA13", + "local_code": "WA13" + }, + { + "id": "25611", + "ident": "WA14", + "type": "small_airport", + "name": "Connell City Airport", + "latitude_deg": "46.661219", + "longitude_deg": "-118.830858", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Connell", + "scheduled_service": "no", + "gps_code": "WA14", + "local_code": "WA14" + }, + { + "id": "25612", + "ident": "WA15", + "type": "small_airport", + "name": "Coulee City Airport", + "latitude_deg": "47.61348", + "longitude_deg": "-119.248968", + "elevation_ft": "1800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Coulee City", + "scheduled_service": "no", + "gps_code": "WA15", + "local_code": "WA15" + }, + { + "id": "25613", + "ident": "WA16", + "type": "small_airport", + "name": "Banas Field", + "latitude_deg": "46.79970169067383", + "longitude_deg": "-123.54100036621094", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Brooklyn", + "scheduled_service": "no", + "gps_code": "WA16", + "local_code": "WA16" + }, + { + "id": "25614", + "ident": "WA17", + "type": "closed", + "name": "Majerle Strip STOLport", + "latitude_deg": "47.755316", + "longitude_deg": "-121.98235", + "elevation_ft": "75", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Duvall", + "scheduled_service": "no", + "keywords": "WA17" + }, + { + "id": "25615", + "ident": "WA18", + "type": "small_airport", + "name": "Decatur /Jones/ Airport", + "latitude_deg": "48.510101318359375", + "longitude_deg": "-122.8030014038086", + "elevation_ft": "125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Decatur Island", + "scheduled_service": "no", + "gps_code": "WA18", + "local_code": "WA18" + }, + { + "id": "45886", + "ident": "WA19", + "type": "heliport", + "name": "Berkley Structures Heliport", + "latitude_deg": "47.681996", + "longitude_deg": "-122.148491", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Redmond", + "scheduled_service": "no", + "gps_code": "WA19", + "local_code": "WA19" + }, + { + "id": "3268", + "ident": "WA1B", + "type": "small_airport", + "name": "Aru Airport", + "latitude_deg": "-6.57342004776001", + "longitude_deg": "134.14700317382812", + "elevation_ft": "165", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MA", + "municipality": "Fekfetal / Jerdera-Trangan Island", + "scheduled_service": "no", + "gps_code": "WA1B", + "local_code": "WA1B" + }, + { + "id": "25617", + "ident": "WA20", + "type": "closed", + "name": "Gray Ranch Airport", + "latitude_deg": "46.83995", + "longitude_deg": "-118.176531", + "elevation_ft": "1625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Benge", + "scheduled_service": "no", + "keywords": "WA20" + }, + { + "id": "25618", + "ident": "WA21", + "type": "small_airport", + "name": "Elk Heights Airport", + "latitude_deg": "48.001999", + "longitude_deg": "-117.263333", + "elevation_ft": "2050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Elk", + "scheduled_service": "no", + "gps_code": "WN04", + "local_code": "WN04", + "keywords": "WA21" + }, + { + "id": "25619", + "ident": "WA22", + "type": "small_airport", + "name": "Mirth Airport", + "latitude_deg": "47.9385986328125", + "longitude_deg": "-122.60800170898438", + "elevation_ft": "190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Hansville", + "scheduled_service": "no", + "gps_code": "WA22", + "local_code": "WA22" + }, + { + "id": "25620", + "ident": "WA23", + "type": "small_airport", + "name": "Pine Bluff Airport", + "latitude_deg": "48.020999908447266", + "longitude_deg": "-117.73899841308594", + "elevation_ft": "2021", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Springdale", + "scheduled_service": "no", + "gps_code": "WA23", + "local_code": "WA23" + }, + { + "id": "25621", + "ident": "WA24", + "type": "small_airport", + "name": "Pfister's Airport", + "latitude_deg": "46.396900177", + "longitude_deg": "-119.021003723", + "elevation_ft": "625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Pasco", + "scheduled_service": "no", + "gps_code": "WA24", + "local_code": "WA24" + }, + { + "id": "25622", + "ident": "WA25", + "type": "small_airport", + "name": "Green Valley Airfield", + "latitude_deg": "48.095945", + "longitude_deg": "-122.015036", + "elevation_ft": "300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Granite Falls", + "scheduled_service": "no", + "gps_code": "WA25", + "local_code": "WA25" + }, + { + "id": "25623", + "ident": "WA26", + "type": "small_airport", + "name": "Harrah Airport", + "latitude_deg": "46.411419", + "longitude_deg": "-120.634389", + "elevation_ft": "845", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Brownstown", + "scheduled_service": "no", + "gps_code": "WA26", + "local_code": "WA26" + }, + { + "id": "25624", + "ident": "WA27", + "type": "heliport", + "name": "Tom Matson Enumclaw Heliport", + "latitude_deg": "47.197912", + "longitude_deg": "-121.989194", + "elevation_ft": "793", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Enumclaw", + "scheduled_service": "no", + "gps_code": "WA27", + "local_code": "WA27" + }, + { + "id": "25625", + "ident": "WA28", + "type": "heliport", + "name": "Private H/C PAD Heliport", + "latitude_deg": "47.332883", + "longitude_deg": "-122.256089", + "elevation_ft": "98", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "WA28", + "local_code": "WA28" + }, + { + "id": "25626", + "ident": "WA29", + "type": "small_airport", + "name": "La Center View-Air Airport", + "latitude_deg": "45.894295", + "longitude_deg": "-122.594082", + "elevation_ft": "811", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "La Center", + "scheduled_service": "no", + "gps_code": "WA29", + "local_code": "WA29" + }, + { + "id": "25627", + "ident": "WA30", + "type": "small_airport", + "name": "LaCrosse Municipal Airport", + "latitude_deg": "46.791917", + "longitude_deg": "-117.920686", + "elevation_ft": "1491", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "LaCrosse", + "scheduled_service": "no", + "gps_code": "WA30", + "local_code": "WA30" + }, + { + "id": "25628", + "ident": "WA31", + "type": "heliport", + "name": "Reoh1 Heliport", + "latitude_deg": "48.038587", + "longitude_deg": "-122.061139", + "elevation_ft": "293", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Lake Stevens", + "scheduled_service": "no", + "gps_code": "WA31", + "local_code": "WA31" + }, + { + "id": "25629", + "ident": "WA32", + "type": "closed", + "name": "Stonehedge Heliport", + "latitude_deg": "46.974998", + "longitude_deg": "-122.7897", + "elevation_ft": "210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Olympia", + "scheduled_service": "no", + "keywords": "WA32" + }, + { + "id": "25630", + "ident": "WA33", + "type": "heliport", + "name": "Shaw Island Trust Heliport", + "latitude_deg": "48.58580017089844", + "longitude_deg": "-122.9209976196289", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Shaw Island", + "scheduled_service": "no", + "gps_code": "WA33", + "local_code": "WA33" + }, + { + "id": "25631", + "ident": "WA34", + "type": "heliport", + "name": "Newhalem Office Heliport", + "latitude_deg": "48.671895", + "longitude_deg": "-121.252213", + "elevation_ft": "504", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Newhalem", + "scheduled_service": "no", + "gps_code": "WA34", + "local_code": "WA34" + }, + { + "id": "25632", + "ident": "WA35", + "type": "small_airport", + "name": "Clam Harbor Airport", + "latitude_deg": "48.62229919433594", + "longitude_deg": "-122.9469985961914", + "elevation_ft": "220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Eastsound", + "scheduled_service": "no", + "gps_code": "WA35", + "local_code": "WA35" + }, + { + "id": "25633", + "ident": "WA37", + "type": "small_airport", + "name": "Chinook Farms Airport", + "latitude_deg": "46.910301208496094", + "longitude_deg": "-120.43699645996094", + "elevation_ft": "1880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Kittitas", + "scheduled_service": "no", + "gps_code": "WA37", + "local_code": "WA37" + }, + { + "id": "25634", + "ident": "WA38", + "type": "heliport", + "name": "South Cove Heliport", + "latitude_deg": "47.6841", + "longitude_deg": "-122.14139", + "elevation_ft": "37", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Redmond", + "scheduled_service": "no", + "gps_code": "WA38", + "local_code": "WA38" + }, + { + "id": "25635", + "ident": "WA39", + "type": "closed", + "name": "Woodfield Airport", + "latitude_deg": "46.1278", + "longitude_deg": "-119.017997", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Kennewick", + "scheduled_service": "no", + "keywords": "WA39" + }, + { + "id": "25636", + "ident": "WA40", + "type": "heliport", + "name": "Darrington Clinic EMS Heliport", + "latitude_deg": "48.253459", + "longitude_deg": "-121.608471", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Darrington", + "scheduled_service": "no", + "gps_code": "WA40", + "local_code": "WA40" + }, + { + "id": "25637", + "ident": "WA41", + "type": "closed", + "name": "Bear Canyon West Field", + "latitude_deg": "46.5989", + "longitude_deg": "-122.484", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Morton", + "scheduled_service": "no", + "keywords": "WA41" + }, + { + "id": "25638", + "ident": "WA42", + "type": "small_airport", + "name": "Stacey's Airport", + "latitude_deg": "47.975592", + "longitude_deg": "-122.772861", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Port Townsend", + "scheduled_service": "no", + "gps_code": "WA42", + "local_code": "WA42" + }, + { + "id": "25639", + "ident": "WA43", + "type": "heliport", + "name": "Janes Heliport", + "latitude_deg": "48.04199981689453", + "longitude_deg": "-122.22599792480469", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Marysville", + "scheduled_service": "no", + "gps_code": "WA43", + "local_code": "WA43" + }, + { + "id": "3270", + "ident": "WA44", + "type": "small_airport", + "name": "Maranggo Airport", + "latitude_deg": "-5.7645702362061", + "longitude_deg": "123.91699981689", + "elevation_ft": "169", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SG", + "municipality": "Waha-Tomea Island", + "scheduled_service": "no", + "gps_code": "WA44", + "iata_code": "TQQ", + "local_code": "WA44", + "wikipedia_link": "https://id.wikipedia.org/wiki/Bandar_Udara_Maranggo" + }, + { + "id": "25640", + "ident": "WA45", + "type": "small_airport", + "name": "Olympic Field", + "latitude_deg": "47.99530029296875", + "longitude_deg": "-122.9000015258789", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Discovery Bay/Maynard", + "scheduled_service": "no", + "gps_code": "WA45", + "local_code": "WA45" + }, + { + "id": "25641", + "ident": "WA46", + "type": "small_airport", + "name": "Daybreak Airport", + "latitude_deg": "45.830299377441406", + "longitude_deg": "-122.63700103759766", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "La Center", + "scheduled_service": "no", + "gps_code": "WA46", + "local_code": "WA46" + }, + { + "id": "25642", + "ident": "WA47", + "type": "closed", + "name": "Flying Rock Airpark", + "latitude_deg": "47.151669", + "longitude_deg": "-120.633874", + "elevation_ft": "2700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ellensburg", + "scheduled_service": "no", + "keywords": "WA47" + }, + { + "id": "25643", + "ident": "WA49", + "type": "small_airport", + "name": "Flying R Ranch Airport", + "latitude_deg": "47.50279998779297", + "longitude_deg": "-117.64800262451172", + "elevation_ft": "2450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Cheney", + "scheduled_service": "no", + "gps_code": "WA49", + "local_code": "WA49" + }, + { + "id": "25644", + "ident": "WA50", + "type": "heliport", + "name": "Fire District 5 Ems Heliport", + "latitude_deg": "47.35220337", + "longitude_deg": "-122.6251373", + "elevation_ft": "280", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Gig Harbor", + "scheduled_service": "no", + "gps_code": "WA50", + "local_code": "WA50" + }, + { + "id": "25645", + "ident": "WA51", + "type": "heliport", + "name": "Samaritan Hospital Rms Heliport", + "latitude_deg": "47.12860107421875", + "longitude_deg": "-119.26399993896484", + "elevation_ft": "1130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Moses Lake", + "scheduled_service": "no", + "gps_code": "WA51", + "local_code": "WA51" + }, + { + "id": "25646", + "ident": "WA52", + "type": "small_airport", + "name": "Deer Flat Airport", + "latitude_deg": "47.956425", + "longitude_deg": "-117.600671", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Deer Park", + "scheduled_service": "no", + "gps_code": "WA52", + "local_code": "WA52" + }, + { + "id": "25647", + "ident": "WA53", + "type": "heliport", + "name": "Harborview Medical Center Heliport", + "latitude_deg": "47.604000091552734", + "longitude_deg": "-122.322998046875", + "elevation_ft": "315", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Seattle", + "scheduled_service": "no", + "gps_code": "WA53", + "local_code": "WA53" + }, + { + "id": "25648", + "ident": "WA54", + "type": "heliport", + "name": "Safeco Plaza Heliport", + "latitude_deg": "47.606091", + "longitude_deg": "-122.333837", + "elevation_ft": "716", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Seattle", + "scheduled_service": "no", + "gps_code": "WA54", + "local_code": "WA54", + "keywords": "1001 Fourth Avenue Plaza Heliport" + }, + { + "id": "25649", + "ident": "WA55", + "type": "heliport", + "name": "Elliott Park Heliport", + "latitude_deg": "47.619652", + "longitude_deg": "-122.36031", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Seattle", + "scheduled_service": "no", + "gps_code": "WA55", + "local_code": "WA55" + }, + { + "id": "25650", + "ident": "WA56", + "type": "closed", + "name": "Israel's Farm Airport", + "latitude_deg": "48.507599", + "longitude_deg": "-122.092003", + "elevation_ft": "65", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Sedro Woolley", + "scheduled_service": "no", + "keywords": "WA56" + }, + { + "id": "25651", + "ident": "WA57", + "type": "small_airport", + "name": "Bluecreek Airport", + "latitude_deg": "48.313899993896484", + "longitude_deg": "-117.83999633789062", + "elevation_ft": "1740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Addy", + "scheduled_service": "no", + "gps_code": "WA57", + "local_code": "WA57" + }, + { + "id": "41360", + "ident": "WA58", + "type": "small_airport", + "name": "Eliza Island Airport", + "latitude_deg": "48.652496", + "longitude_deg": "-122.585959", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Eliza Island", + "scheduled_service": "no", + "gps_code": "WA93", + "local_code": "WA93", + "keywords": "WA58" + }, + { + "id": "25653", + "ident": "WA59", + "type": "small_airport", + "name": "Rake's Glen Airport", + "latitude_deg": "48.125571", + "longitude_deg": "-123.150269", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Sequim", + "scheduled_service": "no", + "gps_code": "WA59", + "local_code": "WA59" + }, + { + "id": "25654", + "ident": "WA60", + "type": "closed", + "name": "Longview Bridge Medical Emergency Heliport", + "latitude_deg": "46.111395", + "longitude_deg": "-122.955356", + "elevation_ft": "16", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Longview", + "scheduled_service": "no", + "gps_code": "WA60", + "keywords": "WA60" + }, + { + "id": "25655", + "ident": "WA61", + "type": "small_airport", + "name": "Thompson Airport", + "latitude_deg": "47.798301696777344", + "longitude_deg": "-122.52999877929688", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Kingston", + "scheduled_service": "no", + "gps_code": "WA61", + "local_code": "WA61" + }, + { + "id": "25656", + "ident": "WA62", + "type": "small_airport", + "name": "Paradise Air Ranch Airport", + "latitude_deg": "47.470893", + "longitude_deg": "-117.419515", + "elevation_ft": "2352", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Cheney", + "scheduled_service": "no", + "gps_code": "WA62", + "local_code": "WA62" + }, + { + "id": "25657", + "ident": "WA63", + "type": "small_airport", + "name": "Pleasant Farm Airport", + "latitude_deg": "45.562342", + "longitude_deg": "-122.256089", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Washougal", + "scheduled_service": "no", + "gps_code": "WA63", + "local_code": "WA63" + }, + { + "id": "339538", + "ident": "WA65", + "type": "heliport", + "name": "Washington National Guard Sinclair HGTS Heliport", + "latitude_deg": "47.55389", + "longitude_deg": "-122.68244", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Bremerton", + "scheduled_service": "no", + "gps_code": "WA65", + "local_code": "WA65" + }, + { + "id": "25659", + "ident": "WA66", + "type": "small_airport", + "name": "Spring Creek Ranch Airport", + "latitude_deg": "45.808248", + "longitude_deg": "-121.494758", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "White Salmon", + "scheduled_service": "no", + "gps_code": "WA66", + "local_code": "WA66" + }, + { + "id": "25660", + "ident": "WA67", + "type": "small_airport", + "name": "Green Mountain STOLport", + "latitude_deg": "45.66310119628906", + "longitude_deg": "-122.4729995727539", + "elevation_ft": "270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Vancouver", + "scheduled_service": "no", + "gps_code": "WA67", + "local_code": "WA67" + }, + { + "id": "45913", + "ident": "WA68", + "type": "small_airport", + "name": "Sky Valley Airstrip", + "latitude_deg": "48.076944", + "longitude_deg": "-122.840661", + "elevation_ft": "140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Port Townsend", + "scheduled_service": "no", + "gps_code": "WA68", + "local_code": "WA68" + }, + { + "id": "25661", + "ident": "WA69", + "type": "small_airport", + "name": "Wax Orchards Airport", + "latitude_deg": "47.401798248291016", + "longitude_deg": "-122.49800109863281", + "elevation_ft": "389", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Vashon", + "scheduled_service": "no", + "gps_code": "WA69", + "local_code": "WA69" + }, + { + "id": "25662", + "ident": "WA70", + "type": "closed", + "name": "Frosty Creek Airport", + "latitude_deg": "48.5777", + "longitude_deg": "-118.985001", + "elevation_ft": "3608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tonasket", + "scheduled_service": "no", + "keywords": "WA70" + }, + { + "id": "25663", + "ident": "WA71", + "type": "heliport", + "name": "Kelly Ranch Heliport", + "latitude_deg": "47.53730010986328", + "longitude_deg": "-122.06099700927734", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Issaquah", + "scheduled_service": "no", + "gps_code": "WA71", + "local_code": "WA71" + }, + { + "id": "25664", + "ident": "WA72", + "type": "small_airport", + "name": "Zema Private Airport", + "latitude_deg": "48.64469909667969", + "longitude_deg": "-117.93800354003906", + "elevation_ft": "1854", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Colville", + "scheduled_service": "no", + "gps_code": "WA72", + "local_code": "WA72" + }, + { + "id": "25665", + "ident": "WA73", + "type": "small_airport", + "name": "Smith Airport", + "latitude_deg": "48.525001525878906", + "longitude_deg": "-117.85299682617188", + "elevation_ft": "2240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Colville", + "scheduled_service": "no", + "gps_code": "WA73", + "local_code": "WA73" + }, + { + "id": "25666", + "ident": "WA74", + "type": "small_airport", + "name": "Quincy Flying Service Airport", + "latitude_deg": "47.226728", + "longitude_deg": "-119.908932", + "elevation_ft": "1276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Quincy", + "scheduled_service": "no", + "gps_code": "WA74", + "local_code": "WA74" + }, + { + "id": "25667", + "ident": "WA75", + "type": "heliport", + "name": "Flying 'O' Ranch Heliport", + "latitude_deg": "47.36920166015625", + "longitude_deg": "-122.06900024414062", + "elevation_ft": "563", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Covington", + "scheduled_service": "no", + "gps_code": "WA75", + "local_code": "WA75" + }, + { + "id": "25668", + "ident": "WA76", + "type": "closed", + "name": "Columbia Crest Winery Airport", + "latitude_deg": "45.955386", + "longitude_deg": "-119.622381", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Paterson", + "scheduled_service": "no", + "keywords": "WA76" + }, + { + "id": "25669", + "ident": "WA77", + "type": "small_airport", + "name": "Enumclaw Airport", + "latitude_deg": "47.195701599121094", + "longitude_deg": "-122.02200317382812", + "elevation_ft": "738", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Enumclaw", + "scheduled_service": "no", + "gps_code": "WA77", + "local_code": "WA77" + }, + { + "id": "25670", + "ident": "WA78", + "type": "small_airport", + "name": "Sky River Ranch Airport", + "latitude_deg": "45.629005", + "longitude_deg": "-122.191013", + "elevation_ft": "1239", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Washougal", + "scheduled_service": "no", + "gps_code": "WA78", + "local_code": "WA78" + }, + { + "id": "25671", + "ident": "WA79", + "type": "small_airport", + "name": "Walter Sutton's Private Strip", + "latitude_deg": "45.93320083618164", + "longitude_deg": "-122.41799926757812", + "elevation_ft": "451", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Amboy", + "scheduled_service": "no", + "gps_code": "WA79", + "local_code": "WA79" + }, + { + "id": "25672", + "ident": "WA80", + "type": "small_airport", + "name": "McClellan Field", + "latitude_deg": "45.893712", + "longitude_deg": "-122.548327", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Amboy", + "scheduled_service": "no", + "gps_code": "WA80", + "local_code": "WA80" + }, + { + "id": "25673", + "ident": "WA81", + "type": "seaplane_base", + "name": "Fishermans Bay Seaplane Base", + "latitude_deg": "48.516499", + "longitude_deg": "-122.917999", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Lopez", + "scheduled_service": "no", + "local_code": "81W", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fishermans_Bay/LPS_Seaplane_Base", + "keywords": "WA81, Fishermans Bay/LPS Seaplane Base" + }, + { + "id": "25674", + "ident": "WA82", + "type": "heliport", + "name": "The Boeing Company Heliport", + "latitude_deg": "47.931827", + "longitude_deg": "-122.263308", + "elevation_ft": "628", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Everett", + "scheduled_service": "no", + "gps_code": "WA82", + "local_code": "WA82" + }, + { + "id": "25675", + "ident": "WA83", + "type": "seaplane_base", + "name": "Westsound/WSX Seaplane Base", + "latitude_deg": "48.617901", + "longitude_deg": "-122.956903", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "West Sound", + "scheduled_service": "no", + "gps_code": "WA83", + "iata_code": "WSX", + "local_code": "WA83" + }, + { + "id": "25676", + "ident": "WA84", + "type": "small_airport", + "name": "Auburn Academy Airport", + "latitude_deg": "47.28070068359375", + "longitude_deg": "-122.1500015258789", + "elevation_ft": "416", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "WA84", + "local_code": "WA84" + }, + { + "id": "25677", + "ident": "WA85", + "type": "heliport", + "name": "Weyerhaeuser Heliport", + "latitude_deg": "47.296295", + "longitude_deg": "-122.299075", + "elevation_ft": "409", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "WA85", + "local_code": "WA85" + }, + { + "id": "25678", + "ident": "WA86", + "type": "heliport", + "name": "Boeing - Auburn Complex Heliport", + "latitude_deg": "47.293108", + "longitude_deg": "-122.245785", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "WA86", + "local_code": "WA86" + }, + { + "id": "25679", + "ident": "WA87", + "type": "small_airport", + "name": "Parkside Airpark", + "latitude_deg": "45.81589889526367", + "longitude_deg": "-122.5530014038086", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Battle Ground", + "scheduled_service": "no", + "gps_code": "WA87", + "local_code": "WA87" + }, + { + "id": "25680", + "ident": "WA88", + "type": "small_airport", + "name": "Horse Fly Airport", + "latitude_deg": "48.892437", + "longitude_deg": "-122.561277", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ferndale", + "scheduled_service": "no", + "gps_code": "WA88", + "local_code": "WA88" + }, + { + "id": "25681", + "ident": "WA89", + "type": "heliport", + "name": "Kadlec Medical Center Heliport", + "latitude_deg": "46.28169", + "longitude_deg": "-119.281236", + "elevation_ft": "384", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Richland", + "scheduled_service": "no", + "gps_code": "WA89", + "local_code": "WA89" + }, + { + "id": "25682", + "ident": "WA90", + "type": "small_airport", + "name": "Floathaven Airstrip", + "latitude_deg": "48.72268", + "longitude_deg": "-122.337914", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Bellingham", + "scheduled_service": "no", + "gps_code": "WA90", + "local_code": "WA90" + }, + { + "id": "25683", + "ident": "WA91", + "type": "heliport", + "name": "Pathfinder Helicopter Heliport", + "latitude_deg": "47.759735", + "longitude_deg": "-117.150162", + "elevation_ft": "3440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Spokane", + "scheduled_service": "no", + "gps_code": "WA91", + "local_code": "WA91" + }, + { + "id": "25684", + "ident": "WA92", + "type": "heliport", + "name": "Mc Neil Island Emergency Pad Heliport", + "latitude_deg": "47.196154", + "longitude_deg": "-122.661399", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Steilacoom", + "scheduled_service": "no", + "gps_code": "WA92", + "local_code": "WA92" + }, + { + "id": "25686", + "ident": "WA94", + "type": "heliport", + "name": "Washington Air Museum Heliport", + "latitude_deg": "47.33399963378906", + "longitude_deg": "-122.02400207519531", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Black Diamond", + "scheduled_service": "no", + "gps_code": "WA94", + "local_code": "WA94" + }, + { + "id": "25687", + "ident": "WA95", + "type": "small_airport", + "name": "Skyqueen Airport", + "latitude_deg": "46.718601", + "longitude_deg": "-122.911003", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Centralia", + "scheduled_service": "no", + "gps_code": "WA95", + "local_code": "WA95" + }, + { + "id": "25688", + "ident": "WA96", + "type": "small_airport", + "name": "Leisureland Airpark", + "latitude_deg": "47.60749816894531", + "longitude_deg": "-122.77400207519531", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Bremerton", + "scheduled_service": "no", + "gps_code": "WA96", + "local_code": "WA96" + }, + { + "id": "25689", + "ident": "WA97", + "type": "small_airport", + "name": "Buena Airport", + "latitude_deg": "46.44286", + "longitude_deg": "-120.339896", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Buena", + "scheduled_service": "no", + "gps_code": "WA97", + "local_code": "WA97" + }, + { + "id": "45889", + "ident": "WA98", + "type": "heliport", + "name": "Cascade Heliport", + "latitude_deg": "47.512346", + "longitude_deg": "-120.488691", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Cashmere", + "scheduled_service": "no", + "gps_code": "WA98", + "local_code": "WA98" + }, + { + "id": "25691", + "ident": "WA99", + "type": "small_airport", + "name": "Flying K Ranch Airport", + "latitude_deg": "46.32929992675781", + "longitude_deg": "-122.88600158691406", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Castle Rock", + "scheduled_service": "no", + "gps_code": "WA99", + "local_code": "WA99" + }, + { + "id": "26745", + "ident": "WAAA", + "type": "large_airport", + "name": "Hasanuddin International Airport", + "latitude_deg": "-5.06163", + "longitude_deg": "119.554001", + "elevation_ft": "47", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SN", + "municipality": "Ujung Pandang", + "scheduled_service": "yes", + "gps_code": "WAAA", + "iata_code": "UPG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hasanuddin_International_Airport" + }, + { + "id": "41409", + "ident": "WAAG", + "type": "small_airport", + "name": "Malimpung Airport", + "latitude_deg": "-3.7382", + "longitude_deg": "119.7502", + "elevation_ft": "124", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SN", + "municipality": "Malimpung", + "scheduled_service": "no", + "gps_code": "WAWG", + "keywords": "WAAG" + }, + { + "id": "41410", + "ident": "WAAI", + "type": "closed", + "name": "Malili Airport", + "latitude_deg": "-2.62966", + "longitude_deg": "121.097102", + "elevation_ft": "19", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SN", + "municipality": "Malili", + "scheduled_service": "no", + "gps_code": "WAWI", + "keywords": "WAAI" + }, + { + "id": "41412", + "ident": "WAAL", + "type": "closed", + "name": "Punggaluku Airport", + "latitude_deg": "-4.316667", + "longitude_deg": "122.466667", + "elevation_ft": "43", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SG", + "municipality": "Wawooru", + "scheduled_service": "no", + "gps_code": "WAWL", + "keywords": "WAAL" + }, + { + "id": "41414", + "ident": "WAAT", + "type": "small_airport", + "name": "Makale Airport", + "latitude_deg": "-3.10935997963", + "longitude_deg": "119.856002808", + "elevation_ft": "2711", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SN", + "municipality": "Makale-Celebes Island", + "scheduled_service": "no", + "gps_code": "WAAT" + }, + { + "id": "314297", + "ident": "WAB", + "type": "closed", + "name": "Wabag Airport", + "latitude_deg": "-5.4915", + "longitude_deg": "143.72", + "elevation_ft": "6800", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EPW", + "municipality": "Wabag", + "scheduled_service": "no", + "iata_code": "WAB" + }, + { + "id": "26746", + "ident": "WABB", + "type": "medium_airport", + "name": "Frans Kaisiepo Airport", + "latitude_deg": "-1.19002", + "longitude_deg": "136.108002", + "elevation_ft": "46", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Biak", + "scheduled_service": "yes", + "gps_code": "WABB", + "iata_code": "BIK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Frans_Kaisiepo_Airport" + }, + { + "id": "310163", + "ident": "WABC", + "type": "small_airport", + "name": "Akimuga Airstrip", + "latitude_deg": "-4.6043", + "longitude_deg": "137.6576", + "elevation_ft": "164", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Akimuga", + "scheduled_service": "no", + "gps_code": "WABC" + }, + { + "id": "41415", + "ident": "WABD", + "type": "small_airport", + "name": "Moanamani Airport", + "latitude_deg": "-4.00659", + "longitude_deg": "136.037704", + "elevation_ft": "5204", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Moanamani", + "scheduled_service": "no", + "gps_code": "WABD", + "iata_code": "ONI" + }, + { + "id": "31200", + "ident": "WABF", + "type": "small_airport", + "name": "Kornasoren Airfield", + "latitude_deg": "-0.935842", + "longitude_deg": "134.872298", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Kornasoren", + "scheduled_service": "yes", + "gps_code": "WABF", + "iata_code": "FOO", + "local_code": "WA23", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kornasoren_Airport", + "keywords": "Numfor" + }, + { + "id": "41416", + "ident": "WABG", + "type": "small_airport", + "name": "Wagethe Airport", + "latitude_deg": "-4.05916", + "longitude_deg": "136.281715", + "elevation_ft": "5627", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Wagethe", + "scheduled_service": "no", + "gps_code": "WABG", + "iata_code": "WET" + }, + { + "id": "26747", + "ident": "WABI", + "type": "medium_airport", + "name": "Nabire Airport", + "latitude_deg": "-3.368586", + "longitude_deg": "135.496702", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Nabire", + "scheduled_service": "yes", + "gps_code": "WABI", + "iata_code": "NBX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nabire_Airport" + }, + { + "id": "41417", + "ident": "WABL", + "type": "small_airport", + "name": "Illaga Airport", + "latitude_deg": "-3.97648", + "longitude_deg": "137.6225", + "elevation_ft": "7989", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Illaga", + "scheduled_service": "no", + "gps_code": "WABL", + "iata_code": "ILA", + "keywords": "Ilaga PuncaK airport" + }, + { + "id": "41418", + "ident": "WABN", + "type": "small_airport", + "name": "Kokonao Airport", + "latitude_deg": "-4.71075", + "longitude_deg": "136.43515", + "elevation_ft": "59", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Kokonao", + "scheduled_service": "no", + "gps_code": "WAYK", + "iata_code": "KOX", + "keywords": "WABN, Kokonau" + }, + { + "id": "41419", + "ident": "WABO", + "type": "closed", + "name": "Sudjarwo Tjondronegoro Airport", + "latitude_deg": "-1.87438", + "longitude_deg": "136.23946", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Serui", + "scheduled_service": "no", + "wikipedia_link": "https://id.wikipedia.org/wiki/Bandar_Udara_Sudjarwo_Tjondronegoro", + "keywords": "ZRI, WABO" + }, + { + "id": "26748", + "ident": "WABP", + "type": "medium_airport", + "name": "Mozes Kilangin Airport", + "latitude_deg": "-4.52978", + "longitude_deg": "136.887388", + "elevation_ft": "103", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Timika", + "scheduled_service": "yes", + "gps_code": "WAYY", + "iata_code": "TIM", + "local_code": "WAYY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mozes_Kilangin_Airport", + "keywords": "WABP" + }, + { + "id": "41420", + "ident": "WABT", + "type": "small_airport", + "name": "Enarotali Airport", + "latitude_deg": "-3.925739", + "longitude_deg": "136.378634", + "elevation_ft": "5807", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Enarotali", + "scheduled_service": "no", + "gps_code": "WABT", + "iata_code": "EWI" + }, + { + "id": "41421", + "ident": "WABW", + "type": "small_airport", + "name": "Waren Airport", + "latitude_deg": "-1.6285300254822", + "longitude_deg": "134.12399291992", + "elevation_ft": "29", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Momi-Papua Island", + "scheduled_service": "no", + "gps_code": "WABW" + }, + { + "id": "310447", + "ident": "WABY", + "type": "small_airport", + "name": "Kebo Airstrip", + "latitude_deg": "-3.8248", + "longitude_deg": "136.385844", + "elevation_ft": "5845", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Kebo", + "scheduled_service": "no", + "gps_code": "WABY" + }, + { + "id": "316463", + "ident": "WAD", + "type": "small_airport", + "name": "Andriamena Airport", + "latitude_deg": "-17.631", + "longitude_deg": "47.7233", + "elevation_ft": "2475", + "continent": "AF", + "iso_country": "MG", + "iso_region": "MG-M", + "municipality": "Andriamena", + "scheduled_service": "no", + "iata_code": "WAD" + }, + { + "id": "26749", + "ident": "WADA", + "type": "small_airport", + "name": "Selaparang Airport", + "latitude_deg": "-8.56056", + "longitude_deg": "116.095097", + "elevation_ft": "52", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NB", + "municipality": "Mataram", + "scheduled_service": "no", + "gps_code": "WADA", + "iata_code": "AMI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Selaparang_Airport", + "keywords": "WRRA" + }, + { + "id": "26750", + "ident": "WADB", + "type": "small_airport", + "name": "Muhammad Salahuddin Airport", + "latitude_deg": "-8.5396499633789", + "longitude_deg": "118.68699645996", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NB", + "municipality": "Bima-Sumbawa Island", + "scheduled_service": "yes", + "gps_code": "WADB", + "iata_code": "BMU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bima_Airport", + "keywords": "WRRB, PBW, Palibelo Airport" + }, + { + "id": "26751", + "ident": "WADD", + "type": "large_airport", + "name": "Ngurah Rai (Bali) International Airport", + "latitude_deg": "-8.74817", + "longitude_deg": "115.167", + "elevation_ft": "14", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-BA", + "municipality": "Denpasar", + "scheduled_service": "yes", + "gps_code": "WADD", + "iata_code": "DPS", + "home_link": "http://www.angkasapura1.co.id/eng/location/bali.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ngurah_Rai_Airport", + "keywords": "WRRR" + }, + { + "id": "299629", + "ident": "WADL", + "type": "medium_airport", + "name": "Lombok International Airport", + "latitude_deg": "-8.757792", + "longitude_deg": "116.275435", + "elevation_ft": "319", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NB", + "municipality": "Mataram", + "scheduled_service": "yes", + "gps_code": "WADL", + "iata_code": "LOP", + "home_link": "http://www.lombok-airport.co.id/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lombok_International_Airport", + "keywords": "Bandara Udara Internasional Lombok" + }, + { + "id": "26752", + "ident": "WADS", + "type": "small_airport", + "name": "Sumbawa Besar Airport", + "latitude_deg": "-8.48904037475586", + "longitude_deg": "117.41200256347656", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NB", + "municipality": "Sumbawa Island", + "scheduled_service": "yes", + "gps_code": "WADS", + "iata_code": "SWQ", + "keywords": "WRRS" + }, + { + "id": "26753", + "ident": "WADT", + "type": "small_airport", + "name": "Tambolaka Airport", + "latitude_deg": "-9.40972", + "longitude_deg": "119.244003", + "elevation_ft": "161", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NT", + "municipality": "Waikabubak-Sumba Island", + "scheduled_service": "yes", + "gps_code": "WATK", + "iata_code": "TMC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tambolaka_Airport", + "keywords": "WRRT, WADT" + }, + { + "id": "26754", + "ident": "WADW", + "type": "small_airport", + "name": "Umbu Mehang Kunda Airport", + "latitude_deg": "-9.66922", + "longitude_deg": "120.302002", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NT", + "municipality": "Waingapu-Sumba Island", + "scheduled_service": "yes", + "gps_code": "WATU", + "iata_code": "WGP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mau_Hau_Airport", + "keywords": "WRRW, WADW, WATU, Mau Hau Airport, Waingapu Airport" + }, + { + "id": "26772", + "ident": "WAEW", + "type": "medium_airport", + "name": "Pitu Airport", + "latitude_deg": "2.04599", + "longitude_deg": "128.324997", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MU", + "municipality": "Gotalalamo-Morotai Island", + "scheduled_service": "no", + "gps_code": "WAEW", + "iata_code": "OTI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pitu_Airport" + }, + { + "id": "352892", + "ident": "WAFB", + "type": "medium_airport", + "name": "Toraja Airport", + "latitude_deg": "-3.185833", + "longitude_deg": "119.91775", + "elevation_ft": "2884", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SS", + "municipality": "Toraja", + "scheduled_service": "yes", + "gps_code": "WAFB", + "iata_code": "TRT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toraja_Airport" + }, + { + "id": "331735", + "ident": "WAFD", + "type": "small_airport", + "name": "Bua - Palopo Lagaligo Airport", + "latitude_deg": "-3.082997", + "longitude_deg": "120.245018", + "elevation_ft": "14", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SN", + "municipality": "Palopo", + "scheduled_service": "yes", + "gps_code": "WAFD", + "iata_code": "LLO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bua_Airport", + "keywords": "Palopo Lagaligo" + }, + { + "id": "26769", + "ident": "WAFF", + "type": "medium_airport", + "name": "Mutiara - SIS Al-Jufrie Airport", + "latitude_deg": "-0.916462", + "longitude_deg": "119.908647", + "elevation_ft": "284", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-ST", + "municipality": "Palu", + "scheduled_service": "yes", + "gps_code": "WAFF", + "iata_code": "PLW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mutiara_Airport", + "keywords": "WAML" + }, + { + "id": "41411", + "ident": "WAFJ", + "type": "small_airport", + "name": "Tampa Padang Airport", + "latitude_deg": "-2.590267", + "longitude_deg": "119.025364", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SN", + "municipality": "Mamuju", + "scheduled_service": "no", + "gps_code": "WAFJ", + "iata_code": "MJU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tampa_Padang_Airport", + "keywords": "WAAJ, WAWJ" + }, + { + "id": "26803", + "ident": "WAFM", + "type": "small_airport", + "name": "Andi Jemma Airport", + "latitude_deg": "-2.55803", + "longitude_deg": "120.323997", + "elevation_ft": "164", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SN", + "municipality": "Masamba", + "scheduled_service": "yes", + "gps_code": "WAFM", + "iata_code": "MXB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Andi_Jemma_Airport", + "keywords": "WAWM" + }, + { + "id": "26771", + "ident": "WAFP", + "type": "medium_airport", + "name": "Kasiguncu Airport", + "latitude_deg": "-1.41675", + "longitude_deg": "120.657997", + "elevation_ft": "174", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-ST", + "municipality": "Poso-Celebes Island", + "scheduled_service": "no", + "gps_code": "WAFP", + "iata_code": "PSJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kasiguncu_Airport", + "keywords": "WAMP" + }, + { + "id": "26774", + "ident": "WAFW", + "type": "medium_airport", + "name": "Syukuran Aminuddin Amir Airport", + "latitude_deg": "-1.035893", + "longitude_deg": "122.773934", + "elevation_ft": "56", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-ST", + "municipality": "Luwok", + "scheduled_service": "no", + "gps_code": "WAFW", + "iata_code": "LUW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Syukuran_Aminuddin_Amir_Airport", + "keywords": "Bubung Airport, WAMW" + }, + { + "id": "344101", + "ident": "WAGB", + "type": "small_airport", + "name": "Haji Muhammad Sidik Airport", + "latitude_deg": "-1.02581", + "longitude_deg": "114.92881", + "elevation_ft": "145", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KT", + "municipality": "Muara Teweh", + "scheduled_service": "yes", + "gps_code": "WAGB", + "iata_code": "HMS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Haji_Muhammad_Sidik_Airport", + "keywords": "Trinsing" + }, + { + "id": "343797", + "ident": "WAGF", + "type": "small_airport", + "name": "Seruyan Kuala Pembuang Airport", + "latitude_deg": "-3.376062", + "longitude_deg": "112.536521", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KT", + "municipality": "Seruyan", + "scheduled_service": "yes", + "gps_code": "WAGF", + "iata_code": "KLP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Seruyan_Kuala_Pembuang_Airport", + "keywords": "Kota Waringin Timur" + }, + { + "id": "26780", + "ident": "WAGG", + "type": "small_airport", + "name": "Tjilik Riwut Airport", + "latitude_deg": "-2.22513", + "longitude_deg": "113.943001", + "elevation_ft": "82", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KT", + "municipality": "Palangkaraya", + "scheduled_service": "yes", + "gps_code": "WAGG", + "iata_code": "PKY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tjilik_Riwut_Airport", + "keywords": "WRBP, WAOP" + }, + { + "id": "332202", + "ident": "WAHI", + "type": "medium_airport", + "name": "Yogyakarta International Airport", + "latitude_deg": "-7.905338", + "longitude_deg": "110.057264", + "elevation_ft": "24", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-YO", + "municipality": "Yogyakarta", + "scheduled_service": "yes", + "gps_code": "WAHI", + "iata_code": "YIA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yogyakarta_International_Airport", + "keywords": "Kulon Progo" + }, + { + "id": "26833", + "ident": "WAHL", + "type": "medium_airport", + "name": "Tunggul Wulung Airport", + "latitude_deg": "-7.64506", + "longitude_deg": "109.033997", + "elevation_ft": "69", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JT", + "municipality": "Cilacap", + "scheduled_service": "yes", + "gps_code": "WAHL", + "iata_code": "CXP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tunggul_Wulung_Airport", + "keywords": "WIIL, WIHL" + }, + { + "id": "42250", + "ident": "WAHU", + "type": "small_airport", + "name": "Dewadaru - Kemujan Island", + "latitude_deg": "-5.80091", + "longitude_deg": "110.47838", + "elevation_ft": "35", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JT", + "municipality": "Karimunjawa", + "scheduled_service": "yes", + "gps_code": "WAHU", + "iata_code": "KWB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dewadaru_Airport", + "keywords": "Karimun Jawa, Karimun Java" + }, + { + "id": "41423", + "ident": "WAJB", + "type": "small_airport", + "name": "Bokondini Airport", + "latitude_deg": "-3.68455", + "longitude_deg": "138.677437", + "elevation_ft": "4550", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Bokondini", + "scheduled_service": "yes", + "gps_code": "WAJB", + "iata_code": "BUI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bokondini_Airport" + }, + { + "id": "41424", + "ident": "WAJD", + "type": "small_airport", + "name": "Wakde Airport", + "latitude_deg": "-1.935289978981018", + "longitude_deg": "139.02000427246094", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Masi Masi Island", + "scheduled_service": "no", + "gps_code": "WAJD" + }, + { + "id": "41425", + "ident": "WAJI", + "type": "small_airport", + "name": "Mararena Sarmi Airport", + "latitude_deg": "-1.873077", + "longitude_deg": "138.753275", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Sarmi", + "scheduled_service": "no", + "gps_code": "WAJI", + "iata_code": "ZRM", + "wikipedia_link": "http://id.wikipedia.org/wiki/Bandar_Udara_Mararena", + "keywords": "Mararena, Orai" + }, + { + "id": "26755", + "ident": "WAJJ", + "type": "large_airport", + "name": "Dortheys Hiyo Eluay International Airport", + "latitude_deg": "-2.579627", + "longitude_deg": "140.519857", + "elevation_ft": "289", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Sentani", + "scheduled_service": "yes", + "gps_code": "WAJJ", + "iata_code": "DJJ", + "home_link": "https://sentani-airport.co.id/en", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dortheys_Hiyo_Eluay_International_Airport", + "keywords": "Bandar Udara Internasional Dortheys Hiyo Eluay, Sentani International Airport, Hollandia, Jayapura" + }, + { + "id": "310461", + "ident": "WAJK", + "type": "small_airport", + "name": "Kiwirok Airstrip", + "latitude_deg": "-4.713481", + "longitude_deg": "140.740271", + "elevation_ft": "5470", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Kiwirok", + "scheduled_service": "yes", + "gps_code": "WAJK" + }, + { + "id": "41426", + "ident": "WAJL", + "type": "small_airport", + "name": "Lereh Airport", + "latitude_deg": "-3.0795", + "longitude_deg": "139.952", + "elevation_ft": "820", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Lereh-Papua Island", + "scheduled_service": "no", + "gps_code": "WAJL", + "iata_code": "LHI" + }, + { + "id": "41427", + "ident": "WAJM", + "type": "small_airport", + "name": "Mulia Airport", + "latitude_deg": "-3.701938", + "longitude_deg": "137.957", + "elevation_ft": "6527", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PT", + "municipality": "Mulia-Papua Island", + "scheduled_service": "no", + "gps_code": "WABQ", + "iata_code": "LII", + "keywords": "WAJM" + }, + { + "id": "41428", + "ident": "WAJO", + "type": "medium_airport", + "name": "Oksibil Airport", + "latitude_deg": "-4.9071", + "longitude_deg": "140.6277", + "elevation_ft": "4315", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Oksibil", + "scheduled_service": "yes", + "gps_code": "WAJO", + "iata_code": "OKL", + "wikipedia_link": "https://id.wikipedia.org/wiki/Bandar_Udara_Oksibil", + "keywords": "Gunung Bintang" + }, + { + "id": "41429", + "ident": "WAJR", + "type": "closed", + "name": "Waris Airport", + "latitude_deg": "-3.23337", + "longitude_deg": "140.985451", + "elevation_ft": "1500", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Swach", + "scheduled_service": "no", + "gps_code": "WAJR", + "iata_code": "WAR" + }, + { + "id": "41430", + "ident": "WAJS", + "type": "small_airport", + "name": "Senggeh Airport", + "latitude_deg": "-3.442448", + "longitude_deg": "140.778079", + "elevation_ft": "914", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Senggeh", + "scheduled_service": "yes", + "gps_code": "WAJS", + "iata_code": "SEH", + "keywords": "Senggi" + }, + { + "id": "41431", + "ident": "WAJU", + "type": "closed", + "name": "Ubrub Airport", + "latitude_deg": "-3.675686", + "longitude_deg": "140.885067", + "elevation_ft": "1370", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Ubrub", + "scheduled_service": "no", + "gps_code": "WAJU", + "iata_code": "UBR" + }, + { + "id": "311639", + "ident": "WAJY", + "type": "small_airport", + "name": "Werur/Mar Airport", + "latitude_deg": "-0.4198", + "longitude_deg": "132.1886", + "elevation_ft": "35", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Mar", + "scheduled_service": "no", + "gps_code": "WAJY" + }, + { + "id": "41432", + "ident": "WAKD", + "type": "small_airport", + "name": "Mindiptana Airport", + "latitude_deg": "-5.876929", + "longitude_deg": "140.70946", + "elevation_ft": "121", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Mindiptana-Papua Island", + "scheduled_service": "no", + "gps_code": "WAKD", + "iata_code": "MDP", + "wikipedia_link": "https://id.wikipedia.org/wiki/Bandar_Udara_Mindiptana" + }, + { + "id": "41433", + "ident": "WAKE", + "type": "small_airport", + "name": "Bade Airport", + "latitude_deg": "-7.175902", + "longitude_deg": "139.58333", + "elevation_ft": "59", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Bade", + "scheduled_service": "no", + "gps_code": "WAKE", + "iata_code": "BXD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bade_Airport" + }, + { + "id": "41434", + "ident": "WAKG", + "type": "small_airport", + "name": "Agats Airport", + "latitude_deg": "-5.543288", + "longitude_deg": "138.134911", + "elevation_ft": "17", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Agats", + "scheduled_service": "no", + "gps_code": "WAKG" + }, + { + "id": "26757", + "ident": "WAKK", + "type": "medium_airport", + "name": "Mopah International Airport", + "latitude_deg": "-8.523898", + "longitude_deg": "140.419693", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Merauke", + "scheduled_service": "yes", + "gps_code": "WAKK", + "iata_code": "MKQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mopah_International_Airport" + }, + { + "id": "41435", + "ident": "WAKO", + "type": "small_airport", + "name": "Okaba Airport", + "latitude_deg": "-8.0946", + "longitude_deg": "139.7233", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Okaba", + "scheduled_service": "no", + "gps_code": "WAKO", + "iata_code": "OKQ" + }, + { + "id": "41436", + "ident": "WAKP", + "type": "small_airport", + "name": "Kepi Airport", + "latitude_deg": "-6.5418", + "longitude_deg": "139.3318", + "elevation_ft": "67", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Kepi", + "scheduled_service": "no", + "gps_code": "WAKP", + "iata_code": "KEI" + }, + { + "id": "41437", + "ident": "WAKT", + "type": "medium_airport", + "name": "Tanah Merah Airport", + "latitude_deg": "-6.09669", + "longitude_deg": "140.303521", + "elevation_ft": "57", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PS", + "municipality": "Tanah Merah", + "scheduled_service": "yes", + "gps_code": "WAKT", + "iata_code": "TMH" + }, + { + "id": "32629", + "ident": "WALE", + "type": "small_airport", + "name": "Melalan Airport", + "latitude_deg": "-0.203611", + "longitude_deg": "115.760002", + "elevation_ft": "330", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KI", + "municipality": "Melak-Borneo Island", + "scheduled_service": "no", + "gps_code": "WALE", + "iata_code": "GHS", + "wikipedia_link": "https://en.wikipedia.org/wiki/West_Kutai_Melalan_Airport", + "keywords": "WRLE, West Kutai" + }, + { + "id": "26758", + "ident": "WALG", + "type": "small_airport", + "name": "Tanjung Harapan Airport", + "latitude_deg": "2.83583333333", + "longitude_deg": "117.373611111", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KU", + "municipality": "Tanjung Selor-Borneo Island", + "scheduled_service": "yes", + "gps_code": "WALG", + "iata_code": "TJS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tanjung_Harapan_Airport" + }, + { + "id": "35277", + "ident": "WALJ", + "type": "small_airport", + "name": "Datadawai Airport", + "latitude_deg": "0.8106", + "longitude_deg": "114.5306", + "elevation_ft": "508", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KI", + "municipality": "Datadawai-Borneo Island", + "scheduled_service": "yes", + "gps_code": "WALJ", + "iata_code": "DTD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Datadawai_Airport" + }, + { + "id": "26759", + "ident": "WALK", + "type": "medium_airport", + "name": "Kalimarau Airport", + "latitude_deg": "2.1555", + "longitude_deg": "117.431999", + "elevation_ft": "59", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KI", + "municipality": "Tanjung Redeb - Borneo Island", + "scheduled_service": "yes", + "gps_code": "WAQT", + "iata_code": "BEJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kalimarau_Airport", + "keywords": "Berau Airport, WALK, WRLK" + }, + { + "id": "26760", + "ident": "WALL", + "type": "small_airport", + "name": "Sultan Aji Muhammad Sulaiman Sepinggan International Airport", + "latitude_deg": "-1.26827", + "longitude_deg": "116.893997", + "elevation_ft": "12", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KI", + "municipality": "Balikpapan", + "scheduled_service": "yes", + "gps_code": "WALL", + "iata_code": "BPN", + "home_link": "http://sepinggan-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sultan_Aji_Muhamad_Sulaiman_Airport", + "keywords": "WRLL, Balikpapan Airport, Sepinggan Airport, Sepinggang Airfield" + }, + { + "id": "26761", + "ident": "WALQ", + "type": "small_airport", + "name": "Muara Badak Pujangan Airport", + "latitude_deg": "-0.306075006723", + "longitude_deg": "117.416000366", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KI", + "municipality": "Muara Badak-Borneo Island", + "scheduled_service": "no", + "gps_code": "WALQ" + }, + { + "id": "26762", + "ident": "WALR", + "type": "medium_airport", + "name": "Juwata International Airport / Suharnoko Harbani AFB", + "latitude_deg": "3.325145", + "longitude_deg": "117.564169", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KU", + "municipality": "Tarakan", + "scheduled_service": "yes", + "gps_code": "WAQQ", + "iata_code": "TRK", + "local_code": "TRK", + "home_link": "http://www.tarakan-airport.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Juwata_Airport", + "keywords": "WRLR, WALR, WAQQ, TRK, JUWATA, TARAKAN" + }, + { + "id": "26763", + "ident": "WALS", + "type": "medium_airport", + "name": "Aji Pangeran Tumenggung Pranoto International Airport", + "latitude_deg": "-0.374478", + "longitude_deg": "117.250128", + "elevation_ft": "82", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KI", + "municipality": "Samarinda", + "scheduled_service": "yes", + "gps_code": "WALS", + "iata_code": "AAP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aji_Pangeran_Tumenggung_Pranoto_International_Airport", + "keywords": "Sungai Siring Airport" + }, + { + "id": "26764", + "ident": "WALT", + "type": "small_airport", + "name": "Tanjung Santan Airport", + "latitude_deg": "-0.0929730013013", + "longitude_deg": "117.45300293", + "elevation_ft": "121", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KI", + "municipality": "Santan-Borneo Island", + "scheduled_service": "no", + "gps_code": "WALT", + "iata_code": "TSX", + "keywords": "WRLT" + }, + { + "id": "26765", + "ident": "WALV", + "type": "small_airport", + "name": "Bunyu Airport", + "latitude_deg": "3.45571994781", + "longitude_deg": "117.866996765", + "elevation_ft": "118", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KU", + "municipality": "Bunju Island", + "scheduled_service": "no", + "gps_code": "WALV", + "iata_code": "BYQ", + "local_code": "WA1C", + "wikipedia_link": "http://id.wikipedia.org/wiki/Bandar_Udara_Bunyu", + "keywords": "WRLV" + }, + { + "id": "26766", + "ident": "WALX", + "type": "small_airport", + "name": "Mangkajang Airport", + "latitude_deg": "2.00750994682", + "longitude_deg": "117.749000549", + "elevation_ft": "47", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KI", + "municipality": "Mangkajang-Borneo Island", + "scheduled_service": "no", + "gps_code": "WALX" + }, + { + "id": "31540", + "ident": "WAMA", + "type": "small_airport", + "name": "Gamarmalamo Airport", + "latitude_deg": "1.8383300304412842", + "longitude_deg": "127.78600311279297", + "elevation_ft": "180", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MU", + "municipality": "Galela-Celebes Island", + "scheduled_service": "no", + "gps_code": "WAMA", + "iata_code": "GLX" + }, + { + "id": "41438", + "ident": "WAMB", + "type": "small_airport", + "name": "Kotamubagu/Mopait Airport", + "latitude_deg": "0.6835", + "longitude_deg": "124.2757", + "elevation_ft": "606", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SA", + "municipality": "Kotamubagu-Celebes Island", + "scheduled_service": "no", + "gps_code": "WAMB" + }, + { + "id": "41439", + "ident": "WAMC", + "type": "closed", + "name": "Tentena Airport", + "latitude_deg": "-2", + "longitude_deg": "120.76667", + "elevation_ft": "1900", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-ST", + "municipality": "Tentena", + "scheduled_service": "no", + "gps_code": "WAMC" + }, + { + "id": "32631", + "ident": "WAMD", + "type": "small_airport", + "name": "Jailolo/Kuripasai Airport", + "latitude_deg": "1.1169999837875366", + "longitude_deg": "127.48300170898438", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MU", + "municipality": "Kuripasai-Celebes Island", + "scheduled_service": "no", + "gps_code": "WAMD" + }, + { + "id": "331796", + "ident": "WAME", + "type": "small_airport", + "name": "Buli Airport", + "latitude_deg": "0.9194", + "longitude_deg": "128.3825", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MA", + "municipality": "Pekaulang", + "scheduled_service": "yes", + "gps_code": "WAEM", + "iata_code": "PGQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buli_Airport" + }, + { + "id": "26767", + "ident": "WAMG", + "type": "small_airport", + "name": "Jalaluddin Airport", + "latitude_deg": "0.63711899519", + "longitude_deg": "122.849998474", + "elevation_ft": "105", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-GO", + "municipality": "Gorontalo-Celebes Island", + "scheduled_service": "yes", + "gps_code": "WAMG", + "iata_code": "GTO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jalaluddin_Airport" + }, + { + "id": "26768", + "ident": "WAMH", + "type": "medium_airport", + "name": "Naha Airport", + "latitude_deg": "3.6832098960876465", + "longitude_deg": "125.52799987792969", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SA", + "municipality": "Tahuna-Sangihe Island", + "scheduled_service": "yes", + "gps_code": "WAMH", + "iata_code": "NAH" + }, + { + "id": "41440", + "ident": "WAMI", + "type": "small_airport", + "name": "Sultan Bantilan Airport", + "latitude_deg": "1.123428", + "longitude_deg": "120.793658", + "elevation_ft": "40", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-ST", + "municipality": "Toli Toli-Celebes Island", + "scheduled_service": "no", + "gps_code": "WAMI", + "iata_code": "TLI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sultan_Bantilan_Airport", + "keywords": "Toli Toli Airport, Lalos Airport" + }, + { + "id": "31523", + "ident": "WAMJ", + "type": "small_airport", + "name": "Gebe Airport", + "latitude_deg": "-0.07888899743556976", + "longitude_deg": "129.45799255371094", + "elevation_ft": "125", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MU", + "municipality": "Gebe Island", + "scheduled_service": "no", + "gps_code": "WAMJ", + "iata_code": "GEB" + }, + { + "id": "31720", + "ident": "WAMK", + "type": "small_airport", + "name": "Kao Airport", + "latitude_deg": "1.1852799654006958", + "longitude_deg": "127.89600372314453", + "elevation_ft": "27", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MU", + "municipality": "Kao-Celebes Island", + "scheduled_service": "no", + "gps_code": "WAMK", + "iata_code": "KAZ" + }, + { + "id": "26770", + "ident": "WAMM", + "type": "medium_airport", + "name": "Sam Ratulangi Airport", + "latitude_deg": "1.54926", + "longitude_deg": "124.926003", + "elevation_ft": "264", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SA", + "municipality": "Manado", + "scheduled_service": "yes", + "gps_code": "WAMM", + "iata_code": "MDC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sam_Ratulangi_Airport" + }, + { + "id": "31924", + "ident": "WAMN", + "type": "small_airport", + "name": "Melangguane Airport", + "latitude_deg": "4.00694", + "longitude_deg": "126.672997", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SA", + "municipality": "Karakelong Island", + "scheduled_service": "no", + "gps_code": "WAMN", + "iata_code": "MNA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Melangguane_Airport" + }, + { + "id": "430172", + "ident": "WAMO", + "type": "small_airport", + "name": "Siau/Sitaro Airport", + "latitude_deg": "2.648591", + "longitude_deg": "125.423301", + "elevation_ft": "155", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SA", + "municipality": "Balirangen", + "scheduled_service": "no", + "gps_code": "WAMO", + "iata_code": "BRG", + "wikipedia_link": "https://id.wikipedia.org/wiki/Bandar_Udara_Siau" + }, + { + "id": "26773", + "ident": "WAMT", + "type": "medium_airport", + "name": "Sultan Babullah Airport", + "latitude_deg": "0.831012", + "longitude_deg": "127.381611", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MU", + "municipality": "Sango", + "scheduled_service": "yes", + "gps_code": "WAEE", + "iata_code": "TTE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sultan_Babullah_Airport" + }, + { + "id": "41441", + "ident": "WAMU", + "type": "small_airport", + "name": "Wuasa Airport", + "latitude_deg": "-1.4249999523162842", + "longitude_deg": "120.31639099121094", + "elevation_ft": "1", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-ST", + "municipality": "Wuasa-Celebes Island", + "scheduled_service": "no", + "gps_code": "WAMU" + }, + { + "id": "41405", + "ident": "WAMY", + "type": "small_airport", + "name": "Buol Airport", + "latitude_deg": "1.1027", + "longitude_deg": "121.4141", + "elevation_ft": "27", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-ST", + "municipality": "Buol-Celebes Island", + "scheduled_service": "yes", + "gps_code": "WAMY", + "iata_code": "UOL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buol_Airport", + "keywords": "Pogogul Airport, Pangtiku Airport" + }, + { + "id": "316465", + "ident": "WAN", + "type": "small_airport", + "name": "Waverney Airport", + "latitude_deg": "-25.3563", + "longitude_deg": "141.9254", + "elevation_ft": "570", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Waverney", + "scheduled_service": "no", + "iata_code": "WAN" + }, + { + "id": "26775", + "ident": "WAOC", + "type": "small_airport", + "name": "Batu Licin Airport", + "latitude_deg": "-3.41241", + "longitude_deg": "115.995003", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KS", + "municipality": "Batu Licin", + "scheduled_service": "no", + "gps_code": "WAOC", + "iata_code": "BTW", + "wikipedia_link": "http://id.wikipedia.org/wiki/Bandar_Udara_Bersujud", + "keywords": "WRBC" + }, + { + "id": "26776", + "ident": "WAOH", + "type": "small_airport", + "name": "Mekar Putih Airport", + "latitude_deg": "-3.98991", + "longitude_deg": "116.101997", + "elevation_ft": "197", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KS", + "municipality": "Mekar Putih", + "scheduled_service": "no", + "gps_code": "WAOH" + }, + { + "id": "26777", + "ident": "WAOI", + "type": "small_airport", + "name": "Iskandar Airport", + "latitude_deg": "-2.7052", + "longitude_deg": "111.672997", + "elevation_ft": "75", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KT", + "municipality": "Pangkalanbun", + "scheduled_service": "yes", + "gps_code": "WAGI", + "iata_code": "PKN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Iskandar_Airport", + "keywords": "WRBI" + }, + { + "id": "31730", + "ident": "WAOK", + "type": "small_airport", + "name": "Gusti Syamsir Alam Airport", + "latitude_deg": "-3.29472", + "longitude_deg": "116.165001", + "elevation_ft": "4", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KS", + "municipality": "Stagen", + "scheduled_service": "yes", + "gps_code": "WAOK", + "iata_code": "KBU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gusti_Syamsir_Alam_Airport", + "keywords": "WRBK, Stagen Airport" + }, + { + "id": "41473", + "ident": "WAOM", + "type": "closed", + "name": "Beringin Airport", + "latitude_deg": "-0.942549", + "longitude_deg": "114.89399", + "elevation_ft": "126", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KT", + "municipality": "Murateweh", + "scheduled_service": "yes", + "gps_code": "WAOM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beringin_Airport", + "keywords": "WRBM" + }, + { + "id": "26778", + "ident": "WAON", + "type": "medium_airport", + "name": "Warukin Airport", + "latitude_deg": "-2.21656", + "longitude_deg": "115.435997", + "elevation_ft": "197", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KS", + "municipality": "Tanta-Tabalong", + "scheduled_service": "yes", + "gps_code": "WAON", + "iata_code": "TJG", + "wikipedia_link": "http://id.wikipedia.org/wiki/Bandar_Udara_Warukin", + "keywords": "WRBN" + }, + { + "id": "26779", + "ident": "WAOO", + "type": "small_airport", + "name": "Syamsudin Noor International Airport", + "latitude_deg": "-3.44236", + "longitude_deg": "114.763", + "elevation_ft": "66", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KS", + "municipality": "Landasan Ulin", + "scheduled_service": "yes", + "gps_code": "WAOO", + "iata_code": "BDJ", + "home_link": "https://syamsudinnoor-airport.co.id/id", + "wikipedia_link": "https://en.wikipedia.org/wiki/Syamsudin_Noor_Airport", + "keywords": "WRBB, Banjarmasin, Banjarbaru" + }, + { + "id": "26781", + "ident": "WAOS", + "type": "small_airport", + "name": "Sampit (Hasan) Airport", + "latitude_deg": "-2.499198", + "longitude_deg": "112.974987", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KT", + "municipality": "Sampit", + "scheduled_service": "yes", + "gps_code": "WAGS", + "iata_code": "SMQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/H._Asan_Airport", + "keywords": "WRBS,WAOS" + }, + { + "id": "310539", + "ident": "WAOT", + "type": "small_airport", + "name": "Teluk Kepayang Airport", + "latitude_deg": "-3.4203", + "longitude_deg": "115.6867", + "elevation_ft": "103", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KS", + "municipality": "Teluk Kepayang", + "scheduled_service": "no", + "gps_code": "WAOT", + "keywords": "WRBT, Valgoson" + }, + { + "id": "42267", + "ident": "WAOU", + "type": "small_airport", + "name": "SANGGU Airport, Buntok", + "latitude_deg": "-1.6692999601364136", + "longitude_deg": "114.89800262451172", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KT", + "municipality": "Buntok", + "scheduled_service": "no", + "gps_code": "WAOU" + }, + { + "id": "30623", + "ident": "WAPA", + "type": "small_airport", + "name": "Amahai Airport", + "latitude_deg": "-3.347851", + "longitude_deg": "128.927093", + "elevation_ft": "29", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MA", + "municipality": "Amahai", + "scheduled_service": "no", + "gps_code": "WAPA", + "iata_code": "AHI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amahai_Airport" + }, + { + "id": "32632", + "ident": "WAPB", + "type": "small_airport", + "name": "Bula Airport", + "latitude_deg": "-3.10996", + "longitude_deg": "130.509995", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MA", + "municipality": "Bula", + "scheduled_service": "no", + "gps_code": "WAPB" + }, + { + "id": "41389", + "ident": "WAPC", + "type": "small_airport", + "name": "Bandanaira Airport", + "latitude_deg": "-4.5214", + "longitude_deg": "129.9054", + "elevation_ft": "100", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MA", + "municipality": "Bandanaira", + "scheduled_service": "yes", + "gps_code": "WAPC", + "iata_code": "NDA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bandanaira_Airport", + "keywords": "Banda-Naira" + }, + { + "id": "30934", + "ident": "WAPD", + "type": "small_airport", + "name": "Rar Gwamar Airport", + "latitude_deg": "-5.7722201347399995", + "longitude_deg": "134.212005615", + "elevation_ft": "61", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MA", + "municipality": "Dobo-Warmar Island", + "scheduled_service": "no", + "gps_code": "WAPD", + "iata_code": "DOB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dobo_Airport" + }, + { + "id": "41443", + "ident": "WAPE", + "type": "small_airport", + "name": "Mangole Airport, Falabisahaya", + "latitude_deg": "-1.782255", + "longitude_deg": "125.482246", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MU", + "municipality": "Mangole Island", + "scheduled_service": "no", + "gps_code": "WAEO", + "iata_code": "MAL", + "keywords": "WAPE" + }, + { + "id": "333039", + "ident": "WAPF", + "type": "medium_airport", + "name": "Karel Sadsuitubun Airport", + "latitude_deg": "-5.760278", + "longitude_deg": "132.759444", + "elevation_ft": "78", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MA", + "municipality": "Langgur", + "scheduled_service": "yes", + "gps_code": "WAPF", + "iata_code": "LUV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Karel_Sadsuitubun_Airport", + "keywords": "Tual Baru" + }, + { + "id": "41390", + "ident": "WAPG", + "type": "small_airport", + "name": "Namrole Airport", + "latitude_deg": "-3.85522", + "longitude_deg": "126.700902", + "elevation_ft": "31", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MA", + "municipality": "Namrole", + "scheduled_service": "no", + "gps_code": "WAPG", + "iata_code": "NRE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Namrole_Airport" + }, + { + "id": "41444", + "ident": "WAPH", + "type": "small_airport", + "name": "Oesman Sadik Airport", + "latitude_deg": "-0.635259", + "longitude_deg": "127.501999", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MU", + "municipality": "Labuha-Halmahera Island", + "scheduled_service": "no", + "gps_code": "WAEL", + "iata_code": "LAH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oesman_Sadik_Airport" + }, + { + "id": "32407", + "ident": "WAPI", + "type": "small_airport", + "name": "Saumlaki/Olilit Airport", + "latitude_deg": "-7.98861", + "longitude_deg": "131.306", + "elevation_ft": "218", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MA", + "municipality": "Saumlaki-Yamdena Island", + "scheduled_service": "no", + "gps_code": "WAPI", + "wikipedia_link": "http://id.wikipedia.org/wiki/Bandar_Udara_Olilit", + "keywords": "SXK" + }, + { + "id": "26782", + "ident": "WAPK", + "type": "small_airport", + "name": "Nangasuri Airport", + "latitude_deg": "-6.06613", + "longitude_deg": "134.273971", + "elevation_ft": "82", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MA", + "municipality": "Maikoor Island", + "scheduled_service": "no", + "gps_code": "WAPK", + "iata_code": "BJK" + }, + { + "id": "26783", + "ident": "WAPL", + "type": "small_airport", + "name": "Dumatubin Airport", + "latitude_deg": "-5.66162", + "longitude_deg": "132.731003", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MA", + "municipality": "Langgur", + "scheduled_service": "no", + "gps_code": "WAPL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dumatubin_Airport", + "keywords": "LUV" + }, + { + "id": "41445", + "ident": "WAPN", + "type": "small_airport", + "name": "Emalamo Sanana Airport", + "latitude_deg": "-2.100485", + "longitude_deg": "125.965548", + "elevation_ft": "39", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MU", + "municipality": "Sanana", + "scheduled_service": "no", + "gps_code": "WAPN", + "iata_code": "SQN" + }, + { + "id": "42252", + "ident": "WAPO", + "type": "small_airport", + "name": "Larat Airport", + "latitude_deg": "-7.1282", + "longitude_deg": "131.7673", + "elevation_ft": "108", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MA", + "municipality": "Kepulauan Larat", + "scheduled_service": "no", + "gps_code": "WAPO" + }, + { + "id": "26784", + "ident": "WAPP", + "type": "medium_airport", + "name": "Pattimura International Airport", + "latitude_deg": "-3.71026", + "longitude_deg": "128.089005", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MA", + "municipality": "Ambon", + "scheduled_service": "yes", + "gps_code": "WAPP", + "iata_code": "AMQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pattimura_Airport" + }, + { + "id": "41447", + "ident": "WAPR", + "type": "small_airport", + "name": "Namlea Airport", + "latitude_deg": "-3.237118", + "longitude_deg": "127.100294", + "elevation_ft": "41", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MA", + "municipality": "Namlea", + "scheduled_service": "no", + "gps_code": "WAPR", + "iata_code": "NAM" + }, + { + "id": "32424", + "ident": "WAPT", + "type": "small_airport", + "name": "Taliabu Island Airport", + "latitude_deg": "-1.6426299810409546", + "longitude_deg": "124.55899810791016", + "elevation_ft": "9", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MU", + "municipality": "Tikong-Taliabu Island", + "scheduled_service": "no", + "gps_code": "WAPT", + "iata_code": "TAX" + }, + { + "id": "42251", + "ident": "WAPV", + "type": "small_airport", + "name": "Wahai Airport", + "latitude_deg": "-2.8114", + "longitude_deg": "129.484", + "elevation_ft": "558", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MA", + "municipality": "Wahai", + "scheduled_service": "no", + "gps_code": "WAPV", + "iata_code": "WBA", + "keywords": "WT56" + }, + { + "id": "41486", + "ident": "WAQM", + "type": "small_airport", + "name": "Malinau Airport", + "latitude_deg": "3.57514", + "longitude_deg": "116.61967", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KU", + "municipality": "Malinau-Borneo Island", + "scheduled_service": "no", + "gps_code": "WAQM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Robert_Atty_Bessing_Airport", + "keywords": "WRLM, WALM" + }, + { + "id": "26785", + "ident": "WARA", + "type": "small_airport", + "name": "Abdul Rachman Saleh Airport", + "latitude_deg": "-7.929099", + "longitude_deg": "112.714233", + "elevation_ft": "1726", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Malang", + "scheduled_service": "yes", + "gps_code": "WARA", + "iata_code": "MLG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Abdul_Rachman_Saleh_Airport", + "keywords": "WIAS, Malang, Singosari" + }, + { + "id": "30846", + "ident": "WARC", + "type": "small_airport", + "name": "Ngloram Airport", + "latitude_deg": "-7.19484166667", + "longitude_deg": "111.548166667", + "elevation_ft": "131", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JT", + "municipality": "Tjepu-Java Island", + "scheduled_service": "no", + "gps_code": "WARC", + "iata_code": "CPF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ngloram_Airport", + "keywords": "Cepu, WRSC" + }, + { + "id": "26786", + "ident": "WARI", + "type": "small_airport", + "name": "Iswahyudi Airport", + "latitude_deg": "-7.615769863128662", + "longitude_deg": "111.43399810791016", + "elevation_ft": "361", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Madiun-Java Island", + "scheduled_service": "no", + "gps_code": "WARI", + "keywords": "WIAR" + }, + { + "id": "26787", + "ident": "WARJ", + "type": "medium_airport", + "name": "Adisutjipto International Airport", + "latitude_deg": "-7.78818", + "longitude_deg": "110.431999", + "elevation_ft": "379", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-YO", + "municipality": "Yogyakarta", + "scheduled_service": "yes", + "gps_code": "WAHH", + "iata_code": "JOG", + "home_link": "http://adisutjipto-airport.co.id/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Adisutjipto_International_Airport", + "keywords": "WIIJ, WARJ, Adisucupto" + }, + { + "id": "26788", + "ident": "WARQ", + "type": "small_airport", + "name": "Adisumarmo International Airport", + "latitude_deg": "-7.516044", + "longitude_deg": "110.757492", + "elevation_ft": "421", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JT", + "municipality": "Surakarta", + "scheduled_service": "yes", + "gps_code": "WAHQ", + "iata_code": "SOC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Adisumarmo_International_Airport", + "keywords": "WRSQ, WARQ" + }, + { + "id": "26789", + "ident": "WARR", + "type": "large_airport", + "name": "Juanda International Airport", + "latitude_deg": "-7.37983", + "longitude_deg": "112.787003", + "elevation_ft": "9", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Surabaya", + "scheduled_service": "yes", + "gps_code": "WARR", + "iata_code": "SUB", + "home_link": "http://www.juanda-airport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Juanda_International_Airport", + "keywords": "WRSJ" + }, + { + "id": "26790", + "ident": "WARS", + "type": "medium_airport", + "name": "Achmad Yani Airport", + "latitude_deg": "-6.970732", + "longitude_deg": "110.373244", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JT", + "municipality": "Semarang", + "scheduled_service": "yes", + "gps_code": "WAHS", + "iata_code": "SRG", + "home_link": "https://www.ahmadyani-airport.com/id", + "wikipedia_link": "https://en.wikipedia.org/wiki/Achmad_Yani_Airport", + "keywords": "WIIS, WARS" + }, + { + "id": "32389", + "ident": "WART", + "type": "small_airport", + "name": "Trunojoyo Airport", + "latitude_deg": "-7.0242", + "longitude_deg": "113.89023", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Sumenep-Madura Island", + "scheduled_service": "no", + "gps_code": "WART", + "iata_code": "SUP", + "local_code": "TRJ", + "keywords": "WRST" + }, + { + "id": "41448", + "ident": "WASB", + "type": "small_airport", + "name": "Stenkol Airport", + "latitude_deg": "-2.1033", + "longitude_deg": "133.5164", + "elevation_ft": "57", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Bintuni", + "scheduled_service": "no", + "gps_code": "WASB", + "iata_code": "NTI", + "keywords": "ZKL, Steenkool" + }, + { + "id": "41449", + "ident": "WASC", + "type": "small_airport", + "name": "Abresso Airport", + "latitude_deg": "-1.496771", + "longitude_deg": "134.175", + "elevation_ft": "52", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Ransiki-Papua Island", + "scheduled_service": "no", + "gps_code": "WASC", + "iata_code": "RSK" + }, + { + "id": "41450", + "ident": "WASE", + "type": "small_airport", + "name": "Kebar Airport", + "latitude_deg": "-0.810418", + "longitude_deg": "133.054937", + "elevation_ft": "2050", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Kebar", + "scheduled_service": "no", + "gps_code": "WASE", + "iata_code": "KEQ" + }, + { + "id": "26791", + "ident": "WASF", + "type": "medium_airport", + "name": "Fakfak Airport", + "latitude_deg": "-2.920508", + "longitude_deg": "132.267011", + "elevation_ft": "462", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Fakfak", + "scheduled_service": "yes", + "gps_code": "WASF", + "iata_code": "FKQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fakfak_Airport" + }, + { + "id": "41451", + "ident": "WASI", + "type": "small_airport", + "name": "Inanwatan Airport", + "latitude_deg": "-2.127447", + "longitude_deg": "132.160056", + "elevation_ft": "9", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Inanwatan", + "scheduled_service": "no", + "gps_code": "WASI", + "iata_code": "INX" + }, + { + "id": "26792", + "ident": "WASK", + "type": "medium_airport", + "name": "Kaimana Airport", + "latitude_deg": "-3.6446", + "longitude_deg": "133.695116", + "elevation_ft": "19", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Kaimana", + "scheduled_service": "yes", + "gps_code": "WASK", + "iata_code": "KNG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kaimana_Airport" + }, + { + "id": "41452", + "ident": "WASM", + "type": "small_airport", + "name": "Merdei Airport", + "latitude_deg": "-1.591154", + "longitude_deg": "133.295867", + "elevation_ft": "425", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Merdei-Papua Island", + "scheduled_service": "no", + "gps_code": "WASM", + "iata_code": "RDE" + }, + { + "id": "333091", + "ident": "WASN", + "type": "small_airport", + "name": "Marinda Airport", + "latitude_deg": "-0.423056", + "longitude_deg": "130.773333", + "elevation_ft": "9", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Waisai", + "scheduled_service": "yes", + "gps_code": "WASN", + "iata_code": "RJM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marinda_Airport" + }, + { + "id": "26793", + "ident": "WASO", + "type": "medium_airport", + "name": "Babo Airport", + "latitude_deg": "-2.53224", + "longitude_deg": "133.438995", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Babo", + "scheduled_service": "no", + "gps_code": "WASO", + "iata_code": "BXB" + }, + { + "id": "26794", + "ident": "WASR", + "type": "medium_airport", + "name": "Rendani Airport", + "latitude_deg": "-0.891833", + "longitude_deg": "134.048996", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Manokwari", + "scheduled_service": "yes", + "gps_code": "WAUU", + "iata_code": "MKW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rendani_Airport" + }, + { + "id": "26795", + "ident": "WASS", + "type": "closed", + "name": "Jefman Airport", + "latitude_deg": "-0.926358", + "longitude_deg": "131.121002", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Jefman", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jefman_Airport", + "keywords": "SOQ, WASS, Sorong" + }, + { + "id": "32488", + "ident": "WAST", + "type": "small_airport", + "name": "Teminabuan Airport", + "latitude_deg": "-1.44545", + "longitude_deg": "132.021139", + "elevation_ft": "141", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Atinjoe", + "scheduled_service": "no", + "gps_code": "WAST", + "iata_code": "TXM" + }, + { + "id": "41453", + "ident": "WASW", + "type": "small_airport", + "name": "Wasior Airport", + "latitude_deg": "-2.721", + "longitude_deg": "134.5061", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Wasior-Papua Island", + "scheduled_service": "no", + "gps_code": "WASW", + "iata_code": "WSR" + }, + { + "id": "42249", + "ident": "WATB", + "type": "small_airport", + "name": "Bajawa Soa Airport", + "latitude_deg": "-8.70743498008", + "longitude_deg": "121.057426929", + "elevation_ft": "4326", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NT", + "municipality": "Bajawa", + "scheduled_service": "no", + "gps_code": "WATB", + "iata_code": "BJW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bajawa_Soa_Airport" + }, + { + "id": "26796", + "ident": "WATC", + "type": "small_airport", + "name": "Maumere(Wai Oti) Airport", + "latitude_deg": "-8.64064979553", + "longitude_deg": "122.236999512", + "elevation_ft": "115", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NT", + "municipality": "Maumere-Flores Island", + "scheduled_service": "yes", + "gps_code": "WATC", + "iata_code": "MOF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wai_Oti_Airport", + "keywords": "WRKC" + }, + { + "id": "26797", + "ident": "WATE", + "type": "small_airport", + "name": "Ende (H Hasan Aroeboesman) Airport", + "latitude_deg": "-8.8492898941", + "longitude_deg": "121.661003113", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NT", + "municipality": "Ende-Flores Island", + "scheduled_service": "yes", + "gps_code": "WATE", + "iata_code": "ENE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ende_Airport", + "keywords": "WRKE" + }, + { + "id": "26798", + "ident": "WATG", + "type": "small_airport", + "name": "Frans Sales Lega Airport", + "latitude_deg": "-8.5970096588135", + "longitude_deg": "120.47699737549", + "elevation_ft": "3510", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NT", + "municipality": "Satar Tacik-Flores Island", + "scheduled_service": "yes", + "gps_code": "WATG", + "iata_code": "RTG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Frans_Sales_Lega_Airport", + "keywords": "WRKG, Satar Tacik Airport" + }, + { + "id": "26799", + "ident": "WATM", + "type": "small_airport", + "name": "Mali Airport", + "latitude_deg": "-8.132340431213379", + "longitude_deg": "124.59700012207031", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NT", + "municipality": "Alor Island", + "scheduled_service": "yes", + "gps_code": "WATM", + "iata_code": "ARD" + }, + { + "id": "26800", + "ident": "WATO", + "type": "small_airport", + "name": "Komodo Airport", + "latitude_deg": "-8.480694", + "longitude_deg": "119.888306", + "elevation_ft": "66", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NT", + "municipality": "Labuan Bajo", + "scheduled_service": "yes", + "gps_code": "WATO", + "iata_code": "LBJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Komodo_Airport", + "keywords": "Mutiara II Airport, WRKO" + }, + { + "id": "41446", + "ident": "WATQ", + "type": "small_airport", + "name": "Kisar Airport", + "latitude_deg": "-8.016351", + "longitude_deg": "127.200179", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NT", + "municipality": "Kisar-Kisar Island", + "scheduled_service": "no", + "gps_code": "WATQ", + "keywords": "WAPQ" + }, + { + "id": "41482", + "ident": "WATS", + "type": "small_airport", + "name": "Sabu-Tardanu Airport", + "latitude_deg": "-10.4924", + "longitude_deg": "121.8482", + "elevation_ft": "71", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NT", + "municipality": "Sabu-Sawu Island", + "scheduled_service": "no", + "gps_code": "WATS", + "iata_code": "SAU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tardamu_Airport", + "keywords": "WRKS, Tardamu, Sawu" + }, + { + "id": "26801", + "ident": "WATT", + "type": "small_airport", + "name": "El Tari Airport", + "latitude_deg": "-10.1716", + "longitude_deg": "123.670998", + "elevation_ft": "335", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NT", + "municipality": "Kupang", + "scheduled_service": "yes", + "gps_code": "WATT", + "iata_code": "KOE", + "wikipedia_link": "https://en.wikipedia.org/wiki/El_Tari_Airport", + "keywords": "WRKK" + }, + { + "id": "26756", + "ident": "WAVV", + "type": "medium_airport", + "name": "Wamena Airport", + "latitude_deg": "-4.097324", + "longitude_deg": "138.952417", + "elevation_ft": "5435", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PP", + "municipality": "Wamena", + "scheduled_service": "yes", + "gps_code": "WAVV", + "iata_code": "WMX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wamena_Airport", + "keywords": "WAJW" + }, + { + "id": "26802", + "ident": "WAWB", + "type": "small_airport", + "name": "Betoambari Airport", + "latitude_deg": "-5.48688", + "longitude_deg": "122.569", + "elevation_ft": "164", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SG", + "municipality": "Bau Bau", + "scheduled_service": "no", + "gps_code": "WAWB", + "iata_code": "BUW", + "keywords": "WAAB" + }, + { + "id": "333072", + "ident": "WAWD", + "type": "medium_airport", + "name": "Matahora Airport", + "latitude_deg": "-5.293996", + "longitude_deg": "123.634", + "elevation_ft": "88", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SG", + "municipality": "Wangi-wangi Island", + "scheduled_service": "yes", + "gps_code": "WAWD", + "iata_code": "WNI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Matahora_Airport" + }, + { + "id": "311020", + "ident": "WAWH", + "type": "small_airport", + "name": "Selayar - Haji Aroeppala Airport", + "latitude_deg": "-6.17921", + "longitude_deg": "120.437479", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SN", + "municipality": "Benteng", + "scheduled_service": "yes", + "gps_code": "WAWH", + "iata_code": "KSR", + "wikipedia_link": "https://en.wikipedia.org/wiki/H._Aroeppala_Airport", + "keywords": "Haji Aroeppala, Lagaligo Airport" + }, + { + "id": "26804", + "ident": "WAWS", + "type": "small_airport", + "name": "Soroako Airport", + "latitude_deg": "-2.530582", + "longitude_deg": "121.356096", + "elevation_ft": "1388", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SN", + "municipality": "Soroako", + "scheduled_service": "no", + "gps_code": "WAWS", + "iata_code": "SQR", + "keywords": "WAAS" + }, + { + "id": "26805", + "ident": "WAWT", + "type": "small_airport", + "name": "Pongtiku Airport", + "latitude_deg": "-3.04474", + "longitude_deg": "119.821999", + "elevation_ft": "2884", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SN", + "municipality": "Makale", + "scheduled_service": "no", + "gps_code": "WAWT", + "iata_code": "TTR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pongtiku_Airport", + "keywords": "WAAT, Tana Toraja" + }, + { + "id": "26806", + "ident": "WAWW", + "type": "small_airport", + "name": "Haluoleo Airport", + "latitude_deg": "-4.08161", + "longitude_deg": "122.417999", + "elevation_ft": "538", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SG", + "municipality": "Kendari", + "scheduled_service": "yes", + "gps_code": "WAWW", + "iata_code": "KDI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kendari_Airport", + "keywords": "WAAU, Wolter Monginsidi Airport" + }, + { + "id": "32634", + "ident": "WAXX", + "type": "medium_airport", + "name": "Domine Eduard Osok Airport", + "latitude_deg": "-0.894", + "longitude_deg": "131.287", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PB", + "municipality": "Sorong", + "scheduled_service": "yes", + "gps_code": "WASS", + "iata_code": "SOQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Domine_Eduard_Osok_Airport", + "keywords": "WAXX" + }, + { + "id": "32635", + "ident": "WBAK", + "type": "small_airport", + "name": "Anduki Airport", + "latitude_deg": "4.635158", + "longitude_deg": "114.378748", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "BN", + "iso_region": "BN-BE", + "municipality": "Seria", + "scheduled_service": "yes", + "gps_code": "WBAK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anduki_Airfield", + "keywords": "Anduke, Kuala Belait" + }, + { + "id": "25692", + "ident": "WBB", + "type": "small_airport", + "name": "Stebbins Airport", + "latitude_deg": "63.5159988403", + "longitude_deg": "-162.277999878", + "elevation_ft": "14", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Stebbins", + "scheduled_service": "no", + "gps_code": "WBB", + "iata_code": "WBB", + "local_code": "WBB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stebbins_Airport" + }, + { + "id": "309969", + "ident": "WBC", + "type": "small_airport", + "name": "Wapolu Airport", + "latitude_deg": "-9.3376", + "longitude_deg": "150.5093", + "elevation_ft": "45", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Wapolu", + "scheduled_service": "no", + "gps_code": "AYWJ", + "iata_code": "WBC", + "local_code": "WPL" + }, + { + "id": "32637", + "ident": "WBGA", + "type": "small_airport", + "name": "Long Atip Airport", + "latitude_deg": "3.816999912261963", + "longitude_deg": "114.69999694824219", + "elevation_ft": "300", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Long Atip", + "scheduled_service": "no", + "gps_code": "WBGA" + }, + { + "id": "26807", + "ident": "WBGB", + "type": "medium_airport", + "name": "Bintulu Airport", + "latitude_deg": "3.12385010719", + "longitude_deg": "113.019996643", + "elevation_ft": "74", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Bintulu", + "scheduled_service": "yes", + "gps_code": "WBGB", + "iata_code": "BTU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bintulu_Airport" + }, + { + "id": "30770", + "ident": "WBGC", + "type": "small_airport", + "name": "Belaga Airport", + "latitude_deg": "2.65000009537", + "longitude_deg": "113.766998291", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Belaga", + "scheduled_service": "yes", + "gps_code": "WBGC", + "iata_code": "BLG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Belaga_Airport" + }, + { + "id": "31851", + "ident": "WBGD", + "type": "small_airport", + "name": "Long Semado Airport", + "latitude_deg": "4.21700000763", + "longitude_deg": "115.599998474", + "elevation_ft": "2150", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Long Semado", + "scheduled_service": "no", + "gps_code": "WBGD", + "iata_code": "LSM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Long_Semado_Airport" + }, + { + "id": "32638", + "ident": "WBGE", + "type": "small_airport", + "name": "Long Geng Airport", + "latitude_deg": "2.617000102996826", + "longitude_deg": "114.13300323486328", + "elevation_ft": "350", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Long Geng", + "scheduled_service": "no", + "gps_code": "WBGE" + }, + { + "id": "31816", + "ident": "WBGF", + "type": "small_airport", + "name": "Long Lellang Airport", + "latitude_deg": "3.4210000038099997", + "longitude_deg": "115.153999329", + "elevation_ft": "1400", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Long Datih", + "scheduled_service": "yes", + "gps_code": "WBGF", + "iata_code": "LGL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Long_Lellang_Airport" + }, + { + "id": "26808", + "ident": "WBGG", + "type": "medium_airport", + "name": "Kuching International Airport", + "latitude_deg": "1.487364", + "longitude_deg": "110.352859", + "elevation_ft": "89", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Kuching", + "scheduled_service": "yes", + "gps_code": "WBGG", + "iata_code": "KCH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kuching_International_Airport" + }, + { + "id": "32086", + "ident": "WBGI", + "type": "small_airport", + "name": "Long Seridan Airport", + "latitude_deg": "3.9670000076293945", + "longitude_deg": "115.05000305175781", + "elevation_ft": "607", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Long Seridan", + "scheduled_service": "yes", + "gps_code": "WBGI", + "iata_code": "ODN" + }, + { + "id": "26809", + "ident": "WBGJ", + "type": "medium_airport", + "name": "Limbang Airport", + "latitude_deg": "4.808300018310547", + "longitude_deg": "115.01000213623047", + "elevation_ft": "14", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Limbang", + "scheduled_service": "yes", + "gps_code": "WBGJ", + "iata_code": "LMN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Limbang_Airport" + }, + { + "id": "350992", + "ident": "WBGK", + "type": "medium_airport", + "name": "Mukah Airport", + "latitude_deg": "2.881944", + "longitude_deg": "112.043333", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Mukah", + "scheduled_service": "yes", + "gps_code": "WBGK", + "iata_code": "MKM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mukah_Airport" + }, + { + "id": "32639", + "ident": "WBGL", + "type": "small_airport", + "name": "Long Akah Airport", + "latitude_deg": "3.299999952316284", + "longitude_deg": "114.78299713134766", + "elevation_ft": "289", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Long Akah", + "scheduled_service": "no", + "gps_code": "WBGL", + "iata_code": "LKH" + }, + { + "id": "26810", + "ident": "WBGM", + "type": "medium_airport", + "name": "Marudi Airport", + "latitude_deg": "4.178979873657227", + "longitude_deg": "114.3290023803711", + "elevation_ft": "103", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Marudi", + "scheduled_service": "yes", + "gps_code": "WBGM", + "iata_code": "MUR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Marudi_Airport" + }, + { + "id": "30793", + "ident": "WBGN", + "type": "small_airport", + "name": "Sematan Airport", + "latitude_deg": "1.812678", + "longitude_deg": "109.765391", + "elevation_ft": "22", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Sematan", + "scheduled_service": "no", + "gps_code": "WBGN", + "iata_code": "BSE" + }, + { + "id": "32640", + "ident": "WBGO", + "type": "small_airport", + "name": "Lio Matu Airport", + "latitude_deg": "3.197567", + "longitude_deg": "115.308802", + "elevation_ft": "700", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Lio Matu", + "scheduled_service": "no", + "gps_code": "WBGO" + }, + { + "id": "31770", + "ident": "WBGP", + "type": "small_airport", + "name": "Kapit Airport", + "latitude_deg": "2.01052374505", + "longitude_deg": "112.931468248", + "elevation_ft": "65", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Kapit", + "scheduled_service": "no", + "gps_code": "WBGP", + "iata_code": "KPI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kapit_Airport" + }, + { + "id": "30764", + "ident": "WBGQ", + "type": "small_airport", + "name": "Bakalalan Airport", + "latitude_deg": "3.9739999771118164", + "longitude_deg": "115.61799621582031", + "elevation_ft": "2900", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Bakalalan", + "scheduled_service": "yes", + "gps_code": "WBGQ", + "iata_code": "BKM" + }, + { + "id": "26811", + "ident": "WBGR", + "type": "medium_airport", + "name": "Miri Airport", + "latitude_deg": "4.322010040283203", + "longitude_deg": "113.98699951171875", + "elevation_ft": "59", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Miri", + "scheduled_service": "yes", + "gps_code": "WBGR", + "iata_code": "MYY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miri_Airport" + }, + { + "id": "26812", + "ident": "WBGS", + "type": "medium_airport", + "name": "Sibu Airport", + "latitude_deg": "2.2616", + "longitude_deg": "111.985001", + "elevation_ft": "122", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Sibu", + "scheduled_service": "yes", + "gps_code": "WBGS", + "iata_code": "SBW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sibu_Airport" + }, + { + "id": "26820", + "ident": "WBGT", + "type": "small_airport", + "name": "Tanjung Manis Airport", + "latitude_deg": "2.17784", + "longitude_deg": "111.202003", + "elevation_ft": "15", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Belawai", + "scheduled_service": "no", + "gps_code": "WBGT", + "iata_code": "TGC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tanjung_Manis_Airport" + }, + { + "id": "31854", + "ident": "WBGU", + "type": "small_airport", + "name": "Long Sukang Airport", + "latitude_deg": "4.552219867706299", + "longitude_deg": "115.49400329589844", + "elevation_ft": "1200", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Long Sukang", + "scheduled_service": "no", + "gps_code": "WBGU", + "iata_code": "LSU" + }, + { + "id": "31866", + "ident": "WBGW", + "type": "small_airport", + "name": "Lawas Airport", + "latitude_deg": "4.84917", + "longitude_deg": "115.407997", + "elevation_ft": "5", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Lawas", + "scheduled_service": "yes", + "gps_code": "WBGW", + "iata_code": "LWY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lawas_Airport" + }, + { + "id": "32289", + "ident": "WBGY", + "type": "closed", + "name": "Simanggang Airport", + "latitude_deg": "1.2219", + "longitude_deg": "111.4636", + "elevation_ft": "47", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Sri Aman", + "scheduled_service": "no", + "gps_code": "WBGY", + "iata_code": "SGG", + "keywords": "Sri Aman" + }, + { + "id": "30682", + "ident": "WBGZ", + "type": "medium_airport", + "name": "Bario Airport", + "latitude_deg": "3.734648", + "longitude_deg": "115.478548", + "elevation_ft": "3350", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Bario", + "scheduled_service": "yes", + "gps_code": "WBGZ", + "iata_code": "BBN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bario_Airport" + }, + { + "id": "32330", + "ident": "WBKA", + "type": "small_airport", + "name": "Semporna Airport", + "latitude_deg": "4.449999809265137", + "longitude_deg": "118.58300018310547", + "elevation_ft": "60", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Semporna", + "scheduled_service": "no", + "gps_code": "WBKA", + "iata_code": "SMM" + }, + { + "id": "32642", + "ident": "WBKB", + "type": "small_airport", + "name": "Kota Belud Airport", + "latitude_deg": "6.36515998840332", + "longitude_deg": "116.47100067138672", + "elevation_ft": "46", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Kota Belud", + "scheduled_service": "no", + "gps_code": "WBKB" + }, + { + "id": "26813", + "ident": "WBKD", + "type": "medium_airport", + "name": "Lahad Datu Airport", + "latitude_deg": "5.032249927520752", + "longitude_deg": "118.3239974975586", + "elevation_ft": "45", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Lahad Datu", + "scheduled_service": "yes", + "gps_code": "WBKD", + "iata_code": "LDU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lahad_Datu_Airport" + }, + { + "id": "32434", + "ident": "WBKE", + "type": "small_airport", + "name": "Telupid Airport", + "latitude_deg": "5.628610134124756", + "longitude_deg": "117.1259994506836", + "elevation_ft": "343", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Telupid", + "scheduled_service": "no", + "gps_code": "WBKE", + "iata_code": "TEL" + }, + { + "id": "31746", + "ident": "WBKG", + "type": "small_airport", + "name": "Keningau Airport", + "latitude_deg": "5.357490062713623", + "longitude_deg": "116.16200256347656", + "elevation_ft": "1036", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Keningau", + "scheduled_service": "no", + "gps_code": "WBKG", + "iata_code": "KGU" + }, + { + "id": "32408", + "ident": "WBKH", + "type": "small_airport", + "name": "Sahabat [Sahabat 16] Airport", + "latitude_deg": "5.087779998779297", + "longitude_deg": "119.09400177001953", + "elevation_ft": "40", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Sahabat", + "scheduled_service": "no", + "gps_code": "WBKH", + "iata_code": "SXS" + }, + { + "id": "26814", + "ident": "WBKK", + "type": "medium_airport", + "name": "Kota Kinabalu International Airport", + "latitude_deg": "5.9372100830078125", + "longitude_deg": "116.0510025024414", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Kota Kinabalu", + "scheduled_service": "yes", + "gps_code": "WBKK", + "iata_code": "BKI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kota_Kinabalu_International_Airport" + }, + { + "id": "26815", + "ident": "WBKL", + "type": "medium_airport", + "name": "Labuan Airport", + "latitude_deg": "5.300680160522461", + "longitude_deg": "115.25", + "elevation_ft": "101", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-15", + "municipality": "Labuan", + "scheduled_service": "yes", + "gps_code": "WBKL", + "iata_code": "LBU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Labuan_Airport" + }, + { + "id": "32462", + "ident": "WBKM", + "type": "small_airport", + "name": "Tomanggong Airport", + "latitude_deg": "5.40257", + "longitude_deg": "118.65763", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Tomanggong", + "scheduled_service": "yes", + "gps_code": "WBKM", + "iata_code": "TMG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tommanggong_Airport" + }, + { + "id": "31550", + "ident": "WBKN", + "type": "small_airport", + "name": "Long Pasia Airport", + "latitude_deg": "4.400000095367432", + "longitude_deg": "115.71700286865234", + "elevation_ft": "3175", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Long Miau", + "scheduled_service": "no", + "gps_code": "WBKN", + "iata_code": "GSA" + }, + { + "id": "32352", + "ident": "WBKO", + "type": "small_airport", + "name": "Sepulot Airport", + "latitude_deg": "4.732999801635742", + "longitude_deg": "116.46700286865234", + "elevation_ft": "800", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Sepulot", + "scheduled_service": "no", + "gps_code": "WBKO", + "iata_code": "SPE" + }, + { + "id": "41321", + "ident": "WBKP", + "type": "small_airport", + "name": "Pamol Airport", + "latitude_deg": "5.996571", + "longitude_deg": "117.404795", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Pamol", + "scheduled_service": "no", + "gps_code": "WBKP", + "iata_code": "PAY" + }, + { + "id": "32219", + "ident": "WBKR", + "type": "small_airport", + "name": "Ranau Airport", + "latitude_deg": "5.949999809265137", + "longitude_deg": "116.66699981689453", + "elevation_ft": "1800", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Ranau", + "scheduled_service": "no", + "gps_code": "WBKR", + "iata_code": "RNU" + }, + { + "id": "26816", + "ident": "WBKS", + "type": "medium_airport", + "name": "Sandakan Airport", + "latitude_deg": "5.900899887084961", + "longitude_deg": "118.05899810791016", + "elevation_ft": "46", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Sandakan", + "scheduled_service": "yes", + "gps_code": "WBKS", + "iata_code": "SDK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sandakan_Airport" + }, + { + "id": "31785", + "ident": "WBKT", + "type": "small_airport", + "name": "Kudat Airport", + "latitude_deg": "6.924111", + "longitude_deg": "116.837068", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Kudat", + "scheduled_service": "yes", + "gps_code": "WBKT", + "iata_code": "KUD" + }, + { + "id": "32643", + "ident": "WBKU", + "type": "small_airport", + "name": "Kuala Penyu Airport", + "latitude_deg": "5.599999904632568", + "longitude_deg": "115.58300018310547", + "elevation_ft": "6", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Kuala Penyu", + "scheduled_service": "no", + "gps_code": "WBKU" + }, + { + "id": "26817", + "ident": "WBKW", + "type": "medium_airport", + "name": "Tawau Airport", + "latitude_deg": "4.320159912109375", + "longitude_deg": "118.12799835205078", + "elevation_ft": "57", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-12", + "municipality": "Tawau", + "scheduled_service": "yes", + "gps_code": "WBKW", + "iata_code": "TWU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tawau_Airport" + }, + { + "id": "26818", + "ident": "WBMU", + "type": "medium_airport", + "name": "Mulu Airport", + "latitude_deg": "4.048329830169678", + "longitude_deg": "114.80500030517578", + "elevation_ft": "80", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Mulu", + "scheduled_service": "yes", + "gps_code": "WBMU", + "iata_code": "MZV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mulu_Airport" + }, + { + "id": "26819", + "ident": "WBSB", + "type": "large_airport", + "name": "Brunei International Airport", + "latitude_deg": "4.9442", + "longitude_deg": "114.928001", + "elevation_ft": "73", + "continent": "AS", + "iso_country": "BN", + "iso_region": "BN-BM", + "municipality": "Bandar Seri Begawan", + "scheduled_service": "yes", + "gps_code": "WBSB", + "iata_code": "BWN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brunei_International_Airport" + }, + { + "id": "334407", + "ident": "WDA", + "type": "small_airport", + "name": "Al Ain Airport Ain District, Shabwah Governorate, Yemen", + "latitude_deg": "14.859579", + "longitude_deg": "45.545705", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-SH", + "municipality": "Ain District", + "scheduled_service": "no", + "iata_code": "WDA", + "keywords": "VG5W" + }, + { + "id": "25695", + "ident": "WEA", + "type": "small_airport", + "name": "Parker County Airport", + "latitude_deg": "32.7462997437", + "longitude_deg": "-97.6824035645", + "elevation_ft": "990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no", + "gps_code": "KWEA", + "iata_code": "WEA", + "local_code": "WEA" + }, + { + "id": "316467", + "ident": "WED", + "type": "small_airport", + "name": "Wedau Airport", + "latitude_deg": "-10.0954", + "longitude_deg": "150.0826", + "elevation_ft": "90", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Wedau", + "scheduled_service": "no", + "iata_code": "WED", + "local_code": "WDU" + }, + { + "id": "322358", + "ident": "WEON", + "type": "small_airport", + "name": "Weona Airport", + "latitude_deg": "35.540391", + "longitude_deg": "-90.596498", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AR", + "municipality": "Weona", + "scheduled_service": "no" + }, + { + "id": "316477", + "ident": "WGU", + "type": "closed", + "name": "Wagau Airport", + "latitude_deg": "-6.8519", + "longitude_deg": "146.8022", + "elevation_ft": "3853", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Wagau", + "scheduled_service": "no", + "iata_code": "WGU" + }, + { + "id": "316478", + "ident": "WGY", + "type": "closed", + "name": "Wagny Airport", + "latitude_deg": "-0.6035", + "longitude_deg": "12.2608", + "elevation_ft": "1025", + "continent": "AF", + "iso_country": "GA", + "iso_region": "GA-7", + "municipality": "Wagny", + "scheduled_service": "no", + "iata_code": "WGY" + }, + { + "id": "319529", + "ident": "WHL", + "type": "small_airport", + "name": "Welshpool Airport", + "latitude_deg": "-38.682382", + "longitude_deg": "146.445331", + "elevation_ft": "35", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Welshpool", + "scheduled_service": "no", + "iata_code": "WHL" + }, + { + "id": "25696", + "ident": "WI00", + "type": "small_airport", + "name": "Norrie Brook Airport", + "latitude_deg": "44.8739013671875", + "longitude_deg": "-89.23069763183594", + "elevation_ft": "1240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Eland", + "scheduled_service": "no", + "gps_code": "WI00", + "local_code": "WI00" + }, + { + "id": "25697", + "ident": "WI01", + "type": "heliport", + "name": "Aurora Medical Center Kenosha Heliport", + "latitude_deg": "42.57059860229492", + "longitude_deg": "-87.93609619140625", + "elevation_ft": "698", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Kenosha", + "scheduled_service": "no", + "gps_code": "WI01", + "local_code": "WI01" + }, + { + "id": "25698", + "ident": "WI02", + "type": "closed", + "name": "Turtle Airport", + "latitude_deg": "42.507", + "longitude_deg": "-88.914802", + "elevation_ft": "911", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Beloit", + "scheduled_service": "no", + "keywords": "WI02" + }, + { + "id": "25699", + "ident": "WI03", + "type": "small_airport", + "name": "Horner Farms Airport", + "latitude_deg": "42.798099517822266", + "longitude_deg": "-88.1333999633789", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Union Grove", + "scheduled_service": "no", + "gps_code": "WI03", + "local_code": "WI03" + }, + { + "id": "25700", + "ident": "WI04", + "type": "closed", + "name": "Lake Menomin Seaplane Base", + "latitude_deg": "44.891602", + "longitude_deg": "-91.916901", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Menomonie", + "scheduled_service": "no", + "keywords": "WI04" + }, + { + "id": "25701", + "ident": "WI05", + "type": "small_airport", + "name": "Stocktrade Airport", + "latitude_deg": "44.80830001831055", + "longitude_deg": "-91.68440246582031", + "elevation_ft": "882", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Elk Mound", + "scheduled_service": "no", + "gps_code": "WI05", + "local_code": "WI05" + }, + { + "id": "25702", + "ident": "WI06", + "type": "heliport", + "name": "Aurora Medical Center Heliport", + "latitude_deg": "44.127201080322266", + "longitude_deg": "-87.6156005859375", + "elevation_ft": "596", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Two Rivers", + "scheduled_service": "no", + "gps_code": "WI06", + "local_code": "WI06" + }, + { + "id": "25703", + "ident": "WI07", + "type": "small_airport", + "name": "Waupun Airport", + "latitude_deg": "43.619723", + "longitude_deg": "-88.767693", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Waupun", + "scheduled_service": "no", + "gps_code": "WI07", + "local_code": "WI07" + }, + { + "id": "25704", + "ident": "WI08", + "type": "heliport", + "name": "St. Mary's Hospital Ozaukee Heliport", + "latitude_deg": "43.256500244140625", + "longitude_deg": "-87.92569732666016", + "elevation_ft": "667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Mequon", + "scheduled_service": "no", + "gps_code": "WI08", + "local_code": "WI08" + }, + { + "id": "25705", + "ident": "WI09", + "type": "small_airport", + "name": "Heitman Field Airport", + "latitude_deg": "42.9771995544", + "longitude_deg": "-88.47579956050001", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Dousman", + "scheduled_service": "no", + "gps_code": "WI09", + "local_code": "WI09" + }, + { + "id": "25706", + "ident": "WI10", + "type": "small_airport", + "name": "Cedar Island Airport", + "latitude_deg": "46.44822", + "longitude_deg": "-91.613051", + "elevation_ft": "1229", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Brule", + "scheduled_service": "no", + "gps_code": "WI10", + "local_code": "WI10" + }, + { + "id": "25707", + "ident": "WI11", + "type": "small_airport", + "name": "Mumm Field", + "latitude_deg": "42.591400146484375", + "longitude_deg": "-89.2406997680664", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Orfordville", + "scheduled_service": "no", + "gps_code": "WI11", + "local_code": "WI11" + }, + { + "id": "25708", + "ident": "WI12", + "type": "small_airport", + "name": "Lilac Time Airport", + "latitude_deg": "45.706600189208984", + "longitude_deg": "-91.6249008178711", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Birchwood", + "scheduled_service": "no", + "gps_code": "WI12", + "local_code": "WI12" + }, + { + "id": "45932", + "ident": "WI13", + "type": "small_airport", + "name": "Jennie'S Field", + "latitude_deg": "44.254833", + "longitude_deg": "-89.8395", + "elevation_ft": "993", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wisconsin Rapids", + "scheduled_service": "no", + "gps_code": "WI13", + "local_code": "WI13" + }, + { + "id": "25709", + "ident": "WI14", + "type": "small_airport", + "name": "Baldwin Airport", + "latitude_deg": "44.96659851074219", + "longitude_deg": "-92.38770294189453", + "elevation_ft": "1104", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Baldwin", + "scheduled_service": "no", + "gps_code": "WI14", + "local_code": "WI14" + }, + { + "id": "25710", + "ident": "WI15", + "type": "heliport", + "name": "Bloomer Memorial Medical Center Heliport", + "latitude_deg": "45.102500915527344", + "longitude_deg": "-91.50140380859375", + "elevation_ft": "1055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Bloomer", + "scheduled_service": "no", + "gps_code": "WI15", + "local_code": "WI15" + }, + { + "id": "25711", + "ident": "WI16", + "type": "small_airport", + "name": "Jim Benson Field", + "latitude_deg": "42.85309982299805", + "longitude_deg": "-90.12969970703125", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Mineral Point", + "scheduled_service": "no", + "gps_code": "WI16", + "local_code": "WI16" + }, + { + "id": "25712", + "ident": "WI18", + "type": "small_airport", + "name": "Gateway Airport", + "latitude_deg": "45.13330078125", + "longitude_deg": "-91.45020294189453", + "elevation_ft": "1021", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Bloomer", + "scheduled_service": "no", + "gps_code": "WI18", + "local_code": "WI18" + }, + { + "id": "25713", + "ident": "WI19", + "type": "small_airport", + "name": "Cacic Airport", + "latitude_deg": "43.79999923706055", + "longitude_deg": "-89.43350219726562", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Montello", + "scheduled_service": "no", + "gps_code": "WI19", + "local_code": "WI19" + }, + { + "id": "3272", + "ident": "WI1A", + "type": "small_airport", + "name": "Nusawiru Airport", + "latitude_deg": "-7.719895", + "longitude_deg": "108.488995", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JB", + "municipality": "Cijulang", + "scheduled_service": "yes", + "gps_code": "WICN", + "iata_code": "CJN", + "local_code": "WI1A", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cijulang_Nusawiru_Airport" + }, + { + "id": "3273", + "ident": "WI1B", + "type": "small_airport", + "name": "Batujajar Airport", + "latitude_deg": "-6.90386009216", + "longitude_deg": "107.475997925", + "elevation_ft": "2500", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JB", + "municipality": "Bandung-Java Island", + "scheduled_service": "no", + "gps_code": "WI1B", + "local_code": "WIIB", + "keywords": "suparlan" + }, + { + "id": "3274", + "ident": "WI1C", + "type": "small_airport", + "name": "Rumpin Airport", + "latitude_deg": "-6.373219966888428", + "longitude_deg": "106.62200164794922", + "elevation_ft": "223", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JB", + "municipality": "Rumpin-Java Island", + "scheduled_service": "no", + "gps_code": "WI1C", + "local_code": "WI1C" + }, + { + "id": "3275", + "ident": "WI1G", + "type": "small_airport", + "name": "Gading Wonosari Airport", + "latitude_deg": "-7.916590213775635", + "longitude_deg": "110.56400299072266", + "elevation_ft": "702", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-YO", + "municipality": "Wonosari-Java Island", + "scheduled_service": "no", + "gps_code": "WI1G", + "local_code": "WI1G" + }, + { + "id": "25714", + "ident": "WI20", + "type": "small_airport", + "name": "Larson Studio Airport", + "latitude_deg": "44.882999420166016", + "longitude_deg": "-88.09200286865234", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Oconto Falls", + "scheduled_service": "no", + "gps_code": "WI20", + "local_code": "WI20" + }, + { + "id": "25715", + "ident": "WI21", + "type": "small_airport", + "name": "Crane Field", + "latitude_deg": "44.909698486328125", + "longitude_deg": "-91.2417984008789", + "elevation_ft": "936", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Cadott", + "scheduled_service": "no", + "gps_code": "WI21", + "local_code": "WI21" + }, + { + "id": "25716", + "ident": "WI22", + "type": "small_airport", + "name": "Rocket City Airport", + "latitude_deg": "44.32310104370117", + "longitude_deg": "-88.60079956054688", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Hortonville", + "scheduled_service": "no", + "gps_code": "WI22", + "local_code": "WI22" + }, + { + "id": "25717", + "ident": "WI23", + "type": "small_airport", + "name": "Cornucopia Field", + "latitude_deg": "46.866192", + "longitude_deg": "-91.083677", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Cornucopia", + "scheduled_service": "no", + "local_code": "23W", + "keywords": "WI23" + }, + { + "id": "25718", + "ident": "WI24", + "type": "small_airport", + "name": "Cardinal Ridge Airport", + "latitude_deg": "42.881099700927734", + "longitude_deg": "-89.752197265625", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Mt Horeb", + "scheduled_service": "no", + "gps_code": "WI24", + "local_code": "WI24" + }, + { + "id": "25719", + "ident": "WI25", + "type": "small_airport", + "name": "Durand Municipal Airport", + "latitude_deg": "44.53889846801758", + "longitude_deg": "-92.01409912109375", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Durand", + "scheduled_service": "no", + "gps_code": "WI25", + "local_code": "WI25" + }, + { + "id": "25720", + "ident": "WI26", + "type": "small_airport", + "name": "Mertinkes Airport", + "latitude_deg": "44.70500183105469", + "longitude_deg": "-91.46540069580078", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Eau Claire", + "scheduled_service": "no", + "gps_code": "WI26", + "local_code": "WI26" + }, + { + "id": "25721", + "ident": "WI27", + "type": "small_airport", + "name": "Skyport Airport", + "latitude_deg": "44.92020034790039", + "longitude_deg": "-91.97489929199219", + "elevation_ft": "878", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Menomonie", + "scheduled_service": "no", + "gps_code": "WI27", + "local_code": "WI27" + }, + { + "id": "25722", + "ident": "WI28", + "type": "small_airport", + "name": "Walter's Agri-Center Airport", + "latitude_deg": "44.58610153198242", + "longitude_deg": "-87.55760192871094", + "elevation_ft": "717", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Rio Creek", + "scheduled_service": "no", + "gps_code": "WI28", + "local_code": "WI28" + }, + { + "id": "25723", + "ident": "WI29", + "type": "small_airport", + "name": "Rush River Airport", + "latitude_deg": "44.90549850463867", + "longitude_deg": "-92.4834976196289", + "elevation_ft": "1078", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Baldwin", + "scheduled_service": "no", + "gps_code": "WI29", + "local_code": "WI29" + }, + { + "id": "25724", + "ident": "WI30", + "type": "heliport", + "name": "St Clare Hospital Heliport", + "latitude_deg": "43.48139953613281", + "longitude_deg": "-89.72959899902344", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Baraboo", + "scheduled_service": "no", + "gps_code": "WI30", + "local_code": "WI30" + }, + { + "id": "25725", + "ident": "WI31", + "type": "small_airport", + "name": "Minnesuing Airport", + "latitude_deg": "46.410753", + "longitude_deg": "-91.653787", + "elevation_ft": "1207", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Lake Nebagamon", + "scheduled_service": "no", + "gps_code": "WI31", + "local_code": "WI31" + }, + { + "id": "25726", + "ident": "WI32", + "type": "small_airport", + "name": "T-Bo Field Airport", + "latitude_deg": "44.98730087279999", + "longitude_deg": "-91.3303985596", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Chippewa Falls", + "scheduled_service": "no", + "gps_code": "WI32", + "local_code": "WI32" + }, + { + "id": "25727", + "ident": "WI33", + "type": "small_airport", + "name": "Ben Sutherland Airport", + "latitude_deg": "46.103599548339844", + "longitude_deg": "-91.90239715576172", + "elevation_ft": "1056", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Minong", + "scheduled_service": "no", + "gps_code": "WI33", + "local_code": "WI33" + }, + { + "id": "25728", + "ident": "WI34", + "type": "heliport", + "name": "Mayo Clinic Health System-Northland Heliport", + "latitude_deg": "45.397107", + "longitude_deg": "-91.839922", + "elevation_ft": "1122", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Barron", + "scheduled_service": "no", + "gps_code": "WI34", + "local_code": "WI34", + "keywords": "Barron Hospital" + }, + { + "id": "25729", + "ident": "WI35", + "type": "seaplane_base", + "name": "Ceder Lake Seaplane Base", + "latitude_deg": "45.21580123901367", + "longitude_deg": "-92.57270050048828", + "elevation_ft": "917", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "New Richmond", + "scheduled_service": "no", + "gps_code": "WI35", + "local_code": "WI35" + }, + { + "id": "25730", + "ident": "WI36", + "type": "small_airport", + "name": "Dolhun Field", + "latitude_deg": "45.826599", + "longitude_deg": "-89.620102", + "elevation_ft": "1625", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Lake Tomahawk", + "scheduled_service": "no", + "gps_code": "WI36", + "local_code": "WI36" + }, + { + "id": "25731", + "ident": "WI37", + "type": "small_airport", + "name": "Rainbow Airport", + "latitude_deg": "45.80830001831055", + "longitude_deg": "-91.09629821777344", + "elevation_ft": "1321", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Ojibwa", + "scheduled_service": "no", + "gps_code": "WI37", + "local_code": "WI37" + }, + { + "id": "25732", + "ident": "WI38", + "type": "heliport", + "name": "Beloit Memorial Hospital Heliport", + "latitude_deg": "42.548301696777344", + "longitude_deg": "-89.00759887695312", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Beloit", + "scheduled_service": "no", + "gps_code": "WI38", + "local_code": "WI38" + }, + { + "id": "25733", + "ident": "WI39", + "type": "heliport", + "name": "Clintonville Community Hospital Heliport", + "latitude_deg": "44.6244010925293", + "longitude_deg": "-88.75789642333984", + "elevation_ft": "822", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Clintonville", + "scheduled_service": "no", + "gps_code": "WI39", + "local_code": "WI39" + }, + { + "id": "25734", + "ident": "WI40", + "type": "small_airport", + "name": "Spiegel Field", + "latitude_deg": "42.913299560546875", + "longitude_deg": "-89.35230255126953", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Oregon", + "scheduled_service": "no", + "gps_code": "WI40", + "local_code": "WI40" + }, + { + "id": "25735", + "ident": "WI41", + "type": "heliport", + "name": "Prairie Ridge Health Heliport", + "latitude_deg": "43.32268", + "longitude_deg": "-89.03441", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Columbus", + "scheduled_service": "no", + "gps_code": "WI41", + "local_code": "WI41", + "keywords": "Columbus Community Hospital" + }, + { + "id": "25736", + "ident": "WI42", + "type": "small_airport", + "name": "Pine Grove Airport", + "latitude_deg": "45.65719985961914", + "longitude_deg": "-89.52989959716797", + "elevation_ft": "1630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Rhinelander", + "scheduled_service": "no", + "gps_code": "WI42", + "local_code": "WI42" + }, + { + "id": "25737", + "ident": "WI43", + "type": "small_airport", + "name": "Atkins Ridge Airport", + "latitude_deg": "42.94889831542969", + "longitude_deg": "-89.82530212402344", + "elevation_ft": "1090", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Daleyville", + "scheduled_service": "no", + "gps_code": "WI43", + "local_code": "WI43" + }, + { + "id": "25738", + "ident": "WI44", + "type": "heliport", + "name": "Upland Hills Health Heliport", + "latitude_deg": "42.951876", + "longitude_deg": "-90.128529", + "elevation_ft": "1213", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Dodgeville", + "scheduled_service": "no", + "gps_code": "WI44", + "local_code": "WI44", + "keywords": "Memorial Hospital Heliport" + }, + { + "id": "25739", + "ident": "WI45", + "type": "heliport", + "name": "Aspirus Langlade Hospital Heliport", + "latitude_deg": "45.142556", + "longitude_deg": "-89.138839", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Antigo", + "scheduled_service": "no", + "gps_code": "WI45", + "local_code": "WI45", + "keywords": "Langlade Memorial" + }, + { + "id": "25740", + "ident": "WI46", + "type": "small_airport", + "name": "Fun-Air Airport", + "latitude_deg": "43.8828010559082", + "longitude_deg": "-88.53990173339844", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Van Dyne", + "scheduled_service": "no", + "gps_code": "WI46", + "local_code": "WI46" + }, + { + "id": "25741", + "ident": "WI47", + "type": "small_airport", + "name": "Timberline Airport", + "latitude_deg": "44.43330001831055", + "longitude_deg": "-89.15010070800781", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Scandinavia", + "scheduled_service": "no", + "gps_code": "WI47", + "local_code": "WI47" + }, + { + "id": "25742", + "ident": "WI48", + "type": "closed", + "name": "Edinger Field", + "latitude_deg": "44.0047", + "longitude_deg": "-88.870903", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Eureka", + "scheduled_service": "no", + "keywords": "WI48" + }, + { + "id": "25743", + "ident": "WI49", + "type": "small_airport", + "name": "Blair Airport", + "latitude_deg": "44.286841", + "longitude_deg": "-91.226542", + "elevation_ft": "864", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Blair", + "scheduled_service": "no", + "gps_code": "WI49", + "local_code": "WI49" + }, + { + "id": "25744", + "ident": "WI50", + "type": "small_airport", + "name": "Loeber McDaniel Field", + "latitude_deg": "43.398", + "longitude_deg": "-89.637602", + "elevation_ft": "889", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Merrimac", + "scheduled_service": "no", + "gps_code": "WI50", + "local_code": "WI50", + "keywords": "Prairie Hill McDaniel Field" + }, + { + "id": "25745", + "ident": "WI51", + "type": "small_airport", + "name": "Del Monte Airport", + "latitude_deg": "43.3213996887207", + "longitude_deg": "-89.32099914550781", + "elevation_ft": "1064", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "WI51", + "local_code": "WI51" + }, + { + "id": "25746", + "ident": "WI52", + "type": "small_airport", + "name": "Schewe Airport", + "latitude_deg": "44.617801666259766", + "longitude_deg": "-88.66680145263672", + "elevation_ft": "810", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Clintonville", + "scheduled_service": "no", + "gps_code": "WI52", + "local_code": "WI52" + }, + { + "id": "25747", + "ident": "WI53", + "type": "small_airport", + "name": "Desmet Airport", + "latitude_deg": "42.9453010559082", + "longitude_deg": "-89.89900207519531", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Barneveld", + "scheduled_service": "no", + "gps_code": "WI53", + "local_code": "WI53" + }, + { + "id": "25748", + "ident": "WI54", + "type": "closed", + "name": "Corinth Airport", + "latitude_deg": "44.999401", + "longitude_deg": "-90.149597", + "elevation_ft": "1425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Athens", + "scheduled_service": "no", + "keywords": "WI54" + }, + { + "id": "25749", + "ident": "WI55", + "type": "small_airport", + "name": "Broken Prop Airport", + "latitude_deg": "43.98609924316406", + "longitude_deg": "-88.9834976196289", + "elevation_ft": "767", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Berlin", + "scheduled_service": "no", + "gps_code": "WI55", + "local_code": "WI55" + }, + { + "id": "25750", + "ident": "WI56", + "type": "small_airport", + "name": "C Jeidy Farms Airport", + "latitude_deg": "42.88169860839844", + "longitude_deg": "-90.86070251464844", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Bloomington", + "scheduled_service": "no", + "gps_code": "WI56", + "local_code": "WI56" + }, + { + "id": "25751", + "ident": "WI57", + "type": "heliport", + "name": "Advent Health Durand Heliport", + "latitude_deg": "44.621029", + "longitude_deg": "-91.962706", + "elevation_ft": "852", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Durand", + "scheduled_service": "no", + "gps_code": "WI57", + "local_code": "WI57", + "keywords": "Chippewa Valley Hospital" + }, + { + "id": "25752", + "ident": "WI58", + "type": "small_airport", + "name": "Winfield Airport", + "latitude_deg": "42.52220153808594", + "longitude_deg": "-88.02790069580078", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Bristol", + "scheduled_service": "no", + "gps_code": "WI58", + "local_code": "WI58" + }, + { + "id": "25753", + "ident": "WI59", + "type": "heliport", + "name": "Burnett General Hospital Heliport", + "latitude_deg": "45.77439880371094", + "longitude_deg": "-92.68659973144531", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Grantsburg", + "scheduled_service": "no", + "gps_code": "WI59", + "local_code": "WI59" + }, + { + "id": "25754", + "ident": "WI60", + "type": "small_airport", + "name": "Deer Haven Ranch Airport", + "latitude_deg": "44.832801818847656", + "longitude_deg": "-88.46320343017578", + "elevation_ft": "811", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Cecil", + "scheduled_service": "no", + "gps_code": "WI60", + "local_code": "WI60" + }, + { + "id": "25755", + "ident": "WI61", + "type": "closed", + "name": "Ashenfelter Aerodrome", + "latitude_deg": "43.3489", + "longitude_deg": "-87.994301", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Grafton", + "scheduled_service": "no", + "keywords": "WI61" + }, + { + "id": "25756", + "ident": "WI62", + "type": "closed", + "name": "SSS Aerodrome", + "latitude_deg": "43.269501", + "longitude_deg": "-87.9981", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Cedarburg", + "scheduled_service": "no", + "keywords": "WI62" + }, + { + "id": "25757", + "ident": "WI63", + "type": "heliport", + "name": "St Joseph's Memorial Hospital Heliport", + "latitude_deg": "43.64860153198242", + "longitude_deg": "-90.345703125", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Hillsboro", + "scheduled_service": "no", + "gps_code": "WI63", + "local_code": "WI63" + }, + { + "id": "25758", + "ident": "WI64", + "type": "heliport", + "name": "Iola Emergency Heliport", + "latitude_deg": "44.506786", + "longitude_deg": "-89.134886", + "elevation_ft": "995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Iola", + "scheduled_service": "no", + "gps_code": "WI64", + "local_code": "WI64" + }, + { + "id": "25759", + "ident": "WI65", + "type": "small_airport", + "name": "Dane Airport", + "latitude_deg": "43.222198486328125", + "longitude_deg": "-89.46820068359375", + "elevation_ft": "1035", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Dane", + "scheduled_service": "no", + "gps_code": "WI65", + "local_code": "WI65" + }, + { + "id": "25760", + "ident": "WI66", + "type": "closed", + "name": "Smilin' Sam's Airport", + "latitude_deg": "42.5872", + "longitude_deg": "-88.658203", + "elevation_ft": "980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Delavan", + "scheduled_service": "no", + "keywords": "WI66" + }, + { + "id": "25761", + "ident": "WI67", + "type": "small_airport", + "name": "Bennet Field", + "latitude_deg": "43.8765983582", + "longitude_deg": "-88.9007034302", + "elevation_ft": "935", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Ripon", + "scheduled_service": "no", + "gps_code": "WI67", + "local_code": "WI67" + }, + { + "id": "25762", + "ident": "WI68", + "type": "heliport", + "name": "Brinsmere Heliport", + "latitude_deg": "43.39550018310547", + "longitude_deg": "-88.64089965820312", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Juneau", + "scheduled_service": "no", + "gps_code": "WI68", + "local_code": "WI68" + }, + { + "id": "25763", + "ident": "WI69", + "type": "small_airport", + "name": "Air Troy Estates - Restricted Airport", + "latitude_deg": "42.7999992371", + "longitude_deg": "-88.33339691159999", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "East Troy", + "scheduled_service": "no", + "gps_code": "WI69", + "local_code": "WI69" + }, + { + "id": "25764", + "ident": "WI70", + "type": "small_airport", + "name": "Swan Airport", + "latitude_deg": "42.705524", + "longitude_deg": "-88.640227", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Elkhorn", + "scheduled_service": "no", + "gps_code": "WI70", + "local_code": "WI70" + }, + { + "id": "25765", + "ident": "WI71", + "type": "closed", + "name": "Weedhopper Meadow Airport", + "latitude_deg": "42.687543", + "longitude_deg": "-88.602678", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Elkhorn", + "scheduled_service": "no", + "keywords": "WI71" + }, + { + "id": "25766", + "ident": "WI72", + "type": "closed", + "name": "Martin Fierro Airport", + "latitude_deg": "42.799999", + "longitude_deg": "-90.5718", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Ellenboro", + "scheduled_service": "no", + "keywords": "WI72" + }, + { + "id": "25767", + "ident": "WI73", + "type": "small_airport", + "name": "Happy Jacks Air Strip", + "latitude_deg": "44", + "longitude_deg": "-88.8333969116211", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Eureka", + "scheduled_service": "no", + "gps_code": "WI73", + "local_code": "WI73" + }, + { + "id": "25768", + "ident": "WI74", + "type": "closed", + "name": "Pfaffenroth Private Airport", + "latitude_deg": "43.924999", + "longitude_deg": "-88.667603", + "elevation_ft": "872", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Fisk", + "scheduled_service": "no", + "keywords": "WI74" + }, + { + "id": "25769", + "ident": "WI75", + "type": "small_airport", + "name": "Bogus Creek Airport", + "latitude_deg": "44.4989013671875", + "longitude_deg": "-92.2031021118164", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Stockholm", + "scheduled_service": "no", + "gps_code": "WI75", + "local_code": "WI75" + }, + { + "id": "25770", + "ident": "WI76", + "type": "small_airport", + "name": "Maggies Farm LLC Airport", + "latitude_deg": "42.948601", + "longitude_deg": "-88.775902", + "elevation_ft": "836", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Jefferson", + "scheduled_service": "no", + "gps_code": "WI76", + "local_code": "WI76", + "keywords": "J Rock Airport" + }, + { + "id": "25771", + "ident": "WI77", + "type": "small_airport", + "name": "Willow Creek Airport", + "latitude_deg": "43.207000732421875", + "longitude_deg": "-88.160400390625", + "elevation_ft": "860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Germantown", + "scheduled_service": "no", + "gps_code": "WI77", + "local_code": "WI77" + }, + { + "id": "25772", + "ident": "WI78", + "type": "small_airport", + "name": "Martins Aerodrome", + "latitude_deg": "44.42580032348633", + "longitude_deg": "-87.93499755859375", + "elevation_ft": "808", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Green Bay", + "scheduled_service": "no", + "gps_code": "WI78", + "local_code": "WI78" + }, + { + "id": "25773", + "ident": "WI79", + "type": "small_airport", + "name": "Town Line Airport", + "latitude_deg": "44.852699279785156", + "longitude_deg": "-90.55650329589844", + "elevation_ft": "1270", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Greenwood", + "scheduled_service": "no", + "gps_code": "WI79", + "local_code": "WI79" + }, + { + "id": "25774", + "ident": "WI80", + "type": "closed", + "name": "Kaukauna Community Hospital Heliport", + "latitude_deg": "44.269199", + "longitude_deg": "-88.269798", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Kaukauna", + "scheduled_service": "no", + "keywords": "WI80" + }, + { + "id": "25775", + "ident": "WI81", + "type": "small_airport", + "name": "Rigdon Private Airport", + "latitude_deg": "42.524200439453125", + "longitude_deg": "-90.59100341796875", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Hazel Green", + "scheduled_service": "no", + "gps_code": "WI81", + "local_code": "WI81" + }, + { + "id": "25776", + "ident": "WI82", + "type": "heliport", + "name": "Kenosha Hospital and Medical Center Heliport", + "latitude_deg": "42.5786018371582", + "longitude_deg": "-87.81950378417969", + "elevation_ft": "610", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Kenosha", + "scheduled_service": "no", + "gps_code": "WI82", + "local_code": "WI82" + }, + { + "id": "25777", + "ident": "WI83", + "type": "heliport", + "name": "St Mary's Kewaunee Area Memorial Hospital Heliport", + "latitude_deg": "44.45000076293945", + "longitude_deg": "-87.51090240478516", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Kewaunee", + "scheduled_service": "no", + "gps_code": "WI83", + "local_code": "WI83" + }, + { + "id": "25778", + "ident": "WI84", + "type": "small_airport", + "name": "Johnstown Center Airport", + "latitude_deg": "42.689623", + "longitude_deg": "-88.840973", + "elevation_ft": "925", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Janesville", + "scheduled_service": "no", + "gps_code": "WI84", + "local_code": "WI84" + }, + { + "id": "25779", + "ident": "WI85", + "type": "heliport", + "name": "Omniflight Helicopters Heliport", + "latitude_deg": "42.619998931884766", + "longitude_deg": "-89.02790069580078", + "elevation_ft": "808", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Janesville", + "scheduled_service": "no", + "gps_code": "WI85", + "local_code": "WI85" + }, + { + "id": "25780", + "ident": "WI86", + "type": "small_airport", + "name": "Ori Airport", + "latitude_deg": "42.6609", + "longitude_deg": "-88.135902", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Kansasville", + "scheduled_service": "no", + "gps_code": "WI86", + "local_code": "WI86", + "keywords": "Flaglor Airport" + }, + { + "id": "25781", + "ident": "WI87", + "type": "small_airport", + "name": "Pine River Airport", + "latitude_deg": "45.203300476100004", + "longitude_deg": "-89.52439880370001", + "elevation_ft": "1370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Merrill", + "scheduled_service": "no", + "gps_code": "WI87", + "local_code": "WI87" + }, + { + "id": "25782", + "ident": "WI88", + "type": "closed", + "name": "Mount Fuji Airport", + "latitude_deg": "42.625", + "longitude_deg": "-88.450104", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Lake Geneva", + "scheduled_service": "no", + "keywords": "WI88" + }, + { + "id": "25783", + "ident": "WI89", + "type": "small_airport", + "name": "Lake Geneva Aire Estates Airport", + "latitude_deg": "42.572200775146484", + "longitude_deg": "-88.36730194091797", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Lake Geneva", + "scheduled_service": "no", + "gps_code": "WI89", + "local_code": "WI89" + }, + { + "id": "25784", + "ident": "WI90", + "type": "closed", + "name": "Speedwing Field", + "latitude_deg": "44.296101", + "longitude_deg": "-90.043701", + "elevation_ft": "970", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Babcock", + "scheduled_service": "no", + "keywords": "WI90" + }, + { + "id": "25785", + "ident": "WI91", + "type": "small_airport", + "name": "Larson Airport", + "latitude_deg": "44.20280075073242", + "longitude_deg": "-88.63960266113281", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Larsen", + "scheduled_service": "no", + "gps_code": "WI91", + "local_code": "WI91" + }, + { + "id": "25786", + "ident": "WI92", + "type": "small_airport", + "name": "Wag-Aero Airport", + "latitude_deg": "42.66109848022461", + "longitude_deg": "-88.36119842529297", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Lyons", + "scheduled_service": "no", + "gps_code": "WI92", + "local_code": "WI92" + }, + { + "id": "25787", + "ident": "WI93", + "type": "heliport", + "name": "Meriter/Park Heliport", + "latitude_deg": "43.06560134887695", + "longitude_deg": "-89.40180206298828", + "elevation_ft": "891", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "WI93", + "local_code": "WI93" + }, + { + "id": "25788", + "ident": "WI94", + "type": "heliport", + "name": "Army Guard Heliport", + "latitude_deg": "43.125932", + "longitude_deg": "-89.33966", + "elevation_ft": "862", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "WI94", + "local_code": "WI94" + }, + { + "id": "25789", + "ident": "WI95", + "type": "small_airport", + "name": "Binzel Airport", + "latitude_deg": "42.577797", + "longitude_deg": "-88.01405", + "elevation_ft": "705", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Bristol", + "scheduled_service": "no", + "gps_code": "WI95", + "local_code": "WI95", + "keywords": "Chilcott Farms, Paddock Lake" + }, + { + "id": "25790", + "ident": "WI96", + "type": "heliport", + "name": "Holy Family Memorial Medical Center Heliport", + "latitude_deg": "44.09489822387695", + "longitude_deg": "-87.67510223388672", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Manitowoc", + "scheduled_service": "no", + "gps_code": "WI96", + "local_code": "WI96" + }, + { + "id": "25791", + "ident": "WI97", + "type": "small_airport", + "name": "Mathaire Field", + "latitude_deg": "43.2578010559082", + "longitude_deg": "-89.0647964477539", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Marshall", + "scheduled_service": "no", + "gps_code": "WI97", + "local_code": "WI97" + }, + { + "id": "25792", + "ident": "WI98", + "type": "small_airport", + "name": "Blackburn Airport", + "latitude_deg": "42.858299255371094", + "longitude_deg": "-89.19730377197266", + "elevation_ft": "888", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Cooksville", + "scheduled_service": "no", + "gps_code": "WI98", + "local_code": "WI98" + }, + { + "id": "25793", + "ident": "WI99", + "type": "small_airport", + "name": "Meier Airport", + "latitude_deg": "42.8135986328125", + "longitude_deg": "-88.99710083007812", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Milton", + "scheduled_service": "no", + "gps_code": "WI99", + "local_code": "WI99" + }, + { + "id": "41454", + "ident": "WIAG", + "type": "small_airport", + "name": "Menggala Airport", + "latitude_deg": "-4.48943996429", + "longitude_deg": "105.217002869", + "elevation_ft": "98", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-LA", + "municipality": "Menggala-Sumatra Island", + "scheduled_service": "no", + "gps_code": "WIPM", + "keywords": "WIAG, Astrakestra" + }, + { + "id": "46482", + "ident": "WIAJ", + "type": "small_airport", + "name": "Semplak Atang Senjaya Airport", + "latitude_deg": "-6.540278", + "longitude_deg": "106.755278", + "elevation_ft": "584", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JB", + "municipality": "Bogor", + "scheduled_service": "no", + "gps_code": "WICJ", + "keywords": "WIAJ, Atang Sanjaya, Atang Sendjaja, Atang Senjaya" + }, + { + "id": "41455", + "ident": "WIAK", + "type": "small_airport", + "name": "Margahayu Airport", + "latitude_deg": "-6.98277997971", + "longitude_deg": "107.572998047", + "elevation_ft": "2184", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JB", + "municipality": "Bandung-Java Island", + "scheduled_service": "no", + "gps_code": "WICK", + "keywords": "WIAK, Sulaiman" + }, + { + "id": "41456", + "ident": "WIAP", + "type": "small_airport", + "name": "Banyumas Airport", + "latitude_deg": "-6.464849948883057", + "longitude_deg": "105.96900177001953", + "elevation_ft": "92", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-BT", + "municipality": "Banyumas-Java Island", + "scheduled_service": "no", + "gps_code": "WIAP" + }, + { + "id": "26821", + "ident": "WIBB", + "type": "medium_airport", + "name": "Sultan Syarif Kasim II International Airport / Roesmin Nurjadin AFB", + "latitude_deg": "0.458647", + "longitude_deg": "101.444321", + "elevation_ft": "102", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-RI", + "municipality": "Pekanbaru", + "scheduled_service": "yes", + "gps_code": "WIBB", + "iata_code": "PKU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sultan_Syarif_Qasim_II_International_Airport", + "keywords": "Simpang Tiga" + }, + { + "id": "26822", + "ident": "WIBD", + "type": "medium_airport", + "name": "Pinang Kampai Airport", + "latitude_deg": "1.609114", + "longitude_deg": "101.433492", + "elevation_ft": "55", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-RI", + "municipality": "Dumai", + "scheduled_service": "yes", + "gps_code": "WIBD", + "iata_code": "DUM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pinang_Kampai_Airport" + }, + { + "id": "26857", + "ident": "WIBJ", + "type": "medium_airport", + "name": "Japura Airport", + "latitude_deg": "-0.352808", + "longitude_deg": "102.334999", + "elevation_ft": "62", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-RI", + "municipality": "Rengat-Sumatra Island", + "scheduled_service": "no", + "gps_code": "WIBJ", + "iata_code": "RGT", + "keywords": "WIPR" + }, + { + "id": "41457", + "ident": "WIBR", + "type": "small_airport", + "name": "Rokot Airport", + "latitude_deg": "-2.100349", + "longitude_deg": "99.704319", + "elevation_ft": "1", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SB", + "municipality": "Matobe", + "scheduled_service": "no", + "gps_code": "WIBR", + "iata_code": "RKO", + "keywords": "Rokot Sipora Airport" + }, + { + "id": "32282", + "ident": "WIBS", + "type": "small_airport", + "name": "Sungai Pakning Bengkalis Airport", + "latitude_deg": "1.3700000047683716", + "longitude_deg": "102.13999938964844", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-RI", + "municipality": "Bengkalis-Sumatra Island", + "scheduled_service": "no", + "gps_code": "WIBS", + "iata_code": "SEQ" + }, + { + "id": "32452", + "ident": "WIBT", + "type": "small_airport", + "name": "Sei Bati Airport", + "latitude_deg": "1.0527", + "longitude_deg": "103.3931", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-RI", + "municipality": "Tanjung Balai-Karinmunbesar Island", + "scheduled_service": "no", + "gps_code": "WIBT", + "iata_code": "TJB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sei_Bati_Airport", + "keywords": "Tanjung Balai Airport" + }, + { + "id": "333068", + "ident": "WICA", + "type": "medium_airport", + "name": "Kertajati International Airport", + "latitude_deg": "-6.648924", + "longitude_deg": "108.166692", + "elevation_ft": "134", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JB", + "municipality": "Kertajati", + "scheduled_service": "no", + "gps_code": "WICA", + "iata_code": "KJT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kertajati_International_Airport" + }, + { + "id": "26823", + "ident": "WICB", + "type": "small_airport", + "name": "Budiarto Airport", + "latitude_deg": "-6.293171", + "longitude_deg": "106.57", + "elevation_ft": "151", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-BT", + "municipality": "Tangerang-Java Island", + "scheduled_service": "no", + "gps_code": "WIRR", + "keywords": "WIIA, WICB, Curug" + }, + { + "id": "26824", + "ident": "WICC", + "type": "medium_airport", + "name": "Husein Sastranegara International Airport", + "latitude_deg": "-6.90063", + "longitude_deg": "107.575996", + "elevation_ft": "2436", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JB", + "municipality": "Bandung", + "scheduled_service": "yes", + "gps_code": "WICC", + "iata_code": "BDO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Husein_Sastranegara_International_Airport", + "keywords": "WIIB" + }, + { + "id": "26825", + "ident": "WICD", + "type": "small_airport", + "name": "Penggung Airport", + "latitude_deg": "-6.757", + "longitude_deg": "108.538849", + "elevation_ft": "89", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JB", + "municipality": "Cirebon-Java Island", + "scheduled_service": "no", + "gps_code": "WICD", + "iata_code": "CBN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Penggung_Airport", + "keywords": "cakrabhuwana, cakrabuana, WIIC" + }, + { + "id": "26826", + "ident": "WICM", + "type": "small_airport", + "name": "Cibeureum Airport", + "latitude_deg": "-7.3466", + "longitude_deg": "108.246002", + "elevation_ft": "1148", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JB", + "municipality": "Tasikmalaya-Java Island", + "scheduled_service": "no", + "gps_code": "WICM", + "iata_code": "TSY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tasikmalaya_Airport", + "keywords": "WIAM, wiriadinata" + }, + { + "id": "308946", + "ident": "WID", + "type": "closed", + "name": "RAF Wildenrath", + "latitude_deg": "51.1141", + "longitude_deg": "6.2151", + "elevation_ft": "285", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-NW", + "municipality": "British Armed Forces", + "scheduled_service": "no", + "iata_code": "WID", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Wildenrath" + }, + { + "id": "26828", + "ident": "WIDD", + "type": "medium_airport", + "name": "Hang Nadim International Airport", + "latitude_deg": "1.12103", + "longitude_deg": "104.119003", + "elevation_ft": "126", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-RI", + "municipality": "Batam", + "scheduled_service": "yes", + "gps_code": "WIDD", + "iata_code": "BTH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hang_Nadim_Airport", + "keywords": "WIKB" + }, + { + "id": "26829", + "ident": "WIDE", + "type": "small_airport", + "name": "Pasir Pangaraan Airport", + "latitude_deg": "0.8454310297966003", + "longitude_deg": "100.37000274658203", + "elevation_ft": "151", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-RI", + "municipality": "Pasir Pengarayan-Sumatra Island", + "scheduled_service": "no", + "gps_code": "WIDE", + "iata_code": "PPR" + }, + { + "id": "333092", + "ident": "WIDL", + "type": "small_airport", + "name": "Letung Airport", + "latitude_deg": "2.96447", + "longitude_deg": "105.75484", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-RI", + "municipality": "Bukit Padi", + "scheduled_service": "no", + "gps_code": "WIDL", + "iata_code": "LMU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Letung_Airport" + }, + { + "id": "26845", + "ident": "WIDM", + "type": "small_airport", + "name": "Matak Airport", + "latitude_deg": "3.34812", + "longitude_deg": "106.258003", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-RI", + "municipality": "Palmatak", + "scheduled_service": "no", + "gps_code": "WIDM", + "iata_code": "MWK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Matak_Airport", + "keywords": "WIOM, Medco E&P Natuna, Taremba" + }, + { + "id": "26830", + "ident": "WIDN", + "type": "small_airport", + "name": "Raja Haji Fisabilillah International Airport", + "latitude_deg": "0.922683000565", + "longitude_deg": "104.531997681", + "elevation_ft": "52", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-RI", + "municipality": "Tanjung Pinang-Bintan Island", + "scheduled_service": "yes", + "gps_code": "WIDN", + "iata_code": "TNJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Raja_Haji_Fisabilillah_Airport", + "keywords": "WIKN" + }, + { + "id": "26831", + "ident": "WIDS", + "type": "small_airport", + "name": "Dabo Airport", + "latitude_deg": "-0.47918900847435", + "longitude_deg": "104.5790023803711", + "elevation_ft": "95", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-RI", + "municipality": "Pasirkuning-Singkep Island", + "scheduled_service": "no", + "gps_code": "WIDS", + "iata_code": "SIQ", + "keywords": "WIKS" + }, + { + "id": "41468", + "ident": "WIGM", + "type": "small_airport", + "name": "Muko Muko Airport", + "latitude_deg": "-2.54186", + "longitude_deg": "101.087997", + "elevation_ft": "24", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JA", + "municipality": "Muko Muko", + "scheduled_service": "yes", + "gps_code": "WIGM", + "iata_code": "MPC", + "wikipedia_link": "https://id.wikipedia.org/wiki/Bandar_Udara_Mukomuko", + "keywords": "WIPU, Mukomuko, Muko-Muko" + }, + { + "id": "26832", + "ident": "WIHH", + "type": "medium_airport", + "name": "Halim Perdanakusuma International Airport", + "latitude_deg": "-6.266610145568848", + "longitude_deg": "106.89099884033203", + "elevation_ft": "84", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JK", + "municipality": "Jakarta", + "scheduled_service": "yes", + "gps_code": "WIHH", + "iata_code": "HLP", + "home_link": "http://www.angkasapura2.co.id/cabang/hlp/content.php?menu=8&page_id=1", + "wikipedia_link": "https://en.wikipedia.org/wiki/Halim_Perdanakusuma_International_Airport", + "keywords": "WIIH,WIIX,WIID" + }, + { + "id": "26834", + "ident": "WIHP", + "type": "small_airport", + "name": "Pondok Cabe Air Base", + "latitude_deg": "-6.3369598388671875", + "longitude_deg": "106.76499938964844", + "elevation_ft": "200", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JK", + "municipality": "Jakarta", + "scheduled_service": "no", + "gps_code": "WIHP", + "iata_code": "PCB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pondok_Cabe_Airport", + "keywords": "WIPC,WIIP" + }, + { + "id": "26835", + "ident": "WIII", + "type": "large_airport", + "name": "Soekarno-Hatta International Airport", + "latitude_deg": "-6.1255698204", + "longitude_deg": "106.65599823", + "elevation_ft": "34", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-BT", + "municipality": "Jakarta", + "scheduled_service": "yes", + "gps_code": "WIII", + "iata_code": "CGK", + "home_link": "http://www.jakartasoekarnohattaairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Soekarno-Hatta_International_Airport", + "keywords": "JKT, Cengkareng, Java" + }, + { + "id": "32652", + "ident": "WIIK", + "type": "small_airport", + "name": "Kalijati Airport", + "latitude_deg": "-6.53139019012", + "longitude_deg": "107.658996582", + "elevation_ft": "361", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JB", + "municipality": "Kalijati-Java Island", + "scheduled_service": "no", + "gps_code": "WIHK", + "keywords": "WIIK, Suryadarma, Kalidjati, Karichagi, Kalijaga" + }, + { + "id": "41458", + "ident": "WIIR", + "type": "closed", + "name": "Pelabuhan Ratu Airport", + "latitude_deg": "-6.982321", + "longitude_deg": "106.540457", + "elevation_ft": "65", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JB", + "municipality": "Pelabuhan Ratu", + "scheduled_service": "no", + "keywords": "WIIR" + }, + { + "id": "26852", + "ident": "WIKK", + "type": "small_airport", + "name": "Depati Amir Airport", + "latitude_deg": "-2.1622", + "longitude_deg": "106.139", + "elevation_ft": "109", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-BB", + "municipality": "Pangkal Pinang", + "scheduled_service": "yes", + "gps_code": "WIKK", + "iata_code": "PGK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pangkalpinang_Airport", + "keywords": "WIPK" + }, + { + "id": "26827", + "ident": "WILL", + "type": "medium_airport", + "name": "Radin Inten II International Airport", + "latitude_deg": "-5.246803", + "longitude_deg": "105.182531", + "elevation_ft": "282", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-LA", + "municipality": "Bandar Lampung", + "scheduled_service": "yes", + "gps_code": "WILL", + "iata_code": "TKG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Radin_Inten_II_International_Airport", + "keywords": "WIIT, WICT" + }, + { + "id": "333624", + "ident": "WILP", + "type": "small_airport", + "name": "Muhammad Taufiq Kiemas Airport", + "latitude_deg": "-5.211562", + "longitude_deg": "103.936501", + "elevation_ft": "118", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-LA", + "municipality": "Krui", + "scheduled_service": "no", + "gps_code": "WILP", + "iata_code": "TFY" + }, + { + "id": "41460", + "ident": "WIMA", + "type": "small_airport", + "name": "Labuhan Bilik Airport", + "latitude_deg": "2.5129001140594482", + "longitude_deg": "100.17900085449219", + "elevation_ft": "18", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SU", + "municipality": "Labuhan Bilik-Sumatra Island", + "scheduled_service": "no", + "gps_code": "WIMA" + }, + { + "id": "26836", + "ident": "WIMB", + "type": "medium_airport", + "name": "Binaka Airport", + "latitude_deg": "1.16628", + "longitude_deg": "97.704327", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SU", + "municipality": "Gunungsitoli", + "scheduled_service": "yes", + "gps_code": "WIMB", + "iata_code": "GNS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Binaka_Airport" + }, + { + "id": "26837", + "ident": "WIME", + "type": "medium_airport", + "name": "Aek Godang Airport", + "latitude_deg": "1.4001", + "longitude_deg": "99.430496", + "elevation_ft": "922", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SU", + "municipality": "Padang Sidempuan", + "scheduled_service": "yes", + "gps_code": "WIME", + "iata_code": "AEG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aek_Godang_Airport" + }, + { + "id": "26838", + "ident": "WIMG", + "type": "medium_airport", + "name": "Tabing Airport", + "latitude_deg": "-0.874989", + "longitude_deg": "100.351997", + "elevation_ft": "9", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SB", + "municipality": "Padang", + "scheduled_service": "yes", + "gps_code": "WIMG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tabing_Airport" + }, + { + "id": "32654", + "ident": "WIMH", + "type": "small_airport", + "name": "Helvetia Airport", + "latitude_deg": "3.6830599308013916", + "longitude_deg": "98.64420318603516", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SU", + "municipality": "Helvetia-Sumatra Island", + "scheduled_service": "no", + "gps_code": "WIMH" + }, + { + "id": "26839", + "ident": "WIMK", + "type": "medium_airport", + "name": "Soewondo Air Force Base", + "latitude_deg": "3.558425", + "longitude_deg": "98.672275", + "elevation_ft": "114", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SU", + "municipality": "Medan", + "scheduled_service": "no", + "gps_code": "WIMK", + "iata_code": "MES", + "wikipedia_link": "https://en.wikipedia.org/wiki/Soewondo_Air_Force_Base", + "keywords": "Polonia International Airport, WIMM" + }, + { + "id": "41461", + "ident": "WIML", + "type": "closed", + "name": "Kisaran Airport", + "latitude_deg": "2.97379", + "longitude_deg": "99.600998", + "elevation_ft": "96", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SU", + "municipality": "Kisaran", + "scheduled_service": "no", + "gps_code": "WIML" + }, + { + "id": "309577", + "ident": "WIMM", + "type": "medium_airport", + "name": "Kualanamu International Airport", + "latitude_deg": "3.64177", + "longitude_deg": "98.885307", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SU", + "municipality": "Bandara Kuala Namu", + "scheduled_service": "yes", + "gps_code": "WIMM", + "iata_code": "KNO", + "home_link": "http://www.kualanamu-airport.co.id/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kualanamu_International_Airport" + }, + { + "id": "26840", + "ident": "WIMN", + "type": "small_airport", + "name": "Silangit Airport", + "latitude_deg": "2.25973", + "longitude_deg": "98.991898", + "elevation_ft": "4700", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SU", + "municipality": "Siborong-Borong", + "scheduled_service": "yes", + "gps_code": "WIMN", + "iata_code": "DTB", + "home_link": "http://silangit-airport.co.id/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Silangit_Airport", + "keywords": "Lake Toba, North Tapanuli" + }, + { + "id": "41462", + "ident": "WIMP", + "type": "small_airport", + "name": "Sibisa Airport", + "latitude_deg": "2.6666669845581", + "longitude_deg": "98.933334350586", + "elevation_ft": "3081", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SU", + "municipality": "Parapat-Sumatra Island", + "scheduled_service": "no", + "gps_code": "WIMP", + "iata_code": "SIW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sibisa_Airport", + "keywords": "Parapat Airport, Ajibata" + }, + { + "id": "41463", + "ident": "WIMR", + "type": "closed", + "name": "Pematangsiantar Airport", + "latitude_deg": "2.949968", + "longitude_deg": "99.050009", + "elevation_ft": "1361", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SU", + "municipality": "Pematangsiantar", + "scheduled_service": "no", + "keywords": "WIMR" + }, + { + "id": "26841", + "ident": "WIMS", + "type": "medium_airport", + "name": "Dr. Ferdinand Lumban Tobing Airport", + "latitude_deg": "1.557127", + "longitude_deg": "98.887145", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SU", + "municipality": "Sibolga (Pinangsori)", + "scheduled_service": "yes", + "gps_code": "WIMS", + "iata_code": "FLZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ferdinand_Lumban_Tobing_Airport", + "keywords": "Pinangsori Airport" + }, + { + "id": "41464", + "ident": "WIMT", + "type": "small_airport", + "name": "Tebing Tinggi Airport", + "latitude_deg": "3.3666670322418213", + "longitude_deg": "99.11666870117188", + "elevation_ft": "69", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SU", + "municipality": "Tabbing Tinggi-Sumatra Island", + "scheduled_service": "no", + "gps_code": "WIMT" + }, + { + "id": "41465", + "ident": "WIOB", + "type": "small_airport", + "name": "Bengkayang Airport", + "latitude_deg": "0.8333330154418945", + "longitude_deg": "109.48332977294922", + "elevation_ft": "294", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Bengkayang-Borneo Island", + "scheduled_service": "no", + "gps_code": "WIOB" + }, + { + "id": "26842", + "ident": "WIOD", + "type": "small_airport", + "name": "H A S Hanandjoeddin International Airport", + "latitude_deg": "-2.74572", + "longitude_deg": "107.754997", + "elevation_ft": "164", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-BB", + "municipality": "Tanjung Pandan", + "scheduled_service": "yes", + "gps_code": "WIKT", + "iata_code": "TJQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/H.A.S._Hanandjoeddin_International_Airport", + "keywords": "Buluh Tumbang Airport,WIKD, WIOD" + }, + { + "id": "26843", + "ident": "WIOG", + "type": "medium_airport", + "name": "Nanga Pinoh Airport", + "latitude_deg": "-0.34886899590492", + "longitude_deg": "111.74800109863", + "elevation_ft": "123", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Nanga Pinoh-Borneo Island", + "scheduled_service": "yes", + "gps_code": "WIOG", + "iata_code": "NPO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nanga_Pinoh_Airport" + }, + { + "id": "41466", + "ident": "WIOI", + "type": "small_airport", + "name": "Singkawang Airport", + "latitude_deg": "1.0756800174713135", + "longitude_deg": "109.68800354003906", + "elevation_ft": "276", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Sinkawang-Borneo Island", + "scheduled_service": "no", + "gps_code": "WIOI" + }, + { + "id": "26844", + "ident": "WIOK", + "type": "medium_airport", + "name": "Rahadi Osman Airport", + "latitude_deg": "-1.816845", + "longitude_deg": "109.963331", + "elevation_ft": "46", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Ketapang", + "scheduled_service": "yes", + "gps_code": "WIOK", + "iata_code": "KTG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rahadi_Osman_Airport", + "keywords": "Ketapang, Rahadi Usman" + }, + { + "id": "26846", + "ident": "WION", + "type": "medium_airport", + "name": "Ranai-Natuna Airport", + "latitude_deg": "3.90871", + "longitude_deg": "108.388", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-RI", + "municipality": "Ranai-Natuna Besar Island", + "scheduled_service": "yes", + "gps_code": "WIDO", + "iata_code": "NTX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ranai_Airport", + "keywords": "Natuna, Natuna-Ranai, Raden Sadjad" + }, + { + "id": "26847", + "ident": "WIOO", + "type": "medium_airport", + "name": "Supadio Airport", + "latitude_deg": "-0.150711", + "longitude_deg": "109.403999", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Pontianak", + "scheduled_service": "yes", + "gps_code": "WIOO", + "iata_code": "PNK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Supadio_Airport" + }, + { + "id": "26848", + "ident": "WIOP", + "type": "medium_airport", + "name": "Pangsuma Airport", + "latitude_deg": "0.8355780243873596", + "longitude_deg": "112.93699645996094", + "elevation_ft": "297", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Putussibau-Borneo Island", + "scheduled_service": "yes", + "gps_code": "WIOP", + "iata_code": "PSU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pangsuma_Airport" + }, + { + "id": "26849", + "ident": "WIOS", + "type": "medium_airport", + "name": "Sintang Airport", + "latitude_deg": "0.063851", + "longitude_deg": "111.473572", + "elevation_ft": "98", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KB", + "municipality": "Sintang", + "scheduled_service": "yes", + "gps_code": "WIOS", + "iata_code": "SQG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sintang_Airport" + }, + { + "id": "26850", + "ident": "WIPA", + "type": "small_airport", + "name": "Sultan Thaha Airport", + "latitude_deg": "-1.63802", + "longitude_deg": "103.643997", + "elevation_ft": "82", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JA", + "municipality": "Jambi", + "scheduled_service": "yes", + "gps_code": "WIJJ", + "iata_code": "DJB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sultan_Thaha_Airport" + }, + { + "id": "41459", + "ident": "WIPB", + "type": "small_airport", + "name": "Silampari Airport", + "latitude_deg": "-3.288165", + "longitude_deg": "102.91449", + "elevation_ft": "371", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SS", + "municipality": "Lubuk Linggau", + "scheduled_service": "no", + "gps_code": "WIPB", + "iata_code": "LLJ", + "local_code": "LLG", + "home_link": "http://hubud.dephub.go.id/?en+info_bandara+detail+100", + "wikipedia_link": "https://en.wikipedia.org/wiki/Silampari_Airport" + }, + { + "id": "26851", + "ident": "WIPD", + "type": "small_airport", + "name": "Banding Agung Airport", + "latitude_deg": "-4.78702", + "longitude_deg": "103.932999", + "elevation_ft": "2100", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SS", + "municipality": "Pasar Bandingagung", + "scheduled_service": "no", + "gps_code": "WIPD" + }, + { + "id": "41467", + "ident": "WIPF", + "type": "small_airport", + "name": "Kuala Tungkal Airport", + "latitude_deg": "-0.8166670203208923", + "longitude_deg": "103.46666717529297", + "elevation_ft": "12", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JA", + "municipality": "Kuala Tungkal-Sumatra Island", + "scheduled_service": "no", + "gps_code": "WIPF" + }, + { + "id": "310599", + "ident": "WIPI", + "type": "small_airport", + "name": "Muara Bungo Airport", + "latitude_deg": "-1.1278", + "longitude_deg": "102.135", + "elevation_ft": "214", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JA", + "municipality": "Muara Bungo", + "scheduled_service": "yes", + "gps_code": "WIPI", + "iata_code": "BUU", + "local_code": "MRBMWS", + "home_link": "http://www.infobungo.com/2012/12/jadwal-penerbangan-dari-bandara-muara.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Muara_Bungo_Airport", + "keywords": "Pasir Mayang" + }, + { + "id": "26853", + "ident": "WIPL", + "type": "medium_airport", + "name": "Fatmawati Soekarno Airport", + "latitude_deg": "-3.8637", + "longitude_deg": "102.338997", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-BE", + "municipality": "Bengkulu", + "scheduled_service": "yes", + "gps_code": "WIGG", + "iata_code": "BKS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fatmawati_Soekarno_Airport", + "keywords": "WIPL, Padang Kemiling Airport" + }, + { + "id": "26854", + "ident": "WIPO", + "type": "small_airport", + "name": "Gatot Subrato Airport", + "latitude_deg": "-4.391769886016846", + "longitude_deg": "104.4010009765625", + "elevation_ft": "450", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-LA", + "municipality": "Batu Raja-Sumatra Island", + "scheduled_service": "no", + "gps_code": "WIPO" + }, + { + "id": "26855", + "ident": "WIPP", + "type": "medium_airport", + "name": "Sultan Mahmud Badaruddin II Airport", + "latitude_deg": "-2.897653", + "longitude_deg": "104.698147", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SS", + "municipality": "Palembang", + "scheduled_service": "yes", + "gps_code": "WIPP", + "iata_code": "PLM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sultan_Mahmud_Badaruddin_II_Airport" + }, + { + "id": "26856", + "ident": "WIPQ", + "type": "medium_airport", + "name": "Pendopo Airport", + "latitude_deg": "-3.2860701084136963", + "longitude_deg": "103.87999725341797", + "elevation_ft": "184", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SS", + "municipality": "Talang Gudang-Sumatra Island", + "scheduled_service": "yes", + "gps_code": "WIPQ", + "iata_code": "PDO" + }, + { + "id": "26858", + "ident": "WIPT", + "type": "medium_airport", + "name": "Minangkabau International Airport", + "latitude_deg": "-0.786917", + "longitude_deg": "100.280998", + "elevation_ft": "18", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SB", + "municipality": "Padang (Katapiang)", + "scheduled_service": "yes", + "gps_code": "WIEE", + "iata_code": "PDG", + "home_link": "http://minangkabau-airport.co.id/en/general/about-us", + "wikipedia_link": "https://en.wikipedia.org/wiki/Minangkabau_International_Airport" + }, + { + "id": "41469", + "ident": "WIPV", + "type": "closed", + "name": "Keluang Airport", + "latitude_deg": "-2.640962", + "longitude_deg": "103.914557", + "elevation_ft": "76", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SS", + "municipality": "Keluang", + "scheduled_service": "no", + "gps_code": "WIPV", + "iata_code": "KLQ" + }, + { + "id": "41470", + "ident": "WIPY", + "type": "small_airport", + "name": "Bentayan Airport", + "latitude_deg": "-4.0225", + "longitude_deg": "103.379167", + "elevation_ft": "40", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-SS", + "municipality": "Bentayan-Sumatra Island", + "scheduled_service": "no", + "gps_code": "WIPY", + "iata_code": "PXA" + }, + { + "id": "41471", + "ident": "WITA", + "type": "small_airport", + "name": "Teuku Cut Ali Airport", + "latitude_deg": "3.16904", + "longitude_deg": "97.288299", + "elevation_ft": "17", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-AC", + "municipality": "Tapaktuan", + "scheduled_service": "no", + "gps_code": "WITA", + "iata_code": "TPK", + "wikipedia_link": "http://id.wikipedia.org/wiki/Bandar_Udara_Teuku_Cut_Ali" + }, + { + "id": "26859", + "ident": "WITB", + "type": "small_airport", + "name": "Maimun Saleh Airport", + "latitude_deg": "5.874668", + "longitude_deg": "95.33967", + "elevation_ft": "393", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-AC", + "municipality": "Sabang", + "scheduled_service": "no", + "gps_code": "WITN", + "iata_code": "SBG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maimun_Saleh_Airport", + "keywords": "WIAA WITB" + }, + { + "id": "31889", + "ident": "WITC", + "type": "medium_airport", + "name": "Cut Nyak Dhien Airport", + "latitude_deg": "4.040631", + "longitude_deg": "96.253538", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-AC", + "municipality": "Kuala Pesisir", + "scheduled_service": "yes", + "gps_code": "WITC", + "iata_code": "MEQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cut_Nyak_Dhien_Airport" + }, + { + "id": "32655", + "ident": "WITG", + "type": "small_airport", + "name": "Lasikin Airport", + "latitude_deg": "2.410916", + "longitude_deg": "96.326766", + "elevation_ft": "19", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-AC", + "municipality": "Lubang", + "scheduled_service": "no", + "gps_code": "WITG" + }, + { + "id": "333093", + "ident": "WITK", + "type": "medium_airport", + "name": "Rembele Airport", + "latitude_deg": "4.72113", + "longitude_deg": "96.851943", + "elevation_ft": "4648", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-AC", + "municipality": "Takengon", + "scheduled_service": "yes", + "gps_code": "WITK", + "iata_code": "TXE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rembele_Airport" + }, + { + "id": "26860", + "ident": "WITL", + "type": "medium_airport", + "name": "Lhok Sukon Airport", + "latitude_deg": "5.069509983062744", + "longitude_deg": "97.25920104980469", + "elevation_ft": "28", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-AC", + "municipality": "Lhok Sukon-Sumatra Island", + "scheduled_service": "no", + "gps_code": "WITL", + "iata_code": "LSX" + }, + { + "id": "26861", + "ident": "WITM", + "type": "small_airport", + "name": "Malikus Saleh Airport", + "latitude_deg": "5.226679801940918", + "longitude_deg": "96.95030212402344", + "elevation_ft": "90", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-AC", + "municipality": "Lhok Seumawe-Sumatra Island", + "scheduled_service": "yes", + "gps_code": "WITM", + "iata_code": "LSW" + }, + { + "id": "41472", + "ident": "WITS", + "type": "small_airport", + "name": "Seumayam Airport", + "latitude_deg": "3.75", + "longitude_deg": "96.63333129882812", + "elevation_ft": "53", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-AC", + "municipality": "Seumayam-Sumatra Island", + "scheduled_service": "no", + "gps_code": "WITS" + }, + { + "id": "26862", + "ident": "WITT", + "type": "medium_airport", + "name": "Sultan Iskandar Muda International Airport", + "latitude_deg": "5.522872024010001", + "longitude_deg": "95.42063713070002", + "elevation_ft": "65", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-AC", + "municipality": "Banda Aceh", + "scheduled_service": "yes", + "gps_code": "WITT", + "iata_code": "BTJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sultan_Iskandar_Muda_International_Airport", + "keywords": "WIAB" + }, + { + "id": "313309", + "ident": "WJBK", + "type": "closed", + "name": "Berkeley Municipal Heliport", + "latitude_deg": "37.8666", + "longitude_deg": "-122.3065", + "elevation_ft": "12", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CA", + "municipality": "Oakland", + "scheduled_service": "no", + "gps_code": "WJBK", + "iata_code": "JBK", + "local_code": "JBK" + }, + { + "id": "41322", + "ident": "WMAA", + "type": "closed", + "name": "Bahau Airport", + "latitude_deg": "2.81667", + "longitude_deg": "102.417", + "elevation_ft": "214", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-05", + "municipality": "Bahau", + "scheduled_service": "no", + "gps_code": "WMAA" + }, + { + "id": "41323", + "ident": "WMAB", + "type": "small_airport", + "name": "Batu Pahat Airport", + "latitude_deg": "1.74666", + "longitude_deg": "102.987976", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-01", + "municipality": "Batu Pahat", + "scheduled_service": "no", + "gps_code": "WMAB" + }, + { + "id": "32660", + "ident": "WMAC", + "type": "small_airport", + "name": "Benta Airport", + "latitude_deg": "4.048643", + "longitude_deg": "101.985569", + "elevation_ft": "250", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-06", + "municipality": "Benta", + "scheduled_service": "no", + "gps_code": "WMAC" + }, + { + "id": "32661", + "ident": "WMAD", + "type": "closed", + "name": "Bentong Airport", + "latitude_deg": "3.550811", + "longitude_deg": "101.894041", + "elevation_ft": "350", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-06", + "municipality": "Bentong", + "scheduled_service": "no", + "gps_code": "WMAD" + }, + { + "id": "32662", + "ident": "WMAE", + "type": "small_airport", + "name": "Bidor Airport", + "latitude_deg": "4.11638879776001", + "longitude_deg": "101.28199768066406", + "elevation_ft": "128", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-08", + "municipality": "Bidor", + "scheduled_service": "no", + "gps_code": "WMAE" + }, + { + "id": "41324", + "ident": "WMAG", + "type": "small_airport", + "name": "Dungun Airport", + "latitude_deg": "4.786290168762207", + "longitude_deg": "103.38200378417969", + "elevation_ft": "22", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-11", + "municipality": "Dungun", + "scheduled_service": "no", + "gps_code": "WMAG" + }, + { + "id": "32663", + "ident": "WMAH", + "type": "small_airport", + "name": "Grik Airport", + "latitude_deg": "5.432849", + "longitude_deg": "101.123658", + "elevation_ft": "420", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-08", + "municipality": "Grik", + "scheduled_service": "no", + "gps_code": "WMAH" + }, + { + "id": "32664", + "ident": "WMAJ", + "type": "small_airport", + "name": "Jendarata Airport", + "latitude_deg": "3.8997199535369873", + "longitude_deg": "100.9489974975586", + "elevation_ft": "8", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-08", + "municipality": "Jendarata", + "scheduled_service": "no", + "gps_code": "WMAJ" + }, + { + "id": "41325", + "ident": "WMAL", + "type": "small_airport", + "name": "Kuala Kerai Airport", + "latitude_deg": "5.538680076599121", + "longitude_deg": "102.19499969482422", + "elevation_ft": "137", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-03", + "municipality": "Kuala Kerai", + "scheduled_service": "no", + "gps_code": "WMAL" + }, + { + "id": "41326", + "ident": "WMAN", + "type": "small_airport", + "name": "Sungai Tiang Airport", + "latitude_deg": "4.330277919769287", + "longitude_deg": "102.3949966430664", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-06", + "municipality": "Taman Negara", + "scheduled_service": "no", + "gps_code": "WMAN", + "iata_code": "SXT" + }, + { + "id": "26863", + "ident": "WMAP", + "type": "medium_airport", + "name": "Kluang Airport", + "latitude_deg": "2.04138994217", + "longitude_deg": "103.306999207", + "elevation_ft": "150", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-01", + "municipality": "Kluang", + "scheduled_service": "no", + "gps_code": "WMAP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kluang_Airport" + }, + { + "id": "41327", + "ident": "WMAQ", + "type": "small_airport", + "name": "Labis Airport", + "latitude_deg": "2.38024", + "longitude_deg": "103.03393", + "elevation_ft": "179", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-01", + "municipality": "Labis", + "scheduled_service": "no", + "gps_code": "WMAQ" + }, + { + "id": "31888", + "ident": "WMAU", + "type": "small_airport", + "name": "Mersing Airport", + "latitude_deg": "2.389148", + "longitude_deg": "103.874183", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-01", + "municipality": "Mersing", + "scheduled_service": "no", + "gps_code": "WMAU", + "iata_code": "MEP" + }, + { + "id": "32665", + "ident": "WMAV", + "type": "small_airport", + "name": "Muar / Bakri Airport", + "latitude_deg": "2.05215", + "longitude_deg": "102.65795", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-01", + "municipality": "Muar", + "scheduled_service": "no", + "gps_code": "WMAV" + }, + { + "id": "32666", + "ident": "WMAZ", + "type": "small_airport", + "name": "Segamat Airport", + "latitude_deg": "2.498023", + "longitude_deg": "102.839756", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-01", + "municipality": "Segamat", + "scheduled_service": "no", + "gps_code": "WMAZ" + }, + { + "id": "32404", + "ident": "WMBA", + "type": "small_airport", + "name": "Sitiawan Airport", + "latitude_deg": "4.2222", + "longitude_deg": "100.6993", + "elevation_ft": "25", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-08", + "municipality": "Sitiawan", + "scheduled_service": "no", + "gps_code": "WMBA", + "iata_code": "SWY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sitiawan_Airport" + }, + { + "id": "41328", + "ident": "WMBB", + "type": "closed", + "name": "Sungai Petani Airport", + "latitude_deg": "5.623781", + "longitude_deg": "100.541963", + "elevation_ft": "90", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-02", + "municipality": "Sungai Petani", + "scheduled_service": "no", + "gps_code": "WMBB" + }, + { + "id": "32667", + "ident": "WMBE", + "type": "small_airport", + "name": "Semantan Airport", + "latitude_deg": "3.480521", + "longitude_deg": "102.377901", + "elevation_ft": "100", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-06", + "municipality": "Temerloh", + "scheduled_service": "no", + "gps_code": "WMBE" + }, + { + "id": "32668", + "ident": "WMBF", + "type": "small_airport", + "name": "Ulu Bernam Airport", + "latitude_deg": "3.740934", + "longitude_deg": "101.168504", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-08", + "municipality": "Ulu Bernam", + "scheduled_service": "no", + "gps_code": "WMBF" + }, + { + "id": "32669", + "ident": "WMBH", + "type": "small_airport", + "name": "Pengkalan Hulu Airport", + "latitude_deg": "5.695909", + "longitude_deg": "100.996797", + "elevation_ft": "1000", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-08", + "municipality": "Pengkalan Hulu", + "scheduled_service": "no", + "gps_code": "WMBH" + }, + { + "id": "32472", + "ident": "WMBI", + "type": "small_airport", + "name": "Taiping (Tekah) Airport", + "latitude_deg": "4.866432", + "longitude_deg": "100.715381", + "elevation_ft": "40", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-08", + "municipality": "Taiping", + "scheduled_service": "no", + "gps_code": "WMBI", + "iata_code": "TPG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taiping_Airport" + }, + { + "id": "26864", + "ident": "WMBT", + "type": "medium_airport", + "name": "Tioman Airport", + "latitude_deg": "2.81818", + "longitude_deg": "104.160004", + "elevation_ft": "15", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-06", + "municipality": "Pulau Tioman", + "scheduled_service": "yes", + "gps_code": "WMBT", + "iata_code": "TOD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tioman_Airport", + "keywords": "Kampung Tekek, Sultan Ahmad Shah" + }, + { + "id": "26865", + "ident": "WMGK", + "type": "small_airport", + "name": "Gong Kedak Airport", + "latitude_deg": "5.799570083618164", + "longitude_deg": "102.48400115966797", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-03", + "scheduled_service": "no", + "gps_code": "WMGK" + }, + { + "id": "26866", + "ident": "WMKA", + "type": "medium_airport", + "name": "Sultan Abdul Halim Airport", + "latitude_deg": "6.189670085906982", + "longitude_deg": "100.39800262451172", + "elevation_ft": "15", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-02", + "municipality": "Alor Satar", + "scheduled_service": "yes", + "gps_code": "WMKA", + "iata_code": "AOR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sultan_Abdul_Halim_Airport" + }, + { + "id": "26867", + "ident": "WMKB", + "type": "medium_airport", + "name": "RMAF Butterworth Air Base", + "latitude_deg": "5.46592", + "longitude_deg": "100.390999", + "elevation_ft": "11", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-07", + "municipality": "Butterworth", + "scheduled_service": "no", + "gps_code": "WMKB", + "iata_code": "BWH", + "wikipedia_link": "https://en.wikipedia.org/wiki/RMAF_Butterworth_Air_Base", + "keywords": "RAF Butterworth" + }, + { + "id": "26868", + "ident": "WMKC", + "type": "medium_airport", + "name": "Sultan Ismail Petra Airport", + "latitude_deg": "6.1668500900268555", + "longitude_deg": "102.29299926757812", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-03", + "municipality": "Kota Baharu", + "scheduled_service": "yes", + "gps_code": "WMKC", + "iata_code": "KBR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sultan_Ismail_Petra_Airport" + }, + { + "id": "26869", + "ident": "WMKD", + "type": "medium_airport", + "name": "Kuantan Airport", + "latitude_deg": "3.7753899097442627", + "longitude_deg": "103.20899963378906", + "elevation_ft": "58", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-06", + "municipality": "Kuantan", + "scheduled_service": "yes", + "gps_code": "WMKD", + "iata_code": "KUA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sultan_Haji_Ahmad_Shah_Airport" + }, + { + "id": "26870", + "ident": "WMKE", + "type": "medium_airport", + "name": "Kerteh Airport", + "latitude_deg": "4.537220001220703", + "longitude_deg": "103.427001953125", + "elevation_ft": "18", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-11", + "municipality": "Kerteh", + "scheduled_service": "no", + "gps_code": "WMKE", + "iata_code": "KTE" + }, + { + "id": "26871", + "ident": "WMKF", + "type": "small_airport", + "name": "Simpang Airport", + "latitude_deg": "3.1122500896453857", + "longitude_deg": "101.7030029296875", + "elevation_ft": "111", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-14", + "municipality": "Kuala Lumpur", + "scheduled_service": "no", + "gps_code": "WMKF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sungai_Besi_Airport" + }, + { + "id": "26872", + "ident": "WMKI", + "type": "medium_airport", + "name": "Sultan Azlan Shah Airport", + "latitude_deg": "4.567969799041748", + "longitude_deg": "101.09200286865234", + "elevation_ft": "130", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-08", + "municipality": "Ipoh", + "scheduled_service": "yes", + "gps_code": "WMKI", + "iata_code": "IPH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sultan_Azlan_Shah_Airport" + }, + { + "id": "26873", + "ident": "WMKJ", + "type": "medium_airport", + "name": "Senai International Airport", + "latitude_deg": "1.64131", + "longitude_deg": "103.669998", + "elevation_ft": "135", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-01", + "municipality": "Johor Bahru", + "scheduled_service": "yes", + "gps_code": "WMKJ", + "iata_code": "JHB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Senai_International_Airport", + "keywords": "Sultan Ismail Airport" + }, + { + "id": "26874", + "ident": "WMKK", + "type": "large_airport", + "name": "Kuala Lumpur International Airport", + "latitude_deg": "2.745579957962", + "longitude_deg": "101.70999908447", + "elevation_ft": "69", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-14", + "municipality": "Kuala Lumpur", + "scheduled_service": "yes", + "gps_code": "WMKK", + "iata_code": "KUL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kuala_Lumpur_International_Airport", + "keywords": "KLIA" + }, + { + "id": "26875", + "ident": "WMKL", + "type": "medium_airport", + "name": "Langkawi International Airport", + "latitude_deg": "6.329730033874512", + "longitude_deg": "99.72869873046875", + "elevation_ft": "29", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-02", + "municipality": "Langkawi", + "scheduled_service": "yes", + "gps_code": "WMKL", + "iata_code": "LGK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Langkawi_International_Airport" + }, + { + "id": "26876", + "ident": "WMKM", + "type": "medium_airport", + "name": "Malacca International Airport", + "latitude_deg": "2.265613", + "longitude_deg": "102.252778", + "elevation_ft": "35", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-04", + "municipality": "Malacca", + "scheduled_service": "no", + "gps_code": "WMKM", + "iata_code": "MKZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Malacca_International_Airport", + "keywords": "Batu Berendam" + }, + { + "id": "26877", + "ident": "WMKN", + "type": "medium_airport", + "name": "Sultan Mahmud Airport", + "latitude_deg": "5.3826398849487305", + "longitude_deg": "103.10299682617188", + "elevation_ft": "21", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-11", + "municipality": "Kuala Terengganu", + "scheduled_service": "yes", + "gps_code": "WMKN", + "iata_code": "TGG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sultan_Mahmud_Airport" + }, + { + "id": "26878", + "ident": "WMKP", + "type": "medium_airport", + "name": "Penang International Airport", + "latitude_deg": "5.297140121459961", + "longitude_deg": "100.2770004272461", + "elevation_ft": "11", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-07", + "municipality": "Penang", + "scheduled_service": "yes", + "gps_code": "WMKP", + "iata_code": "PEN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Penang_International_Airport" + }, + { + "id": "41329", + "ident": "WMLH", + "type": "heliport", + "name": "TLDM Lumut Heliport", + "latitude_deg": "4.233307", + "longitude_deg": "100.616276", + "elevation_ft": "15", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-08", + "municipality": "Lumut", + "scheduled_service": "no", + "gps_code": "WMLH" + }, + { + "id": "42332", + "ident": "WMLU", + "type": "closed", + "name": "Lutong Airport", + "latitude_deg": "4.454601", + "longitude_deg": "114.003518", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-13", + "municipality": "Miri", + "scheduled_service": "no", + "gps_code": "WMLU", + "wikipedia_link": "https://web.archive.org/web/20220827174514/https://en.wikipedia.org/w/index.php?title=Lutong_Airport&oldid=995473364", + "keywords": "WMLU" + }, + { + "id": "35209", + "ident": "WMPA", + "type": "small_airport", + "name": "Pulau Pangkor Airport", + "latitude_deg": "4.244719982147217", + "longitude_deg": "100.5530014038086", + "elevation_ft": "19", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-08", + "municipality": "Pangkor Island", + "scheduled_service": "yes", + "gps_code": "WMPA", + "iata_code": "PKG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pangkor_Airport" + }, + { + "id": "41319", + "ident": "WMPR", + "type": "small_airport", + "name": "LTS Pulau Redang Airport", + "latitude_deg": "5.764804", + "longitude_deg": "103.004942", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-11", + "municipality": "Redang", + "scheduled_service": "no", + "gps_code": "WMPR", + "iata_code": "RDN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Redang_Airport" + }, + { + "id": "26879", + "ident": "WMSA", + "type": "medium_airport", + "name": "Sultan Abdul Aziz Shah International Airport", + "latitude_deg": "3.130579948425293", + "longitude_deg": "101.54900360107422", + "elevation_ft": "90", + "continent": "AS", + "iso_country": "MY", + "iso_region": "MY-10", + "municipality": "Subang", + "scheduled_service": "yes", + "gps_code": "WMSA", + "iata_code": "SZB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sultan_Abdul_Aziz_Shah_Airport" + }, + { + "id": "25795", + "ident": "WN00", + "type": "small_airport", + "name": "Kimshan Ranch Airport", + "latitude_deg": "47.8400993347168", + "longitude_deg": "-122.86000061035156", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Quilcene", + "scheduled_service": "no", + "gps_code": "WN00", + "local_code": "WN00" + }, + { + "id": "25796", + "ident": "WN01", + "type": "closed", + "name": "Seattle Private Number One Heliport", + "latitude_deg": "47.621226", + "longitude_deg": "-122.343226", + "elevation_ft": "120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Seattle", + "scheduled_service": "no", + "gps_code": "WN01", + "local_code": "WN01", + "home_link": "https://web.archive.org/web/20210114164019/http://pcad.lib.washington.edu/building/22063/", + "keywords": "WN01" + }, + { + "id": "25797", + "ident": "WN02", + "type": "heliport", + "name": "Mile Bluff Medical Center Heliport", + "latitude_deg": "43.78229904174805", + "longitude_deg": "-90.07579803466797", + "elevation_ft": "920", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Mauston", + "scheduled_service": "no", + "gps_code": "WN02", + "local_code": "WN02" + }, + { + "id": "25798", + "ident": "WN03", + "type": "small_airport", + "name": "Van Der Vaart Airport", + "latitude_deg": "43.6786003112793", + "longitude_deg": "-87.72560119628906", + "elevation_ft": "622", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Sheboygan", + "scheduled_service": "no", + "gps_code": "WN03", + "local_code": "WN03" + }, + { + "id": "25799", + "ident": "WN04", + "type": "closed", + "name": "Erickson Ranch Airport", + "latitude_deg": "48.39314", + "longitude_deg": "-118.09803", + "elevation_ft": "2924", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Colville", + "scheduled_service": "no", + "gps_code": "WN04", + "local_code": "WN04" + }, + { + "id": "25800", + "ident": "WN05", + "type": "small_airport", + "name": "Harris Airport", + "latitude_deg": "46.514801025390625", + "longitude_deg": "-122.79199981689453", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Toledo", + "scheduled_service": "no", + "gps_code": "WN05", + "local_code": "WN05" + }, + { + "id": "25801", + "ident": "WN06", + "type": "heliport", + "name": "Providence Southgate Medical Park Heliport", + "latitude_deg": "46.055942", + "longitude_deg": "-118.329508", + "elevation_ft": "958", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Walla Walla", + "scheduled_service": "no", + "gps_code": "WN06", + "local_code": "WN06", + "keywords": "Walla Walla General Hospital" + }, + { + "id": "25802", + "ident": "WN07", + "type": "small_airport", + "name": "Decatur Shores Airport", + "latitude_deg": "48.499801635699995", + "longitude_deg": "-122.814002991", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Decatur", + "scheduled_service": "no", + "gps_code": "WN07", + "iata_code": "DTR", + "local_code": "WN07" + }, + { + "id": "25803", + "ident": "WN08", + "type": "small_airport", + "name": "Kendall Airstrip", + "latitude_deg": "48.914798736572266", + "longitude_deg": "-122.11299896240234", + "elevation_ft": "548", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Kendall", + "scheduled_service": "no", + "gps_code": "WN08", + "local_code": "WN08" + }, + { + "id": "25804", + "ident": "WN09", + "type": "small_airport", + "name": "Bucky's Airpark", + "latitude_deg": "44.1643981934", + "longitude_deg": "-89.508102417", + "elevation_ft": "1145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Plainfield", + "scheduled_service": "no", + "gps_code": "WN09", + "local_code": "WN09" + }, + { + "id": "25805", + "ident": "WN10", + "type": "small_airport", + "name": "Mount St Helens Aero Ranch Airport", + "latitude_deg": "45.992882", + "longitude_deg": "-122.379992", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ariel", + "scheduled_service": "no", + "gps_code": "WN10", + "local_code": "WN10" + }, + { + "id": "25806", + "ident": "WN11", + "type": "small_airport", + "name": "Red Roof Airport", + "latitude_deg": "45.58580017089844", + "longitude_deg": "-88.00370025634766", + "elevation_ft": "963", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Beecher", + "scheduled_service": "no", + "gps_code": "WN11", + "local_code": "WN11" + }, + { + "id": "25807", + "ident": "WN12", + "type": "heliport", + "name": "Fishtrap Heliport", + "latitude_deg": "47.14929962158203", + "longitude_deg": "-122.87000274658203", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Olympia", + "scheduled_service": "no", + "gps_code": "WN12", + "local_code": "WN12" + }, + { + "id": "25808", + "ident": "WN13", + "type": "small_airport", + "name": "Vaughan Ranch Airfield", + "latitude_deg": "47.465022", + "longitude_deg": "-122.568262", + "elevation_ft": "240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Port Orchard", + "scheduled_service": "no", + "gps_code": "WN13", + "local_code": "WN13" + }, + { + "id": "25809", + "ident": "WN14", + "type": "small_airport", + "name": "Pete's Airport", + "latitude_deg": "47.84159851074219", + "longitude_deg": "-117.4469985961914", + "elevation_ft": "2160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Deer Park", + "scheduled_service": "no", + "gps_code": "WN14", + "local_code": "WN14" + }, + { + "id": "25810", + "ident": "WN15", + "type": "small_airport", + "name": "Burnett Landing Airport", + "latitude_deg": "47.12969970703125", + "longitude_deg": "-122.05599975585938", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Wilkeson", + "scheduled_service": "no", + "gps_code": "WN15", + "local_code": "WN15" + }, + { + "id": "25811", + "ident": "WN16", + "type": "heliport", + "name": "KOMO TV Heliport", + "latitude_deg": "47.619572", + "longitude_deg": "-122.348642", + "elevation_ft": "363", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Seattle", + "scheduled_service": "no", + "gps_code": "WN16", + "local_code": "WN16" + }, + { + "id": "25812", + "ident": "WN17", + "type": "small_airport", + "name": "Hoverhawk Ranch Airport", + "latitude_deg": "47.33980178833008", + "longitude_deg": "-120.31600189208984", + "elevation_ft": "2450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Wenatchee", + "scheduled_service": "no", + "gps_code": "WN17", + "local_code": "WN17" + }, + { + "id": "25813", + "ident": "WN18", + "type": "small_airport", + "name": "Becker's Landing Airport", + "latitude_deg": "48.4567985534668", + "longitude_deg": "-122.53900146484375", + "elevation_ft": "155", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Anacortes", + "scheduled_service": "no", + "gps_code": "WN18", + "local_code": "WN18" + }, + { + "id": "25814", + "ident": "WN19", + "type": "closed", + "name": "Gig Harbor Seaplane Base", + "latitude_deg": "47.339801", + "longitude_deg": "-122.589996", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Gig Harbor", + "scheduled_service": "no", + "keywords": "WN19" + }, + { + "id": "45928", + "ident": "WN2", + "type": "seaplane_base", + "name": "Silver Lake Seaplane Base", + "latitude_deg": "45.584716", + "longitude_deg": "-91.924324", + "elevation_ft": "1248", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Cumberland", + "scheduled_service": "no", + "gps_code": "2WN2", + "local_code": "2WN2", + "keywords": "WN2" + }, + { + "id": "25815", + "ident": "WN20", + "type": "small_airport", + "name": "Van De Plasch Airport", + "latitude_deg": "47.87229919433594", + "longitude_deg": "-121.9229965209961", + "elevation_ft": "60", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "WN20", + "local_code": "WN20" + }, + { + "id": "25816", + "ident": "WN21", + "type": "small_airport", + "name": "Lawson Airpark", + "latitude_deg": "48.08150100708008", + "longitude_deg": "-123.39800262451172", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Port Angeles", + "scheduled_service": "no", + "gps_code": "WN21", + "local_code": "WN21" + }, + { + "id": "25817", + "ident": "WN22", + "type": "heliport", + "name": "Lake Union Heliport", + "latitude_deg": "47.65230178833008", + "longitude_deg": "-122.322998046875", + "elevation_ft": "52", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Seattle", + "scheduled_service": "no", + "gps_code": "WN22", + "local_code": "WN22" + }, + { + "id": "25818", + "ident": "WN23", + "type": "small_airport", + "name": "Grand View International Airport", + "latitude_deg": "48.10179901123047", + "longitude_deg": "-123.18000030517578", + "elevation_ft": "150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Sequim", + "scheduled_service": "no", + "gps_code": "WN23", + "local_code": "WN23" + }, + { + "id": "25819", + "ident": "WN24", + "type": "small_airport", + "name": "Cougar Flat Airstrip", + "latitude_deg": "46.295684", + "longitude_deg": "-122.950659", + "elevation_ft": "180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Castle Rock", + "scheduled_service": "no", + "gps_code": "WN24", + "local_code": "WN24" + }, + { + "id": "25820", + "ident": "WN25", + "type": "heliport", + "name": "Mayo Clinic Health System-Red Cedar Heliport", + "latitude_deg": "44.883805", + "longitude_deg": "-91.900894", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Menomonie", + "scheduled_service": "no", + "gps_code": "WN25", + "local_code": "WN25", + "keywords": "Myrtle Werth Medical Center" + }, + { + "id": "25821", + "ident": "WN26", + "type": "small_airport", + "name": "Schoepflin Airport", + "latitude_deg": "46.8849983215332", + "longitude_deg": "-117.0770034790039", + "elevation_ft": "2607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Palouse", + "scheduled_service": "no", + "gps_code": "WN26", + "local_code": "WN26" + }, + { + "id": "25822", + "ident": "WN27", + "type": "closed", + "name": "Redoft Airport", + "latitude_deg": "44.079201", + "longitude_deg": "-87.9757", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Collins", + "scheduled_service": "no", + "keywords": "WN27" + }, + { + "id": "25823", + "ident": "WN28", + "type": "small_airport", + "name": "Sunny Slope Runway Airport", + "latitude_deg": "44.9827995300293", + "longitude_deg": "-87.30950164794922", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Egg Harbor", + "scheduled_service": "no", + "gps_code": "WN28", + "local_code": "WN28" + }, + { + "id": "25824", + "ident": "WN29", + "type": "small_airport", + "name": "Blue Ribbon Airport", + "latitude_deg": "48.130401611328125", + "longitude_deg": "-123.20700073242188", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Sequim", + "scheduled_service": "no", + "gps_code": "WN29", + "local_code": "WN29" + }, + { + "id": "25825", + "ident": "WN30", + "type": "closed", + "name": "Clinesmith Ranch Airport", + "latitude_deg": "46.919899", + "longitude_deg": "-118.092003", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Benge", + "scheduled_service": "no", + "keywords": "WN30" + }, + { + "id": "25826", + "ident": "WN31", + "type": "small_airport", + "name": "Slinkard Airfield", + "latitude_deg": "46.603059", + "longitude_deg": "-119.062589", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Mesa", + "scheduled_service": "no", + "gps_code": "WN31", + "local_code": "WN31" + }, + { + "id": "25827", + "ident": "WN32", + "type": "heliport", + "name": "Newport Community Hospital Heliport", + "latitude_deg": "48.18190002441406", + "longitude_deg": "-117.04900360107422", + "elevation_ft": "2150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Newport", + "scheduled_service": "no", + "gps_code": "WN32", + "local_code": "WN32" + }, + { + "id": "25828", + "ident": "WN33", + "type": "small_airport", + "name": "Columbia Ag 2 Airport", + "latitude_deg": "46.380401611299995", + "longitude_deg": "-118.987998962", + "elevation_ft": "715", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Pasco", + "scheduled_service": "no", + "gps_code": "WN33", + "local_code": "WN33" + }, + { + "id": "25829", + "ident": "WN34", + "type": "closed", + "name": "Ethel International Airport", + "latitude_deg": "46.530427", + "longitude_deg": "-122.686658", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ethel", + "scheduled_service": "no", + "keywords": "WN34" + }, + { + "id": "25830", + "ident": "WN35", + "type": "small_airport", + "name": "Meadow Mist Airport", + "latitude_deg": "48.90869903564453", + "longitude_deg": "-122.56500244140625", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ferndale", + "scheduled_service": "no", + "gps_code": "WN35", + "local_code": "WN35" + }, + { + "id": "25831", + "ident": "WN36", + "type": "small_airport", + "name": "Kari Field", + "latitude_deg": "46.96900177001953", + "longitude_deg": "-122.82099914550781", + "elevation_ft": "224", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Olympia", + "scheduled_service": "no", + "gps_code": "WN36", + "local_code": "WN36" + }, + { + "id": "25832", + "ident": "WN37", + "type": "heliport", + "name": "McLaughlin Heliport", + "latitude_deg": "48.1106", + "longitude_deg": "-123.323996", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Port Angeles", + "scheduled_service": "no", + "gps_code": "WN37", + "local_code": "WN37", + "keywords": "Thompson Heliport" + }, + { + "id": "25833", + "ident": "WN38", + "type": "heliport", + "name": "Ross Complex Heliport", + "latitude_deg": "45.6682014465332", + "longitude_deg": "-122.64399719238281", + "elevation_ft": "256", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Vancouver", + "scheduled_service": "no", + "gps_code": "WN38", + "local_code": "WN38" + }, + { + "id": "25834", + "ident": "WN39", + "type": "small_airport", + "name": "Knutson Field", + "latitude_deg": "43.48189926147461", + "longitude_deg": "-89.32009887695312", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wyoceena", + "scheduled_service": "no", + "gps_code": "WN39", + "local_code": "WN39" + }, + { + "id": "25835", + "ident": "WN40", + "type": "small_airport", + "name": "Coupeville Airpark", + "latitude_deg": "48.190399169921875", + "longitude_deg": "-122.64299774169922", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Coupeville", + "scheduled_service": "no", + "gps_code": "WN40", + "local_code": "WN40" + }, + { + "id": "25836", + "ident": "WN41", + "type": "small_airport", + "name": "Redfern Aerodrome", + "latitude_deg": "47.304401", + "longitude_deg": "-117.961998", + "elevation_ft": "2050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Sprague", + "scheduled_service": "no", + "gps_code": "WN41", + "local_code": "WN41" + }, + { + "id": "25837", + "ident": "WN42", + "type": "small_airport", + "name": "Flying H Ranch Airport", + "latitude_deg": "47.183799743652344", + "longitude_deg": "-122.12000274658203", + "elevation_ft": "587", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Buckley", + "scheduled_service": "no", + "gps_code": "WN42", + "local_code": "WN42" + }, + { + "id": "25838", + "ident": "WN43", + "type": "heliport", + "name": "Lower Granite Dam Heliport", + "latitude_deg": "46.66130065917969", + "longitude_deg": "-117.43800354003906", + "elevation_ft": "652", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Colfax", + "scheduled_service": "no", + "gps_code": "WN43", + "local_code": "WN43" + }, + { + "id": "25839", + "ident": "WN44", + "type": "small_airport", + "name": "Podeweltz Airport", + "latitude_deg": "45.23939895629883", + "longitude_deg": "-89.56900024414062", + "elevation_ft": "1470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Merrill", + "scheduled_service": "no", + "gps_code": "WN44", + "local_code": "WN44" + }, + { + "id": "25840", + "ident": "WN45", + "type": "small_airport", + "name": "Take Five Airport", + "latitude_deg": "46.780093", + "longitude_deg": "-120.445226", + "elevation_ft": "1543", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Yakima", + "scheduled_service": "no", + "gps_code": "WN45", + "local_code": "WN45" + }, + { + "id": "25841", + "ident": "WN46", + "type": "closed", + "name": "Battle Creek Airport", + "latitude_deg": "43.067501", + "longitude_deg": "-88.508698", + "elevation_ft": "865", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Oconomowoc", + "scheduled_service": "no", + "keywords": "WN46" + }, + { + "id": "25842", + "ident": "WN47", + "type": "small_airport", + "name": "Bear Valley Skyranch Airport", + "latitude_deg": "47.08169937133789", + "longitude_deg": "-123.2699966430664", + "elevation_ft": "344", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Mc Cleary", + "scheduled_service": "no", + "gps_code": "WN47", + "local_code": "WN47" + }, + { + "id": "25843", + "ident": "WN48", + "type": "small_airport", + "name": "Kimbrel Farm Airport", + "latitude_deg": "46.790401458740234", + "longitude_deg": "-123.30999755859375", + "elevation_ft": "139", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Oakville", + "scheduled_service": "no", + "gps_code": "WN48", + "local_code": "WN48" + }, + { + "id": "25844", + "ident": "WN49", + "type": "small_airport", + "name": "Blue Heron Field", + "latitude_deg": "48.121799", + "longitude_deg": "-123.087997", + "elevation_ft": "20", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Sequim", + "scheduled_service": "no", + "gps_code": "WN49", + "local_code": "WN49", + "keywords": "Flying S Airfield" + }, + { + "id": "25845", + "ident": "WN50", + "type": "heliport", + "name": "St Joseph Hospital Heliport", + "latitude_deg": "47.24456", + "longitude_deg": "-122.447594", + "elevation_ft": "467", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tacoma", + "scheduled_service": "no", + "gps_code": "WN50", + "local_code": "WN50" + }, + { + "id": "25846", + "ident": "WN51", + "type": "small_airport", + "name": "Bayview Farms Airport", + "latitude_deg": "48.52090072631836", + "longitude_deg": "-122.46499633789062", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "WN51", + "local_code": "WN51" + }, + { + "id": "25847", + "ident": "WN52", + "type": "heliport", + "name": "Cougar Heliport", + "latitude_deg": "46.049477", + "longitude_deg": "-122.303046", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Cougar", + "scheduled_service": "no", + "gps_code": "WN52", + "local_code": "WN52" + }, + { + "id": "25848", + "ident": "WN53", + "type": "small_airport", + "name": "Frontier Airpark", + "latitude_deg": "48.11079", + "longitude_deg": "-122.062958", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Lake Stevens", + "scheduled_service": "no", + "gps_code": "WN53", + "local_code": "WN53" + }, + { + "id": "25849", + "ident": "WN54", + "type": "small_airport", + "name": "Ellerport Airport", + "latitude_deg": "47.734901428222656", + "longitude_deg": "-117.07099914550781", + "elevation_ft": "2146", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Newman Lake", + "scheduled_service": "no", + "gps_code": "WN54", + "local_code": "WN54" + }, + { + "id": "25850", + "ident": "WN55", + "type": "small_airport", + "name": "Randle-Kiona Airpark", + "latitude_deg": "46.51150131225586", + "longitude_deg": "-122.00599670410156", + "elevation_ft": "934", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Randle", + "scheduled_service": "no", + "gps_code": "WN55", + "local_code": "WN55" + }, + { + "id": "25851", + "ident": "WN56", + "type": "heliport", + "name": "Columbia Basin Hospital Heliport", + "latitude_deg": "47.314300537109375", + "longitude_deg": "-119.5479965209961", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ephrata", + "scheduled_service": "no", + "gps_code": "WN56", + "local_code": "WN56" + }, + { + "id": "25852", + "ident": "WN57", + "type": "heliport", + "name": "Bade Rotor and Wing Svc. Heliport", + "latitude_deg": "46.924800872802734", + "longitude_deg": "-123.01000213623047", + "elevation_ft": "160", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Little Rock", + "scheduled_service": "no", + "gps_code": "WN57", + "local_code": "WN57" + }, + { + "id": "25853", + "ident": "WN58", + "type": "heliport", + "name": "Capitol Medical Center Heliport", + "latitude_deg": "47.043399810791016", + "longitude_deg": "-122.95099639892578", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Olympia", + "scheduled_service": "no", + "gps_code": "WN58", + "local_code": "WN58" + }, + { + "id": "25854", + "ident": "WN59", + "type": "small_airport", + "name": "Nelsons Nitch Airport", + "latitude_deg": "46.53760147", + "longitude_deg": "-122.7180023", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Onalaska", + "scheduled_service": "no", + "gps_code": "WN59", + "local_code": "WN59" + }, + { + "id": "25855", + "ident": "WN60", + "type": "closed", + "name": "Swanton Ultralightport", + "latitude_deg": "48.140598", + "longitude_deg": "-123.188004", + "elevation_ft": "110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Sequim", + "scheduled_service": "no", + "gps_code": "WN60", + "local_code": "WN60" + }, + { + "id": "25856", + "ident": "WN61", + "type": "small_airport", + "name": "Tai's Landing Airport", + "latitude_deg": "47.724949", + "longitude_deg": "-117.281059", + "elevation_ft": "2450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Spokane", + "scheduled_service": "no", + "gps_code": "WN61", + "local_code": "WN61" + }, + { + "id": "25857", + "ident": "WN62", + "type": "heliport", + "name": "Auburn Fire Department Heliport", + "latitude_deg": "47.31869888305664", + "longitude_deg": "-122.21900177001953", + "elevation_ft": "57", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "WN62", + "local_code": "WN62" + }, + { + "id": "25858", + "ident": "WN63", + "type": "small_airport", + "name": "Bristol Airport", + "latitude_deg": "42.53670120239258", + "longitude_deg": "-88.00399780273438", + "elevation_ft": "735", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Bristol", + "scheduled_service": "no", + "gps_code": "WN63", + "local_code": "WN63" + }, + { + "id": "25859", + "ident": "WN64", + "type": "small_airport", + "name": "J K D Farms Airport", + "latitude_deg": "46.974300384521484", + "longitude_deg": "-120.46199798583984", + "elevation_ft": "1575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ellensburg", + "scheduled_service": "no", + "gps_code": "WN64", + "local_code": "WN64" + }, + { + "id": "25860", + "ident": "WN65", + "type": "small_airport", + "name": "My Airport", + "latitude_deg": "46.97523", + "longitude_deg": "-123.476737", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Elma", + "scheduled_service": "no", + "gps_code": "WN65", + "local_code": "WN65" + }, + { + "id": "25861", + "ident": "WN66", + "type": "seaplane_base", + "name": "Cranberry International Seaplane Base", + "latitude_deg": "45.85129928588867", + "longitude_deg": "-89.45120239257812", + "elevation_ft": "1605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Eagle River", + "scheduled_service": "no", + "gps_code": "WN66", + "local_code": "WN66" + }, + { + "id": "25862", + "ident": "WN67", + "type": "heliport", + "name": "Southwest Washington Medical Center Heliport", + "latitude_deg": "45.62300109863281", + "longitude_deg": "-122.58000183105469", + "elevation_ft": "296", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Vancouver", + "scheduled_service": "no", + "gps_code": "WN67", + "local_code": "WN67" + }, + { + "id": "25863", + "ident": "WN68", + "type": "heliport", + "name": "Aurora Medical Center Burlington Heliport", + "latitude_deg": "42.672512", + "longitude_deg": "-88.281503", + "elevation_ft": "804", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "WN68", + "local_code": "WN68", + "keywords": "Aurora Memorial Hospital of Burlington Heliport" + }, + { + "id": "25864", + "ident": "WN69", + "type": "heliport", + "name": "Leach Farms Heliport", + "latitude_deg": "42.64889907836914", + "longitude_deg": "-88.18679809570312", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Burlington", + "scheduled_service": "no", + "gps_code": "WN69", + "local_code": "WN69" + }, + { + "id": "25865", + "ident": "WN70", + "type": "closed", + "name": "Northwest Helicopters Heliport", + "latitude_deg": "46.9748", + "longitude_deg": "-122.900002", + "elevation_ft": "206", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Tumwater", + "scheduled_service": "no", + "keywords": "WN70" + }, + { + "id": "25866", + "ident": "WN71", + "type": "heliport", + "name": "Evans Heliport", + "latitude_deg": "47.630401611328125", + "longitude_deg": "-122.1760025024414", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Bellevue", + "scheduled_service": "no", + "gps_code": "WN71", + "local_code": "WN71" + }, + { + "id": "25867", + "ident": "WN72", + "type": "small_airport", + "name": "Kinch Farms Airport", + "latitude_deg": "46.864898681640625", + "longitude_deg": "-118.32499694824219", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Washtucna", + "scheduled_service": "no", + "gps_code": "WN72", + "local_code": "WN72" + }, + { + "id": "25868", + "ident": "WN73", + "type": "heliport", + "name": "St Joseph Hospital Main Campus Heliport", + "latitude_deg": "48.774562", + "longitude_deg": "-122.473971", + "elevation_ft": "157", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Bellingham", + "scheduled_service": "no", + "gps_code": "WN73", + "local_code": "WN73" + }, + { + "id": "25869", + "ident": "WN74", + "type": "small_airport", + "name": "Burnt Ridge Airstrip", + "latitude_deg": "46.58539962768555", + "longitude_deg": "-122.6259994506836", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Onalaska", + "scheduled_service": "no", + "gps_code": "WN74", + "local_code": "WN74" + }, + { + "id": "25870", + "ident": "WN75", + "type": "small_airport", + "name": "Erin Aero Airport", + "latitude_deg": "43.24470138549805", + "longitude_deg": "-88.37229919433594", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Hartford", + "scheduled_service": "no", + "gps_code": "WN75", + "local_code": "WN75" + }, + { + "id": "25871", + "ident": "WN76", + "type": "small_airport", + "name": "Bergseth Field", + "latitude_deg": "47.243799", + "longitude_deg": "-121.924317", + "elevation_ft": "1100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Enumclaw", + "scheduled_service": "no", + "gps_code": "WN76", + "local_code": "WN76" + }, + { + "id": "25872", + "ident": "WN77", + "type": "heliport", + "name": "Wnp-2 Plant Support Facility Heliport", + "latitude_deg": "46.464298248291016", + "longitude_deg": "-119.34100341796875", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Richland", + "scheduled_service": "no", + "gps_code": "WN77", + "local_code": "WN77" + }, + { + "id": "25873", + "ident": "WN79", + "type": "heliport", + "name": "Haley Heliport", + "latitude_deg": "47.70790100097656", + "longitude_deg": "-122.52400207519531", + "elevation_ft": "40", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Winslow", + "scheduled_service": "no", + "gps_code": "WN79", + "local_code": "WN79" + }, + { + "id": "25874", + "ident": "WN80", + "type": "small_airport", + "name": "Walters Arv Ultralightport", + "latitude_deg": "46.097900390625", + "longitude_deg": "-122.86499786376953", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Kelso", + "scheduled_service": "no", + "gps_code": "WN80", + "local_code": "WN80" + }, + { + "id": "25875", + "ident": "WN81", + "type": "heliport", + "name": "Ice Harbor Dam Heliport", + "latitude_deg": "46.252705", + "longitude_deg": "-118.878503", + "elevation_ft": "445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Pasco", + "scheduled_service": "no", + "gps_code": "WN81", + "local_code": "WN81" + }, + { + "id": "25876", + "ident": "WN82", + "type": "heliport", + "name": "Ferry County Memorial Hospital Heliport", + "latitude_deg": "48.6526985168457", + "longitude_deg": "-118.7300033569336", + "elevation_ft": "3500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Republic", + "scheduled_service": "no", + "gps_code": "WN82", + "local_code": "WN82" + }, + { + "id": "25877", + "ident": "WN83", + "type": "closed", + "name": "Telephone Utilities/TIW Heliport", + "latitude_deg": "47.3312", + "longitude_deg": "-122.601997", + "elevation_ft": "276", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Gig Harbor", + "scheduled_service": "no", + "keywords": "WN83" + }, + { + "id": "25878", + "ident": "WN84", + "type": "heliport", + "name": "Lower Monumental Dam Heliport", + "latitude_deg": "46.569000244140625", + "longitude_deg": "-118.53700256347656", + "elevation_ft": "465", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Kahlotus", + "scheduled_service": "no", + "gps_code": "WN84", + "local_code": "WN84" + }, + { + "id": "25879", + "ident": "WN85", + "type": "small_airport", + "name": "Morrisonville International Airport", + "latitude_deg": "43.27470016479492", + "longitude_deg": "-89.35040283203125", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Morrisonville", + "scheduled_service": "no", + "gps_code": "WN85", + "local_code": "WN85" + }, + { + "id": "25880", + "ident": "WN86", + "type": "small_airport", + "name": "St Croix Valley Airport", + "latitude_deg": "45.26390075683594", + "longitude_deg": "-92.62159729003906", + "elevation_ft": "1085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Osceola", + "scheduled_service": "no", + "gps_code": "WN86", + "local_code": "WN86" + }, + { + "id": "25881", + "ident": "WN87", + "type": "small_airport", + "name": "Bryan Airport", + "latitude_deg": "47.20859909057617", + "longitude_deg": "-122.09300231933594", + "elevation_ft": "630", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Enumclaw", + "scheduled_service": "no", + "gps_code": "WN87", + "local_code": "WN87" + }, + { + "id": "25882", + "ident": "WN88", + "type": "small_airport", + "name": "Martin Airport", + "latitude_deg": "46.5192985534668", + "longitude_deg": "-124.03199768066406", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ocean Park", + "scheduled_service": "no", + "gps_code": "WN88", + "local_code": "WN88" + }, + { + "id": "25883", + "ident": "WN89", + "type": "closed", + "name": "Lee's Airport", + "latitude_deg": "47.887699", + "longitude_deg": "-117.344002", + "elevation_ft": "1890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Chattaroy", + "scheduled_service": "no", + "keywords": "WN89" + }, + { + "id": "25884", + "ident": "WN90", + "type": "small_airport", + "name": "Taylorport Airport", + "latitude_deg": "45.373133", + "longitude_deg": "-91.294713", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Bruce", + "scheduled_service": "no", + "gps_code": "WN90", + "local_code": "WN90" + }, + { + "id": "25885", + "ident": "WN91", + "type": "heliport", + "name": "Evans Heliport", + "latitude_deg": "47.67430114746094", + "longitude_deg": "-122.0739974975586", + "elevation_ft": "200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Redmond", + "scheduled_service": "no", + "gps_code": "WN91", + "local_code": "WN91" + }, + { + "id": "25886", + "ident": "WN92", + "type": "small_airport", + "name": "Sky Meadows Airpark", + "latitude_deg": "47.608637", + "longitude_deg": "-117.180455", + "elevation_ft": "2350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Spokane", + "scheduled_service": "no", + "gps_code": "WN92", + "local_code": "WN92" + }, + { + "id": "25887", + "ident": "WN93", + "type": "heliport", + "name": "Park 90 Heliport", + "latitude_deg": "47.58449935913086", + "longitude_deg": "-122.32599639892578", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Seattle", + "scheduled_service": "no", + "gps_code": "WN93", + "local_code": "WN93" + }, + { + "id": "25888", + "ident": "WN94", + "type": "heliport", + "name": "East Adams Rural Hospital Heliport", + "latitude_deg": "47.121498107910156", + "longitude_deg": "-118.37200164794922", + "elevation_ft": "1780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ritzville", + "scheduled_service": "no", + "gps_code": "WN94", + "local_code": "WN94" + }, + { + "id": "25889", + "ident": "WN95", + "type": "closed", + "name": "Brown Boy Airport", + "latitude_deg": "46.884899", + "longitude_deg": "-119.890999", + "elevation_ft": "1125", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Vantage", + "scheduled_service": "no", + "keywords": "WN95" + }, + { + "id": "25890", + "ident": "WN96", + "type": "heliport", + "name": "Misty Isle Farms Heliport", + "latitude_deg": "47.404572", + "longitude_deg": "-122.488236", + "elevation_ft": "275", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Vashon Island", + "scheduled_service": "no", + "gps_code": "WN96", + "local_code": "WN96" + }, + { + "id": "25891", + "ident": "WN97", + "type": "heliport", + "name": "Froedtert Pleasant Prairie Hospital Heliport", + "latitude_deg": "42.563713", + "longitude_deg": "-87.923815", + "elevation_ft": "728", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Pleasant Prairie", + "scheduled_service": "no", + "gps_code": "WN97", + "local_code": "WN97", + "keywords": "St Catherine's" + }, + { + "id": "25892", + "ident": "WN98", + "type": "small_airport", + "name": "Florida North Airport", + "latitude_deg": "45.659400939941406", + "longitude_deg": "-91.52249908447266", + "elevation_ft": "1272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Birchwood", + "scheduled_service": "no", + "gps_code": "WN98", + "local_code": "WN98" + }, + { + "id": "25893", + "ident": "WN99", + "type": "small_airport", + "name": "Hayes Road Airport", + "latitude_deg": "44.65719985961914", + "longitude_deg": "-91.80860137939453", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Durand", + "scheduled_service": "no", + "gps_code": "WN99", + "local_code": "WN99" + }, + { + "id": "309968", + "ident": "WNU", + "type": "small_airport", + "name": "Wanuma Airport", + "latitude_deg": "-4.8961", + "longitude_deg": "145.3213", + "elevation_ft": "2260", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPM", + "municipality": "Wanuma", + "scheduled_service": "no", + "gps_code": "AYWH", + "iata_code": "WNU", + "local_code": "WUA" + }, + { + "id": "311018", + "ident": "WPAS", + "type": "small_airport", + "name": "Mathilda Batlayeri Airport", + "latitude_deg": "-7.848354", + "longitude_deg": "131.337068", + "elevation_ft": "446", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-MA", + "municipality": "Saumlaki-Yamdena Island", + "scheduled_service": "yes", + "gps_code": "WAPS", + "iata_code": "SXK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mathilda_Batlayeri_Airport" + }, + { + "id": "35136", + "ident": "WPAT", + "type": "small_airport", + "name": "Atauro Airport", + "latitude_deg": "-8.243133", + "longitude_deg": "125.606378", + "elevation_ft": "29", + "continent": "AS", + "iso_country": "TL", + "iso_region": "TL-AT", + "municipality": "Atauro", + "scheduled_service": "no", + "gps_code": "WPAT", + "iata_code": "AUT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Atauro_Island#Geography", + "keywords": "Atauro" + }, + { + "id": "26880", + "ident": "WPDB", + "type": "medium_airport", + "name": "Suai Airport", + "latitude_deg": "-9.30331039428711", + "longitude_deg": "125.28700256347656", + "elevation_ft": "96", + "continent": "AS", + "iso_country": "TL", + "iso_region": "TL-CO", + "municipality": "Suai", + "scheduled_service": "no", + "gps_code": "WPDB", + "iata_code": "UAI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Suai_Airport", + "keywords": "Covalima Airport" + }, + { + "id": "35140", + "ident": "WPDH", + "type": "heliport", + "name": "Dili City Heliport", + "latitude_deg": "-8.55900001526", + "longitude_deg": "125.537002563", + "continent": "AS", + "iso_country": "TL", + "iso_region": "TL-DI", + "municipality": "Dili", + "scheduled_service": "no", + "gps_code": "WPDH" + }, + { + "id": "26881", + "ident": "WPDL", + "type": "medium_airport", + "name": "Presidente Nicolau Lobato International Airport", + "latitude_deg": "-8.54640007019", + "longitude_deg": "125.526000977", + "elevation_ft": "154", + "continent": "AS", + "iso_country": "TL", + "iso_region": "TL-DI", + "municipality": "Dili", + "scheduled_service": "yes", + "gps_code": "WPDL", + "iata_code": "DIL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Presidente_Nicolau_Lobato_International_Airport", + "keywords": "Komoro Airport" + }, + { + "id": "26882", + "ident": "WPEC", + "type": "medium_airport", + "name": "Cakung Airport", + "latitude_deg": "-8.486479", + "longitude_deg": "126.399981", + "elevation_ft": "1771", + "continent": "AS", + "iso_country": "TL", + "iso_region": "TL-BA", + "municipality": "Baucau", + "scheduled_service": "no", + "gps_code": "WPEC", + "iata_code": "BCH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cakung_Airport", + "keywords": "English Madeira airport" + }, + { + "id": "35139", + "ident": "WPFL", + "type": "small_airport", + "name": "Fuiloro Airfield", + "latitude_deg": "-8.447964", + "longitude_deg": "126.987362", + "elevation_ft": "1366", + "continent": "AS", + "iso_country": "TL", + "iso_region": "TL-LA", + "municipality": "Fuiloro", + "scheduled_service": "no", + "gps_code": "WPFL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fuiloro", + "keywords": "Vila-De-Avis Airfield, Fuiloro, Abisu" + }, + { + "id": "35137", + "ident": "WPMN", + "type": "small_airport", + "name": "Maliana Airport", + "latitude_deg": "-8.97224", + "longitude_deg": "125.214996", + "continent": "AS", + "iso_country": "TL", + "iso_region": "TL-BO", + "municipality": "Maliana", + "scheduled_service": "no", + "gps_code": "WPMN", + "iata_code": "MPT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maliana_Airport", + "keywords": "Maliana" + }, + { + "id": "35138", + "ident": "WPOC", + "type": "medium_airport", + "name": "Rota Do Sândalo Oecusse Airport", + "latitude_deg": "-9.19806", + "longitude_deg": "124.343002", + "continent": "AS", + "iso_country": "TL", + "iso_region": "TL-OE", + "municipality": "Oecussi-Ambeno", + "scheduled_service": "no", + "gps_code": "WPOC", + "iata_code": "OEC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oecussi_Airport", + "keywords": "Oe-Kusi Ambenu, Ocussi, Oekussi, Oekusi, Okusi, Oé-Cusse" + }, + { + "id": "32577", + "ident": "WPVQ", + "type": "small_airport", + "name": "Viqueque Airport", + "latitude_deg": "-8.88379955291748", + "longitude_deg": "126.37300109863281", + "elevation_ft": "500", + "continent": "AS", + "iso_country": "TL", + "iso_region": "TL-VI", + "municipality": "Viqueque", + "scheduled_service": "no", + "gps_code": "WPVQ", + "iata_code": "VIQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Viqueque_Airport", + "keywords": "Vikeke" + }, + { + "id": "41474", + "ident": "WRBU", + "type": "small_airport", + "name": "Buntok Airport", + "latitude_deg": "-1.73250997066", + "longitude_deg": "114.838996887", + "elevation_ft": "59", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KT", + "municipality": "Buntok-Borneo Island", + "scheduled_service": "no", + "gps_code": "WRBU" + }, + { + "id": "41475", + "ident": "WRKA", + "type": "small_airport", + "name": "AA Bere Tallo (Haliwen) Airport", + "latitude_deg": "-9.074841", + "longitude_deg": "124.903285", + "elevation_ft": "1027", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NT", + "municipality": "Atambua", + "scheduled_service": "yes", + "gps_code": "WATA", + "iata_code": "ABU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Haliwen_Airport", + "keywords": "WRKA" + }, + { + "id": "41477", + "ident": "WRKJ", + "type": "small_airport", + "name": "Mena Airport", + "latitude_deg": "-9.183889389038086", + "longitude_deg": "124.58916473388672", + "elevation_ft": "320", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NT", + "municipality": "Mena-Timor Island", + "scheduled_service": "no", + "gps_code": "WRKJ" + }, + { + "id": "41478", + "ident": "WRKL", + "type": "small_airport", + "name": "Gewayentana Airport", + "latitude_deg": "-8.274424", + "longitude_deg": "123.002", + "elevation_ft": "63", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NT", + "municipality": "Larantuka-Flores Island", + "scheduled_service": "yes", + "gps_code": "WATL", + "iata_code": "LKA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gewayantana_Airport", + "keywords": "WRKL" + }, + { + "id": "41479", + "ident": "WRKM", + "type": "small_airport", + "name": "Kalabahi Airport", + "latitude_deg": "-8.216667175292969", + "longitude_deg": "124.56666564941406", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NT", + "municipality": "Kalabahi-Alor Island", + "scheduled_service": "no", + "gps_code": "WRKM" + }, + { + "id": "41480", + "ident": "WRKN", + "type": "small_airport", + "name": "Naikliu Airport", + "latitude_deg": "-9.49547004699707", + "longitude_deg": "123.79499816894531", + "elevation_ft": "60", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NT", + "municipality": "Naikliu-Timor Island", + "scheduled_service": "no", + "gps_code": "WRKN" + }, + { + "id": "41481", + "ident": "WRKR", + "type": "small_airport", + "name": "David Constantijn Saudale Airport", + "latitude_deg": "-10.7673", + "longitude_deg": "123.0747", + "elevation_ft": "470", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-NT", + "municipality": "Ba'a - Rote Island", + "scheduled_service": "no", + "gps_code": "WATR", + "iata_code": "RTI", + "home_link": "http://rti.otoritasbandara.info/", + "wikipedia_link": "https://en.wikipedia.org/wiki/David_Constantijn_Saudale_Airport", + "keywords": "WRKR, Roti Airport, Lekunik Airport" + }, + { + "id": "41483", + "ident": "WRLA", + "type": "small_airport", + "name": "Sanggata/Sangkimah Airport", + "latitude_deg": "0.3847", + "longitude_deg": "117.543", + "elevation_ft": "60", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KI", + "municipality": "Sanggata/Sangkimah", + "scheduled_service": "no", + "gps_code": "WALA", + "iata_code": "SGQ", + "wikipedia_link": "http://id.wikipedia.org/wiki/Bandar_Udara_Sangkimah", + "keywords": "WRLA, Pertamina" + }, + { + "id": "35279", + "ident": "WRLB", + "type": "small_airport", + "name": "Long Bawan Airport", + "latitude_deg": "3.9028", + "longitude_deg": "115.6921", + "elevation_ft": "3165", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KU", + "municipality": "Long Bawan", + "scheduled_service": "yes", + "gps_code": "WALB", + "iata_code": "LBW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Long_Bawan_Airport", + "keywords": "WRLB, Juvai Semaring Airport, Yuvai Semaring, Long Bawang" + }, + { + "id": "30806", + "ident": "WRLC", + "type": "small_airport", + "name": "Bontang Airport", + "latitude_deg": "0.119691", + "longitude_deg": "117.474998", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KI", + "municipality": "Bontang-Borneo Island", + "scheduled_service": "yes", + "gps_code": "WALC", + "iata_code": "BXT", + "wikipedia_link": "https://en.wikipedia.org/wiki/PT_Badak_Bontang_Airport", + "keywords": "WRLC" + }, + { + "id": "35281", + "ident": "WRLF", + "type": "small_airport", + "name": "Nunukan Airport", + "latitude_deg": "4.13333333333", + "longitude_deg": "117.666666667", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KU", + "municipality": "Nunukan-Nunukan Island", + "scheduled_service": "yes", + "gps_code": "WALF", + "iata_code": "NNX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nunukan_Airport" + }, + { + "id": "41484", + "ident": "WRLH", + "type": "small_airport", + "name": "Tanah Grogot Airport", + "latitude_deg": "-1.885541", + "longitude_deg": "116.256809", + "elevation_ft": "17", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KI", + "municipality": "Tanah Grogot", + "scheduled_service": "no", + "gps_code": "WRLH", + "iata_code": "TNB" + }, + { + "id": "311283", + "ident": "WRLJ", + "type": "small_airport", + "name": "Tanjung Bara Airport", + "latitude_deg": "0.5605", + "longitude_deg": "117.64435", + "elevation_ft": "66", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KI", + "municipality": "Sangata", + "scheduled_service": "no", + "gps_code": "WRLJ", + "local_code": "WRLJ", + "wikipedia_link": "http://id.wikipedia.org/wiki/Bandar_Udara_Tanjung_Bara" + }, + { + "id": "41487", + "ident": "WRLN", + "type": "small_airport", + "name": "Long Mawang Airport", + "latitude_deg": "1.7992", + "longitude_deg": "114.9043", + "elevation_ft": "1976", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KU", + "municipality": "Long Mawang-Borneo Island", + "scheduled_service": "no", + "gps_code": "WALN", + "keywords": "WRLN, Long Nawang" + }, + { + "id": "35278", + "ident": "WRLP", + "type": "small_airport", + "name": "Long Apung Airport", + "latitude_deg": "1.704486", + "longitude_deg": "114.970297", + "elevation_ft": "627", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KU", + "municipality": "Long Apung-Borneo Island", + "scheduled_service": "yes", + "gps_code": "WALP", + "iata_code": "LPU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Long_Apung_Airport", + "keywords": "WRLP" + }, + { + "id": "41488", + "ident": "WRLU", + "type": "small_airport", + "name": "Sangkulirang Airport", + "latitude_deg": "1.00089001656", + "longitude_deg": "117.996002197", + "elevation_ft": "34", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KI", + "municipality": "Sangkulirang-Borneo Island", + "scheduled_service": "no", + "gps_code": "WRLU" + }, + { + "id": "41489", + "ident": "WRLW", + "type": "small_airport", + "name": "Muara Wahau Airport", + "latitude_deg": "1.1213", + "longitude_deg": "116.851", + "elevation_ft": "205", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KI", + "municipality": "Muara Wahau-Borneo Island", + "scheduled_service": "no", + "gps_code": "WALW", + "keywords": "WRLW" + }, + { + "id": "41490", + "ident": "WRLY", + "type": "heliport", + "name": "Senipah Heliport", + "latitude_deg": "-0.975679", + "longitude_deg": "117.147701", + "elevation_ft": "38", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-KI", + "municipality": "Senipah", + "scheduled_service": "no", + "gps_code": "WALY", + "iata_code": "SZH", + "keywords": "WRLY, WW98" + }, + { + "id": "41491", + "ident": "WRSP", + "type": "closed", + "name": "Tanjung Perak Airport", + "latitude_deg": "-7.22", + "longitude_deg": "112.72", + "elevation_ft": "9", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-JI", + "municipality": "Surabaya", + "scheduled_service": "no", + "keywords": "WRSP" + }, + { + "id": "340684", + "ident": "WS-0001", + "type": "closed", + "name": "Lalomalava Airport", + "latitude_deg": "-14.031827", + "longitude_deg": "-171.435114", + "continent": "OC", + "iso_country": "WS", + "iso_region": "WS-FA", + "municipality": "Lalomalava", + "scheduled_service": "no", + "iata_code": "LAV" + }, + { + "id": "25895", + "ident": "WS01", + "type": "seaplane_base", + "name": "Archie's Seaplane Base", + "latitude_deg": "42.73749923706055", + "longitude_deg": "-89.0708999633789", + "elevation_ft": "768", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Janesville", + "scheduled_service": "no", + "gps_code": "WS01", + "local_code": "WS01" + }, + { + "id": "25896", + "ident": "WS02", + "type": "small_airport", + "name": "Polish Paradise Airport", + "latitude_deg": "43.74250030517578", + "longitude_deg": "-89.71600341796875", + "elevation_ft": "1030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Oxford", + "scheduled_service": "no", + "gps_code": "WS02", + "local_code": "WS02" + }, + { + "id": "25897", + "ident": "WS03", + "type": "heliport", + "name": "St Mary's Hospital of Milwaukee Heliport", + "latitude_deg": "43.06169891357422", + "longitude_deg": "-87.87920379638672", + "elevation_ft": "670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Milwaukee", + "scheduled_service": "no", + "gps_code": "WS03", + "local_code": "WS03" + }, + { + "id": "25898", + "ident": "WS04", + "type": "small_airport", + "name": "Zanadu Airport", + "latitude_deg": "44.032501220703125", + "longitude_deg": "-89.86509704589844", + "elevation_ft": "950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Arkdale", + "scheduled_service": "no", + "gps_code": "WS04", + "local_code": "WS04" + }, + { + "id": "25899", + "ident": "WS05", + "type": "closed", + "name": "Lonely Pines Airport", + "latitude_deg": "45.4772", + "longitude_deg": "-90.625098", + "elevation_ft": "1365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Kennan", + "scheduled_service": "no", + "keywords": "WS05" + }, + { + "id": "25900", + "ident": "WS06", + "type": "small_airport", + "name": "Springstead Airport", + "latitude_deg": "45.987701416015625", + "longitude_deg": "-90.16349792480469", + "elevation_ft": "1600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Park Falls", + "scheduled_service": "no", + "gps_code": "WS06", + "local_code": "WS06" + }, + { + "id": "25901", + "ident": "WS07", + "type": "heliport", + "name": "J.B. Heliport", + "latitude_deg": "43.627201080322266", + "longitude_deg": "-89.78510284423828", + "elevation_ft": "900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wisconsin Dells", + "scheduled_service": "no", + "gps_code": "WS07", + "local_code": "WS07" + }, + { + "id": "25902", + "ident": "WS08", + "type": "closed", + "name": "Five Corners Airways Airport", + "latitude_deg": "44.417999", + "longitude_deg": "-88.376999", + "elevation_ft": "815", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Appleton", + "scheduled_service": "no", + "keywords": "WS08" + }, + { + "id": "25903", + "ident": "WS09", + "type": "small_airport", + "name": "Rox Airport", + "latitude_deg": "44.013301849365234", + "longitude_deg": "-89.5248031616211", + "elevation_ft": "1017", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Coloma", + "scheduled_service": "no", + "gps_code": "WS09", + "local_code": "WS09" + }, + { + "id": "25904", + "ident": "WS10", + "type": "small_airport", + "name": "Casey Lake Airport", + "latitude_deg": "44.40800094604492", + "longitude_deg": "-89.01589965820312", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Waupaca", + "scheduled_service": "no", + "gps_code": "WS10", + "local_code": "WS10" + }, + { + "id": "25905", + "ident": "WS11", + "type": "small_airport", + "name": "Frievalt Airport", + "latitude_deg": "45.10029983520508", + "longitude_deg": "-88.1333999633789", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Pound", + "scheduled_service": "no", + "gps_code": "WS11", + "local_code": "WS11" + }, + { + "id": "25906", + "ident": "WS12", + "type": "small_airport", + "name": "Elert Airport", + "latitude_deg": "43.264400482177734", + "longitude_deg": "-89.32319641113281", + "elevation_ft": "972", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "De Forest", + "scheduled_service": "no", + "gps_code": "WS12", + "local_code": "WS12" + }, + { + "id": "25907", + "ident": "WS13", + "type": "small_airport", + "name": "Cloud Dancer Private Airport", + "latitude_deg": "45.3119010925293", + "longitude_deg": "-91.5896987915039", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Chetek", + "scheduled_service": "no", + "gps_code": "WS13", + "local_code": "WS13" + }, + { + "id": "25908", + "ident": "WS14", + "type": "small_airport", + "name": "Lake Ell Field", + "latitude_deg": "44.4640998840332", + "longitude_deg": "-89.35870361328125", + "elevation_ft": "1113", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Amherst", + "scheduled_service": "no", + "gps_code": "WS14", + "local_code": "WS14" + }, + { + "id": "25909", + "ident": "WS15", + "type": "small_airport", + "name": "Mill House Field", + "latitude_deg": "43.495201110839844", + "longitude_deg": "-89.2654037475586", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wyocena", + "scheduled_service": "no", + "gps_code": "WS15", + "local_code": "WS15" + }, + { + "id": "25910", + "ident": "WS16", + "type": "small_airport", + "name": "Scherrico Meadows Airport", + "latitude_deg": "44.847198486328125", + "longitude_deg": "-89.80149841308594", + "elevation_ft": "1345", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Mosinee", + "scheduled_service": "no", + "gps_code": "WS16", + "local_code": "WS16" + }, + { + "id": "25911", + "ident": "WS17", + "type": "small_airport", + "name": "Pioneer Airport", + "latitude_deg": "43.985045", + "longitude_deg": "-88.576083", + "elevation_ft": "826", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Oshkosh", + "scheduled_service": "no", + "gps_code": "WS17", + "local_code": "WS17", + "home_link": "http://www.airventuremuseum.org/flightops/pioneerairport/", + "wikipedia_link": "https://en.m.wikipedia.org/wiki/EAA_AirVenture_Museum#Pioneer_Airport" + }, + { + "id": "25912", + "ident": "WS18", + "type": "heliport", + "name": "Aurora Sheboygan Memorial Medical Center Heliport", + "latitude_deg": "43.77190017700195", + "longitude_deg": "-87.71029663085938", + "elevation_ft": "749", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Sheboygan", + "scheduled_service": "no", + "gps_code": "WS18", + "local_code": "WS18" + }, + { + "id": "25913", + "ident": "WS19", + "type": "small_airport", + "name": "Petit Cache Airport", + "latitude_deg": "46.89350128173828", + "longitude_deg": "-90.8207015991211", + "elevation_ft": "760", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Bayfield", + "scheduled_service": "no", + "gps_code": "WS19", + "local_code": "WS19" + }, + { + "id": "25914", + "ident": "WS20", + "type": "small_airport", + "name": "Young Tactical Landing Site Airport", + "latitude_deg": "43.95299912", + "longitude_deg": "-90.66259766", + "elevation_ft": "912", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Fort Mc Coy", + "scheduled_service": "no", + "gps_code": "WS20", + "local_code": "WS20" + }, + { + "id": "25915", + "ident": "WS21", + "type": "heliport", + "name": "Community Memorial Hospital Heliport", + "latitude_deg": "43.16389846801758", + "longitude_deg": "-88.1395034790039", + "elevation_ft": "918", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Menomonee Falls", + "scheduled_service": "no", + "gps_code": "WS21", + "local_code": "WS21" + }, + { + "id": "25916", + "ident": "WS22", + "type": "small_airport", + "name": "Wolfgram Airport", + "latitude_deg": "44.39469909667969", + "longitude_deg": "-88.68949890136719", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "New London", + "scheduled_service": "no", + "gps_code": "WS22", + "local_code": "WS22" + }, + { + "id": "25917", + "ident": "WS23", + "type": "small_airport", + "name": "R & S Landing Strip", + "latitude_deg": "45.2160987854", + "longitude_deg": "-89.7472000122", + "elevation_ft": "1309", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Merrill", + "scheduled_service": "no", + "gps_code": "WS23", + "local_code": "WS23" + }, + { + "id": "25918", + "ident": "WS24", + "type": "seaplane_base", + "name": "Round Lake Seaplane Base", + "latitude_deg": "46.006900787353516", + "longitude_deg": "-91.3104019165039", + "elevation_ft": "1346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Hayward", + "scheduled_service": "no", + "gps_code": "WS24", + "local_code": "WS24" + }, + { + "id": "25919", + "ident": "WS25", + "type": "small_airport", + "name": "Shangrila Airport", + "latitude_deg": "45.581600189208984", + "longitude_deg": "-87.84539794921875", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Beecher", + "scheduled_service": "no", + "gps_code": "WS25", + "local_code": "WS25" + }, + { + "id": "25920", + "ident": "WS26", + "type": "small_airport", + "name": "Ranch Side Airport", + "latitude_deg": "44.358832", + "longitude_deg": "-87.6073", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Kewaunee", + "scheduled_service": "no", + "gps_code": "WS26", + "local_code": "WS26" + }, + { + "id": "25921", + "ident": "WS27", + "type": "heliport", + "name": "Uw Hospital & Clinics Heliport", + "latitude_deg": "43.075801849365234", + "longitude_deg": "-89.43289947509766", + "elevation_ft": "901", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "WS27", + "local_code": "WS27" + }, + { + "id": "25922", + "ident": "WS28", + "type": "small_airport", + "name": "Coleman Airport", + "latitude_deg": "43.5536003112793", + "longitude_deg": "-89.38980102539062", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Portage", + "scheduled_service": "no", + "gps_code": "WS28", + "local_code": "WS28" + }, + { + "id": "25923", + "ident": "WS29", + "type": "small_airport", + "name": "Tachick Field", + "latitude_deg": "45.12030029296875", + "longitude_deg": "-88.14340209960938", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Pound", + "scheduled_service": "no", + "gps_code": "WS29", + "local_code": "WS29" + }, + { + "id": "25924", + "ident": "WS30", + "type": "small_airport", + "name": "Hexum Flight Park Ultralightport", + "latitude_deg": "45.1890983581543", + "longitude_deg": "-92.54830169677734", + "elevation_ft": "930", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Star Prairie", + "scheduled_service": "no", + "gps_code": "WS30", + "local_code": "WS30" + }, + { + "id": "25925", + "ident": "WS31", + "type": "closed", + "name": "Otto-Gibbons Airport", + "latitude_deg": "44.277802", + "longitude_deg": "-87.944504", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wayside", + "scheduled_service": "no", + "keywords": "WS31" + }, + { + "id": "25926", + "ident": "WS32", + "type": "small_airport", + "name": "Prescott Field", + "latitude_deg": "43.48360061645508", + "longitude_deg": "-89.2947998046875", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wyocena", + "scheduled_service": "no", + "gps_code": "WS32", + "local_code": "WS32" + }, + { + "id": "25927", + "ident": "WS33", + "type": "small_airport", + "name": "Storytown Airfield", + "latitude_deg": "42.90919876098633", + "longitude_deg": "-89.45099639892578", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Oregon", + "scheduled_service": "no", + "gps_code": "WS33", + "local_code": "WS33" + }, + { + "id": "25928", + "ident": "WS34", + "type": "heliport", + "name": "Fort Atkinson Memorial Hospital Heliport", + "latitude_deg": "42.931400299072266", + "longitude_deg": "-88.82820129394531", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Fort Atkinson", + "scheduled_service": "no", + "gps_code": "WS34", + "local_code": "WS34" + }, + { + "id": "25929", + "ident": "WS35", + "type": "heliport", + "name": "Theda Clark Regional Medical Center Heliport", + "latitude_deg": "44.18780136", + "longitude_deg": "-88.45320129", + "elevation_ft": "751", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Neenah", + "scheduled_service": "no", + "gps_code": "WS35", + "local_code": "WS35" + }, + { + "id": "25930", + "ident": "WS36", + "type": "small_airport", + "name": "Swan Field", + "latitude_deg": "44.271400451660156", + "longitude_deg": "-89.43710327148438", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Almond", + "scheduled_service": "no", + "gps_code": "WS36", + "local_code": "WS36" + }, + { + "id": "25931", + "ident": "WS37", + "type": "heliport", + "name": "Memorial Community Hospital Heliport", + "latitude_deg": "42.84000015258789", + "longitude_deg": "-89.07080078125", + "elevation_ft": "844", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Edgerton", + "scheduled_service": "no", + "gps_code": "WS37", + "local_code": "WS37" + }, + { + "id": "25932", + "ident": "WS38", + "type": "heliport", + "name": "Luther Hospital Heliport", + "latitude_deg": "44.813764", + "longitude_deg": "-91.512069", + "elevation_ft": "796", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Eau Claire", + "scheduled_service": "no", + "gps_code": "WS38", + "local_code": "WS38" + }, + { + "id": "25933", + "ident": "WS39", + "type": "small_airport", + "name": "Pinewood Air Park", + "latitude_deg": "45.69940185546875", + "longitude_deg": "-89.66239929199219", + "elevation_ft": "1560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Goodnow", + "scheduled_service": "no", + "gps_code": "WS39", + "local_code": "WS39" + }, + { + "id": "25934", + "ident": "WS40", + "type": "heliport", + "name": "Mercy Hospital Heliport", + "latitude_deg": "42.68830108642578", + "longitude_deg": "-89.03260040283203", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Janesville", + "scheduled_service": "no", + "gps_code": "WS40", + "local_code": "WS40" + }, + { + "id": "25935", + "ident": "WS41", + "type": "small_airport", + "name": "Rusmar Farms Airport", + "latitude_deg": "45.01219940185547", + "longitude_deg": "-92.55130004882812", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Roberts", + "scheduled_service": "no", + "gps_code": "WS41", + "local_code": "WS41" + }, + { + "id": "25936", + "ident": "WS42", + "type": "small_airport", + "name": "Owen-Withee Airport", + "latitude_deg": "44.95000076293945", + "longitude_deg": "-90.60009765625", + "elevation_ft": "1286", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Withee", + "scheduled_service": "no", + "gps_code": "WS42", + "local_code": "WS42" + }, + { + "id": "25937", + "ident": "WS43", + "type": "small_airport", + "name": "Birch Creek Airport", + "latitude_deg": "44.355499267578125", + "longitude_deg": "-88.05840301513672", + "elevation_ft": "813", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "De Pere", + "scheduled_service": "no", + "gps_code": "WS43", + "local_code": "WS43" + }, + { + "id": "25938", + "ident": "WS44", + "type": "small_airport", + "name": "Diderrich Ranch Airport", + "latitude_deg": "45.536598205566406", + "longitude_deg": "-90.70490264892578", + "elevation_ft": "1403", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Hawkins", + "scheduled_service": "no", + "gps_code": "WS44", + "local_code": "WS44" + }, + { + "id": "25939", + "ident": "WS45", + "type": "small_airport", + "name": "Circle K Airport", + "latitude_deg": "45.34159851074219", + "longitude_deg": "-89.67459869384766", + "elevation_ft": "1500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Irma", + "scheduled_service": "no", + "gps_code": "WS45", + "local_code": "WS45" + }, + { + "id": "25940", + "ident": "WS46", + "type": "small_airport", + "name": "J & L Aviation Airport", + "latitude_deg": "43.83100128173828", + "longitude_deg": "-88.88870239257812", + "elevation_ft": "975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Ripon", + "scheduled_service": "no", + "gps_code": "WS46", + "local_code": "WS46" + }, + { + "id": "25941", + "ident": "WS47", + "type": "heliport", + "name": "St Joseph's Hospital Heliport", + "latitude_deg": "44.94969940185547", + "longitude_deg": "-91.36100006103516", + "elevation_ft": "905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Chippewa Falls", + "scheduled_service": "no", + "gps_code": "WS47", + "local_code": "WS47" + }, + { + "id": "25942", + "ident": "WS48", + "type": "heliport", + "name": "Memorial Hospital Heliport", + "latitude_deg": "43.13330078125", + "longitude_deg": "-90.70790100097656", + "elevation_ft": "684", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Boscobel", + "scheduled_service": "no", + "gps_code": "WS48", + "local_code": "WS48" + }, + { + "id": "25943", + "ident": "WS49", + "type": "small_airport", + "name": "Christie Aerodrome", + "latitude_deg": "42.906551", + "longitude_deg": "-88.871562", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Fort Atkinson", + "scheduled_service": "no", + "gps_code": "WS49", + "local_code": "WS49" + }, + { + "id": "25944", + "ident": "WS50", + "type": "heliport", + "name": "Mercy Medical Center Heliport", + "latitude_deg": "44.02370071411133", + "longitude_deg": "-88.52279663085938", + "elevation_ft": "775", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Oshkosh", + "scheduled_service": "no", + "gps_code": "WS50", + "local_code": "WS50" + }, + { + "id": "25945", + "ident": "WS51", + "type": "small_airport", + "name": "Leeward Farm Airport", + "latitude_deg": "43.35279846191406", + "longitude_deg": "-90.68099975585938", + "elevation_ft": "1055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Soldiers Grove", + "scheduled_service": "no", + "gps_code": "WS51", + "local_code": "WS51" + }, + { + "id": "25946", + "ident": "WS52", + "type": "heliport", + "name": "SSM Health, St. Marys Hospital - Madison Heliport", + "latitude_deg": "43.059129", + "longitude_deg": "-89.402404", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Madison", + "scheduled_service": "no", + "gps_code": "WS52", + "local_code": "WS52", + "keywords": "St Marys Hospital Medical Center" + }, + { + "id": "25947", + "ident": "WS53", + "type": "heliport", + "name": "St Mary's Medical Center Heliport", + "latitude_deg": "42.73059844970703", + "longitude_deg": "-87.82689666748047", + "elevation_ft": "686", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Racine", + "scheduled_service": "no", + "gps_code": "WS53", + "local_code": "WS53" + }, + { + "id": "25948", + "ident": "WS54", + "type": "heliport", + "name": "Reedsburg Area Medical Center Heliport", + "latitude_deg": "43.550063", + "longitude_deg": "-89.992173", + "elevation_ft": "940", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Reedsburg", + "scheduled_service": "no", + "gps_code": "WS54", + "local_code": "WS54", + "keywords": "Reedsburg Memorial Hospital" + }, + { + "id": "25949", + "ident": "WS55", + "type": "small_airport", + "name": "Barten Airport", + "latitude_deg": "42.51750183105469", + "longitude_deg": "-88.74539947509766", + "elevation_ft": "977", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Sharon", + "scheduled_service": "no", + "gps_code": "WS55", + "local_code": "WS55" + }, + { + "id": "25950", + "ident": "WS56", + "type": "heliport", + "name": "St Nicholas Hospital Heliport", + "latitude_deg": "43.76139831542969", + "longitude_deg": "-87.7490005493164", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Sheboygan", + "scheduled_service": "no", + "gps_code": "WS56", + "local_code": "WS56" + }, + { + "id": "25951", + "ident": "WS57", + "type": "heliport", + "name": "Westosha Emergency Center Heliport", + "latitude_deg": "42.54249954223633", + "longitude_deg": "-88.17040252685547", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Silver Lake", + "scheduled_service": "no", + "gps_code": "WS57", + "local_code": "WS57" + }, + { + "id": "25952", + "ident": "WS58", + "type": "heliport", + "name": "Spooner Hospital Heliport", + "latitude_deg": "45.825801849365234", + "longitude_deg": "-91.89569854736328", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Spooner", + "scheduled_service": "no", + "gps_code": "WS58", + "local_code": "WS58" + }, + { + "id": "25953", + "ident": "WS59", + "type": "heliport", + "name": "Door County Memorial Hospital Heliport", + "latitude_deg": "44.83219909667969", + "longitude_deg": "-87.35310363769531", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Sturgeon Bay", + "scheduled_service": "no", + "gps_code": "WS59", + "local_code": "WS59" + }, + { + "id": "25954", + "ident": "WS60", + "type": "small_airport", + "name": "Vern Air Park", + "latitude_deg": "44.93389892578125", + "longitude_deg": "-90.83100128173828", + "elevation_ft": "1169", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Thorp", + "scheduled_service": "no", + "gps_code": "WS60", + "local_code": "WS60" + }, + { + "id": "25955", + "ident": "WS61", + "type": "heliport", + "name": "Tomah Memorial Hospital Heliport", + "latitude_deg": "43.98469924926758", + "longitude_deg": "-90.5154037475586", + "elevation_ft": "965", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Tomah", + "scheduled_service": "no", + "gps_code": "WS61", + "local_code": "WS61" + }, + { + "id": "25956", + "ident": "WS62", + "type": "small_airport", + "name": "Sugar Ridge Airport", + "latitude_deg": "42.963600158691406", + "longitude_deg": "-89.58100128173828", + "elevation_ft": "1080", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Verona", + "scheduled_service": "no", + "gps_code": "WS62", + "local_code": "WS62" + }, + { + "id": "25957", + "ident": "WS63", + "type": "heliport", + "name": "Memorial Medical Center Heliport", + "latitude_deg": "46.56779861450195", + "longitude_deg": "-90.8904037475586", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Ashland", + "scheduled_service": "no", + "gps_code": "WS63", + "local_code": "WS63" + }, + { + "id": "25958", + "ident": "WS64", + "type": "seaplane_base", + "name": "Schiffmann Seaplane Base", + "latitude_deg": "45.888099670410156", + "longitude_deg": "-89.53289794921875", + "elevation_ft": "1589", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "St Germain", + "scheduled_service": "no", + "gps_code": "WS64", + "local_code": "WS64" + }, + { + "id": "25959", + "ident": "WS65", + "type": "heliport", + "name": "Aspirus Wausau Hospital Heliport", + "latitude_deg": "44.966863", + "longitude_deg": "-89.666795", + "elevation_ft": "1226", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Wausau", + "scheduled_service": "no", + "gps_code": "WS65", + "local_code": "WS65" + }, + { + "id": "25960", + "ident": "WS66", + "type": "heliport", + "name": "Froedtert West Bend Hospital Heliport", + "latitude_deg": "43.355172", + "longitude_deg": "-88.193876", + "elevation_ft": "991", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "West Bend", + "scheduled_service": "no", + "gps_code": "WS66", + "local_code": "WS66", + "keywords": "St Joseph's Community Hospital" + }, + { + "id": "25961", + "ident": "WS67", + "type": "small_airport", + "name": "Vietmeier Airport", + "latitude_deg": "46.79990005493164", + "longitude_deg": "-91.20850372314453", + "elevation_ft": "795", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Herbster", + "scheduled_service": "no", + "gps_code": "WS67", + "local_code": "WS67" + }, + { + "id": "25962", + "ident": "WS68", + "type": "small_airport", + "name": "Krist Island Airport", + "latitude_deg": "43.78160095214844", + "longitude_deg": "-89.30789947509766", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Montello", + "scheduled_service": "no", + "gps_code": "WS68", + "local_code": "WS68" + }, + { + "id": "25963", + "ident": "WS69", + "type": "small_airport", + "name": "Log Cabin Airport", + "latitude_deg": "44.57500076293945", + "longitude_deg": "-91.5470962524414", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Eleva", + "scheduled_service": "no", + "gps_code": "WS69", + "local_code": "WS69" + }, + { + "id": "25964", + "ident": "WS70", + "type": "heliport", + "name": "Marshfield Medical Center/Beaver Dam Heliport", + "latitude_deg": "43.449788", + "longitude_deg": "-88.825203", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Beaver Dam", + "scheduled_service": "no", + "gps_code": "WS70", + "local_code": "WS70", + "keywords": "Beaver Dam Community Hospital" + }, + { + "id": "25965", + "ident": "WS71", + "type": "small_airport", + "name": "Flying J Airport", + "latitude_deg": "45.43050003051758", + "longitude_deg": "-92.6155014038086", + "elevation_ft": "1205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "St Croix Falls", + "scheduled_service": "no", + "gps_code": "WS71", + "local_code": "WS71" + }, + { + "id": "25966", + "ident": "WS72", + "type": "small_airport", + "name": "Cain's Field", + "latitude_deg": "44.85279846191406", + "longitude_deg": "-88.01200103759766", + "elevation_ft": "640", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Stiles", + "scheduled_service": "no", + "gps_code": "WS72", + "local_code": "WS72" + }, + { + "id": "25967", + "ident": "WS73", + "type": "heliport", + "name": "Big Foot Farms Heliport", + "latitude_deg": "42.52090072631836", + "longitude_deg": "-88.57679748535156", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Walworth", + "scheduled_service": "no", + "gps_code": "WS73", + "local_code": "WS73" + }, + { + "id": "25968", + "ident": "WS74", + "type": "small_airport", + "name": "Al's Airway Airport", + "latitude_deg": "43.16310119628906", + "longitude_deg": "-88.82450103759766", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Watertown", + "scheduled_service": "no", + "gps_code": "WS74", + "local_code": "WS74" + }, + { + "id": "25969", + "ident": "WS75", + "type": "heliport", + "name": "Waupun Memorial Hospital Heliport", + "latitude_deg": "43.631401062", + "longitude_deg": "-88.74579620360001", + "elevation_ft": "910", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Waupun", + "scheduled_service": "no", + "gps_code": "WS75", + "local_code": "WS75" + }, + { + "id": "25970", + "ident": "WS76", + "type": "small_airport", + "name": "Black Dog Farm Airport", + "latitude_deg": "44.470699310302734", + "longitude_deg": "-88.82450103759766", + "elevation_ft": "898", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "New London", + "scheduled_service": "no", + "gps_code": "WS76", + "local_code": "WS76" + }, + { + "id": "25971", + "ident": "WS77", + "type": "small_airport", + "name": "Circle T Airport", + "latitude_deg": "45.683998107910156", + "longitude_deg": "-92.68710327148438", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Grantsburg", + "scheduled_service": "no", + "gps_code": "WS77", + "local_code": "WS77" + }, + { + "id": "25972", + "ident": "WS78", + "type": "small_airport", + "name": "River Valley Airport", + "latitude_deg": "45.55030059814453", + "longitude_deg": "-89.48780059814453", + "elevation_ft": "1525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Rhinelander", + "scheduled_service": "no", + "gps_code": "WS78", + "local_code": "WS78" + }, + { + "id": "25973", + "ident": "WS79", + "type": "heliport", + "name": "Indianhead Medical Center Heliport", + "latitude_deg": "45.74169921875", + "longitude_deg": "-91.9269027709961", + "elevation_ft": "1250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Shell Lake", + "scheduled_service": "no", + "gps_code": "WS79", + "local_code": "WS79" + }, + { + "id": "25974", + "ident": "WS81", + "type": "small_airport", + "name": "Alpha Hotel Airport", + "latitude_deg": "45.948001861572266", + "longitude_deg": "-92.1084976196289", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Webster", + "scheduled_service": "no", + "gps_code": "WS81", + "local_code": "WS81" + }, + { + "id": "25975", + "ident": "WS82", + "type": "seaplane_base", + "name": "Johnson Island Seaplane Base", + "latitude_deg": "45.12670135498047", + "longitude_deg": "-88.44329833984375", + "elevation_ft": "870", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Mountain", + "scheduled_service": "no", + "gps_code": "WS82", + "local_code": "WS82" + }, + { + "id": "45914", + "ident": "WS87", + "type": "small_airport", + "name": "Port Field", + "latitude_deg": "48.331869", + "longitude_deg": "-120.058253", + "elevation_ft": "1650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Twisp", + "scheduled_service": "no", + "gps_code": "WS87", + "local_code": "WS87" + }, + { + "id": "322010", + "ident": "WS89", + "type": "heliport", + "name": "Appleton Medical Center Heliport", + "latitude_deg": "44.279", + "longitude_deg": "-88.393091", + "elevation_ft": "769", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Appleton", + "scheduled_service": "no", + "gps_code": "WS89", + "local_code": "WS89" + }, + { + "id": "25976", + "ident": "WS91", + "type": "small_airport", + "name": "Sky Hollow Airport", + "latitude_deg": "43.20859909057617", + "longitude_deg": "-90.6636962890625", + "elevation_ft": "707", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Boscobel", + "scheduled_service": "no", + "gps_code": "WS91", + "local_code": "WS91" + }, + { + "id": "25977", + "ident": "WS96", + "type": "small_airport", + "name": "Hughes Airport", + "latitude_deg": "42.62080001831055", + "longitude_deg": "-89.76730346679688", + "elevation_ft": "1010", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Monroe", + "scheduled_service": "no", + "gps_code": "WS96", + "local_code": "WS96" + }, + { + "id": "25978", + "ident": "WS98", + "type": "heliport", + "name": "St Joseph's Hospital Heliport", + "latitude_deg": "44.67720031738281", + "longitude_deg": "-90.17970275878906", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Marshfield", + "scheduled_service": "no", + "gps_code": "WS98", + "local_code": "WS98" + }, + { + "id": "309970", + "ident": "WSA", + "type": "small_airport", + "name": "Wasua Airport", + "latitude_deg": "-8.2836", + "longitude_deg": "142.8697", + "elevation_ft": "45", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-WPD", + "municipality": "Wasua", + "scheduled_service": "no", + "gps_code": "AYIW", + "iata_code": "WSA", + "local_code": "WAA" + }, + { + "id": "32675", + "ident": "WSAC", + "type": "medium_airport", + "name": "Changi Air Base (East)", + "latitude_deg": "1.3441400528", + "longitude_deg": "104.009002686", + "elevation_ft": "22", + "continent": "AS", + "iso_country": "SG", + "iso_region": "SG-04", + "municipality": "Singapore", + "scheduled_service": "no", + "gps_code": "WSAC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Changi_Air_Base" + }, + { + "id": "26883", + "ident": "WSAG", + "type": "medium_airport", + "name": "Sembawang Air Base", + "latitude_deg": "1.42526", + "longitude_deg": "103.813004", + "elevation_ft": "86", + "continent": "AS", + "iso_country": "SG", + "iso_region": "SG-03", + "municipality": "Sembawang", + "scheduled_service": "no", + "gps_code": "WSAG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sembawang_Air_Base", + "keywords": "RAF Sembawang, HMS Simbang" + }, + { + "id": "26884", + "ident": "WSAP", + "type": "medium_airport", + "name": "Paya Lebar Air Base", + "latitude_deg": "1.36042", + "longitude_deg": "103.910004", + "elevation_ft": "65", + "continent": "AS", + "iso_country": "SG", + "iso_region": "SG-04", + "municipality": "Paya Lebar", + "scheduled_service": "no", + "gps_code": "WSAP", + "iata_code": "QPG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paya_Lebar_Airbase" + }, + { + "id": "26885", + "ident": "WSAT", + "type": "medium_airport", + "name": "Tengah Air Base", + "latitude_deg": "1.387561", + "longitude_deg": "103.708291", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "SG", + "iso_region": "SG-03", + "municipality": "Western Water Catchment", + "scheduled_service": "no", + "gps_code": "WSAT", + "iata_code": "TGA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tengah_Air_Base", + "keywords": "RAF Tengah" + }, + { + "id": "25979", + "ident": "WSB", + "type": "seaplane_base", + "name": "Steamboat Bay Seaplane Base", + "latitude_deg": "55.532662", + "longitude_deg": "-133.638167", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Steamboat Bay", + "scheduled_service": "no", + "gps_code": "POWS", + "iata_code": "WSB", + "local_code": "WSB" + }, + { + "id": "25980", + "ident": "WSJ", + "type": "seaplane_base", + "name": "San Juan /Uganik/ Seaplane Base", + "latitude_deg": "57.7304", + "longitude_deg": "-153.320999", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "San Juan", + "scheduled_service": "yes", + "iata_code": "UGI", + "local_code": "WSJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/San_Juan_(Uganik)_Seaplane_Base" + }, + { + "id": "25981", + "ident": "WSM", + "type": "small_airport", + "name": "Wiseman Airport", + "latitude_deg": "67.4046020508", + "longitude_deg": "-150.123001099", + "elevation_ft": "1180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Wiseman", + "scheduled_service": "no", + "gps_code": "WSM", + "iata_code": "WSM", + "local_code": "WSM" + }, + { + "id": "26886", + "ident": "WSSL", + "type": "medium_airport", + "name": "Seletar Airport", + "latitude_deg": "1.41555", + "longitude_deg": "103.86673", + "elevation_ft": "36", + "continent": "AS", + "iso_country": "SG", + "iso_region": "SG-02", + "municipality": "Seletar", + "scheduled_service": "yes", + "gps_code": "WSSL", + "iata_code": "XSP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Seletar_Airport" + }, + { + "id": "26887", + "ident": "WSSS", + "type": "large_airport", + "name": "Singapore Changi Airport", + "latitude_deg": "1.35019", + "longitude_deg": "103.994003", + "elevation_ft": "22", + "continent": "AS", + "iso_country": "SG", + "iso_region": "SG-04", + "municipality": "Singapore", + "scheduled_service": "yes", + "gps_code": "WSSS", + "iata_code": "SIN", + "home_link": "http://www.changiairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Singapore_Changi_Airport", + "keywords": "RAF Changi" + }, + { + "id": "45891", + "ident": "WT00", + "type": "heliport", + "name": "Grays Harbor Community Hospital Heliport", + "latitude_deg": "46.979706", + "longitude_deg": "-123.847139", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Aberdeen", + "scheduled_service": "no", + "gps_code": "WT00", + "local_code": "WT00" + }, + { + "id": "45894", + "ident": "WT01", + "type": "small_airport", + "name": "Hillcrest Farms Airport", + "latitude_deg": "46.949167", + "longitude_deg": "-120.481111", + "elevation_ft": "1490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Ellensburg", + "scheduled_service": "no", + "gps_code": "WT01", + "local_code": "WT01" + }, + { + "id": "45892", + "ident": "WT02", + "type": "heliport", + "name": "Hammer EVOC Skid Pad Heliport", + "latitude_deg": "46.358056", + "longitude_deg": "-119.333612", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Richland", + "scheduled_service": "no", + "gps_code": "WT02", + "local_code": "WT02" + }, + { + "id": "45915", + "ident": "WT03", + "type": "small_airport", + "name": "River View Airpark", + "latitude_deg": "47.8997", + "longitude_deg": "-119.8962", + "elevation_ft": "1210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Chelan", + "scheduled_service": "no", + "local_code": "91WT", + "keywords": "9WA, WT03" + }, + { + "id": "322932", + "ident": "WT04", + "type": "small_airport", + "name": "Silverbird Airport", + "latitude_deg": "47.516998", + "longitude_deg": "-117.534742", + "elevation_ft": "2418", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Cheney", + "scheduled_service": "no", + "gps_code": "WT04", + "local_code": "WT04" + }, + { + "id": "301242", + "ident": "WT21", + "type": "small_airport", + "name": "Deer Park / Radial Flyer Airport", + "latitude_deg": "47.894536", + "longitude_deg": "-117.439807", + "elevation_ft": "2060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "scheduled_service": "no", + "gps_code": "WT21" + }, + { + "id": "45917", + "ident": "WT22", + "type": "heliport", + "name": "Graves Field Heliport", + "latitude_deg": "47.658056", + "longitude_deg": "-122.298333", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Seattle", + "scheduled_service": "no", + "gps_code": "WT22", + "local_code": "WT22" + }, + { + "id": "322929", + "ident": "WT24", + "type": "small_airport", + "name": "Reed Airport", + "latitude_deg": "47.523012", + "longitude_deg": "-117.537982", + "elevation_ft": "2696", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Cheney", + "scheduled_service": "no", + "gps_code": "WT24", + "local_code": "WT24" + }, + { + "id": "45896", + "ident": "WT28", + "type": "heliport", + "name": "Kiwi Air Heliport", + "latitude_deg": "46.42658", + "longitude_deg": "-117.058209", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Clarkston", + "scheduled_service": "no", + "gps_code": "WT28", + "local_code": "WT28" + }, + { + "id": "45902", + "ident": "WT33", + "type": "seaplane_base", + "name": "Skid Row Seaplane Base", + "latitude_deg": "46.422447", + "longitude_deg": "-117.080953", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Clarkston", + "scheduled_service": "no", + "gps_code": "WT33", + "local_code": "WT33" + }, + { + "id": "45887", + "ident": "WT34", + "type": "heliport", + "name": "US Border Patrol Blaine Heliport", + "latitude_deg": "48.975661", + "longitude_deg": "-122.721298", + "elevation_ft": "43", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Blaine", + "scheduled_service": "no", + "gps_code": "WT34", + "local_code": "WT34" + }, + { + "id": "345071", + "ident": "WT37", + "type": "small_airport", + "name": "Lockwood Dry Coulee Airport", + "latitude_deg": "48.368734", + "longitude_deg": "-119.616582", + "elevation_ft": "1312", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Okanogan", + "scheduled_service": "no", + "gps_code": "WT37", + "local_code": "WT37" + }, + { + "id": "45899", + "ident": "WT44", + "type": "small_airport", + "name": "Michair Airport", + "latitude_deg": "46.177333", + "longitude_deg": "-123.385", + "elevation_ft": "13", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Cathlamet", + "scheduled_service": "no", + "gps_code": "WT44", + "local_code": "WT44" + }, + { + "id": "343464", + "ident": "WT51", + "type": "heliport", + "name": "Fire District 3 Heliport", + "latitude_deg": "46.524478", + "longitude_deg": "-122.471422", + "elevation_ft": "675", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Mossyrock", + "scheduled_service": "no", + "gps_code": "WT51", + "local_code": "WT51" + }, + { + "id": "346377", + "ident": "WT70", + "type": "heliport", + "name": "Diablo Heliport", + "latitude_deg": "48.713753", + "longitude_deg": "-121.141187", + "elevation_ft": "893", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Diablo", + "scheduled_service": "no", + "gps_code": "WT70", + "local_code": "WT70" + }, + { + "id": "45916", + "ident": "WT77", + "type": "small_airport", + "name": "Rocky Bay Airport", + "latitude_deg": "47.355222", + "longitude_deg": "-122.790278", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Vaughn", + "scheduled_service": "no", + "gps_code": "WT77", + "local_code": "WT77" + }, + { + "id": "45893", + "ident": "WT88", + "type": "small_airport", + "name": "Hill Airport", + "latitude_deg": "46.841", + "longitude_deg": "-117.056281", + "elevation_ft": "2700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WA", + "municipality": "Palouse", + "scheduled_service": "no", + "gps_code": "WT88", + "local_code": "WT88" + }, + { + "id": "307355", + "ident": "WTT", + "type": "small_airport", + "name": "Wantoat Airport", + "latitude_deg": "-6.1325", + "longitude_deg": "146.467777778", + "elevation_ft": "3900", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Wantoat", + "scheduled_service": "no", + "gps_code": "AYWC", + "iata_code": "WTT", + "local_code": "WNT", + "keywords": "Wontoat" + }, + { + "id": "307311", + "ident": "WUV", + "type": "small_airport", + "name": "Wuvulu Island Airport", + "latitude_deg": "-1.73611111111", + "longitude_deg": "142.836666667", + "elevation_ft": "16", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MRL", + "municipality": "Wuvulu Island", + "scheduled_service": "no", + "gps_code": "AYVW", + "iata_code": "WUV", + "local_code": "WUV" + }, + { + "id": "336110", + "ident": "WUZ", + "type": "medium_airport", + "name": "Wuzhou Xijiang Airport", + "latitude_deg": "23.40316", + "longitude_deg": "111.09331", + "elevation_ft": "357", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-45", + "municipality": "Tangbu", + "scheduled_service": "yes", + "gps_code": "ZGWZ", + "iata_code": "WUZ", + "local_code": "WUZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wuzhou_Xijiang_Airport" + }, + { + "id": "25983", + "ident": "WV00", + "type": "small_airport", + "name": "Deer Creek Farm Airport", + "latitude_deg": "38.47079849243164", + "longitude_deg": "-79.80059814453125", + "elevation_ft": "2650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Arbovale", + "scheduled_service": "no", + "gps_code": "WV00", + "local_code": "WV00" + }, + { + "id": "25984", + "ident": "WV01", + "type": "small_airport", + "name": "Lee Massey Airport", + "latitude_deg": "38.12929916381836", + "longitude_deg": "-81.05370330810547", + "elevation_ft": "1665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Ansted", + "scheduled_service": "no", + "gps_code": "WV01", + "local_code": "WV01" + }, + { + "id": "25985", + "ident": "WV02", + "type": "heliport", + "name": "St Mary's Hospital Heliport", + "latitude_deg": "38.43119812011719", + "longitude_deg": "-82.40039825439453", + "elevation_ft": "588", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Huntington", + "scheduled_service": "no", + "gps_code": "WV02", + "local_code": "WV02" + }, + { + "id": "25986", + "ident": "WV03", + "type": "heliport", + "name": "Lee Norse Nr 2 Heliport", + "latitude_deg": "37.78340148925781", + "longitude_deg": "-81.11650085449219", + "elevation_ft": "2180", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Beckley", + "scheduled_service": "no", + "gps_code": "WV03", + "local_code": "WV03" + }, + { + "id": "25987", + "ident": "WV04", + "type": "heliport", + "name": "Beckley ARH Hospital Heliport", + "latitude_deg": "37.799476", + "longitude_deg": "-81.167706", + "elevation_ft": "2340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Beckley", + "scheduled_service": "no", + "gps_code": "WV04", + "local_code": "WV04", + "keywords": "Appalachian Regional Hospital" + }, + { + "id": "25988", + "ident": "WV05", + "type": "heliport", + "name": "Va Medical Center Heliport", + "latitude_deg": "39.41590118408203", + "longitude_deg": "-77.91329956054688", + "elevation_ft": "496", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Martinsburg", + "scheduled_service": "no", + "gps_code": "WV05", + "local_code": "WV05" + }, + { + "id": "25989", + "ident": "WV06", + "type": "small_airport", + "name": "Lost Mountain Airport", + "latitude_deg": "39.285099029541016", + "longitude_deg": "-78.73829650878906", + "elevation_ft": "1960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Romney", + "scheduled_service": "no", + "gps_code": "WV06", + "local_code": "WV06" + }, + { + "id": "25990", + "ident": "WV07", + "type": "heliport", + "name": "State Police Heliport", + "latitude_deg": "38.382598876953125", + "longitude_deg": "-81.75959777832031", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Charleston", + "scheduled_service": "no", + "gps_code": "WV07", + "local_code": "WV07" + }, + { + "id": "25991", + "ident": "WV08", + "type": "small_airport", + "name": "Island Airport", + "latitude_deg": "38.216800689697266", + "longitude_deg": "-81.533203125", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Chesapeake", + "scheduled_service": "no", + "gps_code": "WV08", + "local_code": "WV08" + }, + { + "id": "25992", + "ident": "WV09", + "type": "small_airport", + "name": "Mike Ferrell Field", + "latitude_deg": "37.55889", + "longitude_deg": "-81.350616", + "elevation_ft": "2220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Corinne", + "scheduled_service": "no", + "gps_code": "WV09", + "local_code": "WV09", + "keywords": "Perry and Hylton" + }, + { + "id": "25993", + "ident": "WV10", + "type": "small_airport", + "name": "Peterstown Airport", + "latitude_deg": "37.40119934082031", + "longitude_deg": "-80.80729675292969", + "elevation_ft": "1590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Peterstown", + "scheduled_service": "no", + "gps_code": "WV10", + "local_code": "WV10" + }, + { + "id": "25994", + "ident": "WV11", + "type": "closed", + "name": "Swope Farm Airport", + "latitude_deg": "37.566502", + "longitude_deg": "-81.619301", + "elevation_ft": "1802", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Fan Rock", + "scheduled_service": "no", + "keywords": "WV11" + }, + { + "id": "25995", + "ident": "WV12", + "type": "small_airport", + "name": "Mallory Airport", + "latitude_deg": "38.33509826660156", + "longitude_deg": "-81.73179626464844", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "South Charleston", + "scheduled_service": "no", + "gps_code": "WV12", + "local_code": "WV12" + }, + { + "id": "25996", + "ident": "WV13", + "type": "heliport", + "name": "Minnick's Heliport", + "latitude_deg": "38.570899963378906", + "longitude_deg": "-82.0624008178711", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Upland", + "scheduled_service": "no", + "gps_code": "WV13", + "local_code": "WV13" + }, + { + "id": "25997", + "ident": "WV14", + "type": "heliport", + "name": "Walker I Heliport", + "latitude_deg": "38.227901458740234", + "longitude_deg": "-81.53289794921875", + "elevation_ft": "590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Belle", + "scheduled_service": "no", + "gps_code": "WV14", + "local_code": "WV14" + }, + { + "id": "25998", + "ident": "WV15", + "type": "small_airport", + "name": "Gerstell Farms Airport", + "latitude_deg": "39.4833984375", + "longitude_deg": "-78.92639923095703", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Keyser", + "scheduled_service": "no", + "gps_code": "WV15", + "local_code": "WV15" + }, + { + "id": "25999", + "ident": "WV16", + "type": "heliport", + "name": "Cng Division 4 Heliport", + "latitude_deg": "39.273101806640625", + "longitude_deg": "-80.37889862060547", + "elevation_ft": "1022", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Clarksburg", + "scheduled_service": "no", + "gps_code": "WV16", + "local_code": "WV16" + }, + { + "id": "26000", + "ident": "WV17", + "type": "small_airport", + "name": "Michaels Farms Airport", + "latitude_deg": "39.39339828491211", + "longitude_deg": "-78.15579986572266", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Martinsburg", + "scheduled_service": "no", + "gps_code": "WV17", + "local_code": "WV17" + }, + { + "id": "26001", + "ident": "WV18", + "type": "small_airport", + "name": "Miller Field", + "latitude_deg": "39.40840148925781", + "longitude_deg": "-79.01360321044922", + "elevation_ft": "1050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Keyser", + "scheduled_service": "no", + "gps_code": "WV18", + "local_code": "WV18" + }, + { + "id": "26002", + "ident": "WV19", + "type": "small_airport", + "name": "Moore Field", + "latitude_deg": "39.444801330566406", + "longitude_deg": "-79.68920135498047", + "elevation_ft": "1860", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Kingwood", + "scheduled_service": "no", + "gps_code": "WV19", + "local_code": "WV19" + }, + { + "id": "26003", + "ident": "WV20", + "type": "heliport", + "name": "Wetzel County Hospital Heliport", + "latitude_deg": "39.681186", + "longitude_deg": "-80.848705", + "elevation_ft": "689", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "New Martinsville", + "scheduled_service": "no", + "gps_code": "WV20", + "local_code": "WV20", + "keywords": "Air Evac 78 Heliport" + }, + { + "id": "26004", + "ident": "WV21", + "type": "small_airport", + "name": "Needwood Farm Airport", + "latitude_deg": "39.329756", + "longitude_deg": "-77.796221", + "elevation_ft": "440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Harpers Ferry", + "scheduled_service": "no", + "gps_code": "WV21", + "local_code": "WV21" + }, + { + "id": "26005", + "ident": "WV22", + "type": "small_airport", + "name": "Green Landings Airport", + "latitude_deg": "39.57469940185547", + "longitude_deg": "-77.97149658203125", + "elevation_ft": "510", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Hedgesville", + "scheduled_service": "no", + "gps_code": "WV22", + "local_code": "WV22" + }, + { + "id": "26006", + "ident": "WV23", + "type": "closed", + "name": "Louis Bennett Field", + "latitude_deg": "39.091499", + "longitude_deg": "-80.469498", + "elevation_ft": "1014", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Weston", + "scheduled_service": "no", + "local_code": "WV23", + "keywords": "WV23" + }, + { + "id": "26007", + "ident": "WV24", + "type": "heliport", + "name": "Allegheny Mining Heliport", + "latitude_deg": "39.31930160522461", + "longitude_deg": "-79.17169952392578", + "elevation_ft": "2650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Hartmansville", + "scheduled_service": "no", + "gps_code": "WV24", + "local_code": "WV24" + }, + { + "id": "26008", + "ident": "WV25", + "type": "heliport", + "name": "Mount Storm Heliport", + "latitude_deg": "39.23149871826172", + "longitude_deg": "-79.21869659423828", + "elevation_ft": "2788", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Mount Storm", + "scheduled_service": "no", + "gps_code": "WV25", + "local_code": "WV25" + }, + { + "id": "26009", + "ident": "WV26", + "type": "heliport", + "name": "Glade Springs Heliport", + "latitude_deg": "37.72460174560547", + "longitude_deg": "-81.09700012207031", + "elevation_ft": "2550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Beckley", + "scheduled_service": "no", + "gps_code": "WV26", + "local_code": "WV26" + }, + { + "id": "26010", + "ident": "WV27", + "type": "heliport", + "name": "Cabell Huntington Hospital Heliport", + "latitude_deg": "38.410301208496094", + "longitude_deg": "-82.42829895019531", + "elevation_ft": "591", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Huntington", + "scheduled_service": "no", + "gps_code": "WV27", + "local_code": "WV27" + }, + { + "id": "26011", + "ident": "WV28", + "type": "small_airport", + "name": "Ruth Field", + "latitude_deg": "39.324501037597656", + "longitude_deg": "-80.39679718017578", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Clarksburg", + "scheduled_service": "no", + "gps_code": "WV28", + "local_code": "WV28" + }, + { + "id": "26012", + "ident": "WV29", + "type": "small_airport", + "name": "Valley Point Airport", + "latitude_deg": "39.57979965209961", + "longitude_deg": "-79.6498031616211", + "elevation_ft": "2000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Valley Point", + "scheduled_service": "no", + "gps_code": "WV29", + "local_code": "WV29" + }, + { + "id": "26013", + "ident": "WV30", + "type": "small_airport", + "name": "Rainelle Airport", + "latitude_deg": "37.948699951171875", + "longitude_deg": "-80.71649932861328", + "elevation_ft": "3446", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Rainelle", + "scheduled_service": "no", + "gps_code": "WV30", + "local_code": "WV30" + }, + { + "id": "26014", + "ident": "WV31", + "type": "heliport", + "name": "Pratt Mining Heliport", + "latitude_deg": "37.83369827270508", + "longitude_deg": "-80.43669891357422", + "elevation_ft": "2320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Lewisburg", + "scheduled_service": "no", + "gps_code": "WV31", + "local_code": "WV31" + }, + { + "id": "26015", + "ident": "WV32", + "type": "small_airport", + "name": "New River Gorge Airport", + "latitude_deg": "38.0890007019043", + "longitude_deg": "-81.06510162353516", + "elevation_ft": "1720", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Lansing", + "scheduled_service": "no", + "gps_code": "WV32", + "local_code": "WV32" + }, + { + "id": "26016", + "ident": "WV33", + "type": "heliport", + "name": "Beckley Hotel Heliport", + "latitude_deg": "37.79290008544922", + "longitude_deg": "-81.2123031616211", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Beckley", + "scheduled_service": "no", + "gps_code": "WV33", + "local_code": "WV33" + }, + { + "id": "26017", + "ident": "WV34", + "type": "heliport", + "name": "Bluefield Regional Medical Center Heliport", + "latitude_deg": "37.254600524902344", + "longitude_deg": "-81.23370361328125", + "elevation_ft": "2500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Bluefield", + "scheduled_service": "no", + "gps_code": "WV34", + "local_code": "WV34" + }, + { + "id": "26018", + "ident": "WV35", + "type": "seaplane_base", + "name": "Pomeroy-Mason Seaplane Base", + "latitude_deg": "39.022300720214844", + "longitude_deg": "-82.02349853515625", + "elevation_ft": "538", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Mason", + "scheduled_service": "no", + "gps_code": "WV35", + "local_code": "WV35" + }, + { + "id": "26019", + "ident": "WV36", + "type": "heliport", + "name": "Alloy Heliport", + "latitude_deg": "38.13869857788086", + "longitude_deg": "-81.27760314941406", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Montgomery", + "scheduled_service": "no", + "gps_code": "WV36", + "local_code": "WV36" + }, + { + "id": "26020", + "ident": "WV37", + "type": "seaplane_base", + "name": "New Martinsville Seaplane Base", + "latitude_deg": "39.63589859008789", + "longitude_deg": "-80.87039947509766", + "elevation_ft": "602", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "New Martinsville", + "scheduled_service": "no", + "gps_code": "WV37", + "local_code": "WV37" + }, + { + "id": "26021", + "ident": "WV38", + "type": "seaplane_base", + "name": "West Parkersburg Seaplane Base", + "latitude_deg": "39.26539993286133", + "longitude_deg": "-81.58599853515625", + "elevation_ft": "582", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Parkersburg", + "scheduled_service": "no", + "gps_code": "WV38", + "local_code": "WV38" + }, + { + "id": "26022", + "ident": "WV39", + "type": "seaplane_base", + "name": "Ravenswood Seaplane Base", + "latitude_deg": "38.95199966430664", + "longitude_deg": "-81.77320098876953", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Ravenswood", + "scheduled_service": "no", + "gps_code": "WV39", + "local_code": "WV39" + }, + { + "id": "26023", + "ident": "WV40", + "type": "seaplane_base", + "name": "St Mary's Seaplane Base", + "latitude_deg": "39.413700103759766", + "longitude_deg": "-81.19979858398438", + "elevation_ft": "587", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "St Mary's", + "scheduled_service": "no", + "gps_code": "WV40", + "local_code": "WV40" + }, + { + "id": "26024", + "ident": "WV41", + "type": "seaplane_base", + "name": "East Liverpool Seaplane Base", + "latitude_deg": "40.62919998168945", + "longitude_deg": "-80.5248031616211", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "East Liverpool - Chester", + "scheduled_service": "no", + "gps_code": "WV41", + "local_code": "WV41" + }, + { + "id": "26025", + "ident": "WV42", + "type": "seaplane_base", + "name": "Weirton - Steubenville Seaplane Base", + "latitude_deg": "40.3978004456", + "longitude_deg": "-80.6220016479", + "elevation_ft": "644", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Weirton", + "scheduled_service": "no", + "gps_code": "WV42", + "local_code": "WV42" + }, + { + "id": "26026", + "ident": "WV43", + "type": "seaplane_base", + "name": "Warwood - Martins Ferry Seaplane Base", + "latitude_deg": "40.0931015015", + "longitude_deg": "-80.7179031372", + "elevation_ft": "623", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Wheeling", + "scheduled_service": "no", + "gps_code": "WV43", + "local_code": "WV43" + }, + { + "id": "26027", + "ident": "WV44", + "type": "seaplane_base", + "name": "Moundsville Seaplane Base", + "latitude_deg": "39.92919921875", + "longitude_deg": "-80.76509857177734", + "elevation_ft": "623", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Moundsville", + "scheduled_service": "no", + "gps_code": "WV44", + "local_code": "WV44" + }, + { + "id": "26028", + "ident": "WV45", + "type": "heliport", + "name": "Princeton Community Hospital Heliport", + "latitude_deg": "37.36259841918945", + "longitude_deg": "-81.11370086669922", + "elevation_ft": "2410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Princeton", + "scheduled_service": "no", + "gps_code": "WV45", + "local_code": "WV45" + }, + { + "id": "26029", + "ident": "WV46", + "type": "seaplane_base", + "name": "Wellsburg Seaplane Base", + "latitude_deg": "40.267799377441406", + "longitude_deg": "-80.61730194091797", + "elevation_ft": "644", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Wellsburg", + "scheduled_service": "no", + "gps_code": "WV46", + "local_code": "WV46" + }, + { + "id": "26030", + "ident": "WV47", + "type": "closed", + "name": "Rexroad Airport", + "latitude_deg": "39.139246", + "longitude_deg": "-80.206118", + "elevation_ft": "1350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Buckhannon", + "scheduled_service": "no", + "keywords": "WV47, Clarksburg" + }, + { + "id": "26031", + "ident": "WV48", + "type": "heliport", + "name": "City Hospital, Inc. Heliport", + "latitude_deg": "39.47679901123047", + "longitude_deg": "-77.9800033569336", + "elevation_ft": "548", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Martinsburg", + "scheduled_service": "no", + "gps_code": "WV48", + "local_code": "WV48" + }, + { + "id": "26032", + "ident": "WV49", + "type": "heliport", + "name": "Center Wheeling Parking Garage Heliport", + "latitude_deg": "40.06010055541992", + "longitude_deg": "-80.722900390625", + "elevation_ft": "730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Wheeling", + "scheduled_service": "no", + "gps_code": "WV49", + "local_code": "WV49" + }, + { + "id": "26033", + "ident": "WV50", + "type": "heliport", + "name": "Dickirson Heliport", + "latitude_deg": "38.81230163574219", + "longitude_deg": "-81.69619750976562", + "elevation_ft": "790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Fairplain", + "scheduled_service": "no", + "gps_code": "WV50", + "local_code": "WV50" + }, + { + "id": "26034", + "ident": "WV51", + "type": "heliport", + "name": "University Hospital Heliport", + "latitude_deg": "39.65010070800781", + "longitude_deg": "-79.95809936523438", + "elevation_ft": "1120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Morgantown", + "scheduled_service": "no", + "gps_code": "WV51", + "local_code": "WV51" + }, + { + "id": "26035", + "ident": "WV52", + "type": "small_airport", + "name": "Green Bank Observatory Airport", + "latitude_deg": "38.430698", + "longitude_deg": "-79.8256", + "elevation_ft": "2710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Green Bank", + "scheduled_service": "no", + "gps_code": "WV52", + "local_code": "WV52", + "keywords": "NRAO Green Bank" + }, + { + "id": "26036", + "ident": "WV53", + "type": "small_airport", + "name": "Larew Airport", + "latitude_deg": "39.37200164794922", + "longitude_deg": "-79.8927993774414", + "elevation_ft": "1790", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Newburg", + "scheduled_service": "no", + "gps_code": "WV53", + "local_code": "WV53" + }, + { + "id": "26037", + "ident": "WV54", + "type": "heliport", + "name": "Walker Vi Heliport", + "latitude_deg": "37.77190017700195", + "longitude_deg": "-81.93280029296875", + "elevation_ft": "700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Rita", + "scheduled_service": "no", + "gps_code": "WV54", + "local_code": "WV54" + }, + { + "id": "26038", + "ident": "WV56", + "type": "heliport", + "name": "Camc-Memorial Heliport", + "latitude_deg": "38.3475990295", + "longitude_deg": "-81.62760162350001", + "elevation_ft": "691", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Charleston", + "scheduled_service": "no", + "gps_code": "WV56", + "local_code": "WV56" + }, + { + "id": "26039", + "ident": "WV57", + "type": "small_airport", + "name": "Mckee Sky Ranch Airport", + "latitude_deg": "39.46310043334961", + "longitude_deg": "-79.5425033569336", + "elevation_ft": "2757", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Terra Alta", + "scheduled_service": "no", + "gps_code": "WV57", + "local_code": "WV57" + }, + { + "id": "26040", + "ident": "WV58", + "type": "heliport", + "name": "Pleasant Valley Hospital Heliport", + "latitude_deg": "38.86899948120117", + "longitude_deg": "-82.1218032836914", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Point Pleasant", + "scheduled_service": "no", + "gps_code": "WV58", + "local_code": "WV58" + }, + { + "id": "26041", + "ident": "WV59", + "type": "small_airport", + "name": "Fayette Airport", + "latitude_deg": "38.026798248291016", + "longitude_deg": "-81.11979675292969", + "elevation_ft": "1960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Fayetteville", + "scheduled_service": "no", + "gps_code": "WV59", + "local_code": "WV59" + }, + { + "id": "26042", + "ident": "WV60", + "type": "heliport", + "name": "Walker Iii Heliport", + "latitude_deg": "37.7484016418457", + "longitude_deg": "-81.22229766845703", + "elevation_ft": "2260", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Crab Orchard", + "scheduled_service": "no", + "gps_code": "WV60", + "local_code": "WV60" + }, + { + "id": "26043", + "ident": "WV61", + "type": "small_airport", + "name": "Buzzards Gap Ultralightport", + "latitude_deg": "39.46950149536133", + "longitude_deg": "-78.23560333251953", + "elevation_ft": "960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Berkeley Springs", + "scheduled_service": "no", + "gps_code": "WV61", + "local_code": "WV61" + }, + { + "id": "26044", + "ident": "WV62", + "type": "small_airport", + "name": "Windwood Fly-In Resort Airport", + "latitude_deg": "39.055099487300005", + "longitude_deg": "-79.43139648440001", + "elevation_ft": "3210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Davis", + "scheduled_service": "no", + "gps_code": "WV62", + "local_code": "WV62" + }, + { + "id": "26045", + "ident": "WV63", + "type": "small_airport", + "name": "Herold Airport", + "latitude_deg": "38.334598541259766", + "longitude_deg": "-80.6530990600586", + "elevation_ft": "2346", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Craigsville", + "scheduled_service": "no", + "gps_code": "WV63", + "local_code": "WV63" + }, + { + "id": "26046", + "ident": "WV64", + "type": "small_airport", + "name": "Scott Field", + "latitude_deg": "39.1781005859375", + "longitude_deg": "-81.52369689941406", + "elevation_ft": "662", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Mineral Wells", + "scheduled_service": "no", + "gps_code": "WV64", + "local_code": "WV64" + }, + { + "id": "26047", + "ident": "WV65", + "type": "small_airport", + "name": "Carr Airport", + "latitude_deg": "39.44929886", + "longitude_deg": "-80.01139832", + "elevation_ft": "1670", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Fairmont", + "scheduled_service": "no", + "gps_code": "WV65", + "local_code": "WV65" + }, + { + "id": "26048", + "ident": "WV66", + "type": "small_airport", + "name": "Glendale Fokker Field", + "latitude_deg": "39.948699951200005", + "longitude_deg": "-80.7594985962", + "elevation_ft": "648", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Glendale", + "scheduled_service": "no", + "gps_code": "WV66", + "iata_code": "GWV", + "local_code": "WV66" + }, + { + "id": "26049", + "ident": "WV67", + "type": "small_airport", + "name": "Eastview Airport", + "latitude_deg": "39.39469909667969", + "longitude_deg": "-78.67939758300781", + "elevation_ft": "1590", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Romney", + "scheduled_service": "no", + "gps_code": "WV67", + "local_code": "WV67" + }, + { + "id": "26050", + "ident": "WV68", + "type": "closed", + "name": "Durrett Ranches Airport", + "latitude_deg": "38.950001", + "longitude_deg": "-80.030602", + "elevation_ft": "2300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Belington", + "scheduled_service": "no", + "keywords": "WV68" + }, + { + "id": "26051", + "ident": "WV69", + "type": "heliport", + "name": "Bluefield Regional Medical Center Heliport", + "latitude_deg": "37.25559997558594", + "longitude_deg": "-81.23609924316406", + "elevation_ft": "2555", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Bluefield", + "scheduled_service": "no", + "gps_code": "WV69", + "local_code": "WV69" + }, + { + "id": "26052", + "ident": "WV70", + "type": "small_airport", + "name": "Fairview Airport", + "latitude_deg": "38.956199645996094", + "longitude_deg": "-79.7886962890625", + "elevation_ft": "2600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Elkins", + "scheduled_service": "no", + "gps_code": "WV70", + "local_code": "WV70" + }, + { + "id": "26053", + "ident": "WV71", + "type": "small_airport", + "name": "Lieving Airport", + "latitude_deg": "38.899200439453125", + "longitude_deg": "-81.92970275878906", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Letart", + "scheduled_service": "no", + "gps_code": "WV71", + "local_code": "WV71" + }, + { + "id": "26054", + "ident": "WV72", + "type": "heliport", + "name": "Philip Sporn Plant Heliport", + "latitude_deg": "38.96379852294922", + "longitude_deg": "-81.92400360107422", + "elevation_ft": "601", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "New Haven", + "scheduled_service": "no", + "gps_code": "WV72", + "local_code": "WV72" + }, + { + "id": "26055", + "ident": "WV73", + "type": "heliport", + "name": "Wood County Heliport", + "latitude_deg": "39.33810043334961", + "longitude_deg": "-81.44290161132812", + "elevation_ft": "608", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Parkersburg", + "scheduled_service": "no", + "gps_code": "WV73", + "local_code": "WV73" + }, + { + "id": "26056", + "ident": "WV74", + "type": "heliport", + "name": "Snowshoe Heliport", + "latitude_deg": "38.410400390625", + "longitude_deg": "-79.99530029296875", + "elevation_ft": "4700", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Snowshoe", + "scheduled_service": "no", + "gps_code": "WV74", + "local_code": "WV74" + }, + { + "id": "26057", + "ident": "WV75", + "type": "heliport", + "name": "Stonewall Jackson Memorial Hospital Heliport", + "latitude_deg": "39.04819869995117", + "longitude_deg": "-80.49210357666016", + "elevation_ft": "101", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Weston", + "scheduled_service": "no", + "gps_code": "WV75", + "local_code": "WV75" + }, + { + "id": "26058", + "ident": "WV76", + "type": "small_airport", + "name": "Slate Run Airport", + "latitude_deg": "38.777599", + "longitude_deg": "-81.310402", + "elevation_ft": "1000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Spencer", + "scheduled_service": "no", + "local_code": "55I", + "keywords": "WV76" + }, + { + "id": "26059", + "ident": "WV77", + "type": "small_airport", + "name": "Hinton-Alderson Airport", + "latitude_deg": "37.67959976196289", + "longitude_deg": "-80.71040344238281", + "elevation_ft": "1520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Pence Springs", + "scheduled_service": "no", + "gps_code": "WV77", + "local_code": "WV77" + }, + { + "id": "26060", + "ident": "WV78", + "type": "heliport", + "name": "Rach Heliport", + "latitude_deg": "38.220001220703125", + "longitude_deg": "-80.53469848632812", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Richwood", + "scheduled_service": "no", + "gps_code": "WV78", + "local_code": "WV78" + }, + { + "id": "341090", + "ident": "WV86", + "type": "heliport", + "name": "Jefferson Medical Center Heliport", + "latitude_deg": "39.295783", + "longitude_deg": "-77.857854", + "elevation_ft": "512", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WV", + "municipality": "Ranson", + "scheduled_service": "no", + "gps_code": "WV86", + "local_code": "WV86" + }, + { + "id": "26061", + "ident": "WWT", + "type": "seaplane_base", + "name": "Newtok Seaplane Base", + "latitude_deg": "60.935", + "longitude_deg": "-164.6267", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Newtok", + "scheduled_service": "no", + "gps_code": "WWT", + "local_code": "WWT" + }, + { + "id": "26062", + "ident": "WY00", + "type": "small_airport", + "name": "Red Reflet Ranch Airport", + "latitude_deg": "43.967719", + "longitude_deg": "-107.379654", + "elevation_ft": "4619", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Ten Sleep", + "scheduled_service": "no", + "gps_code": "WY00", + "local_code": "WY00" + }, + { + "id": "26063", + "ident": "WY01", + "type": "small_airport", + "name": "Dilts Ranch Airport", + "latitude_deg": "43.394779", + "longitude_deg": "-105.550088", + "elevation_ft": "4800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Douglas", + "scheduled_service": "no", + "gps_code": "WY01", + "local_code": "WY01" + }, + { + "id": "26064", + "ident": "WY02", + "type": "closed", + "name": "Iberlin Ranch Number 3 Airport", + "latitude_deg": "43.1916", + "longitude_deg": "-104.938003", + "elevation_ft": "4400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Douglas", + "scheduled_service": "no", + "keywords": "WY02" + }, + { + "id": "26065", + "ident": "WY03", + "type": "heliport", + "name": "Marbleton Big Piney Clinic Heliport", + "latitude_deg": "42.55636", + "longitude_deg": "-110.11149", + "elevation_ft": "6975", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Big Piney", + "scheduled_service": "no", + "gps_code": "WY03", + "local_code": "WY03" + }, + { + "id": "26066", + "ident": "WY04", + "type": "heliport", + "name": "Powell Hospital Heliport", + "latitude_deg": "44.760799407958984", + "longitude_deg": "-108.77899932861328", + "elevation_ft": "4405", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Powell", + "scheduled_service": "no", + "gps_code": "WY04", + "local_code": "WY04" + }, + { + "id": "26067", + "ident": "WY05", + "type": "small_airport", + "name": "Skyview Airpark", + "latitude_deg": "41.217201232910156", + "longitude_deg": "-104.58399963378906", + "elevation_ft": "5838", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Cheyenne", + "scheduled_service": "no", + "gps_code": "WY05", + "local_code": "WY05" + }, + { + "id": "26068", + "ident": "WY06", + "type": "small_airport", + "name": "Luckinbill Airstrip", + "latitude_deg": "44.838333", + "longitude_deg": "-109.623236", + "elevation_ft": "6600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Cody", + "scheduled_service": "no", + "gps_code": "WY06", + "local_code": "WY06" + }, + { + "id": "26069", + "ident": "WY07", + "type": "small_airport", + "name": "Hardy Ranch Airport", + "latitude_deg": "43.325199127197266", + "longitude_deg": "-105.6760025024414", + "elevation_ft": "5077", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Douglas", + "scheduled_service": "no", + "gps_code": "WY07", + "local_code": "WY07" + }, + { + "id": "26070", + "ident": "WY08", + "type": "heliport", + "name": "Johnson Heliport", + "latitude_deg": "43.60219955444336", + "longitude_deg": "-110.73500061035156", + "elevation_ft": "6445", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "WY08", + "local_code": "WY08" + }, + { + "id": "26071", + "ident": "WY09", + "type": "small_airport", + "name": "Sherwin Field Number 1 Airport", + "latitude_deg": "43.507019", + "longitude_deg": "-104.881755", + "elevation_ft": "4190", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Newcastle", + "scheduled_service": "no", + "gps_code": "WY09", + "local_code": "WY09" + }, + { + "id": "26072", + "ident": "WY10", + "type": "heliport", + "name": "Two Jays Six Heliport", + "latitude_deg": "42.98661", + "longitude_deg": "-108.87004", + "elevation_ft": "5600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Fort Washakie", + "scheduled_service": "no", + "gps_code": "WY10", + "local_code": "WY10" + }, + { + "id": "26073", + "ident": "WY11", + "type": "small_airport", + "name": "A Bar A Ranch Airstrip", + "latitude_deg": "41.15557", + "longitude_deg": "-106.555966", + "elevation_ft": "7880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Encampment", + "scheduled_service": "no", + "gps_code": "WY11", + "local_code": "WY11", + "home_link": "https://www.abararanch.com/facilities/runway/", + "keywords": "A Bar A" + }, + { + "id": "26074", + "ident": "WY12", + "type": "small_airport", + "name": "Ohman Ranch Airport", + "latitude_deg": "43.92639923095703", + "longitude_deg": "-105.65299987792969", + "elevation_ft": "4905", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Gillette", + "scheduled_service": "no", + "gps_code": "WY12", + "local_code": "WY12" + }, + { + "id": "26075", + "ident": "WY13", + "type": "small_airport", + "name": "Little Buffalo Ranch Airport", + "latitude_deg": "43.78609848022461", + "longitude_deg": "-105.66400146484375", + "elevation_ft": "4919", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Gillette", + "scheduled_service": "no", + "gps_code": "WY13", + "local_code": "WY13" + }, + { + "id": "26076", + "ident": "WY14", + "type": "small_airport", + "name": "Ipy Ranch Airport", + "latitude_deg": "44.63750076293945", + "longitude_deg": "-104.68900299072266", + "elevation_ft": "3960", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Hulett", + "scheduled_service": "no", + "gps_code": "WY14", + "local_code": "WY14" + }, + { + "id": "26077", + "ident": "WY15", + "type": "small_airport", + "name": "Bunch Grass Intergalactic Airport", + "latitude_deg": "44.689724", + "longitude_deg": "-108.678539", + "elevation_ft": "4408", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Powell", + "scheduled_service": "no", + "gps_code": "WY15", + "local_code": "WY15" + }, + { + "id": "26078", + "ident": "WY16", + "type": "small_airport", + "name": "Robbins Airport", + "latitude_deg": "42.2599983215332", + "longitude_deg": "-105.85900115966797", + "elevation_ft": "7240", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Medicine Bow", + "scheduled_service": "no", + "gps_code": "WY16", + "local_code": "WY16" + }, + { + "id": "26079", + "ident": "WY17", + "type": "small_airport", + "name": "Ellis Ranch Airport", + "latitude_deg": "42.021912", + "longitude_deg": "-106.42653", + "elevation_ft": "6530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Medicine Bow", + "scheduled_service": "no", + "gps_code": "WY17", + "local_code": "WY17" + }, + { + "id": "26080", + "ident": "WY18", + "type": "small_airport", + "name": "Iberlin Ranch Number 2 Airport", + "latitude_deg": "43.560055", + "longitude_deg": "-106.00987", + "elevation_ft": "5020", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Linch", + "scheduled_service": "no", + "gps_code": "WY18", + "local_code": "WY18" + }, + { + "id": "26081", + "ident": "WY19", + "type": "closed", + "name": "Butler Airport", + "latitude_deg": "41.105801", + "longitude_deg": "-104.207001", + "elevation_ft": "5295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Pine Bluffs", + "scheduled_service": "no", + "keywords": "WY19" + }, + { + "id": "26082", + "ident": "WY20", + "type": "heliport", + "name": "Johnson Heliport", + "latitude_deg": "43.60219955444336", + "longitude_deg": "-110.7509994506836", + "elevation_ft": "6267", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "WY20", + "local_code": "WY20" + }, + { + "id": "26083", + "ident": "WY21", + "type": "heliport", + "name": "Campbell County Memorial Hospital Heliport", + "latitude_deg": "44.28779983520508", + "longitude_deg": "-105.51399993896484", + "elevation_ft": "4875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Gillette", + "scheduled_service": "no", + "gps_code": "WY21", + "local_code": "WY21" + }, + { + "id": "26084", + "ident": "WY22", + "type": "small_airport", + "name": "Iberlin Ranch Nr 1 Airport", + "latitude_deg": "43.95000076293945", + "longitude_deg": "-105.93399810791016", + "elevation_ft": "4500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Savageton", + "scheduled_service": "no", + "gps_code": "WY22", + "local_code": "WY22" + }, + { + "id": "26085", + "ident": "WY23", + "type": "small_airport", + "name": "Iberlin Strip", + "latitude_deg": "44.073299407958984", + "longitude_deg": "-106.26599884033203", + "elevation_ft": "4331", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Sussex", + "scheduled_service": "no", + "gps_code": "WY23", + "local_code": "WY23" + }, + { + "id": "26086", + "ident": "WY24", + "type": "heliport", + "name": "Riverton Memorial Hospital Heliport", + "latitude_deg": "43.034082", + "longitude_deg": "-108.420033", + "elevation_ft": "5032", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Riverton", + "scheduled_service": "no", + "gps_code": "WY24", + "local_code": "WY24" + }, + { + "id": "26087", + "ident": "WY25", + "type": "small_airport", + "name": "Snell - North Laramie River Airport", + "latitude_deg": "42.14207", + "longitude_deg": "-104.9402", + "elevation_ft": "4490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Wheatland", + "scheduled_service": "no", + "gps_code": "WY25", + "local_code": "WY25" + }, + { + "id": "26088", + "ident": "WY26", + "type": "heliport", + "name": "Community Hospital Heliport", + "latitude_deg": "42.08359909057617", + "longitude_deg": "-104.19200134277344", + "elevation_ft": "4210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Torrington", + "scheduled_service": "no", + "gps_code": "WY26", + "local_code": "WY26" + }, + { + "id": "26089", + "ident": "WY27", + "type": "small_airport", + "name": "Wagonhound Airport", + "latitude_deg": "42.586700439453125", + "longitude_deg": "-105.53800201416016", + "elevation_ft": "5470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Douglas", + "scheduled_service": "no", + "gps_code": "WY27", + "local_code": "WY27" + }, + { + "id": "26090", + "ident": "WY28", + "type": "heliport", + "name": "Pinedale Medical Clinic Heliport", + "latitude_deg": "42.8716667", + "longitude_deg": "-109.8541667", + "elevation_ft": "7269", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Pinedale", + "scheduled_service": "no", + "gps_code": "WY28", + "local_code": "WY28" + }, + { + "id": "26091", + "ident": "WY29", + "type": "small_airport", + "name": "Vowers Ranch Airport", + "latitude_deg": "41.619276", + "longitude_deg": "-104.785517", + "elevation_ft": "5550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Chugwater", + "scheduled_service": "no", + "gps_code": "WY29", + "local_code": "WY29" + }, + { + "id": "26092", + "ident": "WY30", + "type": "small_airport", + "name": "Kinky Creek Divide Airport", + "latitude_deg": "43.3754997253418", + "longitude_deg": "-110.11000061035156", + "elevation_ft": "8803", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Dubois", + "scheduled_service": "no", + "gps_code": "WY30", + "local_code": "WY30" + }, + { + "id": "26093", + "ident": "WY31", + "type": "small_airport", + "name": "Melody Ranch Airport", + "latitude_deg": "43.40959930419922", + "longitude_deg": "-110.77300262451172", + "elevation_ft": "6075", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Jackson", + "scheduled_service": "no", + "gps_code": "WY31", + "local_code": "WY31" + }, + { + "id": "351537", + "ident": "WY32", + "type": "small_airport", + "name": "Circle B Airport", + "latitude_deg": "42.094206", + "longitude_deg": "-110.871545", + "elevation_ft": "6524", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Cokeville", + "scheduled_service": "no", + "gps_code": "WY32", + "local_code": "WY32" + }, + { + "id": "26094", + "ident": "WY33", + "type": "small_airport", + "name": "Antelope Run Ranch Airport", + "latitude_deg": "42.816898345947266", + "longitude_deg": "-110.27799987792969", + "elevation_ft": "7470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Daniel", + "scheduled_service": "no", + "gps_code": "WY33", + "local_code": "WY33" + }, + { + "id": "26095", + "ident": "WY34", + "type": "small_airport", + "name": "Bridger Creek Airport", + "latitude_deg": "43.34049987792969", + "longitude_deg": "-107.68699645996094", + "elevation_ft": "5350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Lysite", + "scheduled_service": "no", + "gps_code": "WY34", + "local_code": "WY34" + }, + { + "id": "26096", + "ident": "WY35", + "type": "heliport", + "name": "Washakie Medical Center Heliport", + "latitude_deg": "44.0122", + "longitude_deg": "-107.949589", + "elevation_ft": "4200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Worland", + "scheduled_service": "no", + "gps_code": "WY35", + "local_code": "WY35", + "keywords": "Washakie Memorial Hospital" + }, + { + "id": "26097", + "ident": "WY36", + "type": "small_airport", + "name": "Bakers Field", + "latitude_deg": "44.793895", + "longitude_deg": "-108.734565", + "elevation_ft": "4350", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Powell", + "scheduled_service": "no", + "gps_code": "WY36", + "local_code": "WY36" + }, + { + "id": "26098", + "ident": "WY37", + "type": "small_airport", + "name": "Symons Airport", + "latitude_deg": "44.84080123901367", + "longitude_deg": "-106.822998046875", + "elevation_ft": "3681", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Sheridan", + "scheduled_service": "no", + "gps_code": "WY37", + "local_code": "WY37" + }, + { + "id": "26099", + "ident": "WY38", + "type": "small_airport", + "name": "Orchard Ranch Airport", + "latitude_deg": "43.623600006103516", + "longitude_deg": "-107.40799713134766", + "elevation_ft": "5277", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Ten Sleep", + "scheduled_service": "no", + "gps_code": "WY38", + "local_code": "WY38" + }, + { + "id": "26100", + "ident": "WY39", + "type": "small_airport", + "name": "Star Valley Ranch Airport", + "latitude_deg": "42.969398498535156", + "longitude_deg": "-110.96600341796875", + "elevation_ft": "6210", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Thayne", + "scheduled_service": "no", + "gps_code": "WY39", + "local_code": "WY39" + }, + { + "id": "26101", + "ident": "WY40", + "type": "heliport", + "name": "Ivinson Memorial Hospital Heliport", + "latitude_deg": "41.312425", + "longitude_deg": "-105.554606", + "elevation_ft": "7307", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Laramie", + "scheduled_service": "no", + "gps_code": "WY40", + "local_code": "WY40" + }, + { + "id": "26102", + "ident": "WY41", + "type": "small_airport", + "name": "Red Creek Ranch Airport", + "latitude_deg": "41.06669998168945", + "longitude_deg": "-109.08899688720703", + "elevation_ft": "7050", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Rock Springs", + "scheduled_service": "no", + "gps_code": "WY41", + "local_code": "WY41" + }, + { + "id": "26103", + "ident": "WY42", + "type": "small_airport", + "name": "Yu Ranch Airport", + "latitude_deg": "44.307498931884766", + "longitude_deg": "-108.73699951171875", + "elevation_ft": "5170", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Meeteetse", + "scheduled_service": "no", + "gps_code": "WY42", + "local_code": "WY42" + }, + { + "id": "346209", + "ident": "WY44", + "type": "small_airport", + "name": "Robbers Roost Ranch Airport", + "latitude_deg": "43.42658", + "longitude_deg": "-104.236194", + "elevation_ft": "3725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Mule Creek Junction", + "scheduled_service": "no", + "gps_code": "WY44", + "local_code": "WY44" + }, + { + "id": "26104", + "ident": "WY45", + "type": "small_airport", + "name": "Sloan Airport", + "latitude_deg": "41.156898498535156", + "longitude_deg": "-104.70800018310547", + "elevation_ft": "6085", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Cheyenne", + "scheduled_service": "no", + "gps_code": "WY45", + "local_code": "WY45" + }, + { + "id": "26105", + "ident": "WY46", + "type": "heliport", + "name": "Cheyenne Whiskey Heliport", + "latitude_deg": "41.15719985961914", + "longitude_deg": "-104.81500244140625", + "elevation_ft": "6120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Cheyenne", + "scheduled_service": "no", + "gps_code": "WY46", + "local_code": "WY46" + }, + { + "id": "26106", + "ident": "WY47", + "type": "heliport", + "name": "True Heliport", + "latitude_deg": "42.854071", + "longitude_deg": "-106.336323", + "elevation_ft": "5153", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Casper", + "scheduled_service": "no", + "gps_code": "WY47", + "local_code": "WY47" + }, + { + "id": "26107", + "ident": "WY49", + "type": "heliport", + "name": "Memorial Hospital of Sweetwater County Heliport", + "latitude_deg": "41.585978", + "longitude_deg": "-109.234572", + "elevation_ft": "6454", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Rock Springs", + "scheduled_service": "no", + "gps_code": "WY49", + "local_code": "WY49", + "keywords": "Skorup Memorial Hospital" + }, + { + "id": "26108", + "ident": "WY50", + "type": "heliport", + "name": "Cheyenne Echo Heliport", + "latitude_deg": "41.15719985961914", + "longitude_deg": "-104.81199645996094", + "elevation_ft": "6120", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Cheyenne", + "scheduled_service": "no", + "gps_code": "WY50", + "local_code": "WY50" + }, + { + "id": "26109", + "ident": "WY51", + "type": "closed", + "name": "Platt Ranch Airport", + "latitude_deg": "41.16281", + "longitude_deg": "-106.60462", + "elevation_ft": "7545", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Encampment", + "scheduled_service": "no", + "keywords": "WY51" + }, + { + "id": "26110", + "ident": "WY52", + "type": "heliport", + "name": "Evanston Regional Hospital Heliport", + "latitude_deg": "41.24380111694336", + "longitude_deg": "-110.98899841308594", + "elevation_ft": "6781", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Evanston", + "scheduled_service": "no", + "gps_code": "WY52", + "local_code": "WY52" + }, + { + "id": "26111", + "ident": "WY55", + "type": "small_airport", + "name": "Taylor Field", + "latitude_deg": "44.41859817504883", + "longitude_deg": "-104.59400177001953", + "elevation_ft": "4950", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Sundance", + "scheduled_service": "no", + "gps_code": "WY55", + "local_code": "WY55" + }, + { + "id": "26112", + "ident": "WY57", + "type": "heliport", + "name": "Wyoming Medical Center Heliport", + "latitude_deg": "42.84769821166992", + "longitude_deg": "-106.30799865722656", + "elevation_ft": "5340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Casper", + "scheduled_service": "no", + "gps_code": "WY57", + "local_code": "WY57" + }, + { + "id": "26113", + "ident": "WY59", + "type": "small_airport", + "name": "Two Bar Ranch Airport", + "latitude_deg": "41.933365", + "longitude_deg": "-105.090824", + "elevation_ft": "5110", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Wheatland", + "scheduled_service": "no", + "gps_code": "WY59", + "local_code": "WY59" + }, + { + "id": "26114", + "ident": "WY60", + "type": "small_airport", + "name": "Heiner Airport", + "latitude_deg": "42.862061", + "longitude_deg": "-110.898958", + "elevation_ft": "6440", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Bedford", + "scheduled_service": "no", + "gps_code": "WY60", + "local_code": "WY60" + }, + { + "id": "26115", + "ident": "WY61", + "type": "closed", + "name": "Gas Hills Airstrip", + "latitude_deg": "42.868099", + "longitude_deg": "-107.489505", + "elevation_ft": "6990", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Waltman", + "scheduled_service": "no", + "keywords": "WY61" + }, + { + "id": "26116", + "ident": "WY62", + "type": "heliport", + "name": "Cody Regional Health Heliport", + "latitude_deg": "44.527112", + "longitude_deg": "-109.073575", + "elevation_ft": "4995", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Cody", + "scheduled_service": "no", + "gps_code": "WY62", + "local_code": "WY62", + "keywords": "West Park Hospital" + }, + { + "id": "26117", + "ident": "WY64", + "type": "small_airport", + "name": "Lone Pine Flying Ranch Airport", + "latitude_deg": "42.957401275634766", + "longitude_deg": "-110.98300170898438", + "elevation_ft": "6000", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Thayne", + "scheduled_service": "no", + "gps_code": "WY64", + "local_code": "WY64" + }, + { + "id": "26118", + "ident": "WY65", + "type": "small_airport", + "name": "Madsen Airport", + "latitude_deg": "44.348899841308594", + "longitude_deg": "-105.33699798583984", + "elevation_ft": "4500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Gillette", + "scheduled_service": "no", + "gps_code": "WY65", + "local_code": "WY65" + }, + { + "id": "26119", + "ident": "WY66", + "type": "small_airport", + "name": "Chamberlain Brothers Ranch Airport", + "latitude_deg": "42.752201080322266", + "longitude_deg": "-105.62000274658203", + "elevation_ft": "5237", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Douglas", + "scheduled_service": "no", + "gps_code": "WY66", + "local_code": "WY66" + }, + { + "id": "26120", + "ident": "WY67", + "type": "heliport", + "name": "South Lincoln Medical Center Heliport", + "latitude_deg": "41.789398193359375", + "longitude_deg": "-110.54199981689453", + "elevation_ft": "6980", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Kemmerer", + "scheduled_service": "no", + "gps_code": "WY67", + "local_code": "WY67" + }, + { + "id": "26121", + "ident": "WY68", + "type": "heliport", + "name": "Memorial Hospital Heliport", + "latitude_deg": "41.787357", + "longitude_deg": "-107.26075", + "elevation_ft": "6880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WY", + "municipality": "Rawlins", + "scheduled_service": "no", + "gps_code": "WY68", + "local_code": "WY68" + }, + { + "id": "348037", + "ident": "WYIM", + "type": "heliport", + "name": "Kenya Heliport", + "latitude_deg": "-26.940627", + "longitude_deg": "150.459094", + "elevation_ft": "1010", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Wieambilla", + "scheduled_service": "no", + "gps_code": "YWIM" + }, + { + "id": "328940", + "ident": "WZQ", + "type": "small_airport", + "name": "Urad Middle Banner Airport", + "latitude_deg": "41.460289", + "longitude_deg": "108.539085", + "elevation_ft": "3996", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Urad Middle Banner", + "scheduled_service": "no", + "iata_code": "WZQ", + "wikipedia_link": "https://ceb.wikipedia.org/wiki/Urad_Middle_Banner_Airport" + }, + { + "id": "28143", + "ident": "X-CBG6", + "type": "closed", + "name": "Salmo Airport", + "latitude_deg": "49.16669845581055", + "longitude_deg": "-117.26699829101562", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Salmo", + "scheduled_service": "no", + "keywords": "BG6, CBG6" + }, + { + "id": "28113", + "ident": "X-KDEN", + "type": "closed", + "name": "Denver Stapleton International Airport", + "latitude_deg": "39.774200439453125", + "longitude_deg": "-104.87899780273438", + "elevation_ft": "5333", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-CO", + "municipality": "Denver", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stapleton_International_Airport", + "keywords": "DEN KDEN" + }, + { + "id": "4756", + "ident": "X-MMTG", + "type": "small_airport", + "name": "Francisco Sarabia National Airport", + "latitude_deg": "16.769699", + "longitude_deg": "-93.341499", + "elevation_ft": "3451", + "continent": "NA", + "iso_country": "MX", + "iso_region": "MX-CHP", + "municipality": "Tuxtla Gutiérrez", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Francisco_Sarabia_National_Airport", + "keywords": "MMTG, TGZ" + }, + { + "id": "5733", + "ident": "X-RPVB", + "type": "closed", + "name": "Bacolod City Domestic Airport", + "latitude_deg": "10.64244", + "longitude_deg": "122.9296", + "elevation_ft": "26", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-NEC", + "municipality": "Bacolod City", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bacolod_City_Domestic_Airport", + "keywords": "RPVB, BCD" + }, + { + "id": "24745", + "ident": "X-TA37", + "type": "closed", + "name": "Belo Broadcasting Heliport", + "latitude_deg": "32.775101", + "longitude_deg": "-96.805002", + "elevation_ft": "410", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "keywords": "TA37" + }, + { + "id": "44867", + "ident": "X-TRPM", + "type": "closed", + "name": "W. H. Bramble Airport", + "latitude_deg": "16.7589", + "longitude_deg": "-62.156399", + "continent": "NA", + "iso_country": "MS", + "iso_region": "MS-U-A", + "municipality": "Plymouth", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/W.H._Bramble_Airport", + "keywords": "MNI, TRPM" + }, + { + "id": "28130", + "ident": "X-US001", + "type": "closed", + "name": "Pike Airfield", + "latitude_deg": "43.459999084472656", + "longitude_deg": "-71.55999755859375", + "elevation_ft": "480", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-NH", + "municipality": "Tilton", + "scheduled_service": "no" + }, + { + "id": "28129", + "ident": "X-VIE", + "type": "closed", + "name": "Aspern Airfield", + "latitude_deg": "48.2244", + "longitude_deg": "16.5082", + "elevation_ft": "516", + "continent": "EU", + "iso_country": "AT", + "iso_region": "AT-9", + "municipality": "Vienna", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aspern", + "keywords": "LOAM, VIE" + }, + { + "id": "26122", + "ident": "X01", + "type": "small_airport", + "name": "Everglades Airpark", + "latitude_deg": "25.8486995697", + "longitude_deg": "-81.3900985718", + "elevation_ft": "5", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Everglades", + "scheduled_service": "no", + "gps_code": "X01", + "local_code": "X01", + "home_link": "http://www.colliergov.net/Index.aspx?page=60", + "wikipedia_link": "https://en.wikipedia.org/wiki/Everglades_Airpark" + }, + { + "id": "26123", + "ident": "X09", + "type": "small_airport", + "name": "Covey Trails Airport", + "latitude_deg": "29.690000534057617", + "longitude_deg": "-95.8396987915039", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fulshear", + "scheduled_service": "no", + "gps_code": "X09", + "local_code": "X09" + }, + { + "id": "26124", + "ident": "X23", + "type": "small_airport", + "name": "Umatilla Municipal Airport", + "latitude_deg": "28.922800064086914", + "longitude_deg": "-81.65170288085938", + "elevation_ft": "107", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Umatilla", + "scheduled_service": "no", + "gps_code": "X23", + "local_code": "X23" + }, + { + "id": "26125", + "ident": "X25", + "type": "small_airport", + "name": "Chalet Suzanne Air Strip", + "latitude_deg": "27.9538002014", + "longitude_deg": "-81.60140228270001", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Lake Wales", + "scheduled_service": "no", + "gps_code": "X25", + "local_code": "X25", + "home_link": "http://chaletsuzanne.com/wp/?page_id=18" + }, + { + "id": "26126", + "ident": "X33", + "type": "small_airport", + "name": "Doniphan Municipal Airport", + "latitude_deg": "36.693699", + "longitude_deg": "-90.784798", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MO", + "municipality": "Doniphan", + "scheduled_service": "no", + "gps_code": "KX33", + "local_code": "X33" + }, + { + "id": "26127", + "ident": "X36", + "type": "small_airport", + "name": "Buchan Airport", + "latitude_deg": "26.990100860595703", + "longitude_deg": "-82.3740005493164", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Englewood", + "scheduled_service": "no", + "gps_code": "X36", + "local_code": "X36" + }, + { + "id": "26128", + "ident": "X44", + "type": "seaplane_base", + "name": "Miami Seaplane Base", + "latitude_deg": "25.778299331665", + "longitude_deg": "-80.170303344727", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "X44", + "iata_code": "MPB", + "local_code": "X44", + "wikipedia_link": "https://en.wikipedia.org/wiki/Miami_Seaplane_Base" + }, + { + "id": "26129", + "ident": "X48", + "type": "heliport", + "name": "Miami Heliport", + "latitude_deg": "25.786100387573242", + "longitude_deg": "-80.17739868164062", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Miami", + "scheduled_service": "no", + "gps_code": "X48", + "local_code": "X48" + }, + { + "id": "26130", + "ident": "X52", + "type": "small_airport", + "name": "New Hibiscus Airpark", + "latitude_deg": "27.632299423217773", + "longitude_deg": "-80.52760314941406", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Vero Beach", + "scheduled_service": "no", + "gps_code": "X52", + "local_code": "X52" + }, + { + "id": "26131", + "ident": "X55", + "type": "small_airport", + "name": "Mid Florida at Eustis Airport", + "latitude_deg": "28.8461", + "longitude_deg": "-81.630302", + "elevation_ft": "167", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Eustis", + "scheduled_service": "no", + "local_code": "X55", + "keywords": "Mid Florida Air Service" + }, + { + "id": "26132", + "ident": "X61", + "type": "small_airport", + "name": "Bob White Field", + "latitude_deg": "28.735101", + "longitude_deg": "-81.62918", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-FL", + "municipality": "Zellwood", + "scheduled_service": "no", + "local_code": "X61" + }, + { + "id": "26134", + "ident": "X64", + "type": "small_airport", + "name": "Patillas Airport", + "latitude_deg": "17.982200622558594", + "longitude_deg": "-66.01930236816406", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "PR", + "iso_region": "PR-U-A", + "municipality": "Patillas", + "scheduled_service": "no", + "gps_code": "X64", + "local_code": "X64", + "wikipedia_link": "https://en.wikipedia.org/wiki/Patillas_Airport" + }, + { + "id": "26135", + "ident": "XA00", + "type": "small_airport", + "name": "Prose Field", + "latitude_deg": "33.148133", + "longitude_deg": "-97.280002", + "elevation_ft": "685", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Justin", + "scheduled_service": "no", + "gps_code": "XA00", + "local_code": "XA00" + }, + { + "id": "26136", + "ident": "XA01", + "type": "heliport", + "name": "Cozby-Germany Hospital Heliport", + "latitude_deg": "32.680003", + "longitude_deg": "-95.723288", + "elevation_ft": "476", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Grand Saline", + "scheduled_service": "no", + "gps_code": "XA01", + "local_code": "XA01" + }, + { + "id": "26137", + "ident": "XA02", + "type": "small_airport", + "name": "Danz Ranch Airport", + "latitude_deg": "30.279957", + "longitude_deg": "-98.426097", + "elevation_ft": "1230", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Johnson City", + "scheduled_service": "no", + "gps_code": "XA02", + "local_code": "XA02" + }, + { + "id": "26138", + "ident": "XA03", + "type": "small_airport", + "name": "Edgington Ranch Airport", + "latitude_deg": "33.427509", + "longitude_deg": "-97.271284", + "elevation_ft": "885", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sanger", + "scheduled_service": "no", + "gps_code": "XA03", + "local_code": "XA03" + }, + { + "id": "26139", + "ident": "XA04", + "type": "small_airport", + "name": "Circle Eight Ranch Airport", + "latitude_deg": "32.238323", + "longitude_deg": "-97.898775", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bluff Dale", + "scheduled_service": "no", + "gps_code": "XA04", + "local_code": "XA04" + }, + { + "id": "26140", + "ident": "XA05", + "type": "small_airport", + "name": "Fairview Field", + "latitude_deg": "34.10156", + "longitude_deg": "-102.627074", + "elevation_ft": "3819", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sudan", + "scheduled_service": "no", + "gps_code": "XA05", + "local_code": "XA05" + }, + { + "id": "26141", + "ident": "XA06", + "type": "heliport", + "name": "MDR 1 Heliport", + "latitude_deg": "33.475238", + "longitude_deg": "-101.987413", + "elevation_ft": "3295", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Wolfforth", + "scheduled_service": "no", + "gps_code": "XA06", + "local_code": "XA06" + }, + { + "id": "26142", + "ident": "XA07", + "type": "small_airport", + "name": "Spectre Airport", + "latitude_deg": "33.275001525878906", + "longitude_deg": "-97.7166976928711", + "elevation_ft": "835", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Chico", + "scheduled_service": "no", + "gps_code": "XA07", + "local_code": "XA07" + }, + { + "id": "26143", + "ident": "XA08", + "type": "small_airport", + "name": "Los Cuernos Ranch Airport", + "latitude_deg": "28.157362", + "longitude_deg": "-99.095463", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cotulla", + "scheduled_service": "no", + "gps_code": "XA08", + "local_code": "XA08" + }, + { + "id": "26144", + "ident": "XA09", + "type": "small_airport", + "name": "Menard Airport", + "latitude_deg": "33.58190155029297", + "longitude_deg": "-98.06109619140625", + "elevation_ft": "1055", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bellevue", + "scheduled_service": "no", + "gps_code": "XA09", + "local_code": "XA09" + }, + { + "id": "26145", + "ident": "XA10", + "type": "small_airport", + "name": "Ponderosa Field", + "latitude_deg": "33.23189926147461", + "longitude_deg": "-97.33879852294922", + "elevation_ft": "840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ponder", + "scheduled_service": "no", + "gps_code": "XA10", + "local_code": "XA10" + }, + { + "id": "26146", + "ident": "XA11", + "type": "heliport", + "name": "Baylor Scott & White Medical Center - Lake Pointe Heliport", + "latitude_deg": "32.917273", + "longitude_deg": "-96.508468", + "elevation_ft": "476", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rowlett", + "scheduled_service": "no", + "gps_code": "XA11", + "local_code": "XA11", + "keywords": "Lake Pointe Medical Center" + }, + { + "id": "26147", + "ident": "XA12", + "type": "small_airport", + "name": "McFarlin Ranch Airport", + "latitude_deg": "30.6947", + "longitude_deg": "-98.032799", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Bertram", + "scheduled_service": "no", + "gps_code": "XA12", + "local_code": "XA12" + }, + { + "id": "26148", + "ident": "XA13", + "type": "heliport", + "name": "Landry's Seafood House Heliport", + "latitude_deg": "29.752522", + "longitude_deg": "-95.456614", + "elevation_ft": "191", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "XA13", + "local_code": "XA13" + }, + { + "id": "26149", + "ident": "XA14", + "type": "heliport", + "name": "CHI Saint Luke’s Health Memorial Lufkin Ground Heliport", + "latitude_deg": "31.336456", + "longitude_deg": "-94.744095", + "elevation_ft": "320", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lufkin", + "scheduled_service": "no", + "gps_code": "XA14", + "local_code": "XA14" + }, + { + "id": "26150", + "ident": "XA15", + "type": "small_airport", + "name": "Holict \"Private\" Airport", + "latitude_deg": "31.426900863599997", + "longitude_deg": "-96.9796981812", + "elevation_ft": "425", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Riesel", + "scheduled_service": "no", + "gps_code": "XA15", + "local_code": "XA15" + }, + { + "id": "26151", + "ident": "XA16", + "type": "small_airport", + "name": "Tightwaad Air Ranch Airport", + "latitude_deg": "33.49420166015625", + "longitude_deg": "-97.4655990600586", + "elevation_ft": "875", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rosston", + "scheduled_service": "no", + "gps_code": "XA16", + "local_code": "XA16" + }, + { + "id": "26152", + "ident": "XA17", + "type": "small_airport", + "name": "Chuckster Airport", + "latitude_deg": "33.32170104980469", + "longitude_deg": "-95.5635986328125", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tira", + "scheduled_service": "no", + "gps_code": "XA17", + "local_code": "XA17" + }, + { + "id": "26153", + "ident": "XA18", + "type": "heliport", + "name": "Baylor All Saints Medical Center Heliport", + "latitude_deg": "32.73109817504883", + "longitude_deg": "-97.3467025756836", + "elevation_ft": "689", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "XA18", + "local_code": "XA18" + }, + { + "id": "26154", + "ident": "XA19", + "type": "heliport", + "name": "DRV Downtown Houston Aquarium Heliport", + "latitude_deg": "29.764372", + "longitude_deg": "-95.367433", + "elevation_ft": "115", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "XA19", + "local_code": "XA19" + }, + { + "id": "26155", + "ident": "XA20", + "type": "heliport", + "name": "Landry's Warehouse Heliport", + "latitude_deg": "29.784743", + "longitude_deg": "-95.454934", + "elevation_ft": "68", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "XA20", + "local_code": "XA20" + }, + { + "id": "26156", + "ident": "XA21", + "type": "heliport", + "name": "Las Colinas Medical Center Heliport", + "latitude_deg": "32.902801513671875", + "longitude_deg": "-96.95670318603516", + "elevation_ft": "502", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Irving", + "scheduled_service": "no", + "gps_code": "XA21", + "local_code": "XA21" + }, + { + "id": "26157", + "ident": "XA22", + "type": "heliport", + "name": "Laredo Medical Center Heliport", + "latitude_deg": "27.533935", + "longitude_deg": "-99.477847", + "elevation_ft": "466", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Laredo", + "scheduled_service": "no", + "gps_code": "XA22", + "local_code": "XA22" + }, + { + "id": "26158", + "ident": "XA23", + "type": "small_airport", + "name": "Richardson Field", + "latitude_deg": "33.01779938", + "longitude_deg": "-94.97229767", + "elevation_ft": "415", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pittsburg", + "scheduled_service": "no", + "gps_code": "XA23", + "local_code": "XA23" + }, + { + "id": "26159", + "ident": "XA24", + "type": "heliport", + "name": "Tom Dye Heliport", + "latitude_deg": "30.30058", + "longitude_deg": "-98.002161", + "elevation_ft": "1165", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "XA24", + "local_code": "XA24" + }, + { + "id": "26160", + "ident": "XA25", + "type": "heliport", + "name": "Lubbock Heart Hospital Heliport", + "latitude_deg": "33.603854", + "longitude_deg": "-101.916402", + "elevation_ft": "3243", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lubbock", + "scheduled_service": "no", + "gps_code": "XA25", + "local_code": "XA25" + }, + { + "id": "26161", + "ident": "XA26", + "type": "heliport", + "name": "Palo Pinto General Hospital Heliport", + "latitude_deg": "32.798819", + "longitude_deg": "-98.146192", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineral Wells", + "scheduled_service": "no", + "gps_code": "XA26", + "local_code": "XA26" + }, + { + "id": "26162", + "ident": "XA27", + "type": "heliport", + "name": "UT Health East Texas Pittsburg Hospital Heliport", + "latitude_deg": "33.03242", + "longitude_deg": "-94.960779", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pittsburg", + "scheduled_service": "no", + "gps_code": "XA27", + "local_code": "XA27", + "keywords": "ETMC - Pittsburg" + }, + { + "id": "26163", + "ident": "XA28", + "type": "heliport", + "name": "Adkins Heliport", + "latitude_deg": "29.417699813842773", + "longitude_deg": "-98.28620147705078", + "elevation_ft": "643", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "XA28", + "local_code": "XA28" + }, + { + "id": "26164", + "ident": "XA29", + "type": "heliport", + "name": "Methodist Hospital Texsan Heliport", + "latitude_deg": "29.489489", + "longitude_deg": "-98.547566", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "XA29", + "local_code": "XA29", + "keywords": "Heart Hospital of San Antonio Heliport" + }, + { + "id": "26165", + "ident": "XA30", + "type": "heliport", + "name": "Etmc Trinity Heliport", + "latitude_deg": "30.95660019", + "longitude_deg": "-95.38059998", + "elevation_ft": "233", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Trinity", + "scheduled_service": "no", + "gps_code": "XA30", + "local_code": "XA30" + }, + { + "id": "26166", + "ident": "XA31", + "type": "small_airport", + "name": "Lewis Ranch Airport", + "latitude_deg": "29.8169002532959", + "longitude_deg": "-99.78780364990234", + "elevation_ft": "1730", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Leakey", + "scheduled_service": "no", + "gps_code": "XA31", + "local_code": "XA31" + }, + { + "id": "26167", + "ident": "XA32", + "type": "small_airport", + "name": "Wolfe Field", + "latitude_deg": "30.911500930786133", + "longitude_deg": "-97.17130279541016", + "elevation_ft": "500", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Buckholts", + "scheduled_service": "no", + "gps_code": "XA32", + "local_code": "XA32" + }, + { + "id": "26168", + "ident": "XA33", + "type": "small_airport", + "name": "Thorny Woods Airport", + "latitude_deg": "32.95869827270508", + "longitude_deg": "-96.26439666748047", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Caddo Mills", + "scheduled_service": "no", + "gps_code": "XA33", + "local_code": "XA33" + }, + { + "id": "26169", + "ident": "XA34", + "type": "small_airport", + "name": "Allison Farm Airport", + "latitude_deg": "33.24169921875", + "longitude_deg": "-97.4280014038086", + "elevation_ft": "850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Decatur", + "scheduled_service": "no", + "gps_code": "XA34", + "local_code": "XA34" + }, + { + "id": "26170", + "ident": "XA35", + "type": "closed", + "name": "Southwest Rains Volunteer Fire Department Heliport", + "latitude_deg": "32.824229", + "longitude_deg": "-95.899132", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Flats", + "scheduled_service": "no", + "keywords": "XA35" + }, + { + "id": "26171", + "ident": "XA36", + "type": "heliport", + "name": "Cook Children's Medical Center Heliport", + "latitude_deg": "32.738138", + "longitude_deg": "-97.341534", + "elevation_ft": "641", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "XA36", + "local_code": "XA36" + }, + { + "id": "26172", + "ident": "XA37", + "type": "heliport", + "name": "Plaza Medical Center Heliport", + "latitude_deg": "32.734742", + "longitude_deg": "-97.34421", + "elevation_ft": "607", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "XA37", + "local_code": "XA37" + }, + { + "id": "26173", + "ident": "XA38", + "type": "heliport", + "name": "Mickler Heliport", + "latitude_deg": "29.485300064086914", + "longitude_deg": "-95.20829772949219", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Friendswood", + "scheduled_service": "no", + "gps_code": "XA38", + "local_code": "XA38" + }, + { + "id": "26174", + "ident": "XA39", + "type": "heliport", + "name": "Etmc - Gilmer Heliport", + "latitude_deg": "32.736000061", + "longitude_deg": "-94.94259643550001", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Gilmer", + "scheduled_service": "no", + "gps_code": "XA39", + "local_code": "XA39" + }, + { + "id": "26175", + "ident": "XA40", + "type": "heliport", + "name": "Richardson Regional Heliport - Bush Highway", + "latitude_deg": "32.996194", + "longitude_deg": "-96.665619", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Richardson", + "scheduled_service": "no", + "gps_code": "XA40", + "local_code": "XA40" + }, + { + "id": "26176", + "ident": "XA41", + "type": "small_airport", + "name": "Lone Star Flying Service Airport", + "latitude_deg": "30.354999542236328", + "longitude_deg": "-99.24749755859375", + "elevation_ft": "2220", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Harper", + "scheduled_service": "no", + "gps_code": "XA41", + "local_code": "XA41" + }, + { + "id": "26177", + "ident": "XA42", + "type": "small_airport", + "name": "Connies Aviation Airport", + "latitude_deg": "32.375718", + "longitude_deg": "-96.385668", + "elevation_ft": "340", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kaufman", + "scheduled_service": "no", + "gps_code": "XA42", + "local_code": "XA42" + }, + { + "id": "26178", + "ident": "XA43", + "type": "small_airport", + "name": "Fall Creek Ranch Airport", + "latitude_deg": "29.908100128173828", + "longitude_deg": "-99.20690155029297", + "elevation_ft": "2030", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Kerrville", + "scheduled_service": "no", + "gps_code": "XA43", + "local_code": "XA43" + }, + { + "id": "26179", + "ident": "XA44", + "type": "small_airport", + "name": "Birchfield Ranch Airport", + "latitude_deg": "31.26609992980957", + "longitude_deg": "-98.42389678955078", + "elevation_ft": "1550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lometa", + "scheduled_service": "no", + "gps_code": "XA44", + "local_code": "XA44" + }, + { + "id": "26180", + "ident": "XA45", + "type": "small_airport", + "name": "Weedfalls Airport", + "latitude_deg": "33.02119827270508", + "longitude_deg": "-95.93080139160156", + "elevation_ft": "560", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lone Oak", + "scheduled_service": "no", + "gps_code": "XA45", + "local_code": "XA45" + }, + { + "id": "26181", + "ident": "XA46", + "type": "small_airport", + "name": "Creekside Air Park", + "latitude_deg": "32.693599700927734", + "longitude_deg": "-95.45439910888672", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineola", + "scheduled_service": "no", + "gps_code": "XA46", + "local_code": "XA46" + }, + { + "id": "26182", + "ident": "XA47", + "type": "small_airport", + "name": "Tick Hill Airfield", + "latitude_deg": "31.30970001220703", + "longitude_deg": "-97.48480224609375", + "elevation_ft": "645", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Moody", + "scheduled_service": "no", + "gps_code": "XA47", + "local_code": "XA47" + }, + { + "id": "26183", + "ident": "XA48", + "type": "small_airport", + "name": "Dreamland Airport", + "latitude_deg": "33.641703", + "longitude_deg": "-97.315708", + "elevation_ft": "945", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Muenster", + "scheduled_service": "no", + "gps_code": "XA48", + "local_code": "XA48", + "keywords": "Myra" + }, + { + "id": "26184", + "ident": "XA49", + "type": "closed", + "name": "Oso Canyon Airport", + "latitude_deg": "29.897575", + "longitude_deg": "-101.579628", + "elevation_ft": "1820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Langtry", + "scheduled_service": "no", + "keywords": "XA49" + }, + { + "id": "26185", + "ident": "XA50", + "type": "heliport", + "name": "UT Health East Texas Quitman Hospital Heliport", + "latitude_deg": "32.797133", + "longitude_deg": "-95.443831", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Quitman", + "scheduled_service": "no", + "gps_code": "XA50", + "local_code": "XA50", + "keywords": "ETMC - Quitman" + }, + { + "id": "26186", + "ident": "XA51", + "type": "small_airport", + "name": "Smith Airport", + "latitude_deg": "31.41830062866211", + "longitude_deg": "-97.12580108642578", + "elevation_ft": "525", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Robinson", + "scheduled_service": "no", + "gps_code": "XA51", + "local_code": "XA51" + }, + { + "id": "26187", + "ident": "XA52", + "type": "small_airport", + "name": "Ehni Airport", + "latitude_deg": "30.923500061035156", + "longitude_deg": "-95.29350280761719", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Trinity", + "scheduled_service": "no", + "gps_code": "XA52", + "local_code": "XA52" + }, + { + "id": "45838", + "ident": "XA53", + "type": "heliport", + "name": "Texas Health Presbyterian Hospital Allen Heliport", + "latitude_deg": "33.117067", + "longitude_deg": "-96.67232", + "elevation_ft": "664", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Allen", + "scheduled_service": "no", + "gps_code": "XA53", + "local_code": "XA53" + }, + { + "id": "45823", + "ident": "XA54", + "type": "heliport", + "name": "Glen Rose Medical Center Heliport", + "latitude_deg": "32.241882", + "longitude_deg": "-97.746321", + "elevation_ft": "619", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Glen Rose", + "scheduled_service": "no", + "gps_code": "XA54", + "local_code": "XA54" + }, + { + "id": "45839", + "ident": "XA56", + "type": "heliport", + "name": "Hunt Regional Medical Center Heliport", + "latitude_deg": "33.122295", + "longitude_deg": "-96.125103", + "elevation_ft": "561", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "XA56", + "local_code": "XA56", + "keywords": "Presbyterian Hospital of Greenville" + }, + { + "id": "7627", + "ident": "XA57", + "type": "heliport", + "name": "Wise Regional Health System Heliport", + "latitude_deg": "33.216458", + "longitude_deg": "-97.593487", + "elevation_ft": "957", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Decatur", + "scheduled_service": "no", + "gps_code": "XA57", + "local_code": "XA57", + "keywords": "Formerly 0XA1" + }, + { + "id": "26216", + "ident": "XA59", + "type": "heliport", + "name": "Medical City Lewisville Heliport", + "latitude_deg": "33.044145", + "longitude_deg": "-97.005358", + "elevation_ft": "546", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lewisville", + "scheduled_service": "no", + "gps_code": "XA59", + "local_code": "XA59", + "keywords": "Medical Center of Lewisville" + }, + { + "id": "26204", + "ident": "XA60", + "type": "heliport", + "name": "Paris Regional Medical Center Heliport", + "latitude_deg": "33.659698486328125", + "longitude_deg": "-95.54650115966797", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "XA60", + "local_code": "XA60" + }, + { + "id": "45807", + "ident": "XA61", + "type": "heliport", + "name": "Baylor University Medical Center Dallas Heliport", + "latitude_deg": "32.788331", + "longitude_deg": "-96.7801", + "elevation_ft": "551", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "XA61", + "local_code": "XA61" + }, + { + "id": "26222", + "ident": "XA62", + "type": "heliport", + "name": "Methodist Dallas Medical Center Heliport", + "latitude_deg": "32.7605018616", + "longitude_deg": "-96.8246994019", + "elevation_ft": "600", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "XA62", + "local_code": "XA62", + "keywords": "XA97" + }, + { + "id": "26188", + "ident": "XA63", + "type": "heliport", + "name": "AAF Heliport", + "latitude_deg": "33.0890007019043", + "longitude_deg": "-96.59210205078125", + "elevation_ft": "615", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lucas", + "scheduled_service": "no", + "gps_code": "XA63", + "local_code": "XA63" + }, + { + "id": "26189", + "ident": "XA64", + "type": "closed", + "name": "Nash Ranch Airport", + "latitude_deg": "28.9617", + "longitude_deg": "-99.3853", + "elevation_ft": "780", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Batesville", + "scheduled_service": "no", + "keywords": "XA64" + }, + { + "id": "26190", + "ident": "XA65", + "type": "small_airport", + "name": "TXAeroSport Aerodrome", + "latitude_deg": "33.53611", + "longitude_deg": "-96.680331", + "elevation_ft": "855", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dorchester", + "scheduled_service": "no", + "local_code": "X65", + "home_link": "http://www.txaerosport.com/", + "keywords": "6TS3, XA65, Howe" + }, + { + "id": "26191", + "ident": "XA66", + "type": "small_airport", + "name": "El Jardin Ranch Airport", + "latitude_deg": "28.075000762939453", + "longitude_deg": "-99.2863998413086", + "elevation_ft": "482", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Encinal", + "scheduled_service": "no", + "gps_code": "XA66", + "local_code": "XA66" + }, + { + "id": "26192", + "ident": "XA67", + "type": "heliport", + "name": "St. Joseph Medical Center Heliport", + "latitude_deg": "29.747806", + "longitude_deg": "-95.367672", + "elevation_ft": "90", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "XA67", + "local_code": "XA67", + "keywords": "Christus St Joseph Hospital Heliport" + }, + { + "id": "26193", + "ident": "XA68", + "type": "small_airport", + "name": "Akroville Airport", + "latitude_deg": "33.3918", + "longitude_deg": "-97.355301", + "elevation_ft": "895", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Slidell", + "scheduled_service": "no", + "local_code": "3TX", + "keywords": "XA68" + }, + { + "id": "26194", + "ident": "XA69", + "type": "heliport", + "name": "Shelton Private Heliport", + "latitude_deg": "32.33610153198242", + "longitude_deg": "-97.96939849853516", + "elevation_ft": "1070", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Tolar", + "scheduled_service": "no", + "gps_code": "XA69", + "local_code": "XA69" + }, + { + "id": "26195", + "ident": "XA70", + "type": "heliport", + "name": "DeTar Hospital Navarro Campus Heliport", + "latitude_deg": "28.8083", + "longitude_deg": "-96.996696", + "elevation_ft": "102", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Victoria", + "scheduled_service": "no", + "gps_code": "XA70", + "local_code": "XA70" + }, + { + "id": "26196", + "ident": "XA71", + "type": "small_airport", + "name": "North Cedar Airport", + "latitude_deg": "31.277299880981445", + "longitude_deg": "-94.9739990234375", + "elevation_ft": "250", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Apple Springs", + "scheduled_service": "no", + "gps_code": "XA71", + "local_code": "XA71" + }, + { + "id": "26197", + "ident": "XA72", + "type": "small_airport", + "name": "Stocker Airport", + "latitude_deg": "33.27690124511719", + "longitude_deg": "-97.28939819335938", + "elevation_ft": "770", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Krum", + "scheduled_service": "no", + "gps_code": "XA72", + "local_code": "XA72" + }, + { + "id": "26198", + "ident": "XA73", + "type": "heliport", + "name": "Galveston Helipad Area Nr 1 Heliport", + "latitude_deg": "29.322778", + "longitude_deg": "-94.78611", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Galveston", + "scheduled_service": "no", + "gps_code": "XA73", + "local_code": "XA73", + "keywords": "Midstream Galveston Nr 1" + }, + { + "id": "26199", + "ident": "XA74", + "type": "heliport", + "name": "Midstream Galveston Helipad Area Nr 2 Heliport", + "latitude_deg": "29.325119", + "longitude_deg": "-94.784559", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Galveston", + "scheduled_service": "no", + "gps_code": "XA74", + "local_code": "XA74", + "keywords": "Midstream Galveston Nr 2" + }, + { + "id": "26200", + "ident": "XA75", + "type": "small_airport", + "name": "Double A Airport", + "latitude_deg": "32.32400131225586", + "longitude_deg": "-97.09970092773438", + "elevation_ft": "635", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Grandview", + "scheduled_service": "no", + "gps_code": "XA75", + "local_code": "XA75" + }, + { + "id": "26201", + "ident": "XA76", + "type": "heliport", + "name": "Kriv Fox 26 Television Heliport", + "latitude_deg": "29.727699279785156", + "longitude_deg": "-95.44719696044922", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "XA76", + "local_code": "XA76" + }, + { + "id": "26202", + "ident": "XA77", + "type": "small_airport", + "name": "Benny White Flying Airport", + "latitude_deg": "32.751188", + "longitude_deg": "-101.780391", + "elevation_ft": "2943", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Lamesa", + "scheduled_service": "no", + "gps_code": "XA77", + "local_code": "XA77" + }, + { + "id": "26203", + "ident": "XA78", + "type": "small_airport", + "name": "Melody Ranch Airport", + "latitude_deg": "33.46229934692383", + "longitude_deg": "-97.07099914550781", + "elevation_ft": "729", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mountain Springs", + "scheduled_service": "no", + "gps_code": "XA78", + "local_code": "XA78" + }, + { + "id": "45806", + "ident": "XA79", + "type": "heliport", + "name": "Baylor Regional Medical Center At Plano Heliport", + "latitude_deg": "33.014233", + "longitude_deg": "-96.789967", + "elevation_ft": "688", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Plano", + "scheduled_service": "no", + "gps_code": "XA79", + "local_code": "XA79" + }, + { + "id": "26205", + "ident": "XA80", + "type": "heliport", + "name": "Martin Energy Services Harbor Island Heliport", + "latitude_deg": "27.846726", + "longitude_deg": "-97.063127", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port Aransas", + "scheduled_service": "no", + "gps_code": "XA80", + "local_code": "XA80", + "keywords": "Midstream Harbor Island Heliport" + }, + { + "id": "26206", + "ident": "XA81", + "type": "heliport", + "name": "Midstream Port O'Connor Heliport", + "latitude_deg": "28.427485", + "longitude_deg": "-96.449928", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port O'Connor", + "scheduled_service": "no", + "gps_code": "XA81", + "local_code": "XA81" + }, + { + "id": "26207", + "ident": "XA82", + "type": "closed", + "name": "Woodstone Corporation Heliport", + "latitude_deg": "29.616699", + "longitude_deg": "-97.881699", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seguin", + "scheduled_service": "no", + "keywords": "XA82" + }, + { + "id": "26208", + "ident": "XA83", + "type": "closed", + "name": "South Padre Island Heliport", + "latitude_deg": "26.070411", + "longitude_deg": "-97.15725", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "South Padre Island", + "scheduled_service": "no", + "keywords": "XA83" + }, + { + "id": "26209", + "ident": "XA84", + "type": "closed", + "name": "Stoney Fork Landing Airport", + "latitude_deg": "33.482754", + "longitude_deg": "-97.11981", + "elevation_ft": "680", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Valley View", + "scheduled_service": "no", + "keywords": "XA84" + }, + { + "id": "26210", + "ident": "XA85", + "type": "small_airport", + "name": "Cougar Landing Airport", + "latitude_deg": "31.63330078", + "longitude_deg": "-97.3167038", + "elevation_ft": "595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no", + "gps_code": "XA85", + "local_code": "XA85" + }, + { + "id": "26211", + "ident": "XA86", + "type": "small_airport", + "name": "Driftwood Ranch Airport", + "latitude_deg": "32.56700134277344", + "longitude_deg": "-97.80480194091797", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Weatherford", + "scheduled_service": "no", + "gps_code": "XA86", + "local_code": "XA86" + }, + { + "id": "26212", + "ident": "XA87", + "type": "heliport", + "name": "Coon Creek Club Heliport", + "latitude_deg": "32.078399658203125", + "longitude_deg": "-95.85030364990234", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Athens", + "scheduled_service": "no", + "gps_code": "XA87", + "local_code": "XA87" + }, + { + "id": "26213", + "ident": "XA88", + "type": "small_airport", + "name": "DM Ranch Airport", + "latitude_deg": "28.978673", + "longitude_deg": "-99.56214", + "elevation_ft": "750", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Batesville", + "scheduled_service": "no", + "gps_code": "XA88", + "local_code": "XA88" + }, + { + "id": "26214", + "ident": "XA89", + "type": "small_airport", + "name": "Faith Ranch Airport", + "latitude_deg": "28.20870018", + "longitude_deg": "-100.0189972", + "elevation_ft": "773", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Carrizo Springs", + "scheduled_service": "no", + "gps_code": "XA89", + "local_code": "XA89" + }, + { + "id": "26215", + "ident": "XA90", + "type": "small_airport", + "name": "Fly 1 On Airport", + "latitude_deg": "32.753456", + "longitude_deg": "-95.523512", + "elevation_ft": "474", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mineola", + "scheduled_service": "no", + "gps_code": "XA90", + "local_code": "XA90" + }, + { + "id": "45850", + "ident": "XA91", + "type": "small_airport", + "name": "Wildwood Airport", + "latitude_deg": "30.533333", + "longitude_deg": "-94.438056", + "elevation_ft": "118", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Village Mills", + "scheduled_service": "no", + "gps_code": "XA91", + "local_code": "XA91" + }, + { + "id": "26217", + "ident": "XA92", + "type": "small_airport", + "name": "Herd Ranch Airport", + "latitude_deg": "30.868402", + "longitude_deg": "-100.103002", + "elevation_ft": "2185", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Menard", + "scheduled_service": "no", + "gps_code": "XA92", + "local_code": "XA92" + }, + { + "id": "26218", + "ident": "XA93", + "type": "small_airport", + "name": "Tortuga Ranch Airport", + "latitude_deg": "28.618546", + "longitude_deg": "-99.653755", + "elevation_ft": "550", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brundage", + "scheduled_service": "no", + "gps_code": "XA93", + "local_code": "XA93" + }, + { + "id": "26219", + "ident": "XA94", + "type": "heliport", + "name": "Rick's Hilltop Heliport", + "latitude_deg": "30.758539", + "longitude_deg": "-98.248864", + "elevation_ft": "1300", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Burnet", + "scheduled_service": "no", + "gps_code": "XA94", + "local_code": "XA94" + }, + { + "id": "26220", + "ident": "XA95", + "type": "small_airport", + "name": "Candelaria Airport", + "latitude_deg": "30.14940071105957", + "longitude_deg": "-104.68299865722656", + "elevation_ft": "2913", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Candelaria", + "scheduled_service": "no", + "gps_code": "XA95", + "local_code": "XA95" + }, + { + "id": "26221", + "ident": "XA96", + "type": "small_airport", + "name": "En Gedi Ranch Airport", + "latitude_deg": "35.662498474121094", + "longitude_deg": "-100.3239974975586", + "elevation_ft": "2800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Canadian", + "scheduled_service": "no", + "gps_code": "XA96", + "local_code": "XA96" + }, + { + "id": "334235", + "ident": "XA97", + "type": "heliport", + "name": "Mother Frances-Canton Heliport", + "latitude_deg": "32.587237", + "longitude_deg": "-95.873705", + "elevation_ft": "509", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Canton", + "scheduled_service": "no", + "gps_code": "XA97", + "local_code": "XA97" + }, + { + "id": "26223", + "ident": "XA98", + "type": "small_airport", + "name": "Jbj Ranch Airport", + "latitude_deg": "33.30270004272461", + "longitude_deg": "-97.45809936523438", + "elevation_ft": "890", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Decatur", + "scheduled_service": "no", + "gps_code": "XA98", + "local_code": "XA98" + }, + { + "id": "26224", + "ident": "XA99", + "type": "small_airport", + "name": "Flat Bush Airport", + "latitude_deg": "33.1343994140625", + "longitude_deg": "-97.60700225830078", + "elevation_ft": "862", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Decatur", + "scheduled_service": "no", + "gps_code": "XA99", + "local_code": "XA99" + }, + { + "id": "317272", + "ident": "XBB", + "type": "seaplane_base", + "name": "Blubber Bay Seaplane Base", + "latitude_deg": "49.793958", + "longitude_deg": "-124.621064", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Blubber Bay", + "scheduled_service": "no", + "iata_code": "XBB" + }, + { + "id": "347322", + "ident": "XBL", + "type": "closed", + "name": "Buno Bedelle Airport", + "latitude_deg": "8.447604", + "longitude_deg": "36.341035", + "elevation_ft": "6560", + "continent": "AF", + "iso_country": "ET", + "iso_region": "ET-OR", + "municipality": "Bedelle", + "scheduled_service": "no", + "iata_code": "XBL" + }, + { + "id": "301809", + "ident": "XBN", + "type": "small_airport", + "name": "Biniguni Airport", + "latitude_deg": "-9.6425", + "longitude_deg": "149.303889", + "elevation_ft": "215", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MBA", + "municipality": "Biniguni", + "scheduled_service": "no", + "gps_code": "AYBZ", + "iata_code": "XBN", + "local_code": "BNI" + }, + { + "id": "41918", + "ident": "XBRO", + "type": "small_airport", + "name": "Broadford Airstrip", + "latitude_deg": "57.253399", + "longitude_deg": "-5.8279", + "elevation_ft": "24", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Ashaig", + "scheduled_service": "no", + "gps_code": "EGEI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Broadford_Airfield", + "keywords": "Ashaig Airstrip, Isle of Sky Airstrip, Broadford" + }, + { + "id": "317829", + "ident": "XIG", + "type": "small_airport", + "name": "Xinguara Municipal Airport", + "latitude_deg": "-7.0906", + "longitude_deg": "-49.9765", + "elevation_ft": "810", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-PA", + "municipality": "Xinguara", + "scheduled_service": "no", + "gps_code": "SWSX", + "iata_code": "XIG", + "local_code": "PA0150", + "wikipedia_link": "https://en.wikipedia.org/wiki/Xinguara_Municipal_Airport" + }, + { + "id": "316471", + "ident": "XK-0001", + "type": "medium_airport", + "name": "KFOR Base Airfield", + "latitude_deg": "42.346522", + "longitude_deg": "21.19432", + "continent": "EU", + "iso_country": "XK", + "iso_region": "XK-05", + "municipality": "Camp Bondsteel", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camp_Bondsteel" + }, + { + "id": "351080", + "ident": "XK-0002", + "type": "small_airport", + "name": "Jagodë Cropduster Strip", + "latitude_deg": "42.63982", + "longitude_deg": "20.50275", + "elevation_ft": "1634", + "continent": "EU", + "iso_country": "XK", + "iso_region": "XK-03", + "municipality": "Jagodë", + "scheduled_service": "no" + }, + { + "id": "351081", + "ident": "XK-0003", + "type": "small_airport", + "name": "Banjë Cropduster Strip", + "latitude_deg": "42.47664", + "longitude_deg": "20.78648", + "elevation_ft": "1943", + "continent": "EU", + "iso_country": "XK", + "iso_region": "XK-04", + "municipality": "Banjë", + "scheduled_service": "no" + }, + { + "id": "351082", + "ident": "XK-0004", + "type": "heliport", + "name": "Dubrava Prison Heliport", + "latitude_deg": "42.78575", + "longitude_deg": "20.55182", + "elevation_ft": "1844", + "continent": "EU", + "iso_country": "XK", + "iso_region": "XK-03", + "municipality": "Istog", + "scheduled_service": "no" + }, + { + "id": "35085", + "ident": "XLLL", + "type": "medium_airport", + "name": "Soltsy-2 Air Base", + "latitude_deg": "58.139545", + "longitude_deg": "30.33042", + "elevation_ft": "266", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-NGR", + "municipality": "Soltsy", + "scheduled_service": "no", + "local_code": "XLLL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Soltsy-2" + }, + { + "id": "34934", + "ident": "XLLN", + "type": "small_airport", + "name": "Kasimovo Airfield", + "latitude_deg": "60.198299", + "longitude_deg": "30.334999", + "elevation_ft": "230", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-LEN", + "municipality": "St. Petersburg", + "scheduled_service": "no", + "local_code": "XLLN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kasimovo_Airport", + "keywords": "Аэродром Касимово" + }, + { + "id": "43018", + "ident": "XLMV", + "type": "medium_airport", + "name": "Severomorsk-3 Naval Air Base", + "latitude_deg": "68.866669", + "longitude_deg": "33.716667", + "elevation_ft": "564", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-MUR", + "municipality": "Severomorsk", + "scheduled_service": "no", + "local_code": "XLMV", + "home_link": "http://severomorsk.3dn.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Severomorsk-3_(air_base)", + "keywords": "Malyavr, Murmansk Northeast" + }, + { + "id": "319516", + "ident": "XLO", + "type": "closed", + "name": "Long Xuyên Airport", + "latitude_deg": "10.330134", + "longitude_deg": "105.473144", + "elevation_ft": "12", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SW", + "municipality": "Long Xuyên", + "scheduled_service": "no", + "iata_code": "XLO" + }, + { + "id": "43010", + "ident": "XLWF", + "type": "medium_airport", + "name": "Fedotovo Naval Air Base", + "latitude_deg": "59.193031", + "longitude_deg": "39.129411", + "elevation_ft": "574", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLG", + "municipality": "Kipelovo", + "scheduled_service": "no", + "local_code": "XLWF", + "home_link": "http://www.vologda18.narod.ru/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fedotovo", + "keywords": "Kipelovo Naval Air Base, Аэродром Федотово, Аэродром Кипелово" + }, + { + "id": "44760", + "ident": "XLWT", + "type": "small_airport", + "name": "Trufanovo Airfield", + "latitude_deg": "59.308998", + "longitude_deg": "39.849998", + "elevation_ft": "417", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VLG", + "municipality": "Vologda", + "scheduled_service": "no", + "local_code": "XLWT", + "home_link": "http://www.chpa.ru/dzvologda/dzvologda_main.htm", + "keywords": "Аэродром Труфаново" + }, + { + "id": "313435", + "ident": "XMA", + "type": "small_airport", + "name": "Maramag Airport", + "latitude_deg": "7.7538", + "longitude_deg": "125.0333", + "elevation_ft": "919", + "continent": "AS", + "iso_country": "PH", + "iso_region": "PH-BUK", + "municipality": "Maramag", + "scheduled_service": "no", + "iata_code": "XMA", + "home_link": "http://www.pbase.com/philippineaviation/maramagoadi_airport_bukidnon", + "keywords": "Oadi" + }, + { + "id": "337834", + "ident": "XMN", + "type": "closed", + "name": "Xiamen Xiang'an Airport (under construction)", + "latitude_deg": "24.5556", + "longitude_deg": "118.3534", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-35", + "municipality": "Xiang'an, Xiamen", + "scheduled_service": "no", + "gps_code": "ZSAM", + "iata_code": "XMN" + }, + { + "id": "30591", + "ident": "XMUC", + "type": "closed", + "name": "Flughafen München-Riem", + "latitude_deg": "48.137798", + "longitude_deg": "11.6903", + "continent": "EU", + "iso_country": "DE", + "iso_region": "DE-BY", + "municipality": "Munich", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Munich-Riem_airport", + "keywords": "EDDM, MUC" + }, + { + "id": "319521", + "ident": "XNG", + "type": "closed", + "name": "Quảng Ngãi Airfield", + "latitude_deg": "15.115474", + "longitude_deg": "108.771816", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SCC", + "municipality": "Quảng Ngãi", + "scheduled_service": "no", + "iata_code": "XNG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qu%E1%BA%A3ng_Ng%C3%A3i_Airfield" + }, + { + "id": "41917", + "ident": "XPLO", + "type": "small_airport", + "name": "Plockton Airstrip", + "latitude_deg": "57.335499", + "longitude_deg": "-5.67308", + "elevation_ft": "226", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-SCT", + "municipality": "Plockton", + "scheduled_service": "no", + "gps_code": "EGEV" + }, + { + "id": "332207", + "ident": "XRQ", + "type": "small_airport", + "name": "New Barag Right Banner Baogede Airport", + "latitude_deg": "48.575585", + "longitude_deg": "116.939382", + "elevation_ft": "1798", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "New Barag Right Banner", + "scheduled_service": "yes", + "iata_code": "XRQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Xinbarag_Youqi_Baogede_Airport" + }, + { + "id": "35017", + "ident": "XRWL", + "type": "medium_airport", + "name": "Lebyazhye Air Base", + "latitude_deg": "50.201698303200004", + "longitude_deg": "45.2083015442", + "elevation_ft": "381", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-VGG", + "municipality": "Kamyshin", + "scheduled_service": "no", + "gps_code": "XRWL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lebyazhye_(air_base)", + "keywords": "Аэродром Лебяжье, ЬРВЛ" + }, + { + "id": "26225", + "ident": "XS00", + "type": "small_airport", + "name": "Flying D Airport", + "latitude_deg": "30.63719940185547", + "longitude_deg": "-98.74829864501953", + "elevation_ft": "1460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Llano", + "scheduled_service": "no", + "gps_code": "XS00", + "local_code": "XS00" + }, + { + "id": "26226", + "ident": "XS01", + "type": "small_airport", + "name": "Tschirhart Ranch Airport", + "latitude_deg": "30.450199127197266", + "longitude_deg": "-98.88619995117188", + "elevation_ft": "2060", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fredericksburg", + "scheduled_service": "no", + "gps_code": "XS01", + "local_code": "XS01" + }, + { + "id": "26227", + "ident": "XS02", + "type": "closed", + "name": "Tarrant County Water Control Heliport", + "latitude_deg": "32.7551", + "longitude_deg": "-97.343597", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "local_code": "XS02", + "keywords": "XS02" + }, + { + "id": "26228", + "ident": "XS03", + "type": "small_airport", + "name": "Herbert Ranch Airport", + "latitude_deg": "30.486573", + "longitude_deg": "-98.284951", + "elevation_ft": "1140", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marble Falls", + "scheduled_service": "no", + "gps_code": "XS03", + "local_code": "XS03" + }, + { + "id": "26229", + "ident": "XS04", + "type": "heliport", + "name": "Crockett Medical Center Heliport", + "latitude_deg": "31.32523", + "longitude_deg": "-95.438994", + "elevation_ft": "368", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crockett", + "scheduled_service": "no", + "keywords": "XS04, East Texas Medical Center Crockett Heliport, Kings Inn Heliport, Houston County Hospital Heliport" + }, + { + "id": "26230", + "ident": "XS05", + "type": "small_airport", + "name": "H M Ranch Airport", + "latitude_deg": "29.598800659179688", + "longitude_deg": "-98.17109680175781", + "elevation_ft": "751", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Marion", + "scheduled_service": "no", + "gps_code": "XS05", + "local_code": "XS05" + }, + { + "id": "26231", + "ident": "XS06", + "type": "closed", + "name": "Flying B Ranch Airport", + "latitude_deg": "32.298501", + "longitude_deg": "-97.149498", + "elevation_ft": "665", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Grandview", + "scheduled_service": "no", + "keywords": "XS06" + }, + { + "id": "26232", + "ident": "XS07", + "type": "small_airport", + "name": "W D Cornelius Ranch Airport", + "latitude_deg": "28.9503", + "longitude_deg": "-96.059998", + "elevation_ft": "47", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Markham", + "scheduled_service": "no", + "gps_code": "XS07", + "local_code": "XS07" + }, + { + "id": "26233", + "ident": "XS08", + "type": "small_airport", + "name": "Polk Ranch Airport", + "latitude_deg": "30.876800537109375", + "longitude_deg": "-99.19950103759766", + "elevation_ft": "1840", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mason", + "scheduled_service": "no", + "gps_code": "XS08", + "local_code": "XS08" + }, + { + "id": "26234", + "ident": "XS09", + "type": "small_airport", + "name": "Estates Airpark", + "latitude_deg": "30.537500381469727", + "longitude_deg": "-95.4364013671875", + "elevation_ft": "325", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "New Waverly", + "scheduled_service": "no", + "gps_code": "XS09", + "local_code": "XS09" + }, + { + "id": "26235", + "ident": "XS10", + "type": "closed", + "name": "Aransas National Wildlife Refuge Airport", + "latitude_deg": "28.124533", + "longitude_deg": "-96.798692", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Matagorda Island", + "scheduled_service": "no", + "keywords": "XS10" + }, + { + "id": "26236", + "ident": "XS11", + "type": "small_airport", + "name": "Idlewild Airport", + "latitude_deg": "29.777899", + "longitude_deg": "-99.361407", + "elevation_ft": "1660", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Medina", + "scheduled_service": "no", + "gps_code": "XS11", + "local_code": "XS11" + }, + { + "id": "26237", + "ident": "XS12", + "type": "small_airport", + "name": "Liberty Hill Air Ranch Airport", + "latitude_deg": "30.678058", + "longitude_deg": "-98.017294", + "elevation_ft": "1161", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Liberty Hill", + "scheduled_service": "no", + "gps_code": "XS12", + "local_code": "XS12" + }, + { + "id": "26238", + "ident": "XS13", + "type": "small_airport", + "name": "T-4 Ranch Airport", + "latitude_deg": "29.816600799560547", + "longitude_deg": "-99.19670104980469", + "elevation_ft": "1595", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Medina", + "scheduled_service": "no", + "gps_code": "XS13", + "local_code": "XS13" + }, + { + "id": "26239", + "ident": "XS14", + "type": "small_airport", + "name": "Weese International Airport", + "latitude_deg": "32.969398498535156", + "longitude_deg": "-96.07060241699219", + "elevation_ft": "487", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Greenville", + "scheduled_service": "no", + "gps_code": "XS14", + "local_code": "XS14" + }, + { + "id": "26240", + "ident": "XS15", + "type": "small_airport", + "name": "Womack Ranch Airport", + "latitude_deg": "30.779108", + "longitude_deg": "-99.894421", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Menard", + "scheduled_service": "no", + "gps_code": "XS15", + "local_code": "XS15" + }, + { + "id": "26241", + "ident": "XS16", + "type": "heliport", + "name": "San Jacinto College Central Campus Heliport", + "latitude_deg": "29.65920066833496", + "longitude_deg": "-95.11190032958984", + "elevation_ft": "26", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pasadena", + "scheduled_service": "no", + "gps_code": "XS16", + "local_code": "XS16" + }, + { + "id": "26242", + "ident": "XS17", + "type": "small_airport", + "name": "Hensley Ranch Airport", + "latitude_deg": "30.7091007232666", + "longitude_deg": "-96.90190124511719", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Milano", + "scheduled_service": "no", + "gps_code": "XS17", + "local_code": "XS17" + }, + { + "id": "26243", + "ident": "XS18", + "type": "small_airport", + "name": "Tom J Moore Farm Airport", + "latitude_deg": "30.384700775146484", + "longitude_deg": "-96.22470092773438", + "elevation_ft": "198", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Millican", + "scheduled_service": "no", + "gps_code": "XS18", + "local_code": "XS18" + }, + { + "id": "26244", + "ident": "XS19", + "type": "heliport", + "name": "Cedar Park Regional Medical Center Heliport", + "latitude_deg": "30.532611", + "longitude_deg": "-97.813445", + "elevation_ft": "921", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Cedar Park", + "scheduled_service": "no", + "gps_code": "XS19", + "local_code": "XS19" + }, + { + "id": "26245", + "ident": "XS20", + "type": "small_airport", + "name": "Dos Arroyos Ranch Airport", + "latitude_deg": "30.15410041809082", + "longitude_deg": "-99.29779815673828", + "elevation_ft": "2058", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mountain Home", + "scheduled_service": "no", + "gps_code": "XS20", + "local_code": "XS20" + }, + { + "id": "26246", + "ident": "XS21", + "type": "small_airport", + "name": "H & S Airfield", + "latitude_deg": "29.331100463867188", + "longitude_deg": "-95.70469665527344", + "elevation_ft": "100", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Damon", + "scheduled_service": "no", + "gps_code": "XS21", + "local_code": "XS21" + }, + { + "id": "26247", + "ident": "XS22", + "type": "small_airport", + "name": "Y O Ranch Airport", + "latitude_deg": "30.205402", + "longitude_deg": "-99.676123", + "elevation_ft": "2136", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mountain Home", + "scheduled_service": "no", + "gps_code": "XS22", + "local_code": "XS22" + }, + { + "id": "26248", + "ident": "XS23", + "type": "small_airport", + "name": "Priour Ranch Airport", + "latitude_deg": "30.12660026550293", + "longitude_deg": "-99.47119903564453", + "elevation_ft": "2200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mountain Home", + "scheduled_service": "no", + "gps_code": "XS23", + "local_code": "XS23" + }, + { + "id": "26249", + "ident": "XS24", + "type": "small_airport", + "name": "Cherry Spraying Service Airport", + "latitude_deg": "29.829700469970703", + "longitude_deg": "-97.09919738769531", + "elevation_ft": "370", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Muldoon", + "scheduled_service": "no", + "gps_code": "XS24", + "local_code": "XS24" + }, + { + "id": "26250", + "ident": "XS25", + "type": "small_airport", + "name": "Flying C Ranch Airport", + "latitude_deg": "29.384700775146484", + "longitude_deg": "-95.68299865722656", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Needville", + "scheduled_service": "no", + "gps_code": "XS25", + "local_code": "XS25" + }, + { + "id": "26251", + "ident": "XS26", + "type": "heliport", + "name": "Graco Mechanical Inc Heliport", + "latitude_deg": "29.726900100708008", + "longitude_deg": "-95.4832992553711", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Houston", + "scheduled_service": "no", + "gps_code": "XS26", + "local_code": "XS26" + }, + { + "id": "26252", + "ident": "XS27", + "type": "closed", + "name": "Farm Air Service Airport", + "latitude_deg": "30.037248", + "longitude_deg": "-94.397303", + "elevation_ft": "45", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Nome", + "scheduled_service": "no", + "keywords": "XS27" + }, + { + "id": "26253", + "ident": "XS28", + "type": "closed", + "name": "North Willis Airport", + "latitude_deg": "30.0266", + "longitude_deg": "-94.4627", + "elevation_ft": "42", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Nome", + "scheduled_service": "no", + "keywords": "XS28" + }, + { + "id": "26254", + "ident": "XS29", + "type": "closed", + "name": "Sonny Broussard Landing Strip", + "latitude_deg": "29.990801", + "longitude_deg": "-94.422401", + "elevation_ft": "35", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Nome", + "scheduled_service": "no", + "local_code": "XS29", + "keywords": "XS29" + }, + { + "id": "26255", + "ident": "XS30", + "type": "small_airport", + "name": "Burress Airport", + "latitude_deg": "33.605098724365234", + "longitude_deg": "-95.48190307617188", + "elevation_ft": "484", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "XS30", + "local_code": "XS30" + }, + { + "id": "26256", + "ident": "XS31", + "type": "small_airport", + "name": "Graham Field", + "latitude_deg": "33.70180130004883", + "longitude_deg": "-96.83190155029297", + "elevation_ft": "695", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sadler", + "scheduled_service": "no", + "gps_code": "XS31", + "local_code": "XS31" + }, + { + "id": "26257", + "ident": "XS32", + "type": "heliport", + "name": "Nucor Ems Heliport", + "latitude_deg": "31.344999313354492", + "longitude_deg": "-96.16500091552734", + "elevation_ft": "443", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Jewett", + "scheduled_service": "no", + "gps_code": "XS32", + "local_code": "XS32" + }, + { + "id": "26258", + "ident": "XS33", + "type": "small_airport", + "name": "Chesson Airport", + "latitude_deg": "30.062557", + "longitude_deg": "-93.865664", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Orange", + "scheduled_service": "no", + "gps_code": "XS33", + "local_code": "XS33" + }, + { + "id": "26259", + "ident": "XS34", + "type": "closed", + "name": "Skylark Airport", + "latitude_deg": "32.312183", + "longitude_deg": "-96.487355", + "elevation_ft": "430", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Ennis", + "scheduled_service": "no", + "keywords": "XS34" + }, + { + "id": "26260", + "ident": "XS35", + "type": "small_airport", + "name": "Trull Airport", + "latitude_deg": "28.739200592041016", + "longitude_deg": "-96.21910095214844", + "elevation_ft": "18", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Palacios", + "scheduled_service": "no", + "gps_code": "XS35", + "local_code": "XS35" + }, + { + "id": "45849", + "ident": "XS36", + "type": "small_airport", + "name": "Tres Ninos Ranch Airport", + "latitude_deg": "30.253528", + "longitude_deg": "-101.691631", + "elevation_ft": "1690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pandale", + "scheduled_service": "no", + "gps_code": "XS36", + "local_code": "XS36" + }, + { + "id": "26261", + "ident": "XS37", + "type": "heliport", + "name": "Police Heliport", + "latitude_deg": "29.69219970703125", + "longitude_deg": "-95.19599914550781", + "elevation_ft": "55", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pasadena", + "scheduled_service": "no", + "gps_code": "XS37", + "local_code": "XS37" + }, + { + "id": "26262", + "ident": "XS38", + "type": "heliport", + "name": "3321 Westside Heliport", + "latitude_deg": "29.66101", + "longitude_deg": "-95.201908", + "elevation_ft": "36", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pasadena", + "scheduled_service": "no", + "gps_code": "XS38", + "local_code": "XS38" + }, + { + "id": "26263", + "ident": "XS39", + "type": "closed", + "name": "A&A Flying Service Airport", + "latitude_deg": "29.536301", + "longitude_deg": "-95.264099", + "elevation_ft": "49", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pearland", + "scheduled_service": "no", + "keywords": "XS39, OLDXS39" + }, + { + "id": "26264", + "ident": "XS40", + "type": "small_airport", + "name": "Jay Kay Ranch Airport", + "latitude_deg": "28.80030059814453", + "longitude_deg": "-99.00029754638672", + "elevation_ft": "666", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pearsall", + "scheduled_service": "no", + "gps_code": "XS40", + "local_code": "XS40" + }, + { + "id": "26265", + "ident": "XS41", + "type": "heliport", + "name": "Heart Hospital of Austin Heliport", + "latitude_deg": "30.306", + "longitude_deg": "-97.741402", + "elevation_ft": "667", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "XS41", + "local_code": "XS41" + }, + { + "id": "26266", + "ident": "XS42", + "type": "closed", + "name": "Agricultural Supplies Airport", + "latitude_deg": "28.929399", + "longitude_deg": "-99.080299", + "elevation_ft": "651", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pearsall", + "scheduled_service": "no", + "keywords": "XS42" + }, + { + "id": "26267", + "ident": "XS43", + "type": "small_airport", + "name": "Medina River Ranch Airport", + "latitude_deg": "29.66114", + "longitude_deg": "-98.956561", + "elevation_ft": "1216", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pipe Creek", + "scheduled_service": "no", + "gps_code": "XS43", + "local_code": "XS43" + }, + { + "id": "26268", + "ident": "XS44", + "type": "small_airport", + "name": "Rancho del Cielo Airport", + "latitude_deg": "31.015301", + "longitude_deg": "-104.211998", + "elevation_ft": "4408", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Davis", + "scheduled_service": "no", + "gps_code": "XS44", + "local_code": "XS44" + }, + { + "id": "26269", + "ident": "XS45", + "type": "heliport", + "name": "Mustang Island Heliport", + "latitude_deg": "27.715900421142578", + "longitude_deg": "-97.1729965209961", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port Aransas", + "scheduled_service": "no", + "gps_code": "XS45", + "local_code": "XS45" + }, + { + "id": "26270", + "ident": "XS46", + "type": "closed", + "name": "Port O'Connor Private Airport", + "latitude_deg": "28.430002", + "longitude_deg": "-96.44299", + "elevation_ft": "8", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port O'Connor", + "scheduled_service": "no", + "keywords": "XS46" + }, + { + "id": "26271", + "ident": "XS47", + "type": "small_airport", + "name": "Maurice Dauwe Farm Airport", + "latitude_deg": "29.000200271606445", + "longitude_deg": "-98.57109832763672", + "elevation_ft": "447", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Poteet", + "scheduled_service": "no", + "gps_code": "XS47", + "local_code": "XS47" + }, + { + "id": "45830", + "ident": "XS48", + "type": "small_airport", + "name": "Marlin's Meadow Airport", + "latitude_deg": "32.953889", + "longitude_deg": "-95.5775", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Yantis", + "scheduled_service": "no", + "gps_code": "XS48", + "local_code": "XS48" + }, + { + "id": "26272", + "ident": "XS49", + "type": "small_airport", + "name": "Dean Ranch Airport", + "latitude_deg": "29.49020004272461", + "longitude_deg": "-97.12190246582031", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Shiner", + "scheduled_service": "no", + "gps_code": "XS49", + "local_code": "XS49" + }, + { + "id": "26273", + "ident": "XS50", + "type": "small_airport", + "name": "4G Ranch Airport", + "latitude_deg": "27.380468", + "longitude_deg": "-98.308134", + "elevation_ft": "272", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Concepcion", + "scheduled_service": "no", + "gps_code": "XS50", + "local_code": "XS50" + }, + { + "id": "26274", + "ident": "XS51", + "type": "small_airport", + "name": "Seeligson Ranch Airport", + "latitude_deg": "27.408325", + "longitude_deg": "-98.143125", + "elevation_ft": "172", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Premont", + "scheduled_service": "no", + "gps_code": "XS51", + "local_code": "XS51" + }, + { + "id": "26275", + "ident": "XS52", + "type": "heliport", + "name": "Lewis Heliport", + "latitude_deg": "27.337131", + "longitude_deg": "-98.128417", + "elevation_ft": "145", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Premont", + "scheduled_service": "no", + "gps_code": "XS52", + "local_code": "XS52" + }, + { + "id": "26276", + "ident": "XS53", + "type": "closed", + "name": "Price Ranch Airport", + "latitude_deg": "28.5961", + "longitude_deg": "-99.571404", + "elevation_ft": "532", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Big Wells", + "scheduled_service": "no", + "keywords": "XS53" + }, + { + "id": "26277", + "ident": "XS54", + "type": "heliport", + "name": "Sheraton Arlington Hotel Heliport", + "latitude_deg": "32.757801", + "longitude_deg": "-97.0811", + "elevation_ft": "535", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Arlington", + "scheduled_service": "no", + "gps_code": "XS54", + "local_code": "XS54", + "keywords": "Arlington Marriott Hotel" + }, + { + "id": "26278", + "ident": "XS55", + "type": "small_airport", + "name": "Gizmo Field", + "latitude_deg": "31.92930030822754", + "longitude_deg": "-96.93890380859375", + "elevation_ft": "551", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Malone", + "scheduled_service": "no", + "gps_code": "XS55", + "local_code": "XS55" + }, + { + "id": "26279", + "ident": "XS56", + "type": "small_airport", + "name": "Flying W Airport", + "latitude_deg": "26.450571", + "longitude_deg": "-97.791011", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Raymondville", + "scheduled_service": "no", + "gps_code": "XS56", + "local_code": "XS56", + "keywords": "Bell Airfield" + }, + { + "id": "26280", + "ident": "XS57", + "type": "small_airport", + "name": "Havelka Haven Airport", + "latitude_deg": "31.464969", + "longitude_deg": "-97.404658", + "elevation_ft": "711", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mc Gregor", + "scheduled_service": "no", + "gps_code": "XS57", + "local_code": "XS57", + "keywords": "Flying H Airfield" + }, + { + "id": "26281", + "ident": "XS58", + "type": "small_airport", + "name": "Tri-County Air Service Airport", + "latitude_deg": "30.044323", + "longitude_deg": "-94.706059", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Raywood", + "scheduled_service": "no", + "gps_code": "XS58", + "local_code": "XS58" + }, + { + "id": "26282", + "ident": "XS59", + "type": "small_airport", + "name": "Mellon Ranch Airport", + "latitude_deg": "28.280799865722656", + "longitude_deg": "-97.2114028930664", + "elevation_ft": "38", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Refugio", + "scheduled_service": "no", + "gps_code": "XS59", + "local_code": "XS59" + }, + { + "id": "26283", + "ident": "XS60", + "type": "small_airport", + "name": "Mustang Community Airfield", + "latitude_deg": "33.31840133666992", + "longitude_deg": "-96.90599822998047", + "elevation_ft": "605", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Aubrey", + "scheduled_service": "no", + "gps_code": "XS60", + "local_code": "XS60" + }, + { + "id": "26284", + "ident": "XS61", + "type": "small_airport", + "name": "Deep Creek Ranch Airport", + "latitude_deg": "31.114900588989258", + "longitude_deg": "-99.00340270996094", + "elevation_ft": "1388", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Richland Springs", + "scheduled_service": "no", + "gps_code": "XS61", + "local_code": "XS61" + }, + { + "id": "26285", + "ident": "XS62", + "type": "closed", + "name": "Casey Three Ranch Airport", + "latitude_deg": "29.633301", + "longitude_deg": "-99.728699", + "elevation_ft": "1586", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rio Frio", + "scheduled_service": "no", + "keywords": "XS62" + }, + { + "id": "26286", + "ident": "XS63", + "type": "closed", + "name": "Texas Air Museum Airport", + "latitude_deg": "26.228701", + "longitude_deg": "-97.560799", + "elevation_ft": "30", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rio Hondo", + "scheduled_service": "no", + "keywords": "XS63" + }, + { + "id": "26287", + "ident": "XS64", + "type": "small_airport", + "name": "Farm Services Inc Airport", + "latitude_deg": "26.249000549316406", + "longitude_deg": "-97.56500244140625", + "elevation_ft": "25", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rio Hondo", + "scheduled_service": "no", + "gps_code": "XS64", + "local_code": "XS64" + }, + { + "id": "26288", + "ident": "XS65", + "type": "heliport", + "name": "Kitching Ranch Heliport", + "latitude_deg": "30.147563", + "longitude_deg": "-97.765161", + "elevation_ft": "620", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Austin", + "scheduled_service": "no", + "gps_code": "XS65", + "local_code": "XS65" + }, + { + "id": "26289", + "ident": "XS66", + "type": "small_airport", + "name": "Rabb Dusting Inc Airport", + "latitude_deg": "27.80389976501465", + "longitude_deg": "-97.74359893798828", + "elevation_ft": "83", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Robstown", + "scheduled_service": "no", + "gps_code": "XS66", + "local_code": "XS66" + }, + { + "id": "26290", + "ident": "XS67", + "type": "small_airport", + "name": "San Jose Island Airport", + "latitude_deg": "27.944499969482422", + "longitude_deg": "-96.98500061035156", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rockport", + "scheduled_service": "no", + "gps_code": "XS67", + "local_code": "XS67" + }, + { + "id": "26291", + "ident": "XS68", + "type": "small_airport", + "name": "Sky Lane Ranch Airport", + "latitude_deg": "30.256859", + "longitude_deg": "-96.328824", + "elevation_ft": "290", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Chappell Hill", + "scheduled_service": "no", + "gps_code": "XS68", + "local_code": "XS68" + }, + { + "id": "26292", + "ident": "XS69", + "type": "small_airport", + "name": "Hackberry Ranch Airport", + "latitude_deg": "29.892696", + "longitude_deg": "-100.016799", + "elevation_ft": "1829", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Barksdale", + "scheduled_service": "no", + "gps_code": "XS69", + "local_code": "XS69" + }, + { + "id": "26293", + "ident": "XS70", + "type": "small_airport", + "name": "Glover Airport", + "latitude_deg": "33.13460159301758", + "longitude_deg": "-95.01799774169922", + "elevation_ft": "400", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Mount Pleasant", + "scheduled_service": "no", + "gps_code": "XS70", + "local_code": "XS70" + }, + { + "id": "26294", + "ident": "XS71", + "type": "small_airport", + "name": "San Christoval Ranch Airport", + "latitude_deg": "28.74810028076172", + "longitude_deg": "-98.04499816894531", + "elevation_ft": "385", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Pawnee", + "scheduled_service": "no", + "gps_code": "XS71", + "local_code": "XS71" + }, + { + "id": "26295", + "ident": "XS72", + "type": "small_airport", + "name": "F R Duke Farm Airport", + "latitude_deg": "30.481744", + "longitude_deg": "-94.83055", + "elevation_ft": "85", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Romayor.", + "scheduled_service": "no", + "gps_code": "XS72", + "local_code": "XS72" + }, + { + "id": "26296", + "ident": "XS73", + "type": "closed", + "name": "Double D Ranch Airport", + "latitude_deg": "29.877044", + "longitude_deg": "-97.290004", + "elevation_ft": "520", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Rosanky", + "scheduled_service": "no", + "keywords": "XS73" + }, + { + "id": "26297", + "ident": "XS74", + "type": "closed", + "name": "Diamondaire Airport", + "latitude_deg": "31.6082", + "longitude_deg": "-97.162804", + "elevation_ft": "424", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Waco", + "scheduled_service": "no", + "keywords": "XS74" + }, + { + "id": "26298", + "ident": "XS75", + "type": "small_airport", + "name": "West Ranch Airport", + "latitude_deg": "30.45439910888672", + "longitude_deg": "-98.48919677734375", + "elevation_ft": "1470", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Round Mountain", + "scheduled_service": "no", + "gps_code": "XS75", + "local_code": "XS75" + }, + { + "id": "26299", + "ident": "XS76", + "type": "small_airport", + "name": "Texas Menhaden Strip", + "latitude_deg": "29.72410011291504", + "longitude_deg": "-93.87039947509766", + "elevation_ft": "6", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Sabine Pass", + "scheduled_service": "no", + "gps_code": "XS76", + "local_code": "XS76" + }, + { + "id": "26300", + "ident": "XS77", + "type": "small_airport", + "name": "Seafood Warehouse Park Airport", + "latitude_deg": "29.465499877929688", + "longitude_deg": "-94.62740325927734", + "elevation_ft": "9", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Crystal Beach", + "scheduled_service": "no", + "gps_code": "XS77", + "local_code": "XS77" + }, + { + "id": "26301", + "ident": "XS78", + "type": "small_airport", + "name": "Santiago Cattle Company Airport", + "latitude_deg": "31.388051", + "longitude_deg": "-99.099905", + "elevation_ft": "1387", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Brady", + "scheduled_service": "no", + "gps_code": "XS78", + "local_code": "XS78", + "keywords": "Las Culebras Airport" + }, + { + "id": "26302", + "ident": "XS79", + "type": "closed", + "name": "A W Ranch Airport", + "latitude_deg": "29.250685", + "longitude_deg": "-98.459829", + "elevation_ft": "540", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "keywords": "XS79" + }, + { + "id": "26303", + "ident": "XS80", + "type": "small_airport", + "name": "Scout Airport", + "latitude_deg": "29.972556", + "longitude_deg": "-98.934637", + "elevation_ft": "1497", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Comfort", + "scheduled_service": "no", + "gps_code": "XS80", + "local_code": "XS80", + "keywords": "Santiago Cattle Co." + }, + { + "id": "26304", + "ident": "XS81", + "type": "heliport", + "name": "Santa Rosa Helistop", + "latitude_deg": "29.426847", + "longitude_deg": "-98.499151", + "elevation_ft": "820", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "XS81", + "local_code": "XS81" + }, + { + "id": "26305", + "ident": "XS82", + "type": "heliport", + "name": "Del Rio Heliport", + "latitude_deg": "29.422500610351562", + "longitude_deg": "-98.48390197753906", + "elevation_ft": "707", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "XS82", + "local_code": "XS82" + }, + { + "id": "26306", + "ident": "XS83", + "type": "heliport", + "name": "Methodist Hospital Heliport", + "latitude_deg": "29.507652", + "longitude_deg": "-98.571306", + "elevation_ft": "1078", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "XS83", + "local_code": "XS83", + "keywords": "Air Evac Lifeteam Base 148 Heliport" + }, + { + "id": "26307", + "ident": "XS84", + "type": "heliport", + "name": "Department of Public Safety Heliport", + "latitude_deg": "29.361299514770508", + "longitude_deg": "-98.44920349121094", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "XS84", + "local_code": "XS84" + }, + { + "id": "26308", + "ident": "XS85", + "type": "heliport", + "name": "University Health System Heliport", + "latitude_deg": "29.508919", + "longitude_deg": "-98.58022", + "elevation_ft": "994", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "XS85", + "local_code": "XS85" + }, + { + "id": "26309", + "ident": "XS86", + "type": "small_airport", + "name": "T-Ranch Airport", + "latitude_deg": "29.266123", + "longitude_deg": "-98.923859", + "elevation_ft": "880", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Devine", + "scheduled_service": "no", + "gps_code": "XS86", + "local_code": "XS86" + }, + { + "id": "26310", + "ident": "XS87", + "type": "heliport", + "name": "Industrial Helicopters Inc Heliport", + "latitude_deg": "28.44499969482422", + "longitude_deg": "-96.44830322265625", + "elevation_ft": "10", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Port O'Connor", + "scheduled_service": "no", + "gps_code": "XS87", + "local_code": "XS87" + }, + { + "id": "26311", + "ident": "XS88", + "type": "small_airport", + "name": "Parson Field", + "latitude_deg": "33.857398986816406", + "longitude_deg": "-95.70480346679688", + "elevation_ft": "475", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paris", + "scheduled_service": "no", + "gps_code": "XS88", + "local_code": "XS88" + }, + { + "id": "26312", + "ident": "XS89", + "type": "closed", + "name": "Yates Airport", + "latitude_deg": "29.620138", + "longitude_deg": "-98.448843", + "elevation_ft": "971", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Antonio", + "scheduled_service": "no", + "gps_code": "XS89", + "local_code": "XS89" + }, + { + "id": "26313", + "ident": "XS90", + "type": "small_airport", + "name": "Fentress Airpark", + "latitude_deg": "29.769042", + "longitude_deg": "-97.775037", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fentress", + "scheduled_service": "no", + "gps_code": "XS90", + "local_code": "XS90" + }, + { + "id": "26314", + "ident": "XS91", + "type": "small_airport", + "name": "Pickle Plantation Airport", + "latitude_deg": "32.08649826049805", + "longitude_deg": "-95.59929656982422", + "elevation_ft": "580", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Poynor", + "scheduled_service": "no", + "gps_code": "XS91", + "local_code": "XS91" + }, + { + "id": "26315", + "ident": "XS92", + "type": "closed", + "name": "Jackson /Bill/ Airport", + "latitude_deg": "33.146", + "longitude_deg": "-97.712502", + "elevation_ft": "800", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Paradise", + "scheduled_service": "no", + "keywords": "XS92" + }, + { + "id": "26316", + "ident": "XS93", + "type": "small_airport", + "name": "Diamond O Ranch Airport", + "latitude_deg": "26.720645", + "longitude_deg": "-98.560439", + "elevation_ft": "420", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Santa Elena", + "scheduled_service": "no", + "gps_code": "XS93", + "local_code": "XS93" + }, + { + "id": "26317", + "ident": "XS94", + "type": "small_airport", + "name": "Corralitos Airport", + "latitude_deg": "27.110988", + "longitude_deg": "-99.423323", + "elevation_ft": "360", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "San Ygnacio", + "scheduled_service": "no", + "gps_code": "XS94", + "local_code": "XS94" + }, + { + "id": "26318", + "ident": "XS95", + "type": "closed", + "name": "Marty Ranch Airport", + "latitude_deg": "29.676901", + "longitude_deg": "-96.970497", + "elevation_ft": "365", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Schulenburg", + "scheduled_service": "no", + "keywords": "XS95" + }, + { + "id": "26319", + "ident": "XS96", + "type": "heliport", + "name": "Hillwood Heliport", + "latitude_deg": "32.976389", + "longitude_deg": "-97.308611", + "elevation_ft": "650", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Fort Worth", + "scheduled_service": "no", + "gps_code": "XS96", + "local_code": "XS96" + }, + { + "id": "26320", + "ident": "XS97", + "type": "heliport", + "name": "Charlton Methodist Hospital Heliport", + "latitude_deg": "32.645999908447266", + "longitude_deg": "-96.89420318603516", + "elevation_ft": "710", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Dallas", + "scheduled_service": "no", + "gps_code": "XS97", + "local_code": "XS97" + }, + { + "id": "26321", + "ident": "XS98", + "type": "heliport", + "name": "Guadalupe Regional Medical Center Heliport", + "latitude_deg": "29.567219", + "longitude_deg": "-97.946967", + "elevation_ft": "530", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Seguin", + "scheduled_service": "no", + "gps_code": "XS98", + "local_code": "XS98", + "keywords": "Guadalupe Hospital Heliport" + }, + { + "id": "26322", + "ident": "XS99", + "type": "small_airport", + "name": "Lake Water Wheel Airport", + "latitude_deg": "30.47100067138672", + "longitude_deg": "-94.9126968383789", + "elevation_ft": "80", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Shepherd", + "scheduled_service": "no", + "gps_code": "XS99", + "local_code": "XS99" + }, + { + "id": "44992", + "ident": "XUBS", + "type": "medium_airport", + "name": "Smolensk North Airport", + "latitude_deg": "54.824", + "longitude_deg": "32.025", + "elevation_ft": "820", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SMO", + "municipality": "Smolensk", + "scheduled_service": "no", + "iata_code": "LNX", + "local_code": "XUBS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Smolensk_North_Airport", + "keywords": "Smolensk Severny Airfield, Аэродром Смоленск Северный, ЬУБС" + }, + { + "id": "311043", + "ident": "XVL", + "type": "closed", + "name": "Vinh Long Airfield", + "latitude_deg": "10.2509", + "longitude_deg": "105.9445", + "elevation_ft": "27", + "continent": "AS", + "iso_country": "VN", + "iso_region": "VN-SW", + "municipality": "Vinh Long", + "scheduled_service": "no", + "iata_code": "XVL", + "keywords": "Vinh Long Airbase" + }, + { + "id": "44765", + "ident": "XWPD", + "type": "small_airport", + "name": "Sosnovka Airfield", + "latitude_deg": "53.261002", + "longitude_deg": "45.277", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-PNZ", + "municipality": "Penza", + "scheduled_service": "no", + "local_code": "XWPD", + "keywords": "Chemodanovka Airfield, Аэродром Сосновка, Аэродром Чемодановка" + }, + { + "id": "35064", + "ident": "XWPR", + "type": "medium_airport", + "name": "Rtishchevo Air Base", + "latitude_deg": "52.297317", + "longitude_deg": "43.7241", + "elevation_ft": "673", + "continent": "EU", + "iso_country": "RU", + "iso_region": "RU-SAR", + "municipality": "Rtishchevo", + "scheduled_service": "no", + "local_code": "XWPR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rtishchevo_(air_base)", + "keywords": "ЬВПР, Ртищево" + }, + { + "id": "28110", + "ident": "XYMY", + "type": "closed", + "name": "Victoria STOLport", + "latitude_deg": "45.48249816894531", + "longitude_deg": "-73.54859924316406", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Montreal", + "scheduled_service": "no", + "gps_code": "XYMY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Victoria_STOLport", + "keywords": "YMY, CYMY" + }, + { + "id": "333071", + "ident": "XZM", + "type": "heliport", + "name": "Macau Heliport at Outer Harbour Ferry Terminal", + "latitude_deg": "22.1971", + "longitude_deg": "113.559", + "continent": "AS", + "iso_country": "MO", + "iso_region": "MO-U-A", + "municipality": "Sé", + "scheduled_service": "no", + "iata_code": "XZM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Outer_Harbour_Ferry_Terminal" + }, + { + "id": "26323", + "ident": "Y01", + "type": "small_airport", + "name": "Waukon Municipal Airport", + "latitude_deg": "43.280498504639", + "longitude_deg": "-91.469497680664", + "elevation_ft": "1281", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Waukon", + "scheduled_service": "no", + "gps_code": "Y01", + "iata_code": "UKN", + "local_code": "Y01" + }, + { + "id": "26324", + "ident": "Y04", + "type": "closed", + "name": "Sugar Loaf Resort Airport", + "latitude_deg": "44.906438", + "longitude_deg": "-85.816097", + "elevation_ft": "825", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Cedar", + "scheduled_service": "no", + "keywords": "Y04" + }, + { + "id": "322845", + "ident": "Y06Z", + "type": "closed", + "name": "Corunna Downs (WW II)", + "latitude_deg": "-21.43613", + "longitude_deg": "119.790754", + "elevation_ft": "856", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Marble Bar", + "scheduled_service": "no", + "gps_code": "Y06Z", + "home_link": "http://www.marblebar.org.au/destination/marble-bar/corunna-downs-airfield/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Corunna_Downs_Airfield", + "keywords": "Corunna,Downs,World,War,II,2,Marble,Bar,WorldWar,WorldWarII,WorldWar2" + }, + { + "id": "26325", + "ident": "Y16", + "type": "small_airport", + "name": "Dale Delight Airport", + "latitude_deg": "43.078899", + "longitude_deg": "-91.615196", + "elevation_ft": "1200", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Postville", + "scheduled_service": "no", + "gps_code": "IA45", + "local_code": "IA45", + "keywords": "Y16" + }, + { + "id": "26326", + "ident": "Y30", + "type": "small_airport", + "name": "Pbeaaye Airport", + "latitude_deg": "45.53110122680664", + "longitude_deg": "-84.55699920654297", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Topinabee", + "scheduled_service": "no", + "gps_code": "Y30", + "local_code": "Y30" + }, + { + "id": "26327", + "ident": "Y34", + "type": "small_airport", + "name": "Lake Preston Municipal Airport", + "latitude_deg": "44.3572998046875", + "longitude_deg": "-97.38480377197266", + "elevation_ft": "1725", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-SD", + "municipality": "Lake Preston", + "scheduled_service": "no", + "gps_code": "Y34", + "local_code": "Y34" + }, + { + "id": "26328", + "ident": "Y46", + "type": "small_airport", + "name": "Bedford Municipal Airport", + "latitude_deg": "40.63779830932617", + "longitude_deg": "-94.72940063476562", + "elevation_ft": "1201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Bedford", + "scheduled_service": "no", + "gps_code": "Y46", + "local_code": "Y46" + }, + { + "id": "26329", + "ident": "Y48", + "type": "small_airport", + "name": "Belmond Municipal Airport", + "latitude_deg": "42.852699279785156", + "longitude_deg": "-93.5947036743164", + "elevation_ft": "1201", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Belmond", + "scheduled_service": "no", + "gps_code": "Y48", + "local_code": "Y48" + }, + { + "id": "26330", + "ident": "Y49", + "type": "small_airport", + "name": "Walker Municipal Airport", + "latitude_deg": "47.15829849243164", + "longitude_deg": "-94.64610290527344", + "elevation_ft": "1364", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Walker", + "scheduled_service": "no", + "gps_code": "Y49", + "local_code": "Y49" + }, + { + "id": "26331", + "ident": "Y58", + "type": "small_airport", + "name": "Sleepy Eye Municipal Airport", + "latitude_deg": "44.25", + "longitude_deg": "-94.71690368652344", + "elevation_ft": "1004", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Sleepy Eye", + "scheduled_service": "no", + "gps_code": "Y58", + "local_code": "Y58" + }, + { + "id": "26332", + "ident": "Y63", + "type": "small_airport", + "name": "Elbow Lake Municipal - Pride of the Prairie Airport", + "latitude_deg": "45.986099243199995", + "longitude_deg": "-95.99199676510001", + "elevation_ft": "1205", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MN", + "municipality": "Elbow Lake", + "scheduled_service": "no", + "gps_code": "Y63", + "local_code": "Y63" + }, + { + "id": "26333", + "ident": "Y71", + "type": "small_airport", + "name": "Elgin Municipal Airport", + "latitude_deg": "46.3828010559082", + "longitude_deg": "-101.84500122070312", + "elevation_ft": "2355", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Elgin", + "scheduled_service": "no", + "gps_code": "Y71", + "local_code": "Y71" + }, + { + "id": "26334", + "ident": "Y73", + "type": "small_airport", + "name": "Stambaugh Airport", + "latitude_deg": "46.078800201416016", + "longitude_deg": "-88.635498046875", + "elevation_ft": "1622", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Iron River", + "scheduled_service": "no", + "gps_code": "Y73", + "local_code": "Y73" + }, + { + "id": "26335", + "ident": "Y76", + "type": "small_airport", + "name": "Morningstar Field", + "latitude_deg": "41.65549850463867", + "longitude_deg": "-93.64409637451172", + "elevation_ft": "805", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-IA", + "municipality": "Des Moines", + "scheduled_service": "no", + "gps_code": "Y76", + "local_code": "Y76" + }, + { + "id": "26336", + "ident": "Y77", + "type": "small_airport", + "name": "Bayfield County Airport", + "latitude_deg": "46.57630157470703", + "longitude_deg": "-91.45850372314453", + "elevation_ft": "1143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-WI", + "municipality": "Iron River", + "scheduled_service": "no", + "gps_code": "Y77", + "local_code": "Y77" + }, + { + "id": "26337", + "ident": "Y87", + "type": "small_airport", + "name": "Empire / William B Bolton Airport", + "latitude_deg": "44.791397", + "longitude_deg": "-86.003208", + "elevation_ft": "944", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Empire", + "scheduled_service": "no", + "local_code": "Y87" + }, + { + "id": "26338", + "ident": "Y88", + "type": "small_airport", + "name": "Green Lake Airport", + "latitude_deg": "44.60609817504883", + "longitude_deg": "-85.7583999633789", + "elevation_ft": "866", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Interlochen", + "scheduled_service": "no", + "gps_code": "Y88", + "local_code": "Y88" + }, + { + "id": "26339", + "ident": "Y91", + "type": "small_airport", + "name": "Home Acres Sky Ranch Airport", + "latitude_deg": "44.3203010559082", + "longitude_deg": "-85.17120361328125", + "elevation_ft": "1247", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Lake City", + "scheduled_service": "no", + "gps_code": "Y91", + "local_code": "Y91" + }, + { + "id": "26340", + "ident": "Y96", + "type": "closed", + "name": "Leo E. Goetz County Airport", + "latitude_deg": "45.365986", + "longitude_deg": "-84.223981", + "elevation_ft": "830", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Onaway", + "scheduled_service": "no", + "keywords": "Y96" + }, + { + "id": "26341", + "ident": "Y98", + "type": "small_airport", + "name": "Grand Marais Airport", + "latitude_deg": "46.62080001831055", + "longitude_deg": "-85.91680145263672", + "elevation_ft": "838", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Grand Marais", + "scheduled_service": "no", + "gps_code": "Y98", + "local_code": "Y98" + }, + { + "id": "26342", + "ident": "Y99", + "type": "small_airport", + "name": "Trulson Field", + "latitude_deg": "48.030601501464844", + "longitude_deg": "-101.9530029296875", + "elevation_ft": "2105", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-ND", + "municipality": "Plaza", + "scheduled_service": "no", + "gps_code": "Y99", + "local_code": "Y99" + }, + { + "id": "38219", + "ident": "YAAL", + "type": "small_airport", + "name": "Yarralin Airport", + "latitude_deg": "-16.444700241088867", + "longitude_deg": "130.88099670410156", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YAAL" + }, + { + "id": "26888", + "ident": "YABA", + "type": "medium_airport", + "name": "Albany Airport", + "latitude_deg": "-34.94329833984375", + "longitude_deg": "117.80899810791016", + "elevation_ft": "233", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Albany", + "scheduled_service": "yes", + "gps_code": "YABA", + "iata_code": "ALH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Albany_Airport_(Australia)", + "keywords": "ABA, YPAL" + }, + { + "id": "348489", + "ident": "YABB", + "type": "small_airport", + "name": "Upper Warrego Airstrip", + "latitude_deg": "-25.194258", + "longitude_deg": "147.142757", + "elevation_ft": "1696", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Babbiloora", + "scheduled_service": "no", + "gps_code": "YABB" + }, + { + "id": "347949", + "ident": "YABC", + "type": "closed", + "name": "ABC TV Studios Helipad", + "latitude_deg": "-33.8197", + "longitude_deg": "151.1863", + "elevation_ft": "312", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Gore Hill", + "scheduled_service": "no", + "gps_code": "YABC" + }, + { + "id": "354532", + "ident": "YABD", + "type": "small_airport", + "name": "Aberdeen Airport", + "latitude_deg": "-28.06763", + "longitude_deg": "150.641656", + "elevation_ft": "971", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Aberdeen", + "scheduled_service": "no", + "gps_code": "YABD" + }, + { + "id": "348490", + "ident": "YABF", + "type": "small_airport", + "name": "Aberfoyle Airport", + "latitude_deg": "-21.670556", + "longitude_deg": "145.266111", + "elevation_ft": "900", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Torrens Creek", + "scheduled_service": "no", + "gps_code": "YABF" + }, + { + "id": "348492", + "ident": "YABG", + "type": "small_airport", + "name": "Abbieglassie Airstrip", + "latitude_deg": "-27.248368", + "longitude_deg": "147.577989", + "elevation_ft": "869", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Abbieglassie", + "scheduled_service": "no", + "gps_code": "YABG" + }, + { + "id": "27311", + "ident": "YABI", + "type": "small_airport", + "name": "Abingdon Downs Airport", + "latitude_deg": "-17.607542", + "longitude_deg": "143.183245", + "elevation_ft": "573", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YABI", + "iata_code": "ABG" + }, + { + "id": "354533", + "ident": "YABL", + "type": "small_airport", + "name": "Ambalindum Airport", + "latitude_deg": "-23.35187", + "longitude_deg": "134.732434", + "elevation_ft": "1966", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Ambalindum", + "scheduled_service": "no", + "gps_code": "YABL" + }, + { + "id": "348494", + "ident": "YABP", + "type": "small_airport", + "name": "Mooga/Brindley Park Airstrip", + "latitude_deg": "-26.325278", + "longitude_deg": "148.929849", + "elevation_ft": "1356", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Mooga", + "scheduled_service": "no", + "gps_code": "YABP" + }, + { + "id": "354534", + "ident": "YABR", + "type": "small_airport", + "name": "Abra Mine Camp Airport", + "latitude_deg": "-24.628727", + "longitude_deg": "118.648029", + "elevation_ft": "1725", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Peak Hill", + "scheduled_service": "no", + "gps_code": "YABR", + "home_link": "http://peak-hill-wa.place-advisor.com/abra-mine-camp/" + }, + { + "id": "27312", + "ident": "YABS", + "type": "small_airport", + "name": "Albion Downs Airport", + "latitude_deg": "-27.283300399780273", + "longitude_deg": "120.38300323486328", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YABS" + }, + { + "id": "38220", + "ident": "YABU", + "type": "small_airport", + "name": "Amburla Airport", + "latitude_deg": "-23.339897", + "longitude_deg": "133.172332", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Burt Plain", + "scheduled_service": "no", + "gps_code": "YABU" + }, + { + "id": "354538", + "ident": "YACD", + "type": "small_airport", + "name": "Alice Downs Station Airport", + "latitude_deg": "-24.269521", + "longitude_deg": "145.488553", + "elevation_ft": "991", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Alice Downs", + "scheduled_service": "no", + "gps_code": "YACD" + }, + { + "id": "27313", + "ident": "YACI", + "type": "small_airport", + "name": "Arcadia Airport", + "latitude_deg": "-25.210916", + "longitude_deg": "148.668365", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YACI" + }, + { + "id": "348503", + "ident": "YACR", + "type": "small_airport", + "name": "Lotus Creek/Croyden Airstrip", + "latitude_deg": "-22.47322", + "longitude_deg": "149.156315", + "elevation_ft": "594", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Croyden", + "scheduled_service": "no", + "gps_code": "YACR" + }, + { + "id": "27314", + "ident": "YACS", + "type": "small_airport", + "name": "Acacia Downs Airport", + "latitude_deg": "-31.41670036315918", + "longitude_deg": "141.89999389648438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YACS" + }, + { + "id": "348505", + "ident": "YADA", + "type": "small_airport", + "name": "Adavale Airfield", + "latitude_deg": "-25.894945", + "longitude_deg": "144.569827", + "elevation_ft": "814", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Adavale", + "scheduled_service": "no", + "gps_code": "YADA" + }, + { + "id": "27315", + "ident": "YADD", + "type": "small_airport", + "name": "Arubiddy Airport", + "latitude_deg": "-31.813752", + "longitude_deg": "125.919725", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YADD" + }, + { + "id": "354090", + "ident": "YADE", + "type": "small_airport", + "name": "Annandale Airstrip", + "latitude_deg": "-21.943105", + "longitude_deg": "148.284423", + "elevation_ft": "853", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Coppabella", + "scheduled_service": "no", + "gps_code": "YADE" + }, + { + "id": "27316", + "ident": "YADG", + "type": "small_airport", + "name": "Aldinga Airport", + "latitude_deg": "-35.288753", + "longitude_deg": "138.49421", + "elevation_ft": "110", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Aldinga", + "scheduled_service": "no", + "gps_code": "YADG", + "home_link": "http://www.adelaidebiplanes.com.au/" + }, + { + "id": "354093", + "ident": "YADH", + "type": "closed", + "name": "Ashburton Downs Homestead Airstrip", + "latitude_deg": "-23.406506", + "longitude_deg": "117.084174", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Ashburton Downs Homestead", + "scheduled_service": "no", + "gps_code": "YADH" + }, + { + "id": "38221", + "ident": "YADM", + "type": "small_airport", + "name": "Yandan Mine Airport", + "latitude_deg": "-21.274992", + "longitude_deg": "146.989697", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YADM" + }, + { + "id": "27317", + "ident": "YADO", + "type": "small_airport", + "name": "Andado Airport", + "latitude_deg": "-25.407772", + "longitude_deg": "135.290794", + "elevation_ft": "549", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Ghan", + "scheduled_service": "no", + "gps_code": "YADO" + }, + { + "id": "354541", + "ident": "YADR", + "type": "small_airport", + "name": "Aldersyde Airstrip", + "latitude_deg": "-26.663222", + "longitude_deg": "150.194392", + "elevation_ft": "1001", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Miles", + "scheduled_service": "no", + "gps_code": "YADR" + }, + { + "id": "38222", + "ident": "YADS", + "type": "small_airport", + "name": "Alton Downs Airport", + "latitude_deg": "-26.488959", + "longitude_deg": "139.259906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YADS", + "iata_code": "AWN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alton_Downs_Airport" + }, + { + "id": "354543", + "ident": "YADU", + "type": "small_airport", + "name": "Ardgour Airstrip", + "latitude_deg": "-31.652468", + "longitude_deg": "150.040476", + "elevation_ft": "1657", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YADU" + }, + { + "id": "29644", + "ident": "YADY", + "type": "small_airport", + "name": "Adaminaby Airport", + "latitude_deg": "-35.997799", + "longitude_deg": "148.796005", + "elevation_ft": "3346", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Adaminaby", + "scheduled_service": "no", + "gps_code": "YADY" + }, + { + "id": "309207", + "ident": "YAFD", + "type": "heliport", + "name": "Alfred Hospital Helipad", + "latitude_deg": "-37.84526", + "longitude_deg": "144.9813", + "elevation_ft": "80", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Melbourne", + "scheduled_service": "no", + "gps_code": "YAFD", + "local_code": "YAFD" + }, + { + "id": "27319", + "ident": "YAGD", + "type": "small_airport", + "name": "Augustus Downs Airport", + "latitude_deg": "-18.514999389648438", + "longitude_deg": "139.8780059814453", + "elevation_ft": "46", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YAGD", + "iata_code": "AUD" + }, + { + "id": "354544", + "ident": "YAGL", + "type": "small_airport", + "name": "Argyle Airstrip", + "latitude_deg": "-27.481395", + "longitude_deg": "151.796036", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Kingsthorpe", + "scheduled_service": "no", + "gps_code": "YAGL" + }, + { + "id": "354552", + "ident": "YAGP", + "type": "heliport", + "name": "Angel Platform Oil Rig Helipad", + "latitude_deg": "-19.498611", + "longitude_deg": "116.598056", + "elevation_ft": "100", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YAGP" + }, + { + "id": "27320", + "ident": "YAHD", + "type": "small_airport", + "name": "Ashburton Downs Airport", + "latitude_deg": "-23.380787", + "longitude_deg": "117.025573", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YAHD" + }, + { + "id": "355157", + "ident": "YAIN", + "type": "heliport", + "name": "Agincourt North Helicopter Landing Site", + "latitude_deg": "-15.981015", + "longitude_deg": "145.820144", + "elevation_ft": "0", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Agincourt Reef", + "scheduled_service": "no", + "gps_code": "YAIN" + }, + { + "id": "354555", + "ident": "YAIR", + "type": "small_airport", + "name": "Beela Airstrip", + "latitude_deg": "-29.396309", + "longitude_deg": "149.869974", + "elevation_ft": "664", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Moree", + "scheduled_service": "no", + "gps_code": "YAIR" + }, + { + "id": "354554", + "ident": "YAIS", + "type": "heliport", + "name": "Agincourt South Helicopter Landing Site", + "latitude_deg": "-16.035616", + "longitude_deg": "145.834708", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Agincourt Reef", + "scheduled_service": "no", + "gps_code": "YAIS" + }, + { + "id": "355158", + "ident": "YAIW", + "type": "heliport", + "name": "Adelaide International Raceway Helicopter Landing Site", + "latitude_deg": "-34.696667", + "longitude_deg": "138.565", + "elevation_ft": "43", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Waterloo Corner", + "scheduled_service": "no", + "gps_code": "YAIW" + }, + { + "id": "317734", + "ident": "YAJ", + "type": "seaplane_base", + "name": "Lyall Harbour Seaplane Base", + "latitude_deg": "48.7952", + "longitude_deg": "-123.1816", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Saturna Island", + "scheduled_service": "no", + "iata_code": "YAJ" + }, + { + "id": "38223", + "ident": "YAKG", + "type": "small_airport", + "name": "Arckaringa Airport", + "latitude_deg": "-27.946699142456055", + "longitude_deg": "134.7449951171875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YAKG" + }, + { + "id": "27321", + "ident": "YALA", + "type": "small_airport", + "name": "Marla Airport", + "latitude_deg": "-27.334298", + "longitude_deg": "133.627696", + "elevation_ft": "328", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Marla", + "scheduled_service": "no", + "gps_code": "YALA", + "iata_code": "MRP" + }, + { + "id": "38224", + "ident": "YALC", + "type": "small_airport", + "name": "Alcoota Station Airport", + "latitude_deg": "-22.83329963684082", + "longitude_deg": "134.4499969482422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YALC" + }, + { + "id": "27322", + "ident": "YALG", + "type": "small_airport", + "name": "Adels Grove Airport", + "latitude_deg": "-18.694729", + "longitude_deg": "138.527727", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YALG" + }, + { + "id": "38225", + "ident": "YALH", + "type": "small_airport", + "name": "Albilbah Airport", + "latitude_deg": "-24.712305", + "longitude_deg": "144.290861", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YALH" + }, + { + "id": "38226", + "ident": "YALM", + "type": "small_airport", + "name": "Allambie Airport", + "latitude_deg": "-24.265335", + "longitude_deg": "134.402927", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YALM" + }, + { + "id": "38227", + "ident": "YALN", + "type": "small_airport", + "name": "Allandy Airport", + "latitude_deg": "-30.38835", + "longitude_deg": "142.625198", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Packsaddle", + "scheduled_service": "no", + "gps_code": "YALN" + }, + { + "id": "348486", + "ident": "YALP", + "type": "small_airport", + "name": "Alpurrurulam Airport", + "latitude_deg": "-20.984932", + "longitude_deg": "137.832949", + "elevation_ft": "651", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Alpurrurulam", + "scheduled_service": "no", + "gps_code": "YALP" + }, + { + "id": "27323", + "ident": "YALX", + "type": "small_airport", + "name": "Alexandria Homestead Airport", + "latitude_deg": "-19.060199737548828", + "longitude_deg": "136.7100067138672", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YALX", + "iata_code": "AXL" + }, + { + "id": "27324", + "ident": "YALY", + "type": "small_airport", + "name": "Alderley Airport", + "latitude_deg": "-22.483299255371094", + "longitude_deg": "139.63299560546875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YALY" + }, + { + "id": "355334", + "ident": "YAMA", + "type": "heliport", + "name": "Yamba Heliport", + "latitude_deg": "-29.444232", + "longitude_deg": "153.345312", + "elevation_ft": "16", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Yamba", + "scheduled_service": "no", + "gps_code": "YAMA" + }, + { + "id": "26889", + "ident": "YAMB", + "type": "medium_airport", + "name": "RAAF Base Amberley", + "latitude_deg": "-27.6406", + "longitude_deg": "152.712006", + "elevation_ft": "91", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YAMB", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAAF_Base_Amberley" + }, + { + "id": "27325", + "ident": "YAMC", + "type": "small_airport", + "name": "Aramac Airport", + "latitude_deg": "-22.95788", + "longitude_deg": "145.249504", + "elevation_ft": "232", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YAMC", + "iata_code": "AXC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aramac_Airport" + }, + { + "id": "38228", + "ident": "YAMJ", + "type": "small_airport", + "name": "Ampilatwatja Airport", + "latitude_deg": "-21.654955", + "longitude_deg": "135.23097", + "elevation_ft": "1290", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Ampilatwatja", + "scheduled_service": "no", + "gps_code": "YAMJ" + }, + { + "id": "27326", + "ident": "YAMK", + "type": "small_airport", + "name": "Andamooka Airport", + "latitude_deg": "-30.438299", + "longitude_deg": "137.136993", + "elevation_ft": "76", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YAMK", + "iata_code": "ADO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Andamooka_Airport" + }, + { + "id": "27327", + "ident": "YAML", + "type": "small_airport", + "name": "Armraynald Airport", + "latitude_deg": "-17.954826", + "longitude_deg": "139.759794", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YAML" + }, + { + "id": "38229", + "ident": "YAMM", + "type": "small_airport", + "name": "Ammaroo Airport", + "latitude_deg": "-21.738300323486328", + "longitude_deg": "135.24200439453125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YAMM", + "iata_code": "AMX" + }, + { + "id": "27328", + "ident": "YAMT", + "type": "small_airport", + "name": "Amata Airport", + "latitude_deg": "-26.097363", + "longitude_deg": "131.202732", + "elevation_ft": "695", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YAMT", + "iata_code": "AMT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Amata_Airport" + }, + { + "id": "27329", + "ident": "YAND", + "type": "small_airport", + "name": "Answer Downs Airport", + "latitude_deg": "-21.66670036315918", + "longitude_deg": "140.98300170898438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YAND" + }, + { + "id": "299438", + "ident": "YANG", + "type": "small_airport", + "name": "West Angelas Airport", + "latitude_deg": "-23.1355555556", + "longitude_deg": "118.707222222", + "elevation_ft": "2340", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YANG", + "iata_code": "WLP", + "keywords": "West Angelas Mine" + }, + { + "id": "38230", + "ident": "YANJ", + "type": "small_airport", + "name": "Angatja Airport", + "latitude_deg": "-26.100000381469727", + "longitude_deg": "130.39999389648438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YANJ" + }, + { + "id": "27330", + "ident": "YANK", + "type": "small_airport", + "name": "Anna Creek Airport", + "latitude_deg": "-28.896699905395508", + "longitude_deg": "136.1699981689453", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YANK" + }, + { + "id": "27331", + "ident": "YANL", + "type": "small_airport", + "name": "Anthony Lagoon Airport", + "latitude_deg": "-18.018079031", + "longitude_deg": "135.535068512", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YANL", + "iata_code": "AYL" + }, + { + "id": "38231", + "ident": "YANN", + "type": "small_airport", + "name": "Anningie Airport", + "latitude_deg": "-21.83169937133789", + "longitude_deg": "133.125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YANN" + }, + { + "id": "27332", + "ident": "YANW", + "type": "small_airport", + "name": "Annitowa Airport", + "latitude_deg": "-21.200017", + "longitude_deg": "136.451139", + "elevation_ft": "901", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YANW" + }, + { + "id": "27333", + "ident": "YAOR", + "type": "small_airport", + "name": "Ardmore Airport", + "latitude_deg": "-21.649999618530273", + "longitude_deg": "139.18299865722656", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YAOR" + }, + { + "id": "27334", + "ident": "YAPA", + "type": "small_airport", + "name": "Anna Plains Airport", + "latitude_deg": "-19.266700744628906", + "longitude_deg": "121.51699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YAPA" + }, + { + "id": "26890", + "ident": "YAPH", + "type": "medium_airport", + "name": "Alpha Airport", + "latitude_deg": "-23.653275", + "longitude_deg": "146.582479", + "elevation_ft": "1255", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Alpha", + "scheduled_service": "no", + "gps_code": "YAPH", + "iata_code": "ABH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alpha_Airport" + }, + { + "id": "27335", + "ident": "YAPO", + "type": "small_airport", + "name": "Apollo Bay Airport", + "latitude_deg": "-38.774930231599996", + "longitude_deg": "143.661174774", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YAPO" + }, + { + "id": "317735", + "ident": "YAQ", + "type": "seaplane_base", + "name": "Maple Bay Seaplane Base", + "latitude_deg": "48.8167", + "longitude_deg": "-123.6084", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Maple Bay", + "scheduled_service": "no", + "iata_code": "YAQ" + }, + { + "id": "26891", + "ident": "YARA", + "type": "medium_airport", + "name": "Ararat Airport", + "latitude_deg": "-37.309978", + "longitude_deg": "142.988688", + "elevation_ft": "1008", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Ararat", + "scheduled_service": "no", + "gps_code": "YARA", + "iata_code": "ARY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ararat_Airport" + }, + { + "id": "27336", + "ident": "YARD", + "type": "small_airport", + "name": "Argadargada Airport", + "latitude_deg": "-21.676700592041016", + "longitude_deg": "136.67799377441406", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YARD" + }, + { + "id": "26892", + "ident": "YARG", + "type": "small_airport", + "name": "Argyle Airport", + "latitude_deg": "-16.6369", + "longitude_deg": "128.451004", + "elevation_ft": "522", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "yes", + "gps_code": "YARG", + "iata_code": "GYL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Argyle_Airport" + }, + { + "id": "27337", + "ident": "YARI", + "type": "small_airport", + "name": "Arizona 1 Airport", + "latitude_deg": "-21.66670036315918", + "longitude_deg": "141.56700134277344", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YARI" + }, + { + "id": "27338", + "ident": "YARK", + "type": "small_airport", + "name": "Arkaroola Airport", + "latitude_deg": "-30.406700134277344", + "longitude_deg": "139.3459930419922", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YARK" + }, + { + "id": "27339", + "ident": "YARL", + "type": "small_airport", + "name": "Ardlethan Airport", + "latitude_deg": "-34.411265", + "longitude_deg": "146.85884", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YARL" + }, + { + "id": "26893", + "ident": "YARM", + "type": "medium_airport", + "name": "Armidale Airport", + "latitude_deg": "-30.528099060099997", + "longitude_deg": "151.617004395", + "elevation_ft": "3556", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Armidale", + "scheduled_service": "yes", + "gps_code": "YARM", + "iata_code": "ARM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Armidale_Airport" + }, + { + "id": "27340", + "ident": "YARN", + "type": "small_airport", + "name": "Areyonga Airport", + "latitude_deg": "-24.091565", + "longitude_deg": "132.271228", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Mereenie", + "scheduled_service": "no", + "gps_code": "YARN" + }, + { + "id": "38232", + "ident": "YARP", + "type": "small_airport", + "name": "Arapunya Airport", + "latitude_deg": "-22.316699981689453", + "longitude_deg": "135.6999969482422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YARP" + }, + { + "id": "27341", + "ident": "YARS", + "type": "small_airport", + "name": "Ardrossan Airport", + "latitude_deg": "-34.4471888889", + "longitude_deg": "137.888291667", + "elevation_ft": "92", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YARS" + }, + { + "id": "27342", + "ident": "YARY", + "type": "small_airport", + "name": "Arrabury Airport", + "latitude_deg": "-26.69639", + "longitude_deg": "141.048718", + "elevation_ft": "334", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Tanbar", + "scheduled_service": "no", + "gps_code": "YARY", + "iata_code": "AAB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arrabury_Airport" + }, + { + "id": "27343", + "ident": "YASF", + "type": "small_airport", + "name": "Ashford Airport", + "latitude_deg": "-29.317096", + "longitude_deg": "151.056207", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YASF" + }, + { + "id": "29680", + "ident": "YASS", + "type": "small_airport", + "name": "Bakblok Airport", + "latitude_deg": "-34.88669967651367", + "longitude_deg": "149.01499938964844", + "elevation_ft": "1624", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YASS" + }, + { + "id": "38233", + "ident": "YATL", + "type": "small_airport", + "name": "Atula Airport", + "latitude_deg": "-23.255344", + "longitude_deg": "136.388955", + "elevation_ft": "915", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Anatye", + "scheduled_service": "no", + "gps_code": "YATL" + }, + { + "id": "27344", + "ident": "YATN", + "type": "small_airport", + "name": "Atherton Airport", + "latitude_deg": "-17.2616996765", + "longitude_deg": "145.51499939", + "elevation_ft": "2450", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Atherton", + "scheduled_service": "no", + "gps_code": "YATN", + "home_link": "http://athertonairport.com.au/" + }, + { + "id": "27345", + "ident": "YATR", + "type": "small_airport", + "name": "Amphitheatre Airport", + "latitude_deg": "-37.18330001831055", + "longitude_deg": "143.39999389648438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YATR" + }, + { + "id": "38234", + "ident": "YATY", + "type": "small_airport", + "name": "Atley Airport", + "latitude_deg": "-28.216699600219727", + "longitude_deg": "119.25", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YATY" + }, + { + "id": "38235", + "ident": "YAUA", + "type": "small_airport", + "name": "Augathella Airport", + "latitude_deg": "-25.7549991607666", + "longitude_deg": "146.58700561523438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YAUA" + }, + { + "id": "27346", + "ident": "YAUG", + "type": "small_airport", + "name": "Tallinup-Augusta Airport", + "latitude_deg": "-34.328604", + "longitude_deg": "115.157029", + "elevation_ft": "103", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Augusta", + "scheduled_service": "no", + "gps_code": "YAUG" + }, + { + "id": "26894", + "ident": "YAUR", + "type": "small_airport", + "name": "Aurukun Airport", + "latitude_deg": "-13.354067", + "longitude_deg": "141.72065", + "elevation_ft": "31", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Aurukun", + "scheduled_service": "yes", + "gps_code": "YAUR", + "iata_code": "AUU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aurukun_Airport" + }, + { + "id": "27347", + "ident": "YAUS", + "type": "small_airport", + "name": "Austral Downs Airport", + "latitude_deg": "-20.5", + "longitude_deg": "137.75", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YAUS", + "iata_code": "AWP" + }, + { + "id": "27348", + "ident": "YAUV", + "type": "small_airport", + "name": "Auvergne Airport", + "latitude_deg": "-15.699999809265137", + "longitude_deg": "130", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YAUV", + "iata_code": "AVG" + }, + { + "id": "27349", + "ident": "YAVD", + "type": "small_airport", + "name": "Avon Downs Airport", + "latitude_deg": "-20.033300399780273", + "longitude_deg": "137.51699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YAVD" + }, + { + "id": "27350", + "ident": "YAVM", + "type": "small_airport", + "name": "Avonmore Airport", + "latitude_deg": "-36.56669998168945", + "longitude_deg": "144.5500030517578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YAVM" + }, + { + "id": "27351", + "ident": "YAWT", + "type": "small_airport", + "name": "Agnes Water private Airport", + "latitude_deg": "-24.20224", + "longitude_deg": "151.8925", + "elevation_ft": "60", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Agnes Water", + "scheduled_service": "no", + "gps_code": "YAWT", + "keywords": "owner charges landing fees" + }, + { + "id": "26895", + "ident": "YAYE", + "type": "medium_airport", + "name": "Ayers Rock Connellan Airport", + "latitude_deg": "-25.185913", + "longitude_deg": "130.97703", + "elevation_ft": "1626", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Yulara", + "scheduled_service": "yes", + "gps_code": "YAYE", + "iata_code": "AYQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ayers_Rock_Airport", + "keywords": "Ayers Rock,Uluru" + }, + { + "id": "26896", + "ident": "YAYR", + "type": "small_airport", + "name": "Ayr Airport", + "latitude_deg": "-19.595832", + "longitude_deg": "147.324495", + "elevation_ft": "41", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Ayr", + "scheduled_service": "no", + "gps_code": "YAYR", + "iata_code": "AYR" + }, + { + "id": "298805", + "ident": "YBAB", + "type": "small_airport", + "name": "Baralaba", + "latitude_deg": "-24.19357", + "longitude_deg": "149.843166", + "elevation_ft": "340", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Baralaba", + "scheduled_service": "no", + "gps_code": "YBAB" + }, + { + "id": "27352", + "ident": "YBAD", + "type": "small_airport", + "name": "Baradine Airport", + "latitude_deg": "-30.954999923706055", + "longitude_deg": "149.0919952392578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YBAD" + }, + { + "id": "26897", + "ident": "YBAF", + "type": "small_airport", + "name": "Brisbane Archerfield Airport", + "latitude_deg": "-27.572351", + "longitude_deg": "153.004167", + "elevation_ft": "63", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Brisbane", + "scheduled_service": "no", + "gps_code": "YBAF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Archerfield_Airport", + "keywords": "RAAF Station Archerfield, ACF" + }, + { + "id": "27353", + "ident": "YBAH", + "type": "small_airport", + "name": "Bauhinia Downs Airport", + "latitude_deg": "-16.13330078125", + "longitude_deg": "135.4669952392578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YBAH" + }, + { + "id": "27354", + "ident": "YBAL", + "type": "small_airport", + "name": "Balladonia Airport", + "latitude_deg": "-32.346793", + "longitude_deg": "123.614945", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBAL" + }, + { + "id": "38236", + "ident": "YBAN", + "type": "small_airport", + "name": "Mount Barnet Airport", + "latitude_deg": "-16.741453", + "longitude_deg": "125.905608", + "elevation_ft": "1339", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Wunaamin Miliwundi Ranges", + "scheduled_service": "no", + "gps_code": "YBAN" + }, + { + "id": "38237", + "ident": "YBAO", + "type": "small_airport", + "name": "Braidwood Airport", + "latitude_deg": "-35.45000076293945", + "longitude_deg": "149.85000610351562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YBAO" + }, + { + "id": "26899", + "ident": "YBAR", + "type": "medium_airport", + "name": "Barcaldine Airport", + "latitude_deg": "-23.566268", + "longitude_deg": "145.302086", + "elevation_ft": "878", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Barcaldine", + "scheduled_service": "yes", + "gps_code": "YBAR", + "iata_code": "BCI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barcaldine_Airport" + }, + { + "id": "26900", + "ident": "YBAS", + "type": "medium_airport", + "name": "Alice Springs Airport", + "latitude_deg": "-23.806588", + "longitude_deg": "133.903427", + "elevation_ft": "1789", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Alice Springs", + "scheduled_service": "yes", + "gps_code": "YBAS", + "iata_code": "ASP", + "home_link": "http://www.alicespringsairport.com.au/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Alice_Springs_Airport" + }, + { + "id": "27355", + "ident": "YBAU", + "type": "small_airport", + "name": "Badu Island Airport", + "latitude_deg": "-10.149999618499999", + "longitude_deg": "142.1734", + "elevation_ft": "14", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YBAU", + "iata_code": "BDD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Badu_Island_Airport" + }, + { + "id": "27356", + "ident": "YBAW", + "type": "small_airport", + "name": "Barkly Downs Airport", + "latitude_deg": "-20.4958333333", + "longitude_deg": "138.474722222", + "elevation_ft": "810", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBAW", + "iata_code": "BKP" + }, + { + "id": "27357", + "ident": "YBBA", + "type": "small_airport", + "name": "Barraba Airport", + "latitude_deg": "-30.393709", + "longitude_deg": "150.597678", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YBBA" + }, + { + "id": "38238", + "ident": "YBBC", + "type": "small_airport", + "name": "Bamboo Creek Airport", + "latitude_deg": "-20.944599151611328", + "longitude_deg": "120.16500091552734", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Bamboo Creek Gold Mine", + "scheduled_service": "no", + "gps_code": "YBBC" + }, + { + "id": "30680", + "ident": "YBBE", + "type": "small_airport", + "name": "Big Bell Airport", + "latitude_deg": "-27.328351", + "longitude_deg": "117.671771", + "elevation_ft": "1404", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Big Bell", + "scheduled_service": "no", + "gps_code": "YBBE", + "keywords": "BBE" + }, + { + "id": "27358", + "ident": "YBBL", + "type": "small_airport", + "name": "Billabalong Airport", + "latitude_deg": "-27.417679", + "longitude_deg": "115.834423", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBBL" + }, + { + "id": "26901", + "ident": "YBBN", + "type": "large_airport", + "name": "Brisbane International Airport", + "latitude_deg": "-27.384199142456055", + "longitude_deg": "153.11700439453125", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Brisbane", + "scheduled_service": "yes", + "gps_code": "YBBN", + "iata_code": "BNE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brisbane_Airport" + }, + { + "id": "38240", + "ident": "YBBO", + "type": "small_airport", + "name": "Bon Bon Airport", + "latitude_deg": "-30.4067", + "longitude_deg": "135.479996", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Bon Bon", + "scheduled_service": "no", + "gps_code": "YBBO" + }, + { + "id": "27359", + "ident": "YBBT", + "type": "small_airport", + "name": "Boort Airport", + "latitude_deg": "-36.138637", + "longitude_deg": "143.722994", + "elevation_ft": "298", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Wedderburn", + "scheduled_service": "no", + "gps_code": "YBBT" + }, + { + "id": "27360", + "ident": "YBCB", + "type": "small_airport", + "name": "Bencubbin Airport", + "latitude_deg": "-30.821446", + "longitude_deg": "117.867165", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBCB" + }, + { + "id": "26902", + "ident": "YBCG", + "type": "medium_airport", + "name": "Gold Coast Airport", + "latitude_deg": "-28.165962", + "longitude_deg": "153.506641", + "elevation_ft": "21", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Gold Coast", + "scheduled_service": "yes", + "gps_code": "YBCG", + "iata_code": "OOL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gold_Coast_Airport" + }, + { + "id": "27361", + "ident": "YBCH", + "type": "small_airport", + "name": "Beechworth Airstrip", + "latitude_deg": "-36.393333", + "longitude_deg": "146.696389", + "elevation_ft": "2000", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Beechworth", + "scheduled_service": "no", + "gps_code": "YBCH" + }, + { + "id": "26903", + "ident": "YBCK", + "type": "medium_airport", + "name": "Blackall Airport", + "latitude_deg": "-24.431678", + "longitude_deg": "145.429716", + "elevation_ft": "928", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Blackall", + "scheduled_service": "yes", + "gps_code": "YBCK", + "iata_code": "BKQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Blackall_Airport" + }, + { + "id": "38241", + "ident": "YBCL", + "type": "small_airport", + "name": "Boolcarrol Station Airport", + "latitude_deg": "-30.035418", + "longitude_deg": "149.373278", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YBCL" + }, + { + "id": "298807", + "ident": "YBCM", + "type": "small_airport", + "name": "Coominya", + "latitude_deg": "-27.3907447666", + "longitude_deg": "152.466545105", + "elevation_ft": "340", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBCM" + }, + { + "id": "27363", + "ident": "YBCR", + "type": "small_airport", + "name": "Batchelor Airport", + "latitude_deg": "-13.05663", + "longitude_deg": "131.028804", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YBCR" + }, + { + "id": "26904", + "ident": "YBCS", + "type": "medium_airport", + "name": "Cairns International Airport", + "latitude_deg": "-16.885799408", + "longitude_deg": "145.755004883", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Cairns", + "scheduled_service": "yes", + "gps_code": "YBCS", + "iata_code": "CNS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cairns_International_Airport" + }, + { + "id": "26905", + "ident": "YBCV", + "type": "medium_airport", + "name": "Charleville Airport", + "latitude_deg": "-26.4132995605", + "longitude_deg": "146.261993408", + "elevation_ft": "1003", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Charleville", + "scheduled_service": "yes", + "gps_code": "YBCV", + "iata_code": "CTL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Charleville_Airport" + }, + { + "id": "38242", + "ident": "YBDF", + "type": "small_airport", + "name": "Bedford Downs Airport", + "latitude_deg": "-17.286699295", + "longitude_deg": "127.462997437", + "elevation_ft": "1750", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBDF", + "iata_code": "BDW" + }, + { + "id": "26906", + "ident": "YBDG", + "type": "small_airport", + "name": "Bendigo Airport", + "latitude_deg": "-36.7393989563", + "longitude_deg": "144.330001831", + "elevation_ft": "705", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YBDG", + "iata_code": "BXG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bendigo_Airport_(Australia)" + }, + { + "id": "27365", + "ident": "YBDP", + "type": "small_airport", + "name": "Bridport Airport", + "latitude_deg": "-41.023798", + "longitude_deg": "147.416791", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YBDP" + }, + { + "id": "38243", + "ident": "YBDS", + "type": "small_airport", + "name": "Birthday Siding Airport", + "latitude_deg": "-30.288867", + "longitude_deg": "134.528275", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Tarcoola", + "scheduled_service": "no", + "gps_code": "YBDS" + }, + { + "id": "27366", + "ident": "YBDU", + "type": "small_airport", + "name": "Birrindudu Airport", + "latitude_deg": "-18.384522", + "longitude_deg": "129.437592", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YBDU" + }, + { + "id": "26907", + "ident": "YBDV", + "type": "medium_airport", + "name": "Birdsville Airport", + "latitude_deg": "-25.897499084472656", + "longitude_deg": "139.34800720214844", + "elevation_ft": "159", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YBDV", + "iata_code": "BVI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Birdsville_Airport" + }, + { + "id": "38244", + "ident": "YBDX", + "type": "small_airport", + "name": "Barradale Airport", + "latitude_deg": "-22.863300323486328", + "longitude_deg": "114.96299743652344", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBDX" + }, + { + "id": "298808", + "ident": "YBEB", + "type": "small_airport", + "name": "Bellburn Airstrip", + "latitude_deg": "-17.545", + "longitude_deg": "128.305", + "elevation_ft": "810", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Pumululu National Park", + "scheduled_service": "no", + "gps_code": "YBEB", + "iata_code": "BXF", + "keywords": "Bungle Bungles" + }, + { + "id": "38245", + "ident": "YBEC", + "type": "small_airport", + "name": "Beacon Airport", + "latitude_deg": "-30.474864", + "longitude_deg": "117.879932", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBEC" + }, + { + "id": "27367", + "ident": "YBEE", + "type": "small_airport", + "name": "Beverley Airport", + "latitude_deg": "-30.18670082092285", + "longitude_deg": "139.55799865722656", + "elevation_ft": "116", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YBEE" + }, + { + "id": "38246", + "ident": "YBEF", + "type": "small_airport", + "name": "Beaufort Airport", + "latitude_deg": "-37.45000076293945", + "longitude_deg": "143.25", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YBEF" + }, + { + "id": "27368", + "ident": "YBEL", + "type": "small_airport", + "name": "Bothwell Airport", + "latitude_deg": "-42.369482", + "longitude_deg": "147.029538", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YBEL" + }, + { + "id": "27369", + "ident": "YBEO", + "type": "small_airport", + "name": "Betoota Airport", + "latitude_deg": "-25.694791", + "longitude_deg": "140.738339", + "elevation_ft": "91", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBEO", + "iata_code": "BTX" + }, + { + "id": "27370", + "ident": "YBER", + "type": "closed", + "name": "Berwick Airport", + "latitude_deg": "-38.0397768866", + "longitude_deg": "145.336031914", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Berwick", + "scheduled_service": "no", + "gps_code": "YBER" + }, + { + "id": "354821", + "ident": "YBET", + "type": "closed", + "name": "Bellata Airstrip", + "latitude_deg": "-29.918567", + "longitude_deg": "149.781183", + "elevation_ft": "729", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Bellata", + "scheduled_service": "no", + "gps_code": "YBET" + }, + { + "id": "27371", + "ident": "YBEU", + "type": "small_airport", + "name": "Beulah 1 Airport", + "latitude_deg": "-35.95000076293945", + "longitude_deg": "142.41700744628906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YBEU" + }, + { + "id": "27372", + "ident": "YBEV", + "type": "small_airport", + "name": "Beverley Airport", + "latitude_deg": "-32.13330078125", + "longitude_deg": "116.94999694824219", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBEV" + }, + { + "id": "38247", + "ident": "YBEW", + "type": "small_airport", + "name": "Beechworth Airstrip", + "latitude_deg": "-31.916678", + "longitude_deg": "144.645553", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YBEW" + }, + { + "id": "27373", + "ident": "YBFR", + "type": "small_airport", + "name": "Balfour Airport", + "latitude_deg": "-41.259033262799996", + "longitude_deg": "144.886064529", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YBFR" + }, + { + "id": "298810", + "ident": "YBFT", + "type": "small_airport", + "name": "Beaufort", + "latitude_deg": "-37.495", + "longitude_deg": "143.43", + "elevation_ft": "1300", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YBFT" + }, + { + "id": "38248", + "ident": "YBGB", + "type": "small_airport", + "name": "Beagle Bay Airport", + "latitude_deg": "-17.0165", + "longitude_deg": "122.6464", + "elevation_ft": "124", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Dampier Peninsula", + "scheduled_service": "no", + "gps_code": "YBGB", + "iata_code": "BEE" + }, + { + "id": "298811", + "ident": "YBGD", + "type": "small_airport", + "name": "Boolgeeda", + "latitude_deg": "-22.54", + "longitude_deg": "117.275", + "elevation_ft": "1871", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBGD", + "iata_code": "OCM" + }, + { + "id": "27374", + "ident": "YBGI", + "type": "small_airport", + "name": "Balgair Airport", + "latitude_deg": "-31.066699981689453", + "longitude_deg": "125.66699981689453", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBGI" + }, + { + "id": "27375", + "ident": "YBGO", + "type": "small_airport", + "name": "Balgo Hill Airport", + "latitude_deg": "-20.1483", + "longitude_deg": "127.973", + "elevation_ft": "1440", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Balgo", + "scheduled_service": "no", + "gps_code": "YBGO", + "iata_code": "BQW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Balgo_Hill_Airport" + }, + { + "id": "27376", + "ident": "YBGR", + "type": "small_airport", + "name": "Bridgewater Airport", + "latitude_deg": "-36.619558", + "longitude_deg": "143.952109", + "elevation_ft": "91", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Bridgewater On Loddon", + "scheduled_service": "no", + "gps_code": "YBGR" + }, + { + "id": "27377", + "ident": "YBGT", + "type": "small_airport", + "name": "Budgerygar Airport", + "latitude_deg": "-25.3700008392334", + "longitude_deg": "143.7729949951172", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBGT" + }, + { + "id": "27378", + "ident": "YBGY", + "type": "small_airport", + "name": "Biniguy Airport", + "latitude_deg": "-29.504999", + "longitude_deg": "150.192001", + "elevation_ft": "785", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YBGY" + }, + { + "id": "308918", + "ident": "YBH", + "type": "seaplane_base", + "name": "Bull Harbour Water Aerodrome", + "latitude_deg": "50.9179", + "longitude_deg": "-127.9372", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Bull Harbour", + "scheduled_service": "no", + "iata_code": "YBH", + "local_code": "AH6" + }, + { + "id": "27379", + "ident": "YBHB", + "type": "small_airport", + "name": "Bathurst Harbour Airport", + "latitude_deg": "-43.421336", + "longitude_deg": "146.162131", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Southwest", + "scheduled_service": "no", + "gps_code": "YBHB", + "keywords": "Melaleuca" + }, + { + "id": "26908", + "ident": "YBHI", + "type": "medium_airport", + "name": "Broken Hill Airport", + "latitude_deg": "-32.0013999939", + "longitude_deg": "141.472000122", + "elevation_ft": "958", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Broken Hill", + "scheduled_service": "yes", + "gps_code": "YBHI", + "iata_code": "BHQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Broken_Hill_Airport" + }, + { + "id": "27380", + "ident": "YBHK", + "type": "small_airport", + "name": "Bushy Park Airport", + "latitude_deg": "-21.266700744628906", + "longitude_deg": "139.7169952392578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBHK" + }, + { + "id": "29707", + "ident": "YBHL", + "type": "small_airport", + "name": "Bindoon Hill Airstrip", + "latitude_deg": "-31.3403", + "longitude_deg": "116.188004", + "elevation_ft": "935", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Bindoon", + "scheduled_service": "no", + "gps_code": "YBHL", + "keywords": "Catholic Agricultural College Bindoon Airstrip, YBOO" + }, + { + "id": "26909", + "ident": "YBHM", + "type": "medium_airport", + "name": "Hamilton Island Airport", + "latitude_deg": "-20.3581008911", + "longitude_deg": "148.95199585", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Hamilton Island", + "scheduled_service": "yes", + "gps_code": "YBHM", + "iata_code": "HTI", + "home_link": "http://www.hamiltonisland.com.au/airport/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hamilton_Island_Airport" + }, + { + "id": "27381", + "ident": "YBIA", + "type": "small_airport", + "name": "Bingara Airport", + "latitude_deg": "-29.815165", + "longitude_deg": "150.534351", + "elevation_ft": "970", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YBIA" + }, + { + "id": "298812", + "ident": "YBID", + "type": "small_airport", + "name": "Binda", + "latitude_deg": "-34.30256", + "longitude_deg": "149.357668", + "elevation_ft": "2450", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YBID" + }, + { + "id": "26910", + "ident": "YBIE", + "type": "medium_airport", + "name": "Bedourie Airport", + "latitude_deg": "-24.346099853515625", + "longitude_deg": "139.4600067138672", + "elevation_ft": "300", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YBIE", + "iata_code": "BEU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bedourie_Airport" + }, + { + "id": "333858", + "ident": "YBII", + "type": "small_airport", + "name": "Balbirini Airfield", + "latitude_deg": "-16.72373", + "longitude_deg": "135.736915", + "elevation_ft": "254", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YBII" + }, + { + "id": "27382", + "ident": "YBIK", + "type": "closed", + "name": "Bindook NDB", + "latitude_deg": "-34.166698", + "longitude_deg": "150.100006", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YBIK" + }, + { + "id": "38249", + "ident": "YBIL", + "type": "small_airport", + "name": "Billiluna Airport", + "latitude_deg": "-19.566699981699998", + "longitude_deg": "127.666999817", + "elevation_ft": "1000", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBIL", + "iata_code": "BIW" + }, + { + "id": "27383", + "ident": "YBIN", + "type": "small_airport", + "name": "Biggenden Airport", + "latitude_deg": "-25.521259", + "longitude_deg": "152.046329", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBIN" + }, + { + "id": "26911", + "ident": "YBIR", + "type": "small_airport", + "name": "Birchip Airport", + "latitude_deg": "-35.999698638916016", + "longitude_deg": "142.91700744628906", + "elevation_ft": "340", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YBIR" + }, + { + "id": "27384", + "ident": "YBIU", + "type": "small_airport", + "name": "Ballidu Airport", + "latitude_deg": "-30.593299865722656", + "longitude_deg": "116.77999877929688", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBIU" + }, + { + "id": "27385", + "ident": "YBIZ", + "type": "small_airport", + "name": "Bizant Airport", + "latitude_deg": "-14.7402777778", + "longitude_deg": "144.119444444", + "elevation_ft": "65", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Lakefield National Park", + "scheduled_service": "no", + "gps_code": "YBIZ", + "iata_code": "BZP" + }, + { + "id": "308917", + "ident": "YBJ", + "type": "seaplane_base", + "name": "Baie-Johan-Beetz Water Aerodrome", + "latitude_deg": "50.283745", + "longitude_deg": "-62.81004", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Baie-Johan-Beetz", + "scheduled_service": "no", + "iata_code": "YBJ", + "local_code": "SG6" + }, + { + "id": "27386", + "ident": "YBJW", + "type": "small_airport", + "name": "Banjawarn Airport", + "latitude_deg": "-27.66670036315918", + "longitude_deg": "121.5999984741211", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBJW" + }, + { + "id": "26912", + "ident": "YBKE", + "type": "medium_airport", + "name": "Bourke Airport", + "latitude_deg": "-30.039199829101562", + "longitude_deg": "145.95199584960938", + "elevation_ft": "352", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "yes", + "gps_code": "YBKE", + "iata_code": "BRK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bourke_Airport" + }, + { + "id": "38250", + "ident": "YBKS", + "type": "small_airport", + "name": "Barkly Wayside Inn Airport", + "latitude_deg": "-19.709199905395508", + "longitude_deg": "135.81900024414062", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YBKS" + }, + { + "id": "26913", + "ident": "YBKT", + "type": "small_airport", + "name": "Burketown Airport", + "latitude_deg": "-17.748600006103516", + "longitude_deg": "139.53399658203125", + "elevation_ft": "21", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YBKT", + "iata_code": "BUC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Burketown_Airport" + }, + { + "id": "26914", + "ident": "YBLA", + "type": "medium_airport", + "name": "Benalla Airport", + "latitude_deg": "-36.551899", + "longitude_deg": "146.007004", + "elevation_ft": "569", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YBLA", + "iata_code": "BLN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Benalla_Airport" + }, + { + "id": "38251", + "ident": "YBLB", + "type": "small_airport", + "name": "Billabong Road House Airport", + "latitude_deg": "-26.816699981689453", + "longitude_deg": "114.61699676513672", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBLB" + }, + { + "id": "27388", + "ident": "YBLC", + "type": "small_airport", + "name": "Balcanoona Airport", + "latitude_deg": "-30.53499984741211", + "longitude_deg": "139.33700561523438", + "elevation_ft": "144", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YBLC", + "iata_code": "LCN" + }, + { + "id": "38252", + "ident": "YBLD", + "type": "small_airport", + "name": "Brooklands Airport", + "latitude_deg": "-31.823078", + "longitude_deg": "116.799291", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBLD" + }, + { + "id": "344097", + "ident": "YBLE", + "type": "small_airport", + "name": "Biloela Airport", + "latitude_deg": "-24.320816", + "longitude_deg": "150.509627", + "elevation_ft": "643", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Biloela", + "scheduled_service": "no", + "gps_code": "YBLE", + "iata_code": "ZBL" + }, + { + "id": "27389", + "ident": "YBLG", + "type": "small_airport", + "name": "Bollards Lagoon Airport", + "latitude_deg": "-28.981855", + "longitude_deg": "140.857666", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YBLG" + }, + { + "id": "27390", + "ident": "YBLH", + "type": "small_airport", + "name": "Bellalie Airport", + "latitude_deg": "-27.011318", + "longitude_deg": "142.958236", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBLH" + }, + { + "id": "27391", + "ident": "YBLL", + "type": "small_airport", + "name": "Bollon Airport", + "latitude_deg": "-28.051247", + "longitude_deg": "147.481799", + "elevation_ft": "182", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBLL", + "iata_code": "BLS" + }, + { + "id": "29711", + "ident": "YBLM", + "type": "small_airport", + "name": "Blinman Airport", + "latitude_deg": "-31.118600845336914", + "longitude_deg": "138.7259979248047", + "elevation_ft": "1991", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YBLM" + }, + { + "id": "26915", + "ident": "YBLN", + "type": "small_airport", + "name": "Busselton Margaret River Regional Airport", + "latitude_deg": "-33.688423", + "longitude_deg": "115.401596", + "elevation_ft": "55", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Busselton", + "scheduled_service": "yes", + "gps_code": "YBLN", + "iata_code": "BQB", + "home_link": "https://www.busseltonmargaretriverairport.com.au/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Busselton_Regional_Airport" + }, + { + "id": "26916", + "ident": "YBLT", + "type": "small_airport", + "name": "Ballarat Airport", + "latitude_deg": "-37.51169967651367", + "longitude_deg": "143.79100036621094", + "elevation_ft": "1433", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YBLT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ballarat_Airport" + }, + { + "id": "27392", + "ident": "YBLU", + "type": "small_airport", + "name": "Bellevue Airport", + "latitude_deg": "-27.612302", + "longitude_deg": "120.594435", + "elevation_ft": "1555", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBLU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bellevue_Airport" + }, + { + "id": "26917", + "ident": "YBMA", + "type": "medium_airport", + "name": "Mount Isa Airport", + "latitude_deg": "-20.663900375399997", + "longitude_deg": "139.488998413", + "elevation_ft": "1121", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Mount Isa", + "scheduled_service": "yes", + "gps_code": "YBMA", + "iata_code": "ISA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mount_Isa_Airport" + }, + { + "id": "27393", + "ident": "YBMD", + "type": "small_airport", + "name": "Bloomfield River Airport", + "latitude_deg": "-15.8736000061", + "longitude_deg": "145.330001831", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBMD", + "iata_code": "BFC" + }, + { + "id": "334046", + "ident": "YBMG", + "type": "heliport", + "name": "Bermagui - Dickinson Oval HLS", + "latitude_deg": "-36.4265", + "longitude_deg": "150.076167", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Bermagui", + "scheduled_service": "no", + "gps_code": "YBMG", + "local_code": "YBMG" + }, + { + "id": "27394", + "ident": "YBMI", + "type": "small_airport", + "name": "Boomi Airport", + "latitude_deg": "-28.728373", + "longitude_deg": "149.595181", + "elevation_ft": "618", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YBMI" + }, + { + "id": "26919", + "ident": "YBMK", + "type": "medium_airport", + "name": "Mackay Airport", + "latitude_deg": "-21.170816", + "longitude_deg": "149.182588", + "elevation_ft": "19", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Mackay", + "scheduled_service": "yes", + "gps_code": "YBMK", + "iata_code": "MKY", + "home_link": "http://www.mackayairport.com.au/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mackay_Airport" + }, + { + "id": "27395", + "ident": "YBML", + "type": "closed", + "name": "Bromelton Airport", + "latitude_deg": "-27.968299865722656", + "longitude_deg": "152.89999389648438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBML" + }, + { + "id": "27396", + "ident": "YBMM", + "type": "small_airport", + "name": "Bamawm Airport", + "latitude_deg": "-36.25", + "longitude_deg": "144.63299560546875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YBMM" + }, + { + "id": "29717", + "ident": "YBMO", + "type": "small_airport", + "name": "Bombala Airport", + "latitude_deg": "-36.904998779297", + "longitude_deg": "149.18200683594", + "elevation_ft": "2415", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YBMO" + }, + { + "id": "38253", + "ident": "YBMR", + "type": "small_airport", + "name": "Barmera Airport", + "latitude_deg": "-34.23469", + "longitude_deg": "140.476792", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YBMR" + }, + { + "id": "27397", + "ident": "YBMY", + "type": "small_airport", + "name": "Bamyili Airport", + "latitude_deg": "-14.520000457763672", + "longitude_deg": "132.88299560546875", + "elevation_ft": "215", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YBMY" + }, + { + "id": "26920", + "ident": "YBNA", + "type": "medium_airport", + "name": "Ballina Byron Gateway Airport", + "latitude_deg": "-28.833236", + "longitude_deg": "153.561471", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Ballina", + "scheduled_service": "yes", + "gps_code": "YBNA", + "iata_code": "BNK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ballina_Airport" + }, + { + "id": "27398", + "ident": "YBNC", + "type": "small_airport", + "name": "Bannockburn Airport", + "latitude_deg": "-21.799999237060547", + "longitude_deg": "145.08299255371094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBNC" + }, + { + "id": "350218", + "ident": "YBND", + "type": "small_airport", + "name": "Bendick Murrell Airstrip", + "latitude_deg": "-34.174167", + "longitude_deg": "148.471944", + "elevation_ft": "1194", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Bendick Murrell", + "scheduled_service": "no", + "gps_code": "YBND" + }, + { + "id": "38254", + "ident": "YBNM", + "type": "small_airport", + "name": "Benmara Airport", + "latitude_deg": "-17.93670082092285", + "longitude_deg": "136.89999389648438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YBNM" + }, + { + "id": "26921", + "ident": "YBNS", + "type": "medium_airport", + "name": "Bairnsdale Airport", + "latitude_deg": "-37.887539", + "longitude_deg": "147.569379", + "elevation_ft": "165", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Bairnsdale", + "scheduled_service": "no", + "gps_code": "YBNS", + "iata_code": "BSJ", + "home_link": "https://www.eastgippsland.vic.gov.au/aerodromes/bairnsdale-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bairnsdale_Airport" + }, + { + "id": "27399", + "ident": "YBNY", + "type": "small_airport", + "name": "Brunchilly Airport", + "latitude_deg": "-18.86956", + "longitude_deg": "134.494736", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YBNY" + }, + { + "id": "27400", + "ident": "YBOA", + "type": "small_airport", + "name": "Boonah Airport", + "latitude_deg": "-28.017458", + "longitude_deg": "152.676459", + "elevation_ft": "318", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBOA" + }, + { + "id": "27401", + "ident": "YBOC", + "type": "small_airport", + "name": "Booleroo Centre Airport", + "latitude_deg": "-32.88989", + "longitude_deg": "138.366382", + "elevation_ft": "418", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YBOC" + }, + { + "id": "27402", + "ident": "YBOD", + "type": "small_airport", + "name": "Bodalla Airport", + "latitude_deg": "-26.299999237060547", + "longitude_deg": "143.38299560546875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBOD" + }, + { + "id": "27403", + "ident": "YBOG", + "type": "small_airport", + "name": "Boggabri Airport", + "latitude_deg": "-30.716699600219727", + "longitude_deg": "150.0500030517578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YBOG" + }, + { + "id": "29715", + "ident": "YBOI", + "type": "small_airport", + "name": "Boigu Airport", + "latitude_deg": "-9.23278045654", + "longitude_deg": "142.218002319", + "elevation_ft": "23", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YBOI", + "iata_code": "GIC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boigu_Island_Airport" + }, + { + "id": "26922", + "ident": "YBOK", + "type": "medium_airport", + "name": "Oakey Army Aviation Centre", + "latitude_deg": "-27.409262", + "longitude_deg": "151.736727", + "elevation_ft": "1335", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YBOK", + "iata_code": "OKY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Oakey_Army_Aviation_Centre", + "keywords": "Swartz Barracks" + }, + { + "id": "27405", + "ident": "YBOM", + "type": "small_airport", + "name": "Bombala Airport", + "latitude_deg": "-36.904999", + "longitude_deg": "149.182007", + "elevation_ft": "2415", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YBOM" + }, + { + "id": "27406", + "ident": "YBOP", + "type": "small_airport", + "name": "Boyup Brook Airport", + "latitude_deg": "-33.900001525878906", + "longitude_deg": "116.46700286865234", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBOP" + }, + { + "id": "27407", + "ident": "YBOR", + "type": "small_airport", + "name": "Bordertown Airport", + "latitude_deg": "-36.268104", + "longitude_deg": "140.721991", + "elevation_ft": "265", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Bordertown", + "scheduled_service": "no", + "gps_code": "YBOR" + }, + { + "id": "27408", + "ident": "YBOT", + "type": "small_airport", + "name": "Boatman Airport", + "latitude_deg": "-27.269279", + "longitude_deg": "146.901841", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBOT" + }, + { + "id": "26923", + "ident": "YBOU", + "type": "medium_airport", + "name": "Boulia Airport", + "latitude_deg": "-22.913299560546875", + "longitude_deg": "139.89999389648438", + "elevation_ft": "542", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YBOU", + "iata_code": "BQL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Boulia_Airport" + }, + { + "id": "32719", + "ident": "YBOV", + "type": "small_airport", + "name": "Border Village Airport", + "latitude_deg": "-31.639400482177734", + "longitude_deg": "129.01199340820312", + "elevation_ft": "308", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Border Village", + "scheduled_service": "no", + "gps_code": "YBOV" + }, + { + "id": "317142", + "ident": "YBOW", + "type": "heliport", + "name": "Mount Barrow Helicopter Landing Site", + "latitude_deg": "-41.377597", + "longitude_deg": "147.416482", + "elevation_ft": "4275", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Nunamara", + "scheduled_service": "no", + "gps_code": "YBOW" + }, + { + "id": "38255", + "ident": "YBOY", + "type": "small_airport", + "name": "Booylgoo Springs Airport", + "latitude_deg": "-27.75", + "longitude_deg": "119.9000015258789", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBOY" + }, + { + "id": "336111", + "ident": "YBP", + "type": "medium_airport", + "name": "Yibin Wuliangye Airport", + "latitude_deg": "28.858431", + "longitude_deg": "104.526157", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Yibin (Cuiping)", + "scheduled_service": "yes", + "gps_code": "ZUYB", + "iata_code": "YBP", + "local_code": "YBP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yibin_Wuliangye_Airport" + }, + { + "id": "27409", + "ident": "YBPI", + "type": "small_airport", + "name": "Brampton Island Airport", + "latitude_deg": "-20.804633", + "longitude_deg": "149.279931", + "elevation_ft": "11", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBPI", + "iata_code": "BMP" + }, + { + "id": "26924", + "ident": "YBPN", + "type": "medium_airport", + "name": "Proserpine Whitsunday Coast Airport", + "latitude_deg": "-20.494416", + "longitude_deg": "148.553583", + "elevation_ft": "82", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Proserpine", + "scheduled_service": "yes", + "gps_code": "YBPN", + "iata_code": "PPP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Proserpine_/_Whitsunday_Coast_Airport" + }, + { + "id": "316461", + "ident": "YBQ", + "type": "seaplane_base", + "name": "Telegraph Harbour Seaplane Base", + "latitude_deg": "48.97", + "longitude_deg": "-123.664", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Thetis Island", + "scheduled_service": "no", + "iata_code": "YBQ" + }, + { + "id": "27410", + "ident": "YBRA", + "type": "small_airport", + "name": "Benambra Airport", + "latitude_deg": "-36.9668665594", + "longitude_deg": "147.699143887", + "elevation_ft": "2200", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YBRA", + "keywords": "Victorian Aerial Fire Bases" + }, + { + "id": "38256", + "ident": "YBRC", + "type": "small_airport", + "name": "Barrow Creek Airport", + "latitude_deg": "-21.542202", + "longitude_deg": "133.871959", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YBRC" + }, + { + "id": "27411", + "ident": "YBRJ", + "type": "small_airport", + "name": "Burren Junction Airport", + "latitude_deg": "-30.159024", + "longitude_deg": "148.974706", + "elevation_ft": "547", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YBRJ" + }, + { + "id": "26925", + "ident": "YBRK", + "type": "medium_airport", + "name": "Rockhampton Airport", + "latitude_deg": "-23.380019", + "longitude_deg": "150.475359", + "elevation_ft": "34", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Rockhampton", + "scheduled_service": "yes", + "gps_code": "YBRK", + "iata_code": "ROK", + "home_link": "http://www.rok.aero/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rockhampton_Airport" + }, + { + "id": "26926", + "ident": "YBRL", + "type": "small_airport", + "name": "Borroloola Airport", + "latitude_deg": "-16.075300216674805", + "longitude_deg": "136.302001953125", + "elevation_ft": "55", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YBRL", + "iata_code": "BOX" + }, + { + "id": "26927", + "ident": "YBRM", + "type": "medium_airport", + "name": "Broome International Airport", + "latitude_deg": "-17.949055", + "longitude_deg": "122.228329", + "elevation_ft": "56", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Broome", + "scheduled_service": "yes", + "gps_code": "YBRM", + "iata_code": "BME", + "wikipedia_link": "https://en.wikipedia.org/wiki/Broome_International_Airport" + }, + { + "id": "26928", + "ident": "YBRN", + "type": "medium_airport", + "name": "Balranald Airport", + "latitude_deg": "-34.624834", + "longitude_deg": "143.577114", + "elevation_ft": "210", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YBRN", + "iata_code": "BZD", + "home_link": "https://balranald.nsw.gov.au/infrastructure/balranald-aerodrome/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Balranald_Airport" + }, + { + "id": "27412", + "ident": "YBRO", + "type": "small_airport", + "name": "Bruce Rock Airport", + "latitude_deg": "-31.887467", + "longitude_deg": "118.115133", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBRO" + }, + { + "id": "27413", + "ident": "YBRS", + "type": "small_airport", + "name": "Barwon Heads Airport", + "latitude_deg": "-38.258056", + "longitude_deg": "144.4275", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YBRS" + }, + { + "id": "27414", + "ident": "YBRU", + "type": "small_airport", + "name": "Brunette Downs Airport", + "latitude_deg": "-18.637472", + "longitude_deg": "135.938355", + "elevation_ft": "700", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YBRU", + "iata_code": "BTD" + }, + { + "id": "26929", + "ident": "YBRW", + "type": "medium_airport", + "name": "Brewarrina Airport", + "latitude_deg": "-29.975792", + "longitude_deg": "146.81438", + "elevation_ft": "414", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YBRW", + "iata_code": "BWQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Brewarrina_Airport" + }, + { + "id": "26930", + "ident": "YBRY", + "type": "small_airport", + "name": "Barimunya Airport", + "latitude_deg": "-22.673900604248", + "longitude_deg": "119.16600036621", + "elevation_ft": "2082", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBRY", + "iata_code": "BYP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Barimunya_Airport" + }, + { + "id": "26931", + "ident": "YBSG", + "type": "small_airport", + "name": "RAAF Scherger", + "latitude_deg": "-12.623900413513184", + "longitude_deg": "142.08700561523438", + "elevation_ft": "145", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Weipa", + "scheduled_service": "no", + "gps_code": "YBSG", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAAF_Scherger" + }, + { + "id": "27415", + "ident": "YBSP", + "type": "small_airport", + "name": "Bond Springs Airport", + "latitude_deg": "-23.516695", + "longitude_deg": "133.849525", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Burt Plain", + "scheduled_service": "no", + "gps_code": "YBSP", + "keywords": "Alice Springs Gliding Club" + }, + { + "id": "27416", + "ident": "YBSR", + "type": "small_airport", + "name": "Blackstone Airport", + "latitude_deg": "-25.9867000579834", + "longitude_deg": "128.28799438476562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBSR" + }, + { + "id": "27417", + "ident": "YBSS", + "type": "small_airport", + "name": "Bacchus Marsh Airport", + "latitude_deg": "-37.7333333333", + "longitude_deg": "144.421666667", + "elevation_ft": "520", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YBSS" + }, + { + "id": "26918", + "ident": "YBSU", + "type": "medium_airport", + "name": "Sunshine Coast Airport", + "latitude_deg": "-26.593324", + "longitude_deg": "153.08319", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Maroochydore", + "scheduled_service": "yes", + "gps_code": "YBSU", + "iata_code": "MCY", + "home_link": "http://www.sunshinecoastairport.com.au/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sunshine_Coast_Airport", + "keywords": "YBMC" + }, + { + "id": "27418", + "ident": "YBTD", + "type": "small_airport", + "name": "Brighton Downs Airport", + "latitude_deg": "-23.350000381469727", + "longitude_deg": "143.5330047607422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBTD" + }, + { + "id": "26932", + "ident": "YBTH", + "type": "medium_airport", + "name": "Bathurst Airport", + "latitude_deg": "-33.406817", + "longitude_deg": "149.651161", + "elevation_ft": "2435", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Bathurst", + "scheduled_service": "yes", + "gps_code": "YBTH", + "iata_code": "BHS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bathurst_Airport_(New_South_Wales)" + }, + { + "id": "26933", + "ident": "YBTI", + "type": "medium_airport", + "name": "Bathurst Island Airport", + "latitude_deg": "-11.764966", + "longitude_deg": "130.615774", + "elevation_ft": "67", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Wurrumiyanga", + "scheduled_service": "no", + "gps_code": "YBTI", + "iata_code": "BRT" + }, + { + "id": "43967", + "ident": "YBTK", + "type": "small_airport", + "name": "Bentinck Island Airport", + "latitude_deg": "-17.086702346801758", + "longitude_deg": "139.56578063964844", + "elevation_ft": "45", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBTK" + }, + { + "id": "26934", + "ident": "YBTL", + "type": "medium_airport", + "name": "Townsville Airport / RAAF Base Townsville", + "latitude_deg": "-19.252904", + "longitude_deg": "146.766512", + "elevation_ft": "18", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Townsville", + "scheduled_service": "yes", + "gps_code": "YBTL", + "iata_code": "TSV", + "home_link": "http://www.townsvilleairport.com.au/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Townsville_Airport", + "keywords": "RAAF Base Garbutt, RAAF Base Townsville" + }, + { + "id": "38257", + "ident": "YBTN", + "type": "small_airport", + "name": "Barton Siding Airport", + "latitude_deg": "-30.524589", + "longitude_deg": "132.675254", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YBTN" + }, + { + "id": "26935", + "ident": "YBTR", + "type": "medium_airport", + "name": "Blackwater Airport", + "latitude_deg": "-23.603099822998047", + "longitude_deg": "148.8070068359375", + "elevation_ft": "657", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YBTR", + "iata_code": "BLT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Blackwater_Airport" + }, + { + "id": "38258", + "ident": "YBTS", + "type": "small_airport", + "name": "Battery Downs Airport", + "latitude_deg": "-19.433300018310547", + "longitude_deg": "145.85000610351562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBTS" + }, + { + "id": "27419", + "ident": "YBTT", + "type": "small_airport", + "name": "Buttabone Airport", + "latitude_deg": "-31.376562", + "longitude_deg": "147.606774", + "elevation_ft": "577", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YBTT" + }, + { + "id": "38259", + "ident": "YBTV", + "type": "small_airport", + "name": "Batavia Downs Airport", + "latitude_deg": "-12.6591997147", + "longitude_deg": "142.675003052", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBTV", + "iata_code": "BVW" + }, + { + "id": "27420", + "ident": "YBUA", + "type": "small_airport", + "name": "Bundarra Airport", + "latitude_deg": "-21.966699600219727", + "longitude_deg": "148.5330047607422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBUA" + }, + { + "id": "38260", + "ident": "YBUC", + "type": "closed", + "name": "Butch Airport", + "latitude_deg": "-33.807251", + "longitude_deg": "115.10067", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Cowaramup", + "scheduled_service": "no", + "gps_code": "YBUC" + }, + { + "id": "26936", + "ident": "YBUD", + "type": "medium_airport", + "name": "Bundaberg Airport", + "latitude_deg": "-24.905039", + "longitude_deg": "152.322612", + "elevation_ft": "107", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Bundaberg", + "scheduled_service": "yes", + "gps_code": "YBUD", + "iata_code": "BDB", + "home_link": "http://bundaberg.qld.gov.au/services/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bundaberg_Airport" + }, + { + "id": "38261", + "ident": "YBUG", + "type": "small_airport", + "name": "Bulga Downs Station Airport", + "latitude_deg": "-28.5", + "longitude_deg": "119.73300170898438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBUG" + }, + { + "id": "38262", + "ident": "YBUI", + "type": "heliport", + "name": "Burnie Helicopter Landing Site", + "latitude_deg": "-41.047167", + "longitude_deg": "145.880667", + "elevation_ft": "248", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Burnie", + "scheduled_service": "no", + "gps_code": "YBUI" + }, + { + "id": "38263", + "ident": "YBUL", + "type": "small_airport", + "name": "Bulgunnia Airport", + "latitude_deg": "-30.184458", + "longitude_deg": "134.905157", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Bulgunnia", + "scheduled_service": "no", + "gps_code": "YBUL" + }, + { + "id": "26937", + "ident": "YBUN", + "type": "small_airport", + "name": "Bunbury Airport", + "latitude_deg": "-33.378299713134766", + "longitude_deg": "115.677001953125", + "elevation_ft": "53", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBUN", + "iata_code": "BUY" + }, + { + "id": "27421", + "ident": "YBUO", + "type": "small_airport", + "name": "Bulloo Downs Station Airport", + "latitude_deg": "-24.016700744628906", + "longitude_deg": "119.56700134277344", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBUO" + }, + { + "id": "27422", + "ident": "YBUP", + "type": "small_airport", + "name": "Bunyip Airport", + "latitude_deg": "-38.016700744628906", + "longitude_deg": "145.75", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YBUP" + }, + { + "id": "32720", + "ident": "YBUU", + "type": "small_airport", + "name": "Bungle Bungle Airport", + "latitude_deg": "-17.545299530029297", + "longitude_deg": "128.3070068359375", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Bungle Bungle", + "scheduled_service": "no", + "gps_code": "YBUU" + }, + { + "id": "27423", + "ident": "YBUX", + "type": "small_airport", + "name": "Bulleringa Airport", + "latitude_deg": "-17.649999618530273", + "longitude_deg": "143.8000030517578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBUX" + }, + { + "id": "301431", + "ident": "YBUY", + "type": "small_airport", + "name": "Bunyan Airfield", + "latitude_deg": "-36.1342008376", + "longitude_deg": "149.131979942", + "elevation_ft": "2540", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YBUY", + "home_link": "http://canberragliding.org", + "keywords": "canberra gliding club" + }, + { + "id": "27424", + "ident": "YBVA", + "type": "small_airport", + "name": "Balaklava Airport", + "latitude_deg": "-34.090958", + "longitude_deg": "138.339801", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YBVA" + }, + { + "id": "38264", + "ident": "YBVL", + "type": "small_airport", + "name": "Blackville Airport", + "latitude_deg": "-31.58649", + "longitude_deg": "150.174522", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YBVL" + }, + { + "id": "38265", + "ident": "YBVY", + "type": "small_airport", + "name": "Bullo River Valley Airport", + "latitude_deg": "-15.466699600219727", + "longitude_deg": "129.76699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YBVY" + }, + { + "id": "26938", + "ident": "YBWG", + "type": "small_airport", + "name": "Bronzewing Airport", + "latitude_deg": "-27.3656005859375", + "longitude_deg": "121.03600311279297", + "elevation_ft": "1645", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBWG" + }, + { + "id": "27425", + "ident": "YBWI", + "type": "small_airport", + "name": "Burdekin Falls Dam Airport", + "latitude_deg": "-20.59564", + "longitude_deg": "147.095504", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBWI" + }, + { + "id": "38266", + "ident": "YBWM", + "type": "small_airport", + "name": "Bulimba Airport", + "latitude_deg": "-16.8808002472", + "longitude_deg": "143.479003906", + "elevation_ft": "470", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBWM", + "iata_code": "BIP" + }, + { + "id": "27426", + "ident": "YBWN", + "type": "small_airport", + "name": "Bowen Airport", + "latitude_deg": "-20.017999", + "longitude_deg": "148.215245", + "elevation_ft": "8", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Bowen", + "scheduled_service": "no", + "gps_code": "YBWN", + "iata_code": "ZBO" + }, + { + "id": "309366", + "ident": "YBWO", + "type": "small_airport", + "name": "Bowen Downs Airport", + "latitude_deg": "-22.4641", + "longitude_deg": "144.99785", + "elevation_ft": "768", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Upper Cornish Creek", + "scheduled_service": "no", + "gps_code": "YBWO" + }, + { + "id": "26939", + "ident": "YBWP", + "type": "medium_airport", + "name": "Weipa Airport", + "latitude_deg": "-12.6786003113", + "longitude_deg": "141.925003052", + "elevation_ft": "63", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Weipa", + "scheduled_service": "yes", + "gps_code": "YBWP", + "iata_code": "WEI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Weipa_Airport" + }, + { + "id": "27427", + "ident": "YBWR", + "type": "small_airport", + "name": "Bolwarra Airport", + "latitude_deg": "-17.388299942", + "longitude_deg": "144.169006348", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBWR", + "iata_code": "BCK" + }, + { + "id": "27428", + "ident": "YBWS", + "type": "heliport", + "name": "Browse Island Heliport", + "latitude_deg": "-14.11058", + "longitude_deg": "123.549666", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBWS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Browse_Island" + }, + { + "id": "38267", + "ident": "YBWT", + "type": "small_airport", + "name": "Bowthorn Airport", + "latitude_deg": "-18.08329963684082", + "longitude_deg": "138.27499389648438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBWT" + }, + { + "id": "315119", + "ident": "YBWW", + "type": "medium_airport", + "name": "Toowoomba Wellcamp Airport", + "latitude_deg": "-27.558332", + "longitude_deg": "151.793335", + "elevation_ft": "1509", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Toowoomba", + "scheduled_service": "yes", + "gps_code": "YBWW", + "iata_code": "WTB", + "home_link": "http://www.wellcamp.com.au", + "wikipedia_link": "https://en.wikipedia.org/wiki/Toowoomba_Wellcamp_Airport", + "keywords": "Brisbane West Wellcamp" + }, + { + "id": "26940", + "ident": "YBWX", + "type": "small_airport", + "name": "Barrow Island Airport", + "latitude_deg": "-20.86440086364746", + "longitude_deg": "115.40599822998047", + "elevation_ft": "26", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBWX", + "iata_code": "BWB" + }, + { + "id": "27429", + "ident": "YBXH", + "type": "small_airport", + "name": "Branxholme Airport", + "latitude_deg": "-37.8672981262207", + "longitude_deg": "141.70199584960938", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YBXH" + }, + { + "id": "38268", + "ident": "YBYA", + "type": "small_airport", + "name": "Bryah Airport", + "latitude_deg": "-25.533300399780273", + "longitude_deg": "118.73300170898438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBYA" + }, + { + "id": "38269", + "ident": "YBYD", + "type": "small_airport", + "name": "Bonney Downs Station Airport", + "latitude_deg": "-22.266700744628906", + "longitude_deg": "119.88300323486328", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBYD" + }, + { + "id": "27430", + "ident": "YBYI", + "type": "small_airport", + "name": "Bruny Island Airport", + "latitude_deg": "-43.23419952392578", + "longitude_deg": "147.3800048828125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YBYI" + }, + { + "id": "309363", + "ident": "YBYL", + "type": "small_airport", + "name": "Baryulgil Airstrip", + "latitude_deg": "-29.21829", + "longitude_deg": "152.61611", + "elevation_ft": "422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Baryulgil", + "scheduled_service": "no", + "gps_code": "YBYL" + }, + { + "id": "351030", + "ident": "YBYO", + "type": "heliport", + "name": "Brymaroo Airfield", + "latitude_deg": "-27.2295", + "longitude_deg": "151.615", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Brymaroo", + "scheduled_service": "no", + "gps_code": "YBYO", + "home_link": "https://www.ww2places.qld.gov.au/place?id=2081" + }, + { + "id": "27431", + "ident": "YBYR", + "type": "small_airport", + "name": "Byrock Airport", + "latitude_deg": "-30.658232", + "longitude_deg": "146.394689", + "elevation_ft": "480", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Byrock", + "scheduled_service": "no", + "gps_code": "YBYR" + }, + { + "id": "27432", + "ident": "YBYS", + "type": "small_airport", + "name": "Beverley Springs Airport", + "latitude_deg": "-16.733252", + "longitude_deg": "125.439245", + "elevation_ft": "385", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YBYS", + "iata_code": "BVZ" + }, + { + "id": "38270", + "ident": "YBYW", + "type": "small_airport", + "name": "Bayswater Airport", + "latitude_deg": "-25.450000762939453", + "longitude_deg": "145.58299255371094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YBYW" + }, + { + "id": "27433", + "ident": "YCAA", + "type": "closed", + "name": "Calga NDB", + "latitude_deg": "-33.403301", + "longitude_deg": "151.212006", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCAA" + }, + { + "id": "27434", + "ident": "YCAB", + "type": "small_airport", + "name": "Caboolture Airport", + "latitude_deg": "-27.076027", + "longitude_deg": "152.987376", + "elevation_ft": "12", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Caboolture", + "scheduled_service": "no", + "gps_code": "YCAB", + "home_link": "https://cabooltureaeroclub.com.au/" + }, + { + "id": "27435", + "ident": "YCAC", + "type": "small_airport", + "name": "Cattle Creek Airport", + "latitude_deg": "-17.607000351", + "longitude_deg": "131.548995972", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YCAC", + "iata_code": "CTR" + }, + { + "id": "38272", + "ident": "YCAE", + "type": "small_airport", + "name": "Campbell Town Airport", + "latitude_deg": "-41.96722412109375", + "longitude_deg": "147.53054809570312", + "elevation_ft": "710", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YCAE" + }, + { + "id": "27436", + "ident": "YCAG", + "type": "small_airport", + "name": "Caiguna Airport", + "latitude_deg": "-32.280457", + "longitude_deg": "125.477943", + "elevation_ft": "87", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YCAG", + "iata_code": "CGV" + }, + { + "id": "27437", + "ident": "YCAH", + "type": "small_airport", + "name": "Coolah Airport", + "latitude_deg": "-31.773864", + "longitude_deg": "149.615322", + "elevation_ft": "504", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCAH", + "iata_code": "CLH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coolah_Airport" + }, + { + "id": "38273", + "ident": "YCAI", + "type": "small_airport", + "name": "Callion Airport", + "latitude_deg": "-30.120342", + "longitude_deg": "120.571334", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YCAI" + }, + { + "id": "38274", + "ident": "YCAJ", + "type": "small_airport", + "name": "Cadjebut Airport", + "latitude_deg": "-18.700000762939453", + "longitude_deg": "125.9000015258789", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YCAJ" + }, + { + "id": "27438", + "ident": "YCAL", + "type": "small_airport", + "name": "Castlemaine Airport", + "latitude_deg": "-37.13330078125", + "longitude_deg": "144.16700744628906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YCAL" + }, + { + "id": "38275", + "ident": "YCAM", + "type": "small_airport", + "name": "Cannington Station Airport", + "latitude_deg": "-21.875", + "longitude_deg": "140.89999389648438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCAM" + }, + { + "id": "38276", + "ident": "YCAN", + "type": "small_airport", + "name": "Cannon Hill Community Airport", + "latitude_deg": "-12.3549", + "longitude_deg": "132.94495", + "elevation_ft": "61", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Cannon Hill", + "scheduled_service": "no", + "gps_code": "YCAN" + }, + { + "id": "26941", + "ident": "YCAR", + "type": "medium_airport", + "name": "Carnarvon Airport", + "latitude_deg": "-24.880091", + "longitude_deg": "113.670752", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Carnarvon", + "scheduled_service": "yes", + "gps_code": "YCAR", + "iata_code": "CVQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carnarvon_Airport_(Western_Australia)" + }, + { + "id": "26942", + "ident": "YCAS", + "type": "small_airport", + "name": "Casino Airport", + "latitude_deg": "-28.881304", + "longitude_deg": "153.060724", + "elevation_ft": "86", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCAS", + "iata_code": "CSI" + }, + { + "id": "26943", + "ident": "YCBA", + "type": "medium_airport", + "name": "Cobar Airport", + "latitude_deg": "-31.538299560546875", + "longitude_deg": "145.79400634765625", + "elevation_ft": "724", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "yes", + "gps_code": "YCBA", + "iata_code": "CAZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cobar_Airport" + }, + { + "id": "26944", + "ident": "YCBB", + "type": "medium_airport", + "name": "Coonabarabran Airport", + "latitude_deg": "-31.3325", + "longitude_deg": "149.266998", + "elevation_ft": "2117", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCBB", + "iata_code": "COJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coonabarabran_Airport" + }, + { + "id": "30814", + "ident": "YCBE", + "type": "small_airport", + "name": "Canobie Airport", + "latitude_deg": "-19.479400634799998", + "longitude_deg": "140.927001953", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Canobie", + "scheduled_service": "no", + "gps_code": "YCBE", + "iata_code": "CBY" + }, + { + "id": "26945", + "ident": "YCBG", + "type": "small_airport", + "name": "Hobart Cambridge Airport", + "latitude_deg": "-42.82638", + "longitude_deg": "147.478637", + "elevation_ft": "67", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YCBG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cambridge_Aerodrome" + }, + { + "id": "345624", + "ident": "YCBH", + "type": "heliport", + "name": "Cairns Base Hospital Heliport.", + "latitude_deg": "-16.911465", + "longitude_deg": "145.768924", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Cairns", + "scheduled_service": "no", + "gps_code": "YCBH" + }, + { + "id": "27440", + "ident": "YCBN", + "type": "small_airport", + "name": "Cape Barren Island Airport", + "latitude_deg": "-40.391700744628906", + "longitude_deg": "148.01699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YCBN", + "iata_code": "CBI" + }, + { + "id": "27441", + "ident": "YCBO", + "type": "small_airport", + "name": "Cape Borda Airport", + "latitude_deg": "-35.75669860839844", + "longitude_deg": "136.59800720214844", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YCBO" + }, + { + "id": "26946", + "ident": "YCBP", + "type": "medium_airport", + "name": "Coober Pedy Airport", + "latitude_deg": "-29.038312", + "longitude_deg": "134.722166", + "elevation_ft": "740", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Coober Pedy", + "scheduled_service": "yes", + "gps_code": "YCBP", + "iata_code": "CPD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coober_Pedy_Airport" + }, + { + "id": "27442", + "ident": "YCBR", + "type": "small_airport", + "name": "Collarenebri Airport", + "latitude_deg": "-29.523239", + "longitude_deg": "148.578243", + "elevation_ft": "152", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCBR", + "iata_code": "CRB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Collarenebri_Airport" + }, + { + "id": "27443", + "ident": "YCBY", + "type": "small_airport", + "name": "Daintree Airport", + "latitude_deg": "-16.219341278076172", + "longitude_deg": "145.4247283935547", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCBY" + }, + { + "id": "26947", + "ident": "YCCA", + "type": "medium_airport", + "name": "Chinchilla Airport", + "latitude_deg": "-26.774999618530273", + "longitude_deg": "150.61700439453125", + "elevation_ft": "1028", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCCA", + "iata_code": "CCL" + }, + { + "id": "38277", + "ident": "YCCF", + "type": "small_airport", + "name": "Cape Crawford Airport", + "latitude_deg": "-16.687676", + "longitude_deg": "135.730097", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "McArthur", + "scheduled_service": "no", + "gps_code": "YCCF" + }, + { + "id": "38278", + "ident": "YCCK", + "type": "small_airport", + "name": "Canteen Creek Airport", + "latitude_deg": "-20.650800704956055", + "longitude_deg": "135.5850067138672", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YCCK" + }, + { + "id": "27444", + "ident": "YCCT", + "type": "small_airport", + "name": "Coconut Island Airport", + "latitude_deg": "-10.050000190734863", + "longitude_deg": "143.07000732421875", + "elevation_ft": "3", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YCCT", + "iata_code": "CNC" + }, + { + "id": "26948", + "ident": "YCCY", + "type": "medium_airport", + "name": "Cloncurry Airport", + "latitude_deg": "-20.668600082399998", + "longitude_deg": "140.503997803", + "elevation_ft": "616", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Cloncurry", + "scheduled_service": "yes", + "gps_code": "YCCY", + "iata_code": "CNJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cloncurry_Airport" + }, + { + "id": "38279", + "ident": "YCDB", + "type": "small_airport", + "name": "Coondambo Airport", + "latitude_deg": "-31.053413", + "longitude_deg": "135.864401", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Glendambo", + "scheduled_service": "no", + "gps_code": "YCDB" + }, + { + "id": "27445", + "ident": "YCDE", + "type": "small_airport", + "name": "Cobden airport", + "latitude_deg": "-38.323419", + "longitude_deg": "143.056626", + "elevation_ft": "460", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Camperdown", + "scheduled_service": "no", + "gps_code": "YCDE" + }, + { + "id": "27446", + "ident": "YCDH", + "type": "small_airport", + "name": "Cadney Homestead Airport", + "latitude_deg": "-27.907286", + "longitude_deg": "134.056377", + "elevation_ft": "287", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Coober Pedy", + "scheduled_service": "no", + "gps_code": "YCDH" + }, + { + "id": "27447", + "ident": "YCDL", + "type": "heliport", + "name": "Cradle Mountain Helipad", + "latitude_deg": "-41.577363", + "longitude_deg": "145.941261", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Middlesex", + "scheduled_service": "no", + "gps_code": "YCDL" + }, + { + "id": "26949", + "ident": "YCDO", + "type": "small_airport", + "name": "Condobolin Airport", + "latitude_deg": "-33.06565", + "longitude_deg": "147.21316", + "elevation_ft": "650", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCDO", + "iata_code": "CBX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Condobolin_Airport" + }, + { + "id": "27448", + "ident": "YCDR", + "type": "small_airport", + "name": "Caloundra Airport", + "latitude_deg": "-26.80336", + "longitude_deg": "153.104975", + "elevation_ft": "12", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Caloundra", + "scheduled_service": "no", + "gps_code": "YCDR", + "iata_code": "CUD" + }, + { + "id": "27449", + "ident": "YCDS", + "type": "small_airport", + "name": "Childers Airport", + "latitude_deg": "-25.2530800689", + "longitude_deg": "152.335395813", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCDS" + }, + { + "id": "27450", + "ident": "YCDT", + "type": "small_airport", + "name": "Carandotta Airport", + "latitude_deg": "-21.966699600219727", + "longitude_deg": "138.61700439453125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCDT" + }, + { + "id": "26950", + "ident": "YCDU", + "type": "medium_airport", + "name": "Ceduna Airport", + "latitude_deg": "-32.13059997558594", + "longitude_deg": "133.7100067138672", + "elevation_ft": "77", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "yes", + "gps_code": "YCDU", + "iata_code": "CED", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ceduna_Airport" + }, + { + "id": "38280", + "ident": "YCDV", + "type": "small_airport", + "name": "Caldervale Station Airport", + "latitude_deg": "-25.108299255371094", + "longitude_deg": "146.83299255371094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCDV" + }, + { + "id": "26951", + "ident": "YCEE", + "type": "medium_airport", + "name": "Cleve Airport", + "latitude_deg": "-33.70970153808594", + "longitude_deg": "136.5050048828125", + "elevation_ft": "589", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YCEE", + "iata_code": "CVC" + }, + { + "id": "32721", + "ident": "YCEL", + "type": "small_airport", + "name": "Capella Airport", + "latitude_deg": "-23.095104", + "longitude_deg": "148.006241", + "elevation_ft": "826", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Capella", + "scheduled_service": "no", + "gps_code": "YCEL" + }, + { + "id": "27451", + "ident": "YCEM", + "type": "small_airport", + "name": "Coldstream Airport", + "latitude_deg": "-37.72766876220703", + "longitude_deg": "145.4083709716797", + "elevation_ft": "76", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Coldstream", + "scheduled_service": "no", + "gps_code": "YCEM" + }, + { + "id": "38281", + "ident": "YCES", + "type": "small_airport", + "name": "Ceres Airport", + "latitude_deg": "-38.14830017089844", + "longitude_deg": "144.25799560546875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YCES" + }, + { + "id": "315831", + "ident": "YCF", + "type": "seaplane_base", + "name": "Cortes Bay Water Aerodrome", + "latitude_deg": "50.063", + "longitude_deg": "-124.930002", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Cortes Bay", + "scheduled_service": "no", + "iata_code": "YCF", + "keywords": "AM6" + }, + { + "id": "27452", + "ident": "YCFD", + "type": "small_airport", + "name": "Camfield Airport", + "latitude_deg": "-17.021699905395508", + "longitude_deg": "131.32699584960938", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YCFD", + "iata_code": "CFI" + }, + { + "id": "27453", + "ident": "YCFF", + "type": "closed", + "name": "Dadswells Bridge Airport", + "latitude_deg": "-36.925057", + "longitude_deg": "142.504821", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Dadswells Bridge", + "scheduled_service": "no", + "gps_code": "YCFF" + }, + { + "id": "38282", + "ident": "YCFH", + "type": "small_airport", + "name": "Clifton Hills Airport", + "latitude_deg": "-27.018299102800004", + "longitude_deg": "138.891998291", + "elevation_ft": "105", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Clifton Hills", + "scheduled_service": "no", + "gps_code": "YCFH", + "iata_code": "CFH" + }, + { + "id": "27454", + "ident": "YCFL", + "type": "small_airport", + "name": "Cape Flattery Airport", + "latitude_deg": "-14.970832", + "longitude_deg": "145.311667", + "elevation_ft": "3609", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCFL", + "iata_code": "CQP" + }, + { + "id": "38283", + "ident": "YCFN", + "type": "small_airport", + "name": "Clifton Airport", + "latitude_deg": "-27.927507", + "longitude_deg": "151.848178", + "elevation_ft": "1450", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCFN", + "home_link": "http://loneeagleflyingschool.org.au/home.htm" + }, + { + "id": "27132", + "ident": "YCFS", + "type": "medium_airport", + "name": "Coffs Harbour Airport", + "latitude_deg": "-30.320601", + "longitude_deg": "153.115997", + "elevation_ft": "18", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Coffs Harbour", + "scheduled_service": "yes", + "gps_code": "YCFS", + "iata_code": "CFS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coffs_Harbour_Airport", + "keywords": "RAAF Base Coffs Harbour" + }, + { + "id": "27455", + "ident": "YCGH", + "type": "small_airport", + "name": "Clonagh Airport", + "latitude_deg": "-20.13330078125", + "longitude_deg": "140.68299865722656", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCGH" + }, + { + "id": "27456", + "ident": "YCGI", + "type": "small_airport", + "name": "Carnegie Station Airport", + "latitude_deg": "-25.79746", + "longitude_deg": "122.942154", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YCGI" + }, + { + "id": "429780", + "ident": "YCGL", + "type": "small_airport", + "name": "Cungelella Airport", + "latitude_deg": "-24.6853", + "longitude_deg": "147.15701", + "elevation_ft": "1302", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Mantuan Downs", + "scheduled_service": "no", + "gps_code": "YCGL" + }, + { + "id": "26952", + "ident": "YCGO", + "type": "small_airport", + "name": "Chillagoe Airport", + "latitude_deg": "-17.1427993774", + "longitude_deg": "144.529006958", + "elevation_ft": "1110", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCGO", + "iata_code": "LLG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chillagoe_Airport" + }, + { + "id": "38284", + "ident": "YCHB", + "type": "small_airport", + "name": "Cherrabah Airport", + "latitude_deg": "-28.4301", + "longitude_deg": "152.08895", + "elevation_ft": "2228", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Cherrabah Homestead Resort", + "scheduled_service": "no", + "gps_code": "YCHB", + "iata_code": "CRH" + }, + { + "id": "315620", + "ident": "YCHK", + "type": "small_airport", + "name": "Christmas Creek Airport", + "latitude_deg": "-22.3543", + "longitude_deg": "119.6426", + "elevation_ft": "1462", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Christmas Creek Mine", + "scheduled_service": "yes", + "gps_code": "YCHK", + "iata_code": "CKW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Graeme_Rowley_Aerodrome", + "keywords": "Graeme Rowley Aerodrome" + }, + { + "id": "27457", + "ident": "YCHL", + "type": "small_airport", + "name": "Charlton Airport", + "latitude_deg": "-36.25", + "longitude_deg": "143.300003", + "elevation_ft": "458", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Charlton", + "scheduled_service": "no", + "gps_code": "YCHL" + }, + { + "id": "38285", + "ident": "YCHR", + "type": "small_airport", + "name": "Childra Airport", + "latitude_deg": "-31.700000762939453", + "longitude_deg": "134.83299255371094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YCHR" + }, + { + "id": "26953", + "ident": "YCHT", + "type": "small_airport", + "name": "Charters Towers Airport", + "latitude_deg": "-20.043100357055664", + "longitude_deg": "146.2729949951172", + "elevation_ft": "955", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCHT", + "iata_code": "CXT" + }, + { + "id": "27458", + "ident": "YCIG", + "type": "small_airport", + "name": "Corrigin Airport", + "latitude_deg": "-32.337981", + "longitude_deg": "117.827425", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YCIG" + }, + { + "id": "26954", + "ident": "YCIN", + "type": "medium_airport", + "name": "RAAF Base Curtin", + "latitude_deg": "-17.5814", + "longitude_deg": "123.828003", + "elevation_ft": "300", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Derby", + "scheduled_service": "no", + "gps_code": "YCIN", + "iata_code": "DCN", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAAF_Curtin" + }, + { + "id": "27459", + "ident": "YCJU", + "type": "small_airport", + "name": "Conjuboy Airport", + "latitude_deg": "-18.68515", + "longitude_deg": "144.748292", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCJU" + }, + { + "id": "38286", + "ident": "YCKA", + "type": "small_airport", + "name": "Curdimurka Airport", + "latitude_deg": "-29.476699829101562", + "longitude_deg": "137.08799743652344", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YCKA" + }, + { + "id": "27460", + "ident": "YCKD", + "type": "small_airport", + "name": "Clarke Island Airport", + "latitude_deg": "-40.516700744628906", + "longitude_deg": "148.13299560546875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YCKD" + }, + { + "id": "27461", + "ident": "YCKI", + "type": "small_airport", + "name": "Croker Island Airport", + "latitude_deg": "-11.164999961853027", + "longitude_deg": "132.48300170898438", + "elevation_ft": "16", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YCKI", + "iata_code": "CKI" + }, + { + "id": "26955", + "ident": "YCKN", + "type": "medium_airport", + "name": "Cooktown Airport", + "latitude_deg": "-15.443649", + "longitude_deg": "145.183221", + "elevation_ft": "26", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YCKN", + "iata_code": "CTN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cooktown_Airport" + }, + { + "id": "27462", + "ident": "YCKY", + "type": "small_airport", + "name": "Cocklebiddy Airport", + "latitude_deg": "-32.042741", + "longitude_deg": "126.09122", + "elevation_ft": "290", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YCKY" + }, + { + "id": "29789", + "ident": "YCLA", + "type": "small_airport", + "name": "Clare Station Airport", + "latitude_deg": "-33.406898498535156", + "longitude_deg": "143.94000244140625", + "elevation_ft": "266", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCLA" + }, + { + "id": "333589", + "ident": "YCLB", + "type": "small_airport", + "name": "Claremont Airbase", + "latitude_deg": "-34.992641", + "longitude_deg": "138.927215", + "elevation_ft": "1494", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Brukunga", + "scheduled_service": "no", + "gps_code": "YCLB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Claremont_Airbase" + }, + { + "id": "27463", + "ident": "YCLE", + "type": "small_airport", + "name": "Callendale Airport", + "latitude_deg": "-37.24330139160156", + "longitude_deg": "140.44500732421875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YCLE" + }, + { + "id": "38287", + "ident": "YCLG", + "type": "small_airport", + "name": "Coolgardie Airport (Bullabulling)?", + "latitude_deg": "-30.97645", + "longitude_deg": "121.079979", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YCLG" + }, + { + "id": "38288", + "ident": "YCLM", + "type": "small_airport", + "name": "Collymongle Airport", + "latitude_deg": "-29.478408", + "longitude_deg": "148.78649", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCLM" + }, + { + "id": "27464", + "ident": "YCLQ", + "type": "small_airport", + "name": "Cape Leveque Airport", + "latitude_deg": "-16.401203", + "longitude_deg": "122.932148", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Waterbank", + "scheduled_service": "no", + "gps_code": "YCLQ" + }, + { + "id": "38289", + "ident": "YCLT", + "type": "small_airport", + "name": "Collector Airport", + "latitude_deg": "-34.88330078125", + "longitude_deg": "149.41700744628906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCLT" + }, + { + "id": "27465", + "ident": "YCLY", + "type": "small_airport", + "name": "Coleambally Airport", + "latitude_deg": "-34.802158", + "longitude_deg": "145.846664", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCLY" + }, + { + "id": "27466", + "ident": "YCMH", + "type": "small_airport", + "name": "Camden Haven Airport", + "latitude_deg": "-31.665000915527344", + "longitude_deg": "152.74200439453125", + "elevation_ft": "2", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCMH" + }, + { + "id": "27467", + "ident": "YCMK", + "type": "small_airport", + "name": "Camel Creek Airport", + "latitude_deg": "-18.857807", + "longitude_deg": "145.476481", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCMK" + }, + { + "id": "38290", + "ident": "YCMM", + "type": "small_airport", + "name": "Cummins Town Airport", + "latitude_deg": "-34.253133", + "longitude_deg": "135.709616", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YCMM" + }, + { + "id": "26956", + "ident": "YCMT", + "type": "medium_airport", + "name": "Clermont Airport", + "latitude_deg": "-22.773099899291992", + "longitude_deg": "147.62100219726562", + "elevation_ft": "908", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCMT", + "iata_code": "CMQ" + }, + { + "id": "26957", + "ident": "YCMU", + "type": "medium_airport", + "name": "Cunnamulla Airport", + "latitude_deg": "-28.030000686645508", + "longitude_deg": "145.6219940185547", + "elevation_ft": "630", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YCMU", + "iata_code": "CMA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cunnamulla_Airport" + }, + { + "id": "27468", + "ident": "YCMW", + "type": "small_airport", + "name": "Camooweal Airport", + "latitude_deg": "-19.911699295043945", + "longitude_deg": "138.125", + "elevation_ft": "241", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCMW", + "iata_code": "CML" + }, + { + "id": "29805", + "ident": "YCNA", + "type": "small_airport", + "name": "Corona Station Airport", + "latitude_deg": "-31.290800094604492", + "longitude_deg": "141.45199584960938", + "elevation_ft": "748", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCNA" + }, + { + "id": "27469", + "ident": "YCNF", + "type": "small_airport", + "name": "Camp Nifty Airport", + "latitude_deg": "-21.67169952392578", + "longitude_deg": "121.58699798583984", + "elevation_ft": "295", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YCNF", + "iata_code": "NIF" + }, + { + "id": "27470", + "ident": "YCNG", + "type": "small_airport", + "name": "Cooranga Airport", + "latitude_deg": "-36.81999969482422", + "longitude_deg": "140.2729949951172", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YCNG" + }, + { + "id": "38291", + "ident": "YCNH", + "type": "small_airport", + "name": "Carnarmah Airport", + "latitude_deg": "-29.68374", + "longitude_deg": "115.893662", + "elevation_ft": "925", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Carnarmah", + "scheduled_service": "no", + "gps_code": "YCNH" + }, + { + "id": "26958", + "ident": "YCNK", + "type": "small_airport", + "name": "Cessnock Airport", + "latitude_deg": "-32.787498", + "longitude_deg": "151.341995", + "elevation_ft": "210", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCNK", + "iata_code": "CES", + "home_link": "http://www.cessnock.nsw.gov.au/community/business/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cessnock_Airport" + }, + { + "id": "26959", + "ident": "YCNM", + "type": "medium_airport", + "name": "Coonamble Airport", + "latitude_deg": "-30.980946", + "longitude_deg": "148.377833", + "elevation_ft": "604", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "yes", + "gps_code": "YCNM", + "iata_code": "CNB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coonamble_Airport" + }, + { + "id": "27472", + "ident": "YCNN", + "type": "small_airport", + "name": "Coonana Airport", + "latitude_deg": "-31.016700744628906", + "longitude_deg": "123.16699981689453", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YCNN" + }, + { + "id": "38292", + "ident": "YCNO", + "type": "small_airport", + "name": "Conargo Airport", + "latitude_deg": "-35.313771", + "longitude_deg": "145.106214", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCNO" + }, + { + "id": "27473", + "ident": "YCNQ", + "type": "small_airport", + "name": "Coonawarra Airport", + "latitude_deg": "-37.277187", + "longitude_deg": "140.811759", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YCNQ" + }, + { + "id": "27474", + "ident": "YCNR", + "type": "small_airport", + "name": "Cann River Airport", + "latitude_deg": "-37.516700744628906", + "longitude_deg": "149.16700744628906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YCNR" + }, + { + "id": "38293", + "ident": "YCNS", + "type": "small_airport", + "name": "Coniston Airport", + "latitude_deg": "-22.13330078125", + "longitude_deg": "132.5330047607422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YCNS" + }, + { + "id": "38294", + "ident": "YCNX", + "type": "small_airport", + "name": "Cooranga Airport", + "latitude_deg": "-29.066699981689453", + "longitude_deg": "150.76699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCNX" + }, + { + "id": "26960", + "ident": "YCNY", + "type": "small_airport", + "name": "Century Mine Airport", + "latitude_deg": "-18.759331", + "longitude_deg": "138.709651", + "elevation_ft": "416", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCNY" + }, + { + "id": "32085", + "ident": "YCOD", + "type": "small_airport", + "name": "Cordillo Downs Airport", + "latitude_deg": "-26.74530029296875", + "longitude_deg": "140.63800048828125", + "elevation_ft": "125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Cordillo Downs", + "scheduled_service": "no", + "gps_code": "YCOD", + "iata_code": "ODL" + }, + { + "id": "26961", + "ident": "YCOE", + "type": "medium_airport", + "name": "Coen Airport", + "latitude_deg": "-13.761133", + "longitude_deg": "143.113311", + "elevation_ft": "532", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Coen", + "scheduled_service": "yes", + "gps_code": "YCOE", + "iata_code": "CUQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coen_Airport" + }, + { + "id": "27476", + "ident": "YCOF", + "type": "small_airport", + "name": "Coffin Bay Airport", + "latitude_deg": "-34.589022", + "longitude_deg": "135.509115", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Coffin Bay", + "scheduled_service": "no", + "gps_code": "YCOF" + }, + { + "id": "38295", + "ident": "YCOG", + "type": "small_airport", + "name": "Coongan Airport", + "latitude_deg": "-20.683300018310547", + "longitude_deg": "119.66699981689453", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YCOG" + }, + { + "id": "27477", + "ident": "YCOH", + "type": "small_airport", + "name": "Cohuna Airport", + "latitude_deg": "-35.826478", + "longitude_deg": "144.213812", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YCOH" + }, + { + "id": "27478", + "ident": "YCOI", + "type": "small_airport", + "name": "Collie Airport", + "latitude_deg": "-33.3666992188", + "longitude_deg": "116.217002869", + "elevation_ft": "818", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Collie", + "scheduled_service": "no", + "gps_code": "YCOI", + "iata_code": "CIE" + }, + { + "id": "27479", + "ident": "YCOL", + "type": "small_airport", + "name": "Coleraine Airport", + "latitude_deg": "-37.599998474121094", + "longitude_deg": "141.6999969482422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YCOL" + }, + { + "id": "26962", + "ident": "YCOM", + "type": "medium_airport", + "name": "Cooma Snowy Mountains Airport", + "latitude_deg": "-36.300445", + "longitude_deg": "148.972408", + "elevation_ft": "3088", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Cooma", + "scheduled_service": "yes", + "gps_code": "YCOM", + "iata_code": "OOM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cooma_-_Snowy_Mountains_Airport" + }, + { + "id": "27480", + "ident": "YCOO", + "type": "small_airport", + "name": "Cooinda Airport", + "latitude_deg": "-12.903300285339355", + "longitude_deg": "132.53199768066406", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YCOO", + "iata_code": "CDA" + }, + { + "id": "309196", + "ident": "YCOP", + "type": "heliport", + "name": "Copmanhurst Oval Helipad", + "latitude_deg": "-29.5892", + "longitude_deg": "152.77316", + "elevation_ft": "63", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Copmanhurst", + "scheduled_service": "no", + "local_code": "OZHIF", + "keywords": "YCOP" + }, + { + "id": "26963", + "ident": "YCOR", + "type": "medium_airport", + "name": "Corowa Airport", + "latitude_deg": "-35.994701", + "longitude_deg": "146.356995", + "elevation_ft": "469", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCOR", + "iata_code": "CWW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Corowa_Airport" + }, + { + "id": "38296", + "ident": "YCOS", + "type": "small_airport", + "name": "Cosmo Newberry Airport", + "latitude_deg": "-27.985963", + "longitude_deg": "122.904853", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Cosmo Newberry", + "scheduled_service": "no", + "gps_code": "YCOS" + }, + { + "id": "27481", + "ident": "YCOY", + "type": "small_airport", + "name": "Coral Bay Airport", + "latitude_deg": "-23.128851", + "longitude_deg": "113.780626", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YCOY" + }, + { + "id": "38297", + "ident": "YCPD", + "type": "small_airport", + "name": "Cape Don Airport", + "latitude_deg": "-11.298299789428711", + "longitude_deg": "131.82699584960938", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YCPD" + }, + { + "id": "38298", + "ident": "YCPG", + "type": "small_airport", + "name": "Coppins Gap Airport", + "latitude_deg": "-20.950000762939453", + "longitude_deg": "120.03299713134766", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YCPG" + }, + { + "id": "38299", + "ident": "YCPH", + "type": "small_airport", + "name": "Copper Hills Airport", + "latitude_deg": "-27.978300094604492", + "longitude_deg": "134.31700134277344", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YCPH" + }, + { + "id": "27482", + "ident": "YCPN", + "type": "small_airport", + "name": "Carpentaria Downs Airport", + "latitude_deg": "-18.718481", + "longitude_deg": "144.313028", + "elevation_ft": "1585", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Carpentaria Downs", + "scheduled_service": "no", + "gps_code": "YCPN", + "iata_code": "CFP" + }, + { + "id": "333588", + "ident": "YCPT", + "type": "small_airport", + "name": "Carrapateena Airport", + "latitude_deg": "-31.30831", + "longitude_deg": "137.443396", + "elevation_ft": "672", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Carrapateena mine", + "scheduled_service": "no", + "gps_code": "YCPT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Carrapateena_Airport" + }, + { + "id": "27483", + "ident": "YCRA", + "type": "small_airport", + "name": "Carinda Airport", + "latitude_deg": "-30.45829963684082", + "longitude_deg": "147.70799255371094", + "elevation_ft": "131", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCRA" + }, + { + "id": "430029", + "ident": "YCRD", + "type": "small_airport", + "name": "Currandooley Airport", + "latitude_deg": "-35.184331", + "longitude_deg": "149.485688", + "elevation_ft": "2251", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Currandooley", + "scheduled_service": "no", + "gps_code": "YCRD" + }, + { + "id": "26964", + "ident": "YCRG", + "type": "medium_airport", + "name": "Corryong Airport", + "latitude_deg": "-36.18280029296875", + "longitude_deg": "147.88800048828125", + "elevation_ft": "963", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YCRG", + "iata_code": "CYG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Corryong_Airport" + }, + { + "id": "38301", + "ident": "YCRK", + "type": "small_airport", + "name": "Christmas Creek Station Airport", + "latitude_deg": "-18.8728", + "longitude_deg": "125.934", + "elevation_ft": "540", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Wangkat Jungka", + "scheduled_service": "no", + "gps_code": "YCRK", + "iata_code": "CXQ" + }, + { + "id": "27484", + "ident": "YCRL", + "type": "small_airport", + "name": "Crookwell Airport", + "latitude_deg": "-34.499961", + "longitude_deg": "149.461377", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Crookwell", + "scheduled_service": "no", + "gps_code": "YCRL" + }, + { + "id": "38302", + "ident": "YCRN", + "type": "small_airport", + "name": "Cranbrook Airport", + "latitude_deg": "-34.28329849243164", + "longitude_deg": "117.55000305175781", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YCRN" + }, + { + "id": "27485", + "ident": "YCRT", + "type": "small_airport", + "name": "Carrieton Airport", + "latitude_deg": "-32.41669845581055", + "longitude_deg": "138.51699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YCRT" + }, + { + "id": "27486", + "ident": "YCRY", + "type": "small_airport", + "name": "Croydon Airport", + "latitude_deg": "-18.225000381469727", + "longitude_deg": "142.25799560546875", + "elevation_ft": "107", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCRY", + "iata_code": "CDQ" + }, + { + "id": "29762", + "ident": "YCSI", + "type": "small_airport", + "name": "Cassilis Rotherw Airport", + "latitude_deg": "-32.002201080322266", + "longitude_deg": "149.96099853515625", + "elevation_ft": "1545", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCSI" + }, + { + "id": "348022", + "ident": "YCSK", + "type": "small_airport", + "name": "Casey Station Skiway", + "latitude_deg": "-66.288056", + "longitude_deg": "110.7575", + "elevation_ft": "1178", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Casey Station", + "scheduled_service": "no", + "gps_code": "YCSK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Casey_Station" + }, + { + "id": "38303", + "ident": "YCSL", + "type": "small_airport", + "name": "Consuelo Airport", + "latitude_deg": "-24.652244", + "longitude_deg": "148.4697", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCSL" + }, + { + "id": "38304", + "ident": "YCSP", + "type": "small_airport", + "name": "Curtin Springs Airport", + "latitude_deg": "-25.333921", + "longitude_deg": "131.759308", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YCSP" + }, + { + "id": "352696", + "ident": "YCST", + "type": "small_airport", + "name": "Carcuma Airport", + "latitude_deg": "-35.628419", + "longitude_deg": "140.20473", + "elevation_ft": "203", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Carcory Station", + "scheduled_service": "no", + "gps_code": "YCST" + }, + { + "id": "27487", + "ident": "YCSV", + "type": "small_airport", + "name": "Collinsville Airport", + "latitude_deg": "-20.59670066833496", + "longitude_deg": "147.86000061035156", + "elevation_ft": "180", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCSV", + "iata_code": "KCE" + }, + { + "id": "38305", + "ident": "YCTC", + "type": "small_airport", + "name": "Cotten Creek Airport", + "latitude_deg": "-22.799999237060547", + "longitude_deg": "122.58300018310547", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YCTC" + }, + { + "id": "27488", + "ident": "YCTH", + "type": "small_airport", + "name": "Chatsworth Airport", + "latitude_deg": "-21.966699600219727", + "longitude_deg": "140.3000030517578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCTH" + }, + { + "id": "38306", + "ident": "YCTI", + "type": "small_airport", + "name": "Cockatoo Island Airport", + "latitude_deg": "-16.096668", + "longitude_deg": "123.612097", + "elevation_ft": "372", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Willare", + "scheduled_service": "no", + "gps_code": "YCTI" + }, + { + "id": "26965", + "ident": "YCTM", + "type": "medium_airport", + "name": "Cootamundra Airport", + "latitude_deg": "-34.624283", + "longitude_deg": "148.036641", + "elevation_ft": "1110", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCTM", + "iata_code": "CMD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cootamundra_Airport" + }, + { + "id": "27489", + "ident": "YCTN", + "type": "small_airport", + "name": "Casterton Airport", + "latitude_deg": "-37.599998474121094", + "longitude_deg": "141.39999389648438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YCTN" + }, + { + "id": "38307", + "ident": "YCTS", + "type": "small_airport", + "name": "Calton Hills Airport", + "latitude_deg": "-20.13330078125", + "longitude_deg": "139.41700744628906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCTS" + }, + { + "id": "27491", + "ident": "YCUA", + "type": "small_airport", + "name": "Cudal Airport", + "latitude_deg": "-33.278026", + "longitude_deg": "148.768708", + "elevation_ft": "491", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCUA", + "iata_code": "CUG" + }, + { + "id": "38308", + "ident": "YCUD", + "type": "small_airport", + "name": "Cuddapan Airport", + "latitude_deg": "-25.59000015258789", + "longitude_deg": "141.50799560546875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCUD" + }, + { + "id": "27492", + "ident": "YCUE", + "type": "small_airport", + "name": "Cue Airport", + "latitude_deg": "-27.4508", + "longitude_deg": "117.917515", + "elevation_ft": "442", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YCUE", + "iata_code": "CUY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cue_Airport" + }, + { + "id": "26966", + "ident": "YCUN", + "type": "small_airport", + "name": "Cunderdin Airport", + "latitude_deg": "-31.62220001220703", + "longitude_deg": "117.21700286865234", + "elevation_ft": "705", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YCUN" + }, + { + "id": "27493", + "ident": "YCUR", + "type": "small_airport", + "name": "Cabramurra Airport", + "latitude_deg": "-35.92688751220703", + "longitude_deg": "148.39254760742188", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Cabramurra Township", + "scheduled_service": "no", + "gps_code": "YCUR" + }, + { + "id": "26967", + "ident": "YCUS", + "type": "small_airport", + "name": "Cummins Airport", + "latitude_deg": "-34.215147", + "longitude_deg": "135.634455", + "elevation_ft": "197", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YCUS" + }, + { + "id": "27494", + "ident": "YCUT", + "type": "small_airport", + "name": "Cuthero Airport", + "latitude_deg": "-32.959355", + "longitude_deg": "142.055554", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCUT" + }, + { + "id": "317168", + "ident": "YCVA", + "type": "small_airport", + "name": "Clare Valley Aerodrome", + "latitude_deg": "-33.710292", + "longitude_deg": "138.584916", + "elevation_ft": "1120", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Clare", + "scheduled_service": "no", + "gps_code": "YCVA", + "home_link": "http://www.clarevalleyaerodrome.com.au", + "wikipedia_link": "https://en.wikipedia.org/wiki/Clare_Valley_Aerodrome" + }, + { + "id": "310099", + "ident": "YCVB", + "type": "heliport", + "name": "St Vincents - Victoria Barracks Helipad", + "latitude_deg": "-33.88525", + "longitude_deg": "151.22343", + "elevation_ft": "197", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Sydney", + "scheduled_service": "no", + "gps_code": "YCVB" + }, + { + "id": "27495", + "ident": "YCVG", + "type": "small_airport", + "name": "Calvin Grove Airport", + "latitude_deg": "-34.692333", + "longitude_deg": "138.580899", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YCVG" + }, + { + "id": "430064", + "ident": "YCVN", + "type": "heliport", + "name": "FPSO Challis Venture Helipad", + "latitude_deg": "-12.133333", + "longitude_deg": "125.016667", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-U-A", + "municipality": "Timor Sea", + "scheduled_service": "no", + "gps_code": "YCVN", + "home_link": "https://web.archive.org/web/20160808181608/https://www.ihi.co.jp/offshore/challisventure_e.htm" + }, + { + "id": "27496", + "ident": "YCVS", + "type": "small_airport", + "name": "Cervantes Airport", + "latitude_deg": "-30.48538", + "longitude_deg": "115.085642", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YCVS" + }, + { + "id": "29801", + "ident": "YCWA", + "type": "small_airport", + "name": "Coondewanna Airport", + "latitude_deg": "-22.96669960022", + "longitude_deg": "118.81300354004", + "elevation_ft": "2300", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Coondewanna", + "scheduled_service": "no", + "gps_code": "YCWA", + "iata_code": "CJF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coondewanna_Airport" + }, + { + "id": "38309", + "ident": "YCWE", + "type": "small_airport", + "name": "Cape Wessels Airport", + "latitude_deg": "-11.003162", + "longitude_deg": "136.759367", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YCWE" + }, + { + "id": "38310", + "ident": "YCWH", + "type": "small_airport", + "name": "Commonwealth Hill Airport", + "latitude_deg": "-29.957231", + "longitude_deg": "134.151789", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YCWH" + }, + { + "id": "29808", + "ident": "YCWI", + "type": "small_airport", + "name": "Cowarie Airport", + "latitude_deg": "-27.711700439453125", + "longitude_deg": "138.3280029296875", + "elevation_ft": "52", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YCWI", + "iata_code": "CWR" + }, + { + "id": "27497", + "ident": "YCWL", + "type": "small_airport", + "name": "Cowell Airport", + "latitude_deg": "-33.66669845581055", + "longitude_deg": "136.89199829101562", + "elevation_ft": "39", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YCWL", + "iata_code": "CCW" + }, + { + "id": "38311", + "ident": "YCWN", + "type": "small_airport", + "name": "Corowa Downs Airport", + "latitude_deg": "-26.466699600219727", + "longitude_deg": "143.35000610351562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCWN" + }, + { + "id": "38312", + "ident": "YCWO", + "type": "small_airport", + "name": "Chatsworth Airport", + "latitude_deg": "-37.852763", + "longitude_deg": "142.620993", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YCWO" + }, + { + "id": "26968", + "ident": "YCWR", + "type": "medium_airport", + "name": "Cowra Airport", + "latitude_deg": "-33.846894", + "longitude_deg": "148.648007", + "elevation_ft": "966", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCWR", + "iata_code": "CWT", + "home_link": "https://www.cowracouncil.com.au/Facilities/Airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cowra_Airport" + }, + { + "id": "27498", + "ident": "YCWS", + "type": "small_airport", + "name": "Cowes Airport", + "latitude_deg": "-38.50830078125", + "longitude_deg": "145.21299743652344", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YCWS" + }, + { + "id": "29754", + "ident": "YCWW", + "type": "small_airport", + "name": "Canowindra Airport", + "latitude_deg": "-33.54280090332031", + "longitude_deg": "148.66299438476562", + "elevation_ft": "1073", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YCWW" + }, + { + "id": "27499", + "ident": "YCWY", + "type": "small_airport", + "name": "Coolawanyah Airport", + "latitude_deg": "-21.7946", + "longitude_deg": "117.755", + "elevation_ft": "1195", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Coolawanyah Station", + "scheduled_service": "no", + "gps_code": "YCWY", + "iata_code": "COY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Coolawanyah_Station_Airport" + }, + { + "id": "27500", + "ident": "YCXA", + "type": "small_airport", + "name": "Cooloola Village Airpark", + "latitude_deg": "-25.977335", + "longitude_deg": "153.003759", + "elevation_ft": "9", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCXA" + }, + { + "id": "38313", + "ident": "YCYT", + "type": "small_airport", + "name": "Crystal Brook Airport", + "latitude_deg": "-17.38330078125", + "longitude_deg": "144.4499969482422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YCYT" + }, + { + "id": "27501", + "ident": "YDAG", + "type": "small_airport", + "name": "Dagworth Airport", + "latitude_deg": "-17.940673", + "longitude_deg": "143.594985", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YDAG" + }, + { + "id": "27502", + "ident": "YDAJ", + "type": "small_airport", + "name": "Dajarra Airport", + "latitude_deg": "-21.70829963684082", + "longitude_deg": "139.5330047607422", + "elevation_ft": "335", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YDAJ", + "iata_code": "DJR" + }, + { + "id": "27503", + "ident": "YDAL", + "type": "small_airport", + "name": "Dallas Airport", + "latitude_deg": "-34.56669998168945", + "longitude_deg": "146.18299865722656", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YDAL" + }, + { + "id": "38315", + "ident": "YDAR", + "type": "small_airport", + "name": "Darlington Airport", + "latitude_deg": "-42.5727408735", + "longitude_deg": "148.069181442", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YDAR" + }, + { + "id": "26969", + "ident": "YDAY", + "type": "small_airport", + "name": "Dalby Airport", + "latitude_deg": "-27.15530014038086", + "longitude_deg": "151.26699829101562", + "elevation_ft": "1137", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YDAY", + "iata_code": "DBY" + }, + { + "id": "26970", + "ident": "YDBI", + "type": "medium_airport", + "name": "Dirranbandi Airport", + "latitude_deg": "-28.587912", + "longitude_deg": "148.217161", + "elevation_ft": "567", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YDBI", + "iata_code": "DRN" + }, + { + "id": "27504", + "ident": "YDBR", + "type": "small_airport", + "name": "Dunbar Airport", + "latitude_deg": "-16.049999237060547", + "longitude_deg": "142.39999389648438", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YDBR", + "iata_code": "DNB" + }, + { + "id": "26971", + "ident": "YDBY", + "type": "medium_airport", + "name": "Derby Airport", + "latitude_deg": "-17.37193", + "longitude_deg": "123.66221", + "elevation_ft": "24", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Derby", + "scheduled_service": "no", + "gps_code": "YDBY", + "iata_code": "DRB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Derby_Airport_(Australia)" + }, + { + "id": "30909", + "ident": "YDDF", + "type": "small_airport", + "name": "Drumduff Airport", + "latitude_deg": "-16.0529994965", + "longitude_deg": "143.011993408", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Drumduff", + "scheduled_service": "no", + "gps_code": "YDDF", + "iata_code": "DFP" + }, + { + "id": "314876", + "ident": "YDDI", + "type": "heliport", + "name": "Daydream Island Helipad", + "latitude_deg": "-20.2603", + "longitude_deg": "148.8136", + "elevation_ft": "8", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Whitsundays", + "scheduled_service": "no", + "gps_code": "YDDI", + "local_code": "YDDI" + }, + { + "id": "309200", + "ident": "YDEA", + "type": "small_airport", + "name": "Delara Airfield", + "latitude_deg": "-13.66875", + "longitude_deg": "134.2911", + "elevation_ft": "488", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Bulman", + "scheduled_service": "no", + "gps_code": "YDEA", + "local_code": "DELR" + }, + { + "id": "29824", + "ident": "YDEG", + "type": "small_airport", + "name": "Delegate Airport", + "latitude_deg": "-37.0614013671875", + "longitude_deg": "148.94200134277344", + "elevation_ft": "2546", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YDEG" + }, + { + "id": "32722", + "ident": "YDEK", + "type": "small_airport", + "name": "Denmark Airport", + "latitude_deg": "-34.94499969482422", + "longitude_deg": "117.39700317382812", + "elevation_ft": "230", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Denmark", + "scheduled_service": "no", + "gps_code": "YDEK" + }, + { + "id": "38316", + "ident": "YDER", + "type": "small_airport", + "name": "Derrinallum Airport", + "latitude_deg": "-37.934166666699994", + "longitude_deg": "143.227777778", + "elevation_ft": "600", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YDER" + }, + { + "id": "27506", + "ident": "YDEV", + "type": "small_airport", + "name": "Devoncourt Airport", + "latitude_deg": "-21.216699600219727", + "longitude_deg": "140.23300170898438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YDEV" + }, + { + "id": "328221", + "ident": "YDFD", + "type": "small_airport", + "name": "Dexfield Park", + "latitude_deg": "-31.42166667", + "longitude_deg": "152.75833333", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Wauchope", + "scheduled_service": "no", + "gps_code": "YDFD", + "home_link": "http://www.dexfieldpark.com" + }, + { + "id": "302108", + "ident": "YDGA", + "type": "small_airport", + "name": "Dalgaranga Gold Mine Airport", + "latitude_deg": "-27.830277777800003", + "longitude_deg": "117.316388889", + "elevation_ft": "1459", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YDGA", + "iata_code": "DGD" + }, + { + "id": "38317", + "ident": "YDGI", + "type": "small_airport", + "name": "Dullingari Airport", + "latitude_deg": "-28.13330078125", + "longitude_deg": "140.8820037841797", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YDGI" + }, + { + "id": "38318", + "ident": "YDGN", + "type": "small_airport", + "name": "Doongan Airport", + "latitude_deg": "-15.386429", + "longitude_deg": "126.302235", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YDGN", + "iata_code": "DNG" + }, + { + "id": "27507", + "ident": "YDGR", + "type": "small_airport", + "name": "Dalgaranga Airport", + "latitude_deg": "-27.791440356099997", + "longitude_deg": "116.993322372", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YDGR" + }, + { + "id": "38319", + "ident": "YDGT", + "type": "small_airport", + "name": "Dalgety Downs Station Airport", + "latitude_deg": "-25.267532", + "longitude_deg": "116.221396", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YDGT" + }, + { + "id": "38320", + "ident": "YDGY", + "type": "small_airport", + "name": "De Grey Homestead Airport", + "latitude_deg": "-20.181313", + "longitude_deg": "119.19751", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YDGY" + }, + { + "id": "38321", + "ident": "YDHL", + "type": "small_airport", + "name": "Dhalinbuy Airport", + "latitude_deg": "-12.413043", + "longitude_deg": "136.38664", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YDHL" + }, + { + "id": "27508", + "ident": "YDIM", + "type": "small_airport", + "name": "Dimbulah Airport", + "latitude_deg": "-17.128651", + "longitude_deg": "145.09577", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YDIM" + }, + { + "id": "27509", + "ident": "YDIX", + "type": "small_airport", + "name": "Dixie Airport", + "latitude_deg": "-15.1174944348", + "longitude_deg": "143.316049576", + "elevation_ft": "580", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "New Dixie", + "scheduled_service": "no", + "gps_code": "YDIX", + "iata_code": "DXD" + }, + { + "id": "313378", + "ident": "YDKE", + "type": "heliport", + "name": "Drake Oval Helicopter Landing Site", + "latitude_deg": "-28.9257", + "longitude_deg": "152.3762", + "elevation_ft": "1604", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Drake", + "scheduled_service": "no", + "local_code": "OZHIG", + "keywords": "YDKE" + }, + { + "id": "27510", + "ident": "YDKI", + "type": "small_airport", + "name": "Dunk Island Airport", + "latitude_deg": "-17.93913", + "longitude_deg": "146.141447", + "elevation_ft": "6", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Dunk Island", + "scheduled_service": "no", + "gps_code": "YDKI", + "iata_code": "DKI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dunk_Island_Airport" + }, + { + "id": "27511", + "ident": "YDLC", + "type": "small_airport", + "name": "Dulacca Airport", + "latitude_deg": "-26.642113", + "longitude_deg": "149.730016", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YDLC" + }, + { + "id": "38322", + "ident": "YDLD", + "type": "small_airport", + "name": "Delmore Downs Airport", + "latitude_deg": "-22.458599090576172", + "longitude_deg": "134.88400268554688", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YDLD" + }, + { + "id": "38323", + "ident": "YDLH", + "type": "small_airport", + "name": "Dalhousie Airport", + "latitude_deg": "-26.434999465942383", + "longitude_deg": "135.51699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YDLH" + }, + { + "id": "30924", + "ident": "YDLK", + "type": "small_airport", + "name": "Dulkaninna Airport", + "latitude_deg": "-29.0132999420166", + "longitude_deg": "138.4810028076172", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Dulkaninna", + "scheduled_service": "no", + "gps_code": "YDLK", + "iata_code": "DLK" + }, + { + "id": "27512", + "ident": "YDLL", + "type": "small_airport", + "name": "Dunolly Airport", + "latitude_deg": "-36.849998474121094", + "longitude_deg": "143.6999969482422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YDLL" + }, + { + "id": "27513", + "ident": "YDLO", + "type": "small_airport", + "name": "Darlot Airport", + "latitude_deg": "-27.88330078125", + "longitude_deg": "121.26699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YDLO" + }, + { + "id": "26972", + "ident": "YDLQ", + "type": "medium_airport", + "name": "Deniliquin Airport", + "latitude_deg": "-35.5593986511", + "longitude_deg": "144.945999146", + "elevation_ft": "316", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Deniliquin", + "scheduled_service": "no", + "gps_code": "YDLQ", + "iata_code": "DNQ", + "home_link": "http://www.deniliquin.nsw.gov.au/index.php?option=com_content&view=article&id=46786:deniliquin-airport&catid=350&Itemid=1540", + "wikipedia_link": "https://en.wikipedia.org/wiki/Deniliquin_Airport" + }, + { + "id": "27514", + "ident": "YDLT", + "type": "small_airport", + "name": "Delta Downs Airport", + "latitude_deg": "-16.99169921875", + "longitude_deg": "141.31700134277344", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YDLT", + "iata_code": "DDN" + }, + { + "id": "27515", + "ident": "YDLV", + "type": "small_airport", + "name": "Delissaville Airport", + "latitude_deg": "-12.550000190734863", + "longitude_deg": "130.68499755859375", + "elevation_ft": "34", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YDLV", + "iata_code": "DLV" + }, + { + "id": "27516", + "ident": "YDLW", + "type": "small_airport", + "name": "Daly Waters Airport", + "latitude_deg": "-16.264695066399998", + "longitude_deg": "133.383378983", + "elevation_ft": "700", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Daly Waters", + "scheduled_service": "no", + "gps_code": "YDLW", + "iata_code": "DYW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Daly_Waters_Airfield", + "keywords": "Daly Waters Airfield, RAAF Daly Waters" + }, + { + "id": "38324", + "ident": "YDME", + "type": "small_airport", + "name": "Mount Dimer Airport", + "latitude_deg": "-30.40169906616211", + "longitude_deg": "119.83000183105469", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YDME" + }, + { + "id": "38325", + "ident": "YDMF", + "type": "small_airport", + "name": "Diemal Find Airport", + "latitude_deg": "-29.667416", + "longitude_deg": "119.292213", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YDMF" + }, + { + "id": "26973", + "ident": "YDMG", + "type": "small_airport", + "name": "Doomadgee Airport", + "latitude_deg": "-17.9403", + "longitude_deg": "138.822006", + "elevation_ft": "153", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YDMG", + "iata_code": "DMD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Doomadgee_Airport" + }, + { + "id": "27517", + "ident": "YDMN", + "type": "small_airport", + "name": "Daly River Airport", + "latitude_deg": "-13.749806", + "longitude_deg": "130.693878", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Nauiyu", + "scheduled_service": "no", + "gps_code": "YDMN", + "iata_code": "DVR", + "keywords": "TG Bae" + }, + { + "id": "38326", + "ident": "YDMR", + "type": "small_airport", + "name": "Delamere Station Airport", + "latitude_deg": "-15.619999885559082", + "longitude_deg": "131.63699340820312", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YDMR" + }, + { + "id": "27518", + "ident": "YDNB", + "type": "small_airport", + "name": "Doongmabulla Airport", + "latitude_deg": "-22.065948", + "longitude_deg": "146.244063", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YDNB" + }, + { + "id": "32037", + "ident": "YDNI", + "type": "small_airport", + "name": "Darnley Island Airport", + "latitude_deg": "-9.583330154418945", + "longitude_deg": "143.76699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Darnley Island", + "scheduled_service": "yes", + "gps_code": "YDNI", + "iata_code": "NLF" + }, + { + "id": "27519", + "ident": "YDNK", + "type": "small_airport", + "name": "Darnick Airport", + "latitude_deg": "-32.88330078125", + "longitude_deg": "143.58299255371094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YDNK" + }, + { + "id": "29835", + "ident": "YDNR", + "type": "small_airport", + "name": "Dunmore Manila Airport", + "latitude_deg": "-30.658100128173828", + "longitude_deg": "150.875", + "elevation_ft": "1391", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YDNR" + }, + { + "id": "27520", + "ident": "YDNV", + "type": "small_airport", + "name": "Dynevor Downs Airport", + "latitude_deg": "-28.094095", + "longitude_deg": "144.364986", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YDNV" + }, + { + "id": "27521", + "ident": "YDOC", + "type": "small_airport", + "name": "Dochra Airfield", + "latitude_deg": "-32.650065", + "longitude_deg": "151.209003", + "elevation_ft": "185", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Singleton", + "scheduled_service": "no", + "gps_code": "YDOC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dochra_Airfield", + "keywords": "military" + }, + { + "id": "26974", + "ident": "YDOD", + "type": "small_airport", + "name": "Donald Airport", + "latitude_deg": "-36.36029815673828", + "longitude_deg": "143.00799560546875", + "elevation_ft": "409", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YDOD" + }, + { + "id": "27522", + "ident": "YDON", + "type": "small_airport", + "name": "Dowerin Airport", + "latitude_deg": "-31.169831", + "longitude_deg": "117.046988", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YDON" + }, + { + "id": "27523", + "ident": "YDOO", + "type": "small_airport", + "name": "Donors Hill Airport", + "latitude_deg": "-18.708776", + "longitude_deg": "140.553846", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YDOO" + }, + { + "id": "27524", + "ident": "YDOP", + "type": "small_airport", + "name": "Donnington Airpark", + "latitude_deg": "-19.602078", + "longitude_deg": "146.843204", + "elevation_ft": "76", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Donnington", + "scheduled_service": "no", + "gps_code": "YDOP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Woodstock_Airport%2C_Queensland" + }, + { + "id": "27525", + "ident": "YDOR", + "type": "small_airport", + "name": "Dorunda Airport", + "latitude_deg": "-16.5537", + "longitude_deg": "141.8238", + "elevation_ft": "58", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Dorunda Outstation", + "scheduled_service": "no", + "gps_code": "YDOR", + "iata_code": "DRD" + }, + { + "id": "27526", + "ident": "YDPD", + "type": "small_airport", + "name": "Davenport Downs Airport", + "latitude_deg": "-24.149999618530273", + "longitude_deg": "141.10800170898438", + "elevation_ft": "95", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YDPD", + "iata_code": "DVP" + }, + { + "id": "26975", + "ident": "YDPO", + "type": "medium_airport", + "name": "Devonport Airport", + "latitude_deg": "-41.1697006226", + "longitude_deg": "146.429992676", + "elevation_ft": "33", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Devonport", + "scheduled_service": "yes", + "gps_code": "YDPO", + "iata_code": "DPO", + "home_link": "http://www.tasports.com.au/infrastructure/devonport_airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Devonport_Airport" + }, + { + "id": "38327", + "ident": "YDPR", + "type": "small_airport", + "name": "Dneiper Airport", + "latitude_deg": "-22.61669921875", + "longitude_deg": "135.1999969482422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YDPR" + }, + { + "id": "27527", + "ident": "YDPS", + "type": "small_airport", + "name": "Depot Springs Airport", + "latitude_deg": "-27.88330078125", + "longitude_deg": "120.08300018310547", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YDPS" + }, + { + "id": "27528", + "ident": "YDPT", + "type": "small_airport", + "name": "Depot Outcamp Airport", + "latitude_deg": "-31.572200775146484", + "longitude_deg": "125.18699645996094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YDPT" + }, + { + "id": "38328", + "ident": "YDPW", + "type": "small_airport", + "name": "Deep Well Airport", + "latitude_deg": "-24.297968", + "longitude_deg": "134.143261", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YDPW" + }, + { + "id": "27529", + "ident": "YDRA", + "type": "small_airport", + "name": "Dongara Airport", + "latitude_deg": "-29.298128", + "longitude_deg": "114.927334", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Dongara", + "scheduled_service": "no", + "gps_code": "YDRA", + "iata_code": "DOX" + }, + { + "id": "38329", + "ident": "YDRC", + "type": "small_airport", + "name": "Dairy Creek Homestead Airport", + "latitude_deg": "-25.268972", + "longitude_deg": "115.867391", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YDRC" + }, + { + "id": "27530", + "ident": "YDRD", + "type": "small_airport", + "name": "Drysdale River Airport", + "latitude_deg": "-15.71357", + "longitude_deg": "126.381097", + "elevation_ft": "360", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Drysdale River", + "scheduled_service": "no", + "gps_code": "YDRD", + "iata_code": "DRY" + }, + { + "id": "314880", + "ident": "YDRG", + "type": "small_airport", + "name": "Duaringa Airstrip", + "latitude_deg": "-23.7372", + "longitude_deg": "149.6647", + "elevation_ft": "495", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Duaringa", + "scheduled_service": "no", + "gps_code": "YDRG", + "local_code": "YDRG" + }, + { + "id": "27531", + "ident": "YDRH", + "type": "small_airport", + "name": "Durham Downs Airport", + "latitude_deg": "-27.075000762939453", + "longitude_deg": "141.89999389648438", + "elevation_ft": "116", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YDRH", + "iata_code": "DHD" + }, + { + "id": "27532", + "ident": "YDRI", + "type": "small_airport", + "name": "Durrie Airport", + "latitude_deg": "-25.684999465942383", + "longitude_deg": "140.22799682617188", + "elevation_ft": "58", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YDRI", + "iata_code": "DRR" + }, + { + "id": "38330", + "ident": "YDRL", + "type": "small_airport", + "name": "De Rose Hill Airport", + "latitude_deg": "-26.435838", + "longitude_deg": "133.259954", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "De Rose Hill", + "scheduled_service": "no", + "gps_code": "YDRL" + }, + { + "id": "327139", + "ident": "YDRN", + "type": "small_airport", + "name": "Drouin Airport", + "latitude_deg": "-38.208972", + "longitude_deg": "145.831097", + "elevation_ft": "330", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Drouin", + "scheduled_service": "no", + "gps_code": "YDRN", + "keywords": "Drouin, YDRN" + }, + { + "id": "38331", + "ident": "YDUK", + "type": "small_airport", + "name": "Duketon Airport", + "latitude_deg": "-27.977972", + "longitude_deg": "122.295545", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Bandya", + "scheduled_service": "no", + "gps_code": "YDUK" + }, + { + "id": "27533", + "ident": "YDUM", + "type": "small_airport", + "name": "Dumbleyung Airport", + "latitude_deg": "-33.33330154418945", + "longitude_deg": "117.75", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YDUM" + }, + { + "id": "27534", + "ident": "YDUN", + "type": "small_airport", + "name": "Dunwich Airport", + "latitude_deg": "-27.519005", + "longitude_deg": "153.427618", + "elevation_ft": "260", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "North Stradbroke Island", + "scheduled_service": "no", + "gps_code": "YDUN", + "iata_code": "SRR", + "home_link": "http://straddieairfield.com/", + "keywords": "Straddie" + }, + { + "id": "38332", + "ident": "YDVE", + "type": "small_airport", + "name": "Dale River Airport", + "latitude_deg": "-32.28329849243164", + "longitude_deg": "116.55000305175781", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YDVE" + }, + { + "id": "27535", + "ident": "YDVR", + "type": "small_airport", + "name": "Docker River Airport", + "latitude_deg": "-24.860000610351562", + "longitude_deg": "129.07000732421875", + "elevation_ft": "589", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YDVR", + "iata_code": "DKV" + }, + { + "id": "27536", + "ident": "YDWF", + "type": "small_airport", + "name": "Delamere Range Facility Airport", + "latitude_deg": "-15.746700286865234", + "longitude_deg": "131.9199981689453", + "elevation_ft": "223", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YDWF" + }, + { + "id": "38333", + "ident": "YDWU", + "type": "small_airport", + "name": "Dalwallinu Airport", + "latitude_deg": "-30.199814", + "longitude_deg": "116.655364", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YDWU" + }, + { + "id": "38334", + "ident": "YDYD", + "type": "small_airport", + "name": "Derry Downs Airport", + "latitude_deg": "-22.08329963684082", + "longitude_deg": "135.33299255371094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YDYD" + }, + { + "id": "26976", + "ident": "YDYS", + "type": "medium_airport", + "name": "Dysart Airport", + "latitude_deg": "-22.62220001220703", + "longitude_deg": "148.36399841308594", + "elevation_ft": "670", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YDYS", + "iata_code": "DYA" + }, + { + "id": "340199", + "ident": "YE-0001", + "type": "small_airport", + "name": "Perim / Mayyun West Airfield", + "latitude_deg": "12.66456", + "longitude_deg": "43.41023", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-TA", + "municipality": "Dhubab", + "scheduled_service": "no" + }, + { + "id": "340200", + "ident": "YE-0002", + "type": "small_airport", + "name": "Perim / Mayyun East Airfield", + "latitude_deg": "12.661236", + "longitude_deg": "43.429654", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-TA", + "municipality": "Dhubab", + "scheduled_service": "no" + }, + { + "id": "348395", + "ident": "YE-0003", + "type": "small_airport", + "name": "Al Dhaba Airport", + "latitude_deg": "14.70339", + "longitude_deg": "49.49634", + "elevation_ft": "52", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-HD", + "municipality": "Al Dhaba", + "scheduled_service": "no", + "keywords": "Petromasila Dabba" + }, + { + "id": "348442", + "ident": "YE-0004", + "type": "heliport", + "name": "Ma'asheeq Presidential Palace Heliport", + "latitude_deg": "12.76404", + "longitude_deg": "45.05339", + "elevation_ft": "151", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-AD", + "municipality": "Aden", + "scheduled_service": "no" + }, + { + "id": "351859", + "ident": "YE-0005", + "type": "small_airport", + "name": "Ar Rawdah Airport", + "latitude_deg": "14.44872", + "longitude_deg": "47.27955", + "elevation_ft": "2730", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-SH", + "municipality": "Ar Rawdah", + "scheduled_service": "no" + }, + { + "id": "351959", + "ident": "YE-0006", + "type": "heliport", + "name": "Balhaf Main Heliport", + "latitude_deg": "14.00403", + "longitude_deg": "48.18221", + "elevation_ft": "80", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-SH", + "municipality": "Balhaf", + "scheduled_service": "no" + }, + { + "id": "351960", + "ident": "YE-0007", + "type": "heliport", + "name": "Balhaf Upper Heliport", + "latitude_deg": "14.00528", + "longitude_deg": "48.18431", + "elevation_ft": "112", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-SH", + "municipality": "Balhaf", + "scheduled_service": "no" + }, + { + "id": "351961", + "ident": "YE-0008", + "type": "small_airport", + "name": "Balhaf Yemen LNG Airport", + "latitude_deg": "14.01389", + "longitude_deg": "48.15943", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-SH", + "municipality": "Balhaf", + "scheduled_service": "no" + }, + { + "id": "351962", + "ident": "YE-0009", + "type": "heliport", + "name": "Balhaf Lower Heliport", + "latitude_deg": "14.00131", + "longitude_deg": "48.17582", + "elevation_ft": "16", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-SH", + "municipality": "Balhaf", + "scheduled_service": "no" + }, + { + "id": "351963", + "ident": "YE-0010", + "type": "heliport", + "name": "Balhaf North Heliport", + "latitude_deg": "14.0121", + "longitude_deg": "48.18081", + "elevation_ft": "82", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-SH", + "municipality": "Balhaf", + "scheduled_service": "no" + }, + { + "id": "351964", + "ident": "YE-0011", + "type": "heliport", + "name": "Aden International Stadium Heliport", + "latitude_deg": "13.11228", + "longitude_deg": "45.42159", + "elevation_ft": "32", + "continent": "AS", + "iso_country": "YE", + "iso_region": "YE-AB", + "municipality": "Zinjibar", + "scheduled_service": "no" + }, + { + "id": "27537", + "ident": "YEAB", + "type": "small_airport", + "name": "Euabalong Airport", + "latitude_deg": "-33.137268", + "longitude_deg": "146.424494", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YEAB" + }, + { + "id": "38335", + "ident": "YEAT", + "type": "small_airport", + "name": "Yea Airport", + "latitude_deg": "-37.21580123901367", + "longitude_deg": "146.42999267578125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YEAT" + }, + { + "id": "26979", + "ident": "YECH", + "type": "medium_airport", + "name": "Echuca Airport", + "latitude_deg": "-36.15719985961914", + "longitude_deg": "144.76199340820312", + "elevation_ft": "323", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YECH", + "iata_code": "ECH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Echuca_Airport" + }, + { + "id": "27539", + "ident": "YECL", + "type": "small_airport", + "name": "Eucla Airport", + "latitude_deg": "-31.707084", + "longitude_deg": "128.877243", + "elevation_ft": "22", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YECL", + "iata_code": "EUC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Eucla_Airport" + }, + { + "id": "31021", + "ident": "YEDA", + "type": "small_airport", + "name": "Etadunna Airport", + "latitude_deg": "-28.740800857543945", + "longitude_deg": "138.58900451660156", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Etadunna", + "scheduled_service": "no", + "gps_code": "YEDA", + "iata_code": "ETD" + }, + { + "id": "27540", + "ident": "YEDE", + "type": "small_airport", + "name": "Edenhope Airport", + "latitude_deg": "-37.020219", + "longitude_deg": "141.266889", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YEDE" + }, + { + "id": "27541", + "ident": "YEDH", + "type": "closed", + "name": "Meredith Airport", + "latitude_deg": "-37.8833007812", + "longitude_deg": "144.082992554", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YEDH" + }, + { + "id": "38336", + "ident": "YEDM", + "type": "small_airport", + "name": "Edmund Station Airport", + "latitude_deg": "-23.75", + "longitude_deg": "116.0999984741211", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YEDM" + }, + { + "id": "31005", + "ident": "YEEB", + "type": "small_airport", + "name": "Eneabba Airport", + "latitude_deg": "-29.832500457763672", + "longitude_deg": "115.24600219726562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Eneabba", + "scheduled_service": "no", + "gps_code": "YEEB", + "iata_code": "ENB" + }, + { + "id": "29844", + "ident": "YEES", + "type": "small_airport", + "name": "Elderslie Airport", + "latitude_deg": "-32.599700927734375", + "longitude_deg": "151.33999633789062", + "elevation_ft": "112", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YEES" + }, + { + "id": "38337", + "ident": "YEGA", + "type": "small_airport", + "name": "Engonnia Airport", + "latitude_deg": "-29.311175", + "longitude_deg": "145.857475", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YEGA" + }, + { + "id": "31677", + "ident": "YEH", + "type": "small_airport", + "name": "Yinchuan Helanshan Air Base", + "latitude_deg": "38.481899", + "longitude_deg": "106.009003", + "elevation_ft": "3770", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-64", + "municipality": "Yinchuan", + "scheduled_service": "no", + "local_code": "YEH", + "keywords": "Xincheng" + }, + { + "id": "30996", + "ident": "YEIN", + "type": "small_airport", + "name": "Einasleigh Airport", + "latitude_deg": "-18.503299713100002", + "longitude_deg": "144.093994141", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Einasleigh", + "scheduled_service": "no", + "gps_code": "YEIN", + "iata_code": "EIH" + }, + { + "id": "26980", + "ident": "YELD", + "type": "medium_airport", + "name": "Elcho Island Airport", + "latitude_deg": "-12.019399642899998", + "longitude_deg": "135.570999146", + "elevation_ft": "101", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Elcho Island", + "scheduled_service": "yes", + "gps_code": "YELD", + "iata_code": "ELC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elcho_Island_Airport" + }, + { + "id": "27543", + "ident": "YELE", + "type": "small_airport", + "name": "Belele Airport", + "latitude_deg": "-26.367431", + "longitude_deg": "118.039175", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YELE" + }, + { + "id": "27544", + "ident": "YELG", + "type": "small_airport", + "name": "Elengerah Airport", + "latitude_deg": "-31.865877", + "longitude_deg": "147.978008", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YELG" + }, + { + "id": "38338", + "ident": "YELK", + "type": "small_airport", + "name": "Elkedra Airport", + "latitude_deg": "-21.172500610399997", + "longitude_deg": "135.444000244", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YELK", + "iata_code": "EKD" + }, + { + "id": "27545", + "ident": "YELL", + "type": "small_airport", + "name": "Elliott Airport", + "latitude_deg": "-17.527429580688477", + "longitude_deg": "133.52989196777344", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Elliott", + "scheduled_service": "no", + "gps_code": "YELL" + }, + { + "id": "38339", + "ident": "YELM", + "type": "small_airport", + "name": "Elmore Airport", + "latitude_deg": "-36.4901793786", + "longitude_deg": "144.647197723", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YELM" + }, + { + "id": "27546", + "ident": "YELN", + "type": "small_airport", + "name": "Elliston Airport", + "latitude_deg": "-33.638302", + "longitude_deg": "134.899994", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Elliston", + "scheduled_service": "no", + "gps_code": "YELN", + "wikipedia_link": "https://en.wikipedia.org/wiki/District_Council_of_Elliston" + }, + { + "id": "27547", + "ident": "YELR", + "type": "closed", + "name": "Elderslie Airport", + "latitude_deg": "-15.7", + "longitude_deg": "145.1", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YELR" + }, + { + "id": "27548", + "ident": "YELS", + "type": "small_airport", + "name": "Baddaginnie (Earlston) Airport", + "latitude_deg": "-36.551196", + "longitude_deg": "145.805061", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Baddaginnie", + "scheduled_service": "no", + "gps_code": "YELS" + }, + { + "id": "27549", + "ident": "YELW", + "type": "small_airport", + "name": "Eildon Weir Airport", + "latitude_deg": "-37.20830154418945", + "longitude_deg": "145.83299255371094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YELW" + }, + { + "id": "27550", + "ident": "YEMG", + "type": "small_airport", + "name": "Eromanga Airport", + "latitude_deg": "-26.7000007629", + "longitude_deg": "143.266998291", + "elevation_ft": "166", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YEMG" + }, + { + "id": "38340", + "ident": "YEMJ", + "type": "small_airport", + "name": "Emu Junction Airport", + "latitude_deg": "-28.63330078125", + "longitude_deg": "132.18299865722656", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YEMJ" + }, + { + "id": "26981", + "ident": "YEML", + "type": "medium_airport", + "name": "Emerald Airport", + "latitude_deg": "-23.5674991608", + "longitude_deg": "148.179000854", + "elevation_ft": "624", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Emerald", + "scheduled_service": "yes", + "gps_code": "YEML", + "iata_code": "EMD", + "home_link": "http://www.emerald.qld.gov.au/Council/Departments/Engineering_Operations/Engineering_Operations.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Emerald_Airport" + }, + { + "id": "38341", + "ident": "YEMP", + "type": "small_airport", + "name": "Emu Park Authorised Landing Area", + "latitude_deg": "-23.255188", + "longitude_deg": "150.81439", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Emu Park", + "scheduled_service": "no", + "gps_code": "YEMP" + }, + { + "id": "27551", + "ident": "YENO", + "type": "heliport", + "name": "Enoggera Barracks", + "latitude_deg": "-27.4235284757", + "longitude_deg": "152.98342824", + "elevation_ft": "145", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Enoggera", + "scheduled_service": "no", + "gps_code": "YENO" + }, + { + "id": "27552", + "ident": "YEPL", + "type": "small_airport", + "name": "Epsilon Airport", + "latitude_deg": "-28.294707", + "longitude_deg": "141.197743", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YEPL" + }, + { + "id": "38342", + "ident": "YEPR", + "type": "small_airport", + "name": "Epenarra Airport", + "latitude_deg": "-20.433300018310547", + "longitude_deg": "135.26699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YEPR" + }, + { + "id": "307585", + "ident": "YEQ", + "type": "small_airport", + "name": "Yenkis(Yankisa) Airport", + "latitude_deg": "-5.10972222222", + "longitude_deg": "143.917666667", + "elevation_ft": "3692", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-EPW", + "scheduled_service": "no", + "gps_code": "AYYK", + "iata_code": "YEQ", + "local_code": "YIS" + }, + { + "id": "27553", + "ident": "YEQO", + "type": "small_airport", + "name": "El Questro Airport", + "latitude_deg": "-16.00830078125", + "longitude_deg": "127.9749984741211", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YEQO" + }, + { + "id": "38343", + "ident": "YERA", + "type": "small_airport", + "name": "Errabiddy Homestead Airport", + "latitude_deg": "-25.5", + "longitude_deg": "117.16699981689453", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YERA" + }, + { + "id": "38344", + "ident": "YERH", + "type": "small_airport", + "name": "Earaheedy Airport", + "latitude_deg": "-25.617558", + "longitude_deg": "121.578445", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YERH" + }, + { + "id": "38345", + "ident": "YERL", + "type": "small_airport", + "name": "Erldunda Airport", + "latitude_deg": "-25.206106", + "longitude_deg": "133.254161", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Ghan", + "scheduled_service": "no", + "gps_code": "YERL", + "iata_code": "EDD" + }, + { + "id": "27554", + "ident": "YERN", + "type": "small_airport", + "name": "Ernabella Airport", + "latitude_deg": "-26.2632999420166", + "longitude_deg": "132.1820068359375", + "elevation_ft": "707", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YERN", + "iata_code": "ERB" + }, + { + "id": "38346", + "ident": "YERO", + "type": "small_airport", + "name": "Erong Station Airport", + "latitude_deg": "-25.560305", + "longitude_deg": "116.660172", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YERO" + }, + { + "id": "27555", + "ident": "YERU", + "type": "small_airport", + "name": "Erudina Airport", + "latitude_deg": "-31.434499740600586", + "longitude_deg": "139.4250030517578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YERU" + }, + { + "id": "27556", + "ident": "YESC", + "type": "small_airport", + "name": "Escott Airport", + "latitude_deg": "-17.725000381469727", + "longitude_deg": "139.41700744628906", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YESC" + }, + { + "id": "318064", + "ident": "YESE", + "type": "small_airport", + "name": "Elrose Airport", + "latitude_deg": "-20.9764", + "longitude_deg": "141.0066", + "elevation_ft": "645", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Elrose Mine", + "scheduled_service": "no", + "gps_code": "YESE", + "iata_code": "ERQ", + "local_code": "YESE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Elrose_Airport" + }, + { + "id": "26982", + "ident": "YESP", + "type": "medium_airport", + "name": "Esperance Airport", + "latitude_deg": "-33.684399", + "longitude_deg": "121.822998", + "elevation_ft": "470", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Esperance", + "scheduled_service": "yes", + "gps_code": "YESP", + "iata_code": "EPR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Esperance_Airport" + }, + { + "id": "354814", + "ident": "YETT", + "type": "small_airport", + "name": "North Gregory/Elliott Field", + "latitude_deg": "-25.050278", + "longitude_deg": "152.221111", + "elevation_ft": "256", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Bundaberg", + "scheduled_service": "no", + "gps_code": "YETT" + }, + { + "id": "38347", + "ident": "YEUA", + "type": "small_airport", + "name": "Euroa Aerodrome", + "latitude_deg": "-36.7447013855", + "longitude_deg": "145.513000488", + "elevation_ft": "555", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Euroa", + "scheduled_service": "no", + "gps_code": "YEUA", + "home_link": "http://www.skydivingassoc.com.au/" + }, + { + "id": "38348", + "ident": "YEUD", + "type": "small_airport", + "name": "Eudamulla Station Airport", + "latitude_deg": "-24.443452", + "longitude_deg": "115.609769", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YEUD" + }, + { + "id": "27557", + "ident": "YEUL", + "type": "small_airport", + "name": "Eulalia Airport", + "latitude_deg": "-31.031573", + "longitude_deg": "148.175815", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YEUL" + }, + { + "id": "27558", + "ident": "YEUO", + "type": "small_airport", + "name": "Eulo Airport", + "latitude_deg": "-28.16670036315918", + "longitude_deg": "145.04200744628906", + "elevation_ft": "152", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YEUO" + }, + { + "id": "31025", + "ident": "YEVA", + "type": "small_airport", + "name": "Eva Downs Airport", + "latitude_deg": "-18.0009994507", + "longitude_deg": "134.863006592", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Eva Downs", + "scheduled_service": "no", + "gps_code": "YEVA", + "iata_code": "EVD" + }, + { + "id": "26983", + "ident": "YEVD", + "type": "small_airport", + "name": "Evans Head Aerodrome", + "latitude_deg": "-29.101786", + "longitude_deg": "153.419255", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YEVD", + "iata_code": "EVH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Evans_Head_Memorial_Aerodrome", + "keywords": "RAAF Base Evans Head" + }, + { + "id": "27559", + "ident": "YEVP", + "type": "small_airport", + "name": "Everard Park Airport", + "latitude_deg": "-27.016700744628906", + "longitude_deg": "132.7169952392578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YEVP" + }, + { + "id": "342792", + "ident": "YEWA", + "type": "medium_airport", + "name": "Eliwana", + "latitude_deg": "-22.428395", + "longitude_deg": "116.887879", + "elevation_ft": "1576", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YEWA", + "iata_code": "WHB" + }, + { + "id": "27560", + "ident": "YEXM", + "type": "small_airport", + "name": "Exmouth Airport", + "latitude_deg": "-22.040677", + "longitude_deg": "114.102663", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YEXM", + "iata_code": "EXM" + }, + { + "id": "38350", + "ident": "YEYD", + "type": "small_airport", + "name": "Evelyn Downs Airport", + "latitude_deg": "-28.204700469970703", + "longitude_deg": "134.48800659179688", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YEYD" + }, + { + "id": "26984", + "ident": "YFBS", + "type": "medium_airport", + "name": "Forbes Airport", + "latitude_deg": "-33.363602", + "longitude_deg": "147.934998", + "elevation_ft": "760", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Forbes", + "scheduled_service": "no", + "gps_code": "YFBS", + "iata_code": "FRB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Forbes_Airport" + }, + { + "id": "38351", + "ident": "YFCK", + "type": "small_airport", + "name": "Fish Creek Airport", + "latitude_deg": "-38.71500015258789", + "longitude_deg": "146.05299377441406", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YFCK" + }, + { + "id": "38352", + "ident": "YFCU", + "type": "small_airport", + "name": "Fortescue River Airport", + "latitude_deg": "-21.299999237060547", + "longitude_deg": "116.13300323486328", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YFCU" + }, + { + "id": "301103", + "ident": "YFDF", + "type": "small_airport", + "name": "Fortescue - Dave Forrest Aerodrome", + "latitude_deg": "-22.290754", + "longitude_deg": "119.437143", + "elevation_ft": "1555", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Cloudbreak Village", + "scheduled_service": "no", + "gps_code": "YFDF", + "iata_code": "KFE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fortescue_Dave_Forrest_Airport" + }, + { + "id": "29866", + "ident": "YFDN", + "type": "small_airport", + "name": "Federation Hsd Airport", + "latitude_deg": "-35.01169967651367", + "longitude_deg": "147.37399291992188", + "elevation_ft": "709", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YFDN" + }, + { + "id": "27561", + "ident": "YFFT", + "type": "small_airport", + "name": "Farrell Flat Airport", + "latitude_deg": "-33.846753", + "longitude_deg": "138.777419", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YFFT" + }, + { + "id": "309693", + "ident": "YFHO", + "type": "heliport", + "name": "Fairfield Hospital Helipad", + "latitude_deg": "-33.859012", + "longitude_deg": "150.905447", + "elevation_ft": "154", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Fairfield", + "scheduled_service": "no", + "gps_code": "YFHO", + "local_code": "YFHO" + }, + { + "id": "27562", + "ident": "YFIL", + "type": "small_airport", + "name": "Finley Airport", + "latitude_deg": "-35.658918", + "longitude_deg": "145.561214", + "elevation_ft": "380", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YFIL", + "iata_code": "FLY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Finley_Airport" + }, + { + "id": "27563", + "ident": "YFLI", + "type": "small_airport", + "name": "Flinders Island Airport", + "latitude_deg": "-40.0917015076", + "longitude_deg": "147.992996216", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Flinders Island", + "scheduled_service": "yes", + "gps_code": "YFLI", + "iata_code": "FLS", + "home_link": "http://www.flinders.tas.gov.au/flinders-island-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Flinders_Island_Airport" + }, + { + "id": "38353", + "ident": "YFLO", + "type": "small_airport", + "name": "Flora Valley Airport", + "latitude_deg": "-18.2833003998", + "longitude_deg": "128.417007446", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YFLO", + "iata_code": "FVL" + }, + { + "id": "38354", + "ident": "YFLS", + "type": "small_airport", + "name": "Flinders Island Airport", + "latitude_deg": "-33.730989", + "longitude_deg": "134.501", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YFLS" + }, + { + "id": "31129", + "ident": "YFNE", + "type": "small_airport", + "name": "Finke Airport", + "latitude_deg": "-25.5946998596", + "longitude_deg": "134.582992554", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Finke", + "scheduled_service": "no", + "gps_code": "YFNE", + "iata_code": "FIK" + }, + { + "id": "38355", + "ident": "YFOR", + "type": "small_airport", + "name": "Fortnum Airport", + "latitude_deg": "-25.33329963684082", + "longitude_deg": "118.36699676513672", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YFOR" + }, + { + "id": "27565", + "ident": "YFRD", + "type": "small_airport", + "name": "Frome Downs Airport", + "latitude_deg": "-31.216699600219727", + "longitude_deg": "139.75", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YFRD" + }, + { + "id": "27566", + "ident": "YFRG", + "type": "small_airport", + "name": "Fregon Airport", + "latitude_deg": "-26.774999618530273", + "longitude_deg": "132.01699829101562", + "elevation_ft": "528", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YFRG" + }, + { + "id": "27567", + "ident": "YFRI", + "type": "small_airport", + "name": "Friendly Beaches Airport", + "latitude_deg": "-42", + "longitude_deg": "148.25900268554688", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YFRI" + }, + { + "id": "27568", + "ident": "YFRK", + "type": "small_airport", + "name": "Frankland Airport", + "latitude_deg": "-34.424752", + "longitude_deg": "117.026281", + "elevation_ft": "800", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Frankland River", + "scheduled_service": "no", + "gps_code": "YFRK" + }, + { + "id": "26985", + "ident": "YFRT", + "type": "medium_airport", + "name": "Forrest Airport", + "latitude_deg": "-30.83662", + "longitude_deg": "128.112811", + "elevation_ft": "511", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YFRT", + "iata_code": "FOS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Forrest_Airport" + }, + { + "id": "312900", + "ident": "YFRV", + "type": "small_airport", + "name": "Oombulgurri Airport", + "latitude_deg": "-15.1647", + "longitude_deg": "127.8401", + "elevation_ft": "22", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Oombulgurri", + "scheduled_service": "no", + "gps_code": "YFRV", + "iata_code": "FVR", + "local_code": "YFRV", + "keywords": "Forrest River" + }, + { + "id": "27569", + "ident": "YFSA", + "type": "small_airport", + "name": "Forsayth Airport", + "latitude_deg": "-18.58658", + "longitude_deg": "143.565903", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YFSA" + }, + { + "id": "27570", + "ident": "YFSK", + "type": "small_airport", + "name": "Fiskville Airport", + "latitude_deg": "-37.6781143165", + "longitude_deg": "144.220790863", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Fiskville", + "scheduled_service": "no", + "gps_code": "YFSK" + }, + { + "id": "27571", + "ident": "YFST", + "type": "small_airport", + "name": "Forster (Wallis Is) Airport", + "latitude_deg": "-32.202489", + "longitude_deg": "152.481136", + "elevation_ft": "4", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YFST", + "iata_code": "FOT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Forster_(Wallis_Island)_Airport" + }, + { + "id": "27572", + "ident": "YFTA", + "type": "small_airport", + "name": "Forrestania Airport", + "latitude_deg": "-32.58000183105469", + "longitude_deg": "119.7030029296875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YFTA" + }, + { + "id": "38356", + "ident": "YFTN", + "type": "small_airport", + "name": "Mount Fitton Talc Airport", + "latitude_deg": "-29.90920066833496", + "longitude_deg": "139.4739990234375", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YFTN" + }, + { + "id": "26986", + "ident": "YFTZ", + "type": "medium_airport", + "name": "Fitzroy Crossing Airport", + "latitude_deg": "-18.183596", + "longitude_deg": "125.559783", + "elevation_ft": "368", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YFTZ", + "iata_code": "FIZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fitzroy_Crossing_Airport" + }, + { + "id": "27573", + "ident": "YFVW", + "type": "small_airport", + "name": "Fairview Airport", + "latitude_deg": "-32.790693", + "longitude_deg": "148.723778", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YFVW" + }, + { + "id": "38357", + "ident": "YFWY", + "type": "small_airport", + "name": "Faraway Bay Airport", + "latitude_deg": "-13.980799674987793", + "longitude_deg": "127.18099975585938", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YFWY" + }, + { + "id": "347519", + "ident": "YGA", + "type": "small_airport", + "name": "Yongchuan Da'an General Airport", + "latitude_deg": "29.356667", + "longitude_deg": "106.010441", + "elevation_ft": "1131", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-50", + "municipality": "Chongqing", + "scheduled_service": "no", + "iata_code": "YGA" + }, + { + "id": "27574", + "ident": "YGAD", + "type": "small_airport", + "name": "HMAS Stirling Military Airport", + "latitude_deg": "-32.240778", + "longitude_deg": "115.685096", + "elevation_ft": "9", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Garden Island", + "scheduled_service": "no", + "gps_code": "YGAD", + "home_link": "https://www.navy.gov.au/establishments/hmas-stirling", + "wikipedia_link": "https://en.wikipedia.org/wiki/HMAS_Stirling" + }, + { + "id": "27575", + "ident": "YGAH", + "type": "small_airport", + "name": "Greenbah Airport", + "latitude_deg": "-30.12582778930664", + "longitude_deg": "149.4345703125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YGAH" + }, + { + "id": "27576", + "ident": "YGAM", + "type": "small_airport", + "name": "Gamboola Airport", + "latitude_deg": "-16.5499992371", + "longitude_deg": "143.667007446", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YGAM", + "iata_code": "GBP" + }, + { + "id": "38358", + "ident": "YGAN", + "type": "small_airport", + "name": "Gan Gan Airport", + "latitude_deg": "-13.047853", + "longitude_deg": "135.952914", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Gan Gan", + "scheduled_service": "no", + "gps_code": "YGAN" + }, + { + "id": "38359", + "ident": "YGAR", + "type": "small_airport", + "name": "Gnaraloo Station Airport", + "latitude_deg": "-23.791549682617188", + "longitude_deg": "113.52893829345703", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YGAR", + "home_link": "http://www.gnaraloo.com/" + }, + { + "id": "349479", + "ident": "YGAS", + "type": "small_airport", + "name": "Gatton Airpark", + "latitude_deg": "-27.589508", + "longitude_deg": "152.257032", + "elevation_ft": "460", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Gatton", + "scheduled_service": "no", + "gps_code": "YGAS" + }, + { + "id": "27577", + "ident": "YGAT", + "type": "closed", + "name": "Gatton Campus Airport", + "latitude_deg": "-27.5604060653", + "longitude_deg": "152.340459824", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Gatton", + "scheduled_service": "no", + "gps_code": "YGAT" + }, + { + "id": "27578", + "ident": "YGAW", + "type": "small_airport", + "name": "Gawler Airport", + "latitude_deg": "-34.599934", + "longitude_deg": "138.719055", + "elevation_ft": "70", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YGAW" + }, + { + "id": "26987", + "ident": "YGAY", + "type": "small_airport", + "name": "Gayndah Airport", + "latitude_deg": "-25.61440086364746", + "longitude_deg": "151.61900329589844", + "elevation_ft": "369", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YGAY", + "iata_code": "GAH" + }, + { + "id": "27579", + "ident": "YGBI", + "type": "small_airport", + "name": "South Goulburn Is Airport", + "latitude_deg": "-11.649999618530273", + "longitude_deg": "133.3820037841797", + "elevation_ft": "19", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YGBI", + "iata_code": "GBL" + }, + { + "id": "27580", + "ident": "YGBO", + "type": "small_airport", + "name": "Gabo Island Airport", + "latitude_deg": "-37.565913", + "longitude_deg": "149.91114", + "elevation_ft": "96", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Mallacoota", + "scheduled_service": "no", + "gps_code": "YGBO" + }, + { + "id": "38360", + "ident": "YGBW", + "type": "small_airport", + "name": "Gunbower Airport", + "latitude_deg": "-35.966675", + "longitude_deg": "144.381509", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YGBW" + }, + { + "id": "315738", + "ident": "YGCL", + "type": "heliport", + "name": "Gold Coast Life Saver Base", + "latitude_deg": "-28.00345", + "longitude_deg": "153.3626", + "elevation_ft": "17", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Carrara Gold Coast", + "scheduled_service": "no", + "gps_code": "YCAX", + "keywords": "YGCL" + }, + { + "id": "27581", + "ident": "YGCR", + "type": "small_airport", + "name": "Gloucester Airport", + "latitude_deg": "-32.053261", + "longitude_deg": "151.97613", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YGCR" + }, + { + "id": "26988", + "ident": "YGDA", + "type": "small_airport", + "name": "Goodooga Airport", + "latitude_deg": "-29.074493", + "longitude_deg": "147.387021", + "elevation_ft": "459", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YGDA" + }, + { + "id": "26989", + "ident": "YGDH", + "type": "medium_airport", + "name": "Gunnedah Airport", + "latitude_deg": "-30.96109962463379", + "longitude_deg": "150.25100708007812", + "elevation_ft": "863", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YGDH", + "iata_code": "GUH" + }, + { + "id": "26990", + "ident": "YGDI", + "type": "small_airport", + "name": "Goondiwindi Airport", + "latitude_deg": "-28.521400451660156", + "longitude_deg": "150.32000732421875", + "elevation_ft": "714", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YGDI", + "iata_code": "GOO" + }, + { + "id": "31519", + "ident": "YGDN", + "type": "small_airport", + "name": "Gordon Downs Airport", + "latitude_deg": "-18.6781005859375", + "longitude_deg": "128.5919952392578", + "elevation_ft": "800", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Gordon Downs", + "scheduled_service": "no", + "gps_code": "YGDN", + "iata_code": "GDD" + }, + { + "id": "313477", + "ident": "YGDO", + "type": "small_airport", + "name": "Gundaroo Airport", + "latitude_deg": "-35.0505", + "longitude_deg": "149.2559", + "elevation_ft": "1860", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "yes", + "gps_code": "YGDO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gundaroo_Airport" + }, + { + "id": "38361", + "ident": "YGDR", + "type": "small_airport", + "name": "The Garden Airport", + "latitude_deg": "-23.286699295043945", + "longitude_deg": "134.44000244140625", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YGDR" + }, + { + "id": "27582", + "ident": "YGDS", + "type": "small_airport", + "name": "Gregory Downs Airport", + "latitude_deg": "-18.625", + "longitude_deg": "139.23300170898438", + "elevation_ft": "52", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YGDS", + "iata_code": "GGD" + }, + { + "id": "27583", + "ident": "YGDV", + "type": "small_airport", + "name": "Galdeville Airport", + "latitude_deg": "-20.249334", + "longitude_deg": "142.4393", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YGDV" + }, + { + "id": "27584", + "ident": "YGDW", + "type": "small_airport", + "name": "Granite Downs Airport", + "latitude_deg": "-26.948299", + "longitude_deg": "133.606995", + "elevation_ft": "337", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YGDW" + }, + { + "id": "317733", + "ident": "YGE", + "type": "seaplane_base", + "name": "Gorge Harbour Seaplane Base", + "latitude_deg": "50.0994", + "longitude_deg": "-125.0235", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Gorge Harbour", + "scheduled_service": "no", + "iata_code": "YGE" + }, + { + "id": "26991", + "ident": "YGEL", + "type": "medium_airport", + "name": "Geraldton Airport", + "latitude_deg": "-28.796101", + "longitude_deg": "114.707001", + "elevation_ft": "121", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Geraldton", + "scheduled_service": "yes", + "gps_code": "YGEL", + "iata_code": "GET", + "wikipedia_link": "https://en.wikipedia.org/wiki/Geraldton_Airport" + }, + { + "id": "348049", + "ident": "YGEN", + "type": "small_airport", + "name": "The Glen Airfield", + "latitude_deg": "-22.822049", + "longitude_deg": "150.332724", + "elevation_ft": "157", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Byfield", + "scheduled_service": "no", + "gps_code": "YGEN" + }, + { + "id": "26992", + "ident": "YGFN", + "type": "medium_airport", + "name": "Grafton Airport", + "latitude_deg": "-29.7593994140625", + "longitude_deg": "153.02999877929688", + "elevation_ft": "110", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YGFN", + "iata_code": "GFN" + }, + { + "id": "27585", + "ident": "YGGE", + "type": "small_airport", + "name": "Golden Grove Airport", + "latitude_deg": "-28.764898", + "longitude_deg": "116.972656", + "elevation_ft": "1180", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YGGE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Golden_Grove_Airport" + }, + { + "id": "27586", + "ident": "YGGI", + "type": "small_airport", + "name": "Goolgowi Airport", + "latitude_deg": "-33.996397", + "longitude_deg": "145.716169", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YGGI" + }, + { + "id": "27587", + "ident": "YGGL", + "type": "small_airport", + "name": "Glen Garland Airport", + "latitude_deg": "-14.866700172424316", + "longitude_deg": "143.2830047607422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YGGL" + }, + { + "id": "27588", + "ident": "YGGO", + "type": "small_airport", + "name": "Goonoo Goonoo Airport", + "latitude_deg": "-31.298701", + "longitude_deg": "150.920613", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YGGO" + }, + { + "id": "27589", + "ident": "YGGS", + "type": "small_airport", + "name": "Gregory Springs Airport", + "latitude_deg": "-19.710002", + "longitude_deg": "144.372999", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YGGS" + }, + { + "id": "27590", + "ident": "YGHG", + "type": "small_airport", + "name": "Glen Harding Airport - CLOSED", + "latitude_deg": "-18.248608", + "longitude_deg": "145.125958", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YGHG" + }, + { + "id": "351206", + "ident": "YGHS", + "type": "small_airport", + "name": "Gnaraloo Homestead Airfield", + "latitude_deg": "-23.825748", + "longitude_deg": "113.530505", + "elevation_ft": "83", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Macleod", + "scheduled_service": "no", + "gps_code": "YGHS" + }, + { + "id": "429886", + "ident": "YGHT", + "type": "heliport", + "name": "Mirage Helipad", + "latitude_deg": "-27.969441", + "longitude_deg": "153.423793", + "elevation_ft": "6", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Gold Coast", + "scheduled_service": "no", + "gps_code": "YGHT", + "keywords": "Helitours" + }, + { + "id": "319713", + "ident": "YGIA", + "type": "small_airport", + "name": "Ginbata Airport", + "latitude_deg": "-22.5812", + "longitude_deg": "120.03553", + "elevation_ft": "1409", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Ginbata", + "scheduled_service": "no", + "gps_code": "YGIA", + "iata_code": "GBW" + }, + { + "id": "27591", + "ident": "YGIB", + "type": "small_airport", + "name": "Gibb River Airport", + "latitude_deg": "-16.418661", + "longitude_deg": "126.445685", + "elevation_ft": "509", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Gibb", + "scheduled_service": "no", + "gps_code": "YGIB", + "iata_code": "GBV" + }, + { + "id": "38362", + "ident": "YGID", + "type": "small_airport", + "name": "Gidgee Airport", + "latitude_deg": "-27.270000457763672", + "longitude_deg": "119.40499877929688", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YGID" + }, + { + "id": "38363", + "ident": "YGIF", + "type": "small_airport", + "name": "Gifford Creek Station Airport", + "latitude_deg": "-24.049999237060547", + "longitude_deg": "116.21700286865234", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YGIF" + }, + { + "id": "26993", + "ident": "YGIG", + "type": "small_airport", + "name": "RAAF Gingin", + "latitude_deg": "-31.465299606323242", + "longitude_deg": "115.86299896240234", + "elevation_ft": "247", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YGIG", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAAF_Gingin" + }, + { + "id": "27592", + "ident": "YGIL", + "type": "small_airport", + "name": "Gilgandra Airport", + "latitude_deg": "-31.697099", + "longitude_deg": "148.636458", + "elevation_ft": "320", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YGIL" + }, + { + "id": "38364", + "ident": "YGIR", + "type": "small_airport", + "name": "Giralia Airport", + "latitude_deg": "-22.679977", + "longitude_deg": "114.371088", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YGIR" + }, + { + "id": "309208", + "ident": "YGIS", + "type": "heliport", + "name": "Gisborne Helipad", + "latitude_deg": "-37.484153", + "longitude_deg": "144.585626", + "elevation_ft": "1373", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Gisborne", + "scheduled_service": "no", + "gps_code": "YGIS", + "local_code": "YGIS" + }, + { + "id": "27593", + "ident": "YGKL", + "type": "small_airport", + "name": "Great Keppel Is Airport", + "latitude_deg": "-23.184575", + "longitude_deg": "150.94164", + "elevation_ft": "21", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Great Keppel Island", + "scheduled_service": "no", + "gps_code": "YGKL", + "iata_code": "GKL" + }, + { + "id": "26994", + "ident": "YGLA", + "type": "medium_airport", + "name": "Gladstone Airport", + "latitude_deg": "-23.869763", + "longitude_deg": "151.225439", + "elevation_ft": "64", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Gladstone", + "scheduled_service": "yes", + "gps_code": "YGLA", + "iata_code": "GLT", + "local_code": "4680", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gladstone_Airport_(Australia)" + }, + { + "id": "26995", + "ident": "YGLB", + "type": "medium_airport", + "name": "Goulburn Airport", + "latitude_deg": "-34.810298919677734", + "longitude_deg": "149.7259979248047", + "elevation_ft": "2141", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YGLB", + "iata_code": "GUL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Goulburn_Airport" + }, + { + "id": "38365", + "ident": "YGLD", + "type": "small_airport", + "name": "Glendambo Airport", + "latitude_deg": "-30.981583", + "longitude_deg": "135.777744", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Glendambo", + "scheduled_service": "no", + "gps_code": "YGLD" + }, + { + "id": "27594", + "ident": "YGLE", + "type": "small_airport", + "name": "Glengyle Airport", + "latitude_deg": "-24.808300018310547", + "longitude_deg": "139.60000610351562", + "elevation_ft": "91", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YGLE", + "iata_code": "GLG" + }, + { + "id": "26996", + "ident": "YGLI", + "type": "medium_airport", + "name": "Glen Innes Airport", + "latitude_deg": "-29.676029", + "longitude_deg": "151.691156", + "elevation_ft": "3433", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Glen Innes", + "scheduled_service": "no", + "gps_code": "YGLI", + "iata_code": "GLI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Glen_Innes_Airport" + }, + { + "id": "309695", + "ident": "YGLK", + "type": "heliport", + "name": "Glenbrook NPWS Heliport", + "latitude_deg": "-33.7876", + "longitude_deg": "150.6085", + "elevation_ft": "590", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Glenbrook National Parks & Wildlife Service", + "scheduled_service": "no", + "gps_code": "YGLK", + "local_code": "YGLK" + }, + { + "id": "27596", + "ident": "YGLN", + "type": "small_airport", + "name": "Glencoe Airport", + "latitude_deg": "-31.620644", + "longitude_deg": "148.19885", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YGLN" + }, + { + "id": "27597", + "ident": "YGLO", + "type": "small_airport", + "name": "Glenormiston Airport", + "latitude_deg": "-22.8882999420166", + "longitude_deg": "138.8249969482422", + "elevation_ft": "158", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YGLO", + "iata_code": "GLM" + }, + { + "id": "27598", + "ident": "YGLP", + "type": "small_airport", + "name": "Gallipolli Airport", + "latitude_deg": "-19.14181", + "longitude_deg": "137.87412", + "elevation_ft": "865", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Nicholson", + "scheduled_service": "no", + "gps_code": "YGLP" + }, + { + "id": "27599", + "ident": "YGLS", + "type": "small_airport", + "name": "Giles Airport", + "latitude_deg": "-25.043699264526367", + "longitude_deg": "128.29600524902344", + "elevation_ft": "579", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Warakurna", + "scheduled_service": "no", + "gps_code": "YGLS" + }, + { + "id": "38366", + "ident": "YGLY", + "type": "small_airport", + "name": "Glenayle Homestead Airport", + "latitude_deg": "-25.283300399780273", + "longitude_deg": "122.05000305175781", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YGLY" + }, + { + "id": "38367", + "ident": "YGMD", + "type": "small_airport", + "name": "Goomadeer Airport", + "latitude_deg": "-12.100000381469727", + "longitude_deg": "133.66700744628906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YGMD" + }, + { + "id": "27600", + "ident": "YGMP", + "type": "small_airport", + "name": "Grampians Airport", + "latitude_deg": "-37.048346", + "longitude_deg": "142.270367", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YGMP" + }, + { + "id": "332496", + "ident": "YGMT", + "type": "small_airport", + "name": "Greenmount ALA", + "latitude_deg": "-27.763556", + "longitude_deg": "151.925495", + "elevation_ft": "1770", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Greenmount", + "scheduled_service": "no", + "gps_code": "YGMT", + "local_code": "GNM", + "keywords": "greenmount, gnm, ala, ygmt" + }, + { + "id": "315834", + "ident": "YGN", + "type": "seaplane_base", + "name": "Greenway Sound Seaplane Base", + "latitude_deg": "50.839", + "longitude_deg": "-126.775", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Broughton Island", + "scheduled_service": "no", + "gps_code": "CYGN", + "iata_code": "YGN", + "local_code": "CYGN" + }, + { + "id": "27601", + "ident": "YGNA", + "type": "small_airport", + "name": "Granada Airport", + "latitude_deg": "-20.100000381469727", + "longitude_deg": "140.36700439453125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YGNA" + }, + { + "id": "27602", + "ident": "YGNB", + "type": "heliport", + "name": "RAAF Base Glenbrook", + "latitude_deg": "-33.761633", + "longitude_deg": "150.636255", + "elevation_ft": "640", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Glenbrook", + "scheduled_service": "no", + "gps_code": "YGNB", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAAF_Base_Glenbrook" + }, + { + "id": "38368", + "ident": "YGNF", + "type": "small_airport", + "name": "Grenfell Airport", + "latitude_deg": "-34", + "longitude_deg": "148.132995605", + "elevation_ft": "1080", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Grenfell", + "scheduled_service": "no", + "gps_code": "YGNF", + "iata_code": "GFE" + }, + { + "id": "27603", + "ident": "YGNV", + "type": "small_airport", + "name": "Greenvale Airport", + "latitude_deg": "-18.9966", + "longitude_deg": "145.0136", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YGNV", + "iata_code": "GVP" + }, + { + "id": "27604", + "ident": "YGNW", + "type": "small_airport", + "name": "Gnowangerup Airport", + "latitude_deg": "-33.978316", + "longitude_deg": "118.012819", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YGNW" + }, + { + "id": "38369", + "ident": "YGOM", + "type": "small_airport", + "name": "Goomalling Airport", + "latitude_deg": "-31.359895", + "longitude_deg": "116.891291", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YGOM" + }, + { + "id": "309003", + "ident": "YGON", + "type": "small_airport", + "name": "Mount Gordon Airport", + "latitude_deg": "-19.77265", + "longitude_deg": "139.40425", + "elevation_ft": "900", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Mount Gordon Mine", + "scheduled_service": "no", + "gps_code": "YGON", + "iata_code": "GPD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mount_Gordon_Airport" + }, + { + "id": "38370", + "ident": "YGPI", + "type": "small_airport", + "name": "Giles Point Airport", + "latitude_deg": "-23.290523", + "longitude_deg": "119.148223", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YGPI" + }, + { + "id": "27606", + "ident": "YGPR", + "type": "small_airport", + "name": "Gunpowder Airport", + "latitude_deg": "-19.700000762939453", + "longitude_deg": "139.36700439453125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YGPR" + }, + { + "id": "26997", + "ident": "YGPT", + "type": "medium_airport", + "name": "Garden Point Airport", + "latitude_deg": "-11.399686", + "longitude_deg": "130.425568", + "elevation_ft": "90", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Pirlangimpi", + "scheduled_service": "no", + "gps_code": "YGPT", + "iata_code": "GPN" + }, + { + "id": "29915", + "ident": "YGRL", + "type": "small_airport", + "name": "Great Lakes Vi Airport", + "latitude_deg": "-37.842201232910156", + "longitude_deg": "148", + "elevation_ft": "184", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YGRL" + }, + { + "id": "27607", + "ident": "YGRU", + "type": "small_airport", + "name": "Glen Ruth Airport", + "latitude_deg": "-18.08329963684082", + "longitude_deg": "145.39999389648438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YGRU" + }, + { + "id": "38372", + "ident": "YGSC", + "type": "small_airport", + "name": "Gascoyne Junction Airport", + "latitude_deg": "-25.0546", + "longitude_deg": "115.2026", + "elevation_ft": "499", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Gascoyne Junction", + "scheduled_service": "no", + "gps_code": "YGSC", + "iata_code": "GSC" + }, + { + "id": "354813", + "ident": "YGTC", + "type": "small_airport", + "name": "Gemtree Caravan Park Airstrip", + "latitude_deg": "-22.970918", + "longitude_deg": "134.247387", + "elevation_ft": "2136", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Anmatjere", + "scheduled_service": "no", + "gps_code": "YGTC", + "home_link": "https://gemtree.com.au/" + }, + { + "id": "26998", + "ident": "YGTE", + "type": "medium_airport", + "name": "Groote Eylandt Airport", + "latitude_deg": "-13.972405", + "longitude_deg": "136.458553", + "elevation_ft": "53", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Groote Eylandt", + "scheduled_service": "yes", + "gps_code": "YGTE", + "iata_code": "GTE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Groote_Eylandt_Airport" + }, + { + "id": "26999", + "ident": "YGTH", + "type": "medium_airport", + "name": "Griffith Airport", + "latitude_deg": "-34.2508010864", + "longitude_deg": "146.067001343", + "elevation_ft": "439", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Griffith", + "scheduled_service": "yes", + "gps_code": "YGTH", + "iata_code": "GFF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Griffith_Airport" + }, + { + "id": "27000", + "ident": "YGTN", + "type": "small_airport", + "name": "Georgetown Airport", + "latitude_deg": "-18.302676", + "longitude_deg": "143.530925", + "elevation_ft": "995", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YGTN", + "iata_code": "GTT" + }, + { + "id": "27608", + "ident": "YGTO", + "type": "small_airport", + "name": "Georgetown (Tas) Airport", + "latitude_deg": "-41.079368", + "longitude_deg": "146.839851", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YGTO", + "iata_code": "GEE" + }, + { + "id": "38374", + "ident": "YGUL", + "type": "small_airport", + "name": "Gullewa Airport", + "latitude_deg": "-28.646236", + "longitude_deg": "116.310158", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YGUL" + }, + { + "id": "27609", + "ident": "YGUW", + "type": "small_airport", + "name": "Gunnawarra Airport", + "latitude_deg": "-17.950000762939453", + "longitude_deg": "145.16700744628906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YGUW" + }, + { + "id": "38375", + "ident": "YGVE", + "type": "small_airport", + "name": "Glendevie Airport", + "latitude_deg": "-43.231595", + "longitude_deg": "147.000182", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YGVE" + }, + { + "id": "27610", + "ident": "YGWA", + "type": "small_airport", + "name": "Goolwa Airport", + "latitude_deg": "-35.480085", + "longitude_deg": "138.744267", + "elevation_ft": "32", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Goolwa", + "scheduled_service": "no", + "gps_code": "YGWA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Goolwa_Airport" + }, + { + "id": "27611", + "ident": "YGWD", + "type": "small_airport", + "name": "Galway Downs Airport", + "latitude_deg": "-25.188049", + "longitude_deg": "142.688777", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YGWD" + }, + { + "id": "27001", + "ident": "YGYM", + "type": "small_airport", + "name": "Gympie Airport", + "latitude_deg": "-26.290149", + "longitude_deg": "152.702998", + "elevation_ft": "260", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YGYM", + "iata_code": "GYP" + }, + { + "id": "27612", + "ident": "YHAA", + "type": "small_airport", + "name": "Haasts Bluff Airport", + "latitude_deg": "-23.454999923706", + "longitude_deg": "131.85299682617", + "elevation_ft": "2269", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YHAA" + }, + { + "id": "38376", + "ident": "YHAB", + "type": "small_airport", + "name": "Hideaway Bay Airport", + "latitude_deg": "-20.103896", + "longitude_deg": "148.445892", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YHAB" + }, + { + "id": "27613", + "ident": "YHAE", + "type": "small_airport", + "name": "Harden Airport", + "latitude_deg": "-34.562798", + "longitude_deg": "148.392687", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YHAE" + }, + { + "id": "38377", + "ident": "YHAG", + "type": "small_airport", + "name": "Haig Airport", + "latitude_deg": "-31.006449", + "longitude_deg": "126.077728", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YHAG" + }, + { + "id": "27614", + "ident": "YHAW", + "type": "small_airport", + "name": "Wilpena Pound Airport", + "latitude_deg": "-31.855907440185547", + "longitude_deg": "138.46807861328125", + "elevation_ft": "321", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Hawker", + "scheduled_service": "no", + "gps_code": "YHAW", + "iata_code": "HWK" + }, + { + "id": "27002", + "ident": "YHAY", + "type": "medium_airport", + "name": "Hay Airport", + "latitude_deg": "-34.53139877319336", + "longitude_deg": "144.8300018310547", + "elevation_ft": "305", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YHAY", + "iata_code": "HXX" + }, + { + "id": "27003", + "ident": "YHBA", + "type": "medium_airport", + "name": "Hervey Bay Airport", + "latitude_deg": "-25.320127", + "longitude_deg": "152.880662", + "elevation_ft": "60", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Hervey Bay", + "scheduled_service": "yes", + "gps_code": "YHBA", + "iata_code": "HVB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hervey_Bay_Airport" + }, + { + "id": "27615", + "ident": "YHBK", + "type": "small_airport", + "name": "Holbrook Airport", + "latitude_deg": "-35.680142", + "longitude_deg": "147.322418", + "elevation_ft": "267", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YHBK" + }, + { + "id": "38378", + "ident": "YHBR", + "type": "small_airport", + "name": "Humbert River Airport", + "latitude_deg": "-16.489669799804688", + "longitude_deg": "130.63027954101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YHBR", + "iata_code": "HUB" + }, + { + "id": "38379", + "ident": "YHBY", + "type": "small_airport", + "name": "Henbury Airport", + "latitude_deg": "-24.584", + "longitude_deg": "133.236", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Ghan", + "scheduled_service": "no", + "gps_code": "YHBY", + "iata_code": "HRY" + }, + { + "id": "29942", + "ident": "YHCT", + "type": "small_airport", + "name": "Heathcote Emergency Airport", + "latitude_deg": "-31.240299224853516", + "longitude_deg": "151.4320068359375", + "elevation_ft": "3537", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YHCT" + }, + { + "id": "38380", + "ident": "YHDD", + "type": "small_airport", + "name": "Hodgson Downs Airport", + "latitude_deg": "-15.219347", + "longitude_deg": "134.071237", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YHDD" + }, + { + "id": "27616", + "ident": "YHDY", + "type": "small_airport", + "name": "Headingly Airport", + "latitude_deg": "-21.33329963684082", + "longitude_deg": "138.2830047607422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YHDY", + "iata_code": "HIP" + }, + { + "id": "38381", + "ident": "YHEC", + "type": "small_airport", + "name": "Heck Field Airport", + "latitude_deg": "-27.7675", + "longitude_deg": "153.339444", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YHEC" + }, + { + "id": "38382", + "ident": "YHEG", + "type": "small_airport", + "name": "Hells Gate Airport", + "latitude_deg": "-17.455555", + "longitude_deg": "138.348899", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YHEG" + }, + { + "id": "38383", + "ident": "YHEW", + "type": "small_airport", + "name": "Hedlow Airport", + "latitude_deg": "-23.221954", + "longitude_deg": "150.603139", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Mulara", + "scheduled_service": "no", + "gps_code": "YHEW" + }, + { + "id": "38384", + "ident": "YHGR", + "type": "small_airport", + "name": "Hugh River Airport", + "latitude_deg": "-24.449255", + "longitude_deg": "133.708732", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YHGR" + }, + { + "id": "38385", + "ident": "YHGS", + "type": "small_airport", + "name": "Hughes Siding Airport", + "latitude_deg": "-30.716622", + "longitude_deg": "129.50808", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YHGS" + }, + { + "id": "27617", + "ident": "YHHY", + "type": "small_airport", + "name": "Highbury Airport", + "latitude_deg": "-16.4244003296", + "longitude_deg": "143.145996094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YHHY", + "iata_code": "HIG" + }, + { + "id": "27004", + "ident": "YHID", + "type": "medium_airport", + "name": "Horn Island Airport", + "latitude_deg": "-10.585628", + "longitude_deg": "142.292653", + "elevation_ft": "43", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Horn Island", + "scheduled_service": "yes", + "gps_code": "YHID", + "iata_code": "HID", + "wikipedia_link": "https://en.wikipedia.org/wiki/Horn_Island_Airport" + }, + { + "id": "27618", + "ident": "YHIL", + "type": "small_airport", + "name": "Hillside Airport", + "latitude_deg": "-21.718283", + "longitude_deg": "119.440334", + "elevation_ft": "935", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Hillside", + "scheduled_service": "no", + "gps_code": "YHIL", + "iata_code": "HLL" + }, + { + "id": "27619", + "ident": "YHKT", + "type": "small_airport", + "name": "Huckitta Airport", + "latitude_deg": "-22.943300247192383", + "longitude_deg": "135.44700622558594", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YHKT" + }, + { + "id": "27005", + "ident": "YHLC", + "type": "medium_airport", + "name": "Halls Creek Airport", + "latitude_deg": "-18.23390007019043", + "longitude_deg": "127.66999816894531", + "elevation_ft": "1346", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YHLC", + "iata_code": "HCQ" + }, + { + "id": "27620", + "ident": "YHLG", + "type": "small_airport", + "name": "Hillgrove Airport", + "latitude_deg": "-19.642499923706055", + "longitude_deg": "145.7969970703125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YHLG" + }, + { + "id": "38386", + "ident": "YHLM", + "type": "small_airport", + "name": "Hillman Farm Airport", + "latitude_deg": "-33.26390075683594", + "longitude_deg": "116.81500244140625", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YHLM" + }, + { + "id": "27006", + "ident": "YHLS", + "type": "small_airport", + "name": "Hillston Airport", + "latitude_deg": "-33.49330139160156", + "longitude_deg": "145.5229949951172", + "elevation_ft": "403", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YHLS" + }, + { + "id": "27621", + "ident": "YHMB", + "type": "small_airport", + "name": "Hermannsburg Airport", + "latitude_deg": "-23.926485", + "longitude_deg": "132.807798", + "elevation_ft": "593", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Hermannsburg (Ntaria)", + "scheduled_service": "no", + "gps_code": "YHMB", + "iata_code": "HMG" + }, + { + "id": "27007", + "ident": "YHML", + "type": "medium_airport", + "name": "Hamilton Airport", + "latitude_deg": "-37.64889907836914", + "longitude_deg": "142.06500244140625", + "elevation_ft": "803", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YHML", + "iata_code": "HLT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hamilton_Airport_(Australia)" + }, + { + "id": "38387", + "ident": "YHMT", + "type": "small_airport", + "name": "Hamilton Airport", + "latitude_deg": "-26.719999313354492", + "longitude_deg": "135.072998046875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YHMT" + }, + { + "id": "38388", + "ident": "YHOA", + "type": "small_airport", + "name": "Howard Island Airport", + "latitude_deg": "-12.095000267028809", + "longitude_deg": "135.36199951171875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YHOA" + }, + { + "id": "352694", + "ident": "YHON", + "type": "small_airport", + "name": "Honeymoon Airport", + "latitude_deg": "-31.753633", + "longitude_deg": "140.664992", + "elevation_ft": "419", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Honeymoon Uranium Mine", + "scheduled_service": "no", + "gps_code": "YHON" + }, + { + "id": "27622", + "ident": "YHOO", + "type": "small_airport", + "name": "Hooker Creek Airport", + "latitude_deg": "-18.3367004395", + "longitude_deg": "130.638000488", + "elevation_ft": "320", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Lajamanu", + "scheduled_service": "yes", + "gps_code": "YHOO", + "iata_code": "HOK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hooker_Creek_Airport" + }, + { + "id": "27008", + "ident": "YHOT", + "type": "medium_airport", + "name": "Mount Hotham Airport", + "latitude_deg": "-37.0475006104", + "longitude_deg": "147.333999634", + "elevation_ft": "4260", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Mount Hotham", + "scheduled_service": "yes", + "gps_code": "YHOT", + "iata_code": "MHU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mount_Hotham_Airport" + }, + { + "id": "27623", + "ident": "YHOV", + "type": "small_airport", + "name": "Hodgeson River Airfield", + "latitude_deg": "-15.54594", + "longitude_deg": "134.0956", + "elevation_ft": "385", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Hodgeson River", + "scheduled_service": "no", + "gps_code": "YHOV" + }, + { + "id": "27009", + "ident": "YHOX", + "type": "closed", + "name": "Hoxton Park Airport", + "latitude_deg": "-33.909698486328125", + "longitude_deg": "150.8520050048828", + "elevation_ft": "135", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YHOX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hoxton_Park_Airport" + }, + { + "id": "27624", + "ident": "YHOY", + "type": "small_airport", + "name": "Hollins Bay Airport", + "latitude_deg": "-22.273807", + "longitude_deg": "150.040326", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YHOY" + }, + { + "id": "314889", + "ident": "YHPB", + "type": "heliport", + "name": "Happy Bay Helipad", + "latitude_deg": "-20.3358", + "longitude_deg": "148.8525", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Long Island", + "scheduled_service": "no", + "gps_code": "YHPB", + "local_code": "YHPB" + }, + { + "id": "38389", + "ident": "YHPE", + "type": "small_airport", + "name": "Hopetoun Airport", + "latitude_deg": "-33.900001525878906", + "longitude_deg": "120.15799713134766", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YHPE" + }, + { + "id": "27010", + "ident": "YHPN", + "type": "medium_airport", + "name": "Hopetoun Airport", + "latitude_deg": "-35.715301513671875", + "longitude_deg": "142.36000061035156", + "elevation_ft": "256", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YHPN", + "iata_code": "HTU" + }, + { + "id": "313242", + "ident": "YHPV", + "type": "small_airport", + "name": "Hope Vale Airport", + "latitude_deg": "-15.2923", + "longitude_deg": "145.1035", + "elevation_ft": "228", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Hope Vale", + "scheduled_service": "no", + "gps_code": "YHPV", + "iata_code": "HPE", + "local_code": "YHPV" + }, + { + "id": "314893", + "ident": "YHPY", + "type": "heliport", + "name": "Happy Valley Heliport", + "latitude_deg": "-25.3363", + "longitude_deg": "153.2019", + "elevation_ft": "123", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Fraser Island", + "scheduled_service": "no", + "gps_code": "YHPY", + "local_code": "YHPY" + }, + { + "id": "27625", + "ident": "YHRD", + "type": "small_airport", + "name": "Hungerford Airport", + "latitude_deg": "-28.996261", + "longitude_deg": "144.453145", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YHRD" + }, + { + "id": "27626", + "ident": "YHRG", + "type": "small_airport", + "name": "Haddon Rig Airport", + "latitude_deg": "-31.465953", + "longitude_deg": "147.895525", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YHRG" + }, + { + "id": "38390", + "ident": "YHSB", + "type": "small_airport", + "name": "Horseshoe Bend Airport", + "latitude_deg": "-25.216699600219727", + "longitude_deg": "134.26699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YHSB" + }, + { + "id": "354668", + "ident": "YHSJ", + "type": "heliport", + "name": "Holt Street Jetty Heliport", + "latitude_deg": "-27.439755", + "longitude_deg": "153.107561", + "elevation_ft": "16", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Pinkenba", + "scheduled_service": "no", + "gps_code": "YHSJ" + }, + { + "id": "27627", + "ident": "YHSL", + "type": "small_airport", + "name": "Horseshoe Lights Airport", + "latitude_deg": "-25.350000381469727", + "longitude_deg": "118.61699676513672", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YHSL" + }, + { + "id": "27011", + "ident": "YHSM", + "type": "medium_airport", + "name": "Horsham Airport", + "latitude_deg": "-36.669700622558594", + "longitude_deg": "142.17300415039062", + "elevation_ft": "445", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YHSM", + "iata_code": "HSM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Horsham_Airport" + }, + { + "id": "38391", + "ident": "YHTA", + "type": "small_airport", + "name": "Hiltaba Airport", + "latitude_deg": "-32.14250183105469", + "longitude_deg": "135.0989990234375", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YHTA" + }, + { + "id": "38392", + "ident": "YHTL", + "type": "small_airport", + "name": "Heathlands Airport", + "latitude_deg": "-11.7369003296", + "longitude_deg": "142.57699585", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YHTL", + "iata_code": "HAT" + }, + { + "id": "27628", + "ident": "YHTN", + "type": "small_airport", + "name": "Herberton Airport", + "latitude_deg": "-17.433300018310547", + "longitude_deg": "145.39999389648438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YHTN" + }, + { + "id": "38393", + "ident": "YHTR", + "type": "small_airport", + "name": "Hunter Island Airport", + "latitude_deg": "-40.522671", + "longitude_deg": "144.741499", + "elevation_ft": "102", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Hunter Island", + "scheduled_service": "no", + "gps_code": "YHTR" + }, + { + "id": "38394", + "ident": "YHTS", + "type": "small_airport", + "name": "Harts Range Airport", + "latitude_deg": "-22.985000610351562", + "longitude_deg": "134.91799926757812", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YHTS" + }, + { + "id": "27012", + "ident": "YHUG", + "type": "small_airport", + "name": "Hughenden Airport", + "latitude_deg": "-20.815000534057617", + "longitude_deg": "144.22500610351562", + "elevation_ft": "1043", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YHUG", + "iata_code": "HGD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hughenden_Airport" + }, + { + "id": "27629", + "ident": "YHVH", + "type": "small_airport", + "name": "Harvest Home Airport", + "latitude_deg": "-20.683446", + "longitude_deg": "146.638854", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YHVH" + }, + { + "id": "27630", + "ident": "YHYD", + "type": "small_airport", + "name": "Hyden Airport", + "latitude_deg": "-32.43330001831055", + "longitude_deg": "118.86699676513672", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YHYD" + }, + { + "id": "350248", + "ident": "YHYL", + "type": "small_airport", + "name": "Hoyleton Airbase", + "latitude_deg": "-34.029171", + "longitude_deg": "138.52423", + "elevation_ft": "545", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Hoyleton", + "scheduled_service": "no", + "gps_code": "YHYL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hoyleton_Airbase" + }, + { + "id": "315732", + "ident": "YHYN", + "type": "heliport", + "name": "Hayman Island Heliport", + "latitude_deg": "-20.0599", + "longitude_deg": "148.8834", + "elevation_ft": "8", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Hayman Island Resort", + "scheduled_service": "no", + "gps_code": "YHYN", + "local_code": "YHYN" + }, + { + "id": "352213", + "ident": "YIBO", + "type": "small_airport", + "name": "Iron Bridge Mine Airport", + "latitude_deg": "-21.287575", + "longitude_deg": "118.88252", + "elevation_ft": "665", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Japal Camp", + "scheduled_service": "no", + "gps_code": "YIBO" + }, + { + "id": "27631", + "ident": "YIDK", + "type": "small_airport", + "name": "Indulkana Airport", + "latitude_deg": "-26.965435", + "longitude_deg": "133.321989", + "elevation_ft": "401", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Indulkana", + "scheduled_service": "no", + "gps_code": "YIDK", + "iata_code": "IDK" + }, + { + "id": "27632", + "ident": "YIDR", + "type": "small_airport", + "name": "Idracowra Airport", + "latitude_deg": "-25.06329917907715", + "longitude_deg": "133.73300170898438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YIDR" + }, + { + "id": "430067", + "ident": "YIFF", + "type": "small_airport", + "name": "Iffley HS Airstrip", + "latitude_deg": "-22.236667", + "longitude_deg": "148.433056", + "elevation_ft": "574", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Iffley Homestead", + "scheduled_service": "no", + "gps_code": "YIFF" + }, + { + "id": "27013", + "ident": "YIFL", + "type": "small_airport", + "name": "Innisfail Airport", + "latitude_deg": "-17.55940055847168", + "longitude_deg": "146.01199340820312", + "elevation_ft": "46", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YIFL", + "iata_code": "IFL" + }, + { + "id": "27633", + "ident": "YIFY", + "type": "small_airport", + "name": "Iffley Airport", + "latitude_deg": "-18.899999618530273", + "longitude_deg": "141.2169952392578", + "elevation_ft": "43", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YIFY", + "iata_code": "IFF" + }, + { + "id": "27014", + "ident": "YIGM", + "type": "small_airport", + "name": "Ingham Airport", + "latitude_deg": "-18.664149", + "longitude_deg": "146.145804", + "elevation_ft": "49", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YIGM", + "iata_code": "IGH" + }, + { + "id": "38395", + "ident": "YIGR", + "type": "small_airport", + "name": "Ingomar Airport", + "latitude_deg": "-29.63330078125", + "longitude_deg": "134.79299926757812", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YIGR" + }, + { + "id": "38396", + "ident": "YIKL", + "type": "small_airport", + "name": "Baikal Airport", + "latitude_deg": "-22.7632999420166", + "longitude_deg": "136.16299438476562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YIKL" + }, + { + "id": "27634", + "ident": "YIKM", + "type": "small_airport", + "name": "Inkerman Airport", + "latitude_deg": "-16.229225", + "longitude_deg": "141.434607", + "elevation_ft": "6", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Inkerman", + "scheduled_service": "no", + "gps_code": "YIKM", + "iata_code": "IKP" + }, + { + "id": "27635", + "ident": "YILA", + "type": "small_airport", + "name": "Milawa Vineyard Airport", + "latitude_deg": "-36.4561968657", + "longitude_deg": "146.43306303", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YILA" + }, + { + "id": "38397", + "ident": "YILT", + "type": "heliport", + "name": "Milton Airport", + "latitude_deg": "-35.3208007812", + "longitude_deg": "150.438995361", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YILT" + }, + { + "id": "28472", + "ident": "YILW", + "type": "small_airport", + "name": "Inglewood Airport", + "latitude_deg": "-28.4188", + "longitude_deg": "151.0955", + "elevation_ft": "840", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Inglewood", + "scheduled_service": "no", + "gps_code": "YILW" + }, + { + "id": "38398", + "ident": "YIMA", + "type": "small_airport", + "name": "Imanpa Airport", + "latitude_deg": "-25.130954", + "longitude_deg": "132.565738", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YIMA" + }, + { + "id": "27636", + "ident": "YIMB", + "type": "small_airport", + "name": "Kimba Airport", + "latitude_deg": "-33.093182", + "longitude_deg": "136.466315", + "elevation_ft": "763", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Kimba", + "scheduled_service": "no", + "gps_code": "YIMB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kimba_Airport" + }, + { + "id": "38399", + "ident": "YIMP", + "type": "small_airport", + "name": "Impadna Airport", + "latitude_deg": "-25.153831", + "longitude_deg": "133.579681", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YIMP" + }, + { + "id": "32724", + "ident": "YIMT", + "type": "small_airport", + "name": "Innamincka Township Airport", + "latitude_deg": "-27.74169921875", + "longitude_deg": "140.7449951171875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Innamincka Township", + "scheduled_service": "no", + "gps_code": "YIMT" + }, + { + "id": "27637", + "ident": "YING", + "type": "small_airport", + "name": "Ingelara Airport", + "latitude_deg": "-24.997027028", + "longitude_deg": "148.333282471", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Rewan", + "scheduled_service": "no", + "gps_code": "YING" + }, + { + "id": "27638", + "ident": "YINJ", + "type": "small_airport", + "name": "Injune Airport", + "latitude_deg": "-25.851", + "longitude_deg": "148.5497", + "elevation_ft": "401", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Injune", + "scheduled_service": "no", + "gps_code": "YINJ", + "iata_code": "INJ" + }, + { + "id": "27639", + "ident": "YINN", + "type": "small_airport", + "name": "Innamincka Airport", + "latitude_deg": "-27.697589", + "longitude_deg": "140.739498", + "elevation_ft": "54", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YINN", + "iata_code": "INM" + }, + { + "id": "27640", + "ident": "YINO", + "type": "small_airport", + "name": "Inverell North Airport", + "latitude_deg": "-29.773774", + "longitude_deg": "151.165974", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YINO" + }, + { + "id": "27641", + "ident": "YINV", + "type": "small_airport", + "name": "Inverleigh Airport", + "latitude_deg": "-18.005244", + "longitude_deg": "140.535543", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YINV" + }, + { + "id": "31689", + "ident": "YINW", + "type": "small_airport", + "name": "Inverway Airport", + "latitude_deg": "-17.8411006927", + "longitude_deg": "129.643005371", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Inverway", + "scheduled_service": "no", + "gps_code": "YINW", + "iata_code": "IVW" + }, + { + "id": "27643", + "ident": "YISD", + "type": "small_airport", + "name": "Isis Downs Airport", + "latitude_deg": "-24.216283", + "longitude_deg": "144.626341", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YISD" + }, + { + "id": "27015", + "ident": "YISF", + "type": "small_airport", + "name": "Isisford Airport", + "latitude_deg": "-24.25830078125", + "longitude_deg": "144.4250030517578", + "elevation_ft": "694", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YISF", + "iata_code": "ISI" + }, + { + "id": "27644", + "ident": "YISV", + "type": "small_airport", + "name": "Innesvale Airport", + "latitude_deg": "-15.383299827575684", + "longitude_deg": "131.26699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YISV" + }, + { + "id": "27645", + "ident": "YITT", + "type": "small_airport", + "name": "Mitta Mitta Airport", + "latitude_deg": "-36.513878741599996", + "longitude_deg": "147.359018326", + "elevation_ft": "820", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YITT", + "keywords": "Victorian Aerial Fire Bases" + }, + { + "id": "347948", + "ident": "YIVE", + "type": "small_airport", + "name": "Inverloch Airport", + "latitude_deg": "-38.612709", + "longitude_deg": "145.733481", + "elevation_ft": "100", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Inverloch", + "scheduled_service": "no", + "gps_code": "YIVE" + }, + { + "id": "27016", + "ident": "YIVL", + "type": "medium_airport", + "name": "Inverell Airport", + "latitude_deg": "-29.888299942", + "longitude_deg": "151.143997192", + "elevation_ft": "2667", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Inverell", + "scheduled_service": "no", + "gps_code": "YIVL", + "iata_code": "IVR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Inverell_Airport" + }, + { + "id": "27017", + "ident": "YIVO", + "type": "small_airport", + "name": "Ivanhoe Airport", + "latitude_deg": "-32.88330078125", + "longitude_deg": "144.30999755859375", + "elevation_ft": "330", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YIVO" + }, + { + "id": "27018", + "ident": "YJAB", + "type": "small_airport", + "name": "Jabiru Airport", + "latitude_deg": "-12.658056", + "longitude_deg": "132.894638", + "elevation_ft": "85", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YJAB", + "iata_code": "JAB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jabiru_Airport" + }, + { + "id": "27646", + "ident": "YJAK", + "type": "small_airport", + "name": "Jackson Airport", + "latitude_deg": "-27.6382999420166", + "longitude_deg": "142.4080047607422", + "elevation_ft": "106", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YJAK" + }, + { + "id": "27647", + "ident": "YJAM", + "type": "small_airport", + "name": "Jameson Airport", + "latitude_deg": "-25.850000381469727", + "longitude_deg": "127.68299865722656", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YJAM" + }, + { + "id": "27019", + "ident": "YJBY", + "type": "small_airport", + "name": "Jervis Bay Airport", + "latitude_deg": "-35.147202", + "longitude_deg": "150.697006", + "elevation_ft": "200", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-ACT", + "municipality": "Jervis Bay Territory", + "scheduled_service": "no", + "gps_code": "YJBY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jervis_Bay_Airport", + "keywords": "RAAF Jervis Bay" + }, + { + "id": "27648", + "ident": "YJCO", + "type": "small_airport", + "name": "Jericho Airport", + "latitude_deg": "-42.368329", + "longitude_deg": "147.33605", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YJCO" + }, + { + "id": "27650", + "ident": "YJDA", + "type": "small_airport", + "name": "Jundah Airport", + "latitude_deg": "-24.838045", + "longitude_deg": "143.061962", + "elevation_ft": "145", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Jundah", + "scheduled_service": "no", + "gps_code": "YJDA", + "iata_code": "JUN", + "home_link": "https://www.barcoo.qld.gov.au/community-services/airports" + }, + { + "id": "27651", + "ident": "YJEM", + "type": "small_airport", + "name": "Jemalong Airport", + "latitude_deg": "-32.523151", + "longitude_deg": "147.579796", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YJEM" + }, + { + "id": "27652", + "ident": "YJER", + "type": "small_airport", + "name": "Jerilderie Airport", + "latitude_deg": "-35.369998931884766", + "longitude_deg": "145.72500610351562", + "elevation_ft": "110", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YJER" + }, + { + "id": "27653", + "ident": "YJEY", + "type": "small_airport", + "name": "Jeedamya Airport", + "latitude_deg": "-29.408029", + "longitude_deg": "121.271163", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YJEY" + }, + { + "id": "27654", + "ident": "YJGP", + "type": "small_airport", + "name": "Jerramungup Airport", + "latitude_deg": "-33.918212", + "longitude_deg": "118.904482", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YJGP" + }, + { + "id": "38400", + "ident": "YJIG", + "type": "small_airport", + "name": "Jiggalong Mission Airport", + "latitude_deg": "-23.36669921875", + "longitude_deg": "120.78299713134766", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YJIG" + }, + { + "id": "27655", + "ident": "YJIN", + "type": "small_airport", + "name": "Jindabyne Airport", + "latitude_deg": "-36.429087", + "longitude_deg": "148.599722", + "elevation_ft": "3400", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Jindabyne", + "scheduled_service": "no", + "gps_code": "YJIN", + "home_link": "https://www.jindabyneaeroclub.org.au/", + "keywords": "QJD" + }, + { + "id": "27020", + "ident": "YJLC", + "type": "small_airport", + "name": "Julia Creek Airport", + "latitude_deg": "-20.66830062866211", + "longitude_deg": "141.72300720214844", + "elevation_ft": "404", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YJLC", + "iata_code": "JCK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Julia_Creek_Airport" + }, + { + "id": "27656", + "ident": "YJNB", + "type": "small_airport", + "name": "Jurien Bay Airport", + "latitude_deg": "-30.302699", + "longitude_deg": "115.055551", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Jurien Bay", + "scheduled_service": "no", + "gps_code": "YJUR", + "iata_code": "JUR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jurien_Bay_Airport", + "keywords": "YJNB" + }, + { + "id": "38401", + "ident": "YJNK", + "type": "small_airport", + "name": "Jinka Airport", + "latitude_deg": "-22.950000762939453", + "longitude_deg": "135.73300170898438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YJNK" + }, + { + "id": "27657", + "ident": "YJNY", + "type": "small_airport", + "name": "Jonroy Airport", + "latitude_deg": "-16.5", + "longitude_deg": "144.39999389648438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YJNY" + }, + { + "id": "27658", + "ident": "YJRO", + "type": "small_airport", + "name": "Jericho Airport", + "latitude_deg": "-23.585154", + "longitude_deg": "146.132981", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YJRO" + }, + { + "id": "27659", + "ident": "YJST", + "type": "small_airport", + "name": "Hubert Wilkins Airstrip", + "latitude_deg": "-33.1920845053", + "longitude_deg": "138.615531921", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Jamestown", + "scheduled_service": "no", + "gps_code": "YJST" + }, + { + "id": "38402", + "ident": "YJUK", + "type": "small_airport", + "name": "Tjukurla Airport", + "latitude_deg": "-24.370710372924805", + "longitude_deg": "128.7393341064453", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YJUK" + }, + { + "id": "27660", + "ident": "YJUN", + "type": "small_airport", + "name": "Jundee Airport", + "latitude_deg": "-26.42169952392578", + "longitude_deg": "120.5770034790039", + "elevation_ft": "562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YJUN" + }, + { + "id": "38403", + "ident": "YJVM", + "type": "small_airport", + "name": "Jervois Mine Airport", + "latitude_deg": "-22.63330078125", + "longitude_deg": "136.26699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YJVM" + }, + { + "id": "27661", + "ident": "YJVS", + "type": "small_airport", + "name": "Jervois Airport", + "latitude_deg": "-22.913299560546875", + "longitude_deg": "136.1199951171875", + "elevation_ft": "331", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YJVS" + }, + { + "id": "27662", + "ident": "YJWB", + "type": "small_airport", + "name": "Jowalbinna Airport", + "latitude_deg": "-15.73330020904541", + "longitude_deg": "144.26699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YJWB" + }, + { + "id": "38404", + "ident": "YKAE", + "type": "small_airport", + "name": "Kalannie Airport", + "latitude_deg": "-30.360004", + "longitude_deg": "117.121634", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YKAE" + }, + { + "id": "27663", + "ident": "YKAJ", + "type": "small_airport", + "name": "Kajabbi Airport", + "latitude_deg": "-20.033300399780273", + "longitude_deg": "140.0330047607422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YKAJ" + }, + { + "id": "27664", + "ident": "YKAL", + "type": "small_airport", + "name": "Kalumburu Airport", + "latitude_deg": "-14.288299560546875", + "longitude_deg": "126.63200378417969", + "elevation_ft": "29", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YKAL", + "iata_code": "UBU" + }, + { + "id": "38405", + "ident": "YKAN", + "type": "small_airport", + "name": "Kanandah Airport", + "latitude_deg": "-30.899822", + "longitude_deg": "124.862065", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YKAN" + }, + { + "id": "27665", + "ident": "YKAP", + "type": "small_airport", + "name": "Kapunda Airport", + "latitude_deg": "-34.247027", + "longitude_deg": "138.914105", + "elevation_ft": "1200", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Kapunda", + "scheduled_service": "no", + "gps_code": "YKAP" + }, + { + "id": "27666", + "ident": "YKAT", + "type": "small_airport", + "name": "Katoomba Airport", + "latitude_deg": "-33.668301", + "longitude_deg": "150.322998", + "elevation_ft": "1000", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YKAT" + }, + { + "id": "27667", + "ident": "YKAY", + "type": "small_airport", + "name": "Kayrunnera Airport", + "latitude_deg": "-30.679257", + "longitude_deg": "142.537136", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YKAY" + }, + { + "id": "38406", + "ident": "YKBG", + "type": "small_airport", + "name": "Koolyanobbing Range Airport", + "latitude_deg": "-30.840599060058594", + "longitude_deg": "119.52899932861328", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YKBG" + }, + { + "id": "27668", + "ident": "YKBL", + "type": "small_airport", + "name": "Kambalda Airport", + "latitude_deg": "-31.1907", + "longitude_deg": "121.5978", + "elevation_ft": "1073", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Kambalda", + "scheduled_service": "no", + "gps_code": "YKBL", + "iata_code": "KDB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kambalda_Airport" + }, + { + "id": "27669", + "ident": "YKBN", + "type": "small_airport", + "name": "Kooralbyn Airport", + "latitude_deg": "-28.089331", + "longitude_deg": "152.846544", + "elevation_ft": "94", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YKBN" + }, + { + "id": "27670", + "ident": "YKBR", + "type": "small_airport", + "name": "Kalbarri Airport", + "latitude_deg": "-27.692813", + "longitude_deg": "114.259169", + "elevation_ft": "157", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Kalbarri", + "scheduled_service": "yes", + "gps_code": "YKBR", + "iata_code": "KAX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kalbarri_Airport" + }, + { + "id": "27021", + "ident": "YKBY", + "type": "small_airport", + "name": "Streaky Bay Airport", + "latitude_deg": "-32.836621", + "longitude_deg": "134.292991", + "elevation_ft": "69", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YKBY", + "iata_code": "KBY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Streaky_Bay_Airport" + }, + { + "id": "38407", + "ident": "YKCA", + "type": "small_airport", + "name": "Kings Canyon Airport", + "latitude_deg": "-24.260229", + "longitude_deg": "131.488924", + "elevation_ft": "2100", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Petermann", + "scheduled_service": "no", + "gps_code": "YKCA", + "iata_code": "KBJ" + }, + { + "id": "27671", + "ident": "YKCK", + "type": "small_airport", + "name": "Killiecrankie Airport", + "latitude_deg": "-39.84880065917969", + "longitude_deg": "147.85800170898438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YKCK" + }, + { + "id": "27672", + "ident": "YKCS", + "type": "small_airport", + "name": "Kings Creek Airport", + "latitude_deg": "-24.421285", + "longitude_deg": "131.819458", + "elevation_ft": "615", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Petermann", + "scheduled_service": "no", + "gps_code": "YKCS", + "iata_code": "KCS" + }, + { + "id": "352071", + "ident": "YKDD", + "type": "small_airport", + "name": "Koodaideri Mine Airport", + "latitude_deg": "-22.504291", + "longitude_deg": "119.07683", + "elevation_ft": "1473", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Koodaideri Mine", + "scheduled_service": "no", + "gps_code": "YKDD", + "iata_code": "OOD", + "home_link": "https://www.riotinto.com/en/news/releases/2020/WAs-newest-airport-opens-at-Rio-Tintos-Gudai-Darri-mine", + "keywords": "Gudai-Darri" + }, + { + "id": "27673", + "ident": "YKDI", + "type": "small_airport", + "name": "Kadina Airport", + "latitude_deg": "-33.96963", + "longitude_deg": "137.659748", + "elevation_ft": "42", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YKDI" + }, + { + "id": "38408", + "ident": "YKDL", + "type": "small_airport", + "name": "Kondoolka Airport", + "latitude_deg": "-32.02389907836914", + "longitude_deg": "134.86099243164062", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YKDL" + }, + { + "id": "27674", + "ident": "YKDM", + "type": "small_airport", + "name": "Kidman Springs Airport", + "latitude_deg": "-16.11669921875", + "longitude_deg": "130.9530029296875", + "elevation_ft": "88", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YKDM" + }, + { + "id": "27675", + "ident": "YKDN", + "type": "small_airport", + "name": "Kondinin Airport", + "latitude_deg": "-32.467409", + "longitude_deg": "118.269882", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YKDN" + }, + { + "id": "27676", + "ident": "YKEB", + "type": "small_airport", + "name": "Kellerberrin Airport", + "latitude_deg": "-31.616819", + "longitude_deg": "117.718787", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YKEB" + }, + { + "id": "30022", + "ident": "YKEL", + "type": "small_airport", + "name": "Kelvin Station Airport", + "latitude_deg": "-30.655000686645508", + "longitude_deg": "151.63800048828125", + "elevation_ft": "3383", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YKEL" + }, + { + "id": "27677", + "ident": "YKEN", + "type": "small_airport", + "name": "Kenmore Park Airport", + "latitude_deg": "-26.33329963684082", + "longitude_deg": "132.4669952392578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YKEN" + }, + { + "id": "27678", + "ident": "YKEP", + "type": "small_airport", + "name": "Lake Keepit Airport", + "latitude_deg": "-30.8911034242", + "longitude_deg": "150.526149273", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YKEP" + }, + { + "id": "27022", + "ident": "YKER", + "type": "medium_airport", + "name": "Kerang Airport", + "latitude_deg": "-35.751399993896484", + "longitude_deg": "143.93899536132812", + "elevation_ft": "254", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YKER", + "iata_code": "KRA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kerang_Airport" + }, + { + "id": "27679", + "ident": "YKFC", + "type": "small_airport", + "name": "Kingfisher Camp Airport", + "latitude_deg": "-17.84945", + "longitude_deg": "138.28871", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YKFC" + }, + { + "id": "38409", + "ident": "YKGA", + "type": "small_airport", + "name": "Kingoonya Airport", + "latitude_deg": "-30.914376", + "longitude_deg": "135.307252", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Kingoonya", + "scheduled_service": "no", + "gps_code": "YKGA" + }, + { + "id": "27680", + "ident": "YKHA", + "type": "small_airport", + "name": "Khancoban Airport", + "latitude_deg": "-36.215919970399995", + "longitude_deg": "148.113742828", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YKHA" + }, + { + "id": "38410", + "ident": "YKHG", + "type": "small_airport", + "name": "Katherine Gorge Airport", + "latitude_deg": "-14.385302", + "longitude_deg": "132.39315", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YKHG" + }, + { + "id": "38411", + "ident": "YKIA", + "type": "small_airport", + "name": "Kiana Station Airport", + "latitude_deg": "-17.24169921875", + "longitude_deg": "136.1750030517578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YKIA" + }, + { + "id": "27681", + "ident": "YKID", + "type": "small_airport", + "name": "Kidston Airport", + "latitude_deg": "-18.8700008392334", + "longitude_deg": "144.17300415039062", + "elevation_ft": "494", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YKID" + }, + { + "id": "27682", + "ident": "YKIG", + "type": "small_airport", + "name": "Kingston Airport", + "latitude_deg": "-36.823299407958984", + "longitude_deg": "139.875", + "elevation_ft": "2", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YKIG" + }, + { + "id": "27023", + "ident": "YKII", + "type": "medium_airport", + "name": "King Island Airport", + "latitude_deg": "-39.877498626708984", + "longitude_deg": "143.8780059814453", + "elevation_ft": "132", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "yes", + "gps_code": "YKII", + "iata_code": "KNS", + "wikipedia_link": "https://en.wikipedia.org/wiki/King_Island_Airport" + }, + { + "id": "27683", + "ident": "YKIL", + "type": "small_airport", + "name": "Kildurk Airport", + "latitude_deg": "-16.431699752807617", + "longitude_deg": "129.61500549316406", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YKIL" + }, + { + "id": "31722", + "ident": "YKIR", + "type": "small_airport", + "name": "Kirkimbie Station Airport", + "latitude_deg": "-17.7791996002", + "longitude_deg": "129.210006714", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Kirkimbie", + "scheduled_service": "no", + "gps_code": "YKIR", + "iata_code": "KBB" + }, + { + "id": "27684", + "ident": "YKIU", + "type": "small_airport", + "name": "Kaiuroo Airport", + "latitude_deg": "-23.088925", + "longitude_deg": "149.431925", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YKIU" + }, + { + "id": "27024", + "ident": "YKKG", + "type": "small_airport", + "name": "Kalkgurung Airport", + "latitude_deg": "-17.431900024414062", + "longitude_deg": "130.80799865722656", + "elevation_ft": "646", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "yes", + "gps_code": "YKKG", + "iata_code": "KFG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kalkurung_Airport" + }, + { + "id": "38413", + "ident": "YKKH", + "type": "small_airport", + "name": "Kokatha Airport", + "latitude_deg": "-31.29170036315918", + "longitude_deg": "135.24200439453125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YKKH" + }, + { + "id": "27685", + "ident": "YKLA", + "type": "small_airport", + "name": "Koolatah Airport", + "latitude_deg": "-15.888600349399999", + "longitude_deg": "142.438995361", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YKLA", + "iata_code": "KOH" + }, + { + "id": "31755", + "ident": "YKLB", + "type": "small_airport", + "name": "Koolburra Airport", + "latitude_deg": "-15.318900108337402", + "longitude_deg": "143.9550018310547", + "elevation_ft": "350", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Koolburra", + "scheduled_service": "no", + "gps_code": "YKLB", + "iata_code": "KKP" + }, + { + "id": "27686", + "ident": "YKLE", + "type": "small_airport", + "name": "Killarney Airport", + "latitude_deg": "-16.25", + "longitude_deg": "131.7469940185547", + "elevation_ft": "194", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YKLE" + }, + { + "id": "27687", + "ident": "YKLG", + "type": "small_airport", + "name": "Kalinga Airport", + "latitude_deg": "-15.202823", + "longitude_deg": "143.850217", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YKLG" + }, + { + "id": "27688", + "ident": "YKLL", + "type": "small_airport", + "name": "Kallala Airport", + "latitude_deg": "-21.75", + "longitude_deg": "138.88299560546875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YKLL" + }, + { + "id": "27689", + "ident": "YKLN", + "type": "small_airport", + "name": "Killarney Airport", + "latitude_deg": "-15.399999618530273", + "longitude_deg": "143.5", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YKLN" + }, + { + "id": "38414", + "ident": "YKLR", + "type": "small_airport", + "name": "Kalamurina Airport", + "latitude_deg": "-27.716699600219727", + "longitude_deg": "138.26199340820312", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YKLR" + }, + { + "id": "27690", + "ident": "YKMB", + "type": "small_airport", + "name": "Karumba Airport", + "latitude_deg": "-17.45669937133789", + "longitude_deg": "140.8300018310547", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YKMB", + "iata_code": "KRB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Karumba_Airport" + }, + { + "id": "27691", + "ident": "YKML", + "type": "small_airport", + "name": "Kamileroi Airport", + "latitude_deg": "-19.375", + "longitude_deg": "140.0570068359375", + "elevation_ft": "91", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YKML", + "iata_code": "KML" + }, + { + "id": "27025", + "ident": "YKMP", + "type": "medium_airport", + "name": "Kempsey Airport", + "latitude_deg": "-31.074399948120117", + "longitude_deg": "152.77000427246094", + "elevation_ft": "54", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YKMP", + "iata_code": "KPS" + }, + { + "id": "38415", + "ident": "YKNC", + "type": "closed", + "name": "Kencherang Airport", + "latitude_deg": "-13.846594", + "longitude_deg": "141.590417", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Aurukun", + "scheduled_service": "no", + "gps_code": "YKNC" + }, + { + "id": "27692", + "ident": "YKNG", + "type": "small_airport", + "name": "Katanning Airport", + "latitude_deg": "-33.699423", + "longitude_deg": "117.65703", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YKNG", + "iata_code": "KNI" + }, + { + "id": "38416", + "ident": "YKNM", + "type": "small_airport", + "name": "Koonmarra Airport", + "latitude_deg": "-26.274628", + "longitude_deg": "117.78896", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YKNM" + }, + { + "id": "27693", + "ident": "YKNP", + "type": "small_airport", + "name": "Kununoppin Airport", + "latitude_deg": "-31.123497", + "longitude_deg": "117.906046", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YKNP" + }, + { + "id": "27694", + "ident": "YKNT", + "type": "small_airport", + "name": "Kintore Airport", + "latitude_deg": "-23.264999389648438", + "longitude_deg": "129.38699340820312", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YKNT" + }, + { + "id": "27695", + "ident": "YKNV", + "type": "small_airport", + "name": "Kaniva Airport", + "latitude_deg": "-36.340918", + "longitude_deg": "141.267964", + "elevation_ft": "446", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Kaniva", + "scheduled_service": "no", + "gps_code": "YKNV" + }, + { + "id": "38417", + "ident": "YKOG", + "type": "small_airport", + "name": "Koongarra Airport", + "latitude_deg": "-36", + "longitude_deg": "142.2169952392578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YKOG" + }, + { + "id": "27696", + "ident": "YKOJ", + "type": "small_airport", + "name": "Kojonup Airport", + "latitude_deg": "-33.762523", + "longitude_deg": "117.136574", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YKOJ" + }, + { + "id": "27697", + "ident": "YKOK", + "type": "small_airport", + "name": "Kookynie Airport", + "latitude_deg": "-29.34328", + "longitude_deg": "121.493168", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YKOK" + }, + { + "id": "38418", + "ident": "YKOL", + "type": "small_airport", + "name": "Kolendo Airport", + "latitude_deg": "-32.41579818725586", + "longitude_deg": "136.29800415039062", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YKOL" + }, + { + "id": "27026", + "ident": "YKOW", + "type": "medium_airport", + "name": "Kowanyama Airport", + "latitude_deg": "-15.48516", + "longitude_deg": "141.751852", + "elevation_ft": "35", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Kowanyama", + "scheduled_service": "yes", + "gps_code": "YKOW", + "iata_code": "KWM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kowanyama_Airport" + }, + { + "id": "27698", + "ident": "YKPR", + "type": "small_airport", + "name": "Kalpowar Airport", + "latitude_deg": "-14.89", + "longitude_deg": "144.22", + "elevation_ft": "90", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Kalpower", + "scheduled_service": "no", + "gps_code": "YKPR", + "iata_code": "KPP" + }, + { + "id": "27699", + "ident": "YKRV", + "type": "small_airport", + "name": "Kendall River Airport", + "latitude_deg": "-13.74389", + "longitude_deg": "142.130985", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YKRV" + }, + { + "id": "27027", + "ident": "YKRY", + "type": "medium_airport", + "name": "Kingaroy Airport", + "latitude_deg": "-26.581077", + "longitude_deg": "151.839927", + "elevation_ft": "1492", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YKRY", + "iata_code": "KGY" + }, + { + "id": "27028", + "ident": "YKSC", + "type": "medium_airport", + "name": "Kingscote Airport", + "latitude_deg": "-35.71390151977539", + "longitude_deg": "137.52099609375", + "elevation_ft": "24", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "yes", + "gps_code": "YKSC", + "iata_code": "KGC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kingscote_Airport" + }, + { + "id": "308529", + "ident": "YKT", + "type": "seaplane_base", + "name": "Klemtu Water Aerodrome", + "latitude_deg": "52.6076345452", + "longitude_deg": "-128.521757126", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Klemtu", + "scheduled_service": "no", + "iata_code": "YKT" + }, + { + "id": "27700", + "ident": "YKTA", + "type": "small_airport", + "name": "Kotta Airport", + "latitude_deg": "-36.1797981262207", + "longitude_deg": "144.52499389648438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YKTA" + }, + { + "id": "38419", + "ident": "YKTH", + "type": "small_airport", + "name": "Keith Airport", + "latitude_deg": "-36.115135", + "longitude_deg": "140.252237", + "elevation_ft": "79", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Keith", + "scheduled_service": "no", + "gps_code": "YKTH" + }, + { + "id": "27701", + "ident": "YKTN", + "type": "small_airport", + "name": "Kyneton Airport", + "latitude_deg": "-37.2262620936", + "longitude_deg": "144.44729805", + "elevation_ft": "1650", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Kyneton", + "scheduled_service": "no", + "gps_code": "YKTN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kyneton_Airport" + }, + { + "id": "27029", + "ident": "YKUB", + "type": "small_airport", + "name": "Kubin Airport", + "latitude_deg": "-10.225000381500001", + "longitude_deg": "142.218002319", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Moa Island", + "scheduled_service": "yes", + "gps_code": "YKUB", + "iata_code": "KUG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kubin_Island_Airport" + }, + { + "id": "313808", + "ident": "YKUR", + "type": "small_airport", + "name": "Kurundi Airport", + "latitude_deg": "-20.51", + "longitude_deg": "134.6706", + "elevation_ft": "1340", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Kurundi Station", + "scheduled_service": "no", + "gps_code": "YKUR", + "iata_code": "KRD", + "local_code": "YKUR" + }, + { + "id": "38420", + "ident": "YKUW", + "type": "small_airport", + "name": "Kurweeton Airport", + "latitude_deg": "-38.04999923706055", + "longitude_deg": "143.14999389648438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YKUW" + }, + { + "id": "27702", + "ident": "YKUY", + "type": "small_airport", + "name": "Kurray Airport", + "latitude_deg": "-28.221763", + "longitude_deg": "148.578124", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YKUY" + }, + { + "id": "38421", + "ident": "YKWG", + "type": "small_airport", + "name": "Kangaroo Well Airport", + "latitude_deg": "-31.78499984741211", + "longitude_deg": "135.63800048828125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YKWG" + }, + { + "id": "27703", + "ident": "YKYB", + "type": "small_airport", + "name": "Kyabram Airport", + "latitude_deg": "-36.332482365299995", + "longitude_deg": "144.972066879", + "elevation_ft": "340", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Private Airfield in the Shire of Campaspe", + "scheduled_service": "no", + "gps_code": "YKYB" + }, + { + "id": "27704", + "ident": "YKYN", + "type": "small_airport", + "name": "Kynuna Airport", + "latitude_deg": "-21.598769", + "longitude_deg": "141.942871", + "elevation_ft": "669", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Kynuna", + "scheduled_service": "no", + "gps_code": "YKYN" + }, + { + "id": "38422", + "ident": "YLAG", + "type": "small_airport", + "name": "Lagoon Bay Airport", + "latitude_deg": "-42.886934", + "longitude_deg": "147.954863", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YLAG" + }, + { + "id": "27705", + "ident": "YLAH", + "type": "small_airport", + "name": "Lawn Hill Airport", + "latitude_deg": "-18.568300247192383", + "longitude_deg": "138.63499450683594", + "elevation_ft": "122", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YLAH", + "iata_code": "LWH" + }, + { + "id": "32727", + "ident": "YLAK", + "type": "small_airport", + "name": "Lakeside Airpark", + "latitude_deg": "-20.680866", + "longitude_deg": "148.630348", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Lakeside", + "scheduled_service": "no", + "gps_code": "YLAK" + }, + { + "id": "38423", + "ident": "YLAM", + "type": "small_airport", + "name": "Lambina Airport", + "latitude_deg": "-26.913299560546875", + "longitude_deg": "134.05799865722656", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YLAM" + }, + { + "id": "38424", + "ident": "YLAN", + "type": "small_airport", + "name": "Langawirra Airport", + "latitude_deg": "-31.442361", + "longitude_deg": "142.137766", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YLAN" + }, + { + "id": "27706", + "ident": "YLAO", + "type": "small_airport", + "name": "Lameroo Airport", + "latitude_deg": "-35.36669921875", + "longitude_deg": "140.5500030517578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YLAO" + }, + { + "id": "27707", + "ident": "YLAW", + "type": "small_airport", + "name": "Lawlers Airport", + "latitude_deg": "-28.091764", + "longitude_deg": "120.538516", + "elevation_ft": "1598", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YLAW" + }, + { + "id": "350252", + "ident": "YLBA", + "type": "small_airport", + "name": "Labona Airport", + "latitude_deg": "-22.003936", + "longitude_deg": "146.363854", + "elevation_ft": "810", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Carmichael Coal Mine", + "scheduled_service": "no", + "gps_code": "YLBA" + }, + { + "id": "27708", + "ident": "YLBD", + "type": "small_airport", + "name": "Lombadina Airport", + "latitude_deg": "-16.515333", + "longitude_deg": "122.923509", + "elevation_ft": "154", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Dampier Peninsula", + "scheduled_service": "no", + "gps_code": "YLBD" + }, + { + "id": "38425", + "ident": "YLBG", + "type": "small_airport", + "name": "Mount Liebig Airport", + "latitude_deg": "-23.24329948425293", + "longitude_deg": "131.25999450683594", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YLBG" + }, + { + "id": "27709", + "ident": "YLBO", + "type": "small_airport", + "name": "Lake Bolac Airport", + "latitude_deg": "-37.68330001831055", + "longitude_deg": "142.88299560546875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YLBO" + }, + { + "id": "27710", + "ident": "YLCG", + "type": "small_airport", + "name": "Lake Cargelligo Airport", + "latitude_deg": "-33.282822", + "longitude_deg": "146.375447", + "elevation_ft": "169", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YLCG" + }, + { + "id": "27711", + "ident": "YLCI", + "type": "closed", + "name": "Lancelin Airport", + "latitude_deg": "-31.016666666699997", + "longitude_deg": "115.333333333", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Lancelin", + "scheduled_service": "no", + "gps_code": "YLCI" + }, + { + "id": "27712", + "ident": "YLCS", + "type": "small_airport", + "name": "Locksley Field", + "latitude_deg": "-36.814998626708984", + "longitude_deg": "145.34800720214844", + "elevation_ft": "165", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YLCS" + }, + { + "id": "27713", + "ident": "YLDB", + "type": "small_airport", + "name": "Lady Barron (Flinders Is) Airport", + "latitude_deg": "-40.20000076293945", + "longitude_deg": "148.25", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YLDB" + }, + { + "id": "38426", + "ident": "YLDO", + "type": "small_airport", + "name": "Landor Station Airport", + "latitude_deg": "-25.100000381469727", + "longitude_deg": "116.9000015258789", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YLDO" + }, + { + "id": "27714", + "ident": "YLEA", + "type": "small_airport", + "name": "Leeman Airport", + "latitude_deg": "-29.969974", + "longitude_deg": "114.983066", + "elevation_ft": "2", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Leeman", + "scheduled_service": "no", + "gps_code": "YLEA" + }, + { + "id": "27030", + "ident": "YLEC", + "type": "medium_airport", + "name": "Leigh Creek Airport", + "latitude_deg": "-30.598301", + "longitude_deg": "138.425995", + "elevation_ft": "856", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YLEC", + "iata_code": "LGH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leigh_Creek_Airport" + }, + { + "id": "27715", + "ident": "YLED", + "type": "small_airport", + "name": "Lethbridge Airpark", + "latitude_deg": "-37.921233", + "longitude_deg": "144.103058", + "elevation_ft": "790", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YLED", + "local_code": "YLED", + "home_link": "http://www.lethbridgeairport.com.au" + }, + { + "id": "38427", + "ident": "YLEE", + "type": "small_airport", + "name": "Leeton Airport", + "latitude_deg": "-34.499788", + "longitude_deg": "146.446646", + "elevation_ft": "460", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YLEE" + }, + { + "id": "27031", + "ident": "YLEG", + "type": "small_airport", + "name": "Leongatha Airport", + "latitude_deg": "-38.493099212646484", + "longitude_deg": "145.86000061035156", + "elevation_ft": "263", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YLEG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leongatha_Airport" + }, + { + "id": "27032", + "ident": "YLEO", + "type": "medium_airport", + "name": "Leonora Airport", + "latitude_deg": "-28.87809944152832", + "longitude_deg": "121.31500244140625", + "elevation_ft": "1217", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Leonora", + "scheduled_service": "yes", + "gps_code": "YLEO", + "iata_code": "LNO", + "home_link": "http://www.leonora.wa.gov.au/services_facilities/airport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leonora_Airport" + }, + { + "id": "38428", + "ident": "YLET", + "type": "small_airport", + "name": "Lakes Entrance Airport", + "latitude_deg": "-37.852773", + "longitude_deg": "147.951164", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YLET" + }, + { + "id": "27033", + "ident": "YLEV", + "type": "small_airport", + "name": "Lake Evella Airport", + "latitude_deg": "-12.498900413513184", + "longitude_deg": "135.80599975585938", + "elevation_ft": "256", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "yes", + "gps_code": "YLEV", + "iata_code": "LEL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_Evella_Airport" + }, + { + "id": "27716", + "ident": "YLFD", + "type": "small_airport", + "name": "Lakefield Airport", + "latitude_deg": "-14.9207", + "longitude_deg": "144.203", + "elevation_ft": "107", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Lakefield", + "scheduled_service": "no", + "gps_code": "YLFD", + "iata_code": "LFP" + }, + { + "id": "38429", + "ident": "YLGA", + "type": "small_airport", + "name": "Mulga Downs Airport", + "latitude_deg": "-22.107200622558594", + "longitude_deg": "118.47100067138672", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YLGA" + }, + { + "id": "38430", + "ident": "YLGB", + "type": "small_airport", + "name": "La Grange Bay Airport", + "latitude_deg": "-18.6833", + "longitude_deg": "121.807999", + "elevation_ft": "96", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YLGB" + }, + { + "id": "27717", + "ident": "YLGC", + "type": "small_airport", + "name": "Lake Grace Airport", + "latitude_deg": "-33.106911", + "longitude_deg": "118.389375", + "elevation_ft": "936", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Lake Grace", + "scheduled_service": "no", + "gps_code": "YLGC" + }, + { + "id": "38431", + "ident": "YLGD", + "type": "small_airport", + "name": "Longdown Airport", + "latitude_deg": "-41.691234", + "longitude_deg": "147.143296", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YLGD" + }, + { + "id": "27718", + "ident": "YLGL", + "type": "small_airport", + "name": "Laglan Airport", + "latitude_deg": "-22.5", + "longitude_deg": "146.66700744628906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YLGL" + }, + { + "id": "27719", + "ident": "YLGN", + "type": "small_airport", + "name": "Loongana Airport", + "latitude_deg": "-30.940771", + "longitude_deg": "127.028781", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YLGN" + }, + { + "id": "27720", + "ident": "YLGU", + "type": "small_airport", + "name": "Legune Airport", + "latitude_deg": "-15.215372", + "longitude_deg": "129.448629", + "elevation_ft": "26", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YLGU" + }, + { + "id": "27721", + "ident": "YLHI", + "type": "small_airport", + "name": "Lord Howe Island Airport", + "latitude_deg": "-31.538204", + "longitude_deg": "159.07546", + "elevation_ft": "5", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Lord Howe Island", + "scheduled_service": "yes", + "gps_code": "YLHI", + "iata_code": "LDH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lord_Howe_Island_Airport" + }, + { + "id": "27722", + "ident": "YLHL", + "type": "small_airport", + "name": "Long Hill Airport", + "latitude_deg": "-41.33330154418945", + "longitude_deg": "146.5", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YLHL" + }, + { + "id": "27034", + "ident": "YLHR", + "type": "medium_airport", + "name": "Lockhart River Airport", + "latitude_deg": "-12.7869", + "longitude_deg": "143.304993", + "elevation_ft": "77", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Lockhart River", + "scheduled_service": "yes", + "gps_code": "YLHR", + "iata_code": "IRG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lockhart_River_Airport" + }, + { + "id": "31858", + "ident": "YLHS", + "type": "small_airport", + "name": "Lyndhurst Airport", + "latitude_deg": "-19.1958007812", + "longitude_deg": "144.371002197", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Lyndhurst", + "scheduled_service": "no", + "gps_code": "YLHS", + "iata_code": "LTP" + }, + { + "id": "27723", + "ident": "YLIL", + "type": "small_airport", + "name": "Lilydale Airport", + "latitude_deg": "-37.6917", + "longitude_deg": "145.367004", + "elevation_ft": "242", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YLIL", + "home_link": "https://www.yarravalleyaviation.com.au/" + }, + { + "id": "31820", + "ident": "YLIM", + "type": "small_airport", + "name": "Limbunya Airport", + "latitude_deg": "-17.2355995178", + "longitude_deg": "129.882003784", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Limbunya", + "scheduled_service": "no", + "gps_code": "YLIM", + "iata_code": "LIB" + }, + { + "id": "31800", + "ident": "YLIN", + "type": "small_airport", + "name": "Lindeman Island Airport", + "latitude_deg": "-20.4535999298", + "longitude_deg": "149.039993286", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Lindeman Island", + "scheduled_service": "no", + "gps_code": "YLIN", + "iata_code": "LDC" + }, + { + "id": "27035", + "ident": "YLIS", + "type": "medium_airport", + "name": "Lismore Airport", + "latitude_deg": "-28.830689", + "longitude_deg": "153.258419", + "elevation_ft": "35", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Lismore", + "scheduled_service": "yes", + "gps_code": "YLIS", + "iata_code": "LSY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lismore_Airport" + }, + { + "id": "27725", + "ident": "YLKD", + "type": "small_airport", + "name": "Lucky Downs Airport", + "latitude_deg": "-18.910527", + "longitude_deg": "144.996843", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YLKD" + }, + { + "id": "27726", + "ident": "YLKE", + "type": "small_airport", + "name": "Lakes Entrance Airport", + "latitude_deg": "-37.852699279785156", + "longitude_deg": "147.95799255371094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YLKE" + }, + { + "id": "30061", + "ident": "YLKG", + "type": "small_airport", + "name": "Lake King Airport", + "latitude_deg": "-33.079200744628906", + "longitude_deg": "119.76599884033203", + "elevation_ft": "1276", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YLKG" + }, + { + "id": "38434", + "ident": "YLKN", + "type": "small_airport", + "name": "Lake Nash Airport", + "latitude_deg": "-20.9807", + "longitude_deg": "137.9178", + "elevation_ft": "640", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Alpurrurulam", + "scheduled_service": "no", + "gps_code": "YLKN", + "iata_code": "LNH" + }, + { + "id": "38435", + "ident": "YLLA", + "type": "small_airport", + "name": "Mobella Airport", + "latitude_deg": "-29.79829978942871", + "longitude_deg": "133.34500122070312", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YLLA" + }, + { + "id": "27727", + "ident": "YLLC", + "type": "small_airport", + "name": "Lilla Creek Airport", + "latitude_deg": "-25.55791", + "longitude_deg": "134.07114", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YLLC" + }, + { + "id": "27728", + "ident": "YLLD", + "type": "small_airport", + "name": "Langlo Downs Airport", + "latitude_deg": "-25.533300399780273", + "longitude_deg": "145.76699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YLLD" + }, + { + "id": "27036", + "ident": "YLLE", + "type": "small_airport", + "name": "Ballera Airport", + "latitude_deg": "-27.405633", + "longitude_deg": "141.809458", + "elevation_ft": "385", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YLLE", + "iata_code": "BBL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ballera_Airport" + }, + { + "id": "27729", + "ident": "YLLR", + "type": "small_airport", + "name": "Lake Leagur Airport", + "latitude_deg": "-35.983299255371094", + "longitude_deg": "143.8000030517578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YLLR" + }, + { + "id": "27730", + "ident": "YLLV", + "type": "small_airport", + "name": "Lily Vale Airport", + "latitude_deg": "-14.48330020904541", + "longitude_deg": "143.66700744628906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YLLV" + }, + { + "id": "27731", + "ident": "YLMB", + "type": "small_airport", + "name": "Lambrook Airport", + "latitude_deg": "-31.100000381469727", + "longitude_deg": "149.93299865722656", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YLMB" + }, + { + "id": "27880", + "ident": "YLMQ", + "type": "small_airport", + "name": "Lake Macquarie Airport", + "latitude_deg": "-33.065975", + "longitude_deg": "151.646283", + "elevation_ft": "2", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YLMQ", + "iata_code": "BEO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_Macquarie_Airport" + }, + { + "id": "27732", + "ident": "YLMU", + "type": "small_airport", + "name": "Mungo Lodge Airport", + "latitude_deg": "-33.7458244463", + "longitude_deg": "143.001308441", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Mungo", + "scheduled_service": "no", + "gps_code": "YLMU" + }, + { + "id": "27733", + "ident": "YLND", + "type": "small_airport", + "name": "Lakeland Airport", + "latitude_deg": "-15.841213", + "longitude_deg": "144.849118", + "elevation_ft": "930", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Lakeland Downs", + "scheduled_service": "no", + "gps_code": "YLND", + "iata_code": "LKD" + }, + { + "id": "38436", + "ident": "YLNR", + "type": "small_airport", + "name": "Landor Races Airport", + "latitude_deg": "-24.931339", + "longitude_deg": "116.966946", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YLNR" + }, + { + "id": "38437", + "ident": "YLOC", + "type": "small_airport", + "name": "Lochinvar Airport", + "latitude_deg": "-20.75830078125", + "longitude_deg": "121.01699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YLOC" + }, + { + "id": "38438", + "ident": "YLOD", + "type": "small_airport", + "name": "Longwood Airport", + "latitude_deg": "-36.801648", + "longitude_deg": "145.459868", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YLOD" + }, + { + "id": "32729", + "ident": "YLOH", + "type": "small_airport", + "name": "Louth Airport", + "latitude_deg": "-30.531414", + "longitude_deg": "145.128413", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Louth", + "scheduled_service": "no", + "gps_code": "YLOH" + }, + { + "id": "31840", + "ident": "YLOK", + "type": "small_airport", + "name": "Lock Airport", + "latitude_deg": "-33.5442008972168", + "longitude_deg": "135.6929931640625", + "elevation_ft": "350", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Lock", + "scheduled_service": "no", + "gps_code": "YLOK", + "iata_code": "LOC" + }, + { + "id": "27734", + "ident": "YLOR", + "type": "small_airport", + "name": "Lorraine Airport", + "latitude_deg": "-18.99329948425293", + "longitude_deg": "139.90699768066406", + "elevation_ft": "61", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YLOR", + "iata_code": "LOA" + }, + { + "id": "38439", + "ident": "YLOU", + "type": "small_airport", + "name": "Louisa Downs Airport", + "latitude_deg": "-18.716699600219727", + "longitude_deg": "126.71700286865234", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YLOU" + }, + { + "id": "31859", + "ident": "YLOV", + "type": "small_airport", + "name": "Lotus Vale Airport", + "latitude_deg": "-17.048299789399998", + "longitude_deg": "141.37600708", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Lotus Vale", + "scheduled_service": "no", + "gps_code": "YLOV", + "iata_code": "LTV" + }, + { + "id": "27736", + "ident": "YLOX", + "type": "small_airport", + "name": "Loxton Airport", + "latitude_deg": "-34.474998474121094", + "longitude_deg": "140.66299438476562", + "elevation_ft": "38", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YLOX" + }, + { + "id": "38440", + "ident": "YLOY", + "type": "small_airport", + "name": "Longwarry Airport", + "latitude_deg": "-38.108299255371094", + "longitude_deg": "145.7779998779297", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YLOY" + }, + { + "id": "308530", + "ident": "YLP", + "type": "small_airport", + "name": "Mingan Airport", + "latitude_deg": "50.2869", + "longitude_deg": "-64.1528", + "elevation_ft": "70", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Longue-Pointe-de-Mingan", + "scheduled_service": "no", + "iata_code": "YLP", + "keywords": "Longue-Pointe-de-Mingan" + }, + { + "id": "38441", + "ident": "YLPR", + "type": "closed", + "name": "Lake Pedder Airport", + "latitude_deg": "-43.049999237061", + "longitude_deg": "146.33299255371", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YLPR" + }, + { + "id": "27737", + "ident": "YLRA", + "type": "small_airport", + "name": "Laura Airport", + "latitude_deg": "-15.560495", + "longitude_deg": "144.451418", + "elevation_ft": "627", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YLRA", + "iata_code": "LUU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Laura_Airport" + }, + { + "id": "27037", + "ident": "YLRD", + "type": "medium_airport", + "name": "Lightning Ridge Airport", + "latitude_deg": "-29.452857", + "longitude_deg": "147.977146", + "elevation_ft": "540", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "yes", + "gps_code": "YLRD", + "iata_code": "LHG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lightning_Ridge_Airport" + }, + { + "id": "27038", + "ident": "YLRE", + "type": "medium_airport", + "name": "Longreach Airport", + "latitude_deg": "-23.4342002869", + "longitude_deg": "144.279998779", + "elevation_ft": "627", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Longreach", + "scheduled_service": "yes", + "gps_code": "YLRE", + "iata_code": "LRE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Longreach_Airport" + }, + { + "id": "38442", + "ident": "YLRG", + "type": "small_airport", + "name": "Lorna Glen Homestead Airport", + "latitude_deg": "-26.231386", + "longitude_deg": "121.558549", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YLRG" + }, + { + "id": "38443", + "ident": "YLRN", + "type": "small_airport", + "name": "Lorraine Station Airport", + "latitude_deg": "-22.533300399780273", + "longitude_deg": "143.51699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YLRN" + }, + { + "id": "27738", + "ident": "YLRS", + "type": "small_airport", + "name": "New Laura Airport", + "latitude_deg": "-15.182758", + "longitude_deg": "144.345535", + "elevation_ft": "148", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Laura Station", + "scheduled_service": "no", + "gps_code": "YLRS", + "iata_code": "LUT" + }, + { + "id": "350217", + "ident": "YLSK", + "type": "small_airport", + "name": "Luskintyre Airfield", + "latitude_deg": "-32.666294", + "longitude_deg": "151.420226", + "elevation_ft": "112", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Luskintyre", + "scheduled_service": "no", + "gps_code": "YLSK" + }, + { + "id": "27739", + "ident": "YLSM", + "type": "small_airport", + "name": "Lismore Airport", + "latitude_deg": "-37.93330001831055", + "longitude_deg": "143.35000610351562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YLSM" + }, + { + "id": "27740", + "ident": "YLSS", + "type": "small_airport", + "name": "Lansdowne Airport", + "latitude_deg": "-25.049999237060547", + "longitude_deg": "146.26699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YLSS" + }, + { + "id": "27039", + "ident": "YLST", + "type": "medium_airport", + "name": "Leinster Airport", + "latitude_deg": "-27.843299865722656", + "longitude_deg": "120.7030029296875", + "elevation_ft": "1631", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "yes", + "gps_code": "YLST", + "iata_code": "LER", + "wikipedia_link": "https://en.wikipedia.org/wiki/Leinster_Airport" + }, + { + "id": "38444", + "ident": "YLSY", + "type": "small_airport", + "name": "Mount Lindsay Airport", + "latitude_deg": "-27.018299102783203", + "longitude_deg": "129.88499450683594", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YLSY" + }, + { + "id": "27040", + "ident": "YLTN", + "type": "small_airport", + "name": "Laverton Airport", + "latitude_deg": "-28.614267", + "longitude_deg": "122.428673", + "elevation_ft": "1530", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Laverton", + "scheduled_service": "yes", + "gps_code": "YLTN", + "iata_code": "LVO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Laverton_Airport" + }, + { + "id": "27041", + "ident": "YLTV", + "type": "medium_airport", + "name": "Latrobe Valley Airport", + "latitude_deg": "-38.211004", + "longitude_deg": "146.470817", + "elevation_ft": "180", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Morwell", + "scheduled_service": "no", + "gps_code": "YLTV", + "iata_code": "TGN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Latrobe_Valley_Airport", + "keywords": "Traralgon, Morwell" + }, + { + "id": "27741", + "ident": "YLUC", + "type": "small_airport", + "name": "Lucy Creek Airport", + "latitude_deg": "-22.466699600219727", + "longitude_deg": "136.26699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YLUC" + }, + { + "id": "38445", + "ident": "YLUI", + "type": "small_airport", + "name": "Lucindale Airport", + "latitude_deg": "-36.97169876098633", + "longitude_deg": "140.3520050048828", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YLUI" + }, + { + "id": "27742", + "ident": "YLUL", + "type": "small_airport", + "name": "Mooleulooloo Airport", + "latitude_deg": "-31.643356", + "longitude_deg": "140.512948", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YLUL" + }, + { + "id": "38446", + "ident": "YLUW", + "type": "small_airport", + "name": "Leeuwin Estate Airport", + "latitude_deg": "-34.020973", + "longitude_deg": "115.064471", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Margaret River", + "scheduled_service": "no", + "gps_code": "YLUW" + }, + { + "id": "27743", + "ident": "YLVB", + "type": "small_airport", + "name": "Lovely Banks Airport", + "latitude_deg": "-38.03329849243164", + "longitude_deg": "144.33299255371094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YLVB" + }, + { + "id": "38447", + "ident": "YLVD", + "type": "small_airport", + "name": "Lake Everard Airport", + "latitude_deg": "-31.733299255371094", + "longitude_deg": "135.02699279785156", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YLVD" + }, + { + "id": "27744", + "ident": "YLVK", + "type": "small_airport", + "name": "Lavarack (Military) Airport", + "latitude_deg": "-19.318602", + "longitude_deg": "146.770674", + "elevation_ft": "9", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Townsville", + "scheduled_service": "no", + "gps_code": "YLVK" + }, + { + "id": "27745", + "ident": "YLVT", + "type": "closed", + "name": "RAAF Williams, Laverton Base", + "latitude_deg": "-37.86360168457031", + "longitude_deg": "144.74600219726562", + "elevation_ft": "18", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Laverton", + "scheduled_service": "no", + "gps_code": "YLVT", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAAF_Williams#RAAF_Williams_Laverton_Base" + }, + { + "id": "38448", + "ident": "YLVY", + "type": "small_airport", + "name": "Lake Varley Airport", + "latitude_deg": "-32.719561", + "longitude_deg": "119.505758", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YLVY" + }, + { + "id": "38449", + "ident": "YLWY", + "type": "small_airport", + "name": "Lake Way Airport", + "latitude_deg": "-26.94499969482422", + "longitude_deg": "120.47000122070312", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YLWY" + }, + { + "id": "38450", + "ident": "YLYD", + "type": "small_airport", + "name": "Lyndley Airport", + "latitude_deg": "-26.827307", + "longitude_deg": "151.23009", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YLYD" + }, + { + "id": "27746", + "ident": "YLYK", + "type": "small_airport", + "name": "Lyndoch Airport", + "latitude_deg": "-34.61828", + "longitude_deg": "138.911362", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Lyndoch", + "scheduled_service": "no", + "gps_code": "YLYK" + }, + { + "id": "27747", + "ident": "YLYN", + "type": "small_airport", + "name": "Lyndon Airport", + "latitude_deg": "-23.641301", + "longitude_deg": "115.235392", + "elevation_ft": "735", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YLYN" + }, + { + "id": "27042", + "ident": "YLZI", + "type": "small_airport", + "name": "Lizard Island Airport", + "latitude_deg": "-14.673273", + "longitude_deg": "145.454571", + "elevation_ft": "70", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YLZI", + "iata_code": "LZR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lizard_Island_Airport" + }, + { + "id": "32503", + "ident": "YMAA", + "type": "small_airport", + "name": "Mabuiag Island Airport", + "latitude_deg": "-9.950168", + "longitude_deg": "142.19523", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Mabuiag Island", + "scheduled_service": "yes", + "gps_code": "YMAA", + "iata_code": "UBB" + }, + { + "id": "38451", + "ident": "YMAC", + "type": "small_airport", + "name": "Macumba Airport", + "latitude_deg": "-27.261699676513672", + "longitude_deg": "135.63800048828125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YMAC" + }, + { + "id": "27749", + "ident": "YMAD", + "type": "small_airport", + "name": "Madura Airport", + "latitude_deg": "-31.887825", + "longitude_deg": "127.025573", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMAD" + }, + { + "id": "31993", + "ident": "YMAE", + "type": "small_airport", + "name": "Murray Island Airport", + "latitude_deg": "-9.915105", + "longitude_deg": "144.054644", + "elevation_ft": "300", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Murray Island", + "scheduled_service": "yes", + "gps_code": "YMAE", + "iata_code": "MYI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Murray_Island_Airport", + "keywords": "Mer Island, Maer Island" + }, + { + "id": "38452", + "ident": "YMAG", + "type": "small_airport", + "name": "Manangatang Airport", + "latitude_deg": "-35.046783", + "longitude_deg": "142.861705", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YMAG" + }, + { + "id": "38453", + "ident": "YMAI", + "type": "small_airport", + "name": "Manguri Airport", + "latitude_deg": "-28.986814", + "longitude_deg": "134.391354", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Manguri", + "scheduled_service": "no", + "gps_code": "YMAI" + }, + { + "id": "38454", + "ident": "YMAK", + "type": "small_airport", + "name": "Mabel Creek Station Airport", + "latitude_deg": "-28.928918", + "longitude_deg": "134.328547", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Mabel Creek", + "scheduled_service": "no", + "gps_code": "YMAK" + }, + { + "id": "309255", + "ident": "YMAT", + "type": "heliport", + "name": "Mater Hospital Helipad", + "latitude_deg": "-27.48543", + "longitude_deg": "153.02839", + "elevation_ft": "180", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Brisbane", + "scheduled_service": "no", + "gps_code": "YMAT", + "local_code": "YMAT" + }, + { + "id": "27750", + "ident": "YMAU", + "type": "small_airport", + "name": "Mount Augusta Airport", + "latitude_deg": "-24.301734", + "longitude_deg": "116.906676", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMAU" + }, + { + "id": "27043", + "ident": "YMAV", + "type": "medium_airport", + "name": "Avalon Airport", + "latitude_deg": "-38.039398", + "longitude_deg": "144.468994", + "elevation_ft": "35", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Lara", + "scheduled_service": "yes", + "gps_code": "YMAV", + "iata_code": "AVV", + "home_link": "https://www.avalonairport.com.au/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Avalon_Airport", + "keywords": "Lara, Geelong" + }, + { + "id": "27044", + "ident": "YMAY", + "type": "medium_airport", + "name": "Albury Airport", + "latitude_deg": "-36.066758", + "longitude_deg": "146.959148", + "elevation_ft": "539", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Albury", + "scheduled_service": "yes", + "gps_code": "YMAY", + "iata_code": "ABX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Albury_Airport" + }, + { + "id": "27045", + "ident": "YMBA", + "type": "medium_airport", + "name": "Mareeba Airport", + "latitude_deg": "-17.06920051574707", + "longitude_deg": "145.41900634765625", + "elevation_ft": "1560", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMBA", + "iata_code": "MRG" + }, + { + "id": "27751", + "ident": "YMBD", + "type": "small_airport", + "name": "Murray Bridge Airport", + "latitude_deg": "-35.066202", + "longitude_deg": "139.227326", + "elevation_ft": "180", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YMBD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Murray_Bridge_Airport", + "keywords": "Pallamana Aerodrome, Pallamanna Airfield" + }, + { + "id": "27752", + "ident": "YMBL", + "type": "small_airport", + "name": "Marble Bar Airport", + "latitude_deg": "-21.163299560546875", + "longitude_deg": "119.83300018310547", + "elevation_ft": "194", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMBL", + "iata_code": "MBB" + }, + { + "id": "27753", + "ident": "YMBT", + "type": "small_airport", + "name": "Mount Beauty Airport", + "latitude_deg": "-36.7315756754", + "longitude_deg": "147.168903351", + "elevation_ft": "1100", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Mount Beauty", + "scheduled_service": "no", + "gps_code": "YMBT", + "keywords": "Victorian Aerial Fire Bases" + }, + { + "id": "27046", + "ident": "YMBU", + "type": "small_airport", + "name": "Maryborough Airport", + "latitude_deg": "-37.03310012817383", + "longitude_deg": "143.70899963378906", + "elevation_ft": "766", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YMBU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maryborough_Airport_(Victoria)" + }, + { + "id": "32730", + "ident": "YMBX", + "type": "small_airport", + "name": "Mundrabilla Airport", + "latitude_deg": "-31.86720085144043", + "longitude_deg": "127.85399627685547", + "elevation_ft": "120", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Mundrabilla", + "scheduled_service": "no", + "gps_code": "YMBX" + }, + { + "id": "38455", + "ident": "YMBZ", + "type": "small_airport", + "name": "Mount Ebenezer Airport", + "latitude_deg": "-25.169763", + "longitude_deg": "132.643107", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMBZ" + }, + { + "id": "38456", + "ident": "YMCE", + "type": "small_airport", + "name": "Mount Clere Homestead Airport", + "latitude_deg": "-25.100000381469727", + "longitude_deg": "117.58300018310547", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMCE" + }, + { + "id": "27754", + "ident": "YMCK", + "type": "small_airport", + "name": "Mckinley Airport", + "latitude_deg": "-21.283300399780273", + "longitude_deg": "141.28799438476562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMCK" + }, + { + "id": "27755", + "ident": "YMCL", + "type": "small_airport", + "name": "Mount Coolon Airport", + "latitude_deg": "-21.387231", + "longitude_deg": "147.331295", + "elevation_ft": "239", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMCL" + }, + { + "id": "27756", + "ident": "YMCO", + "type": "small_airport", + "name": "Mallacoota Airport", + "latitude_deg": "-37.59830093383789", + "longitude_deg": "149.72000122070312", + "elevation_ft": "31", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YMCO", + "iata_code": "XMC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mallacoota_Airport" + }, + { + "id": "27757", + "ident": "YMCR", + "type": "small_airport", + "name": "Manners Creek Airport", + "latitude_deg": "-22.100000381469727", + "longitude_deg": "137.98300170898438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMCR", + "iata_code": "MFP" + }, + { + "id": "27758", + "ident": "YMCS", + "type": "small_airport", + "name": "Macrossan Airport", + "latitude_deg": "-20.013053", + "longitude_deg": "146.483728", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMCS" + }, + { + "id": "27047", + "ident": "YMCT", + "type": "small_airport", + "name": "Millicent Airport", + "latitude_deg": "-37.58359909057617", + "longitude_deg": "140.36599731445312", + "elevation_ft": "56", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YMCT", + "iata_code": "MLR" + }, + { + "id": "27759", + "ident": "YMCU", + "type": "small_airport", + "name": "Mount Mcclure Airport", + "latitude_deg": "-27.469999313354492", + "longitude_deg": "120.91699981689453", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMCU" + }, + { + "id": "27760", + "ident": "YMDA", + "type": "small_airport", + "name": "Mundubbera Airport", + "latitude_deg": "-25.591699600219727", + "longitude_deg": "151.31700134277344", + "elevation_ft": "122", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMDA" + }, + { + "id": "38457", + "ident": "YMDB", + "type": "small_airport", + "name": "Mundabullangana Airport", + "latitude_deg": "-20.50949", + "longitude_deg": "118.059479", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMDB" + }, + { + "id": "27048", + "ident": "YMDG", + "type": "medium_airport", + "name": "Mudgee Airport", + "latitude_deg": "-32.564794", + "longitude_deg": "149.609452", + "elevation_ft": "1545", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Mudgee", + "scheduled_service": "no", + "gps_code": "YMDG", + "iata_code": "DGE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mudgee_Airport" + }, + { + "id": "31942", + "ident": "YMDI", + "type": "small_airport", + "name": "Mandora Airport", + "latitude_deg": "-19.7383003235", + "longitude_deg": "120.837997437", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Mandora", + "scheduled_service": "no", + "gps_code": "YMDI", + "iata_code": "MQA" + }, + { + "id": "27761", + "ident": "YMDK", + "type": "small_airport", + "name": "Mount Riddock Airport", + "latitude_deg": "-23.033300399780273", + "longitude_deg": "134.68299865722656", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMDK" + }, + { + "id": "27762", + "ident": "YMDN", + "type": "small_airport", + "name": "Merredin Airport", + "latitude_deg": "-31.522028", + "longitude_deg": "118.322067", + "elevation_ft": "396", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMDN" + }, + { + "id": "38459", + "ident": "YMDR", + "type": "small_airport", + "name": "Minderoo Station Airport", + "latitude_deg": "-21.993059", + "longitude_deg": "115.053066", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMDR" + }, + { + "id": "38460", + "ident": "YMDS", + "type": "small_airport", + "name": "Macdonald Downs Airport", + "latitude_deg": "-22.444000244099996", + "longitude_deg": "135.199005127", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMDS", + "iata_code": "MNW" + }, + { + "id": "38461", + "ident": "YMDT", + "type": "small_airport", + "name": "Mundrabilla Motel Airport", + "latitude_deg": "-31.82670021057129", + "longitude_deg": "128.22999572753906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMDT" + }, + { + "id": "27763", + "ident": "YMDV", + "type": "small_airport", + "name": "Mount Davies Airport", + "latitude_deg": "-26.16670036315918", + "longitude_deg": "129.13299560546875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YMDV" + }, + { + "id": "38462", + "ident": "YMDW", + "type": "small_airport", + "name": "Maitland Downs Airport", + "latitude_deg": "-16.22330093383789", + "longitude_deg": "144.7030029296875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMDW" + }, + { + "id": "27049", + "ident": "YMDY", + "type": "small_airport", + "name": "Mount Bundey Airport", + "latitude_deg": "-12.890000343322754", + "longitude_deg": "131.9080047607422", + "elevation_ft": "150", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMDY" + }, + { + "id": "38463", + "ident": "YMDZ", + "type": "small_airport", + "name": "Mardi Station Airport", + "latitude_deg": "-21.210079", + "longitude_deg": "115.962367", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMDZ" + }, + { + "id": "38464", + "ident": "YMEB", + "type": "small_airport", + "name": "Mount Eba Airport", + "latitude_deg": "-30.178595", + "longitude_deg": "135.673599", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Mount Eba", + "scheduled_service": "no", + "gps_code": "YMEB" + }, + { + "id": "38465", + "ident": "YMED", + "type": "small_airport", + "name": "Menindee Airport", + "latitude_deg": "-32.366699", + "longitude_deg": "142.404999", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Menindee", + "scheduled_service": "no", + "gps_code": "YMED" + }, + { + "id": "27764", + "ident": "YMEI", + "type": "small_airport", + "name": "Mereenie Airport", + "latitude_deg": "-23.976699829101562", + "longitude_deg": "131.56199645996094", + "elevation_ft": "735", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMEI" + }, + { + "id": "27050", + "ident": "YMEK", + "type": "medium_airport", + "name": "Meekatharra Airport", + "latitude_deg": "-26.6117000579834", + "longitude_deg": "118.5479965209961", + "elevation_ft": "1713", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "yes", + "gps_code": "YMEK", + "iata_code": "MKR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Meekatharra_Airport" + }, + { + "id": "27765", + "ident": "YMEL", + "type": "small_airport", + "name": "Melton Airport", + "latitude_deg": "-37.621793", + "longitude_deg": "144.565053", + "elevation_ft": "204", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Melton", + "scheduled_service": "no", + "gps_code": "YMEL", + "home_link": "http://www.meltonairservices.com.au/index.php?sec=home", + "keywords": "Foggarty's Field," + }, + { + "id": "27051", + "ident": "YMEN", + "type": "medium_airport", + "name": "Melbourne Essendon Airport", + "latitude_deg": "-37.7281", + "longitude_deg": "144.901993", + "elevation_ft": "282", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Essendon Fields", + "scheduled_service": "yes", + "gps_code": "YMEN", + "iata_code": "MEB", + "home_link": "http://www.essendonairport.com.au/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Essendon_Airport" + }, + { + "id": "27766", + "ident": "YMEO", + "type": "small_airport", + "name": "Merton Airport", + "latitude_deg": "-36.967704", + "longitude_deg": "145.707616", + "elevation_ft": "1101", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Merton", + "scheduled_service": "no", + "gps_code": "YMEO" + }, + { + "id": "38466", + "ident": "YMEP", + "type": "small_airport", + "name": "Merapah Airport", + "latitude_deg": "-13.724541", + "longitude_deg": "142.411394", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMEP" + }, + { + "id": "27052", + "ident": "YMER", + "type": "medium_airport", + "name": "Merimbula Airport", + "latitude_deg": "-36.9085998535", + "longitude_deg": "149.901000977", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Merimbula", + "scheduled_service": "yes", + "gps_code": "YMER", + "iata_code": "MIM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Merimbula_Airport" + }, + { + "id": "27053", + "ident": "YMES", + "type": "medium_airport", + "name": "RAAF Base East Sale", + "latitude_deg": "-38.098899841299996", + "longitude_deg": "147.149002075", + "elevation_ft": "23", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YMES", + "home_link": "http://www.defence.gov.au/raaf/bases/eastsale/index.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/West_Sale_Airport" + }, + { + "id": "38467", + "ident": "YMEU", + "type": "small_airport", + "name": "Merluna Airport", + "latitude_deg": "-13.0649", + "longitude_deg": "142.4536", + "elevation_ft": "276", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Merluna", + "scheduled_service": "no", + "gps_code": "YMEU", + "iata_code": "MLV" + }, + { + "id": "27767", + "ident": "YMEW", + "type": "small_airport", + "name": "Mingenew Airport", + "latitude_deg": "-29.268131", + "longitude_deg": "115.443048", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMEW" + }, + { + "id": "38468", + "ident": "YMEY", + "type": "small_airport", + "name": "Mullaley Airport", + "latitude_deg": "-31.100000381469727", + "longitude_deg": "149.91700744628906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YMEY" + }, + { + "id": "27768", + "ident": "YMFD", + "type": "small_airport", + "name": "Mansfield Airport", + "latitude_deg": "-37.073875", + "longitude_deg": "146.120669", + "elevation_ft": "1050", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YMFD" + }, + { + "id": "27054", + "ident": "YMGB", + "type": "small_airport", + "name": "Milingimbi Airport", + "latitude_deg": "-12.0944004059", + "longitude_deg": "134.893997192", + "elevation_ft": "53", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Milingimbi Island", + "scheduled_service": "yes", + "gps_code": "YMGB", + "iata_code": "MGT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Milingimbi_Airport" + }, + { + "id": "27055", + "ident": "YMGD", + "type": "medium_airport", + "name": "Maningrida Airport", + "latitude_deg": "-12.0560998917", + "longitude_deg": "134.23399353", + "elevation_ft": "123", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Maningrida", + "scheduled_service": "yes", + "gps_code": "YMGD", + "iata_code": "MNG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maningrida_Airport" + }, + { + "id": "38469", + "ident": "YMGG", + "type": "small_airport", + "name": "Mulgathing Airport", + "latitude_deg": "-30.227378", + "longitude_deg": "133.988335", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YMGG" + }, + { + "id": "27056", + "ident": "YMGI", + "type": "small_airport", + "name": "Mungindi Airport", + "latitude_deg": "-28.966613", + "longitude_deg": "149.052978", + "elevation_ft": "600", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YMGI" + }, + { + "id": "31551", + "ident": "YMGN", + "type": "small_airport", + "name": "Mount Gunson Airport", + "latitude_deg": "-31.4597", + "longitude_deg": "137.174443333", + "elevation_ft": "285", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Mount Gunson", + "scheduled_service": "no", + "gps_code": "YMGN", + "iata_code": "GSN" + }, + { + "id": "27769", + "ident": "YMGO", + "type": "small_airport", + "name": "Murgoo Airport", + "latitude_deg": "-27.36669921875", + "longitude_deg": "116.41699981689453", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMGO" + }, + { + "id": "27770", + "ident": "YMGR", + "type": "small_airport", + "name": "Margaret River (Station) Airport", + "latitude_deg": "-18.6217002869", + "longitude_deg": "126.883003235", + "elevation_ft": "289", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMGR", + "iata_code": "MGV" + }, + { + "id": "38470", + "ident": "YMGS", + "type": "small_airport", + "name": "Mount Morgans Airport", + "latitude_deg": "-28.789648", + "longitude_deg": "122.038348", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMGS" + }, + { + "id": "27057", + "ident": "YMGT", + "type": "small_airport", + "name": "Margaret River Airport", + "latitude_deg": "-33.9305992126", + "longitude_deg": "115.099998474", + "elevation_ft": "374", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMGT", + "iata_code": "MQZ" + }, + { + "id": "27771", + "ident": "YMGV", + "type": "small_airport", + "name": "Musgrave Airport", + "latitude_deg": "-14.7757", + "longitude_deg": "143.5047", + "elevation_ft": "302", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Musgrave", + "scheduled_service": "no", + "gps_code": "YMGV", + "iata_code": "MVU" + }, + { + "id": "27058", + "ident": "YMHB", + "type": "medium_airport", + "name": "Hobart International Airport", + "latitude_deg": "-42.836101532", + "longitude_deg": "147.509994507", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Hobart", + "scheduled_service": "yes", + "gps_code": "YMHB", + "iata_code": "HBA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hobart_International_Airport" + }, + { + "id": "27772", + "ident": "YMHL", + "type": "small_airport", + "name": "Mount Holland Airport", + "latitude_deg": "-32.112824", + "longitude_deg": "119.765739", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMHL" + }, + { + "id": "27773", + "ident": "YMHO", + "type": "small_airport", + "name": "Mount House Airport", + "latitude_deg": "-17.051917", + "longitude_deg": "125.712491", + "elevation_ft": "948", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Wunaamin Miliwundi Ranges", + "scheduled_service": "no", + "gps_code": "YMHO", + "iata_code": "MHO" + }, + { + "id": "309254", + "ident": "YMHP", + "type": "heliport", + "name": "Mackay Base Hospital Helipad", + "latitude_deg": "-21.14543", + "longitude_deg": "149.15445", + "elevation_ft": "34", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Mackay", + "scheduled_service": "no", + "gps_code": "YMHP", + "local_code": "YMHP" + }, + { + "id": "38471", + "ident": "YMHT", + "type": "small_airport", + "name": "Mount Hart Station Airport", + "latitude_deg": "-16.823129", + "longitude_deg": "124.913858", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMHT" + }, + { + "id": "27059", + "ident": "YMHU", + "type": "small_airport", + "name": "McArthur River Mine Airport", + "latitude_deg": "-16.4424991608", + "longitude_deg": "136.083999634", + "elevation_ft": "131", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "McArthur River Mine", + "scheduled_service": "yes", + "gps_code": "YMHU", + "iata_code": "MCV", + "wikipedia_link": "https://en.wikipedia.org/wiki/McArthur_River_Mine_Airport" + }, + { + "id": "27774", + "ident": "YMHW", + "type": "small_airport", + "name": "Mount Howitt Airport", + "latitude_deg": "-26.511699676513672", + "longitude_deg": "142.2830047607422", + "elevation_ft": "105", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMHW" + }, + { + "id": "27060", + "ident": "YMIA", + "type": "medium_airport", + "name": "Mildura Airport", + "latitude_deg": "-34.229198455799995", + "longitude_deg": "142.085998535", + "elevation_ft": "167", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Mildura", + "scheduled_service": "yes", + "gps_code": "YMIA", + "iata_code": "MQL", + "home_link": "http://www.milduraairport.com.au/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mildura_Airport" + }, + { + "id": "27775", + "ident": "YMIB", + "type": "small_airport", + "name": "Mintabie Airport", + "latitude_deg": "-27.329685", + "longitude_deg": "133.302784", + "elevation_ft": "366", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Mintabie", + "scheduled_service": "no", + "gps_code": "YMIB" + }, + { + "id": "27776", + "ident": "YMIG", + "type": "small_airport", + "name": "Mittagong Airport", + "latitude_deg": "-34.450184", + "longitude_deg": "150.497411", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Mittagong", + "scheduled_service": "no", + "gps_code": "YMIG", + "keywords": "Mittgong" + }, + { + "id": "27777", + "ident": "YMIJ", + "type": "small_airport", + "name": "Minjilang Airport", + "latitude_deg": "-11.160058", + "longitude_deg": "132.539549", + "elevation_ft": "25", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMIJ" + }, + { + "id": "38472", + "ident": "YMIL", + "type": "small_airport", + "name": "Milgun Airport", + "latitude_deg": "-25.08329963684082", + "longitude_deg": "118.33300018310547", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMIL" + }, + { + "id": "27778", + "ident": "YMIN", + "type": "small_airport", + "name": "Minlaton Airport", + "latitude_deg": "-34.743801", + "longitude_deg": "137.529087", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YMIN", + "iata_code": "XML" + }, + { + "id": "31909", + "ident": "YMIP", + "type": "small_airport", + "name": "Mitchell Plateau Airport", + "latitude_deg": "-14.791399955749512", + "longitude_deg": "125.8239974975586", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Mitchell Plateau", + "scheduled_service": "no", + "gps_code": "YMIP", + "iata_code": "MIH" + }, + { + "id": "31980", + "ident": "YMIR", + "type": "small_airport", + "name": "Miranda Downs Airport", + "latitude_deg": "-17.328899", + "longitude_deg": "141.886002", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Miranda Downs", + "scheduled_service": "no", + "gps_code": "YMIR", + "iata_code": "MWY" + }, + { + "id": "38473", + "ident": "YMIS", + "type": "small_airport", + "name": "Millrose Homestead Airport", + "latitude_deg": "-26.399999618530273", + "longitude_deg": "120.94999694824219", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMIS" + }, + { + "id": "27061", + "ident": "YMIT", + "type": "small_airport", + "name": "Mitchell Airport", + "latitude_deg": "-26.483299255371094", + "longitude_deg": "147.93699645996094", + "elevation_ft": "1144", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMIT", + "iata_code": "MTQ" + }, + { + "id": "38474", + "ident": "YMIV", + "type": "small_airport", + "name": "Mount Ive Airport", + "latitude_deg": "-32.44419860839844", + "longitude_deg": "136.06900024414062", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YMIV" + }, + { + "id": "38475", + "ident": "YMIX", + "type": "small_airport", + "name": "Middalya Homestead Airport", + "latitude_deg": "-23.906709", + "longitude_deg": "114.7649", + "elevation_ft": "433", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Minilya", + "scheduled_service": "no", + "gps_code": "YMIX" + }, + { + "id": "38476", + "ident": "YMJE", + "type": "small_airport", + "name": "Mount James Airport", + "latitude_deg": "-24.634184", + "longitude_deg": "116.943755", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMJE" + }, + { + "id": "27062", + "ident": "YMJM", + "type": "small_airport", + "name": "Manjimup Airport", + "latitude_deg": "-34.26530075073242", + "longitude_deg": "116.13999938964844", + "elevation_ft": "940", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMJM", + "iata_code": "MJP", + "home_link": "http://www.manjimupwa.com", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shire_of_Manjimup" + }, + { + "id": "27780", + "ident": "YMKA", + "type": "small_airport", + "name": "Mararanka Homestead Airport", + "latitude_deg": "-14.928779", + "longitude_deg": "133.135457", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMKA" + }, + { + "id": "27781", + "ident": "YMKB", + "type": "small_airport", + "name": "Mukinbudin Airport", + "latitude_deg": "-30.918453", + "longitude_deg": "118.254808", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMKB" + }, + { + "id": "27782", + "ident": "YMKT", + "type": "small_airport", + "name": "Emkaytee (Unlic) Airport", + "latitude_deg": "-12.610144", + "longitude_deg": "131.053333", + "elevation_ft": "78", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Weddell", + "scheduled_service": "no", + "gps_code": "YMKT", + "home_link": "http://tefcnt.weebly.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/MKT_Airfield", + "keywords": "MKT Airfield, Top End Flying Club" + }, + { + "id": "38477", + "ident": "YMLA", + "type": "small_airport", + "name": "Malina Airport", + "latitude_deg": "-20.88330078125", + "longitude_deg": "118.03299713134766", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMLA" + }, + { + "id": "38478", + "ident": "YMLC", + "type": "small_airport", + "name": "Mole Creek Airport", + "latitude_deg": "-41.53329849243164", + "longitude_deg": "146.33299255371094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YMLC" + }, + { + "id": "27784", + "ident": "YMLD", + "type": "small_airport", + "name": "Maitland Airport", + "latitude_deg": "-34.39117", + "longitude_deg": "137.707717", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YMLD" + }, + { + "id": "27785", + "ident": "YMLK", + "type": "small_airport", + "name": "Minnamoolka Airport", + "latitude_deg": "-18.183300018310547", + "longitude_deg": "145.16700744628906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMLK" + }, + { + "id": "38479", + "ident": "YMLL", + "type": "small_airport", + "name": "Millungera Airport", + "latitude_deg": "-19.858299255371094", + "longitude_deg": "141.56199645996094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMLL" + }, + { + "id": "38480", + "ident": "YMLN", + "type": "small_airport", + "name": "Monolon Airport", + "latitude_deg": "-30.203041", + "longitude_deg": "143.217591", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YMLN" + }, + { + "id": "38481", + "ident": "YMLR", + "type": "small_airport", + "name": "Muloorina Airport", + "latitude_deg": "-29.246700286865234", + "longitude_deg": "137.91000366210938", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YMLR" + }, + { + "id": "27786", + "ident": "YMLS", + "type": "small_airport", + "name": "Miles Airport", + "latitude_deg": "-26.806447", + "longitude_deg": "150.168953", + "elevation_ft": "304", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMLS", + "iata_code": "WLE" + }, + { + "id": "27063", + "ident": "YMLT", + "type": "medium_airport", + "name": "Launceston Airport", + "latitude_deg": "-41.54529953", + "longitude_deg": "147.214004517", + "elevation_ft": "562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Launceston", + "scheduled_service": "yes", + "gps_code": "YMLT", + "iata_code": "LST", + "home_link": "http://www.launcestonairport.com.au/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Launceston_Airport" + }, + { + "id": "38483", + "ident": "YMLX", + "type": "small_airport", + "name": "Milurie Homestead Airport", + "latitude_deg": "-27.58329963684082", + "longitude_deg": "121.78299713134766", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMLX" + }, + { + "id": "27064", + "ident": "YMMB", + "type": "medium_airport", + "name": "Melbourne Moorabbin Airport", + "latitude_deg": "-37.975799560546875", + "longitude_deg": "145.1020050048828", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Melbourne", + "scheduled_service": "yes", + "gps_code": "YMMB", + "iata_code": "MBW", + "home_link": "http://www.moorabbinairport.com.au/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moorabbin_Airport" + }, + { + "id": "27065", + "ident": "YMMI", + "type": "small_airport", + "name": "Murrin Murrin Airport", + "latitude_deg": "-28.705299", + "longitude_deg": "121.89099", + "elevation_ft": "1535", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Murrin Murrin", + "scheduled_service": "no", + "gps_code": "YMMI", + "iata_code": "WUI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Murrin_Murrin_Airport" + }, + { + "id": "27066", + "ident": "YMML", + "type": "large_airport", + "name": "Melbourne International Airport", + "latitude_deg": "-37.673302", + "longitude_deg": "144.843002", + "elevation_ft": "434", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Melbourne", + "scheduled_service": "yes", + "gps_code": "YMML", + "iata_code": "MEL", + "home_link": "http://melbourneairport.com.au/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Melbourne_Airport" + }, + { + "id": "27787", + "ident": "YMMN", + "type": "small_airport", + "name": "Millmerran Airport", + "latitude_deg": "-27.860097", + "longitude_deg": "151.271996", + "elevation_ft": "1312", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Millmerran", + "scheduled_service": "no", + "gps_code": "YMMN", + "home_link": "https://www.tr.qld.gov.au/our-region/transport/airports/234-millmerran-airfield" + }, + { + "id": "27788", + "ident": "YMMT", + "type": "small_airport", + "name": "Mount Margaret Airport", + "latitude_deg": "-26.933300018310547", + "longitude_deg": "143.31700134277344", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMMT" + }, + { + "id": "27067", + "ident": "YMMU", + "type": "small_airport", + "name": "Middlemount Airport", + "latitude_deg": "-22.801444", + "longitude_deg": "148.706796", + "elevation_ft": "547", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMMU", + "iata_code": "MMM" + }, + { + "id": "38484", + "ident": "YMNA", + "type": "small_airport", + "name": "Mount Allan Airport", + "latitude_deg": "-22.274999618530273", + "longitude_deg": "132.2169952392578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMNA" + }, + { + "id": "38485", + "ident": "YMNB", + "type": "small_airport", + "name": "Mount Barry Airport", + "latitude_deg": "-28.233299255371094", + "longitude_deg": "135", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YMNB" + }, + { + "id": "27068", + "ident": "YMND", + "type": "small_airport", + "name": "Maitland Airport", + "latitude_deg": "-32.701265", + "longitude_deg": "151.492912", + "elevation_ft": "85", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YMND", + "iata_code": "MTL", + "home_link": "http://rnac.com.au" + }, + { + "id": "27069", + "ident": "YMNE", + "type": "medium_airport", + "name": "Mount Keith Airport", + "latitude_deg": "-27.28733", + "longitude_deg": "120.554937", + "elevation_ft": "1792", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMNE", + "iata_code": "WME" + }, + { + "id": "38486", + "ident": "YMNF", + "type": "small_airport", + "name": "Manfred Airport", + "latitude_deg": "-26.450000762939453", + "longitude_deg": "116.55000305175781", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMNF" + }, + { + "id": "27070", + "ident": "YMNG", + "type": "small_airport", + "name": "Mangalore Airport", + "latitude_deg": "-36.888301849365234", + "longitude_deg": "145.1840057373047", + "elevation_ft": "467", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YMNG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mangalore_Airport_(Australia)" + }, + { + "id": "27789", + "ident": "YMNK", + "type": "small_airport", + "name": "Monkira Airport", + "latitude_deg": "-24.816699981689453", + "longitude_deg": "140.5330047607422", + "elevation_ft": "107", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMNK", + "iata_code": "ONR" + }, + { + "id": "27790", + "ident": "YMNN", + "type": "small_airport", + "name": "Mount Denison Airport", + "latitude_deg": "-22.141700744628906", + "longitude_deg": "132.07000732421875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMNN" + }, + { + "id": "38487", + "ident": "YMNO", + "type": "small_airport", + "name": "Maneroo Airport", + "latitude_deg": "-23.369229", + "longitude_deg": "143.894787", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMNO" + }, + { + "id": "27791", + "ident": "YMNP", + "type": "small_airport", + "name": "Murnpeowie Airport", + "latitude_deg": "-29.591699600219727", + "longitude_deg": "139.052001953125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YMNP" + }, + { + "id": "38488", + "ident": "YMNS", + "type": "small_airport", + "name": "Mount Swan Airport", + "latitude_deg": "-22.624696", + "longitude_deg": "135.034512", + "elevation_ft": "1641", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMNS", + "iata_code": "MSF" + }, + { + "id": "38489", + "ident": "YMNT", + "type": "small_airport", + "name": "Mornington Station Airport", + "latitude_deg": "-17.393600463867188", + "longitude_deg": "126.22899627685547", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMNT" + }, + { + "id": "38490", + "ident": "YMNW", + "type": "small_airport", + "name": "Granny Smith Airport", + "latitude_deg": "-28.763333", + "longitude_deg": "122.438333", + "elevation_ft": "1457", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Laverton", + "scheduled_service": "no", + "gps_code": "YGRS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Granny_Smith_Airport", + "keywords": "Mount Weld" + }, + { + "id": "27792", + "ident": "YMNX", + "type": "small_airport", + "name": "Minura Airport", + "latitude_deg": "-28.912761", + "longitude_deg": "121.79882", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMNX" + }, + { + "id": "27793", + "ident": "YMNY", + "type": "small_airport", + "name": "Morney Airport", + "latitude_deg": "-25.358299255371094", + "longitude_deg": "141.43299865722656", + "elevation_ft": "104", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMNY", + "iata_code": "OXY" + }, + { + "id": "38491", + "ident": "YMOE", + "type": "small_airport", + "name": "Moonaree Airport", + "latitude_deg": "-31.966100692749023", + "longitude_deg": "135.875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YMOE" + }, + { + "id": "27071", + "ident": "YMOG", + "type": "medium_airport", + "name": "Mount Magnet Airport", + "latitude_deg": "-28.116100311279297", + "longitude_deg": "117.84200286865234", + "elevation_ft": "1354", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "yes", + "gps_code": "YMOG", + "iata_code": "MMG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mount_Magnet_Airport" + }, + { + "id": "27795", + "ident": "YMOM", + "type": "small_airport", + "name": "Moulamein Airport", + "latitude_deg": "-35.0583856071", + "longitude_deg": "144.021320343", + "elevation_ft": "233", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Moulamein", + "scheduled_service": "no", + "gps_code": "YMOM" + }, + { + "id": "27796", + "ident": "YMOO", + "type": "small_airport", + "name": "Mooraberree Airport", + "latitude_deg": "-25.25", + "longitude_deg": "140.98300170898438", + "elevation_ft": "85", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMOO", + "iata_code": "OOR" + }, + { + "id": "27072", + "ident": "YMOR", + "type": "medium_airport", + "name": "Moree Airport", + "latitude_deg": "-29.498899459799997", + "longitude_deg": "149.845001221", + "elevation_ft": "701", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Moree", + "scheduled_service": "yes", + "gps_code": "YMOR", + "iata_code": "MRZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moree_Airport" + }, + { + "id": "31890", + "ident": "YMOT", + "type": "small_airport", + "name": "Moreton Airport", + "latitude_deg": "-12.444199562099998", + "longitude_deg": "142.638000488", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Moreton", + "scheduled_service": "no", + "gps_code": "YMOT", + "iata_code": "MET" + }, + { + "id": "27798", + "ident": "YMOU", + "type": "small_airport", + "name": "Moura Airport", + "latitude_deg": "-24.6117000579834", + "longitude_deg": "149.9949951171875", + "elevation_ft": "147", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMOU" + }, + { + "id": "27799", + "ident": "YMPA", + "type": "small_airport", + "name": "Minnipa Airport", + "latitude_deg": "-32.843299865722656", + "longitude_deg": "135.14500427246094", + "elevation_ft": "155", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YMPA", + "iata_code": "MIN" + }, + { + "id": "27073", + "ident": "YMPC", + "type": "small_airport", + "name": "RAAF Williams, Point Cook Base", + "latitude_deg": "-37.932201", + "longitude_deg": "144.753006", + "elevation_ft": "14", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Point Cook", + "scheduled_service": "no", + "gps_code": "YMPC", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAAF_Williams" + }, + { + "id": "27800", + "ident": "YMPE", + "type": "small_airport", + "name": "Mount Cooper Airport", + "latitude_deg": "-20.524647", + "longitude_deg": "146.789323", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMPE" + }, + { + "id": "27801", + "ident": "YMPH", + "type": "small_airport", + "name": "Mount Elephant Airport", + "latitude_deg": "-37.902928", + "longitude_deg": "143.177537", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YMPH" + }, + { + "id": "38492", + "ident": "YMPK", + "type": "small_airport", + "name": "Milton Park Airport", + "latitude_deg": "-23.358252", + "longitude_deg": "133.004007", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMPK" + }, + { + "id": "31943", + "ident": "YMQA", + "type": "small_airport", + "name": "Marqua Airport", + "latitude_deg": "-22.80579948425293", + "longitude_deg": "137.25100708007812", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Marqua", + "scheduled_service": "no", + "gps_code": "YMQA", + "iata_code": "MQE" + }, + { + "id": "27802", + "ident": "YMQD", + "type": "closed", + "name": "Mount Mcquoid NDB", + "latitude_deg": "-33.110001", + "longitude_deg": "151.138", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YMQD" + }, + { + "id": "38493", + "ident": "YMRA", + "type": "small_airport", + "name": "Maralinga Airport", + "latitude_deg": "-30.163299560546875", + "longitude_deg": "131.625", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YMRA" + }, + { + "id": "27074", + "ident": "YMRB", + "type": "medium_airport", + "name": "Moranbah Airport", + "latitude_deg": "-22.057800293", + "longitude_deg": "148.07699585", + "elevation_ft": "770", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Moranbah", + "scheduled_service": "yes", + "gps_code": "YMRB", + "iata_code": "MOV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moranbah_Airport" + }, + { + "id": "27803", + "ident": "YMRE", + "type": "small_airport", + "name": "Marree Airport", + "latitude_deg": "-29.663299560546875", + "longitude_deg": "138.06500244140625", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YMRE", + "iata_code": "RRE" + }, + { + "id": "38494", + "ident": "YMRS", + "type": "small_airport", + "name": "Melrose Airport", + "latitude_deg": "-27.933300018310547", + "longitude_deg": "121.30000305175781", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMRS" + }, + { + "id": "27804", + "ident": "YMRT", + "type": "small_airport", + "name": "Mount Garnet Airport", + "latitude_deg": "-17.70592", + "longitude_deg": "145.148217", + "elevation_ft": "657", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMRT" + }, + { + "id": "27805", + "ident": "YMRW", + "type": "small_airport", + "name": "Morawa Airport", + "latitude_deg": "-29.20170021057129", + "longitude_deg": "116.02200317382812", + "elevation_ft": "270", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMRW", + "iata_code": "MWB" + }, + { + "id": "27075", + "ident": "YMRY", + "type": "medium_airport", + "name": "Moruya Airport", + "latitude_deg": "-35.8978004456", + "longitude_deg": "150.143997192", + "elevation_ft": "14", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Moruya", + "scheduled_service": "yes", + "gps_code": "YMRY", + "iata_code": "MYA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Moruya_Airport", + "keywords": "RAAF Moruya" + }, + { + "id": "27806", + "ident": "YMSF", + "type": "small_airport", + "name": "Mount Sanford Station Airport", + "latitude_deg": "-16.978300094604492", + "longitude_deg": "130.55499267578125", + "elevation_ft": "231", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMSF", + "iata_code": "MTD" + }, + { + "id": "38495", + "ident": "YMSK", + "type": "small_airport", + "name": "Mount Skinner Airport", + "latitude_deg": "-22.187801", + "longitude_deg": "134.171648", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMSK" + }, + { + "id": "27807", + "ident": "YMSO", + "type": "small_airport", + "name": "Mount Sandon Airport", + "latitude_deg": "-31.389999389648438", + "longitude_deg": "151.41000366210938", + "elevation_ft": "1363", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YMSO" + }, + { + "id": "27808", + "ident": "YMSP", + "type": "small_airport", + "name": "Mount Surprise Airport", + "latitude_deg": "-18.131584", + "longitude_deg": "144.288066", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMSP" + }, + { + "id": "38496", + "ident": "YMSS", + "type": "small_airport", + "name": "Murchison Shire Airport", + "latitude_deg": "-26.890219", + "longitude_deg": "115.960842", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMSS" + }, + { + "id": "322846", + "ident": "YMST", + "type": "small_airport", + "name": "Millstream Station Field", + "latitude_deg": "-21.623761", + "longitude_deg": "117.081299", + "elevation_ft": "1043", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Chichester National Park", + "scheduled_service": "no", + "gps_code": "YMST", + "keywords": "Millstream,Chichester,National,Park" + }, + { + "id": "27809", + "ident": "YMTA", + "type": "small_airport", + "name": "Mittebah Airport", + "latitude_deg": "-18.8093", + "longitude_deg": "137.0815", + "elevation_ft": "865", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMTA", + "iata_code": "MIY" + }, + { + "id": "27810", + "ident": "YMTB", + "type": "small_airport", + "name": "Muttaburra Airport", + "latitude_deg": "-22.58329963684082", + "longitude_deg": "144.5330047607422", + "elevation_ft": "230", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMTB", + "iata_code": "UTB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Muttaburra_Airport" + }, + { + "id": "38497", + "ident": "YMTC", + "type": "small_airport", + "name": "Mount Clarence Airport", + "latitude_deg": "-28.826959", + "longitude_deg": "134.352123", + "elevation_ft": "712", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Mount Clarence Station", + "scheduled_service": "no", + "gps_code": "YMTC" + }, + { + "id": "27076", + "ident": "YMTG", + "type": "medium_airport", + "name": "Mount Gambier Airport", + "latitude_deg": "-37.745602", + "longitude_deg": "140.785004", + "elevation_ft": "212", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Mount Gambier", + "scheduled_service": "yes", + "gps_code": "YMTG", + "iata_code": "MGB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mount_Gambier_Airport" + }, + { + "id": "27077", + "ident": "YMTI", + "type": "small_airport", + "name": "Mornington Island Airport", + "latitude_deg": "-16.662500381469727", + "longitude_deg": "139.17799377441406", + "elevation_ft": "33", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YMTI", + "iata_code": "ONG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mornington_Island_Airport" + }, + { + "id": "27078", + "ident": "YMTO", + "type": "small_airport", + "name": "Monto Airport", + "latitude_deg": "-24.892267", + "longitude_deg": "151.101787", + "elevation_ft": "757", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMTO", + "iata_code": "MNQ" + }, + { + "id": "27811", + "ident": "YMTP", + "type": "small_airport", + "name": "Mount Hope Airport", + "latitude_deg": "-34.13669967651367", + "longitude_deg": "135.33799743652344", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YMTP" + }, + { + "id": "38498", + "ident": "YMTW", + "type": "small_airport", + "name": "Martins Well Airport", + "latitude_deg": "-31.473600387573242", + "longitude_deg": "139.11099243164062", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YMTW" + }, + { + "id": "27812", + "ident": "YMTX", + "type": "small_airport", + "name": "Mount Dare Airport", + "latitude_deg": "-26.06170082092285", + "longitude_deg": "135.2469940185547", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YMTX" + }, + { + "id": "27813", + "ident": "YMTZ", + "type": "small_airport", + "name": "Mount Elizabeth Airport", + "latitude_deg": "-16.39976", + "longitude_deg": "126.11683", + "elevation_ft": "1861", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMTZ" + }, + { + "id": "27814", + "ident": "YMUA", + "type": "small_airport", + "name": "Monduran Airport", + "latitude_deg": "-24.881687", + "longitude_deg": "151.914396", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMUA" + }, + { + "id": "31970", + "ident": "YMUC", + "type": "small_airport", + "name": "Muccan Station Airport", + "latitude_deg": "-20.658899307250977", + "longitude_deg": "120.06700134277344", + "elevation_ft": "300", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Muccan Station", + "scheduled_service": "no", + "gps_code": "YMUC", + "iata_code": "MUQ" + }, + { + "id": "27815", + "ident": "YMUE", + "type": "small_airport", + "name": "Mount Borradale Airport", + "latitude_deg": "-12.097731", + "longitude_deg": "132.888479", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMUE" + }, + { + "id": "31925", + "ident": "YMUG", + "type": "small_airport", + "name": "Mungeranie Airport", + "latitude_deg": "-28.009199142456055", + "longitude_deg": "138.65699768066406", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Mungeranie", + "scheduled_service": "no", + "gps_code": "YMUG", + "iata_code": "MNE" + }, + { + "id": "38499", + "ident": "YMUJ", + "type": "small_airport", + "name": "Munjina Airport", + "latitude_deg": "-22.366100311279297", + "longitude_deg": "118.68099975585938", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMUJ" + }, + { + "id": "31974", + "ident": "YMUK", + "type": "small_airport", + "name": "Mulka Airport", + "latitude_deg": "-28.34779930114746", + "longitude_deg": "138.64999389648438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Mulka", + "scheduled_service": "no", + "gps_code": "YMUK", + "iata_code": "MVK" + }, + { + "id": "27079", + "ident": "YMUL", + "type": "small_airport", + "name": "Murray Field", + "latitude_deg": "-32.50830078125", + "longitude_deg": "115.84200286865234", + "elevation_ft": "56", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMUL" + }, + { + "id": "38500", + "ident": "YMUP", + "type": "small_airport", + "name": "Mulga Park Airport", + "latitude_deg": "-25.860000610399997", + "longitude_deg": "131.649993896", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMUP", + "iata_code": "MUP" + }, + { + "id": "27816", + "ident": "YMUR", + "type": "small_airport", + "name": "Murwillumbah Airport", + "latitude_deg": "-28.33169937133789", + "longitude_deg": "153.41299438476562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YMUR" + }, + { + "id": "429779", + "ident": "YMUS", + "type": "small_airport", + "name": "Mantuan Downs Airport", + "latitude_deg": "-24.410543", + "longitude_deg": "147.24562", + "elevation_ft": "1096", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Mantuan Downs", + "scheduled_service": "no", + "gps_code": "YMUS" + }, + { + "id": "27817", + "ident": "YMUX", + "type": "small_airport", + "name": "Mileura Airport", + "latitude_deg": "-26.36669921875", + "longitude_deg": "117.33300018310547", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMUX" + }, + { + "id": "38501", + "ident": "YMVG", + "type": "closed", + "name": "Mount Cavenagh Airport", + "latitude_deg": "-25.963929", + "longitude_deg": "133.208542", + "elevation_ft": "1752", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Ghan", + "scheduled_service": "no", + "gps_code": "YMVG", + "iata_code": "MKV", + "keywords": "MKV, YMVG" + }, + { + "id": "38502", + "ident": "YMVH", + "type": "small_airport", + "name": "Marvel Loch Airport", + "latitude_deg": "-31.465733", + "longitude_deg": "119.530842", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMVH" + }, + { + "id": "27818", + "ident": "YMVM", + "type": "small_airport", + "name": "Mangrove Mountain Airport", + "latitude_deg": "-33.285122", + "longitude_deg": "151.212738", + "elevation_ft": "920", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Mangrove Mountain", + "scheduled_service": "no", + "gps_code": "YMVM", + "home_link": "http://www.ccsoaring.com.au/", + "keywords": "gliding" + }, + { + "id": "27819", + "ident": "YMVN", + "type": "small_airport", + "name": "Morven Airport", + "latitude_deg": "-26.39876", + "longitude_deg": "147.124958", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMVN" + }, + { + "id": "27820", + "ident": "YMVR", + "type": "small_airport", + "name": "Mount Vernon Station Airport", + "latitude_deg": "-24.224541", + "longitude_deg": "118.251622", + "elevation_ft": "1326", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMVR" + }, + { + "id": "38503", + "ident": "YMVY", + "type": "small_airport", + "name": "Mount Valley Airport", + "latitude_deg": "-14.08329963684082", + "longitude_deg": "133.81700134277344", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMVY" + }, + { + "id": "27821", + "ident": "YMWA", + "type": "small_airport", + "name": "Mullewa Airport", + "latitude_deg": "-28.475000381469727", + "longitude_deg": "115.51699829101562", + "elevation_ft": "290", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMWA", + "iata_code": "MXU" + }, + { + "id": "27823", + "ident": "YMWE", + "type": "small_airport", + "name": "Mount Wedge Airport", + "latitude_deg": "-22.737199783325195", + "longitude_deg": "132.1510009765625", + "elevation_ft": "559", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMWE" + }, + { + "id": "27824", + "ident": "YMWM", + "type": "small_airport", + "name": "Mount William Airport", + "latitude_deg": "-37.2954958244", + "longitude_deg": "142.603397369", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YMWM" + }, + { + "id": "38504", + "ident": "YMWO", + "type": "small_airport", + "name": "Mahanewo Airport", + "latitude_deg": "-31.718299865722656", + "longitude_deg": "136.43299865722656", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YMWO" + }, + { + "id": "27825", + "ident": "YMWT", + "type": "small_airport", + "name": "Moolawatana Airport", + "latitude_deg": "-29.9069", + "longitude_deg": "139.765", + "elevation_ft": "265", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Moolawatana Station", + "scheduled_service": "no", + "gps_code": "YMWT", + "iata_code": "MWT" + }, + { + "id": "27826", + "ident": "YMWX", + "type": "small_airport", + "name": "Marion Downs Airport", + "latitude_deg": "-23.363702", + "longitude_deg": "139.649663", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Marion Downs", + "scheduled_service": "no", + "gps_code": "YMWX", + "iata_code": "MXD", + "wikipedia_link": "https://sv.wikipedia.org/wiki/Marion_Downs_Airport" + }, + { + "id": "27080", + "ident": "YMYB", + "type": "small_airport", + "name": "Maryborough Airport", + "latitude_deg": "-25.513528", + "longitude_deg": "152.713603", + "elevation_ft": "38", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Maryborough", + "scheduled_service": "yes", + "gps_code": "YMYB", + "iata_code": "MBH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Maryborough_Airport_(Queensland)" + }, + { + "id": "27827", + "ident": "YMYH", + "type": "small_airport", + "name": "Mallapunyah Springs Airport", + "latitude_deg": "-16.966699600219727", + "longitude_deg": "135.7830047607422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMYH" + }, + { + "id": "38505", + "ident": "YMYI", + "type": "small_airport", + "name": "Marymia Airport", + "latitude_deg": "-25.101788", + "longitude_deg": "119.762845", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMYI" + }, + { + "id": "38506", + "ident": "YMYR", + "type": "small_airport", + "name": "Myroodan Station Airport", + "latitude_deg": "-18.11669921875", + "longitude_deg": "124.26699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMYR" + }, + { + "id": "27828", + "ident": "YMYT", + "type": "small_airport", + "name": "Merty Merty Airport", + "latitude_deg": "-28.582713", + "longitude_deg": "140.303264", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YMYT", + "iata_code": "RTY" + }, + { + "id": "38507", + "ident": "YMYV", + "type": "small_airport", + "name": "Maryvale Airport", + "latitude_deg": "-24.65999984741211", + "longitude_deg": "134.03199768066406", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMYV" + }, + { + "id": "38508", + "ident": "YMYW", + "type": "small_airport", + "name": "Murray Downs Airport", + "latitude_deg": "-21.04829978942871", + "longitude_deg": "134.68299865722656", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YMYW" + }, + { + "id": "27829", + "ident": "YMYY", + "type": "small_airport", + "name": "Mary Valley Airport", + "latitude_deg": "-15.047093", + "longitude_deg": "143.757777", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YMYY" + }, + { + "id": "27830", + "ident": "YMZI", + "type": "small_airport", + "name": "Menzies Airport", + "latitude_deg": "-29.685808", + "longitude_deg": "121.027794", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YMZI" + }, + { + "id": "27831", + "ident": "YNAB", + "type": "small_airport", + "name": "Nabarlek Airport", + "latitude_deg": "-12.308300018310547", + "longitude_deg": "133.31300354003906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YNAB" + }, + { + "id": "27832", + "ident": "YNAN", + "type": "small_airport", + "name": "Nanango Airport", + "latitude_deg": "-26.689222", + "longitude_deg": "151.988425", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YNAN" + }, + { + "id": "27833", + "ident": "YNAP", + "type": "small_airport", + "name": "Nappa Merrie Airport", + "latitude_deg": "-27.549201", + "longitude_deg": "141.158416", + "elevation_ft": "55", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YNAP", + "iata_code": "NMR" + }, + { + "id": "27081", + "ident": "YNAR", + "type": "medium_airport", + "name": "Narrandera Airport", + "latitude_deg": "-34.7022018433", + "longitude_deg": "146.511993408", + "elevation_ft": "474", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Narrandera", + "scheduled_service": "yes", + "gps_code": "YNAR", + "iata_code": "NRA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Narrandera_Airport" + }, + { + "id": "38509", + "ident": "YNAU", + "type": "small_airport", + "name": "Nannup Airport", + "latitude_deg": "-34.03329849243164", + "longitude_deg": "115.73300170898438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YNAU" + }, + { + "id": "350247", + "ident": "YNBO", + "type": "small_airport", + "name": "Nebo Airstrip", + "latitude_deg": "-21.702222", + "longitude_deg": "148.694444", + "elevation_ft": "653", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Nebo", + "scheduled_service": "no", + "gps_code": "YNBO" + }, + { + "id": "27082", + "ident": "YNBR", + "type": "medium_airport", + "name": "Narrabri Airport", + "latitude_deg": "-30.3192005157", + "longitude_deg": "149.82699585", + "elevation_ft": "788", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Narrabri", + "scheduled_service": "yes", + "gps_code": "YNBR", + "iata_code": "NAA", + "home_link": "http://narrabri.cfm.predelegation.com/index.cfm?page_id=1249", + "wikipedia_link": "https://en.wikipedia.org/wiki/Narrabri_Airport" + }, + { + "id": "27834", + "ident": "YNCD", + "type": "small_airport", + "name": "Noccundra Airport", + "latitude_deg": "-27.809878", + "longitude_deg": "142.593641", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YNCD" + }, + { + "id": "27835", + "ident": "YNCS", + "type": "small_airport", + "name": "New Crown Airport", + "latitude_deg": "-25.679926", + "longitude_deg": "134.838553", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YNCS" + }, + { + "id": "354803", + "ident": "YNCW", + "type": "small_airport", + "name": "Newcastle Waters Airport", + "latitude_deg": "-17.334944", + "longitude_deg": "133.439777", + "elevation_ft": "800", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Pamayu", + "scheduled_service": "no", + "gps_code": "YNCW" + }, + { + "id": "27836", + "ident": "YNDG", + "type": "small_airport", + "name": "Newdegate Airport", + "latitude_deg": "-33.10426", + "longitude_deg": "119.018143", + "elevation_ft": "1070", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YNDG" + }, + { + "id": "38510", + "ident": "YNDR", + "type": "small_airport", + "name": "Nundroo Airport", + "latitude_deg": "-31.780000686645508", + "longitude_deg": "132.22300720214844", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YNDR" + }, + { + "id": "27837", + "ident": "YNDS", + "type": "small_airport", + "name": "Natal Downs Airport", + "latitude_deg": "-21.090556", + "longitude_deg": "146.152614", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YNDS" + }, + { + "id": "38511", + "ident": "YNES", + "type": "small_airport", + "name": "Nelson Springs Airport", + "latitude_deg": "-17.299999237060547", + "longitude_deg": "129.2830047607422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YNES" + }, + { + "id": "333683", + "ident": "YNEY", + "type": "heliport", + "name": "Nelly Bay Heliport", + "latitude_deg": "-19.161882", + "longitude_deg": "146.853769", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Nelly Bay, Magnetic Island", + "scheduled_service": "no", + "gps_code": "YNEY" + }, + { + "id": "27838", + "ident": "YNGB", + "type": "small_airport", + "name": "Nagambie Airport", + "latitude_deg": "-36.73830032348633", + "longitude_deg": "145.125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YNGB" + }, + { + "id": "27083", + "ident": "YNGU", + "type": "medium_airport", + "name": "Ngukurr Airport", + "latitude_deg": "-14.722800254821777", + "longitude_deg": "134.7469940185547", + "elevation_ft": "45", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YNGU", + "iata_code": "RPM" + }, + { + "id": "38512", + "ident": "YNHE", + "type": "closed", + "name": "Newhaven Airport", + "latitude_deg": "-38.524667", + "longitude_deg": "145.327578", + "elevation_ft": "46", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Newhaven", + "scheduled_service": "no", + "gps_code": "YNHE", + "keywords": "YNHE" + }, + { + "id": "27084", + "ident": "YNHL", + "type": "small_airport", + "name": "Nhill Airport", + "latitude_deg": "-36.310088", + "longitude_deg": "141.643375", + "elevation_ft": "454", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Nhill", + "scheduled_service": "no", + "gps_code": "YNHL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nhill_Airport" + }, + { + "id": "27839", + "ident": "YNHP", + "type": "small_airport", + "name": "Northampton Airport", + "latitude_deg": "-28.342045", + "longitude_deg": "114.716964", + "elevation_ft": "916", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YNHP" + }, + { + "id": "32007", + "ident": "YNHS", + "type": "small_airport", + "name": "Nambucca Heads Airport", + "latitude_deg": "-30.673058", + "longitude_deg": "152.984233", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Nambucca Heads", + "scheduled_service": "no", + "gps_code": "YNHS", + "iata_code": "NBH" + }, + { + "id": "38513", + "ident": "YNHV", + "type": "small_airport", + "name": "New Haven Airport", + "latitude_deg": "-22.728300094604492", + "longitude_deg": "131.14500427246094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YNHV" + }, + { + "id": "27840", + "ident": "YNIC", + "type": "small_airport", + "name": "Nicholson Airport", + "latitude_deg": "-18.049999237060547", + "longitude_deg": "128.89999389648438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YNIC", + "iata_code": "NLS" + }, + { + "id": "38514", + "ident": "YNIG", + "type": "small_airport", + "name": "Nonning Airport", + "latitude_deg": "-32.52190017700195", + "longitude_deg": "136.49400329589844", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YNIG" + }, + { + "id": "38515", + "ident": "YNIN", + "type": "small_airport", + "name": "Meningie Airport", + "latitude_deg": "-35.701002", + "longitude_deg": "139.345522", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Meningie", + "scheduled_service": "no", + "gps_code": "YNIN" + }, + { + "id": "38516", + "ident": "YNKA", + "type": "small_airport", + "name": "Noonkanbah Airport", + "latitude_deg": "-18.4946994781", + "longitude_deg": "124.851997375", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YNKA", + "iata_code": "NKB" + }, + { + "id": "27841", + "ident": "YNMN", + "type": "small_airport", + "name": "New Moon Airport", + "latitude_deg": "-19.2", + "longitude_deg": "145.773", + "elevation_ft": "1099", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Basalt", + "scheduled_service": "no", + "gps_code": "YNMN", + "iata_code": "NMP", + "local_code": "YNMN" + }, + { + "id": "27842", + "ident": "YNNT", + "type": "small_airport", + "name": "Nantarra Airport", + "latitude_deg": "-22.537159", + "longitude_deg": "115.492601", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YNNT" + }, + { + "id": "38517", + "ident": "YNOC", + "type": "small_airport", + "name": "Nockatunga Airport", + "latitude_deg": "-27.71933", + "longitude_deg": "142.707753", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Noccundra", + "scheduled_service": "no", + "gps_code": "YNOC" + }, + { + "id": "27843", + "ident": "YNOF", + "type": "small_airport", + "name": "Norfolk Airport", + "latitude_deg": "-19.33329963684082", + "longitude_deg": "138.33299255371094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YNOF" + }, + { + "id": "38518", + "ident": "YNON", + "type": "small_airport", + "name": "Noondoonia Homestead Airport", + "latitude_deg": "-32.28329849243164", + "longitude_deg": "123.66699981689453", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YNON" + }, + { + "id": "27844", + "ident": "YNOO", + "type": "small_airport", + "name": "Nooyeah Downs Airport", + "latitude_deg": "-28.042483", + "longitude_deg": "143.558881", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YNOO" + }, + { + "id": "27845", + "ident": "YNOR", + "type": "small_airport", + "name": "Norwood Airport", + "latitude_deg": "-34.24877", + "longitude_deg": "144.351957", + "elevation_ft": "259", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Norwood", + "scheduled_service": "no", + "gps_code": "YNOR" + }, + { + "id": "330896", + "ident": "YNOV", + "type": "small_airport", + "name": "Nova Airport", + "latitude_deg": "-31.845857", + "longitude_deg": "123.192246", + "elevation_ft": "962", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YNOV" + }, + { + "id": "38519", + "ident": "YNPA", + "type": "small_airport", + "name": "Nilpinna Airport", + "latitude_deg": "-28.483299255371094", + "longitude_deg": "135.89999389648438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YNPA" + }, + { + "id": "27846", + "ident": "YNPB", + "type": "small_airport", + "name": "Napperby Airport", + "latitude_deg": "-22.5312", + "longitude_deg": "132.7632", + "elevation_ft": "2135", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Napperby", + "scheduled_service": "no", + "gps_code": "YNPB", + "iata_code": "NPP" + }, + { + "id": "27847", + "ident": "YNPD", + "type": "small_airport", + "name": "Napier Downs Airport", + "latitude_deg": "-17.319175", + "longitude_deg": "124.82156", + "elevation_ft": "282", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YNPD" + }, + { + "id": "26898", + "ident": "YNPE", + "type": "small_airport", + "name": "Northern Peninsula Airport", + "latitude_deg": "-10.946194", + "longitude_deg": "142.455081", + "elevation_ft": "34", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Bamaga", + "scheduled_service": "yes", + "gps_code": "YNPE", + "iata_code": "ABM", + "home_link": "http://www.nparc.qld.gov.au/airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Northern_Peninsula_Airport", + "keywords": "YBAM, Bamaga Airport, Bamaga Injinoo Airport" + }, + { + "id": "38520", + "ident": "YNPU", + "type": "small_airport", + "name": "Nepabunna Airport", + "latitude_deg": "-30.603300094604492", + "longitude_deg": "138.947998046875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YNPU" + }, + { + "id": "27848", + "ident": "YNRB", + "type": "small_airport", + "name": "Narembeen Airport", + "latitude_deg": "-32.107465", + "longitude_deg": "118.407109", + "elevation_ft": "1001", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YNRB" + }, + { + "id": "27085", + "ident": "YNRC", + "type": "small_airport", + "name": "Naracoorte Airport", + "latitude_deg": "-36.98529815673828", + "longitude_deg": "140.72500610351562", + "elevation_ft": "169", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YNRC", + "iata_code": "NAC" + }, + { + "id": "27849", + "ident": "YNRG", + "type": "small_airport", + "name": "Narrogin Airport", + "latitude_deg": "-32.93", + "longitude_deg": "117.080002", + "elevation_ft": "1080", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Narrogin", + "scheduled_service": "no", + "gps_code": "YNRG", + "iata_code": "NRG", + "home_link": "http://www.narroginshire.wa.gov.au/airport.aspx" + }, + { + "id": "311765", + "ident": "YNRH", + "type": "heliport", + "name": "Newcastle Regional Heliport", + "latitude_deg": "-32.87909", + "longitude_deg": "151.72803", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Newcastle", + "scheduled_service": "no", + "gps_code": "YNRH", + "local_code": "YNRH" + }, + { + "id": "38521", + "ident": "YNRL", + "type": "small_airport", + "name": "Naryilco Airport", + "latitude_deg": "-28.549999237060547", + "longitude_deg": "141.91700744628906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YNRL" + }, + { + "id": "27086", + "ident": "YNRM", + "type": "medium_airport", + "name": "Narromine Airport", + "latitude_deg": "-32.214698791503906", + "longitude_deg": "148.22500610351562", + "elevation_ft": "782", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YNRM", + "iata_code": "QRM" + }, + { + "id": "332497", + "ident": "YNRN", + "type": "small_airport", + "name": "Narayen", + "latitude_deg": "-25.681273", + "longitude_deg": "150.858915", + "elevation_ft": "950", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Narayen", + "scheduled_service": "no", + "gps_code": "YNRN", + "local_code": "NRN", + "keywords": "ynrn, narayen, narayan, nrn, ala" + }, + { + "id": "27850", + "ident": "YNRR", + "type": "small_airport", + "name": "Nyrripi Airport", + "latitude_deg": "-22.645299911499023", + "longitude_deg": "130.56500244140625", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YNRR" + }, + { + "id": "27087", + "ident": "YNRV", + "type": "small_airport", + "name": "Ravensthorpe Airport", + "latitude_deg": "-33.7971992493", + "longitude_deg": "120.208000183", + "elevation_ft": "197", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YNRV", + "iata_code": "RVT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ravensthorpe_Airport" + }, + { + "id": "27851", + "ident": "YNSH", + "type": "small_airport", + "name": "Noosa Airport", + "latitude_deg": "-26.423177", + "longitude_deg": "153.064935", + "elevation_ft": "1", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YNSH", + "iata_code": "NSV" + }, + { + "id": "27852", + "ident": "YNSM", + "type": "small_airport", + "name": "Norseman Airport", + "latitude_deg": "-32.203", + "longitude_deg": "121.758127", + "elevation_ft": "263", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YNSM", + "iata_code": "NSM" + }, + { + "id": "332096", + "ident": "YNT", + "type": "large_airport", + "name": "Yantai Penglai International Airport", + "latitude_deg": "37.659724", + "longitude_deg": "120.978124", + "elevation_ft": "154", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Yantai", + "scheduled_service": "yes", + "gps_code": "ZSYT", + "iata_code": "YNT", + "home_link": "http://www.ytairport.com.cn/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yantai_Penglai_International_Airport" + }, + { + "id": "27853", + "ident": "YNTM", + "type": "small_airport", + "name": "Northam Airport", + "latitude_deg": "-31.62784", + "longitude_deg": "116.686993", + "elevation_ft": "500", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YNTM" + }, + { + "id": "27088", + "ident": "YNTN", + "type": "medium_airport", + "name": "Normanton Airport", + "latitude_deg": "-17.68409", + "longitude_deg": "141.069664", + "elevation_ft": "73", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Normanton", + "scheduled_service": "yes", + "gps_code": "YNTN", + "iata_code": "NTN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Normanton_Airport" + }, + { + "id": "27854", + "ident": "YNUB", + "type": "small_airport", + "name": "Nullabor Motel Airport", + "latitude_deg": "-31.441699981689453", + "longitude_deg": "130.90199279785156", + "elevation_ft": "67", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YNUB", + "iata_code": "NUR" + }, + { + "id": "38522", + "ident": "YNUD", + "type": "small_airport", + "name": "Nammuldi Mine Airstrip", + "latitude_deg": "-22.39186", + "longitude_deg": "117.37623", + "elevation_ft": "267", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Nammuldi Mine", + "scheduled_service": "no", + "gps_code": "YNUD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nammuldi_mine" + }, + { + "id": "38523", + "ident": "YNUE", + "type": "small_airport", + "name": "Numery Airport", + "latitude_deg": "-23.983299255371094", + "longitude_deg": "135.39999389648438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YNUE" + }, + { + "id": "38524", + "ident": "YNUJ", + "type": "small_airport", + "name": "Nudjaburra Airport", + "latitude_deg": "-17.966699600219727", + "longitude_deg": "137.93299865722656", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YNUJ" + }, + { + "id": "27855", + "ident": "YNUL", + "type": "small_airport", + "name": "Nullagine Airport", + "latitude_deg": "-21.913299560546875", + "longitude_deg": "120.197998046875", + "elevation_ft": "381", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YNUL", + "iata_code": "NLL" + }, + { + "id": "27089", + "ident": "YNUM", + "type": "small_airport", + "name": "Numbulwar Airport", + "latitude_deg": "-14.271699905395508", + "longitude_deg": "135.7169952392578", + "elevation_ft": "31", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YNUM", + "iata_code": "NUB" + }, + { + "id": "38525", + "ident": "YNUT", + "type": "small_airport", + "name": "Nutwood Downs Airport", + "latitude_deg": "-15.8074", + "longitude_deg": "134.1459", + "elevation_ft": "500", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Nutwood Downs", + "scheduled_service": "no", + "gps_code": "YNUT", + "iata_code": "UTD" + }, + { + "id": "27856", + "ident": "YNVE", + "type": "small_airport", + "name": "Navarre Airport", + "latitude_deg": "-36.920929", + "longitude_deg": "143.091103", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YNVE" + }, + { + "id": "27857", + "ident": "YNVL", + "type": "small_airport", + "name": "Normanville Airport", + "latitude_deg": "-35.78329849243164", + "longitude_deg": "143.6999969482422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YNVL" + }, + { + "id": "38526", + "ident": "YNVR", + "type": "small_airport", + "name": "Navarra Airport", + "latitude_deg": "-24.854178", + "longitude_deg": "143.669538", + "elevation_ft": "670", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Isisford", + "scheduled_service": "no", + "local_code": "YNVRA", + "keywords": "YNVR" + }, + { + "id": "38527", + "ident": "YNWL", + "type": "small_airport", + "name": "North Well Airport", + "latitude_deg": "-30.839328", + "longitude_deg": "135.297822", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YNWL" + }, + { + "id": "27090", + "ident": "YNWN", + "type": "medium_airport", + "name": "Newman Airport", + "latitude_deg": "-23.417800903299998", + "longitude_deg": "119.803001404", + "elevation_ft": "1724", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Newman", + "scheduled_service": "yes", + "gps_code": "YNWN", + "iata_code": "ZNE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Newman_Airport" + }, + { + "id": "38528", + "ident": "YNWT", + "type": "small_airport", + "name": "Narwietooma Airport", + "latitude_deg": "-23.228786", + "longitude_deg": "132.629378", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YNWT" + }, + { + "id": "27858", + "ident": "YNYG", + "type": "small_airport", + "name": "Nyang Airport", + "latitude_deg": "-23.033300399780273", + "longitude_deg": "115.03299713134766", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YNYG" + }, + { + "id": "27859", + "ident": "YNYM", + "type": "small_airport", + "name": "Nymagee Airport", + "latitude_deg": "-32.053972", + "longitude_deg": "146.31227", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YNYM" + }, + { + "id": "27091", + "ident": "YNYN", + "type": "small_airport", + "name": "Nyngan Airport", + "latitude_deg": "-31.55109977722168", + "longitude_deg": "147.2030029296875", + "elevation_ft": "569", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YNYN", + "iata_code": "NYN" + }, + { + "id": "27860", + "ident": "YNYP", + "type": "small_airport", + "name": "Nypari Airport", + "latitude_deg": "-26.200000762939453", + "longitude_deg": "130.23300170898438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YNYP" + }, + { + "id": "38529", + "ident": "YOAD", + "type": "small_airport", + "name": "Old Andado Airport", + "latitude_deg": "-25.38330078125", + "longitude_deg": "135.41700744628906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YOAD" + }, + { + "id": "38530", + "ident": "YOAP", + "type": "small_airport", + "name": "One Arm Point Airport", + "latitude_deg": "-16.445423", + "longitude_deg": "123.068388", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Dampier Peninsula", + "scheduled_service": "no", + "gps_code": "YOAP" + }, + { + "id": "30484", + "ident": "YOAS", + "type": "small_airport", + "name": "The Oaks Airport", + "latitude_deg": "-34.084097", + "longitude_deg": "150.559602", + "elevation_ft": "909", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "The Oaks", + "scheduled_service": "no", + "gps_code": "YOAS" + }, + { + "id": "27861", + "ident": "YOAY", + "type": "small_airport", + "name": "Oaky Creek Airport", + "latitude_deg": "-23.057324", + "longitude_deg": "148.495846", + "elevation_ft": "177", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YOAY" + }, + { + "id": "311767", + "ident": "YOBE", + "type": "heliport", + "name": "Oberon Heliport", + "latitude_deg": "-33.7007", + "longitude_deg": "149.856", + "elevation_ft": "3612", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Oberon", + "scheduled_service": "no", + "gps_code": "YOBE", + "local_code": "YOBE" + }, + { + "id": "30209", + "ident": "YOBR", + "type": "small_airport", + "name": "Old Bar Heritage Airport", + "latitude_deg": "-31.965299606323242", + "longitude_deg": "152.59100341796875", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YOBR" + }, + { + "id": "38531", + "ident": "YODA", + "type": "small_airport", + "name": "Ooldea Airport", + "latitude_deg": "-30.45669937133789", + "longitude_deg": "131.822998046875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YODA" + }, + { + "id": "27862", + "ident": "YODL", + "type": "small_airport", + "name": "Ourdel Airport", + "latitude_deg": "-25.350000381469727", + "longitude_deg": "142.63299560546875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YODL" + }, + { + "id": "27092", + "ident": "YOEN", + "type": "small_airport", + "name": "Oenpelli Airport", + "latitude_deg": "-12.324999809265137", + "longitude_deg": "133.00599670410156", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YOEN", + "iata_code": "OPI" + }, + { + "id": "301307", + "ident": "YOI", + "type": "small_airport", + "name": "Opinaca Aerodrome", + "latitude_deg": "52.221944", + "longitude_deg": "-76.611944", + "elevation_ft": "692", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-QC", + "municipality": "Éléonore Mine", + "scheduled_service": "no", + "iata_code": "YOI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Opinaca_Aerodrome", + "keywords": "Eastmain River, Les Mélèzes, CPN8" + }, + { + "id": "27863", + "ident": "YOIT", + "type": "small_airport", + "name": "Orielton Airport", + "latitude_deg": "-22.062854", + "longitude_deg": "144.139037", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Tablederry", + "scheduled_service": "no", + "gps_code": "YOIT" + }, + { + "id": "27864", + "ident": "YOKE", + "type": "small_airport", + "name": "Oakvale Airport", + "latitude_deg": "-22.266700744628906", + "longitude_deg": "145.98300170898438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YOKE" + }, + { + "id": "38532", + "ident": "YOKV", + "type": "small_airport", + "name": "Oak Valley Airport", + "latitude_deg": "-29.516700744628906", + "longitude_deg": "130.86700439453125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YOKV" + }, + { + "id": "27865", + "ident": "YOLA", + "type": "small_airport", + "name": "Colac Airport", + "latitude_deg": "-38.286701", + "longitude_deg": "143.679993", + "elevation_ft": "450", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Colac", + "scheduled_service": "no", + "gps_code": "YOLA", + "iata_code": "XCO" + }, + { + "id": "27093", + "ident": "YOLD", + "type": "small_airport", + "name": "Olympic Dam Airport", + "latitude_deg": "-30.485000610399997", + "longitude_deg": "136.876998901", + "elevation_ft": "343", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Olympic Dam", + "scheduled_service": "yes", + "gps_code": "YOLD", + "iata_code": "OLP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Olympic_Dam_Airport" + }, + { + "id": "27866", + "ident": "YOLW", + "type": "small_airport", + "name": "Onslow Airport", + "latitude_deg": "-21.670161", + "longitude_deg": "115.114902", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YOLW", + "iata_code": "ONS" + }, + { + "id": "30230", + "ident": "YOLY", + "type": "small_airport", + "name": "Oxley Station Airport", + "latitude_deg": "-31.0132999420166", + "longitude_deg": "147.71099853515625", + "elevation_ft": "518", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YOLY" + }, + { + "id": "27867", + "ident": "YOMI", + "type": "small_airport", + "name": "Omicron Station Airport", + "latitude_deg": "-28.760427", + "longitude_deg": "141.208788", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YOMI" + }, + { + "id": "38533", + "ident": "YOMO", + "type": "small_airport", + "name": "Omeo Airport", + "latitude_deg": "-37.10662", + "longitude_deg": "147.606578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YOMO" + }, + { + "id": "27868", + "ident": "YOOB", + "type": "closed", + "name": "Cooranbong Airport", + "latitude_deg": "-33.0601117475", + "longitude_deg": "151.461896896", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YOOB" + }, + { + "id": "27869", + "ident": "YOOD", + "type": "small_airport", + "name": "Oodnadatta Airport", + "latitude_deg": "-27.562473", + "longitude_deg": "135.442946", + "elevation_ft": "118", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YOOD", + "iata_code": "ODD" + }, + { + "id": "38534", + "ident": "YOOK", + "type": "small_airport", + "name": "Cook Airport", + "latitude_deg": "-30.61829948425293", + "longitude_deg": "130.406005859375", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YOOK" + }, + { + "id": "27094", + "ident": "YOOM", + "type": "small_airport", + "name": "Moomba Airport", + "latitude_deg": "-28.09939956665039", + "longitude_deg": "140.19700622558594", + "elevation_ft": "143", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YOOM", + "iata_code": "MOO" + }, + { + "id": "27870", + "ident": "YOOO", + "type": "small_airport", + "name": "Mooloola Homestead Airport", + "latitude_deg": "-16.33329963684082", + "longitude_deg": "131.5", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YOOO" + }, + { + "id": "38535", + "ident": "YORA", + "type": "small_airport", + "name": "Moonerah Airport", + "latitude_deg": "-31.691413", + "longitude_deg": "126.590523", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YORA" + }, + { + "id": "27871", + "ident": "YORB", + "type": "small_airport", + "name": "Orbost Airport", + "latitude_deg": "-37.790000915527344", + "longitude_deg": "148.61000061035156", + "elevation_ft": "28", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YORB", + "iata_code": "RBS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orbost_Airport" + }, + { + "id": "27095", + "ident": "YORG", + "type": "medium_airport", + "name": "Orange Airport", + "latitude_deg": "-33.382014", + "longitude_deg": "149.131262", + "elevation_ft": "3115", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Orange", + "scheduled_service": "no", + "gps_code": "YORG", + "iata_code": "OAG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Orange_Airport" + }, + { + "id": "38536", + "ident": "YORL", + "type": "small_airport", + "name": "Orleans Farm Airport", + "latitude_deg": "-33.78329849243164", + "longitude_deg": "122.94999694824219", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YORL" + }, + { + "id": "27872", + "ident": "YORR", + "type": "small_airport", + "name": "Orroroo Airport", + "latitude_deg": "-32.791013", + "longitude_deg": "138.672068", + "elevation_ft": "381", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YORR" + }, + { + "id": "38537", + "ident": "YORT", + "type": "small_airport", + "name": "Ooratippra Airport", + "latitude_deg": "-21.905799865722656", + "longitude_deg": "136.06900024414062", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YORT" + }, + { + "id": "32087", + "ident": "YORV", + "type": "small_airport", + "name": "Ord River Airport", + "latitude_deg": "-17.34079933166504", + "longitude_deg": "128.91200256347656", + "elevation_ft": "390", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Ord River", + "scheduled_service": "no", + "gps_code": "YORV", + "iata_code": "ODR" + }, + { + "id": "38538", + "ident": "YORW", + "type": "small_airport", + "name": "Orient Well Airport", + "latitude_deg": "-29.199199676513672", + "longitude_deg": "121.43800354003906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YORW" + }, + { + "id": "27873", + "ident": "YOSB", + "type": "small_airport", + "name": "Osborne Mine Airport", + "latitude_deg": "-22.0816993713", + "longitude_deg": "140.554992676", + "elevation_ft": "285", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YOSB", + "iata_code": "OSO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Osborne_Mine_Airport" + }, + { + "id": "27874", + "ident": "YOTN", + "type": "small_airport", + "name": "Ootann Airport", + "latitude_deg": "-17.442825", + "longitude_deg": "144.64672", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YOTN" + }, + { + "id": "38539", + "ident": "YOUN", + "type": "small_airport", + "name": "Youanmi Airport", + "latitude_deg": "-28.614999771118164", + "longitude_deg": "118.84200286865234", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YOUN" + }, + { + "id": "38540", + "ident": "YOUY", + "type": "small_airport", + "name": "Ouyen Airport", + "latitude_deg": "-35.088819", + "longitude_deg": "142.354778", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Ouyen", + "scheduled_service": "no", + "gps_code": "YOUY", + "iata_code": "OYN" + }, + { + "id": "38541", + "ident": "YPAC", + "type": "small_airport", + "name": "Pacific Haven Airport", + "latitude_deg": "-25.241123", + "longitude_deg": "152.542849", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YPAC" + }, + { + "id": "27096", + "ident": "YPAD", + "type": "large_airport", + "name": "Adelaide International Airport", + "latitude_deg": "-34.947512", + "longitude_deg": "138.533393", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Adelaide", + "scheduled_service": "yes", + "gps_code": "YPAD", + "iata_code": "ADL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Adelaide_International_Airport" + }, + { + "id": "27097", + "ident": "YPAG", + "type": "medium_airport", + "name": "Port Augusta Airport", + "latitude_deg": "-32.506900787353516", + "longitude_deg": "137.7169952392578", + "elevation_ft": "56", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "yes", + "gps_code": "YPAG", + "iata_code": "PUG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Augusta_Airport" + }, + { + "id": "27875", + "ident": "YPAK", + "type": "closed", + "name": "Pakenham Airport", + "latitude_deg": "-38.088421", + "longitude_deg": "145.480871", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Pakenham", + "scheduled_service": "no", + "gps_code": "YPAK" + }, + { + "id": "27098", + "ident": "YPAM", + "type": "small_airport", + "name": "Palm Island Airport", + "latitude_deg": "-18.755300521850586", + "longitude_deg": "146.58099365234375", + "elevation_ft": "28", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YPAM", + "iata_code": "PMK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Palm_Island_Airport" + }, + { + "id": "27876", + "ident": "YPAY", + "type": "small_airport", + "name": "Papunya Airport", + "latitude_deg": "-23.246700286865234", + "longitude_deg": "131.9029998779297", + "elevation_ft": "620", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YPAY" + }, + { + "id": "38542", + "ident": "YPBH", + "type": "small_airport", + "name": "Peterborough Airport", + "latitude_deg": "-38.607162", + "longitude_deg": "142.903826", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YPBH" + }, + { + "id": "27099", + "ident": "YPBO", + "type": "medium_airport", + "name": "Paraburdoo Airport", + "latitude_deg": "-23.1711006165", + "longitude_deg": "117.745002747", + "elevation_ft": "1406", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Paraburdoo", + "scheduled_service": "yes", + "gps_code": "YPBO", + "iata_code": "PBO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Paraburdoo_Airport" + }, + { + "id": "27100", + "ident": "YPCC", + "type": "medium_airport", + "name": "Cocos (Keeling) Islands Airport", + "latitude_deg": "-12.19134", + "longitude_deg": "96.833696", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "CC", + "iso_region": "CC-U-A", + "municipality": "West Island", + "scheduled_service": "yes", + "gps_code": "YPCC", + "iata_code": "CCK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cocos_(Keeling)_Island_International_Airport" + }, + { + "id": "27877", + "ident": "YPCE", + "type": "small_airport", + "name": "Pooncarie Airport", + "latitude_deg": "-33.373263", + "longitude_deg": "142.586439", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YPCE" + }, + { + "id": "27878", + "ident": "YPCH", + "type": "small_airport", + "name": "Patchewollock Airport", + "latitude_deg": "-35.369945", + "longitude_deg": "142.193899", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Patchewollock", + "scheduled_service": "no", + "gps_code": "YPCH" + }, + { + "id": "316782", + "ident": "YPCM", + "type": "small_airport", + "name": "Pickertaramoor Airstrip", + "latitude_deg": "-11.762351", + "longitude_deg": "130.880878", + "elevation_ft": "325", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Pickertaramoor", + "scheduled_service": "no", + "gps_code": "YPCM", + "local_code": "YPCM", + "keywords": "Tiwi College" + }, + { + "id": "38543", + "ident": "YPCS", + "type": "small_airport", + "name": "Pinnacles Homestead Airport", + "latitude_deg": "-28.200000762939453", + "longitude_deg": "120.43299865722656", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YPCS" + }, + { + "id": "316610", + "ident": "YPDA", + "type": "small_airport", + "name": "Parndana Airport", + "latitude_deg": "-35.807", + "longitude_deg": "137.264", + "elevation_ft": "545", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Kangaroo Island", + "scheduled_service": "no", + "gps_code": "YPDA", + "iata_code": "PDN", + "local_code": "YPDA" + }, + { + "id": "27879", + "ident": "YPDI", + "type": "small_airport", + "name": "Pandie Pandie Airport", + "latitude_deg": "-26.122248", + "longitude_deg": "139.403501", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YPDI", + "iata_code": "PDE" + }, + { + "id": "27101", + "ident": "YPDN", + "type": "large_airport", + "name": "Darwin International Airport / RAAF Darwin", + "latitude_deg": "-12.41497", + "longitude_deg": "130.88185", + "elevation_ft": "103", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Eaton", + "scheduled_service": "no", + "gps_code": "YPDN", + "iata_code": "DRW", + "home_link": "https://www.darwinairport.com.au/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Darwin_International_Airport" + }, + { + "id": "32173", + "ident": "YPDO", + "type": "small_airport", + "name": "Pardoo Airport", + "latitude_deg": "-20.119428", + "longitude_deg": "119.571945", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Pardoo", + "scheduled_service": "no", + "gps_code": "YPDO", + "iata_code": "PRD" + }, + { + "id": "38544", + "ident": "YPDY", + "type": "small_airport", + "name": "Padthaway Station Airport", + "latitude_deg": "-36.61669921875", + "longitude_deg": "140.48300170898438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YPDY" + }, + { + "id": "27102", + "ident": "YPEA", + "type": "medium_airport", + "name": "RAAF Base Pearce", + "latitude_deg": "-31.667800903320312", + "longitude_deg": "116.01499938964844", + "elevation_ft": "149", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Bullsbrook", + "scheduled_service": "no", + "gps_code": "YPEA", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAAF_Base_Pearce" + }, + { + "id": "27103", + "ident": "YPED", + "type": "medium_airport", + "name": "RAAF Base Edinburgh", + "latitude_deg": "-34.705705", + "longitude_deg": "138.615564", + "elevation_ft": "67", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Adelaide", + "scheduled_service": "no", + "gps_code": "YPED", + "home_link": "http://www.raaf.gov.au/organisation/info_on/bases/edinburgh/index.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAAF_Base_Edinburgh" + }, + { + "id": "27881", + "ident": "YPEF", + "type": "small_airport", + "name": "Penfield Airfield", + "latitude_deg": "-37.5133018494", + "longitude_deg": "144.697998047", + "elevation_ft": "1150", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Sunbury", + "scheduled_service": "no", + "gps_code": "YPEF", + "home_link": "http://www.flypenfield.com.au", + "keywords": "Sunbury Airfield" + }, + { + "id": "27882", + "ident": "YPFT", + "type": "small_airport", + "name": "Cooma/Polo Flat (Unlic) Airport", + "latitude_deg": "-36.22999954223633", + "longitude_deg": "149.14999389648438", + "elevation_ft": "823", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YPFT" + }, + { + "id": "38545", + "ident": "YPGH", + "type": "small_airport", + "name": "Pigeon Hole Airport", + "latitude_deg": "-16.820474", + "longitude_deg": "131.205577", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YPGH" + }, + { + "id": "27104", + "ident": "YPGV", + "type": "medium_airport", + "name": "Gove Airport", + "latitude_deg": "-12.269399642899998", + "longitude_deg": "136.817993164", + "elevation_ft": "192", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Nhulunbuy", + "scheduled_service": "yes", + "gps_code": "YPGV", + "iata_code": "GOV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gove_Airport" + }, + { + "id": "354815", + "ident": "YPHS", + "type": "small_airport", + "name": "Pine Hill Station Airport", + "latitude_deg": "-22.386977", + "longitude_deg": "133.06025", + "elevation_ft": "2142", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Anmatjere", + "scheduled_service": "no", + "gps_code": "YPHS" + }, + { + "id": "27883", + "ident": "YPID", + "type": "heliport", + "name": "Phillip Island Heliport", + "latitude_deg": "-38.520689", + "longitude_deg": "145.328457", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Newhaven", + "scheduled_service": "no", + "gps_code": "YPID" + }, + { + "id": "27884", + "ident": "YPIN", + "type": "small_airport", + "name": "Pinnacle Airport", + "latitude_deg": "-15.66670036315918", + "longitude_deg": "143.5500030517578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YPIN" + }, + { + "id": "27105", + "ident": "YPIR", + "type": "medium_airport", + "name": "Port Pirie Airport", + "latitude_deg": "-33.23889923095703", + "longitude_deg": "137.9949951171875", + "elevation_ft": "40", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YPIR", + "iata_code": "PPI" + }, + { + "id": "38546", + "ident": "YPIX", + "type": "small_airport", + "name": "Pia Airport", + "latitude_deg": "-27.188883", + "longitude_deg": "116.28242", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YPIX" + }, + { + "id": "27885", + "ident": "YPIY", + "type": "small_airport", + "name": "Pingelly Airport", + "latitude_deg": "-32.540000915527344", + "longitude_deg": "117.072998046875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YPIY" + }, + { + "id": "27886", + "ident": "YPJI", + "type": "small_airport", + "name": "Perenjori Airport", + "latitude_deg": "-29.426497", + "longitude_deg": "116.283803", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YPJI" + }, + { + "id": "27106", + "ident": "YPJT", + "type": "medium_airport", + "name": "Perth Jandakot Airport", + "latitude_deg": "-32.09749984741211", + "longitude_deg": "115.88099670410156", + "elevation_ft": "99", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Perth", + "scheduled_service": "no", + "gps_code": "YPJT", + "iata_code": "JAD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jandakot_Airport" + }, + { + "id": "27107", + "ident": "YPKA", + "type": "medium_airport", + "name": "Karratha Airport", + "latitude_deg": "-20.712200164799995", + "longitude_deg": "116.773002625", + "elevation_ft": "29", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Karratha", + "scheduled_service": "yes", + "gps_code": "YPKA", + "iata_code": "KTA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Karratha_Airport" + }, + { + "id": "38547", + "ident": "YPKE", + "type": "small_airport", + "name": "Peake Airport", + "latitude_deg": "-28.25", + "longitude_deg": "135.89999389648438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YPKE" + }, + { + "id": "27108", + "ident": "YPKG", + "type": "medium_airport", + "name": "Kalgoorlie Boulder Airport", + "latitude_deg": "-30.791543", + "longitude_deg": "121.464586", + "elevation_ft": "1203", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Broadwood", + "scheduled_service": "yes", + "gps_code": "YPKG", + "iata_code": "KGI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kalgoorlie-Boulder_Airport" + }, + { + "id": "27887", + "ident": "YPKH", + "type": "small_airport", + "name": "Peak Hill Airport", + "latitude_deg": "-32.731204", + "longitude_deg": "148.21098", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YPKH" + }, + { + "id": "38548", + "ident": "YPKI", + "type": "small_airport", + "name": "Parakylia Airport", + "latitude_deg": "-30.399999618530273", + "longitude_deg": "136.39199829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YPKI" + }, + { + "id": "27888", + "ident": "YPKL", + "type": "small_airport", + "name": "Puckapunyal (Military) Airport", + "latitude_deg": "-37", + "longitude_deg": "145.06300354003906", + "elevation_ft": "168", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YPKL" + }, + { + "id": "27109", + "ident": "YPKS", + "type": "medium_airport", + "name": "Parkes Airport", + "latitude_deg": "-33.131401062", + "longitude_deg": "148.238998413", + "elevation_ft": "1069", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Parkes", + "scheduled_service": "yes", + "gps_code": "YPKS", + "iata_code": "PKE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Parkes_Airport" + }, + { + "id": "27110", + "ident": "YPKT", + "type": "medium_airport", + "name": "Port Keats Airport", + "latitude_deg": "-14.249701", + "longitude_deg": "129.529538", + "elevation_ft": "91", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Wadeye", + "scheduled_service": "no", + "gps_code": "YPKT", + "iata_code": "PKT" + }, + { + "id": "27111", + "ident": "YPKU", + "type": "medium_airport", + "name": "East Kimberley Regional (Kununurra) Airport", + "latitude_deg": "-15.7781", + "longitude_deg": "128.707993", + "elevation_ft": "145", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Kununurra", + "scheduled_service": "yes", + "gps_code": "YPKU", + "iata_code": "KNX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kununurra_Airport" + }, + { + "id": "27112", + "ident": "YPLC", + "type": "medium_airport", + "name": "Port Lincoln Airport", + "latitude_deg": "-34.6053009033", + "longitude_deg": "135.880004883", + "elevation_ft": "36", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Port Lincoln", + "scheduled_service": "yes", + "gps_code": "YPLC", + "iata_code": "PLO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Lincoln_Airport" + }, + { + "id": "27890", + "ident": "YPLG", + "type": "small_airport", + "name": "Pilliga Airport", + "latitude_deg": "-30.36669921875", + "longitude_deg": "148.88299560546875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YPLG" + }, + { + "id": "27891", + "ident": "YPLI", + "type": "small_airport", + "name": "Palmers Island/Yamba Airport", + "latitude_deg": "-29.445876", + "longitude_deg": "153.270628", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YPLI" + }, + { + "id": "38549", + "ident": "YPLL", + "type": "small_airport", + "name": "Peak Hill Airport", + "latitude_deg": "-25.611306", + "longitude_deg": "118.696654", + "elevation_ft": "1873", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Peak Hill", + "scheduled_service": "no", + "gps_code": "YPLL" + }, + { + "id": "27113", + "ident": "YPLM", + "type": "medium_airport", + "name": "Learmonth Airport", + "latitude_deg": "-22.235201", + "longitude_deg": "114.090024", + "elevation_ft": "19", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Exmouth", + "scheduled_service": "yes", + "gps_code": "YPLM", + "iata_code": "LEA", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAAF_Learmonth", + "keywords": "RAAF Learmonth" + }, + { + "id": "38550", + "ident": "YPLU", + "type": "small_airport", + "name": "Plutonic Airport", + "latitude_deg": "-25.33329963684082", + "longitude_deg": "119.42500305175781", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YPLU" + }, + { + "id": "27892", + "ident": "YPMB", + "type": "small_airport", + "name": "Plumbago Airport", + "latitude_deg": "-32.05329895019531", + "longitude_deg": "139.8719940185547", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YPMB" + }, + { + "id": "38551", + "ident": "YPME", + "type": "small_airport", + "name": "Palmer Airport", + "latitude_deg": "-12.83329963684082", + "longitude_deg": "130.93299865722656", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YPME" + }, + { + "id": "316690", + "ident": "YPMH", + "type": "small_airport", + "name": "Prominent Hill Airport", + "latitude_deg": "-29.716", + "longitude_deg": "135.5244", + "elevation_ft": "745", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Mount Eba", + "scheduled_service": "yes", + "gps_code": "YPMH", + "iata_code": "PXH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Prominent_Hill_Airport" + }, + { + "id": "27114", + "ident": "YPMP", + "type": "small_airport", + "name": "Pormpuraaw Airport", + "latitude_deg": "-14.896451", + "longitude_deg": "141.60908", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Pormpuraaw", + "scheduled_service": "yes", + "gps_code": "YPMP", + "iata_code": "EDR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Edward_River_Airport", + "keywords": "Edward River Airport" + }, + { + "id": "27115", + "ident": "YPMQ", + "type": "medium_airport", + "name": "Port Macquarie Airport", + "latitude_deg": "-31.4358005524", + "longitude_deg": "152.863006592", + "elevation_ft": "12", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Port Macquarie", + "scheduled_service": "yes", + "gps_code": "YPMQ", + "iata_code": "PQQ", + "home_link": "http://www.hastings.nsw.gov.au/www/html/455-welcome-to-port-macquarie-airport.asp?intLocationID=455", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Macquarie_Airport" + }, + { + "id": "38552", + "ident": "YPNC", + "type": "small_airport", + "name": "Pine Creek Airport", + "latitude_deg": "-13.825914", + "longitude_deg": "131.845764", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YPNC" + }, + { + "id": "27893", + "ident": "YPNG", + "type": "small_airport", + "name": "Penong Airport", + "latitude_deg": "-31.916700363159", + "longitude_deg": "133", + "elevation_ft": "78", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Penong", + "scheduled_service": "no", + "gps_code": "YPNG", + "iata_code": "PEY" + }, + { + "id": "27894", + "ident": "YPNI", + "type": "small_airport", + "name": "Prenti Downs Airport", + "latitude_deg": "-26.523921", + "longitude_deg": "122.81142", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YPNI" + }, + { + "id": "27895", + "ident": "YPNN", + "type": "small_airport", + "name": "Pinnaroo Airport", + "latitude_deg": "-35.253299713134766", + "longitude_deg": "140.9429931640625", + "elevation_ft": "76", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YPNN" + }, + { + "id": "27896", + "ident": "YPNW", + "type": "small_airport", + "name": "Pannawonica Airport", + "latitude_deg": "-21.628708", + "longitude_deg": "116.319315", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YPNW" + }, + { + "id": "27116", + "ident": "YPOD", + "type": "medium_airport", + "name": "Portland Airport", + "latitude_deg": "-38.31809997558594", + "longitude_deg": "141.4709930419922", + "elevation_ft": "265", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "yes", + "gps_code": "YPOD", + "iata_code": "PTJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Portland_Airport_(Australia)" + }, + { + "id": "27897", + "ident": "YPOK", + "type": "small_airport", + "name": "Porepunkah Airport", + "latitude_deg": "-36.7177307062", + "longitude_deg": "146.890039444", + "elevation_ft": "935", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YPOK", + "keywords": "Victorian Aerial Fire Bases" + }, + { + "id": "27898", + "ident": "YPOP", + "type": "small_airport", + "name": "Porphyry Airport", + "latitude_deg": "-29.775926", + "longitude_deg": "122.268906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Kookynie", + "scheduled_service": "no", + "gps_code": "YPOP" + }, + { + "id": "27117", + "ident": "YPPD", + "type": "medium_airport", + "name": "Port Hedland International Airport", + "latitude_deg": "-20.3777999878", + "longitude_deg": "118.625999451", + "elevation_ft": "33", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Port Hedland", + "scheduled_service": "yes", + "gps_code": "YPPD", + "iata_code": "PHE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Port_Hedland_International_Airport" + }, + { + "id": "27118", + "ident": "YPPF", + "type": "small_airport", + "name": "Adelaide Parafield Airport", + "latitude_deg": "-34.793300628699996", + "longitude_deg": "138.632995605", + "elevation_ft": "57", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Adelaide", + "scheduled_service": "no", + "gps_code": "YPPF", + "home_link": "http://www.adelaideairport.com.au/corporate-and-community/adelaide-airport-limited/airports", + "wikipedia_link": "https://en.wikipedia.org/wiki/Parafield_Airport" + }, + { + "id": "27119", + "ident": "YPPH", + "type": "large_airport", + "name": "Perth International Airport", + "latitude_deg": "-31.94029998779297", + "longitude_deg": "115.96700286865234", + "elevation_ft": "67", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Perth", + "scheduled_service": "yes", + "gps_code": "YPPH", + "iata_code": "PER", + "wikipedia_link": "https://en.wikipedia.org/wiki/Perth_Airport" + }, + { + "id": "38553", + "ident": "YPRA", + "type": "small_airport", + "name": "Prairie Airport", + "latitude_deg": "-36.30720138549805", + "longitude_deg": "144.13900756835938", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YPRA" + }, + { + "id": "309309", + "ident": "YPRC", + "type": "heliport", + "name": "Prince Charles Hospital Helipad", + "latitude_deg": "-27.38761", + "longitude_deg": "153.02411", + "elevation_ft": "135", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Brisbane", + "scheduled_service": "no", + "gps_code": "YPRC", + "local_code": "YPRC" + }, + { + "id": "30287", + "ident": "YPRE", + "type": "small_airport", + "name": "Premer Betoota Airport", + "latitude_deg": "-31.476900100708008", + "longitude_deg": "149.9029998779297", + "elevation_ft": "1257", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YPRE" + }, + { + "id": "309310", + "ident": "YPRI", + "type": "heliport", + "name": "Princess Alexandra Hospital Helipad", + "latitude_deg": "-27.50018", + "longitude_deg": "153.0338", + "elevation_ft": "200", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Brisbane", + "scheduled_service": "no", + "gps_code": "YPRI", + "local_code": "YPRI" + }, + { + "id": "27900", + "ident": "YPSH", + "type": "small_airport", + "name": "Penneshaw Airport", + "latitude_deg": "-35.7558462874", + "longitude_deg": "137.962875366", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Ironstone", + "scheduled_service": "no", + "gps_code": "YPSH", + "iata_code": "PEA" + }, + { + "id": "313370", + "ident": "YPSR", + "type": "heliport", + "name": "Perisher Valley Medical Centre Helipad", + "latitude_deg": "-36.40515", + "longitude_deg": "148.41471", + "elevation_ft": "5689", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Jindabyne", + "scheduled_service": "no", + "gps_code": "YPSR", + "local_code": "YPSR" + }, + { + "id": "38554", + "ident": "YPTB", + "type": "small_airport", + "name": "Peterborough Airport", + "latitude_deg": "-33.005001068115234", + "longitude_deg": "138.85800170898438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YPTB" + }, + { + "id": "30248", + "ident": "YPTJ", + "type": "small_airport", + "name": "Patjarr Airport", + "latitude_deg": "-24.6189002991", + "longitude_deg": "126.327003479", + "elevation_ft": "1493", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Patjarr", + "scheduled_service": "no", + "gps_code": "YPTJ" + }, + { + "id": "27120", + "ident": "YPTN", + "type": "medium_airport", + "name": "Tindal Airport", + "latitude_deg": "-14.521100044250488", + "longitude_deg": "132.3780059814453", + "elevation_ft": "443", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YPTN", + "iata_code": "KTR", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAAF_Base_Tindal", + "keywords": "RAAF Base Tindal" + }, + { + "id": "38556", + "ident": "YPUA", + "type": "small_airport", + "name": "Palumpa Airport", + "latitude_deg": "-14.339982", + "longitude_deg": "129.864062", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Nganmarriyanga", + "scheduled_service": "no", + "gps_code": "YPUA" + }, + { + "id": "38557", + "ident": "YPUN", + "type": "small_airport", + "name": "Punmu Airport", + "latitude_deg": "-22.066699981689453", + "longitude_deg": "123.16699981689453", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YPUN" + }, + { + "id": "27902", + "ident": "YPVD", + "type": "small_airport", + "name": "Plevna Downs Airport", + "latitude_deg": "-26.66670036315918", + "longitude_deg": "142.58299255371094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YPVD" + }, + { + "id": "38558", + "ident": "YPWH", + "type": "small_airport", + "name": "Pittsworth Airport", + "latitude_deg": "-27.733721", + "longitude_deg": "151.632365", + "elevation_ft": "1690", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Pittsworth", + "scheduled_service": "no", + "gps_code": "YPWH", + "home_link": "https://www.tr.qld.gov.au/our-region/transport/airports/233-pittsworth-airfield" + }, + { + "id": "27121", + "ident": "YPWR", + "type": "small_airport", + "name": "Woomera Airfield", + "latitude_deg": "-31.14419937133789", + "longitude_deg": "136.81700134277344", + "elevation_ft": "548", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Woomera", + "scheduled_service": "yes", + "gps_code": "YPWR", + "iata_code": "UMR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Woomera_Airfield", + "keywords": "RAAF" + }, + { + "id": "27122", + "ident": "YPXM", + "type": "medium_airport", + "name": "Christmas Island Airport", + "latitude_deg": "-10.449382", + "longitude_deg": "105.690931", + "elevation_ft": "916", + "continent": "AS", + "iso_country": "CX", + "iso_region": "CX-U-A", + "municipality": "Flying Fish Cove", + "scheduled_service": "yes", + "gps_code": "YPXM", + "iata_code": "XCH", + "home_link": "http://www.christmasislandairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Christmas_Island_Airport" + }, + { + "id": "311250", + "ident": "YPYA", + "type": "small_airport", + "name": "Palmyra Airstrip", + "latitude_deg": "-21.21157", + "longitude_deg": "149.07654", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YPYA" + }, + { + "id": "27903", + "ident": "YPYD", + "type": "small_airport", + "name": "Pyramid Hill Airport", + "latitude_deg": "-36.060618", + "longitude_deg": "144.126763", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YPYD" + }, + { + "id": "27904", + "ident": "YPYF", + "type": "small_airport", + "name": "Paynes Find Airport", + "latitude_deg": "-29.262055", + "longitude_deg": "117.668958", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YPYF" + }, + { + "id": "30310", + "ident": "YQBE", + "type": "small_airport", + "name": "Quambone Royona Airport", + "latitude_deg": "-30.879199981689453", + "longitude_deg": "147.8419952392578", + "elevation_ft": "489", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YQBE" + }, + { + "id": "27905", + "ident": "YQBK", + "type": "small_airport", + "name": "Quambatook Airport", + "latitude_deg": "-35.856642", + "longitude_deg": "143.514469", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YQBK" + }, + { + "id": "27906", + "ident": "YQDG", + "type": "small_airport", + "name": "Quairading Airport", + "latitude_deg": "-32.004992", + "longitude_deg": "117.417605", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YQDG" + }, + { + "id": "27123", + "ident": "YQDI", + "type": "small_airport", + "name": "Quirindi Airport", + "latitude_deg": "-31.498177", + "longitude_deg": "150.521708", + "elevation_ft": "1054", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YQDI", + "iata_code": "UIR" + }, + { + "id": "317768", + "ident": "YQJ", + "type": "seaplane_base", + "name": "April Point Seaplane Base", + "latitude_deg": "50.065", + "longitude_deg": "-125.235", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Quadra Island", + "scheduled_service": "no", + "iata_code": "YQJ" + }, + { + "id": "27124", + "ident": "YQLP", + "type": "medium_airport", + "name": "Quilpie Airport", + "latitude_deg": "-26.612199783325195", + "longitude_deg": "144.2530059814453", + "elevation_ft": "655", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YQLP", + "iata_code": "ULP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quilpie_Airport" + }, + { + "id": "27907", + "ident": "YQNS", + "type": "small_airport", + "name": "Queenstown Airport", + "latitude_deg": "-42.075001", + "longitude_deg": "145.531998", + "elevation_ft": "867", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YQNS", + "iata_code": "UEE" + }, + { + "id": "38559", + "ident": "YQON", + "type": "small_airport", + "name": "Quondong Airport", + "latitude_deg": "-33.08676", + "longitude_deg": "140.329871", + "elevation_ft": "348", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Quondong", + "scheduled_service": "no", + "gps_code": "YQON", + "keywords": "YQNDG" + }, + { + "id": "27908", + "ident": "YQRN", + "type": "small_airport", + "name": "Quorn Airport", + "latitude_deg": "-32.325651", + "longitude_deg": "138.105612", + "elevation_ft": "293", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YQRN" + }, + { + "id": "30311", + "ident": "YQUA", + "type": "small_airport", + "name": "Quarry2 Airport", + "latitude_deg": "-30.29146", + "longitude_deg": "134.526815", + "elevation_ft": "604", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Tarcoola", + "scheduled_service": "no", + "gps_code": "YQUA" + }, + { + "id": "27909", + "ident": "YQUE", + "type": "small_airport", + "name": "Questa Park Airport", + "latitude_deg": "-30.391700744628906", + "longitude_deg": "143.14199829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YQUE" + }, + { + "id": "27910", + "ident": "YRAG", + "type": "small_airport", + "name": "Raglan Airport", + "latitude_deg": "-37.3773873391", + "longitude_deg": "143.305664062", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YRAG" + }, + { + "id": "38560", + "ident": "YRAM", + "type": "small_airport", + "name": "Raymore Homestead Airport", + "latitude_deg": "-26.149999618530273", + "longitude_deg": "143.01699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YRAM" + }, + { + "id": "45165", + "ident": "YRAT", + "type": "small_airport", + "name": "Abrolhos Rat Island", + "latitude_deg": "-28.7197", + "longitude_deg": "113.7845", + "elevation_ft": "16", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YRAT" + }, + { + "id": "27911", + "ident": "YRAV", + "type": "small_airport", + "name": "Ravensthorpe Airport", + "latitude_deg": "-33.539033", + "longitude_deg": "119.949613", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YRAV" + }, + { + "id": "27912", + "ident": "YRAW", + "type": "small_airport", + "name": "Rawlinna Airport", + "latitude_deg": "-31.01298", + "longitude_deg": "125.326989", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YRAW" + }, + { + "id": "27913", + "ident": "YRBB", + "type": "small_airport", + "name": "Rainbow Beach Airport", + "latitude_deg": "-25.85211", + "longitude_deg": "153.069248", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YRBB" + }, + { + "id": "309318", + "ident": "YRBC", + "type": "heliport", + "name": "Royal Brisbane Hospital Helipad Charlie", + "latitude_deg": "-27.44993", + "longitude_deg": "153.02759", + "elevation_ft": "150", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Brisbane", + "scheduled_service": "no", + "gps_code": "YRBC" + }, + { + "id": "38561", + "ident": "YRBE", + "type": "small_airport", + "name": "Robe Airport", + "latitude_deg": "-37.1753636288", + "longitude_deg": "139.805231094", + "elevation_ft": "65", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Robe", + "scheduled_service": "no", + "gps_code": "YRBE", + "home_link": "http://www.council.robe.sa.gov.au/site/page.cfm?u=272" + }, + { + "id": "309317", + "ident": "YRBH", + "type": "heliport", + "name": "Royal Brisbane Hospital Helipad Alpha", + "latitude_deg": "-27.44705", + "longitude_deg": "153.02827", + "elevation_ft": "180", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Brisbane", + "scheduled_service": "no", + "gps_code": "YRBH", + "local_code": "YRBH" + }, + { + "id": "317149", + "ident": "YRBK", + "type": "heliport", + "name": "Robertson Barracks Heliport", + "latitude_deg": "-12.4255", + "longitude_deg": "130.9732", + "elevation_ft": "118", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Holtze", + "scheduled_service": "no", + "gps_code": "YRBK" + }, + { + "id": "38562", + "ident": "YRBM", + "type": "small_airport", + "name": "Redbank Mine Airport", + "latitude_deg": "-17.183300018310547", + "longitude_deg": "137.76699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YRBM" + }, + { + "id": "317144", + "ident": "YRBN", + "type": "small_airport", + "name": "Robertson Airstrip", + "latitude_deg": "-34.6449", + "longitude_deg": "150.6421", + "elevation_ft": "1860", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Carrington Falls", + "scheduled_service": "no", + "gps_code": "YRBN", + "local_code": "YRBN" + }, + { + "id": "27914", + "ident": "YRBR", + "type": "small_airport", + "name": "Robinson River Airport", + "latitude_deg": "-16.7182998657", + "longitude_deg": "136.945007324", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YRBR", + "iata_code": "RRV" + }, + { + "id": "27915", + "ident": "YRBT", + "type": "small_airport", + "name": "Rabbit Flat Airport", + "latitude_deg": "-20.183300018310547", + "longitude_deg": "130.01699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YRBT" + }, + { + "id": "27916", + "ident": "YRBW", + "type": "small_airport", + "name": "Rainbow Airport", + "latitude_deg": "-35.907826", + "longitude_deg": "141.977863", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YRBW" + }, + { + "id": "308549", + "ident": "YRC", + "type": "seaplane_base", + "name": "Refuge Cove Seaplane Base", + "latitude_deg": "50.1234", + "longitude_deg": "-124.843", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Desolation Sound", + "scheduled_service": "no", + "iata_code": "YRC" + }, + { + "id": "317769", + "ident": "YRD", + "type": "small_airport", + "name": "Dean River Airport", + "latitude_deg": "52.82371", + "longitude_deg": "-126.964957", + "elevation_ft": "62", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Kimsquit Valley", + "scheduled_service": "no", + "iata_code": "YRD" + }, + { + "id": "27917", + "ident": "YRDA", + "type": "small_airport", + "name": "Yardea Airport", + "latitude_deg": "-32.40999984741211", + "longitude_deg": "135.48500061035156", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YRDA" + }, + { + "id": "27918", + "ident": "YRDM", + "type": "small_airport", + "name": "Redmont Airport", + "latitude_deg": "-21.977036", + "longitude_deg": "119.017038", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YRDM" + }, + { + "id": "354881", + "ident": "YRDS", + "type": "small_airport", + "name": "Richmond Downs Airfield", + "latitude_deg": "-20.577274", + "longitude_deg": "143.301061", + "elevation_ft": "900", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "YRDS" + }, + { + "id": "38563", + "ident": "YRDY", + "type": "small_airport", + "name": "Reedys Airport", + "latitude_deg": "-27.124358", + "longitude_deg": "118.279386", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YRDY" + }, + { + "id": "27919", + "ident": "YRED", + "type": "small_airport", + "name": "Redcliffe Airport", + "latitude_deg": "-27.205605", + "longitude_deg": "153.068712", + "elevation_ft": "2", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Redcliffe", + "scheduled_service": "no", + "gps_code": "YRED", + "wikipedia_link": "https://en.wikipedia.org/wiki/Redcliffe_Airport_(Australia)" + }, + { + "id": "27125", + "ident": "YREN", + "type": "medium_airport", + "name": "Renmark Airport", + "latitude_deg": "-34.1963996887207", + "longitude_deg": "140.6739959716797", + "elevation_ft": "115", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YREN", + "iata_code": "RMK" + }, + { + "id": "38564", + "ident": "YRHL", + "type": "small_airport", + "name": "Red Hill Station Airport", + "latitude_deg": "-21.969539", + "longitude_deg": "116.062408", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YRHL" + }, + { + "id": "309209", + "ident": "YRHO", + "type": "heliport", + "name": "Royal Childrens Hospital Helipad", + "latitude_deg": "-37.794058", + "longitude_deg": "144.951309", + "elevation_ft": "126", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Melbourne", + "scheduled_service": "no", + "gps_code": "YRHO", + "local_code": "YRHO" + }, + { + "id": "32732", + "ident": "YRID", + "type": "small_airport", + "name": "Riddell Airport", + "latitude_deg": "-37.478705", + "longitude_deg": "144.721098", + "elevation_ft": "1150", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Riddell", + "scheduled_service": "no", + "gps_code": "YRID", + "home_link": "http://www.riddellairfield.com.au/" + }, + { + "id": "27921", + "ident": "YRKE", + "type": "small_airport", + "name": "Kuruc-A-Ruc South Airport", + "latitude_deg": "-37.899578", + "longitude_deg": "143.709755", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Rokewood", + "scheduled_service": "no", + "gps_code": "YRKE" + }, + { + "id": "27922", + "ident": "YRKS", + "type": "small_airport", + "name": "Rocklands Airport", + "latitude_deg": "-19.86669921875", + "longitude_deg": "138.10000610351562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YRKS" + }, + { + "id": "38566", + "ident": "YRLE", + "type": "small_airport", + "name": "Rocklea Airport", + "latitude_deg": "-22.88330078125", + "longitude_deg": "117.44999694824219", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YRLE" + }, + { + "id": "354882", + "ident": "YRLH", + "type": "small_airport", + "name": "Riversleigh Airport", + "latitude_deg": "-19.029167", + "longitude_deg": "138.737778", + "elevation_ft": "461", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Riversleigh", + "scheduled_service": "no", + "gps_code": "YRLH" + }, + { + "id": "27923", + "ident": "YRLL", + "type": "small_airport", + "name": "Rolleston Airport", + "latitude_deg": "-24.460939", + "longitude_deg": "148.627424", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YRLL" + }, + { + "id": "342171", + "ident": "YRLO", + "type": "small_airport", + "name": "Rollo's Aerodrome", + "latitude_deg": "-35.0371", + "longitude_deg": "139.1869", + "elevation_ft": "374", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Pallamana", + "scheduled_service": "no", + "gps_code": "YRLO" + }, + { + "id": "27126", + "ident": "YRMD", + "type": "small_airport", + "name": "Richmond Airport", + "latitude_deg": "-20.701900482177734", + "longitude_deg": "143.11500549316406", + "elevation_ft": "676", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YRMD", + "iata_code": "RCM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Richmond_Airport", + "keywords": "RAAF Base Richmond" + }, + { + "id": "309210", + "ident": "YRMH", + "type": "heliport", + "name": "Royal Melbourne Hospital Helipad", + "latitude_deg": "-37.799243", + "longitude_deg": "144.95593", + "elevation_ft": "221", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Melbourne", + "scheduled_service": "no", + "gps_code": "YRMH", + "local_code": "YRMH" + }, + { + "id": "27127", + "ident": "YRNG", + "type": "small_airport", + "name": "Ramingining Airport", + "latitude_deg": "-12.356399536132812", + "longitude_deg": "134.8979949951172", + "elevation_ft": "206", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "yes", + "gps_code": "YRNG", + "iata_code": "RAM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ramingining_Airport" + }, + { + "id": "27924", + "ident": "YRNW", + "type": "small_airport", + "name": "Ringwood Airport", + "latitude_deg": "-23.82830047607422", + "longitude_deg": "134.96200561523438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YRNW" + }, + { + "id": "27925", + "ident": "YROB", + "type": "small_airport", + "name": "Robinhood Airport", + "latitude_deg": "-18.844999313354492", + "longitude_deg": "143.7100067138672", + "elevation_ft": "460", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YROB", + "iata_code": "ROH" + }, + { + "id": "27926", + "ident": "YROE", + "type": "small_airport", + "name": "Roebourne Airport", + "latitude_deg": "-20.763898", + "longitude_deg": "117.155199", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Roebourne", + "scheduled_service": "no", + "gps_code": "YROE", + "iata_code": "RBU" + }, + { + "id": "27927", + "ident": "YROI", + "type": "small_airport", + "name": "Robinvale Airport", + "latitude_deg": "-34.642887", + "longitude_deg": "142.773042", + "elevation_ft": "87", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Robinvale", + "scheduled_service": "no", + "gps_code": "YROI", + "iata_code": "RBC" + }, + { + "id": "38567", + "ident": "YROK", + "type": "small_airport", + "name": "Rocky River Airport", + "latitude_deg": "-35.93000030517578", + "longitude_deg": "136.72000122070312", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YROK" + }, + { + "id": "27128", + "ident": "YROM", + "type": "medium_airport", + "name": "Roma Airport", + "latitude_deg": "-26.545000076300003", + "longitude_deg": "148.774993896", + "elevation_ft": "1032", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Roma", + "scheduled_service": "yes", + "gps_code": "YROM", + "iata_code": "RMA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Roma_Airport" + }, + { + "id": "38568", + "ident": "YROT", + "type": "small_airport", + "name": "Rothsay Mine Airport", + "latitude_deg": "-29.293772", + "longitude_deg": "116.890068", + "elevation_ft": "1033", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Rothsay", + "scheduled_service": "no", + "gps_code": "YROT" + }, + { + "id": "38569", + "ident": "YROV", + "type": "small_airport", + "name": "Ross River Airport", + "latitude_deg": "-23.599199295043945", + "longitude_deg": "134.51699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YROV" + }, + { + "id": "27928", + "ident": "YRRB", + "type": "small_airport", + "name": "Roper Bar Airport", + "latitude_deg": "-14.734814", + "longitude_deg": "134.525485", + "elevation_ft": "92", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Roper Bar", + "scheduled_service": "no", + "gps_code": "YRRB", + "iata_code": "RPB" + }, + { + "id": "38570", + "ident": "YRRG", + "type": "small_airport", + "name": "Rhodes Ridge Airport", + "latitude_deg": "-23.101636", + "longitude_deg": "119.358867", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YRRG" + }, + { + "id": "27929", + "ident": "YRRR", + "type": "small_airport", + "name": "Raymangirr Airport", + "latitude_deg": "-12.33329963684082", + "longitude_deg": "135.64999389648438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YRRR" + }, + { + "id": "27930", + "ident": "YRSB", + "type": "small_airport", + "name": "Roseberth Airport", + "latitude_deg": "-25.825737", + "longitude_deg": "139.627476", + "elevation_ft": "55", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YRSB", + "iata_code": "RSB" + }, + { + "id": "27931", + "ident": "YRSH", + "type": "heliport", + "name": "Rosehill Heliport Airport", + "latitude_deg": "-33.8300966368", + "longitude_deg": "151.024138927", + "elevation_ft": "4", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YRSH" + }, + { + "id": "38571", + "ident": "YRSK", + "type": "small_airport", + "name": "Ringer Soak Airport", + "latitude_deg": "-18.78860092163086", + "longitude_deg": "128.62399291992188", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YRSK" + }, + { + "id": "27932", + "ident": "YRSV", + "type": "small_airport", + "name": "Rosevale Resort Airport", + "latitude_deg": "-27.13330078125", + "longitude_deg": "145.89999389648438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YRSV" + }, + { + "id": "27933", + "ident": "YRSY", + "type": "small_airport", + "name": "Romsey Airport", + "latitude_deg": "-37.391667", + "longitude_deg": "144.738333", + "elevation_ft": "1500", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Romsey", + "scheduled_service": "no", + "gps_code": "YRSY" + }, + { + "id": "27129", + "ident": "YRTI", + "type": "small_airport", + "name": "Rottnest Island Airport", + "latitude_deg": "-32.006699", + "longitude_deg": "115.540001", + "elevation_ft": "12", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YRTI", + "iata_code": "RTS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rottnest_Island_Airport" + }, + { + "id": "27934", + "ident": "YRTP", + "type": "small_airport", + "name": "Rutland Plains Airport", + "latitude_deg": "-15.644963", + "longitude_deg": "141.844373", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Yagoonya", + "scheduled_service": "no", + "gps_code": "YRTP", + "iata_code": "RTP" + }, + { + "id": "38572", + "ident": "YRUD", + "type": "small_airport", + "name": "Rudal River Airport", + "latitude_deg": "-22.558073", + "longitude_deg": "122.14806", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YRUD" + }, + { + "id": "38573", + "ident": "YRVE", + "type": "small_airport", + "name": "Riveren Airport", + "latitude_deg": "-17.899999618530273", + "longitude_deg": "130.2169952392578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YRVE" + }, + { + "id": "27936", + "ident": "YRWA", + "type": "small_airport", + "name": "Rawlinna Station Airport", + "latitude_deg": "-31.030762", + "longitude_deg": "125.19467", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YRWA" + }, + { + "id": "27937", + "ident": "YRWH", + "type": "small_airport", + "name": "Ravensworth Airport", + "latitude_deg": "-34.649661", + "longitude_deg": "144.319775", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YRWH" + }, + { + "id": "27938", + "ident": "YRXB", + "type": "small_airport", + "name": "Roxby Downs Station Airport", + "latitude_deg": "-30.708437", + "longitude_deg": "136.71067", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YRXB" + }, + { + "id": "38574", + "ident": "YRYH", + "type": "small_airport", + "name": "Roy Hill Station Airport", + "latitude_deg": "-22.625815891", + "longitude_deg": "119.959030151", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YRYH", + "iata_code": "RHL" + }, + { + "id": "27939", + "ident": "YRYK", + "type": "small_airport", + "name": "Rawnsley Park Airport", + "latitude_deg": "-31.653528213500977", + "longitude_deg": "138.60952758789062", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YRYK" + }, + { + "id": "350495", + "ident": "YRYL", + "type": "small_airport", + "name": "Rylstone Aerodrome", + "latitude_deg": "-32.770903", + "longitude_deg": "149.993227", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Rylstone", + "scheduled_service": "no", + "gps_code": "YRYL" + }, + { + "id": "429887", + "ident": "YRYP", + "type": "heliport", + "name": "Rayner Place Heliport", + "latitude_deg": "-34.862795", + "longitude_deg": "148.933818", + "elevation_ft": "1690", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Yass", + "scheduled_service": "no", + "gps_code": "YRYP" + }, + { + "id": "38575", + "ident": "YSAH", + "type": "small_airport", + "name": "Sandhill Airport", + "latitude_deg": "-22.799999237060547", + "longitude_deg": "119.61699676513672", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YSAH" + }, + { + "id": "38576", + "ident": "YSAI", + "type": "small_airport", + "name": "Saipem Airport", + "latitude_deg": "-23.700000762939453", + "longitude_deg": "131.86700439453125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YSAI" + }, + { + "id": "32018", + "ident": "YSAN", + "type": "small_airport", + "name": "Sandstone Airport", + "latitude_deg": "-27.979999542236328", + "longitude_deg": "119.2969970703125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Sandstone", + "scheduled_service": "no", + "gps_code": "YSAN", + "iata_code": "NDS" + }, + { + "id": "38577", + "ident": "YSAR", + "type": "small_airport", + "name": "Mount Sarah Airport", + "latitude_deg": "-27.043100357055664", + "longitude_deg": "135.24200439453125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YSAR" + }, + { + "id": "354816", + "ident": "YSAW", + "type": "small_airport", + "name": "Sawfish Camp Airport", + "latitude_deg": "-15.128623", + "longitude_deg": "135.00993", + "elevation_ft": "180", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YSAW" + }, + { + "id": "27941", + "ident": "YSBG", + "type": "small_airport", + "name": "Strathbogie Airport", + "latitude_deg": "-36.85499954223633", + "longitude_deg": "145.73800659179688", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YSBG" + }, + { + "id": "27130", + "ident": "YSBK", + "type": "medium_airport", + "name": "Sydney Bankstown Airport", + "latitude_deg": "-33.923618", + "longitude_deg": "150.990792", + "elevation_ft": "29", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Sydney", + "scheduled_service": "no", + "gps_code": "YSBK", + "iata_code": "BWU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bankstown_Airport" + }, + { + "id": "38578", + "ident": "YSBO", + "type": "small_airport", + "name": "Stanbroke Airport", + "latitude_deg": "-21.566699981689453", + "longitude_deg": "139.7169952392578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YSBO" + }, + { + "id": "30399", + "ident": "YSCA", + "type": "small_airport", + "name": "Scotia Sanctuary Airport", + "latitude_deg": "-33.207199096699995", + "longitude_deg": "141.17300415", + "elevation_ft": "177", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YSCA" + }, + { + "id": "27131", + "ident": "YSCB", + "type": "medium_airport", + "name": "Canberra International Airport", + "latitude_deg": "-35.3069", + "longitude_deg": "149.195007", + "elevation_ft": "1886", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-ACT", + "municipality": "Canberra", + "scheduled_service": "yes", + "gps_code": "YSCB", + "iata_code": "CBR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Canberra_International_Airport", + "keywords": "RAAF Base Fairbairn" + }, + { + "id": "332233", + "ident": "YSCD", + "type": "small_airport", + "name": "Carosue Dam Airport", + "latitude_deg": "-30.174236", + "longitude_deg": "122.322249", + "elevation_ft": "1306", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Cundeelee", + "scheduled_service": "no", + "gps_code": "YSCD", + "iata_code": "WCD" + }, + { + "id": "27133", + "ident": "YSCN", + "type": "medium_airport", + "name": "Camden Airport", + "latitude_deg": "-34.038338", + "longitude_deg": "150.686406", + "elevation_ft": "230", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Cobbitty", + "scheduled_service": "no", + "gps_code": "YSCN", + "iata_code": "CDU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Camden_Airport" + }, + { + "id": "27134", + "ident": "YSCO", + "type": "small_airport", + "name": "Scone Airport", + "latitude_deg": "-32.037200927734375", + "longitude_deg": "150.83200073242188", + "elevation_ft": "745", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YSCO", + "iata_code": "NSO" + }, + { + "id": "27942", + "ident": "YSCR", + "type": "small_airport", + "name": "Southern Cross Airport", + "latitude_deg": "-31.239999771118164", + "longitude_deg": "119.36000061035156", + "elevation_ft": "354", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YSCR", + "iata_code": "SQC" + }, + { + "id": "27943", + "ident": "YSDL", + "type": "small_airport", + "name": "Sudley Airport", + "latitude_deg": "-12.716843", + "longitude_deg": "142.36666", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YSDL" + }, + { + "id": "27944", + "ident": "YSDN", + "type": "small_airport", + "name": "Soudan Station Airport", + "latitude_deg": "-20.043907", + "longitude_deg": "137.019253", + "elevation_ft": "735", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YSDN" + }, + { + "id": "27135", + "ident": "YSDU", + "type": "medium_airport", + "name": "Dubbo City Regional Airport", + "latitude_deg": "-32.2167015076", + "longitude_deg": "148.574996948", + "elevation_ft": "935", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Dubbo", + "scheduled_service": "yes", + "gps_code": "YSDU", + "iata_code": "DBO", + "home_link": "http://www.dubbo.nsw.gov.au/BusinessandIndustry/DubboCityRegionalAirport.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dubbo_Airport" + }, + { + "id": "27945", + "ident": "YSDW", + "type": "small_airport", + "name": "Strathdownie Airport", + "latitude_deg": "-37.7317008972168", + "longitude_deg": "141.125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YSDW" + }, + { + "id": "27946", + "ident": "YSEN", + "type": "small_airport", + "name": "Serpentine Airport", + "latitude_deg": "-32.39496612548828", + "longitude_deg": "115.87098693847656", + "elevation_ft": "9", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YSEN", + "home_link": "http://www.sabc.org.au" + }, + { + "id": "27948", + "ident": "YSFG", + "type": "small_airport", + "name": "Stonefield Gliding", + "latitude_deg": "-34.343755", + "longitude_deg": "139.310031", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YSFG" + }, + { + "id": "27947", + "ident": "YSFI", + "type": "small_airport", + "name": "Sandfire Airport", + "latitude_deg": "-19.77206", + "longitude_deg": "121.090661", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YSFI" + }, + { + "id": "27949", + "ident": "YSFY", + "type": "small_airport", + "name": "Sandfly Airport", + "latitude_deg": "-42.982337", + "longitude_deg": "147.209287", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YSFY" + }, + { + "id": "38579", + "ident": "YSGD", + "type": "small_airport", + "name": "Strathgordon Airport", + "latitude_deg": "-14.795000076293945", + "longitude_deg": "142.43299865722656", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YSGD" + }, + { + "id": "27136", + "ident": "YSGE", + "type": "small_airport", + "name": "St George Airport", + "latitude_deg": "-28.049699783325195", + "longitude_deg": "148.59500122070312", + "elevation_ft": "656", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YSGE", + "iata_code": "SGO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saint_George_Airport" + }, + { + "id": "27950", + "ident": "YSGR", + "type": "small_airport", + "name": "South Grafton Airport", + "latitude_deg": "-29.70829963684082", + "longitude_deg": "152.92799377441406", + "elevation_ft": "6", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YSGR" + }, + { + "id": "27951", + "ident": "YSGT", + "type": "small_airport", + "name": "Singleton Airport", + "latitude_deg": "-32.600832", + "longitude_deg": "151.193056", + "elevation_ft": "46", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Singleton", + "scheduled_service": "no", + "gps_code": "YSGT", + "iata_code": "SIX" + }, + { + "id": "27952", + "ident": "YSGW", + "type": "small_airport", + "name": "South Galway Airport", + "latitude_deg": "-25.683300018310547", + "longitude_deg": "142.10800170898438", + "elevation_ft": "116", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YSGW", + "iata_code": "ZGL" + }, + { + "id": "32292", + "ident": "YSHG", + "type": "small_airport", + "name": "Shay Gap Airport", + "latitude_deg": "-20.424699783325195", + "longitude_deg": "120.14099884033203", + "elevation_ft": "620", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Shay Gap", + "scheduled_service": "no", + "gps_code": "YSHG", + "iata_code": "SGP" + }, + { + "id": "27137", + "ident": "YSHK", + "type": "medium_airport", + "name": "Shark Bay Airport", + "latitude_deg": "-25.897294", + "longitude_deg": "113.575802", + "elevation_ft": "111", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Denham", + "scheduled_service": "yes", + "gps_code": "YSHK", + "iata_code": "MJK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shark_Bay_Airport", + "keywords": "Monkey Mia Airport" + }, + { + "id": "27177", + "ident": "YSHL", + "type": "medium_airport", + "name": "Shellharbour Airport", + "latitude_deg": "-34.5611", + "longitude_deg": "150.789001", + "elevation_ft": "31", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Albion Park Rail", + "scheduled_service": "yes", + "gps_code": "YSHL", + "iata_code": "WOL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wollongong_Airport", + "keywords": "RAAF Albion Park, Illawarra Regional Airport, Albion Park Aerodrome, Wollongong Airport" + }, + { + "id": "38580", + "ident": "YSHN", + "type": "small_airport", + "name": "Shannon River Airport", + "latitude_deg": "-34.74617", + "longitude_deg": "116.491728", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YSHN" + }, + { + "id": "27953", + "ident": "YSHR", + "type": "small_airport", + "name": "Shute Harbour/Whitsunday Airport", + "latitude_deg": "-20.276127", + "longitude_deg": "148.754979", + "elevation_ft": "40", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Shute Harbour", + "scheduled_service": "no", + "gps_code": "YSHR", + "iata_code": "WSY", + "home_link": "https://www.whitsundayairport.com.au/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Whitsunday_Airport" + }, + { + "id": "27138", + "ident": "YSHT", + "type": "medium_airport", + "name": "Shepparton Airport", + "latitude_deg": "-36.428341", + "longitude_deg": "145.391473", + "elevation_ft": "374", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YSHT", + "iata_code": "SHT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shepparton_Airport" + }, + { + "id": "27954", + "ident": "YSHW", + "type": "small_airport", + "name": "Holsworthy (Military) Airport", + "latitude_deg": "-33.994998931884766", + "longitude_deg": "150.95199584960938", + "elevation_ft": "76", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YSHW" + }, + { + "id": "38581", + "ident": "YSIA", + "type": "small_airport", + "name": "Siam Airport", + "latitude_deg": "-32.557498931884766", + "longitude_deg": "136.70899963378906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Siam", + "scheduled_service": "no", + "gps_code": "YSIA" + }, + { + "id": "32252", + "ident": "YSII", + "type": "small_airport", + "name": "Saibai Island Airport", + "latitude_deg": "-9.378330230710002", + "longitude_deg": "142.625", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Saibai Island", + "scheduled_service": "yes", + "gps_code": "YSII", + "iata_code": "SBR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Saibai_Island_Airport" + }, + { + "id": "42792", + "ident": "YSLE", + "type": "small_airport", + "name": "St Leonards Airfield", + "latitude_deg": "-38.170101165771484", + "longitude_deg": "144.68899536132812", + "elevation_ft": "47", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YSLE" + }, + { + "id": "27955", + "ident": "YSLG", + "type": "small_airport", + "name": "Silent Grove Airport", + "latitude_deg": "-17.066699981689453", + "longitude_deg": "125.25", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YSLG" + }, + { + "id": "27956", + "ident": "YSLK", + "type": "small_airport", + "name": "Sea Lake Airport", + "latitude_deg": "-35.530594", + "longitude_deg": "142.889879", + "elevation_ft": "56", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YSLK" + }, + { + "id": "38582", + "ident": "YSLN", + "type": "small_airport", + "name": "Strathleven Airport", + "latitude_deg": "-15.898300170898438", + "longitude_deg": "143.38299560546875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YSLN" + }, + { + "id": "38583", + "ident": "YSLT", + "type": "closed", + "name": "Sale Airport", + "latitude_deg": "-38.116699", + "longitude_deg": "147.074997", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Sale", + "scheduled_service": "no", + "gps_code": "YSLT" + }, + { + "id": "38584", + "ident": "YSLV", + "type": "small_airport", + "name": "Sylvania Homestead Airport", + "latitude_deg": "-23.55757", + "longitude_deg": "120.047064", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YSLV" + }, + { + "id": "309612", + "ident": "YSMB", + "type": "small_airport", + "name": "Somersby Airstrip", + "latitude_deg": "-33.367681", + "longitude_deg": "151.299806", + "elevation_ft": "860", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Gosford", + "scheduled_service": "no", + "gps_code": "YSMB", + "iata_code": "GOS", + "local_code": "YSMB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Somersby_Airfield" + }, + { + "id": "27139", + "ident": "YSMI", + "type": "medium_airport", + "name": "Smithton Airport", + "latitude_deg": "-40.834999084472656", + "longitude_deg": "145.08399963378906", + "elevation_ft": "31", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YSMI", + "iata_code": "SIO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Smithton_Airport" + }, + { + "id": "314633", + "ident": "YSML", + "type": "heliport", + "name": "South Molle Island Helipad", + "latitude_deg": "-20.2622", + "longitude_deg": "148.8399", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "South Molle Island Resort", + "scheduled_service": "no", + "gps_code": "YSML", + "iata_code": "SOI" + }, + { + "id": "38585", + "ident": "YSMP", + "type": "small_airport", + "name": "Smith Point Airport", + "latitude_deg": "-11.133566", + "longitude_deg": "132.15957", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YSMP", + "iata_code": "SHU" + }, + { + "id": "27957", + "ident": "YSMR", + "type": "small_airport", + "name": "Strathmore Airport", + "latitude_deg": "-17.862709", + "longitude_deg": "142.557788", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Strathmore", + "scheduled_service": "no", + "gps_code": "YSMR", + "iata_code": "STH" + }, + { + "id": "38586", + "ident": "YSMY", + "type": "small_airport", + "name": "Strathmay Airport", + "latitude_deg": "-14.883299827575684", + "longitude_deg": "142.802001953125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YSMY" + }, + { + "id": "27140", + "ident": "YSNB", + "type": "medium_airport", + "name": "Snake Bay Airport", + "latitude_deg": "-11.417674", + "longitude_deg": "130.648481", + "elevation_ft": "173", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Milikapiti", + "scheduled_service": "yes", + "gps_code": "YSNK", + "iata_code": "SNB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Snake_Bay_Airport", + "keywords": "YSNB, Austin Strip, RAAF Melville Island" + }, + { + "id": "27141", + "ident": "YSNF", + "type": "medium_airport", + "name": "Norfolk Island International Airport", + "latitude_deg": "-29.041887", + "longitude_deg": "167.939616", + "elevation_ft": "371", + "continent": "OC", + "iso_country": "NF", + "iso_region": "NF-U-A", + "municipality": "Burnt Pine", + "scheduled_service": "yes", + "gps_code": "YSNF", + "iata_code": "NLK", + "home_link": "http://www.airport.gov.nf/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Norfolk_Island_Airport" + }, + { + "id": "27958", + "ident": "YSNT", + "type": "small_airport", + "name": "Snowtown Airport", + "latitude_deg": "-33.79999923706055", + "longitude_deg": "138.36700439453125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YSNT" + }, + { + "id": "27142", + "ident": "YSNW", + "type": "medium_airport", + "name": "Naval Air Station Nowra - HMAS Albatross", + "latitude_deg": "-34.9466", + "longitude_deg": "150.542451", + "elevation_ft": "400", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Nowra Hill", + "scheduled_service": "no", + "gps_code": "YSNW", + "iata_code": "NOA", + "home_link": "https://www.navy.gov.au/establishments/hmas-albatross", + "wikipedia_link": "https://en.wikipedia.org/wiki/HMAS_Albatross_(air_station)" + }, + { + "id": "38587", + "ident": "YSOW", + "type": "small_airport", + "name": "Southwell Airport", + "latitude_deg": "-14.51669979095459", + "longitude_deg": "142.0330047607422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YSOW" + }, + { + "id": "27143", + "ident": "YSPE", + "type": "small_airport", + "name": "Stanthorpe Airport", + "latitude_deg": "-28.620113", + "longitude_deg": "151.983281", + "elevation_ft": "2938", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YSPE", + "iata_code": "SNH" + }, + { + "id": "27959", + "ident": "YSPF", + "type": "small_airport", + "name": "Springfield Airport", + "latitude_deg": "-24.297984", + "longitude_deg": "144.878313", + "elevation_ft": "767", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YSPF" + }, + { + "id": "27960", + "ident": "YSPI", + "type": "small_airport", + "name": "Springsure Airport", + "latitude_deg": "-24.130167", + "longitude_deg": "148.086047", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YSPI" + }, + { + "id": "27961", + "ident": "YSPK", + "type": "small_airport", + "name": "Spring Creek Airport", + "latitude_deg": "-18.637704", + "longitude_deg": "144.545672", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YSPK", + "iata_code": "SCG" + }, + { + "id": "27962", + "ident": "YSPT", + "type": "small_airport", + "name": "Southport Airport", + "latitude_deg": "-27.921848", + "longitude_deg": "153.371469", + "elevation_ft": "2", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YSPT", + "iata_code": "SHQ" + }, + { + "id": "27963", + "ident": "YSPV", + "type": "small_airport", + "name": "Springvale Airport", + "latitude_deg": "-23.549999237060547", + "longitude_deg": "140.6999969482422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YSPV", + "iata_code": "KSV" + }, + { + "id": "38588", + "ident": "YSRD", + "type": "small_airport", + "name": "Sunrise Dam Airport", + "latitude_deg": "-29.099022", + "longitude_deg": "122.456253", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Laverton", + "scheduled_service": "no", + "gps_code": "YSRD" + }, + { + "id": "27144", + "ident": "YSRI", + "type": "medium_airport", + "name": "RAAF Base Richmond", + "latitude_deg": "-33.604652", + "longitude_deg": "150.783051", + "elevation_ft": "67", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Richmond", + "scheduled_service": "no", + "gps_code": "YSRI", + "iata_code": "XRH", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAAF_Base_Richmond", + "keywords": "military" + }, + { + "id": "27964", + "ident": "YSRN", + "type": "small_airport", + "name": "Strahan Airport", + "latitude_deg": "-42.154998779296875", + "longitude_deg": "145.29200744628906", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "yes", + "gps_code": "YSRN", + "iata_code": "SRN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Strahan_Airport" + }, + { + "id": "27965", + "ident": "YSRT", + "type": "small_airport", + "name": "Surat Airport", + "latitude_deg": "-27.149999618530273", + "longitude_deg": "149.08299255371094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YSRT" + }, + { + "id": "27145", + "ident": "YSSY", + "type": "large_airport", + "name": "Sydney Kingsford Smith International Airport", + "latitude_deg": "-33.94609832763672", + "longitude_deg": "151.177001953125", + "elevation_ft": "21", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Sydney", + "scheduled_service": "yes", + "gps_code": "YSSY", + "iata_code": "SYD", + "home_link": "http://www.sydneyairport.com.au/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kingsford_Smith_International_Airport", + "keywords": "RAAF Station Mascot" + }, + { + "id": "27146", + "ident": "YSTA", + "type": "small_airport", + "name": "Saint Arnaud Airport", + "latitude_deg": "-36.63669967651367", + "longitude_deg": "143.18600463867188", + "elevation_ft": "639", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YSTA" + }, + { + "id": "27966", + "ident": "YSTB", + "type": "small_airport", + "name": "Strathburn Airport", + "latitude_deg": "-14.477416", + "longitude_deg": "142.824628", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Holroyd River", + "scheduled_service": "no", + "gps_code": "YSTB" + }, + { + "id": "32733", + "ident": "YSTC", + "type": "small_airport", + "name": "Stuart Creek Airport", + "latitude_deg": "-29.716699600219727", + "longitude_deg": "137.06300354003906", + "elevation_ft": "122", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Stuart Creek", + "scheduled_service": "no", + "gps_code": "YSTC" + }, + { + "id": "27967", + "ident": "YSTH", + "type": "small_airport", + "name": "St Helens Airport", + "latitude_deg": "-41.336700439453125", + "longitude_deg": "148.28199768066406", + "elevation_ft": "48", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YSTH", + "iata_code": "HLS", + "wikipedia_link": "https://en.wikipedia.org/wiki/St_Helens_Airport" + }, + { + "id": "314925", + "ident": "YSTI", + "type": "seaplane_base", + "name": "Stephens Island Seaplane Base", + "latitude_deg": "-9.51", + "longitude_deg": "143.55", + "elevation_ft": "0", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Stephens Island", + "scheduled_service": "no", + "gps_code": "YSTI", + "iata_code": "STF", + "local_code": "YSTI", + "keywords": "Ugar Island, Hogar Island" + }, + { + "id": "27968", + "ident": "YSTO", + "type": "small_airport", + "name": "Stonehenge Airport", + "latitude_deg": "-24.352599", + "longitude_deg": "143.297482", + "elevation_ft": "166", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Stonehenge", + "scheduled_service": "no", + "gps_code": "YSTO" + }, + { + "id": "27969", + "ident": "YSTR", + "type": "small_airport", + "name": "Strathearn Airport", + "latitude_deg": "-31.766700744628906", + "longitude_deg": "140.33299255371094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YSTR" + }, + { + "id": "27970", + "ident": "YSTT", + "type": "small_airport", + "name": "Santa Teresa Airport", + "latitude_deg": "-24.11829948425293", + "longitude_deg": "134.38999938964844", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YSTT" + }, + { + "id": "27147", + "ident": "YSTW", + "type": "medium_airport", + "name": "Tamworth Airport", + "latitude_deg": "-31.077898", + "longitude_deg": "150.845484", + "elevation_ft": "1334", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Tamworth", + "scheduled_service": "yes", + "gps_code": "YSTW", + "iata_code": "TMW", + "home_link": "http://www.tamworth.nsw.gov.au/Council/Council-Enterprises-and-Venues/Tamworth-Regional-Airport/Tamworth-Regional-Airport/defaul", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tamworth_Airport" + }, + { + "id": "38589", + "ident": "YSUJ", + "type": "small_airport", + "name": "Supplejack Downs Airport", + "latitude_deg": "-19.266700744628906", + "longitude_deg": "129.9499969482422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YSUJ" + }, + { + "id": "352698", + "ident": "YSUM", + "type": "heliport", + "name": "Summerhill Road Helipad", + "latitude_deg": "-35.267872", + "longitude_deg": "138.919914", + "elevation_ft": "217", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Strathalbyn", + "scheduled_service": "no", + "gps_code": "YSUM" + }, + { + "id": "38590", + "ident": "YSVH", + "type": "small_airport", + "name": "Silver Hills Airport", + "latitude_deg": "-20.598557", + "longitude_deg": "143.077971", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YSVH" + }, + { + "id": "27971", + "ident": "YSVN", + "type": "small_airport", + "name": "Strathaven Airport", + "latitude_deg": "-14.899999618530273", + "longitude_deg": "142.9669952392578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YSVN" + }, + { + "id": "314919", + "ident": "YSVP", + "type": "small_airport", + "name": "Silver Plains Airport", + "latitude_deg": "-13.9754", + "longitude_deg": "143.5537", + "elevation_ft": "48", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Silver Plains", + "scheduled_service": "no", + "gps_code": "YSVP", + "iata_code": "SSP", + "local_code": "YSVP" + }, + { + "id": "38591", + "ident": "YSWA", + "type": "small_airport", + "name": "Swansea Airport", + "latitude_deg": "-42.10169982910156", + "longitude_deg": "148.0679931640625", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YSWA" + }, + { + "id": "27972", + "ident": "YSWE", + "type": "small_airport", + "name": "Sweers Island Resort Airport", + "latitude_deg": "-17.121700286865234", + "longitude_deg": "139.59800720214844", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YSWE" + }, + { + "id": "27148", + "ident": "YSWG", + "type": "medium_airport", + "name": "Wagga Wagga City Airport", + "latitude_deg": "-35.163484", + "longitude_deg": "147.46832", + "elevation_ft": "724", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Wagga Wagga", + "scheduled_service": "yes", + "gps_code": "YSWG", + "iata_code": "WGA", + "home_link": "http://www.wagga.nsw.gov.au/www/html/271-airport.asp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wagga_Wagga_Airport", + "keywords": "RAAF Base Wagga" + }, + { + "id": "27149", + "ident": "YSWH", + "type": "medium_airport", + "name": "Swan Hill Airport", + "latitude_deg": "-35.37580108642578", + "longitude_deg": "143.5330047607422", + "elevation_ft": "234", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YSWH", + "iata_code": "SWH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Swan_Hill_Airport" + }, + { + "id": "354336", + "ident": "YSWI", + "type": "small_airport", + "name": "Swan Island Airport", + "latitude_deg": "-40.72956", + "longitude_deg": "148.116549", + "elevation_ft": "26", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Swan Island", + "scheduled_service": "no", + "gps_code": "YSWI" + }, + { + "id": "309722", + "ident": "YSWK", + "type": "small_airport", + "name": "South West Rocks Airport", + "latitude_deg": "-30.9246", + "longitude_deg": "153.0276", + "elevation_ft": "7", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "South West Rocks", + "scheduled_service": "no", + "gps_code": "YSWK", + "local_code": "YSWK", + "keywords": "SWRK" + }, + { + "id": "27150", + "ident": "YSWL", + "type": "medium_airport", + "name": "Stawell Airport", + "latitude_deg": "-37.07170104980469", + "longitude_deg": "142.74099731445312", + "elevation_ft": "807", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YSWL", + "iata_code": "SWC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stawell_Airport" + }, + { + "id": "38592", + "ident": "YSYN", + "type": "small_airport", + "name": "Strathalbyn Airport", + "latitude_deg": "-35.317766", + "longitude_deg": "139.000023", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Strathalbyn", + "scheduled_service": "no", + "gps_code": "YSYN" + }, + { + "id": "27973", + "ident": "YTAA", + "type": "small_airport", + "name": "Tara Airport", + "latitude_deg": "-27.163054", + "longitude_deg": "150.476423", + "elevation_ft": "360", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YTAA", + "iata_code": "XTR" + }, + { + "id": "38593", + "ident": "YTAB", + "type": "small_airport", + "name": "Tableland Homestead Airport", + "latitude_deg": "-17.2833003998", + "longitude_deg": "126.900001526", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YTAB", + "iata_code": "TBL" + }, + { + "id": "38594", + "ident": "YTAD", + "type": "small_airport", + "name": "Tandou Lake Airport", + "latitude_deg": "-32.665885", + "longitude_deg": "142.066773", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YTAD" + }, + { + "id": "27974", + "ident": "YTAM", + "type": "small_airport", + "name": "Taroom Airport", + "latitude_deg": "-25.801700592041016", + "longitude_deg": "149.89999389648438", + "elevation_ft": "240", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YTAM", + "iata_code": "XTO" + }, + { + "id": "38595", + "ident": "YTAN", + "type": "small_airport", + "name": "Tanami Downs Airport", + "latitude_deg": "-20.573654174804688", + "longitude_deg": "129.74012756347656", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YTAN" + }, + { + "id": "32421", + "ident": "YTAR", + "type": "small_airport", + "name": "Tarcoola Airport", + "latitude_deg": "-30.7033004761", + "longitude_deg": "134.583999634", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Tarcoola", + "scheduled_service": "no", + "gps_code": "YTAR", + "iata_code": "TAQ" + }, + { + "id": "27975", + "ident": "YTBB", + "type": "small_airport", + "name": "Tumby Bay Airport", + "latitude_deg": "-34.361698150634766", + "longitude_deg": "136.09500122070312", + "elevation_ft": "11", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YTBB" + }, + { + "id": "298312", + "ident": "YTBF", + "type": "small_airport", + "name": "Pattaya Airpark", + "latitude_deg": "12.8325", + "longitude_deg": "100.949444", + "elevation_ft": "100", + "continent": "AS", + "iso_country": "TH", + "iso_region": "TH-20", + "municipality": "Pattaya (Bang Lamung)", + "scheduled_service": "no", + "gps_code": "VTBF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pattaya_Airpark" + }, + { + "id": "27977", + "ident": "YTBG", + "type": "small_airport", + "name": "Talbingo Airport", + "latitude_deg": "-35.582902", + "longitude_deg": "148.292116", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YTBG" + }, + { + "id": "27978", + "ident": "YTBR", + "type": "small_airport", + "name": "Timber Creek Airport", + "latitude_deg": "-15.619999885559082", + "longitude_deg": "130.44500732421875", + "elevation_ft": "16", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YTBR", + "iata_code": "TBK" + }, + { + "id": "27979", + "ident": "YTCF", + "type": "small_airport", + "name": "Tracies Field", + "latitude_deg": "-22.316699981689453", + "longitude_deg": "122.06700134277344", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YTCF" + }, + { + "id": "27980", + "ident": "YTCK", + "type": "small_airport", + "name": "Torrens Creek Airport", + "latitude_deg": "-20.783300399780273", + "longitude_deg": "145", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YTCK" + }, + { + "id": "38597", + "ident": "YTCY", + "type": "small_airport", + "name": "Tarcoonyinna Airport", + "latitude_deg": "-26.757104", + "longitude_deg": "133.358574", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "De Rose Hill", + "scheduled_service": "no", + "gps_code": "YTCY" + }, + { + "id": "38598", + "ident": "YTDL", + "type": "small_airport", + "name": "Tidal River Airport", + "latitude_deg": "-39.03419876098633", + "longitude_deg": "146.32699584960938", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YTDL" + }, + { + "id": "38599", + "ident": "YTDM", + "type": "small_airport", + "name": "Todmorden Airport", + "latitude_deg": "-27.12420082092285", + "longitude_deg": "134.77000427246094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YTDM" + }, + { + "id": "27981", + "ident": "YTDN", + "type": "small_airport", + "name": "Tooradin Airport", + "latitude_deg": "-38.215856", + "longitude_deg": "145.4232", + "elevation_ft": "3", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YTDN" + }, + { + "id": "27982", + "ident": "YTDR", + "type": "small_airport", + "name": "Theodore Airport", + "latitude_deg": "-24.99329948425293", + "longitude_deg": "150.09300231933594", + "elevation_ft": "171", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YTDR", + "iata_code": "TDR" + }, + { + "id": "38600", + "ident": "YTEC", + "type": "small_airport", + "name": "Tenneco Station Three Airport", + "latitude_deg": "-30.336700439453125", + "longitude_deg": "139.6649932861328", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YTEC" + }, + { + "id": "27151", + "ident": "YTEE", + "type": "small_airport", + "name": "Trepell Airport", + "latitude_deg": "-21.834999084473", + "longitude_deg": "140.88800048828", + "elevation_ft": "891", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Trepell", + "scheduled_service": "no", + "gps_code": "YTEE", + "iata_code": "TQP", + "wikipedia_link": "https://en.wikipedia.org/wiki/Trepell_Airport" + }, + { + "id": "27152", + "ident": "YTEF", + "type": "medium_airport", + "name": "Telfer Airport", + "latitude_deg": "-21.71500015258789", + "longitude_deg": "122.22899627685547", + "elevation_ft": "970", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YTEF", + "iata_code": "TEF" + }, + { + "id": "315731", + "ident": "YTEK", + "type": "heliport", + "name": "Sikorsky Helitech Heliport", + "latitude_deg": "-27.433", + "longitude_deg": "153.115", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Pinkenba - Brisbane", + "scheduled_service": "no", + "gps_code": "YTEK", + "local_code": "YTEK" + }, + { + "id": "27153", + "ident": "YTEM", + "type": "medium_airport", + "name": "Temora Airport", + "latitude_deg": "-34.421398", + "longitude_deg": "147.511993", + "elevation_ft": "921", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Temora", + "scheduled_service": "no", + "gps_code": "YTEM", + "iata_code": "TEM", + "home_link": "https://www.temora.nsw.gov.au/Council-Facilities/Airpark-and-Aerodrome", + "wikipedia_link": "https://en.wikipedia.org/wiki/Temora_Airport" + }, + { + "id": "38601", + "ident": "YTEN", + "type": "small_airport", + "name": "Tenneco Station Five Airport", + "latitude_deg": "-31.975000381469727", + "longitude_deg": "139.20700073242188", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YTEN" + }, + { + "id": "32734", + "ident": "YTFA", + "type": "small_airport", + "name": "Truro Flat Airpark", + "latitude_deg": "-34.3963", + "longitude_deg": "139.379817", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Truro Flat", + "scheduled_service": "no", + "gps_code": "YTFA" + }, + { + "id": "27983", + "ident": "YTFD", + "type": "small_airport", + "name": "Tenterfield Airport", + "latitude_deg": "-28.99155", + "longitude_deg": "151.930103", + "elevation_ft": "2617", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Tenterfield", + "scheduled_service": "no", + "gps_code": "YTFD" + }, + { + "id": "38602", + "ident": "YTGA", + "type": "small_airport", + "name": "Tangalooma Airport", + "latitude_deg": "-27.137693", + "longitude_deg": "153.364141", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YTGA", + "iata_code": "TAN", + "keywords": "Cowan Cowan" + }, + { + "id": "27984", + "ident": "YTGG", + "type": "small_airport", + "name": "Taggerty Airport", + "latitude_deg": "-37.35049819946289", + "longitude_deg": "145.6999969482422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YTGG" + }, + { + "id": "27985", + "ident": "YTGI", + "type": "small_airport", + "name": "Trangie Airport", + "latitude_deg": "-31.97641", + "longitude_deg": "148.003929", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YTGI" + }, + { + "id": "27154", + "ident": "YTGM", + "type": "medium_airport", + "name": "Thargomindah Airport", + "latitude_deg": "-27.986368", + "longitude_deg": "143.812065", + "elevation_ft": "433", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Thargomindah", + "scheduled_service": "yes", + "gps_code": "YTGM", + "iata_code": "XTG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thargomindah_Airport" + }, + { + "id": "38603", + "ident": "YTGT", + "type": "small_airport", + "name": "The Granites Airport", + "latitude_deg": "-20.5483", + "longitude_deg": "130.347", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "The Granites Gold Mine", + "scheduled_service": "no", + "gps_code": "YTGT", + "iata_code": "GTS", + "wikipedia_link": "https://en.wikipedia.org/wiki/The_Granites_Airport" + }, + { + "id": "27986", + "ident": "YTGV", + "type": "small_airport", + "name": "The Grove Airport", + "latitude_deg": "-34.68600082397461", + "longitude_deg": "148.10400390625", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YTGV" + }, + { + "id": "38604", + "ident": "YTHD", + "type": "small_airport", + "name": "Theda Station Airport", + "latitude_deg": "-14.788100242599999", + "longitude_deg": "126.496002197", + "elevation_ft": "700", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Theda Station", + "scheduled_service": "no", + "gps_code": "YTHD", + "iata_code": "TDN" + }, + { + "id": "32735", + "ident": "YTHI", + "type": "small_airport", + "name": "Thistle Island Airport", + "latitude_deg": "-35.02470016479492", + "longitude_deg": "136.17999267578125", + "elevation_ft": "120", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Thistle Island", + "scheduled_service": "no", + "gps_code": "YTHI" + }, + { + "id": "38605", + "ident": "YTHR", + "type": "small_airport", + "name": "Three Rivers Homestead Airport", + "latitude_deg": "-25.138328", + "longitude_deg": "119.105061", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YTHR" + }, + { + "id": "27987", + "ident": "YTHS", + "type": "small_airport", + "name": "Three Springs Airport", + "latitude_deg": "-29.527910929900003", + "longitude_deg": "115.858039856", + "elevation_ft": "900", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YTHS" + }, + { + "id": "38606", + "ident": "YTHV", + "type": "small_airport", + "name": "Thevenard Island Airport", + "latitude_deg": "-21.459321", + "longitude_deg": "115.014256", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YTHV" + }, + { + "id": "27988", + "ident": "YTHY", + "type": "small_airport", + "name": "Thylungra Airport", + "latitude_deg": "-26.08329963684082", + "longitude_deg": "143.4669952392578", + "elevation_ft": "165", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YTHY", + "iata_code": "TYG" + }, + { + "id": "27155", + "ident": "YTIB", + "type": "medium_airport", + "name": "Tibooburra Airport", + "latitude_deg": "-29.451099395751953", + "longitude_deg": "142.05799865722656", + "elevation_ft": "584", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YTIB", + "iata_code": "TYB" + }, + { + "id": "27989", + "ident": "YTII", + "type": "small_airport", + "name": "Trinidad Airport", + "latitude_deg": "-25.600000381469727", + "longitude_deg": "143.91700744628906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YTII" + }, + { + "id": "27990", + "ident": "YTIN", + "type": "small_airport", + "name": "Tintinara Airport", + "latitude_deg": "-35.870445", + "longitude_deg": "140.07283", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YTIN" + }, + { + "id": "27991", + "ident": "YTIT", + "type": "small_airport", + "name": "Ti Tree Airport", + "latitude_deg": "-22.13170051574707", + "longitude_deg": "133.4199981689453", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YTIT" + }, + { + "id": "27992", + "ident": "YTJI", + "type": "small_airport", + "name": "Tjirrkarli Airport", + "latitude_deg": "-26.006201", + "longitude_deg": "125.462494", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YTJI" + }, + { + "id": "38607", + "ident": "YTJU", + "type": "small_airport", + "name": "Tjuntjuntjarra Airport", + "latitude_deg": "-29.358299255371094", + "longitude_deg": "127.12799835205078", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YTJU" + }, + { + "id": "27994", + "ident": "YTKS", + "type": "small_airport", + "name": "Toorak Research Station Airport", + "latitude_deg": "-21.04170036315918", + "longitude_deg": "141.78700256347656", + "elevation_ft": "128", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YTKS" + }, + { + "id": "32457", + "ident": "YTKY", + "type": "small_airport", + "name": "Turkey Creek Airport", + "latitude_deg": "-17.0408000946", + "longitude_deg": "128.205993652", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Turkey Creek", + "scheduled_service": "no", + "gps_code": "YTKY", + "iata_code": "TKY" + }, + { + "id": "30471", + "ident": "YTLG", + "type": "small_airport", + "name": "Taralga Grathawa Airport", + "latitude_deg": "-34.28919982910156", + "longitude_deg": "149.78199768066406", + "elevation_ft": "3031", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YTLG" + }, + { + "id": "27995", + "ident": "YTLL", + "type": "small_airport", + "name": "Tullamore Airport", + "latitude_deg": "-32.610622", + "longitude_deg": "147.598239", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YTLL" + }, + { + "id": "32736", + "ident": "YTLP", + "type": "small_airport", + "name": "Tilpa Airport", + "latitude_deg": "-30.925497", + "longitude_deg": "144.419403", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Tilpa", + "scheduled_service": "no", + "gps_code": "YTLP" + }, + { + "id": "38609", + "ident": "YTLT", + "type": "small_airport", + "name": "Tarlton Downs Airport", + "latitude_deg": "-22.63330078125", + "longitude_deg": "136.8000030517578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YTLT" + }, + { + "id": "27996", + "ident": "YTMB", + "type": "small_airport", + "name": "Tambo Airport", + "latitude_deg": "-24.838854", + "longitude_deg": "146.293355", + "elevation_ft": "457", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YTMB" + }, + { + "id": "38610", + "ident": "YTML", + "type": "small_airport", + "name": "Tamala Airport", + "latitude_deg": "-26.645243", + "longitude_deg": "113.742144", + "elevation_ft": "3", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Shark Bay", + "scheduled_service": "no", + "gps_code": "YTML" + }, + { + "id": "27997", + "ident": "YTMN", + "type": "small_airport", + "name": "Tanami Airport", + "latitude_deg": "-19.91670036315918", + "longitude_deg": "129.72500610351562", + "elevation_ft": "427", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YTMN" + }, + { + "id": "27156", + "ident": "YTMO", + "type": "small_airport", + "name": "The Monument Airport", + "latitude_deg": "-21.811100006104", + "longitude_deg": "139.92399597168", + "elevation_ft": "949", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Phosphate Hill", + "scheduled_service": "no", + "gps_code": "YTMO", + "iata_code": "PHQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/The_Monument_Airport", + "keywords": "Phosphate Hill Airport" + }, + { + "id": "38611", + "ident": "YTMS", + "type": "small_airport", + "name": "Tambar Springs Airport", + "latitude_deg": "-31.313893", + "longitude_deg": "149.839439", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YTMS" + }, + { + "id": "27157", + "ident": "YTMU", + "type": "medium_airport", + "name": "Tumut Airport", + "latitude_deg": "-35.268657", + "longitude_deg": "148.240474", + "elevation_ft": "878", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YTMU", + "iata_code": "TUM" + }, + { + "id": "32491", + "ident": "YTMY", + "type": "small_airport", + "name": "Tobermorey Airport", + "latitude_deg": "-22.255800247192383", + "longitude_deg": "137.9530029296875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Tobermorey", + "scheduled_service": "no", + "gps_code": "YTMY", + "iata_code": "TYP" + }, + { + "id": "30467", + "ident": "YTNB", + "type": "small_airport", + "name": "Tanbar Airport", + "latitude_deg": "-25.847799301147", + "longitude_deg": "141.92799377441", + "elevation_ft": "344", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Tanbar Station", + "scheduled_service": "no", + "gps_code": "YTNB", + "iata_code": "TXR" + }, + { + "id": "38613", + "ident": "YTNE", + "type": "small_airport", + "name": "Tenneco Station One Airport", + "latitude_deg": "-28.735452", + "longitude_deg": "140.039978", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YTNE" + }, + { + "id": "27158", + "ident": "YTNG", + "type": "medium_airport", + "name": "Thangool Airport", + "latitude_deg": "-24.494863", + "longitude_deg": "150.577967", + "elevation_ft": "644", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Biloela", + "scheduled_service": "yes", + "gps_code": "YTNG", + "iata_code": "THG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Thangool_Airport" + }, + { + "id": "27159", + "ident": "YTNK", + "type": "medium_airport", + "name": "Tennant Creek Airport", + "latitude_deg": "-19.6343994140625", + "longitude_deg": "134.18299865722656", + "elevation_ft": "1236", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Tennant Creek", + "scheduled_service": "yes", + "gps_code": "YTNK", + "iata_code": "TCA", + "home_link": "http://www.tennantcreekairport.com.au/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tennant_Creek_Airport" + }, + { + "id": "38614", + "ident": "YTNN", + "type": "small_airport", + "name": "Tenneco Station Four Airport", + "latitude_deg": "-31.183300018310547", + "longitude_deg": "139.38299560546875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YTNN" + }, + { + "id": "27998", + "ident": "YTNR", + "type": "small_airport", + "name": "Tanumbirini Airport", + "latitude_deg": "-16.450000762939453", + "longitude_deg": "134.64999389648438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YTNR" + }, + { + "id": "27999", + "ident": "YTNS", + "type": "small_airport", + "name": "Toliness Airport", + "latitude_deg": "-25.32145118713379", + "longitude_deg": "146.06881713867188", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YTNS" + }, + { + "id": "38615", + "ident": "YTOA", + "type": "small_airport", + "name": "Toolachie Airport", + "latitude_deg": "-28.408300399780273", + "longitude_deg": "140.80999755859375", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YTOA" + }, + { + "id": "28000", + "ident": "YTOB", + "type": "small_airport", + "name": "Toomba Airport", + "latitude_deg": "-19.933300018310547", + "longitude_deg": "145.58299255371094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YTOB" + }, + { + "id": "27160", + "ident": "YTOC", + "type": "small_airport", + "name": "Tocumwal Airport", + "latitude_deg": "-35.81169891357422", + "longitude_deg": "145.60800170898438", + "elevation_ft": "372", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YTOC", + "iata_code": "TCW", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAAF_Station_Tocumwal", + "keywords": "RAAF Station Tocumwal" + }, + { + "id": "38616", + "ident": "YTOG", + "type": "small_airport", + "name": "Togo Station Airport", + "latitude_deg": "-30.08299", + "longitude_deg": "149.53684", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YTOG" + }, + { + "id": "38617", + "ident": "YTOK", + "type": "small_airport", + "name": "Torres Park Homestead Airport", + "latitude_deg": "-25.11669921875", + "longitude_deg": "147.16700744628906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YTOK" + }, + { + "id": "38618", + "ident": "YTOS", + "type": "small_airport", + "name": "Tenneco Station Two Airport", + "latitude_deg": "-29.565992", + "longitude_deg": "139.941359", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YTOS" + }, + { + "id": "28001", + "ident": "YTOT", + "type": "small_airport", + "name": "Tottenham Airport", + "latitude_deg": "-32.256163", + "longitude_deg": "147.369264", + "elevation_ft": "238", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YTOT" + }, + { + "id": "429787", + "ident": "YTPA", + "type": "small_airport", + "name": "Tipperary Airfield", + "latitude_deg": "-13.727088", + "longitude_deg": "131.032991", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Tipperary", + "scheduled_service": "no", + "gps_code": "YTPA" + }, + { + "id": "30480", + "ident": "YTPE", + "type": "small_airport", + "name": "Tempe Downs Airport", + "latitude_deg": "-24.38249969482422", + "longitude_deg": "132.42300415039062", + "elevation_ft": "1696", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YTPE" + }, + { + "id": "28002", + "ident": "YTQY", + "type": "small_airport", + "name": "Torquay Airport", + "latitude_deg": "-38.29999923706055", + "longitude_deg": "144.36500549316406", + "elevation_ft": "9", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Torquay", + "scheduled_service": "no", + "gps_code": "YTQY" + }, + { + "id": "350460", + "ident": "YTRA", + "type": "small_airport", + "name": "Tropicana Airport", + "latitude_deg": "-29.185995", + "longitude_deg": "124.550366", + "elevation_ft": "1104", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Tropicana Gold Mine", + "scheduled_service": "no", + "gps_code": "YTRA" + }, + { + "id": "28003", + "ident": "YTRB", + "type": "small_airport", + "name": "Torrumbarry Airport", + "latitude_deg": "-36.06669998168945", + "longitude_deg": "144.5330047607422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YTRB" + }, + { + "id": "28004", + "ident": "YTRC", + "type": "small_airport", + "name": "Tarcombe Airport", + "latitude_deg": "-24.072341", + "longitude_deg": "143.392745", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Longreach", + "scheduled_service": "no", + "gps_code": "YTRC" + }, + { + "id": "27161", + "ident": "YTRE", + "type": "medium_airport", + "name": "Taree Airport", + "latitude_deg": "-31.8885993958", + "longitude_deg": "152.514007568", + "elevation_ft": "38", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Taree", + "scheduled_service": "yes", + "gps_code": "YTRE", + "iata_code": "TRO" + }, + { + "id": "38619", + "ident": "YTRK", + "type": "small_airport", + "name": "Turee Creek Airport", + "latitude_deg": "-23.61669921875", + "longitude_deg": "118.61699676513672", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YTRK" + }, + { + "id": "27162", + "ident": "YTST", + "type": "small_airport", + "name": "Truscott-Mungalalu Airport", + "latitude_deg": "-14.089699745178", + "longitude_deg": "126.3809967041", + "elevation_ft": "181", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Anjo Peninsula", + "scheduled_service": "no", + "gps_code": "YTST", + "iata_code": "TTX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mungalalu_Truscott_Airbase" + }, + { + "id": "28005", + "ident": "YTTE", + "type": "small_airport", + "name": "Ti Tree Airport", + "latitude_deg": "-13.984239", + "longitude_deg": "141.655255", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Aurukun", + "scheduled_service": "no", + "gps_code": "YTTE" + }, + { + "id": "28006", + "ident": "YTTI", + "type": "small_airport", + "name": "Troughton Is Airport", + "latitude_deg": "-13.751700401306152", + "longitude_deg": "126.14800262451172", + "elevation_ft": "8", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YTTI" + }, + { + "id": "301274", + "ident": "YTU", + "type": "closed", + "name": "Tasu Water Aerodrome", + "latitude_deg": "52.7630555556", + "longitude_deg": "-132.04", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Tasu", + "scheduled_service": "no", + "iata_code": "YTU", + "local_code": "AP4", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tasu_Water_Aerodrome" + }, + { + "id": "28007", + "ident": "YTUA", + "type": "small_airport", + "name": "Triabunna Airport", + "latitude_deg": "-42.51369857788086", + "longitude_deg": "147.8979949951172", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YTUA" + }, + { + "id": "38620", + "ident": "YTUC", + "type": "small_airport", + "name": "Tuckabiana Airport", + "latitude_deg": "-27.475000381469727", + "longitude_deg": "118.125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YTUC" + }, + { + "id": "28008", + "ident": "YTUG", + "type": "small_airport", + "name": "Trugananni Airport", + "latitude_deg": "-24.466699600219727", + "longitude_deg": "149.26699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YTUG" + }, + { + "id": "28009", + "ident": "YTUN", + "type": "small_airport", + "name": "Tunbridge Airport", + "latitude_deg": "-42.112892", + "longitude_deg": "147.364431", + "elevation_ft": "745", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YTUN", + "home_link": "https://www.soaringtasmania.org.au/" + }, + { + "id": "38621", + "ident": "YTUY", + "type": "small_airport", + "name": "Tully Airport", + "latitude_deg": "-17.934582", + "longitude_deg": "145.938134", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YTUY" + }, + { + "id": "38622", + "ident": "YTVA", + "type": "small_airport", + "name": "Talavera Airport", + "latitude_deg": "-19.210481", + "longitude_deg": "143.663656", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YTVA" + }, + { + "id": "27163", + "ident": "YTWB", + "type": "small_airport", + "name": "Toowoomba Airport", + "latitude_deg": "-27.543365", + "longitude_deg": "151.919112", + "elevation_ft": "2086", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Toowoomba", + "scheduled_service": "no", + "gps_code": "YTWB", + "iata_code": "TWB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Victoria_River_Downs_Airport" + }, + { + "id": "28010", + "ident": "YTWE", + "type": "small_airport", + "name": "Trelawney Airport", + "latitude_deg": "-22.850000381469727", + "longitude_deg": "146.7169952392578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YTWE" + }, + { + "id": "309332", + "ident": "YTWH", + "type": "heliport", + "name": "The Tweed Hospital Helipad", + "latitude_deg": "-28.17769", + "longitude_deg": "153.5466", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Tweed Heads", + "scheduled_service": "no", + "gps_code": "YTWH", + "local_code": "YTWH" + }, + { + "id": "28011", + "ident": "YTWN", + "type": "small_airport", + "name": "Tooraweenah Airport", + "latitude_deg": "-31.441699981689453", + "longitude_deg": "148.89999389648438", + "elevation_ft": "421", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YTWN" + }, + { + "id": "28012", + "ident": "YTYA", + "type": "small_airport", + "name": "Tyabb Airport", + "latitude_deg": "-38.266826", + "longitude_deg": "145.179406", + "elevation_ft": "88", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Tyabb", + "scheduled_service": "no", + "gps_code": "YTYA", + "home_link": "http://www.pac.asn.au/", + "keywords": "Westernport" + }, + { + "id": "28013", + "ident": "YTYH", + "type": "small_airport", + "name": "Tyagarah Airport", + "latitude_deg": "-28.5946960394", + "longitude_deg": "153.551101685", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YTYH", + "home_link": "http://www.byron.nsw.gov.au/tyagarah-airfield" + }, + { + "id": "28014", + "ident": "YTYN", + "type": "small_airport", + "name": "Tieyon Airport", + "latitude_deg": "-26.216699600219727", + "longitude_deg": "133.91700744628906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YTYN" + }, + { + "id": "28015", + "ident": "YUCH", + "type": "small_airport", + "name": "Ucharonidge Airport", + "latitude_deg": "-17.672401428222656", + "longitude_deg": "134.24090576171875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Ucharonidge Station", + "scheduled_service": "no", + "gps_code": "YUCH" + }, + { + "id": "28016", + "ident": "YUDA", + "type": "small_airport", + "name": "Undara Airport", + "latitude_deg": "-18.200000762939453", + "longitude_deg": "144.60000610351562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YUDA", + "iata_code": "UDA" + }, + { + "id": "28017", + "ident": "YUDG", + "type": "small_airport", + "name": "Urandangi Airport", + "latitude_deg": "-21.59000015258789", + "longitude_deg": "138.35800170898438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YUDG" + }, + { + "id": "28018", + "ident": "YUDL", + "type": "small_airport", + "name": "Undilla Airport", + "latitude_deg": "-19.625", + "longitude_deg": "138.63299560546875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YUDL" + }, + { + "id": "38623", + "ident": "YUMB", + "type": "small_airport", + "name": "Umbeara Airport", + "latitude_deg": "-25.746700286865234", + "longitude_deg": "133.70199584960938", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YUMB" + }, + { + "id": "38624", + "ident": "YUMU", + "type": "small_airport", + "name": "Umuwa Airport", + "latitude_deg": "-26.4867000579834", + "longitude_deg": "132.0399932861328", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YUMU" + }, + { + "id": "28019", + "ident": "YUNY", + "type": "small_airport", + "name": "Cluny Airport", + "latitude_deg": "-24.516700744628906", + "longitude_deg": "139.61700439453125", + "elevation_ft": "90", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YUNY", + "iata_code": "CZY" + }, + { + "id": "28020", + "ident": "YUPG", + "type": "small_airport", + "name": "Urapunga Airport", + "latitude_deg": "-14.705199", + "longitude_deg": "134.562424", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YUPG" + }, + { + "id": "30507", + "ident": "YUPH", + "type": "small_airport", + "name": "Upper Horton Wyl Airport", + "latitude_deg": "-30.105312", + "longitude_deg": "150.404656", + "elevation_ft": "1253", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YUPH" + }, + { + "id": "28021", + "ident": "YUSL", + "type": "small_airport", + "name": "Useless Loop Airport", + "latitude_deg": "-26.157923", + "longitude_deg": "113.394817", + "elevation_ft": "62", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Useless Loop", + "scheduled_service": "no", + "gps_code": "YUSL", + "iata_code": "USL" + }, + { + "id": "38625", + "ident": "YUTP", + "type": "small_airport", + "name": "Utopia Airport", + "latitude_deg": "-22.05500030517578", + "longitude_deg": "134.7899932861328", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YUTP" + }, + { + "id": "38626", + "ident": "YUTS", + "type": "small_airport", + "name": "Utopia Station Airport", + "latitude_deg": "-22.233299255371094", + "longitude_deg": "134.5800018310547", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YUTS" + }, + { + "id": "38627", + "ident": "YVAF", + "type": "small_airport", + "name": "Valley Field Airport", + "latitude_deg": "-41.808754", + "longitude_deg": "147.296525", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YVAF" + }, + { + "id": "38628", + "ident": "YVIV", + "type": "small_airport", + "name": "Mount Vivian Airport", + "latitude_deg": "-30.5801", + "longitude_deg": "135.72535", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Mount Vivian", + "scheduled_service": "no", + "gps_code": "YVIV" + }, + { + "id": "28022", + "ident": "YVLG", + "type": "small_airport", + "name": "Valley of Lagoons Airport", + "latitude_deg": "-18.66670036315918", + "longitude_deg": "145.10000610351562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YVLG" + }, + { + "id": "38629", + "ident": "YVNS", + "type": "small_airport", + "name": "Vaughan Springs Airport", + "latitude_deg": "-22.33329963684082", + "longitude_deg": "130.86700439453125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YVNS" + }, + { + "id": "28023", + "ident": "YVRD", + "type": "small_airport", + "name": "Victoria River Downs Airport", + "latitude_deg": "-16.402124404907227", + "longitude_deg": "131.00497436523438", + "elevation_ft": "89", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "yes", + "gps_code": "YVRD", + "iata_code": "VCD" + }, + { + "id": "28024", + "ident": "YVRS", + "type": "small_airport", + "name": "Vanrook Station Airport", + "latitude_deg": "-16.963300704956055", + "longitude_deg": "141.9499969482422", + "elevation_ft": "43", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YVRS", + "iata_code": "VNR" + }, + { + "id": "38630", + "ident": "YVSH", + "type": "small_airport", + "name": "Vashon Head Airport", + "latitude_deg": "-11.142987", + "longitude_deg": "131.981832", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YVSH" + }, + { + "id": "28025", + "ident": "YVVA", + "type": "small_airport", + "name": "Victoria Valley Airport", + "latitude_deg": "-37.5", + "longitude_deg": "142.27000427246094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YVVA" + }, + { + "id": "38631", + "ident": "YVVL", + "type": "small_airport", + "name": "Violet Vale Airport", + "latitude_deg": "-14.733714", + "longitude_deg": "143.589334", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YVVL" + }, + { + "id": "38632", + "ident": "YWAB", + "type": "small_airport", + "name": "Waldburg Homestead Airport", + "latitude_deg": "-24.75", + "longitude_deg": "117.36699676513672", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YWAB" + }, + { + "id": "32738", + "ident": "YWAC", + "type": "small_airport", + "name": "Wauchope Airport", + "latitude_deg": "-20.640614", + "longitude_deg": "134.215276", + "elevation_ft": "1186", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Wauchope", + "scheduled_service": "no", + "gps_code": "YWAC", + "iata_code": "WAU" + }, + { + "id": "28026", + "ident": "YWAG", + "type": "small_airport", + "name": "Wanaaring Airport", + "latitude_deg": "-29.712125", + "longitude_deg": "144.170955", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YWAG" + }, + { + "id": "32657", + "ident": "YWAL", + "type": "small_airport", + "name": "Wallal Airport", + "latitude_deg": "-19.7735996246", + "longitude_deg": "120.649002075", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Wallal", + "scheduled_service": "no", + "gps_code": "YWAL", + "iata_code": "WLA" + }, + { + "id": "28028", + "ident": "YWAN", + "type": "closed", + "name": "Wallan Airport", + "latitude_deg": "-37.43330001831055", + "longitude_deg": "144.98800659179688", + "elevation_ft": "290", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YWAN" + }, + { + "id": "28029", + "ident": "YWAT", + "type": "small_airport", + "name": "Wattle Hills Airport", + "latitude_deg": "-12.637238", + "longitude_deg": "143.041391", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YWAT" + }, + { + "id": "28030", + "ident": "YWAV", + "type": "small_airport", + "name": "Wave Hill Airport", + "latitude_deg": "-17.393299102783203", + "longitude_deg": "131.1179962158203", + "elevation_ft": "201", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YWAV", + "iata_code": "WAV" + }, + { + "id": "28031", + "ident": "YWAX", + "type": "small_airport", + "name": "Wanarn Airport", + "latitude_deg": "-25.29755210876465", + "longitude_deg": "127.5564193725586", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Wanarn", + "scheduled_service": "no", + "gps_code": "YWAX" + }, + { + "id": "28032", + "ident": "YWBH", + "type": "small_airport", + "name": "Wallabadah Airport", + "latitude_deg": "-31.57658", + "longitude_deg": "150.934081", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YWBH" + }, + { + "id": "28033", + "ident": "YWBI", + "type": "small_airport", + "name": "Warrabri Airport", + "latitude_deg": "-21", + "longitude_deg": "134.39700317382812", + "elevation_ft": "383", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YWBI" + }, + { + "id": "27164", + "ident": "YWBL", + "type": "small_airport", + "name": "Warrnambool Airport", + "latitude_deg": "-38.2952995300293", + "longitude_deg": "142.44700622558594", + "elevation_ft": "242", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YWBL", + "iata_code": "WMB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Warrnambool_Airport" + }, + { + "id": "28034", + "ident": "YWBN", + "type": "small_airport", + "name": "Wedderburn Aerodrome", + "latitude_deg": "-34.181346", + "longitude_deg": "150.808854", + "elevation_ft": "850", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Wedderburn", + "scheduled_service": "no", + "gps_code": "YWBN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wedderburn_Airport" + }, + { + "id": "27165", + "ident": "YWBR", + "type": "small_airport", + "name": "Warburton Airport", + "latitude_deg": "-26.125538", + "longitude_deg": "126.583158", + "elevation_ft": "1500", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YWBR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Warburton_Airport" + }, + { + "id": "28035", + "ident": "YWBS", + "type": "small_airport", + "name": "Warraber Island Airport", + "latitude_deg": "-10.20829963684082", + "longitude_deg": "142.8249969482422", + "elevation_ft": "3", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Sue Islet", + "scheduled_service": "yes", + "gps_code": "YWBS", + "iata_code": "SYU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Warraber_Island_Airport" + }, + { + "id": "27166", + "ident": "YWCA", + "type": "small_airport", + "name": "Wilcannia Airport", + "latitude_deg": "-31.522082", + "longitude_deg": "143.378358", + "elevation_ft": "250", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YWCA", + "iata_code": "WIO" + }, + { + "id": "28036", + "ident": "YWCH", + "type": "small_airport", + "name": "Walcha Airport", + "latitude_deg": "-31.01001", + "longitude_deg": "151.548216", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YWCH", + "iata_code": "WLC" + }, + { + "id": "27167", + "ident": "YWCK", + "type": "small_airport", + "name": "Warwick Airport", + "latitude_deg": "-28.14940071105957", + "longitude_deg": "151.9429931640625", + "elevation_ft": "1500", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YWCK", + "iata_code": "WAZ" + }, + { + "id": "38633", + "ident": "YWCM", + "type": "small_airport", + "name": "Wilson's Camp Airport", + "latitude_deg": "-20.10140037536621", + "longitude_deg": "129.12600708007812", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YWCM" + }, + { + "id": "38634", + "ident": "YWDA", + "type": "small_airport", + "name": "Windarra Airport", + "latitude_deg": "-28.48061", + "longitude_deg": "122.244415", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Laverton", + "scheduled_service": "no", + "gps_code": "YWDA", + "iata_code": "WND" + }, + { + "id": "38635", + "ident": "YWDC", + "type": "small_airport", + "name": "Wodgina Airport", + "latitude_deg": "-21.141700744628906", + "longitude_deg": "118.69200134277344", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YWDC" + }, + { + "id": "327562", + "ident": "YWDG", + "type": "small_airport", + "name": "Windarling Airport", + "latitude_deg": "-30.032277", + "longitude_deg": "119.386489", + "elevation_ft": "1502", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Windarling Mine", + "scheduled_service": "no", + "gps_code": "YWDG", + "iata_code": "WRN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Windarling_Airport" + }, + { + "id": "27168", + "ident": "YWDH", + "type": "medium_airport", + "name": "Windorah Airport", + "latitude_deg": "-25.41309928894043", + "longitude_deg": "142.66700744628906", + "elevation_ft": "452", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YWDH", + "iata_code": "WNR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Windorah_Airport" + }, + { + "id": "38636", + "ident": "YWDJ", + "type": "small_airport", + "name": "Windjana Grove Airport", + "latitude_deg": "-17.421387587", + "longitude_deg": "124.925107956", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YWDJ" + }, + { + "id": "28037", + "ident": "YWDL", + "type": "small_airport", + "name": "Wondoola Airport", + "latitude_deg": "-18.5750007629", + "longitude_deg": "140.891998291", + "elevation_ft": "58", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Wondoola", + "scheduled_service": "no", + "gps_code": "YWDL", + "iata_code": "WON" + }, + { + "id": "29794", + "ident": "YWDR", + "type": "closed", + "name": "Winderadeen ALA", + "latitude_deg": "-34.9389", + "longitude_deg": "149.410004", + "elevation_ft": "2274", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YWDR" + }, + { + "id": "30568", + "ident": "YWDS", + "type": "small_airport", + "name": "Woodside Airstrip", + "latitude_deg": "-34.958588", + "longitude_deg": "138.890668", + "elevation_ft": "354", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Woodside", + "scheduled_service": "no", + "gps_code": "YWDS" + }, + { + "id": "28038", + "ident": "YWDT", + "type": "small_airport", + "name": "Wyandotte Airport", + "latitude_deg": "-18.753838", + "longitude_deg": "144.840761", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YWDT" + }, + { + "id": "28039", + "ident": "YWDV", + "type": "small_airport", + "name": "Mount Full Stop Airport", + "latitude_deg": "-19.67", + "longitude_deg": "144.8852", + "elevation_ft": "1918", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Wando Vale", + "scheduled_service": "no", + "gps_code": "YWDV", + "iata_code": "MFL" + }, + { + "id": "28040", + "ident": "YWEC", + "type": "small_airport", + "name": "Wellclose Airport", + "latitude_deg": "-25.850000381469727", + "longitude_deg": "145.10000610351562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YWEC" + }, + { + "id": "28041", + "ident": "YWED", + "type": "small_airport", + "name": "Wedderburn Airport", + "latitude_deg": "-36.43330001831055", + "longitude_deg": "143.48300170898438", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YWED" + }, + { + "id": "38637", + "ident": "YWEE", + "type": "small_airport", + "name": "Wooleen Homestead Airport", + "latitude_deg": "-27.08169937133789", + "longitude_deg": "116.1500015258789", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YWEE" + }, + { + "id": "28042", + "ident": "YWEL", + "type": "small_airport", + "name": "Wellington Airport", + "latitude_deg": "-32.462711", + "longitude_deg": "148.990896", + "elevation_ft": "426", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YWEL" + }, + { + "id": "28043", + "ident": "YWEO", + "type": "small_airport", + "name": "Wertaloona Airport", + "latitude_deg": "-30.649999618530273", + "longitude_deg": "139.35000610351562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YWEO" + }, + { + "id": "28044", + "ident": "YWER", + "type": "small_airport", + "name": "Wernadinga Airport", + "latitude_deg": "-18.124077", + "longitude_deg": "139.956121", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YWER" + }, + { + "id": "38638", + "ident": "YWEX", + "type": "small_airport", + "name": "Well 33 Airport", + "latitude_deg": "-22.36669921875", + "longitude_deg": "124.76699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YWEX" + }, + { + "id": "38639", + "ident": "YWFD", + "type": "small_airport", + "name": "Western Field Airport", + "latitude_deg": "-19.283300399780273", + "longitude_deg": "125.41699981689453", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YWFD" + }, + { + "id": "44626", + "ident": "YWGM", + "type": "small_airport", + "name": "White Gum Air Park", + "latitude_deg": "-31.863947", + "longitude_deg": "116.936094", + "elevation_ft": "1000", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "York", + "scheduled_service": "no", + "gps_code": "YWGM", + "local_code": "YWGM", + "home_link": "http://www.ywgm.com.au/", + "keywords": "Whitegum, WhiteGum Farm, White Gum, White Gum Air Park, Hangar Rental, Hangar Accommodation, White Gum Aviation" + }, + { + "id": "28045", + "ident": "YWGN", + "type": "small_airport", + "name": "Wagin Airport", + "latitude_deg": "-33.33330154418945", + "longitude_deg": "117.36699676513672", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YWGN" + }, + { + "id": "27169", + "ident": "YWGT", + "type": "medium_airport", + "name": "Wangaratta Airport", + "latitude_deg": "-36.41579818725586", + "longitude_deg": "146.3070068359375", + "elevation_ft": "504", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YWGT", + "iata_code": "WGT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wangaratta_Airport" + }, + { + "id": "38640", + "ident": "YWGW", + "type": "small_airport", + "name": "Wongawol Airport", + "latitude_deg": "-26.118462", + "longitude_deg": "121.959674", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YWGW" + }, + { + "id": "27170", + "ident": "YWHA", + "type": "medium_airport", + "name": "Whyalla Airport", + "latitude_deg": "-33.05889892578125", + "longitude_deg": "137.51400756835938", + "elevation_ft": "41", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Whyalla", + "scheduled_service": "yes", + "gps_code": "YWHA", + "iata_code": "WYA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Whyalla_Airport" + }, + { + "id": "28046", + "ident": "YWHC", + "type": "small_airport", + "name": "White Cliffs Airport", + "latitude_deg": "-30.853300094604492", + "longitude_deg": "143.07200622558594", + "elevation_ft": "162", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YWHC" + }, + { + "id": "38641", + "ident": "YWHI", + "type": "small_airport", + "name": "Witchelina Airport", + "latitude_deg": "-30.039637", + "longitude_deg": "138.058748", + "elevation_ft": "489", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Witchelina", + "scheduled_service": "no", + "gps_code": "YWHI" + }, + { + "id": "28047", + "ident": "YWHL", + "type": "small_airport", + "name": "Walhallow Airport", + "latitude_deg": "-17.778228", + "longitude_deg": "135.658241", + "elevation_ft": "740", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Creswell", + "scheduled_service": "no", + "gps_code": "YWHL" + }, + { + "id": "28048", + "ident": "YWHP", + "type": "heliport", + "name": "Wollongong City Heliport", + "latitude_deg": "-34.43942", + "longitude_deg": "150.895838", + "elevation_ft": "16", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YWHP" + }, + { + "id": "38642", + "ident": "YWIB", + "type": "small_airport", + "name": "Mount Willoughby Airport", + "latitude_deg": "-27.95816", + "longitude_deg": "134.14951", + "elevation_ft": "892", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Coober Pedy", + "scheduled_service": "no", + "gps_code": "YWIB" + }, + { + "id": "38643", + "ident": "YWIE", + "type": "small_airport", + "name": "Wirralie Gold Mine Airport", + "latitude_deg": "-21.126559", + "longitude_deg": "147.272887", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YWIE" + }, + { + "id": "38644", + "ident": "YWIL", + "type": "small_airport", + "name": "Wilandra Airport", + "latitude_deg": "-31.28689", + "longitude_deg": "142.651049", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YWIL" + }, + { + "id": "28049", + "ident": "YWIO", + "type": "small_airport", + "name": "Wilton Airport", + "latitude_deg": "-34.21999", + "longitude_deg": "150.67076", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Wilton", + "scheduled_service": "no", + "gps_code": "YWIO" + }, + { + "id": "27171", + "ident": "YWIS", + "type": "small_airport", + "name": "Williamson Airport", + "latitude_deg": "-22.474254", + "longitude_deg": "150.179222", + "elevation_ft": "89", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YWIS" + }, + { + "id": "28050", + "ident": "YWIT", + "type": "small_airport", + "name": "Wittenoom Airport", + "latitude_deg": "-22.224992", + "longitude_deg": "118.353739", + "elevation_ft": "444", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YWIT", + "iata_code": "WIT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wittenoom,_Western_Australia" + }, + { + "id": "28051", + "ident": "YWJS", + "type": "small_airport", + "name": "Wee Jasper Airport", + "latitude_deg": "-35.26169967651367", + "longitude_deg": "148.66700744628906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YWJS" + }, + { + "id": "27172", + "ident": "YWKB", + "type": "medium_airport", + "name": "Warracknabeal Airport", + "latitude_deg": "-36.32109832763672", + "longitude_deg": "142.41900634765625", + "elevation_ft": "397", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YWKB", + "iata_code": "WKB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Warracknabeal_Airport" + }, + { + "id": "309202", + "ident": "YWKD", + "type": "small_airport", + "name": "Woodycupaldiya Airfield", + "latitude_deg": "-13.8665", + "longitude_deg": "129.988", + "elevation_ft": "100", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Woodycupaldiya", + "scheduled_service": "no", + "gps_code": "YWKD", + "local_code": "YWKD" + }, + { + "id": "28052", + "ident": "YWKH", + "type": "closed", + "name": "Wickham Airport", + "latitude_deg": "-20.675792387900003", + "longitude_deg": "117.125072479", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Wickham", + "scheduled_service": "no", + "gps_code": "YWKH" + }, + { + "id": "27173", + "ident": "YWKI", + "type": "small_airport", + "name": "Waikerie Airport", + "latitude_deg": "-34.179573", + "longitude_deg": "140.033026", + "elevation_ft": "138", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YWKI" + }, + { + "id": "28053", + "ident": "YWKM", + "type": "small_airport", + "name": "Wyalkatchem Airport", + "latitude_deg": "-31.2026341022", + "longitude_deg": "117.378873825", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Wyalkatchem", + "scheduled_service": "no", + "gps_code": "YWKM" + }, + { + "id": "302312", + "ident": "YWKS", + "type": "small_airport", + "name": "Wilkins Runway", + "latitude_deg": "-66.690833", + "longitude_deg": "111.523611", + "elevation_ft": "2529", + "continent": "AN", + "iso_country": "AQ", + "iso_region": "AQ-U-A", + "municipality": "Preston Heath", + "scheduled_service": "no", + "gps_code": "YWKS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wilkins_Runway" + }, + { + "id": "28054", + "ident": "YWKW", + "type": "small_airport", + "name": "Warkworth Airport", + "latitude_deg": "-32.548161", + "longitude_deg": "151.024274", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Warkworth", + "scheduled_service": "no", + "gps_code": "YWKW" + }, + { + "id": "38645", + "ident": "YWLA", + "type": "small_airport", + "name": "Willowra Airport", + "latitude_deg": "-21.27669906616211", + "longitude_deg": "132.6230010986328", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YWLA" + }, + { + "id": "38646", + "ident": "YWLB", + "type": "small_airport", + "name": "Welbourn Hill Airport", + "latitude_deg": "-27.342199", + "longitude_deg": "134.086606", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YWLB" + }, + { + "id": "28055", + "ident": "YWLE", + "type": "closed", + "name": "Williamsdale Airport", + "latitude_deg": "-35.559393", + "longitude_deg": "149.130177", + "elevation_ft": "2345", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-ACT", + "scheduled_service": "no", + "gps_code": "YWLE", + "home_link": "https://web.archive.org/web/20091026085433/http://members.pcug.org.au/~mikec/srcg/docs/airfield.pdf" + }, + { + "id": "27174", + "ident": "YWLG", + "type": "medium_airport", + "name": "Walgett Airport", + "latitude_deg": "-30.032800674438477", + "longitude_deg": "148.12600708007812", + "elevation_ft": "439", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YWLG", + "iata_code": "WGE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Walgett_Airport" + }, + { + "id": "38647", + "ident": "YWLH", + "type": "small_airport", + "name": "Wallara Ranch Airport", + "latitude_deg": "-24.649999618530273", + "longitude_deg": "132.31700134277344", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YWLH" + }, + { + "id": "27175", + "ident": "YWLM", + "type": "medium_airport", + "name": "Newcastle Airport", + "latitude_deg": "-32.79499816894531", + "longitude_deg": "151.83399963378906", + "elevation_ft": "31", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Williamtown", + "scheduled_service": "yes", + "gps_code": "YWLM", + "iata_code": "NTL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Newcastle_Airport_(Williamtown)", + "keywords": "RAAF Base Williamtown" + }, + { + "id": "38648", + "ident": "YWLN", + "type": "small_airport", + "name": "Wooltana Airport", + "latitude_deg": "-30.42169952392578", + "longitude_deg": "139.43600463867188", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YWLN" + }, + { + "id": "38649", + "ident": "YWLP", + "type": "small_airport", + "name": "Wilsons Promontory Airport (Yannakie Airport)", + "latitude_deg": "-38.949506", + "longitude_deg": "146.284418", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Wilsons Promontory", + "scheduled_service": "no", + "gps_code": "YWLP" + }, + { + "id": "27176", + "ident": "YWLU", + "type": "medium_airport", + "name": "Wiluna Airport", + "latitude_deg": "-26.629199981689453", + "longitude_deg": "120.22100067138672", + "elevation_ft": "1649", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "yes", + "gps_code": "YWLU", + "iata_code": "WUN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wiluna_Airport" + }, + { + "id": "30566", + "ident": "YWMA", + "type": "small_airport", + "name": "Wonnaminta Stat Airport", + "latitude_deg": "-30.651100158691406", + "longitude_deg": "142.3419952392578", + "elevation_ft": "610", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YWMA" + }, + { + "id": "28056", + "ident": "YWMC", + "type": "small_airport", + "name": "William Creek Airport", + "latitude_deg": "-28.906700134277344", + "longitude_deg": "136.3419952392578", + "elevation_ft": "91", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YWMC" + }, + { + "id": "28057", + "ident": "YWMD", + "type": "closed", + "name": "West Maitland Airport", + "latitude_deg": "-32.7566986084", + "longitude_deg": "151.529998779", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Gillieston Heights", + "scheduled_service": "no", + "gps_code": "YWMD" + }, + { + "id": "28058", + "ident": "YWMG", + "type": "small_airport", + "name": "Weilmoringle Airport", + "latitude_deg": "-29.235668", + "longitude_deg": "146.922092", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YWMG" + }, + { + "id": "28059", + "ident": "YWML", + "type": "small_airport", + "name": "Westmoreland Airport", + "latitude_deg": "-17.32098", + "longitude_deg": "138.238134", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YWML" + }, + { + "id": "38651", + "ident": "YWMM", + "type": "small_airport", + "name": "Wollomombi Airport", + "latitude_deg": "-30.533300399780273", + "longitude_deg": "152.08299255371094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YWMM" + }, + { + "id": "28060", + "ident": "YWMP", + "type": "small_airport", + "name": "Wrotham Park Airport", + "latitude_deg": "-16.658300399780273", + "longitude_deg": "144.0019989013672", + "elevation_ft": "152", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YWMP", + "iata_code": "WPK" + }, + { + "id": "38652", + "ident": "YWMY", + "type": "small_airport", + "name": "Williambury Airport", + "latitude_deg": "-23.856875", + "longitude_deg": "115.14262", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YWMY" + }, + { + "id": "38653", + "ident": "YWNA", + "type": "small_airport", + "name": "Wilgena Airport", + "latitude_deg": "-30.766700744628906", + "longitude_deg": "134.72999572753906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YWNA" + }, + { + "id": "28061", + "ident": "YWND", + "type": "small_airport", + "name": "Wondai Airport", + "latitude_deg": "-26.277392", + "longitude_deg": "151.861673", + "elevation_ft": "320", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YWND", + "iata_code": "WDI" + }, + { + "id": "28062", + "ident": "YWNI", + "type": "small_airport", + "name": "Wathanin Airport", + "latitude_deg": "-13.704303", + "longitude_deg": "141.554085", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Aurukun", + "scheduled_service": "no", + "gps_code": "YWNI" + }, + { + "id": "28063", + "ident": "YWNL", + "type": "small_airport", + "name": "Wingellina Airport", + "latitude_deg": "-26.0667", + "longitude_deg": "128.949997", + "elevation_ft": "2218", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Wingellina", + "scheduled_service": "no", + "gps_code": "YWNL" + }, + { + "id": "28064", + "ident": "YWNO", + "type": "small_airport", + "name": "Wonganoo Airport", + "latitude_deg": "-27.125", + "longitude_deg": "121.33300018310547", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YWNO" + }, + { + "id": "28065", + "ident": "YWNS", + "type": "small_airport", + "name": "Wandsworth Airport", + "latitude_deg": "-25.049999237060547", + "longitude_deg": "143.66700744628906", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YWNS" + }, + { + "id": "311186", + "ident": "YWNT", + "type": "heliport", + "name": "Westmead NETS Base Hospital Heliport", + "latitude_deg": "-33.802749", + "longitude_deg": "150.990223", + "elevation_ft": "120", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Westmead", + "scheduled_service": "no", + "gps_code": "YWNT", + "local_code": "YWNT" + }, + { + "id": "28066", + "ident": "YWOH", + "type": "small_airport", + "name": "Wongan Hills Airport", + "latitude_deg": "-30.880036", + "longitude_deg": "116.727172", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YWOH" + }, + { + "id": "38654", + "ident": "YWOM", + "type": "small_airport", + "name": "Woolomin Airport", + "latitude_deg": "-31.316699981689453", + "longitude_deg": "151.13299560546875", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YWOM" + }, + { + "id": "28067", + "ident": "YWON", + "type": "small_airport", + "name": "Wonthaggi Airport", + "latitude_deg": "-38.47169876098633", + "longitude_deg": "145.6230010986328", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YWON" + }, + { + "id": "28068", + "ident": "YWOR", + "type": "small_airport", + "name": "Wollogorang Airport", + "latitude_deg": "-17.2199", + "longitude_deg": "137.93453", + "elevation_ft": "199", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YWOR", + "iata_code": "WLL" + }, + { + "id": "38655", + "ident": "YWOV", + "type": "small_airport", + "name": "Woodvale Airport", + "latitude_deg": "-36.63330078125", + "longitude_deg": "144.18299865722656", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YWOV" + }, + { + "id": "38656", + "ident": "YWOX", + "type": "small_airport", + "name": "Woorlba Airport", + "latitude_deg": "-32.393869", + "longitude_deg": "123.988717", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YWOX" + }, + { + "id": "28069", + "ident": "YWPA", + "type": "small_airport", + "name": "Wirrealpa Airport", + "latitude_deg": "-31.13330078125", + "longitude_deg": "138.9669952392578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YWPA" + }, + { + "id": "38657", + "ident": "YWPE", + "type": "small_airport", + "name": "Walpole Airport", + "latitude_deg": "-34.953651", + "longitude_deg": "116.695383", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "North Walpole", + "scheduled_service": "no", + "gps_code": "YWPE" + }, + { + "id": "38658", + "ident": "YWPL", + "type": "small_airport", + "name": "Winning Pool North Airport", + "latitude_deg": "-23.100000381469727", + "longitude_deg": "114.53299713134766", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YWPL" + }, + { + "id": "38659", + "ident": "YWRA", + "type": "small_airport", + "name": "Wooroona Airport", + "latitude_deg": "-20.481700897216797", + "longitude_deg": "138.16799926757812", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YWRA" + }, + { + "id": "38660", + "ident": "YWRC", + "type": "small_airport", + "name": "Wave Rock Airport", + "latitude_deg": "-32.426700592041016", + "longitude_deg": "118.90799713134766", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YWRC", + "home_link": "http://www.waverock.com.au/airport.htm", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wave_Rock" + }, + { + "id": "38661", + "ident": "YWRE", + "type": "small_airport", + "name": "Wirralie Airport", + "latitude_deg": "-22.270000457763672", + "longitude_deg": "146.0500030517578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YWRE" + }, + { + "id": "28071", + "ident": "YWRL", + "type": "small_airport", + "name": "Warialda Airport", + "latitude_deg": "-29.5362", + "longitude_deg": "150.535955", + "elevation_ft": "1140", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YWRL" + }, + { + "id": "27178", + "ident": "YWRN", + "type": "medium_airport", + "name": "Warren Airport", + "latitude_deg": "-31.733299255371094", + "longitude_deg": "147.80299377441406", + "elevation_ft": "669", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YWRN", + "iata_code": "QRR" + }, + { + "id": "350242", + "ident": "YWRO", + "type": "heliport", + "name": "Wallaroo Hospital Helipad", + "latitude_deg": "-33.927177", + "longitude_deg": "137.63777", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Wallaroo", + "scheduled_service": "no", + "gps_code": "YWRO" + }, + { + "id": "38662", + "ident": "YWRR", + "type": "small_airport", + "name": "Warroora Homestead Airport", + "latitude_deg": "-23.44609", + "longitude_deg": "113.84853", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Warroora Homestead", + "scheduled_service": "no", + "gps_code": "YWRR" + }, + { + "id": "28072", + "ident": "YWRT", + "type": "small_airport", + "name": "Waratah Airport", + "latitude_deg": "-41.45000076293945", + "longitude_deg": "145.5500030517578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YWRT" + }, + { + "id": "38663", + "ident": "YWRV", + "type": "small_airport", + "name": "Walker River Airport", + "latitude_deg": "-13.593299865722656", + "longitude_deg": "135.7550048828125", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YWRV" + }, + { + "id": "38664", + "ident": "YWSD", + "type": "small_airport", + "name": "Westward Downs Airport", + "latitude_deg": "-30.71137", + "longitude_deg": "141.397648", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Broughams Gate", + "scheduled_service": "no", + "gps_code": "YWSD" + }, + { + "id": "28073", + "ident": "YWSG", + "type": "small_airport", + "name": "Watts Bridge Airport", + "latitude_deg": "-27.09830093383789", + "longitude_deg": "152.4600067138672", + "elevation_ft": "61", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YWSG" + }, + { + "id": "38665", + "ident": "YWSI", + "type": "small_airport", + "name": "Wirrida Siding Airport", + "latitude_deg": "-29.566699981689453", + "longitude_deg": "134.51699829101562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YWSI" + }, + { + "id": "27179", + "ident": "YWSL", + "type": "medium_airport", + "name": "West Sale Airport", + "latitude_deg": "-38.090827", + "longitude_deg": "146.965335", + "elevation_ft": "72", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "municipality": "Sale", + "scheduled_service": "no", + "gps_code": "YWSL", + "iata_code": "SXE", + "wikipedia_link": "https://en.wikipedia.org/wiki/West_Sale_Airport" + }, + { + "id": "28074", + "ident": "YWST", + "type": "heliport", + "name": "Westmead Hospital Helipad", + "latitude_deg": "-33.80521011352539", + "longitude_deg": "150.98927307128906", + "elevation_ft": "30", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Westmead", + "scheduled_service": "no", + "gps_code": "YWST" + }, + { + "id": "28075", + "ident": "YWSX", + "type": "small_airport", + "name": "Westonia Airport", + "latitude_deg": "-31.319016", + "longitude_deg": "118.684766", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YWSX" + }, + { + "id": "28076", + "ident": "YWTL", + "type": "small_airport", + "name": "Waterloo Airport", + "latitude_deg": "-16.6299991607666", + "longitude_deg": "129.32000732421875", + "elevation_ft": "132", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YWTL", + "iata_code": "WLO" + }, + { + "id": "27180", + "ident": "YWTN", + "type": "medium_airport", + "name": "Winton Airport", + "latitude_deg": "-22.36359977722168", + "longitude_deg": "143.08599853515625", + "elevation_ft": "638", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "yes", + "gps_code": "YWTN", + "iata_code": "WIN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Winton_Airport" + }, + { + "id": "28077", + "ident": "YWTO", + "type": "small_airport", + "name": "Wentworth Airport", + "latitude_deg": "-34.088299", + "longitude_deg": "141.891998", + "elevation_ft": "37", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Wentworth", + "scheduled_service": "no", + "gps_code": "YWTO" + }, + { + "id": "28078", + "ident": "YWTV", + "type": "small_airport", + "name": "Watson River Airport", + "latitude_deg": "-13.228739", + "longitude_deg": "142.235548", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YWTV" + }, + { + "id": "27181", + "ident": "YWUD", + "type": "small_airport", + "name": "Wudinna Airport", + "latitude_deg": "-33.04330062866211", + "longitude_deg": "135.44700622558594", + "elevation_ft": "310", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YWUD", + "iata_code": "WUD" + }, + { + "id": "28079", + "ident": "YWVA", + "type": "small_airport", + "name": "Warnervale Airport", + "latitude_deg": "-33.240278", + "longitude_deg": "151.429722", + "elevation_ft": "25", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Warnervale", + "scheduled_service": "no", + "gps_code": "YWVA", + "home_link": "http://www.ccac.com.au/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Warnervale_Airport" + }, + { + "id": "30565", + "ident": "YWVL", + "type": "small_airport", + "name": "Woodville Airport", + "latitude_deg": "-30.416099548339844", + "longitude_deg": "151.7550048828125", + "elevation_ft": "3707", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YWVL" + }, + { + "id": "28080", + "ident": "YWWA", + "type": "small_airport", + "name": "Wee Waa Airport", + "latitude_deg": "-30.25830078125", + "longitude_deg": "149.4080047607422", + "elevation_ft": "190", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YWWA", + "iata_code": "WEW" + }, + { + "id": "28081", + "ident": "YWWG", + "type": "small_airport", + "name": "Warrawagine Airport", + "latitude_deg": "-20.8442001343", + "longitude_deg": "120.702003479", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YWWG", + "iata_code": "WRW" + }, + { + "id": "350202", + "ident": "YWWH", + "type": "small_airport", + "name": "Wentford Homestead", + "latitude_deg": "-22.063921", + "longitude_deg": "147.721224", + "elevation_ft": "862", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Wentford Homestead", + "scheduled_service": "no", + "gps_code": "YWWH" + }, + { + "id": "32686", + "ident": "YWWI", + "type": "small_airport", + "name": "Woodie Woodie Airport", + "latitude_deg": "-21.64551", + "longitude_deg": "121.191184", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Woodie Woodie", + "scheduled_service": "no", + "gps_code": "YWWI", + "iata_code": "WWI" + }, + { + "id": "27182", + "ident": "YWWL", + "type": "medium_airport", + "name": "West Wyalong Airport", + "latitude_deg": "-33.9371986389", + "longitude_deg": "147.190994263", + "elevation_ft": "859", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "West Wyalong", + "scheduled_service": "no", + "gps_code": "YWWL", + "iata_code": "WWY", + "wikipedia_link": "https://en.wikipedia.org/wiki/West_Wyalong_Airport" + }, + { + "id": "28083", + "ident": "YWYA", + "type": "small_airport", + "name": "Wyandra Airport", + "latitude_deg": "-27.266700744628906", + "longitude_deg": "145.99000549316406", + "elevation_ft": "244", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YWYA" + }, + { + "id": "38666", + "ident": "YWYB", + "type": "small_airport", + "name": "Wynbring Airport", + "latitude_deg": "-30.55827", + "longitude_deg": "133.53398", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YWYB" + }, + { + "id": "28084", + "ident": "YWYF", + "type": "small_airport", + "name": "Wycheproof Airport", + "latitude_deg": "-36.05830001831055", + "longitude_deg": "143.2429962158203", + "elevation_ft": "107", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YWYF" + }, + { + "id": "27183", + "ident": "YWYM", + "type": "small_airport", + "name": "Wyndham Airport", + "latitude_deg": "-15.51140022277832", + "longitude_deg": "128.1529998779297", + "elevation_ft": "14", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YWYM", + "iata_code": "WYN" + }, + { + "id": "27184", + "ident": "YWYY", + "type": "medium_airport", + "name": "Wynyard Airport", + "latitude_deg": "-40.997039", + "longitude_deg": "145.726", + "elevation_ft": "62", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "municipality": "Burnie", + "scheduled_service": "yes", + "gps_code": "YWYY", + "iata_code": "BWT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Burnie_Airport" + }, + { + "id": "334069", + "ident": "YXAB", + "type": "heliport", + "name": "Coonabarabran Hospital Helipad", + "latitude_deg": "-31.275241", + "longitude_deg": "149.284351", + "elevation_ft": "1740", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Coonabarabran", + "scheduled_service": "no", + "gps_code": "YXAB", + "local_code": "YXAB" + }, + { + "id": "309185", + "ident": "YXAH", + "type": "heliport", + "name": "Armidale - Lambert Park HLS", + "latitude_deg": "-30.5113", + "longitude_deg": "151.6552", + "elevation_ft": "3246", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Armidale", + "scheduled_service": "no", + "gps_code": "YXAH", + "local_code": "YXAH" + }, + { + "id": "309184", + "ident": "YXAL", + "type": "heliport", + "name": "Albury Base Hospital Helipad", + "latitude_deg": "-36.079212", + "longitude_deg": "146.938565", + "elevation_ft": "588", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Albury", + "scheduled_service": "no", + "gps_code": "YXAL", + "local_code": "YXAL" + }, + { + "id": "334070", + "ident": "YXAO", + "type": "heliport", + "name": "Canowindra Hospital Helipad", + "latitude_deg": "-33.556792", + "longitude_deg": "148.675227", + "elevation_ft": "1069", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Canowindra", + "scheduled_service": "no", + "gps_code": "YXAO", + "local_code": "YXAO" + }, + { + "id": "345623", + "ident": "YXAT", + "type": "heliport", + "name": "Atherton District Memorial Hospital Heliport", + "latitude_deg": "-17.265888", + "longitude_deg": "145.483661", + "elevation_ft": "2575", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Atherton", + "scheduled_service": "no", + "gps_code": "YXAT" + }, + { + "id": "334097", + "ident": "YXAU", + "type": "heliport", + "name": "Auburn Medical (Wyatt Park) Helicopter Landing Site", + "latitude_deg": "-33.858333", + "longitude_deg": "151.040833", + "elevation_ft": "36", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Auburn", + "scheduled_service": "no", + "gps_code": "YXAU", + "local_code": "YXAU" + }, + { + "id": "334048", + "ident": "YXAY", + "type": "heliport", + "name": "Blayney Medical Helicopter Landing Site", + "latitude_deg": "-33.534833", + "longitude_deg": "149.249167", + "elevation_ft": "2887", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Blayney", + "scheduled_service": "no", + "gps_code": "YXAY", + "local_code": "YXAY" + }, + { + "id": "309186", + "ident": "YXBA", + "type": "heliport", + "name": "Ballina - Kingsford Smith Park Helipad", + "latitude_deg": "-28.8692", + "longitude_deg": "153.5713", + "elevation_ft": "17", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Ballina", + "scheduled_service": "no", + "gps_code": "YXBA", + "local_code": "YXBA" + }, + { + "id": "309221", + "ident": "YXBD", + "type": "heliport", + "name": "Bundaberg Base Hospital Helipad", + "latitude_deg": "-24.869446", + "longitude_deg": "152.335045", + "elevation_ft": "60", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Bundaberg", + "scheduled_service": "no", + "gps_code": "YXBD", + "local_code": "YXBD" + }, + { + "id": "335459", + "ident": "YXBH", + "type": "heliport", + "name": "Bathurst Hospital Helipad", + "latitude_deg": "-33.40587", + "longitude_deg": "149.571884", + "elevation_ft": "2240", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Bathurst", + "scheduled_service": "no", + "gps_code": "YXBH" + }, + { + "id": "309216", + "ident": "YXBI", + "type": "heliport", + "name": "Biggenden Hospital Helipad", + "latitude_deg": "-25.506941", + "longitude_deg": "152.050651", + "elevation_ft": "391", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Biggenden", + "scheduled_service": "no", + "gps_code": "YXBI", + "local_code": "YXBI" + }, + { + "id": "309190", + "ident": "YXBM", + "type": "heliport", + "name": "Batemans Bay Helipad", + "latitude_deg": "-35.71301", + "longitude_deg": "150.1872", + "elevation_ft": "3", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Batemans Bay", + "scheduled_service": "no", + "gps_code": "YXBM", + "local_code": "YXBM" + }, + { + "id": "309215", + "ident": "YXBS", + "type": "heliport", + "name": "Beaudesert Hospital Helipad", + "latitude_deg": "-27.98571", + "longitude_deg": "153.002345", + "elevation_ft": "265", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Beaudesert", + "scheduled_service": "no", + "gps_code": "YXBS", + "local_code": "YXBS" + }, + { + "id": "309962", + "ident": "YXBU", + "type": "heliport", + "name": "Bulwer Heliport", + "latitude_deg": "-27.07233", + "longitude_deg": "153.36748", + "elevation_ft": "29", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Bulwer", + "scheduled_service": "no", + "gps_code": "YXBU", + "local_code": "YXBU" + }, + { + "id": "334044", + "ident": "YXBV", + "type": "heliport", + "name": "Bega Hospital Heliport", + "latitude_deg": "-36.687887", + "longitude_deg": "149.858596", + "elevation_ft": "68", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Bega", + "scheduled_service": "no", + "gps_code": "YXBV", + "local_code": "YXBV" + }, + { + "id": "309961", + "ident": "YXBW", + "type": "heliport", + "name": "Bowen Hospital Helipad", + "latitude_deg": "-20.006611", + "longitude_deg": "148.239909", + "elevation_ft": "84", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Bowen", + "scheduled_service": "no", + "gps_code": "YXBW", + "local_code": "YXBW" + }, + { + "id": "314694", + "ident": "YXCA", + "type": "heliport", + "name": "Carnungra-Moriarity Park HLS", + "latitude_deg": "-28.0186", + "longitude_deg": "153.1598", + "elevation_ft": "312", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Canungra", + "scheduled_service": "no", + "gps_code": "YXCA", + "local_code": "YXCA" + }, + { + "id": "309183", + "ident": "YXCB", + "type": "heliport", + "name": "Canberra Hospital Helipad", + "latitude_deg": "-35.343777", + "longitude_deg": "149.099953", + "elevation_ft": "1953", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-ACT", + "municipality": "Canberra", + "scheduled_service": "no", + "gps_code": "YXCB", + "local_code": "YXCB" + }, + { + "id": "343239", + "ident": "YXCC", + "type": "heliport", + "name": "Concord Hospital Heliport", + "latitude_deg": "-33.83873", + "longitude_deg": "151.094364", + "elevation_ft": "23", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Concord", + "scheduled_service": "no", + "gps_code": "YXCC" + }, + { + "id": "312273", + "ident": "YXCF", + "type": "heliport", + "name": "Orange - Careflight Base Heliport", + "latitude_deg": "-33.30368", + "longitude_deg": "149.12098", + "elevation_ft": "2964", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Orange", + "scheduled_service": "no", + "gps_code": "YXCF", + "local_code": "YXCF" + }, + { + "id": "309223", + "ident": "YXCH", + "type": "heliport", + "name": "Cherbourg Hospital Helipad", + "latitude_deg": "-26.29124", + "longitude_deg": "151.95742", + "elevation_ft": "1006", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Cherbourg", + "scheduled_service": "no", + "gps_code": "YXCH", + "local_code": "YXCH" + }, + { + "id": "309224", + "ident": "YXCI", + "type": "heliport", + "name": "Chinchilla Hospital Helipad", + "latitude_deg": "-26.74066", + "longitude_deg": "150.63425", + "elevation_ft": "1007", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Chinchilla", + "scheduled_service": "no", + "gps_code": "YXCI", + "local_code": "YXCI" + }, + { + "id": "343245", + "ident": "YXCK", + "type": "heliport", + "name": "Cessnock Hospital Heliport", + "latitude_deg": "-32.826884", + "longitude_deg": "151.348053", + "elevation_ft": "280", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Cessnock", + "scheduled_service": "no", + "gps_code": "YXCK" + }, + { + "id": "309195", + "ident": "YXCM", + "type": "heliport", + "name": "Cooma Hospital Helipad", + "latitude_deg": "-36.242155", + "longitude_deg": "149.130147", + "elevation_ft": "2656", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Cooma", + "scheduled_service": "no", + "gps_code": "YXCM", + "local_code": "YXCM" + }, + { + "id": "343248", + "ident": "YXCP", + "type": "small_airport", + "name": "Campbelltown Hospital Heliport", + "latitude_deg": "-34.077985", + "longitude_deg": "150.804026", + "elevation_ft": "272", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Campbelltown", + "scheduled_service": "no", + "gps_code": "YXCP" + }, + { + "id": "314873", + "ident": "YXCU", + "type": "heliport", + "name": "Cunningham Gap Helipad", + "latitude_deg": "-28.0479", + "longitude_deg": "152.4457", + "elevation_ft": "1185", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Cunningham Highway", + "scheduled_service": "no", + "gps_code": "YXCU", + "local_code": "YXCU" + }, + { + "id": "309227", + "ident": "YXCV", + "type": "heliport", + "name": "Collinsville Hospital Helipad", + "latitude_deg": "-20.546745", + "longitude_deg": "147.837734", + "elevation_ft": "706", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Collinsville", + "scheduled_service": "no", + "gps_code": "YXCV", + "local_code": "YXCV" + }, + { + "id": "309182", + "ident": "YXCY", + "type": "heliport", + "name": "Calvary - Bruce Oval Helipad", + "latitude_deg": "-35.247", + "longitude_deg": "149.0927", + "elevation_ft": "2031", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-ACT", + "municipality": "Canberra", + "scheduled_service": "no", + "gps_code": "YXCY", + "local_code": "YXCY" + }, + { + "id": "309960", + "ident": "YXDA", + "type": "heliport", + "name": "Dalby Hospital Helipad", + "latitude_deg": "-27.16713", + "longitude_deg": "151.27692", + "elevation_ft": "1140", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Dalby", + "scheduled_service": "no", + "gps_code": "YXDA", + "local_code": "YXDA" + }, + { + "id": "343253", + "ident": "YXDB", + "type": "heliport", + "name": "Dubbo Hospital Heliport", + "latitude_deg": "-32.238677", + "longitude_deg": "148.620483", + "elevation_ft": "935", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Dubbo", + "scheduled_service": "no", + "gps_code": "YXDB" + }, + { + "id": "313376", + "ident": "YXDE", + "type": "heliport", + "name": "Denman Helicopter Landing Site", + "latitude_deg": "-32.3868", + "longitude_deg": "150.682", + "elevation_ft": "388", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Denman", + "scheduled_service": "no", + "gps_code": "YXDE", + "local_code": "YXDE" + }, + { + "id": "313377", + "ident": "YXDG", + "type": "heliport", + "name": "Dorrigo Helipad", + "latitude_deg": "-30.3422", + "longitude_deg": "152.7092", + "elevation_ft": "2367", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Dorrigo", + "scheduled_service": "no", + "gps_code": "YXDG", + "local_code": "YXDG" + }, + { + "id": "309201", + "ident": "YXDH", + "type": "heliport", + "name": "Royal Darwin Hospital Helipad", + "latitude_deg": "-12.35284", + "longitude_deg": "130.881645", + "elevation_ft": "50", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "municipality": "Darwin", + "scheduled_service": "no", + "gps_code": "YXDH", + "local_code": "YXDH" + }, + { + "id": "343255", + "ident": "YXDN", + "type": "heliport", + "name": "Dunedoo Hospital - Robinson Oval HLS", + "latitude_deg": "-32.013833", + "longitude_deg": "149.389833", + "elevation_ft": "1260", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Dunedoo", + "scheduled_service": "no", + "gps_code": "YXDN" + }, + { + "id": "309256", + "ident": "YXDR", + "type": "heliport", + "name": "Munduberra Hospital Helipad", + "latitude_deg": "-25.58815", + "longitude_deg": "151.29319", + "elevation_ft": "470", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Munduberra", + "scheduled_service": "no", + "gps_code": "YXDR", + "local_code": "YXDR" + }, + { + "id": "309228", + "ident": "YXDU", + "type": "heliport", + "name": "Dunwich Hospital Helipad", + "latitude_deg": "-27.49696", + "longitude_deg": "153.399233", + "elevation_ft": "32", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Dunwich", + "scheduled_service": "no", + "gps_code": "YXDU", + "local_code": "YXDU" + }, + { + "id": "309229", + "ident": "YXDY", + "type": "heliport", + "name": "Dysart Hospital Helipad", + "latitude_deg": "-22.582854", + "longitude_deg": "148.353544", + "elevation_ft": "744", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Dysart", + "scheduled_service": "no", + "gps_code": "YXDY", + "local_code": "YXDY" + }, + { + "id": "309527", + "ident": "YXEE", + "type": "heliport", + "name": "Moree Hospital Helipad", + "latitude_deg": "-29.47089", + "longitude_deg": "149.84054", + "elevation_ft": "694", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Moree", + "scheduled_service": "no", + "gps_code": "YXEE", + "local_code": "YXEE" + }, + { + "id": "334045", + "ident": "YXEG", + "type": "heliport", + "name": "Bellingen Medical - Connell Park HLS", + "latitude_deg": "-30.453613", + "longitude_deg": "152.901771", + "elevation_ft": "40", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Bellingen", + "scheduled_service": "no", + "gps_code": "YXEG", + "local_code": "YXEG" + }, + { + "id": "309230", + "ident": "YXEI", + "type": "heliport", + "name": "Eidsvold Hospital Helipad", + "latitude_deg": "-25.382466", + "longitude_deg": "151.125", + "elevation_ft": "647", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Eidsvold", + "scheduled_service": "no", + "gps_code": "YXEI", + "local_code": "YXEI" + }, + { + "id": "343258", + "ident": "YXEM", + "type": "heliport", + "name": "Eden Sports Ground HLS", + "latitude_deg": "-37.05617", + "longitude_deg": "149.910679", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Eden", + "scheduled_service": "no", + "gps_code": "YXEM" + }, + { + "id": "309240", + "ident": "YXES", + "type": "heliport", + "name": "Esk Hospital Helipad", + "latitude_deg": "-27.24086", + "longitude_deg": "152.418", + "elevation_ft": "395", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Esk", + "scheduled_service": "no", + "gps_code": "YXES", + "local_code": "YXES" + }, + { + "id": "341849", + "ident": "YXFH", + "type": "heliport", + "name": "Fiona Stanley Hospital Helipad", + "latitude_deg": "-32.070656", + "longitude_deg": "115.846732", + "elevation_ft": "220", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Perth", + "scheduled_service": "no", + "gps_code": "YXFH" + }, + { + "id": "343260", + "ident": "YXFO", + "type": "heliport", + "name": "Forbes Hospital Heliport", + "latitude_deg": "-33.395865", + "longitude_deg": "148.013767", + "elevation_ft": "760", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Forbes", + "scheduled_service": "no", + "gps_code": "YXFO" + }, + { + "id": "309662", + "ident": "YXFS", + "type": "heliport", + "name": "Forster Hospital Helipad", + "latitude_deg": "-32.188357", + "longitude_deg": "152.51321", + "elevation_ft": "18", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Forster / Tuncurry", + "scheduled_service": "no", + "gps_code": "YXFS", + "local_code": "YXFS" + }, + { + "id": "35338", + "ident": "YXFV", + "type": "heliport", + "name": "Newcastle Westpac Base Heliport", + "latitude_deg": "-32.92029953", + "longitude_deg": "151.729995728", + "elevation_ft": "28", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Newcastle", + "scheduled_service": "no", + "gps_code": "YXFV" + }, + { + "id": "315741", + "ident": "YXGA", + "type": "heliport", + "name": "Gatton Showgrounds Helicopter Landing Site", + "latitude_deg": "-27.56", + "longitude_deg": "152.282", + "elevation_ft": "333", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Gatton", + "scheduled_service": "no", + "gps_code": "YXGA", + "local_code": "YXGA" + }, + { + "id": "343261", + "ident": "YXGC", + "type": "heliport", + "name": "Gloucester Helicopter Landing Site", + "latitude_deg": "-32.014833", + "longitude_deg": "151.96", + "elevation_ft": "360", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Gloucester", + "scheduled_service": "no", + "gps_code": "YXGC" + }, + { + "id": "309694", + "ident": "YXGE", + "type": "heliport", + "name": "Glen Innes - Rugby Park Heliport", + "latitude_deg": "-29.7302", + "longitude_deg": "151.7364", + "elevation_ft": "3455", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Glen Innes", + "scheduled_service": "no", + "gps_code": "YXGE", + "local_code": "YXGE" + }, + { + "id": "309609", + "ident": "YXGH", + "type": "heliport", + "name": "Goulburn Hospital Helipad", + "latitude_deg": "-34.74803", + "longitude_deg": "149.71235", + "elevation_ft": "2158", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Goulburn", + "scheduled_service": "no", + "gps_code": "YXGH", + "local_code": "YXGH" + }, + { + "id": "309242", + "ident": "YXGI", + "type": "heliport", + "name": "Gayndah Hospital Helipad", + "latitude_deg": "-25.63202", + "longitude_deg": "151.60475", + "elevation_ft": "459", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Gayndah", + "scheduled_service": "no", + "gps_code": "YXGI", + "local_code": "YXGI" + }, + { + "id": "343263", + "ident": "YXGL", + "type": "heliport", + "name": "Grenfell - Lawson Oval HLS", + "latitude_deg": "-33.906308", + "longitude_deg": "148.161567", + "elevation_ft": "1270", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Grenfell", + "scheduled_service": "no", + "gps_code": "YXGL" + }, + { + "id": "309243", + "ident": "YXGO", + "type": "heliport", + "name": "Goondiwindi Hospital Helipad", + "latitude_deg": "-28.547905", + "longitude_deg": "150.30117", + "elevation_ft": "717", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Goondiwindi", + "scheduled_service": "no", + "gps_code": "YXGO", + "local_code": "YXGO" + }, + { + "id": "309600", + "ident": "YXGP", + "type": "heliport", + "name": "Grafton Hospital Helipad", + "latitude_deg": "-29.67357", + "longitude_deg": "152.94074", + "elevation_ft": "21", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Grafton", + "scheduled_service": "no", + "gps_code": "YXGP", + "local_code": "YXGP" + }, + { + "id": "309661", + "ident": "YXGR", + "type": "heliport", + "name": "Gilgandra Multi Purpose Service Helipad", + "latitude_deg": "-31.7039", + "longitude_deg": "148.665225", + "elevation_ft": "441", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Gilgandra", + "scheduled_service": "no", + "gps_code": "YXGR", + "local_code": "YXGR" + }, + { + "id": "29903", + "ident": "YXGS", + "type": "heliport", + "name": "Gosford Hospital Helipad", + "latitude_deg": "-33.421626", + "longitude_deg": "151.339894", + "elevation_ft": "110", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Gosford", + "scheduled_service": "no", + "gps_code": "YXGS", + "local_code": "YXGS" + }, + { + "id": "429878", + "ident": "YXGT", + "type": "heliport", + "name": "Billy Dunne Oval HLS", + "latitude_deg": "-32.35815", + "longitude_deg": "149.538431", + "elevation_ft": "1490", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Gulgong", + "scheduled_service": "no", + "gps_code": "YXGT" + }, + { + "id": "309599", + "ident": "YXGU", + "type": "heliport", + "name": "Gunnedah Hospital Helipad", + "latitude_deg": "-30.98283", + "longitude_deg": "150.25223", + "elevation_ft": "914", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Gunnedah", + "scheduled_service": "no", + "gps_code": "YXGU", + "local_code": "YXGU" + }, + { + "id": "429879", + "ident": "YXGW", + "type": "heliport", + "name": "Gundagai Medical Helicopter Landing Site", + "latitude_deg": "-35.067923", + "longitude_deg": "148.102216", + "elevation_ft": "720", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Gundagai", + "scheduled_service": "no", + "gps_code": "YXGW", + "keywords": "ANZAC Park" + }, + { + "id": "314885", + "ident": "YXGY", + "type": "heliport", + "name": "Archery Park Helipad", + "latitude_deg": "-26.1886", + "longitude_deg": "152.6527", + "elevation_ft": "176", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Gympie", + "scheduled_service": "no", + "gps_code": "YXGY", + "local_code": "YXGY" + }, + { + "id": "309598", + "ident": "YXHA", + "type": "heliport", + "name": "Hawkesbury Hospital Helipad", + "latitude_deg": "-33.61058", + "longitude_deg": "150.8215", + "elevation_ft": "48", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Windsor", + "scheduled_service": "no", + "gps_code": "YXHA", + "local_code": "YXHA" + }, + { + "id": "309248", + "ident": "YXHE", + "type": "heliport", + "name": "Hervey Bay Hospital Helipad", + "latitude_deg": "-25.299997", + "longitude_deg": "152.821348", + "elevation_ft": "85", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Hervery Bay", + "scheduled_service": "no", + "gps_code": "YXHE", + "local_code": "YXHE" + }, + { + "id": "315737", + "ident": "YXHG", + "type": "heliport", + "name": "Gold Coast University Hospital Helipad", + "latitude_deg": "-27.9595", + "longitude_deg": "153.382", + "elevation_ft": "175", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Gold Coast", + "scheduled_service": "no", + "gps_code": "YXHG", + "local_code": "YXHG" + }, + { + "id": "429880", + "ident": "YXHK", + "type": "heliport", + "name": "Hornsby Ku-ring-gai Hospital Helipad", + "latitude_deg": "-33.703224", + "longitude_deg": "151.112727", + "elevation_ft": "682", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Sydney", + "scheduled_service": "no", + "gps_code": "YXHK" + }, + { + "id": "334047", + "ident": "YXIG", + "type": "heliport", + "name": "Bingara Hospital Heliport", + "latitude_deg": "-29.86407", + "longitude_deg": "150.579563", + "elevation_ft": "1020", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Bingara", + "scheduled_service": "no", + "gps_code": "YXIG", + "local_code": "YXIG" + }, + { + "id": "345622", + "ident": "YXIS", + "type": "heliport", + "name": "Innisfail Hospital Heliport", + "latitude_deg": "-17.518421", + "longitude_deg": "146.029909", + "elevation_ft": "36", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Innisfail", + "scheduled_service": "no", + "gps_code": "YXIS" + }, + { + "id": "309249", + "ident": "YXIW", + "type": "heliport", + "name": "Inglewood Hospital Helipad", + "latitude_deg": "-28.41819", + "longitude_deg": "151.061255", + "elevation_ft": "932", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Inglewood", + "scheduled_service": "no", + "gps_code": "YXIW", + "local_code": "YXIW" + }, + { + "id": "429881", + "ident": "YXJD", + "type": "heliport", + "name": "Jindabyne Medical Helicopter Landing Site", + "latitude_deg": "-36.417993", + "longitude_deg": "148.615183", + "elevation_ft": "3145", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Jindabyne", + "scheduled_service": "no", + "gps_code": "YXJD", + "keywords": "John Conners" + }, + { + "id": "309560", + "ident": "YXJH", + "type": "heliport", + "name": "John Hunter Hospital Helipad", + "latitude_deg": "-32.924048", + "longitude_deg": "151.693415", + "elevation_ft": "310", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Newcastle", + "scheduled_service": "no", + "gps_code": "YXJH", + "local_code": "YXJH" + }, + { + "id": "309250", + "ident": "YXJN", + "type": "heliport", + "name": "Jandowae Hospital Heliport", + "latitude_deg": "-26.7814", + "longitude_deg": "151.10473", + "elevation_ft": "1180", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Jandowae", + "scheduled_service": "no", + "gps_code": "YXJN", + "local_code": "YXJN" + }, + { + "id": "309696", + "ident": "YXKE", + "type": "closed", + "name": "Kempsey Hospital Helicopter Landing Site", + "latitude_deg": "-31.067128", + "longitude_deg": "152.821257", + "elevation_ft": "68", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Kempsey", + "scheduled_service": "no", + "gps_code": "YXKE", + "local_code": "YXKE" + }, + { + "id": "309559", + "ident": "YXKM", + "type": "heliport", + "name": "Blue Mountains Hospital Helipad", + "latitude_deg": "-33.705262", + "longitude_deg": "150.322369", + "elevation_ft": "3333", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Katoomba", + "scheduled_service": "no", + "gps_code": "YXKM", + "local_code": "YXKM" + }, + { + "id": "309548", + "ident": "YXKO", + "type": "heliport", + "name": "Kyogle Hospital Helipad", + "latitude_deg": "-28.62822", + "longitude_deg": "153.00193", + "elevation_ft": "237", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Kyogle", + "scheduled_service": "no", + "gps_code": "YXKO", + "local_code": "YXKO" + }, + { + "id": "309549", + "ident": "YXKU", + "type": "heliport", + "name": "Kurri Hospital Helipad", + "latitude_deg": "-32.82569", + "longitude_deg": "151.46279", + "elevation_ft": "211", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Kurri Kurri", + "scheduled_service": "no", + "gps_code": "YXKU", + "local_code": "YXKU" + }, + { + "id": "309251", + "ident": "YXLA", + "type": "heliport", + "name": "Laidley Hospital Helipad", + "latitude_deg": "-27.63258", + "longitude_deg": "152.39924", + "elevation_ft": "356", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Laidley", + "scheduled_service": "no", + "gps_code": "YXLA", + "local_code": "YXLA" + }, + { + "id": "309698", + "ident": "YXLE", + "type": "heliport", + "name": "Leeton Showground Heliport", + "latitude_deg": "-34.56", + "longitude_deg": "146.405", + "elevation_ft": "451", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Leeton", + "scheduled_service": "no", + "gps_code": "YXLE", + "local_code": "YXLE" + }, + { + "id": "309547", + "ident": "YXLG", + "type": "heliport", + "name": "Lithgow Hospital Helipad", + "latitude_deg": "-33.49942", + "longitude_deg": "150.1287", + "elevation_ft": "3105", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Lithgow", + "scheduled_service": "no", + "gps_code": "YXLG", + "local_code": "YXLG" + }, + { + "id": "309701", + "ident": "YXLL", + "type": "heliport", + "name": "Liverpool Hospital Helipad Alpha", + "latitude_deg": "-33.9204", + "longitude_deg": "150.9312", + "elevation_ft": "130", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Liverpool", + "scheduled_service": "no", + "gps_code": "YXLL", + "local_code": "YXLL" + }, + { + "id": "309222", + "ident": "YXLT", + "type": "heliport", + "name": "Caboolture Hospital Helipad", + "latitude_deg": "-27.07955", + "longitude_deg": "152.96293", + "elevation_ft": "42", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Caboolture", + "scheduled_service": "no", + "gps_code": "YXLT", + "local_code": "YXLT" + }, + { + "id": "309546", + "ident": "YXMA", + "type": "heliport", + "name": "Maclean Hospital Helipad", + "latitude_deg": "-29.45373", + "longitude_deg": "153.20143", + "elevation_ft": "20", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Maclean", + "scheduled_service": "no", + "gps_code": "YXMA", + "local_code": "YXMA" + }, + { + "id": "309512", + "ident": "YXMD", + "type": "heliport", + "name": "Mount Druitt Hospital Heliport", + "latitude_deg": "-33.766232", + "longitude_deg": "150.830663", + "elevation_ft": "220", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Mount Druitt", + "scheduled_service": "no", + "gps_code": "YXMD", + "local_code": "YXMD" + }, + { + "id": "309266", + "ident": "YXMG", + "type": "heliport", + "name": "Murgon Hospital Helipad", + "latitude_deg": "-26.23842", + "longitude_deg": "151.95095", + "elevation_ft": "1095", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Murgon", + "scheduled_service": "no", + "gps_code": "YXMG", + "local_code": "YXMG" + }, + { + "id": "309511", + "ident": "YXMH", + "type": "heliport", + "name": "Mudgee Hospital Helipad", + "latitude_deg": "-32.602546", + "longitude_deg": "149.588067", + "elevation_ft": "1562", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Mudgee", + "scheduled_service": "no", + "gps_code": "YXMH", + "local_code": "YXMH" + }, + { + "id": "309705", + "ident": "YXMK", + "type": "heliport", + "name": "Macksville Park Helicopter Landing Site", + "latitude_deg": "-30.71022", + "longitude_deg": "152.9213", + "elevation_ft": "9", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Macksville", + "scheduled_service": "no", + "gps_code": "YXMK", + "local_code": "YXMK" + }, + { + "id": "309510", + "ident": "YXMU", + "type": "heliport", + "name": "Mullumbimby Hospital Helipad", + "latitude_deg": "-28.559347", + "longitude_deg": "153.49219", + "elevation_ft": "36", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Mullumbimby", + "scheduled_service": "no", + "gps_code": "YXMU", + "local_code": "YXMU" + }, + { + "id": "309532", + "ident": "YXMV", + "type": "heliport", + "name": "Mona Vale Hospital Helipad", + "latitude_deg": "-33.68512", + "longitude_deg": "151.30824", + "elevation_ft": "47", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Mona Vale", + "scheduled_service": "no", + "gps_code": "YXMV", + "local_code": "YXMV" + }, + { + "id": "309533", + "ident": "YXMW", + "type": "heliport", + "name": "Merriwa Hospital Helipad", + "latitude_deg": "-32.14338", + "longitude_deg": "150.3609", + "elevation_ft": "895", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Merriwa", + "scheduled_service": "no", + "gps_code": "YXMW", + "local_code": "YXMW" + }, + { + "id": "309526", + "ident": "YXMY", + "type": "heliport", + "name": "Moruya Hospital Helipad", + "latitude_deg": "-35.90397", + "longitude_deg": "150.06946", + "elevation_ft": "22", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Moruya", + "scheduled_service": "no", + "gps_code": "YXMY", + "local_code": "YXMY" + }, + { + "id": "309267", + "ident": "YXNA", + "type": "heliport", + "name": "Nambour Hospital Helipad", + "latitude_deg": "-26.62053", + "longitude_deg": "152.95095", + "elevation_ft": "230", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Nambour", + "scheduled_service": "no", + "gps_code": "YXNA", + "local_code": "YXNA" + }, + { + "id": "309278", + "ident": "YXNE", + "type": "heliport", + "name": "Nepean Hospital Helipad", + "latitude_deg": "-33.75855", + "longitude_deg": "150.7122", + "elevation_ft": "200", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Penrith", + "scheduled_service": "no", + "gps_code": "YXNE", + "local_code": "YXNE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nepean_Hospital" + }, + { + "id": "309268", + "ident": "YXNN", + "type": "heliport", + "name": "Nanango Hospital Helipad", + "latitude_deg": "-26.6659", + "longitude_deg": "152.00757", + "elevation_ft": "1309", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Nanango", + "scheduled_service": "no", + "gps_code": "YXNN", + "local_code": "YXNN" + }, + { + "id": "309279", + "ident": "YXNO", + "type": "heliport", + "name": "Noosa Hospital Helipad", + "latitude_deg": "-26.40259", + "longitude_deg": "153.04569", + "elevation_ft": "37", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Noosa", + "scheduled_service": "no", + "gps_code": "YXNO", + "local_code": "YXNO" + }, + { + "id": "309280", + "ident": "YXNW", + "type": "heliport", + "name": "Shoalhaven Hospital Helipad", + "latitude_deg": "-34.86978", + "longitude_deg": "150.59553", + "elevation_ft": "92", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Nowra", + "scheduled_service": "no", + "gps_code": "YXNW", + "local_code": "YXNW", + "home_link": "https://www.islhd.health.nsw.gov.au/hospitals/shoalhaven" + }, + { + "id": "311764", + "ident": "YXNY", + "type": "heliport", + "name": "Nelson Bay Heliport", + "latitude_deg": "-32.7167", + "longitude_deg": "152.1548", + "elevation_ft": "62", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Nelson Bay", + "scheduled_service": "no", + "gps_code": "YXNY", + "local_code": "YXNY" + }, + { + "id": "429876", + "ident": "YXOF", + "type": "heliport", + "name": "Coffs Harbour Health Campus Helipad", + "latitude_deg": "-30.316817", + "longitude_deg": "153.093125", + "elevation_ft": "90", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Coffs Harbour", + "scheduled_service": "no", + "gps_code": "YXOF" + }, + { + "id": "309396", + "ident": "YXOG", + "type": "heliport", + "name": "Orange Hospital Helipad", + "latitude_deg": "-33.316724", + "longitude_deg": "149.092652", + "elevation_ft": "3033", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Orange", + "scheduled_service": "no", + "gps_code": "YXOG", + "local_code": "YXOG" + }, + { + "id": "429877", + "ident": "YXOH", + "type": "heliport", + "name": "Coolah Hospital Heliport", + "latitude_deg": "-31.82182", + "longitude_deg": "149.710098", + "elevation_ft": "1650", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Coolah", + "scheduled_service": "no", + "gps_code": "YXOH" + }, + { + "id": "429856", + "ident": "YXOK", + "type": "heliport", + "name": "Crookwell Medical Heliport", + "latitude_deg": "-34.449334", + "longitude_deg": "149.469085", + "elevation_ft": "2840", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Crookwell", + "scheduled_service": "no", + "gps_code": "YXOK" + }, + { + "id": "429858", + "ident": "YXOL", + "type": "heliport", + "name": "Condobolin Helicopter Landing Site", + "latitude_deg": "-33.081928", + "longitude_deg": "147.149602", + "elevation_ft": "650", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Condobolin", + "scheduled_service": "no", + "gps_code": "YXOL" + }, + { + "id": "334050", + "ident": "YXOM", + "type": "heliport", + "name": "Bombala Medical Helicopter Landing Site", + "latitude_deg": "-36.913833", + "longitude_deg": "149.241333", + "elevation_ft": "2350", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Bombala", + "scheduled_service": "no", + "gps_code": "YXOM", + "local_code": "YXOM" + }, + { + "id": "429859", + "ident": "YXOO", + "type": "heliport", + "name": "Cootamundra Hospital Heliport", + "latitude_deg": "-34.633958", + "longitude_deg": "148.012673", + "elevation_ft": "1110", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Cootamundra", + "scheduled_service": "no", + "gps_code": "YXOO" + }, + { + "id": "317143", + "ident": "YXOW", + "type": "heliport", + "name": "Bowral - Loseby Park Helicopter Landing Site", + "latitude_deg": "-34.4867", + "longitude_deg": "150.4228", + "elevation_ft": "2263", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Bowral", + "scheduled_service": "no", + "gps_code": "YXOW", + "local_code": "YXOW" + }, + { + "id": "309394", + "ident": "YXPH", + "type": "heliport", + "name": "Peak Hill Hospital Helipad", + "latitude_deg": "-32.7362", + "longitude_deg": "148.19978", + "elevation_ft": "957", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Peak Hill", + "scheduled_service": "no", + "gps_code": "YXPH", + "local_code": "YXPH" + }, + { + "id": "309308", + "ident": "YXPI", + "type": "heliport", + "name": "Pindarra Hospital Helipad", + "latitude_deg": "-28.008", + "longitude_deg": "153.3924", + "elevation_ft": "17", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Gold Coast", + "scheduled_service": "no", + "gps_code": "YXPI", + "local_code": "YXPI" + }, + { + "id": "309395", + "ident": "YXPK", + "type": "heliport", + "name": "Parkes Hospital Helipad", + "latitude_deg": "-33.12703", + "longitude_deg": "148.16999", + "elevation_ft": "1189", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Parkes", + "scheduled_service": "no", + "gps_code": "YXPK", + "local_code": "YXPK" + }, + { + "id": "309376", + "ident": "YXPM", + "type": "heliport", + "name": "Port Macquarie Hospital Helipad", + "latitude_deg": "-31.452683", + "longitude_deg": "152.88076", + "elevation_ft": "32", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Port Macquarie", + "scheduled_service": "no", + "gps_code": "YXPM", + "local_code": "YXPM" + }, + { + "id": "309316", + "ident": "YXPN", + "type": "heliport", + "name": "Proserpine Hospital Helipad", + "latitude_deg": "-20.39912", + "longitude_deg": "148.5855", + "elevation_ft": "44", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Proserpine", + "scheduled_service": "no", + "gps_code": "YXPN", + "local_code": "YXPN" + }, + { + "id": "341858", + "ident": "YXQE", + "type": "heliport", + "name": "Queen Elizabeth II (Sir Charles Gairdner) Hospital Helipad", + "latitude_deg": "-31.968947", + "longitude_deg": "115.816884", + "elevation_ft": "185", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Perth", + "scheduled_service": "no", + "gps_code": "YXQE" + }, + { + "id": "309375", + "ident": "YXQU", + "type": "heliport", + "name": "Quirindi Hospital Helipad", + "latitude_deg": "-31.50107", + "longitude_deg": "150.676606", + "elevation_ft": "1365", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Quirindi", + "scheduled_service": "no", + "gps_code": "YXQU", + "local_code": "YXQU" + }, + { + "id": "347944", + "ident": "YXRM", + "type": "heliport", + "name": "Renmark Hospital Heliport", + "latitude_deg": "-34.163567", + "longitude_deg": "140.74483", + "elevation_ft": "63", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Renmark", + "scheduled_service": "no", + "gps_code": "YXRM", + "home_link": "https://www.sahealth.sa.gov.au/wps/wcm/connect/public+content/sa+health+internet/services/hospitals/regional+hospitals+and+healt" + }, + { + "id": "309374", + "ident": "YXRN", + "type": "heliport", + "name": "Rylstone Hospital Helipad", + "latitude_deg": "-32.803975", + "longitude_deg": "149.975076", + "elevation_ft": "1971", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Rylstone", + "scheduled_service": "no", + "gps_code": "YXRN", + "local_code": "YXRN" + }, + { + "id": "341859", + "ident": "YXRP", + "type": "heliport", + "name": "Royal Perth Hospital Helipad", + "latitude_deg": "-31.953701", + "longitude_deg": "115.866526", + "elevation_ft": "100", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Perth", + "scheduled_service": "no", + "gps_code": "YXRP" + }, + { + "id": "309342", + "ident": "YXSA", + "type": "heliport", + "name": "Sydney Adventist Hospital Helipad", + "latitude_deg": "-33.733386", + "longitude_deg": "151.100006", + "elevation_ft": "584", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Wahroonga", + "scheduled_service": "no", + "gps_code": "YXSA", + "local_code": "YXSA" + }, + { + "id": "334095", + "ident": "YXSB", + "type": "heliport", + "name": "Southcare Base - Canberra Heliport", + "latitude_deg": "-35.378588", + "longitude_deg": "149.171559", + "elevation_ft": "1919", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-ACT", + "municipality": "Canberra", + "scheduled_service": "no", + "gps_code": "YXSB", + "local_code": "YXSB" + }, + { + "id": "309353", + "ident": "YXSC", + "type": "heliport", + "name": "Scone Hospital Helipad", + "latitude_deg": "-32.050268", + "longitude_deg": "150.877663", + "elevation_ft": "782", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Scone", + "scheduled_service": "no", + "gps_code": "YXSC", + "local_code": "YXSC" + }, + { + "id": "309344", + "ident": "YXSG", + "type": "heliport", + "name": "St George Hospital Helipad", + "latitude_deg": "-33.96807", + "longitude_deg": "151.13368", + "elevation_ft": "150", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Kogarah", + "scheduled_service": "no", + "gps_code": "YXSG", + "local_code": "YXSG" + }, + { + "id": "309352", + "ident": "YXSH", + "type": "heliport", + "name": "Shellharbour Hospital Helipad", + "latitude_deg": "-34.55989", + "longitude_deg": "150.84173", + "elevation_ft": "99", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Shellharbour", + "scheduled_service": "no", + "gps_code": "YXSH", + "local_code": "YXSH" + }, + { + "id": "309351", + "ident": "YXSI", + "type": "heliport", + "name": "Singleton Hospital Helipad", + "latitude_deg": "-32.56708", + "longitude_deg": "151.186865", + "elevation_ft": "151", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Singleton", + "scheduled_service": "no", + "gps_code": "YXSI", + "local_code": "YXSI" + }, + { + "id": "309343", + "ident": "YXSU", + "type": "heliport", + "name": "Sutherland Hospital Helipad", + "latitude_deg": "-34.038783", + "longitude_deg": "151.1156", + "elevation_ft": "119", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Miranda", + "scheduled_service": "no", + "gps_code": "YXSU", + "local_code": "YXSU" + }, + { + "id": "38667", + "ident": "YXTA", + "type": "heliport", + "name": "Tangalooma Resort Heliport", + "latitude_deg": "-27.1836", + "longitude_deg": "153.3709", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YXTA" + }, + { + "id": "310102", + "ident": "YXTE", + "type": "heliport", + "name": "Tenterfield - Federation Park Heliport", + "latitude_deg": "-29.048", + "longitude_deg": "152.0164", + "elevation_ft": "2762", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Tenterfield", + "scheduled_service": "no", + "gps_code": "YXTE", + "local_code": "YXTE" + }, + { + "id": "313356", + "ident": "YXTN", + "type": "heliport", + "name": "Trundle Hospital Helicopter Landing Site", + "latitude_deg": "-32.9217", + "longitude_deg": "147.7067", + "elevation_ft": "822", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Trundle", + "scheduled_service": "no", + "gps_code": "YXTN", + "local_code": "YXTN" + }, + { + "id": "310101", + "ident": "YXTR", + "type": "heliport", + "name": "Taree - Wrigley Park Helipad", + "latitude_deg": "-31.9064", + "longitude_deg": "152.4508", + "elevation_ft": "39", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Taree", + "scheduled_service": "no", + "gps_code": "YXTR", + "local_code": "YXTR" + }, + { + "id": "309333", + "ident": "YXTT", + "type": "heliport", + "name": "Tumut Hospital Helipad", + "latitude_deg": "-35.308", + "longitude_deg": "148.2191", + "elevation_ft": "1052", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Tumut", + "scheduled_service": "no", + "gps_code": "YXTT", + "local_code": "YXTT" + }, + { + "id": "309334", + "ident": "YXTW", + "type": "heliport", + "name": "Tamworth Hospital Helipad", + "latitude_deg": "-31.07457", + "longitude_deg": "150.92641", + "elevation_ft": "1356", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Tamworth", + "scheduled_service": "no", + "gps_code": "YXTW", + "local_code": "YXTW" + }, + { + "id": "317136", + "ident": "YXUH", + "type": "heliport", + "name": "Bulahdelah Helicopter Landing Site", + "latitude_deg": "-32.4", + "longitude_deg": "152.2", + "elevation_ft": "13", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Bulahdelah", + "scheduled_service": "no", + "keywords": "YXUH" + }, + { + "id": "354837", + "ident": "YXVL", + "type": "heliport", + "name": "Bowraville Oval Helicopter Landing Site", + "latitude_deg": "-30.647667", + "longitude_deg": "152.848", + "elevation_ft": "46", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Bowraville", + "scheduled_service": "no", + "gps_code": "YXVL" + }, + { + "id": "310103", + "ident": "YXWG", + "type": "heliport", + "name": "Wagga - Duke of Kent Oval Helipad", + "latitude_deg": "-35.11434", + "longitude_deg": "147.3541", + "elevation_ft": "588", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Wagga", + "scheduled_service": "no", + "gps_code": "YXWG", + "local_code": "YXWG" + }, + { + "id": "309327", + "ident": "YXWL", + "type": "heliport", + "name": "Wollongong Hospital Helipad", + "latitude_deg": "-34.42419", + "longitude_deg": "150.8822", + "elevation_ft": "160", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Wollongong", + "scheduled_service": "no", + "gps_code": "YXWL", + "local_code": "YXWL" + }, + { + "id": "429885", + "ident": "YXWM", + "type": "heliport", + "name": "Westmead - Children's Hospital Helipad", + "latitude_deg": "-33.802339", + "longitude_deg": "150.993664", + "elevation_ft": "140", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Westmead", + "scheduled_service": "no", + "gps_code": "YXWM" + }, + { + "id": "311184", + "ident": "YXWT", + "type": "heliport", + "name": "Wellington-Rygate Park Heliport", + "latitude_deg": "-32.5487", + "longitude_deg": "148.9497", + "elevation_ft": "1005", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Wellington", + "scheduled_service": "no", + "gps_code": "YXWT", + "local_code": "YXWT" + }, + { + "id": "310104", + "ident": "YXWW", + "type": "heliport", + "name": "Wee Waa Hospital Helipad", + "latitude_deg": "-30.225", + "longitude_deg": "149.4483", + "elevation_ft": "632", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Wee Waa", + "scheduled_service": "no", + "gps_code": "YXWW", + "local_code": "YXWW" + }, + { + "id": "309326", + "ident": "YXWY", + "type": "heliport", + "name": "Wyong Hospital Helipad", + "latitude_deg": "-33.26025", + "longitude_deg": "151.48069", + "elevation_ft": "94", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Wyong", + "scheduled_service": "no", + "gps_code": "YXWY", + "local_code": "YXWY" + }, + { + "id": "429884", + "ident": "YXYA", + "type": "heliport", + "name": "Yass Hospital Helicopter Landing Site", + "latitude_deg": "-34.854608", + "longitude_deg": "148.908316", + "elevation_ft": "1747", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Yass", + "scheduled_service": "no", + "gps_code": "YXYA", + "keywords": "Jim Beck" + }, + { + "id": "352695", + "ident": "YXYK", + "type": "heliport", + "name": "Yorketown Hospital Helicopter Landing Site", + "latitude_deg": "-35.018889", + "longitude_deg": "137.611667", + "elevation_ft": "89", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Yorketown", + "scheduled_service": "no", + "gps_code": "YXYK" + }, + { + "id": "309325", + "ident": "YXYO", + "type": "heliport", + "name": "Young Hospital Helipad", + "latitude_deg": "-34.32094", + "longitude_deg": "148.28798", + "elevation_ft": "1523", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Young", + "scheduled_service": "no", + "gps_code": "YXYO", + "local_code": "YXYO" + }, + { + "id": "325171", + "ident": "YYA", + "type": "medium_airport", + "name": "Yueyang Sanhe Airport", + "latitude_deg": "29.311699", + "longitude_deg": "113.281574", + "elevation_ft": "230", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-43", + "municipality": "Yueyang (Yueyanglou)", + "scheduled_service": "yes", + "gps_code": "ZGYY", + "iata_code": "YYA", + "local_code": "YYA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yueyang_Sanhe_Airport" + }, + { + "id": "38668", + "ident": "YYAA", + "type": "small_airport", + "name": "Yandama Airport", + "latitude_deg": "-29.664973", + "longitude_deg": "141.413891", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YYAA" + }, + { + "id": "28085", + "ident": "YYAC", + "type": "small_airport", + "name": "Yacamunda Airport", + "latitude_deg": "-21.378643", + "longitude_deg": "147.100201", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YYAC" + }, + { + "id": "28086", + "ident": "YYAG", + "type": "small_airport", + "name": "Yagga Yagga Airport", + "latitude_deg": "-20.966699600219727", + "longitude_deg": "128.08299255371094", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YYAG" + }, + { + "id": "28087", + "ident": "YYAK", + "type": "small_airport", + "name": "Yalkulka Airport", + "latitude_deg": "-16.731384", + "longitude_deg": "145.347425", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YYAK" + }, + { + "id": "32728", + "ident": "YYAL", + "type": "small_airport", + "name": "Yalgoo Airport", + "latitude_deg": "-28.355300903299998", + "longitude_deg": "116.683998108", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Yalgoo", + "scheduled_service": "no", + "gps_code": "YYAL", + "iata_code": "YLG" + }, + { + "id": "28089", + "ident": "YYAS", + "type": "heliport", + "name": "Yass Heliport", + "latitude_deg": "-34.822285", + "longitude_deg": "148.907844", + "elevation_ft": "1603", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "municipality": "Yass", + "scheduled_service": "no", + "gps_code": "YYAS" + }, + { + "id": "28090", + "ident": "YYBE", + "type": "small_airport", + "name": "Yarrabee Mine Airport", + "latitude_deg": "-23.262014", + "longitude_deg": "149.01652", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YYBE" + }, + { + "id": "28091", + "ident": "YYBK", + "type": "heliport", + "name": "Yarra Bank Heliport", + "latitude_deg": "-37.822287", + "longitude_deg": "144.956792", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YYBK" + }, + { + "id": "38669", + "ident": "YYCN", + "type": "closed", + "name": "Yandicoogina Airport", + "latitude_deg": "-22.759700775099997", + "longitude_deg": "119.226997375", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YYCN" + }, + { + "id": "38670", + "ident": "YYDE", + "type": "small_airport", + "name": "Yandee Airport", + "latitude_deg": "-21.33329963684082", + "longitude_deg": "118.86699676513672", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YYDE" + }, + { + "id": "38671", + "ident": "YYDM", + "type": "small_airport", + "name": "Yundamindera Airport", + "latitude_deg": "-29.12063", + "longitude_deg": "122.041475", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Leonora", + "scheduled_service": "no", + "gps_code": "YYDM" + }, + { + "id": "28092", + "ident": "YYEA", + "type": "small_airport", + "name": "Yeaburn Airport", + "latitude_deg": "-37.175904", + "longitude_deg": "145.323056", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YYEA" + }, + { + "id": "38672", + "ident": "YYER", + "type": "small_airport", + "name": "Yerilla Airport", + "latitude_deg": "-29.467599868774414", + "longitude_deg": "121.83000183105469", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YYER" + }, + { + "id": "38673", + "ident": "YYGG", + "type": "small_airport", + "name": "Yagga Yagga Airport", + "latitude_deg": "-20.890600204467773", + "longitude_deg": "127.9489974975586", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YYGG" + }, + { + "id": "32111", + "ident": "YYKI", + "type": "small_airport", + "name": "Yorke Island Airport", + "latitude_deg": "-9.752801", + "longitude_deg": "143.405673", + "elevation_ft": "10", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Yorke Island", + "scheduled_service": "yes", + "gps_code": "YYKI", + "iata_code": "OKR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yorke_Island_Airport", + "keywords": "Masig Island" + }, + { + "id": "38674", + "ident": "YYLD", + "type": "small_airport", + "name": "Yalda Downs Homestead Airport", + "latitude_deg": "-30.26140022277832", + "longitude_deg": "142.9770050048828", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YYLD" + }, + { + "id": "38675", + "ident": "YYLG", + "type": "small_airport", + "name": "Yallalong Homestead Airport", + "latitude_deg": "-27.426300048828125", + "longitude_deg": "115.51799774169922", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YYLG" + }, + { + "id": "28093", + "ident": "YYLR", + "type": "small_airport", + "name": "Yeelirrie Airport", + "latitude_deg": "-27.277060037800002", + "longitude_deg": "120.095672607", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YYLR", + "iata_code": "KYF" + }, + { + "id": "32708", + "ident": "YYMI", + "type": "small_airport", + "name": "Yam Island Airport", + "latitude_deg": "-9.899187", + "longitude_deg": "142.774265", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Yam Island", + "scheduled_service": "yes", + "gps_code": "YYMI", + "iata_code": "XMY" + }, + { + "id": "27185", + "ident": "YYND", + "type": "small_airport", + "name": "Yuendumu Airport", + "latitude_deg": "-22.254199981689453", + "longitude_deg": "131.78199768066406", + "elevation_ft": "2205", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NT", + "scheduled_service": "no", + "gps_code": "YYND", + "iata_code": "YUE" + }, + { + "id": "27186", + "ident": "YYNG", + "type": "medium_airport", + "name": "Young Airport", + "latitude_deg": "-34.25559997558594", + "longitude_deg": "148.2480010986328", + "elevation_ft": "1267", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-NSW", + "scheduled_service": "no", + "gps_code": "YYNG", + "iata_code": "NGA" + }, + { + "id": "38676", + "ident": "YYNR", + "type": "small_airport", + "name": "Yanrey Airport", + "latitude_deg": "-22.516700744628906", + "longitude_deg": "114.80000305175781", + "elevation_ft": "80", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YYNR" + }, + { + "id": "38677", + "ident": "YYOO", + "type": "small_airport", + "name": "Yalymboo Airport", + "latitude_deg": "-31.803300857543945", + "longitude_deg": "136.86000061035156", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YYOO" + }, + { + "id": "28094", + "ident": "YYOR", + "type": "small_airport", + "name": "Yorketown Airport", + "latitude_deg": "-35.003564", + "longitude_deg": "137.619295", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YYOR", + "iata_code": "ORR" + }, + { + "id": "38678", + "ident": "YYRK", + "type": "small_airport", + "name": "York Airport", + "latitude_deg": "-31.855100631713867", + "longitude_deg": "116.79900360107422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YYRK" + }, + { + "id": "28095", + "ident": "YYRM", + "type": "small_airport", + "name": "Yarram Airport", + "latitude_deg": "-38.56669998168945", + "longitude_deg": "146.7550048828125", + "elevation_ft": "15", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YYRM" + }, + { + "id": "38679", + "ident": "YYRN", + "type": "small_airport", + "name": "Yamarna Airport", + "latitude_deg": "-28.15399932861328", + "longitude_deg": "123.6729965209961", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YYRN" + }, + { + "id": "38680", + "ident": "YYRW", + "type": "small_airport", + "name": "Yarlarweelor Airport", + "latitude_deg": "-25.45829963684082", + "longitude_deg": "117.9749984741211", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YYRW" + }, + { + "id": "31792", + "ident": "YYTA", + "type": "small_airport", + "name": "Yalata Mission Airport", + "latitude_deg": "-31.470600128173828", + "longitude_deg": "131.8249969482422", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "municipality": "Yalata Mission", + "scheduled_service": "no", + "gps_code": "YYTA", + "iata_code": "KYI" + }, + { + "id": "38681", + "ident": "YYUM", + "type": "small_airport", + "name": "Yuinmery Airport", + "latitude_deg": "-28.562999725341797", + "longitude_deg": "119.01899719238281", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YYUM" + }, + { + "id": "28096", + "ident": "YYUN", + "type": "small_airport", + "name": "Yunta Airport", + "latitude_deg": "-32.58330154418945", + "longitude_deg": "139.5500030517578", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-SA", + "scheduled_service": "no", + "gps_code": "YYUN" + }, + { + "id": "28097", + "ident": "YYWA", + "type": "small_airport", + "name": "Yowah Airport", + "latitude_deg": "-27.952928", + "longitude_deg": "144.627661", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "scheduled_service": "no", + "gps_code": "YYWA" + }, + { + "id": "28098", + "ident": "YYWE", + "type": "closed", + "name": "Yarrowee Airport", + "latitude_deg": "-37.7400016784668", + "longitude_deg": "143.7530059814453", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YYWE" + }, + { + "id": "27187", + "ident": "YYWG", + "type": "small_airport", + "name": "Yarrawonga Airport", + "latitude_deg": "-36.028900146484375", + "longitude_deg": "146.0290069580078", + "elevation_ft": "423", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-VIC", + "scheduled_service": "no", + "gps_code": "YYWG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yarrawonga_Airport" + }, + { + "id": "351992", + "ident": "YYYA", + "type": "small_airport", + "name": "Mugarinya Airport", + "latitude_deg": "-21.285426", + "longitude_deg": "118.385282", + "elevation_ft": "439", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "municipality": "Yandeyarra Station", + "scheduled_service": "no", + "gps_code": "YYYA" + }, + { + "id": "28099", + "ident": "YZAN", + "type": "small_airport", + "name": "Zanthus Airport", + "latitude_deg": "-31.036351", + "longitude_deg": "123.567889", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-WA", + "scheduled_service": "no", + "gps_code": "YZAN" + }, + { + "id": "324769", + "ident": "YZCE", + "type": "small_airport", + "name": "Churchable Airstrip", + "latitude_deg": "-27.429915", + "longitude_deg": "152.378454", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-QLD", + "municipality": "Churchable", + "scheduled_service": "no", + "gps_code": "YZCE" + }, + { + "id": "28100", + "ident": "YZHN", + "type": "small_airport", + "name": "Zeehan Airport", + "latitude_deg": "-41.888804", + "longitude_deg": "145.350768", + "continent": "OC", + "iso_country": "AU", + "iso_region": "AU-TAS", + "scheduled_service": "no", + "gps_code": "YZHN" + }, + { + "id": "26345", + "ident": "Z13", + "type": "small_airport", + "name": "Akiachak Airport", + "latitude_deg": "60.904800415039", + "longitude_deg": "-161.42199707031", + "elevation_ft": "23", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Akiachak", + "scheduled_service": "yes", + "gps_code": "Z13", + "iata_code": "KKI", + "local_code": "Z13", + "wikipedia_link": "https://en.wikipedia.org/wiki/Akiachak_Airport" + }, + { + "id": "26346", + "ident": "Z14", + "type": "small_airport", + "name": "Tazlina Airport", + "latitude_deg": "62.065943", + "longitude_deg": "-146.459505", + "elevation_ft": "2450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tazlina", + "scheduled_service": "no", + "local_code": "Z14" + }, + { + "id": "26347", + "ident": "Z17", + "type": "small_airport", + "name": "Ophir Airport", + "latitude_deg": "63.145999908447266", + "longitude_deg": "-156.52999877929688", + "elevation_ft": "575", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Ophir", + "scheduled_service": "no", + "gps_code": "Z17", + "local_code": "Z17" + }, + { + "id": "42771", + "ident": "Z19M", + "type": "small_airport", + "name": "Al Abdaliyah Highway Strip", + "latitude_deg": "29.045299530029297", + "longitude_deg": "47.79079818725586", + "elevation_ft": "330", + "continent": "AS", + "iso_country": "KW", + "iso_region": "KW-AH", + "municipality": "Al Abdaliyah", + "scheduled_service": "no", + "gps_code": "Z19M" + }, + { + "id": "44936", + "ident": "Z19O", + "type": "medium_airport", + "name": "Wujah Al Hajar Air Base", + "latitude_deg": "34.281226", + "longitude_deg": "35.680096", + "elevation_ft": "840", + "continent": "AS", + "iso_country": "LB", + "iso_region": "LB-AS", + "municipality": "Hamat", + "scheduled_service": "no", + "local_code": "Z19O", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wujah_Al_Hajar_Air_Base" + }, + { + "id": "26348", + "ident": "Z20", + "type": "seaplane_base", + "name": "Tuntutuliak Seaplane Base", + "latitude_deg": "60.3414993286", + "longitude_deg": "-162.666000366", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Tuntutuliak", + "scheduled_service": "no", + "gps_code": "Z20", + "local_code": "Z20" + }, + { + "id": "39569", + "ident": "Z23Z", + "type": "small_airport", + "name": "Paraguari Airport", + "latitude_deg": "-25.600000381469727", + "longitude_deg": "-57.150001525878906", + "elevation_ft": "500", + "continent": "SA", + "iso_country": "PY", + "iso_region": "PY-9", + "municipality": "Paraguari", + "scheduled_service": "no", + "gps_code": "Z23Z" + }, + { + "id": "45975", + "ident": "Z25", + "type": "small_airport", + "name": "Tripod Airport", + "latitude_deg": "59.262589", + "longitude_deg": "-158.569079", + "elevation_ft": "225", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Aleknagik", + "scheduled_service": "no", + "local_code": "Z25" + }, + { + "id": "26349", + "ident": "Z33", + "type": "seaplane_base", + "name": "Aleknagik Seaplane Base", + "latitude_deg": "59.27399826049805", + "longitude_deg": "-158.62399291992188", + "elevation_ft": "7", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Aleknagik", + "scheduled_service": "no", + "gps_code": "Z33", + "local_code": "Z33" + }, + { + "id": "26350", + "ident": "Z40", + "type": "small_airport", + "name": "Goose Bay Airport", + "latitude_deg": "61.394674", + "longitude_deg": "-149.84534", + "elevation_ft": "78", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Goose Bay", + "scheduled_service": "no", + "local_code": "Z40" + }, + { + "id": "26351", + "ident": "Z41", + "type": "small_airport", + "name": "Lake Hood Airport", + "latitude_deg": "61.186946", + "longitude_deg": "-149.965442", + "elevation_ft": "73", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Anchorage", + "scheduled_service": "no", + "gps_code": "PALH", + "local_code": "LHD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lake_Hood_Seaplane_Base", + "keywords": "Z41, Lake Hood Strip" + }, + { + "id": "26352", + "ident": "Z43", + "type": "seaplane_base", + "name": "Tamgas Harbor Seaplane Base", + "latitude_deg": "55.066083", + "longitude_deg": "-131.543856", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Metlakatla", + "scheduled_service": "no", + "local_code": "Z43" + }, + { + "id": "26353", + "ident": "Z47", + "type": "small_airport", + "name": "Engstrom Field", + "latitude_deg": "64.67909", + "longitude_deg": "-165.299205", + "elevation_ft": "143", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Basin Creek", + "scheduled_service": "no", + "local_code": "Z47" + }, + { + "id": "26354", + "ident": "Z48", + "type": "small_airport", + "name": "Bear Creek 3 Airport", + "latitude_deg": "63.5733160384", + "longitude_deg": "-156.149454117", + "elevation_ft": "740", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Bear Creek", + "scheduled_service": "no", + "gps_code": "Z48", + "iata_code": "BCC", + "local_code": "Z48", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bear_Creek_3_Airport" + }, + { + "id": "26355", + "ident": "Z52", + "type": "small_airport", + "name": "Johnsons Landing Airport", + "latitude_deg": "56.03670120239258", + "longitude_deg": "-160.26600646972656", + "elevation_ft": "130", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Bear Lake", + "scheduled_service": "no", + "gps_code": "Z52", + "local_code": "Z52" + }, + { + "id": "26356", + "ident": "Z55", + "type": "small_airport", + "name": "Lake Louise Airport", + "latitude_deg": "62.293701171875", + "longitude_deg": "-146.57899475097656", + "elevation_ft": "2450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Lake Louise", + "scheduled_service": "no", + "gps_code": "Z55", + "local_code": "Z55" + }, + { + "id": "26357", + "ident": "Z58", + "type": "seaplane_base", + "name": "Hangar Lake Seaplane Base", + "latitude_deg": "60.803324", + "longitude_deg": "-161.727024", + "elevation_ft": "17", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Bethel", + "scheduled_service": "no", + "local_code": "Z58" + }, + { + "id": "26358", + "ident": "Z59", + "type": "seaplane_base", + "name": "Bethel Seaplane Base", + "latitude_deg": "60.782001495399996", + "longitude_deg": "-161.742996216", + "elevation_ft": "15", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Bethel", + "scheduled_service": "no", + "gps_code": "Z59", + "iata_code": "JBT", + "local_code": "Z59", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bethel_Seaplane_Base" + }, + { + "id": "26359", + "ident": "Z71", + "type": "seaplane_base", + "name": "Cape Pole Seaplane Base", + "latitude_deg": "55.9663009644", + "longitude_deg": "-133.79699707", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cape Pole", + "scheduled_service": "no", + "gps_code": "Z71", + "iata_code": "CZP", + "local_code": "Z71" + }, + { + "id": "26360", + "ident": "Z78", + "type": "seaplane_base", + "name": "Chignik Bay Seaplane Base", + "latitude_deg": "56.295600891099994", + "longitude_deg": "-158.401000977", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Chignik", + "scheduled_service": "no", + "gps_code": "Z78", + "iata_code": "KBW", + "local_code": "Z78", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chignik_Bay_Seaplane_Base" + }, + { + "id": "26361", + "ident": "Z81", + "type": "small_airport", + "name": "Salmon Lake Airport", + "latitude_deg": "64.9092025756836", + "longitude_deg": "-165.01300048828125", + "elevation_ft": "490", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Salmon Lake", + "scheduled_service": "no", + "gps_code": "Z81", + "local_code": "Z81" + }, + { + "id": "26362", + "ident": "Z86", + "type": "closed", + "name": "Clearwater Airport", + "latitude_deg": "63.027313", + "longitude_deg": "-147.187185", + "elevation_ft": "2900", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Clearwater", + "scheduled_service": "no", + "keywords": "Z86" + }, + { + "id": "26363", + "ident": "Z87", + "type": "seaplane_base", + "name": "Blinn Lake Seaplane Base", + "latitude_deg": "55.2515983581543", + "longitude_deg": "-162.7530059814453", + "elevation_ft": "50", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Cold Bay", + "scheduled_service": "no", + "gps_code": "Z87", + "local_code": "Z87" + }, + { + "id": "26364", + "ident": "Z90", + "type": "small_airport", + "name": "Stampede Airport", + "latitude_deg": "63.74869918823242", + "longitude_deg": "-150.3300018310547", + "elevation_ft": "1850", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Kantishna", + "scheduled_service": "no", + "gps_code": "Z90", + "local_code": "Z90" + }, + { + "id": "26365", + "ident": "Z91", + "type": "small_airport", + "name": "Birch Creek Airport", + "latitude_deg": "66.2740020752", + "longitude_deg": "-145.824005127", + "elevation_ft": "450", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Birch Creek", + "scheduled_service": "yes", + "gps_code": "Z91", + "iata_code": "KBC", + "local_code": "Z91", + "wikipedia_link": "https://en.wikipedia.org/wiki/Birch_Creek_Airport" + }, + { + "id": "26366", + "ident": "Z92", + "type": "small_airport", + "name": "Harsens Island Airport", + "latitude_deg": "42.589698791503906", + "longitude_deg": "-82.57640075683594", + "elevation_ft": "578", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-MI", + "municipality": "Harsens Island", + "scheduled_service": "no", + "gps_code": "Z92", + "local_code": "Z92" + }, + { + "id": "26367", + "ident": "Z93", + "type": "small_airport", + "name": "Copper Center 2 Airport", + "latitude_deg": "61.943713", + "longitude_deg": "-145.299398", + "elevation_ft": "1150", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Copper Center", + "scheduled_service": "no", + "iata_code": "CZC", + "local_code": "Z93", + "wikipedia_link": "https://en.wikipedia.org/wiki/Copper_Center_Airport" + }, + { + "id": "26368", + "ident": "Z95", + "type": "small_airport", + "name": "Cibecue Airport", + "latitude_deg": "34.001681", + "longitude_deg": "-110.455115", + "elevation_ft": "5037", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AZ", + "municipality": "Cibecue", + "scheduled_service": "no", + "local_code": "Z95" + }, + { + "id": "41141", + "ident": "ZA-0001", + "type": "small_airport", + "name": "Beulah Airport", + "latitude_deg": "-33.905277252197266", + "longitude_deg": "24.95694351196289", + "elevation_ft": "34", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Beulah", + "scheduled_service": "no" + }, + { + "id": "41145", + "ident": "ZA-0002", + "type": "small_airport", + "name": "Bhejane Game Reserve Airport", + "latitude_deg": "-33.1966667175293", + "longitude_deg": "23.934667587280273", + "elevation_ft": "1895", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Willowmore", + "scheduled_service": "no" + }, + { + "id": "27286", + "ident": "ZA-0003", + "type": "small_airport", + "name": "Koppies Airport", + "latitude_deg": "-27.25", + "longitude_deg": "27.549999237060547", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "scheduled_service": "no" + }, + { + "id": "41149", + "ident": "ZA-0004", + "type": "small_airport", + "name": "Brown's Landing Airport", + "latitude_deg": "-32.69652", + "longitude_deg": "28.321643", + "elevation_ft": "300", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Morgan's Bay", + "scheduled_service": "no", + "keywords": "Browns, Morgans Bay, wild coast, morgs, eastern cape, border, east london" + }, + { + "id": "41154", + "ident": "ZA-0005", + "type": "small_airport", + "name": "Blanco Airport", + "latitude_deg": "-32.08333206176758", + "longitude_deg": "26.299999237060547", + "elevation_ft": "4200", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Tarkastad", + "scheduled_service": "no" + }, + { + "id": "41160", + "ident": "ZA-0006", + "type": "small_airport", + "name": "Brosterlea Farm Airport", + "latitude_deg": "-31.28333282470703", + "longitude_deg": "26.566667556762695", + "elevation_ft": "5500", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Brosterlea Farm", + "scheduled_service": "no" + }, + { + "id": "41161", + "ident": "ZA-0007", + "type": "small_airport", + "name": "Stockdale Landing Strip Airport", + "latitude_deg": "-31.245100021362305", + "longitude_deg": "26.298500061035156", + "elevation_ft": "5315", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Alfalfa", + "scheduled_service": "no" + }, + { + "id": "41165", + "ident": "ZA-0008", + "type": "small_airport", + "name": "Venterstad Airport", + "latitude_deg": "-30.775699615478516", + "longitude_deg": "25.787500381469727", + "elevation_ft": "4200", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Venterstad", + "scheduled_service": "no" + }, + { + "id": "41166", + "ident": "ZA-0009", + "type": "small_airport", + "name": "Philippolis Airport", + "latitude_deg": "-30.236791", + "longitude_deg": "25.258439", + "elevation_ft": "4695", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Philippolis", + "scheduled_service": "no", + "keywords": "AG4141" + }, + { + "id": "41169", + "ident": "ZA-0010", + "type": "small_airport", + "name": "Arbeitsgenot Airport", + "latitude_deg": "-28.73590087890625", + "longitude_deg": "27.231800079345703", + "elevation_ft": "4800", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Winburg", + "scheduled_service": "no" + }, + { + "id": "41170", + "ident": "ZA-0011", + "type": "small_airport", + "name": "Brandfort Moreson Airport", + "latitude_deg": "-28.690399", + "longitude_deg": "26.420799", + "elevation_ft": "4647", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Winnie Mandela (Brandfort)", + "scheduled_service": "no" + }, + { + "id": "41171", + "ident": "ZA-0012", + "type": "small_airport", + "name": "Arizona Airport", + "latitude_deg": "-28.453332901000977", + "longitude_deg": "27.524999618530273", + "elevation_ft": "5500", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Senekal", + "scheduled_service": "no" + }, + { + "id": "41172", + "ident": "ZA-0013", + "type": "small_airport", + "name": "Phuthadijhaba Airport", + "latitude_deg": "-28.406665802001953", + "longitude_deg": "28.810832977294922", + "elevation_ft": "5800", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Phuthadijhaba", + "scheduled_service": "no" + }, + { + "id": "41173", + "ident": "ZA-0014", + "type": "small_airport", + "name": "Sterkfontein Airport", + "latitude_deg": "-28.376800537109375", + "longitude_deg": "29.006200790405273", + "elevation_ft": "5479", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Sterkfontein Dam", + "scheduled_service": "no" + }, + { + "id": "41174", + "ident": "ZA-0015", + "type": "small_airport", + "name": "Aldam Airport", + "latitude_deg": "-28.268888473510742", + "longitude_deg": "27.161388397216797", + "elevation_ft": "5105", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Aldam", + "scheduled_service": "no" + }, + { + "id": "41175", + "ident": "ZA-0016", + "type": "small_airport", + "name": "Aero Farm Airport", + "latitude_deg": "-28.22361183166504", + "longitude_deg": "29.115833282470703", + "elevation_ft": "5580", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Harrismith", + "scheduled_service": "no" + }, + { + "id": "41176", + "ident": "ZA-0017", + "type": "small_airport", + "name": "Alberta Airport", + "latitude_deg": "-27.984167098999023", + "longitude_deg": "28.39444351196289", + "elevation_ft": "5540", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Inhoek", + "scheduled_service": "no" + }, + { + "id": "41177", + "ident": "ZA-0018", + "type": "small_airport", + "name": "Bartsrus Airport", + "latitude_deg": "-27.960416793823242", + "longitude_deg": "25.835832595825195", + "elevation_ft": "4200", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Hoopstad", + "scheduled_service": "no" + }, + { + "id": "41179", + "ident": "ZA-0019", + "type": "small_airport", + "name": "Braehead Airport", + "latitude_deg": "-27.680500030517578", + "longitude_deg": "27.25349998474121", + "elevation_ft": "4300", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Kroonstad", + "scheduled_service": "no" + }, + { + "id": "41181", + "ident": "ZA-0020", + "type": "small_airport", + "name": "Anton Fourie Farm Airport", + "latitude_deg": "-27.5", + "longitude_deg": "26.330554962158203", + "elevation_ft": "4300", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Anton Fourie", + "scheduled_service": "no" + }, + { + "id": "41544", + "ident": "ZA-0021", + "type": "heliport", + "name": "Pretoria Central Heliport", + "latitude_deg": "-25.65570068359375", + "longitude_deg": "28.220600128173828", + "elevation_ft": "4087", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Pretoria", + "scheduled_service": "no", + "iata_code": "HPR" + }, + { + "id": "41184", + "ident": "ZA-0022", + "type": "small_airport", + "name": "Appleby Airport", + "latitude_deg": "-27.20133399963379", + "longitude_deg": "26.903499603271484", + "elevation_ft": "4300", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Vijoenskroon", + "scheduled_service": "no" + }, + { + "id": "41185", + "ident": "ZA-0023", + "type": "small_airport", + "name": "Villiers Airport", + "latitude_deg": "-27.049999237060547", + "longitude_deg": "28.600000381469727", + "elevation_ft": "5097", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Villers", + "scheduled_service": "no" + }, + { + "id": "41191", + "ident": "ZA-0024", + "type": "small_airport", + "name": "Sun Valley Airfield", + "latitude_deg": "-26.03333282470703", + "longitude_deg": "27.899999618530273", + "elevation_ft": "5000", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Sun Valley", + "scheduled_service": "no" + }, + { + "id": "41192", + "ident": "ZA-0025", + "type": "small_airport", + "name": "Aero 57 Airport", + "latitude_deg": "-25.903165817260742", + "longitude_deg": "28.082000732421875", + "elevation_ft": "5100", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Monavoni", + "scheduled_service": "no" + }, + { + "id": "41193", + "ident": "ZA-0026", + "type": "small_airport", + "name": "Blue Mountain Valley Airport", + "latitude_deg": "-25.857500076293945", + "longitude_deg": "27.627777099609375", + "elevation_ft": "4150", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Hekpoort", + "scheduled_service": "no" + }, + { + "id": "41194", + "ident": "ZA-0027", + "type": "small_airport", + "name": "Bronkhorstspruit Airport", + "latitude_deg": "-25.77138900756836", + "longitude_deg": "28.726943969726562", + "elevation_ft": "4800", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Bronkhorstspruit", + "scheduled_service": "no" + }, + { + "id": "41195", + "ident": "ZA-0028", + "type": "small_airport", + "name": "Wakkerstroom Airport", + "latitude_deg": "-27.350000381469727", + "longitude_deg": "30.166667938232422", + "elevation_ft": "5848", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Wakkerstroom", + "scheduled_service": "no" + }, + { + "id": "41196", + "ident": "ZA-0029", + "type": "small_airport", + "name": "Amersfoort Airport", + "latitude_deg": "-27.020000457763672", + "longitude_deg": "29.8700008392334", + "elevation_ft": "4500", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Amerspoort", + "scheduled_service": "no" + }, + { + "id": "41197", + "ident": "ZA-0030", + "type": "small_airport", + "name": "Dasville Airport", + "latitude_deg": "-26.816667556762695", + "longitude_deg": "28.46666717529297", + "elevation_ft": "5250", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Grootviei", + "scheduled_service": "no" + }, + { + "id": "41199", + "ident": "ZA-0031", + "type": "small_airport", + "name": "Evander Landing Strip Airport", + "latitude_deg": "-26.489999771118164", + "longitude_deg": "29.079999923706055", + "elevation_ft": "5288", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Evander", + "scheduled_service": "no" + }, + { + "id": "41200", + "ident": "ZA-0032", + "type": "small_airport", + "name": "New Scotland Airport", + "latitude_deg": "-26.299999237060547", + "longitude_deg": "30.733333587646484", + "elevation_ft": "5280", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "New Scotland", + "scheduled_service": "no" + }, + { + "id": "41201", + "ident": "ZA-0033", + "type": "small_airport", + "name": "Mooivlei Airport", + "latitude_deg": "-26.24799919128418", + "longitude_deg": "29.71540069580078", + "elevation_ft": "5600", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Saint Helen", + "scheduled_service": "no" + }, + { + "id": "41202", + "ident": "ZA-0034", + "type": "small_airport", + "name": "Vanggatfontein Airport", + "latitude_deg": "-26.200000762939453", + "longitude_deg": "28.816667556762695", + "elevation_ft": "5100", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "MIddelburg", + "scheduled_service": "no" + }, + { + "id": "41203", + "ident": "ZA-0035", + "type": "small_airport", + "name": "Blesbokfontain Airport", + "latitude_deg": "-26.17569923400879", + "longitude_deg": "29.182199478149414", + "elevation_ft": "5294", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Reedstream Park", + "scheduled_service": "no" + }, + { + "id": "41206", + "ident": "ZA-0036", + "type": "small_airport", + "name": "Forel Airport", + "latitude_deg": "-25.950000762939453", + "longitude_deg": "30.116666793823242", + "elevation_ft": "6464", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Carolina", + "scheduled_service": "no" + }, + { + "id": "300056", + "ident": "ZA-0037", + "type": "small_airport", + "name": "Benics Airport", + "latitude_deg": "-25.8188991547", + "longitude_deg": "29.221700668300002", + "elevation_ft": "5100", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Witbank", + "scheduled_service": "no", + "keywords": "trike, microlight" + }, + { + "id": "299598", + "ident": "ZA-0038", + "type": "small_airport", + "name": "Hippo Pools Airport", + "latitude_deg": "-24.199722222200002", + "longitude_deg": "30.8125", + "elevation_ft": "1145", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Hippo Pools Resort", + "scheduled_service": "no", + "home_link": "http://www.hippopools.co.za", + "keywords": "Lodge,Resort,Fly-in" + }, + { + "id": "41209", + "ident": "ZA-0039", + "type": "small_airport", + "name": "Blackie Swart Airport", + "latitude_deg": "-25.57550048828125", + "longitude_deg": "30.975860595703125", + "elevation_ft": "3300", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Blackie Swart", + "scheduled_service": "no" + }, + { + "id": "41211", + "ident": "ZA-0040", + "type": "small_airport", + "name": "Lavino Airport", + "latitude_deg": "-24.833334", + "longitude_deg": "30.1", + "elevation_ft": "2550", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Lavino", + "scheduled_service": "no" + }, + { + "id": "41212", + "ident": "ZA-0041", + "type": "small_airport", + "name": "Londolozi Airstrip", + "latitude_deg": "-24.808094", + "longitude_deg": "31.504564", + "elevation_ft": "1176", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Sparta", + "scheduled_service": "no", + "keywords": "Malamala West" + }, + { + "id": "41216", + "ident": "ZA-0042", + "type": "small_airport", + "name": "Adamsfontein Airport", + "latitude_deg": "-30.580979", + "longitude_deg": "25.263259", + "elevation_ft": "3970", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Colesberg", + "scheduled_service": "no" + }, + { + "id": "41218", + "ident": "ZA-0043", + "type": "small_airport", + "name": "Bosluispan Airport", + "latitude_deg": "-29.850276947021484", + "longitude_deg": "18.96555519104004", + "elevation_ft": "2874", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Boluispan", + "scheduled_service": "no" + }, + { + "id": "41219", + "ident": "ZA-0044", + "type": "small_airport", + "name": "Bateleur Airport", + "latitude_deg": "-29.139166", + "longitude_deg": "23.648333", + "elevation_ft": "3368", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Maselsfontein", + "scheduled_service": "no", + "keywords": "Lucky Valley Farm" + }, + { + "id": "41220", + "ident": "ZA-0045", + "type": "small_airport", + "name": "John Weston Airport", + "latitude_deg": "-28.733333587646484", + "longitude_deg": "24.66666603088379", + "elevation_ft": "3936", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Kimberley", + "scheduled_service": "no" + }, + { + "id": "41221", + "ident": "ZA-0046", + "type": "small_airport", + "name": "Schmidtsdrif Airport", + "latitude_deg": "-28.66666603088379", + "longitude_deg": "24.03333282470703", + "elevation_ft": "3366", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Schmidtsdrif", + "scheduled_service": "no" + }, + { + "id": "41222", + "ident": "ZA-0047", + "type": "small_airport", + "name": "Augrabies Airport", + "latitude_deg": "-28.627087", + "longitude_deg": "20.324893", + "elevation_ft": "2200", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Augrabies", + "scheduled_service": "no", + "home_link": "http://www.dundilodge.co.za/", + "keywords": "Lodge,Resort,Fly-inn" + }, + { + "id": "41223", + "ident": "ZA-0048", + "type": "small_airport", + "name": "Barkly West Airport", + "latitude_deg": "-28.532047", + "longitude_deg": "24.537843", + "elevation_ft": "3800", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Barkly West", + "scheduled_service": "no", + "keywords": "AG4179" + }, + { + "id": "41224", + "ident": "ZA-0049", + "type": "small_airport", + "name": "Baken Mine Airport", + "latitude_deg": "-28.409250259399414", + "longitude_deg": "16.779722213745117", + "elevation_ft": "135", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Drifsand", + "scheduled_service": "no" + }, + { + "id": "41226", + "ident": "ZA-0050", + "type": "closed", + "name": "Warrenton Airport", + "latitude_deg": "-28.122192", + "longitude_deg": "24.868813", + "elevation_ft": "3798", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Warrenton", + "scheduled_service": "no" + }, + { + "id": "41227", + "ident": "ZA-0051", + "type": "small_airport", + "name": "Bells Bank Airport", + "latitude_deg": "-28.104999542236328", + "longitude_deg": "24.378334045410156", + "elevation_ft": "3875", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Witputs", + "scheduled_service": "no" + }, + { + "id": "41229", + "ident": "ZA-0052", + "type": "small_airport", + "name": "Dippiesfield Airport", + "latitude_deg": "-28.032222747802734", + "longitude_deg": "23.202777862548828", + "elevation_ft": "4500", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Lohatlha", + "scheduled_service": "no" + }, + { + "id": "41230", + "ident": "ZA-0053", + "type": "small_airport", + "name": "Ganspan Airport", + "latitude_deg": "-27.941667556762695", + "longitude_deg": "24.81999969482422", + "elevation_ft": "3778", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Ganspan", + "scheduled_service": "no" + }, + { + "id": "41232", + "ident": "ZA-0054", + "type": "small_airport", + "name": "Askham Airport", + "latitude_deg": "-26.9869441986", + "longitude_deg": "20.7772216797", + "elevation_ft": "2801", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Askham", + "scheduled_service": "no", + "gps_code": "FAAK" + }, + { + "id": "41233", + "ident": "ZA-0055", + "type": "small_airport", + "name": "Barrange Airport", + "latitude_deg": "-26.125", + "longitude_deg": "22.61888885498047", + "elevation_ft": "3300", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Barrange", + "scheduled_service": "no" + }, + { + "id": "41235", + "ident": "ZA-0056", + "type": "small_airport", + "name": "Scottburg Airport", + "latitude_deg": "-30.28569984436035", + "longitude_deg": "30.65690040588379", + "elevation_ft": "196", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Umzinto", + "scheduled_service": "no" + }, + { + "id": "41236", + "ident": "ZA-0057", + "type": "small_airport", + "name": "Diamond Valley Airport", + "latitude_deg": "-30.27199935913086", + "longitude_deg": "29.39739990234375", + "elevation_ft": "4900", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Swartberg", + "scheduled_service": "no" + }, + { + "id": "41238", + "ident": "ZA-0058", + "type": "small_airport", + "name": "Alverstone Airfield", + "latitude_deg": "-29.779722213745117", + "longitude_deg": "30.718334197998047", + "elevation_ft": "2740", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Mpumalanga", + "scheduled_service": "no" + }, + { + "id": "41239", + "ident": "ZA-0059", + "type": "small_airport", + "name": "Baynesfield Estate Airport", + "latitude_deg": "-29.761667251586914", + "longitude_deg": "30.3397216796875", + "elevation_ft": "2772", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Atherstone", + "scheduled_service": "no" + }, + { + "id": "41242", + "ident": "ZA-0060", + "type": "small_airport", + "name": "Ballito Bay (Dolphin Coast) Airport", + "latitude_deg": "-29.488899", + "longitude_deg": "31.179001", + "elevation_ft": "200", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Ballito Bay", + "scheduled_service": "no" + }, + { + "id": "41244", + "ident": "ZA-0061", + "type": "small_airport", + "name": "Clan Airport", + "latitude_deg": "-29.354900360107422", + "longitude_deg": "30.4281005859375", + "elevation_ft": "2180", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "York", + "scheduled_service": "no" + }, + { + "id": "41246", + "ident": "ZA-0062", + "type": "small_airport", + "name": "Amatikulu (Microlight) Airport", + "latitude_deg": "-29.098167419433594", + "longitude_deg": "31.5049991607666", + "elevation_ft": "240", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Amatikulu", + "scheduled_service": "no" + }, + { + "id": "41249", + "ident": "ZA-0063", + "type": "small_airport", + "name": "Amphitheatre Lodge Airport", + "latitude_deg": "-28.639941", + "longitude_deg": "29.147501", + "elevation_ft": "3900", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Ethels Drive", + "scheduled_service": "no" + }, + { + "id": "41250", + "ident": "ZA-0064", + "type": "small_airport", + "name": "Riverview Airport", + "latitude_deg": "-28.433332443237305", + "longitude_deg": "32.150001525878906", + "elevation_ft": "210", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Riverview", + "scheduled_service": "no" + }, + { + "id": "41251", + "ident": "ZA-0065", + "type": "small_airport", + "name": "St Lucia Estuary", + "latitude_deg": "-28.350000381469727", + "longitude_deg": "32.41666793823242", + "elevation_ft": "60", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "St Lucía", + "scheduled_service": "no" + }, + { + "id": "41252", + "ident": "ZA-0066", + "type": "small_airport", + "name": "Battlefields Airport", + "latitude_deg": "-28.131526947021484", + "longitude_deg": "30.290416717529297", + "elevation_ft": "4040", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Dundee", + "scheduled_service": "no" + }, + { + "id": "41256", + "ident": "ZA-0067", + "type": "small_airport", + "name": "Jozini Airport", + "latitude_deg": "-27.350000381469727", + "longitude_deg": "32.13333511352539", + "elevation_ft": "355", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Jozini", + "scheduled_service": "no" + }, + { + "id": "41259", + "ident": "ZA-0068", + "type": "small_airport", + "name": "Bonwa Phala Airport", + "latitude_deg": "-24.886667251586914", + "longitude_deg": "28.047222137451172", + "elevation_ft": "3650", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Bonwa Phala", + "scheduled_service": "no" + }, + { + "id": "41260", + "ident": "ZA-0069", + "type": "small_airport", + "name": "Ulusaba Airport", + "latitude_deg": "-24.7854003906", + "longitude_deg": "31.3549003601", + "elevation_ft": "1263", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Ulusaba", + "scheduled_service": "no", + "gps_code": "FAUS", + "iata_code": "ULX" + }, + { + "id": "41264", + "ident": "ZA-0070", + "type": "small_airport", + "name": "Batavia Airport", + "latitude_deg": "-24.668333053588867", + "longitude_deg": "26.536666870117188", + "elevation_ft": "3195", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Batavia", + "scheduled_service": "no" + }, + { + "id": "41267", + "ident": "ZA-0071", + "type": "small_airport", + "name": "Blyde Canyon Airport", + "latitude_deg": "-24.57088", + "longitude_deg": "30.77329", + "elevation_ft": "4300", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Blyde Canyon", + "scheduled_service": "no" + }, + { + "id": "41268", + "ident": "ZA-0072", + "type": "small_airport", + "name": "Tanda Tula Airport", + "latitude_deg": "-24.533599853499997", + "longitude_deg": "31.2999992371", + "elevation_ft": "1555", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Welverdiend", + "scheduled_service": "no", + "gps_code": "FATD", + "iata_code": "TDT" + }, + { + "id": "41272", + "ident": "ZA-0073", + "type": "small_airport", + "name": "Nederland Airport", + "latitude_deg": "-24.299759", + "longitude_deg": "31.288934", + "elevation_ft": "1298", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Nederland", + "scheduled_service": "no" + }, + { + "id": "41274", + "ident": "ZA-0074", + "type": "small_airport", + "name": "Boulders Game Ranch Airport", + "latitude_deg": "-24.108055114746094", + "longitude_deg": "30.90916633605957", + "elevation_ft": "1500", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Gravelotte", + "scheduled_service": "no" + }, + { + "id": "41275", + "ident": "ZA-0075", + "type": "small_airport", + "name": "Boulders Game Ranch 2 (Microlight) Airport", + "latitude_deg": "-24.086666107177734", + "longitude_deg": "30.843889236450195", + "elevation_ft": "1500", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Gravelotte", + "scheduled_service": "no" + }, + { + "id": "41276", + "ident": "ZA-0076", + "type": "small_airport", + "name": "Ranch Motel Airport", + "latitude_deg": "-24.041000366210938", + "longitude_deg": "29.27589988708496", + "elevation_ft": "4500", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Polokwane", + "scheduled_service": "no" + }, + { + "id": "41277", + "ident": "ZA-0077", + "type": "small_airport", + "name": "Babala Lodge Airport", + "latitude_deg": "-23.328611373901367", + "longitude_deg": "27.60961151123047", + "elevation_ft": "2700", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Fahad Game Reserve", + "scheduled_service": "no" + }, + { + "id": "41278", + "ident": "ZA-0078", + "type": "small_airport", + "name": "Baltimore Airport", + "latitude_deg": "-23.257788", + "longitude_deg": "28.408928", + "elevation_ft": "3203", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Baltimore", + "scheduled_service": "no" + }, + { + "id": "41279", + "ident": "ZA-0079", + "type": "small_airport", + "name": "Bergtop Airport", + "latitude_deg": "-22.917943954467773", + "longitude_deg": "29.457834243774414", + "elevation_ft": "2620", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Waterpoort", + "scheduled_service": "no" + }, + { + "id": "41280", + "ident": "ZA-0080", + "type": "small_airport", + "name": "Swartwater Highway Strip Airport", + "latitude_deg": "-22.840999603271484", + "longitude_deg": "28.20870018005371", + "elevation_ft": "2800", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Swartwater", + "scheduled_service": "no" + }, + { + "id": "41281", + "ident": "ZA-0081", + "type": "small_airport", + "name": "Alldays (Greater Kuduland) Airport", + "latitude_deg": "-22.80380630493164", + "longitude_deg": "28.995750427246094", + "elevation_ft": "2590", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Alldays", + "scheduled_service": "no" + }, + { + "id": "41282", + "ident": "ZA-0082", + "type": "small_airport", + "name": "Alldays Safaris Airport", + "latitude_deg": "-22.667200088500977", + "longitude_deg": "29.315200805664062", + "elevation_ft": "2650", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Alldays", + "scheduled_service": "no" + }, + { + "id": "41283", + "ident": "ZA-0083", + "type": "small_airport", + "name": "Avarel Airport", + "latitude_deg": "-22.579599380493164", + "longitude_deg": "29.968900680541992", + "elevation_ft": "2100", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Mopane", + "scheduled_service": "no" + }, + { + "id": "41287", + "ident": "ZA-0084", + "type": "closed", + "name": "Bospoort Airport", + "latitude_deg": "-26.595556", + "longitude_deg": "26.229221", + "elevation_ft": "5085", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Bospoort", + "scheduled_service": "no" + }, + { + "id": "41290", + "ident": "ZA-0085", + "type": "small_airport", + "name": "Mafeking North Airport", + "latitude_deg": "-25.792057037353516", + "longitude_deg": "25.61103057861328", + "elevation_ft": "4181", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Mafeking", + "scheduled_service": "no" + }, + { + "id": "41291", + "ident": "ZA-0086", + "type": "small_airport", + "name": "Aero Den Airport", + "latitude_deg": "-25.726667404174805", + "longitude_deg": "27.739721298217773", + "elevation_ft": "4050", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Brits", + "scheduled_service": "no" + }, + { + "id": "41292", + "ident": "ZA-0087", + "type": "small_airport", + "name": "Botsalano Airport", + "latitude_deg": "-25.53333282470703", + "longitude_deg": "25.733333587646484", + "elevation_ft": "4659", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Mathase", + "scheduled_service": "no" + }, + { + "id": "41293", + "ident": "ZA-0088", + "type": "small_airport", + "name": "Beestekraal Airport", + "latitude_deg": "-25.299999237060547", + "longitude_deg": "27.53333282470703", + "elevation_ft": "3200", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Massikier", + "scheduled_service": "no" + }, + { + "id": "41294", + "ident": "ZA-0089", + "type": "small_airport", + "name": "Lobatse Southeast Airport", + "latitude_deg": "-25.246200561523438", + "longitude_deg": "25.881900787353516", + "elevation_ft": "3742", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Nkwedumang", + "scheduled_service": "no" + }, + { + "id": "41299", + "ident": "ZA-0090", + "type": "small_airport", + "name": "Assegaay Bosch Game Lodge Airport", + "latitude_deg": "-33.760250091552734", + "longitude_deg": "21.547222137451172", + "elevation_ft": "620", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Vanwyksdorp", + "scheduled_service": "no" + }, + { + "id": "41300", + "ident": "ZA-0091", + "type": "small_airport", + "name": "Altona Airport", + "latitude_deg": "-33.707637786865234", + "longitude_deg": "18.646249771118164", + "elevation_ft": "261", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Philadelphia", + "scheduled_service": "no" + }, + { + "id": "41308", + "ident": "ZA-0092", + "type": "small_airport", + "name": "Holrivier Airport", + "latitude_deg": "-31.566667556762695", + "longitude_deg": "18.383333206176758", + "elevation_ft": "225", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Viermuisklip", + "scheduled_service": "no" + }, + { + "id": "41309", + "ident": "ZA-0093", + "type": "small_airport", + "name": "Britstown Airport", + "latitude_deg": "-30.58333396911621", + "longitude_deg": "23.516666412353516", + "elevation_ft": "3500", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Britstown", + "scheduled_service": "no" + }, + { + "id": "41603", + "ident": "ZA-0094", + "type": "small_airport", + "name": "Hazyview Airport", + "latitude_deg": "-25.050100326538086", + "longitude_deg": "31.131900787353516", + "elevation_ft": "1810", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Hazyview", + "scheduled_service": "no", + "iata_code": "HZV" + }, + { + "id": "41604", + "ident": "ZA-0095", + "type": "small_airport", + "name": "Khoka Moya Airport", + "latitude_deg": "-24.593000411987305", + "longitude_deg": "31.41510009765625", + "elevation_ft": "1440", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Khoka Moya", + "scheduled_service": "no", + "iata_code": "KHO" + }, + { + "id": "41605", + "ident": "ZA-0096", + "type": "small_airport", + "name": "Mkambati Airport", + "latitude_deg": "-31.2849", + "longitude_deg": "29.9884", + "elevation_ft": "560", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Mkambati", + "scheduled_service": "no", + "iata_code": "MBM" + }, + { + "id": "41606", + "ident": "ZA-0097", + "type": "small_airport", + "name": "Inyati Airport", + "latitude_deg": "-24.777700424194336", + "longitude_deg": "31.385499954223633", + "elevation_ft": "1245", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Inyati", + "scheduled_service": "no", + "iata_code": "INY" + }, + { + "id": "41607", + "ident": "ZA-0098", + "type": "small_airport", + "name": "Tshipise Airport", + "latitude_deg": "-22.619300842285156", + "longitude_deg": "30.175600051879883", + "elevation_ft": "1786", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Tshipise", + "scheduled_service": "no", + "iata_code": "TSD" + }, + { + "id": "41843", + "ident": "ZA-0099", + "type": "small_airport", + "name": "Holbank Airport", + "latitude_deg": "-26.570999145507812", + "longitude_deg": "30.243000030517578", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "scheduled_service": "no" + }, + { + "id": "41844", + "ident": "ZA-0100", + "type": "small_airport", + "name": "Bapsfontein Airport", + "latitude_deg": "-25.99188889", + "longitude_deg": "28.41583333", + "elevation_ft": "5292", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Bapsfontein", + "scheduled_service": "no", + "keywords": "FA0004" + }, + { + "id": "41845", + "ident": "ZA-0101", + "type": "small_airport", + "name": "Sappi / Ngodwana", + "latitude_deg": "-25.58867835998535", + "longitude_deg": "30.622364044189453", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "scheduled_service": "no" + }, + { + "id": "300640", + "ident": "ZA-0102", + "type": "closed", + "name": "Castle Bromwich Aerodrome/RAF Castle Bromwich", + "latitude_deg": "52.517222", + "longitude_deg": "-1.786667", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Warwickshire", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/RAF_Castle_Bromwich" + }, + { + "id": "29723", + "ident": "ZA-0103", + "type": "closed", + "name": "Former Bredasdorp Airport", + "latitude_deg": "-34.665", + "longitude_deg": "20.0628", + "elevation_ft": "30", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Bredasdorp", + "scheduled_service": "no" + }, + { + "id": "41306", + "ident": "ZA-0104", + "type": "small_airport", + "name": "Kagga Kamma Airport", + "latitude_deg": "-32.732359", + "longitude_deg": "19.540073", + "elevation_ft": "3494", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Kagga Kamma Private Game Reserve", + "scheduled_service": "no" + }, + { + "id": "299614", + "ident": "ZA-0105", + "type": "small_airport", + "name": "Aviators Paradise Field", + "latitude_deg": "-25.69389", + "longitude_deg": "27.782507", + "elevation_ft": "3800", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "scheduled_service": "no", + "home_link": "http://www.aviatorsparadise.co.za/" + }, + { + "id": "300057", + "ident": "ZA-0106", + "type": "small_airport", + "name": "Benics Airport", + "latitude_deg": "-25.8188991547", + "longitude_deg": "29.221700668300002", + "elevation_ft": "5100", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Witbank", + "scheduled_service": "no", + "keywords": "trike, microlight" + }, + { + "id": "300670", + "ident": "ZA-0107", + "type": "closed", + "name": "Robben Island Airstrip", + "latitude_deg": "-33.800404", + "longitude_deg": "18.363733", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Cape Town", + "scheduled_service": "no" + }, + { + "id": "308162", + "ident": "ZA-0108", + "type": "small_airport", + "name": "Bethal Airport", + "latitude_deg": "-26.480902", + "longitude_deg": "29.466671", + "elevation_ft": "5475", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Bethal", + "scheduled_service": "no" + }, + { + "id": "308195", + "ident": "ZA-0109", + "type": "small_airport", + "name": "Bloemhof Airport", + "latitude_deg": "-27.6094", + "longitude_deg": "25.5794", + "elevation_ft": "4127", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Bloemhof", + "scheduled_service": "no" + }, + { + "id": "309043", + "ident": "ZA-0110", + "type": "small_airport", + "name": "Panorama Airfield", + "latitude_deg": "-26.329316", + "longitude_deg": "28.068469", + "elevation_ft": "5000", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Alberton", + "scheduled_service": "no", + "local_code": "PAN" + }, + { + "id": "310576", + "ident": "ZA-0111", + "type": "small_airport", + "name": "Kudu Private Nature Reserve", + "latitude_deg": "-24.995", + "longitude_deg": "30.403333333299997", + "elevation_ft": "4580", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "scheduled_service": "no" + }, + { + "id": "310578", + "ident": "ZA-0112", + "type": "small_airport", + "name": "Fly Inn Estate", + "latitude_deg": "-25.9711496926", + "longitude_deg": "28.3502766059", + "elevation_ft": "5300", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "scheduled_service": "no" + }, + { + "id": "310582", + "ident": "ZA-0113", + "type": "small_airport", + "name": "Sunset Shores Airfield", + "latitude_deg": "-26.851201", + "longitude_deg": "28.198428", + "elevation_ft": "4955", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Sunset Shores", + "scheduled_service": "no", + "keywords": "Hilton Head Airstrip" + }, + { + "id": "310585", + "ident": "ZA-0114", + "type": "small_airport", + "name": "Zebula Airstrip", + "latitude_deg": "-24.7567", + "longitude_deg": "27.9691", + "elevation_ft": "4209", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Bela-Bela", + "scheduled_service": "no", + "home_link": "http://www.zebula.co.za/content.aspx?id=170", + "keywords": "Zebula Golf Estate & Spa" + }, + { + "id": "312261", + "ident": "ZA-0115", + "type": "small_airport", + "name": "Knysna / High Way Airfield", + "latitude_deg": "-33.950756", + "longitude_deg": "22.979482", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Knysna", + "scheduled_service": "no" + }, + { + "id": "312610", + "ident": "ZA-0116", + "type": "small_airport", + "name": "Pumba Airstrip", + "latitude_deg": "-33.391911", + "longitude_deg": "26.346392", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Nelson Mandela Bay", + "scheduled_service": "no", + "home_link": "http://www.pumbagamereserve.co.za/amenities" + }, + { + "id": "312611", + "ident": "ZA-0117", + "type": "heliport", + "name": "Pumba Helipad", + "latitude_deg": "-33.387799", + "longitude_deg": "26.410595", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Nelson Mandela Bay", + "scheduled_service": "no", + "home_link": "http://www.pumbagamereserve.co.za/amenities" + }, + { + "id": "312612", + "ident": "ZA-0118", + "type": "closed", + "name": "Simon's Town Airstrip", + "latitude_deg": "-34.206585", + "longitude_deg": "18.427413", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Cape Town", + "scheduled_service": "no" + }, + { + "id": "312624", + "ident": "ZA-0119", + "type": "heliport", + "name": "Cape Town Waterfront Heliport", + "latitude_deg": "-33.901018", + "longitude_deg": "18.425936", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Cape Town", + "scheduled_service": "no", + "gps_code": "FADW" + }, + { + "id": "312691", + "ident": "ZA-0120", + "type": "small_airport", + "name": "Morningstar Airfield", + "latitude_deg": "-33.758944", + "longitude_deg": "18.548195", + "elevation_ft": "200", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Cape Town", + "scheduled_service": "no", + "home_link": "http://www.wcmc.co.za" + }, + { + "id": "314349", + "ident": "ZA-0121", + "type": "closed", + "name": "Munster Airfield", + "latitude_deg": "-31.0033", + "longitude_deg": "30.2487", + "elevation_ft": "180", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Glenmore Beach", + "scheduled_service": "no" + }, + { + "id": "315404", + "ident": "ZA-0122", + "type": "small_airport", + "name": "Au Beep Flats Airport", + "latitude_deg": "-28.1081", + "longitude_deg": "16.8936", + "elevation_ft": "190", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Sendelingsdrif", + "scheduled_service": "no" + }, + { + "id": "315406", + "ident": "ZA-0123", + "type": "small_airport", + "name": "Vanrhynsdorp Airport", + "latitude_deg": "-31.5943", + "longitude_deg": "18.7468", + "elevation_ft": "490", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Vanrhynsdorp", + "scheduled_service": "no" + }, + { + "id": "315407", + "ident": "ZA-0124", + "type": "small_airport", + "name": "Doringbaai Airstrip", + "latitude_deg": "-31.8057", + "longitude_deg": "18.2384", + "elevation_ft": "130", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Doringbaai", + "scheduled_service": "no", + "keywords": "Thorn Bay" + }, + { + "id": "315408", + "ident": "ZA-0125", + "type": "small_airport", + "name": "Papendorp Airport", + "latitude_deg": "-31.6736", + "longitude_deg": "18.1737", + "elevation_ft": "260", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Papendorp", + "scheduled_service": "no" + }, + { + "id": "315409", + "ident": "ZA-0126", + "type": "small_airport", + "name": "Monosite Airfield", + "latitude_deg": "-31.1227", + "longitude_deg": "18.6095", + "elevation_ft": "940", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Nuwerus", + "scheduled_service": "no" + }, + { + "id": "315410", + "ident": "ZA-0127", + "type": "small_airport", + "name": "Skaapvlei Airport", + "latitude_deg": "-31.4996", + "longitude_deg": "18.0643", + "elevation_ft": "420", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Skaapvlei Farmstead", + "scheduled_service": "no" + }, + { + "id": "315411", + "ident": "ZA-0128", + "type": "closed", + "name": "Garies Airport", + "latitude_deg": "-30.6075", + "longitude_deg": "17.9039", + "elevation_ft": "1348", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Garies", + "scheduled_service": "no" + }, + { + "id": "315416", + "ident": "ZA-0129", + "type": "small_airport", + "name": "Hondeklip Bay Airstrip", + "latitude_deg": "-30.3366", + "longitude_deg": "17.2896", + "elevation_ft": "100", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Hondeklip Bay", + "scheduled_service": "no", + "keywords": "Hondeklipbaai" + }, + { + "id": "315418", + "ident": "ZA-0130", + "type": "small_airport", + "name": "Gamoep Airstrip", + "latitude_deg": "-29.9214", + "longitude_deg": "18.4237", + "elevation_ft": "3140", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Gamoep", + "scheduled_service": "no" + }, + { + "id": "315419", + "ident": "ZA-0131", + "type": "small_airport", + "name": "Nababiep Airport", + "latitude_deg": "-29.524", + "longitude_deg": "17.781", + "elevation_ft": "2830", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Nababeep", + "scheduled_service": "no", + "keywords": "Nababeep" + }, + { + "id": "315420", + "ident": "ZA-0132", + "type": "small_airport", + "name": "Buffels River Airport", + "latitude_deg": "-29.6265", + "longitude_deg": "17.4522", + "elevation_ft": "615", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Buffelsbank", + "scheduled_service": "no" + }, + { + "id": "315421", + "ident": "ZA-0133", + "type": "small_airport", + "name": "Spektakel Airport", + "latitude_deg": "-29.6678", + "longitude_deg": "17.6008", + "elevation_ft": "615", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Spektakel", + "scheduled_service": "no" + }, + { + "id": "315423", + "ident": "ZA-0134", + "type": "small_airport", + "name": "Annakop Airport", + "latitude_deg": "-29.1057", + "longitude_deg": "19.0791", + "elevation_ft": "2528", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Annakop", + "scheduled_service": "no" + }, + { + "id": "317509", + "ident": "ZA-0135", + "type": "closed", + "name": "Nossob Airport", + "latitude_deg": "-25.4316", + "longitude_deg": "20.5975", + "elevation_ft": "3200", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Nossob Rest Camp", + "scheduled_service": "no" + }, + { + "id": "317512", + "ident": "ZA-0136", + "type": "small_airport", + "name": "Kirstonia Airport", + "latitude_deg": "-25.4681", + "longitude_deg": "23.6971", + "elevation_ft": "3455", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Bray", + "scheduled_service": "no" + }, + { + "id": "317619", + "ident": "ZA-0137", + "type": "small_airport", + "name": "Treverton College Airstrip", + "latitude_deg": "-29.1944", + "longitude_deg": "30.0149", + "elevation_ft": "4635", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Mooi River", + "scheduled_service": "no" + }, + { + "id": "317620", + "ident": "ZA-0138", + "type": "small_airport", + "name": "Singita Safari Lodge Airport", + "latitude_deg": "-24.801985", + "longitude_deg": "31.42194", + "elevation_ft": "1365", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Singita Safari Lodge", + "scheduled_service": "no", + "gps_code": "FASP", + "iata_code": "SSX" + }, + { + "id": "318474", + "ident": "ZA-0139", + "type": "small_airport", + "name": "Tosca Airport", + "latitude_deg": "-25.875702", + "longitude_deg": "23.962922", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Tosca", + "scheduled_service": "no" + }, + { + "id": "318475", + "ident": "ZA-0140", + "type": "heliport", + "name": "Kuruman Hospital Heliport", + "latitude_deg": "-27.459904", + "longitude_deg": "23.443762", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Kuruman", + "scheduled_service": "no" + }, + { + "id": "318835", + "ident": "ZA-0141", + "type": "small_airport", + "name": "Groblershoop Airport", + "latitude_deg": "-28.912138", + "longitude_deg": "21.992947", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Groblershoop", + "scheduled_service": "no" + }, + { + "id": "318836", + "ident": "ZA-0142", + "type": "small_airport", + "name": "Hopetown Airport", + "latitude_deg": "-29.630074", + "longitude_deg": "24.095224", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Hopetown", + "scheduled_service": "no" + }, + { + "id": "318837", + "ident": "ZA-0143", + "type": "small_airport", + "name": "Orania Airport", + "latitude_deg": "-29.816521", + "longitude_deg": "24.394959", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Orania", + "scheduled_service": "no" + }, + { + "id": "318838", + "ident": "ZA-0144", + "type": "small_airport", + "name": "Luckhof Airport", + "latitude_deg": "-29.737988", + "longitude_deg": "24.780042", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Luckhof", + "scheduled_service": "no" + }, + { + "id": "318839", + "ident": "ZA-0145", + "type": "small_airport", + "name": "Jacobsdal Airport", + "latitude_deg": "-29.11701", + "longitude_deg": "24.785856", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Jacobsdal", + "scheduled_service": "no" + }, + { + "id": "318840", + "ident": "ZA-0146", + "type": "small_airport", + "name": "Griekwastad Airport", + "latitude_deg": "-28.832734", + "longitude_deg": "23.27354", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Griekwastad", + "scheduled_service": "no" + }, + { + "id": "318841", + "ident": "ZA-0147", + "type": "small_airport", + "name": "Lady Grey Golf Course Airstrip", + "latitude_deg": "-30.706581", + "longitude_deg": "27.208231", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Lady Grey", + "scheduled_service": "no" + }, + { + "id": "318842", + "ident": "ZA-0148", + "type": "small_airport", + "name": "Hanover Airport", + "latitude_deg": "-31.075719", + "longitude_deg": "24.452623", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Hanover", + "scheduled_service": "no" + }, + { + "id": "318843", + "ident": "ZA-0149", + "type": "small_airport", + "name": "Vosburg Airport", + "latitude_deg": "-30.588342", + "longitude_deg": "22.894196", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Vosburg", + "scheduled_service": "no" + }, + { + "id": "318845", + "ident": "ZA-0150", + "type": "small_airport", + "name": "Van Zylsrus Airport", + "latitude_deg": "-26.887344", + "longitude_deg": "22.06304", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Van Zylsrus", + "scheduled_service": "no" + }, + { + "id": "324962", + "ident": "ZA-0151", + "type": "small_airport", + "name": "Leeukop Farm Airfield", + "latitude_deg": "-26.866842", + "longitude_deg": "28.072443", + "elevation_ft": "4954", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Deneysville", + "scheduled_service": "no", + "keywords": "leeukop,deneysville,vaal,free state," + }, + { + "id": "324963", + "ident": "ZA-0152", + "type": "small_airport", + "name": "Vaal Dam Airfield", + "latitude_deg": "-26.922516", + "longitude_deg": "28.165097", + "elevation_ft": "5000", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Deneysville", + "scheduled_service": "no", + "keywords": "vaal, dam, deneysville,free state" + }, + { + "id": "326497", + "ident": "ZA-0153", + "type": "small_airport", + "name": "Elandspad Airfield", + "latitude_deg": "-34.433548", + "longitude_deg": "20.722225", + "elevation_ft": "293", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "scheduled_service": "no" + }, + { + "id": "323205", + "ident": "ZA-0154", + "type": "small_airport", + "name": "Shingwedzi Camp Airstrip", + "latitude_deg": "-23.114988", + "longitude_deg": "31.427508", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Shingwedzi", + "scheduled_service": "no" + }, + { + "id": "323206", + "ident": "ZA-0155", + "type": "small_airport", + "name": "Letaba Rest Camp Airstrip", + "latitude_deg": "-23.833534", + "longitude_deg": "31.570522", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "scheduled_service": "no" + }, + { + "id": "323207", + "ident": "ZA-0156", + "type": "small_airport", + "name": "Pafuri Camp Airstrip", + "latitude_deg": "-22.415096", + "longitude_deg": "31.213011", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Pafuri", + "scheduled_service": "no" + }, + { + "id": "323208", + "ident": "ZA-0157", + "type": "small_airport", + "name": "Mutele-Masisi Airport", + "latitude_deg": "-22.507196", + "longitude_deg": "30.891882", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Mutele", + "scheduled_service": "no" + }, + { + "id": "326499", + "ident": "ZA-0158", + "type": "closed", + "name": "Old George Airfield", + "latitude_deg": "-33.975", + "longitude_deg": "22.418302", + "elevation_ft": "689", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "George", + "scheduled_service": "no" + }, + { + "id": "331866", + "ident": "ZA-0159", + "type": "small_airport", + "name": "SKA SA Karoo Landing Strip", + "latitude_deg": "-30.6938", + "longitude_deg": "21.4608", + "elevation_ft": "3427", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Carnarvon", + "scheduled_service": "no" + }, + { + "id": "332375", + "ident": "ZA-0160", + "type": "closed", + "name": "Chalumna River Airstrip", + "latitude_deg": "-33.21", + "longitude_deg": "27.572", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Kayser's Beach", + "scheduled_service": "no" + }, + { + "id": "330312", + "ident": "ZA-0161", + "type": "small_airport", + "name": "Klipriver Airfield", + "latitude_deg": "-26.475684", + "longitude_deg": "28.111032", + "elevation_ft": "5001", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Midvaal", + "scheduled_service": "no" + }, + { + "id": "330555", + "ident": "ZA-0162", + "type": "small_airport", + "name": "Bingelela", + "latitude_deg": "-28.711116", + "longitude_deg": "29.331242", + "elevation_ft": "3731", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Bergville", + "scheduled_service": "no", + "home_link": "https://www.bingelela.co.za/", + "keywords": "Sling aircraft, Places to eat, flyin, breakfast, Bergville. Accomodation" + }, + { + "id": "333001", + "ident": "ZA-0163", + "type": "small_airport", + "name": "Kalahari Oryx", + "latitude_deg": "-28.421977", + "longitude_deg": "22.200966", + "elevation_ft": "2880", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Upington", + "scheduled_service": "no", + "keywords": "Tweepoort" + }, + { + "id": "337687", + "ident": "ZA-0164", + "type": "small_airport", + "name": "Vlakteplaas Airstrip", + "latitude_deg": "-33.969025", + "longitude_deg": "24.939802", + "elevation_ft": "216", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Jeffreys Bay", + "scheduled_service": "no", + "home_link": "http://www.skydivejeffreysbay.co.za/vlakteplaas" + }, + { + "id": "340246", + "ident": "ZA-0165", + "type": "small_airport", + "name": "Manzengwenya Airstrip", + "latitude_deg": "-27.25942", + "longitude_deg": "32.7522", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Manzengwenya", + "scheduled_service": "no" + }, + { + "id": "340247", + "ident": "ZA-0166", + "type": "small_airport", + "name": "Sodwana Airstrip", + "latitude_deg": "-27.56774", + "longitude_deg": "32.65322", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Sodwana Bay", + "scheduled_service": "no" + }, + { + "id": "340248", + "ident": "ZA-0167", + "type": "heliport", + "name": "Netcare uMhlanga Hospital Helipad", + "latitude_deg": "-29.72751", + "longitude_deg": "31.06868", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "uMhlanga", + "scheduled_service": "no" + }, + { + "id": "340249", + "ident": "ZA-0168", + "type": "heliport", + "name": "Intertherm Durban Heliport", + "latitude_deg": "-29.74968", + "longitude_deg": "31.02946", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Durban North", + "scheduled_service": "no" + }, + { + "id": "331107", + "ident": "ZA-0169", + "type": "small_airport", + "name": "Lekoa Airstrip", + "latitude_deg": "-26.9457", + "longitude_deg": "28.7136", + "elevation_ft": "5085", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Herbstfontein", + "scheduled_service": "no", + "keywords": "FALEKOA" + }, + { + "id": "340250", + "ident": "ZA-0170", + "type": "heliport", + "name": "King Dinizulu Hospital Helipad", + "latitude_deg": "-29.82198", + "longitude_deg": "30.98905", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Durban", + "scheduled_service": "no" + }, + { + "id": "340251", + "ident": "ZA-0171", + "type": "heliport", + "name": "Life Westville Hospital Helipad", + "latitude_deg": "-29.85098", + "longitude_deg": "30.93211", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Westville", + "scheduled_service": "no" + }, + { + "id": "340252", + "ident": "ZA-0172", + "type": "heliport", + "name": "Life Entabeni Hospital Helipad", + "latitude_deg": "-29.85551", + "longitude_deg": "30.98743", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Durban", + "scheduled_service": "no" + }, + { + "id": "340253", + "ident": "ZA-0173", + "type": "heliport", + "name": "Inkosi Albert Luthuli Central Hospital Helipad", + "latitude_deg": "-29.87386", + "longitude_deg": "30.95876", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Durban", + "scheduled_service": "no" + }, + { + "id": "340254", + "ident": "ZA-0174", + "type": "heliport", + "name": "King Edward VIII Hospital Helipad", + "latitude_deg": "-29.8822", + "longitude_deg": "30.98953", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Durban", + "scheduled_service": "no" + }, + { + "id": "340255", + "ident": "ZA-0175", + "type": "heliport", + "name": "Wentworth Hospital Helipad", + "latitude_deg": "-29.9329", + "longitude_deg": "30.98915", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Bluff", + "scheduled_service": "no" + }, + { + "id": "340257", + "ident": "ZA-0176", + "type": "small_airport", + "name": "Scottburgh Airfield", + "latitude_deg": "-30.30557", + "longitude_deg": "30.736022", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Scottburgh", + "scheduled_service": "no" + }, + { + "id": "340258", + "ident": "ZA-0177", + "type": "small_airport", + "name": "Delta Golf Airstrip", + "latitude_deg": "-30.773168", + "longitude_deg": "30.423876", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Port Shepstone", + "scheduled_service": "no" + }, + { + "id": "340259", + "ident": "ZA-0178", + "type": "closed", + "name": "Port Grosvenor Airfield", + "latitude_deg": "-31.371355", + "longitude_deg": "29.911104", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Port Grosvenor", + "scheduled_service": "no" + }, + { + "id": "340260", + "ident": "ZA-0179", + "type": "small_airport", + "name": "The Haven Airstrip", + "latitude_deg": "-32.242606", + "longitude_deg": "28.910072", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Mbhashe", + "scheduled_service": "no" + }, + { + "id": "340261", + "ident": "ZA-0180", + "type": "small_airport", + "name": "Whats Landing Airport", + "latitude_deg": "-32.9019", + "longitude_deg": "28.0491", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Kwelega", + "scheduled_service": "no" + }, + { + "id": "340262", + "ident": "ZA-0181", + "type": "small_airport", + "name": "Kwelega Road Airstrip", + "latitude_deg": "-32.905791", + "longitude_deg": "28.039851", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Kwelega", + "scheduled_service": "no" + }, + { + "id": "340263", + "ident": "ZA-0182", + "type": "small_airport", + "name": "Wings Park Airfield", + "latitude_deg": "-32.8248", + "longitude_deg": "27.83568", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "East London", + "scheduled_service": "no" + }, + { + "id": "340264", + "ident": "ZA-0183", + "type": "small_airport", + "name": "Mtwentwe Farm Airfield", + "latitude_deg": "-32.74585", + "longitude_deg": "28.22815", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Haga Haga", + "scheduled_service": "no" + }, + { + "id": "340265", + "ident": "ZA-0184", + "type": "small_airport", + "name": "Haga Haga Airfield", + "latitude_deg": "-32.75634", + "longitude_deg": "28.23044", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Haga Haga", + "scheduled_service": "no" + }, + { + "id": "340266", + "ident": "ZA-0185", + "type": "small_airport", + "name": "Seaview Airport", + "latitude_deg": "-34.0011", + "longitude_deg": "25.3518", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Gqeberha (Port Elizabeth)", + "scheduled_service": "no" + }, + { + "id": "340267", + "ident": "ZA-0186", + "type": "small_airport", + "name": "Stanley Island Airstrip", + "latitude_deg": "-34.0114", + "longitude_deg": "23.3992", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Keurboomstrand", + "scheduled_service": "no" + }, + { + "id": "340268", + "ident": "ZA-0187", + "type": "small_airport", + "name": "Dudley's Field", + "latitude_deg": "-34.0473", + "longitude_deg": "23.3033", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "KwaNokuthula", + "scheduled_service": "no" + }, + { + "id": "340269", + "ident": "ZA-0188", + "type": "small_airport", + "name": "Bosrivier Airstrip", + "latitude_deg": "-34.0293", + "longitude_deg": "23.2907", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "KwaNokuthula", + "scheduled_service": "no" + }, + { + "id": "340270", + "ident": "ZA-0189", + "type": "small_airport", + "name": "Leppan Airfield", + "latitude_deg": "-33.939568", + "longitude_deg": "22.66619", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "George", + "scheduled_service": "no", + "keywords": "Peter Le Pan" + }, + { + "id": "340271", + "ident": "ZA-0190", + "type": "closed", + "name": "Mud Flats SANPARKS Airstrip", + "latitude_deg": "-34.053237", + "longitude_deg": "23.066045", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Knysna", + "scheduled_service": "no" + }, + { + "id": "340272", + "ident": "ZA-0191", + "type": "small_airport", + "name": "Bosbokduin Airstrip", + "latitude_deg": "-34.3956", + "longitude_deg": "21.4017", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Still Bay", + "scheduled_service": "no" + }, + { + "id": "340273", + "ident": "ZA-0192", + "type": "small_airport", + "name": "Pearly Beach Airstrip", + "latitude_deg": "-34.6301", + "longitude_deg": "19.4758", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Pearly Beach", + "scheduled_service": "no" + }, + { + "id": "340274", + "ident": "ZA-0193", + "type": "heliport", + "name": "Robben Island Heliport", + "latitude_deg": "-33.803255", + "longitude_deg": "18.366981", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Cape Town", + "scheduled_service": "no" + }, + { + "id": "340275", + "ident": "ZA-0194", + "type": "closed", + "name": "Wingfield Air Base", + "latitude_deg": "-33.90696", + "longitude_deg": "18.53043", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Cape Town", + "scheduled_service": "no" + }, + { + "id": "340277", + "ident": "ZA-0195", + "type": "small_airport", + "name": "Contermanskloof Airstrip", + "latitude_deg": "-33.8025", + "longitude_deg": "18.5799", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Cape Town", + "scheduled_service": "no" + }, + { + "id": "340278", + "ident": "ZA-0196", + "type": "small_airport", + "name": "Stompneusbaai Airport", + "latitude_deg": "-32.723", + "longitude_deg": "17.9704", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Stompneusbaai", + "scheduled_service": "no" + }, + { + "id": "340279", + "ident": "ZA-0197", + "type": "small_airport", + "name": "Lambert's Bay Airfield", + "latitude_deg": "-32.1018", + "longitude_deg": "18.336", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Lambert's Bay", + "scheduled_service": "no" + }, + { + "id": "340280", + "ident": "ZA-0198", + "type": "closed", + "name": "Voelklip Airfield", + "latitude_deg": "-31.3567", + "longitude_deg": "17.9214", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Matzikama", + "scheduled_service": "no" + }, + { + "id": "340281", + "ident": "ZA-0199", + "type": "small_airport", + "name": "Port Nolloth Airport", + "latitude_deg": "-29.235", + "longitude_deg": "16.8728", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Port Nolloth", + "scheduled_service": "no" + }, + { + "id": "340419", + "ident": "ZA-0200", + "type": "heliport", + "name": "Marion Research Station Heliport", + "latitude_deg": "-46.875999", + "longitude_deg": "37.857356", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Cape Town (Marion Island)", + "scheduled_service": "no", + "home_link": "https://www.sanap.ac.za/about/gallery-marion-island", + "wikipedia_link": "https://en.wikipedia.org/wiki/Prince_Edward_Islands#Marion_Research_Station" + }, + { + "id": "342032", + "ident": "ZA-0201", + "type": "heliport", + "name": "Ultimate Heliport", + "latitude_deg": "-26.0284", + "longitude_deg": "28.1108", + "elevation_ft": "4826", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Midrand", + "scheduled_service": "no" + }, + { + "id": "342033", + "ident": "ZA-0202", + "type": "heliport", + "name": "Edenvale Hospital Helipad", + "latitude_deg": "-26.1284", + "longitude_deg": "28.1288", + "elevation_ft": "5191", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Johannesburg", + "scheduled_service": "no" + }, + { + "id": "342034", + "ident": "ZA-0203", + "type": "heliport", + "name": "Mediclinic Sandton Heliport", + "latitude_deg": "-26.0779", + "longitude_deg": "28.0121", + "elevation_ft": "5134", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Johannesburg", + "scheduled_service": "no" + }, + { + "id": "342035", + "ident": "ZA-0204", + "type": "closed", + "name": "Chris Hani Baragwanath Hospital Helipad", + "latitude_deg": "-26.2603", + "longitude_deg": "27.9431", + "elevation_ft": "5466", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Soweto", + "scheduled_service": "no" + }, + { + "id": "342036", + "ident": "ZA-0205", + "type": "heliport", + "name": "Sanan Helipad", + "latitude_deg": "-26.2298", + "longitude_deg": "28.041", + "elevation_ft": "5597", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Johannesburg", + "scheduled_service": "no" + }, + { + "id": "342037", + "ident": "ZA-0206", + "type": "heliport", + "name": "Charlotte Maxeke Johannesburg Academic Hospital Helipad", + "latitude_deg": "-26.1759", + "longitude_deg": "28.0441", + "elevation_ft": "5817", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Johannesburg", + "scheduled_service": "no" + }, + { + "id": "342038", + "ident": "ZA-0207", + "type": "heliport", + "name": "Waterfall City Hospital Helipad", + "latitude_deg": "-26.0135", + "longitude_deg": "28.1022", + "elevation_ft": "4888", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Midrand", + "scheduled_service": "no" + }, + { + "id": "342039", + "ident": "ZA-0208", + "type": "heliport", + "name": "Milpark Hospital Helipad", + "latitude_deg": "-26.1806", + "longitude_deg": "28.017", + "elevation_ft": "5486", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Johannesburg", + "scheduled_service": "no" + }, + { + "id": "342040", + "ident": "ZA-0209", + "type": "heliport", + "name": "Sunninghill Hospital Helipad", + "latitude_deg": "-26.0385", + "longitude_deg": "28.07", + "elevation_ft": "4787", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Sandton", + "scheduled_service": "no" + }, + { + "id": "342041", + "ident": "ZA-0210", + "type": "heliport", + "name": "Midstream Helipad", + "latitude_deg": "-25.9279", + "longitude_deg": "28.1971", + "elevation_ft": "4954", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Olifantsfontein", + "scheduled_service": "no" + }, + { + "id": "342042", + "ident": "ZA-0211", + "type": "heliport", + "name": "Olivedale Clinic Helipad", + "latitude_deg": "-26.0553", + "longitude_deg": "27.9718", + "elevation_ft": "4904", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Randburg", + "scheduled_service": "no" + }, + { + "id": "342043", + "ident": "ZA-0212", + "type": "heliport", + "name": "Dimension Data Helipad", + "latitude_deg": "-26.0422", + "longitude_deg": "28.0248", + "elevation_ft": "4993", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Sandton", + "scheduled_service": "no" + }, + { + "id": "342044", + "ident": "ZA-0213", + "type": "heliport", + "name": "Life Fourways Hospital Helipad", + "latitude_deg": "-26.0119", + "longitude_deg": "27.9952", + "elevation_ft": "4813", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Sandton", + "scheduled_service": "no" + }, + { + "id": "342045", + "ident": "ZA-0214", + "type": "heliport", + "name": "Mediclinic Midstream Heliport", + "latitude_deg": "-25.9248", + "longitude_deg": "28.1827", + "elevation_ft": "5128", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Olifantsfontein", + "scheduled_service": "no" + }, + { + "id": "342046", + "ident": "ZA-0215", + "type": "heliport", + "name": "Benoni Heliport", + "latitude_deg": "-26.1738", + "longitude_deg": "28.3492", + "elevation_ft": "5377", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Benoni", + "scheduled_service": "no" + }, + { + "id": "342047", + "ident": "ZA-0216", + "type": "small_airport", + "name": "Bierman Landgoed Airstrip", + "latitude_deg": "-26.9936", + "longitude_deg": "28.3217", + "elevation_ft": "4905", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Oranjeville", + "scheduled_service": "no" + }, + { + "id": "342048", + "ident": "ZA-0217", + "type": "small_airport", + "name": "Jim Fouche Resort Airport", + "latitude_deg": "-27.0015", + "longitude_deg": "28.3706", + "elevation_ft": "4993", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Krompan", + "scheduled_service": "no" + }, + { + "id": "342051", + "ident": "ZA-0218", + "type": "small_airport", + "name": "Tankwa International Airport", + "latitude_deg": "-32.334119", + "longitude_deg": "19.753489", + "elevation_ft": "1036", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Tankwa Town", + "scheduled_service": "no" + }, + { + "id": "342052", + "ident": "ZA-0219", + "type": "small_airport", + "name": "Aeropark Zyn Kraal", + "latitude_deg": "-25.902761", + "longitude_deg": "28.5473", + "elevation_ft": "4900", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "scheduled_service": "no", + "keywords": "R 010" + }, + { + "id": "342054", + "ident": "ZA-0220", + "type": "small_airport", + "name": "Zilkaats Airstrip", + "latitude_deg": "-25.658442", + "longitude_deg": "27.882507", + "elevation_ft": "3980", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "scheduled_service": "no" + }, + { + "id": "342055", + "ident": "ZA-0221", + "type": "small_airport", + "name": "Belladona Airfield", + "latitude_deg": "-26.964755", + "longitude_deg": "24.063159", + "elevation_ft": "4428", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "scheduled_service": "no" + }, + { + "id": "342056", + "ident": "ZA-0222", + "type": "small_airport", + "name": "Buisfontein Airfield", + "latitude_deg": "-27.164519", + "longitude_deg": "26.066372", + "elevation_ft": "4767", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Wolmaranstad", + "scheduled_service": "no" + }, + { + "id": "342057", + "ident": "ZA-0223", + "type": "small_airport", + "name": "Eagle Flight Academy Airfield", + "latitude_deg": "-27.796561", + "longitude_deg": "24.973713", + "elevation_ft": "4070", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Jan Kempdorp", + "scheduled_service": "no" + }, + { + "id": "342058", + "ident": "ZA-0224", + "type": "small_airport", + "name": "Beefmaster Airfield", + "latitude_deg": "-27.820009", + "longitude_deg": "25.220394", + "elevation_ft": "4044", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Kromellenboog", + "scheduled_service": "no" + }, + { + "id": "342059", + "ident": "ZA-0225", + "type": "small_airport", + "name": "Boscobel Airfield", + "latitude_deg": "-27.943429", + "longitude_deg": "25.488965", + "elevation_ft": "4216", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Hertzogville", + "scheduled_service": "no" + }, + { + "id": "345863", + "ident": "ZA-0226", + "type": "small_airport", + "name": "Mawala Airstrip", + "latitude_deg": "-24.979776", + "longitude_deg": "27.295747", + "elevation_ft": "3412", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Northham", + "scheduled_service": "no" + }, + { + "id": "345896", + "ident": "ZA-0227", + "type": "small_airport", + "name": "Satara (Singita Lebombo) Airport", + "latitude_deg": "-24.376984", + "longitude_deg": "31.776495", + "elevation_ft": "928", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "scheduled_service": "no" + }, + { + "id": "345897", + "ident": "ZA-0228", + "type": "small_airport", + "name": "De Hoop Nature Reserve Airstrip", + "latitude_deg": "-34.454359", + "longitude_deg": "20.417855", + "elevation_ft": "72", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "scheduled_service": "no" + }, + { + "id": "345898", + "ident": "ZA-0229", + "type": "small_airport", + "name": "Glendower Farm", + "latitude_deg": "-30.5978", + "longitude_deg": "29.396", + "elevation_ft": "4300", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "scheduled_service": "no" + }, + { + "id": "345899", + "ident": "ZA-0230", + "type": "small_airport", + "name": "Madikwe West Airport", + "latitude_deg": "-24.8231", + "longitude_deg": "26.2236", + "elevation_ft": "3646", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "scheduled_service": "no" + }, + { + "id": "345900", + "ident": "ZA-0231", + "type": "small_airport", + "name": "Shamwari Game Reserve Airfield", + "latitude_deg": "-33.4569", + "longitude_deg": "26.0522", + "elevation_ft": "695", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "scheduled_service": "no" + }, + { + "id": "345901", + "ident": "ZA-0232", + "type": "small_airport", + "name": "Welgevonden Western Airstrip", + "latitude_deg": "-24.286108", + "longitude_deg": "27.786655", + "elevation_ft": "4400", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Welgevonden Game Reserve", + "scheduled_service": "no" + }, + { + "id": "345904", + "ident": "ZA-0233", + "type": "small_airport", + "name": "Marataba Airport", + "latitude_deg": "-24.2408", + "longitude_deg": "27.4908", + "elevation_ft": "3215", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "scheduled_service": "no" + }, + { + "id": "345913", + "ident": "ZA-0234", + "type": "small_airport", + "name": "Ndlopfu Airfield", + "latitude_deg": "-24.1734", + "longitude_deg": "31.3278", + "elevation_ft": "1129", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "scheduled_service": "no" + }, + { + "id": "345914", + "ident": "ZA-0235", + "type": "small_airport", + "name": "Palala Airfield", + "latitude_deg": "-23.1048", + "longitude_deg": "27.879868", + "elevation_ft": "2618", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Groblersbrug", + "scheduled_service": "no" + }, + { + "id": "345915", + "ident": "ZA-0236", + "type": "heliport", + "name": "ATE Helipad", + "latitude_deg": "-25.962091", + "longitude_deg": "28.137263", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Johannesburg", + "scheduled_service": "no" + }, + { + "id": "345916", + "ident": "ZA-0237", + "type": "heliport", + "name": "Sun City Heliport", + "latitude_deg": "-25.341737", + "longitude_deg": "27.081824", + "elevation_ft": "3770", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Moses Kotane", + "scheduled_service": "no" + }, + { + "id": "345917", + "ident": "ZA-0238", + "type": "small_airport", + "name": "Sanbona Wildlife Reserve Airfield", + "latitude_deg": "-33.7233", + "longitude_deg": "20.615", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Sanbona Wildlife Reserve", + "scheduled_service": "no" + }, + { + "id": "345919", + "ident": "ZA-0239", + "type": "small_airport", + "name": "Nambiti Airfield", + "latitude_deg": "-28.4628", + "longitude_deg": "29.9682", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Nambiti Private Game Reserve", + "scheduled_service": "no" + }, + { + "id": "345920", + "ident": "ZA-0240", + "type": "small_airport", + "name": "Kwande Airstrip", + "latitude_deg": "-33.133964", + "longitude_deg": "26.581936", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "scheduled_service": "no" + }, + { + "id": "345921", + "ident": "ZA-0241", + "type": "heliport", + "name": "Shambala Game Estate Heliport", + "latitude_deg": "-24.279213", + "longitude_deg": "28.033768", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Shambala Game Estate", + "scheduled_service": "no" + }, + { + "id": "345922", + "ident": "ZA-0242", + "type": "heliport", + "name": "Interwaste Heliport", + "latitude_deg": "-26.2213", + "longitude_deg": "28.18166", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Johannesburg", + "scheduled_service": "no" + }, + { + "id": "345923", + "ident": "ZA-0243", + "type": "heliport", + "name": "Nondela Estate Heliport", + "latitude_deg": "-28.596288", + "longitude_deg": "29.206971", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "Nondela Estate", + "scheduled_service": "no" + }, + { + "id": "345924", + "ident": "ZA-0244", + "type": "heliport", + "name": "Paperbark Lodge Helipad", + "latitude_deg": "-24.2319", + "longitude_deg": "27.8857", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Paperbark Lodge", + "scheduled_service": "no" + }, + { + "id": "345925", + "ident": "ZA-0245", + "type": "heliport", + "name": "Trollope Mining Services Heliport", + "latitude_deg": "-26.0067", + "longitude_deg": "28.3444", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "scheduled_service": "no" + }, + { + "id": "345926", + "ident": "ZA-0246", + "type": "heliport", + "name": "Moledi Heliport", + "latitude_deg": "-25.8806", + "longitude_deg": "27.1661", + "elevation_ft": "4541", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "scheduled_service": "no" + }, + { + "id": "345927", + "ident": "ZA-0247", + "type": "heliport", + "name": "Molori Heliport", + "latitude_deg": "-24.7198", + "longitude_deg": "26.3793", + "elevation_ft": "3182", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "scheduled_service": "no" + }, + { + "id": "345928", + "ident": "ZA-0248", + "type": "small_airport", + "name": "Tutwa Airfield", + "latitude_deg": "-28.5967", + "longitude_deg": "19.8414", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "scheduled_service": "no" + }, + { + "id": "345929", + "ident": "ZA-0249", + "type": "small_airport", + "name": "Glen Lyon Farm Airstrip", + "latitude_deg": "-28.812247", + "longitude_deg": "22.383753", + "elevation_ft": "3640", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "scheduled_service": "no" + }, + { + "id": "346457", + "ident": "ZA-0250", + "type": "heliport", + "name": "Marula Game Lodge Heliport", + "latitude_deg": "-25.125188", + "longitude_deg": "29.477766", + "elevation_ft": "3340", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Motetema", + "scheduled_service": "no" + }, + { + "id": "347768", + "ident": "ZA-0251", + "type": "heliport", + "name": "Eagle View Helipad", + "latitude_deg": "-25.390456", + "longitude_deg": "30.172134", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Walkersons", + "scheduled_service": "no", + "local_code": "FAEV", + "keywords": "Eagle, view, Cabin, helipad" + }, + { + "id": "31062", + "ident": "ZA-0252", + "type": "small_airport", + "name": "Cape Blue Mine Airport", + "latitude_deg": "-29.334946", + "longitude_deg": "22.264621", + "elevation_ft": "3050", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Westerberg", + "scheduled_service": "no" + }, + { + "id": "352686", + "ident": "ZA-0253", + "type": "small_airport", + "name": "Glenside Airfield", + "latitude_deg": "-28.886091", + "longitude_deg": "29.537859", + "elevation_ft": "3520", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NL", + "municipality": "winterton", + "scheduled_service": "no" + }, + { + "id": "353216", + "ident": "ZA-0254", + "type": "small_airport", + "name": "Auchas Airport", + "latitude_deg": "-28.33486", + "longitude_deg": "16.79609", + "elevation_ft": "141", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Auchas", + "scheduled_service": "no" + }, + { + "id": "353217", + "ident": "ZA-0255", + "type": "small_airport", + "name": "Grasdrif Airport", + "latitude_deg": "-28.38971", + "longitude_deg": "17.40487", + "elevation_ft": "413", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Grasdrif", + "scheduled_service": "no" + }, + { + "id": "353239", + "ident": "ZA-0256", + "type": "small_airport", + "name": "Onseepkans Airport", + "latitude_deg": "-28.75211", + "longitude_deg": "19.32742", + "elevation_ft": "1444", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Onseepkans", + "scheduled_service": "no" + }, + { + "id": "353240", + "ident": "ZA-0257", + "type": "small_airport", + "name": "Southern Farms Airport", + "latitude_deg": "-28.54625", + "longitude_deg": "19.71493", + "elevation_ft": "1749", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Schuitdrift", + "scheduled_service": "no" + }, + { + "id": "353242", + "ident": "ZA-0258", + "type": "small_airport", + "name": "Augrabies South Airport", + "latitude_deg": "-28.64383", + "longitude_deg": "20.30865", + "elevation_ft": "2260", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Augrabies", + "scheduled_service": "no" + }, + { + "id": "353243", + "ident": "ZA-0259", + "type": "small_airport", + "name": "Bakenrant Boerdery Airport", + "latitude_deg": "-28.62423", + "longitude_deg": "20.44023", + "elevation_ft": "2205", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Kakamas", + "scheduled_service": "no" + }, + { + "id": "353244", + "ident": "ZA-0260", + "type": "small_airport", + "name": "Bakenrant North Airport", + "latitude_deg": "-28.62141", + "longitude_deg": "20.45135", + "elevation_ft": "2244", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Kakamas", + "scheduled_service": "no" + }, + { + "id": "353245", + "ident": "ZA-0261", + "type": "small_airport", + "name": "Kakamas West Airport", + "latitude_deg": "-28.76598", + "longitude_deg": "20.57473", + "elevation_ft": "2224", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Kakamas", + "scheduled_service": "no" + }, + { + "id": "353246", + "ident": "ZA-0262", + "type": "small_airport", + "name": "Vaalkoppies Settlement Airport", + "latitude_deg": "-28.44628", + "longitude_deg": "21.34287", + "elevation_ft": "2733", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Vaalkoppies Settlement", + "scheduled_service": "no" + }, + { + "id": "353247", + "ident": "ZA-0263", + "type": "small_airport", + "name": "Namakwari Safaris Airport", + "latitude_deg": "-28.54937", + "longitude_deg": "21.79037", + "elevation_ft": "2808", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Groblershoop", + "scheduled_service": "no" + }, + { + "id": "353248", + "ident": "ZA-0264", + "type": "small_airport", + "name": "Skerpioenpunt Airport", + "latitude_deg": "-28.86887", + "longitude_deg": "22.10493", + "elevation_ft": "2923", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Groblershoop", + "scheduled_service": "no" + }, + { + "id": "353294", + "ident": "ZA-0265", + "type": "small_airport", + "name": "Mountain View Estate Airfield", + "latitude_deg": "-25.86641", + "longitude_deg": "27.87726", + "elevation_ft": "4731", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-GT", + "municipality": "Lanseria", + "scheduled_service": "no", + "gps_code": "FAMV" + }, + { + "id": "353299", + "ident": "ZA-0266", + "type": "small_airport", + "name": "Zilverstroom Farm Airport", + "latitude_deg": "-29.55615", + "longitude_deg": "22.89679", + "elevation_ft": "3130", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Prieska", + "scheduled_service": "no" + }, + { + "id": "353300", + "ident": "ZA-0267", + "type": "small_airport", + "name": "Bo Karoo South Airport", + "latitude_deg": "-29.33704", + "longitude_deg": "23.17968", + "elevation_ft": "3212", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Higgs Hope", + "scheduled_service": "no" + }, + { + "id": "353301", + "ident": "ZA-0268", + "type": "small_airport", + "name": "Higgs Hope Airport", + "latitude_deg": "-29.30453", + "longitude_deg": "23.28233", + "elevation_ft": "3362", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Higgs Hope", + "scheduled_service": "no" + }, + { + "id": "353302", + "ident": "ZA-0269", + "type": "small_airport", + "name": "Bo Karoo North Airport", + "latitude_deg": "-29.26596", + "longitude_deg": "23.20544", + "elevation_ft": "3491", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Higgs Hope", + "scheduled_service": "no" + }, + { + "id": "353349", + "ident": "ZA-0270", + "type": "small_airport", + "name": "Siyancuma West Airport", + "latitude_deg": "-29.19451", + "longitude_deg": "23.34394", + "elevation_ft": "3278", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Siyancuma", + "scheduled_service": "no" + }, + { + "id": "353350", + "ident": "ZA-0271", + "type": "small_airport", + "name": "Siyancuma West 2 Airport", + "latitude_deg": "-29.22365", + "longitude_deg": "23.48078", + "elevation_ft": "3261", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Siyancuma", + "scheduled_service": "no" + }, + { + "id": "353351", + "ident": "ZA-0272", + "type": "small_airport", + "name": "Siyancuma West 3 Airport", + "latitude_deg": "-29.18871", + "longitude_deg": "23.55848", + "elevation_ft": "3291", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Siyancuma", + "scheduled_service": "no" + }, + { + "id": "353352", + "ident": "ZA-0273", + "type": "closed", + "name": "Former Douglas Airport", + "latitude_deg": "-29.07549", + "longitude_deg": "23.76682", + "elevation_ft": "2386", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Douglas", + "scheduled_service": "no" + }, + { + "id": "353353", + "ident": "ZA-0274", + "type": "small_airport", + "name": "Bucklands Airport", + "latitude_deg": "-29.09647", + "longitude_deg": "23.73104", + "elevation_ft": "3323", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Douglas", + "scheduled_service": "no" + }, + { + "id": "353354", + "ident": "ZA-0275", + "type": "small_airport", + "name": "Douglas North Airport", + "latitude_deg": "-28.96775", + "longitude_deg": "23.76557", + "elevation_ft": "3445", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Douglas", + "scheduled_service": "no" + }, + { + "id": "353355", + "ident": "ZA-0276", + "type": "small_airport", + "name": "Witfontein Airport", + "latitude_deg": "-29.27692", + "longitude_deg": "23.90523", + "elevation_ft": "3520", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Salt Lake", + "scheduled_service": "no" + }, + { + "id": "353356", + "ident": "ZA-0277", + "type": "small_airport", + "name": "Klipkraal Airport", + "latitude_deg": "-29.58183", + "longitude_deg": "24.14208", + "elevation_ft": "3550", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Hopetown", + "scheduled_service": "no" + }, + { + "id": "353379", + "ident": "ZA-0278", + "type": "small_airport", + "name": "Tzamenkomst Airport", + "latitude_deg": "-30.59866", + "longitude_deg": "25.30819", + "elevation_ft": "4049", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Colesberg", + "scheduled_service": "no" + }, + { + "id": "353380", + "ident": "ZA-0279", + "type": "small_airport", + "name": "Orange River Lodge Airport", + "latitude_deg": "-30.58907", + "longitude_deg": "25.37353", + "elevation_ft": "4060", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Colesberg", + "scheduled_service": "no" + }, + { + "id": "353381", + "ident": "ZA-0280", + "type": "small_airport", + "name": "Corbetts Hope Airport", + "latitude_deg": "-30.62622", + "longitude_deg": "26.34493", + "elevation_ft": "4360", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Corbetts Hope", + "scheduled_service": "no" + }, + { + "id": "353382", + "ident": "ZA-0281", + "type": "small_airport", + "name": "Braklaagte East Airport", + "latitude_deg": "-30.59828", + "longitude_deg": "26.94294", + "elevation_ft": "4649", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Braklaagte", + "scheduled_service": "no" + }, + { + "id": "353383", + "ident": "ZA-0282", + "type": "small_airport", + "name": "Mayaputi Game Reserve Airport", + "latitude_deg": "-30.42799", + "longitude_deg": "27.31309", + "elevation_ft": "5076", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Zastron", + "scheduled_service": "no" + }, + { + "id": "353386", + "ident": "ZA-0283", + "type": "small_airport", + "name": "Douglas Northeast Airport", + "latitude_deg": "-28.92598", + "longitude_deg": "23.94547", + "elevation_ft": "3310", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Douglas", + "scheduled_service": "no" + }, + { + "id": "353387", + "ident": "ZA-0284", + "type": "small_airport", + "name": "Farm Romance Airport", + "latitude_deg": "-28.4931", + "longitude_deg": "24.67943", + "elevation_ft": "3668", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Barkly West", + "scheduled_service": "no" + }, + { + "id": "353388", + "ident": "ZA-0285", + "type": "small_airport", + "name": "Holpan Airport", + "latitude_deg": "-28.38082", + "longitude_deg": "24.60613", + "elevation_ft": "3806", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Holpan", + "scheduled_service": "no" + }, + { + "id": "353389", + "ident": "ZA-0286", + "type": "small_airport", + "name": "Almar Exclusive Game Ranch Airport", + "latitude_deg": "-27.59869", + "longitude_deg": "25.3439", + "elevation_ft": "4150", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Bloemhof", + "scheduled_service": "no" + }, + { + "id": "353390", + "ident": "ZA-0287", + "type": "small_airport", + "name": "Louwilla Lodge Airport", + "latitude_deg": "-27.58119", + "longitude_deg": "25.32355", + "elevation_ft": "4200", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Bloemhof", + "scheduled_service": "no" + }, + { + "id": "353391", + "ident": "ZA-0288", + "type": "small_airport", + "name": "Belle Rive Airport", + "latitude_deg": "-27.96792", + "longitude_deg": "25.13416", + "elevation_ft": "4000", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Warrenton", + "scheduled_service": "no" + }, + { + "id": "353392", + "ident": "ZA-0289", + "type": "small_airport", + "name": "Balkfontein Airport", + "latitude_deg": "-27.41043", + "longitude_deg": "26.46573", + "elevation_ft": "4190", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Balkfontein", + "scheduled_service": "no" + }, + { + "id": "353401", + "ident": "ZA-0290", + "type": "heliport", + "name": "West Vaal Hospital Heliport", + "latitude_deg": "-26.96456", + "longitude_deg": "26.6736", + "elevation_ft": "4314", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Orkney", + "scheduled_service": "no" + }, + { + "id": "353402", + "ident": "ZA-0291", + "type": "heliport", + "name": "Tshepong Hospital", + "latitude_deg": "-26.88738", + "longitude_deg": "26.61672", + "elevation_ft": "4373", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Klerksdorp", + "scheduled_service": "no" + }, + { + "id": "353403", + "ident": "ZA-0292", + "type": "heliport", + "name": "Duff Scott Hospital Heliport", + "latitude_deg": "-26.8634", + "longitude_deg": "26.80418", + "elevation_ft": "4354", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "municipality": "Stilfontein", + "scheduled_service": "no" + }, + { + "id": "353404", + "ident": "ZA-0293", + "type": "small_airport", + "name": "Afrikaanse Hengel Vereeniging (Afrikaans Fishing Association) Airport", + "latitude_deg": "-26.93936", + "longitude_deg": "28.32789", + "elevation_ft": "4879", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Balfour", + "scheduled_service": "no" + }, + { + "id": "353405", + "ident": "ZA-0294", + "type": "small_airport", + "name": "Grootbraai Airport", + "latitude_deg": "-27.03587", + "longitude_deg": "28.65938", + "elevation_ft": "5016", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Villiers", + "scheduled_service": "no" + }, + { + "id": "353406", + "ident": "ZA-0295", + "type": "heliport", + "name": "Lekoa Heliport", + "latitude_deg": "-26.95184", + "longitude_deg": "28.7219", + "elevation_ft": "4979", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-MP", + "municipality": "Villiers", + "scheduled_service": "no" + }, + { + "id": "353582", + "ident": "ZA-0296", + "type": "small_airport", + "name": "Twee Rivieren Airport", + "latitude_deg": "-26.44869", + "longitude_deg": "20.60723", + "elevation_ft": "2933", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Twee Rivieren", + "scheduled_service": "no", + "keywords": "Two Rivers" + }, + { + "id": "353725", + "ident": "ZA-0297", + "type": "small_airport", + "name": "Madikwe East Airport", + "latitude_deg": "-24.733331", + "longitude_deg": "26.40642", + "elevation_ft": "3091", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NW", + "scheduled_service": "no" + }, + { + "id": "355037", + "ident": "ZA-0298", + "type": "small_airport", + "name": "Umbabat Aero Camp Airfield", + "latitude_deg": "-24.5255", + "longitude_deg": "31.1197", + "elevation_ft": "1896", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "scheduled_service": "no" + }, + { + "id": "355038", + "ident": "ZA-0299", + "type": "small_airport", + "name": "Sandringham Farm Airstrip", + "latitude_deg": "-24.540155", + "longitude_deg": "31.206096", + "elevation_ft": "1575", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "scheduled_service": "no" + }, + { + "id": "356249", + "ident": "ZA-0300", + "type": "small_airport", + "name": "Sirkel N Airport", + "latitude_deg": "-23.20183", + "longitude_deg": "28.48575", + "elevation_ft": "3061", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Baltimore", + "scheduled_service": "no" + }, + { + "id": "356250", + "ident": "ZA-0301", + "type": "small_airport", + "name": "Kokomori Airport", + "latitude_deg": "-23.08269", + "longitude_deg": "27.90621", + "elevation_ft": "2575", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NP", + "municipality": "Groblersbrug", + "scheduled_service": "no" + }, + { + "id": "356253", + "ident": "ZA-0302", + "type": "heliport", + "name": "Hood Point Heliport", + "latitude_deg": "-33.04079", + "longitude_deg": "27.89823", + "elevation_ft": "152", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "East London", + "scheduled_service": "no" + }, + { + "id": "356255", + "ident": "ZA-0303", + "type": "small_airport", + "name": "Fort D'Acre Reserve Airport", + "latitude_deg": "-33.49369", + "longitude_deg": "27.11207", + "elevation_ft": "151", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Port Alfred", + "scheduled_service": "no" + }, + { + "id": "356256", + "ident": "ZA-0304", + "type": "heliport", + "name": "Oubosstrand Heliport", + "latitude_deg": "-34.06369", + "longitude_deg": "24.1998", + "elevation_ft": "20", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Eersterivierstrand", + "scheduled_service": "no" + }, + { + "id": "356257", + "ident": "ZA-0305", + "type": "small_airport", + "name": "Regyne Protea Farm Airport", + "latitude_deg": "-34.0327", + "longitude_deg": "24.2207", + "elevation_ft": "673", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-EC", + "municipality": "Kou-Kamma", + "scheduled_service": "no" + }, + { + "id": "356258", + "ident": "ZA-0306", + "type": "small_airport", + "name": "Cannon Valley Estate Airport", + "latitude_deg": "-34.32444", + "longitude_deg": "21.89169", + "elevation_ft": "61", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Gouritz", + "scheduled_service": "no" + }, + { + "id": "356259", + "ident": "ZA-0307", + "type": "small_airport", + "name": "Bredasdorp Airport", + "latitude_deg": "-34.54802", + "longitude_deg": "20.08476", + "elevation_ft": "105", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-WC", + "municipality": "Bredasdorp", + "scheduled_service": "no" + }, + { + "id": "429706", + "ident": "ZA-0308", + "type": "small_airport", + "name": "Modderrivier Airport", + "latitude_deg": "-29.01958", + "longitude_deg": "24.6535", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Modderrivier", + "scheduled_service": "no" + }, + { + "id": "429707", + "ident": "ZA-0309", + "type": "small_airport", + "name": "Mokala Airport", + "latitude_deg": "-29.17329", + "longitude_deg": "24.26292", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Modderrivier", + "scheduled_service": "no" + }, + { + "id": "429708", + "ident": "ZA-0310", + "type": "small_airport", + "name": "Valencia Private Airstrip", + "latitude_deg": "-29.02745", + "longitude_deg": "26.0948", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-FS", + "municipality": "Bloemfontein", + "scheduled_service": "no" + }, + { + "id": "31753", + "ident": "ZA-KIG", + "type": "small_airport", + "name": "Koingnaas Airport", + "latitude_deg": "-30.187136", + "longitude_deg": "17.282706", + "elevation_ft": "228", + "continent": "AF", + "iso_country": "ZA", + "iso_region": "ZA-NC", + "municipality": "Koingnaas", + "scheduled_service": "no", + "iata_code": "KIG" + }, + { + "id": "27188", + "ident": "ZBAA", + "type": "large_airport", + "name": "Beijing Capital International Airport", + "latitude_deg": "40.080101013183594", + "longitude_deg": "116.58499908447266", + "elevation_ft": "116", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-11", + "municipality": "Beijing", + "scheduled_service": "yes", + "gps_code": "ZBAA", + "iata_code": "PEK", + "home_link": "http://en.bcia.com.cn/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beijing_Capital_International_Airport", + "keywords": "BJS, Bejing, Peking, Olympics" + }, + { + "id": "330820", + "ident": "ZBAD", + "type": "large_airport", + "name": "Beijing Daxing International Airport", + "latitude_deg": "39.509945", + "longitude_deg": "116.41092", + "elevation_ft": "98", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-11", + "municipality": "Beijing", + "scheduled_service": "yes", + "gps_code": "ZBAD", + "iata_code": "PKX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beijing_Daxing_International_Airport" + }, + { + "id": "32006", + "ident": "ZBBB", + "type": "medium_airport", + "name": "Beijing Xijiao Airport", + "latitude_deg": "39.9608", + "longitude_deg": "116.257004", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-11", + "municipality": "Beijing", + "scheduled_service": "no", + "gps_code": "ZBBB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beijing_Xijiao_Airport", + "keywords": "BJS, Beijing City Airport" + }, + { + "id": "327347", + "ident": "ZBCD", + "type": "medium_airport", + "name": "Chengde Puning Airport", + "latitude_deg": "41.1225", + "longitude_deg": "118.073889", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Chengde", + "scheduled_service": "yes", + "gps_code": "ZBCD", + "iata_code": "CDE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chengde_Puning_Airport" + }, + { + "id": "30829", + "ident": "ZBCF", + "type": "medium_airport", + "name": "Chifeng Yulong Airport", + "latitude_deg": "42.157708", + "longitude_deg": "118.839455", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Chifeng", + "scheduled_service": "yes", + "gps_code": "ZBCF", + "iata_code": "CIF" + }, + { + "id": "30830", + "ident": "ZBCZ", + "type": "small_airport", + "name": "Changzhi Wangcun Airport", + "latitude_deg": "36.247501", + "longitude_deg": "113.125999", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-14", + "municipality": "Changzhi", + "scheduled_service": "yes", + "gps_code": "ZBCZ", + "iata_code": "CIH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Changzhi_Wangcun_Airport" + }, + { + "id": "318174", + "ident": "ZBDH", + "type": "medium_airport", + "name": "Qinhuangdao Beidaihe Airport", + "latitude_deg": "39.666389", + "longitude_deg": "119.058889", + "elevation_ft": "46", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Qinhuangdao", + "scheduled_service": "yes", + "gps_code": "ZBDH", + "iata_code": "BPE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qinhuangdao_Beidaihe_Airport" + }, + { + "id": "300513", + "ident": "ZBDS", + "type": "medium_airport", + "name": "Ordos Ejin Horo Airport", + "latitude_deg": "39.49", + "longitude_deg": "109.861388889", + "elevation_ft": "4557", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Ordos", + "scheduled_service": "yes", + "gps_code": "ZBDS", + "iata_code": "DSN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ordos_Ejin_Horo_Airport" + }, + { + "id": "30876", + "ident": "ZBDT", + "type": "small_airport", + "name": "Datong Yungang Airport", + "latitude_deg": "40.061614", + "longitude_deg": "113.480032", + "elevation_ft": "3442", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-14", + "municipality": "Datong", + "scheduled_service": "yes", + "gps_code": "ZBDT", + "iata_code": "DAT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Datong_Yungang_Airport" + }, + { + "id": "300671", + "ident": "ZBER", + "type": "medium_airport", + "name": "Erenhot Saiwusu International Airport", + "latitude_deg": "43.4225", + "longitude_deg": "112.096667", + "elevation_ft": "3301", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Erenhot", + "scheduled_service": "yes", + "gps_code": "ZBER", + "iata_code": "ERL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Erenhot_Saiwusu_International_Airport", + "keywords": "Saiwusu Airport" + }, + { + "id": "315854", + "ident": "ZBES", + "type": "medium_airport", + "name": "Arxan Yi'ershi Airport", + "latitude_deg": "47.3106", + "longitude_deg": "119.9117", + "elevation_ft": "2925", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Arxan", + "scheduled_service": "yes", + "gps_code": "ZBES", + "iata_code": "YIE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arxan_Yi%27ershi_Airport" + }, + { + "id": "300860", + "ident": "ZBHD", + "type": "medium_airport", + "name": "Handan Airport", + "latitude_deg": "36.525833", + "longitude_deg": "114.425556", + "elevation_ft": "229", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Handan", + "scheduled_service": "yes", + "gps_code": "ZBHD", + "iata_code": "HDG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Handan_Airport" + }, + { + "id": "27189", + "ident": "ZBHH", + "type": "large_airport", + "name": "Hohhot Baita International Airport", + "latitude_deg": "40.849658", + "longitude_deg": "111.824598", + "elevation_ft": "3556", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Hohhot", + "scheduled_service": "yes", + "gps_code": "ZBHH", + "iata_code": "HET", + "home_link": "http://www.hhhtbtjc.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hohhot_Baita_International_Airport" + }, + { + "id": "327443", + "ident": "ZBHZ", + "type": "medium_airport", + "name": "Holingol Huolinhe Airport", + "latitude_deg": "45.487222", + "longitude_deg": "119.407222", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Holingol", + "scheduled_service": "yes", + "gps_code": "ZBHZ", + "iata_code": "HUO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Holingol_Huolinhe_Airport" + }, + { + "id": "42781", + "ident": "ZBK", + "type": "closed", + "name": "Žabljak Airport", + "latitude_deg": "43.116669", + "longitude_deg": "19.233334", + "elevation_ft": "4252", + "continent": "EU", + "iso_country": "ME", + "iso_region": "ME-21", + "municipality": "Žabljak Airport", + "scheduled_service": "no", + "iata_code": "ZBK", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C5%BDabljak_Airport", + "keywords": "Аеродром Жабљак, Aerodrom Žabljak" + }, + { + "id": "27190", + "ident": "ZBLA", + "type": "medium_airport", + "name": "Hulunbuir Hailar Airport", + "latitude_deg": "49.205002", + "longitude_deg": "119.824997", + "elevation_ft": "2169", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Hailar", + "scheduled_service": "yes", + "gps_code": "ZBLA", + "iata_code": "HLD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hulunbuir_Hailar_Airport", + "keywords": "Hailar Dongshan" + }, + { + "id": "323216", + "ident": "ZBLF", + "type": "medium_airport", + "name": "Linfen Yaodu Airport", + "latitude_deg": "36.132629", + "longitude_deg": "111.641236", + "elevation_ft": "1483", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-14", + "municipality": "Linfen (Yaodu)", + "scheduled_service": "yes", + "gps_code": "ZBLF", + "iata_code": "LFQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Linfen_Qiaoli_Airport" + }, + { + "id": "327444", + "ident": "ZBLL", + "type": "medium_airport", + "name": "Lüliang Dawu Airport", + "latitude_deg": "37.683333", + "longitude_deg": "111.142778", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-61", + "municipality": "Lüliang", + "scheduled_service": "yes", + "gps_code": "ZBLL", + "iata_code": "LLV", + "wikipedia_link": "https://en.wikipedia.org/wiki/L%C3%BCliang_Airport" + }, + { + "id": "322165", + "ident": "ZBMZ", + "type": "medium_airport", + "name": "Manzhouli Xijiao Airport", + "latitude_deg": "49.566667", + "longitude_deg": "117.33", + "elevation_ft": "2231", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "scheduled_service": "yes", + "gps_code": "ZBMZ", + "iata_code": "NZH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Manzhouli_Xijiao_Airport" + }, + { + "id": "44093", + "ident": "ZBNY", + "type": "small_airport", + "name": "Beijing Nanyuan Air Base", + "latitude_deg": "39.782158", + "longitude_deg": "116.386299", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-11", + "municipality": "Beijing", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beijing_Nanyuan_Airport", + "keywords": "Nanyuan Air Base, NAY, ZBNY" + }, + { + "id": "30679", + "ident": "ZBOW", + "type": "medium_airport", + "name": "Baotou Donghe Airport", + "latitude_deg": "40.560001", + "longitude_deg": "109.997002", + "elevation_ft": "3321", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Baotou", + "scheduled_service": "yes", + "gps_code": "ZBOW", + "iata_code": "BAV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baotou_Airport", + "keywords": "Erliban" + }, + { + "id": "32295", + "ident": "ZBSH", + "type": "small_airport", + "name": "Qinhuangdao Shanhaiguan Airport", + "latitude_deg": "39.968679", + "longitude_deg": "119.730635", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Shanhaiguan, Qinhuangdao", + "scheduled_service": "no", + "gps_code": "ZBSH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qinhuangdao_Shanhaiguan_Airport" + }, + { + "id": "27191", + "ident": "ZBSJ", + "type": "medium_airport", + "name": "Shijiazhuang Zhengding International Airport", + "latitude_deg": "38.280701", + "longitude_deg": "114.696999", + "elevation_ft": "233", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Shijiazhuang", + "scheduled_service": "yes", + "gps_code": "ZBSJ", + "iata_code": "SJW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shijiazhuang_Zhengding_International_Airport", + "keywords": "Daguocun" + }, + { + "id": "354335", + "ident": "ZBTG", + "type": "small_airport", + "name": "Tianjin Tanggu Airport", + "latitude_deg": "38.898114", + "longitude_deg": "117.657244", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-12", + "municipality": "Tanggu", + "scheduled_service": "no", + "gps_code": "ZBTG" + }, + { + "id": "27192", + "ident": "ZBTJ", + "type": "large_airport", + "name": "Tianjin Binhai International Airport", + "latitude_deg": "39.124401092499994", + "longitude_deg": "117.346000671", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-12", + "municipality": "Tianjin", + "scheduled_service": "yes", + "gps_code": "ZBTJ", + "iata_code": "TSN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tianjin_Binhai_International_Airport" + }, + { + "id": "32440", + "ident": "ZBTL", + "type": "medium_airport", + "name": "Tongliao Airport", + "latitude_deg": "43.556702", + "longitude_deg": "122.199997", + "elevation_ft": "2395", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Tongliao", + "scheduled_service": "yes", + "gps_code": "ZBTL", + "iata_code": "TGO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tongliao_Airport" + }, + { + "id": "327445", + "ident": "ZBUC", + "type": "medium_airport", + "name": "Ulanqab Jining Airport", + "latitude_deg": "41.130266", + "longitude_deg": "113.107274", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Ulanqab", + "scheduled_service": "yes", + "gps_code": "ZBUC", + "iata_code": "UCB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ulanqab_Jining_Airport" + }, + { + "id": "308728", + "ident": "ZBUH", + "type": "small_airport", + "name": "Wuhai Airport", + "latitude_deg": "39.7934", + "longitude_deg": "106.7993", + "elevation_ft": "3650", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Wuhai", + "scheduled_service": "yes", + "gps_code": "ZBUH", + "iata_code": "WUA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wuhai_Airport", + "keywords": "乌海机场" + }, + { + "id": "35315", + "ident": "ZBUL", + "type": "small_airport", + "name": "Ulanhot Yilelite Airport", + "latitude_deg": "46.195333", + "longitude_deg": "122.008333", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Ulanhot", + "scheduled_service": "yes", + "gps_code": "ZBUL", + "iata_code": "HLH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ulanhot_Yilelite_Airport" + }, + { + "id": "32700", + "ident": "ZBXH", + "type": "medium_airport", + "name": "Xilinhot Airport", + "latitude_deg": "43.91559982299805", + "longitude_deg": "115.96399688720703", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Xilinhot", + "scheduled_service": "yes", + "gps_code": "ZBXH", + "iata_code": "XIL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Xilinhot_Airport" + }, + { + "id": "308722", + "ident": "ZBXT", + "type": "small_airport", + "name": "Xingtai Dalian Airport", + "latitude_deg": "36.8831", + "longitude_deg": "114.4293", + "elevation_ft": "280", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-13", + "municipality": "Xingtai", + "scheduled_service": "no", + "gps_code": "ZBXT", + "iata_code": "XNT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Xingtai_Dalian_Airport", + "keywords": "邢台褡裢机场" + }, + { + "id": "323217", + "ident": "ZBXZ", + "type": "small_airport", + "name": "Xinzhou Wutaishan Airport", + "latitude_deg": "38.597456", + "longitude_deg": "112.969173", + "elevation_ft": "2527", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-14", + "municipality": "Xinzhou", + "scheduled_service": "yes", + "gps_code": "ZBXZ", + "iata_code": "WUT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Xinzhou_Wutaishan_Airport" + }, + { + "id": "300455", + "ident": "ZBYC", + "type": "small_airport", + "name": "Yuncheng Zhangxiao Airport", + "latitude_deg": "35.116391", + "longitude_deg": "111.031389", + "elevation_ft": "1242", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-61", + "municipality": "Yuncheng (Yanhu)", + "scheduled_service": "yes", + "gps_code": "ZBYC", + "iata_code": "YCU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yuncheng_Zhangxiao_Airport", + "keywords": "Yuncheng Guangong Airport" + }, + { + "id": "27193", + "ident": "ZBYN", + "type": "large_airport", + "name": "Taiyuan Wusu Airport", + "latitude_deg": "37.746899", + "longitude_deg": "112.627998", + "elevation_ft": "2575", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-14", + "municipality": "Taiyuan", + "scheduled_service": "yes", + "gps_code": "ZBYN", + "iata_code": "TYN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Taiyuan_Wusu_Airport" + }, + { + "id": "314499", + "ident": "ZBYZ", + "type": "medium_airport", + "name": "Bayannur Tianjitai Airport", + "latitude_deg": "40.926", + "longitude_deg": "107.7428", + "elevation_ft": "3400", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Bavannur", + "scheduled_service": "yes", + "gps_code": "ZBYZ", + "iata_code": "RLK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bayannur_Tianjitai_Airport" + }, + { + "id": "323666", + "ident": "ZBZL", + "type": "medium_airport", + "name": "Zhalantun Genghis Khan Airport", + "latitude_deg": "47.865942", + "longitude_deg": "122.768662", + "elevation_ft": "928", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Zhalantun", + "scheduled_service": "yes", + "gps_code": "ZBZL", + "iata_code": "NZL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zhalantun_Chengjisihan_Airport", + "keywords": "Chengjisihan" + }, + { + "id": "352767", + "ident": "ZDM", + "type": "heliport", + "name": "Ramallah Heliport Airport", + "latitude_deg": "32.2719", + "longitude_deg": "35.0194", + "continent": "AS", + "iso_country": "PS", + "iso_region": "PS-RBH", + "scheduled_service": "no", + "iata_code": "ZDM" + }, + { + "id": "315507", + "ident": "ZDY", + "type": "small_airport", + "name": "Delma Airport", + "latitude_deg": "24.51", + "longitude_deg": "52.3352", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "AE", + "iso_region": "AE-AZ", + "municipality": "Delma Island", + "scheduled_service": "yes", + "gps_code": "OMDL", + "iata_code": "ZDY", + "home_link": "http://www.adac.ae/english/what-we-do/airports/delma-airport", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dalma_Airport", + "keywords": "Dalma" + }, + { + "id": "307352", + "ident": "ZEN", + "type": "small_airport", + "name": "Zenag Airport", + "latitude_deg": "-6.9522222222200005", + "longitude_deg": "146.61625", + "elevation_ft": "3200", + "continent": "OC", + "iso_country": "PG", + "iso_region": "PG-MPL", + "municipality": "Zenag", + "scheduled_service": "no", + "gps_code": "AYZA", + "iata_code": "ZEN", + "local_code": "ZEN", + "keywords": "Zenang," + }, + { + "id": "30708", + "ident": "ZGBH", + "type": "small_airport", + "name": "Beihai Fucheng Airport", + "latitude_deg": "21.5394", + "longitude_deg": "109.293999", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-45", + "municipality": "Beihai (Yinhai)", + "scheduled_service": "yes", + "gps_code": "ZGBH", + "iata_code": "BHY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Beihai_Fucheng_Airport" + }, + { + "id": "30825", + "ident": "ZGCD", + "type": "medium_airport", + "name": "Changde Taohuayuan Airport", + "latitude_deg": "28.9189", + "longitude_deg": "111.639999", + "elevation_ft": "128", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-43", + "municipality": "Changde (Dingcheng)", + "scheduled_service": "yes", + "gps_code": "ZGCD", + "iata_code": "CGD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Changde_Taohuayuan_Airport" + }, + { + "id": "300890", + "ident": "ZGCJ", + "type": "medium_airport", + "name": "Huaihua Zhijiang Airport", + "latitude_deg": "27.443087", + "longitude_deg": "109.704666", + "elevation_ft": "882", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-43", + "municipality": "Huaihua", + "scheduled_service": "yes", + "gps_code": "ZGCJ", + "iata_code": "HJJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zhijiang_Airport", + "keywords": "Chihkiang Airfield" + }, + { + "id": "352634", + "ident": "ZGCZ", + "type": "medium_airport", + "name": "Chenzhou Beihu Airport", + "latitude_deg": "25.753419", + "longitude_deg": "112.845404", + "elevation_ft": "1071", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-43", + "municipality": "Chenzhou", + "scheduled_service": "yes", + "gps_code": "ZGCZ", + "iata_code": "HCZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chenzhou_Beihu_Airport" + }, + { + "id": "30958", + "ident": "ZGDY", + "type": "small_airport", + "name": "Zhangjiajie Hehua International Airport", + "latitude_deg": "29.1028", + "longitude_deg": "110.443001", + "elevation_ft": "692", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-43", + "municipality": "Zhangjiajie (Yongding)", + "scheduled_service": "yes", + "gps_code": "ZGDY", + "iata_code": "DYG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zhangjiajie_Hehua_Airport", + "keywords": "Dayong Airport" + }, + { + "id": "27194", + "ident": "ZGGG", + "type": "large_airport", + "name": "Guangzhou Baiyun International Airport", + "latitude_deg": "23.392401", + "longitude_deg": "113.299004", + "elevation_ft": "50", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Guangzhou (Huadu)", + "scheduled_service": "yes", + "gps_code": "ZGGG", + "iata_code": "CAN", + "home_link": "http://www.baiyunairport.com/english/index.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guangzhou_Baiyun_International_Airport" + }, + { + "id": "27195", + "ident": "ZGHA", + "type": "large_airport", + "name": "Changsha Huanghua International Airport", + "latitude_deg": "28.189199", + "longitude_deg": "113.220001", + "elevation_ft": "217", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-43", + "municipality": "Changsha (Changsha)", + "scheduled_service": "yes", + "gps_code": "ZGHA", + "iata_code": "CSX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Changsha_Huanghua_International_Airport", + "keywords": "长沙黄花国际机场" + }, + { + "id": "318152", + "ident": "ZGHC", + "type": "medium_airport", + "name": "Hechi Jinchengjiang Airport", + "latitude_deg": "24.804344", + "longitude_deg": "107.710819", + "elevation_ft": "2221", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-45", + "municipality": "Hechi (Jinchengjiang)", + "scheduled_service": "yes", + "gps_code": "ZGHC", + "iata_code": "HCJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hechi_Jinchengjiang_Airport" + }, + { + "id": "316764", + "ident": "ZGHU", + "type": "small_airport", + "name": "Shihezi Huayuan Airport", + "latitude_deg": "44.2421", + "longitude_deg": "85.8905", + "elevation_ft": "1700", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Shihezi", + "scheduled_service": "yes", + "gps_code": "ZWHZ", + "iata_code": "SHF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shihezi_Huayuan_Airport" + }, + { + "id": "31610", + "ident": "ZGHY", + "type": "small_airport", + "name": "Hengyang Nanyue Airport", + "latitude_deg": "26.72208", + "longitude_deg": "112.617958", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-43", + "municipality": "Hengyang", + "scheduled_service": "yes", + "gps_code": "ZGHY", + "iata_code": "HNY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hengyang_Nanyue_Airport" + }, + { + "id": "27196", + "ident": "ZGKL", + "type": "large_airport", + "name": "Guilin Liangjiang International Airport", + "latitude_deg": "25.219828", + "longitude_deg": "110.039553", + "elevation_ft": "570", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-45", + "municipality": "Guilin (Lingui)", + "scheduled_service": "yes", + "gps_code": "ZGKL", + "iata_code": "KWL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guilin_Liangjiang_International_Airport" + }, + { + "id": "308237", + "ident": "ZGLD", + "type": "small_airport", + "name": "Luoding Sulong Airport", + "latitude_deg": "22.711169", + "longitude_deg": "111.60134", + "elevation_ft": "190", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Yunfu (Luoding)", + "scheduled_service": "no", + "gps_code": "ZGLD", + "wikipedia_link": "http://www.wiki86.com/view/4147987.htm" + }, + { + "id": "308238", + "ident": "ZGLG", + "type": "medium_airport", + "name": "Yongzhou Lingling Airport", + "latitude_deg": "26.338661", + "longitude_deg": "111.610043", + "elevation_ft": "340", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-43", + "municipality": "Yongzhou", + "scheduled_service": "yes", + "gps_code": "ZGLG", + "iata_code": "LLF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yongzhou_Lingling_Airport" + }, + { + "id": "35314", + "ident": "ZGMX", + "type": "small_airport", + "name": "Meizhou Meixian Changgangji International Airport", + "latitude_deg": "24.263425", + "longitude_deg": "116.097857", + "elevation_ft": "312", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Meizhou (Meixian)", + "scheduled_service": "yes", + "gps_code": "ZGMX", + "iata_code": "MXZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Meixian_Airport" + }, + { + "id": "27197", + "ident": "ZGNN", + "type": "large_airport", + "name": "Nanning Wuxu Airport", + "latitude_deg": "22.608299", + "longitude_deg": "108.171997", + "elevation_ft": "421", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-45", + "municipality": "Nanning (Jiangnan)", + "scheduled_service": "yes", + "gps_code": "ZGNN", + "iata_code": "NNG", + "home_link": "http://www.nnairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nanning_Wuxu_International_Airport", + "keywords": "南宁吴圩机场, Nanning Wuxu Air Base" + }, + { + "id": "339169", + "ident": "ZGNT", + "type": "heliport", + "name": "Shenzhen Nantou Heliport & runway", + "latitude_deg": "22.558736", + "longitude_deg": "113.925612", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Shenzhen (Nanshan)", + "scheduled_service": "no", + "gps_code": "ZGNT" + }, + { + "id": "32400", + "ident": "ZGOW", + "type": "medium_airport", + "name": "Jieyang Chaoshan International Airport", + "latitude_deg": "23.552", + "longitude_deg": "116.5033", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Jieyang (Rongcheng)", + "scheduled_service": "yes", + "gps_code": "ZGOW", + "iata_code": "SWA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jieyang_Chaoshan_International_Airport" + }, + { + "id": "30593", + "ident": "ZGSD", + "type": "medium_airport", + "name": "Zhuhai Jinwan Airport", + "latitude_deg": "22.006399", + "longitude_deg": "113.375999", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Zhuhai (Jinwan)", + "scheduled_service": "yes", + "gps_code": "ZGSD", + "iata_code": "ZUH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zhuhai_Jinwan_Airport" + }, + { + "id": "327446", + "ident": "ZGSY", + "type": "medium_airport", + "name": "Shaoyang Wugang Airport", + "latitude_deg": "26.806123", + "longitude_deg": "110.641042", + "elevation_ft": "1444", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-43", + "municipality": "Shaoyang (Wugang)", + "scheduled_service": "yes", + "gps_code": "ZGSY", + "iata_code": "WGN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shaoyang_Wugang_Airport" + }, + { + "id": "27198", + "ident": "ZGSZ", + "type": "large_airport", + "name": "Shenzhen Bao'an International Airport", + "latitude_deg": "22.639299", + "longitude_deg": "113.810997", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Shenzhen (Bao'an)", + "scheduled_service": "yes", + "gps_code": "ZGSZ", + "iata_code": "SZX", + "home_link": "http://eng.szairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shenzhen_Bao'an_International_Airport", + "keywords": "Baoan, Huangtian Airport" + }, + { + "id": "32685", + "ident": "ZGWZ", + "type": "closed", + "name": "Wuzhou Changzhoudao Airport", + "latitude_deg": "23.456699", + "longitude_deg": "111.248001", + "elevation_ft": "89", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-45", + "municipality": "Wuzhou (Changzhou)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wuzhou_Changzhoudao_Airport", + "keywords": "WUZ, ZGWZ" + }, + { + "id": "32701", + "ident": "ZGXN", + "type": "small_airport", + "name": "Xingning Air Base", + "latitude_deg": "24.1492", + "longitude_deg": "115.758003", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Meizhou (Xingning)", + "scheduled_service": "no", + "gps_code": "ZGXN", + "iata_code": "XIN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Xingning_Air_Base" + }, + { + "id": "351135", + "ident": "ZGYJ", + "type": "small_airport", + "name": "Yangjiang Heshan Airport", + "latitude_deg": "21.961895", + "longitude_deg": "112.102408", + "elevation_ft": "33", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Yangjiang", + "scheduled_service": "no", + "gps_code": "ZGYJ" + }, + { + "id": "344100", + "ident": "ZGYL", + "type": "medium_airport", + "name": "Yulin Fumian Airport", + "latitude_deg": "22.438056", + "longitude_deg": "110.120833", + "elevation_ft": "328", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-45", + "municipality": "Yùlín", + "scheduled_service": "yes", + "gps_code": "ZGYL", + "iata_code": "YLX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yulin_Fumian_Airport" + }, + { + "id": "31874", + "ident": "ZGZH", + "type": "medium_airport", + "name": "Liuzhou Bailian Airport / Bailian Air Base", + "latitude_deg": "24.2075", + "longitude_deg": "109.390999", + "elevation_ft": "295", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-45", + "municipality": "Liuzhou (Liujiang)", + "scheduled_service": "yes", + "gps_code": "ZGZH", + "iata_code": "LZH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Liuzhou_Bailian_Airport", + "keywords": "Liujiang-Liuzhou Air Base" + }, + { + "id": "32743", + "ident": "ZGZJ", + "type": "closed", + "name": "Zhanjiang Xintang Airport", + "latitude_deg": "21.21469", + "longitude_deg": "110.358406", + "elevation_ft": "125", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-44", + "municipality": "Zhanjiang (Xiashan)", + "scheduled_service": "yes", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zhanjiang_Airport" + }, + { + "id": "30670", + "ident": "ZHAY", + "type": "small_airport", + "name": "Anyang Airport", + "latitude_deg": "36.1339", + "longitude_deg": "114.344002", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-41", + "municipality": "Anyang", + "scheduled_service": "no", + "gps_code": "ZHAY", + "iata_code": "AYN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anyang_Airport" + }, + { + "id": "27199", + "ident": "ZHCC", + "type": "large_airport", + "name": "Zhengzhou Xinzheng International Airport", + "latitude_deg": "34.526497", + "longitude_deg": "113.849165", + "elevation_ft": "495", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-41", + "municipality": "Zhengzhou", + "scheduled_service": "yes", + "gps_code": "ZHCC", + "iata_code": "CGO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zhengzhou_Xinzheng_International_Airport", + "keywords": "Xinzheng Airport" + }, + { + "id": "31006", + "ident": "ZHES", + "type": "medium_airport", + "name": "Enshi Xujiaping Airport", + "latitude_deg": "30.320299", + "longitude_deg": "109.485001", + "elevation_ft": "1605", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-42", + "municipality": "Enshi (Enshi)", + "scheduled_service": "yes", + "gps_code": "ZHES", + "iata_code": "ENH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Enshi_Xujiaping_Airport" + }, + { + "id": "31818", + "ident": "ZHGH", + "type": "medium_airport", + "name": "Guangzhou MR Air Base / Guanghua Airport", + "latitude_deg": "32.38866", + "longitude_deg": "111.69425", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-42", + "municipality": "Xiangyang (Laohekou)", + "scheduled_service": "no", + "gps_code": "ZHGH", + "iata_code": "LHK", + "keywords": "Guangzhou MR Air Base" + }, + { + "id": "27200", + "ident": "ZHHH", + "type": "large_airport", + "name": "Wuhan Tianhe International Airport", + "latitude_deg": "30.774798", + "longitude_deg": "114.213723", + "elevation_ft": "113", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-42", + "municipality": "Wuhan (Huangpi)", + "scheduled_service": "yes", + "gps_code": "ZHHH", + "iata_code": "WUH", + "home_link": "http://www.whairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wuhan_Tianhe_International_Airport" + }, + { + "id": "342104", + "ident": "ZHIT", + "type": "closed", + "name": "Yukonia Airstrip", + "latitude_deg": "60.673158", + "longitude_deg": "-125.266799", + "elevation_ft": "1886", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "(Old) Yukonia", + "scheduled_service": "no", + "gps_code": "ZHIT", + "iata_code": "ZKT", + "local_code": "YK98" + }, + { + "id": "347636", + "ident": "ZHJZ", + "type": "medium_airport", + "name": "Jingzhou Shashi Airport", + "latitude_deg": "30.29281", + "longitude_deg": "112.44854", + "elevation_ft": "95", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-42", + "municipality": "Jingzhou (Shashi)", + "scheduled_service": "yes", + "gps_code": "ZHJZ", + "iata_code": "SHS", + "local_code": "SHS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jingzhou_Shashi_Airport" + }, + { + "id": "31870", + "ident": "ZHLY", + "type": "medium_airport", + "name": "Luoyang Beijiao Airport", + "latitude_deg": "34.7411", + "longitude_deg": "112.388", + "elevation_ft": "840", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-41", + "municipality": "Luoyang (Laocheng)", + "scheduled_service": "yes", + "gps_code": "ZHLY", + "iata_code": "LYA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Luoyang_Beijiao_Airport" + }, + { + "id": "32041", + "ident": "ZHNY", + "type": "small_airport", + "name": "Nanyang Jiangying Airport", + "latitude_deg": "32.982696", + "longitude_deg": "112.617467", + "elevation_ft": "840", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-41", + "municipality": "Nanyang (Wancheng)", + "scheduled_service": "yes", + "gps_code": "ZHNY", + "iata_code": "NNY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nanyang_Jiangying_Airport" + }, + { + "id": "319811", + "ident": "ZHSN", + "type": "medium_airport", + "name": "Shennongjia Hongping Airport", + "latitude_deg": "31.626", + "longitude_deg": "110.34", + "elevation_ft": "8365", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-42", + "municipality": "Shennongjia (Hongping)", + "scheduled_service": "yes", + "gps_code": "ZHSN", + "iata_code": "HPG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shennongjia_Hongping_Airport" + }, + { + "id": "32296", + "ident": "ZHSS", + "type": "closed", + "name": "Former Shashi Airport", + "latitude_deg": "30.324289", + "longitude_deg": "112.279861", + "elevation_ft": "112", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-42", + "municipality": "Jingzhou (Shashi)", + "scheduled_service": "no", + "gps_code": "ZHSS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shashi_Airport", + "keywords": "SHS" + }, + { + "id": "318173", + "ident": "ZHSY", + "type": "medium_airport", + "name": "Shiyan Wudangshan Airport", + "latitude_deg": "32.592889", + "longitude_deg": "110.906296", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-42", + "municipality": "Shiyan (Maojian)", + "scheduled_service": "yes", + "gps_code": "ZHSY", + "iata_code": "WDS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shiyan_Wudangshan_Airport" + }, + { + "id": "32697", + "ident": "ZHXF", + "type": "medium_airport", + "name": "Xiangyang Liuji Airport", + "latitude_deg": "32.152222", + "longitude_deg": "112.291666", + "elevation_ft": "234", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-42", + "municipality": "Xiangyang (Xiangzhou)", + "scheduled_service": "yes", + "gps_code": "ZHXF", + "iata_code": "XFN", + "home_link": "http://www.hbxyairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Xiangyang_Liuji_Airport", + "keywords": "Xiangyang,Xiangfan" + }, + { + "id": "32723", + "ident": "ZHYC", + "type": "medium_airport", + "name": "Yichang Sanxia Airport", + "latitude_deg": "30.554132", + "longitude_deg": "111.482563", + "elevation_ft": "673", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-42", + "municipality": "Yichang (Xiaoting)", + "scheduled_service": "yes", + "gps_code": "ZHYC", + "iata_code": "YIH", + "home_link": "http://www.sanxiaairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yichang_Sanxia_Airport" + }, + { + "id": "342105", + "ident": "ZHZH", + "type": "medium_airport", + "name": "Herschel Island Field", + "latitude_deg": "69.548229", + "longitude_deg": "-139.091608", + "elevation_ft": "19", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Herschel Island (Yukon Territory)", + "scheduled_service": "yes", + "gps_code": "ZHZH", + "iata_code": "ZHH", + "local_code": "YK77" + }, + { + "id": "301278", + "ident": "ZIZ", + "type": "heliport", + "name": "Zamzama Heliport", + "latitude_deg": "26.710944444400003", + "longitude_deg": "67.66725", + "elevation_ft": "128", + "continent": "AS", + "iso_country": "PK", + "iso_region": "PK-SD", + "municipality": "Zamzama Gas Field", + "scheduled_service": "no", + "iata_code": "ZIZ" + }, + { + "id": "27201", + "ident": "ZJHK", + "type": "large_airport", + "name": "Haikou Meilan International Airport", + "latitude_deg": "19.9349", + "longitude_deg": "110.459", + "elevation_ft": "75", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Haikou (Meilan)", + "scheduled_service": "yes", + "gps_code": "ZJHK", + "iata_code": "HAK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Haikou_Meilan_International_Airport", + "keywords": "ZGHK" + }, + { + "id": "323220", + "ident": "ZJQH", + "type": "medium_airport", + "name": "Qionghai Bo'ao Airport", + "latitude_deg": "19.140951", + "longitude_deg": "110.452766", + "elevation_ft": "30", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Qionghai", + "scheduled_service": "yes", + "gps_code": "ZJQH", + "iata_code": "BAR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qionghai_Bo%27ao_Airport" + }, + { + "id": "27202", + "ident": "ZJSY", + "type": "large_airport", + "name": "Sanya Phoenix International Airport", + "latitude_deg": "18.3029", + "longitude_deg": "109.412003", + "elevation_ft": "92", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Sanya (Tianya)", + "scheduled_service": "yes", + "gps_code": "ZJSY", + "iata_code": "SYX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sanya_Phoenix_International_Airport" + }, + { + "id": "32745", + "ident": "ZJYX", + "type": "small_airport", + "name": "Yongxing Dao (Woody Island) Airport", + "latitude_deg": "16.8328", + "longitude_deg": "112.344002", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-46", + "municipality": "Sansha (Yongxing Dao / Woody Island)", + "scheduled_service": "yes", + "gps_code": "ZJYX", + "iata_code": "XYI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Woody_Island%2C_South_China_Sea", + "keywords": "VH84, Yongxing Dao Airport" + }, + { + "id": "27203", + "ident": "ZKPY", + "type": "medium_airport", + "name": "Pyongyang Sunan International Airport", + "latitude_deg": "39.224098", + "longitude_deg": "125.669998", + "elevation_ft": "117", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-01", + "municipality": "Pyongyang", + "scheduled_service": "yes", + "gps_code": "ZKPY", + "iata_code": "FNJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pyongyang_Sunan_International_Airport" + }, + { + "id": "35231", + "ident": "ZKSC", + "type": "medium_airport", + "name": "Sunchon Air Base", + "latitude_deg": "39.412463", + "longitude_deg": "125.890273", + "elevation_ft": "141", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-02", + "municipality": "Sunchon", + "scheduled_service": "no", + "gps_code": "ZKSC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sunchon_Airport" + }, + { + "id": "35218", + "ident": "ZKSD", + "type": "medium_airport", + "name": "Sondok Airport", + "latitude_deg": "39.745201", + "longitude_deg": "127.473999", + "elevation_ft": "12", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-08", + "municipality": "Sŏndŏng-ni", + "scheduled_service": "yes", + "gps_code": "ZKSD", + "iata_code": "DSO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Sondok_Airport" + }, + { + "id": "35213", + "ident": "ZKWS", + "type": "medium_airport", + "name": "Wonsan Kalma International Airport", + "latitude_deg": "39.166801", + "longitude_deg": "127.486", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "KP", + "iso_region": "KP-07", + "municipality": "Wonsan", + "scheduled_service": "yes", + "gps_code": "ZKWS", + "iata_code": "WOS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wonsan_Kalma_International_Airport" + }, + { + "id": "30632", + "ident": "ZLAK", + "type": "small_airport", + "name": "Ankang Fuqiang Airport", + "latitude_deg": "32.75696", + "longitude_deg": "108.87338", + "elevation_ft": "1209", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-61", + "municipality": "Ankang (Hanbin)", + "scheduled_service": "yes", + "gps_code": "ZLAK", + "iata_code": "AKA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ankang_Fuqiang_Airport" + }, + { + "id": "35311", + "ident": "ZLAN", + "type": "closed", + "name": "Lanzhou City Airport", + "latitude_deg": "36.033333", + "longitude_deg": "103.86667", + "elevation_ft": "5040", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "municipality": "Lanzhou (Chengguan)", + "scheduled_service": "no", + "gps_code": "ZLAN", + "keywords": "LHW" + }, + { + "id": "30929", + "ident": "ZLDH", + "type": "medium_airport", + "name": "Dunhuang Mogao International Airport", + "latitude_deg": "40.161098", + "longitude_deg": "94.809196", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "municipality": "Dunhuang", + "scheduled_service": "yes", + "gps_code": "ZLDH", + "iata_code": "DNH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dunhuang_Airport" + }, + { + "id": "318171", + "ident": "ZLDL", + "type": "small_airport", + "name": "Delingha Airport", + "latitude_deg": "37.125286", + "longitude_deg": "97.268658", + "elevation_ft": "9843", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-63", + "municipality": "Delingha", + "scheduled_service": "yes", + "gps_code": "ZLDL", + "iata_code": "HXD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Delingha_Airport" + }, + { + "id": "318919", + "ident": "ZLG", + "type": "closed", + "name": "La Güera Airport", + "latitude_deg": "20.83662", + "longitude_deg": "-17.07409", + "elevation_ft": "10", + "continent": "AF", + "iso_country": "EH", + "iso_region": "EH-U-A", + "municipality": "La Güera", + "scheduled_service": "no", + "iata_code": "ZLG", + "wikipedia_link": "https://en.wikipedia.org/wiki/La_G%C3%BCera_Airport", + "keywords": "al-Guwayra, Laghouira" + }, + { + "id": "35308", + "ident": "ZLGM", + "type": "medium_airport", + "name": "Golmud Airport", + "latitude_deg": "36.4006", + "longitude_deg": "94.786102", + "elevation_ft": "9334", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-63", + "municipality": "Golmud", + "scheduled_service": "yes", + "gps_code": "ZLGM", + "iata_code": "GOQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Golmud_Airport" + }, + { + "id": "300741", + "ident": "ZLGY", + "type": "medium_airport", + "name": "Guyuan Liupanshan Airport", + "latitude_deg": "36.078889", + "longitude_deg": "106.216944", + "elevation_ft": "5696", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-64", + "municipality": "Guyuan (Yuanzhou)", + "scheduled_service": "no", + "gps_code": "ZLGY", + "iata_code": "GYU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guyuan_Liupanshan_Airport" + }, + { + "id": "319417", + "ident": "ZLHX", + "type": "medium_airport", + "name": "Huatugou Airport", + "latitude_deg": "38.201645", + "longitude_deg": "90.837843", + "elevation_ft": "2945", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-63", + "municipality": "Mengnai", + "scheduled_service": "yes", + "gps_code": "ZLHX", + "iata_code": "HTT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Huatugou_Airport" + }, + { + "id": "31659", + "ident": "ZLHZ", + "type": "small_airport", + "name": "Hanzhong Chenggu Airport", + "latitude_deg": "33.133527", + "longitude_deg": "107.203817", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-61", + "municipality": "Hanzhong (Chenggu)", + "scheduled_service": "yes", + "gps_code": "ZLHZ", + "iata_code": "HZG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hanzhong_Chenggu_Airport" + }, + { + "id": "298989", + "ident": "ZLIC", + "type": "medium_airport", + "name": "Yinchuan Hedong International Airport", + "latitude_deg": "38.322758", + "longitude_deg": "106.393214", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-64", + "municipality": "Yinchuan", + "scheduled_service": "yes", + "gps_code": "ZLIC", + "iata_code": "INC", + "home_link": "http://www.ningxiaairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yinchuan_Hedong_International_Airport" + }, + { + "id": "300515", + "ident": "ZLJN", + "type": "medium_airport", + "name": "Jining Qufu Airport", + "latitude_deg": "35.292778", + "longitude_deg": "116.346667", + "elevation_ft": "134", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Jining", + "scheduled_service": "yes", + "gps_code": "ZSJG", + "iata_code": "JNG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jining_Qufu_Airport" + }, + { + "id": "31699", + "ident": "ZLJQ", + "type": "small_airport", + "name": "Jiayuguan Airport", + "latitude_deg": "39.856899", + "longitude_deg": "98.3414", + "elevation_ft": "5112", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "municipality": "Jiayuguan", + "scheduled_service": "yes", + "gps_code": "ZLJQ", + "iata_code": "JGN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jiayuguan_Airport" + }, + { + "id": "27204", + "ident": "ZLLL", + "type": "large_airport", + "name": "Lanzhou Zhongchuan International Airport", + "latitude_deg": "36.515202", + "longitude_deg": "103.620003", + "elevation_ft": "6388", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "municipality": "Lanzhou (Yongdeng)", + "scheduled_service": "yes", + "gps_code": "ZLLL", + "iata_code": "LHW", + "home_link": "http://lzzcairport.com/Home/Index", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lanzhou_Airport", + "keywords": "ZGC, Datong Air Base, 兰州中川国际机场" + }, + { + "id": "327544", + "ident": "ZLLN", + "type": "medium_airport", + "name": "Longnan Chengzhou Airport", + "latitude_deg": "33.789918", + "longitude_deg": "105.790014", + "elevation_ft": "3707", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "municipality": "Longnan (Cheng)", + "scheduled_service": "yes", + "gps_code": "ZLLN", + "iata_code": "LNL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Longnan_Chengzhou_Airport" + }, + { + "id": "323883", + "ident": "ZLPC", + "type": "small_airport", + "name": "Pucheng Neifu Airport", + "latitude_deg": "34.833345", + "longitude_deg": "109.544267", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-61", + "municipality": "Weinan (Pucheng)", + "scheduled_service": "no", + "gps_code": "ZLPC" + }, + { + "id": "31685", + "ident": "ZLQY", + "type": "medium_airport", + "name": "Qingyang Xifeng Airport", + "latitude_deg": "35.802638", + "longitude_deg": "107.598896", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "municipality": "Qingyang (Xifeng)", + "scheduled_service": "yes", + "gps_code": "ZLQY", + "iata_code": "IQN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qingyang_Airport", + "keywords": "Dingxi Air Base" + }, + { + "id": "32299", + "ident": "ZLSN", + "type": "medium_airport", + "name": "Xi'an Xiguan Airport", + "latitude_deg": "34.376701", + "longitude_deg": "109.120003", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-61", + "municipality": "Xi'an (Baqiao)", + "scheduled_service": "no", + "gps_code": "ZLSN", + "iata_code": "SIA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Xi%27an_Xiguan_Airport", + "keywords": "Lintong Air Base" + }, + { + "id": "312986", + "ident": "ZLXH", + "type": "medium_airport", + "name": "Gannan Xiahe Airport", + "latitude_deg": "34.819014", + "longitude_deg": "102.622261", + "elevation_ft": "10510", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "municipality": "Gannan (Xiahe)", + "scheduled_service": "yes", + "gps_code": "ZLXH", + "iata_code": "GXH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Gannan_Xiahe_Airport", + "keywords": "Hezuo" + }, + { + "id": "32709", + "ident": "ZLXN", + "type": "medium_airport", + "name": "Xining Caojiabao International Airport", + "latitude_deg": "36.528295", + "longitude_deg": "102.040157", + "elevation_ft": "7119", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-63", + "municipality": "Haidong (Huzhu Tu Autonomous County)", + "scheduled_service": "yes", + "gps_code": "ZLXN", + "iata_code": "XNN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Xining_Caojiabao_International_Airport", + "keywords": "Caojiabu, Caojiapu" + }, + { + "id": "27205", + "ident": "ZLXY", + "type": "large_airport", + "name": "Xi'an Xianyang International Airport", + "latitude_deg": "34.447102", + "longitude_deg": "108.751999", + "elevation_ft": "1572", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-61", + "municipality": "Xianyang (Weicheng)", + "scheduled_service": "yes", + "gps_code": "ZLXY", + "iata_code": "XIY", + "home_link": "http://www.xxia.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Xi'an_Xianyang_International_Airport", + "keywords": "西安咸阳国际机场, Xian" + }, + { + "id": "31009", + "ident": "ZLYA", + "type": "closed", + "name": "Yan'an Ershilipu Airport", + "latitude_deg": "36.636902", + "longitude_deg": "109.554001", + "elevation_ft": "3100", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-61", + "municipality": "Yan'an (Baota)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yan%27an_Ershilipu_Airport", + "keywords": "ENY, ZLYA" + }, + { + "id": "32563", + "ident": "ZLYL", + "type": "small_airport", + "name": "Yulin Yuyang Airport", + "latitude_deg": "38.35971", + "longitude_deg": "109.590927", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-61", + "municipality": "Yulin", + "scheduled_service": "yes", + "gps_code": "ZLYL", + "iata_code": "UYN", + "home_link": "http://www.cwag-yl.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yulin_Yuyang_Airport" + }, + { + "id": "308462", + "ident": "ZLZW", + "type": "medium_airport", + "name": "Zhongwei Shapotou Airport", + "latitude_deg": "37.573125", + "longitude_deg": "105.154454", + "elevation_ft": "8202", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-64", + "municipality": "Zhongwei (Shapotou)", + "scheduled_service": "yes", + "gps_code": "ZLZW", + "iata_code": "ZHY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zhongwei_Shapotou_Airport" + }, + { + "id": "41851", + "ident": "ZM-0001", + "type": "small_airport", + "name": "Lilayi Airport", + "latitude_deg": "-15.512200355500001", + "longitude_deg": "28.3246002197", + "elevation_ft": "4264", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-09", + "municipality": "Lilayi", + "scheduled_service": "no" + }, + { + "id": "308257", + "ident": "ZM-0002", + "type": "small_airport", + "name": "Mumbwa", + "latitude_deg": "-15.072745130299998", + "longitude_deg": "27.1867847443", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-02", + "scheduled_service": "no", + "keywords": "Military" + }, + { + "id": "318959", + "ident": "ZM-0003", + "type": "small_airport", + "name": "Luangwa Airport", + "latitude_deg": "-15.606715", + "longitude_deg": "30.395529", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-09", + "municipality": "Luangwa", + "scheduled_service": "no" + }, + { + "id": "319005", + "ident": "ZM-0004", + "type": "small_airport", + "name": "Sinazongwe Airport", + "latitude_deg": "-17.212746", + "longitude_deg": "27.488112", + "elevation_ft": "1663", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Sinasongwe", + "scheduled_service": "no" + }, + { + "id": "319006", + "ident": "ZM-0005", + "type": "small_airport", + "name": "Stakota Airport", + "latitude_deg": "-16.788029", + "longitude_deg": "28.006395", + "elevation_ft": "1850", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Chaposwa", + "scheduled_service": "no" + }, + { + "id": "319016", + "ident": "ZM-0006", + "type": "small_airport", + "name": "Macha Airport", + "latitude_deg": "-16.373833", + "longitude_deg": "26.800379", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Macha", + "scheduled_service": "no" + }, + { + "id": "319017", + "ident": "ZM-0007", + "type": "small_airport", + "name": "Kafue Airport", + "latitude_deg": "-15.729562", + "longitude_deg": "28.093427", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-09", + "municipality": "Kafue", + "scheduled_service": "no" + }, + { + "id": "319018", + "ident": "ZM-0008", + "type": "small_airport", + "name": "Nega Nega Airport", + "latitude_deg": "-15.81435", + "longitude_deg": "27.969187", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Nega Nega", + "scheduled_service": "no" + }, + { + "id": "319019", + "ident": "ZM-0009", + "type": "small_airport", + "name": "Chisamba Airport", + "latitude_deg": "-14.85601", + "longitude_deg": "28.310738", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-02", + "municipality": "Chisamba", + "scheduled_service": "no" + }, + { + "id": "319020", + "ident": "ZM-0010", + "type": "small_airport", + "name": "Sandwe Airport", + "latitude_deg": "-14.944389", + "longitude_deg": "28.115043", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-02", + "municipality": "Sandwe", + "scheduled_service": "no", + "keywords": "AG7094" + }, + { + "id": "319021", + "ident": "ZM-0011", + "type": "small_airport", + "name": "Kamilonga Airport", + "latitude_deg": "-15.003311", + "longitude_deg": "28.08601", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-02", + "municipality": "Kamilonga", + "scheduled_service": "no", + "keywords": "AG7080" + }, + { + "id": "319022", + "ident": "ZM-0012", + "type": "small_airport", + "name": "Liteta Airport", + "latitude_deg": "-14.826645", + "longitude_deg": "28.023642", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-02", + "municipality": "Liteta", + "scheduled_service": "no", + "keywords": "AG7086" + }, + { + "id": "319023", + "ident": "ZM-0013", + "type": "small_airport", + "name": "Chiwala Airport", + "latitude_deg": "-14.608313", + "longitude_deg": "28.343263", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-02", + "municipality": "Chiwala", + "scheduled_service": "no" + }, + { + "id": "319024", + "ident": "ZM-0014", + "type": "small_airport", + "name": "Mpongwe Airport", + "latitude_deg": "-13.636671", + "longitude_deg": "27.758297", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-08", + "municipality": "Mpongwe", + "scheduled_service": "no" + }, + { + "id": "319025", + "ident": "ZM-0015", + "type": "small_airport", + "name": "Karubwe Airport", + "latitude_deg": "-15.091233", + "longitude_deg": "28.274492", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-02", + "municipality": "Karubwe", + "scheduled_service": "no", + "keywords": "AG7083" + }, + { + "id": "319026", + "ident": "ZM-0016", + "type": "small_airport", + "name": "Silver Rest Airport", + "latitude_deg": "-15.37784", + "longitude_deg": "28.53434", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-09", + "municipality": "Silver Rest", + "scheduled_service": "no" + }, + { + "id": "319027", + "ident": "ZM-0017", + "type": "small_airport", + "name": "Kashikishi Airport", + "latitude_deg": "-9.308608", + "longitude_deg": "28.752645", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-04", + "municipality": "Kashikishi", + "scheduled_service": "no" + }, + { + "id": "319042", + "ident": "ZM-0018", + "type": "small_airport", + "name": "Nakambala Airport", + "latitude_deg": "-15.774672", + "longitude_deg": "27.842683", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Nakambala", + "scheduled_service": "no" + }, + { + "id": "319043", + "ident": "ZM-0019", + "type": "small_airport", + "name": "Kamwe Airport", + "latitude_deg": "-15.930906", + "longitude_deg": "27.956752", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Kamwe", + "scheduled_service": "no" + }, + { + "id": "319044", + "ident": "ZM-0020", + "type": "small_airport", + "name": "Kamwe West Airport", + "latitude_deg": "-15.915225", + "longitude_deg": "27.931955", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Kamwe", + "scheduled_service": "no" + }, + { + "id": "319045", + "ident": "ZM-0021", + "type": "small_airport", + "name": "Lochinvar Airport", + "latitude_deg": "-16.009561", + "longitude_deg": "27.249314", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Bwanda", + "scheduled_service": "no", + "gps_code": "FLLV" + }, + { + "id": "319046", + "ident": "ZM-0022", + "type": "closed", + "name": "D181 Airport", + "latitude_deg": "-13.956405", + "longitude_deg": "26.311195", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-06", + "scheduled_service": "no" + }, + { + "id": "319047", + "ident": "ZM-0023", + "type": "small_airport", + "name": "Lufupa Lodge Airstrip", + "latitude_deg": "-14.603896", + "longitude_deg": "26.168059", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-06", + "scheduled_service": "no" + }, + { + "id": "319240", + "ident": "ZM-0024", + "type": "small_airport", + "name": "Majuaneti Airport", + "latitude_deg": "-15.913306", + "longitude_deg": "28.861505", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-09", + "municipality": "Majuaneti", + "scheduled_service": "no" + }, + { + "id": "319243", + "ident": "ZM-0025", + "type": "small_airport", + "name": "Katemo Airport", + "latitude_deg": "-15.607539", + "longitude_deg": "29.806837", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-09", + "municipality": "Katemo", + "scheduled_service": "no" + }, + { + "id": "319247", + "ident": "ZM-0026", + "type": "small_airport", + "name": "Simonga Airport", + "latitude_deg": "-17.795194", + "longitude_deg": "25.626729", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Simonga", + "scheduled_service": "no" + }, + { + "id": "326766", + "ident": "ZM-0027", + "type": "small_airport", + "name": "Mufumbwe Airstrip", + "latitude_deg": "-13.088211", + "longitude_deg": "25.003993", + "elevation_ft": "3763", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-03", + "municipality": ";ifi,bwe", + "scheduled_service": "no" + }, + { + "id": "326767", + "ident": "ZM-0028", + "type": "small_airport", + "name": "Loloma Airstrip", + "latitude_deg": "-13.400203", + "longitude_deg": "24.335572", + "elevation_ft": "3626", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-06", + "municipality": "Manyinga", + "scheduled_service": "no" + }, + { + "id": "351660", + "ident": "ZM-0029", + "type": "small_airport", + "name": "Charangwe Lower Zambezi Safari Lodge Airport", + "latitude_deg": "-15.78044", + "longitude_deg": "29.1937", + "elevation_ft": "1211", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-09", + "municipality": "Lower Zambezi River", + "scheduled_service": "no" + }, + { + "id": "351662", + "ident": "ZM-0030", + "type": "small_airport", + "name": "Maunga River Airport", + "latitude_deg": "-18.01637", + "longitude_deg": "26.74365", + "elevation_ft": "1673", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Zimba", + "scheduled_service": "no" + }, + { + "id": "351663", + "ident": "ZM-0031", + "type": "heliport", + "name": "Maunga River Lodge Heliport", + "latitude_deg": "-18.01917", + "longitude_deg": "26.74355", + "elevation_ft": "1720", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Zimba", + "scheduled_service": "no" + }, + { + "id": "351668", + "ident": "ZM-0032", + "type": "small_airport", + "name": "Cisera Airport", + "latitude_deg": "-16.091733", + "longitude_deg": "27.864118", + "elevation_ft": "3790", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Hakale", + "scheduled_service": "no" + }, + { + "id": "351672", + "ident": "ZM-0033", + "type": "small_airport", + "name": "Batoka Gorge North Airport", + "latitude_deg": "-17.918404", + "longitude_deg": "26.10312", + "elevation_ft": "2838", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Mukuni", + "scheduled_service": "no" + }, + { + "id": "351675", + "ident": "ZM-0034", + "type": "small_airport", + "name": "Baobab Camp Airport", + "latitude_deg": "-17.892416", + "longitude_deg": "25.871928", + "elevation_ft": "2989", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Livingstone", + "scheduled_service": "no" + }, + { + "id": "351676", + "ident": "ZM-0035", + "type": "small_airport", + "name": "Batoka Airport", + "latitude_deg": "-17.88415", + "longitude_deg": "25.84719", + "elevation_ft": "2949", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Livingstone", + "scheduled_service": "no" + }, + { + "id": "351680", + "ident": "ZM-0036", + "type": "heliport", + "name": "United Air Heliport", + "latitude_deg": "-17.89399", + "longitude_deg": "25.86293", + "elevation_ft": "2956", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Livingstone", + "scheduled_service": "no" + }, + { + "id": "351683", + "ident": "ZM-0037", + "type": "small_airport", + "name": "Sioma Airport", + "latitude_deg": "-16.69431", + "longitude_deg": "23.61346", + "elevation_ft": "3284", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-01", + "municipality": "Sioma", + "scheduled_service": "no" + }, + { + "id": "351685", + "ident": "ZM-0038", + "type": "small_airport", + "name": "Chitokoloki Airport", + "latitude_deg": "-13.83662", + "longitude_deg": "23.21172", + "elevation_ft": "3494", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-06", + "municipality": "Chitokoloki", + "scheduled_service": "no" + }, + { + "id": "351686", + "ident": "ZM-0039", + "type": "small_airport", + "name": "Chavuma Airport", + "latitude_deg": "-13.12071", + "longitude_deg": "22.69151", + "elevation_ft": "3425", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-06", + "municipality": "Chavuma", + "scheduled_service": "no" + }, + { + "id": "351690", + "ident": "ZM-0040", + "type": "heliport", + "name": "Royal Livingstone Victoria Falls Zambia Hotel by Anantara Heliport", + "latitude_deg": "-17.92142", + "longitude_deg": "25.8662", + "elevation_ft": "2933", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Livingstone", + "scheduled_service": "no" + }, + { + "id": "351691", + "ident": "ZM-0041", + "type": "heliport", + "name": "Baobab Camp Heliport", + "latitude_deg": "-17.89793", + "longitude_deg": "25.8674", + "elevation_ft": "3025", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Livingstone", + "scheduled_service": "no" + }, + { + "id": "351692", + "ident": "ZM-0042", + "type": "small_airport", + "name": "Maramba River Airport", + "latitude_deg": "-17.87528", + "longitude_deg": "25.88331", + "elevation_ft": "2982", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-07", + "municipality": "Livingstone", + "scheduled_service": "no" + }, + { + "id": "352984", + "ident": "ZM-0043", + "type": "small_airport", + "name": "Cedrics Farm Airport", + "latitude_deg": "-12.90586", + "longitude_deg": "28.25853", + "elevation_ft": "3957", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-08", + "municipality": "Kitwe", + "scheduled_service": "no" + }, + { + "id": "353214", + "ident": "ZM-0044", + "type": "small_airport", + "name": "Siame Gardens Airport", + "latitude_deg": "-12.90538", + "longitude_deg": "28.30679", + "elevation_ft": "3960", + "continent": "AF", + "iso_country": "ZM", + "iso_region": "ZM-08", + "municipality": "Kitwe", + "scheduled_service": "no" + }, + { + "id": "29670", + "ident": "ZMAH", + "type": "medium_airport", + "name": "Arvaikheer Airport", + "latitude_deg": "46.250301361083984", + "longitude_deg": "102.802001953125", + "elevation_ft": "5932", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-055", + "municipality": "Arvaikheer", + "scheduled_service": "yes", + "gps_code": "ZMAH", + "iata_code": "AVK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Arvaikheer_Airport" + }, + { + "id": "29654", + "ident": "ZMAT", + "type": "medium_airport", + "name": "Altai Airport", + "latitude_deg": "46.376399993896484", + "longitude_deg": "96.22109985351562", + "elevation_ft": "7260", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-065", + "municipality": "Altai", + "scheduled_service": "yes", + "gps_code": "ZMAT", + "iata_code": "LTI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Altai_Airport" + }, + { + "id": "354382", + "ident": "ZMAZ", + "type": "small_airport", + "name": "Mazongshan Airport", + "latitude_deg": "42.308371", + "longitude_deg": "97.077148", + "elevation_ft": "5462", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-62", + "municipality": "Mazongshan", + "scheduled_service": "no", + "gps_code": "ZMAZ" + }, + { + "id": "32748", + "ident": "ZMBD", + "type": "small_airport", + "name": "Binder Airport", + "latitude_deg": "48.6067008972168", + "longitude_deg": "110.60800170898438", + "elevation_ft": "3422", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-039", + "municipality": "Binder", + "scheduled_service": "no", + "gps_code": "ZMBD" + }, + { + "id": "27206", + "ident": "ZMBH", + "type": "medium_airport", + "name": "Bayankhongor Airport", + "latitude_deg": "46.163299560546875", + "longitude_deg": "100.7040023803711", + "elevation_ft": "6085", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-069", + "municipality": "Bayankhongor", + "scheduled_service": "yes", + "gps_code": "ZMBH", + "iata_code": "BYN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bayankhongor_Airport" + }, + { + "id": "29736", + "ident": "ZMBN", + "type": "medium_airport", + "name": "Bulgan Airport", + "latitude_deg": "48.85499954223633", + "longitude_deg": "103.47599792480469", + "elevation_ft": "4311", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-067", + "municipality": "Bulgan", + "scheduled_service": "yes", + "gps_code": "ZMBN", + "iata_code": "UGA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bulgan_Airport" + }, + { + "id": "29735", + "ident": "ZMBR", + "type": "small_airport", + "name": "Bulagtai Resort Airport", + "latitude_deg": "43.749304", + "longitude_deg": "104.114985", + "elevation_ft": "4659", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-055", + "municipality": "Khankhongor, Ömnögovi", + "scheduled_service": "no", + "gps_code": "ZMBR", + "iata_code": "UGT" + }, + { + "id": "29737", + "ident": "ZMBS", + "type": "small_airport", + "name": "Bulgan Sum Airport", + "latitude_deg": "46.100601", + "longitude_deg": "91.584198", + "elevation_ft": "3921", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-043", + "municipality": "Bulgan", + "scheduled_service": "no", + "gps_code": "ZMBS", + "iata_code": "HBU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bulgan_Airport,_Khovd" + }, + { + "id": "27207", + "ident": "ZMBU", + "type": "medium_airport", + "name": "Baruun Urt Airport", + "latitude_deg": "46.660301208496094", + "longitude_deg": "113.28500366210938", + "elevation_ft": "3205", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-051", + "scheduled_service": "no", + "gps_code": "ZMBU", + "iata_code": "UUN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Baruun-Urt_Airport" + }, + { + "id": "27208", + "ident": "ZMCD", + "type": "medium_airport", + "name": "Choibalsan Airport", + "latitude_deg": "48.13570022583008", + "longitude_deg": "114.64600372314453", + "elevation_ft": "2457", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-061", + "scheduled_service": "no", + "gps_code": "ZMCD", + "iata_code": "COQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Choibalsan_airport" + }, + { + "id": "335326", + "ident": "ZMCK", + "type": "large_airport", + "name": "Ulaanbaatar Chinggis Khaan International Airport", + "latitude_deg": "47.646916", + "longitude_deg": "106.819833", + "elevation_ft": "4482", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-047", + "municipality": "Ulaanbaatar (Sergelen)", + "scheduled_service": "yes", + "gps_code": "ZMCK", + "iata_code": "UBN", + "wikipedia_link": "https://en.wikipedia.org/wiki/New_Ulaanbaatar_International_Airport", + "keywords": "Khöshig Valley" + }, + { + "id": "315547", + "ident": "ZMD", + "type": "small_airport", + "name": "Sena Madureira Airport", + "latitude_deg": "-9.116", + "longitude_deg": "-68.6108", + "elevation_ft": "540", + "continent": "SA", + "iso_country": "BR", + "iso_region": "BR-AC", + "municipality": "Sena Madureira", + "scheduled_service": "no", + "iata_code": "ZMD", + "wikipedia_link": "https://pt.wikipedia.org/wiki/Aeroporto_de_Sena_Madureira" + }, + { + "id": "308754", + "ident": "ZMDA", + "type": "small_airport", + "name": "Dadal Airport", + "latitude_deg": "49.0124", + "longitude_deg": "111.509", + "elevation_ft": "3220", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-039", + "municipality": "Dadal", + "scheduled_service": "no", + "gps_code": "ZMDA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dadal_Airport" + }, + { + "id": "308755", + "ident": "ZMDN", + "type": "small_airport", + "name": "Donoi Airport", + "latitude_deg": "47.7093", + "longitude_deg": "96.5258", + "elevation_ft": "5800", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-057", + "municipality": "Uliastai", + "scheduled_service": "yes", + "gps_code": "ZMDN", + "iata_code": "ULZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Donoi_Airport", + "keywords": "New Uliastai Airport" + }, + { + "id": "27209", + "ident": "ZMDZ", + "type": "medium_airport", + "name": "Dalanzadgad Airport", + "latitude_deg": "43.608628", + "longitude_deg": "104.367734", + "elevation_ft": "4787", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-055", + "municipality": "Dalanzadgad, Ömnögovi", + "scheduled_service": "yes", + "gps_code": "ZMDZ", + "iata_code": "DLZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dalanzadgad_Airport" + }, + { + "id": "354385", + "ident": "ZMGT", + "type": "small_airport", + "name": "Ovoot Airport", + "latitude_deg": "43.01192", + "longitude_deg": "101.333781", + "elevation_ft": "5171", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-055", + "municipality": "Ovoot Tolgoi, Ömnögovi", + "scheduled_service": "no", + "gps_code": "ZMGT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ovoot_Airport" + }, + { + "id": "302315", + "ident": "ZMHH", + "type": "small_airport", + "name": "Kharkhorin Airport", + "latitude_deg": "47.246667", + "longitude_deg": "102.826111", + "elevation_ft": "4759", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-055", + "scheduled_service": "no", + "gps_code": "ZMHH", + "iata_code": "KHR", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kharkhorin_Airport" + }, + { + "id": "30025", + "ident": "ZMHU", + "type": "small_airport", + "name": "Khujirt Airport", + "latitude_deg": "46.9258003235", + "longitude_deg": "102.773002625", + "elevation_ft": "5522", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-055", + "municipality": "Khujirt", + "scheduled_service": "no", + "gps_code": "ZMHU", + "iata_code": "HJT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khujirt_Airport" + }, + { + "id": "27210", + "ident": "ZMKD", + "type": "medium_airport", + "name": "Khovd Airport", + "latitude_deg": "47.9541015625", + "longitude_deg": "91.6281967163086", + "elevation_ft": "4898", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-043", + "municipality": "Khovd", + "scheduled_service": "yes", + "gps_code": "ZMKD", + "iata_code": "HVD", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khovd_Airport", + "keywords": "Hovd, Kobdo" + }, + { + "id": "27211", + "ident": "ZMMN", + "type": "medium_airport", + "name": "Mörön Airport", + "latitude_deg": "49.663299560546875", + "longitude_deg": "100.0989990234375", + "elevation_ft": "4272", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-041", + "municipality": "Mörön", + "scheduled_service": "yes", + "gps_code": "ZMMN", + "iata_code": "MXV", + "wikipedia_link": "https://en.wikipedia.org/wiki/M%C3%B6r%C3%B6n_Airport", + "keywords": "Muren" + }, + { + "id": "308351", + "ident": "ZMOT", + "type": "small_airport", + "name": "Khanbumbat Airport", + "latitude_deg": "43.145552", + "longitude_deg": "106.843509", + "elevation_ft": "3924", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-055", + "municipality": "Khanbogd, Ömnögovi", + "scheduled_service": "no", + "gps_code": "ZMKB", + "home_link": "http://ot.mn/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Khanbumbat_Airport", + "keywords": "Oyu Tolgoi" + }, + { + "id": "30373", + "ident": "ZMSH", + "type": "small_airport", + "name": "Sainshand Airport", + "latitude_deg": "44.984831", + "longitude_deg": "110.17651", + "elevation_ft": "3022", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-063", + "municipality": "Sainshand", + "scheduled_service": "no", + "gps_code": "ZMSH" + }, + { + "id": "308764", + "ident": "ZMTG", + "type": "small_airport", + "name": "Tsetserleg Airport", + "latitude_deg": "47.461476", + "longitude_deg": "101.483804", + "elevation_ft": "5530", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-073", + "municipality": "Tsetserleg", + "scheduled_service": "no", + "gps_code": "ZMTG", + "iata_code": "TSZ" + }, + { + "id": "308765", + "ident": "ZMTL", + "type": "small_airport", + "name": "Tosontsengel Airport", + "latitude_deg": "48.73887", + "longitude_deg": "98.2941", + "elevation_ft": "5610", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-057", + "municipality": "Tosontsengel", + "scheduled_service": "no", + "gps_code": "ZMTL", + "iata_code": "TNZ" + }, + { + "id": "27212", + "ident": "ZMUB", + "type": "medium_airport", + "name": "Buyant-Ukhaa International Airport", + "latitude_deg": "47.843102", + "longitude_deg": "106.766998", + "elevation_ft": "4364", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-1", + "municipality": "Ulaanbaatar", + "scheduled_service": "no", + "gps_code": "ZMUB", + "iata_code": "ULN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Buyant-Ukhaa_International_Airport", + "keywords": "Chinggis Khaan International" + }, + { + "id": "302316", + "ident": "ZMUG", + "type": "small_airport", + "name": "Ulaangom Airport", + "latitude_deg": "50.066588", + "longitude_deg": "91.938273", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-046", + "municipality": "Ulaangom", + "scheduled_service": "yes", + "gps_code": "ZMUG", + "iata_code": "ULO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ulaangom_Airport" + }, + { + "id": "30505", + "ident": "ZMUL", + "type": "small_airport", + "name": "Ölgii Mongolei Airport", + "latitude_deg": "48.993301", + "longitude_deg": "89.922501", + "elevation_ft": "5732", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-071", + "municipality": "Ölgii", + "scheduled_service": "yes", + "gps_code": "ZMUL", + "iata_code": "ULG", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%96lgii_Airport", + "keywords": "Ulgii Mongolei" + }, + { + "id": "26369", + "ident": "ZNC", + "type": "small_airport", + "name": "Nyac Airport", + "latitude_deg": "60.9807014465", + "longitude_deg": "-159.994003296", + "elevation_ft": "460", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-AK", + "municipality": "Nyac", + "scheduled_service": "no", + "gps_code": "ZNC", + "iata_code": "ZNC", + "local_code": "ZNC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nyac_Airport" + }, + { + "id": "332195", + "ident": "ZNU", + "type": "seaplane_base", + "name": "Namu Water Aerodrome", + "latitude_deg": "51.862825", + "longitude_deg": "-127.869357", + "elevation_ft": "0", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-BC", + "municipality": "Namu", + "scheduled_service": "no", + "iata_code": "ZNU" + }, + { + "id": "327447", + "ident": "ZPCW", + "type": "medium_airport", + "name": "Cangyuan Washan Airport", + "latitude_deg": "23.276331", + "longitude_deg": "99.373169", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Lincang (Cangyuan)", + "scheduled_service": "yes", + "gps_code": "ZPCW", + "iata_code": "CWJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Cangyuan_Washan_Airport" + }, + { + "id": "30925", + "ident": "ZPDL", + "type": "medium_airport", + "name": "Dali Fengyi Airport", + "latitude_deg": "25.649401", + "longitude_deg": "100.319", + "elevation_ft": "7050", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Dali (Xiaguan)", + "scheduled_service": "yes", + "gps_code": "ZPDL", + "iata_code": "DLU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dali_Airport", + "keywords": "Dali Air Base" + }, + { + "id": "30916", + "ident": "ZPDQ", + "type": "medium_airport", + "name": "Diqing Shangri-La Airport", + "latitude_deg": "27.7936", + "longitude_deg": "99.6772", + "elevation_ft": "10761", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Diqing (Shangri-La)", + "scheduled_service": "yes", + "gps_code": "ZPDQ", + "iata_code": "DIG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Diqing_Shangri-La_Airport" + }, + { + "id": "27213", + "ident": "ZPJH", + "type": "medium_airport", + "name": "Xishuangbanna Gasa International Airport", + "latitude_deg": "21.974648", + "longitude_deg": "100.762224", + "elevation_ft": "1815", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Jinghong (Gasa)", + "scheduled_service": "yes", + "gps_code": "ZPJH", + "iata_code": "JHG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Xishuangbanna_Gasa_International_Airport", + "keywords": "Sipsong Panna" + }, + { + "id": "327448", + "ident": "ZPJM", + "type": "medium_airport", + "name": "Lancang Jingmai Airport", + "latitude_deg": "22.417733", + "longitude_deg": "99.784012", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Pu'er (Lancang)", + "scheduled_service": "yes", + "gps_code": "ZPJM", + "iata_code": "JMJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lancang_Jingmai_Airport" + }, + { + "id": "31828", + "ident": "ZPLJ", + "type": "medium_airport", + "name": "Lijiang Sanyi International Airport", + "latitude_deg": "26.68", + "longitude_deg": "100.246002", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Lijiang (Gucheng)", + "scheduled_service": "yes", + "gps_code": "ZPLJ", + "iata_code": "LJG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lijiang_Sanyi_Airport", + "keywords": "Yunlong Air Base" + }, + { + "id": "31862", + "ident": "ZPLX", + "type": "medium_airport", + "name": "Dehong Mangshi Airport", + "latitude_deg": "24.4011", + "longitude_deg": "98.5317", + "elevation_ft": "2890", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Dehong (Mangshi)", + "scheduled_service": "yes", + "gps_code": "ZPMS", + "iata_code": "LUM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dehong_Mangshi_Airport" + }, + { + "id": "27214", + "ident": "ZPPP", + "type": "large_airport", + "name": "Kunming Changshui International Airport", + "latitude_deg": "25.110313", + "longitude_deg": "102.936743", + "elevation_ft": "6903", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Kunming", + "scheduled_service": "yes", + "gps_code": "ZPPP", + "iata_code": "KMG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kunming_Changshui_International_Airport" + }, + { + "id": "32417", + "ident": "ZPSM", + "type": "small_airport", + "name": "Pu'er Simao Airport", + "latitude_deg": "22.793301", + "longitude_deg": "100.959", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Pu'er", + "scheduled_service": "yes", + "gps_code": "ZPSM", + "iata_code": "SYM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Pu%27er_Simao_Airport" + }, + { + "id": "318119", + "ident": "ZPWS", + "type": "small_airport", + "name": "Wenshan Puzhehei Airport", + "latitude_deg": "23.5583", + "longitude_deg": "104.3255", + "elevation_ft": "5217", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Wenshan", + "scheduled_service": "yes", + "gps_code": "ZPWS", + "iata_code": "WNH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wenshan_Puzhehei_Airport" + }, + { + "id": "32740", + "ident": "ZPZT", + "type": "small_airport", + "name": "Zhaotong Airport", + "latitude_deg": "27.327549", + "longitude_deg": "103.75617", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Zhaotong (Zhaoyang)", + "scheduled_service": "yes", + "gps_code": "ZPZT", + "iata_code": "ZAT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zhaotong_Airport" + }, + { + "id": "356138", + "ident": "ZRI", + "type": "medium_airport", + "name": "Stevanus Rumbewas Airport", + "latitude_deg": "-1.82842", + "longitude_deg": "136.062402", + "elevation_ft": "20", + "continent": "AS", + "iso_country": "ID", + "iso_region": "ID-PA", + "municipality": "Serui", + "scheduled_service": "no", + "gps_code": "WABO", + "iata_code": "ZRI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Stevanus_Rumbewas_Airport" + }, + { + "id": "27215", + "ident": "ZSAM", + "type": "large_airport", + "name": "Xiamen Gaoqi International Airport", + "latitude_deg": "24.54400062561035", + "longitude_deg": "118.12799835205078", + "elevation_ft": "59", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-35", + "municipality": "Xiamen", + "scheduled_service": "yes", + "gps_code": "ZSAM", + "iata_code": "XMN", + "home_link": "http://www.xiagc.com.cn/enweb/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Xiamen_Gaoqi_International_Airport", + "keywords": "厦门高崎国际机场" + }, + { + "id": "30650", + "ident": "ZSAQ", + "type": "medium_airport", + "name": "Anqing Tianzhushan Airport / Anqing North Air Base", + "latitude_deg": "30.582199", + "longitude_deg": "117.050003", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-34", + "municipality": "Anqing", + "scheduled_service": "yes", + "gps_code": "ZSAQ", + "iata_code": "AQG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anqing_Tianzhushan_Airport" + }, + { + "id": "301883", + "ident": "ZSBB", + "type": "medium_airport", + "name": "Bengbu Airport", + "latitude_deg": "32.8477333333", + "longitude_deg": "117.320244444", + "elevation_ft": "100", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-34", + "municipality": "Bengbu", + "scheduled_service": "no", + "gps_code": "ZSBB", + "iata_code": "BFU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bengbu_Airport" + }, + { + "id": "30871", + "ident": "ZSCG", + "type": "medium_airport", + "name": "Changzhou Benniu International Airport", + "latitude_deg": "31.919701", + "longitude_deg": "119.778999", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Changzhou", + "scheduled_service": "yes", + "gps_code": "ZSCG", + "iata_code": "CZX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Changzhou_Benniu_International_Airport" + }, + { + "id": "27216", + "ident": "ZSCN", + "type": "large_airport", + "name": "Nanchang Changbei International Airport", + "latitude_deg": "28.864815", + "longitude_deg": "115.90271", + "elevation_ft": "143", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-36", + "municipality": "Nanchang", + "scheduled_service": "yes", + "gps_code": "ZSCN", + "iata_code": "KHN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nanchang_Changbei_International_Airport" + }, + { + "id": "308240", + "ident": "ZSFY", + "type": "medium_airport", + "name": "Fuyang Xiguan Airport", + "latitude_deg": "32.882157", + "longitude_deg": "115.734364", + "elevation_ft": "104", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-34", + "municipality": "Yingzhou, Fuyang", + "scheduled_service": "yes", + "gps_code": "ZSFY", + "iata_code": "FUG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fuyang_Xiguan_Airport" + }, + { + "id": "27217", + "ident": "ZSFZ", + "type": "large_airport", + "name": "Fuzhou Changle International Airport", + "latitude_deg": "25.934669", + "longitude_deg": "119.66318", + "elevation_ft": "46", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-35", + "municipality": "Fuzhou", + "scheduled_service": "no", + "gps_code": "ZSFZ", + "iata_code": "FOC", + "local_code": "FOC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fuzhou_Changle_International_Airport" + }, + { + "id": "31769", + "ident": "ZSGZ", + "type": "small_airport", + "name": "Ganzhou Huangjin Airport", + "latitude_deg": "25.853333", + "longitude_deg": "114.778889", + "elevation_ft": "387", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-36", + "municipality": "Ganzhou", + "scheduled_service": "yes", + "gps_code": "ZSGZ", + "iata_code": "KOW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ganzhou_Huangjin_Airport" + }, + { + "id": "27218", + "ident": "ZSHC", + "type": "large_airport", + "name": "Hangzhou Xiaoshan International Airport", + "latitude_deg": "30.23609", + "longitude_deg": "120.428865", + "elevation_ft": "23", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-33", + "municipality": "Hangzhou", + "scheduled_service": "yes", + "gps_code": "ZSHC", + "iata_code": "HGH", + "home_link": "http://www.hzairport.com/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hangzhou_Xiaoshan_International_Airport", + "keywords": "Hang Zhou, 杭州萧山国际机场" + }, + { + "id": "352633", + "ident": "ZSHZ", + "type": "medium_airport", + "name": "Heze Mudan Airport", + "latitude_deg": "35.212972", + "longitude_deg": "115.736748", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Heze", + "scheduled_service": "yes", + "gps_code": "ZSHZ", + "iata_code": "HZA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Heze_Mudan_Airport" + }, + { + "id": "31695", + "ident": "ZSJD", + "type": "medium_airport", + "name": "Jingdezhen Luojia Airport", + "latitude_deg": "29.3386", + "longitude_deg": "117.176003", + "elevation_ft": "112", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-36", + "municipality": "Jingdezhen", + "scheduled_service": "yes", + "gps_code": "ZSJD", + "iata_code": "JDZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jingdezhen_Luojia_Airport", + "keywords": "Fouliang Air Base" + }, + { + "id": "35309", + "ident": "ZSJJ", + "type": "small_airport", + "name": "Jiujiang Lushan Airport", + "latitude_deg": "29.476944", + "longitude_deg": "115.801111", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-36", + "municipality": "Jiujiang", + "scheduled_service": "yes", + "gps_code": "ZSJJ", + "iata_code": "JIU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jiujiang_Lushan_Airport", + "keywords": "Mahuiling Air Base" + }, + { + "id": "27219", + "ident": "ZSJN", + "type": "large_airport", + "name": "Jinan Yaoqiang International Airport", + "latitude_deg": "36.857201", + "longitude_deg": "117.216003", + "elevation_ft": "76", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Jinan", + "scheduled_service": "yes", + "gps_code": "ZSJN", + "iata_code": "TNA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jinan_Yaoqiang_International_Airport" + }, + { + "id": "31714", + "ident": "ZSJU", + "type": "medium_airport", + "name": "Quzhou Airport", + "latitude_deg": "28.965799", + "longitude_deg": "118.899002", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-33", + "municipality": "Quzhou", + "scheduled_service": "yes", + "gps_code": "ZSJU", + "iata_code": "JUZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quzhou_Airport" + }, + { + "id": "44234", + "ident": "ZSLD", + "type": "medium_airport", + "name": "Longyan Guanzhishan Airport", + "latitude_deg": "25.6746997833", + "longitude_deg": "116.747001648", + "elevation_ft": "1225", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-35", + "municipality": "Longyan", + "scheduled_service": "yes", + "gps_code": "ZSLD", + "iata_code": "LCX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Longyan_Guanzhishan_Airport", + "keywords": "ZBSZ, Liancheng Air Base" + }, + { + "id": "35312", + "ident": "ZSLG", + "type": "small_airport", + "name": "Baitabu Air Base", + "latitude_deg": "34.571302", + "longitude_deg": "118.873143", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Lianyungang", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lianyungang_Baitabu_Airport", + "keywords": "Lianyungang Baitabu Airport" + }, + { + "id": "31658", + "ident": "ZSLQ", + "type": "medium_airport", + "name": "Taizhou Luqiao Airport", + "latitude_deg": "28.562201", + "longitude_deg": "121.429001", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-33", + "municipality": "Huangyan", + "scheduled_service": "yes", + "gps_code": "ZSLQ", + "iata_code": "HYN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Huangyan_Luqiao_Airport" + }, + { + "id": "31871", + "ident": "ZSLY", + "type": "small_airport", + "name": "Linyi Qiyang Airport", + "latitude_deg": "35.052918", + "longitude_deg": "118.411828", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Linyi", + "scheduled_service": "yes", + "gps_code": "ZSLY", + "iata_code": "LYI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Linyi_Airport" + }, + { + "id": "27220", + "ident": "ZSNB", + "type": "large_airport", + "name": "Ningbo Lishe International Airport", + "latitude_deg": "29.82670021057129", + "longitude_deg": "121.46199798583984", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-33", + "municipality": "Ningbo", + "scheduled_service": "yes", + "gps_code": "ZSNB", + "iata_code": "NGB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ningbo_Lishe_International_Airport" + }, + { + "id": "27221", + "ident": "ZSNJ", + "type": "large_airport", + "name": "Nanjing Lukou International Airport", + "latitude_deg": "31.735032", + "longitude_deg": "118.865949", + "elevation_ft": "49", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Nanjing", + "scheduled_service": "yes", + "gps_code": "ZSNJ", + "iata_code": "NKG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nanjing_Lukou_International_Airport" + }, + { + "id": "27222", + "ident": "ZSOF", + "type": "medium_airport", + "name": "Hefei Xinqiao International Airport", + "latitude_deg": "31.98779", + "longitude_deg": "116.9769", + "elevation_ft": "207", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-34", + "municipality": "Hefei", + "scheduled_service": "yes", + "gps_code": "ZSOF", + "iata_code": "HFE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hefei_Xinqiao_International_Airport" + }, + { + "id": "27223", + "ident": "ZSPD", + "type": "large_airport", + "name": "Shanghai Pudong International Airport", + "latitude_deg": "31.1434", + "longitude_deg": "121.805", + "elevation_ft": "13", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-31", + "municipality": "Shanghai (Pudong)", + "scheduled_service": "yes", + "gps_code": "ZSPD", + "iata_code": "PVG", + "home_link": "https://www.shanghaiairport.com/index.html", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shanghai_Pudong_International_Airport" + }, + { + "id": "31705", + "ident": "ZSQZ", + "type": "medium_airport", + "name": "Quanzhou Jinjiang International Airport", + "latitude_deg": "24.7964", + "longitude_deg": "118.589996", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-35", + "municipality": "Quanzhou", + "scheduled_service": "yes", + "gps_code": "ZSQZ", + "iata_code": "JJN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Quanzhou_Jinjiang_International_Airport", + "keywords": "Jinjiang Air Base, Chin Chiang, Qingyang" + }, + { + "id": "32235", + "ident": "ZSRG", + "type": "medium_airport", + "name": "Rugao Air Base", + "latitude_deg": "32.25788497924805", + "longitude_deg": "120.50165557861328", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Rugao", + "scheduled_service": "no", + "gps_code": "ZSRG", + "iata_code": "RUG" + }, + { + "id": "323218", + "ident": "ZSRZ", + "type": "medium_airport", + "name": "Rizhao Shanzihe Airport", + "latitude_deg": "35.405033", + "longitude_deg": "119.324403", + "elevation_ft": "121", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Rizhao", + "scheduled_service": "yes", + "gps_code": "ZSRZ", + "iata_code": "RIZ", + "home_link": "http://www.rzairport.com.cn/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Rizhao_Shanzihe_Airport" + }, + { + "id": "27225", + "ident": "ZSSS", + "type": "large_airport", + "name": "Shanghai Hongqiao International Airport", + "latitude_deg": "31.198104", + "longitude_deg": "121.33426", + "elevation_ft": "10", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-31", + "municipality": "Shanghai (Minhang)", + "scheduled_service": "yes", + "gps_code": "ZSSS", + "iata_code": "SHA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shanghai_Hongqiao_International_Airport" + }, + { + "id": "32420", + "ident": "ZSSZ", + "type": "medium_airport", + "name": "Suzhou Guangfu Airport", + "latitude_deg": "31.2631", + "longitude_deg": "120.401001", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Suzhou", + "scheduled_service": "no", + "gps_code": "ZSSZ", + "iata_code": "SZV", + "wikipedia_link": "https://en.wikipedia.org/wiki/Suzhou_Guangfu_Airport" + }, + { + "id": "32489", + "ident": "ZSTX", + "type": "medium_airport", + "name": "Tunxi International Airport", + "latitude_deg": "29.733299255371094", + "longitude_deg": "118.25599670410156", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-34", + "municipality": "Huangshan", + "scheduled_service": "yes", + "gps_code": "ZSTX", + "iata_code": "TXN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Huangshan_Tunxi_International_Airport" + }, + { + "id": "348698", + "ident": "ZSWA", + "type": "medium_airport", + "name": "Wuhu Xuanzhou Airport", + "latitude_deg": "31.1045", + "longitude_deg": "118.66687", + "elevation_ft": "80", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-34", + "municipality": "Wuhu", + "scheduled_service": "no", + "gps_code": "ZSWA", + "local_code": "WHA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wuhu_Xuanzhou_Airport" + }, + { + "id": "32646", + "ident": "ZSWF", + "type": "medium_airport", + "name": "Weifang Nanyuan Airport", + "latitude_deg": "36.646702", + "longitude_deg": "119.119003", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Weifang", + "scheduled_service": "yes", + "gps_code": "ZSWF", + "iata_code": "WEF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Weifang_Airport" + }, + { + "id": "27226", + "ident": "ZSWH", + "type": "medium_airport", + "name": "Weihai Dashuibo Airport", + "latitude_deg": "37.187099", + "longitude_deg": "122.228996", + "elevation_ft": "145", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Weihai", + "scheduled_service": "yes", + "gps_code": "ZSWH", + "iata_code": "WEH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Weihai_Airport", + "keywords": "Dashuipo, Yancheng Air Base" + }, + { + "id": "32649", + "ident": "ZSWU", + "type": "small_airport", + "name": "Wuhu Wanli Airport / Wuhu Air Base", + "latitude_deg": "31.3906", + "longitude_deg": "118.408997", + "elevation_ft": "34", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-34", + "municipality": "Wuhu", + "scheduled_service": "no", + "gps_code": "ZSWU", + "iata_code": "WHU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wuhu_Wanli_Airport" + }, + { + "id": "32684", + "ident": "ZSWX", + "type": "medium_airport", + "name": "Sunan Shuofang International Airport", + "latitude_deg": "31.494400024399997", + "longitude_deg": "120.429000854", + "elevation_ft": "24", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Wuxi", + "scheduled_service": "yes", + "gps_code": "ZSWX", + "iata_code": "WUX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wuxi_Shuofang_Airport", + "keywords": "Wuxi Airport" + }, + { + "id": "32683", + "ident": "ZSWY", + "type": "medium_airport", + "name": "Nanping Wuyishan Airport", + "latitude_deg": "27.7019", + "longitude_deg": "118.000999", + "elevation_ft": "614", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-35", + "municipality": "Wuyishan", + "scheduled_service": "yes", + "gps_code": "ZSWY", + "iata_code": "WUS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wuyishan_Airport" + }, + { + "id": "32672", + "ident": "ZSWZ", + "type": "large_airport", + "name": "Wenzhou Longwan International Airport", + "latitude_deg": "27.912201", + "longitude_deg": "120.851997", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-33", + "municipality": "Wenzhou", + "scheduled_service": "yes", + "gps_code": "ZSWZ", + "iata_code": "WNZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wenzhou_Longwan_International_Airport", + "keywords": "温州永强机场, Wenzhou Yongqiang Airport" + }, + { + "id": "32713", + "ident": "ZSXZ", + "type": "medium_airport", + "name": "Xuzhou Guanyin International Airport", + "latitude_deg": "34.059056", + "longitude_deg": "117.555278", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Xuzhou", + "scheduled_service": "yes", + "gps_code": "ZSXZ", + "iata_code": "XUZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Xuzhou_Guanyin_Airport" + }, + { + "id": "317774", + "ident": "ZSYA", + "type": "medium_airport", + "name": "Yangzhou Taizhou Airport", + "latitude_deg": "32.5634", + "longitude_deg": "119.7198", + "elevation_ft": "7", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Yangzhou", + "scheduled_service": "yes", + "gps_code": "ZSYA", + "iata_code": "YTY", + "home_link": "http://www.yztzairport.net/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yangzhou_Taizhou_Airport", + "keywords": "Yangtai Airport" + }, + { + "id": "315853", + "ident": "ZSYC", + "type": "medium_airport", + "name": "Yichun Mingyueshan Airport", + "latitude_deg": "27.8025", + "longitude_deg": "114.3062", + "elevation_ft": "430", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-36", + "municipality": "Yichun", + "scheduled_service": "yes", + "gps_code": "ZSYC", + "iata_code": "YIC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yichun_Mingyueshan_Airport" + }, + { + "id": "35316", + "ident": "ZSYN", + "type": "medium_airport", + "name": "Yancheng Nanyang International Airport", + "latitude_deg": "33.425833", + "longitude_deg": "120.203056", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-32", + "municipality": "Yancheng", + "scheduled_service": "yes", + "gps_code": "ZSYN", + "iata_code": "YNZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yancheng_Nanyang_International_Airport" + }, + { + "id": "27227", + "ident": "ZSYT", + "type": "small_airport", + "name": "Yantai Laishan Airport", + "latitude_deg": "37.396825", + "longitude_deg": "121.369571", + "elevation_ft": "59", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-37", + "municipality": "Yantai", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yantai_Laishan_Airport", + "keywords": "YNT, ZSYT" + }, + { + "id": "32726", + "ident": "ZSYW", + "type": "medium_airport", + "name": "Yiwu Airport", + "latitude_deg": "29.3446998596", + "longitude_deg": "120.031997681", + "elevation_ft": "262", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-33", + "municipality": "Yiwu", + "scheduled_service": "yes", + "gps_code": "ZSYW", + "iata_code": "YIW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yiwu_Airport" + }, + { + "id": "31624", + "ident": "ZSZS", + "type": "small_airport", + "name": "Zhoushan Putuoshan Airport", + "latitude_deg": "29.9342", + "longitude_deg": "122.362", + "elevation_ft": "3", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-33", + "municipality": "Zhoushan", + "scheduled_service": "yes", + "gps_code": "ZSZS", + "iata_code": "HSN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zhoushan_Putuoshan_Airport" + }, + { + "id": "300545", + "ident": "ZUAL", + "type": "medium_airport", + "name": "Ngari Gunsa Airport", + "latitude_deg": "32.1", + "longitude_deg": "80.053056", + "elevation_ft": "14022", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-54", + "municipality": "Shiquanhe", + "scheduled_service": "yes", + "gps_code": "ZUAL", + "iata_code": "NGQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ngari_Gunsa_Airport", + "keywords": "Ali Airport" + }, + { + "id": "300785", + "ident": "ZUAS", + "type": "medium_airport", + "name": "Anshun Huangguoshu Airport", + "latitude_deg": "26.260556", + "longitude_deg": "105.873333", + "elevation_ft": "4812", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-52", + "municipality": "Anshun (Xixiu)", + "scheduled_service": "yes", + "gps_code": "ZUAS", + "iata_code": "AVA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anshun_Huangguoshu_Airport" + }, + { + "id": "30788", + "ident": "ZUBD", + "type": "medium_airport", + "name": "Qamdo Bangda Airport", + "latitude_deg": "30.553600311279297", + "longitude_deg": "97.1082992553711", + "elevation_ft": "14219", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-54", + "municipality": "Bangda", + "scheduled_service": "yes", + "gps_code": "ZUBD", + "iata_code": "BPX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bangda_Airport" + }, + { + "id": "318169", + "ident": "ZUBJ", + "type": "medium_airport", + "name": "Bijie Feixiong Airport", + "latitude_deg": "27.267066", + "longitude_deg": "105.472097", + "elevation_ft": "4751", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-52", + "municipality": "Bijie", + "scheduled_service": "yes", + "gps_code": "ZUBJ", + "iata_code": "BFJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bijie_Feixiong_Airport" + }, + { + "id": "27228", + "ident": "ZUCK", + "type": "large_airport", + "name": "Chongqing Jiangbei International Airport", + "latitude_deg": "29.712254", + "longitude_deg": "106.651895", + "elevation_ft": "1365", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-50", + "municipality": "Chongqing", + "scheduled_service": "yes", + "gps_code": "ZUCK", + "iata_code": "CKG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chongqing_Jiangbei_International_Airport" + }, + { + "id": "327348", + "ident": "ZUDC", + "type": "medium_airport", + "name": "Daocheng Yading Airport", + "latitude_deg": "29.31632", + "longitude_deg": "100.060317", + "elevation_ft": "14472", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Garzê (Daocheng)", + "scheduled_service": "yes", + "gps_code": "ZUDC", + "iata_code": "DCY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Daocheng_Yading_Airport" + }, + { + "id": "35307", + "ident": "ZUDX", + "type": "small_airport", + "name": "Dachuan Airport", + "latitude_deg": "31.1302", + "longitude_deg": "107.4295", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Dazhou (Daxian)", + "scheduled_service": "yes", + "gps_code": "ZUDX", + "iata_code": "DAX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Daxian_Airport", + "keywords": "Daxian" + }, + { + "id": "308739", + "ident": "ZUGH", + "type": "small_airport", + "name": "Guanghan Airport", + "latitude_deg": "30.9485", + "longitude_deg": "104.3296", + "elevation_ft": "1531", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Deyang (Guanghan)", + "scheduled_service": "no", + "gps_code": "ZUGH", + "iata_code": "GHN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guanghan_Airport", + "keywords": "Civil Aviation Flight University of China" + }, + { + "id": "31562", + "ident": "ZUGU", + "type": "medium_airport", + "name": "Guangyuan Panlong Airport", + "latitude_deg": "32.390254", + "longitude_deg": "105.694571", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Guangyuan (Lizhou)", + "scheduled_service": "yes", + "gps_code": "ZUGU", + "iata_code": "GYS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guangyuan_Airport" + }, + { + "id": "27229", + "ident": "ZUGY", + "type": "large_airport", + "name": "Guiyang Longdongbao International Airport", + "latitude_deg": "26.541466", + "longitude_deg": "106.803331", + "elevation_ft": "3736", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-52", + "municipality": "Guiyang (Nanming)", + "scheduled_service": "yes", + "gps_code": "ZUGY", + "iata_code": "KWE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Guiyang_Longdongbao_Airport", + "keywords": "Kaiyang Guiyang Air Base, Guiyang Air Base" + }, + { + "id": "336107", + "ident": "ZUGZ", + "type": "small_airport", + "name": "Garze Gesar Airport", + "latitude_deg": "31.7575", + "longitude_deg": "99.554167", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Garzê (Garzê)", + "scheduled_service": "yes", + "gps_code": "ZUGZ", + "iata_code": "GZG", + "local_code": "GZG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Garze_Gesar_Airport", + "keywords": "Ganzi, Garzê" + }, + { + "id": "300512", + "ident": "ZUJZ", + "type": "medium_airport", + "name": "Jiuzhai Huanglong Airport", + "latitude_deg": "32.853333", + "longitude_deg": "103.682222", + "elevation_ft": "11327", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Ngawa (Songpan)", + "scheduled_service": "yes", + "gps_code": "ZUJZ", + "iata_code": "JZH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jiuzhai_Huanglong_Airport", + "keywords": "Aba" + }, + { + "id": "327350", + "ident": "ZUKD", + "type": "medium_airport", + "name": "Kangding Airport", + "latitude_deg": "30.142464", + "longitude_deg": "101.73872", + "elevation_ft": "14042", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Garzê (Kangding)", + "scheduled_service": "yes", + "gps_code": "ZUKD", + "iata_code": "KGT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kangding_Airport" + }, + { + "id": "313427", + "ident": "ZUKJ", + "type": "medium_airport", + "name": "Kaili Huangping Airport", + "latitude_deg": "26.972", + "longitude_deg": "107.988", + "elevation_ft": "3115", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-52", + "municipality": "Kaili (Huangping)", + "scheduled_service": "yes", + "gps_code": "ZUKJ", + "iata_code": "KJH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kaili_Huangping_Airport" + }, + { + "id": "327351", + "ident": "ZULB", + "type": "small_airport", + "name": "Libo Airport", + "latitude_deg": "25.4525", + "longitude_deg": "107.961667", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-52", + "municipality": "Qiannan (Libo)", + "scheduled_service": "yes", + "gps_code": "ZULB", + "iata_code": "LLB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Libo_Airport" + }, + { + "id": "31819", + "ident": "ZULP", + "type": "small_airport", + "name": "Liangping Airport", + "latitude_deg": "30.679399", + "longitude_deg": "107.786003", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-50", + "municipality": "Liangping", + "scheduled_service": "no", + "gps_code": "ZULP", + "iata_code": "LIA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Liangping_Airport" + }, + { + "id": "31867", + "ident": "ZULS", + "type": "medium_airport", + "name": "Lhasa Gonggar Airport", + "latitude_deg": "29.298001", + "longitude_deg": "90.911951", + "elevation_ft": "11713", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-54", + "municipality": "Shannan (Gonggar)", + "scheduled_service": "yes", + "gps_code": "ZULS", + "iata_code": "LXA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Lhasa_Gonggar_Airport" + }, + { + "id": "336114", + "ident": "ZULZ", + "type": "medium_airport", + "name": "Luzhou Yunlong Airport", + "latitude_deg": "29.030357", + "longitude_deg": "105.468407", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Luzhou (Yunlong)", + "scheduled_service": "yes", + "gps_code": "ZULZ", + "iata_code": "LZO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Luzhou_Yunlong_Airport" + }, + { + "id": "308767", + "ident": "ZUMH", + "type": "small_airport", + "name": "Öndörkhaan Airport", + "latitude_deg": "47.30486", + "longitude_deg": "110.6092", + "elevation_ft": "3410", + "continent": "AS", + "iso_country": "MN", + "iso_region": "MN-039", + "municipality": "Öndörkhaan", + "scheduled_service": "no", + "gps_code": "ZMUH", + "iata_code": "UNR", + "keywords": "Undur Khan" + }, + { + "id": "327355", + "ident": "ZUMT", + "type": "medium_airport", + "name": "Zunyi Maotai Airport", + "latitude_deg": "27.81638", + "longitude_deg": "106.33268", + "elevation_ft": "4068", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-52", + "municipality": "Zunyi", + "scheduled_service": "yes", + "gps_code": "ZUMT", + "iata_code": "WMT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zunyi_Maotai_Airport" + }, + { + "id": "31908", + "ident": "ZUMY", + "type": "medium_airport", + "name": "Mianyang Nanjiao Airport", + "latitude_deg": "31.428101", + "longitude_deg": "104.740997", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Mianyang (Fucheng)", + "scheduled_service": "yes", + "gps_code": "ZUMY", + "iata_code": "MIG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mianyang_Airport" + }, + { + "id": "32003", + "ident": "ZUNC", + "type": "small_airport", + "name": "Nanchong Gaoping Airport", + "latitude_deg": "30.798104", + "longitude_deg": "106.16415", + "elevation_ft": "1145", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Nanchong (Gaoping)", + "scheduled_service": "yes", + "gps_code": "ZUNC", + "iata_code": "NAO", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nanchong_Airport" + }, + { + "id": "308782", + "ident": "ZUNP", + "type": "medium_airport", + "name": "Liping Airport", + "latitude_deg": "26.32217", + "longitude_deg": "109.1499", + "elevation_ft": "1620", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-52", + "municipality": "Liping", + "scheduled_service": "yes", + "gps_code": "ZUNP", + "iata_code": "HZH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Liping_Airport" + }, + { + "id": "31876", + "ident": "ZUNZ", + "type": "medium_airport", + "name": "Nyingchi Mainling Airport", + "latitude_deg": "29.303301", + "longitude_deg": "94.335297", + "elevation_ft": "9675", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-54", + "municipality": "Nyingchi (Mainling)", + "scheduled_service": "yes", + "gps_code": "ZUNZ", + "iata_code": "LZY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Nyingchi_Airport", + "keywords": "Linzhi, Kang Ko" + }, + { + "id": "327352", + "ident": "ZUPS", + "type": "medium_airport", + "name": "Liupanshui Yuezhao Airport", + "latitude_deg": "26.609417", + "longitude_deg": "104.979", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-52", + "municipality": "Liupanshui (Zhongshan)", + "scheduled_service": "yes", + "gps_code": "ZUPS", + "iata_code": "LPF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Liupanshui_Yuezhao_Airport" + }, + { + "id": "323880", + "ident": "ZUSN", + "type": "small_airport", + "name": "Suining Airport", + "latitude_deg": "30.471295", + "longitude_deg": "105.610925", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Suining (Chuanshan)", + "scheduled_service": "no", + "gps_code": "ZUSN" + }, + { + "id": "300514", + "ident": "ZUTC", + "type": "medium_airport", + "name": "Tengchong Tuofeng Airport", + "latitude_deg": "24.938056", + "longitude_deg": "98.485833", + "elevation_ft": "6250", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-53", + "municipality": "Baoshan (Tengchong)", + "scheduled_service": "yes", + "gps_code": "ZUTC", + "iata_code": "TCZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tengchong_Tuofeng_Airport" + }, + { + "id": "342095", + "ident": "ZUTF", + "type": "large_airport", + "name": "Chengdu Tianfu International Airport", + "latitude_deg": "30.31252", + "longitude_deg": "104.441284", + "elevation_ft": "1440", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Chengdu (Jianyang)", + "scheduled_service": "yes", + "gps_code": "ZUTF", + "iata_code": "TFU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chengdu_Tianfu_International_Airport" + }, + { + "id": "302314", + "ident": "ZUTR", + "type": "medium_airport", + "name": "Tongren Fenghuang Airport", + "latitude_deg": "27.883333", + "longitude_deg": "109.308889", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-52", + "municipality": "Tongren (Daxing)", + "scheduled_service": "yes", + "gps_code": "ZUTR", + "iata_code": "TEN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tongren_Fenghuang_Airport" + }, + { + "id": "27230", + "ident": "ZUUU", + "type": "large_airport", + "name": "Chengdu Shuangliu International Airport", + "latitude_deg": "30.558257", + "longitude_deg": "103.945966", + "elevation_ft": "1625", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Chengdu (Shuangliu)", + "scheduled_service": "yes", + "gps_code": "ZUUU", + "iata_code": "CTU", + "home_link": "http://www.cdairport.com/cdairport/en_front/index.jsp", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chengdu_Shuangliu_International_Airport", + "keywords": "成都双流国际机场" + }, + { + "id": "350117", + "ident": "ZUWL", + "type": "medium_airport", + "name": "Chongqing Xiannüshan Airport", + "latitude_deg": "29.465658", + "longitude_deg": "107.693664", + "elevation_ft": "1747", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-50", + "municipality": "Wulong", + "scheduled_service": "yes", + "gps_code": "ZUWL", + "iata_code": "CQW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chongqing_Xiannüshan_Airport" + }, + { + "id": "336105", + "ident": "ZUWS", + "type": "small_airport", + "name": "Chongqing Wushan Airport", + "latitude_deg": "31.06896", + "longitude_deg": "109.708958", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-50", + "municipality": "Wushan", + "scheduled_service": "yes", + "gps_code": "ZUWS", + "iata_code": "WSK", + "local_code": "WSK" + }, + { + "id": "32688", + "ident": "ZUWX", + "type": "small_airport", + "name": "Wanzhou Wuqiao Airport", + "latitude_deg": "30.8017", + "longitude_deg": "108.433", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-50", + "municipality": "Wanzhou", + "scheduled_service": "yes", + "gps_code": "ZUWX", + "iata_code": "WXN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wanzhou_Airport" + }, + { + "id": "27231", + "ident": "ZUXC", + "type": "medium_airport", + "name": "Xichang Qingshan Airport", + "latitude_deg": "27.9891", + "longitude_deg": "102.183998", + "elevation_ft": "5112", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Liangshan (Xichang)", + "scheduled_service": "yes", + "gps_code": "ZUXC", + "iata_code": "XIC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Xichang_Qingshan_Airport" + }, + { + "id": "300456", + "ident": "ZUYB", + "type": "small_airport", + "name": "Yibin Caiba Airport", + "latitude_deg": "28.800556", + "longitude_deg": "104.545", + "elevation_ft": "924", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-51", + "municipality": "Yibin (Cuiping)", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yibin_Caiba_Airport", + "keywords": "YBP, ZUYB" + }, + { + "id": "301647", + "ident": "ZUYI", + "type": "medium_airport", + "name": "Xingyi Wanfenglin Airport", + "latitude_deg": "25.083423", + "longitude_deg": "104.960804", + "elevation_ft": "4150", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-52", + "municipality": "Xingyi", + "scheduled_service": "yes", + "gps_code": "ZUYI", + "iata_code": "ACX", + "wikipedia_link": "https://en.wikipedia.org/wiki/Xingyi_Wanfenglin_Airport" + }, + { + "id": "308403", + "ident": "ZUZY", + "type": "medium_airport", + "name": "Zunyi Xinzhou Airport", + "latitude_deg": "27.5895", + "longitude_deg": "107.0007", + "elevation_ft": "2920", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-52", + "municipality": "Zunyi", + "scheduled_service": "yes", + "gps_code": "ZUZY", + "iata_code": "ZYI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Zunyi_Xinzhou_Airport" + }, + { + "id": "318468", + "ident": "ZW-0001", + "type": "small_airport", + "name": "Matetsi Airport", + "latitude_deg": "-18.498899", + "longitude_deg": "25.918628", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Matetsi", + "scheduled_service": "no" + }, + { + "id": "318469", + "ident": "ZW-0002", + "type": "small_airport", + "name": "Sinamatella Camp Airport", + "latitude_deg": "-18.576311", + "longitude_deg": "26.320678", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Hwange", + "scheduled_service": "no" + }, + { + "id": "318953", + "ident": "ZW-0003", + "type": "small_airport", + "name": "Tilbury Airport", + "latitude_deg": "-19.906934", + "longitude_deg": "32.969636", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MA", + "municipality": "Tilbury", + "scheduled_service": "no" + }, + { + "id": "318987", + "ident": "ZW-0004", + "type": "small_airport", + "name": "Bridge Camp Airstrip", + "latitude_deg": "-21.247388", + "longitude_deg": "31.908657", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MV", + "scheduled_service": "no" + }, + { + "id": "318988", + "ident": "ZW-0005", + "type": "small_airport", + "name": "Boli Airport", + "latitude_deg": "-21.532188", + "longitude_deg": "31.476691", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MV", + "municipality": "Boli", + "scheduled_service": "no" + }, + { + "id": "318990", + "ident": "ZW-0006", + "type": "small_airport", + "name": "Malipati Airport", + "latitude_deg": "-22.063618", + "longitude_deg": "31.436257", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MV", + "municipality": "Malipati", + "scheduled_service": "no" + }, + { + "id": "318991", + "ident": "ZW-0007", + "type": "small_airport", + "name": "Makado Airport", + "latitude_deg": "-21.456959", + "longitude_deg": "29.7175", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MS", + "municipality": "Makado", + "scheduled_service": "no" + }, + { + "id": "318992", + "ident": "ZW-0008", + "type": "small_airport", + "name": "Towla Airport", + "latitude_deg": "-21.440873", + "longitude_deg": "29.883056", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MS", + "municipality": "Towla", + "scheduled_service": "no" + }, + { + "id": "318993", + "ident": "ZW-0009", + "type": "small_airport", + "name": "West Nicholson Airport", + "latitude_deg": "-21.048952", + "longitude_deg": "29.353583", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MS", + "municipality": "West Nicholson", + "scheduled_service": "no" + }, + { + "id": "318994", + "ident": "ZW-0010", + "type": "small_airport", + "name": "Belingwe Airport", + "latitude_deg": "-20.522514", + "longitude_deg": "29.876149", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MI", + "municipality": "Belingwe", + "scheduled_service": "no" + }, + { + "id": "318995", + "ident": "ZW-0011", + "type": "small_airport", + "name": "Hwali Airport", + "latitude_deg": "-21.679911", + "longitude_deg": "29.218657", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MS", + "municipality": "Hwali", + "scheduled_service": "no" + }, + { + "id": "318996", + "ident": "ZW-0012", + "type": "small_airport", + "name": "Mwenezi Airport", + "latitude_deg": "-21.431546", + "longitude_deg": "30.734302", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MV", + "municipality": "Mwenezi", + "scheduled_service": "no" + }, + { + "id": "318999", + "ident": "ZW-0013", + "type": "small_airport", + "name": "Lupane Airport", + "latitude_deg": "-18.927645", + "longitude_deg": "27.806533", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Lupane", + "scheduled_service": "no" + }, + { + "id": "319000", + "ident": "ZW-0014", + "type": "small_airport", + "name": "Nkayi Airport", + "latitude_deg": "-18.999493", + "longitude_deg": "28.89743", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Nkayi", + "scheduled_service": "no" + }, + { + "id": "319001", + "ident": "ZW-0015", + "type": "small_airport", + "name": "Maronga Airport", + "latitude_deg": "-16.855435", + "longitude_deg": "28.427123", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "scheduled_service": "no" + }, + { + "id": "319002", + "ident": "ZW-0016", + "type": "small_airport", + "name": "Chete Airport", + "latitude_deg": "-17.050324", + "longitude_deg": "28.001822", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Binga", + "scheduled_service": "no" + }, + { + "id": "319003", + "ident": "ZW-0017", + "type": "small_airport", + "name": "Lake Kariba Airport", + "latitude_deg": "-17.345659", + "longitude_deg": "27.635", + "elevation_ft": "1755", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Binga", + "scheduled_service": "no" + }, + { + "id": "319004", + "ident": "ZW-0018", + "type": "small_airport", + "name": "Sijarira Lodge Airstrip", + "latitude_deg": "-17.51631", + "longitude_deg": "27.500593", + "elevation_ft": "1893", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Binga", + "scheduled_service": "no" + }, + { + "id": "319007", + "ident": "ZW-0019", + "type": "small_airport", + "name": "Manjolo Airport", + "latitude_deg": "-17.814685", + "longitude_deg": "27.171634", + "elevation_ft": "1775", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Binga", + "scheduled_service": "no" + }, + { + "id": "319008", + "ident": "ZW-0020", + "type": "small_airport", + "name": "Chigwell Airport", + "latitude_deg": "-18.16483", + "longitude_deg": "29.965823", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Chigwell", + "scheduled_service": "no" + }, + { + "id": "319009", + "ident": "ZW-0021", + "type": "small_airport", + "name": "Hot Springs Airport", + "latitude_deg": "-19.653303", + "longitude_deg": "32.4248", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MA", + "municipality": "Hot Springs", + "scheduled_service": "no" + }, + { + "id": "319012", + "ident": "ZW-0022", + "type": "small_airport", + "name": "Dorowa Airport", + "latitude_deg": "-19.056975", + "longitude_deg": "31.775152", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MA", + "municipality": "Dorowa", + "scheduled_service": "no" + }, + { + "id": "319235", + "ident": "ZW-0023", + "type": "small_airport", + "name": "Peoza Pasi Airstrip", + "latitude_deg": "-15.977261", + "longitude_deg": "30.396064", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MC", + "scheduled_service": "no" + }, + { + "id": "319236", + "ident": "ZW-0024", + "type": "small_airport", + "name": "Chapoto Road Airstrip", + "latitude_deg": "-15.749968", + "longitude_deg": "30.402576", + "elevation_ft": "1310", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MC", + "scheduled_service": "no", + "keywords": "Membwe" + }, + { + "id": "319237", + "ident": "ZW-0025", + "type": "small_airport", + "name": "Kanyemba Airport", + "latitude_deg": "-15.665006", + "longitude_deg": "30.389806", + "elevation_ft": "1308", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MC", + "municipality": "Kanyemba", + "scheduled_service": "no", + "keywords": "Mwanzamtanda Airport" + }, + { + "id": "319239", + "ident": "ZW-0026", + "type": "small_airport", + "name": "Mucumbura River Airport", + "latitude_deg": "-16.205187", + "longitude_deg": "31.681177", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MC", + "scheduled_service": "no" + }, + { + "id": "319241", + "ident": "ZW-0027", + "type": "small_airport", + "name": "Mwanja River Airport", + "latitude_deg": "-15.64811", + "longitude_deg": "29.9871", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "scheduled_service": "no" + }, + { + "id": "319242", + "ident": "ZW-0028", + "type": "small_airport", + "name": "Kuperinengu Airstrip", + "latitude_deg": "-15.647438", + "longitude_deg": "29.879651", + "elevation_ft": "1181", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-ME", + "municipality": "Kuperinengu", + "scheduled_service": "no", + "keywords": "Chewore Lodge" + }, + { + "id": "319244", + "ident": "ZW-0029", + "type": "small_airport", + "name": "Chikwenya Game Lodge Airstrip", + "latitude_deg": "-15.6956", + "longitude_deg": "29.576598", + "elevation_ft": "1250", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Hurungwe", + "scheduled_service": "no", + "keywords": "Sapi River" + }, + { + "id": "319245", + "ident": "ZW-0030", + "type": "small_airport", + "name": "Rukomeshe Research Station Airstrip", + "latitude_deg": "-16.147148", + "longitude_deg": "29.415766", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "scheduled_service": "no", + "gps_code": "FVRK" + }, + { + "id": "319246", + "ident": "ZW-0031", + "type": "small_airport", + "name": "Honde Valley Airport", + "latitude_deg": "-18.497124", + "longitude_deg": "32.853992", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MA", + "municipality": "Honde Valley", + "scheduled_service": "no" + }, + { + "id": "319248", + "ident": "ZW-0032", + "type": "small_airport", + "name": "Chewonde Airport", + "latitude_deg": "-17.958974", + "longitude_deg": "28.270602", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MI", + "municipality": "Chewonde", + "scheduled_service": "no" + }, + { + "id": "319249", + "ident": "ZW-0033", + "type": "small_airport", + "name": "Sengwa Airport", + "latitude_deg": "-18.167161", + "longitude_deg": "28.235588", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MI", + "scheduled_service": "no" + }, + { + "id": "319250", + "ident": "ZW-0034", + "type": "small_airport", + "name": "Sengwa Research Area Airstrip", + "latitude_deg": "-18.165196", + "longitude_deg": "28.215618", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MI", + "scheduled_service": "no" + }, + { + "id": "319251", + "ident": "ZW-0035", + "type": "small_airport", + "name": "Gokwe North Airport", + "latitude_deg": "-17.537114", + "longitude_deg": "28.330871", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MI", + "municipality": "Gokwe", + "scheduled_service": "no" + }, + { + "id": "319252", + "ident": "ZW-0036", + "type": "small_airport", + "name": "Renco Airport", + "latitude_deg": "-20.602044", + "longitude_deg": "31.170552", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MV", + "municipality": "Renco", + "scheduled_service": "no" + }, + { + "id": "319253", + "ident": "ZW-0037", + "type": "small_airport", + "name": "Rupangwana Airport", + "latitude_deg": "-21.008374", + "longitude_deg": "32.181507", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MA", + "municipality": "Rupangwana", + "scheduled_service": "no" + }, + { + "id": "319254", + "ident": "ZW-0038", + "type": "small_airport", + "name": "Chipinge Farm Airstrip", + "latitude_deg": "-20.460575", + "longitude_deg": "32.203607", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MV", + "scheduled_service": "no" + }, + { + "id": "319255", + "ident": "ZW-0039", + "type": "small_airport", + "name": "Turwi River Airstrip", + "latitude_deg": "-20.395009", + "longitude_deg": "32.10904", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MV", + "scheduled_service": "no" + }, + { + "id": "319256", + "ident": "ZW-0040", + "type": "small_airport", + "name": "Kwaraguza Airport", + "latitude_deg": "-18.117815", + "longitude_deg": "32.841205", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MA", + "municipality": "Nyanga", + "scheduled_service": "no" + }, + { + "id": "325150", + "ident": "ZW-0041", + "type": "small_airport", + "name": "Mana West Airport", + "latitude_deg": "-15.83586", + "longitude_deg": "29.174883", + "elevation_ft": "1232", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Hurungwe", + "scheduled_service": "no" + }, + { + "id": "325152", + "ident": "ZW-0042", + "type": "small_airport", + "name": "Sipepa Airstrip", + "latitude_deg": "-19.280942", + "longitude_deg": "27.648321", + "elevation_ft": "3270", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "scheduled_service": "no" + }, + { + "id": "325153", + "ident": "ZW-0043", + "type": "closed", + "name": "Pandamatenga East Airstrip", + "latitude_deg": "-18.5269", + "longitude_deg": "25.693563", + "elevation_ft": "3511", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Mpandamatenga", + "scheduled_service": "no" + }, + { + "id": "329802", + "ident": "ZW-0044", + "type": "closed", + "name": "Makuti Airstrip", + "latitude_deg": "-16.344021", + "longitude_deg": "29.202102", + "elevation_ft": "3268", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Makuti", + "scheduled_service": "no" + }, + { + "id": "331822", + "ident": "ZW-0045", + "type": "small_airport", + "name": "Robins Airstrip", + "latitude_deg": "-18.629722", + "longitude_deg": "25.979821", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Robins Camp", + "scheduled_service": "no" + }, + { + "id": "341722", + "ident": "ZW-0046", + "type": "small_airport", + "name": "Dandawa Airstrip", + "latitude_deg": "-15.956175", + "longitude_deg": "29.274619", + "elevation_ft": "1370", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Dandawas", + "scheduled_service": "no", + "keywords": "Damdawa" + }, + { + "id": "343344", + "ident": "ZW-0047", + "type": "small_airport", + "name": "Rusape South Airport", + "latitude_deg": "-18.578396", + "longitude_deg": "32.117565", + "elevation_ft": "4596", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MA", + "municipality": "Rusape", + "scheduled_service": "no" + }, + { + "id": "345912", + "ident": "ZW-0048", + "type": "heliport", + "name": "Chinyike Mine Heliport", + "latitude_deg": "-18.9259", + "longitude_deg": "30.2742", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MI", + "scheduled_service": "no" + }, + { + "id": "31259", + "ident": "ZW-0049", + "type": "closed", + "name": "(Old) Rusape Airport", + "latitude_deg": "-18.533001", + "longitude_deg": "32.132999", + "elevation_ft": "4560", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MA", + "municipality": "Rusape", + "scheduled_service": "no" + }, + { + "id": "351659", + "ident": "ZW-0050", + "type": "small_airport", + "name": "Little Vundu Camp Airport", + "latitude_deg": "-15.79535", + "longitude_deg": "29.19948", + "elevation_ft": "1204", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Hurungwe", + "scheduled_service": "no" + }, + { + "id": "351661", + "ident": "ZW-0051", + "type": "small_airport", + "name": "Chief Simupas Village Airport", + "latitude_deg": "-17.19447", + "longitude_deg": "28.07068", + "elevation_ft": "1719", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Binga", + "scheduled_service": "no" + }, + { + "id": "351670", + "ident": "ZW-0052", + "type": "small_airport", + "name": "Kapoka Airstrip", + "latitude_deg": "-17.139068", + "longitude_deg": "28.342388", + "elevation_ft": "2400", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Siakobvu", + "scheduled_service": "no" + }, + { + "id": "351673", + "ident": "ZW-0053", + "type": "small_airport", + "name": "Batoka Gorge South Airport", + "latitude_deg": "-17.93221", + "longitude_deg": "26.11749", + "elevation_ft": "2805", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MS", + "municipality": "Hwange", + "scheduled_service": "no" + }, + { + "id": "351674", + "ident": "ZW-0054", + "type": "small_airport", + "name": "Kazungula Airport", + "latitude_deg": "-17.92962", + "longitude_deg": "25.77313", + "elevation_ft": "3343", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Victoria Falls", + "scheduled_service": "no" + }, + { + "id": "351677", + "ident": "ZW-0055", + "type": "heliport", + "name": "Elephant Hills Heliport", + "latitude_deg": "-17.91199", + "longitude_deg": "25.82802", + "elevation_ft": "3054", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Victoria Falls", + "scheduled_service": "no" + }, + { + "id": "351678", + "ident": "ZW-0056", + "type": "heliport", + "name": "Chikopokopo Heliport", + "latitude_deg": "-17.96438", + "longitude_deg": "25.80993", + "elevation_ft": "3012", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Masuwe", + "scheduled_service": "no" + }, + { + "id": "351679", + "ident": "ZW-0057", + "type": "heliport", + "name": "Masuwe Heliport", + "latitude_deg": "-17.96588", + "longitude_deg": "25.81055", + "elevation_ft": "3005", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Masuwe", + "scheduled_service": "no" + }, + { + "id": "351681", + "ident": "ZW-0058", + "type": "small_airport", + "name": "Neyuka Airstrip", + "latitude_deg": "-17.252056", + "longitude_deg": "28.458581", + "elevation_ft": "2203", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MW", + "municipality": "Mangara", + "scheduled_service": "no" + }, + { + "id": "351689", + "ident": "ZW-0059", + "type": "heliport", + "name": "Big Four Heliport", + "latitude_deg": "-17.91354", + "longitude_deg": "25.83235", + "elevation_ft": "2986", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Victoria Falls", + "scheduled_service": "no" + }, + { + "id": "351699", + "ident": "ZW-0060", + "type": "small_airport", + "name": "Bomani Airstrip", + "latitude_deg": "-19.0826", + "longitude_deg": "27.457538", + "elevation_ft": "3347", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Bomani Pan", + "scheduled_service": "no" + }, + { + "id": "351703", + "ident": "ZW-0061", + "type": "closed", + "name": "Mbuhulu Airstrip", + "latitude_deg": "-19.509961", + "longitude_deg": "27.408571", + "elevation_ft": "3370", + "continent": "AF", + "iso_country": "ZW", + "iso_region": "ZW-MN", + "municipality": "Mbuhulu Pan", + "scheduled_service": "no" + }, + { + "id": "30635", + "ident": "ZWAK", + "type": "medium_airport", + "name": "Aksu Hongqipo Airport", + "latitude_deg": "41.262501", + "longitude_deg": "80.291702", + "elevation_ft": "3816", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Aksu (Onsu)", + "scheduled_service": "yes", + "gps_code": "ZWAK", + "iata_code": "AKU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aksu_Hongqipo_Airport", + "keywords": "Ak-su, Akshu, Aqsu, Bharuka, Po-lu-chia, Aksu Wensu Air Base, Onsu" + }, + { + "id": "354654", + "ident": "ZWAL", + "type": "small_airport", + "name": "Aral Tarim Airport", + "latitude_deg": "40.464167", + "longitude_deg": "81.246944", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Aral", + "scheduled_service": "yes", + "gps_code": "ZWAL", + "iata_code": "ACF", + "wikipedia_link": "https://en.wikipedia.org/wiki/Aral_Talim_Airport" + }, + { + "id": "46650", + "ident": "ZWAX", + "type": "medium_airport", + "name": "Bole Alashankou Airport", + "latitude_deg": "44.895461", + "longitude_deg": "82.30007", + "elevation_ft": "1253", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Bole", + "scheduled_service": "yes", + "gps_code": "ZWBL", + "iata_code": "BPL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Bole_Alashankou_Airport" + }, + { + "id": "31684", + "ident": "ZWCM", + "type": "medium_airport", + "name": "Qiemo Yudu Airport", + "latitude_deg": "38.234516", + "longitude_deg": "85.465462", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Qiemo", + "scheduled_service": "yes", + "gps_code": "ZWCM", + "iata_code": "IQM", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qiemo_Yudu_Airport", + "keywords": "Cherchen, Qarqan" + }, + { + "id": "323219", + "ident": "ZWFY", + "type": "medium_airport", + "name": "Fuyun Koktokay Airport", + "latitude_deg": "46.804169", + "longitude_deg": "89.512006", + "elevation_ft": "3081", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Fuyun", + "scheduled_service": "yes", + "gps_code": "ZWFY", + "iata_code": "FYN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fuyun_Koktokay_Airport" + }, + { + "id": "31609", + "ident": "ZWHM", + "type": "medium_airport", + "name": "Hami Airport", + "latitude_deg": "42.8414", + "longitude_deg": "93.669197", + "elevation_ft": "2703", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Hami", + "scheduled_service": "yes", + "gps_code": "ZWHM", + "iata_code": "HMI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hami_Airport", + "keywords": "Kumul, Qumul" + }, + { + "id": "31731", + "ident": "ZWKC", + "type": "small_airport", + "name": "Kuqa Qiuci Airport", + "latitude_deg": "41.677856", + "longitude_deg": "82.872917", + "elevation_ft": "3524", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Kuqa", + "scheduled_service": "yes", + "gps_code": "ZWKC", + "iata_code": "KCA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kuqa_Qiuci_Airport", + "keywords": "Kucha" + }, + { + "id": "31771", + "ident": "ZWKL", + "type": "medium_airport", + "name": "Korla Licheng Airport", + "latitude_deg": "41.6978", + "longitude_deg": "86.128899", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Korla", + "scheduled_service": "yes", + "gps_code": "ZWKL", + "iata_code": "KRL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Korla_Licheng_Airport" + }, + { + "id": "35310", + "ident": "ZWKM", + "type": "small_airport", + "name": "Karamay Airport", + "latitude_deg": "45.46655", + "longitude_deg": "84.9527", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Karamay", + "scheduled_service": "yes", + "gps_code": "ZWKM", + "iata_code": "KRY", + "wikipedia_link": "https://en.wikipedia.org/wiki/Karamay_Airport" + }, + { + "id": "313426", + "ident": "ZWKN", + "type": "medium_airport", + "name": "Burqin Kanas Airport", + "latitude_deg": "48.2223", + "longitude_deg": "86.9959", + "elevation_ft": "3921", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Burqin", + "scheduled_service": "yes", + "gps_code": "ZWKN", + "iata_code": "KJI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kanas_Airport" + }, + { + "id": "316548", + "ident": "ZWNL", + "type": "medium_airport", + "name": "Xinyuan Nalati Airport", + "latitude_deg": "43.4318", + "longitude_deg": "83.3786", + "elevation_ft": "3050", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Xinyuan", + "scheduled_service": "yes", + "gps_code": "ZWNL", + "iata_code": "NLT", + "wikipedia_link": "https://en.wikipedia.org/wiki/Xinyuan_Nalati_Airport" + }, + { + "id": "333070", + "ident": "ZWRQ", + "type": "medium_airport", + "name": "Ruoqiang Loulan Airport", + "latitude_deg": "38.974722", + "longitude_deg": "88.008333", + "elevation_ft": "2916", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Ruoqiang Town", + "scheduled_service": "yes", + "gps_code": "ZWRQ", + "iata_code": "RQA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Ruoqiang_Loulan_Airport" + }, + { + "id": "326731", + "ident": "ZWSC", + "type": "medium_airport", + "name": "Shache Airport", + "latitude_deg": "38.24542", + "longitude_deg": "77.056149", + "elevation_ft": "4232", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Shache", + "scheduled_service": "yes", + "gps_code": "ZWSC", + "iata_code": "QSZ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shache_Airport", + "keywords": "Yarkant, Yeerqiang" + }, + { + "id": "27234", + "ident": "ZWSH", + "type": "medium_airport", + "name": "Kashgar Airport", + "latitude_deg": "39.5429000854", + "longitude_deg": "76.0199966431", + "elevation_ft": "4529", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Kashgar", + "scheduled_service": "yes", + "gps_code": "ZWSH", + "iata_code": "KHG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Kashgar_Airport", + "keywords": "Kashi Airport" + }, + { + "id": "32406", + "ident": "ZWSS", + "type": "medium_airport", + "name": "Shanshan Airport", + "latitude_deg": "42.91170120239258", + "longitude_deg": "90.24749755859375", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Shanshan", + "scheduled_service": "no", + "gps_code": "ZWSS", + "iata_code": "SXJ" + }, + { + "id": "28144", + "ident": "ZWTC", + "type": "small_airport", + "name": "Tacheng Airport", + "latitude_deg": "46.672501", + "longitude_deg": "83.340797", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Tacheng", + "scheduled_service": "yes", + "gps_code": "ZWTC", + "iata_code": "TCG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tacheng_Airport" + }, + { + "id": "314799", + "ident": "ZWTL", + "type": "medium_airport", + "name": "Turpan Jiaohe Airport", + "latitude_deg": "43.0308", + "longitude_deg": "89.0987", + "elevation_ft": "934", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Turpan", + "scheduled_service": "yes", + "gps_code": "ZWTL", + "iata_code": "TLQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Turpan_Jiaohe_Airport" + }, + { + "id": "27235", + "ident": "ZWTN", + "type": "medium_airport", + "name": "Hotan Airport", + "latitude_deg": "37.03850173950195", + "longitude_deg": "79.86489868164062", + "elevation_ft": "4672", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Hotan", + "scheduled_service": "yes", + "gps_code": "ZWTN", + "iata_code": "HTN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Hotan_Airport", + "keywords": "Khotan, Heitan Air Base" + }, + { + "id": "27236", + "ident": "ZWWW", + "type": "large_airport", + "name": "Ürümqi Diwopu International Airport", + "latitude_deg": "43.907100677490234", + "longitude_deg": "87.47419738769531", + "elevation_ft": "2125", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Ürümqi", + "scheduled_service": "yes", + "gps_code": "ZWWW", + "iata_code": "URC", + "wikipedia_link": "https://en.wikipedia.org/wiki/%C3%9Cr%C3%BCmqi_Diwopu_International_Airport" + }, + { + "id": "32725", + "ident": "ZWYN", + "type": "small_airport", + "name": "Yining Airport", + "latitude_deg": "43.955799", + "longitude_deg": "81.330299", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Ili (Yining / Ghulja)", + "scheduled_service": "yes", + "gps_code": "ZWYN", + "iata_code": "YIN", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yining_Airport", + "keywords": "Ghulja, Ili" + }, + { + "id": "342843", + "ident": "ZWYT", + "type": "small_airport", + "name": "Yutian Wanfang Airport", + "latitude_deg": "36.8085", + "longitude_deg": "81.7827", + "elevation_ft": "4731", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-65", + "municipality": "Hotan (Yutian)", + "scheduled_service": "yes", + "gps_code": "ZWYT", + "iata_code": "YTW", + "local_code": "YTW", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yutian_Wanfang_Airport" + }, + { + "id": "30646", + "ident": "ZYAS", + "type": "medium_airport", + "name": "Anshan Teng'ao Airport / Anshan Air Base", + "latitude_deg": "41.105301", + "longitude_deg": "122.853996", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Anshan", + "scheduled_service": "yes", + "gps_code": "ZYAS", + "iata_code": "AOG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Anshan_Teng%27ao_Airport" + }, + { + "id": "27237", + "ident": "ZYCC", + "type": "large_airport", + "name": "Changchun Longjia International Airport", + "latitude_deg": "43.996201", + "longitude_deg": "125.684998", + "elevation_ft": "706", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-22", + "municipality": "Changchun", + "scheduled_service": "yes", + "gps_code": "ZYCC", + "iata_code": "CGQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Changchun_Longjia_International_Airport" + }, + { + "id": "300858", + "ident": "ZYCH", + "type": "medium_airport", + "name": "Changhai Airport", + "latitude_deg": "39.266667", + "longitude_deg": "122.666944", + "elevation_ft": "80", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Changhai, Dalian", + "scheduled_service": "yes", + "gps_code": "ZYCH", + "iata_code": "CNI", + "wikipedia_link": "https://en.wikipedia.org/wiki/Changhai_Airport" + }, + { + "id": "30827", + "ident": "ZYCY", + "type": "medium_airport", + "name": "Chaoyang Airport", + "latitude_deg": "41.538101", + "longitude_deg": "120.434998", + "elevation_ft": "568", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Shuangta, Chaoyang", + "scheduled_service": "yes", + "gps_code": "ZYCY", + "iata_code": "CHG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Chaoyang_Airport" + }, + { + "id": "327349", + "ident": "ZYDU", + "type": "medium_airport", + "name": "Wudalianchi Dedu Airport", + "latitude_deg": "48.441037", + "longitude_deg": "126.128374", + "elevation_ft": "984", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Heihe", + "scheduled_service": "yes", + "gps_code": "ZYDU", + "iata_code": "DTU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Wudalianchi_Dedu_Airport" + }, + { + "id": "324338", + "ident": "ZYFX", + "type": "small_airport", + "name": "Fuxin Airport", + "latitude_deg": "42.069014", + "longitude_deg": "121.718122", + "elevation_ft": "548", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Xihe, Fuxin", + "scheduled_service": "no", + "gps_code": "ZYFX" + }, + { + "id": "313994", + "ident": "ZYFY", + "type": "medium_airport", + "name": "Fuyuan Dongji Aiport", + "latitude_deg": "48.197219", + "longitude_deg": "134.36298", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Fuyuan", + "scheduled_service": "yes", + "gps_code": "ZYFY", + "iata_code": "FYJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Fuyuan_Dongji_Airport" + }, + { + "id": "335271", + "ident": "ZYGH", + "type": "small_airport", + "name": "Genhe Airport", + "latitude_deg": "50.700277", + "longitude_deg": "121.3825", + "elevation_ft": "2257", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-15", + "municipality": "Haolibao", + "scheduled_service": "no", + "gps_code": "ZYGH", + "keywords": "根河市" + }, + { + "id": "27238", + "ident": "ZYHB", + "type": "large_airport", + "name": "Harbin Taiping International Airport", + "latitude_deg": "45.623402", + "longitude_deg": "126.25", + "elevation_ft": "457", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Harbin", + "scheduled_service": "yes", + "gps_code": "ZYHB", + "iata_code": "HRB", + "wikipedia_link": "https://en.wikipedia.org/wiki/Harbin_Taiping_International_Airport" + }, + { + "id": "31576", + "ident": "ZYHE", + "type": "medium_airport", + "name": "Heihe Aihui Airport", + "latitude_deg": "50.171621", + "longitude_deg": "127.308884", + "elevation_ft": "1047", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Heihe", + "scheduled_service": "yes", + "gps_code": "ZYHE", + "iata_code": "HEK", + "wikipedia_link": "https://en.wikipedia.org/wiki/Heihe_Aihui_Airport" + }, + { + "id": "31701", + "ident": "ZYJL", + "type": "small_airport", + "name": "Jilin Ertaizi Airport", + "latitude_deg": "44.002652", + "longitude_deg": "126.395244", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-22", + "municipality": "Jilin", + "scheduled_service": "no", + "gps_code": "ZYJL", + "iata_code": "JIL", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jilin_Ertaizi_Airport" + }, + { + "id": "27239", + "ident": "ZYJM", + "type": "medium_airport", + "name": "Jiamusi Dongjiao Airport", + "latitude_deg": "46.843399", + "longitude_deg": "130.464996", + "elevation_ft": "262", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Jiamusi", + "scheduled_service": "yes", + "gps_code": "ZYJM", + "iata_code": "JMU", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jiamusi_Dongjiao_Airport" + }, + { + "id": "327450", + "ident": "ZYJS", + "type": "medium_airport", + "name": "Jiansanjiang Shidi Airport", + "latitude_deg": "47.108248", + "longitude_deg": "132.65792", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Jiansanjiang", + "scheduled_service": "yes", + "gps_code": "ZYJS", + "iata_code": "JSJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jiansanjiang_Airport" + }, + { + "id": "313337", + "ident": "ZYJX", + "type": "medium_airport", + "name": "Jixi Xingkaihu Airport", + "latitude_deg": "45.293", + "longitude_deg": "131.193", + "elevation_ft": "760", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Jixi", + "scheduled_service": "yes", + "gps_code": "ZYJX", + "iata_code": "JXA", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jixi_Xingkaihu_Airport" + }, + { + "id": "31706", + "ident": "ZYJZ", + "type": "small_airport", + "name": "Jinzhou Xiaolingzi Air Base", + "latitude_deg": "41.101398", + "longitude_deg": "121.061996", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Jinzhou", + "scheduled_service": "no", + "wikipedia_link": "https://en.wikipedia.org/wiki/Jinzhou_Xiaolingzi_Airport", + "keywords": "Xiaolingzi Air Base" + }, + { + "id": "307012", + "ident": "ZYLD", + "type": "medium_airport", + "name": "Yichun Lindu Airport", + "latitude_deg": "47.752056", + "longitude_deg": "129.019125", + "elevation_ft": "791", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Yichun", + "scheduled_service": "yes", + "gps_code": "ZYLD", + "iata_code": "LDS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yichun_Lindu_Airport", + "keywords": "Yichun Shi Airport" + }, + { + "id": "300516", + "ident": "ZYLS", + "type": "medium_airport", + "name": "Yushu Batang Airport", + "latitude_deg": "32.836389", + "longitude_deg": "97.036389", + "elevation_ft": "12816", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-63", + "municipality": "Yushu (Batang)", + "scheduled_service": "yes", + "gps_code": "ZYLS", + "iata_code": "YUS", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yushu_Batang_Airport" + }, + { + "id": "335272", + "ident": "ZYLY", + "type": "small_airport", + "name": "Liaoyang Air Base", + "latitude_deg": "41.277976", + "longitude_deg": "123.078729", + "elevation_ft": "57", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Liaoyang", + "scheduled_service": "no", + "gps_code": "ZYLY" + }, + { + "id": "27240", + "ident": "ZYMD", + "type": "medium_airport", + "name": "Mudanjiang Hailang International Airport", + "latitude_deg": "44.5241012573", + "longitude_deg": "129.569000244", + "elevation_ft": "883", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Mudanjiang", + "scheduled_service": "yes", + "gps_code": "ZYMD", + "iata_code": "MDG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mudanjiang_Airport", + "keywords": "Mudanjiang" + }, + { + "id": "301193", + "ident": "ZYMH", + "type": "medium_airport", + "name": "Mohe Gulian Airport", + "latitude_deg": "52.916871", + "longitude_deg": "122.422759", + "elevation_ft": "1836", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Mohe", + "scheduled_service": "yes", + "gps_code": "ZYMH", + "iata_code": "OHE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Mohe_Gulian_Airport" + }, + { + "id": "27241", + "ident": "ZYQQ", + "type": "medium_airport", + "name": "Qiqihar Sanjiazi Airport", + "latitude_deg": "47.239601135253906", + "longitude_deg": "123.91799926757812", + "elevation_ft": "477", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Qiqihar", + "scheduled_service": "yes", + "gps_code": "ZYQQ", + "iata_code": "NDG", + "wikipedia_link": "https://en.wikipedia.org/wiki/Qiqihar_Airport" + }, + { + "id": "327451", + "ident": "ZYSQ", + "type": "medium_airport", + "name": "Songyuan Chaganhu Airport", + "latitude_deg": "44.938114", + "longitude_deg": "124.550178", + "elevation_ft": "459", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-22", + "municipality": "Qian Gorlos Mongol Autonomous County", + "scheduled_service": "yes", + "gps_code": "ZYSQ", + "iata_code": "YSQ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Songyuan_Chaganhu_Airport" + }, + { + "id": "307017", + "ident": "ZYTH", + "type": "small_airport", + "name": "Da Hinggan Ling Targen Airport", + "latitude_deg": "52.224444", + "longitude_deg": "124.720222", + "elevation_ft": "1240", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-23", + "municipality": "Tahe", + "scheduled_service": "no", + "gps_code": "ZYTH", + "keywords": "Tahe" + }, + { + "id": "27242", + "ident": "ZYTL", + "type": "large_airport", + "name": "Dalian Zhoushuizi International Airport", + "latitude_deg": "38.965698", + "longitude_deg": "121.539001", + "elevation_ft": "107", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Ganjingzi, Dalian", + "scheduled_service": "yes", + "gps_code": "ZYTL", + "iata_code": "DLC", + "wikipedia_link": "https://en.wikipedia.org/wiki/Dalian_Zhoushuizi_International_Airport", + "keywords": "Dalian Air Base" + }, + { + "id": "307013", + "ident": "ZYTN", + "type": "medium_airport", + "name": "Tonghua Sanyuanpu Airport", + "latitude_deg": "42.2538888889", + "longitude_deg": "125.703333333", + "elevation_ft": "1200", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-22", + "municipality": "Tonghua", + "scheduled_service": "yes", + "gps_code": "ZYTN", + "iata_code": "TNH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Tonghua_Sanyuanpu_Airport", + "keywords": "Tonghua Liuhe Airport" + }, + { + "id": "27243", + "ident": "ZYTX", + "type": "large_airport", + "name": "Shenyang Taoxian International Airport", + "latitude_deg": "41.639801", + "longitude_deg": "123.483002", + "elevation_ft": "198", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Hunnan, Shenyang", + "scheduled_service": "yes", + "gps_code": "ZYTX", + "iata_code": "SHE", + "wikipedia_link": "https://en.wikipedia.org/wiki/Shenyang_Taoxian_International_Airport" + }, + { + "id": "342103", + "ident": "ZYXW", + "type": "closed", + "name": "Mt Logan Airstrip", + "latitude_deg": "60.79299", + "longitude_deg": "-138.694027", + "elevation_ft": "1997", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "Unorganized Yukon", + "scheduled_service": "no", + "gps_code": "ZYXW", + "iata_code": "ZYA", + "local_code": "YK90" + }, + { + "id": "27244", + "ident": "ZYYJ", + "type": "medium_airport", + "name": "Yanji Chaoyangchuan Airport", + "latitude_deg": "42.8828010559", + "longitude_deg": "129.451004028", + "elevation_ft": "624", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-22", + "municipality": "Yanji", + "scheduled_service": "yes", + "gps_code": "ZYYJ", + "iata_code": "YNJ", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yanji_Chaoyangchuan_Airport" + }, + { + "id": "317861", + "ident": "ZYYK", + "type": "medium_airport", + "name": "Yingkou Lanqi Airport", + "latitude_deg": "40.542524", + "longitude_deg": "122.3586", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Laobian, Yingkou", + "scheduled_service": "yes", + "gps_code": "ZYYK", + "iata_code": "YKH", + "wikipedia_link": "https://en.wikipedia.org/wiki/Yingkou_Lanqi_Airport" + }, + { + "id": "32753", + "ident": "ZYYY", + "type": "medium_airport", + "name": "Shenyang Dongta Airport", + "latitude_deg": "41.784401", + "longitude_deg": "123.496002", + "continent": "AS", + "iso_country": "CN", + "iso_region": "CN-21", + "municipality": "Dadong, Shenyang", + "scheduled_service": "no", + "gps_code": "ZYYY" + }, + { + "id": "46378", + "ident": "ZZ-0001", + "type": "heliport", + "name": "Sealand Helipad", + "latitude_deg": "51.894444", + "longitude_deg": "1.4825", + "elevation_ft": "40", + "continent": "EU", + "iso_country": "GB", + "iso_region": "GB-ENG", + "municipality": "Sealand", + "scheduled_service": "no", + "home_link": "http://www.sealandgov.org/", + "wikipedia_link": "https://en.wikipedia.org/wiki/Principality_of_Sealand", + "keywords": "Roughs Tower Helipad" + }, + { + "id": "307326", + "ident": "ZZ-0002", + "type": "small_airport", + "name": "Glorioso Islands Airstrip", + "latitude_deg": "-11.584277777799999", + "longitude_deg": "47.296388888900005", + "elevation_ft": "11", + "continent": "AF", + "iso_country": "TF", + "iso_region": "TF-U-A", + "municipality": "Grande Glorieuse", + "scheduled_service": "no" + }, + { + "id": "346788", + "ident": "ZZ-0003", + "type": "small_airport", + "name": "Fainting Goat Airport", + "latitude_deg": "32.110587", + "longitude_deg": "-97.356312", + "elevation_ft": "690", + "continent": "NA", + "iso_country": "US", + "iso_region": "US-TX", + "municipality": "Blum", + "scheduled_service": "no", + "gps_code": "87TX", + "local_code": "87TX" + }, + { + "id": "342102", + "ident": "ZZZW", + "type": "closed", + "name": "Scandium City Heliport", + "latitude_deg": "69.355287", + "longitude_deg": "-138.93931", + "elevation_ft": "4", + "continent": "NA", + "iso_country": "CA", + "iso_region": "CA-YT", + "municipality": "(Old) Scandium City", + "scheduled_service": "no", + "gps_code": "ZZZW", + "iata_code": "ZYW", + "local_code": "YK96" + }, + { + "id": "313629", + "ident": "ZZZZ", + "type": "small_airport", + "name": "Satsuma Iōjima Airport", + "latitude_deg": "30.784722", + "longitude_deg": "130.270556", + "elevation_ft": "338", + "continent": "AS", + "iso_country": "JP", + "iso_region": "JP-46", + "municipality": "Mishima", + "scheduled_service": "no", + "gps_code": "RJX7", + "local_code": "RJX7", + "wikipedia_link": "http://wikimapia.org/6705190/Satsuma-Iwo-jima-Airport", + "keywords": "SATSUMA,IWOJIMA,RJX7" + } + ] +} \ No newline at end of file diff --git a/samples/react-flighttracker/src/mockData/flightSchedules.json b/samples/react-flighttracker/src/mockData/flightSchedules.json new file mode 100644 index 000000000..8f2d47170 --- /dev/null +++ b/samples/react-flighttracker/src/mockData/flightSchedules.json @@ -0,0 +1,3060 @@ +{ + "departures": [ + { + "departure": { + "scheduledTimeLocal": "2022-10-08 17:15+01:00", + "actualTimeLocal": "2022-10-08 17:15+01:00", + "scheduledTimeUtc": "2022-10-08 16:15Z", + "actualTimeUtc": "2022-10-08 16:15Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "name": "Basel" + }, + "quality": [] + }, + "number": "EC 1134", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "airline": { + "name": "EasyJet Europe" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 18:05+01:00", + "actualTimeLocal": "2022-10-08 18:05+01:00", + "scheduledTimeUtc": "2022-10-08 17:05Z", + "actualTimeUtc": "2022-10-08 17:05Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "name": "Paris, Ch. de Gaulle" + }, + "quality": [] + }, + "number": "EC 3776", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "airline": { + "name": "EasyJet Europe" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 19:20+01:00", + "actualTimeLocal": "2022-10-08 19:20+01:00", + "scheduledTimeUtc": "2022-10-08 18:20Z", + "actualTimeUtc": "2022-10-08 18:20Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "name": "Lyon, St. Exupery" + }, + "quality": [] + }, + "number": "EC 4450", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "airline": { + "name": "EasyJet Europe" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 16:30+01:00", + "actualTimeLocal": "2022-10-08 16:45+01:00", + "scheduledTimeUtc": "2022-10-08 15:30Z", + "actualTimeUtc": "2022-10-08 15:45Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "EDDF", + "iata": "FRA", + "name": "Frankfurt-am-Main" + }, + "scheduledTimeLocal": "2022-10-08 20:10+02:00", + "actualTimeLocal": "2022-10-08 20:10+02:00", + "scheduledTimeUtc": "2022-10-08 18:10Z", + "actualTimeUtc": "2022-10-08 18:10Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "LH 1179", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "reg": "D-AIRC", + "modeS": "3C6643", + "model": "Airbus A321" + }, + "airline": { + "name": "Lufthansa" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 16:40+01:00", + "actualTimeLocal": "2022-10-08 16:40+01:00", + "scheduledTimeUtc": "2022-10-08 15:40Z", + "actualTimeUtc": "2022-10-08 15:40Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "EDDH", + "iata": "HAM", + "name": "Hamburg" + }, + "scheduledTimeLocal": "2022-10-08 20:35+02:00", + "actualTimeLocal": "2022-10-08 20:35+02:00", + "scheduledTimeUtc": "2022-10-08 18:35Z", + "actualTimeUtc": "2022-10-08 18:35Z", + "terminal": "2", + "baggageBelt": "8", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "FR 9204", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 17:05+01:00", + "actualTimeLocal": "2022-10-08 17:30+01:00", + "scheduledTimeUtc": "2022-10-08 16:05Z", + "actualTimeUtc": "2022-10-08 16:30Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "EDDK", + "iata": "CGN", + "name": "Cologne" + }, + "scheduledTimeLocal": "2022-10-08 20:35+02:00", + "scheduledTimeUtc": "2022-10-08 18:35Z", + "terminal": "2", + "quality": [ + "Basic" + ] + }, + "number": "FR 9972", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 18:45+01:00", + "actualTimeLocal": "2022-10-08 18:45+01:00", + "scheduledTimeUtc": "2022-10-08 17:45Z", + "actualTimeUtc": "2022-10-08 17:45Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "EDDL", + "iata": "DUS", + "name": "Duesseldorf" + }, + "scheduledTimeLocal": "2022-10-08 22:25+02:00", + "actualTimeLocal": "2022-10-08 22:25+02:00", + "scheduledTimeUtc": "2022-10-08 20:25Z", + "actualTimeUtc": "2022-10-08 20:25Z", + "terminal": "A", + "gate": "B91", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "EW 9641", + "callSign": "EWG61FJ", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "reg": "D-AEWM", + "modeS": "3C56ED", + "model": "Airbus A320" + }, + "airline": { + "name": "Eurowings" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 17:50+01:00", + "actualTimeLocal": "2022-10-08 17:50+01:00", + "scheduledTimeUtc": "2022-10-08 16:50Z", + "actualTimeUtc": "2022-10-08 16:50Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "EGGP", + "iata": "LPL", + "name": "Liverpool" + }, + "scheduledTimeLocal": "2022-10-08 20:05+01:00", + "scheduledTimeUtc": "2022-10-08 19:05Z", + "quality": [ + "Basic" + ] + }, + "number": "FR 9203", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 18:05+01:00", + "actualTimeLocal": "2022-10-08 18:05+01:00", + "scheduledTimeUtc": "2022-10-08 17:05Z", + "actualTimeUtc": "2022-10-08 17:05Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "EGKK", + "iata": "LGW", + "name": "London" + }, + "scheduledTimeLocal": "2022-10-08 20:20+01:00", + "scheduledTimeUtc": "2022-10-08 19:20Z", + "terminal": "N", + "quality": [ + "Basic" + ] + }, + "number": "TP 1332", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "TAP Air Portugal" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 17:55+01:00", + "actualTimeLocal": "2022-10-08 17:55+01:00", + "scheduledTimeUtc": "2022-10-08 16:55Z", + "actualTimeUtc": "2022-10-08 16:55Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "EGSS", + "iata": "STN", + "name": "London" + }, + "scheduledTimeLocal": "2022-10-08 20:20+01:00", + "actualTimeLocal": "2022-10-08 20:20+01:00", + "scheduledTimeUtc": "2022-10-08 19:20Z", + "actualTimeUtc": "2022-10-08 19:20Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "FR 8348", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 16:25+01:00", + "actualTimeLocal": "2022-10-08 16:25+01:00", + "scheduledTimeUtc": "2022-10-08 15:25Z", + "actualTimeUtc": "2022-10-08 15:25Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "EHAM", + "iata": "AMS", + "name": "Amsterdam" + }, + "scheduledTimeLocal": "2022-10-08 20:05+02:00", + "actualTimeLocal": "2022-10-08 19:57+02:00", + "runwayTimeLocal": "2022-10-08 19:57+02:00", + "scheduledTimeUtc": "2022-10-08 18:05Z", + "actualTimeUtc": "2022-10-08 17:57Z", + "runwayTimeUtc": "2022-10-08 17:57Z", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "KL 1714", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Embraer 190" + }, + "airline": { + "name": "KLM" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 15:55+01:00", + "actualTimeLocal": "2022-10-08 16:40+01:00", + "scheduledTimeUtc": "2022-10-08 14:55Z", + "actualTimeUtc": "2022-10-08 15:40Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "EPMO", + "iata": "WMI", + "name": "Warsaw" + }, + "scheduledTimeLocal": "2022-10-08 20:30+02:00", + "scheduledTimeUtc": "2022-10-08 18:30Z", + "quality": [ + "Basic" + ] + }, + "number": "FR 4534", + "status": "Delayed", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 15:45+01:00", + "actualTimeLocal": "2022-10-08 15:45+01:00", + "scheduledTimeUtc": "2022-10-08 14:45Z", + "actualTimeUtc": "2022-10-08 14:45Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "LEBL", + "iata": "BCN", + "name": "Barcelona" + }, + "scheduledTimeLocal": "2022-10-08 18:30+02:00", + "actualTimeLocal": "2022-10-08 18:23+02:00", + "scheduledTimeUtc": "2022-10-08 16:30Z", + "actualTimeUtc": "2022-10-08 16:23Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "VY 8479", + "status": "Boarding", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "Vueling" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 18:30+01:00", + "actualTimeLocal": "2022-10-08 18:30+01:00", + "scheduledTimeUtc": "2022-10-08 17:30Z", + "actualTimeUtc": "2022-10-08 17:30Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "LEIB", + "iata": "IBZ", + "name": "Ibiza Town" + }, + "scheduledTimeLocal": "2022-10-08 21:10+02:00", + "actualTimeLocal": "2022-10-08 21:10+02:00", + "scheduledTimeUtc": "2022-10-08 19:10Z", + "actualTimeUtc": "2022-10-08 19:10Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "EC 7595", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "EasyJet Europe" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 18:30+01:00", + "scheduledTimeUtc": "2022-10-08 17:30Z", + "quality": [ + "Basic" + ] + }, + "arrival": { + "airport": { + "icao": "LEIB", + "iata": "IBZ", + "name": "Ibiza Town" + }, + "scheduledTimeLocal": "2022-10-08 21:10+02:00", + "scheduledTimeUtc": "2022-10-08 19:10Z", + "quality": [ + "Basic" + ] + }, + "number": "U2 7595", + "status": "Unknown", + "codeshareStatus": "Unknown", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "easyJet" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 16:35+01:00", + "actualTimeLocal": "2022-10-08 16:35+01:00", + "scheduledTimeUtc": "2022-10-08 15:35Z", + "actualTimeUtc": "2022-10-08 15:35Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "LEMD", + "iata": "MAD", + "name": "Madrid" + }, + "scheduledTimeLocal": "2022-10-08 18:55+02:00", + "actualTimeLocal": "2022-10-08 18:50+02:00", + "scheduledTimeUtc": "2022-10-08 16:55Z", + "actualTimeUtc": "2022-10-08 16:50Z", + "terminal": "4", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "IB 8665", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Bombardier CRJ1000" + }, + "airline": { + "name": "Iberia" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 16:00+01:00", + "actualTimeLocal": "2022-10-08 16:00+01:00", + "scheduledTimeUtc": "2022-10-08 15:00Z", + "actualTimeUtc": "2022-10-08 15:00Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "LEMD", + "iata": "MAD", + "name": "Madrid" + }, + "scheduledTimeLocal": "2022-10-08 18:10+02:00", + "actualTimeLocal": "2022-10-08 18:10+02:00", + "scheduledTimeUtc": "2022-10-08 16:10Z", + "actualTimeUtc": "2022-10-08 16:10Z", + "terminal": "2", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "UX 1140", + "status": "Boarding", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Embraer 190" + }, + "airline": { + "name": "Air Europa" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 18:05+01:00", + "actualTimeLocal": "2022-10-08 18:05+01:00", + "scheduledTimeUtc": "2022-10-08 17:05Z", + "actualTimeUtc": "2022-10-08 17:05Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "LEPA", + "iata": "PMI", + "name": "Palma De Mallorca" + }, + "scheduledTimeLocal": "2022-10-08 20:50+02:00", + "actualTimeLocal": "2022-10-08 20:50+02:00", + "scheduledTimeUtc": "2022-10-08 18:50Z", + "actualTimeUtc": "2022-10-08 18:50Z", + "terminal": "N", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "FR 7802", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 19:20+01:00", + "scheduledTimeUtc": "2022-10-08 18:20Z", + "quality": [ + "Basic" + ] + }, + "arrival": { + "airport": { + "icao": "LFLL", + "iata": "LYS", + "name": "Lyon" + }, + "scheduledTimeLocal": "2022-10-08 22:20+02:00", + "scheduledTimeUtc": "2022-10-08 20:20Z", + "terminal": "1", + "quality": [ + "Basic" + ] + }, + "number": "U2 4450", + "status": "Unknown", + "codeshareStatus": "Unknown", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "easyJet" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 15:40+01:00", + "actualTimeLocal": "2022-10-08 15:40+01:00", + "scheduledTimeUtc": "2022-10-08 14:40Z", + "actualTimeUtc": "2022-10-08 14:40Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "LFML", + "iata": "MRS", + "name": "Marseille" + }, + "scheduledTimeLocal": "2022-10-08 18:35+02:00", + "scheduledTimeUtc": "2022-10-08 16:35Z", + "terminal": "2", + "quality": [ + "Basic" + ] + }, + "number": "FR 6532", + "status": "GateClosed", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 18:55+01:00", + "actualTimeLocal": "2022-10-08 18:55+01:00", + "scheduledTimeUtc": "2022-10-08 17:55Z", + "actualTimeUtc": "2022-10-08 17:55Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "LFOB", + "iata": "BVA", + "name": "Beauvais/Tillé" + }, + "scheduledTimeLocal": "2022-10-08 22:00+02:00", + "scheduledTimeUtc": "2022-10-08 20:00Z", + "quality": [ + "Basic" + ] + }, + "number": "FR 7474", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 16:20+01:00", + "actualTimeLocal": "2022-10-08 16:20+01:00", + "scheduledTimeUtc": "2022-10-08 15:20Z", + "actualTimeUtc": "2022-10-08 15:20Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "LFPG", + "iata": "CDG", + "name": "Paris" + }, + "scheduledTimeLocal": "2022-10-08 19:35+02:00", + "scheduledTimeUtc": "2022-10-08 17:35Z", + "terminal": "2F", + "quality": [ + "Basic" + ] + }, + "number": "AF 1529", + "status": "Boarding", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Airbus A319" + }, + "airline": { + "name": "Air France" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 18:05+01:00", + "scheduledTimeUtc": "2022-10-08 17:05Z", + "quality": [ + "Basic" + ] + }, + "arrival": { + "airport": { + "icao": "LFPG", + "iata": "CDG", + "name": "Paris" + }, + "scheduledTimeLocal": "2022-10-08 21:15+02:00", + "scheduledTimeUtc": "2022-10-08 19:15Z", + "terminal": "2B", + "quality": [ + "Basic" + ] + }, + "number": "U2 3776", + "status": "Unknown", + "codeshareStatus": "Unknown", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "easyJet" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 19:30+01:00", + "actualTimeLocal": "2022-10-08 19:30+01:00", + "scheduledTimeUtc": "2022-10-08 18:30Z", + "actualTimeUtc": "2022-10-08 18:30Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "LFPO", + "iata": "ORY", + "name": "Paris" + }, + "scheduledTimeLocal": "2022-10-08 22:40+02:00", + "scheduledTimeUtc": "2022-10-08 20:40Z", + "terminal": "3", + "quality": [ + "Basic" + ] + }, + "number": "TO 7609", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Transavia France" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 19:45+01:00", + "actualTimeLocal": "2022-10-08 19:45+01:00", + "scheduledTimeUtc": "2022-10-08 18:45Z", + "actualTimeUtc": "2022-10-08 18:45Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "LFPO", + "iata": "ORY", + "name": "Paris" + }, + "scheduledTimeLocal": "2022-10-08 22:55+02:00", + "scheduledTimeUtc": "2022-10-08 20:55Z", + "terminal": "1", + "quality": [ + "Basic" + ] + }, + "number": "TP 458", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "TAP Air Portugal" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 17:15+01:00", + "scheduledTimeUtc": "2022-10-08 16:15Z", + "quality": [ + "Basic" + ] + }, + "arrival": { + "airport": { + "icao": "LFSB", + "iata": "BSL", + "name": "Bâle/Mulhouse" + }, + "scheduledTimeLocal": "2022-10-08 20:40+02:00", + "scheduledTimeUtc": "2022-10-08 18:40Z", + "quality": [ + "Basic" + ] + }, + "number": "U2 1134", + "status": "CanceledUncertain", + "codeshareStatus": "Unknown", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "easyJet" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 16:35+01:00", + "actualTimeLocal": "2022-10-08 18:05+01:00", + "scheduledTimeUtc": "2022-10-08 15:35Z", + "actualTimeUtc": "2022-10-08 17:05Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "LHBP", + "iata": "BUD", + "name": "Budapest" + }, + "scheduledTimeLocal": "2022-10-08 20:55+02:00", + "actualTimeLocal": "2022-10-08 20:55+02:00", + "scheduledTimeUtc": "2022-10-08 18:55Z", + "actualTimeUtc": "2022-10-08 18:55Z", + "terminal": "2A", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "FR 8864", + "status": "Delayed", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 17:50+01:00", + "actualTimeLocal": "2022-10-08 17:50+01:00", + "scheduledTimeUtc": "2022-10-08 16:50Z", + "actualTimeUtc": "2022-10-08 16:50Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "LIPH", + "iata": "TSF", + "name": "Treviso" + }, + "scheduledTimeLocal": "2022-10-08 21:30+02:00", + "scheduledTimeUtc": "2022-10-08 19:30Z", + "quality": [ + "Basic" + ] + }, + "number": "FR 2160", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 16:25+01:00", + "actualTimeLocal": "2022-10-08 16:25+01:00", + "scheduledTimeUtc": "2022-10-08 15:25Z", + "actualTimeUtc": "2022-10-08 15:25Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "LIRA", + "iata": "CIA", + "name": "Roma" + }, + "scheduledTimeLocal": "2022-10-08 20:00+02:00", + "actualTimeLocal": "2022-10-08 20:00+02:00", + "scheduledTimeUtc": "2022-10-08 18:00Z", + "actualTimeUtc": "2022-10-08 18:00Z", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "FR 9133", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 18:15+01:00", + "actualTimeLocal": "2022-10-08 18:15+01:00", + "scheduledTimeUtc": "2022-10-08 17:15Z", + "actualTimeUtc": "2022-10-08 17:15Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "LPMA", + "iata": "FNC", + "name": "Funchal" + }, + "scheduledTimeLocal": "2022-10-08 20:15+01:00", + "actualTimeLocal": "2022-10-08 20:15+01:00", + "scheduledTimeUtc": "2022-10-08 19:15Z", + "actualTimeUtc": "2022-10-08 19:15Z", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "EC 7587", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "airline": { + "name": "EasyJet Europe" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 18:15+01:00", + "scheduledTimeUtc": "2022-10-08 17:15Z", + "quality": [ + "Basic" + ] + }, + "arrival": { + "airport": { + "icao": "LPMA", + "iata": "FNC", + "name": "Funchal" + }, + "scheduledTimeLocal": "2022-10-08 20:15+01:00", + "scheduledTimeUtc": "2022-10-08 19:15Z", + "quality": [ + "Basic" + ] + }, + "number": "U2 7587", + "status": "Unknown", + "codeshareStatus": "Unknown", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "easyJet" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 15:20+01:00", + "actualTimeLocal": "2022-10-08 16:10+01:00", + "scheduledTimeUtc": "2022-10-08 14:20Z", + "actualTimeUtc": "2022-10-08 15:10Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "LPPD", + "iata": "PDL", + "name": "Ponta Delgada" + }, + "scheduledTimeLocal": "2022-10-08 17:15+00:00", + "actualTimeLocal": "2022-10-08 17:15+00:00", + "scheduledTimeUtc": "2022-10-08 17:15Z", + "actualTimeUtc": "2022-10-08 17:15Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "TP 1861", + "status": "Delayed", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Embraer 195" + }, + "airline": { + "name": "TAP Air Portugal" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 19:15+01:00", + "actualTimeLocal": "2022-10-08 19:15+01:00", + "scheduledTimeUtc": "2022-10-08 18:15Z", + "actualTimeUtc": "2022-10-08 18:15Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "LPPD", + "iata": "PDL", + "name": "Ponta Delgada" + }, + "scheduledTimeLocal": "2022-10-08 20:40+00:00", + "actualTimeLocal": "2022-10-08 20:40+00:00", + "scheduledTimeUtc": "2022-10-08 20:40Z", + "actualTimeUtc": "2022-10-08 20:40Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "S4 173", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "Azores" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 18:00+01:00", + "actualTimeLocal": "2022-10-08 18:00+01:00", + "scheduledTimeUtc": "2022-10-08 17:00Z", + "actualTimeUtc": "2022-10-08 17:00Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "LPPT", + "iata": "LIS", + "name": "Lisbon" + }, + "scheduledTimeLocal": "2022-10-08 18:55+01:00", + "actualTimeLocal": "2022-10-08 18:55+01:00", + "scheduledTimeUtc": "2022-10-08 17:55Z", + "actualTimeUtc": "2022-10-08 17:55Z", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "TP 1951", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Airbus A319" + }, + "airline": { + "name": "TAP Air Portugal" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 17:30+01:00", + "actualTimeLocal": "2022-10-08 17:30+01:00", + "scheduledTimeUtc": "2022-10-08 16:30Z", + "actualTimeUtc": "2022-10-08 16:30Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "LSGG", + "iata": "GVA", + "name": "Geneva" + }, + "scheduledTimeLocal": "2022-10-08 20:40+02:00", + "actualTimeLocal": "2022-10-08 20:40+02:00", + "scheduledTimeUtc": "2022-10-08 18:40Z", + "actualTimeUtc": "2022-10-08 18:40Z", + "baggageBelt": "3", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "EC 1460", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Airbus A320 (sharklets)" + }, + "airline": { + "name": "EasyJet Europe" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 17:30+01:00", + "scheduledTimeUtc": "2022-10-08 16:30Z", + "quality": [ + "Basic" + ] + }, + "arrival": { + "airport": { + "icao": "LSGG", + "iata": "GVA", + "name": "Geneva" + }, + "scheduledTimeLocal": "2022-10-08 20:40+02:00", + "scheduledTimeUtc": "2022-10-08 18:40Z", + "terminal": "1", + "quality": [ + "Basic" + ] + }, + "number": "U2 1460", + "status": "CanceledUncertain", + "codeshareStatus": "Unknown", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "easyJet" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 19:25+01:00", + "actualTimeLocal": "2022-10-08 19:25+01:00", + "scheduledTimeUtc": "2022-10-08 18:25Z", + "actualTimeUtc": "2022-10-08 18:25Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "LSGG", + "iata": "GVA", + "name": "Geneva" + }, + "scheduledTimeLocal": "2022-10-08 22:35+02:00", + "actualTimeLocal": "2022-10-08 22:35+02:00", + "scheduledTimeUtc": "2022-10-08 20:35Z", + "actualTimeUtc": "2022-10-08 20:35Z", + "baggageBelt": "5", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "DS 1464", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "Easyjet Switzerland" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 19:25+01:00", + "scheduledTimeUtc": "2022-10-08 18:25Z", + "quality": [ + "Basic" + ] + }, + "arrival": { + "airport": { + "icao": "LSGG", + "iata": "GVA", + "name": "Geneva" + }, + "scheduledTimeLocal": "2022-10-08 22:35+02:00", + "scheduledTimeUtc": "2022-10-08 20:35Z", + "terminal": "1", + "quality": [ + "Basic" + ] + }, + "number": "U2 1464", + "status": "Unknown", + "codeshareStatus": "Unknown", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "easyJet" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 19:30+01:00", + "actualTimeLocal": "2022-10-08 19:30+01:00", + "scheduledTimeUtc": "2022-10-08 18:30Z", + "actualTimeUtc": "2022-10-08 18:30Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "LSZH", + "iata": "ZRH", + "name": "Zurich" + }, + "scheduledTimeLocal": "2022-10-08 22:55+02:00", + "actualTimeLocal": "2022-10-08 22:55+02:00", + "scheduledTimeUtc": "2022-10-08 20:55Z", + "actualTimeUtc": "2022-10-08 20:55Z", + "terminal": "2", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "LX 2065", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "reg": "HB-JDB", + "modeS": "4B1813", + "model": "Airbus A320 NEO" + }, + "airline": { + "name": "SWISS" + } + }, + { + "departure": { + "scheduledTimeLocal": "2022-10-08 16:10+01:00", + "actualTimeLocal": "2022-10-08 16:10+01:00", + "scheduledTimeUtc": "2022-10-08 15:10Z", + "actualTimeUtc": "2022-10-08 15:10Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "airport": { + "icao": "LTFM", + "iata": "IST", + "name": "Istanbul" + }, + "scheduledTimeLocal": "2022-10-08 22:45+03:00", + "scheduledTimeUtc": "2022-10-08 19:45Z", + "quality": [ + "Basic" + ] + }, + "number": "TK 1450", + "status": "Boarding", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737" + }, + "airline": { + "name": "Turkish" + } + } + ], + "arrivals": [ + { + "departure": { + "airport": { + "icao": "LEZL", + "iata": "SVQ", + "name": "Seville" + }, + "scheduledTimeLocal": "2022-10-08 14:45+02:00", + "actualTimeLocal": "2022-10-08 15:02+02:00", + "scheduledTimeUtc": "2022-10-08 12:45Z", + "actualTimeUtc": "2022-10-08 13:02Z", + "terminal": "1", + "checkInDesk": "M06-M10", + "gate": "A2", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 14:55+01:00", + "actualTimeLocal": "2022-10-08 15:00+01:00", + "scheduledTimeUtc": "2022-10-08 13:55Z", + "actualTimeUtc": "2022-10-08 14:00Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "FR 5466", + "status": "Arrived", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "airport": { + "icao": "LFOT", + "iata": "TUF", + "name": "Tours/Val de Loire (Loire Valley)" + }, + "scheduledTimeLocal": "2022-10-08 13:50+02:00", + "scheduledTimeUtc": "2022-10-08 11:50Z", + "quality": [ + "Basic" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 14:50+01:00", + "actualTimeLocal": "2022-10-08 17:40+01:00", + "scheduledTimeUtc": "2022-10-08 13:50Z", + "actualTimeUtc": "2022-10-08 16:40Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "FR 7465", + "status": "Delayed", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "airport": { + "icao": "EGKK", + "iata": "LGW", + "name": "London" + }, + "scheduledTimeLocal": "2022-10-08 12:00+01:00", + "actualTimeLocal": "2022-10-08 12:00+01:00", + "scheduledTimeUtc": "2022-10-08 11:00Z", + "actualTimeUtc": "2022-10-08 11:00Z", + "terminal": "S", + "gate": "12", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 14:25+01:00", + "actualTimeLocal": "2022-10-08 15:31+01:00", + "scheduledTimeUtc": "2022-10-08 13:25Z", + "actualTimeUtc": "2022-10-08 14:31Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "TP 1331", + "callSign": "TAP1331", + "status": "Arrived", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "reg": "CS-TTW", + "modeS": "495297", + "model": "Embraer 195" + }, + "airline": { + "name": "TAP Air Portugal" + } + }, + { + "departure": { + "airport": { + "icao": "LFPG", + "iata": "CDG", + "name": "Paris" + }, + "scheduledTimeLocal": "2022-10-08 14:15+02:00", + "scheduledTimeUtc": "2022-10-08 12:15Z", + "terminal": "2F", + "quality": [ + "Basic" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 15:30+01:00", + "actualTimeLocal": "2022-10-08 15:18+01:00", + "scheduledTimeUtc": "2022-10-08 14:30Z", + "actualTimeUtc": "2022-10-08 14:18Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "AF 1528", + "status": "Arrived", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Airbus A319" + }, + "airline": { + "name": "Air France" + } + }, + { + "departure": { + "airport": { + "icao": "LPPD", + "iata": "PDL", + "name": "Ponta Delgada" + }, + "scheduledTimeLocal": "2022-10-08 12:20+00:00", + "actualTimeLocal": "2022-10-08 13:12+00:00", + "scheduledTimeUtc": "2022-10-08 12:20Z", + "actualTimeUtc": "2022-10-08 13:12Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 15:30+01:00", + "actualTimeLocal": "2022-10-08 16:15+01:00", + "scheduledTimeUtc": "2022-10-08 14:30Z", + "actualTimeUtc": "2022-10-08 15:15Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "FR 2632", + "status": "Delayed", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "airport": { + "icao": "ELLX", + "iata": "LUX", + "name": "Luxembourg" + }, + "scheduledTimeLocal": "2022-10-08 14:15+02:00", + "actualTimeLocal": "2022-10-08 14:35+02:00", + "scheduledTimeUtc": "2022-10-08 12:15Z", + "actualTimeUtc": "2022-10-08 12:35Z", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 15:45+01:00", + "actualTimeLocal": "2022-10-08 16:05+01:00", + "scheduledTimeUtc": "2022-10-08 14:45Z", + "actualTimeUtc": "2022-10-08 15:05Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "FR 2863", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "airport": { + "icao": "LFGJ", + "iata": "DLE", + "name": "Dole/Tavaux" + }, + "scheduledTimeLocal": "2022-10-08 14:30+02:00", + "scheduledTimeUtc": "2022-10-08 12:30Z", + "quality": [ + "Basic" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 15:45+01:00", + "actualTimeLocal": "2022-10-08 17:05+01:00", + "scheduledTimeUtc": "2022-10-08 14:45Z", + "actualTimeUtc": "2022-10-08 16:05Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "FR 9139", + "status": "Delayed", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "airport": { + "icao": "LEMD", + "iata": "MAD", + "name": "Madrid" + }, + "scheduledTimeLocal": "2022-10-08 15:35+02:00", + "actualTimeLocal": "2022-10-08 15:43+02:00", + "scheduledTimeUtc": "2022-10-08 13:35Z", + "actualTimeUtc": "2022-10-08 13:43Z", + "terminal": "4", + "checkInDesk": "850-859", + "gate": "K72", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 15:55+01:00", + "actualTimeLocal": "2022-10-08 15:37+01:00", + "scheduledTimeUtc": "2022-10-08 14:55Z", + "actualTimeUtc": "2022-10-08 14:37Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "IB 8664", + "callSign": "IBE8664", + "status": "Arrived", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "reg": "EC-LJR", + "modeS": "34364E", + "model": "Bombardier CRJ1000" + }, + "airline": { + "name": "Iberia" + } + }, + { + "departure": { + "airport": { + "icao": "EHAM", + "iata": "AMS", + "name": "Amsterdam" + }, + "scheduledTimeLocal": "2022-10-08 14:05+02:00", + "actualTimeLocal": "2022-10-08 14:22+02:00", + "scheduledTimeUtc": "2022-10-08 12:05Z", + "actualTimeUtc": "2022-10-08 12:22Z", + "terminal": "1", + "checkInDesk": "6-8", + "gate": "B32", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 15:40+01:00", + "actualTimeLocal": "2022-10-08 15:40+01:00", + "scheduledTimeUtc": "2022-10-08 14:40Z", + "actualTimeUtc": "2022-10-08 14:40Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "KL 1713", + "status": "Arrived", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "reg": "PH-EZX", + "modeS": "484F80", + "model": "Embraer 190" + }, + "airline": { + "name": "KLM" + } + }, + { + "departure": { + "airport": { + "icao": "EDDF", + "iata": "FRA", + "name": "Frankfurt-am-Main" + }, + "scheduledTimeLocal": "2022-10-08 13:55+02:00", + "actualTimeLocal": "2022-10-08 14:10+02:00", + "scheduledTimeUtc": "2022-10-08 11:55Z", + "actualTimeUtc": "2022-10-08 12:10Z", + "terminal": "1", + "checkInDesk": "263-461", + "gate": "A54", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 15:40+01:00", + "actualTimeLocal": "2022-10-08 15:50+01:00", + "scheduledTimeUtc": "2022-10-08 14:40Z", + "actualTimeUtc": "2022-10-08 14:50Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "LH 1178", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "reg": "D-AIRC", + "modeS": "3C6643", + "model": "Airbus A321" + }, + "airline": { + "name": "Lufthansa" + } + }, + { + "departure": { + "airport": { + "icao": "LTFM", + "iata": "IST", + "name": "Istanbul" + }, + "scheduledTimeLocal": "2022-10-08 12:15+03:00", + "scheduledTimeUtc": "2022-10-08 09:15Z", + "quality": [ + "Basic" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 15:10+01:00", + "actualTimeLocal": "2022-10-08 15:11+01:00", + "scheduledTimeUtc": "2022-10-08 14:10Z", + "actualTimeUtc": "2022-10-08 14:11Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "TK 1449", + "status": "Arrived", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737" + }, + "airline": { + "name": "Turkish" + } + }, + { + "departure": { + "airport": { + "icao": "LEMD", + "iata": "MAD", + "name": "Madrid" + }, + "scheduledTimeLocal": "2022-10-08 15:00+02:00", + "actualTimeLocal": "2022-10-08 15:04+02:00", + "scheduledTimeUtc": "2022-10-08 13:00Z", + "actualTimeUtc": "2022-10-08 13:04Z", + "terminal": "2", + "checkInDesk": "505-532", + "gate": "D64", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 15:15+01:00", + "actualTimeLocal": "2022-10-08 15:05+01:00", + "scheduledTimeUtc": "2022-10-08 14:15Z", + "actualTimeUtc": "2022-10-08 14:05Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "UX 1143", + "status": "Arrived", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Embraer 190" + }, + "airline": { + "name": "Air Europa" + } + }, + { + "departure": { + "airport": { + "icao": "LEBL", + "iata": "BCN", + "name": "Barcelona" + }, + "scheduledTimeLocal": "2022-10-08 14:15+02:00", + "scheduledTimeUtc": "2022-10-08 12:15Z", + "terminal": "1", + "checkInDesk": "411-512", + "gate": "B56", + "quality": [ + "Basic" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 15:10+01:00", + "actualTimeLocal": "2022-10-08 15:08+01:00", + "scheduledTimeUtc": "2022-10-08 14:10Z", + "actualTimeUtc": "2022-10-08 14:08Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "VY 8478", + "status": "Arrived", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "Vueling" + } + }, + { + "departure": { + "airport": { + "icao": "LSGG", + "iata": "GVA", + "name": "Geneva" + }, + "scheduledTimeLocal": "2022-10-08 15:10+02:00", + "actualTimeLocal": "2022-10-08 16:05+02:00", + "scheduledTimeUtc": "2022-10-08 13:10Z", + "actualTimeUtc": "2022-10-08 14:05Z", + "checkInDesk": "1-12", + "gate": "A1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 16:25+01:00", + "actualTimeLocal": "2022-10-08 17:05+01:00", + "scheduledTimeUtc": "2022-10-08 15:25Z", + "actualTimeUtc": "2022-10-08 16:05Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "EC 1455", + "status": "Delayed", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "EasyJet Europe" + } + }, + { + "departure": { + "airport": { + "name": "Nantes" + }, + "quality": [] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 16:55+01:00", + "actualTimeLocal": "2022-10-08 16:55+01:00", + "scheduledTimeUtc": "2022-10-08 15:55Z", + "actualTimeUtc": "2022-10-08 15:55Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "EC 7590", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "airline": { + "name": "EasyJet Europe" + } + }, + { + "departure": { + "airport": { + "icao": "LFBH", + "iata": "LRH", + "name": "La Rochelle/Île de Ré" + }, + "scheduledTimeLocal": "2022-10-08 16:15+02:00", + "scheduledTimeUtc": "2022-10-08 14:15Z", + "quality": [ + "Basic" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 16:50+01:00", + "actualTimeLocal": "2022-10-08 16:50+01:00", + "scheduledTimeUtc": "2022-10-08 15:50Z", + "actualTimeUtc": "2022-10-08 15:50Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "FR 7459", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "airport": { + "icao": "LFOB", + "iata": "BVA", + "name": "Beauvais/Tillé" + }, + "scheduledTimeLocal": "2022-10-08 15:30+02:00", + "scheduledTimeUtc": "2022-10-08 13:30Z", + "quality": [ + "Basic" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 16:40+01:00", + "actualTimeLocal": "2022-10-08 17:25+01:00", + "scheduledTimeUtc": "2022-10-08 15:40Z", + "actualTimeUtc": "2022-10-08 16:25Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "FR 7479", + "status": "Delayed", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "airport": { + "icao": "LIRA", + "iata": "CIA", + "name": "Roma" + }, + "scheduledTimeLocal": "2022-10-08 14:05+02:00", + "actualTimeLocal": "2022-10-08 14:05+02:00", + "scheduledTimeUtc": "2022-10-08 12:05Z", + "actualTimeUtc": "2022-10-08 12:05Z", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 16:00+01:00", + "actualTimeLocal": "2022-10-08 15:55+01:00", + "scheduledTimeUtc": "2022-10-08 15:00Z", + "actualTimeUtc": "2022-10-08 14:55Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "FR 9132", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "airport": { + "icao": "LEPA", + "iata": "PMI", + "name": "Palma De Mallorca" + }, + "scheduledTimeLocal": "2022-10-08 16:30+02:00", + "actualTimeLocal": "2022-10-08 16:30+02:00", + "scheduledTimeUtc": "2022-10-08 14:30Z", + "actualTimeUtc": "2022-10-08 14:30Z", + "terminal": "N", + "checkInDesk": "078-085", + "gate": "C68", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 17:30+01:00", + "actualTimeLocal": "2022-10-08 17:30+01:00", + "scheduledTimeUtc": "2022-10-08 16:30Z", + "actualTimeUtc": "2022-10-08 16:30Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "EC 3626", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Airbus A320 (sharklets)" + }, + "airline": { + "name": "EasyJet Europe" + } + }, + { + "departure": { + "airport": { + "icao": "ELLX", + "iata": "LUX", + "name": "Luxembourg" + }, + "scheduledTimeLocal": "2022-10-08 16:30+02:00", + "actualTimeLocal": "2022-10-08 16:30+02:00", + "scheduledTimeUtc": "2022-10-08 14:30Z", + "actualTimeUtc": "2022-10-08 14:30Z", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 17:55+01:00", + "actualTimeLocal": "2022-10-08 17:55+01:00", + "scheduledTimeUtc": "2022-10-08 16:55Z", + "actualTimeUtc": "2022-10-08 16:55Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "EC 7584", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "airline": { + "name": "EasyJet Europe" + } + }, + { + "departure": { + "airport": { + "icao": "LPMA", + "iata": "FNC", + "name": "Funchal" + }, + "scheduledTimeLocal": "2022-10-08 15:45+01:00", + "actualTimeLocal": "2022-10-08 16:20+01:00", + "scheduledTimeUtc": "2022-10-08 14:45Z", + "actualTimeUtc": "2022-10-08 15:20Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 17:40+01:00", + "actualTimeLocal": "2022-10-08 17:40+01:00", + "scheduledTimeUtc": "2022-10-08 16:40Z", + "actualTimeUtc": "2022-10-08 16:40Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "EC 7586", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "airline": { + "name": "EasyJet Europe" + } + }, + { + "departure": { + "airport": { + "icao": "LSGG", + "iata": "GVA", + "name": "Geneva" + }, + "scheduledTimeLocal": "2022-10-08 15:10+02:00", + "scheduledTimeUtc": "2022-10-08 13:10Z", + "terminal": "1", + "quality": [ + "Basic" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 16:25+01:00", + "scheduledTimeUtc": "2022-10-08 15:25Z", + "quality": [ + "Basic" + ] + }, + "number": "U2 1455", + "status": "CanceledUncertain", + "codeshareStatus": "Unknown", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "easyJet" + } + }, + { + "departure": { + "airport": { + "icao": "LFRS", + "iata": "NTE", + "name": "Nantes" + }, + "scheduledTimeLocal": "2022-10-08 16:15+02:00", + "scheduledTimeUtc": "2022-10-08 14:15Z", + "quality": [ + "Basic" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 16:55+01:00", + "scheduledTimeUtc": "2022-10-08 15:55Z", + "quality": [ + "Basic" + ] + }, + "number": "U2 7590", + "status": "CanceledUncertain", + "codeshareStatus": "Unknown", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "easyJet" + } + }, + { + "departure": { + "airport": { + "icao": "GMAD", + "iata": "AGA", + "name": "Agadir" + }, + "scheduledTimeLocal": "2022-10-08 15:15+01:00", + "scheduledTimeUtc": "2022-10-08 14:15Z", + "quality": [ + "Basic" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 17:25+01:00", + "actualTimeLocal": "2022-10-08 17:25+01:00", + "scheduledTimeUtc": "2022-10-08 16:25Z", + "actualTimeUtc": "2022-10-08 16:25Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "FR 3352", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "airport": { + "icao": "LFQQ", + "iata": "LIL", + "name": "Lille/Lesquin" + }, + "scheduledTimeLocal": "2022-10-08 16:20+02:00", + "scheduledTimeUtc": "2022-10-08 14:20Z", + "quality": [ + "Basic" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 17:40+01:00", + "actualTimeLocal": "2022-10-08 17:40+01:00", + "scheduledTimeUtc": "2022-10-08 16:40Z", + "actualTimeUtc": "2022-10-08 16:40Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "FR 4503", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "airport": { + "icao": "LPPT", + "iata": "LIS", + "name": "Lisbon" + }, + "scheduledTimeLocal": "2022-10-08 16:00+01:00", + "actualTimeLocal": "2022-10-08 16:00+01:00", + "scheduledTimeUtc": "2022-10-08 15:00Z", + "actualTimeUtc": "2022-10-08 15:00Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 17:00+01:00", + "actualTimeLocal": "2022-10-08 17:00+01:00", + "scheduledTimeUtc": "2022-10-08 16:00Z", + "actualTimeUtc": "2022-10-08 16:00Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "TP 1960", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Airbus A319" + }, + "airline": { + "name": "TAP Air Portugal" + } + }, + { + "departure": { + "airport": { + "icao": "LSZH", + "iata": "ZRH", + "name": "Zurich" + }, + "scheduledTimeLocal": "2022-10-08 15:40+02:00", + "actualTimeLocal": "2022-10-08 16:55+02:00", + "scheduledTimeUtc": "2022-10-08 13:40Z", + "actualTimeUtc": "2022-10-08 14:55Z", + "checkInDesk": "2(3)", + "gate": "A67", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 17:20+01:00", + "actualTimeLocal": "2022-10-08 18:15+01:00", + "scheduledTimeUtc": "2022-10-08 16:20Z", + "actualTimeUtc": "2022-10-08 17:15Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "TP 923", + "status": "Delayed", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "reg": "CS-TNU", + "modeS": "4951D5", + "model": "Airbus A320" + }, + "airline": { + "name": "TAP Air Portugal" + } + }, + { + "departure": { + "airport": { + "icao": "LEPA", + "iata": "PMI", + "name": "Palma De Mallorca" + }, + "scheduledTimeLocal": "2022-10-08 16:30+02:00", + "scheduledTimeUtc": "2022-10-08 14:30Z", + "quality": [ + "Basic" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 17:30+01:00", + "scheduledTimeUtc": "2022-10-08 16:30Z", + "quality": [ + "Basic" + ] + }, + "number": "U2 3626", + "status": "CanceledUncertain", + "codeshareStatus": "Unknown", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "easyJet" + } + }, + { + "departure": { + "airport": { + "icao": "ELLX", + "iata": "LUX", + "name": "Luxembourg" + }, + "scheduledTimeLocal": "2022-10-08 16:30+02:00", + "scheduledTimeUtc": "2022-10-08 14:30Z", + "quality": [ + "Basic" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 17:55+01:00", + "scheduledTimeUtc": "2022-10-08 16:55Z", + "quality": [ + "Basic" + ] + }, + "number": "U2 7584", + "status": "CanceledUncertain", + "codeshareStatus": "Unknown", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "easyJet" + } + }, + { + "departure": { + "airport": { + "icao": "LPMA", + "iata": "FNC", + "name": "Funchal" + }, + "scheduledTimeLocal": "2022-10-08 15:45+01:00", + "scheduledTimeUtc": "2022-10-08 14:45Z", + "quality": [ + "Basic" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 17:40+01:00", + "scheduledTimeUtc": "2022-10-08 16:40Z", + "quality": [ + "Basic" + ] + }, + "number": "U2 7586", + "status": "CanceledUncertain", + "codeshareStatus": "Unknown", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "easyJet" + } + }, + { + "departure": { + "airport": { + "icao": "LSGG", + "iata": "GVA", + "name": "Geneva" + }, + "scheduledTimeLocal": "2022-10-08 17:35+02:00", + "actualTimeLocal": "2022-10-08 18:10+02:00", + "scheduledTimeUtc": "2022-10-08 15:35Z", + "actualTimeUtc": "2022-10-08 16:10Z", + "checkInDesk": "1-12", + "gate": "D71", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 18:50+01:00", + "actualTimeLocal": "2022-10-08 18:50+01:00", + "scheduledTimeUtc": "2022-10-08 17:50Z", + "actualTimeUtc": "2022-10-08 17:50Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "DS 1463", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Airbus A320 NEO" + }, + "airline": { + "name": "Easyjet Switzerland" + } + }, + { + "departure": { + "airport": { + "name": "Lyon, St. Exupery" + }, + "quality": [] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 18:45+01:00", + "actualTimeLocal": "2022-10-08 18:45+01:00", + "scheduledTimeUtc": "2022-10-08 17:45Z", + "actualTimeUtc": "2022-10-08 17:45Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "EC 4449", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "airline": { + "name": "EasyJet Europe" + } + }, + { + "departure": { + "airport": { + "icao": "EGSS", + "iata": "STN", + "name": "London" + }, + "scheduledTimeLocal": "2022-10-08 15:55+01:00", + "actualTimeLocal": "2022-10-08 15:55+01:00", + "scheduledTimeUtc": "2022-10-08 14:55Z", + "actualTimeUtc": "2022-10-08 14:55Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 18:20+01:00", + "actualTimeLocal": "2022-10-08 18:20+01:00", + "scheduledTimeUtc": "2022-10-08 17:20Z", + "actualTimeUtc": "2022-10-08 17:20Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "FR 7965", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Ryanair" + } + }, + { + "departure": { + "airport": { + "icao": "LSZH", + "iata": "ZRH", + "name": "Zurich" + }, + "scheduledTimeLocal": "2022-10-08 17:10+02:00", + "actualTimeLocal": "2022-10-08 17:10+02:00", + "scheduledTimeUtc": "2022-10-08 15:10Z", + "actualTimeUtc": "2022-10-08 15:10Z", + "checkInDesk": "1", + "gate": "A64", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 18:45+01:00", + "actualTimeLocal": "2022-10-08 18:45+01:00", + "scheduledTimeUtc": "2022-10-08 17:45Z", + "actualTimeUtc": "2022-10-08 17:45Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "LX 2064", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "reg": "HB-JDB", + "modeS": "4B1813", + "model": "Airbus A320 NEO" + }, + "airline": { + "name": "SWISS" + } + }, + { + "departure": { + "airport": { + "icao": "LPPD", + "iata": "PDL", + "name": "Ponta Delgada" + }, + "scheduledTimeLocal": "2022-10-08 15:10+00:00", + "actualTimeLocal": "2022-10-08 15:10+00:00", + "scheduledTimeUtc": "2022-10-08 15:10Z", + "actualTimeUtc": "2022-10-08 15:10Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 18:25+01:00", + "actualTimeLocal": "2022-10-08 18:25+01:00", + "scheduledTimeUtc": "2022-10-08 17:25Z", + "actualTimeUtc": "2022-10-08 17:25Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "S4 174", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "Azores" + } + }, + { + "departure": { + "airport": { + "icao": "LFPO", + "iata": "ORY", + "name": "Paris" + }, + "scheduledTimeLocal": "2022-10-08 17:40+02:00", + "scheduledTimeUtc": "2022-10-08 15:40Z", + "terminal": "3", + "quality": [ + "Basic" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 18:55+01:00", + "actualTimeLocal": "2022-10-08 18:55+01:00", + "scheduledTimeUtc": "2022-10-08 17:55Z", + "actualTimeUtc": "2022-10-08 17:55Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "TO 7608", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Boeing 737-800" + }, + "airline": { + "name": "Transavia France" + } + }, + { + "departure": { + "airport": { + "icao": "EDDL", + "iata": "DUS", + "name": "Duesseldorf" + }, + "scheduledTimeLocal": "2022-10-08 16:15+02:00", + "actualTimeLocal": "2022-10-08 16:30+02:00", + "runwayTimeLocal": "2022-10-08 16:42+02:00", + "scheduledTimeUtc": "2022-10-08 14:15Z", + "actualTimeUtc": "2022-10-08 14:30Z", + "runwayTimeUtc": "2022-10-08 14:42Z", + "terminal": "B", + "checkInDesk": "153,170", + "gate": "A40", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 18:00+01:00", + "actualTimeLocal": "2022-10-08 18:00+01:00", + "scheduledTimeUtc": "2022-10-08 17:00Z", + "actualTimeUtc": "2022-10-08 17:00Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "EW 9640", + "callSign": "EWG66WU", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "reg": "D-AEWM", + "modeS": "3C56ED", + "model": "Airbus A320" + }, + "airline": { + "name": "Eurowings" + } + }, + { + "departure": { + "airport": { + "icao": "LSGG", + "iata": "GVA", + "name": "Geneva" + }, + "scheduledTimeLocal": "2022-10-08 17:35+02:00", + "scheduledTimeUtc": "2022-10-08 15:35Z", + "terminal": "1", + "quality": [ + "Basic" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 18:50+01:00", + "scheduledTimeUtc": "2022-10-08 17:50Z", + "quality": [ + "Basic" + ] + }, + "number": "U2 1463", + "status": "CanceledUncertain", + "codeshareStatus": "Unknown", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "easyJet" + } + }, + { + "departure": { + "airport": { + "icao": "LFLL", + "iata": "LYS", + "name": "Lyon" + }, + "scheduledTimeLocal": "2022-10-08 17:35+02:00", + "scheduledTimeUtc": "2022-10-08 15:35Z", + "terminal": "1", + "quality": [ + "Basic" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 18:45+01:00", + "scheduledTimeUtc": "2022-10-08 17:45Z", + "quality": [ + "Basic" + ] + }, + "number": "U2 4449", + "status": "Unknown", + "codeshareStatus": "Unknown", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "easyJet" + } + }, + { + "departure": { + "airport": { + "icao": "LEMD", + "iata": "MAD", + "name": "Madrid" + }, + "scheduledTimeLocal": "2022-10-08 19:35+02:00", + "actualTimeLocal": "2022-10-08 19:35+02:00", + "scheduledTimeUtc": "2022-10-08 17:35Z", + "actualTimeUtc": "2022-10-08 17:35Z", + "terminal": "4", + "checkInDesk": "850-859", + "gate": "K", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 19:55+01:00", + "actualTimeLocal": "2022-10-08 19:55+01:00", + "scheduledTimeUtc": "2022-10-08 18:55Z", + "actualTimeUtc": "2022-10-08 18:55Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "IB 8744", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Bombardier CRJ1000" + }, + "airline": { + "name": "Iberia" + } + }, + { + "departure": { + "airport": { + "name": "Sal" + }, + "quality": [] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 19:40+01:00", + "actualTimeLocal": "2022-10-08 19:40+01:00", + "scheduledTimeUtc": "2022-10-08 18:40Z", + "actualTimeUtc": "2022-10-08 18:40Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "P6 1842", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "airline": { + "name": "Privilege Style" + } + }, + { + "departure": { + "airport": { + "icao": "LPPT", + "iata": "LIS", + "name": "Lisbon" + }, + "scheduledTimeLocal": "2022-10-08 18:00+01:00", + "actualTimeLocal": "2022-10-08 18:00+01:00", + "scheduledTimeUtc": "2022-10-08 17:00Z", + "actualTimeUtc": "2022-10-08 17:00Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 19:00+01:00", + "actualTimeLocal": "2022-10-08 19:00+01:00", + "scheduledTimeUtc": "2022-10-08 18:00Z", + "actualTimeUtc": "2022-10-08 18:00Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "TP 1920", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "TAP Air Portugal" + } + }, + { + "departure": { + "airport": { + "icao": "LFPO", + "iata": "ORY", + "name": "Paris" + }, + "scheduledTimeLocal": "2022-10-08 17:55+02:00", + "scheduledTimeUtc": "2022-10-08 15:55Z", + "terminal": "1", + "quality": [ + "Basic" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 19:05+01:00", + "actualTimeLocal": "2022-10-08 19:05+01:00", + "scheduledTimeUtc": "2022-10-08 18:05Z", + "actualTimeUtc": "2022-10-08 18:05Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "TP 457", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Airbus A320" + }, + "airline": { + "name": "TAP Air Portugal" + } + }, + { + "departure": { + "airport": { + "icao": "LEMD", + "iata": "MAD", + "name": "Madrid" + }, + "scheduledTimeLocal": "2022-10-08 19:00+02:00", + "actualTimeLocal": "2022-10-08 19:00+02:00", + "scheduledTimeUtc": "2022-10-08 17:00Z", + "actualTimeUtc": "2022-10-08 17:00Z", + "terminal": "2", + "checkInDesk": "516-532", + "gate": "D", + "quality": [ + "Basic", + "Live" + ] + }, + "arrival": { + "scheduledTimeLocal": "2022-10-08 19:15+01:00", + "actualTimeLocal": "2022-10-08 19:15+01:00", + "scheduledTimeUtc": "2022-10-08 18:15Z", + "actualTimeUtc": "2022-10-08 18:15Z", + "terminal": "1", + "quality": [ + "Basic", + "Live" + ] + }, + "number": "UX 1141", + "status": "Expected", + "codeshareStatus": "IsOperator", + "isCargo": false, + "aircraft": { + "model": "Embraer 190" + }, + "airline": { + "name": "Air Europa" + } + } + ] +} diff --git a/samples/react-flighttracker/src/models/IAirlines.ts b/samples/react-flighttracker/src/models/IAirlines.ts new file mode 100644 index 000000000..8cc562a6b --- /dev/null +++ b/samples/react-flighttracker/src/models/IAirlines.ts @@ -0,0 +1,11 @@ +export interface IAirlines { + version: number; + rows:IAirline[]; +} + +export interface IAirline { + Name: string; + Code: string; + ICAO: string; + Photo?: string; +} diff --git a/samples/react-flighttracker/src/models/IAirport.ts b/samples/react-flighttracker/src/models/IAirport.ts new file mode 100644 index 000000000..cbbb78172 --- /dev/null +++ b/samples/react-flighttracker/src/models/IAirport.ts @@ -0,0 +1,18 @@ + export interface IAirport { + id: string; + ident: string; + type: string; + name: string; + latitude_deg: string; + longitude_deg: string; + continent: string; + iso_country: string; + iso_region: string; + municipality: string; + scheduled_service: string; + gps_code: string; + iata_code: string; + local_code: string; + wikipedia_link: string; + keywords: string; +} \ No newline at end of file diff --git a/samples/react-flighttracker/src/models/IAttribute.ts b/samples/react-flighttracker/src/models/IAttribute.ts new file mode 100644 index 000000000..f4e7549c7 --- /dev/null +++ b/samples/react-flighttracker/src/models/IAttribute.ts @@ -0,0 +1,9 @@ +import * as React from 'react'; + +import { IIconProps } from 'office-ui-fabric-react'; + +export interface IAttribute{ + attributeName: string; + attributeValue: string | React.ReactNode; + iconProps?: IIconProps +} diff --git a/samples/react-flighttracker/src/models/IFlightInfo.ts b/samples/react-flighttracker/src/models/IFlightInfo.ts new file mode 100644 index 000000000..fa47a7130 --- /dev/null +++ b/samples/react-flighttracker/src/models/IFlightInfo.ts @@ -0,0 +1,16 @@ +export interface IFlightInfo { + id: string; + label: string; + detail: Detail; + type: string; + match: string; + name?: string; + +} +interface Detail { + iata?: string; + logo: string; + callsign?: string; + flight?: string; + operator?: string; +} diff --git a/samples/react-flighttracker/src/models/IFlightSchedulesParm.ts b/samples/react-flighttracker/src/models/IFlightSchedulesParm.ts new file mode 100644 index 000000000..55640c268 --- /dev/null +++ b/samples/react-flighttracker/src/models/IFlightSchedulesParm.ts @@ -0,0 +1,5 @@ +export interface IFlightSchedulesInputParm { + fromDate: string; + toDate: string; + airportCode: string; +} diff --git a/samples/react-flighttracker/src/models/IFlightStatus.ts b/samples/react-flighttracker/src/models/IFlightStatus.ts new file mode 100644 index 000000000..b4fe44fb7 --- /dev/null +++ b/samples/react-flighttracker/src/models/IFlightStatus.ts @@ -0,0 +1,5 @@ +export interface IFlightStatus { + flightId: string; + status: string; + date: string; +} diff --git a/samples/react-flighttracker/src/models/IFlightTrackerListItem.ts b/samples/react-flighttracker/src/models/IFlightTrackerListItem.ts new file mode 100644 index 000000000..cfa94cd60 --- /dev/null +++ b/samples/react-flighttracker/src/models/IFlightTrackerListItem.ts @@ -0,0 +1,12 @@ +export interface IFlightTrackerListItem { + flightCompanyImage: string; + flightNumber: string; + flightStatus: string; + flightTime: string; + flightRealTime: string; + flightTimeStatusText: string; + flightTerminal: string; + FlightGate: string; + flightOrigin: string; + flightCompany: string; +} diff --git a/samples/react-flighttracker/src/models/IFlights.ts b/samples/react-flighttracker/src/models/IFlights.ts new file mode 100644 index 000000000..35df9d9de --- /dev/null +++ b/samples/react-flighttracker/src/models/IFlights.ts @@ -0,0 +1,69 @@ +export interface IFlights { + departures: Departures[]; + arrivals: Arrivals[]; +} + +export interface Arrivals { + departure: Departure; + arrival: Arrival; + number: string; + status: string; + codeshareStatus: string; + isCargo: boolean; + aircraft?: Aircraft; + airline: Airline; + callSign?: string; +} + + +export interface Departures{ + departure: Departure; + arrival: Arrival; + number: string; + status: string; + codeshareStatus: string; + isCargo: boolean; + airline: Airline; + aircraft?: Aircraft; +} + +export interface Aircraft { + model: string; + reg?: string; + modeS?: string; +} + +export interface Airline { + name: string; + logo?: string; +} + +export interface Arrival { + airport: Airport; + quality: string[]; + scheduledTimeLocal?: string; + scheduledTimeUtc?: string; + actualTimeLocal?: string; + runwayTimeLocal?: string; + actualTimeUtc?: string; + runwayTimeUtc?: string; + terminal?: string; +} + +export interface Airport { + name: string; + icao?: string; + iata?: string; +} + +export interface Departure { + airport: Airport; + scheduledTimeLocal: string; + actualTimeLocal: string; + scheduledTimeUtc: string; + actualTimeUtc: string; + quality: string[]; + terminal?: string; + checkInDesk?: string; + gate?: string; +} diff --git a/samples/react-flighttracker/src/models/IGlobalState.ts b/samples/react-flighttracker/src/models/IGlobalState.ts new file mode 100644 index 000000000..8572bf8fd --- /dev/null +++ b/samples/react-flighttracker/src/models/IGlobalState.ts @@ -0,0 +1,21 @@ +import { IReadonlyTheme } from '@microsoft/sp-component-base'; +import { WebPartContext } from '@microsoft/sp-webpart-base'; + +import { EInformationType } from '../constants/EInformationType'; +import { IAirport } from './IAirport'; + +export interface IGlobalState { + isDarkTheme: boolean; + hasTeamsContext: boolean; + context: WebPartContext; + currentTheme: IReadonlyTheme | undefined; + selectedAirPort:IAirport; + selectedDate:Date; + selectedTime:Date; + selectedInformationType: EInformationType; + numberItemsPerPage: number; + currentPage: number; + isScrolling: boolean; + hasMore: boolean; + webpartContainerWidth: number; +} diff --git a/samples/react-flighttracker/src/models/ISearchAirports.ts b/samples/react-flighttracker/src/models/ISearchAirports.ts new file mode 100644 index 000000000..963845cc1 --- /dev/null +++ b/samples/react-flighttracker/src/models/ISearchAirports.ts @@ -0,0 +1,29 @@ +export interface ISearchAirports { + airportsByCities: IAirportsByCity[]; + cities: ICity[]; +} + +interface ICity { + GMT: string; + codeIataCity: string; + codeIso2Country: string; + latitudeCity: number; + longitudeCity: number; + nameCity: string; + timezone: string; +} + +interface IAirportsByCity { + GMT: string; + codeIataAirport: string; + codeIataCity: string; + codeIcaoAirport: string; + codeIso2Country: string; + latitudeAirport: number; + longitudeAirport: number; + nameAirport: string; + nameCountry: string; + phone: string; + timezone: string; +} + diff --git a/samples/react-flighttracker/src/models/index.ts b/samples/react-flighttracker/src/models/index.ts new file mode 100644 index 000000000..b7192c53e --- /dev/null +++ b/samples/react-flighttracker/src/models/index.ts @@ -0,0 +1,9 @@ +export * from './IAirlines'; +export * from './IAirport'; +export * from './IAttribute'; +export * from './IFlightInfo'; +export * from './IFlightSchedulesParm'; +export * from './IFlightStatus'; +export * from './IFlightTrackerListItem'; +export * from './IFlights'; +export * from './IGlobalState'; diff --git a/samples/react-flighttracker/src/recoil/atoms/airlineState.ts b/samples/react-flighttracker/src/recoil/atoms/airlineState.ts new file mode 100644 index 000000000..512551b40 --- /dev/null +++ b/samples/react-flighttracker/src/recoil/atoms/airlineState.ts @@ -0,0 +1,8 @@ +import { atom } from 'recoil'; + +import { IAirlines } from '../../models/IAirlines'; + +export const airlineState = atom({ + key: "airlinesState", + default: {} as IAirlines, +}); diff --git a/samples/react-flighttracker/src/recoil/atoms/flightsState.ts b/samples/react-flighttracker/src/recoil/atoms/flightsState.ts new file mode 100644 index 000000000..830acad1c --- /dev/null +++ b/samples/react-flighttracker/src/recoil/atoms/flightsState.ts @@ -0,0 +1,8 @@ +import { atom } from 'recoil'; + +import { IFlights } from '../../models/IFlights'; + +export const flightsState = atom({ + key: "flightsListState", + default: {departures: [], arrivals: []}, +}); diff --git a/samples/react-flighttracker/src/recoil/atoms/globalState.ts b/samples/react-flighttracker/src/recoil/atoms/globalState.ts new file mode 100644 index 000000000..750b607cc --- /dev/null +++ b/samples/react-flighttracker/src/recoil/atoms/globalState.ts @@ -0,0 +1,23 @@ +import { atom } from 'recoil'; + +import { EInformationType } from '../../constants/EInformationType'; +import { IGlobalState } from '../../models/IGlobalState'; + +export const globalState = atom({ + key: "globaltState", + default: { + isDarkTheme: false, + hasTeamsContext: false, + context: undefined, + currentTheme: undefined, + selectedAirPort: undefined, + selectedDate: new Date(), + selectedTime: new Date(), + selectedInformationType: EInformationType.DEPARTURES, + numberItemsPerPage: 7, + currentPage: 0, + isScrolling: false, + hasMore: true, + webpartContainerWidth: 0 + }, +}); diff --git a/samples/react-flighttracker/src/recoil/atoms/index.ts b/samples/react-flighttracker/src/recoil/atoms/index.ts new file mode 100644 index 000000000..a23c6e049 --- /dev/null +++ b/samples/react-flighttracker/src/recoil/atoms/index.ts @@ -0,0 +1,2 @@ +export * from './flightsState'; +export * from './globalState'; diff --git a/samples/react-flighttracker/src/teamsThemes/TeamsContrastTheme.json b/samples/react-flighttracker/src/teamsThemes/TeamsContrastTheme.json new file mode 100644 index 000000000..004889481 --- /dev/null +++ b/samples/react-flighttracker/src/teamsThemes/TeamsContrastTheme.json @@ -0,0 +1,24 @@ +{ + "themePrimary": "#6264a7", + "themeLighterAlt": "#f7f7fb", + "themeLighter": "#e1e1f1", + "themeLight": "#c8c9e4", + "themeTertiary": "#989ac9", + "themeSecondary": "#7173b0", + "themeDarkAlt": "#585a95", + "themeDark": "#4a4c7e", + "themeDarker": "#37385d", + "neutralLighterAlt": "#0b0b0b", + "neutralLighter": "#151515", + "neutralLight": "#252525", + "neutralQuaternaryAlt": "#2f2f2f", + "neutralQuaternary": "#373737", + "neutralTertiaryAlt": "#595959", + "neutralTertiary": "#c8c8c8", + "neutralSecondary": "#d0d0d0", + "neutralPrimaryAlt": "#dadada", + "neutralPrimary": "#ffffff", + "neutralDark": "#f4f4f4", + "black": "#f8f8f8", + "white": "#000000" +} diff --git a/samples/react-flighttracker/src/teamsThemes/TeamsDarkTheme.json b/samples/react-flighttracker/src/teamsThemes/TeamsDarkTheme.json new file mode 100644 index 000000000..eb41e3dfb --- /dev/null +++ b/samples/react-flighttracker/src/teamsThemes/TeamsDarkTheme.json @@ -0,0 +1,24 @@ +{ + "themePrimary": "#7f85f5", + "themeLighterAlt": "#05050a", + "themeLighter": "#141527", + "themeLight": "#262849", + "themeTertiary": "#4c5093", + "themeSecondary": "#7075d7", + "themeDarkAlt": "#8c91f6", + "themeDark": "#9da2f7", + "themeDarker": "#b6baf9", + "neutralLighterAlt": "#282828", + "neutralLighter": "#313131", + "neutralLight": "#3f3f3f", + "neutralQuaternaryAlt": "#484848", + "neutralQuaternary": "#4f4f4f", + "neutralTertiaryAlt": "#6d6d6d", + "neutralTertiary": "#c8c8c8", + "neutralSecondary": "#d0d0d0", + "neutralPrimaryAlt": "#dadada", + "neutralPrimary": "#ffff", + "neutralDark": "#f4f4f4", + "black": "#ffffff", + "white": "#1f1f1f" +} diff --git a/samples/react-flighttracker/src/teamsThemes/TeamsDefaultTheme.json b/samples/react-flighttracker/src/teamsThemes/TeamsDefaultTheme.json new file mode 100644 index 000000000..e43d81d7c --- /dev/null +++ b/samples/react-flighttracker/src/teamsThemes/TeamsDefaultTheme.json @@ -0,0 +1,24 @@ +{ + "themePrimary": "#6264a7", + "themeLighterAlt": "#f7f7fb", + "themeLighter": "#e1e1f1", + "themeLight": "#c8c9e4", + "themeTertiary": "#989ac9", + "themeSecondary": "#7173b0", + "themeDarkAlt": "#585a95", + "themeDark": "#4a4c7e", + "themeDarker": "#37385d", + "neutralLighterAlt": "#ecebe9", + "neutralLighter": "#e8e7e6", + "neutralLight": "#dedddc", + "neutralQuaternaryAlt": "#cfcecd", + "neutralQuaternary": "#c6c5c4", + "neutralTertiaryAlt": "#bebdbc", + "neutralTertiary": "#b5b4b2", + "neutralSecondary": "#9d9c9a", + "neutralPrimaryAlt": "#868482", + "neutralPrimary": "#252423", + "neutralDark": "#565453", + "black": "#3e3d3b", + "white": "#f3f2f1" +} diff --git a/samples/react-flighttracker/src/webparts/flightTracker/FlightTrackerWebPart.manifest.json b/samples/react-flighttracker/src/webparts/flightTracker/FlightTrackerWebPart.manifest.json new file mode 100644 index 000000000..211c0594a --- /dev/null +++ b/samples/react-flighttracker/src/webparts/flightTracker/FlightTrackerWebPart.manifest.json @@ -0,0 +1,30 @@ +{ + "$schema": "https://developer.microsoft.com/json-schemas/spfx/client-side-web-part-manifest.schema.json", + "id": "fbf4094b-6705-4a38-8d9a-9596862f5f40", + "alias": "FlightTrackerWebPart", + "componentType": "WebPart", + + // The "*" signifies that the version should be taken from the package.json + "version": "*", + "manifestVersion": 2, + + // If true, the component can only be installed on sites where Custom Script is allowed. + // Components that allow authors to embed arbitrary script code should set this to true. + // https://support.office.com/en-us/article/Turn-scripting-capabilities-on-or-off-1f2c515f-5d7e-448a-9fd7-835da935584f + "requiresCustomScript": false, + "supportedHosts": ["SharePointWebPart", "TeamsPersonalApp", "TeamsTab", "SharePointFullPage"], + "supportsThemeVariants": true, + + "preconfiguredEntries": [{ + "groupId": "5c03119e-3074-46fd-976b-c60198311f70", // Advanced + "group": { "default": "Advanced" }, + "title": { "default": "Flight Tracker" }, + "description": { "default": "Real Time Flight Tracking" }, + "officeFabricIconFontName": "Airplane", + "properties": { + "title": "Flight Tracker", + "numberItemsPerPage": 6, + "refreshInterval": 2 + } + }] +} diff --git a/samples/react-flighttracker/src/webparts/flightTracker/FlightTrackerWebPart.ts b/samples/react-flighttracker/src/webparts/flightTracker/FlightTrackerWebPart.ts new file mode 100644 index 000000000..471623bf2 --- /dev/null +++ b/samples/react-flighttracker/src/webparts/flightTracker/FlightTrackerWebPart.ts @@ -0,0 +1,174 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ +import * as React from 'react'; +import * as ReactDom from 'react-dom'; + +import * as strings from 'FlightTrackerWebPartStrings'; +import { loadTheme } from 'office-ui-fabric-react'; + +import { IReadonlyTheme } from '@microsoft/sp-component-base'; +import { + DisplayMode, + Version, +} from '@microsoft/sp-core-library'; +import { + IPropertyPaneConfiguration, + PropertyPaneSlider, + PropertyPaneTextField, + PropertyPaneToggle, +} from '@microsoft/sp-property-pane'; +import { BaseClientSideWebPart } from '@microsoft/sp-webpart-base'; + +import { FlightTracker } from '../../components/FlightTracker/FlightTracker'; +import { + IFlightTrackerProps, +} from '../../components/FlightTracker/IFlightTrackerProps'; +import { registerSVGIcons } from '../../helpers'; + +registerSVGIcons(); + +const teamsDefaultTheme = require("../../teamsThemes/TeamsDefaultTheme.json"); +const teamsDarkTheme = require("../../teamsThemes/TeamsDarkTheme.json"); +const teamsContrastTheme = require("../../teamsThemes/TeamsContrastTheme.json"); +export interface IFlightTrackerWebPartProps { + title: string; + displayMode: DisplayMode; + updateProperty: (value: string) => void; + numberItemsPerPage: number; + refreshInterval: number; + enableRefreshInterval: boolean; +} + +export default class FlightTrackerWebPart extends BaseClientSideWebPart { + + private _isDarkTheme: boolean = false; + private containerWidth: number = 0; + private _currentTheme: IReadonlyTheme | undefined; + + + + // Apply Teams Context + private _applyTheme = (theme: string): void => { + this.context.domElement.setAttribute("data-theme", theme); + document.body.setAttribute("data-theme", theme); + + if (theme === "dark") { + loadTheme({ + palette: teamsDarkTheme + }); + } + + if (theme === "default") { + loadTheme({ + palette: teamsDefaultTheme + }); + } + + if (theme === "contrast") { + loadTheme({ + palette: teamsContrastTheme + }); + } + } + + + protected onAfterResize(newWidth: number): void { + console.log("onAfterResize", newWidth); + this.containerWidth = newWidth; + this.render(); + } + + public render(): void { + const element: React.ReactElement = React.createElement( + FlightTracker, + { + title: this.properties.title, + isDarkTheme: this._isDarkTheme, + context: this.context, + hasTeamsContext: !!this.context.sdks.microsoftTeams, + currentTheme: this._currentTheme , + displayMode: this.displayMode, + numberItemsPerPage: this.properties.numberItemsPerPage, + updateProperty: (value: string) => { + this.properties.title = value; + }, + webpartContainerWidth: this.containerWidth + } + ); + + ReactDom.render(element, this.domElement); + } + + protected onInit(): Promise { + + + if (this.context.sdks.microsoftTeams ) { + // in teams ? + const teamsContext = this.context.sdks.microsoftTeams?.context; + this._applyTheme(teamsContext.theme || "default"); + this.context.sdks.microsoftTeams.teamsJs.registerOnThemeChangeHandler( + this._applyTheme + ); + } + this.containerWidth = this.domElement.clientWidth; + return super.onInit(); + } + + + protected onThemeChanged(currentTheme: IReadonlyTheme | undefined): void { + if (!currentTheme) { + return; + } + this._isDarkTheme = !!currentTheme.isInverted; + this._currentTheme = currentTheme; + } + + protected onDispose(): void { + ReactDom.unmountComponentAtNode(this.domElement); + } + + protected get dataVersion(): Version { + return Version.parse('1.0'); + } + + protected getPropertyPaneConfiguration(): IPropertyPaneConfiguration { + return { + pages: [ + { + header: { + description: strings.PropertyPaneDescription + }, + groups: [ + { + groupName: strings.BasicGroupName, + groupFields: [ + PropertyPaneTextField('title', { + label: strings.DescriptionFieldLabel + }), + PropertyPaneSlider('numberItemsPerPage', { + label: strings.NumberItemsPerPageLabel, + value: this.properties.numberItemsPerPage, + min: 1, + max: 20, + showValue: true, + }), + PropertyPaneToggle('enableRefreshInterval', { + label: strings.RefreshIntervalLabel, + checked: this.properties.enableRefreshInterval, + offText: strings.RefreshIntervalOffText, + onText: strings.RefreshIntervalOnText, + }), + PropertyPaneSlider('refreshInterval', { + label: strings.RefreshIntervalLabel, + value: this.properties.refreshInterval, + min: 1, + max: 5, + showValue: true, + }) + ] + } + ] + } + ] + }; + } +} diff --git a/samples/react-flighttracker/src/webparts/flightTracker/loc/en-us.js b/samples/react-flighttracker/src/webparts/flightTracker/loc/en-us.js new file mode 100644 index 000000000..27ef124e7 --- /dev/null +++ b/samples/react-flighttracker/src/webparts/flightTracker/loc/en-us.js @@ -0,0 +1,27 @@ +define([], function() { + return { + AirLineLabel: "Air Line", + AirportLabel: "AirPort", + AirPortPlaceholder: "Search for an airport", + DateLabel: "Date", + FlightLabel: "Flight", + InformationTypeLabel: "Information type", + NoDataAvailableForAirport: "No data available for this airport", + Remove: "Remove", + SelectDate: "Select a date", + SelecteAirport: "Select Airport", + SelectInformationType: "Select infomation type", + selectTime: "\"Time", + StartTimeLabel: "Time", + TerminalLabel: "Terminal", + TimeLabel: "Time", + "PropertyPaneDescription": "Flight Tracker", + "BasicGroupName": "Properties", + "DescriptionFieldLabel": "Title", + "NumberItemsPerPageLabel": "Number of items per page", + RefreshIntervalLabel: "Refresh interval (in seconds)", + EnablerRefreshIntervalLabel: "Enable refresh interval ?", + RefreshIntervalOffText: "Off", + RefreshIntervalOnText: "On", + } +}); diff --git a/samples/react-flighttracker/src/webparts/flightTracker/loc/mystrings.d.ts b/samples/react-flighttracker/src/webparts/flightTracker/loc/mystrings.d.ts new file mode 100644 index 000000000..afef5ec5c --- /dev/null +++ b/samples/react-flighttracker/src/webparts/flightTracker/loc/mystrings.d.ts @@ -0,0 +1,30 @@ +declare interface IFlightTrackerWebPartStrings { + AirLineLabel: string; + AirportLabel: string; + AirPortPlaceholder: string; + PropertyPaneDescription: string; + BasicGroupName: string; + DateLabel: string; + DescriptionFieldLabel: string; + FlightLabel: string; + InformationTypeLabel: string; + NoDataAvailableForAirport: string; + NumberItemsPerPageLabel:string; + RefreshIntervalLabel:string; + EnablerRefreshIntervalLabel:string; + RefreshIntervalOffText:string; + RefreshIntervalOnText:string; +Remove: string; +SelectDate: string; +SelecteAirport: string; +SelectInformationType: string; +selectTime: string; +StartTimeLabel: string; +TerminalLabel: string; +TimeLabel: string; +} + +declare module 'FlightTrackerWebPartStrings' { + const strings: IFlightTrackerWebPartStrings; + export = strings; +} diff --git a/samples/react-flighttracker/teams/ec4d8277-d79b-4909-a2d7-ea12e1079e9c_color.png b/samples/react-flighttracker/teams/ec4d8277-d79b-4909-a2d7-ea12e1079e9c_color.png new file mode 100644 index 000000000..0e1f764fa Binary files /dev/null and b/samples/react-flighttracker/teams/ec4d8277-d79b-4909-a2d7-ea12e1079e9c_color.png differ diff --git a/samples/react-flighttracker/teams/ec4d8277-d79b-4909-a2d7-ea12e1079e9c_outline.png b/samples/react-flighttracker/teams/ec4d8277-d79b-4909-a2d7-ea12e1079e9c_outline.png new file mode 100644 index 000000000..892868fab Binary files /dev/null and b/samples/react-flighttracker/teams/ec4d8277-d79b-4909-a2d7-ea12e1079e9c_outline.png differ diff --git a/samples/react-flighttracker/teams/fbf4094b-6705-4a38-8d9a-9596862f5f40_color.png b/samples/react-flighttracker/teams/fbf4094b-6705-4a38-8d9a-9596862f5f40_color.png new file mode 100644 index 000000000..0e1f764fa Binary files /dev/null and b/samples/react-flighttracker/teams/fbf4094b-6705-4a38-8d9a-9596862f5f40_color.png differ diff --git a/samples/react-flighttracker/teams/fbf4094b-6705-4a38-8d9a-9596862f5f40_outline.png b/samples/react-flighttracker/teams/fbf4094b-6705-4a38-8d9a-9596862f5f40_outline.png new file mode 100644 index 000000000..892868fab Binary files /dev/null and b/samples/react-flighttracker/teams/fbf4094b-6705-4a38-8d9a-9596862f5f40_outline.png differ diff --git a/samples/react-flighttracker/tsconfig.json b/samples/react-flighttracker/tsconfig.json new file mode 100644 index 000000000..ce2905e5c --- /dev/null +++ b/samples/react-flighttracker/tsconfig.json @@ -0,0 +1,38 @@ +{ + "extends": "./node_modules/@microsoft/rush-stack-compiler-4.5/includes/tsconfig-web.json", + "compilerOptions": { + "target": "es5", + "forceConsistentCasingInFileNames": true, + "module": "esnext", + "moduleResolution": "node", + "jsx": "react", + "declaration": true, + "sourceMap": true, + "experimentalDecorators": true, + "skipLibCheck": true, + "outDir": "lib", + "inlineSources": false, + "strictNullChecks": false, + "noUnusedLocals": false, + "noImplicitAny": true, + + "typeRoots": [ + "./node_modules/@types", + "./node_modules/@microsoft" + ], + "types": [ + "webpack-env" + ], + "lib": [ + "es5", + "dom", + "es2015", + "es2015.collection", + "es2015.promise" + ] + }, + "include": [ + "src/**/*.ts", + "src/**/*.tsx" + ] +}